commit 9e0e90960d0ebc5e0e059cd730b61615b7dc7004 Author: dykim Date: Wed May 29 18:58:46 2024 +0900 first commit diff --git a/acquisition_config.json b/acquisition_config.json new file mode 100755 index 0000000..cfa4262 --- /dev/null +++ b/acquisition_config.json @@ -0,0 +1,23 @@ +{ + "amqp_url": "127.0.0.1", + "amqp_port": 5672, + "amqp_vhost": "/", + "amqp_id": "username", + "amqp_pw": "password", + "amqp_queue": "gseps-mq", + "amqp_ReadyQ": "gseps-ready", + "AccessKey": "AKIAQB3AM4WPR2CHIIH4", + "SecretKey": "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", + "Boto3SignatureVersion": "s3v4", + "Boto3RegionName": "ap-northeast-2", + "gseps_stage_bucket":"stage-gs-eps-frontend", + "BucketKey": "sdt/mv_bottom_ash_particle_size", + "S3BucketName": "gseps-data", + "image_save_path": "/home/sdt/Workspace/gseps-test/image_bucket", + "laser_save_path": "/home/sdt/Workspace/gseps_test/laser_value", + "fail_log_file": "/home/sdt/Workspace/gseps_edge/image_acquisition/logs/fail_message.log", + "success_log_file": "/home/sdt/Workspace/gseps_edge/image_acquisition/logs/acquisition.log", + "capture_single_time_interval": 1, + "capture_batch_time_interval": 120, + "laser_device_path": "/dev/ttyS0" +} diff --git a/acquisition_config.json.bk b/acquisition_config.json.bk new file mode 100755 index 0000000..26d2946 --- /dev/null +++ b/acquisition_config.json.bk @@ -0,0 +1,24 @@ +{ + "amqp_url": "25.5.252.53", + "amqp_port": 5672, + "amqp_vhost": "/", + "amqp_id": "sdt", + "amqp_pw": "251327", + "amqp_queue": "gseps-mq", + "amqp_ReadyQ": "gseps-ready", + "Minio_url": "http://25.5.252.53:9000", + "AccessKey": "AKIAQB3AM4WPR2CHIIH4", + "SecretKey": "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", + "Boto3SignatureVersion": "s3v4", + "Boto3RegionName": "ap-northeast-2", + "gseps_stage_bucket":"stage-gs-eps-frontend", + "BucketKey": "sdt/mv_bottom_ash_particle_size", + "S3BucketName": "gseps-data", + "image_save_path": "/home/sdt/Workspace/gseps-test/image_bucket/", + "fail_log_file": "/home/sdt/Workspace/gseps_edge/image_acquisition/logs/fail_message.log", + "success_log_file": "/home/sdt/Workspace/gseps_edge/image_acquisition/logs/acquisition.log", + "capture_single_time_interval": 1, + "capture_batch_time_interval": 120, + "cam2_device_path": "/dev/v4l/by-path/pci-0000:00:14.0-usb-0:2:1.0-video-index0", + "laser_device_path": "/dev/serial/by-path/pci-0000:00:14.0-usb-0:1:1.0-port0" +} diff --git a/acquisition_config_install.json b/acquisition_config_install.json new file mode 100755 index 0000000..93c595c --- /dev/null +++ b/acquisition_config_install.json @@ -0,0 +1,23 @@ +{ + "amqp_url": "25.10.82.120", + "amqp_port": 5672, + "amqp_vhost": "/", + "amqp_id": "sdt", + "amqp_pw": "251327", + "amqp_queue": "gseps-mq", + "amqp_ReadyQ": "gseps-ready", + "AccessKey": "AKIAQB3AM4WPR2CHIIH4", + "SecretKey": "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", + "Boto3SignatureVersion": "s3v4", + "Boto3RegionName": "ap-northeast-2", + "gseps_stage_bucket":"stage-gs-eps-frontend", + "BucketKey": "sdt/mv_bottom_ash_particle_size", + "S3BucketName": "gseps-data", + "image_save_path": "/home/sdt/Workspace/gseps_edge/image_acquisition/capture/", + "laser_save_path": "/home/sdt/Workspace/gseps_edge/laser/laser_value", + "fail_log_file": "/home/sdt/Workspace/gseps_edge/image_acquisition/logs/fail_message.log", + "success_log_file": "/home/sdt/Workspace/gseps_edge/image_acquisition/logs/acquisition.log", + "capture_single_time_interval": 1, + "capture_batch_time_interval": 120, + "laser_device_path": "/dev/ttyS0" +} diff --git a/config.json b/config.json new file mode 100644 index 0000000..40d8e6d --- /dev/null +++ b/config.json @@ -0,0 +1,8 @@ +{ + "appId": "2674b0bc-77c3-4342-b111-ec9d7515b438", + "topic": "performance", + "host": { + "address": "192.168.100.200", + "hostname": "sdt" + } +} \ No newline at end of file diff --git a/gseps-image-acquisition.service b/gseps-image-acquisition.service new file mode 100644 index 0000000..69fb79c --- /dev/null +++ b/gseps-image-acquisition.service @@ -0,0 +1,11 @@ +[Unit] +Description=gseps-image-acquisition + +[Service] +ExecStart=/home/sdt/miniconda3/bin/python main.py +Restart=always +RestartSec=10 +WorkingDirectory=/home/sdt/Workspace/gseps-test + +[Install] +WantedBy=multi-user.target diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..d1fc9e4 --- /dev/null +++ b/install.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +set -e + +sudo sed -i "s/appName/$1_$2/g" /usr/local/sdt/app/$1_$2/gseps-image-acquisition.service +sudo sed -i "s/appIDvalue/$2/g" /usr/local/sdt/app/$1_$2/config.json +sudo cp /usr/local/sdt/app/$1_$2/gseps-image-acquisition.service /etc/systemd/system/$1.service +sudo systemctl start $1 +sudo systemctl enable $1 + diff --git a/laser_test.py b/laser_test.py new file mode 100644 index 0000000..85f111d --- /dev/null +++ b/laser_test.py @@ -0,0 +1,30 @@ +import time +import serial + + +def hex_to_int(data): + data_length = data[2] + hex_distance = data[3:3+data_length] + + return int.from_bytes(hex_distance, byteorder='big') + +for i in range(1000): + ser = serial.Serial( + port="/dev/ttyS0", + baudrate=19200, + timeout=1, + bytesize=serial.EIGHTBITS, + parity=serial.PARITY_NONE, + stopbits=serial.STOPBITS_ONE + ) + + req = b'\x01\x04\x00\x00\x00\x01\x31\xca' + time.sleep(0.3) + ser.write(req) + result = ser.read(6) + + distance = hex_to_int(result) + print(f'Laser Distance: {distance}mm') + + ser.close() + diff --git a/laser_value/0207-19.csv b/laser_value/0207-19.csv new file mode 100644 index 0000000..a76e95b --- /dev/null +++ b/laser_value/0207-19.csv @@ -0,0 +1,1057 @@ +timestamp,laser_value,event +170729948562,254,0 +170729948610,263,0 +170729948659,226,0 +170729948707,219,0 +170729948757,219,0 +170729948805,220,0 +170729948852,220,0 +170729948900,220,0 +170729948948,219,0 +170729948998,220,0 +170729949046,220,0 +170729949094,220,0 +170729949143,219,0 +170729949191,219,0 +170729949239,220,0 +170729949287,219,0 +170729949335,219,0 +170729949384,220,0 +170729949434,220,0 +170729949483,219,0 +170729949533,220,0 +170729949582,251,0 +170729949632,255,0 +170729949680,225,0 +170729949729,220,0 +170729949779,220,0 +170729949827,219,0 +170729949875,220,0 +170729949924,220,0 +170729949974,220,0 +170729950023,219,0 +170729950073,219,0 +170729950121,220,0 +170729950169,219,0 +170729950218,220,0 +170729950266,219,0 +170729950314,219,0 +170729950364,219,0 +170729950412,219,0 +170729950461,219,0 +170729950509,219,0 +170729950557,220,0 +170729950605,222,0 +170729950653,253,0 +170729950701,260,0 +170729950750,225,0 +170729950798,220,0 +170729950848,219,0 +170729950897,219,0 +170729950947,219,0 +170729950996,220,0 +170729951044,219,0 +170729951092,219,0 +170729951140,219,0 +170729951190,219,0 +170729951238,219,0 +170729951287,219,0 +170729951337,219,0 +170729951385,219,0 +170729951433,219,0 +170729951481,219,0 +170729951528,220,0 +170729951578,219,0 +170729951627,220,0 +170729951677,242,0 +170729951727,258,0 +170729951775,237,0 +170729951823,221,0 +170729951872,220,0 +170729951922,220,0 +170729951971,219,0 +170729952020,219,0 +170729952070,219,0 +170729952118,219,0 +170729952167,219,0 +170729952217,219,0 +170729952266,219,0 +170729952314,219,0 +170729952364,219,0 +170729952412,220,0 +170729952460,219,0 +170729952509,219,0 +170729952557,219,0 +170729952605,220,0 +170729952655,220,0 +170729952703,221,0 +170729952751,252,0 +170729952799,266,0 +170729952847,230,0 +170729952896,220,0 +170729952944,220,0 +170729952992,221,0 +170729953040,220,0 +170729953088,220,0 +170729953136,220,0 +170729953184,220,0 +170729953232,220,0 +170729953281,220,0 +170729953331,220,0 +170729953379,220,0 +170729953428,220,0 +170729953476,220,0 +170729953524,220,0 +170729953572,220,0 +170729953620,220,0 +170729953668,221,0 +170729953716,220,0 +170729953764,222,0 +170729953812,252,0 +170729953860,262,0 +170729953908,224,0 +170729953955,220,0 +170729954005,220,0 +170729954053,220,0 +170729954101,219,0 +170729954149,220,0 +170729954196,220,0 +170729954244,219,0 +170729954292,220,0 +170729954340,219,0 +170729954388,220,0 +170729954436,219,0 +170729954484,219,0 +170729954534,219,0 +170729954582,219,0 +170729954630,220,0 +170729954679,220,0 +170729954727,220,0 +170729954775,220,0 +170729954824,224,0 +170729954872,257,0 +170729954920,247,0 +170729954970,222,0 +170729955018,220,0 +170729955066,219,0 +170729955114,220,0 +170729955163,221,0 +170729955213,219,0 +170729955261,220,0 +170729955309,219,0 +170729955357,220,0 +170729955405,220,0 +170729955453,220,0 +170729955501,220,0 +170729955550,219,0 +170729955598,219,0 +170729955648,220,0 +170729955696,220,0 +170729955743,219,0 +170729955791,220,0 +170729955839,220,0 +170729955887,253,0 +170729955937,256,0 +170729955985,222,0 +170729956034,220,0 +170729956082,219,0 +170729956132,219,0 +170729956181,219,0 +170729956231,219,0 +170729956279,220,0 +170729956327,219,0 +170729956375,220,0 +170729956423,220,0 +170729956471,219,0 +170729956519,220,0 +170729956568,219,0 +170729956616,219,0 +170729956664,219,0 +170729956713,219,0 +170729956763,219,0 +170729956812,220,0 +170729956860,219,0 +170729956910,221,0 +170729956959,256,0 +170729957007,270,1 +170729957095,220,0 +170729957143,219,0 +170729957193,220,0 +170729957241,219,0 +170729957289,219,0 +170729957337,219,0 +170729957385,220,0 +170729957432,220,0 +170729957482,219,0 +170729957532,220,0 +170729957579,220,0 +170729957627,220,0 +170729957675,219,0 +170729957723,220,0 +170729957773,220,0 +170729957822,220,0 +170729957870,220,0 +170729957920,220,0 +170729957968,222,0 +170729958017,262,0 +170729958065,263,0 +170729958115,222,0 +170729958163,220,0 +170729958212,219,0 +170729958260,219,0 +170729958310,220,0 +170729958358,219,0 +170729958407,219,0 +170729958455,219,0 +170729958505,219,0 +170729958554,219,0 +170729958604,220,0 +170729958652,219,0 +170729958700,220,0 +170729958749,219,0 +170729958797,220,0 +170729958845,219,0 +170729958893,219,0 +170729958941,219,0 +170729958989,221,0 +170729959037,253,0 +170729959085,267,0 +170729959133,230,0 +170729959181,220,0 +170729959229,220,0 +170729959277,220,0 +170729959325,219,0 +170729959374,219,0 +170729959422,219,0 +170729959472,220,0 +170729959520,219,0 +170729959568,220,0 +170729959616,219,0 +170729959664,219,0 +170729959713,220,0 +170729959763,219,0 +170729959811,219,0 +170729959859,220,0 +170729959908,220,0 +170729959956,220,0 +170729960006,220,0 +170729960054,221,0 +170729960102,251,0 +170729960151,268,0 +170729960199,227,0 +170729960247,220,0 +170729960297,219,0 +170729960344,219,0 +170729960392,219,0 +170729960440,220,0 +170729960490,220,0 +170729960539,220,0 +170729960589,220,0 +170729960637,220,0 +170729960686,219,0 +170729960736,220,0 +170729960785,219,0 +170729960833,220,0 +170729960881,220,0 +170729960931,220,0 +170729960979,220,0 +170729961028,220,0 +170729961078,220,0 +170729961126,231,0 +170729961174,254,0 +170729961222,228,0 +170729961270,221,0 +170729961319,220,0 +170729961367,220,0 +170729961415,220,0 +170729961463,220,0 +170729961513,220,0 +170729961560,221,0 +170729961608,220,0 +170729961658,220,0 +170729961706,220,0 +170729961755,220,0 +170729961803,220,0 +170729961853,220,0 +170729961901,220,0 +170729961948,220,0 +170729961996,220,0 +170729962044,220,0 +170729962092,220,0 +170729962140,221,0 +170729962188,253,0 +170729962236,253,0 +170729962283,411,0 +170729962331,431,0 +170729962379,432,0 +170729962429,431,0 +170729962477,431,0 +170729962525,431,0 +170729962572,431,0 +170729962620,431,0 +170729962668,431,0 +170729962716,430,0 +170729962764,431,0 +170729962812,430,0 +170729962860,429,0 +170729962908,430,0 +170729962956,430,0 +170729963005,429,0 +170729963053,430,0 +170729963102,430,0 +170729963152,429,0 +170729963201,428,0 +170729963249,264,0 +170729963297,255,0 +170729963347,420,0 +170729963395,430,0 +170729963443,430,0 +170729963491,429,0 +170729963538,430,0 +170729963586,430,0 +170729963634,430,0 +170729963682,428,0 +170729963730,428,0 +170729963778,429,0 +170729963826,430,0 +170729963875,430,0 +170729963925,430,0 +170729963972,429,0 +170729964020,429,0 +170729964068,430,0 +170729964116,430,0 +170729964166,429,0 +170729964214,426,0 +170729964263,425,0 +170729964313,255,0 +170729964361,258,0 +170729964410,408,0 +170729964463,414,0 +170729964520,415,0 +170729964578,414,0 +170729964635,416,0 +170729964688,418,0 +170729964746,416,0 +170729964808,418,0 +170729964866,418,0 +170729964923,416,0 +170729964976,418,0 +170729965029,417,0 +170729965081,416,0 +170729965134,417,0 +170729965187,417,0 +170729965240,417,0 +170729965292,414,0 +170729965345,250,0 +170729965393,259,0 +170729965443,225,0 +170729965491,219,0 +170729965539,219,0 +170729965587,219,0 +170729965635,219,0 +170729965683,218,0 +170729965730,219,0 +170729965778,219,0 +170729965826,219,0 +170729965874,219,0 +170729965924,218,0 +170729965972,218,0 +170729966021,218,0 +170729966071,219,0 +170729966119,219,0 +170729966168,219,0 +170729966218,218,0 +170729966267,218,0 +170729966315,219,0 +170729966363,221,0 +170729966413,251,0 +170729966461,249,0 +170729966509,220,0 +170729966558,219,0 +170729966606,219,0 +170729966654,219,0 +170729966704,219,0 +170729966753,218,0 +170729966801,219,0 +170729966849,219,0 +170729966897,218,0 +170729966945,219,0 +170729966993,219,0 +170729967043,219,0 +170729967091,219,0 +170729967139,219,0 +170729967186,219,0 +170729967234,219,0 +170729967284,219,0 +170729967333,219,0 +170729967381,219,0 +170729967431,223,0 +170729967480,261,0 +170729967530,236,0 +170729967578,221,0 +170729967627,219,0 +170729967675,219,0 +170729967725,219,0 +170729967774,219,0 +170729967824,219,0 +170729967872,219,0 +170729967920,219,0 +170729967969,219,0 +170729968017,219,0 +170729968065,218,0 +170729968115,219,0 +170729968163,219,0 +170729968212,218,0 +170729968262,219,0 +170729968310,219,0 +170729968359,219,0 +170729968407,219,0 +170729968455,220,0 +170729968505,251,0 +170729968553,262,0 +170729968601,228,0 +170729968649,219,0 +170729968697,219,0 +170729968745,219,0 +170729968793,219,0 +170729968840,219,0 +170729968888,219,0 +170729968938,219,0 +170729968986,219,0 +170729969034,219,0 +170729969082,219,0 +170729969130,219,0 +170729969179,219,0 +170729969229,219,0 +170729969277,219,0 +170729969326,219,0 +170729969374,219,0 +170729969422,219,0 +170729969470,220,0 +170729969518,231,0 +170729969566,256,0 +170729969614,274,1 +170729969696,219,0 +170729969744,219,0 +170729969793,219,0 +170729969843,219,0 +170729969891,219,0 +170729969940,219,0 +170729969988,218,0 +170729970037,219,0 +170729970085,218,0 +170729970133,219,0 +170729970181,219,0 +170729970229,219,0 +170729970277,219,0 +170729970325,219,0 +170729970373,219,0 +170729970420,218,0 +170729970470,219,0 +170729970518,219,0 +170729970566,220,0 +170729970614,266,0 +170729970663,264,0 +170729970711,224,0 +170729970759,219,0 +170729970807,219,0 +170729970855,219,0 +170729970905,218,0 +170729970953,219,0 +170729971002,218,0 +170729971050,218,0 +170729971098,219,0 +170729971146,219,0 +170729971194,219,0 +170729971244,218,0 +170729971292,219,0 +170729971340,219,0 +170729971389,219,0 +170729971439,220,0 +170729971488,219,0 +170729971536,219,0 +170729971584,219,0 +170729971632,249,0 +170729971682,257,0 +170729971731,226,0 +170729971780,219,0 +170729971828,218,0 +170729971878,218,0 +170729971928,218,0 +170729971977,219,0 +170729972027,218,0 +170729972075,218,0 +170729972123,218,0 +170729972171,219,0 +170729972220,218,0 +170729972268,218,0 +170729972316,218,0 +170729972364,219,0 +170729972412,219,0 +170729972460,218,0 +170729972509,219,0 +170729972557,219,0 +170729972605,219,0 +170729972653,220,0 +170729972701,252,0 +170729972750,258,0 +170729972798,225,0 +170729972848,219,0 +170729972896,218,0 +170729972945,218,0 +170729972993,219,0 +170729973043,219,0 +170729973091,218,0 +170729973139,219,0 +170729973188,218,0 +170729973236,218,0 +170729973284,219,0 +170729973332,218,0 +170729973380,219,0 +170729973428,219,0 +170729973476,218,0 +170729973524,218,0 +170729973572,218,0 +170729973620,219,0 +170729973668,219,0 +170729973718,223,0 +170729973766,252,0 +170729973814,237,0 +170729973861,220,0 +170729973911,219,0 +170729973959,219,0 +170729974008,219,0 +170729974056,219,0 +170729974104,219,0 +170729974154,218,0 +170729974202,219,0 +170729974250,219,0 +170729974298,219,0 +170729974346,219,0 +170729974394,219,0 +170729974441,218,0 +170729974489,218,0 +170729974537,219,0 +170729974587,218,0 +170729974635,219,0 +170729974685,218,0 +170729974733,219,0 +170729974781,235,0 +170729974830,251,0 +170729974880,222,0 +170729974929,219,0 +170729974979,219,0 +170729975027,218,0 +170729975075,219,0 +170729975123,219,0 +170729975170,218,0 +170729975218,219,0 +170729975266,219,0 +170729975314,219,0 +170729975362,218,0 +170729975410,219,0 +170729975460,218,0 +170729975508,218,0 +170729975557,219,0 +170729975607,218,0 +170729975655,219,0 +170729975703,218,0 +170729975751,218,0 +170729975800,220,0 +170729975848,251,0 +170729975896,267,0 +170729975946,226,0 +170729975994,219,0 +170729976042,218,0 +170729976089,218,0 +170729976139,218,0 +170729976187,218,0 +170729976235,218,0 +170729976283,218,0 +170729976331,219,0 +170729976379,218,0 +170729976427,219,0 +170729976475,219,0 +170729976523,218,0 +170729976571,219,0 +170729976620,218,0 +170729976668,219,0 +170729976716,218,0 +170729976764,219,0 +170729976812,219,0 +170729976860,221,0 +170729976908,259,0 +170729976956,263,0 +170729977004,223,0 +170729977052,219,0 +170729977101,219,0 +170729977149,218,0 +170729977197,218,0 +170729977245,219,0 +170729977295,218,0 +170729977343,218,0 +170729977391,218,0 +170729977440,218,0 +170729977488,219,0 +170729977536,218,0 +170729977586,218,0 +170729977634,218,0 +170729977683,218,0 +170729977731,218,0 +170729977779,218,0 +170729977827,218,0 +170729977875,219,0 +170729977924,221,0 +170729977972,250,0 +170729978020,250,0 +170729978068,221,0 +170729978116,219,0 +170729978166,219,0 +170729978214,219,0 +170729978263,219,0 +170729978311,219,0 +170729978359,218,0 +170729978407,219,0 +170729978455,218,0 +170729978505,218,0 +170729978553,218,0 +170729978602,218,0 +170729978652,218,0 +170729978701,218,0 +170729978749,218,0 +170729978799,218,0 +170729978847,218,0 +170729978896,219,0 +170729978944,219,0 +170729978993,251,0 +170729979041,261,0 +170729979091,228,0 +170729979139,218,0 +170729979187,218,0 +170729979236,218,0 +170729979286,218,0 +170729979335,219,0 +170729979383,218,0 +170729979433,218,0 +170729979481,218,0 +170729979529,219,0 +170729979577,219,0 +170729979625,219,0 +170729979673,219,0 +170729979721,218,0 +170729979770,219,0 +170729979818,218,0 +170729979866,219,0 +170729979914,218,0 +170729979962,219,0 +170729980012,224,0 +170729980061,254,0 +170729980109,256,0 +170729980157,221,0 +170729980205,218,0 +170729980253,219,0 +170729980302,219,0 +170729980350,218,0 +170729980400,219,0 +170729980449,218,0 +170729980497,218,0 +170729980545,218,0 +170729980593,218,0 +170729980643,218,0 +170729980691,218,0 +170729980740,219,0 +170729980790,218,0 +170729980839,218,0 +170729980889,218,0 +170729980938,218,0 +170729980988,218,0 +170729981036,219,0 +170729981085,251,0 +170729981133,260,0 +170729981183,227,0 +170729981232,219,0 +170729981280,218,0 +170729981328,218,0 +170729981378,218,0 +170729981425,218,0 +170729981473,218,0 +170729981521,218,0 +170729981571,218,0 +170729981618,218,0 +170729981666,218,0 +170729981714,218,0 +170729981764,218,0 +170729981812,218,0 +170729981859,219,0 +170729981907,218,0 +170729981955,218,0 +170729982003,219,0 +170729982051,219,0 +170729982099,219,0 +170729982147,246,0 +170729982195,258,0 +170729982243,227,0 +170729982292,219,0 +170729982340,219,0 +170729982388,219,0 +170729982436,218,0 +170729982484,219,0 +170729982532,219,0 +170729982582,218,0 +170729982631,219,0 +170729982679,218,0 +170729982727,218,0 +170729982775,219,0 +170729982823,219,0 +170729982871,219,0 +170729982919,219,0 +170729982969,218,0 +170729983018,219,0 +170729983066,219,0 +170729983114,219,0 +170729983162,220,0 +170729983210,251,0 +170729983258,272,1 +170729983341,218,0 +170729983389,219,0 +170729983437,219,0 +170729983485,219,0 +170729983533,219,0 +170729983583,219,0 +170729983631,218,0 +170729983680,218,0 +170729983728,219,0 +170729983776,218,0 +170729983824,218,0 +170729983872,219,0 +170729983922,219,0 +170729983970,218,0 +170729984017,218,0 +170729984067,218,0 +170729984115,218,0 +170729984163,219,0 +170729984210,221,0 +170729984258,250,0 +170729984306,254,0 +170729984356,222,0 +170729984404,218,0 +170729984451,218,0 +170729984501,219,0 +170729984549,218,0 +170729984597,219,0 +170729984645,218,0 +170729984694,219,0 +170729984742,218,0 +170729984791,219,0 +170729984839,218,0 +170729984887,218,0 +170729984935,218,0 +170729984983,218,0 +170729985031,218,0 +170729985079,218,0 +170729985127,219,0 +170729985176,218,0 +170729985226,219,0 +170729985274,237,0 +170729985322,254,0 +170729985371,223,0 +170729985419,220,0 +170729985469,218,0 +170729985517,219,0 +170729985566,218,0 +170729985614,219,0 +170729985662,218,0 +170729985710,218,0 +170729985758,219,0 +170729985806,219,0 +170729985854,218,0 +170729985902,218,0 +170729985951,218,0 +170729986001,218,0 +170729986049,218,0 +170729986097,218,0 +170729986145,219,0 +170729986194,218,0 +170729986242,219,0 +170729986292,220,0 +170729986340,249,0 +170729986387,260,0 +170729986435,225,0 +170729986483,218,0 +170729986531,218,0 +170729986579,218,0 +170729986627,218,0 +170729986675,218,0 +170729986723,218,0 +170729986770,218,0 +170729986818,218,0 +170729986866,218,0 +170729986914,218,0 +170729986962,218,0 +170729987010,219,0 +170729987058,219,0 +170729987106,218,0 +170729987155,219,0 +170729987203,218,0 +170729987251,218,0 +170729987299,219,0 +170729987347,220,0 +170729987396,264,0 +170729987444,283,1 +170729987526,218,0 +170729987574,218,0 +170729987624,219,0 +170729987672,218,0 +170729987720,218,0 +170729987768,218,0 +170729987816,219,0 +170729987863,218,0 +170729987911,219,0 +170729987961,219,0 +170729988009,218,0 +170729988057,218,0 +170729988105,218,0 +170729988154,218,0 +170729988202,218,0 +170729988250,218,0 +170729988299,218,0 +170729988347,219,0 +170729988395,220,0 +170729988443,261,0 +170729988491,282,1 +170729988569,219,0 +170729988618,218,0 +170729988666,218,0 +170729988716,218,0 +170729988764,218,0 +170729988813,219,0 +170729988861,218,0 +170729988909,219,0 +170729988957,218,0 +170729989005,219,0 +170729989053,218,0 +170729989101,218,0 +170729989150,219,0 +170729989200,219,0 +170729989248,218,0 +170729989296,219,0 +170729989344,218,0 +170729989391,219,0 +170729989441,219,0 +170729989489,251,0 +170729989537,260,0 +170729989586,228,0 +170729989636,219,0 +170729989685,218,0 +170729989735,218,0 +170729989783,219,0 +170729989832,218,0 +170729989880,219,0 +170729989930,218,0 +170729989977,218,0 +170729990027,219,0 +170729990075,218,0 +170729990123,218,0 +170729990171,218,0 +170729990218,218,0 +170729990266,219,0 +170729990314,218,0 +170729990362,218,0 +170729990411,218,0 +170729990459,219,0 +170729990507,223,0 +170729990555,252,0 +170729990605,243,0 +170729990654,221,0 +170729990702,218,0 +170729990750,219,0 +170729990799,219,0 +170729990847,219,0 +170729990895,219,0 +170729990945,219,0 +170729990992,219,0 +170729991040,219,0 +170729991088,219,0 +170729991136,219,0 +170729991184,219,0 +170729991232,219,0 +170729991280,218,0 +170729991328,218,0 +170729991376,219,0 +170729991424,219,0 +170729991472,219,0 +170729991521,219,0 +170729991571,254,0 +170729991620,256,0 +170729991668,222,0 +170729991716,220,0 +170729991765,219,0 +170729991815,219,0 +170729991864,218,0 +170729991912,219,0 +170729991960,218,0 +170729992008,219,0 +170729992056,218,0 +170729992104,219,0 +170729992153,219,0 +170729992201,218,0 +170729992249,219,0 +170729992299,219,0 +170729992348,219,0 +170729992398,219,0 +170729992447,218,0 +170729992497,219,0 +170729992545,219,0 +170729992594,220,0 +170729992642,249,0 +170729992690,274,1 +170729992770,219,0 +170729992818,219,0 +170729992867,219,0 +170729992915,218,0 +170729992963,219,0 +170729993011,219,0 +170729993059,218,0 +170729993107,218,0 +170729993155,219,0 +170729993203,219,0 +170729993253,219,0 +170729993301,218,0 +170729993349,218,0 +170729993396,219,0 +170729993444,218,0 +170729993492,219,0 +170729993542,218,0 +170729993590,219,0 +170729993638,220,0 +170729993687,249,0 +170729993737,260,0 +170729993787,225,0 +170729993836,219,0 +170729993884,218,0 +170729993932,218,0 +170729993982,218,0 +170729994030,218,0 +170729994079,218,0 +170729994127,218,0 +170729994175,218,0 +170729994225,218,0 +170729994274,218,0 +170729994322,218,0 +170729994372,218,0 +170729994421,218,0 +170729994471,218,0 +170729994518,219,0 +170729994566,218,0 +170729994616,219,0 +170729994664,219,0 +170729994713,264,0 +170729994761,251,0 +170729994809,223,0 +170729994859,219,0 +170729994907,218,0 +170729994956,218,0 +170729995006,219,0 +170729995054,218,0 +170729995103,218,0 +170729995151,218,0 +170729995201,219,0 +170729995249,218,0 +170729995296,218,0 +170729995346,218,0 +170729995394,218,0 +170729995443,218,0 +170729995491,218,0 +170729995539,218,0 +170729995589,218,0 +170729995637,218,0 +170729995686,218,0 +170729995736,220,0 +170729995785,249,0 +170729995833,261,0 +170729995883,225,0 +170729995932,219,0 +170729995980,218,0 +170729996028,219,0 +170729996076,218,0 +170729996124,218,0 +170729996173,218,0 +170729996221,218,0 +170729996269,218,0 +170729996319,219,0 +170729996368,219,0 +170729996418,218,0 +170729996467,218,0 +170729996515,219,0 +170729996563,218,0 +170729996611,219,0 +170729996660,218,0 +170729996708,219,0 +170729996756,219,0 +170729996804,221,0 +170729996852,253,0 +170729996900,260,0 +170729996949,222,0 +170729996997,219,0 +170729997045,218,0 +170729997094,219,0 +170729997144,219,0 +170729997192,218,0 +170729997239,218,0 +170729997287,218,0 +170729997335,219,0 +170729997383,219,0 +170729997433,219,0 +170729997481,218,0 +170729997529,219,0 +170729997577,218,0 +170729997626,218,0 +170729997674,218,0 +170729997722,219,0 +170729997772,219,0 +170729997821,220,0 +170729997869,248,0 +170729997917,253,0 +170729997965,226,0 +170729998013,220,0 +170729998060,219,0 +170729998108,219,0 +170729998156,219,0 +170729998204,219,0 +170729998252,218,0 +170729998302,218,0 +170729998350,219,0 +170729998398,218,0 +170729998447,218,0 +170729998497,218,0 +170729998546,219,0 +170729998596,218,0 +170729998645,219,0 +170729998693,219,0 +170729998741,219,0 +170729998790,219,0 +170729998840,219,0 +170729998888,220,0 +170729998936,256,0 +170729998985,263,0 +170729999033,226,0 +170729999083,218,0 +170729999131,218,0 +170729999178,218,0 +170729999226,219,0 +170729999276,219,0 +170729999325,219,0 +170729999375,218,0 +170729999424,218,0 +170729999472,218,0 +170729999522,219,0 +170729999570,218,0 +170729999619,219,0 +170729999669,218,0 +170729999717,219,0 +170729999764,218,0 +170729999814,219,0 +170729999862,219,0 +170729999911,219,0 +170729999959,221,0 +170730000007,253,0 diff --git a/laser_value/0207-20.csv b/laser_value/0207-20.csv new file mode 100644 index 0000000..6acc3f3 --- /dev/null +++ b/laser_value/0207-20.csv @@ -0,0 +1,7392 @@ +timestamp,laser_value,event +170730000057,239,0 +170730000107,220,0 +170730000156,218,0 +170730000204,219,0 +170730000254,218,0 +170730000303,218,0 +170730000353,219,0 +170730000401,219,0 +170730000449,219,0 +170730000498,218,0 +170730000546,219,0 +170730000595,219,0 +170730000643,219,0 +170730000693,219,0 +170730000742,219,0 +170730000790,219,0 +170730000840,218,0 +170730000888,219,0 +170730000937,219,0 +170730000985,219,0 +170730001033,252,0 +170730001081,267,0 +170730001129,228,0 +170730001177,219,0 +170730001225,218,0 +170730001273,218,0 +170730001322,219,0 +170730001370,218,0 +170730001420,219,0 +170730001469,219,0 +170730001517,219,0 +170730001565,219,0 +170730001613,219,0 +170730001663,219,0 +170730001712,218,0 +170730001760,219,0 +170730001808,219,0 +170730001858,219,0 +170730001907,218,0 +170730001955,219,0 +170730002005,219,0 +170730002052,223,0 +170730002102,253,0 +170730002150,269,0 +170730002199,221,0 +170730002247,219,0 +170730002295,218,0 +170730002343,219,0 +170730002391,219,0 +170730002439,218,0 +170730002487,218,0 +170730002535,219,0 +170730002584,219,0 +170730002632,218,0 +170730002680,219,0 +170730002728,218,0 +170730002776,219,0 +170730002826,219,0 +170730002874,218,0 +170730002922,218,0 +170730002970,219,0 +170730003019,219,0 +170730003069,219,0 +170730003117,254,0 +170730003164,254,0 +170730003214,225,0 +170730003262,219,0 +170730003312,218,0 +170730003361,219,0 +170730003409,218,0 +170730003457,218,0 +170730003505,218,0 +170730003555,218,0 +170730003603,219,0 +170730003650,218,0 +170730003700,218,0 +170730003748,218,0 +170730003796,218,0 +170730003844,219,0 +170730003892,218,0 +170730003940,218,0 +170730003987,218,0 +170730004035,218,0 +170730004083,219,0 +170730004131,219,0 +170730004181,263,0 +170730004229,256,0 +170730004277,224,0 +170730004325,219,0 +170730004373,218,0 +170730004421,219,0 +170730004469,218,0 +170730004518,219,0 +170730004568,219,0 +170730004617,218,0 +170730004665,219,0 +170730004713,218,0 +170730004761,218,0 +170730004811,218,0 +170730004858,219,0 +170730004906,219,0 +170730004954,218,0 +170730005002,218,0 +170730005050,218,0 +170730005098,218,0 +170730005146,219,0 +170730005196,220,0 +170730005244,254,0 +170730005292,271,1 +170730005373,219,0 +170730005421,219,0 +170730005470,218,0 +170730005518,218,0 +170730005566,219,0 +170730005614,219,0 +170730005662,219,0 +170730005712,219,0 +170730005761,219,0 +170730005811,218,0 +170730005860,219,0 +170730005908,218,0 +170730005958,219,0 +170730006005,219,0 +170730006055,219,0 +170730006103,218,0 +170730006151,218,0 +170730006199,219,0 +170730006247,221,0 +170730006295,254,0 +170730006343,262,0 +170730006392,223,0 +170730006440,219,0 +170730006488,219,0 +170730006538,219,0 +170730006587,218,0 +170730006637,218,0 +170730006685,218,0 +170730006733,218,0 +170730006781,218,0 +170730006830,218,0 +170730006878,218,0 +170730006928,218,0 +170730006976,218,0 +170730007024,218,0 +170730007073,219,0 +170730007123,218,0 +170730007170,219,0 +170730007218,218,0 +170730007268,219,0 +170730007317,228,0 +170730007365,253,0 +170730007415,230,0 +170730007464,219,0 +170730007512,219,0 +170730007560,219,0 +170730007608,219,0 +170730007658,218,0 +170730007705,219,0 +170730007755,219,0 +170730007803,219,0 +170730007852,218,0 +170730007902,219,0 +170730007950,218,0 +170730007998,219,0 +170730008046,218,0 +170730008093,218,0 +170730008141,218,0 +170730008189,219,0 +170730008237,218,0 +170730008285,218,0 +170730008333,219,0 +170730008381,251,0 +170730008429,253,0 +170730008477,227,0 +170730008525,219,0 +170730008574,219,0 +170730008622,219,0 +170730008670,218,0 +170730008718,218,0 +170730008765,218,0 +170730008815,218,0 +170730008863,218,0 +170730008911,218,0 +170730008959,218,0 +170730009006,219,0 +170730009054,218,0 +170730009102,219,0 +170730009150,218,0 +170730009198,219,0 +170730009246,218,0 +170730009294,219,0 +170730009343,219,0 +170730009393,220,0 +170730009441,251,0 +170730009488,261,0 +170730009536,223,0 +170730009584,219,0 +170730009632,219,0 +170730009680,218,0 +170730009728,218,0 +170730009776,219,0 +170730009824,219,0 +170730009872,218,0 +170730009921,218,0 +170730009969,219,0 +170730010017,218,0 +170730010065,219,0 +170730010113,218,0 +170730010160,218,0 +170730010208,218,0 +170730010256,218,0 +170730010306,219,0 +170730010354,218,0 +170730010402,219,0 +170730010449,220,0 +170730010497,258,0 +170730010545,271,1 +170730010629,219,0 +170730010677,219,0 +170730010724,219,0 +170730010772,218,0 +170730010820,218,0 +170730010868,219,0 +170730010916,219,0 +170730010964,218,0 +170730011013,219,0 +170730011061,219,0 +170730011109,218,0 +170730011159,219,0 +170730011208,218,0 +170730011256,219,0 +170730011304,218,0 +170730011352,219,0 +170730011400,219,0 +170730011448,219,0 +170730011496,220,0 +170730011544,249,0 +170730011591,271,1 +170730011671,219,0 +170730011721,219,0 +170730011769,218,0 +170730011817,219,0 +170730011864,219,0 +170730011912,219,0 +170730011960,219,0 +170730012008,219,0 +170730012058,218,0 +170730012106,219,0 +170730012153,219,0 +170730012201,219,0 +170730012249,219,0 +170730012297,219,0 +170730012345,219,0 +170730012393,219,0 +170730012441,219,0 +170730012489,219,0 +170730012536,220,0 +170730012584,256,0 +170730012634,264,0 +170730012683,227,0 +170730012731,219,0 +170730012781,219,0 +170730012829,219,0 +170730012877,219,0 +170730012925,219,0 +170730012974,219,0 +170730013024,219,0 +170730013072,219,0 +170730013121,219,0 +170730013171,219,0 +170730013219,219,0 +170730013268,218,0 +170730013316,219,0 +170730013364,219,0 +170730013412,219,0 +170730013461,218,0 +170730013509,219,0 +170730013559,219,0 +170730013607,221,0 +170730013655,257,0 +170730013703,263,0 +170730013751,223,0 +170730013799,219,0 +170730013847,219,0 +170730013895,219,0 +170730013943,219,0 +170730013991,219,0 +170730014040,219,0 +170730014088,219,0 +170730014138,219,0 +170730014186,219,0 +170730014233,219,0 +170730014281,219,0 +170730014329,218,0 +170730014377,219,0 +170730014427,219,0 +170730014476,219,0 +170730014526,219,0 +170730014575,219,0 +170730014625,219,0 +170730014674,258,0 +170730014722,256,0 +170730014772,223,0 +170730014820,219,0 +170730014868,219,0 +170730014916,219,0 +170730014964,219,0 +170730015013,219,0 +170730015061,218,0 +170730015111,219,0 +170730015160,219,0 +170730015208,218,0 +170730015258,219,0 +170730015306,219,0 +170730015353,219,0 +170730015403,218,0 +170730015453,219,0 +170730015501,218,0 +170730015550,218,0 +170730015598,218,0 +170730015646,219,0 +170730015695,220,0 +170730015743,251,0 +170730015791,271,1 +170730015873,219,0 +170730015921,219,0 +170730015971,219,0 +170730016018,219,0 +170730016066,219,0 +170730016116,219,0 +170730016164,218,0 +170730016212,219,0 +170730016260,218,0 +170730016309,219,0 +170730016357,219,0 +170730016407,219,0 +170730016456,218,0 +170730016506,219,0 +170730016555,219,0 +170730016605,219,0 +170730016654,219,0 +170730016702,219,0 +170730016752,221,0 +170730016801,261,0 +170730016851,271,1 +170730016929,219,0 +170730016977,218,0 +170730017024,219,0 +170730017074,219,0 +170730017122,219,0 +170730017172,218,0 +170730017220,218,0 +170730017269,219,0 +170730017319,219,0 +170730017368,219,0 +170730017416,219,0 +170730017464,219,0 +170730017513,219,0 +170730017561,219,0 +170730017609,219,0 +170730017657,219,0 +170730017705,219,0 +170730017753,219,0 +170730017801,221,0 +170730017849,253,0 +170730017897,265,0 +170730017947,222,0 +170730017996,219,0 +170730018046,218,0 +170730018093,219,0 +170730018141,219,0 +170730018191,218,0 +170730018239,219,0 +170730018288,219,0 +170730018338,219,0 +170730018386,219,0 +170730018434,219,0 +170730018482,219,0 +170730018531,219,0 +170730018579,219,0 +170730018629,219,0 +170730018677,219,0 +170730018725,219,0 +170730018773,219,0 +170730018822,219,0 +170730018870,252,0 +170730018918,252,0 +170730018966,236,0 +170730019014,219,0 +170730019062,218,0 +170730019111,219,0 +170730019159,218,0 +170730019209,219,0 +170730019257,218,0 +170730019305,218,0 +170730019353,218,0 +170730019401,219,0 +170730019449,218,0 +170730019497,219,0 +170730019545,218,0 +170730019594,218,0 +170730019642,218,0 +170730019690,218,0 +170730019738,218,0 +170730019786,218,0 +170730019834,218,0 +170730019882,219,0 +170730019930,263,0 +170730019978,267,0 +170730020026,226,0 +170730020075,219,0 +170730020123,219,0 +170730020171,218,0 +170730020219,219,0 +170730020267,219,0 +170730020317,218,0 +170730020365,219,0 +170730020413,219,0 +170730020461,218,0 +170730020509,218,0 +170730020558,218,0 +170730020606,218,0 +170730020654,219,0 +170730020703,219,0 +170730020751,218,0 +170730020801,219,0 +170730020849,219,0 +170730020897,219,0 +170730020945,220,0 +170730020994,248,0 +170730021042,257,0 +170730021090,224,0 +170730021138,219,0 +170730021186,218,0 +170730021234,218,0 +170730021284,218,0 +170730021332,219,0 +170730021381,218,0 +170730021429,218,0 +170730021477,218,0 +170730021525,218,0 +170730021574,218,0 +170730021622,218,0 +170730021670,218,0 +170730021720,218,0 +170730021769,218,0 +170730021819,219,0 +170730021868,218,0 +170730021918,218,0 +170730021967,219,0 +170730022017,237,0 +170730022065,258,0 +170730022115,226,0 +170730022164,219,0 +170730022214,219,0 +170730022261,218,0 +170730022309,218,0 +170730022357,218,0 +170730022407,218,0 +170730022456,219,0 +170730022504,218,0 +170730022554,218,0 +170730022603,218,0 +170730022651,219,0 +170730022699,218,0 +170730022747,218,0 +170730022795,218,0 +170730022844,218,0 +170730022892,218,0 +170730022942,218,0 +170730022991,219,0 +170730023041,219,0 +170730023089,251,0 +170730023137,257,0 +170730023186,228,0 +170730023234,218,0 +170730023284,219,0 +170730023332,218,0 +170730023381,218,0 +170730023429,218,0 +170730023477,218,0 +170730023527,219,0 +170730023575,218,0 +170730023623,218,0 +170730023671,218,0 +170730023719,218,0 +170730023768,218,0 +170730023816,218,0 +170730023864,218,0 +170730023912,218,0 +170730023960,218,0 +170730024008,218,0 +170730024056,219,0 +170730024106,221,0 +170730024155,260,0 +170730024203,238,0 +170730024251,219,0 +170730024300,218,0 +170730024350,218,0 +170730024398,218,0 +170730024447,218,0 +170730024495,218,0 +170730024545,218,0 +170730024593,218,0 +170730024641,218,0 +170730024690,218,0 +170730024740,218,0 +170730024787,218,0 +170730024835,218,0 +170730024885,218,0 +170730024933,218,0 +170730024982,218,0 +170730025030,218,0 +170730025080,218,0 +170730025129,219,0 +170730025179,247,0 +170730025227,254,0 +170730025276,228,0 +170730025326,218,0 +170730025374,218,0 +170730025423,218,0 +170730025471,218,0 +170730025519,218,0 +170730025567,218,0 +170730025615,218,0 +170730025663,218,0 +170730025713,218,0 +170730025761,218,0 +170730025810,218,0 +170730025860,218,0 +170730025908,218,0 +170730025956,218,0 +170730026005,218,0 +170730026053,218,0 +170730026101,218,0 +170730026149,218,0 +170730026198,219,0 +170730026246,252,0 +170730026296,270,1 +170730026375,219,0 +170730026423,218,0 +170730026471,218,0 +170730026521,218,0 +170730026569,218,0 +170730026618,218,0 +170730026666,218,0 +170730026714,218,0 +170730026762,218,0 +170730026810,218,0 +170730026858,218,0 +170730026906,218,0 +170730026953,218,0 +170730027001,218,0 +170730027051,218,0 +170730027099,218,0 +170730027148,218,0 +170730027196,218,0 +170730027244,219,0 +170730027292,254,0 +170730027340,272,1 +170730027423,219,0 +170730027472,219,0 +170730027520,218,0 +170730027570,218,0 +170730027618,218,0 +170730027667,218,0 +170730027717,219,0 +170730027767,218,0 +170730027816,218,0 +170730027864,218,0 +170730027912,219,0 +170730027961,218,0 +170730028011,219,0 +170730028059,218,0 +170730028108,218,0 +170730028158,218,0 +170730028206,219,0 +170730028255,219,0 +170730028305,222,0 +170730028355,252,0 +170730028404,248,0 +170730028452,220,0 +170730028502,219,0 +170730028550,219,0 +170730028598,219,0 +170730028646,219,0 +170730028694,219,0 +170730028741,218,0 +170730028789,218,0 +170730028839,218,0 +170730028888,218,0 +170730028936,219,0 +170730028986,218,0 +170730029034,219,0 +170730029083,219,0 +170730029131,219,0 +170730029181,218,0 +170730029229,218,0 +170730029277,219,0 +170730029325,219,0 +170730029373,239,0 +170730029422,257,0 +170730029470,223,0 +170730029520,220,0 +170730029568,219,0 +170730029617,219,0 +170730029665,218,0 +170730029713,218,0 +170730029761,218,0 +170730029809,218,0 +170730029858,218,0 +170730029906,219,0 +170730029954,218,0 +170730030002,218,0 +170730030050,218,0 +170730030097,218,0 +170730030145,218,0 +170730030193,219,0 +170730030241,218,0 +170730030289,219,0 +170730030337,219,0 +170730030386,220,0 +170730030434,249,0 +170730030482,265,0 +170730030530,229,0 +170730030578,219,0 +170730030626,219,0 +170730030674,219,0 +170730030723,219,0 +170730030773,219,0 +170730030821,219,0 +170730030870,219,0 +170730030918,219,0 +170730030968,219,0 +170730031016,219,0 +170730031064,219,0 +170730031112,219,0 +170730031160,219,0 +170730031208,219,0 +170730031256,219,0 +170730031304,219,0 +170730031352,219,0 +170730031400,219,0 +170730031448,221,0 +170730031497,255,0 +170730031545,272,1 +170730031626,219,0 +170730031675,219,0 +170730031723,219,0 +170730031773,219,0 +170730031821,219,0 +170730031869,219,0 +170730031918,219,0 +170730031966,219,0 +170730032014,219,0 +170730032062,219,0 +170730032110,219,0 +170730032158,219,0 +170730032206,219,0 +170730032254,219,0 +170730032302,219,0 +170730032350,219,0 +170730032400,219,0 +170730032449,220,0 +170730032499,221,0 +170730032548,251,0 +170730032598,243,0 +170730032646,220,0 +170730032694,218,0 +170730032743,219,0 +170730032791,218,0 +170730032839,218,0 +170730032889,218,0 +170730032936,218,0 +170730032984,218,0 +170730033032,218,0 +170730033080,218,0 +170730033128,219,0 +170730033176,218,0 +170730033224,219,0 +170730033273,218,0 +170730033321,218,0 +170730033369,218,0 +170730033417,218,0 +170730033465,219,0 +170730033513,219,0 +170730033561,223,0 +170730033608,255,0 +170730033658,231,0 +170730033707,220,0 +170730033755,218,0 +170730033805,218,0 +170730033854,219,0 +170730033902,218,0 +170730033950,218,0 +170730033998,218,0 +170730034046,219,0 +170730034094,219,0 +170730034142,218,0 +170730034190,218,0 +170730034238,219,0 +170730034286,219,0 +170730034334,218,0 +170730034381,218,0 +170730034429,218,0 +170730034477,219,0 +170730034527,219,0 +170730034576,220,0 +170730034624,248,0 +170730034672,263,0 +170730034720,229,0 +170730034768,219,0 +170730034817,219,0 +170730034867,219,0 +170730034916,219,0 +170730034964,219,0 +170730035012,219,0 +170730035060,219,0 +170730035110,219,0 +170730035157,219,0 +170730035205,219,0 +170730035253,219,0 +170730035301,219,0 +170730035349,219,0 +170730035398,219,0 +170730035446,219,0 +170730035494,219,0 +170730035542,219,0 +170730035590,219,0 +170730035638,221,0 +170730035686,248,0 +170730035734,273,1 +170730035818,219,0 +170730035866,219,0 +170730035913,219,0 +170730035961,219,0 +170730036009,219,0 +170730036057,219,0 +170730036105,219,0 +170730036153,219,0 +170730036201,219,0 +170730036249,219,0 +170730036298,220,0 +170730036346,219,0 +170730036395,219,0 +170730036445,219,0 +170730036493,218,0 +170730036541,219,0 +170730036589,219,0 +170730036636,219,0 +170730036684,220,0 +170730036734,247,0 +170730036782,257,0 +170730036830,227,0 +170730036877,219,0 +170730036925,219,0 +170730036973,219,0 +170730037021,219,0 +170730037069,219,0 +170730037118,219,0 +170730037166,219,0 +170730037214,219,0 +170730037262,219,0 +170730037310,219,0 +170730037358,219,0 +170730037406,219,0 +170730037454,218,0 +170730037502,219,0 +170730037549,219,0 +170730037597,219,0 +170730037645,219,0 +170730037693,219,0 +170730037741,221,0 +170730037791,256,0 +170730037838,277,1 +170730037918,219,0 +170730037966,219,0 +170730038014,219,0 +170730038062,219,0 +170730038110,219,0 +170730038157,219,0 +170730038205,219,0 +170730038253,219,0 +170730038301,219,0 +170730038351,218,0 +170730038400,219,0 +170730038448,219,0 +170730038496,219,0 +170730038544,219,0 +170730038592,219,0 +170730038640,219,0 +170730038687,219,0 +170730038735,219,0 +170730038785,220,0 +170730038833,249,0 +170730038881,276,1 +170730038965,219,0 +170730039015,219,0 +170730039062,219,0 +170730039110,219,0 +170730039158,218,0 +170730039208,218,0 +170730039257,218,0 +170730039305,219,0 +170730039355,219,0 +170730039403,218,0 +170730039452,218,0 +170730039502,219,0 +170730039551,219,0 +170730039599,219,0 +170730039647,218,0 +170730039697,219,0 +170730039745,218,0 +170730039793,219,0 +170730039841,220,0 +170730039888,264,0 +170730039936,267,0 +170730039986,223,0 +170730040035,219,0 +170730040083,219,0 +170730040133,219,0 +170730040181,219,0 +170730040230,218,0 +170730040280,219,0 +170730040328,218,0 +170730040376,219,0 +170730040424,219,0 +170730040473,219,0 +170730040521,218,0 +170730040571,219,0 +170730040619,218,0 +170730040667,219,0 +170730040715,218,0 +170730040764,219,0 +170730040812,219,0 +170730040861,219,0 +170730040909,249,0 +170730040957,257,0 +170730041005,223,0 +170730041053,219,0 +170730041101,218,0 +170730041151,219,0 +170730041199,218,0 +170730041247,219,0 +170730041295,219,0 +170730041343,219,0 +170730041390,219,0 +170730041438,219,0 +170730041488,219,0 +170730041536,218,0 +170730041585,219,0 +170730041633,219,0 +170730041683,219,0 +170730041731,218,0 +170730041779,218,0 +170730041828,218,0 +170730041876,219,0 +170730041926,219,0 +170730041975,253,0 +170730042023,269,0 +170730042073,228,0 +170730042121,219,0 +170730042169,219,0 +170730042218,219,0 +170730042268,219,0 +170730042316,219,0 +170730042364,219,0 +170730042413,219,0 +170730042463,219,0 +170730042511,218,0 +170730042559,219,0 +170730042606,219,0 +170730042654,219,0 +170730042702,219,0 +170730042752,219,0 +170730042800,219,0 +170730042848,219,0 +170730042897,219,0 +170730042945,219,0 +170730042995,221,0 +170730043043,253,0 +170730043092,262,0 +170730043140,222,0 +170730043188,220,0 +170730043238,219,0 +170730043286,219,0 +170730043335,219,0 +170730043383,219,0 +170730043431,219,0 +170730043481,219,0 +170730043530,219,0 +170730043578,219,0 +170730043628,220,0 +170730043676,219,0 +170730043724,220,0 +170730043772,219,0 +170730043820,220,0 +170730043867,219,0 +170730043917,219,0 +170730043966,220,0 +170730044016,220,0 +170730044064,256,0 +170730044113,259,0 +170730044161,227,0 +170730044211,220,0 +170730044260,218,0 +170730044310,218,0 +170730044358,219,0 +170730044407,219,0 +170730044455,219,0 +170730044503,219,0 +170730044553,219,0 +170730044601,219,0 +170730044650,219,0 +170730044698,219,0 +170730044746,219,0 +170730044794,219,0 +170730044844,219,0 +170730044891,219,0 +170730044939,219,0 +170730044989,219,0 +170730045037,219,0 +170730045085,221,0 +170730045133,253,0 +170730045181,267,0 +170730045230,224,0 +170730045278,219,0 +170730045328,219,0 +170730045375,219,0 +170730045423,219,0 +170730045473,218,0 +170730045521,219,0 +170730045569,219,0 +170730045618,219,0 +170730045668,219,0 +170730045716,219,0 +170730045764,218,0 +170730045813,219,0 +170730045861,219,0 +170730045911,219,0 +170730045959,219,0 +170730046007,219,0 +170730046054,219,0 +170730046102,219,0 +170730046150,225,0 +170730046198,251,0 +170730046248,233,0 +170730046296,220,0 +170730046344,219,0 +170730046393,219,0 +170730046441,219,0 +170730046491,219,0 +170730046539,219,0 +170730046587,219,0 +170730046635,219,0 +170730046683,219,0 +170730046731,219,0 +170730046779,219,0 +170730046827,219,0 +170730046875,219,0 +170730046923,219,0 +170730046972,219,0 +170730047020,219,0 +170730047068,219,0 +170730047116,219,0 +170730047164,220,0 +170730047214,260,0 +170730047263,262,0 +170730047313,230,0 +170730047362,220,0 +170730047412,220,0 +170730047460,220,0 +170730047509,220,0 +170730047559,220,0 +170730047607,220,0 +170730047656,220,0 +170730047706,220,0 +170730047754,220,0 +170730047803,219,0 +170730047852,220,0 +170730047900,220,0 +170730047948,220,0 +170730047998,220,0 +170730048046,220,0 +170730048094,220,0 +170730048143,220,0 +170730048191,220,0 +170730048239,222,0 +170730048287,252,0 +170730048335,279,1 +170730048412,219,0 +170730048460,219,0 +170730048509,219,0 +170730048559,219,0 +170730048607,219,0 +170730048655,219,0 +170730048703,219,0 +170730048751,219,0 +170730048800,219,0 +170730048848,220,0 +170730048896,219,0 +170730048944,219,0 +170730048992,219,0 +170730049040,219,0 +170730049088,219,0 +170730049136,220,0 +170730049184,219,0 +170730049233,220,0 +170730049283,221,0 +170730049331,252,0 +170730049380,262,0 +170730049428,226,0 +170730049476,220,0 +170730049524,219,0 +170730049572,219,0 +170730049620,219,0 +170730049668,219,0 +170730049716,219,0 +170730049764,219,0 +170730049812,219,0 +170730049860,219,0 +170730049909,219,0 +170730049959,220,0 +170730050007,219,0 +170730050055,219,0 +170730050102,219,0 +170730050152,219,0 +170730050201,219,0 +170730050249,219,0 +170730050299,220,0 +170730050347,221,0 +170730050395,255,0 +170730050444,269,0 +170730050492,222,0 +170730050540,219,0 +170730050588,219,0 +170730050638,219,0 +170730050686,219,0 +170730050735,219,0 +170730050783,219,0 +170730050833,219,0 +170730050881,219,0 +170730050930,219,0 +170730050978,219,0 +170730051026,219,0 +170730051076,219,0 +170730051124,219,0 +170730051172,219,0 +170730051220,220,0 +170730051268,219,0 +170730051315,219,0 +170730051363,220,0 +170730051413,253,0 +170730051462,256,0 +170730051512,222,0 +170730051561,220,0 +170730051609,219,0 +170730051659,219,0 +170730051708,219,0 +170730051756,219,0 +170730051804,219,0 +170730051854,219,0 +170730051902,219,0 +170730051950,219,0 +170730051998,219,0 +170730052046,219,0 +170730052093,219,0 +170730052141,219,0 +170730052191,220,0 +170730052240,219,0 +170730052288,219,0 +170730052336,219,0 +170730052384,219,0 +170730052434,220,0 +170730052483,247,0 +170730052531,270,1 +170730052612,219,0 +170730052660,219,0 +170730052709,219,0 +170730052757,219,0 +170730052807,219,0 +170730052855,219,0 +170730052903,219,0 +170730052951,219,0 +170730053000,219,0 +170730053048,219,0 +170730053096,219,0 +170730053144,219,0 +170730053192,219,0 +170730053240,220,0 +170730053288,219,0 +170730053338,219,0 +170730053387,219,0 +170730053436,219,0 +170730053484,220,0 +170730053532,250,0 +170730053580,263,0 +170730053628,225,0 +170730053678,219,0 +170730053727,219,0 +170730053775,219,0 +170730053825,219,0 +170730053873,219,0 +170730053921,219,0 +170730053969,219,0 +170730054018,219,0 +170730054068,219,0 +170730054115,219,0 +170730054163,219,0 +170730054211,219,0 +170730054259,219,0 +170730054309,219,0 +170730054357,219,0 +170730054405,219,0 +170730054453,219,0 +170730054502,219,0 +170730054552,227,0 +170730054600,263,0 +170730054648,239,0 +170730054696,220,0 +170730054744,219,0 +170730054793,219,0 +170730054841,219,0 +170730054891,218,0 +170730054939,219,0 +170730054987,219,0 +170730055036,219,0 +170730055084,219,0 +170730055132,218,0 +170730055180,219,0 +170730055230,219,0 +170730055278,219,0 +170730055326,219,0 +170730055374,219,0 +170730055421,219,0 +170730055471,219,0 +170730055519,219,0 +170730055568,220,0 +170730055616,252,0 +170730055664,258,0 +170730055712,226,0 +170730055762,219,0 +170730055810,219,0 +170730055858,219,0 +170730055907,219,0 +170730055955,218,0 +170730056005,219,0 +170730056054,219,0 +170730056102,219,0 +170730056150,219,0 +170730056198,219,0 +170730056246,219,0 +170730056294,219,0 +170730056342,219,0 +170730056390,219,0 +170730056438,219,0 +170730056486,218,0 +170730056534,219,0 +170730056582,220,0 +170730056631,220,0 +170730056681,249,0 +170730056730,263,0 +170730056780,227,0 +170730056829,219,0 +170730056879,219,0 +170730056928,219,0 +170730056976,219,0 +170730057024,219,0 +170730057074,219,0 +170730057123,219,0 +170730057173,219,0 +170730057221,219,0 +170730057269,219,0 +170730057318,219,0 +170730057366,219,0 +170730057414,219,0 +170730057462,219,0 +170730057510,219,0 +170730057558,218,0 +170730057607,219,0 +170730057655,219,0 +170730057705,230,0 +170730057754,250,0 +170730057804,227,0 +170730057853,220,0 +170730057903,219,0 +170730057951,219,0 +170730058000,219,0 +170730058048,219,0 +170730058098,219,0 +170730058146,219,0 +170730058195,219,0 +170730058243,219,0 +170730058291,220,0 +170730058341,219,0 +170730058389,219,0 +170730058438,220,0 +170730058486,219,0 +170730058534,220,0 +170730058582,219,0 +170730058631,219,0 +170730058681,220,0 +170730058729,220,0 +170730058777,252,0 +170730058826,253,0 +170730058874,226,0 +170730058922,220,0 +170730058970,219,0 +170730059018,219,0 +170730059066,219,0 +170730059116,219,0 +170730059164,219,0 +170730059212,219,0 +170730059260,219,0 +170730059309,219,0 +170730059357,220,0 +170730059407,219,0 +170730059455,219,0 +170730059503,219,0 +170730059552,219,0 +170730059601,219,0 +170730059649,218,0 +170730059699,219,0 +170730059748,219,0 +170730059798,220,0 +170730059846,248,0 +170730059894,258,0 +170730059942,222,0 +170730059990,219,0 +170730060039,219,0 +170730060089,219,0 +170730060137,219,0 +170730060185,219,0 +170730060233,219,0 +170730060281,219,0 +170730060330,219,0 +170730060378,219,0 +170730060426,219,0 +170730060476,219,0 +170730060524,219,0 +170730060573,219,0 +170730060623,219,0 +170730060672,219,0 +170730060722,219,0 +170730060771,219,0 +170730060819,220,0 +170730060868,249,0 +170730060916,255,0 +170730060966,227,0 +170730061015,220,0 +170730061063,219,0 +170730061113,219,0 +170730061162,219,0 +170730061210,219,0 +170730061258,220,0 +170730061308,219,0 +170730061356,219,0 +170730061404,219,0 +170730061452,219,0 +170730061500,220,0 +170730061548,219,0 +170730061597,219,0 +170730061645,219,0 +170730061693,220,0 +170730061741,219,0 +170730061790,220,0 +170730061840,220,0 +170730061888,220,0 +170730061936,254,0 +170730061984,272,1 +170730062071,219,0 +170730062121,220,0 +170730062170,219,0 +170730062220,219,0 +170730062268,219,0 +170730062316,219,0 +170730062365,219,0 +170730062413,219,0 +170730062461,220,0 +170730062511,219,0 +170730062560,219,0 +170730062608,219,0 +170730062656,220,0 +170730062704,219,0 +170730062752,220,0 +170730062801,219,0 +170730062851,220,0 +170730062899,219,0 +170730062947,221,0 +170730062995,257,0 +170730063043,265,0 +170730063091,227,0 +170730063139,219,0 +170730063187,219,0 +170730063235,219,0 +170730063284,219,0 +170730063332,220,0 +170730063381,220,0 +170730063429,219,0 +170730063479,220,0 +170730063528,219,0 +170730063576,219,0 +170730063624,220,0 +170730063672,219,0 +170730063722,220,0 +170730063770,220,0 +170730063818,220,0 +170730063866,219,0 +170730063914,219,0 +170730063962,220,0 +170730064010,234,0 +170730064058,255,0 +170730064106,237,0 +170730064155,221,0 +170730064203,220,0 +170730064251,220,0 +170730064299,219,0 +170730064347,220,0 +170730064395,220,0 +170730064443,220,0 +170730064493,219,0 +170730064542,219,0 +170730064590,220,0 +170730064638,220,0 +170730064686,219,0 +170730064735,220,0 +170730064785,220,0 +170730064833,220,0 +170730064881,219,0 +170730064929,220,0 +170730064978,220,0 +170730065026,220,0 +170730065076,251,0 +170730065124,256,0 +170730065172,227,0 +170730065220,220,0 +170730065268,219,0 +170730065317,218,0 +170730065367,219,0 +170730065415,219,0 +170730065463,219,0 +170730065510,219,0 +170730065558,219,0 +170730065608,219,0 +170730065656,219,0 +170730065704,219,0 +170730065752,219,0 +170730065800,219,0 +170730065848,219,0 +170730065897,219,0 +170730065947,219,0 +170730065996,219,0 +170730066044,219,0 +170730066092,220,0 +170730066140,251,0 +170730066188,258,0 +170730066236,226,0 +170730066284,219,0 +170730066332,219,0 +170730066380,219,0 +170730066428,219,0 +170730066477,219,0 +170730066527,219,0 +170730066575,219,0 +170730066623,219,0 +170730066671,219,0 +170730066719,219,0 +170730066767,219,0 +170730066815,219,0 +170730066863,219,0 +170730066911,219,0 +170730066960,219,0 +170730067010,219,0 +170730067058,219,0 +170730067106,219,0 +170730067154,222,0 +170730067201,252,0 +170730067249,265,0 +170730067297,222,0 +170730067345,219,0 +170730067393,219,0 +170730067441,219,0 +170730067489,219,0 +170730067537,219,0 +170730067584,220,0 +170730067632,220,0 +170730067682,219,0 +170730067731,219,0 +170730067779,219,0 +170730067829,218,0 +170730067878,219,0 +170730067926,219,0 +170730067974,219,0 +170730068022,219,0 +170730068070,219,0 +170730068118,219,0 +170730068167,219,0 +170730068215,254,0 +170730068263,265,0 +170730068311,223,0 +170730068360,219,0 +170730068408,219,0 +170730068456,219,0 +170730068504,218,0 +170730068552,219,0 +170730068601,219,0 +170730068649,219,0 +170730068697,219,0 +170730068745,219,0 +170730068793,218,0 +170730068841,219,0 +170730068889,219,0 +170730068939,219,0 +170730068987,219,0 +170730069035,219,0 +170730069083,219,0 +170730069131,219,0 +170730069180,219,0 +170730069230,220,0 +170730069279,253,0 +170730069327,254,0 +170730069377,226,0 +170730069425,219,0 +170730069473,219,0 +170730069521,219,0 +170730069569,219,0 +170730069617,219,0 +170730069664,219,0 +170730069712,219,0 +170730069760,219,0 +170730069808,219,0 +170730069856,219,0 +170730069904,219,0 +170730069952,219,0 +170730070000,219,0 +170730070047,218,0 +170730070095,218,0 +170730070143,219,0 +170730070191,219,0 +170730070239,219,0 +170730070287,220,0 +170730070336,250,0 +170730070384,253,0 +170730070432,225,0 +170730070480,219,0 +170730070528,219,0 +170730070576,219,0 +170730070624,219,0 +170730070672,219,0 +170730070721,219,0 +170730070769,218,0 +170730070817,218,0 +170730070865,219,0 +170730070913,218,0 +170730070961,219,0 +170730071008,219,0 +170730071056,219,0 +170730071106,219,0 +170730071154,219,0 +170730071203,219,0 +170730071251,219,0 +170730071299,219,0 +170730071347,220,0 +170730071395,249,0 +170730071443,257,0 +170730071491,223,0 +170730071539,219,0 +170730071586,219,0 +170730071634,219,0 +170730071682,219,0 +170730071730,219,0 +170730071778,219,0 +170730071826,219,0 +170730071874,219,0 +170730071921,218,0 +170730071969,219,0 +170730072017,219,0 +170730072065,219,0 +170730072113,219,0 +170730072161,219,0 +170730072209,219,0 +170730072257,219,0 +170730072305,219,0 +170730072353,219,0 +170730072401,221,0 +170730072448,247,0 +170730072498,253,0 +170730072547,220,0 +170730072595,219,0 +170730072645,219,0 +170730072693,219,0 +170730072741,219,0 +170730072789,219,0 +170730072837,219,0 +170730072884,219,0 +170730072934,219,0 +170730072984,219,0 +170730073032,219,0 +170730073081,219,0 +170730073131,219,0 +170730073179,219,0 +170730073226,218,0 +170730073274,219,0 +170730073324,219,0 +170730073372,219,0 +170730073420,220,0 +170730073467,247,0 +170730073515,258,0 +170730073563,226,0 +170730073613,220,0 +170730073660,219,0 +170730073708,219,0 +170730073756,219,0 +170730073804,219,0 +170730073852,219,0 +170730073900,219,0 +170730073948,219,0 +170730073996,219,0 +170730074043,219,0 +170730074091,219,0 +170730074139,219,0 +170730074187,219,0 +170730074235,219,0 +170730074283,219,0 +170730074331,219,0 +170730074378,219,0 +170730074426,219,0 +170730074474,220,0 +170730074522,259,0 +170730074570,256,0 +170730074618,230,0 +170730074666,219,0 +170730074713,219,0 +170730074761,219,0 +170730074809,219,0 +170730074857,219,0 +170730074905,219,0 +170730074953,219,0 +170730075001,219,0 +170730075049,219,0 +170730075098,219,0 +170730075146,219,0 +170730075194,219,0 +170730075242,219,0 +170730075290,219,0 +170730075337,219,0 +170730075385,219,0 +170730075435,219,0 +170730075483,219,0 +170730075531,220,0 +170730075578,248,0 +170730075626,259,0 +170730075674,228,0 +170730075722,219,0 +170730075770,219,0 +170730075818,218,0 +170730075866,218,0 +170730075914,219,0 +170730075962,219,0 +170730076009,219,0 +170730076057,219,0 +170730076105,219,0 +170730076155,219,0 +170730076203,219,0 +170730076251,219,0 +170730076299,219,0 +170730076347,219,0 +170730076395,219,0 +170730076443,219,0 +170730076492,219,0 +170730076540,220,0 +170730076588,220,0 +170730076636,253,0 +170730076685,257,0 +170730076733,228,0 +170730076783,219,0 +170730076832,219,0 +170730076880,219,0 +170730076928,219,0 +170730076978,219,0 +170730077026,219,0 +170730077073,219,0 +170730077123,219,0 +170730077171,219,0 +170730077220,219,0 +170730077270,219,0 +170730077320,219,0 +170730077369,219,0 +170730077417,219,0 +170730077466,219,0 +170730077516,219,0 +170730077564,219,0 +170730077612,220,0 +170730077660,223,0 +170730077708,254,0 +170730077757,253,0 +170730077807,220,0 +170730077855,219,0 +170730077903,219,0 +170730077951,219,0 +170730077999,219,0 +170730078047,218,0 +170730078095,219,0 +170730078144,219,0 +170730078192,219,0 +170730078242,219,0 +170730078291,219,0 +170730078339,219,0 +170730078389,219,0 +170730078437,219,0 +170730078485,219,0 +170730078534,219,0 +170730078584,219,0 +170730078632,220,0 +170730078679,220,0 +170730078727,263,0 +170730078777,263,0 +170730078825,229,0 +170730078874,219,0 +170730078924,219,0 +170730078972,219,0 +170730079020,219,0 +170730079068,219,0 +170730079117,219,0 +170730079165,219,0 +170730079215,218,0 +170730079263,218,0 +170730079311,218,0 +170730079359,218,0 +170730079408,219,0 +170730079456,219,0 +170730079504,219,0 +170730079552,219,0 +170730079600,219,0 +170730079648,219,0 +170730079696,219,0 +170730079746,220,0 +170730079793,256,0 +170730079841,261,0 +170730079889,224,0 +170730079939,219,0 +170730079989,218,0 +170730080037,218,0 +170730080085,219,0 +170730080133,219,0 +170730080182,218,0 +170730080230,219,0 +170730080278,219,0 +170730080327,219,0 +170730080375,219,0 +170730080425,218,0 +170730080473,218,0 +170730080522,219,0 +170730080572,218,0 +170730080620,218,0 +170730080668,219,0 +170730080716,219,0 +170730080764,219,0 +170730080812,239,0 +170730080861,258,0 +170730080909,223,0 +170730080957,219,0 +170730081007,219,0 +170730081055,219,0 +170730081104,219,0 +170730081152,218,0 +170730081200,219,0 +170730081248,219,0 +170730081298,219,0 +170730081347,219,0 +170730081395,219,0 +170730081443,219,0 +170730081492,218,0 +170730081540,219,0 +170730081588,219,0 +170730081638,219,0 +170730081687,219,0 +170730081735,219,0 +170730081783,219,0 +170730081831,220,0 +170730081881,248,0 +170730081929,252,0 +170730081976,225,0 +170730082024,220,0 +170730082072,219,0 +170730082120,219,0 +170730082169,219,0 +170730082217,218,0 +170730082265,219,0 +170730082313,219,0 +170730082361,219,0 +170730082409,219,0 +170730082457,219,0 +170730082505,218,0 +170730082553,218,0 +170730082600,218,0 +170730082648,219,0 +170730082696,219,0 +170730082746,219,0 +170730082793,219,0 +170730082841,219,0 +170730082889,221,0 +170730082937,252,0 +170730082987,256,0 +170730083035,224,0 +170730083082,219,0 +170730083130,219,0 +170730083178,219,0 +170730083226,219,0 +170730083274,219,0 +170730083322,219,0 +170730083372,218,0 +170730083420,219,0 +170730083469,219,0 +170730083519,219,0 +170730083568,219,0 +170730083618,219,0 +170730083666,219,0 +170730083714,219,0 +170730083762,218,0 +170730083810,219,0 +170730083857,219,0 +170730083907,220,0 +170730083955,246,0 +170730084004,258,0 +170730084052,226,0 +170730084100,219,0 +170730084148,219,0 +170730084196,219,0 +170730084244,219,0 +170730084292,219,0 +170730084340,219,0 +170730084388,219,0 +170730084435,219,0 +170730084483,219,0 +170730084531,219,0 +170730084579,219,0 +170730084627,219,0 +170730084675,219,0 +170730084723,219,0 +170730084771,219,0 +170730084819,219,0 +170730084867,219,0 +170730084914,219,0 +170730084962,219,0 +170730085010,228,0 +170730085058,267,0 +170730085106,224,0 +170730085154,220,0 +170730085202,219,0 +170730085250,219,0 +170730085297,219,0 +170730085345,219,0 +170730085393,219,0 +170730085443,219,0 +170730085492,218,0 +170730085540,219,0 +170730085588,219,0 +170730085637,218,0 +170730085685,219,0 +170730085733,219,0 +170730085783,219,0 +170730085830,219,0 +170730085880,219,0 +170730085928,219,0 +170730085976,219,0 +170730086025,219,0 +170730086073,269,0 +170730086121,255,0 +170730086169,226,0 +170730086217,219,0 +170730086264,219,0 +170730086312,219,0 +170730086360,219,0 +170730086408,219,0 +170730086456,219,0 +170730086504,219,0 +170730086552,219,0 +170730086600,219,0 +170730086648,219,0 +170730086695,219,0 +170730086745,219,0 +170730086793,219,0 +170730086841,219,0 +170730086889,219,0 +170730086937,220,0 +170730086984,219,0 +170730087032,220,0 +170730087080,220,0 +170730087128,257,0 +170730087176,273,1 +170730087257,219,0 +170730087307,219,0 +170730087356,220,0 +170730087404,219,0 +170730087454,219,0 +170730087502,219,0 +170730087551,219,0 +170730087601,219,0 +170730087649,220,0 +170730087697,219,0 +170730087746,220,0 +170730087794,219,0 +170730087842,219,0 +170730087892,219,0 +170730087940,219,0 +170730087988,219,0 +170730088037,219,0 +170730088085,220,0 +170730088135,220,0 +170730088182,254,0 +170730088230,270,1 +170730088310,219,0 +170730088358,220,0 +170730088406,219,0 +170730088453,219,0 +170730088503,219,0 +170730088551,219,0 +170730088599,219,0 +170730088646,219,0 +170730088694,219,0 +170730088742,219,0 +170730088790,219,0 +170730088838,219,0 +170730088886,219,0 +170730088934,219,0 +170730088982,219,0 +170730089031,219,0 +170730089079,219,0 +170730089127,219,0 +170730089175,220,0 +170730089223,273,1 +170730089301,251,0 +170730089349,222,0 +170730089397,219,0 +170730089446,219,0 +170730089494,219,0 +170730089542,219,0 +170730089590,219,0 +170730089638,219,0 +170730089686,219,0 +170730089735,219,0 +170730089783,219,0 +170730089833,219,0 +170730089881,219,0 +170730089929,219,0 +170730089976,219,0 +170730090024,219,0 +170730090072,219,0 +170730090120,219,0 +170730090168,219,0 +170730090216,220,0 +170730090264,257,0 +170730090312,264,0 +170730090361,227,0 +170730090409,220,0 +170730090457,219,0 +170730090505,219,0 +170730090553,219,0 +170730090601,219,0 +170730090649,219,0 +170730090696,219,0 +170730090746,219,0 +170730090794,219,0 +170730090842,219,0 +170730090890,219,0 +170730090938,219,0 +170730090986,219,0 +170730091035,219,0 +170730091083,219,0 +170730091131,219,0 +170730091179,218,0 +170730091227,219,0 +170730091275,220,0 +170730091324,251,0 +170730091374,256,0 +170730091422,226,0 +170730091470,219,0 +170730091519,219,0 +170730091569,219,0 +170730091617,219,0 +170730091665,219,0 +170730091712,219,0 +170730091762,219,0 +170730091812,219,0 +170730091860,219,0 +170730091908,219,0 +170730091955,218,0 +170730092003,219,0 +170730092053,219,0 +170730092102,219,0 +170730092150,219,0 +170730092198,219,0 +170730092248,219,0 +170730092296,220,0 +170730092344,221,0 +170730092392,252,0 +170730092440,259,0 +170730092488,223,0 +170730092535,219,0 +170730092583,219,0 +170730092633,219,0 +170730092681,218,0 +170730092730,219,0 +170730092780,218,0 +170730092828,219,0 +170730092876,219,0 +170730092925,219,0 +170730092973,219,0 +170730093021,219,0 +170730093071,219,0 +170730093119,219,0 +170730093167,219,0 +170730093215,220,0 +170730093263,221,0 +170730093312,224,0 +170730093360,230,0 +170730093408,236,0 +170730093456,250,0 +170730093504,226,0 +170730093551,436,0 +170730093601,436,0 +170730093649,436,0 +170730093697,436,0 +170730093747,436,0 +170730093794,436,0 +170730093842,436,0 +170730093890,436,0 +170730093940,436,0 +170730093988,436,0 +170730094037,436,0 +170730094087,437,0 +170730094136,437,0 +170730094184,436,0 +170730094234,436,0 +170730094283,436,0 +170730094331,436,0 +170730094381,435,0 +170730094430,436,0 +170730094478,248,0 +170730094528,253,0 +170730094577,433,0 +170730094625,436,0 +170730094675,436,0 +170730094724,436,0 +170730094772,437,0 +170730094820,436,0 +170730094870,436,0 +170730094918,437,0 +170730094967,436,0 +170730095015,436,0 +170730095063,437,0 +170730095111,437,0 +170730095159,436,0 +170730095206,437,0 +170730095254,437,0 +170730095302,437,0 +170730095350,437,0 +170730095398,436,0 +170730095446,437,0 +170730095494,435,0 +170730095542,253,0 +170730095590,258,0 +170730095640,435,0 +170730095688,436,0 +170730095736,437,0 +170730095785,437,0 +170730095833,437,0 +170730095883,436,0 +170730095931,437,0 +170730095979,437,0 +170730096027,437,0 +170730096075,437,0 +170730096122,437,0 +170730096172,437,0 +170730096221,437,0 +170730096269,437,0 +170730096317,437,0 +170730096365,436,0 +170730096415,437,0 +170730096464,436,0 +170730096514,437,0 +170730096563,255,0 +170730096613,254,0 +170730096661,430,0 +170730096713,437,0 +170730096761,437,0 +170730096810,437,0 +170730096859,437,0 +170730096907,437,0 +170730096955,437,0 +170730097003,437,0 +170730097051,437,0 +170730097098,437,0 +170730097146,437,0 +170730097194,437,0 +170730097244,437,0 +170730097292,437,0 +170730097340,437,0 +170730097388,437,0 +170730097436,437,0 +170730097484,437,0 +170730097531,437,0 +170730097581,436,0 +170730097629,272,1 +170730097706,431,0 +170730097754,437,0 +170730097802,437,0 +170730097851,437,0 +170730097899,437,0 +170730097947,437,0 +170730097995,437,0 +170730098043,437,0 +170730098093,437,0 +170730098140,437,0 +170730098188,437,0 +170730098236,437,0 +170730098284,437,0 +170730098332,437,0 +170730098381,437,0 +170730098429,437,0 +170730098477,437,0 +170730098525,437,0 +170730098573,437,0 +170730098621,436,0 +170730098669,248,0 +170730098717,269,0 +170730098764,431,0 +170730098814,437,0 +170730098862,437,0 +170730098910,437,0 +170730098959,437,0 +170730099007,437,0 +170730099055,437,0 +170730099103,437,0 +170730099151,437,0 +170730099199,437,0 +170730099247,437,0 +170730099295,437,0 +170730099342,437,0 +170730099390,437,0 +170730099438,437,0 +170730099486,437,0 +170730099534,437,0 +170730099582,437,0 +170730099630,437,0 +170730099679,436,0 +170730099729,257,0 +170730099777,265,0 +170730099825,433,0 +170730099874,436,0 +170730099924,437,0 +170730099973,437,0 +170730100021,437,0 +170730100071,437,0 +170730100119,437,0 +170730100168,436,0 +170730100217,437,0 +170730100265,437,0 +170730100313,437,0 +170730100361,437,0 +170730100409,437,0 +170730100457,437,0 +170730100506,437,0 +170730100554,437,0 +170730100604,437,0 +170730100652,437,0 +170730100699,437,0 +170730100749,381,0 +170730100797,252,0 +170730100845,226,0 +170730100893,437,0 +170730100940,437,0 +170730100988,437,0 +170730101036,437,0 +170730101084,437,0 +170730101132,437,0 +170730101181,437,0 +170730101229,437,0 +170730101279,437,0 +170730101326,437,0 +170730101374,437,0 +170730101422,437,0 +170730101470,437,0 +170730101518,437,0 +170730101566,437,0 +170730101614,437,0 +170730101662,437,0 +170730101710,436,0 +170730101757,437,0 +170730101805,250,0 +170730101858,250,0 +170730101906,243,0 +170730101954,436,0 +170730102002,437,0 +170730102049,437,0 +170730102097,437,0 +170730102145,437,0 +170730102193,437,0 +170730102241,437,0 +170730102291,437,0 +170730102338,437,0 +170730102386,437,0 +170730102434,437,0 +170730102482,437,0 +170730102530,437,0 +170730102580,437,0 +170730102628,437,0 +170730102676,437,0 +170730102725,437,0 +170730102775,437,0 +170730102823,436,0 +170730102871,250,0 +170730102919,262,0 +170730102968,432,0 +170730103018,437,0 +170730103066,437,0 +170730103114,437,0 +170730103161,437,0 +170730103211,437,0 +170730103261,437,0 +170730103308,437,0 +170730103356,437,0 +170730103404,437,0 +170730103452,437,0 +170730103500,437,0 +170730103548,437,0 +170730103598,437,0 +170730103646,437,0 +170730103695,437,0 +170730103743,437,0 +170730103791,437,0 +170730103839,437,0 +170730103889,436,0 +170730103936,252,0 +170730103986,245,0 +170730104035,436,0 +170730104085,437,0 +170730104133,436,0 +170730104182,437,0 +170730104232,437,0 +170730104280,437,0 +170730104328,437,0 +170730104376,437,0 +170730104425,437,0 +170730104475,437,0 +170730104523,437,0 +170730104572,437,0 +170730104622,436,0 +170730104670,437,0 +170730104718,437,0 +170730104766,437,0 +170730104814,437,0 +170730104862,437,0 +170730104911,437,0 +170730104959,266,0 +170730105009,258,0 +170730105058,430,0 +170730105108,437,0 +170730105156,437,0 +170730105204,437,0 +170730105252,437,0 +170730105300,437,0 +170730105349,437,0 +170730105399,437,0 +170730105448,437,0 +170730105498,437,0 +170730105546,437,0 +170730105593,437,0 +170730105641,437,0 +170730105691,437,0 +170730105739,437,0 +170730105787,437,0 +170730105835,437,0 +170730105883,437,0 +170730105931,437,0 +170730105979,436,0 +170730106028,248,0 +170730106076,258,0 +170730106124,436,0 +170730106174,437,0 +170730106222,437,0 +170730106270,437,0 +170730106317,437,0 +170730106365,437,0 +170730106413,437,0 +170730106461,437,0 +170730106509,437,0 +170730106557,437,0 +170730106606,437,0 +170730106654,437,0 +170730106702,437,0 +170730106750,437,0 +170730106798,437,0 +170730106846,437,0 +170730106894,437,0 +170730106943,437,0 +170730106991,437,0 +170730107039,436,0 +170730107087,250,0 +170730107135,252,0 +170730107183,436,0 +170730107232,437,0 +170730107280,437,0 +170730107328,437,0 +170730107376,437,0 +170730107425,437,0 +170730107473,437,0 +170730107521,437,0 +170730107569,437,0 +170730107617,437,0 +170730107665,437,0 +170730107713,437,0 +170730107761,437,0 +170730107811,437,0 +170730107860,437,0 +170730107908,437,0 +170730107957,437,0 +170730108005,437,0 +170730108053,436,0 +170730108103,270,1 +170730108187,242,0 +170730108236,436,0 +170730108284,437,0 +170730108332,437,0 +170730108382,437,0 +170730108430,437,0 +170730108479,437,0 +170730108529,436,0 +170730108577,437,0 +170730108626,437,0 +170730108674,437,0 +170730108722,437,0 +170730108772,437,0 +170730108820,437,0 +170730108868,437,0 +170730108917,437,0 +170730108967,437,0 +170730109015,437,0 +170730109063,436,0 +170730109111,436,0 +170730109159,253,0 +170730109208,257,0 +170730109258,431,0 +170730109307,437,0 +170730109357,437,0 +170730109406,437,0 +170730109454,437,0 +170730109502,437,0 +170730109550,437,0 +170730109598,437,0 +170730109646,437,0 +170730109695,437,0 +170730109743,437,0 +170730109791,437,0 +170730109839,437,0 +170730109886,437,0 +170730109934,437,0 +170730109982,437,0 +170730110030,437,0 +170730110080,437,0 +170730110127,437,0 +170730110175,437,0 +170730110223,249,0 +170730110273,264,0 +170730110322,435,0 +170730110370,437,0 +170730110420,436,0 +170730110468,437,0 +170730110517,436,0 +170730110565,437,0 +170730110613,437,0 +170730110661,437,0 +170730110711,437,0 +170730110759,437,0 +170730110808,437,0 +170730110858,437,0 +170730110906,437,0 +170730110955,437,0 +170730111003,437,0 +170730111053,437,0 +170730111100,437,0 +170730111148,437,0 +170730111196,436,0 +170730111244,243,0 +170730111292,281,1 +170730111377,435,0 +170730111425,437,0 +170730111473,437,0 +170730111521,437,0 +170730111569,437,0 +170730111617,437,0 +170730111665,437,0 +170730111713,437,0 +170730111761,437,0 +170730111809,437,0 +170730111858,437,0 +170730111908,437,0 +170730111957,437,0 +170730112005,437,0 +170730112053,437,0 +170730112101,437,0 +170730112150,437,0 +170730112200,437,0 +170730112248,436,0 +170730112296,255,0 +170730112344,259,0 +170730112392,244,0 +170730112440,437,0 +170730112488,437,0 +170730112536,437,0 +170730112584,437,0 +170730112632,437,0 +170730112681,437,0 +170730112729,437,0 +170730112777,437,0 +170730112825,437,0 +170730112873,437,0 +170730112921,437,0 +170730112969,437,0 +170730113019,437,0 +170730113067,437,0 +170730113115,437,0 +170730113164,437,0 +170730113212,437,0 +170730113260,437,0 +170730113308,436,0 +170730113356,255,0 +170730113404,259,0 +170730113452,432,0 +170730113501,437,0 +170730113549,437,0 +170730113599,437,0 +170730113647,437,0 +170730113695,437,0 +170730113744,437,0 +170730113792,437,0 +170730113842,437,0 +170730113890,437,0 +170730113939,437,0 +170730113987,437,0 +170730114035,437,0 +170730114083,437,0 +170730114131,437,0 +170730114179,437,0 +170730114229,437,0 +170730114278,437,0 +170730114328,436,0 +170730114376,436,0 +170730114425,249,0 +170730114473,266,0 +170730114521,433,0 +170730114569,437,0 +170730114617,437,0 +170730114665,437,0 +170730114713,437,0 +170730114761,437,0 +170730114809,437,0 +170730114858,437,0 +170730114906,437,0 +170730114954,437,0 +170730115002,437,0 +170730115050,437,0 +170730115098,437,0 +170730115148,437,0 +170730115195,437,0 +170730115245,437,0 +170730115293,437,0 +170730115343,436,0 +170730115390,436,0 +170730115438,246,0 +170730115486,255,0 +170730115536,230,0 +170730115584,436,0 +170730115633,437,0 +170730115683,437,0 +170730115731,437,0 +170730115779,437,0 +170730115828,437,0 +170730115878,437,0 +170730115926,437,0 +170730115974,437,0 +170730116023,437,0 +170730116071,437,0 +170730116119,437,0 +170730116169,437,0 +170730116217,437,0 +170730116265,437,0 +170730116314,437,0 +170730116363,437,0 +170730116411,437,0 +170730116459,437,0 +170730116508,256,0 +170730116557,264,0 +170730116605,433,0 +170730116653,437,0 +170730116702,437,0 +170730116750,437,0 +170730116798,437,0 +170730116848,437,0 +170730116896,437,0 +170730116945,437,0 +170730116993,437,0 +170730117041,437,0 +170730117091,437,0 +170730117139,437,0 +170730117187,437,0 +170730117236,437,0 +170730117284,437,0 +170730117334,437,0 +170730117383,437,0 +170730117431,437,0 +170730117479,437,0 +170730117527,436,0 +170730117575,250,0 +170730117624,263,0 +170730117674,435,0 +170730117723,437,0 +170730117773,437,0 +170730117821,437,0 +170730117870,437,0 +170730117918,437,0 +170730117966,437,0 +170730118016,437,0 +170730118066,437,0 +170730118115,437,0 +170730118163,437,0 +170730118211,437,0 +170730118259,437,0 +170730118307,437,0 +170730118356,437,0 +170730118406,437,0 +170730118454,437,0 +170730118502,437,0 +170730118550,436,0 +170730118598,251,0 +170730118647,254,0 +170730118695,431,0 +170730118743,437,0 +170730118793,437,0 +170730118841,437,0 +170730118889,437,0 +170730118937,437,0 +170730118985,437,0 +170730119033,437,0 +170730119081,437,0 +170730119130,437,0 +170730119178,437,0 +170730119228,437,0 +170730119277,437,0 +170730119325,437,0 +170730119375,437,0 +170730119423,437,0 +170730119472,437,0 +170730119520,436,0 +170730119568,437,0 +170730119617,436,0 +170730119665,253,0 +170730119713,255,0 +170730119761,435,0 +170730119809,437,0 +170730119857,437,0 +170730119905,437,0 +170730119953,437,0 +170730120001,437,0 +170730120049,437,0 +170730120097,437,0 +170730120145,437,0 +170730120193,437,0 +170730120241,437,0 +170730120289,437,0 +170730120336,437,0 +170730120386,437,0 +170730120434,437,0 +170730120482,437,0 +170730120529,437,0 +170730120577,437,0 +170730120627,437,0 +170730120675,436,0 +170730120723,249,0 +170730120771,255,0 +170730120818,435,0 +170730120868,437,0 +170730120916,437,0 +170730120965,437,0 +170730121013,437,0 +170730121061,437,0 +170730121109,437,0 +170730121157,437,0 +170730121205,437,0 +170730121253,437,0 +170730121302,437,0 +170730121351,437,0 +170730121401,437,0 +170730121451,437,0 +170730121500,437,0 +170730121548,437,0 +170730121598,437,0 +170730121647,437,0 +170730121697,437,0 +170730121744,437,0 +170730121794,437,0 +170730121844,437,0 +170730121892,437,0 +170730121939,437,0 +170730121989,437,0 +170730122038,437,0 +170730122086,437,0 +170730122136,437,0 +170730122185,437,0 +170730122235,436,0 +170730122284,240,0 +170730122332,243,0 +170730122380,435,0 +170730122428,437,0 +170730122476,437,0 +170730122526,437,0 +170730122574,437,0 +170730122622,437,0 +170730122670,437,0 +170730122718,436,0 +170730122766,437,0 +170730122814,437,0 +170730122863,437,0 +170730122913,437,0 +170730122960,437,0 +170730123008,437,0 +170730123058,437,0 +170730123107,437,0 +170730123155,437,0 +170730123205,437,0 +170730123255,437,0 +170730123303,274,1 +170730123382,241,0 +170730123430,434,0 +170730123479,437,0 +170730123527,437,0 +170730123575,437,0 +170730123623,436,0 +170730123671,437,0 +170730123719,437,0 +170730123767,437,0 +170730123815,437,0 +170730123863,437,0 +170730123913,437,0 +170730123961,437,0 +170730124008,437,0 +170730124056,437,0 +170730124104,437,0 +170730124152,437,0 +170730124202,437,0 +170730124250,437,0 +170730124298,437,0 +170730124346,417,0 +170730124395,240,0 +170730124443,238,0 +170730124493,436,0 +170730124542,437,0 +170730124590,437,0 +170730124638,437,0 +170730124688,437,0 +170730124736,437,0 +170730124783,437,0 +170730124831,436,0 +170730124879,437,0 +170730124927,437,0 +170730124975,437,0 +170730125023,437,0 +170730125072,437,0 +170730125120,437,0 +170730125168,437,0 +170730125216,437,0 +170730125264,437,0 +170730125312,437,0 +170730125360,436,0 +170730125407,238,0 +170730125455,240,0 +170730125505,425,0 +170730125553,437,0 +170730125601,437,0 +170730125648,436,0 +170730125696,437,0 +170730125744,437,0 +170730125792,437,0 +170730125840,437,0 +170730125888,437,0 +170730125936,437,0 +170730125984,437,0 +170730126032,437,0 +170730126081,437,0 +170730126129,437,0 +170730126177,437,0 +170730126225,437,0 +170730126273,437,0 +170730126320,437,0 +170730126368,436,0 +170730126416,437,0 +170730126466,240,0 +170730126514,243,0 +170730126562,433,0 +170730126609,437,0 +170730126657,437,0 +170730126705,437,0 +170730126753,437,0 +170730126803,437,0 +170730126852,437,0 +170730126902,437,0 +170730126949,437,0 +170730126999,437,0 +170730127049,437,0 +170730127098,437,0 +170730127146,437,0 +170730127194,437,0 +170730127242,437,0 +170730127289,437,0 +170730127337,437,0 +170730127385,437,0 +170730127433,437,0 +170730127481,436,0 +170730127529,251,0 +170730127577,260,0 +170730127625,435,0 +170730127672,437,0 +170730127720,437,0 +170730127768,437,0 +170730127816,437,0 +170730127864,436,0 +170730127912,437,0 +170730127960,437,0 +170730128007,437,0 +170730128055,437,0 +170730128103,437,0 +170730128151,437,0 +170730128199,437,0 +170730128247,437,0 +170730128295,437,0 +170730128343,437,0 +170730128390,437,0 +170730128438,437,0 +170730128486,437,0 +170730128534,436,0 +170730128582,248,0 +170730128630,249,0 +170730128678,435,0 +170730128726,437,0 +170730128773,437,0 +170730128821,437,0 +170730128869,437,0 +170730128917,437,0 +170730128965,437,0 +170730129013,437,0 +170730129061,437,0 +170730129109,437,0 +170730129158,436,0 +170730129206,437,0 +170730129255,436,0 +170730129303,437,0 +170730129351,437,0 +170730129399,437,0 +170730129449,437,0 +170730129497,437,0 +170730129545,436,0 +170730129592,428,0 +170730129640,251,0 +170730129688,249,0 +170730129738,436,0 +170730129786,437,0 +170730129835,437,0 +170730129883,436,0 +170730129933,437,0 +170730129982,437,0 +170730130032,436,0 +170730130080,437,0 +170730130128,437,0 +170730130176,437,0 +170730130223,437,0 +170730130271,437,0 +170730130321,437,0 +170730130369,437,0 +170730130418,437,0 +170730130466,437,0 +170730130516,437,0 +170730130564,437,0 +170730130612,436,0 +170730130661,251,0 +170730130711,257,0 +170730130759,431,0 +170730130811,437,0 +170730130861,437,0 +170730130910,437,0 +170730130958,436,0 +170730131008,437,0 +170730131056,437,0 +170730131105,437,0 +170730131153,437,0 +170730131201,437,0 +170730131249,437,0 +170730131297,436,0 +170730131345,437,0 +170730131393,437,0 +170730131441,437,0 +170730131489,437,0 +170730131537,437,0 +170730131586,437,0 +170730131636,436,0 +170730131684,434,0 +170730131733,247,0 +170730131783,246,0 +170730131831,436,0 +170730131880,437,0 +170730131928,437,0 +170730131976,437,0 +170730132024,436,0 +170730132072,437,0 +170730132121,437,0 +170730132169,437,0 +170730132217,437,0 +170730132265,437,0 +170730132315,437,0 +170730132363,437,0 +170730132411,437,0 +170730132460,437,0 +170730132508,437,0 +170730132556,437,0 +170730132606,437,0 +170730132654,437,0 +170730132702,436,0 +170730132751,414,0 +170730132799,255,0 +170730132847,234,0 +170730132895,436,0 +170730132943,437,0 +170730132991,437,0 +170730133040,437,0 +170730133088,437,0 +170730133136,437,0 +170730133184,437,0 +170730133232,436,0 +170730133280,437,0 +170730133330,437,0 +170730133379,437,0 +170730133429,437,0 +170730133479,437,0 +170730133528,437,0 +170730133578,437,0 +170730133626,437,0 +170730133675,436,0 +170730133723,436,0 +170730133773,436,0 +170730133822,250,0 +170730133872,274,1 +170730133955,436,0 +170730134005,437,0 +170730134054,437,0 +170730134102,437,0 +170730134150,437,0 +170730134199,437,0 +170730134247,437,0 +170730134295,436,0 +170730134343,437,0 +170730134391,437,0 +170730134439,437,0 +170730134489,436,0 +170730134538,437,0 +170730134586,437,0 +170730134634,437,0 +170730134684,437,0 +170730134732,437,0 +170730134780,437,0 +170730134829,435,0 +170730134877,252,0 +170730134925,273,1 +170730135002,437,0 +170730135051,437,0 +170730135101,437,0 +170730135149,437,0 +170730135197,437,0 +170730135246,437,0 +170730135294,437,0 +170730135342,436,0 +170730135392,437,0 +170730135441,437,0 +170730135489,436,0 +170730135537,437,0 +170730135585,437,0 +170730135634,437,0 +170730135684,437,0 +170730135733,437,0 +170730135783,437,0 +170730135831,437,0 +170730135880,436,0 +170730135928,250,0 +170730135976,264,0 +170730136024,433,0 +170730136074,437,0 +170730136122,437,0 +170730136171,437,0 +170730136219,437,0 +170730136269,437,0 +170730136317,437,0 +170730136366,437,0 +170730136414,437,0 +170730136462,437,0 +170730136510,437,0 +170730136560,437,0 +170730136608,437,0 +170730136656,437,0 +170730136704,437,0 +170730136751,436,0 +170730136799,437,0 +170730136849,436,0 +170730136897,436,0 +170730136946,251,0 +170730136994,256,0 +170730137042,229,0 +170730137090,436,0 +170730137138,437,0 +170730137186,437,0 +170730137236,437,0 +170730137285,437,0 +170730137333,437,0 +170730137383,437,0 +170730137431,436,0 +170730137479,437,0 +170730137528,437,0 +170730137576,437,0 +170730137624,437,0 +170730137672,437,0 +170730137720,437,0 +170730137768,437,0 +170730137817,437,0 +170730137865,436,0 +170730137915,436,0 +170730137963,436,0 +170730138012,260,0 +170730138062,253,0 +170730138111,432,0 +170730138159,437,0 +170730138207,437,0 +170730138257,437,0 +170730138306,436,0 +170730138356,437,0 +170730138405,437,0 +170730138455,436,0 +170730138503,437,0 +170730138551,437,0 +170730138599,437,0 +170730138648,437,0 +170730138696,437,0 +170730138744,437,0 +170730138794,437,0 +170730138842,437,0 +170730138890,437,0 +170730138937,437,0 +170730138985,436,0 +170730139035,432,0 +170730139083,254,0 +170730139132,244,0 +170730139180,435,0 +170730139230,437,0 +170730139279,437,0 +170730139327,437,0 +170730139377,437,0 +170730139425,437,0 +170730139473,437,0 +170730139521,437,0 +170730139569,437,0 +170730139617,437,0 +170730139665,437,0 +170730139714,437,0 +170730139762,437,0 +170730139810,437,0 +170730139860,437,0 +170730139909,437,0 +170730139957,437,0 +170730140007,437,0 +170730140056,436,0 +170730140104,251,0 +170730140152,253,0 +170730140200,425,0 +170730140248,436,0 +170730140298,436,0 +170730140346,437,0 +170730140394,437,0 +170730140443,436,0 +170730140491,437,0 +170730140541,437,0 +170730140588,437,0 +170730140636,437,0 +170730140686,437,0 +170730140735,437,0 +170730140783,437,0 +170730140833,437,0 +170730140881,437,0 +170730140929,437,0 +170730140977,436,0 +170730141025,437,0 +170730141073,437,0 +170730141122,436,0 +170730141172,249,0 +170730141221,258,0 +170730141271,435,0 +170730141319,437,0 +170730141368,437,0 +170730141418,437,0 +170730141466,437,0 +170730141514,437,0 +170730141564,437,0 +170730141612,436,0 +170730141660,437,0 +170730141709,437,0 +170730141757,437,0 +170730141805,437,0 +170730141853,437,0 +170730141901,437,0 +170730141949,436,0 +170730141999,437,0 +170730142047,436,0 +170730142095,436,0 +170730142142,436,0 +170730142190,243,0 +170730142238,252,0 +170730142286,241,0 +170730142334,436,0 +170730142382,437,0 +170730142430,437,0 +170730142478,437,0 +170730142526,437,0 +170730142573,436,0 +170730142621,437,0 +170730142669,437,0 +170730142717,437,0 +170730142765,437,0 +170730142813,437,0 +170730142861,437,0 +170730142909,437,0 +170730142957,437,0 +170730143005,436,0 +170730143053,437,0 +170730143102,437,0 +170730143152,437,0 +170730143200,436,0 +170730143248,332,0 +170730143295,250,0 +170730143343,233,0 +170730143391,436,0 +170730143439,437,0 +170730143487,437,0 +170730143535,437,0 +170730143584,437,0 +170730143632,437,0 +170730143682,437,0 +170730143730,437,0 +170730143779,436,0 +170730143827,437,0 +170730143877,437,0 +170730143925,437,0 +170730143974,437,0 +170730144022,437,0 +170730144072,437,0 +170730144120,436,0 +170730144168,437,0 +170730144216,436,0 +170730144264,436,0 +170730144313,252,0 +170730144361,263,0 +170730144409,430,0 +170730144457,437,0 +170730144505,436,0 +170730144552,437,0 +170730144600,437,0 +170730144648,437,0 +170730144696,437,0 +170730144744,436,0 +170730144792,437,0 +170730144840,437,0 +170730144888,437,0 +170730144936,437,0 +170730144983,437,0 +170730145031,437,0 +170730145079,437,0 +170730145127,437,0 +170730145175,437,0 +170730145223,437,0 +170730145272,437,0 +170730145322,436,0 +170730145372,260,0 +170730145421,251,0 +170730145471,432,0 +170730145518,437,0 +170730145566,437,0 +170730145614,437,0 +170730145664,437,0 +170730145712,437,0 +170730145760,436,0 +170730145807,437,0 +170730145855,437,0 +170730145903,437,0 +170730145951,437,0 +170730145999,437,0 +170730146047,437,0 +170730146095,437,0 +170730146143,437,0 +170730146191,437,0 +170730146239,437,0 +170730146286,437,0 +170730146334,436,0 +170730146382,435,0 +170730146430,252,0 +170730146478,249,0 +170730146526,435,0 +170730146574,437,0 +170730146622,437,0 +170730146670,437,0 +170730146718,437,0 +170730146765,437,0 +170730146813,437,0 +170730146861,436,0 +170730146911,436,0 +170730146960,437,0 +170730147008,437,0 +170730147056,437,0 +170730147104,436,0 +170730147152,437,0 +170730147200,437,0 +170730147247,437,0 +170730147297,437,0 +170730147345,437,0 +170730147393,436,0 +170730147441,423,0 +170730147488,254,0 +170730147536,255,0 +170730147584,436,0 +170730147632,437,0 +170730147680,436,0 +170730147728,437,0 +170730147776,437,0 +170730147824,437,0 +170730147872,437,0 +170730147919,437,0 +170730147967,437,0 +170730148015,437,0 +170730148063,437,0 +170730148111,437,0 +170730148159,437,0 +170730148207,437,0 +170730148254,437,0 +170730148304,437,0 +170730148352,437,0 +170730148400,436,0 +170730148448,436,0 +170730148495,247,0 +170730148543,255,0 +170730148591,223,0 +170730148639,436,0 +170730148687,437,0 +170730148735,437,0 +170730148783,437,0 +170730148831,437,0 +170730148879,437,0 +170730148926,437,0 +170730148974,436,0 +170730149022,437,0 +170730149070,437,0 +170730149118,437,0 +170730149167,437,0 +170730149215,437,0 +170730149263,437,0 +170730149311,437,0 +170730149359,437,0 +170730149407,437,0 +170730149455,437,0 +170730149503,436,0 +170730149551,249,0 +170730149600,252,0 +170730149648,429,0 +170730149696,437,0 +170730149745,437,0 +170730149793,437,0 +170730149841,437,0 +170730149889,437,0 +170730149937,437,0 +170730149985,437,0 +170730150034,437,0 +170730150082,437,0 +170730150131,437,0 +170730150179,437,0 +170730150227,437,0 +170730150275,437,0 +170730150323,437,0 +170730150371,437,0 +170730150420,437,0 +170730150468,437,0 +170730150516,436,0 +170730150564,436,0 +170730150612,245,0 +170730150660,262,0 +170730150707,432,0 +170730150757,436,0 +170730150805,437,0 +170730150853,437,0 +170730150900,437,0 +170730150948,437,0 +170730150996,437,0 +170730151044,437,0 +170730151092,437,0 +170730151140,436,0 +170730151188,437,0 +170730151236,436,0 +170730151283,437,0 +170730151331,437,0 +170730151379,437,0 +170730151427,437,0 +170730151475,436,0 +170730151523,437,0 +170730151571,437,0 +170730151619,436,0 +170730151666,260,0 +170730151714,260,0 +170730151762,431,0 +170730151810,437,0 +170730151858,437,0 +170730151906,437,0 +170730151954,437,0 +170730152002,437,0 +170730152050,437,0 +170730152099,435,0 +170730152147,437,0 +170730152195,436,0 +170730152244,437,0 +170730152292,437,0 +170730152340,437,0 +170730152389,437,0 +170730152439,437,0 +170730152487,437,0 +170730152535,437,0 +170730152583,437,0 +170730152631,436,0 +170730152680,436,0 +170730152728,251,0 +170730152776,260,0 +170730152824,434,0 +170730152872,437,0 +170730152920,437,0 +170730152967,437,0 +170730153015,437,0 +170730153065,437,0 +170730153113,436,0 +170730153161,436,0 +170730153208,437,0 +170730153256,437,0 +170730153304,437,0 +170730153352,437,0 +170730153400,437,0 +170730153448,437,0 +170730153496,437,0 +170730153544,437,0 +170730153591,437,0 +170730153639,437,0 +170730153687,436,0 +170730153735,302,1 +170730153816,260,0 +170730153865,434,0 +170730153913,437,0 +170730153961,437,0 +170730154009,437,0 +170730154056,436,0 +170730154104,437,0 +170730154152,437,0 +170730154200,437,0 +170730154248,436,0 +170730154298,436,0 +170730154347,437,0 +170730154395,437,0 +170730154443,437,0 +170730154491,437,0 +170730154540,437,0 +170730154588,437,0 +170730154636,437,0 +170730154684,437,0 +170730154732,436,0 +170730154780,436,0 +170730154828,253,0 +170730154875,269,0 +170730154923,434,0 +170730154971,437,0 +170730155019,437,0 +170730155068,437,0 +170730155115,437,0 +170730155163,437,0 +170730155211,437,0 +170730155259,436,0 +170730155307,437,0 +170730155355,437,0 +170730155403,437,0 +170730155451,437,0 +170730155499,437,0 +170730155547,436,0 +170730155594,437,0 +170730155644,437,0 +170730155692,437,0 +170730155741,437,0 +170730155789,436,0 +170730155837,258,0 +170730155885,251,0 +170730155933,230,0 +170730155981,436,0 +170730156028,436,0 +170730156076,437,0 +170730156124,437,0 +170730156172,437,0 +170730156220,436,0 +170730156268,436,0 +170730156316,436,0 +170730156365,437,0 +170730156413,437,0 +170730156461,437,0 +170730156509,437,0 +170730156557,437,0 +170730156605,437,0 +170730156652,437,0 +170730156700,437,0 +170730156748,437,0 +170730156796,436,0 +170730156844,436,0 +170730156892,249,0 +170730156940,252,0 +170730156989,427,0 +170730157037,437,0 +170730157085,437,0 +170730157133,437,0 +170730157181,437,0 +170730157229,437,0 +170730157276,436,0 +170730157324,437,0 +170730157374,437,0 +170730157422,436,0 +170730157471,437,0 +170730157519,436,0 +170730157567,437,0 +170730157617,437,0 +170730157665,437,0 +170730157714,437,0 +170730157762,437,0 +170730157810,437,0 +170730157858,437,0 +170730157906,436,0 +170730157956,264,0 +170730158004,257,0 +170730158051,224,0 +170730158099,432,0 +170730158147,433,0 +170730158195,433,0 +170730158243,433,0 +170730158292,433,0 +170730158340,433,0 +170730158388,433,0 +170730158436,433,0 +170730158484,433,0 +170730158532,433,0 +170730158580,432,0 +170730158628,433,0 +170730158676,433,0 +170730158724,433,0 +170730158771,433,0 +170730158819,433,0 +170730158867,433,0 +170730158915,431,0 +170730158963,432,0 +170730159011,255,0 +170730159060,257,0 +170730159108,425,0 +170730159156,433,0 +170730159204,433,0 +170730159252,433,0 +170730159300,433,0 +170730159348,433,0 +170730159397,433,0 +170730159445,431,0 +170730159493,433,0 +170730159541,433,0 +170730159589,433,0 +170730159637,433,0 +170730159685,434,0 +170730159733,433,0 +170730159781,433,0 +170730159828,433,0 +170730159876,433,0 +170730159926,433,0 +170730159974,432,0 +170730160022,431,0 +170730160069,250,0 +170730160117,262,0 +170730160165,430,0 +170730160213,433,0 +170730160261,433,0 +170730160311,433,0 +170730160358,433,0 +170730160406,433,0 +170730160454,433,0 +170730160502,432,0 +170730160550,433,0 +170730160600,434,0 +170730160649,433,0 +170730160697,433,0 +170730160745,433,0 +170730160793,433,0 +170730160841,433,0 +170730160889,433,0 +170730160937,433,0 +170730160986,431,0 +170730161034,433,0 +170730161082,243,0 +170730161130,253,0 +170730161180,223,0 +170730161228,432,0 +170730161276,433,0 +170730161325,433,0 +170730161374,433,0 +170730161422,433,0 +170730161470,433,0 +170730161518,433,0 +170730161566,433,0 +170730161614,433,0 +170730161663,433,0 +170730161711,433,0 +170730161759,433,0 +170730161807,433,0 +170730161855,433,0 +170730161903,433,0 +170730161951,433,0 +170730162000,433,0 +170730162048,433,0 +170730162098,432,0 +170730162147,258,0 +170730162195,258,0 +170730162245,422,0 +170730162293,433,0 +170730162341,433,0 +170730162388,433,0 +170730162436,433,0 +170730162484,433,0 +170730162532,433,0 +170730162580,433,0 +170730162628,433,0 +170730162676,433,0 +170730162723,433,0 +170730162771,433,0 +170730162819,433,0 +170730162869,433,0 +170730162917,433,0 +170730162965,433,0 +170730163014,433,0 +170730163064,433,0 +170730163113,433,0 +170730163163,430,0 +170730163211,257,0 +170730163259,255,0 +170730163307,430,0 +170730163356,433,0 +170730163406,433,0 +170730163454,433,0 +170730163503,432,0 +170730163551,433,0 +170730163601,433,0 +170730163650,433,0 +170730163698,433,0 +170730163748,433,0 +170730163796,432,0 +170730163843,433,0 +170730163891,433,0 +170730163941,432,0 +170730163989,433,0 +170730164037,433,0 +170730164085,433,0 +170730164134,433,0 +170730164182,432,0 +170730164230,253,0 +170730164280,256,0 +170730164328,238,0 +170730164377,433,0 +170730164425,433,0 +170730164473,433,0 +170730164521,433,0 +170730164571,433,0 +170730164618,432,0 +170730164666,432,0 +170730164714,433,0 +170730164762,433,0 +170730164812,433,0 +170730164861,433,0 +170730164909,433,0 +170730164957,433,0 +170730165005,433,0 +170730165055,433,0 +170730165103,432,0 +170730165150,433,0 +170730165198,433,0 +170730165246,432,0 +170730165296,253,0 +170730165344,252,0 +170730165392,415,0 +170730165440,432,0 +170730165488,433,0 +170730165535,433,0 +170730165585,433,0 +170730165633,433,0 +170730165681,433,0 +170730165730,433,0 +170730165778,433,0 +170730165828,433,0 +170730165877,433,0 +170730165927,433,0 +170730165976,433,0 +170730166024,433,0 +170730166072,433,0 +170730166122,433,0 +170730166170,433,0 +170730166219,433,0 +170730166267,432,0 +170730166315,431,0 +170730166365,253,0 +170730166413,274,1 +170730166499,433,0 +170730166547,433,0 +170730166595,433,0 +170730166643,433,0 +170730166690,432,0 +170730166740,432,0 +170730166788,433,0 +170730166837,433,0 +170730166885,433,0 +170730166935,433,0 +170730166983,433,0 +170730167032,432,0 +170730167080,433,0 +170730167128,433,0 +170730167176,433,0 +170730167224,433,0 +170730167272,432,0 +170730167322,432,0 +170730167371,247,0 +170730167421,252,0 +170730167469,239,0 +170730167517,432,0 +170730167565,433,0 +170730167613,433,0 +170730167661,434,0 +170730167710,432,0 +170730167759,433,0 +170730167807,432,0 +170730167857,433,0 +170730167905,432,0 +170730167953,433,0 +170730168001,433,0 +170730168049,433,0 +170730168098,433,0 +170730168146,433,0 +170730168196,433,0 +170730168245,434,0 +170730168293,433,0 +170730168343,433,0 +170730168391,432,0 +170730168439,249,0 +170730168487,254,0 +170730168535,224,0 +170730168583,432,0 +170730168632,433,0 +170730168680,433,0 +170730168730,433,0 +170730168777,433,0 +170730168827,433,0 +170730168876,433,0 +170730168926,432,0 +170730168975,433,0 +170730169023,432,0 +170730169073,433,0 +170730169121,433,0 +170730169169,433,0 +170730169217,433,0 +170730169265,433,0 +170730169314,433,0 +170730169362,433,0 +170730169410,433,0 +170730169460,431,0 +170730169509,251,0 +170730169557,262,0 +170730169607,427,0 +170730169656,433,0 +170730169706,433,0 +170730169754,433,0 +170730169803,433,0 +170730169853,432,0 +170730169901,433,0 +170730169949,433,0 +170730169997,433,0 +170730170046,432,0 +170730170094,433,0 +170730170144,433,0 +170730170191,433,0 +170730170239,433,0 +170730170287,433,0 +170730170337,433,0 +170730170385,432,0 +170730170433,433,0 +170730170481,432,0 +170730170529,250,0 +170730170577,253,0 +170730170624,222,0 +170730170672,432,0 +170730170720,432,0 +170730170770,433,0 +170730170819,433,0 +170730170867,433,0 +170730170915,433,0 +170730170963,432,0 +170730171012,433,0 +170730171060,433,0 +170730171109,433,0 +170730171159,433,0 +170730171207,432,0 +170730171255,432,0 +170730171303,433,0 +170730171351,433,0 +170730171398,433,0 +170730171446,433,0 +170730171494,433,0 +170730171542,432,0 +170730171590,248,0 +170730171638,261,0 +170730171686,420,0 +170730171734,433,0 +170730171782,433,0 +170730171829,433,0 +170730171877,433,0 +170730171925,433,0 +170730171973,433,0 +170730172021,432,0 +170730172069,433,0 +170730172117,432,0 +170730172165,433,0 +170730172212,433,0 +170730172260,433,0 +170730172308,433,0 +170730172356,433,0 +170730172404,433,0 +170730172452,432,0 +170730172501,433,0 +170730172549,432,0 +170730172597,432,0 +170730172645,250,0 +170730172693,265,0 +170730172741,422,0 +170730172789,433,0 +170730172837,433,0 +170730172885,433,0 +170730172932,433,0 +170730172980,433,0 +170730173030,433,0 +170730173079,433,0 +170730173127,433,0 +170730173175,434,0 +170730173223,433,0 +170730173271,433,0 +170730173319,433,0 +170730173368,433,0 +170730173416,433,0 +170730173464,433,0 +170730173514,433,0 +170730173562,432,0 +170730173610,432,0 +170730173659,431,0 +170730173707,262,0 +170730173755,259,0 +170730173805,428,0 +170730173853,432,0 +170730173901,433,0 +170730173950,433,0 +170730173998,433,0 +170730174047,433,0 +170730174097,433,0 +170730174145,433,0 +170730174193,432,0 +170730174241,432,0 +170730174289,433,0 +170730174336,433,0 +170730174384,433,0 +170730174432,433,0 +170730174480,432,0 +170730174529,433,0 +170730174579,432,0 +170730174628,433,0 +170730174678,433,0 +170730174726,425,0 +170730174775,253,0 +170730174825,235,0 +170730174873,432,0 +170730174922,433,0 +170730174972,433,0 +170730175020,433,0 +170730175069,433,0 +170730175119,432,0 +170730175169,433,0 +170730175216,432,0 +170730175266,433,0 +170730175314,433,0 +170730175363,433,0 +170730175411,433,0 +170730175459,433,0 +170730175507,433,0 +170730175555,433,0 +170730175603,433,0 +170730175651,433,0 +170730175699,432,0 +170730175749,432,0 +170730175797,253,0 +170730175845,262,0 +170730175892,423,0 +170730175940,432,0 +170730175988,433,0 +170730176038,433,0 +170730176085,433,0 +170730176133,432,0 +170730176183,433,0 +170730176231,433,0 +170730176279,433,0 +170730176327,433,0 +170730176376,433,0 +170730176424,433,0 +170730176472,433,0 +170730176520,433,0 +170730176568,433,0 +170730176618,433,0 +170730176667,433,0 +170730176715,433,0 +170730176765,433,0 +170730176812,431,0 +170730176860,249,0 +170730176908,258,0 +170730176956,428,0 +170730177004,432,0 +170730177052,432,0 +170730177102,433,0 +170730177150,433,0 +170730177198,433,0 +170730177246,433,0 +170730177295,431,0 +170730177343,433,0 +170730177391,433,0 +170730177439,433,0 +170730177487,433,0 +170730177536,433,0 +170730177584,433,0 +170730177632,433,0 +170730177680,433,0 +170730177728,433,0 +170730177776,433,0 +170730177824,433,0 +170730177872,421,0 +170730177921,249,0 +170730177969,234,0 +170730178019,432,0 +170730178068,433,0 +170730178116,433,0 +170730178166,433,0 +170730178214,433,0 +170730178263,433,0 +170730178312,434,0 +170730178360,432,0 +170730178408,433,0 +170730178458,433,0 +170730178506,433,0 +170730178554,433,0 +170730178602,433,0 +170730178651,433,0 +170730178699,433,0 +170730178747,433,0 +170730178795,433,0 +170730178843,432,0 +170730178891,432,0 +170730178939,259,0 +170730178989,256,0 +170730179037,421,0 +170730179085,433,0 +170730179134,433,0 +170730179184,433,0 +170730179233,433,0 +170730179281,433,0 +170730179329,433,0 +170730179377,433,0 +170730179425,434,0 +170730179473,433,0 +170730179521,433,0 +170730179569,433,0 +170730179617,433,0 +170730179665,433,0 +170730179714,433,0 +170730179764,433,0 +170730179812,432,0 +170730179860,433,0 +170730179908,433,0 +170730179956,431,0 +170730180005,250,0 +170730180053,269,0 +170730180103,428,0 +170730180151,432,0 +170730180200,433,0 +170730180250,433,0 +170730180299,433,0 +170730180347,433,0 +170730180395,433,0 +170730180443,432,0 +170730180491,433,0 +170730180539,433,0 +170730180588,433,0 +170730180636,433,0 +170730180684,432,0 +170730180732,433,0 +170730180782,433,0 +170730180830,432,0 +170730180878,433,0 +170730180927,433,0 +170730180975,432,0 +170730181025,431,0 +170730181074,253,0 +170730181122,253,0 +170730181172,431,0 +170730181221,433,0 +170730181269,433,0 +170730181317,433,0 +170730181365,433,0 +170730181413,432,0 +170730181460,433,0 +170730181508,433,0 +170730181558,433,0 +170730181606,433,0 +170730181654,433,0 +170730181701,433,0 +170730181749,433,0 +170730181797,433,0 +170730181845,433,0 +170730181893,433,0 +170730181941,432,0 +170730181989,433,0 +170730182037,432,0 +170730182084,255,0 +170730182132,251,0 +170730182180,223,0 +170730182228,433,0 +170730182276,433,0 +170730182324,433,0 +170730182372,432,0 +170730182420,433,0 +170730182468,433,0 +170730182515,433,0 +170730182563,433,0 +170730182611,432,0 +170730182661,433,0 +170730182709,433,0 +170730182757,433,0 +170730182805,433,0 +170730182853,433,0 +170730182901,433,0 +170730182950,433,0 +170730182998,433,0 +170730183046,433,0 +170730183096,432,0 +170730183145,250,0 +170730183193,258,0 +170730183243,424,0 +170730183291,433,0 +170730183339,432,0 +170730183387,433,0 +170730183435,433,0 +170730183483,433,0 +170730183532,433,0 +170730183580,432,0 +170730183628,433,0 +170730183678,433,0 +170730183726,433,0 +170730183774,433,0 +170730183823,433,0 +170730183873,433,0 +170730183921,433,0 +170730183970,433,0 +170730184018,433,0 +170730184068,433,0 +170730184117,433,0 +170730184167,431,0 +170730184215,250,0 +170730184263,266,0 +170730184312,430,0 +170730184360,433,0 +170730184410,433,0 +170730184459,434,0 +170730184507,434,0 +170730184555,433,0 +170730184603,433,0 +170730184653,433,0 +170730184701,433,0 +170730184750,433,0 +170730184800,433,0 +170730184848,433,0 +170730184897,433,0 +170730184945,433,0 +170730184993,433,0 +170730185041,433,0 +170730185090,433,0 +170730185138,433,0 +170730185186,432,0 +170730185236,255,0 +170730185284,258,0 +170730185332,422,0 +170730185389,433,0 +170730185437,433,0 +170730185485,433,0 +170730185533,433,0 +170730185583,433,0 +170730185632,433,0 +170730185682,433,0 +170730185731,433,0 +170730185781,432,0 +170730185830,433,0 +170730185878,433,0 +170730185926,434,0 +170730185976,433,0 +170730186024,433,0 +170730186073,433,0 +170730186123,433,0 +170730186172,433,0 +170730186220,433,0 +170730186268,245,0 +170730186318,251,0 +170730186366,241,0 +170730186415,432,0 +170730186463,433,0 +170730186511,433,0 +170730186559,433,0 +170730186607,433,0 +170730186655,433,0 +170730186703,433,0 +170730186751,433,0 +170730186801,433,0 +170730186849,433,0 +170730186898,433,0 +170730186948,433,0 +170730186996,433,0 +170730187044,433,0 +170730187092,433,0 +170730187141,433,0 +170730187189,433,0 +170730187237,433,0 +170730187285,432,0 +170730187333,245,0 +170730187381,253,0 +170730187429,223,0 +170730187477,432,0 +170730187526,433,0 +170730187574,433,0 +170730187622,433,0 +170730187670,433,0 +170730187718,433,0 +170730187768,433,0 +170730187816,430,0 +170730187863,433,0 +170730187911,433,0 +170730187959,433,0 +170730188007,433,0 +170730188057,433,0 +170730188105,433,0 +170730188154,433,0 +170730188202,433,0 +170730188250,433,0 +170730188298,432,0 +170730188346,432,0 +170730188394,256,0 +170730188442,257,0 +170730188490,424,0 +170730188547,433,0 +170730188597,433,0 +170730188646,433,0 +170730188696,433,0 +170730188744,433,0 +170730188793,433,0 +170730188841,432,0 +170730188889,433,0 +170730188937,433,0 +170730188985,433,0 +170730189033,433,0 +170730189081,433,0 +170730189129,433,0 +170730189177,433,0 +170730189225,433,0 +170730189274,433,0 +170730189322,433,0 +170730189370,431,0 +170730189420,279,1 +170730189507,262,0 +170730189556,429,0 +170730189606,433,0 +170730189654,433,0 +170730189702,433,0 +170730189751,433,0 +170730189799,433,0 +170730189849,433,0 +170730189898,433,0 +170730189946,433,0 +170730189994,433,0 +170730190042,433,0 +170730190092,433,0 +170730190140,433,0 +170730190189,433,0 +170730190239,433,0 +170730190287,433,0 +170730190335,433,0 +170730190383,433,0 +170730190431,432,0 +170730190480,252,0 +170730190528,268,0 +170730190576,226,0 +170730190624,433,0 +170730190672,433,0 +170730190720,433,0 +170730190768,433,0 +170730190816,432,0 +170730190865,433,0 +170730190913,433,0 +170730190963,433,0 +170730191011,433,0 +170730191060,433,0 +170730191108,433,0 +170730191156,433,0 +170730191204,433,0 +170730191254,433,0 +170730191303,433,0 +170730191353,433,0 +170730191401,433,0 +170730191450,433,0 +170730191500,432,0 +170730191548,267,0 +170730191597,261,0 +170730191647,422,0 +170730191695,433,0 +170730191744,433,0 +170730191794,433,0 +170730191842,433,0 +170730191890,433,0 +170730191937,433,0 +170730191985,433,0 +170730192033,433,0 +170730192081,433,0 +170730192131,433,0 +170730192179,433,0 +170730192228,433,0 +170730192278,433,0 +170730192327,433,0 +170730192375,433,0 +170730192425,433,0 +170730192474,433,0 +170730192522,433,0 +170730192570,253,0 +170730192632,273,1 +170730192713,432,0 +170730192761,432,0 +170730192810,432,0 +170730192858,433,0 +170730192906,432,0 +170730192954,433,0 +170730193003,433,0 +170730193051,433,0 +170730193099,433,0 +170730193149,433,0 +170730193197,433,0 +170730193245,433,0 +170730193293,433,0 +170730193342,433,0 +170730193390,433,0 +170730193438,433,0 +170730193486,433,0 +170730193535,432,0 +170730193585,432,0 +170730193633,253,0 +170730193681,252,0 +170730193729,243,0 +170730193777,432,0 +170730193826,432,0 +170730193874,433,0 +170730193922,433,0 +170730193972,432,0 +170730194020,433,0 +170730194068,431,0 +170730194117,433,0 +170730194165,433,0 +170730194213,433,0 +170730194261,432,0 +170730194311,433,0 +170730194359,433,0 +170730194407,433,0 +170730194456,433,0 +170730194504,432,0 +170730194552,433,0 +170730194602,433,0 +170730194650,432,0 +170730194697,264,0 +170730194747,267,0 +170730194795,423,0 +170730194844,432,0 +170730194892,432,0 +170730194942,433,0 +170730194991,433,0 +170730195041,433,0 +170730195090,433,0 +170730195138,431,0 +170730195186,433,0 +170730195234,433,0 +170730195284,433,0 +170730195333,433,0 +170730195381,433,0 +170730195429,433,0 +170730195477,433,0 +170730195525,433,0 +170730195575,433,0 +170730195623,433,0 +170730195672,433,0 +170730195720,431,0 +170730195768,271,1 +170730195851,426,0 +170730195899,433,0 +170730195947,433,0 +170730195996,433,0 +170730196044,433,0 +170730196092,433,0 +170730196141,432,0 +170730196191,432,0 +170730196241,433,0 +170730196288,432,0 +170730196336,433,0 +170730196386,433,0 +170730196435,433,0 +170730196483,433,0 +170730196533,433,0 +170730196581,433,0 +170730196629,433,0 +170730196677,433,0 +170730196725,432,0 +170730196773,383,0 +170730196822,269,0 +170730196872,245,0 +170730196920,432,0 +170730196968,432,0 +170730197016,433,0 +170730197064,433,0 +170730197111,433,0 +170730197161,431,0 +170730197210,433,0 +170730197258,433,0 +170730197306,433,0 +170730197354,433,0 +170730197404,433,0 +170730197452,433,0 +170730197500,433,0 +170730197547,433,0 +170730197597,433,0 +170730197645,433,0 +170730197693,433,0 +170730197741,433,0 +170730197789,432,0 +170730197838,250,0 +170730197886,256,0 +170730197936,422,0 +170730197985,433,0 +170730198035,433,0 +170730198083,433,0 +170730198131,433,0 +170730198179,433,0 +170730198227,433,0 +170730198276,433,0 +170730198324,433,0 +170730198372,433,0 +170730198420,433,0 +170730198468,433,0 +170730198516,432,0 +170730198565,433,0 +170730198613,433,0 +170730198661,433,0 +170730198711,433,0 +170730198759,433,0 +170730198807,433,0 +170730198855,432,0 +170730198904,260,0 +170730198952,267,0 +170730199000,427,0 +170730199048,433,0 +170730199096,433,0 +170730199144,433,0 +170730199192,432,0 +170730199242,433,0 +170730199289,433,0 +170730199337,432,0 +170730199385,433,0 +170730199435,433,0 +170730199485,433,0 +170730199534,433,0 +170730199584,433,0 +170730199632,433,0 +170730199681,433,0 +170730199729,433,0 +170730199777,432,0 +170730199825,433,0 +170730199875,433,0 +170730199922,411,0 +170730199972,251,0 +170730200020,236,0 +170730200068,432,0 +170730200117,433,0 +170730200167,433,0 +170730200216,433,0 +170730200264,433,0 +170730200312,433,0 +170730200362,433,0 +170730200411,433,0 +170730200459,434,0 +170730200507,432,0 +170730200555,433,0 +170730200603,433,0 +170730200651,433,0 +170730200701,433,0 +170730200750,433,0 +170730200800,433,0 +170730200848,433,0 +170730200897,433,0 +170730200945,432,0 +170730200995,257,0 +170730201044,279,1 +170730201123,432,0 +170730201172,433,0 +170730201222,433,0 +170730201270,433,0 +170730201318,433,0 +170730201366,433,0 +170730201413,432,0 +170730201463,433,0 +170730201511,433,0 +170730201560,433,0 +170730201608,433,0 +170730201658,433,0 +170730201707,433,0 +170730201755,433,0 +170730201803,433,0 +170730201851,432,0 +170730201899,433,0 +170730201948,433,0 +170730201998,432,0 +170730202047,255,0 +170730202097,265,0 +170730202146,426,0 +170730202194,433,0 +170730202242,433,0 +170730202290,433,0 +170730202340,433,0 +170730202388,433,0 +170730202436,433,0 +170730202485,430,0 +170730202533,433,0 +170730202581,432,0 +170730202630,433,0 +170730202680,433,0 +170730202728,433,0 +170730202776,433,0 +170730202824,433,0 +170730202872,433,0 +170730202920,433,0 +170730202969,433,0 +170730203019,432,0 +170730203067,431,0 +170730203115,247,0 +170730203164,267,0 +170730203212,429,0 +170730203262,432,0 +170730203310,433,0 +170730203359,433,0 +170730203407,433,0 +170730203455,433,0 +170730203503,433,0 +170730203551,433,0 +170730203600,433,0 +170730203650,433,0 +170730203698,433,0 +170730203747,433,0 +170730203797,433,0 +170730203847,433,0 +170730203896,433,0 +170730203946,432,0 +170730203993,433,0 +170730204043,433,0 +170730204091,432,0 +170730204140,257,0 +170730204188,252,0 +170730204238,421,0 +170730204286,433,0 +170730204334,433,0 +170730204383,433,0 +170730204431,433,0 +170730204481,433,0 +170730204529,433,0 +170730204577,432,0 +170730204625,433,0 +170730204674,433,0 +170730204724,433,0 +170730204773,433,0 +170730204821,433,0 +170730204871,433,0 +170730204919,433,0 +170730204968,433,0 +170730205016,433,0 +170730205066,433,0 +170730205115,432,0 +170730205163,431,0 +170730205211,249,0 +170730205261,249,0 +170730205310,432,0 +170730205358,433,0 +170730205406,433,0 +170730205454,433,0 +170730205502,433,0 +170730205549,433,0 +170730205597,433,0 +170730205645,433,0 +170730205693,433,0 +170730205741,432,0 +170730205790,433,0 +170730205840,433,0 +170730205888,433,0 +170730205936,433,0 +170730205984,433,0 +170730206031,433,0 +170730206079,433,0 +170730206127,433,0 +170730206175,433,0 +170730206223,343,0 +170730206271,253,0 +170730206319,239,0 +170730206367,431,0 +170730206416,433,0 +170730206464,433,0 +170730206513,433,0 +170730206561,433,0 +170730206609,433,0 +170730206657,433,0 +170730206705,433,0 +170730206753,433,0 +170730206801,433,0 +170730206850,433,0 +170730206898,433,0 +170730206946,433,0 +170730206996,433,0 +170730207044,433,0 +170730207092,433,0 +170730207139,433,0 +170730207189,432,0 +170730207237,432,0 +170730207287,248,0 +170730207334,261,0 +170730207384,425,0 +170730207432,432,0 +170730207480,433,0 +170730207528,433,0 +170730207576,433,0 +170730207624,433,0 +170730207672,433,0 +170730207721,433,0 +170730207769,431,0 +170730207819,433,0 +170730207867,433,0 +170730207916,433,0 +170730207964,432,0 +170730208014,433,0 +170730208062,433,0 +170730208110,433,0 +170730208159,433,0 +170730208209,433,0 +170730208257,433,0 +170730208305,432,0 +170730208353,261,0 +170730208401,244,0 +170730208448,432,0 +170730208496,433,0 +170730208546,433,0 +170730208595,433,0 +170730208645,433,0 +170730208693,433,0 +170730208741,433,0 +170730208789,433,0 +170730208838,433,0 +170730208886,433,0 +170730208934,433,0 +170730208982,433,0 +170730209030,433,0 +170730209078,433,0 +170730209126,433,0 +170730209174,433,0 +170730209222,433,0 +170730209270,433,0 +170730209318,433,0 +170730209367,244,0 +170730209415,256,0 +170730209463,227,0 +170730209513,432,0 +170730209560,433,0 +170730209610,433,0 +170730209658,433,0 +170730209708,433,0 +170730209755,433,0 +170730209805,433,0 +170730209853,434,0 +170730209902,433,0 +170730209952,433,0 +170730210000,434,0 +170730210048,433,0 +170730210097,433,0 +170730210145,433,0 +170730210193,434,0 +170730210242,433,0 +170730210290,433,0 +170730210340,433,0 +170730210388,432,0 +170730210436,249,0 +170730210484,268,0 +170730210532,423,0 +170730210580,433,0 +170730210629,433,0 +170730210677,434,0 +170730210725,433,0 +170730210773,433,0 +170730210821,433,0 +170730210871,434,0 +170730210920,432,0 +170730210970,433,0 +170730211018,433,0 +170730211067,433,0 +170730211117,433,0 +170730211165,433,0 +170730211213,433,0 +170730211260,433,0 +170730211310,433,0 +170730211358,433,0 +170730211406,433,0 +170730211454,432,0 +170730211502,257,0 +170730211550,277,1 +170730211633,433,0 +170730211683,433,0 +170730211731,433,0 +170730211779,433,0 +170730211826,433,0 +170730211874,433,0 +170730211922,432,0 +170730211970,433,0 +170730212018,433,0 +170730212068,434,0 +170730212117,433,0 +170730212165,434,0 +170730212215,433,0 +170730212263,433,0 +170730212311,433,0 +170730212359,434,0 +170730212407,433,0 +170730212455,433,0 +170730212503,431,0 +170730212551,265,0 +170730212599,276,1 +170730212690,433,0 +170730212738,433,0 +170730212786,433,0 +170730212835,433,0 +170730212883,433,0 +170730212931,433,0 +170730212979,433,0 +170730213027,432,0 +170730213075,433,0 +170730213123,433,0 +170730213171,433,0 +170730213220,433,0 +170730213268,433,0 +170730213316,433,0 +170730213364,433,0 +170730213412,434,0 +170730213460,433,0 +170730213508,432,0 +170730213556,428,0 +170730213605,250,0 +170730213653,237,0 +170730213701,432,0 +170730213749,433,0 +170730213797,433,0 +170730213845,432,0 +170730213893,433,0 +170730213941,433,0 +170730213989,433,0 +170730214037,433,0 +170730214085,432,0 +170730214133,433,0 +170730214181,433,0 +170730214230,433,0 +170730214278,433,0 +170730214326,433,0 +170730214373,433,0 +170730214423,433,0 +170730214471,433,0 +170730214519,433,0 +170730214567,432,0 +170730214615,250,0 +170730214672,266,0 +170730214722,423,0 +170730214770,433,0 +170730214818,433,0 +170730214866,433,0 +170730214915,433,0 +170730214963,433,0 +170730215011,433,0 +170730215059,433,0 +170730215109,433,0 +170730215157,432,0 +170730215204,433,0 +170730215252,433,0 +170730215300,433,0 +170730215348,432,0 +170730215396,433,0 +170730215444,433,0 +170730215492,432,0 +170730215540,433,0 +170730215588,433,0 +170730215636,432,0 +170730215685,247,0 +170730215733,258,0 +170730215783,426,0 +170730215832,432,0 +170730215880,432,0 +170730215929,432,0 +170730215977,433,0 +170730216025,433,0 +170730216073,433,0 +170730216123,433,0 +170730216171,433,0 +170730216218,433,0 +170730216266,433,0 +170730216314,433,0 +170730216362,432,0 +170730216410,433,0 +170730216459,433,0 +170730216507,433,0 +170730216555,433,0 +170730216603,433,0 +170730216651,432,0 +170730216699,431,0 +170730216747,252,0 +170730216795,262,0 +170730216842,430,0 +170730216890,433,0 +170730216938,433,0 +170730216986,432,0 +170730217035,432,0 +170730217083,433,0 +170730217133,433,0 +170730217182,432,0 +170730217230,433,0 +170730217278,433,0 +170730217328,432,0 +170730217376,432,0 +170730217425,433,0 +170730217473,433,0 +170730217521,433,0 +170730217569,433,0 +170730217617,433,0 +170730217665,432,0 +170730217715,432,0 +170730217763,423,0 +170730217812,251,0 +170730217860,224,0 +170730217908,432,0 +170730217956,433,0 +170730218004,432,0 +170730218052,433,0 +170730218102,432,0 +170730218151,433,0 +170730218199,433,0 +170730218247,433,0 +170730218295,433,0 +170730218345,433,0 +170730218394,433,0 +170730218442,433,0 +170730218492,433,0 +170730218540,432,0 +170730218588,432,0 +170730218636,433,0 +170730218685,432,0 +170730218735,433,0 +170730218783,432,0 +170730218832,251,0 +170730218880,256,0 +170730218928,423,0 +170730218985,432,0 +170730219033,432,0 +170730219081,432,0 +170730219131,433,0 +170730219179,433,0 +170730219228,433,0 +170730219278,433,0 +170730219326,433,0 +170730219374,433,0 +170730219422,432,0 +170730219469,433,0 +170730219517,433,0 +170730219565,433,0 +170730219613,433,0 +170730219661,433,0 +170730219709,433,0 +170730219757,433,0 +170730219805,432,0 +170730219855,269,0 +170730219903,254,0 +170730219952,244,0 +170730220000,431,0 +170730220050,433,0 +170730220099,433,0 +170730220149,433,0 +170730220197,433,0 +170730220245,432,0 +170730220293,433,0 +170730220341,432,0 +170730220389,433,0 +170730220438,433,0 +170730220488,433,0 +170730220536,432,0 +170730220583,433,0 +170730220633,433,0 +170730220681,433,0 +170730220729,433,0 +170730220778,433,0 +170730220828,432,0 +170730220878,432,0 +170730220925,253,0 +170730220973,254,0 +170730221021,423,0 +170730221079,432,0 +170730221129,433,0 +170730221177,433,0 +170730221224,433,0 +170730221272,432,0 +170730221320,432,0 +170730221368,433,0 +170730221418,433,0 +170730221466,432,0 +170730221515,432,0 +170730221563,432,0 +170730221611,433,0 +170730221659,433,0 +170730221709,433,0 +170730221758,433,0 +170730221808,433,0 +170730221855,433,0 +170730221905,431,0 +170730221955,373,0 +170730222003,249,0 +170730222052,249,0 +170730222101,431,0 +170730222151,432,0 +170730222199,432,0 +170730222247,432,0 +170730222295,432,0 +170730222343,433,0 +170730222391,433,0 +170730222439,433,0 +170730222488,432,0 +170730222536,433,0 +170730222584,432,0 +170730222634,433,0 +170730222682,433,0 +170730222731,432,0 +170730222779,432,0 +170730222829,432,0 +170730222877,432,0 +170730222924,432,0 +170730222974,432,0 +170730223022,251,0 +170730223071,253,0 +170730223121,422,0 +170730223169,432,0 +170730223218,433,0 +170730223268,432,0 +170730223316,433,0 +170730223365,433,0 +170730223413,432,0 +170730223462,432,0 +170730223510,432,0 +170730223560,432,0 +170730223609,433,0 +170730223657,432,0 +170730223707,433,0 +170730223756,433,0 +170730223806,433,0 +170730223854,432,0 +170730223902,432,0 +170730223950,433,0 +170730223998,432,0 +170730224046,432,0 +170730224094,255,0 +170730224142,268,0 +170730224191,429,0 +170730224239,432,0 +170730224287,432,0 +170730224336,433,0 +170730224386,433,0 +170730224436,433,0 +170730224485,433,0 +170730224535,432,0 +170730224583,433,0 +170730224631,432,0 +170730224678,433,0 +170730224728,433,0 +170730224776,432,0 +170730224825,432,0 +170730224875,433,0 +170730224923,433,0 +170730224972,433,0 +170730225020,432,0 +170730225068,432,0 +170730225116,418,0 +170730225164,248,0 +170730225214,243,0 +170730225263,431,0 +170730225311,432,0 +170730225359,433,0 +170730225407,433,0 +170730225455,433,0 +170730225503,433,0 +170730225551,433,0 +170730225599,432,0 +170730225647,432,0 +170730225695,433,0 +170730225743,433,0 +170730225790,432,0 +170730225840,433,0 +170730225890,432,0 +170730225938,433,0 +170730225985,433,0 +170730226033,432,0 +170730226081,432,0 +170730226131,431,0 +170730226180,258,0 +170730226228,253,0 +170730226276,424,0 +170730226324,432,0 +170730226374,432,0 +170730226422,433,0 +170730226470,432,0 +170730226519,433,0 +170730226569,433,0 +170730226617,433,0 +170730226664,433,0 +170730226714,433,0 +170730226762,432,0 +170730226810,433,0 +170730226858,433,0 +170730226907,433,0 +170730226955,433,0 +170730227003,433,0 +170730227051,433,0 +170730227099,432,0 +170730227149,433,0 +170730227197,432,0 +170730227245,258,0 +170730227293,275,1 +170730227373,432,0 +170730227421,433,0 +170730227471,433,0 +170730227520,433,0 +170730227568,433,0 +170730227618,433,0 +170730227666,432,0 +170730227714,433,0 +170730227763,433,0 +170730227811,433,0 +170730227859,432,0 +170730227907,433,0 +170730227957,433,0 +170730228005,433,0 +170730228054,433,0 +170730228102,433,0 +170730228150,433,0 +170730228198,433,0 +170730228248,432,0 +170730228297,268,0 +170730228347,281,1 +170730228426,428,0 +170730228476,430,0 +170730228524,430,0 +170730228572,430,0 +170730228620,429,0 +170730228669,430,0 +170730228717,429,0 +170730228767,430,0 +170730228816,429,0 +170730228864,430,0 +170730228912,430,0 +170730228960,430,0 +170730229010,429,0 +170730229058,430,0 +170730229107,430,0 +170730229157,429,0 +170730229206,430,0 +170730229254,427,0 +170730229304,420,0 +170730229352,268,0 +170730229400,253,0 +170730229449,429,0 +170730229497,429,0 +170730229547,431,0 +170730229595,428,0 +170730229642,429,0 +170730229692,430,0 +170730229740,430,0 +170730229788,429,0 +170730229836,431,0 +170730229885,428,0 +170730229933,430,0 +170730229981,430,0 +170730230029,429,0 +170730230077,430,0 +170730230125,430,0 +170730230173,429,0 +170730230221,429,0 +170730230269,430,0 +170730230317,429,0 +170730230365,251,0 +170730230414,257,0 +170730230462,415,0 +170730230515,430,0 +170730230564,430,0 +170730230614,430,0 +170730230663,430,0 +170730230713,430,0 +170730230761,430,0 +170730230809,430,0 +170730230858,429,0 +170730230908,430,0 +170730230956,429,0 +170730231004,430,0 +170730231052,431,0 +170730231101,430,0 +170730231149,429,0 +170730231199,429,0 +170730231246,429,0 +170730231294,429,0 +170730231344,429,0 +170730231392,429,0 +170730231440,254,0 +170730231488,279,1 +170730231569,428,0 +170730231617,430,0 +170730231666,431,0 +170730231714,431,0 +170730231762,430,0 +170730231812,430,0 +170730231860,430,0 +170730231908,428,0 +170730231957,431,0 +170730232007,430,0 +170730232056,430,0 +170730232104,430,0 +170730232152,430,0 +170730232200,430,0 +170730232248,430,0 +170730232298,430,0 +170730232346,430,0 +170730232394,430,0 +170730232443,429,0 +170730232493,268,0 +170730232541,272,1 +170730232640,429,0 +170730232688,429,0 +170730232738,429,0 +170730232786,429,0 +170730232834,430,0 +170730232882,429,0 +170730232930,427,0 +170730232978,430,0 +170730233026,430,0 +170730233074,430,0 +170730233122,430,0 +170730233171,430,0 +170730233219,430,0 +170730233267,430,0 +170730233315,430,0 +170730233363,429,0 +170730233411,430,0 +170730233459,430,0 +170730233507,429,0 +170730233557,253,0 +170730233606,239,0 +170730233656,429,0 +170730233704,429,0 +170730233753,430,0 +170730233801,431,0 +170730233851,426,0 +170730233899,431,0 +170730233947,430,0 +170730233995,431,0 +170730234043,431,0 +170730234092,430,0 +170730234140,430,0 +170730234190,429,0 +170730234239,430,0 +170730234287,430,0 +170730234335,431,0 +170730234383,430,0 +170730234431,430,0 +170730234479,430,0 +170730234528,429,0 +170730234578,258,0 +170730234627,255,0 +170730234675,413,0 +170730234723,429,0 +170730234771,429,0 +170730234819,429,0 +170730234869,431,0 +170730234918,430,0 +170730234966,430,0 +170730235014,429,0 +170730235062,430,0 +170730235112,429,0 +170730235160,429,0 +170730235208,431,0 +170730235256,430,0 +170730235304,430,0 +170730235352,429,0 +170730235401,429,0 +170730235449,430,0 +170730235499,430,0 +170730235547,430,0 +170730235595,429,0 +170730235644,266,0 +170730235692,266,0 +170730235742,423,0 +170730235791,431,0 +170730235839,429,0 +170730235887,430,0 +170730235936,430,0 +170730235984,429,0 +170730236032,429,0 +170730236080,429,0 +170730236133,428,0 +170730236181,429,0 +170730236231,431,0 +170730236279,430,0 +170730236328,430,0 +170730236378,429,0 +170730236427,429,0 +170730236477,429,0 +170730236526,429,0 +170730236574,429,0 +170730236622,430,0 +170730236670,256,0 +170730236718,262,0 +170730236766,371,0 +170730236816,430,0 +170730236864,430,0 +170730236912,428,0 +170730236960,430,0 +170730237009,430,0 +170730237057,431,0 +170730237105,430,0 +170730237153,428,0 +170730237203,431,0 +170730237251,430,0 +170730237298,430,0 +170730237348,429,0 +170730237396,430,0 +170730237444,431,0 +170730237494,431,0 +170730237543,431,0 +170730237593,430,0 +170730237641,430,0 +170730237689,429,0 +170730237736,259,0 +170730237784,261,0 +170730237832,421,0 +170730237880,429,0 +170730237930,431,0 +170730237978,431,0 +170730238026,430,0 +170730238074,430,0 +170730238122,431,0 +170730238171,429,0 +170730238219,430,0 +170730238267,430,0 +170730238315,430,0 +170730238365,430,0 +170730238413,430,0 +170730238461,431,0 +170730238509,431,0 +170730238557,430,0 +170730238606,428,0 +170730238656,427,0 +170730238704,428,0 +170730238753,424,0 +170730238801,252,0 +170730238849,258,0 +170730238897,424,0 +170730238946,428,0 +170730238994,427,0 +170730239044,427,0 +170730239092,428,0 +170730239139,427,0 +170730239187,428,0 +170730239235,424,0 +170730239283,428,0 +170730239331,427,0 +170730239379,427,0 +170730239427,427,0 +170730239475,426,0 +170730239523,427,0 +170730239570,427,0 +170730239618,427,0 +170730239666,427,0 +170730239714,426,0 +170730239762,427,0 +170730239810,423,0 +170730239858,249,0 +170730239906,242,0 +170730239954,426,0 +170730240001,427,0 +170730240049,428,0 +170730240097,428,0 +170730240145,426,0 +170730240193,428,0 +170730240241,427,0 +170730240289,428,0 +170730240337,427,0 +170730240384,427,0 +170730240432,428,0 +170730240480,427,0 +170730240528,426,0 +170730240576,426,0 +170730240624,427,0 +170730240672,428,0 +170730240720,427,0 +170730240769,427,0 +170730240822,426,0 +170730240870,253,0 +170730240927,250,0 +170730240975,330,0 +170730241023,426,0 +170730241073,427,0 +170730241120,427,0 +170730241168,427,0 +170730241216,427,0 +170730241266,426,0 +170730241314,425,0 +170730241367,427,0 +170730241416,426,0 +170730241466,427,0 +170730241514,427,0 +170730241563,426,0 +170730241613,428,0 +170730241662,426,0 +170730241712,428,0 +170730241760,428,0 +170730241808,429,0 +170730241856,427,0 +170730241905,423,0 +170730241955,251,0 +170730242003,255,0 +170730242052,425,0 +170730242100,427,0 +170730242148,426,0 +170730242198,427,0 +170730242247,428,0 +170730242295,426,0 +170730242343,425,0 +170730242396,425,0 +170730242444,425,0 +170730242492,420,0 +170730242541,422,0 +170730242594,423,0 +170730242642,424,0 +170730242690,424,0 +170730242742,425,0 +170730242795,424,0 +170730242843,424,0 +170730242891,425,0 +170730242939,424,0 +170730242992,266,0 +170730243040,265,0 +170730243088,417,0 +170730243140,425,0 +170730243188,424,0 +170730243236,424,0 +170730243284,424,0 +170730243337,423,0 +170730243385,424,0 +170730243432,424,0 +170730243480,424,0 +170730243528,425,0 +170730243576,424,0 +170730243624,423,0 +170730243674,423,0 +170730243723,424,0 +170730243771,424,0 +170730243820,423,0 +170730243868,424,0 +170730243916,419,0 +170730243964,424,0 +170730244012,314,0 +170730244060,250,0 +170730244108,234,0 +170730244156,423,0 +170730244206,425,0 +170730244254,425,0 +170730244306,423,0 +170730244359,422,0 +170730244407,425,0 +170730244456,424,0 +170730244509,424,0 +170730244557,426,0 +170730244607,424,0 +170730244659,423,0 +170730244712,423,0 +170730244762,424,0 +170730244809,424,0 +170730244862,424,0 +170730244910,424,0 +170730244960,424,0 +170730245008,423,0 +170730245057,246,0 +170730245110,251,0 +170730245158,221,0 +170730245207,423,0 +170730245260,425,0 +170730245313,424,0 +170730245361,425,0 +170730245409,425,0 +170730245461,425,0 +170730245514,425,0 +170730245567,425,0 +170730245619,424,0 +170730245667,425,0 +170730245715,424,0 +170730245768,424,0 +170730245820,425,0 +170730245870,422,0 +170730245918,424,0 +170730245966,425,0 +170730246018,425,0 +170730246066,424,0 +170730246114,245,0 +170730246162,249,0 +170730246210,221,0 +170730246258,424,0 +170730246306,423,0 +170730246358,424,0 +170730246408,424,0 +170730246460,423,0 +170730246508,424,0 +170730246556,425,0 +170730246604,424,0 +170730246652,423,0 +170730246700,423,0 +170730246748,425,0 +170730246796,423,0 +170730246844,424,0 +170730246892,425,0 +170730246939,425,0 +170730246989,425,0 +170730247039,425,0 +170730247091,423,0 +170730247141,423,0 +170730247189,251,0 +170730247237,250,0 +170730247286,413,0 +170730247339,425,0 +170730247387,422,0 +170730247436,423,0 +170730247484,424,0 +170730247534,424,0 +170730247587,424,0 +170730247634,423,0 +170730247682,425,0 +170730247730,423,0 +170730247778,423,0 +170730247828,424,0 +170730247876,424,0 +170730247924,424,0 +170730247972,425,0 +170730248020,424,0 +170730248068,425,0 +170730248117,424,0 +170730248175,424,0 +170730248227,255,0 +170730248277,255,0 +170730248326,406,0 +170730248379,423,0 +170730248427,424,0 +170730248480,424,0 +170730248529,423,0 +170730248577,423,0 +170730248625,424,0 +170730248673,425,0 +170730248731,425,0 +170730248779,424,0 +170730248828,425,0 +170730248876,425,0 +170730248926,425,0 +170730248979,424,0 +170730249031,422,0 +170730249081,424,0 +170730249129,424,0 +170730249178,423,0 +170730249226,423,0 +170730249274,249,0 +170730249322,264,0 +170730249370,405,0 +170730249423,425,0 +170730249473,425,0 +170730249521,424,0 +170730249569,423,0 +170730249617,424,0 +170730249666,424,0 +170730249716,424,0 +170730249768,423,0 +170730249818,424,0 +170730249866,424,0 +170730249919,422,0 +170730249967,424,0 +170730250016,424,0 +170730250066,424,0 +170730250114,425,0 +170730250162,423,0 +170730250211,422,0 +170730250264,424,0 +170730250317,249,0 +170730250379,251,0 +170730250428,407,0 +170730250486,423,0 +170730250535,425,0 +170730250585,425,0 +170730250633,425,0 +170730250681,424,0 +170730250730,422,0 +170730250778,425,0 +170730250826,423,0 +170730250876,424,0 +170730250924,424,0 +170730250973,422,0 +170730251023,424,0 +170730251072,425,0 +170730251120,425,0 +170730251168,425,0 +170730251216,424,0 +170730251264,416,0 +170730251312,424,0 +170730251360,247,0 +170730251410,259,0 +170730251458,224,0 +170730251506,421,0 +170730251554,424,0 +170730251602,423,0 +170730251649,425,0 +170730251699,426,0 +170730251747,424,0 +170730251795,425,0 +170730251847,425,0 +170730251900,423,0 +170730251948,425,0 +170730252001,425,0 +170730252049,425,0 +170730252096,425,0 +170730252144,423,0 +170730252192,425,0 +170730252240,423,0 +170730252288,425,0 +170730252336,423,0 +170730252384,423,0 +170730252432,272,1 +170730252513,395,0 +170730252561,421,0 +170730252609,426,0 +170730252657,425,0 +170730252705,423,0 +170730252753,425,0 +170730252801,423,0 +170730252849,416,0 +170730252897,424,0 +170730252944,424,0 +170730252992,424,0 +170730253040,424,0 +170730253090,425,0 +170730253139,425,0 +170730253192,426,0 +170730253240,425,0 +170730253288,425,0 +170730253336,425,0 +170730253386,424,0 +170730253434,424,0 +170730253482,256,0 +170730253531,257,0 +170730253579,409,0 +170730253632,426,0 +170730253680,425,0 +170730253728,424,0 +170730253780,425,0 +170730253833,425,0 +170730253881,425,0 +170730253929,425,0 +170730253982,426,0 +170730254029,426,0 +170730254077,425,0 +170730254130,426,0 +170730254178,425,0 +170730254226,424,0 +170730254274,425,0 +170730254322,425,0 +170730254370,425,0 +170730254418,425,0 +170730254466,423,0 +170730254514,252,0 +170730254580,253,0 +170730254628,412,0 +170730254685,425,0 +170730254735,425,0 +170730254787,426,0 +170730254837,425,0 +170730254885,425,0 +170730254933,424,0 +170730254982,426,0 +170730255030,424,0 +170730255080,426,0 +170730255129,426,0 +170730255179,425,0 +170730255229,425,0 +170730255281,426,0 +170730255329,424,0 +170730255377,426,0 +170730255425,424,0 +170730255473,425,0 +170730255521,425,0 +170730255574,251,0 +170730255623,255,0 +170730255671,410,0 +170730255724,426,0 +170730255772,426,0 +170730255820,427,0 +170730255867,426,0 +170730255915,427,0 +170730255963,425,0 +170730256013,426,0 +170730256061,428,0 +170730256114,426,0 +170730256163,426,0 +170730256211,427,0 +170730256259,427,0 +170730256307,426,0 +170730256355,427,0 +170730256403,427,0 +170730256452,426,0 +170730256500,427,0 +170730256550,426,0 +170730256599,424,0 +170730256647,252,0 +170730256695,267,0 +170730256743,421,0 +170730256793,426,0 +170730256842,425,0 +170730256890,427,0 +170730256938,425,0 +170730256987,427,0 +170730257037,426,0 +170730257085,426,0 +170730257134,427,0 +170730257184,427,0 +170730257232,426,0 +170730257280,427,0 +170730257328,427,0 +170730257377,426,0 +170730257427,427,0 +170730257475,426,0 +170730257524,425,0 +170730257572,422,0 +170730257620,424,0 +170730257668,253,0 +170730257716,252,0 +170730257764,402,0 +170730257812,426,0 +170730257860,426,0 +170730257908,426,0 +170730257956,425,0 +170730258004,424,0 +170730258053,426,0 +170730258101,427,0 +170730258149,426,0 +170730258197,427,0 +170730258245,426,0 +170730258294,426,0 +170730258342,427,0 +170730258392,426,0 +170730258440,426,0 +170730258488,427,0 +170730258536,425,0 +170730258584,425,0 +170730258633,425,0 +170730258681,425,0 +170730258729,266,0 +170730258777,286,1 +170730258864,427,0 +170730258913,424,0 +170730258961,427,0 +170730259011,424,0 +170730259060,426,0 +170730259110,426,0 +170730259158,427,0 +170730259207,427,0 +170730259257,427,0 +170730259305,426,0 +170730259354,426,0 +170730259402,426,0 +170730259450,427,0 +170730259498,425,0 +170730259548,427,0 +170730259596,426,0 +170730259645,427,0 +170730259698,422,0 +170730259746,424,0 +170730259794,254,0 +170730259842,265,0 +170730259890,421,0 +170730259938,427,0 +170730259986,425,0 +170730260035,425,0 +170730260085,425,0 +170730260133,426,0 +170730260180,426,0 +170730260228,426,0 +170730260281,425,0 +170730260329,426,0 +170730260377,424,0 +170730260430,426,0 +170730260478,426,0 +170730260527,426,0 +170730260577,426,0 +170730260625,425,0 +170730260673,427,0 +170730260721,426,0 +170730260770,425,0 +170730260820,265,0 +170730260868,253,0 +170730260917,411,0 +170730260970,424,0 +170730261020,427,0 +170730261067,426,0 +170730261115,426,0 +170730261163,426,0 +170730261211,426,0 +170730261259,426,0 +170730261309,426,0 +170730261357,427,0 +170730261409,427,0 +170730261459,427,0 +170730261507,426,0 +170730261555,426,0 +170730261603,424,0 +170730261652,426,0 +170730261702,427,0 +170730261751,427,0 +170730261801,426,0 +170730261848,424,0 +170730261898,260,0 +170730261946,276,1 +170730262032,425,0 +170730262082,427,0 +170730262131,427,0 +170730262179,426,0 +170730262228,427,0 +170730262278,426,0 +170730262326,425,0 +170730262374,425,0 +170730262422,426,0 +170730262471,426,0 +170730262521,425,0 +170730262569,426,0 +170730262617,428,0 +170730262665,426,0 +170730262714,426,0 +170730262762,428,0 +170730262812,428,0 +170730262860,427,0 +170730262908,391,0 +170730262957,262,0 +170730263005,235,0 +170730263055,424,0 +170730263103,427,0 +170730263151,426,0 +170730263199,427,0 +170730263248,426,0 +170730263296,427,0 +170730263344,426,0 +170730263394,427,0 +170730263443,427,0 +170730263493,428,0 +170730263541,427,0 +170730263589,426,0 +170730263637,427,0 +170730263685,427,0 +170730263734,427,0 +170730263782,428,0 +170730263832,425,0 +170730263881,424,0 +170730263931,426,0 +170730263980,277,1 +170730264062,336,0 +170730264112,425,0 +170730264160,426,0 +170730264207,426,0 +170730264255,427,0 +170730264305,426,0 +170730264354,426,0 +170730264404,424,0 +170730264456,427,0 +170730264504,427,0 +170730264557,425,0 +170730264605,426,0 +170730264653,427,0 +170730264703,427,0 +170730264751,426,0 +170730264799,426,0 +170730264846,426,0 +170730264894,425,0 +170730264942,425,0 +170730264990,422,0 +170730265040,251,0 +170730265088,252,0 +170730265136,419,0 +170730265185,427,0 +170730265233,423,0 +170730265281,426,0 +170730265331,426,0 +170730265379,426,0 +170730265427,426,0 +170730265476,425,0 +170730265524,426,0 +170730265577,426,0 +170730265627,427,0 +170730265674,426,0 +170730265722,426,0 +170730265770,426,0 +170730265818,427,0 +170730265866,427,0 +170730265914,426,0 +170730265962,426,0 +170730266012,426,0 +170730266060,250,0 +170730266109,254,0 +170730266159,300,1 +170730266237,426,0 +170730266287,427,0 +170730266335,426,0 +170730266384,426,0 +170730266432,426,0 +170730266480,426,0 +170730266528,425,0 +170730266581,426,0 +170730266630,426,0 +170730266678,427,0 +170730266726,427,0 +170730266774,425,0 +170730266822,426,0 +170730266872,426,0 +170730266920,426,0 +170730266968,426,0 +170730267016,424,0 +170730267065,426,0 +170730267118,257,0 +170730267166,263,0 +170730267214,412,0 +170730267266,424,0 +170730267314,425,0 +170730267364,424,0 +170730267412,425,0 +170730267461,424,0 +170730267514,426,0 +170730267562,425,0 +170730267612,425,0 +170730267661,424,0 +170730267714,424,0 +170730267766,424,0 +170730267814,425,0 +170730267864,425,0 +170730267917,219,0 +170730267965,220,0 +170730268014,221,0 +170730268062,224,0 +170730268112,228,0 +170730268161,248,0 +170730268211,252,0 +170730268259,226,0 +170730268307,219,0 +170730268355,218,0 +170730268403,218,0 +170730268451,218,0 +170730268499,218,0 +170730268547,218,0 +170730268595,218,0 +170730268643,219,0 +170730268692,218,0 +170730268740,218,0 +170730268788,218,0 +170730268836,218,0 +170730268885,218,0 +170730268933,218,0 +170730268983,218,0 +170730269031,218,0 +170730269080,218,0 +170730269130,218,0 +170730269179,219,0 +170730269227,255,0 +170730269275,262,0 +170730269325,227,0 +170730269373,218,0 +170730269421,218,0 +170730269469,218,0 +170730269517,218,0 +170730269566,218,0 +170730269614,218,0 +170730269662,218,0 +170730269710,218,0 +170730269758,218,0 +170730269806,218,0 +170730269854,218,0 +170730269902,218,0 +170730269951,218,0 +170730269999,218,0 +170730270049,218,0 +170730270099,218,0 +170730270146,218,0 +170730270194,218,0 +170730270244,220,0 +170730270292,262,0 +170730270341,271,1 +170730270420,218,0 +170730270470,218,0 +170730270518,218,0 +170730270567,219,0 +170730270615,218,0 +170730270665,218,0 +170730270713,218,0 +170730270762,218,0 +170730270810,218,0 +170730270858,218,0 +170730270906,218,0 +170730270954,219,0 +170730271003,218,0 +170730271051,218,0 +170730271099,218,0 +170730271149,218,0 +170730271198,218,0 +170730271246,219,0 +170730271296,221,0 +170730271345,250,0 +170730271395,222,0 +170730271444,219,0 +170730271492,218,0 +170730271540,218,0 +170730271588,218,0 +170730271636,218,0 +170730271686,218,0 +170730271734,218,0 +170730271782,218,0 +170730271831,218,0 +170730271881,218,0 +170730271930,218,0 +170730271980,218,0 +170730272028,218,0 +170730272076,218,0 +170730272123,218,0 +170730272171,218,0 +170730272219,218,0 +170730272267,218,0 +170730272315,219,0 +170730272363,273,1 +170730272439,245,0 +170730272488,220,0 +170730272538,218,0 +170730272587,218,0 +170730272635,219,0 +170730272685,218,0 +170730272733,218,0 +170730272781,219,0 +170730272830,218,0 +170730272878,218,0 +170730272928,218,0 +170730272976,218,0 +170730273025,218,0 +170730273074,218,0 +170730273122,218,0 +170730273170,218,0 +170730273220,218,0 +170730273268,218,0 +170730273315,220,0 +170730273363,223,0 +170730273411,245,0 +170730273461,254,0 +170730273509,226,0 +170730273558,219,0 +170730273608,218,0 +170730273656,219,0 +170730273704,219,0 +170730273753,219,0 +170730273801,219,0 +170730273849,219,0 +170730273897,219,0 +170730273945,219,0 +170730273993,219,0 +170730274042,219,0 +170730274090,219,0 +170730274140,219,0 +170730274188,218,0 +170730274238,219,0 +170730274287,219,0 +170730274335,218,0 +170730274383,219,0 +170730274431,221,0 +170730274479,260,0 +170730274529,237,0 +170730274577,221,0 +170730274626,219,0 +170730274674,219,0 +170730274723,219,0 +170730274771,219,0 +170730274819,219,0 +170730274867,218,0 +170730274915,219,0 +170730274963,219,0 +170730275011,219,0 +170730275059,218,0 +170730275109,219,0 +170730275157,219,0 +170730275205,218,0 +170730275253,219,0 +170730275302,219,0 +170730275352,219,0 +170730275401,218,0 +170730275449,219,0 +170730275499,247,0 +170730275548,255,0 +170730275596,223,0 +170730275644,220,0 +170730275692,219,0 +170730275740,219,0 +170730275788,219,0 +170730275836,219,0 +170730275884,219,0 +170730275932,219,0 +170730275980,219,0 +170730276028,219,0 +170730276076,219,0 +170730276124,218,0 +170730276172,219,0 +170730276220,219,0 +170730276268,219,0 +170730276317,218,0 +170730276365,219,0 +170730276415,219,0 +170730276463,219,0 +170730276511,220,0 +170730276559,256,0 +170730276607,254,0 +170730276655,228,0 +170730276703,219,0 +170730276752,219,0 +170730276800,219,0 +170730276848,219,0 +170730276896,219,0 +170730276944,219,0 +170730276992,219,0 +170730277042,219,0 +170730277091,219,0 +170730277139,218,0 +170730277187,219,0 +170730277235,219,0 +170730277283,219,0 +170730277331,219,0 +170730277379,219,0 +170730277427,219,0 +170730277476,219,0 +170730277524,219,0 +170730277572,220,0 +170730277622,247,0 +170730277670,266,0 +170730277719,224,0 +170730277769,219,0 +170730277817,219,0 +170730277866,218,0 +170730277914,219,0 +170730277964,219,0 +170730278012,219,0 +170730278060,219,0 +170730278109,219,0 +170730278157,219,0 +170730278205,218,0 +170730278255,219,0 +170730278303,219,0 +170730278351,219,0 +170730278399,218,0 +170730278447,219,0 +170730278495,219,0 +170730278543,219,0 +170730278591,219,0 +170730278640,222,0 +170730278690,250,0 +170730278738,253,0 +170730278787,220,0 +170730278837,219,0 +170730278885,219,0 +170730278934,218,0 +170730278984,219,0 +170730279033,219,0 +170730279083,219,0 +170730279131,219,0 +170730279180,219,0 +170730279228,219,0 +170730279278,219,0 +170730279326,219,0 +170730279375,218,0 +170730279425,219,0 +170730279473,219,0 +170730279521,219,0 +170730279569,219,0 +170730279617,219,0 +170730279666,220,0 +170730279716,249,0 +170730279764,254,0 +170730279812,225,0 +170730279860,219,0 +170730279908,219,0 +170730279955,219,0 +170730280003,218,0 +170730280051,219,0 +170730280099,218,0 +170730280147,219,0 +170730280197,219,0 +170730280244,218,0 +170730280292,219,0 +170730280340,219,0 +170730280388,219,0 +170730280436,219,0 +170730280486,219,0 +170730280533,218,0 +170730280581,219,0 +170730280629,219,0 +170730280677,219,0 +170730280725,221,0 +170730280775,250,0 +170730280822,248,0 +170730280870,220,0 +170730280918,219,0 +170730280968,219,0 +170730281017,219,0 +170730281067,219,0 +170730281116,219,0 +170730281166,219,0 +170730281215,219,0 +170730281263,219,0 +170730281311,219,0 +170730281361,219,0 +170730281410,219,0 +170730281458,219,0 +170730281506,219,0 +170730281556,218,0 +170730281605,219,0 +170730281655,219,0 +170730281703,219,0 +170730281751,219,0 +170730281800,250,0 +170730281850,255,0 +170730281899,227,0 +170730281947,219,0 +170730281997,219,0 +170730282045,219,0 +170730282094,219,0 +170730282144,219,0 +170730282192,219,0 +170730282240,219,0 +170730282287,219,0 +170730282335,218,0 +170730282383,219,0 +170730282431,219,0 +170730282481,218,0 +170730282530,219,0 +170730282580,218,0 +170730282629,219,0 +170730282679,219,0 +170730282727,219,0 +170730282775,219,0 +170730282823,221,0 +170730282870,251,0 +170730282918,257,0 +170730282968,221,0 +170730283017,219,0 +170730283065,219,0 +170730283115,219,0 +170730283164,219,0 +170730283212,219,0 +170730283260,219,0 +170730283308,219,0 +170730283356,219,0 +170730283404,218,0 +170730283452,219,0 +170730283501,219,0 +170730283551,219,0 +170730283599,219,0 +170730283648,218,0 +170730283698,218,0 +170730283746,219,0 +170730283795,219,0 +170730283845,219,0 +170730283893,251,0 +170730283941,253,0 +170730283989,225,0 +170730284037,220,0 +170730284085,219,0 +170730284133,219,0 +170730284182,219,0 +170730284230,219,0 +170730284278,218,0 +170730284328,218,0 +170730284377,218,0 +170730284425,219,0 +170730284473,218,0 +170730284523,219,0 +170730284571,219,0 +170730284618,219,0 +170730284666,219,0 +170730284716,219,0 +170730284764,219,0 +170730284812,219,0 +170730284860,219,0 +170730284907,220,0 +170730284957,251,0 +170730285006,267,0 +170730285054,227,0 +170730285102,220,0 +170730285150,219,0 +170730285198,219,0 +170730285248,219,0 +170730285297,219,0 +170730285345,219,0 +170730285393,219,0 +170730285441,219,0 +170730285489,219,0 +170730285537,219,0 +170730285585,219,0 +170730285633,219,0 +170730285681,219,0 +170730285729,219,0 +170730285778,219,0 +170730285828,218,0 +170730285876,219,0 +170730285925,219,0 +170730285973,221,0 +170730286023,265,0 +170730286071,272,1 +170730286151,219,0 +170730286200,219,0 +170730286248,219,0 +170730286298,219,0 +170730286347,219,0 +170730286395,219,0 +170730286443,219,0 +170730286493,219,0 +170730286541,219,0 +170730286590,219,0 +170730286638,219,0 +170730286688,219,0 +170730286737,219,0 +170730286785,219,0 +170730286835,219,0 +170730286882,219,0 +170730286930,219,0 +170730286980,219,0 +170730287028,224,0 +170730287076,259,0 +170730287124,241,0 +170730287173,220,0 +170730287223,219,0 +170730287271,219,0 +170730287319,219,0 +170730287367,219,0 +170730287415,218,0 +170730287463,219,0 +170730287512,219,0 +170730287562,219,0 +170730287610,219,0 +170730287659,219,0 +170730287707,219,0 +170730287757,219,0 +170730287806,219,0 +170730287854,219,0 +170730287902,219,0 +170730287952,219,0 +170730287999,219,0 +170730288047,220,0 +170730288097,253,0 +170730288145,253,0 +170730288194,227,0 +170730288244,219,0 +170730288293,219,0 +170730288341,219,0 +170730288389,219,0 +170730288437,219,0 +170730288485,219,0 +170730288535,219,0 +170730288584,219,0 +170730288632,219,0 +170730288682,219,0 +170730288731,219,0 +170730288781,219,0 +170730288829,219,0 +170730288877,219,0 +170730288925,219,0 +170730288973,219,0 +170730289022,219,0 +170730289070,219,0 +170730289118,223,0 +170730289166,250,0 +170730289215,261,0 +170730289263,221,0 +170730289313,219,0 +170730289362,219,0 +170730289410,219,0 +170730289458,220,0 +170730289508,219,0 +170730289556,219,0 +170730289604,219,0 +170730289653,219,0 +170730289701,219,0 +170730289749,219,0 +170730289799,219,0 +170730289848,219,0 +170730289896,220,0 +170730289944,219,0 +170730289992,219,0 +170730290040,219,0 +170730290088,220,0 +170730290136,220,0 +170730290185,254,0 +170730290233,258,0 +170730290281,227,0 +170730290329,220,0 +170730290377,219,0 +170730290425,219,0 +170730290475,218,0 +170730290523,219,0 +170730290572,219,0 +170730290622,219,0 +170730290670,219,0 +170730290718,219,0 +170730290766,218,0 +170730290814,219,0 +170730290863,219,0 +170730290911,218,0 +170730290960,219,0 +170730291008,219,0 +170730291056,219,0 +170730291104,219,0 +170730291152,219,0 +170730291200,220,0 +170730291248,249,0 +170730291296,255,0 +170730291346,227,0 +170730291394,220,0 +170730291443,219,0 +170730291493,219,0 +170730291541,219,0 +170730291590,219,0 +170730291638,219,0 +170730291686,219,0 +170730291736,219,0 +170730291784,219,0 +170730291832,219,0 +170730291880,219,0 +170730291929,218,0 +170730291977,218,0 +170730292025,219,0 +170730292073,219,0 +170730292121,219,0 +170730292170,219,0 +170730292220,219,0 +170730292268,221,0 +170730292316,252,0 +170730292364,264,0 +170730292412,222,0 +170730292460,219,0 +170730292508,219,0 +170730292557,219,0 +170730292607,219,0 +170730292655,219,0 +170730292703,219,0 +170730292751,219,0 +170730292800,219,0 +170730292848,219,0 +170730292897,219,0 +170730292945,219,0 +170730292993,219,0 +170730293043,219,0 +170730293091,220,0 +170730293139,220,0 +170730293186,219,0 +170730293234,219,0 +170730293282,220,0 +170730293330,252,0 +170730293379,255,0 +170730293427,228,0 +170730293475,220,0 +170730293523,219,0 +170730293571,219,0 +170730293619,219,0 +170730293667,219,0 +170730293716,220,0 +170730293764,219,0 +170730293812,219,0 +170730293862,219,0 +170730293909,219,0 +170730293957,219,0 +170730294005,219,0 +170730294053,219,0 +170730294103,219,0 +170730294150,220,0 +170730294198,219,0 +170730294246,220,0 +170730294296,220,0 +170730294344,220,0 +170730294391,254,0 +170730294439,250,0 +170730294487,227,0 +170730294535,219,0 +170730294583,219,0 +170730294631,219,0 +170730294679,219,0 +170730294727,219,0 +170730294775,219,0 +170730294822,219,0 +170730294870,219,0 +170730294920,219,0 +170730294968,219,0 +170730295017,219,0 +170730295065,219,0 +170730295113,219,0 +170730295161,219,0 +170730295209,219,0 +170730295256,219,0 +170730295306,219,0 +170730295354,219,0 +170730295403,221,0 +170730295451,248,0 +170730295499,259,0 +170730295547,224,0 +170730295595,218,0 +170730295643,218,0 +170730295690,219,0 +170730295738,218,0 +170730295788,219,0 +170730295836,219,0 +170730295884,219,0 +170730295931,219,0 +170730295979,219,0 +170730296027,218,0 +170730296075,219,0 +170730296123,219,0 +170730296171,219,0 +170730296219,218,0 +170730296268,219,0 +170730296316,219,0 +170730296364,219,0 +170730296412,219,0 +170730296460,219,0 +170730296508,219,0 +170730296556,218,0 +170730296603,219,0 +170730296651,219,0 +170730296699,219,0 +170730296747,219,0 +170730296795,219,0 +170730296843,219,0 +170730296891,219,0 +170730296939,219,0 +170730296988,243,0 +170730297036,260,0 +170730297084,239,0 +170730297132,220,0 +170730297180,219,0 +170730297228,219,0 +170730297275,219,0 +170730297323,218,0 +170730297371,219,0 +170730297419,219,0 +170730297467,219,0 +170730297515,219,0 +170730297563,219,0 +170730297611,219,0 +170730297659,219,0 +170730297707,219,0 +170730297754,219,0 +170730297804,219,0 +170730297852,219,0 +170730297900,219,0 +170730297947,219,0 +170730297995,220,0 +170730298043,250,0 +170730298091,262,0 +170730298139,224,0 +170730298187,220,0 +170730298235,219,0 +170730298283,219,0 +170730298331,219,0 +170730298378,219,0 +170730298426,219,0 +170730298476,219,0 +170730298525,219,0 +170730298573,219,0 +170730298623,219,0 +170730298670,219,0 +170730298720,219,0 +170730298768,219,0 +170730298815,219,0 +170730298865,219,0 +170730298913,219,0 +170730298961,219,0 +170730299009,219,0 +170730299057,220,0 +170730299105,252,0 +170730299152,257,0 +170730299200,228,0 +170730299250,219,0 +170730299298,219,0 +170730299347,219,0 +170730299395,219,0 +170730299443,219,0 +170730299491,219,0 +170730299539,219,0 +170730299586,219,0 +170730299634,219,0 +170730299682,219,0 +170730299730,219,0 +170730299778,219,0 +170730299826,219,0 +170730299874,219,0 +170730299922,219,0 +170730299971,219,0 +170730300019,219,0 +170730300068,219,0 +170730300116,220,0 +170730300164,251,0 +170730300212,255,0 +170730300260,227,0 +170730300308,219,0 +170730300356,218,0 +170730300404,219,0 +170730300453,219,0 +170730300501,218,0 +170730300551,218,0 +170730300600,219,0 +170730300648,219,0 +170730300696,219,0 +170730300744,219,0 +170730300792,219,0 +170730300839,219,0 +170730300887,219,0 +170730300935,219,0 +170730300985,219,0 +170730301032,219,0 +170730301080,218,0 +170730301128,219,0 +170730301178,222,0 +170730301226,248,0 +170730301274,245,0 +170730301322,222,0 +170730301370,219,0 +170730301418,218,0 +170730301466,218,0 +170730301514,219,0 +170730301562,218,0 +170730301610,219,0 +170730301657,219,0 +170730301705,218,0 +170730301753,219,0 +170730301801,218,0 +170730301849,218,0 +170730301897,219,0 +170730301946,219,0 +170730301994,219,0 +170730302042,219,0 +170730302090,219,0 +170730302138,219,0 +170730302186,220,0 +170730302234,238,0 +170730302281,256,0 +170730302329,235,0 +170730302377,220,0 +170730302425,219,0 +170730302473,219,0 +170730302521,219,0 +170730302570,219,0 +170730302618,219,0 +170730302666,219,0 +170730302714,219,0 +170730302762,219,0 +170730302810,219,0 +170730302858,219,0 +170730302905,219,0 +170730302953,219,0 +170730303001,219,0 +170730303051,219,0 +170730303098,219,0 +170730303146,219,0 +170730303194,219,0 +170730303244,219,0 +170730303291,247,0 +170730303341,254,0 +170730303389,222,0 +170730303437,220,0 +170730303485,219,0 +170730303532,220,0 +170730303580,219,0 +170730303628,219,0 +170730303678,219,0 +170730303726,219,0 +170730303774,219,0 +170730303821,220,0 +170730303869,219,0 +170730303917,219,0 +170730303965,219,0 +170730304013,219,0 +170730304061,219,0 +170730304109,219,0 +170730304157,219,0 +170730304205,219,0 +170730304253,219,0 +170730304300,220,0 +170730304348,245,0 +170730304396,258,0 +170730304444,229,0 +170730304492,219,0 +170730304540,219,0 +170730304588,219,0 +170730304636,220,0 +170730304685,220,0 +170730304735,219,0 +170730304782,219,0 +170730304830,219,0 +170730304878,219,0 +170730304926,219,0 +170730304974,219,0 +170730305022,219,0 +170730305070,220,0 +170730305118,219,0 +170730305165,219,0 +170730305213,219,0 +170730305261,220,0 +170730305309,220,0 +170730305357,220,0 +170730305405,249,0 +170730305455,262,0 +170730305503,227,0 +170730305552,219,0 +170730305602,220,0 +170730305650,219,0 +170730305698,219,0 +170730305746,219,0 +170730305794,219,0 +170730305843,219,0 +170730305891,219,0 +170730305941,219,0 +170730305989,219,0 +170730306037,219,0 +170730306085,219,0 +170730306134,219,0 +170730306182,219,0 +170730306232,219,0 +170730306280,219,0 +170730306328,220,0 +170730306376,219,0 +170730306424,221,0 +170730306473,248,0 +170730306521,268,0 +170730306571,223,0 +170730306619,220,0 +170730306668,220,0 +170730306716,220,0 +170730306766,220,0 +170730306814,220,0 +170730306863,219,0 +170730306913,220,0 +170730306961,219,0 +170730307008,220,0 +170730307056,220,0 +170730307106,220,0 +170730307155,219,0 +170730307203,220,0 +170730307251,220,0 +170730307299,219,0 +170730307347,219,0 +170730307397,219,0 +170730307445,219,0 +170730307493,252,0 +170730307542,253,0 +170730307590,225,0 +170730307640,219,0 +170730307688,219,0 +170730307736,220,0 +170730307784,219,0 +170730307833,219,0 +170730307883,219,0 +170730307931,219,0 +170730307979,219,0 +170730308028,219,0 +170730308078,219,0 +170730308127,219,0 +170730308175,219,0 +170730308225,219,0 +170730308273,219,0 +170730308322,219,0 +170730308372,219,0 +170730308420,219,0 +170730308468,219,0 +170730308517,221,0 +170730308566,255,0 +170730308614,270,1 +170730308698,220,0 +170730308746,219,0 +170730308795,219,0 +170730308843,219,0 +170730308891,219,0 +170730308941,219,0 +170730308989,219,0 +170730309037,219,0 +170730309086,219,0 +170730309134,219,0 +170730309182,219,0 +170730309232,218,0 +170730309280,218,0 +170730309328,219,0 +170730309376,219,0 +170730309425,219,0 +170730309475,219,0 +170730309524,220,0 +170730309572,222,0 +170730309620,254,0 +170730309668,271,1 +170730309756,219,0 +170730309804,219,0 +170730309852,219,0 +170730309900,219,0 +170730309948,219,0 +170730309996,219,0 +170730310044,219,0 +170730310093,219,0 +170730310141,219,0 +170730310189,219,0 +170730310237,219,0 +170730310285,219,0 +170730310333,219,0 +170730310383,219,0 +170730310431,219,0 +170730310478,219,0 +170730310528,219,0 +170730310576,219,0 +170730310624,228,0 +170730310672,250,0 +170730310721,233,0 +170730310769,221,0 +170730310817,219,0 +170730310867,219,0 +170730310915,219,0 +170730310964,219,0 +170730311012,219,0 +170730311062,219,0 +170730311110,219,0 +170730311158,219,0 +170730311206,219,0 +170730311255,219,0 +170730311303,219,0 +170730311352,219,0 +170730311400,219,0 +170730311448,219,0 +170730311498,219,0 +170730311546,219,0 +170730311594,219,0 +170730311643,221,0 +170730311691,248,0 +170730311739,249,0 +170730311787,226,0 +170730311837,219,0 +170730311884,219,0 +170730311932,219,0 +170730311980,219,0 +170730312028,219,0 +170730312076,220,0 +170730312124,219,0 +170730312174,219,0 +170730312222,219,0 +170730312270,220,0 +170730312319,219,0 +170730312367,219,0 +170730312417,219,0 +170730312466,219,0 +170730312516,219,0 +170730312565,219,0 +170730312615,219,0 +170730312664,220,0 +170730312714,221,0 +170730312762,249,0 +170730312811,253,0 +170730312859,226,0 +170730312909,220,0 +170730312958,219,0 +170730313008,219,0 +170730313055,219,0 +170730313103,219,0 +170730313153,219,0 +170730313201,219,0 +170730313249,219,0 +170730313298,219,0 +170730313348,219,0 +170730313397,219,0 +170730313445,219,0 +170730313493,219,0 +170730313543,219,0 +170730313591,219,0 +170730313639,219,0 +170730313687,219,0 +170730313735,220,0 +170730313784,256,0 +170730313832,253,0 +170730313880,227,0 +170730313930,220,0 +170730313979,219,0 +170730314027,219,0 +170730314075,219,0 +170730314125,219,0 +170730314173,219,0 +170730314221,218,0 +170730314270,219,0 +170730314318,219,0 +170730314366,219,0 +170730314414,219,0 +170730314462,219,0 +170730314511,219,0 +170730314561,219,0 +170730314609,219,0 +170730314657,220,0 +170730314705,219,0 +170730314753,220,0 +170730314802,220,0 +170730314850,249,0 +170730314898,252,0 +170730314948,225,0 +170730314997,219,0 +170730315046,218,0 +170730315096,219,0 +170730315144,219,0 +170730315194,219,0 +170730315242,218,0 +170730315290,219,0 +170730315339,218,0 +170730315387,218,0 +170730315436,218,0 +170730315484,218,0 +170730315534,218,0 +170730315583,218,0 +170730315631,219,0 +170730315681,218,0 +170730315729,219,0 +170730315777,219,0 +170730315825,219,0 +170730315873,221,0 +170730315921,251,0 +170730315970,232,0 +170730316018,220,0 +170730316068,219,0 +170730316116,219,0 +170730316163,218,0 +170730316211,218,0 +170730316261,218,0 +170730316309,219,0 +170730316358,218,0 +170730316406,218,0 +170730316454,218,0 +170730316504,219,0 +170730316552,218,0 +170730316601,218,0 +170730316649,219,0 +170730316697,218,0 +170730316745,218,0 +170730316793,219,0 +170730316841,218,0 +170730316889,219,0 +170730316937,254,0 +170730316985,257,0 +170730317032,222,0 +170730317080,219,0 +170730317128,218,0 +170730317176,218,0 +170730317224,218,0 +170730317272,218,0 +170730317320,219,0 +170730317368,219,0 +170730317416,218,0 +170730317463,218,0 +170730317511,218,0 +170730317559,218,0 +170730317607,219,0 +170730317657,219,0 +170730317706,219,0 +170730317754,219,0 +170730317802,219,0 +170730317850,219,0 +170730317900,219,0 +170730317948,219,0 +170730317996,249,0 +170730318044,253,0 +170730318091,227,0 +170730318139,219,0 +170730318187,218,0 +170730318237,218,0 +170730318287,219,0 +170730318334,218,0 +170730318382,218,0 +170730318430,218,0 +170730318478,219,0 +170730318526,219,0 +170730318574,219,0 +170730318622,219,0 +170730318670,219,0 +170730318718,218,0 +170730318766,219,0 +170730318814,219,0 +170730318863,218,0 +170730318911,219,0 +170730318960,219,0 +170730319008,220,0 +170730319056,260,0 +170730319106,269,0 +170730319154,227,0 +170730319202,219,0 +170730319250,219,0 +170730319298,219,0 +170730319346,219,0 +170730319395,219,0 +170730319443,219,0 +170730319493,219,0 +170730319542,219,0 +170730319592,219,0 +170730319640,219,0 +170730319688,219,0 +170730319737,219,0 +170730319787,219,0 +170730319836,218,0 +170730319886,219,0 +170730319935,219,0 +170730319983,219,0 +170730320031,219,0 +170730320081,258,0 +170730320130,254,0 +170730320178,221,0 +170730320226,219,0 +170730320274,219,0 +170730320322,219,0 +170730320371,218,0 +170730320421,218,0 +170730320469,219,0 +170730320517,219,0 +170730320565,219,0 +170730320613,219,0 +170730320662,218,0 +170730320710,218,0 +170730320758,219,0 +170730320807,218,0 +170730320857,218,0 +170730320906,218,0 +170730320954,219,0 +170730321002,219,0 +170730321050,219,0 +170730321098,220,0 +170730321148,254,0 +170730321197,255,0 +170730321245,226,0 +170730321293,219,0 +170730321341,219,0 +170730321389,219,0 +170730321438,218,0 +170730321488,219,0 +170730321537,219,0 +170730321585,219,0 +170730321633,219,0 +170730321681,219,0 +170730321729,218,0 +170730321777,219,0 +170730321827,219,0 +170730321875,218,0 +170730321924,219,0 +170730321972,219,0 +170730322020,219,0 +170730322068,219,0 +170730322116,219,0 +170730322164,221,0 +170730322213,249,0 +170730322261,257,0 +170730322309,223,0 +170730322357,219,0 +170730322405,219,0 +170730322453,219,0 +170730322500,219,0 +170730322548,219,0 +170730322596,219,0 +170730322644,219,0 +170730322692,219,0 +170730322741,219,0 +170730322789,219,0 +170730322837,219,0 +170730322885,219,0 +170730322933,219,0 +170730322981,219,0 +170730323030,219,0 +170730323078,219,0 +170730323126,219,0 +170730323174,219,0 +170730323222,239,0 +170730323270,256,0 +170730323319,227,0 +170730323369,220,0 +170730323417,218,0 +170730323465,219,0 +170730323513,219,0 +170730323561,219,0 +170730323609,219,0 +170730323657,219,0 +170730323705,219,0 +170730323752,219,0 +170730323800,219,0 +170730323848,219,0 +170730323896,219,0 +170730323946,219,0 +170730323994,219,0 +170730324042,219,0 +170730324090,219,0 +170730324138,219,0 +170730324187,219,0 +170730324235,220,0 +170730324285,251,0 +170730324333,250,0 +170730324381,228,0 +170730324429,219,0 +170730324478,219,0 +170730324527,219,0 +170730324575,219,0 +170730324625,219,0 +170730324673,219,0 +170730324722,219,0 +170730324772,219,0 +170730324821,219,0 +170730324869,219,0 +170730324917,219,0 +170730324965,219,0 +170730325015,219,0 +170730325064,219,0 +170730325114,219,0 +170730325162,219,0 +170730325210,219,0 +170730325257,219,0 +170730325305,220,0 +170730325353,247,0 +170730325401,265,0 +170730325451,225,0 +170730325499,220,0 +170730325547,219,0 +170730325595,219,0 +170730325642,219,0 +170730325690,219,0 +170730325738,219,0 +170730325786,219,0 +170730325834,219,0 +170730325882,219,0 +170730325930,219,0 +170730325978,219,0 +170730326026,220,0 +170730326073,219,0 +170730326121,219,0 +170730326169,219,0 +170730326217,219,0 +170730326265,219,0 +170730326313,219,0 +170730326361,222,0 +170730326408,255,0 +170730326456,246,0 +170730326506,221,0 +170730326554,219,0 +170730326602,219,0 +170730326650,219,0 +170730326697,219,0 +170730326745,219,0 +170730326795,219,0 +170730326843,219,0 +170730326891,219,0 +170730326938,219,0 +170730326986,219,0 +170730327034,219,0 +170730327084,218,0 +170730327133,219,0 +170730327181,219,0 +170730327229,219,0 +170730327277,219,0 +170730327325,219,0 +170730327372,219,0 +170730327422,243,0 +170730327470,250,0 +170730327518,240,0 +170730327566,221,0 +170730327613,219,0 +170730327661,219,0 +170730327709,219,0 +170730327757,219,0 +170730327805,219,0 +170730327853,219,0 +170730327901,219,0 +170730327949,219,0 +170730327997,219,0 +170730328045,219,0 +170730328092,219,0 +170730328140,220,0 +170730328188,219,0 +170730328236,219,0 +170730328284,219,0 +170730328332,219,0 +170730328380,220,0 +170730328428,219,0 +170730328476,252,0 +170730328524,260,0 +170730328573,226,0 +170730328621,219,0 +170730328669,219,0 +170730328719,219,0 +170730328766,219,0 +170730328814,219,0 +170730328862,219,0 +170730328910,219,0 +170730328958,219,0 +170730329006,219,0 +170730329054,219,0 +170730329101,219,0 +170730329149,220,0 +170730329197,219,0 +170730329245,219,0 +170730329293,220,0 +170730329341,219,0 +170730329389,219,0 +170730329437,219,0 +170730329484,220,0 +170730329532,251,0 +170730329580,259,0 +170730329628,223,0 +170730329676,220,0 +170730329724,219,0 +170730329772,219,0 +170730329821,219,0 +170730329869,219,0 +170730329918,219,0 +170730329966,219,0 +170730330014,219,0 +170730330062,219,0 +170730330110,220,0 +170730330160,219,0 +170730330209,219,0 +170730330257,219,0 +170730330305,220,0 +170730330353,219,0 +170730330403,219,0 +170730330451,219,0 +170730330499,219,0 +170730330546,221,0 +170730330596,248,0 +170730330644,278,1 +170730330726,219,0 +170730330774,219,0 +170730330823,219,0 +170730330873,219,0 +170730330921,219,0 +170730330969,219,0 +170730331018,219,0 +170730331068,219,0 +170730331117,219,0 +170730331165,219,0 +170730331215,219,0 +170730331263,219,0 +170730331312,219,0 +170730331360,219,0 +170730331408,219,0 +170730331457,219,0 +170730331507,219,0 +170730331556,220,0 +170730331604,221,0 +170730331652,249,0 +170730331702,263,0 +170730331751,222,0 +170730331799,219,0 +170730331847,219,0 +170730331895,219,0 +170730331945,219,0 +170730331994,219,0 +170730332042,219,0 +170730332092,219,0 +170730332140,219,0 +170730332188,218,0 +170730332236,219,0 +170730332284,219,0 +170730332332,219,0 +170730332380,218,0 +170730332428,219,0 +170730332477,219,0 +170730332525,219,0 +170730332575,219,0 +170730332624,219,0 +170730332674,222,0 +170730332722,252,0 +170730332770,241,0 +170730332817,221,0 +170730332865,219,0 +170730332913,219,0 +170730332963,220,0 +170730333011,220,0 +170730333060,220,0 +170730333108,219,0 +170730333158,220,0 +170730333206,219,0 +170730333253,219,0 +170730333301,219,0 +170730333351,220,0 +170730333399,219,0 +170730333447,219,0 +170730333496,219,0 +170730333546,220,0 +170730333594,219,0 +170730333642,219,0 +170730333691,221,0 +170730333739,251,0 +170730333787,270,1 +170730333864,220,0 +170730333912,219,0 +170730333960,219,0 +170730334008,219,0 +170730334056,219,0 +170730334105,219,0 +170730334153,218,0 +170730334203,219,0 +170730334252,219,0 +170730334300,219,0 +170730334348,220,0 +170730334398,219,0 +170730334447,219,0 +170730334495,219,0 +170730334545,220,0 +170730334593,219,0 +170730334641,219,0 +170730334689,219,0 +170730334737,220,0 +170730334785,259,0 +170730334834,258,0 +170730334882,227,0 +170730334930,219,0 +170730334980,219,0 +170730335028,219,0 +170730335076,218,0 +170730335123,219,0 +170730335171,219,0 +170730335219,219,0 +170730335269,218,0 +170730335317,218,0 +170730335365,218,0 +170730335414,219,0 +170730335462,218,0 +170730335512,218,0 +170730335560,219,0 +170730335608,219,0 +170730335656,219,0 +170730335703,219,0 +170730335751,219,0 +170730335801,221,0 +170730335850,271,1 +170730335931,226,0 +170730335980,219,0 +170730336028,219,0 +170730336076,219,0 +170730336124,218,0 +170730336172,218,0 +170730336222,218,0 +170730336271,219,0 +170730336319,218,0 +170730336367,218,0 +170730336415,219,0 +170730336463,218,0 +170730336513,219,0 +170730336561,219,0 +170730336610,219,0 +170730336658,219,0 +170730336708,219,0 +170730336755,219,0 +170730336803,219,0 +170730336851,229,0 +170730336901,261,0 +170730336949,242,0 +170730336997,221,0 +170730337046,219,0 +170730337094,219,0 +170730337142,218,0 +170730337190,218,0 +170730337238,219,0 +170730337288,219,0 +170730337337,219,0 +170730337387,219,0 +170730337435,219,0 +170730337484,219,0 +170730337532,219,0 +170730337580,219,0 +170730337630,219,0 +170730337679,218,0 +170730337727,219,0 +170730337775,219,0 +170730337823,219,0 +170730337871,220,0 +170730337921,286,1 +170730337997,236,0 +170730338047,220,0 +170730338096,219,0 +170730338146,219,0 +170730338194,219,0 +170730338242,219,0 +170730338290,218,0 +170730338338,218,0 +170730338387,218,0 +170730338435,219,0 +170730338483,219,0 +170730338531,219,0 +170730338581,218,0 +170730338630,219,0 +170730338678,219,0 +170730338726,219,0 +170730338774,219,0 +170730338822,219,0 +170730338870,218,0 +170730338918,219,0 +170730338966,249,0 +170730339013,258,0 +170730339061,221,0 +170730339109,219,0 +170730339157,218,0 +170730339205,218,0 +170730339253,218,0 +170730339303,218,0 +170730339352,219,0 +170730339400,219,0 +170730339448,218,0 +170730339496,218,0 +170730339544,218,0 +170730339594,218,0 +170730339642,218,0 +170730339691,218,0 +170730339739,218,0 +170730339787,218,0 +170730339835,219,0 +170730339883,218,0 +170730339931,218,0 +170730339980,220,0 +170730340030,251,0 +170730340078,250,0 +170730340127,225,0 +170730340175,219,0 +170730340223,219,0 +170730340271,218,0 +170730340321,218,0 +170730340369,218,0 +170730340417,218,0 +170730340464,218,0 +170730340512,218,0 +170730340562,219,0 +170730340610,218,0 +170730340659,218,0 +170730340709,218,0 +170730340757,218,0 +170730340805,218,0 +170730340853,218,0 +170730340902,218,0 +170730340950,219,0 +170730340998,219,0 +170730341046,227,0 +170730341094,251,0 +170730341142,254,0 +170730341190,220,0 +170730341238,218,0 +170730341286,219,0 +170730341334,218,0 +170730341382,218,0 +170730341431,218,0 +170730341481,218,0 +170730341528,220,0 +170730341576,219,0 +170730341624,219,0 +170730341674,219,0 +170730341723,219,0 +170730341771,219,0 +170730341821,220,0 +170730341870,219,0 +170730341918,220,0 +170730341966,219,0 +170730342014,219,0 +170730342062,220,0 +170730342112,246,0 +170730342161,254,0 +170730342209,222,0 +170730342259,219,0 +170730342308,219,0 +170730342356,219,0 +170730342406,219,0 +170730342454,219,0 +170730342502,219,0 +170730342550,219,0 +170730342599,219,0 +170730342647,218,0 +170730342697,219,0 +170730342745,219,0 +170730342793,219,0 +170730342842,218,0 +170730342890,218,0 +170730342939,219,0 +170730342988,219,0 +170730343035,219,0 +170730343083,219,0 +170730343131,220,0 +170730343179,249,0 +170730343227,272,1 +170730343313,219,0 +170730343363,218,0 +170730343411,218,0 +170730343460,218,0 +170730343510,218,0 +170730343558,218,0 +170730343606,218,0 +170730343654,219,0 +170730343702,218,0 +170730343750,218,0 +170730343799,219,0 +170730343847,218,0 +170730343897,219,0 +170730343945,218,0 +170730343994,218,0 +170730344042,219,0 +170730344090,219,0 +170730344140,219,0 +170730344188,221,0 +170730344235,252,0 +170730344283,266,0 +170730344333,223,0 +170730344381,219,0 +170730344429,219,0 +170730344477,219,0 +170730344525,218,0 +170730344573,219,0 +170730344621,218,0 +170730344669,219,0 +170730344717,219,0 +170730344765,219,0 +170730344813,219,0 +170730344861,219,0 +170730344910,219,0 +170730344958,218,0 +170730345006,218,0 +170730345056,219,0 +170730345105,219,0 +170730345153,219,0 +170730345203,219,0 +170730345252,223,0 +170730345300,249,0 +170730345348,245,0 +170730345398,221,0 +170730345446,219,0 +170730345493,219,0 +170730345543,219,0 +170730345591,219,0 +170730345639,219,0 +170730345686,219,0 +170730345734,219,0 +170730345782,219,0 +170730345830,218,0 +170730345878,219,0 +170730345927,219,0 +170730345975,219,0 +170730346023,219,0 +170730346071,218,0 +170730346119,219,0 +170730346167,219,0 +170730346215,219,0 +170730346263,220,0 +170730346311,267,0 +170730346359,269,0 +170730346408,225,0 +170730346456,220,0 +170730346504,219,0 +170730346554,219,0 +170730346603,219,0 +170730346653,219,0 +170730346701,218,0 +170730346748,218,0 +170730346798,219,0 +170730346846,219,0 +170730346894,219,0 +170730346942,219,0 +170730346990,219,0 +170730347038,219,0 +170730347085,219,0 +170730347133,219,0 +170730347181,219,0 +170730347229,219,0 +170730347277,219,0 +170730347325,220,0 +170730347373,252,0 +170730347422,279,1 +170730347506,219,0 +170730347555,218,0 +170730347605,218,0 +170730347654,218,0 +170730347704,219,0 +170730347752,219,0 +170730347799,219,0 +170730347847,219,0 +170730347895,219,0 +170730347943,219,0 +170730347991,218,0 +170730348039,219,0 +170730348088,219,0 +170730348136,219,0 +170730348184,219,0 +170730348234,218,0 +170730348283,219,0 +170730348331,219,0 +170730348379,220,0 +170730348427,263,0 +170730348477,253,0 +170730348525,224,0 +170730348573,219,0 +170730348621,219,0 +170730348669,218,0 +170730348717,219,0 +170730348765,218,0 +170730348813,219,0 +170730348861,219,0 +170730348910,219,0 +170730348960,219,0 +170730349008,219,0 +170730349057,219,0 +170730349105,219,0 +170730349153,219,0 +170730349203,219,0 +170730349250,219,0 +170730349298,219,0 +170730349346,219,0 +170730349394,219,0 +170730349444,222,0 +170730349492,250,0 +170730349540,254,0 +170730349588,221,0 +170730349635,219,0 +170730349683,219,0 +170730349731,218,0 +170730349779,219,0 +170730349827,219,0 +170730349875,219,0 +170730349923,219,0 +170730349971,219,0 +170730350019,219,0 +170730350067,219,0 +170730350116,219,0 +170730350164,219,0 +170730350214,219,0 +170730350262,219,0 +170730350310,218,0 +170730350359,219,0 +170730350409,219,0 +170730350458,219,0 +170730350508,242,0 +170730350557,255,0 +170730350605,224,0 +170730350653,219,0 +170730350703,219,0 +170730350752,219,0 +170730350800,219,0 +170730350850,219,0 +170730350899,219,0 +170730350947,219,0 +170730350995,219,0 +170730351043,219,0 +170730351092,219,0 +170730351140,219,0 +170730351190,219,0 +170730351238,219,0 +170730351286,219,0 +170730351334,219,0 +170730351382,219,0 +170730351431,219,0 +170730351479,219,0 +170730351527,220,0 +170730351575,249,0 +170730351625,252,0 +170730351672,227,0 +170730351720,219,0 +170730351770,219,0 +170730351818,219,0 +170730351867,218,0 +170730351915,219,0 +170730351963,219,0 +170730352011,219,0 +170730352059,219,0 +170730352107,219,0 +170730352155,218,0 +170730352203,219,0 +170730352251,219,0 +170730352299,219,0 +170730352348,218,0 +170730352396,219,0 +170730352444,219,0 +170730352492,219,0 +170730352540,219,0 +170730352588,220,0 +170730352636,256,0 +170730352684,256,0 +170730352732,224,0 +170730352781,219,0 +170730352829,219,0 +170730352879,219,0 +170730352927,219,0 +170730352976,219,0 +170730353024,218,0 +170730353072,219,0 +170730353120,219,0 +170730353170,218,0 +170730353218,219,0 +170730353267,219,0 +170730353317,219,0 +170730353365,219,0 +170730353413,219,0 +170730353462,219,0 +170730353512,219,0 +170730353559,219,0 +170730353607,220,0 +170730353657,237,0 +170730353705,252,0 +170730353753,223,0 +170730353801,220,0 +170730353849,219,0 +170730353898,219,0 +170730353947,219,0 +170730353994,219,0 +170730354042,219,0 +170730354090,219,0 +170730354140,218,0 +170730354189,219,0 +170730354237,219,0 +170730354287,218,0 +170730354335,219,0 +170730354383,219,0 +170730354431,218,0 +170730354479,219,0 +170730354527,218,0 +170730354575,219,0 +170730354624,219,0 +170730354672,219,0 +170730354722,249,0 +170730354770,254,0 +170730354818,227,0 +170730354867,219,0 +170730354915,219,0 +170730354963,219,0 +170730355011,218,0 +170730355060,218,0 +170730355108,219,0 +170730355156,219,0 +170730355204,219,0 +170730355252,218,0 +170730355300,218,0 +170730355349,218,0 +170730355399,219,0 +170730355447,219,0 +170730355495,218,0 +170730355543,219,0 +170730355591,219,0 +170730355640,218,0 +170730355688,219,0 +170730355736,222,0 +170730355784,259,0 +170730355832,282,1 +170730355916,219,0 +170730355964,219,0 +170730356012,219,0 +170730356059,219,0 +170730356107,219,0 +170730356155,219,0 +170730356203,219,0 +170730356251,219,0 +170730356301,218,0 +170730356350,219,0 +170730356398,218,0 +170730356446,218,0 +170730356494,219,0 +170730356542,219,0 +170730356590,219,0 +170730356637,219,0 +170730356685,219,0 +170730356733,218,0 +170730356783,221,0 +170730356831,252,0 +170730356879,274,1 +170730356959,219,0 +170730357008,219,0 +170730357056,218,0 +170730357106,219,0 +170730357154,219,0 +170730357202,219,0 +170730357252,219,0 +170730357301,218,0 +170730357351,219,0 +170730357399,219,0 +170730357447,218,0 +170730357495,219,0 +170730357543,219,0 +170730357590,219,0 +170730357640,219,0 +170730357689,219,0 +170730357739,219,0 +170730357787,219,0 +170730357835,220,0 +170730357883,253,0 +170730357931,258,0 +170730357979,226,0 +170730358028,219,0 +170730358076,218,0 +170730358126,218,0 +170730358176,218,0 +170730358224,219,0 +170730358273,219,0 +170730358323,219,0 +170730358372,219,0 +170730358422,219,0 +170730358471,218,0 +170730358519,219,0 +170730358567,218,0 +170730358617,219,0 +170730358666,219,0 +170730358714,218,0 +170730358762,219,0 +170730358810,219,0 +170730358858,219,0 +170730358908,253,0 +170730358956,267,0 +170730359004,222,0 +170730359053,219,0 +170730359102,219,0 +170730359150,218,0 +170730359198,219,0 +170730359246,219,0 +170730359296,219,0 +170730359345,218,0 +170730359393,218,0 +170730359441,218,0 +170730359489,219,0 +170730359537,218,0 +170730359585,219,0 +170730359635,218,0 +170730359683,219,0 +170730359730,218,0 +170730359778,218,0 +170730359828,219,0 +170730359876,219,0 +170730359925,220,0 +170730359973,251,0 +170730360023,261,0 diff --git a/laser_value/0207-21.csv b/laser_value/0207-21.csv new file mode 100644 index 0000000..43e10c0 --- /dev/null +++ b/laser_value/0207-21.csv @@ -0,0 +1,7405 @@ +timestamp,laser_value,event +170730360071,225,0 +170730360119,219,0 +170730360169,219,0 +170730360218,218,0 +170730360268,218,0 +170730360317,219,0 +170730360365,219,0 +170730360413,218,0 +170730360461,219,0 +170730360511,219,0 +170730360558,218,0 +170730360608,218,0 +170730360656,219,0 +170730360704,219,0 +170730360752,218,0 +170730360800,218,0 +170730360849,219,0 +170730360897,218,0 +170730360947,219,0 +170730360995,220,0 +170730361043,247,0 +170730361092,273,1 +170730361173,219,0 +170730361223,219,0 +170730361272,219,0 +170730361320,218,0 +170730361370,219,0 +170730361418,218,0 +170730361466,218,0 +170730361514,218,0 +170730361562,218,0 +170730361609,218,0 +170730361657,218,0 +170730361705,219,0 +170730361753,218,0 +170730361801,218,0 +170730361851,218,0 +170730361900,218,0 +170730361948,219,0 +170730361996,219,0 +170730362044,228,0 +170730362093,251,0 +170730362141,240,0 +170730362191,219,0 +170730362240,218,0 +170730362290,218,0 +170730362339,218,0 +170730362387,218,0 +170730362435,218,0 +170730362483,218,0 +170730362533,218,0 +170730362581,218,0 +170730362629,218,0 +170730362677,218,0 +170730362726,218,0 +170730362776,218,0 +170730362824,218,0 +170730362872,218,0 +170730362921,218,0 +170730362971,218,0 +170730363020,218,0 +170730363068,219,0 +170730363116,255,0 +170730363164,261,0 +170730363211,226,0 +170730363259,218,0 +170730363307,218,0 +170730363355,218,0 +170730363403,218,0 +170730363453,218,0 +170730363501,218,0 +170730363549,218,0 +170730363597,218,0 +170730363646,218,0 +170730363694,218,0 +170730363742,218,0 +170730363790,218,0 +170730363838,218,0 +170730363886,218,0 +170730363934,218,0 +170730363983,218,0 +170730364031,218,0 +170730364079,218,0 +170730364129,219,0 +170730364177,251,0 +170730364226,259,0 +170730364274,225,0 +170730364322,218,0 +170730364370,218,0 +170730364420,217,0 +170730364467,218,0 +170730364515,218,0 +170730364565,219,0 +170730364614,218,0 +170730364664,218,0 +170730364713,218,0 +170730364761,218,0 +170730364809,218,0 +170730364857,218,0 +170730364905,218,0 +170730364953,218,0 +170730365001,218,0 +170730365049,218,0 +170730365097,218,0 +170730365145,218,0 +170730365194,221,0 +170730365242,254,0 +170730365290,267,0 +170730365338,221,0 +170730365386,218,0 +170730365435,218,0 +170730365485,218,0 +170730365533,218,0 +170730365581,218,0 +170730365629,218,0 +170730365677,218,0 +170730365726,218,0 +170730365774,218,0 +170730365822,218,0 +170730365870,218,0 +170730365918,218,0 +170730365966,218,0 +170730366014,218,0 +170730366062,218,0 +170730366109,218,0 +170730366157,218,0 +170730366205,219,0 +170730366255,248,0 +170730366304,258,0 +170730366352,224,0 +170730366402,218,0 +170730366451,218,0 +170730366499,218,0 +170730366549,218,0 +170730366597,218,0 +170730366645,219,0 +170730366692,218,0 +170730366740,218,0 +170730366788,218,0 +170730366836,218,0 +170730366886,218,0 +170730366935,218,0 +170730366983,218,0 +170730367033,218,0 +170730367082,218,0 +170730367130,218,0 +170730367178,218,0 +170730367228,218,0 +170730367276,219,0 +170730367325,251,0 +170730367373,281,1 +170730367458,219,0 +170730367506,218,0 +170730367555,218,0 +170730367603,217,0 +170730367652,218,0 +170730367700,218,0 +170730367748,218,0 +170730367796,218,0 +170730367846,218,0 +170730367894,218,0 +170730367942,218,0 +170730367991,218,0 +170730368039,218,0 +170730368087,218,0 +170730368135,218,0 +170730368183,218,0 +170730368233,218,0 +170730368280,219,0 +170730368328,220,0 +170730368378,266,0 +170730368427,267,0 +170730368476,224,0 +170730368525,219,0 +170730368573,218,0 +170730368621,218,0 +170730368669,218,0 +170730368717,219,0 +170730368765,218,0 +170730368813,218,0 +170730368862,218,0 +170730368910,219,0 +170730368958,218,0 +170730369006,218,0 +170730369054,218,0 +170730369102,218,0 +170730369152,218,0 +170730369200,218,0 +170730369248,218,0 +170730369296,218,0 +170730369345,219,0 +170730369395,223,0 +170730369443,263,0 +170730369490,251,0 +170730369538,220,0 +170730369588,219,0 +170730369636,218,0 +170730369685,218,0 +170730369733,219,0 +170730369781,218,0 +170730369829,219,0 +170730369879,218,0 +170730369927,218,0 +170730369975,219,0 +170730370025,218,0 +170730370074,219,0 +170730370122,218,0 +170730370172,219,0 +170730370219,218,0 +170730370267,219,0 +170730370315,218,0 +170730370363,218,0 +170730370411,219,0 +170730370459,256,0 +170730370507,259,0 +170730370555,228,0 +170730370603,219,0 +170730370652,218,0 +170730370700,218,0 +170730370748,218,0 +170730370796,218,0 +170730370846,218,0 +170730370895,218,0 +170730370943,218,0 +170730370993,219,0 +170730371041,218,0 +170730371090,219,0 +170730371140,219,0 +170730371188,218,0 +170730371236,218,0 +170730371285,218,0 +170730371333,218,0 +170730371381,218,0 +170730371429,219,0 +170730371477,220,0 +170730371525,263,0 +170730371575,259,0 +170730371624,227,0 +170730371672,219,0 +170730371720,218,0 +170730371768,218,0 +170730371816,219,0 +170730371866,218,0 +170730371915,219,0 +170730371963,219,0 +170730372013,219,0 +170730372061,218,0 +170730372110,218,0 +170730372158,218,0 +170730372206,219,0 +170730372256,219,0 +170730372305,219,0 +170730372353,218,0 +170730372403,219,0 +170730372451,219,0 +170730372498,219,0 +170730372548,227,0 +170730372596,249,0 +170730372644,224,0 +170730372693,219,0 +170730372743,219,0 +170730372792,218,0 +170730372840,219,0 +170730372888,219,0 +170730372936,218,0 +170730372984,218,0 +170730373032,218,0 +170730373080,219,0 +170730373128,218,0 +170730373176,219,0 +170730373224,219,0 +170730373272,219,0 +170730373320,219,0 +170730373368,219,0 +170730373416,219,0 +170730373464,218,0 +170730373513,219,0 +170730373563,219,0 +170730373612,254,0 +170730373662,259,0 +170730373711,227,0 +170730373761,219,0 +170730373809,219,0 +170730373858,219,0 +170730373908,218,0 +170730373956,219,0 +170730374005,219,0 +170730374053,219,0 +170730374101,219,0 +170730374149,219,0 +170730374197,219,0 +170730374245,219,0 +170730374293,218,0 +170730374341,219,0 +170730374389,219,0 +170730374438,219,0 +170730374486,219,0 +170730374534,219,0 +170730374584,219,0 +170730374632,221,0 +170730374681,252,0 +170730374729,279,1 +170730374817,219,0 +170730374865,219,0 +170730374914,219,0 +170730374962,219,0 +170730375010,219,0 +170730375060,219,0 +170730375108,219,0 +170730375157,219,0 +170730375205,219,0 +170730375253,219,0 +170730375303,219,0 +170730375351,219,0 +170730375399,219,0 +170730375448,219,0 +170730375496,219,0 +170730375544,219,0 +170730375593,219,0 +170730375641,219,0 +170730375689,221,0 +170730375737,256,0 +170730375787,254,0 +170730375836,220,0 +170730375884,219,0 +170730375932,219,0 +170730375980,219,0 +170730376028,218,0 +170730376078,219,0 +170730376127,219,0 +170730376177,219,0 +170730376225,219,0 +170730376273,219,0 +170730376321,219,0 +170730376369,219,0 +170730376417,219,0 +170730376465,219,0 +170730376512,219,0 +170730376560,219,0 +170730376610,219,0 +170730376658,219,0 +170730376707,220,0 +170730376755,256,0 +170730376803,259,0 +170730376851,228,0 +170730376901,219,0 +170730376948,219,0 +170730376996,219,0 +170730377046,219,0 +170730377094,219,0 +170730377143,218,0 +170730377191,219,0 +170730377239,219,0 +170730377287,219,0 +170730377335,219,0 +170730377383,218,0 +170730377431,218,0 +170730377479,219,0 +170730377527,218,0 +170730377575,219,0 +170730377623,219,0 +170730377672,219,0 +170730377720,219,0 +170730377768,220,0 +170730377817,250,0 +170730377867,257,0 +170730377915,225,0 +170730377963,219,0 +170730378011,219,0 +170730378059,219,0 +170730378107,218,0 +170730378154,219,0 +170730378202,219,0 +170730378250,218,0 +170730378300,218,0 +170730378347,218,0 +170730378395,218,0 +170730378445,218,0 +170730378493,218,0 +170730378541,218,0 +170730378588,218,0 +170730378636,219,0 +170730378684,219,0 +170730378734,219,0 +170730378782,219,0 +170730378831,220,0 +170730378881,270,1 +170730378963,227,0 +170730379010,219,0 +170730379058,219,0 +170730379106,218,0 +170730379154,218,0 +170730379202,219,0 +170730379250,218,0 +170730379298,218,0 +170730379346,218,0 +170730379394,218,0 +170730379442,219,0 +170730379491,218,0 +170730379539,218,0 +170730379589,219,0 +170730379637,218,0 +170730379685,218,0 +170730379732,219,0 +170730379780,218,0 +170730379830,219,0 +170730379878,220,0 +170730379926,247,0 +170730379975,272,1 +170730380061,219,0 +170730380111,219,0 +170730380159,219,0 +170730380207,219,0 +170730380255,219,0 +170730380304,219,0 +170730380352,219,0 +170730380400,219,0 +170730380448,219,0 +170730380496,218,0 +170730380544,219,0 +170730380592,219,0 +170730380640,219,0 +170730380688,219,0 +170730380736,219,0 +170730380785,219,0 +170730380833,219,0 +170730380881,219,0 +170730380929,221,0 +170730380977,250,0 +170730381026,276,1 +170730381108,219,0 +170730381156,219,0 +170730381204,219,0 +170730381252,219,0 +170730381300,219,0 +170730381348,219,0 +170730381396,218,0 +170730381444,219,0 +170730381494,219,0 +170730381543,219,0 +170730381593,218,0 +170730381640,219,0 +170730381690,218,0 +170730381738,219,0 +170730381787,219,0 +170730381837,219,0 +170730381885,219,0 +170730381934,219,0 +170730381984,221,0 +170730382032,260,0 +170730382080,245,0 +170730382128,220,0 +170730382176,218,0 +170730382224,218,0 +170730382273,219,0 +170730382323,218,0 +170730382371,218,0 +170730382420,218,0 +170730382468,218,0 +170730382517,218,0 +170730382567,218,0 +170730382616,219,0 +170730382666,218,0 +170730382714,218,0 +170730382762,218,0 +170730382810,218,0 +170730382858,218,0 +170730382907,218,0 +170730382955,218,0 +170730383005,219,0 +170730383053,251,0 +170730383101,257,0 +170730383150,228,0 +170730383198,219,0 +170730383248,219,0 +170730383297,219,0 +170730383345,219,0 +170730383393,219,0 +170730383443,219,0 +170730383491,219,0 +170730383539,219,0 +170730383587,219,0 +170730383635,219,0 +170730383683,219,0 +170730383731,219,0 +170730383779,219,0 +170730383827,219,0 +170730383876,218,0 +170730383926,219,0 +170730383975,218,0 +170730384023,220,0 +170730384071,221,0 +170730384121,251,0 +170730384169,272,1 +170730384251,220,0 +170730384299,219,0 +170730384347,219,0 +170730384395,219,0 +170730384445,219,0 +170730384493,219,0 +170730384542,219,0 +170730384590,219,0 +170730384638,219,0 +170730384688,219,0 +170730384736,219,0 +170730384785,219,0 +170730384833,219,0 +170730384883,219,0 +170730384931,219,0 +170730384978,219,0 +170730385026,219,0 +170730385076,219,0 +170730385124,223,0 +170730385173,251,0 +170730385221,238,0 +170730385271,220,0 +170730385319,219,0 +170730385367,219,0 +170730385415,219,0 +170730385463,219,0 +170730385511,219,0 +170730385560,219,0 +170730385608,219,0 +170730385656,219,0 +170730385706,219,0 +170730385754,219,0 +170730385802,218,0 +170730385850,219,0 +170730385898,219,0 +170730385947,219,0 +170730385995,219,0 +170730386043,219,0 +170730386091,219,0 +170730386139,219,0 +170730386187,223,0 +170730386236,248,0 +170730386284,239,0 +170730386332,221,0 +170730386380,219,0 +170730386428,219,0 +170730386478,219,0 +170730386526,219,0 +170730386575,219,0 +170730386623,219,0 +170730386673,219,0 +170730386721,218,0 +170730386769,219,0 +170730386817,219,0 +170730386865,219,0 +170730386913,219,0 +170730386961,219,0 +170730387010,218,0 +170730387058,219,0 +170730387108,220,0 +170730387157,219,0 +170730387207,220,0 +170730387256,252,0 +170730387304,258,0 +170730387352,228,0 +170730387400,219,0 +170730387450,219,0 +170730387498,219,0 +170730387545,219,0 +170730387595,219,0 +170730387643,219,0 +170730387691,219,0 +170730387738,219,0 +170730387786,219,0 +170730387834,219,0 +170730387882,219,0 +170730387932,219,0 +170730387980,219,0 +170730388029,219,0 +170730388077,219,0 +170730388125,219,0 +170730388173,219,0 +170730388221,219,0 +170730388270,220,0 +170730388318,245,0 +170730388366,264,0 +170730388416,222,0 +170730388465,219,0 +170730388515,220,0 +170730388563,219,0 +170730388612,219,0 +170730388660,220,0 +170730388708,219,0 +170730388756,219,0 +170730388806,219,0 +170730388855,219,0 +170730388903,219,0 +170730388951,219,0 +170730388999,218,0 +170730389047,219,0 +170730389095,219,0 +170730389143,220,0 +170730389191,219,0 +170730389239,219,0 +170730389287,220,0 +170730389335,225,0 +170730389383,253,0 +170730389431,228,0 +170730389479,221,0 +170730389528,219,0 +170730389576,219,0 +170730389626,219,0 +170730389675,219,0 +170730389723,219,0 +170730389773,219,0 +170730389821,219,0 +170730389869,219,0 +170730389918,219,0 +170730389968,219,0 +170730390017,219,0 +170730390065,219,0 +170730390113,219,0 +170730390163,219,0 +170730390211,219,0 +170730390259,219,0 +170730390307,219,0 +170730390355,220,0 +170730390403,254,0 +170730390452,260,0 +170730390500,227,0 +170730390548,219,0 +170730390596,219,0 +170730390644,218,0 +170730390692,218,0 +170730390739,218,0 +170730390787,218,0 +170730390835,218,0 +170730390883,218,0 +170730390931,219,0 +170730390979,219,0 +170730391027,218,0 +170730391075,218,0 +170730391123,219,0 +170730391170,218,0 +170730391218,219,0 +170730391266,218,0 +170730391316,219,0 +170730391364,219,0 +170730391412,220,0 +170730391460,270,1 +170730391541,228,0 +170730391589,219,0 +170730391637,219,0 +170730391685,219,0 +170730391733,219,0 +170730391783,219,0 +170730391832,219,0 +170730391882,219,0 +170730391930,219,0 +170730391978,219,0 +170730392026,219,0 +170730392073,219,0 +170730392123,219,0 +170730392171,219,0 +170730392219,219,0 +170730392267,219,0 +170730392315,219,0 +170730392363,219,0 +170730392411,219,0 +170730392458,220,0 +170730392508,248,0 +170730392556,273,1 +170730392638,219,0 +170730392686,219,0 +170730392734,219,0 +170730392782,218,0 +170730392830,219,0 +170730392878,218,0 +170730392926,218,0 +170730392975,219,0 +170730393023,219,0 +170730393071,218,0 +170730393120,218,0 +170730393170,218,0 +170730393219,218,0 +170730393269,219,0 +170730393318,219,0 +170730393366,219,0 +170730393414,218,0 +170730393464,219,0 +170730393512,220,0 +170730393561,249,0 +170730393611,262,0 +170730393660,224,0 +170730393708,219,0 +170730393756,219,0 +170730393806,219,0 +170730393854,218,0 +170730393902,218,0 +170730393951,219,0 +170730393999,219,0 +170730394047,219,0 +170730394097,218,0 +170730394146,219,0 +170730394194,219,0 +170730394242,218,0 +170730394292,219,0 +170730394341,218,0 +170730394391,219,0 +170730394440,218,0 +170730394488,218,0 +170730394536,219,0 +170730394586,237,0 +170730394634,253,0 +170730394683,222,0 +170730394733,219,0 +170730394781,219,0 +170730394830,219,0 +170730394880,218,0 +170730394928,219,0 +170730394977,219,0 +170730395027,219,0 +170730395075,218,0 +170730395124,219,0 +170730395174,218,0 +170730395222,219,0 +170730395270,219,0 +170730395318,219,0 +170730395365,218,0 +170730395413,219,0 +170730395461,218,0 +170730395511,219,0 +170730395561,219,0 +170730395609,220,0 +170730395658,247,0 +170730395708,263,0 +170730395755,226,0 +170730395803,219,0 +170730395851,218,0 +170730395899,219,0 +170730395947,218,0 +170730395995,219,0 +170730396045,219,0 +170730396093,219,0 +170730396142,219,0 +170730396190,219,0 +170730396238,219,0 +170730396286,218,0 +170730396334,219,0 +170730396384,218,0 +170730396433,219,0 +170730396483,219,0 +170730396531,219,0 +170730396580,219,0 +170730396630,219,0 +170730396678,222,0 +170730396727,259,0 +170730396777,264,0 +170730396825,221,0 +170730396873,219,0 +170730396922,219,0 +170730396972,219,0 +170730397020,219,0 +170730397069,219,0 +170730397117,219,0 +170730397165,219,0 +170730397215,219,0 +170730397263,219,0 +170730397312,220,0 +170730397362,220,0 +170730397410,218,0 +170730397459,219,0 +170730397507,219,0 +170730397557,219,0 +170730397604,219,0 +170730397652,219,0 +170730397702,220,0 +170730397751,247,0 +170730397799,254,0 +170730397847,227,0 +170730397897,219,0 +170730397945,219,0 +170730397993,219,0 +170730398041,219,0 +170730398090,219,0 +170730398138,219,0 +170730398188,219,0 +170730398237,219,0 +170730398285,219,0 +170730398333,219,0 +170730398382,219,0 +170730398430,219,0 +170730398480,218,0 +170730398530,219,0 +170730398579,219,0 +170730398627,219,0 +170730398675,219,0 +170730398723,219,0 +170730398773,220,0 +170730398820,249,0 +170730398868,272,1 +170730398949,219,0 +170730398999,219,0 +170730399047,219,0 +170730399096,219,0 +170730399146,219,0 +170730399195,219,0 +170730399243,219,0 +170730399291,219,0 +170730399339,219,0 +170730399389,219,0 +170730399437,219,0 +170730399485,219,0 +170730399533,219,0 +170730399581,219,0 +170730399629,219,0 +170730399677,219,0 +170730399724,219,0 +170730399774,219,0 +170730399822,221,0 +170730399870,253,0 +170730399919,264,0 +170730399969,221,0 +170730400019,219,0 +170730400067,219,0 +170730400114,218,0 +170730400162,219,0 +170730400210,219,0 +170730400258,219,0 +170730400306,219,0 +170730400354,218,0 +170730400404,219,0 +170730400453,219,0 +170730400501,219,0 +170730400551,219,0 +170730400599,218,0 +170730400648,218,0 +170730400696,219,0 +170730400744,219,0 +170730400792,218,0 +170730400840,219,0 +170730400888,230,0 +170730400936,264,0 +170730400985,224,0 +170730401033,219,0 +170730401083,219,0 +170730401132,219,0 +170730401180,220,0 +170730401228,219,0 +170730401278,219,0 +170730401326,218,0 +170730401374,219,0 +170730401423,219,0 +170730401473,219,0 +170730401522,219,0 +170730401570,219,0 +170730401619,219,0 +170730401669,219,0 +170730401717,219,0 +170730401765,219,0 +170730401814,218,0 +170730401862,219,0 +170730401910,220,0 +170730401958,251,0 +170730402008,257,0 +170730402057,227,0 +170730402107,219,0 +170730402156,219,0 +170730402206,218,0 +170730402253,219,0 +170730402303,219,0 +170730402351,219,0 +170730402399,219,0 +170730402448,219,0 +170730402498,219,0 +170730402547,219,0 +170730402595,219,0 +170730402645,219,0 +170730402693,219,0 +170730402740,219,0 +170730402790,219,0 +170730402838,219,0 +170730402887,219,0 +170730402937,219,0 +170730402985,225,0 +170730403033,260,0 +170730403081,242,0 +170730403130,219,0 +170730403178,218,0 +170730403226,218,0 +170730403274,218,0 +170730403322,218,0 +170730403371,218,0 +170730403421,219,0 +170730403470,218,0 +170730403518,218,0 +170730403568,218,0 +170730403616,218,0 +170730403665,218,0 +170730403713,218,0 +170730403761,218,0 +170730403809,218,0 +170730403857,218,0 +170730403905,219,0 +170730403953,218,0 +170730404003,219,0 +170730404052,253,0 +170730404102,280,1 +170730404190,219,0 +170730404240,218,0 +170730404288,218,0 +170730404336,218,0 +170730404384,218,0 +170730404433,218,0 +170730404481,218,0 +170730404529,219,0 +170730404578,218,0 +170730404628,218,0 +170730404677,219,0 +170730404725,219,0 +170730404773,218,0 +170730404821,219,0 +170730404871,219,0 +170730404921,218,0 +170730404970,218,0 +170730405020,218,0 +170730405067,219,0 +170730405115,251,0 +170730405163,264,0 +170730405211,227,0 +170730405259,219,0 +170730405307,218,0 +170730405355,219,0 +170730405403,219,0 +170730405451,219,0 +170730405498,219,0 +170730405546,219,0 +170730405594,218,0 +170730405642,219,0 +170730405692,219,0 +170730405740,219,0 +170730405787,218,0 +170730405835,219,0 +170730405883,218,0 +170730405933,219,0 +170730405982,219,0 +170730406030,218,0 +170730406080,219,0 +170730406129,229,0 +170730406177,265,0 +170730406227,239,0 +170730406276,219,0 +170730406324,219,0 +170730406372,218,0 +170730406422,218,0 +170730406471,218,0 +170730406521,218,0 +170730406568,218,0 +170730406616,218,0 +170730406666,218,0 +170730406714,218,0 +170730406762,218,0 +170730406810,218,0 +170730406859,218,0 +170730406909,218,0 +170730406957,218,0 +170730407006,219,0 +170730407054,219,0 +170730407102,218,0 +170730407150,219,0 +170730407198,260,0 +170730407246,266,0 +170730407294,227,0 +170730407343,218,0 +170730407393,219,0 +170730407442,219,0 +170730407492,218,0 +170730407540,218,0 +170730407588,218,0 +170730407636,218,0 +170730407684,218,0 +170730407732,219,0 +170730407780,218,0 +170730407829,218,0 +170730407877,218,0 +170730407925,218,0 +170730407973,219,0 +170730408022,218,0 +170730408070,218,0 +170730408120,218,0 +170730408168,219,0 +170730408216,219,0 +170730408264,251,0 +170730408312,256,0 +170730408360,226,0 +170730408409,218,0 +170730408457,219,0 +170730408505,218,0 +170730408553,218,0 +170730408601,218,0 +170730408649,219,0 +170730408699,218,0 +170730408748,218,0 +170730408796,219,0 +170730408844,218,0 +170730408892,218,0 +170730408940,218,0 +170730408988,218,0 +170730409036,218,0 +170730409084,218,0 +170730409132,218,0 +170730409180,218,0 +170730409228,219,0 +170730409277,220,0 +170730409325,255,0 +170730409373,259,0 +170730409421,222,0 +170730409471,219,0 +170730409520,218,0 +170730409568,218,0 +170730409616,218,0 +170730409664,218,0 +170730409713,218,0 +170730409763,218,0 +170730409812,218,0 +170730409860,218,0 +170730409908,218,0 +170730409958,218,0 +170730410006,218,0 +170730410054,218,0 +170730410101,218,0 +170730410151,218,0 +170730410200,218,0 +170730410248,218,0 +170730410296,218,0 +170730410346,256,0 +170730410394,256,0 +170730410442,226,0 +170730410490,218,0 +170730410539,218,0 +170730410587,218,0 +170730410635,218,0 +170730410683,218,0 +170730410731,218,0 +170730410781,218,0 +170730410829,218,0 +170730410876,218,0 +170730410924,218,0 +170730410972,218,0 +170730411020,218,0 +170730411068,218,0 +170730411116,218,0 +170730411164,218,0 +170730411214,218,0 +170730411263,218,0 +170730411313,218,0 +170730411361,218,0 +170730411410,259,0 +170730411458,269,0 +170730411508,228,0 +170730411556,219,0 +170730411605,218,0 +170730411653,218,0 +170730411703,218,0 +170730411751,218,0 +170730411800,219,0 +170730411848,218,0 +170730411897,218,0 +170730411945,218,0 +170730411993,218,0 +170730412041,218,0 +170730412089,218,0 +170730412139,218,0 +170730412187,218,0 +170730412235,218,0 +170730412283,218,0 +170730412331,218,0 +170730412379,218,0 +170730412427,220,0 +170730412474,268,0 +170730412522,262,0 +170730412570,222,0 +170730412618,218,0 +170730412668,218,0 +170730412716,218,0 +170730412764,218,0 +170730412813,218,0 +170730412861,219,0 +170730412911,218,0 +170730412959,218,0 +170730413008,218,0 +170730413058,218,0 +170730413106,218,0 +170730413155,218,0 +170730413205,218,0 +170730413254,218,0 +170730413304,218,0 +170730413353,218,0 +170730413403,218,0 +170730413451,219,0 +170730413499,251,0 +170730413548,251,0 +170730413596,226,0 +170730413644,219,0 +170730413692,218,0 +170730413740,219,0 +170730413788,218,0 +170730413838,218,0 +170730413887,218,0 +170730413935,218,0 +170730413984,218,0 +170730414032,218,0 +170730414082,219,0 +170730414130,218,0 +170730414178,218,0 +170730414226,218,0 +170730414275,218,0 +170730414325,218,0 +170730414373,218,0 +170730414421,218,0 +170730414469,218,0 +170730414517,220,0 +170730414565,245,0 +170730414613,256,0 +170730414661,223,0 +170730414709,218,0 +170730414758,218,0 +170730414808,218,0 +170730414856,218,0 +170730414904,218,0 +170730414952,218,0 +170730415001,218,0 +170730415051,218,0 +170730415099,218,0 +170730415147,217,0 +170730415196,218,0 +170730415244,218,0 +170730415292,218,0 +170730415342,217,0 +170730415390,218,0 +170730415438,218,0 +170730415487,218,0 +170730415535,218,0 +170730415583,220,0 +170730415631,248,0 +170730415680,256,0 +170730415728,219,0 +170730415778,218,0 +170730415827,217,0 +170730415877,218,0 +170730415925,218,0 +170730415974,218,0 +170730416022,217,0 +170730416070,218,0 +170730416118,218,0 +170730416166,218,0 +170730416214,218,0 +170730416262,218,0 +170730416312,218,0 +170730416360,218,0 +170730416408,218,0 +170730416455,218,0 +170730416505,218,0 +170730416553,218,0 +170730416602,218,0 +170730416650,252,0 +170730416700,249,0 +170730416748,226,0 +170730416798,218,0 +170730416845,218,0 +170730416895,218,0 +170730416944,218,0 +170730416992,218,0 +170730417042,218,0 +170730417090,218,0 +170730417138,218,0 +170730417186,218,0 +170730417235,218,0 +170730417283,218,0 +170730417333,218,0 +170730417382,218,0 +170730417430,218,0 +170730417478,218,0 +170730417528,218,0 +170730417577,218,0 +170730417625,218,0 +170730417675,219,0 +170730417724,246,0 +170730417774,261,0 +170730417822,222,0 +170730417870,219,0 +170730417917,218,0 +170730417967,218,0 +170730418016,218,0 +170730418064,218,0 +170730418112,218,0 +170730418162,218,0 +170730418210,219,0 +170730418258,218,0 +170730418306,218,0 +170730418354,218,0 +170730418402,218,0 +170730418451,219,0 +170730418501,218,0 +170730418549,219,0 +170730418597,219,0 +170730418645,218,0 +170730418693,219,0 +170730418742,248,0 +170730418792,252,0 +170730418840,220,0 +170730418889,219,0 +170730418937,219,0 +170730418986,218,0 +170730419034,218,0 +170730419084,219,0 +170730419132,218,0 +170730419180,219,0 +170730419228,219,0 +170730419277,219,0 +170730419325,219,0 +170730419375,219,0 +170730419423,219,0 +170730419472,218,0 +170730419520,219,0 +170730419568,219,0 +170730419618,219,0 +170730419667,219,0 +170730419715,219,0 +170730419765,220,0 +170730419814,261,0 +170730419862,259,0 +170730419912,225,0 +170730419960,219,0 +170730420008,219,0 +170730420055,219,0 +170730420103,219,0 +170730420151,219,0 +170730420199,219,0 +170730420249,219,0 +170730420297,218,0 +170730420345,219,0 +170730420394,218,0 +170730420442,218,0 +170730420492,219,0 +170730420540,219,0 +170730420589,218,0 +170730420637,219,0 +170730420685,219,0 +170730420735,219,0 +170730420782,219,0 +170730420830,222,0 +170730420880,247,0 +170730420928,251,0 +170730420977,221,0 +170730421025,219,0 +170730421075,218,0 +170730421123,218,0 +170730421171,218,0 +170730421219,218,0 +170730421267,218,0 +170730421315,219,0 +170730421364,219,0 +170730421412,218,0 +170730421460,219,0 +170730421508,218,0 +170730421558,219,0 +170730421606,219,0 +170730421655,219,0 +170730421705,218,0 +170730421753,219,0 +170730421801,218,0 +170730421849,220,0 +170730421898,257,0 +170730421946,248,0 +170730421996,228,0 +170730422045,219,0 +170730422093,219,0 +170730422142,219,0 +170730422192,219,0 +170730422241,218,0 +170730422291,219,0 +170730422341,218,0 +170730422388,219,0 +170730422438,219,0 +170730422486,219,0 +170730422536,219,0 +170730422584,219,0 +170730422632,219,0 +170730422679,219,0 +170730422727,218,0 +170730422775,219,0 +170730422823,219,0 +170730422871,219,0 +170730422921,221,0 +170730422969,253,0 +170730423017,260,0 +170730423066,223,0 +170730423114,219,0 +170730423164,219,0 +170730423212,219,0 +170730423261,219,0 +170730423309,219,0 +170730423357,219,0 +170730423405,219,0 +170730423453,219,0 +170730423501,218,0 +170730423550,219,0 +170730423598,219,0 +170730423648,219,0 +170730423697,219,0 +170730423745,219,0 +170730423795,218,0 +170730423843,218,0 +170730423892,219,0 +170730423940,219,0 +170730423988,223,0 +170730424036,255,0 +170730424084,237,0 +170730424132,220,0 +170730424180,219,0 +170730424230,219,0 +170730424279,219,0 +170730424329,218,0 +170730424377,219,0 +170730424425,219,0 +170730424473,219,0 +170730424521,219,0 +170730424569,219,0 +170730424617,218,0 +170730424665,218,0 +170730424714,219,0 +170730424764,218,0 +170730424813,219,0 +170730424861,218,0 +170730424909,219,0 +170730424957,219,0 +170730425005,219,0 +170730425053,251,0 +170730425103,250,0 +170730425150,227,0 +170730425198,219,0 +170730425248,218,0 +170730425296,219,0 +170730425344,219,0 +170730425392,218,0 +170730425440,219,0 +170730425488,219,0 +170730425537,219,0 +170730425585,218,0 +170730425633,219,0 +170730425681,219,0 +170730425729,218,0 +170730425778,219,0 +170730425826,219,0 +170730425876,218,0 +170730425924,219,0 +170730425973,219,0 +170730426021,219,0 +170730426071,220,0 +170730426120,253,0 +170730426170,255,0 +170730426220,223,0 +170730426269,219,0 +170730426317,219,0 +170730426367,218,0 +170730426416,218,0 +170730426464,219,0 +170730426512,219,0 +170730426560,219,0 +170730426610,219,0 +170730426658,218,0 +170730426707,219,0 +170730426757,219,0 +170730426805,219,0 +170730426853,219,0 +170730426900,219,0 +170730426950,219,0 +170730427000,218,0 +170730427047,219,0 +170730427097,219,0 +170730427147,244,0 +170730427194,262,0 +170730427242,221,0 +170730427290,219,0 +170730427338,219,0 +170730427388,219,0 +170730427438,219,0 +170730427485,218,0 +170730427535,218,0 +170730427585,218,0 +170730427634,219,0 +170730427682,218,0 +170730427732,218,0 +170730427779,219,0 +170730427829,219,0 +170730427877,219,0 +170730427927,219,0 +170730427974,219,0 +170730428024,219,0 +170730428072,219,0 +170730428121,219,0 +170730428169,221,0 +170730428217,245,0 +170730428265,261,0 +170730428315,223,0 +170730428363,219,0 +170730428411,219,0 +170730428459,219,0 +170730428507,218,0 +170730428555,218,0 +170730428603,219,0 +170730428652,218,0 +170730428700,219,0 +170730428748,218,0 +170730428796,218,0 +170730428844,218,0 +170730428892,218,0 +170730428940,218,0 +170730428988,219,0 +170730429036,218,0 +170730429084,218,0 +170730429133,218,0 +170730429183,219,0 +170730429232,240,0 +170730429282,249,0 +170730429330,224,0 +170730429379,219,0 +170730429427,219,0 +170730429475,218,0 +170730429523,219,0 +170730429571,219,0 +170730429621,218,0 +170730429670,218,0 +170730429718,219,0 +170730429766,219,0 +170730429814,219,0 +170730429862,219,0 +170730429910,219,0 +170730429958,219,0 +170730430006,219,0 +170730430054,219,0 +170730430103,219,0 +170730430151,219,0 +170730430201,219,0 +170730430249,219,0 +170730430297,244,0 +170730430345,256,0 +170730430393,222,0 +170730430440,220,0 +170730430488,219,0 +170730430536,219,0 +170730430584,219,0 +170730430634,219,0 +170730430682,219,0 +170730430730,219,0 +170730430778,219,0 +170730430826,219,0 +170730430874,219,0 +170730430922,219,0 +170730430970,219,0 +170730431019,219,0 +170730431069,219,0 +170730431117,219,0 +170730431166,219,0 +170730431216,219,0 +170730431264,219,0 +170730431312,221,0 +170730431359,250,0 +170730431407,265,0 +170730431455,226,0 +170730431503,219,0 +170730431551,219,0 +170730431599,219,0 +170730431649,219,0 +170730431697,219,0 +170730431745,219,0 +170730431793,219,0 +170730431841,219,0 +170730431889,219,0 +170730431937,219,0 +170730431985,219,0 +170730432033,219,0 +170730432081,218,0 +170730432130,219,0 +170730432178,219,0 +170730432226,219,0 +170730432274,219,0 +170730432322,219,0 +170730432370,221,0 +170730432420,263,0 +170730432468,257,0 +170730432515,221,0 +170730432565,219,0 +170730432614,219,0 +170730432662,219,0 +170730432710,219,0 +170730432760,219,0 +170730432809,219,0 +170730432857,218,0 +170730432905,219,0 +170730432955,219,0 +170730433003,219,0 +170730433051,219,0 +170730433099,219,0 +170730433148,219,0 +170730433198,219,0 +170730433246,219,0 +170730433293,218,0 +170730433341,219,0 +170730433389,219,0 +170730433439,241,0 +170730433487,281,1 +170730433573,222,0 +170730433621,219,0 +170730433669,219,0 +170730433717,219,0 +170730433766,219,0 +170730433814,219,0 +170730433862,219,0 +170730433910,219,0 +170730433958,219,0 +170730434006,219,0 +170730434054,218,0 +170730434103,219,0 +170730434151,219,0 +170730434199,219,0 +170730434249,219,0 +170730434297,219,0 +170730434345,218,0 +170730434394,219,0 +170730434444,220,0 +170730434492,247,0 +170730434540,258,0 +170730434588,225,0 +170730434636,219,0 +170730434684,219,0 +170730434732,218,0 +170730434781,219,0 +170730434829,219,0 +170730434877,219,0 +170730434925,218,0 +170730434973,219,0 +170730435021,218,0 +170730435069,219,0 +170730435117,219,0 +170730435164,219,0 +170730435214,219,0 +170730435262,218,0 +170730435310,218,0 +170730435359,218,0 +170730435407,219,0 +170730435455,219,0 +170730435505,220,0 +170730435554,259,0 +170730435602,260,0 +170730435650,226,0 +170730435698,219,0 +170730435746,219,0 +170730435794,218,0 +170730435842,219,0 +170730435891,218,0 +170730435941,219,0 +170730435989,219,0 +170730436037,219,0 +170730436085,218,0 +170730436134,219,0 +170730436184,219,0 +170730436232,218,0 +170730436280,219,0 +170730436327,219,0 +170730436377,219,0 +170730436425,219,0 +170730436473,219,0 +170730436522,220,0 +170730436570,221,0 +170730436620,261,0 +170730436668,281,1 +170730436754,219,0 +170730436804,219,0 +170730436853,219,0 +170730436901,219,0 +170730436949,219,0 +170730436997,219,0 +170730437047,219,0 +170730437094,219,0 +170730437142,219,0 +170730437190,219,0 +170730437238,219,0 +170730437286,219,0 +170730437334,219,0 +170730437382,219,0 +170730437430,218,0 +170730437477,219,0 +170730437525,218,0 +170730437573,219,0 +170730437621,221,0 +170730437669,256,0 +170730437717,263,0 +170730437765,223,0 +170730437813,219,0 +170730437860,219,0 +170730437908,219,0 +170730437956,219,0 +170730438004,219,0 +170730438054,219,0 +170730438102,219,0 +170730438150,219,0 +170730438197,219,0 +170730438247,219,0 +170730438295,219,0 +170730438343,219,0 +170730438391,219,0 +170730438439,219,0 +170730438488,219,0 +170730438538,218,0 +170730438587,219,0 +170730438635,220,0 +170730438685,235,0 +170730438733,250,0 +170730438781,229,0 +170730438828,220,0 +170730438876,219,0 +170730438924,219,0 +170730438974,219,0 +170730439022,219,0 +170730439069,219,0 +170730439119,218,0 +170730439167,219,0 +170730439216,219,0 +170730439266,219,0 +170730439314,219,0 +170730439363,219,0 +170730439411,219,0 +170730439461,219,0 +170730439509,219,0 +170730439557,219,0 +170730439605,219,0 +170730439653,219,0 +170730439701,220,0 +170730439749,252,0 +170730439798,261,0 +170730439848,228,0 +170730439896,219,0 +170730439945,219,0 +170730439993,219,0 +170730440041,219,0 +170730440089,219,0 +170730440137,219,0 +170730440186,219,0 +170730440235,218,0 +170730440282,219,0 +170730440330,219,0 +170730440380,219,0 +170730440428,219,0 +170730440476,219,0 +170730440524,219,0 +170730440573,219,0 +170730440623,219,0 +170730440672,219,0 +170730440720,219,0 +170730440768,221,0 +170730440818,250,0 +170730440866,259,0 +170730440914,222,0 +170730440963,219,0 +170730441012,219,0 +170730441062,219,0 +170730441110,219,0 +170730441159,218,0 +170730441207,219,0 +170730441257,219,0 +170730441306,219,0 +170730441354,219,0 +170730441404,218,0 +170730441452,218,0 +170730441500,219,0 +170730441549,219,0 +170730441599,219,0 +170730441648,219,0 +170730441696,219,0 +170730441744,219,0 +170730441794,220,0 +170730441843,251,0 +170730441893,263,0 +170730441942,228,0 +170730441990,219,0 +170730442038,219,0 +170730442086,219,0 +170730442135,219,0 +170730442183,219,0 +170730442231,218,0 +170730442279,218,0 +170730442329,219,0 +170730442377,219,0 +170730442426,219,0 +170730442474,219,0 +170730442522,219,0 +170730442570,219,0 +170730442620,219,0 +170730442668,219,0 +170730442717,219,0 +170730442765,219,0 +170730442813,220,0 +170730442861,224,0 +170730442909,251,0 +170730442958,255,0 +170730443008,224,0 +170730443056,219,0 +170730443104,219,0 +170730443151,219,0 +170730443199,218,0 +170730443247,219,0 +170730443297,218,0 +170730443345,218,0 +170730443393,218,0 +170730443441,218,0 +170730443490,219,0 +170730443540,219,0 +170730443588,219,0 +170730443637,218,0 +170730443687,219,0 +170730443735,219,0 +170730443783,219,0 +170730443831,219,0 +170730443880,220,0 +170730443928,249,0 +170730443978,267,0 +170730444026,222,0 +170730444075,219,0 +170730444123,219,0 +170730444171,219,0 +170730444219,219,0 +170730444267,219,0 +170730444315,219,0 +170730444363,219,0 +170730444413,219,0 +170730444461,219,0 +170730444509,219,0 +170730444557,219,0 +170730444606,219,0 +170730444656,219,0 +170730444704,219,0 +170730444753,219,0 +170730444803,219,0 +170730444852,219,0 +170730444900,219,0 +170730444948,220,0 +170730444998,254,0 +170730445047,264,0 +170730445097,228,0 +170730445145,219,0 +170730445193,219,0 +170730445240,219,0 +170730445288,219,0 +170730445336,219,0 +170730445384,219,0 +170730445434,218,0 +170730445482,218,0 +170730445531,219,0 +170730445579,219,0 +170730445629,218,0 +170730445678,218,0 +170730445726,219,0 +170730445774,219,0 +170730445822,219,0 +170730445870,219,0 +170730445919,218,0 +170730445967,219,0 +170730446017,220,0 +170730446065,250,0 +170730446113,271,1 +170730446196,219,0 +170730446244,218,0 +170730446292,218,0 +170730446342,219,0 +170730446390,219,0 +170730446439,219,0 +170730446487,219,0 +170730446535,219,0 +170730446585,219,0 +170730446633,218,0 +170730446681,219,0 +170730446730,219,0 +170730446780,218,0 +170730446829,218,0 +170730446877,219,0 +170730446927,219,0 +170730446975,219,0 +170730447023,219,0 +170730447070,224,0 +170730447118,259,0 +170730447168,243,0 +170730447216,221,0 +170730447265,219,0 +170730447315,219,0 +170730447364,219,0 +170730447412,219,0 +170730447462,219,0 +170730447511,219,0 +170730447559,219,0 +170730447609,219,0 +170730447657,219,0 +170730447705,219,0 +170730447754,219,0 +170730447804,219,0 +170730447853,219,0 +170730447901,219,0 +170730447949,219,0 +170730447997,220,0 +170730448045,222,0 +170730448093,227,0 +170730448142,247,0 +170730448190,257,0 +170730448238,226,0 +170730448286,220,0 +170730448334,220,0 +170730448382,219,0 +170730448430,220,0 +170730448477,220,0 +170730448525,220,0 +170730448573,220,0 +170730448621,220,0 +170730448669,220,0 +170730448717,220,0 +170730448765,220,0 +170730448813,220,0 +170730448860,219,0 +170730448908,220,0 +170730448956,220,0 +170730449004,219,0 +170730449054,220,0 +170730449102,219,0 +170730449149,220,0 +170730449197,250,0 +170730449247,269,0 +170730449295,229,0 +170730449343,220,0 +170730449391,219,0 +170730449438,220,0 +170730449486,219,0 +170730449534,219,0 +170730449582,220,0 +170730449630,220,0 +170730449680,219,0 +170730449729,219,0 +170730449777,220,0 +170730449825,220,0 +170730449873,220,0 +170730449923,220,0 +170730449971,220,0 +170730450018,220,0 +170730450068,219,0 +170730450116,219,0 +170730450166,220,0 +170730450213,226,0 +170730450263,251,0 +170730450312,242,0 +170730450360,221,0 +170730450408,220,0 +170730450456,220,0 +170730450504,220,0 +170730450553,220,0 +170730450601,220,0 +170730450649,220,0 +170730450697,220,0 +170730450745,220,0 +170730450793,220,0 +170730450841,219,0 +170730450888,220,0 +170730450936,220,0 +170730450984,220,0 +170730451032,220,0 +170730451080,220,0 +170730451128,220,0 +170730451176,220,0 +170730451224,221,0 +170730451272,237,0 +170730451320,251,0 +170730451367,224,0 +170730451415,220,0 +170730451463,220,0 +170730451511,220,0 +170730451561,220,0 +170730451608,220,0 +170730451656,219,0 +170730451704,220,0 +170730451752,220,0 +170730451800,219,0 +170730451848,220,0 +170730451896,219,0 +170730451944,220,0 +170730451992,219,0 +170730452040,219,0 +170730452087,220,0 +170730452135,220,0 +170730452183,220,0 +170730452231,220,0 +170730452279,220,0 +170730452327,231,0 +170730452375,255,0 +170730452423,227,0 +170730452471,221,0 +170730452518,220,0 +170730452566,220,0 +170730452614,220,0 +170730452662,220,0 +170730452710,220,0 +170730452758,219,0 +170730452806,220,0 +170730452854,220,0 +170730452902,220,0 +170730452949,219,0 +170730452997,220,0 +170730453045,220,0 +170730453093,219,0 +170730453141,220,0 +170730453189,220,0 +170730453237,220,0 +170730453285,221,0 +170730453334,221,0 +170730453382,249,0 +170730453430,249,0 +170730453478,224,0 +170730453526,220,0 +170730453575,220,0 +170730453623,219,0 +170730453671,219,0 +170730453719,220,0 +170730453767,219,0 +170730453815,219,0 +170730453864,219,0 +170730453912,219,0 +170730453960,219,0 +170730454008,219,0 +170730454056,219,0 +170730454103,219,0 +170730454151,219,0 +170730454201,219,0 +170730454249,220,0 +170730454296,219,0 +170730454344,219,0 +170730454394,221,0 +170730454442,265,0 +170730454490,267,0 +170730454537,228,0 +170730454585,220,0 +170730454633,219,0 +170730454681,219,0 +170730454729,219,0 +170730454777,219,0 +170730454825,219,0 +170730454873,219,0 +170730454921,220,0 +170730454968,219,0 +170730455018,219,0 +170730455067,220,0 +170730455117,219,0 +170730455165,219,0 +170730455215,219,0 +170730455263,219,0 +170730455311,220,0 +170730455359,219,0 +170730455407,220,0 +170730455456,221,0 +170730455506,250,0 +170730455555,276,1 +170730455639,220,0 +170730455688,219,0 +170730455738,219,0 +170730455786,219,0 +170730455834,218,0 +170730455882,219,0 +170730455930,219,0 +170730455979,219,0 +170730456027,219,0 +170730456075,219,0 +170730456123,219,0 +170730456171,219,0 +170730456219,219,0 +170730456266,219,0 +170730456316,219,0 +170730456364,219,0 +170730456412,219,0 +170730456460,219,0 +170730456508,221,0 +170730456556,249,0 +170730456605,262,0 +170730456653,221,0 +170730456701,219,0 +170730456749,219,0 +170730456796,219,0 +170730456844,219,0 +170730456892,219,0 +170730456940,219,0 +170730456988,219,0 +170730457036,219,0 +170730457084,219,0 +170730457132,219,0 +170730457180,219,0 +170730457227,219,0 +170730457275,219,0 +170730457323,219,0 +170730457373,219,0 +170730457421,219,0 +170730457469,219,0 +170730457518,219,0 +170730457566,258,0 +170730457614,256,0 +170730457664,223,0 +170730457712,220,0 +170730457761,219,0 +170730457809,219,0 +170730457859,219,0 +170730457907,219,0 +170730457955,219,0 +170730458004,219,0 +170730458052,220,0 +170730458100,219,0 +170730458149,219,0 +170730458197,219,0 +170730458245,219,0 +170730458293,219,0 +170730458343,219,0 +170730458390,219,0 +170730458438,219,0 +170730458488,219,0 +170730458536,219,0 +170730458584,220,0 +170730458632,254,0 +170730458680,253,0 +170730458728,229,0 +170730458776,219,0 +170730458823,219,0 +170730458873,219,0 +170730458921,219,0 +170730458970,219,0 +170730459018,219,0 +170730459066,219,0 +170730459116,219,0 +170730459164,220,0 +170730459212,219,0 +170730459260,219,0 +170730459308,219,0 +170730459357,219,0 +170730459407,219,0 +170730459455,219,0 +170730459504,219,0 +170730459552,219,0 +170730459600,219,0 +170730459648,220,0 +170730459698,248,0 +170730459747,281,1 +170730459827,220,0 +170730459875,219,0 +170730459923,219,0 +170730459971,219,0 +170730460019,219,0 +170730460066,219,0 +170730460114,219,0 +170730460162,219,0 +170730460210,219,0 +170730460260,219,0 +170730460309,219,0 +170730460357,219,0 +170730460407,218,0 +170730460455,219,0 +170730460503,219,0 +170730460551,219,0 +170730460600,219,0 +170730460648,219,0 +170730460696,220,0 +170730460744,250,0 +170730460792,263,0 +170730460840,223,0 +170730460889,219,0 +170730460939,219,0 +170730460987,219,0 +170730461035,219,0 +170730461084,219,0 +170730461132,219,0 +170730461180,219,0 +170730461230,219,0 +170730461278,219,0 +170730461327,219,0 +170730461375,219,0 +170730461423,219,0 +170730461471,219,0 +170730461520,219,0 +170730461568,219,0 +170730461618,219,0 +170730461667,219,0 +170730461715,219,0 +170730461763,230,0 +170730461813,256,0 +170730461861,230,0 +170730461909,220,0 +170730461956,219,0 +170730462006,219,0 +170730462054,219,0 +170730462102,219,0 +170730462151,219,0 +170730462199,219,0 +170730462247,219,0 +170730462297,219,0 +170730462345,219,0 +170730462394,219,0 +170730462442,219,0 +170730462492,219,0 +170730462540,219,0 +170730462589,219,0 +170730462637,219,0 +170730462685,220,0 +170730462733,219,0 +170730462783,220,0 +170730462831,249,0 +170730462879,256,0 +170730462927,227,0 +170730462975,219,0 +170730463023,219,0 +170730463072,219,0 +170730463120,219,0 +170730463170,218,0 +170730463219,219,0 +170730463269,219,0 +170730463317,219,0 +170730463365,219,0 +170730463412,219,0 +170730463462,219,0 +170730463512,219,0 +170730463560,219,0 +170730463608,219,0 +170730463655,219,0 +170730463703,219,0 +170730463751,219,0 +170730463799,219,0 +170730463849,221,0 +170730463897,249,0 +170730463945,264,0 +170730463993,224,0 +170730464042,220,0 +170730464090,220,0 +170730464140,220,0 +170730464188,220,0 +170730464237,220,0 +170730464285,220,0 +170730464333,220,0 +170730464381,220,0 +170730464429,219,0 +170730464478,220,0 +170730464528,219,0 +170730464577,220,0 +170730464625,220,0 +170730464673,220,0 +170730464723,220,0 +170730464771,220,0 +170730464819,220,0 +170730464867,220,0 +170730464914,253,0 +170730464962,252,0 +170730465010,222,0 +170730465058,220,0 +170730465106,220,0 +170730465154,220,0 +170730465202,220,0 +170730465250,220,0 +170730465298,220,0 +170730465345,220,0 +170730465393,220,0 +170730465441,219,0 +170730465489,220,0 +170730465539,220,0 +170730465588,220,0 +170730465636,220,0 +170730465684,220,0 +170730465732,219,0 +170730465780,219,0 +170730465830,220,0 +170730465878,220,0 +170730465926,221,0 +170730465973,251,0 +170730466021,265,0 +170730466071,229,0 +170730466119,220,0 +170730466168,220,0 +170730466216,220,0 +170730466264,220,0 +170730466312,220,0 +170730466360,219,0 +170730466410,220,0 +170730466457,220,0 +170730466507,220,0 +170730466555,220,0 +170730466603,220,0 +170730466652,220,0 +170730466700,220,0 +170730466750,220,0 +170730466798,220,0 +170730466847,220,0 +170730466897,219,0 +170730466945,220,0 +170730466994,222,0 +170730467042,248,0 +170730467090,256,0 +170730467138,223,0 +170730467188,220,0 +170730467237,220,0 +170730467287,220,0 +170730467335,220,0 +170730467383,220,0 +170730467431,220,0 +170730467478,220,0 +170730467528,220,0 +170730467576,220,0 +170730467624,220,0 +170730467672,220,0 +170730467720,220,0 +170730467769,220,0 +170730467819,220,0 +170730467868,219,0 +170730467918,220,0 +170730467967,221,0 +170730468015,220,0 +170730468063,241,0 +170730468111,259,0 +170730468161,222,0 +170730468209,221,0 +170730468257,220,0 +170730468305,219,0 +170730468353,220,0 +170730468402,220,0 +170730468450,219,0 +170730468498,220,0 +170730468546,219,0 +170730468594,220,0 +170730468643,220,0 +170730468691,220,0 +170730468739,220,0 +170730468787,220,0 +170730468835,220,0 +170730468885,220,0 +170730468934,220,0 +170730468982,219,0 +170730469032,220,0 +170730469080,221,0 +170730469129,258,0 +170730469177,268,0 +170730469227,226,0 +170730469275,220,0 +170730469324,219,0 +170730469372,219,0 +170730469422,219,0 +170730469471,219,0 +170730469521,220,0 +170730469569,219,0 +170730469617,220,0 +170730469666,219,0 +170730469714,219,0 +170730469764,219,0 +170730469812,219,0 +170730469860,220,0 +170730469908,219,0 +170730469957,219,0 +170730470007,220,0 +170730470056,220,0 +170730470104,220,0 +170730470152,230,0 +170730470200,254,0 +170730470248,239,0 +170730470296,221,0 +170730470344,220,0 +170730470392,219,0 +170730470440,219,0 +170730470488,219,0 +170730470537,219,0 +170730470587,219,0 +170730470635,219,0 +170730470683,219,0 +170730470731,219,0 +170730470779,220,0 +170730470828,219,0 +170730470876,219,0 +170730470926,219,0 +170730470973,220,0 +170730471023,220,0 +170730471071,219,0 +170730471119,220,0 +170730471168,219,0 +170730471216,219,0 +170730471266,219,0 +170730471314,220,0 +170730471362,219,0 +170730471412,219,0 +170730471460,219,0 +170730471508,219,0 +170730471555,220,0 +170730471603,220,0 +170730471653,220,0 +170730471701,221,0 +170730471749,259,0 +170730471797,260,0 +170730471844,226,0 +170730471892,220,0 +170730471942,220,0 +170730471990,219,0 +170730472038,220,0 +170730472087,219,0 +170730472135,219,0 +170730472183,219,0 +170730472231,219,0 +170730472278,220,0 +170730472326,219,0 +170730472374,220,0 +170730472424,219,0 +170730472473,220,0 +170730472523,220,0 +170730472572,220,0 +170730472620,219,0 +170730472668,220,0 +170730472716,220,0 +170730472764,226,0 +170730472814,254,0 +170730472863,226,0 +170730472913,220,0 +170730472961,219,0 +170730473010,219,0 +170730473058,219,0 +170730473106,220,0 +170730473154,219,0 +170730473202,219,0 +170730473250,219,0 +170730473298,219,0 +170730473346,220,0 +170730473395,219,0 +170730473443,219,0 +170730473491,219,0 +170730473541,219,0 +170730473589,220,0 +170730473638,220,0 +170730473688,220,0 +170730473737,219,0 +170730473785,221,0 +170730473833,252,0 +170730473881,253,0 +170730473929,224,0 +170730473977,219,0 +170730474025,220,0 +170730474073,220,0 +170730474120,220,0 +170730474168,219,0 +170730474216,219,0 +170730474264,220,0 +170730474312,219,0 +170730474360,220,0 +170730474408,219,0 +170730474456,220,0 +170730474504,220,0 +170730474552,219,0 +170730474601,219,0 +170730474649,220,0 +170730474697,220,0 +170730474745,220,0 +170730474793,220,0 +170730474841,221,0 +170730474889,250,0 +170730474938,253,0 +170730474986,228,0 +170730475034,220,0 +170730475082,219,0 +170730475130,220,0 +170730475178,219,0 +170730475226,219,0 +170730475274,220,0 +170730475322,219,0 +170730475370,219,0 +170730475417,219,0 +170730475465,220,0 +170730475513,220,0 +170730475561,219,0 +170730475609,220,0 +170730475657,219,0 +170730475705,219,0 +170730475753,220,0 +170730475801,219,0 +170730475849,219,0 +170730475896,221,0 +170730475944,250,0 +170730475992,253,0 +170730476040,227,0 +170730476088,220,0 +170730476138,220,0 +170730476186,220,0 +170730476234,220,0 +170730476281,219,0 +170730476329,220,0 +170730476379,221,0 +170730476427,220,0 +170730476476,220,0 +170730476524,220,0 +170730476572,220,0 +170730476620,220,0 +170730476670,220,0 +170730476718,219,0 +170730476766,220,0 +170730476815,219,0 +170730476865,220,0 +170730476913,221,0 +170730476961,222,0 +170730477009,252,0 +170730477056,266,0 +170730477104,222,0 +170730477152,220,0 +170730477200,219,0 +170730477248,219,0 +170730477296,219,0 +170730477344,219,0 +170730477392,219,0 +170730477440,220,0 +170730477490,219,0 +170730477538,219,0 +170730477587,219,0 +170730477635,219,0 +170730477683,219,0 +170730477733,220,0 +170730477782,219,0 +170730477830,220,0 +170730477878,219,0 +170730477928,219,0 +170730477976,220,0 +170730478024,241,0 +170730478072,252,0 +170730478120,221,0 +170730478169,220,0 +170730478217,220,0 +170730478265,219,0 +170730478313,220,0 +170730478361,219,0 +170730478410,219,0 +170730478458,219,0 +170730478506,220,0 +170730478554,220,0 +170730478602,219,0 +170730478652,219,0 +170730478700,220,0 +170730478748,219,0 +170730478796,220,0 +170730478843,220,0 +170730478891,220,0 +170730478939,219,0 +170730478987,219,0 +170730479035,221,0 +170730479083,252,0 +170730479131,264,0 +170730479179,228,0 +170730479227,220,0 +170730479275,220,0 +170730479325,220,0 +170730479374,220,0 +170730479424,220,0 +170730479473,219,0 +170730479523,219,0 +170730479572,219,0 +170730479620,220,0 +170730479668,220,0 +170730479717,220,0 +170730479765,219,0 +170730479813,220,0 +170730479863,220,0 +170730479913,220,0 +170730479961,220,0 +170730480009,220,0 +170730480057,220,0 +170730480105,221,0 +170730480153,252,0 +170730480200,263,0 +170730480250,222,0 +170730480300,220,0 +170730480349,220,0 +170730480399,220,0 +170730480447,219,0 +170730480496,220,0 +170730480546,219,0 +170730480594,220,0 +170730480643,220,0 +170730480693,220,0 +170730480742,220,0 +170730480790,219,0 +170730480840,219,0 +170730480888,219,0 +170730480937,220,0 +170730480985,219,0 +170730481035,219,0 +170730481083,220,0 +170730481131,220,0 +170730481178,247,0 +170730481226,250,0 +170730481274,228,0 +170730481324,220,0 +170730481372,220,0 +170730481421,220,0 +170730481471,220,0 +170730481519,220,0 +170730481568,220,0 +170730481616,220,0 +170730481664,219,0 +170730481712,220,0 +170730481760,219,0 +170730481809,220,0 +170730481857,219,0 +170730481905,220,0 +170730481953,220,0 +170730482001,220,0 +170730482048,219,0 +170730482096,220,0 +170730482144,220,0 +170730482192,221,0 +170730482240,250,0 +170730482289,253,0 +170730482337,227,0 +170730482385,220,0 +170730482433,220,0 +170730482481,220,0 +170730482529,219,0 +170730482578,220,0 +170730482626,220,0 +170730482674,220,0 +170730482724,220,0 +170730482773,220,0 +170730482821,220,0 +170730482871,220,0 +170730482919,220,0 +170730482967,220,0 +170730483015,220,0 +170730483064,220,0 +170730483112,220,0 +170730483160,220,0 +170730483208,220,0 +170730483256,222,0 +170730483304,252,0 +170730483352,260,0 +170730483400,222,0 +170730483449,219,0 +170730483497,219,0 +170730483547,219,0 +170730483596,219,0 +170730483646,220,0 +170730483695,219,0 +170730483743,219,0 +170730483791,219,0 +170730483841,219,0 +170730483889,220,0 +170730483938,219,0 +170730483986,219,0 +170730484036,220,0 +170730484084,219,0 +170730484131,220,0 +170730484179,220,0 +170730484227,220,0 +170730484275,221,0 +170730484325,251,0 +170730484373,256,0 +170730484421,227,0 +170730484470,219,0 +170730484518,219,0 +170730484566,219,0 +170730484614,219,0 +170730484662,219,0 +170730484712,219,0 +170730484760,219,0 +170730484808,220,0 +170730484857,219,0 +170730484905,219,0 +170730484953,219,0 +170730485001,219,0 +170730485049,219,0 +170730485097,219,0 +170730485145,219,0 +170730485193,219,0 +170730485241,219,0 +170730485289,219,0 +170730485337,220,0 +170730485385,248,0 +170730485432,261,0 +170730485480,227,0 +170730485528,219,0 +170730485576,220,0 +170730485624,219,0 +170730485672,220,0 +170730485720,219,0 +170730485768,220,0 +170730485816,220,0 +170730485863,219,0 +170730485911,219,0 +170730485961,219,0 +170730486009,220,0 +170730486058,220,0 +170730486106,220,0 +170730486154,219,0 +170730486203,219,0 +170730486251,219,0 +170730486301,219,0 +170730486349,219,0 +170730486398,221,0 +170730486448,247,0 +170730486496,260,0 +170730486544,222,0 +170730486593,219,0 +170730486643,219,0 +170730486691,220,0 +170730486740,219,0 +170730486788,219,0 +170730486836,219,0 +170730486884,219,0 +170730486934,219,0 +170730486982,219,0 +170730487031,219,0 +170730487081,220,0 +170730487128,219,0 +170730487176,219,0 +170730487224,219,0 +170730487272,219,0 +170730487322,219,0 +170730487369,220,0 +170730487419,220,0 +170730487469,252,0 +170730487517,251,0 +170730487566,227,0 +170730487614,220,0 +170730487662,219,0 +170730487710,219,0 +170730487757,219,0 +170730487805,219,0 +170730487853,219,0 +170730487901,219,0 +170730487949,219,0 +170730487997,219,0 +170730488045,219,0 +170730488093,219,0 +170730488141,219,0 +170730488188,219,0 +170730488238,219,0 +170730488288,219,0 +170730488336,219,0 +170730488385,219,0 +170730488433,220,0 +170730488481,221,0 +170730488529,251,0 +170730488578,254,0 +170730488628,225,0 +170730488676,219,0 +170730488724,219,0 +170730488773,220,0 +170730488823,220,0 +170730488871,219,0 +170730488919,219,0 +170730488968,220,0 +170730489016,219,0 +170730489066,220,0 +170730489115,219,0 +170730489163,219,0 +170730489211,219,0 +170730489259,219,0 +170730489308,219,0 +170730489358,219,0 +170730489406,219,0 +170730489454,219,0 +170730489502,220,0 +170730489551,220,0 +170730489601,246,0 +170730489650,252,0 +170730489698,223,0 +170730489748,220,0 +170730489796,220,0 +170730489844,220,0 +170730489893,220,0 +170730489941,220,0 +170730489989,220,0 +170730490037,219,0 +170730490086,219,0 +170730490134,220,0 +170730490182,219,0 +170730490230,220,0 +170730490278,220,0 +170730490328,220,0 +170730490376,219,0 +170730490425,220,0 +170730490475,219,0 +170730490524,220,0 +170730490574,220,0 +170730490622,249,0 +170730490670,248,0 +170730490719,227,0 +170730490769,220,0 +170730490817,220,0 +170730490865,220,0 +170730490915,220,0 +170730490962,220,0 +170730491012,219,0 +170730491060,220,0 +170730491108,220,0 +170730491156,220,0 +170730491205,219,0 +170730491253,220,0 +170730491301,220,0 +170730491349,220,0 +170730491397,220,0 +170730491445,220,0 +170730491493,220,0 +170730491541,220,0 +170730491589,220,0 +170730491637,221,0 +170730491685,246,0 +170730491733,255,0 +170730491781,228,0 +170730491830,220,0 +170730491880,220,0 +170730491928,220,0 +170730491976,220,0 +170730492025,219,0 +170730492073,220,0 +170730492121,220,0 +170730492169,220,0 +170730492218,220,0 +170730492266,220,0 +170730492316,220,0 +170730492365,220,0 +170730492413,220,0 +170730492463,220,0 +170730492512,220,0 +170730492562,219,0 +170730492611,220,0 +170730492659,220,0 +170730492707,221,0 +170730492755,247,0 +170730492803,270,1 +170730492887,220,0 +170730492937,220,0 +170730492985,220,0 +170730493034,220,0 +170730493082,220,0 +170730493130,220,0 +170730493178,220,0 +170730493226,220,0 +170730493274,220,0 +170730493324,220,0 +170730493372,220,0 +170730493421,220,0 +170730493469,219,0 +170730493519,220,0 +170730493567,220,0 +170730493615,220,0 +170730493664,220,0 +170730493714,220,0 +170730493762,235,0 +170730493810,254,0 +170730493859,227,0 +170730493909,220,0 +170730493958,220,0 +170730494008,219,0 +170730494056,220,0 +170730494105,219,0 +170730494155,219,0 +170730494203,219,0 +170730494251,219,0 +170730494299,219,0 +170730494347,219,0 +170730494394,219,0 +170730494442,219,0 +170730494492,219,0 +170730494541,220,0 +170730494591,219,0 +170730494639,219,0 +170730494687,219,0 +170730494736,219,0 +170730494784,221,0 +170730494832,260,0 +170730494882,256,0 +170730494930,224,0 +170730494978,219,0 +170730495026,219,0 +170730495073,220,0 +170730495121,219,0 +170730495169,219,0 +170730495217,219,0 +170730495265,219,0 +170730495313,219,0 +170730495361,219,0 +170730495409,219,0 +170730495456,219,0 +170730495504,219,0 +170730495554,220,0 +170730495602,219,0 +170730495650,220,0 +170730495697,219,0 +170730495745,220,0 +170730495793,220,0 +170730495841,221,0 +170730495889,252,0 +170730495939,270,1 +170730496027,219,0 +170730496075,219,0 +170730496123,220,0 +170730496172,220,0 +170730496222,219,0 +170730496271,219,0 +170730496321,220,0 +170730496371,220,0 +170730496419,219,0 +170730496466,219,0 +170730496514,220,0 +170730496562,220,0 +170730496610,219,0 +170730496660,219,0 +170730496708,219,0 +170730496757,220,0 +170730496807,219,0 +170730496855,220,0 +170730496904,222,0 +170730496952,259,0 +170730497000,267,0 +170730497048,223,0 +170730497098,220,0 +170730497146,220,0 +170730497194,219,0 +170730497242,220,0 +170730497290,219,0 +170730497338,220,0 +170730497386,220,0 +170730497435,220,0 +170730497485,220,0 +170730497534,220,0 +170730497584,220,0 +170730497633,220,0 +170730497683,219,0 +170730497732,219,0 +170730497782,220,0 +170730497830,220,0 +170730497879,220,0 +170730497927,220,0 +170730497975,249,0 +170730498023,261,0 +170730498071,230,0 +170730498120,220,0 +170730498168,220,0 +170730498216,220,0 +170730498264,220,0 +170730498312,219,0 +170730498361,220,0 +170730498409,219,0 +170730498457,220,0 +170730498506,220,0 +170730498554,219,0 +170730498602,219,0 +170730498650,220,0 +170730498698,219,0 +170730498747,220,0 +170730498795,220,0 +170730498843,220,0 +170730498891,220,0 +170730498939,219,0 +170730498987,222,0 +170730499034,249,0 +170730499082,255,0 +170730499130,226,0 +170730499180,220,0 +170730499229,220,0 +170730499277,219,0 +170730499327,220,0 +170730499375,219,0 +170730499424,219,0 +170730499472,219,0 +170730499522,220,0 +170730499570,219,0 +170730499618,219,0 +170730499666,219,0 +170730499713,219,0 +170730499761,220,0 +170730499809,219,0 +170730499857,219,0 +170730499907,219,0 +170730499956,220,0 +170730500006,220,0 +170730500054,221,0 +170730500103,250,0 +170730500153,242,0 +170730500202,221,0 +170730500250,219,0 +170730500300,220,0 +170730500349,220,0 +170730500397,220,0 +170730500447,220,0 +170730500495,219,0 +170730500543,220,0 +170730500590,219,0 +170730500638,220,0 +170730500686,219,0 +170730500736,219,0 +170730500784,220,0 +170730500831,220,0 +170730500879,220,0 +170730500929,220,0 +170730500978,219,0 +170730501028,220,0 +170730501077,221,0 +170730501125,250,0 +170730501173,249,0 +170730501223,227,0 +170730501271,220,0 +170730501319,220,0 +170730501368,220,0 +170730501416,220,0 +170730501464,220,0 +170730501512,220,0 +170730501561,220,0 +170730501611,220,0 +170730501659,219,0 +170730501707,220,0 +170730501756,220,0 +170730501806,220,0 +170730501856,220,0 +170730501904,220,0 +170730501953,220,0 +170730502003,220,0 +170730502051,220,0 +170730502100,220,0 +170730502150,223,0 +170730502197,247,0 +170730502245,248,0 +170730502295,221,0 +170730502343,220,0 +170730502392,219,0 +170730502442,219,0 +170730502490,220,0 +170730502539,219,0 +170730502587,220,0 +170730502635,219,0 +170730502685,220,0 +170730502733,220,0 +170730502781,220,0 +170730502829,220,0 +170730502878,220,0 +170730502928,220,0 +170730502977,219,0 +170730503025,220,0 +170730503073,220,0 +170730503121,220,0 +170730503171,221,0 +170730503219,264,0 +170730503267,258,0 +170730503316,229,0 +170730503364,220,0 +170730503412,220,0 +170730503460,220,0 +170730503509,220,0 +170730503559,219,0 +170730503607,219,0 +170730503655,219,0 +170730503703,220,0 +170730503752,220,0 +170730503800,220,0 +170730503848,220,0 +170730503896,219,0 +170730503946,220,0 +170730503995,220,0 +170730504043,220,0 +170730504091,220,0 +170730504141,219,0 +170730504188,220,0 +170730504236,221,0 +170730504286,248,0 +170730504336,270,1 +170730504419,220,0 +170730504467,220,0 +170730504515,220,0 +170730504564,219,0 +170730504614,219,0 +170730504662,219,0 +170730504709,220,0 +170730504759,220,0 +170730504809,220,0 +170730504858,220,0 +170730504906,219,0 +170730504954,219,0 +170730505002,219,0 +170730505051,220,0 +170730505101,220,0 +170730505150,219,0 +170730505198,220,0 +170730505248,220,0 +170730505296,222,0 +170730505345,248,0 +170730505393,249,0 +170730505443,222,0 +170730505492,219,0 +170730505542,219,0 +170730505590,220,0 +170730505638,220,0 +170730505686,220,0 +170730505734,219,0 +170730505783,220,0 +170730505833,220,0 +170730505881,219,0 +170730505928,220,0 +170730505976,219,0 +170730506024,220,0 +170730506074,220,0 +170730506123,219,0 +170730506171,220,0 +170730506221,219,0 +170730506269,219,0 +170730506318,220,0 +170730506368,248,0 +170730506416,254,0 +170730506464,230,0 +170730506511,220,0 +170730506559,220,0 +170730506607,220,0 +170730506657,220,0 +170730506706,220,0 +170730506754,220,0 +170730506804,220,0 +170730506852,219,0 +170730506901,220,0 +170730506949,220,0 +170730506997,220,0 +170730507047,220,0 +170730507095,220,0 +170730507143,220,0 +170730507191,220,0 +170730507239,220,0 +170730507287,220,0 +170730507335,220,0 +170730507383,220,0 +170730507432,252,0 +170730507482,267,0 +170730507530,228,0 +170730507578,220,0 +170730507627,220,0 +170730507675,220,0 +170730507723,219,0 +170730507771,219,0 +170730507821,219,0 +170730507870,220,0 +170730507918,219,0 +170730507968,219,0 +170730508016,220,0 +170730508064,220,0 +170730508112,219,0 +170730508160,219,0 +170730508208,220,0 +170730508256,220,0 +170730508304,219,0 +170730508352,220,0 +170730508399,220,0 +170730508447,223,0 +170730508495,251,0 +170730508543,239,0 +170730508593,221,0 +170730508641,219,0 +170730508690,220,0 +170730508738,220,0 +170730508786,220,0 +170730508834,220,0 +170730508882,220,0 +170730508930,220,0 +170730508978,219,0 +170730509026,220,0 +170730509076,220,0 +170730509124,219,0 +170730509173,220,0 +170730509221,220,0 +170730509271,219,0 +170730509319,219,0 +170730509367,219,0 +170730509415,219,0 +170730509463,220,0 +170730509511,282,1 +170730509592,227,0 +170730509640,221,0 +170730509688,220,0 +170730509737,220,0 +170730509785,220,0 +170730509835,219,0 +170730509883,219,0 +170730509931,220,0 +170730509979,220,0 +170730510027,219,0 +170730510076,220,0 +170730510126,220,0 +170730510175,219,0 +170730510225,220,0 +170730510274,219,0 +170730510322,219,0 +170730510370,219,0 +170730510418,220,0 +170730510467,220,0 +170730510517,221,0 +170730510565,252,0 +170730510613,261,0 +170730510661,227,0 +170730510710,219,0 +170730510760,220,0 +170730510809,219,0 +170730510857,220,0 +170730510905,219,0 +170730510953,220,0 +170730511003,219,0 +170730511052,219,0 +170730511100,220,0 +170730511150,219,0 +170730511198,220,0 +170730511247,220,0 +170730511297,220,0 +170730511346,219,0 +170730511394,219,0 +170730511444,220,0 +170730511493,220,0 +170730511541,220,0 +170730511591,222,0 +170730511640,252,0 +170730511688,247,0 +170730511736,222,0 +170730511784,220,0 +170730511832,219,0 +170730511880,219,0 +170730511928,219,0 +170730511976,219,0 +170730512023,220,0 +170730512071,220,0 +170730512119,220,0 +170730512167,220,0 +170730512215,220,0 +170730512263,219,0 +170730512311,219,0 +170730512359,219,0 +170730512407,219,0 +170730512455,219,0 +170730512502,220,0 +170730512550,220,0 +170730512598,220,0 +170730512646,241,0 +170730512696,259,0 +170730512745,224,0 +170730512793,220,0 +170730512843,220,0 +170730512891,220,0 +170730512939,220,0 +170730512987,220,0 +170730513035,220,0 +170730513084,220,0 +170730513132,219,0 +170730513182,220,0 +170730513230,220,0 +170730513279,220,0 +170730513327,219,0 +170730513375,219,0 +170730513425,220,0 +170730513474,219,0 +170730513522,219,0 +170730513570,220,0 +170730513618,220,0 +170730513666,221,0 +170730513715,249,0 +170730513763,256,0 +170730513813,227,0 +170730513862,219,0 +170730513910,219,0 +170730513958,219,0 +170730514006,218,0 +170730514054,219,0 +170730514102,218,0 +170730514150,218,0 +170730514200,219,0 +170730514249,219,0 +170730514299,219,0 +170730514346,218,0 +170730514396,218,0 +170730514444,218,0 +170730514492,218,0 +170730514541,219,0 +170730514589,218,0 +170730514637,219,0 +170730514687,219,0 +170730514735,220,0 +170730514784,260,0 +170730514832,272,1 +170730514914,220,0 +170730514962,219,0 +170730515010,219,0 +170730515058,220,0 +170730515108,220,0 +170730515156,219,0 +170730515205,219,0 +170730515255,219,0 +170730515303,219,0 +170730515352,219,0 +170730515400,220,0 +170730515448,219,0 +170730515498,219,0 +170730515546,219,0 +170730515594,219,0 +170730515642,219,0 +170730515691,220,0 +170730515741,219,0 +170730515790,234,0 +170730515838,253,0 +170730515886,237,0 +170730515934,221,0 +170730515984,219,0 +170730516031,219,0 +170730516081,219,0 +170730516129,219,0 +170730516178,219,0 +170730516228,219,0 +170730516276,219,0 +170730516324,220,0 +170730516372,220,0 +170730516420,219,0 +170730516469,219,0 +170730516519,219,0 +170730516568,219,0 +170730516616,219,0 +170730516664,220,0 +170730516714,219,0 +170730516762,220,0 +170730516810,220,0 +170730516858,249,0 +170730516905,273,1 +170730516986,220,0 +170730517034,219,0 +170730517082,219,0 +170730517130,219,0 +170730517178,219,0 +170730517226,219,0 +170730517275,219,0 +170730517323,219,0 +170730517373,219,0 +170730517421,219,0 +170730517469,219,0 +170730517518,219,0 +170730517566,220,0 +170730517614,219,0 +170730517664,220,0 +170730517712,219,0 +170730517760,219,0 +170730517808,220,0 +170730517856,219,0 +170730517904,251,0 +170730517952,257,0 +170730518000,224,0 +170730518047,220,0 +170730518095,219,0 +170730518143,219,0 +170730518191,219,0 +170730518239,219,0 +170730518289,219,0 +170730518337,219,0 +170730518386,219,0 +170730518434,219,0 +170730518484,219,0 +170730518533,219,0 +170730518583,219,0 +170730518631,219,0 +170730518679,219,0 +170730518727,219,0 +170730518776,219,0 +170730518824,219,0 +170730518874,219,0 +170730518922,220,0 +170730518970,253,0 +170730519017,255,0 +170730519065,227,0 +170730519115,219,0 +170730519164,219,0 +170730519212,219,0 +170730519260,219,0 +170730519310,219,0 +170730519358,219,0 +170730519407,220,0 +170730519455,219,0 +170730519503,219,0 +170730519553,219,0 +170730519602,219,0 +170730519650,219,0 +170730519699,219,0 +170730519748,219,0 +170730519796,219,0 +170730519844,219,0 +170730519894,219,0 +170730519943,220,0 +170730519993,228,0 +170730520041,247,0 +170730520090,226,0 +170730520138,220,0 +170730520186,219,0 +170730520234,219,0 +170730520283,219,0 +170730520333,219,0 +170730520382,219,0 +170730520430,219,0 +170730520480,219,0 +170730520528,219,0 +170730520577,219,0 +170730520625,219,0 +170730520675,219,0 +170730520723,219,0 +170730520771,219,0 +170730520819,219,0 +170730520868,219,0 +170730520918,219,0 +170730520966,219,0 +170730521015,220,0 +170730521065,255,0 +170730521114,269,0 +170730521164,226,0 +170730521212,219,0 +170730521261,219,0 +170730521309,219,0 +170730521357,219,0 +170730521405,219,0 +170730521453,219,0 +170730521501,219,0 +170730521549,219,0 +170730521598,219,0 +170730521646,219,0 +170730521696,219,0 +170730521745,219,0 +170730521793,219,0 +170730521843,219,0 +170730521891,219,0 +170730521940,219,0 +170730521988,218,0 +170730522038,219,0 +170730522086,221,0 +170730522134,251,0 +170730522183,263,0 +170730522233,221,0 +170730522280,219,0 +170730522328,219,0 +170730522378,219,0 +170730522426,219,0 +170730522474,219,0 +170730522523,219,0 +170730522571,219,0 +170730522619,219,0 +170730522667,219,0 +170730522717,219,0 +170730522765,219,0 +170730522814,219,0 +170730522862,219,0 +170730522912,219,0 +170730522960,219,0 +170730523009,219,0 +170730523057,219,0 +170730523105,220,0 +170730523153,255,0 +170730523202,252,0 +170730523250,226,0 +170730523300,219,0 +170730523349,219,0 +170730523397,219,0 +170730523445,219,0 +170730523493,219,0 +170730523543,219,0 +170730523592,219,0 +170730523642,218,0 +170730523690,219,0 +170730523739,219,0 +170730523789,218,0 +170730523838,219,0 +170730523886,219,0 +170730523934,219,0 +170730523982,219,0 +170730524031,219,0 +170730524079,219,0 +170730524127,219,0 +170730524177,221,0 +170730524225,249,0 +170730524273,252,0 +170730524322,220,0 +170730524370,219,0 +170730524418,219,0 +170730524468,219,0 +170730524516,219,0 +170730524564,219,0 +170730524613,219,0 +170730524663,218,0 +170730524711,219,0 +170730524758,219,0 +170730524806,219,0 +170730524854,219,0 +170730524902,219,0 +170730524950,219,0 +170730524998,219,0 +170730525045,219,0 +170730525093,219,0 +170730525141,219,0 +170730525189,219,0 +170730525237,221,0 +170730525285,250,0 +170730525333,265,0 +170730525381,221,0 +170730525429,219,0 +170730525478,219,0 +170730525526,219,0 +170730525574,219,0 +170730525622,219,0 +170730525672,219,0 +170730525721,219,0 +170730525769,219,0 +170730525819,219,0 +170730525867,219,0 +170730525914,219,0 +170730525962,219,0 +170730526012,219,0 +170730526060,219,0 +170730526108,219,0 +170730526157,219,0 +170730526205,219,0 +170730526253,219,0 +170730526301,243,0 +170730526349,246,0 +170730526398,221,0 +170730526446,219,0 +170730526494,219,0 +170730526542,219,0 +170730526590,219,0 +170730526640,219,0 +170730526688,219,0 +170730526736,219,0 +170730526784,219,0 +170730526832,219,0 +170730526880,219,0 +170730526929,219,0 +170730526977,219,0 +170730527027,219,0 +170730527075,219,0 +170730527124,219,0 +170730527174,219,0 +170730527223,219,0 +170730527271,219,0 +170730527319,220,0 +170730527368,250,0 +170730527416,258,0 +170730527466,224,0 +170730527515,219,0 +170730527563,219,0 +170730527613,218,0 +170730527661,219,0 +170730527709,219,0 +170730527757,219,0 +170730527805,219,0 +170730527853,219,0 +170730527902,219,0 +170730527950,219,0 +170730528000,219,0 +170730528048,219,0 +170730528096,219,0 +170730528143,219,0 +170730528191,219,0 +170730528241,219,0 +170730528289,219,0 +170730528337,219,0 +170730528385,222,0 +170730528433,249,0 +170730528481,252,0 +170730528528,222,0 +170730528576,219,0 +170730528624,219,0 +170730528674,219,0 +170730528721,218,0 +170730528769,219,0 +170730528817,219,0 +170730528865,219,0 +170730528915,219,0 +170730528963,219,0 +170730529012,219,0 +170730529060,219,0 +170730529108,219,0 +170730529156,219,0 +170730529204,219,0 +170730529254,219,0 +170730529302,219,0 +170730529349,219,0 +170730529399,219,0 +170730529448,231,0 +170730529496,252,0 +170730529544,238,0 +170730529594,220,0 +170730529642,219,0 +170730529690,219,0 +170730529738,220,0 +170730529786,220,0 +170730529834,219,0 +170730529882,219,0 +170730529932,220,0 +170730529979,219,0 +170730530027,219,0 +170730530077,219,0 +170730530126,220,0 +170730530174,220,0 +170730530222,219,0 +170730530270,219,0 +170730530320,220,0 +170730530368,219,0 +170730530417,220,0 +170730530467,221,0 +170730530516,250,0 +170730530564,271,1 +170730530654,219,0 +170730530704,220,0 +170730530753,219,0 +170730530801,219,0 +170730530849,219,0 +170730530897,219,0 +170730530945,219,0 +170730530995,219,0 +170730531043,219,0 +170730531091,220,0 +170730531139,219,0 +170730531186,219,0 +170730531234,219,0 +170730531283,219,0 +170730531330,219,0 +170730531378,219,0 +170730531426,220,0 +170730531474,219,0 +170730531522,221,0 +170730531570,249,0 +170730531618,268,0 +170730531666,226,0 +170730531713,220,0 +170730531761,219,0 +170730531809,219,0 +170730531857,220,0 +170730531905,219,0 +170730531953,219,0 +170730532001,219,0 +170730532050,220,0 +170730532098,219,0 +170730532148,220,0 +170730532196,220,0 +170730532245,219,0 +170730532293,220,0 +170730532341,219,0 +170730532390,220,0 +170730532440,220,0 +170730532489,219,0 +170730532537,220,0 +170730532585,227,0 +170730532633,252,0 +170730532681,242,0 +170730532729,221,0 +170730532777,219,0 +170730532827,220,0 +170730532875,219,0 +170730532924,219,0 +170730532972,220,0 +170730533020,219,0 +170730533068,220,0 +170730533117,219,0 +170730533167,220,0 +170730533215,220,0 +170730533264,219,0 +170730533312,220,0 +170730533362,220,0 +170730533410,220,0 +170730533458,219,0 +170730533506,220,0 +170730533555,220,0 +170730533605,220,0 +170730533654,251,0 +170730533704,254,0 +170730533753,228,0 +170730533803,220,0 +170730533851,220,0 +170730533899,219,0 +170730533947,220,0 +170730533995,219,0 +170730534044,219,0 +170730534094,219,0 +170730534143,219,0 +170730534191,219,0 +170730534239,219,0 +170730534287,219,0 +170730534337,219,0 +170730534386,220,0 +170730534434,219,0 +170730534482,220,0 +170730534530,220,0 +170730534580,220,0 +170730534629,219,0 +170730534679,222,0 +170730534728,249,0 +170730534778,266,0 +170730534826,225,0 +170730534875,220,0 +170730534923,220,0 +170730534971,219,0 +170730535019,220,0 +170730535067,220,0 +170730535115,220,0 +170730535163,220,0 +170730535211,219,0 +170730535259,219,0 +170730535307,219,0 +170730535354,219,0 +170730535404,220,0 +170730535453,219,0 +170730535503,219,0 +170730535551,220,0 +170730535599,220,0 +170730535647,219,0 +170730535695,220,0 +170730535744,243,0 +170730535794,251,0 +170730535842,222,0 +170730535892,220,0 +170730535939,219,0 +170730535989,220,0 +170730536037,220,0 +170730536085,219,0 +170730536133,219,0 +170730536182,219,0 +170730536230,220,0 +170730536278,219,0 +170730536326,220,0 +170730536374,220,0 +170730536424,219,0 +170730536472,219,0 +170730536519,219,0 +170730536569,219,0 +170730536618,219,0 +170730536666,220,0 +170730536716,219,0 +170730536764,220,0 +170730536813,250,0 +170730536863,255,0 +170730536911,226,0 +170730536959,220,0 +170730537007,220,0 +170730537055,220,0 +170730537103,220,0 +170730537151,219,0 +170730537199,220,0 +170730537247,220,0 +170730537296,220,0 +170730537344,220,0 +170730537392,219,0 +170730537442,220,0 +170730537490,219,0 +170730537539,220,0 +170730537587,219,0 +170730537635,220,0 +170730537683,220,0 +170730537731,220,0 +170730537779,220,0 +170730537828,222,0 +170730537876,250,0 +170730537924,262,0 +170730537972,224,0 +170730538020,220,0 +170730538068,220,0 +170730538117,220,0 +170730538165,220,0 +170730538213,220,0 +170730538261,219,0 +170730538309,219,0 +170730538358,220,0 +170730538406,220,0 +170730538454,220,0 +170730538502,219,0 +170730538550,220,0 +170730538598,219,0 +170730538645,220,0 +170730538695,220,0 +170730538744,219,0 +170730538792,220,0 +170730538840,221,0 +170730538888,251,0 +170730538937,258,0 +170730538985,230,0 +170730539033,220,0 +170730539081,219,0 +170730539129,220,0 +170730539177,220,0 +170730539225,220,0 +170730539273,220,0 +170730539322,219,0 +170730539370,220,0 +170730539418,220,0 +170730539466,219,0 +170730539514,220,0 +170730539562,219,0 +170730539610,220,0 +170730539657,220,0 +170730539705,219,0 +170730539753,220,0 +170730539801,220,0 +170730539849,220,0 +170730539897,220,0 +170730539945,248,0 +170730539994,253,0 +170730540044,223,0 +170730540092,219,0 +170730540139,219,0 +170730540187,219,0 +170730540235,219,0 +170730540283,219,0 +170730540331,219,0 +170730540379,219,0 +170730540427,219,0 +170730540474,219,0 +170730540522,219,0 +170730540570,219,0 +170730540618,218,0 +170730540667,219,0 +170730540715,219,0 +170730540763,219,0 +170730540813,219,0 +170730540862,219,0 +170730540910,219,0 +170730540958,220,0 +170730541006,258,0 +170730541054,258,0 +170730541102,228,0 +170730541149,220,0 +170730541197,220,0 +170730541245,219,0 +170730541293,219,0 +170730541341,219,0 +170730541391,220,0 +170730541438,219,0 +170730541488,219,0 +170730541537,219,0 +170730541585,220,0 +170730541633,219,0 +170730541681,219,0 +170730541729,220,0 +170730541777,220,0 +170730541825,219,0 +170730541874,220,0 +170730541924,220,0 +170730541973,220,0 +170730542021,222,0 +170730542071,250,0 +170730542119,268,0 +170730542167,227,0 +170730542216,220,0 +170730542264,220,0 +170730542312,219,0 +170730542360,219,0 +170730542408,219,0 +170730542457,219,0 +170730542505,219,0 +170730542553,220,0 +170730542601,219,0 +170730542649,219,0 +170730542699,219,0 +170730542747,219,0 +170730542794,219,0 +170730542842,219,0 +170730542890,219,0 +170730542938,219,0 +170730542986,219,0 +170730543034,219,0 +170730543082,225,0 +170730543131,258,0 +170730543179,260,0 +170730543227,222,0 +170730543277,220,0 +170730543325,220,0 +170730543373,219,0 +170730543422,219,0 +170730543472,219,0 +170730543520,219,0 +170730543568,219,0 +170730543616,219,0 +170730543664,220,0 +170730543713,219,0 +170730543761,219,0 +170730543809,219,0 +170730543857,219,0 +170730543905,219,0 +170730543953,220,0 +170730544002,220,0 +170730544050,219,0 +170730544098,219,0 +170730544146,233,0 +170730544195,260,0 +170730544245,224,0 +170730544293,220,0 +170730544341,219,0 +170730544390,219,0 +170730544438,220,0 +170730544486,219,0 +170730544536,219,0 +170730544585,219,0 +170730544633,219,0 +170730544683,219,0 +170730544731,219,0 +170730544780,220,0 +170730544830,220,0 +170730544878,219,0 +170730544927,220,0 +170730544975,219,0 +170730545023,219,0 +170730545071,219,0 +170730545120,219,0 +170730545170,221,0 +170730545219,260,0 +170730545267,274,1 +170730545350,220,0 +170730545398,220,0 +170730545446,219,0 +170730545494,220,0 +170730545542,219,0 +170730545589,220,0 +170730545637,220,0 +170730545685,219,0 +170730545733,219,0 +170730545781,220,0 +170730545829,219,0 +170730545877,219,0 +170730545925,220,0 +170730545973,219,0 +170730546020,219,0 +170730546068,219,0 +170730546116,219,0 +170730546164,219,0 +170730546212,221,0 +170730546260,248,0 +170730546310,265,0 +170730546358,228,0 +170730546406,219,0 +170730546453,219,0 +170730546501,219,0 +170730546551,220,0 +170730546600,219,0 +170730546648,219,0 +170730546696,220,0 +170730546744,220,0 +170730546794,219,0 +170730546843,219,0 +170730546893,220,0 +170730546941,219,0 +170730546989,219,0 +170730547037,219,0 +170730547085,219,0 +170730547133,219,0 +170730547181,219,0 +170730547229,219,0 +170730547278,221,0 +170730547326,250,0 +170730547374,261,0 +170730547424,221,0 +170730547473,219,0 +170730547523,219,0 +170730547572,219,0 +170730547622,220,0 +170730547669,219,0 +170730547717,219,0 +170730547765,219,0 +170730547813,219,0 +170730547861,219,0 +170730547909,219,0 +170730547958,219,0 +170730548006,219,0 +170730548054,219,0 +170730548104,219,0 +170730548152,219,0 +170730548200,219,0 +170730548249,219,0 +170730548297,219,0 +170730548345,232,0 +170730548393,262,0 +170730548443,225,0 +170730548491,220,0 +170730548538,219,0 +170730548586,219,0 +170730548634,219,0 +170730548682,219,0 +170730548730,219,0 +170730548778,220,0 +170730548827,219,0 +170730548875,219,0 +170730548924,219,0 +170730548972,218,0 +170730549020,219,0 +170730549068,219,0 +170730549116,219,0 +170730549164,219,0 +170730549212,219,0 +170730549259,219,0 +170730549307,219,0 +170730549357,220,0 +170730549405,253,0 +170730549454,253,0 +170730549502,228,0 +170730549550,219,0 +170730549598,219,0 +170730549646,219,0 +170730549694,219,0 +170730549742,218,0 +170730549790,219,0 +170730549838,219,0 +170730549886,219,0 +170730549934,219,0 +170730549982,219,0 +170730550031,219,0 +170730550079,219,0 +170730550127,218,0 +170730550177,219,0 +170730550224,219,0 +170730550272,219,0 +170730550322,219,0 +170730550370,220,0 +170730550419,221,0 +170730550467,256,0 +170730550517,271,1 +170730550599,219,0 +170730550648,219,0 +170730550696,219,0 +170730550746,219,0 +170730550795,219,0 +170730550843,219,0 +170730550891,219,0 +170730550939,219,0 +170730550987,219,0 +170730551035,219,0 +170730551083,219,0 +170730551131,219,0 +170730551179,219,0 +170730551227,219,0 +170730551275,219,0 +170730551323,219,0 +170730551372,220,0 +170730551422,219,0 +170730551470,220,0 +170730551519,261,0 +170730551569,270,1 +170730551653,219,0 +170730551701,219,0 +170730551749,219,0 +170730551798,219,0 +170730551848,219,0 +170730551897,219,0 +170730551945,219,0 +170730551993,219,0 +170730552041,219,0 +170730552089,219,0 +170730552137,219,0 +170730552185,219,0 +170730552233,219,0 +170730552281,219,0 +170730552331,219,0 +170730552378,219,0 +170730552426,219,0 +170730552476,219,0 +170730552525,221,0 +170730552575,249,0 +170730552624,254,0 +170730552672,221,0 +170730552720,219,0 +170730552768,219,0 +170730552816,219,0 +170730552864,219,0 +170730552912,219,0 +170730552960,219,0 +170730553008,219,0 +170730553058,219,0 +170730553106,218,0 +170730553155,219,0 +170730553205,219,0 +170730553254,218,0 +170730553302,219,0 +170730553350,219,0 +170730553399,219,0 +170730553447,219,0 +170730553495,219,0 +170730553545,220,0 +170730553593,253,0 +170730553642,259,0 +170730553690,228,0 +170730553738,219,0 +170730553786,219,0 +170730553836,219,0 +170730553885,219,0 +170730553933,219,0 +170730553981,219,0 +170730554029,219,0 +170730554077,219,0 +170730554127,219,0 +170730554175,219,0 +170730554223,219,0 +170730554272,219,0 +170730554320,219,0 +170730554368,219,0 +170730554416,219,0 +170730554464,219,0 +170730554513,219,0 +170730554561,219,0 +170730554611,220,0 +170730554660,250,0 +170730554708,276,1 +170730554793,219,0 +170730554842,219,0 +170730554892,219,0 +170730554940,219,0 +170730554989,219,0 +170730555037,219,0 +170730555087,219,0 +170730555135,219,0 +170730555182,219,0 +170730555230,219,0 +170730555280,219,0 +170730555328,219,0 +170730555377,219,0 +170730555427,219,0 +170730555475,219,0 +170730555524,219,0 +170730555572,219,0 +170730555620,219,0 +170730555668,221,0 +170730555716,251,0 +170730555764,259,0 +170730555812,226,0 +170730555862,219,0 +170730555910,219,0 +170730555958,219,0 +170730556006,218,0 +170730556054,219,0 +170730556103,218,0 +170730556151,219,0 +170730556201,219,0 +170730556248,218,0 +170730556296,219,0 +170730556344,219,0 +170730556394,219,0 +170730556442,219,0 +170730556490,219,0 +170730556539,219,0 +170730556587,219,0 +170730556635,219,0 +170730556683,220,0 +170730556733,234,0 +170730556781,251,0 +170730556829,233,0 +170730556877,220,0 +170730556925,219,0 +170730556974,219,0 +170730557024,219,0 +170730557073,219,0 +170730557123,219,0 +170730557172,219,0 +170730557220,219,0 +170730557270,219,0 +170730557318,219,0 +170730557366,219,0 +170730557414,219,0 +170730557461,219,0 +170730557509,219,0 +170730557557,218,0 +170730557607,219,0 +170730557656,219,0 +170730557704,219,0 +170730557752,220,0 +170730557802,251,0 +170730557850,267,0 +170730557898,224,0 +170730557947,219,0 +170730557995,219,0 +170730558043,219,0 +170730558093,219,0 +170730558141,219,0 +170730558189,220,0 +170730558238,219,0 +170730558286,219,0 +170730558334,219,0 +170730558382,219,0 +170730558430,219,0 +170730558478,219,0 +170730558526,219,0 +170730558576,219,0 +170730558624,220,0 +170730558671,219,0 +170730558720,219,0 +170730558768,219,0 +170730558816,220,0 +170730558863,249,0 +170730558911,277,1 +170730558998,220,0 +170730559048,219,0 +170730559096,219,0 +170730559144,219,0 +170730559192,219,0 +170730559241,219,0 +170730559291,219,0 +170730559340,219,0 +170730559388,219,0 +170730559438,220,0 +170730559486,219,0 +170730559534,219,0 +170730559581,219,0 +170730559631,219,0 +170730559680,219,0 +170730559728,219,0 +170730559776,219,0 +170730559824,220,0 +170730559874,236,0 +170730559922,252,0 +170730559970,235,0 +170730560018,220,0 +170730560066,219,0 +170730560115,219,0 +170730560163,219,0 +170730560211,219,0 +170730560261,219,0 +170730560310,219,0 +170730560358,220,0 +170730560406,219,0 +170730560454,219,0 +170730560502,219,0 +170730560551,219,0 +170730560601,219,0 +170730560649,219,0 +170730560697,219,0 +170730560745,219,0 +170730560794,219,0 +170730560842,219,0 +170730560892,220,0 +170730560940,251,0 +170730560988,252,0 +170730561037,227,0 +170730561087,219,0 +170730561135,219,0 +170730561184,219,0 +170730561232,219,0 +170730561282,219,0 +170730561331,219,0 +170730561379,219,0 +170730561427,219,0 +170730561477,219,0 +170730561526,219,0 +170730561574,219,0 +170730561624,220,0 +170730561672,220,0 +170730561721,220,0 +170730561769,219,0 +170730561817,219,0 +170730561866,219,0 +170730561914,220,0 +170730561962,221,0 +170730562010,250,0 +170730562060,268,0 +170730562108,225,0 +170730562156,219,0 +170730562204,219,0 +170730562253,219,0 +170730562301,219,0 +170730562351,219,0 +170730562399,219,0 +170730562448,219,0 +170730562496,219,0 +170730562544,219,0 +170730562592,220,0 +170730562640,219,0 +170730562688,219,0 +170730562736,219,0 +170730562784,219,0 +170730562834,219,0 +170730562883,219,0 +170730562933,220,0 +170730562981,220,0 +170730563028,223,0 +170730563078,247,0 +170730563128,233,0 +170730563175,220,0 +170730563223,219,0 +170730563273,219,0 +170730563321,219,0 +170730563369,219,0 +170730563417,219,0 +170730563465,220,0 +170730563513,219,0 +170730563562,219,0 +170730563610,219,0 +170730563658,219,0 +170730563706,219,0 +170730563756,219,0 +170730563805,219,0 +170730563855,219,0 +170730563904,219,0 +170730563952,219,0 +170730564002,219,0 +170730564050,220,0 +170730564099,262,0 +170730564147,257,0 +170730564195,226,0 +170730564245,219,0 +170730564293,218,0 +170730564342,218,0 +170730564390,218,0 +170730564438,219,0 +170730564488,219,0 +170730564537,218,0 +170730564585,219,0 +170730564635,219,0 +170730564683,219,0 +170730564731,219,0 +170730564779,219,0 +170730564827,219,0 +170730564875,219,0 +170730564924,219,0 +170730564972,218,0 +170730565020,219,0 +170730565068,219,0 +170730565118,221,0 +170730565167,256,0 +170730565215,268,0 +170730565263,222,0 +170730565311,219,0 +170730565359,218,0 +170730565409,219,0 +170730565457,219,0 +170730565504,219,0 +170730565552,218,0 +170730565600,219,0 +170730565648,219,0 +170730565696,219,0 +170730565744,218,0 +170730565792,219,0 +170730565840,219,0 +170730565888,219,0 +170730565938,219,0 +170730565987,219,0 +170730566035,219,0 +170730566083,219,0 +170730566131,220,0 +170730566179,259,0 +170730566227,274,1 +170730566312,223,0 +170730566362,220,0 +170730566410,220,0 +170730566458,219,0 +170730566506,220,0 +170730566555,219,0 +170730566603,220,0 +170730566651,220,0 +170730566699,220,0 +170730566747,219,0 +170730566797,219,0 +170730566845,220,0 +170730566894,219,0 +170730566944,220,0 +170730566992,220,0 +170730567040,220,0 +170730567088,219,0 +170730567137,220,0 +170730567187,220,0 +170730567236,250,0 +170730567284,257,0 +170730567334,229,0 +170730567383,220,0 +170730567431,219,0 +170730567479,220,0 +170730567529,219,0 +170730567577,220,0 +170730567625,220,0 +170730567673,219,0 +170730567720,220,0 +170730567770,219,0 +170730567818,220,0 +170730567867,219,0 +170730567915,219,0 +170730567963,219,0 +170730568011,219,0 +170730568059,219,0 +170730568107,220,0 +170730568155,220,0 +170730568203,219,0 +170730568251,221,0 +170730568299,255,0 +170730568347,264,0 +170730568395,227,0 +170730568443,219,0 +170730568491,219,0 +170730568539,220,0 +170730568589,219,0 +170730568637,219,0 +170730568686,220,0 +170730568734,219,0 +170730568782,219,0 +170730568830,219,0 +170730568878,219,0 +170730568928,219,0 +170730568975,220,0 +170730569023,220,0 +170730569071,219,0 +170730569119,220,0 +170730569167,219,0 +170730569215,219,0 +170730569263,219,0 +170730569311,221,0 +170730569359,253,0 +170730569407,265,0 +170730569456,223,0 +170730569506,219,0 +170730569554,219,0 +170730569602,219,0 +170730569651,219,0 +170730569699,220,0 +170730569747,220,0 +170730569795,219,0 +170730569843,219,0 +170730569891,219,0 +170730569938,219,0 +170730569986,219,0 +170730570034,219,0 +170730570084,220,0 +170730570132,219,0 +170730570179,219,0 +170730570227,219,0 +170730570275,219,0 +170730570323,220,0 +170730570371,223,0 +170730570419,253,0 +170730570468,242,0 +170730570516,221,0 +170730570566,220,0 +170730570615,219,0 +170730570663,219,0 +170730570713,219,0 +170730570761,219,0 +170730570809,219,0 +170730570857,219,0 +170730570905,219,0 +170730570952,219,0 +170730571000,219,0 +170730571048,219,0 +170730571096,219,0 +170730571146,219,0 +170730571194,219,0 +170730571242,220,0 +170730571290,219,0 +170730571339,220,0 +170730571389,220,0 +170730571437,250,0 +170730571484,256,0 +170730571532,222,0 +170730571580,220,0 +170730571628,219,0 +170730571676,219,0 +170730571726,219,0 +170730571775,219,0 +170730571825,219,0 +170730571874,219,0 +170730571922,219,0 +170730571972,219,0 +170730572021,219,0 +170730572069,219,0 +170730572117,219,0 +170730572165,219,0 +170730572213,219,0 +170730572261,219,0 +170730572309,219,0 +170730572357,219,0 +170730572405,219,0 +170730572453,221,0 +170730572501,245,0 +170730572551,258,0 +170730572599,225,0 +170730572647,219,0 +170730572695,219,0 +170730572742,219,0 +170730572790,219,0 +170730572838,219,0 +170730572886,219,0 +170730572934,219,0 +170730572984,219,0 +170730573033,219,0 +170730573081,219,0 +170730573129,219,0 +170730573177,220,0 +170730573225,219,0 +170730573273,219,0 +170730573323,219,0 +170730573370,219,0 +170730573418,219,0 +170730573466,220,0 +170730573516,221,0 +170730573564,252,0 +170730573613,260,0 +170730573661,222,0 +170730573709,219,0 +170730573757,219,0 +170730573807,219,0 +170730573854,219,0 +170730573902,219,0 +170730573950,219,0 +170730573998,219,0 +170730574046,219,0 +170730574094,219,0 +170730574142,219,0 +170730574190,219,0 +170730574238,219,0 +170730574285,219,0 +170730574333,219,0 +170730574381,219,0 +170730574429,219,0 +170730574477,219,0 +170730574525,220,0 +170730574573,224,0 +170730574621,251,0 +170730574668,246,0 +170730574716,221,0 +170730574764,219,0 +170730574812,219,0 +170730574860,219,0 +170730574909,219,0 +170730574957,219,0 +170730575005,219,0 +170730575053,219,0 +170730575101,219,0 +170730575149,219,0 +170730575198,219,0 +170730575246,219,0 +170730575295,219,0 +170730575343,219,0 +170730575393,219,0 +170730575441,219,0 +170730575489,219,0 +170730575537,219,0 +170730575586,220,0 +170730575636,261,0 +170730575684,253,0 +170730575733,227,0 +170730575781,220,0 +170730575829,219,0 +170730575877,219,0 +170730575925,219,0 +170730575973,220,0 +170730576021,220,0 +170730576069,219,0 +170730576119,220,0 +170730576168,219,0 +170730576216,219,0 +170730576266,219,0 +170730576315,219,0 +170730576363,220,0 +170730576411,219,0 +170730576459,219,0 +170730576507,219,0 +170730576555,220,0 +170730576605,220,0 +170730576653,221,0 +170730576701,258,0 +170730576749,266,0 +170730576798,225,0 +170730576846,219,0 +170730576894,220,0 +170730576942,220,0 +170730576990,219,0 +170730577038,219,0 +170730577086,219,0 +170730577134,220,0 +170730577182,219,0 +170730577230,219,0 +170730577278,219,0 +170730577325,219,0 +170730577373,220,0 +170730577421,219,0 +170730577471,220,0 +170730577518,219,0 +170730577566,219,0 +170730577614,219,0 +170730577662,220,0 +170730577710,220,0 +170730577758,251,0 +170730577807,263,0 +170730577855,226,0 +170730577903,220,0 +170730577951,219,0 +170730577999,219,0 +170730578047,219,0 +170730578095,219,0 +170730578144,219,0 +170730578194,219,0 +170730578242,218,0 +170730578290,219,0 +170730578338,219,0 +170730578386,219,0 +170730578435,219,0 +170730578485,219,0 +170730578533,219,0 +170730578581,219,0 +170730578629,219,0 +170730578676,219,0 +170730578724,220,0 +170730578772,227,0 +170730578820,261,0 +170730578868,251,0 +170730578916,222,0 +170730578964,220,0 +170730579012,219,0 +170730579061,219,0 +170730579109,219,0 +170730579157,219,0 +170730579205,220,0 +170730579253,220,0 +170730579300,219,0 +170730579350,220,0 +170730579398,219,0 +170730579446,220,0 +170730579494,219,0 +170730579542,219,0 +170730579589,219,0 +170730579637,219,0 +170730579687,219,0 +170730579735,219,0 +170730579783,220,0 +170730579831,250,0 +170730579878,248,0 +170730579926,223,0 +170730579974,220,0 +170730580022,220,0 +170730580070,220,0 +170730580118,219,0 +170730580167,220,0 +170730580215,219,0 +170730580263,220,0 +170730580311,219,0 +170730580359,220,0 +170730580407,219,0 +170730580455,219,0 +170730580503,219,0 +170730580551,219,0 +170730580598,220,0 +170730580646,219,0 +170730580694,220,0 +170730580742,219,0 +170730580790,220,0 +170730580838,220,0 +170730580886,245,0 +170730580935,265,0 +170730580983,221,0 +170730581031,220,0 +170730581079,220,0 +170730581127,219,0 +170730581175,219,0 +170730581222,219,0 +170730581270,219,0 +170730581320,219,0 +170730581368,220,0 +170730581417,219,0 +170730581465,220,0 +170730581515,219,0 +170730581564,219,0 +170730581614,219,0 +170730581662,220,0 +170730581711,219,0 +170730581759,220,0 +170730581809,219,0 +170730581857,220,0 +170730581905,220,0 +170730581954,247,0 +170730582002,268,0 +170730582050,224,0 +170730582098,219,0 +170730582146,219,0 +170730582194,219,0 +170730582244,219,0 +170730582292,219,0 +170730582340,220,0 +170730582388,219,0 +170730582436,219,0 +170730582485,219,0 +170730582533,219,0 +170730582581,219,0 +170730582629,219,0 +170730582677,220,0 +170730582725,219,0 +170730582774,219,0 +170730582822,219,0 +170730582872,219,0 +170730582921,220,0 +170730582969,231,0 +170730583017,254,0 +170730583065,230,0 +170730583113,220,0 +170730583161,219,0 +170730583208,219,0 +170730583256,219,0 +170730583304,219,0 +170730583352,219,0 +170730583400,219,0 +170730583448,219,0 +170730583496,219,0 +170730583544,220,0 +170730583592,219,0 +170730583639,219,0 +170730583687,219,0 +170730583735,219,0 +170730583783,219,0 +170730583831,219,0 +170730583879,219,0 +170730583927,219,0 +170730583975,220,0 +170730584023,222,0 +170730584073,250,0 +170730584121,246,0 +170730584170,221,0 +170730584220,219,0 +170730584268,219,0 +170730584316,219,0 +170730584364,219,0 +170730584412,219,0 +170730584461,219,0 +170730584509,219,0 +170730584557,219,0 +170730584605,219,0 +170730584655,219,0 +170730584703,219,0 +170730584751,219,0 +170730584799,219,0 +170730584846,219,0 +170730584894,219,0 +170730584942,219,0 +170730584990,220,0 +170730585038,220,0 +170730585088,249,0 +170730585136,254,0 +170730585184,225,0 +170730585232,220,0 +170730585279,219,0 +170730585327,219,0 +170730585375,219,0 +170730585423,219,0 +170730585471,218,0 +170730585519,218,0 +170730585568,219,0 +170730585616,219,0 +170730585664,219,0 +170730585712,218,0 +170730585760,219,0 +170730585808,218,0 +170730585856,219,0 +170730585905,218,0 +170730585953,219,0 +170730586001,219,0 +170730586049,218,0 +170730586097,220,0 +170730586145,258,0 +170730586193,264,0 +170730586241,228,0 +170730586290,219,0 +170730586339,219,0 +170730586387,219,0 +170730586435,219,0 +170730586483,219,0 +170730586531,219,0 +170730586579,219,0 +170730586627,219,0 +170730586675,219,0 +170730586723,219,0 +170730586770,219,0 +170730586818,219,0 +170730586866,219,0 +170730586914,219,0 +170730586964,218,0 +170730587012,219,0 +170730587059,219,0 +170730587109,219,0 +170730587157,220,0 +170730587206,284,1 +170730587292,229,0 +170730587341,219,0 +170730587391,220,0 +170730587439,219,0 +170730587487,219,0 +170730587536,219,0 +170730587584,219,0 +170730587632,219,0 +170730587680,219,0 +170730587728,219,0 +170730587778,219,0 +170730587826,219,0 +170730587874,219,0 +170730587921,219,0 +170730587971,219,0 +170730588019,219,0 +170730588067,219,0 +170730588115,219,0 +170730588163,219,0 +170730588211,220,0 +170730588259,249,0 +170730588307,261,0 +170730588355,225,0 +170730588404,219,0 +170730588454,219,0 +170730588502,219,0 +170730588550,219,0 +170730588598,219,0 +170730588647,219,0 +170730588697,219,0 +170730588746,219,0 +170730588794,219,0 +170730588842,219,0 +170730588892,219,0 +170730588941,219,0 +170730588989,219,0 +170730589039,219,0 +170730589087,219,0 +170730589135,219,0 +170730589182,218,0 +170730589230,220,0 +170730589278,251,0 +170730589326,247,0 +170730589376,225,0 +170730589424,220,0 +170730589471,219,0 +170730589519,219,0 +170730589567,219,0 +170730589615,220,0 +170730589665,219,0 +170730589714,219,0 +170730589762,219,0 +170730589810,219,0 +170730589858,219,0 +170730589906,219,0 +170730589953,220,0 +170730590001,219,0 +170730590049,219,0 +170730590097,219,0 +170730590145,220,0 +170730590193,219,0 +170730590241,220,0 +170730590289,220,0 +170730590336,251,0 +170730590384,254,0 +170730590432,228,0 +170730590482,219,0 +170730590530,220,0 +170730590577,219,0 +170730590625,219,0 +170730590673,219,0 +170730590721,219,0 +170730590769,219,0 +170730590817,219,0 +170730590865,220,0 +170730590913,219,0 +170730590960,219,0 +170730591008,219,0 +170730591056,219,0 +170730591104,220,0 +170730591152,220,0 +170730591200,219,0 +170730591248,219,0 +170730591296,219,0 +170730591343,220,0 +170730591391,249,0 +170730591441,253,0 +170730591489,227,0 +170730591538,219,0 +170730591586,219,0 +170730591634,219,0 +170730591682,219,0 +170730591730,219,0 +170730591777,219,0 +170730591827,219,0 +170730591876,219,0 +170730591924,219,0 +170730591972,219,0 +170730592021,219,0 +170730592070,219,0 +170730592118,219,0 +170730592166,219,0 +170730592214,220,0 +170730592263,220,0 +170730592311,219,0 +170730592359,220,0 +170730592407,221,0 +170730592455,253,0 +170730592504,262,0 +170730592552,225,0 +170730592600,220,0 +170730592648,219,0 +170730592696,220,0 +170730592744,220,0 +170730592791,220,0 +170730592839,219,0 +170730592887,220,0 +170730592935,220,0 +170730592983,220,0 +170730593031,220,0 +170730593079,220,0 +170730593127,219,0 +170730593175,219,0 +170730593223,220,0 +170730593270,219,0 +170730593320,219,0 +170730593368,220,0 +170730593416,220,0 +170730593463,222,0 +170730593511,251,0 +170730593559,255,0 +170730593607,226,0 +170730593655,221,0 +170730593703,221,0 +170730593751,220,0 +170730593799,221,0 +170730593847,221,0 +170730593895,221,0 +170730593942,221,0 +170730593990,220,0 +170730594038,220,0 +170730594086,221,0 +170730594134,220,0 +170730594182,219,0 +170730594231,220,0 +170730594279,220,0 +170730594327,220,0 +170730594375,220,0 +170730594423,220,0 +170730594471,221,0 +170730594518,225,0 +170730594566,253,0 +170730594614,252,0 +170730594664,222,0 +170730594713,220,0 +170730594761,219,0 +170730594809,219,0 +170730594857,220,0 +170730594905,220,0 +170730594954,219,0 +170730595004,220,0 +170730595052,219,0 +170730595099,220,0 +170730595147,220,0 +170730595195,220,0 +170730595243,220,0 +170730595291,220,0 +170730595339,220,0 +170730595387,219,0 +170730595435,219,0 +170730595482,220,0 +170730595530,220,0 +170730595578,237,0 +170730595628,254,0 +170730595676,223,0 +170730595723,220,0 +170730595771,219,0 +170730595819,220,0 +170730595867,220,0 +170730595915,219,0 +170730595963,220,0 +170730596011,220,0 +170730596059,220,0 +170730596107,219,0 +170730596155,219,0 +170730596202,220,0 +170730596250,219,0 +170730596298,219,0 +170730596346,219,0 +170730596394,219,0 +170730596442,219,0 +170730596490,219,0 +170730596538,220,0 +170730596587,220,0 +170730596635,253,0 +170730596683,260,0 +170730596731,223,0 +170730596779,220,0 +170730596827,219,0 +170730596874,219,0 +170730596922,219,0 +170730596970,219,0 +170730597018,219,0 +170730597066,219,0 +170730597114,219,0 +170730597162,219,0 +170730597210,219,0 +170730597258,219,0 +170730597306,219,0 +170730597355,219,0 +170730597403,219,0 +170730597451,219,0 +170730597499,219,0 +170730597547,219,0 +170730597594,219,0 +170730597642,220,0 +170730597690,256,0 +170730597740,266,0 +170730597787,227,0 +170730597837,219,0 +170730597886,219,0 +170730597934,219,0 +170730597984,219,0 +170730598032,219,0 +170730598080,219,0 +170730598128,219,0 +170730598175,219,0 +170730598223,219,0 +170730598271,219,0 +170730598319,219,0 +170730598367,219,0 +170730598415,219,0 +170730598463,219,0 +170730598511,219,0 +170730598559,219,0 +170730598607,220,0 +170730598654,219,0 +170730598702,221,0 +170730598750,247,0 +170730598798,253,0 +170730598848,224,0 +170730598896,219,0 +170730598945,220,0 +170730598993,219,0 +170730599042,219,0 +170730599092,219,0 +170730599142,219,0 +170730599190,219,0 +170730599239,219,0 +170730599287,220,0 +170730599335,219,0 +170730599383,218,0 +170730599431,219,0 +170730599480,219,0 +170730599530,220,0 +170730599578,219,0 +170730599626,220,0 +170730599673,219,0 +170730599721,220,0 +170730599769,221,0 +170730599817,254,0 +170730599865,257,0 +170730599915,223,0 +170730599963,219,0 +170730600011,220,0 +170730600059,219,0 +170730600107,220,0 +170730600155,220,0 +170730600204,220,0 +170730600252,219,0 +170730600300,220,0 +170730600349,219,0 +170730600397,219,0 +170730600445,219,0 +170730600495,220,0 +170730600543,219,0 +170730600592,220,0 +170730600642,219,0 +170730600691,220,0 +170730600739,220,0 +170730600787,220,0 +170730600835,251,0 +170730600883,259,0 +170730600931,223,0 +170730600979,220,0 +170730601027,220,0 +170730601076,220,0 +170730601126,219,0 +170730601174,219,0 +170730601223,219,0 +170730601273,219,0 +170730601321,220,0 +170730601369,220,0 +170730601417,219,0 +170730601466,219,0 +170730601514,220,0 +170730601564,219,0 +170730601613,219,0 +170730601663,219,0 +170730601712,219,0 +170730601760,219,0 +170730601808,220,0 +170730601858,222,0 +170730601906,250,0 +170730601955,261,0 +170730602003,222,0 +170730602051,220,0 +170730602099,220,0 +170730602149,219,0 +170730602198,220,0 +170730602246,219,0 +170730602294,219,0 +170730602343,220,0 +170730602393,220,0 +170730602441,220,0 +170730602491,220,0 +170730602540,219,0 +170730602588,219,0 +170730602636,220,0 +170730602684,219,0 +170730602732,220,0 +170730602780,219,0 +170730602829,220,0 +170730602877,220,0 +170730602927,223,0 +170730602975,254,0 +170730603023,238,0 +170730603073,220,0 +170730603122,220,0 +170730603170,219,0 +170730603218,219,0 +170730603268,220,0 +170730603317,220,0 +170730603365,219,0 +170730603413,219,0 +170730603461,219,0 +170730603509,219,0 +170730603557,220,0 +170730603605,219,0 +170730603654,220,0 +170730603704,219,0 +170730603752,220,0 +170730603800,219,0 +170730603850,220,0 +170730603899,220,0 +170730603947,221,0 +170730603995,252,0 +170730604043,253,0 +170730604092,227,0 +170730604140,220,0 +170730604190,220,0 +170730604238,219,0 +170730604286,220,0 +170730604335,220,0 +170730604385,219,0 +170730604434,220,0 +170730604484,220,0 +170730604532,220,0 +170730604581,220,0 +170730604631,220,0 +170730604680,220,0 +170730604728,220,0 +170730604778,220,0 +170730604827,220,0 +170730604877,220,0 +170730604925,220,0 +170730604974,221,0 +170730605022,254,0 +170730605070,254,0 +170730605120,227,0 +170730605167,220,0 +170730605217,219,0 +170730605265,219,0 +170730605313,219,0 +170730605361,219,0 +170730605410,219,0 +170730605458,219,0 +170730605506,219,0 +170730605554,219,0 +170730605602,219,0 +170730605650,219,0 +170730605698,219,0 +170730605746,219,0 +170730605794,219,0 +170730605844,219,0 +170730605892,219,0 +170730605940,219,0 +170730605987,219,0 +170730606035,220,0 +170730606083,248,0 +170730606133,254,0 +170730606182,229,0 +170730606230,219,0 +170730606278,219,0 +170730606326,219,0 +170730606376,219,0 +170730606424,219,0 +170730606472,219,0 +170730606520,219,0 +170730606569,219,0 +170730606619,219,0 +170730606667,219,0 +170730606715,218,0 +170730606764,219,0 +170730606814,219,0 +170730606862,219,0 +170730606910,219,0 +170730606959,219,0 +170730607007,219,0 +170730607055,220,0 +170730607105,220,0 +170730607154,260,0 +170730607202,254,0 +170730607250,224,0 +170730607298,219,0 +170730607346,219,0 +170730607396,219,0 +170730607445,219,0 +170730607493,219,0 +170730607543,219,0 +170730607591,219,0 +170730607640,219,0 +170730607688,219,0 +170730607736,218,0 +170730607784,219,0 +170730607832,219,0 +170730607882,219,0 +170730607930,219,0 +170730607979,219,0 +170730608027,219,0 +170730608075,219,0 +170730608125,220,0 +170730608172,264,0 +170730608222,286,1 +170730608311,220,0 +170730608359,220,0 +170730608408,220,0 +170730608458,220,0 +170730608507,220,0 +170730608555,220,0 +170730608605,220,0 +170730608653,219,0 +170730608701,220,0 +170730608749,219,0 +170730608797,219,0 +170730608845,219,0 +170730608894,220,0 +170730608942,219,0 +170730608990,219,0 +170730609040,219,0 +170730609088,220,0 +170730609136,220,0 +170730609184,220,0 +170730609233,255,0 +170730609283,259,0 +170730609331,231,0 +170730609379,220,0 +170730609427,219,0 +170730609476,220,0 +170730609524,220,0 +170730609574,219,0 +170730609622,219,0 +170730609671,219,0 +170730609719,219,0 +170730609767,219,0 +170730609815,220,0 +170730609864,219,0 +170730609912,219,0 +170730609960,219,0 +170730610008,219,0 +170730610058,219,0 +170730610107,220,0 +170730610155,220,0 +170730610203,220,0 +170730610251,221,0 +170730610301,256,0 +170730610349,260,0 +170730610397,225,0 +170730610446,219,0 +170730610496,219,0 +170730610544,219,0 +170730610593,219,0 +170730610641,220,0 +170730610691,219,0 +170730610740,219,0 +170730610790,219,0 +170730610838,219,0 +170730610887,219,0 +170730610935,220,0 +170730610983,219,0 +170730611033,219,0 +170730611081,219,0 +170730611130,219,0 +170730611178,219,0 +170730611228,219,0 +170730611276,220,0 +170730611325,253,0 +170730611375,271,1 +170730611457,220,0 +170730611505,219,0 +170730611553,219,0 +170730611601,219,0 +170730611649,219,0 +170730611697,219,0 +170730611745,219,0 +170730611793,219,0 +170730611841,220,0 +170730611890,219,0 +170730611940,219,0 +170730611988,219,0 +170730612036,220,0 +170730612084,219,0 +170730612132,219,0 +170730612180,219,0 +170730612228,220,0 +170730612275,220,0 +170730612323,220,0 +170730612371,253,0 +170730612419,261,0 +170730612469,226,0 +170730612517,219,0 +170730612565,219,0 +170730612613,219,0 +170730612661,219,0 +170730612709,219,0 +170730612756,219,0 +170730612804,219,0 +170730612852,220,0 +170730612900,219,0 +170730612950,219,0 +170730613000,219,0 +170730613047,219,0 +170730613097,220,0 +170730613145,220,0 +170730613193,220,0 +170730613242,219,0 +170730613290,219,0 +170730613338,219,0 +170730613386,221,0 +170730613434,255,0 +170730613482,259,0 +170730613530,229,0 +170730613578,220,0 +170730613626,219,0 +170730613674,219,0 +170730613722,219,0 +170730613770,219,0 +170730613820,219,0 +170730613869,219,0 +170730613917,219,0 +170730613967,219,0 +170730614016,219,0 +170730614064,219,0 +170730614112,219,0 +170730614160,219,0 +170730614208,219,0 +170730614256,219,0 +170730614304,219,0 +170730614354,219,0 +170730614403,220,0 +170730614451,221,0 +170730614501,250,0 +170730614549,256,0 +170730614596,224,0 +170730614644,220,0 +170730614694,219,0 +170730614743,219,0 +170730614791,219,0 +170730614839,219,0 +170730614887,219,0 +170730614937,219,0 +170730614985,219,0 +170730615033,220,0 +170730615082,220,0 +170730615130,219,0 +170730615180,219,0 +170730615228,219,0 +170730615275,219,0 +170730615323,220,0 +170730615371,220,0 +170730615419,220,0 +170730615467,220,0 +170730615515,225,0 +170730615563,249,0 +170730615613,237,0 +170730615662,220,0 +170730615712,219,0 +170730615761,219,0 +170730615809,219,0 +170730615859,219,0 +170730615907,219,0 +170730615955,219,0 +170730616003,219,0 +170730616051,219,0 +170730616098,219,0 +170730616148,219,0 +170730616196,219,0 +170730616244,219,0 +170730616292,219,0 +170730616340,219,0 +170730616388,219,0 +170730616436,219,0 +170730616484,219,0 +170730616533,220,0 +170730616581,249,0 +170730616631,259,0 +170730616679,227,0 +170730616727,219,0 +170730616775,219,0 +170730616823,219,0 +170730616872,220,0 +170730616922,219,0 +170730616971,219,0 +170730617019,219,0 +170730617067,219,0 +170730617117,219,0 +170730617165,220,0 +170730617213,219,0 +170730617261,219,0 +170730617309,219,0 +170730617358,219,0 +170730617406,220,0 +170730617454,222,0 +170730617502,224,0 +170730617550,227,0 +170730617598,230,0 +170730617646,250,0 +170730617694,253,0 +170730617743,223,0 +170730617793,219,0 +170730617841,219,0 +170730617889,219,0 +170730617937,219,0 +170730617986,219,0 +170730618036,219,0 +170730618084,219,0 +170730618132,220,0 +170730618180,219,0 +170730618229,219,0 +170730618277,219,0 +170730618327,219,0 +170730618375,219,0 +170730618423,219,0 +170730618471,219,0 +170730618518,219,0 +170730618568,219,0 +170730618616,219,0 +170730618666,233,0 +170730618713,253,0 +170730618763,225,0 +170730618811,220,0 +170730618860,219,0 +170730618908,218,0 +170730618956,219,0 +170730619004,219,0 +170730619052,219,0 +170730619100,219,0 +170730619150,219,0 +170730619198,218,0 +170730619247,218,0 +170730619297,219,0 +170730619346,219,0 +170730619396,219,0 +170730619445,219,0 +170730619495,219,0 +170730619543,218,0 +170730619591,219,0 +170730619639,219,0 +170730619687,220,0 +170730619735,253,0 +170730619782,261,0 +170730619830,226,0 +170730619878,219,0 +170730619926,219,0 +170730619976,219,0 +170730620024,219,0 +170730620072,219,0 +170730620119,219,0 +170730620169,219,0 +170730620217,219,0 +170730620265,218,0 +170730620313,219,0 +170730620362,219,0 +170730620410,219,0 +170730620460,219,0 +170730620508,219,0 +170730620556,219,0 +170730620604,219,0 +170730620652,219,0 +170730620699,220,0 +170730620747,222,0 +170730620795,252,0 +170730620843,269,0 +170730620891,221,0 +170730620939,219,0 +170730620987,219,0 +170730621036,219,0 +170730621084,219,0 +170730621132,219,0 +170730621180,219,0 +170730621228,219,0 +170730621276,219,0 +170730621324,219,0 +170730621371,218,0 +170730621419,219,0 +170730621467,219,0 +170730621515,219,0 +170730621565,219,0 +170730621612,219,0 +170730621660,219,0 +170730621708,219,0 +170730621758,220,0 +170730621806,221,0 +170730621853,253,0 +170730621901,268,0 +170730621949,223,0 +170730621997,219,0 +170730622045,219,0 +170730622093,219,0 +170730622141,219,0 +170730622189,219,0 +170730622237,218,0 +170730622285,219,0 +170730622332,219,0 +170730622382,218,0 +170730622430,219,0 +170730622478,219,0 +170730622527,219,0 +170730622575,219,0 +170730622623,219,0 +170730622671,219,0 +170730622721,219,0 +170730622768,219,0 +170730622816,220,0 +170730622864,243,0 +170730622912,254,0 +170730622961,221,0 +170730623009,221,0 +170730623057,220,0 +170730623105,220,0 +170730623153,220,0 +170730623201,220,0 +170730623249,220,0 +170730623297,220,0 +170730623345,220,0 +170730623393,220,0 +170730623441,220,0 +170730623488,220,0 +170730623536,220,0 +170730623584,220,0 +170730623632,220,0 +170730623680,220,0 +170730623729,220,0 +170730623777,220,0 +170730623825,220,0 +170730623873,221,0 +170730623921,253,0 +170730623969,259,0 +170730624017,228,0 +170730624065,220,0 +170730624113,220,0 +170730624161,220,0 +170730624208,220,0 +170730624258,220,0 +170730624306,220,0 +170730624355,219,0 +170730624405,220,0 +170730624453,220,0 +170730624502,220,0 +170730624550,220,0 +170730624598,220,0 +170730624646,220,0 +170730624694,220,0 +170730624742,220,0 +170730624792,220,0 +170730624840,220,0 +170730624889,220,0 +170730624937,222,0 +170730624985,258,0 +170730625033,262,0 +170730625081,227,0 +170730625129,220,0 +170730625177,220,0 +170730625226,220,0 +170730625274,220,0 +170730625322,220,0 +170730625370,220,0 +170730625418,220,0 +170730625466,220,0 +170730625514,219,0 +170730625564,220,0 +170730625611,220,0 +170730625659,220,0 +170730625709,220,0 +170730625757,220,0 +170730625807,220,0 +170730625856,220,0 +170730625904,220,0 +170730625953,220,0 +170730626003,225,0 +170730626051,249,0 +170730626099,245,0 +170730626147,221,0 +170730626195,220,0 +170730626243,220,0 +170730626292,219,0 +170730626340,220,0 +170730626388,220,0 +170730626436,220,0 +170730626484,220,0 +170730626532,219,0 +170730626580,220,0 +170730626628,220,0 +170730626678,220,0 +170730626725,219,0 +170730626773,219,0 +170730626821,220,0 +170730626869,220,0 +170730626917,220,0 +170730626965,220,0 +170730627015,221,0 +170730627063,252,0 +170730627110,253,0 +170730627158,229,0 +170730627206,220,0 +170730627254,220,0 +170730627302,220,0 +170730627350,220,0 +170730627398,220,0 +170730627446,219,0 +170730627495,219,0 +170730627545,220,0 +170730627593,220,0 +170730627640,220,0 +170730627688,219,0 +170730627736,220,0 +170730627784,220,0 +170730627832,220,0 +170730627880,220,0 +170730627928,220,0 +170730627976,219,0 +170730628023,220,0 +170730628073,220,0 +170730628121,250,0 +170730628169,254,0 +170730628219,228,0 +170730628266,220,0 +170730628314,220,0 +170730628362,220,0 +170730628412,220,0 +170730628459,220,0 +170730628507,220,0 +170730628555,220,0 +170730628603,220,0 +170730628651,220,0 +170730628699,220,0 +170730628747,220,0 +170730628795,220,0 +170730628842,220,0 +170730628892,219,0 +170730628940,220,0 +170730628988,220,0 +170730629035,220,0 +170730629083,220,0 +170730629131,221,0 +170730629181,263,0 +170730629228,263,0 +170730629276,228,0 +170730629324,220,0 +170730629372,220,0 +170730629420,220,0 +170730629468,220,0 +170730629516,220,0 +170730629564,220,0 +170730629612,220,0 +170730629660,220,0 +170730629707,220,0 +170730629755,220,0 +170730629803,220,0 +170730629851,220,0 +170730629899,219,0 +170730629947,221,0 +170730629995,220,0 +170730630043,220,0 +170730630091,220,0 +170730630139,221,0 +170730630188,222,0 +170730630236,252,0 +170730630284,269,0 +170730630332,223,0 +170730630380,220,0 +170730630427,220,0 +170730630475,219,0 +170730630525,220,0 +170730630573,220,0 +170730630621,220,0 +170730630668,219,0 +170730630716,220,0 +170730630764,220,0 +170730630812,220,0 +170730630860,219,0 +170730630908,220,0 +170730630956,220,0 +170730631004,219,0 +170730631052,219,0 +170730631100,220,0 +170730631147,220,0 +170730631195,220,0 +170730631243,222,0 +170730631291,249,0 +170730631339,263,0 +170730631387,223,0 +170730631436,220,0 +170730631484,219,0 +170730631532,220,0 +170730631580,220,0 +170730631628,220,0 +170730631676,220,0 +170730631724,220,0 +170730631771,220,0 +170730631821,220,0 +170730631869,220,0 +170730631917,220,0 +170730631964,220,0 +170730632012,220,0 +170730632060,220,0 +170730632108,220,0 +170730632156,220,0 +170730632204,220,0 +170730632252,220,0 +170730632300,230,0 +170730632348,253,0 +170730632395,234,0 +170730632443,221,0 +170730632491,220,0 +170730632539,220,0 +170730632587,220,0 +170730632635,219,0 +170730632683,220,0 +170730632731,220,0 +170730632778,220,0 +170730632826,219,0 +170730632874,220,0 +170730632922,220,0 +170730632970,220,0 +170730633018,220,0 +170730633066,220,0 +170730633114,219,0 +170730633162,220,0 +170730633209,220,0 +170730633257,220,0 +170730633305,220,0 +170730633353,254,0 +170730633401,250,0 +170730633449,228,0 +170730633497,220,0 +170730633545,220,0 +170730633594,220,0 +170730633642,219,0 +170730633690,220,0 +170730633740,219,0 +170730633789,219,0 +170730633837,219,0 +170730633887,219,0 +170730633935,220,0 +170730633984,220,0 +170730634032,219,0 +170730634080,219,0 +170730634130,219,0 +170730634178,220,0 +170730634227,220,0 +170730634275,219,0 +170730634325,219,0 +170730634373,221,0 +170730634421,245,0 +170730634470,274,1 +170730634552,220,0 +170730634601,220,0 +170730634651,220,0 +170730634700,219,0 +170730634750,220,0 +170730634798,220,0 +170730634846,219,0 +170730634894,220,0 +170730634942,220,0 +170730634991,219,0 +170730635041,220,0 +170730635089,220,0 +170730635137,220,0 +170730635185,220,0 +170730635233,220,0 +170730635282,220,0 +170730635330,220,0 +170730635378,220,0 +170730635428,221,0 +170730635476,250,0 +170730635523,261,0 +170730635573,224,0 +170730635621,220,0 +170730635669,220,0 +170730635717,220,0 +170730635766,220,0 +170730635814,219,0 +170730635862,220,0 +170730635912,220,0 +170730635961,220,0 +170730636009,219,0 +170730636059,219,0 +170730636107,220,0 +170730636155,220,0 +170730636204,220,0 +170730636254,219,0 +170730636302,219,0 +170730636350,219,0 +170730636398,219,0 +170730636447,220,0 +170730636495,223,0 +170730636543,251,0 +170730636593,242,0 +170730636641,221,0 +170730636689,220,0 +170730636737,220,0 +170730636786,220,0 +170730636834,220,0 +170730636882,220,0 +170730636932,220,0 +170730636980,219,0 +170730637029,220,0 +170730637077,219,0 +170730637125,220,0 +170730637173,219,0 +170730637221,219,0 +170730637269,220,0 +170730637319,220,0 +170730637368,220,0 +170730637418,220,0 +170730637467,220,0 +170730637515,221,0 +170730637563,257,0 +170730637611,259,0 +170730637661,229,0 +170730637709,220,0 +170730637756,220,0 +170730637804,220,0 +170730637852,219,0 +170730637900,220,0 +170730637948,219,0 +170730637996,220,0 +170730638046,220,0 +170730638094,220,0 +170730638142,220,0 +170730638190,220,0 +170730638238,220,0 +170730638286,219,0 +170730638335,219,0 +170730638383,220,0 +170730638431,220,0 +170730638479,220,0 +170730638529,220,0 +170730638578,222,0 +170730638626,248,0 +170730638676,271,1 +170730638759,219,0 +170730638807,219,0 +170730638855,218,0 +170730638905,219,0 +170730638953,219,0 +170730639002,219,0 +170730639050,219,0 +170730639098,219,0 +170730639146,218,0 +170730639194,219,0 +170730639243,219,0 +170730639291,218,0 +170730639339,219,0 +170730639387,218,0 +170730639435,218,0 +170730639485,219,0 +170730639533,219,0 +170730639582,219,0 +170730639630,221,0 +170730639678,250,0 +170730639726,269,0 +170730639774,221,0 +170730639822,219,0 +170730639872,219,0 +170730639920,219,0 +170730639968,219,0 +170730640016,218,0 +170730640065,218,0 +170730640113,219,0 +170730640163,218,0 +170730640211,218,0 +170730640260,218,0 +170730640308,219,0 +170730640356,219,0 +170730640406,219,0 +170730640454,218,0 +170730640502,218,0 +170730640549,218,0 +170730640599,219,0 +170730640647,220,0 +170730640695,241,0 +170730640743,253,0 +170730640792,222,0 +170730640840,220,0 +170730640888,219,0 +170730640938,218,0 +170730640986,219,0 +170730641034,219,0 +170730641083,219,0 +170730641131,219,0 +170730641179,219,0 +170730641229,219,0 +170730641277,219,0 +170730641325,218,0 +170730641373,219,0 +170730641421,219,0 +170730641470,219,0 +170730641518,218,0 +170730641568,219,0 +170730641617,219,0 +170730641665,219,0 +170730641713,221,0 +170730641761,251,0 +170730641811,256,0 +170730641860,224,0 +170730641910,219,0 +170730641958,218,0 +170730642007,219,0 +170730642055,218,0 +170730642103,219,0 +170730642151,219,0 +170730642199,219,0 +170730642247,218,0 +170730642297,219,0 +170730642345,219,0 +170730642392,218,0 +170730642442,219,0 +170730642490,219,0 +170730642538,219,0 +170730642586,219,0 +170730642635,219,0 +170730642683,219,0 +170730642733,220,0 +170730642782,227,0 +170730642830,257,0 +170730642878,237,0 +170730642926,220,0 +170730642974,219,0 +170730643024,219,0 +170730643072,219,0 +170730643120,219,0 +170730643168,219,0 +170730643217,219,0 +170730643267,219,0 +170730643315,219,0 +170730643363,219,0 +170730643412,219,0 +170730643460,219,0 +170730643510,219,0 +170730643558,219,0 +170730643606,219,0 +170730643653,219,0 +170730643701,219,0 +170730643751,219,0 +170730643800,220,0 +170730643848,248,0 +170730643896,249,0 +170730643944,222,0 +170730643992,220,0 +170730644040,219,0 +170730644090,219,0 +170730644138,219,0 +170730644186,219,0 +170730644234,219,0 +170730644283,219,0 +170730644331,219,0 +170730644379,219,0 +170730644429,219,0 +170730644477,219,0 +170730644526,219,0 +170730644574,219,0 +170730644624,219,0 +170730644672,219,0 +170730644720,219,0 +170730644769,219,0 +170730644819,219,0 +170730644866,220,0 +170730644914,250,0 +170730644962,266,0 +170730645010,226,0 +170730645060,219,0 +170730645108,219,0 +170730645156,219,0 +170730645204,219,0 +170730645253,219,0 +170730645301,219,0 +170730645349,219,0 +170730645399,218,0 +170730645448,219,0 +170730645496,219,0 +170730645546,219,0 +170730645594,219,0 +170730645643,219,0 +170730645693,219,0 +170730645742,219,0 +170730645792,219,0 +170730645840,219,0 +170730645888,219,0 +170730645936,219,0 +170730645984,219,0 +170730646032,219,0 +170730646081,218,0 +170730646131,219,0 +170730646179,219,0 +170730646228,219,0 +170730646276,219,0 +170730646324,219,0 +170730646372,219,0 +170730646421,219,0 +170730646469,254,0 +170730646519,255,0 +170730646568,227,0 +170730646616,219,0 +170730646664,219,0 +170730646712,219,0 +170730646760,219,0 +170730646810,219,0 +170730646859,219,0 +170730646907,219,0 +170730646955,219,0 +170730647003,219,0 +170730647051,219,0 +170730647099,219,0 +170730647147,219,0 +170730647195,219,0 +170730647243,219,0 +170730647291,219,0 +170730647339,219,0 +170730647388,219,0 +170730647436,219,0 +170730647484,221,0 +170730647532,245,0 +170730647582,256,0 +170730647630,224,0 +170730647679,219,0 +170730647727,219,0 +170730647775,219,0 +170730647823,219,0 +170730647871,219,0 +170730647919,219,0 +170730647969,219,0 +170730648017,219,0 +170730648066,219,0 +170730648116,219,0 +170730648164,219,0 +170730648212,219,0 +170730648260,219,0 +170730648309,219,0 +170730648359,219,0 +170730648408,219,0 +170730648456,219,0 +170730648504,220,0 +170730648552,252,0 +170730648602,252,0 +170730648650,228,0 +170730648698,220,0 +170730648746,220,0 +170730648794,219,0 +170730648842,219,0 +170730648890,219,0 +170730648938,219,0 +170730648986,219,0 +170730649035,219,0 +170730649085,219,0 +170730649133,219,0 +170730649182,220,0 +170730649230,219,0 +170730649280,219,0 +170730649328,219,0 +170730649376,219,0 +170730649424,219,0 +170730649473,219,0 +170730649523,220,0 +170730649571,220,0 +170730649619,247,0 +170730649667,257,0 +170730649715,227,0 +170730649764,220,0 +170730649812,219,0 +170730649860,219,0 +170730649909,219,0 +170730649958,219,0 +170730650005,219,0 +170730650053,219,0 +170730650101,219,0 +170730650149,219,0 +170730650197,219,0 +170730650245,219,0 +170730650293,220,0 +170730650341,220,0 +170730650389,219,0 +170730650439,220,0 +170730650487,220,0 +170730650536,219,0 +170730650585,219,0 +170730650632,221,0 +170730650682,247,0 +170730650730,255,0 +170730650778,226,0 +170730650826,220,0 +170730650876,219,0 +170730650924,219,0 +170730650972,219,0 +170730651019,219,0 +170730651067,219,0 +170730651115,219,0 +170730651163,219,0 +170730651211,219,0 +170730651260,219,0 +170730651310,219,0 +170730651358,219,0 +170730651405,219,0 +170730651453,219,0 +170730651503,219,0 +170730651551,219,0 +170730651599,219,0 +170730651648,220,0 +170730651696,230,0 +170730651744,255,0 +170730651792,247,0 +170730651840,222,0 +170730651888,220,0 +170730651938,219,0 +170730651987,219,0 +170730652035,218,0 +170730652083,219,0 +170730652131,219,0 +170730652179,219,0 +170730652229,219,0 +170730652277,219,0 +170730652325,219,0 +170730652374,219,0 +170730652424,219,0 +170730652473,219,0 +170730652521,219,0 +170730652571,219,0 +170730652619,219,0 +170730652668,219,0 +170730652716,220,0 +170730652764,246,0 +170730652812,255,0 +170730652861,227,0 +170730652909,219,0 +170730652957,219,0 +170730653007,219,0 +170730653056,218,0 +170730653106,219,0 +170730653154,219,0 +170730653202,219,0 +170730653251,219,0 +170730653299,219,0 +170730653347,218,0 +170730653395,219,0 +170730653443,219,0 +170730653491,219,0 +170730653541,219,0 +170730653590,219,0 +170730653640,218,0 +170730653689,219,0 +170730653737,219,0 +170730653787,221,0 +170730653835,253,0 +170730653883,262,0 +170730653931,222,0 +170730653979,219,0 +170730654027,219,0 +170730654075,219,0 +170730654124,219,0 +170730654172,219,0 +170730654220,218,0 +170730654268,219,0 +170730654316,219,0 +170730654364,219,0 +170730654412,219,0 +170730654460,219,0 +170730654508,219,0 +170730654557,219,0 +170730654605,218,0 +170730654653,219,0 +170730654701,219,0 +170730654749,219,0 +170730654797,219,0 +170730654845,236,0 +170730654893,251,0 +170730654943,237,0 +170730654990,220,0 +170730655040,219,0 +170730655088,219,0 +170730655137,219,0 +170730655185,219,0 +170730655233,219,0 +170730655283,219,0 +170730655331,219,0 +170730655379,219,0 +170730655427,219,0 +170730655475,219,0 +170730655523,219,0 +170730655571,219,0 +170730655620,219,0 +170730655668,219,0 +170730655717,219,0 +170730655765,219,0 +170730655813,219,0 +170730655863,220,0 +170730655912,245,0 +170730655962,254,0 +170730656010,227,0 +170730656060,220,0 +170730656109,219,0 +170730656157,219,0 +170730656207,219,0 +170730656254,219,0 +170730656302,219,0 +170730656352,219,0 +170730656400,219,0 +170730656448,219,0 +170730656497,219,0 +170730656547,219,0 +170730656596,219,0 +170730656644,219,0 +170730656694,219,0 +170730656742,219,0 +170730656790,219,0 +170730656838,220,0 +170730656886,220,0 +170730656934,225,0 +170730656983,262,0 +170730657033,261,0 +170730657081,222,0 +170730657129,219,0 +170730657177,220,0 +170730657225,219,0 +170730657274,219,0 +170730657324,219,0 +170730657373,219,0 +170730657421,219,0 +170730657470,219,0 +170730657519,219,0 +170730657566,219,0 +170730657614,219,0 +170730657662,219,0 +170730657712,220,0 +170730657761,219,0 +170730657809,220,0 +170730657859,219,0 +170730657908,219,0 +170730657956,219,0 +170730658004,257,0 +170730658054,251,0 +170730658102,224,0 +170730658150,220,0 +170730658198,220,0 +170730658246,219,0 +170730658294,219,0 +170730658342,219,0 +170730658391,219,0 +170730658441,219,0 +170730658489,219,0 +170730658537,219,0 +170730658586,219,0 +170730658634,219,0 +170730658684,219,0 +170730658732,219,0 +170730658781,219,0 +170730658829,219,0 +170730658877,219,0 +170730658925,220,0 +170730658973,220,0 +170730659021,221,0 +170730659069,250,0 +170730659118,257,0 +170730659166,224,0 +170730659216,219,0 +170730659264,219,0 +170730659312,219,0 +170730659360,219,0 +170730659408,219,0 +170730659457,219,0 +170730659505,219,0 +170730659553,219,0 +170730659601,218,0 +170730659649,219,0 +170730659699,219,0 +170730659748,219,0 +170730659796,219,0 +170730659844,219,0 +170730659893,219,0 +170730659943,219,0 +170730659991,219,0 +170730660040,220,0 +170730660090,237,0 +170730660139,261,0 +170730660189,227,0 +170730660237,220,0 +170730660285,219,0 +170730660333,219,0 +170730660382,219,0 +170730660430,219,0 +170730660478,219,0 +170730660526,219,0 +170730660574,219,0 +170730660622,219,0 +170730660670,219,0 +170730660720,219,0 +170730660768,218,0 +170730660817,219,0 +170730660865,219,0 +170730660913,219,0 +170730660961,219,0 +170730661009,219,0 +170730661057,219,0 +170730661105,219,0 +170730661153,249,0 +170730661200,249,0 +170730661248,224,0 +170730661298,220,0 +170730661348,219,0 +170730661397,219,0 +170730661445,219,0 +170730661493,219,0 +170730661541,219,0 +170730661589,219,0 +170730661637,219,0 +170730661685,219,0 +170730661734,219,0 +170730661782,219,0 +170730661832,219,0 +170730661880,219,0 +170730661928,219,0 +170730661977,218,0 +170730662027,219,0 +170730662075,219,0 +170730662123,219,0 +170730662172,220,0 +170730662222,251,0 +170730662270,253,0 +170730662318,224,0 +170730662366,220,0 +170730662415,219,0 +170730662463,219,0 +170730662511,219,0 +170730662559,219,0 +170730662609,219,0 +170730662657,219,0 +170730662705,219,0 +170730662754,219,0 +170730662802,219,0 +170730662852,219,0 +170730662900,219,0 +170730662949,219,0 +170730662997,219,0 +170730663045,219,0 +170730663093,219,0 +170730663141,219,0 +170730663189,220,0 +170730663237,252,0 +170730663285,252,0 +170730663334,221,0 +170730663382,220,0 +170730663430,219,0 +170730663478,219,0 +170730663526,219,0 +170730663574,219,0 +170730663621,219,0 +170730663669,219,0 +170730663717,219,0 +170730663765,219,0 +170730663813,219,0 +170730663861,219,0 +170730663909,219,0 +170730663957,219,0 +170730664005,219,0 +170730664054,219,0 +170730664102,218,0 +170730664150,219,0 +170730664198,219,0 +170730664246,220,0 +170730664294,252,0 +170730664341,249,0 +170730664389,222,0 +170730664437,219,0 +170730664485,219,0 +170730664533,219,0 +170730664581,219,0 +170730664629,219,0 +170730664677,219,0 +170730664725,219,0 +170730664772,219,0 +170730664820,219,0 +170730664868,219,0 +170730664918,219,0 +170730664966,219,0 +170730665015,219,0 +170730665063,219,0 +170730665111,219,0 +170730665159,219,0 +170730665206,219,0 +170730665254,218,0 +170730665302,220,0 +170730665350,245,0 +170730665400,250,0 +170730665448,226,0 +170730665496,220,0 +170730665545,219,0 +170730665593,219,0 +170730665641,219,0 +170730665689,219,0 +170730665739,219,0 +170730665787,219,0 +170730665836,219,0 +170730665884,219,0 +170730665934,219,0 +170730665982,218,0 +170730666030,219,0 +170730666079,219,0 +170730666127,219,0 +170730666175,219,0 +170730666223,219,0 +170730666271,219,0 +170730666320,219,0 +170730666370,220,0 +170730666418,248,0 +170730666466,255,0 +170730666514,227,0 +170730666562,219,0 +170730666611,219,0 +170730666659,219,0 +170730666707,219,0 +170730666755,219,0 +170730666805,219,0 +170730666853,219,0 +170730666901,219,0 +170730666950,219,0 +170730667000,220,0 +170730667048,219,0 +170730667096,219,0 +170730667144,219,0 +170730667193,219,0 +170730667243,219,0 +170730667292,219,0 +170730667342,219,0 +170730667391,219,0 +170730667441,243,0 +170730667489,250,0 +170730667537,232,0 +170730667586,220,0 +170730667634,219,0 +170730667682,219,0 +170730667731,219,0 +170730667779,219,0 +170730667827,219,0 +170730667875,219,0 +170730667923,219,0 +170730667973,219,0 +170730668021,219,0 +170730668070,219,0 +170730668118,219,0 +170730668168,219,0 +170730668216,219,0 +170730668264,219,0 +170730668313,219,0 +170730668361,219,0 +170730668409,219,0 +170730668457,220,0 +170730668505,250,0 +170730668553,252,0 +170730668601,229,0 +170730668649,220,0 +170730668697,219,0 +170730668745,219,0 +170730668793,219,0 +170730668841,219,0 +170730668889,219,0 +170730668938,220,0 +170730668986,219,0 +170730669034,219,0 +170730669082,219,0 +170730669130,219,0 +170730669180,220,0 +170730669228,219,0 +170730669276,219,0 +170730669325,220,0 +170730669373,219,0 +170730669421,219,0 +170730669471,220,0 +170730669519,221,0 +170730669567,250,0 +170730669615,248,0 +170730669664,227,0 +170730669712,219,0 +170730669762,219,0 +170730669810,219,0 +170730669858,219,0 +170730669906,219,0 +170730669954,219,0 +170730670002,219,0 +170730670051,219,0 +170730670099,219,0 +170730670148,219,0 +170730670196,219,0 +170730670244,219,0 +170730670292,219,0 +170730670340,219,0 +170730670388,219,0 +170730670438,219,0 +170730670486,219,0 +170730670534,220,0 +170730670582,243,0 +170730670630,251,0 +170730670678,235,0 +170730670726,221,0 +170730670774,220,0 +170730670822,219,0 +170730670870,219,0 +170730670919,219,0 +170730670967,219,0 +170730671017,220,0 +170730671066,219,0 +170730671116,219,0 +170730671164,219,0 +170730671212,219,0 +170730671260,219,0 +170730671308,219,0 +170730671357,219,0 +170730671405,219,0 +170730671455,219,0 +170730671503,219,0 +170730671550,219,0 +170730671598,220,0 +170730671646,253,0 +170730671694,253,0 +170730671742,227,0 +170730671792,219,0 +170730671840,219,0 +170730671889,219,0 +170730671939,219,0 +170730671987,219,0 +170730672035,219,0 +170730672084,219,0 +170730672134,219,0 +170730672183,219,0 +170730672231,219,0 +170730672279,219,0 +170730672329,219,0 +170730672376,219,0 +170730672426,219,0 +170730672474,219,0 +170730672522,219,0 +170730672570,219,0 +170730672618,219,0 +170730672666,220,0 +170730672714,253,0 +170730672762,257,0 +170730672810,228,0 +170730672859,220,0 +170730672907,219,0 +170730672955,219,0 +170730673003,219,0 +170730673051,219,0 +170730673099,219,0 +170730673147,220,0 +170730673195,219,0 +170730673243,219,0 +170730673291,220,0 +170730673338,220,0 +170730673386,219,0 +170730673434,219,0 +170730673484,220,0 +170730673533,219,0 +170730673581,219,0 +170730673629,219,0 +170730673679,220,0 +170730673726,221,0 +170730673774,250,0 +170730673822,274,1 +170730673911,219,0 +170730673959,219,0 +170730674009,219,0 +170730674057,219,0 +170730674104,220,0 +170730674154,220,0 +170730674202,219,0 +170730674250,219,0 +170730674298,220,0 +170730674347,220,0 +170730674395,219,0 +170730674443,220,0 +170730674491,220,0 +170730674539,219,0 +170730674587,220,0 +170730674634,220,0 +170730674682,219,0 +170730674730,220,0 +170730674778,223,0 +170730674828,252,0 +170730674877,230,0 +170730674925,221,0 +170730674973,220,0 +170730675021,220,0 +170730675069,220,0 +170730675116,219,0 +170730675164,220,0 +170730675212,220,0 +170730675260,220,0 +170730675308,220,0 +170730675356,220,0 +170730675404,219,0 +170730675452,220,0 +170730675500,220,0 +170730675547,220,0 +170730675595,220,0 +170730675643,220,0 +170730675691,220,0 +170730675739,220,0 +170730675787,220,0 +170730675835,234,0 +170730675882,257,0 +170730675930,246,0 +170730675978,222,0 +170730676026,219,0 +170730676074,219,0 +170730676122,219,0 +170730676171,219,0 +170730676221,220,0 +170730676269,220,0 +170730676317,220,0 +170730676365,219,0 +170730676413,219,0 +170730676462,219,0 +170730676512,219,0 +170730676560,219,0 +170730676609,220,0 +170730676659,220,0 +170730676707,220,0 +170730676755,219,0 +170730676803,220,0 +170730676852,220,0 +170730676900,255,0 +170730676948,251,0 +170730676998,227,0 +170730677046,220,0 +170730677094,219,0 +170730677142,219,0 +170730677191,219,0 +170730677239,219,0 +170730677287,220,0 +170730677337,219,0 +170730677384,219,0 +170730677432,219,0 +170730677480,219,0 +170730677528,220,0 +170730677576,219,0 +170730677624,219,0 +170730677672,219,0 +170730677722,219,0 +170730677771,219,0 +170730677819,219,0 +170730677867,220,0 +170730677915,221,0 +170730677965,260,0 +170730678013,276,1 +170730678097,220,0 +170730678146,219,0 +170730678194,219,0 +170730678244,219,0 +170730678292,219,0 +170730678340,219,0 +170730678388,219,0 +170730678435,219,0 +170730678483,219,0 +170730678531,219,0 +170730678581,219,0 +170730678630,220,0 +170730678680,219,0 +170730678728,220,0 +170730678777,219,0 +170730678825,220,0 +170730678875,219,0 +170730678923,220,0 +170730678971,222,0 +170730679019,249,0 +170730679068,263,0 +170730679118,223,0 +170730679167,219,0 +170730679217,219,0 +170730679265,220,0 +170730679313,219,0 +170730679361,219,0 +170730679409,219,0 +170730679458,219,0 +170730679508,219,0 +170730679556,219,0 +170730679604,219,0 +170730679652,219,0 +170730679701,219,0 +170730679749,219,0 +170730679797,219,0 +170730679847,219,0 +170730679895,219,0 +170730679943,219,0 +170730679991,220,0 +170730680040,247,0 +170730680088,248,0 +170730680137,224,0 +170730680185,220,0 +170730680235,220,0 +170730680283,219,0 +170730680331,219,0 +170730680379,219,0 +170730680428,220,0 +170730680476,219,0 +170730680524,219,0 +170730680574,219,0 +170730680623,219,0 +170730680671,219,0 +170730680719,219,0 +170730680769,219,0 +170730680818,219,0 +170730680866,219,0 +170730680914,219,0 +170730680964,219,0 +170730681012,220,0 +170730681059,221,0 +170730681107,246,0 +170730681155,259,0 +170730681203,226,0 +170730681251,219,0 +170730681299,219,0 +170730681347,219,0 +170730681395,219,0 +170730681443,219,0 +170730681491,219,0 +170730681539,219,0 +170730681587,219,0 +170730681637,219,0 +170730681685,219,0 +170730681734,219,0 +170730681783,219,0 +170730681833,219,0 +170730681881,219,0 +170730681929,219,0 +170730681978,219,0 +170730682026,219,0 +170730682076,219,0 +170730682126,221,0 +170730682175,252,0 +170730682223,269,0 +170730682272,224,0 +170730682320,219,0 +170730682370,219,0 +170730682418,219,0 +170730682467,218,0 +170730682517,219,0 +170730682566,219,0 +170730682614,219,0 +170730682664,219,0 +170730682712,219,0 +170730682760,219,0 +170730682807,219,0 +170730682857,218,0 +170730682905,219,0 +170730682953,219,0 +170730683001,219,0 +170730683048,219,0 +170730683096,219,0 +170730683144,220,0 +170730683194,251,0 +170730683242,255,0 +170730683290,228,0 +170730683339,219,0 +170730683387,219,0 +170730683435,219,0 +170730683485,219,0 +170730683533,219,0 +170730683581,219,0 +170730683630,219,0 +170730683678,219,0 +170730683726,218,0 +170730683774,219,0 +170730683824,219,0 +170730683872,219,0 +170730683920,219,0 +170730683969,219,0 +170730684017,219,0 +170730684065,219,0 +170730684113,219,0 +170730684162,219,0 +170730684210,221,0 +170730684258,263,0 +170730684308,260,0 +170730684356,224,0 +170730684404,219,0 +170730684452,219,0 +170730684500,219,0 +170730684548,219,0 +170730684597,219,0 +170730684645,219,0 +170730684693,219,0 +170730684741,219,0 +170730684791,219,0 +170730684839,219,0 +170730684887,219,0 +170730684936,219,0 +170730684984,219,0 +170730685032,219,0 +170730685080,219,0 +170730685128,219,0 +170730685176,219,0 +170730685223,219,0 +170730685273,238,0 +170730685321,259,0 +170730685370,221,0 +170730685418,220,0 +170730685466,219,0 +170730685516,219,0 +170730685564,219,0 +170730685613,219,0 +170730685661,219,0 +170730685711,219,0 +170730685760,219,0 +170730685808,219,0 +170730685858,219,0 +170730685906,219,0 +170730685954,219,0 +170730686002,219,0 +170730686050,219,0 +170730686099,219,0 +170730686147,219,0 +170730686196,220,0 +170730686244,219,0 +170730686292,220,0 +170730686340,248,0 +170730686390,254,0 +170730686439,228,0 +170730686489,219,0 +170730686537,220,0 +170730686585,219,0 +170730686634,219,0 +170730686682,219,0 +170730686730,219,0 +170730686778,219,0 +170730686826,219,0 +170730686874,219,0 +170730686922,219,0 +170730686970,219,0 +170730687020,219,0 +170730687068,219,0 +170730687116,219,0 +170730687164,219,0 +170730687212,219,0 +170730687260,219,0 +170730687307,219,0 +170730687355,221,0 +170730687403,260,0 +170730687451,276,1 +170730687530,219,0 +170730687578,219,0 +170730687627,219,0 +170730687675,219,0 +170730687723,219,0 +170730687771,219,0 +170730687819,219,0 +170730687867,219,0 +170730687916,219,0 +170730687964,219,0 +170730688014,219,0 +170730688064,219,0 +170730688113,219,0 +170730688161,219,0 +170730688209,219,0 +170730688257,219,0 +170730688305,219,0 +170730688353,219,0 +170730688402,220,0 +170730688450,248,0 +170730688500,272,1 +170730688576,219,0 +170730688625,219,0 +170730688673,219,0 +170730688721,219,0 +170730688769,219,0 +170730688819,219,0 +170730688868,219,0 +170730688916,218,0 +170730688964,219,0 +170730689012,219,0 +170730689060,219,0 +170730689108,219,0 +170730689156,218,0 +170730689204,219,0 +170730689254,219,0 +170730689302,219,0 +170730689349,219,0 +170730689397,219,0 +170730689445,220,0 +170730689493,260,0 +170730689543,257,0 +170730689591,228,0 +170730689640,219,0 +170730689688,219,0 +170730689736,219,0 +170730689784,219,0 +170730689834,219,0 +170730689882,220,0 +170730689930,219,0 +170730689978,219,0 +170730690027,219,0 +170730690075,219,0 +170730690123,219,0 +170730690171,219,0 +170730690219,219,0 +170730690269,219,0 +170730690318,219,0 +170730690366,219,0 +170730690414,219,0 +170730690462,219,0 +170730690510,221,0 +170730690558,250,0 +170730690606,261,0 +170730690656,223,0 +170730690704,219,0 +170730690753,219,0 +170730690801,219,0 +170730690851,219,0 +170730690899,219,0 +170730690946,219,0 +170730690994,219,0 +170730691042,219,0 +170730691090,219,0 +170730691138,219,0 +170730691186,219,0 +170730691234,219,0 +170730691282,219,0 +170730691330,219,0 +170730691378,219,0 +170730691426,219,0 +170730691474,219,0 +170730691522,220,0 +170730691570,237,0 +170730691618,260,0 +170730691666,224,0 +170730691714,220,0 +170730691763,219,0 +170730691811,219,0 +170730691859,219,0 +170730691907,219,0 +170730691955,219,0 +170730692003,219,0 +170730692051,218,0 +170730692100,220,0 +170730692148,219,0 +170730692196,219,0 +170730692244,219,0 +170730692294,218,0 +170730692342,219,0 +170730692390,218,0 +170730692438,219,0 +170730692487,219,0 +170730692535,219,0 +170730692583,220,0 +170730692633,254,0 +170730692682,268,0 +170730692730,223,0 +170730692778,219,0 +170730692826,219,0 +170730692874,219,0 +170730692922,219,0 +170730692970,219,0 +170730693018,219,0 +170730693066,219,0 +170730693116,220,0 +170730693163,220,0 +170730693211,219,0 +170730693259,219,0 +170730693307,219,0 +170730693355,219,0 +170730693403,220,0 +170730693451,219,0 +170730693499,220,0 +170730693547,220,0 +170730693595,219,0 +170730693643,221,0 +170730693691,257,0 +170730693740,264,0 +170730693788,226,0 +170730693838,219,0 +170730693887,219,0 +170730693935,219,0 +170730693983,219,0 +170730694033,220,0 +170730694081,219,0 +170730694130,219,0 +170730694178,219,0 +170730694228,220,0 +170730694276,219,0 +170730694325,219,0 +170730694375,219,0 +170730694424,219,0 +170730694472,219,0 +170730694520,219,0 +170730694568,219,0 +170730694617,219,0 +170730694665,220,0 +170730694713,221,0 +170730694761,246,0 +170730694810,263,0 +170730694858,222,0 +170730694908,219,0 +170730694956,219,0 +170730695004,219,0 +170730695053,219,0 +170730695101,219,0 +170730695149,219,0 +170730695197,219,0 +170730695245,219,0 +170730695295,219,0 +170730695342,220,0 +170730695390,220,0 +170730695438,220,0 +170730695487,219,0 +170730695535,219,0 +170730695585,219,0 +170730695634,219,0 +170730695684,219,0 +170730695731,220,0 +170730695779,260,0 +170730695827,259,0 +170730695875,224,0 +170730695925,220,0 +170730695974,219,0 +170730696024,219,0 +170730696073,219,0 +170730696121,219,0 +170730696169,219,0 +170730696217,219,0 +170730696267,219,0 +170730696315,219,0 +170730696364,219,0 +170730696412,219,0 +170730696460,219,0 +170730696508,219,0 +170730696556,219,0 +170730696604,219,0 +170730696652,219,0 +170730696700,219,0 +170730696748,219,0 +170730696797,220,0 +170730696845,261,0 +170730696895,283,1 +170730696975,220,0 +170730697023,219,0 +170730697072,219,0 +170730697120,219,0 +170730697170,219,0 +170730697218,219,0 +170730697266,219,0 +170730697314,219,0 +170730697362,219,0 +170730697411,219,0 +170730697459,219,0 +170730697509,219,0 +170730697558,219,0 +170730697606,220,0 +170730697654,219,0 +170730697703,219,0 +170730697751,219,0 +170730697801,220,0 +170730697851,221,0 +170730697898,250,0 +170730697946,265,0 +170730697996,224,0 +170730698045,219,0 +170730698093,219,0 +170730698141,220,0 +170730698191,219,0 +170730698239,219,0 +170730698287,219,0 +170730698335,219,0 +170730698384,219,0 +170730698434,219,0 +170730698482,220,0 +170730698530,219,0 +170730698578,219,0 +170730698627,219,0 +170730698677,219,0 +170730698725,219,0 +170730698774,219,0 +170730698824,219,0 +170730698873,220,0 +170730698921,222,0 +170730698971,249,0 +170730699020,241,0 +170730699068,221,0 +170730699116,220,0 +170730699164,219,0 +170730699213,219,0 +170730699261,219,0 +170730699309,219,0 +170730699357,219,0 +170730699407,220,0 +170730699456,219,0 +170730699504,220,0 +170730699554,219,0 +170730699602,219,0 +170730699651,219,0 +170730699699,220,0 +170730699749,219,0 +170730699797,220,0 +170730699845,219,0 +170730699893,219,0 +170730699941,221,0 +170730699989,255,0 +170730700038,265,0 +170730700088,227,0 +170730700135,219,0 +170730700185,219,0 +170730700233,219,0 +170730700281,219,0 +170730700330,219,0 +170730700378,219,0 +170730700426,219,0 +170730700474,219,0 +170730700524,219,0 +170730700572,219,0 +170730700620,219,0 +170730700669,219,0 +170730700719,219,0 +170730700767,219,0 +170730700815,219,0 +170730700864,220,0 +170730700914,219,0 +170730700962,220,0 +170730701010,223,0 +170730701058,266,0 +170730701106,249,0 +170730701154,221,0 +170730701202,219,0 +170730701250,219,0 +170730701299,219,0 +170730701347,219,0 +170730701395,219,0 +170730701444,219,0 +170730701494,219,0 +170730701544,220,0 +170730701591,219,0 +170730701641,219,0 +170730701690,219,0 +170730701740,219,0 +170730701788,219,0 +170730701837,220,0 +170730701885,219,0 +170730701933,219,0 +170730701981,219,0 +170730702029,220,0 +170730702079,251,0 +170730702127,251,0 +170730702176,227,0 +170730702224,220,0 +170730702274,219,0 +170730702323,219,0 +170730702371,219,0 +170730702419,219,0 +170730702467,219,0 +170730702515,220,0 +170730702564,219,0 +170730702612,219,0 +170730702662,219,0 +170730702710,219,0 +170730702758,220,0 +170730702806,219,0 +170730702854,220,0 +170730702903,219,0 +170730702953,219,0 +170730703001,220,0 +170730703050,220,0 +170730703098,221,0 +170730703148,253,0 +170730703195,271,1 +170730703279,219,0 +170730703329,220,0 +170730703378,220,0 +170730703426,220,0 +170730703476,220,0 +170730703524,220,0 +170730703572,220,0 +170730703620,219,0 +170730703668,220,0 +170730703716,219,0 +170730703765,219,0 +170730703813,219,0 +170730703861,220,0 +170730703909,220,0 +170730703959,220,0 +170730704008,220,0 +170730704056,219,0 +170730704104,220,0 +170730704154,221,0 +170730704203,251,0 +170730704251,258,0 +170730704299,223,0 +170730704347,219,0 +170730704395,219,0 +170730704443,219,0 +170730704491,219,0 +170730704539,219,0 +170730704587,219,0 +170730704635,219,0 +170730704683,219,0 +170730704731,219,0 +170730704779,219,0 +170730704828,219,0 +170730704876,219,0 +170730704924,219,0 +170730704972,219,0 +170730705020,219,0 +170730705068,220,0 +170730705118,219,0 +170730705166,219,0 +170730705214,221,0 +170730705262,253,0 +170730705311,272,1 +170730705398,219,0 +170730705446,219,0 +170730705494,219,0 +170730705542,219,0 +170730705589,219,0 +170730705637,219,0 +170730705686,219,0 +170730705733,219,0 +170730705781,219,0 +170730705831,219,0 +170730705879,219,0 +170730705928,219,0 +170730705976,219,0 +170730706026,219,0 +170730706074,219,0 +170730706123,219,0 +170730706173,219,0 +170730706222,219,0 +170730706272,241,0 +170730706320,251,0 +170730706368,235,0 +170730706416,220,0 +170730706464,219,0 +170730706512,219,0 +170730706559,219,0 +170730706607,219,0 +170730706657,219,0 +170730706705,219,0 +170730706753,219,0 +170730706802,219,0 +170730706852,219,0 +170730706901,219,0 +170730706951,219,0 +170730706999,219,0 +170730707047,219,0 +170730707095,219,0 +170730707144,218,0 +170730707192,219,0 +170730707240,220,0 +170730707288,220,0 +170730707336,249,0 +170730707384,262,0 +170730707434,227,0 +170730707483,220,0 +170730707531,219,0 +170730707579,219,0 +170730707629,219,0 +170730707678,219,0 +170730707726,219,0 +170730707774,219,0 +170730707824,219,0 +170730707873,219,0 +170730707921,219,0 +170730707971,219,0 +170730708019,219,0 +170730708068,219,0 +170730708117,219,0 +170730708165,219,0 +170730708215,219,0 +170730708263,219,0 +170730708312,220,0 +170730708360,226,0 +170730708408,251,0 +170730708458,251,0 +170730708507,221,0 +170730708557,219,0 +170730708605,219,0 +170730708654,219,0 +170730708704,219,0 +170730708753,219,0 +170730708801,219,0 +170730708851,219,0 +170730708900,219,0 +170730708950,219,0 +170730709000,219,0 +170730709047,219,0 +170730709095,219,0 +170730709143,219,0 +170730709191,219,0 +170730709241,219,0 +170730709289,219,0 +170730709337,219,0 +170730709385,219,0 +170730709434,250,0 +170730709482,258,0 +170730709530,226,0 +170730709578,219,0 +170730709626,219,0 +170730709674,219,0 +170730709722,219,0 +170730709770,219,0 +170730709818,219,0 +170730709866,219,0 +170730709915,219,0 +170730709963,219,0 +170730710011,219,0 +170730710059,219,0 +170730710107,219,0 +170730710157,219,0 +170730710206,219,0 +170730710256,219,0 +170730710304,219,0 +170730710352,219,0 +170730710401,219,0 +170730710449,220,0 +170730710497,257,0 +170730710545,260,0 +170730710593,226,0 +170730710641,220,0 +170730710689,219,0 +170730710737,219,0 +170730710786,219,0 +170730710834,220,0 +170730710882,219,0 +170730710930,219,0 +170730710980,219,0 +170730711028,219,0 +170730711076,220,0 +170730711125,219,0 +170730711175,219,0 +170730711223,219,0 +170730711271,219,0 +170730711320,219,0 +170730711368,219,0 +170730711416,220,0 +170730711466,220,0 +170730711514,222,0 +170730711562,253,0 +170730711610,268,0 +170730711658,222,0 +170730711706,219,0 +170730711754,219,0 +170730711803,219,0 +170730711851,219,0 +170730711899,220,0 +170730711947,219,0 +170730711995,220,0 +170730712043,219,0 +170730712092,219,0 +170730712140,219,0 +170730712188,219,0 +170730712236,219,0 +170730712284,219,0 +170730712332,219,0 +170730712380,219,0 +170730712428,219,0 +170730712476,219,0 +170730712524,220,0 +170730712572,249,0 +170730712620,250,0 +170730712668,222,0 +170730712717,220,0 +170730712765,219,0 +170730712815,219,0 +170730712864,220,0 +170730712912,219,0 +170730712960,219,0 +170730713008,220,0 +170730713056,219,0 +170730713104,219,0 +170730713152,219,0 +170730713202,219,0 +170730713250,219,0 +170730713297,219,0 +170730713347,220,0 +170730713395,219,0 +170730713444,219,0 +170730713492,220,0 +170730713540,219,0 +170730713588,220,0 +170730713638,255,0 +170730713686,253,0 +170730713734,228,0 +170730713783,219,0 +170730713831,220,0 +170730713881,220,0 +170730713929,219,0 +170730713976,220,0 +170730714024,219,0 +170730714074,219,0 +170730714122,219,0 +170730714170,219,0 +170730714219,219,0 +170730714267,219,0 +170730714315,219,0 +170730714363,219,0 +170730714411,219,0 +170730714461,219,0 +170730714509,219,0 +170730714558,219,0 +170730714606,220,0 +170730714656,221,0 +170730714705,247,0 +170730714755,267,0 +170730714803,225,0 +170730714851,220,0 +170730714900,219,0 +170730714948,219,0 +170730714996,219,0 +170730715044,219,0 +170730715092,219,0 +170730715142,218,0 +170730715191,219,0 +170730715241,219,0 +170730715288,219,0 +170730715338,219,0 +170730715387,219,0 +170730715437,219,0 +170730715487,219,0 +170730715534,219,0 +170730715582,219,0 +170730715632,219,0 +170730715680,220,0 +170730715729,270,1 +170730715810,241,0 +170730715859,220,0 +170730715907,220,0 +170730715955,219,0 +170730716003,219,0 +170730716051,219,0 +170730716099,219,0 +170730716149,219,0 +170730716197,219,0 +170730716246,219,0 +170730716294,219,0 +170730716342,219,0 +170730716390,219,0 +170730716438,219,0 +170730716488,219,0 +170730716537,219,0 +170730716585,219,0 +170730716633,219,0 +170730716681,219,0 +170730716729,220,0 +170730716777,249,0 +170730716827,256,0 +170730716874,228,0 +170730716922,219,0 +170730716970,219,0 +170730717018,219,0 +170730717066,219,0 +170730717116,219,0 +170730717164,219,0 +170730717213,219,0 +170730717261,219,0 +170730717309,219,0 +170730717357,219,0 +170730717407,219,0 +170730717456,219,0 +170730717504,219,0 +170730717554,219,0 +170730717603,219,0 +170730717653,219,0 +170730717702,219,0 +170730717750,219,0 +170730717798,220,0 +170730717846,254,0 +170730717894,256,0 +170730717944,228,0 +170730717992,219,0 +170730718040,218,0 +170730718088,219,0 +170730718137,218,0 +170730718185,219,0 +170730718233,219,0 +170730718283,219,0 +170730718330,219,0 +170730718380,219,0 +170730718428,219,0 +170730718476,219,0 +170730718524,219,0 +170730718572,219,0 +170730718620,218,0 +170730718669,219,0 +170730718717,219,0 +170730718767,219,0 +170730718816,219,0 +170730718866,225,0 +170730718914,255,0 +170730718963,252,0 +170730719011,220,0 +170730719059,219,0 +170730719107,219,0 +170730719155,219,0 +170730719203,219,0 +170730719251,219,0 +170730719299,219,0 +170730719349,219,0 +170730719396,219,0 +170730719444,219,0 +170730719492,219,0 +170730719540,219,0 +170730719590,219,0 +170730719638,219,0 +170730719686,219,0 +170730719735,219,0 +170730719785,219,0 +170730719833,219,0 +170730719882,220,0 +170730719931,258,0 +170730719978,257,0 +170730720026,230,0 diff --git a/laser_value/0207-22.csv b/laser_value/0207-22.csv new file mode 100644 index 0000000..daf6915 --- /dev/null +++ b/laser_value/0207-22.csv @@ -0,0 +1,7404 @@ +timestamp,laser_value,event +170730720075,220,0 +170730720125,219,0 +170730720172,219,0 +170730720220,219,0 +170730720270,219,0 +170730720318,218,0 +170730720367,219,0 +170730720415,219,0 +170730720465,218,0 +170730720513,219,0 +170730720561,219,0 +170730720609,219,0 +170730720658,219,0 +170730720706,219,0 +170730720756,219,0 +170730720804,218,0 +170730720852,219,0 +170730720900,219,0 +170730720947,220,0 +170730720996,247,0 +170730721043,254,0 +170730721093,229,0 +170730721141,220,0 +170730721190,219,0 +170730721238,219,0 +170730721286,219,0 +170730721336,219,0 +170730721385,219,0 +170730721433,219,0 +170730721481,219,0 +170730721531,219,0 +170730721579,219,0 +170730721627,219,0 +170730721675,219,0 +170730721723,219,0 +170730721772,218,0 +170730721820,219,0 +170730721868,218,0 +170730721918,219,0 +170730721966,220,0 +170730722014,230,0 +170730722061,250,0 +170730722109,247,0 +170730722159,220,0 +170730722207,219,0 +170730722255,219,0 +170730722304,219,0 +170730722354,219,0 +170730722402,219,0 +170730722451,219,0 +170730722499,218,0 +170730722547,219,0 +170730722597,219,0 +170730722645,219,0 +170730722693,219,0 +170730722742,219,0 +170730722790,219,0 +170730722838,219,0 +170730722886,219,0 +170730722936,219,0 +170730722985,219,0 +170730723033,220,0 +170730723081,247,0 +170730723131,263,0 +170730723179,226,0 +170730723227,219,0 +170730723276,219,0 +170730723326,219,0 +170730723374,219,0 +170730723423,219,0 +170730723471,219,0 +170730723519,219,0 +170730723567,219,0 +170730723615,219,0 +170730723663,219,0 +170730723711,219,0 +170730723759,219,0 +170730723807,219,0 +170730723855,218,0 +170730723903,219,0 +170730723951,219,0 +170730723999,219,0 +170730724047,219,0 +170730724096,220,0 +170730724146,274,1 +170730724228,222,0 +170730724276,220,0 +170730724325,219,0 +170730724373,219,0 +170730724421,219,0 +170730724469,219,0 +170730724517,219,0 +170730724565,219,0 +170730724613,219,0 +170730724661,219,0 +170730724709,219,0 +170730724758,219,0 +170730724808,219,0 +170730724857,219,0 +170730724907,219,0 +170730724956,219,0 +170730725004,219,0 +170730725052,219,0 +170730725100,219,0 +170730725148,221,0 +170730725198,256,0 +170730725246,262,0 +170730725295,224,0 +170730725343,219,0 +170730725391,219,0 +170730725439,219,0 +170730725489,219,0 +170730725537,219,0 +170730725585,219,0 +170730725633,219,0 +170730725681,219,0 +170730725729,218,0 +170730725778,219,0 +170730725828,219,0 +170730725877,219,0 +170730725926,219,0 +170730725974,219,0 +170730726022,219,0 +170730726072,219,0 +170730726121,219,0 +170730726169,220,0 +170730726217,237,0 +170730726267,269,0 +170730726315,223,0 +170730726364,219,0 +170730726414,219,0 +170730726462,219,0 +170730726511,219,0 +170730726561,219,0 +170730726610,219,0 +170730726660,219,0 +170730726708,219,0 +170730726757,219,0 +170730726805,219,0 +170730726853,218,0 +170730726903,219,0 +170730726952,219,0 +170730727000,219,0 +170730727048,219,0 +170730727096,219,0 +170730727144,219,0 +170730727193,219,0 +170730727241,220,0 +170730727289,249,0 +170730727337,262,0 +170730727385,229,0 +170730727433,219,0 +170730727481,220,0 +170730727529,220,0 +170730727578,219,0 +170730727628,219,0 +170730727676,219,0 +170730727724,219,0 +170730727772,219,0 +170730727820,219,0 +170730727867,219,0 +170730727917,219,0 +170730727966,219,0 +170730728016,219,0 +170730728064,219,0 +170730728113,219,0 +170730728161,219,0 +170730728211,219,0 +170730728259,219,0 +170730728308,221,0 +170730728356,248,0 +170730728404,257,0 +170730728452,222,0 +170730728502,220,0 +170730728550,219,0 +170730728598,219,0 +170730728646,219,0 +170730728693,219,0 +170730728741,219,0 +170730728789,219,0 +170730728837,219,0 +170730728885,219,0 +170730728935,219,0 +170730728984,219,0 +170730729032,219,0 +170730729082,219,0 +170730729130,219,0 +170730729177,219,0 +170730729225,219,0 +170730729273,219,0 +170730729321,220,0 +170730729370,247,0 +170730729418,255,0 +170730729466,229,0 +170730729514,220,0 +170730729562,219,0 +170730729610,219,0 +170730729658,218,0 +170730729706,219,0 +170730729754,219,0 +170730729801,219,0 +170730729849,219,0 +170730729899,218,0 +170730729947,219,0 +170730729995,219,0 +170730730043,219,0 +170730730090,219,0 +170730730138,219,0 +170730730186,219,0 +170730730234,219,0 +170730730282,220,0 +170730730332,219,0 +170730730379,220,0 +170730730427,249,0 +170730730475,254,0 +170730730523,229,0 +170730730573,219,0 +170730730622,219,0 +170730730670,219,0 +170730730718,219,0 +170730730766,219,0 +170730730814,219,0 +170730730862,219,0 +170730730909,219,0 +170730730957,219,0 +170730731005,219,0 +170730731053,219,0 +170730731101,219,0 +170730731149,218,0 +170730731198,219,0 +170730731246,219,0 +170730731296,219,0 +170730731343,219,0 +170730731391,219,0 +170730731439,220,0 +170730731487,244,0 +170730731535,256,0 +170730731583,226,0 +170730731631,220,0 +170730731679,219,0 +170730731727,219,0 +170730731775,219,0 +170730731822,219,0 +170730731872,219,0 +170730731920,219,0 +170730731968,219,0 +170730732016,219,0 +170730732065,219,0 +170730732113,219,0 +170730732161,219,0 +170730732209,219,0 +170730732257,219,0 +170730732305,219,0 +170730732353,219,0 +170730732401,219,0 +170730732449,219,0 +170730732498,221,0 +170730732546,254,0 +170730732596,272,1 +170730732681,219,0 +170730732729,219,0 +170730732779,220,0 +170730732827,219,0 +170730732876,219,0 +170730732926,219,0 +170730732975,219,0 +170730733025,219,0 +170730733073,219,0 +170730733122,219,0 +170730733172,219,0 +170730733220,219,0 +170730733269,219,0 +170730733319,219,0 +170730733368,219,0 +170730733416,219,0 +170730733466,219,0 +170730733514,220,0 +170730733561,247,0 +170730733609,256,0 +170730733659,226,0 +170730733707,220,0 +170730733755,219,0 +170730733804,219,0 +170730733852,219,0 +170730733901,219,0 +170730733951,219,0 +170730733999,219,0 +170730734047,219,0 +170730734095,219,0 +170730734142,219,0 +170730734190,219,0 +170730734238,219,0 +170730734288,219,0 +170730734336,219,0 +170730734383,219,0 +170730734431,219,0 +170730734479,219,0 +170730734527,218,0 +170730734575,219,0 +170730734623,253,0 +170730734671,258,0 +170730734720,228,0 +170730734768,219,0 +170730734816,219,0 +170730734864,219,0 +170730734912,219,0 +170730734960,219,0 +170730735007,219,0 +170730735055,219,0 +170730735103,219,0 +170730735151,219,0 +170730735199,218,0 +170730735247,219,0 +170730735296,219,0 +170730735344,219,0 +170730735392,219,0 +170730735440,219,0 +170730735488,219,0 +170730735537,219,0 +170730735585,219,0 +170730735635,221,0 +170730735684,247,0 +170730735732,255,0 +170730735782,226,0 +170730735830,219,0 +170730735878,219,0 +170730735927,219,0 +170730735975,219,0 +170730736025,219,0 +170730736073,219,0 +170730736122,219,0 +170730736170,219,0 +170730736218,219,0 +170730736266,219,0 +170730736316,219,0 +170730736365,219,0 +170730736414,219,0 +170730736464,219,0 +170730736513,219,0 +170730736563,218,0 +170730736611,219,0 +170730736659,220,0 +170730736707,245,0 +170730736756,251,0 +170730736804,230,0 +170730736852,220,0 +170730736900,220,0 +170730736950,219,0 +170730736998,219,0 +170730737046,219,0 +170730737095,219,0 +170730737145,219,0 +170730737193,219,0 +170730737241,219,0 +170730737290,219,0 +170730737338,219,0 +170730737386,219,0 +170730737434,220,0 +170730737482,219,0 +170730737530,219,0 +170730737579,219,0 +170730737627,219,0 +170730737677,219,0 +170730737726,221,0 +170730737774,247,0 +170730737824,258,0 +170730737872,225,0 +170730737921,220,0 +170730737971,219,0 +170730738019,219,0 +170730738067,219,0 +170730738116,219,0 +170730738164,219,0 +170730738212,219,0 +170730738262,219,0 +170730738310,219,0 +170730738359,219,0 +170730738407,219,0 +170730738457,219,0 +170730738506,219,0 +170730738555,219,0 +170730738605,219,0 +170730738653,219,0 +170730738701,219,0 +170730738749,220,0 +170730738797,221,0 +170730738844,256,0 +170730738894,263,0 +170730738942,221,0 +170730738990,220,0 +170730739038,219,0 +170730739085,219,0 +170730739133,218,0 +170730739181,219,0 +170730739229,219,0 +170730739277,219,0 +170730739326,219,0 +170730739374,219,0 +170730739422,219,0 +170730739470,219,0 +170730739518,218,0 +170730739566,219,0 +170730739616,219,0 +170730739664,219,0 +170730739713,219,0 +170730739761,219,0 +170730739809,219,0 +170730739857,231,0 +170730739905,256,0 +170730739954,238,0 +170730740002,221,0 +170730740050,219,0 +170730740100,219,0 +170730740148,219,0 +170730740196,219,0 +170730740244,218,0 +170730740292,219,0 +170730740340,219,0 +170730740388,219,0 +170730740436,219,0 +170730740484,219,0 +170730740533,219,0 +170730740583,219,0 +170730740631,219,0 +170730740680,219,0 +170730740728,219,0 +170730740776,218,0 +170730740826,219,0 +170730740873,219,0 +170730740921,249,0 +170730740969,265,0 +170730741017,228,0 +170730741065,219,0 +170730741113,219,0 +170730741161,219,0 +170730741210,219,0 +170730741258,219,0 +170730741306,219,0 +170730741354,219,0 +170730741402,218,0 +170730741449,219,0 +170730741497,219,0 +170730741545,218,0 +170730741593,219,0 +170730741641,218,0 +170730741689,219,0 +170730741737,219,0 +170730741785,218,0 +170730741832,219,0 +170730741880,219,0 +170730741928,220,0 +170730741976,255,0 +170730742026,262,0 +170730742074,225,0 +170730742121,219,0 +170730742171,219,0 +170730742219,218,0 +170730742267,219,0 +170730742315,218,0 +170730742362,219,0 +170730742412,219,0 +170730742462,218,0 +170730742511,219,0 +170730742561,219,0 +170730742610,218,0 +170730742660,218,0 +170730742708,218,0 +170730742756,219,0 +170730742803,219,0 +170730742853,219,0 +170730742901,219,0 +170730742950,219,0 +170730743000,222,0 +170730743048,262,0 +170730743097,263,0 +170730743145,224,0 +170730743193,219,0 +170730743241,219,0 +170730743289,219,0 +170730743337,219,0 +170730743385,219,0 +170730743433,218,0 +170730743483,219,0 +170730743532,219,0 +170730743582,219,0 +170730743630,219,0 +170730743678,219,0 +170730743726,219,0 +170730743774,219,0 +170730743821,219,0 +170730743869,219,0 +170730743917,219,0 +170730743965,219,0 +170730744013,220,0 +170730744061,251,0 +170730744111,263,0 +170730744160,229,0 +170730744210,220,0 +170730744258,219,0 +170730744306,219,0 +170730744355,219,0 +170730744403,219,0 +170730744453,219,0 +170730744501,219,0 +170730744550,218,0 +170730744599,219,0 +170730744647,219,0 +170730744695,219,0 +170730744743,219,0 +170730744791,219,0 +170730744839,219,0 +170730744888,219,0 +170730744936,219,0 +170730744984,219,0 +170730745032,220,0 +170730745080,221,0 +170730745129,247,0 +170730745177,256,0 +170730745227,223,0 +170730745275,220,0 +170730745323,219,0 +170730745372,219,0 +170730745420,219,0 +170730745470,219,0 +170730745518,219,0 +170730745566,219,0 +170730745615,219,0 +170730745663,219,0 +170730745711,219,0 +170730745761,219,0 +170730745810,219,0 +170730745858,219,0 +170730745906,219,0 +170730745954,219,0 +170730746002,219,0 +170730746052,219,0 +170730746101,219,0 +170730746149,221,0 +170730746199,252,0 +170730746248,260,0 +170730746296,222,0 +170730746346,220,0 +170730746395,219,0 +170730746443,219,0 +170730746491,219,0 +170730746539,219,0 +170730746587,219,0 +170730746635,219,0 +170730746683,219,0 +170730746731,219,0 +170730746780,219,0 +170730746830,219,0 +170730746879,219,0 +170730746927,219,0 +170730746975,219,0 +170730747023,219,0 +170730747071,219,0 +170730747119,219,0 +170730747167,220,0 +170730747215,255,0 +170730747263,260,0 +170730747310,227,0 +170730747358,219,0 +170730747406,219,0 +170730747454,219,0 +170730747502,219,0 +170730747550,220,0 +170730747599,219,0 +170730747649,220,0 +170730747697,219,0 +170730747745,219,0 +170730747793,219,0 +170730747841,219,0 +170730747889,219,0 +170730747937,219,0 +170730747984,219,0 +170730748032,219,0 +170730748080,219,0 +170730748128,219,0 +170730748176,220,0 +170730748224,220,0 +170730748272,247,0 +170730748321,255,0 +170730748371,226,0 +170730748419,220,0 +170730748468,219,0 +170730748516,219,0 +170730748566,219,0 +170730748616,219,0 +170730748663,220,0 +170730748711,219,0 +170730748761,219,0 +170730748809,219,0 +170730748858,219,0 +170730748906,219,0 +170730748954,219,0 +170730749002,219,0 +170730749050,219,0 +170730749098,219,0 +170730749146,219,0 +170730749194,219,0 +170730749242,220,0 +170730749290,221,0 +170730749340,256,0 +170730749389,259,0 +170730749437,226,0 +170730749485,220,0 +170730749534,219,0 +170730749582,219,0 +170730749632,219,0 +170730749680,219,0 +170730749728,219,0 +170730749778,220,0 +170730749825,219,0 +170730749875,219,0 +170730749923,219,0 +170730749972,219,0 +170730750020,219,0 +170730750068,220,0 +170730750118,219,0 +170730750166,220,0 +170730750216,219,0 +170730750263,219,0 +170730750313,220,0 +170730750361,255,0 +170730750409,251,0 +170730750458,225,0 +170730750508,220,0 +170730750556,219,0 +170730750604,219,0 +170730750652,219,0 +170730750700,220,0 +170730750748,219,0 +170730750796,219,0 +170730750844,219,0 +170730750893,219,0 +170730750941,219,0 +170730750991,219,0 +170730751039,219,0 +170730751086,219,0 +170730751134,219,0 +170730751184,219,0 +170730751234,219,0 +170730751282,219,0 +170730751331,219,0 +170730751379,220,0 +170730751429,256,0 +170730751476,273,1 +170730751577,219,0 +170730751625,219,0 +170730751673,219,0 +170730751721,219,0 +170730751769,219,0 +170730751819,219,0 +170730751868,219,0 +170730751916,219,0 +170730751964,219,0 +170730752014,219,0 +170730752062,219,0 +170730752111,219,0 +170730752159,219,0 +170730752207,219,0 +170730752255,219,0 +170730752303,219,0 +170730752351,219,0 +170730752401,219,0 +170730752448,222,0 +170730752498,258,0 +170730752546,243,0 +170730752594,221,0 +170730752643,219,0 +170730752691,219,0 +170730752739,219,0 +170730752789,219,0 +170730752837,219,0 +170730752885,219,0 +170730752934,219,0 +170730752982,220,0 +170730753032,219,0 +170730753081,219,0 +170730753129,220,0 +170730753179,219,0 +170730753227,219,0 +170730753275,219,0 +170730753324,219,0 +170730753372,219,0 +170730753422,219,0 +170730753471,220,0 +170730753519,252,0 +170730753567,257,0 +170730753617,228,0 +170730753666,219,0 +170730753714,219,0 +170730753762,219,0 +170730753812,219,0 +170730753860,219,0 +170730753909,219,0 +170730753957,219,0 +170730754005,219,0 +170730754053,219,0 +170730754101,219,0 +170730754151,219,0 +170730754198,219,0 +170730754246,219,0 +170730754294,219,0 +170730754342,219,0 +170730754390,219,0 +170730754440,219,0 +170730754489,219,0 +170730754537,221,0 +170730754585,253,0 +170730754633,256,0 +170730754681,222,0 +170730754729,219,0 +170730754777,219,0 +170730754825,219,0 +170730754873,219,0 +170730754922,219,0 +170730754970,219,0 +170730755018,218,0 +170730755068,219,0 +170730755117,219,0 +170730755165,219,0 +170730755213,219,0 +170730755261,219,0 +170730755311,218,0 +170730755360,219,0 +170730755408,219,0 +170730755456,219,0 +170730755504,219,0 +170730755554,219,0 +170730755602,232,0 +170730755650,256,0 +170730755698,233,0 +170730755747,220,0 +170730755797,219,0 +170730755845,218,0 +170730755894,219,0 +170730755942,218,0 +170730755990,219,0 +170730756038,219,0 +170730756088,218,0 +170730756136,219,0 +170730756184,219,0 +170730756232,219,0 +170730756280,218,0 +170730756329,219,0 +170730756379,219,0 +170730756428,219,0 +170730756476,218,0 +170730756524,219,0 +170730756572,219,0 +170730756620,219,0 +170730756668,251,0 +170730756716,258,0 +170730756764,226,0 +170730756812,219,0 +170730756861,219,0 +170730756909,219,0 +170730756957,219,0 +170730757005,219,0 +170730757055,219,0 +170730757104,219,0 +170730757154,219,0 +170730757202,219,0 +170730757251,220,0 +170730757299,219,0 +170730757347,219,0 +170730757397,219,0 +170730757445,219,0 +170730757494,219,0 +170730757542,220,0 +170730757590,219,0 +170730757638,219,0 +170730757686,220,0 +170730757734,250,0 +170730757782,257,0 +170730757832,224,0 +170730757881,219,0 +170730757931,219,0 +170730757979,219,0 +170730758027,219,0 +170730758076,219,0 +170730758124,219,0 +170730758174,219,0 +170730758223,219,0 +170730758271,219,0 +170730758319,219,0 +170730758367,219,0 +170730758416,219,0 +170730758464,219,0 +170730758512,219,0 +170730758560,219,0 +170730758608,218,0 +170730758656,219,0 +170730758706,219,0 +170730758754,241,0 +170730758803,251,0 +170730758851,222,0 +170730758901,219,0 +170730758950,219,0 +170730758998,219,0 +170730759046,218,0 +170730759096,219,0 +170730759144,219,0 +170730759192,219,0 +170730759240,219,0 +170730759288,219,0 +170730759336,219,0 +170730759383,219,0 +170730759433,219,0 +170730759481,219,0 +170730759530,219,0 +170730759580,219,0 +170730759629,219,0 +170730759677,219,0 +170730759727,219,0 +170730759775,220,0 +170730759823,252,0 +170730759871,257,0 +170730759919,228,0 +170730759966,219,0 +170730760014,219,0 +170730760064,219,0 +170730760112,219,0 +170730760161,219,0 +170730760209,219,0 +170730760259,219,0 +170730760308,219,0 +170730760358,219,0 +170730760407,219,0 +170730760457,219,0 +170730760507,219,0 +170730760556,219,0 +170730760605,219,0 +170730760655,219,0 +170730760703,219,0 +170730760751,219,0 +170730760800,220,0 +170730760850,223,0 +170730760898,254,0 +170730760946,257,0 +170730760994,221,0 +170730761042,219,0 +170730761090,219,0 +170730761138,219,0 +170730761186,219,0 +170730761234,219,0 +170730761282,218,0 +170730761330,219,0 +170730761378,219,0 +170730761426,218,0 +170730761475,219,0 +170730761525,218,0 +170730761573,218,0 +170730761621,219,0 +170730761669,219,0 +170730761717,218,0 +170730761765,219,0 +170730761814,219,0 +170730761862,219,0 +170730761911,241,0 +170730761959,264,0 +170730762007,223,0 +170730762055,220,0 +170730762103,219,0 +170730762151,219,0 +170730762199,219,0 +170730762247,219,0 +170730762297,219,0 +170730762344,219,0 +170730762392,218,0 +170730762440,219,0 +170730762488,219,0 +170730762536,219,0 +170730762586,219,0 +170730762633,219,0 +170730762683,219,0 +170730762731,219,0 +170730762779,219,0 +170730762827,219,0 +170730762875,220,0 +170730762922,221,0 +170730762970,251,0 +170730763018,259,0 +170730763068,229,0 +170730763115,220,0 +170730763163,219,0 +170730763211,219,0 +170730763259,220,0 +170730763307,219,0 +170730763355,219,0 +170730763403,219,0 +170730763451,219,0 +170730763499,219,0 +170730763547,219,0 +170730763596,220,0 +170730763644,219,0 +170730763692,219,0 +170730763742,219,0 +170730763790,219,0 +170730763838,219,0 +170730763885,219,0 +170730763933,219,0 +170730763981,220,0 +170730764031,245,0 +170730764079,265,0 +170730764128,226,0 +170730764176,220,0 +170730764226,220,0 +170730764274,220,0 +170730764322,220,0 +170730764370,220,0 +170730764418,220,0 +170730764467,220,0 +170730764515,219,0 +170730764563,219,0 +170730764613,220,0 +170730764662,220,0 +170730764710,219,0 +170730764758,219,0 +170730764806,220,0 +170730764856,220,0 +170730764903,220,0 +170730764953,220,0 +170730765002,220,0 +170730765052,235,0 +170730765100,257,0 +170730765148,225,0 +170730765197,220,0 +170730765245,220,0 +170730765293,219,0 +170730765341,220,0 +170730765389,220,0 +170730765437,219,0 +170730765487,220,0 +170730765535,219,0 +170730765583,219,0 +170730765631,220,0 +170730765678,219,0 +170730765726,219,0 +170730765774,220,0 +170730765824,219,0 +170730765872,219,0 +170730765920,219,0 +170730765969,219,0 +170730766019,220,0 +170730766067,220,0 +170730766116,252,0 +170730766164,260,0 +170730766212,229,0 +170730766260,219,0 +170730766308,219,0 +170730766356,219,0 +170730766404,219,0 +170730766454,219,0 +170730766503,219,0 +170730766551,219,0 +170730766599,219,0 +170730766647,219,0 +170730766695,220,0 +170730766743,219,0 +170730766791,219,0 +170730766839,219,0 +170730766887,220,0 +170730766935,219,0 +170730766983,219,0 +170730767032,219,0 +170730767080,220,0 +170730767130,221,0 +170730767179,258,0 +170730767227,269,0 +170730767277,222,0 +170730767324,219,0 +170730767374,219,0 +170730767422,219,0 +170730767470,219,0 +170730767518,219,0 +170730767566,219,0 +170730767615,219,0 +170730767663,219,0 +170730767713,219,0 +170730767761,219,0 +170730767809,219,0 +170730767858,219,0 +170730767906,219,0 +170730767954,219,0 +170730768002,219,0 +170730768050,219,0 +170730768098,219,0 +170730768146,219,0 +170730768193,221,0 +170730768241,249,0 +170730768289,255,0 +170730768337,222,0 +170730768385,219,0 +170730768433,218,0 +170730768482,219,0 +170730768530,219,0 +170730768578,219,0 +170730768626,219,0 +170730768674,219,0 +170730768722,219,0 +170730768770,218,0 +170730768818,219,0 +170730768865,219,0 +170730768915,219,0 +170730768963,219,0 +170730769011,219,0 +170730769060,219,0 +170730769108,219,0 +170730769156,219,0 +170730769205,220,0 +170730769253,239,0 +170730769301,257,0 +170730769349,233,0 +170730769397,220,0 +170730769445,219,0 +170730769492,219,0 +170730769540,218,0 +170730769588,218,0 +170730769636,219,0 +170730769684,219,0 +170730769732,219,0 +170730769780,218,0 +170730769828,218,0 +170730769876,219,0 +170730769923,219,0 +170730769971,219,0 +170730770019,218,0 +170730770069,219,0 +170730770118,219,0 +170730770166,218,0 +170730770214,219,0 +170730770262,219,0 +170730770310,247,0 +170730770358,258,0 +170730770406,228,0 +170730770454,220,0 +170730770504,218,0 +170730770553,219,0 +170730770601,218,0 +170730770649,219,0 +170730770697,219,0 +170730770745,218,0 +170730770795,218,0 +170730770843,219,0 +170730770891,218,0 +170730770938,219,0 +170730770988,219,0 +170730771036,218,0 +170730771084,218,0 +170730771133,219,0 +170730771181,219,0 +170730771229,218,0 +170730771279,219,0 +170730771326,220,0 +170730771376,248,0 +170730771426,267,0 +170730771474,223,0 +170730771521,219,0 +170730771569,219,0 +170730771617,219,0 +170730771665,219,0 +170730771715,219,0 +170730771764,219,0 +170730771812,219,0 +170730771861,219,0 +170730771908,219,0 +170730771956,219,0 +170730772004,219,0 +170730772054,219,0 +170730772103,219,0 +170730772153,218,0 +170730772201,219,0 +170730772249,219,0 +170730772298,219,0 +170730772346,219,0 +170730772394,222,0 +170730772442,266,0 +170730772490,245,0 +170730772540,220,0 +170730772589,219,0 +170730772639,218,0 +170730772688,219,0 +170730772738,219,0 +170730772785,219,0 +170730772833,219,0 +170730772883,219,0 +170730772931,219,0 +170730772979,219,0 +170730773027,219,0 +170730773075,219,0 +170730773123,218,0 +170730773172,219,0 +170730773220,219,0 +170730773270,219,0 +170730773318,219,0 +170730773366,219,0 +170730773415,220,0 +170730773465,248,0 +170730773513,261,0 +170730773562,227,0 +170730773610,218,0 +170730773660,219,0 +170730773709,219,0 +170730773757,219,0 +170730773805,219,0 +170730773853,219,0 +170730773901,219,0 +170730773949,218,0 +170730773997,219,0 +170730774045,219,0 +170730774093,219,0 +170730774141,219,0 +170730774189,219,0 +170730774238,219,0 +170730774286,219,0 +170730774336,219,0 +170730774385,218,0 +170730774433,219,0 +170730774481,221,0 +170730774531,246,0 +170730774580,260,0 +170730774630,221,0 +170730774679,219,0 +170730774729,219,0 +170730774777,218,0 +170730774826,219,0 +170730774874,219,0 +170730774922,219,0 +170730774972,219,0 +170730775020,219,0 +170730775069,219,0 +170730775117,219,0 +170730775167,219,0 +170730775216,219,0 +170730775264,219,0 +170730775312,219,0 +170730775362,219,0 +170730775410,219,0 +170730775458,219,0 +170730775505,219,0 +170730775553,241,0 +170730775603,254,0 +170730775651,225,0 +170730775699,219,0 +170730775748,219,0 +170730775796,219,0 +170730775844,219,0 +170730775892,219,0 +170730775940,219,0 +170730775988,219,0 +170730776036,219,0 +170730776086,219,0 +170730776135,219,0 +170730776185,218,0 +170730776233,219,0 +170730776282,219,0 +170730776330,218,0 +170730776378,218,0 +170730776428,219,0 +170730776477,219,0 +170730776525,219,0 +170730776573,219,0 +170730776621,255,0 +170730776671,264,0 +170730776719,227,0 +170730776767,219,0 +170730776814,219,0 +170730776863,219,0 +170730776911,219,0 +170730776959,218,0 +170730777007,219,0 +170730777055,219,0 +170730777103,218,0 +170730777150,218,0 +170730777200,219,0 +170730777248,219,0 +170730777296,219,0 +170730777344,219,0 +170730777392,219,0 +170730777440,219,0 +170730777489,218,0 +170730777539,219,0 +170730777587,219,0 +170730777635,221,0 +170730777683,256,0 +170730777731,271,1 +170730777816,219,0 +170730777864,219,0 +170730777912,219,0 +170730777960,219,0 +170730778008,219,0 +170730778058,219,0 +170730778107,219,0 +170730778155,219,0 +170730778203,219,0 +170730778251,219,0 +170730778300,218,0 +170730778348,218,0 +170730778396,219,0 +170730778444,218,0 +170730778494,219,0 +170730778543,219,0 +170730778591,218,0 +170730778639,219,0 +170730778689,221,0 +170730778736,254,0 +170730778784,251,0 +170730778832,220,0 +170730778880,218,0 +170730778928,218,0 +170730778978,218,0 +170730779025,218,0 +170730779075,219,0 +170730779123,218,0 +170730779171,219,0 +170730779220,218,0 +170730779268,218,0 +170730779318,218,0 +170730779367,218,0 +170730779415,219,0 +170730779463,219,0 +170730779511,218,0 +170730779559,219,0 +170730779609,219,0 +170730779657,219,0 +170730779705,220,0 +170730779753,246,0 +170730779801,255,0 +170730779849,222,0 +170730779897,220,0 +170730779945,219,0 +170730779994,219,0 +170730780042,219,0 +170730780090,219,0 +170730780138,219,0 +170730780188,218,0 +170730780236,219,0 +170730780284,218,0 +170730780332,219,0 +170730780379,219,0 +170730780429,219,0 +170730780477,219,0 +170730780526,219,0 +170730780574,219,0 +170730780622,219,0 +170730780670,219,0 +170730780718,219,0 +170730780766,221,0 +170730780814,254,0 +170730780862,259,0 +170730780909,227,0 +170730780957,219,0 +170730781005,219,0 +170730781055,218,0 +170730781104,219,0 +170730781152,218,0 +170730781202,219,0 +170730781250,218,0 +170730781299,219,0 +170730781347,219,0 +170730781395,219,0 +170730781445,219,0 +170730781493,219,0 +170730781541,219,0 +170730781589,218,0 +170730781638,219,0 +170730781686,219,0 +170730781734,219,0 +170730781782,219,0 +170730781832,229,0 +170730781880,253,0 +170730781928,238,0 +170730781976,220,0 +170730782025,219,0 +170730782073,219,0 +170730782121,219,0 +170730782169,219,0 +170730782219,219,0 +170730782267,219,0 +170730782315,219,0 +170730782362,218,0 +170730782412,219,0 +170730782460,219,0 +170730782508,219,0 +170730782557,219,0 +170730782605,219,0 +170730782653,219,0 +170730782701,219,0 +170730782749,219,0 +170730782799,219,0 +170730782847,219,0 +170730782895,222,0 +170730782944,282,1 +170730783036,222,0 +170730783085,219,0 +170730783133,219,0 +170730783181,219,0 +170730783231,219,0 +170730783279,219,0 +170730783327,219,0 +170730783374,219,0 +170730783424,219,0 +170730783472,219,0 +170730783521,219,0 +170730783569,219,0 +170730783617,219,0 +170730783667,219,0 +170730783715,219,0 +170730783763,219,0 +170730783811,219,0 +170730783860,219,0 +170730783908,220,0 +170730783956,259,0 +170730784004,266,0 +170730784054,231,0 +170730784102,219,0 +170730784150,219,0 +170730784199,219,0 +170730784247,219,0 +170730784297,219,0 +170730784344,219,0 +170730784392,219,0 +170730784440,219,0 +170730784488,219,0 +170730784536,219,0 +170730784584,219,0 +170730784634,219,0 +170730784682,219,0 +170730784731,220,0 +170730784779,219,0 +170730784827,219,0 +170730784875,219,0 +170730784923,220,0 +170730784972,221,0 +170730785020,262,0 +170730785068,259,0 +170730785118,223,0 +170730785167,219,0 +170730785217,219,0 +170730785265,219,0 +170730785313,219,0 +170730785362,219,0 +170730785412,219,0 +170730785460,219,0 +170730785509,218,0 +170730785559,219,0 +170730785607,218,0 +170730785656,218,0 +170730785704,218,0 +170730785752,218,0 +170730785800,218,0 +170730785848,218,0 +170730785897,219,0 +170730785947,219,0 +170730785995,219,0 +170730786044,237,0 +170730786092,268,0 +170730786140,230,0 +170730786190,219,0 +170730786239,219,0 +170730786287,219,0 +170730786335,219,0 +170730786385,219,0 +170730786433,218,0 +170730786481,219,0 +170730786529,219,0 +170730786578,219,0 +170730786628,219,0 +170730786677,219,0 +170730786725,219,0 +170730786773,218,0 +170730786821,218,0 +170730786869,219,0 +170730786917,218,0 +170730786967,219,0 +170730787015,219,0 +170730787063,219,0 +170730787112,256,0 +170730787160,260,0 +170730787208,229,0 +170730787256,219,0 +170730787304,219,0 +170730787352,219,0 +170730787400,218,0 +170730787448,219,0 +170730787497,219,0 +170730787545,218,0 +170730787595,218,0 +170730787643,218,0 +170730787690,218,0 +170730787738,219,0 +170730787786,218,0 +170730787834,218,0 +170730787882,218,0 +170730787930,219,0 +170730787978,219,0 +170730788026,219,0 +170730788074,219,0 +170730788122,221,0 +170730788170,254,0 +170730788218,266,0 +170730788266,221,0 +170730788316,219,0 +170730788364,218,0 +170730788412,219,0 +170730788460,219,0 +170730788508,219,0 +170730788557,219,0 +170730788605,219,0 +170730788653,219,0 +170730788703,218,0 +170730788751,219,0 +170730788799,219,0 +170730788848,219,0 +170730788896,219,0 +170730788944,218,0 +170730788993,218,0 +170730789041,218,0 +170730789089,219,0 +170730789139,220,0 +170730789187,230,0 +170730789235,258,0 +170730789283,239,0 +170730789331,220,0 +170730789379,218,0 +170730789427,219,0 +170730789475,219,0 +170730789523,218,0 +170730789570,219,0 +170730789618,219,0 +170730789666,219,0 +170730789714,219,0 +170730789762,219,0 +170730789810,219,0 +170730789858,219,0 +170730789907,219,0 +170730789955,219,0 +170730790005,219,0 +170730790053,219,0 +170730790102,219,0 +170730790150,219,0 +170730790198,220,0 +170730790246,247,0 +170730790296,250,0 +170730790344,221,0 +170730790393,219,0 +170730790441,219,0 +170730790490,219,0 +170730790538,219,0 +170730790586,219,0 +170730790636,219,0 +170730790685,219,0 +170730790733,219,0 +170730790783,219,0 +170730790831,219,0 +170730790879,219,0 +170730790928,219,0 +170730790978,219,0 +170730791026,219,0 +170730791074,219,0 +170730791122,219,0 +170730791170,219,0 +170730791219,219,0 +170730791267,220,0 +170730791315,249,0 +170730791363,252,0 +170730791413,225,0 +170730791462,220,0 +170730791512,219,0 +170730791560,219,0 +170730791609,219,0 +170730791659,219,0 +170730791707,219,0 +170730791755,219,0 +170730791803,219,0 +170730791852,219,0 +170730791900,219,0 +170730791949,219,0 +170730791997,219,0 +170730792047,219,0 +170730792095,219,0 +170730792143,220,0 +170730792191,219,0 +170730792240,219,0 +170730792288,220,0 +170730792336,226,0 +170730792384,250,0 +170730792432,239,0 +170730792480,220,0 +170730792528,219,0 +170730792577,219,0 +170730792625,219,0 +170730792673,218,0 +170730792723,219,0 +170730792770,218,0 +170730792818,219,0 +170730792866,218,0 +170730792914,219,0 +170730792962,219,0 +170730793010,219,0 +170730793058,219,0 +170730793106,219,0 +170730793154,219,0 +170730793203,219,0 +170730793251,218,0 +170730793301,219,0 +170730793349,219,0 +170730793398,250,0 +170730793448,258,0 +170730793496,228,0 +170730793543,219,0 +170730793591,218,0 +170730793639,219,0 +170730793687,219,0 +170730793737,219,0 +170730793785,219,0 +170730793834,219,0 +170730793882,219,0 +170730793930,219,0 +170730793978,218,0 +170730794028,219,0 +170730794076,219,0 +170730794125,218,0 +170730794173,218,0 +170730794221,219,0 +170730794269,219,0 +170730794318,218,0 +170730794366,219,0 +170730794414,220,0 +170730794462,249,0 +170730794510,256,0 +170730794558,225,0 +170730794606,218,0 +170730794654,219,0 +170730794702,219,0 +170730794750,219,0 +170730794798,219,0 +170730794846,219,0 +170730794894,219,0 +170730794942,219,0 +170730794991,219,0 +170730795039,218,0 +170730795088,219,0 +170730795138,219,0 +170730795186,218,0 +170730795234,219,0 +170730795283,219,0 +170730795331,219,0 +170730795379,219,0 +170730795427,219,0 +170730795477,225,0 +170730795526,253,0 +170730795574,248,0 +170730795622,221,0 +170730795670,219,0 +170730795718,219,0 +170730795766,219,0 +170730795814,219,0 +170730795862,218,0 +170730795910,218,0 +170730795959,219,0 +170730796007,219,0 +170730796055,219,0 +170730796103,218,0 +170730796151,219,0 +170730796198,219,0 +170730796246,219,0 +170730796294,218,0 +170730796342,219,0 +170730796392,219,0 +170730796440,219,0 +170730796488,219,0 +170730796537,260,0 +170730796587,256,0 +170730796635,229,0 +170730796683,219,0 +170730796731,219,0 +170730796780,219,0 +170730796828,219,0 +170730796878,219,0 +170730796927,219,0 +170730796977,219,0 +170730797025,219,0 +170730797073,218,0 +170730797121,219,0 +170730797169,218,0 +170730797217,218,0 +170730797265,219,0 +170730797313,219,0 +170730797361,219,0 +170730797410,218,0 +170730797458,219,0 +170730797506,219,0 +170730797556,224,0 +170730797604,251,0 +170730797652,265,0 +170730797699,226,0 +170730797749,220,0 +170730797798,220,0 +170730797846,220,0 +170730797894,220,0 +170730797942,219,0 +170730797992,219,0 +170730798041,219,0 +170730798089,219,0 +170730798139,220,0 +170730798187,219,0 +170730798234,219,0 +170730798282,219,0 +170730798330,220,0 +170730798378,220,0 +170730798426,220,0 +170730798474,219,0 +170730798522,220,0 +170730798570,220,0 +170730798618,221,0 +170730798665,249,0 +170730798713,254,0 +170730798761,224,0 +170730798809,219,0 +170730798857,219,0 +170730798907,219,0 +170730798956,219,0 +170730799004,219,0 +170730799052,220,0 +170730799101,219,0 +170730799149,219,0 +170730799197,219,0 +170730799247,220,0 +170730799296,219,0 +170730799344,219,0 +170730799394,220,0 +170730799443,219,0 +170730799493,219,0 +170730799542,219,0 +170730799590,219,0 +170730799640,220,0 +170730799688,249,0 +170730799737,250,0 +170730799785,226,0 +170730799833,220,0 +170730799881,219,0 +170730799929,219,0 +170730799977,220,0 +170730800025,219,0 +170730800073,219,0 +170730800121,220,0 +170730800170,219,0 +170730800218,219,0 +170730800266,220,0 +170730800314,220,0 +170730800362,219,0 +170730800410,220,0 +170730800458,220,0 +170730800506,219,0 +170730800555,219,0 +170730800603,220,0 +170730800651,219,0 +170730800699,221,0 +170730800747,251,0 +170730800794,250,0 +170730800842,228,0 +170730800890,220,0 +170730800940,219,0 +170730800987,220,0 +170730801035,219,0 +170730801083,219,0 +170730801131,220,0 +170730801179,220,0 +170730801227,220,0 +170730801275,219,0 +170730801323,219,0 +170730801371,219,0 +170730801418,220,0 +170730801468,220,0 +170730801516,219,0 +170730801565,219,0 +170730801615,219,0 +170730801663,219,0 +170730801711,220,0 +170730801759,221,0 +170730801808,247,0 +170730801858,252,0 +170730801906,227,0 +170730801954,220,0 +170730802001,219,0 +170730802049,219,0 +170730802097,219,0 +170730802145,219,0 +170730802193,219,0 +170730802241,219,0 +170730802289,219,0 +170730802337,219,0 +170730802385,219,0 +170730802434,220,0 +170730802482,219,0 +170730802530,219,0 +170730802578,219,0 +170730802626,219,0 +170730802674,219,0 +170730802722,220,0 +170730802769,220,0 +170730802819,226,0 +170730802867,250,0 +170730802916,240,0 +170730802964,220,0 +170730803014,220,0 +170730803062,219,0 +170730803110,220,0 +170730803157,220,0 +170730803205,219,0 +170730803253,219,0 +170730803301,219,0 +170730803349,220,0 +170730803397,220,0 +170730803445,219,0 +170730803493,219,0 +170730803541,219,0 +170730803589,219,0 +170730803639,219,0 +170730803688,220,0 +170730803736,219,0 +170730803784,220,0 +170730803832,221,0 +170730803880,265,0 +170730803927,278,1 +170730804010,220,0 +170730804058,220,0 +170730804106,220,0 +170730804154,220,0 +170730804202,220,0 +170730804249,219,0 +170730804297,220,0 +170730804345,220,0 +170730804393,219,0 +170730804441,219,0 +170730804489,219,0 +170730804537,219,0 +170730804586,220,0 +170730804634,219,0 +170730804682,219,0 +170730804730,219,0 +170730804778,219,0 +170730804826,219,0 +170730804874,219,0 +170730804922,223,0 +170730804969,251,0 +170730805017,246,0 +170730805065,221,0 +170730805113,220,0 +170730805163,219,0 +170730805212,219,0 +170730805260,219,0 +170730805310,219,0 +170730805358,219,0 +170730805406,219,0 +170730805455,219,0 +170730805505,219,0 +170730805553,219,0 +170730805601,219,0 +170730805650,220,0 +170730805700,220,0 +170730805749,219,0 +170730805797,219,0 +170730805845,220,0 +170730805893,220,0 +170730805941,220,0 +170730805990,248,0 +170730806038,251,0 +170730806088,227,0 +170730806137,220,0 +170730806185,220,0 +170730806235,220,0 +170730806283,220,0 +170730806332,219,0 +170730806380,220,0 +170730806428,220,0 +170730806476,219,0 +170730806524,219,0 +170730806572,219,0 +170730806622,220,0 +170730806670,220,0 +170730806718,219,0 +170730806767,219,0 +170730806815,219,0 +170730806865,219,0 +170730806913,220,0 +170730806962,220,0 +170730807010,225,0 +170730807058,249,0 +170730807106,242,0 +170730807156,220,0 +170730807205,219,0 +170730807253,219,0 +170730807303,219,0 +170730807351,220,0 +170730807400,219,0 +170730807448,220,0 +170730807496,220,0 +170730807546,219,0 +170730807594,220,0 +170730807642,219,0 +170730807690,219,0 +170730807737,219,0 +170730807785,220,0 +170730807835,219,0 +170730807883,219,0 +170730807932,219,0 +170730807980,220,0 +170730808030,221,0 +170730808079,249,0 +170730808127,251,0 +170730808175,225,0 +170730808223,220,0 +170730808271,220,0 +170730808319,220,0 +170730808367,220,0 +170730808417,219,0 +170730808465,219,0 +170730808513,219,0 +170730808561,219,0 +170730808609,220,0 +170730808658,219,0 +170730808706,220,0 +170730808756,220,0 +170730808805,220,0 +170730808853,220,0 +170730808901,220,0 +170730808951,220,0 +170730809000,220,0 +170730809048,219,0 +170730809096,221,0 +170730809144,247,0 +170730809192,266,0 +170730809240,227,0 +170730809288,220,0 +170730809336,220,0 +170730809385,220,0 +170730809433,219,0 +170730809481,220,0 +170730809529,220,0 +170730809577,220,0 +170730809627,219,0 +170730809676,219,0 +170730809726,220,0 +170730809774,220,0 +170730809822,219,0 +170730809871,219,0 +170730809919,220,0 +170730809967,219,0 +170730810015,219,0 +170730810063,220,0 +170730810113,220,0 +170730810161,239,0 +170730810209,262,0 +170730810257,231,0 +170730810305,221,0 +170730810354,219,0 +170730810404,220,0 +170730810453,220,0 +170730810501,219,0 +170730810551,220,0 +170730810599,219,0 +170730810648,219,0 +170730810696,220,0 +170730810744,220,0 +170730810792,220,0 +170730810840,219,0 +170730810888,219,0 +170730810936,220,0 +170730810986,219,0 +170730811034,220,0 +170730811082,219,0 +170730811130,220,0 +170730811179,220,0 +170730811227,256,0 +170730811277,256,0 +170730811324,228,0 +170730811372,220,0 +170730811420,220,0 +170730811468,219,0 +170730811516,219,0 +170730811564,219,0 +170730811612,219,0 +170730811660,220,0 +170730811708,219,0 +170730811755,220,0 +170730811805,219,0 +170730811853,220,0 +170730811901,220,0 +170730811949,220,0 +170730811997,220,0 +170730812044,219,0 +170730812092,219,0 +170730812140,220,0 +170730812188,220,0 +170730812236,220,0 +170730812284,252,0 +170730812332,254,0 +170730812380,228,0 +170730812428,220,0 +170730812477,220,0 +170730812525,220,0 +170730812575,220,0 +170730812623,220,0 +170730812671,220,0 +170730812720,219,0 +170730812770,219,0 +170730812818,219,0 +170730812867,219,0 +170730812915,219,0 +170730812965,220,0 +170730813012,220,0 +170730813060,219,0 +170730813108,220,0 +170730813156,220,0 +170730813204,220,0 +170730813252,220,0 +170730813300,222,0 +170730813348,253,0 +170730813396,270,1 +170730813489,220,0 +170730813539,219,0 +170730813587,220,0 +170730813636,219,0 +170730813684,219,0 +170730813734,219,0 +170730813782,220,0 +170730813829,219,0 +170730813877,220,0 +170730813925,220,0 +170730813973,220,0 +170730814021,220,0 +170730814069,220,0 +170730814118,219,0 +170730814166,220,0 +170730814216,220,0 +170730814264,220,0 +170730814312,220,0 +170730814360,224,0 +170730814408,254,0 +170730814455,251,0 +170730814503,222,0 +170730814553,219,0 +170730814601,220,0 +170730814649,220,0 +170730814697,219,0 +170730814745,219,0 +170730814793,219,0 +170730814841,220,0 +170730814889,220,0 +170730814937,219,0 +170730814985,219,0 +170730815033,219,0 +170730815081,219,0 +170730815130,220,0 +170730815178,220,0 +170730815226,220,0 +170730815274,220,0 +170730815322,219,0 +170730815370,221,0 +170730815418,259,0 +170730815465,267,0 +170730815513,224,0 +170730815561,220,0 +170730815609,220,0 +170730815657,219,0 +170730815707,219,0 +170730815755,219,0 +170730815803,220,0 +170730815851,220,0 +170730815899,219,0 +170730815947,220,0 +170730815996,219,0 +170730816044,220,0 +170730816092,220,0 +170730816140,219,0 +170730816188,219,0 +170730816236,220,0 +170730816284,219,0 +170730816332,219,0 +170730816380,220,0 +170730816428,221,0 +170730816476,250,0 +170730816523,254,0 +170730816571,228,0 +170730816619,220,0 +170730816667,219,0 +170730816715,220,0 +170730816763,220,0 +170730816811,219,0 +170730816859,220,0 +170730816907,219,0 +170730816955,219,0 +170730817002,219,0 +170730817050,219,0 +170730817098,219,0 +170730817146,220,0 +170730817194,220,0 +170730817243,219,0 +170730817291,219,0 +170730817339,219,0 +170730817389,219,0 +170730817437,219,0 +170730817484,221,0 +170730817532,251,0 +170730817580,255,0 +170730817628,227,0 +170730817676,220,0 +170730817724,219,0 +170730817772,220,0 +170730817820,219,0 +170730817869,219,0 +170730817917,219,0 +170730817967,219,0 +170730818015,220,0 +170730818064,220,0 +170730818112,219,0 +170730818160,219,0 +170730818208,219,0 +170730818256,219,0 +170730818305,220,0 +170730818353,220,0 +170730818401,220,0 +170730818449,219,0 +170730818497,220,0 +170730818545,221,0 +170730818594,249,0 +170730818642,256,0 +170730818690,222,0 +170730818738,220,0 +170730818786,219,0 +170730818833,219,0 +170730818881,219,0 +170730818931,219,0 +170730818979,219,0 +170730819027,219,0 +170730819075,219,0 +170730819122,219,0 +170730819170,219,0 +170730819220,219,0 +170730819268,219,0 +170730819316,219,0 +170730819363,219,0 +170730819411,219,0 +170730819459,219,0 +170730819507,219,0 +170730819555,220,0 +170730819603,223,0 +170730819651,249,0 +170730819699,262,0 +170730819747,220,0 +170730819795,219,0 +170730819842,219,0 +170730819890,219,0 +170730819938,219,0 +170730819986,219,0 +170730820034,219,0 +170730820082,219,0 +170730820130,219,0 +170730820179,219,0 +170730820227,219,0 +170730820275,219,0 +170730820323,219,0 +170730820371,219,0 +170730820420,219,0 +170730820468,219,0 +170730820516,219,0 +170730820565,219,0 +170730820613,218,0 +170730820663,219,0 +170730820712,219,0 +170730820760,219,0 +170730820808,219,0 +170730820856,219,0 +170730820905,219,0 +170730820953,219,0 +170730821001,219,0 +170730821049,219,0 +170730821097,219,0 +170730821145,220,0 +170730821193,254,0 +170730821240,259,0 +170730821288,227,0 +170730821338,220,0 +170730821387,219,0 +170730821435,219,0 +170730821483,219,0 +170730821531,219,0 +170730821579,219,0 +170730821627,219,0 +170730821675,218,0 +170730821724,219,0 +170730821772,219,0 +170730821820,219,0 +170730821868,219,0 +170730821915,219,0 +170730821963,219,0 +170730822011,219,0 +170730822061,219,0 +170730822109,219,0 +170730822156,219,0 +170730822204,221,0 +170730822252,247,0 +170730822300,261,0 +170730822348,222,0 +170730822396,219,0 +170730822444,219,0 +170730822492,219,0 +170730822539,219,0 +170730822587,219,0 +170730822635,219,0 +170730822683,219,0 +170730822731,219,0 +170730822779,219,0 +170730822827,219,0 +170730822875,219,0 +170730822922,219,0 +170730822970,219,0 +170730823018,220,0 +170730823066,219,0 +170730823116,219,0 +170730823163,219,0 +170730823213,219,0 +170730823261,220,0 +170730823309,248,0 +170730823358,257,0 +170730823406,223,0 +170730823454,219,0 +170730823502,219,0 +170730823550,219,0 +170730823597,219,0 +170730823645,219,0 +170730823693,219,0 +170730823741,218,0 +170730823789,219,0 +170730823837,219,0 +170730823885,219,0 +170730823933,218,0 +170730823980,219,0 +170730824028,219,0 +170730824076,218,0 +170730824124,219,0 +170730824172,218,0 +170730824220,219,0 +170730824269,219,0 +170730824317,232,0 +170730824365,249,0 +170730824413,239,0 +170730824463,220,0 +170730824511,219,0 +170730824558,219,0 +170730824608,219,0 +170730824656,219,0 +170730824704,219,0 +170730824751,219,0 +170730824799,219,0 +170730824847,218,0 +170730824895,218,0 +170730824943,218,0 +170730824991,219,0 +170730825039,219,0 +170730825087,218,0 +170730825136,219,0 +170730825184,218,0 +170730825232,218,0 +170730825280,219,0 +170730825328,220,0 +170730825377,253,0 +170730825425,250,0 +170730825473,222,0 +170730825521,218,0 +170730825569,218,0 +170730825617,218,0 +170730825665,219,0 +170730825713,218,0 +170730825761,218,0 +170730825810,218,0 +170730825860,219,0 +170730825908,219,0 +170730825956,218,0 +170730826005,218,0 +170730826053,219,0 +170730826101,218,0 +170730826149,219,0 +170730826197,218,0 +170730826245,219,0 +170730826293,219,0 +170730826341,219,0 +170730826389,219,0 +170730826437,246,0 +170730826484,256,0 +170730826534,227,0 +170730826582,219,0 +170730826630,219,0 +170730826677,219,0 +170730826727,219,0 +170730826775,219,0 +170730826822,219,0 +170730826870,219,0 +170730826918,219,0 +170730826966,219,0 +170730827014,219,0 +170730827062,219,0 +170730827110,219,0 +170730827158,219,0 +170730827206,219,0 +170730827253,219,0 +170730827301,219,0 +170730827349,219,0 +170730827397,219,0 +170730827445,220,0 +170730827493,245,0 +170730827541,251,0 +170730827589,227,0 +170730827637,220,0 +170730827684,219,0 +170730827732,219,0 +170730827780,219,0 +170730827828,219,0 +170730827878,219,0 +170730827925,219,0 +170730827973,219,0 +170730828021,219,0 +170730828069,219,0 +170730828117,219,0 +170730828165,219,0 +170730828213,219,0 +170730828261,219,0 +170730828309,219,0 +170730828356,219,0 +170730828404,219,0 +170730828452,219,0 +170730828500,220,0 +170730828548,249,0 +170730828596,261,0 +170730828645,224,0 +170730828693,219,0 +170730828741,219,0 +170730828789,219,0 +170730828837,219,0 +170730828885,219,0 +170730828933,219,0 +170730828981,219,0 +170730829029,219,0 +170730829076,219,0 +170730829124,219,0 +170730829172,219,0 +170730829220,219,0 +170730829268,219,0 +170730829316,219,0 +170730829364,219,0 +170730829412,219,0 +170730829460,219,0 +170730829507,219,0 +170730829557,221,0 +170730829605,247,0 +170730829654,250,0 +170730829702,222,0 +170730829750,219,0 +170730829798,219,0 +170730829846,219,0 +170730829894,219,0 +170730829942,219,0 +170730829991,219,0 +170730830039,219,0 +170730830087,219,0 +170730830135,219,0 +170730830183,219,0 +170730830231,220,0 +170730830280,219,0 +170730830328,219,0 +170730830376,219,0 +170730830424,220,0 +170730830472,219,0 +170730830520,219,0 +170730830568,219,0 +170730830616,224,0 +170730830664,262,0 +170730830712,242,0 +170730830760,220,0 +170730830809,219,0 +170730830857,219,0 +170730830907,218,0 +170730830955,219,0 +170730831004,219,0 +170730831054,219,0 +170730831102,218,0 +170730831151,219,0 +170730831199,219,0 +170730831247,219,0 +170730831295,219,0 +170730831344,218,0 +170730831392,218,0 +170730831440,219,0 +170730831490,218,0 +170730831538,218,0 +170730831587,219,0 +170730831635,220,0 +170730831683,248,0 +170730831731,253,0 +170730831779,227,0 +170730831828,219,0 +170730831876,219,0 +170730831924,219,0 +170730831972,219,0 +170730832020,218,0 +170730832070,219,0 +170730832118,219,0 +170730832166,219,0 +170730832214,218,0 +170730832262,219,0 +170730832310,219,0 +170730832358,218,0 +170730832405,219,0 +170730832453,219,0 +170730832501,219,0 +170730832549,219,0 +170730832597,219,0 +170730832647,219,0 +170730832696,220,0 +170730832744,252,0 +170730832792,270,1 +170730832871,219,0 +170730832920,219,0 +170730832968,219,0 +170730833016,219,0 +170730833066,219,0 +170730833115,219,0 +170730833163,219,0 +170730833213,219,0 +170730833262,218,0 +170730833311,219,0 +170730833361,219,0 +170730833409,218,0 +170730833457,219,0 +170730833505,219,0 +170730833553,219,0 +170730833601,219,0 +170730833649,219,0 +170730833697,219,0 +170730833745,220,0 +170730833794,247,0 +170730833842,267,0 +170730833890,224,0 +170730833938,219,0 +170730833988,219,0 +170730834035,218,0 +170730834083,219,0 +170730834131,219,0 +170730834179,218,0 +170730834227,219,0 +170730834275,219,0 +170730834323,218,0 +170730834371,219,0 +170730834419,219,0 +170730834467,219,0 +170730834514,218,0 +170730834562,219,0 +170730834610,218,0 +170730834660,219,0 +170730834708,219,0 +170730834755,219,0 +170730834803,221,0 +170730834851,248,0 +170730834901,266,0 +170730834949,222,0 +170730834997,219,0 +170730835045,219,0 +170730835092,219,0 +170730835140,219,0 +170730835190,219,0 +170730835238,220,0 +170730835286,219,0 +170730835334,219,0 +170730835383,219,0 +170730835433,220,0 +170730835481,219,0 +170730835529,219,0 +170730835578,219,0 +170730835628,219,0 +170730835676,219,0 +170730835723,219,0 +170730835771,219,0 +170730835821,220,0 +170730835869,246,0 +170730835917,277,1 +170730835999,222,0 +170730836047,220,0 +170730836095,219,0 +170730836145,219,0 +170730836193,220,0 +170730836242,219,0 +170730836292,220,0 +170730836340,219,0 +170730836388,219,0 +170730836436,220,0 +170730836484,220,0 +170730836532,220,0 +170730836581,219,0 +170730836631,220,0 +170730836679,219,0 +170730836728,220,0 +170730836776,220,0 +170730836826,219,0 +170730836874,220,0 +170730836922,247,0 +170730836970,250,0 +170730837017,226,0 +170730837067,220,0 +170730837115,220,0 +170730837163,219,0 +170730837211,219,0 +170730837260,219,0 +170730837308,219,0 +170730837356,219,0 +170730837406,220,0 +170730837454,219,0 +170730837502,220,0 +170730837551,219,0 +170730837601,219,0 +170730837649,220,0 +170730837698,220,0 +170730837746,220,0 +170730837794,219,0 +170730837844,220,0 +170730837893,220,0 +170730837943,221,0 +170730837991,248,0 +170730838039,251,0 +170730838088,223,0 +170730838136,219,0 +170730838186,220,0 +170730838234,219,0 +170730838283,220,0 +170730838331,219,0 +170730838379,219,0 +170730838427,220,0 +170730838476,220,0 +170730838524,219,0 +170730838572,219,0 +170730838622,220,0 +170730838670,219,0 +170730838718,220,0 +170730838766,220,0 +170730838815,219,0 +170730838865,220,0 +170730838914,220,0 +170730838962,220,0 +170730839010,237,0 +170730839058,248,0 +170730839108,222,0 +170730839156,220,0 +170730839205,220,0 +170730839253,219,0 +170730839303,219,0 +170730839351,219,0 +170730839400,220,0 +170730839448,219,0 +170730839496,219,0 +170730839544,219,0 +170730839592,219,0 +170730839642,219,0 +170730839690,219,0 +170730839738,219,0 +170730839787,219,0 +170730839837,219,0 +170730839885,220,0 +170730839933,219,0 +170730839982,220,0 +170730840030,221,0 +170730840080,249,0 +170730840129,258,0 +170730840177,226,0 +170730840227,219,0 +170730840275,219,0 +170730840323,220,0 +170730840371,220,0 +170730840419,219,0 +170730840467,219,0 +170730840516,219,0 +170730840564,219,0 +170730840614,219,0 +170730840663,219,0 +170730840711,219,0 +170730840759,219,0 +170730840807,219,0 +170730840855,219,0 +170730840904,220,0 +170730840952,220,0 +170730841000,220,0 +170730841048,220,0 +170730841096,222,0 +170730841144,254,0 +170730841192,259,0 +170730841240,224,0 +170730841290,219,0 +170730841338,220,0 +170730841386,219,0 +170730841434,219,0 +170730841483,220,0 +170730841531,219,0 +170730841581,219,0 +170730841628,220,0 +170730841678,220,0 +170730841726,219,0 +170730841774,219,0 +170730841823,219,0 +170730841873,219,0 +170730841921,219,0 +170730841970,219,0 +170730842020,219,0 +170730842069,220,0 +170730842119,220,0 +170730842167,225,0 +170730842215,248,0 +170730842265,223,0 +170730842314,220,0 +170730842362,220,0 +170730842410,220,0 +170730842458,219,0 +170730842507,219,0 +170730842555,219,0 +170730842603,219,0 +170730842651,220,0 +170730842701,219,0 +170730842749,220,0 +170730842797,219,0 +170730842845,220,0 +170730842893,219,0 +170730842941,220,0 +170730842988,220,0 +170730843036,220,0 +170730843086,219,0 +170730843135,219,0 +170730843183,221,0 +170730843231,250,0 +170730843279,252,0 +170730843327,229,0 +170730843377,220,0 +170730843425,219,0 +170730843474,220,0 +170730843524,220,0 +170730843572,220,0 +170730843620,219,0 +170730843669,219,0 +170730843717,219,0 +170730843765,219,0 +170730843815,220,0 +170730843864,220,0 +170730843912,219,0 +170730843960,219,0 +170730844010,219,0 +170730844059,220,0 +170730844107,219,0 +170730844155,220,0 +170730844203,220,0 +170730844251,224,0 +170730844299,248,0 +170730844348,255,0 +170730844398,221,0 +170730844447,220,0 +170730844495,219,0 +170730844545,220,0 +170730844594,219,0 +170730844642,219,0 +170730844690,220,0 +170730844740,220,0 +170730844788,219,0 +170730844836,220,0 +170730844884,220,0 +170730844932,220,0 +170730844980,220,0 +170730845029,219,0 +170730845079,219,0 +170730845127,220,0 +170730845175,220,0 +170730845223,220,0 +170730845270,220,0 +170730845320,250,0 +170730845369,246,0 +170730845419,227,0 +170730845467,220,0 +170730845515,220,0 +170730845563,220,0 +170730845612,219,0 +170730845660,219,0 +170730845710,219,0 +170730845758,220,0 +170730845807,219,0 +170730845855,220,0 +170730845905,219,0 +170730845953,219,0 +170730846001,220,0 +170730846050,220,0 +170730846098,220,0 +170730846146,220,0 +170730846195,219,0 +170730846245,220,0 +170730846293,220,0 +170730846341,221,0 +170730846389,250,0 +170730846437,259,0 +170730846485,225,0 +170730846534,219,0 +170730846582,219,0 +170730846630,219,0 +170730846678,220,0 +170730846726,219,0 +170730846774,220,0 +170730846822,219,0 +170730846870,219,0 +170730846918,220,0 +170730846966,219,0 +170730847015,219,0 +170730847065,219,0 +170730847113,219,0 +170730847162,219,0 +170730847210,219,0 +170730847260,220,0 +170730847308,219,0 +170730847356,220,0 +170730847405,249,0 +170730847453,255,0 +170730847501,222,0 +170730847549,220,0 +170730847597,219,0 +170730847645,220,0 +170730847693,219,0 +170730847741,219,0 +170730847789,219,0 +170730847837,219,0 +170730847885,220,0 +170730847933,220,0 +170730847982,219,0 +170730848030,219,0 +170730848080,219,0 +170730848128,219,0 +170730848176,220,0 +170730848225,220,0 +170730848273,220,0 +170730848321,219,0 +170730848369,220,0 +170730848419,220,0 +170730848467,251,0 +170730848515,252,0 +170730848563,228,0 +170730848611,220,0 +170730848658,220,0 +170730848708,220,0 +170730848756,220,0 +170730848804,220,0 +170730848853,220,0 +170730848901,220,0 +170730848949,220,0 +170730848997,220,0 +170730849045,220,0 +170730849093,220,0 +170730849141,220,0 +170730849189,220,0 +170730849237,220,0 +170730849285,219,0 +170730849333,219,0 +170730849381,220,0 +170730849429,220,0 +170730849477,221,0 +170730849525,249,0 +170730849573,251,0 +170730849622,227,0 +170730849670,220,0 +170730849718,219,0 +170730849768,220,0 +170730849816,219,0 +170730849864,219,0 +170730849912,219,0 +170730849960,219,0 +170730850008,219,0 +170730850057,220,0 +170730850105,219,0 +170730850155,219,0 +170730850203,219,0 +170730850252,219,0 +170730850302,219,0 +170730850351,220,0 +170730850401,219,0 +170730850450,220,0 +170730850500,220,0 +170730850549,226,0 +170730850599,266,0 +170730850647,249,0 +170730850696,222,0 +170730850744,220,0 +170730850794,220,0 +170730850842,220,0 +170730850890,220,0 +170730850938,220,0 +170730850986,220,0 +170730851034,220,0 +170730851083,220,0 +170730851131,219,0 +170730851181,220,0 +170730851229,219,0 +170730851278,220,0 +170730851326,220,0 +170730851376,220,0 +170730851424,220,0 +170730851473,219,0 +170730851521,220,0 +170730851569,221,0 +170730851617,261,0 +170730851665,252,0 +170730851713,229,0 +170730851761,220,0 +170730851810,220,0 +170730851860,220,0 +170730851909,220,0 +170730851957,220,0 +170730852005,220,0 +170730852053,220,0 +170730852101,220,0 +170730852151,220,0 +170730852199,221,0 +170730852247,220,0 +170730852295,219,0 +170730852343,219,0 +170730852391,220,0 +170730852439,220,0 +170730852488,220,0 +170730852536,220,0 +170730852584,220,0 +170730852634,221,0 +170730852683,252,0 +170730852733,267,0 +170730852781,227,0 +170730852829,220,0 +170730852878,220,0 +170730852926,220,0 +170730852974,220,0 +170730853022,219,0 +170730853070,220,0 +170730853118,220,0 +170730853166,220,0 +170730853214,220,0 +170730853262,219,0 +170730853310,220,0 +170730853359,220,0 +170730853409,220,0 +170730853457,220,0 +170730853504,220,0 +170730853552,220,0 +170730853600,220,0 +170730853648,220,0 +170730853696,233,0 +170730853744,249,0 +170730853792,240,0 +170730853840,221,0 +170730853889,220,0 +170730853937,220,0 +170730853987,220,0 +170730854035,219,0 +170730854083,220,0 +170730854131,220,0 +170730854180,220,0 +170730854228,220,0 +170730854276,219,0 +170730854326,220,0 +170730854374,219,0 +170730854421,220,0 +170730854469,220,0 +170730854517,220,0 +170730854565,220,0 +170730854615,220,0 +170730854664,220,0 +170730854712,221,0 +170730854760,250,0 +170730854808,252,0 +170730854856,228,0 +170730854904,220,0 +170730854953,220,0 +170730855003,220,0 +170730855052,220,0 +170730855100,220,0 +170730855150,220,0 +170730855199,220,0 +170730855249,220,0 +170730855297,220,0 +170730855346,220,0 +170730855394,220,0 +170730855442,220,0 +170730855490,220,0 +170730855540,220,0 +170730855588,219,0 +170730855636,220,0 +170730855685,220,0 +170730855733,221,0 +170730855781,222,0 +170730855829,252,0 +170730855877,256,0 +170730855925,226,0 +170730855973,220,0 +170730856022,220,0 +170730856070,220,0 +170730856118,220,0 +170730856166,220,0 +170730856214,220,0 +170730856262,220,0 +170730856310,220,0 +170730856358,220,0 +170730856406,220,0 +170730856456,220,0 +170730856503,220,0 +170730856551,220,0 +170730856599,220,0 +170730856647,220,0 +170730856697,220,0 +170730856746,220,0 +170730856794,221,0 +170730856842,221,0 +170730856890,256,0 +170730856940,271,1 +170730857017,220,0 +170730857065,219,0 +170730857115,219,0 +170730857163,219,0 +170730857211,219,0 +170730857258,219,0 +170730857306,219,0 +170730857354,218,0 +170730857402,219,0 +170730857450,219,0 +170730857498,219,0 +170730857546,219,0 +170730857594,219,0 +170730857641,219,0 +170730857689,219,0 +170730857737,219,0 +170730857785,219,0 +170730857833,220,0 +170730857881,221,0 +170730857929,253,0 +170730857977,259,0 +170730858025,225,0 +170730858072,219,0 +170730858120,220,0 +170730858168,219,0 +170730858216,220,0 +170730858264,219,0 +170730858312,219,0 +170730858360,219,0 +170730858408,219,0 +170730858455,219,0 +170730858503,220,0 +170730858551,219,0 +170730858599,219,0 +170730858647,219,0 +170730858695,219,0 +170730858743,219,0 +170730858791,220,0 +170730858840,219,0 +170730858888,220,0 +170730858936,222,0 +170730858985,258,0 +170730859035,262,0 +170730859082,223,0 +170730859130,219,0 +170730859178,219,0 +170730859226,219,0 +170730859274,218,0 +170730859324,219,0 +170730859373,219,0 +170730859421,219,0 +170730859469,219,0 +170730859517,218,0 +170730859567,218,0 +170730859614,218,0 +170730859662,219,0 +170730859710,218,0 +170730859758,219,0 +170730859808,219,0 +170730859856,218,0 +170730859905,219,0 +170730859953,219,0 +170730860003,254,0 +170730860051,264,0 +170730860099,225,0 +170730860148,219,0 +170730860196,218,0 +170730860244,218,0 +170730860294,219,0 +170730860341,219,0 +170730860391,219,0 +170730860439,218,0 +170730860487,218,0 +170730860536,218,0 +170730860586,219,0 +170730860633,219,0 +170730860681,218,0 +170730860729,219,0 +170730860779,219,0 +170730860827,219,0 +170730860874,218,0 +170730860922,219,0 +170730860970,219,0 +170730861018,220,0 +170730861066,250,0 +170730861115,259,0 +170730861163,224,0 +170730861211,219,0 +170730861259,218,0 +170730861307,218,0 +170730861355,219,0 +170730861403,218,0 +170730861452,219,0 +170730861500,219,0 +170730861548,218,0 +170730861598,219,0 +170730861647,218,0 +170730861697,218,0 +170730861746,219,0 +170730861794,218,0 +170730861844,218,0 +170730861892,219,0 +170730861940,219,0 +170730861987,218,0 +170730862035,219,0 +170730862083,250,0 +170730862133,260,0 +170730862182,224,0 +170730862230,220,0 +170730862278,219,0 +170730862326,219,0 +170730862376,218,0 +170730862424,219,0 +170730862473,218,0 +170730862523,219,0 +170730862572,218,0 +170730862620,218,0 +170730862670,218,0 +170730862719,218,0 +170730862769,218,0 +170730862817,218,0 +170730862865,219,0 +170730862913,219,0 +170730862962,218,0 +170730863010,219,0 +170730863058,219,0 +170730863108,220,0 +170730863156,258,0 +170730863204,263,0 +170730863253,229,0 +170730863303,220,0 +170730863351,219,0 +170730863399,219,0 +170730863446,219,0 +170730863496,219,0 +170730863544,219,0 +170730863594,219,0 +170730863641,219,0 +170730863689,220,0 +170730863738,219,0 +170730863786,220,0 +170730863836,219,0 +170730863884,219,0 +170730863933,220,0 +170730863981,219,0 +170730864029,219,0 +170730864077,219,0 +170730864125,220,0 +170730864174,221,0 +170730864223,267,0 +170730864271,260,0 +170730864319,224,0 +170730864367,220,0 +170730864415,219,0 +170730864463,219,0 +170730864511,219,0 +170730864561,219,0 +170730864609,219,0 +170730864657,219,0 +170730864705,219,0 +170730864753,219,0 +170730864802,219,0 +170730864852,219,0 +170730864900,219,0 +170730864948,219,0 +170730864997,219,0 +170730865045,219,0 +170730865093,219,0 +170730865141,219,0 +170730865191,220,0 +170730865240,238,0 +170730865288,256,0 +170730865336,248,0 +170730865384,222,0 +170730865434,219,0 +170730865483,219,0 +170730865533,219,0 +170730865581,219,0 +170730865628,219,0 +170730865676,219,0 +170730865724,219,0 +170730865774,219,0 +170730865823,219,0 +170730865871,219,0 +170730865919,219,0 +170730865967,218,0 +170730866017,219,0 +170730866065,219,0 +170730866114,219,0 +170730866162,219,0 +170730866210,220,0 +170730866258,221,0 +170730866308,246,0 +170730866356,260,0 +170730866405,227,0 +170730866453,219,0 +170730866501,219,0 +170730866551,219,0 +170730866600,220,0 +170730866650,219,0 +170730866698,220,0 +170730866746,219,0 +170730866795,220,0 +170730866843,220,0 +170730866891,219,0 +170730866939,219,0 +170730866987,219,0 +170730867036,219,0 +170730867086,219,0 +170730867134,219,0 +170730867183,220,0 +170730867233,219,0 +170730867281,219,0 +170730867329,221,0 +170730867378,249,0 +170730867426,260,0 +170730867476,222,0 +170730867524,219,0 +170730867572,220,0 +170730867620,219,0 +170730867669,219,0 +170730867717,219,0 +170730867767,219,0 +170730867815,219,0 +170730867862,219,0 +170730867912,220,0 +170730867961,220,0 +170730868009,219,0 +170730868059,219,0 +170730868107,220,0 +170730868157,219,0 +170730868204,217,0 +170730868252,223,0 +170730868300,217,0 +170730868348,215,0 +170730868396,251,0 +170730868446,269,0 +170730868494,227,0 +170730868542,219,0 +170730868590,219,0 +170730868639,219,0 +170730868687,219,0 +170730868737,219,0 +170730868786,219,0 +170730868834,219,0 +170730868884,219,0 +170730868933,220,0 +170730868981,220,0 +170730869029,220,0 +170730869079,219,0 +170730869127,219,0 +170730869176,219,0 +170730869224,220,0 +170730869272,219,0 +170730869320,219,0 +170730869368,219,0 +170730869417,221,0 +170730869465,253,0 +170730869515,265,0 +170730869563,224,0 +170730869612,220,0 +170730869660,219,0 +170730869708,220,0 +170730869756,220,0 +170730869804,219,0 +170730869852,219,0 +170730869902,219,0 +170730869951,219,0 +170730869999,220,0 +170730870047,219,0 +170730870095,219,0 +170730870143,219,0 +170730870193,220,0 +170730870241,219,0 +170730870288,220,0 +170730870336,220,0 +170730870384,219,0 +170730870432,220,0 +170730870480,224,0 +170730870530,251,0 +170730870579,225,0 +170730870627,220,0 +170730870675,220,0 +170730870725,220,0 +170730870773,219,0 +170730870821,219,0 +170730870870,220,0 +170730870918,219,0 +170730870966,220,0 +170730871014,219,0 +170730871064,219,0 +170730871112,219,0 +170730871161,220,0 +170730871209,219,0 +170730871257,219,0 +170730871305,219,0 +170730871353,220,0 +170730871401,219,0 +170730871449,219,0 +170730871497,220,0 +170730871545,233,0 +170730871593,274,1 +170730871674,224,0 +170730871723,220,0 +170730871773,219,0 +170730871821,219,0 +170730871869,220,0 +170730871917,219,0 +170730871966,219,0 +170730872014,220,0 +170730872062,220,0 +170730872111,220,0 +170730872161,220,0 +170730872209,219,0 +170730872257,219,0 +170730872305,220,0 +170730872353,220,0 +170730872401,220,0 +170730872449,219,0 +170730872497,219,0 +170730872547,220,0 +170730872595,249,0 +170730872643,260,0 +170730872691,223,0 +170730872739,220,0 +170730872788,220,0 +170730872836,219,0 +170730872886,220,0 +170730872934,219,0 +170730872982,220,0 +170730873031,219,0 +170730873080,219,0 +170730873128,219,0 +170730873178,219,0 +170730873226,219,0 +170730873275,220,0 +170730873323,219,0 +170730873371,219,0 +170730873419,219,0 +170730873467,219,0 +170730873515,219,0 +170730873563,219,0 +170730873613,221,0 +170730873661,255,0 +170730873710,274,1 +170730873793,219,0 +170730873842,219,0 +170730873890,219,0 +170730873938,219,0 +170730873986,219,0 +170730874034,219,0 +170730874082,219,0 +170730874130,219,0 +170730874178,219,0 +170730874226,219,0 +170730874274,219,0 +170730874322,219,0 +170730874371,219,0 +170730874421,219,0 +170730874470,219,0 +170730874518,219,0 +170730874568,219,0 +170730874616,219,0 +170730874665,220,0 +170730874713,254,0 +170730874761,262,0 +170730874809,229,0 +170730874857,219,0 +170730874905,219,0 +170730874953,219,0 +170730875003,219,0 +170730875051,219,0 +170730875100,219,0 +170730875148,219,0 +170730875196,219,0 +170730875244,219,0 +170730875292,218,0 +170730875340,219,0 +170730875389,219,0 +170730875437,219,0 +170730875485,219,0 +170730875533,219,0 +170730875581,219,0 +170730875631,219,0 +170730875679,219,0 +170730875728,222,0 +170730875776,267,0 +170730875824,269,0 +170730875872,222,0 +170730875922,219,0 +170730875971,219,0 +170730876021,219,0 +170730876069,219,0 +170730876117,219,0 +170730876165,219,0 +170730876214,218,0 +170730876262,219,0 +170730876310,219,0 +170730876358,219,0 +170730876408,219,0 +170730876456,219,0 +170730876503,219,0 +170730876553,219,0 +170730876601,219,0 +170730876649,219,0 +170730876697,219,0 +170730876745,220,0 +170730876793,261,0 +170730876841,251,0 +170730876890,229,0 +170730876938,220,0 +170730876986,219,0 +170730877034,220,0 +170730877082,220,0 +170730877130,219,0 +170730877178,220,0 +170730877227,220,0 +170730877277,220,0 +170730877325,219,0 +170730877373,219,0 +170730877421,219,0 +170730877470,220,0 +170730877520,220,0 +170730877568,220,0 +170730877616,219,0 +170730877665,219,0 +170730877715,219,0 +170730877763,220,0 +170730877812,220,0 +170730877860,256,0 +170730877908,267,0 +170730877958,226,0 +170730878006,220,0 +170730878054,219,0 +170730878103,219,0 +170730878151,219,0 +170730878201,219,0 +170730878249,219,0 +170730878298,219,0 +170730878346,219,0 +170730878394,219,0 +170730878442,218,0 +170730878490,219,0 +170730878538,219,0 +170730878588,219,0 +170730878637,219,0 +170730878685,220,0 +170730878733,219,0 +170730878781,220,0 +170730878829,220,0 +170730878877,222,0 +170730878926,254,0 +170730878974,264,0 +170730879022,225,0 +170730879070,220,0 +170730879120,219,0 +170730879169,220,0 +170730879219,220,0 +170730879267,220,0 +170730879315,219,0 +170730879363,220,0 +170730879412,220,0 +170730879460,219,0 +170730879510,220,0 +170730879558,220,0 +170730879608,220,0 +170730879657,220,0 +170730879705,220,0 +170730879753,220,0 +170730879802,220,0 +170730879850,220,0 +170730879900,220,0 +170730879948,260,0 +170730879996,265,0 +170730880044,230,0 +170730880092,220,0 +170730880140,220,0 +170730880189,220,0 +170730880239,219,0 +170730880288,220,0 +170730880336,220,0 +170730880386,220,0 +170730880435,220,0 +170730880485,220,0 +170730880533,219,0 +170730880581,220,0 +170730880630,219,0 +170730880678,220,0 +170730880726,220,0 +170730880775,220,0 +170730880823,220,0 +170730880871,220,0 +170730880919,220,0 +170730880967,222,0 +170730881015,252,0 +170730881065,279,1 +170730881151,220,0 +170730881201,219,0 +170730881249,220,0 +170730881297,219,0 +170730881345,219,0 +170730881393,220,0 +170730881442,220,0 +170730881490,220,0 +170730881538,219,0 +170730881586,219,0 +170730881636,220,0 +170730881684,220,0 +170730881731,219,0 +170730881781,219,0 +170730881829,219,0 +170730881877,220,0 +170730881925,220,0 +170730881973,220,0 +170730882021,221,0 +170730882070,253,0 +170730882118,260,0 +170730882166,225,0 +170730882214,219,0 +170730882262,220,0 +170730882310,219,0 +170730882358,220,0 +170730882406,220,0 +170730882456,219,0 +170730882505,219,0 +170730882553,220,0 +170730882603,219,0 +170730882650,219,0 +170730882698,219,0 +170730882746,219,0 +170730882796,219,0 +170730882844,219,0 +170730882892,220,0 +170730882940,219,0 +170730882989,220,0 +170730883037,220,0 +170730883085,248,0 +170730883133,252,0 +170730883181,225,0 +170730883229,220,0 +170730883277,219,0 +170730883325,219,0 +170730883374,220,0 +170730883422,220,0 +170730883470,220,0 +170730883518,219,0 +170730883568,219,0 +170730883616,219,0 +170730883664,219,0 +170730883712,220,0 +170730883761,220,0 +170730883809,219,0 +170730883857,219,0 +170730883907,219,0 +170730883955,219,0 +170730884003,220,0 +170730884052,220,0 +170730884100,221,0 +170730884148,252,0 +170730884197,259,0 +170730884245,229,0 +170730884295,219,0 +170730884343,219,0 +170730884392,219,0 +170730884440,219,0 +170730884490,220,0 +170730884538,219,0 +170730884586,219,0 +170730884634,219,0 +170730884681,220,0 +170730884729,219,0 +170730884777,219,0 +170730884825,219,0 +170730884875,219,0 +170730884923,219,0 +170730884971,219,0 +170730885019,219,0 +170730885068,219,0 +170730885116,220,0 +170730885164,221,0 +170730885214,261,0 +170730885262,258,0 +170730885310,226,0 +170730885358,220,0 +170730885407,219,0 +170730885455,219,0 +170730885505,219,0 +170730885554,219,0 +170730885604,219,0 +170730885652,219,0 +170730885699,219,0 +170730885747,219,0 +170730885795,219,0 +170730885843,219,0 +170730885891,219,0 +170730885941,219,0 +170730885988,220,0 +170730886036,220,0 +170730886084,219,0 +170730886132,219,0 +170730886180,220,0 +170730886228,222,0 +170730886276,247,0 +170730886325,264,0 +170730886375,222,0 +170730886423,219,0 +170730886472,219,0 +170730886522,219,0 +170730886569,219,0 +170730886619,219,0 +170730886668,219,0 +170730886716,220,0 +170730886764,219,0 +170730886814,219,0 +170730886862,219,0 +170730886911,220,0 +170730886959,219,0 +170730887009,220,0 +170730887057,219,0 +170730887106,220,0 +170730887154,219,0 +170730887202,220,0 +170730887250,220,0 +170730887300,250,0 +170730887348,251,0 +170730887396,228,0 +170730887443,220,0 +170730887491,219,0 +170730887541,219,0 +170730887589,219,0 +170730887637,220,0 +170730887685,220,0 +170730887734,219,0 +170730887784,219,0 +170730887832,220,0 +170730887881,219,0 +170730887931,220,0 +170730887980,220,0 +170730888030,219,0 +170730888078,219,0 +170730888126,219,0 +170730888174,219,0 +170730888222,219,0 +170730888271,220,0 +170730888321,222,0 +170730888369,249,0 +170730888416,266,0 +170730888464,224,0 +170730888512,219,0 +170730888560,219,0 +170730888608,220,0 +170730888657,219,0 +170730888705,220,0 +170730888755,220,0 +170730888803,219,0 +170730888851,219,0 +170730888898,219,0 +170730888948,220,0 +170730888996,219,0 +170730889044,219,0 +170730889092,219,0 +170730889141,219,0 +170730889189,219,0 +170730889237,220,0 +170730889285,219,0 +170730889333,220,0 +170730889383,224,0 +170730889432,251,0 +170730889480,228,0 +170730889528,221,0 +170730889576,220,0 +170730889626,219,0 +170730889675,220,0 +170730889723,219,0 +170730889773,219,0 +170730889821,219,0 +170730889870,220,0 +170730889918,220,0 +170730889968,220,0 +170730890017,220,0 +170730890065,220,0 +170730890115,219,0 +170730890163,220,0 +170730890211,219,0 +170730890260,219,0 +170730890308,220,0 +170730890356,220,0 +170730890404,221,0 +170730890452,263,0 +170730890500,263,0 +170730890549,227,0 +170730890597,219,0 +170730890645,219,0 +170730890693,219,0 +170730890741,219,0 +170730890788,219,0 +170730890836,219,0 +170730890884,219,0 +170730890932,219,0 +170730890980,219,0 +170730891028,219,0 +170730891076,219,0 +170730891124,219,0 +170730891174,219,0 +170730891222,219,0 +170730891271,219,0 +170730891319,219,0 +170730891369,220,0 +170730891416,220,0 +170730891466,221,0 +170730891514,250,0 +170730891564,260,0 +170730891611,222,0 +170730891659,219,0 +170730891709,219,0 +170730891758,219,0 +170730891806,219,0 +170730891856,219,0 +170730891904,219,0 +170730891952,220,0 +170730892001,219,0 +170730892051,219,0 +170730892099,219,0 +170730892148,219,0 +170730892198,220,0 +170730892246,219,0 +170730892295,219,0 +170730892345,219,0 +170730892393,219,0 +170730892441,219,0 +170730892489,220,0 +170730892537,247,0 +170730892585,254,0 +170730892634,223,0 +170730892682,220,0 +170730892730,220,0 +170730892778,219,0 +170730892827,219,0 +170730892875,219,0 +170730892923,219,0 +170730892973,219,0 +170730893021,219,0 +170730893069,219,0 +170730893118,219,0 +170730893166,219,0 +170730893214,219,0 +170730893264,219,0 +170730893313,220,0 +170730893361,219,0 +170730893409,219,0 +170730893457,219,0 +170730893507,219,0 +170730893555,221,0 +170730893604,258,0 +170730893654,264,0 +170730893703,229,0 +170730893751,219,0 +170730893799,219,0 +170730893847,220,0 +170730893895,219,0 +170730893943,219,0 +170730893991,219,0 +170730894039,219,0 +170730894088,218,0 +170730894136,219,0 +170730894184,219,0 +170730894232,219,0 +170730894282,220,0 +170730894330,219,0 +170730894378,219,0 +170730894425,219,0 +170730894475,219,0 +170730894524,219,0 +170730894572,219,0 +170730894622,221,0 +170730894671,262,0 +170730894719,288,1 +170730894808,219,0 +170730894856,219,0 +170730894906,219,0 +170730894954,219,0 +170730895002,219,0 +170730895051,219,0 +170730895099,219,0 +170730895149,219,0 +170730895198,219,0 +170730895246,219,0 +170730895294,219,0 +170730895342,219,0 +170730895390,219,0 +170730895438,219,0 +170730895488,219,0 +170730895536,219,0 +170730895584,219,0 +170730895631,220,0 +170730895679,224,0 +170730895729,250,0 +170730895777,228,0 +170730895825,220,0 +170730895873,219,0 +170730895921,219,0 +170730895969,219,0 +170730896017,219,0 +170730896065,219,0 +170730896113,219,0 +170730896162,219,0 +170730896212,219,0 +170730896260,219,0 +170730896309,219,0 +170730896357,219,0 +170730896405,219,0 +170730896454,219,0 +170730896502,219,0 +170730896550,219,0 +170730896598,219,0 +170730896646,219,0 +170730896694,220,0 +170730896742,250,0 +170730896790,254,0 +170730896838,223,0 +170730896886,220,0 +170730896934,219,0 +170730896982,219,0 +170730897031,219,0 +170730897079,219,0 +170730897127,219,0 +170730897175,219,0 +170730897224,219,0 +170730897274,219,0 +170730897322,219,0 +170730897370,219,0 +170730897419,219,0 +170730897467,219,0 +170730897517,219,0 +170730897566,220,0 +170730897614,219,0 +170730897664,219,0 +170730897712,219,0 +170730897760,221,0 +170730897808,250,0 +170730897856,264,0 +170730897904,223,0 +170730897952,219,0 +170730897999,219,0 +170730898049,219,0 +170730898097,220,0 +170730898145,219,0 +170730898193,219,0 +170730898240,219,0 +170730898288,220,0 +170730898336,220,0 +170730898384,219,0 +170730898432,219,0 +170730898480,219,0 +170730898529,219,0 +170730898577,219,0 +170730898625,219,0 +170730898673,219,0 +170730898721,219,0 +170730898769,220,0 +170730898817,221,0 +170730898865,274,1 +170730898953,224,0 +170730899003,220,0 +170730899051,219,0 +170730899099,219,0 +170730899147,219,0 +170730899195,219,0 +170730899244,219,0 +170730899292,219,0 +170730899340,219,0 +170730899390,219,0 +170730899438,219,0 +170730899485,219,0 +170730899533,219,0 +170730899581,219,0 +170730899629,219,0 +170730899677,219,0 +170730899725,219,0 +170730899773,219,0 +170730899821,219,0 +170730899869,222,0 +170730899917,252,0 +170730899964,271,1 +170730900046,219,0 +170730900094,219,0 +170730900142,219,0 +170730900190,219,0 +170730900238,219,0 +170730900286,219,0 +170730900334,219,0 +170730900383,219,0 +170730900433,219,0 +170730900481,219,0 +170730900529,219,0 +170730900577,219,0 +170730900625,219,0 +170730900673,219,0 +170730900721,220,0 +170730900769,220,0 +170730900817,219,0 +170730900865,219,0 +170730900912,220,0 +170730900960,255,0 +170730901008,266,0 +170730901056,228,0 +170730901104,219,0 +170730901152,219,0 +170730901200,219,0 +170730901249,220,0 +170730901299,218,0 +170730901347,219,0 +170730901395,219,0 +170730901443,219,0 +170730901491,219,0 +170730901540,219,0 +170730901590,219,0 +170730901639,219,0 +170730901687,219,0 +170730901735,219,0 +170730901783,219,0 +170730901833,219,0 +170730901881,219,0 +170730901928,220,0 +170730901978,229,0 +170730902026,260,0 +170730902074,227,0 +170730902123,220,0 +170730902171,219,0 +170730902219,219,0 +170730902269,220,0 +170730902317,220,0 +170730902365,219,0 +170730902413,219,0 +170730902462,219,0 +170730902512,219,0 +170730902560,219,0 +170730902608,219,0 +170730902656,219,0 +170730902704,219,0 +170730902752,219,0 +170730902801,219,0 +170730902849,219,0 +170730902897,219,0 +170730902945,220,0 +170730902995,220,0 +170730903044,255,0 +170730903092,264,0 +170730903140,229,0 +170730903189,220,0 +170730903237,219,0 +170730903285,219,0 +170730903333,219,0 +170730903381,219,0 +170730903430,219,0 +170730903478,220,0 +170730903526,220,0 +170730903574,219,0 +170730903622,219,0 +170730903672,219,0 +170730903721,219,0 +170730903769,219,0 +170730903819,220,0 +170730903867,219,0 +170730903916,219,0 +170730903964,219,0 +170730904012,219,0 +170730904060,221,0 +170730904108,250,0 +170730904156,276,1 +170730904234,219,0 +170730904283,219,0 +170730904331,219,0 +170730904379,219,0 +170730904427,219,0 +170730904475,219,0 +170730904523,219,0 +170730904573,219,0 +170730904621,219,0 +170730904670,220,0 +170730904718,219,0 +170730904766,219,0 +170730904814,219,0 +170730904863,219,0 +170730904913,219,0 +170730904962,219,0 +170730905012,220,0 +170730905060,220,0 +170730905108,221,0 +170730905157,252,0 +170730905205,269,0 +170730905253,222,0 +170730905303,220,0 +170730905351,219,0 +170730905400,219,0 +170730905448,219,0 +170730905496,219,0 +170730905546,220,0 +170730905595,220,0 +170730905643,219,0 +170730905693,219,0 +170730905741,219,0 +170730905790,219,0 +170730905838,219,0 +170730905888,219,0 +170730905937,219,0 +170730905987,219,0 +170730906035,219,0 +170730906082,219,0 +170730906130,220,0 +170730906178,258,0 +170730906226,255,0 +170730906274,226,0 +170730906322,220,0 +170730906370,219,0 +170730906418,219,0 +170730906466,219,0 +170730906514,220,0 +170730906562,219,0 +170730906610,219,0 +170730906658,219,0 +170730906706,219,0 +170730906754,219,0 +170730906803,220,0 +170730906853,219,0 +170730906901,219,0 +170730906950,219,0 +170730907000,219,0 +170730907048,219,0 +170730907095,220,0 +170730907143,219,0 +170730907191,221,0 +170730907239,250,0 +170730907287,262,0 +170730907337,226,0 +170730907384,220,0 +170730907434,219,0 +170730907483,219,0 +170730907531,219,0 +170730907579,219,0 +170730907629,219,0 +170730907678,219,0 +170730907726,219,0 +170730907774,219,0 +170730907824,220,0 +170730907873,219,0 +170730907923,219,0 +170730907971,219,0 +170730908018,219,0 +170730908066,219,0 +170730908114,219,0 +170730908162,219,0 +170730908210,220,0 +170730908258,221,0 +170730908306,260,0 +170730908354,262,0 +170730908402,223,0 +170730908450,220,0 +170730908497,219,0 +170730908545,220,0 +170730908593,220,0 +170730908641,219,0 +170730908689,219,0 +170730908737,219,0 +170730908785,220,0 +170730908833,219,0 +170730908881,220,0 +170730908929,220,0 +170730908976,220,0 +170730909024,220,0 +170730909074,219,0 +170730909122,220,0 +170730909170,219,0 +170730909217,220,0 +170730909265,219,0 +170730909313,227,0 +170730909361,263,0 +170730909409,243,0 +170730909458,221,0 +170730909506,220,0 +170730909554,219,0 +170730909602,219,0 +170730909650,220,0 +170730909698,219,0 +170730909746,219,0 +170730909793,219,0 +170730909843,220,0 +170730909891,219,0 +170730909939,219,0 +170730909987,219,0 +170730910035,219,0 +170730910084,220,0 +170730910132,219,0 +170730910180,220,0 +170730910228,220,0 +170730910276,220,0 +170730910324,220,0 +170730910371,253,0 +170730910419,276,1 +170730910499,223,0 +170730910547,220,0 +170730910595,220,0 +170730910644,220,0 +170730910692,219,0 +170730910742,219,0 +170730910790,220,0 +170730910838,220,0 +170730910886,220,0 +170730910935,220,0 +170730910983,220,0 +170730911033,220,0 +170730911081,219,0 +170730911129,220,0 +170730911178,220,0 +170730911226,220,0 +170730911274,220,0 +170730911322,219,0 +170730911372,220,0 +170730911420,234,0 +170730911468,261,0 +170730911517,224,0 +170730911565,220,0 +170730911615,219,0 +170730911663,219,0 +170730911712,219,0 +170730911760,220,0 +170730911808,219,0 +170730911856,219,0 +170730911904,219,0 +170730911952,219,0 +170730912000,220,0 +170730912048,219,0 +170730912096,219,0 +170730912144,219,0 +170730912193,219,0 +170730912241,219,0 +170730912289,219,0 +170730912337,219,0 +170730912385,219,0 +170730912433,220,0 +170730912481,247,0 +170730912529,253,0 +170730912577,228,0 +170730912625,220,0 +170730912673,220,0 +170730912721,219,0 +170730912770,219,0 +170730912818,219,0 +170730912866,219,0 +170730912914,219,0 +170730912962,219,0 +170730913010,219,0 +170730913058,219,0 +170730913107,219,0 +170730913155,220,0 +170730913205,219,0 +170730913254,220,0 +170730913302,220,0 +170730913350,220,0 +170730913398,219,0 +170730913446,220,0 +170730913495,222,0 +170730913543,250,0 +170730913591,263,0 +170730913639,224,0 +170730913687,220,0 +170730913735,220,0 +170730913784,219,0 +170730913832,219,0 +170730913880,219,0 +170730913928,220,0 +170730913976,219,0 +170730914026,219,0 +170730914074,220,0 +170730914121,220,0 +170730914169,219,0 +170730914217,220,0 +170730914265,220,0 +170730914313,220,0 +170730914361,219,0 +170730914409,220,0 +170730914457,219,0 +170730914505,220,0 +170730914553,222,0 +170730914601,277,1 +170730914683,226,0 +170730914732,219,0 +170730914782,219,0 +170730914830,219,0 +170730914879,219,0 +170730914927,219,0 +170730914975,219,0 +170730915024,219,0 +170730915072,219,0 +170730915122,219,0 +170730915171,219,0 +170730915221,219,0 +170730915269,219,0 +170730915317,219,0 +170730915365,219,0 +170730915414,219,0 +170730915464,219,0 +170730915512,220,0 +170730915560,220,0 +170730915610,222,0 +170730915659,253,0 +170730915709,256,0 +170730915758,221,0 +170730915806,220,0 +170730915854,219,0 +170730915903,219,0 +170730915953,219,0 +170730916001,219,0 +170730916050,220,0 +170730916100,220,0 +170730916148,220,0 +170730916197,219,0 +170730916247,219,0 +170730916295,219,0 +170730916343,219,0 +170730916391,219,0 +170730916439,219,0 +170730916486,220,0 +170730916534,219,0 +170730916582,219,0 +170730916631,220,0 +170730916679,250,0 +170730916727,265,0 +170730916775,230,0 +170730916823,220,0 +170730916871,219,0 +170730916919,219,0 +170730916967,219,0 +170730917015,219,0 +170730917063,219,0 +170730917111,219,0 +170730917158,219,0 +170730917206,219,0 +170730917256,220,0 +170730917305,219,0 +170730917355,220,0 +170730917403,219,0 +170730917452,219,0 +170730917500,219,0 +170730917548,219,0 +170730917598,219,0 +170730917646,220,0 +170730917695,221,0 +170730917743,259,0 +170730917793,265,0 +170730917842,223,0 +170730917892,220,0 +170730917940,220,0 +170730917988,219,0 +170730918036,220,0 +170730918083,220,0 +170730918131,219,0 +170730918179,219,0 +170730918227,220,0 +170730918277,219,0 +170730918325,219,0 +170730918374,219,0 +170730918422,219,0 +170730918472,219,0 +170730918521,220,0 +170730918569,220,0 +170730918619,220,0 +170730918668,220,0 +170730918716,220,0 +170730918764,248,0 +170730918812,254,0 +170730918862,224,0 +170730918910,220,0 +170730918958,220,0 +170730919007,220,0 +170730919057,220,0 +170730919105,219,0 +170730919153,220,0 +170730919202,219,0 +170730919250,219,0 +170730919300,219,0 +170730919348,219,0 +170730919397,220,0 +170730919445,219,0 +170730919493,219,0 +170730919542,220,0 +170730919592,220,0 +170730919641,219,0 +170730919689,220,0 +170730919737,220,0 +170730919787,221,0 +170730919836,260,0 +170730919886,273,1 +170730919965,220,0 +170730920015,220,0 +170730920063,220,0 +170730920110,220,0 +170730920158,219,0 +170730920206,219,0 +170730920254,219,0 +170730920302,220,0 +170730920350,220,0 +170730920398,220,0 +170730920446,220,0 +170730920494,219,0 +170730920542,220,0 +170730920589,219,0 +170730920637,220,0 +170730920687,220,0 +170730920735,219,0 +170730920783,220,0 +170730920832,221,0 +170730920882,249,0 +170730920929,266,0 +170730920979,226,0 +170730921027,220,0 +170730921076,219,0 +170730921124,219,0 +170730921174,219,0 +170730921223,219,0 +170730921271,219,0 +170730921319,219,0 +170730921367,219,0 +170730921415,219,0 +170730921463,219,0 +170730921511,220,0 +170730921559,219,0 +170730921608,219,0 +170730921656,219,0 +170730921704,219,0 +170730921752,220,0 +170730921802,219,0 +170730921851,220,0 +170730921901,221,0 +170730921949,263,0 +170730921996,260,0 +170730922044,222,0 +170730922092,219,0 +170730922140,219,0 +170730922190,219,0 +170730922238,219,0 +170730922286,219,0 +170730922334,219,0 +170730922382,220,0 +170730922430,219,0 +170730922478,219,0 +170730922527,219,0 +170730922575,219,0 +170730922623,219,0 +170730922671,219,0 +170730922719,219,0 +170730922767,219,0 +170730922815,219,0 +170730922864,219,0 +170730922912,220,0 +170730922960,224,0 +170730923010,256,0 +170730923059,240,0 +170730923107,221,0 +170730923157,220,0 +170730923205,219,0 +170730923253,219,0 +170730923302,219,0 +170730923352,220,0 +170730923400,219,0 +170730923449,220,0 +170730923499,219,0 +170730923547,219,0 +170730923595,219,0 +170730923643,219,0 +170730923692,219,0 +170730923742,219,0 +170730923791,219,0 +170730923839,219,0 +170730923889,219,0 +170730923937,220,0 +170730923985,220,0 +170730924033,253,0 +170730924082,255,0 +170730924130,227,0 +170730924180,219,0 +170730924229,219,0 +170730924279,220,0 +170730924327,219,0 +170730924375,219,0 +170730924423,219,0 +170730924471,219,0 +170730924520,219,0 +170730924568,219,0 +170730924616,219,0 +170730924664,219,0 +170730924712,219,0 +170730924761,219,0 +170730924809,219,0 +170730924857,219,0 +170730924905,219,0 +170730924955,219,0 +170730925003,220,0 +170730925052,222,0 +170730925100,249,0 +170730925148,253,0 +170730925196,221,0 +170730925244,219,0 +170730925294,220,0 +170730925343,219,0 +170730925391,219,0 +170730925441,219,0 +170730925490,219,0 +170730925539,219,0 +170730925589,219,0 +170730925637,219,0 +170730925685,219,0 +170730925733,219,0 +170730925781,220,0 +170730925831,219,0 +170730925879,219,0 +170730925926,220,0 +170730925976,219,0 +170730926024,219,0 +170730926072,220,0 +170730926121,251,0 +170730926169,253,0 +170730926217,226,0 +170730926267,220,0 +170730926315,219,0 +170730926365,219,0 +170730926413,219,0 +170730926462,219,0 +170730926510,219,0 +170730926559,220,0 +170730926607,219,0 +170730926657,219,0 +170730926706,219,0 +170730926754,219,0 +170730926804,219,0 +170730926852,219,0 +170730926901,220,0 +170730926951,220,0 +170730927000,219,0 +170730927048,220,0 +170730927098,220,0 +170730927146,221,0 +170730927195,259,0 +170730927245,250,0 +170730927293,221,0 +170730927341,219,0 +170730927390,220,0 +170730927438,219,0 +170730927486,219,0 +170730927536,220,0 +170730927584,219,0 +170730927632,220,0 +170730927680,218,0 +170730927728,219,0 +170730927777,219,0 +170730927825,219,0 +170730927874,219,0 +170730927922,219,0 +170730927972,219,0 +170730928020,220,0 +170730928069,219,0 +170730928117,219,0 +170730928167,220,0 +170730928215,251,0 +170730928263,255,0 +170730928310,225,0 +170730928360,220,0 +170730928408,219,0 +170730928456,219,0 +170730928504,219,0 +170730928552,219,0 +170730928600,219,0 +170730928647,219,0 +170730928697,219,0 +170730928745,219,0 +170730928793,219,0 +170730928841,220,0 +170730928889,219,0 +170730928936,219,0 +170730928984,219,0 +170730929033,219,0 +170730929081,219,0 +170730929128,219,0 +170730929176,220,0 +170730929226,221,0 +170730929273,252,0 +170730929321,260,0 +170730929369,228,0 +170730929417,219,0 +170730929465,219,0 +170730929513,220,0 +170730929561,219,0 +170730929609,219,0 +170730929657,219,0 +170730929704,219,0 +170730929752,220,0 +170730929800,219,0 +170730929848,219,0 +170730929896,219,0 +170730929944,219,0 +170730929992,219,0 +170730930040,219,0 +170730930088,220,0 +170730930137,220,0 +170730930187,219,0 +170730930236,220,0 +170730930286,220,0 +170730930335,256,0 +170730930383,285,1 +170730930466,220,0 +170730930513,219,0 +170730930561,220,0 +170730930609,219,0 +170730930659,219,0 +170730930707,219,0 +170730930755,219,0 +170730930803,220,0 +170730930851,219,0 +170730930900,219,0 +170730930948,220,0 +170730930996,219,0 +170730931044,220,0 +170730931092,219,0 +170730931140,220,0 +170730931188,219,0 +170730931236,220,0 +170730931284,220,0 +170730931332,220,0 +170730931380,248,0 +170730931429,269,0 +170730931479,227,0 +170730931527,220,0 +170730931576,219,0 +170730931624,220,0 +170730931672,219,0 +170730931722,219,0 +170730931770,220,0 +170730931819,220,0 +170730931867,220,0 +170730931916,220,0 +170730931966,219,0 +170730932015,219,0 +170730932063,219,0 +170730932111,220,0 +170730932159,220,0 +170730932207,220,0 +170730932255,220,0 +170730932303,220,0 +170730932352,220,0 +170730932400,222,0 +170730932448,254,0 +170730932498,262,0 +170730932546,222,0 +170730932595,220,0 +170730932645,220,0 +170730932693,220,0 +170730932742,220,0 +170730932790,220,0 +170730932838,220,0 +170730932886,220,0 +170730932934,219,0 +170730932982,219,0 +170730933030,220,0 +170730933079,220,0 +170730933127,220,0 +170730933175,219,0 +170730933223,220,0 +170730933271,219,0 +170730933319,220,0 +170730933367,220,0 +170730933415,220,0 +170730933463,236,0 +170730933510,256,0 +170730933558,223,0 +170730933606,220,0 +170730933654,220,0 +170730933702,220,0 +170730933750,220,0 +170730933798,220,0 +170730933846,220,0 +170730933894,220,0 +170730933943,220,0 +170730933993,220,0 +170730934041,220,0 +170730934090,220,0 +170730934138,220,0 +170730934186,220,0 +170730934234,220,0 +170730934282,220,0 +170730934330,220,0 +170730934378,220,0 +170730934426,220,0 +170730934474,220,0 +170730934522,253,0 +170730934570,256,0 +170730934618,228,0 +170730934668,220,0 +170730934716,219,0 +170730934765,220,0 +170730934813,219,0 +170730934861,219,0 +170730934909,219,0 +170730934957,219,0 +170730935006,220,0 +170730935056,219,0 +170730935104,220,0 +170730935154,219,0 +170730935202,219,0 +170730935250,220,0 +170730935298,219,0 +170730935346,219,0 +170730935394,220,0 +170730935442,220,0 +170730935490,219,0 +170730935539,221,0 +170730935589,253,0 +170730935637,273,1 +170730935723,220,0 +170730935771,219,0 +170730935821,219,0 +170730935869,219,0 +170730935918,219,0 +170730935966,219,0 +170730936014,219,0 +170730936062,219,0 +170730936112,219,0 +170730936160,219,0 +170730936208,219,0 +170730936255,219,0 +170730936303,219,0 +170730936353,219,0 +170730936402,219,0 +170730936450,219,0 +170730936500,219,0 +170730936549,220,0 +170730936597,222,0 +170730936647,277,1 +170730936732,227,0 +170730936781,219,0 +170730936829,219,0 +170730936878,219,0 +170730936926,219,0 +170730936974,219,0 +170730937024,219,0 +170730937072,219,0 +170730937120,219,0 +170730937169,219,0 +170730937217,219,0 +170730937265,218,0 +170730937313,219,0 +170730937361,219,0 +170730937409,219,0 +170730937457,219,0 +170730937505,219,0 +170730937553,219,0 +170730937601,219,0 +170730937649,221,0 +170730937699,250,0 +170730937747,266,0 +170730937796,222,0 +170730937846,219,0 +170730937894,219,0 +170730937942,219,0 +170730937990,219,0 +170730938039,219,0 +170730938087,219,0 +170730938135,219,0 +170730938183,219,0 +170730938232,219,0 +170730938280,218,0 +170730938330,219,0 +170730938378,219,0 +170730938426,219,0 +170730938475,219,0 +170730938523,218,0 +170730938571,219,0 +170730938619,219,0 +170730938667,220,0 +170730938715,244,0 +170730938763,254,0 +170730938811,228,0 +170730938859,220,0 +170730938906,219,0 +170730938954,219,0 +170730939004,219,0 +170730939052,219,0 +170730939100,219,0 +170730939148,219,0 +170730939197,219,0 +170730939247,219,0 +170730939296,219,0 +170730939344,219,0 +170730939392,219,0 +170730939440,219,0 +170730939488,219,0 +170730939536,219,0 +170730939586,219,0 +170730939635,219,0 +170730939685,220,0 +170730939733,220,0 +170730939782,250,0 +170730939830,259,0 +170730939878,225,0 +170730939928,219,0 +170730939975,219,0 +170730940023,219,0 +170730940071,219,0 +170730940119,219,0 +170730940167,219,0 +170730940215,219,0 +170730940263,219,0 +170730940311,219,0 +170730940360,218,0 +170730940408,219,0 +170730940456,219,0 +170730940504,219,0 +170730940553,219,0 +170730940601,219,0 +170730940649,219,0 +170730940699,219,0 +170730940747,219,0 +170730940796,221,0 +170730940844,248,0 +170730940892,255,0 +170730940940,223,0 +170730940990,219,0 +170730941038,219,0 +170730941086,219,0 +170730941135,219,0 +170730941183,219,0 +170730941231,219,0 +170730941279,219,0 +170730941327,219,0 +170730941375,219,0 +170730941423,220,0 +170730941471,219,0 +170730941519,219,0 +170730941567,219,0 +170730941615,219,0 +170730941663,219,0 +170730941711,219,0 +170730941759,219,0 +170730941808,220,0 +170730941856,235,0 +170730941906,253,0 +170730941953,225,0 +170730942003,219,0 +170730942052,218,0 +170730942100,219,0 +170730942150,219,0 +170730942200,219,0 +170730942248,219,0 +170730942295,219,0 +170730942343,219,0 +170730942393,219,0 +170730942441,219,0 +170730942489,219,0 +170730942537,219,0 +170730942586,219,0 +170730942634,219,0 +170730942682,219,0 +170730942730,219,0 +170730942778,219,0 +170730942826,220,0 +170730942873,220,0 +170730942921,251,0 +170730942971,257,0 +170730943019,228,0 +170730943067,219,0 +170730943115,219,0 +170730943164,219,0 +170730943212,219,0 +170730943262,219,0 +170730943310,219,0 +170730943359,220,0 +170730943407,219,0 +170730943455,219,0 +170730943503,219,0 +170730943551,219,0 +170730943599,219,0 +170730943649,219,0 +170730943697,219,0 +170730943744,219,0 +170730943792,220,0 +170730943842,219,0 +170730943890,220,0 +170730943938,221,0 +170730943987,247,0 +170730944035,264,0 +170730944083,223,0 +170730944133,219,0 +170730944181,219,0 +170730944230,220,0 +170730944278,219,0 +170730944326,219,0 +170730944374,219,0 +170730944422,220,0 +170730944470,219,0 +170730944518,220,0 +170730944566,220,0 +170730944614,219,0 +170730944662,219,0 +170730944710,219,0 +170730944759,219,0 +170730944807,219,0 +170730944855,219,0 +170730944905,219,0 +170730944953,219,0 +170730945001,221,0 +170730945050,256,0 +170730945098,294,1 +170730945177,220,0 +170730945225,219,0 +170730945273,220,0 +170730945322,220,0 +170730945372,220,0 +170730945420,219,0 +170730945468,219,0 +170730945517,219,0 +170730945565,219,0 +170730945615,220,0 +170730945663,219,0 +170730945711,219,0 +170730945759,219,0 +170730945808,219,0 +170730945856,219,0 +170730945904,219,0 +170730945954,220,0 +170730946001,220,0 +170730946049,222,0 +170730946099,253,0 +170730946148,244,0 +170730946198,221,0 +170730946247,219,0 +170730946295,219,0 +170730946345,219,0 +170730946393,219,0 +170730946442,219,0 +170730946490,219,0 +170730946540,219,0 +170730946589,219,0 +170730946637,219,0 +170730946685,219,0 +170730946735,219,0 +170730946783,219,0 +170730946832,219,0 +170730946882,219,0 +170730946930,219,0 +170730946978,219,0 +170730947026,219,0 +170730947074,220,0 +170730947122,255,0 +170730947171,264,0 +170730947219,229,0 +170730947267,219,0 +170730947315,219,0 +170730947363,219,0 +170730947412,219,0 +170730947460,219,0 +170730947508,219,0 +170730947558,219,0 +170730947607,219,0 +170730947655,219,0 +170730947703,219,0 +170730947753,219,0 +170730947801,219,0 +170730947850,219,0 +170730947899,219,0 +170730947947,219,0 +170730947995,219,0 +170730948043,219,0 +170730948091,219,0 +170730948139,221,0 +170730948189,250,0 +170730948237,256,0 +170730948285,223,0 +170730948332,219,0 +170730948380,219,0 +170730948428,219,0 +170730948478,219,0 +170730948526,219,0 +170730948574,219,0 +170730948623,219,0 +170730948671,219,0 +170730948719,219,0 +170730948767,219,0 +170730948816,219,0 +170730948864,219,0 +170730948912,219,0 +170730948960,219,0 +170730949008,219,0 +170730949057,219,0 +170730949105,219,0 +170730949153,219,0 +170730949201,221,0 +170730949249,248,0 +170730949297,243,0 +170730949345,220,0 +170730949393,219,0 +170730949441,219,0 +170730949489,219,0 +170730949537,219,0 +170730949585,219,0 +170730949635,219,0 +170730949683,219,0 +170730949732,218,0 +170730949782,219,0 +170730949830,219,0 +170730949878,219,0 +170730949926,219,0 +170730949974,219,0 +170730950022,219,0 +170730950071,219,0 +170730950121,219,0 +170730950170,219,0 +170730950218,220,0 +170730950266,257,0 +170730950314,258,0 +170730950363,230,0 +170730950413,220,0 +170730950461,219,0 +170730950510,219,0 +170730950558,219,0 +170730950606,219,0 +170730950654,219,0 +170730950704,219,0 +170730950752,219,0 +170730950800,219,0 +170730950848,220,0 +170730950896,219,0 +170730950945,219,0 +170730950993,219,0 +170730951043,219,0 +170730951092,219,0 +170730951140,219,0 +170730951190,219,0 +170730951239,220,0 +170730951287,221,0 +170730951335,253,0 +170730951383,261,0 +170730951431,226,0 +170730951479,220,0 +170730951527,220,0 +170730951575,219,0 +170730951623,219,0 +170730951672,219,0 +170730951720,219,0 +170730951768,219,0 +170730951816,219,0 +170730951864,219,0 +170730951912,219,0 +170730951960,220,0 +170730952008,219,0 +170730952056,219,0 +170730952104,219,0 +170730952154,219,0 +170730952201,219,0 +170730952249,220,0 +170730952297,220,0 +170730952347,221,0 +170730952396,258,0 +170730952444,258,0 +170730952492,221,0 +170730952542,220,0 +170730952590,220,0 +170730952638,219,0 +170730952687,220,0 +170730952737,219,0 +170730952786,219,0 +170730952836,219,0 +170730952885,219,0 +170730952935,219,0 +170730952983,219,0 +170730953031,219,0 +170730953079,219,0 +170730953127,219,0 +170730953176,219,0 +170730953226,219,0 +170730953274,218,0 +170730953322,219,0 +170730953370,220,0 +170730953418,250,0 +170730953467,259,0 +170730953515,225,0 +170730953563,220,0 +170730953611,219,0 +170730953659,219,0 +170730953707,218,0 +170730953757,218,0 +170730953805,219,0 +170730953853,219,0 +170730953900,219,0 +170730953948,218,0 +170730953996,219,0 +170730954044,219,0 +170730954094,219,0 +170730954142,219,0 +170730954190,218,0 +170730954239,218,0 +170730954287,219,0 +170730954335,219,0 +170730954383,219,0 +170730954431,220,0 +170730954479,249,0 +170730954527,261,0 +170730954577,226,0 +170730954626,219,0 +170730954674,219,0 +170730954722,219,0 +170730954772,219,0 +170730954820,218,0 +170730954869,219,0 +170730954919,219,0 +170730954968,219,0 +170730955016,219,0 +170730955064,219,0 +170730955114,219,0 +170730955163,219,0 +170730955213,219,0 +170730955261,219,0 +170730955310,219,0 +170730955360,219,0 +170730955408,219,0 +170730955456,219,0 +170730955504,234,0 +170730955551,257,0 +170730955599,223,0 +170730955649,219,0 +170730955697,219,0 +170730955745,218,0 +170730955794,219,0 +170730955842,219,0 +170730955890,219,0 +170730955938,219,0 +170730955988,219,0 +170730956036,219,0 +170730956084,219,0 +170730956132,219,0 +170730956181,219,0 +170730956229,219,0 +170730956277,219,0 +170730956325,219,0 +170730956375,219,0 +170730956423,219,0 +170730956471,219,0 +170730956519,220,0 +170730956567,267,0 +170730956616,260,0 +170730956664,227,0 +170730956712,219,0 +170730956761,219,0 +170730956811,219,0 +170730956859,219,0 +170730956907,219,0 +170730956955,219,0 +170730957003,219,0 +170730957052,219,0 +170730957100,219,0 +170730957150,219,0 +170730957198,219,0 +170730957246,219,0 +170730957294,219,0 +170730957342,219,0 +170730957390,219,0 +170730957438,219,0 +170730957486,219,0 +170730957533,219,0 +170730957581,220,0 +170730957629,275,1 +170730957711,230,0 +170730957759,219,0 +170730957807,219,0 +170730957856,219,0 +170730957904,219,0 +170730957954,219,0 +170730958002,219,0 +170730958050,219,0 +170730958098,219,0 +170730958147,219,0 +170730958195,219,0 +170730958243,219,0 +170730958291,219,0 +170730958341,219,0 +170730958388,219,0 +170730958438,219,0 +170730958488,219,0 +170730958537,219,0 +170730958585,218,0 +170730958633,221,0 +170730958681,256,0 +170730958731,273,1 +170730958815,219,0 +170730958863,219,0 +170730958911,219,0 +170730958959,219,0 +170730959008,219,0 +170730959058,219,0 +170730959107,219,0 +170730959157,218,0 +170730959205,219,0 +170730959253,219,0 +170730959301,219,0 +170730959349,219,0 +170730959397,219,0 +170730959446,219,0 +170730959494,219,0 +170730959542,219,0 +170730959590,219,0 +170730959638,219,0 +170730959686,220,0 +170730959734,266,0 +170730959782,268,0 +170730959831,226,0 +170730959881,220,0 +170730959929,220,0 +170730959976,220,0 +170730960024,219,0 +170730960072,220,0 +170730960120,220,0 +170730960168,219,0 +170730960218,219,0 +170730960266,219,0 +170730960315,220,0 +170730960365,219,0 +170730960413,220,0 +170730960461,220,0 +170730960509,220,0 +170730960558,219,0 +170730960606,220,0 +170730960654,220,0 +170730960702,220,0 +170730960750,235,0 +170730960798,263,0 +170730960848,239,0 +170730960896,221,0 +170730960945,220,0 +170730960993,219,0 +170730961041,219,0 +170730961089,220,0 +170730961137,219,0 +170730961185,220,0 +170730961233,220,0 +170730961282,220,0 +170730961332,219,0 +170730961380,219,0 +170730961429,219,0 +170730961479,219,0 +170730961527,220,0 +170730961576,220,0 +170730961624,219,0 +170730961674,220,0 +170730961722,220,0 +170730961771,221,0 +170730961819,258,0 +170730961869,264,0 +170730961917,229,0 +170730961965,219,0 +170730962013,220,0 +170730962061,220,0 +170730962109,220,0 +170730962156,220,0 +170730962204,219,0 +170730962254,219,0 +170730962302,219,0 +170730962350,219,0 +170730962398,220,0 +170730962446,220,0 +170730962494,220,0 +170730962542,219,0 +170730962590,220,0 +170730962638,220,0 +170730962687,219,0 +170730962735,220,0 +170730962785,220,0 +170730962834,222,0 +170730962884,258,0 +170730962932,267,0 +170730962980,224,0 +170730963028,220,0 +170730963076,220,0 +170730963125,219,0 +170730963175,219,0 +170730963223,219,0 +170730963271,219,0 +170730963319,219,0 +170730963368,220,0 +170730963416,220,0 +170730963464,219,0 +170730963512,219,0 +170730963560,219,0 +170730963608,220,0 +170730963656,220,0 +170730963705,219,0 +170730963753,219,0 +170730963801,219,0 +170730963849,219,0 +170730963897,227,0 +170730963945,259,0 +170730963993,238,0 +170730964041,221,0 +170730964089,219,0 +170730964137,219,0 +170730964185,219,0 +170730964233,219,0 +170730964282,219,0 +170730964330,220,0 +170730964378,219,0 +170730964426,219,0 +170730964474,220,0 +170730964524,219,0 +170730964573,220,0 +170730964621,219,0 +170730964669,220,0 +170730964717,219,0 +170730964765,219,0 +170730964813,220,0 +170730964861,219,0 +170730964909,220,0 +170730964957,250,0 +170730965007,254,0 +170730965056,227,0 +170730965104,220,0 +170730965154,219,0 +170730965202,219,0 +170730965251,219,0 +170730965301,219,0 +170730965349,219,0 +170730965397,219,0 +170730965445,219,0 +170730965493,219,0 +170730965541,219,0 +170730965588,219,0 +170730965636,219,0 +170730965684,219,0 +170730965734,219,0 +170730965782,219,0 +170730965830,219,0 +170730965878,219,0 +170730965927,220,0 +170730965977,221,0 +170730966026,250,0 +170730966076,258,0 +170730966125,223,0 +170730966173,220,0 +170730966223,219,0 +170730966272,219,0 +170730966320,219,0 +170730966368,219,0 +170730966416,220,0 +170730966464,219,0 +170730966512,219,0 +170730966560,219,0 +170730966610,219,0 +170730966658,219,0 +170730966707,219,0 +170730966755,219,0 +170730966805,219,0 +170730966853,220,0 +170730966901,220,0 +170730966950,222,0 +170730966998,226,0 +170730967048,232,0 +170730967096,249,0 +170730967144,231,0 +170730967193,220,0 +170730967241,219,0 +170730967291,219,0 +170730967338,219,0 +170730967386,218,0 +170730967434,219,0 +170730967482,218,0 +170730967530,219,0 +170730967580,219,0 +170730967628,219,0 +170730967677,219,0 +170730967725,219,0 +170730967773,219,0 +170730967823,219,0 +170730967872,219,0 +170730967920,219,0 +170730967968,219,0 +170730968018,219,0 +170730968067,220,0 +170730968115,256,0 +170730968163,266,0 +170730968211,231,0 +170730968259,219,0 +170730968307,219,0 +170730968355,220,0 +170730968403,219,0 +170730968451,219,0 +170730968499,219,0 +170730968547,219,0 +170730968595,219,0 +170730968644,219,0 +170730968694,220,0 +170730968742,219,0 +170730968790,219,0 +170730968838,220,0 +170730968887,219,0 +170730968935,219,0 +170730968983,219,0 +170730969031,219,0 +170730969079,219,0 +170730969127,221,0 +170730969177,253,0 +170730969225,265,0 +170730969273,223,0 +170730969321,220,0 +170730969369,219,0 +170730969417,219,0 +170730969464,219,0 +170730969514,219,0 +170730969562,219,0 +170730969611,219,0 +170730969661,218,0 +170730969711,219,0 +170730969760,219,0 +170730969808,219,0 +170730969856,219,0 +170730969904,219,0 +170730969953,219,0 +170730970001,219,0 +170730970051,219,0 +170730970099,219,0 +170730970148,219,0 +170730970196,250,0 +170730970246,254,0 +170730970294,222,0 +170730970343,220,0 +170730970393,219,0 +170730970441,219,0 +170730970489,219,0 +170730970537,219,0 +170730970585,219,0 +170730970634,219,0 +170730970682,219,0 +170730970732,219,0 +170730970781,219,0 +170730970829,219,0 +170730970877,219,0 +170730970925,219,0 +170730970973,219,0 +170730971021,219,0 +170730971069,219,0 +170730971117,219,0 +170730971165,219,0 +170730971213,220,0 +170730971261,254,0 +170730971309,263,0 +170730971358,226,0 +170730971408,219,0 +170730971457,219,0 +170730971505,219,0 +170730971553,219,0 +170730971601,219,0 +170730971651,219,0 +170730971700,219,0 +170730971750,219,0 +170730971798,219,0 +170730971847,219,0 +170730971897,219,0 +170730971946,219,0 +170730971996,219,0 +170730972045,219,0 +170730972095,219,0 +170730972144,219,0 +170730972194,219,0 +170730972242,220,0 +170730972290,237,0 +170730972339,254,0 +170730972387,222,0 +170730972435,219,0 +170730972485,219,0 +170730972533,219,0 +170730972581,219,0 +170730972629,219,0 +170730972677,219,0 +170730972725,219,0 +170730972774,219,0 +170730972822,219,0 +170730972870,219,0 +170730972918,219,0 +170730972966,219,0 +170730973015,218,0 +170730973063,219,0 +170730973111,218,0 +170730973159,219,0 +170730973209,219,0 +170730973257,219,0 +170730973305,220,0 +170730973353,253,0 +170730973401,256,0 +170730973449,227,0 +170730973498,219,0 +170730973548,219,0 +170730973596,219,0 +170730973644,219,0 +170730973691,219,0 +170730973739,219,0 +170730973787,219,0 +170730973837,218,0 +170730973885,219,0 +170730973933,219,0 +170730973981,219,0 +170730974029,219,0 +170730974077,219,0 +170730974126,219,0 +170730974176,219,0 +170730974224,218,0 +170730974272,219,0 +170730974321,219,0 +170730974369,220,0 +170730974417,248,0 +170730974465,267,0 +170730974515,224,0 +170730974564,219,0 +170730974614,219,0 +170730974662,219,0 +170730974711,219,0 +170730974761,219,0 +170730974809,219,0 +170730974858,219,0 +170730974906,219,0 +170730974954,219,0 +170730975002,219,0 +170730975052,219,0 +170730975100,219,0 +170730975149,219,0 +170730975197,218,0 +170730975245,219,0 +170730975293,219,0 +170730975342,219,0 +170730975390,219,0 +170730975438,233,0 +170730975486,251,0 +170730975534,230,0 +170730975584,220,0 +170730975632,219,0 +170730975681,219,0 +170730975731,219,0 +170730975779,219,0 +170730975828,219,0 +170730975876,219,0 +170730975924,219,0 +170730975972,218,0 +170730976022,219,0 +170730976071,219,0 +170730976119,219,0 +170730976167,219,0 +170730976215,219,0 +170730976263,219,0 +170730976311,219,0 +170730976359,219,0 +170730976407,219,0 +170730976457,221,0 +170730976505,251,0 +170730976553,253,0 +170730976601,230,0 +170730976650,219,0 +170730976698,219,0 +170730976746,218,0 +170730976794,219,0 +170730976842,219,0 +170730976891,218,0 +170730976939,219,0 +170730976989,219,0 +170730977037,219,0 +170730977085,219,0 +170730977133,219,0 +170730977181,219,0 +170730977230,219,0 +170730977280,219,0 +170730977328,218,0 +170730977376,219,0 +170730977424,219,0 +170730977472,220,0 +170730977519,221,0 +170730977569,254,0 +170730977617,266,0 +170730977665,222,0 +170730977713,219,0 +170730977761,219,0 +170730977809,219,0 +170730977857,219,0 +170730977905,219,0 +170730977954,218,0 +170730978002,219,0 +170730978050,219,0 +170730978098,219,0 +170730978146,219,0 +170730978194,219,0 +170730978243,219,0 +170730978291,219,0 +170730978339,219,0 +170730978387,219,0 +170730978435,219,0 +170730978483,219,0 +170730978531,219,0 +170730978579,223,0 +170730978627,266,0 +170730978675,237,0 +170730978723,220,0 +170730978771,219,0 +170730978820,219,0 +170730978868,219,0 +170730978918,219,0 +170730978966,219,0 +170730979014,218,0 +170730979062,219,0 +170730979110,219,0 +170730979158,219,0 +170730979207,219,0 +170730979255,219,0 +170730979305,219,0 +170730979353,219,0 +170730979401,219,0 +170730979449,219,0 +170730979498,219,0 +170730979548,220,0 +170730979596,220,0 +170730979645,252,0 +170730979693,259,0 +170730979741,228,0 +170730979789,219,0 +170730979839,219,0 +170730979887,219,0 +170730979935,219,0 +170730979983,219,0 +170730980031,219,0 +170730980078,219,0 +170730980126,219,0 +170730980174,219,0 +170730980224,219,0 +170730980272,219,0 +170730980320,219,0 +170730980369,218,0 +170730980419,219,0 +170730980467,219,0 +170730980516,219,0 +170730980564,219,0 +170730980614,219,0 +170730980664,221,0 +170730980713,256,0 +170730980761,257,0 +170730980811,221,0 +170730980860,219,0 +170730980908,219,0 +170730980956,219,0 +170730981004,219,0 +170730981052,219,0 +170730981100,219,0 +170730981149,219,0 +170730981197,219,0 +170730981245,219,0 +170730981295,219,0 +170730981344,219,0 +170730981394,219,0 +170730981442,219,0 +170730981489,219,0 +170730981537,219,0 +170730981585,219,0 +170730981633,219,0 +170730981683,220,0 +170730981732,247,0 +170730981782,250,0 +170730981830,223,0 +170730981879,220,0 +170730981927,219,0 +170730981975,218,0 +170730982023,219,0 +170730982073,219,0 +170730982122,219,0 +170730982170,219,0 +170730982218,219,0 +170730982266,219,0 +170730982314,219,0 +170730982362,219,0 +170730982410,219,0 +170730982458,219,0 +170730982506,219,0 +170730982555,219,0 +170730982605,219,0 +170730982653,219,0 +170730982702,219,0 +170730982752,220,0 +170730982801,247,0 +170730982849,250,0 +170730982899,227,0 +170730982947,219,0 +170730982995,219,0 +170730983043,219,0 +170730983092,219,0 +170730983142,219,0 +170730983190,219,0 +170730983237,219,0 +170730983285,218,0 +170730983333,219,0 +170730983381,219,0 +170730983429,219,0 +170730983477,219,0 +170730983525,219,0 +170730983575,219,0 +170730983623,219,0 +170730983671,219,0 +170730983718,219,0 +170730983766,220,0 +170730983814,221,0 +170730983862,248,0 +170730983910,248,0 +170730983958,221,0 +170730984006,219,0 +170730984054,219,0 +170730984103,219,0 +170730984151,219,0 +170730984199,219,0 +170730984247,219,0 +170730984296,218,0 +170730984344,219,0 +170730984392,219,0 +170730984440,219,0 +170730984488,219,0 +170730984536,219,0 +170730984584,218,0 +170730984632,219,0 +170730984681,219,0 +170730984729,219,0 +170730984779,219,0 +170730984826,219,0 +170730984874,236,0 +170730984924,257,0 +170730984973,223,0 +170730985023,219,0 +170730985071,220,0 +170730985119,219,0 +170730985167,219,0 +170730985215,219,0 +170730985263,219,0 +170730985311,218,0 +170730985359,218,0 +170730985407,219,0 +170730985456,218,0 +170730985506,219,0 +170730985555,219,0 +170730985603,219,0 +170730985651,219,0 +170730985699,219,0 +170730985747,219,0 +170730985795,219,0 +170730985844,219,0 +170730985894,220,0 +170730985942,253,0 +170730985991,255,0 +170730986039,226,0 +170730986089,219,0 +170730986137,219,0 +170730986186,219,0 +170730986234,219,0 +170730986284,219,0 +170730986332,219,0 +170730986381,219,0 +170730986429,219,0 +170730986477,219,0 +170730986525,219,0 +170730986573,218,0 +170730986623,219,0 +170730986671,219,0 +170730986720,219,0 +170730986768,219,0 +170730986816,219,0 +170730986865,219,0 +170730986913,219,0 +170730986961,222,0 +170730987009,256,0 +170730987057,228,0 +170730987107,220,0 +170730987155,219,0 +170730987204,219,0 +170730987254,219,0 +170730987302,219,0 +170730987351,219,0 +170730987399,219,0 +170730987447,219,0 +170730987495,219,0 +170730987543,219,0 +170730987592,219,0 +170730987642,218,0 +170730987690,218,0 +170730987739,219,0 +170730987787,219,0 +170730987835,218,0 +170730987883,219,0 +170730987931,219,0 +170730987979,220,0 +170730988027,251,0 +170730988075,263,0 +170730988125,227,0 +170730988173,219,0 +170730988221,219,0 +170730988269,219,0 +170730988318,219,0 +170730988368,219,0 +170730988417,218,0 +170730988465,219,0 +170730988513,219,0 +170730988563,219,0 +170730988611,219,0 +170730988658,219,0 +170730988708,219,0 +170730988756,218,0 +170730988804,219,0 +170730988852,219,0 +170730988900,219,0 +170730988949,219,0 +170730988999,220,0 +170730989047,220,0 +170730989095,252,0 +170730989143,260,0 +170730989191,226,0 +170730989240,219,0 +170730989290,219,0 +170730989339,219,0 +170730989387,219,0 +170730989435,219,0 +170730989485,219,0 +170730989533,219,0 +170730989581,219,0 +170730989629,219,0 +170730989677,219,0 +170730989725,219,0 +170730989773,219,0 +170730989821,219,0 +170730989870,219,0 +170730989918,218,0 +170730989966,219,0 +170730990014,219,0 +170730990063,219,0 +170730990111,222,0 +170730990159,249,0 +170730990207,236,0 +170730990257,220,0 +170730990304,219,0 +170730990354,219,0 +170730990403,219,0 +170730990451,219,0 +170730990500,219,0 +170730990547,219,0 +170730990595,219,0 +170730990645,219,0 +170730990693,219,0 +170730990741,219,0 +170730990789,219,0 +170730990837,219,0 +170730990885,219,0 +170730990933,219,0 +170730990982,220,0 +170730991030,219,0 +170730991078,219,0 +170730991126,219,0 +170730991176,247,0 +170730991224,251,0 +170730991273,228,0 +170730991321,219,0 +170730991369,219,0 +170730991417,219,0 +170730991465,219,0 +170730991514,219,0 +170730991562,218,0 +170730991610,219,0 +170730991660,219,0 +170730991709,219,0 +170730991759,218,0 +170730991807,218,0 +170730991856,219,0 +170730991906,219,0 +170730991954,219,0 +170730992002,219,0 +170730992050,219,0 +170730992098,219,0 +170730992147,219,0 +170730992195,221,0 +170730992243,250,0 +170730992291,256,0 +170730992341,223,0 +170730992389,219,0 +170730992437,219,0 +170730992486,219,0 +170730992536,219,0 +170730992584,219,0 +170730992632,219,0 +170730992680,219,0 +170730992728,220,0 +170730992776,219,0 +170730992823,219,0 +170730992873,219,0 +170730992921,219,0 +170730992971,219,0 +170730993018,219,0 +170730993066,220,0 +170730993114,219,0 +170730993164,219,0 +170730993211,220,0 +170730993259,223,0 +170730993307,246,0 +170730993355,225,0 +170730993403,219,0 +170730993451,219,0 +170730993499,219,0 +170730993547,219,0 +170730993594,219,0 +170730993642,219,0 +170730993690,219,0 +170730993738,219,0 +170730993786,219,0 +170730993834,219,0 +170730993883,219,0 +170730993931,219,0 +170730993981,219,0 +170730994030,219,0 +170730994078,219,0 +170730994128,219,0 +170730994176,219,0 +170730994225,219,0 +170730994273,220,0 +170730994321,248,0 +170730994369,247,0 +170730994417,227,0 +170730994465,220,0 +170730994515,219,0 +170730994564,219,0 +170730994612,219,0 +170730994660,219,0 +170730994708,219,0 +170730994757,219,0 +170730994807,219,0 +170730994855,219,0 +170730994905,219,0 +170730994953,219,0 +170730995000,219,0 +170730995050,219,0 +170730995098,219,0 +170730995146,219,0 +170730995194,219,0 +170730995242,218,0 +170730995290,219,0 +170730995339,219,0 +170730995387,219,0 +170730995435,218,0 +170730995483,219,0 +170730995533,219,0 +170730995581,219,0 +170730995629,219,0 +170730995677,219,0 +170730995725,219,0 +170730995773,219,0 +170730995821,220,0 +170730995870,229,0 +170730995918,248,0 +170730995968,248,0 +170730996016,220,0 +170730996064,219,0 +170730996112,219,0 +170730996161,218,0 +170730996211,219,0 +170730996260,219,0 +170730996310,219,0 +170730996358,219,0 +170730996406,219,0 +170730996455,219,0 +170730996503,219,0 +170730996551,219,0 +170730996599,219,0 +170730996649,219,0 +170730996697,219,0 +170730996745,219,0 +170730996793,219,0 +170730996840,219,0 +170730996888,220,0 +170730996936,284,1 +170730997027,226,0 +170730997075,220,0 +170730997123,219,0 +170730997171,219,0 +170730997219,219,0 +170730997267,219,0 +170730997315,219,0 +170730997362,219,0 +170730997410,219,0 +170730997458,219,0 +170730997506,219,0 +170730997554,219,0 +170730997604,219,0 +170730997653,219,0 +170730997701,219,0 +170730997749,218,0 +170730997797,219,0 +170730997845,220,0 +170730997895,219,0 +170730997943,220,0 +170730997991,254,0 +170730998040,254,0 +170730998088,228,0 +170730998138,220,0 +170730998185,219,0 +170730998235,219,0 +170730998284,219,0 +170730998332,219,0 +170730998382,219,0 +170730998430,219,0 +170730998480,219,0 +170730998529,219,0 +170730998577,219,0 +170730998627,219,0 +170730998675,219,0 +170730998724,219,0 +170730998774,219,0 +170730998821,219,0 +170730998871,219,0 +170730998919,219,0 +170730998967,219,0 +170730999014,222,0 +170730999062,253,0 +170730999112,247,0 +170730999161,221,0 +170730999211,219,0 +170730999259,219,0 +170730999307,219,0 +170730999355,219,0 +170730999403,218,0 +170730999451,219,0 +170730999499,219,0 +170730999548,219,0 +170730999596,219,0 +170730999646,219,0 +170730999694,219,0 +170730999742,219,0 +170730999790,219,0 +170730999840,219,0 +170730999888,219,0 +170730999937,219,0 +170730999985,219,0 +170731000035,220,0 +170731000084,248,0 +170731000132,251,0 +170731000182,229,0 +170731000230,219,0 +170731000278,219,0 +170731000326,219,0 +170731000373,219,0 +170731000421,219,0 +170731000469,219,0 +170731000517,219,0 +170731000565,219,0 +170731000613,219,0 +170731000661,219,0 +170731000709,219,0 +170731000758,219,0 +170731000808,219,0 +170731000856,219,0 +170731000903,219,0 +170731000951,219,0 +170731001001,219,0 +170731001049,220,0 +170731001097,221,0 +170731001145,258,0 +170731001193,257,0 +170731001242,227,0 +170731001292,220,0 +170731001341,219,0 +170731001389,219,0 +170731001439,219,0 +170731001487,219,0 +170731001535,219,0 +170731001583,219,0 +170731001631,220,0 +170731001680,219,0 +170731001728,220,0 +170731001776,220,0 +170731001824,219,0 +170731001872,219,0 +170731001920,219,0 +170731001970,220,0 +170731002018,219,0 +170731002066,220,0 +170731002114,220,0 +170731002162,247,0 +170731002209,253,0 +170731002257,230,0 +170731002305,220,0 +170731002353,220,0 +170731002401,219,0 +170731002451,219,0 +170731002499,219,0 +170731002547,219,0 +170731002595,219,0 +170731002643,220,0 +170731002691,219,0 +170731002739,219,0 +170731002787,219,0 +170731002835,219,0 +170731002884,219,0 +170731002932,219,0 +170731002980,219,0 +170731003028,219,0 +170731003076,218,0 +170731003125,219,0 +170731003173,220,0 +170731003221,246,0 +170731003271,253,0 +170731003320,224,0 +170731003368,220,0 +170731003416,219,0 +170731003464,219,0 +170731003512,219,0 +170731003562,219,0 +170731003610,219,0 +170731003659,219,0 +170731003709,219,0 +170731003758,219,0 +170731003808,219,0 +170731003856,219,0 +170731003905,219,0 +170731003953,219,0 +170731004003,219,0 +170731004051,219,0 +170731004099,219,0 +170731004147,219,0 +170731004194,219,0 +170731004242,220,0 +170731004290,256,0 +170731004340,254,0 +170731004389,226,0 +170731004437,219,0 +170731004485,220,0 +170731004535,219,0 +170731004583,219,0 +170731004631,219,0 +170731004679,219,0 +170731004727,219,0 +170731004775,219,0 +170731004823,220,0 +170731004870,219,0 +170731004918,219,0 +170731004968,220,0 +170731005016,219,0 +170731005064,219,0 +170731005113,219,0 +170731005163,219,0 +170731005211,219,0 +170731005259,220,0 +170731005307,222,0 +170731005355,245,0 +170731005403,258,0 +170731005451,222,0 +170731005499,219,0 +170731005547,219,0 +170731005595,218,0 +170731005643,219,0 +170731005691,219,0 +170731005739,219,0 +170731005787,218,0 +170731005835,219,0 +170731005883,219,0 +170731005931,219,0 +170731005979,219,0 +170731006027,219,0 +170731006075,219,0 +170731006122,219,0 +170731006170,219,0 +170731006220,219,0 +170731006269,219,0 +170731006319,220,0 +170731006368,250,0 +170731006416,266,0 +170731006464,223,0 +170731006514,220,0 +170731006562,219,0 +170731006610,219,0 +170731006658,219,0 +170731006706,219,0 +170731006755,219,0 +170731006803,219,0 +170731006851,219,0 +170731006899,219,0 +170731006947,219,0 +170731006997,219,0 +170731007046,219,0 +170731007096,219,0 +170731007145,219,0 +170731007193,219,0 +170731007243,219,0 +170731007290,219,0 +170731007340,220,0 +170731007390,220,0 +170731007439,255,0 +170731007487,269,0 +170731007535,229,0 +170731007583,219,0 +170731007632,219,0 +170731007680,219,0 +170731007730,219,0 +170731007778,219,0 +170731007826,219,0 +170731007875,220,0 +170731007925,220,0 +170731007974,219,0 +170731008022,219,0 +170731008070,219,0 +170731008120,219,0 +170731008168,219,0 +170731008217,219,0 +170731008265,219,0 +170731008315,219,0 +170731008363,219,0 +170731008412,220,0 +170731008460,253,0 +170731008510,259,0 +170731008558,222,0 +170731008606,220,0 +170731008655,219,0 +170731008705,219,0 +170731008754,219,0 +170731008804,219,0 +170731008853,219,0 +170731008903,219,0 +170731008951,219,0 +170731009000,219,0 +170731009048,219,0 +170731009098,219,0 +170731009146,219,0 +170731009194,219,0 +170731009242,219,0 +170731009290,219,0 +170731009338,219,0 +170731009386,220,0 +170731009435,220,0 +170731009483,221,0 +170731009531,249,0 +170731009580,263,0 +170731009628,227,0 +170731009676,219,0 +170731009726,219,0 +170731009774,219,0 +170731009823,219,0 +170731009873,219,0 +170731009921,219,0 +170731009969,219,0 +170731010017,219,0 +170731010065,219,0 +170731010113,219,0 +170731010162,219,0 +170731010212,219,0 +170731010261,219,0 +170731010311,219,0 +170731010359,219,0 +170731010408,219,0 +170731010456,219,0 +170731010504,220,0 +170731010551,221,0 +170731010599,245,0 +170731010647,261,0 +170731010695,222,0 +170731010743,220,0 +170731010791,219,0 +170731010839,219,0 +170731010887,220,0 +170731010936,219,0 +170731010984,219,0 +170731011032,220,0 +170731011080,219,0 +170731011128,219,0 +170731011176,219,0 +170731011225,219,0 +170731011273,219,0 +170731011321,219,0 +170731011369,219,0 +170731011416,219,0 +170731011464,219,0 +170731011512,219,0 +170731011560,220,0 +170731011610,248,0 +170731011657,263,0 +170731011705,226,0 +170731011753,221,0 +170731011801,219,0 +170731011850,219,0 +170731011898,219,0 +170731011946,219,0 +170731011994,219,0 +170731012043,219,0 +170731012091,219,0 +170731012139,219,0 +170731012189,219,0 +170731012236,219,0 +170731012284,219,0 +170731012332,219,0 +170731012380,219,0 +170731012428,219,0 +170731012476,219,0 +170731012524,219,0 +170731012571,219,0 +170731012619,220,0 +170731012667,253,0 +170731012715,252,0 +170731012763,227,0 +170731012811,219,0 +170731012859,219,0 +170731012907,219,0 +170731012955,219,0 +170731013003,218,0 +170731013051,219,0 +170731013100,219,0 +170731013148,219,0 +170731013196,219,0 +170731013245,218,0 +170731013295,219,0 +170731013343,219,0 +170731013391,218,0 +170731013440,219,0 +170731013490,219,0 +170731013538,219,0 +170731013586,219,0 +170731013634,219,0 +170731013683,220,0 +170731013731,249,0 +170731013780,252,0 +170731013830,227,0 +170731013879,219,0 +170731013927,219,0 +170731013977,219,0 +170731014026,219,0 +170731014074,219,0 +170731014122,219,0 +170731014170,219,0 +170731014218,219,0 +170731014266,219,0 +170731014314,219,0 +170731014362,219,0 +170731014409,219,0 +170731014457,220,0 +170731014505,219,0 +170731014553,219,0 +170731014601,219,0 +170731014649,219,0 +170731014697,219,0 +170731014744,221,0 +170731014792,254,0 +170731014840,260,0 +170731014890,221,0 +170731014937,219,0 +170731014985,219,0 +170731015033,219,0 +170731015081,219,0 +170731015129,219,0 +170731015178,219,0 +170731015226,219,0 +170731015274,219,0 +170731015322,219,0 +170731015370,219,0 +170731015418,219,0 +170731015466,219,0 +170731015514,219,0 +170731015562,219,0 +170731015610,219,0 +170731015658,219,0 +170731015707,219,0 +170731015755,220,0 +170731015803,241,0 +170731015853,262,0 +170731015901,234,0 +170731015949,221,0 +170731015997,219,0 +170731016046,219,0 +170731016096,219,0 +170731016145,219,0 +170731016193,219,0 +170731016243,219,0 +170731016292,219,0 +170731016340,219,0 +170731016388,219,0 +170731016436,219,0 +170731016484,219,0 +170731016532,220,0 +170731016580,219,0 +170731016627,219,0 +170731016677,219,0 +170731016725,219,0 +170731016773,219,0 +170731016821,220,0 +170731016870,249,0 +170731016918,260,0 +170731016966,228,0 +170731017014,220,0 +170731017062,219,0 +170731017111,219,0 +170731017159,219,0 +170731017207,219,0 +170731017255,218,0 +170731017303,218,0 +170731017351,219,0 +170731017399,218,0 +170731017448,219,0 +170731017496,219,0 +170731017544,219,0 +170731017592,219,0 +170731017640,219,0 +170731017689,219,0 +170731017739,219,0 +170731017788,219,0 +170731017836,219,0 +170731017884,220,0 +170731017932,249,0 +170731017980,255,0 +170731018030,229,0 +170731018078,220,0 +170731018127,220,0 +170731018175,220,0 +170731018223,220,0 +170731018273,219,0 +170731018321,219,0 +170731018370,219,0 +170731018420,220,0 +170731018468,219,0 +170731018516,219,0 +170731018565,219,0 +170731018613,220,0 +170731018663,219,0 +170731018711,220,0 +170731018760,219,0 +170731018808,220,0 +170731018856,220,0 +170731018904,221,0 +170731018953,234,0 +170731019001,249,0 +170731019049,232,0 +170731019097,221,0 +170731019145,220,0 +170731019193,220,0 +170731019241,220,0 +170731019289,219,0 +170731019336,219,0 +170731019384,219,0 +170731019432,220,0 +170731019480,220,0 +170731019528,219,0 +170731019576,219,0 +170731019624,219,0 +170731019672,219,0 +170731019720,220,0 +170731019769,220,0 +170731019819,219,0 +170731019867,219,0 +170731019916,220,0 +170731019964,220,0 +170731020012,247,0 +170731020060,252,0 +170731020108,221,0 +170731020158,221,0 +170731020206,219,0 +170731020254,220,0 +170731020302,220,0 +170731020349,219,0 +170731020399,220,0 +170731020448,220,0 +170731020496,219,0 +170731020544,220,0 +170731020594,220,0 +170731020642,219,0 +170731020691,220,0 +170731020739,220,0 +170731020787,219,0 +170731020837,220,0 +170731020885,220,0 +170731020933,220,0 +170731020982,220,0 +170731021032,222,0 +170731021080,255,0 +170731021128,258,0 +170731021177,227,0 +170731021225,220,0 +170731021273,220,0 +170731021321,219,0 +170731021369,220,0 +170731021417,219,0 +170731021465,220,0 +170731021513,219,0 +170731021561,220,0 +170731021611,220,0 +170731021658,220,0 +170731021706,219,0 +170731021756,220,0 +170731021805,220,0 +170731021855,220,0 +170731021903,220,0 +170731021951,220,0 +170731022000,220,0 +170731022048,221,0 +170731022098,224,0 +170731022146,265,0 +170731022194,254,0 +170731022242,223,0 +170731022290,220,0 +170731022338,220,0 +170731022387,220,0 +170731022437,219,0 +170731022486,219,0 +170731022534,219,0 +170731022582,219,0 +170731022630,220,0 +170731022678,220,0 +170731022726,219,0 +170731022775,219,0 +170731022825,220,0 +170731022873,220,0 +170731022921,219,0 +170731022970,219,0 +170731023018,219,0 +170731023066,220,0 +170731023116,221,0 +170731023165,247,0 +170731023215,254,0 +170731023263,228,0 +170731023311,220,0 +170731023359,219,0 +170731023408,220,0 +170731023456,219,0 +170731023504,219,0 +170731023554,219,0 +170731023603,219,0 +170731023651,219,0 +170731023700,220,0 +170731023748,219,0 +170731023798,219,0 +170731023847,219,0 +170731023897,220,0 +170731023945,219,0 +170731023993,220,0 +170731024041,219,0 +170731024089,219,0 +170731024138,220,0 +170731024186,223,0 +170731024234,248,0 +170731024282,259,0 +170731024330,223,0 +170731024378,219,0 +170731024426,219,0 +170731024475,219,0 +170731024525,219,0 +170731024575,219,0 +170731024622,219,0 +170731024672,219,0 +170731024720,219,0 +170731024768,219,0 +170731024816,218,0 +170731024865,219,0 +170731024913,219,0 +170731024961,219,0 +170731025009,219,0 +170731025059,219,0 +170731025107,220,0 +170731025156,219,0 +170731025206,220,0 +170731025254,246,0 +170731025302,261,0 +170731025349,226,0 +170731025398,220,0 +170731025445,219,0 +170731025494,219,0 +170731025541,219,0 +170731025591,219,0 +170731025640,219,0 +170731025690,219,0 +170731025738,219,0 +170731025786,219,0 +170731025834,219,0 +170731025883,219,0 +170731025933,219,0 +170731025982,219,0 +170731026030,218,0 +170731026078,219,0 +170731026128,220,0 +170731026176,219,0 +170731026224,219,0 +170731026272,220,0 +170731026321,254,0 +170731026369,251,0 +170731026419,227,0 +170731026467,219,0 +170731026516,219,0 +170731026564,219,0 +170731026612,219,0 +170731026662,219,0 +170731026710,219,0 +170731026757,219,0 +170731026805,219,0 +170731026855,219,0 +170731026904,219,0 +170731026952,219,0 +170731027000,219,0 +170731027048,220,0 +170731027096,219,0 +170731027144,219,0 +170731027192,219,0 +170731027242,220,0 +170731027291,219,0 +170731027341,235,0 +170731027389,252,0 +170731027438,238,0 +170731027486,221,0 +170731027534,219,0 +170731027583,219,0 +170731027631,219,0 +170731027681,218,0 +170731027730,219,0 +170731027780,218,0 +170731027828,219,0 +170731027877,219,0 +170731027925,219,0 +170731027973,219,0 +170731028021,219,0 +170731028071,219,0 +170731028118,219,0 +170731028166,219,0 +170731028214,219,0 +170731028264,219,0 +170731028312,219,0 +170731028361,220,0 +170731028409,252,0 +170731028457,256,0 +170731028505,228,0 +170731028553,219,0 +170731028601,218,0 +170731028649,219,0 +170731028697,219,0 +170731028745,219,0 +170731028794,219,0 +170731028842,219,0 +170731028890,219,0 +170731028938,219,0 +170731028986,219,0 +170731029034,219,0 +170731029081,219,0 +170731029129,219,0 +170731029179,219,0 +170731029227,219,0 +170731029275,219,0 +170731029324,219,0 +170731029372,219,0 +170731029420,220,0 +170731029468,249,0 +170731029516,257,0 +170731029566,228,0 +170731029615,219,0 +170731029663,219,0 +170731029711,219,0 +170731029761,219,0 +170731029809,219,0 +170731029858,219,0 +170731029906,219,0 +170731029954,219,0 +170731030002,219,0 +170731030052,219,0 +170731030101,219,0 +170731030149,219,0 +170731030197,219,0 +170731030245,219,0 +170731030293,219,0 +170731030343,219,0 +170731030392,219,0 +170731030442,219,0 +170731030490,241,0 +170731030539,254,0 +170731030589,229,0 +170731030638,220,0 +170731030686,219,0 +170731030734,219,0 +170731030782,218,0 +170731030832,219,0 +170731030881,218,0 +170731030931,219,0 +170731030980,218,0 +170731031028,219,0 +170731031076,219,0 +170731031124,219,0 +170731031173,218,0 +170731031221,219,0 +170731031271,219,0 +170731031319,219,0 +170731031367,219,0 +170731031415,219,0 +170731031463,219,0 +170731031512,220,0 +170731031560,253,0 +170731031608,260,0 +170731031658,229,0 +170731031707,220,0 +170731031755,219,0 +170731031803,219,0 +170731031853,219,0 +170731031902,219,0 +170731031951,219,0 +170731032001,219,0 +170731032050,219,0 +170731032100,219,0 +170731032148,219,0 +170731032196,219,0 +170731032244,219,0 +170731032293,219,0 +170731032341,219,0 +170731032391,219,0 +170731032439,219,0 +170731032488,219,0 +170731032536,219,0 +170731032584,221,0 +170731032634,251,0 +170731032683,259,0 +170731032731,223,0 +170731032779,219,0 +170731032827,219,0 +170731032875,219,0 +170731032924,219,0 +170731032974,219,0 +170731033022,220,0 +170731033071,219,0 +170731033119,219,0 +170731033167,219,0 +170731033215,219,0 +170731033263,219,0 +170731033311,219,0 +170731033359,220,0 +170731033407,219,0 +170731033455,219,0 +170731033502,219,0 +170731033550,220,0 +170731033598,220,0 +170731033646,271,1 +170731033733,242,0 +170731033781,221,0 +170731033829,220,0 +170731033877,220,0 +170731033926,219,0 +170731033976,220,0 +170731034024,220,0 +170731034072,220,0 +170731034120,219,0 +170731034169,219,0 +170731034217,220,0 +170731034267,219,0 +170731034315,219,0 +170731034363,219,0 +170731034411,219,0 +170731034459,219,0 +170731034508,219,0 +170731034556,220,0 +170731034604,219,0 +170731034652,221,0 +170731034702,254,0 +170731034750,256,0 +170731034798,230,0 +170731034846,220,0 +170731034893,219,0 +170731034943,219,0 +170731034992,219,0 +170731035041,219,0 +170731035089,219,0 +170731035139,219,0 +170731035187,219,0 +170731035236,219,0 +170731035284,219,0 +170731035334,219,0 +170731035383,219,0 +170731035431,219,0 +170731035479,219,0 +170731035527,219,0 +170731035575,219,0 +170731035624,219,0 +170731035672,220,0 +170731035720,220,0 +170731035770,267,0 +170731035818,267,0 +170731035866,224,0 +170731035915,220,0 +170731035963,219,0 +170731036013,219,0 +170731036061,219,0 +170731036109,219,0 +170731036157,219,0 +170731036206,219,0 +170731036256,219,0 +170731036304,219,0 +170731036352,220,0 +170731036401,219,0 +170731036449,219,0 +170731036497,219,0 +170731036545,219,0 +170731036593,219,0 +170731036641,219,0 +170731036689,220,0 +170731036737,220,0 +170731036785,232,0 +170731036833,262,0 +170731036881,233,0 +170731036929,221,0 +170731036977,220,0 +170731037026,219,0 +170731037076,219,0 +170731037124,219,0 +170731037172,219,0 +170731037220,219,0 +170731037269,219,0 +170731037317,219,0 +170731037367,219,0 +170731037415,219,0 +170731037463,220,0 +170731037511,219,0 +170731037559,220,0 +170731037608,219,0 +170731037656,220,0 +170731037704,219,0 +170731037753,220,0 +170731037801,221,0 +170731037849,260,0 +170731037899,261,0 +170731037948,229,0 +170731037998,219,0 +170731038046,219,0 +170731038095,220,0 +170731038143,220,0 +170731038191,219,0 +170731038239,219,0 +170731038287,219,0 +170731038335,219,0 +170731038383,219,0 +170731038431,219,0 +170731038479,219,0 +170731038527,219,0 +170731038576,220,0 +170731038626,219,0 +170731038675,219,0 +170731038723,219,0 +170731038771,220,0 +170731038821,220,0 +170731038869,221,0 +170731038918,257,0 +170731038968,255,0 +170731039016,224,0 +170731039065,220,0 +170731039113,219,0 +170731039163,220,0 +170731039211,219,0 +170731039259,219,0 +170731039307,219,0 +170731039355,219,0 +170731039404,219,0 +170731039452,219,0 +170731039500,219,0 +170731039549,219,0 +170731039597,219,0 +170731039645,219,0 +170731039694,219,0 +170731039742,219,0 +170731039790,219,0 +170731039838,219,0 +170731039886,219,0 +170731039934,233,0 +170731039983,263,0 +170731040031,229,0 +170731040079,220,0 +170731040127,219,0 +170731040175,219,0 +170731040223,219,0 +170731040271,219,0 +170731040319,219,0 +170731040366,219,0 +170731040414,219,0 +170731040462,219,0 +170731040510,220,0 +170731040558,220,0 +170731040606,220,0 +170731040655,219,0 +170731040703,219,0 +170731040753,219,0 +170731040801,219,0 +170731040850,219,0 +170731040898,220,0 +170731040946,220,0 +170731040996,248,0 +170731041044,257,0 +170731041092,228,0 +170731041140,220,0 +170731041188,219,0 +170731041237,219,0 +170731041285,219,0 +170731041334,219,0 +170731041382,219,0 +170731041430,220,0 +170731041478,220,0 +170731041527,220,0 +170731041577,220,0 +170731041627,220,0 +170731041676,219,0 +170731041724,219,0 +170731041774,219,0 +170731041821,219,0 +170731041869,219,0 +170731041917,219,0 +170731041965,220,0 +170731042013,221,0 +170731042061,261,0 +170731042109,268,0 +170731042157,228,0 +170731042205,220,0 +170731042253,219,0 +170731042300,220,0 +170731042348,220,0 +170731042396,220,0 +170731042444,219,0 +170731042492,220,0 +170731042540,219,0 +170731042590,220,0 +170731042638,219,0 +170731042685,220,0 +170731042733,219,0 +170731042781,219,0 +170731042829,220,0 +170731042879,219,0 +170731042927,219,0 +170731042975,219,0 +170731043022,220,0 +170731043070,222,0 +170731043118,258,0 +170731043166,273,1 +170731043258,220,0 +170731043306,219,0 +170731043353,219,0 +170731043401,220,0 +170731043451,220,0 +170731043500,219,0 +170731043548,219,0 +170731043598,220,0 +170731043646,220,0 +170731043694,220,0 +170731043742,219,0 +170731043790,219,0 +170731043839,219,0 +170731043887,220,0 +170731043937,219,0 +170731043986,220,0 +170731044034,220,0 +170731044082,220,0 +170731044130,237,0 +170731044178,269,0 +170731044228,238,0 +170731044276,220,0 +170731044324,219,0 +170731044372,219,0 +170731044421,219,0 +170731044471,219,0 +170731044520,219,0 +170731044568,219,0 +170731044616,219,0 +170731044666,220,0 +170731044715,220,0 +170731044765,219,0 +170731044814,219,0 +170731044862,219,0 +170731044912,219,0 +170731044960,220,0 +170731045008,219,0 +170731045056,219,0 +170731045104,220,0 +170731045151,221,0 +170731045201,258,0 +170731045249,272,1 +170731045334,220,0 +170731045384,219,0 +170731045432,219,0 +170731045480,219,0 +170731045528,219,0 +170731045578,219,0 +170731045626,219,0 +170731045674,219,0 +170731045723,219,0 +170731045771,219,0 +170731045819,220,0 +170731045867,220,0 +170731045915,219,0 +170731045963,219,0 +170731046012,220,0 +170731046060,219,0 +170731046108,219,0 +170731046156,220,0 +170731046206,221,0 +170731046254,265,0 +170731046302,280,1 +170731046385,220,0 +170731046434,219,0 +170731046482,219,0 +170731046530,219,0 +170731046580,219,0 +170731046629,219,0 +170731046677,219,0 +170731046727,219,0 +170731046775,219,0 +170731046823,219,0 +170731046872,219,0 +170731046922,219,0 +170731046971,219,0 +170731047019,219,0 +170731047067,220,0 +170731047115,219,0 +170731047163,219,0 +170731047211,219,0 +170731047259,220,0 +170731047306,268,0 +170731047354,278,1 +170731047433,220,0 +170731047482,219,0 +170731047530,219,0 +170731047578,220,0 +170731047628,219,0 +170731047676,219,0 +170731047724,219,0 +170731047772,219,0 +170731047820,219,0 +170731047868,219,0 +170731047916,219,0 +170731047964,219,0 +170731048012,219,0 +170731048061,219,0 +170731048111,219,0 +170731048160,219,0 +170731048208,219,0 +170731048256,219,0 +170731048304,220,0 +170731048354,257,0 +170731048402,272,1 +170731048485,220,0 +170731048534,219,0 +170731048582,219,0 +170731048632,219,0 +170731048681,219,0 +170731048729,219,0 +170731048777,220,0 +170731048827,220,0 +170731048875,220,0 +170731048923,219,0 +170731048971,220,0 +170731049019,219,0 +170731049067,219,0 +170731049115,219,0 +170731049164,219,0 +170731049212,219,0 +170731049260,219,0 +170731049310,220,0 +170731049359,220,0 +170731049407,262,0 +170731049455,263,0 +170731049503,227,0 +170731049551,219,0 +170731049601,219,0 +170731049649,219,0 +170731049698,219,0 +170731049746,220,0 +170731049794,219,0 +170731049843,219,0 +170731049891,219,0 +170731049939,219,0 +170731049989,219,0 +170731050038,219,0 +170731050088,219,0 +170731050136,219,0 +170731050184,219,0 +170731050232,219,0 +170731050280,219,0 +170731050328,219,0 +170731050376,220,0 +170731050425,226,0 +170731050473,257,0 +170731050523,248,0 +170731050571,221,0 +170731050619,219,0 +170731050667,219,0 +170731050715,219,0 +170731050764,219,0 +170731050812,219,0 +170731050862,219,0 +170731050911,219,0 +170731050959,219,0 +170731051007,220,0 +170731051057,220,0 +170731051106,219,0 +170731051154,219,0 +170731051202,219,0 +170731051250,219,0 +170731051298,219,0 +170731051346,219,0 +170731051394,219,0 +170731051444,220,0 +170731051493,260,0 +170731051541,263,0 +170731051591,223,0 +170731051640,221,0 +170731051688,220,0 +170731051736,219,0 +170731051784,219,0 +170731051834,219,0 +170731051881,219,0 +170731051929,220,0 +170731051977,219,0 +170731052027,219,0 +170731052076,220,0 +170731052124,220,0 +170731052172,220,0 +170731052220,219,0 +170731052268,220,0 +170731052316,219,0 +170731052364,220,0 +170731052413,219,0 +170731052461,219,0 +170731052509,221,0 +170731052557,263,0 +170731052605,274,1 +170731052687,220,0 +170731052737,219,0 +170731052785,219,0 +170731052833,220,0 +170731052881,219,0 +170731052930,219,0 +170731052980,219,0 +170731053029,219,0 +170731053077,219,0 +170731053125,219,0 +170731053173,220,0 +170731053223,219,0 +170731053272,219,0 +170731053320,219,0 +170731053370,219,0 +170731053418,219,0 +170731053467,219,0 +170731053515,220,0 +170731053563,222,0 +170731053613,256,0 +170731053661,288,1 +170731053740,219,0 +170731053787,219,0 +170731053835,219,0 +170731053883,219,0 +170731053931,219,0 +170731053979,219,0 +170731054027,219,0 +170731054075,219,0 +170731054123,219,0 +170731054173,219,0 +170731054222,219,0 +170731054270,219,0 +170731054320,219,0 +170731054369,219,0 +170731054417,219,0 +170731054467,219,0 +170731054515,219,0 +170731054564,219,0 +170731054612,220,0 +170731054662,263,0 +170731054710,264,0 +170731054758,227,0 +170731054806,219,0 +170731054854,219,0 +170731054902,219,0 +170731054949,220,0 +170731054999,219,0 +170731055047,219,0 +170731055097,219,0 +170731055144,219,0 +170731055194,219,0 +170731055242,219,0 +170731055290,220,0 +170731055338,219,0 +170731055386,219,0 +170731055433,219,0 +170731055481,219,0 +170731055529,220,0 +170731055577,219,0 +170731055625,219,0 +170731055675,221,0 +170731055724,257,0 +170731055774,260,0 +170731055823,222,0 +170731055871,219,0 +170731055919,219,0 +170731055967,219,0 +170731056015,219,0 +170731056063,220,0 +170731056111,219,0 +170731056158,220,0 +170731056206,219,0 +170731056254,219,0 +170731056302,219,0 +170731056351,219,0 +170731056399,220,0 +170731056447,219,0 +170731056495,219,0 +170731056543,219,0 +170731056591,219,0 +170731056639,220,0 +170731056687,220,0 +170731056734,261,0 +170731056782,260,0 +170731056830,222,0 +170731056878,220,0 +170731056926,219,0 +170731056974,219,0 +170731057022,219,0 +170731057070,220,0 +170731057118,220,0 +170731057166,220,0 +170731057214,219,0 +170731057262,219,0 +170731057311,219,0 +170731057359,219,0 +170731057407,219,0 +170731057455,219,0 +170731057503,219,0 +170731057550,219,0 +170731057598,219,0 +170731057646,219,0 +170731057696,219,0 +170731057744,220,0 +170731057791,254,0 +170731057839,276,1 +170731057930,221,0 +170731057978,219,0 +170731058026,219,0 +170731058073,219,0 +170731058121,219,0 +170731058169,219,0 +170731058217,219,0 +170731058265,219,0 +170731058315,219,0 +170731058362,219,0 +170731058410,219,0 +170731058458,219,0 +170731058506,219,0 +170731058554,219,0 +170731058602,219,0 +170731058650,219,0 +170731058697,219,0 +170731058745,220,0 +170731058793,220,0 +170731058843,264,0 +170731058892,284,1 +170731058972,222,0 +170731059020,219,0 +170731059068,219,0 +170731059116,219,0 +170731059166,219,0 +170731059215,220,0 +170731059263,219,0 +170731059311,219,0 +170731059361,219,0 +170731059410,220,0 +170731059460,219,0 +170731059508,219,0 +170731059556,219,0 +170731059604,219,0 +170731059653,219,0 +170731059701,219,0 +170731059749,220,0 +170731059797,220,0 +170731059847,220,0 +170731059894,259,0 +170731059942,263,0 +170731059990,230,0 +170731060040,220,0 +170731060088,219,0 +170731060137,220,0 +170731060187,219,0 +170731060235,219,0 +170731060284,220,0 +170731060332,220,0 +170731060380,219,0 +170731060428,219,0 +170731060476,220,0 +170731060524,219,0 +170731060573,219,0 +170731060623,220,0 +170731060671,220,0 +170731060719,219,0 +170731060767,219,0 +170731060815,220,0 +170731060863,220,0 +170731060910,221,0 +170731060958,259,0 +170731061006,265,0 +170731061054,226,0 +170731061102,220,0 +170731061150,220,0 +170731061198,220,0 +170731061246,220,0 +170731061294,219,0 +170731061342,219,0 +170731061390,219,0 +170731061438,219,0 +170731061488,220,0 +170731061536,220,0 +170731061584,219,0 +170731061632,220,0 +170731061679,219,0 +170731061729,220,0 +170731061777,219,0 +170731061825,220,0 +170731061873,219,0 +170731061921,220,0 +170731061970,221,0 +170731062018,266,0 +170731062066,272,1 +170731062149,220,0 +170731062198,219,0 +170731062246,219,0 +170731062296,219,0 +170731062345,219,0 +170731062393,219,0 +170731062441,220,0 +170731062491,219,0 +170731062540,219,0 +170731062590,219,0 +170731062639,219,0 +170731062687,220,0 +170731062735,220,0 +170731062783,220,0 +170731062831,219,0 +170731062879,220,0 +170731062928,219,0 +170731062976,220,0 +170731063026,244,0 +170731063075,259,0 +170731063123,232,0 +170731063173,221,0 +170731063222,220,0 +170731063272,220,0 +170731063320,220,0 +170731063368,220,0 +170731063417,219,0 +170731063467,220,0 +170731063515,220,0 +170731063563,219,0 +170731063611,220,0 +170731063659,220,0 +170731063708,219,0 +170731063756,219,0 +170731063804,219,0 +170731063852,219,0 +170731063900,219,0 +170731063948,219,0 +170731063998,220,0 +170731064047,220,0 +170731064095,260,0 +170731064143,266,0 +170731064191,226,0 +170731064241,220,0 +170731064290,220,0 +170731064338,220,0 +170731064386,219,0 +170731064435,219,0 +170731064485,219,0 +170731064533,219,0 +170731064581,219,0 +170731064629,219,0 +170731064678,219,0 +170731064726,219,0 +170731064774,219,0 +170731064822,219,0 +170731064872,219,0 +170731064920,219,0 +170731064968,220,0 +170731065016,219,0 +170731065065,219,0 +170731065113,221,0 +170731065163,263,0 +170731065211,273,1 +170731065296,220,0 +170731065343,220,0 +170731065391,219,0 +170731065439,220,0 +170731065487,219,0 +170731065535,220,0 +170731065583,220,0 +170731065631,219,0 +170731065681,220,0 +170731065730,219,0 +170731065778,220,0 +170731065826,219,0 +170731065874,219,0 +170731065922,219,0 +170731065970,219,0 +170731066018,220,0 +170731066066,219,0 +170731066114,220,0 +170731066163,222,0 +170731066211,254,0 +170731066261,277,1 +170731066344,220,0 +170731066393,219,0 +170731066441,220,0 +170731066489,219,0 +170731066537,220,0 +170731066585,219,0 +170731066634,219,0 +170731066684,219,0 +170731066732,219,0 +170731066781,220,0 +170731066831,219,0 +170731066879,219,0 +170731066927,219,0 +170731066976,219,0 +170731067026,219,0 +170731067075,219,0 +170731067125,219,0 +170731067173,220,0 +170731067221,223,0 +170731067269,262,0 +170731067317,262,0 +170731067366,223,0 +170731067414,219,0 +170731067462,219,0 +170731067512,219,0 +170731067560,220,0 +170731067609,219,0 +170731067657,219,0 +170731067705,220,0 +170731067753,219,0 +170731067801,219,0 +170731067849,219,0 +170731067898,219,0 +170731067946,219,0 +170731067994,219,0 +170731068042,220,0 +170731068090,219,0 +170731068138,219,0 +170731068186,219,0 +170731068236,220,0 +170731068285,259,0 +170731068333,266,0 +170731068381,226,0 +170731068431,220,0 +170731068479,219,0 +170731068526,219,0 +170731068574,219,0 +170731068624,219,0 +170731068672,219,0 +170731068721,219,0 +170731068769,219,0 +170731068817,219,0 +170731068865,219,0 +170731068915,219,0 +170731068963,219,0 +170731069012,218,0 +170731069060,219,0 +170731069110,219,0 +170731069158,219,0 +170731069207,219,0 +170731069255,219,0 +170731069304,220,0 +170731069352,260,0 +170731069402,276,1 +170731069485,219,0 +170731069535,219,0 +170731069584,220,0 +170731069632,219,0 +170731069680,219,0 +170731069730,219,0 +170731069779,219,0 +170731069829,219,0 +170731069878,219,0 +170731069928,219,0 +170731069977,219,0 +170731070025,219,0 +170731070073,219,0 +170731070121,219,0 +170731070171,219,0 +170731070219,219,0 +170731070268,219,0 +170731070316,219,0 +170731070364,220,0 +170731070412,251,0 +170731070460,260,0 +170731070510,227,0 +170731070559,219,0 +170731070607,219,0 +170731070656,219,0 +170731070704,219,0 +170731070752,219,0 +170731070802,219,0 +170731070850,219,0 +170731070898,219,0 +170731070946,219,0 +170731070994,218,0 +170731071042,219,0 +170731071090,219,0 +170731071138,219,0 +170731071186,219,0 +170731071234,219,0 +170731071282,219,0 +170731071330,219,0 +170731071378,219,0 +170731071426,226,0 +170731071474,270,1 +170731071551,227,0 +170731071600,219,0 +170731071648,219,0 +170731071696,219,0 +170731071744,219,0 +170731071792,219,0 +170731071842,219,0 +170731071890,219,0 +170731071938,219,0 +170731071986,219,0 +170731072034,219,0 +170731072082,219,0 +170731072130,219,0 +170731072178,219,0 +170731072226,219,0 +170731072273,219,0 +170731072321,219,0 +170731072371,219,0 +170731072419,219,0 +170731072468,222,0 +170731072518,264,0 +170731072566,259,0 +170731072614,222,0 +170731072662,219,0 +170731072710,219,0 +170731072759,219,0 +170731072807,219,0 +170731072857,219,0 +170731072906,219,0 +170731072954,219,0 +170731073002,219,0 +170731073052,219,0 +170731073100,219,0 +170731073148,219,0 +170731073197,219,0 +170731073247,219,0 +170731073295,219,0 +170731073343,219,0 +170731073391,219,0 +170731073440,219,0 +170731073488,219,0 +170731073536,238,0 +170731073584,274,1 +170731073668,223,0 +170731073718,219,0 +170731073766,219,0 +170731073814,219,0 +170731073862,219,0 +170731073910,219,0 +170731073959,219,0 +170731074007,219,0 +170731074055,219,0 +170731074105,219,0 +170731074153,219,0 +170731074201,219,0 +170731074249,219,0 +170731074297,219,0 +170731074345,218,0 +170731074394,219,0 +170731074442,219,0 +170731074490,219,0 +170731074540,220,0 +170731074588,260,0 +170731074637,256,0 +170731074685,228,0 +170731074733,219,0 +170731074781,219,0 +170731074831,219,0 +170731074879,218,0 +170731074927,219,0 +170731074976,219,0 +170731075026,219,0 +170731075074,219,0 +170731075122,219,0 +170731075169,219,0 +170731075217,219,0 +170731075267,219,0 +170731075315,219,0 +170731075364,219,0 +170731075414,219,0 +170731075464,219,0 +170731075512,219,0 +170731075561,220,0 +170731075609,221,0 +170731075657,277,1 +170731075736,229,0 +170731075785,219,0 +170731075833,219,0 +170731075881,219,0 +170731075929,219,0 +170731075977,219,0 +170731076025,219,0 +170731076072,219,0 +170731076120,219,0 +170731076168,219,0 +170731076216,219,0 +170731076264,219,0 +170731076312,219,0 +170731076360,218,0 +170731076408,219,0 +170731076456,218,0 +170731076503,219,0 +170731076551,219,0 +170731076599,219,0 +170731076647,220,0 +170731076695,250,0 +170731076743,263,0 +170731076791,228,0 +170731076839,220,0 +170731076887,219,0 +170731076935,219,0 +170731076982,219,0 +170731077030,219,0 +170731077078,219,0 +170731077126,219,0 +170731077174,219,0 +170731077222,219,0 +170731077272,219,0 +170731077320,219,0 +170731077367,219,0 +170731077415,219,0 +170731077463,219,0 +170731077511,220,0 +170731077559,219,0 +170731077607,220,0 +170731077655,220,0 +170731077703,221,0 +170731077751,268,0 +170731077798,267,0 +170731077846,230,0 +170731077894,220,0 +170731077942,219,0 +170731077992,219,0 +170731078040,219,0 +170731078088,220,0 +170731078137,219,0 +170731078186,219,0 +170731078234,220,0 +170731078282,219,0 +170731078330,219,0 +170731078378,219,0 +170731078428,219,0 +170731078476,219,0 +170731078524,219,0 +170731078572,219,0 +170731078621,220,0 +170731078671,219,0 +170731078719,220,0 +170731078767,225,0 +170731078815,265,0 +170731078862,276,1 +170731078945,219,0 +170731078995,219,0 +170731079044,220,0 +170731079092,219,0 +170731079140,219,0 +170731079188,219,0 +170731079236,218,0 +170731079286,219,0 +170731079334,219,0 +170731079382,220,0 +170731079430,219,0 +170731079478,219,0 +170731079526,219,0 +170731079575,220,0 +170731079625,219,0 +170731079673,219,0 +170731079722,219,0 +170731079772,219,0 +170731079820,221,0 +170731079869,276,1 +170731079949,228,0 +170731079997,219,0 diff --git a/laser_value/0207-23.csv b/laser_value/0207-23.csv new file mode 100644 index 0000000..c96feb6 --- /dev/null +++ b/laser_value/0207-23.csv @@ -0,0 +1,7132 @@ +timestamp,laser_value,event +170731080047,219,0 +170731080095,219,0 +170731080144,219,0 +170731080194,219,0 +170731080242,219,0 +170731080290,220,0 +170731080338,219,0 +170731080386,220,0 +170731080433,219,0 +170731080483,219,0 +170731080533,219,0 +170731080582,219,0 +170731080630,219,0 +170731080678,219,0 +170731080726,219,0 +170731080774,219,0 +170731080821,220,0 +170731080869,222,0 +170731080917,259,0 +170731080965,269,0 +170731081013,222,0 +170731081061,219,0 +170731081109,219,0 +170731081157,219,0 +170731081205,219,0 +170731081253,220,0 +170731081300,219,0 +170731081350,219,0 +170731081400,219,0 +170731081449,219,0 +170731081497,219,0 +170731081546,219,0 +170731081596,219,0 +170731081644,219,0 +170731081692,219,0 +170731081740,219,0 +170731081788,219,0 +170731081837,220,0 +170731081887,220,0 +170731081935,267,0 +170731081984,278,1 +170731082065,220,0 +170731082115,219,0 +170731082163,219,0 +170731082211,219,0 +170731082259,219,0 +170731082307,219,0 +170731082354,219,0 +170731082402,219,0 +170731082450,219,0 +170731082498,219,0 +170731082546,219,0 +170731082594,219,0 +170731082642,220,0 +170731082690,219,0 +170731082738,219,0 +170731082786,219,0 +170731082833,219,0 +170731082881,219,0 +170731082929,220,0 +170731082977,259,0 +170731083025,266,0 +170731083074,227,0 +170731083122,220,0 +170731083172,219,0 +170731083220,219,0 +170731083268,219,0 +170731083317,219,0 +170731083365,219,0 +170731083413,219,0 +170731083463,219,0 +170731083511,220,0 +170731083559,219,0 +170731083608,220,0 +170731083656,220,0 +170731083706,219,0 +170731083754,220,0 +170731083803,219,0 +170731083851,219,0 +170731083901,220,0 +170731083948,219,0 +170731083996,221,0 +170731084046,259,0 +170731084095,286,1 +170731084178,220,0 +170731084226,220,0 +170731084274,220,0 +170731084322,220,0 +170731084370,220,0 +170731084418,219,0 +170731084465,220,0 +170731084513,219,0 +170731084561,219,0 +170731084609,219,0 +170731084657,220,0 +170731084705,220,0 +170731084753,219,0 +170731084801,219,0 +170731084849,219,0 +170731084896,219,0 +170731084944,219,0 +170731084992,220,0 +170731085040,220,0 +170731085088,272,1 +170731085169,226,0 +170731085218,220,0 +170731085266,219,0 +170731085314,220,0 +170731085364,219,0 +170731085413,219,0 +170731085463,220,0 +170731085512,219,0 +170731085562,220,0 +170731085611,219,0 +170731085659,220,0 +170731085709,220,0 +170731085758,220,0 +170731085808,220,0 +170731085856,220,0 +170731085904,220,0 +170731085952,219,0 +170731086001,219,0 +170731086049,220,0 +170731086097,221,0 +170731086145,263,0 +170731086193,284,1 +170731086269,219,0 +170731086319,219,0 +170731086367,219,0 +170731086415,219,0 +170731086463,219,0 +170731086510,219,0 +170731086560,219,0 +170731086608,218,0 +170731086656,219,0 +170731086705,219,0 +170731086753,219,0 +170731086801,219,0 +170731086849,220,0 +170731086899,219,0 +170731086948,219,0 +170731086996,219,0 +170731087044,219,0 +170731087093,219,0 +170731087141,220,0 +170731087189,264,0 +170731087237,264,0 +170731087285,227,0 +170731087333,219,0 +170731087381,219,0 +170731087428,219,0 +170731087476,219,0 +170731087524,219,0 +170731087572,219,0 +170731087620,219,0 +170731087669,220,0 +170731087717,219,0 +170731087765,219,0 +170731087813,219,0 +170731087861,219,0 +170731087909,219,0 +170731087957,219,0 +170731088005,219,0 +170731088053,219,0 +170731088100,219,0 +170731088148,220,0 +170731088196,221,0 +170731088244,273,1 +170731088327,230,0 +170731088375,219,0 +170731088423,220,0 +170731088470,219,0 +170731088518,219,0 +170731088566,219,0 +170731088616,219,0 +170731088664,220,0 +170731088711,220,0 +170731088759,220,0 +170731088807,219,0 +170731088855,220,0 +170731088903,219,0 +170731088951,219,0 +170731088999,220,0 +170731089046,219,0 +170731089094,219,0 +170731089142,219,0 +170731089190,220,0 +170731089238,221,0 +170731089286,263,0 +170731089334,276,1 +170731089412,220,0 +170731089460,220,0 +170731089508,220,0 +170731089556,220,0 +170731089604,219,0 +170731089652,219,0 +170731089700,220,0 +170731089748,219,0 +170731089797,220,0 +170731089845,219,0 +170731089893,219,0 +170731089943,220,0 +170731089991,219,0 +170731090038,219,0 +170731090086,220,0 +170731090134,219,0 +170731090182,219,0 +170731090230,220,0 +170731090278,220,0 +170731090326,258,0 +170731090374,264,0 +170731090422,231,0 +170731090471,220,0 +170731090519,219,0 +170731090567,219,0 +170731090615,219,0 +170731090663,219,0 +170731090713,219,0 +170731090760,220,0 +170731090810,219,0 +170731090858,220,0 +170731090907,219,0 +170731090955,219,0 +170731091003,219,0 +170731091053,219,0 +170731091101,219,0 +170731091149,219,0 +170731091197,219,0 +170731091245,219,0 +170731091294,219,0 +170731091342,221,0 +170731091390,261,0 +170731091438,260,0 +170731091486,228,0 +170731091534,220,0 +170731091582,219,0 +170731091630,219,0 +170731091678,219,0 +170731091726,220,0 +170731091774,219,0 +170731091822,219,0 +170731091871,220,0 +170731091919,219,0 +170731091969,219,0 +170731092017,219,0 +170731092066,219,0 +170731092114,219,0 +170731092162,219,0 +170731092210,219,0 +170731092258,219,0 +170731092307,219,0 +170731092355,219,0 +170731092405,221,0 +170731092453,259,0 +170731092502,263,0 +170731092550,224,0 +170731092600,220,0 +170731092648,219,0 +170731092696,219,0 +170731092744,219,0 +170731092793,219,0 +170731092841,219,0 +170731092889,219,0 +170731092937,219,0 +170731092986,219,0 +170731093034,219,0 +170731093082,219,0 +170731093132,219,0 +170731093180,219,0 +170731093228,219,0 +170731093277,219,0 +170731093327,219,0 +170731093375,220,0 +170731093423,220,0 +170731093470,255,0 +170731093518,265,0 +170731093566,224,0 +170731093616,220,0 +170731093664,219,0 +170731093711,219,0 +170731093761,219,0 +170731093809,219,0 +170731093859,220,0 +170731093908,220,0 +170731093956,219,0 +170731094004,219,0 +170731094052,219,0 +170731094100,219,0 +170731094149,220,0 +170731094197,220,0 +170731094247,219,0 +170731094296,219,0 +170731094344,219,0 +170731094392,220,0 +170731094440,220,0 +170731094490,221,0 +170731094538,278,1 +170731094614,224,0 +170731094662,220,0 +170731094712,219,0 +170731094761,220,0 +170731094809,219,0 +170731094859,219,0 +170731094907,219,0 +170731094956,219,0 +170731095004,220,0 +170731095052,219,0 +170731095100,220,0 +170731095150,219,0 +170731095198,219,0 +170731095246,219,0 +170731095294,219,0 +170731095342,219,0 +170731095391,220,0 +170731095439,219,0 +170731095489,219,0 +170731095538,221,0 +170731095588,256,0 +170731095636,262,0 +170731095684,230,0 +170731095731,219,0 +170731095779,219,0 +170731095827,219,0 +170731095875,219,0 +170731095925,219,0 +170731095973,219,0 +170731096021,219,0 +170731096070,220,0 +170731096120,219,0 +170731096168,219,0 +170731096217,219,0 +170731096267,219,0 +170731096316,219,0 +170731096366,219,0 +170731096414,219,0 +170731096463,219,0 +170731096511,219,0 +170731096559,220,0 +170731096607,227,0 +170731096657,286,1 +170731096744,223,0 +170731096794,219,0 +170731096842,220,0 +170731096890,219,0 +170731096938,219,0 +170731096986,219,0 +170731097034,219,0 +170731097082,219,0 +170731097130,219,0 +170731097179,219,0 +170731097227,219,0 +170731097275,219,0 +170731097323,219,0 +170731097371,219,0 +170731097419,219,0 +170731097467,219,0 +170731097515,219,0 +170731097563,219,0 +170731097611,219,0 +170731097659,238,0 +170731097708,265,0 +170731097758,236,0 +170731097807,220,0 +170731097855,219,0 +170731097903,219,0 +170731097951,219,0 +170731097999,219,0 +170731098047,219,0 +170731098095,219,0 +170731098145,219,0 +170731098194,219,0 +170731098244,219,0 +170731098292,219,0 +170731098340,219,0 +170731098389,219,0 +170731098437,219,0 +170731098485,219,0 +170731098533,219,0 +170731098581,219,0 +170731098629,219,0 +170731098677,220,0 +170731098725,235,0 +170731098773,265,0 +170731098823,223,0 +170731098871,220,0 +170731098919,219,0 +170731098967,219,0 +170731099014,219,0 +170731099064,219,0 +170731099112,219,0 +170731099160,219,0 +170731099208,219,0 +170731099256,219,0 +170731099305,219,0 +170731099353,219,0 +170731099403,219,0 +170731099451,219,0 +170731099499,219,0 +170731099547,219,0 +170731099595,219,0 +170731099643,219,0 +170731099691,219,0 +170731099739,221,0 +170731099787,258,0 +170731099835,256,0 +170731099883,228,0 +170731099931,219,0 +170731099979,219,0 +170731100028,219,0 +170731100076,219,0 +170731100124,219,0 +170731100172,219,0 +170731100220,218,0 +170731100269,219,0 +170731100317,219,0 +170731100367,219,0 +170731100415,218,0 +170731100463,219,0 +170731100511,219,0 +170731100559,218,0 +170731100607,219,0 +170731100656,218,0 +170731100704,219,0 +170731100754,219,0 +170731100803,223,0 +170731100853,263,0 +170731100902,265,0 +170731100952,220,0 +170731101000,219,0 +170731101048,218,0 +170731101096,219,0 +170731101144,219,0 +170731101193,219,0 +170731101241,219,0 +170731101289,218,0 +170731101337,219,0 +170731101385,218,0 +170731101433,218,0 +170731101481,219,0 +170731101529,219,0 +170731101578,219,0 +170731101628,219,0 +170731101676,218,0 +170731101724,219,0 +170731101773,219,0 +170731101823,220,0 +170731101871,229,0 +170731101920,271,1 +170731102007,220,0 +170731102056,218,0 +170731102104,218,0 +170731102152,218,0 +170731102200,219,0 +170731102250,219,0 +170731102299,219,0 +170731102349,219,0 +170731102397,219,0 +170731102445,219,0 +170731102493,219,0 +170731102541,219,0 +170731102589,218,0 +170731102638,219,0 +170731102686,219,0 +170731102736,219,0 +170731102783,219,0 +170731102833,219,0 +170731102883,219,0 +170731102932,256,0 +170731102980,262,0 +170731103030,229,0 +170731103078,219,0 +170731103126,219,0 +170731103173,218,0 +170731103221,218,0 +170731103271,219,0 +170731103319,218,0 +170731103367,219,0 +170731103415,218,0 +170731103463,219,0 +170731103511,218,0 +170731103560,219,0 +170731103608,219,0 +170731103658,219,0 +170731103706,218,0 +170731103754,219,0 +170731103802,219,0 +170731103851,219,0 +170731103899,219,0 +170731103949,221,0 +170731103998,264,0 +170731104048,266,0 +170731104096,222,0 +170731104144,219,0 +170731104193,219,0 +170731104241,219,0 +170731104289,219,0 +170731104339,219,0 +170731104388,219,0 +170731104436,219,0 +170731104486,219,0 +170731104534,219,0 +170731104583,219,0 +170731104632,218,0 +170731104682,219,0 +170731104730,219,0 +170731104780,219,0 +170731104827,219,0 +170731104877,219,0 +170731104925,219,0 +170731104973,220,0 +170731105021,253,0 +170731105069,269,0 +170731105117,229,0 +170731105165,219,0 +170731105213,219,0 +170731105261,219,0 +170731105310,219,0 +170731105360,219,0 +170731105408,219,0 +170731105456,219,0 +170731105505,219,0 +170731105553,219,0 +170731105603,219,0 +170731105652,219,0 +170731105702,219,0 +170731105750,219,0 +170731105798,219,0 +170731105847,219,0 +170731105895,218,0 +170731105943,219,0 +170731105993,219,0 +170731106041,220,0 +170731106090,263,0 +170731106140,277,1 +170731106223,219,0 +170731106271,218,0 +170731106319,219,0 +170731106368,218,0 +170731106418,218,0 +170731106466,218,0 +170731106515,219,0 +170731106565,219,0 +170731106614,219,0 +170731106663,218,0 +170731106711,218,0 +170731106761,218,0 +170731106809,218,0 +170731106857,219,0 +170731106905,218,0 +170731106953,219,0 +170731107001,219,0 +170731107049,219,0 +170731107098,220,0 +170731107146,263,0 +170731107194,281,1 +170731107273,219,0 +170731107321,218,0 +170731107369,218,0 +170731107417,218,0 +170731107466,218,0 +170731107514,219,0 +170731107562,219,0 +170731107610,219,0 +170731107660,218,0 +170731107708,218,0 +170731107757,219,0 +170731107805,218,0 +170731107855,219,0 +170731107903,219,0 +170731107951,219,0 +170731108000,219,0 +170731108048,219,0 +170731108096,219,0 +170731108146,219,0 +170731108194,255,0 +170731108243,259,0 +170731108291,224,0 +170731108339,219,0 +170731108387,218,0 +170731108435,219,0 +170731108483,218,0 +170731108531,219,0 +170731108579,218,0 +170731108627,219,0 +170731108675,219,0 +170731108724,218,0 +170731108772,219,0 +170731108821,218,0 +170731108869,219,0 +170731108919,219,0 +170731108967,219,0 +170731109015,218,0 +170731109064,218,0 +170731109114,219,0 +170731109162,219,0 +170731109210,222,0 +170731109258,276,1 +170731109335,227,0 +170731109382,218,0 +170731109430,218,0 +170731109480,219,0 +170731109528,219,0 +170731109575,219,0 +170731109623,218,0 +170731109671,219,0 +170731109719,219,0 +170731109767,219,0 +170731109816,219,0 +170731109864,219,0 +170731109912,219,0 +170731109962,219,0 +170731110010,219,0 +170731110058,219,0 +170731110105,219,0 +170731110155,219,0 +170731110203,220,0 +170731110251,221,0 +170731110299,274,1 +170731110379,229,0 +170731110427,219,0 +170731110474,219,0 +170731110522,218,0 +170731110570,219,0 +170731110618,219,0 +170731110666,219,0 +170731110714,219,0 +170731110762,219,0 +170731110812,219,0 +170731110861,218,0 +170731110911,219,0 +170731110960,219,0 +170731111010,219,0 +170731111058,219,0 +170731111106,219,0 +170731111154,219,0 +170731111202,219,0 +170731111251,219,0 +170731111299,222,0 +170731111348,266,0 +170731111398,264,0 +170731111447,221,0 +170731111495,219,0 +170731111543,219,0 +170731111591,219,0 +170731111639,219,0 +170731111689,219,0 +170731111737,219,0 +170731111785,219,0 +170731111833,219,0 +170731111881,219,0 +170731111930,219,0 +170731111978,219,0 +170731112026,219,0 +170731112074,219,0 +170731112122,219,0 +170731112170,219,0 +170731112218,218,0 +170731112266,219,0 +170731112314,219,0 +170731112362,245,0 +170731112410,270,1 +170731112490,225,0 +170731112540,218,0 +170731112589,219,0 +170731112637,219,0 +170731112685,219,0 +170731112733,219,0 +170731112781,219,0 +170731112830,219,0 +170731112880,219,0 +170731112928,219,0 +170731112976,219,0 +170731113025,219,0 +170731113075,218,0 +170731113123,219,0 +170731113171,219,0 +170731113219,219,0 +170731113267,219,0 +170731113316,219,0 +170731113364,219,0 +170731113412,236,0 +170731113460,261,0 +170731113508,243,0 +170731113556,221,0 +170731113604,219,0 +170731113652,219,0 +170731113700,219,0 +170731113749,219,0 +170731113797,219,0 +170731113845,219,0 +170731113893,219,0 +170731113941,219,0 +170731113989,219,0 +170731114037,219,0 +170731114085,219,0 +170731114133,219,0 +170731114181,219,0 +170731114229,219,0 +170731114277,219,0 +170731114325,219,0 +170731114374,219,0 +170731114422,220,0 +170731114472,251,0 +170731114520,260,0 +170731114568,223,0 +170731114616,220,0 +170731114663,219,0 +170731114711,219,0 +170731114761,219,0 +170731114809,219,0 +170731114857,219,0 +170731114905,218,0 +170731114954,219,0 +170731115002,218,0 +170731115052,218,0 +170731115100,219,0 +170731115148,219,0 +170731115197,219,0 +170731115247,218,0 +170731115295,219,0 +170731115343,219,0 +170731115392,218,0 +170731115442,219,0 +170731115491,220,0 +170731115539,268,0 +170731115589,282,1 +170731115677,219,0 +170731115725,219,0 +170731115774,219,0 +170731115822,219,0 +170731115870,219,0 +170731115918,219,0 +170731115966,219,0 +170731116014,219,0 +170731116062,219,0 +170731116111,219,0 +170731116159,219,0 +170731116209,219,0 +170731116256,219,0 +170731116306,219,0 +170731116354,219,0 +170731116403,219,0 +170731116451,219,0 +170731116499,219,0 +170731116549,221,0 +170731116597,272,1 +170731116680,229,0 +170731116728,219,0 +170731116776,219,0 +170731116824,219,0 +170731116873,219,0 +170731116921,219,0 +170731116971,219,0 +170731117020,219,0 +170731117070,219,0 +170731117119,219,0 +170731117167,219,0 +170731117215,219,0 +170731117263,219,0 +170731117311,219,0 +170731117361,219,0 +170731117408,219,0 +170731117456,219,0 +170731117506,219,0 +170731117554,220,0 +170731117602,220,0 +170731117650,253,0 +170731117698,266,0 +170731117746,223,0 +170731117794,219,0 +170731117842,219,0 +170731117890,219,0 +170731117939,219,0 +170731117987,219,0 +170731118037,219,0 +170731118085,219,0 +170731118133,219,0 +170731118181,219,0 +170731118229,218,0 +170731118277,219,0 +170731118325,219,0 +170731118372,219,0 +170731118420,219,0 +170731118468,219,0 +170731118516,219,0 +170731118566,219,0 +170731118614,220,0 +170731118662,252,0 +170731118711,268,0 +170731118761,223,0 +170731118809,220,0 +170731118858,219,0 +170731118908,219,0 +170731118956,219,0 +170731119004,219,0 +170731119052,219,0 +170731119100,219,0 +170731119147,220,0 +170731119197,219,0 +170731119245,220,0 +170731119293,219,0 +170731119342,219,0 +170731119390,219,0 +170731119438,219,0 +170731119486,219,0 +170731119536,219,0 +170731119584,219,0 +170731119633,220,0 +170731119681,221,0 +170731119731,251,0 +170731119779,273,1 +170731119866,220,0 +170731119914,219,0 +170731119962,219,0 +170731120010,219,0 +170731120059,220,0 +170731120107,219,0 +170731120157,219,0 +170731120205,219,0 +170731120254,219,0 +170731120302,219,0 +170731120350,219,0 +170731120400,219,0 +170731120448,219,0 +170731120495,219,0 +170731120543,219,0 +170731120591,219,0 +170731120639,220,0 +170731120689,220,0 +170731120738,221,0 +170731120786,255,0 +170731120834,267,0 +170731120882,228,0 +170731120930,220,0 +170731120979,219,0 +170731121029,219,0 +170731121079,220,0 +170731121126,219,0 +170731121174,219,0 +170731121222,219,0 +170731121270,219,0 +170731121318,219,0 +170731121368,219,0 +170731121416,219,0 +170731121464,219,0 +170731121513,219,0 +170731121561,219,0 +170731121611,219,0 +170731121660,219,0 +170731121708,219,0 +170731121756,219,0 +170731121804,222,0 +170731121854,283,1 +170731121940,225,0 +170731121988,219,0 +170731122036,219,0 +170731122084,220,0 +170731122134,219,0 +170731122182,219,0 +170731122231,219,0 +170731122279,219,0 +170731122327,219,0 +170731122375,219,0 +170731122425,219,0 +170731122474,220,0 +170731122522,219,0 +170731122572,219,0 +170731122620,220,0 +170731122668,219,0 +170731122715,219,0 +170731122765,219,0 +170731122813,220,0 +170731122861,250,0 +170731122909,260,0 +170731122957,228,0 +170731123006,220,0 +170731123056,219,0 +170731123104,219,0 +170731123153,219,0 +170731123201,220,0 +170731123249,220,0 +170731123299,219,0 +170731123347,219,0 +170731123395,219,0 +170731123443,219,0 +170731123491,219,0 +170731123540,219,0 +170731123588,220,0 +170731123636,219,0 +170731123685,220,0 +170731123733,219,0 +170731123781,219,0 +170731123829,219,0 +170731123877,220,0 +170731123926,252,0 +170731123974,253,0 +170731124024,228,0 +170731124073,220,0 +170731124122,219,0 +170731124170,219,0 +170731124220,219,0 +170731124270,219,0 +170731124317,219,0 +170731124367,219,0 +170731124415,219,0 +170731124463,219,0 +170731124511,219,0 +170731124560,219,0 +170731124608,219,0 +170731124656,219,0 +170731124704,219,0 +170731124752,219,0 +170731124802,219,0 +170731124851,219,0 +170731124899,219,0 +170731124947,221,0 +170731124997,257,0 +170731125045,268,0 +170731125092,226,0 +170731125142,220,0 +170731125190,219,0 +170731125239,219,0 +170731125289,219,0 +170731125337,219,0 +170731125385,219,0 +170731125434,219,0 +170731125482,219,0 +170731125530,219,0 +170731125578,219,0 +170731125626,219,0 +170731125674,219,0 +170731125722,219,0 +170731125770,218,0 +170731125819,220,0 +170731125867,219,0 +170731125915,219,0 +170731125965,220,0 +170731126014,258,0 +170731126064,275,1 +170731126150,220,0 +170731126200,219,0 +170731126248,219,0 +170731126296,220,0 +170731126345,219,0 +170731126393,219,0 +170731126443,219,0 +170731126492,219,0 +170731126540,219,0 +170731126590,219,0 +170731126639,219,0 +170731126687,219,0 +170731126735,219,0 +170731126784,219,0 +170731126832,219,0 +170731126882,219,0 +170731126930,219,0 +170731126978,219,0 +170731127026,220,0 +170731127074,261,0 +170731127124,262,0 +170731127173,229,0 +170731127223,219,0 +170731127271,219,0 +170731127319,219,0 +170731127368,219,0 +170731127416,219,0 +170731127466,219,0 +170731127513,219,0 +170731127561,219,0 +170731127609,219,0 +170731127659,219,0 +170731127708,219,0 +170731127758,219,0 +170731127807,219,0 +170731127857,219,0 +170731127906,219,0 +170731127954,219,0 +170731128002,219,0 +170731128050,219,0 +170731128098,221,0 +170731128146,253,0 +170731128196,257,0 +170731128244,224,0 +170731128292,219,0 +170731128340,219,0 +170731128389,219,0 +170731128439,219,0 +170731128488,219,0 +170731128536,219,0 +170731128584,219,0 +170731128634,219,0 +170731128682,220,0 +170731128730,219,0 +170731128778,219,0 +170731128826,219,0 +170731128874,219,0 +170731128923,219,0 +170731128973,219,0 +170731129022,219,0 +170731129071,219,0 +170731129121,220,0 +170731129169,256,0 +170731129218,262,0 +170731129266,230,0 +170731129316,219,0 +170731129364,219,0 +170731129412,219,0 +170731129460,219,0 +170731129509,219,0 +170731129557,219,0 +170731129605,219,0 +170731129655,219,0 +170731129703,219,0 +170731129752,219,0 +170731129800,219,0 +170731129848,219,0 +170731129898,219,0 +170731129947,219,0 +170731129995,218,0 +170731130045,219,0 +170731130093,219,0 +170731130141,219,0 +170731130190,221,0 +170731130238,250,0 +170731130286,267,0 +170731130334,223,0 +170731130382,219,0 +170731130430,218,0 +170731130478,219,0 +170731130526,219,0 +170731130576,219,0 +170731130624,219,0 +170731130672,218,0 +170731130721,218,0 +170731130769,218,0 +170731130817,218,0 +170731130865,218,0 +170731130915,219,0 +170731130962,219,0 +170731131012,219,0 +170731131060,219,0 +170731131110,218,0 +170731131157,218,0 +170731131205,219,0 +170731131255,222,0 +170731131303,262,0 +170731131352,234,0 +170731131402,220,0 +170731131452,219,0 +170731131499,219,0 +170731131547,218,0 +170731131595,219,0 +170731131643,219,0 +170731131691,219,0 +170731131741,219,0 +170731131789,219,0 +170731131837,219,0 +170731131885,219,0 +170731131933,219,0 +170731131981,219,0 +170731132029,219,0 +170731132077,219,0 +170731132126,219,0 +170731132174,219,0 +170731132222,219,0 +170731132270,220,0 +170731132318,270,1 +170731132404,224,0 +170731132452,220,0 +170731132500,219,0 +170731132548,219,0 +170731132598,219,0 +170731132646,219,0 +170731132694,219,0 +170731132742,219,0 +170731132791,219,0 +170731132839,219,0 +170731132889,219,0 +170731132938,219,0 +170731132987,219,0 +170731133035,220,0 +170731133083,219,0 +170731133133,219,0 +170731133183,219,0 +170731133230,219,0 +170731133278,220,0 +170731133326,221,0 +170731133374,253,0 +170731133422,276,1 +170731133500,220,0 +170731133548,219,0 +170731133597,220,0 +170731133645,219,0 +170731133695,219,0 +170731133743,220,0 +170731133792,219,0 +170731133842,219,0 +170731133891,220,0 +170731133941,220,0 +170731133990,219,0 +170731134038,219,0 +170731134086,219,0 +170731134134,219,0 +170731134182,220,0 +170731134230,219,0 +170731134278,219,0 +170731134326,220,0 +170731134374,220,0 +170731134422,261,0 +170731134470,266,0 +170731134518,229,0 +170731134566,219,0 +170731134614,219,0 +170731134661,219,0 +170731134709,219,0 +170731134757,219,0 +170731134805,219,0 +170731134855,219,0 +170731134903,219,0 +170731134950,219,0 +170731135000,219,0 +170731135050,219,0 +170731135097,219,0 +170731135145,219,0 +170731135193,219,0 +170731135241,219,0 +170731135291,219,0 +170731135341,219,0 +170731135390,219,0 +170731135438,221,0 +170731135486,272,1 +170731135569,232,0 +170731135619,220,0 +170731135668,219,0 +170731135716,219,0 +170731135764,219,0 +170731135814,219,0 +170731135862,219,0 +170731135911,219,0 +170731135959,219,0 +170731136007,219,0 +170731136055,219,0 +170731136103,220,0 +170731136151,219,0 +170731136199,219,0 +170731136249,219,0 +170731136297,219,0 +170731136345,219,0 +170731136393,219,0 +170731136441,220,0 +170731136490,221,0 +170731136538,250,0 +170731136586,261,0 +170731136634,224,0 +170731136682,219,0 +170731136730,219,0 +170731136779,219,0 +170731136827,219,0 +170731136875,219,0 +170731136923,219,0 +170731136973,219,0 +170731137022,219,0 +170731137070,219,0 +170731137118,219,0 +170731137166,219,0 +170731137214,219,0 +170731137264,219,0 +170731137313,219,0 +170731137361,219,0 +170731137409,219,0 +170731137459,219,0 +170731137508,219,0 +170731137556,239,0 +170731137606,278,1 +170731137688,222,0 +170731137738,219,0 +170731137786,219,0 +170731137833,219,0 +170731137881,219,0 +170731137929,219,0 +170731137979,219,0 +170731138027,219,0 +170731138075,219,0 +170731138123,219,0 +170731138171,219,0 +170731138219,219,0 +170731138267,219,0 +170731138315,219,0 +170731138364,219,0 +170731138412,219,0 +170731138460,219,0 +170731138510,219,0 +170731138558,219,0 +170731138605,241,0 +170731138655,264,0 +170731138703,223,0 +170731138751,220,0 +170731138799,220,0 +170731138847,219,0 +170731138895,219,0 +170731138943,219,0 +170731138991,219,0 +170731139039,219,0 +170731139088,219,0 +170731139138,219,0 +170731139186,219,0 +170731139235,219,0 +170731139283,219,0 +170731139333,219,0 +170731139382,219,0 +170731139432,219,0 +170731139480,219,0 +170731139527,219,0 +170731139575,219,0 +170731139625,220,0 +170731139673,252,0 +170731139721,254,0 +170731139768,228,0 +170731139816,219,0 +170731139864,219,0 +170731139912,219,0 +170731139960,219,0 +170731140008,219,0 +170731140056,219,0 +170731140105,219,0 +170731140153,219,0 +170731140203,219,0 +170731140252,219,0 +170731140300,219,0 +170731140350,219,0 +170731140398,219,0 +170731140447,219,0 +170731140495,218,0 +170731140543,219,0 +170731140593,219,0 +170731140642,219,0 +170731140690,224,0 +170731140738,258,0 +170731140786,239,0 +170731140834,220,0 +170731140882,219,0 +170731140930,218,0 +170731140978,219,0 +170731141026,218,0 +170731141075,218,0 +170731141123,218,0 +170731141171,219,0 +170731141219,219,0 +170731141267,218,0 +170731141315,219,0 +170731141362,219,0 +170731141410,219,0 +170731141458,219,0 +170731141506,220,0 +170731141554,222,0 +170731141603,223,0 +170731141653,227,0 +170731141701,231,0 +170731141749,233,0 +170731141798,252,0 +170731141846,222,0 +170731141894,220,0 +170731141942,219,0 +170731141991,219,0 +170731142039,219,0 +170731142087,219,0 +170731142135,219,0 +170731142183,219,0 +170731142231,219,0 +170731142279,219,0 +170731142328,219,0 +170731142376,219,0 +170731142426,219,0 +170731142475,218,0 +170731142523,219,0 +170731142571,219,0 +170731142619,219,0 +170731142669,220,0 +170731142718,219,0 +170731142766,220,0 +170731142814,256,0 +170731142862,264,0 +170731142911,230,0 +170731142959,219,0 +170731143007,219,0 +170731143055,219,0 +170731143103,219,0 +170731143150,219,0 +170731143200,218,0 +170731143248,219,0 +170731143296,219,0 +170731143344,219,0 +170731143393,219,0 +170731143441,219,0 +170731143489,218,0 +170731143537,219,0 +170731143585,220,0 +170731143634,219,0 +170731143683,220,0 +170731143731,219,0 +170731143779,219,0 +170731143827,220,0 +170731143875,258,0 +170731143923,266,0 +170731143971,228,0 +170731144019,219,0 +170731144066,219,0 +170731144114,219,0 +170731144162,219,0 +170731144210,219,0 +170731144258,219,0 +170731144306,219,0 +170731144354,219,0 +170731144402,219,0 +170731144450,219,0 +170731144497,219,0 +170731144547,219,0 +170731144595,219,0 +170731144643,218,0 +170731144692,219,0 +170731144740,219,0 +170731144788,219,0 +170731144836,219,0 +170731144884,221,0 +170731144931,253,0 +170731144979,269,0 +170731145027,221,0 +170731145075,219,0 +170731145123,219,0 +170731145171,219,0 +170731145219,219,0 +170731145267,219,0 +170731145314,219,0 +170731145362,219,0 +170731145410,219,0 +170731145458,219,0 +170731145508,219,0 +170731145557,219,0 +170731145605,219,0 +170731145653,219,0 +170731145701,219,0 +170731145748,219,0 +170731145798,219,0 +170731145846,220,0 +170731145894,219,0 +170731145941,226,0 +170731145989,256,0 +170731146037,244,0 +170731146085,221,0 +170731146133,220,0 +170731146181,219,0 +170731146229,219,0 +170731146277,219,0 +170731146324,219,0 +170731146372,218,0 +170731146420,219,0 +170731146469,219,0 +170731146517,219,0 +170731146565,219,0 +170731146613,219,0 +170731146661,218,0 +170731146709,219,0 +170731146758,219,0 +170731146808,219,0 +170731146856,219,0 +170731146903,219,0 +170731146951,219,0 +170731146999,239,0 +170731147047,252,0 +170731147095,222,0 +170731147143,219,0 +170731147191,220,0 +170731147239,219,0 +170731147287,219,0 +170731147335,218,0 +170731147383,219,0 +170731147432,220,0 +170731147480,219,0 +170731147528,219,0 +170731147576,219,0 +170731147624,219,0 +170731147672,219,0 +170731147721,219,0 +170731147769,220,0 +170731147817,219,0 +170731147865,219,0 +170731147913,219,0 +170731147962,220,0 +170731148010,220,0 +170731148058,250,0 +170731148108,258,0 +170731148156,227,0 +170731148204,219,0 +170731148252,219,0 +170731148300,219,0 +170731148349,219,0 +170731148397,219,0 +170731148445,219,0 +170731148493,219,0 +170731148541,219,0 +170731148589,219,0 +170731148637,219,0 +170731148685,219,0 +170731148732,219,0 +170731148780,219,0 +170731148828,219,0 +170731148876,219,0 +170731148924,219,0 +170731148974,219,0 +170731149022,219,0 +170731149070,221,0 +170731149119,249,0 +170731149167,268,0 +170731149215,223,0 +170731149263,219,0 +170731149312,219,0 +170731149360,219,0 +170731149408,219,0 +170731149456,219,0 +170731149504,219,0 +170731149554,219,0 +170731149602,219,0 +170731149651,219,0 +170731149699,219,0 +170731149749,219,0 +170731149796,219,0 +170731149844,219,0 +170731149894,219,0 +170731149942,219,0 +170731149990,219,0 +170731150038,219,0 +170731150085,219,0 +170731150135,221,0 +170731150183,250,0 +170731150232,265,0 +170731150282,221,0 +170731150330,219,0 +170731150378,219,0 +170731150426,219,0 +170731150474,219,0 +170731150522,219,0 +170731150571,219,0 +170731150621,219,0 +170731150670,219,0 +170731150720,219,0 +170731150768,218,0 +170731150815,219,0 +170731150865,218,0 +170731150913,219,0 +170731150961,219,0 +170731151009,219,0 +170731151057,218,0 +170731151106,219,0 +170731151154,220,0 +170731151202,259,0 +170731151252,275,1 +170731151335,221,0 +170731151383,219,0 +170731151432,219,0 +170731151480,219,0 +170731151528,219,0 +170731151578,219,0 +170731151625,219,0 +170731151675,219,0 +170731151723,219,0 +170731151772,219,0 +170731151822,219,0 +170731151870,219,0 +170731151918,219,0 +170731151967,219,0 +170731152015,219,0 +170731152063,219,0 +170731152111,219,0 +170731152161,219,0 +170731152210,220,0 +170731152258,250,0 +170731152308,272,1 +170731152386,220,0 +170731152435,219,0 +170731152483,219,0 +170731152533,219,0 +170731152581,218,0 +170731152630,219,0 +170731152678,219,0 +170731152728,219,0 +170731152776,219,0 +170731152824,219,0 +170731152873,219,0 +170731152923,219,0 +170731152972,219,0 +170731153020,219,0 +170731153068,219,0 +170731153116,219,0 +170731153165,219,0 +170731153213,220,0 +170731153261,220,0 +170731153311,258,0 +170731153359,257,0 +170731153407,226,0 +170731153456,219,0 +170731153504,219,0 +170731153552,219,0 +170731153600,219,0 +170731153648,219,0 +170731153696,219,0 +170731153744,218,0 +170731153792,219,0 +170731153840,219,0 +170731153887,219,0 +170731153935,219,0 +170731153983,219,0 +170731154031,219,0 +170731154079,219,0 +170731154127,219,0 +170731154175,218,0 +170731154223,219,0 +170731154270,220,0 +170731154320,220,0 +170731154368,252,0 +170731154416,260,0 +170731154464,223,0 +170731154511,219,0 +170731154559,219,0 +170731154607,219,0 +170731154655,219,0 +170731154703,219,0 +170731154753,219,0 +170731154800,219,0 +170731154848,219,0 +170731154898,219,0 +170731154946,219,0 +170731154994,219,0 +170731155043,219,0 +170731155093,219,0 +170731155142,219,0 +170731155190,219,0 +170731155238,219,0 +170731155286,219,0 +170731155334,220,0 +170731155383,252,0 +170731155433,262,0 +170731155481,222,0 +170731155529,220,0 +170731155577,219,0 +170731155625,219,0 +170731155674,219,0 +170731155722,219,0 +170731155770,219,0 +170731155818,219,0 +170731155866,219,0 +170731155914,219,0 +170731155962,219,0 +170731156012,219,0 +170731156061,219,0 +170731156109,219,0 +170731156159,219,0 +170731156206,219,0 +170731156256,219,0 +170731156304,219,0 +170731156353,219,0 +170731156401,221,0 +170731156451,248,0 +170731156499,261,0 +170731156547,227,0 +170731156595,219,0 +170731156643,219,0 +170731156691,219,0 +170731156740,219,0 +170731156790,219,0 +170731156838,219,0 +170731156886,219,0 +170731156934,219,0 +170731156982,219,0 +170731157030,219,0 +170731157078,219,0 +170731157127,219,0 +170731157175,219,0 +170731157225,220,0 +170731157273,219,0 +170731157322,219,0 +170731157372,219,0 +170731157421,219,0 +170731157469,221,0 +170731157517,247,0 +170731157567,262,0 +170731157615,222,0 +170731157664,219,0 +170731157714,219,0 +170731157761,219,0 +170731157809,219,0 +170731157857,219,0 +170731157905,219,0 +170731157953,219,0 +170731158001,219,0 +170731158049,219,0 +170731158097,219,0 +170731158147,219,0 +170731158196,219,0 +170731158244,219,0 +170731158292,219,0 +170731158340,218,0 +170731158390,219,0 +170731158438,219,0 +170731158486,219,0 +170731158534,251,0 +170731158582,257,0 +170731158629,234,0 +170731158679,220,0 +170731158727,219,0 +170731158777,219,0 +170731158824,219,0 +170731158872,219,0 +170731158920,219,0 +170731158970,219,0 +170731159018,219,0 +170731159066,219,0 +170731159114,219,0 +170731159162,219,0 +170731159210,219,0 +170731159259,219,0 +170731159307,219,0 +170731159355,219,0 +170731159403,219,0 +170731159452,219,0 +170731159500,219,0 +170731159548,220,0 +170731159596,249,0 +170731159644,274,1 +170731159727,219,0 +170731159774,219,0 +170731159822,219,0 +170731159872,219,0 +170731159921,219,0 +170731159971,219,0 +170731160020,219,0 +170731160068,219,0 +170731160116,219,0 +170731160164,219,0 +170731160212,219,0 +170731160260,219,0 +170731160308,219,0 +170731160358,219,0 +170731160407,219,0 +170731160455,219,0 +170731160505,219,0 +170731160552,219,0 +170731160602,220,0 +170731160650,252,0 +170731160699,251,0 +170731160747,225,0 +170731160797,219,0 +170731160846,219,0 +170731160896,219,0 +170731160946,219,0 +170731160994,219,0 +170731161041,219,0 +170731161091,219,0 +170731161139,219,0 +170731161187,218,0 +170731161235,219,0 +170731161284,219,0 +170731161332,219,0 +170731161380,219,0 +170731161428,219,0 +170731161478,219,0 +170731161526,219,0 +170731161575,219,0 +170731161623,220,0 +170731161673,231,0 +170731161722,253,0 +170731161770,232,0 +170731161820,220,0 +170731161869,219,0 +170731161917,219,0 +170731161965,219,0 +170731162015,219,0 +170731162064,219,0 +170731162114,219,0 +170731162163,219,0 +170731162213,219,0 +170731162262,219,0 +170731162310,219,0 +170731162358,219,0 +170731162406,219,0 +170731162456,219,0 +170731162504,219,0 +170731162552,218,0 +170731162601,219,0 +170731162649,219,0 +170731162699,221,0 +170731162747,250,0 +170731162795,269,0 +170731162844,226,0 +170731162892,219,0 +170731162942,219,0 +170731162991,219,0 +170731163039,219,0 +170731163089,219,0 +170731163137,219,0 +170731163185,219,0 +170731163233,218,0 +170731163282,219,0 +170731163332,219,0 +170731163380,219,0 +170731163427,219,0 +170731163475,219,0 +170731163523,219,0 +170731163571,219,0 +170731163619,219,0 +170731163667,219,0 +170731163715,219,0 +170731163763,223,0 +170731163811,258,0 +170731163861,224,0 +170731163909,220,0 +170731163957,219,0 +170731164005,219,0 +170731164053,219,0 +170731164101,219,0 +170731164149,219,0 +170731164198,219,0 +170731164248,218,0 +170731164296,219,0 +170731164345,219,0 +170731164393,219,0 +170731164443,220,0 +170731164490,219,0 +170731164538,219,0 +170731164586,219,0 +170731164634,219,0 +170731164682,219,0 +170731164730,219,0 +170731164778,219,0 +170731164828,254,0 +170731164876,261,0 +170731164924,227,0 +170731164972,220,0 +170731165020,219,0 +170731165069,219,0 +170731165117,219,0 +170731165165,219,0 +170731165213,219,0 +170731165261,219,0 +170731165309,219,0 +170731165358,219,0 +170731165408,219,0 +170731165456,219,0 +170731165504,219,0 +170731165553,219,0 +170731165601,219,0 +170731165649,219,0 +170731165697,219,0 +170731165747,219,0 +170731165795,220,0 +170731165844,220,0 +170731165894,250,0 +170731165943,256,0 +170731165993,224,0 +170731166042,219,0 +170731166090,219,0 +170731166140,218,0 +170731166188,219,0 +170731166237,219,0 +170731166285,219,0 +170731166335,219,0 +170731166383,219,0 +170731166431,219,0 +170731166480,219,0 +170731166528,219,0 +170731166576,219,0 +170731166624,219,0 +170731166672,219,0 +170731166722,219,0 +170731166770,219,0 +170731166819,220,0 +170731166867,220,0 +170731166915,233,0 +170731166965,249,0 +170731167013,222,0 +170731167062,220,0 +170731167110,219,0 +170731167158,219,0 +170731167208,219,0 +170731167256,219,0 +170731167305,219,0 +170731167353,219,0 +170731167401,219,0 +170731167450,219,0 +170731167498,218,0 +170731167546,219,0 +170731167596,219,0 +170731167645,219,0 +170731167695,218,0 +170731167743,219,0 +170731167792,219,0 +170731167842,219,0 +170731167890,219,0 +170731167938,220,0 +170731167986,255,0 +170731168034,253,0 +170731168082,227,0 +170731168131,219,0 +170731168179,219,0 +170731168229,219,0 +170731168278,219,0 +170731168328,219,0 +170731168377,219,0 +170731168425,219,0 +170731168473,219,0 +170731168521,219,0 +170731168569,219,0 +170731168618,219,0 +170731168666,219,0 +170731168714,219,0 +170731168762,219,0 +170731168812,219,0 +170731168860,219,0 +170731168908,219,0 +170731168956,219,0 +170731169004,221,0 +170731169053,247,0 +170731169103,254,0 +170731169151,222,0 +170731169199,219,0 +170731169248,219,0 +170731169298,219,0 +170731169346,219,0 +170731169395,219,0 +170731169443,219,0 +170731169491,219,0 +170731169540,219,0 +170731169588,219,0 +170731169638,219,0 +170731169686,219,0 +170731169735,219,0 +170731169785,219,0 +170731169834,219,0 +170731169882,219,0 +170731169930,219,0 +170731169980,219,0 +170731170028,219,0 +170731170076,219,0 +170731170124,219,0 +170731170173,219,0 +170731170221,219,0 +170731170269,219,0 +170731170317,219,0 +170731170365,219,0 +170731170414,219,0 +170731170462,219,0 +170731170510,219,0 +170731170558,221,0 +170731170606,248,0 +170731170654,256,0 +170731170702,224,0 +170731170752,219,0 +170731170800,219,0 +170731170849,219,0 +170731170897,219,0 +170731170947,219,0 +170731170995,219,0 +170731171043,219,0 +170731171091,219,0 +170731171139,219,0 +170731171188,219,0 +170731171236,219,0 +170731171284,218,0 +170731171332,219,0 +170731171380,219,0 +170731171428,219,0 +170731171476,219,0 +170731171524,219,0 +170731171572,219,0 +170731171620,222,0 +170731171669,258,0 +170731171717,244,0 +170731171765,221,0 +170731171813,219,0 +170731171862,219,0 +170731171912,219,0 +170731171960,219,0 +170731172010,219,0 +170731172057,219,0 +170731172106,219,0 +170731172154,219,0 +170731172202,219,0 +170731172250,219,0 +170731172298,219,0 +170731172346,219,0 +170731172394,218,0 +170731172441,219,0 +170731172489,219,0 +170731172537,219,0 +170731172585,219,0 +170731172633,220,0 +170731172683,251,0 +170731172731,253,0 +170731172780,221,0 +170731172830,220,0 +170731172878,219,0 +170731172927,219,0 +170731172975,219,0 +170731173023,219,0 +170731173071,219,0 +170731173121,219,0 +170731173170,218,0 +170731173218,219,0 +170731173266,219,0 +170731173314,219,0 +170731173362,219,0 +170731173412,219,0 +170731173460,219,0 +170731173509,219,0 +170731173557,218,0 +170731173605,219,0 +170731173653,219,0 +170731173702,220,0 +170731173752,250,0 +170731173800,252,0 +170731173848,227,0 +170731173896,219,0 +170731173944,219,0 +170731173992,219,0 +170731174040,219,0 +170731174088,219,0 +170731174136,219,0 +170731174185,219,0 +170731174235,219,0 +170731174284,219,0 +170731174332,219,0 +170731174380,219,0 +170731174430,219,0 +170731174478,219,0 +170731174526,219,0 +170731174574,219,0 +170731174622,219,0 +170731174671,219,0 +170731174721,220,0 +170731174769,240,0 +170731174817,251,0 +170731174865,233,0 +170731174913,221,0 +170731174961,220,0 +170731175009,219,0 +170731175058,219,0 +170731175106,219,0 +170731175154,219,0 +170731175202,219,0 +170731175250,219,0 +170731175298,219,0 +170731175346,219,0 +170731175395,219,0 +170731175443,219,0 +170731175491,219,0 +170731175539,219,0 +170731175587,219,0 +170731175635,219,0 +170731175683,219,0 +170731175733,219,0 +170731175781,220,0 +170731175829,247,0 +170731175877,251,0 +170731175925,224,0 +170731175973,219,0 +170731176021,219,0 +170731176070,219,0 +170731176118,219,0 +170731176166,218,0 +170731176214,219,0 +170731176262,219,0 +170731176310,219,0 +170731176358,219,0 +170731176406,219,0 +170731176454,219,0 +170731176502,219,0 +170731176551,219,0 +170731176601,219,0 +170731176649,219,0 +170731176697,219,0 +170731176745,219,0 +170731176793,218,0 +170731176842,220,0 +170731176892,247,0 +170731176940,276,1 +170731177026,220,0 +170731177074,219,0 +170731177122,219,0 +170731177170,219,0 +170731177218,219,0 +170731177266,219,0 +170731177314,219,0 +170731177364,219,0 +170731177412,219,0 +170731177460,219,0 +170731177508,219,0 +170731177557,219,0 +170731177605,219,0 +170731177653,219,0 +170731177702,219,0 +170731177752,219,0 +170731177801,219,0 +170731177849,219,0 +170731177899,221,0 +170731177947,248,0 +170731177995,271,1 +170731178076,220,0 +170731178124,219,0 +170731178172,219,0 +170731178221,219,0 +170731178269,219,0 +170731178319,219,0 +170731178367,219,0 +170731178416,219,0 +170731178464,219,0 +170731178512,219,0 +170731178562,219,0 +170731178610,219,0 +170731178658,219,0 +170731178706,219,0 +170731178755,219,0 +170731178803,219,0 +170731178853,219,0 +170731178901,219,0 +170731178950,221,0 +170731178998,251,0 +170731179047,264,0 +170731179095,225,0 +170731179143,219,0 +170731179191,219,0 +170731179239,219,0 +170731179287,219,0 +170731179335,219,0 +170731179383,219,0 +170731179431,219,0 +170731179481,219,0 +170731179528,219,0 +170731179576,219,0 +170731179626,219,0 +170731179674,219,0 +170731179722,219,0 +170731179770,219,0 +170731179819,219,0 +170731179867,219,0 +170731179915,219,0 +170731179963,219,0 +170731180013,221,0 +170731180061,250,0 +170731180110,263,0 +170731180158,225,0 +170731180206,219,0 +170731180254,219,0 +170731180302,219,0 +170731180350,219,0 +170731180400,219,0 +170731180449,219,0 +170731180498,219,0 +170731180546,219,0 +170731180596,219,0 +170731180644,219,0 +170731180692,219,0 +170731180741,219,0 +170731180789,219,0 +170731180839,219,0 +170731180887,219,0 +170731180936,220,0 +170731180986,219,0 +170731181034,220,0 +170731181082,250,0 +170731181130,258,0 +170731181178,228,0 +170731181227,220,0 +170731181275,219,0 +170731181323,219,0 +170731181373,219,0 +170731181421,219,0 +170731181469,219,0 +170731181518,219,0 +170731181566,219,0 +170731181614,219,0 +170731181662,219,0 +170731181710,219,0 +170731181760,219,0 +170731181808,219,0 +170731181857,219,0 +170731181905,219,0 +170731181955,219,0 +170731182003,219,0 +170731182052,220,0 +170731182102,221,0 +170731182151,254,0 +170731182201,265,0 +170731182249,223,0 +170731182298,220,0 +170731182346,219,0 +170731182394,219,0 +170731182442,220,0 +170731182490,219,0 +170731182538,220,0 +170731182586,219,0 +170731182634,219,0 +170731182683,219,0 +170731182733,219,0 +170731182781,219,0 +170731182830,219,0 +170731182878,219,0 +170731182928,219,0 +170731182977,219,0 +170731183025,219,0 +170731183075,219,0 +170731183124,220,0 +170731183172,237,0 +170731183220,253,0 +170731183270,223,0 +170731183319,220,0 +170731183367,219,0 +170731183415,220,0 +170731183465,220,0 +170731183513,219,0 +170731183560,219,0 +170731183610,219,0 +170731183660,219,0 +170731183707,219,0 +170731183757,220,0 +170731183805,219,0 +170731183853,219,0 +170731183901,219,0 +170731183948,220,0 +170731183996,219,0 +170731184044,219,0 +170731184094,220,0 +170731184142,220,0 +170731184189,220,0 +170731184237,249,0 +170731184285,259,0 +170731184333,229,0 +170731184381,220,0 +170731184429,219,0 +170731184477,219,0 +170731184524,219,0 +170731184572,220,0 +170731184622,219,0 +170731184671,219,0 +170731184721,219,0 +170731184769,219,0 +170731184817,220,0 +170731184866,219,0 +170731184914,220,0 +170731184962,219,0 +170731185011,219,0 +170731185061,219,0 +170731185109,219,0 +170731185157,219,0 +170731185205,220,0 +170731185253,222,0 +170731185300,248,0 +170731185348,259,0 +170731185396,223,0 +170731185444,220,0 +170731185492,220,0 +170731185541,219,0 +170731185589,220,0 +170731185637,219,0 +170731185685,220,0 +170731185733,219,0 +170731185781,220,0 +170731185830,220,0 +170731185878,219,0 +170731185926,220,0 +170731185974,220,0 +170731186022,219,0 +170731186070,220,0 +170731186118,219,0 +170731186165,220,0 +170731186213,219,0 +170731186261,219,0 +170731186309,223,0 +170731186357,254,0 +170731186405,264,0 +170731186453,224,0 +170731186501,219,0 +170731186548,220,0 +170731186596,219,0 +170731186644,219,0 +170731186692,219,0 +170731186740,219,0 +170731186788,219,0 +170731186836,219,0 +170731186884,220,0 +170731186932,220,0 +170731186979,220,0 +170731187027,219,0 +170731187077,220,0 +170731187126,219,0 +170731187174,219,0 +170731187222,219,0 +170731187270,219,0 +170731187318,220,0 +170731187368,255,0 +170731187416,250,0 +170731187464,222,0 +170731187511,220,0 +170731187559,220,0 +170731187607,219,0 +170731187655,219,0 +170731187703,219,0 +170731187751,219,0 +170731187799,220,0 +170731187847,219,0 +170731187896,219,0 +170731187944,219,0 +170731187992,219,0 +170731188040,219,0 +170731188088,219,0 +170731188136,219,0 +170731188183,219,0 +170731188231,219,0 +170731188279,219,0 +170731188327,220,0 +170731188375,220,0 +170731188423,244,0 +170731188471,247,0 +170731188519,221,0 +170731188568,220,0 +170731188618,220,0 +170731188666,219,0 +170731188715,219,0 +170731188763,219,0 +170731188811,219,0 +170731188860,219,0 +170731188908,220,0 +170731188956,219,0 +170731189004,219,0 +170731189052,220,0 +170731189100,219,0 +170731189148,219,0 +170731189196,220,0 +170731189244,219,0 +170731189292,219,0 +170731189340,219,0 +170731189389,220,0 +170731189437,221,0 +170731189487,248,0 +170731189535,261,0 +170731189583,227,0 +170731189631,219,0 +170731189680,220,0 +170731189728,220,0 +170731189776,219,0 +170731189825,219,0 +170731189875,219,0 +170731189922,219,0 +170731189970,219,0 +170731190018,219,0 +170731190066,219,0 +170731190114,219,0 +170731190162,219,0 +170731190210,220,0 +170731190259,220,0 +170731190307,219,0 +170731190355,219,0 +170731190403,219,0 +170731190452,219,0 +170731190500,221,0 +170731190550,262,0 +170731190598,270,1 +170731190686,219,0 +170731190734,219,0 +170731190782,219,0 +170731190830,219,0 +170731190880,219,0 +170731190929,219,0 +170731190977,219,0 +170731191025,219,0 +170731191075,219,0 +170731191124,219,0 +170731191172,219,0 +170731191220,219,0 +170731191269,219,0 +170731191317,219,0 +170731191367,219,0 +170731191415,219,0 +170731191463,219,0 +170731191511,220,0 +170731191559,226,0 +170731191608,257,0 +170731191656,239,0 +170731191706,220,0 +170731191754,219,0 +170731191802,219,0 +170731191850,219,0 +170731191898,219,0 +170731191947,219,0 +170731191997,220,0 +170731192045,219,0 +170731192093,219,0 +170731192140,219,0 +170731192190,219,0 +170731192238,219,0 +170731192287,219,0 +170731192335,220,0 +170731192383,219,0 +170731192433,219,0 +170731192481,219,0 +170731192530,220,0 +170731192580,220,0 +170731192628,248,0 +170731192677,270,1 +170731192763,221,0 +170731192813,219,0 +170731192861,219,0 +170731192909,219,0 +170731192957,220,0 +170731193005,219,0 +170731193053,218,0 +170731193101,219,0 +170731193149,220,0 +170731193197,219,0 +170731193246,219,0 +170731193296,219,0 +170731193345,219,0 +170731193395,219,0 +170731193443,220,0 +170731193492,219,0 +170731193540,220,0 +170731193588,220,0 +170731193636,221,0 +170731193684,265,0 +170731193732,252,0 +170731193780,227,0 +170731193830,220,0 +170731193877,219,0 +170731193925,219,0 +170731193973,220,0 +170731194021,219,0 +170731194071,219,0 +170731194120,220,0 +170731194168,219,0 +170731194216,220,0 +170731194263,219,0 +170731194311,219,0 +170731194359,219,0 +170731194407,219,0 +170731194455,219,0 +170731194503,219,0 +170731194553,219,0 +170731194601,219,0 +170731194649,220,0 +170731194698,221,0 +170731194747,249,0 +170731194795,265,0 +170731194843,223,0 +170731194891,220,0 +170731194939,219,0 +170731194989,219,0 +170731195038,219,0 +170731195088,219,0 +170731195136,219,0 +170731195184,220,0 +170731195233,220,0 +170731195283,220,0 +170731195331,219,0 +170731195379,219,0 +170731195427,219,0 +170731195475,219,0 +170731195523,219,0 +170731195572,219,0 +170731195620,219,0 +170731195668,219,0 +170731195718,220,0 +170731195765,225,0 +170731195813,246,0 +170731195861,238,0 +170731195911,221,0 +170731195959,220,0 +170731196007,219,0 +170731196055,219,0 +170731196103,219,0 +170731196151,219,0 +170731196200,220,0 +170731196248,219,0 +170731196296,220,0 +170731196344,219,0 +170731196392,220,0 +170731196442,219,0 +170731196490,219,0 +170731196538,219,0 +170731196585,219,0 +170731196633,219,0 +170731196681,220,0 +170731196729,220,0 +170731196777,220,0 +170731196825,247,0 +170731196874,259,0 +170731196922,229,0 +170731196970,220,0 +170731197018,219,0 +170731197067,219,0 +170731197115,219,0 +170731197163,219,0 +170731197211,219,0 +170731197259,219,0 +170731197307,219,0 +170731197355,220,0 +170731197403,219,0 +170731197451,219,0 +170731197499,220,0 +170731197547,219,0 +170731197595,219,0 +170731197642,219,0 +170731197690,219,0 +170731197738,219,0 +170731197786,220,0 +170731197834,221,0 +170731197883,249,0 +170731197931,253,0 +170731197979,227,0 +170731198027,219,0 +170731198075,219,0 +170731198123,219,0 +170731198171,219,0 +170731198218,219,0 +170731198266,219,0 +170731198316,219,0 +170731198364,220,0 +170731198413,219,0 +170731198461,219,0 +170731198511,219,0 +170731198560,220,0 +170731198608,219,0 +170731198658,219,0 +170731198707,219,0 +170731198757,220,0 +170731198806,219,0 +170731198854,220,0 +170731198902,222,0 +170731198952,246,0 +170731199000,252,0 +170731199048,223,0 +170731199097,220,0 +170731199147,219,0 +170731199195,219,0 +170731199243,219,0 +170731199290,219,0 +170731199338,219,0 +170731199386,219,0 +170731199436,219,0 +170731199484,219,0 +170731199532,220,0 +170731199580,219,0 +170731199628,219,0 +170731199677,219,0 +170731199725,219,0 +170731199775,219,0 +170731199823,220,0 +170731199872,219,0 +170731199920,221,0 +170731199968,248,0 +170731200017,253,0 +170731200065,228,0 +170731200113,220,0 +170731200161,219,0 +170731200209,219,0 +170731200257,220,0 +170731200305,220,0 +170731200353,219,0 +170731200401,219,0 +170731200449,219,0 +170731200496,219,0 +170731200544,219,0 +170731200594,219,0 +170731200642,219,0 +170731200690,219,0 +170731200739,220,0 +170731200789,219,0 +170731200838,219,0 +170731200886,220,0 +170731200934,220,0 +170731200982,221,0 +170731201030,252,0 +170731201080,252,0 +170731201128,226,0 +170731201177,220,0 +170731201225,220,0 +170731201273,219,0 +170731201321,219,0 +170731201369,220,0 +170731201419,219,0 +170731201467,220,0 +170731201515,219,0 +170731201563,219,0 +170731201612,220,0 +170731201660,219,0 +170731201708,219,0 +170731201758,220,0 +170731201805,219,0 +170731201853,219,0 +170731201901,219,0 +170731201949,219,0 +170731201999,220,0 +170731202047,221,0 +170731202095,251,0 +170731202143,273,1 +170731202236,219,0 +170731202285,219,0 +170731202333,220,0 +170731202383,219,0 +170731202431,219,0 +170731202479,219,0 +170731202527,219,0 +170731202575,219,0 +170731202624,219,0 +170731202674,219,0 +170731202723,219,0 +170731202773,220,0 +170731202822,219,0 +170731202872,220,0 +170731202921,219,0 +170731202969,219,0 +170731203017,220,0 +170731203065,219,0 +170731203114,244,0 +170731203162,254,0 +170731203210,226,0 +170731203258,221,0 +170731203306,219,0 +170731203354,219,0 +170731203402,220,0 +170731203450,219,0 +170731203500,219,0 +170731203548,219,0 +170731203597,219,0 +170731203645,219,0 +170731203693,220,0 +170731203741,219,0 +170731203789,219,0 +170731203837,220,0 +170731203885,219,0 +170731203934,219,0 +170731203982,219,0 +170731204030,219,0 +170731204078,220,0 +170731204127,221,0 +170731204175,247,0 +170731204225,265,0 +170731204273,227,0 +170731204320,220,0 +170731204368,219,0 +170731204418,220,0 +170731204467,219,0 +170731204515,219,0 +170731204563,219,0 +170731204613,219,0 +170731204662,219,0 +170731204712,220,0 +170731204761,219,0 +170731204811,219,0 +170731204859,219,0 +170731204907,219,0 +170731204956,219,0 +170731205004,219,0 +170731205052,220,0 +170731205100,220,0 +170731205149,220,0 +170731205197,222,0 +170731205247,256,0 +170731205296,252,0 +170731205344,223,0 +170731205392,220,0 +170731205442,220,0 +170731205490,219,0 +170731205539,219,0 +170731205587,220,0 +170731205637,220,0 +170731205686,219,0 +170731205736,219,0 +170731205785,219,0 +170731205833,219,0 +170731205881,220,0 +170731205931,219,0 +170731205979,220,0 +170731206027,219,0 +170731206075,219,0 +170731206122,219,0 +170731206172,220,0 +170731206222,220,0 +170731206270,251,0 +170731206317,265,0 +170731206365,224,0 +170731206413,220,0 +170731206461,219,0 +170731206509,219,0 +170731206557,219,0 +170731206607,220,0 +170731206655,219,0 +170731206703,219,0 +170731206751,219,0 +170731206800,219,0 +170731206850,219,0 +170731206898,220,0 +170731206946,219,0 +170731206995,219,0 +170731207043,219,0 +170731207093,219,0 +170731207141,219,0 +170731207189,219,0 +170731207238,220,0 +170731207286,222,0 +170731207336,255,0 +170731207385,263,0 +170731207433,223,0 +170731207481,220,0 +170731207529,220,0 +170731207577,220,0 +170731207625,219,0 +170731207675,219,0 +170731207724,220,0 +170731207774,219,0 +170731207822,219,0 +170731207871,219,0 +170731207919,220,0 +170731207967,219,0 +170731208017,220,0 +170731208066,219,0 +170731208114,219,0 +170731208162,219,0 +170731208210,219,0 +170731208259,220,0 +170731208307,220,0 +170731208355,287,1 +170731208443,229,0 +170731208493,221,0 +170731208541,220,0 +170731208589,219,0 +170731208637,219,0 +170731208686,220,0 +170731208736,219,0 +170731208785,220,0 +170731208833,219,0 +170731208881,219,0 +170731208931,219,0 +170731208979,219,0 +170731209027,219,0 +170731209075,220,0 +170731209122,219,0 +170731209172,219,0 +170731209220,219,0 +170731209269,220,0 +170731209319,220,0 +170731209367,220,0 +170731209416,253,0 +170731209464,265,0 +170731209512,229,0 +170731209562,220,0 +170731209610,219,0 +170731209659,220,0 +170731209709,220,0 +170731209758,219,0 +170731209806,219,0 +170731209854,219,0 +170731209902,219,0 +170731209952,219,0 +170731210000,219,0 +170731210049,219,0 +170731210099,219,0 +170731210148,219,0 +170731210196,219,0 +170731210246,220,0 +170731210294,219,0 +170731210343,219,0 +170731210391,220,0 +170731210439,223,0 +170731210487,258,0 +170731210535,265,0 +170731210584,222,0 +170731210632,220,0 +170731210682,219,0 +170731210730,219,0 +170731210779,219,0 +170731210827,219,0 +170731210875,219,0 +170731210923,219,0 +170731210971,219,0 +170731211021,219,0 +170731211070,219,0 +170731211118,219,0 +170731211166,219,0 +170731211216,219,0 +170731211264,219,0 +170731211313,219,0 +170731211361,219,0 +170731211409,219,0 +170731211457,220,0 +170731211505,265,0 +170731211553,262,0 +170731211601,224,0 +170731211650,220,0 +170731211698,219,0 +170731211748,220,0 +170731211797,220,0 +170731211847,219,0 +170731211896,219,0 +170731211944,219,0 +170731211992,219,0 +170731212040,220,0 +170731212088,219,0 +170731212136,220,0 +170731212184,219,0 +170731212232,220,0 +170731212281,219,0 +170731212329,220,0 +170731212379,220,0 +170731212427,220,0 +170731212475,220,0 +170731212523,221,0 +170731212572,256,0 +170731212620,264,0 +170731212668,228,0 +170731212718,219,0 +170731212766,219,0 +170731212815,219,0 +170731212865,220,0 +170731212913,219,0 +170731212962,220,0 +170731213012,219,0 +170731213060,219,0 +170731213108,219,0 +170731213157,219,0 +170731213205,219,0 +170731213253,220,0 +170731213303,219,0 +170731213352,219,0 +170731213400,220,0 +170731213448,220,0 +170731213497,220,0 +170731213545,220,0 +170731213593,244,0 +170731213641,257,0 +170731213691,228,0 +170731213740,220,0 +170731213788,219,0 +170731213838,219,0 +170731213887,219,0 +170731213935,219,0 +170731213983,219,0 +170731214031,220,0 +170731214080,219,0 +170731214128,219,0 +170731214176,219,0 +170731214224,219,0 +170731214274,219,0 +170731214322,219,0 +170731214370,219,0 +170731214417,220,0 +170731214465,220,0 +170731214513,220,0 +170731214563,219,0 +170731214612,220,0 +170731214662,251,0 +170731214710,275,1 +170731214793,220,0 +170731214841,219,0 +170731214890,219,0 +170731214938,219,0 +170731214986,219,0 +170731215036,219,0 +170731215085,219,0 +170731215133,219,0 +170731215181,219,0 +170731215229,220,0 +170731215279,219,0 +170731215326,219,0 +170731215374,219,0 +170731215424,219,0 +170731215474,219,0 +170731215521,219,0 +170731215569,220,0 +170731215619,220,0 +170731215668,221,0 +170731215716,247,0 +170731215764,266,0 +170731215812,228,0 +170731215860,219,0 +170731215910,219,0 +170731215958,220,0 +170731216007,219,0 +170731216055,220,0 +170731216103,219,0 +170731216151,219,0 +170731216199,219,0 +170731216247,220,0 +170731216297,219,0 +170731216346,219,0 +170731216396,219,0 +170731216444,220,0 +170731216493,219,0 +170731216543,219,0 +170731216591,219,0 +170731216640,220,0 +170731216688,219,0 +170731216737,223,0 +170731216785,259,0 +170731216833,265,0 +170731216881,222,0 +170731216931,219,0 +170731216980,220,0 +170731217030,219,0 +170731217078,220,0 +170731217127,219,0 +170731217175,219,0 +170731217225,220,0 +170731217273,219,0 +170731217322,220,0 +170731217370,219,0 +170731217418,219,0 +170731217466,219,0 +170731217516,219,0 +170731217564,219,0 +170731217613,219,0 +170731217661,219,0 +170731217709,219,0 +170731217757,220,0 +170731217805,253,0 +170731217853,265,0 +170731217901,224,0 +170731217948,220,0 +170731217996,219,0 +170731218044,220,0 +170731218092,220,0 +170731218140,219,0 +170731218188,220,0 +170731218236,219,0 +170731218285,219,0 +170731218333,219,0 +170731218383,219,0 +170731218432,219,0 +170731218482,219,0 +170731218530,220,0 +170731218577,219,0 +170731218627,219,0 +170731218675,219,0 +170731218723,219,0 +170731218772,220,0 +170731218822,221,0 +170731218870,263,0 +170731218919,279,1 +170731219001,219,0 +170731219051,219,0 +170731219099,219,0 +170731219148,219,0 +170731219198,219,0 +170731219246,219,0 +170731219294,219,0 +170731219343,219,0 +170731219393,220,0 +170731219441,219,0 +170731219489,219,0 +170731219537,219,0 +170731219585,219,0 +170731219633,219,0 +170731219680,219,0 +170731219730,220,0 +170731219780,220,0 +170731219829,220,0 +170731219877,222,0 +170731219925,269,0 +170731219974,273,1 +170731220058,220,0 +170731220107,220,0 +170731220155,219,0 +170731220203,219,0 +170731220251,219,0 +170731220299,219,0 +170731220347,219,0 +170731220397,219,0 +170731220445,219,0 +170731220494,220,0 +170731220542,218,0 +170731220592,219,0 +170731220640,220,0 +170731220689,220,0 +170731220737,219,0 +170731220787,219,0 +170731220835,220,0 +170731220884,220,0 +170731220934,223,0 +170731220982,263,0 +170731221030,263,0 +170731221078,222,0 +170731221127,219,0 +170731221175,220,0 +170731221223,219,0 +170731221271,220,0 +170731221319,219,0 +170731221368,219,0 +170731221416,219,0 +170731221466,219,0 +170731221514,219,0 +170731221562,220,0 +170731221611,220,0 +170731221659,219,0 +170731221709,219,0 +170731221759,219,0 +170731221806,219,0 +170731221854,219,0 +170731221904,220,0 +170731221953,220,0 +170731222001,254,0 +170731222049,253,0 +170731222097,227,0 +170731222147,220,0 +170731222195,220,0 +170731222244,219,0 +170731222292,219,0 +170731222340,220,0 +170731222388,219,0 +170731222436,219,0 +170731222484,219,0 +170731222532,219,0 +170731222579,219,0 +170731222627,219,0 +170731222675,220,0 +170731222725,219,0 +170731222774,220,0 +170731222822,220,0 +170731222870,219,0 +170731222918,219,0 +170731222966,220,0 +170731223014,221,0 +170731223062,266,0 +170731223110,277,1 +170731223196,220,0 +170731223244,219,0 +170731223292,219,0 +170731223339,219,0 +170731223387,219,0 +170731223437,219,0 +170731223485,219,0 +170731223534,219,0 +170731223584,219,0 +170731223633,219,0 +170731223681,220,0 +170731223731,219,0 +170731223780,220,0 +170731223830,220,0 +170731223879,220,0 +170731223927,219,0 +170731223975,219,0 +170731224023,220,0 +170731224071,220,0 +170731224119,264,0 +170731224167,267,0 +170731224216,229,0 +170731224264,220,0 +170731224312,219,0 +170731224360,219,0 +170731224410,219,0 +170731224459,220,0 +170731224507,219,0 +170731224555,220,0 +170731224603,219,0 +170731224653,219,0 +170731224700,219,0 +170731224750,219,0 +170731224798,219,0 +170731224846,219,0 +170731224896,219,0 +170731224944,219,0 +170731224991,220,0 +170731225041,219,0 +170731225089,220,0 +170731225137,221,0 +170731225185,261,0 +170731225234,264,0 +170731225282,223,0 +170731225330,219,0 +170731225378,219,0 +170731225426,219,0 +170731225474,219,0 +170731225522,219,0 +170731225570,219,0 +170731225619,219,0 +170731225667,219,0 +170731225715,220,0 +170731225763,219,0 +170731225811,220,0 +170731225859,219,0 +170731225907,219,0 +170731225955,220,0 +170731226004,219,0 +170731226052,220,0 +170731226100,219,0 +170731226148,220,0 +170731226196,256,0 +170731226243,254,0 +170731226291,230,0 +170731226339,220,0 +170731226387,219,0 +170731226437,219,0 +170731226486,219,0 +170731226534,219,0 +170731226584,219,0 +170731226633,220,0 +170731226681,219,0 +170731226731,219,0 +170731226779,219,0 +170731226827,219,0 +170731226876,219,0 +170731226924,219,0 +170731226972,220,0 +170731227020,219,0 +170731227068,219,0 +170731227116,219,0 +170731227164,219,0 +170731227212,220,0 +170731227260,258,0 +170731227308,272,1 +170731227398,220,0 +170731227446,219,0 +170731227495,220,0 +170731227543,220,0 +170731227591,219,0 +170731227641,219,0 +170731227689,219,0 +170731227738,220,0 +170731227788,219,0 +170731227836,219,0 +170731227885,219,0 +170731227933,219,0 +170731227983,220,0 +170731228031,219,0 +170731228079,220,0 +170731228126,219,0 +170731228174,219,0 +170731228222,220,0 +170731228270,221,0 +170731228320,247,0 +170731228369,277,1 +170731228456,220,0 +170731228506,220,0 +170731228554,219,0 +170731228601,219,0 +170731228649,219,0 +170731228697,220,0 +170731228745,220,0 +170731228793,219,0 +170731228841,220,0 +170731228889,219,0 +170731228938,220,0 +170731228986,219,0 +170731229035,220,0 +170731229083,219,0 +170731229131,219,0 +170731229179,219,0 +170731229227,219,0 +170731229275,220,0 +170731229323,222,0 +170731229371,264,0 +170731229419,281,1 +170731229504,220,0 +170731229552,220,0 +170731229600,220,0 +170731229648,219,0 +170731229697,219,0 +170731229745,220,0 +170731229793,220,0 +170731229841,219,0 +170731229889,220,0 +170731229937,220,0 +170731229985,219,0 +170731230035,219,0 +170731230084,219,0 +170731230132,219,0 +170731230180,219,0 +170731230228,220,0 +170731230276,220,0 +170731230324,220,0 +170731230372,221,0 +170731230421,246,0 +170731230469,282,1 +170731230554,220,0 +170731230602,220,0 +170731230650,219,0 +170731230698,219,0 +170731230745,220,0 +170731230793,220,0 +170731230841,220,0 +170731230889,220,0 +170731230937,220,0 +170731230985,219,0 +170731231033,219,0 +170731231082,219,0 +170731231130,220,0 +170731231180,220,0 +170731231228,219,0 +170731231277,219,0 +170731231327,219,0 +170731231375,219,0 +170731231423,221,0 +170731231472,268,0 +170731231522,270,1 +170731231608,220,0 +170731231656,219,0 +170731231704,220,0 +170731231752,220,0 +170731231800,219,0 +170731231848,219,0 +170731231897,219,0 +170731231945,219,0 +170731231995,219,0 +170731232043,219,0 +170731232091,219,0 +170731232138,220,0 +170731232186,219,0 +170731232234,219,0 +170731232282,219,0 +170731232330,219,0 +170731232378,220,0 +170731232427,220,0 +170731232475,221,0 +170731232523,268,0 +170731232573,272,1 +170731232659,220,0 +170731232707,219,0 +170731232755,220,0 +170731232803,220,0 +170731232851,219,0 +170731232899,219,0 +170731232947,220,0 +170731232995,219,0 +170731233044,219,0 +170731233092,220,0 +170731233140,220,0 +170731233188,220,0 +170731233236,219,0 +170731233284,219,0 +170731233334,220,0 +170731233383,219,0 +170731233431,220,0 +170731233481,220,0 +170731233530,222,0 +170731233578,270,1 +170731233661,231,0 +170731233709,220,0 +170731233757,219,0 +170731233805,219,0 +170731233853,219,0 +170731233901,219,0 +170731233949,220,0 +170731233997,219,0 +170731234047,219,0 +170731234095,219,0 +170731234143,219,0 +170731234192,219,0 +170731234240,219,0 +170731234288,219,0 +170731234336,220,0 +170731234386,219,0 +170731234434,219,0 +170731234482,220,0 +170731234529,219,0 +170731234579,221,0 +170731234629,253,0 +170731234678,256,0 +170731234726,223,0 +170731234774,219,0 +170731234823,220,0 +170731234873,220,0 +170731234921,219,0 +170731234970,219,0 +170731235020,219,0 +170731235068,220,0 +170731235116,219,0 +170731235164,219,0 +170731235212,220,0 +170731235260,220,0 +170731235308,219,0 +170731235356,219,0 +170731235405,219,0 +170731235453,220,0 +170731235503,219,0 +170731235551,219,0 +170731235598,220,0 +170731235646,252,0 +170731235696,280,1 +170731235779,221,0 +170731235827,219,0 +170731235875,219,0 +170731235923,220,0 +170731235971,219,0 +170731236019,220,0 +170731236067,219,0 +170731236115,219,0 +170731236164,219,0 +170731236212,219,0 +170731236260,219,0 +170731236308,220,0 +170731236356,219,0 +170731236403,220,0 +170731236451,219,0 +170731236499,219,0 +170731236547,220,0 +170731236595,219,0 +170731236643,220,0 +170731236691,224,0 +170731236739,275,1 +170731236819,227,0 +170731236867,220,0 +170731236916,219,0 +170731236964,219,0 +170731237012,219,0 +170731237061,220,0 +170731237109,220,0 +170731237159,219,0 +170731237206,219,0 +170731237254,220,0 +170731237302,219,0 +170731237350,220,0 +170731237399,219,0 +170731237447,219,0 +170731237495,220,0 +170731237543,219,0 +170731237591,219,0 +170731237639,220,0 +170731237687,220,0 +170731237735,229,0 +170731237782,269,0 +170731237830,244,0 +170731237880,223,0 +170731237928,219,0 +170731237975,220,0 +170731238023,219,0 +170731238073,219,0 +170731238121,219,0 +170731238168,220,0 +170731238216,219,0 +170731238264,219,0 +170731238312,220,0 +170731238360,219,0 +170731238409,219,0 +170731238457,220,0 +170731238507,220,0 +170731238555,219,0 +170731238602,220,0 +170731238650,220,0 +170731238698,220,0 +170731238746,220,0 +170731238794,233,0 +170731238844,275,1 +170731238932,222,0 +170731238982,220,0 +170731239030,220,0 +170731239078,219,0 +170731239125,219,0 +170731239173,220,0 +170731239221,220,0 +170731239269,219,0 +170731239317,219,0 +170731239365,220,0 +170731239414,220,0 +170731239462,219,0 +170731239510,220,0 +170731239558,219,0 +170731239606,220,0 +170731239654,219,0 +170731239702,220,0 +170731239749,220,0 +170731239799,220,0 +170731239847,229,0 +170731239895,263,0 +170731239943,240,0 +170731239990,222,0 +170731240040,220,0 +170731240089,220,0 +170731240137,220,0 +170731240185,220,0 +170731240235,220,0 +170731240283,219,0 +170731240332,220,0 +170731240380,220,0 +170731240428,220,0 +170731240476,219,0 +170731240523,220,0 +170731240571,219,0 +170731240619,219,0 +170731240667,219,0 +170731240716,220,0 +170731240764,220,0 +170731240814,219,0 +170731240862,220,0 +170731240910,252,0 +170731240957,264,0 +170731241005,232,0 +170731241053,220,0 +170731241103,219,0 +170731241152,219,0 +170731241200,220,0 +170731241250,220,0 +170731241299,219,0 +170731241347,219,0 +170731241395,220,0 +170731241443,219,0 +170731241491,219,0 +170731241539,219,0 +170731241587,219,0 +170731241635,220,0 +170731241683,219,0 +170731241732,219,0 +170731241780,219,0 +170731241828,220,0 +170731241876,220,0 +170731241924,222,0 +170731241974,258,0 +170731242022,266,0 +170731242070,224,0 +170731242119,220,0 +170731242167,219,0 +170731242215,219,0 +170731242263,219,0 +170731242312,220,0 +170731242362,219,0 +170731242410,219,0 +170731242459,219,0 +170731242509,219,0 +170731242558,219,0 +170731242608,219,0 +170731242657,220,0 +170731242705,219,0 +170731242753,219,0 +170731242803,219,0 +170731242852,219,0 +170731242900,219,0 +170731242948,220,0 +170731242996,229,0 +170731243044,260,0 +170731243092,232,0 +170731243140,220,0 +170731243190,220,0 +170731243238,219,0 +170731243287,219,0 +170731243336,219,0 +170731243384,219,0 +170731243434,219,0 +170731243483,219,0 +170731243531,219,0 +170731243581,219,0 +170731243629,219,0 +170731243677,219,0 +170731243725,219,0 +170731243773,219,0 +170731243821,220,0 +170731243870,219,0 +170731243918,219,0 +170731243966,220,0 +170731244016,221,0 +170731244064,271,1 +170731244148,231,0 +170731244198,219,0 +170731244247,219,0 +170731244297,220,0 +170731244345,219,0 +170731244394,219,0 +170731244444,219,0 +170731244492,219,0 +170731244542,219,0 +170731244590,219,0 +170731244639,219,0 +170731244687,219,0 +170731244736,219,0 +170731244784,219,0 +170731244834,219,0 +170731244883,219,0 +170731244931,219,0 +170731244979,219,0 +170731245027,219,0 +170731245077,221,0 +170731245125,262,0 +170731245173,271,1 +170731245254,220,0 +170731245302,219,0 +170731245350,219,0 +170731245398,220,0 +170731245446,219,0 +170731245494,219,0 +170731245542,219,0 +170731245590,219,0 +170731245639,219,0 +170731245687,219,0 +170731245737,219,0 +170731245785,219,0 +170731245834,219,0 +170731245882,219,0 +170731245930,219,0 +170731245978,219,0 +170731246027,219,0 +170731246077,220,0 +170731246125,220,0 +170731246173,255,0 +170731246221,269,0 +170731246270,227,0 +170731246318,219,0 +170731246366,219,0 +170731246414,220,0 +170731246462,219,0 +170731246512,220,0 +170731246560,220,0 +170731246608,219,0 +170731246656,219,0 +170731246704,220,0 +170731246751,219,0 +170731246799,219,0 +170731246847,219,0 +170731246895,220,0 +170731246943,219,0 +170731246991,220,0 +170731247039,219,0 +170731247088,219,0 +170731247136,220,0 +170731247186,221,0 +170731247234,256,0 +170731247282,260,0 +170731247330,223,0 +170731247378,220,0 +170731247427,219,0 +170731247475,219,0 +170731247523,219,0 +170731247571,219,0 +170731247620,220,0 +170731247668,219,0 +170731247716,219,0 +170731247764,219,0 +170731247814,219,0 +170731247862,219,0 +170731247910,219,0 +170731247959,219,0 +170731248007,219,0 +170731248057,219,0 +170731248105,219,0 +170731248154,220,0 +170731248202,220,0 +170731248250,282,1 +170731248339,226,0 +170731248388,220,0 +170731248436,219,0 +170731248484,219,0 +170731248532,220,0 +170731248580,219,0 +170731248628,219,0 +170731248676,219,0 +170731248724,219,0 +170731248771,219,0 +170731248821,220,0 +170731248869,219,0 +170731248917,219,0 +170731248965,219,0 +170731249014,219,0 +170731249062,219,0 +170731249110,219,0 +170731249159,219,0 +170731249207,219,0 +170731249255,220,0 +170731249305,262,0 +170731249352,272,1 +170731249433,222,0 +170731249481,219,0 +170731249529,219,0 +170731249577,219,0 +170731249625,219,0 +170731249673,219,0 +170731249721,219,0 +170731249768,219,0 +170731249816,220,0 +170731249864,220,0 +170731249912,219,0 +170731249960,219,0 +170731250008,219,0 +170731250057,219,0 +170731250107,219,0 +170731250155,219,0 +170731250202,219,0 +170731250250,219,0 +170731250298,220,0 +170731250348,269,0 +170731250396,280,1 +170731250485,220,0 +170731250534,220,0 +170731250582,219,0 +170731250630,219,0 +170731250678,219,0 +170731250726,219,0 +170731250774,220,0 +170731250821,219,0 +170731250869,220,0 +170731250917,219,0 +170731250967,219,0 +170731251014,219,0 +170731251062,219,0 +170731251110,219,0 +170731251158,219,0 +170731251206,219,0 +170731251254,220,0 +170731251304,219,0 +170731251352,220,0 +170731251400,280,1 +170731251483,227,0 +170731251531,221,0 +170731251581,219,0 +170731251629,219,0 +170731251678,219,0 +170731251726,220,0 +170731251774,219,0 +170731251824,219,0 +170731251873,219,0 +170731251921,219,0 +170731251969,220,0 +170731252017,219,0 +170731252065,219,0 +170731252113,219,0 +170731252163,219,0 +170731252211,219,0 +170731252258,219,0 +170731252308,219,0 +170731252356,219,0 +170731252404,221,0 +170731252452,296,1 +170731252537,228,0 +170731252585,221,0 +170731252633,220,0 +170731252681,220,0 +170731252731,219,0 +170731252779,219,0 +170731252827,220,0 +170731252874,220,0 +170731252922,219,0 +170731252972,219,0 +170731253020,219,0 +170731253068,220,0 +170731253116,219,0 +170731253164,219,0 +170731253212,219,0 +170731253261,219,0 +170731253309,219,0 +170731253359,219,0 +170731253408,219,0 +170731253456,221,0 +170731253504,273,1 +170731253589,236,0 +170731253637,221,0 +170731253686,219,0 +170731253734,219,0 +170731253784,219,0 +170731253832,219,0 +170731253880,219,0 +170731253928,219,0 +170731253976,219,0 +170731254025,219,0 +170731254073,219,0 +170731254121,219,0 +170731254169,219,0 +170731254217,219,0 +170731254265,219,0 +170731254315,219,0 +170731254364,219,0 +170731254412,219,0 +170731254460,219,0 +170731254508,221,0 +170731254557,294,1 +170731254641,227,0 +170731254690,220,0 +170731254738,219,0 +170731254786,219,0 +170731254835,219,0 +170731254883,219,0 +170731254931,219,0 +170731254979,219,0 +170731255027,219,0 +170731255075,220,0 +170731255123,219,0 +170731255171,220,0 +170731255219,219,0 +170731255267,219,0 +170731255315,219,0 +170731255363,219,0 +170731255411,219,0 +170731255459,219,0 +170731255508,220,0 +170731255556,220,0 +170731255606,276,1 +170731255693,226,0 +170731255743,220,0 +170731255791,219,0 +170731255839,219,0 +170731255888,219,0 +170731255938,219,0 +170731255986,219,0 +170731256035,219,0 +170731256083,219,0 +170731256133,219,0 +170731256182,219,0 +170731256230,220,0 +170731256278,219,0 +170731256327,219,0 +170731256375,219,0 +170731256423,220,0 +170731256473,219,0 +170731256522,219,0 +170731256570,220,0 +170731256620,223,0 +170731256668,282,1 +170731256746,233,0 +170731256794,220,0 +170731256843,219,0 +170731256891,219,0 +170731256941,219,0 +170731256989,219,0 +170731257037,219,0 +170731257085,220,0 +170731257134,219,0 +170731257182,219,0 +170731257230,220,0 +170731257279,219,0 +170731257327,219,0 +170731257377,219,0 +170731257425,220,0 +170731257473,219,0 +170731257521,219,0 +170731257569,219,0 +170731257617,220,0 +170731257665,222,0 +170731257713,273,1 +170731257796,230,0 +170731257846,219,0 +170731257896,220,0 +170731257945,220,0 +170731257995,219,0 +170731258044,219,0 +170731258094,219,0 +170731258142,220,0 +170731258191,220,0 +170731258239,219,0 +170731258287,220,0 +170731258335,220,0 +170731258384,219,0 +170731258434,219,0 +170731258483,219,0 +170731258533,219,0 +170731258581,219,0 +170731258629,220,0 +170731258677,220,0 +170731258725,229,0 +170731258773,262,0 +170731258822,239,0 +170731258872,221,0 +170731258921,220,0 +170731258969,220,0 +170731259017,219,0 +170731259067,220,0 +170731259115,219,0 +170731259163,219,0 +170731259212,219,0 +170731259260,220,0 +170731259308,220,0 +170731259356,220,0 +170731259404,219,0 +170731259452,220,0 +170731259501,219,0 +170731259549,219,0 +170731259597,220,0 +170731259647,220,0 +170731259696,219,0 +170731259744,221,0 +170731259792,268,0 +170731259840,274,1 +170731259922,221,0 +170731259971,219,0 +170731260021,219,0 +170731260069,219,0 +170731260117,219,0 +170731260165,219,0 +170731260213,220,0 +170731260261,220,0 +170731260310,219,0 +170731260358,220,0 +170731260408,220,0 +170731260457,219,0 +170731260505,219,0 +170731260553,220,0 +170731260601,220,0 +170731260649,219,0 +170731260699,219,0 +170731260747,220,0 +170731260796,220,0 +170731260844,270,1 +170731260929,230,0 +170731260977,221,0 +170731261027,219,0 +170731261076,220,0 +170731261126,219,0 +170731261174,220,0 +170731261222,220,0 +170731261270,219,0 +170731261318,219,0 +170731261367,220,0 +170731261415,220,0 +170731261465,220,0 +170731261513,220,0 +170731261560,220,0 +170731261610,220,0 +170731261658,220,0 +170731261707,219,0 +170731261755,220,0 +170731261805,220,0 +170731261853,221,0 +170731261901,282,1 +170731261984,230,0 +170731262033,221,0 +170731262081,220,0 +170731262131,220,0 +170731262180,219,0 +170731262228,220,0 +170731262278,220,0 +170731262325,220,0 +170731262373,219,0 +170731262423,219,0 +170731262472,220,0 +170731262522,220,0 +170731262571,219,0 +170731262619,220,0 +170731262667,219,0 +170731262715,220,0 +170731262763,220,0 +170731262811,220,0 +170731262859,220,0 +170731262907,222,0 +170731262955,269,0 +170731263003,288,1 +170731263088,220,0 +170731263135,220,0 +170731263183,219,0 +170731263233,219,0 +170731263282,219,0 +170731263332,220,0 +170731263381,220,0 +170731263429,219,0 +170731263479,220,0 +170731263528,219,0 +170731263578,220,0 +170731263626,220,0 +170731263675,219,0 +170731263723,219,0 +170731263771,220,0 +170731263819,220,0 +170731263869,220,0 +170731263917,220,0 +170731263965,223,0 +170731264013,280,1 +170731264093,230,0 +170731264141,220,0 +170731264191,220,0 +170731264239,219,0 +170731264287,219,0 +170731264336,219,0 +170731264384,219,0 +170731264434,219,0 +170731264482,219,0 +170731264530,220,0 +170731264578,220,0 +170731264627,219,0 +170731264675,219,0 +170731264723,220,0 +170731264773,219,0 +170731264822,219,0 +170731264870,219,0 +170731264918,220,0 +170731264966,220,0 +170731265014,222,0 +170731265063,272,1 +170731265146,233,0 +170731265195,220,0 +170731265243,219,0 +170731265291,219,0 +170731265339,220,0 +170731265389,219,0 +170731265438,220,0 +170731265486,220,0 +170731265534,219,0 +170731265582,219,0 +170731265630,220,0 +170731265678,219,0 +170731265726,220,0 +170731265774,220,0 +170731265823,220,0 +170731265873,220,0 +170731265923,219,0 +170731265972,220,0 +170731266020,220,0 +170731266070,225,0 +170731266117,280,1 +170731266205,225,0 +170731266253,220,0 +170731266301,220,0 +170731266349,219,0 +170731266397,219,0 +170731266445,220,0 +170731266493,220,0 +170731266542,219,0 +170731266592,220,0 +170731266640,220,0 +170731266689,220,0 +170731266737,220,0 +170731266787,219,0 +170731266835,219,0 +170731266884,220,0 +170731266932,220,0 +170731266982,220,0 +170731267030,220,0 +170731267078,221,0 +170731267127,262,0 +170731267175,277,1 +170731267259,222,0 +170731267307,220,0 +170731267356,220,0 +170731267406,220,0 +170731267454,220,0 +170731267503,220,0 +170731267551,220,0 +170731267599,220,0 +170731267647,219,0 +170731267695,220,0 +170731267745,220,0 +170731267794,219,0 +170731267842,220,0 +170731267890,220,0 +170731267938,220,0 +170731267987,220,0 +170731268037,220,0 +170731268085,219,0 +170731268134,220,0 +170731268182,250,0 +170731268230,282,1 +170731268309,226,0 +170731268359,220,0 +170731268407,220,0 +170731268456,220,0 +170731268504,220,0 +170731268553,219,0 +170731268603,220,0 +170731268652,220,0 +170731268700,220,0 +170731268748,220,0 +170731268796,220,0 +170731268844,220,0 +170731268892,219,0 +170731268940,220,0 +170731268988,219,0 +170731269035,220,0 +170731269083,220,0 +170731269131,220,0 +170731269179,220,0 +170731269227,248,0 +170731269275,292,1 +170731269365,223,0 +170731269415,220,0 +170731269463,220,0 +170731269511,220,0 +170731269558,219,0 +170731269606,220,0 +170731269654,220,0 +170731269702,219,0 +170731269750,220,0 +170731269798,220,0 +170731269846,220,0 +170731269895,220,0 +170731269943,220,0 +170731269991,219,0 +170731270039,220,0 +170731270087,220,0 +170731270135,220,0 +170731270182,220,0 +170731270230,220,0 +170731270278,252,0 +170731270328,269,0 +170731270376,226,0 +170731270423,220,0 +170731270471,220,0 +170731270519,220,0 +170731270567,220,0 +170731270615,220,0 +170731270663,220,0 +170731270711,219,0 +170731270759,220,0 +170731270807,220,0 +170731270855,220,0 +170731270902,219,0 +170731270950,219,0 +170731270998,220,0 +170731271046,220,0 +170731271094,220,0 +170731271142,220,0 +170731271192,220,0 +170731271240,221,0 +170731271289,221,0 +170731271339,261,0 +170731271387,269,0 +170731271434,231,0 +170731271482,220,0 +170731271530,220,0 +170731271578,220,0 +170731271626,220,0 +170731271676,220,0 +170731271724,220,0 +170731271772,220,0 +170731271820,220,0 +170731271868,220,0 +170731271917,220,0 +170731271967,219,0 +170731272016,220,0 +170731272064,219,0 +170731272112,220,0 +170731272160,220,0 +170731272208,220,0 +170731272256,220,0 +170731272305,220,0 +170731272355,221,0 +170731272403,275,1 +170731272480,230,0 +170731272528,221,0 +170731272576,220,0 +170731272624,220,0 +170731272672,219,0 +170731272720,220,0 +170731272768,220,0 +170731272817,220,0 +170731272865,220,0 +170731272915,219,0 +170731272963,220,0 +170731273011,220,0 +170731273059,220,0 +170731273108,220,0 +170731273156,220,0 +170731273204,220,0 +170731273252,220,0 +170731273300,220,0 +170731273348,220,0 +170731273397,222,0 +170731273445,275,1 +170731273531,235,0 +170731273579,220,0 +170731273627,220,0 +170731273677,220,0 +170731273724,220,0 +170731273774,220,0 +170731273822,220,0 +170731273871,220,0 +170731273921,220,0 +170731273969,220,0 +170731274017,220,0 +170731274066,220,0 +170731274116,220,0 +170731274164,220,0 +170731274212,220,0 +170731274260,220,0 +170731274308,220,0 +170731274356,220,0 +170731274404,221,0 +170731274453,221,0 +170731274501,259,0 +170731274551,285,1 +170731274634,221,0 +170731274682,221,0 +170731274730,220,0 +170731274778,220,0 +170731274826,220,0 +170731274876,220,0 +170731274924,220,0 +170731274973,220,0 +170731275021,220,0 +170731275069,220,0 +170731275119,220,0 +170731275166,220,0 +170731275214,220,0 +170731275262,219,0 +170731275312,220,0 +170731275360,220,0 +170731275408,220,0 +170731275456,220,0 +170731275505,222,0 +170731275553,285,1 +170731275636,236,0 +170731275684,221,0 +170731275732,219,0 +170731275782,220,0 +170731275830,220,0 +170731275878,220,0 +170731275927,220,0 +170731275975,220,0 +170731276025,220,0 +170731276073,220,0 +170731276121,220,0 +170731276170,220,0 +170731276220,220,0 +170731276268,220,0 +170731276316,220,0 +170731276365,220,0 +170731276413,220,0 +170731276461,220,0 +170731276509,220,0 +170731276558,222,0 +170731276606,296,1 +170731276685,233,0 +170731276734,220,0 +170731276782,220,0 +170731276830,220,0 +170731276878,221,0 +170731276926,220,0 +170731276974,220,0 +170731277022,220,0 +170731277071,220,0 +170731277119,220,0 +170731277167,220,0 +170731277215,220,0 +170731277263,220,0 +170731277311,220,0 +170731277361,220,0 +170731277409,220,0 +170731277456,220,0 +170731277504,220,0 +170731277552,220,0 +170731277600,222,0 +170731277648,269,0 +170731277698,278,1 +170731277779,221,0 +170731277828,220,0 +170731277876,220,0 +170731277924,220,0 +170731277974,220,0 +170731278022,220,0 +170731278070,220,0 +170731278117,220,0 +170731278165,221,0 +170731278215,220,0 +170731278263,220,0 +170731278311,220,0 +170731278359,220,0 +170731278407,220,0 +170731278455,220,0 +170731278503,220,0 +170731278551,220,0 +170731278600,220,0 +170731278648,221,0 +170731278698,267,0 +170731278745,276,1 +170731278827,221,0 +170731278875,220,0 +170731278924,220,0 +170731278972,221,0 +170731279020,220,0 +170731279069,220,0 +170731279119,220,0 +170731279167,220,0 +170731279216,220,0 +170731279264,220,0 +170731279312,220,0 +170731279360,220,0 +170731279408,220,0 +170731279458,220,0 +170731279506,220,0 +170731279554,220,0 +170731279602,220,0 +170731279651,220,0 +170731279701,222,0 +170731279750,264,0 +170731279798,281,1 +170731279879,220,0 +170731279929,220,0 +170731279977,220,0 +170731280025,219,0 +170731280074,220,0 +170731280122,220,0 +170731280170,220,0 +170731280218,220,0 +170731280266,220,0 +170731280316,220,0 +170731280364,220,0 +170731280413,220,0 +170731280463,220,0 +170731280511,220,0 +170731280558,220,0 +170731280606,220,0 +170731280656,220,0 +170731280704,220,0 +170731280752,221,0 +170731280800,283,1 +170731280888,232,0 +170731280938,220,0 +170731280987,219,0 +170731281035,220,0 +170731281085,220,0 +170731281133,220,0 +170731281182,220,0 +170731281232,220,0 +170731281280,220,0 +170731281329,219,0 +170731281377,219,0 +170731281425,220,0 +170731281473,219,0 +170731281521,220,0 +170731281571,219,0 +170731281619,219,0 +170731281666,219,0 +170731281716,220,0 +170731281764,220,0 +170731281812,222,0 +170731281860,252,0 +170731281909,275,1 +170731281997,220,0 +170731282046,219,0 +170731282096,220,0 +170731282145,219,0 +170731282193,219,0 +170731282241,220,0 +170731282289,220,0 +170731282339,220,0 +170731282387,219,0 +170731282435,220,0 +170731282484,220,0 +170731282532,220,0 +170731282580,219,0 +170731282628,220,0 +170731282676,219,0 +170731282726,219,0 +170731282775,220,0 +170731282823,220,0 +170731282873,223,0 +170731282920,270,1 +170731283005,225,0 +170731283054,220,0 +170731283102,220,0 +170731283150,220,0 +170731283200,220,0 +170731283248,219,0 +170731283297,220,0 +170731283347,219,0 +170731283395,219,0 +170731283444,219,0 +170731283492,220,0 +170731283540,220,0 +170731283588,219,0 +170731283636,220,0 +170731283684,219,0 +170731283732,219,0 +170731283780,220,0 +170731283829,220,0 +170731283879,220,0 +170731283927,223,0 +170731283976,265,0 +170731284026,249,0 +170731284075,221,0 +170731284125,220,0 +170731284174,220,0 +170731284223,220,0 +170731284273,220,0 +170731284321,219,0 +170731284370,219,0 +170731284420,220,0 +170731284469,220,0 +170731284519,220,0 +170731284569,220,0 +170731284617,220,0 +170731284664,220,0 +170731284712,220,0 +170731284762,220,0 +170731284812,220,0 +170731284860,220,0 +170731284908,220,0 +170731284957,222,0 +170731285005,286,1 +170731285085,235,0 +170731285134,220,0 +170731285184,220,0 +170731285232,220,0 +170731285280,220,0 +170731285328,220,0 +170731285376,220,0 +170731285425,220,0 +170731285473,221,0 +170731285521,220,0 +170731285569,220,0 +170731285617,220,0 +170731285665,221,0 +170731285714,220,0 +170731285764,220,0 +170731285812,220,0 +170731285860,220,0 +170731285909,220,0 +170731285957,221,0 +170731286005,223,0 +170731286053,269,0 +170731286101,290,1 +170731286193,220,0 +170731286241,220,0 +170731286289,220,0 +170731286338,220,0 +170731286386,220,0 +170731286434,220,0 +170731286482,220,0 +170731286530,220,0 +170731286578,219,0 +170731286625,221,0 +170731286673,220,0 +170731286721,220,0 +170731286769,220,0 +170731286817,220,0 +170731286865,220,0 +170731286913,220,0 +170731286961,220,0 +170731287008,221,0 +170731287056,222,0 +170731287104,283,1 +170731287188,233,0 +170731287237,220,0 +170731287285,220,0 +170731287333,220,0 +170731287381,220,0 +170731287429,220,0 +170731287477,220,0 +170731287524,220,0 +170731287572,220,0 +170731287620,220,0 +170731287670,219,0 +170731287718,220,0 +170731287766,220,0 +170731287814,220,0 +170731287862,220,0 +170731287910,220,0 +170731287958,220,0 +170731288006,220,0 +170731288054,220,0 +170731288102,222,0 +170731288150,272,1 +170731288227,228,0 +170731288276,220,0 +170731288324,220,0 +170731288372,219,0 +170731288420,219,0 +170731288468,220,0 +170731288516,220,0 +170731288564,220,0 +170731288612,219,0 +170731288660,220,0 +170731288708,220,0 +170731288756,219,0 +170731288804,220,0 +170731288852,219,0 +170731288901,220,0 +170731288949,220,0 +170731288999,219,0 +170731289047,220,0 +170731289096,220,0 +170731289146,221,0 +170731289195,263,0 +170731289245,282,1 +170731289328,220,0 +170731289376,220,0 +170731289423,220,0 +170731289471,220,0 +170731289519,220,0 +170731289567,219,0 +170731289615,220,0 +170731289663,220,0 +170731289711,219,0 +170731289761,219,0 +170731289810,220,0 +170731289858,219,0 +170731289908,220,0 +170731289956,220,0 +170731290004,219,0 +170731290052,220,0 +170731290101,220,0 +170731290149,221,0 +170731290197,221,0 +170731290245,285,1 +170731290327,227,0 +170731290375,221,0 +170731290425,220,0 +170731290472,220,0 +170731290520,220,0 +170731290570,220,0 +170731290618,220,0 +170731290667,220,0 +170731290715,220,0 +170731290765,220,0 +170731290813,219,0 +170731290861,220,0 +170731290909,220,0 +170731290958,220,0 +170731291006,220,0 +170731291056,220,0 +170731291104,220,0 +170731291153,220,0 +170731291203,220,0 +170731291252,221,0 +170731291300,274,1 +170731291385,230,0 +170731291432,220,0 +170731291480,220,0 +170731291528,220,0 +170731291578,220,0 +170731291627,220,0 +170731291677,220,0 +170731291725,219,0 +170731291773,220,0 +170731291821,220,0 +170731291869,220,0 +170731291918,220,0 +170731291966,219,0 +170731292014,220,0 +170731292063,219,0 +170731292111,220,0 +170731292161,220,0 +170731292210,219,0 +170731292260,220,0 +170731292308,223,0 +170731292357,286,1 +170731292436,232,0 +170731292485,220,0 +170731292535,220,0 +170731292584,220,0 +170731292634,220,0 +170731292683,220,0 +170731292731,220,0 +170731292779,220,0 +170731292827,220,0 +170731292877,219,0 +170731292925,220,0 +170731292973,219,0 +170731293021,219,0 +170731293069,220,0 +170731293117,220,0 +170731293166,220,0 +170731293216,220,0 +170731293265,220,0 +170731293315,220,0 +170731293364,222,0 +170731293412,275,1 +170731293492,230,0 +170731293541,219,0 +170731293591,219,0 +170731293639,218,0 +170731293688,218,0 +170731293736,218,0 +170731293786,219,0 +170731293835,219,0 +170731293883,219,0 +170731293931,219,0 +170731293979,218,0 +170731294027,219,0 +170731294077,218,0 +170731294126,219,0 +170731294174,219,0 +170731294222,218,0 +170731294270,219,0 +170731294318,219,0 +170731294366,219,0 +170731294414,221,0 +170731294462,265,0 +170731294510,283,1 +170731294593,219,0 +170731294643,219,0 +170731294691,218,0 +170731294740,219,0 +170731294788,219,0 +170731294836,219,0 +170731294884,219,0 +170731294932,219,0 +170731294980,219,0 +170731295029,219,0 +170731295079,219,0 +170731295127,219,0 +170731295175,219,0 +170731295223,219,0 +170731295271,219,0 +170731295319,218,0 +170731295367,219,0 +170731295415,219,0 +170731295462,222,0 +170731295512,255,0 +170731295562,249,0 +170731295610,220,0 +170731295659,219,0 +170731295707,219,0 +170731295755,218,0 +170731295804,219,0 +170731295854,219,0 +170731295903,220,0 +170731295953,219,0 +170731296001,219,0 +170731296050,219,0 +170731296098,219,0 +170731296146,219,0 +170731296196,219,0 +170731296244,219,0 +170731296293,219,0 +170731296343,219,0 +170731296393,219,0 +170731296440,219,0 +170731296490,220,0 +170731296538,276,1 +170731296627,229,0 +170731296677,220,0 +170731296726,219,0 +170731296774,219,0 +170731296822,219,0 +170731296872,220,0 +170731296921,219,0 +170731296971,219,0 +170731297020,219,0 +170731297070,219,0 +170731297118,220,0 +170731297166,219,0 +170731297215,219,0 +170731297263,219,0 +170731297311,219,0 +170731297361,219,0 +170731297409,219,0 +170731297457,219,0 +170731297505,220,0 +170731297553,221,0 +170731297602,265,0 +170731297650,275,1 +170731297727,220,0 +170731297776,219,0 +170731297824,219,0 +170731297874,219,0 +170731297922,219,0 +170731297970,219,0 +170731298018,219,0 +170731298066,219,0 +170731298115,219,0 +170731298163,219,0 +170731298213,219,0 +170731298262,220,0 +170731298310,219,0 +170731298358,219,0 +170731298406,219,0 +170731298454,219,0 +170731298502,219,0 +170731298551,219,0 +170731298599,220,0 +170731298647,289,1 +170731298727,226,0 +170731298775,220,0 +170731298824,219,0 +170731298874,219,0 +170731298922,219,0 +170731298970,219,0 +170731299018,219,0 +170731299066,220,0 +170731299115,219,0 +170731299163,219,0 +170731299211,220,0 +170731299259,219,0 +170731299307,219,0 +170731299357,219,0 +170731299405,219,0 +170731299453,219,0 +170731299501,219,0 +170731299550,220,0 +170731299598,219,0 +170731299648,221,0 +170731299697,269,0 +170731299745,276,1 +170731299830,220,0 +170731299879,219,0 +170731299927,219,0 +170731299975,219,0 +170731300023,219,0 +170731300071,219,0 +170731300119,219,0 +170731300167,220,0 +170731300215,219,0 +170731300263,220,0 +170731300312,220,0 +170731300360,219,0 +170731300408,219,0 +170731300458,219,0 +170731300507,220,0 +170731300555,220,0 +170731300603,220,0 +170731300651,219,0 +170731300701,221,0 +170731300749,272,1 +170731300828,228,0 +170731300876,220,0 +170731300924,220,0 +170731300972,220,0 +170731301020,220,0 +170731301069,219,0 +170731301117,219,0 +170731301165,220,0 +170731301215,220,0 +170731301262,219,0 +170731301310,220,0 +170731301358,219,0 +170731301406,220,0 +170731301454,219,0 +170731301502,220,0 +170731301552,220,0 +170731301601,220,0 +170731301649,220,0 +170731301697,219,0 +170731301745,221,0 +170731301793,275,1 +170731301876,231,0 +170731301924,219,0 +170731301972,220,0 +170731302020,220,0 +170731302068,219,0 +170731302116,220,0 +170731302164,219,0 +170731302213,219,0 +170731302261,220,0 +170731302309,220,0 +170731302357,220,0 +170731302406,220,0 +170731302454,220,0 +170731302502,219,0 +170731302550,219,0 +170731302598,220,0 +170731302646,219,0 +170731302693,220,0 +170731302741,219,0 +170731302789,220,0 +170731302837,263,0 +170731302885,269,0 +170731302933,230,0 +170731302981,220,0 +170731303029,219,0 +170731303076,219,0 +170731303124,220,0 +170731303172,220,0 +170731303220,219,0 +170731303268,220,0 +170731303316,219,0 +170731303364,220,0 +170731303413,219,0 +170731303462,219,0 +170731303510,219,0 +170731303558,219,0 +170731303606,220,0 +170731303654,219,0 +170731303702,219,0 +170731303750,219,0 +170731303798,219,0 +170731303846,221,0 +170731303893,268,0 +170731303941,286,1 +170731304025,219,0 +170731304072,219,0 +170731304120,219,0 +170731304168,219,0 +170731304216,219,0 +170731304264,219,0 +170731304312,219,0 +170731304360,220,0 +170731304408,219,0 +170731304456,219,0 +170731304503,219,0 +170731304551,219,0 +170731304601,219,0 +170731304649,219,0 +170731304697,219,0 +170731304745,220,0 +170731304792,220,0 +170731304840,220,0 +170731304890,220,0 +170731304938,261,0 +170731304986,269,0 +170731305033,229,0 +170731305081,219,0 +170731305129,219,0 +170731305177,218,0 +170731305225,219,0 +170731305273,219,0 +170731305321,219,0 +170731305369,219,0 +170731305417,218,0 +170731305464,218,0 +170731305512,219,0 +170731305560,219,0 +170731305608,219,0 +170731305656,219,0 +170731305704,219,0 +170731305753,219,0 +170731305801,219,0 +170731305849,219,0 +170731305897,219,0 +170731305945,220,0 +170731305993,284,1 +170731306074,225,0 +170731306124,220,0 +170731306173,219,0 +170731306221,218,0 +170731306271,219,0 +170731306319,219,0 +170731306367,218,0 +170731306415,219,0 +170731306464,219,0 +170731306513,219,0 +170731306561,219,0 +170731306609,219,0 +170731306657,219,0 +170731306705,219,0 +170731306755,219,0 +170731306802,219,0 +170731306850,219,0 +170731306898,218,0 +170731306946,219,0 +170731306994,221,0 +170731307042,281,1 +170731307127,231,0 +170731307176,220,0 +170731307224,219,0 +170731307272,219,0 +170731307320,218,0 +170731307370,219,0 +170731307419,218,0 +170731307467,219,0 +170731307517,219,0 +170731307566,219,0 +170731307616,219,0 +170731307665,219,0 +170731307713,218,0 +170731307763,219,0 +170731307811,219,0 +170731307860,219,0 +170731307910,219,0 +170731307958,219,0 +170731308006,219,0 +170731308055,221,0 +170731308103,273,1 +170731308185,228,0 +170731308234,219,0 +170731308284,218,0 +170731308333,219,0 +170731308381,219,0 +170731308429,219,0 +170731308479,219,0 +170731308528,218,0 +170731308576,219,0 +170731308624,218,0 +170731308674,218,0 +170731308722,219,0 +170731308770,219,0 +170731308818,219,0 +170731308867,219,0 +170731308915,219,0 +170731308963,219,0 +170731309012,219,0 +170731309062,219,0 +170731309110,222,0 +170731309159,275,1 +170731309238,229,0 +170731309286,219,0 +170731309335,219,0 +170731309383,219,0 +170731309431,219,0 +170731309479,219,0 +170731309529,219,0 +170731309577,219,0 +170731309625,219,0 +170731309672,219,0 +170731309722,219,0 +170731309772,219,0 +170731309821,219,0 +170731309869,219,0 +170731309917,219,0 +170731309965,219,0 +170731310013,219,0 +170731310061,219,0 +170731310109,219,0 +170731310156,222,0 +170731310206,272,1 +170731310296,224,0 +170731310346,219,0 +170731310394,219,0 +170731310442,219,0 +170731310490,219,0 +170731310538,219,0 +170731310586,219,0 +170731310634,219,0 +170731310682,219,0 +170731310730,219,0 +170731310779,219,0 +170731310827,219,0 +170731310876,219,0 +170731310924,219,0 +170731310972,219,0 +170731311020,219,0 +170731311070,219,0 +170731311118,220,0 +170731311167,220,0 +170731311215,267,0 +170731311263,278,1 +170731311344,223,0 +170731311394,219,0 +170731311443,219,0 +170731311491,219,0 +170731311541,219,0 +170731311589,219,0 +170731311638,219,0 +170731311686,219,0 +170731311734,219,0 +170731311782,219,0 +170731311830,219,0 +170731311878,219,0 +170731311928,219,0 +170731311976,219,0 +170731312023,219,0 +170731312071,219,0 +170731312119,219,0 +170731312167,219,0 +170731312215,219,0 +170731312265,222,0 +170731312313,267,0 +170731312361,260,0 +170731312410,221,0 +170731312458,219,0 +170731312506,219,0 +170731312555,219,0 +170731312605,219,0 +170731312653,219,0 +170731312701,219,0 +170731312750,219,0 +170731312800,219,0 +170731312849,219,0 +170731312899,219,0 +170731312947,219,0 +170731312995,219,0 +170731313043,218,0 +170731313091,219,0 +170731313140,219,0 +170731313188,219,0 +170731313236,219,0 +170731313284,220,0 +170731313332,257,0 +170731313382,264,0 +170731313431,229,0 +170731313479,219,0 +170731313529,219,0 +170731313577,219,0 +170731313626,219,0 +170731313674,219,0 +170731313723,219,0 +170731313771,219,0 +170731313818,219,0 +170731313866,219,0 +170731313914,219,0 +170731313964,219,0 +170731314012,219,0 +170731314061,219,0 +170731314109,219,0 +170731314157,219,0 +170731314205,219,0 +170731314253,219,0 +170731314302,220,0 +170731314350,222,0 +170731314398,272,1 +170731314483,228,0 +170731314531,219,0 +170731314580,219,0 +170731314628,219,0 +170731314676,219,0 +170731314724,219,0 +170731314772,219,0 +170731314820,219,0 +170731314868,219,0 +170731314916,219,0 +170731314964,219,0 +170731315012,219,0 +170731315059,219,0 +170731315109,219,0 +170731315157,219,0 +170731315205,219,0 +170731315253,219,0 +170731315302,219,0 +170731315352,220,0 +170731315400,221,0 +170731315449,269,0 +170731315499,272,1 +170731315586,220,0 +170731315634,219,0 +170731315683,219,0 +170731315731,219,0 +170731315779,219,0 +170731315828,219,0 +170731315876,219,0 +170731315924,219,0 +170731315972,219,0 +170731316020,219,0 +170731316068,219,0 +170731316116,219,0 +170731316164,219,0 +170731316214,219,0 +170731316262,219,0 +170731316310,220,0 +170731316358,221,0 +170731316405,224,0 +170731316453,228,0 +170731316503,257,0 +170731316553,243,0 +170731316600,230,0 +170731316648,228,0 +170731316701,227,0 +170731316754,227,0 +170731316807,227,0 +170731316859,227,0 +170731316912,227,0 +170731316965,227,0 +170731317018,227,0 +170731317070,227,0 +170731317123,228,0 +170731317176,228,0 +170731317228,228,0 +170731317281,227,0 +170731317334,227,0 +170731317387,227,0 +170731317440,228,0 +170731317492,230,0 +170731317542,267,0 +170731317591,284,1 +170731317670,228,0 +170731317722,228,0 +170731317775,228,0 +170731317828,228,0 +170731317881,228,0 +170731317928,228,0 +170731317981,227,0 +170731318034,227,0 +170731318087,227,0 +170731318139,228,0 +170731318192,228,0 +170731318245,228,0 +170731318297,227,0 +170731318350,228,0 +170731318403,228,0 +170731318456,228,0 +170731318508,228,0 +170731318561,243,0 +170731318614,265,0 +170731318662,226,0 +170731318710,229,0 +170731318763,227,0 +170731318815,228,0 +170731318868,228,0 +170731318921,228,0 +170731318974,228,0 +170731319026,227,0 +170731319079,227,0 +170731319127,228,0 +170731319180,227,0 +170731319232,228,0 +170731319285,228,0 +170731319338,227,0 +170731319391,227,0 +170731319443,228,0 +170731319496,227,0 +170731319549,228,0 +170731319602,232,0 +170731319654,255,0 +170731319702,245,0 +170731319751,229,0 +170731319804,227,0 +170731319853,227,0 +170731319906,228,0 +170731319959,227,0 +170731320011,227,0 +170731320064,228,0 +170731320112,227,0 +170731320165,227,0 +170731320217,227,0 +170731320270,227,0 +170731320323,227,0 +170731320371,227,0 +170731320424,227,0 +170731320476,227,0 +170731320529,227,0 +170731320582,227,0 +170731320630,228,0 +170731320679,270,1 +170731320765,231,0 +170731320814,228,0 +170731320867,227,0 +170731320920,227,0 +170731320972,227,0 +170731321025,227,0 +170731321073,226,0 +170731321126,227,0 +170731321179,227,0 +170731321227,227,0 +170731321280,228,0 +170731321332,227,0 +170731321385,227,0 +170731321438,226,0 +170731321491,227,0 +170731321543,228,0 +170731321591,227,0 +170731321644,227,0 +170731321692,230,0 +170731321740,262,0 +170731321788,262,0 +170731321836,235,0 +170731321884,228,0 +170731321937,228,0 +170731321989,228,0 +170731322042,227,0 +170731322095,227,0 +170731322143,227,0 +170731322196,227,0 +170731322248,227,0 +170731322301,227,0 +170731322354,228,0 +170731322407,227,0 +170731322459,228,0 +170731322512,227,0 +170731322565,228,0 +170731322617,227,0 +170731322665,228,0 +170731322718,229,0 +170731322771,265,0 +170731322819,263,0 +170731322867,238,0 +170731322915,228,0 +170731322968,228,0 +170731323016,227,0 +170731323068,227,0 +170731323121,228,0 +170731323174,227,0 +170731323226,227,0 +170731323279,228,0 +170731323332,227,0 +170731323385,227,0 +170731323437,227,0 +170731323490,227,0 +170731323543,227,0 +170731323596,227,0 +170731323648,227,0 +170731323698,227,0 +170731323751,228,0 +170731323803,238,0 +170731323851,278,1 +170731323929,234,0 +170731323977,228,0 +170731324030,227,0 +170731324083,227,0 +170731324135,227,0 +170731324188,227,0 +170731324241,227,0 +170731324294,227,0 +170731324346,227,0 +170731324399,228,0 +170731324452,227,0 +170731324505,227,0 +170731324557,227,0 +170731324610,227,0 +170731324663,227,0 +170731324716,227,0 +170731324764,228,0 +170731324816,229,0 +170731324869,260,0 +170731324919,273,1 +170731325004,230,0 +170731325053,227,0 +170731325106,228,0 +170731325154,227,0 +170731325207,227,0 +170731325260,228,0 +170731325308,228,0 +170731325360,227,0 +170731325413,227,0 +170731325466,227,0 +170731325518,228,0 +170731325571,227,0 +170731325624,227,0 +170731325677,227,0 +170731325729,227,0 +170731325782,227,0 +170731325835,227,0 +170731325888,232,0 +170731325941,265,0 +170731325988,276,1 +170731326073,228,0 +170731326126,227,0 +170731326178,227,0 +170731326231,227,0 +170731326284,228,0 +170731326337,227,0 +170731326389,228,0 +170731326442,227,0 +170731326495,227,0 +170731326548,227,0 +170731326600,227,0 +170731326653,227,0 +170731326706,227,0 +170731326759,226,0 +170731326811,227,0 +170731326864,226,0 +170731326914,228,0 +170731326966,254,0 +170731327014,260,0 +170731327064,236,0 +170731327113,227,0 +170731327166,227,0 +170731327219,228,0 +170731327272,226,0 +170731327324,227,0 +170731327377,227,0 +170731327430,227,0 +170731327478,227,0 +170731327531,227,0 +170731327584,227,0 +170731327636,226,0 +170731327689,227,0 +170731327742,227,0 +170731327795,226,0 +170731327844,227,0 +170731327897,227,0 +170731327950,228,0 +170731328002,236,0 +170731328055,272,1 +170731328140,234,0 +170731328187,228,0 +170731328240,227,0 +170731328293,227,0 +170731328346,227,0 +170731328398,227,0 +170731328451,228,0 +170731328501,227,0 +170731328553,226,0 +170731328606,227,0 +170731328659,227,0 +170731328707,227,0 +170731328760,227,0 +170731328812,227,0 +170731328865,227,0 +170731328918,226,0 +170731328966,228,0 +170731329014,229,0 +170731329062,259,0 +170731329111,276,1 +170731329190,230,0 +170731329238,227,0 +170731329291,227,0 +170731329344,226,0 +170731329397,227,0 +170731329449,227,0 +170731329502,227,0 +170731329555,227,0 +170731329608,227,0 +170731329660,228,0 +170731329713,227,0 +170731329766,227,0 +170731329819,227,0 +170731329871,227,0 +170731329924,227,0 +170731329972,227,0 +170731330025,229,0 +170731330073,230,0 +170731330122,261,0 +170731330172,269,0 +170731330221,233,0 +170731330269,227,0 +170731330322,228,0 +170731330375,227,0 +170731330427,227,0 +170731330480,227,0 +170731330533,226,0 +170731330586,227,0 +170731330638,227,0 +170731330691,227,0 +170731330744,228,0 +170731330797,227,0 +170731330849,227,0 +170731330902,227,0 +170731330955,227,0 +170731331008,227,0 +170731331060,226,0 +170731331108,228,0 +170731331161,258,0 +170731331211,256,0 +170731331258,236,0 +170731331308,228,0 +170731331361,227,0 +170731331414,227,0 +170731331466,227,0 +170731331519,227,0 +170731331572,227,0 +170731331625,227,0 +170731331677,228,0 +170731331727,227,0 +170731331780,227,0 +170731331832,227,0 +170731331885,227,0 +170731331938,227,0 +170731331986,227,0 +170731332039,227,0 +170731332091,227,0 +170731332144,228,0 +170731332197,250,0 +170731332245,263,0 +170731332293,223,0 +170731332341,228,0 +170731332394,227,0 +170731332441,227,0 +170731332494,227,0 +170731332547,227,0 +170731332600,226,0 +170731332652,227,0 +170731332700,228,0 +170731332748,227,0 +170731332801,227,0 +170731332854,227,0 +170731332907,227,0 +170731332959,227,0 +170731333012,227,0 +170731333065,227,0 +170731333117,227,0 +170731333170,227,0 +170731333223,229,0 +170731333276,281,1 +170731333373,232,0 +170731333421,226,0 +170731333474,226,0 +170731333527,226,0 +170731333579,226,0 +170731333632,227,0 +170731333685,227,0 +170731333738,226,0 +170731333790,227,0 +170731333843,227,0 +170731333896,227,0 +170731333948,226,0 +170731334001,226,0 +170731334054,227,0 +170731334106,226,0 +170731334159,227,0 +170731334212,227,0 +170731334265,228,0 +170731334317,260,0 +170731334365,265,0 +170731334415,239,0 +170731334463,226,0 +170731334515,226,0 +170731334568,226,0 +170731334616,226,0 +170731334669,226,0 +170731334721,226,0 +170731334774,227,0 +170731334827,227,0 +170731334880,227,0 +170731334932,227,0 +170731334985,226,0 +170731335038,227,0 +170731335087,226,0 +170731335140,227,0 +170731335193,226,0 +170731335246,227,0 +170731335298,228,0 +170731335351,253,0 +170731335401,259,0 +170731335450,222,0 +170731335498,227,0 +170731335551,227,0 +170731335604,226,0 +170731335656,227,0 +170731335709,228,0 +170731335759,227,0 +170731335811,227,0 +170731335864,226,0 +170731335912,227,0 +170731335965,226,0 +170731336017,226,0 +170731336070,226,0 +170731336123,227,0 +170731336175,227,0 +170731336228,226,0 +170731336278,227,0 +170731336330,227,0 +170731336383,237,0 +170731336436,272,1 +170731336510,235,0 +170731336558,227,0 +170731336610,226,0 +170731336663,227,0 +170731336716,226,0 +170731336764,227,0 +170731336816,227,0 +170731336869,226,0 +170731336922,226,0 +170731336975,227,0 +170731337028,226,0 +170731337077,227,0 +170731337127,227,0 +170731337179,227,0 +170731337232,226,0 +170731337282,226,0 +170731337330,227,0 +170731337383,227,0 +170731337436,230,0 +170731337489,254,0 +170731337537,247,0 +170731337585,230,0 +170731337638,228,0 +170731337690,228,0 +170731337743,227,0 +170731337796,227,0 +170731337848,227,0 +170731337901,228,0 +170731337949,227,0 +170731338002,227,0 +170731338050,227,0 +170731338103,227,0 +170731338155,228,0 +170731338208,228,0 +170731338261,227,0 +170731338313,227,0 +170731338363,227,0 +170731338416,228,0 +170731338468,230,0 +170731338521,277,1 +170731338602,239,0 +170731338650,228,0 +170731338698,227,0 +170731338751,227,0 +170731338804,227,0 +170731338856,227,0 +170731338909,227,0 +170731338962,227,0 +170731339015,226,0 +170731339067,227,0 +170731339120,227,0 +170731339173,227,0 +170731339226,227,0 +170731339278,227,0 +170731339331,227,0 +170731339379,227,0 +170731339432,228,0 +170731339484,228,0 +170731339537,251,0 +170731339585,264,0 +170731339635,225,0 +170731339682,229,0 +170731339730,228,0 +170731339778,227,0 +170731339831,227,0 +170731339879,227,0 +170731339932,228,0 +170731339980,227,0 +170731340033,227,0 +170731340085,227,0 +170731340138,227,0 +170731340191,227,0 +170731340243,227,0 +170731340291,227,0 +170731340339,227,0 +170731340392,227,0 +170731340445,228,0 +170731340498,228,0 +170731340551,229,0 +170731340603,273,1 +170731340686,223,0 +170731340734,229,0 +170731340782,227,0 +170731340835,227,0 +170731340883,227,0 +170731340936,227,0 +170731340989,226,0 +170731341041,228,0 +170731341091,226,0 +170731341144,227,0 +170731341196,227,0 +170731341249,227,0 +170731341302,227,0 +170731341355,227,0 +170731341407,227,0 +170731341460,227,0 +170731341513,227,0 +170731341566,227,0 +170731341618,232,0 +170731341668,263,0 +170731341716,275,1 +170731341798,227,0 +170731341847,227,0 +170731341900,228,0 +170731341953,227,0 +170731342005,227,0 +170731342058,227,0 +170731342106,227,0 +170731342159,227,0 +170731342212,227,0 +170731342264,227,0 +170731342317,227,0 +170731342370,227,0 +170731342423,228,0 +170731342471,227,0 +170731342523,227,0 +170731342576,226,0 +170731342629,228,0 +170731342682,236,0 +170731342735,269,0 +170731342784,222,0 +170731342834,228,0 +170731342883,227,0 +170731342936,227,0 +170731342989,228,0 +170731343037,227,0 +170731343089,227,0 +170731343142,227,0 +170731343195,226,0 +170731343248,227,0 +170731343300,227,0 +170731343353,227,0 +170731343403,227,0 +170731343455,228,0 +170731343503,227,0 +170731343556,227,0 +170731343606,227,0 +170731343658,228,0 +170731343711,229,0 +170731343764,274,1 +170731343843,227,0 +170731343891,227,0 +170731343939,227,0 +170731343991,227,0 +170731344039,227,0 +170731344092,227,0 +170731344145,227,0 +170731344198,227,0 +170731344251,227,0 +170731344303,228,0 +170731344356,227,0 +170731344409,227,0 +170731344462,227,0 +170731344511,227,0 +170731344564,227,0 +170731344617,228,0 +170731344665,228,0 +170731344717,227,0 +170731344770,228,0 +170731344820,227,0 +170731344872,227,0 +170731344925,228,0 +170731344978,228,0 +170731345031,227,0 +170731345084,227,0 +170731345136,227,0 +170731345189,227,0 +170731345242,229,0 +170731345290,231,0 +170731345338,270,1 +170731345419,240,0 +170731345467,228,0 +170731345520,228,0 +170731345573,227,0 +170731345625,227,0 +170731345678,227,0 +170731345731,227,0 +170731345784,228,0 +170731345836,227,0 +170731345889,227,0 +170731345942,227,0 +170731345994,227,0 +170731346047,229,0 +170731346097,227,0 +170731346149,227,0 +170731346202,228,0 +170731346255,228,0 +170731346308,229,0 +170731346360,269,0 +170731346408,276,1 +170731346492,228,0 +170731346545,228,0 +170731346598,227,0 +170731346651,228,0 +170731346703,228,0 +170731346756,228,0 +170731346809,227,0 +170731346862,228,0 +170731346914,227,0 +170731346967,227,0 +170731347020,227,0 +170731347070,227,0 +170731347122,227,0 +170731347175,227,0 +170731347228,227,0 +170731347280,227,0 +170731347330,227,0 +170731347383,231,0 +170731347431,261,0 +170731347479,269,0 +170731347527,235,0 +170731347575,227,0 +170731347627,227,0 +170731347680,227,0 +170731347733,227,0 +170731347786,227,0 +170731347838,227,0 +170731347891,227,0 +170731347944,227,0 +170731347997,228,0 +170731348049,228,0 +170731348097,227,0 +170731348150,227,0 +170731348203,228,0 +170731348255,227,0 +170731348308,228,0 +170731348361,227,0 +170731348414,229,0 +170731348466,262,0 +170731348516,274,1 +170731348601,227,0 +170731348654,228,0 +170731348707,227,0 +170731348759,227,0 +170731348807,226,0 +170731348860,227,0 +170731348913,227,0 +170731348966,228,0 +170731349015,227,0 +170731349068,227,0 +170731349118,227,0 +170731349170,227,0 +170731349223,227,0 +170731349276,227,0 +170731349329,227,0 +170731349382,227,0 +170731349431,228,0 +170731349484,230,0 +170731349537,274,1 +170731349617,240,0 +170731349665,229,0 +170731349717,227,0 +170731349770,227,0 +170731349823,228,0 +170731349876,228,0 +170731349929,227,0 +170731349981,228,0 +170731350034,228,0 +170731350087,227,0 +170731350140,228,0 +170731350192,228,0 +170731350245,228,0 +170731350298,227,0 +170731350351,227,0 +170731350403,228,0 +170731350456,229,0 +170731350509,229,0 +170731350562,249,0 +170731350610,257,0 +170731350659,237,0 +170731350709,229,0 +170731350762,229,0 +170731350814,228,0 +170731350867,227,0 +170731350920,227,0 +170731350973,227,0 +170731351021,227,0 +170731351073,227,0 +170731351126,228,0 +170731351179,228,0 +170731351232,228,0 +170731351284,228,0 +170731351337,228,0 +170731351390,228,0 +170731351442,228,0 +170731351495,228,0 +170731351548,229,0 +170731351601,258,0 +170731351649,285,1 +170731351735,232,0 +170731351785,228,0 +170731351838,227,0 +170731351890,228,0 +170731351943,227,0 +170731351996,228,0 +170731352049,227,0 +170731352101,227,0 +170731352154,227,0 +170731352207,228,0 +170731352260,228,0 +170731352312,228,0 +170731352365,227,0 +170731352418,227,0 +170731352471,229,0 +170731352523,228,0 +170731352576,228,0 +170731352629,231,0 +170731352682,276,1 +170731352762,239,0 +170731352810,228,0 +170731352863,227,0 +170731352916,228,0 +170731352969,228,0 +170731353021,228,0 +170731353074,228,0 +170731353127,228,0 +170731353180,228,0 +170731353227,227,0 +170731353280,228,0 +170731353333,227,0 +170731353386,227,0 +170731353438,228,0 +170731353491,228,0 +170731353544,228,0 +170731353597,228,0 +170731353649,229,0 +170731353702,272,1 +170731353781,258,0 +170731353829,231,0 +170731353882,228,0 +170731353935,228,0 +170731353987,227,0 +170731354040,228,0 +170731354093,228,0 +170731354146,227,0 +170731354199,227,0 +170731354251,228,0 +170731354304,227,0 +170731354357,228,0 +170731354406,228,0 +170731354459,228,0 +170731354512,227,0 +170731354565,228,0 +170731354617,228,0 +170731354670,228,0 +170731354723,231,0 +170731354776,270,1 +170731354860,239,0 +170731354908,228,0 +170731354960,227,0 +170731355013,228,0 +170731355066,228,0 +170731355119,228,0 +170731355172,228,0 +170731355220,227,0 +170731355272,229,0 +170731355320,228,0 +170731355373,227,0 +170731355426,227,0 +170731355479,228,0 +170731355526,228,0 +170731355579,228,0 +170731355632,228,0 +170731355685,228,0 +170731355737,229,0 +170731355790,236,0 +170731355838,269,0 +170731355888,234,0 +170731355935,230,0 +170731355988,229,0 +170731356041,228,0 +170731356094,228,0 +170731356146,227,0 +170731356199,228,0 +170731356252,228,0 +170731356305,229,0 +170731356357,228,0 +170731356410,228,0 +170731356463,228,0 +170731356515,228,0 +170731356568,228,0 +170731356621,227,0 +170731356673,228,0 +170731356726,228,0 +170731356779,228,0 +170731356831,232,0 +170731356884,265,0 +170731356932,248,0 +170731356980,230,0 +170731357033,228,0 +170731357085,228,0 +170731357138,228,0 +170731357191,227,0 +170731357243,228,0 +170731357296,227,0 +170731357349,227,0 +170731357401,227,0 +170731357454,228,0 +170731357507,227,0 +170731357560,227,0 +170731357612,228,0 +170731357665,228,0 +170731357718,228,0 +170731357770,228,0 +170731357823,228,0 +170731357876,232,0 +170731357928,258,0 +170731357976,280,1 +170731358058,228,0 +170731358111,228,0 +170731358163,227,0 +170731358216,228,0 +170731358264,227,0 +170731358316,227,0 +170731358369,228,0 +170731358422,227,0 +170731358474,228,0 +170731358527,228,0 +170731358580,228,0 +170731358633,228,0 +170731358685,228,0 +170731358738,227,0 +170731358791,228,0 +170731358843,228,0 +170731358896,230,0 +170731358949,263,0 +170731358996,272,1 +170731359077,230,0 +170731359129,228,0 +170731359182,228,0 +170731359235,228,0 +170731359287,228,0 +170731359340,228,0 +170731359393,228,0 +170731359445,227,0 +170731359498,227,0 +170731359551,227,0 +170731359603,228,0 +170731359656,228,0 +170731359709,228,0 +170731359761,228,0 +170731359814,228,0 +170731359867,227,0 +170731359919,228,0 +170731359972,231,0 +170731360025,263,0 +170731360073,283,1 +170731360156,228,0 +170731360209,228,0 +170731360261,228,0 +170731360314,228,0 +170731360367,227,0 +170731360419,228,0 +170731360472,228,0 +170731360525,228,0 +170731360577,227,0 +170731360630,227,0 +170731360683,228,0 +170731360735,228,0 +170731360788,228,0 +170731360841,228,0 +170731360893,228,0 +170731360946,229,0 +170731360999,230,0 +170731361052,262,0 +170731361099,275,1 +170731361180,229,0 +170731361233,228,0 +170731361285,227,0 +170731361338,228,0 +170731361391,228,0 +170731361443,228,0 +170731361496,227,0 +170731361549,227,0 +170731361601,228,0 +170731361654,228,0 +170731361707,228,0 +170731361759,227,0 +170731361812,228,0 +170731361860,228,0 +170731361913,228,0 +170731361965,228,0 +170731362018,228,0 +170731362071,231,0 +170731362124,286,1 +170731362207,236,0 +170731362255,228,0 +170731362303,228,0 +170731362356,228,0 +170731362409,227,0 +170731362461,228,0 +170731362514,228,0 +170731362567,227,0 +170731362619,227,0 +170731362672,228,0 +170731362725,228,0 +170731362777,227,0 +170731362830,228,0 +170731362883,228,0 +170731362935,228,0 +170731362988,228,0 +170731363041,228,0 +170731363094,229,0 +170731363146,269,0 +170731363196,268,0 +170731363243,238,0 +170731363291,229,0 +170731363344,227,0 +170731363397,228,0 +170731363449,228,0 +170731363502,227,0 +170731363555,228,0 +170731363608,228,0 +170731363660,228,0 +170731363713,228,0 +170731363765,228,0 +170731363818,227,0 +170731363871,227,0 +170731363924,227,0 +170731363976,227,0 +170731364029,228,0 +170731364077,227,0 +170731364130,228,0 +170731364182,239,0 +170731364235,274,1 +170731364322,229,0 +170731364375,227,0 +170731364428,228,0 +170731364480,227,0 +170731364533,227,0 +170731364586,227,0 +170731364638,227,0 +170731364691,228,0 +170731364739,227,0 +170731364792,228,0 +170731364844,228,0 +170731364897,228,0 +170731364950,227,0 +170731365002,227,0 +170731365055,227,0 +170731365108,228,0 +170731365160,228,0 +170731365213,230,0 +170731365266,260,0 +170731365314,282,1 +170731365396,228,0 +170731365449,228,0 +170731365502,228,0 +170731365554,228,0 +170731365607,227,0 +170731365660,227,0 +170731365712,227,0 +170731365765,227,0 +170731365818,228,0 +170731365870,227,0 +170731365923,228,0 +170731365976,228,0 +170731366024,227,0 +170731366072,227,0 +170731366124,228,0 +170731366177,228,0 +170731366230,229,0 +170731366282,232,0 +170731366330,274,1 +170731366416,239,0 +170731366466,228,0 +170731366518,228,0 +170731366571,228,0 +170731366624,228,0 +170731366677,228,0 +170731366729,228,0 +170731366782,228,0 +170731366835,227,0 +170731366887,228,0 +170731366940,228,0 +170731366993,227,0 +170731367045,227,0 +170731367098,227,0 +170731367151,227,0 +170731367204,228,0 +170731367256,229,0 +170731367309,230,0 +170731367362,260,0 +170731367409,284,1 +170731367485,229,0 +170731367538,228,0 +170731367591,227,0 +170731367643,227,0 +170731367696,227,0 +170731367749,227,0 +170731367801,229,0 +170731367854,228,0 +170731367907,228,0 +170731367959,227,0 +170731368007,227,0 +170731368060,227,0 +170731368113,227,0 +170731368166,227,0 +170731368218,227,0 +170731368271,228,0 +170731368324,229,0 +170731368376,231,0 +170731368429,283,1 +170731368507,236,0 +170731368555,228,0 +170731368608,228,0 +170731368661,227,0 +170731368713,228,0 +170731368766,228,0 +170731368819,228,0 +170731368871,228,0 +170731368924,228,0 +170731368977,228,0 +170731369030,228,0 +170731369082,228,0 +170731369135,227,0 +170731369188,228,0 +170731369240,227,0 +170731369293,228,0 +170731369346,229,0 +170731369398,229,0 +170731369451,257,0 +170731369499,264,0 +170731369547,237,0 +170731369595,228,0 +170731369647,228,0 +170731369700,228,0 +170731369753,228,0 +170731369805,228,0 +170731369858,226,0 +170731369911,227,0 +170731369963,228,0 +170731370016,228,0 +170731370069,228,0 +170731370121,228,0 +170731370174,228,0 +170731370227,228,0 +170731370279,228,0 +170731370332,228,0 +170731370385,228,0 +170731370437,228,0 +170731370490,265,0 +170731370538,269,0 +170731370586,229,0 +170731370633,229,0 +170731370681,228,0 +170731370734,228,0 +170731370782,227,0 +170731370835,227,0 +170731370887,228,0 +170731370940,227,0 +170731370993,229,0 +170731371041,227,0 +170731371093,227,0 +170731371146,229,0 +170731371199,227,0 +170731371251,228,0 +170731371304,228,0 +170731371357,228,0 +170731371409,228,0 +170731371462,228,0 +170731371515,231,0 +170731371567,267,0 +170731371615,267,0 +170731371663,231,0 +170731371716,229,0 +170731371769,228,0 +170731371821,228,0 +170731371874,229,0 +170731371923,228,0 +170731371976,227,0 +170731372029,228,0 +170731372081,228,0 +170731372134,228,0 +170731372187,228,0 +170731372239,228,0 +170731372292,228,0 +170731372340,227,0 +170731372393,228,0 +170731372445,228,0 +170731372498,227,0 +170731372551,229,0 +170731372603,272,1 +170731372686,226,0 +170731372735,229,0 +170731372788,228,0 +170731372841,227,0 +170731372893,228,0 +170731372946,229,0 +170731372999,227,0 +170731373052,227,0 +170731373104,228,0 +170731373152,228,0 +170731373205,228,0 +170731373258,228,0 +170731373311,228,0 +170731373363,228,0 +170731373416,228,0 +170731373469,227,0 +170731373522,228,0 +170731373574,229,0 +170731373627,252,0 +170731373675,274,1 +170731373757,235,0 +170731373805,228,0 +170731373858,228,0 +170731373911,228,0 +170731373963,227,0 +170731374016,228,0 +170731374069,228,0 +170731374121,227,0 +170731374174,228,0 +170731374227,228,0 +170731374280,228,0 +170731374333,228,0 +170731374385,228,0 +170731374438,228,0 +170731374491,228,0 +170731374543,228,0 +170731374596,229,0 +170731374649,230,0 +170731374702,254,0 +170731374751,264,0 +170731374799,239,0 +170731374849,228,0 +170731374901,227,0 +170731374954,227,0 +170731375007,228,0 +170731375060,228,0 +170731375112,228,0 +170731375160,228,0 +170731375213,228,0 +170731375266,227,0 +170731375319,228,0 +170731375371,227,0 +170731375424,227,0 +170731375477,228,0 +170731375529,228,0 +170731375582,228,0 +170731375635,228,0 +170731375687,228,0 +170731375740,259,0 +170731375788,263,0 +170731375836,230,0 +170731375885,229,0 +170731375938,228,0 +170731375991,229,0 +170731376043,227,0 +170731376096,228,0 +170731376149,228,0 +170731376201,229,0 +170731376254,227,0 +170731376307,228,0 +170731376360,227,0 +170731376412,228,0 +170731376465,227,0 +170731376518,227,0 +170731376571,227,0 +170731376623,227,0 +170731376676,227,0 +170731376729,229,0 +170731376782,275,1 +170731376866,240,0 +170731376916,230,0 +170731376969,228,0 +170731377021,227,0 +170731377074,227,0 +170731377127,228,0 +170731377180,228,0 +170731377232,228,0 +170731377285,227,0 +170731377338,228,0 +170731377391,228,0 +170731377443,228,0 +170731377496,228,0 +170731377549,228,0 +170731377602,227,0 +170731377654,228,0 +170731377707,229,0 +170731377760,228,0 +170731377813,232,0 +170731377865,283,1 +170731377945,240,0 +170731377993,229,0 +170731378046,228,0 +170731378099,228,0 +170731378151,228,0 +170731378204,229,0 +170731378257,228,0 +170731378310,227,0 +170731378362,228,0 +170731378415,228,0 +170731378468,228,0 +170731378521,228,0 +170731378574,228,0 +170731378626,227,0 +170731378679,228,0 +170731378732,227,0 +170731378785,229,0 +170731378837,229,0 +170731378890,269,0 +170731378938,281,1 +170731379017,232,0 +170731379065,228,0 +170731379117,228,0 +170731379170,228,0 +170731379223,228,0 +170731379276,227,0 +170731379328,228,0 +170731379381,227,0 +170731379434,228,0 +170731379487,228,0 +170731379539,227,0 +170731379592,228,0 +170731379645,228,0 +170731379698,228,0 +170731379750,228,0 +170731379803,228,0 +170731379856,229,0 +170731379908,232,0 +170731379961,273,1 +170731380044,239,0 +170731380092,229,0 +170731380144,228,0 +170731380197,228,0 +170731380250,228,0 +170731380303,228,0 +170731380355,228,0 +170731380408,228,0 +170731380461,228,0 +170731380514,228,0 +170731380567,228,0 +170731380619,227,0 +170731380672,228,0 +170731380725,227,0 +170731380773,227,0 +170731380825,228,0 +170731380878,228,0 +170731380931,229,0 +170731380984,240,0 +170731381036,273,1 +170731381119,232,0 +170731381169,228,0 +170731381222,227,0 +170731381274,227,0 +170731381327,227,0 +170731381380,228,0 +170731381433,228,0 +170731381486,228,0 +170731381538,227,0 +170731381591,228,0 +170731381644,227,0 +170731381696,227,0 +170731381749,227,0 +170731381802,227,0 +170731381854,227,0 +170731381904,228,0 +170731381957,228,0 +170731382009,231,0 +170731382062,258,0 +170731382110,265,0 +170731382158,232,0 +170731382206,227,0 +170731382259,228,0 +170731382312,228,0 +170731382364,227,0 +170731382417,227,0 +170731382470,228,0 +170731382519,227,0 +170731382567,227,0 +170731382620,228,0 +170731382673,228,0 +170731382725,227,0 +170731382778,227,0 +170731382831,228,0 +170731382884,227,0 +170731382937,228,0 +170731382989,228,0 +170731383042,229,0 +170731383095,269,0 +170731383143,282,1 +170731383234,227,0 +170731383286,226,0 +170731383336,227,0 +170731383389,227,0 +170731383441,228,0 +170731383494,227,0 +170731383543,227,0 +170731383595,227,0 +170731383643,227,0 +170731383696,227,0 +170731383749,227,0 +170731383802,228,0 +170731383855,227,0 +170731383907,227,0 +170731383960,227,0 +170731384013,227,0 +170731384066,229,0 +170731384118,266,0 +170731384166,277,1 +170731384246,231,0 +170731384299,228,0 +170731384351,228,0 +170731384404,227,0 +170731384457,227,0 +170731384509,227,0 +170731384562,227,0 +170731384615,227,0 +170731384668,228,0 +170731384720,227,0 +170731384773,227,0 +170731384826,228,0 +170731384879,228,0 +170731384931,227,0 +170731384984,228,0 +170731385037,227,0 +170731385085,228,0 +170731385137,230,0 +170731385190,277,1 +170731385268,227,0 +170731385316,228,0 +170731385369,227,0 +170731385422,227,0 +170731385474,228,0 +170731385527,228,0 +170731385580,229,0 +170731385629,226,0 +170731385682,227,0 +170731385735,227,0 +170731385787,227,0 +170731385840,228,0 +170731385893,228,0 +170731385946,228,0 +170731385998,227,0 +170731386051,228,0 +170731386104,227,0 +170731386152,228,0 +170731386201,232,0 +170731386249,270,1 +170731386335,239,0 +170731386383,227,0 +170731386435,227,0 +170731386488,228,0 +170731386541,227,0 +170731386593,227,0 +170731386646,228,0 +170731386699,228,0 +170731386752,227,0 +170731386804,227,0 +170731386857,227,0 +170731386910,228,0 +170731386963,227,0 +170731387015,227,0 +170731387068,227,0 +170731387121,227,0 +170731387174,228,0 +170731387226,230,0 +170731387279,285,1 +170731387355,258,0 +170731387405,230,0 +170731387457,229,0 +170731387510,228,0 +170731387563,227,0 +170731387616,227,0 +170731387668,227,0 +170731387721,226,0 +170731387774,228,0 +170731387827,228,0 +170731387880,227,0 +170731387932,228,0 +170731387985,228,0 +170731388038,227,0 +170731388091,228,0 +170731388143,228,0 +170731388196,227,0 +170731388249,228,0 +170731388302,231,0 +170731388354,273,1 +170731388435,239,0 +170731388483,228,0 +170731388535,227,0 +170731388588,228,0 +170731388641,227,0 +170731388694,227,0 +170731388746,227,0 +170731388799,228,0 +170731388852,228,0 +170731388904,228,0 +170731388957,227,0 +170731389010,228,0 +170731389062,227,0 +170731389115,228,0 +170731389168,228,0 +170731389220,229,0 +170731389273,228,0 +170731389321,229,0 +170731389374,261,0 +170731389421,274,1 +170731389500,233,0 +170731389548,228,0 +170731389600,228,0 +170731389653,228,0 +170731389701,228,0 +170731389754,228,0 +170731389806,228,0 +170731389859,228,0 +170731389912,228,0 +170731389964,228,0 +170731390017,228,0 +170731390070,227,0 +170731390123,228,0 +170731390175,228,0 +170731390228,227,0 +170731390281,228,0 +170731390334,228,0 +170731390386,230,0 +170731390439,264,0 +170731390487,274,1 +170731390562,228,0 +170731390615,228,0 +170731390668,227,0 +170731390720,227,0 +170731390773,228,0 +170731390826,228,0 +170731390879,228,0 +170731390931,228,0 +170731390984,228,0 +170731391037,227,0 +170731391090,227,0 +170731391142,227,0 +170731391195,228,0 +170731391248,228,0 +170731391300,228,0 +170731391353,229,0 +170731391401,228,0 +170731391454,232,0 +170731391507,280,1 +170731391587,239,0 +170731391635,228,0 +170731391688,228,0 +170731391741,227,0 +170731391794,227,0 +170731391846,228,0 +170731391899,227,0 +170731391952,228,0 +170731392005,228,0 +170731392057,228,0 +170731392110,227,0 +170731392163,228,0 +170731392216,228,0 +170731392268,228,0 +170731392321,228,0 +170731392374,228,0 +170731392427,229,0 +170731392479,231,0 +170731392532,282,1 +170731392612,228,0 +170731392662,229,0 +170731392714,228,0 +170731392767,228,0 +170731392820,228,0 +170731392873,228,0 +170731392925,228,0 +170731392978,227,0 +170731393031,227,0 +170731393084,227,0 +170731393137,228,0 +170731393189,228,0 +170731393242,228,0 +170731393295,228,0 +170731393347,228,0 +170731393400,228,0 +170731393453,228,0 +170731393506,229,0 +170731393558,235,0 +170731393611,284,1 +170731393694,236,0 +170731393744,228,0 +170731393796,229,0 +170731393849,228,0 +170731393902,228,0 +170731393954,227,0 +170731394007,228,0 +170731394060,228,0 +170731394113,228,0 +170731394166,228,0 +170731394218,229,0 +170731394271,228,0 +170731394324,227,0 +170731394376,228,0 +170731394429,228,0 +170731394482,227,0 +170731394534,229,0 +170731394587,229,0 +170731394640,296,1 +170731394723,248,0 +170731394771,228,0 +170731394824,227,0 +170731394876,228,0 +170731394929,227,0 +170731394982,227,0 +170731395035,228,0 +170731395087,228,0 +170731395140,228,0 +170731395193,228,0 +170731395246,228,0 +170731395299,227,0 +170731395351,227,0 +170731395404,229,0 +170731395457,227,0 +170731395510,229,0 +170731395562,229,0 +170731395615,229,0 +170731395668,287,1 +170731395746,266,0 +170731395794,234,0 +170731395843,228,0 +170731395896,228,0 +170731395949,227,0 +170731396002,228,0 +170731396054,228,0 +170731396107,228,0 +170731396155,228,0 +170731396208,228,0 +170731396261,228,0 +170731396313,228,0 +170731396366,228,0 +170731396419,228,0 +170731396472,227,0 +170731396524,227,0 +170731396577,228,0 +170731396630,228,0 +170731396682,230,0 +170731396735,263,0 +170731396783,274,1 +170731396868,228,0 +170731396920,228,0 +170731396973,228,0 +170731397026,228,0 +170731397078,228,0 +170731397131,228,0 +170731397184,227,0 +170731397237,228,0 +170731397290,228,0 +170731397342,228,0 +170731397395,228,0 +170731397448,227,0 +170731397501,228,0 +170731397553,228,0 +170731397606,227,0 +170731397659,227,0 +170731397712,228,0 +170731397764,248,0 +170731397814,279,1 +170731397894,234,0 +170731397947,228,0 +170731398000,227,0 +170731398057,227,0 +170731398110,227,0 +170731398163,227,0 +170731398216,227,0 +170731398268,227,0 +170731398321,228,0 +170731398374,228,0 +170731398427,227,0 +170731398479,228,0 +170731398532,228,0 +170731398585,228,0 +170731398637,227,0 +170731398690,228,0 +170731398743,229,0 +170731398795,233,0 +170731398848,271,1 +170731398931,240,0 +170731398979,228,0 +170731399032,227,0 +170731399085,228,0 +170731399137,228,0 +170731399190,228,0 +170731399240,228,0 +170731399292,228,0 +170731399345,228,0 +170731399398,228,0 +170731399451,227,0 +170731399503,228,0 +170731399553,228,0 +170731399606,228,0 +170731399658,228,0 +170731399711,227,0 +170731399764,228,0 +170731399817,230,0 +170731399869,260,0 +170731399917,270,1 +170731400002,230,0 +170731400055,228,0 +170731400108,228,0 +170731400161,227,0 +170731400213,228,0 +170731400266,227,0 +170731400319,228,0 +170731400372,227,0 +170731400424,228,0 +170731400477,227,0 +170731400530,228,0 +170731400583,228,0 +170731400635,228,0 +170731400688,228,0 +170731400741,227,0 +170731400794,229,0 +170731400846,229,0 +170731400899,232,0 +170731400952,276,1 +170731401030,242,0 +170731401080,228,0 +170731401133,228,0 +170731401185,228,0 +170731401238,227,0 +170731401291,228,0 +170731401344,228,0 +170731401396,228,0 +170731401449,228,0 +170731401502,227,0 +170731401554,228,0 +170731401607,228,0 +170731401660,228,0 +170731401713,227,0 +170731401761,228,0 +170731401813,228,0 +170731401866,228,0 +170731401919,228,0 +170731401972,257,0 +170731402020,278,1 +170731402102,231,0 +170731402155,228,0 +170731402208,228,0 +170731402260,227,0 +170731402313,228,0 +170731402366,228,0 +170731402419,228,0 +170731402467,228,0 +170731402516,228,0 +170731402569,227,0 +170731402621,228,0 +170731402674,228,0 +170731402727,228,0 +170731402780,228,0 +170731402832,227,0 +170731402885,228,0 +170731402938,228,0 +170731402990,232,0 +170731403043,271,1 +170731403124,242,0 +170731403172,228,0 +170731403225,228,0 +170731403277,228,0 +170731403330,228,0 +170731403383,228,0 +170731403436,228,0 +170731403489,228,0 +170731403541,228,0 +170731403591,227,0 +170731403644,228,0 +170731403696,228,0 +170731403749,228,0 +170731403802,227,0 +170731403855,227,0 +170731403907,228,0 +170731403960,228,0 +170731404013,228,0 +170731404066,257,0 +170731404115,260,0 +170731404163,225,0 +170731404211,229,0 +170731404264,228,0 +170731404317,228,0 +170731404369,228,0 +170731404422,228,0 +170731404475,227,0 +170731404528,228,0 +170731404580,228,0 +170731404633,228,0 +170731404686,228,0 +170731404739,228,0 +170731404791,227,0 +170731404844,228,0 +170731404897,228,0 +170731404950,228,0 +170731405002,228,0 +170731405055,228,0 +170731405108,243,0 +170731405157,270,1 +170731405240,236,0 +170731405289,228,0 +170731405342,228,0 +170731405394,227,0 +170731405447,228,0 +170731405500,228,0 +170731405553,227,0 +170731405605,227,0 +170731405658,228,0 +170731405711,227,0 +170731405764,228,0 +170731405816,228,0 +170731405869,228,0 +170731405922,228,0 +170731405975,228,0 +170731406027,228,0 +170731406080,228,0 +170731406133,230,0 +170731406186,255,0 +170731406235,272,1 +170731406316,228,0 +170731406369,228,0 +170731406417,227,0 +170731406470,228,0 +170731406522,228,0 +170731406575,228,0 +170731406628,229,0 +170731406676,228,0 +170731406729,228,0 +170731406782,227,0 +170731406834,228,0 +170731406887,228,0 +170731406940,228,0 +170731406993,228,0 +170731407045,228,0 +170731407098,228,0 +170731407151,229,0 +170731407203,236,0 +170731407251,278,1 +170731407340,232,0 +170731407389,228,0 +170731407442,228,0 +170731407494,228,0 +170731407547,227,0 +170731407600,228,0 +170731407653,228,0 +170731407705,227,0 +170731407758,228,0 +170731407811,228,0 +170731407864,228,0 +170731407917,228,0 +170731407969,228,0 +170731408022,228,0 +170731408075,228,0 +170731408128,228,0 +170731408180,228,0 +170731408233,230,0 +170731408286,278,1 +170731408363,226,0 +170731408412,229,0 +170731408465,227,0 +170731408518,227,0 +170731408570,228,0 +170731408623,228,0 +170731408676,228,0 +170731408729,227,0 +170731408782,228,0 +170731408834,227,0 +170731408887,228,0 +170731408940,228,0 +170731408992,228,0 +170731409045,227,0 +170731409098,228,0 +170731409150,228,0 +170731409203,228,0 +170731409256,228,0 +170731409309,247,0 +170731409361,273,1 +170731409440,233,0 +170731409489,228,0 +170731409542,228,0 +170731409595,227,0 +170731409648,228,0 +170731409700,228,0 +170731409753,228,0 +170731409806,228,0 +170731409859,228,0 +170731409911,228,0 +170731409964,228,0 +170731410017,228,0 +170731410070,227,0 +170731410122,228,0 +170731410175,228,0 +170731410228,228,0 +170731410281,229,0 +170731410333,230,0 +170731410386,291,1 +170731410471,241,0 +170731410519,228,0 +170731410572,228,0 +170731410625,228,0 +170731410677,228,0 +170731410730,228,0 +170731410783,227,0 +170731410836,228,0 +170731410889,227,0 +170731410937,228,0 +170731410989,228,0 +170731411042,228,0 +170731411095,227,0 +170731411148,228,0 +170731411200,229,0 +170731411253,228,0 +170731411306,228,0 +170731411358,229,0 +170731411411,262,0 +170731411459,276,1 +170731411535,237,0 +170731411583,228,0 +170731411636,228,0 +170731411688,227,0 +170731411741,227,0 +170731411794,227,0 +170731411846,228,0 +170731411899,228,0 +170731411952,228,0 +170731412005,227,0 +170731412057,228,0 +170731412110,228,0 +170731412163,228,0 +170731412216,228,0 +170731412268,227,0 +170731412321,227,0 +170731412374,228,0 +170731412427,230,0 +170731412479,261,0 +170731412527,265,0 +170731412575,241,0 +170731412625,229,0 +170731412678,228,0 +170731412730,228,0 +170731412783,228,0 +170731412836,228,0 +170731412889,227,0 +170731412941,228,0 +170731412994,228,0 +170731413047,228,0 +170731413099,228,0 +170731413152,228,0 +170731413205,228,0 +170731413258,227,0 +170731413310,227,0 +170731413363,227,0 +170731413416,228,0 +170731413464,229,0 +170731413517,267,0 +170731413565,270,1 +170731413646,229,0 +170731413699,228,0 +170731413751,228,0 +170731413804,228,0 +170731413857,227,0 +170731413910,228,0 +170731413963,228,0 +170731414015,228,0 +170731414068,228,0 +170731414121,227,0 +170731414173,227,0 +170731414226,228,0 +170731414279,228,0 +170731414331,227,0 +170731414384,228,0 +170731414437,228,0 +170731414490,228,0 +170731414542,231,0 +170731414595,273,1 +170731414681,238,0 +170731414730,228,0 +170731414783,228,0 +170731414836,228,0 +170731414889,228,0 +170731414941,229,0 +170731414994,227,0 +170731415047,227,0 +170731415100,228,0 +170731415152,228,0 +170731415205,228,0 +170731415258,228,0 +170731415311,227,0 +170731415359,228,0 +170731415411,228,0 +170731415464,227,0 +170731415517,228,0 +170731415570,229,0 +170731415622,275,1 +170731415701,234,0 +170731415749,229,0 +170731415801,227,0 +170731415854,228,0 +170731415907,228,0 +170731415960,227,0 +170731416012,228,0 +170731416065,228,0 +170731416118,228,0 +170731416170,227,0 +170731416223,228,0 +170731416276,228,0 +170731416329,228,0 +170731416381,227,0 +170731416434,228,0 +170731416487,227,0 +170731416540,228,0 +170731416592,228,0 +170731416645,232,0 +170731416697,264,0 +170731416745,266,0 +170731416793,232,0 +170731416841,228,0 +170731416894,227,0 +170731416947,227,0 +170731416999,228,0 +170731417052,228,0 +170731417105,227,0 +170731417158,228,0 +170731417210,228,0 +170731417263,228,0 +170731417316,228,0 +170731417369,227,0 +170731417421,227,0 +170731417474,228,0 +170731417527,227,0 +170731417580,228,0 +170731417632,229,0 +170731417685,230,0 +170731417738,262,0 +170731417787,285,1 +170731417865,229,0 +170731417917,228,0 +170731417970,228,0 +170731418023,228,0 +170731418076,228,0 +170731418128,227,0 +170731418181,228,0 +170731418229,228,0 +170731418282,228,0 +170731418335,228,0 +170731418387,227,0 +170731418440,228,0 +170731418493,227,0 +170731418546,227,0 +170731418598,228,0 +170731418651,227,0 +170731418704,228,0 +170731418757,245,0 +170731418806,261,0 +170731418854,230,0 +170731418902,228,0 +170731418955,227,0 +170731419008,228,0 +170731419060,227,0 +170731419113,228,0 +170731419166,228,0 +170731419218,227,0 +170731419271,228,0 +170731419324,228,0 +170731419377,228,0 +170731419430,227,0 +170731419482,228,0 +170731419535,228,0 +170731419588,228,0 +170731419640,228,0 +170731419693,228,0 +170731419746,228,0 +170731419799,232,0 +170731419851,268,0 +170731419901,229,0 +170731419949,230,0 +170731420002,228,0 +170731420054,228,0 +170731420107,227,0 +170731420160,228,0 +170731420213,228,0 +170731420265,228,0 +170731420313,228,0 +170731420366,227,0 +170731420419,228,0 +170731420472,227,0 +170731420524,227,0 +170731420577,227,0 +170731420630,228,0 +170731420683,228,0 +170731420735,227,0 +170731420788,228,0 +170731420841,231,0 +170731420889,275,1 +170731420971,242,0 +170731421019,228,0 +170731421072,228,0 +170731421124,228,0 +170731421177,228,0 +170731421230,228,0 +170731421283,227,0 +170731421335,227,0 +170731421388,227,0 +170731421441,227,0 +170731421494,227,0 +170731421546,227,0 +170731421599,228,0 +170731421652,228,0 +170731421705,228,0 +170731421757,228,0 +170731421810,227,0 +170731421863,229,0 +170731421920,253,0 +170731421970,262,0 +170731422018,241,0 +170731422067,229,0 +170731422117,228,0 +170731422170,227,0 +170731422222,229,0 +170731422275,228,0 +170731422328,227,0 +170731422381,228,0 +170731422433,228,0 +170731422486,228,0 +170731422539,227,0 +170731422592,228,0 +170731422645,228,0 +170731422697,227,0 +170731422750,227,0 +170731422803,228,0 +170731422856,227,0 +170731422908,229,0 +170731422961,240,0 +170731423011,275,1 +170731423093,231,0 +170731423146,228,0 +170731423199,228,0 +170731423251,228,0 +170731423304,228,0 +170731423357,228,0 +170731423410,227,0 +170731423463,227,0 +170731423515,227,0 +170731423568,228,0 +170731423621,228,0 +170731423674,228,0 +170731423726,228,0 +170731423779,228,0 +170731423832,228,0 +170731423885,228,0 +170731423937,228,0 +170731423990,231,0 +170731424043,260,0 +170731424091,282,1 +170731424167,229,0 +170731424219,228,0 +170731424272,227,0 +170731424325,227,0 +170731424378,227,0 +170731424430,227,0 +170731424483,228,0 +170731424531,227,0 +170731424584,227,0 +170731424637,228,0 +170731424689,227,0 +170731424742,227,0 +170731424795,229,0 +170731424847,228,0 +170731424900,227,0 +170731424953,228,0 +170731425005,229,0 +170731425058,260,0 +170731425106,277,1 +170731425194,231,0 +170731425242,228,0 +170731425295,228,0 +170731425347,228,0 +170731425400,228,0 +170731425453,228,0 +170731425506,228,0 +170731425558,228,0 +170731425611,227,0 +170731425664,228,0 +170731425717,228,0 +170731425769,227,0 +170731425822,227,0 +170731425875,227,0 +170731425928,228,0 +170731425980,228,0 +170731426033,228,0 +170731426086,233,0 +170731426138,280,1 +170731426217,242,0 +170731426267,228,0 +170731426319,228,0 +170731426372,228,0 +170731426425,227,0 +170731426478,228,0 +170731426530,227,0 +170731426583,227,0 +170731426636,227,0 +170731426689,228,0 +170731426741,228,0 +170731426794,228,0 +170731426847,228,0 +170731426900,227,0 +170731426952,227,0 +170731427000,228,0 +170731427053,229,0 +170731427106,228,0 +170731427159,256,0 +170731427207,273,1 +170731427288,234,0 +170731427340,227,0 +170731427393,228,0 +170731427446,228,0 +170731427499,228,0 +170731427551,227,0 +170731427604,228,0 +170731427657,228,0 +170731427710,227,0 +170731427762,227,0 +170731427815,227,0 +170731427868,228,0 +170731427921,228,0 +170731427973,227,0 +170731428026,227,0 +170731428079,228,0 +170731428132,228,0 +170731428184,234,0 +170731428237,259,0 +170731428285,272,1 +170731428363,227,0 +170731428416,228,0 +170731428468,228,0 +170731428521,227,0 +170731428574,228,0 +170731428627,227,0 +170731428679,228,0 +170731428732,227,0 +170731428785,228,0 +170731428838,228,0 +170731428890,227,0 +170731428943,227,0 +170731428996,227,0 +170731429049,228,0 +170731429102,228,0 +170731429150,228,0 +170731429202,228,0 +170731429255,281,1 +170731429335,281,1 +170731429415,228,0 +170731429468,228,0 +170731429521,228,0 +170731429573,228,0 +170731429626,228,0 +170731429674,227,0 +170731429727,227,0 +170731429780,228,0 +170731429832,227,0 +170731429885,228,0 +170731429938,227,0 +170731429991,228,0 +170731430043,228,0 +170731430096,227,0 +170731430149,228,0 +170731430202,228,0 +170731430254,229,0 +170731430307,258,0 +170731430355,272,1 +170731430430,235,0 +170731430483,228,0 +170731430536,228,0 +170731430588,228,0 +170731430641,228,0 +170731430694,227,0 +170731430747,228,0 +170731430799,228,0 +170731430852,228,0 +170731430905,228,0 +170731430958,227,0 +170731431011,227,0 +170731431059,227,0 +170731431111,227,0 +170731431164,227,0 +170731431217,228,0 +170731431270,228,0 +170731431323,231,0 +170731431375,290,1 +170731431455,237,0 +170731431503,228,0 +170731431556,228,0 +170731431608,228,0 +170731431661,228,0 +170731431714,227,0 +170731431766,228,0 +170731431819,228,0 +170731431872,227,0 +170731431924,228,0 +170731431977,228,0 +170731432030,227,0 +170731432082,228,0 +170731432135,228,0 +170731432188,228,0 +170731432240,228,0 +170731432293,228,0 +170731432346,228,0 +170731432398,267,0 +170731432446,267,0 +170731432494,237,0 +170731432544,229,0 +170731432596,228,0 +170731432649,228,0 +170731432702,228,0 +170731432754,228,0 +170731432807,228,0 +170731432860,228,0 +170731432912,228,0 +170731432965,228,0 +170731433018,228,0 +170731433070,228,0 +170731433123,228,0 +170731433176,228,0 +170731433228,228,0 +170731433281,228,0 +170731433334,228,0 +170731433387,228,0 +170731433439,247,0 +170731433492,275,1 +170731433568,243,0 +170731433616,229,0 +170731433669,228,0 +170731433721,228,0 +170731433774,228,0 +170731433827,228,0 +170731433880,227,0 +170731433932,228,0 +170731433985,227,0 +170731434038,227,0 +170731434091,228,0 +170731434143,228,0 +170731434196,228,0 +170731434249,228,0 +170731434301,228,0 +170731434354,228,0 +170731434407,228,0 +170731434460,229,0 +170731434512,272,1 +170731434595,231,0 +170731434643,229,0 +170731434696,228,0 +170731434749,227,0 +170731434801,228,0 +170731434854,228,0 +170731434907,227,0 +170731434960,228,0 +170731435012,228,0 +170731435065,228,0 +170731435118,228,0 +170731435171,227,0 +170731435223,228,0 +170731435276,227,0 +170731435329,228,0 +170731435382,227,0 +170731435434,228,0 +170731435487,228,0 +170731435540,244,0 +170731435588,280,1 +170731435669,236,0 +170731435718,227,0 +170731435771,227,0 +170731435824,228,0 +170731435877,227,0 +170731435929,227,0 +170731435982,228,0 +170731436035,228,0 +170731436088,227,0 +170731436140,227,0 +170731436193,227,0 +170731436246,228,0 +170731436298,227,0 +170731436351,227,0 +170731436404,228,0 +170731436457,228,0 +170731436509,228,0 +170731436562,229,0 +170731436615,285,1 +170731436696,226,0 +170731436744,229,0 +170731436796,228,0 +170731436849,228,0 +170731436902,229,0 +170731436951,227,0 +170731437004,228,0 +170731437057,228,0 +170731437110,228,0 +170731437162,228,0 +170731437215,228,0 +170731437268,228,0 +170731437321,228,0 +170731437373,228,0 +170731437426,228,0 +170731437479,228,0 +170731437532,228,0 +170731437584,229,0 +170731437637,233,0 +170731437690,275,1 +170731437775,234,0 +170731437823,228,0 +170731437876,228,0 +170731437929,227,0 +170731437981,228,0 +170731438034,228,0 +170731438087,228,0 +170731438139,228,0 +170731438192,228,0 +170731438245,227,0 +170731438297,227,0 +170731438350,228,0 +170731438403,228,0 +170731438455,228,0 +170731438508,228,0 +170731438561,228,0 +170731438614,228,0 +170731438666,230,0 +170731438714,274,1 +170731438803,243,0 +170731438851,228,0 +170731438903,228,0 +170731438956,228,0 +170731439009,228,0 +170731439061,228,0 +170731439114,228,0 +170731439167,228,0 +170731439219,228,0 +170731439272,229,0 +170731439325,228,0 +170731439377,228,0 +170731439430,228,0 +170731439483,228,0 +170731439536,228,0 +170731439588,228,0 +170731439641,228,0 +170731439694,229,0 +170731439747,267,0 +170731439794,271,1 +170731439868,242,0 +170731439917,228,0 +170731439970,228,0 +170731440023,228,0 diff --git a/laser_value/0208-00.csv b/laser_value/0208-00.csv new file mode 100644 index 0000000..21b25b1 --- /dev/null +++ b/laser_value/0208-00.csv @@ -0,0 +1,7092 @@ +timestamp,laser_value,event +170731440076,229,0 +170731440129,228,0 +170731440182,228,0 +170731440234,228,0 +170731440287,228,0 +170731440340,228,0 +170731440392,227,0 +170731440445,228,0 +170731440498,228,0 +170731440550,227,0 +170731440603,228,0 +170731440656,228,0 +170731440708,228,0 +170731440761,230,0 +170731440814,274,1 +170731440895,237,0 +170731440943,229,0 +170731440995,228,0 +170731441048,228,0 +170731441101,228,0 +170731441153,228,0 +170731441206,229,0 +170731441259,228,0 +170731441312,228,0 +170731441364,229,0 +170731441417,229,0 +170731441470,228,0 +170731441522,228,0 +170731441575,228,0 +170731441628,228,0 +170731441680,228,0 +170731441733,228,0 +170731441786,229,0 +170731441839,251,0 +170731441888,274,1 +170731441968,237,0 +170731442016,228,0 +170731442069,228,0 +170731442121,227,0 +170731442174,228,0 +170731442222,228,0 +170731442275,228,0 +170731442327,228,0 +170731442380,228,0 +170731442433,228,0 +170731442485,228,0 +170731442538,228,0 +170731442591,228,0 +170731442644,228,0 +170731442696,228,0 +170731442749,228,0 +170731442802,228,0 +170731442855,230,0 +170731442907,265,0 +170731442957,271,1 +170731443038,228,0 +170731443091,228,0 +170731443144,228,0 +170731443192,228,0 +170731443245,228,0 +170731443297,228,0 +170731443345,227,0 +170731443398,228,0 +170731443451,227,0 +170731443504,228,0 +170731443556,228,0 +170731443609,228,0 +170731443662,227,0 +170731443715,227,0 +170731443767,228,0 +170731443820,228,0 +170731443873,228,0 +170731443925,235,0 +170731443978,274,1 +170731444055,242,0 +170731444103,228,0 +170731444156,228,0 +170731444208,228,0 +170731444261,228,0 +170731444314,228,0 +170731444366,228,0 +170731444419,228,0 +170731444472,228,0 +170731444524,228,0 +170731444577,228,0 +170731444630,227,0 +170731444682,228,0 +170731444735,228,0 +170731444788,229,0 +170731444841,228,0 +170731444893,228,0 +170731444946,229,0 +170731444994,250,0 +170731445042,258,0 +170731445089,224,0 +170731445137,229,0 +170731445190,229,0 +170731445243,228,0 +170731445295,228,0 +170731445348,228,0 +170731445401,228,0 +170731445453,228,0 +170731445506,227,0 +170731445559,228,0 +170731445612,229,0 +170731445664,228,0 +170731445717,228,0 +170731445770,228,0 +170731445822,228,0 +170731445875,228,0 +170731445928,228,0 +170731445980,228,0 +170731446033,236,0 +170731446086,286,1 +170731446168,241,0 +170731446216,229,0 +170731446269,228,0 +170731446321,228,0 +170731446374,228,0 +170731446427,228,0 +170731446479,227,0 +170731446532,228,0 +170731446585,227,0 +170731446637,228,0 +170731446690,228,0 +170731446743,228,0 +170731446795,228,0 +170731446848,228,0 +170731446901,229,0 +170731446954,229,0 +170731447007,228,0 +170731447059,231,0 +170731447112,269,0 +170731447160,281,1 +170731447245,228,0 +170731447298,229,0 +170731447351,228,0 +170731447403,228,0 +170731447456,228,0 +170731447509,228,0 +170731447561,229,0 +170731447614,228,0 +170731447667,229,0 +170731447719,228,0 +170731447772,229,0 +170731447825,228,0 +170731447877,228,0 +170731447930,229,0 +170731447983,227,0 +170731448036,229,0 +170731448088,230,0 +170731448141,253,0 +170731448189,288,1 +170731448270,234,0 +170731448323,229,0 +170731448376,228,0 +170731448429,228,0 +170731448481,228,0 +170731448534,228,0 +170731448587,228,0 +170731448639,229,0 +170731448692,228,0 +170731448745,228,0 +170731448798,228,0 +170731448851,228,0 +170731448903,228,0 +170731448956,228,0 +170731449009,228,0 +170731449061,228,0 +170731449114,229,0 +170731449167,232,0 +170731449220,287,1 +170731449298,236,0 +170731449346,231,0 +170731449398,230,0 +170731449451,229,0 +170731449504,229,0 +170731449557,230,0 +170731449609,230,0 +170731449662,230,0 +170731449715,229,0 +170731449768,230,0 +170731449820,229,0 +170731449873,230,0 +170731449926,230,0 +170731449979,229,0 +170731450036,230,0 +170731450089,230,0 +170731450142,230,0 +170731450194,231,0 +170731450247,304,1 +170731450332,237,0 +170731450380,231,0 +170731450433,230,0 +170731450486,230,0 +170731450538,230,0 +170731450591,230,0 +170731450644,229,0 +170731450697,230,0 +170731450749,230,0 +170731450802,229,0 +170731450855,229,0 +170731450908,229,0 +170731450960,228,0 +170731451013,231,0 +170731451066,229,0 +170731451119,230,0 +170731451171,230,0 +170731451224,231,0 +170731451282,238,0 +170731451334,288,1 +170731451411,240,0 +170731451464,231,0 +170731451521,230,0 +170731451574,230,0 +170731451632,231,0 +170731451684,231,0 +170731451737,231,0 +170731451790,230,0 +170731451842,231,0 +170731451900,230,0 +170731451952,230,0 +170731452005,230,0 +170731452058,230,0 +170731452115,231,0 +170731452173,230,0 +170731452226,231,0 +170731452278,231,0 +170731452331,236,0 +170731452384,276,1 +170731452462,249,0 +170731452510,232,0 +170731452563,231,0 +170731452616,230,0 +170731452668,230,0 +170731452721,231,0 +170731452774,231,0 +170731452826,231,0 +170731452879,231,0 +170731452932,230,0 +170731452984,230,0 +170731453042,230,0 +170731453095,231,0 +170731453147,231,0 +170731453200,231,0 +170731453253,231,0 +170731453310,231,0 +170731453363,234,0 +170731453415,269,0 +170731453463,275,1 +170731453545,231,0 +170731453597,231,0 +170731453650,231,0 +170731453708,231,0 +170731453760,232,0 +170731453813,231,0 +170731453866,231,0 +170731453918,231,0 +170731453976,230,0 +170731454029,231,0 +170731454081,232,0 +170731454134,231,0 +170731454187,231,0 +170731454239,231,0 +170731454297,231,0 +170731454349,232,0 +170731454402,234,0 +170731454460,271,1 +170731454545,250,0 +170731454595,232,0 +170731454647,231,0 +170731454700,231,0 +170731454753,231,0 +170731454810,231,0 +170731454868,232,0 +170731454925,231,0 +170731454978,231,0 +170731455031,231,0 +170731455084,231,0 +170731455141,231,0 +170731455194,230,0 +170731455246,231,0 +170731455299,231,0 +170731455357,231,0 +170731455410,231,0 +170731455462,234,0 +170731455515,273,1 +170731455597,240,0 +170731455645,231,0 +170731455698,230,0 +170731455751,230,0 +170731455804,230,0 +170731455856,232,0 +170731455909,230,0 +170731455962,230,0 +170731456015,230,0 +170731456067,230,0 +170731456120,230,0 +170731456173,231,0 +170731456226,231,0 +170731456278,230,0 +170731456331,230,0 +170731456384,230,0 +170731456437,230,0 +170731456490,231,0 +170731456542,244,0 +170731456590,281,1 +170731456673,234,0 +170731456726,230,0 +170731456778,230,0 +170731456831,230,0 +170731456884,230,0 +170731456937,229,0 +170731456989,230,0 +170731457047,230,0 +170731457104,230,0 +170731457157,230,0 +170731457210,230,0 +170731457262,230,0 +170731457315,230,0 +170731457368,230,0 +170731457421,231,0 +170731457473,231,0 +170731457526,231,0 +170731457579,235,0 +170731457632,290,1 +170731457716,237,0 +170731457764,231,0 +170731457817,231,0 +170731457870,231,0 +170731457922,230,0 +170731457975,229,0 +170731458028,229,0 +170731458080,229,0 +170731458133,230,0 +170731458186,230,0 +170731458239,230,0 +170731458291,231,0 +170731458349,230,0 +170731458402,230,0 +170731458454,231,0 +170731458507,230,0 +170731458560,231,0 +170731458612,234,0 +170731458665,290,1 +170731458739,237,0 +170731458787,232,0 +170731458839,230,0 +170731458892,230,0 +170731458945,229,0 +170731458998,230,0 +170731459051,229,0 +170731459103,230,0 +170731459161,230,0 +170731459214,229,0 +170731459266,230,0 +170731459319,230,0 +170731459372,229,0 +170731459425,230,0 +170731459477,230,0 +170731459535,229,0 +170731459587,230,0 +170731459640,231,0 +170731459693,246,0 +170731459742,278,1 +170731459821,235,0 +170731459874,230,0 +170731459927,230,0 +170731459980,230,0 +170731460033,230,0 +170731460085,230,0 +170731460138,231,0 +170731460191,231,0 +170731460243,230,0 +170731460296,230,0 +170731460349,229,0 +170731460402,230,0 +170731460455,229,0 +170731460507,229,0 +170731460560,230,0 +170731460613,230,0 +170731460666,230,0 +170731460718,233,0 +170731460771,275,1 +170731460848,252,0 +170731460896,230,0 +170731460949,230,0 +170731461007,229,0 +170731461059,230,0 +170731461117,229,0 +170731461170,230,0 +170731461222,231,0 +170731461275,230,0 +170731461328,230,0 +170731461381,229,0 +170731461433,230,0 +170731461486,229,0 +170731461544,230,0 +170731461596,230,0 +170731461649,230,0 +170731461702,231,0 +170731461754,233,0 +170731461807,282,1 +170731461892,232,0 +170731461941,231,0 +170731461994,229,0 +170731462047,230,0 +170731462100,229,0 +170731462152,230,0 +170731462205,230,0 +170731462258,230,0 +170731462311,231,0 +170731462363,229,0 +170731462416,230,0 +170731462469,230,0 +170731462522,231,0 +170731462574,230,0 +170731462627,230,0 +170731462680,230,0 +170731462732,230,0 +170731462785,231,0 +170731462843,258,0 +170731462891,277,1 +170731462974,234,0 +170731463027,232,0 +170731463080,232,0 +170731463137,232,0 +170731463190,232,0 +170731463248,231,0 +170731463305,232,0 +170731463358,232,0 +170731463411,232,0 +170731463463,231,0 +170731463521,232,0 +170731463578,232,0 +170731463636,232,0 +170731463693,232,0 +170731463746,231,0 +170731463799,232,0 +170731463851,235,0 +170731463904,279,1 +170731463989,250,0 +170731464038,232,0 +170731464091,231,0 +170731464143,231,0 +170731464201,231,0 +170731464258,231,0 +170731464316,231,0 +170731464373,231,0 +170731464431,231,0 +170731464484,231,0 +170731464536,231,0 +170731464594,231,0 +170731464651,231,0 +170731464704,231,0 +170731464757,231,0 +170731464814,231,0 +170731464872,232,0 +170731464925,236,0 +170731464977,285,1 +170731465055,251,0 +170731465105,231,0 +170731465158,231,0 +170731465211,230,0 +170731465263,231,0 +170731465316,231,0 +170731465369,231,0 +170731465422,231,0 +170731465479,231,0 +170731465532,230,0 +170731465584,231,0 +170731465637,230,0 +170731465690,232,0 +170731465742,232,0 +170731465795,231,0 +170731465853,231,0 +170731465905,231,0 +170731465958,235,0 +170731466016,269,0 +170731466064,286,1 +170731466144,233,0 +170731466202,232,0 +170731466259,232,0 +170731466317,232,0 +170731466374,232,0 +170731466432,233,0 +170731466485,232,0 +170731466542,232,0 +170731466595,232,0 +170731466653,232,0 +170731466705,232,0 +170731466763,232,0 +170731466821,232,0 +170731466878,231,0 +170731466936,232,0 +170731466993,234,0 +170731467046,269,0 +170731467094,269,0 +170731467143,246,0 +170731467191,231,0 +170731467244,231,0 +170731467297,231,0 +170731467349,230,0 +170731467402,230,0 +170731467455,230,0 +170731467508,231,0 +170731467560,231,0 +170731467613,231,0 +170731467666,231,0 +170731467719,231,0 +170731467771,231,0 +170731467824,230,0 +170731467877,230,0 +170731467934,230,0 +170731467992,231,0 +170731468045,232,0 +170731468097,271,1 +170731468183,246,0 +170731468232,233,0 +170731468285,231,0 +170731468338,231,0 +170731468391,231,0 +170731468448,231,0 +170731468506,231,0 +170731468563,230,0 +170731468616,230,0 +170731468669,231,0 +170731468722,231,0 +170731468774,231,0 +170731468832,231,0 +170731468885,232,0 +170731468942,232,0 +170731468995,231,0 +170731469048,232,0 +170731469100,233,0 +170731469158,265,0 +170731469207,271,1 +170731469292,231,0 +170731469349,231,0 +170731469407,231,0 +170731469459,231,0 +170731469517,231,0 +170731469570,231,0 +170731469627,231,0 +170731469685,231,0 +170731469742,230,0 +170731469800,231,0 +170731469852,231,0 +170731469905,230,0 +170731469958,231,0 +170731470011,232,0 +170731470063,231,0 +170731470116,231,0 +170731470169,237,0 +170731470222,274,1 +170731470305,241,0 +170731470358,232,0 +170731470411,231,0 +170731470468,231,0 +170731470521,232,0 +170731470578,232,0 +170731470631,231,0 +170731470684,232,0 +170731470737,231,0 +170731470789,231,0 +170731470842,232,0 +170731470899,231,0 +170731470957,231,0 +170731471015,231,0 +170731471072,232,0 +170731471125,231,0 +170731471182,232,0 +170731471240,274,1 +170731471322,284,1 +170731471401,232,0 +170731471453,230,0 +170731471506,231,0 +170731471564,231,0 +170731471621,231,0 +170731471679,232,0 +170731471736,231,0 +170731471794,231,0 +170731471851,232,0 +170731471904,232,0 +170731471957,231,0 +170731472010,231,0 +170731472067,231,0 +170731472120,231,0 +170731472173,231,0 +170731472230,233,0 +170731472288,288,1 +170731472367,260,0 +170731472415,233,0 +170731472468,231,0 +170731472525,231,0 +170731472578,231,0 +170731472636,231,0 +170731472688,231,0 +170731472746,232,0 +170731472799,231,0 +170731472856,231,0 +170731472909,231,0 +170731472962,231,0 +170731473014,231,0 +170731473072,232,0 +170731473125,231,0 +170731473177,231,0 +170731473235,231,0 +170731473288,232,0 +170731473345,285,1 +170731473435,239,0 +170731473484,233,0 +170731473537,231,0 +170731473590,231,0 +170731473647,231,0 +170731473700,232,0 +170731473753,231,0 +170731473806,231,0 +170731473858,231,0 +170731473916,231,0 +170731473973,232,0 +170731474026,232,0 +170731474079,231,0 +170731474132,230,0 +170731474184,231,0 +170731474242,231,0 +170731474299,232,0 +170731474357,236,0 +170731474414,272,1 +170731474502,249,0 +170731474551,232,0 +170731474604,231,0 +170731474657,231,0 +170731474710,231,0 +170731474762,231,0 +170731474815,231,0 +170731474873,231,0 +170731474930,231,0 +170731474988,231,0 +170731475045,232,0 +170731475098,232,0 +170731475151,231,0 +170731475203,231,0 +170731475261,232,0 +170731475314,230,0 +170731475366,233,0 +170731475424,236,0 +170731475477,277,1 +170731475552,245,0 +170731475600,232,0 +170731475653,231,0 +170731475706,231,0 +170731475763,232,0 +170731475821,232,0 +170731475873,231,0 +170731475926,231,0 +170731475979,231,0 +170731476032,232,0 +170731476084,231,0 +170731476142,232,0 +170731476199,232,0 +170731476257,231,0 +170731476310,231,0 +170731476363,231,0 +170731476415,234,0 +170731476463,235,0 +170731476516,281,1 +170731476600,243,0 +170731476648,232,0 +170731476700,232,0 +170731476753,231,0 +170731476806,231,0 +170731476863,230,0 +170731476916,231,0 +170731476969,231,0 +170731477021,232,0 +170731477074,231,0 +170731477127,231,0 +170731477179,233,0 +170731477232,231,0 +170731477285,232,0 +170731477338,231,0 +170731477395,231,0 +170731477448,232,0 +170731477501,234,0 +170731477553,261,0 +170731477601,275,1 +170731477688,232,0 +170731477741,231,0 +170731477794,232,0 +170731477847,232,0 +170731477904,232,0 +170731477957,232,0 +170731478010,232,0 +170731478067,232,0 +170731478120,232,0 +170731478173,231,0 +170731478230,231,0 +170731478287,232,0 +170731478345,232,0 +170731478403,232,0 +170731478455,232,0 +170731478513,232,0 +170731478566,238,0 +170731478623,289,1 +170731478713,234,0 +170731478765,231,0 +170731478823,232,0 +170731478876,232,0 +170731478928,231,0 +170731478981,230,0 +170731479034,232,0 +170731479086,232,0 +170731479144,231,0 +170731479202,231,0 +170731479254,232,0 +170731479307,232,0 +170731479365,232,0 +170731479422,232,0 +170731479480,232,0 +170731479532,231,0 +170731479585,233,0 +170731479643,272,1 +170731479727,236,0 +170731479776,235,0 +170731479834,234,0 +170731479891,233,0 +170731479949,234,0 +170731480006,234,0 +170731480064,233,0 +170731480121,233,0 +170731480179,234,0 +170731480236,233,0 +170731480294,233,0 +170731480351,234,0 +170731480409,233,0 +170731480466,233,0 +170731480524,234,0 +170731480582,233,0 +170731480639,236,0 +170731480697,283,1 +170731480787,252,0 +170731480835,235,0 +170731480892,234,0 +170731480950,234,0 +170731481007,234,0 +170731481065,234,0 +170731481122,233,0 +170731481180,234,0 +170731481237,234,0 +170731481295,234,0 +170731481352,233,0 +170731481415,235,0 +170731481472,234,0 +170731481530,234,0 +170731481587,234,0 +170731481645,235,0 +170731481702,240,0 +170731481760,289,1 +170731481843,251,0 +170731481891,235,0 +170731481954,234,0 +170731482011,234,0 +170731482069,234,0 +170731482126,233,0 +170731482184,234,0 +170731482241,234,0 +170731482299,234,0 +170731482357,235,0 +170731482414,234,0 +170731482472,234,0 +170731482529,234,0 +170731482587,234,0 +170731482644,234,0 +170731482702,234,0 +170731482754,239,0 +170731482812,295,1 +170731482900,241,0 +170731482953,235,0 +170731483011,233,0 +170731483068,234,0 +170731483130,234,0 +170731483188,234,0 +170731483246,233,0 +170731483303,234,0 +170731483361,234,0 +170731483418,234,0 +170731483476,233,0 +170731483533,233,0 +170731483591,234,0 +170731483648,233,0 +170731483706,233,0 +170731483763,234,0 +170731483821,247,0 +170731483870,294,1 +170731483954,243,0 +170731484006,233,0 +170731484064,233,0 +170731484121,232,0 +170731484179,232,0 +170731484237,233,0 +170731484294,233,0 +170731484352,233,0 +170731484409,233,0 +170731484462,233,0 +170731484519,233,0 +170731484577,234,0 +170731484634,233,0 +170731484692,234,0 +170731484750,233,0 +170731484807,233,0 +170731484865,242,0 +170731484917,278,1 +170731485002,239,0 +170731485055,234,0 +170731485112,233,0 +170731485170,233,0 +170731485227,233,0 +170731485285,233,0 +170731485342,233,0 +170731485405,233,0 +170731485462,233,0 +170731485520,234,0 +170731485577,233,0 +170731485635,233,0 +170731485692,233,0 +170731485750,232,0 +170731485807,233,0 +170731485865,234,0 +170731485922,252,0 +170731485972,283,1 +170731486060,234,0 +170731486117,232,0 +170731486175,234,0 +170731486233,232,0 +170731486290,232,0 +170731486348,233,0 +170731486405,233,0 +170731486463,233,0 +170731486520,233,0 +170731486578,233,0 +170731486635,232,0 +170731486693,233,0 +170731486750,233,0 +170731486808,232,0 +170731486865,233,0 +170731486923,234,0 +170731486980,289,1 +170731487066,234,0 +170731487114,234,0 +170731487172,233,0 +170731487229,233,0 +170731487287,233,0 +170731487344,233,0 +170731487402,233,0 +170731487459,233,0 +170731487512,233,0 +170731487570,232,0 +170731487627,233,0 +170731487685,233,0 +170731487742,232,0 +170731487800,233,0 +170731487857,233,0 +170731487915,233,0 +170731487967,234,0 +170731488025,256,0 +170731488073,290,1 +170731488160,236,0 +170731488212,233,0 +170731488270,233,0 +170731488327,233,0 +170731488385,233,0 +170731488443,233,0 +170731488500,233,0 +170731488558,233,0 +170731488615,233,0 +170731488673,233,0 +170731488730,233,0 +170731488788,233,0 +170731488845,233,0 +170731488903,233,0 +170731488960,231,0 +170731489013,234,0 +170731489071,252,0 +170731489119,271,1 +170731489194,238,0 +170731489247,233,0 +170731489304,232,0 +170731489362,232,0 +170731489419,232,0 +170731489472,233,0 +170731489525,233,0 +170731489578,232,0 +170731489635,232,0 +170731489693,232,0 +170731489750,232,0 +170731489808,233,0 +170731489861,232,0 +170731489918,233,0 +170731489976,232,0 +170731490038,234,0 +170731490096,236,0 +170731490153,263,0 +170731490203,276,1 +170731490279,232,0 +170731490332,232,0 +170731490390,232,0 +170731490442,232,0 +170731490500,232,0 +170731490558,231,0 +170731490610,231,0 +170731490668,232,0 +170731490725,233,0 +170731490778,231,0 +170731490831,232,0 +170731490888,230,0 +170731490946,230,0 +170731490998,230,0 +170731491056,223,0 +170731491109,220,0 +170731491158,224,0 +170731491208,260,0 +170731491256,242,0 +170731491304,222,0 +170731491352,219,0 +170731491400,220,0 +170731491448,219,0 +170731491495,220,0 +170731491545,220,0 +170731491593,220,0 +170731491641,220,0 +170731491689,220,0 +170731491737,220,0 +170731491785,220,0 +170731491833,220,0 +170731491881,220,0 +170731491929,220,0 +170731491976,220,0 +170731492024,220,0 +170731492074,220,0 +170731492122,220,0 +170731492170,220,0 +170731492218,248,0 +170731492267,297,1 +170731492349,224,0 +170731492397,220,0 +170731492445,219,0 +170731492495,220,0 +170731492543,220,0 +170731492591,220,0 +170731492639,219,0 +170731492687,219,0 +170731492735,220,0 +170731492783,220,0 +170731492832,219,0 +170731492880,220,0 +170731492928,220,0 +170731492978,220,0 +170731493026,219,0 +170731493074,220,0 +170731493122,220,0 +170731493170,219,0 +170731493219,221,0 +170731493267,254,0 +170731493317,274,1 +170731493403,224,0 +170731493451,220,0 +170731493501,220,0 +170731493549,219,0 +170731493598,219,0 +170731493646,220,0 +170731493694,219,0 +170731493742,220,0 +170731493790,220,0 +170731493838,220,0 +170731493886,220,0 +170731493934,220,0 +170731493982,220,0 +170731494030,219,0 +170731494078,219,0 +170731494126,220,0 +170731494175,220,0 +170731494223,220,0 +170731494271,220,0 +170731494321,294,1 +170731494401,256,0 +170731494451,221,0 +170731494499,220,0 +170731494548,219,0 +170731494596,219,0 +170731494645,220,0 +170731494693,220,0 +170731494742,219,0 +170731494790,220,0 +170731494838,219,0 +170731494886,220,0 +170731494934,220,0 +170731494984,220,0 +170731495032,219,0 +170731495080,220,0 +170731495128,219,0 +170731495177,219,0 +170731495227,219,0 +170731495275,219,0 +170731495323,221,0 +170731495371,252,0 +170731495420,273,1 +170731495506,221,0 +170731495556,219,0 +170731495604,220,0 +170731495652,219,0 +170731495700,219,0 +170731495749,220,0 +170731495799,220,0 +170731495848,219,0 +170731495898,219,0 +170731495946,220,0 +170731495995,220,0 +170731496045,219,0 +170731496094,220,0 +170731496142,220,0 +170731496192,220,0 +170731496240,220,0 +170731496289,219,0 +170731496337,219,0 +170731496387,220,0 +170731496436,274,1 +170731496520,224,0 +170731496568,221,0 +170731496617,220,0 +170731496667,219,0 +170731496715,219,0 +170731496764,220,0 +170731496812,219,0 +170731496862,219,0 +170731496911,219,0 +170731496959,220,0 +170731497007,219,0 +170731497057,219,0 +170731497106,219,0 +170731497154,219,0 +170731497202,219,0 +170731497250,220,0 +170731497298,219,0 +170731497348,220,0 +170731497397,220,0 +170731497446,222,0 +170731497496,262,0 +170731497546,267,0 +170731497593,222,0 +170731497641,220,0 +170731497691,220,0 +170731497739,220,0 +170731497788,220,0 +170731497838,220,0 +170731497886,219,0 +170731497934,219,0 +170731497983,220,0 +170731498031,219,0 +170731498079,220,0 +170731498129,219,0 +170731498177,219,0 +170731498225,220,0 +170731498273,220,0 +170731498322,220,0 +170731498372,219,0 +170731498421,220,0 +170731498471,220,0 +170731498520,267,0 +170731498570,284,1 +170731498654,221,0 +170731498702,220,0 +170731498750,219,0 +170731498798,220,0 +170731498848,219,0 +170731498896,220,0 +170731498945,219,0 +170731498995,219,0 +170731499042,220,0 +170731499090,219,0 +170731499138,220,0 +170731499186,220,0 +170731499234,219,0 +170731499282,220,0 +170731499330,220,0 +170731499378,220,0 +170731499425,220,0 +170731499473,220,0 +170731499521,221,0 +170731499569,283,1 +170731499654,239,0 +170731499703,220,0 +170731499751,220,0 +170731499799,220,0 +170731499847,219,0 +170731499895,219,0 +170731499944,219,0 +170731499992,219,0 +170731500040,219,0 +170731500088,219,0 +170731500136,219,0 +170731500184,219,0 +170731500233,219,0 +170731500281,220,0 +170731500329,219,0 +170731500377,220,0 +170731500425,220,0 +170731500473,219,0 +170731500521,220,0 +170731500569,220,0 +170731500616,267,0 +170731500664,283,1 +170731500759,220,0 +170731500809,220,0 +170731500857,219,0 +170731500906,219,0 +170731500954,220,0 +170731501004,220,0 +170731501053,220,0 +170731501101,219,0 +170731501151,220,0 +170731501199,220,0 +170731501248,220,0 +170731501296,220,0 +170731501346,219,0 +170731501394,220,0 +170731501442,220,0 +170731501491,220,0 +170731501539,220,0 +170731501587,220,0 +170731501635,221,0 +170731501683,257,0 +170731501731,290,1 +170731501817,220,0 +170731501865,220,0 +170731501913,220,0 +170731501961,220,0 +170731502009,220,0 +170731502057,220,0 +170731502105,219,0 +170731502154,220,0 +170731502202,220,0 +170731502250,219,0 +170731502298,219,0 +170731502345,219,0 +170731502393,220,0 +170731502441,220,0 +170731502489,220,0 +170731502537,220,0 +170731502585,220,0 +170731502633,220,0 +170731502682,222,0 +170731502730,288,1 +170731502812,226,0 +170731502862,221,0 +170731502910,220,0 +170731502959,219,0 +170731503007,219,0 +170731503057,220,0 +170731503106,220,0 +170731503154,220,0 +170731503202,220,0 +170731503250,220,0 +170731503298,220,0 +170731503346,220,0 +170731503396,220,0 +170731503445,220,0 +170731503494,220,0 +170731503544,220,0 +170731503592,220,0 +170731503640,220,0 +170731503690,220,0 +170731503737,222,0 +170731503785,267,0 +170731503833,270,1 +170731503919,220,0 +170731503967,220,0 +170731504014,220,0 +170731504064,220,0 +170731504112,219,0 +170731504160,219,0 +170731504207,220,0 +170731504255,220,0 +170731504303,221,0 +170731504351,220,0 +170731504399,220,0 +170731504447,220,0 +170731504495,219,0 +170731504543,220,0 +170731504591,220,0 +170731504640,220,0 +170731504689,220,0 +170731504737,220,0 +170731504787,222,0 +170731504836,276,1 +170731504916,230,0 +170731504964,220,0 +170731505012,220,0 +170731505060,220,0 +170731505108,220,0 +170731505157,220,0 +170731505205,220,0 +170731505253,220,0 +170731505301,220,0 +170731505349,220,0 +170731505397,220,0 +170731505444,220,0 +170731505492,220,0 +170731505542,220,0 +170731505591,220,0 +170731505639,220,0 +170731505687,220,0 +170731505737,220,0 +170731505785,220,0 +170731505833,223,0 +170731505881,264,0 +170731505929,286,1 +170731506005,221,0 +170731506053,220,0 +170731506101,220,0 +170731506149,220,0 +170731506197,221,0 +170731506245,220,0 +170731506293,220,0 +170731506341,220,0 +170731506388,220,0 +170731506436,220,0 +170731506484,220,0 +170731506532,220,0 +170731506580,220,0 +170731506628,220,0 +170731506677,220,0 +170731506726,221,0 +170731506774,220,0 +170731506821,220,0 +170731506871,221,0 +170731506919,259,0 +170731506968,258,0 +170731507016,231,0 +170731507064,221,0 +170731507112,220,0 +170731507162,220,0 +170731507211,221,0 +170731507261,220,0 +170731507309,220,0 +170731507357,220,0 +170731507405,220,0 +170731507452,220,0 +170731507500,220,0 +170731507548,220,0 +170731507596,220,0 +170731507644,220,0 +170731507692,220,0 +170731507740,220,0 +170731507788,220,0 +170731507835,220,0 +170731507883,221,0 +170731507933,223,0 +170731507981,289,1 +170731508062,231,0 +170731508110,221,0 +170731508157,220,0 +170731508207,220,0 +170731508255,220,0 +170731508303,220,0 +170731508352,220,0 +170731508400,220,0 +170731508450,220,0 +170731508498,220,0 +170731508547,220,0 +170731508595,220,0 +170731508645,220,0 +170731508693,220,0 +170731508742,221,0 +170731508790,220,0 +170731508840,221,0 +170731508889,220,0 +170731508939,221,0 +170731508988,224,0 +170731509038,275,1 +170731509120,230,0 +170731509168,221,0 +170731509216,220,0 +170731509264,220,0 +170731509312,220,0 +170731509362,220,0 +170731509410,221,0 +170731509457,220,0 +170731509505,220,0 +170731509553,220,0 +170731509603,220,0 +170731509652,220,0 +170731509702,220,0 +170731509750,220,0 +170731509799,220,0 +170731509849,220,0 +170731509897,220,0 +170731509945,221,0 +170731509994,221,0 +170731510042,237,0 +170731510092,280,1 +170731510181,223,0 +170731510229,221,0 +170731510277,220,0 +170731510325,220,0 +170731510373,220,0 +170731510420,220,0 +170731510468,220,0 +170731510516,220,0 +170731510564,220,0 +170731510614,220,0 +170731510662,220,0 +170731510710,220,0 +170731510758,220,0 +170731510807,220,0 +170731510857,220,0 +170731510906,220,0 +170731510954,220,0 +170731511002,220,0 +170731511052,221,0 +170731511100,257,0 +170731511149,264,0 +170731511197,228,0 +170731511245,220,0 +170731511293,221,0 +170731511341,220,0 +170731511391,220,0 +170731511439,220,0 +170731511486,220,0 +170731511534,220,0 +170731511582,220,0 +170731511630,220,0 +170731511678,220,0 +170731511726,220,0 +170731511774,220,0 +170731511822,220,0 +170731511870,220,0 +170731511919,220,0 +170731511967,220,0 +170731512015,221,0 +170731512063,220,0 +170731512111,221,0 +170731512158,282,1 +170731512244,224,0 +170731512292,221,0 +170731512340,220,0 +170731512388,220,0 +170731512436,220,0 +170731512484,220,0 +170731512532,220,0 +170731512581,220,0 +170731512629,220,0 +170731512677,220,0 +170731512726,220,0 +170731512774,219,0 +170731512822,220,0 +170731512870,220,0 +170731512918,220,0 +170731512966,219,0 +170731513014,220,0 +170731513061,220,0 +170731513109,221,0 +170731513157,221,0 +170731513205,278,1 +170731513289,225,0 +170731513337,221,0 +170731513385,220,0 +170731513433,220,0 +170731513481,220,0 +170731513529,220,0 +170731513578,219,0 +170731513626,220,0 +170731513676,220,0 +170731513725,220,0 +170731513773,220,0 +170731513821,220,0 +170731513869,220,0 +170731513917,220,0 +170731513966,220,0 +170731514016,220,0 +170731514065,220,0 +170731514115,220,0 +170731514163,220,0 +170731514212,221,0 +170731514260,274,1 +170731514338,230,0 +170731514386,220,0 +170731514433,220,0 +170731514483,220,0 +170731514531,220,0 +170731514579,220,0 +170731514627,220,0 +170731514676,220,0 +170731514724,220,0 +170731514772,220,0 +170731514822,220,0 +170731514871,220,0 +170731514919,220,0 +170731514969,220,0 +170731515017,220,0 +170731515065,220,0 +170731515114,220,0 +170731515162,220,0 +170731515210,220,0 +170731515260,221,0 +170731515309,277,1 +170731515387,229,0 +170731515435,222,0 +170731515484,220,0 +170731515534,221,0 +170731515582,220,0 +170731515630,220,0 +170731515678,220,0 +170731515726,220,0 +170731515774,220,0 +170731515823,220,0 +170731515873,220,0 +170731515921,220,0 +170731515968,220,0 +170731516018,220,0 +170731516066,220,0 +170731516114,220,0 +170731516162,220,0 +170731516211,220,0 +170731516259,220,0 +170731516309,222,0 +170731516358,253,0 +170731516406,270,1 +170731516496,220,0 +170731516545,220,0 +170731516593,220,0 +170731516641,220,0 +170731516689,220,0 +170731516737,220,0 +170731516785,220,0 +170731516833,220,0 +170731516882,220,0 +170731516930,220,0 +170731516978,220,0 +170731517026,220,0 +170731517074,220,0 +170731517124,220,0 +170731517173,219,0 +170731517221,220,0 +170731517271,220,0 +170731517319,221,0 +170731517368,223,0 +170731517418,274,1 +170731517500,231,0 +170731517548,220,0 +170731517596,220,0 +170731517644,220,0 +170731517692,220,0 +170731517740,220,0 +170731517790,220,0 +170731517839,220,0 +170731517887,221,0 +170731517935,219,0 +170731517983,220,0 +170731518032,220,0 +170731518080,220,0 +170731518128,221,0 +170731518176,220,0 +170731518224,220,0 +170731518272,220,0 +170731518321,220,0 +170731518369,221,0 +170731518417,223,0 +170731518465,285,1 +170731518547,233,0 +170731518594,220,0 +170731518644,220,0 +170731518692,220,0 +170731518741,220,0 +170731518789,220,0 +170731518837,220,0 +170731518887,220,0 +170731518936,220,0 +170731518986,220,0 +170731519035,220,0 +170731519083,220,0 +170731519133,220,0 +170731519182,220,0 +170731519232,220,0 +170731519280,220,0 +170731519328,220,0 +170731519377,220,0 +170731519427,220,0 +170731519475,220,0 +170731519522,220,0 +170731519570,220,0 +170731519620,220,0 +170731519668,220,0 +170731519717,220,0 +170731519767,220,0 +170731519815,219,0 +170731519863,220,0 +170731519911,220,0 +170731519959,221,0 +170731520007,262,0 +170731520056,277,1 +170731520140,221,0 +170731520188,220,0 +170731520237,220,0 +170731520285,220,0 +170731520333,220,0 +170731520381,220,0 +170731520429,220,0 +170731520477,220,0 +170731520526,220,0 +170731520574,220,0 +170731520622,220,0 +170731520670,220,0 +170731520718,220,0 +170731520768,220,0 +170731520816,220,0 +170731520865,220,0 +170731520913,220,0 +170731520963,220,0 +170731521012,221,0 +170731521062,286,1 +170731521145,231,0 +170731521194,221,0 +170731521242,220,0 +170731521292,220,0 +170731521340,220,0 +170731521388,220,0 +170731521436,220,0 +170731521484,220,0 +170731521532,220,0 +170731521579,220,0 +170731521627,220,0 +170731521675,220,0 +170731521723,220,0 +170731521771,220,0 +170731521819,220,0 +170731521868,220,0 +170731521916,220,0 +170731521966,220,0 +170731522014,221,0 +170731522062,221,0 +170731522111,271,1 +170731522193,225,0 +170731522241,221,0 +170731522291,220,0 +170731522341,220,0 +170731522390,220,0 +170731522438,220,0 +170731522488,220,0 +170731522536,220,0 +170731522583,220,0 +170731522633,220,0 +170731522681,220,0 +170731522730,220,0 +170731522778,220,0 +170731522826,220,0 +170731522876,220,0 +170731522924,220,0 +170731522973,220,0 +170731523021,220,0 +170731523069,220,0 +170731523117,222,0 +170731523165,280,1 +170731523249,233,0 +170731523299,221,0 +170731523347,220,0 +170731523395,220,0 +170731523444,220,0 +170731523492,220,0 +170731523540,220,0 +170731523588,220,0 +170731523638,220,0 +170731523687,220,0 +170731523735,220,0 +170731523785,220,0 +170731523834,220,0 +170731523882,220,0 +170731523930,220,0 +170731523978,220,0 +170731524026,220,0 +170731524074,220,0 +170731524123,220,0 +170731524173,221,0 +170731524222,290,1 +170731524314,232,0 +170731524363,220,0 +170731524411,220,0 +170731524459,220,0 +170731524507,220,0 +170731524555,220,0 +170731524603,220,0 +170731524651,219,0 +170731524699,220,0 +170731524747,219,0 +170731524795,220,0 +170731524843,219,0 +170731524892,220,0 +170731524942,220,0 +170731524990,220,0 +170731525039,220,0 +170731525087,221,0 +170731525135,219,0 +170731525185,220,0 +170731525234,223,0 +170731525282,268,0 +170731525332,268,0 +170731525380,225,0 +170731525428,220,0 +170731525477,220,0 +170731525527,220,0 +170731525575,220,0 +170731525624,220,0 +170731525674,219,0 +170731525722,220,0 +170731525770,220,0 +170731525818,220,0 +170731525866,220,0 +170731525914,219,0 +170731525963,220,0 +170731526011,219,0 +170731526059,220,0 +170731526107,220,0 +170731526157,220,0 +170731526204,220,0 +170731526252,220,0 +170731526300,267,0 +170731526350,285,1 +170731526439,221,0 +170731526487,220,0 +170731526537,220,0 +170731526585,220,0 +170731526633,220,0 +170731526681,219,0 +170731526730,219,0 +170731526780,220,0 +170731526828,220,0 +170731526877,220,0 +170731526927,220,0 +170731526975,220,0 +170731527023,220,0 +170731527071,220,0 +170731527119,219,0 +170731527167,220,0 +170731527215,220,0 +170731527264,220,0 +170731527314,221,0 +170731527363,278,1 +170731527445,228,0 +170731527493,221,0 +170731527543,220,0 +170731527592,219,0 +170731527640,220,0 +170731527688,220,0 +170731527738,220,0 +170731527785,220,0 +170731527833,220,0 +170731527883,220,0 +170731527932,220,0 +170731527980,220,0 +170731528028,220,0 +170731528076,219,0 +170731528126,220,0 +170731528174,220,0 +170731528223,219,0 +170731528271,220,0 +170731528321,220,0 +170731528369,221,0 +170731528417,281,1 +170731528501,233,0 +170731528549,221,0 +170731528598,219,0 +170731528646,220,0 +170731528694,220,0 +170731528742,220,0 +170731528790,220,0 +170731528838,219,0 +170731528886,219,0 +170731528933,220,0 +170731528981,220,0 +170731529029,219,0 +170731529077,219,0 +170731529125,220,0 +170731529174,219,0 +170731529224,219,0 +170731529272,220,0 +170731529320,219,0 +170731529368,220,0 +170731529416,222,0 +170731529464,263,0 +170731529513,276,1 +170731529600,220,0 +170731529648,220,0 +170731529698,220,0 +170731529747,220,0 +170731529795,220,0 +170731529845,219,0 +170731529894,220,0 +170731529942,220,0 +170731529990,220,0 +170731530038,220,0 +170731530088,219,0 +170731530137,220,0 +170731530187,220,0 +170731530236,220,0 +170731530284,219,0 +170731530334,219,0 +170731530382,220,0 +170731530431,220,0 +170731530479,222,0 +170731530529,268,0 +170731530578,268,0 +170731530626,223,0 +170731530676,220,0 +170731530724,219,0 +170731530772,219,0 +170731530820,220,0 +170731530869,220,0 +170731530917,219,0 +170731530965,220,0 +170731531015,220,0 +170731531063,219,0 +170731531111,220,0 +170731531158,219,0 +170731531208,220,0 +170731531256,220,0 +170731531304,219,0 +170731531352,220,0 +170731531400,220,0 +170731531448,220,0 +170731531496,221,0 +170731531546,277,1 +170731531627,242,0 +170731531675,222,0 +170731531725,220,0 +170731531774,219,0 +170731531824,220,0 +170731531873,220,0 +170731531923,219,0 +170731531972,220,0 +170731532022,220,0 +170731532070,220,0 +170731532118,220,0 +170731532167,219,0 +170731532215,220,0 +170731532263,220,0 +170731532313,220,0 +170731532362,220,0 +170731532410,220,0 +170731532458,220,0 +170731532506,220,0 +170731532554,221,0 +170731532604,286,1 +170731532686,232,0 +170731532734,221,0 +170731532783,220,0 +170731532831,220,0 +170731532881,220,0 +170731532929,219,0 +170731532977,220,0 +170731533024,220,0 +170731533074,219,0 +170731533122,220,0 +170731533171,220,0 +170731533221,220,0 +170731533270,220,0 +170731533318,220,0 +170731533368,219,0 +170731533416,219,0 +170731533464,220,0 +170731533512,219,0 +170731533560,220,0 +170731533608,221,0 +170731533656,278,1 +170731533742,231,0 +170731533792,220,0 +170731533842,220,0 +170731533889,220,0 +170731533937,220,0 +170731533985,219,0 +170731534035,220,0 +170731534083,220,0 +170731534131,220,0 +170731534179,220,0 +170731534229,220,0 +170731534278,219,0 +170731534326,220,0 +170731534374,220,0 +170731534424,220,0 +170731534473,220,0 +170731534523,220,0 +170731534571,220,0 +170731534620,220,0 +170731534670,222,0 +170731534718,277,1 +170731534801,232,0 +170731534850,220,0 +170731534898,220,0 +170731534946,220,0 +170731534996,220,0 +170731535044,220,0 +170731535092,220,0 +170731535140,220,0 +170731535188,220,0 +170731535236,220,0 +170731535285,220,0 +170731535333,220,0 +170731535381,220,0 +170731535429,220,0 +170731535478,220,0 +170731535526,219,0 +170731535574,220,0 +170731535622,220,0 +170731535670,220,0 +170731535720,226,0 +170731535768,278,1 +170731535847,231,0 +170731535896,220,0 +170731535944,220,0 +170731535994,220,0 +170731536043,220,0 +170731536091,220,0 +170731536139,219,0 +170731536187,220,0 +170731536237,220,0 +170731536286,220,0 +170731536336,220,0 +170731536384,220,0 +170731536432,220,0 +170731536480,220,0 +170731536528,220,0 +170731536576,220,0 +170731536624,220,0 +170731536673,220,0 +170731536721,220,0 +170731536769,222,0 +170731536818,268,0 +170731536868,273,1 +170731536956,220,0 +170731537004,220,0 +170731537052,220,0 +170731537100,220,0 +170731537149,220,0 +170731537197,220,0 +170731537247,220,0 +170731537295,220,0 +170731537343,220,0 +170731537391,219,0 +170731537440,220,0 +170731537488,219,0 +170731537538,220,0 +170731537586,220,0 +170731537635,219,0 +170731537683,220,0 +170731537733,220,0 +170731537781,220,0 +170731537829,234,0 +170731537877,279,1 +170731537955,229,0 +170731538003,220,0 +170731538051,220,0 +170731538100,220,0 +170731538148,220,0 +170731538198,219,0 +170731538246,220,0 +170731538294,219,0 +170731538343,219,0 +170731538391,220,0 +170731538439,219,0 +170731538487,220,0 +170731538537,220,0 +170731538584,219,0 +170731538634,220,0 +170731538682,220,0 +170731538730,219,0 +170731538778,219,0 +170731538827,221,0 +170731538875,234,0 +170731538923,278,1 +170731539005,227,0 +170731539053,220,0 +170731539103,219,0 +170731539152,220,0 +170731539200,220,0 +170731539248,220,0 +170731539296,220,0 +170731539345,219,0 +170731539393,220,0 +170731539441,220,0 +170731539491,220,0 +170731539539,220,0 +170731539589,220,0 +170731539637,220,0 +170731539685,219,0 +170731539733,220,0 +170731539780,220,0 +170731539830,220,0 +170731539878,220,0 +170731539927,223,0 +170731539975,283,1 +170731540061,231,0 +170731540109,220,0 +170731540157,219,0 +170731540205,220,0 +170731540255,220,0 +170731540302,219,0 +170731540350,219,0 +170731540398,220,0 +170731540446,220,0 +170731540494,220,0 +170731540542,220,0 +170731540590,219,0 +170731540638,220,0 +170731540685,219,0 +170731540733,220,0 +170731540781,220,0 +170731540829,220,0 +170731540877,219,0 +170731540925,220,0 +170731540973,221,0 +170731541021,257,0 +170731541069,279,1 +170731541156,220,0 +170731541204,220,0 +170731541252,220,0 +170731541300,220,0 +170731541348,219,0 +170731541396,220,0 +170731541444,220,0 +170731541493,220,0 +170731541541,220,0 +170731541589,220,0 +170731541637,220,0 +170731541685,219,0 +170731541732,220,0 +170731541780,220,0 +170731541828,219,0 +170731541876,219,0 +170731541924,220,0 +170731541972,220,0 +170731542020,228,0 +170731542068,284,1 +170731542145,234,0 +170731542193,220,0 +170731542241,220,0 +170731542289,220,0 +170731542337,220,0 +170731542384,220,0 +170731542432,219,0 +170731542480,219,0 +170731542530,219,0 +170731542578,220,0 +170731542627,219,0 +170731542675,220,0 +170731542723,220,0 +170731542771,220,0 +170731542819,220,0 +170731542867,220,0 +170731542914,220,0 +170731542962,220,0 +170731543012,220,0 +170731543060,221,0 +170731543108,276,1 +170731543189,230,0 +170731543237,220,0 +170731543285,220,0 +170731543333,219,0 +170731543381,219,0 +170731543430,220,0 +170731543478,220,0 +170731543526,220,0 +170731543574,219,0 +170731543622,219,0 +170731543672,220,0 +170731543721,220,0 +170731543771,220,0 +170731543819,220,0 +170731543868,220,0 +170731543916,220,0 +170731543964,219,0 +170731544012,220,0 +170731544062,220,0 +170731544111,222,0 +170731544159,278,1 +170731544244,231,0 +170731544294,220,0 +170731544342,220,0 +170731544390,220,0 +170731544438,219,0 +170731544486,220,0 +170731544533,220,0 +170731544581,220,0 +170731544631,220,0 +170731544681,220,0 +170731544728,220,0 +170731544776,220,0 +170731544826,220,0 +170731544874,220,0 +170731544923,219,0 +170731544973,220,0 +170731545021,220,0 +170731545069,220,0 +170731545117,220,0 +170731545166,224,0 +170731545214,280,1 +170731545299,230,0 +170731545347,220,0 +170731545395,220,0 +170731545443,220,0 +170731545492,220,0 +170731545540,220,0 +170731545590,219,0 +170731545639,220,0 +170731545689,220,0 +170731545738,220,0 +170731545786,220,0 +170731545836,220,0 +170731545885,220,0 +170731545935,220,0 +170731545984,220,0 +170731546032,220,0 +170731546082,220,0 +170731546130,220,0 +170731546178,220,0 +170731546226,237,0 +170731546274,278,1 +170731546352,228,0 +170731546400,220,0 +170731546450,220,0 +170731546498,219,0 +170731546546,220,0 +170731546594,220,0 +170731546643,219,0 +170731546691,220,0 +170731546741,220,0 +170731546790,220,0 +170731546838,220,0 +170731546886,220,0 +170731546934,220,0 +170731546982,220,0 +170731547032,220,0 +170731547080,220,0 +170731547129,220,0 +170731547179,220,0 +170731547226,220,0 +170731547274,225,0 +170731547324,285,1 +170731547415,224,0 +170731547463,220,0 +170731547511,220,0 +170731547559,220,0 +170731547607,220,0 +170731547655,220,0 +170731547703,220,0 +170731547751,220,0 +170731547799,220,0 +170731547847,220,0 +170731547895,220,0 +170731547942,219,0 +170731547990,220,0 +170731548038,220,0 +170731548086,220,0 +170731548134,220,0 +170731548182,220,0 +170731548230,220,0 +170731548279,221,0 +170731548327,264,0 +170731548375,270,1 +170731548462,224,0 +170731548510,220,0 +170731548558,220,0 +170731548606,220,0 +170731548654,220,0 +170731548702,220,0 +170731548750,219,0 +170731548800,220,0 +170731548849,219,0 +170731548897,220,0 +170731548945,220,0 +170731548993,219,0 +170731549041,219,0 +170731549089,220,0 +170731549138,220,0 +170731549186,220,0 +170731549235,220,0 +170731549283,219,0 +170731549333,221,0 +170731549382,251,0 +170731549430,281,1 +170731549516,223,0 +170731549566,220,0 +170731549615,220,0 +170731549663,220,0 +170731549713,220,0 +170731549761,220,0 +170731549809,220,0 +170731549858,220,0 +170731549908,220,0 +170731549955,220,0 +170731550003,219,0 +170731550051,220,0 +170731550099,219,0 +170731550149,220,0 +170731550197,219,0 +170731550245,220,0 +170731550293,220,0 +170731550341,220,0 +170731550390,220,0 +170731550440,268,0 +170731550489,290,1 +170731550567,222,0 +170731550615,220,0 +170731550663,220,0 +170731550713,219,0 +170731550762,220,0 +170731550810,219,0 +170731550858,220,0 +170731550906,220,0 +170731550954,220,0 +170731551002,220,0 +170731551051,220,0 +170731551099,220,0 +170731551147,220,0 +170731551197,220,0 +170731551245,220,0 +170731551294,220,0 +170731551344,219,0 +170731551393,220,0 +170731551443,221,0 +170731551491,267,0 +170731551539,270,1 +170731551619,221,0 +170731551669,220,0 +170731551717,219,0 +170731551765,220,0 +170731551813,220,0 +170731551862,220,0 +170731551910,220,0 +170731551958,220,0 +170731552006,219,0 +170731552054,220,0 +170731552102,220,0 +170731552150,220,0 +170731552198,220,0 +170731552248,220,0 +170731552296,220,0 +170731552345,220,0 +170731552393,220,0 +170731552443,220,0 +170731552491,221,0 +170731552539,296,1 +170731552619,240,0 +170731552667,222,0 +170731552715,220,0 +170731552764,220,0 +170731552814,220,0 +170731552863,220,0 +170731552911,220,0 +170731552961,220,0 +170731553009,220,0 +170731553057,220,0 +170731553105,220,0 +170731553153,219,0 +170731553201,220,0 +170731553249,220,0 +170731553297,220,0 +170731553345,220,0 +170731553394,220,0 +170731553442,219,0 +170731553490,219,0 +170731553538,221,0 +170731553587,270,1 +170731553669,236,0 +170731553718,221,0 +170731553768,220,0 +170731553816,219,0 +170731553865,220,0 +170731553915,220,0 +170731553965,219,0 +170731554013,220,0 +170731554060,219,0 +170731554108,219,0 +170731554158,220,0 +170731554206,220,0 +170731554254,220,0 +170731554303,220,0 +170731554351,220,0 +170731554399,219,0 +170731554447,219,0 +170731554495,220,0 +170731554543,220,0 +170731554592,221,0 +170731554640,269,0 +170731554688,298,1 +170731554772,221,0 +170731554820,220,0 +170731554867,220,0 +170731554915,220,0 +170731554963,220,0 +170731555013,220,0 +170731555061,220,0 +170731555110,220,0 +170731555160,220,0 +170731555208,219,0 +170731555257,219,0 +170731555307,220,0 +170731555356,220,0 +170731555404,220,0 +170731555454,219,0 +170731555502,220,0 +170731555550,219,0 +170731555599,220,0 +170731555647,221,0 +170731555697,253,0 +170731555745,280,1 +170731555825,223,0 +170731555873,220,0 +170731555921,220,0 +170731555969,220,0 +170731556018,220,0 +170731556066,220,0 +170731556114,220,0 +170731556162,220,0 +170731556210,220,0 +170731556258,220,0 +170731556308,219,0 +170731556356,220,0 +170731556404,220,0 +170731556452,220,0 +170731556501,219,0 +170731556551,220,0 +170731556599,219,0 +170731556647,220,0 +170731556696,222,0 +170731556746,284,1 +170731556824,230,0 +170731556872,220,0 +170731556920,220,0 +170731556968,219,0 +170731557017,220,0 +170731557067,220,0 +170731557116,220,0 +170731557164,220,0 +170731557212,219,0 +170731557260,220,0 +170731557308,220,0 +170731557356,220,0 +170731557404,220,0 +170731557453,219,0 +170731557501,220,0 +170731557549,220,0 +170731557597,219,0 +170731557645,220,0 +170731557693,220,0 +170731557740,222,0 +170731557788,298,1 +170731557873,232,0 +170731557922,220,0 +170731557970,219,0 +170731558020,220,0 +170731558068,220,0 +170731558116,220,0 +170731558164,220,0 +170731558212,220,0 +170731558261,220,0 +170731558309,220,0 +170731558359,220,0 +170731558407,219,0 +170731558455,220,0 +170731558503,219,0 +170731558551,220,0 +170731558599,220,0 +170731558648,219,0 +170731558696,220,0 +170731558746,220,0 +170731558795,222,0 +170731558845,282,1 +170731558929,232,0 +170731558977,220,0 +170731559025,220,0 +170731559073,220,0 +170731559121,220,0 +170731559169,220,0 +170731559217,220,0 +170731559265,220,0 +170731559313,220,0 +170731559361,220,0 +170731559409,220,0 +170731559457,220,0 +170731559505,220,0 +170731559553,219,0 +170731559602,220,0 +170731559652,219,0 +170731559700,220,0 +170731559747,220,0 +170731559795,220,0 +170731559843,222,0 +170731559893,268,0 +170731559942,285,1 +170731560024,220,0 +170731560073,220,0 +170731560121,219,0 +170731560169,220,0 +170731560217,220,0 +170731560265,220,0 +170731560314,220,0 +170731560364,220,0 +170731560412,219,0 +170731560460,220,0 +170731560508,220,0 +170731560557,219,0 +170731560605,219,0 +170731560655,219,0 +170731560704,220,0 +170731560752,220,0 +170731560802,220,0 +170731560850,220,0 +170731560899,241,0 +170731560947,286,1 +170731561027,229,0 +170731561075,220,0 +170731561123,219,0 +170731561172,220,0 +170731561220,220,0 +170731561270,220,0 +170731561318,219,0 +170731561366,220,0 +170731561415,220,0 +170731561463,220,0 +170731561511,220,0 +170731561561,220,0 +170731561609,220,0 +170731561657,219,0 +170731561705,220,0 +170731561753,220,0 +170731561801,220,0 +170731561850,220,0 +170731561898,220,0 +170731561948,222,0 +170731561996,279,1 +170731562085,234,0 +170731562134,220,0 +170731562182,220,0 +170731562230,220,0 +170731562280,220,0 +170731562328,220,0 +170731562377,220,0 +170731562427,220,0 +170731562476,219,0 +170731562524,220,0 +170731562572,220,0 +170731562620,219,0 +170731562668,219,0 +170731562716,219,0 +170731562766,220,0 +170731562814,219,0 +170731562863,220,0 +170731562911,220,0 +170731562959,220,0 +170731563007,223,0 +170731563055,265,0 +170731563103,267,0 +170731563153,223,0 +170731563201,220,0 +170731563250,220,0 +170731563298,219,0 +170731563346,219,0 +170731563395,220,0 +170731563445,220,0 +170731563494,219,0 +170731563542,220,0 +170731563590,220,0 +170731563638,220,0 +170731563686,220,0 +170731563736,219,0 +170731563785,219,0 +170731563835,219,0 +170731563883,220,0 +170731563931,219,0 +170731563980,219,0 +170731564028,221,0 +170731564078,275,1 +170731564166,233,0 +170731564214,220,0 +170731564263,219,0 +170731564311,220,0 +170731564361,220,0 +170731564408,220,0 +170731564458,219,0 +170731564506,220,0 +170731564555,220,0 +170731564605,220,0 +170731564653,220,0 +170731564701,220,0 +170731564749,220,0 +170731564797,219,0 +170731564845,220,0 +170731564893,220,0 +170731564942,220,0 +170731564992,220,0 +170731565041,220,0 +170731565091,221,0 +170731565141,268,0 +170731565188,270,1 +170731565279,220,0 +170731565327,219,0 +170731565375,219,0 +170731565423,220,0 +170731565472,220,0 +170731565520,219,0 +170731565568,220,0 +170731565618,220,0 +170731565666,220,0 +170731565714,220,0 +170731565762,220,0 +170731565810,219,0 +170731565859,220,0 +170731565909,219,0 +170731565957,220,0 +170731566006,220,0 +170731566054,220,0 +170731566102,220,0 +170731566150,222,0 +170731566200,280,1 +170731566277,234,0 +170731566325,220,0 +170731566372,220,0 +170731566420,219,0 +170731566468,220,0 +170731566516,219,0 +170731566564,219,0 +170731566612,219,0 +170731566660,219,0 +170731566710,219,0 +170731566758,220,0 +170731566806,219,0 +170731566855,220,0 +170731566903,219,0 +170731566953,219,0 +170731567001,220,0 +170731567048,219,0 +170731567098,220,0 +170731567146,220,0 +170731567195,239,0 +170731567245,299,1 +170731567321,232,0 +170731567369,220,0 +170731567417,220,0 +170731567465,220,0 +170731567515,219,0 +170731567563,219,0 +170731567611,220,0 +170731567659,219,0 +170731567708,220,0 +170731567756,220,0 +170731567806,220,0 +170731567854,219,0 +170731567902,220,0 +170731567950,220,0 +170731567997,219,0 +170731568047,220,0 +170731568095,219,0 +170731568143,220,0 +170731568192,220,0 +170731568240,222,0 +170731568290,283,1 +170731568373,236,0 +170731568422,220,0 +170731568472,220,0 +170731568520,219,0 +170731568569,220,0 +170731568619,220,0 +170731568668,220,0 +170731568718,220,0 +170731568766,219,0 +170731568813,219,0 +170731568861,219,0 +170731568909,220,0 +170731568957,219,0 +170731569005,219,0 +170731569053,220,0 +170731569101,219,0 +170731569149,219,0 +170731569197,219,0 +170731569245,220,0 +170731569292,222,0 +170731569340,277,1 +170731569424,237,0 +170731569473,219,0 +170731569523,219,0 +170731569572,219,0 +170731569622,219,0 +170731569670,219,0 +170731569719,219,0 +170731569769,219,0 +170731569817,219,0 +170731569865,220,0 +170731569915,219,0 +170731569962,219,0 +170731570010,219,0 +170731570060,219,0 +170731570108,220,0 +170731570157,219,0 +170731570205,219,0 +170731570253,219,0 +170731570301,220,0 +170731570349,224,0 +170731570399,275,1 +170731570480,231,0 +170731570528,220,0 +170731570576,220,0 +170731570625,219,0 +170731570673,219,0 +170731570721,219,0 +170731570769,219,0 +170731570817,219,0 +170731570865,220,0 +170731570913,219,0 +170731570963,220,0 +170731571010,219,0 +170731571058,219,0 +170731571108,219,0 +170731571156,219,0 +170731571205,219,0 +170731571253,220,0 +170731571303,219,0 +170731571351,220,0 +170731571400,224,0 +170731571448,290,1 +170731571530,229,0 +170731571580,219,0 +170731571628,220,0 +170731571676,220,0 +170731571725,219,0 +170731571775,219,0 +170731571823,219,0 +170731571871,220,0 +170731571919,219,0 +170731571968,220,0 +170731572016,219,0 +170731572064,220,0 +170731572112,219,0 +170731572160,220,0 +170731572208,219,0 +170731572256,220,0 +170731572305,219,0 +170731572353,219,0 +170731572403,220,0 +170731572452,229,0 +170731572500,291,1 +170731572581,229,0 +170731572629,220,0 +170731572676,219,0 +170731572724,219,0 +170731572772,219,0 +170731572820,219,0 +170731572868,220,0 +170731572916,220,0 +170731572966,220,0 +170731573015,220,0 +170731573065,219,0 +170731573113,219,0 +170731573161,219,0 +170731573209,220,0 +170731573257,220,0 +170731573305,220,0 +170731573353,220,0 +170731573402,220,0 +170731573450,220,0 +170731573499,242,0 +170731573547,287,1 +170731573629,226,0 +170731573677,220,0 +170731573724,219,0 +170731573774,219,0 +170731573822,219,0 +170731573870,220,0 +170731573918,219,0 +170731573966,219,0 +170731574015,219,0 +170731574063,220,0 +170731574113,219,0 +170731574162,220,0 +170731574210,220,0 +170731574258,219,0 +170731574308,219,0 +170731574357,220,0 +170731574407,220,0 +170731574456,219,0 +170731574504,220,0 +170731574554,226,0 +170731574603,283,1 +170731574690,225,0 +170731574738,220,0 +170731574786,220,0 +170731574834,219,0 +170731574884,219,0 +170731574932,219,0 +170731574980,219,0 +170731575027,219,0 +170731575075,220,0 +170731575123,219,0 +170731575171,220,0 +170731575221,219,0 +170731575270,219,0 +170731575318,220,0 +170731575366,220,0 +170731575414,219,0 +170731575462,219,0 +170731575512,220,0 +170731575561,220,0 +170731575609,288,1 +170731575695,244,0 +170731575745,222,0 +170731575794,220,0 +170731575844,219,0 +170731575891,220,0 +170731575939,220,0 +170731575987,219,0 +170731576035,219,0 +170731576083,220,0 +170731576131,219,0 +170731576179,219,0 +170731576227,220,0 +170731576275,219,0 +170731576323,220,0 +170731576371,220,0 +170731576419,220,0 +170731576467,220,0 +170731576515,219,0 +170731576563,219,0 +170731576611,220,0 +170731576659,256,0 +170731576707,284,1 +170731576786,227,0 +170731576835,219,0 +170731576883,218,0 +170731576933,219,0 +170731576980,219,0 +170731577028,219,0 +170731577076,219,0 +170731577124,218,0 +170731577172,219,0 +170731577222,219,0 +170731577270,219,0 +170731577318,219,0 +170731577366,219,0 +170731577415,219,0 +170731577463,219,0 +170731577513,219,0 +170731577561,219,0 +170731577609,219,0 +170731577658,220,0 +170731577706,226,0 +170731577756,272,1 +170731577844,222,0 +170731577894,219,0 +170731577943,219,0 +170731577991,219,0 +170731578041,219,0 +170731578089,219,0 +170731578138,219,0 +170731578186,219,0 +170731578236,219,0 +170731578285,219,0 +170731578335,219,0 +170731578384,219,0 +170731578434,219,0 +170731578483,219,0 +170731578531,219,0 +170731578579,219,0 +170731578627,219,0 +170731578677,219,0 +170731578725,220,0 +170731578773,278,1 +170731578856,227,0 +170731578906,220,0 +170731578955,219,0 +170731579003,219,0 +170731579051,219,0 +170731579099,219,0 +170731579148,219,0 +170731579198,219,0 +170731579247,219,0 +170731579295,219,0 +170731579343,219,0 +170731579391,219,0 +170731579440,219,0 +170731579488,219,0 +170731579535,219,0 +170731579583,219,0 +170731579631,220,0 +170731579679,219,0 +170731579729,219,0 +170731579777,221,0 +170731579826,282,1 +170731579913,236,0 +170731579961,220,0 +170731580009,219,0 +170731580057,219,0 +170731580105,219,0 +170731580155,219,0 +170731580203,218,0 +170731580251,219,0 +170731580300,219,0 +170731580348,219,0 +170731580396,219,0 +170731580446,219,0 +170731580494,219,0 +170731580543,219,0 +170731580593,219,0 +170731580642,219,0 +170731580690,219,0 +170731580738,219,0 +170731580788,220,0 +170731580836,220,0 +170731580883,284,1 +170731580964,233,0 +170731581014,219,0 +170731581063,218,0 +170731581113,219,0 +170731581163,219,0 +170731581212,219,0 +170731581260,219,0 +170731581308,219,0 +170731581356,219,0 +170731581404,219,0 +170731581452,219,0 +170731581500,219,0 +170731581548,219,0 +170731581596,219,0 +170731581644,219,0 +170731581693,219,0 +170731581741,219,0 +170731581789,219,0 +170731581837,219,0 +170731581885,221,0 +170731581933,291,1 +170731582021,230,0 +170731582069,220,0 +170731582117,219,0 +170731582164,219,0 +170731582212,219,0 +170731582260,219,0 +170731582308,220,0 +170731582356,219,0 +170731582404,219,0 +170731582454,219,0 +170731582502,219,0 +170731582550,219,0 +170731582598,219,0 +170731582646,219,0 +170731582693,219,0 +170731582741,219,0 +170731582791,219,0 +170731582841,219,0 +170731582890,219,0 +170731582938,222,0 +170731582986,285,1 +170731583067,233,0 +170731583115,219,0 +170731583165,219,0 +170731583213,219,0 +170731583261,219,0 +170731583309,219,0 +170731583358,219,0 +170731583408,219,0 +170731583457,219,0 +170731583507,219,0 +170731583554,219,0 +170731583602,219,0 +170731583650,219,0 +170731583698,219,0 +170731583746,219,0 +170731583796,219,0 +170731583844,219,0 +170731583893,219,0 +170731583941,219,0 +170731583989,221,0 +170731584037,253,0 +170731584085,289,1 +170731584164,220,0 +170731584213,220,0 +170731584261,219,0 +170731584309,219,0 +170731584357,219,0 +170731584405,219,0 +170731584453,219,0 +170731584501,219,0 +170731584549,219,0 +170731584596,219,0 +170731584644,219,0 +170731584692,219,0 +170731584740,219,0 +170731584788,219,0 +170731584836,219,0 +170731584884,219,0 +170731584932,219,0 +170731584980,219,0 +170731585027,220,0 +170731585075,297,1 +170731585159,228,0 +170731585207,220,0 +170731585255,219,0 +170731585303,219,0 +170731585351,219,0 +170731585399,219,0 +170731585447,219,0 +170731585495,219,0 +170731585543,219,0 +170731585592,219,0 +170731585640,219,0 +170731585688,219,0 +170731585736,219,0 +170731585785,219,0 +170731585833,219,0 +170731585881,219,0 +170731585929,220,0 +170731585977,220,0 +170731586025,220,0 +170731586072,220,0 +170731586120,291,1 +170731586198,229,0 +170731586246,220,0 +170731586296,220,0 +170731586344,219,0 +170731586392,219,0 +170731586441,219,0 +170731586489,219,0 +170731586539,219,0 +170731586586,219,0 +170731586634,219,0 +170731586682,219,0 +170731586730,219,0 +170731586778,219,0 +170731586826,219,0 +170731586874,219,0 +170731586922,219,0 +170731586970,219,0 +170731587017,219,0 +170731587065,219,0 +170731587113,220,0 +170731587163,283,1 +170731587239,270,1 +170731587317,219,0 +170731587365,219,0 +170731587413,219,0 +170731587461,219,0 +170731587509,219,0 +170731587557,219,0 +170731587605,219,0 +170731587653,219,0 +170731587700,219,0 +170731587748,219,0 +170731587796,219,0 +170731587844,219,0 +170731587892,220,0 +170731587940,219,0 +170731587989,219,0 +170731588037,219,0 +170731588085,220,0 +170731588133,220,0 +170731588181,221,0 +170731588229,272,1 +170731588308,235,0 +170731588356,219,0 +170731588404,219,0 +170731588452,219,0 +170731588500,219,0 +170731588547,219,0 +170731588597,219,0 +170731588645,218,0 +170731588693,219,0 +170731588741,219,0 +170731588789,219,0 +170731588838,219,0 +170731588886,220,0 +170731588934,219,0 +170731588982,219,0 +170731589030,219,0 +170731589078,219,0 +170731589125,219,0 +170731589173,219,0 +170731589221,220,0 +170731589269,292,1 +170731589352,229,0 +170731589402,220,0 +170731589450,219,0 +170731589498,219,0 +170731589545,219,0 +170731589593,219,0 +170731589643,219,0 +170731589691,219,0 +170731589740,219,0 +170731589788,219,0 +170731589838,219,0 +170731589886,219,0 +170731589934,219,0 +170731589983,219,0 +170731590031,219,0 +170731590081,219,0 +170731590129,219,0 +170731590177,219,0 +170731590225,220,0 +170731590273,221,0 +170731590322,277,1 +170731590405,230,0 +170731590453,220,0 +170731590503,219,0 +170731590551,219,0 +170731590600,219,0 +170731590648,219,0 +170731590696,219,0 +170731590744,219,0 +170731590791,218,0 +170731590839,219,0 +170731590887,219,0 +170731590935,219,0 +170731590983,219,0 +170731591031,219,0 +170731591080,219,0 +170731591128,220,0 +170731591176,219,0 +170731591224,219,0 +170731591274,219,0 +170731591322,221,0 +170731591370,278,1 +170731591458,227,0 +170731591507,219,0 +170731591555,219,0 +170731591603,219,0 +170731591651,219,0 +170731591699,219,0 +170731591747,219,0 +170731591797,219,0 +170731591846,219,0 +170731591894,219,0 +170731591942,219,0 +170731591990,219,0 +170731592038,219,0 +170731592086,219,0 +170731592135,219,0 +170731592185,219,0 +170731592233,219,0 +170731592282,219,0 +170731592330,219,0 +170731592380,221,0 +170731592429,281,1 +170731592510,233,0 +170731592559,219,0 +170731592607,219,0 +170731592657,219,0 +170731592704,219,0 +170731592752,219,0 +170731592800,219,0 +170731592848,219,0 +170731592896,219,0 +170731592944,219,0 +170731592992,219,0 +170731593040,219,0 +170731593089,219,0 +170731593137,219,0 +170731593185,219,0 +170731593233,219,0 +170731593281,219,0 +170731593331,219,0 +170731593380,219,0 +170731593428,221,0 +170731593476,280,1 +170731593559,235,0 +170731593609,220,0 +170731593657,219,0 +170731593705,219,0 +170731593754,219,0 +170731593804,219,0 +170731593852,219,0 +170731593900,219,0 +170731593949,219,0 +170731593999,219,0 +170731594048,219,0 +170731594098,218,0 +170731594147,219,0 +170731594195,219,0 +170731594243,219,0 +170731594291,219,0 +170731594339,219,0 +170731594389,219,0 +170731594437,219,0 +170731594486,222,0 +170731594535,288,1 +170731594621,229,0 +170731594669,219,0 +170731594717,219,0 +170731594765,218,0 +170731594813,219,0 +170731594863,219,0 +170731594911,219,0 +170731594959,219,0 +170731595006,218,0 +170731595054,219,0 +170731595104,219,0 +170731595153,219,0 +170731595201,219,0 +170731595251,219,0 +170731595299,219,0 +170731595348,219,0 +170731595396,219,0 +170731595444,219,0 +170731595492,219,0 +170731595540,222,0 +170731595588,279,1 +170731595670,226,0 +170731595718,219,0 +170731595766,219,0 +170731595814,219,0 +170731595862,219,0 +170731595910,219,0 +170731595960,219,0 +170731596008,219,0 +170731596056,219,0 +170731596104,219,0 +170731596153,219,0 +170731596201,219,0 +170731596249,219,0 +170731596299,219,0 +170731596347,219,0 +170731596395,219,0 +170731596443,219,0 +170731596490,219,0 +170731596538,219,0 +170731596588,224,0 +170731596637,272,1 +170731596718,229,0 +170731596767,219,0 +170731596815,219,0 +170731596865,219,0 +170731596913,220,0 +170731596962,219,0 +170731597012,219,0 +170731597060,219,0 +170731597108,219,0 +170731597157,219,0 +170731597205,219,0 +170731597253,219,0 +170731597301,219,0 +170731597349,219,0 +170731597398,219,0 +170731597446,219,0 +170731597496,219,0 +170731597545,219,0 +170731597595,219,0 +170731597645,238,0 +170731597694,273,1 +170731597778,223,0 +170731597827,219,0 +170731597877,219,0 +170731597925,219,0 +170731597973,219,0 +170731598021,219,0 +170731598070,219,0 +170731598118,219,0 +170731598168,219,0 +170731598217,219,0 +170731598265,219,0 +170731598313,219,0 +170731598361,219,0 +170731598411,219,0 +170731598459,219,0 +170731598507,219,0 +170731598555,219,0 +170731598604,219,0 +170731598654,220,0 +170731598703,263,0 +170731598751,291,1 +170731598843,220,0 +170731598893,219,0 +170731598941,219,0 +170731598990,219,0 +170731599038,219,0 +170731599086,219,0 +170731599134,220,0 +170731599184,219,0 +170731599233,219,0 +170731599283,219,0 +170731599331,219,0 +170731599380,219,0 +170731599428,219,0 +170731599478,219,0 +170731599525,219,0 +170731599573,218,0 +170731599621,219,0 +170731599669,219,0 +170731599719,220,0 +170731599768,278,1 +170731599853,230,0 +170731599900,220,0 +170731599948,219,0 +170731599996,219,0 +170731600044,219,0 +170731600092,219,0 +170731600141,219,0 +170731600189,219,0 +170731600237,219,0 +170731600285,219,0 +170731600333,219,0 +170731600381,219,0 +170731600429,219,0 +170731600476,219,0 +170731600524,219,0 +170731600572,219,0 +170731600620,219,0 +170731600668,219,0 +170731600716,219,0 +170731600764,220,0 +170731600812,290,1 +170731600889,244,0 +170731600937,221,0 +170731600985,219,0 +170731601033,219,0 +170731601083,219,0 +170731601132,219,0 +170731601180,219,0 +170731601230,219,0 +170731601277,219,0 +170731601325,219,0 +170731601373,219,0 +170731601421,219,0 +170731601471,219,0 +170731601518,219,0 +170731601568,219,0 +170731601618,219,0 +170731601667,220,0 +170731601715,219,0 +170731601763,219,0 +170731601811,220,0 +170731601861,287,1 +170731601936,247,0 +170731601984,222,0 +170731602033,219,0 +170731602081,219,0 +170731602129,219,0 +170731602177,219,0 +170731602225,219,0 +170731602273,219,0 +170731602321,219,0 +170731602369,219,0 +170731602417,219,0 +170731602465,219,0 +170731602513,219,0 +170731602562,219,0 +170731602610,219,0 +170731602660,219,0 +170731602709,219,0 +170731602757,219,0 +170731602805,219,0 +170731602853,221,0 +170731602903,279,1 +170731602986,240,0 +170731603035,220,0 +170731603083,219,0 +170731603133,219,0 +170731603181,219,0 +170731603228,219,0 +170731603276,219,0 +170731603324,219,0 +170731603372,219,0 +170731603420,219,0 +170731603468,219,0 +170731603516,219,0 +170731603564,219,0 +170731603612,219,0 +170731603659,219,0 +170731603709,219,0 +170731603758,218,0 +170731603806,219,0 +170731603854,220,0 +170731603902,220,0 +170731603950,288,1 +170731604028,279,1 +170731604113,220,0 +170731604161,219,0 +170731604209,219,0 +170731604257,219,0 +170731604304,219,0 +170731604352,218,0 +170731604400,219,0 +170731604450,219,0 +170731604497,219,0 +170731604545,219,0 +170731604593,219,0 +170731604643,219,0 +170731604691,219,0 +170731604740,219,0 +170731604788,219,0 +170731604836,219,0 +170731604886,219,0 +170731604934,220,0 +170731604983,228,0 +170731605031,288,1 +170731605116,225,0 +170731605164,219,0 +170731605212,219,0 +170731605259,219,0 +170731605307,219,0 +170731605355,219,0 +170731605403,219,0 +170731605451,219,0 +170731605499,219,0 +170731605547,219,0 +170731605595,219,0 +170731605643,219,0 +170731605691,219,0 +170731605739,219,0 +170731605787,219,0 +170731605835,219,0 +170731605883,219,0 +170731605931,219,0 +170731605979,220,0 +170731606027,222,0 +170731606075,299,1 +170731606153,232,0 +170731606201,220,0 +170731606249,219,0 +170731606297,220,0 +170731606344,219,0 +170731606392,219,0 +170731606440,219,0 +170731606488,219,0 +170731606536,219,0 +170731606584,219,0 +170731606632,219,0 +170731606680,219,0 +170731606728,219,0 +170731606776,219,0 +170731606824,219,0 +170731606872,219,0 +170731606920,219,0 +170731606969,219,0 +170731607019,220,0 +170731607068,221,0 +170731607117,274,1 +170731607200,233,0 +170731607248,219,0 +170731607298,219,0 +170731607346,219,0 +170731607393,219,0 +170731607441,219,0 +170731607489,219,0 +170731607537,219,0 +170731607587,219,0 +170731607636,219,0 +170731607686,219,0 +170731607735,219,0 +170731607783,219,0 +170731607831,219,0 +170731607879,219,0 +170731607929,219,0 +170731607978,219,0 +170731608028,219,0 +170731608076,219,0 +170731608125,223,0 +170731608173,288,1 +170731608273,221,0 +170731608323,219,0 +170731608371,219,0 +170731608419,219,0 +170731608467,219,0 +170731608514,219,0 +170731608564,219,0 +170731608612,219,0 +170731608660,219,0 +170731608709,219,0 +170731608759,219,0 +170731608807,219,0 +170731608855,219,0 +170731608903,219,0 +170731608951,219,0 +170731609000,219,0 +170731609048,219,0 +170731609096,219,0 +170731609145,220,0 +170731609195,284,1 +170731609274,268,0 +170731609322,223,0 +170731609371,219,0 +170731609419,219,0 +170731609467,219,0 +170731609517,219,0 +170731609565,220,0 +170731609614,219,0 +170731609662,220,0 +170731609712,219,0 +170731609760,219,0 +170731609808,219,0 +170731609857,219,0 +170731609907,219,0 +170731609956,220,0 +170731610006,219,0 +170731610055,219,0 +170731610103,219,0 +170731610153,219,0 +170731610202,221,0 +170731610252,291,1 +170731610333,227,0 +170731610382,220,0 +170731610432,219,0 +170731610479,219,0 +170731610529,219,0 +170731610577,219,0 +170731610625,219,0 +170731610673,219,0 +170731610723,219,0 +170731610772,219,0 +170731610822,219,0 +170731610871,219,0 +170731610919,219,0 +170731610967,219,0 +170731611017,219,0 +170731611066,219,0 +170731611114,219,0 +170731611164,219,0 +170731611212,220,0 +170731611261,221,0 +170731611309,299,1 +170731611386,236,0 +170731611433,219,0 +170731611483,219,0 +170731611532,219,0 +170731611582,219,0 +170731611630,219,0 +170731611680,219,0 +170731611727,220,0 +170731611775,219,0 +170731611825,219,0 +170731611873,219,0 +170731611922,219,0 +170731611972,219,0 +170731612020,219,0 +170731612068,219,0 +170731612116,219,0 +170731612164,219,0 +170731612212,219,0 +170731612260,220,0 +170731612308,222,0 +170731612357,285,1 +170731612442,233,0 +170731612491,220,0 +170731612541,219,0 +170731612589,219,0 +170731612636,220,0 +170731612684,219,0 +170731612732,219,0 +170731612780,219,0 +170731612828,219,0 +170731612878,219,0 +170731612926,219,0 +170731612974,219,0 +170731613022,219,0 +170731613070,219,0 +170731613119,219,0 +170731613169,219,0 +170731613217,219,0 +170731613265,219,0 +170731613313,219,0 +170731613362,222,0 +170731613410,287,1 +170731613503,229,0 +170731613551,219,0 +170731613600,220,0 +170731613650,219,0 +170731613698,219,0 +170731613746,219,0 +170731613794,219,0 +170731613842,218,0 +170731613890,219,0 +170731613937,219,0 +170731613985,219,0 +170731614033,219,0 +170731614081,219,0 +170731614129,220,0 +170731614177,219,0 +170731614226,219,0 +170731614274,220,0 +170731614324,219,0 +170731614372,220,0 +170731614421,222,0 +170731614471,267,0 +170731614519,259,0 +170731614567,223,0 +170731614616,220,0 +170731614664,219,0 +170731614714,219,0 +170731614763,219,0 +170731614811,219,0 +170731614861,219,0 +170731614909,219,0 +170731614958,219,0 +170731615006,219,0 +170731615056,219,0 +170731615105,219,0 +170731615153,219,0 +170731615201,219,0 +170731615251,219,0 +170731615299,219,0 +170731615346,219,0 +170731615396,219,0 +170731615444,220,0 +170731615492,280,1 +170731615577,229,0 +170731615625,220,0 +170731615673,220,0 +170731615721,219,0 +170731615770,219,0 +170731615818,219,0 +170731615867,219,0 +170731615915,219,0 +170731615963,219,0 +170731616013,219,0 +170731616061,219,0 +170731616109,219,0 +170731616157,219,0 +170731616206,219,0 +170731616254,219,0 +170731616302,219,0 +170731616350,219,0 +170731616399,219,0 +170731616447,219,0 +170731616497,221,0 +170731616544,285,1 +170731616626,229,0 +170731616675,220,0 +170731616723,219,0 +170731616771,220,0 +170731616819,219,0 +170731616869,219,0 +170731616916,219,0 +170731616966,219,0 +170731617014,219,0 +170731617062,219,0 +170731617111,219,0 +170731617159,219,0 +170731617207,219,0 +170731617255,219,0 +170731617305,220,0 +170731617354,219,0 +170731617404,220,0 +170731617453,219,0 +170731617503,219,0 +170731617552,221,0 +170731617602,257,0 +170731617650,285,1 +170731617733,220,0 +170731617781,219,0 +170731617830,219,0 +170731617880,219,0 +170731617928,219,0 +170731617975,219,0 +170731618023,219,0 +170731618073,219,0 +170731618121,219,0 +170731618168,219,0 +170731618216,219,0 +170731618264,219,0 +170731618312,219,0 +170731618360,219,0 +170731618408,219,0 +170731618457,219,0 +170731618507,219,0 +170731618555,220,0 +170731618603,222,0 +170731618652,296,1 +170731618727,228,0 +170731618775,220,0 +170731618823,219,0 +170731618871,219,0 +170731618919,219,0 +170731618968,219,0 +170731619016,219,0 +170731619064,219,0 +170731619113,219,0 +170731619161,219,0 +170731619209,219,0 +170731619257,219,0 +170731619307,219,0 +170731619355,219,0 +170731619403,219,0 +170731619451,219,0 +170731619500,219,0 +170731619550,219,0 +170731619599,219,0 +170731619647,221,0 +170731619697,275,1 +170731619779,233,0 +170731619827,220,0 +170731619875,219,0 +170731619925,219,0 +170731619974,219,0 +170731620024,219,0 +170731620072,219,0 +170731620120,219,0 +170731620169,219,0 +170731620219,219,0 +170731620266,219,0 +170731620314,219,0 +170731620362,219,0 +170731620412,219,0 +170731620460,219,0 +170731620508,219,0 +170731620556,219,0 +170731620604,219,0 +170731620652,219,0 +170731620700,221,0 +170731620749,277,1 +170731620829,229,0 +170731620877,219,0 +170731620927,219,0 +170731620976,219,0 +170731621026,219,0 +170731621074,219,0 +170731621122,218,0 +170731621171,219,0 +170731621221,219,0 +170731621269,219,0 +170731621317,219,0 +170731621365,219,0 +170731621414,219,0 +170731621464,219,0 +170731621513,219,0 +170731621563,219,0 +170731621612,219,0 +170731621660,219,0 +170731621710,219,0 +170731621758,221,0 +170731621807,278,1 +170731621896,235,0 +170731621945,220,0 +170731621993,220,0 +170731622041,219,0 +170731622091,220,0 +170731622139,220,0 +170731622188,220,0 +170731622238,220,0 +170731622285,220,0 +170731622335,220,0 +170731622383,220,0 +170731622433,220,0 +170731622482,220,0 +170731622532,220,0 +170731622580,220,0 +170731622628,219,0 +170731622677,219,0 +170731622725,220,0 +170731622773,220,0 +170731622822,245,0 +170731622870,276,1 +170731622954,226,0 +170731623002,220,0 +170731623050,220,0 +170731623098,220,0 +170731623146,220,0 +170731623194,220,0 +170731623242,220,0 +170731623291,220,0 +170731623341,220,0 +170731623389,220,0 +170731623437,219,0 +170731623485,220,0 +170731623533,219,0 +170731623581,220,0 +170731623629,220,0 +170731623676,220,0 +170731623724,220,0 +170731623772,220,0 +170731623820,220,0 +170731623868,234,0 +170731623916,293,1 +170731624006,222,0 +170731624055,220,0 +170731624103,219,0 +170731624151,219,0 +170731624199,219,0 +170731624247,220,0 +170731624296,220,0 +170731624344,219,0 +170731624392,219,0 +170731624442,220,0 +170731624491,220,0 +170731624539,220,0 +170731624587,219,0 +170731624635,220,0 +170731624683,219,0 +170731624732,220,0 +170731624780,220,0 +170731624830,220,0 +170731624878,220,0 +170731624927,262,0 +170731624975,301,1 +170731625057,225,0 +170731625105,220,0 +170731625153,219,0 +170731625202,219,0 +170731625252,219,0 +170731625302,219,0 +170731625351,219,0 +170731625401,219,0 +170731625448,220,0 +170731625496,219,0 +170731625544,220,0 +170731625592,219,0 +170731625642,220,0 +170731625691,219,0 +170731625741,219,0 +170731625791,220,0 +170731625840,219,0 +170731625888,219,0 +170731625936,221,0 +170731625984,293,1 +170731626071,229,0 +170731626119,220,0 +170731626167,220,0 +170731626216,220,0 +170731626264,220,0 +170731626314,219,0 +170731626363,219,0 +170731626411,219,0 +170731626459,219,0 +170731626507,220,0 +170731626555,219,0 +170731626603,220,0 +170731626652,220,0 +170731626702,220,0 +170731626750,220,0 +170731626798,219,0 +170731626846,220,0 +170731626895,220,0 +170731626945,219,0 +170731626994,221,0 +170731627044,272,1 +170731627125,234,0 +170731627175,220,0 +170731627223,219,0 +170731627271,219,0 +170731627318,220,0 +170731627366,220,0 +170731627414,220,0 +170731627462,220,0 +170731627510,219,0 +170731627558,219,0 +170731627606,220,0 +170731627653,220,0 +170731627701,219,0 +170731627749,220,0 +170731627797,220,0 +170731627845,220,0 +170731627893,220,0 +170731627941,219,0 +170731627989,220,0 +170731628037,221,0 +170731628084,277,1 +170731628158,276,1 +170731628240,220,0 +170731628288,220,0 +170731628336,219,0 +170731628384,220,0 +170731628432,219,0 +170731628482,220,0 +170731628529,219,0 +170731628577,220,0 +170731628627,220,0 +170731628675,219,0 +170731628722,220,0 +170731628770,219,0 +170731628818,220,0 +170731628866,219,0 +170731628914,220,0 +170731628962,219,0 +170731629010,220,0 +170731629058,220,0 +170731629106,222,0 +170731629154,272,1 +170731629235,236,0 +170731629285,220,0 +170731629333,219,0 +170731629380,219,0 +170731629428,219,0 +170731629476,220,0 +170731629524,219,0 +170731629572,219,0 +170731629620,219,0 +170731629668,219,0 +170731629716,219,0 +170731629764,219,0 +170731629813,220,0 +170731629861,219,0 +170731629909,220,0 +170731629957,219,0 +170731630005,219,0 +170731630052,219,0 +170731630100,220,0 +170731630148,221,0 +170731630196,283,1 +170731630284,234,0 +170731630334,220,0 +170731630383,219,0 +170731630431,219,0 +170731630479,219,0 +170731630527,220,0 +170731630575,219,0 +170731630623,220,0 +170731630671,220,0 +170731630719,220,0 +170731630767,219,0 +170731630816,219,0 +170731630864,220,0 +170731630912,219,0 +170731630960,220,0 +170731631008,219,0 +170731631056,220,0 +170731631105,220,0 +170731631153,220,0 +170731631201,222,0 +170731631249,276,1 +170731631328,233,0 +170731631376,221,0 +170731631424,219,0 +170731631471,220,0 +170731631519,219,0 +170731631567,219,0 +170731631615,220,0 +170731631663,220,0 +170731631711,220,0 +170731631759,220,0 +170731631807,219,0 +170731631856,219,0 +170731631904,220,0 +170731631952,220,0 +170731632000,219,0 +170731632048,220,0 +170731632096,220,0 +170731632144,220,0 +170731632194,220,0 +170731632242,221,0 +170731632291,287,1 +170731632374,233,0 +170731632422,220,0 +170731632470,220,0 +170731632520,219,0 +170731632568,219,0 +170731632617,219,0 +170731632665,219,0 +170731632715,219,0 +170731632763,219,0 +170731632811,220,0 +170731632859,220,0 +170731632907,220,0 +170731632955,220,0 +170731633004,219,0 +170731633052,220,0 +170731633100,219,0 +170731633148,219,0 +170731633196,219,0 +170731633244,220,0 +170731633292,221,0 +170731633340,277,1 +170731633424,236,0 +170731633472,220,0 +170731633521,220,0 +170731633569,219,0 +170731633617,219,0 +170731633667,220,0 +170731633715,220,0 +170731633763,220,0 +170731633811,220,0 +170731633860,220,0 +170731633908,219,0 +170731633958,219,0 +170731634007,220,0 +170731634055,219,0 +170731634105,220,0 +170731634154,219,0 +170731634204,220,0 +170731634252,220,0 +170731634300,220,0 +170731634350,222,0 +170731634399,286,1 +170731634495,229,0 +170731634542,220,0 +170731634592,220,0 +170731634640,219,0 +170731634688,220,0 +170731634737,220,0 +170731634785,220,0 +170731634835,220,0 +170731634883,219,0 +170731634931,219,0 +170731634979,219,0 +170731635027,220,0 +170731635075,220,0 +170731635124,219,0 +170731635172,220,0 +170731635220,219,0 +170731635270,220,0 +170731635318,220,0 +170731635366,220,0 +170731635415,224,0 +170731635463,283,1 +170731635548,230,0 +170731635596,220,0 +170731635644,219,0 +170731635692,219,0 +170731635740,219,0 +170731635788,220,0 +170731635836,220,0 +170731635884,220,0 +170731635932,220,0 +170731635981,219,0 +170731636029,219,0 +170731636077,220,0 +170731636127,220,0 +170731636175,220,0 +170731636223,220,0 +170731636271,220,0 +170731636320,220,0 +170731636368,220,0 +170731636418,220,0 +170731636467,229,0 +170731636515,301,1 +170731636598,227,0 +170731636648,220,0 +170731636696,220,0 +170731636745,219,0 +170731636793,220,0 +170731636841,220,0 +170731636889,220,0 +170731636937,220,0 +170731636987,220,0 +170731637035,219,0 +170731637083,220,0 +170731637132,219,0 +170731637182,220,0 +170731637230,220,0 +170731637277,220,0 +170731637325,220,0 +170731637373,220,0 +170731637421,220,0 +170731637471,220,0 +170731637518,243,0 +170731637566,288,1 +170731637648,226,0 +170731637696,219,0 +170731637744,219,0 +170731637791,219,0 +170731637839,219,0 +170731637887,219,0 +170731637935,219,0 +170731637983,219,0 +170731638031,219,0 +170731638079,219,0 +170731638127,219,0 +170731638175,219,0 +170731638222,219,0 +170731638272,219,0 +170731638320,219,0 +170731638368,219,0 +170731638416,219,0 +170731638463,219,0 +170731638511,220,0 +170731638559,225,0 +170731638607,281,1 +170731638695,224,0 +170731638744,219,0 +170731638794,219,0 +170731638842,219,0 +170731638890,219,0 +170731638938,219,0 +170731638985,219,0 +170731639033,219,0 +170731639081,219,0 +170731639129,219,0 +170731639177,219,0 +170731639225,219,0 +170731639273,219,0 +170731639321,219,0 +170731639369,219,0 +170731639417,219,0 +170731639464,219,0 +170731639512,219,0 +170731639560,220,0 +170731639608,224,0 +170731639656,303,1 +170731639737,229,0 +170731639785,220,0 +170731639833,219,0 +170731639881,219,0 +170731639928,219,0 +170731639976,219,0 +170731640024,219,0 +170731640072,219,0 +170731640120,220,0 +170731640168,219,0 +170731640216,219,0 +170731640264,219,0 +170731640313,219,0 +170731640361,219,0 +170731640409,219,0 +170731640457,219,0 +170731640505,219,0 +170731640555,219,0 +170731640603,220,0 +170731640651,223,0 +170731640699,276,1 +170731640780,231,0 +170731640828,220,0 +170731640877,220,0 +170731640925,219,0 +170731640975,219,0 +170731641024,219,0 +170731641072,219,0 +170731641120,219,0 +170731641170,219,0 +170731641218,219,0 +170731641267,219,0 +170731641317,219,0 +170731641365,219,0 +170731641413,219,0 +170731641461,219,0 +170731641509,219,0 +170731641558,220,0 +170731641606,219,0 +170731641654,220,0 +170731641703,223,0 +170731641753,279,1 +170731641837,230,0 +170731641885,220,0 +170731641934,220,0 +170731641984,220,0 +170731642032,220,0 +170731642079,220,0 +170731642129,220,0 +170731642177,220,0 +170731642226,220,0 +170731642274,220,0 +170731642324,220,0 +170731642372,219,0 +170731642420,219,0 +170731642468,220,0 +170731642516,220,0 +170731642564,219,0 +170731642612,220,0 +170731642660,219,0 +170731642708,220,0 +170731642755,223,0 +170731642803,275,1 +170731642882,231,0 +170731642929,220,0 +170731642979,219,0 +170731643027,219,0 +170731643076,220,0 +170731643124,219,0 +170731643172,220,0 +170731643220,219,0 +170731643268,219,0 +170731643316,219,0 +170731643364,220,0 +170731643413,219,0 +170731643461,219,0 +170731643510,219,0 +170731643558,220,0 +170731643606,219,0 +170731643654,219,0 +170731643702,220,0 +170731643750,220,0 +170731643798,221,0 +170731643847,272,1 +170731643929,235,0 +170731643977,220,0 +170731644024,219,0 +170731644072,220,0 +170731644120,220,0 +170731644168,220,0 +170731644216,220,0 +170731644264,220,0 +170731644312,220,0 +170731644360,219,0 +170731644408,220,0 +170731644457,219,0 +170731644505,220,0 +170731644553,219,0 +170731644601,220,0 +170731644649,219,0 +170731644698,219,0 +170731644746,220,0 +170731644796,221,0 +170731644845,223,0 +170731644893,285,1 +170731644976,233,0 +170731645024,220,0 +170731645072,220,0 +170731645120,219,0 +170731645168,220,0 +170731645216,219,0 +170731645264,220,0 +170731645312,220,0 +170731645361,220,0 +170731645411,220,0 +170731645459,220,0 +170731645507,219,0 +170731645556,220,0 +170731645606,220,0 +170731645654,219,0 +170731645702,220,0 +170731645750,220,0 +170731645798,220,0 +170731645847,220,0 +170731645895,222,0 +170731645943,288,1 +170731646027,235,0 +170731646075,220,0 +170731646123,220,0 +170731646172,220,0 +170731646220,220,0 +170731646268,219,0 +170731646316,219,0 +170731646364,220,0 +170731646412,219,0 +170731646460,220,0 +170731646508,220,0 +170731646558,220,0 +170731646606,219,0 +170731646655,220,0 +170731646703,220,0 +170731646753,219,0 +170731646800,220,0 +170731646848,219,0 +170731646896,221,0 +170731646944,222,0 +170731646992,270,1 +170731647076,231,0 +170731647124,220,0 +170731647174,219,0 +170731647222,220,0 +170731647270,219,0 +170731647319,220,0 +170731647367,220,0 +170731647417,219,0 +170731647465,219,0 +170731647513,220,0 +170731647562,220,0 +170731647610,220,0 +170731647658,219,0 +170731647706,220,0 +170731647754,220,0 +170731647803,220,0 +170731647851,220,0 +170731647899,220,0 +170731647947,220,0 +170731647995,222,0 +170731648043,284,1 +170731648124,234,0 +170731648173,220,0 +170731648221,219,0 +170731648269,220,0 +170731648317,219,0 +170731648365,219,0 +170731648415,219,0 +170731648463,219,0 +170731648511,220,0 +170731648560,220,0 +170731648608,219,0 +170731648658,219,0 +170731648706,219,0 +170731648754,219,0 +170731648802,219,0 +170731648850,220,0 +170731648899,220,0 +170731648947,219,0 +170731648997,220,0 +170731649044,223,0 +170731649094,288,1 +170731649173,234,0 +170731649221,220,0 +170731649269,220,0 +170731649317,220,0 +170731649365,219,0 +170731649413,219,0 +170731649461,219,0 +170731649508,219,0 +170731649556,220,0 +170731649604,219,0 +170731649652,220,0 +170731649700,220,0 +170731649749,220,0 +170731649797,219,0 +170731649847,220,0 +170731649895,219,0 +170731649943,219,0 +170731649991,220,0 +170731650038,220,0 +170731650086,221,0 +170731650134,293,1 +170731650218,234,0 +170731650266,220,0 +170731650314,219,0 +170731650362,219,0 +170731650410,219,0 +170731650458,219,0 +170731650505,220,0 +170731650555,219,0 +170731650603,219,0 +170731650652,219,0 +170731650700,219,0 +170731650748,219,0 +170731650796,219,0 +170731650846,220,0 +170731650894,219,0 +170731650942,220,0 +170731650990,219,0 +170731651039,220,0 +170731651087,220,0 +170731651137,221,0 +170731651185,280,1 +170731651262,226,0 +170731651311,220,0 +170731651359,220,0 +170731651407,219,0 +170731651455,219,0 +170731651503,219,0 +170731651550,219,0 +170731651598,220,0 +170731651646,219,0 +170731651696,219,0 +170731651744,220,0 +170731651791,220,0 +170731651839,219,0 +170731651887,220,0 +170731651935,219,0 +170731651983,220,0 +170731652031,219,0 +170731652081,220,0 +170731652129,220,0 +170731652177,221,0 +170731652226,276,1 +170731652309,233,0 +170731652359,220,0 +170731652407,220,0 +170731652456,220,0 +170731652506,220,0 +170731652554,219,0 +170731652602,219,0 +170731652650,220,0 +170731652698,220,0 +170731652747,220,0 +170731652797,220,0 +170731652845,220,0 +170731652893,219,0 +170731652940,220,0 +170731652988,220,0 +170731653036,220,0 +170731653086,219,0 +170731653134,220,0 +170731653183,220,0 +170731653231,222,0 +170731653281,298,1 +170731653365,239,0 +170731653413,220,0 +170731653461,220,0 +170731653510,220,0 +170731653558,220,0 +170731653608,220,0 +170731653656,220,0 +170731653705,219,0 +170731653753,220,0 +170731653801,220,0 +170731653851,220,0 +170731653898,219,0 +170731653946,220,0 +170731653994,220,0 +170731654044,220,0 +170731654092,219,0 +170731654139,220,0 +170731654187,220,0 +170731654237,220,0 +170731654286,223,0 +170731654334,297,1 +170731654416,234,0 +170731654464,220,0 +170731654514,219,0 +170731654562,219,0 +170731654610,219,0 +170731654658,219,0 +170731654706,220,0 +170731654755,220,0 +170731654805,219,0 +170731654853,220,0 +170731654902,219,0 +170731654950,220,0 +170731655000,219,0 +170731655049,219,0 +170731655097,219,0 +170731655147,220,0 +170731655196,219,0 +170731655244,220,0 +170731655292,220,0 +170731655342,224,0 +170731655390,289,1 +170731655474,228,0 +170731655523,220,0 +170731655571,220,0 +170731655620,219,0 +170731655668,219,0 +170731655716,219,0 +170731655764,219,0 +170731655812,220,0 +170731655860,219,0 +170731655910,219,0 +170731655959,220,0 +170731656007,220,0 +170731656057,219,0 +170731656106,219,0 +170731656154,219,0 +170731656202,220,0 +170731656250,219,0 +170731656298,220,0 +170731656347,220,0 +170731656395,227,0 +170731656445,295,1 +170731656531,226,0 +170731656581,219,0 +170731656629,219,0 +170731656677,219,0 +170731656726,220,0 +170731656776,219,0 +170731656824,219,0 +170731656873,219,0 +170731656921,219,0 +170731656971,219,0 +170731657020,220,0 +170731657070,219,0 +170731657119,219,0 +170731657167,220,0 +170731657215,219,0 +170731657263,219,0 +170731657311,220,0 +170731657359,219,0 +170731657407,220,0 +170731657455,260,0 +170731657502,290,1 +170731657583,227,0 +170731657631,220,0 +170731657679,219,0 +170731657726,219,0 +170731657774,219,0 +170731657824,219,0 +170731657872,219,0 +170731657920,219,0 +170731657969,219,0 +170731658019,220,0 +170731658067,219,0 +170731658115,219,0 +170731658164,219,0 +170731658212,219,0 +170731658260,219,0 +170731658310,219,0 +170731658358,219,0 +170731658406,219,0 +170731658454,220,0 +170731658503,248,0 +170731658551,298,1 +170731658632,226,0 +170731658680,220,0 +170731658730,219,0 +170731658778,219,0 +170731658827,219,0 +170731658875,219,0 +170731658925,219,0 +170731658973,220,0 +170731659021,219,0 +170731659069,219,0 +170731659116,219,0 +170731659166,219,0 +170731659214,219,0 +170731659262,219,0 +170731659310,219,0 +170731659357,220,0 +170731659405,219,0 +170731659453,220,0 +170731659501,220,0 +170731659550,264,0 +170731659598,293,1 +170731659681,225,0 +170731659729,220,0 +170731659777,220,0 +170731659827,219,0 +170731659875,220,0 +170731659924,219,0 +170731659974,219,0 +170731660022,219,0 +170731660070,219,0 +170731660118,219,0 +170731660166,219,0 +170731660215,219,0 +170731660263,220,0 +170731660311,219,0 +170731660359,219,0 +170731660409,219,0 +170731660457,219,0 +170731660506,220,0 +170731660554,220,0 +170731660602,273,1 +170731660687,260,0 +170731660737,222,0 +170731660785,219,0 +170731660834,219,0 +170731660882,220,0 +170731660930,219,0 +170731660978,219,0 +170731661026,219,0 +170731661076,220,0 +170731661125,219,0 +170731661175,220,0 +170731661224,219,0 +170731661273,219,0 +170731661321,219,0 +170731661371,219,0 +170731661420,219,0 +170731661470,219,0 +170731661520,219,0 +170731661568,220,0 +170731661615,220,0 +170731661663,285,1 +170731661748,232,0 +170731661797,220,0 +170731661845,219,0 +170731661893,219,0 +170731661941,219,0 +170731661989,219,0 +170731662038,219,0 +170731662088,219,0 +170731662136,219,0 +170731662184,220,0 +170731662232,219,0 +170731662280,219,0 +170731662329,219,0 +170731662377,219,0 +170731662425,219,0 +170731662473,219,0 +170731662521,219,0 +170731662569,220,0 +170731662617,220,0 +170731662665,221,0 +170731662713,290,1 +170731662794,229,0 +170731662842,221,0 +170731662891,219,0 +170731662939,220,0 +170731662987,220,0 +170731663037,219,0 +170731663086,219,0 +170731663136,219,0 +170731663184,220,0 +170731663232,219,0 +170731663280,219,0 +170731663328,220,0 +170731663377,219,0 +170731663425,219,0 +170731663475,219,0 +170731663522,219,0 +170731663572,219,0 +170731663620,220,0 +170731663668,220,0 +170731663717,221,0 +170731663765,288,1 +170731663848,235,0 +170731663896,220,0 +170731663946,220,0 +170731663995,220,0 +170731664043,219,0 +170731664091,219,0 +170731664140,219,0 +170731664188,219,0 +170731664238,219,0 +170731664287,219,0 +170731664335,219,0 +170731664385,219,0 +170731664433,219,0 +170731664482,219,0 +170731664530,219,0 +170731664578,219,0 +170731664628,219,0 +170731664677,220,0 +170731664727,220,0 +170731664776,221,0 +170731664826,284,1 +170731664906,233,0 +170731664955,219,0 +170731665003,219,0 +170731665053,219,0 +170731665101,219,0 +170731665149,220,0 +170731665198,219,0 +170731665248,219,0 +170731665297,219,0 +170731665347,219,0 +170731665395,219,0 +170731665443,219,0 +170731665491,220,0 +170731665540,219,0 +170731665590,219,0 +170731665638,219,0 +170731665686,220,0 +170731665735,221,0 +170731665783,224,0 +170731665833,228,0 +170731665881,249,0 +170731665930,248,0 +170731665978,224,0 +170731666026,220,0 +170731666074,221,0 +170731666122,220,0 +170731666170,220,0 +170731666218,220,0 +170731666266,220,0 +170731666314,220,0 +170731666363,221,0 +170731666411,220,0 +170731666459,220,0 +170731666509,220,0 +170731666558,220,0 +170731666608,220,0 +170731666657,220,0 +170731666705,220,0 +170731666753,220,0 +170731666801,220,0 +170731666849,221,0 +170731666897,288,1 +170731666976,280,1 +170731667058,220,0 +170731667106,220,0 +170731667156,220,0 +170731667205,220,0 +170731667253,220,0 +170731667303,220,0 +170731667351,220,0 +170731667399,219,0 +170731667447,220,0 +170731667495,220,0 +170731667543,220,0 +170731667591,220,0 +170731667640,220,0 +170731667688,220,0 +170731667736,220,0 +170731667786,220,0 +170731667834,220,0 +170731667882,220,0 +170731667930,224,0 +170731667979,290,1 +170731668063,231,0 +170731668113,221,0 +170731668161,220,0 +170731668209,220,0 +170731668258,220,0 +170731668306,220,0 +170731668354,220,0 +170731668404,220,0 +170731668453,220,0 +170731668501,220,0 +170731668549,220,0 +170731668597,220,0 +170731668645,220,0 +170731668695,220,0 +170731668744,220,0 +170731668794,220,0 +170731668842,220,0 +170731668890,220,0 +170731668938,221,0 +170731668987,242,0 +170731669037,278,1 +170731669130,221,0 +170731669178,220,0 +170731669228,220,0 +170731669275,221,0 +170731669323,220,0 +170731669373,220,0 +170731669422,220,0 +170731669472,220,0 +170731669521,220,0 +170731669569,220,0 +170731669617,220,0 +170731669665,220,0 +170731669713,220,0 +170731669761,220,0 +170731669811,220,0 +170731669859,220,0 +170731669907,220,0 +170731669955,221,0 +170731670004,222,0 +170731670052,255,0 +170731670100,277,1 +170731670181,221,0 +170731670229,221,0 +170731670277,220,0 +170731670325,220,0 +170731670375,220,0 +170731670423,220,0 +170731670472,220,0 +170731670520,220,0 +170731670568,220,0 +170731670618,220,0 +170731670667,220,0 +170731670717,220,0 +170731670765,221,0 +170731670813,220,0 +170731670861,220,0 +170731670909,220,0 +170731670957,220,0 +170731671006,220,0 +170731671054,221,0 +170731671102,268,0 +170731671150,285,1 +170731671228,221,0 +170731671276,220,0 +170731671326,220,0 +170731671374,220,0 +170731671423,220,0 +170731671473,220,0 +170731671521,220,0 +170731671569,220,0 +170731671617,220,0 +170731671665,220,0 +170731671713,220,0 +170731671762,220,0 +170731671812,220,0 +170731671860,220,0 +170731671909,220,0 +170731671957,220,0 +170731672005,220,0 +170731672054,220,0 +170731672102,221,0 +170731672150,286,1 +170731672230,236,0 +170731672280,221,0 +170731672327,221,0 +170731672377,220,0 +170731672426,220,0 +170731672476,220,0 +170731672524,220,0 +170731672573,220,0 +170731672623,221,0 +170731672671,220,0 +170731672719,220,0 +170731672767,221,0 +170731672815,220,0 +170731672863,220,0 +170731672912,220,0 +170731672962,220,0 +170731673010,220,0 +170731673058,221,0 +170731673107,220,0 +170731673155,221,0 +170731673203,268,0 +170731673253,283,1 +170731673334,221,0 +170731673382,220,0 +170731673431,220,0 +170731673479,220,0 +170731673527,220,0 +170731673575,220,0 +170731673623,220,0 +170731673671,220,0 +170731673721,220,0 +170731673770,220,0 +170731673820,220,0 +170731673869,220,0 +170731673917,220,0 +170731673965,220,0 +170731674013,220,0 +170731674063,220,0 +170731674111,220,0 +170731674160,220,0 +170731674208,222,0 +170731674258,279,1 +170731674345,235,0 +170731674393,221,0 +170731674442,220,0 +170731674492,220,0 +170731674541,220,0 +170731674591,220,0 +170731674640,220,0 +170731674688,220,0 +170731674736,220,0 +170731674784,220,0 +170731674832,220,0 +170731674880,220,0 +170731674928,220,0 +170731674976,220,0 +170731675025,220,0 +170731675073,220,0 +170731675123,220,0 +170731675173,220,0 +170731675220,221,0 +170731675270,222,0 +170731675318,274,1 +170731675402,234,0 +170731675452,221,0 +170731675500,221,0 +170731675547,220,0 +170731675595,220,0 +170731675645,221,0 +170731675694,220,0 +170731675742,220,0 +170731675790,220,0 +170731675840,220,0 +170731675888,220,0 +170731675937,220,0 +170731675987,220,0 +170731676036,220,0 +170731676086,220,0 +170731676134,220,0 +170731676182,220,0 +170731676230,221,0 +170731676279,221,0 +170731676327,244,0 +170731676375,290,1 +170731676459,224,0 +170731676507,221,0 +170731676555,220,0 +170731676603,221,0 +170731676651,220,0 +170731676699,220,0 +170731676749,220,0 +170731676797,220,0 +170731676846,220,0 +170731676894,220,0 +170731676942,220,0 +170731676990,220,0 +170731677038,220,0 +170731677086,220,0 +170731677133,220,0 +170731677181,220,0 +170731677229,220,0 +170731677277,221,0 +170731677325,220,0 +170731677373,232,0 +170731677423,274,1 +170731677505,226,0 +170731677555,221,0 +170731677602,220,0 +170731677650,220,0 +170731677698,220,0 +170731677748,220,0 +170731677798,220,0 +170731677845,220,0 +170731677893,220,0 +170731677941,220,0 +170731677989,220,0 +170731678037,220,0 +170731678085,220,0 +170731678135,220,0 +170731678184,220,0 +170731678234,220,0 +170731678283,220,0 +170731678331,220,0 +170731678379,220,0 +170731678427,257,0 +170731678477,287,1 +170731678558,226,0 +170731678607,220,0 +170731678655,221,0 +170731678703,220,0 +170731678751,220,0 +170731678801,220,0 +170731678849,220,0 +170731678897,220,0 +170731678945,220,0 +170731678994,219,0 +170731679042,220,0 +170731679090,220,0 +170731679138,220,0 +170731679186,220,0 +170731679234,220,0 +170731679284,220,0 +170731679332,220,0 +170731679381,220,0 +170731679431,221,0 +170731679479,262,0 +170731679528,298,1 +170731679611,223,0 +170731679659,221,0 +170731679708,220,0 +170731679756,220,0 +170731679806,220,0 +170731679854,220,0 +170731679903,220,0 +170731679951,220,0 +170731679999,220,0 +170731680049,220,0 +170731680098,220,0 +170731680148,220,0 +170731680196,220,0 +170731680244,220,0 +170731680291,220,0 +170731680339,220,0 +170731680387,220,0 +170731680435,220,0 +170731680483,221,0 +170731680531,263,0 +170731680579,283,1 +170731680661,224,0 +170731680711,220,0 +170731680759,220,0 +170731680808,220,0 +170731680856,220,0 +170731680904,220,0 +170731680954,220,0 +170731681002,220,0 +170731681050,220,0 +170731681098,220,0 +170731681146,220,0 +170731681194,220,0 +170731681241,220,0 +170731681289,220,0 +170731681339,220,0 +170731681387,220,0 +170731681435,220,0 +170731681483,220,0 +170731681531,221,0 +170731681578,257,0 +170731681626,259,0 +170731681674,224,0 +170731681722,221,0 +170731681770,220,0 +170731681818,220,0 +170731681866,220,0 +170731681914,220,0 +170731681962,220,0 +170731682010,220,0 +170731682057,221,0 +170731682105,220,0 +170731682153,220,0 +170731682203,220,0 +170731682251,220,0 +170731682298,220,0 +170731682348,220,0 +170731682396,220,0 +170731682445,220,0 +170731682493,220,0 +170731682541,220,0 +170731682589,222,0 +170731682637,278,1 +170731682726,231,0 +170731682775,221,0 +170731682823,220,0 +170731682871,220,0 +170731682919,220,0 +170731682967,220,0 +170731683015,220,0 +170731683064,221,0 +170731683112,220,0 +170731683160,220,0 +170731683208,220,0 +170731683256,220,0 +170731683304,220,0 +170731683352,220,0 +170731683400,220,0 +170731683449,220,0 +170731683497,220,0 +170731683545,220,0 +170731683593,220,0 +170731683641,221,0 +170731683689,267,0 +170731683737,276,1 +170731683819,221,0 +170731683867,220,0 +170731683916,221,0 +170731683964,221,0 +170731684012,220,0 +170731684062,220,0 +170731684110,220,0 +170731684160,220,0 +170731684208,220,0 +170731684256,220,0 +170731684303,220,0 +170731684351,220,0 +170731684401,220,0 +170731684449,220,0 +170731684497,220,0 +170731684545,220,0 +170731684594,220,0 +170731684644,221,0 +170731684692,222,0 +170731684739,295,1 +170731684822,233,0 +170731684870,221,0 +170731684919,221,0 +170731684967,220,0 +170731685017,220,0 +170731685065,220,0 +170731685114,220,0 +170731685162,220,0 +170731685212,220,0 +170731685261,220,0 +170731685311,220,0 +170731685359,220,0 +170731685408,220,0 +170731685456,220,0 +170731685504,220,0 +170731685552,221,0 +170731685600,220,0 +170731685648,220,0 +170731685696,221,0 +170731685745,223,0 +170731685795,281,1 +170731685878,235,0 +170731685927,221,0 +170731685975,221,0 +170731686023,220,0 +170731686071,220,0 +170731686119,220,0 +170731686167,220,0 +170731686214,220,0 +170731686262,220,0 +170731686310,220,0 +170731686360,220,0 +170731686409,220,0 +170731686459,220,0 +170731686508,220,0 +170731686558,220,0 +170731686606,220,0 +170731686655,220,0 +170731686703,220,0 +170731686751,221,0 +170731686799,223,0 +170731686849,289,1 +170731686924,238,0 +170731686973,220,0 +170731687023,220,0 +170731687071,220,0 +170731687119,220,0 +170731687168,220,0 +170731687216,220,0 +170731687264,220,0 +170731687312,220,0 +170731687360,220,0 +170731687408,220,0 +170731687455,220,0 +170731687503,220,0 +170731687551,220,0 +170731687601,220,0 +170731687649,220,0 +170731687697,220,0 +170731687745,221,0 +170731687793,221,0 +170731687842,222,0 +170731687890,277,1 +170731687968,232,0 +170731688018,221,0 +170731688066,220,0 +170731688114,220,0 +170731688161,221,0 +170731688211,220,0 +170731688259,220,0 +170731688307,220,0 +170731688354,221,0 +170731688402,219,0 +170731688450,220,0 +170731688500,220,0 +170731688549,220,0 +170731688597,220,0 +170731688647,220,0 +170731688695,220,0 +170731688743,220,0 +170731688791,220,0 +170731688840,220,0 +170731688888,222,0 +170731688936,296,1 +170731689019,237,0 +170731689067,221,0 +170731689115,220,0 +170731689165,220,0 +170731689213,220,0 +170731689261,220,0 +170731689309,220,0 +170731689357,220,0 +170731689405,220,0 +170731689454,220,0 +170731689502,221,0 +170731689550,220,0 +170731689598,220,0 +170731689646,220,0 +170731689694,220,0 +170731689743,220,0 +170731689793,221,0 +170731689841,221,0 +170731689890,221,0 +170731689938,222,0 +170731689986,286,1 +170731690065,236,0 +170731690115,221,0 +170731690164,220,0 +170731690212,220,0 +170731690260,220,0 +170731690308,220,0 +170731690356,220,0 +170731690405,220,0 +170731690453,220,0 +170731690501,221,0 +170731690551,220,0 +170731690599,220,0 +170731690647,220,0 +170731690695,220,0 +170731690743,220,0 +170731690792,220,0 +170731690840,221,0 +170731690890,220,0 +170731690938,221,0 +170731690986,223,0 +170731691035,291,1 +170731691114,235,0 +170731691162,221,0 +170731691210,220,0 +170731691259,221,0 +170731691309,220,0 +170731691358,220,0 +170731691406,220,0 +170731691454,220,0 +170731691502,220,0 +170731691552,220,0 +170731691601,220,0 +170731691651,220,0 +170731691698,220,0 +170731691748,220,0 +170731691796,220,0 +170731691844,220,0 +170731691893,220,0 +170731691941,220,0 +170731691991,220,0 +170731692039,222,0 +170731692087,302,1 +170731692168,234,0 +170731692216,220,0 +170731692264,220,0 +170731692312,220,0 +170731692360,220,0 +170731692408,220,0 +170731692458,220,0 +170731692505,220,0 +170731692553,219,0 +170731692601,220,0 +170731692649,220,0 +170731692697,220,0 +170731692745,220,0 +170731692794,220,0 +170731692842,221,0 +170731692890,220,0 +170731692938,220,0 +170731692986,220,0 +170731693034,220,0 +170731693082,221,0 +170731693130,294,1 +170731693215,235,0 +170731693263,220,0 +170731693313,220,0 +170731693361,220,0 +170731693408,220,0 +170731693458,221,0 +170731693506,220,0 +170731693554,220,0 +170731693603,220,0 +170731693651,220,0 +170731693701,220,0 +170731693750,220,0 +170731693800,221,0 +170731693848,220,0 +170731693897,220,0 +170731693947,220,0 +170731693996,220,0 +170731694044,220,0 +170731694092,220,0 +170731694142,220,0 +170731694191,220,0 +170731694241,220,0 +170731694289,220,0 +170731694338,220,0 +170731694386,220,0 +170731694434,219,0 +170731694484,219,0 +170731694533,220,0 +170731694583,220,0 +170731694632,222,0 +170731694680,279,1 +170731694764,250,0 +170731694812,222,0 +170731694860,220,0 +170731694909,221,0 +170731694959,220,0 +170731695007,220,0 +170731695055,220,0 +170731695103,220,0 +170731695152,219,0 +170731695200,220,0 +170731695250,220,0 +170731695299,219,0 +170731695347,220,0 +170731695397,220,0 +170731695445,220,0 +170731695493,220,0 +170731695541,220,0 +170731695589,220,0 +170731695636,220,0 +170731695684,221,0 +170731695732,288,1 +170731695809,263,0 +170731695857,223,0 +170731695905,220,0 +170731695952,220,0 +170731696000,220,0 +170731696048,220,0 +170731696096,220,0 +170731696146,220,0 +170731696194,220,0 +170731696243,220,0 +170731696293,220,0 +170731696341,220,0 +170731696389,220,0 +170731696438,220,0 +170731696486,220,0 +170731696534,220,0 +170731696582,220,0 +170731696630,220,0 +170731696678,220,0 +170731696726,221,0 +170731696774,242,0 +170731696821,293,1 +170731696909,224,0 +170731696957,220,0 +170731697004,220,0 +170731697052,220,0 +170731697100,220,0 +170731697148,220,0 +170731697196,220,0 +170731697244,220,0 +170731697292,220,0 +170731697340,220,0 +170731697388,220,0 +170731697437,221,0 +170731697485,220,0 +170731697533,220,0 +170731697581,220,0 +170731697629,220,0 +170731697677,220,0 +170731697724,220,0 +170731697772,221,0 +170731697820,261,0 +170731697868,285,1 +170731697952,225,0 +170731698000,220,0 +170731698048,220,0 +170731698097,220,0 +170731698147,220,0 +170731698195,220,0 +170731698243,220,0 +170731698290,220,0 +170731698338,220,0 +170731698388,220,0 +170731698436,220,0 +170731698486,220,0 +170731698533,220,0 +170731698583,220,0 +170731698632,220,0 +170731698680,220,0 +170731698730,220,0 +170731698778,220,0 +170731698827,221,0 +170731698875,287,1 +170731698958,234,0 +170731699008,221,0 +170731699057,220,0 +170731699107,220,0 +170731699154,220,0 +170731699204,220,0 +170731699253,220,0 +170731699301,220,0 +170731699351,220,0 +170731699400,220,0 +170731699448,220,0 +170731699498,220,0 +170731699546,220,0 +170731699595,220,0 +170731699643,220,0 +170731699691,220,0 +170731699739,220,0 +170731699787,220,0 +170731699837,220,0 +170731699886,221,0 +170731699936,282,1 +170731700020,230,0 +170731700068,221,0 +170731700117,220,0 +170731700165,220,0 +170731700215,220,0 +170731700263,220,0 +170731700311,219,0 +170731700360,220,0 +170731700410,220,0 +170731700459,220,0 +170731700507,220,0 +170731700557,220,0 +170731700604,220,0 +170731700652,220,0 +170731700700,220,0 +170731700748,220,0 +170731700798,220,0 +170731700847,219,0 +170731700895,220,0 +170731700943,222,0 +170731700993,289,1 +170731701076,236,0 +170731701124,220,0 +170731701174,220,0 +170731701222,220,0 +170731701271,220,0 +170731701319,220,0 +170731701369,220,0 +170731701417,220,0 +170731701466,220,0 +170731701516,220,0 +170731701564,219,0 +170731701612,220,0 +170731701660,220,0 +170731701709,219,0 +170731701757,220,0 +170731701807,220,0 +170731701854,220,0 +170731701902,220,0 +170731701950,220,0 +170731702000,223,0 +170731702049,280,1 +170731702143,225,0 +170731702192,220,0 +170731702240,220,0 +170731702288,220,0 +170731702336,220,0 +170731702384,220,0 +170731702432,220,0 +170731702480,220,0 +170731702529,219,0 +170731702577,220,0 +170731702625,219,0 +170731702673,219,0 +170731702723,219,0 +170731702772,219,0 +170731702822,220,0 +170731702870,220,0 +170731702918,220,0 +170731702967,219,0 +170731703015,220,0 +170731703063,226,0 +170731703113,281,1 +170731703202,223,0 +170731703252,220,0 +170731703300,220,0 +170731703348,220,0 +170731703396,220,0 +170731703445,219,0 +170731703495,220,0 +170731703542,220,0 +170731703590,219,0 +170731703638,220,0 +170731703688,220,0 +170731703736,219,0 +170731703784,220,0 +170731703833,219,0 +170731703881,220,0 +170731703931,220,0 +170731703980,220,0 +170731704028,220,0 +170731704076,221,0 +170731704124,279,1 +170731704206,239,0 +170731704253,222,0 +170731704301,220,0 +170731704349,219,0 +170731704397,219,0 +170731704445,220,0 +170731704493,220,0 +170731704541,220,0 +170731704588,219,0 +170731704636,220,0 +170731704686,220,0 +170731704734,219,0 +170731704782,219,0 +170731704829,220,0 +170731704877,220,0 +170731704925,219,0 +170731704973,219,0 +170731705021,220,0 +170731705069,219,0 +170731705117,221,0 +170731705165,293,1 +170731705251,257,0 +170731705299,221,0 +170731705347,220,0 +170731705395,220,0 +170731705444,220,0 +170731705492,220,0 +170731705540,220,0 +170731705588,219,0 +170731705636,220,0 +170731705684,219,0 +170731705731,219,0 +170731705779,220,0 +170731705827,220,0 +170731705877,219,0 +170731705924,219,0 +170731705974,220,0 +170731706022,220,0 +170731706070,220,0 +170731706117,220,0 +170731706165,220,0 +170731706213,248,0 +170731706261,302,1 +170731706345,224,0 +170731706392,220,0 +170731706440,220,0 +170731706490,219,0 +170731706539,219,0 +170731706589,220,0 +170731706638,219,0 +170731706686,220,0 +170731706736,220,0 +170731706784,219,0 +170731706832,219,0 +170731706880,220,0 +170731706928,220,0 +170731706977,220,0 +170731707025,220,0 +170731707073,220,0 +170731707121,220,0 +170731707169,219,0 +170731707217,221,0 +170731707267,292,1 +170731707349,228,0 +170731707398,220,0 +170731707446,220,0 +170731707494,220,0 +170731707543,219,0 +170731707593,220,0 +170731707642,219,0 +170731707692,220,0 +170731707741,219,0 +170731707789,220,0 +170731707837,219,0 +170731707887,219,0 +170731707935,219,0 +170731707983,220,0 +170731708031,220,0 +170731708079,219,0 +170731708127,219,0 +170731708175,220,0 +170731708223,220,0 +170731708271,222,0 +170731708319,266,0 +170731708368,292,1 +170731708450,220,0 +170731708500,219,0 +170731708548,220,0 +170731708596,220,0 +170731708644,220,0 +170731708692,220,0 +170731708739,220,0 +170731708787,219,0 +170731708835,220,0 +170731708883,220,0 +170731708933,220,0 +170731708981,220,0 +170731709029,220,0 +170731709078,220,0 +170731709128,220,0 +170731709176,220,0 +170731709224,220,0 +170731709273,219,0 +170731709321,220,0 +170731709371,279,1 +170731709455,237,0 +170731709503,222,0 +170731709551,220,0 +170731709600,220,0 +170731709648,220,0 +170731709698,220,0 +170731709746,220,0 +170731709794,220,0 +170731709842,220,0 +170731709890,219,0 +170731709938,220,0 +170731709987,220,0 +170731710037,220,0 +170731710086,220,0 +170731710136,219,0 +170731710184,220,0 +170731710232,220,0 +170731710281,219,0 +170731710329,220,0 +170731710379,221,0 +170731710426,292,1 +170731710511,235,0 +170731710559,220,0 +170731710607,220,0 +170731710656,220,0 +170731710704,220,0 +170731710752,220,0 +170731710800,219,0 +170731710848,219,0 +170731710898,219,0 +170731710946,220,0 +170731710994,220,0 +170731711043,220,0 +170731711091,220,0 +170731711141,220,0 +170731711189,220,0 +170731711238,219,0 +170731711286,220,0 +170731711334,219,0 +170731711382,220,0 +170731711430,223,0 +170731711478,282,1 +170731711554,235,0 +170731711602,220,0 +170731711650,220,0 +170731711698,219,0 +170731711746,219,0 +170731711793,220,0 +170731711841,220,0 +170731711889,220,0 +170731711937,219,0 +170731711985,220,0 +170731712033,219,0 +170731712081,220,0 +170731712130,220,0 +170731712180,219,0 +170731712228,219,0 +170731712277,220,0 +170731712327,220,0 +170731712375,220,0 +170731712424,220,0 +170731712472,221,0 +170731712520,271,1 +170731712600,247,0 +170731712648,221,0 +170731712695,220,0 +170731712743,219,0 +170731712793,219,0 +170731712842,220,0 +170731712892,220,0 +170731712940,219,0 +170731712989,219,0 +170731713037,220,0 +170731713085,219,0 +170731713135,219,0 +170731713183,220,0 +170731713232,220,0 +170731713282,220,0 +170731713330,220,0 +170731713378,220,0 +170731713427,220,0 +170731713477,220,0 +170731713525,221,0 +170731713573,290,1 +170731713654,234,0 +170731713704,220,0 +170731713752,220,0 +170731713800,220,0 +170731713849,220,0 +170731713897,220,0 +170731713945,220,0 +170731713993,220,0 +170731714041,220,0 +170731714090,220,0 +170731714140,220,0 +170731714188,220,0 +170731714236,220,0 +170731714284,220,0 +170731714332,220,0 +170731714381,219,0 +170731714430,220,0 +170731714480,220,0 +170731714530,220,0 +170731714578,223,0 +170731714626,298,1 +170731714705,230,0 +170731714753,221,0 +170731714803,220,0 +170731714851,220,0 +170731714900,220,0 +170731714948,220,0 +170731714996,219,0 +170731715044,219,0 +170731715094,219,0 +170731715142,220,0 +170731715191,219,0 +170731715239,219,0 +170731715289,220,0 +170731715337,219,0 +170731715386,219,0 +170731715434,220,0 +170731715484,220,0 +170731715532,220,0 +170731715581,219,0 +170731715631,221,0 +170731715680,284,1 +170731715758,230,0 +170731715805,221,0 +170731715853,220,0 +170731715903,219,0 +170731715951,219,0 +170731715999,219,0 +170731716048,220,0 +170731716096,219,0 +170731716146,219,0 +170731716194,220,0 +170731716242,219,0 +170731716291,219,0 +170731716339,219,0 +170731716389,219,0 +170731716437,219,0 +170731716486,219,0 +170731716534,219,0 +170731716582,220,0 +170731716630,219,0 +170731716678,221,0 +170731716728,286,1 +170731716806,230,0 +170731716854,221,0 +170731716903,219,0 +170731716951,220,0 +170731716999,219,0 +170731717049,220,0 +170731717097,219,0 +170731717146,220,0 +170731717194,219,0 +170731717244,219,0 +170731717292,220,0 +170731717340,219,0 +170731717388,219,0 +170731717437,220,0 +170731717485,219,0 +170731717533,220,0 +170731717581,219,0 +170731717629,220,0 +170731717679,220,0 +170731717726,221,0 +170731717776,297,1 +170731717857,236,0 +170731717907,220,0 +170731717955,220,0 +170731718002,219,0 +170731718052,219,0 +170731718100,220,0 +170731718148,220,0 +170731718196,220,0 +170731718245,220,0 +170731718293,220,0 +170731718341,220,0 +170731718391,220,0 +170731718439,220,0 +170731718487,220,0 +170731718535,220,0 +170731718583,220,0 +170731718632,220,0 +170731718680,220,0 +170731718728,220,0 +170731718777,221,0 +170731718825,294,1 +170731718914,232,0 +170731718962,220,0 +170731719009,220,0 +170731719057,220,0 +170731719105,220,0 +170731719153,220,0 +170731719203,219,0 +170731719252,220,0 +170731719302,220,0 +170731719351,220,0 +170731719399,220,0 +170731719447,220,0 +170731719497,219,0 +170731719546,220,0 +170731719594,220,0 +170731719644,219,0 +170731719692,220,0 +170731719741,220,0 +170731719789,220,0 +170731719839,231,0 +170731719888,293,1 +170731719969,232,0 +170731720018,220,0 +170731720066,219,0 +170731720114,220,0 +170731720164,220,0 +170731720212,220,0 +170731720261,220,0 +170731720309,219,0 +170731720357,220,0 +170731720407,220,0 +170731720455,219,0 +170731720503,219,0 +170731720551,219,0 +170731720599,220,0 +170731720648,220,0 +170731720696,220,0 +170731720744,220,0 +170731720794,220,0 +170731720842,220,0 +170731720891,239,0 +170731720939,295,1 +170731721021,227,0 +170731721069,220,0 +170731721117,220,0 +170731721166,220,0 +170731721214,220,0 +170731721264,219,0 +170731721312,219,0 +170731721360,220,0 +170731721409,219,0 +170731721457,220,0 +170731721505,220,0 +170731721554,220,0 +170731721602,219,0 +170731721652,220,0 +170731721701,220,0 +170731721751,220,0 +170731721799,220,0 +170731721847,219,0 +170731721897,220,0 +170731721945,248,0 +170731721993,303,1 +170731722078,225,0 +170731722127,220,0 +170731722177,220,0 +170731722226,220,0 +170731722274,220,0 +170731722324,219,0 +170731722373,220,0 +170731722423,220,0 +170731722472,219,0 +170731722520,220,0 +170731722568,219,0 +170731722618,220,0 +170731722666,219,0 +170731722715,220,0 +170731722763,219,0 +170731722811,219,0 +170731722859,220,0 +170731722907,220,0 +170731722955,221,0 +170731723003,286,1 +170731723082,276,1 +170731723163,220,0 +170731723211,220,0 +170731723260,219,0 +170731723308,220,0 +170731723358,219,0 +170731723406,220,0 +170731723455,219,0 +170731723503,220,0 +170731723553,219,0 +170731723601,220,0 +170731723649,220,0 +170731723697,219,0 +170731723744,220,0 +170731723792,219,0 +170731723840,219,0 +170731723888,220,0 +170731723938,220,0 +170731723987,220,0 +170731724035,223,0 +170731724083,280,1 +170731724158,233,0 +170731724206,220,0 +170731724255,220,0 +170731724303,219,0 +170731724351,220,0 +170731724399,219,0 +170731724447,220,0 +170731724497,220,0 +170731724545,219,0 +170731724593,219,0 +170731724640,220,0 +170731724688,220,0 +170731724736,219,0 +170731724784,219,0 +170731724832,220,0 +170731724880,220,0 +170731724928,219,0 +170731724978,220,0 +170731725026,220,0 +170731725074,221,0 +170731725122,281,1 +170731725203,227,0 +170731725251,221,0 +170731725301,220,0 +170731725350,219,0 +170731725400,220,0 +170731725448,220,0 +170731725496,219,0 +170731725545,220,0 +170731725595,219,0 +170731725643,219,0 +170731725691,220,0 +170731725740,219,0 +170731725790,220,0 +170731725839,220,0 +170731725887,220,0 +170731725937,219,0 +170731725985,220,0 +170731726034,220,0 +170731726082,220,0 +170731726132,225,0 +170731726181,296,1 +170731726261,235,0 +170731726309,220,0 +170731726357,220,0 +170731726407,220,0 +170731726456,220,0 +170731726504,220,0 +170731726554,219,0 +170731726601,220,0 +170731726651,220,0 +170731726700,220,0 +170731726750,219,0 +170731726798,219,0 +170731726848,219,0 +170731726895,220,0 +170731726943,220,0 +170731726991,219,0 +170731727039,220,0 +170731727087,220,0 +170731727135,221,0 +170731727185,232,0 +170731727234,312,0 +170731727284,257,0 +170731727331,221,0 +170731727381,220,0 +170731727429,220,0 +170731727477,219,0 +170731727525,219,0 +170731727573,220,0 +170731727622,220,0 +170731727672,219,0 +170731727721,219,0 +170731727769,219,0 +170731727817,219,0 +170731727865,220,0 +170731727913,220,0 +170731727962,220,0 +170731728010,220,0 +170731728058,219,0 +170731728106,219,0 +170731728154,220,0 +170731728202,220,0 +170731728250,268,0 +170731728298,289,1 +170731728377,223,0 +170731728424,220,0 +170731728472,220,0 +170731728522,220,0 +170731728570,220,0 +170731728618,219,0 +170731728665,219,0 +170731728713,220,0 +170731728763,219,0 +170731728811,220,0 +170731728860,220,0 +170731728908,220,0 +170731728958,219,0 +170731729007,219,0 +170731729055,219,0 +170731729103,220,0 +170731729151,220,0 +170731729199,219,0 +170731729247,221,0 +170731729295,293,1 +170731729374,258,0 +170731729422,224,0 +170731729470,220,0 +170731729517,219,0 +170731729565,219,0 +170731729615,220,0 +170731729664,220,0 +170731729712,220,0 +170731729762,220,0 +170731729811,219,0 +170731729859,220,0 +170731729909,220,0 +170731729958,219,0 +170731730006,220,0 +170731730056,220,0 +170731730105,219,0 +170731730155,220,0 +170731730204,220,0 +170731730252,220,0 +170731730302,220,0 +170731730351,254,0 +170731730399,293,1 +170731730487,222,0 +170731730535,220,0 +170731730583,219,0 +170731730631,219,0 +170731730679,220,0 +170731730727,219,0 +170731730775,220,0 +170731730823,219,0 +170731730871,220,0 +170731730918,219,0 +170731730966,220,0 +170731731014,219,0 +170731731062,220,0 +170731731110,220,0 +170731731158,219,0 +170731731208,220,0 +170731731256,220,0 +170731731304,220,0 +170731731352,221,0 +170731731400,283,1 +170731731482,267,0 +170731731530,223,0 +170731731578,220,0 +170731731626,220,0 +170731731674,220,0 +170731731722,220,0 +170731731770,219,0 +170731731818,220,0 +170731731866,219,0 +170731731913,219,0 +170731731961,220,0 +170731732009,220,0 +170731732059,220,0 +170731732107,220,0 +170731732155,220,0 +170731732202,220,0 +170731732250,220,0 +170731732298,219,0 +170731732346,220,0 +170731732394,220,0 +170731732442,301,1 +170731732526,245,0 +170731732574,223,0 +170731732622,220,0 +170731732670,219,0 +170731732719,220,0 +170731732767,220,0 +170731732815,220,0 +170731732863,220,0 +170731732912,219,0 +170731732960,219,0 +170731733008,220,0 +170731733056,219,0 +170731733104,219,0 +170731733154,219,0 +170731733202,220,0 +170731733250,220,0 +170731733298,220,0 +170731733346,220,0 +170731733393,220,0 +170731733443,221,0 +170731733492,287,1 +170731733575,231,0 +170731733623,221,0 +170731733670,220,0 +170731733720,220,0 +170731733768,220,0 +170731733816,220,0 +170731733864,220,0 +170731733912,220,0 +170731733960,220,0 +170731734009,220,0 +170731734057,220,0 +170731734105,220,0 +170731734155,220,0 +170731734203,220,0 +170731734251,220,0 +170731734299,219,0 +170731734347,220,0 +170731734396,219,0 +170731734444,220,0 +170731734492,221,0 +170731734540,299,1 +170731734620,270,1 +170731734700,220,0 +170731734749,220,0 +170731734797,220,0 +170731734845,220,0 +170731734894,220,0 +170731734942,220,0 +170731734990,220,0 +170731735038,220,0 +170731735086,219,0 +170731735134,220,0 +170731735182,220,0 +170731735230,220,0 +170731735278,220,0 +170731735326,219,0 +170731735374,219,0 +170731735422,220,0 +170731735469,220,0 +170731735517,220,0 +170731735567,224,0 +170731735616,284,1 +170731735699,230,0 +170731735749,220,0 +170731735797,220,0 +170731735846,220,0 +170731735894,220,0 +170731735942,220,0 +170731735992,219,0 +170731736040,220,0 +170731736087,219,0 +170731736135,219,0 +170731736183,220,0 +170731736231,220,0 +170731736281,220,0 +170731736329,220,0 +170731736376,219,0 +170731736424,220,0 +170731736472,219,0 +170731736520,220,0 +170731736568,221,0 +170731736616,229,0 +170731736664,290,1 +170731736742,230,0 +170731736790,220,0 +170731736838,220,0 +170731736887,219,0 +170731736935,219,0 +170731736983,220,0 +170731737031,220,0 +170731737079,220,0 +170731737127,219,0 +170731737175,220,0 +170731737222,220,0 +170731737270,220,0 +170731737318,220,0 +170731737366,220,0 +170731737416,220,0 +170731737463,219,0 +170731737513,219,0 +170731737562,220,0 +170731737612,220,0 +170731737660,222,0 +170731737708,288,1 +170731737791,236,0 +170731737839,220,0 +170731737887,219,0 +170731737935,220,0 +170731737982,219,0 +170731738030,219,0 +170731738078,220,0 +170731738126,220,0 +170731738174,220,0 +170731738224,220,0 +170731738272,220,0 +170731738320,220,0 +170731738368,220,0 +170731738416,219,0 +170731738464,220,0 +170731738512,220,0 +170731738560,219,0 +170731738608,220,0 +170731738656,220,0 +170731738704,221,0 +170731738752,271,1 +170731738836,233,0 +170731738886,220,0 +170731738933,220,0 +170731738981,219,0 +170731739029,220,0 +170731739079,220,0 +170731739128,220,0 +170731739178,219,0 +170731739226,220,0 +170731739275,219,0 +170731739323,219,0 +170731739371,220,0 +170731739421,220,0 +170731739469,220,0 +170731739518,220,0 +170731739568,220,0 +170731739616,220,0 +170731739664,220,0 +170731739712,220,0 +170731739760,223,0 +170731739808,284,1 +170731739890,236,0 +170731739938,221,0 +170731739986,219,0 +170731740035,219,0 +170731740083,220,0 +170731740131,220,0 +170731740181,220,0 +170731740229,219,0 +170731740278,220,0 +170731740326,219,0 +170731740374,220,0 +170731740424,219,0 +170731740472,220,0 +170731740521,220,0 +170731740569,219,0 +170731740618,220,0 +170731740668,220,0 +170731740716,220,0 +170731740764,220,0 +170731740812,222,0 +170731740860,298,1 +170731740938,238,0 +170731740986,220,0 +170731741035,220,0 +170731741085,220,0 +170731741134,219,0 +170731741184,219,0 +170731741232,220,0 +170731741281,219,0 +170731741329,220,0 +170731741379,220,0 +170731741428,219,0 +170731741478,219,0 +170731741526,220,0 +170731741575,219,0 +170731741623,219,0 +170731741673,219,0 +170731741721,219,0 +170731741769,220,0 +170731741817,220,0 +170731741865,234,0 +170731741913,301,1 +170731741990,235,0 +170731742039,220,0 +170731742089,220,0 +170731742137,219,0 +170731742186,219,0 +170731742234,220,0 +170731742284,219,0 +170731742333,220,0 +170731742381,220,0 +170731742431,219,0 +170731742479,219,0 +170731742527,219,0 +170731742575,220,0 +170731742623,220,0 +170731742671,220,0 +170731742720,220,0 +170731742768,219,0 +170731742818,220,0 +170731742865,220,0 +170731742913,224,0 +170731742961,270,1 +170731743046,231,0 +170731743096,220,0 +170731743144,220,0 +170731743193,220,0 +170731743241,220,0 +170731743291,220,0 +170731743339,220,0 +170731743388,219,0 +170731743436,220,0 +170731743484,220,0 +170731743534,220,0 +170731743582,220,0 +170731743630,219,0 +170731743677,219,0 +170731743725,219,0 +170731743773,220,0 +170731743821,219,0 +170731743869,220,0 +170731743919,220,0 +170731743967,224,0 +170731744016,260,0 +170731744064,262,0 +170731744112,223,0 +170731744160,220,0 +170731744210,220,0 +170731744258,219,0 +170731744306,220,0 +170731744355,219,0 +170731744403,220,0 +170731744451,220,0 +170731744500,219,0 +170731744548,220,0 +170731744598,220,0 +170731744646,219,0 +170731744694,220,0 +170731744742,220,0 +170731744790,220,0 +170731744838,220,0 +170731744886,219,0 +170731744934,220,0 +170731744982,221,0 +170731745030,295,1 +170731745112,252,0 +170731745161,222,0 +170731745211,220,0 +170731745260,220,0 +170731745310,220,0 +170731745359,220,0 +170731745409,220,0 +170731745457,220,0 +170731745506,220,0 +170731745556,219,0 +170731745604,219,0 +170731745652,219,0 +170731745700,220,0 +170731745749,220,0 +170731745797,220,0 +170731745845,220,0 +170731745895,220,0 +170731745944,219,0 +170731745994,220,0 +170731746042,221,0 +170731746091,302,1 +170731746183,236,0 +170731746231,220,0 +170731746281,220,0 +170731746329,220,0 +170731746378,219,0 +170731746426,219,0 +170731746476,219,0 +170731746524,219,0 +170731746573,220,0 +170731746622,219,0 +170731746672,220,0 +170731746720,220,0 +170731746768,220,0 +170731746816,220,0 +170731746864,219,0 +170731746913,219,0 +170731746961,219,0 +170731747009,220,0 +170731747057,220,0 +170731747105,221,0 +170731747153,301,1 +170731747233,235,0 +170731747283,220,0 +170731747332,220,0 +170731747382,220,0 +170731747429,220,0 +170731747477,219,0 +170731747525,219,0 +170731747575,220,0 +170731747623,220,0 +170731747671,219,0 +170731747719,220,0 +170731747768,219,0 +170731747816,220,0 +170731747864,219,0 +170731747912,220,0 +170731747960,219,0 +170731748008,220,0 +170731748056,219,0 +170731748104,220,0 +170731748153,222,0 +170731748201,294,1 +170731748281,235,0 +170731748329,220,0 +170731748378,220,0 +170731748426,219,0 +170731748476,220,0 +170731748523,219,0 +170731748573,219,0 +170731748621,220,0 +170731748669,220,0 +170731748718,219,0 +170731748766,220,0 +170731748816,220,0 +170731748864,219,0 +170731748912,220,0 +170731748960,220,0 +170731749008,219,0 +170731749057,220,0 +170731749105,220,0 +170731749153,220,0 +170731749201,222,0 +170731749249,273,1 +170731749328,234,0 +170731749378,220,0 +170731749426,220,0 +170731749475,220,0 +170731749525,220,0 +170731749573,220,0 +170731749622,219,0 +170731749670,219,0 +170731749720,219,0 +170731749768,219,0 +170731749816,219,0 +170731749864,219,0 +170731749912,219,0 +170731749959,220,0 +170731750007,219,0 +170731750055,219,0 +170731750103,220,0 +170731750151,219,0 +170731750201,220,0 +170731750249,221,0 +170731750298,308,1 +170731750378,232,0 +170731750428,220,0 +170731750476,219,0 +170731750524,219,0 +170731750572,220,0 +170731750619,220,0 +170731750667,219,0 +170731750715,219,0 +170731750763,220,0 +170731750811,219,0 +170731750859,220,0 +170731750907,220,0 +170731750955,219,0 +170731751003,219,0 +170731751051,219,0 +170731751098,220,0 +170731751146,220,0 +170731751196,219,0 +170731751244,219,0 +170731751292,222,0 +170731751341,303,1 +170731751421,237,0 +170731751469,220,0 +170731751517,220,0 +170731751565,220,0 +170731751613,219,0 +170731751661,220,0 +170731751708,219,0 +170731751758,219,0 +170731751806,220,0 +170731751854,219,0 +170731751902,219,0 +170731751949,220,0 +170731751997,220,0 +170731752045,219,0 +170731752093,219,0 +170731752141,219,0 +170731752191,219,0 +170731752239,219,0 +170731752287,219,0 +170731752334,221,0 +170731752384,297,1 +170731752467,258,0 +170731752515,222,0 +170731752564,220,0 +170731752612,220,0 +170731752660,219,0 +170731752708,219,0 +170731752756,220,0 +170731752804,220,0 +170731752852,219,0 +170731752900,220,0 +170731752948,219,0 +170731752995,219,0 +170731753045,219,0 +170731753093,219,0 +170731753141,219,0 +170731753190,220,0 +170731753238,219,0 +170731753286,220,0 +170731753334,219,0 +170731753383,220,0 +170731753431,284,1 +170731753516,246,0 +170731753565,221,0 +170731753613,219,0 +170731753661,219,0 +170731753709,219,0 +170731753757,219,0 +170731753807,219,0 +170731753855,219,0 +170731753903,220,0 +170731753951,219,0 +170731754000,219,0 +170731754048,219,0 +170731754098,219,0 +170731754146,220,0 +170731754195,220,0 +170731754243,219,0 +170731754291,220,0 +170731754339,220,0 +170731754387,220,0 +170731754435,221,0 +170731754483,295,1 +170731754559,277,1 +170731754642,220,0 +170731754692,220,0 +170731754741,219,0 +170731754789,219,0 +170731754839,219,0 +170731754887,219,0 +170731754935,220,0 +170731754984,220,0 +170731755034,220,0 +170731755082,219,0 +170731755130,220,0 +170731755178,219,0 +170731755225,219,0 +170731755275,220,0 +170731755325,220,0 +170731755373,220,0 +170731755422,220,0 +170731755472,220,0 +170731755521,266,0 +170731755571,286,1 +170731755652,222,0 +170731755700,219,0 +170731755750,220,0 +170731755799,220,0 +170731755847,220,0 +170731755897,219,0 +170731755944,220,0 +170731755992,220,0 +170731756042,220,0 +170731756090,219,0 +170731756138,219,0 +170731756187,219,0 +170731756235,220,0 +170731756283,220,0 +170731756331,220,0 +170731756379,219,0 +170731756427,220,0 +170731756476,220,0 +170731756524,221,0 +170731756572,257,0 +170731756620,303,1 +170731756700,225,0 +170731756749,220,0 +170731756797,220,0 +170731756847,219,0 +170731756895,219,0 +170731756943,220,0 +170731756991,220,0 +170731757038,220,0 +170731757086,219,0 +170731757134,220,0 +170731757182,219,0 +170731757230,220,0 +170731757278,220,0 +170731757326,219,0 +170731757374,220,0 +170731757423,220,0 +170731757471,219,0 +170731757519,219,0 +170731757567,220,0 +170731757615,255,0 +170731757662,299,1 +170731757742,231,0 +170731757790,220,0 +170731757838,220,0 +170731757885,219,0 +170731757933,220,0 +170731757981,219,0 +170731758029,220,0 +170731758077,219,0 +170731758125,219,0 +170731758175,219,0 +170731758224,219,0 +170731758274,220,0 +170731758323,219,0 +170731758371,219,0 +170731758419,220,0 +170731758467,220,0 +170731758515,219,0 +170731758564,220,0 +170731758612,220,0 +170731758660,241,0 +170731758708,296,1 +170731758790,227,0 +170731758838,220,0 +170731758886,220,0 +170731758934,219,0 +170731758982,220,0 +170731759030,219,0 +170731759078,219,0 +170731759127,219,0 +170731759177,219,0 +170731759225,219,0 +170731759272,220,0 +170731759320,219,0 +170731759368,219,0 +170731759416,220,0 +170731759464,219,0 +170731759512,220,0 +170731759560,220,0 +170731759608,220,0 +170731759656,220,0 +170731759705,223,0 +170731759753,291,1 +170731759832,237,0 +170731759879,220,0 +170731759927,220,0 +170731759975,220,0 +170731760023,219,0 +170731760071,220,0 +170731760121,219,0 +170731760169,220,0 +170731760218,220,0 +170731760266,219,0 +170731760316,220,0 +170731760364,220,0 +170731760411,220,0 +170731760459,219,0 +170731760507,219,0 +170731760555,220,0 +170731760603,220,0 +170731760653,220,0 +170731760701,220,0 +170731760750,223,0 +170731760800,293,1 +170731760889,231,0 +170731760937,219,0 +170731760985,220,0 +170731761033,220,0 +170731761081,219,0 +170731761129,219,0 +170731761178,220,0 +170731761226,219,0 +170731761275,219,0 +170731761325,220,0 +170731761373,219,0 +170731761421,220,0 +170731761470,219,0 +170731761518,220,0 +170731761566,219,0 +170731761616,219,0 +170731761665,220,0 +170731761713,220,0 +170731761761,220,0 +170731761809,231,0 +170731761857,293,1 +170731761938,228,0 +170731761986,220,0 +170731762034,220,0 +170731762082,219,0 +170731762130,219,0 +170731762179,219,0 +170731762227,219,0 +170731762277,220,0 +170731762325,220,0 +170731762373,219,0 +170731762422,220,0 +170731762470,219,0 +170731762518,219,0 +170731762567,219,0 +170731762617,219,0 +170731762666,220,0 +170731762714,220,0 +170731762762,220,0 +170731762812,220,0 +170731762861,224,0 +170731762911,289,1 +170731762991,233,0 +170731763039,220,0 +170731763088,220,0 +170731763138,220,0 +170731763187,219,0 +170731763235,220,0 +170731763283,219,0 +170731763331,220,0 +170731763379,220,0 +170731763427,220,0 +170731763477,219,0 +170731763525,219,0 +170731763573,220,0 +170731763620,219,0 +170731763668,220,0 +170731763716,220,0 +170731763766,220,0 +170731763814,219,0 +170731763861,220,0 +170731763909,237,0 +170731763957,301,1 +170731764039,229,0 +170731764087,220,0 +170731764135,220,0 +170731764185,220,0 +170731764232,220,0 +170731764282,220,0 +170731764330,220,0 +170731764378,220,0 +170731764426,220,0 +170731764474,219,0 +170731764523,220,0 +170731764571,219,0 +170731764619,219,0 +170731764667,220,0 +170731764715,219,0 +170731764762,219,0 +170731764810,219,0 +170731764858,220,0 +170731764906,220,0 +170731764954,224,0 +170731765004,295,1 +170731765088,229,0 +170731765136,220,0 +170731765185,219,0 +170731765233,220,0 +170731765283,220,0 +170731765331,219,0 +170731765379,220,0 +170731765428,220,0 +170731765476,220,0 +170731765524,219,0 +170731765574,219,0 +170731765622,220,0 +170731765671,220,0 +170731765719,220,0 +170731765767,219,0 +170731765815,219,0 +170731765863,219,0 +170731765911,219,0 +170731765959,220,0 +170731766008,234,0 +170731766056,285,1 +170731766139,228,0 +170731766187,220,0 +170731766235,219,0 +170731766283,219,0 +170731766331,220,0 +170731766379,219,0 +170731766428,219,0 +170731766478,219,0 +170731766527,219,0 +170731766577,219,0 +170731766626,220,0 +170731766674,220,0 +170731766722,220,0 +170731766771,219,0 +170731766821,219,0 +170731766869,219,0 +170731766918,220,0 +170731766968,219,0 +170731767016,220,0 +170731767064,259,0 +170731767112,298,1 +170731767191,229,0 +170731767239,220,0 +170731767287,220,0 +170731767334,220,0 +170731767382,219,0 +170731767430,219,0 +170731767478,219,0 +170731767526,219,0 +170731767574,220,0 +170731767623,220,0 +170731767671,219,0 +170731767721,219,0 +170731767769,219,0 +170731767818,220,0 +170731767866,219,0 +170731767914,219,0 +170731767963,220,0 +170731768011,220,0 +170731768059,220,0 +170731768107,225,0 +170731768156,299,1 +170731768237,229,0 +170731768285,220,0 +170731768333,220,0 +170731768382,220,0 +170731768432,220,0 +170731768480,219,0 +170731768528,219,0 +170731768577,219,0 +170731768625,219,0 +170731768675,220,0 +170731768724,219,0 +170731768774,220,0 +170731768822,220,0 +170731768871,220,0 +170731768919,220,0 +170731768969,219,0 +170731769018,219,0 +170731769066,219,0 +170731769116,220,0 +170731769164,224,0 +170731769213,297,1 +170731769301,226,0 +170731769349,219,0 +170731769397,220,0 +170731769445,220,0 +170731769493,220,0 +170731769541,219,0 +170731769591,219,0 +170731769640,220,0 +170731769688,219,0 +170731769738,220,0 +170731769786,220,0 +170731769834,219,0 +170731769883,220,0 +170731769933,220,0 +170731769980,220,0 +170731770030,219,0 +170731770078,220,0 +170731770126,220,0 +170731770174,221,0 +170731770222,288,1 +170731770309,229,0 +170731770357,220,0 +170731770405,220,0 +170731770452,219,0 +170731770500,220,0 +170731770548,219,0 +170731770598,220,0 +170731770646,220,0 +170731770693,219,0 +170731770743,219,0 +170731770792,220,0 +170731770841,220,0 +170731770889,219,0 +170731770937,219,0 +170731770985,220,0 +170731771034,219,0 +170731771082,219,0 +170731771132,219,0 +170731771180,220,0 +170731771228,221,0 +170731771276,284,1 +170731771353,248,0 +170731771403,220,0 +170731771453,220,0 +170731771500,220,0 +170731771548,220,0 +170731771596,219,0 +170731771644,219,0 +170731771692,219,0 +170731771740,219,0 +170731771788,220,0 +170731771838,220,0 +170731771887,220,0 +170731771937,219,0 +170731771984,219,0 +170731772034,220,0 +170731772084,219,0 +170731772133,220,0 +170731772181,220,0 +170731772229,219,0 +170731772277,221,0 +170731772325,287,1 +170731772404,260,0 +170731772451,223,0 +170731772499,220,0 +170731772547,219,0 +170731772597,220,0 +170731772645,219,0 +170731772693,219,0 +170731772741,219,0 +170731772789,220,0 +170731772838,220,0 +170731772886,220,0 +170731772936,219,0 +170731772984,219,0 +170731773032,220,0 +170731773081,219,0 +170731773129,219,0 +170731773179,220,0 +170731773228,220,0 +170731773276,219,0 +170731773326,221,0 +170731773374,281,1 +170731773461,230,0 +170731773509,220,0 +170731773557,219,0 +170731773605,220,0 +170731773653,220,0 +170731773701,219,0 +170731773749,219,0 +170731773797,219,0 +170731773846,219,0 +170731773894,220,0 +170731773942,219,0 +170731773990,220,0 +170731774038,219,0 +170731774086,219,0 +170731774134,219,0 +170731774184,220,0 +170731774232,219,0 +170731774281,220,0 +170731774331,220,0 +170731774379,221,0 +170731774428,287,1 +170731774510,231,0 +170731774559,220,0 +170731774607,220,0 +170731774655,220,0 +170731774705,219,0 +170731774753,220,0 +170731774802,220,0 +170731774850,219,0 +170731774898,219,0 +170731774946,220,0 +170731774994,220,0 +170731775044,219,0 +170731775093,219,0 +170731775141,220,0 +170731775191,219,0 +170731775239,219,0 +170731775287,219,0 +170731775335,219,0 +170731775384,219,0 +170731775434,220,0 +170731775483,288,1 +170731775561,241,0 +170731775609,221,0 +170731775657,220,0 +170731775705,219,0 +170731775752,219,0 +170731775801,219,0 +170731775850,220,0 +170731775900,219,0 +170731775948,219,0 +170731775996,220,0 +170731776044,219,0 +170731776093,219,0 +170731776141,219,0 +170731776191,219,0 +170731776240,220,0 +170731776290,220,0 +170731776338,219,0 +170731776385,220,0 +170731776435,220,0 +170731776485,221,0 +170731776532,284,1 +170731776612,231,0 +170731776661,220,0 +170731776709,220,0 +170731776757,220,0 +170731776805,220,0 +170731776853,219,0 +170731776901,220,0 +170731776949,219,0 +170731776997,219,0 +170731777047,219,0 +170731777096,220,0 +170731777144,220,0 +170731777194,219,0 +170731777242,220,0 +170731777290,219,0 +170731777338,220,0 +170731777386,220,0 +170731777434,219,0 +170731777483,220,0 +170731777531,222,0 +170731777581,280,1 +170731777661,235,0 +170731777711,220,0 +170731777759,220,0 +170731777806,219,0 +170731777856,219,0 +170731777904,220,0 +170731777952,220,0 +170731778000,220,0 +170731778050,219,0 +170731778097,220,0 +170731778146,219,0 +170731778193,219,0 +170731778243,219,0 +170731778291,220,0 +170731778339,219,0 +170731778387,219,0 +170731778435,220,0 +170731778484,219,0 +170731778532,220,0 +170731778580,221,0 +170731778628,274,1 +170731778705,229,0 +170731778755,220,0 +170731778803,220,0 +170731778851,220,0 +170731778899,219,0 +170731778947,220,0 +170731778996,220,0 +170731779046,219,0 +170731779094,219,0 +170731779142,220,0 +170731779191,219,0 +170731779239,219,0 +170731779288,220,0 +170731779336,220,0 +170731779384,219,0 +170731779434,220,0 +170731779482,220,0 +170731779530,220,0 +170731779578,220,0 +170731779627,221,0 +170731779677,270,1 +170731779755,228,0 +170731779805,221,0 +170731779853,220,0 +170731779902,219,0 +170731779950,219,0 +170731779999,220,0 +170731780047,219,0 +170731780097,219,0 +170731780145,219,0 +170731780193,220,0 +170731780241,219,0 +170731780289,219,0 +170731780337,219,0 +170731780386,220,0 +170731780436,219,0 +170731780484,220,0 +170731780533,219,0 +170731780583,220,0 +170731780631,220,0 +170731780679,222,0 +170731780727,299,1 +170731780806,234,0 +170731780855,220,0 +170731780905,220,0 +170731780953,220,0 +170731781001,220,0 +170731781049,219,0 +170731781097,220,0 +170731781145,219,0 +170731781193,220,0 +170731781241,219,0 +170731781288,219,0 +170731781336,220,0 +170731781384,219,0 +170731781432,220,0 +170731781480,219,0 +170731781528,221,0 +170731781578,219,0 +170731781626,219,0 +170731781674,220,0 +170731781722,221,0 +170731781771,296,1 +170731781852,230,0 +170731781901,221,0 +170731781949,220,0 +170731781997,219,0 +170731782047,219,0 +170731782096,220,0 +170731782144,220,0 +170731782192,220,0 +170731782242,219,0 +170731782290,219,0 +170731782339,219,0 +170731782387,219,0 +170731782437,220,0 +170731782485,219,0 +170731782534,220,0 +170731782582,219,0 +170731782632,219,0 +170731782680,219,0 +170731782729,220,0 +170731782777,222,0 +170731782825,290,1 +170731782910,238,0 +170731782958,220,0 +170731783006,220,0 +170731783054,219,0 +170731783102,220,0 +170731783150,219,0 +170731783199,219,0 +170731783247,219,0 +170731783297,219,0 +170731783345,220,0 +170731783393,220,0 +170731783442,219,0 +170731783492,219,0 +170731783540,220,0 +170731783589,219,0 +170731783639,220,0 +170731783687,220,0 +170731783735,220,0 +170731783784,220,0 +170731783834,222,0 +170731783882,284,1 +170731783964,235,0 +170731784014,220,0 +170731784062,220,0 +170731784110,219,0 +170731784158,220,0 +170731784206,220,0 +170731784254,219,0 +170731784303,219,0 +170731784351,219,0 +170731784401,219,0 +170731784450,219,0 +170731784500,219,0 +170731784549,219,0 +170731784597,219,0 +170731784645,220,0 +170731784693,219,0 +170731784743,219,0 +170731784791,220,0 +170731784839,220,0 +170731784887,223,0 +170731784935,285,1 +170731785016,233,0 +170731785064,220,0 +170731785113,220,0 +170731785161,220,0 +170731785209,219,0 +170731785257,219,0 +170731785307,220,0 +170731785356,220,0 +170731785404,219,0 +170731785454,220,0 +170731785501,219,0 +170731785549,220,0 +170731785597,220,0 +170731785646,220,0 +170731785693,220,0 +170731785741,219,0 +170731785791,220,0 +170731785841,220,0 +170731785889,220,0 +170731785936,224,0 +170731785984,283,1 +170731786063,231,0 +170731786111,220,0 +170731786161,220,0 +170731786209,219,0 +170731786258,219,0 +170731786308,219,0 +170731786357,220,0 +170731786407,220,0 +170731786454,219,0 +170731786502,219,0 +170731786550,219,0 +170731786600,219,0 +170731786648,219,0 +170731786696,219,0 +170731786743,220,0 +170731786791,219,0 +170731786841,220,0 +170731786889,220,0 +170731786938,220,0 +170731786986,240,0 +170731787036,293,1 +170731787123,224,0 +170731787171,220,0 +170731787219,219,0 +170731787267,219,0 +170731787315,219,0 +170731787363,220,0 +170731787411,219,0 +170731787461,220,0 +170731787508,219,0 +170731787558,219,0 +170731787606,220,0 +170731787654,219,0 +170731787702,219,0 +170731787750,220,0 +170731787797,220,0 +170731787847,220,0 +170731787895,220,0 +170731787943,219,0 +170731787992,220,0 +170731788042,237,0 +170731788091,299,1 +170731788176,227,0 +170731788224,220,0 +170731788272,219,0 +170731788320,219,0 +170731788368,219,0 +170731788416,220,0 +170731788466,219,0 +170731788515,220,0 +170731788565,220,0 +170731788613,220,0 +170731788661,220,0 +170731788710,220,0 +170731788758,220,0 +170731788808,220,0 +170731788856,219,0 +170731788904,220,0 +170731788952,219,0 +170731789000,219,0 +170731789048,220,0 +170731789095,291,1 +170731789179,281,1 +170731789259,220,0 +170731789307,219,0 +170731789355,220,0 +170731789403,220,0 +170731789451,219,0 +170731789499,220,0 +170731789547,220,0 +170731789595,219,0 +170731789644,219,0 +170731789692,219,0 +170731789742,220,0 +170731789790,219,0 +170731789838,220,0 +170731789887,220,0 +170731789935,220,0 +170731789983,220,0 +170731790031,220,0 +170731790079,220,0 +170731790127,222,0 +170731790177,291,1 +170731790260,233,0 +170731790308,220,0 +170731790358,219,0 +170731790407,220,0 +170731790457,219,0 +170731790507,220,0 +170731790555,219,0 +170731790602,220,0 +170731790650,219,0 +170731790698,219,0 +170731790748,220,0 +170731790796,219,0 +170731790844,220,0 +170731790892,220,0 +170731790940,220,0 +170731790988,219,0 +170731791036,220,0 +170731791085,219,0 +170731791134,220,0 +170731791182,223,0 +170731791230,285,1 +170731791319,229,0 +170731791369,220,0 +170731791416,220,0 +170731791464,219,0 +170731791512,219,0 +170731791560,219,0 +170731791610,219,0 +170731791659,219,0 +170731791707,219,0 +170731791755,219,0 +170731791803,219,0 +170731791853,219,0 +170731791901,219,0 +170731791950,220,0 +170731792000,219,0 +170731792048,220,0 +170731792097,220,0 +170731792145,219,0 +170731792194,220,0 +170731792242,261,0 +170731792290,283,1 +170731792372,224,0 +170731792420,219,0 +170731792469,220,0 +170731792517,220,0 +170731792565,219,0 +170731792613,219,0 +170731792661,219,0 +170731792709,219,0 +170731792757,219,0 +170731792805,220,0 +170731792853,219,0 +170731792901,220,0 +170731792949,220,0 +170731792997,220,0 +170731793044,220,0 +170731793094,219,0 +170731793142,220,0 +170731793190,219,0 +170731793238,220,0 +170731793288,267,0 +170731793337,305,1 +170731793424,223,0 +170731793473,219,0 +170731793523,220,0 +170731793572,219,0 +170731793620,219,0 +170731793669,219,0 +170731793719,220,0 +170731793767,219,0 +170731793815,219,0 +170731793863,220,0 +170731793911,220,0 +170731793960,219,0 +170731794008,219,0 +170731794056,219,0 +170731794104,219,0 +170731794152,219,0 +170731794200,219,0 +170731794250,220,0 +170731794298,220,0 +170731794347,250,0 +170731794397,274,1 +170731794473,227,0 +170731794521,220,0 +170731794569,219,0 +170731794616,219,0 +170731794664,220,0 +170731794712,219,0 +170731794760,220,0 +170731794810,219,0 +170731794859,220,0 +170731794909,219,0 +170731794957,219,0 +170731795006,220,0 +170731795054,220,0 +170731795102,219,0 +170731795150,220,0 +170731795199,220,0 +170731795247,220,0 +170731795295,220,0 +170731795343,220,0 +170731795391,290,1 +170731795468,281,1 +170731795549,220,0 +170731795597,220,0 +170731795644,220,0 +170731795692,219,0 +170731795740,219,0 +170731795788,220,0 +170731795836,219,0 +170731795884,220,0 +170731795932,220,0 +170731795980,220,0 +170731796028,219,0 +170731796076,219,0 +170731796124,219,0 +170731796172,220,0 +170731796221,219,0 +170731796269,219,0 +170731796317,220,0 +170731796365,220,0 +170731796415,222,0 +170731796464,288,1 +170731796547,237,0 +170731796596,220,0 +170731796646,219,0 +170731796694,220,0 +170731796743,220,0 +170731796793,220,0 +170731796842,220,0 +170731796890,220,0 +170731796938,219,0 +170731796986,219,0 +170731797036,220,0 +170731797084,220,0 +170731797132,219,0 +170731797180,220,0 +170731797229,220,0 +170731797277,220,0 +170731797327,220,0 +170731797375,220,0 +170731797424,220,0 +170731797474,222,0 +170731797523,285,1 +170731797605,236,0 +170731797653,220,0 +170731797701,219,0 +170731797749,220,0 +170731797797,220,0 +170731797845,219,0 +170731797893,219,0 +170731797940,220,0 +170731797988,219,0 +170731798036,220,0 +170731798084,220,0 +170731798132,219,0 +170731798180,220,0 +170731798228,220,0 +170731798276,219,0 +170731798324,219,0 +170731798372,219,0 +170731798421,219,0 +170731798469,220,0 +170731798517,221,0 +170731798565,274,1 +170731798649,236,0 +170731798697,220,0 +170731798745,219,0 +170731798793,220,0 +170731798841,220,0 +170731798889,219,0 +170731798937,220,0 +170731798985,219,0 +170731799034,219,0 +170731799082,220,0 +170731799130,220,0 +170731799180,220,0 +170731799229,220,0 +170731799277,220,0 +170731799327,220,0 +170731799375,220,0 +170731799422,219,0 +170731799472,220,0 +170731799521,220,0 +170731799571,223,0 +170731799620,300,1 +170731799702,234,0 +170731799752,220,0 +170731799800,220,0 +170731799849,219,0 +170731799899,219,0 +170731799948,220,0 +170731799996,219,0 diff --git a/laser_value/0208-01.csv b/laser_value/0208-01.csv new file mode 100644 index 0000000..d13fe32 --- /dev/null +++ b/laser_value/0208-01.csv @@ -0,0 +1,7150 @@ +timestamp,laser_value,event +170731801465,220,0 +170731801513,220,0 +170731801561,220,0 +170731801609,219,0 +170731801657,221,0 +170731801706,278,1 +170731801796,238,0 +170731801845,220,0 +170731801893,219,0 +170731801941,219,0 +170731801989,219,0 +170731802037,219,0 +170731802085,220,0 +170731802134,219,0 +170731802182,220,0 +170731802232,219,0 +170731802280,219,0 +170731802328,220,0 +170731802376,220,0 +170731802424,220,0 +170731802473,220,0 +170731802523,220,0 +170731802571,220,0 +170731802620,219,0 +170731802668,220,0 +170731802717,223,0 +170731802766,292,1 +170731802846,237,0 +170731802894,220,0 +170731802944,219,0 +170731802993,219,0 +170731803041,220,0 +170731803089,220,0 +170731803139,220,0 +170731803187,220,0 +170731803235,219,0 +170731803284,220,0 +170731803334,219,0 +170731803382,220,0 +170731803429,219,0 +170731803479,220,0 +170731803529,220,0 +170731803577,219,0 +170731803625,220,0 +170731803674,220,0 +170731803722,220,0 +170731803770,223,0 +170731803818,300,1 +170731803896,238,0 +170731803946,220,0 +170731803994,220,0 +170731804043,220,0 +170731804091,220,0 +170731804139,220,0 +170731804189,219,0 +170731804238,220,0 +170731804286,220,0 +170731804334,220,0 +170731804382,220,0 +170731804430,220,0 +170731804480,219,0 +170731804528,220,0 +170731804577,219,0 +170731804627,220,0 +170731804676,219,0 +170731804724,220,0 +170731804772,220,0 +170731804820,222,0 +170731804868,287,1 +170731804953,236,0 +170731805003,220,0 +170731805051,220,0 +170731805100,220,0 +170731805148,220,0 +170731805198,220,0 +170731805246,220,0 +170731805294,220,0 +170731805342,219,0 +170731805390,220,0 +170731805438,220,0 +170731805486,219,0 +170731805534,219,0 +170731805583,219,0 +170731805633,219,0 +170731805681,219,0 +170731805730,220,0 +170731805779,220,0 +170731805827,220,0 +170731805877,223,0 +170731805926,288,1 +170731806015,228,0 +170731806063,220,0 +170731806113,220,0 +170731806161,220,0 +170731806208,220,0 +170731806256,219,0 +170731806306,219,0 +170731806354,219,0 +170731806403,220,0 +170731806451,219,0 +170731806501,219,0 +170731806549,220,0 +170731806598,219,0 +170731806646,219,0 +170731806696,220,0 +170731806744,219,0 +170731806792,219,0 +170731806841,220,0 +170731806889,220,0 +170731806937,232,0 +170731806985,303,1 +170731807065,227,0 +170731807113,220,0 +170731807161,220,0 +170731807209,220,0 +170731807257,219,0 +170731807305,220,0 +170731807353,219,0 +170731807401,220,0 +170731807449,220,0 +170731807498,220,0 +170731807546,220,0 +170731807594,220,0 +170731807644,219,0 +170731807693,220,0 +170731807741,220,0 +170731807791,219,0 +170731807839,219,0 +170731807888,219,0 +170731807936,220,0 +170731807984,233,0 +170731808032,300,1 +170731808115,226,0 +170731808163,220,0 +170731808213,219,0 +170731808260,220,0 +170731808308,219,0 +170731808356,219,0 +170731808406,219,0 +170731808454,220,0 +170731808502,219,0 +170731808550,220,0 +170731808599,219,0 +170731808649,219,0 +170731808697,219,0 +170731808745,220,0 +170731808793,219,0 +170731808841,219,0 +170731808890,219,0 +170731808938,220,0 +170731808988,220,0 +170731809037,247,0 +170731809085,292,1 +170731809166,228,0 +170731809214,219,0 +170731809262,220,0 +170731809311,219,0 +170731809359,220,0 +170731809409,219,0 +170731809457,219,0 +170731809505,219,0 +170731809553,220,0 +170731809602,219,0 +170731809652,220,0 +170731809701,219,0 +170731809751,220,0 +170731809799,220,0 +170731809848,220,0 +170731809898,220,0 +170731809946,220,0 +170731809994,220,0 +170731810042,220,0 +170731810090,281,1 +170731810177,238,0 +170731810225,221,0 +170731810273,220,0 +170731810321,220,0 +170731810369,219,0 +170731810417,219,0 +170731810467,219,0 +170731810515,219,0 +170731810563,220,0 +170731810612,220,0 +170731810662,219,0 +170731810711,220,0 +170731810761,219,0 +170731810810,219,0 +170731810858,220,0 +170731810908,219,0 +170731810956,220,0 +170731811005,220,0 +170731811055,220,0 +170731811103,221,0 +170731811153,294,1 +170731811233,244,0 +170731811281,222,0 +170731811331,219,0 +170731811379,219,0 +170731811427,219,0 +170731811476,220,0 +170731811526,219,0 +170731811575,219,0 +170731811625,219,0 +170731811674,219,0 +170731811724,219,0 +170731811772,219,0 +170731811821,219,0 +170731811869,220,0 +170731811919,220,0 +170731811968,219,0 +170731812016,219,0 +170731812064,220,0 +170731812112,220,0 +170731812162,221,0 +170731812211,287,1 +170731812296,237,0 +170731812344,220,0 +170731812394,219,0 +170731812442,220,0 +170731812490,220,0 +170731812538,220,0 +170731812587,220,0 +170731812635,219,0 +170731812685,219,0 +170731812734,219,0 +170731812782,219,0 +170731812830,220,0 +170731812879,219,0 +170731812929,219,0 +170731812977,219,0 +170731813026,220,0 +170731813076,219,0 +170731813124,220,0 +170731813172,219,0 +170731813220,222,0 +170731813268,301,1 +170731813357,233,0 +170731813405,220,0 +170731813453,220,0 +170731813502,219,0 +170731813550,220,0 +170731813600,219,0 +170731813649,219,0 +170731813699,219,0 +170731813747,220,0 +170731813795,219,0 +170731813843,219,0 +170731813891,219,0 +170731813939,219,0 +170731813987,220,0 +170731814036,219,0 +170731814084,220,0 +170731814132,220,0 +170731814182,220,0 +170731814230,219,0 +170731814279,232,0 +170731814327,302,1 +170731814407,232,0 +170731814455,220,0 +170731814503,220,0 +170731814553,220,0 +170731814602,219,0 +170731814650,219,0 +170731814700,220,0 +170731814749,219,0 +170731814799,220,0 +170731814847,220,0 +170731814896,219,0 +170731814944,219,0 +170731814992,220,0 +170731815042,220,0 +170731815090,219,0 +170731815138,220,0 +170731815186,219,0 +170731815234,220,0 +170731815283,220,0 +170731815331,250,0 +170731815379,293,1 +170731815460,229,0 +170731815508,220,0 +170731815556,220,0 +170731815604,220,0 +170731815653,219,0 +170731815701,219,0 +170731815749,220,0 +170731815797,220,0 +170731815845,220,0 +170731815895,219,0 +170731815944,219,0 +170731815992,220,0 +170731816040,220,0 +170731816088,219,0 +170731816136,219,0 +170731816184,220,0 +170731816232,220,0 +170731816281,220,0 +170731816329,220,0 +170731816377,222,0 +170731816425,262,0 +170731816475,261,0 +170731816523,222,0 +170731816571,220,0 +170731816619,220,0 +170731816667,220,0 +170731816716,219,0 +170731816764,220,0 +170731816812,219,0 +170731816860,219,0 +170731816908,219,0 +170731816956,219,0 +170731817004,219,0 +170731817052,220,0 +170731817102,219,0 +170731817150,219,0 +170731817198,219,0 +170731817245,219,0 +170731817293,220,0 +170731817343,219,0 +170731817392,220,0 +170731817440,279,1 +170731817520,269,0 +170731817569,223,0 +170731817617,220,0 +170731817667,219,0 +170731817715,220,0 +170731817764,219,0 +170731817814,219,0 +170731817862,219,0 +170731817911,219,0 +170731817959,219,0 +170731818007,220,0 +170731818055,219,0 +170731818105,219,0 +170731818152,220,0 +170731818202,219,0 +170731818250,219,0 +170731818298,220,0 +170731818348,220,0 +170731818396,220,0 +170731818443,221,0 +170731818491,273,1 +170731818575,255,0 +170731818623,221,0 +170731818673,220,0 +170731818722,220,0 +170731818770,220,0 +170731818820,219,0 +170731818868,220,0 +170731818916,219,0 +170731818964,220,0 +170731819013,220,0 +170731819061,220,0 +170731819111,219,0 +170731819160,219,0 +170731819210,219,0 +170731819259,220,0 +170731819309,220,0 +170731819357,219,0 +170731819405,219,0 +170731819452,221,0 +170731819502,221,0 +170731819550,272,1 +170731819634,227,0 +170731819682,221,0 +170731819731,219,0 +170731819781,220,0 +170731819830,219,0 +170731819880,220,0 +170731819929,220,0 +170731819977,220,0 +170731820027,219,0 +170731820075,220,0 +170731820124,219,0 +170731820172,219,0 +170731820220,220,0 +170731820268,219,0 +170731820316,220,0 +170731820365,220,0 +170731820413,220,0 +170731820463,220,0 +170731820512,220,0 +170731820560,222,0 +170731820610,287,1 +170731820690,234,0 +170731820738,220,0 +170731820788,220,0 +170731820836,219,0 +170731820884,219,0 +170731820932,220,0 +170731820981,219,0 +170731821029,220,0 +170731821079,220,0 +170731821126,219,0 +170731821174,219,0 +170731821222,219,0 +170731821270,219,0 +170731821318,220,0 +170731821366,220,0 +170731821416,220,0 +170731821464,219,0 +170731821512,220,0 +170731821561,220,0 +170731821609,222,0 +170731821657,272,1 +170731821741,233,0 +170731821789,220,0 +170731821838,219,0 +170731821886,220,0 +170731821934,219,0 +170731821983,220,0 +170731822031,220,0 +170731822079,219,0 +170731822127,219,0 +170731822175,219,0 +170731822225,220,0 +170731822273,220,0 +170731822321,219,0 +170731822368,220,0 +170731822416,219,0 +170731822466,220,0 +170731822515,220,0 +170731822563,220,0 +170731822613,220,0 +170731822662,222,0 +170731822710,276,1 +170731822796,234,0 +170731822844,220,0 +170731822891,219,0 +170731822939,219,0 +170731822989,220,0 +170731823038,219,0 +170731823086,219,0 +170731823134,219,0 +170731823182,219,0 +170731823230,220,0 +170731823278,219,0 +170731823327,220,0 +170731823375,219,0 +170731823423,219,0 +170731823471,220,0 +170731823521,219,0 +170731823569,219,0 +170731823616,219,0 +170731823664,219,0 +170731823712,222,0 +170731823762,288,1 +170731823845,238,0 +170731823893,220,0 +170731823942,219,0 +170731823990,219,0 +170731824038,220,0 +170731824088,220,0 +170731824136,220,0 +170731824184,219,0 +170731824232,219,0 +170731824280,220,0 +170731824329,220,0 +170731824379,220,0 +170731824427,220,0 +170731824476,219,0 +170731824524,219,0 +170731824574,220,0 +170731824622,219,0 +170731824671,219,0 +170731824719,220,0 +170731824767,223,0 +170731824815,293,1 +170731824898,229,0 +170731824947,220,0 +170731824997,219,0 +170731825045,219,0 +170731825094,219,0 +170731825144,220,0 +170731825193,219,0 +170731825241,219,0 +170731825291,219,0 +170731825339,219,0 +170731825387,219,0 +170731825435,219,0 +170731825483,219,0 +170731825532,219,0 +170731825580,220,0 +170731825630,219,0 +170731825679,220,0 +170731825727,219,0 +170731825775,220,0 +170731825823,224,0 +170731825871,289,1 +170731825954,231,0 +170731826002,220,0 +170731826050,220,0 +170731826100,219,0 +170731826149,219,0 +170731826199,219,0 +170731826247,219,0 +170731826295,220,0 +170731826343,219,0 +170731826392,220,0 +170731826442,219,0 +170731826491,219,0 +170731826541,220,0 +170731826589,220,0 +170731826638,219,0 +170731826686,220,0 +170731826734,220,0 +170731826782,219,0 +170731826831,220,0 +170731826879,230,0 +170731826928,298,1 +170731827015,226,0 +170731827063,220,0 +170731827111,219,0 +170731827160,220,0 +170731827208,219,0 +170731827258,220,0 +170731827306,220,0 +170731827354,220,0 +170731827403,219,0 +170731827451,219,0 +170731827501,219,0 +170731827549,219,0 +170731827597,220,0 +170731827646,219,0 +170731827694,220,0 +170731827742,220,0 +170731827790,219,0 +170731827839,220,0 +170731827887,220,0 +170731827937,281,1 +170731828021,269,0 +170731828071,222,0 +170731828120,219,0 +170731828170,219,0 +170731828218,219,0 +170731828266,219,0 +170731828313,219,0 +170731828361,220,0 +170731828409,220,0 +170731828459,220,0 +170731828508,219,0 +170731828558,220,0 +170731828606,220,0 +170731828654,220,0 +170731828703,219,0 +170731828751,219,0 +170731828799,220,0 +170731828849,220,0 +170731828898,219,0 +170731828946,222,0 +170731828994,275,1 +170731829082,235,0 +170731829130,220,0 +170731829178,220,0 +170731829228,219,0 +170731829276,220,0 +170731829325,220,0 +170731829373,219,0 +170731829422,220,0 +170731829470,220,0 +170731829520,220,0 +170731829569,219,0 +170731829619,219,0 +170731829667,219,0 +170731829715,220,0 +170731829763,220,0 +170731829811,219,0 +170731829859,219,0 +170731829907,219,0 +170731829955,220,0 +170731830003,221,0 +170731830052,289,1 +170731830138,236,0 +170731830187,220,0 +170731830235,219,0 +170731830283,220,0 +170731830331,220,0 +170731830379,219,0 +170731830429,219,0 +170731830478,220,0 +170731830526,220,0 +170731830574,219,0 +170731830622,219,0 +170731830670,220,0 +170731830718,219,0 +170731830766,220,0 +170731830815,219,0 +170731830863,220,0 +170731830911,219,0 +170731830961,219,0 +170731831009,220,0 +170731831058,223,0 +170731831108,296,1 +170731831192,233,0 +170731831240,220,0 +170731831289,219,0 +170731831339,219,0 +170731831388,219,0 +170731831436,220,0 +170731831484,219,0 +170731831532,220,0 +170731831580,220,0 +170731831628,220,0 +170731831678,220,0 +170731831727,219,0 +170731831775,220,0 +170731831825,220,0 +170731831873,220,0 +170731831922,220,0 +170731831972,220,0 +170731832021,219,0 +170731832069,220,0 +170731832117,225,0 +170731832167,297,1 +170731832246,231,0 +170731832294,220,0 +170731832342,219,0 +170731832392,219,0 +170731832440,220,0 +170731832488,220,0 +170731832536,219,0 +170731832584,220,0 +170731832632,220,0 +170731832680,219,0 +170731832728,220,0 +170731832777,219,0 +170731832827,220,0 +170731832874,219,0 +170731832924,220,0 +170731832974,219,0 +170731833023,220,0 +170731833071,220,0 +170731833120,220,0 +170731833170,241,0 +170731833218,289,1 +170731833304,227,0 +170731833353,220,0 +170731833401,219,0 +170731833451,220,0 +170731833499,219,0 +170731833546,220,0 +170731833596,220,0 +170731833644,219,0 +170731833693,219,0 +170731833741,219,0 +170731833789,220,0 +170731833839,220,0 +170731833887,219,0 +170731833935,220,0 +170731833983,220,0 +170731834031,219,0 +170731834079,220,0 +170731834128,220,0 +170731834176,220,0 +170731834224,244,0 +170731834272,300,1 +170731834360,225,0 +170731834408,220,0 +170731834456,220,0 +170731834504,219,0 +170731834552,220,0 +170731834601,219,0 +170731834651,220,0 +170731834699,219,0 +170731834747,220,0 +170731834795,220,0 +170731834842,220,0 +170731834890,219,0 +170731834938,220,0 +170731834986,219,0 +170731835036,219,0 +170731835083,220,0 +170731835131,219,0 +170731835180,220,0 +170731835229,220,0 +170731835277,258,0 +170731835327,297,1 +170731835412,223,0 +170731835460,220,0 +170731835509,219,0 +170731835557,220,0 +170731835606,219,0 +170731835654,219,0 +170731835704,220,0 +170731835753,219,0 +170731835801,220,0 +170731835849,220,0 +170731835899,220,0 +170731835947,219,0 +170731835995,220,0 +170731836043,220,0 +170731836092,219,0 +170731836142,219,0 +170731836190,220,0 +170731836238,220,0 +170731836287,220,0 +170731836337,289,1 +170731836420,245,0 +170731836469,221,0 +170731836517,219,0 +170731836567,220,0 +170731836615,219,0 +170731836662,220,0 +170731836710,219,0 +170731836758,220,0 +170731836808,220,0 +170731836856,220,0 +170731836904,219,0 +170731836952,219,0 +170731837000,219,0 +170731837049,220,0 +170731837097,220,0 +170731837147,220,0 +170731837195,219,0 +170731837243,219,0 +170731837291,219,0 +170731837340,222,0 +170731837388,296,1 +170731837473,228,0 +170731837521,220,0 +170731837570,220,0 +170731837618,219,0 +170731837666,219,0 +170731837716,220,0 +170731837764,220,0 +170731837812,220,0 +170731837861,220,0 +170731837909,219,0 +170731837957,219,0 +170731838005,220,0 +170731838053,220,0 +170731838101,219,0 +170731838149,219,0 +170731838199,220,0 +170731838248,220,0 +170731838298,220,0 +170731838347,220,0 +170731838395,221,0 +170731838445,287,1 +170731838535,235,0 +170731838582,220,0 +170731838630,220,0 +170731838678,220,0 +170731838726,219,0 +170731838776,220,0 +170731838824,219,0 +170731838872,219,0 +170731838920,220,0 +170731838969,219,0 +170731839017,219,0 +170731839067,220,0 +170731839115,220,0 +170731839163,219,0 +170731839211,219,0 +170731839260,220,0 +170731839308,220,0 +170731839358,219,0 +170731839407,220,0 +170731839455,222,0 +170731839505,285,1 +170731839581,233,0 +170731839629,220,0 +170731839679,220,0 +170731839726,220,0 +170731839774,220,0 +170731839822,220,0 +170731839870,220,0 +170731839920,219,0 +170731839968,219,0 +170731840017,220,0 +170731840067,220,0 +170731840115,220,0 +170731840163,220,0 +170731840211,219,0 +170731840259,220,0 +170731840307,220,0 +170731840355,220,0 +170731840403,219,0 +170731840451,221,0 +170731840500,221,0 +170731840548,251,0 +170731840596,247,0 +170731840644,227,0 +170731840692,221,0 +170731840740,220,0 +170731840788,220,0 +170731840836,220,0 +170731840884,220,0 +170731840932,220,0 +170731840979,220,0 +170731841027,220,0 +170731841075,220,0 +170731841123,220,0 +170731841171,220,0 +170731841219,221,0 +170731841268,220,0 +170731841316,220,0 +170731841364,220,0 +170731841412,220,0 +170731841460,220,0 +170731841508,221,0 +170731841556,224,0 +170731841605,291,1 +170731841687,234,0 +170731841735,221,0 +170731841783,220,0 +170731841831,220,0 +170731841879,220,0 +170731841926,220,0 +170731841974,220,0 +170731842022,220,0 +170731842070,221,0 +170731842120,220,0 +170731842168,220,0 +170731842216,221,0 +170731842264,221,0 +170731842312,221,0 +170731842360,220,0 +170731842409,220,0 +170731842459,221,0 +170731842508,220,0 +170731842558,221,0 +170731842606,223,0 +170731842654,288,1 +170731842737,237,0 +170731842785,221,0 +170731842833,220,0 +170731842882,221,0 +170731842932,220,0 +170731842980,221,0 +170731843029,220,0 +170731843077,221,0 +170731843125,221,0 +170731843173,221,0 +170731843221,221,0 +170731843270,221,0 +170731843318,221,0 +170731843366,220,0 +170731843414,221,0 +170731843464,220,0 +170731843513,220,0 +170731843563,220,0 +170731843612,221,0 +170731843662,250,0 +170731843711,295,1 +170731843794,228,0 +170731843842,220,0 +170731843891,220,0 +170731843939,221,0 +170731843987,220,0 +170731844035,221,0 +170731844084,220,0 +170731844132,220,0 +170731844182,220,0 +170731844231,221,0 +170731844279,220,0 +170731844327,221,0 +170731844375,221,0 +170731844423,220,0 +170731844471,220,0 +170731844521,220,0 +170731844570,220,0 +170731844620,221,0 +170731844669,221,0 +170731844717,262,0 +170731844765,294,1 +170731844851,224,0 +170731844899,221,0 +170731844946,220,0 +170731844994,221,0 +170731845042,221,0 +170731845090,221,0 +170731845138,220,0 +170731845188,221,0 +170731845237,221,0 +170731845285,220,0 +170731845333,220,0 +170731845383,220,0 +170731845430,220,0 +170731845480,221,0 +170731845528,221,0 +170731845576,220,0 +170731845624,220,0 +170731845673,221,0 +170731845723,221,0 +170731845771,254,0 +170731845819,294,1 +170731845900,223,0 +170731845950,220,0 +170731845999,220,0 +170731846047,220,0 +170731846095,220,0 +170731846143,220,0 +170731846191,220,0 +170731846239,220,0 +170731846287,220,0 +170731846335,220,0 +170731846385,220,0 +170731846434,220,0 +170731846482,220,0 +170731846532,220,0 +170731846580,220,0 +170731846628,220,0 +170731846677,220,0 +170731846725,220,0 +170731846775,221,0 +170731846823,284,1 +170731846908,226,0 +170731846956,221,0 +170731847006,220,0 +170731847054,220,0 +170731847102,220,0 +170731847149,220,0 +170731847199,220,0 +170731847249,220,0 +170731847297,220,0 +170731847345,220,0 +170731847393,220,0 +170731847441,220,0 +170731847490,220,0 +170731847538,220,0 +170731847586,220,0 +170731847636,220,0 +170731847683,220,0 +170731847731,221,0 +170731847781,220,0 +170731847830,222,0 +170731847878,274,1 +170731847957,228,0 +170731848005,221,0 +170731848053,220,0 +170731848103,221,0 +170731848151,220,0 +170731848199,220,0 +170731848247,220,0 +170731848295,220,0 +170731848344,220,0 +170731848392,220,0 +170731848442,220,0 +170731848491,220,0 +170731848539,220,0 +170731848587,220,0 +170731848637,220,0 +170731848686,220,0 +170731848736,220,0 +170731848784,220,0 +170731848832,221,0 +170731848880,221,0 +170731848928,268,0 +170731848975,274,1 +170731849056,223,0 +170731849104,220,0 +170731849152,220,0 +170731849200,220,0 +170731849250,220,0 +170731849298,220,0 +170731849346,220,0 +170731849395,219,0 +170731849443,220,0 +170731849493,220,0 +170731849541,220,0 +170731849589,220,0 +170731849637,220,0 +170731849685,220,0 +170731849733,220,0 +170731849780,220,0 +170731849828,220,0 +170731849878,220,0 +170731849926,221,0 +170731849974,269,0 +170731850022,287,1 +170731850106,221,0 +170731850156,220,0 +170731850205,220,0 +170731850253,220,0 +170731850301,220,0 +170731850349,220,0 +170731850397,220,0 +170731850447,220,0 +170731850495,219,0 +170731850542,220,0 +170731850592,220,0 +170731850640,220,0 +170731850688,220,0 +170731850736,220,0 +170731850785,220,0 +170731850835,219,0 +170731850883,220,0 +170731850932,220,0 +170731850980,222,0 +170731851028,283,1 +170731851119,235,0 +170731851166,221,0 +170731851216,220,0 +170731851264,220,0 +170731851313,220,0 +170731851363,220,0 +170731851412,219,0 +170731851460,220,0 +170731851508,220,0 +170731851558,219,0 +170731851607,220,0 +170731851657,220,0 +170731851705,220,0 +170731851753,220,0 +170731851802,220,0 +170731851850,220,0 +170731851898,220,0 +170731851946,220,0 +170731851996,220,0 +170731852044,222,0 +170731852092,287,1 +170731852190,226,0 +170731852239,221,0 +170731852287,221,0 +170731852336,220,0 +170731852384,220,0 +170731852432,220,0 +170731852480,220,0 +170731852528,220,0 +170731852578,219,0 +170731852626,220,0 +170731852674,220,0 +170731852721,220,0 +170731852771,220,0 +170731852819,220,0 +170731852867,220,0 +170731852915,220,0 +170731852964,220,0 +170731853014,220,0 +170731853062,220,0 +170731853110,260,0 +170731853158,305,1 +170731853237,226,0 +170731853287,220,0 +170731853337,220,0 +170731853385,220,0 +170731853434,220,0 +170731853484,220,0 +170731853531,220,0 +170731853581,220,0 +170731853630,220,0 +170731853680,220,0 +170731853728,220,0 +170731853776,220,0 +170731853824,220,0 +170731853872,220,0 +170731853920,220,0 +170731853968,220,0 +170731854016,220,0 +170731854064,220,0 +170731854113,221,0 +170731854163,289,1 +170731854245,235,0 +170731854293,221,0 +170731854341,220,0 +170731854389,220,0 +170731854438,220,0 +170731854486,220,0 +170731854534,220,0 +170731854584,220,0 +170731854632,220,0 +170731854681,220,0 +170731854729,220,0 +170731854779,220,0 +170731854828,220,0 +170731854877,220,0 +170731854925,220,0 +170731854973,220,0 +170731855021,220,0 +170731855071,220,0 +170731855119,220,0 +170731855168,221,0 +170731855216,275,1 +170731855309,226,0 +170731855357,221,0 +170731855405,220,0 +170731855454,220,0 +170731855502,220,0 +170731855550,221,0 +170731855600,221,0 +170731855648,220,0 +170731855697,220,0 +170731855747,220,0 +170731855796,220,0 +170731855846,220,0 +170731855894,220,0 +170731855943,220,0 +170731855991,220,0 +170731856041,220,0 +170731856089,220,0 +170731856136,221,0 +170731856184,220,0 +170731856232,222,0 +170731856280,275,1 +170731856362,236,0 +170731856410,221,0 +170731856459,220,0 +170731856507,220,0 +170731856557,220,0 +170731856605,220,0 +170731856653,220,0 +170731856702,221,0 +170731856750,220,0 +170731856798,220,0 +170731856848,220,0 +170731856896,220,0 +170731856944,220,0 +170731856993,221,0 +170731857041,220,0 +170731857089,220,0 +170731857139,220,0 +170731857187,220,0 +170731857235,220,0 +170731857283,222,0 +170731857331,289,1 +170731857420,235,0 +170731857468,220,0 +170731857517,220,0 +170731857565,220,0 +170731857615,220,0 +170731857663,220,0 +170731857711,220,0 +170731857759,220,0 +170731857807,220,0 +170731857854,220,0 +170731857902,220,0 +170731857950,220,0 +170731857998,220,0 +170731858046,220,0 +170731858094,220,0 +170731858142,220,0 +170731858192,220,0 +170731858241,220,0 +170731858291,220,0 +170731858339,224,0 +170731858386,289,1 +170731858471,234,0 +170731858519,221,0 +170731858566,220,0 +170731858614,220,0 +170731858662,220,0 +170731858710,220,0 +170731858758,220,0 +170731858808,220,0 +170731858856,220,0 +170731858905,220,0 +170731858953,220,0 +170731859001,220,0 +170731859049,220,0 +170731859097,220,0 +170731859145,220,0 +170731859193,220,0 +170731859241,221,0 +170731859289,220,0 +170731859339,220,0 +170731859386,223,0 +170731859434,262,0 +170731859482,273,1 +170731859565,221,0 +170731859614,220,0 +170731859662,221,0 +170731859710,220,0 +170731859758,221,0 +170731859806,220,0 +170731859854,220,0 +170731859903,220,0 +170731859953,220,0 +170731860001,220,0 +170731860048,220,0 +170731860098,220,0 +170731860146,221,0 +170731860195,220,0 +170731860243,220,0 +170731860291,220,0 +170731860339,220,0 +170731860387,220,0 +170731860435,224,0 +170731860483,298,1 +170731860565,234,0 +170731860614,220,0 +170731860662,220,0 +170731860710,220,0 +170731860758,220,0 +170731860808,220,0 +170731860857,220,0 +170731860905,220,0 +170731860953,221,0 +170731861001,220,0 +170731861049,220,0 +170731861097,220,0 +170731861146,220,0 +170731861194,220,0 +170731861244,220,0 +170731861292,221,0 +170731861340,220,0 +170731861389,220,0 +170731861439,220,0 +170731861488,224,0 +170731861536,289,1 +170731861616,234,0 +170731861664,220,0 +170731861712,220,0 +170731861762,220,0 +170731861811,220,0 +170731861859,220,0 +170731861907,220,0 +170731861955,220,0 +170731862004,220,0 +170731862052,220,0 +170731862100,220,0 +170731862148,220,0 +170731862196,220,0 +170731862246,220,0 +170731862294,220,0 +170731862343,220,0 +170731862393,220,0 +170731862441,220,0 +170731862490,221,0 +170731862538,238,0 +170731862586,305,1 +170731862668,230,0 +170731862717,221,0 +170731862767,220,0 +170731862815,221,0 +170731862863,220,0 +170731862911,220,0 +170731862959,220,0 +170731863007,220,0 +170731863056,220,0 +170731863106,220,0 +170731863155,220,0 +170731863205,220,0 +170731863255,220,0 +170731863304,220,0 +170731863353,220,0 +170731863401,220,0 +170731863449,220,0 +170731863497,221,0 +170731863545,221,0 +170731863595,234,0 +170731863644,297,1 +170731863727,225,0 +170731863775,220,0 +170731863824,220,0 +170731863874,220,0 +170731863923,220,0 +170731863973,220,0 +170731864022,220,0 +170731864070,220,0 +170731864118,220,0 +170731864168,220,0 +170731864216,220,0 +170731864264,220,0 +170731864312,220,0 +170731864360,220,0 +170731864408,220,0 +170731864456,220,0 +170731864505,220,0 +170731864553,220,0 +170731864603,221,0 +170731864652,276,1 +170731864742,229,0 +170731864792,221,0 +170731864841,221,0 +170731864891,220,0 +170731864940,220,0 +170731864990,220,0 +170731865038,219,0 +170731865086,220,0 +170731865135,220,0 +170731865183,220,0 +170731865231,220,0 +170731865281,220,0 +170731865330,220,0 +170731865380,220,0 +170731865429,220,0 +170731865479,220,0 +170731865527,220,0 +170731865576,220,0 +170731865624,221,0 +170731865672,223,0 +170731865720,290,1 +170731865808,234,0 +170731865856,220,0 +170731865905,220,0 +170731865953,220,0 +170731866001,220,0 +170731866049,221,0 +170731866097,220,0 +170731866145,220,0 +170731866193,220,0 +170731866241,221,0 +170731866290,220,0 +170731866338,220,0 +170731866388,220,0 +170731866436,220,0 +170731866484,221,0 +170731866533,220,0 +170731866581,220,0 +170731866629,220,0 +170731866679,221,0 +170731866728,226,0 +170731866776,303,1 +170731866860,231,0 +170731866910,221,0 +170731866958,220,0 +170731867006,219,0 +170731867055,220,0 +170731867103,220,0 +170731867151,220,0 +170731867201,220,0 +170731867249,220,0 +170731867298,220,0 +170731867348,221,0 +170731867396,220,0 +170731867444,220,0 +170731867493,220,0 +170731867543,220,0 +170731867592,220,0 +170731867642,220,0 +170731867690,220,0 +170731867738,221,0 +170731867786,227,0 +170731867834,289,1 +170731867922,229,0 +170731867970,221,0 +170731868018,220,0 +170731868067,221,0 +170731868117,220,0 +170731868164,221,0 +170731868214,220,0 +170731868264,220,0 +170731868311,221,0 +170731868359,220,0 +170731868407,220,0 +170731868457,220,0 +170731868505,220,0 +170731868553,220,0 +170731868601,220,0 +170731868649,220,0 +170731868697,220,0 +170731868746,220,0 +170731868794,220,0 +170731868842,220,0 +170731868892,220,0 +170731868941,220,0 +170731868989,220,0 +170731869039,220,0 +170731869087,220,0 +170731869136,220,0 +170731869184,220,0 +170731869234,220,0 +170731869283,221,0 +170731869333,222,0 +170731869381,288,1 +170731869468,233,0 +170731869518,220,0 +170731869567,220,0 +170731869615,221,0 +170731869664,220,0 +170731869712,221,0 +170731869762,220,0 +170731869810,220,0 +170731869858,220,0 +170731869907,220,0 +170731869957,220,0 +170731870005,220,0 +170731870053,220,0 +170731870101,220,0 +170731870150,220,0 +170731870198,220,0 +170731870246,220,0 +170731870296,220,0 +170731870343,221,0 +170731870391,223,0 +170731870439,295,1 +170731870524,236,0 +170731870573,220,0 +170731870621,221,0 +170731870669,220,0 +170731870717,220,0 +170731870765,220,0 +170731870814,220,0 +170731870864,220,0 +170731870912,220,0 +170731870960,220,0 +170731871009,220,0 +170731871057,220,0 +170731871105,220,0 +170731871155,220,0 +170731871205,220,0 +170731871252,220,0 +170731871300,220,0 +170731871348,220,0 +170731871396,221,0 +170731871444,222,0 +170731871492,250,0 +170731871542,257,0 +170731871591,225,0 +170731871639,220,0 +170731871687,220,0 +170731871737,220,0 +170731871785,220,0 +170731871833,221,0 +170731871881,219,0 +170731871929,220,0 +170731871978,220,0 +170731872026,220,0 +170731872074,220,0 +170731872122,220,0 +170731872172,219,0 +170731872219,220,0 +170731872267,220,0 +170731872317,220,0 +170731872365,221,0 +170731872414,221,0 +170731872464,221,0 +170731872512,283,1 +170731872589,276,1 +170731872671,220,0 +170731872719,220,0 +170731872767,220,0 +170731872815,220,0 +170731872863,220,0 +170731872911,220,0 +170731872959,220,0 +170731873007,220,0 +170731873055,221,0 +170731873104,220,0 +170731873152,220,0 +170731873200,220,0 +170731873249,220,0 +170731873297,220,0 +170731873347,221,0 +170731873395,220,0 +170731873443,220,0 +170731873491,221,0 +170731873539,223,0 +170731873587,277,1 +170731873666,234,0 +170731873714,221,0 +170731873764,220,0 +170731873812,220,0 +170731873860,220,0 +170731873908,221,0 +170731873956,220,0 +170731874004,220,0 +170731874052,220,0 +170731874100,221,0 +170731874147,220,0 +170731874195,220,0 +170731874245,220,0 +170731874293,220,0 +170731874341,221,0 +170731874389,220,0 +170731874437,220,0 +170731874485,220,0 +170731874534,221,0 +170731874582,222,0 +170731874631,282,1 +170731874715,234,0 +170731874763,220,0 +170731874813,220,0 +170731874861,220,0 +170731874908,220,0 +170731874956,220,0 +170731875004,220,0 +170731875052,220,0 +170731875100,220,0 +170731875149,220,0 +170731875199,220,0 +170731875249,220,0 +170731875298,220,0 +170731875348,220,0 +170731875395,220,0 +170731875443,220,0 +170731875491,220,0 +170731875539,220,0 +170731875587,220,0 +170731875637,223,0 +170731875685,296,1 +170731875760,234,0 +170731875809,220,0 +170731875857,220,0 +170731875905,220,0 +170731875953,219,0 +170731876001,220,0 +170731876051,220,0 +170731876099,220,0 +170731876147,220,0 +170731876195,220,0 +170731876243,220,0 +170731876292,220,0 +170731876340,220,0 +170731876388,220,0 +170731876436,220,0 +170731876484,220,0 +170731876533,220,0 +170731876581,220,0 +170731876629,220,0 +170731876677,222,0 +170731876724,290,1 +170731876816,234,0 +170731876865,220,0 +170731876913,220,0 +170731876962,220,0 +170731877010,220,0 +170731877058,220,0 +170731877108,220,0 +170731877157,220,0 +170731877205,220,0 +170731877253,220,0 +170731877301,220,0 +170731877349,220,0 +170731877397,220,0 +170731877445,220,0 +170731877493,220,0 +170731877541,220,0 +170731877591,220,0 +170731877639,220,0 +170731877686,220,0 +170731877734,222,0 +170731877782,296,1 +170731877866,237,0 +170731877914,221,0 +170731877962,220,0 +170731878010,220,0 +170731878059,220,0 +170731878109,220,0 +170731878157,220,0 +170731878205,220,0 +170731878254,220,0 +170731878302,220,0 +170731878350,220,0 +170731878398,220,0 +170731878446,220,0 +170731878494,221,0 +170731878542,220,0 +170731878591,220,0 +170731878639,220,0 +170731878687,220,0 +170731878735,220,0 +170731878783,222,0 +170731878831,289,1 +170731878912,235,0 +170731878961,221,0 +170731879011,220,0 +170731879059,220,0 +170731879107,220,0 +170731879154,220,0 +170731879204,221,0 +170731879252,220,0 +170731879301,220,0 +170731879351,220,0 +170731879400,220,0 +170731879448,221,0 +170731879496,220,0 +170731879544,221,0 +170731879592,220,0 +170731879642,220,0 +170731879691,220,0 +170731879739,220,0 +170731879787,220,0 +170731879837,224,0 +170731879885,291,1 +170731879968,230,0 +170731880018,221,0 +170731880066,220,0 +170731880115,220,0 +170731880163,220,0 +170731880211,220,0 +170731880259,220,0 +170731880307,221,0 +170731880355,220,0 +170731880404,220,0 +170731880452,220,0 +170731880502,220,0 +170731880551,220,0 +170731880599,220,0 +170731880649,221,0 +170731880697,220,0 +170731880746,221,0 +170731880794,220,0 +170731880842,222,0 +170731880892,227,0 +170731880940,306,1 +170731881022,230,0 +170731881070,221,0 +170731881119,221,0 +170731881167,220,0 +170731881217,220,0 +170731881266,221,0 +170731881314,221,0 +170731881362,221,0 +170731881410,220,0 +170731881458,220,0 +170731881506,220,0 +170731881556,220,0 +170731881605,220,0 +170731881655,221,0 +170731881703,220,0 +170731881751,221,0 +170731881799,221,0 +170731881847,220,0 +170731881895,222,0 +170731881943,229,0 +170731881992,290,1 +170731882081,223,0 +170731882130,221,0 +170731882178,221,0 +170731882226,220,0 +170731882274,221,0 +170731882322,220,0 +170731882370,220,0 +170731882420,220,0 +170731882469,220,0 +170731882517,221,0 +170731882565,220,0 +170731882615,220,0 +170731882663,221,0 +170731882712,220,0 +170731882760,221,0 +170731882810,220,0 +170731882858,221,0 +170731882907,221,0 +170731882957,221,0 +170731883005,277,1 +170731883091,233,0 +170731883139,222,0 +170731883187,221,0 +170731883235,221,0 +170731883283,220,0 +170731883332,221,0 +170731883382,221,0 +170731883430,220,0 +170731883478,220,0 +170731883527,220,0 +170731883577,221,0 +170731883625,221,0 +170731883672,220,0 +170731883720,221,0 +170731883768,220,0 +170731883816,220,0 +170731883864,220,0 +170731883912,220,0 +170731883960,221,0 +170731884010,222,0 +170731884058,289,1 +170731884147,227,0 +170731884197,221,0 +170731884245,221,0 +170731884293,220,0 +170731884341,220,0 +170731884389,220,0 +170731884438,220,0 +170731884488,220,0 +170731884537,220,0 +170731884587,221,0 +170731884635,220,0 +170731884683,220,0 +170731884731,220,0 +170731884780,220,0 +170731884828,220,0 +170731884878,220,0 +170731884926,221,0 +170731884974,220,0 +170731885021,221,0 +170731885069,222,0 +170731885117,288,1 +170731885205,236,0 +170731885255,221,0 +170731885304,220,0 +170731885352,220,0 +170731885400,221,0 +170731885448,221,0 +170731885496,220,0 +170731885546,221,0 +170731885594,221,0 +170731885642,220,0 +170731885691,220,0 +170731885741,221,0 +170731885789,220,0 +170731885837,220,0 +170731885885,220,0 +170731885933,221,0 +170731885982,220,0 +170731886030,221,0 +170731886078,220,0 +170731886126,223,0 +170731886176,267,0 +170731886224,288,1 +170731886307,221,0 +170731886355,220,0 +170731886403,220,0 +170731886451,221,0 +170731886500,220,0 +170731886550,221,0 +170731886598,220,0 +170731886647,220,0 +170731886695,221,0 +170731886743,220,0 +170731886791,220,0 +170731886839,220,0 +170731886887,221,0 +170731886935,220,0 +170731886983,220,0 +170731887033,220,0 +170731887081,221,0 +170731887130,221,0 +170731887178,222,0 +170731887228,288,1 +170731887314,232,0 +170731887362,221,0 +170731887411,220,0 +170731887459,220,0 +170731887507,220,0 +170731887557,220,0 +170731887606,220,0 +170731887656,220,0 +170731887705,220,0 +170731887753,220,0 +170731887801,220,0 +170731887849,220,0 +170731887897,220,0 +170731887947,220,0 +170731887996,221,0 +170731888044,220,0 +170731888092,221,0 +170731888140,220,0 +170731888188,221,0 +170731888236,227,0 +170731888286,279,1 +170731888369,226,0 +170731888417,221,0 +170731888465,220,0 +170731888513,221,0 +170731888562,220,0 +170731888612,220,0 +170731888661,220,0 +170731888711,220,0 +170731888760,220,0 +170731888810,221,0 +170731888857,220,0 +170731888907,220,0 +170731888957,220,0 +170731889005,220,0 +170731889053,220,0 +170731889102,220,0 +170731889152,220,0 +170731889199,220,0 +170731889249,221,0 +170731889299,237,0 +170731889347,287,1 +170731889431,226,0 +170731889479,220,0 +170731889528,220,0 +170731889576,220,0 +170731889624,220,0 +170731889672,220,0 +170731889720,220,0 +170731889768,220,0 +170731889816,220,0 +170731889866,220,0 +170731889913,220,0 +170731889961,220,0 +170731890009,220,0 +170731890059,220,0 +170731890107,220,0 +170731890155,220,0 +170731890203,220,0 +170731890251,221,0 +170731890299,221,0 +170731890348,264,0 +170731890396,290,1 +170731890482,223,0 +170731890532,220,0 +170731890580,220,0 +170731890628,220,0 +170731890677,220,0 +170731890725,220,0 +170731890773,221,0 +170731890823,220,0 +170731890871,220,0 +170731890919,220,0 +170731890968,220,0 +170731891016,220,0 +170731891064,220,0 +170731891112,220,0 +170731891160,220,0 +170731891208,220,0 +170731891256,220,0 +170731891304,220,0 +170731891354,221,0 +170731891402,282,1 +170731891501,236,0 +170731891549,221,0 +170731891598,220,0 +170731891646,220,0 +170731891696,220,0 +170731891744,220,0 +170731891792,220,0 +170731891840,220,0 +170731891887,220,0 +170731891935,220,0 +170731891983,220,0 +170731892033,220,0 +170731892082,220,0 +170731892130,220,0 +170731892178,220,0 +170731892226,220,0 +170731892274,220,0 +170731892324,220,0 +170731892372,220,0 +170731892421,222,0 +170731892471,302,1 +170731892555,238,0 +170731892603,221,0 +170731892651,221,0 +170731892699,220,0 +170731892747,220,0 +170731892795,220,0 +170731892844,220,0 +170731892894,220,0 +170731892942,220,0 +170731892991,220,0 +170731893039,220,0 +170731893087,220,0 +170731893137,220,0 +170731893186,220,0 +170731893236,220,0 +170731893284,221,0 +170731893332,220,0 +170731893380,220,0 +170731893428,221,0 +170731893477,222,0 +170731893525,254,0 +170731893573,266,0 +170731893623,228,0 +170731893671,221,0 +170731893720,220,0 +170731893768,220,0 +170731893816,220,0 +170731893866,220,0 +170731893914,220,0 +170731893962,220,0 +170731894010,220,0 +170731894058,220,0 +170731894106,220,0 +170731894154,220,0 +170731894203,220,0 +170731894251,220,0 +170731894301,220,0 +170731894349,220,0 +170731894398,220,0 +170731894446,220,0 +170731894495,221,0 +170731894543,251,0 +170731894593,286,1 +170731894674,225,0 +170731894722,220,0 +170731894770,220,0 +170731894818,221,0 +170731894866,220,0 +170731894914,220,0 +170731894962,220,0 +170731895012,220,0 +170731895060,220,0 +170731895109,220,0 +170731895157,220,0 +170731895207,220,0 +170731895255,221,0 +170731895303,220,0 +170731895351,220,0 +170731895399,220,0 +170731895447,220,0 +170731895495,220,0 +170731895544,220,0 +170731895592,245,0 +170731895640,259,0 +170731895689,229,0 +170731895737,221,0 +170731895787,220,0 +170731895836,220,0 +170731895884,220,0 +170731895932,220,0 +170731895980,220,0 +170731896028,220,0 +170731896076,221,0 +170731896126,220,0 +170731896175,220,0 +170731896223,220,0 +170731896271,220,0 +170731896321,220,0 +170731896370,220,0 +170731896418,220,0 +170731896468,220,0 +170731896516,220,0 +170731896564,220,0 +170731896612,222,0 +170731896661,268,0 +170731896711,267,0 +170731896759,231,0 +170731896807,221,0 +170731896855,221,0 +170731896903,220,0 +170731896952,220,0 +170731897000,220,0 +170731897048,220,0 +170731897096,220,0 +170731897146,220,0 +170731897194,220,0 +170731897242,220,0 +170731897290,220,0 +170731897338,220,0 +170731897385,220,0 +170731897433,220,0 +170731897481,220,0 +170731897531,220,0 +170731897579,221,0 +170731897627,220,0 +170731897675,223,0 +170731897724,253,0 +170731897772,251,0 +170731897822,223,0 +170731897871,220,0 +170731897919,220,0 +170731897969,220,0 +170731898018,221,0 +170731898066,220,0 +170731898116,221,0 +170731898165,220,0 +170731898215,220,0 +170731898263,220,0 +170731898311,220,0 +170731898359,220,0 +170731898407,220,0 +170731898455,220,0 +170731898503,220,0 +170731898551,220,0 +170731898599,220,0 +170731898648,221,0 +170731898696,222,0 +170731898744,273,1 +170731898830,237,0 +170731898878,222,0 +170731898926,220,0 +170731898974,220,0 +170731899022,220,0 +170731899071,220,0 +170731899119,220,0 +170731899167,220,0 +170731899215,220,0 +170731899265,220,0 +170731899314,220,0 +170731899362,221,0 +170731899410,221,0 +170731899458,220,0 +170731899508,221,0 +170731899556,220,0 +170731899604,220,0 +170731899652,220,0 +170731899700,221,0 +170731899748,221,0 +170731899796,257,0 +170731899844,275,1 +170731899928,224,0 +170731899976,221,0 +170731900024,220,0 +170731900072,220,0 +170731900120,220,0 +170731900168,220,0 +170731900215,221,0 +170731900263,220,0 +170731900311,221,0 +170731900359,220,0 +170731900407,221,0 +170731900457,220,0 +170731900505,220,0 +170731900554,221,0 +170731900602,220,0 +170731900650,220,0 +170731900698,221,0 +170731900748,221,0 +170731900796,221,0 +170731900844,251,0 +170731900893,254,0 +170731900941,230,0 +170731900991,221,0 +170731901040,220,0 +170731901090,221,0 +170731901139,221,0 +170731901187,221,0 +170731901237,220,0 +170731901285,221,0 +170731901333,221,0 +170731901381,220,0 +170731901428,221,0 +170731901476,221,0 +170731901524,220,0 +170731901572,220,0 +170731901620,220,0 +170731901668,221,0 +170731901717,220,0 +170731901765,221,0 +170731901813,221,0 +170731901861,222,0 +170731901909,290,1 +170731901994,236,0 +170731902042,221,0 +170731902089,221,0 +170731902137,220,0 +170731902185,220,0 +170731902233,221,0 +170731902281,221,0 +170731902329,221,0 +170731902377,220,0 +170731902425,220,0 +170731902472,221,0 +170731902520,220,0 +170731902568,221,0 +170731902616,221,0 +170731902664,220,0 +170731902712,220,0 +170731902760,221,0 +170731902808,221,0 +170731902856,221,0 +170731902903,222,0 +170731902951,275,1 +170731903036,226,0 +170731903084,222,0 +170731903132,220,0 +170731903180,221,0 +170731903228,220,0 +170731903275,220,0 +170731903323,220,0 +170731903373,220,0 +170731903421,221,0 +170731903470,220,0 +170731903518,221,0 +170731903566,221,0 +170731903614,220,0 +170731903662,220,0 +170731903710,221,0 +170731903758,220,0 +170731903807,220,0 +170731903855,221,0 +170731903905,221,0 +170731903953,222,0 +170731904001,251,0 +170731904049,260,0 +170731904097,231,0 +170731904145,221,0 +170731904193,221,0 +170731904241,221,0 +170731904290,221,0 +170731904338,220,0 +170731904388,221,0 +170731904437,220,0 +170731904487,221,0 +170731904536,220,0 +170731904584,220,0 +170731904632,220,0 +170731904680,220,0 +170731904728,221,0 +170731904776,220,0 +170731904824,220,0 +170731904873,220,0 +170731904921,220,0 +170731904970,221,0 +170731905018,222,0 +170731905066,261,0 +170731905116,301,1 +170731905199,221,0 +170731905247,220,0 +170731905295,221,0 +170731905343,221,0 +170731905391,221,0 +170731905439,221,0 +170731905487,221,0 +170731905534,220,0 +170731905584,221,0 +170731905632,220,0 +170731905680,220,0 +170731905727,220,0 +170731905775,221,0 +170731905823,221,0 +170731905873,220,0 +170731905921,220,0 +170731905969,221,0 +170731906016,221,0 +170731906066,224,0 +170731906114,298,1 +170731906198,235,0 +170731906246,221,0 +170731906295,221,0 +170731906345,220,0 +170731906393,220,0 +170731906440,220,0 +170731906488,220,0 +170731906536,221,0 +170731906584,220,0 +170731906632,220,0 +170731906680,221,0 +170731906728,221,0 +170731906776,221,0 +170731906824,220,0 +170731906871,220,0 +170731906919,220,0 +170731906967,221,0 +170731907017,221,0 +170731907065,220,0 +170731907112,223,0 +170731907160,255,0 +170731907208,282,1 +170731907294,221,0 +170731907341,221,0 +170731907389,221,0 +170731907439,221,0 +170731907487,220,0 +170731907535,221,0 +170731907583,220,0 +170731907631,221,0 +170731907680,221,0 +170731907730,221,0 +170731907779,221,0 +170731907827,221,0 +170731907877,221,0 +170731907925,220,0 +170731907973,220,0 +170731908022,221,0 +170731908072,220,0 +170731908120,221,0 +170731908169,224,0 +170731908217,282,1 +170731908301,230,0 +170731908349,221,0 +170731908397,221,0 +170731908447,220,0 +170731908496,220,0 +170731908544,220,0 +170731908592,221,0 +170731908642,220,0 +170731908690,220,0 +170731908738,220,0 +170731908786,220,0 +170731908833,221,0 +170731908881,220,0 +170731908931,220,0 +170731908979,221,0 +170731909027,221,0 +170731909074,221,0 +170731909122,221,0 +170731909170,221,0 +170731909218,240,0 +170731909266,302,1 +170731909347,230,0 +170731909395,221,0 +170731909444,221,0 +170731909492,221,0 +170731909540,221,0 +170731909588,221,0 +170731909636,220,0 +170731909684,220,0 +170731909733,220,0 +170731909781,221,0 +170731909829,221,0 +170731909877,220,0 +170731909925,221,0 +170731909972,220,0 +170731910020,221,0 +170731910068,220,0 +170731910116,220,0 +170731910164,220,0 +170731910214,221,0 +170731910261,224,0 +170731910309,275,1 +170731910400,226,0 +170731910448,221,0 +170731910496,220,0 +170731910544,220,0 +170731910592,220,0 +170731910640,220,0 +170731910688,220,0 +170731910736,221,0 +170731910784,220,0 +170731910831,220,0 +170731910879,220,0 +170731910927,220,0 +170731910975,220,0 +170731911023,220,0 +170731911071,220,0 +170731911120,220,0 +170731911168,220,0 +170731911216,221,0 +170731911264,221,0 +170731911312,227,0 +170731911361,298,1 +170731911446,227,0 +170731911494,221,0 +170731911542,220,0 +170731911590,220,0 +170731911638,220,0 +170731911686,220,0 +170731911734,220,0 +170731911782,220,0 +170731911831,220,0 +170731911879,220,0 +170731911927,220,0 +170731911975,220,0 +170731912023,220,0 +170731912071,220,0 +170731912118,220,0 +170731912166,220,0 +170731912214,220,0 +170731912262,220,0 +170731912310,221,0 +170731912358,223,0 +170731912406,291,1 +170731912493,233,0 +170731912541,220,0 +170731912589,220,0 +170731912637,220,0 +170731912685,220,0 +170731912734,220,0 +170731912782,220,0 +170731912831,220,0 +170731912879,220,0 +170731912927,220,0 +170731912975,220,0 +170731913023,220,0 +170731913071,220,0 +170731913119,220,0 +170731913167,220,0 +170731913215,220,0 +170731913264,220,0 +170731913312,220,0 +170731913360,221,0 +170731913408,233,0 +170731913455,294,1 +170731913551,224,0 +170731913599,221,0 +170731913646,220,0 +170731913696,221,0 +170731913745,220,0 +170731913793,220,0 +170731913843,220,0 +170731913891,220,0 +170731913939,220,0 +170731913986,220,0 +170731914036,220,0 +170731914084,220,0 +170731914132,220,0 +170731914180,219,0 +170731914227,220,0 +170731914275,220,0 +170731914323,220,0 +170731914373,220,0 +170731914421,221,0 +170731914468,244,0 +170731914516,292,1 +170731914604,225,0 +170731914652,220,0 +170731914700,220,0 +170731914748,220,0 +170731914795,220,0 +170731914843,220,0 +170731914891,220,0 +170731914939,220,0 +170731914987,220,0 +170731915036,220,0 +170731915084,220,0 +170731915132,220,0 +170731915180,220,0 +170731915230,220,0 +170731915279,220,0 +170731915327,220,0 +170731915375,220,0 +170731915423,220,0 +170731915471,220,0 +170731915518,224,0 +170731915566,290,1 +170731915649,235,0 +170731915697,221,0 +170731915745,220,0 +170731915793,220,0 +170731915841,220,0 +170731915890,220,0 +170731915938,219,0 +170731915986,220,0 +170731916036,220,0 +170731916085,220,0 +170731916133,220,0 +170731916183,220,0 +170731916232,220,0 +170731916282,220,0 +170731916330,220,0 +170731916378,220,0 +170731916425,220,0 +170731916473,220,0 +170731916521,221,0 +170731916571,262,0 +170731916619,290,1 +170731916701,225,0 +170731916749,220,0 +170731916797,220,0 +170731916845,220,0 +170731916893,220,0 +170731916941,220,0 +170731916989,220,0 +170731917037,220,0 +170731917084,220,0 +170731917132,220,0 +170731917180,220,0 +170731917228,220,0 +170731917276,220,0 +170731917325,220,0 +170731917373,220,0 +170731917421,220,0 +170731917469,220,0 +170731917517,220,0 +170731917565,221,0 +170731917613,244,0 +170731917661,295,1 +170731917744,228,0 +170731917794,220,0 +170731917842,220,0 +170731917891,220,0 +170731917941,220,0 +170731917988,220,0 +170731918036,220,0 +170731918084,220,0 +170731918132,220,0 +170731918180,220,0 +170731918228,220,0 +170731918275,220,0 +170731918323,220,0 +170731918371,220,0 +170731918419,220,0 +170731918467,220,0 +170731918515,220,0 +170731918563,220,0 +170731918611,221,0 +170731918659,223,0 +170731918707,279,1 +170731918793,233,0 +170731918841,220,0 +170731918890,220,0 +170731918938,220,0 +170731918988,220,0 +170731919036,220,0 +170731919084,220,0 +170731919132,219,0 +170731919180,220,0 +170731919228,220,0 +170731919276,220,0 +170731919324,220,0 +170731919372,220,0 +170731919421,220,0 +170731919469,220,0 +170731919517,220,0 +170731919565,220,0 +170731919613,220,0 +170731919661,220,0 +170731919709,225,0 +170731919757,279,1 +170731919843,227,0 +170731919892,220,0 +170731919942,220,0 +170731919991,220,0 +170731920039,219,0 +170731920087,220,0 +170731920137,220,0 +170731920186,219,0 +170731920234,220,0 +170731920282,220,0 +170731920332,220,0 +170731920381,220,0 +170731920431,220,0 +170731920479,220,0 +170731920527,220,0 +170731920576,220,0 +170731920626,220,0 +170731920676,220,0 +170731920723,221,0 +170731920773,282,1 +170731920861,226,0 +170731920911,221,0 +170731920959,220,0 +170731921008,220,0 +170731921056,220,0 +170731921104,220,0 +170731921154,220,0 +170731921202,220,0 +170731921250,220,0 +170731921298,220,0 +170731921347,220,0 +170731921397,220,0 +170731921445,220,0 +170731921494,220,0 +170731921544,220,0 +170731921593,220,0 +170731921641,220,0 +170731921689,220,0 +170731921739,220,0 +170731921787,222,0 +170731921836,296,1 +170731921925,229,0 +170731921973,221,0 +170731922021,219,0 +170731922071,220,0 +170731922119,220,0 +170731922167,220,0 +170731922216,220,0 +170731922264,220,0 +170731922314,220,0 +170731922363,220,0 +170731922411,220,0 +170731922461,220,0 +170731922508,220,0 +170731922556,220,0 +170731922604,220,0 +170731922654,220,0 +170731922703,220,0 +170731922751,220,0 +170731922799,220,0 +170731922849,222,0 +170731922897,287,1 +170731922983,239,0 +170731923031,220,0 +170731923079,220,0 +170731923127,220,0 +170731923175,220,0 +170731923223,220,0 +170731923272,220,0 +170731923322,220,0 +170731923371,220,0 +170731923419,220,0 +170731923469,220,0 +170731923517,220,0 +170731923565,220,0 +170731923614,220,0 +170731923662,220,0 +170731923710,220,0 +170731923758,220,0 +170731923807,220,0 +170731923857,220,0 +170731923906,229,0 +170731923956,299,1 +170731924044,227,0 +170731924093,220,0 +170731924141,220,0 +170731924191,220,0 +170731924239,220,0 +170731924287,220,0 +170731924334,220,0 +170731924382,220,0 +170731924431,220,0 +170731924478,220,0 +170731924528,220,0 +170731924578,220,0 +170731924626,220,0 +170731924674,220,0 +170731924722,220,0 +170731924770,220,0 +170731924818,220,0 +170731924867,220,0 +170731924915,220,0 +170731924963,227,0 +170731925013,303,1 +170731925102,226,0 +170731925150,220,0 +170731925198,220,0 +170731925246,220,0 +170731925293,220,0 +170731925343,220,0 +170731925391,220,0 +170731925439,220,0 +170731925487,220,0 +170731925535,220,0 +170731925583,220,0 +170731925630,220,0 +170731925680,220,0 +170731925728,220,0 +170731925776,220,0 +170731925825,220,0 +170731925875,220,0 +170731925923,220,0 +170731925972,221,0 +170731926020,270,1 +170731926105,267,0 +170731926153,222,0 +170731926201,220,0 +170731926249,220,0 +170731926296,220,0 +170731926344,220,0 +170731926392,220,0 +170731926440,219,0 +170731926488,220,0 +170731926536,220,0 +170731926584,220,0 +170731926633,220,0 +170731926683,220,0 +170731926731,220,0 +170731926779,220,0 +170731926828,220,0 +170731926878,220,0 +170731926925,220,0 +170731926973,220,0 +170731927023,221,0 +170731927072,282,1 +170731927161,233,0 +170731927210,221,0 +170731927260,220,0 +170731927309,220,0 +170731927357,220,0 +170731927405,220,0 +170731927455,220,0 +170731927503,220,0 +170731927552,220,0 +170731927600,220,0 +170731927648,220,0 +170731927697,220,0 +170731927745,220,0 +170731927795,220,0 +170731927844,220,0 +170731927892,220,0 +170731927940,220,0 +170731927988,220,0 +170731928036,220,0 +170731928086,221,0 +170731928135,291,1 +170731928226,236,0 +170731928274,220,0 +170731928323,220,0 +170731928371,220,0 +170731928420,220,0 +170731928470,220,0 +170731928518,219,0 +170731928566,220,0 +170731928615,219,0 +170731928663,220,0 +170731928711,220,0 +170731928759,219,0 +170731928809,220,0 +170731928857,219,0 +170731928905,220,0 +170731928954,220,0 +170731929002,219,0 +170731929052,219,0 +170731929101,220,0 +170731929149,222,0 +170731929197,251,0 +170731929245,258,0 +170731929294,229,0 +170731929344,220,0 +170731929392,220,0 +170731929441,220,0 +170731929489,220,0 +170731929539,219,0 +170731929587,220,0 +170731929635,219,0 +170731929683,220,0 +170731929732,220,0 +170731929782,220,0 +170731929830,220,0 +170731929879,219,0 +170731929927,220,0 +170731929977,220,0 +170731930025,219,0 +170731930072,220,0 +170731930120,220,0 +170731930170,220,0 +170731930220,248,0 +170731930269,301,1 +170731930354,222,0 +170731930402,219,0 +170731930450,220,0 +170731930498,220,0 +170731930546,220,0 +170731930594,219,0 +170731930642,220,0 +170731930691,219,0 +170731930741,220,0 +170731930789,220,0 +170731930837,220,0 +170731930886,219,0 +170731930934,220,0 +170731930982,219,0 +170731931030,219,0 +170731931078,219,0 +170731931126,220,0 +170731931174,220,0 +170731931222,220,0 +170731931270,269,0 +170731931317,290,1 +170731931398,224,0 +170731931446,220,0 +170731931495,220,0 +170731931543,219,0 +170731931591,219,0 +170731931639,219,0 +170731931688,219,0 +170731931737,220,0 +170731931785,219,0 +170731931833,219,0 +170731931881,219,0 +170731931929,220,0 +170731931977,220,0 +170731932025,219,0 +170731932073,220,0 +170731932120,219,0 +170731932168,220,0 +170731932218,220,0 +170731932266,221,0 +170731932314,259,0 +170731932362,287,1 +170731932440,230,0 +170731932488,220,0 +170731932537,220,0 +170731932585,219,0 +170731932633,220,0 +170731932681,219,0 +170731932729,220,0 +170731932777,220,0 +170731932825,219,0 +170731932872,220,0 +170731932922,219,0 +170731932971,220,0 +170731933019,220,0 +170731933069,220,0 +170731933118,220,0 +170731933166,220,0 +170731933214,220,0 +170731933262,220,0 +170731933312,221,0 +170731933360,233,0 +170731933409,291,1 +170731933498,223,0 +170731933547,220,0 +170731933595,219,0 +170731933645,220,0 +170731933694,220,0 +170731933744,220,0 +170731933793,220,0 +170731933841,220,0 +170731933891,220,0 +170731933940,219,0 +170731933990,220,0 +170731934039,220,0 +170731934089,219,0 +170731934137,220,0 +170731934185,220,0 +170731934233,220,0 +170731934280,220,0 +170731934328,220,0 +170731934378,221,0 +170731934426,293,1 +170731934512,226,0 +170731934562,220,0 +170731934611,219,0 +170731934661,220,0 +170731934709,219,0 +170731934757,219,0 +170731934804,219,0 +170731934852,219,0 +170731934902,220,0 +170731934950,219,0 +170731934997,219,0 +170731935045,220,0 +170731935093,220,0 +170731935141,220,0 +170731935189,219,0 +170731935237,220,0 +170731935285,219,0 +170731935333,219,0 +170731935381,220,0 +170731935429,221,0 +170731935476,275,1 +170731935566,226,0 +170731935614,220,0 +170731935662,219,0 +170731935710,220,0 +170731935759,220,0 +170731935809,219,0 +170731935856,220,0 +170731935904,219,0 +170731935952,220,0 +170731936000,220,0 +170731936048,220,0 +170731936096,219,0 +170731936145,220,0 +170731936193,220,0 +170731936241,220,0 +170731936289,220,0 +170731936337,220,0 +170731936385,220,0 +170731936433,220,0 +170731936481,221,0 +170731936528,277,1 +170731936611,232,0 +170731936659,221,0 +170731936707,220,0 +170731936755,219,0 +170731936805,219,0 +170731936853,220,0 +170731936902,220,0 +170731936950,220,0 +170731936998,219,0 +170731937046,220,0 +170731937094,219,0 +170731937142,220,0 +170731937190,219,0 +170731937238,220,0 +170731937286,219,0 +170731937334,220,0 +170731937383,220,0 +170731937433,220,0 +170731937482,220,0 +170731937532,220,0 +170731937581,275,1 +170731937664,258,0 +170731937714,222,0 +170731937763,220,0 +170731937813,220,0 +170731937861,220,0 +170731937909,220,0 +170731937958,220,0 +170731938006,220,0 +170731938054,220,0 +170731938102,220,0 +170731938152,220,0 +170731938200,219,0 +170731938248,219,0 +170731938296,220,0 +170731938345,219,0 +170731938395,220,0 +170731938443,220,0 +170731938491,220,0 +170731938539,220,0 +170731938587,222,0 +170731938635,298,1 +170731938729,231,0 +170731938777,220,0 +170731938825,220,0 +170731938873,219,0 +170731938922,219,0 +170731938970,220,0 +170731939018,220,0 +170731939066,219,0 +170731939114,220,0 +170731939162,220,0 +170731939210,220,0 +170731939258,220,0 +170731939307,219,0 +170731939355,220,0 +170731939403,219,0 +170731939451,219,0 +170731939499,220,0 +170731939547,220,0 +170731939596,220,0 +170731939644,223,0 +170731939693,299,1 +170731939785,229,0 +170731939833,220,0 +170731939882,220,0 +170731939932,220,0 +170731939981,220,0 +170731940031,219,0 +170731940079,219,0 +170731940128,220,0 +170731940176,220,0 +170731940224,220,0 +170731940272,219,0 +170731940320,219,0 +170731940368,219,0 +170731940416,220,0 +170731940463,219,0 +170731940511,220,0 +170731940559,220,0 +170731940607,220,0 +170731940655,220,0 +170731940703,224,0 +170731940751,294,1 +170731940835,227,0 +170731940883,220,0 +170731940930,220,0 +170731940980,219,0 +170731941028,219,0 +170731941076,220,0 +170731941124,219,0 +170731941171,220,0 +170731941219,219,0 +170731941267,219,0 +170731941317,219,0 +170731941366,219,0 +170731941414,220,0 +170731941463,219,0 +170731941511,220,0 +170731941559,219,0 +170731941607,220,0 +170731941655,220,0 +170731941703,220,0 +170731941752,225,0 +170731941800,302,1 +170731941887,229,0 +170731941935,220,0 +170731941983,220,0 +170731942031,220,0 +170731942080,219,0 +170731942128,220,0 +170731942178,220,0 +170731942226,220,0 +170731942275,220,0 +170731942323,219,0 +170731942371,219,0 +170731942421,219,0 +170731942470,220,0 +170731942518,220,0 +170731942566,219,0 +170731942614,219,0 +170731942662,219,0 +170731942710,220,0 +170731942760,220,0 +170731942807,278,1 +170731942891,265,0 +170731942939,223,0 +170731942989,219,0 +170731943037,220,0 +170731943085,219,0 +170731943133,219,0 +170731943181,219,0 +170731943230,219,0 +170731943278,219,0 +170731943328,220,0 +170731943377,219,0 +170731943425,220,0 +170731943473,220,0 +170731943521,220,0 +170731943569,219,0 +170731943617,220,0 +170731943665,220,0 +170731943713,220,0 +170731943761,220,0 +170731943810,220,0 +170731943858,231,0 +170731943906,285,1 +170731943994,224,0 +170731944044,220,0 +170731944092,220,0 +170731944139,219,0 +170731944189,219,0 +170731944238,219,0 +170731944286,219,0 +170731944336,219,0 +170731944384,220,0 +170731944431,219,0 +170731944479,220,0 +170731944527,219,0 +170731944575,219,0 +170731944623,220,0 +170731944671,219,0 +170731944719,219,0 +170731944767,220,0 +170731944816,220,0 +170731944864,220,0 +170731944914,259,0 +170731944962,289,1 +170731945059,221,0 +170731945106,220,0 +170731945154,220,0 +170731945202,219,0 +170731945252,219,0 +170731945300,220,0 +170731945347,220,0 +170731945395,220,0 +170731945445,219,0 +170731945493,220,0 +170731945541,219,0 +170731945589,219,0 +170731945637,220,0 +170731945686,220,0 +170731945734,219,0 +170731945784,220,0 +170731945832,219,0 +170731945881,220,0 +170731945931,222,0 +170731945979,275,1 +170731946059,228,0 +170731946107,220,0 +170731946154,219,0 +170731946204,220,0 +170731946254,220,0 +170731946303,219,0 +170731946353,220,0 +170731946401,219,0 +170731946449,219,0 +170731946498,220,0 +170731946546,219,0 +170731946596,219,0 +170731946644,220,0 +170731946693,220,0 +170731946741,220,0 +170731946791,219,0 +170731946838,219,0 +170731946886,220,0 +170731946934,220,0 +170731946982,222,0 +170731947032,279,1 +170731947113,236,0 +170731947161,220,0 +170731947209,220,0 +170731947258,219,0 +170731947308,219,0 +170731947356,219,0 +170731947404,220,0 +170731947453,219,0 +170731947503,220,0 +170731947552,219,0 +170731947602,220,0 +170731947650,220,0 +170731947698,219,0 +170731947746,219,0 +170731947795,219,0 +170731947843,220,0 +170731947891,219,0 +170731947939,220,0 +170731947987,220,0 +170731948035,221,0 +170731948083,251,0 +170731948133,269,0 +170731948181,230,0 +170731948228,219,0 +170731948278,220,0 +170731948326,220,0 +170731948374,220,0 +170731948422,220,0 +170731948471,219,0 +170731948519,220,0 +170731948569,220,0 +170731948617,220,0 +170731948665,219,0 +170731948713,220,0 +170731948761,219,0 +170731948809,220,0 +170731948857,219,0 +170731948905,220,0 +170731948953,219,0 +170731949001,220,0 +170731949049,221,0 +170731949097,232,0 +170731949145,258,0 +170731949193,246,0 +170731949242,221,0 +170731949290,219,0 +170731949338,220,0 +170731949386,220,0 +170731949435,220,0 +170731949483,220,0 +170731949533,219,0 +170731949582,219,0 +170731949632,219,0 +170731949680,219,0 +170731949729,220,0 +170731949777,219,0 +170731949827,219,0 +170731949875,220,0 +170731949923,219,0 +170731949971,219,0 +170731950019,220,0 +170731950068,220,0 +170731950116,221,0 +170731950166,295,1 +170731950250,230,0 +170731950298,221,0 +170731950347,220,0 +170731950395,219,0 +170731950445,219,0 +170731950494,220,0 +170731950542,219,0 +170731950592,220,0 +170731950640,219,0 +170731950688,219,0 +170731950736,220,0 +170731950785,219,0 +170731950833,220,0 +170731950881,219,0 +170731950931,220,0 +170731950979,220,0 +170731951026,220,0 +170731951074,219,0 +170731951124,219,0 +170731951173,221,0 +170731951221,288,1 +170731951309,231,0 +170731951357,221,0 +170731951405,220,0 +170731951454,219,0 +170731951502,219,0 +170731951550,219,0 +170731951598,219,0 +170731951648,220,0 +170731951696,220,0 +170731951744,219,0 +170731951792,219,0 +170731951839,220,0 +170731951889,219,0 +170731951937,220,0 +170731951985,220,0 +170731952033,220,0 +170731952082,219,0 +170731952132,220,0 +170731952180,220,0 +170731952229,222,0 +170731952277,278,1 +170731952357,231,0 +170731952407,221,0 +170731952455,220,0 +170731952502,219,0 +170731952550,220,0 +170731952598,220,0 +170731952646,220,0 +170731952694,219,0 +170731952742,220,0 +170731952791,219,0 +170731952839,220,0 +170731952887,219,0 +170731952935,220,0 +170731952983,220,0 +170731953031,220,0 +170731953079,219,0 +170731953127,219,0 +170731953174,219,0 +170731953222,220,0 +170731953270,221,0 +170731953318,283,1 +170731953402,234,0 +170731953452,220,0 +170731953501,220,0 +170731953549,220,0 +170731953597,220,0 +170731953645,220,0 +170731953693,220,0 +170731953741,220,0 +170731953788,220,0 +170731953836,219,0 +170731953884,219,0 +170731953932,220,0 +170731953981,220,0 +170731954029,220,0 +170731954077,220,0 +170731954125,219,0 +170731954173,220,0 +170731954221,220,0 +170731954269,220,0 +170731954318,221,0 +170731954366,251,0 +170731954415,262,0 +170731954463,233,0 +170731954511,221,0 +170731954559,220,0 +170731954608,220,0 +170731954656,219,0 +170731954706,220,0 +170731954753,219,0 +170731954801,220,0 +170731954849,220,0 +170731954897,220,0 +170731954945,219,0 +170731954994,220,0 +170731955042,220,0 +170731955090,220,0 +170731955138,220,0 +170731955186,219,0 +170731955236,220,0 +170731955285,220,0 +170731955333,220,0 +170731955381,223,0 +170731955429,270,1 +170731955507,232,0 +170731955557,220,0 +170731955605,220,0 +170731955654,220,0 +170731955702,220,0 +170731955752,220,0 +170731955801,219,0 +170731955849,220,0 +170731955897,219,0 +170731955945,219,0 +170731955993,220,0 +170731956043,220,0 +170731956093,219,0 +170731956141,220,0 +170731956189,219,0 +170731956237,220,0 +170731956285,220,0 +170731956332,220,0 +170731956380,220,0 +170731956430,224,0 +170731956479,290,1 +170731956566,228,0 +170731956614,220,0 +170731956662,219,0 +170731956710,220,0 +170731956760,220,0 +170731956808,220,0 +170731956856,220,0 +170731956905,220,0 +170731956953,219,0 +170731957001,220,0 +170731957049,219,0 +170731957097,220,0 +170731957145,220,0 +170731957193,220,0 +170731957241,220,0 +170731957290,220,0 +170731957340,220,0 +170731957388,220,0 +170731957436,220,0 +170731957484,224,0 +170731957532,274,1 +170731957610,229,0 +170731957658,220,0 +170731957707,220,0 +170731957755,220,0 +170731957805,219,0 +170731957853,220,0 +170731957902,220,0 +170731957952,219,0 +170731958000,220,0 +170731958048,219,0 +170731958096,219,0 +170731958144,219,0 +170731958192,220,0 +170731958240,219,0 +170731958289,219,0 +170731958337,220,0 +170731958385,220,0 +170731958433,220,0 +170731958483,221,0 +170731958531,222,0 +170731958580,290,1 +170731958668,233,0 +170731958716,220,0 +170731958763,220,0 +170731958811,220,0 +170731958859,220,0 +170731958909,219,0 +170731958957,220,0 +170731959006,220,0 +170731959056,220,0 +170731959104,219,0 +170731959152,220,0 +170731959200,220,0 +170731959248,220,0 +170731959296,219,0 +170731959344,220,0 +170731959392,220,0 +170731959440,219,0 +170731959487,220,0 +170731959535,220,0 +170731959585,225,0 +170731959635,290,1 +170731959716,233,0 +170731959764,221,0 +170731959813,220,0 +170731959861,220,0 +170731959909,220,0 +170731959959,219,0 +170731960007,220,0 +170731960055,220,0 +170731960102,220,0 +170731960150,220,0 +170731960198,220,0 +170731960248,220,0 +170731960296,220,0 +170731960344,220,0 +170731960393,220,0 +170731960443,219,0 +170731960493,220,0 +170731960542,220,0 +170731960592,220,0 +170731960639,234,0 +170731960689,294,1 +170731960772,224,0 +170731960820,220,0 +170731960868,220,0 +170731960916,220,0 +170731960965,221,0 +170731961013,220,0 +170731961061,220,0 +170731961109,220,0 +170731961159,220,0 +170731961208,220,0 +170731961256,220,0 +170731961304,220,0 +170731961354,220,0 +170731961403,220,0 +170731961451,220,0 +170731961499,220,0 +170731961549,220,0 +170731961597,220,0 +170731961645,221,0 +170731961693,250,0 +170731961742,260,0 +170731961790,224,0 +170731961838,221,0 +170731961886,220,0 +170731961934,220,0 +170731961982,220,0 +170731962032,220,0 +170731962079,220,0 +170731962127,220,0 +170731962175,220,0 +170731962225,220,0 +170731962273,220,0 +170731962321,220,0 +170731962369,220,0 +170731962417,220,0 +170731962466,220,0 +170731962516,220,0 +170731962564,220,0 +170731962612,220,0 +170731962661,221,0 +170731962709,222,0 +170731962757,291,1 +170731962841,232,0 +170731962891,221,0 +170731962939,220,0 +170731962987,220,0 +170731963036,220,0 +170731963086,220,0 +170731963134,220,0 +170731963182,220,0 +170731963230,220,0 +170731963279,220,0 +170731963327,220,0 +170731963375,220,0 +170731963425,220,0 +170731963474,220,0 +170731963522,220,0 +170731963572,220,0 +170731963621,220,0 +170731963669,220,0 +170731963717,221,0 +170731963767,224,0 +170731963815,302,1 +170731963905,231,0 +170731963955,221,0 +170731964004,220,0 +170731964052,220,0 +170731964102,220,0 +170731964150,220,0 +170731964198,220,0 +170731964245,220,0 +170731964293,221,0 +170731964341,221,0 +170731964389,220,0 +170731964437,220,0 +170731964487,220,0 +170731964536,220,0 +170731964586,220,0 +170731964634,220,0 +170731964682,220,0 +170731964731,221,0 +170731964781,221,0 +170731964830,225,0 +170731964880,304,1 +170731964968,227,0 +170731965017,221,0 +170731965067,220,0 +170731965114,220,0 +170731965162,220,0 +170731965210,220,0 +170731965260,220,0 +170731965308,220,0 +170731965356,220,0 +170731965405,220,0 +170731965455,220,0 +170731965503,221,0 +170731965551,220,0 +170731965600,220,0 +170731965648,220,0 +170731965696,221,0 +170731965744,220,0 +170731965792,220,0 +170731965840,221,0 +170731965889,264,0 +170731965937,280,1 +170731966020,229,0 +170731966070,221,0 +170731966118,220,0 +170731966166,220,0 +170731966215,220,0 +170731966263,220,0 +170731966311,220,0 +170731966361,221,0 +170731966409,220,0 +170731966458,220,0 +170731966508,221,0 +170731966556,221,0 +170731966604,221,0 +170731966653,220,0 +170731966701,220,0 +170731966751,220,0 +170731966799,220,0 +170731966847,221,0 +170731966895,221,0 +170731966943,259,0 +170731966991,293,1 +170731967081,222,0 +170731967129,221,0 +170731967178,221,0 +170731967226,220,0 +170731967274,220,0 +170731967324,220,0 +170731967372,220,0 +170731967419,221,0 +170731967469,220,0 +170731967519,221,0 +170731967568,220,0 +170731967617,220,0 +170731967665,220,0 +170731967713,220,0 +170731967761,220,0 +170731967809,220,0 +170731967857,220,0 +170731967907,221,0 +170731967955,222,0 +170731968002,287,1 +170731968092,229,0 +170731968142,221,0 +170731968190,220,0 +170731968238,220,0 +170731968287,220,0 +170731968335,220,0 +170731968383,220,0 +170731968431,220,0 +170731968478,220,0 +170731968526,220,0 +170731968574,220,0 +170731968622,221,0 +170731968670,221,0 +170731968718,220,0 +170731968766,221,0 +170731968814,220,0 +170731968862,220,0 +170731968910,220,0 +170731968957,220,0 +170731969005,222,0 +170731969053,283,1 +170731969141,231,0 +170731969189,221,0 +170731969237,220,0 +170731969286,220,0 +170731969334,220,0 +170731969382,220,0 +170731969430,220,0 +170731969479,220,0 +170731969527,220,0 +170731969576,220,0 +170731969624,220,0 +170731969674,220,0 +170731969722,220,0 +170731969771,220,0 +170731969819,220,0 +170731969867,221,0 +170731969915,220,0 +170731969963,221,0 +170731970011,221,0 +170731970060,222,0 +170731970108,288,1 +170731970192,236,0 +170731970242,220,0 +170731970291,220,0 +170731970339,220,0 +170731970387,220,0 +170731970435,220,0 +170731970485,221,0 +170731970534,220,0 +170731970582,220,0 +170731970630,221,0 +170731970680,220,0 +170731970729,220,0 +170731970777,221,0 +170731970827,220,0 +170731970875,221,0 +170731970923,220,0 +170731970972,220,0 +170731971020,220,0 +170731971068,221,0 +170731971116,223,0 +170731971164,293,1 +170731971254,238,0 +170731971303,221,0 +170731971351,220,0 +170731971399,220,0 +170731971447,220,0 +170731971496,220,0 +170731971544,220,0 +170731971592,220,0 +170731971640,220,0 +170731971688,220,0 +170731971736,220,0 +170731971784,220,0 +170731971832,220,0 +170731971881,220,0 +170731971929,220,0 +170731971977,220,0 +170731972025,221,0 +170731972073,220,0 +170731972121,221,0 +170731972168,225,0 +170731972218,301,1 +170731972306,232,0 +170731972354,221,0 +170731972402,220,0 +170731972450,220,0 +170731972498,220,0 +170731972546,220,0 +170731972595,220,0 +170731972643,220,0 +170731972691,220,0 +170731972739,220,0 +170731972787,220,0 +170731972835,220,0 +170731972883,220,0 +170731972931,220,0 +170731972979,220,0 +170731973026,220,0 +170731973074,221,0 +170731973122,220,0 +170731973170,221,0 +170731973218,224,0 +170731973266,286,1 +170731973352,234,0 +170731973400,220,0 +170731973448,220,0 +170731973495,220,0 +170731973543,220,0 +170731973591,220,0 +170731973639,220,0 +170731973687,220,0 +170731973735,220,0 +170731973783,220,0 +170731973831,220,0 +170731973879,220,0 +170731973926,220,0 +170731973974,221,0 +170731974024,220,0 +170731974072,220,0 +170731974120,220,0 +170731974168,220,0 +170731974215,221,0 +170731974263,222,0 +170731974311,301,1 +170731974406,240,0 +170731974454,220,0 +170731974502,220,0 +170731974550,221,0 +170731974598,220,0 +170731974646,220,0 +170731974695,220,0 +170731974743,221,0 +170731974791,220,0 +170731974839,220,0 +170731974887,220,0 +170731974935,220,0 +170731974984,221,0 +170731975034,220,0 +170731975082,220,0 +170731975130,221,0 +170731975178,221,0 +170731975227,221,0 +170731975275,221,0 +170731975323,223,0 +170731975371,298,1 +170731975458,230,0 +170731975506,220,0 +170731975555,220,0 +170731975605,219,0 +170731975653,220,0 +170731975702,219,0 +170731975752,220,0 +170731975800,219,0 +170731975849,220,0 +170731975897,220,0 +170731975947,219,0 +170731975995,220,0 +170731976044,220,0 +170731976094,219,0 +170731976143,220,0 +170731976191,220,0 +170731976239,220,0 +170731976287,220,0 +170731976337,221,0 +170731976385,269,0 +170731976434,294,1 +170731976517,224,0 +170731976566,220,0 +170731976614,220,0 +170731976663,220,0 +170731976711,220,0 +170731976761,220,0 +170731976809,220,0 +170731976858,220,0 +170731976906,220,0 +170731976956,220,0 +170731977004,220,0 +170731977052,220,0 +170731977100,220,0 +170731977148,220,0 +170731977196,220,0 +170731977245,220,0 +170731977293,220,0 +170731977343,220,0 +170731977391,221,0 +170731977440,263,0 +170731977488,289,1 +170731977575,223,0 +170731977623,220,0 +170731977673,220,0 +170731977721,220,0 +170731977769,220,0 +170731977816,220,0 +170731977864,220,0 +170731977912,220,0 +170731977960,220,0 +170731978010,220,0 +170731978058,220,0 +170731978106,220,0 +170731978154,220,0 +170731978202,220,0 +170731978250,220,0 +170731978297,220,0 +170731978345,220,0 +170731978393,220,0 +170731978441,221,0 +170731978489,295,1 +170731978570,257,0 +170731978618,223,0 +170731978666,220,0 +170731978714,220,0 +170731978762,220,0 +170731978810,220,0 +170731978858,220,0 +170731978906,220,0 +170731978953,220,0 +170731979001,220,0 +170731979049,220,0 +170731979097,220,0 +170731979145,220,0 +170731979193,220,0 +170731979241,220,0 +170731979289,220,0 +170731979337,220,0 +170731979386,220,0 +170731979434,220,0 +170731979482,221,0 +170731979530,246,0 +170731979579,298,1 +170731979664,224,0 +170731979712,220,0 +170731979760,220,0 +170731979808,220,0 +170731979857,220,0 +170731979905,220,0 +170731979953,221,0 +170731980001,220,0 +170731980051,220,0 +170731980100,221,0 +170731980148,221,0 +170731980196,221,0 +170731980246,220,0 +170731980295,220,0 +170731980343,220,0 +170731980393,221,0 +170731980441,220,0 +170731980489,220,0 +170731980538,221,0 +170731980586,229,0 +170731980635,309,1 +170731980722,225,0 +170731980772,220,0 +170731980820,220,0 +170731980867,220,0 +170731980915,221,0 +170731980963,220,0 +170731981011,221,0 +170731981061,221,0 +170731981109,220,0 +170731981157,220,0 +170731981205,220,0 +170731981253,220,0 +170731981302,220,0 +170731981350,220,0 +170731981398,220,0 +170731981446,221,0 +170731981494,221,0 +170731981544,221,0 +170731981592,221,0 +170731981640,239,0 +170731981687,279,1 +170731981779,225,0 +170731981827,220,0 +170731981877,221,0 +170731981925,220,0 +170731981974,220,0 +170731982022,220,0 +170731982070,221,0 +170731982120,221,0 +170731982168,220,0 +170731982216,221,0 +170731982265,221,0 +170731982313,221,0 +170731982361,221,0 +170731982411,220,0 +170731982459,221,0 +170731982507,221,0 +170731982555,221,0 +170731982602,221,0 +170731982650,222,0 +170731982700,256,0 +170731982748,281,1 +170731982839,221,0 +170731982887,221,0 +170731982935,221,0 +170731982983,220,0 +170731983033,220,0 +170731983081,221,0 +170731983130,221,0 +170731983180,221,0 +170731983228,220,0 +170731983277,221,0 +170731983325,221,0 +170731983373,221,0 +170731983421,221,0 +170731983471,221,0 +170731983519,221,0 +170731983567,220,0 +170731983615,221,0 +170731983663,221,0 +170731983712,222,0 +170731983760,291,1 +170731983844,237,0 +170731983893,221,0 +170731983941,221,0 +170731983991,221,0 +170731984039,221,0 +170731984087,220,0 +170731984135,221,0 +170731984184,220,0 +170731984232,220,0 +170731984282,221,0 +170731984331,221,0 +170731984379,221,0 +170731984429,220,0 +170731984478,221,0 +170731984526,221,0 +170731984574,220,0 +170731984624,221,0 +170731984672,221,0 +170731984721,221,0 +170731984771,225,0 +170731984820,289,1 +170731984906,236,0 +170731984954,221,0 +170731985002,221,0 +170731985050,221,0 +170731985098,221,0 +170731985147,221,0 +170731985195,221,0 +170731985245,220,0 +170731985293,221,0 +170731985341,221,0 +170731985388,221,0 +170731985436,221,0 +170731985484,222,0 +170731985534,221,0 +170731985582,220,0 +170731985630,221,0 +170731985679,221,0 +170731985727,221,0 +170731985777,221,0 +170731985825,226,0 +170731985873,298,1 +170731985961,227,0 +170731986009,221,0 +170731986059,221,0 +170731986107,221,0 +170731986156,221,0 +170731986204,220,0 +170731986252,220,0 +170731986301,221,0 +170731986351,221,0 +170731986399,221,0 +170731986448,221,0 +170731986496,221,0 +170731986544,221,0 +170731986592,220,0 +170731986642,221,0 +170731986690,221,0 +170731986738,221,0 +170731986785,221,0 +170731986833,221,0 +170731986881,237,0 +170731986929,301,1 +170731987022,224,0 +170731987070,220,0 +170731987118,220,0 +170731987166,220,0 +170731987215,220,0 +170731987265,220,0 +170731987313,220,0 +170731987361,220,0 +170731987409,220,0 +170731987456,220,0 +170731987504,219,0 +170731987552,220,0 +170731987600,220,0 +170731987648,220,0 +170731987696,220,0 +170731987744,220,0 +170731987792,220,0 +170731987840,220,0 +170731987888,220,0 +170731987936,240,0 +170731987986,283,1 +170731988074,223,0 +170731988122,220,0 +170731988170,220,0 +170731988220,220,0 +170731988268,220,0 +170731988316,220,0 +170731988365,220,0 +170731988413,220,0 +170731988463,220,0 +170731988512,220,0 +170731988560,220,0 +170731988608,220,0 +170731988656,220,0 +170731988705,220,0 +170731988753,220,0 +170731988801,220,0 +170731988851,220,0 +170731988899,220,0 +170731988947,221,0 +170731988996,294,1 +170731989081,234,0 +170731989129,221,0 +170731989178,220,0 +170731989228,220,0 +170731989276,220,0 +170731989324,219,0 +170731989373,220,0 +170731989423,220,0 +170731989471,220,0 +170731989520,220,0 +170731989570,220,0 +170731989618,220,0 +170731989667,220,0 +170731989715,221,0 +170731989763,220,0 +170731989812,220,0 +170731989860,220,0 +170731989908,221,0 +170731989956,220,0 +170731990004,221,0 +170731990052,273,1 +170731990140,233,0 +170731990188,220,0 +170731990236,220,0 +170731990284,220,0 +170731990332,220,0 +170731990380,220,0 +170731990428,220,0 +170731990476,220,0 +170731990524,221,0 +170731990571,221,0 +170731990619,220,0 +170731990667,220,0 +170731990715,220,0 +170731990763,220,0 +170731990811,220,0 +170731990859,220,0 +170731990906,220,0 +170731990954,221,0 +170731991004,220,0 +170731991052,221,0 +170731991099,278,1 +170731991186,229,0 +170731991234,221,0 +170731991282,220,0 +170731991330,220,0 +170731991378,220,0 +170731991426,219,0 +170731991474,220,0 +170731991522,221,0 +170731991570,219,0 +170731991617,220,0 +170731991667,219,0 +170731991715,220,0 +170731991763,220,0 +170731991811,220,0 +170731991858,220,0 +170731991906,220,0 +170731991954,220,0 +170731992002,220,0 +170731992050,220,0 +170731992098,221,0 +170731992147,280,1 +170731992237,236,0 +170731992284,220,0 +170731992332,220,0 +170731992382,219,0 +170731992430,220,0 +170731992478,220,0 +170731992526,219,0 +170731992573,220,0 +170731992621,220,0 +170731992669,220,0 +170731992719,220,0 +170731992767,219,0 +170731992814,220,0 +170731992862,220,0 +170731992910,220,0 +170731992958,220,0 +170731993006,220,0 +170731993054,220,0 +170731993102,220,0 +170731993150,222,0 +170731993198,266,0 +170731993245,285,1 +170731993338,220,0 +170731993386,220,0 +170731993434,220,0 +170731993482,219,0 +170731993530,220,0 +170731993578,220,0 +170731993626,220,0 +170731993674,220,0 +170731993721,219,0 +170731993769,220,0 +170731993819,220,0 +170731993866,220,0 +170731993914,219,0 +170731993962,220,0 +170731994010,220,0 +170731994058,219,0 +170731994106,220,0 +170731994156,219,0 +170731994203,221,0 +170731994251,285,1 +170731994347,232,0 +170731994395,220,0 +170731994443,220,0 +170731994491,220,0 +170731994539,219,0 +170731994587,220,0 +170731994635,220,0 +170731994684,219,0 +170731994732,219,0 +170731994780,219,0 +170731994828,220,0 +170731994877,220,0 +170731994925,219,0 +170731994973,220,0 +170731995021,220,0 +170731995069,220,0 +170731995117,220,0 +170731995164,220,0 +170731995212,220,0 +170731995260,223,0 +170731995308,286,1 +170731995394,236,0 +170731995442,220,0 +170731995489,220,0 +170731995537,220,0 +170731995587,219,0 +170731995635,219,0 +170731995683,220,0 +170731995730,220,0 +170731995778,220,0 +170731995826,220,0 +170731995874,219,0 +170731995923,219,0 +170731995971,220,0 +170731996019,220,0 +170731996067,220,0 +170731996115,219,0 +170731996163,220,0 +170731996211,220,0 +170731996259,220,0 +170731996306,220,0 +170731996354,298,1 +170731996438,228,0 +170731996486,220,0 +170731996534,220,0 +170731996583,220,0 +170731996631,220,0 +170731996679,220,0 +170731996727,220,0 +170731996775,219,0 +170731996823,220,0 +170731996871,220,0 +170731996919,220,0 +170731996966,220,0 +170731997014,219,0 +170731997062,219,0 +170731997110,219,0 +170731997158,220,0 +170731997206,220,0 +170731997255,219,0 +170731997303,220,0 +170731997351,221,0 +170731997399,299,1 +170731997483,234,0 +170731997533,220,0 +170731997581,220,0 +170731997630,219,0 +170731997678,219,0 +170731997727,219,0 +170731997775,220,0 +170731997825,220,0 +170731997873,220,0 +170731997921,219,0 +170731997970,220,0 +170731998018,219,0 +170731998066,220,0 +170731998114,220,0 +170731998162,220,0 +170731998210,219,0 +170731998260,220,0 +170731998308,219,0 +170731998357,220,0 +170731998405,221,0 +170731998454,287,1 +170731998541,239,0 +170731998589,220,0 +170731998637,220,0 +170731998685,220,0 +170731998733,219,0 +170731998781,220,0 +170731998829,220,0 +170731998877,219,0 +170731998925,220,0 +170731998973,220,0 +170731999021,220,0 +170731999069,220,0 +170731999117,219,0 +170731999165,220,0 +170731999213,220,0 +170731999261,220,0 +170731999308,220,0 +170731999358,219,0 +170731999408,220,0 +170731999455,221,0 +170731999503,291,1 +170731999592,238,0 +170731999642,220,0 +170731999690,220,0 +170731999738,220,0 +170731999786,220,0 +170731999835,220,0 +170731999885,220,0 +170731999933,220,0 +170731999981,220,0 +170732000031,220,0 +170732000080,220,0 +170732000130,219,0 +170732000177,220,0 +170732000225,220,0 +170732000275,220,0 +170732000323,220,0 +170732000371,220,0 +170732000419,220,0 +170732000466,220,0 +170732000514,222,0 +170732000564,298,1 +170732000650,234,0 +170732000698,221,0 +170732000746,220,0 +170732000795,219,0 +170732000845,220,0 +170732000893,220,0 +170732000940,220,0 +170732000990,220,0 +170732001038,219,0 +170732001086,220,0 +170732001134,219,0 +170732001183,220,0 +170732001231,219,0 +170732001279,220,0 +170732001329,220,0 +170732001377,220,0 +170732001426,220,0 +170732001476,220,0 +170732001524,220,0 +170732001573,274,1 +170732001659,265,0 +170732001707,223,0 +170732001756,220,0 +170732001806,220,0 +170732001856,220,0 +170732001903,220,0 +170732001951,220,0 +170732001999,220,0 +170732002049,220,0 +170732002098,220,0 +170732002146,219,0 +170732002196,220,0 +170732002245,220,0 +170732002294,220,0 +170732002342,220,0 +170732002389,220,0 +170732002437,220,0 +170732002485,219,0 +170732002533,220,0 +170732002581,220,0 +170732002629,235,0 +170732002677,307,1 +170732002756,229,0 +170732002804,220,0 +170732002852,220,0 +170732002900,219,0 +170732002948,219,0 +170732002996,220,0 +170732003044,220,0 +170732003092,220,0 +170732003140,219,0 +170732003188,219,0 +170732003235,220,0 +170732003283,219,0 +170732003331,220,0 +170732003379,220,0 +170732003427,220,0 +170732003475,220,0 +170732003523,220,0 +170732003571,219,0 +170732003619,220,0 +170732003666,224,0 +170732003714,294,1 +170732003800,233,0 +170732003848,220,0 +170732003896,220,0 +170732003944,220,0 +170732003992,219,0 +170732004040,220,0 +170732004088,220,0 +170732004137,220,0 +170732004185,220,0 +170732004233,220,0 +170732004281,220,0 +170732004329,220,0 +170732004378,220,0 +170732004428,220,0 +170732004476,220,0 +170732004524,220,0 +170732004572,219,0 +170732004620,220,0 +170732004669,220,0 +170732004717,234,0 +170732004767,305,1 +170732004859,222,0 +170732004907,220,0 +170732004955,220,0 +170732005003,220,0 +170732005051,220,0 +170732005099,219,0 +170732005148,220,0 +170732005196,220,0 +170732005245,221,0 +170732005293,220,0 +170732005343,220,0 +170732005392,220,0 +170732005442,220,0 +170732005490,220,0 +170732005538,220,0 +170732005586,220,0 +170732005635,220,0 +170732005683,221,0 +170732005731,221,0 +170732005781,266,0 +170732005829,283,1 +170732005913,222,0 +170732005963,220,0 +170732006011,220,0 +170732006060,220,0 +170732006108,219,0 +170732006158,219,0 +170732006207,220,0 +170732006255,219,0 +170732006305,219,0 +170732006353,219,0 +170732006402,219,0 +170732006450,219,0 +170732006499,219,0 +170732006547,220,0 +170732006597,220,0 +170732006645,220,0 +170732006694,220,0 +170732006744,220,0 +170732006792,221,0 +170732006841,275,1 +170732006928,235,0 +170732006976,220,0 +170732007024,219,0 +170732007072,219,0 +170732007120,220,0 +170732007168,219,0 +170732007218,219,0 +170732007265,219,0 +170732007313,219,0 +170732007361,219,0 +170732007409,219,0 +170732007459,219,0 +170732007507,219,0 +170732007555,220,0 +170732007603,220,0 +170732007652,219,0 +170732007702,219,0 +170732007750,219,0 +170732007797,220,0 +170732007845,222,0 +170732007895,299,1 +170732007979,236,0 +170732008028,220,0 +170732008076,220,0 +170732008124,219,0 +170732008172,220,0 +170732008220,219,0 +170732008268,219,0 +170732008315,220,0 +170732008363,219,0 +170732008411,219,0 +170732008459,219,0 +170732008507,220,0 +170732008555,220,0 +170732008604,220,0 +170732008654,219,0 +170732008702,220,0 +170732008749,219,0 +170732008797,220,0 +170732008847,220,0 +170732008895,221,0 +170732008943,265,0 +170732008992,277,1 +170732009087,220,0 +170732009135,219,0 +170732009183,219,0 +170732009231,220,0 +170732009279,220,0 +170732009328,220,0 +170732009377,220,0 +170732009425,220,0 +170732009473,219,0 +170732009521,220,0 +170732009569,219,0 +170732009617,220,0 +170732009665,219,0 +170732009714,220,0 +170732009762,219,0 +170732009810,220,0 +170732009858,219,0 +170732009906,220,0 +170732009954,223,0 +170732010002,294,1 +170732010088,234,0 +170732010136,220,0 +170732010186,220,0 +170732010234,219,0 +170732010283,220,0 +170732010333,219,0 +170732010381,220,0 +170732010430,220,0 +170732010479,220,0 +170732010527,220,0 +170732010575,219,0 +170732010625,220,0 +170732010674,219,0 +170732010722,219,0 +170732010770,219,0 +170732010820,219,0 +170732010869,220,0 +170732010917,219,0 +170732010965,220,0 +170732011015,225,0 +170732011062,311,0 +170732011112,266,0 +170732011162,222,0 +170732011209,220,0 +170732011259,219,0 +170732011307,220,0 +170732011356,220,0 +170732011404,219,0 +170732011452,219,0 +170732011500,219,0 +170732011548,219,0 +170732011596,219,0 +170732011644,219,0 +170732011692,219,0 +170732011741,220,0 +170732011791,220,0 +170732011839,219,0 +170732011886,219,0 +170732011934,219,0 +170732011984,219,0 +170732012032,221,0 +170732012081,293,1 +170732012159,274,1 +170732012243,220,0 +170732012291,219,0 +170732012339,220,0 +170732012387,220,0 +170732012435,219,0 +170732012483,220,0 +170732012530,220,0 +170732012578,220,0 +170732012626,220,0 +170732012676,219,0 +170732012724,220,0 +170732012772,220,0 +170732012821,219,0 +170732012869,220,0 +170732012917,220,0 +170732012967,220,0 +170732013015,220,0 +170732013064,220,0 +170732013114,243,0 +170732013162,297,1 +170732013242,228,0 +170732013292,220,0 +170732013341,219,0 +170732013391,219,0 +170732013440,219,0 +170732013488,219,0 +170732013537,219,0 +170732013587,219,0 +170732013635,220,0 +170732013684,219,0 +170732013734,219,0 +170732013784,219,0 +170732013832,220,0 +170732013881,219,0 +170732013929,219,0 +170732013977,219,0 +170732014027,219,0 +170732014076,220,0 +170732014124,220,0 +170732014172,284,1 +170732014256,241,0 +170732014304,221,0 +170732014352,219,0 +170732014400,219,0 +170732014449,219,0 +170732014499,219,0 +170732014547,219,0 +170732014596,219,0 +170732014644,220,0 +170732014694,219,0 +170732014742,219,0 +170732014791,219,0 +170732014839,220,0 +170732014889,220,0 +170732014938,219,0 +170732014986,220,0 +170732015034,219,0 +170732015082,219,0 +170732015131,220,0 +170732015179,222,0 +170732015227,246,0 +170732015275,253,0 +170732015323,228,0 +170732015373,222,0 +170732015421,221,0 +170732015470,221,0 +170732015518,221,0 +170732015566,221,0 +170732015616,220,0 +170732015665,220,0 +170732015713,220,0 +170732015761,220,0 +170732015809,221,0 +170732015857,221,0 +170732015905,221,0 +170732015953,220,0 +170732016000,220,0 +170732016048,221,0 +170732016096,221,0 +170732016144,221,0 +170732016192,221,0 +170732016242,223,0 +170732016289,285,1 +170732016376,237,0 +170732016424,221,0 +170732016472,220,0 +170732016519,221,0 +170732016567,221,0 +170732016617,221,0 +170732016665,220,0 +170732016713,220,0 +170732016761,220,0 +170732016809,221,0 +170732016857,221,0 +170732016906,221,0 +170732016956,221,0 +170732017004,221,0 +170732017052,221,0 +170732017099,221,0 +170732017147,221,0 +170732017195,221,0 +170732017243,221,0 +170732017293,223,0 +170732017342,267,0 +170732017392,295,1 +170732017481,221,0 +170732017529,221,0 +170732017577,221,0 +170732017626,221,0 +170732017674,220,0 +170732017724,221,0 +170732017772,221,0 +170732017821,221,0 +170732017869,221,0 +170732017918,221,0 +170732017968,221,0 +170732018016,221,0 +170732018065,221,0 +170732018115,221,0 +170732018163,221,0 +170732018211,221,0 +170732018260,221,0 +170732018310,221,0 +170732018358,226,0 +170732018407,262,0 +170732018455,256,0 +170732018503,225,0 +170732018553,221,0 +170732018602,221,0 +170732018652,220,0 +170732018700,221,0 +170732018748,220,0 +170732018797,220,0 +170732018845,221,0 +170732018893,221,0 +170732018941,221,0 +170732018989,221,0 +170732019037,221,0 +170732019085,220,0 +170732019135,221,0 +170732019183,221,0 +170732019231,221,0 +170732019279,220,0 +170732019328,221,0 +170732019378,222,0 +170732019427,290,1 +170732019508,228,0 +170732019557,222,0 +170732019607,221,0 +170732019655,221,0 +170732019702,221,0 +170732019752,221,0 +170732019800,220,0 +170732019848,221,0 +170732019896,221,0 +170732019944,221,0 +170732019992,221,0 +170732020041,221,0 +170732020089,221,0 +170732020137,221,0 +170732020185,221,0 +170732020233,221,0 +170732020283,221,0 +170732020331,221,0 +170732020380,221,0 +170732020428,222,0 +170732020477,273,1 +170732020572,230,0 +170732020622,221,0 +170732020670,221,0 +170732020719,220,0 +170732020769,220,0 +170732020818,221,0 +170732020866,220,0 +170732020916,220,0 +170732020965,220,0 +170732021013,220,0 +170732021061,220,0 +170732021111,220,0 +170732021159,221,0 +170732021206,221,0 +170732021256,220,0 +170732021304,220,0 +170732021352,221,0 +170732021402,220,0 +170732021449,221,0 +170732021499,224,0 +170732021547,282,1 +170732021632,229,0 +170732021680,221,0 +170732021730,220,0 +170732021778,220,0 +170732021826,220,0 +170732021874,220,0 +170732021923,220,0 +170732021971,220,0 +170732022019,220,0 +170732022067,220,0 +170732022115,220,0 +170732022163,220,0 +170732022211,220,0 +170732022259,221,0 +170732022307,221,0 +170732022356,220,0 +170732022404,220,0 +170732022452,221,0 +170732022500,221,0 +170732022548,247,0 +170732022596,275,1 +170732022681,227,0 +170732022730,220,0 +170732022778,220,0 +170732022828,220,0 +170732022877,221,0 +170732022925,220,0 +170732022973,220,0 +170732023021,221,0 +170732023070,220,0 +170732023118,220,0 +170732023166,221,0 +170732023214,221,0 +170732023264,220,0 +170732023312,220,0 +170732023360,220,0 +170732023408,221,0 +170732023456,220,0 +170732023504,220,0 +170732023553,221,0 +170732023601,267,0 +170732023651,275,1 +170732023726,231,0 +170732023775,221,0 +170732023823,220,0 +170732023873,220,0 +170732023922,220,0 +170732023970,221,0 +170732024020,220,0 +170732024069,220,0 +170732024119,220,0 +170732024168,220,0 +170732024216,220,0 +170732024264,221,0 +170732024312,220,0 +170732024360,220,0 +170732024408,220,0 +170732024456,220,0 +170732024504,220,0 +170732024552,221,0 +170732024602,221,0 +170732024651,227,0 +170732024699,282,1 +170732024792,225,0 +170732024841,220,0 +170732024889,220,0 +170732024937,220,0 +170732024985,220,0 +170732025035,220,0 +170732025084,220,0 +170732025132,220,0 +170732025180,221,0 +170732025228,220,0 +170732025278,220,0 +170732025327,220,0 +170732025375,220,0 +170732025425,220,0 +170732025473,220,0 +170732025521,221,0 +170732025569,220,0 +170732025617,220,0 +170732025666,221,0 +170732025714,269,0 +170732025762,281,1 +170732025851,222,0 +170732025901,220,0 +170732025949,220,0 +170732025997,220,0 +170732026045,220,0 +170732026093,220,0 +170732026141,220,0 +170732026190,220,0 +170732026238,221,0 +170732026288,220,0 +170732026336,220,0 +170732026385,221,0 +170732026433,220,0 +170732026483,220,0 +170732026532,220,0 +170732026582,220,0 +170732026631,220,0 +170732026681,221,0 +170732026729,223,0 +170732026777,278,1 +170732026862,231,0 +170732026910,221,0 +170732026959,221,0 +170732027009,220,0 +170732027057,220,0 +170732027106,220,0 +170732027154,221,0 +170732027202,220,0 +170732027250,220,0 +170732027300,221,0 +170732027347,220,0 +170732027397,221,0 +170732027446,220,0 +170732027494,221,0 +170732027542,220,0 +170732027590,220,0 +170732027638,221,0 +170732027688,220,0 +170732027736,221,0 +170732027785,223,0 +170732027835,299,1 +170732027918,235,0 +170732027966,220,0 +170732028014,221,0 +170732028063,220,0 +170732028111,220,0 +170732028159,220,0 +170732028209,220,0 +170732028256,220,0 +170732028306,221,0 +170732028354,220,0 +170732028402,220,0 +170732028451,221,0 +170732028499,220,0 +170732028549,220,0 +170732028597,220,0 +170732028645,220,0 +170732028694,220,0 +170732028742,220,0 +170732028790,221,0 +170732028840,233,0 +170732028888,290,1 +170732028981,225,0 +170732029030,221,0 +170732029080,220,0 +170732029128,221,0 +170732029177,220,0 +170732029225,220,0 +170732029273,220,0 +170732029321,220,0 +170732029371,220,0 +170732029420,221,0 +170732029468,221,0 +170732029518,221,0 +170732029566,220,0 +170732029615,221,0 +170732029665,220,0 +170732029714,221,0 +170732029764,221,0 +170732029812,220,0 +170732029860,222,0 +170732029908,261,0 +170732029957,273,1 +170732030045,221,0 +170732030093,221,0 +170732030143,221,0 +170732030192,221,0 +170732030242,221,0 +170732030291,220,0 +170732030339,221,0 +170732030389,220,0 +170732030437,221,0 +170732030484,220,0 +170732030534,220,0 +170732030582,221,0 +170732030630,221,0 +170732030678,221,0 +170732030726,221,0 +170732030775,220,0 +170732030825,221,0 +170732030873,221,0 +170732030921,223,0 +170732030970,280,1 +170732031052,236,0 +170732031100,221,0 +170732031148,221,0 +170732031198,221,0 +170732031246,221,0 +170732031294,221,0 +170732031342,221,0 +170732031391,221,0 +170732031439,220,0 +170732031487,221,0 +170732031535,221,0 +170732031584,221,0 +170732031634,221,0 +170732031682,220,0 +170732031731,221,0 +170732031781,221,0 +170732031830,221,0 +170732031878,221,0 +170732031928,221,0 +170732031977,223,0 +170732032025,285,1 +170732032113,235,0 +170732032161,221,0 +170732032211,221,0 +170732032259,221,0 +170732032307,221,0 +170732032356,221,0 +170732032404,221,0 +170732032452,221,0 +170732032500,221,0 +170732032548,221,0 +170732032597,221,0 +170732032645,221,0 +170732032693,221,0 +170732032741,221,0 +170732032791,221,0 +170732032839,221,0 +170732032887,221,0 +170732032935,221,0 +170732032984,221,0 +170732033032,226,0 +170732033080,296,1 +170732033164,234,0 +170732033214,221,0 +170732033262,220,0 +170732033310,221,0 +170732033358,221,0 +170732033406,221,0 +170732033454,220,0 +170732033503,221,0 +170732033551,221,0 +170732033601,221,0 +170732033649,221,0 +170732033698,221,0 +170732033746,221,0 +170732033794,221,0 +170732033844,221,0 +170732033893,221,0 +170732033941,221,0 +170732033989,220,0 +170732034037,221,0 +170732034085,226,0 +170732034133,290,1 +170732034225,224,0 +170732034275,221,0 +170732034324,221,0 +170732034372,221,0 +170732034420,221,0 +170732034470,220,0 +170732034518,221,0 +170732034566,221,0 +170732034614,221,0 +170732034663,221,0 +170732034711,221,0 +170732034759,221,0 +170732034807,221,0 +170732034855,221,0 +170732034903,221,0 +170732034951,221,0 +170732034999,221,0 +170732035047,220,0 +170732035096,222,0 +170732035144,292,1 +170732035236,226,0 +170732035284,222,0 +170732035332,221,0 +170732035381,221,0 +170732035429,221,0 +170732035477,221,0 +170732035525,221,0 +170732035575,221,0 +170732035623,221,0 +170732035671,221,0 +170732035719,221,0 +170732035768,221,0 +170732035816,221,0 +170732035864,221,0 +170732035912,221,0 +170732035961,221,0 +170732036009,221,0 +170732036057,221,0 +170732036105,221,0 +170732036155,223,0 +170732036203,254,0 +170732036251,266,0 +170732036299,235,0 +170732036347,221,0 +170732036395,221,0 +170732036443,221,0 +170732036492,221,0 +170732036540,220,0 +170732036590,221,0 +170732036638,221,0 +170732036686,221,0 +170732036734,221,0 +170732036782,221,0 +170732036830,221,0 +170732036879,221,0 +170732036927,221,0 +170732036977,220,0 +170732037026,221,0 +170732037074,220,0 +170732037124,221,0 +170732037172,221,0 +170732037220,224,0 +170732037268,297,1 +170732037358,229,0 +170732037408,221,0 +170732037456,221,0 +170732037504,220,0 +170732037552,221,0 +170732037601,221,0 +170732037651,221,0 +170732037700,221,0 +170732037748,221,0 +170732037796,221,0 +170732037844,221,0 +170732037892,221,0 +170732037940,221,0 +170732037988,221,0 +170732038036,221,0 +170732038084,221,0 +170732038132,221,0 +170732038180,221,0 +170732038229,221,0 +170732038277,244,0 +170732038325,304,1 +170732038412,228,0 +170732038462,221,0 +170732038510,221,0 +170732038558,220,0 +170732038606,221,0 +170732038655,221,0 +170732038705,220,0 +170732038754,221,0 +170732038802,221,0 +170732038850,221,0 +170732038900,221,0 +170732038948,221,0 +170732038997,221,0 +170732039045,221,0 +170732039093,221,0 +170732039141,220,0 +170732039191,221,0 +170732039240,221,0 +170732039288,222,0 +170732039336,290,1 +170732039429,236,0 +170732039477,222,0 +170732039527,221,0 +170732039576,221,0 +170732039626,221,0 +170732039675,221,0 +170732039723,221,0 +170732039771,221,0 +170732039821,221,0 +170732039870,221,0 +170732039918,221,0 +170732039966,221,0 +170732040016,221,0 +170732040064,221,0 +170732040113,220,0 +170732040161,221,0 +170732040209,221,0 +170732040257,221,0 +170732040305,221,0 +170732040353,222,0 +170732040402,272,1 +170732040494,236,0 +170732040542,221,0 +170732040590,221,0 +170732040638,221,0 +170732040686,221,0 +170732040735,220,0 +170732040785,221,0 +170732040833,221,0 +170732040882,220,0 +170732040930,221,0 +170732040980,221,0 +170732041028,221,0 +170732041076,221,0 +170732041124,221,0 +170732041172,221,0 +170732041221,221,0 +170732041269,220,0 +170732041317,221,0 +170732041366,221,0 +170732041416,224,0 +170732041464,306,1 +170732041553,230,0 +170732041601,221,0 +170732041649,221,0 +170732041699,221,0 +170732041748,221,0 +170732041796,221,0 +170732041844,221,0 +170732041892,220,0 +170732041940,221,0 +170732041988,221,0 +170732042038,221,0 +170732042086,220,0 +170732042134,220,0 +170732042182,221,0 +170732042231,221,0 +170732042279,220,0 +170732042329,221,0 +170732042377,221,0 +170732042425,222,0 +170732042474,247,0 +170732042524,298,1 +170732042613,224,0 +170732042663,221,0 +170732042711,221,0 +170732042759,221,0 +170732042807,221,0 +170732042856,220,0 +170732042904,221,0 +170732042952,221,0 +170732043002,221,0 +170732043050,220,0 +170732043098,221,0 +170732043146,220,0 +170732043194,221,0 +170732043242,220,0 +170732043291,221,0 +170732043339,221,0 +170732043387,221,0 +170732043437,220,0 +170732043485,221,0 +170732043533,221,0 +170732043582,221,0 +170732043630,221,0 +170732043678,221,0 +170732043726,221,0 +170732043776,221,0 +170732043824,220,0 +170732043872,221,0 +170732043920,221,0 +170732043969,220,0 +170732044017,222,0 +170732044065,283,1 +170732044149,227,0 +170732044199,222,0 +170732044247,220,0 +170732044295,221,0 +170732044344,221,0 +170732044394,220,0 +170732044442,221,0 +170732044491,221,0 +170732044539,221,0 +170732044589,221,0 +170732044638,221,0 +170732044686,220,0 +170732044734,221,0 +170732044782,221,0 +170732044832,221,0 +170732044880,221,0 +170732044929,221,0 +170732044979,221,0 +170732045028,222,0 +170732045078,225,0 +170732045127,302,1 +170732045218,227,0 +170732045267,221,0 +170732045315,221,0 +170732045363,221,0 +170732045413,220,0 +170732045461,221,0 +170732045509,220,0 +170732045557,221,0 +170732045606,220,0 +170732045656,221,0 +170732045704,221,0 +170732045753,221,0 +170732045801,220,0 +170732045849,220,0 +170732045897,220,0 +170732045945,221,0 +170732045994,220,0 +170732046042,221,0 +170732046090,221,0 +170732046138,225,0 +170732046186,278,1 +170732046281,225,0 +170732046329,220,0 +170732046377,221,0 +170732046425,221,0 +170732046475,221,0 +170732046524,221,0 +170732046574,221,0 +170732046622,221,0 +170732046671,221,0 +170732046719,221,0 +170732046767,220,0 +170732046815,221,0 +170732046864,221,0 +170732046912,221,0 +170732046960,221,0 +170732047008,221,0 +170732047056,221,0 +170732047106,221,0 +170732047154,222,0 +170732047203,278,1 +170732047287,239,0 +170732047337,222,0 +170732047385,221,0 +170732047433,221,0 +170732047482,220,0 +170732047530,220,0 +170732047580,221,0 +170732047628,221,0 +170732047676,221,0 +170732047724,221,0 +170732047773,221,0 +170732047823,221,0 +170732047871,221,0 +170732047920,221,0 +170732047970,221,0 +170732048018,221,0 +170732048067,220,0 +170732048117,221,0 +170732048165,221,0 +170732048213,222,0 +170732048262,302,1 +170732048343,229,0 +170732048393,221,0 +170732048442,221,0 +170732048490,220,0 +170732048539,220,0 +170732048589,220,0 +170732048637,220,0 +170732048685,221,0 +170732048732,221,0 +170732048780,220,0 +170732048828,221,0 +170732048878,220,0 +170732048926,220,0 +170732048974,220,0 +170732049022,220,0 +170732049071,220,0 +170732049119,220,0 +170732049169,220,0 +170732049217,221,0 +170732049265,222,0 +170732049313,285,1 +170732049402,234,0 +170732049451,221,0 +170732049499,221,0 +170732049547,220,0 +170732049595,220,0 +170732049643,220,0 +170732049691,220,0 +170732049739,220,0 +170732049787,220,0 +170732049836,220,0 +170732049884,220,0 +170732049934,220,0 +170732049983,220,0 +170732050031,220,0 +170732050081,220,0 +170732050129,220,0 +170732050179,220,0 +170732050226,221,0 +170732050276,221,0 +170732050324,223,0 +170732050372,271,1 +170732050466,229,0 +170732050514,220,0 +170732050563,220,0 +170732050613,220,0 +170732050661,220,0 +170732050709,220,0 +170732050758,220,0 +170732050806,220,0 +170732050856,220,0 +170732050903,220,0 +170732050951,220,0 +170732051001,220,0 +170732051051,220,0 +170732051100,220,0 +170732051148,220,0 +170732051196,220,0 +170732051244,220,0 +170732051292,220,0 +170732051341,221,0 +170732051391,263,0 +170732051440,275,1 +170732051528,221,0 +170732051576,220,0 +170732051624,220,0 +170732051673,220,0 +170732051721,220,0 +170732051769,220,0 +170732051817,220,0 +170732051865,220,0 +170732051913,220,0 +170732051961,220,0 +170732052010,220,0 +170732052058,220,0 +170732052106,220,0 +170732052154,220,0 +170732052202,220,0 +170732052250,220,0 +170732052298,220,0 +170732052346,220,0 +170732052395,221,0 +170732052443,298,1 +170732052531,229,0 +170732052580,221,0 +170732052628,220,0 +170732052677,220,0 +170732052725,220,0 +170732052773,220,0 +170732052823,220,0 +170732052872,220,0 +170732052920,219,0 +170732052968,220,0 +170732053018,220,0 +170732053066,219,0 +170732053114,220,0 +170732053163,220,0 +170732053213,219,0 +170732053261,220,0 +170732053310,220,0 +170732053360,220,0 +170732053408,220,0 +170732053456,221,0 +170732053505,279,1 +170732053590,232,0 +170732053639,221,0 +170732053687,220,0 +170732053735,220,0 +170732053783,220,0 +170732053832,219,0 +170732053880,220,0 +170732053928,220,0 +170732053976,220,0 +170732054026,219,0 +170732054073,220,0 +170732054121,220,0 +170732054169,220,0 +170732054219,219,0 +170732054267,220,0 +170732054314,220,0 +170732054364,220,0 +170732054412,220,0 +170732054460,220,0 +170732054508,221,0 +170732054556,288,1 +170732054646,234,0 +170732054696,221,0 +170732054743,220,0 +170732054793,219,0 +170732054841,220,0 +170732054891,220,0 +170732054938,220,0 +170732054988,220,0 +170732055036,220,0 +170732055084,220,0 +170732055132,220,0 +170732055181,220,0 +170732055229,220,0 +170732055277,219,0 +170732055327,220,0 +170732055376,220,0 +170732055424,220,0 +170732055472,220,0 +170732055520,220,0 +170732055568,222,0 +170732055618,275,1 +170732055707,226,0 +170732055755,220,0 +170732055803,220,0 +170732055851,219,0 +170732055899,220,0 +170732055947,220,0 +170732055995,219,0 +170732056044,220,0 +170732056092,220,0 +170732056142,220,0 +170732056191,220,0 +170732056239,220,0 +170732056287,220,0 +170732056337,220,0 +170732056385,220,0 +170732056434,220,0 +170732056484,220,0 +170732056532,220,0 +170732056581,220,0 +170732056631,238,0 +170732056679,296,1 +170732056764,226,0 +170732056812,220,0 +170732056861,220,0 +170732056909,220,0 +170732056957,220,0 +170732057005,220,0 +170732057055,220,0 +170732057104,220,0 +170732057152,220,0 +170732057202,220,0 +170732057251,219,0 +170732057301,220,0 +170732057350,220,0 +170732057400,220,0 +170732057448,220,0 +170732057497,220,0 +170732057545,220,0 +170732057595,220,0 +170732057643,222,0 +170732057691,298,1 +170732057771,252,0 +170732057819,222,0 +170732057867,220,0 +170732057915,220,0 +170732057963,220,0 +170732058011,220,0 +170732058059,220,0 +170732058108,220,0 +170732058156,220,0 +170732058204,220,0 +170732058252,220,0 +170732058302,220,0 +170732058350,220,0 +170732058398,220,0 +170732058446,220,0 +170732058495,220,0 +170732058543,220,0 +170732058591,220,0 +170732058640,220,0 +170732058688,221,0 +170732058736,285,1 +170732058826,228,0 +170732058875,221,0 +170732058923,220,0 +170732058971,220,0 +170732059019,220,0 +170732059067,220,0 +170732059115,220,0 +170732059164,220,0 +170732059212,220,0 +170732059260,220,0 +170732059309,220,0 +170732059357,220,0 +170732059405,220,0 +170732059455,220,0 +170732059504,220,0 +170732059552,220,0 +170732059600,220,0 +170732059648,220,0 +170732059696,220,0 +170732059744,221,0 +170732059792,291,1 +170732059879,236,0 +170732059927,220,0 +170732059975,220,0 +170732060023,220,0 +170732060071,220,0 +170732060119,219,0 +170732060168,220,0 +170732060216,220,0 +170732060264,220,0 +170732060312,220,0 +170732060361,220,0 +170732060411,220,0 +170732060460,220,0 +170732060510,220,0 +170732060559,220,0 +170732060607,220,0 +170732060657,220,0 +170732060706,220,0 +170732060756,221,0 +170732060805,222,0 +170732060855,279,1 +170732060938,235,0 +170732060986,221,0 +170732061034,220,0 +170732061082,220,0 +170732061130,220,0 +170732061178,220,0 +170732061227,220,0 +170732061275,220,0 +170732061323,220,0 +170732061371,219,0 +170732061419,220,0 +170732061468,220,0 +170732061518,220,0 +170732061566,220,0 +170732061614,220,0 +170732061662,220,0 +170732061711,220,0 +170732061759,220,0 +170732061807,221,0 +170732061857,222,0 +170732061905,290,1 +170732061992,232,0 +170732062041,221,0 +170732062089,220,0 +170732062139,220,0 +170732062187,220,0 +170732062235,220,0 +170732062283,220,0 +170732062332,220,0 +170732062380,220,0 +170732062428,221,0 +170732062478,220,0 +170732062527,220,0 +170732062577,220,0 +170732062626,220,0 +170732062674,220,0 +170732062723,220,0 +170732062771,220,0 +170732062821,220,0 +170732062871,220,0 +170732062918,223,0 +170732062968,293,1 +170732063059,225,0 +170732063107,220,0 +170732063156,219,0 +170732063204,220,0 +170732063252,220,0 +170732063300,220,0 +170732063350,220,0 +170732063397,220,0 +170732063445,220,0 +170732063495,220,0 +170732063543,220,0 +170732063591,220,0 +170732063639,220,0 +170732063687,220,0 +170732063736,220,0 +170732063784,221,0 +170732063834,220,0 +170732063882,221,0 +170732063931,221,0 +170732063979,261,0 +170732064027,297,1 +170732064112,225,0 +170732064162,220,0 +170732064210,220,0 +170732064258,220,0 +170732064306,220,0 +170732064354,220,0 +170732064401,220,0 +170732064449,220,0 +170732064499,220,0 +170732064547,220,0 +170732064595,220,0 +170732064643,220,0 +170732064691,220,0 +170732064740,220,0 +170732064790,220,0 +170732064838,220,0 +170732064886,220,0 +170732064934,221,0 +170732064983,221,0 +170732065033,273,1 +170732065123,232,0 +170732065172,221,0 +170732065220,220,0 +170732065268,220,0 +170732065316,220,0 +170732065366,220,0 +170732065413,220,0 +170732065461,220,0 +170732065509,220,0 +170732065557,220,0 +170732065605,220,0 +170732065655,220,0 +170732065704,220,0 +170732065752,220,0 +170732065800,220,0 +170732065848,220,0 +170732065896,219,0 +170732065944,220,0 +170732065994,221,0 +170732066043,222,0 +170732066091,274,1 +170732066180,231,0 +170732066227,221,0 +170732066275,220,0 +170732066323,220,0 +170732066371,220,0 +170732066419,219,0 +170732066467,220,0 +170732066515,220,0 +170732066563,220,0 +170732066611,220,0 +170732066658,220,0 +170732066706,220,0 +170732066754,220,0 +170732066802,220,0 +170732066850,220,0 +170732066899,220,0 +170732066947,220,0 +170732066997,220,0 +170732067044,220,0 +170732067094,221,0 +170732067142,285,1 +170732067226,237,0 +170732067275,221,0 +170732067325,220,0 +170732067374,219,0 +170732067424,220,0 +170732067472,220,0 +170732067520,220,0 +170732067569,220,0 +170732067617,220,0 +170732067665,220,0 +170732067715,220,0 +170732067763,220,0 +170732067811,220,0 +170732067860,220,0 +170732067910,220,0 +170732067958,220,0 +170732068007,220,0 +170732068055,220,0 +170732068105,220,0 +170732068154,223,0 +170732068202,301,1 +170732068288,231,0 +170732068336,220,0 +170732068384,220,0 +170732068432,220,0 +170732068480,220,0 +170732068528,219,0 +170732068576,219,0 +170732068623,219,0 +170732068671,220,0 +170732068719,219,0 +170732068767,220,0 +170732068815,220,0 +170732068863,220,0 +170732068913,220,0 +170732068962,219,0 +170732069010,220,0 +170732069058,220,0 +170732069106,220,0 +170732069154,220,0 +170732069202,222,0 +170732069250,292,1 +170732069332,235,0 +170732069382,220,0 +170732069430,219,0 +170732069479,219,0 +170732069529,220,0 +170732069577,219,0 +170732069625,220,0 +170732069673,220,0 +170732069721,220,0 +170732069769,219,0 +170732069816,220,0 +170732069866,219,0 +170732069914,220,0 +170732069962,220,0 +170732070010,220,0 +170732070060,220,0 +170732070109,219,0 +170732070157,220,0 +170732070205,220,0 +170732070255,223,0 +170732070304,288,1 +170732070392,231,0 +170732070441,220,0 +170732070491,220,0 +170732070539,220,0 +170732070588,220,0 +170732070638,220,0 +170732070686,220,0 +170732070734,219,0 +170732070782,220,0 +170732070831,220,0 +170732070879,220,0 +170732070927,219,0 +170732070977,220,0 +170732071025,220,0 +170732071072,220,0 +170732071120,220,0 +170732071168,219,0 +170732071218,219,0 +170732071267,220,0 +170732071315,236,0 +170732071365,303,1 +170732071448,227,0 +170732071498,220,0 +170732071547,220,0 +170732071595,220,0 +170732071645,220,0 +170732071693,220,0 +170732071742,220,0 +170732071790,219,0 +170732071840,220,0 +170732071888,220,0 +170732071936,220,0 +170732071984,220,0 +170732072032,219,0 +170732072080,219,0 +170732072128,220,0 +170732072176,219,0 +170732072224,220,0 +170732072273,220,0 +170732072321,221,0 +170732072370,269,0 +170732072418,295,1 +170732072511,221,0 +170732072559,220,0 +170732072608,220,0 +170732072656,220,0 +170732072704,220,0 +170732072754,220,0 +170732072802,220,0 +170732072850,220,0 +170732072899,220,0 +170732072949,220,0 +170732072997,220,0 +170732073045,220,0 +170732073094,220,0 +170732073144,219,0 +170732073192,220,0 +170732073240,219,0 +170732073289,220,0 +170732073337,220,0 +170732073385,220,0 +170732073434,256,0 +170732073482,303,1 +170732073603,220,0 +170732073652,220,0 +170732073700,220,0 +170732073750,219,0 +170732073798,219,0 +170732073846,220,0 +170732073893,220,0 +170732073941,219,0 +170732073989,220,0 +170732074037,220,0 +170732074085,220,0 +170732074133,220,0 +170732074181,219,0 +170732074229,220,0 +170732074277,220,0 +170732074324,220,0 +170732074372,220,0 +170732074420,221,0 +170732074468,256,0 +170732074516,303,1 +170732074602,222,0 +170732074650,220,0 +170732074698,220,0 +170732074747,220,0 +170732074795,220,0 +170732074843,220,0 +170732074892,220,0 +170732074940,220,0 +170732074988,220,0 +170732075036,219,0 +170732075086,220,0 +170732075134,220,0 +170732075183,220,0 +170732075231,220,0 +170732075279,220,0 +170732075327,219,0 +170732075375,219,0 +170732075423,220,0 +170732075471,221,0 +170732075520,257,0 +170732075568,290,1 +170732075657,223,0 +170732075706,220,0 +170732075754,220,0 +170732075802,220,0 +170732075850,220,0 +170732075898,220,0 +170732075946,220,0 +170732075994,220,0 +170732076041,219,0 +170732076089,220,0 +170732076137,219,0 +170732076185,220,0 +170732076233,220,0 +170732076281,220,0 +170732076329,220,0 +170732076377,220,0 +170732076425,220,0 +170732076472,220,0 +170732076520,221,0 +170732076568,290,1 +170732076659,242,0 +170732076707,221,0 +170732076757,220,0 +170732076806,220,0 +170732076854,220,0 +170732076904,219,0 +170732076952,220,0 +170732077000,220,0 +170732077049,219,0 +170732077097,220,0 +170732077145,220,0 +170732077193,220,0 +170732077241,220,0 +170732077289,220,0 +170732077337,219,0 +170732077386,220,0 +170732077436,220,0 +170732077485,220,0 +170732077535,220,0 +170732077583,221,0 +170732077631,286,1 +170732077717,230,0 +170732077765,220,0 +170732077813,220,0 +170732077861,220,0 +170732077909,220,0 +170732077957,220,0 +170732078005,220,0 +170732078054,220,0 +170732078104,220,0 +170732078153,219,0 +170732078201,220,0 +170732078249,220,0 +170732078297,220,0 +170732078345,220,0 +170732078393,220,0 +170732078441,220,0 +170732078489,219,0 +170732078537,220,0 +170732078585,220,0 +170732078635,221,0 +170732078682,299,1 +170732078774,236,0 +170732078822,220,0 +170732078871,220,0 +170732078919,220,0 +170732078967,220,0 +170732079017,219,0 +170732079065,220,0 +170732079114,220,0 +170732079162,220,0 +170732079212,220,0 +170732079260,220,0 +170732079309,219,0 +170732079359,220,0 +170732079407,220,0 +170732079455,220,0 +170732079503,220,0 +170732079551,220,0 +170732079600,220,0 +170732079650,220,0 +170732079697,222,0 +170732079747,290,1 +170732079836,238,0 +170732079886,220,0 +170732079934,220,0 +170732079982,220,0 +170732080031,220,0 +170732080079,220,0 +170732080129,219,0 +170732080177,220,0 +170732080226,220,0 +170732080276,220,0 +170732080325,220,0 +170732080375,220,0 +170732080423,219,0 +170732080471,220,0 +170732080520,220,0 +170732080568,220,0 +170732080616,220,0 +170732080666,220,0 +170732080715,221,0 +170732080763,264,0 +170732080811,260,0 +170732080860,229,0 +170732080908,220,0 +170732080956,220,0 +170732081006,220,0 +170732081054,220,0 +170732081102,219,0 +170732081151,220,0 +170732081199,220,0 +170732081249,220,0 +170732081297,220,0 +170732081345,220,0 +170732081394,220,0 +170732081442,220,0 +170732081490,219,0 +170732081538,220,0 +170732081588,220,0 +170732081636,220,0 +170732081684,220,0 +170732081731,220,0 +170732081779,222,0 +170732081829,303,1 +170732081910,237,0 +170732081958,221,0 +170732082007,220,0 +170732082057,220,0 +170732082106,220,0 +170732082156,220,0 +170732082204,219,0 +170732082253,219,0 +170732082301,220,0 +170732082349,220,0 +170732082397,220,0 +170732082447,219,0 +170732082495,220,0 +170732082543,220,0 +170732082592,220,0 +170732082642,220,0 +170732082690,220,0 +170732082738,220,0 +170732082787,220,0 +170732082837,223,0 +170732082886,295,1 +170732082969,235,0 +170732083017,220,0 +170732083065,220,0 +170732083113,220,0 +170732083161,220,0 +170732083209,220,0 +170732083259,220,0 +170732083308,220,0 +170732083356,220,0 +170732083404,220,0 +170732083452,220,0 +170732083500,220,0 +170732083548,220,0 +170732083596,220,0 +170732083644,220,0 +170732083691,219,0 +170732083739,220,0 +170732083787,220,0 +170732083835,221,0 +170732083883,222,0 +170732083932,291,1 +170732084018,237,0 +170732084066,220,0 +170732084114,220,0 +170732084162,220,0 +170732084209,220,0 +170732084257,220,0 +170732084307,220,0 +170732084356,220,0 +170732084406,220,0 +170732084455,220,0 +170732084503,219,0 +170732084551,219,0 +170732084599,220,0 +170732084647,220,0 +170732084695,220,0 +170732084743,220,0 +170732084791,220,0 +170732084841,220,0 +170732084889,220,0 +170732084937,222,0 +170732084985,298,1 +170732085069,234,0 +170732085117,220,0 +170732085165,220,0 +170732085213,220,0 +170732085261,220,0 +170732085309,220,0 +170732085357,220,0 +170732085404,220,0 +170732085452,220,0 +170732085500,220,0 +170732085550,220,0 +170732085598,220,0 +170732085645,220,0 +170732085693,220,0 +170732085741,220,0 +170732085791,220,0 +170732085839,220,0 +170732085887,220,0 +170732085935,220,0 +170732085984,223,0 +170732086032,300,1 +170732086119,237,0 +170732086167,221,0 +170732086215,219,0 +170732086263,220,0 +170732086311,220,0 +170732086360,220,0 +170732086408,220,0 +170732086456,219,0 +170732086504,220,0 +170732086552,220,0 +170732086600,220,0 +170732086648,220,0 +170732086696,220,0 +170732086743,220,0 +170732086791,220,0 +170732086839,220,0 +170732086887,220,0 +170732086935,220,0 +170732086983,220,0 +170732087031,222,0 +170732087079,287,1 +170732087165,234,0 +170732087213,220,0 +170732087262,220,0 +170732087312,220,0 +170732087360,220,0 +170732087407,220,0 +170732087455,220,0 +170732087503,220,0 +170732087553,220,0 +170732087601,220,0 +170732087648,220,0 +170732087696,220,0 +170732087744,220,0 +170732087792,219,0 +170732087840,220,0 +170732087888,219,0 +170732087937,220,0 +170732087985,220,0 +170732088035,220,0 +170732088084,223,0 +170732088132,300,1 +170732088224,232,0 +170732088272,220,0 +170732088320,220,0 +170732088367,220,0 +170732088415,220,0 +170732088463,220,0 +170732088513,220,0 +170732088562,220,0 +170732088610,220,0 +170732088658,220,0 +170732088707,220,0 +170732088755,220,0 +170732088803,220,0 +170732088851,219,0 +170732088899,219,0 +170732088947,220,0 +170732088995,220,0 +170732089043,220,0 +170732089091,221,0 +170732089139,227,0 +170732089187,286,1 +170732089272,228,0 +170732089319,220,0 +170732089367,220,0 +170732089417,220,0 +170732089466,220,0 +170732089514,220,0 +170732089562,220,0 +170732089610,220,0 +170732089660,220,0 +170732089709,220,0 +170732089757,220,0 +170732089805,220,0 +170732089853,220,0 +170732089901,220,0 +170732089951,220,0 +170732089999,220,0 +170732090048,220,0 +170732090096,220,0 +170732090144,220,0 +170732090194,225,0 +170732090241,292,1 +170732090324,232,0 +170732090373,221,0 +170732090421,220,0 +170732090471,220,0 +170732090519,219,0 +170732090567,220,0 +170732090615,220,0 +170732090664,220,0 +170732090712,220,0 +170732090762,220,0 +170732090810,219,0 +170732090858,220,0 +170732090907,220,0 +170732090955,220,0 +170732091003,220,0 +170732091051,220,0 +170732091099,220,0 +170732091147,220,0 +170732091196,221,0 +170732091244,235,0 +170732091292,300,1 +170732091379,225,0 +170732091428,220,0 +170732091476,220,0 +170732091524,220,0 +170732091572,220,0 +170732091620,220,0 +170732091668,220,0 +170732091716,220,0 +170732091765,220,0 +170732091815,220,0 +170732091863,220,0 +170732091911,220,0 +170732091958,220,0 +170732092006,220,0 +170732092056,220,0 +170732092104,220,0 +170732092152,220,0 +170732092199,220,0 +170732092247,220,0 +170732092295,227,0 +170732092343,285,1 +170732092425,234,0 +170732092473,220,0 +170732092521,220,0 +170732092569,220,0 +170732092617,220,0 +170732092665,220,0 +170732092713,220,0 +170732092760,220,0 +170732092808,220,0 +170732092856,220,0 +170732092904,220,0 +170732092954,220,0 +170732093001,220,0 +170732093051,220,0 +170732093099,220,0 +170732093148,220,0 +170732093196,220,0 +170732093244,220,0 +170732093292,220,0 +170732093340,228,0 +170732093389,294,1 +170732093479,226,0 +170732093527,220,0 +170732093575,220,0 +170732093623,219,0 +170732093672,219,0 +170732093722,220,0 +170732093772,220,0 +170732093820,219,0 +170732093868,219,0 +170732093915,220,0 +170732093963,220,0 +170732094013,220,0 +170732094063,220,0 +170732094111,220,0 +170732094160,220,0 +170732094208,220,0 +170732094256,220,0 +170732094305,220,0 +170732094353,221,0 +170732094401,271,1 +170732094504,238,0 +170732094552,221,0 +170732094600,220,0 +170732094648,220,0 +170732094698,220,0 +170732094746,220,0 +170732094795,220,0 +170732094845,220,0 +170732094893,220,0 +170732094941,220,0 +170732094989,220,0 +170732095038,220,0 +170732095086,220,0 +170732095136,220,0 +170732095184,220,0 +170732095233,220,0 +170732095283,220,0 +170732095332,220,0 +170732095380,220,0 +170732095428,222,0 +170732095476,290,1 +170732095569,233,0 +170732095617,220,0 +170732095666,220,0 +170732095714,220,0 +170732095764,220,0 +170732095812,220,0 +170732095861,220,0 +170732095909,220,0 +170732095957,220,0 +170732096007,220,0 +170732096055,220,0 +170732096102,220,0 +170732096150,219,0 +170732096200,219,0 +170732096249,220,0 +170732096297,220,0 +170732096345,220,0 +170732096395,220,0 +170732096443,220,0 +170732096491,228,0 +170732096539,292,1 +170732096640,221,0 +170732096688,220,0 +170732096736,220,0 +170732096784,220,0 +170732096832,220,0 +170732096881,220,0 +170732096929,220,0 +170732096977,220,0 +170732097025,220,0 +170732097073,220,0 +170732097123,220,0 +170732097170,220,0 +170732097220,220,0 +170732097270,220,0 +170732097318,220,0 +170732097365,220,0 +170732097415,220,0 +170732097463,220,0 +170732097511,221,0 +170732097559,293,1 +170732097650,236,0 +170732097698,220,0 +170732097748,220,0 +170732097795,220,0 +170732097843,220,0 +170732097891,220,0 +170732097939,220,0 +170732097987,220,0 +170732098035,219,0 +170732098083,220,0 +170732098131,220,0 +170732098181,219,0 +170732098230,220,0 +170732098278,219,0 +170732098326,220,0 +170732098374,220,0 +170732098422,220,0 +170732098470,220,0 +170732098518,220,0 +170732098567,221,0 +170732098615,295,1 +170732098700,232,0 +170732098749,221,0 +170732098799,220,0 +170732098847,220,0 +170732098897,220,0 +170732098946,220,0 +170732098994,220,0 +170732099044,220,0 +170732099092,220,0 +170732099141,220,0 +170732099189,220,0 +170732099237,219,0 +170732099285,220,0 +170732099334,220,0 +170732099382,220,0 +170732099430,219,0 +170732099478,220,0 +170732099526,220,0 +170732099574,220,0 +170732099622,221,0 +170732099670,283,1 +170732099759,237,0 +170732099808,220,0 +170732099856,220,0 +170732099904,220,0 +170732099954,220,0 +170732100002,220,0 +170732100050,220,0 +170732100098,220,0 +170732100147,219,0 +170732100195,220,0 +170732100244,220,0 +170732100292,220,0 +170732100342,220,0 +170732100390,220,0 +170732100438,220,0 +170732100486,220,0 +170732100533,220,0 +170732100581,220,0 +170732100629,220,0 +170732100677,224,0 +170732100725,306,1 +170732100808,238,0 +170732100858,220,0 +170732100906,220,0 +170732100955,220,0 +170732101003,220,0 +170732101051,220,0 +170732101099,220,0 +170732101149,220,0 +170732101198,220,0 +170732101246,220,0 +170732101296,220,0 +170732101344,219,0 +170732101393,219,0 +170732101441,220,0 +170732101489,220,0 +170732101539,220,0 +170732101588,220,0 +170732101636,220,0 +170732101686,220,0 +170732101735,223,0 +170732101785,309,1 +170732101872,232,0 +170732101920,220,0 +170732101968,220,0 +170732102016,220,0 +170732102064,219,0 +170732102112,220,0 +170732102160,220,0 +170732102207,219,0 +170732102255,219,0 +170732102303,220,0 +170732102351,220,0 +170732102399,220,0 +170732102447,220,0 +170732102496,220,0 +170732102544,220,0 +170732102592,220,0 +170732102640,220,0 +170732102688,220,0 +170732102736,220,0 +170732102784,222,0 +170732102832,253,0 +170732102880,292,1 +170732102968,221,0 +170732103016,220,0 +170732103064,219,0 +170732103112,219,0 +170732103160,220,0 +170732103208,219,0 +170732103256,220,0 +170732103305,220,0 +170732103353,220,0 +170732103401,219,0 +170732103451,220,0 +170732103499,220,0 +170732103547,220,0 +170732103596,220,0 +170732103644,220,0 +170732103692,220,0 +170732103740,220,0 +170732103790,221,0 +170732103839,263,0 +170732103887,290,1 +170732103977,222,0 +170732104025,220,0 +170732104073,220,0 +170732104121,220,0 +170732104169,220,0 +170732104217,220,0 +170732104265,219,0 +170732104313,220,0 +170732104361,220,0 +170732104409,220,0 +170732104456,220,0 +170732104504,220,0 +170732104552,220,0 +170732104602,220,0 +170732104650,220,0 +170732104698,220,0 +170732104745,220,0 +170732104793,220,0 +170732104841,220,0 +170732104889,227,0 +170732104937,290,1 +170732105018,234,0 +170732105067,219,0 +170732105117,220,0 +170732105164,220,0 +170732105212,219,0 +170732105260,219,0 +170732105308,220,0 +170732105358,220,0 +170732105406,220,0 +170732105453,220,0 +170732105501,220,0 +170732105549,220,0 +170732105597,220,0 +170732105645,220,0 +170732105693,220,0 +170732105741,220,0 +170732105789,220,0 +170732105837,220,0 +170732105885,221,0 +170732105932,223,0 +170732105980,263,0 +170732106028,290,1 +170732106112,220,0 +170732106160,220,0 +170732106210,219,0 +170732106259,220,0 +170732106307,220,0 +170732106355,220,0 +170732106403,220,0 +170732106452,220,0 +170732106500,220,0 +170732106548,220,0 +170732106596,219,0 +170732106645,219,0 +170732106693,220,0 +170732106741,220,0 +170732106789,220,0 +170732106837,220,0 +170732106885,220,0 +170732106934,220,0 +170732106982,224,0 +170732107030,300,1 +170732107120,230,0 +170732107168,220,0 +170732107216,220,0 +170732107263,220,0 +170732107311,220,0 +170732107359,219,0 +170732107407,220,0 +170732107455,219,0 +170732107503,220,0 +170732107553,220,0 +170732107602,219,0 +170732107650,219,0 +170732107698,219,0 +170732107746,219,0 +170732107793,220,0 +170732107841,220,0 +170732107889,220,0 +170732107937,220,0 +170732107985,220,0 +170732108033,224,0 +170732108082,295,1 +170732108165,234,0 +170732108213,220,0 +170732108261,220,0 +170732108309,220,0 +170732108357,219,0 +170732108405,219,0 +170732108453,220,0 +170732108501,220,0 +170732108548,220,0 +170732108596,220,0 +170732108644,220,0 +170732108692,220,0 +170732108740,220,0 +170732108788,220,0 +170732108836,220,0 +170732108884,220,0 +170732108932,221,0 +170732108980,220,0 +170732109027,220,0 +170732109075,222,0 +170732109125,261,0 +170732109173,285,1 +170732109300,220,0 +170732109349,220,0 +170732109397,220,0 +170732109445,220,0 +170732109493,220,0 +170732109541,220,0 +170732109589,220,0 +170732109637,220,0 +170732109684,219,0 +170732109734,220,0 +170732109782,220,0 +170732109830,220,0 +170732109878,220,0 +170732109925,220,0 +170732109975,220,0 +170732110023,220,0 +170732110071,220,0 +170732110118,222,0 +170732110166,282,1 +170732110255,230,0 +170732110303,220,0 +170732110351,220,0 +170732110399,220,0 +170732110449,220,0 +170732110498,220,0 +170732110546,219,0 +170732110594,220,0 +170732110643,220,0 +170732110691,220,0 +170732110739,220,0 +170732110787,220,0 +170732110835,220,0 +170732110883,220,0 +170732110931,219,0 +170732110978,219,0 +170732111026,220,0 +170732111074,220,0 +170732111122,220,0 +170732111170,222,0 +170732111218,272,1 +170732111327,222,0 +170732111375,220,0 +170732111423,220,0 +170732111471,220,0 +170732111519,220,0 +170732111567,220,0 +170732111614,220,0 +170732111664,220,0 +170732111713,220,0 +170732111761,220,0 +170732111809,220,0 +170732111857,220,0 +170732111905,219,0 +170732111953,220,0 +170732112001,220,0 +170732112049,219,0 +170732112096,220,0 +170732112144,220,0 +170732112192,220,0 +170732112240,238,0 +170732112288,278,1 +170732112372,226,0 +170732112420,220,0 +170732112468,220,0 +170732112516,220,0 +170732112564,220,0 +170732112612,220,0 +170732112660,220,0 +170732112708,220,0 +170732112755,220,0 +170732112803,220,0 +170732112851,220,0 +170732112899,220,0 +170732112947,220,0 +170732112995,220,0 +170732113043,220,0 +170732113091,219,0 +170732113138,219,0 +170732113186,220,0 +170732113234,221,0 +170732113282,224,0 +170732113331,311,0 +170732113379,275,1 +170732113466,220,0 +170732113515,219,0 +170732113563,220,0 +170732113611,220,0 +170732113659,220,0 +170732113708,220,0 +170732113756,219,0 +170732113804,220,0 +170732113852,219,0 +170732113900,220,0 +170732113948,220,0 +170732113996,219,0 +170732114044,220,0 +170732114091,220,0 +170732114139,220,0 +170732114187,219,0 +170732114235,220,0 +170732114283,220,0 +170732114331,223,0 +170732114380,276,1 +170732114465,233,0 +170732114513,220,0 +170732114561,219,0 +170732114608,219,0 +170732114658,219,0 +170732114706,220,0 +170732114754,219,0 +170732114803,220,0 +170732114851,219,0 +170732114899,219,0 +170732114947,219,0 +170732114995,219,0 +170732115043,219,0 +170732115090,219,0 +170732115138,219,0 +170732115186,219,0 +170732115234,219,0 +170732115282,220,0 +170732115330,220,0 +170732115378,224,0 +170732115426,289,1 +170732115527,222,0 +170732115575,219,0 +170732115623,219,0 +170732115671,219,0 +170732115719,220,0 +170732115768,219,0 +170732115816,219,0 +170732115864,220,0 +170732115912,219,0 +170732115960,219,0 +170732116009,219,0 +170732116057,219,0 +170732116105,219,0 +170732116155,220,0 +170732116202,219,0 +170732116250,219,0 +170732116298,219,0 +170732116346,219,0 +170732116394,220,0 +170732116444,282,1 +170732116531,241,0 +170732116580,221,0 +170732116628,220,0 +170732116678,218,0 +170732116726,219,0 +170732116774,219,0 +170732116822,219,0 +170732116870,220,0 +170732116919,219,0 +170732116967,219,0 +170732117015,220,0 +170732117064,219,0 +170732117114,219,0 +170732117162,219,0 +170732117211,219,0 +170732117259,219,0 +170732117307,219,0 +170732117355,220,0 +170732117403,219,0 +170732117451,220,0 +170732117499,260,0 +170732117548,283,1 +170732117633,222,0 +170732117681,220,0 +170732117729,220,0 +170732117777,219,0 +170732117825,219,0 +170732117872,219,0 +170732117920,219,0 +170732117968,219,0 +170732118016,219,0 +170732118064,220,0 +170732118112,219,0 +170732118160,219,0 +170732118208,219,0 +170732118255,219,0 +170732118303,219,0 +170732118351,219,0 +170732118399,219,0 +170732118447,220,0 +170732118495,220,0 +170732118543,288,1 +170732118628,244,0 +170732118676,221,0 +170732118724,219,0 +170732118772,219,0 +170732118820,220,0 +170732118869,219,0 +170732118917,219,0 +170732118965,219,0 +170732119013,219,0 +170732119061,219,0 +170732119109,219,0 +170732119157,219,0 +170732119205,220,0 +170732119253,219,0 +170732119302,220,0 +170732119351,220,0 +170732119399,219,0 +170732119447,219,0 +170732119495,219,0 +170732119543,220,0 +170732119591,254,0 +170732119639,296,1 +170732119727,221,0 +170732119775,220,0 +170732119823,219,0 +170732119871,219,0 +170732119919,220,0 +170732119968,219,0 +170732120016,219,0 +170732120064,219,0 +170732120112,219,0 +170732120160,219,0 +170732120208,219,0 +170732120256,220,0 +170732120304,219,0 +170732120351,219,0 +170732120399,219,0 +170732120447,220,0 +170732120495,219,0 +170732120543,219,0 +170732120592,220,0 +170732120642,259,0 +170732120691,290,1 +170732120777,222,0 +170732120827,220,0 +170732120876,219,0 +170732120926,219,0 +170732120975,219,0 +170732121025,219,0 +170732121073,219,0 +170732121121,219,0 +170732121169,220,0 +170732121218,220,0 +170732121266,220,0 +170732121316,219,0 +170732121364,219,0 +170732121412,220,0 +170732121459,219,0 +170732121507,220,0 +170732121555,219,0 +170732121603,220,0 +170732121651,220,0 +170732121699,272,1 +170732121784,240,0 +170732121832,220,0 +170732121880,219,0 +170732121928,219,0 +170732121976,219,0 +170732122024,219,0 +170732122072,220,0 +170732122120,220,0 +170732122168,220,0 +170732122216,219,0 +170732122264,219,0 +170732122312,219,0 +170732122360,220,0 +170732122407,220,0 +170732122457,219,0 +170732122506,219,0 +170732122554,220,0 +170732122604,220,0 +170732122652,220,0 +170732122700,221,0 +170732122748,284,1 +170732122833,231,0 +170732122882,220,0 +170732122930,219,0 +170732122978,219,0 +170732123028,219,0 +170732123077,219,0 +170732123127,219,0 +170732123175,219,0 +170732123224,219,0 +170732123272,219,0 +170732123322,219,0 +170732123369,220,0 +170732123417,219,0 +170732123465,219,0 +170732123515,220,0 +170732123563,219,0 +170732123611,219,0 +170732123660,219,0 +170732123708,220,0 +170732123756,221,0 +170732123804,282,1 +170732123890,234,0 +170732123939,220,0 +170732123989,220,0 +170732124038,219,0 +170732124088,220,0 +170732124137,220,0 +170732124185,220,0 +170732124235,219,0 +170732124284,220,0 +170732124332,220,0 +170732124380,220,0 +170732124428,220,0 +170732124476,219,0 +170732124524,219,0 +170732124572,220,0 +170732124620,220,0 +170732124670,219,0 +170732124718,220,0 +170732124767,220,0 +170732124817,221,0 +170732124865,277,1 +170732124951,233,0 +170732125001,220,0 +170732125049,220,0 +170732125098,220,0 +170732125146,220,0 +170732125196,220,0 +170732125245,220,0 +170732125295,220,0 +170732125343,220,0 +170732125392,220,0 +170732125442,220,0 +170732125490,220,0 +170732125538,220,0 +170732125586,220,0 +170732125634,219,0 +170732125682,220,0 +170732125731,220,0 +170732125779,220,0 +170732125827,220,0 +170732125875,245,0 +170732125923,300,1 +170732126009,226,0 +170732126057,220,0 +170732126105,220,0 +170732126154,220,0 +170732126202,219,0 +170732126250,220,0 +170732126300,220,0 +170732126348,220,0 +170732126397,220,0 +170732126447,220,0 +170732126495,219,0 +170732126543,219,0 +170732126592,219,0 +170732126640,219,0 +170732126688,220,0 +170732126738,220,0 +170732126786,220,0 +170732126834,219,0 +170732126882,220,0 +170732126931,250,0 +170732126979,291,1 +170732127064,225,0 +170732127112,220,0 +170732127160,219,0 +170732127210,219,0 +170732127259,220,0 +170732127307,220,0 +170732127357,220,0 +170732127406,220,0 +170732127454,220,0 +170732127504,220,0 +170732127551,220,0 +170732127599,220,0 +170732127649,219,0 +170732127697,220,0 +170732127746,220,0 +170732127794,220,0 +170732127842,220,0 +170732127890,220,0 +170732127938,220,0 +170732127988,264,0 +170732128036,293,1 +170732128129,221,0 +170732128178,220,0 +170732128228,220,0 +170732128277,220,0 +170732128325,220,0 +170732128373,220,0 +170732128421,219,0 +170732128469,221,0 +170732128517,220,0 +170732128566,220,0 +170732128614,219,0 +170732128662,220,0 +170732128710,220,0 +170732128760,220,0 +170732128808,220,0 +170732128857,219,0 +170732128905,220,0 +170732128955,220,0 +170732129003,222,0 +170732129052,273,1 +170732129142,233,0 +170732129190,220,0 +170732129238,220,0 +170732129287,220,0 +170732129337,220,0 +170732129386,220,0 +170732129436,219,0 +170732129484,220,0 +170732129533,219,0 +170732129581,220,0 +170732129629,219,0 +170732129677,220,0 +170732129727,219,0 +170732129775,220,0 +170732129824,220,0 +170732129874,220,0 +170732129922,219,0 +170732129970,220,0 +170732130019,220,0 +170732130067,225,0 +170732130117,288,1 +170732130200,228,0 +170732130248,220,0 +170732130298,220,0 +170732130346,220,0 +170732130394,220,0 +170732130442,220,0 +170732130489,220,0 +170732130537,220,0 +170732130585,220,0 +170732130635,219,0 +170732130682,220,0 +170732130732,219,0 +170732130781,220,0 +170732130831,220,0 +170732130879,220,0 +170732130927,220,0 +170732130975,220,0 +170732131024,220,0 +170732131074,220,0 +170732131122,251,0 +170732131170,282,1 +170732131262,222,0 +170732131310,220,0 +170732131358,220,0 +170732131408,220,0 +170732131456,219,0 +170732131504,219,0 +170732131552,220,0 +170732131601,219,0 +170732131651,220,0 +170732131699,220,0 +170732131747,220,0 +170732131796,220,0 +170732131844,219,0 +170732131892,219,0 +170732131940,219,0 +170732131990,219,0 +170732132039,220,0 +170732132087,220,0 +170732132137,222,0 +170732132184,281,1 +170732132276,234,0 +170732132324,221,0 +170732132371,220,0 +170732132419,219,0 +170732132467,220,0 +170732132515,220,0 +170732132563,219,0 +170732132611,220,0 +170732132659,220,0 +170732132709,220,0 +170732132757,220,0 +170732132805,220,0 +170732132854,220,0 +170732132904,220,0 +170732132952,220,0 +170732133001,220,0 +170732133051,220,0 +170732133100,220,0 +170732133150,220,0 +170732133198,223,0 +170732133246,309,1 +170732133334,233,0 +170732133383,220,0 +170732133431,220,0 +170732133479,220,0 +170732133527,220,0 +170732133577,220,0 +170732133624,219,0 +170732133672,220,0 +170732133720,219,0 +170732133770,219,0 +170732133820,220,0 +170732133869,220,0 +170732133917,220,0 +170732133966,220,0 +170732134014,220,0 +170732134062,220,0 +170732134112,220,0 +170732134160,220,0 +170732134208,221,0 +170732134257,224,0 +170732134307,300,1 +170732134395,236,0 +170732134443,221,0 +170732134491,220,0 +170732134539,220,0 +170732134587,220,0 +170732134635,220,0 +170732134683,220,0 +170732134731,220,0 +170732134778,220,0 +170732134826,220,0 +170732134874,220,0 +170732134922,220,0 +170732134970,220,0 +170732135020,220,0 +170732135068,220,0 +170732135117,220,0 +170732135165,219,0 +170732135215,220,0 +170732135263,221,0 +170732135312,231,0 +170732135360,301,1 +170732135441,231,0 +170732135489,220,0 +170732135538,221,0 +170732135586,220,0 +170732135636,220,0 +170732135684,220,0 +170732135732,220,0 +170732135781,220,0 +170732135829,220,0 +170732135877,220,0 +170732135926,220,0 +170732135974,220,0 +170732136024,220,0 +170732136072,220,0 +170732136120,220,0 +170732136169,220,0 +170732136217,220,0 +170732136267,220,0 +170732136314,221,0 +170732136362,232,0 +170732136412,290,1 +170732136496,228,0 +170732136546,220,0 +170732136595,219,0 +170732136645,220,0 +170732136694,220,0 +170732136744,220,0 +170732136792,220,0 +170732136839,220,0 +170732136887,220,0 +170732136935,220,0 +170732136983,220,0 +170732137031,220,0 +170732137079,220,0 +170732137127,220,0 +170732137175,220,0 +170732137223,220,0 +170732137271,220,0 +170732137320,220,0 +170732137368,220,0 +170732137417,254,0 +170732137467,292,1 +170732137548,231,0 +170732137598,221,0 +170732137646,220,0 +170732137694,220,0 +170732137741,220,0 +170732137789,220,0 +170732137839,220,0 +170732137887,220,0 +170732137935,220,0 +170732137983,220,0 +170732138031,220,0 +170732138079,220,0 +170732138128,220,0 +170732138176,220,0 +170732138224,220,0 +170732138274,220,0 +170732138321,220,0 +170732138369,220,0 +170732138419,221,0 +170732138467,292,1 +170732138553,282,1 +170732138638,220,0 +170732138686,220,0 +170732138734,220,0 +170732138783,220,0 +170732138833,220,0 +170732138881,220,0 +170732138930,220,0 +170732138980,220,0 +170732139028,220,0 +170732139076,220,0 +170732139125,220,0 +170732139173,220,0 +170732139223,220,0 +170732139272,220,0 +170732139320,220,0 +170732139368,220,0 +170732139416,220,0 +170732139464,221,0 +170732139512,238,0 +170732139560,289,1 +170732139644,225,0 +170732139692,220,0 +170732139740,220,0 +170732139788,220,0 +170732139837,220,0 +170732139887,220,0 +170732139935,220,0 +170732139983,220,0 +170732140031,220,0 +170732140079,220,0 +170732140127,220,0 +170732140176,220,0 +170732140224,221,0 +170732140274,220,0 +170732140322,220,0 +170732140370,220,0 +170732140418,220,0 +170732140465,220,0 +170732140515,221,0 +170732140565,253,0 +170732140612,283,1 +170732140700,226,0 +170732140749,220,0 +170732140797,220,0 +170732140845,220,0 +170732140893,220,0 +170732140941,220,0 +170732140991,220,0 +170732141038,219,0 +170732141088,219,0 +170732141137,220,0 +170732141185,220,0 +170732141233,220,0 +170732141281,220,0 +170732141329,220,0 +170732141377,220,0 +170732141425,219,0 +170732141473,220,0 +170732141521,220,0 +170732141569,221,0 +170732141617,272,1 +170732141711,231,0 +170732141759,221,0 +170732141807,220,0 +170732141856,219,0 +170732141906,220,0 +170732141954,220,0 +170732142003,220,0 +170732142053,219,0 +170732142101,220,0 +170732142149,219,0 +170732142197,220,0 +170732142245,220,0 +170732142294,219,0 +170732142342,219,0 +170732142390,220,0 +170732142438,220,0 +170732142487,219,0 +170732142537,220,0 +170732142585,220,0 +170732142633,221,0 +170732142680,298,1 +170732142770,235,0 +170732142819,220,0 +170732142868,220,0 +170732142916,220,0 +170732142964,220,0 +170732143012,220,0 +170732143060,220,0 +170732143110,220,0 +170732143158,219,0 +170732143205,219,0 +170732143255,220,0 +170732143303,219,0 +170732143351,220,0 +170732143399,220,0 +170732143448,220,0 +170732143498,220,0 +170732143546,220,0 +170732143594,220,0 +170732143643,220,0 +170732143693,222,0 +170732143740,292,1 +170732143822,236,0 +170732143870,220,0 +170732143918,220,0 +170732143966,220,0 +170732144014,219,0 +170732144062,220,0 +170732144110,219,0 +170732144157,221,0 +170732144205,219,0 +170732144255,220,0 +170732144304,220,0 +170732144352,220,0 +170732144400,219,0 +170732144450,220,0 +170732144498,220,0 +170732144547,220,0 +170732144597,220,0 +170732144645,220,0 +170732144693,220,0 +170732144741,223,0 +170732144789,309,1 +170732144884,234,0 +170732144934,220,0 +170732144982,219,0 +170732145030,220,0 +170732145079,220,0 +170732145127,220,0 +170732145177,220,0 +170732145225,219,0 +170732145273,220,0 +170732145322,220,0 +170732145370,220,0 +170732145418,220,0 +170732145466,219,0 +170732145514,220,0 +170732145564,220,0 +170732145611,219,0 +170732145661,220,0 +170732145709,220,0 +170732145757,221,0 +170732145805,236,0 +170732145854,290,1 +170732145941,228,0 +170732145990,221,0 +170732146038,219,0 +170732146086,220,0 +170732146134,220,0 +170732146182,220,0 +170732146230,220,0 +170732146279,220,0 +170732146327,220,0 +170732146375,220,0 +170732146423,220,0 +170732146471,220,0 +170732146519,220,0 +170732146567,220,0 +170732146615,220,0 +170732146663,220,0 +170732146712,220,0 +170732146760,220,0 +170732146810,221,0 +170732146858,226,0 +170732146906,303,1 +170732146988,230,0 +170732147038,220,0 +170732147087,219,0 +170732147135,220,0 +170732147183,220,0 +170732147231,220,0 +170732147281,220,0 +170732147329,219,0 +170732147378,220,0 +170732147426,220,0 +170732147474,220,0 +170732147522,219,0 +170732147570,219,0 +170732147620,220,0 +170732147668,220,0 +170732147716,220,0 +170732147765,219,0 +170732147815,220,0 +170732147864,221,0 +170732147912,277,1 +170732147999,244,0 +170732148047,222,0 +170732148095,220,0 +170732148145,220,0 +170732148194,220,0 +170732148242,220,0 +170732148291,220,0 +170732148341,220,0 +170732148389,220,0 +170732148437,220,0 +170732148486,220,0 +170732148534,220,0 +170732148582,220,0 +170732148630,220,0 +170732148680,220,0 +170732148728,220,0 +170732148777,220,0 +170732148827,220,0 +170732148875,220,0 +170732148924,222,0 +170732148974,298,1 +170732149065,231,0 +170732149113,221,0 +170732149160,220,0 +170732149208,219,0 +170732149256,220,0 +170732149304,219,0 +170732149352,220,0 +170732149400,220,0 +170732149448,220,0 +170732149496,220,0 +170732149543,220,0 +170732149593,220,0 +170732149641,220,0 +170732149689,220,0 +170732149737,220,0 +170732149785,220,0 +170732149833,220,0 +170732149882,220,0 +170732149932,220,0 +170732149980,221,0 +170732150028,291,1 +170732150113,231,0 +170732150161,221,0 +170732150209,220,0 +170732150257,220,0 +170732150305,220,0 +170732150354,220,0 +170732150402,220,0 +170732150450,220,0 +170732150498,220,0 +170732150546,220,0 +170732150594,219,0 +170732150641,220,0 +170732150689,220,0 +170732150737,220,0 +170732150787,220,0 +170732150835,220,0 +170732150884,220,0 +170732150934,220,0 +170732150981,220,0 +170732151029,221,0 +170732151077,295,1 +170732151162,246,0 +170732151210,222,0 +170732151260,220,0 +170732151308,220,0 +170732151357,220,0 +170732151407,220,0 +170732151455,219,0 +170732151503,220,0 +170732151551,220,0 +170732151598,220,0 +170732151646,220,0 +170732151696,219,0 +170732151745,220,0 +170732151795,220,0 +170732151843,220,0 +170732151891,220,0 +170732151939,220,0 +170732151988,220,0 +170732152036,220,0 +170732152084,223,0 +170732152132,299,1 +170732152216,239,0 +170732152264,220,0 +170732152314,220,0 +170732152362,220,0 +170732152409,220,0 +170732152459,220,0 +170732152507,220,0 +170732152556,220,0 +170732152604,220,0 +170732152652,220,0 +170732152700,220,0 +170732152748,220,0 +170732152796,220,0 +170732152844,219,0 +170732152892,220,0 +170732152942,220,0 +170732152991,220,0 +170732153041,220,0 +170732153090,220,0 +170732153138,222,0 +170732153186,290,1 +170732153274,236,0 +170732153322,220,0 +170732153372,220,0 +170732153420,220,0 +170732153468,220,0 +170732153517,220,0 +170732153565,219,0 +170732153613,220,0 +170732153661,220,0 +170732153709,220,0 +170732153758,220,0 +170732153808,219,0 +170732153856,220,0 +170732153905,220,0 +170732153953,220,0 +170732154003,220,0 +170732154052,219,0 +170732154100,220,0 +170732154148,220,0 +170732154198,225,0 +170732154246,291,1 +170732154330,233,0 +170732154379,221,0 +170732154427,220,0 +170732154475,220,0 +170732154525,219,0 +170732154573,220,0 +170732154621,220,0 +170732154670,220,0 +170732154718,220,0 +170732154768,220,0 +170732154816,220,0 +170732154865,220,0 +170732154913,220,0 +170732154961,220,0 +170732155011,220,0 +170732155059,220,0 +170732155107,220,0 +170732155154,220,0 +170732155204,221,0 +170732155253,249,0 +170732155303,299,1 +170732155390,224,0 +170732155438,220,0 +170732155486,220,0 +170732155534,220,0 +170732155582,220,0 +170732155630,221,0 +170732155678,220,0 +170732155728,220,0 +170732155777,220,0 +170732155825,220,0 +170732155875,220,0 +170732155924,220,0 +170732155972,220,0 +170732156020,220,0 +170732156068,220,0 +170732156117,220,0 +170732156167,220,0 +170732156216,220,0 +170732156264,221,0 +170732156314,302,1 +170732156402,238,0 +170732156450,221,0 +170732156498,220,0 +170732156547,220,0 +170732156597,220,0 +170732156645,220,0 +170732156693,220,0 +170732156741,220,0 +170732156790,220,0 +170732156838,220,0 +170732156886,220,0 +170732156936,220,0 +170732156985,220,0 +170732157033,219,0 +170732157082,220,0 +170732157130,220,0 +170732157180,220,0 +170732157228,220,0 +170732157276,220,0 +170732157324,221,0 +170732157372,273,1 +170732157466,233,0 +170732157514,221,0 +170732157562,220,0 +170732157610,220,0 +170732157660,220,0 +170732157708,220,0 +170732157756,220,0 +170732157805,220,0 +170732157853,220,0 +170732157901,220,0 +170732157949,220,0 +170732157998,220,0 +170732158048,220,0 +170732158097,220,0 +170732158147,220,0 +170732158196,220,0 +170732158246,220,0 +170732158294,220,0 +170732158343,220,0 +170732158391,222,0 +170732158441,286,1 +170732158525,237,0 +170732158573,220,0 +170732158621,220,0 +170732158669,220,0 +170732158718,219,0 +170732158768,220,0 +170732158816,220,0 +170732158866,220,0 +170732158913,220,0 +170732158963,220,0 +170732159011,220,0 +170732159061,220,0 +170732159109,220,0 +170732159156,219,0 +170732159206,220,0 +170732159254,219,0 +170732159304,219,0 +170732159351,220,0 +170732159401,221,0 +170732159449,225,0 +170732159497,287,1 +170732159578,233,0 +170732159628,220,0 +170732159677,220,0 +170732159725,220,0 +170732159774,220,0 +170732159822,220,0 +170732159870,220,0 +170732159920,220,0 +170732159968,220,0 +170732160016,220,0 diff --git a/laser_value/0208-02.csv b/laser_value/0208-02.csv new file mode 100644 index 0000000..dcc95d7 --- /dev/null +++ b/laser_value/0208-02.csv @@ -0,0 +1,7165 @@ +timestamp,laser_value,event +170732160066,220,0 +170732160116,220,0 +170732160164,220,0 +170732160213,220,0 +170732160263,220,0 +170732160311,220,0 +170732160360,220,0 +170732160408,220,0 +170732160458,220,0 +170732160506,246,0 +170732160555,295,1 +170732160644,222,0 +170732160692,220,0 +170732160740,220,0 +170732160790,220,0 +170732160838,220,0 +170732160886,220,0 +170732160935,220,0 +170732160985,220,0 +170732161033,220,0 +170732161082,220,0 +170732161132,220,0 +170732161181,220,0 +170732161231,220,0 +170732161278,220,0 +170732161326,219,0 +170732161376,220,0 +170732161424,220,0 +170732161474,219,0 +170732161522,222,0 +170732161569,285,1 +170732161659,228,0 +170732161707,220,0 +170732161754,220,0 +170732161804,220,0 +170732161852,219,0 +170732161901,219,0 +170732161949,219,0 +170732161997,219,0 +170732162045,219,0 +170732162095,220,0 +170732162143,220,0 +170732162192,219,0 +170732162242,219,0 +170732162290,219,0 +170732162337,219,0 +170732162387,220,0 +170732162437,219,0 +170732162484,219,0 +170732162534,220,0 +170732162582,223,0 +170732162630,290,1 +170732162716,234,0 +170732162764,220,0 +170732162811,219,0 +170732162861,219,0 +170732162910,219,0 +170732162958,220,0 +170732163008,219,0 +170732163058,219,0 +170732163105,219,0 +170732163153,219,0 +170732163201,219,0 +170732163249,219,0 +170732163297,219,0 +170732163345,219,0 +170732163395,219,0 +170732163443,219,0 +170732163492,220,0 +170732163540,220,0 +170732163588,220,0 +170732163638,223,0 +170732163686,301,1 +170732163775,234,0 +170732163825,219,0 +170732163873,220,0 +170732163921,219,0 +170732163969,219,0 +170732164017,219,0 +170732164066,220,0 +170732164116,219,0 +170732164164,219,0 +170732164213,219,0 +170732164263,220,0 +170732164312,220,0 +170732164360,219,0 +170732164410,220,0 +170732164457,220,0 +170732164505,219,0 +170732164555,219,0 +170732164604,219,0 +170732164652,220,0 +170732164702,251,0 +170732164749,299,1 +170732164836,225,0 +170732164884,220,0 +170732164932,219,0 +170732164980,220,0 +170732165029,220,0 +170732165077,219,0 +170732165125,220,0 +170732165173,220,0 +170732165221,220,0 +170732165269,220,0 +170732165316,220,0 +170732165364,220,0 +170732165414,219,0 +170732165462,220,0 +170732165510,220,0 +170732165557,220,0 +170732165607,219,0 +170732165655,220,0 +170732165704,220,0 +170732165752,235,0 +170732165802,271,1 +170732165882,226,0 +170732165930,220,0 +170732165978,220,0 +170732166026,219,0 +170732166074,220,0 +170732166122,219,0 +170732166170,219,0 +170732166220,220,0 +170732166268,220,0 +170732166316,220,0 +170732166365,219,0 +170732166413,220,0 +170732166461,219,0 +170732166511,219,0 +170732166558,219,0 +170732166608,219,0 +170732166656,220,0 +170732166705,220,0 +170732166753,221,0 +170732166801,246,0 +170732166849,301,1 +170732166934,225,0 +170732166982,220,0 +170732167030,220,0 +170732167078,220,0 +170732167126,220,0 +170732167174,219,0 +170732167224,220,0 +170732167273,219,0 +170732167323,220,0 +170732167370,219,0 +170732167420,219,0 +170732167468,220,0 +170732167516,220,0 +170732167564,220,0 +170732167612,220,0 +170732167660,220,0 +170732167709,220,0 +170732167759,220,0 +170732167807,220,0 +170732167855,254,0 +170732167904,283,1 +170732167990,222,0 +170732168038,220,0 +170732168086,220,0 +170732168134,220,0 +170732168182,220,0 +170732168231,220,0 +170732168281,219,0 +170732168328,219,0 +170732168378,219,0 +170732168428,220,0 +170732168476,219,0 +170732168524,220,0 +170732168573,220,0 +170732168621,220,0 +170732168670,220,0 +170732168719,219,0 +170732168767,220,0 +170732168815,220,0 +170732168863,221,0 +170732168910,295,1 +170732168998,231,0 +170732169046,220,0 +170732169096,219,0 +170732169144,220,0 +170732169192,220,0 +170732169241,220,0 +170732169289,220,0 +170732169339,219,0 +170732169387,219,0 +170732169435,220,0 +170732169483,220,0 +170732169532,220,0 +170732169582,219,0 +170732169631,220,0 +170732169679,219,0 +170732169727,220,0 +170732169775,220,0 +170732169824,220,0 +170732169874,219,0 +170732169922,221,0 +170732169971,282,1 +170732170064,236,0 +170732170114,220,0 +170732170163,220,0 +170732170213,220,0 +170732170262,220,0 +170732170312,220,0 +170732170360,220,0 +170732170409,220,0 +170732170457,220,0 +170732170505,220,0 +170732170553,220,0 +170732170601,219,0 +170732170651,220,0 +170732170699,220,0 +170732170747,220,0 +170732170796,219,0 +170732170846,219,0 +170732170894,220,0 +170732170943,220,0 +170732170993,237,0 +170732171042,291,1 +170732171130,226,0 +170732171179,220,0 +170732171229,219,0 +170732171277,220,0 +170732171325,220,0 +170732171372,219,0 +170732171422,220,0 +170732171470,220,0 +170732171519,220,0 +170732171567,220,0 +170732171615,220,0 +170732171665,220,0 +170732171713,220,0 +170732171761,220,0 +170732171810,219,0 +170732171858,220,0 +170732171908,220,0 +170732171957,220,0 +170732172007,221,0 +170732172056,293,1 +170732172140,265,0 +170732172188,222,0 +170732172236,220,0 +170732172286,220,0 +170732172334,220,0 +170732172381,220,0 +170732172431,219,0 +170732172481,220,0 +170732172529,220,0 +170732172577,219,0 +170732172625,220,0 +170732172672,220,0 +170732172722,220,0 +170732172770,220,0 +170732172818,219,0 +170732172867,220,0 +170732172915,220,0 +170732172963,220,0 +170732173011,220,0 +170732173059,221,0 +170732173109,285,1 +170732173190,268,0 +170732173239,223,0 +170732173287,220,0 +170732173335,220,0 +170732173385,220,0 +170732173434,220,0 +170732173484,220,0 +170732173532,219,0 +170732173580,220,0 +170732173629,219,0 +170732173677,220,0 +170732173727,219,0 +170732173775,219,0 +170732173824,220,0 +170732173872,220,0 +170732173920,219,0 +170732173968,220,0 +170732174016,219,0 +170732174064,220,0 +170732174112,221,0 +170732174160,283,1 +170732174250,231,0 +170732174298,220,0 +170732174347,220,0 +170732174395,220,0 +170732174443,219,0 +170732174493,219,0 +170732174541,220,0 +170732174589,220,0 +170732174637,220,0 +170732174686,219,0 +170732174734,220,0 +170732174782,219,0 +170732174830,220,0 +170732174879,220,0 +170732174929,220,0 +170732174977,220,0 +170732175025,219,0 +170732175073,220,0 +170732175121,220,0 +170732175168,222,0 +170732175216,295,1 +170732175307,237,0 +170732175356,220,0 +170732175404,219,0 +170732175452,220,0 +170732175501,220,0 +170732175549,219,0 +170732175597,219,0 +170732175647,220,0 +170732175695,219,0 +170732175743,220,0 +170732175791,219,0 +170732175839,219,0 +170732175886,219,0 +170732175936,220,0 +170732175986,219,0 +170732176033,220,0 +170732176081,220,0 +170732176129,220,0 +170732176177,219,0 +170732176225,222,0 +170732176273,296,1 +170732176352,229,0 +170732176400,220,0 +170732176448,220,0 +170732176496,220,0 +170732176543,220,0 +170732176591,220,0 +170732176639,219,0 +170732176688,219,0 +170732176738,220,0 +170732176786,220,0 +170732176836,219,0 +170732176883,220,0 +170732176933,220,0 +170732176982,220,0 +170732177030,220,0 +170732177078,219,0 +170732177126,220,0 +170732177174,220,0 +170732177222,220,0 +170732177270,222,0 +170732177318,292,1 +170732177401,240,0 +170732177449,220,0 +170732177497,220,0 +170732177547,220,0 +170732177596,220,0 +170732177644,220,0 +170732177694,219,0 +170732177742,220,0 +170732177791,220,0 +170732177841,220,0 +170732177890,220,0 +170732177938,220,0 +170732177988,220,0 +170732178035,220,0 +170732178083,220,0 +170732178131,220,0 +170732178179,220,0 +170732178229,220,0 +170732178277,220,0 +170732178326,223,0 +170732178376,279,1 +170732178462,232,0 +170732178510,221,0 +170732178558,220,0 +170732178606,220,0 +170732178654,220,0 +170732178702,220,0 +170732178750,220,0 +170732178798,220,0 +170732178848,219,0 +170732178896,219,0 +170732178944,220,0 +170732178992,220,0 +170732179039,220,0 +170732179089,220,0 +170732179138,220,0 +170732179186,219,0 +170732179236,220,0 +170732179284,219,0 +170732179332,220,0 +170732179381,222,0 +170732179429,291,1 +170732179515,233,0 +170732179563,220,0 +170732179612,220,0 +170732179660,220,0 +170732179708,220,0 +170732179756,220,0 +170732179806,220,0 +170732179854,219,0 +170732179903,220,0 +170732179953,219,0 +170732180001,219,0 +170732180049,219,0 +170732180098,220,0 +170732180146,220,0 +170732180194,220,0 +170732180242,220,0 +170732180290,220,0 +170732180338,220,0 +170732180386,220,0 +170732180434,227,0 +170732180483,295,1 +170732180572,228,0 +170732180619,219,0 +170732180667,220,0 +170732180715,219,0 +170732180763,220,0 +170732180811,219,0 +170732180859,220,0 +170732180907,219,0 +170732180955,220,0 +170732181004,220,0 +170732181052,219,0 +170732181102,220,0 +170732181150,220,0 +170732181198,220,0 +170732181246,219,0 +170732181294,220,0 +170732181342,220,0 +170732181390,220,0 +170732181437,220,0 +170732181487,264,0 +170732181535,296,1 +170732181622,224,0 +170732181671,220,0 +170732181721,220,0 +170732181770,220,0 +170732181820,220,0 +170732181869,220,0 +170732181917,219,0 +170732181965,220,0 +170732182013,220,0 +170732182063,220,0 +170732182112,219,0 +170732182160,220,0 +170732182210,220,0 +170732182258,219,0 +170732182307,220,0 +170732182357,219,0 +170732182406,219,0 +170732182456,220,0 +170732182504,221,0 +170732182552,294,1 +170732182631,255,0 +170732182679,222,0 +170732182727,220,0 +170732182774,220,0 +170732182822,219,0 +170732182870,220,0 +170732182918,219,0 +170732182966,219,0 +170732183016,219,0 +170732183065,220,0 +170732183113,220,0 +170732183163,219,0 +170732183212,220,0 +170732183260,220,0 +170732183308,220,0 +170732183356,220,0 +170732183405,220,0 +170732183453,220,0 +170732183501,220,0 +170732183551,221,0 +170732183598,280,1 +170732183689,229,0 +170732183736,220,0 +170732183784,220,0 +170732183832,220,0 +170732183880,220,0 +170732183928,220,0 +170732183976,220,0 +170732184024,220,0 +170732184072,220,0 +170732184120,220,0 +170732184167,220,0 +170732184215,220,0 +170732184263,220,0 +170732184311,220,0 +170732184359,219,0 +170732184407,220,0 +170732184455,220,0 +170732184504,220,0 +170732184552,220,0 +170732184602,221,0 +170732184650,298,1 +170732184737,235,0 +170732184786,220,0 +170732184834,220,0 +170732184882,220,0 +170732184932,219,0 +170732184981,219,0 +170732185031,220,0 +170732185079,220,0 +170732185126,220,0 +170732185174,219,0 +170732185224,220,0 +170732185273,219,0 +170732185321,220,0 +170732185371,219,0 +170732185419,220,0 +170732185467,219,0 +170732185515,220,0 +170732185563,219,0 +170732185612,220,0 +170732185662,222,0 +170732185711,293,1 +170732185797,240,0 +170732185845,220,0 +170732185893,220,0 +170732185941,220,0 +170732185989,220,0 +170732186039,220,0 +170732186088,219,0 +170732186138,220,0 +170732186187,219,0 +170732186235,219,0 +170732186284,220,0 +170732186332,220,0 +170732186380,220,0 +170732186430,220,0 +170732186478,220,0 +170732186526,220,0 +170732186575,219,0 +170732186625,220,0 +170732186673,220,0 +170732186721,223,0 +170732186770,277,1 +170732186857,231,0 +170732186905,220,0 +170732186955,220,0 +170732187003,219,0 +170732187051,219,0 +170732187099,220,0 +170732187148,219,0 +170732187196,219,0 +170732187246,220,0 +170732187294,220,0 +170732187342,219,0 +170732187391,220,0 +170732187439,220,0 +170732187487,219,0 +170732187535,219,0 +170732187585,220,0 +170732187633,220,0 +170732187682,220,0 +170732187732,220,0 +170732187779,236,0 +170732187827,283,1 +170732187923,221,0 +170732187971,220,0 +170732188019,219,0 +170732188067,220,0 +170732188116,220,0 +170732188166,220,0 +170732188214,219,0 +170732188263,220,0 +170732188313,219,0 +170732188361,219,0 +170732188409,219,0 +170732188457,220,0 +170732188506,220,0 +170732188554,219,0 +170732188602,219,0 +170732188650,219,0 +170732188700,220,0 +170732188748,220,0 +170732188796,220,0 +170732188845,269,0 +170732188895,273,1 +170732188977,221,0 +170732189027,220,0 +170732189076,219,0 +170732189126,219,0 +170732189175,219,0 +170732189223,219,0 +170732189271,220,0 +170732189319,220,0 +170732189369,220,0 +170732189417,219,0 +170732189465,219,0 +170732189513,219,0 +170732189562,219,0 +170732189610,219,0 +170732189658,219,0 +170732189706,220,0 +170732189756,220,0 +170732189804,223,0 +170732189852,223,0 +170732189901,248,0 +170732189949,252,0 +170732189997,435,0 +170732190045,438,0 +170732190093,438,0 +170732190142,439,0 +170732190190,439,0 +170732190238,438,0 +170732190286,439,0 +170732190334,438,0 +170732190384,439,0 +170732190433,439,0 +170732190481,438,0 +170732190529,438,0 +170732190577,439,0 +170732190625,439,0 +170732190673,439,0 +170732190723,439,0 +170732190771,438,0 +170732190819,439,0 +170732190867,438,0 +170732190914,438,0 +170732190964,265,0 +170732191012,283,1 +170732191102,438,0 +170732191150,439,0 +170732191198,439,0 +170732191246,438,0 +170732191294,439,0 +170732191342,438,0 +170732191390,439,0 +170732191438,438,0 +170732191486,439,0 +170732191534,439,0 +170732191582,439,0 +170732191632,439,0 +170732191681,438,0 +170732191731,439,0 +170732191779,439,0 +170732191828,438,0 +170732191878,439,0 +170732191926,439,0 +170732191974,435,0 +170732192021,297,1 +170732192116,437,0 +170732192164,439,0 +170732192211,439,0 +170732192261,439,0 +170732192309,439,0 +170732192358,438,0 +170732192406,439,0 +170732192454,439,0 +170732192502,438,0 +170732192551,439,0 +170732192601,438,0 +170732192649,439,0 +170732192698,439,0 +170732192746,439,0 +170732192794,439,0 +170732192842,439,0 +170732192890,439,0 +170732192939,439,0 +170732192987,438,0 +170732193035,265,0 +170732193084,264,0 +170732193132,427,0 +170732193180,438,0 +170732193228,438,0 +170732193276,438,0 +170732193324,438,0 +170732193372,438,0 +170732193422,438,0 +170732193470,438,0 +170732193518,439,0 +170732193566,438,0 +170732193613,438,0 +170732193661,438,0 +170732193709,439,0 +170732193757,438,0 +170732193805,439,0 +170732193853,438,0 +170732193901,439,0 +170732193950,439,0 +170732193998,438,0 +170732194046,438,0 +170732194094,276,1 +170732194179,415,0 +170732194227,438,0 +170732194275,438,0 +170732194323,438,0 +170732194371,438,0 +170732194419,438,0 +170732194467,438,0 +170732194515,439,0 +170732194563,438,0 +170732194610,439,0 +170732194658,439,0 +170732194706,438,0 +170732194754,438,0 +170732194802,438,0 +170732194850,438,0 +170732194898,438,0 +170732194946,438,0 +170732194995,438,0 +170732195045,438,0 +170732195093,438,0 +170732195141,274,1 +170732195227,229,0 +170732195276,439,0 +170732195324,439,0 +170732195373,439,0 +170732195423,439,0 +170732195471,439,0 +170732195520,439,0 +170732195570,439,0 +170732195618,439,0 +170732195666,439,0 +170732195714,439,0 +170732195762,439,0 +170732195810,439,0 +170732195858,439,0 +170732195906,439,0 +170732195954,439,0 +170732196002,439,0 +170732196050,439,0 +170732196099,439,0 +170732196147,438,0 +170732196195,277,1 +170732196290,434,0 +170732196338,439,0 +170732196387,439,0 +170732196435,439,0 +170732196483,439,0 +170732196533,439,0 +170732196581,439,0 +170732196629,439,0 +170732196677,439,0 +170732196726,439,0 +170732196774,439,0 +170732196822,439,0 +170732196872,439,0 +170732196920,439,0 +170732196969,439,0 +170732197019,439,0 +170732197067,439,0 +170732197116,439,0 +170732197164,439,0 +170732197212,425,0 +170732197260,276,1 +170732197353,438,0 +170732197401,439,0 +170732197449,439,0 +170732197497,439,0 +170732197546,439,0 +170732197596,439,0 +170732197645,439,0 +170732197693,439,0 +170732197741,439,0 +170732197789,439,0 +170732197837,439,0 +170732197885,439,0 +170732197935,439,0 +170732197983,439,0 +170732198030,439,0 +170732198080,439,0 +170732198128,439,0 +170732198176,439,0 +170732198225,439,0 +170732198275,275,1 +170732198359,267,0 +170732198409,438,0 +170732198457,439,0 +170732198505,439,0 +170732198552,439,0 +170732198602,439,0 +170732198650,439,0 +170732198698,439,0 +170732198746,439,0 +170732198795,439,0 +170732198843,439,0 +170732198891,439,0 +170732198939,439,0 +170732198987,439,0 +170732199037,439,0 +170732199086,439,0 +170732199134,439,0 +170732199183,439,0 +170732199233,439,0 +170732199281,439,0 +170732199329,284,1 +170732199414,231,0 +170732199462,439,0 +170732199510,439,0 +170732199557,439,0 +170732199605,439,0 +170732199653,439,0 +170732199701,439,0 +170732199749,439,0 +170732199797,439,0 +170732199845,439,0 +170732199893,439,0 +170732199940,439,0 +170732199988,439,0 +170732200036,439,0 +170732200084,439,0 +170732200132,439,0 +170732200180,439,0 +170732200228,439,0 +170732200276,439,0 +170732200325,439,0 +170732200373,288,1 +170732200458,239,0 +170732200507,439,0 +170732200555,439,0 +170732200603,439,0 +170732200651,439,0 +170732200699,439,0 +170732200747,439,0 +170732200795,439,0 +170732200842,439,0 +170732200890,439,0 +170732200938,439,0 +170732200986,439,0 +170732201034,439,0 +170732201082,439,0 +170732201130,439,0 +170732201178,439,0 +170732201226,439,0 +170732201274,439,0 +170732201322,439,0 +170732201370,439,0 +170732201419,428,0 +170732201469,287,1 +170732201553,438,0 +170732201603,439,0 +170732201651,439,0 +170732201699,439,0 +170732201747,439,0 +170732201795,439,0 +170732201844,439,0 +170732201892,439,0 +170732201940,439,0 +170732201988,439,0 +170732202036,439,0 +170732202084,439,0 +170732202133,439,0 +170732202183,439,0 +170732202231,439,0 +170732202278,439,0 +170732202326,439,0 +170732202374,439,0 +170732202422,439,0 +170732202470,279,1 +170732202556,243,0 +170732202605,439,0 +170732202653,439,0 +170732202701,439,0 +170732202749,439,0 +170732202797,439,0 +170732202845,439,0 +170732202893,439,0 +170732202941,439,0 +170732202989,439,0 +170732203037,439,0 +170732203085,439,0 +170732203133,439,0 +170732203180,439,0 +170732203230,439,0 +170732203278,439,0 +170732203325,439,0 +170732203375,439,0 +170732203423,439,0 +170732203471,439,0 +170732203518,276,1 +170732203604,236,0 +170732203652,439,0 +170732203700,439,0 +170732203748,439,0 +170732203796,439,0 +170732203844,439,0 +170732203892,439,0 +170732203940,439,0 +170732203989,439,0 +170732204039,439,0 +170732204088,439,0 +170732204136,439,0 +170732204186,439,0 +170732204233,439,0 +170732204281,439,0 +170732204331,439,0 +170732204380,439,0 +170732204428,439,0 +170732204478,439,0 +170732204526,439,0 +170732204574,271,1 +170732204654,239,0 +170732204703,439,0 +170732204751,439,0 +170732204799,439,0 +170732204847,439,0 +170732204895,439,0 +170732204942,439,0 +170732204992,439,0 +170732205040,439,0 +170732205088,439,0 +170732205136,439,0 +170732205183,439,0 +170732205231,439,0 +170732205279,439,0 +170732205329,439,0 +170732205377,439,0 +170732205425,439,0 +170732205472,439,0 +170732205520,439,0 +170732205570,439,0 +170732205618,277,1 +170732205704,233,0 +170732205754,439,0 +170732205803,439,0 +170732205853,439,0 +170732205901,439,0 +170732205949,439,0 +170732205997,439,0 +170732206045,439,0 +170732206092,439,0 +170732206142,439,0 +170732206190,439,0 +170732206240,439,0 +170732206287,439,0 +170732206335,439,0 +170732206383,439,0 +170732206431,439,0 +170732206479,439,0 +170732206527,439,0 +170732206575,439,0 +170732206623,438,0 +170732206671,301,1 +170732206757,430,0 +170732206805,439,0 +170732206853,439,0 +170732206901,439,0 +170732206949,439,0 +170732206996,439,0 +170732207044,439,0 +170732207092,439,0 +170732207140,439,0 +170732207188,439,0 +170732207236,439,0 +170732207284,439,0 +170732207333,439,0 +170732207381,439,0 +170732207429,439,0 +170732207477,439,0 +170732207525,439,0 +170732207573,439,0 +170732207621,439,0 +170732207668,439,0 +170732207716,274,1 +170732207810,272,1 +170732207899,439,0 +170732207948,439,0 +170732207996,439,0 +170732208046,439,0 +170732208096,439,0 +170732208145,439,0 +170732208193,439,0 +170732208242,439,0 +170732208292,439,0 +170732208340,439,0 +170732208389,439,0 +170732208437,439,0 +170732208487,439,0 +170732208535,439,0 +170732208583,439,0 +170732208631,439,0 +170732208679,439,0 +170732208728,439,0 +170732208778,278,1 +170732208861,413,0 +170732208910,439,0 +170732208958,439,0 +170732209006,439,0 +170732209054,439,0 +170732209104,439,0 +170732209152,439,0 +170732209201,439,0 +170732209249,439,0 +170732209297,439,0 +170732209346,439,0 +170732209394,439,0 +170732209442,439,0 +170732209490,439,0 +170732209538,439,0 +170732209586,439,0 +170732209634,439,0 +170732209681,439,0 +170732209729,439,0 +170732209777,439,0 +170732209827,271,1 +170732209909,428,0 +170732209958,439,0 +170732210008,439,0 +170732210055,439,0 +170732210103,439,0 +170732210151,439,0 +170732210199,439,0 +170732210247,439,0 +170732210295,439,0 +170732210343,439,0 +170732210393,439,0 +170732210441,439,0 +170732210489,439,0 +170732210537,439,0 +170732210584,439,0 +170732210632,439,0 +170732210680,439,0 +170732210728,439,0 +170732210778,439,0 +170732210826,439,0 +170732210875,271,1 +170732210964,433,0 +170732211012,439,0 +170732211060,439,0 +170732211108,439,0 +170732211156,439,0 +170732211205,439,0 +170732211255,439,0 +170732211304,439,0 +170732211354,439,0 +170732211403,439,0 +170732211451,439,0 +170732211499,439,0 +170732211549,439,0 +170732211598,439,0 +170732211648,439,0 +170732211696,439,0 +170732211744,439,0 +170732211792,439,0 +170732211840,439,0 +170732211888,438,0 +170732211937,276,1 +170732212023,436,0 +170732212072,439,0 +170732212122,439,0 +170732212169,439,0 +170732212219,439,0 +170732212269,439,0 +170732212316,439,0 +170732212364,439,0 +170732212414,439,0 +170732212463,439,0 +170732212511,439,0 +170732212559,439,0 +170732212609,439,0 +170732212658,439,0 +170732212706,439,0 +170732212756,439,0 +170732212804,439,0 +170732212852,439,0 +170732212900,439,0 +170732212948,256,0 +170732212997,286,1 +170732213085,439,0 +170732213134,439,0 +170732213182,439,0 +170732213230,439,0 +170732213280,439,0 +170732213327,439,0 +170732213377,439,0 +170732213425,439,0 +170732213474,439,0 +170732213524,439,0 +170732213573,439,0 +170732213621,439,0 +170732213669,439,0 +170732213717,439,0 +170732213767,439,0 +170732213816,439,0 +170732213864,439,0 +170732213912,439,0 +170732213960,439,0 +170732214008,282,1 +170732214094,232,0 +170732214143,439,0 +170732214191,439,0 +170732214239,439,0 +170732214289,439,0 +170732214337,439,0 +170732214386,439,0 +170732214434,439,0 +170732214484,439,0 +170732214532,439,0 +170732214579,439,0 +170732214629,439,0 +170732214678,439,0 +170732214726,439,0 +170732214774,439,0 +170732214822,439,0 +170732214872,439,0 +170732214921,439,0 +170732214969,439,0 +170732215019,438,0 +170732215067,271,1 +170732215160,434,0 +170732215208,439,0 +170732215257,439,0 +170732215305,439,0 +170732215353,439,0 +170732215403,439,0 +170732215451,439,0 +170732215500,439,0 +170732215550,439,0 +170732215598,439,0 +170732215646,439,0 +170732215695,439,0 +170732215743,439,0 +170732215792,439,0 +170732215840,439,0 +170732215888,439,0 +170732215938,439,0 +170732215987,439,0 +170732216035,439,0 +170732216083,438,0 +170732216131,288,1 +170732216219,436,0 +170732216267,439,0 +170732216314,439,0 +170732216362,439,0 +170732216412,439,0 +170732216460,439,0 +170732216508,439,0 +170732216555,439,0 +170732216603,439,0 +170732216651,439,0 +170732216699,439,0 +170732216749,439,0 +170732216797,439,0 +170732216846,439,0 +170732216896,439,0 +170732216943,439,0 +170732216991,439,0 +170732217039,439,0 +170732217087,439,0 +170732217135,438,0 +170732217183,292,1 +170732217265,434,0 +170732217315,439,0 +170732217364,439,0 +170732217412,439,0 +170732217462,439,0 +170732217510,439,0 +170732217557,439,0 +170732217607,439,0 +170732217655,439,0 +170732217703,439,0 +170732217751,439,0 +170732217799,439,0 +170732217847,439,0 +170732217895,439,0 +170732217944,439,0 +170732217992,439,0 +170732218040,439,0 +170732218088,439,0 +170732218137,439,0 +170732218185,439,0 +170732218233,439,0 +170732218281,439,0 +170732218329,439,0 +170732218378,439,0 +170732218426,439,0 +170732218474,439,0 +170732218522,439,0 +170732218570,439,0 +170732218619,439,0 +170732218667,439,0 +170732218717,287,1 +170732218812,230,0 +170732218860,439,0 +170732218908,439,0 +170732218958,439,0 +170732219005,439,0 +170732219055,439,0 +170732219103,439,0 +170732219153,439,0 +170732219200,439,0 +170732219250,439,0 +170732219300,439,0 +170732219347,439,0 +170732219395,439,0 +170732219445,439,0 +170732219494,439,0 +170732219542,439,0 +170732219592,439,0 +170732219641,439,0 +170732219691,439,0 +170732219739,438,0 +170732219787,292,1 +170732219872,434,0 +170732219920,439,0 +170732219968,439,0 +170732220018,439,0 +170732220066,439,0 +170732220115,439,0 +170732220163,439,0 +170732220211,439,0 +170732220261,439,0 +170732220310,439,0 +170732220358,439,0 +170732220406,439,0 +170732220455,439,0 +170732220505,439,0 +170732220554,439,0 +170732220604,439,0 +170732220652,439,0 +170732220701,439,0 +170732220751,439,0 +170732220799,438,0 +170732220847,290,1 +170732220935,436,0 +170732220984,439,0 +170732221032,439,0 +170732221080,439,0 +170732221128,439,0 +170732221176,439,0 +170732221224,439,0 +170732221274,439,0 +170732221322,439,0 +170732221370,439,0 +170732221418,439,0 +170732221466,439,0 +170732221514,439,0 +170732221562,439,0 +170732221610,439,0 +170732221659,439,0 +170732221709,439,0 +170732221757,439,0 +170732221805,439,0 +170732221854,272,1 +170732221943,267,0 +170732221991,438,0 +170732222039,439,0 +170732222087,439,0 +170732222137,439,0 +170732222185,439,0 +170732222234,439,0 +170732222284,439,0 +170732222332,439,0 +170732222380,439,0 +170732222427,439,0 +170732222475,439,0 +170732222523,439,0 +170732222571,439,0 +170732222619,439,0 +170732222667,439,0 +170732222715,439,0 +170732222763,439,0 +170732222813,439,0 +170732222861,439,0 +170732222910,312,0 +170732222958,279,1 +170732223044,438,0 +170732223093,439,0 +170732223141,439,0 +170732223191,439,0 +170732223239,439,0 +170732223287,439,0 +170732223335,439,0 +170732223382,439,0 +170732223430,439,0 +170732223480,439,0 +170732223528,439,0 +170732223577,439,0 +170732223627,439,0 +170732223676,439,0 +170732223724,439,0 +170732223774,439,0 +170732223823,439,0 +170732223873,439,0 +170732223920,439,0 +170732223970,284,1 +170732224055,231,0 +170732224103,439,0 +170732224151,439,0 +170732224199,439,0 +170732224247,439,0 +170732224296,439,0 +170732224346,439,0 +170732224394,439,0 +170732224443,439,0 +170732224491,439,0 +170732224539,439,0 +170732224589,439,0 +170732224638,439,0 +170732224686,439,0 +170732224736,439,0 +170732224785,439,0 +170732224833,439,0 +170732224881,439,0 +170732224929,439,0 +170732224977,439,0 +170732225027,279,1 +170732225118,435,0 +170732225166,439,0 +170732225214,439,0 +170732225264,439,0 +170732225313,439,0 +170732225361,439,0 +170732225411,439,0 +170732225459,439,0 +170732225508,439,0 +170732225558,439,0 +170732225606,439,0 +170732225655,439,0 +170732225703,439,0 +170732225751,439,0 +170732225799,439,0 +170732225847,439,0 +170732225896,439,0 +170732225944,439,0 +170732225994,439,0 +170732226042,438,0 +170732226089,282,1 +170732226177,437,0 +170732226225,439,0 +170732226273,439,0 +170732226321,439,0 +170732226369,439,0 +170732226417,439,0 +170732226465,439,0 +170732226513,439,0 +170732226560,439,0 +170732226608,439,0 +170732226656,439,0 +170732226706,439,0 +170732226756,439,0 +170732226803,439,0 +170732226853,439,0 +170732226903,439,0 +170732226952,439,0 +170732227000,439,0 +170732227049,439,0 +170732227097,426,0 +170732227147,296,1 +170732227232,438,0 +170732227280,439,0 +170732227330,439,0 +170732227378,439,0 +170732227427,439,0 +170732227475,439,0 +170732227523,439,0 +170732227573,439,0 +170732227620,439,0 +170732227668,439,0 +170732227716,439,0 +170732227764,439,0 +170732227812,439,0 +170732227860,439,0 +170732227908,439,0 +170732227956,439,0 +170732228005,439,0 +170732228055,439,0 +170732228103,439,0 +170732228151,280,1 +170732228234,260,0 +170732228284,439,0 +170732228333,439,0 +170732228381,439,0 +170732228429,439,0 +170732228477,439,0 +170732228527,439,0 +170732228574,439,0 +170732228622,439,0 +170732228672,439,0 +170732228720,439,0 +170732228768,439,0 +170732228816,439,0 +170732228864,439,0 +170732228913,439,0 +170732228961,439,0 +170732229009,439,0 +170732229057,439,0 +170732229105,439,0 +170732229155,439,0 +170732229203,271,1 +170732229287,246,0 +170732229335,439,0 +170732229383,439,0 +170732229433,439,0 +170732229481,439,0 +170732229529,439,0 +170732229577,439,0 +170732229625,439,0 +170732229672,439,0 +170732229722,439,0 +170732229770,439,0 +170732229818,439,0 +170732229866,439,0 +170732229914,439,0 +170732229962,439,0 +170732230010,439,0 +170732230058,439,0 +170732230106,439,0 +170732230155,439,0 +170732230205,439,0 +170732230254,280,1 +170732230338,272,1 +170732230419,439,0 +170732230467,439,0 +170732230515,439,0 +170732230563,439,0 +170732230613,439,0 +170732230661,439,0 +170732230709,439,0 +170732230756,439,0 +170732230806,439,0 +170732230854,439,0 +170732230902,439,0 +170732230950,439,0 +170732230998,439,0 +170732231046,439,0 +170732231094,439,0 +170732231142,439,0 +170732231190,439,0 +170732231239,439,0 +170732231287,438,0 +170732231337,296,1 +170732231420,435,0 +170732231468,439,0 +170732231516,439,0 +170732231564,439,0 +170732231611,439,0 +170732231659,439,0 +170732231707,439,0 +170732231755,439,0 +170732231803,439,0 +170732231851,439,0 +170732231899,439,0 +170732231947,439,0 +170732231996,439,0 +170732232044,439,0 +170732232092,439,0 +170732232140,439,0 +170732232188,439,0 +170732232236,439,0 +170732232283,439,0 +170732232331,438,0 +170732232379,288,1 +170732232470,438,0 +170732232518,439,0 +170732232567,439,0 +170732232615,439,0 +170732232665,439,0 +170732232713,439,0 +170732232761,439,0 +170732232810,439,0 +170732232858,439,0 +170732232908,439,0 +170732232956,439,0 +170732233004,439,0 +170732233052,439,0 +170732233100,439,0 +170732233149,439,0 +170732233199,439,0 +170732233248,439,0 +170732233296,439,0 +170732233344,439,0 +170732233392,433,0 +170732233442,290,1 +170732233531,438,0 +170732233579,439,0 +170732233628,439,0 +170732233678,439,0 +170732233727,439,0 +170732233777,439,0 +170732233825,439,0 +170732233873,439,0 +170732233921,439,0 +170732233969,439,0 +170732234016,439,0 +170732234064,439,0 +170732234112,439,0 +170732234160,439,0 +170732234210,439,0 +170732234258,439,0 +170732234306,439,0 +170732234355,439,0 +170732234405,439,0 +170732234453,273,1 +170732234536,238,0 +170732234584,439,0 +170732234631,439,0 +170732234681,439,0 +170732234731,439,0 +170732234780,439,0 +170732234828,439,0 +170732234876,439,0 +170732234924,439,0 +170732234972,439,0 +170732235021,439,0 +170732235069,439,0 +170732235119,439,0 +170732235168,439,0 +170732235218,439,0 +170732235266,439,0 +170732235314,439,0 +170732235362,439,0 +170732235410,439,0 +170732235458,439,0 +170732235506,269,0 +170732235554,289,1 +170732235645,439,0 +170732235694,439,0 +170732235744,439,0 +170732235793,439,0 +170732235843,439,0 +170732235891,439,0 +170732235940,439,0 +170732235988,439,0 +170732236036,439,0 +170732236086,439,0 +170732236134,439,0 +170732236182,439,0 +170732236230,439,0 +170732236278,439,0 +170732236326,439,0 +170732236374,439,0 +170732236422,439,0 +170732236470,439,0 +170732236517,439,0 +170732236565,288,1 +170732236656,435,0 +170732236705,439,0 +170732236753,439,0 +170732236801,439,0 +170732236851,439,0 +170732236900,439,0 +170732236948,439,0 +170732236998,439,0 +170732237047,439,0 +170732237095,439,0 +170732237145,439,0 +170732237194,439,0 +170732237242,439,0 +170732237292,439,0 +170732237341,439,0 +170732237389,439,0 +170732237437,439,0 +170732237485,439,0 +170732237534,439,0 +170732237584,436,0 +170732237632,285,1 +170732237716,436,0 +170732237766,439,0 +170732237814,439,0 +170732237863,439,0 +170732237913,439,0 +170732237961,439,0 +170732238009,439,0 +170732238057,439,0 +170732238105,439,0 +170732238154,439,0 +170732238202,439,0 +170732238251,439,0 +170732238301,439,0 +170732238351,439,0 +170732238398,439,0 +170732238446,439,0 +170732238496,439,0 +170732238544,439,0 +170732238592,439,0 +170732238640,437,0 +170732238688,268,0 +170732238736,243,0 +170732238785,439,0 +170732238833,439,0 +170732238881,439,0 +170732238931,439,0 +170732238979,439,0 +170732239027,439,0 +170732239076,439,0 +170732239126,439,0 +170732239174,439,0 +170732239223,439,0 +170732239273,439,0 +170732239322,439,0 +170732239370,439,0 +170732239418,439,0 +170732239468,439,0 +170732239517,439,0 +170732239565,439,0 +170732239615,439,0 +170732239664,439,0 +170732239712,294,1 +170732239797,432,0 +170732239849,439,0 +170732239897,439,0 +170732239945,439,0 +170732239993,439,0 +170732240041,439,0 +170732240091,439,0 +170732240139,439,0 +170732240187,439,0 +170732240236,439,0 +170732240284,439,0 +170732240334,439,0 +170732240382,439,0 +170732240431,439,0 +170732240481,439,0 +170732240529,439,0 +170732240578,439,0 +170732240626,439,0 +170732240674,439,0 +170732240724,437,0 +170732240772,287,1 +170732240858,435,0 +170732240906,439,0 +170732240954,439,0 +170732241002,439,0 +170732241050,439,0 +170732241099,439,0 +170732241147,439,0 +170732241197,439,0 +170732241246,439,0 +170732241294,439,0 +170732241342,439,0 +170732241390,439,0 +170732241438,439,0 +170732241486,439,0 +170732241535,439,0 +170732241583,439,0 +170732241633,439,0 +170732241681,439,0 +170732241729,439,0 +170732241777,438,0 +170732241825,288,1 +170732241916,438,0 +170732241964,439,0 +170732242014,439,0 +170732242062,439,0 +170732242110,439,0 +170732242159,439,0 +170732242209,439,0 +170732242257,439,0 +170732242305,439,0 +170732242354,439,0 +170732242402,439,0 +170732242452,439,0 +170732242500,439,0 +170732242549,439,0 +170732242597,439,0 +170732242645,439,0 +170732242693,439,0 +170732242741,439,0 +170732242790,439,0 +170732242838,279,1 +170732242926,240,0 +170732242974,438,0 +170732243022,439,0 +170732243072,439,0 +170732243120,439,0 +170732243168,439,0 +170732243217,439,0 +170732243267,439,0 +170732243315,439,0 +170732243363,439,0 +170732243410,439,0 +170732243458,439,0 +170732243508,439,0 +170732243556,439,0 +170732243604,439,0 +170732243652,439,0 +170732243701,439,0 +170732243749,439,0 +170732243797,439,0 +170732243845,439,0 +170732243895,284,1 +170732243978,237,0 +170732244026,439,0 +170732244074,439,0 +170732244122,439,0 +170732244170,439,0 +170732244220,439,0 +170732244267,439,0 +170732244315,439,0 +170732244363,439,0 +170732244411,439,0 +170732244459,439,0 +170732244507,439,0 +170732244555,439,0 +170732244604,439,0 +170732244652,439,0 +170732244700,439,0 +170732244748,439,0 +170732244796,439,0 +170732244844,439,0 +170732244892,439,0 +170732244940,283,1 +170732245023,250,0 +170732245071,438,0 +170732245120,439,0 +170732245168,439,0 +170732245218,439,0 +170732245266,439,0 +170732245314,439,0 +170732245361,439,0 +170732245409,439,0 +170732245459,439,0 +170732245507,439,0 +170732245555,439,0 +170732245603,439,0 +170732245651,439,0 +170732245700,439,0 +170732245750,439,0 +170732245798,439,0 +170732245846,439,0 +170732245895,439,0 +170732245943,439,0 +170732245991,270,1 +170732246080,251,0 +170732246128,438,0 +170732246176,439,0 +170732246225,439,0 +170732246275,439,0 +170732246324,439,0 +170732246374,439,0 +170732246422,439,0 +170732246470,439,0 +170732246519,439,0 +170732246567,439,0 +170732246615,439,0 +170732246663,439,0 +170732246711,439,0 +170732246759,439,0 +170732246807,439,0 +170732246856,439,0 +170732246906,439,0 +170732246955,439,0 +170732247005,439,0 +170732247053,302,1 +170732247137,434,0 +170732247187,439,0 +170732247235,439,0 +170732247283,439,0 +170732247331,439,0 +170732247379,439,0 +170732247427,439,0 +170732247475,439,0 +170732247522,439,0 +170732247570,439,0 +170732247618,439,0 +170732247666,439,0 +170732247714,439,0 +170732247762,439,0 +170732247810,439,0 +170732247858,439,0 +170732247906,439,0 +170732247956,439,0 +170732248004,439,0 +170732248053,439,0 +170732248103,293,1 +170732248183,417,0 +170732248232,439,0 +170732248282,439,0 +170732248331,439,0 +170732248379,439,0 +170732248429,439,0 +170732248478,439,0 +170732248528,439,0 +170732248576,439,0 +170732248625,439,0 +170732248673,439,0 +170732248723,439,0 +170732248772,439,0 +170732248820,439,0 +170732248868,439,0 +170732248916,439,0 +170732248964,439,0 +170732249014,439,0 +170732249062,439,0 +170732249111,438,0 +170732249161,297,1 +170732249253,436,0 +170732249301,439,0 +170732249349,439,0 +170732249398,439,0 +170732249446,439,0 +170732249494,439,0 +170732249542,439,0 +170732249590,439,0 +170732249640,439,0 +170732249688,439,0 +170732249737,439,0 +170732249785,439,0 +170732249835,439,0 +170732249884,439,0 +170732249932,439,0 +170732249980,439,0 +170732250030,439,0 +170732250079,439,0 +170732250129,439,0 +170732250176,266,0 +170732250229,284,1 +170732250317,439,0 +170732250365,439,0 +170732250414,439,0 +170732250462,439,0 +170732250510,439,0 +170732250560,439,0 +170732250608,439,0 +170732250657,439,0 +170732250705,439,0 +170732250753,439,0 +170732250803,439,0 +170732250852,439,0 +170732250900,439,0 +170732250948,439,0 +170732250997,439,0 +170732251045,439,0 +170732251095,439,0 +170732251143,439,0 +170732251192,439,0 +170732251240,292,1 +170732251326,414,0 +170732251374,439,0 +170732251423,439,0 +170732251473,439,0 +170732251522,439,0 +170732251570,439,0 +170732251618,439,0 +170732251667,439,0 +170732251715,439,0 +170732251763,439,0 +170732251811,439,0 +170732251859,439,0 +170732251907,439,0 +170732251955,439,0 +170732252002,439,0 +170732252050,439,0 +170732252098,439,0 +170732252146,439,0 +170732252194,439,0 +170732252242,439,0 +170732252290,299,1 +170732252384,424,0 +170732252431,439,0 +170732252479,439,0 +170732252527,439,0 +170732252575,439,0 +170732252623,439,0 +170732252671,439,0 +170732252719,439,0 +170732252767,439,0 +170732252816,439,0 +170732252864,439,0 +170732252912,439,0 +170732252962,439,0 +170732253010,439,0 +170732253058,439,0 +170732253107,439,0 +170732253157,439,0 +170732253206,439,0 +170732253254,439,0 +170732253302,439,0 +170732253350,297,1 +170732253438,434,0 +170732253487,439,0 +170732253535,439,0 +170732253585,439,0 +170732253634,439,0 +170732253682,439,0 +170732253732,439,0 +170732253781,439,0 +170732253831,439,0 +170732253879,439,0 +170732253928,439,0 +170732253976,439,0 +170732254024,439,0 +170732254074,439,0 +170732254122,439,0 +170732254170,439,0 +170732254218,439,0 +170732254267,439,0 +170732254317,439,0 +170732254365,439,0 +170732254412,288,1 +170732254503,435,0 +170732254551,439,0 +170732254599,439,0 +170732254647,439,0 +170732254695,439,0 +170732254743,439,0 +170732254791,439,0 +170732254840,439,0 +170732254890,439,0 +170732254938,439,0 +170732254987,439,0 +170732255037,439,0 +170732255085,439,0 +170732255132,439,0 +170732255180,439,0 +170732255228,439,0 +170732255276,439,0 +170732255324,439,0 +170732255372,439,0 +170732255421,270,1 +170732255507,275,1 +170732255592,439,0 +170732255640,439,0 +170732255688,439,0 +170732255738,439,0 +170732255787,439,0 +170732255835,439,0 +170732255883,440,0 +170732255931,439,0 +170732255979,439,0 +170732256027,439,0 +170732256075,439,0 +170732256125,439,0 +170732256172,439,0 +170732256220,439,0 +170732256270,439,0 +170732256318,439,0 +170732256366,439,0 +170732256415,439,0 +170732256463,366,0 +170732256511,303,1 +170732256593,436,0 +170732256641,439,0 +170732256688,439,0 +170732256738,439,0 +170732256786,439,0 +170732256835,439,0 +170732256883,439,0 +170732256931,439,0 +170732256980,439,0 +170732257028,439,0 +170732257076,439,0 +170732257124,439,0 +170732257172,439,0 +170732257220,439,0 +170732257269,439,0 +170732257317,439,0 +170732257367,439,0 +170732257416,439,0 +170732257464,439,0 +170732257512,259,0 +170732257560,295,1 +170732257647,438,0 +170732257694,439,0 +170732257744,439,0 +170732257792,439,0 +170732257840,439,0 +170732257889,439,0 +170732257937,439,0 +170732257985,439,0 +170732258033,439,0 +170732258083,439,0 +170732258131,439,0 +170732258179,439,0 +170732258227,439,0 +170732258275,439,0 +170732258324,439,0 +170732258374,439,0 +170732258422,439,0 +170732258470,439,0 +170732258518,439,0 +170732258565,287,1 +170732258656,242,0 +170732258705,439,0 +170732258753,439,0 +170732258801,439,0 +170732258851,439,0 +170732258900,439,0 +170732258948,439,0 +170732258996,439,0 +170732259046,439,0 +170732259094,439,0 +170732259142,439,0 +170732259191,439,0 +170732259239,439,0 +170732259287,440,0 +170732259335,439,0 +170732259385,439,0 +170732259434,439,0 +170732259482,439,0 +170732259530,439,0 +170732259578,439,0 +170732259626,301,1 +170732259710,241,0 +170732259758,439,0 +170732259807,439,0 +170732259855,439,0 +170732259905,439,0 +170732259953,439,0 +170732260001,439,0 +170732260050,439,0 +170732260100,439,0 +170732260148,439,0 +170732260196,439,0 +170732260244,439,0 +170732260291,439,0 +170732260339,439,0 +170732260387,439,0 +170732260437,439,0 +170732260485,439,0 +170732260532,439,0 +170732260580,439,0 +170732260628,439,0 +170732260676,297,1 +170732260764,233,0 +170732260812,439,0 +170732260860,439,0 +170732260908,439,0 +170732260956,439,0 +170732261004,439,0 +170732261052,439,0 +170732261101,439,0 +170732261149,439,0 +170732261197,439,0 +170732261246,439,0 +170732261294,439,0 +170732261344,439,0 +170732261393,439,0 +170732261443,439,0 +170732261491,439,0 +170732261540,439,0 +170732261588,439,0 +170732261636,439,0 +170732261686,439,0 +170732261734,299,1 +170732261823,432,0 +170732261871,439,0 +170732261919,439,0 +170732261967,439,0 +170732262015,439,0 +170732262063,439,0 +170732262113,439,0 +170732262161,439,0 +170732262209,439,0 +170732262258,439,0 +170732262308,439,0 +170732262356,439,0 +170732262404,439,0 +170732262453,439,0 +170732262501,439,0 +170732262549,439,0 +170732262599,439,0 +170732262648,439,0 +170732262698,439,0 +170732262746,438,0 +170732262795,307,1 +170732262884,435,0 +170732262933,439,0 +170732262981,439,0 +170732263029,439,0 +170732263079,439,0 +170732263127,439,0 +170732263176,439,0 +170732263224,439,0 +170732263273,439,0 +170732263321,439,0 +170732263369,439,0 +170732263417,439,0 +170732263467,439,0 +170732263516,439,0 +170732263564,439,0 +170732263612,439,0 +170732263662,439,0 +170732263711,439,0 +170732263761,439,0 +170732263810,265,0 +170732263858,257,0 +170732263906,245,0 +170732263956,439,0 +170732264004,439,0 +170732264053,439,0 +170732264103,439,0 +170732264152,439,0 +170732264200,439,0 +170732264250,439,0 +170732264298,439,0 +170732264347,439,0 +170732264395,439,0 +170732264445,439,0 +170732264494,439,0 +170732264542,439,0 +170732264590,439,0 +170732264638,439,0 +170732264686,439,0 +170732264735,439,0 +170732264785,439,0 +170732264833,439,0 +170732264881,289,1 +170732264967,430,0 +170732265015,439,0 +170732265065,439,0 +170732265113,439,0 +170732265162,439,0 +170732265210,439,0 +170732265258,439,0 +170732265306,439,0 +170732265354,439,0 +170732265402,439,0 +170732265452,439,0 +170732265499,439,0 +170732265547,439,0 +170732265595,439,0 +170732265643,439,0 +170732265691,440,0 +170732265741,439,0 +170732265789,439,0 +170732265837,439,0 +170732265885,438,0 +170732265932,305,1 +170732266021,434,0 +170732266069,439,0 +170732266117,439,0 +170732266165,439,0 +170732266215,439,0 +170732266264,439,0 +170732266312,439,0 +170732266360,439,0 +170732266410,439,0 +170732266458,439,0 +170732266506,439,0 +170732266555,439,0 +170732266603,439,0 +170732266651,439,0 +170732266699,439,0 +170732266749,439,0 +170732266797,439,0 +170732266844,439,0 +170732266894,439,0 +170732266942,439,0 +170732266992,294,1 +170732267082,435,0 +170732267132,439,0 +170732267180,439,0 +170732267228,439,0 +170732267277,439,0 +170732267325,439,0 +170732267373,439,0 +170732267422,439,0 +170732267470,439,0 +170732267518,440,0 +170732267568,439,0 +170732267616,439,0 +170732267664,439,0 +170732267713,439,0 +170732267761,439,0 +170732267809,439,0 +170732267859,439,0 +170732267908,439,0 +170732267956,439,0 +170732268004,437,0 +170732268054,294,1 +170732268140,437,0 +170732268189,439,0 +170732268237,439,0 +170732268285,439,0 +170732268335,439,0 +170732268384,439,0 +170732268432,439,0 +170732268482,439,0 +170732268532,439,0 +170732268581,439,0 +170732268629,439,0 +170732268679,439,0 +170732268728,439,0 +170732268778,439,0 +170732268826,439,0 +170732268873,439,0 +170732268923,439,0 +170732268971,439,0 +170732269019,439,0 +170732269067,299,1 +170732269149,250,0 +170732269198,439,0 +170732269246,439,0 +170732269294,439,0 +170732269342,439,0 +170732269392,440,0 +170732269440,439,0 +170732269487,439,0 +170732269535,439,0 +170732269585,439,0 +170732269633,439,0 +170732269682,439,0 +170732269732,439,0 +170732269780,439,0 +170732269828,439,0 +170732269876,439,0 +170732269925,439,0 +170732269973,439,0 +170732270021,439,0 +170732270069,439,0 +170732270119,281,1 +170732270203,283,1 +170732270286,439,0 +170732270336,439,0 +170732270384,439,0 +170732270433,439,0 +170732270481,439,0 +170732270529,439,0 +170732270579,439,0 +170732270627,439,0 +170732270675,439,0 +170732270724,439,0 +170732270772,439,0 +170732270820,439,0 +170732270868,439,0 +170732270916,439,0 +170732270966,439,0 +170732271015,439,0 +170732271063,439,0 +170732271111,439,0 +170732271159,284,1 +170732271249,237,0 +170732271297,439,0 +170732271345,439,0 +170732271394,439,0 +170732271442,439,0 +170732271490,439,0 +170732271538,439,0 +170732271586,439,0 +170732271636,439,0 +170732271684,439,0 +170732271732,439,0 +170732271781,439,0 +170732271829,439,0 +170732271877,439,0 +170732271925,439,0 +170732271974,439,0 +170732272024,439,0 +170732272072,439,0 +170732272120,439,0 +170732272168,439,0 +170732272215,294,1 +170732272306,413,0 +170732272354,439,0 +170732272402,439,0 +170732272450,439,0 +170732272499,439,0 +170732272549,439,0 +170732272597,439,0 +170732272645,440,0 +170732272693,439,0 +170732272741,439,0 +170732272789,439,0 +170732272836,439,0 +170732272884,439,0 +170732272932,439,0 +170732272982,439,0 +170732273030,439,0 +170732273079,439,0 +170732273127,439,0 +170732273175,439,0 +170732273223,439,0 +170732273271,288,1 +170732273355,425,0 +170732273403,439,0 +170732273451,439,0 +170732273499,439,0 +170732273549,439,0 +170732273596,439,0 +170732273644,439,0 +170732273694,439,0 +170732273742,439,0 +170732273790,439,0 +170732273838,439,0 +170732273887,439,0 +170732273935,439,0 +170732273985,439,0 +170732274034,439,0 +170732274082,439,0 +170732274132,439,0 +170732274181,439,0 +170732274229,439,0 +170732274277,439,0 +170732274327,290,1 +170732274415,430,0 +170732274463,439,0 +170732274511,439,0 +170732274559,439,0 +170732274609,439,0 +170732274656,439,0 +170732274704,439,0 +170732274752,439,0 +170732274800,439,0 +170732274848,439,0 +170732274898,439,0 +170732274946,439,0 +170732274994,439,0 +170732275041,439,0 +170732275089,439,0 +170732275137,439,0 +170732275185,439,0 +170732275233,439,0 +170732275283,439,0 +170732275331,439,0 +170732275379,305,1 +170732275465,426,0 +170732275512,439,0 +170732275560,439,0 +170732275608,439,0 +170732275656,439,0 +170732275706,439,0 +170732275753,439,0 +170732275801,439,0 +170732275849,439,0 +170732275897,439,0 +170732275945,439,0 +170732275993,439,0 +170732276041,439,0 +170732276089,439,0 +170732276137,439,0 +170732276184,439,0 +170732276232,439,0 +170732276280,439,0 +170732276328,439,0 +170732276378,439,0 +170732276426,302,1 +170732276510,432,0 +170732276558,439,0 +170732276606,439,0 +170732276654,439,0 +170732276702,439,0 +170732276750,439,0 +170732276800,439,0 +170732276848,439,0 +170732276897,439,0 +170732276947,439,0 +170732276995,439,0 +170732277043,439,0 +170732277090,439,0 +170732277138,439,0 +170732277188,439,0 +170732277237,439,0 +170732277287,439,0 +170732277336,439,0 +170732277384,439,0 +170732277432,439,0 +170732277482,290,1 +170732277563,432,0 +170732277611,439,0 +170732277659,439,0 +170732277707,439,0 +170732277755,439,0 +170732277804,439,0 +170732277852,439,0 +170732277902,439,0 +170732277951,439,0 +170732278001,439,0 +170732278049,439,0 +170732278098,439,0 +170732278148,439,0 +170732278196,439,0 +170732278244,439,0 +170732278292,439,0 +170732278340,439,0 +170732278387,439,0 +170732278437,439,0 +170732278486,436,0 +170732278536,294,1 +170732278620,435,0 +170732278669,439,0 +170732278719,439,0 +170732278767,439,0 +170732278815,439,0 +170732278864,439,0 +170732278912,439,0 +170732278960,439,0 +170732279009,439,0 +170732279057,439,0 +170732279105,439,0 +170732279155,439,0 +170732279203,439,0 +170732279251,439,0 +170732279299,439,0 +170732279348,439,0 +170732279396,439,0 +170732279444,439,0 +170732279493,439,0 +170732279541,438,0 +170732279589,293,1 +170732279684,439,0 +170732279734,439,0 +170732279782,439,0 +170732279831,439,0 +170732279879,439,0 +170732279929,439,0 +170732279977,439,0 +170732280026,439,0 +170732280076,439,0 +170732280124,439,0 +170732280172,439,0 +170732280220,439,0 +170732280268,439,0 +170732280316,439,0 +170732280364,439,0 +170732280411,439,0 +170732280459,439,0 +170732280509,439,0 +170732280557,439,0 +170732280605,303,1 +170732280687,244,0 +170732280736,439,0 +170732280784,439,0 +170732280834,439,0 +170732280882,439,0 +170732280930,439,0 +170732280978,439,0 +170732281026,439,0 +170732281075,439,0 +170732281123,439,0 +170732281173,439,0 +170732281221,439,0 +170732281270,439,0 +170732281318,439,0 +170732281368,439,0 +170732281416,439,0 +170732281464,439,0 +170732281512,439,0 +170732281561,439,0 +170732281611,439,0 +170732281660,306,1 +170732281745,258,0 +170732281795,439,0 +170732281844,439,0 +170732281892,439,0 +170732281940,439,0 +170732281988,439,0 +170732282036,439,0 +170732282084,439,0 +170732282134,439,0 +170732282182,439,0 +170732282231,439,0 +170732282279,439,0 +170732282327,439,0 +170732282375,439,0 +170732282423,439,0 +170732282472,439,0 +170732282520,439,0 +170732282570,439,0 +170732282618,439,0 +170732282666,439,0 +170732282714,288,1 +170732282799,309,1 +170732282884,439,0 +170732282932,439,0 +170732282980,439,0 +170732283027,439,0 +170732283075,439,0 +170732283123,439,0 +170732283171,439,0 +170732283219,439,0 +170732283267,439,0 +170732283315,439,0 +170732283363,439,0 +170732283412,439,0 +170732283460,439,0 +170732283510,439,0 +170732283558,439,0 +170732283607,439,0 +170732283657,439,0 +170732283706,439,0 +170732283754,281,1 +170732283838,249,0 +170732283886,439,0 +170732283935,439,0 +170732283983,439,0 +170732284031,439,0 +170732284079,439,0 +170732284127,439,0 +170732284175,439,0 +170732284224,439,0 +170732284272,439,0 +170732284320,439,0 +170732284368,439,0 +170732284416,439,0 +170732284464,439,0 +170732284512,439,0 +170732284560,439,0 +170732284607,439,0 +170732284655,439,0 +170732284703,439,0 +170732284751,439,0 +170732284799,291,1 +170732284883,253,0 +170732284931,438,0 +170732284979,439,0 +170732285027,439,0 +170732285075,439,0 +170732285122,439,0 +170732285170,439,0 +170732285218,439,0 +170732285266,439,0 +170732285314,439,0 +170732285362,439,0 +170732285410,439,0 +170732285458,439,0 +170732285505,439,0 +170732285553,439,0 +170732285601,439,0 +170732285649,439,0 +170732285697,439,0 +170732285745,439,0 +170732285793,439,0 +170732285841,433,0 +170732285888,288,1 +170732285983,439,0 +170732286031,439,0 +170732286079,439,0 +170732286128,439,0 +170732286178,439,0 +170732286226,439,0 +170732286274,439,0 +170732286323,439,0 +170732286373,439,0 +170732286421,439,0 +170732286470,439,0 +170732286520,439,0 +170732286569,439,0 +170732286617,439,0 +170732286665,439,0 +170732286715,439,0 +170732286764,439,0 +170732286812,439,0 +170732286860,439,0 +170732286908,266,0 +170732286957,278,1 +170732287043,439,0 +170732287091,439,0 +170732287139,439,0 +170732287188,440,0 +170732287236,439,0 +170732287284,439,0 +170732287332,439,0 +170732287382,439,0 +170732287431,439,0 +170732287479,439,0 +170732287527,439,0 +170732287575,439,0 +170732287623,439,0 +170732287671,439,0 +170732287718,439,0 +170732287766,439,0 +170732287814,439,0 +170732287862,439,0 +170732287910,439,0 +170732287958,305,1 +170732288042,249,0 +170732288090,439,0 +170732288137,439,0 +170732288185,439,0 +170732288233,439,0 +170732288281,439,0 +170732288330,439,0 +170732288378,439,0 +170732288426,439,0 +170732288474,439,0 +170732288522,439,0 +170732288570,439,0 +170732288620,439,0 +170732288668,439,0 +170732288716,439,0 +170732288765,439,0 +170732288815,439,0 +170732288864,439,0 +170732288912,439,0 +170732288962,439,0 +170732289010,299,1 +170732289097,422,0 +170732289145,439,0 +170732289193,439,0 +170732289241,439,0 +170732289291,439,0 +170732289339,439,0 +170732289387,439,0 +170732289436,439,0 +170732289486,440,0 +170732289534,439,0 +170732289582,439,0 +170732289630,439,0 +170732289679,439,0 +170732289728,439,0 +170732289776,439,0 +170732289824,439,0 +170732289874,439,0 +170732289922,439,0 +170732289970,439,0 +170732290017,439,0 +170732290065,296,1 +170732290147,232,0 +170732290195,439,0 +170732290243,439,0 +170732290293,439,0 +170732290341,439,0 +170732290390,439,0 +170732290440,439,0 +170732290488,439,0 +170732290536,439,0 +170732290583,439,0 +170732290631,439,0 +170732290681,439,0 +170732290729,439,0 +170732290777,439,0 +170732290824,439,0 +170732290872,439,0 +170732290920,439,0 +170732290968,439,0 +170732291016,439,0 +170732291064,439,0 +170732291112,276,1 +170732291201,431,0 +170732291249,439,0 +170732291297,439,0 +170732291345,439,0 +170732291392,439,0 +170732291440,439,0 +170732291488,439,0 +170732291536,439,0 +170732291584,439,0 +170732291633,439,0 +170732291681,439,0 +170732291731,439,0 +170732291779,439,0 +170732291826,439,0 +170732291874,439,0 +170732291924,439,0 +170732291972,439,0 +170732292020,439,0 +170732292067,439,0 +170732292115,439,0 +170732292163,270,1 +170732292245,429,0 +170732292293,439,0 +170732292341,439,0 +170732292389,439,0 +170732292437,439,0 +170732292485,439,0 +170732292533,439,0 +170732292581,439,0 +170732292628,439,0 +170732292676,439,0 +170732292726,439,0 +170732292774,439,0 +170732292823,439,0 +170732292871,439,0 +170732292919,439,0 +170732292967,439,0 +170732293015,439,0 +170732293063,439,0 +170732293110,439,0 +170732293158,439,0 +170732293208,281,1 +170732293292,231,0 +170732293340,439,0 +170732293388,439,0 +170732293437,439,0 +170732293485,439,0 +170732293535,439,0 +170732293583,439,0 +170732293632,439,0 +170732293680,439,0 +170732293730,439,0 +170732293777,439,0 +170732293827,439,0 +170732293875,439,0 +170732293924,439,0 +170732293974,439,0 +170732294022,439,0 +170732294071,439,0 +170732294119,439,0 +170732294169,439,0 +170732294217,439,0 +170732294266,278,1 +170732294355,435,0 +170732294405,439,0 +170732294453,439,0 +170732294502,439,0 +170732294550,439,0 +170732294598,439,0 +170732294646,439,0 +170732294694,439,0 +170732294743,439,0 +170732294791,439,0 +170732294841,439,0 +170732294889,439,0 +170732294937,439,0 +170732294985,439,0 +170732295033,439,0 +170732295082,439,0 +170732295130,439,0 +170732295178,439,0 +170732295228,439,0 +170732295276,438,0 +170732295325,285,1 +170732295407,437,0 +170732295457,439,0 +170732295505,439,0 +170732295553,439,0 +170732295601,439,0 +170732295650,439,0 +170732295698,439,0 +170732295748,439,0 +170732295796,439,0 +170732295844,439,0 +170732295893,439,0 +170732295941,439,0 +170732295989,439,0 +170732296037,439,0 +170732296087,439,0 +170732296134,439,0 +170732296182,439,0 +170732296230,439,0 +170732296278,439,0 +170732296326,439,0 +170732296374,286,1 +170732296456,433,0 +170732296506,439,0 +170732296554,439,0 +170732296602,439,0 +170732296651,439,0 +170732296699,439,0 +170732296747,439,0 +170732296795,439,0 +170732296843,439,0 +170732296891,439,0 +170732296940,439,0 +170732296989,439,0 +170732297039,439,0 +170732297088,439,0 +170732297138,439,0 +170732297187,439,0 +170732297235,439,0 +170732297285,439,0 +170732297333,439,0 +170732297381,438,0 +170732297429,293,1 +170732297517,436,0 +170732297566,439,0 +170732297616,439,0 +170732297665,439,0 +170732297713,439,0 +170732297761,439,0 +170732297809,439,0 +170732297857,439,0 +170732297905,439,0 +170732297952,439,0 +170732298000,439,0 +170732298050,439,0 +170732298098,439,0 +170732298147,439,0 +170732298195,439,0 +170732298243,439,0 +170732298291,439,0 +170732298339,439,0 +170732298386,439,0 +170732298434,433,0 +170732298482,292,1 +170732298576,439,0 +170732298624,439,0 +170732298672,439,0 +170732298720,439,0 +170732298769,439,0 +170732298817,439,0 +170732298865,439,0 +170732298915,439,0 +170732298963,439,0 +170732299011,439,0 +170732299058,439,0 +170732299106,439,0 +170732299154,439,0 +170732299204,439,0 +170732299252,439,0 +170732299299,439,0 +170732299347,439,0 +170732299395,439,0 +170732299443,439,0 +170732299491,272,1 +170732299578,246,0 +170732299627,439,0 +170732299675,439,0 +170732299723,439,0 +170732299771,439,0 +170732299819,439,0 +170732299867,439,0 +170732299916,439,0 +170732299966,439,0 +170732300014,439,0 +170732300062,439,0 +170732300110,439,0 +170732300158,439,0 +170732300206,439,0 +170732300253,439,0 +170732300301,439,0 +170732300351,439,0 +170732300399,439,0 +170732300448,439,0 +170732300496,439,0 +170732300546,291,1 +170732300631,228,0 +170732300680,439,0 +170732300728,439,0 +170732300776,439,0 +170732300824,439,0 +170732300872,439,0 +170732300919,439,0 +170732300969,439,0 +170732301017,439,0 +170732301065,439,0 +170732301113,439,0 +170732301160,439,0 +170732301208,439,0 +170732301258,439,0 +170732301306,439,0 +170732301354,439,0 +170732301402,440,0 +170732301450,439,0 +170732301497,439,0 +170732301545,439,0 +170732301594,290,1 +170732301680,428,0 +170732301729,439,0 +170732301777,439,0 +170732301825,439,0 +170732301873,439,0 +170732301921,439,0 +170732301970,439,0 +170732302018,439,0 +170732302066,439,0 +170732302116,439,0 +170732302165,439,0 +170732302213,439,0 +170732302261,439,0 +170732302310,439,0 +170732302360,439,0 +170732302409,439,0 +170732302457,439,0 +170732302505,439,0 +170732302555,439,0 +170732302603,439,0 +170732302651,296,1 +170732302735,428,0 +170732302783,439,0 +170732302832,439,0 +170732302882,439,0 +170732302930,439,0 +170732302979,439,0 +170732303027,439,0 +170732303075,439,0 +170732303123,439,0 +170732303171,439,0 +170732303219,439,0 +170732303266,439,0 +170732303314,439,0 +170732303364,439,0 +170732303413,439,0 +170732303461,439,0 +170732303511,439,0 +170732303559,439,0 +170732303607,439,0 +170732303655,439,0 +170732303704,290,1 +170732303793,434,0 +170732303841,439,0 +170732303889,439,0 +170732303938,439,0 +170732303986,439,0 +170732304036,439,0 +170732304085,439,0 +170732304133,439,0 +170732304181,439,0 +170732304229,439,0 +170732304279,439,0 +170732304327,439,0 +170732304375,439,0 +170732304424,439,0 +170732304472,439,0 +170732304520,439,0 +170732304568,439,0 +170732304616,439,0 +170732304664,439,0 +170732304712,439,0 +170732304760,276,1 +170732304846,435,0 +170732304896,439,0 +170732304943,439,0 +170732304993,439,0 +170732305042,440,0 +170732305090,439,0 +170732305140,439,0 +170732305188,439,0 +170732305237,439,0 +170732305287,439,0 +170732305336,439,0 +170732305386,439,0 +170732305435,440,0 +170732305485,439,0 +170732305533,439,0 +170732305581,439,0 +170732305629,439,0 +170732305678,439,0 +170732305728,439,0 +170732305776,264,0 +170732305824,294,1 +170732305905,438,0 +170732305953,439,0 +170732306001,439,0 +170732306051,439,0 +170732306100,439,0 +170732306150,439,0 +170732306198,439,0 +170732306247,439,0 +170732306297,439,0 +170732306345,439,0 +170732306392,439,0 +170732306440,439,0 +170732306488,439,0 +170732306536,439,0 +170732306586,439,0 +170732306634,439,0 +170732306682,439,0 +170732306730,439,0 +170732306779,439,0 +170732306827,282,1 +170732306923,231,0 +170732306971,439,0 +170732307020,439,0 +170732307068,439,0 +170732307116,439,0 +170732307164,439,0 +170732307214,439,0 +170732307262,439,0 +170732307311,439,0 +170732307361,439,0 +170732307409,439,0 +170732307457,439,0 +170732307505,439,0 +170732307553,439,0 +170732307602,439,0 +170732307652,439,0 +170732307701,440,0 +170732307749,439,0 +170732307799,439,0 +170732307847,439,0 +170732307896,263,0 +170732307946,295,1 +170732308026,439,0 +170732308075,439,0 +170732308125,439,0 +170732308173,439,0 +170732308221,439,0 +170732308270,439,0 +170732308318,439,0 +170732308368,439,0 +170732308417,439,0 +170732308467,439,0 +170732308515,439,0 +170732308563,439,0 +170732308610,439,0 +170732308660,439,0 +170732308708,439,0 +170732308756,439,0 +170732308804,439,0 +170732308852,439,0 +170732308901,439,0 +170732308949,278,1 +170732309032,432,0 +170732309082,439,0 +170732309130,439,0 +170732309179,440,0 +170732309227,439,0 +170732309275,439,0 +170732309323,439,0 +170732309371,439,0 +170732309420,439,0 +170732309468,439,0 +170732309516,439,0 +170732309564,439,0 +170732309614,439,0 +170732309663,439,0 +170732309713,439,0 +170732309761,439,0 +170732309809,439,0 +170732309857,439,0 +170732309905,439,0 +170732309953,439,0 +170732310001,291,1 +170732310090,436,0 +170732310139,439,0 +170732310189,439,0 +170732310237,439,0 +170732310285,439,0 +170732310334,439,0 +170732310384,439,0 +170732310432,440,0 +170732310480,439,0 +170732310529,440,0 +170732310579,439,0 +170732310628,439,0 +170732310676,439,0 +170732310726,439,0 +170732310775,439,0 +170732310825,439,0 +170732310873,440,0 +170732310922,439,0 +170732310972,439,0 +170732311020,251,0 +170732311068,290,1 +170732311152,438,0 +170732311199,439,0 +170732311247,439,0 +170732311295,439,0 +170732311345,439,0 +170732311394,439,0 +170732311442,439,0 +170732311492,439,0 +170732311540,439,0 +170732311588,439,0 +170732311637,439,0 +170732311685,439,0 +170732311735,439,0 +170732311784,439,0 +170732311832,439,0 +170732311882,439,0 +170732311930,439,0 +170732311979,439,0 +170732312027,439,0 +170732312075,279,1 +170732312156,279,1 +170732312239,439,0 +170732312289,439,0 +170732312337,440,0 +170732312386,440,0 +170732312436,439,0 +170732312484,439,0 +170732312532,439,0 +170732312581,439,0 +170732312629,439,0 +170732312679,439,0 +170732312727,439,0 +170732312775,439,0 +170732312823,439,0 +170732312871,439,0 +170732312919,440,0 +170732312967,439,0 +170732313015,439,0 +170732313064,439,0 +170732313112,429,0 +170732313162,298,1 +170732313256,438,0 +170732313304,439,0 +170732313352,439,0 +170732313401,439,0 +170732313449,439,0 +170732313497,439,0 +170732313545,439,0 +170732313593,439,0 +170732313643,439,0 +170732313692,439,0 +170732313740,439,0 +170732313788,439,0 +170732313838,439,0 +170732313887,439,0 +170732313937,439,0 +170732313985,439,0 +170732314033,439,0 +170732314081,439,0 +170732314129,439,0 +170732314176,300,1 +170732314261,237,0 +170732314309,439,0 +170732314357,439,0 +170732314407,439,0 +170732314454,439,0 +170732314502,439,0 +170732314552,439,0 +170732314600,439,0 +170732314648,439,0 +170732314695,439,0 +170732314743,439,0 +170732314793,439,0 +170732314841,439,0 +170732314888,439,0 +170732314936,439,0 +170732314984,439,0 +170732315032,439,0 +170732315080,439,0 +170732315128,439,0 +170732315176,439,0 +170732315224,280,1 +170732315310,237,0 +170732315358,439,0 +170732315406,439,0 +170732315454,439,0 +170732315502,439,0 +170732315549,439,0 +170732315597,439,0 +170732315645,439,0 +170732315693,439,0 +170732315741,439,0 +170732315789,439,0 +170732315837,439,0 +170732315885,439,0 +170732315933,439,0 +170732315981,439,0 +170732316028,439,0 +170732316076,439,0 +170732316124,439,0 +170732316172,439,0 +170732316220,439,0 +170732316268,272,1 +170732316354,244,0 +170732316403,439,0 +170732316453,439,0 +170732316502,439,0 +170732316550,439,0 +170732316598,439,0 +170732316648,439,0 +170732316697,439,0 +170732316745,439,0 +170732316793,439,0 +170732316843,439,0 +170732316891,439,0 +170732316939,439,0 +170732316987,439,0 +170732317035,439,0 +170732317082,439,0 +170732317130,439,0 +170732317180,439,0 +170732317229,439,0 +170732317279,439,0 +170732317327,301,1 +170732317410,233,0 +170732317458,439,0 +170732317507,439,0 +170732317557,439,0 +170732317606,439,0 +170732317656,439,0 +170732317704,439,0 +170732317752,439,0 +170732317800,439,0 +170732317848,439,0 +170732317895,439,0 +170732317943,439,0 +170732317991,439,0 +170732318039,439,0 +170732318087,439,0 +170732318135,439,0 +170732318183,439,0 +170732318231,439,0 +170732318279,439,0 +170732318328,439,0 +170732318376,258,0 +170732318424,268,0 +170732318472,430,0 +170732318520,439,0 +170732318570,439,0 +170732318618,439,0 +170732318667,439,0 +170732318715,439,0 +170732318763,439,0 +170732318811,439,0 +170732318860,439,0 +170732318910,439,0 +170732318960,439,0 +170732319009,439,0 +170732319057,439,0 +170732319105,439,0 +170732319153,439,0 +170732319202,439,0 +170732319252,439,0 +170732319301,439,0 +170732319349,439,0 +170732319397,439,0 +170732319445,296,1 +170732319536,433,0 +170732319584,439,0 +170732319632,439,0 +170732319681,440,0 +170732319731,439,0 +170732319779,439,0 +170732319827,439,0 +170732319875,439,0 +170732319922,439,0 +170732319970,439,0 +170732320020,439,0 +170732320069,439,0 +170732320117,439,0 +170732320165,439,0 +170732320213,439,0 +170732320261,439,0 +170732320309,439,0 +170732320357,439,0 +170732320405,439,0 +170732320454,438,0 +170732320504,289,1 +170732320589,437,0 +170732320639,439,0 +170732320688,439,0 +170732320738,439,0 +170732320786,439,0 +170732320833,439,0 +170732320881,439,0 +170732320929,439,0 +170732320979,439,0 +170732321027,439,0 +170732321076,439,0 +170732321124,439,0 +170732321172,439,0 +170732321221,439,0 +170732321269,439,0 +170732321317,439,0 +170732321365,439,0 +170732321415,439,0 +170732321464,439,0 +170732321512,419,0 +170732321562,296,1 +170732321646,437,0 +170732321694,439,0 +170732321743,439,0 +170732321793,439,0 +170732321841,439,0 +170732321890,439,0 +170732321938,439,0 +170732321988,439,0 +170732322037,439,0 +170732322085,439,0 +170732322135,439,0 +170732322184,440,0 +170732322232,439,0 +170732322280,439,0 +170732322330,439,0 +170732322378,439,0 +170732322427,439,0 +170732322477,439,0 +170732322526,439,0 +170732322574,273,1 +170732322660,234,0 +170732322708,439,0 +170732322756,439,0 +170732322806,439,0 +170732322853,439,0 +170732322901,439,0 +170732322949,439,0 +170732322997,439,0 +170732323045,439,0 +170732323093,439,0 +170732323141,439,0 +170732323189,439,0 +170732323239,439,0 +170732323287,439,0 +170732323336,439,0 +170732323386,439,0 +170732323435,439,0 +170732323485,439,0 +170732323533,439,0 +170732323582,439,0 +170732323630,287,1 +170732323711,280,1 +170732323794,439,0 +170732323844,439,0 +170732323894,439,0 +170732323941,439,0 +170732323991,439,0 +170732324039,439,0 +170732324088,439,0 +170732324136,439,0 +170732324186,439,0 +170732324234,439,0 +170732324282,439,0 +170732324331,440,0 +170732324379,439,0 +170732324429,440,0 +170732324477,439,0 +170732324526,439,0 +170732324576,439,0 +170732324624,439,0 +170732324672,293,1 +170732324761,235,0 +170732324811,439,0 +170732324859,439,0 +170732324908,439,0 +170732324958,439,0 +170732325006,439,0 +170732325054,439,0 +170732325102,439,0 +170732325151,439,0 +170732325199,439,0 +170732325247,439,0 +170732325297,439,0 +170732325345,439,0 +170732325393,440,0 +170732325442,439,0 +170732325490,439,0 +170732325540,440,0 +170732325588,440,0 +170732325636,439,0 +170732325684,439,0 +170732325731,288,1 +170732325817,234,0 +170732325865,439,0 +170732325913,439,0 +170732325963,439,0 +170732326011,440,0 +170732326060,439,0 +170732326110,440,0 +170732326159,439,0 +170732326207,439,0 +170732326257,439,0 +170732326306,439,0 +170732326354,439,0 +170732326402,439,0 +170732326450,439,0 +170732326498,439,0 +170732326547,439,0 +170732326595,439,0 +170732326643,439,0 +170732326693,439,0 +170732326742,439,0 +170732326790,294,1 +170732326874,431,0 +170732326924,439,0 +170732326972,439,0 +170732327021,440,0 +170732327069,439,0 +170732327117,439,0 +170732327165,439,0 +170732327213,439,0 +170732327261,439,0 +170732327311,439,0 +170732327360,439,0 +170732327410,439,0 +170732327458,439,0 +170732327505,439,0 +170732327555,439,0 +170732327605,439,0 +170732327653,439,0 +170732327701,439,0 +170732327749,439,0 +170732327798,438,0 +170732327846,298,1 +170732327927,434,0 +170732327975,439,0 +170732328022,439,0 +170732328070,439,0 +170732328120,439,0 +170732328168,440,0 +170732328216,439,0 +170732328263,439,0 +170732328311,439,0 +170732328359,440,0 +170732328407,439,0 +170732328455,439,0 +170732328504,439,0 +170732328552,439,0 +170732328602,439,0 +170732328650,439,0 +170732328698,439,0 +170732328746,439,0 +170732328794,439,0 +170732328842,439,0 +170732328891,294,1 +170732328978,434,0 +170732329026,439,0 +170732329074,439,0 +170732329122,439,0 +170732329170,439,0 +170732329219,440,0 +170732329267,439,0 +170732329317,439,0 +170732329366,439,0 +170732329414,439,0 +170732329462,439,0 +170732329510,440,0 +170732329560,439,0 +170732329609,439,0 +170732329657,439,0 +170732329705,439,0 +170732329755,439,0 +170732329804,439,0 +170732329852,439,0 +170732329900,438,0 +170732329950,298,1 +170732330032,437,0 +170732330082,440,0 +170732330131,439,0 +170732330179,439,0 +170732330227,439,0 +170732330277,439,0 +170732330325,439,0 +170732330374,439,0 +170732330422,439,0 +170732330470,439,0 +170732330520,439,0 +170732330568,439,0 +170732330617,439,0 +170732330665,439,0 +170732330713,439,0 +170732330761,439,0 +170732330809,439,0 +170732330857,439,0 +170732330905,439,0 +170732330953,436,0 +170732331002,293,1 +170732331082,436,0 +170732331132,439,0 +170732331180,440,0 +170732331228,439,0 +170732331276,439,0 +170732331325,439,0 +170732331373,439,0 +170732331423,439,0 +170732331472,439,0 +170732331520,439,0 +170732331570,439,0 +170732331618,440,0 +170732331666,439,0 +170732331714,439,0 +170732331762,439,0 +170732331810,439,0 +170732331857,439,0 +170732331905,439,0 +170732331953,439,0 +170732332001,435,0 +170732332049,291,1 +170732332134,436,0 +170732332184,439,0 +170732332231,439,0 +170732332279,439,0 +170732332329,439,0 +170732332378,439,0 +170732332426,439,0 +170732332474,439,0 +170732332522,440,0 +170732332570,440,0 +170732332618,439,0 +170732332668,439,0 +170732332717,439,0 +170732332765,439,0 +170732332813,439,0 +170732332862,439,0 +170732332912,439,0 +170732332960,439,0 +170732333008,439,0 +170732333056,433,0 +170732333104,296,1 +170732333185,437,0 +170732333233,439,0 +170732333281,439,0 +170732333331,439,0 +170732333380,439,0 +170732333430,439,0 +170732333478,439,0 +170732333526,440,0 +170732333573,439,0 +170732333621,440,0 +170732333669,439,0 +170732333717,439,0 +170732333765,439,0 +170732333813,439,0 +170732333861,439,0 +170732333910,439,0 +170732333958,440,0 +170732334006,439,0 +170732334054,439,0 +170732334102,438,0 +170732334150,288,1 +170732334233,435,0 +170732334283,440,0 +170732334331,440,0 +170732334380,439,0 +170732334430,439,0 +170732334477,439,0 +170732334527,439,0 +170732334575,439,0 +170732334623,439,0 +170732334671,439,0 +170732334719,439,0 +170732334766,439,0 +170732334814,439,0 +170732334862,439,0 +170732334910,440,0 +170732334958,439,0 +170732335006,440,0 +170732335054,439,0 +170732335102,439,0 +170732335149,427,0 +170732335197,301,1 +170732335280,436,0 +170732335328,439,0 +170732335376,439,0 +170732335425,440,0 +170732335473,439,0 +170732335521,439,0 +170732335569,439,0 +170732335617,439,0 +170732335665,440,0 +170732335713,440,0 +170732335760,439,0 +170732335808,439,0 +170732335856,439,0 +170732335904,439,0 +170732335952,439,0 +170732336000,439,0 +170732336048,439,0 +170732336096,439,0 +170732336144,439,0 +170732336192,438,0 +170732336239,284,1 +170732336328,436,0 +170732336376,439,0 +170732336424,439,0 +170732336472,440,0 +170732336520,439,0 +170732336568,439,0 +170732336616,439,0 +170732336664,439,0 +170732336711,439,0 +170732336761,439,0 +170732336810,440,0 +170732336858,440,0 +170732336906,440,0 +170732336954,439,0 +170732337002,439,0 +170732337051,440,0 +170732337099,440,0 +170732337147,440,0 +170732337195,439,0 +170732337243,438,0 +170732337291,278,1 +170732337376,436,0 +170732337424,439,0 +170732337471,439,0 +170732337519,440,0 +170732337567,439,0 +170732337615,440,0 +170732337663,440,0 +170732337711,439,0 +170732337759,440,0 +170732337807,440,0 +170732337855,440,0 +170732337903,439,0 +170732337952,439,0 +170732338002,440,0 +170732338049,439,0 +170732338099,439,0 +170732338149,439,0 +170732338197,439,0 +170732338246,439,0 +170732338294,437,0 +170732338342,299,1 +170732338419,434,0 +170732338468,439,0 +170732338516,440,0 +170732338566,439,0 +170732338615,439,0 +170732338665,439,0 +170732338713,439,0 +170732338761,439,0 +170732338809,439,0 +170732338858,439,0 +170732338906,440,0 +170732338956,439,0 +170732339005,439,0 +170732339053,439,0 +170732339101,440,0 +170732339149,439,0 +170732339197,440,0 +170732339247,439,0 +170732339295,439,0 +170732339343,438,0 +170732339392,295,1 +170732339473,437,0 +170732339523,439,0 +170732339572,439,0 +170732339620,439,0 +170732339668,439,0 +170732339716,439,0 +170732339764,439,0 +170732339812,439,0 +170732339860,440,0 +170732339910,439,0 +170732339958,439,0 +170732340007,439,0 +170732340055,439,0 +170732340105,440,0 +170732340153,439,0 +170732340200,439,0 +170732340248,439,0 +170732340296,439,0 +170732340344,439,0 +170732340392,439,0 +170732340440,285,1 +170732340530,435,0 +170732340578,439,0 +170732340626,439,0 +170732340674,440,0 +170732340722,439,0 +170732340770,439,0 +170732340819,439,0 +170732340869,439,0 +170732340917,439,0 +170732340965,439,0 +170732341014,439,0 +170732341062,439,0 +170732341112,439,0 +170732341160,440,0 +170732341208,439,0 +170732341256,440,0 +170732341303,440,0 +170732341353,439,0 +170732341402,439,0 +170732341452,412,0 +170732341500,300,1 +170732341586,438,0 +170732341636,440,0 +170732341683,440,0 +170732341731,439,0 +170732341781,440,0 +170732341829,439,0 +170732341877,439,0 +170732341925,439,0 +170732341973,439,0 +170732342022,439,0 +170732342070,439,0 +170732342120,439,0 +170732342169,440,0 +170732342217,439,0 +170732342265,439,0 +170732342313,439,0 +170732342361,439,0 +170732342409,439,0 +170732342457,439,0 +170732342505,258,0 +170732342553,283,1 +170732342639,439,0 +170732342688,439,0 +170732342736,439,0 +170732342784,439,0 +170732342832,439,0 +170732342880,439,0 +170732342928,440,0 +170732342976,439,0 +170732343024,439,0 +170732343073,439,0 +170732343123,439,0 +170732343171,439,0 +170732343219,439,0 +170732343267,440,0 +170732343315,439,0 +170732343363,440,0 +170732343411,439,0 +170732343459,439,0 +170732343508,439,0 +170732343556,258,0 +170732343606,282,1 +170732343703,439,0 +170732343752,439,0 +170732343800,439,0 +170732343849,439,0 +170732343897,439,0 +170732343945,439,0 +170732343993,439,0 +170732344041,439,0 +170732344089,439,0 +170732344139,439,0 +170732344187,439,0 +170732344235,439,0 +170732344284,439,0 +170732344332,439,0 +170732344380,439,0 +170732344428,439,0 +170732344477,439,0 +170732344527,439,0 +170732344575,439,0 +170732344624,273,1 +170732344709,432,0 +170732344757,439,0 +170732344806,440,0 +170732344854,439,0 +170732344902,439,0 +170732344950,439,0 +170732344998,439,0 +170732345048,439,0 +170732345096,440,0 +170732345145,439,0 +170732345193,440,0 +170732345241,439,0 +170732345289,439,0 +170732345337,439,0 +170732345385,439,0 +170732345433,439,0 +170732345483,439,0 +170732345531,439,0 +170732345580,439,0 +170732345628,439,0 +170732345676,274,1 +170732345766,437,0 +170732345814,439,0 +170732345862,439,0 +170732345910,439,0 +170732345958,440,0 +170732346006,439,0 +170732346054,439,0 +170732346103,439,0 +170732346151,439,0 +170732346199,439,0 +170732346247,439,0 +170732346295,439,0 +170732346343,439,0 +170732346392,439,0 +170732346440,439,0 +170732346488,439,0 +170732346536,439,0 +170732346584,439,0 +170732346632,439,0 +170732346679,439,0 +170732346727,284,1 +170732346812,432,0 +170732346861,439,0 +170732346909,439,0 +170732346957,439,0 +170732347005,439,0 +170732347053,439,0 +170732347100,439,0 +170732347150,439,0 +170732347198,439,0 +170732347246,439,0 +170732347294,439,0 +170732347342,439,0 +170732347389,439,0 +170732347437,439,0 +170732347485,439,0 +170732347533,439,0 +170732347583,439,0 +170732347631,439,0 +170732347680,439,0 +170732347729,439,0 +170732347777,292,1 +170732347859,431,0 +170732347909,439,0 +170732347957,439,0 +170732348006,439,0 +170732348056,439,0 +170732348104,440,0 +170732348153,440,0 +170732348203,440,0 +170732348251,439,0 +170732348299,439,0 +170732348347,439,0 +170732348396,439,0 +170732348444,439,0 +170732348492,439,0 +170732348542,439,0 +170732348590,439,0 +170732348639,439,0 +170732348689,439,0 +170732348737,439,0 +170732348785,439,0 +170732348834,295,1 +170732348925,437,0 +170732348974,439,0 +170732349022,439,0 +170732349070,440,0 +170732349118,439,0 +170732349168,439,0 +170732349216,439,0 +170732349265,439,0 +170732349313,439,0 +170732349363,439,0 +170732349411,439,0 +170732349459,440,0 +170732349508,439,0 +170732349556,439,0 +170732349604,439,0 +170732349654,439,0 +170732349703,440,0 +170732349751,439,0 +170732349801,439,0 +170732349850,264,0 +170732349900,303,1 +170732349982,438,0 +170732350030,439,0 +170732350078,439,0 +170732350126,439,0 +170732350174,439,0 +170732350223,439,0 +170732350271,440,0 +170732350321,439,0 +170732350370,439,0 +170732350418,440,0 +170732350466,440,0 +170732350514,439,0 +170732350562,439,0 +170732350610,439,0 +170732350658,439,0 +170732350706,439,0 +170732350756,439,0 +170732350804,439,0 +170732350851,439,0 +170732350899,286,1 +170732350984,263,0 +170732351032,438,0 +170732351080,439,0 +170732351128,439,0 +170732351176,439,0 +170732351224,439,0 +170732351273,439,0 +170732351323,439,0 +170732351372,439,0 +170732351422,439,0 +170732351471,439,0 +170732351521,439,0 +170732351570,439,0 +170732351618,439,0 +170732351666,439,0 +170732351714,439,0 +170732351764,439,0 +170732351812,439,0 +170732351861,439,0 +170732351909,439,0 +170732351957,294,1 +170732352041,234,0 +170732352090,439,0 +170732352139,439,0 +170732352187,439,0 +170732352235,439,0 +170732352283,439,0 +170732352333,439,0 +170732352381,439,0 +170732352429,439,0 +170732352477,439,0 +170732352525,439,0 +170732352573,439,0 +170732352622,439,0 +170732352670,440,0 +170732352718,439,0 +170732352766,439,0 +170732352814,439,0 +170732352864,439,0 +170732352912,439,0 +170732352959,439,0 +170732353009,286,1 +170732353097,425,0 +170732353145,439,0 +170732353193,440,0 +170732353241,440,0 +170732353289,439,0 +170732353339,440,0 +170732353388,439,0 +170732353438,439,0 +170732353486,439,0 +170732353534,440,0 +170732353582,440,0 +170732353630,439,0 +170732353678,439,0 +170732353727,440,0 +170732353777,439,0 +170732353825,439,0 +170732353874,439,0 +170732353922,440,0 +170732353970,439,0 +170732354018,439,0 +170732354066,297,1 +170732354148,434,0 +170732354196,439,0 +170732354244,440,0 +170732354293,439,0 +170732354341,440,0 +170732354389,439,0 +170732354439,440,0 +170732354487,439,0 +170732354536,440,0 +170732354586,439,0 +170732354635,439,0 +170732354683,439,0 +170732354733,439,0 +170732354780,440,0 +170732354828,439,0 +170732354876,439,0 +170732354924,439,0 +170732354974,439,0 +170732355022,439,0 +170732355070,439,0 +170732355120,287,1 +170732355212,436,0 +170732355260,440,0 +170732355308,439,0 +170732355357,439,0 +170732355406,439,0 +170732355456,439,0 +170732355504,439,0 +170732355554,440,0 +170732355601,439,0 +170732355649,439,0 +170732355697,439,0 +170732355747,439,0 +170732355796,439,0 +170732355844,439,0 +170732355892,439,0 +170732355942,440,0 +170732355991,439,0 +170732356039,440,0 +170732356089,439,0 +170732356137,438,0 +170732356185,290,1 +170732356271,436,0 +170732356320,440,0 +170732356370,439,0 +170732356419,440,0 +170732356469,440,0 +170732356518,439,0 +170732356566,439,0 +170732356614,439,0 +170732356662,439,0 +170732356712,439,0 +170732356761,439,0 +170732356811,439,0 +170732356859,439,0 +170732356907,440,0 +170732356955,440,0 +170732357004,439,0 +170732357052,439,0 +170732357100,439,0 +170732357148,439,0 +170732357196,292,1 +170732357280,235,0 +170732357328,439,0 +170732357376,440,0 +170732357424,439,0 +170732357472,440,0 +170732357521,440,0 +170732357569,439,0 +170732357617,440,0 +170732357665,439,0 +170732357713,440,0 +170732357761,440,0 +170732357810,439,0 +170732357858,439,0 +170732357906,440,0 +170732357954,439,0 +170732358003,439,0 +170732358053,439,0 +170732358101,439,0 +170732358149,439,0 +170732358198,439,0 +170732358248,266,0 +170732358296,289,1 +170732358383,439,0 +170732358431,440,0 +170732358479,439,0 +170732358526,440,0 +170732358574,439,0 +170732358622,440,0 +170732358670,439,0 +170732358718,439,0 +170732358768,440,0 +170732358816,439,0 +170732358865,440,0 +170732358915,439,0 +170732358963,439,0 +170732359012,439,0 +170732359060,440,0 +170732359108,439,0 +170732359156,439,0 +170732359204,439,0 +170732359254,439,0 +170732359302,264,0 +170732359351,283,1 +170732359436,439,0 +170732359485,439,0 +170732359533,439,0 +170732359581,440,0 +170732359631,439,0 +170732359679,440,0 +170732359727,439,0 +170732359775,439,0 +170732359823,439,0 +170732359872,439,0 +170732359920,440,0 +170732359970,439,0 +170732360019,440,0 +170732360067,439,0 +170732360115,439,0 +170732360163,439,0 +170732360211,439,0 +170732360259,439,0 +170732360307,439,0 +170732360356,294,1 +170732360441,431,0 +170732360489,439,0 +170732360537,439,0 +170732360585,439,0 +170732360633,439,0 +170732360683,439,0 +170732360732,439,0 +170732360780,439,0 +170732360828,439,0 +170732360876,440,0 +170732360926,440,0 +170732360975,439,0 +170732361025,439,0 +170732361073,440,0 +170732361121,440,0 +170732361169,439,0 +170732361218,439,0 +170732361266,439,0 +170732361314,439,0 +170732361362,439,0 +170732361411,272,1 +170732361498,435,0 +170732361546,439,0 +170732361594,440,0 +170732361643,440,0 +170732361693,439,0 +170732361741,440,0 +170732361789,439,0 +170732361837,439,0 +170732361885,439,0 +170732361933,439,0 +170732361981,439,0 +170732362029,439,0 +170732362077,439,0 +170732362126,439,0 +170732362174,439,0 +170732362222,439,0 +170732362272,439,0 +170732362320,439,0 +170732362369,439,0 +170732362417,439,0 +170732362465,277,1 +170732362541,432,0 +170732362591,439,0 +170732362639,439,0 +170732362688,439,0 +170732362736,439,0 +170732362786,440,0 +170732362834,439,0 +170732362883,439,0 +170732362931,439,0 +170732362979,439,0 +170732363027,439,0 +170732363075,439,0 +170732363125,440,0 +170732363172,440,0 +170732363222,440,0 +170732363270,440,0 +170732363318,440,0 +170732363367,439,0 +170732363415,440,0 +170732363463,439,0 +170732363511,269,0 +170732363559,287,1 +170732363639,439,0 +170732363689,440,0 +170732363737,439,0 +170732363785,440,0 +170732363834,439,0 +170732363884,440,0 +170732363932,439,0 +170732363980,439,0 +170732364028,440,0 +170732364077,439,0 +170732364127,439,0 +170732364175,440,0 +170732364223,439,0 +170732364270,440,0 +170732364318,439,0 +170732364366,440,0 +170732364414,439,0 +170732364462,440,0 +170732364510,439,0 +170732364560,249,0 +170732364609,249,0 +170732364657,436,0 +170732364705,438,0 +170732364755,438,0 +170732364803,438,0 +170732364852,437,0 +170732364900,438,0 +170732364948,438,0 +170732364996,438,0 +170732365044,438,0 +170732365092,438,0 +170732365140,438,0 +170732365189,438,0 +170732365237,438,0 +170732365287,438,0 +170732365336,438,0 +170732365384,438,0 +170732365432,438,0 +170732365480,438,0 +170732365528,437,0 +170732365578,401,0 +170732365626,268,0 +170732365674,242,0 +170732365723,437,0 +170732365771,438,0 +170732365819,438,0 +170732365867,438,0 +170732365916,438,0 +170732365964,438,0 +170732366012,438,0 +170732366062,438,0 +170732366111,438,0 +170732366159,437,0 +170732366207,438,0 +170732366255,438,0 +170732366303,438,0 +170732366351,438,0 +170732366399,438,0 +170732366448,438,0 +170732366498,438,0 +170732366546,438,0 +170732366594,437,0 +170732366642,298,1 +170732366726,238,0 +170732366776,437,0 +170732366824,438,0 +170732366872,438,0 +170732366921,438,0 +170732366969,438,0 +170732367017,438,0 +170732367065,438,0 +170732367113,438,0 +170732367161,438,0 +170732367210,438,0 +170732367258,438,0 +170732367306,438,0 +170732367354,438,0 +170732367402,438,0 +170732367449,438,0 +170732367497,438,0 +170732367547,438,0 +170732367596,438,0 +170732367644,437,0 +170732367692,268,0 +170732367740,274,1 +170732367826,438,0 +170732367874,438,0 +170732367922,438,0 +170732367970,438,0 +170732368018,438,0 +170732368066,438,0 +170732368114,438,0 +170732368162,438,0 +170732368209,438,0 +170732368257,437,0 +170732368305,438,0 +170732368353,438,0 +170732368401,438,0 +170732368449,438,0 +170732368497,438,0 +170732368545,438,0 +170732368594,438,0 +170732368642,438,0 +170732368690,437,0 +170732368738,283,1 +170732368827,280,1 +170732368902,438,0 +170732368952,438,0 +170732369000,438,0 +170732369048,438,0 +170732369096,438,0 +170732369145,438,0 +170732369193,437,0 +170732369241,438,0 +170732369289,438,0 +170732369337,438,0 +170732369385,438,0 +170732369433,437,0 +170732369481,438,0 +170732369530,438,0 +170732369580,438,0 +170732369628,438,0 +170732369676,438,0 +170732369724,438,0 +170732369772,408,0 +170732369820,291,1 +170732369901,435,0 +170732369949,438,0 +170732369997,438,0 +170732370045,438,0 +170732370093,438,0 +170732370140,437,0 +170732370188,438,0 +170732370236,437,0 +170732370284,438,0 +170732370332,438,0 +170732370382,437,0 +170732370431,437,0 +170732370481,437,0 +170732370529,438,0 +170732370577,438,0 +170732370626,437,0 +170732370674,438,0 +170732370722,438,0 +170732370771,438,0 +170732370819,431,0 +170732370867,279,1 +170732370954,436,0 +170732371004,438,0 +170732371051,438,0 +170732371101,437,0 +170732371149,438,0 +170732371199,438,0 +170732371248,438,0 +170732371298,438,0 +170732371346,437,0 +170732371395,438,0 +170732371443,437,0 +170732371491,437,0 +170732371540,438,0 +170732371590,438,0 +170732371638,438,0 +170732371686,437,0 +170732371735,437,0 +170732371785,438,0 +170732371834,437,0 +170732371884,280,1 +170732371961,245,0 +170732372011,437,0 +170732372059,438,0 +170732372109,438,0 +170732372158,438,0 +170732372206,438,0 +170732372254,438,0 +170732372302,437,0 +170732372350,438,0 +170732372399,438,0 +170732372447,438,0 +170732372495,437,0 +170732372545,438,0 +170732372593,438,0 +170732372642,438,0 +170732372692,438,0 +170732372740,438,0 +170732372789,437,0 +170732372837,437,0 +170732372885,437,0 +170732372935,294,1 +170732373019,356,0 +170732373069,437,0 +170732373117,437,0 +170732373165,437,0 +170732373214,437,0 +170732373262,438,0 +170732373312,438,0 +170732373361,438,0 +170732373409,438,0 +170732373457,438,0 +170732373505,437,0 +170732373553,438,0 +170732373601,437,0 +170732373649,437,0 +170732373698,438,0 +170732373746,438,0 +170732373794,438,0 +170732373842,438,0 +170732373892,437,0 +170732373941,437,0 +170732373989,273,1 +170732374072,426,0 +170732374120,438,0 +170732374168,438,0 +170732374216,438,0 +170732374264,438,0 +170732374312,438,0 +170732374361,438,0 +170732374409,438,0 +170732374457,438,0 +170732374505,438,0 +170732374553,438,0 +170732374603,438,0 +170732374651,438,0 +170732374699,438,0 +170732374747,438,0 +170732374796,438,0 +170732374846,437,0 +170732374894,438,0 +170732374942,437,0 +170732374990,437,0 +170732375038,284,1 +170732375124,426,0 +170732375173,437,0 +170732375221,438,0 +170732375269,438,0 +170732375317,438,0 +170732375365,438,0 +170732375413,438,0 +170732375461,438,0 +170732375509,438,0 +170732375559,438,0 +170732375607,438,0 +170732375656,438,0 +170732375704,438,0 +170732375752,438,0 +170732375800,438,0 +170732375848,437,0 +170732375896,438,0 +170732375945,437,0 +170732375993,438,0 +170732376041,436,0 +170732376089,283,1 +170732376171,424,0 +170732376221,437,0 +170732376268,438,0 +170732376316,438,0 +170732376366,438,0 +170732376414,438,0 +170732376462,438,0 +170732376510,438,0 +170732376558,437,0 +170732376607,438,0 +170732376655,438,0 +170732376703,438,0 +170732376751,438,0 +170732376798,438,0 +170732376846,438,0 +170732376894,438,0 +170732376942,437,0 +170732376990,438,0 +170732377038,437,0 +170732377086,437,0 +170732377134,280,1 +170732377216,330,0 +170732377264,438,0 +170732377312,437,0 +170732377362,438,0 +170732377409,438,0 +170732377457,438,0 +170732377505,438,0 +170732377553,438,0 +170732377602,438,0 +170732377650,438,0 +170732377698,437,0 +170732377746,438,0 +170732377794,438,0 +170732377842,438,0 +170732377891,438,0 +170732377941,438,0 +170732377989,438,0 +170732378038,437,0 +170732378088,438,0 +170732378137,437,0 +170732378187,270,1 +170732378266,229,0 +170732378314,437,0 +170732378364,438,0 +170732378412,437,0 +170732378461,438,0 +170732378509,438,0 +170732378557,438,0 +170732378605,437,0 +170732378653,438,0 +170732378702,438,0 +170732378752,438,0 +170732378800,438,0 +170732378849,438,0 +170732378897,437,0 +170732378945,438,0 +170732378993,437,0 +170732379041,438,0 +170732379089,438,0 +170732379137,438,0 +170732379185,437,0 +170732379233,264,0 +170732379282,271,1 +170732379370,437,0 +170732379418,438,0 +170732379468,438,0 +170732379517,437,0 +170732379567,438,0 +170732379616,437,0 +170732379666,438,0 +170732379715,438,0 +170732379763,438,0 +170732379813,438,0 +170732379861,438,0 +170732379909,438,0 +170732379957,437,0 +170732380006,438,0 +170732380054,438,0 +170732380102,438,0 +170732380150,438,0 +170732380198,437,0 +170732380245,436,0 +170732380293,285,1 +170732380376,431,0 +170732380424,437,0 +170732380472,438,0 +170732380520,438,0 +170732380569,437,0 +170732380617,438,0 +170732380665,437,0 +170732380713,438,0 +170732380761,438,0 +170732380809,438,0 +170732380857,437,0 +170732380906,438,0 +170732380954,438,0 +170732381002,438,0 +170732381050,438,0 +170732381098,438,0 +170732381146,438,0 +170732381194,438,0 +170732381241,438,0 +170732381289,437,0 +170732381337,288,1 +170732381416,429,0 +170732381464,437,0 +170732381512,438,0 +170732381561,438,0 +170732381609,438,0 +170732381659,438,0 +170732381708,438,0 +170732381756,438,0 +170732381804,437,0 +170732381852,438,0 +170732381902,438,0 +170732381950,438,0 +170732381998,438,0 +170732382046,438,0 +170732382094,437,0 +170732382143,437,0 +170732382193,438,0 +170732382242,438,0 +170732382290,438,0 +170732382339,436,0 +170732382387,279,1 +170732382475,431,0 +170732382524,437,0 +170732382572,437,0 +170732382620,438,0 +170732382668,438,0 +170732382716,438,0 +170732382764,438,0 +170732382812,438,0 +170732382860,438,0 +170732382908,437,0 +170732382955,438,0 +170732383003,438,0 +170732383051,437,0 +170732383099,438,0 +170732383147,437,0 +170732383195,438,0 +170732383243,438,0 +170732383291,438,0 +170732383339,437,0 +170732383386,436,0 +170732383434,291,1 +170732383522,434,0 +170732383570,438,0 +170732383618,438,0 +170732383666,437,0 +170732383714,437,0 +170732383762,437,0 +170732383810,437,0 +170732383857,438,0 +170732383905,437,0 +170732383953,438,0 +170732384001,438,0 +170732384049,438,0 +170732384099,438,0 +170732384148,438,0 +170732384196,438,0 +170732384244,437,0 +170732384292,438,0 +170732384340,437,0 +170732384390,438,0 +170732384437,436,0 +170732384485,282,1 +170732384566,428,0 +170732384615,438,0 +170732384665,438,0 +170732384714,437,0 +170732384762,438,0 +170732384810,438,0 +170732384858,437,0 +170732384906,437,0 +170732384954,437,0 +170732385002,438,0 +170732385050,438,0 +170732385100,438,0 +170732385148,438,0 +170732385196,438,0 +170732385245,438,0 +170732385294,437,0 +170732385342,437,0 +170732385390,437,0 +170732385438,437,0 +170732385486,437,0 +170732385534,253,0 +170732385582,299,1 +170732385668,437,0 +170732385716,437,0 +170732385764,437,0 +170732385812,438,0 +170732385860,437,0 +170732385907,438,0 +170732385955,437,0 +170732386003,437,0 +170732386053,438,0 +170732386101,438,0 +170732386148,438,0 +170732386196,438,0 +170732386244,437,0 +170732386292,438,0 +170732386340,438,0 +170732386388,438,0 +170732386436,438,0 +170732386484,437,0 +170732386531,437,0 +170732386581,260,0 +170732386629,266,0 +170732386677,436,0 +170732386725,438,0 +170732386772,438,0 +170732386820,437,0 +170732386868,438,0 +170732386916,438,0 +170732386964,438,0 +170732387012,438,0 +170732387060,438,0 +170732387109,438,0 +170732387157,438,0 +170732387205,438,0 +170732387253,438,0 +170732387301,437,0 +170732387348,438,0 +170732387396,438,0 +170732387444,437,0 +170732387492,438,0 +170732387540,437,0 +170732387588,408,0 +170732387636,290,1 +170732387716,433,0 +170732387766,437,0 +170732387815,438,0 +170732387863,437,0 +170732387911,438,0 +170732387959,438,0 +170732388007,437,0 +170732388055,438,0 +170732388102,437,0 +170732388150,437,0 +170732388198,437,0 +170732388248,437,0 +170732388297,438,0 +170732388345,438,0 +170732388393,437,0 +170732388441,438,0 +170732388489,438,0 +170732388537,437,0 +170732388586,438,0 +170732388634,434,0 +170732388683,281,1 +170732388764,432,0 +170732388812,438,0 +170732388860,438,0 +170732388908,437,0 +170732388956,438,0 +170732389004,438,0 +170732389052,438,0 +170732389100,438,0 +170732389148,438,0 +170732389195,438,0 +170732389245,438,0 +170732389293,438,0 +170732389341,438,0 +170732389388,437,0 +170732389436,437,0 +170732389484,438,0 +170732389532,438,0 +170732389580,437,0 +170732389628,437,0 +170732389676,437,0 +170732389725,294,1 +170732389809,434,0 +170732389857,437,0 +170732389905,438,0 +170732389953,437,0 +170732390001,438,0 +170732390048,438,0 +170732390096,438,0 +170732390144,437,0 +170732390192,438,0 +170732390240,438,0 +170732390289,437,0 +170732390337,438,0 +170732390385,438,0 +170732390433,438,0 +170732390481,438,0 +170732390529,437,0 +170732390578,438,0 +170732390626,437,0 +170732390674,438,0 +170732390722,437,0 +170732390770,297,1 +170732390851,428,0 +170732390901,437,0 +170732390949,437,0 +170732390998,438,0 +170732391048,437,0 +170732391095,438,0 +170732391143,438,0 +170732391191,438,0 +170732391239,437,0 +170732391288,437,0 +170732391336,438,0 +170732391384,438,0 +170732391432,438,0 +170732391480,437,0 +170732391528,438,0 +170732391578,438,0 +170732391627,438,0 +170732391675,438,0 +170732391723,437,0 +170732391770,437,0 +170732391820,291,1 +170732391910,429,0 +170732391958,437,0 +170732392007,438,0 +170732392055,437,0 +170732392103,438,0 +170732392151,438,0 +170732392199,438,0 +170732392247,438,0 +170732392295,438,0 +170732392343,437,0 +170732392392,438,0 +170732392440,438,0 +170732392490,438,0 +170732392538,438,0 +170732392587,438,0 +170732392637,438,0 +170732392685,437,0 +170732392733,438,0 +170732392781,438,0 +170732392828,438,0 +170732392876,437,0 +170732392924,437,0 +170732392972,438,0 +170732393020,438,0 +170732393068,438,0 +170732393118,438,0 +170732393165,438,0 +170732393213,438,0 +170732393261,437,0 +170732393311,437,0 +170732393359,277,1 +170732393442,273,1 +170732393525,437,0 +170732393573,438,0 +170732393622,437,0 +170732393672,438,0 +170732393721,438,0 +170732393771,438,0 +170732393819,438,0 +170732393868,438,0 +170732393916,438,0 +170732393964,438,0 +170732394012,438,0 +170732394060,438,0 +170732394108,438,0 +170732394157,437,0 +170732394205,437,0 +170732394253,438,0 +170732394301,437,0 +170732394351,437,0 +170732394400,431,0 +170732394448,296,1 +170732394534,434,0 +170732394582,438,0 +170732394630,438,0 +170732394678,437,0 +170732394728,438,0 +170732394776,438,0 +170732394825,438,0 +170732394873,437,0 +170732394921,437,0 +170732394969,437,0 +170732395017,438,0 +170732395065,438,0 +170732395113,437,0 +170732395163,438,0 +170732395210,438,0 +170732395260,437,0 +170732395309,437,0 +170732395357,438,0 +170732395407,437,0 +170732395456,284,1 +170732395539,269,0 +170732395587,436,0 +170732395637,438,0 +170732395685,438,0 +170732395733,438,0 +170732395781,438,0 +170732395829,438,0 +170732395876,437,0 +170732395924,437,0 +170732395972,438,0 +170732396020,437,0 +170732396068,438,0 +170732396116,437,0 +170732396164,438,0 +170732396212,438,0 +170732396260,438,0 +170732396307,438,0 +170732396357,437,0 +170732396405,438,0 +170732396453,438,0 +170732396501,270,1 +170732396584,292,1 +170732396665,438,0 +170732396713,438,0 +170732396761,438,0 +170732396809,437,0 +170732396857,438,0 +170732396904,437,0 +170732396952,438,0 +170732397000,438,0 +170732397050,438,0 +170732397099,438,0 +170732397147,437,0 +170732397195,438,0 +170732397244,438,0 +170732397294,438,0 +170732397342,438,0 +170732397390,437,0 +170732397437,438,0 +170732397485,437,0 +170732397535,436,0 +170732397583,294,1 +170732397674,433,0 +170732397722,437,0 +170732397770,438,0 +170732397818,438,0 +170732397865,438,0 +170732397913,438,0 +170732397963,438,0 +170732398011,438,0 +170732398059,438,0 +170732398106,438,0 +170732398154,437,0 +170732398202,438,0 +170732398250,437,0 +170732398298,438,0 +170732398346,438,0 +170732398394,438,0 +170732398443,437,0 +170732398491,438,0 +170732398539,438,0 +170732398587,436,0 +170732398635,273,1 +170732398720,431,0 +170732398768,438,0 +170732398816,437,0 +170732398864,438,0 +170732398912,438,0 +170732398960,438,0 +170732399008,438,0 +170732399056,438,0 +170732399105,438,0 +170732399153,438,0 +170732399201,438,0 +170732399249,437,0 +170732399297,438,0 +170732399347,438,0 +170732399395,438,0 +170732399443,438,0 +170732399490,438,0 +170732399538,438,0 +170732399586,437,0 +170732399634,437,0 +170732399682,299,1 +170732399764,431,0 +170732399813,438,0 +170732399861,438,0 +170732399909,438,0 +170732399959,438,0 +170732400007,437,0 +170732400055,438,0 +170732400103,437,0 +170732400151,437,0 +170732400200,438,0 +170732400248,438,0 +170732400298,438,0 +170732400346,438,0 +170732400395,438,0 +170732400443,438,0 +170732400491,438,0 +170732400539,438,0 +170732400589,438,0 +170732400638,437,0 +170732400688,437,0 +170732400737,272,1 +170732400817,430,0 +170732400867,438,0 +170732400915,437,0 +170732400963,438,0 +170732401011,437,0 +170732401060,438,0 +170732401108,438,0 +170732401158,437,0 +170732401206,438,0 +170732401255,438,0 +170732401305,437,0 +170732401354,438,0 +170732401402,438,0 +170732401450,438,0 +170732401498,438,0 +170732401548,438,0 +170732401596,437,0 +170732401644,437,0 +170732401692,438,0 +170732401739,345,0 +170732401789,300,1 +170732401885,437,0 +170732401932,438,0 +170732401982,438,0 +170732402030,438,0 +170732402080,438,0 +170732402127,437,0 +170732402177,438,0 +170732402227,438,0 +170732402276,438,0 +170732402324,438,0 +170732402373,437,0 +170732402421,437,0 +170732402471,438,0 +170732402519,438,0 +170732402567,438,0 +170732402615,438,0 +170732402664,438,0 +170732402714,438,0 +170732402763,437,0 +170732402811,281,1 +170732402889,237,0 +170732402939,437,0 +170732402987,438,0 +170732403035,438,0 +170732403083,438,0 +170732403131,437,0 +170732403180,438,0 +170732403230,438,0 +170732403278,438,0 +170732403327,438,0 +170732403375,438,0 +170732403423,437,0 +170732403473,438,0 +170732403521,438,0 +170732403570,437,0 +170732403618,438,0 +170732403667,438,0 +170732403717,437,0 +170732403767,438,0 +170732403814,437,0 +170732403862,284,1 +170732403943,317,0 +170732403991,437,0 +170732404039,438,0 +170732404086,437,0 +170732404134,438,0 +170732404182,438,0 +170732404232,438,0 +170732404281,438,0 +170732404331,438,0 +170732404381,438,0 +170732404428,438,0 +170732404476,438,0 +170732404526,438,0 +170732404574,438,0 +170732404622,438,0 +170732404670,438,0 +170732404719,438,0 +170732404769,438,0 +170732404817,438,0 +170732404866,437,0 +170732404916,285,1 +170732405003,430,0 +170732405052,437,0 +170732405100,438,0 +170732405150,438,0 +170732405198,438,0 +170732405246,438,0 +170732405293,438,0 +170732405341,438,0 +170732405389,438,0 +170732405437,438,0 +170732405487,438,0 +170732405534,438,0 +170732405584,437,0 +170732405632,438,0 +170732405681,437,0 +170732405731,438,0 +170732405779,438,0 +170732405829,438,0 +170732405878,437,0 +170732405926,437,0 +170732405974,297,1 +170732406056,429,0 +170732406104,437,0 +170732406152,438,0 +170732406201,438,0 +170732406249,437,0 +170732406299,438,0 +170732406347,438,0 +170732406395,437,0 +170732406444,438,0 +170732406492,438,0 +170732406540,438,0 +170732406588,437,0 +170732406638,438,0 +170732406686,438,0 +170732406735,437,0 +170732406784,438,0 +170732406832,438,0 +170732406882,438,0 +170732406931,438,0 +170732406979,436,0 +170732407027,283,1 +170732407113,430,0 +170732407161,438,0 +170732407209,438,0 +170732407257,438,0 +170732407305,438,0 +170732407353,438,0 +170732407401,438,0 +170732407449,438,0 +170732407497,438,0 +170732407545,438,0 +170732407593,438,0 +170732407641,438,0 +170732407688,438,0 +170732407736,438,0 +170732407784,438,0 +170732407832,437,0 +170732407880,438,0 +170732407928,438,0 +170732407977,438,0 +170732408025,437,0 +170732408073,268,0 +170732408121,287,1 +170732408209,438,0 +170732408258,438,0 +170732408306,438,0 +170732408354,438,0 +170732408402,438,0 +170732408450,437,0 +170732408498,438,0 +170732408546,438,0 +170732408594,437,0 +170732408641,438,0 +170732408689,438,0 +170732408737,438,0 +170732408785,438,0 +170732408833,438,0 +170732408881,438,0 +170732408929,438,0 +170732408977,437,0 +170732409025,437,0 +170732409072,436,0 +170732409120,299,1 +170732409204,431,0 +170732409252,438,0 +170732409299,438,0 +170732409347,438,0 +170732409395,437,0 +170732409443,438,0 +170732409491,438,0 +170732409539,438,0 +170732409587,437,0 +170732409635,437,0 +170732409683,438,0 +170732409730,438,0 +170732409778,438,0 +170732409826,437,0 +170732409874,438,0 +170732409924,437,0 +170732409972,438,0 +170732410020,437,0 +170732410069,438,0 +170732410117,437,0 +170732410165,271,1 +170732410249,430,0 +170732410297,438,0 +170732410347,438,0 +170732410395,438,0 +170732410443,438,0 +170732410491,438,0 +170732410539,438,0 +170732410587,438,0 +170732410634,438,0 +170732410682,438,0 +170732410730,438,0 +170732410780,438,0 +170732410828,438,0 +170732410876,438,0 +170732410923,438,0 +170732410973,437,0 +170732411021,438,0 +170732411069,438,0 +170732411116,437,0 +170732411164,437,0 +170732411212,277,1 +170732411296,429,0 +170732411344,437,0 +170732411392,438,0 +170732411440,438,0 +170732411488,438,0 +170732411535,438,0 +170732411585,438,0 +170732411633,438,0 +170732411681,438,0 +170732411728,438,0 +170732411776,438,0 +170732411824,437,0 +170732411872,438,0 +170732411920,438,0 +170732411968,438,0 +170732412016,438,0 +170732412064,438,0 +170732412111,438,0 +170732412159,438,0 +170732412209,437,0 +170732412257,277,1 +170732412340,430,0 +170732412388,438,0 +170732412436,438,0 +170732412484,438,0 +170732412533,438,0 +170732412581,438,0 +170732412629,438,0 +170732412677,438,0 +170732412725,438,0 +170732412773,438,0 +170732412822,438,0 +170732412872,438,0 +170732412920,438,0 +170732412968,438,0 +170732413017,437,0 +170732413067,438,0 +170732413115,438,0 +170732413163,438,0 +170732413211,438,0 +170732413259,437,0 +170732413307,288,1 +170732413391,231,0 +170732413439,437,0 +170732413488,437,0 +170732413536,438,0 +170732413584,438,0 +170732413632,438,0 +170732413681,438,0 +170732413731,438,0 +170732413780,437,0 +170732413828,438,0 +170732413876,438,0 +170732413924,437,0 +170732413972,438,0 +170732414020,438,0 +170732414068,438,0 +170732414115,438,0 +170732414163,438,0 +170732414213,438,0 +170732414262,437,0 +170732414310,437,0 +170732414358,294,1 +170732414438,240,0 +170732414486,437,0 +170732414536,438,0 +170732414584,438,0 +170732414632,438,0 +170732414679,438,0 +170732414727,437,0 +170732414775,437,0 +170732414823,438,0 +170732414871,437,0 +170732414919,437,0 +170732414969,437,0 +170732415017,437,0 +170732415064,437,0 +170732415112,438,0 +170732415160,438,0 +170732415208,438,0 +170732415256,438,0 +170732415304,437,0 +170732415352,437,0 +170732415399,274,1 +170732415482,233,0 +170732415532,437,0 +170732415582,438,0 +170732415631,437,0 +170732415679,438,0 +170732415727,438,0 +170732415777,437,0 +170732415825,437,0 +170732415873,437,0 +170732415920,438,0 +170732415970,438,0 +170732416018,437,0 +170732416068,437,0 +170732416116,437,0 +170732416165,438,0 +170732416213,438,0 +170732416261,438,0 +170732416309,438,0 +170732416358,437,0 +170732416406,437,0 +170732416454,271,1 +170732416539,427,0 +170732416592,437,0 +170732416640,438,0 +170732416688,437,0 +170732416737,437,0 +170732416787,437,0 +170732416835,437,0 +170732416884,438,0 +170732416932,438,0 +170732416980,438,0 +170732417028,438,0 +170732417078,437,0 +170732417126,438,0 +170732417173,437,0 +170732417223,437,0 +170732417272,438,0 +170732417320,437,0 +170732417368,437,0 +170732417416,438,0 +170732417464,436,0 +170732417514,289,1 +170732417600,431,0 +170732417649,438,0 +170732417697,438,0 +170732417747,438,0 +170732417796,437,0 +170732417846,438,0 +170732417895,438,0 +170732417943,437,0 +170732417991,438,0 +170732418041,437,0 +170732418090,438,0 +170732418140,437,0 +170732418188,437,0 +170732418236,438,0 +170732418284,438,0 +170732418331,437,0 +170732418379,438,0 +170732418427,438,0 +170732418475,437,0 +170732418525,427,0 +170732418573,288,1 +170732418656,434,0 +170732418704,438,0 +170732418752,438,0 +170732418800,437,0 +170732418848,438,0 +170732418896,438,0 +170732418945,438,0 +170732418993,437,0 +170732419041,438,0 +170732419089,437,0 +170732419137,437,0 +170732419186,438,0 +170732419234,438,0 +170732419282,437,0 +170732419330,437,0 +170732419379,438,0 +170732419427,437,0 +170732419475,437,0 +170732419523,437,0 +170732419571,434,0 +170732419620,279,1 +170732419711,436,0 +170732419760,437,0 +170732419808,438,0 +170732419856,437,0 +170732419903,438,0 +170732419951,437,0 +170732419999,437,0 +170732420047,438,0 +170732420097,437,0 +170732420145,438,0 +170732420192,438,0 +170732420240,437,0 +170732420290,438,0 +170732420338,438,0 +170732420386,437,0 +170732420434,438,0 +170732420482,438,0 +170732420530,438,0 +170732420579,437,0 +170732420629,290,1 +170732420708,288,1 +170732420788,437,0 +170732420836,437,0 +170732420884,438,0 +170732420932,437,0 +170732420980,437,0 +170732421028,438,0 +170732421076,438,0 +170732421124,437,0 +170732421172,438,0 +170732421220,437,0 +170732421269,438,0 +170732421319,438,0 +170732421367,438,0 +170732421416,438,0 +170732421464,437,0 +170732421514,438,0 +170732421562,437,0 +170732421610,438,0 +170732421659,437,0 +170732421707,298,1 +170732421792,430,0 +170732421840,437,0 +170732421890,437,0 +170732421938,438,0 +170732421986,438,0 +170732422035,437,0 +170732422083,438,0 +170732422133,438,0 +170732422181,437,0 +170732422229,438,0 +170732422277,438,0 +170732422325,437,0 +170732422374,438,0 +170732422422,437,0 +170732422472,438,0 +170732422521,438,0 +170732422569,438,0 +170732422619,437,0 +170732422667,437,0 +170732422714,437,0 +170732422764,293,1 +170732422851,432,0 +170732422898,437,0 +170732422948,438,0 +170732422996,437,0 +170732423045,437,0 +170732423093,438,0 +170732423143,438,0 +170732423191,437,0 +170732423239,437,0 +170732423287,437,0 +170732423335,438,0 +170732423383,438,0 +170732423431,438,0 +170732423479,437,0 +170732423527,438,0 +170732423575,438,0 +170732423623,437,0 +170732423671,437,0 +170732423718,437,0 +170732423766,436,0 +170732423814,279,1 +170732423903,434,0 +170732423953,438,0 +170732424002,438,0 +170732424052,438,0 +170732424100,438,0 +170732424148,437,0 +170732424196,437,0 +170732424244,437,0 +170732424293,438,0 +170732424343,437,0 +170732424391,438,0 +170732424439,437,0 +170732424487,438,0 +170732424535,437,0 +170732424582,437,0 +170732424630,437,0 +170732424678,437,0 +170732424726,437,0 +170732424774,437,0 +170732424822,265,0 +170732424870,282,1 +170732424958,436,0 +170732425006,437,0 +170732425054,437,0 +170732425102,438,0 +170732425149,437,0 +170732425197,438,0 +170732425245,437,0 +170732425295,437,0 +170732425344,437,0 +170732425392,438,0 +170732425440,437,0 +170732425488,438,0 +170732425538,437,0 +170732425587,438,0 +170732425635,437,0 +170732425683,437,0 +170732425731,438,0 +170732425779,437,0 +170732425827,437,0 +170732425877,261,0 +170732425924,267,0 +170732425972,234,0 +170732426020,437,0 +170732426068,437,0 +170732426116,437,0 +170732426164,437,0 +170732426212,437,0 +170732426260,437,0 +170732426308,437,0 +170732426356,437,0 +170732426403,437,0 +170732426451,437,0 +170732426499,437,0 +170732426548,437,0 +170732426596,437,0 +170732426644,438,0 +170732426692,437,0 +170732426742,437,0 +170732426790,437,0 +170732426839,437,0 +170732426887,437,0 +170732426937,251,0 +170732426985,288,1 +170732427071,437,0 +170732427119,438,0 +170732427167,437,0 +170732427217,437,0 +170732427265,437,0 +170732427313,437,0 +170732427361,438,0 +170732427410,438,0 +170732427460,438,0 +170732427508,437,0 +170732427557,437,0 +170732427605,437,0 +170732427653,437,0 +170732427701,437,0 +170732427749,437,0 +170732427798,437,0 +170732427848,437,0 +170732427897,437,0 +170732427945,437,0 +170732427993,261,0 +170732428041,290,1 +170732428127,437,0 +170732428175,437,0 +170732428224,438,0 +170732428274,438,0 +170732428322,437,0 +170732428370,438,0 +170732428418,438,0 +170732428465,437,0 +170732428513,438,0 +170732428561,437,0 +170732428609,438,0 +170732428657,437,0 +170732428705,438,0 +170732428753,437,0 +170732428801,437,0 +170732428849,437,0 +170732428896,437,0 +170732428944,437,0 +170732428992,437,0 +170732429042,266,0 +170732429090,317,0 +170732429138,417,0 +170732429186,437,0 +170732429234,437,0 +170732429281,438,0 +170732429329,437,0 +170732429377,437,0 +170732429425,437,0 +170732429473,438,0 +170732429521,437,0 +170732429569,438,0 +170732429618,437,0 +170732429666,438,0 +170732429716,437,0 +170732429765,437,0 +170732429813,437,0 +170732429861,437,0 +170732429909,437,0 +170732429957,437,0 +170732430007,438,0 +170732430055,436,0 +170732430103,296,1 +170732430190,431,0 +170732430238,437,0 +170732430286,437,0 +170732430334,437,0 +170732430383,438,0 +170732430433,437,0 +170732430480,437,0 +170732430528,437,0 +170732430576,437,0 +170732430624,437,0 +170732430672,437,0 +170732430720,437,0 +170732430770,437,0 +170732430818,437,0 +170732430866,437,0 +170732430915,437,0 +170732430965,437,0 +170732431013,437,0 +170732431061,437,0 +170732431110,273,1 +170732431202,259,0 +170732431250,435,0 +170732431298,437,0 +170732431347,437,0 +170732431395,438,0 +170732431443,437,0 +170732431493,438,0 +170732431541,437,0 +170732431589,437,0 +170732431637,437,0 +170732431685,438,0 +170732431733,437,0 +170732431782,438,0 +170732431830,437,0 +170732431880,437,0 +170732431929,437,0 +170732431977,437,0 +170732432025,437,0 +170732432074,437,0 +170732432124,437,0 +170732432173,285,1 +170732432262,287,1 +170732432342,437,0 +170732432390,437,0 +170732432440,437,0 +170732432489,438,0 +170732432537,437,0 +170732432587,437,0 +170732432635,437,0 +170732432683,438,0 +170732432731,437,0 +170732432779,438,0 +170732432828,437,0 +170732432876,437,0 +170732432926,437,0 +170732432973,437,0 +170732433021,438,0 +170732433071,438,0 +170732433119,437,0 +170732433167,437,0 +170732433215,269,0 +170732433263,297,1 +170732433345,436,0 +170732433395,437,0 +170732433443,437,0 +170732433491,438,0 +170732433539,437,0 +170732433587,437,0 +170732433635,438,0 +170732433682,437,0 +170732433730,438,0 +170732433778,437,0 +170732433826,437,0 +170732433874,438,0 +170732433922,437,0 +170732433970,437,0 +170732434018,438,0 +170732434066,437,0 +170732434114,438,0 +170732434162,437,0 +170732434210,437,0 +170732434259,291,1 +170732434346,237,0 +170732434396,437,0 +170732434445,437,0 +170732434493,437,0 +170732434541,437,0 +170732434589,437,0 +170732434637,437,0 +170732434686,437,0 +170732434734,437,0 +170732434782,437,0 +170732434830,437,0 +170732434878,437,0 +170732434926,437,0 +170732434976,437,0 +170732435023,437,0 +170732435073,437,0 +170732435121,437,0 +170732435169,437,0 +170732435216,438,0 +170732435264,437,0 +170732435312,287,1 +170732435408,232,0 +170732435457,437,0 +170732435507,437,0 +170732435555,437,0 +170732435603,437,0 +170732435652,437,0 +170732435700,437,0 +170732435748,437,0 +170732435797,438,0 +170732435845,437,0 +170732435893,437,0 +170732435941,437,0 +170732435989,437,0 +170732436038,437,0 +170732436086,437,0 +170732436134,437,0 +170732436182,437,0 +170732436230,437,0 +170732436279,437,0 +170732436327,437,0 +170732436375,288,1 +170732436468,357,0 +170732436516,437,0 +170732436563,438,0 +170732436613,438,0 +170732436661,437,0 +170732436709,437,0 +170732436759,437,0 +170732436808,437,0 +170732436856,438,0 +170732436904,437,0 +170732436952,438,0 +170732437000,437,0 +170732437047,437,0 +170732437095,437,0 +170732437143,438,0 +170732437191,437,0 +170732437240,437,0 +170732437288,437,0 +170732437336,437,0 +170732437386,436,0 +170732437434,310,0 +170732437482,303,1 +170732437566,438,0 +170732437614,438,0 +170732437663,437,0 +170732437711,437,0 +170732437759,437,0 +170732437808,437,0 +170732437856,437,0 +170732437906,437,0 +170732437954,438,0 +170732438002,437,0 +170732438050,438,0 +170732438099,437,0 +170732438147,437,0 +170732438197,437,0 +170732438244,437,0 +170732438292,437,0 +170732438342,437,0 +170732438391,437,0 +170732438439,436,0 +170732438487,295,1 +170732438577,434,0 +170732438625,438,0 +170732438673,437,0 +170732438721,437,0 +170732438771,438,0 +170732438819,438,0 +170732438868,437,0 +170732438918,438,0 +170732438967,438,0 +170732439015,438,0 +170732439063,438,0 +170732439113,438,0 +170732439162,438,0 +170732439212,438,0 +170732439261,438,0 +170732439311,438,0 +170732439359,437,0 +170732439407,437,0 +170732439456,437,0 +170732439504,402,0 +170732439554,295,1 +170732439643,436,0 +170732439692,437,0 +170732439740,438,0 +170732439788,438,0 +170732439836,438,0 +170732439884,437,0 +170732439932,438,0 +170732439980,437,0 +170732440029,438,0 +170732440077,438,0 +170732440125,437,0 +170732440175,438,0 +170732440222,438,0 +170732440270,437,0 +170732440318,437,0 +170732440366,438,0 +170732440415,438,0 +170732440463,438,0 +170732440511,437,0 +170732440559,304,1 +170732440644,244,0 +170732440691,436,0 +170732440739,437,0 +170732440787,438,0 +170732440835,438,0 +170732440885,437,0 +170732440933,438,0 +170732440981,438,0 +170732441029,438,0 +170732441078,438,0 +170732441126,437,0 +170732441174,438,0 +170732441222,438,0 +170732441271,437,0 +170732441319,437,0 +170732441367,438,0 +170732441415,438,0 +170732441465,437,0 +170732441513,438,0 +170732441561,437,0 +170732441609,298,1 +170732441687,262,0 +170732441737,437,0 +170732441786,437,0 +170732441836,438,0 +170732441885,438,0 +170732441933,437,0 +170732441981,438,0 +170732442031,438,0 +170732442080,437,0 +170732442130,438,0 +170732442178,438,0 +170732442226,438,0 +170732442275,438,0 +170732442325,438,0 +170732442373,438,0 +170732442421,437,0 +170732442470,438,0 +170732442518,438,0 +170732442566,438,0 +170732442614,437,0 +170732442662,273,1 +170732442743,273,1 +170732442829,438,0 +170732442879,437,0 +170732442928,438,0 +170732442976,437,0 +170732443024,437,0 +170732443072,438,0 +170732443120,438,0 +170732443169,438,0 +170732443217,437,0 +170732443265,437,0 +170732443313,438,0 +170732443361,438,0 +170732443409,437,0 +170732443457,438,0 +170732443505,438,0 +170732443553,437,0 +170732443600,438,0 +170732443648,437,0 +170732443696,384,0 +170732443744,304,1 +170732443833,435,0 +170732443881,438,0 +170732443928,438,0 +170732443978,438,0 +170732444026,438,0 +170732444074,438,0 +170732444123,438,0 +170732444171,438,0 +170732444221,438,0 +170732444270,438,0 +170732444318,438,0 +170732444366,438,0 +170732444414,437,0 +170732444462,437,0 +170732444510,438,0 +170732444558,437,0 +170732444606,438,0 +170732444655,438,0 +170732444705,437,0 +170732444754,278,1 +170732444840,262,0 +170732444887,437,0 +170732444937,438,0 +170732444987,437,0 +170732445036,437,0 +170732445086,438,0 +170732445133,438,0 +170732445181,437,0 +170732445229,438,0 +170732445277,437,0 +170732445327,438,0 +170732445376,437,0 +170732445426,438,0 +170732445474,438,0 +170732445523,438,0 +170732445571,438,0 +170732445619,437,0 +170732445669,437,0 +170732445717,437,0 +170732445765,437,0 +170732445813,298,1 +170732445895,233,0 +170732445945,437,0 +170732445993,438,0 +170732446042,437,0 +170732446090,438,0 +170732446138,438,0 +170732446188,438,0 +170732446236,438,0 +170732446283,438,0 +170732446331,438,0 +170732446379,437,0 +170732446427,437,0 +170732446475,438,0 +170732446524,437,0 +170732446572,438,0 +170732446620,437,0 +170732446668,438,0 +170732446716,438,0 +170732446765,438,0 +170732446813,437,0 +170732446863,290,1 +170732446947,234,0 +170732446995,437,0 +170732447043,437,0 +170732447090,438,0 +170732447140,437,0 +170732447188,438,0 +170732447237,438,0 +170732447285,438,0 +170732447333,438,0 +170732447381,437,0 +170732447429,438,0 +170732447479,438,0 +170732447528,438,0 +170732447576,438,0 +170732447624,438,0 +170732447672,437,0 +170732447722,438,0 +170732447770,437,0 +170732447818,438,0 +170732447865,437,0 +170732447914,291,1 +170732448001,235,0 +170732448049,437,0 +170732448097,438,0 +170732448147,437,0 +170732448195,438,0 +170732448243,437,0 +170732448291,437,0 +170732448340,438,0 +170732448388,438,0 +170732448436,438,0 +170732448484,438,0 +170732448534,438,0 +170732448582,437,0 +170732448629,438,0 +170732448677,437,0 +170732448727,438,0 +170732448775,438,0 +170732448824,437,0 +170732448872,438,0 +170732448920,437,0 +170732448968,295,1 +170732449050,242,0 +170732449099,437,0 +170732449149,438,0 +170732449197,438,0 +170732449245,438,0 +170732449293,438,0 +170732449342,438,0 +170732449392,438,0 +170732449441,438,0 +170732449489,438,0 +170732449537,438,0 +170732449587,438,0 +170732449635,438,0 +170732449683,437,0 +170732449731,438,0 +170732449779,438,0 +170732449828,438,0 +170732449876,438,0 +170732449924,438,0 +170732449972,437,0 +170732450020,302,1 +170732450103,254,0 +170732450151,437,0 +170732450201,437,0 +170732450249,437,0 +170732450298,438,0 +170732450346,438,0 +170732450396,437,0 +170732450445,437,0 +170732450495,438,0 +170732450544,437,0 +170732450594,437,0 +170732450642,438,0 +170732450690,438,0 +170732450739,437,0 +170732450789,438,0 +170732450838,438,0 +170732450888,438,0 +170732450936,437,0 +170732450984,438,0 +170732451032,436,0 +170732451080,287,1 +170732451162,427,0 +170732451215,437,0 +170732451263,437,0 +170732451311,437,0 +170732451360,438,0 +170732451408,438,0 +170732451456,437,0 +170732451504,438,0 +170732451552,438,0 +170732451600,438,0 +170732451650,437,0 +170732451698,437,0 +170732451747,437,0 +170732451797,438,0 +170732451845,437,0 +170732451894,438,0 +170732451944,438,0 +170732451991,437,0 +170732452039,437,0 +170732452089,436,0 +170732452138,306,1 +170732452226,434,0 +170732452274,437,0 +170732452322,437,0 +170732452370,438,0 +170732452418,437,0 +170732452465,438,0 +170732452515,437,0 +170732452564,438,0 +170732452612,438,0 +170732452660,438,0 +170732452710,437,0 +170732452759,437,0 +170732452807,437,0 +170732452855,437,0 +170732452903,437,0 +170732452953,437,0 +170732453002,438,0 +170732453050,438,0 +170732453098,437,0 +170732453146,375,0 +170732453196,294,1 +170732453278,434,0 +170732453328,437,0 +170732453376,437,0 +170732453425,438,0 +170732453474,437,0 +170732453522,437,0 +170732453570,438,0 +170732453620,438,0 +170732453668,437,0 +170732453716,438,0 +170732453764,438,0 +170732453812,438,0 +170732453860,438,0 +170732453909,437,0 +170732453957,438,0 +170732454005,438,0 +170732454053,437,0 +170732454103,437,0 +170732454151,437,0 +170732454199,264,0 +170732454248,285,1 +170732454336,436,0 +170732454384,438,0 +170732454433,438,0 +170732454481,437,0 +170732454529,438,0 +170732454579,437,0 +170732454627,438,0 +170732454675,438,0 +170732454724,438,0 +170732454774,437,0 +170732454822,437,0 +170732454870,437,0 +170732454919,437,0 +170732454967,437,0 +170732455015,437,0 +170732455064,438,0 +170732455112,437,0 +170732455160,437,0 +170732455208,437,0 +170732455258,304,1 +170732455339,241,0 +170732455388,437,0 +170732455438,438,0 +170732455486,437,0 +170732455533,437,0 +170732455581,437,0 +170732455629,437,0 +170732455677,438,0 +170732455725,438,0 +170732455773,438,0 +170732455821,437,0 +170732455869,437,0 +170732455918,437,0 +170732455968,437,0 +170732456017,437,0 +170732456067,437,0 +170732456115,437,0 +170732456163,437,0 +170732456211,437,0 +170732456259,437,0 +170732456307,269,0 +170732456355,275,1 +170732456445,438,0 +170732456495,438,0 +170732456544,437,0 +170732456592,438,0 +170732456642,437,0 +170732456691,438,0 +170732456741,438,0 +170732456789,437,0 +170732456837,438,0 +170732456885,437,0 +170732456933,437,0 +170732456981,437,0 +170732457030,438,0 +170732457079,437,0 +170732457129,437,0 +170732457177,437,0 +170732457225,438,0 +170732457273,438,0 +170732457322,436,0 +170732457372,288,1 +170732457456,428,0 +170732457513,437,0 +170732457561,437,0 +170732457609,437,0 +170732457657,437,0 +170732457705,437,0 +170732457755,437,0 +170732457803,438,0 +170732457851,438,0 +170732457900,437,0 +170732457950,437,0 +170732457998,437,0 +170732458046,437,0 +170732458094,437,0 +170732458142,438,0 +170732458191,438,0 +170732458239,437,0 +170732458289,438,0 +170732458337,437,0 +170732458386,435,0 +170732458434,278,1 +170732458521,435,0 +170732458571,437,0 +170732458619,438,0 +170732458668,438,0 +170732458716,437,0 +170732458764,437,0 +170732458814,438,0 +170732458863,438,0 +170732458911,437,0 +170732458959,438,0 +170732459007,437,0 +170732459056,438,0 +170732459104,437,0 +170732459152,438,0 +170732459202,438,0 +170732459250,437,0 +170732459299,437,0 +170732459349,438,0 +170732459397,437,0 +170732459445,275,1 +170732459526,272,1 +170732459615,437,0 +170732459665,438,0 +170732459713,438,0 +170732459762,438,0 +170732459811,437,0 +170732459860,438,0 +170732459910,438,0 +170732459959,438,0 +170732460007,438,0 +170732460057,437,0 +170732460105,438,0 +170732460154,438,0 +170732460204,438,0 +170732460253,438,0 +170732460301,437,0 +170732460351,438,0 +170732460399,438,0 +170732460447,437,0 +170732460495,268,0 +170732460543,288,1 +170732460629,436,0 +170732460677,437,0 +170732460725,437,0 +170732460775,437,0 +170732460823,438,0 +170732460872,438,0 +170732460920,438,0 +170732460968,437,0 +170732461016,437,0 +170732461066,437,0 +170732461115,437,0 +170732461165,437,0 +170732461214,438,0 +170732461262,438,0 +170732461310,438,0 +170732461358,437,0 +170732461408,438,0 +170732461457,438,0 +170732461505,437,0 +170732461555,274,1 +170732461645,232,0 +170732461694,437,0 +170732461742,438,0 +170732461792,437,0 +170732461840,438,0 +170732461888,438,0 +170732461937,438,0 +170732461987,438,0 +170732462035,438,0 +170732462084,437,0 +170732462134,438,0 +170732462183,437,0 +170732462231,438,0 +170732462279,438,0 +170732462329,438,0 +170732462378,437,0 +170732462426,437,0 +170732462476,437,0 +170732462525,437,0 +170732462573,436,0 +170732462621,306,1 +170732462705,432,0 +170732462753,437,0 +170732462801,437,0 +170732462849,437,0 +170732462897,438,0 +170732462945,438,0 +170732462995,438,0 +170732463044,437,0 +170732463092,437,0 +170732463140,437,0 +170732463188,438,0 +170732463236,437,0 +170732463284,438,0 +170732463332,438,0 +170732463381,437,0 +170732463429,437,0 +170732463479,438,0 +170732463528,437,0 +170732463576,437,0 +170732463626,436,0 +170732463675,302,1 +170732463762,433,0 +170732463810,438,0 +170732463858,437,0 +170732463906,437,0 +170732463954,438,0 +170732464004,438,0 +170732464053,437,0 +170732464101,437,0 +170732464151,438,0 +170732464199,438,0 +170732464248,438,0 +170732464296,437,0 +170732464344,437,0 +170732464392,437,0 +170732464442,437,0 +170732464490,437,0 +170732464538,438,0 +170732464587,437,0 +170732464635,437,0 +170732464683,343,0 +170732464733,299,1 +170732464817,435,0 +170732464867,437,0 +170732464915,438,0 +170732464963,437,0 +170732465012,438,0 +170732465060,438,0 +170732465108,437,0 +170732465156,438,0 +170732465206,438,0 +170732465255,438,0 +170732465305,438,0 +170732465353,438,0 +170732465401,437,0 +170732465449,438,0 +170732465496,437,0 +170732465546,437,0 +170732465594,437,0 +170732465642,438,0 +170732465690,437,0 +170732465738,435,0 +170732465786,290,1 +170732465871,435,0 +170732465919,438,0 +170732465967,437,0 +170732466015,437,0 +170732466063,438,0 +170732466113,437,0 +170732466162,437,0 +170732466210,438,0 +170732466260,438,0 +170732466308,438,0 +170732466356,438,0 +170732466404,437,0 +170732466452,437,0 +170732466500,437,0 +170732466548,438,0 +170732466596,437,0 +170732466643,437,0 +170732466691,438,0 +170732466739,438,0 +170732466789,261,0 +170732466837,282,1 +170732466927,436,0 +170732466976,438,0 +170732467024,438,0 +170732467072,437,0 +170732467121,437,0 +170732467171,437,0 +170732467219,438,0 +170732467267,437,0 +170732467314,437,0 +170732467364,437,0 +170732467412,438,0 +170732467460,438,0 +170732467509,438,0 +170732467557,437,0 +170732467605,438,0 +170732467655,438,0 +170732467703,438,0 +170732467751,437,0 +170732467800,437,0 +170732467848,282,1 +170732467940,310,0 +170732467988,437,0 +170732468037,438,0 +170732468087,438,0 +170732468135,438,0 +170732468183,438,0 +170732468232,438,0 +170732468280,438,0 +170732468328,438,0 +170732468378,438,0 +170732468427,437,0 +170732468477,438,0 +170732468525,438,0 +170732468574,438,0 +170732468622,437,0 +170732468670,438,0 +170732468718,438,0 +170732468766,438,0 +170732468814,438,0 +170732468862,437,0 +170732468911,260,0 +170732468961,292,1 +170732469047,437,0 +170732469095,438,0 +170732469143,437,0 +170732469192,438,0 +170732469240,438,0 +170732469288,438,0 +170732469336,437,0 +170732469386,438,0 +170732469434,438,0 +170732469482,438,0 +170732469530,437,0 +170732469578,437,0 +170732469626,438,0 +170732469675,438,0 +170732469723,437,0 +170732469771,437,0 +170732469819,437,0 +170732469869,438,0 +170732469917,437,0 +170732469966,275,1 +170732470052,428,0 +170732470100,437,0 +170732470149,438,0 +170732470199,438,0 +170732470248,438,0 +170732470298,438,0 +170732470346,438,0 +170732470394,437,0 +170732470442,438,0 +170732470490,437,0 +170732470538,437,0 +170732470585,437,0 +170732470633,438,0 +170732470681,438,0 +170732470731,438,0 +170732470779,438,0 +170732470827,438,0 +170732470876,437,0 +170732470924,438,0 +170732470972,436,0 +170732471020,272,1 +170732471099,432,0 +170732471149,438,0 +170732471198,437,0 +170732471248,438,0 +170732471296,438,0 +170732471345,437,0 +170732471393,438,0 +170732471441,437,0 +170732471489,438,0 +170732471537,437,0 +170732471587,437,0 +170732471635,437,0 +170732471683,437,0 +170732471731,437,0 +170732471779,437,0 +170732471827,437,0 +170732471875,438,0 +170732471924,438,0 +170732471974,438,0 +170732472022,436,0 +170732472070,287,1 +170732472151,430,0 +170732472199,437,0 +170732472247,437,0 +170732472295,438,0 +170732472344,438,0 +170732472392,438,0 +170732472440,438,0 +170732472488,437,0 +170732472536,438,0 +170732472584,437,0 +170732472632,438,0 +170732472680,438,0 +170732472728,437,0 +170732472777,437,0 +170732472827,438,0 +170732472876,437,0 +170732472926,437,0 +170732472974,437,0 +170732473022,437,0 +170732473071,437,0 +170732473121,280,1 +170732473212,433,0 +170732473261,437,0 +170732473309,437,0 +170732473357,438,0 +170732473405,438,0 +170732473453,438,0 +170732473501,437,0 +170732473550,438,0 +170732473598,437,0 +170732473646,438,0 +170732473694,437,0 +170732473743,438,0 +170732473791,437,0 +170732473839,438,0 +170732473887,438,0 +170732473935,437,0 +170732473983,438,0 +170732474031,437,0 +170732474081,438,0 +170732474129,422,0 +170732474177,286,1 +170732474263,434,0 +170732474311,438,0 +170732474359,437,0 +170732474407,437,0 +170732474455,438,0 +170732474503,437,0 +170732474552,437,0 +170732474600,437,0 +170732474650,438,0 +170732474698,437,0 +170732474746,437,0 +170732474795,438,0 +170732474843,438,0 +170732474891,438,0 +170732474939,438,0 +170732474987,437,0 +170732475036,438,0 +170732475084,437,0 +170732475132,437,0 +170732475180,265,0 +170732475228,296,1 +170732475309,435,0 +170732475359,438,0 +170732475407,437,0 +170732475456,438,0 +170732475504,437,0 +170732475554,438,0 +170732475602,437,0 +170732475650,438,0 +170732475698,438,0 +170732475747,437,0 +170732475795,437,0 +170732475845,438,0 +170732475893,437,0 +170732475940,438,0 +170732475988,438,0 +170732476036,438,0 +170732476084,438,0 +170732476134,437,0 +170732476182,437,0 +170732476229,274,1 +170732476311,304,1 +170732476396,437,0 +170732476444,438,0 +170732476492,438,0 +170732476540,438,0 +170732476588,438,0 +170732476636,438,0 +170732476684,438,0 +170732476732,437,0 +170732476780,438,0 +170732476829,437,0 +170732476879,437,0 +170732476927,438,0 +170732476975,438,0 +170732477023,438,0 +170732477072,438,0 +170732477120,437,0 +170732477168,437,0 +170732477216,437,0 +170732477264,436,0 +170732477312,290,1 +170732477405,435,0 +170732477453,437,0 +170732477501,438,0 +170732477549,438,0 +170732477599,437,0 +170732477648,438,0 +170732477696,437,0 +170732477744,438,0 +170732477794,438,0 +170732477843,438,0 +170732477891,437,0 +170732477939,438,0 +170732477989,438,0 +170732478037,438,0 +170732478085,438,0 +170732478133,437,0 +170732478182,438,0 +170732478232,438,0 +170732478280,437,0 +170732478327,278,1 +170732478411,238,0 +170732478459,437,0 +170732478507,438,0 +170732478555,438,0 +170732478603,438,0 +170732478651,437,0 +170732478699,438,0 +170732478747,438,0 +170732478797,438,0 +170732478845,438,0 +170732478894,437,0 +170732478942,437,0 +170732478992,438,0 +170732479040,438,0 +170732479088,438,0 +170732479137,438,0 +170732479187,437,0 +170732479235,438,0 +170732479284,438,0 +170732479332,437,0 +170732479380,275,1 +170732479471,229,0 +170732479521,438,0 +170732479569,438,0 +170732479617,438,0 +170732479664,438,0 +170732479714,438,0 +170732479762,438,0 +170732479812,438,0 +170732479859,438,0 +170732479907,437,0 +170732479955,438,0 +170732480003,438,0 +170732480051,437,0 +170732480101,437,0 +170732480150,438,0 +170732480198,438,0 +170732480246,438,0 +170732480294,437,0 +170732480342,438,0 +170732480390,437,0 +170732480439,282,1 +170732480526,381,0 +170732480574,438,0 +170732480622,438,0 +170732480669,438,0 +170732480717,438,0 +170732480765,438,0 +170732480813,437,0 +170732480861,438,0 +170732480909,438,0 +170732480957,438,0 +170732481005,438,0 +170732481053,438,0 +170732481100,438,0 +170732481148,438,0 +170732481196,438,0 +170732481244,438,0 +170732481292,438,0 +170732481340,437,0 +170732481388,438,0 +170732481438,437,0 +170732481486,283,1 +170732481571,244,0 +170732481621,437,0 +170732481669,438,0 +170732481717,437,0 +170732481765,438,0 +170732481814,437,0 +170732481862,438,0 +170732481910,438,0 +170732481958,438,0 +170732482006,438,0 +170732482054,437,0 +170732482102,438,0 +170732482150,437,0 +170732482198,438,0 +170732482245,437,0 +170732482293,438,0 +170732482341,438,0 +170732482389,437,0 +170732482437,438,0 +170732482485,437,0 +170732482533,296,1 +170732482622,309,1 +170732482702,438,0 +170732482750,438,0 +170732482799,438,0 +170732482847,438,0 +170732482895,437,0 +170732482943,438,0 +170732482991,438,0 +170732483039,438,0 +170732483087,438,0 +170732483135,438,0 +170732483182,438,0 +170732483230,438,0 +170732483278,437,0 +170732483326,438,0 +170732483374,438,0 +170732483422,437,0 +170732483471,438,0 +170732483519,437,0 +170732483567,255,0 +170732483617,282,1 +170732483704,436,0 +170732483753,437,0 +170732483803,438,0 +170732483852,438,0 +170732483900,438,0 +170732483948,438,0 +170732483996,438,0 +170732484044,437,0 +170732484092,438,0 +170732484140,438,0 +170732484188,438,0 +170732484236,437,0 +170732484285,438,0 +170732484335,437,0 +170732484383,438,0 +170732484431,438,0 +170732484479,438,0 +170732484527,438,0 +170732484575,437,0 +170732484624,277,1 +170732484706,250,0 +170732484755,436,0 +170732484805,438,0 +170732484854,438,0 +170732484902,438,0 +170732484950,438,0 +170732484998,438,0 +170732485046,438,0 +170732485094,438,0 +170732485144,437,0 +170732485192,438,0 +170732485240,438,0 +170732485289,438,0 +170732485339,437,0 +170732485387,438,0 +170732485435,438,0 +170732485483,437,0 +170732485531,438,0 +170732485579,438,0 +170732485626,437,0 +170732485676,279,1 +170732485755,233,0 +170732485803,436,0 +170732485852,438,0 +170732485900,438,0 +170732485948,437,0 +170732485996,438,0 +170732486045,437,0 +170732486093,438,0 +170732486143,438,0 +170732486191,438,0 +170732486240,438,0 +170732486288,437,0 +170732486336,438,0 +170732486384,438,0 +170732486432,437,0 +170732486480,438,0 +170732486530,438,0 +170732486579,438,0 +170732486629,438,0 +170732486678,437,0 +170732486728,294,1 +170732486816,244,0 +170732486864,437,0 +170732486912,437,0 +170732486960,438,0 +170732487008,438,0 +170732487057,438,0 +170732487105,437,0 +170732487153,438,0 +170732487201,438,0 +170732487249,438,0 +170732487297,437,0 +170732487345,437,0 +170732487395,438,0 +170732487443,437,0 +170732487491,438,0 +170732487539,437,0 +170732487587,438,0 +170732487635,437,0 +170732487683,438,0 +170732487731,437,0 +170732487778,292,1 +170732487869,426,0 +170732487917,437,0 +170732487966,437,0 +170732488014,437,0 +170732488064,438,0 +170732488112,437,0 +170732488160,438,0 +170732488209,438,0 +170732488257,438,0 +170732488305,438,0 +170732488353,437,0 +170732488403,437,0 +170732488452,437,0 +170732488502,438,0 +170732488550,438,0 +170732488598,437,0 +170732488646,438,0 +170732488695,438,0 +170732488743,438,0 +170732488793,436,0 +170732488842,301,1 +170732488927,428,0 +170732488975,437,0 +170732489024,438,0 +170732489074,438,0 +170732489122,437,0 +170732489170,438,0 +170732489218,438,0 +170732489267,438,0 +170732489315,438,0 +170732489363,438,0 +170732489412,438,0 +170732489460,437,0 +170732489508,438,0 +170732489558,437,0 +170732489606,437,0 +170732489655,438,0 +170732489705,437,0 +170732489753,438,0 +170732489802,438,0 +170732489850,435,0 +170732489900,292,1 +170732489988,433,0 +170732490036,437,0 +170732490085,438,0 +170732490134,438,0 +170732490181,438,0 +170732490229,438,0 +170732490279,437,0 +170732490327,438,0 +170732490375,438,0 +170732490423,438,0 +170732490471,438,0 +170732490519,437,0 +170732490568,438,0 +170732490616,438,0 +170732490664,438,0 +170732490714,438,0 +170732490762,438,0 +170732490811,438,0 +170732490861,437,0 +170732490909,263,0 +170732490957,294,1 +170732491043,436,0 +170732491092,438,0 +170732491142,437,0 +170732491190,438,0 +170732491238,438,0 +170732491286,438,0 +170732491335,438,0 +170732491383,438,0 +170732491431,438,0 +170732491479,437,0 +170732491527,438,0 +170732491575,438,0 +170732491623,438,0 +170732491671,438,0 +170732491720,437,0 +170732491770,438,0 +170732491818,438,0 +170732491867,438,0 +170732491915,437,0 +170732491963,278,1 +170732492053,245,0 +170732492101,437,0 +170732492151,438,0 +170732492200,438,0 +170732492250,437,0 +170732492299,438,0 +170732492347,438,0 +170732492397,438,0 +170732492445,438,0 +170732492493,438,0 +170732492541,438,0 +170732492589,438,0 +170732492637,438,0 +170732492685,438,0 +170732492732,437,0 +170732492782,438,0 +170732492831,437,0 +170732492881,438,0 +170732492929,438,0 +170732492977,437,0 +170732493026,280,1 +170732493118,428,0 +170732493168,438,0 +170732493216,438,0 +170732493265,437,0 +170732493313,438,0 +170732493361,438,0 +170732493410,438,0 +170732493460,438,0 +170732493508,437,0 +170732493556,437,0 +170732493604,438,0 +170732493652,438,0 +170732493699,438,0 +170732493747,438,0 +170732493795,438,0 +170732493845,438,0 +170732493895,437,0 +170732493942,438,0 +170732493992,438,0 +170732494040,437,0 +170732494089,288,1 +170732494176,432,0 +170732494224,437,0 +170732494272,438,0 +170732494320,437,0 +170732494368,438,0 +170732494416,438,0 +170732494464,438,0 +170732494512,437,0 +170732494560,438,0 +170732494609,438,0 +170732494657,438,0 +170732494707,438,0 +170732494755,438,0 +170732494804,438,0 +170732494852,437,0 +170732494901,437,0 +170732494949,438,0 +170732494997,437,0 +170732495047,437,0 +170732495095,437,0 +170732495143,283,1 +170732495234,431,0 +170732495282,437,0 +170732495330,438,0 +170732495378,438,0 +170732495425,438,0 +170732495473,438,0 +170732495523,437,0 +170732495571,438,0 +170732495619,438,0 +170732495668,438,0 +170732495718,438,0 +170732495766,438,0 +170732495814,438,0 +170732495862,438,0 +170732495910,438,0 +170732495958,438,0 +170732496006,438,0 +170732496055,437,0 +170732496103,437,0 +170732496152,430,0 +170732496202,299,1 +170732496293,435,0 +170732496343,438,0 +170732496392,438,0 +170732496440,438,0 +170732496488,438,0 +170732496536,437,0 +170732496586,438,0 +170732496634,437,0 +170732496682,438,0 +170732496730,437,0 +170732496779,438,0 +170732496827,438,0 +170732496876,438,0 +170732496924,437,0 +170732496974,438,0 +170732497022,438,0 +170732497070,438,0 +170732497118,438,0 +170732497167,437,0 +170732497215,279,1 +170732497303,234,0 +170732497352,437,0 +170732497400,438,0 +170732497448,438,0 +170732497496,438,0 +170732497546,438,0 +170732497594,437,0 +170732497642,438,0 +170732497691,438,0 +170732497741,437,0 +170732497789,438,0 +170732497837,437,0 +170732497886,438,0 +170732497936,437,0 +170732497985,438,0 +170732498035,437,0 +170732498083,438,0 +170732498131,437,0 +170732498179,437,0 +170732498226,437,0 +170732498274,280,1 +170732498358,245,0 +170732498408,437,0 +170732498456,438,0 +170732498504,438,0 +170732498553,438,0 +170732498601,438,0 +170732498651,438,0 +170732498699,438,0 +170732498747,437,0 +170732498795,437,0 +170732498844,437,0 +170732498892,438,0 +170732498940,438,0 +170732498988,438,0 +170732499036,438,0 +170732499084,437,0 +170732499132,438,0 +170732499180,438,0 +170732499227,437,0 +170732499275,437,0 +170732499323,288,1 +170732499413,384,0 +170732499461,438,0 +170732499509,438,0 +170732499557,438,0 +170732499605,438,0 +170732499654,438,0 +170732499704,438,0 +170732499753,438,0 +170732499801,438,0 +170732499851,438,0 +170732499899,437,0 +170732499948,438,0 +170732499998,438,0 +170732500046,438,0 +170732500094,438,0 +170732500143,438,0 +170732500191,438,0 +170732500239,438,0 +170732500289,438,0 +170732500338,436,0 +170732500386,299,1 +170732500472,432,0 +170732500522,437,0 +170732500570,438,0 +170732500619,438,0 +170732500667,438,0 +170732500715,438,0 +170732500763,438,0 +170732500813,437,0 +170732500861,437,0 +170732500909,438,0 +170732500957,437,0 +170732501005,437,0 +170732501053,438,0 +170732501101,438,0 +170732501150,438,0 +170732501198,437,0 +170732501246,438,0 +170732501294,437,0 +170732501342,437,0 +170732501391,437,0 +170732501439,289,1 +170732501526,432,0 +170732501576,438,0 +170732501624,438,0 +170732501672,438,0 +170732501721,438,0 +170732501769,437,0 +170732501817,438,0 +170732501867,438,0 +170732501915,438,0 +170732501963,437,0 +170732502011,438,0 +170732502060,438,0 +170732502108,437,0 +170732502158,438,0 +170732502206,437,0 +170732502254,438,0 +170732502303,437,0 +170732502351,438,0 +170732502399,437,0 +170732502447,436,0 +170732502497,291,1 +170732502581,432,0 +170732502629,438,0 +170732502677,437,0 +170732502726,438,0 +170732502774,438,0 +170732502822,438,0 +170732502870,437,0 +170732502918,438,0 +170732502966,438,0 +170732503013,438,0 +170732503061,438,0 +170732503109,437,0 +170732503159,438,0 +170732503207,438,0 +170732503255,438,0 +170732503302,437,0 +170732503350,438,0 +170732503398,437,0 +170732503446,438,0 +170732503494,436,0 +170732503542,297,1 +170732503631,433,0 +170732503679,437,0 +170732503727,437,0 +170732503775,437,0 +170732503822,437,0 +170732503870,438,0 +170732503918,437,0 +170732503966,438,0 +170732504014,438,0 +170732504064,438,0 +170732504113,438,0 +170732504161,438,0 +170732504211,438,0 +170732504259,437,0 +170732504308,437,0 +170732504356,438,0 +170732504404,438,0 +170732504453,437,0 +170732504501,438,0 +170732504549,431,0 +170732504599,299,1 +170732504683,434,0 +170732504733,438,0 +170732504782,437,0 +170732504832,438,0 +170732504881,438,0 +170732504931,438,0 +170732504979,438,0 +170732505027,438,0 +170732505075,437,0 +170732505124,438,0 +170732505172,438,0 +170732505222,438,0 +170732505270,438,0 +170732505317,438,0 +170732505367,437,0 +170732505416,437,0 +170732505464,438,0 +170732505513,438,0 +170732505562,437,0 +170732505610,295,1 +170732505692,281,1 +170732505777,438,0 +170732505827,437,0 +170732505875,438,0 +170732505923,438,0 +170732505971,438,0 +170732506020,438,0 +170732506068,438,0 +170732506116,437,0 +170732506166,438,0 +170732506214,437,0 +170732506262,438,0 +170732506310,437,0 +170732506358,437,0 +170732506406,437,0 +170732506454,437,0 +170732506501,438,0 +170732506549,438,0 +170732506597,437,0 +170732506645,436,0 +170732506693,287,1 +170732506784,435,0 +170732506833,438,0 +170732506883,437,0 +170732506931,438,0 +170732506979,437,0 +170732507027,437,0 +170732507076,437,0 +170732507126,438,0 +170732507174,437,0 +170732507222,438,0 +170732507271,438,0 +170732507321,438,0 +170732507369,437,0 +170732507418,438,0 +170732507466,438,0 +170732507516,438,0 +170732507564,437,0 +170732507613,438,0 +170732507661,437,0 +170732507709,285,1 +170732507794,251,0 +170732507842,436,0 +170732507890,438,0 +170732507938,438,0 +170732507986,437,0 +170732508034,438,0 +170732508082,438,0 +170732508129,437,0 +170732508177,437,0 +170732508225,438,0 +170732508275,438,0 +170732508324,438,0 +170732508374,438,0 +170732508422,437,0 +170732508471,437,0 +170732508519,438,0 +170732508567,438,0 +170732508615,438,0 +170732508664,438,0 +170732508712,437,0 +170732508760,282,1 +170732508844,257,0 +170732508893,437,0 +170732508941,437,0 +170732508991,438,0 +170732509040,438,0 +170732509088,437,0 +170732509138,437,0 +170732509186,438,0 +170732509234,438,0 +170732509283,437,0 +170732509331,438,0 +170732509381,437,0 +170732509430,438,0 +170732509478,438,0 +170732509526,438,0 +170732509574,438,0 +170732509623,437,0 +170732509673,438,0 +170732509721,437,0 +170732509771,437,0 +170732509820,299,1 +170732509901,234,0 +170732509950,437,0 +170732509998,437,0 +170732510046,438,0 +170732510094,437,0 +170732510142,437,0 +170732510190,438,0 +170732510238,437,0 +170732510286,438,0 +170732510334,438,0 +170732510383,438,0 +170732510433,438,0 +170732510480,437,0 +170732510528,437,0 +170732510576,438,0 +170732510624,437,0 +170732510672,437,0 +170732510721,438,0 +170732510771,438,0 +170732510820,437,0 +170732510870,278,1 +170732510954,229,0 +170732511004,437,0 +170732511052,438,0 +170732511100,438,0 +170732511148,438,0 +170732511195,438,0 +170732511245,438,0 +170732511293,437,0 +170732511341,438,0 +170732511389,438,0 +170732511437,438,0 +170732511485,438,0 +170732511533,438,0 +170732511582,438,0 +170732511630,438,0 +170732511678,438,0 +170732511726,438,0 +170732511776,438,0 +170732511824,438,0 +170732511872,437,0 +170732511919,281,1 +170732512012,429,0 +170732512060,438,0 +170732512108,438,0 +170732512158,438,0 +170732512205,438,0 +170732512255,438,0 +170732512304,438,0 +170732512354,438,0 +170732512403,438,0 +170732512451,438,0 +170732512501,438,0 +170732512549,438,0 +170732512597,438,0 +170732512645,438,0 +170732512693,438,0 +170732512741,438,0 +170732512789,438,0 +170732512838,438,0 +170732512888,437,0 +170732512936,436,0 +170732512984,283,1 +170732513068,433,0 +170732513116,438,0 +170732513164,438,0 +170732513212,438,0 +170732513261,438,0 +170732513309,438,0 +170732513357,437,0 +170732513407,438,0 +170732513455,438,0 +170732513503,438,0 +170732513551,438,0 +170732513599,438,0 +170732513648,438,0 +170732513696,438,0 +170732513746,438,0 +170732513794,438,0 +170732513842,438,0 +170732513891,438,0 +170732513939,437,0 +170732513987,437,0 +170732514035,306,1 +170732514115,428,0 +170732514163,437,0 +170732514210,438,0 +170732514258,437,0 +170732514308,438,0 +170732514356,438,0 +170732514404,438,0 +170732514452,438,0 +170732514500,438,0 +170732514548,438,0 +170732514597,438,0 +170732514645,438,0 +170732514693,438,0 +170732514743,438,0 +170732514791,438,0 +170732514838,438,0 +170732514886,438,0 +170732514934,438,0 +170732514984,438,0 +170732515032,437,0 +170732515081,287,1 +170732515160,431,0 +170732515208,438,0 +170732515256,438,0 +170732515304,438,0 +170732515352,438,0 +170732515400,438,0 +170732515448,438,0 +170732515496,438,0 +170732515544,438,0 +170732515594,438,0 +170732515641,437,0 +170732515689,438,0 +170732515737,437,0 +170732515787,438,0 +170732515836,438,0 +170732515886,438,0 +170732515934,438,0 +170732515982,438,0 +170732516030,438,0 +170732516078,437,0 +170732516126,266,0 +170732516174,299,1 +170732516257,437,0 +170732516306,438,0 +170732516356,438,0 +170732516404,438,0 +170732516452,438,0 +170732516500,438,0 +170732516549,438,0 +170732516599,438,0 +170732516647,438,0 +170732516696,438,0 +170732516744,438,0 +170732516792,437,0 +170732516840,438,0 +170732516888,438,0 +170732516937,438,0 +170732516985,437,0 +170732517035,438,0 +170732517083,438,0 +170732517131,437,0 +170732517180,282,1 +170732517264,431,0 +170732517312,437,0 +170732517360,438,0 +170732517408,438,0 +170732517457,438,0 +170732517505,438,0 +170732517555,438,0 +170732517603,438,0 +170732517652,438,0 +170732517700,438,0 +170732517748,438,0 +170732517798,438,0 +170732517847,438,0 +170732517895,438,0 +170732517943,438,0 +170732517991,438,0 +170732518039,438,0 +170732518087,438,0 +170732518135,437,0 +170732518183,437,0 +170732518231,266,0 +170732518279,285,1 +170732518366,438,0 +170732518414,437,0 +170732518462,438,0 +170732518510,438,0 +170732518558,438,0 +170732518606,438,0 +170732518653,437,0 +170732518701,438,0 +170732518749,438,0 +170732518797,438,0 +170732518845,438,0 +170732518893,438,0 +170732518941,438,0 +170732518989,438,0 +170732519037,438,0 +170732519086,438,0 +170732519134,438,0 +170732519182,437,0 +170732519230,436,0 +170732519278,290,1 +170732519365,432,0 +170732519413,438,0 +170732519463,438,0 +170732519511,438,0 +170732519559,438,0 +170732519607,438,0 +170732519656,437,0 +170732519704,437,0 +170732519754,438,0 +170732519802,438,0 +170732519849,438,0 +170732519898,438,0 +170732519945,437,0 +170732519993,438,0 diff --git a/laser_value/0208-03.csv b/laser_value/0208-03.csv new file mode 100644 index 0000000..842aa18 --- /dev/null +++ b/laser_value/0208-03.csv @@ -0,0 +1,7157 @@ +timestamp,laser_value,event +170732520043,438,0 +170732520091,438,0 +170732520139,438,0 +170732520189,438,0 +170732520237,438,0 +170732520285,436,0 +170732520334,271,1 +170732520432,436,0 +170732520480,437,0 +170732520528,437,0 +170732520576,438,0 +170732520624,438,0 +170732520671,438,0 +170732520719,437,0 +170732520767,438,0 +170732520815,438,0 +170732520863,438,0 +170732520911,438,0 +170732520959,438,0 +170732521007,438,0 +170732521056,438,0 +170732521104,438,0 +170732521152,438,0 +170732521200,438,0 +170732521248,438,0 +170732521297,438,0 +170732521345,260,0 +170732521393,262,0 +170732521441,234,0 +170732521488,438,0 +170732521536,438,0 +170732521584,438,0 +170732521632,438,0 +170732521680,438,0 +170732521728,437,0 +170732521776,438,0 +170732521824,438,0 +170732521872,438,0 +170732521921,438,0 +170732521969,438,0 +170732522017,438,0 +170732522065,438,0 +170732522113,438,0 +170732522161,438,0 +170732522210,438,0 +170732522258,438,0 +170732522308,438,0 +170732522356,437,0 +170732522404,301,1 +170732522489,298,1 +170732522579,438,0 +170732522627,438,0 +170732522675,438,0 +170732522723,438,0 +170732522771,438,0 +170732522820,438,0 +170732522868,438,0 +170732522916,438,0 +170732522965,438,0 +170732523015,438,0 +170732523064,437,0 +170732523112,438,0 +170732523160,438,0 +170732523208,438,0 +170732523256,438,0 +170732523305,438,0 +170732523353,438,0 +170732523401,437,0 +170732523449,287,1 +170732523543,231,0 +170732523593,437,0 +170732523641,438,0 +170732523690,438,0 +170732523740,438,0 +170732523788,438,0 +170732523836,438,0 +170732523885,438,0 +170732523933,438,0 +170732523983,437,0 +170732524032,438,0 +170732524080,437,0 +170732524130,438,0 +170732524177,438,0 +170732524225,438,0 +170732524275,438,0 +170732524323,438,0 +170732524371,438,0 +170732524420,438,0 +170732524468,437,0 +170732524518,298,1 +170732524602,419,0 +170732524650,438,0 +170732524698,438,0 +170732524746,438,0 +170732524795,438,0 +170732524843,438,0 +170732524893,438,0 +170732524941,438,0 +170732524990,438,0 +170732525038,438,0 +170732525086,438,0 +170732525134,437,0 +170732525182,438,0 +170732525232,438,0 +170732525281,438,0 +170732525331,438,0 +170732525379,438,0 +170732525428,438,0 +170732525476,438,0 +170732525526,436,0 +170732525575,290,1 +170732525666,434,0 +170732525714,438,0 +170732525762,438,0 +170732525810,438,0 +170732525858,438,0 +170732525906,438,0 +170732525956,438,0 +170732526004,438,0 +170732526052,438,0 +170732526100,438,0 +170732526149,438,0 +170732526199,438,0 +170732526246,438,0 +170732526294,438,0 +170732526342,438,0 +170732526390,438,0 +170732526440,438,0 +170732526488,438,0 +170732526537,437,0 +170732526587,431,0 +170732526635,307,1 +170732526723,435,0 +170732526771,437,0 +170732526819,438,0 +170732526869,438,0 +170732526918,438,0 +170732526968,438,0 +170732527017,438,0 +170732527067,438,0 +170732527115,438,0 +170732527164,438,0 +170732527212,438,0 +170732527260,438,0 +170732527310,437,0 +170732527358,438,0 +170732527407,437,0 +170732527455,438,0 +170732527505,438,0 +170732527553,438,0 +170732527601,437,0 +170732527650,293,1 +170732527739,235,0 +170732527787,438,0 +170732527835,438,0 +170732527883,438,0 +170732527932,438,0 +170732527982,438,0 +170732528030,438,0 +170732528078,438,0 +170732528126,438,0 +170732528173,438,0 +170732528223,438,0 +170732528272,438,0 +170732528320,438,0 +170732528368,438,0 +170732528418,438,0 +170732528466,438,0 +170732528515,438,0 +170732528563,438,0 +170732528613,438,0 +170732528662,437,0 +170732528710,288,1 +170732528792,419,0 +170732528842,438,0 +170732528891,438,0 +170732528939,438,0 +170732528989,438,0 +170732529038,438,0 +170732529088,438,0 +170732529138,438,0 +170732529187,438,0 +170732529235,438,0 +170732529283,438,0 +170732529332,438,0 +170732529382,438,0 +170732529430,438,0 +170732529479,438,0 +170732529529,437,0 +170732529577,438,0 +170732529625,438,0 +170732529673,438,0 +170732529722,436,0 +170732529772,295,1 +170732529853,432,0 +170732529901,438,0 +170732529949,438,0 +170732529997,438,0 +170732530045,438,0 +170732530093,438,0 +170732530141,438,0 +170732530189,437,0 +170732530239,438,0 +170732530287,438,0 +170732530336,438,0 +170732530384,438,0 +170732530432,438,0 +170732530480,437,0 +170732530528,438,0 +170732530578,438,0 +170732530627,438,0 +170732530675,437,0 +170732530723,438,0 +170732530771,436,0 +170732530820,291,1 +170732530922,437,0 +170732530972,438,0 +170732531021,438,0 +170732531071,438,0 +170732531120,438,0 +170732531170,438,0 +170732531218,438,0 +170732531267,438,0 +170732531315,438,0 +170732531363,438,0 +170732531411,437,0 +170732531459,438,0 +170732531507,438,0 +170732531557,438,0 +170732531606,438,0 +170732531654,438,0 +170732531704,438,0 +170732531753,438,0 +170732531801,437,0 +170732531851,275,1 +170732531933,243,0 +170732531981,438,0 +170732532029,437,0 +170732532077,438,0 +170732532125,438,0 +170732532173,438,0 +170732532221,438,0 +170732532271,438,0 +170732532318,438,0 +170732532368,438,0 +170732532417,438,0 +170732532467,438,0 +170732532517,437,0 +170732532566,438,0 +170732532615,438,0 +170732532663,438,0 +170732532713,438,0 +170732532762,438,0 +170732532812,438,0 +170732532861,437,0 +170732532909,279,1 +170732532999,428,0 +170732533047,438,0 +170732533095,438,0 +170732533143,438,0 +170732533191,438,0 +170732533239,438,0 +170732533288,438,0 +170732533338,438,0 +170732533387,438,0 +170732533435,438,0 +170732533484,438,0 +170732533532,438,0 +170732533580,438,0 +170732533628,438,0 +170732533676,438,0 +170732533726,437,0 +170732533775,438,0 +170732533823,438,0 +170732533871,437,0 +170732533919,435,0 +170732533967,300,1 +170732534049,431,0 +170732534097,438,0 +170732534145,438,0 +170732534193,438,0 +170732534242,438,0 +170732534290,438,0 +170732534338,438,0 +170732534387,438,0 +170732534435,438,0 +170732534483,438,0 +170732534531,438,0 +170732534581,438,0 +170732534630,438,0 +170732534678,438,0 +170732534726,438,0 +170732534774,438,0 +170732534822,437,0 +170732534872,438,0 +170732534920,437,0 +170732534969,436,0 +170732535017,303,1 +170732535099,431,0 +170732535147,437,0 +170732535196,438,0 +170732535244,438,0 +170732535292,438,0 +170732535342,438,0 +170732535390,438,0 +170732535439,438,0 +170732535487,437,0 +170732535535,438,0 +170732535585,438,0 +170732535633,438,0 +170732535682,438,0 +170732535730,438,0 +170732535778,438,0 +170732535827,438,0 +170732535877,437,0 +170732535926,438,0 +170732535974,438,0 +170732536022,435,0 +170732536070,281,1 +170732536157,433,0 +170732536205,438,0 +170732536253,438,0 +170732536301,438,0 +170732536349,438,0 +170732536397,438,0 +170732536445,438,0 +170732536493,438,0 +170732536541,438,0 +170732536590,438,0 +170732536638,437,0 +170732536688,438,0 +170732536736,438,0 +170732536784,438,0 +170732536832,438,0 +170732536881,438,0 +170732536931,437,0 +170732536979,438,0 +170732537027,438,0 +170732537076,263,0 +170732537124,299,1 +170732537208,436,0 +170732537258,438,0 +170732537306,438,0 +170732537354,438,0 +170732537402,438,0 +170732537450,438,0 +170732537499,438,0 +170732537547,437,0 +170732537595,438,0 +170732537643,438,0 +170732537691,438,0 +170732537739,438,0 +170732537789,438,0 +170732537838,438,0 +170732537886,438,0 +170732537936,438,0 +170732537984,438,0 +170732538032,438,0 +170732538080,437,0 +170732538129,262,0 +170732538179,284,1 +170732538266,437,0 +170732538314,438,0 +170732538363,438,0 +170732538413,438,0 +170732538462,437,0 +170732538512,438,0 +170732538560,438,0 +170732538608,438,0 +170732538656,437,0 +170732538704,438,0 +170732538753,438,0 +170732538803,438,0 +170732538851,438,0 +170732538899,438,0 +170732538948,438,0 +170732538998,438,0 +170732539047,438,0 +170732539095,438,0 +170732539143,438,0 +170732539191,247,0 +170732539241,252,0 +170732539290,433,0 +170732539343,438,0 +170732539391,438,0 +170732539439,438,0 +170732539487,438,0 +170732539535,438,0 +170732539583,438,0 +170732539632,438,0 +170732539680,438,0 +170732539728,438,0 +170732539776,438,0 +170732539824,438,0 +170732539872,438,0 +170732539919,438,0 +170732539967,438,0 +170732540015,438,0 +170732540063,438,0 +170732540113,438,0 +170732540161,438,0 +170732540209,437,0 +170732540258,274,1 +170732540350,433,0 +170732540398,438,0 +170732540447,438,0 +170732540497,438,0 +170732540546,438,0 +170732540594,438,0 +170732540644,438,0 +170732540692,438,0 +170732540740,438,0 +170732540788,438,0 +170732540837,438,0 +170732540887,438,0 +170732540935,438,0 +170732540984,438,0 +170732541034,438,0 +170732541082,438,0 +170732541129,438,0 +170732541177,438,0 +170732541225,437,0 +170732541273,294,1 +170732541361,266,0 +170732541409,436,0 +170732541457,438,0 +170732541505,438,0 +170732541553,438,0 +170732541601,438,0 +170732541649,438,0 +170732541698,438,0 +170732541746,438,0 +170732541794,438,0 +170732541842,438,0 +170732541890,438,0 +170732541938,438,0 +170732541985,438,0 +170732542033,438,0 +170732542081,438,0 +170732542129,438,0 +170732542177,438,0 +170732542225,438,0 +170732542273,438,0 +170732542321,261,0 +170732542369,278,1 +170732542449,434,0 +170732542499,438,0 +170732542547,438,0 +170732542595,438,0 +170732542643,438,0 +170732542690,438,0 +170732542740,438,0 +170732542788,438,0 +170732542836,438,0 +170732542884,438,0 +170732542931,438,0 +170732542979,438,0 +170732543027,438,0 +170732543075,438,0 +170732543123,438,0 +170732543171,438,0 +170732543219,438,0 +170732543267,438,0 +170732543315,438,0 +170732543363,433,0 +170732543410,285,1 +170732543496,435,0 +170732543544,438,0 +170732543592,438,0 +170732543640,438,0 +170732543688,438,0 +170732543736,438,0 +170732543783,438,0 +170732543831,438,0 +170732543879,438,0 +170732543927,438,0 +170732543975,438,0 +170732544023,438,0 +170732544071,438,0 +170732544119,438,0 +170732544167,438,0 +170732544214,438,0 +170732544262,438,0 +170732544312,438,0 +170732544360,438,0 +170732544409,436,0 +170732544457,294,1 +170732544543,436,0 +170732544590,438,0 +170732544638,438,0 +170732544686,438,0 +170732544736,438,0 +170732544784,438,0 +170732544833,438,0 +170732544883,438,0 +170732544932,438,0 +170732544982,438,0 +170732545031,438,0 +170732545079,438,0 +170732545127,438,0 +170732545177,438,0 +170732545225,438,0 +170732545273,438,0 +170732545322,438,0 +170732545372,438,0 +170732545420,438,0 +170732545469,274,1 +170732545553,285,1 +170732545638,438,0 +170732545687,438,0 +170732545735,438,0 +170732545783,438,0 +170732545833,438,0 +170732545882,438,0 +170732545932,438,0 +170732545981,438,0 +170732546029,438,0 +170732546079,438,0 +170732546128,438,0 +170732546176,438,0 +170732546224,438,0 +170732546272,438,0 +170732546320,438,0 +170732546368,438,0 +170732546418,438,0 +170732546466,437,0 +170732546514,276,1 +170732546597,286,1 +170732546681,438,0 +170732546729,438,0 +170732546778,438,0 +170732546828,438,0 +170732546877,438,0 +170732546925,438,0 +170732546973,438,0 +170732547022,438,0 +170732547072,438,0 +170732547120,438,0 +170732547168,438,0 +170732547218,438,0 +170732547266,438,0 +170732547315,438,0 +170732547364,438,0 +170732547414,438,0 +170732547462,438,0 +170732547512,438,0 +170732547560,436,0 +170732547609,305,1 +170732547696,434,0 +170732547744,438,0 +170732547791,438,0 +170732547840,438,0 +170732547888,438,0 +170732547935,438,0 +170732547985,438,0 +170732548034,438,0 +170732548082,438,0 +170732548132,438,0 +170732548181,438,0 +170732548231,438,0 +170732548280,438,0 +170732548328,438,0 +170732548376,438,0 +170732548424,438,0 +170732548472,438,0 +170732548522,438,0 +170732548571,438,0 +170732548621,289,1 +170732548710,234,0 +170732548758,437,0 +170732548806,438,0 +170732548854,438,0 +170732548904,438,0 +170732548952,438,0 +170732549000,438,0 +170732549049,438,0 +170732549097,438,0 +170732549147,438,0 +170732549195,438,0 +170732549244,438,0 +170732549294,438,0 +170732549342,438,0 +170732549390,438,0 +170732549438,438,0 +170732549486,438,0 +170732549534,438,0 +170732549583,438,0 +170732549631,437,0 +170732549681,276,1 +170732549782,433,0 +170732549830,438,0 +170732549880,438,0 +170732549928,438,0 +170732549976,438,0 +170732550023,438,0 +170732550073,438,0 +170732550121,438,0 +170732550169,438,0 +170732550217,438,0 +170732550266,438,0 +170732550316,438,0 +170732550365,438,0 +170732550413,438,0 +170732550461,438,0 +170732550509,438,0 +170732550559,438,0 +170732550608,438,0 +170732550656,438,0 +170732550704,416,0 +170732550752,289,1 +170732550838,436,0 +170732550886,438,0 +170732550935,438,0 +170732550985,438,0 +170732551033,438,0 +170732551081,438,0 +170732551129,438,0 +170732551177,438,0 +170732551226,438,0 +170732551274,438,0 +170732551322,438,0 +170732551370,438,0 +170732551420,438,0 +170732551468,438,0 +170732551517,438,0 +170732551567,438,0 +170732551616,438,0 +170732551666,438,0 +170732551714,438,0 +170732551763,271,1 +170732551844,269,0 +170732551892,436,0 +170732551940,438,0 +170732551988,438,0 +170732552036,438,0 +170732552084,438,0 +170732552132,438,0 +170732552180,438,0 +170732552229,438,0 +170732552277,438,0 +170732552325,438,0 +170732552375,438,0 +170732552423,438,0 +170732552471,438,0 +170732552519,438,0 +170732552568,438,0 +170732552616,438,0 +170732552664,438,0 +170732552712,438,0 +170732552760,438,0 +170732552808,275,1 +170732552897,256,0 +170732552945,438,0 +170732552995,438,0 +170732553043,438,0 +170732553092,438,0 +170732553140,438,0 +170732553188,438,0 +170732553236,438,0 +170732553284,438,0 +170732553332,438,0 +170732553380,438,0 +170732553428,438,0 +170732553478,438,0 +170732553527,438,0 +170732553575,438,0 +170732553623,438,0 +170732553672,438,0 +170732553720,438,0 +170732553770,438,0 +170732553818,438,0 +170732553866,265,0 +170732553914,281,1 +170732553996,437,0 +170732554044,438,0 +170732554092,438,0 +170732554141,438,0 +170732554189,438,0 +170732554239,438,0 +170732554287,438,0 +170732554335,438,0 +170732554384,438,0 +170732554434,438,0 +170732554483,438,0 +170732554533,438,0 +170732554581,438,0 +170732554628,438,0 +170732554676,438,0 +170732554724,438,0 +170732554772,438,0 +170732554822,438,0 +170732554871,437,0 +170732554921,293,1 +170732555006,232,0 +170732555054,438,0 +170732555103,438,0 +170732555151,438,0 +170732555199,438,0 +170732555249,438,0 +170732555298,438,0 +170732555348,438,0 +170732555398,438,0 +170732555445,438,0 +170732555495,438,0 +170732555543,438,0 +170732555592,438,0 +170732555642,438,0 +170732555690,438,0 +170732555738,438,0 +170732555786,438,0 +170732555834,438,0 +170732555882,438,0 +170732555930,437,0 +170732555978,299,1 +170732556056,335,0 +170732556106,438,0 +170732556154,438,0 +170732556203,438,0 +170732556251,438,0 +170732556301,438,0 +170732556350,438,0 +170732556400,438,0 +170732556448,438,0 +170732556496,438,0 +170732556544,438,0 +170732556592,438,0 +170732556641,438,0 +170732556689,438,0 +170732556737,438,0 +170732556785,438,0 +170732556833,438,0 +170732556881,438,0 +170732556929,438,0 +170732556977,437,0 +170732557026,281,1 +170732557114,430,0 +170732557162,438,0 +170732557210,438,0 +170732557259,438,0 +170732557309,438,0 +170732557357,438,0 +170732557405,438,0 +170732557453,438,0 +170732557502,438,0 +170732557550,438,0 +170732557598,438,0 +170732557646,438,0 +170732557696,438,0 +170732557745,438,0 +170732557793,438,0 +170732557841,438,0 +170732557889,438,0 +170732557937,438,0 +170732557987,438,0 +170732558035,437,0 +170732558084,266,0 +170732558134,285,1 +170732558220,438,0 +170732558270,438,0 +170732558319,438,0 +170732558369,438,0 +170732558417,438,0 +170732558465,438,0 +170732558513,438,0 +170732558562,438,0 +170732558612,438,0 +170732558660,438,0 +170732558708,438,0 +170732558756,438,0 +170732558804,438,0 +170732558852,438,0 +170732558901,438,0 +170732558949,438,0 +170732558998,438,0 +170732559048,438,0 +170732559096,295,1 +170732559177,280,1 +170732559258,438,0 +170732559306,438,0 +170732559354,438,0 +170732559402,438,0 +170732559450,438,0 +170732559500,438,0 +170732559548,438,0 +170732559597,438,0 +170732559645,438,0 +170732559695,438,0 +170732559744,438,0 +170732559792,438,0 +170732559840,438,0 +170732559890,438,0 +170732559939,438,0 +170732559988,438,0 +170732560036,438,0 +170732560086,438,0 +170732560134,437,0 +170732560182,257,0 +170732560231,277,1 +170732560313,438,0 +170732560361,438,0 +170732560411,438,0 +170732560459,438,0 +170732560507,438,0 +170732560555,438,0 +170732560603,438,0 +170732560651,438,0 +170732560700,438,0 +170732560748,438,0 +170732560798,438,0 +170732560847,438,0 +170732560895,438,0 +170732560945,438,0 +170732560993,438,0 +170732561041,438,0 +170732561090,438,0 +170732561138,438,0 +170732561188,436,0 +170732561237,290,1 +170732561324,435,0 +170732561373,438,0 +170732561421,438,0 +170732561471,438,0 +170732561519,438,0 +170732561568,438,0 +170732561616,438,0 +170732561664,438,0 +170732561713,438,0 +170732561761,438,0 +170732561809,438,0 +170732561859,438,0 +170732561907,438,0 +170732561956,438,0 +170732562004,438,0 +170732562052,438,0 +170732562102,438,0 +170732562150,438,0 +170732562198,438,0 +170732562247,285,1 +170732562335,260,0 +170732562385,437,0 +170732562433,438,0 +170732562481,438,0 +170732562530,438,0 +170732562580,438,0 +170732562628,438,0 +170732562677,438,0 +170732562727,438,0 +170732562775,438,0 +170732562825,438,0 +170732562873,438,0 +170732562921,438,0 +170732562969,438,0 +170732563017,438,0 +170732563065,438,0 +170732563113,438,0 +170732563162,438,0 +170732563210,438,0 +170732563258,437,0 +170732563306,286,1 +170732563391,420,0 +170732563440,438,0 +170732563490,438,0 +170732563538,438,0 +170732563587,438,0 +170732563635,438,0 +170732563685,438,0 +170732563733,438,0 +170732563782,438,0 +170732563832,438,0 +170732563880,438,0 +170732563928,438,0 +170732563977,438,0 +170732564027,438,0 +170732564075,438,0 +170732564123,438,0 +170732564171,438,0 +170732564219,438,0 +170732564268,438,0 +170732564318,437,0 +170732564366,283,1 +170732564456,431,0 +170732564506,438,0 +170732564554,438,0 +170732564602,438,0 +170732564650,438,0 +170732564697,438,0 +170732564747,438,0 +170732564797,438,0 +170732564845,438,0 +170732564892,438,0 +170732564940,438,0 +170732564990,438,0 +170732565038,438,0 +170732565086,438,0 +170732565134,438,0 +170732565183,438,0 +170732565231,438,0 +170732565279,438,0 +170732565327,438,0 +170732565377,434,0 +170732565426,294,1 +170732565515,436,0 +170732565563,438,0 +170732565611,438,0 +170732565660,438,0 +170732565710,438,0 +170732565759,438,0 +170732565807,438,0 +170732565857,438,0 +170732565905,438,0 +170732565953,438,0 +170732566000,438,0 +170732566048,438,0 +170732566096,438,0 +170732566144,438,0 +170732566192,438,0 +170732566242,438,0 +170732566290,438,0 +170732566339,438,0 +170732566387,438,0 +170732566435,276,1 +170732566520,252,0 +170732566569,437,0 +170732566619,438,0 +170732566668,438,0 +170732566716,438,0 +170732566766,438,0 +170732566814,438,0 +170732566862,438,0 +170732566910,438,0 +170732566958,438,0 +170732567007,438,0 +170732567057,438,0 +170732567106,438,0 +170732567154,438,0 +170732567204,438,0 +170732567252,438,0 +170732567301,438,0 +170732567349,438,0 +170732567397,438,0 +170732567445,438,0 +170732567493,438,0 +170732567543,438,0 +170732567592,438,0 +170732567640,438,0 +170732567688,438,0 +170732567738,438,0 +170732567786,438,0 +170732567835,438,0 +170732567883,438,0 +170732567931,438,0 +170732567979,437,0 +170732568028,299,1 +170732568111,427,0 +170732568159,438,0 +170732568207,438,0 +170732568255,438,0 +170732568303,438,0 +170732568352,438,0 +170732568402,438,0 +170732568450,438,0 +170732568498,438,0 +170732568546,438,0 +170732568594,438,0 +170732568642,438,0 +170732568691,438,0 +170732568739,438,0 +170732568789,438,0 +170732568836,438,0 +170732568884,438,0 +170732568932,438,0 +170732568980,438,0 +170732569028,437,0 +170732569076,289,1 +170732569162,430,0 +170732569210,438,0 +170732569258,438,0 +170732569307,438,0 +170732569357,438,0 +170732569406,438,0 +170732569454,438,0 +170732569502,438,0 +170732569550,438,0 +170732569600,438,0 +170732569649,438,0 +170732569699,438,0 +170732569748,438,0 +170732569796,438,0 +170732569846,438,0 +170732569895,438,0 +170732569945,438,0 +170732569993,438,0 +170732570042,438,0 +170732570090,437,0 +170732570138,276,1 +170732570228,435,0 +170732570277,438,0 +170732570325,438,0 +170732570373,438,0 +170732570422,438,0 +170732570470,438,0 +170732570518,438,0 +170732570568,438,0 +170732570617,438,0 +170732570665,438,0 +170732570713,438,0 +170732570761,438,0 +170732570811,438,0 +170732570859,438,0 +170732570906,438,0 +170732570954,438,0 +170732571004,438,0 +170732571053,438,0 +170732571103,438,0 +170732571153,275,1 +170732571241,234,0 +170732571289,437,0 +170732571337,438,0 +170732571385,438,0 +170732571433,438,0 +170732571481,438,0 +170732571530,438,0 +170732571578,438,0 +170732571626,438,0 +170732571676,438,0 +170732571725,438,0 +170732571773,438,0 +170732571822,438,0 +170732571870,438,0 +170732571920,438,0 +170732571968,438,0 +170732572016,438,0 +170732572064,438,0 +170732572112,438,0 +170732572161,437,0 +170732572211,301,1 +170732572297,428,0 +170732572345,438,0 +170732572394,438,0 +170732572444,438,0 +170732572492,438,0 +170732572541,438,0 +170732572591,438,0 +170732572639,438,0 +170732572687,438,0 +170732572735,438,0 +170732572783,438,0 +170732572831,438,0 +170732572879,438,0 +170732572927,438,0 +170732572975,438,0 +170732573023,438,0 +170732573070,438,0 +170732573118,438,0 +170732573166,438,0 +170732573214,437,0 +170732573262,284,1 +170732573351,414,0 +170732573401,438,0 +170732573449,438,0 +170732573497,438,0 +170732573545,438,0 +170732573592,438,0 +170732573640,438,0 +170732573688,438,0 +170732573736,438,0 +170732573784,438,0 +170732573833,438,0 +170732573881,438,0 +170732573931,438,0 +170732573979,438,0 +170732574027,438,0 +170732574075,438,0 +170732574123,438,0 +170732574171,438,0 +170732574219,438,0 +170732574268,437,0 +170732574318,303,1 +170732574412,433,0 +170732574460,438,0 +170732574508,438,0 +170732574556,438,0 +170732574604,438,0 +170732574652,438,0 +170732574701,438,0 +170732574749,438,0 +170732574799,438,0 +170732574847,438,0 +170732574896,438,0 +170732574946,438,0 +170732574995,438,0 +170732575045,438,0 +170732575093,438,0 +170732575142,438,0 +170732575192,438,0 +170732575240,438,0 +170732575288,438,0 +170732575335,345,0 +170732575383,302,1 +170732575471,436,0 +170732575519,438,0 +170732575569,438,0 +170732575616,438,0 +170732575664,438,0 +170732575712,438,0 +170732575760,438,0 +170732575808,438,0 +170732575856,438,0 +170732575904,438,0 +170732575952,438,0 +170732576000,438,0 +170732576048,438,0 +170732576095,438,0 +170732576143,438,0 +170732576191,438,0 +170732576239,438,0 +170732576287,438,0 +170732576336,438,0 +170732576384,436,0 +170732576432,307,1 +170732576517,435,0 +170732576565,438,0 +170732576613,438,0 +170732576661,438,0 +170732576709,438,0 +170732576757,438,0 +170732576806,438,0 +170732576854,438,0 +170732576902,438,0 +170732576950,438,0 +170732576999,438,0 +170732577047,438,0 +170732577095,438,0 +170732577143,438,0 +170732577191,438,0 +170732577241,438,0 +170732577289,438,0 +170732577337,438,0 +170732577386,438,0 +170732577434,372,0 +170732577482,296,1 +170732577569,436,0 +170732577618,438,0 +170732577666,438,0 +170732577714,438,0 +170732577762,438,0 +170732577810,438,0 +170732577858,438,0 +170732577908,438,0 +170732577955,438,0 +170732578003,438,0 +170732578051,438,0 +170732578099,438,0 +170732578147,438,0 +170732578195,438,0 +170732578245,438,0 +170732578293,438,0 +170732578341,438,0 +170732578390,438,0 +170732578438,438,0 +170732578488,281,1 +170732578579,246,0 +170732578628,437,0 +170732578676,438,0 +170732578724,438,0 +170732578774,438,0 +170732578822,438,0 +170732578870,438,0 +170732578918,438,0 +170732578965,438,0 +170732579015,438,0 +170732579063,438,0 +170732579111,438,0 +170732579159,438,0 +170732579207,438,0 +170732579255,438,0 +170732579303,438,0 +170732579351,438,0 +170732579398,438,0 +170732579446,438,0 +170732579494,438,0 +170732579542,280,1 +170732579627,254,0 +170732579674,437,0 +170732579722,438,0 +170732579770,438,0 +170732579818,438,0 +170732579866,438,0 +170732579914,438,0 +170732579962,438,0 +170732580011,438,0 +170732580059,438,0 +170732580109,438,0 +170732580157,438,0 +170732580206,438,0 +170732580254,438,0 +170732580302,438,0 +170732580352,438,0 +170732580400,438,0 +170732580448,438,0 +170732580497,438,0 +170732580545,437,0 +170732580595,297,1 +170732580677,231,0 +170732580725,438,0 +170732580775,438,0 +170732580824,438,0 +170732580872,438,0 +170732580920,438,0 +170732580968,438,0 +170732581016,438,0 +170732581064,438,0 +170732581111,438,0 +170732581159,438,0 +170732581207,438,0 +170732581256,438,0 +170732581306,438,0 +170732581353,438,0 +170732581401,438,0 +170732581451,438,0 +170732581501,438,0 +170732581550,438,0 +170732581598,437,0 +170732581647,290,1 +170732581739,429,0 +170732581788,438,0 +170732581838,438,0 +170732581886,438,0 +170732581934,438,0 +170732581982,438,0 +170732582031,438,0 +170732582079,438,0 +170732582127,438,0 +170732582175,438,0 +170732582223,438,0 +170732582273,438,0 +170732582321,438,0 +170732582369,438,0 +170732582418,438,0 +170732582468,438,0 +170732582516,438,0 +170732582563,438,0 +170732582611,438,0 +170732582659,438,0 +170732582707,285,1 +170732582799,428,0 +170732582847,438,0 +170732582895,438,0 +170732582943,438,0 +170732582991,438,0 +170732583040,438,0 +170732583088,438,0 +170732583136,438,0 +170732583184,438,0 +170732583232,438,0 +170732583281,438,0 +170732583331,438,0 +170732583379,438,0 +170732583426,438,0 +170732583474,438,0 +170732583522,438,0 +170732583570,438,0 +170732583620,438,0 +170732583667,438,0 +170732583715,437,0 +170732583765,286,1 +170732583849,431,0 +170732583899,438,0 +170732583947,438,0 +170732583995,438,0 +170732584042,438,0 +170732584090,438,0 +170732584140,438,0 +170732584188,438,0 +170732584237,438,0 +170732584285,438,0 +170732584333,438,0 +170732584382,438,0 +170732584430,438,0 +170732584478,438,0 +170732584528,438,0 +170732584575,438,0 +170732584625,438,0 +170732584673,438,0 +170732584721,438,0 +170732584769,256,0 +170732584816,285,1 +170732584912,437,0 +170732584960,438,0 +170732585008,438,0 +170732585056,438,0 +170732585103,438,0 +170732585153,438,0 +170732585201,438,0 +170732585249,438,0 +170732585296,438,0 +170732585344,438,0 +170732585392,438,0 +170732585440,438,0 +170732585488,438,0 +170732585536,438,0 +170732585585,438,0 +170732585633,438,0 +170732585681,438,0 +170732585729,438,0 +170732585777,438,0 +170732585825,423,0 +170732585873,291,1 +170732585954,433,0 +170732586002,438,0 +170732586050,438,0 +170732586100,438,0 +170732586148,438,0 +170732586196,438,0 +170732586244,438,0 +170732586291,438,0 +170732586339,438,0 +170732586389,438,0 +170732586437,438,0 +170732586486,438,0 +170732586534,438,0 +170732586582,438,0 +170732586632,438,0 +170732586680,438,0 +170732586728,438,0 +170732586776,438,0 +170732586823,438,0 +170732586871,257,0 +170732586919,294,1 +170732587011,437,0 +170732587059,438,0 +170732587107,438,0 +170732587155,438,0 +170732587203,438,0 +170732587251,438,0 +170732587298,438,0 +170732587346,438,0 +170732587394,438,0 +170732587442,438,0 +170732587490,438,0 +170732587538,438,0 +170732587586,438,0 +170732587634,438,0 +170732587682,438,0 +170732587729,438,0 +170732587777,438,0 +170732587825,438,0 +170732587873,438,0 +170732587921,262,0 +170732587969,288,1 +170732588057,436,0 +170732588105,438,0 +170732588153,438,0 +170732588201,438,0 +170732588249,438,0 +170732588297,438,0 +170732588344,438,0 +170732588392,438,0 +170732588440,438,0 +170732588488,438,0 +170732588536,438,0 +170732588584,438,0 +170732588632,438,0 +170732588680,438,0 +170732588728,438,0 +170732588775,438,0 +170732588823,438,0 +170732588871,438,0 +170732588919,438,0 +170732588967,430,0 +170732589015,297,1 +170732589101,434,0 +170732589149,438,0 +170732589197,438,0 +170732589245,438,0 +170732589294,438,0 +170732589344,438,0 +170732589394,438,0 +170732589442,438,0 +170732589490,438,0 +170732589538,438,0 +170732589585,438,0 +170732589633,438,0 +170732589681,438,0 +170732589731,438,0 +170732589779,438,0 +170732589828,438,0 +170732589876,438,0 +170732589925,438,0 +170732589973,438,0 +170732590021,265,0 +170732590074,276,1 +170732590161,436,0 +170732590210,438,0 +170732590260,438,0 +170732590307,438,0 +170732590355,438,0 +170732590403,438,0 +170732590451,438,0 +170732590501,438,0 +170732590550,438,0 +170732590598,438,0 +170732590646,438,0 +170732590694,438,0 +170732590741,438,0 +170732590789,438,0 +170732590837,438,0 +170732590885,438,0 +170732590933,438,0 +170732590981,438,0 +170732591029,438,0 +170732591077,282,1 +170732591162,262,0 +170732591210,436,0 +170732591258,438,0 +170732591307,438,0 +170732591355,438,0 +170732591405,438,0 +170732591453,438,0 +170732591502,438,0 +170732591552,438,0 +170732591600,438,0 +170732591649,438,0 +170732591697,438,0 +170732591747,438,0 +170732591795,438,0 +170732591844,438,0 +170732591894,438,0 +170732591943,438,0 +170732591993,438,0 +170732592041,438,0 +170732592089,438,0 +170732592136,275,1 +170732592223,273,1 +170732592307,438,0 +170732592354,438,0 +170732592402,438,0 +170732592450,438,0 +170732592498,438,0 +170732592548,438,0 +170732592596,438,0 +170732592644,438,0 +170732592691,438,0 +170732592739,438,0 +170732592787,438,0 +170732592835,438,0 +170732592883,438,0 +170732592931,438,0 +170732592979,438,0 +170732593027,438,0 +170732593074,438,0 +170732593122,438,0 +170732593170,293,1 +170732593255,270,1 +170732593340,438,0 +170732593388,438,0 +170732593437,438,0 +170732593485,438,0 +170732593533,438,0 +170732593582,438,0 +170732593630,438,0 +170732593680,438,0 +170732593728,438,0 +170732593777,438,0 +170732593825,438,0 +170732593873,438,0 +170732593921,438,0 +170732593969,438,0 +170732594017,438,0 +170732594066,438,0 +170732594114,438,0 +170732594162,438,0 +170732594210,418,0 +170732594258,278,1 +170732594343,436,0 +170732594391,438,0 +170732594438,438,0 +170732594486,438,0 +170732594534,438,0 +170732594582,438,0 +170732594630,438,0 +170732594678,438,0 +170732594726,438,0 +170732594775,438,0 +170732594823,438,0 +170732594871,438,0 +170732594919,438,0 +170732594967,438,0 +170732595015,438,0 +170732595063,438,0 +170732595111,438,0 +170732595158,438,0 +170732595208,438,0 +170732595257,436,0 +170732595305,285,1 +170732595397,435,0 +170732595445,438,0 +170732595494,438,0 +170732595542,438,0 +170732595592,438,0 +170732595641,438,0 +170732595691,438,0 +170732595741,438,0 +170732595788,438,0 +170732595836,438,0 +170732595886,438,0 +170732595934,438,0 +170732595983,438,0 +170732596031,438,0 +170732596079,438,0 +170732596129,438,0 +170732596177,438,0 +170732596226,438,0 +170732596274,438,0 +170732596324,295,1 +170732596399,258,0 +170732596447,436,0 +170732596495,438,0 +170732596545,438,0 +170732596593,438,0 +170732596642,438,0 +170732596692,438,0 +170732596739,438,0 +170732596787,438,0 +170732596835,438,0 +170732596883,438,0 +170732596931,438,0 +170732596979,438,0 +170732597027,438,0 +170732597076,438,0 +170732597124,438,0 +170732597172,438,0 +170732597221,438,0 +170732597271,438,0 +170732597320,437,0 +170732597368,281,1 +170732597453,274,1 +170732597538,438,0 +170732597587,438,0 +170732597635,438,0 +170732597683,438,0 +170732597733,438,0 +170732597780,438,0 +170732597830,438,0 +170732597878,438,0 +170732597926,438,0 +170732597974,438,0 +170732598022,438,0 +170732598070,438,0 +170732598119,438,0 +170732598167,438,0 +170732598215,438,0 +170732598265,438,0 +170732598313,438,0 +170732598362,438,0 +170732598412,437,0 +170732598460,264,0 +170732598507,277,1 +170732598596,438,0 +170732598644,438,0 +170732598692,438,0 +170732598740,438,0 +170732598788,438,0 +170732598836,438,0 +170732598883,438,0 +170732598933,438,0 +170732598981,438,0 +170732599030,438,0 +170732599078,438,0 +170732599126,438,0 +170732599174,438,0 +170732599222,438,0 +170732599270,438,0 +170732599318,438,0 +170732599368,438,0 +170732599416,438,0 +170732599464,285,1 +170732599548,253,0 +170732599596,436,0 +170732599644,438,0 +170732599692,438,0 +170732599740,438,0 +170732599787,438,0 +170732599837,438,0 +170732599886,438,0 +170732599934,438,0 +170732599982,438,0 +170732600032,438,0 +170732600080,438,0 +170732600128,438,0 +170732600177,438,0 +170732600225,438,0 +170732600273,438,0 +170732600321,438,0 +170732600369,438,0 +170732600417,438,0 +170732600467,438,0 +170732600515,306,1 +170732600601,248,0 +170732600649,437,0 +170732600699,438,0 +170732600748,438,0 +170732600796,438,0 +170732600844,438,0 +170732600892,438,0 +170732600940,438,0 +170732600989,438,0 +170732601037,438,0 +170732601085,438,0 +170732601135,438,0 +170732601183,438,0 +170732601232,438,0 +170732601280,438,0 +170732601328,438,0 +170732601376,438,0 +170732601424,438,0 +170732601472,438,0 +170732601520,437,0 +170732601569,259,0 +170732601617,286,1 +170732601706,438,0 +170732601754,438,0 +170732601802,438,0 +170732601852,438,0 +170732601900,438,0 +170732601947,438,0 +170732601995,438,0 +170732602043,438,0 +170732602093,438,0 +170732602141,438,0 +170732602189,438,0 +170732602238,438,0 +170732602286,438,0 +170732602334,438,0 +170732602384,438,0 +170732602433,438,0 +170732602481,438,0 +170732602531,438,0 +170732602579,437,0 +170732602627,257,0 +170732602676,308,1 +170732602768,438,0 +170732602816,438,0 +170732602865,438,0 +170732602913,438,0 +170732602962,438,0 +170732603010,438,0 +170732603060,438,0 +170732603108,438,0 +170732603156,438,0 +170732603206,438,0 +170732603254,438,0 +170732603301,438,0 +170732603351,438,0 +170732603399,438,0 +170732603447,438,0 +170732603495,438,0 +170732603543,438,0 +170732603591,438,0 +170732603638,437,0 +170732603686,285,1 +170732603798,436,0 +170732603845,438,0 +170732603893,438,0 +170732603941,438,0 +170732603991,438,0 +170732604039,438,0 +170732604087,438,0 +170732604135,438,0 +170732604183,438,0 +170732604230,438,0 +170732604278,438,0 +170732604326,438,0 +170732604374,438,0 +170732604422,438,0 +170732604470,438,0 +170732604518,438,0 +170732604566,438,0 +170732604614,438,0 +170732604662,438,0 +170732604710,264,0 +170732604757,304,1 +170732604846,437,0 +170732604894,438,0 +170732604944,438,0 +170732604991,438,0 +170732605039,438,0 +170732605087,438,0 +170732605135,438,0 +170732605183,438,0 +170732605231,438,0 +170732605279,438,0 +170732605327,438,0 +170732605374,438,0 +170732605422,438,0 +170732605470,438,0 +170732605518,438,0 +170732605568,438,0 +170732605616,438,0 +170732605665,438,0 +170732605713,438,0 +170732605763,286,1 +170732605850,238,0 +170732605899,437,0 +170732605947,438,0 +170732605995,438,0 +170732606043,438,0 +170732606091,438,0 +170732606139,438,0 +170732606187,438,0 +170732606235,438,0 +170732606283,438,0 +170732606333,438,0 +170732606382,438,0 +170732606430,438,0 +170732606480,438,0 +170732606527,438,0 +170732606575,438,0 +170732606623,438,0 +170732606671,438,0 +170732606719,438,0 +170732606767,437,0 +170732606815,301,1 +170732606902,424,0 +170732606950,438,0 +170732606998,438,0 +170732607046,438,0 +170732607094,438,0 +170732607142,438,0 +170732607190,438,0 +170732607238,438,0 +170732607286,438,0 +170732607336,438,0 +170732607383,438,0 +170732607431,438,0 +170732607479,438,0 +170732607527,438,0 +170732607575,438,0 +170732607625,438,0 +170732607673,438,0 +170732607721,438,0 +170732607770,438,0 +170732607818,437,0 +170732607866,285,1 +170732607951,249,0 +170732607999,438,0 +170732608047,438,0 +170732608095,438,0 +170732608143,438,0 +170732608191,438,0 +170732608241,438,0 +170732608289,438,0 +170732608338,438,0 +170732608386,438,0 +170732608436,438,0 +170732608485,438,0 +170732608535,438,0 +170732608584,438,0 +170732608632,438,0 +170732608680,438,0 +170732608730,438,0 +170732608779,438,0 +170732608827,438,0 +170732608877,437,0 +170732608925,296,1 +170732609017,433,0 +170732609066,438,0 +170732609114,438,0 +170732609162,438,0 +170732609212,438,0 +170732609261,438,0 +170732609311,438,0 +170732609361,438,0 +170732609410,438,0 +170732609458,438,0 +170732609506,438,0 +170732609554,438,0 +170732609602,438,0 +170732609650,438,0 +170732609700,438,0 +170732609749,438,0 +170732609799,438,0 +170732609848,438,0 +170732609898,437,0 +170732609947,293,1 +170732610032,249,0 +170732610082,437,0 +170732610132,438,0 +170732610181,438,0 +170732610229,438,0 +170732610277,438,0 +170732610325,438,0 +170732610374,438,0 +170732610424,438,0 +170732610472,438,0 +170732610521,438,0 +170732610569,438,0 +170732610617,438,0 +170732610667,438,0 +170732610716,438,0 +170732610764,438,0 +170732610812,438,0 +170732610862,438,0 +170732610910,438,0 +170732610959,437,0 +170732611007,284,1 +170732611097,233,0 +170732611147,438,0 +170732611195,438,0 +170732611244,438,0 +170732611292,438,0 +170732611340,438,0 +170732611390,438,0 +170732611439,438,0 +170732611487,438,0 +170732611535,438,0 +170732611583,438,0 +170732611631,438,0 +170732611679,438,0 +170732611727,438,0 +170732611775,438,0 +170732611824,438,0 +170732611872,438,0 +170732611920,438,0 +170732611969,438,0 +170732612017,437,0 +170732612065,292,1 +170732612155,423,0 +170732612204,438,0 +170732612252,438,0 +170732612302,438,0 +170732612351,438,0 +170732612399,438,0 +170732612449,438,0 +170732612496,438,0 +170732612546,438,0 +170732612596,438,0 +170732612645,438,0 +170732612693,438,0 +170732612742,438,0 +170732612790,438,0 +170732612840,438,0 +170732612889,438,0 +170732612937,438,0 +170732612985,438,0 +170732613035,438,0 +170732613084,436,0 +170732613132,285,1 +170732613222,435,0 +170732613272,438,0 +170732613320,438,0 +170732613369,438,0 +170732613419,438,0 +170732613468,438,0 +170732613518,438,0 +170732613567,438,0 +170732613615,438,0 +170732613663,438,0 +170732613711,438,0 +170732613759,438,0 +170732613807,438,0 +170732613855,438,0 +170732613903,438,0 +170732613952,438,0 +170732614000,438,0 +170732614048,437,0 +170732614096,438,0 +170732614145,264,0 +170732614193,287,1 +170732614284,437,0 +170732614332,438,0 +170732614382,438,0 +170732614430,438,0 +170732614479,438,0 +170732614527,438,0 +170732614575,438,0 +170732614623,438,0 +170732614671,438,0 +170732614720,438,0 +170732614768,438,0 +170732614816,438,0 +170732614864,438,0 +170732614912,438,0 +170732614960,438,0 +170732615008,438,0 +170732615055,438,0 +170732615103,438,0 +170732615151,437,0 +170732615199,300,1 +170732615293,233,0 +170732615343,438,0 +170732615391,438,0 +170732615439,438,0 +170732615488,438,0 +170732615538,438,0 +170732615587,438,0 +170732615635,438,0 +170732615685,438,0 +170732615732,438,0 +170732615780,438,0 +170732615830,438,0 +170732615878,438,0 +170732615927,438,0 +170732615975,438,0 +170732616025,438,0 +170732616075,438,0 +170732616123,438,0 +170732616171,438,0 +170732616219,437,0 +170732616266,296,1 +170732616359,434,0 +170732616407,438,0 +170732616455,438,0 +170732616503,438,0 +170732616550,438,0 +170732616598,438,0 +170732616646,438,0 +170732616694,438,0 +170732616744,438,0 +170732616791,438,0 +170732616839,438,0 +170732616887,438,0 +170732616935,438,0 +170732616983,438,0 +170732617031,438,0 +170732617079,438,0 +170732617127,438,0 +170732617175,438,0 +170732617223,438,0 +170732617270,437,0 +170732617318,281,1 +170732617405,431,0 +170732617453,438,0 +170732617501,438,0 +170732617549,438,0 +170732617597,438,0 +170732617645,438,0 +170732617693,438,0 +170732617740,438,0 +170732617788,438,0 +170732617836,438,0 +170732617884,438,0 +170732617932,438,0 +170732617982,438,0 +170732618030,438,0 +170732618078,438,0 +170732618127,438,0 +170732618175,438,0 +170732618223,438,0 +170732618271,438,0 +170732618319,436,0 +170732618367,305,1 +170732618458,433,0 +170732618506,438,0 +170732618554,438,0 +170732618604,438,0 +170732618652,438,0 +170732618701,438,0 +170732618749,438,0 +170732618797,438,0 +170732618845,438,0 +170732618895,438,0 +170732618942,438,0 +170732618990,438,0 +170732619038,438,0 +170732619088,438,0 +170732619136,438,0 +170732619185,438,0 +170732619235,438,0 +170732619283,438,0 +170732619332,438,0 +170732619382,433,0 +170732619430,281,1 +170732619511,433,0 +170732619560,438,0 +170732619608,438,0 +170732619656,438,0 +170732619704,438,0 +170732619754,438,0 +170732619803,438,0 +170732619851,438,0 +170732619899,438,0 +170732619947,438,0 +170732619995,438,0 +170732620043,438,0 +170732620091,438,0 +170732620139,438,0 +170732620189,438,0 +170732620237,438,0 +170732620286,438,0 +170732620334,438,0 +170732620382,438,0 +170732620432,436,0 +170732620480,302,1 +170732620567,433,0 +170732620615,438,0 +170732620663,438,0 +170732620711,438,0 +170732620760,438,0 +170732620810,438,0 +170732620859,438,0 +170732620909,438,0 +170732620958,438,0 +170732621006,438,0 +170732621054,438,0 +170732621104,438,0 +170732621152,438,0 +170732621200,438,0 +170732621248,438,0 +170732621296,438,0 +170732621345,438,0 +170732621393,438,0 +170732621441,438,0 +170732621489,279,1 +170732621578,246,0 +170732621626,437,0 +170732621674,438,0 +170732621722,438,0 +170732621770,438,0 +170732621819,438,0 +170732621867,438,0 +170732621915,438,0 +170732621963,438,0 +170732622011,438,0 +170732622059,438,0 +170732622107,438,0 +170732622155,438,0 +170732622203,438,0 +170732622251,438,0 +170732622299,438,0 +170732622349,438,0 +170732622398,438,0 +170732622448,438,0 +170732622495,437,0 +170732622545,296,1 +170732622631,233,0 +170732622680,438,0 +170732622728,438,0 +170732622776,438,0 +170732622826,438,0 +170732622876,438,0 +170732622923,438,0 +170732622973,438,0 +170732623021,438,0 +170732623070,438,0 +170732623120,438,0 +170732623168,438,0 +170732623217,438,0 +170732623267,438,0 +170732623315,438,0 +170732623363,438,0 +170732623412,438,0 +170732623460,438,0 +170732623508,438,0 +170732623556,438,0 +170732623604,289,1 +170732623685,234,0 +170732623732,437,0 +170732623782,438,0 +170732623831,438,0 +170732623881,438,0 +170732623929,438,0 +170732623977,438,0 +170732624025,438,0 +170732624073,438,0 +170732624121,438,0 +170732624169,438,0 +170732624217,438,0 +170732624264,438,0 +170732624312,438,0 +170732624360,438,0 +170732624408,438,0 +170732624456,438,0 +170732624504,438,0 +170732624552,438,0 +170732624600,437,0 +170732624648,306,1 +170732624734,319,0 +170732624782,438,0 +170732624830,438,0 +170732624878,438,0 +170732624926,438,0 +170732624974,438,0 +170732625022,438,0 +170732625071,438,0 +170732625119,438,0 +170732625167,438,0 +170732625215,438,0 +170732625265,438,0 +170732625313,438,0 +170732625362,438,0 +170732625410,438,0 +170732625458,438,0 +170732625506,438,0 +170732625554,438,0 +170732625602,438,0 +170732625650,437,0 +170732625698,285,1 +170732625791,428,0 +170732625840,438,0 +170732625888,438,0 +170732625936,438,0 +170732625984,438,0 +170732626032,438,0 +170732626080,438,0 +170732626128,438,0 +170732626176,438,0 +170732626224,438,0 +170732626272,438,0 +170732626322,438,0 +170732626370,438,0 +170732626419,438,0 +170732626467,438,0 +170732626516,438,0 +170732626564,438,0 +170732626614,438,0 +170732626662,438,0 +170732626710,437,0 +170732626758,295,1 +170732626847,430,0 +170732626897,438,0 +170732626947,438,0 +170732626994,438,0 +170732627042,438,0 +170732627090,438,0 +170732627138,438,0 +170732627188,438,0 +170732627237,438,0 +170732627287,438,0 +170732627335,438,0 +170732627382,438,0 +170732627430,438,0 +170732627478,438,0 +170732627526,438,0 +170732627574,438,0 +170732627623,438,0 +170732627671,438,0 +170732627721,438,0 +170732627769,437,0 +170732627816,288,1 +170732627903,428,0 +170732627951,438,0 +170732627998,438,0 +170732628046,438,0 +170732628094,438,0 +170732628142,438,0 +170732628190,438,0 +170732628238,438,0 +170732628286,438,0 +170732628334,438,0 +170732628382,438,0 +170732628429,438,0 +170732628477,438,0 +170732628525,438,0 +170732628573,438,0 +170732628623,438,0 +170732628672,438,0 +170732628722,438,0 +170732628770,438,0 +170732628818,436,0 +170732628866,296,1 +170732628959,436,0 +170732629007,438,0 +170732629055,438,0 +170732629105,438,0 +170732629153,438,0 +170732629201,438,0 +170732629250,438,0 +170732629298,438,0 +170732629346,438,0 +170732629394,438,0 +170732629442,438,0 +170732629490,438,0 +170732629538,438,0 +170732629586,438,0 +170732629634,438,0 +170732629683,438,0 +170732629733,438,0 +170732629781,438,0 +170732629829,438,0 +170732629878,429,0 +170732629926,296,1 +170732630514,438,0 +170732630561,438,0 +170732630609,438,0 +170732630657,438,0 +170732630705,438,0 +170732630753,438,0 +170732630803,438,0 +170732630851,438,0 +170732630899,438,0 +170732630948,265,0 +170732630996,287,1 +170732631083,438,0 +170732631131,438,0 +170732631179,438,0 +170732631227,438,0 +170732631275,438,0 +170732631323,438,0 +170732631371,438,0 +170732631420,438,0 +170732631470,438,0 +170732631519,438,0 +170732631567,438,0 +170732631615,438,0 +170732631663,438,0 +170732631711,438,0 +170732631759,438,0 +170732631806,438,0 +170732631854,438,0 +170732631902,438,0 +170732631950,437,0 +170732631998,302,1 +170732632091,433,0 +170732632139,438,0 +170732632187,438,0 +170732632235,438,0 +170732632282,438,0 +170732632332,438,0 +170732632380,438,0 +170732632429,438,0 +170732632477,438,0 +170732632525,438,0 +170732632575,438,0 +170732632623,438,0 +170732632671,438,0 +170732632718,438,0 +170732632766,438,0 +170732632816,438,0 +170732632864,438,0 +170732632912,438,0 +170732632960,438,0 +170732633008,437,0 +170732633057,280,1 +170732633141,430,0 +170732633191,438,0 +170732633239,438,0 +170732633287,438,0 +170732633335,438,0 +170732633383,438,0 +170732633431,438,0 +170732633479,438,0 +170732633528,438,0 +170732633576,438,0 +170732633626,438,0 +170732633674,438,0 +170732633722,438,0 +170732633770,438,0 +170732633818,438,0 +170732633867,438,0 +170732633915,438,0 +170732633963,438,0 +170732634011,438,0 +170732634059,437,0 +170732634107,271,1 +170732634198,432,0 +170732634248,438,0 +170732634296,438,0 +170732634345,438,0 +170732634393,438,0 +170732634441,438,0 +170732634489,438,0 +170732634537,438,0 +170732634587,438,0 +170732634636,438,0 +170732634686,438,0 +170732634734,438,0 +170732634782,438,0 +170732634830,438,0 +170732634879,438,0 +170732634927,438,0 +170732634977,438,0 +170732635026,438,0 +170732635076,437,0 +170732635124,403,0 +170732635173,289,1 +170732635259,436,0 +170732635309,438,0 +170732635358,438,0 +170732635406,438,0 +170732635454,438,0 +170732635502,438,0 +170732635552,438,0 +170732635600,438,0 +170732635649,438,0 +170732635699,438,0 +170732635748,438,0 +170732635796,438,0 +170732635844,438,0 +170732635892,438,0 +170732635942,438,0 +170732635990,438,0 +170732636039,438,0 +170732636089,438,0 +170732636138,438,0 +170732636188,279,1 +170732636272,236,0 +170732636322,437,0 +170732636370,438,0 +170732636419,438,0 +170732636467,438,0 +170732636517,438,0 +170732636565,438,0 +170732636613,438,0 +170732636662,438,0 +170732636710,438,0 +170732636760,438,0 +170732636809,438,0 +170732636857,438,0 +170732636907,438,0 +170732636955,438,0 +170732637003,438,0 +170732637051,438,0 +170732637100,438,0 +170732637148,438,0 +170732637198,437,0 +170732637246,303,1 +170732637330,425,0 +170732637378,438,0 +170732637426,438,0 +170732637473,438,0 +170732637521,438,0 +170732637569,438,0 +170732637617,438,0 +170732637665,438,0 +170732637713,438,0 +170732637763,438,0 +170732637810,438,0 +170732637860,438,0 +170732637908,438,0 +170732637956,438,0 +170732638005,438,0 +170732638053,438,0 +170732638103,438,0 +170732638151,438,0 +170732638200,438,0 +170732638250,437,0 +170732638299,296,1 +170732638385,430,0 +170732638433,438,0 +170732638482,438,0 +170732638530,438,0 +170732638578,438,0 +170732638626,438,0 +170732638673,438,0 +170732638723,438,0 +170732638773,438,0 +170732638820,438,0 +170732638870,438,0 +170732638920,438,0 +170732638969,438,0 +170732639019,438,0 +170732639067,438,0 +170732639116,438,0 +170732639164,438,0 +170732639212,438,0 +170732639260,438,0 +170732639308,437,0 +170732639358,302,1 +170732639448,434,0 +170732639496,438,0 +170732639545,438,0 +170732639595,438,0 +170732639643,438,0 +170732639691,438,0 +170732639739,438,0 +170732639787,438,0 +170732639835,438,0 +170732639882,438,0 +170732639930,438,0 +170732639978,438,0 +170732640026,438,0 +170732640074,438,0 +170732640122,438,0 +170732640170,438,0 +170732640218,438,0 +170732640265,438,0 +170732640313,438,0 +170732640361,435,0 +170732640409,299,1 +170732640497,435,0 +170732640545,438,0 +170732640593,438,0 +170732640641,438,0 +170732640688,438,0 +170732640736,438,0 +170732640786,438,0 +170732640834,438,0 +170732640881,438,0 +170732640929,438,0 +170732640977,438,0 +170732641025,438,0 +170732641073,438,0 +170732641121,438,0 +170732641169,438,0 +170732641217,438,0 +170732641265,438,0 +170732641313,438,0 +170732641361,438,0 +170732641408,435,0 +170732641456,273,1 +170732641538,432,0 +170732641585,438,0 +170732641633,438,0 +170732641681,438,0 +170732641729,438,0 +170732641777,438,0 +170732641825,438,0 +170732641873,438,0 +170732641921,438,0 +170732641969,438,0 +170732642017,438,0 +170732642065,438,0 +170732642112,438,0 +170732642160,438,0 +170732642210,438,0 +170732642258,438,0 +170732642305,438,0 +170732642355,438,0 +170732642404,438,0 +170732642452,438,0 +170732642500,277,1 +170732642587,426,0 +170732642635,438,0 +170732642683,438,0 +170732642731,438,0 +170732642779,438,0 +170732642828,438,0 +170732642876,438,0 +170732642924,438,0 +170732642972,438,0 +170732643022,438,0 +170732643070,438,0 +170732643117,438,0 +170732643165,438,0 +170732643213,438,0 +170732643261,438,0 +170732643309,438,0 +170732643357,438,0 +170732643405,438,0 +170732643453,438,0 +170732643501,436,0 +170732643551,289,1 +170732643642,436,0 +170732643691,438,0 +170732643739,438,0 +170732643787,438,0 +170732643835,438,0 +170732643885,438,0 +170732643933,438,0 +170732643981,438,0 +170732644029,438,0 +170732644078,438,0 +170732644126,438,0 +170732644175,438,0 +170732644223,438,0 +170732644271,438,0 +170732644319,438,0 +170732644367,438,0 +170732644415,438,0 +170732644463,438,0 +170732644512,438,0 +170732644560,427,0 +170732644608,276,1 +170732644698,437,0 +170732644747,438,0 +170732644795,438,0 +170732644843,438,0 +170732644891,438,0 +170732644939,438,0 +170732644989,438,0 +170732645037,438,0 +170732645085,438,0 +170732645134,438,0 +170732645182,438,0 +170732645230,438,0 +170732645278,438,0 +170732645327,438,0 +170732645377,438,0 +170732645425,438,0 +170732645474,438,0 +170732645522,438,0 +170732645570,438,0 +170732645620,286,1 +170732645711,242,0 +170732645759,437,0 +170732645807,438,0 +170732645856,438,0 +170732645906,438,0 +170732645954,438,0 +170732646002,438,0 +170732646050,438,0 +170732646099,438,0 +170732646147,438,0 +170732646195,438,0 +170732646243,438,0 +170732646293,438,0 +170732646342,438,0 +170732646392,438,0 +170732646440,438,0 +170732646488,438,0 +170732646537,438,0 +170732646587,438,0 +170732646635,437,0 +170732646684,267,0 +170732646734,284,1 +170732646822,438,0 +170732646870,438,0 +170732646918,438,0 +170732646967,438,0 +170732647017,438,0 +170732647065,438,0 +170732647114,438,0 +170732647164,438,0 +170732647213,438,0 +170732647261,438,0 +170732647309,438,0 +170732647357,438,0 +170732647407,438,0 +170732647455,438,0 +170732647504,438,0 +170732647552,438,0 +170732647600,438,0 +170732647650,438,0 +170732647698,436,0 +170732647745,299,1 +170732647838,435,0 +170732647887,438,0 +170732647935,438,0 +170732647983,438,0 +170732648031,438,0 +170732648079,438,0 +170732648129,438,0 +170732648176,438,0 +170732648224,438,0 +170732648274,438,0 +170732648322,438,0 +170732648370,438,0 +170732648419,438,0 +170732648467,438,0 +170732648515,438,0 +170732648565,438,0 +170732648613,438,0 +170732648662,438,0 +170732648712,438,0 +170732648761,436,0 +170732648809,289,1 +170732648894,434,0 +170732648944,438,0 +170732648992,438,0 +170732649041,438,0 +170732649089,438,0 +170732649139,438,0 +170732649186,438,0 +170732649234,438,0 +170732649282,438,0 +170732649332,438,0 +170732649380,438,0 +170732649429,438,0 +170732649479,438,0 +170732649527,438,0 +170732649575,438,0 +170732649624,438,0 +170732649674,438,0 +170732649723,438,0 +170732649771,438,0 +170732649819,275,1 +170732649904,256,0 +170732649954,436,0 +170732650002,438,0 +170732650051,438,0 +170732650101,438,0 +170732650149,438,0 +170732650197,438,0 +170732650244,438,0 +170732650294,438,0 +170732650344,438,0 +170732650393,438,0 +170732650441,438,0 +170732650491,438,0 +170732650539,438,0 +170732650587,438,0 +170732650635,438,0 +170732650683,438,0 +170732650732,438,0 +170732650780,438,0 +170732650828,437,0 +170732650876,290,1 +170732650963,425,0 +170732651011,438,0 +170732651059,438,0 +170732651107,438,0 +170732651156,438,0 +170732651204,438,0 +170732651252,438,0 +170732651300,438,0 +170732651348,438,0 +170732651396,438,0 +170732651444,438,0 +170732651492,438,0 +170732651540,438,0 +170732651589,438,0 +170732651637,438,0 +170732651685,438,0 +170732651733,438,0 +170732651781,438,0 +170732651829,438,0 +170732651877,437,0 +170732651925,296,1 +170732652016,429,0 +170732652066,438,0 +170732652115,438,0 +170732652163,438,0 +170732652211,438,0 +170732652261,438,0 +170732652309,438,0 +170732652358,438,0 +170732652408,438,0 +170732652457,438,0 +170732652505,438,0 +170732652553,438,0 +170732652603,438,0 +170732652652,438,0 +170732652700,438,0 +170732652748,438,0 +170732652796,438,0 +170732652844,438,0 +170732652892,438,0 +170732652941,437,0 +170732652989,281,1 +170732653069,429,0 +170732653116,438,0 +170732653166,438,0 +170732653214,438,0 +170732653262,438,0 +170732653310,438,0 +170732653357,438,0 +170732653405,438,0 +170732653453,438,0 +170732653501,438,0 +170732653549,438,0 +170732653597,438,0 +170732653646,438,0 +170732653694,438,0 +170732653742,438,0 +170732653790,438,0 +170732653838,438,0 +170732653887,438,0 +170732653937,438,0 +170732653987,436,0 +170732654035,291,1 +170732654116,432,0 +170732654164,438,0 +170732654213,438,0 +170732654261,438,0 +170732654311,438,0 +170732654359,438,0 +170732654408,438,0 +170732654456,438,0 +170732654504,438,0 +170732654552,438,0 +170732654600,438,0 +170732654648,438,0 +170732654696,438,0 +170732654744,438,0 +170732654793,438,0 +170732654841,438,0 +170732654889,438,0 +170732654937,438,0 +170732654985,438,0 +170732655032,437,0 +170732655082,299,1 +170732655173,434,0 +170732655221,438,0 +170732655269,438,0 +170732655317,438,0 +170732655367,438,0 +170732655415,438,0 +170732655463,438,0 +170732655511,438,0 +170732655558,438,0 +170732655606,438,0 +170732655656,438,0 +170732655703,438,0 +170732655751,438,0 +170732655799,438,0 +170732655847,438,0 +170732655895,438,0 +170732655943,438,0 +170732655991,438,0 +170732656039,438,0 +170732656087,437,0 +170732656135,289,1 +170732656215,429,0 +170732656263,438,0 +170732656311,438,0 +170732656361,438,0 +170732656409,438,0 +170732656458,438,0 +170732656506,438,0 +170732656556,438,0 +170732656603,438,0 +170732656653,438,0 +170732656701,438,0 +170732656749,438,0 +170732656798,438,0 +170732656846,438,0 +170732656894,438,0 +170732656942,438,0 +170732656991,438,0 +170732657039,438,0 +170732657087,438,0 +170732657135,437,0 +170732657183,272,1 +170732657266,430,0 +170732657314,438,0 +170732657362,438,0 +170732657410,438,0 +170732657458,438,0 +170732657506,438,0 +170732657555,438,0 +170732657603,438,0 +170732657653,438,0 +170732657700,438,0 +170732657750,438,0 +170732657798,438,0 +170732657846,438,0 +170732657894,438,0 +170732657942,438,0 +170732657991,438,0 +170732658039,438,0 +170732658087,438,0 +170732658135,438,0 +170732658184,436,0 +170732658232,294,1 +170732658318,434,0 +170732658368,438,0 +170732658416,438,0 +170732658463,438,0 +170732658511,438,0 +170732658559,438,0 +170732658607,438,0 +170732658657,438,0 +170732658704,438,0 +170732658752,438,0 +170732658802,438,0 +170732658850,438,0 +170732658898,438,0 +170732658945,438,0 +170732658993,438,0 +170732659041,438,0 +170732659089,438,0 +170732659137,438,0 +170732659185,438,0 +170732659233,436,0 +170732659281,303,1 +170732659369,435,0 +170732659417,438,0 +170732659465,438,0 +170732659513,438,0 +170732659561,438,0 +170732659609,438,0 +170732659657,438,0 +170732659704,438,0 +170732659752,438,0 +170732659800,438,0 +170732659850,438,0 +170732659898,438,0 +170732659946,438,0 +170732659994,438,0 +170732660043,438,0 +170732660091,438,0 +170732660139,438,0 +170732660187,438,0 +170732660235,438,0 +170732660283,431,0 +170732660331,282,1 +170732660415,435,0 +170732660463,438,0 +170732660511,438,0 +170732660559,438,0 +170732660607,438,0 +170732660655,438,0 +170732660703,438,0 +170732660751,438,0 +170732660799,438,0 +170732660847,438,0 +170732660896,438,0 +170732660946,438,0 +170732660994,438,0 +170732661042,438,0 +170732661090,438,0 +170732661139,438,0 +170732661187,438,0 +170732661235,438,0 +170732661283,438,0 +170732661331,436,0 +170732661381,301,1 +170732661460,432,0 +170732661509,438,0 +170732661557,438,0 +170732661605,438,0 +170732661655,438,0 +170732661703,438,0 +170732661751,438,0 +170732661800,438,0 +170732661848,438,0 +170732661896,438,0 +170732661946,438,0 +170732661993,438,0 +170732662041,438,0 +170732662089,438,0 +170732662139,438,0 +170732662189,438,0 +170732662236,438,0 +170732662284,438,0 +170732662332,438,0 +170732662380,433,0 +170732662430,304,1 +170732662521,435,0 +170732662569,438,0 +170732662617,438,0 +170732662665,438,0 +170732662713,438,0 +170732662762,438,0 +170732662810,438,0 +170732662858,438,0 +170732662907,438,0 +170732662957,438,0 +170732663005,438,0 +170732663053,438,0 +170732663101,438,0 +170732663149,438,0 +170732663197,438,0 +170732663245,438,0 +170732663293,438,0 +170732663342,438,0 +170732663390,438,0 +170732663438,335,0 +170732663488,303,1 +170732663571,436,0 +170732663618,438,0 +170732663666,438,0 +170732663714,438,0 +170732663762,438,0 +170732663812,438,0 +170732663860,438,0 +170732663908,438,0 +170732663956,438,0 +170732664005,438,0 +170732664053,438,0 +170732664101,438,0 +170732664149,438,0 +170732664197,438,0 +170732664245,438,0 +170732664293,438,0 +170732664341,438,0 +170732664389,438,0 +170732664437,438,0 +170732664484,432,0 +170732664532,293,1 +170732664616,434,0 +170732664664,438,0 +170732664713,438,0 +170732664761,438,0 +170732664811,438,0 +170732664859,438,0 +170732664907,438,0 +170732664955,438,0 +170732665004,438,0 +170732665054,438,0 +170732665102,438,0 +170732665151,438,0 +170732665201,438,0 +170732665249,438,0 +170732665296,438,0 +170732665346,438,0 +170732665394,438,0 +170732665443,438,0 +170732665491,438,0 +170732665541,264,0 +170732665594,295,1 +170732665679,437,0 +170732665727,438,0 +170732665775,438,0 +170732665822,438,0 +170732665870,438,0 +170732665918,438,0 +170732665966,438,0 +170732666016,438,0 +170732666064,438,0 +170732666111,438,0 +170732666161,438,0 +170732666209,438,0 +170732666257,438,0 +170732666305,438,0 +170732666353,438,0 +170732666401,438,0 +170732666450,438,0 +170732666500,438,0 +170732666548,437,0 +170732666596,300,1 +170732666682,236,0 +170732666730,438,0 +170732666778,438,0 +170732666826,438,0 +170732666874,438,0 +170732666922,438,0 +170732666970,438,0 +170732667017,438,0 +170732667065,438,0 +170732667113,438,0 +170732667161,438,0 +170732667209,438,0 +170732667257,438,0 +170732667305,438,0 +170732667354,438,0 +170732667402,438,0 +170732667452,438,0 +170732667500,438,0 +170732667548,438,0 +170732667595,438,0 +170732667643,266,0 +170732667691,296,1 +170732667774,437,0 +170732667821,438,0 +170732667869,438,0 +170732667917,438,0 +170732667965,438,0 +170732668013,438,0 +170732668061,438,0 +170732668109,438,0 +170732668157,438,0 +170732668205,438,0 +170732668252,438,0 +170732668300,438,0 +170732668348,438,0 +170732668396,438,0 +170732668444,438,0 +170732668492,438,0 +170732668540,438,0 +170732668589,438,0 +170732668637,438,0 +170732668685,282,1 +170732668773,248,0 +170732668821,437,0 +170732668869,438,0 +170732668917,438,0 +170732668965,438,0 +170732669012,438,0 +170732669062,438,0 +170732669111,438,0 +170732669161,438,0 +170732669209,438,0 +170732669258,438,0 +170732669306,438,0 +170732669354,438,0 +170732669404,438,0 +170732669452,438,0 +170732669501,438,0 +170732669549,438,0 +170732669599,438,0 +170732669647,438,0 +170732669695,437,0 +170732669744,291,1 +170732669827,241,0 +170732669875,437,0 +170732669923,438,0 +170732669971,438,0 +170732670021,438,0 +170732670069,438,0 +170732670117,438,0 +170732670165,438,0 +170732670213,438,0 +170732670262,438,0 +170732670312,438,0 +170732670360,438,0 +170732670408,438,0 +170732670457,438,0 +170732670507,438,0 +170732670556,438,0 +170732670606,438,0 +170732670654,438,0 +170732670703,438,0 +170732670753,437,0 +170732670801,291,1 +170732670885,233,0 +170732670933,438,0 +170732670981,438,0 +170732671031,438,0 +170732671080,438,0 +170732671130,438,0 +170732671179,438,0 +170732671229,438,0 +170732671277,438,0 +170732671325,438,0 +170732671373,438,0 +170732671420,438,0 +170732671470,438,0 +170732671518,438,0 +170732671566,438,0 +170732671614,438,0 +170732671662,438,0 +170732671709,438,0 +170732671757,438,0 +170732671805,437,0 +170732671853,281,1 +170732671945,417,0 +170732671993,438,0 +170732672041,438,0 +170732672089,438,0 +170732672137,438,0 +170732672184,438,0 +170732672232,438,0 +170732672280,438,0 +170732672328,438,0 +170732672376,438,0 +170732672424,438,0 +170732672471,438,0 +170732672519,438,0 +170732672567,438,0 +170732672615,438,0 +170732672663,438,0 +170732672711,438,0 +170732672759,438,0 +170732672808,438,0 +170732672856,437,0 +170732672904,291,1 +170732672988,425,0 +170732673036,438,0 +170732673084,438,0 +170732673132,438,0 +170732673180,438,0 +170732673228,438,0 +170732673277,438,0 +170732673327,438,0 +170732673375,438,0 +170732673423,438,0 +170732673472,438,0 +170732673522,438,0 +170732673570,438,0 +170732673618,438,0 +170732673666,438,0 +170732673715,438,0 +170732673763,438,0 +170732673811,438,0 +170732673861,438,0 +170732673909,437,0 +170732673958,304,1 +170732674042,427,0 +170732674090,438,0 +170732674138,438,0 +170732674187,438,0 +170732674237,438,0 +170732674285,438,0 +170732674333,438,0 +170732674380,438,0 +170732674428,438,0 +170732674476,438,0 +170732674524,438,0 +170732674572,438,0 +170732674622,437,0 +170732674671,438,0 +170732674721,438,0 +170732674770,438,0 +170732674820,438,0 +170732674868,438,0 +170732674916,438,0 +170732674965,436,0 +170732675013,302,1 +170732675096,430,0 +170732675144,438,0 +170732675193,437,0 +170732675241,437,0 +170732675291,437,0 +170732675339,438,0 +170732675388,437,0 +170732675438,438,0 +170732675486,438,0 +170732675534,438,0 +170732675582,438,0 +170732675631,438,0 +170732675679,438,0 +170732675727,438,0 +170732675775,438,0 +170732675824,437,0 +170732675874,438,0 +170732675922,438,0 +170732675970,437,0 +170732676018,436,0 +170732676067,296,1 +170732676155,434,0 +170732676204,438,0 +170732676252,437,0 +170732676300,438,0 +170732676348,438,0 +170732676396,438,0 +170732676445,438,0 +170732676493,437,0 +170732676541,438,0 +170732676590,437,0 +170732676637,438,0 +170732676687,438,0 +170732676735,438,0 +170732676784,438,0 +170732676832,438,0 +170732676882,437,0 +170732676930,438,0 +170732676978,438,0 +170732677026,437,0 +170732677074,424,0 +170732677122,301,1 +170732677208,435,0 +170732677258,437,0 +170732677306,438,0 +170732677353,437,0 +170732677403,437,0 +170732677453,438,0 +170732677501,438,0 +170732677550,438,0 +170732677600,438,0 +170732677648,438,0 +170732677697,438,0 +170732677747,438,0 +170732677796,437,0 +170732677846,437,0 +170732677894,438,0 +170732677943,438,0 +170732677991,438,0 +170732678039,438,0 +170732678089,437,0 +170732678138,290,1 +170732678224,257,0 +170732678273,437,0 +170732678323,438,0 +170732678371,438,0 +170732678420,438,0 +170732678470,438,0 +170732678518,438,0 +170732678566,438,0 +170732678614,438,0 +170732678662,438,0 +170732678711,438,0 +170732678761,438,0 +170732678808,438,0 +170732678858,438,0 +170732678906,438,0 +170732678954,438,0 +170732679002,438,0 +170732679050,438,0 +170732679100,437,0 +170732679149,437,0 +170732679197,292,1 +170732679282,237,0 +170732679331,438,0 +170732679379,438,0 +170732679427,438,0 +170732679475,438,0 +170732679523,438,0 +170732679573,438,0 +170732679621,438,0 +170732679669,438,0 +170732679718,438,0 +170732679766,438,0 +170732679814,438,0 +170732679862,438,0 +170732679910,438,0 +170732679960,438,0 +170732680009,438,0 +170732680059,438,0 +170732680108,438,0 +170732680158,438,0 +170732680207,437,0 +170732680255,307,1 +170732680341,428,0 +170732680389,438,0 +170732680439,438,0 +170732680488,438,0 +170732680538,438,0 +170732680587,438,0 +170732680637,438,0 +170732680686,438,0 +170732680736,438,0 +170732680785,438,0 +170732680833,438,0 +170732680881,438,0 +170732680929,438,0 +170732680979,438,0 +170732681027,438,0 +170732681076,438,0 +170732681124,438,0 +170732681174,438,0 +170732681223,438,0 +170732681271,435,0 +170732681319,299,1 +170732681402,434,0 +170732681450,438,0 +170732681498,438,0 +170732681546,438,0 +170732681594,438,0 +170732681643,438,0 +170732681691,438,0 +170732681739,438,0 +170732681787,438,0 +170732681835,438,0 +170732681883,438,0 +170732681931,438,0 +170732681978,438,0 +170732682026,438,0 +170732682074,438,0 +170732682122,438,0 +170732682170,438,0 +170732682218,438,0 +170732682266,438,0 +170732682314,436,0 +170732682363,288,1 +170732682442,430,0 +170732682490,438,0 +170732682538,438,0 +170732682586,438,0 +170732682634,438,0 +170732682682,438,0 +170732682730,438,0 +170732682778,438,0 +170732682827,438,0 +170732682875,438,0 +170732682924,438,0 +170732682974,438,0 +170732683022,438,0 +170732683070,438,0 +170732683118,438,0 +170732683165,438,0 +170732683214,438,0 +170732683263,438,0 +170732683311,438,0 +170732683359,437,0 +170732683407,287,1 +170732683491,431,0 +170732683539,438,0 +170732683588,438,0 +170732683636,438,0 +170732683684,438,0 +170732683733,438,0 +170732683781,438,0 +170732683831,438,0 +170732683879,438,0 +170732683928,438,0 +170732683976,438,0 +170732684024,438,0 +170732684072,438,0 +170732684122,438,0 +170732684170,438,0 +170732684219,438,0 +170732684267,438,0 +170732684317,438,0 +170732684365,438,0 +170732684413,437,0 +170732684462,299,1 +170732684551,432,0 +170732684598,438,0 +170732684646,438,0 +170732684694,438,0 +170732684742,438,0 +170732684790,438,0 +170732684838,438,0 +170732684888,438,0 +170732684936,438,0 +170732684984,438,0 +170732685032,438,0 +170732685080,438,0 +170732685129,438,0 +170732685177,438,0 +170732685225,438,0 +170732685275,438,0 +170732685324,438,0 +170732685372,438,0 +170732685420,438,0 +170732685468,389,0 +170732685518,277,1 +170732685599,433,0 +170732685647,438,0 +170732685695,438,0 +170732685745,438,0 +170732685794,438,0 +170732685844,438,0 +170732685892,438,0 +170732685940,438,0 +170732685989,438,0 +170732686037,438,0 +170732686087,438,0 +170732686135,438,0 +170732686184,438,0 +170732686232,438,0 +170732686280,438,0 +170732686328,438,0 +170732686377,438,0 +170732686425,438,0 +170732686473,438,0 +170732686523,425,0 +170732686571,286,1 +170732686652,434,0 +170732686700,438,0 +170732686748,438,0 +170732686796,438,0 +170732686845,438,0 +170732686893,438,0 +170732686941,438,0 +170732686990,438,0 +170732687038,438,0 +170732687087,438,0 +170732687135,438,0 +170732687183,438,0 +170732687231,438,0 +170732687279,438,0 +170732687327,438,0 +170732687375,438,0 +170732687423,438,0 +170732687470,438,0 +170732687518,438,0 +170732687568,428,0 +170732687616,297,1 +170732687702,434,0 +170732687749,438,0 +170732687797,438,0 +170732687845,438,0 +170732687893,438,0 +170732687941,438,0 +170732687989,438,0 +170732688037,438,0 +170732688085,438,0 +170732688134,438,0 +170732688184,438,0 +170732688231,438,0 +170732688279,438,0 +170732688327,438,0 +170732688375,438,0 +170732688423,438,0 +170732688471,438,0 +170732688519,438,0 +170732688567,438,0 +170732688615,413,0 +170732688662,302,1 +170732688745,434,0 +170732688793,438,0 +170732688841,438,0 +170732688889,438,0 +170732688937,438,0 +170732688985,438,0 +170732689033,438,0 +170732689081,438,0 +170732689129,438,0 +170732689178,438,0 +170732689227,438,0 +170732689276,438,0 +170732689324,438,0 +170732689374,438,0 +170732689421,438,0 +170732689469,438,0 +170732689517,438,0 +170732689565,438,0 +170732689613,438,0 +170732689661,433,0 +170732689709,285,1 +170732689792,435,0 +170732689840,438,0 +170732689888,438,0 +170732689936,438,0 +170732689983,438,0 +170732690031,438,0 +170732690079,438,0 +170732690127,438,0 +170732690177,438,0 +170732690224,438,0 +170732690272,438,0 +170732690320,438,0 +170732690368,438,0 +170732690416,438,0 +170732690464,438,0 +170732690512,438,0 +170732690560,438,0 +170732690607,438,0 +170732690657,438,0 +170732690706,437,0 +170732690754,280,1 +170732690842,433,0 +170732690890,438,0 +170732690937,438,0 +170732690985,438,0 +170732691033,438,0 +170732691081,438,0 +170732691129,438,0 +170732691178,438,0 +170732691226,438,0 +170732691274,438,0 +170732691322,438,0 +170732691370,438,0 +170732691418,438,0 +170732691466,438,0 +170732691514,438,0 +170732691561,438,0 +170732691609,438,0 +170732691657,438,0 +170732691705,438,0 +170732691753,437,0 +170732691801,293,1 +170732691884,433,0 +170732691934,438,0 +170732691983,438,0 +170732692033,438,0 +170732692081,438,0 +170732692128,438,0 +170732692176,438,0 +170732692224,438,0 +170732692272,438,0 +170732692320,438,0 +170732692368,438,0 +170732692416,438,0 +170732692464,438,0 +170732692513,438,0 +170732692561,438,0 +170732692609,438,0 +170732692657,438,0 +170732692705,438,0 +170732692752,438,0 +170732692800,437,0 +170732692848,292,1 +170732692924,405,0 +170732692972,437,0 +170732693020,438,0 +170732693068,438,0 +170732693117,438,0 +170732693165,438,0 +170732693213,438,0 +170732693262,438,0 +170732693310,438,0 +170732693358,438,0 +170732693406,438,0 +170732693454,438,0 +170732693502,438,0 +170732693550,438,0 +170732693599,438,0 +170732693649,438,0 +170732693696,438,0 +170732693746,438,0 +170732693794,438,0 +170732693842,437,0 +170732693890,283,1 +170732693972,236,0 +170732694020,438,0 +170732694069,438,0 +170732694117,438,0 +170732694165,438,0 +170732694213,438,0 +170732694263,438,0 +170732694312,438,0 +170732694360,438,0 +170732694408,438,0 +170732694456,438,0 +170732694504,438,0 +170732694552,438,0 +170732694601,438,0 +170732694649,438,0 +170732694697,438,0 +170732694745,438,0 +170732694793,438,0 +170732694841,438,0 +170732694889,437,0 +170732694939,284,1 +170732695025,429,0 +170732695078,438,0 +170732695126,438,0 +170732695174,438,0 +170732695223,438,0 +170732695271,438,0 +170732695319,438,0 +170732695367,438,0 +170732695415,438,0 +170732695463,438,0 +170732695511,438,0 +170732695558,438,0 +170732695606,438,0 +170732695654,438,0 +170732695702,438,0 +170732695750,438,0 +170732695798,438,0 +170732695846,438,0 +170732695896,438,0 +170732695945,437,0 +170732695993,291,1 +170732696079,432,0 +170732696128,438,0 +170732696178,438,0 +170732696227,438,0 +170732696275,438,0 +170732696323,438,0 +170732696371,438,0 +170732696421,438,0 +170732696470,438,0 +170732696520,438,0 +170732696568,438,0 +170732696616,438,0 +170732696664,438,0 +170732696713,438,0 +170732696763,438,0 +170732696811,438,0 +170732696859,438,0 +170732696907,438,0 +170732696956,438,0 +170732697004,437,0 +170732697052,287,1 +170732697137,432,0 +170732697187,438,0 +170732697235,438,0 +170732697284,439,0 +170732697334,438,0 +170732697383,438,0 +170732697433,438,0 +170732697482,438,0 +170732697530,438,0 +170732697580,438,0 +170732697628,438,0 +170732697677,438,0 +170732697726,438,0 +170732697776,438,0 +170732697824,438,0 +170732697872,438,0 +170732697920,438,0 +170732697968,438,0 +170732698017,438,0 +170732698065,279,1 +170732698149,278,1 +170732698228,438,0 +170732698276,438,0 +170732698324,438,0 +170732698372,438,0 +170732698420,438,0 +170732698468,438,0 +170732698516,438,0 +170732698564,438,0 +170732698612,438,0 +170732698660,438,0 +170732698708,438,0 +170732698758,438,0 +170732698806,438,0 +170732698854,438,0 +170732698901,438,0 +170732698949,438,0 +170732698997,438,0 +170732699045,438,0 +170732699095,438,0 +170732699143,304,1 +170732699230,433,0 +170732699279,438,0 +170732699329,438,0 +170732699377,438,0 +170732699425,438,0 +170732699474,438,0 +170732699524,438,0 +170732699573,438,0 +170732699621,438,0 +170732699669,438,0 +170732699718,438,0 +170732699766,438,0 +170732699816,438,0 +170732699864,438,0 +170732699912,438,0 +170732699961,438,0 +170732700009,438,0 +170732700057,438,0 +170732700105,438,0 +170732700153,437,0 +170732700201,300,1 +170732700289,434,0 +170732700337,438,0 +170732700385,438,0 +170732700435,438,0 +170732700484,438,0 +170732700532,438,0 +170732700582,438,0 +170732700631,438,0 +170732700679,438,0 +170732700729,438,0 +170732700777,438,0 +170732700825,438,0 +170732700874,438,0 +170732700924,438,0 +170732700972,438,0 +170732701021,438,0 +170732701071,438,0 +170732701119,438,0 +170732701166,438,0 +170732701214,311,0 +170732701262,308,1 +170732701345,435,0 +170732701395,438,0 +170732701443,438,0 +170732701492,438,0 +170732701540,438,0 +170732701588,438,0 +170732701638,438,0 +170732701686,438,0 +170732701734,438,0 +170732701783,438,0 +170732701831,438,0 +170732701881,438,0 +170732701930,438,0 +170732701978,438,0 +170732702026,438,0 +170732702074,438,0 +170732702122,438,0 +170732702171,438,0 +170732702219,438,0 +170732702267,294,1 +170732702350,258,0 +170732702400,437,0 +170732702447,438,0 +170732702495,438,0 +170732702543,438,0 +170732702591,438,0 +170732702641,438,0 +170732702690,438,0 +170732702738,437,0 +170732702786,438,0 +170732702834,437,0 +170732702884,438,0 +170732702932,438,0 +170732702980,438,0 +170732703029,438,0 +170732703077,438,0 +170732703127,438,0 +170732703175,438,0 +170732703222,438,0 +170732703270,437,0 +170732703320,290,1 +170732703407,234,0 +170732703455,437,0 +170732703503,438,0 +170732703553,438,0 +170732703601,438,0 +170732703649,437,0 +170732703697,438,0 +170732703745,438,0 +170732703793,437,0 +170732703841,438,0 +170732703889,438,0 +170732703937,438,0 +170732703986,438,0 +170732704036,438,0 +170732704085,438,0 +170732704133,438,0 +170732704183,438,0 +170732704232,438,0 +170732704280,437,0 +170732704328,437,0 +170732704376,302,1 +170732704460,418,0 +170732704508,438,0 +170732704556,438,0 +170732704604,437,0 +170732704653,438,0 +170732704701,438,0 +170732704749,437,0 +170732704799,438,0 +170732704847,438,0 +170732704895,437,0 +170732704943,438,0 +170732704991,438,0 +170732705039,438,0 +170732705088,438,0 +170732705138,438,0 +170732705186,438,0 +170732705234,437,0 +170732705283,437,0 +170732705331,438,0 +170732705381,437,0 +170732705429,302,1 +170732705506,281,1 +170732705588,437,0 +170732705636,438,0 +170732705685,438,0 +170732705733,438,0 +170732705781,437,0 +170732705829,438,0 +170732705879,438,0 +170732705928,437,0 +170732705978,438,0 +170732706027,438,0 +170732706077,438,0 +170732706125,438,0 +170732706173,438,0 +170732706222,437,0 +170732706270,438,0 +170732706318,438,0 +170732706366,438,0 +170732706416,437,0 +170732706464,296,1 +170732706555,378,0 +170732706603,437,0 +170732706653,438,0 +170732706701,437,0 +170732706750,438,0 +170732706800,438,0 +170732706848,438,0 +170732706896,437,0 +170732706943,438,0 +170732706991,438,0 +170732707041,437,0 +170732707089,438,0 +170732707137,438,0 +170732707185,438,0 +170732707233,438,0 +170732707281,437,0 +170732707329,438,0 +170732707376,437,0 +170732707424,438,0 +170732707472,437,0 +170732707520,274,1 +170732707608,247,0 +170732707656,437,0 +170732707704,438,0 +170732707752,438,0 +170732707800,438,0 +170732707849,438,0 +170732707897,437,0 +170732707947,437,0 +170732707994,438,0 +170732708044,437,0 +170732708092,438,0 +170732708140,437,0 +170732708189,438,0 +170732708237,438,0 +170732708287,437,0 +170732708337,438,0 +170732708386,438,0 +170732708434,437,0 +170732708484,437,0 +170732708533,437,0 +170732708581,294,1 +170732708667,427,0 +170732708715,437,0 +170732708764,437,0 +170732708812,437,0 +170732708860,437,0 +170732708910,438,0 +170732708958,437,0 +170732709006,438,0 +170732709054,438,0 +170732709102,437,0 +170732709149,437,0 +170732709199,438,0 +170732709249,437,0 +170732709296,438,0 +170732709344,437,0 +170732709392,438,0 +170732709440,437,0 +170732709488,437,0 +170732709538,438,0 +170732709586,437,0 +170732709635,297,1 +170732709722,429,0 +170732709772,438,0 +170732709820,438,0 +170732709868,438,0 +170732709917,437,0 +170732709965,438,0 +170732710013,437,0 +170732710061,438,0 +170732710109,437,0 +170732710157,438,0 +170732710205,437,0 +170732710253,438,0 +170732710301,438,0 +170732710349,437,0 +170732710398,438,0 +170732710446,438,0 +170732710494,437,0 +170732710542,438,0 +170732710592,437,0 +170732710640,435,0 +170732710689,287,1 +170732710772,433,0 +170732710822,438,0 +170732710871,437,0 +170732710919,437,0 +170732710967,438,0 +170732711017,438,0 +170732711065,438,0 +170732711112,437,0 +170732711160,438,0 +170732711210,438,0 +170732711258,437,0 +170732711306,438,0 +170732711355,438,0 +170732711403,438,0 +170732711451,437,0 +170732711501,438,0 +170732711549,437,0 +170732711597,438,0 +170732711646,437,0 +170732711696,266,0 +170732711744,295,1 +170732711823,434,0 +170732711871,437,0 +170732711921,438,0 +170732711970,438,0 +170732712018,438,0 +170732712066,438,0 +170732712114,437,0 +170732712162,438,0 +170732712210,438,0 +170732712258,438,0 +170732712306,438,0 +170732712354,438,0 +170732712402,438,0 +170732712450,437,0 +170732712499,437,0 +170732712547,438,0 +170732712595,438,0 +170732712643,437,0 +170732712691,438,0 +170732712739,436,0 +170732712789,277,1 +170732712876,435,0 +170732712925,437,0 +170732712973,438,0 +170732713023,438,0 +170732713071,437,0 +170732713119,438,0 +170732713166,438,0 +170732713216,438,0 +170732713264,438,0 +170732713312,437,0 +170732713362,438,0 +170732713409,438,0 +170732713459,438,0 +170732713509,438,0 +170732713557,438,0 +170732713606,423,0 +170732713654,220,0 +170732713702,221,0 +170732713750,223,0 +170732713798,235,0 +170732713846,253,0 +170732713894,225,0 +170732713942,222,0 +170732713990,220,0 +170732714037,221,0 +170732714085,220,0 +170732714133,220,0 +170732714183,220,0 +170732714231,220,0 +170732714279,220,0 +170732714326,220,0 +170732714376,220,0 +170732714424,220,0 +170732714473,221,0 +170732714521,220,0 +170732714569,220,0 +170732714617,220,0 +170732714665,220,0 +170732714713,220,0 +170732714761,221,0 +170732714808,222,0 +170732714856,270,1 +170732714937,254,0 +170732714985,223,0 +170732715033,220,0 +170732715081,220,0 +170732715129,220,0 +170732715176,220,0 +170732715224,220,0 +170732715272,220,0 +170732715320,220,0 +170732715368,220,0 +170732715416,220,0 +170732715465,220,0 +170732715513,220,0 +170732715561,220,0 +170732715609,220,0 +170732715658,220,0 +170732715706,220,0 +170732715756,220,0 +170732715804,220,0 +170732715853,221,0 +170732715901,248,0 +170732715951,267,0 +170732715999,230,0 +170732716047,221,0 +170732716095,220,0 +170732716144,220,0 +170732716192,220,0 +170732716242,220,0 +170732716290,220,0 +170732716338,220,0 +170732716386,220,0 +170732716435,220,0 +170732716483,220,0 +170732716531,221,0 +170732716579,220,0 +170732716627,220,0 +170732716675,220,0 +170732716723,220,0 +170732716770,220,0 +170732716818,220,0 +170732716866,221,0 +170732716914,222,0 +170732716962,280,1 +170732717047,229,0 +170732717095,221,0 +170732717143,221,0 +170732717191,220,0 +170732717239,220,0 +170732717288,220,0 +170732717336,220,0 +170732717384,220,0 +170732717434,220,0 +170732717482,221,0 +170732717529,220,0 +170732717577,220,0 +170732717625,220,0 +170732717673,221,0 +170732717721,220,0 +170732717769,220,0 +170732717817,220,0 +170732717865,220,0 +170732717915,220,0 +170732717963,222,0 +170732718012,280,1 +170732718094,233,0 +170732718143,220,0 +170732718191,221,0 +170732718239,220,0 +170732718287,220,0 +170732718337,220,0 +170732718386,221,0 +170732718436,220,0 +170732718484,220,0 +170732718533,220,0 +170732718583,221,0 +170732718631,220,0 +170732718680,220,0 +170732718728,220,0 +170732718776,220,0 +170732718824,220,0 +170732718872,220,0 +170732718922,220,0 +170732718969,221,0 +170732719017,222,0 +170732719065,283,1 +170732719146,233,0 +170732719194,221,0 +170732719242,221,0 +170732719291,221,0 +170732719341,221,0 +170732719389,220,0 +170732719438,220,0 +170732719488,220,0 +170732719537,221,0 +170732719586,220,0 +170732719633,221,0 +170732719683,221,0 +170732719732,220,0 +170732719780,221,0 +170732719830,220,0 +170732719878,220,0 +170732719926,221,0 +170732719974,221,0 +170732720023,221,0 +170732720073,224,0 +170732720122,269,0 +170732720172,278,1 +170732720253,221,0 +170732720301,221,0 +170732720349,221,0 +170732720398,220,0 +170732720446,220,0 +170732720496,220,0 +170732720545,221,0 +170732720595,221,0 +170732720643,221,0 +170732720691,221,0 +170732720739,221,0 +170732720787,220,0 +170732720836,220,0 +170732720884,220,0 +170732720933,221,0 +170732720981,221,0 +170732721031,221,0 +170732721080,221,0 +170732721130,241,0 +170732721178,280,1 +170732721260,230,0 +170732721308,221,0 +170732721358,221,0 +170732721407,220,0 +170732721455,221,0 +170732721503,220,0 +170732721551,221,0 +170732721599,220,0 +170732721647,221,0 +170732721695,220,0 +170732721742,221,0 +170732721792,221,0 +170732721840,220,0 +170732721888,220,0 +170732721936,221,0 +170732721985,220,0 +170732722033,220,0 +170732722081,221,0 +170732722129,221,0 +170732722178,232,0 +170732722228,302,1 +170732722311,231,0 +170732722359,221,0 +170732722407,221,0 +170732722455,221,0 +170732722504,220,0 +170732722554,221,0 +170732722602,221,0 +170732722651,220,0 +170732722701,220,0 +170732722749,221,0 +170732722797,221,0 +170732722845,220,0 +170732722893,220,0 +170732722940,221,0 +170732722988,221,0 +170732723036,221,0 +170732723084,220,0 +170732723132,221,0 +170732723180,221,0 +170732723228,225,0 +170732723276,282,1 +170732723363,229,0 +170732723411,221,0 +170732723459,220,0 +170732723507,221,0 +170732723555,220,0 +170732723604,220,0 +170732723652,220,0 +170732723702,221,0 +170732723750,221,0 +170732723798,220,0 +170732723845,221,0 +170732723893,220,0 +170732723941,221,0 +170732723991,220,0 +170732724039,221,0 +170732724087,221,0 +170732724135,221,0 +170732724184,221,0 +170732724232,221,0 +170732724282,233,0 +170732724331,290,1 +170732724419,226,0 +170732724468,221,0 +170732724518,220,0 +170732724566,220,0 +170732724613,220,0 +170732724661,221,0 +170732724709,220,0 +170732724757,220,0 +170732724807,220,0 +170732724855,221,0 +170732724902,221,0 +170732724950,221,0 +170732724998,220,0 +170732725046,221,0 +170732725094,221,0 +170732725142,220,0 +170732725190,221,0 +170732725238,220,0 +170732725286,221,0 +170732725333,277,1 +170732725418,266,0 +170732725467,223,0 +170732725515,221,0 +170732725563,220,0 +170732725611,220,0 +170732725659,221,0 +170732725707,221,0 +170732725756,221,0 +170732725804,221,0 +170732725854,220,0 +170732725902,220,0 +170732725951,221,0 +170732726001,221,0 +170732726049,220,0 +170732726098,221,0 +170732726146,220,0 +170732726196,221,0 +170732726245,221,0 +170732726295,221,0 +170732726344,221,0 +170732726392,291,1 +170732726479,236,0 +170732726527,221,0 +170732726575,220,0 +170732726623,220,0 +170732726671,220,0 +170732726719,220,0 +170732726768,220,0 +170732726816,221,0 +170732726864,220,0 +170732726912,220,0 +170732726960,220,0 +170732727007,220,0 +170732727055,220,0 +170732727103,220,0 +170732727151,220,0 +170732727199,220,0 +170732727247,220,0 +170732727295,220,0 +170732727343,220,0 +170732727391,221,0 +170732727440,281,1 +170732727522,234,0 +170732727569,221,0 +170732727619,221,0 +170732727668,220,0 +170732727718,220,0 +170732727766,221,0 +170732727814,220,0 +170732727862,221,0 +170732727911,220,0 +170732727961,220,0 +170732728009,220,0 +170732728058,220,0 +170732728108,220,0 +170732728156,220,0 +170732728205,220,0 +170732728253,220,0 +170732728303,221,0 +170732728352,220,0 +170732728402,221,0 +170732728451,222,0 +170732728499,265,0 +170732728547,288,1 +170732728634,220,0 +170732728683,220,0 +170732728731,220,0 +170732728779,220,0 +170732728829,220,0 +170732728877,221,0 +170732728926,221,0 +170732728974,220,0 +170732729024,220,0 +170732729073,220,0 +170732729121,220,0 +170732729169,221,0 +170732729219,221,0 +170732729267,220,0 +170732729315,220,0 +170732729364,220,0 +170732729412,221,0 +170732729462,221,0 +170732729511,224,0 +170732729559,294,1 +170732729643,236,0 +170732729691,221,0 +170732729741,220,0 +170732729789,220,0 +170732729836,220,0 +170732729884,220,0 +170732729934,221,0 +170732729982,220,0 +170732730031,220,0 +170732730079,221,0 +170732730127,220,0 +170732730175,220,0 +170732730223,220,0 +170732730271,220,0 +170732730321,220,0 +170732730369,220,0 +170732730418,221,0 +170732730466,220,0 +170732730514,220,0 +170732730562,223,0 +170732730611,298,1 +170732730755,220,0 +170732730805,220,0 +170732730853,220,0 +170732730900,221,0 +170732730950,220,0 +170732730998,220,0 +170732731046,220,0 +170732731094,220,0 +170732731142,220,0 +170732731190,220,0 +170732731238,220,0 +170732731286,220,0 +170732731335,220,0 +170732731383,220,0 +170732731431,220,0 +170732731479,220,0 +170732731527,220,0 +170732731577,222,0 +170732731625,280,1 +170732731705,295,1 +170732731787,221,0 +170732731837,220,0 +170732731886,221,0 +170732731936,221,0 +170732731984,220,0 +170732732032,220,0 +170732732080,220,0 +170732732128,221,0 +170732732177,220,0 +170732732227,220,0 +170732732276,220,0 +170732732324,221,0 +170732732374,220,0 +170732732421,220,0 +170732732469,221,0 +170732732517,221,0 +170732732565,220,0 +170732732613,221,0 +170732732661,226,0 +170732732709,285,1 +170732732796,228,0 +170732732845,221,0 +170732732893,220,0 +170732732943,220,0 +170732732992,220,0 +170732733040,220,0 +170732733088,221,0 +170732733136,220,0 +170732733184,220,0 +170732733232,220,0 +170732733282,220,0 +170732733331,220,0 +170732733379,220,0 +170732733427,220,0 +170732733476,220,0 +170732733526,220,0 +170732733574,221,0 +170732733622,220,0 +170732733671,222,0 +170732733719,298,1 +170732733810,235,0 +170732733858,221,0 +170732733906,220,0 +170732733956,220,0 +170732734004,220,0 +170732734053,220,0 +170732734101,221,0 +170732734149,220,0 +170732734199,220,0 +170732734247,220,0 +170732734296,221,0 +170732734344,221,0 +170732734394,221,0 +170732734442,220,0 +170732734490,220,0 +170732734538,221,0 +170732734587,220,0 +170732734635,221,0 +170732734683,221,0 +170732734731,221,0 +170732734779,281,1 +170732734869,234,0 +170732734917,221,0 +170732734965,220,0 +170732735015,221,0 +170732735063,220,0 +170732735110,220,0 +170732735160,220,0 +170732735208,221,0 +170732735256,221,0 +170732735306,221,0 +170732735353,220,0 +170732735401,221,0 +170732735449,220,0 +170732735497,221,0 +170732735545,220,0 +170732735595,220,0 +170732735643,220,0 +170732735692,220,0 +170732735740,221,0 +170732735790,222,0 +170732735838,294,1 +170732735916,238,0 +170732735964,221,0 +170732736013,220,0 +170732736063,220,0 +170732736112,220,0 +170732736160,220,0 +170732736210,220,0 +170732736259,221,0 +170732736307,220,0 +170732736355,220,0 +170732736403,220,0 +170732736453,220,0 +170732736501,220,0 +170732736549,221,0 +170732736597,220,0 +170732736646,220,0 +170732736696,220,0 +170732736744,220,0 +170732736792,220,0 +170732736841,222,0 +170732736889,283,1 +170732736985,231,0 +170732737033,221,0 +170732737081,220,0 +170732737131,220,0 +170732737179,220,0 +170732737227,220,0 +170732737275,220,0 +170732737323,220,0 +170732737372,221,0 +170732737420,220,0 +170732737468,220,0 +170732737516,220,0 +170732737566,220,0 +170732737614,220,0 +170732737663,220,0 +170732737711,221,0 +170732737761,221,0 +170732737809,221,0 +170732737858,221,0 +170732737906,235,0 +170732737954,285,1 +170732738043,228,0 +170732738093,221,0 +170732738141,221,0 +170732738189,221,0 +170732738237,220,0 +170732738284,220,0 +170732738334,220,0 +170732738382,220,0 +170732738430,220,0 +170732738480,220,0 +170732738529,220,0 +170732738577,221,0 +170732738625,221,0 +170732738675,221,0 +170732738724,221,0 +170732738774,221,0 +170732738823,220,0 +170732738871,220,0 +170732738919,221,0 +170732738967,283,1 +170732739049,257,0 +170732739099,222,0 +170732739148,220,0 +170732739196,220,0 +170732739244,220,0 +170732739292,221,0 +170732739341,220,0 +170732739391,220,0 +170732739439,220,0 +170732739487,220,0 +170732739537,220,0 +170732739584,220,0 +170732739634,220,0 +170732739682,220,0 +170732739731,220,0 +170732739779,220,0 +170732739827,220,0 +170732739875,220,0 +170732739923,220,0 +170732739971,221,0 +170732740020,290,1 +170732740102,228,0 +170732740150,221,0 +170732740198,221,0 +170732740246,220,0 +170732740295,220,0 +170732740343,221,0 +170732740391,220,0 +170732740441,220,0 +170732740488,220,0 +170732740536,220,0 +170732740584,220,0 +170732740632,220,0 +170732740680,220,0 +170732740728,220,0 +170732740776,221,0 +170732740824,220,0 +170732740872,221,0 +170732740919,221,0 +170732740969,221,0 +170732741017,221,0 +170732741065,276,1 +170732741151,238,0 +170732741200,221,0 +170732741248,221,0 +170732741296,221,0 +170732741344,220,0 +170732741393,220,0 +170732741441,220,0 +170732741491,220,0 +170732741539,220,0 +170732741588,220,0 +170732741636,220,0 +170732741686,221,0 +170732741735,220,0 +170732741785,220,0 +170732741834,220,0 +170732741882,220,0 +170732741930,220,0 +170732741978,220,0 +170732742026,220,0 +170732742074,220,0 +170732742122,220,0 +170732742170,220,0 +170732742220,221,0 +170732742268,220,0 +170732742315,220,0 +170732742363,220,0 +170732742411,220,0 +170732742461,221,0 +170732742509,220,0 +170732742557,221,0 +170732742605,225,0 +170732742653,284,1 +170732742743,229,0 +170732742791,221,0 +170732742841,220,0 +170732742889,220,0 +170732742937,220,0 +170732742984,220,0 +170732743032,220,0 +170732743080,221,0 +170732743128,220,0 +170732743178,220,0 +170732743226,220,0 +170732743273,220,0 +170732743321,220,0 +170732743369,221,0 +170732743417,221,0 +170732743466,220,0 +170732743514,220,0 +170732743562,220,0 +170732743610,221,0 +170732743660,224,0 +170732743708,296,1 +170732743793,233,0 +170732743842,220,0 +170732743892,221,0 +170732743941,221,0 +170732743991,220,0 +170732744039,220,0 +170732744088,221,0 +170732744136,220,0 +170732744184,220,0 +170732744232,220,0 +170732744280,220,0 +170732744328,220,0 +170732744376,220,0 +170732744424,220,0 +170732744472,221,0 +170732744520,220,0 +170732744569,220,0 +170732744617,220,0 +170732744665,221,0 +170732744713,224,0 +170732744761,254,0 +170732744809,268,0 +170732744856,224,0 +170732744904,220,0 +170732744954,220,0 +170732745002,220,0 +170732745051,221,0 +170732745099,221,0 +170732745147,220,0 +170732745195,220,0 +170732745244,220,0 +170732745294,220,0 +170732745342,220,0 +170732745390,220,0 +170732745438,220,0 +170732745487,220,0 +170732745535,220,0 +170732745583,220,0 +170732745631,221,0 +170732745679,220,0 +170732745727,221,0 +170732745776,269,0 +170732745824,273,1 +170732745910,221,0 +170732745958,220,0 +170732746007,220,0 +170732746055,220,0 +170732746105,221,0 +170732746154,219,0 +170732746202,220,0 +170732746250,220,0 +170732746300,221,0 +170732746348,221,0 +170732746397,220,0 +170732746445,220,0 +170732746495,220,0 +170732746543,220,0 +170732746592,220,0 +170732746642,221,0 +170732746690,220,0 +170732746738,221,0 +170732746787,222,0 +170732746835,287,1 +170732746915,236,0 +170732746963,223,0 +170732747013,221,0 +170732747061,221,0 +170732747109,221,0 +170732747158,221,0 +170732747206,221,0 +170732747254,221,0 +170732747302,221,0 +170732747350,221,0 +170732747398,221,0 +170732747445,221,0 +170732747493,221,0 +170732747541,221,0 +170732747589,221,0 +170732747639,221,0 +170732747687,221,0 +170732747735,221,0 +170732747782,221,0 +170732747830,222,0 +170732747880,276,1 +170732747965,228,0 +170732748013,221,0 +170732748061,221,0 +170732748109,220,0 +170732748157,221,0 +170732748204,220,0 +170732748252,221,0 +170732748300,220,0 +170732748348,220,0 +170732748396,221,0 +170732748444,221,0 +170732748492,220,0 +170732748540,220,0 +170732748587,221,0 +170732748635,221,0 +170732748683,220,0 +170732748733,221,0 +170732748782,221,0 +170732748830,221,0 +170732748878,222,0 +170732748926,289,1 +170732749009,230,0 +170732749057,221,0 +170732749106,221,0 +170732749154,220,0 +170732749204,221,0 +170732749251,221,0 +170732749301,221,0 +170732749349,221,0 +170732749398,221,0 +170732749446,221,0 +170732749494,221,0 +170732749543,220,0 +170732749591,221,0 +170732749639,221,0 +170732749687,221,0 +170732749735,221,0 +170732749783,221,0 +170732749831,221,0 +170732749880,221,0 +170732749928,222,0 +170732749976,282,1 +170732750057,235,0 +170732750105,223,0 +170732750153,221,0 +170732750201,221,0 +170732750249,221,0 +170732750297,220,0 +170732750345,221,0 +170732750393,221,0 +170732750442,221,0 +170732750492,221,0 +170732750541,221,0 +170732750589,221,0 +170732750637,221,0 +170732750687,221,0 +170732750735,221,0 +170732750783,221,0 +170732750832,221,0 +170732750880,221,0 +170732750929,221,0 +170732750979,222,0 +170732751027,294,1 +170732751111,231,0 +170732751161,222,0 +170732751209,221,0 +170732751257,221,0 +170732751306,221,0 +170732751356,221,0 +170732751404,221,0 +170732751453,221,0 +170732751503,221,0 +170732751552,220,0 +170732751600,221,0 +170732751648,221,0 +170732751696,221,0 +170732751744,221,0 +170732751792,221,0 +170732751842,221,0 +170732751891,221,0 +170732751939,221,0 +170732751989,221,0 +170732752038,224,0 +170732752086,293,1 +170732752181,230,0 +170732752230,221,0 +170732752278,221,0 +170732752326,221,0 +170732752376,221,0 +170732752424,221,0 +170732752472,221,0 +170732752519,221,0 +170732752567,221,0 +170732752617,221,0 +170732752665,221,0 +170732752713,221,0 +170732752760,221,0 +170732752808,221,0 +170732752858,221,0 +170732752906,221,0 +170732752954,221,0 +170732753001,221,0 +170732753049,221,0 +170732753097,223,0 +170732753145,287,1 +170732753226,238,0 +170732753274,221,0 +170732753322,221,0 +170732753370,221,0 +170732753418,221,0 +170732753467,221,0 +170732753517,221,0 +170732753565,221,0 +170732753612,220,0 +170732753660,221,0 +170732753708,221,0 +170732753756,220,0 +170732753804,221,0 +170732753852,221,0 +170732753900,221,0 +170732753948,221,0 +170732753996,220,0 +170732754044,221,0 +170732754093,221,0 +170732754141,224,0 +170732754189,296,1 +170732754278,234,0 +170732754326,221,0 +170732754373,220,0 +170732754421,220,0 +170732754471,221,0 +170732754519,221,0 +170732754567,221,0 +170732754615,221,0 +170732754663,221,0 +170732754711,221,0 +170732754759,221,0 +170732754807,221,0 +170732754855,221,0 +170732754903,220,0 +170732754952,220,0 +170732755000,221,0 +170732755049,221,0 +170732755099,221,0 +170732755147,222,0 +170732755195,224,0 +170732755244,271,1 +170732755332,229,0 +170732755381,221,0 +170732755429,221,0 +170732755477,220,0 +170732755525,221,0 +170732755573,221,0 +170732755621,221,0 +170732755669,220,0 +170732755717,221,0 +170732755765,221,0 +170732755814,221,0 +170732755864,221,0 +170732755913,221,0 +170732755961,220,0 +170732756011,221,0 +170732756059,221,0 +170732756107,220,0 +170732756156,221,0 +170732756206,222,0 +170732756254,251,0 +170732756302,304,1 +170732756398,222,0 +170732756448,221,0 +170732756497,221,0 +170732756547,220,0 +170732756595,221,0 +170732756643,221,0 +170732756692,221,0 +170732756742,221,0 +170732756791,220,0 +170732756839,220,0 +170732756887,221,0 +170732756935,221,0 +170732756983,221,0 +170732757031,221,0 +170732757079,221,0 +170732757128,220,0 +170732757176,221,0 +170732757224,221,0 +170732757272,222,0 +170732757321,280,1 +170732757406,232,0 +170732757454,221,0 +170732757502,221,0 +170732757550,221,0 +170732757599,221,0 +170732757647,221,0 +170732757695,220,0 +170732757743,221,0 +170732757791,221,0 +170732757839,221,0 +170732757887,221,0 +170732757935,220,0 +170732757984,220,0 +170732758032,221,0 +170732758080,220,0 +170732758128,220,0 +170732758176,221,0 +170732758224,221,0 +170732758273,221,0 +170732758321,222,0 +170732758371,287,1 +170732758460,234,0 +170732758508,221,0 +170732758557,220,0 +170732758605,221,0 +170732758655,221,0 +170732758704,220,0 +170732758752,221,0 +170732758800,221,0 +170732758848,221,0 +170732758897,221,0 +170732758945,220,0 +170732758995,221,0 +170732759043,221,0 +170732759092,221,0 +170732759142,221,0 +170732759190,221,0 +170732759238,221,0 +170732759286,220,0 +170732759334,221,0 +170732759382,222,0 +170732759430,280,1 +170732759519,238,0 +170732759569,221,0 +170732759617,221,0 +170732759665,221,0 +170732759713,221,0 +170732759762,220,0 +170732759810,221,0 +170732759858,220,0 +170732759908,220,0 +170732759957,221,0 +170732760007,220,0 +170732760055,221,0 +170732760103,220,0 +170732760152,221,0 +170732760200,221,0 +170732760248,221,0 +170732760296,221,0 +170732760346,221,0 +170732760394,221,0 +170732760443,226,0 +170732760493,296,1 +170732760574,229,0 +170732760622,221,0 +170732760672,220,0 +170732760721,220,0 +170732760771,220,0 +170732760819,221,0 +170732760867,221,0 +170732760915,220,0 +170732760963,220,0 +170732761011,220,0 +170732761059,220,0 +170732761106,220,0 +170732761156,220,0 +170732761204,220,0 +170732761252,220,0 +170732761301,221,0 +170732761349,220,0 +170732761397,221,0 +170732761447,221,0 +170732761495,234,0 +170732761543,306,1 +170732761625,227,0 +170732761673,221,0 +170732761721,221,0 +170732761768,221,0 +170732761816,220,0 +170732761866,221,0 +170732761916,220,0 +170732761964,220,0 +170732762013,220,0 +170732762061,221,0 +170732762109,220,0 +170732762157,220,0 +170732762205,220,0 +170732762254,220,0 +170732762302,220,0 +170732762350,220,0 +170732762400,221,0 +170732762448,221,0 +170732762497,221,0 +170732762547,235,0 +170732762595,300,1 +170732762681,229,0 +170732762729,221,0 +170732762778,221,0 +170732762826,220,0 +170732762874,220,0 +170732762923,221,0 +170732762971,220,0 +170732763019,220,0 +170732763069,221,0 +170732763117,220,0 +170732763165,220,0 +170732763214,221,0 +170732763264,221,0 +170732763314,220,0 +170732763363,220,0 +170732763413,221,0 +170732763460,220,0 +170732763508,221,0 +170732763556,222,0 +170732763606,284,1 +170732763690,254,0 +170732763739,224,0 +170732763789,221,0 +170732763837,221,0 +170732763885,221,0 +170732763933,221,0 +170732763981,220,0 +170732764030,221,0 +170732764078,220,0 +170732764126,220,0 +170732764174,220,0 +170732764222,221,0 +170732764270,220,0 +170732764320,221,0 +170732764367,220,0 +170732764417,220,0 +170732764466,221,0 +170732764516,221,0 +170732764564,221,0 +170732764612,222,0 +170732764661,280,1 +170732764747,234,0 +170732764795,221,0 +170732764843,221,0 +170732764891,220,0 +170732764939,220,0 +170732764987,220,0 +170732765037,220,0 +170732765085,220,0 +170732765133,221,0 +170732765182,221,0 +170732765230,221,0 +170732765278,220,0 +170732765326,220,0 +170732765374,221,0 +170732765422,220,0 +170732765470,221,0 +170732765518,221,0 +170732765566,221,0 +170732765614,220,0 +170732765663,222,0 +170732765713,286,1 +170732765797,229,0 +170732765845,222,0 +170732765892,220,0 +170732765940,221,0 +170732765988,221,0 +170732766036,221,0 +170732766084,221,0 +170732766132,221,0 +170732766180,220,0 +170732766228,221,0 +170732766276,221,0 +170732766324,220,0 +170732766373,221,0 +170732766421,220,0 +170732766469,220,0 +170732766517,220,0 +170732766564,221,0 +170732766612,221,0 +170732766660,221,0 +170732766710,221,0 +170732766759,267,0 +170732766807,282,1 +170732766891,221,0 +170732766939,220,0 +170732766987,221,0 +170732767035,221,0 +170732767083,221,0 +170732767131,221,0 +170732767180,220,0 +170732767228,221,0 +170732767276,221,0 +170732767324,220,0 +170732767371,220,0 +170732767419,220,0 +170732767469,220,0 +170732767517,220,0 +170732767564,220,0 +170732767612,220,0 +170732767660,221,0 +170732767708,221,0 +170732767756,222,0 +170732767804,302,1 +170732767896,233,0 +170732767944,222,0 +170732767992,221,0 +170732768040,221,0 +170732768088,220,0 +170732768136,220,0 +170732768184,221,0 +170732768232,220,0 +170732768281,220,0 +170732768329,221,0 +170732768377,220,0 +170732768425,221,0 +170732768473,220,0 +170732768521,220,0 +170732768569,221,0 +170732768617,220,0 +170732768665,221,0 +170732768713,221,0 +170732768760,221,0 +170732768810,222,0 +170732768858,289,1 +170732768945,236,0 +170732768994,221,0 +170732769042,221,0 +170732769090,221,0 +170732769138,221,0 +170732769186,221,0 +170732769236,221,0 +170732769284,221,0 +170732769332,221,0 +170732769381,220,0 +170732769429,220,0 +170732769477,220,0 +170732769525,221,0 +170732769573,220,0 +170732769621,221,0 +170732769669,220,0 +170732769717,220,0 +170732769765,220,0 +170732769815,221,0 +170732769863,223,0 +170732769910,285,1 +170732769999,234,0 +170732770048,221,0 +170732770098,221,0 +170732770146,221,0 +170732770194,221,0 +170732770242,221,0 +170732770291,221,0 +170732770339,221,0 +170732770387,221,0 +170732770435,220,0 +170732770483,220,0 +170732770531,220,0 +170732770578,221,0 +170732770626,221,0 +170732770676,221,0 +170732770725,220,0 +170732770773,221,0 +170732770821,221,0 +170732770869,221,0 +170732770917,224,0 +170732770965,295,1 +170732771045,234,0 +170732771093,221,0 +170732771141,220,0 +170732771189,221,0 +170732771237,221,0 +170732771285,220,0 +170732771333,221,0 +170732771380,220,0 +170732771428,220,0 +170732771476,220,0 +170732771524,220,0 +170732771572,220,0 +170732771620,221,0 +170732771668,221,0 +170732771716,220,0 +170732771764,220,0 +170732771813,220,0 +170732771863,221,0 +170732771910,221,0 +170732771958,222,0 +170732772006,280,1 +170732772097,233,0 +170732772145,221,0 +170732772193,220,0 +170732772241,221,0 +170732772289,221,0 +170732772337,220,0 +170732772385,220,0 +170732772435,220,0 +170732772483,220,0 +170732772531,220,0 +170732772579,221,0 +170732772627,221,0 +170732772676,221,0 +170732772726,221,0 +170732772775,220,0 +170732772825,220,0 +170732772874,221,0 +170732772924,221,0 +170732772972,221,0 +170732773021,223,0 +170732773071,282,1 +170732773156,233,0 +170732773203,221,0 +170732773251,221,0 +170732773301,220,0 +170732773349,220,0 +170732773398,221,0 +170732773446,220,0 +170732773496,221,0 +170732773544,220,0 +170732773592,221,0 +170732773639,221,0 +170732773687,221,0 +170732773735,221,0 +170732773783,220,0 +170732773831,220,0 +170732773879,220,0 +170732773928,221,0 +170732773976,220,0 +170732774026,221,0 +170732774074,225,0 +170732774122,283,1 +170732774208,236,0 +170732774256,221,0 +170732774303,221,0 +170732774351,220,0 +170732774399,220,0 +170732774447,221,0 +170732774495,221,0 +170732774543,220,0 +170732774591,220,0 +170732774639,220,0 +170732774688,220,0 +170732774737,221,0 +170732774785,220,0 +170732774833,220,0 +170732774881,220,0 +170732774929,221,0 +170732774977,220,0 +170732775025,220,0 +170732775072,221,0 +170732775120,224,0 +170732775168,282,1 +170732775260,228,0 +170732775308,221,0 +170732775356,221,0 +170732775404,220,0 +170732775451,221,0 +170732775499,220,0 +170732775549,220,0 +170732775597,220,0 +170732775645,220,0 +170732775693,220,0 +170732775742,220,0 +170732775790,220,0 +170732775838,220,0 +170732775886,220,0 +170732775934,220,0 +170732775982,221,0 +170732776032,220,0 +170732776080,220,0 +170732776129,221,0 +170732776179,232,0 +170732776226,282,1 +170732776312,228,0 +170732776361,221,0 +170732776409,221,0 +170732776457,220,0 +170732776507,221,0 +170732776555,220,0 +170732776603,220,0 +170732776652,220,0 +170732776700,220,0 +170732776748,221,0 +170732776796,220,0 +170732776844,221,0 +170732776892,220,0 +170732776941,221,0 +170732776989,220,0 +170732777037,221,0 +170732777085,220,0 +170732777133,221,0 +170732777181,221,0 +170732777229,262,0 +170732777277,297,1 +170732777361,225,0 +170732777411,220,0 +170732777460,221,0 +170732777510,221,0 +170732777560,221,0 +170732777608,220,0 +170732777655,220,0 +170732777703,220,0 +170732777751,220,0 +170732777801,220,0 +170732777849,220,0 +170732777898,221,0 +170732777946,220,0 +170732777994,220,0 +170732778042,220,0 +170732778090,220,0 +170732778140,221,0 +170732778188,221,0 +170732778237,221,0 +170732778285,237,0 +170732778333,293,1 +170732778411,230,0 +170732778459,221,0 +170732778506,220,0 +170732778554,221,0 +170732778604,221,0 +170732778653,221,0 +170732778701,221,0 +170732778749,220,0 +170732778797,220,0 +170732778845,221,0 +170732778893,221,0 +170732778943,220,0 +170732778991,221,0 +170732779039,221,0 +170732779088,221,0 +170732779136,220,0 +170732779186,221,0 +170732779234,221,0 +170732779283,221,0 +170732779331,278,1 +170732779419,236,0 +170732779467,222,0 +170732779516,221,0 +170732779564,220,0 +170732779614,220,0 +170732779663,220,0 +170732779713,221,0 +170732779761,220,0 +170732779809,220,0 +170732779857,221,0 +170732779906,220,0 +170732779954,221,0 +170732780004,220,0 +170732780053,220,0 +170732780103,221,0 +170732780151,221,0 +170732780199,220,0 +170732780247,221,0 +170732780296,221,0 +170732780344,223,0 +170732780394,308,1 +170732780480,237,0 +170732780529,222,0 +170732780577,220,0 +170732780627,220,0 +170732780676,221,0 +170732780726,221,0 +170732780775,221,0 +170732780825,220,0 +170732780873,220,0 +170732780922,220,0 +170732780970,220,0 +170732781018,220,0 +170732781066,221,0 +170732781114,221,0 +170732781162,220,0 +170732781210,220,0 +170732781258,220,0 +170732781307,221,0 +170732781356,221,0 +170732781403,224,0 +170732781453,288,1 +170732781536,236,0 +170732781585,221,0 +170732781633,221,0 +170732781681,220,0 +170732781729,221,0 +170732781777,221,0 +170732781825,220,0 +170732781875,220,0 +170732781922,220,0 +170732781972,220,0 +170732782020,221,0 +170732782068,220,0 +170732782116,221,0 +170732782164,220,0 +170732782213,220,0 +170732782261,220,0 +170732782309,221,0 +170732782357,220,0 +170732782405,221,0 +170732782453,223,0 +170732782501,299,1 +170732782587,240,0 +170732782636,221,0 +170732782684,221,0 +170732782732,220,0 +170732782782,220,0 +170732782830,220,0 +170732782878,220,0 +170732782926,221,0 +170732782973,220,0 +170732783021,221,0 +170732783069,220,0 +170732783117,220,0 +170732783165,220,0 +170732783215,220,0 +170732783263,220,0 +170732783312,220,0 +170732783362,220,0 +170732783411,220,0 +170732783459,221,0 +170732783509,230,0 +170732783557,300,1 +170732783647,226,0 +170732783695,220,0 +170732783744,220,0 +170732783792,220,0 +170732783840,220,0 +170732783888,221,0 +170732783936,220,0 +170732783984,221,0 +170732784032,220,0 +170732784080,221,0 +170732784128,220,0 +170732784175,220,0 +170732784223,221,0 +170732784271,221,0 +170732784319,221,0 +170732784367,221,0 +170732784415,220,0 +170732784463,220,0 +170732784511,221,0 +170732784559,242,0 +170732784606,273,1 +170732784690,230,0 +170732784738,221,0 +170732784787,220,0 +170732784835,221,0 +170732784885,220,0 +170732784932,220,0 +170732784980,220,0 +170732785030,220,0 +170732785078,220,0 +170732785127,221,0 +170732785175,221,0 +170732785225,221,0 +170732785273,220,0 +170732785321,220,0 +170732785370,220,0 +170732785418,221,0 +170732785468,221,0 +170732785516,221,0 +170732785564,221,0 +170732785613,235,0 +170732785663,288,1 +170732785742,228,0 +170732785792,221,0 +170732785840,221,0 +170732785888,220,0 +170732785937,221,0 +170732785985,221,0 +170732786033,221,0 +170732786081,221,0 +170732786129,220,0 +170732786179,220,0 +170732786227,221,0 +170732786276,220,0 +170732786326,220,0 +170732786375,220,0 +170732786423,220,0 +170732786471,221,0 +170732786520,220,0 +170732786570,221,0 +170732786618,222,0 +170732786666,260,0 +170732786715,295,1 +170732786800,226,0 +170732786848,221,0 +170732786897,220,0 +170732786947,220,0 +170732786995,221,0 +170732787043,221,0 +170732787092,221,0 +170732787140,220,0 +170732787189,220,0 +170732787237,220,0 +170732787285,221,0 +170732787333,221,0 +170732787383,220,0 +170732787431,221,0 +170732787478,221,0 +170732787526,220,0 +170732787574,220,0 +170732787622,221,0 +170732787670,222,0 +170732787718,296,1 +170732787803,244,0 +170732787853,222,0 +170732787901,220,0 +170732787949,221,0 +170732787998,220,0 +170732788046,221,0 +170732788094,221,0 +170732788142,221,0 +170732788192,220,0 +170732788241,220,0 +170732788289,220,0 +170732788337,220,0 +170732788385,220,0 +170732788433,221,0 +170732788481,221,0 +170732788530,220,0 +170732788578,220,0 +170732788626,220,0 +170732788676,221,0 +170732788725,221,0 +170732788775,260,0 +170732788823,280,1 +170732788905,225,0 +170732788953,221,0 +170732789003,220,0 +170732789051,221,0 +170732789100,221,0 +170732789148,221,0 +170732789196,221,0 +170732789244,220,0 +170732789292,221,0 +170732789340,220,0 +170732789388,220,0 +170732789436,220,0 +170732789484,220,0 +170732789532,221,0 +170732789580,220,0 +170732789628,220,0 +170732789677,220,0 +170732789727,221,0 +170732789774,221,0 +170732789824,289,1 +170732789905,242,0 +170732789955,222,0 +170732790004,221,0 +170732790052,221,0 +170732790100,220,0 +170732790150,220,0 +170732790199,221,0 +170732790249,220,0 +170732790298,221,0 +170732790346,221,0 +170732790394,220,0 +170732790444,220,0 +170732790493,220,0 +170732790542,221,0 +170732790592,221,0 +170732790640,220,0 +170732790688,220,0 +170732790736,221,0 +170732790785,221,0 +170732790832,222,0 +170732790880,270,1 +170732790960,226,0 +170732791008,222,0 +170732791056,221,0 +170732791104,220,0 +170732791152,220,0 +170732791200,221,0 +170732791248,221,0 +170732791297,220,0 +170732791345,220,0 +170732791395,220,0 +170732791442,221,0 +170732791492,220,0 +170732791540,220,0 +170732791590,221,0 +170732791637,221,0 +170732791687,220,0 +170732791736,220,0 +170732791784,220,0 +170732791834,221,0 +170732791882,222,0 +170732791930,284,1 +170732792017,234,0 +170732792065,222,0 +170732792113,221,0 +170732792163,221,0 +170732792212,220,0 +170732792260,221,0 +170732792308,221,0 +170732792356,220,0 +170732792404,221,0 +170732792452,220,0 +170732792501,221,0 +170732792551,220,0 +170732792599,221,0 +170732792649,221,0 +170732792696,221,0 +170732792744,221,0 +170732792795,220,0 +170732792843,221,0 +170732792891,221,0 +170732792939,223,0 +170732792988,291,1 +170732793069,234,0 +170732793118,221,0 +170732793168,221,0 +170732793216,221,0 +170732793265,220,0 +170732793313,220,0 +170732793363,220,0 +170732793411,221,0 +170732793459,221,0 +170732793508,220,0 +170732793558,221,0 +170732793606,221,0 +170732793654,221,0 +170732793703,220,0 +170732793751,221,0 +170732793801,220,0 +170732793849,221,0 +170732793898,221,0 +170732793946,221,0 +170732793994,226,0 +170732794044,287,1 +170732794131,232,0 +170732794179,221,0 +170732794228,220,0 +170732794276,221,0 +170732794324,221,0 +170732794372,221,0 +170732794421,220,0 +170732794469,221,0 +170732794519,220,0 +170732794568,220,0 +170732794616,221,0 +170732794664,221,0 +170732794714,221,0 +170732794763,221,0 +170732794811,220,0 +170732794861,220,0 +170732794909,220,0 +170732794958,220,0 +170732795006,221,0 +170732795054,225,0 +170732795102,303,1 +170732795193,228,0 +170732795241,221,0 +170732795289,220,0 +170732795337,220,0 +170732795387,220,0 +170732795436,220,0 +170732795484,221,0 +170732795532,220,0 +170732795580,221,0 +170732795628,220,0 +170732795676,221,0 +170732795724,220,0 +170732795772,220,0 +170732795820,221,0 +170732795870,221,0 +170732795917,221,0 +170732795967,220,0 +170732796015,221,0 +170732796064,222,0 +170732796114,279,1 +170732796203,257,0 +170732796251,223,0 +170732796301,221,0 +170732796349,220,0 +170732796397,220,0 +170732796445,220,0 +170732796493,221,0 +170732796541,220,0 +170732796589,220,0 +170732796637,220,0 +170732796685,220,0 +170732796734,221,0 +170732796782,221,0 +170732796830,221,0 +170732796879,221,0 +170732796927,220,0 +170732796977,221,0 +170732797025,220,0 +170732797074,221,0 +170732797124,222,0 +170732797172,292,1 +170732797256,240,0 +170732797305,222,0 +170732797355,220,0 +170732797403,221,0 +170732797450,221,0 +170732797498,220,0 +170732797546,221,0 +170732797594,220,0 +170732797644,221,0 +170732797693,221,0 +170732797741,221,0 +170732797789,221,0 +170732797837,221,0 +170732797885,220,0 +170732797935,220,0 +170732797983,221,0 +170732798031,220,0 +170732798079,220,0 +170732798128,221,0 +170732798176,222,0 +170732798224,290,1 +170732798305,237,0 +170732798354,222,0 +170732798404,220,0 +170732798453,221,0 +170732798503,221,0 +170732798552,220,0 +170732798602,221,0 +170732798650,220,0 +170732798698,220,0 +170732798746,221,0 +170732798795,220,0 +170732798845,221,0 +170732798893,220,0 +170732798941,220,0 +170732798990,220,0 +170732799038,221,0 +170732799087,220,0 +170732799137,221,0 +170732799185,221,0 +170732799233,224,0 +170732799281,298,1 +170732799364,242,0 +170732799414,220,0 +170732799462,221,0 +170732799510,220,0 +170732799558,221,0 +170732799606,220,0 +170732799654,221,0 +170732799702,221,0 +170732799750,221,0 +170732799798,221,0 +170732799847,220,0 +170732799895,221,0 +170732799943,220,0 +170732799991,221,0 +170732800041,221,0 +170732800090,220,0 +170732800138,221,0 +170732800186,221,0 +170732800234,221,0 +170732800282,224,0 +170732800330,292,1 +170732800415,239,0 +170732800463,221,0 +170732800513,221,0 +170732800562,221,0 +170732800612,220,0 +170732800660,220,0 +170732800708,221,0 +170732800756,221,0 +170732800805,220,0 +170732800855,220,0 +170732800904,221,0 +170732800952,220,0 +170732801000,220,0 +170732801048,221,0 +170732801096,221,0 +170732801144,221,0 +170732801192,220,0 +170732801241,221,0 +170732801289,221,0 +170732801337,223,0 +170732801385,290,1 +170732801473,236,0 +170732801523,221,0 +170732801572,221,0 +170732801622,221,0 +170732801671,220,0 +170732801719,221,0 +170732801767,220,0 +170732801817,221,0 +170732801866,221,0 +170732801916,220,0 +170732801964,221,0 +170732802012,221,0 +170732802060,220,0 +170732802108,220,0 +170732802157,221,0 +170732802207,221,0 +170732802256,220,0 +170732802304,220,0 +170732802352,221,0 +170732802400,252,0 +170732802448,289,1 +170732802530,232,0 +170732802580,221,0 +170732802629,220,0 +170732802677,221,0 +170732802725,220,0 +170732802773,220,0 +170732802821,221,0 +170732802869,221,0 +170732802919,221,0 +170732802968,221,0 +170732803018,221,0 +170732803066,221,0 +170732803114,221,0 +170732803162,221,0 +170732803211,220,0 +170732803261,221,0 +170732803309,220,0 +170732803358,221,0 +170732803406,221,0 +170732803454,264,0 +170732803504,291,1 +170732803591,224,0 +170732803641,221,0 +170732803690,221,0 +170732803738,221,0 +170732803788,221,0 +170732803837,220,0 +170732803885,221,0 +170732803933,221,0 +170732803983,220,0 +170732804031,221,0 +170732804080,221,0 +170732804128,221,0 +170732804177,220,0 +170732804225,220,0 +170732804273,221,0 +170732804321,220,0 +170732804369,220,0 +170732804419,220,0 +170732804467,221,0 +170732804515,297,1 +170732804603,232,0 +170732804653,222,0 +170732804701,221,0 +170732804750,221,0 +170732804800,221,0 +170732804849,220,0 +170732804899,220,0 +170732804947,220,0 +170732804995,221,0 +170732805043,220,0 +170732805091,220,0 +170732805139,221,0 +170732805187,221,0 +170732805236,221,0 +170732805286,220,0 +170732805335,221,0 +170732805383,221,0 +170732805431,221,0 +170732805481,221,0 +170732805529,222,0 +170732805578,268,0 +170732805626,282,1 +170732805713,221,0 +170732805761,220,0 +170732805811,221,0 +170732805860,220,0 +170732805908,221,0 +170732805956,221,0 +170732806004,220,0 +170732806053,221,0 +170732806101,220,0 +170732806149,221,0 +170732806197,220,0 +170732806247,221,0 +170732806295,221,0 +170732806344,220,0 +170732806392,221,0 +170732806440,221,0 +170732806488,221,0 +170732806536,222,0 +170732806584,224,0 +170732806632,258,0 +170732806682,296,1 +170732806767,221,0 +170732806815,221,0 +170732806863,221,0 +170732806911,221,0 +170732806958,220,0 +170732807008,220,0 +170732807056,220,0 +170732807104,221,0 +170732807154,221,0 +170732807201,221,0 +170732807251,220,0 +170732807299,221,0 +170732807347,220,0 +170732807395,221,0 +170732807443,221,0 +170732807491,220,0 +170732807540,221,0 +170732807588,221,0 +170732807638,224,0 +170732807686,292,1 +170732807771,230,0 +170732807819,221,0 +170732807867,220,0 +170732807917,220,0 +170732807966,220,0 +170732808014,220,0 +170732808062,220,0 +170732808112,221,0 +170732808160,221,0 +170732808208,220,0 +170732808257,221,0 +170732808305,221,0 +170732808355,221,0 +170732808402,221,0 +170732808450,221,0 +170732808498,221,0 +170732808546,220,0 +170732808596,221,0 +170732808644,221,0 +170732808691,233,0 +170732808739,298,1 +170732808821,231,0 +170732808871,221,0 +170732808919,221,0 +170732808967,220,0 +170732809015,221,0 +170732809062,220,0 +170732809110,220,0 +170732809158,220,0 +170732809206,220,0 +170732809254,221,0 +170732809302,220,0 +170732809350,220,0 +170732809398,221,0 +170732809446,221,0 +170732809494,221,0 +170732809543,220,0 +170732809591,220,0 +170732809639,220,0 +170732809689,221,0 +170732809738,227,0 +170732809786,300,1 +170732809872,228,0 +170732809921,221,0 +170732809971,220,0 +170732810019,220,0 +170732810067,220,0 +170732810116,221,0 +170732810166,220,0 +170732810215,220,0 +170732810263,221,0 +170732810311,221,0 +170732810361,221,0 +170732810409,220,0 +170732810457,220,0 +170732810505,220,0 +170732810553,220,0 +170732810602,220,0 +170732810652,221,0 +170732810700,221,0 +170732810748,221,0 +170732810797,238,0 +170732810845,271,1 +170732810934,225,0 +170732810984,221,0 +170732811033,220,0 +170732811083,220,0 +170732811130,221,0 +170732811180,220,0 +170732811228,220,0 +170732811276,221,0 +170732811324,221,0 +170732811371,220,0 +170732811419,221,0 +170732811467,221,0 +170732811517,221,0 +170732811565,220,0 +170732811612,220,0 +170732811662,220,0 +170732811710,221,0 +170732811758,221,0 +170732811807,221,0 +170732811857,288,1 +170732811958,239,0 +170732812007,221,0 +170732812057,221,0 +170732812105,221,0 +170732812153,221,0 +170732812202,220,0 +170732812252,221,0 +170732812301,220,0 +170732812351,220,0 +170732812399,220,0 +170732812447,220,0 +170732812495,221,0 +170732812543,220,0 +170732812592,221,0 +170732812642,220,0 +170732812691,220,0 +170732812741,220,0 +170732812789,220,0 +170732812837,221,0 +170732812885,225,0 +170732812934,313,0 +170732812982,284,1 +170732813062,220,0 +170732813110,220,0 +170732813158,221,0 +170732813206,220,0 +170732813254,221,0 +170732813302,220,0 +170732813350,220,0 +170732813398,220,0 +170732813447,220,0 +170732813495,221,0 +170732813543,220,0 +170732813591,221,0 +170732813640,220,0 +170732813688,221,0 +170732813738,220,0 +170732813785,220,0 +170732813833,221,0 +170732813882,221,0 +170732813930,224,0 +170732813978,304,1 +170732814064,235,0 +170732814111,222,0 +170732814159,221,0 +170732814207,220,0 +170732814255,220,0 +170732814303,220,0 +170732814351,220,0 +170732814399,221,0 +170732814447,220,0 +170732814496,221,0 +170732814544,221,0 +170732814592,220,0 +170732814640,220,0 +170732814690,221,0 +170732814738,220,0 +170732814786,220,0 +170732814836,221,0 +170732814883,221,0 +170732814931,221,0 +170732814979,225,0 +170732815029,294,1 +170732815115,231,0 +170732815163,221,0 +170732815211,221,0 +170732815259,221,0 +170732815307,220,0 +170732815355,221,0 +170732815403,221,0 +170732815450,220,0 +170732815500,220,0 +170732815548,221,0 +170732815598,221,0 +170732815646,220,0 +170732815694,221,0 +170732815742,220,0 +170732815789,220,0 +170732815839,221,0 +170732815887,221,0 +170732815935,220,0 +170732815983,221,0 +170732816031,226,0 +170732816079,280,1 +170732816164,233,0 +170732816212,221,0 +170732816260,220,0 +170732816308,220,0 +170732816357,221,0 +170732816407,220,0 +170732816456,220,0 +170732816506,221,0 +170732816554,221,0 +170732816602,220,0 +170732816650,221,0 +170732816698,220,0 +170732816747,221,0 +170732816795,221,0 +170732816843,220,0 +170732816891,220,0 +170732816939,220,0 +170732816987,221,0 +170732817035,221,0 +170732817083,224,0 +170732817131,295,1 +170732817217,236,0 +170732817267,221,0 +170732817315,221,0 +170732817364,220,0 +170732817412,220,0 +170732817460,220,0 +170732817508,221,0 +170732817558,220,0 +170732817606,220,0 +170732817655,221,0 +170732817703,220,0 +170732817753,221,0 +170732817801,221,0 +170732817850,220,0 +170732817900,220,0 +170732817948,221,0 +170732817996,221,0 +170732818044,221,0 +170732818093,222,0 +170732818141,250,0 +170732818191,294,1 +170732818278,224,0 +170732818328,221,0 +170732818376,220,0 +170732818425,220,0 +170732818473,221,0 +170732818523,220,0 +170732818571,221,0 +170732818619,221,0 +170732818668,221,0 +170732818716,220,0 +170732818766,220,0 +170732818814,221,0 +170732818863,221,0 +170732818911,220,0 +170732818959,221,0 +170732819009,221,0 +170732819057,221,0 +170732819105,221,0 +170732819153,221,0 +170732819201,289,1 +170732819285,235,0 +170732819335,221,0 +170732819384,221,0 +170732819434,221,0 +170732819482,220,0 +170732819530,221,0 +170732819578,220,0 +170732819626,221,0 +170732819674,221,0 +170732819723,220,0 +170732819773,220,0 +170732819822,220,0 +170732819870,221,0 +170732819918,220,0 +170732819966,221,0 +170732820014,221,0 +170732820062,221,0 +170732820110,220,0 +170732820160,221,0 +170732820208,222,0 +170732820256,283,1 +170732820346,237,0 +170732820396,221,0 +170732820444,221,0 +170732820492,221,0 +170732820540,220,0 +170732820588,221,0 +170732820636,220,0 +170732820684,220,0 +170732820732,221,0 +170732820780,220,0 +170732820828,221,0 +170732820876,221,0 +170732820925,221,0 +170732820973,221,0 +170732821021,220,0 +170732821069,220,0 +170732821119,220,0 +170732821167,220,0 +170732821214,221,0 +170732821264,223,0 +170732821312,284,1 +170732821395,238,0 +170732821443,221,0 +170732821491,221,0 +170732821540,220,0 +170732821588,221,0 +170732821636,221,0 +170732821686,221,0 +170732821734,220,0 +170732821782,221,0 +170732821830,220,0 +170732821879,220,0 +170732821927,220,0 +170732821975,220,0 +170732822023,220,0 +170732822073,220,0 +170732822120,220,0 +170732822170,220,0 +170732822218,221,0 +170732822266,221,0 +170732822314,223,0 +170732822362,283,1 +170732822447,238,0 +170732822495,221,0 +170732822544,220,0 +170732822592,221,0 +170732822640,220,0 +170732822688,221,0 +170732822738,220,0 +170732822786,221,0 +170732822833,221,0 +170732822883,220,0 +170732822933,220,0 +170732822982,220,0 +170732823030,221,0 +170732823078,221,0 +170732823128,220,0 +170732823177,220,0 +170732823227,220,0 +170732823276,221,0 +170732823324,220,0 +170732823372,224,0 +170732823420,282,1 +170732823503,236,0 +170732823551,222,0 +170732823600,221,0 +170732823648,220,0 +170732823696,220,0 +170732823744,221,0 +170732823792,220,0 +170732823840,221,0 +170732823888,220,0 +170732823937,221,0 +170732823985,220,0 +170732824033,220,0 +170732824081,220,0 +170732824129,221,0 +170732824178,220,0 +170732824226,220,0 +170732824274,221,0 +170732824322,220,0 +170732824372,220,0 +170732824420,224,0 +170732824469,300,1 +170732824551,237,0 +170732824599,221,0 +170732824649,221,0 +170732824698,221,0 +170732824746,221,0 +170732824794,221,0 +170732824842,220,0 +170732824890,221,0 +170732824938,221,0 +170732824987,221,0 +170732825035,221,0 +170732825083,220,0 +170732825131,221,0 +170732825179,220,0 +170732825227,221,0 +170732825275,220,0 +170732825323,221,0 +170732825371,220,0 +170732825421,221,0 +170732825469,225,0 +170732825517,272,1 +170732825599,237,0 +170732825649,221,0 +170732825697,221,0 +170732825745,220,0 +170732825793,220,0 +170732825842,221,0 +170732825892,221,0 +170732825940,220,0 +170732825989,220,0 +170732826039,220,0 +170732826087,220,0 +170732826135,221,0 +170732826183,221,0 +170732826231,221,0 +170732826280,220,0 +170732826328,220,0 +170732826376,220,0 +170732826424,221,0 +170732826472,221,0 +170732826521,223,0 +170732826569,275,1 +170732826653,234,0 +170732826701,221,0 +170732826750,221,0 +170732826798,220,0 +170732826846,220,0 +170732826894,220,0 +170732826942,221,0 +170732826992,221,0 +170732827039,220,0 +170732827089,220,0 +170732827137,221,0 +170732827185,220,0 +170732827233,220,0 +170732827281,220,0 +170732827329,221,0 +170732827377,220,0 +170732827425,220,0 +170732827473,221,0 +170732827521,221,0 +170732827569,224,0 +170732827617,266,0 +170732827665,266,0 +170732827714,224,0 +170732827762,221,0 +170732827810,221,0 +170732827860,221,0 +170732827908,221,0 +170732827957,220,0 +170732828005,220,0 +170732828053,221,0 +170732828103,220,0 +170732828152,220,0 +170732828200,220,0 +170732828249,221,0 +170732828297,220,0 +170732828347,221,0 +170732828395,221,0 +170732828443,220,0 +170732828492,220,0 +170732828542,221,0 +170732828591,223,0 +170732828639,287,1 +170732828723,230,0 +170732828771,221,0 +170732828820,221,0 +170732828868,221,0 +170732828916,221,0 +170732828966,220,0 +170732829014,220,0 +170732829063,220,0 +170732829111,220,0 +170732829159,221,0 +170732829207,220,0 +170732829255,220,0 +170732829305,221,0 +170732829353,221,0 +170732829402,221,0 +170732829452,221,0 +170732829500,221,0 +170732829548,220,0 +170732829595,222,0 +170732829645,223,0 +170732829693,283,1 +170732829769,231,0 +170732829818,221,0 +170732829866,221,0 +170732829914,221,0 +170732829962,220,0 +170732830010,220,0 +170732830058,221,0 +170732830105,220,0 +170732830153,220,0 +170732830201,221,0 +170732830249,220,0 +170732830297,221,0 +170732830347,221,0 +170732830396,221,0 +170732830444,221,0 +170732830492,220,0 +170732830542,220,0 +170732830590,221,0 +170732830639,221,0 +170732830687,222,0 +170732830735,272,1 +170732830814,277,1 +170732830898,221,0 +170732830946,221,0 +170732830995,220,0 +170732831043,220,0 +170732831091,220,0 +170732831141,220,0 +170732831188,220,0 +170732831236,221,0 +170732831284,221,0 +170732831332,220,0 +170732831380,220,0 +170732831428,220,0 +170732831476,220,0 +170732831525,220,0 +170732831575,220,0 +170732831624,221,0 +170732831674,221,0 +170732831722,221,0 +170732831772,256,0 +170732831820,276,1 +170732831904,226,0 +170732831954,221,0 +170732832004,221,0 +170732832051,221,0 +170732832101,220,0 +170732832149,220,0 +170732832197,220,0 +170732832245,220,0 +170732832295,220,0 +170732832343,220,0 +170732832391,221,0 +170732832438,221,0 +170732832486,221,0 +170732832534,221,0 +170732832582,221,0 +170732832632,221,0 +170732832679,220,0 +170732832727,221,0 +170732832775,222,0 +170732832823,261,0 +170732832871,282,1 +170732832960,224,0 +170732833007,221,0 +170732833055,220,0 +170732833103,220,0 +170732833151,220,0 +170732833199,221,0 +170732833247,221,0 +170732833295,221,0 +170732833343,220,0 +170732833392,221,0 +170732833440,220,0 +170732833488,221,0 +170732833536,220,0 +170732833584,221,0 +170732833634,220,0 +170732833682,220,0 +170732833731,221,0 +170732833781,221,0 +170732833829,222,0 +170732833877,246,0 +170732833925,297,1 +170732834009,224,0 +170732834057,221,0 +170732834104,221,0 +170732834152,220,0 +170732834200,221,0 +170732834248,221,0 +170732834296,221,0 +170732834344,221,0 +170732834393,220,0 +170732834441,221,0 +170732834489,221,0 +170732834537,221,0 +170732834585,221,0 +170732834633,221,0 +170732834681,221,0 +170732834730,220,0 +170732834778,220,0 +170732834826,221,0 +170732834875,221,0 +170732834923,283,1 +170732835006,269,0 +170732835053,226,0 +170732835103,221,0 +170732835151,220,0 +170732835199,220,0 +170732835247,220,0 +170732835294,221,0 +170732835342,220,0 +170732835390,221,0 +170732835438,221,0 +170732835486,221,0 +170732835534,220,0 +170732835583,221,0 +170732835631,221,0 +170732835679,220,0 +170732835727,220,0 +170732835775,221,0 +170732835823,220,0 +170732835871,221,0 +170732835919,222,0 +170732835966,278,1 +170732836049,297,1 +170732836134,221,0 +170732836182,221,0 +170732836230,220,0 +170732836277,221,0 +170732836325,220,0 +170732836373,221,0 +170732836421,221,0 +170732836469,221,0 +170732836517,221,0 +170732836565,221,0 +170732836614,221,0 +170732836662,221,0 +170732836712,221,0 +170732836759,221,0 +170732836807,220,0 +170732836855,220,0 +170732836905,221,0 +170732836952,220,0 +170732837002,224,0 +170732837050,271,1 +170732837134,236,0 +170732837182,221,0 +170732837230,221,0 +170732837278,221,0 +170732837327,220,0 +170732837375,221,0 +170732837423,220,0 +170732837471,221,0 +170732837519,221,0 +170732837566,221,0 +170732837614,221,0 +170732837662,220,0 +170732837710,221,0 +170732837758,221,0 +170732837808,220,0 +170732837857,220,0 +170732837907,220,0 +170732837955,221,0 +170732838002,221,0 +170732838052,226,0 +170732838100,309,1 +170732838185,232,0 +170732838233,221,0 +170732838281,220,0 +170732838330,221,0 +170732838380,221,0 +170732838429,221,0 +170732838477,220,0 +170732838525,221,0 +170732838573,221,0 +170732838621,220,0 +170732838669,221,0 +170732838717,221,0 +170732838765,220,0 +170732838814,221,0 +170732838862,221,0 +170732838912,220,0 +170732838960,221,0 +170732839008,220,0 +170732839056,221,0 +170732839105,231,0 +170732839153,294,1 +170732839226,238,0 +170732839274,221,0 +170732839322,221,0 +170732839370,220,0 +170732839418,220,0 +170732839466,221,0 +170732839515,221,0 +170732839563,221,0 +170732839611,220,0 +170732839659,221,0 +170732839709,220,0 +170732839758,220,0 +170732839806,220,0 +170732839854,220,0 +170732839902,220,0 +170732839950,221,0 +170732839998,221,0 +170732840047,221,0 +170732840095,221,0 +170732840143,223,0 +170732840191,298,1 +170732840275,232,0 +170732840323,221,0 +170732840373,221,0 +170732840422,221,0 +170732840472,221,0 +170732840520,221,0 +170732840568,221,0 +170732840616,221,0 +170732840665,220,0 +170732840713,221,0 +170732840763,221,0 +170732840812,221,0 +170732840860,220,0 +170732840910,220,0 +170732840958,220,0 +170732841007,220,0 +170732841055,220,0 +170732841105,221,0 +170732841153,221,0 +170732841202,224,0 +170732841252,303,1 +170732841346,228,0 +170732841394,221,0 +170732841443,220,0 +170732841493,220,0 +170732841541,220,0 +170732841589,220,0 +170732841638,221,0 +170732841686,221,0 +170732841735,220,0 +170732841783,221,0 +170732841831,220,0 +170732841879,220,0 +170732841927,220,0 +170732841976,221,0 +170732842024,220,0 +170732842072,220,0 +170732842120,221,0 +170732842170,221,0 +170732842220,221,0 +170732842269,271,1 +170732842347,286,1 +170732842433,221,0 +170732842483,220,0 +170732842531,220,0 +170732842579,221,0 +170732842627,221,0 +170732842675,221,0 +170732842723,220,0 +170732842771,220,0 +170732842818,220,0 +170732842868,220,0 +170732842918,220,0 +170732842965,220,0 +170732843013,221,0 +170732843061,221,0 +170732843109,221,0 +170732843157,221,0 +170732843207,221,0 +170732843255,221,0 +170732843303,226,0 +170732843352,290,1 +170732843434,232,0 +170732843482,221,0 +170732843530,220,0 +170732843578,220,0 +170732843626,220,0 +170732843674,220,0 +170732843722,220,0 +170732843770,220,0 +170732843819,221,0 +170732843867,220,0 +170732843915,220,0 +170732843963,220,0 +170732844013,221,0 +170732844061,220,0 +170732844109,221,0 +170732844157,221,0 +170732844204,220,0 +170732844252,220,0 +170732844300,221,0 +170732844350,224,0 +170732844398,295,1 +170732844483,233,0 +170732844531,220,0 +170732844580,221,0 +170732844630,220,0 +170732844678,220,0 +170732844726,220,0 +170732844775,221,0 +170732844823,221,0 +170732844871,220,0 +170732844919,220,0 +170732844967,221,0 +170732845015,220,0 +170732845065,220,0 +170732845113,221,0 +170732845161,220,0 +170732845210,220,0 +170732845258,220,0 +170732845306,221,0 +170732845354,221,0 +170732845402,226,0 +170732845450,306,1 +170732845538,229,0 +170732845586,221,0 +170732845634,220,0 +170732845682,221,0 +170732845732,220,0 +170732845781,220,0 +170732845831,221,0 +170732845879,220,0 +170732845928,220,0 +170732845976,220,0 +170732846024,220,0 +170732846074,220,0 +170732846122,221,0 +170732846170,220,0 +170732846218,221,0 +170732846266,220,0 +170732846314,221,0 +170732846362,221,0 +170732846410,221,0 +170732846458,257,0 +170732846506,301,1 +170732846588,225,0 +170732846636,220,0 +170732846684,220,0 +170732846732,221,0 +170732846780,220,0 +170732846828,221,0 +170732846876,220,0 +170732846924,220,0 +170732846972,221,0 +170732847020,221,0 +170732847070,220,0 +170732847118,220,0 +170732847166,220,0 +170732847215,220,0 +170732847263,221,0 +170732847311,221,0 +170732847359,221,0 +170732847408,221,0 +170732847458,221,0 +170732847506,225,0 +170732847555,267,0 +170732847605,250,0 +170732847653,222,0 +170732847701,221,0 +170732847749,220,0 +170732847797,221,0 +170732847846,220,0 +170732847894,221,0 +170732847942,220,0 +170732847990,221,0 +170732848040,220,0 +170732848089,221,0 +170732848137,221,0 +170732848185,220,0 +170732848233,220,0 +170732848281,220,0 +170732848329,221,0 +170732848379,220,0 +170732848427,220,0 +170732848475,220,0 +170732848524,221,0 +170732848572,288,1 +170732848654,252,0 +170732848703,222,0 +170732848751,221,0 +170732848799,221,0 +170732848847,221,0 +170732848897,220,0 +170732848945,220,0 +170732848993,220,0 +170732849040,220,0 +170732849088,221,0 +170732849138,220,0 +170732849186,220,0 +170732849236,221,0 +170732849285,220,0 +170732849333,221,0 +170732849381,220,0 +170732849429,220,0 +170732849478,220,0 +170732849526,221,0 +170732849574,222,0 +170732849622,302,1 +170732849709,231,0 +170732849757,221,0 +170732849805,221,0 +170732849853,220,0 +170732849900,221,0 +170732849948,220,0 +170732849996,221,0 +170732850044,221,0 +170732850092,221,0 +170732850140,220,0 +170732850188,221,0 +170732850236,220,0 +170732850284,221,0 +170732850331,220,0 +170732850379,220,0 +170732850427,220,0 +170732850475,220,0 +170732850523,220,0 +170732850571,221,0 +170732850619,222,0 +170732850668,280,1 +170732850755,234,0 +170732850803,221,0 +170732850851,220,0 +170732850898,220,0 +170732850946,220,0 +170732850994,220,0 +170732851044,221,0 +170732851093,220,0 +170732851141,221,0 +170732851191,221,0 +170732851240,221,0 +170732851288,220,0 +170732851338,220,0 +170732851386,221,0 +170732851434,220,0 +170732851482,220,0 +170732851530,220,0 +170732851579,221,0 +170732851627,221,0 +170732851675,222,0 +170732851725,275,1 +170732851809,229,0 +170732851858,222,0 +170732851906,221,0 +170732851954,221,0 +170732852004,221,0 +170732852052,221,0 +170732852100,221,0 +170732852149,221,0 +170732852197,220,0 +170732852247,220,0 +170732852295,221,0 +170732852343,220,0 +170732852391,220,0 +170732852440,220,0 +170732852488,220,0 +170732852536,220,0 +170732852586,220,0 +170732852635,220,0 +170732852683,221,0 +170732852731,223,0 +170732852781,294,1 +170732852867,236,0 +170732852915,221,0 +170732852964,220,0 +170732853012,220,0 +170732853060,221,0 +170732853108,220,0 +170732853158,220,0 +170732853206,220,0 +170732853255,220,0 +170732853303,221,0 +170732853351,221,0 +170732853399,220,0 +170732853449,221,0 +170732853497,221,0 +170732853545,220,0 +170732853593,220,0 +170732853642,220,0 +170732853692,221,0 +170732853740,221,0 +170732853788,223,0 +170732853837,301,1 +170732853922,234,0 +170732853971,221,0 +170732854019,220,0 +170732854067,220,0 +170732854115,221,0 +170732854163,220,0 +170732854211,220,0 +170732854259,220,0 +170732854307,220,0 +170732854354,221,0 +170732854402,220,0 +170732854452,221,0 +170732854500,221,0 +170732854548,221,0 +170732854595,220,0 +170732854643,221,0 +170732854691,220,0 +170732854741,221,0 +170732854789,222,0 +170732854837,223,0 +170732854884,305,1 +170732854966,239,0 +170732855014,221,0 +170732855063,221,0 +170732855112,221,0 +170732855160,220,0 +170732855208,220,0 +170732855257,221,0 +170732855305,221,0 +170732855353,220,0 +170732855401,220,0 +170732855449,221,0 +170732855497,221,0 +170732855545,220,0 +170732855594,221,0 +170732855642,220,0 +170732855690,220,0 +170732855739,220,0 +170732855789,221,0 +170732855837,221,0 +170732855885,222,0 +170732855933,291,1 +170732856020,235,0 +170732856068,221,0 +170732856116,220,0 +170732856164,220,0 +170732856212,220,0 +170732856260,220,0 +170732856308,220,0 +170732856358,220,0 +170732856406,220,0 +170732856453,220,0 +170732856501,221,0 +170732856551,220,0 +170732856599,220,0 +170732856647,221,0 +170732856695,221,0 +170732856743,220,0 +170732856792,221,0 +170732856842,221,0 +170732856891,221,0 +170732856939,223,0 +170732856989,287,1 +170732857068,238,0 +170732857116,221,0 +170732857164,221,0 +170732857214,221,0 +170732857262,221,0 +170732857310,220,0 +170732857359,221,0 +170732857407,221,0 +170732857457,220,0 +170732857505,220,0 +170732857554,221,0 +170732857604,220,0 +170732857652,220,0 +170732857701,220,0 +170732857749,221,0 +170732857797,221,0 +170732857845,221,0 +170732857895,221,0 +170732857943,220,0 +170732857991,224,0 +170732858038,294,1 +170732858125,236,0 +170732858173,220,0 +170732858221,220,0 +170732858269,221,0 +170732858316,221,0 +170732858364,220,0 +170732858412,220,0 +170732858460,220,0 +170732858508,221,0 +170732858556,220,0 +170732858604,220,0 +170732858652,221,0 +170732858700,220,0 +170732858747,220,0 +170732858795,220,0 +170732858843,220,0 +170732858893,220,0 +170732858943,221,0 +170732858992,221,0 +170732859040,225,0 +170732859088,293,1 +170732859164,237,0 +170732859212,221,0 +170732859260,220,0 +170732859308,221,0 +170732859357,220,0 +170732859405,221,0 +170732859455,220,0 +170732859503,220,0 +170732859551,220,0 +170732859599,221,0 +170732859648,220,0 +170732859696,221,0 +170732859744,221,0 +170732859792,221,0 +170732859842,220,0 +170732859890,220,0 +170732859938,220,0 +170732859986,221,0 +170732860034,221,0 +170732860083,223,0 +170732860131,285,1 +170732860213,234,0 +170732860262,221,0 +170732860312,220,0 +170732860360,220,0 +170732860408,220,0 +170732860457,220,0 +170732860507,220,0 +170732860554,220,0 +170732860604,220,0 +170732860653,219,0 +170732860703,220,0 +170732860751,220,0 +170732860799,220,0 +170732860847,220,0 +170732860895,220,0 +170732860944,220,0 +170732860994,220,0 +170732861042,220,0 +170732861091,220,0 +170732861141,224,0 +170732861189,284,1 +170732861269,237,0 +170732861317,220,0 +170732861365,220,0 +170732861413,220,0 +170732861461,220,0 +170732861509,219,0 +170732861558,219,0 +170732861606,220,0 +170732861656,219,0 +170732861704,220,0 +170732861752,220,0 +170732861800,220,0 +170732861849,219,0 +170732861897,220,0 +170732861947,220,0 +170732861996,220,0 +170732862046,219,0 +170732862093,220,0 +170732862141,220,0 +170732862189,226,0 +170732862237,290,1 +170732862324,230,0 +170732862372,220,0 +170732862422,219,0 +170732862470,220,0 +170732862518,219,0 +170732862567,220,0 +170732862615,220,0 +170732862665,220,0 +170732862714,220,0 +170732862764,220,0 +170732862813,220,0 +170732862861,220,0 +170732862911,220,0 +170732862959,219,0 +170732863008,220,0 +170732863056,220,0 +170732863104,220,0 +170732863152,220,0 +170732863200,221,0 +170732863248,230,0 +170732863298,317,0 +170732863346,234,0 +170732863394,221,0 +170732863442,220,0 +170732863490,220,0 +170732863539,220,0 +170732863587,220,0 +170732863636,220,0 +170732863684,220,0 +170732863732,220,0 +170732863780,219,0 +170732863828,220,0 +170732863876,220,0 +170732863925,220,0 +170732863973,220,0 +170732864021,220,0 +170732864069,220,0 +170732864117,220,0 +170732864165,220,0 +170732864213,220,0 +170732864261,220,0 +170732864308,264,0 +170732864356,290,1 +170732864438,425,0 +170732864486,431,0 +170732864534,427,0 +170732864582,430,0 +170732864630,428,0 +170732864678,430,0 +170732864725,428,0 +170732864773,428,0 +170732864821,431,0 +170732864871,428,0 +170732864919,430,0 +170732864966,429,0 +170732865014,429,0 +170732865062,430,0 +170732865110,429,0 +170732865158,429,0 +170732865206,430,0 +170732865254,429,0 +170732865302,428,0 +170732865350,283,1 +170732865439,242,0 +170732865487,429,0 +170732865536,430,0 +170732865584,431,0 +170732865632,431,0 +170732865680,429,0 +170732865728,431,0 +170732865775,429,0 +170732865823,429,0 +170732865873,432,0 +170732865921,429,0 +170732865970,430,0 +170732866018,429,0 +170732866066,431,0 +170732866116,430,0 +170732866164,430,0 +170732866213,430,0 +170732866261,429,0 +170732866309,431,0 +170732866357,430,0 +170732866405,274,1 +170732866496,239,0 +170732866544,431,0 +170732866592,429,0 +170732866640,430,0 +170732866688,429,0 +170732866736,430,0 +170732866784,429,0 +170732866833,429,0 +170732866881,430,0 +170732866929,431,0 +170732866977,430,0 +170732867025,430,0 +170732867073,430,0 +170732867121,430,0 +170732867169,430,0 +170732867217,430,0 +170732867264,429,0 +170732867314,430,0 +170732867363,430,0 +170732867413,429,0 +170732867462,281,1 +170732867541,239,0 +170732867591,428,0 +170732867639,431,0 +170732867687,429,0 +170732867735,429,0 +170732867784,429,0 +170732867832,431,0 +170732867882,430,0 +170732867929,430,0 +170732867979,428,0 +170732868027,431,0 +170732868075,429,0 +170732868123,430,0 +170732868172,430,0 +170732868220,430,0 +170732868268,430,0 +170732868317,431,0 +170732868365,427,0 +170732868413,430,0 +170732868461,427,0 +170732868509,294,1 +170732868586,247,0 +170732868634,426,0 +170732868682,429,0 +170732868730,431,0 +170732868778,430,0 +170732868826,429,0 +170732868875,430,0 +170732868923,431,0 +170732868971,431,0 +170732869019,430,0 +170732869067,430,0 +170732869115,430,0 +170732869163,430,0 +170732869211,430,0 +170732869260,429,0 +170732869308,431,0 +170732869356,429,0 +170732869405,430,0 +170732869453,430,0 +170732869501,428,0 +170732869550,264,0 +170732869598,302,1 +170732869682,427,0 +170732869729,430,0 +170732869777,430,0 +170732869825,431,0 +170732869875,431,0 +170732869923,431,0 +170732869972,430,0 +170732870021,431,0 +170732870069,428,0 +170732870117,431,0 +170732870165,429,0 +170732870213,430,0 +170732870261,430,0 +170732870309,430,0 +170732870357,430,0 +170732870404,431,0 +170732870452,431,0 +170732870502,429,0 +170732870550,429,0 +170732870598,268,0 +170732870646,293,1 +170732870730,423,0 +170732870780,430,0 +170732870828,430,0 +170732870876,430,0 +170732870925,430,0 +170732870973,430,0 +170732871021,431,0 +170732871071,429,0 +170732871119,430,0 +170732871167,430,0 +170732871215,431,0 +170732871262,430,0 +170732871310,430,0 +170732871358,429,0 +170732871406,429,0 +170732871454,430,0 +170732871502,430,0 +170732871550,430,0 +170732871598,428,0 +170732871646,288,1 +170732871735,231,0 +170732871783,429,0 +170732871831,430,0 +170732871879,428,0 +170732871927,431,0 +170732871975,430,0 +170732872023,431,0 +170732872071,423,0 +170732872119,429,0 +170732872167,430,0 +170732872215,430,0 +170732872262,431,0 +170732872310,430,0 +170732872358,430,0 +170732872406,429,0 +170732872454,429,0 +170732872502,429,0 +170732872550,429,0 +170732872599,426,0 +170732872647,429,0 +170732872697,281,1 +170732872777,284,1 +170732872862,430,0 +170732872912,426,0 +170732872960,431,0 +170732873008,429,0 +170732873057,429,0 +170732873105,431,0 +170732873153,428,0 +170732873201,432,0 +170732873249,429,0 +170732873297,431,0 +170732873345,429,0 +170732873395,430,0 +170732873443,429,0 +170732873491,431,0 +170732873540,429,0 +170732873588,430,0 +170732873637,429,0 +170732873687,429,0 +170732873735,386,0 +170732873783,299,1 +170732873868,421,0 +170732873916,431,0 +170732873964,430,0 +170732874012,430,0 +170732874060,430,0 +170732874108,430,0 +170732874155,430,0 +170732874203,430,0 +170732874251,427,0 +170732874299,430,0 +170732874347,429,0 +170732874395,430,0 +170732874443,431,0 +170732874491,429,0 +170732874538,430,0 +170732874586,431,0 +170732874634,430,0 +170732874682,430,0 +170732874730,429,0 +170732874778,422,0 +170732874828,290,1 +170732874913,419,0 +170732874961,429,0 +170732875010,431,0 +170732875058,430,0 +170732875108,429,0 +170732875156,430,0 +170732875205,430,0 +170732875253,430,0 +170732875301,431,0 +170732875349,430,0 +170732875399,429,0 +170732875447,430,0 +170732875495,431,0 +170732875543,430,0 +170732875591,430,0 +170732875639,427,0 +170732875687,429,0 +170732875735,431,0 +170732875784,432,0 +170732875832,422,0 +170732875880,305,1 +170732875961,418,0 +170732876009,430,0 +170732876057,429,0 +170732876104,430,0 +170732876154,429,0 +170732876203,429,0 +170732876251,430,0 +170732876299,428,0 +170732876348,431,0 +170732876396,429,0 +170732876446,428,0 +170732876494,430,0 +170732876542,430,0 +170732876589,429,0 +170732876637,429,0 +170732876685,428,0 +170732876733,430,0 +170732876781,428,0 +170732876829,431,0 +170732876877,426,0 +170732876925,296,1 +170732877010,404,0 +170732877058,429,0 +170732877106,426,0 +170732877154,429,0 +170732877202,429,0 +170732877250,426,0 +170732877298,429,0 +170732877345,426,0 +170732877395,430,0 +170732877443,427,0 +170732877491,429,0 +170732877539,429,0 +170732877586,428,0 +170732877634,429,0 +170732877682,427,0 +170732877730,429,0 +170732877778,428,0 +170732877826,427,0 +170732877874,429,0 +170732877922,426,0 +170732877970,297,1 +170732878058,413,0 +170732878106,427,0 +170732878154,428,0 +170732878202,428,0 +170732878250,428,0 +170732878298,429,0 +170732878347,428,0 +170732878395,428,0 +170732878445,429,0 +170732878493,427,0 +170732878541,430,0 +170732878590,427,0 +170732878638,428,0 +170732878686,427,0 +170732878734,427,0 +170732878782,430,0 +170732878832,429,0 +170732878880,429,0 +170732878928,426,0 +170732878976,421,0 +170732879025,290,1 +170732879107,415,0 +170732879156,428,0 +170732879204,426,0 +170732879254,429,0 +170732879303,429,0 +170732879353,428,0 +170732879401,428,0 +170732879449,429,0 +170732879502,427,0 +170732879551,426,0 +170732879601,428,0 +170732879649,428,0 +170732879696,426,0 +170732879744,429,0 +170732879792,429,0 +170732879840,429,0 +170732879888,428,0 +170732879936,420,0 +170732879984,426,0 diff --git a/laser_value/0208-04.csv b/laser_value/0208-04.csv new file mode 100644 index 0000000..00929ee --- /dev/null +++ b/laser_value/0208-04.csv @@ -0,0 +1,6806 @@ +timestamp,laser_value,event +170732880033,278,1 +170732880111,293,1 +170732880194,428,0 +170732880244,429,0 +170732880291,428,0 +170732880341,427,0 +170732880389,428,0 +170732880437,422,0 +170732880485,428,0 +170732880533,428,0 +170732880582,428,0 +170732880630,429,0 +170732880680,428,0 +170732880728,428,0 +170732880777,428,0 +170732880827,429,0 +170732880875,427,0 +170732880924,428,0 +170732880972,427,0 +170732881020,428,0 +170732881070,421,0 +170732881118,297,1 +170732881199,407,0 +170732881249,426,0 +170732881298,429,0 +170732881346,427,0 +170732881394,429,0 +170732881442,428,0 +170732881492,428,0 +170732881540,430,0 +170732881588,427,0 +170732881636,429,0 +170732881684,427,0 +170732881733,429,0 +170732881781,428,0 +170732881829,428,0 +170732881877,429,0 +170732881927,428,0 +170732881976,429,0 +170732882024,429,0 +170732882073,427,0 +170732882121,419,0 +170732882169,289,1 +170732882256,416,0 +170732882305,428,0 +170732882353,427,0 +170732882401,428,0 +170732882451,427,0 +170732882500,430,0 +170732882550,429,0 +170732882599,429,0 +170732882647,430,0 +170732882695,428,0 +170732882743,427,0 +170732882792,428,0 +170732882842,429,0 +170732882890,428,0 +170732882939,429,0 +170732882987,428,0 +170732883037,426,0 +170732883085,427,0 +170732883132,426,0 +170732883180,276,1 +170732883260,290,1 +170732883347,428,0 +170732883395,428,0 +170732883443,429,0 +170732883491,427,0 +170732883538,428,0 +170732883586,427,0 +170732883636,427,0 +170732883684,429,0 +170732883733,427,0 +170732883783,428,0 +170732883832,427,0 +170732883880,430,0 +170732883930,429,0 +170732883978,427,0 +170732884027,426,0 +170732884075,430,0 +170732884123,427,0 +170732884171,422,0 +170732884219,421,0 +170732884267,293,1 +170732884351,408,0 +170732884399,429,0 +170732884447,429,0 +170732884497,429,0 +170732884546,429,0 +170732884594,428,0 +170732884642,427,0 +170732884690,428,0 +170732884740,429,0 +170732884788,430,0 +170732884836,429,0 +170732884884,429,0 +170732884932,427,0 +170732884980,429,0 +170732885027,427,0 +170732885075,427,0 +170732885125,428,0 +170732885173,420,0 +170732885221,427,0 +170732885269,423,0 +170732885317,289,1 +170732885408,417,0 +170732885456,428,0 +170732885504,427,0 +170732885552,428,0 +170732885602,429,0 +170732885650,429,0 +170732885698,428,0 +170732885746,428,0 +170732885793,429,0 +170732885843,430,0 +170732885891,426,0 +170732885940,427,0 +170732885990,429,0 +170732886039,428,0 +170732886087,429,0 +170732886137,428,0 +170732886185,427,0 +170732886233,429,0 +170732886282,427,0 +170732886330,286,1 +170732886414,247,0 +170732886463,425,0 +170732886511,429,0 +170732886561,427,0 +170732886610,428,0 +170732886660,429,0 +170732886708,429,0 +170732886756,429,0 +170732886804,429,0 +170732886852,430,0 +170732886899,424,0 +170732886947,428,0 +170732886997,428,0 +170732887045,428,0 +170732887094,428,0 +170732887142,427,0 +170732887190,427,0 +170732887238,429,0 +170732887288,427,0 +170732887337,428,0 +170732887385,270,1 +170732887465,259,0 +170732887513,426,0 +170732887562,428,0 +170732887612,428,0 +170732887660,428,0 +170732887709,428,0 +170732887757,428,0 +170732887807,430,0 +170732887855,430,0 +170732887903,429,0 +170732887952,429,0 +170732888000,426,0 +170732888048,429,0 +170732888096,429,0 +170732888144,428,0 +170732888194,427,0 +170732888242,427,0 +170732888291,429,0 +170732888339,429,0 +170732888388,429,0 +170732888438,248,0 +170732888487,250,0 +170732888537,231,0 +170732888586,228,0 +170732888639,229,0 +170732888692,228,0 +170732888744,228,0 +170732888797,229,0 +170732888850,228,0 +170732888903,228,0 +170732888955,228,0 +170732889008,227,0 +170732889061,228,0 +170732889114,227,0 +170732889166,228,0 +170732889219,228,0 +170732889272,228,0 +170732889324,229,0 +170732889377,228,0 +170732889430,230,0 +170732889483,266,0 +170732889531,290,1 +170732889613,230,0 +170732889665,228,0 +170732889718,228,0 +170732889771,229,0 +170732889823,229,0 +170732889876,229,0 +170732889929,228,0 +170732889982,229,0 +170732890034,228,0 +170732890087,229,0 +170732890140,228,0 +170732890192,229,0 +170732890245,228,0 +170732890298,228,0 +170732890351,228,0 +170732890403,229,0 +170732890456,229,0 +170732890509,239,0 +170732890562,289,1 +170732890645,237,0 +170732890693,229,0 +170732890745,228,0 +170732890798,228,0 +170732890851,228,0 +170732890904,229,0 +170732890956,228,0 +170732891009,228,0 +170732891062,229,0 +170732891115,228,0 +170732891167,229,0 +170732891220,228,0 +170732891273,228,0 +170732891326,228,0 +170732891378,228,0 +170732891431,228,0 +170732891484,229,0 +170732891537,230,0 +170732891589,287,1 +170732891673,236,0 +170732891723,229,0 +170732891775,229,0 +170732891828,228,0 +170732891881,229,0 +170732891934,228,0 +170732891987,228,0 +170732892039,229,0 +170732892092,228,0 +170732892140,228,0 +170732892193,228,0 +170732892246,229,0 +170732892299,227,0 +170732892351,228,0 +170732892404,228,0 +170732892457,228,0 +170732892510,228,0 +170732892562,229,0 +170732892615,250,0 +170732892668,262,0 +170732892716,233,0 +170732892764,230,0 +170732892812,229,0 +170732892865,229,0 +170732892917,229,0 +170732892970,229,0 +170732893023,229,0 +170732893076,229,0 +170732893128,229,0 +170732893181,228,0 +170732893229,229,0 +170732893282,229,0 +170732893334,229,0 +170732893387,229,0 +170732893440,228,0 +170732893493,228,0 +170732893545,229,0 +170732893598,229,0 +170732893651,233,0 +170732893704,291,1 +170732893786,235,0 +170732893834,232,0 +170732893887,231,0 +170732893939,232,0 +170732893997,231,0 +170732894054,230,0 +170732894107,232,0 +170732894160,231,0 +170732894218,231,0 +170732894270,232,0 +170732894323,231,0 +170732894376,231,0 +170732894428,231,0 +170732894486,232,0 +170732894539,231,0 +170732894591,231,0 +170732894644,231,0 +170732894697,235,0 +170732894750,262,0 +170732894799,259,0 +170732894849,233,0 +170732894901,231,0 +170732894959,231,0 +170732895016,231,0 +170732895069,231,0 +170732895122,231,0 +170732895175,231,0 +170732895227,231,0 +170732895280,232,0 +170732895333,231,0 +170732895386,231,0 +170732895438,231,0 +170732895496,231,0 +170732895548,231,0 +170732895601,232,0 +170732895654,231,0 +170732895706,232,0 +170732895759,248,0 +170732895812,264,0 +170732895860,238,0 +170732895909,232,0 +170732895962,232,0 +170732896015,231,0 +170732896067,231,0 +170732896120,232,0 +170732896173,231,0 +170732896226,231,0 +170732896278,232,0 +170732896331,231,0 +170732896384,231,0 +170732896436,231,0 +170732896489,231,0 +170732896542,231,0 +170732896595,232,0 +170732896647,231,0 +170732896705,231,0 +170732896757,232,0 +170732896810,269,0 +170732896860,291,1 +170732896946,232,0 +170732896999,231,0 +170732897052,231,0 +170732897104,231,0 +170732897157,232,0 +170732897210,231,0 +170732897263,231,0 +170732897320,231,0 +170732897373,231,0 +170732897426,231,0 +170732897478,231,0 +170732897531,231,0 +170732897584,231,0 +170732897637,231,0 +170732897689,231,0 +170732897742,231,0 +170732897799,232,0 +170732897857,246,0 +170732897910,290,1 +170732897996,234,0 +170732898049,231,0 +170732898106,231,0 +170732898164,231,0 +170732898222,231,0 +170732898274,231,0 +170732898327,231,0 +170732898380,231,0 +170732898433,231,0 +170732898485,231,0 +170732898543,231,0 +170732898596,232,0 +170732898653,232,0 +170732898706,232,0 +170732898759,231,0 +170732898816,231,0 +170732898874,233,0 +170732898927,278,1 +170732899013,241,0 +170732899061,233,0 +170732899114,232,0 +170732899167,232,0 +170732899224,232,0 +170732899277,232,0 +170732899330,232,0 +170732899383,232,0 +170732899435,233,0 +170732899488,232,0 +170732899541,231,0 +170732899594,231,0 +170732899646,232,0 +170732899704,231,0 +170732899757,232,0 +170732899809,232,0 +170732899862,232,0 +170732899915,233,0 +170732899972,284,1 +170732900054,229,0 +170732900104,233,0 +170732900157,232,0 +170732900209,231,0 +170732900262,232,0 +170732900320,232,0 +170732900372,232,0 +170732900430,231,0 +170732900483,232,0 +170732900535,232,0 +170732900588,232,0 +170732900641,232,0 +170732900694,231,0 +170732900746,232,0 +170732900799,232,0 +170732900852,231,0 +170732900904,232,0 +170732900957,233,0 +170732901015,282,1 +170732901098,228,0 +170732901146,233,0 +170732901199,232,0 +170732901252,231,0 +170732901309,231,0 +170732901367,232,0 +170732901419,231,0 +170732901472,232,0 +170732901530,232,0 +170732901587,231,0 +170732901640,231,0 +170732901693,232,0 +170732901745,232,0 +170732901798,232,0 +170732901851,232,0 +170732901904,232,0 +170732901956,231,0 +170732902009,233,0 +170732902062,285,1 +170732902150,231,0 +170732902199,232,0 +170732902252,232,0 +170732902305,231,0 +170732902357,232,0 +170732902410,231,0 +170732902463,232,0 +170732902516,232,0 +170732902568,231,0 +170732902626,231,0 +170732902678,232,0 +170732902731,231,0 +170732902784,231,0 +170732902836,231,0 +170732902889,232,0 +170732902947,232,0 +170732903004,233,0 +170732903057,234,0 +170732903114,269,0 +170732903162,286,1 +170732903241,232,0 +170732903294,231,0 +170732903347,232,0 +170732903399,231,0 +170732903457,231,0 +170732903510,231,0 +170732903562,231,0 +170732903615,231,0 +170732903668,232,0 +170732903721,232,0 +170732903773,232,0 +170732903826,231,0 +170732903879,232,0 +170732903932,231,0 +170732903984,232,0 +170732904037,231,0 +170732904090,232,0 +170732904143,246,0 +170732904195,293,1 +170732904280,238,0 +170732904328,232,0 +170732904380,231,0 +170732904433,231,0 +170732904486,232,0 +170732904539,231,0 +170732904591,231,0 +170732904649,232,0 +170732904706,231,0 +170732904764,231,0 +170732904817,231,0 +170732904869,231,0 +170732904927,232,0 +170732904980,231,0 +170732905037,232,0 +170732905090,232,0 +170732905143,233,0 +170732905195,263,0 +170732905248,291,1 +170732905337,233,0 +170732905390,232,0 +170732905442,231,0 +170732905495,232,0 +170732905548,231,0 +170732905600,232,0 +170732905653,231,0 +170732905711,231,0 +170732905763,231,0 +170732905816,231,0 +170732905873,232,0 +170732905926,232,0 +170732905979,231,0 +170732906031,231,0 +170732906084,232,0 +170732906137,231,0 +170732906189,233,0 +170732906247,258,0 +170732906300,301,1 +170732906388,233,0 +170732906440,232,0 +170732906493,231,0 +170732906546,231,0 +170732906599,231,0 +170732906656,231,0 +170732906709,231,0 +170732906762,231,0 +170732906819,232,0 +170732906872,232,0 +170732906925,231,0 +170732906982,231,0 +170732907035,231,0 +170732907088,232,0 +170732907140,232,0 +170732907193,232,0 +170732907246,232,0 +170732907303,293,1 +170732907387,250,0 +170732907435,233,0 +170732907487,232,0 +170732907540,231,0 +170732907593,231,0 +170732907645,232,0 +170732907698,231,0 +170732907751,231,0 +170732907804,231,0 +170732907856,232,0 +170732907909,231,0 +170732907962,231,0 +170732908019,231,0 +170732908077,231,0 +170732908134,231,0 +170732908192,231,0 +170732908244,232,0 +170732908297,233,0 +170732908350,305,1 +170732908429,294,1 +170732908512,232,0 +170732908564,231,0 +170732908617,231,0 +170732908670,231,0 +170732908722,232,0 +170732908775,231,0 +170732908833,232,0 +170732908885,232,0 +170732908938,231,0 +170732908991,232,0 +170732909044,231,0 +170732909101,232,0 +170732909154,232,0 +170732909207,231,0 +170732909259,231,0 +170732909312,232,0 +170732909365,235,0 +170732909422,285,1 +170732909507,243,0 +170732909556,232,0 +170732909609,232,0 +170732909666,232,0 +170732909724,232,0 +170732909776,232,0 +170732909829,231,0 +170732909887,232,0 +170732909939,232,0 +170732909997,232,0 +170732910049,232,0 +170732910107,231,0 +170732910160,232,0 +170732910217,231,0 +170732910270,232,0 +170732910322,232,0 +170732910375,232,0 +170732910428,237,0 +170732910481,300,1 +170732910569,239,0 +170732910621,233,0 +170732910674,232,0 +170732910727,232,0 +170732910780,231,0 +170732910832,232,0 +170732910890,232,0 +170732910943,232,0 +170732911000,231,0 +170732911053,231,0 +170732911106,232,0 +170732911163,232,0 +170732911216,232,0 +170732911269,232,0 +170732911326,232,0 +170732911379,232,0 +170732911432,233,0 +170732911489,289,1 +170732911580,231,0 +170732911629,232,0 +170732911682,232,0 +170732911740,231,0 +170732911797,231,0 +170732911855,232,0 +170732911912,231,0 +170732911965,231,0 +170732912018,231,0 +170732912071,231,0 +170732912123,232,0 +170732912176,232,0 +170732912234,232,0 +170732912286,231,0 +170732912339,231,0 +170732912392,232,0 +170732912445,233,0 +170732912497,234,0 +170732912550,294,1 +170732912634,236,0 +170732912684,233,0 +170732912737,231,0 +170732912794,232,0 +170732912852,231,0 +170732912905,232,0 +170732912957,231,0 +170732913010,231,0 +170732913063,231,0 +170732913116,232,0 +170732913168,232,0 +170732913221,232,0 +170732913274,232,0 +170732913327,232,0 +170732913379,231,0 +170732913437,232,0 +170732913490,232,0 +170732913547,234,0 +170732913600,267,0 +170732913648,274,1 +170732913731,233,0 +170732913789,232,0 +170732913846,232,0 +170732913904,232,0 +170732913961,232,0 +170732914014,233,0 +170732914067,232,0 +170732914124,233,0 +170732914182,232,0 +170732914240,232,0 +170732914297,232,0 +170732914355,232,0 +170732914412,232,0 +170732914465,232,0 +170732914518,232,0 +170732914570,233,0 +170732914623,237,0 +170732914676,297,1 +170732914762,243,0 +170732914810,234,0 +170732914868,233,0 +170732914925,234,0 +170732914978,233,0 +170732915036,233,0 +170732915093,233,0 +170732915146,232,0 +170732915199,232,0 +170732915256,233,0 +170732915314,233,0 +170732915366,233,0 +170732915424,232,0 +170732915481,233,0 +170732915539,233,0 +170732915596,232,0 +170732915654,236,0 +170732915711,283,1 +170732915795,248,0 +170732915843,233,0 +170732915900,232,0 +170732915958,233,0 +170732916015,233,0 +170732916073,232,0 +170732916130,233,0 +170732916188,233,0 +170732916245,233,0 +170732916303,233,0 +170732916360,232,0 +170732916418,232,0 +170732916475,233,0 +170732916533,233,0 +170732916590,233,0 +170732916648,233,0 +170732916705,233,0 +170732916763,234,0 +170732916815,233,0 +170732916873,233,0 +170732916931,234,0 +170732916988,232,0 +170732917046,233,0 +170732917103,233,0 +170732917161,234,0 +170732917218,236,0 +170732917276,285,1 +170732917366,241,0 +170732917415,233,0 +170732917473,233,0 +170732917526,233,0 +170732917583,233,0 +170732917641,234,0 +170732917698,233,0 +170732917751,233,0 +170732917809,233,0 +170732917866,233,0 +170732917924,233,0 +170732917981,233,0 +170732918039,233,0 +170732918096,233,0 +170732918154,233,0 +170732918207,233,0 +170732918264,237,0 +170732918317,285,1 +170732918405,246,0 +170732918453,233,0 +170732918510,233,0 +170732918568,233,0 +170732918621,232,0 +170732918678,232,0 +170732918735,233,0 +170732918788,232,0 +170732918846,234,0 +170732918903,232,0 +170732918961,233,0 +170732919018,233,0 +170732919075,233,0 +170732919133,233,0 +170732919190,233,0 +170732919248,232,0 +170732919305,236,0 +170732919363,281,1 +170732919448,241,0 +170732919496,233,0 +170732919548,233,0 +170732919606,233,0 +170732919663,233,0 +170732919716,233,0 +170732919774,233,0 +170732919831,233,0 +170732919884,233,0 +170732919942,233,0 +170732919999,233,0 +170732920057,232,0 +170732920114,232,0 +170732920172,232,0 +170732920224,233,0 +170732920282,233,0 +170732920339,234,0 +170732920397,275,1 +170732920479,276,1 +170732920565,233,0 +170732920622,232,0 +170732920675,233,0 +170732920733,232,0 +170732920790,233,0 +170732920843,232,0 +170732920900,232,0 +170732920953,233,0 +170732921010,232,0 +170732921068,233,0 +170732921125,233,0 +170732921183,232,0 +170732921240,233,0 +170732921298,233,0 +170732921356,232,0 +170732921408,234,0 +170732921461,288,1 +170732921550,242,0 +170732921599,232,0 +170732921652,231,0 +170732921705,231,0 +170732921757,231,0 +170732921810,231,0 +170732921868,232,0 +170732921920,231,0 +170732921978,231,0 +170732922031,232,0 +170732922083,231,0 +170732922136,231,0 +170732922189,231,0 +170732922246,231,0 +170732922299,231,0 +170732922357,232,0 +170732922410,231,0 +170732922462,235,0 +170732922515,292,1 +170732922598,242,0 +170732922648,232,0 +170732922700,231,0 +170732922753,232,0 +170732922806,231,0 +170732922863,231,0 +170732922916,231,0 +170732922974,231,0 +170732923026,231,0 +170732923079,231,0 +170732923132,231,0 +170732923185,232,0 +170732923242,232,0 +170732923300,231,0 +170732923352,231,0 +170732923405,232,0 +170732923463,232,0 +170732923515,234,0 +170732923573,294,1 +170732923658,238,0 +170732923706,232,0 +170732923759,232,0 +170732923812,232,0 +170732923869,232,0 +170732923922,231,0 +170732923975,231,0 +170732924027,232,0 +170732924080,232,0 +170732924138,231,0 +170732924190,232,0 +170732924243,232,0 +170732924296,233,0 +170732924353,231,0 +170732924411,232,0 +170732924464,232,0 +170732924521,232,0 +170732924574,259,0 +170732924626,287,1 +170732924714,233,0 +170732924766,232,0 +170732924824,232,0 +170732924877,232,0 +170732924929,233,0 +170732924982,232,0 +170732925035,232,0 +170732925088,232,0 +170732925145,232,0 +170732925198,232,0 +170732925251,231,0 +170732925303,232,0 +170732925361,231,0 +170732925414,231,0 +170732925471,232,0 +170732925524,232,0 +170732925577,233,0 +170732925629,285,1 +170732925715,279,1 +170732925794,233,0 +170732925847,233,0 +170732925905,231,0 +170732925962,231,0 +170732926020,232,0 +170732926077,232,0 +170732926130,232,0 +170732926183,233,0 +170732926235,231,0 +170732926288,232,0 +170732926346,232,0 +170732926398,231,0 +170732926451,231,0 +170732926504,232,0 +170732926557,231,0 +170732926609,231,0 +170732926662,236,0 +170732926720,300,1 +170732926801,243,0 +170732926849,231,0 +170732926901,231,0 +170732926959,232,0 +170732927012,232,0 +170732927069,230,0 +170732927122,232,0 +170732927175,231,0 +170732927227,231,0 +170732927280,232,0 +170732927338,231,0 +170732927391,232,0 +170732927443,232,0 +170732927501,231,0 +170732927553,232,0 +170732927611,232,0 +170732927664,232,0 +170732927716,237,0 +170732927769,294,1 +170732927856,244,0 +170732927904,232,0 +170732927957,232,0 +170732928010,232,0 +170732928062,232,0 +170732928115,232,0 +170732928168,231,0 +170732928221,231,0 +170732928278,231,0 +170732928331,231,0 +170732928389,231,0 +170732928447,231,0 +170732928499,232,0 +170732928557,232,0 +170732928610,232,0 +170732928662,232,0 +170732928715,232,0 +170732928768,240,0 +170732928825,293,1 +170732928908,237,0 +170732928955,232,0 +170732929008,231,0 +170732929066,232,0 +170732929123,231,0 +170732929176,231,0 +170732929229,232,0 +170732929282,232,0 +170732929339,231,0 +170732929392,231,0 +170732929445,231,0 +170732929497,231,0 +170732929555,232,0 +170732929612,231,0 +170732929665,231,0 +170732929722,231,0 +170732929780,232,0 +170732929833,263,0 +170732929880,297,1 +170732929970,234,0 +170732930023,232,0 +170732930081,232,0 +170732930138,231,0 +170732930191,231,0 +170732930244,232,0 +170732930301,231,0 +170732930359,232,0 +170732930411,231,0 +170732930464,232,0 +170732930522,232,0 +170732930579,231,0 +170732930632,232,0 +170732930684,231,0 +170732930737,232,0 +170732930790,232,0 +170732930847,235,0 +170732930905,305,1 +170732930987,245,0 +170732931035,232,0 +170732931092,232,0 +170732931150,232,0 +170732931203,232,0 +170732931255,232,0 +170732931308,231,0 +170732931366,232,0 +170732931418,231,0 +170732931476,232,0 +170732931533,232,0 +170732931586,231,0 +170732931639,231,0 +170732931692,232,0 +170732931749,232,0 +170732931807,232,0 +170732931864,232,0 +170732931917,254,0 +170732931975,289,1 +170732932062,232,0 +170732932114,231,0 +170732932167,232,0 +170732932220,232,0 +170732932272,232,0 +170732932325,231,0 +170732932378,231,0 +170732932431,232,0 +170732932483,232,0 +170732932536,231,0 +170732932589,232,0 +170732932641,232,0 +170732932694,232,0 +170732932752,231,0 +170732932804,232,0 +170732932857,231,0 +170732932910,233,0 +170732932963,237,0 +170732933015,298,1 +170732933102,239,0 +170732933150,232,0 +170732933203,232,0 +170732933256,231,0 +170732933314,232,0 +170732933371,232,0 +170732933424,232,0 +170732933476,232,0 +170732933529,232,0 +170732933587,232,0 +170732933639,232,0 +170732933692,231,0 +170732933745,232,0 +170732933802,232,0 +170732933855,232,0 +170732933908,232,0 +170732933966,233,0 +170732934018,262,0 +170732934068,282,1 +170732934151,237,0 +170732934201,232,0 +170732934254,231,0 +170732934311,230,0 +170732934364,232,0 +170732934417,232,0 +170732934474,231,0 +170732934532,231,0 +170732934585,231,0 +170732934638,232,0 +170732934690,232,0 +170732934748,231,0 +170732934805,232,0 +170732934863,232,0 +170732934916,232,0 +170732934968,232,0 +170732935026,233,0 +170732935079,291,1 +170732935166,243,0 +170732935214,233,0 +170732935266,232,0 +170732935319,231,0 +170732935372,231,0 +170732935425,231,0 +170732935482,231,0 +170732935535,232,0 +170732935587,232,0 +170732935640,231,0 +170732935693,231,0 +170732935750,232,0 +170732935803,232,0 +170732935861,232,0 +170732935913,232,0 +170732935966,232,0 +170732936024,231,0 +170732936077,232,0 +170732936134,273,1 +170732936221,231,0 +170732936271,232,0 +170732936323,233,0 +170732936381,232,0 +170732936439,231,0 +170732936491,231,0 +170732936544,231,0 +170732936602,231,0 +170732936654,231,0 +170732936712,231,0 +170732936765,231,0 +170732936822,231,0 +170732936875,231,0 +170732936928,231,0 +170732936980,232,0 +170732937038,231,0 +170732937091,232,0 +170732937143,234,0 +170732937201,304,1 +170732937281,245,0 +170732937329,232,0 +170732937382,231,0 +170732937435,232,0 +170732937488,232,0 +170732937540,231,0 +170732937598,232,0 +170732937651,232,0 +170732937703,231,0 +170732937756,232,0 +170732937809,231,0 +170732937866,232,0 +170732937924,231,0 +170732937977,231,0 +170732938029,231,0 +170732938082,231,0 +170732938135,233,0 +170732938192,236,0 +170732938250,304,1 +170732938333,249,0 +170732938381,232,0 +170732938439,233,0 +170732938496,232,0 +170732938549,232,0 +170732938606,232,0 +170732938664,232,0 +170732938717,232,0 +170732938769,232,0 +170732938827,232,0 +170732938884,232,0 +170732938942,232,0 +170732938999,232,0 +170732939052,232,0 +170732939109,232,0 +170732939167,232,0 +170732939224,234,0 +170732939282,300,1 +170732939374,245,0 +170732939424,233,0 +170732939476,232,0 +170732939534,232,0 +170732939591,232,0 +170732939649,233,0 +170732939706,232,0 +170732939764,232,0 +170732939821,232,0 +170732939879,232,0 +170732939931,232,0 +170732939989,232,0 +170732940046,232,0 +170732940104,232,0 +170732940161,232,0 +170732940219,233,0 +170732940271,234,0 +170732940329,289,1 +170732940410,231,0 +170732940458,234,0 +170732940510,233,0 +170732940568,233,0 +170732940625,233,0 +170732940683,233,0 +170732940740,233,0 +170732940798,232,0 +170732940850,233,0 +170732940908,232,0 +170732940965,233,0 +170732941018,232,0 +170732941075,232,0 +170732941128,232,0 +170732941185,233,0 +170732941243,232,0 +170732941300,232,0 +170732941353,265,0 +170732941406,299,1 +170732941494,235,0 +170732941542,232,0 +170732941599,233,0 +170732941657,233,0 +170732941714,232,0 +170732941772,232,0 +170732941829,233,0 +170732941882,232,0 +170732941939,233,0 +170732941992,233,0 +170732942045,233,0 +170732942097,232,0 +170732942155,232,0 +170732942212,232,0 +170732942270,232,0 +170732942327,232,0 +170732942380,234,0 +170732942437,296,1 +170732942524,232,0 +170732942574,233,0 +170732942626,232,0 +170732942679,233,0 +170732942732,233,0 +170732942789,233,0 +170732942847,232,0 +170732942904,233,0 +170732942957,233,0 +170732943010,233,0 +170732943062,232,0 +170732943115,232,0 +170732943172,232,0 +170732943230,232,0 +170732943288,232,0 +170732943345,233,0 +170732943398,233,0 +170732943455,252,0 +170732943508,295,1 +170732943586,242,0 +170732943634,233,0 +170732943687,233,0 +170732943740,233,0 +170732943797,232,0 +170732943855,232,0 +170732943912,232,0 +170732943965,232,0 +170732944023,232,0 +170732944080,232,0 +170732944138,232,0 +170732944195,232,0 +170732944253,232,0 +170732944310,232,0 +170732944368,232,0 +170732944425,232,0 +170732944483,235,0 +170732944535,293,1 +170732944623,244,0 +170732944671,233,0 +170732944723,232,0 +170732944781,232,0 +170732944834,233,0 +170732944886,233,0 +170732944939,232,0 +170732944992,233,0 +170732945045,232,0 +170732945102,232,0 +170732945160,232,0 +170732945217,233,0 +170732945274,233,0 +170732945332,233,0 +170732945389,232,0 +170732945447,233,0 +170732945504,233,0 +170732945557,267,0 +170732945607,301,1 +170732945691,235,0 +170732945744,233,0 +170732945802,232,0 +170732945854,232,0 +170732945912,232,0 +170732945970,232,0 +170732946027,233,0 +170732946085,232,0 +170732946137,233,0 +170732946190,232,0 +170732946248,232,0 +170732946300,232,0 +170732946358,231,0 +170732946411,232,0 +170732946468,233,0 +170732946521,233,0 +170732946574,236,0 +170732946631,279,1 +170732946717,246,0 +170732946767,233,0 +170732946824,232,0 +170732946882,233,0 +170732946935,233,0 +170732946992,232,0 +170732947050,233,0 +170732947103,232,0 +170732947160,232,0 +170732947218,232,0 +170732947270,232,0 +170732947323,232,0 +170732947380,232,0 +170732947438,232,0 +170732947495,232,0 +170732947553,233,0 +170732947610,235,0 +170732947663,287,1 +170732947753,229,0 +170732947803,234,0 +170732947856,232,0 +170732947908,231,0 +170732947966,232,0 +170732948024,232,0 +170732948081,233,0 +170732948134,232,0 +170732948191,233,0 +170732948249,233,0 +170732948302,232,0 +170732948354,232,0 +170732948412,232,0 +170732948465,232,0 +170732948522,232,0 +170732948580,232,0 +170732948637,233,0 +170732948695,246,0 +170732948747,281,1 +170732948831,241,0 +170732948879,233,0 +170732948931,232,0 +170732948989,233,0 +170732949046,233,0 +170732949104,232,0 +170732949161,232,0 +170732949214,232,0 +170732949271,232,0 +170732949329,233,0 +170732949381,233,0 +170732949439,233,0 +170732949492,232,0 +170732949549,233,0 +170732949602,232,0 +170732949659,233,0 +170732949717,234,0 +170732949769,281,1 +170732949853,229,0 +170732949902,233,0 +170732949955,232,0 +170732950012,232,0 +170732950070,232,0 +170732950127,232,0 +170732950185,233,0 +170732950238,233,0 +170732950290,232,0 +170732950348,232,0 +170732950401,231,0 +170732950458,232,0 +170732950511,233,0 +170732950564,232,0 +170732950616,232,0 +170732950674,233,0 +170732950731,233,0 +170732950789,238,0 +170732950842,277,1 +170732950927,239,0 +170732950975,232,0 +170732951033,231,0 +170732951086,232,0 +170732951143,233,0 +170732951196,233,0 +170732951249,231,0 +170732951306,232,0 +170732951359,232,0 +170732951412,232,0 +170732951465,232,0 +170732951522,232,0 +170732951575,232,0 +170732951632,232,0 +170732951685,232,0 +170732951738,232,0 +170732951796,234,0 +170732951853,304,1 +170732951938,245,0 +170732951986,234,0 +170732952039,233,0 +170732952096,233,0 +170732952149,232,0 +170732952202,232,0 +170732952259,232,0 +170732952317,231,0 +170732952375,233,0 +170732952432,232,0 +170732952489,232,0 +170732952547,232,0 +170732952605,232,0 +170732952662,232,0 +170732952720,232,0 +170732952777,232,0 +170732952835,232,0 +170732952892,239,0 +170732952950,304,1 +170732953036,239,0 +170732953084,234,0 +170732953137,233,0 +170732953189,233,0 +170732953247,233,0 +170732953304,232,0 +170732953362,233,0 +170732953419,232,0 +170732953477,234,0 +170732953535,233,0 +170732953592,232,0 +170732953650,233,0 +170732953707,233,0 +170732953765,233,0 +170732953822,233,0 +170732953880,234,0 +170732953937,264,0 +170732953985,303,1 +170732954070,238,0 +170732954122,233,0 +170732954180,233,0 +170732954237,234,0 +170732954290,233,0 +170732954348,234,0 +170732954405,233,0 +170732954463,233,0 +170732954520,233,0 +170732954573,232,0 +170732954626,233,0 +170732954683,233,0 +170732954741,233,0 +170732954798,233,0 +170732954856,233,0 +170732954913,234,0 +170732954971,238,0 +170732955029,291,1 +170732955115,243,0 +170732955163,234,0 +170732955216,232,0 +170732955273,234,0 +170732955331,233,0 +170732955389,233,0 +170732955446,234,0 +170732955499,233,0 +170732955556,233,0 +170732955614,233,0 +170732955671,233,0 +170732955729,232,0 +170732955786,233,0 +170732955839,232,0 +170732955897,233,0 +170732955954,233,0 +170732956012,238,0 +170732956070,305,1 +170732956157,243,0 +170732956205,233,0 +170732956263,234,0 +170732956320,234,0 +170732956378,234,0 +170732956435,232,0 +170732956493,232,0 +170732956551,233,0 +170732956608,232,0 +170732956661,232,0 +170732956718,233,0 +170732956776,233,0 +170732956833,233,0 +170732956891,233,0 +170732956948,233,0 +170732957006,233,0 +170732957064,237,0 +170732957121,311,0 +170732957169,311,0 +170732957217,241,0 +170732957267,234,0 +170732957329,233,0 +170732957382,233,0 +170732957439,233,0 +170732957492,234,0 +170732957549,233,0 +170732957607,233,0 +170732957664,233,0 +170732957722,233,0 +170732957780,233,0 +170732957837,232,0 +170732957895,233,0 +170732957952,233,0 +170732958010,233,0 +170732958062,234,0 +170732958120,238,0 +170732958173,302,1 +170732958254,243,0 +170732958302,234,0 +170732958360,234,0 +170732958418,232,0 +170732958475,233,0 +170732958533,233,0 +170732958590,233,0 +170732958648,233,0 +170732958705,232,0 +170732958763,233,0 +170732958815,233,0 +170732958873,233,0 +170732958931,233,0 +170732958988,233,0 +170732959046,233,0 +170732959103,233,0 +170732959156,236,0 +170732959213,279,1 +170732959294,247,0 +170732959344,234,0 +170732959401,232,0 +170732959459,233,0 +170732959516,232,0 +170732959573,232,0 +170732959631,233,0 +170732959689,233,0 +170732959741,233,0 +170732959799,233,0 +170732959856,233,0 +170732959914,232,0 +170732959967,232,0 +170732960024,232,0 +170732960082,233,0 +170732960139,233,0 +170732960197,235,0 +170732960249,282,1 +170732960337,229,0 +170732960386,234,0 +170732960444,233,0 +170732960497,232,0 +170732960549,232,0 +170732960607,232,0 +170732960660,232,0 +170732960717,232,0 +170732960775,233,0 +170732960832,232,0 +170732960885,233,0 +170732960942,232,0 +170732961000,232,0 +170732961053,233,0 +170732961105,233,0 +170732961158,233,0 +170732961216,233,0 +170732961268,238,0 +170732961321,307,1 +170732961406,242,0 +170732961456,232,0 +170732961513,233,0 +170732961571,233,0 +170732961624,232,0 +170732961676,233,0 +170732961734,232,0 +170732961787,232,0 +170732961844,232,0 +170732961897,232,0 +170732961955,233,0 +170732962007,231,0 +170732962060,232,0 +170732962117,232,0 +170732962170,232,0 +170732962223,232,0 +170732962280,234,0 +170732962338,288,1 +170732962417,256,0 +170732962465,234,0 +170732962513,231,0 +170732962566,231,0 +170732962618,231,0 +170732962671,230,0 +170732962724,230,0 +170732962776,230,0 +170732962829,231,0 +170732962882,230,0 +170732962935,230,0 +170732962987,230,0 +170732963040,231,0 +170732963093,231,0 +170732963145,230,0 +170732963198,230,0 +170732963251,231,0 +170732963304,231,0 +170732963356,233,0 +170732963409,297,1 +170732963497,243,0 +170732963545,233,0 +170732963598,232,0 +170732963656,233,0 +170732963708,232,0 +170732963761,233,0 +170732963814,233,0 +170732963871,232,0 +170732963924,233,0 +170732963977,233,0 +170732964029,233,0 +170732964087,232,0 +170732964145,232,0 +170732964197,232,0 +170732964255,232,0 +170732964308,232,0 +170732964365,233,0 +170732964418,243,0 +170732964475,304,1 +170732964561,240,0 +170732964609,233,0 +170732964667,232,0 +170732964724,232,0 +170732964782,232,0 +170732964839,233,0 +170732964892,233,0 +170732964950,234,0 +170732965007,234,0 +170732965060,233,0 +170732965118,233,0 +170732965175,233,0 +170732965233,234,0 +170732965285,234,0 +170732965343,233,0 +170732965401,234,0 +170732965458,236,0 +170732965516,288,1 +170732965598,249,0 +170732965646,233,0 +170732965704,233,0 +170732965761,233,0 +170732965819,233,0 +170732965876,233,0 +170732965934,233,0 +170732965987,233,0 +170732966044,233,0 +170732966102,233,0 +170732966159,233,0 +170732966217,233,0 +170732966274,233,0 +170732966332,234,0 +170732966389,234,0 +170732966447,234,0 +170732966505,238,0 +170732966562,285,1 +170732966647,242,0 +170732966695,234,0 +170732966752,233,0 +170732966810,233,0 +170732966863,233,0 +170732966920,233,0 +170732966978,233,0 +170732967035,233,0 +170732967093,232,0 +170732967150,233,0 +170732967203,233,0 +170732967256,233,0 +170732967314,233,0 +170732967371,233,0 +170732967429,234,0 +170732967486,234,0 +170732967539,236,0 +170732967597,291,1 +170732967677,231,0 +170732967725,234,0 +170732967783,233,0 +170732967840,233,0 +170732967898,234,0 +170732967955,233,0 +170732968008,234,0 +170732968066,234,0 +170732968123,233,0 +170732968176,232,0 +170732968233,234,0 +170732968286,233,0 +170732968344,233,0 +170732968396,233,0 +170732968454,233,0 +170732968512,233,0 +170732968569,234,0 +170732968627,274,1 +170732968713,281,1 +170732968795,234,0 +170732968852,234,0 +170732968910,233,0 +170732968967,233,0 +170732969025,234,0 +170732969082,233,0 +170732969140,233,0 +170732969193,233,0 +170732969250,233,0 +170732969308,233,0 +170732969365,233,0 +170732969423,233,0 +170732969476,233,0 +170732969533,234,0 +170732969591,233,0 +170732969648,238,0 +170732969706,277,1 +170732969789,243,0 +170732969837,234,0 +170732969894,234,0 +170732969947,234,0 +170732970005,233,0 +170732970062,233,0 +170732970120,234,0 +170732970177,233,0 +170732970235,232,0 +170732970292,233,0 +170732970350,234,0 +170732970412,234,0 +170732970470,234,0 +170732970527,234,0 +170732970585,234,0 +170732970642,234,0 +170732970700,240,0 +170732970757,301,1 +170732970844,242,0 +170732970892,234,0 +170732970949,233,0 +170732971007,234,0 +170732971064,234,0 +170732971122,234,0 +170732971175,233,0 +170732971227,233,0 +170732971290,233,0 +170732971347,233,0 +170732971410,233,0 +170732971462,234,0 +170732971520,233,0 +170732971577,233,0 +170732971635,234,0 +170732971693,234,0 +170732971750,236,0 +170732971803,292,1 +170732971895,251,0 +170732971942,234,0 +170732971995,234,0 +170732972053,233,0 +170732972110,232,0 +170732972163,232,0 +170732972220,233,0 +170732972278,234,0 +170732972335,233,0 +170732972388,233,0 +170732972445,233,0 +170732972503,233,0 +170732972560,233,0 +170732972618,233,0 +170732972675,233,0 +170732972733,233,0 +170732972790,236,0 +170732972848,296,1 +170732972932,234,0 +170732972980,234,0 +170732973038,233,0 +170732973095,233,0 +170732973153,233,0 +170732973210,233,0 +170732973268,233,0 +170732973325,233,0 +170732973378,233,0 +170732973436,233,0 +170732973493,233,0 +170732973551,234,0 +170732973608,233,0 +170732973661,233,0 +170732973719,234,0 +170732973776,233,0 +170732973834,234,0 +170732973887,306,1 +170732973974,235,0 +170732974022,234,0 +170732974075,233,0 +170732974132,233,0 +170732974190,233,0 +170732974248,233,0 +170732974305,233,0 +170732974363,234,0 +170732974420,233,0 +170732974478,234,0 +170732974535,233,0 +170732974593,234,0 +170732974646,234,0 +170732974698,232,0 +170732974756,233,0 +170732974814,232,0 +170732974866,234,0 +170732974924,269,0 +170732974973,294,1 +170732975053,240,0 +170732975101,233,0 +170732975158,233,0 +170732975216,233,0 +170732975269,232,0 +170732975326,233,0 +170732975384,233,0 +170732975441,232,0 +170732975499,233,0 +170732975556,233,0 +170732975614,232,0 +170732975667,233,0 +170732975724,233,0 +170732975777,233,0 +170732975830,233,0 +170732975887,233,0 +170732975940,235,0 +170732975997,293,1 +170732976084,244,0 +170732976132,233,0 +170732976185,232,0 +170732976242,232,0 +170732976300,233,0 +170732976357,233,0 +170732976410,232,0 +170732976468,233,0 +170732976525,234,0 +170732976578,232,0 +170732976635,233,0 +170732976693,233,0 +170732976750,233,0 +170732976803,233,0 +170732976856,232,0 +170732976913,233,0 +170732976966,234,0 +170732977023,291,1 +170732977110,250,0 +170732977158,235,0 +170732977210,232,0 +170732977268,233,0 +170732977320,233,0 +170732977378,233,0 +170732977436,233,0 +170732977488,233,0 +170732977541,233,0 +170732977599,232,0 +170732977651,232,0 +170732977709,233,0 +170732977762,232,0 +170732977815,233,0 +170732977872,232,0 +170732977930,233,0 +170732977982,233,0 +170732978040,236,0 +170732978097,289,1 +170732978189,248,0 +170732978237,233,0 +170732978294,233,0 +170732978352,233,0 +170732978405,232,0 +170732978462,232,0 +170732978515,232,0 +170732978573,233,0 +170732978625,232,0 +170732978683,233,0 +170732978740,233,0 +170732978798,232,0 +170732978851,232,0 +170732978903,233,0 +170732978956,232,0 +170732979009,233,0 +170732979067,233,0 +170732979124,289,1 +170732979210,259,0 +170732979260,234,0 +170732979313,233,0 +170732979365,233,0 +170732979423,233,0 +170732979480,232,0 +170732979533,232,0 +170732979591,233,0 +170732979643,233,0 +170732979701,232,0 +170732979758,233,0 +170732979816,233,0 +170732979869,232,0 +170732979926,233,0 +170732979979,233,0 +170732980037,233,0 +170732980094,234,0 +170732980152,238,0 +170732980209,276,1 +170732980292,247,0 +170732980340,233,0 +170732980397,233,0 +170732980450,232,0 +170732980507,232,0 +170732980565,232,0 +170732980622,233,0 +170732980680,233,0 +170732980733,232,0 +170732980790,233,0 +170732980848,232,0 +170732980905,232,0 +170732980963,233,0 +170732981016,232,0 +170732981073,233,0 +170732981131,233,0 +170732981183,235,0 +170732981241,299,1 +170732981333,246,0 +170732981382,233,0 +170732981440,233,0 +170732981492,233,0 +170732981550,233,0 +170732981607,233,0 +170732981660,233,0 +170732981718,234,0 +170732981771,233,0 +170732981823,233,0 +170732981881,233,0 +170732981938,233,0 +170732981991,232,0 +170732982049,232,0 +170732982106,233,0 +170732982159,233,0 +170732982216,233,0 +170732982269,290,1 +170732982356,279,1 +170732982441,233,0 +170732982499,233,0 +170732982552,233,0 +170732982609,233,0 +170732982662,232,0 +170732982714,233,0 +170732982772,233,0 +170732982830,234,0 +170732982882,233,0 +170732982935,233,0 +170732982993,233,0 +170732983045,233,0 +170732983103,233,0 +170732983156,233,0 +170732983208,233,0 +170732983266,234,0 +170732983323,283,1 +170732983412,232,0 +170732983461,233,0 +170732983514,232,0 +170732983572,233,0 +170732983629,233,0 +170732983687,233,0 +170732983744,233,0 +170732983797,233,0 +170732983850,233,0 +170732983907,233,0 +170732983965,233,0 +170732984022,233,0 +170732984080,233,0 +170732984137,232,0 +170732984195,233,0 +170732984252,233,0 +170732984305,234,0 +170732984363,257,0 +170732984416,298,1 +170732984503,234,0 +170732984556,233,0 +170732984613,233,0 +170732984671,233,0 +170732984724,233,0 +170732984781,232,0 +170732984834,233,0 +170732984892,232,0 +170732984949,233,0 +170732985002,233,0 +170732985060,233,0 +170732985117,233,0 +170732985175,233,0 +170732985232,233,0 +170732985290,233,0 +170732985343,234,0 +170732985400,249,0 +170732985458,287,1 +170732985540,241,0 +170732985590,233,0 +170732985647,233,0 +170732985705,233,0 +170732985763,233,0 +170732985820,233,0 +170732985877,233,0 +170732985935,233,0 +170732985992,233,0 +170732986050,233,0 +170732986107,233,0 +170732986160,232,0 +170732986217,233,0 +170732986275,233,0 +170732986333,233,0 +170732986390,234,0 +170732986448,239,0 +170732986505,297,1 +170732986588,241,0 +170732986635,233,0 +170732986693,233,0 +170732986751,233,0 +170732986803,233,0 +170732986861,233,0 +170732986918,233,0 +170732986976,233,0 +170732987033,233,0 +170732987091,233,0 +170732987148,233,0 +170732987201,233,0 +170732987254,233,0 +170732987311,233,0 +170732987364,233,0 +170732987422,234,0 +170732987479,235,0 +170732987537,314,0 +170732987585,308,1 +170732987667,233,0 +170732987724,232,0 +170732987782,233,0 +170732987834,232,0 +170732987892,233,0 +170732987945,232,0 +170732987998,232,0 +170732988055,232,0 +170732988108,232,0 +170732988165,232,0 +170732988218,232,0 +170732988276,232,0 +170732988333,233,0 +170732988386,232,0 +170732988439,232,0 +170732988492,233,0 +170732988549,243,0 +170732988607,306,1 +170732988695,238,0 +170732988745,232,0 +170732988797,233,0 +170732988855,232,0 +170732988912,233,0 +170732988970,233,0 +170732989023,232,0 +170732989075,232,0 +170732989133,232,0 +170732989190,233,0 +170732989248,232,0 +170732989305,232,0 +170732989358,232,0 +170732989416,233,0 +170732989468,232,0 +170732989526,232,0 +170732989583,238,0 +170732989641,308,1 +170732989731,242,0 +170732989779,233,0 +170732989836,233,0 +170732989894,233,0 +170732989947,232,0 +170732990004,232,0 +170732990062,231,0 +170732990119,232,0 +170732990177,231,0 +170732990229,233,0 +170732990282,233,0 +170732990335,232,0 +170732990392,232,0 +170732990445,233,0 +170732990503,232,0 +170732990560,233,0 +170732990618,234,0 +170732990670,289,1 +170732990752,263,0 +170732990800,235,0 +170732990852,233,0 +170732990905,232,0 +170732990963,232,0 +170732991015,233,0 +170732991068,233,0 +170732991121,232,0 +170732991174,233,0 +170732991226,232,0 +170732991279,232,0 +170732991337,232,0 +170732991394,232,0 +170732991447,232,0 +170732991505,232,0 +170732991557,232,0 +170732991610,233,0 +170732991663,234,0 +170732991716,290,1 +170732991795,291,1 +170732991876,233,0 +170732991934,233,0 +170732991987,233,0 +170732992039,233,0 +170732992092,232,0 +170732992145,232,0 +170732992202,232,0 +170732992260,233,0 +170732992317,232,0 +170732992375,232,0 +170732992432,232,0 +170732992490,232,0 +170732992543,232,0 +170732992595,233,0 +170732992653,232,0 +170732992710,235,0 +170732992768,294,1 +170732992855,231,0 +170732992905,233,0 +170732992962,232,0 +170732993015,232,0 +170732993073,232,0 +170732993126,233,0 +170732993178,233,0 +170732993236,232,0 +170732993293,232,0 +170732993351,232,0 +170732993408,232,0 +170732993466,232,0 +170732993518,232,0 +170732993576,233,0 +170732993633,233,0 +170732993686,233,0 +170732993744,233,0 +170732993796,239,0 +170732993849,281,1 +170732993933,241,0 +170732993981,233,0 +170732994033,232,0 +170732994091,232,0 +170732994149,233,0 +170732994206,232,0 +170732994263,232,0 +170732994316,232,0 +170732994374,232,0 +170732994426,232,0 +170732994484,232,0 +170732994542,232,0 +170732994594,232,0 +170732994652,233,0 +170732994709,231,0 +170732994767,233,0 +170732994820,233,0 +170732994877,284,1 +170732994958,243,0 +170732995006,235,0 +170732995059,233,0 +170732995111,233,0 +170732995169,232,0 +170732995227,232,0 +170732995279,232,0 +170732995332,232,0 +170732995390,232,0 +170732995447,232,0 +170732995500,232,0 +170732995553,232,0 +170732995610,232,0 +170732995668,233,0 +170732995725,233,0 +170732995778,232,0 +170732995835,232,0 +170732995888,241,0 +170732995946,297,1 +170732996029,241,0 +170732996078,232,0 +170732996136,232,0 +170732996193,232,0 +170732996251,232,0 +170732996308,232,0 +170732996361,232,0 +170732996418,232,0 +170732996476,232,0 +170732996534,233,0 +170732996591,233,0 +170732996644,232,0 +170732996701,232,0 +170732996754,232,0 +170732996812,232,0 +170732996869,233,0 +170732996927,234,0 +170732996984,288,1 +170732997072,246,0 +170732997120,233,0 +170732997178,233,0 +170732997230,233,0 +170732997283,233,0 +170732997341,232,0 +170732997398,232,0 +170732997451,232,0 +170732997503,232,0 +170732997556,232,0 +170732997614,232,0 +170732997666,232,0 +170732997724,233,0 +170732997777,232,0 +170732997830,232,0 +170732997887,233,0 +170732997945,233,0 +170732997998,254,0 +170732998050,277,1 +170732998132,240,0 +170732998182,233,0 +170732998239,233,0 +170732998297,233,0 +170732998349,232,0 +170732998407,232,0 +170732998465,232,0 +170732998522,232,0 +170732998575,233,0 +170732998628,232,0 +170732998680,232,0 +170732998733,232,0 +170732998786,232,0 +170732998839,231,0 +170732998891,232,0 +170732998944,231,0 +170732998997,233,0 +170732999054,273,1 +170732999138,252,0 +170732999188,234,0 +170732999241,232,0 +170732999298,232,0 +170732999356,231,0 +170732999413,231,0 +170732999466,232,0 +170732999524,231,0 +170732999581,232,0 +170732999634,232,0 +170732999691,232,0 +170732999744,231,0 +170732999797,232,0 +170732999849,232,0 +170732999902,232,0 +170732999955,232,0 +170733000012,232,0 +170733000065,235,0 +170733000118,295,1 +170733000206,247,0 +170733000254,233,0 +170733000312,232,0 +170733000365,232,0 +170733000417,231,0 +170733000470,232,0 +170733000527,231,0 +170733000580,232,0 +170733000633,231,0 +170733000690,231,0 +170733000743,231,0 +170733000801,231,0 +170733000854,232,0 +170733000906,232,0 +170733000964,232,0 +170733001017,232,0 +170733001074,232,0 +170733001132,237,0 +170733001185,283,1 +170733001272,242,0 +170733001320,232,0 +170733001373,232,0 +170733001426,232,0 +170733001479,231,0 +170733001531,232,0 +170733001584,232,0 +170733001637,232,0 +170733001690,231,0 +170733001742,232,0 +170733001800,232,0 +170733001853,231,0 +170733001905,232,0 +170733001958,232,0 +170733002011,232,0 +170733002068,232,0 +170733002126,232,0 +170733002178,235,0 +170733002231,274,1 +170733002315,240,0 +170733002363,232,0 +170733002416,233,0 +170733002473,232,0 +170733002526,232,0 +170733002579,231,0 +170733002632,231,0 +170733002689,233,0 +170733002742,232,0 +170733002795,231,0 +170733002852,231,0 +170733002909,231,0 +170733002962,232,0 +170733003015,232,0 +170733003072,232,0 +170733003130,232,0 +170733003187,233,0 +170733003245,274,1 +170733003323,283,1 +170733003403,232,0 +170733003455,232,0 +170733003513,232,0 +170733003566,232,0 +170733003623,232,0 +170733003681,231,0 +170733003734,232,0 +170733003791,232,0 +170733003844,232,0 +170733003897,232,0 +170733003954,232,0 +170733004007,231,0 +170733004060,231,0 +170733004117,232,0 +170733004175,232,0 +170733004232,233,0 +170733004290,277,1 +170733004389,232,0 +170733004438,233,0 +170733004491,232,0 +170733004549,232,0 +170733004606,232,0 +170733004664,231,0 +170733004716,231,0 +170733004774,232,0 +170733004832,232,0 +170733004884,231,0 +170733004942,231,0 +170733004995,232,0 +170733005052,232,0 +170733005110,232,0 +170733005168,232,0 +170733005226,232,0 +170733005283,233,0 +170733005341,285,1 +170733005423,277,1 +170733005506,232,0 +170733005559,233,0 +170733005611,232,0 +170733005664,232,0 +170733005722,232,0 +170733005779,231,0 +170733005832,231,0 +170733005885,232,0 +170733005938,232,0 +170733005995,231,0 +170733006048,231,0 +170733006105,232,0 +170733006158,232,0 +170733006211,231,0 +170733006264,232,0 +170733006316,233,0 +170733006369,238,0 +170733006427,260,0 +170733006475,237,0 +170733006523,233,0 +170733006575,233,0 +170733006628,232,0 +170733006685,232,0 +170733006743,231,0 +170733006796,231,0 +170733006848,232,0 +170733006906,232,0 +170733006963,232,0 +170733007016,232,0 +170733007069,232,0 +170733007126,232,0 +170733007183,232,0 +170733007236,232,0 +170733007294,232,0 +170733007351,233,0 +170733007404,234,0 +170733007461,304,1 +170733007540,237,0 +170733007588,233,0 +170733007646,232,0 +170733007698,231,0 +170733007756,232,0 +170733007808,231,0 +170733007861,232,0 +170733007918,232,0 +170733007971,233,0 +170733008024,232,0 +170733008081,231,0 +170733008139,232,0 +170733008196,231,0 +170733008249,231,0 +170733008307,231,0 +170733008359,231,0 +170733008412,233,0 +170733008465,236,0 +170733008517,298,1 +170733008600,242,0 +170733008648,232,0 +170733008706,233,0 +170733008758,231,0 +170733008811,232,0 +170733008864,232,0 +170733008916,232,0 +170733008974,232,0 +170733009026,232,0 +170733009079,232,0 +170733009137,233,0 +170733009189,232,0 +170733009242,231,0 +170733009295,231,0 +170733009352,232,0 +170733009405,232,0 +170733009462,233,0 +170733009520,237,0 +170733009572,292,1 +170733009657,241,0 +170733009705,231,0 +170733009758,232,0 +170733009810,231,0 +170733009863,231,0 +170733009916,232,0 +170733009973,231,0 +170733010026,232,0 +170733010083,232,0 +170733010136,232,0 +170733010193,232,0 +170733010251,232,0 +170733010308,231,0 +170733010366,231,0 +170733010423,232,0 +170733010476,233,0 +170733010529,233,0 +170733010581,287,1 +170733010667,271,1 +170733010751,232,0 +170733010808,231,0 +170733010861,231,0 +170733010914,231,0 +170733010972,232,0 +170733011029,231,0 +170733011082,231,0 +170733011135,231,0 +170733011187,231,0 +170733011240,231,0 +170733011293,231,0 +170733011345,231,0 +170733011403,232,0 +170733011460,231,0 +170733011513,231,0 +170733011570,233,0 +170733011623,250,0 +170733011676,297,1 +170733011771,233,0 +170733011824,232,0 +170733011876,232,0 +170733011929,231,0 +170733011986,232,0 +170733012039,231,0 +170733012097,232,0 +170733012149,231,0 +170733012202,232,0 +170733012255,232,0 +170733012307,231,0 +170733012360,231,0 +170733012413,231,0 +170733012466,232,0 +170733012523,232,0 +170733012576,232,0 +170733012629,233,0 +170733012681,291,1 +170733012768,250,0 +170733012817,233,0 +170733012870,232,0 +170733012927,231,0 +170733012980,232,0 +170733013033,231,0 +170733013086,232,0 +170733013138,231,0 +170733013191,231,0 +170733013244,231,0 +170733013296,231,0 +170733013349,232,0 +170733013402,232,0 +170733013455,232,0 +170733013507,231,0 +170733013560,232,0 +170733013613,232,0 +170733013666,232,0 +170733013718,242,0 +170733013771,286,1 +170733013856,238,0 +170733013904,232,0 +170733013961,232,0 +170733014014,231,0 +170733014072,232,0 +170733014124,232,0 +170733014182,232,0 +170733014235,231,0 +170733014287,231,0 +170733014345,231,0 +170733014398,232,0 +170733014455,232,0 +170733014508,232,0 +170733014561,231,0 +170733014614,232,0 +170733014666,232,0 +170733014724,233,0 +170733014777,276,1 +170733014859,286,1 +170733014943,233,0 +170733015000,231,0 +170733015058,231,0 +170733015111,231,0 +170733015163,231,0 +170733015216,232,0 +170733015274,231,0 +170733015331,231,0 +170733015389,231,0 +170733015442,231,0 +170733015494,232,0 +170733015547,231,0 +170733015600,232,0 +170733015657,232,0 +170733015710,231,0 +170733015763,233,0 +170733015816,238,0 +170733015868,301,1 +170733015953,241,0 +170733016001,231,0 +170733016053,232,0 +170733016106,232,0 +170733016159,231,0 +170733016216,231,0 +170733016274,231,0 +170733016327,231,0 +170733016384,231,0 +170733016437,232,0 +170733016494,232,0 +170733016547,231,0 +170733016600,231,0 +170733016652,232,0 +170733016710,232,0 +170733016762,232,0 +170733016815,233,0 +170733016868,239,0 +170733016921,297,1 +170733017005,242,0 +170733017053,233,0 +170733017105,232,0 +170733017158,232,0 +170733017211,232,0 +170733017264,232,0 +170733017321,231,0 +170733017374,231,0 +170733017427,232,0 +170733017479,231,0 +170733017537,232,0 +170733017590,232,0 +170733017643,232,0 +170733017700,232,0 +170733017758,231,0 +170733017810,232,0 +170733017868,233,0 +170733017925,260,0 +170733017975,300,1 +170733018064,234,0 +170733018117,232,0 +170733018175,232,0 +170733018232,231,0 +170733018290,232,0 +170733018347,231,0 +170733018400,232,0 +170733018452,232,0 +170733018505,232,0 +170733018562,232,0 +170733018620,232,0 +170733018678,231,0 +170733018730,232,0 +170733018783,233,0 +170733018841,231,0 +170733018898,233,0 +170733018956,237,0 +170733019008,294,1 +170733019092,249,0 +170733019140,231,0 +170733019193,232,0 +170733019245,232,0 +170733019298,232,0 +170733019356,231,0 +170733019413,232,0 +170733019471,232,0 +170733019524,232,0 +170733019581,232,0 +170733019639,233,0 +170733019691,233,0 +170733019749,232,0 +170733019802,232,0 +170733019859,232,0 +170733019917,232,0 +170733019974,234,0 +170733020032,289,1 +170733020123,232,0 +170733020172,233,0 +170733020230,232,0 +170733020283,232,0 +170733020335,233,0 +170733020388,231,0 +170733020441,232,0 +170733020494,232,0 +170733020551,232,0 +170733020604,232,0 +170733020657,233,0 +170733020709,232,0 +170733020762,232,0 +170733020820,232,0 +170733020872,232,0 +170733020930,232,0 +170733020983,232,0 +170733021035,235,0 +170733021088,286,1 +170733021174,241,0 +170733021222,233,0 +170733021275,232,0 +170733021328,233,0 +170733021385,232,0 +170733021443,232,0 +170733021495,232,0 +170733021548,232,0 +170733021606,232,0 +170733021663,231,0 +170733021721,232,0 +170733021774,232,0 +170733021831,232,0 +170733021884,233,0 +170733021936,232,0 +170733021994,232,0 +170733022051,233,0 +170733022104,237,0 +170733022157,284,1 +170733022249,240,0 +170733022298,233,0 +170733022356,232,0 +170733022413,232,0 +170733022471,232,0 +170733022523,232,0 +170733022581,232,0 +170733022634,232,0 +170733022691,233,0 +170733022744,232,0 +170733022797,232,0 +170733022850,232,0 +170733022902,232,0 +170733022960,232,0 +170733023017,232,0 +170733023070,232,0 +170733023123,233,0 +170733023176,262,0 +170733023224,289,1 +170733023309,235,0 +170733023357,232,0 +170733023415,232,0 +170733023468,233,0 +170733023520,232,0 +170733023573,232,0 +170733023631,232,0 +170733023688,233,0 +170733023741,233,0 +170733023794,232,0 +170733023851,232,0 +170733023909,232,0 +170733023962,233,0 +170733024014,232,0 +170733024072,232,0 +170733024125,232,0 +170733024177,233,0 +170733024235,298,1 +170733024318,251,0 +170733024368,233,0 +170733024421,233,0 +170733024478,232,0 +170733024536,232,0 +170733024593,232,0 +170733024651,232,0 +170733024708,232,0 +170733024761,233,0 +170733024819,232,0 +170733024876,232,0 +170733024934,232,0 +170733024991,232,0 +170733025049,233,0 +170733025107,233,0 +170733025164,233,0 +170733025217,234,0 +170733025274,259,0 +170733025324,291,1 +170733025408,234,0 +170733025461,232,0 +170733025519,232,0 +170733025576,232,0 +170733025629,232,0 +170733025682,231,0 +170733025739,232,0 +170733025792,232,0 +170733025845,232,0 +170733025897,232,0 +170733025950,232,0 +170733026003,231,0 +170733026056,232,0 +170733026113,232,0 +170733026166,232,0 +170733026219,233,0 +170733026271,235,0 +170733026324,292,1 +170733026406,285,1 +170733026489,232,0 +170733026546,233,0 +170733026604,232,0 +170733026656,232,0 +170733026709,232,0 +170733026762,232,0 +170733026819,233,0 +170733026877,232,0 +170733026934,231,0 +170733026987,232,0 +170733027040,233,0 +170733027097,232,0 +170733027155,232,0 +170733027208,233,0 +170733027265,233,0 +170733027318,234,0 +170733027371,281,1 +170733027461,237,0 +170733027511,230,0 +170733027563,229,0 +170733027616,228,0 +170733027669,228,0 +170733027722,228,0 +170733027774,229,0 +170733027827,228,0 +170733027880,229,0 +170733027933,229,0 +170733027985,228,0 +170733028038,229,0 +170733028091,229,0 +170733028144,228,0 +170733028196,229,0 +170733028249,229,0 +170733028302,228,0 +170733028355,230,0 +170733028408,235,0 +170733028455,297,1 +170733028540,237,0 +170733028588,229,0 +170733028641,229,0 +170733028694,228,0 +170733028747,228,0 +170733028799,229,0 +170733028852,228,0 +170733028905,229,0 +170733028958,229,0 +170733029010,228,0 +170733029063,229,0 +170733029116,228,0 +170733029168,229,0 +170733029221,229,0 +170733029274,229,0 +170733029327,229,0 +170733029379,229,0 +170733029432,232,0 +170733029485,306,1 +170733029566,229,0 +170733029616,230,0 +170733029668,229,0 +170733029721,229,0 +170733029774,229,0 +170733029827,229,0 +170733029879,228,0 +170733029932,228,0 +170733029985,228,0 +170733030038,229,0 +170733030090,228,0 +170733030143,228,0 +170733030196,229,0 +170733030249,228,0 +170733030301,229,0 +170733030354,229,0 +170733030407,229,0 +170733030460,230,0 +170733030512,237,0 +170733030565,287,1 +170733030649,236,0 +170733030698,228,0 +170733030751,228,0 +170733030804,228,0 +170733030857,229,0 +170733030910,228,0 +170733030962,228,0 +170733031010,228,0 +170733031063,228,0 +170733031116,228,0 +170733031169,228,0 +170733031221,228,0 +170733031274,228,0 +170733031327,227,0 +170733031375,228,0 +170733031423,228,0 +170733031475,228,0 +170733031528,230,0 +170733031581,288,1 +170733031660,278,1 +170733031734,229,0 +170733031787,228,0 +170733031840,228,0 +170733031893,228,0 +170733031945,228,0 +170733031993,228,0 +170733032046,228,0 +170733032099,228,0 +170733032151,228,0 +170733032204,228,0 +170733032257,229,0 +170733032310,228,0 +170733032362,228,0 +170733032415,229,0 +170733032468,228,0 +170733032521,229,0 +170733032573,230,0 +170733032626,282,1 +170733032715,234,0 +170733032764,229,0 +170733032812,228,0 +170733032865,228,0 +170733032918,227,0 +170733032966,228,0 +170733033019,229,0 +170733033071,228,0 +170733033124,228,0 +170733033177,228,0 +170733033230,228,0 +170733033282,228,0 +170733033335,228,0 +170733033388,228,0 +170733033441,228,0 +170733033493,228,0 +170733033546,229,0 +170733033599,229,0 +170733033651,235,0 +170733033704,305,1 +170733033787,239,0 +170733033835,229,0 +170733033888,229,0 +170733033940,228,0 +170733033993,229,0 +170733034046,228,0 +170733034099,228,0 +170733034151,228,0 +170733034204,228,0 +170733034257,228,0 +170733034310,228,0 +170733034362,229,0 +170733034415,228,0 +170733034468,228,0 +170733034521,228,0 +170733034573,228,0 +170733034626,228,0 +170733034679,229,0 +170733034732,276,1 +170733034818,235,0 +170733034868,227,0 +170733034917,227,0 +170733034965,226,0 +170733035018,227,0 +170733035066,226,0 +170733035114,227,0 +170733035162,227,0 +170733035210,227,0 +170733035258,227,0 +170733035311,227,0 +170733035359,226,0 +170733035408,227,0 +170733035461,227,0 +170733035514,227,0 +170733035566,227,0 +170733035614,227,0 +170733035662,227,0 +170733035715,227,0 +170733035763,279,1 +170733035847,290,1 +170733035931,227,0 +170733035984,227,0 +170733036032,227,0 +170733036085,227,0 +170733036133,227,0 +170733036182,227,0 +170733036235,226,0 +170733036288,227,0 +170733036341,227,0 +170733036390,227,0 +170733036443,226,0 +170733036495,227,0 +170733036548,227,0 +170733036596,227,0 +170733036649,227,0 +170733036697,227,0 +170733036749,227,0 +170733036802,232,0 +170733036850,283,1 +170733036934,235,0 +170733036982,227,0 +170733037030,227,0 +170733037080,227,0 +170733037133,226,0 +170733037181,227,0 +170733037233,227,0 +170733037286,227,0 +170733037339,227,0 +170733037386,227,0 +170733037439,226,0 +170733037492,228,0 +170733037540,226,0 +170733037589,226,0 +170733037642,227,0 +170733037695,227,0 +170733037743,227,0 +170733037790,227,0 +170733037838,229,0 +170733037891,289,1 +170733037971,239,0 +170733038019,227,0 +170733038069,227,0 +170733038117,227,0 +170733038164,227,0 +170733038217,227,0 +170733038270,227,0 +170733038318,227,0 +170733038370,227,0 +170733038423,227,0 +170733038471,227,0 +170733038523,227,0 +170733038576,228,0 +170733038624,227,0 +170733038672,227,0 +170733038725,227,0 +170733038773,228,0 +170733038820,227,0 +170733038873,228,0 +170733038923,260,0 +170733038971,273,1 +170733039067,228,0 +170733039120,227,0 +170733039173,228,0 +170733039221,227,0 +170733039273,227,0 +170733039326,227,0 +170733039379,227,0 +170733039431,227,0 +170733039484,227,0 +170733039537,227,0 +170733039590,227,0 +170733039639,227,0 +170733039688,227,0 +170733039736,227,0 +170733039784,228,0 +170733039832,227,0 +170733039880,228,0 +170733039933,229,0 +170733039981,289,1 +170733040075,237,0 +170733040124,228,0 +170733040174,228,0 +170733040227,228,0 +170733040279,228,0 +170733040332,227,0 +170733040385,228,0 +170733040438,227,0 +170733040491,228,0 +170733040543,227,0 +170733040596,228,0 +170733040649,227,0 +170733040702,228,0 +170733040754,227,0 +170733040807,228,0 +170733040860,228,0 +170733040913,228,0 +170733040965,230,0 +170733041018,273,1 +170733041105,233,0 +170733041153,229,0 +170733041201,228,0 +170733041253,227,0 +170733041306,227,0 +170733041354,228,0 +170733041406,228,0 +170733041459,228,0 +170733041512,228,0 +170733041565,228,0 +170733041617,227,0 +170733041670,227,0 +170733041718,227,0 +170733041770,229,0 +170733041818,227,0 +170733041871,227,0 +170733041924,228,0 +170733041971,228,0 +170733042024,229,0 +170733042077,298,1 +170733042164,238,0 +170733042212,228,0 +170733042264,227,0 +170733042314,227,0 +170733042367,227,0 +170733042419,227,0 +170733042469,227,0 +170733042517,227,0 +170733042565,227,0 +170733042618,227,0 +170733042666,228,0 +170733042718,227,0 +170733042771,227,0 +170733042824,227,0 +170733042872,227,0 +170733042925,227,0 +170733042977,227,0 +170733043025,227,0 +170733043073,229,0 +170733043126,289,1 +170733043223,238,0 +170733043271,227,0 +170733043323,227,0 +170733043376,227,0 +170733043424,227,0 +170733043477,227,0 +170733043524,227,0 +170733043577,227,0 +170733043630,227,0 +170733043683,227,0 +170733043735,227,0 +170733043788,227,0 +170733043841,227,0 +170733043889,227,0 +170733043941,227,0 +170733043994,226,0 +170733044047,227,0 +170733044095,228,0 +170733044148,243,0 +170733044200,303,1 +170733044284,233,0 +170733044333,227,0 +170733044386,227,0 +170733044434,227,0 +170733044487,227,0 +170733044539,227,0 +170733044589,227,0 +170733044641,228,0 +170733044694,227,0 +170733044742,227,0 +170733044795,227,0 +170733044847,227,0 +170733044895,227,0 +170733044948,226,0 +170733044996,226,0 +170733045049,227,0 +170733045101,227,0 +170733045154,227,0 +170733045207,254,0 +170733045256,296,1 +170733045340,235,0 +170733045388,227,0 +170733045436,227,0 +170733045489,227,0 +170733045541,227,0 +170733045594,227,0 +170733045647,227,0 +170733045695,227,0 +170733045748,227,0 +170733045800,226,0 +170733045853,227,0 +170733045901,227,0 +170733045954,227,0 +170733046002,226,0 +170733046049,227,0 +170733046102,226,0 +170733046155,227,0 +170733046208,228,0 +170733046260,263,0 +170733046310,300,1 +170733046391,233,0 +170733046439,228,0 +170733046492,228,0 +170733046540,227,0 +170733046592,227,0 +170733046645,227,0 +170733046698,226,0 +170733046750,227,0 +170733046803,227,0 +170733046851,227,0 +170733046904,226,0 +170733046952,226,0 +170733047000,227,0 +170733047052,227,0 +170733047100,227,0 +170733047153,227,0 +170733047206,227,0 +170733047259,227,0 +170733047307,249,0 +170733047355,297,1 +170733047442,230,0 +170733047490,227,0 +170733047538,227,0 +170733047587,227,0 +170733047640,227,0 +170733047693,227,0 +170733047746,227,0 +170733047798,227,0 +170733047851,227,0 +170733047904,227,0 +170733047957,227,0 +170733048010,226,0 +170733048062,227,0 +170733048115,227,0 +170733048163,227,0 +170733048216,227,0 +170733048268,227,0 +170733048321,230,0 +170733048374,292,1 +170733048463,240,0 +170733048511,227,0 +170733048561,226,0 +170733048610,226,0 +170733048663,227,0 +170733048716,227,0 +170733048768,227,0 +170733048816,226,0 +170733048869,227,0 +170733048919,227,0 +170733048971,227,0 +170733049024,226,0 +170733049072,227,0 +170733049125,227,0 +170733049173,227,0 +170733049222,227,0 +170733049275,226,0 +170733049328,228,0 +170733049380,230,0 +170733049433,300,1 +170733049519,239,0 +170733049567,227,0 +170733049620,227,0 +170733049672,226,0 +170733049725,227,0 +170733049778,227,0 +170733049830,227,0 +170733049883,227,0 +170733049936,227,0 +170733049988,227,0 +170733050041,226,0 +170733050094,227,0 +170733050147,227,0 +170733050199,227,0 +170733050247,227,0 +170733050300,226,0 +170733050353,228,0 +170733050406,228,0 +170733050458,302,1 +170733050545,233,0 +170733050595,228,0 +170733050643,227,0 +170733050695,227,0 +170733050748,227,0 +170733050801,227,0 +170733050854,227,0 +170733050906,227,0 +170733050959,227,0 +170733051012,226,0 +170733051064,227,0 +170733051117,227,0 +170733051170,227,0 +170733051223,227,0 +170733051275,227,0 +170733051328,227,0 +170733051381,227,0 +170733051430,228,0 +170733051483,233,0 +170733051531,298,1 +170733051619,235,0 +170733051667,227,0 +170733051720,227,0 +170733051773,227,0 +170733051820,227,0 +170733051873,227,0 +170733051926,227,0 +170733051979,227,0 +170733052027,227,0 +170733052079,226,0 +170733052132,227,0 +170733052185,227,0 +170733052238,227,0 +170733052290,227,0 +170733052343,227,0 +170733052396,226,0 +170733052444,227,0 +170733052493,227,0 +170733052541,242,0 +170733052589,292,1 +170733052677,231,0 +170733052725,227,0 +170733052778,227,0 +170733052831,227,0 +170733052884,227,0 +170733052937,226,0 +170733052989,227,0 +170733053042,227,0 +170733053095,227,0 +170733053147,226,0 +170733053200,226,0 +170733053253,226,0 +170733053306,227,0 +170733053358,227,0 +170733053411,227,0 +170733053464,227,0 +170733053512,227,0 +170733053565,229,0 +170733053618,274,1 +170733053702,235,0 +170733053751,228,0 +170733053804,227,0 +170733053857,227,0 +170733053909,227,0 +170733053962,227,0 +170733054015,227,0 +170733054068,227,0 +170733054120,226,0 +170733054173,227,0 +170733054226,227,0 +170733054278,226,0 +170733054331,227,0 +170733054384,227,0 +170733054436,228,0 +170733054489,227,0 +170733054542,227,0 +170733054590,228,0 +170733054643,288,1 +170733054720,304,1 +170733054802,228,0 +170733054855,227,0 +170733054908,227,0 +170733054960,227,0 +170733055013,227,0 +170733055066,227,0 +170733055118,227,0 +170733055171,227,0 +170733055224,227,0 +170733055277,227,0 +170733055329,227,0 +170733055382,227,0 +170733055435,226,0 +170733055484,227,0 +170733055532,226,0 +170733055585,226,0 +170733055638,228,0 +170733055690,271,1 +170733055777,267,0 +170733055825,229,0 +170733055874,228,0 +170733055927,227,0 +170733055980,227,0 +170733056033,227,0 +170733056085,227,0 +170733056138,227,0 +170733056191,227,0 +170733056243,227,0 +170733056296,227,0 +170733056344,227,0 +170733056397,227,0 +170733056450,227,0 +170733056502,226,0 +170733056555,227,0 +170733056608,227,0 +170733056660,227,0 +170733056713,229,0 +170733056766,272,1 +170733056851,241,0 +170733056898,227,0 +170733056946,227,0 +170733056999,227,0 +170733057052,226,0 +170733057104,227,0 +170733057157,227,0 +170733057210,227,0 +170733057263,227,0 +170733057315,227,0 +170733057368,227,0 +170733057421,227,0 +170733057473,227,0 +170733057523,227,0 +170733057575,227,0 +170733057628,227,0 +170733057681,228,0 +170733057734,228,0 +170733057786,254,0 +170733057834,293,1 +170733057917,236,0 +170733057966,227,0 +170733058019,227,0 +170733058069,227,0 +170733058121,226,0 +170733058174,227,0 +170733058227,227,0 +170733058280,227,0 +170733058328,227,0 +170733058380,227,0 +170733058428,227,0 +170733058476,227,0 +170733058529,226,0 +170733058582,227,0 +170733058634,227,0 +170733058687,227,0 +170733058740,227,0 +170733058793,229,0 +170733058845,295,1 +170733058925,251,0 +170733058973,229,0 +170733059021,227,0 +170733059073,227,0 +170733059126,227,0 +170733059179,227,0 +170733059232,226,0 +170733059279,226,0 +170733059332,227,0 +170733059380,227,0 +170733059433,227,0 +170733059485,226,0 +170733059538,227,0 +170733059591,227,0 +170733059643,227,0 +170733059696,227,0 +170733059749,227,0 +170733059802,227,0 +170733059851,229,0 +170733059904,295,1 +170733059985,234,0 +170733060033,228,0 +170733060081,227,0 +170733060128,227,0 +170733060181,226,0 +170733060234,227,0 +170733060287,227,0 +170733060334,227,0 +170733060387,227,0 +170733060440,227,0 +170733060492,226,0 +170733060545,227,0 +170733060598,227,0 +170733060650,227,0 +170733060703,227,0 +170733060756,227,0 +170733060809,227,0 +170733060857,227,0 +170733060909,229,0 +170733060962,301,1 +170733061049,239,0 +170733061098,227,0 +170733061151,227,0 +170733061204,227,0 +170733061256,227,0 +170733061309,227,0 +170733061362,227,0 +170733061415,227,0 +170733061467,227,0 +170733061520,227,0 +170733061573,227,0 +170733061625,226,0 +170733061678,227,0 +170733061731,227,0 +170733061783,227,0 +170733061836,227,0 +170733061889,227,0 +170733061941,228,0 +170733061994,279,1 +170733062082,237,0 +170733062130,228,0 +170733062183,228,0 +170733062236,227,0 +170733062288,227,0 +170733062336,227,0 +170733062389,228,0 +170733062442,228,0 +170733062494,227,0 +170733062547,227,0 +170733062600,228,0 +170733062652,227,0 +170733062705,228,0 +170733062758,228,0 +170733062810,227,0 +170733062863,223,0 +170733062911,220,0 +170733062959,221,0 +170733063007,221,0 +170733063056,252,0 +170733063104,252,0 +170733063152,439,0 +170733063200,440,0 +170733063248,440,0 +170733063296,441,0 +170733063344,441,0 +170733063391,440,0 +170733063439,440,0 +170733063487,440,0 +170733063535,440,0 +170733063585,440,0 +170733063632,440,0 +170733063680,440,0 +170733063728,440,0 +170733063776,440,0 +170733063825,441,0 +170733063873,440,0 +170733063921,441,0 +170733063969,441,0 +170733064017,440,0 +170733064065,440,0 +170733064113,290,1 +170733064205,438,0 +170733064252,441,0 +170733064300,441,0 +170733064348,440,0 +170733064396,440,0 +170733064444,441,0 +170733064492,441,0 +170733064540,440,0 +170733064588,440,0 +170733064635,440,0 +170733064683,440,0 +170733064731,440,0 +170733064779,440,0 +170733064827,441,0 +170733064875,441,0 +170733064923,440,0 +170733064972,441,0 +170733065020,440,0 +170733065068,440,0 +170733065116,440,0 +170733065164,283,1 +170733065250,439,0 +170733065298,440,0 +170733065346,440,0 +170733065394,441,0 +170733065442,441,0 +170733065492,440,0 +170733065539,440,0 +170733065589,440,0 +170733065637,441,0 +170733065686,440,0 +170733065734,440,0 +170733065784,440,0 +170733065832,440,0 +170733065880,441,0 +170733065929,440,0 +170733065977,441,0 +170733066027,440,0 +170733066075,440,0 +170733066123,440,0 +170733066171,272,1 +170733066252,291,1 +170733066333,440,0 +170733066381,440,0 +170733066429,440,0 +170733066478,440,0 +170733066528,441,0 +170733066577,440,0 +170733066627,440,0 +170733066675,440,0 +170733066724,441,0 +170733066772,441,0 +170733066822,440,0 +170733066871,440,0 +170733066919,440,0 +170733066969,441,0 +170733067017,440,0 +170733067066,440,0 +170733067114,440,0 +170733067162,440,0 +170733067210,440,0 +170733067259,296,1 +170733067344,437,0 +170733067392,440,0 +170733067440,440,0 +170733067489,440,0 +170733067539,440,0 +170733067587,440,0 +170733067636,440,0 +170733067686,440,0 +170733067734,440,0 +170733067782,440,0 +170733067830,440,0 +170733067878,440,0 +170733067926,440,0 +170733067974,440,0 +170733068022,440,0 +170733068069,440,0 +170733068117,440,0 +170733068167,440,0 +170733068215,440,0 +170733068263,440,0 +170733068311,299,1 +170733068394,438,0 +170733068442,440,0 +170733068490,440,0 +170733068538,440,0 +170733068586,440,0 +170733068633,441,0 +170733068681,440,0 +170733068731,440,0 +170733068779,440,0 +170733068827,440,0 +170733068876,440,0 +170733068926,440,0 +170733068974,440,0 +170733069023,440,0 +170733069073,440,0 +170733069121,440,0 +170733069170,440,0 +170733069218,440,0 +170733069266,440,0 +170733069314,427,0 +170733069362,273,1 +170733069446,439,0 +170733069494,440,0 +170733069542,440,0 +170733069590,440,0 +170733069638,440,0 +170733069686,440,0 +170733069734,440,0 +170733069782,440,0 +170733069830,440,0 +170733069878,440,0 +170733069925,440,0 +170733069975,440,0 +170733070023,440,0 +170733070072,440,0 +170733070120,440,0 +170733070168,440,0 +170733070216,441,0 +170733070264,440,0 +170733070314,440,0 +170733070362,440,0 +170733070410,295,1 +170733070491,437,0 +170733070539,440,0 +170733070589,441,0 +170733070637,440,0 +170733070685,440,0 +170733070733,440,0 +170733070780,441,0 +170733070830,440,0 +170733070878,440,0 +170733070927,440,0 +170733070975,441,0 +170733071025,441,0 +170733071073,441,0 +170733071122,440,0 +170733071170,441,0 +170733071220,441,0 +170733071268,440,0 +170733071316,441,0 +170733071364,441,0 +170733071411,438,0 +170733071459,290,1 +170733071539,438,0 +170733071588,441,0 +170733071636,441,0 +170733071684,440,0 +170733071734,440,0 +170733071782,441,0 +170733071830,441,0 +170733071878,441,0 +170733071926,440,0 +170733071974,441,0 +170733072022,441,0 +170733072070,440,0 +170733072118,440,0 +170733072166,441,0 +170733072214,441,0 +170733072262,440,0 +170733072311,440,0 +170733072359,440,0 +170733072407,440,0 +170733072455,440,0 +170733072503,284,1 +170733072594,439,0 +170733072642,440,0 +170733072690,440,0 +170733072738,440,0 +170733072786,441,0 +170733072835,440,0 +170733072883,441,0 +170733072931,441,0 +170733072979,440,0 +170733073028,440,0 +170733073076,441,0 +170733073126,441,0 +170733073174,441,0 +170733073222,441,0 +170733073271,440,0 +170733073320,440,0 +170733073368,440,0 +170733073416,441,0 +170733073466,440,0 +170733073515,275,1 +170733073601,256,0 +170733073649,440,0 +170733073698,441,0 +170733073746,441,0 +170733073794,441,0 +170733073842,441,0 +170733073892,441,0 +170733073939,440,0 +170733073987,441,0 +170733074035,440,0 +170733074083,441,0 +170733074133,441,0 +170733074182,441,0 +170733074230,441,0 +170733074278,440,0 +170733074326,441,0 +170733074374,441,0 +170733074424,441,0 +170733074472,441,0 +170733074520,440,0 +170733074568,280,1 +170733074649,295,1 +170733074729,440,0 +170733074779,441,0 +170733074827,441,0 +170733074875,440,0 +170733074923,441,0 +170733074972,440,0 +170733075020,441,0 +170733075068,440,0 +170733075116,440,0 +170733075164,440,0 +170733075212,440,0 +170733075259,441,0 +170733075309,441,0 +170733075358,440,0 +170733075406,440,0 +170733075454,441,0 +170733075502,441,0 +170733075550,440,0 +170733075598,440,0 +170733075646,275,1 +170733075734,438,0 +170733075782,440,0 +170733075832,440,0 +170733075880,440,0 +170733075929,441,0 +170733075979,441,0 +170733076028,441,0 +170733076076,440,0 +170733076124,441,0 +170733076174,440,0 +170733076221,440,0 +170733076271,441,0 +170733076320,440,0 +170733076368,441,0 +170733076416,440,0 +170733076464,441,0 +170733076514,441,0 +170733076562,441,0 +170733076610,440,0 +170733076659,309,1 +170733076742,272,1 +170733076824,440,0 +170733076872,440,0 +170733076919,441,0 +170733076967,440,0 +170733077015,440,0 +170733077065,441,0 +170733077114,440,0 +170733077162,440,0 +170733077211,441,0 +170733077259,440,0 +170733077307,440,0 +170733077355,441,0 +170733077403,440,0 +170733077451,441,0 +170733077500,440,0 +170733077548,441,0 +170733077596,441,0 +170733077644,440,0 +170733077692,440,0 +170733077740,270,1 +170733077827,438,0 +170733077876,441,0 +170733077924,441,0 +170733077974,441,0 +170733078022,440,0 +170733078069,441,0 +170733078117,441,0 +170733078167,440,0 +170733078216,441,0 +170733078266,441,0 +170733078314,441,0 +170733078361,440,0 +170733078411,441,0 +170733078460,441,0 +170733078508,441,0 +170733078556,441,0 +170733078604,441,0 +170733078652,440,0 +170733078700,440,0 +170733078748,437,0 +170733078796,258,0 +170733078844,251,0 +170733078893,440,0 +170733078941,440,0 +170733078990,441,0 +170733079038,440,0 +170733079086,440,0 +170733079134,441,0 +170733079182,440,0 +170733079230,440,0 +170733079280,441,0 +170733079328,441,0 +170733079375,441,0 +170733079423,441,0 +170733079471,441,0 +170733079519,441,0 +170733079567,441,0 +170733079615,441,0 +170733079663,440,0 +170733079711,441,0 +170733079760,440,0 +170733079810,297,1 +170733079894,241,0 +170733079942,440,0 +170733079990,441,0 +170733080039,441,0 +170733080087,440,0 +170733080137,441,0 +170733080184,441,0 +170733080234,440,0 +170733080282,440,0 +170733080330,441,0 +170733080378,441,0 +170733080426,441,0 +170733080474,441,0 +170733080523,441,0 +170733080573,441,0 +170733080621,440,0 +170733080670,440,0 +170733080720,441,0 +170733080770,441,0 +170733080819,440,0 +170733080867,303,1 +170733080956,406,0 +170733081004,440,0 +170733081054,441,0 +170733081103,440,0 +170733081151,441,0 +170733081201,441,0 +170733081250,441,0 +170733081300,440,0 +170733081348,441,0 +170733081396,440,0 +170733081443,441,0 +170733081493,441,0 +170733081541,440,0 +170733081590,440,0 +170733081638,441,0 +170733081686,441,0 +170733081734,441,0 +170733081782,441,0 +170733081830,440,0 +170733081878,440,0 +170733081926,290,1 +170733082009,434,0 +170733082058,440,0 +170733082106,441,0 +170733082154,440,0 +170733082202,440,0 +170733082250,441,0 +170733082298,440,0 +170733082346,441,0 +170733082394,440,0 +170733082442,440,0 +170733082490,440,0 +170733082538,441,0 +170733082586,441,0 +170733082635,441,0 +170733082683,441,0 +170733082733,441,0 +170733082781,441,0 +170733082829,441,0 +170733082877,440,0 +170733082925,440,0 +170733082974,266,0 +170733083022,289,1 +170733083101,440,0 +170733083149,440,0 +170733083198,441,0 +170733083246,441,0 +170733083296,441,0 +170733083344,440,0 +170733083392,441,0 +170733083440,441,0 +170733083487,441,0 +170733083535,441,0 +170733083585,441,0 +170733083634,441,0 +170733083682,441,0 +170733083730,440,0 +170733083780,441,0 +170733083828,441,0 +170733083876,441,0 +170733083925,441,0 +170733083975,440,0 +170733084023,283,1 +170733084113,437,0 +170733084162,440,0 +170733084212,440,0 +170733084261,441,0 +170733084309,440,0 +170733084357,441,0 +170733084407,441,0 +170733084455,441,0 +170733084503,441,0 +170733084550,440,0 +170733084600,441,0 +170733084648,440,0 +170733084696,441,0 +170733084744,440,0 +170733084792,440,0 +170733084840,440,0 +170733084889,440,0 +170733084937,440,0 +170733084985,440,0 +170733085033,440,0 +170733085081,298,1 +170733085166,437,0 +170733085215,440,0 +170733085265,440,0 +170733085313,440,0 +170733085361,440,0 +170733085409,440,0 +170733085457,441,0 +170733085506,440,0 +170733085554,441,0 +170733085602,441,0 +170733085650,440,0 +170733085698,441,0 +170733085746,441,0 +170733085794,440,0 +170733085842,440,0 +170733085890,440,0 +170733085938,440,0 +170733085986,441,0 +170733086034,440,0 +170733086082,438,0 +170733086130,302,1 +170733086211,438,0 +170733086259,440,0 +170733086307,440,0 +170733086355,441,0 +170733086404,441,0 +170733086452,441,0 +170733086500,441,0 +170733086550,441,0 +170733086599,440,0 +170733086647,441,0 +170733086697,440,0 +170733086745,441,0 +170733086793,441,0 +170733086840,440,0 +170733086888,440,0 +170733086936,440,0 +170733086984,440,0 +170733087032,440,0 +170733087080,440,0 +170733087128,440,0 +170733087176,295,1 +170733087260,437,0 +170733087308,441,0 +170733087355,440,0 +170733087403,441,0 +170733087451,441,0 +170733087499,441,0 +170733087547,441,0 +170733087596,440,0 +170733087644,440,0 +170733087692,440,0 +170733087740,440,0 +170733087788,440,0 +170733087836,441,0 +170733087884,441,0 +170733087932,440,0 +170733087979,440,0 +170733088027,440,0 +170733088075,441,0 +170733088123,440,0 +170733088171,440,0 +170733088219,300,1 +170733088299,436,0 +170733088347,441,0 +170733088395,440,0 +170733088443,441,0 +170733088491,441,0 +170733088539,440,0 +170733088586,440,0 +170733088635,440,0 +170733088684,440,0 +170733088732,440,0 +170733088781,441,0 +170733088829,440,0 +170733088877,441,0 +170733088925,441,0 +170733088973,440,0 +170733089021,440,0 +170733089071,440,0 +170733089119,440,0 +170733089167,441,0 +170733089215,440,0 +170733089263,294,1 +170733089348,434,0 +170733089396,440,0 +170733089444,441,0 +170733089492,440,0 +170733089540,441,0 +170733089588,440,0 +170733089636,441,0 +170733089686,440,0 +170733089735,441,0 +170733089783,440,0 +170733089831,441,0 +170733089879,441,0 +170733089927,440,0 +170733089975,441,0 +170733090023,440,0 +170733090070,441,0 +170733090118,440,0 +170733090166,440,0 +170733090214,440,0 +170733090264,440,0 +170733090312,297,1 +170733090398,434,0 +170733090446,440,0 +170733090494,440,0 +170733090542,440,0 +170733090590,440,0 +170733090638,441,0 +170733090686,440,0 +170733090736,441,0 +170733090784,440,0 +170733090832,440,0 +170733090879,441,0 +170733090929,440,0 +170733090977,441,0 +170733091026,441,0 +170733091076,440,0 +170733091124,441,0 +170733091172,440,0 +170733091221,440,0 +170733091269,440,0 +170733091319,440,0 +170733091367,440,0 +170733091415,440,0 +170733091463,441,0 +170733091511,440,0 +170733091558,440,0 +170733091606,440,0 +170733091656,441,0 +170733091705,440,0 +170733091753,440,0 +170733091803,440,0 +170733091852,294,1 +170733091932,291,1 +170733092010,440,0 +170733092059,441,0 +170733092109,440,0 +170733092158,441,0 +170733092208,440,0 +170733092257,441,0 +170733092305,440,0 +170733092353,440,0 +170733092401,441,0 +170733092449,440,0 +170733092499,440,0 +170733092548,440,0 +170733092596,440,0 +170733092646,441,0 +170733092694,440,0 +170733092742,441,0 +170733092790,441,0 +170733092839,440,0 +170733092887,439,0 +170733092935,293,1 +170733093021,437,0 +170733093069,440,0 +170733093117,440,0 +170733093165,440,0 +170733093215,440,0 +170733093263,440,0 +170733093312,440,0 +170733093362,441,0 +170733093410,440,0 +170733093459,440,0 +170733093509,440,0 +170733093558,441,0 +170733093608,440,0 +170733093658,440,0 +170733093705,441,0 +170733093753,441,0 +170733093801,440,0 +170733093849,440,0 +170733093897,440,0 +170733093947,439,0 +170733093995,294,1 +170733094077,439,0 +170733094125,440,0 +170733094175,440,0 +170733094223,440,0 +170733094271,440,0 +170733094319,441,0 +170733094367,440,0 +170733094416,440,0 +170733094464,441,0 +170733094512,441,0 +170733094560,440,0 +170733094608,441,0 +170733094658,440,0 +170733094706,440,0 +170733094755,441,0 +170733094803,441,0 +170733094853,441,0 +170733094900,440,0 +170733094948,440,0 +170733094996,278,1 +170733095080,284,1 +170733095160,440,0 +170733095209,440,0 +170733095257,441,0 +170733095305,440,0 +170733095353,441,0 +170733095403,440,0 +170733095452,441,0 +170733095500,440,0 +170733095550,440,0 +170733095598,440,0 +170733095646,441,0 +170733095694,440,0 +170733095742,440,0 +170733095789,440,0 +170733095837,441,0 +170733095885,440,0 +170733095933,440,0 +170733095981,440,0 +170733096029,440,0 +170733096078,306,1 +170733096159,435,0 +170733096207,440,0 +170733096255,440,0 +170733096303,440,0 +170733096350,440,0 +170733096398,440,0 +170733096446,440,0 +170733096494,441,0 +170733096542,440,0 +170733096590,440,0 +170733096638,441,0 +170733096686,441,0 +170733096734,441,0 +170733096782,440,0 +170733096830,440,0 +170733096878,440,0 +170733096926,440,0 +170733096975,441,0 +170733097023,440,0 +170733097071,440,0 +170733097119,293,1 +170733097205,435,0 +170733097253,440,0 +170733097300,440,0 +170733097348,440,0 +170733097396,440,0 +170733097444,440,0 +170733097492,440,0 +170733097540,440,0 +170733097588,441,0 +170733097636,440,0 +170733097684,440,0 +170733097732,440,0 +170733097782,440,0 +170733097829,440,0 +170733097877,440,0 +170733097925,441,0 +170733097973,440,0 +170733098021,440,0 +170733098069,440,0 +170733098117,440,0 +170733098165,303,1 +170733098248,266,0 +170733098296,440,0 +170733098344,440,0 +170733098392,440,0 +170733098440,441,0 +170733098488,441,0 +170733098536,440,0 +170733098584,440,0 +170733098631,440,0 +170733098679,441,0 +170733098727,441,0 +170733098775,440,0 +170733098823,440,0 +170733098871,440,0 +170733098919,440,0 +170733098967,441,0 +170733099016,440,0 +170733099064,440,0 +170733099113,440,0 +170733099161,440,0 +170733099209,303,1 +170733099300,431,0 +170733099347,440,0 +170733099397,440,0 +170733099445,440,0 +170733099494,440,0 +170733099542,440,0 +170733099590,441,0 +170733099639,440,0 +170733099687,441,0 +170733099735,440,0 +170733099783,440,0 +170733099831,440,0 +170733099879,440,0 +170733099927,440,0 +170733099975,441,0 +170733100022,440,0 +170733100070,440,0 +170733100118,440,0 +170733100166,440,0 +170733100214,440,0 +170733100262,304,1 +170733100342,433,0 +170733100390,440,0 +170733100438,440,0 +170733100486,440,0 +170733100536,440,0 +170733100583,441,0 +170733100633,440,0 +170733100683,440,0 +170733100732,440,0 +170733100782,440,0 +170733100830,440,0 +170733100879,440,0 +170733100927,440,0 +170733100975,440,0 +170733101023,440,0 +170733101071,440,0 +170733101119,440,0 +170733101167,440,0 +170733101215,440,0 +170733101262,440,0 +170733101310,300,1 +170733101390,236,0 +170733101438,440,0 +170733101486,441,0 +170733101534,440,0 +170733101582,440,0 +170733101630,440,0 +170733101678,440,0 +170733101726,440,0 +170733101774,441,0 +170733101822,440,0 +170733101869,441,0 +170733101919,440,0 +170733101967,440,0 +170733102015,440,0 +170733102063,441,0 +170733102111,440,0 +170733102160,440,0 +170733102208,440,0 +170733102256,441,0 +170733102304,440,0 +170733102352,309,1 +170733102434,237,0 +170733102482,440,0 +170733102530,441,0 +170733102580,440,0 +170733102628,440,0 +170733102677,440,0 +170733102727,440,0 +170733102775,440,0 +170733102823,441,0 +170733102870,441,0 +170733102918,440,0 +170733102966,441,0 +170733103014,440,0 +170733103062,440,0 +170733103110,440,0 +170733103160,440,0 +170733103208,440,0 +170733103257,440,0 +170733103305,440,0 +170733103355,440,0 +170733103403,277,1 +170733103493,345,0 +170733103541,440,0 +170733103591,440,0 +170733103640,440,0 +170733103688,440,0 +170733103736,440,0 +170733103784,440,0 +170733103834,440,0 +170733103882,441,0 +170733103931,440,0 +170733103979,441,0 +170733104029,441,0 +170733104077,440,0 +170733104125,441,0 +170733104174,441,0 +170733104224,440,0 +170733104272,440,0 +170733104320,441,0 +170733104367,440,0 +170733104415,440,0 +170733104465,268,0 +170733104513,289,1 +170733104600,440,0 +170733104650,440,0 +170733104698,440,0 +170733104747,440,0 +170733104795,441,0 +170733104844,440,0 +170733104892,440,0 +170733104940,440,0 +170733104988,440,0 +170733105036,440,0 +170733105084,440,0 +170733105132,441,0 +170733105182,440,0 +170733105230,441,0 +170733105278,441,0 +170733105327,440,0 +170733105375,440,0 +170733105423,440,0 +170733105471,440,0 +170733105520,293,1 +170733105605,438,0 +170733105653,440,0 +170733105701,440,0 +170733105750,441,0 +170733105798,441,0 +170733105846,440,0 +170733105894,441,0 +170733105944,441,0 +170733105993,440,0 +170733106041,440,0 +170733106089,440,0 +170733106137,440,0 +170733106185,441,0 +170733106233,440,0 +170733106281,440,0 +170733106329,440,0 +170733106377,441,0 +170733106425,440,0 +170733106473,440,0 +170733106521,440,0 +170733106570,298,1 +170733106658,438,0 +170733106706,440,0 +170733106756,440,0 +170733106805,440,0 +170733106853,440,0 +170733106901,441,0 +170733106951,440,0 +170733107000,440,0 +170733107048,440,0 +170733107096,440,0 +170733107144,440,0 +170733107194,440,0 +170733107242,441,0 +170733107289,441,0 +170733107339,441,0 +170733107388,440,0 +170733107436,441,0 +170733107484,440,0 +170733107534,440,0 +170733107582,326,0 +170733107632,295,1 +170733107714,438,0 +170733107764,440,0 +170733107812,440,0 +170733107861,440,0 +170733107909,440,0 +170733107957,440,0 +170733108007,440,0 +170733108055,440,0 +170733108103,440,0 +170733108150,441,0 +170733108198,441,0 +170733108246,441,0 +170733108296,441,0 +170733108344,440,0 +170733108392,440,0 +170733108441,440,0 +170733108489,441,0 +170733108537,440,0 +170733108585,440,0 +170733108635,293,1 +170733108716,254,0 +170733108766,440,0 +170733108814,440,0 +170733108863,441,0 +170733108913,440,0 +170733108961,440,0 +170733109009,440,0 +170733109057,441,0 +170733109106,440,0 +170733109154,440,0 +170733109204,440,0 +170733109252,440,0 +170733109300,440,0 +170733109348,440,0 +170733109396,440,0 +170733109444,440,0 +170733109491,440,0 +170733109541,440,0 +170733109589,440,0 +170733109637,440,0 +170733109685,290,1 +170733109766,250,0 +170733109815,440,0 +170733109865,440,0 +170733109913,440,0 +170733109961,441,0 +170733110009,440,0 +170733110057,440,0 +170733110105,440,0 +170733110153,440,0 +170733110200,441,0 +170733110248,440,0 +170733110296,440,0 +170733110344,440,0 +170733110392,440,0 +170733110442,440,0 +170733110491,440,0 +170733110541,440,0 +170733110590,440,0 +170733110638,440,0 +170733110686,440,0 +170733110736,287,1 +170733110825,241,0 +170733110874,440,0 +170733110924,440,0 +170733110972,441,0 +170733111020,441,0 +170733111068,440,0 +170733111116,440,0 +170733111165,440,0 +170733111213,440,0 +170733111261,440,0 +170733111311,440,0 +170733111359,440,0 +170733111407,440,0 +170733111455,441,0 +170733111502,440,0 +170733111550,440,0 +170733111600,440,0 +170733111648,440,0 +170733111696,440,0 +170733111746,440,0 +170733111794,300,1 +170733111877,257,0 +170733111926,440,0 +170733111976,440,0 +170733112024,440,0 +170733112072,441,0 +170733112120,440,0 +170733112168,440,0 +170733112217,441,0 +170733112267,441,0 +170733112315,441,0 +170733112364,440,0 +170733112414,440,0 +170733112463,440,0 +170733112511,440,0 +170733112559,440,0 +170733112607,441,0 +170733112655,440,0 +170733112703,440,0 +170733112751,440,0 +170733112799,440,0 +170733112847,290,1 +170733113433,440,0 +170733113483,440,0 +170733113530,440,0 +170733113578,440,0 +170733113626,441,0 +170733113674,441,0 +170733113722,441,0 +170733113770,441,0 +170733113818,440,0 +170733113866,440,0 +170733113914,269,0 +170733113962,290,1 +170733114045,440,0 +170733114095,441,0 +170733114143,440,0 +170733114192,441,0 +170733114240,441,0 +170733114290,441,0 +170733114339,440,0 +170733114387,441,0 +170733114435,441,0 +170733114483,441,0 +170733114531,441,0 +170733114579,440,0 +170733114629,441,0 +170733114678,440,0 +170733114726,441,0 +170733114776,440,0 +170733114824,440,0 +170733114873,440,0 +170733114921,272,1 +170733115012,295,1 +170733115094,441,0 +170733115144,440,0 +170733115192,441,0 +170733115240,441,0 +170733115288,441,0 +170733115337,440,0 +170733115385,441,0 +170733115435,441,0 +170733115484,441,0 +170733115534,441,0 +170733115582,440,0 +170733115630,441,0 +170733115679,441,0 +170733115729,440,0 +170733115777,441,0 +170733115825,441,0 +170733115873,440,0 +170733115921,441,0 +170733115969,440,0 +170733116016,294,1 +170733116101,439,0 +170733116151,441,0 +170733116199,441,0 +170733116247,441,0 +170733116295,441,0 +170733116343,441,0 +170733116392,440,0 +170733116440,440,0 +170733116488,441,0 +170733116536,441,0 +170733116584,440,0 +170733116632,441,0 +170733116680,440,0 +170733116729,440,0 +170733116777,440,0 +170733116825,440,0 +170733116873,441,0 +170733116921,440,0 +170733116969,440,0 +170733117017,372,0 +170733117064,304,1 +170733117151,439,0 +170733117199,441,0 +170733117247,440,0 +170733117295,440,0 +170733117343,440,0 +170733117392,440,0 +170733117440,440,0 +170733117488,440,0 +170733117536,440,0 +170733117586,440,0 +170733117633,441,0 +170733117681,441,0 +170733117729,440,0 +170733117777,440,0 +170733117825,440,0 +170733117873,441,0 +170733117921,440,0 +170733117969,440,0 +170733118017,440,0 +170733118065,422,0 +170733118113,304,1 +170733118198,439,0 +170733118248,440,0 +170733118297,441,0 +170733118347,440,0 +170733118395,440,0 +170733118443,441,0 +170733118492,440,0 +170733118542,440,0 +170733118590,440,0 +170733118638,441,0 +170733118686,440,0 +170733118734,440,0 +170733118781,440,0 +170733118829,440,0 +170733118877,441,0 +170733118925,441,0 +170733118973,440,0 +170733119023,440,0 +170733119071,440,0 +170733119119,429,0 +170733119167,295,1 +170733119255,440,0 +170733119303,440,0 +170733119351,440,0 +170733119399,440,0 +170733119449,440,0 +170733119498,440,0 +170733119546,440,0 +170733119596,441,0 +170733119644,441,0 +170733119693,440,0 +170733119741,440,0 +170733119791,440,0 +170733119840,440,0 +170733119888,440,0 +170733119938,440,0 +170733119985,440,0 +170733120035,440,0 +170733120084,440,0 +170733120132,440,0 +170733120182,301,1 +170733120269,236,0 +170733120318,440,0 +170733120366,440,0 +170733120414,440,0 +170733120462,440,0 +170733120510,440,0 +170733120558,440,0 +170733120606,440,0 +170733120655,440,0 +170733120703,440,0 +170733120751,440,0 +170733120799,440,0 +170733120848,440,0 +170733120896,440,0 +170733120944,440,0 +170733120992,440,0 +170733121040,440,0 +170733121088,440,0 +170733121137,440,0 +170733121187,440,0 +170733121236,309,1 +170733121324,436,0 +170733121372,440,0 +170733121420,440,0 +170733121469,440,0 +170733121517,440,0 +170733121565,440,0 +170733121613,441,0 +170733121661,440,0 +170733121709,440,0 +170733121757,441,0 +170733121805,440,0 +170733121853,440,0 +170733121902,440,0 +170733121950,440,0 +170733121998,440,0 +170733122046,440,0 +170733122095,440,0 +170733122145,440,0 +170733122193,440,0 +170733122242,440,0 +170733122290,293,1 +170733122372,431,0 +170733122420,440,0 +170733122468,440,0 +170733122516,441,0 +170733122566,440,0 +170733122614,440,0 +170733122662,441,0 +170733122710,440,0 +170733122758,440,0 +170733122806,440,0 +170733122854,440,0 +170733122902,440,0 +170733122950,440,0 +170733122997,440,0 +170733123047,440,0 +170733123095,440,0 +170733123143,440,0 +170733123191,440,0 +170733123239,440,0 +170733123287,440,0 +170733123335,282,1 +170733123421,433,0 +170733123469,440,0 +170733123519,441,0 +170733123568,440,0 +170733123616,440,0 +170733123664,440,0 +170733123712,440,0 +170733123762,440,0 +170733123810,440,0 +170733123858,440,0 +170733123905,440,0 +170733123953,440,0 +170733124001,441,0 +170733124049,440,0 +170733124097,440,0 +170733124147,440,0 +170733124196,440,0 +170733124244,440,0 +170733124292,440,0 +170733124340,440,0 +170733124388,288,1 +170733124469,434,0 +170733124517,440,0 +170733124566,440,0 +170733124616,440,0 +170733124663,440,0 +170733124711,440,0 +170733124761,440,0 +170733124809,440,0 +170733124858,440,0 +170733124906,440,0 +170733124954,440,0 +170733125002,440,0 +170733125050,440,0 +170733125100,440,0 +170733125147,440,0 +170733125197,440,0 +170733125245,440,0 +170733125293,440,0 +170733125341,440,0 +170733125390,440,0 +170733125438,280,1 +170733125523,436,0 +170733125572,440,0 +170733125622,440,0 +170733125671,440,0 +170733125719,440,0 +170733125767,440,0 +170733125815,440,0 +170733125863,440,0 +170733125911,440,0 +170733125959,440,0 +170733126007,440,0 +170733126055,440,0 +170733126104,440,0 +170733126152,440,0 +170733126200,440,0 +170733126248,440,0 +170733126296,440,0 +170733126344,440,0 +170733126392,440,0 +170733126441,440,0 +170733126491,299,1 +170733126569,429,0 +170733126617,440,0 +170733126665,440,0 +170733126713,440,0 +170733126762,440,0 +170733126810,440,0 +170733126860,440,0 +170733126909,440,0 +170733126957,440,0 +170733127005,440,0 +170733127053,440,0 +170733127101,440,0 +170733127151,440,0 +170733127200,440,0 +170733127250,440,0 +170733127297,440,0 +170733127347,440,0 +170733127395,441,0 +170733127443,440,0 +170733127491,440,0 +170733127540,300,1 +170733127630,436,0 +170733127682,440,0 +170733127732,440,0 +170733127780,440,0 +170733127828,440,0 +170733127876,440,0 +170733127924,440,0 +170733127973,440,0 +170733128021,440,0 +170733128069,440,0 +170733128118,440,0 +170733128168,440,0 +170733128216,440,0 +170733128264,440,0 +170733128312,440,0 +170733128360,440,0 +170733128408,440,0 +170733128456,440,0 +170733128504,440,0 +170733128552,434,0 +170733128600,298,1 +170733128683,438,0 +170733128733,440,0 +170733128781,440,0 +170733128829,440,0 +170733128877,441,0 +170733128926,440,0 +170733128975,440,0 +170733129023,440,0 +170733129071,440,0 +170733129119,440,0 +170733129169,440,0 +170733129217,440,0 +170733129266,440,0 +170733129314,440,0 +170733129362,440,0 +170733129410,440,0 +170733129458,440,0 +170733129506,440,0 +170733129556,440,0 +170733129604,299,1 +170733129686,293,1 +170733129768,440,0 +170733129816,440,0 +170733129864,440,0 +170733129912,440,0 +170733129960,440,0 +170733130008,441,0 +170733130058,440,0 +170733130107,440,0 +170733130157,440,0 +170733130205,440,0 +170733130252,441,0 +170733130300,440,0 +170733130348,441,0 +170733130398,440,0 +170733130446,440,0 +170733130494,440,0 +170733130542,440,0 +170733130589,440,0 +170733130637,439,0 +170733130687,305,1 +170733130772,437,0 +170733130822,440,0 +170733130871,440,0 +170733130919,440,0 +170733130967,440,0 +170733131015,440,0 +170733131063,440,0 +170733131111,440,0 +170733131159,440,0 +170733131208,440,0 +170733131256,440,0 +170733131306,440,0 +170733131354,440,0 +170733131402,440,0 +170733131450,441,0 +170733131499,440,0 +170733131547,441,0 +170733131597,440,0 +170733131645,440,0 +170733131692,369,0 +170733131740,313,0 +170733131788,239,0 +170733131838,440,0 +170733131887,440,0 +170733131935,440,0 +170733131984,440,0 +170733132032,441,0 +170733132080,441,0 +170733132130,440,0 +170733132178,441,0 +170733132226,441,0 +170733132275,440,0 +170733132323,440,0 +170733132373,441,0 +170733132421,441,0 +170733132470,441,0 +170733132518,440,0 +170733132566,441,0 +170733132614,441,0 +170733132664,440,0 +170733132712,440,0 +170733132761,301,1 +170733132850,281,1 +170733132931,440,0 +170733132979,441,0 +170733133028,441,0 +170733133076,441,0 +170733133124,440,0 +170733133174,441,0 +170733133223,440,0 +170733133271,440,0 +170733133319,440,0 +170733133369,441,0 +170733133418,440,0 +170733133468,440,0 +170733133515,440,0 +170733133563,441,0 +170733133611,440,0 +170733133661,440,0 +170733133709,440,0 +170733133757,440,0 +170733133806,302,1 +170733133895,234,0 +170733133945,440,0 +170733133994,441,0 +170733134044,440,0 +170733134093,440,0 +170733134141,440,0 +170733134189,440,0 +170733134237,441,0 +170733134287,440,0 +170733134335,440,0 +170733134384,441,0 +170733134432,440,0 +170733134480,441,0 +170733134528,440,0 +170733134576,441,0 +170733134624,440,0 +170733134672,440,0 +170733134721,440,0 +170733134769,440,0 +170733134819,440,0 +170733134867,289,1 +170733134949,237,0 +170733134997,440,0 +170733135047,441,0 +170733135095,441,0 +170733135143,440,0 +170733135191,440,0 +170733135239,440,0 +170733135288,440,0 +170733135336,441,0 +170733135384,440,0 +170733135433,440,0 +170733135483,441,0 +170733135531,440,0 +170733135581,440,0 +170733135630,441,0 +170733135678,440,0 +170733135726,440,0 +170733135774,441,0 +170733135823,440,0 +170733135871,440,0 +170733135921,303,1 +170733136003,436,0 +170733136053,440,0 +170733136101,440,0 +170733136150,440,0 +170733136198,441,0 +170733136248,440,0 +170733136295,440,0 +170733136343,441,0 +170733136391,441,0 +170733136439,441,0 +170733136487,440,0 +170733136537,441,0 +170733136586,440,0 +170733136634,441,0 +170733136682,441,0 +170733136730,441,0 +170733136778,440,0 +170733136826,440,0 +170733136875,441,0 +170733136923,440,0 +170733136971,291,1 +170733137052,435,0 +170733137100,440,0 +170733137150,441,0 +170733137198,440,0 +170733137246,440,0 +170733137294,440,0 +170733137342,441,0 +170733137391,440,0 +170733137441,441,0 +170733137490,440,0 +170733137538,441,0 +170733137586,441,0 +170733137636,441,0 +170733137684,441,0 +170733137733,441,0 +170733137781,441,0 +170733137831,441,0 +170733137879,441,0 +170733137928,440,0 +170733137976,440,0 +170733138024,293,1 +170733138112,437,0 +170733138159,441,0 +170733138207,441,0 +170733138257,441,0 +170733138305,441,0 +170733138353,441,0 +170733138401,441,0 +170733138449,441,0 +170733138497,441,0 +170733138545,441,0 +170733138593,440,0 +170733138641,440,0 +170733138689,440,0 +170733138737,440,0 +170733138784,440,0 +170733138832,441,0 +170733138880,441,0 +170733138928,441,0 +170733138976,441,0 +170733139026,440,0 +170733139074,299,1 +170733139166,439,0 +170733139214,441,0 +170733139264,440,0 +170733139313,441,0 +170733139363,441,0 +170733139411,440,0 +170733139459,440,0 +170733139508,441,0 +170733139556,441,0 +170733139604,440,0 +170733139654,440,0 +170733139703,440,0 +170733139751,440,0 +170733139799,440,0 +170733139847,441,0 +170733139896,440,0 +170733139946,440,0 +170733139996,441,0 +170733140043,440,0 +170733140091,283,1 +170733140176,297,1 +170733140257,440,0 +170733140306,440,0 +170733140354,440,0 +170733140402,441,0 +170733140452,441,0 +170733140501,440,0 +170733140549,440,0 +170733140597,441,0 +170733140645,440,0 +170733140693,441,0 +170733140741,441,0 +170733140789,441,0 +170733140837,441,0 +170733140885,441,0 +170733140933,440,0 +170733140981,440,0 +170733141028,441,0 +170733141078,440,0 +170733141126,440,0 +170733141174,290,1 +170733141262,438,0 +170733141310,441,0 +170733141358,440,0 +170733141406,441,0 +170733141455,441,0 +170733141503,441,0 +170733141551,441,0 +170733141601,441,0 +170733141649,440,0 +170733141697,441,0 +170733141745,440,0 +170733141794,440,0 +170733141842,441,0 +170733141892,440,0 +170733141941,441,0 +170733141989,441,0 +170733142039,440,0 +170733142088,440,0 +170733142136,441,0 +170733142184,439,0 +170733142233,305,1 +170733142319,438,0 +170733142367,441,0 +170733142415,441,0 +170733142463,441,0 +170733142513,441,0 +170733142561,440,0 +170733142609,441,0 +170733142657,441,0 +170733142705,441,0 +170733142753,441,0 +170733142802,441,0 +170733142852,441,0 +170733142900,441,0 +170733142948,441,0 +170733142995,441,0 +170733143043,440,0 +170733143091,441,0 +170733143139,440,0 +170733143187,440,0 +170733143235,291,1 +170733143320,273,1 +170733143403,440,0 +170733143451,440,0 +170733143501,441,0 +170733143550,440,0 +170733143600,441,0 +170733143648,441,0 +170733143696,440,0 +170733143744,440,0 +170733143793,440,0 +170733143841,440,0 +170733143891,440,0 +170733143939,440,0 +170733143987,441,0 +170733144035,440,0 +170733144084,441,0 +170733144134,441,0 +170733144183,441,0 +170733144231,440,0 +170733144279,439,0 +170733144329,304,1 +170733144415,439,0 +170733144464,441,0 +170733144512,440,0 +170733144560,441,0 +170733144608,441,0 +170733144658,441,0 +170733144706,441,0 +170733144754,441,0 +170733144802,441,0 +170733144850,440,0 +170733144899,441,0 +170733144947,441,0 +170733144995,441,0 +170733145043,441,0 +170733145091,441,0 +170733145139,441,0 +170733145187,441,0 +170733145236,441,0 +170733145284,441,0 +170733145332,439,0 +170733145380,300,1 +170733145462,437,0 +170733145510,441,0 +170733145558,441,0 +170733145606,441,0 +170733145655,440,0 +170733145705,441,0 +170733145753,441,0 +170733145801,441,0 +170733145850,441,0 +170733145900,441,0 +170733145949,441,0 +170733145999,441,0 +170733146047,441,0 +170733146095,441,0 +170733146143,441,0 +170733146192,441,0 +170733146240,441,0 +170733146288,441,0 +170733146336,441,0 +170733146384,276,1 +170733146473,258,0 +170733146523,440,0 +170733146572,441,0 +170733146622,441,0 +170733146670,441,0 +170733146718,440,0 +170733146766,441,0 +170733146815,441,0 +170733146863,441,0 +170733146911,441,0 +170733146959,441,0 +170733147007,441,0 +170733147055,441,0 +170733147103,441,0 +170733147152,441,0 +170733147200,441,0 +170733147250,441,0 +170733147298,441,0 +170733147346,441,0 +170733147394,440,0 +170733147442,292,1 +170733147526,252,0 +170733147574,440,0 +170733147622,441,0 +170733147672,440,0 +170733147719,441,0 +170733147769,441,0 +170733147819,441,0 +170733147867,440,0 +170733147914,441,0 +170733147964,441,0 +170733148012,441,0 +170733148060,441,0 +170733148109,441,0 +170733148157,441,0 +170733148207,441,0 +170733148256,440,0 +170733148304,441,0 +170733148354,441,0 +170733148402,441,0 +170733148450,441,0 +170733148498,299,1 +170733148580,263,0 +170733148628,440,0 +170733148677,441,0 +170733148725,441,0 +170733148773,441,0 +170733148823,441,0 +170733148871,440,0 +170733148919,440,0 +170733148966,441,0 +170733149014,441,0 +170733149062,441,0 +170733149110,441,0 +170733149158,441,0 +170733149206,441,0 +170733149254,441,0 +170733149302,441,0 +170733149352,441,0 +170733149401,440,0 +170733149449,440,0 +170733149497,440,0 +170733149545,300,1 +170733149624,300,1 +170733149707,440,0 +170733149755,441,0 +170733149804,441,0 +170733149854,441,0 +170733149903,441,0 +170733149951,440,0 +170733149999,440,0 +170733150047,440,0 +170733150095,440,0 +170733150143,441,0 +170733150191,441,0 +170733150239,441,0 +170733150287,440,0 +170733150336,441,0 +170733150384,440,0 +170733150432,441,0 +170733150482,441,0 +170733150529,441,0 +170733150577,431,0 +170733150625,302,1 +170733150707,439,0 +170733150754,441,0 +170733150802,441,0 +170733150850,441,0 +170733150898,440,0 +170733150948,441,0 +170733150996,441,0 +170733151045,441,0 +170733151093,440,0 +170733151143,441,0 +170733151192,441,0 +170733151242,441,0 +170733151290,441,0 +170733151338,440,0 +170733151386,440,0 +170733151435,441,0 +170733151483,441,0 +170733151533,440,0 +170733151581,440,0 +170733151629,408,0 +170733151678,301,1 +170733151761,438,0 +170733151809,441,0 +170733151859,441,0 +170733151907,441,0 +170733151955,441,0 +170733152003,441,0 +170733152051,441,0 +170733152099,441,0 +170733152147,441,0 +170733152195,441,0 +170733152244,441,0 +170733152292,441,0 +170733152342,441,0 +170733152390,441,0 +170733152437,441,0 +170733152485,441,0 +170733152533,441,0 +170733152581,441,0 +170733152629,441,0 +170733152679,273,1 +170733152776,239,0 +170733152826,440,0 +170733152874,441,0 +170733152922,441,0 +170733152971,441,0 +170733153019,440,0 +170733153069,441,0 +170733153117,441,0 +170733153165,440,0 +170733153213,441,0 +170733153262,441,0 +170733153310,441,0 +170733153358,441,0 +170733153406,441,0 +170733153454,441,0 +170733153502,441,0 +170733153550,441,0 +170733153599,441,0 +170733153649,440,0 +170733153697,440,0 +170733153745,306,1 +170733153828,426,0 +170733153876,440,0 +170733153924,440,0 +170733153974,441,0 +170733154021,441,0 +170733154071,441,0 +170733154119,441,0 +170733154167,441,0 +170733154217,440,0 +170733154266,440,0 +170733154314,441,0 +170733154362,441,0 +170733154410,441,0 +170733154459,441,0 +170733154507,440,0 +170733154555,441,0 +170733154605,441,0 +170733154654,441,0 +170733154702,441,0 +170733154750,440,0 +170733154800,282,1 +170733154888,433,0 +170733154936,440,0 +170733154984,441,0 +170733155032,441,0 +170733155081,441,0 +170733155129,440,0 +170733155177,441,0 +170733155227,441,0 +170733155275,441,0 +170733155323,441,0 +170733155372,441,0 +170733155420,441,0 +170733155470,440,0 +170733155518,441,0 +170733155566,441,0 +170733155614,440,0 +170733155661,441,0 +170733155711,441,0 +170733155761,441,0 +170733155810,440,0 +170733155858,269,0 +170733155907,309,1 +170733155991,440,0 +170733156041,441,0 +170733156090,441,0 +170733156138,441,0 +170733156186,440,0 +170733156234,441,0 +170733156282,440,0 +170733156330,441,0 +170733156378,441,0 +170733156427,440,0 +170733156477,440,0 +170733156526,441,0 +170733156574,441,0 +170733156624,440,0 +170733156672,441,0 +170733156721,441,0 +170733156769,441,0 +170733156817,441,0 +170733156865,440,0 +170733156913,289,1 +170733156995,438,0 +170733157043,441,0 +170733157091,441,0 +170733157139,441,0 +170733157187,441,0 +170733157235,441,0 +170733157285,441,0 +170733157334,441,0 +170733157382,441,0 +170733157432,441,0 +170733157479,441,0 +170733157527,441,0 +170733157575,441,0 +170733157623,441,0 +170733157671,441,0 +170733157719,441,0 +170733157769,441,0 +170733157817,441,0 +170733157865,441,0 +170733157913,440,0 +170733157962,299,1 +170733158049,438,0 +170733158097,440,0 +170733158145,441,0 +170733158193,441,0 +170733158241,441,0 +170733158289,441,0 +170733158337,441,0 +170733158385,441,0 +170733158432,441,0 +170733158480,441,0 +170733158528,441,0 +170733158576,441,0 +170733158626,441,0 +170733158674,441,0 +170733158721,441,0 +170733158769,441,0 +170733158817,441,0 +170733158865,441,0 +170733158913,440,0 +170733158961,439,0 +170733159009,296,1 +170733159091,438,0 +170733159140,440,0 +170733159188,441,0 +170733159238,441,0 +170733159286,440,0 +170733159334,441,0 +170733159382,441,0 +170733159430,440,0 +170733159478,441,0 +170733159527,441,0 +170733159577,441,0 +170733159626,440,0 +170733159674,440,0 +170733159722,441,0 +170733159770,440,0 +170733159818,440,0 +170733159866,441,0 +170733159914,441,0 +170733159962,441,0 +170733160010,440,0 +170733160058,279,1 +170733160148,438,0 +170733160196,441,0 +170733160244,440,0 +170733160292,441,0 +170733160340,440,0 +170733160388,441,0 +170733160438,441,0 +170733160487,441,0 +170733160537,441,0 +170733160585,441,0 +170733160633,441,0 +170733160681,440,0 +170733160730,441,0 +170733160778,441,0 +170733160826,441,0 +170733160874,441,0 +170733160923,441,0 +170733160973,441,0 +170733161022,440,0 +170733161072,273,1 +170733161165,238,0 +170733161213,440,0 +170733161262,440,0 +170733161310,440,0 +170733161358,441,0 +170733161406,441,0 +170733161456,441,0 +170733161505,440,0 +170733161553,441,0 +170733161602,441,0 +170733161650,441,0 +170733161698,441,0 +170733161748,441,0 +170733161796,440,0 +170733161844,441,0 +170733161892,441,0 +170733161940,441,0 +170733161988,441,0 +170733162036,441,0 +170733162085,440,0 +170733162133,309,1 +170733162213,277,1 +170733162294,441,0 +170733162342,441,0 +170733162390,441,0 +170733162438,441,0 +170733162486,440,0 +170733162535,440,0 +170733162583,441,0 +170733162631,441,0 +170733162679,440,0 +170733162727,440,0 +170733162777,441,0 +170733162826,441,0 +170733162874,441,0 +170733162922,440,0 +170733162970,440,0 +170733163019,441,0 +170733163067,440,0 +170733163117,441,0 +170733163165,440,0 +170733163213,296,1 +170733163296,438,0 +170733163346,441,0 +170733163394,441,0 +170733163442,440,0 +170733163491,441,0 +170733163539,441,0 +170733163587,441,0 +170733163635,441,0 +170733163685,441,0 +170733163733,441,0 +170733163781,440,0 +170733163829,440,0 +170733163878,441,0 +170733163926,441,0 +170733163974,440,0 +170733164022,441,0 +170733164070,441,0 +170733164118,441,0 +170733164166,440,0 +170733164214,440,0 +170733164262,296,1 +170733164345,437,0 +170733164393,441,0 +170733164442,441,0 +170733164490,440,0 +170733164538,441,0 +170733164586,440,0 +170733164635,441,0 +170733164683,440,0 +170733164731,441,0 +170733164779,440,0 +170733164827,441,0 +170733164876,441,0 +170733164924,440,0 +170733164972,441,0 +170733165020,441,0 +170733165068,441,0 +170733165116,441,0 +170733165164,441,0 +170733165212,440,0 +170733165260,437,0 +170733165307,287,1 +170733165396,439,0 +170733165444,441,0 +170733165492,441,0 +170733165540,441,0 +170733165590,440,0 +170733165638,441,0 +170733165686,441,0 +170733165734,441,0 +170733165783,441,0 +170733165833,441,0 +170733165881,440,0 +170733165929,440,0 +170733165978,440,0 +170733166026,441,0 +170733166074,440,0 +170733166123,441,0 +170733166171,441,0 +170733166219,441,0 +170733166269,440,0 +170733166317,413,0 +170733166365,298,1 +170733166446,439,0 +170733166494,440,0 +170733166543,441,0 +170733166591,441,0 +170733166639,441,0 +170733166687,440,0 +170733166735,441,0 +170733166783,441,0 +170733166833,440,0 +170733166882,441,0 +170733166930,441,0 +170733166978,441,0 +170733167028,440,0 +170733167076,440,0 +170733167125,441,0 +170733167175,441,0 +170733167223,440,0 +170733167272,441,0 +170733167322,440,0 +170733167370,278,1 +170733167461,234,0 +170733167510,440,0 +170733167558,441,0 +170733167606,440,0 +170733167656,441,0 +170733167705,441,0 +170733167753,441,0 +170733167803,441,0 +170733167852,441,0 +170733167900,441,0 +170733167950,441,0 +170733167999,441,0 +170733168047,440,0 +170733168095,441,0 +170733168143,441,0 +170733168191,441,0 +170733168239,440,0 +170733168288,441,0 +170733168336,441,0 +170733168384,440,0 +170733168434,293,1 +170733168516,235,0 +170733168564,440,0 +170733168612,440,0 +170733168660,441,0 +170733168710,441,0 +170733168759,441,0 +170733168807,441,0 +170733168857,441,0 +170733168906,441,0 +170733168954,441,0 +170733169004,441,0 +170733169053,441,0 +170733169103,441,0 +170733169151,441,0 +170733169199,441,0 +170733169248,441,0 +170733169298,441,0 +170733169347,440,0 +170733169395,440,0 +170733169445,440,0 +170733169493,296,1 +170733169577,435,0 +170733169625,441,0 +170733169673,441,0 +170733169721,441,0 +170733169769,440,0 +170733169817,441,0 +170733169865,440,0 +170733169914,441,0 +170733169964,441,0 +170733170012,441,0 +170733170060,440,0 +170733170107,441,0 +170733170155,441,0 +170733170203,441,0 +170733170251,441,0 +170733170299,441,0 +170733170349,441,0 +170733170397,441,0 +170733170446,441,0 +170733170494,440,0 +170733170542,289,1 +170733170629,436,0 +170733170678,440,0 +170733170726,441,0 +170733170774,441,0 +170733170822,441,0 +170733170872,441,0 +170733170920,441,0 +170733170969,441,0 +170733171017,441,0 +170733171065,441,0 +170733171113,441,0 +170733171163,441,0 +170733171211,441,0 +170733171259,441,0 +170733171307,441,0 +170733171354,440,0 +170733171404,441,0 +170733171454,441,0 +170733171501,440,0 +170733171549,440,0 +170733171597,296,1 +170733171680,436,0 +170733171727,441,0 +170733171775,441,0 +170733171824,441,0 +170733171872,441,0 +170733171921,441,0 +170733171971,441,0 +170733172018,441,0 +170733172066,440,0 +170733172114,441,0 +170733172162,441,0 +170733172212,440,0 +170733172260,441,0 +170733172310,440,0 +170733172357,440,0 +170733172405,441,0 +170733172453,441,0 +170733172503,441,0 +170733172551,440,0 +170733172599,440,0 +170733172647,277,1 +170733172761,440,0 +170733172809,440,0 +170733172857,441,0 +170733172905,441,0 +170733172954,440,0 +170733173002,441,0 +170733173050,440,0 +170733173098,441,0 +170733173147,441,0 +170733173195,440,0 +170733173245,441,0 +170733173293,441,0 +170733173341,440,0 +170733173390,441,0 +170733173438,441,0 +170733173488,441,0 +170733173537,441,0 +170733173585,441,0 +170733173633,440,0 +170733173681,281,1 +170733173764,429,0 +170733173812,441,0 +170733173862,441,0 +170733173910,441,0 +170733173958,441,0 +170733174005,440,0 +170733174053,440,0 +170733174101,440,0 +170733174151,441,0 +170733174199,440,0 +170733174247,440,0 +170733174296,440,0 +170733174344,440,0 +170733174392,440,0 +170733174440,441,0 +170733174490,441,0 +170733174539,441,0 +170733174589,441,0 +170733174637,440,0 +170733174685,440,0 +170733174733,287,1 +170733174813,420,0 +170733174861,440,0 +170733174909,441,0 +170733174957,441,0 +170733175005,441,0 +170733175055,440,0 +170733175104,440,0 +170733175154,440,0 +170733175202,441,0 +170733175251,441,0 +170733175301,441,0 +170733175349,441,0 +170733175397,441,0 +170733175445,440,0 +170733175493,441,0 +170733175541,441,0 +170733175590,441,0 +170733175640,440,0 +170733175688,440,0 +170733175737,440,0 +170733175785,293,1 +170733175861,437,0 +170733175909,441,0 +170733175959,441,0 +170733176007,441,0 +170733176055,441,0 +170733176103,440,0 +170733176152,441,0 +170733176202,441,0 +170733176250,440,0 +170733176299,440,0 +170733176347,440,0 +170733176395,440,0 +170733176443,441,0 +170733176493,440,0 +170733176542,440,0 +170733176590,441,0 +170733176638,441,0 +170733176686,440,0 +170733176734,440,0 +170733176784,440,0 +170733176832,281,1 +170733176918,436,0 +170733176966,441,0 +170733177014,440,0 +170733177062,441,0 +170733177111,440,0 +170733177159,441,0 +170733177207,441,0 +170733177257,440,0 +170733177306,441,0 +170733177354,441,0 +170733177402,441,0 +170733177450,441,0 +170733177498,440,0 +170733177547,441,0 +170733177595,440,0 +170733177643,440,0 +170733177691,441,0 +170733177739,440,0 +170733177787,441,0 +170733177835,440,0 +170733177883,294,1 +170733177968,438,0 +170733178016,441,0 +170733178064,441,0 +170733178112,440,0 +170733178162,441,0 +170733178211,440,0 +170733178261,440,0 +170733178309,440,0 +170733178358,440,0 +170733178408,440,0 +170733178456,441,0 +170733178504,440,0 +170733178552,440,0 +170733178600,441,0 +170733178648,441,0 +170733178696,441,0 +170733178745,440,0 +170733178793,440,0 +170733178841,441,0 +170733178889,440,0 +170733178939,300,1 +170733179019,437,0 +170733179067,441,0 +170733179115,440,0 +170733179163,440,0 +170733179212,440,0 +170733179262,441,0 +170733179310,441,0 +170733179358,441,0 +170733179406,440,0 +170733179455,441,0 +170733179503,441,0 +170733179551,440,0 +170733179599,440,0 +170733179648,440,0 +170733179696,440,0 +170733179744,440,0 +170733179792,441,0 +170733179840,441,0 +170733179890,440,0 +170733179938,439,0 +170733179986,275,1 +170733180071,438,0 +170733180119,440,0 +170733180167,440,0 +170733180217,440,0 +170733180264,440,0 +170733180312,440,0 +170733180362,440,0 +170733180411,440,0 +170733180459,440,0 +170733180509,440,0 +170733180558,441,0 +170733180606,441,0 +170733180654,441,0 +170733180704,441,0 +170733180752,440,0 +170733180802,441,0 +170733180851,441,0 +170733180900,441,0 +170733180950,440,0 +170733180998,288,1 +170733181081,294,1 +170733181160,440,0 +170733181210,441,0 +170733181258,440,0 +170733181306,441,0 +170733181354,440,0 +170733181403,440,0 +170733181453,440,0 +170733181501,441,0 +170733181550,440,0 +170733181598,440,0 +170733181648,441,0 +170733181695,441,0 +170733181743,441,0 +170733181793,440,0 +170733181843,440,0 +170733181890,440,0 +170733181938,440,0 +170733181986,440,0 +170733182034,440,0 +170733182084,275,1 +170733182169,438,0 +170733182217,441,0 +170733182267,440,0 +170733182316,441,0 +170733182364,441,0 +170733182414,441,0 +170733182462,440,0 +170733182510,441,0 +170733182558,440,0 +170733182606,441,0 +170733182654,440,0 +170733182702,441,0 +170733182751,440,0 +170733182799,440,0 +170733182847,441,0 +170733182896,440,0 +170733182944,440,0 +170733182994,441,0 +170733183042,440,0 +170733183091,257,0 +170733183141,288,1 +170733183226,440,0 +170733183274,440,0 +170733183323,441,0 +170733183371,441,0 +170733183421,441,0 +170733183470,441,0 +170733183520,441,0 +170733183568,441,0 +170733183616,441,0 +170733183665,441,0 +170733183715,441,0 +170733183764,440,0 +170733183814,441,0 +170733183862,440,0 +170733183910,440,0 +170733183959,440,0 +170733184009,440,0 +170733184057,441,0 +170733184105,440,0 +170733184153,296,1 +170733184237,235,0 +170733184286,440,0 +170733184334,441,0 +170733184384,441,0 +170733184433,440,0 +170733184483,441,0 +170733184531,441,0 +170733184579,441,0 +170733184628,441,0 +170733184676,441,0 +170733184724,441,0 +170733184772,441,0 +170733184821,441,0 +170733184869,440,0 +170733184917,441,0 +170733184967,440,0 +170733185015,440,0 +170733185065,440,0 +170733185114,440,0 +170733185162,440,0 +170733185210,300,1 +170733185293,295,1 +170733185374,440,0 +170733185422,441,0 +170733185470,440,0 +170733185518,441,0 +170733185567,440,0 +170733185615,440,0 +170733185664,440,0 +170733185712,440,0 +170733185760,440,0 +170733185810,441,0 +170733185858,441,0 +170733185906,440,0 +170733185954,440,0 +170733186002,441,0 +170733186050,440,0 +170733186098,440,0 +170733186147,440,0 +170733186195,440,0 +170733186243,259,0 +170733186291,271,1 +170733186429,441,0 +170733186479,440,0 +170733186526,440,0 +170733186574,440,0 +170733186622,441,0 +170733186670,440,0 +170733186718,440,0 +170733186766,440,0 +170733186814,440,0 +170733186862,441,0 +170733186910,440,0 +170733186960,440,0 +170733187009,441,0 +170733187057,440,0 +170733187105,440,0 +170733187153,440,0 +170733187202,440,0 +170733187252,440,0 +170733187301,316,0 +170733187349,312,0 +170733187399,436,0 +170733187447,441,0 +170733187496,441,0 +170733187544,441,0 +170733187592,441,0 +170733187640,440,0 +170733187690,440,0 +170733187738,440,0 +170733187787,440,0 +170733187835,440,0 +170733187883,440,0 +170733187931,440,0 +170733187979,441,0 +170733188029,440,0 +170733188077,440,0 +170733188125,440,0 +170733188172,440,0 +170733188222,440,0 +170733188272,440,0 +170733188319,440,0 +170733188368,295,1 +170733188455,438,0 +170733188505,440,0 +170733188553,441,0 +170733188601,440,0 +170733188649,440,0 +170733188697,440,0 +170733188745,441,0 +170733188793,440,0 +170733188841,440,0 +170733188889,441,0 +170733188937,441,0 +170733188985,441,0 +170733189033,441,0 +170733189081,440,0 +170733189128,441,0 +170733189178,440,0 +170733189226,441,0 +170733189274,440,0 +170733189323,440,0 +170733189371,440,0 +170733189419,300,1 +170733189508,438,0 +170733189557,441,0 +170733189605,441,0 +170733189653,440,0 +170733189701,440,0 +170733189749,441,0 +170733189797,440,0 +170733189845,440,0 +170733189895,440,0 +170733189943,440,0 +170733189991,440,0 +170733190040,441,0 +170733190090,440,0 +170733190138,440,0 +170733190186,440,0 +170733190235,440,0 +170733190283,440,0 +170733190333,441,0 +170733190381,440,0 +170733190430,273,1 +170733190526,238,0 +170733190574,440,0 +170733190622,441,0 +170733190670,440,0 +170733190718,440,0 +170733190766,441,0 +170733190814,440,0 +170733190862,440,0 +170733190909,441,0 +170733190957,440,0 +170733191005,440,0 +170733191055,441,0 +170733191103,441,0 +170733191151,440,0 +170733191199,440,0 +170733191248,440,0 +170733191296,440,0 +170733191344,440,0 +170733191394,440,0 +170733191442,440,0 +170733191490,287,1 +170733191572,275,1 +170733191659,440,0 +170733191707,441,0 +170733191755,440,0 +170733191803,440,0 +170733191851,440,0 +170733191899,440,0 +170733191947,440,0 +170733191995,440,0 +170733192043,440,0 +170733192092,440,0 +170733192140,440,0 +170733192188,440,0 +170733192238,440,0 +170733192286,440,0 +170733192334,440,0 +170733192382,441,0 +170733192430,440,0 +170733192478,440,0 +170733192526,440,0 +170733192575,292,1 +170733192657,438,0 +170733192705,440,0 +170733192755,440,0 +170733192803,441,0 +170733192852,440,0 +170733192902,440,0 +170733192950,440,0 +170733192998,440,0 +170733193046,440,0 +170733193094,441,0 +170733193143,441,0 +170733193193,441,0 +170733193241,440,0 +170733193289,441,0 +170733193338,440,0 +170733193386,441,0 +170733193436,440,0 +170733193484,441,0 +170733193532,440,0 +170733193581,436,0 +170733193629,297,1 +170733193712,438,0 +170733193762,441,0 +170733193810,441,0 +170733193858,441,0 +170733193906,440,0 +170733193955,441,0 +170733194003,440,0 +170733194051,441,0 +170733194099,440,0 +170733194147,441,0 +170733194197,441,0 +170733194245,440,0 +170733194293,440,0 +170733194342,441,0 +170733194390,441,0 +170733194438,441,0 +170733194488,441,0 +170733194537,440,0 +170733194585,440,0 +170733194635,288,1 +170733194727,237,0 +170733194777,440,0 +170733194825,440,0 +170733194874,441,0 +170733194924,440,0 +170733194972,440,0 +170733195020,441,0 +170733195069,441,0 +170733195117,440,0 +170733195165,441,0 +170733195213,440,0 +170733195262,441,0 +170733195310,441,0 +170733195358,441,0 +170733195408,440,0 +170733195456,440,0 +170733195504,440,0 +170733195552,441,0 +170733195600,441,0 +170733195649,440,0 +170733195699,285,1 +170733195778,236,0 +170733195826,440,0 +170733195874,440,0 +170733195922,441,0 +170733195970,440,0 +170733196019,441,0 +170733196067,441,0 +170733196115,440,0 +170733196163,441,0 +170733196211,440,0 +170733196259,440,0 +170733196307,441,0 +170733196355,441,0 +170733196403,441,0 +170733196452,441,0 +170733196500,440,0 +170733196548,441,0 +170733196598,441,0 +170733196647,440,0 +170733196695,440,0 +170733196743,302,1 +170733196826,236,0 +170733196874,440,0 +170733196922,440,0 +170733196970,441,0 +170733197017,441,0 +170733197065,441,0 +170733197113,441,0 +170733197161,440,0 +170733197209,440,0 +170733197259,441,0 +170733197307,441,0 +170733197356,440,0 +170733197404,441,0 +170733197452,441,0 +170733197502,441,0 +170733197550,440,0 +170733197598,440,0 +170733197646,441,0 +170733197694,441,0 +170733197742,440,0 +170733197789,306,1 +170733197874,235,0 +170733197923,440,0 +170733197973,440,0 +170733198020,441,0 +170733198068,441,0 +170733198118,440,0 +170733198167,440,0 +170733198217,440,0 +170733198265,440,0 +170733198313,440,0 +170733198362,441,0 +170733198412,440,0 +170733198460,441,0 +170733198509,441,0 +170733198557,440,0 +170733198605,441,0 +170733198655,441,0 +170733198703,441,0 +170733198751,440,0 +170733198799,440,0 +170733198847,309,1 +170733198932,303,1 +170733199013,441,0 +170733199061,441,0 +170733199110,441,0 +170733199158,441,0 +170733199206,441,0 +170733199254,440,0 +170733199302,440,0 +170733199351,441,0 +170733199399,440,0 +170733199447,441,0 +170733199497,440,0 +170733199545,441,0 +170733199595,441,0 +170733199643,441,0 +170733199690,440,0 +170733199738,441,0 +170733199786,440,0 +170733199834,441,0 +170733199882,301,1 +170733199968,273,1 +170733200052,440,0 +170733200099,441,0 +170733200149,441,0 +170733200197,441,0 +170733200247,440,0 +170733200296,441,0 +170733200344,440,0 +170733200392,440,0 +170733200440,441,0 +170733200488,440,0 +170733200536,440,0 +170733200584,441,0 +170733200633,440,0 +170733200681,441,0 +170733200729,441,0 +170733200779,441,0 +170733200827,441,0 +170733200875,440,0 +170733200923,439,0 +170733200971,277,1 +170733201056,440,0 +170733201106,441,0 +170733201154,440,0 +170733201203,440,0 +170733201253,440,0 +170733201301,440,0 +170733201350,441,0 +170733201398,440,0 +170733201446,441,0 +170733201495,440,0 +170733201543,440,0 +170733201591,440,0 +170733201639,440,0 +170733201689,440,0 +170733201737,441,0 +170733201785,440,0 +170733201833,441,0 +170733201881,441,0 +170733201929,440,0 +170733201976,369,0 +170733202024,292,1 +170733202109,439,0 +170733202158,441,0 +170733202206,441,0 +170733202254,441,0 +170733202304,440,0 +170733202352,440,0 +170733202401,440,0 +170733202449,440,0 +170733202499,441,0 +170733202547,440,0 +170733202595,440,0 +170733202643,440,0 +170733202691,441,0 +170733202739,440,0 +170733202788,440,0 +170733202836,441,0 +170733202884,441,0 +170733202932,440,0 +170733202982,440,0 +170733203029,301,1 +170733203116,256,0 +170733203163,440,0 +170733203213,440,0 +170733203261,440,0 +170733203310,440,0 +170733203358,440,0 +170733203406,440,0 +170733203454,440,0 +170733203504,440,0 +170733203553,441,0 +170733203603,441,0 +170733203651,440,0 +170733203699,440,0 +170733203747,440,0 +170733203795,440,0 +170733203843,441,0 +170733203891,441,0 +170733203938,440,0 +170733203988,440,0 +170733204038,440,0 +170733204087,309,1 +170733204170,244,0 +170733204218,440,0 +170733204266,441,0 +170733204314,440,0 +170733204363,440,0 +170733204411,441,0 +170733204459,440,0 +170733204507,440,0 +170733204555,440,0 +170733204603,440,0 +170733204651,441,0 +170733204701,440,0 +170733204749,440,0 +170733204797,441,0 +170733204845,440,0 +170733204894,440,0 +170733204944,440,0 +170733204992,441,0 +170733205040,440,0 +170733205087,440,0 +170733205135,301,1 +170733205224,431,0 +170733205273,440,0 +170733205321,440,0 +170733205371,440,0 +170733205419,441,0 +170733205467,441,0 +170733205515,441,0 +170733205563,441,0 +170733205611,441,0 +170733205659,440,0 +170733205708,440,0 +170733205758,441,0 +170733205806,440,0 +170733205854,440,0 +170733205902,441,0 +170733205950,441,0 +170733205998,440,0 +170733206046,440,0 +170733206094,440,0 +170733206143,440,0 +170733206191,301,1 +170733206273,244,0 +170733206321,440,0 +170733206369,440,0 +170733206418,441,0 +170733206468,441,0 +170733206517,441,0 +170733206565,440,0 +170733206613,440,0 +170733206663,441,0 +170733206711,441,0 +170733206758,441,0 +170733206806,440,0 +170733206854,440,0 +170733206902,441,0 +170733206950,441,0 +170733207000,441,0 +170733207049,441,0 +170733207097,440,0 +170733207145,440,0 +170733207193,440,0 +170733207241,305,1 +170733207323,236,0 +170733207371,441,0 +170733207419,440,0 +170733207467,440,0 +170733207515,440,0 +170733207563,440,0 +170733207611,440,0 +170733207659,440,0 +170733207706,440,0 +170733207756,441,0 +170733207805,440,0 +170733207855,441,0 +170733207903,440,0 +170733207952,440,0 +170733208000,440,0 +170733208048,440,0 +170733208098,440,0 +170733208147,440,0 +170733208197,440,0 +170733208247,440,0 +170733208295,299,1 +170733208375,237,0 +170733208423,440,0 +170733208472,440,0 +170733208520,440,0 +170733208568,440,0 +170733208616,440,0 +170733208666,441,0 +170733208715,440,0 +170733208763,440,0 +170733208811,440,0 +170733208861,440,0 +170733208909,440,0 +170733208957,440,0 +170733209005,440,0 +170733209054,440,0 +170733209102,441,0 +170733209150,440,0 +170733209198,440,0 +170733209246,441,0 +170733209294,440,0 +170733209342,276,1 +170733209425,411,0 +170733209474,440,0 +170733209522,441,0 +170733209570,441,0 +170733209618,441,0 +170733209668,440,0 +170733209717,441,0 +170733209767,441,0 +170733209815,441,0 +170733209863,440,0 +170733209910,441,0 +170733209960,440,0 +170733210010,440,0 +170733210057,441,0 +170733210107,441,0 +170733210155,441,0 +170733210204,441,0 +170733210252,441,0 +170733210302,440,0 +170733210351,440,0 +170733210399,288,1 +170733210490,437,0 +170733210537,441,0 +170733210585,440,0 +170733210635,441,0 +170733210683,441,0 +170733210731,441,0 +170733210781,441,0 +170733210829,440,0 +170733210877,440,0 +170733210924,440,0 +170733210972,440,0 +170733211020,440,0 +170733211068,440,0 +170733211118,440,0 +170733211166,441,0 +170733211214,441,0 +170733211262,441,0 +170733211310,441,0 +170733211359,440,0 +170733211407,440,0 +170733211455,293,1 +170733211542,438,0 +170733211590,441,0 +170733211638,441,0 +170733211687,440,0 +170733211737,441,0 +170733211785,441,0 +170733211834,441,0 +170733211882,441,0 +170733211932,441,0 +170733211980,440,0 +170733212029,440,0 +170733212077,440,0 +170733212125,440,0 +170733212175,440,0 +170733212223,440,0 +170733212271,440,0 +170733212319,441,0 +170733212368,440,0 +170733212416,440,0 +170733212464,422,0 +170733212512,315,0 +170733212560,252,0 +170733212608,440,0 +170733212656,440,0 +170733212706,440,0 +170733212754,440,0 +170733212803,441,0 +170733212851,441,0 +170733212901,441,0 +170733212949,441,0 +170733212997,441,0 +170733213045,441,0 +170733213093,441,0 +170733213142,440,0 +170733213190,440,0 +170733213240,440,0 +170733213288,440,0 +170733213337,440,0 +170733213385,440,0 +170733213433,440,0 +170733213483,440,0 +170733213530,297,1 +170733213618,235,0 +170733213668,440,0 +170733213717,440,0 +170733213765,440,0 +170733213813,441,0 +170733213863,441,0 +170733213911,441,0 +170733213959,441,0 +170733214006,441,0 +170733214056,441,0 +170733214106,440,0 +170733214153,440,0 +170733214201,440,0 +170733214249,441,0 +170733214297,441,0 +170733214345,441,0 +170733214395,440,0 +170733214443,441,0 +170733214492,440,0 +170733214540,440,0 +170733214588,291,1 +170733214669,236,0 +170733214719,440,0 +170733214767,440,0 +170733214815,440,0 +170733214864,440,0 +170733214912,440,0 +170733214962,440,0 +170733215010,440,0 +170733215058,440,0 +170733215107,441,0 +170733215155,440,0 +170733215203,440,0 +170733215251,440,0 +170733215301,440,0 +170733215350,441,0 +170733215398,440,0 +170733215446,440,0 +170733215494,440,0 +170733215543,440,0 +170733215591,440,0 +170733215639,288,1 +170733215725,427,0 +170733215773,440,0 +170733215821,440,0 +170733215869,440,0 +170733215918,440,0 +170733215966,441,0 +170733216014,440,0 +170733216064,441,0 +170733216112,440,0 +170733216160,440,0 +170733216209,440,0 +170733216259,440,0 +170733216307,440,0 +170733216355,440,0 +170733216404,440,0 +170733216452,440,0 +170733216502,441,0 +170733216550,440,0 +170733216599,440,0 +170733216649,440,0 +170733216697,295,1 +170733216776,435,0 +170733216824,440,0 +170733216873,440,0 +170733216921,440,0 +170733216971,440,0 +170733217020,440,0 +170733217068,441,0 +170733217118,440,0 +170733217166,441,0 +170733217214,440,0 +170733217263,440,0 +170733217313,440,0 +170733217362,440,0 +170733217412,440,0 +170733217460,440,0 +170733217508,440,0 +170733217556,441,0 +170733217604,440,0 +170733217653,440,0 +170733217701,440,0 +170733217749,293,1 +170733217833,438,0 +170733217883,440,0 +170733217933,440,0 +170733217981,440,0 +170733218028,440,0 +170733218076,441,0 +170733218124,440,0 +170733218174,440,0 +170733218222,441,0 +170733218272,440,0 +170733218320,440,0 +170733218369,441,0 +170733218419,441,0 +170733218467,440,0 +170733218515,440,0 +170733218562,441,0 +170733218610,440,0 +170733218660,440,0 +170733218709,440,0 +170733218757,439,0 +170733218805,291,1 +170733218888,438,0 +170733218938,440,0 +170733218986,440,0 +170733219034,441,0 +170733219082,440,0 +170733219130,440,0 +170733219178,440,0 +170733219226,441,0 +170733219275,440,0 +170733219323,441,0 +170733219371,441,0 +170733219419,440,0 +170733219469,440,0 +170733219517,440,0 +170733219564,441,0 +170733219613,441,0 +170733219660,440,0 +170733219710,440,0 +170733219758,440,0 +170733219806,439,0 +170733219854,300,1 +170733219936,439,0 +170733219985,440,0 +170733220033,441,0 +170733220083,440,0 +170733220132,441,0 +170733220180,441,0 +170733220228,440,0 +170733220276,440,0 +170733220324,441,0 +170733220373,440,0 +170733220421,440,0 +170733220471,441,0 +170733220519,441,0 +170733220567,441,0 +170733220615,440,0 +170733220664,441,0 +170733220712,440,0 +170733220762,440,0 +170733220811,440,0 +170733220861,321,0 +170733220910,298,1 +170733220996,439,0 +170733221044,440,0 +170733221092,441,0 +170733221140,441,0 +170733221189,440,0 +170733221239,440,0 +170733221286,440,0 +170733221336,440,0 +170733221386,440,0 +170733221435,440,0 +170733221483,440,0 +170733221531,440,0 +170733221580,441,0 +170733221630,440,0 +170733221678,440,0 +170733221726,441,0 +170733221774,440,0 +170733221822,441,0 +170733221870,440,0 +170733221918,272,1 +170733222000,288,1 +170733222082,440,0 +170733222130,441,0 +170733222180,441,0 +170733222229,440,0 +170733222279,441,0 +170733222327,440,0 +170733222376,441,0 +170733222424,441,0 +170733222472,440,0 +170733222520,440,0 +170733222570,441,0 +170733222619,440,0 +170733222669,440,0 +170733222718,441,0 +170733222766,440,0 +170733222816,440,0 +170733222864,441,0 +170733222912,440,0 +170733222960,438,0 +170733223008,306,1 +170733223096,440,0 +170733223144,440,0 +170733223192,440,0 +170733223240,440,0 +170733223288,441,0 +170733223335,441,0 +170733223383,441,0 +170733223431,440,0 +170733223479,440,0 +170733223527,441,0 +170733223575,440,0 +170733223623,440,0 +170733223671,440,0 +170733223719,440,0 +170733223767,440,0 +170733223815,440,0 +170733223863,440,0 +170733223911,440,0 +170733223959,440,0 +170733224007,423,0 +170733224055,303,1 +170733224138,439,0 +170733224186,441,0 +170733224234,441,0 +170733224282,440,0 +170733224331,441,0 +170733224379,440,0 +170733224429,440,0 +170733224477,440,0 +170733224525,440,0 +170733224574,441,0 +170733224624,441,0 +170733224672,441,0 +170733224721,441,0 +170733224769,440,0 +170733224817,441,0 +170733224867,440,0 +170733224915,440,0 +170733224964,440,0 +170733225012,440,0 +170733225060,258,0 +170733225109,289,1 +170733225194,439,0 +170733225244,441,0 +170733225292,441,0 +170733225341,441,0 +170733225389,440,0 +170733225437,440,0 +170733225487,441,0 +170733225535,440,0 +170733225582,440,0 +170733225632,440,0 +170733225680,440,0 +170733225729,440,0 +170733225777,440,0 +170733225827,441,0 +170733225875,441,0 +170733225924,440,0 +170733225974,441,0 +170733226022,440,0 +170733226070,440,0 +170733226118,298,1 +170733226203,238,0 +170733226251,441,0 +170733226299,441,0 +170733226348,441,0 +170733226398,441,0 +170733226446,440,0 +170733226494,441,0 +170733226542,441,0 +170733226590,441,0 +170733226638,440,0 +170733226686,441,0 +170733226735,441,0 +170733226783,441,0 +170733226831,441,0 +170733226880,441,0 +170733226928,440,0 +170733226976,440,0 +170733227024,440,0 +170733227072,440,0 +170733227122,440,0 +170733227170,294,1 +170733227255,421,0 +170733227303,440,0 +170733227351,441,0 +170733227400,441,0 +170733227448,440,0 +170733227498,441,0 +170733227546,441,0 +170733227595,440,0 +170733227643,441,0 +170733227691,441,0 +170733227739,441,0 +170733227787,440,0 +170733227835,441,0 +170733227883,440,0 +170733227931,441,0 +170733227979,440,0 +170733228027,441,0 +170733228075,440,0 +170733228123,440,0 +170733228171,440,0 +170733228219,291,1 +170733228304,339,0 +170733228354,440,0 +170733228402,441,0 +170733228450,440,0 +170733228498,441,0 +170733228546,441,0 +170733228594,441,0 +170733228643,441,0 +170733228691,440,0 +170733228741,441,0 +170733228790,441,0 +170733228840,441,0 +170733228889,441,0 +170733228939,441,0 +170733228988,440,0 +170733229036,440,0 +170733229084,441,0 +170733229132,441,0 +170733229180,440,0 +170733229230,440,0 +170733229279,295,1 +170733229363,433,0 +170733229413,440,0 +170733229461,441,0 +170733229510,441,0 +170733229558,441,0 +170733229606,441,0 +170733229656,441,0 +170733229704,441,0 +170733229752,441,0 +170733229799,441,0 +170733229849,440,0 +170733229897,440,0 +170733229945,441,0 +170733229994,441,0 +170733230044,441,0 +170733230092,441,0 +170733230141,441,0 +170733230191,441,0 +170733230239,440,0 +170733230287,440,0 +170733230336,299,1 +170733230421,438,0 +170733230470,440,0 +170733230520,440,0 +170733230568,441,0 +170733230617,440,0 +170733230667,440,0 +170733230716,440,0 +170733230764,441,0 +170733230814,441,0 +170733230862,441,0 +170733230910,441,0 +170733230959,440,0 +170733231007,440,0 +170733231057,441,0 +170733231106,441,0 +170733231156,440,0 +170733231204,441,0 +170733231253,441,0 +170733231301,441,0 +170733231349,261,0 +170733231399,283,1 +170733231480,439,0 +170733231530,441,0 +170733231578,440,0 +170733231627,441,0 +170733231675,441,0 +170733231723,441,0 +170733231771,440,0 +170733231819,440,0 +170733231868,440,0 +170733231916,440,0 +170733231964,441,0 +170733232012,441,0 +170733232062,441,0 +170733232110,441,0 +170733232158,441,0 +170733232206,441,0 +170733232254,440,0 +170733232303,441,0 +170733232351,440,0 +170733232401,279,1 +170733232484,275,1 +170733232566,441,0 +170733232614,440,0 +170733232663,440,0 +170733232711,440,0 +170733232759,440,0 +170733232807,440,0 +170733232855,441,0 +170733232903,440,0 +170733232952,440,0 +170733233000,440,0 +170733233048,441,0 +170733233098,441,0 +170733233146,441,0 +170733233194,441,0 +170733233243,441,0 +170733233291,441,0 +170733233341,441,0 +170733233390,440,0 +170733233438,440,0 +170733233488,278,1 +170733233568,437,0 +170733233617,441,0 +170733233667,441,0 +170733233715,441,0 +170733233764,441,0 +170733233812,441,0 +170733233860,440,0 +170733233910,441,0 +170733233959,441,0 +170733234007,440,0 +170733234055,441,0 +170733234103,441,0 +170733234153,441,0 +170733234201,441,0 +170733234250,441,0 +170733234298,441,0 +170733234346,441,0 +170733234394,441,0 +170733234442,440,0 +170733234491,284,1 +170733234574,281,1 +170733234657,441,0 +170733234705,441,0 +170733234753,441,0 +170733234801,440,0 +170733234849,441,0 +170733234897,441,0 +170733234946,441,0 +170733234996,441,0 +170733235044,441,0 +170733235092,441,0 +170733235141,441,0 +170733235189,441,0 +170733235239,441,0 +170733235287,441,0 +170733235335,441,0 +170733235384,440,0 +170733235432,441,0 +170733235480,440,0 +170733235528,440,0 +170733235576,298,1 +170733235657,437,0 +170733235705,440,0 +170733235753,441,0 +170733235801,440,0 +170733235851,441,0 +170733235899,440,0 +170733235947,441,0 +170733235995,441,0 +170733236044,441,0 +170733236094,441,0 +170733236142,440,0 +170733236191,440,0 +170733236241,441,0 +170733236289,441,0 +170733236337,441,0 +170733236385,441,0 +170733236434,441,0 +170733236482,441,0 +170733236530,441,0 +170733236578,440,0 +170733236626,284,1 +170733236707,436,0 +170733236755,441,0 +170733236803,441,0 +170733236851,441,0 +170733236899,441,0 +170733236947,441,0 +170733236995,441,0 +170733237043,441,0 +170733237091,441,0 +170733237139,440,0 +170733237188,440,0 +170733237238,441,0 +170733237287,441,0 +170733237337,441,0 +170733237385,441,0 +170733237433,441,0 +170733237481,441,0 +170733237530,440,0 +170733237578,440,0 +170733237626,221,0 +170733237674,251,0 +170733237724,252,0 +170733237772,441,0 +170733237821,442,0 +170733237869,442,0 +170733237919,441,0 +170733237967,442,0 +170733238014,442,0 +170733238064,442,0 +170733238113,442,0 +170733238161,442,0 +170733238209,442,0 +170733238257,442,0 +170733238305,442,0 +170733238353,442,0 +170733238403,441,0 +170733238451,441,0 +170733238500,442,0 +170733238550,441,0 +170733238598,442,0 +170733238647,442,0 +170733238697,291,1 +170733238784,235,0 +170733238832,441,0 +170733238880,442,0 +170733238928,442,0 +170733238976,442,0 +170733239025,442,0 +170733239073,442,0 +170733239121,442,0 +170733239169,441,0 +170733239217,441,0 +170733239265,441,0 +170733239315,442,0 +170733239363,442,0 +170733239410,442,0 +170733239460,442,0 +170733239508,442,0 +170733239556,442,0 +170733239604,442,0 +170733239652,441,0 +170733239700,441,0 +170733239748,280,1 +170733239841,269,0 +170733239889,441,0 +170733239937,442,0 +170733239985,442,0 diff --git a/laser_value/0208-05.csv b/laser_value/0208-05.csv new file mode 100644 index 0000000..92027d1 --- /dev/null +++ b/laser_value/0208-05.csv @@ -0,0 +1,7167 @@ +timestamp,laser_value,event +170733240033,442,0 +170733240083,442,0 +170733240132,442,0 +170733240180,441,0 +170733240228,441,0 +170733240278,441,0 +170733240326,442,0 +170733240375,442,0 +170733240423,442,0 +170733240471,442,0 +170733240519,442,0 +170733240569,442,0 +170733240617,441,0 +170733240665,442,0 +170733240714,441,0 +170733240762,441,0 +170733240810,279,1 +170733240902,438,0 +170733240952,442,0 +170733241001,441,0 +170733241051,442,0 +170733241099,442,0 +170733241147,442,0 +170733241195,441,0 +170733241244,442,0 +170733241294,442,0 +170733241343,441,0 +170733241391,442,0 +170733241439,442,0 +170733241487,442,0 +170733241536,442,0 +170733241584,442,0 +170733241632,441,0 +170733241682,442,0 +170733241730,442,0 +170733241778,441,0 +170733241826,441,0 +170733241875,292,1 +170733241960,441,0 +170733242008,442,0 +170733242056,441,0 +170733242104,442,0 +170733242152,442,0 +170733242200,442,0 +170733242248,442,0 +170733242296,442,0 +170733242344,441,0 +170733242393,442,0 +170733242441,442,0 +170733242491,442,0 +170733242539,442,0 +170733242588,442,0 +170733242636,441,0 +170733242684,442,0 +170733242732,442,0 +170733242781,441,0 +170733242831,441,0 +170733242880,297,1 +170733242964,267,0 +170733243012,441,0 +170733243060,441,0 +170733243108,442,0 +170733243156,442,0 +170733243206,441,0 +170733243255,442,0 +170733243303,442,0 +170733243353,442,0 +170733243402,442,0 +170733243450,442,0 +170733243498,442,0 +170733243546,442,0 +170733243594,441,0 +170733243643,442,0 +170733243691,441,0 +170733243741,442,0 +170733243789,442,0 +170733243837,441,0 +170733243885,441,0 +170733243934,268,0 +170733243982,266,0 +170733244032,230,0 +170733244080,441,0 +170733244129,441,0 +170733244179,441,0 +170733244227,442,0 +170733244275,442,0 +170733244323,441,0 +170733244370,442,0 +170733244420,442,0 +170733244469,442,0 +170733244519,442,0 +170733244567,442,0 +170733244615,441,0 +170733244664,442,0 +170733244714,441,0 +170733244762,441,0 +170733244810,441,0 +170733244859,442,0 +170733244909,441,0 +170733244957,441,0 +170733245005,297,1 +170733245092,439,0 +170733245142,442,0 +170733245190,442,0 +170733245238,441,0 +170733245286,442,0 +170733245335,442,0 +170733245385,442,0 +170733245433,441,0 +170733245481,442,0 +170733245530,442,0 +170733245580,441,0 +170733245628,441,0 +170733245676,441,0 +170733245725,442,0 +170733245773,442,0 +170733245821,442,0 +170733245871,442,0 +170733245918,442,0 +170733245966,441,0 +170733246014,441,0 +170733246062,293,1 +170733246152,439,0 +170733246202,442,0 +170733246250,442,0 +170733246298,442,0 +170733246347,442,0 +170733246395,442,0 +170733246444,442,0 +170733246492,442,0 +170733246540,441,0 +170733246590,442,0 +170733246639,442,0 +170733246687,442,0 +170733246737,441,0 +170733246785,442,0 +170733246833,442,0 +170733246881,441,0 +170733246930,442,0 +170733246980,441,0 +170733247028,441,0 +170733247076,300,1 +170733247158,300,1 +170733247235,442,0 +170733247283,442,0 +170733247333,442,0 +170733247382,442,0 +170733247432,442,0 +170733247481,442,0 +170733247531,441,0 +170733247580,442,0 +170733247628,441,0 +170733247678,442,0 +170733247726,442,0 +170733247774,441,0 +170733247823,442,0 +170733247871,442,0 +170733247919,442,0 +170733247967,442,0 +170733248015,442,0 +170733248064,441,0 +170733248112,441,0 +170733248160,283,1 +170733248242,439,0 +170733248290,442,0 +170733248338,442,0 +170733248386,442,0 +170733248434,442,0 +170733248482,442,0 +170733248532,442,0 +170733248581,442,0 +170733248631,442,0 +170733248679,441,0 +170733248728,442,0 +170733248776,442,0 +170733248824,442,0 +170733248872,442,0 +170733248920,442,0 +170733248970,442,0 +170733249018,442,0 +170733249067,442,0 +170733249115,442,0 +170733249165,437,0 +170733249212,293,1 +170733249297,440,0 +170733249345,442,0 +170733249393,442,0 +170733249441,442,0 +170733249489,442,0 +170733249538,442,0 +170733249588,442,0 +170733249635,442,0 +170733249683,441,0 +170733249733,442,0 +170733249782,442,0 +170733249830,442,0 +170733249878,442,0 +170733249928,442,0 +170733249977,442,0 +170733250025,442,0 +170733250073,441,0 +170733250123,442,0 +170733250171,442,0 +170733250219,405,0 +170733250267,305,1 +170733250351,440,0 +170733250399,441,0 +170733250449,441,0 +170733250497,441,0 +170733250545,442,0 +170733250593,442,0 +170733250641,442,0 +170733250689,442,0 +170733250737,442,0 +170733250785,442,0 +170733250833,441,0 +170733250882,442,0 +170733250932,442,0 +170733250981,442,0 +170733251029,442,0 +170733251079,442,0 +170733251127,442,0 +170733251175,441,0 +170733251223,442,0 +170733251270,415,0 +170733251318,291,1 +170733251395,440,0 +170733251443,442,0 +170733251491,442,0 +170733251539,442,0 +170733251587,442,0 +170733251635,442,0 +170733251683,442,0 +170733251733,442,0 +170733251782,442,0 +170733251832,442,0 +170733251880,442,0 +170733251928,442,0 +170733251977,442,0 +170733252025,442,0 +170733252073,442,0 +170733252121,442,0 +170733252169,442,0 +170733252218,442,0 +170733252266,441,0 +170733252316,439,0 +170733252364,290,1 +170733252447,440,0 +170733252495,442,0 +170733252545,442,0 +170733252594,441,0 +170733252642,442,0 +170733252690,441,0 +170733252738,442,0 +170733252788,441,0 +170733252837,441,0 +170733252885,442,0 +170733252933,441,0 +170733252981,442,0 +170733253031,441,0 +170733253080,442,0 +170733253128,442,0 +170733253178,442,0 +170733253226,442,0 +170733253274,441,0 +170733253323,441,0 +170733253373,285,1 +170733253451,284,1 +170733253531,442,0 +170733253579,442,0 +170733253627,442,0 +170733253677,442,0 +170733253726,442,0 +170733253774,442,0 +170733253822,442,0 +170733253870,442,0 +170733253920,442,0 +170733253968,442,0 +170733254016,441,0 +170733254064,442,0 +170733254112,442,0 +170733254160,442,0 +170733254209,442,0 +170733254257,442,0 +170733254305,442,0 +170733254353,441,0 +170733254402,441,0 +170733254450,295,1 +170733254532,439,0 +170733254582,441,0 +170733254631,442,0 +170733254679,442,0 +170733254727,442,0 +170733254775,442,0 +170733254825,442,0 +170733254873,442,0 +170733254920,442,0 +170733254970,442,0 +170733255018,442,0 +170733255066,442,0 +170733255115,442,0 +170733255163,442,0 +170733255211,442,0 +170733255259,442,0 +170733255309,442,0 +170733255357,442,0 +170733255405,442,0 +170733255453,441,0 +170733255501,290,1 +170733255586,440,0 +170733255634,442,0 +170733255684,442,0 +170733255732,442,0 +170733255780,442,0 +170733255828,442,0 +170733255876,442,0 +170733255925,442,0 +170733255973,442,0 +170733256021,442,0 +170733256071,442,0 +170733256119,442,0 +170733256168,442,0 +170733256216,442,0 +170733256264,442,0 +170733256312,442,0 +170733256362,442,0 +170733256411,442,0 +170733256459,442,0 +170733256507,425,0 +170733256557,285,1 +170733256643,441,0 +170733256692,442,0 +170733256740,442,0 +170733256790,442,0 +170733256838,441,0 +170733256888,442,0 +170733256937,442,0 +170733256985,442,0 +170733257033,442,0 +170733257081,442,0 +170733257129,442,0 +170733257177,442,0 +170733257225,442,0 +170733257273,442,0 +170733257321,442,0 +170733257371,442,0 +170733257420,442,0 +170733257470,441,0 +170733257518,442,0 +170733257567,307,1 +170733257651,247,0 +170733257698,441,0 +170733257748,442,0 +170733257796,442,0 +170733257844,442,0 +170733257893,442,0 +170733257943,442,0 +170733257992,442,0 +170733258040,442,0 +170733258090,442,0 +170733258139,442,0 +170733258187,442,0 +170733258235,442,0 +170733258283,442,0 +170733258333,441,0 +170733258382,442,0 +170733258432,441,0 +170733258481,441,0 +170733258529,442,0 +170733258577,442,0 +170733258627,263,0 +170733258676,292,1 +170733258761,441,0 +170733258809,442,0 +170733258857,442,0 +170733258906,442,0 +170733258956,442,0 +170733259004,442,0 +170733259053,441,0 +170733259101,442,0 +170733259149,442,0 +170733259199,442,0 +170733259247,442,0 +170733259295,442,0 +170733259342,442,0 +170733259390,442,0 +170733259438,442,0 +170733259488,442,0 +170733259536,442,0 +170733259584,441,0 +170733259632,441,0 +170733259679,267,0 +170733259727,304,1 +170733259808,442,0 +170733259856,442,0 +170733259904,441,0 +170733259954,442,0 +170733260002,442,0 +170733260051,442,0 +170733260099,442,0 +170733260149,441,0 +170733260197,441,0 +170733260246,442,0 +170733260294,442,0 +170733260342,442,0 +170733260390,442,0 +170733260438,441,0 +170733260486,442,0 +170733260534,442,0 +170733260583,442,0 +170733260633,442,0 +170733260681,441,0 +170733260730,296,1 +170733260814,439,0 +170733260864,441,0 +170733260912,442,0 +170733260960,442,0 +170733261008,441,0 +170733261055,442,0 +170733261105,442,0 +170733261153,442,0 +170733261201,442,0 +170733261251,442,0 +170733261299,442,0 +170733261346,442,0 +170733261396,441,0 +170733261445,442,0 +170733261493,442,0 +170733261541,442,0 +170733261591,442,0 +170733261639,442,0 +170733261687,442,0 +170733261735,441,0 +170733261783,295,1 +170733261869,438,0 +170733261919,442,0 +170733261968,442,0 +170733262016,442,0 +170733262065,442,0 +170733262113,442,0 +170733262161,442,0 +170733262209,442,0 +170733262259,442,0 +170733262307,442,0 +170733262355,442,0 +170733262404,442,0 +170733262452,442,0 +170733262500,442,0 +170733262548,442,0 +170733262596,442,0 +170733262644,442,0 +170733262692,442,0 +170733262740,441,0 +170733262789,441,0 +170733262837,285,1 +170733262922,439,0 +170733262971,441,0 +170733263021,442,0 +170733263070,442,0 +170733263120,442,0 +170733263168,442,0 +170733263216,442,0 +170733263264,442,0 +170733263312,441,0 +170733263359,442,0 +170733263407,442,0 +170733263455,442,0 +170733263503,442,0 +170733263551,442,0 +170733263599,442,0 +170733263648,442,0 +170733263696,442,0 +170733263744,442,0 +170733263792,441,0 +170733263840,440,0 +170733263888,295,1 +170733263972,441,0 +170733264020,442,0 +170733264067,442,0 +170733264115,442,0 +170733264163,442,0 +170733264211,442,0 +170733264259,442,0 +170733264308,442,0 +170733264356,442,0 +170733264406,442,0 +170733264455,442,0 +170733264503,442,0 +170733264553,442,0 +170733264600,442,0 +170733264648,442,0 +170733264698,441,0 +170733264746,442,0 +170733264795,441,0 +170733264843,441,0 +170733264891,441,0 +170733264939,275,1 +170733265022,439,0 +170733265071,442,0 +170733265119,442,0 +170733265167,442,0 +170733265215,442,0 +170733265265,441,0 +170733265314,442,0 +170733265364,442,0 +170733265411,442,0 +170733265459,442,0 +170733265507,442,0 +170733265557,442,0 +170733265606,442,0 +170733265654,442,0 +170733265702,442,0 +170733265752,441,0 +170733265800,442,0 +170733265848,442,0 +170733265897,442,0 +170733265947,441,0 +170733265995,442,0 +170733266043,442,0 +170733266091,442,0 +170733266139,442,0 +170733266187,442,0 +170733266235,442,0 +170733266283,442,0 +170733266332,442,0 +170733266380,442,0 +170733266430,441,0 +170733266479,283,1 +170733266567,244,0 +170733266616,441,0 +170733266664,442,0 +170733266712,442,0 +170733266762,442,0 +170733266811,442,0 +170733266861,442,0 +170733266910,441,0 +170733266958,442,0 +170733267008,442,0 +170733267056,442,0 +170733267104,442,0 +170733267153,442,0 +170733267203,442,0 +170733267252,442,0 +170733267302,442,0 +170733267350,442,0 +170733267398,441,0 +170733267446,442,0 +170733267494,441,0 +170733267543,289,1 +170733267627,439,0 +170733267675,442,0 +170733267723,442,0 +170733267772,442,0 +170733267820,442,0 +170733267868,442,0 +170733267916,442,0 +170733267964,442,0 +170733268012,442,0 +170733268061,442,0 +170733268109,442,0 +170733268157,442,0 +170733268207,442,0 +170733268255,442,0 +170733268304,442,0 +170733268352,442,0 +170733268400,441,0 +170733268448,442,0 +170733268498,441,0 +170733268546,441,0 +170733268595,292,1 +170733268679,438,0 +170733268727,442,0 +170733268775,442,0 +170733268823,442,0 +170733268871,442,0 +170733268919,442,0 +170733268967,442,0 +170733269015,441,0 +170733269062,442,0 +170733269112,442,0 +170733269160,442,0 +170733269208,442,0 +170733269256,441,0 +170733269305,442,0 +170733269355,442,0 +170733269403,442,0 +170733269451,442,0 +170733269500,442,0 +170733269548,442,0 +170733269598,440,0 +170733269646,303,1 +170733269733,440,0 +170733269782,442,0 +170733269832,442,0 +170733269880,442,0 +170733269930,442,0 +170733269977,442,0 +170733270027,442,0 +170733270075,441,0 +170733270123,442,0 +170733270171,442,0 +170733270219,442,0 +170733270267,442,0 +170733270315,442,0 +170733270363,442,0 +170733270411,442,0 +170733270459,442,0 +170733270507,442,0 +170733270555,442,0 +170733270603,441,0 +170733270651,435,0 +170733270700,307,1 +170733270787,441,0 +170733270835,442,0 +170733270883,442,0 +170733270932,442,0 +170733270980,442,0 +170733271028,441,0 +170733271076,442,0 +170733271124,442,0 +170733271172,442,0 +170733271220,442,0 +170733271268,441,0 +170733271316,442,0 +170733271366,442,0 +170733271414,442,0 +170733271461,441,0 +170733271511,442,0 +170733271559,441,0 +170733271609,441,0 +170733271656,441,0 +170733271704,381,0 +170733271752,310,0 +170733271800,246,0 +170733271850,441,0 +170733271898,442,0 +170733271946,442,0 +170733271994,442,0 +170733272042,441,0 +170733272090,442,0 +170733272138,441,0 +170733272186,442,0 +170733272233,442,0 +170733272281,442,0 +170733272329,442,0 +170733272379,442,0 +170733272427,441,0 +170733272475,442,0 +170733272524,442,0 +170733272572,442,0 +170733272622,441,0 +170733272670,442,0 +170733272718,441,0 +170733272766,309,1 +170733272855,233,0 +170733272903,442,0 +170733272951,442,0 +170733273001,442,0 +170733273049,442,0 +170733273097,441,0 +170733273145,442,0 +170733273193,441,0 +170733273241,442,0 +170733273289,441,0 +170733273336,442,0 +170733273384,441,0 +170733273432,442,0 +170733273480,441,0 +170733273530,441,0 +170733273578,442,0 +170733273626,442,0 +170733273675,442,0 +170733273725,442,0 +170733273773,441,0 +170733273821,257,0 +170733273869,286,1 +170733273952,441,0 +170733274000,442,0 +170733274048,442,0 +170733274098,442,0 +170733274146,442,0 +170733274194,442,0 +170733274241,442,0 +170733274289,442,0 +170733274337,442,0 +170733274385,442,0 +170733274433,441,0 +170733274481,442,0 +170733274529,442,0 +170733274577,442,0 +170733274624,442,0 +170733274672,442,0 +170733274720,442,0 +170733274768,441,0 +170733274816,441,0 +170733274865,303,1 +170733274947,237,0 +170733274997,441,0 +170733275045,441,0 +170733275094,442,0 +170733275142,442,0 +170733275190,442,0 +170733275238,441,0 +170733275286,442,0 +170733275334,442,0 +170733275382,442,0 +170733275430,442,0 +170733275477,442,0 +170733275525,442,0 +170733275573,441,0 +170733275621,442,0 +170733275671,442,0 +170733275721,441,0 +170733275768,442,0 +170733275818,441,0 +170733275866,441,0 +170733275915,304,1 +170733276001,313,0 +170733276051,442,0 +170733276100,442,0 +170733276150,441,0 +170733276198,442,0 +170733276247,442,0 +170733276295,442,0 +170733276343,441,0 +170733276391,442,0 +170733276440,442,0 +170733276488,441,0 +170733276536,441,0 +170733276584,441,0 +170733276632,441,0 +170733276680,442,0 +170733276730,442,0 +170733276779,442,0 +170733276829,442,0 +170733276877,441,0 +170733276924,441,0 +170733276972,293,1 +170733277057,438,0 +170733277107,442,0 +170733277156,442,0 +170733277204,442,0 +170733277252,441,0 +170733277300,442,0 +170733277348,442,0 +170733277396,442,0 +170733277445,442,0 +170733277493,441,0 +170733277543,442,0 +170733277591,442,0 +170733277640,442,0 +170733277688,441,0 +170733277738,442,0 +170733277787,442,0 +170733277835,442,0 +170733277883,442,0 +170733277933,441,0 +170733277982,441,0 +170733278032,285,1 +170733278111,438,0 +170733278159,442,0 +170733278207,442,0 +170733278255,442,0 +170733278303,442,0 +170733278351,442,0 +170733278399,442,0 +170733278447,442,0 +170733278497,441,0 +170733278545,442,0 +170733278592,441,0 +170733278642,441,0 +170733278690,442,0 +170733278738,441,0 +170733278786,442,0 +170733278835,442,0 +170733278883,442,0 +170733278933,442,0 +170733278981,441,0 +170733279029,441,0 +170733279078,302,1 +170733279161,438,0 +170733279209,442,0 +170733279257,442,0 +170733279305,442,0 +170733279353,442,0 +170733279401,442,0 +170733279449,441,0 +170733279497,442,0 +170733279545,441,0 +170733279593,441,0 +170733279641,441,0 +170733279690,442,0 +170733279740,442,0 +170733279789,441,0 +170733279837,441,0 +170733279885,442,0 +170733279933,442,0 +170733279983,442,0 +170733280031,442,0 +170733280080,441,0 +170733280128,288,1 +170733280208,438,0 +170733280256,442,0 +170733280304,441,0 +170733280352,441,0 +170733280402,442,0 +170733280450,442,0 +170733280498,441,0 +170733280546,442,0 +170733280594,442,0 +170733280641,442,0 +170733280689,442,0 +170733280737,442,0 +170733280787,441,0 +170733280836,441,0 +170733280884,442,0 +170733280933,442,0 +170733280981,442,0 +170733281031,442,0 +170733281079,441,0 +170733281127,441,0 +170733281175,270,1 +170733281263,439,0 +170733281311,441,0 +170733281361,441,0 +170733281409,442,0 +170733281457,442,0 +170733281505,442,0 +170733281553,442,0 +170733281601,442,0 +170733281650,442,0 +170733281698,441,0 +170733281748,441,0 +170733281796,441,0 +170733281844,441,0 +170733281891,441,0 +170733281939,442,0 +170733281987,442,0 +170733282037,442,0 +170733282085,442,0 +170733282134,441,0 +170733282182,434,0 +170733282230,287,1 +170733282318,440,0 +170733282366,442,0 +170733282415,442,0 +170733282463,442,0 +170733282511,442,0 +170733282560,442,0 +170733282608,442,0 +170733282656,442,0 +170733282706,442,0 +170733282754,442,0 +170733282802,441,0 +170733282850,441,0 +170733282898,442,0 +170733282946,442,0 +170733282994,442,0 +170733283042,442,0 +170733283090,442,0 +170733283138,441,0 +170733283187,441,0 +170733283235,275,1 +170733283316,307,1 +170733283391,441,0 +170733283440,441,0 +170733283488,442,0 +170733283536,441,0 +170733283584,442,0 +170733283634,441,0 +170733283682,442,0 +170733283731,442,0 +170733283781,442,0 +170733283829,442,0 +170733283877,442,0 +170733283925,441,0 +170733283972,442,0 +170733284020,442,0 +170733284068,442,0 +170733284116,442,0 +170733284164,441,0 +170733284212,442,0 +170733284260,441,0 +170733284308,296,1 +170733284391,420,0 +170733284439,441,0 +170733284487,442,0 +170733284535,442,0 +170733284583,442,0 +170733284631,442,0 +170733284679,442,0 +170733284727,442,0 +170733284775,442,0 +170733284822,441,0 +170733284872,441,0 +170733284920,441,0 +170733284968,442,0 +170733285016,442,0 +170733285065,442,0 +170733285115,441,0 +170733285163,441,0 +170733285211,442,0 +170733285260,441,0 +170733285310,441,0 +170733285358,304,1 +170733285448,439,0 +170733285496,441,0 +170733285544,442,0 +170733285592,441,0 +170733285640,441,0 +170733285688,441,0 +170733285736,441,0 +170733285786,441,0 +170733285834,442,0 +170733285882,442,0 +170733285931,442,0 +170733285981,442,0 +170733286028,442,0 +170733286076,442,0 +170733286124,442,0 +170733286172,442,0 +170733286220,441,0 +170733286270,442,0 +170733286318,441,0 +170733286366,441,0 +170733286415,291,1 +170733286499,437,0 +170733286547,441,0 +170733286596,441,0 +170733286646,442,0 +170733286694,442,0 +170733286743,441,0 +170733286791,441,0 +170733286839,442,0 +170733286887,441,0 +170733286935,442,0 +170733286983,441,0 +170733287031,441,0 +170733287079,442,0 +170733287127,441,0 +170733287175,442,0 +170733287223,442,0 +170733287271,441,0 +170733287319,441,0 +170733287367,441,0 +170733287416,441,0 +170733287464,305,1 +170733287549,435,0 +170733287597,441,0 +170733287645,442,0 +170733287693,442,0 +170733287741,441,0 +170733287789,441,0 +170733287836,441,0 +170733287886,441,0 +170733287934,442,0 +170733287984,441,0 +170733288033,442,0 +170733288081,442,0 +170733288129,441,0 +170733288177,441,0 +170733288225,441,0 +170733288273,442,0 +170733288321,442,0 +170733288370,441,0 +170733288418,441,0 +170733288466,441,0 +170733288514,290,1 +170733288595,433,0 +170733288643,441,0 +170733288691,442,0 +170733288739,442,0 +170733288787,442,0 +170733288835,441,0 +170733288883,441,0 +170733288931,441,0 +170733288979,441,0 +170733289027,442,0 +170733289076,441,0 +170733289124,441,0 +170733289174,442,0 +170733289222,441,0 +170733289270,441,0 +170733289319,441,0 +170733289367,442,0 +170733289415,441,0 +170733289463,441,0 +170733289511,441,0 +170733289559,282,1 +170733289650,439,0 +170733289698,441,0 +170733289746,441,0 +170733289794,441,0 +170733289842,442,0 +170733289890,441,0 +170733289938,441,0 +170733289985,442,0 +170733290033,441,0 +170733290083,442,0 +170733290131,441,0 +170733290179,441,0 +170733290227,441,0 +170733290276,441,0 +170733290324,441,0 +170733290372,441,0 +170733290422,441,0 +170733290470,441,0 +170733290518,441,0 +170733290566,441,0 +170733290613,276,1 +170733290696,437,0 +170733290744,442,0 +170733290791,441,0 +170733290841,442,0 +170733290889,442,0 +170733290937,442,0 +170733290986,441,0 +170733291036,441,0 +170733291085,442,0 +170733291133,441,0 +170733291181,441,0 +170733291229,441,0 +170733291277,441,0 +170733291325,441,0 +170733291373,442,0 +170733291421,442,0 +170733291469,441,0 +170733291516,441,0 +170733291564,441,0 +170733291612,441,0 +170733291660,284,1 +170733291747,438,0 +170733291795,441,0 +170733291843,441,0 +170733291892,441,0 +170733291940,442,0 +170733291989,442,0 +170733292037,442,0 +170733292087,441,0 +170733292135,441,0 +170733292183,441,0 +170733292231,441,0 +170733292280,441,0 +170733292328,441,0 +170733292378,441,0 +170733292426,441,0 +170733292474,441,0 +170733292522,441,0 +170733292570,441,0 +170733292619,441,0 +170733292669,440,0 +170733292717,301,1 +170733292803,440,0 +170733292851,441,0 +170733292899,441,0 +170733292948,441,0 +170733292998,441,0 +170733293047,441,0 +170733293095,441,0 +170733293145,441,0 +170733293193,442,0 +170733293241,441,0 +170733293289,442,0 +170733293337,441,0 +170733293385,441,0 +170733293432,441,0 +170733293480,441,0 +170733293530,441,0 +170733293578,442,0 +170733293626,441,0 +170733293674,441,0 +170733293722,423,0 +170733293770,297,1 +170733293858,440,0 +170733293908,441,0 +170733293956,442,0 +170733294004,441,0 +170733294052,442,0 +170733294100,441,0 +170733294149,441,0 +170733294197,441,0 +170733294247,442,0 +170733294296,441,0 +170733294346,442,0 +170733294394,442,0 +170733294443,441,0 +170733294491,441,0 +170733294539,441,0 +170733294588,441,0 +170733294638,441,0 +170733294686,441,0 +170733294735,441,0 +170733294783,291,1 +170733294867,291,1 +170733294952,441,0 +170733295000,441,0 +170733295049,441,0 +170733295097,441,0 +170733295147,441,0 +170733295196,441,0 +170733295244,441,0 +170733295292,442,0 +170733295340,441,0 +170733295388,441,0 +170733295436,442,0 +170733295484,441,0 +170733295532,441,0 +170733295580,441,0 +170733295628,442,0 +170733295675,442,0 +170733295723,442,0 +170733295771,441,0 +170733295819,441,0 +170733295867,310,0 +170733295915,287,1 +170733295998,441,0 +170733296045,441,0 +170733296093,441,0 +170733296141,441,0 +170733296189,441,0 +170733296237,442,0 +170733296285,441,0 +170733296334,441,0 +170733296384,441,0 +170733296433,441,0 +170733296481,441,0 +170733296529,442,0 +170733296577,441,0 +170733296627,441,0 +170733296675,441,0 +170733296723,441,0 +170733296772,442,0 +170733296820,441,0 +170733296868,441,0 +170733296916,287,1 +170733297009,440,0 +170733297059,441,0 +170733297107,442,0 +170733297156,442,0 +170733297204,442,0 +170733297252,441,0 +170733297300,442,0 +170733297350,442,0 +170733297398,441,0 +170733297446,441,0 +170733297494,441,0 +170733297542,442,0 +170733297590,442,0 +170733297639,442,0 +170733297689,442,0 +170733297737,441,0 +170733297785,441,0 +170733297834,441,0 +170733297882,441,0 +170733297930,296,1 +170733298018,237,0 +170733298068,441,0 +170733298117,441,0 +170733298167,442,0 +170733298215,442,0 +170733298262,442,0 +170733298310,441,0 +170733298360,442,0 +170733298410,442,0 +170733298457,441,0 +170733298506,442,0 +170733298553,441,0 +170733298601,441,0 +170733298649,441,0 +170733298699,442,0 +170733298747,441,0 +170733298797,441,0 +170733298846,441,0 +170733298896,441,0 +170733298944,441,0 +170733298993,301,1 +170733299078,437,0 +170733299126,441,0 +170733299174,441,0 +170733299222,442,0 +170733299270,442,0 +170733299318,441,0 +170733299366,441,0 +170733299415,442,0 +170733299465,441,0 +170733299514,441,0 +170733299562,441,0 +170733299612,441,0 +170733299660,441,0 +170733299708,441,0 +170733299757,442,0 +170733299805,441,0 +170733299853,441,0 +170733299901,441,0 +170733299949,441,0 +170733299998,441,0 +170733300046,295,1 +170733300136,439,0 +170733300186,441,0 +170733300234,441,0 +170733300282,442,0 +170733300330,441,0 +170733300378,441,0 +170733300426,441,0 +170733300473,441,0 +170733300521,441,0 +170733300571,442,0 +170733300619,441,0 +170733300667,442,0 +170733300716,441,0 +170733300764,441,0 +170733300812,441,0 +170733300862,441,0 +170733300910,441,0 +170733300958,442,0 +170733301007,441,0 +170733301055,440,0 +170733301103,309,1 +170733301190,439,0 +170733301238,441,0 +170733301288,441,0 +170733301335,441,0 +170733301385,441,0 +170733301435,442,0 +170733301483,442,0 +170733301532,441,0 +170733301580,441,0 +170733301628,441,0 +170733301676,441,0 +170733301724,441,0 +170733301773,441,0 +170733301823,441,0 +170733301873,441,0 +170733301920,441,0 +170733301968,442,0 +170733302016,441,0 +170733302064,441,0 +170733302112,441,0 +170733302162,303,1 +170733302251,439,0 +170733302299,441,0 +170733302347,441,0 +170733302396,441,0 +170733302444,441,0 +170733302492,442,0 +170733302540,442,0 +170733302588,441,0 +170733302636,441,0 +170733302684,442,0 +170733302732,442,0 +170733302779,442,0 +170733302827,442,0 +170733302875,442,0 +170733302925,441,0 +170733302973,441,0 +170733303021,442,0 +170733303069,441,0 +170733303116,442,0 +170733303164,441,0 +170733303212,294,1 +170733303295,438,0 +170733303343,442,0 +170733303391,441,0 +170733303440,441,0 +170733303488,441,0 +170733303538,441,0 +170733303588,441,0 +170733303636,441,0 +170733303685,441,0 +170733303735,441,0 +170733303784,441,0 +170733303832,442,0 +170733303880,442,0 +170733303930,442,0 +170733303978,442,0 +170733304026,441,0 +170733304073,441,0 +170733304123,441,0 +170733304172,441,0 +170733304220,291,1 +170733304307,241,0 +170733304356,441,0 +170733304406,441,0 +170733304455,441,0 +170733304503,442,0 +170733304551,441,0 +170733304601,441,0 +170733304649,441,0 +170733304697,442,0 +170733304745,442,0 +170733304794,441,0 +170733304842,441,0 +170733304890,441,0 +170733304938,441,0 +170733304986,441,0 +170733305034,441,0 +170733305082,441,0 +170733305130,442,0 +170733305179,441,0 +170733305227,441,0 +170733305275,298,1 +170733305368,436,0 +170733305416,441,0 +170733305464,441,0 +170733305514,441,0 +170733305562,441,0 +170733305611,441,0 +170733305661,441,0 +170733305710,441,0 +170733305760,441,0 +170733305809,441,0 +170733305857,441,0 +170733305905,441,0 +170733305953,441,0 +170733306001,442,0 +170733306049,441,0 +170733306097,441,0 +170733306145,442,0 +170733306193,441,0 +170733306241,441,0 +170733306289,441,0 +170733306337,301,1 +170733306425,438,0 +170733306475,441,0 +170733306523,442,0 +170733306572,442,0 +170733306620,441,0 +170733306668,441,0 +170733306718,442,0 +170733306765,441,0 +170733306815,441,0 +170733306863,442,0 +170733306912,442,0 +170733306960,442,0 +170733307010,441,0 +170733307058,441,0 +170733307106,441,0 +170733307154,441,0 +170733307203,442,0 +170733307251,441,0 +170733307299,441,0 +170733307349,419,0 +170733307397,293,1 +170733307481,440,0 +170733307529,442,0 +170733307577,441,0 +170733307625,442,0 +170733307673,441,0 +170733307723,441,0 +170733307771,441,0 +170733307820,441,0 +170733307870,442,0 +170733307919,441,0 +170733307969,442,0 +170733308018,441,0 +170733308068,441,0 +170733308116,442,0 +170733308165,441,0 +170733308213,442,0 +170733308263,441,0 +170733308312,441,0 +170733308360,441,0 +170733308408,298,1 +170733308491,271,1 +170733308574,442,0 +170733308622,441,0 +170733308670,442,0 +170733308719,441,0 +170733308767,441,0 +170733308817,441,0 +170733308865,441,0 +170733308914,441,0 +170733308962,441,0 +170733309010,441,0 +170733309060,442,0 +170733309108,441,0 +170733309156,441,0 +170733309204,441,0 +170733309252,442,0 +170733309301,441,0 +170733309349,442,0 +170733309397,441,0 +170733309445,441,0 +170733309493,299,1 +170733309580,438,0 +170733309630,441,0 +170733309678,441,0 +170733309727,441,0 +170733309775,441,0 +170733309825,441,0 +170733309874,441,0 +170733309922,441,0 +170733309970,441,0 +170733310018,441,0 +170733310066,442,0 +170733310114,441,0 +170733310164,442,0 +170733310212,442,0 +170733310261,441,0 +170733310309,442,0 +170733310357,441,0 +170733310407,441,0 +170733310455,441,0 +170733310504,402,0 +170733310552,302,1 +170733310633,439,0 +170733310682,441,0 +170733310732,441,0 +170733310781,441,0 +170733310831,441,0 +170733310880,441,0 +170733310928,441,0 +170733310978,442,0 +170733311026,441,0 +170733311074,441,0 +170733311122,441,0 +170733311170,441,0 +170733311218,442,0 +170733311266,442,0 +170733311314,441,0 +170733311362,442,0 +170733311411,442,0 +170733311459,441,0 +170733311507,441,0 +170733311555,287,1 +170733311639,256,0 +170733311688,441,0 +170733311738,442,0 +170733311786,441,0 +170733311835,442,0 +170733311885,442,0 +170733311933,441,0 +170733311981,442,0 +170733312030,441,0 +170733312078,442,0 +170733312126,442,0 +170733312176,442,0 +170733312224,441,0 +170733312272,441,0 +170733312320,441,0 +170733312369,442,0 +170733312417,442,0 +170733312465,442,0 +170733312513,441,0 +170733312561,441,0 +170733312609,282,1 +170733312699,242,0 +170733312747,441,0 +170733312795,442,0 +170733312844,441,0 +170733312894,442,0 +170733312942,442,0 +170733312990,442,0 +170733313038,441,0 +170733313086,442,0 +170733313134,442,0 +170733313182,442,0 +170733313230,442,0 +170733313279,442,0 +170733313327,442,0 +170733313375,441,0 +170733313425,442,0 +170733313473,442,0 +170733313521,442,0 +170733313569,442,0 +170733313618,441,0 +170733313668,307,1 +170733313756,436,0 +170733313805,441,0 +170733313855,441,0 +170733313903,441,0 +170733313951,441,0 +170733313999,441,0 +170733314048,441,0 +170733314096,441,0 +170733314144,442,0 +170733314192,442,0 +170733314239,442,0 +170733314287,442,0 +170733314335,441,0 +170733314383,441,0 +170733314431,442,0 +170733314479,442,0 +170733314527,442,0 +170733314577,442,0 +170733314626,441,0 +170733314676,441,0 +170733314724,302,1 +170733314805,437,0 +170733314853,441,0 +170733314901,441,0 +170733314950,441,0 +170733314998,442,0 +170733315046,441,0 +170733315096,441,0 +170733315144,441,0 +170733315193,442,0 +170733315241,442,0 +170733315289,442,0 +170733315339,442,0 +170733315387,441,0 +170733315435,442,0 +170733315484,441,0 +170733315532,441,0 +170733315582,441,0 +170733315631,441,0 +170733315679,441,0 +170733315729,441,0 +170733315777,284,1 +170733315857,437,0 +170733315910,441,0 +170733315958,442,0 +170733316006,442,0 +170733316055,441,0 +170733316103,441,0 +170733316151,441,0 +170733316200,442,0 +170733316250,441,0 +170733316299,441,0 +170733316349,442,0 +170733316397,442,0 +170733316445,442,0 +170733316493,442,0 +170733316542,442,0 +170733316590,442,0 +170733316640,441,0 +170733316688,442,0 +170733316737,441,0 +170733316785,441,0 +170733316833,311,0 +170733316881,285,1 +170733316969,441,0 +170733317017,442,0 +170733317066,441,0 +170733317114,442,0 +170733317162,442,0 +170733317210,442,0 +170733317259,441,0 +170733317307,441,0 +170733317355,441,0 +170733317405,442,0 +170733317453,442,0 +170733317501,441,0 +170733317549,441,0 +170733317597,442,0 +170733317646,441,0 +170733317694,441,0 +170733317742,441,0 +170733317791,441,0 +170733317839,441,0 +170733317887,297,1 +170733317969,438,0 +170733318017,441,0 +170733318065,441,0 +170733318114,441,0 +170733318162,442,0 +170733318210,441,0 +170733318258,441,0 +170733318306,441,0 +170733318355,442,0 +170733318403,441,0 +170733318453,442,0 +170733318501,441,0 +170733318550,442,0 +170733318600,442,0 +170733318648,441,0 +170733318697,442,0 +170733318745,441,0 +170733318793,441,0 +170733318843,441,0 +170733318891,440,0 +170733318938,302,1 +170733319022,440,0 +170733319070,441,0 +170733319118,441,0 +170733319166,442,0 +170733319216,441,0 +170733319264,441,0 +170733319313,442,0 +170733319361,442,0 +170733319409,442,0 +170733319457,441,0 +170733319505,442,0 +170733319555,442,0 +170733319603,441,0 +170733319651,442,0 +170733319699,442,0 +170733319747,441,0 +170733319794,442,0 +170733319842,441,0 +170733319892,441,0 +170733319941,402,0 +170733319989,308,1 +170733320076,440,0 +170733320126,442,0 +170733320175,441,0 +170733320223,442,0 +170733320271,442,0 +170733320321,441,0 +170733320369,441,0 +170733320417,442,0 +170733320464,441,0 +170733320514,442,0 +170733320562,442,0 +170733320610,442,0 +170733320658,442,0 +170733320706,441,0 +170733320755,441,0 +170733320803,442,0 +170733320853,441,0 +170733320901,442,0 +170733320949,441,0 +170733320997,296,1 +170733321080,294,1 +170733321164,441,0 +170733321212,442,0 +170733321260,441,0 +170733321308,441,0 +170733321357,441,0 +170733321405,441,0 +170733321455,442,0 +170733321503,441,0 +170733321551,442,0 +170733321598,442,0 +170733321648,442,0 +170733321696,441,0 +170733321745,442,0 +170733321793,442,0 +170733321841,442,0 +170733321889,441,0 +170733321937,442,0 +170733321985,441,0 +170733322033,441,0 +170733322081,296,1 +170733322165,439,0 +170733322213,441,0 +170733322261,442,0 +170733322309,441,0 +170733322357,441,0 +170733322405,442,0 +170733322453,441,0 +170733322501,441,0 +170733322549,441,0 +170733322598,442,0 +170733322648,441,0 +170733322697,442,0 +170733322745,441,0 +170733322795,441,0 +170733322843,441,0 +170733322891,442,0 +170733322938,441,0 +170733322986,442,0 +170733323034,441,0 +170733323082,437,0 +170733323132,297,1 +170733323211,438,0 +170733323259,441,0 +170733323307,441,0 +170733323355,441,0 +170733323403,441,0 +170733323451,441,0 +170733323499,441,0 +170733323549,441,0 +170733323597,442,0 +170733323646,441,0 +170733323696,441,0 +170733323743,441,0 +170733323793,441,0 +170733323841,441,0 +170733323889,442,0 +170733323937,442,0 +170733323985,442,0 +170733324034,441,0 +170733324082,441,0 +170733324132,441,0 +170733324180,304,1 +170733324264,437,0 +170733324313,441,0 +170733324361,441,0 +170733324410,441,0 +170733324460,442,0 +170733324508,441,0 +170733324557,442,0 +170733324605,441,0 +170733324653,441,0 +170733324703,441,0 +170733324751,441,0 +170733324799,441,0 +170733324848,441,0 +170733324898,441,0 +170733324946,441,0 +170733324994,441,0 +170733325042,442,0 +170733325091,441,0 +170733325139,441,0 +170733325189,441,0 +170733325238,297,1 +170733325324,440,0 +170733325372,441,0 +170733325419,441,0 +170733325467,441,0 +170733325517,441,0 +170733325565,441,0 +170733325613,441,0 +170733325662,441,0 +170733325712,441,0 +170733325760,442,0 +170733325808,441,0 +170733325857,441,0 +170733325907,442,0 +170733325955,441,0 +170733326004,442,0 +170733326052,442,0 +170733326100,442,0 +170733326148,441,0 +170733326196,441,0 +170733326244,298,1 +170733326329,284,1 +170733326415,442,0 +170733326463,442,0 +170733326511,441,0 +170733326559,441,0 +170733326607,441,0 +170733326656,441,0 +170733326704,441,0 +170733326752,442,0 +170733326802,442,0 +170733326850,442,0 +170733326899,442,0 +170733326947,441,0 +170733326995,441,0 +170733327045,442,0 +170733327093,441,0 +170733327141,441,0 +170733327189,441,0 +170733327238,441,0 +170733327288,275,1 +170733327369,302,1 +170733327449,441,0 +170733327498,442,0 +170733327548,441,0 +170733327597,442,0 +170733327647,442,0 +170733327695,441,0 +170733327743,441,0 +170733327791,441,0 +170733327839,442,0 +170733327887,442,0 +170733327935,442,0 +170733327982,441,0 +170733328030,442,0 +170733328080,442,0 +170733328129,442,0 +170733328177,442,0 +170733328227,442,0 +170733328275,442,0 +170733328323,441,0 +170733328372,305,1 +170733328459,439,0 +170733328507,441,0 +170733328555,442,0 +170733328603,441,0 +170733328652,441,0 +170733328702,441,0 +170733328751,441,0 +170733328799,441,0 +170733328847,442,0 +170733328897,441,0 +170733328946,442,0 +170733328996,441,0 +170733329045,442,0 +170733329093,442,0 +170733329141,441,0 +170733329189,442,0 +170733329237,442,0 +170733329285,442,0 +170733329333,441,0 +170733329383,427,0 +170733329431,259,0 +170733329480,248,0 +170733329528,441,0 +170733329576,441,0 +170733329624,441,0 +170733329672,442,0 +170733329720,441,0 +170733329769,442,0 +170733329819,441,0 +170733329867,441,0 +170733329916,441,0 +170733329966,442,0 +170733330015,442,0 +170733330065,441,0 +170733330114,442,0 +170733330162,441,0 +170733330212,442,0 +170733330262,441,0 +170733330311,442,0 +170733330359,441,0 +170733330408,441,0 +170733330456,303,1 +170733330543,435,0 +170733330591,441,0 +170733330641,441,0 +170733330689,442,0 +170733330738,441,0 +170733330786,441,0 +170733330834,441,0 +170733330884,441,0 +170733330933,442,0 +170733330983,441,0 +170733331032,441,0 +170733331080,442,0 +170733331130,442,0 +170733331178,441,0 +170733331227,441,0 +170733331275,442,0 +170733331325,442,0 +170733331373,441,0 +170733331422,441,0 +170733331472,441,0 +170733331520,290,1 +170733331603,438,0 +170733331653,442,0 +170733331702,441,0 +170733331750,441,0 +170733331800,441,0 +170733331849,442,0 +170733331897,441,0 +170733331945,441,0 +170733331995,442,0 +170733332043,442,0 +170733332091,442,0 +170733332139,441,0 +170733332187,442,0 +170733332235,441,0 +170733332284,442,0 +170733332334,441,0 +170733332382,442,0 +170733332431,441,0 +170733332479,442,0 +170733332527,441,0 +170733332575,290,1 +170733332657,438,0 +170733332705,441,0 +170733332753,441,0 +170733332801,442,0 +170733332850,441,0 +170733332898,441,0 +170733332948,441,0 +170733332997,442,0 +170733333045,441,0 +170733333095,442,0 +170733333143,441,0 +170733333191,442,0 +170733333239,442,0 +170733333288,441,0 +170733333336,441,0 +170733333384,441,0 +170733333434,442,0 +170733333481,442,0 +170733333529,441,0 +170733333577,390,0 +170733333625,297,1 +170733333710,440,0 +170733333759,442,0 +170733333807,441,0 +170733333857,441,0 +170733333906,441,0 +170733333956,441,0 +170733334004,442,0 +170733334053,442,0 +170733334101,442,0 +170733334151,442,0 +170733334199,442,0 +170733334247,442,0 +170733334294,441,0 +170733334344,441,0 +170733334392,442,0 +170733334440,441,0 +170733334488,442,0 +170733334537,441,0 +170733334587,442,0 +170733334636,435,0 +170733334686,290,1 +170733334771,441,0 +170733334820,441,0 +170733334868,441,0 +170733334916,441,0 +170733334964,441,0 +170733335012,442,0 +170733335060,442,0 +170733335110,441,0 +170733335158,442,0 +170733335206,442,0 +170733335254,441,0 +170733335301,442,0 +170733335349,441,0 +170733335397,441,0 +170733335445,441,0 +170733335493,442,0 +170733335541,441,0 +170733335591,441,0 +170733335639,441,0 +170733335688,266,0 +170733335736,289,1 +170733335820,441,0 +170733335869,442,0 +170733335917,441,0 +170733335965,442,0 +170733336013,441,0 +170733336061,442,0 +170733336109,442,0 +170733336157,442,0 +170733336206,442,0 +170733336256,441,0 +170733336304,441,0 +170733336352,441,0 +170733336400,442,0 +170733336449,441,0 +170733336497,442,0 +170733336545,441,0 +170733336593,442,0 +170733336643,441,0 +170733336692,441,0 +170733336740,314,0 +170733336790,311,0 +170733336838,436,0 +170733336886,441,0 +170733336933,441,0 +170733336981,441,0 +170733337029,442,0 +170733337077,441,0 +170733337125,441,0 +170733337175,442,0 +170733337223,442,0 +170733337271,441,0 +170733337319,441,0 +170733337366,442,0 +170733337414,441,0 +170733337462,442,0 +170733337510,441,0 +170733337560,442,0 +170733337608,442,0 +170733337656,442,0 +170733337705,441,0 +170733337753,441,0 +170733337801,304,1 +170733337884,275,1 +170733337964,441,0 +170733338012,441,0 +170733338062,441,0 +170733338110,442,0 +170733338158,442,0 +170733338205,441,0 +170733338253,441,0 +170733338303,441,0 +170733338351,441,0 +170733338399,441,0 +170733338447,441,0 +170733338495,441,0 +170733338543,442,0 +170733338592,442,0 +170733338640,442,0 +170733338688,441,0 +170733338736,441,0 +170733338784,441,0 +170733338832,441,0 +170733338880,309,1 +170733338971,441,0 +170733339019,441,0 +170733339067,441,0 +170733339115,441,0 +170733339163,441,0 +170733339211,442,0 +170733339259,442,0 +170733339306,441,0 +170733339354,441,0 +170733339402,441,0 +170733339450,442,0 +170733339498,441,0 +170733339546,441,0 +170733339594,442,0 +170733339642,441,0 +170733339690,441,0 +170733339738,441,0 +170733339786,441,0 +170733339834,441,0 +170733339882,325,0 +170733339931,266,0 +170733339979,234,0 +170733340027,441,0 +170733340075,441,0 +170733340123,442,0 +170733340171,442,0 +170733340219,442,0 +170733340267,442,0 +170733340315,441,0 +170733340363,441,0 +170733340411,442,0 +170733340461,441,0 +170733340508,441,0 +170733340558,441,0 +170733340606,441,0 +170733340655,441,0 +170733340703,441,0 +170733340751,441,0 +170733340799,441,0 +170733340847,441,0 +170733340895,441,0 +170733340943,297,1 +170733341029,234,0 +170733341077,441,0 +170733341125,441,0 +170733341173,442,0 +170733341222,442,0 +170733341270,441,0 +170733341318,441,0 +170733341366,442,0 +170733341414,442,0 +170733341462,442,0 +170733341510,441,0 +170733341560,442,0 +170733341609,442,0 +170733341657,441,0 +170733341705,441,0 +170733341753,442,0 +170733341802,442,0 +170733341850,441,0 +170733341898,441,0 +170733341948,441,0 +170733341997,292,1 +170733342085,436,0 +170733342133,441,0 +170733342181,441,0 +170733342230,441,0 +170733342278,442,0 +170733342326,442,0 +170733342376,441,0 +170733342424,441,0 +170733342472,441,0 +170733342520,441,0 +170733342569,441,0 +170733342619,442,0 +170733342667,441,0 +170733342715,442,0 +170733342764,442,0 +170733342812,441,0 +170733342860,441,0 +170733342908,441,0 +170733342956,442,0 +170733343004,441,0 +170733343052,297,1 +170733343134,437,0 +170733343183,441,0 +170733343231,442,0 +170733343281,442,0 +170733343329,442,0 +170733343378,441,0 +170733343426,442,0 +170733343474,442,0 +170733343522,441,0 +170733343572,442,0 +170733343621,441,0 +170733343669,441,0 +170733343719,441,0 +170733343766,441,0 +170733343814,442,0 +170733343862,442,0 +170733343912,442,0 +170733343962,441,0 +170733344010,441,0 +170733344057,441,0 +170733344105,279,1 +170733344197,439,0 +170733344247,441,0 +170733344295,442,0 +170733344343,442,0 +170733344391,441,0 +170733344440,441,0 +170733344488,441,0 +170733344536,441,0 +170733344584,442,0 +170733344634,441,0 +170733344682,441,0 +170733344730,441,0 +170733344779,441,0 +170733344827,442,0 +170733344875,441,0 +170733344923,442,0 +170733344971,442,0 +170733345020,442,0 +170733345068,442,0 +170733345116,441,0 +170733345164,289,1 +170733345251,439,0 +170733345299,441,0 +170733345349,441,0 +170733345398,441,0 +170733345448,442,0 +170733345495,441,0 +170733345543,442,0 +170733345591,442,0 +170733345639,442,0 +170733345687,442,0 +170733345737,441,0 +170733345786,442,0 +170733345834,442,0 +170733345882,441,0 +170733345930,441,0 +170733345978,441,0 +170733346028,441,0 +170733346077,441,0 +170733346125,441,0 +170733346175,434,0 +170733346223,300,1 +170733346315,441,0 +170733346363,442,0 +170733346411,441,0 +170733346459,441,0 +170733346507,441,0 +170733346555,442,0 +170733346603,441,0 +170733346653,441,0 +170733346702,441,0 +170733346750,441,0 +170733346798,442,0 +170733346848,442,0 +170733346897,442,0 +170733346945,442,0 +170733346993,441,0 +170733347043,441,0 +170733347092,441,0 +170733347141,442,0 +170733347189,441,0 +170733347237,275,1 +170733347324,252,0 +170733347372,441,0 +170733347421,441,0 +170733347471,441,0 +170733347519,441,0 +170733347567,442,0 +170733347614,441,0 +170733347664,441,0 +170733347712,442,0 +170733347760,441,0 +170733347808,442,0 +170733347856,441,0 +170733347904,442,0 +170733347952,441,0 +170733348000,442,0 +170733348048,441,0 +170733348096,441,0 +170733348144,442,0 +170733348192,441,0 +170733348241,441,0 +170733348289,283,1 +170733348369,247,0 +170733348417,441,0 +170733348465,441,0 +170733348515,441,0 +170733348563,442,0 +170733348611,441,0 +170733348660,442,0 +170733348708,442,0 +170733348756,442,0 +170733348804,441,0 +170733348852,442,0 +170733348900,442,0 +170733348948,442,0 +170733348996,442,0 +170733349046,442,0 +170733349094,442,0 +170733349142,442,0 +170733349189,441,0 +170733349237,441,0 +170733349287,441,0 +170733349336,302,1 +170733349421,246,0 +170733349471,441,0 +170733349520,441,0 +170733349568,442,0 +170733349618,442,0 +170733349666,441,0 +170733349714,441,0 +170733349762,441,0 +170733349811,442,0 +170733349859,441,0 +170733349907,442,0 +170733349955,442,0 +170733350004,441,0 +170733350054,441,0 +170733350103,442,0 +170733350153,442,0 +170733350201,441,0 +170733350249,441,0 +170733350297,441,0 +170733350346,441,0 +170733350396,269,0 +170733350444,292,1 +170733350532,441,0 +170733350580,442,0 +170733350628,441,0 +170733350675,441,0 +170733350723,441,0 +170733350771,441,0 +170733350821,441,0 +170733350869,441,0 +170733350918,441,0 +170733350968,441,0 +170733351016,441,0 +170733351065,441,0 +170733351115,441,0 +170733351163,441,0 +170733351211,442,0 +170733351259,441,0 +170733351308,442,0 +170733351356,441,0 +170733351406,441,0 +170733351454,278,1 +170733351538,440,0 +170733351586,442,0 +170733351634,442,0 +170733351684,441,0 +170733351733,442,0 +170733351781,442,0 +170733351831,441,0 +170733351880,441,0 +170733351930,441,0 +170733351979,441,0 +170733352029,442,0 +170733352076,442,0 +170733352124,442,0 +170733352174,442,0 +170733352224,441,0 +170733352272,441,0 +170733352321,441,0 +170733352369,442,0 +170733352417,442,0 +170733352465,291,1 +170733352548,285,1 +170733352628,441,0 +170733352678,441,0 +170733352727,441,0 +170733352775,442,0 +170733352823,441,0 +170733352873,442,0 +170733352921,442,0 +170733352969,442,0 +170733353017,441,0 +170733353065,442,0 +170733353114,442,0 +170733353162,442,0 +170733353210,441,0 +170733353258,442,0 +170733353306,441,0 +170733353355,442,0 +170733353403,441,0 +170733353451,442,0 +170733353499,441,0 +170733353549,295,1 +170733353631,437,0 +170733353679,441,0 +170733353728,441,0 +170733353776,441,0 +170733353826,441,0 +170733353874,442,0 +170733353923,441,0 +170733353971,441,0 +170733354021,442,0 +170733354070,442,0 +170733354118,442,0 +170733354168,441,0 +170733354216,441,0 +170733354265,442,0 +170733354315,441,0 +170733354363,441,0 +170733354412,441,0 +170733354460,442,0 +170733354508,441,0 +170733354556,441,0 +170733354604,297,1 +170733354698,440,0 +170733354747,441,0 +170733354797,442,0 +170733354846,442,0 +170733354894,442,0 +170733354944,441,0 +170733354992,442,0 +170733355040,442,0 +170733355088,442,0 +170733355137,441,0 +170733355185,441,0 +170733355233,441,0 +170733355281,441,0 +170733355329,442,0 +170733355377,442,0 +170733355426,441,0 +170733355476,442,0 +170733355524,441,0 +170733355572,441,0 +170733355620,297,1 +170733355703,248,0 +170733355751,441,0 +170733355799,442,0 +170733355849,442,0 +170733355896,441,0 +170733355946,441,0 +170733355994,442,0 +170733356042,441,0 +170733356090,441,0 +170733356138,441,0 +170733356187,441,0 +170733356235,441,0 +170733356283,442,0 +170733356331,442,0 +170733356379,441,0 +170733356429,442,0 +170733356477,442,0 +170733356525,442,0 +170733356573,441,0 +170733356622,441,0 +170733356670,302,1 +170733356750,271,1 +170733356828,442,0 +170733356878,441,0 +170733356926,442,0 +170733356974,442,0 +170733357023,442,0 +170733357071,442,0 +170733357119,442,0 +170733357167,442,0 +170733357215,442,0 +170733357263,441,0 +170733357313,441,0 +170733357362,441,0 +170733357412,441,0 +170733357460,442,0 +170733357508,441,0 +170733357556,441,0 +170733357604,441,0 +170733357653,442,0 +170733357701,432,0 +170733357750,294,1 +170733357840,441,0 +170733357889,442,0 +170733357937,441,0 +170733357985,441,0 +170733358033,442,0 +170733358083,441,0 +170733358131,441,0 +170733358180,441,0 +170733358228,441,0 +170733358278,441,0 +170733358326,441,0 +170733358375,441,0 +170733358425,442,0 +170733358473,442,0 +170733358522,442,0 +170733358570,442,0 +170733358620,442,0 +170733358668,442,0 +170733358717,441,0 +170733358767,299,1 +170733358856,415,0 +170733358904,442,0 +170733358954,441,0 +170733359003,441,0 +170733359051,442,0 +170733359099,441,0 +170733359149,442,0 +170733359198,441,0 +170733359246,442,0 +170733359296,441,0 +170733359344,441,0 +170733359391,442,0 +170733359439,441,0 +170733359487,441,0 +170733359537,442,0 +170733359585,442,0 +170733359633,442,0 +170733359681,441,0 +170733359729,441,0 +170733359778,441,0 +170733359828,293,1 +170733359911,434,0 +170733359959,441,0 +170733360007,442,0 +170733360055,442,0 +170733360103,442,0 +170733360151,442,0 +170733360199,442,0 +170733360247,441,0 +170733360294,442,0 +170733360344,442,0 +170733360393,442,0 +170733360441,442,0 +170733360489,441,0 +170733360539,441,0 +170733360587,441,0 +170733360636,441,0 +170733360686,442,0 +170733360736,441,0 +170733360783,441,0 +170733360831,441,0 +170733360879,295,1 +170733360963,437,0 +170733361013,441,0 +170733361062,442,0 +170733361110,441,0 +170733361160,442,0 +170733361209,442,0 +170733361257,442,0 +170733361305,441,0 +170733361353,442,0 +170733361401,441,0 +170733361451,442,0 +170733361500,441,0 +170733361548,441,0 +170733361596,441,0 +170733361646,441,0 +170733361693,441,0 +170733361741,441,0 +170733361791,441,0 +170733361839,442,0 +170733361887,441,0 +170733361935,300,1 +170733362028,439,0 +170733362077,441,0 +170733362125,441,0 +170733362173,441,0 +170733362223,441,0 +170733362271,442,0 +170733362319,442,0 +170733362367,441,0 +170733362416,442,0 +170733362464,442,0 +170733362512,442,0 +170733362560,441,0 +170733362608,441,0 +170733362658,442,0 +170733362706,441,0 +170733362754,442,0 +170733362801,442,0 +170733362849,441,0 +170733362897,441,0 +170733362945,435,0 +170733362995,292,1 +170733363082,440,0 +170733363130,441,0 +170733363178,441,0 +170733363226,441,0 +170733363275,442,0 +170733363325,442,0 +170733363373,441,0 +170733363421,442,0 +170733363470,442,0 +170733363518,441,0 +170733363566,441,0 +170733363614,441,0 +170733363664,441,0 +170733363712,442,0 +170733363760,441,0 +170733363809,442,0 +170733363857,441,0 +170733363907,442,0 +170733363954,441,0 +170733364002,268,0 +170733364052,291,1 +170733364137,441,0 +170733364185,441,0 +170733364233,441,0 +170733364283,441,0 +170733364332,442,0 +170733364380,441,0 +170733364428,442,0 +170733364478,441,0 +170733364527,442,0 +170733364575,441,0 +170733364625,441,0 +170733364673,441,0 +170733364722,441,0 +170733364770,442,0 +170733364818,441,0 +170733364866,442,0 +170733364914,442,0 +170733364962,441,0 +170733365010,441,0 +170733365060,280,1 +170733365146,232,0 +170733365195,441,0 +170733365243,442,0 +170733365291,441,0 +170733365339,442,0 +170733365389,441,0 +170733365437,441,0 +170733365485,441,0 +170733365534,442,0 +170733365582,441,0 +170733365630,441,0 +170733365679,442,0 +170733365727,441,0 +170733365775,441,0 +170733365825,441,0 +170733365873,441,0 +170733365922,441,0 +170733365970,441,0 +170733366020,442,0 +170733366068,441,0 +170733366117,300,1 +170733366201,235,0 +170733366249,441,0 +170733366298,442,0 +170733366348,441,0 +170733366396,442,0 +170733366444,441,0 +170733366491,441,0 +170733366539,441,0 +170733366587,441,0 +170733366635,441,0 +170733366683,442,0 +170733366733,441,0 +170733366782,441,0 +170733366830,442,0 +170733366878,441,0 +170733366928,441,0 +170733366977,441,0 +170733367027,441,0 +170733367076,441,0 +170733367126,441,0 +170733367174,290,1 +170733367261,438,0 +170733367309,441,0 +170733367358,441,0 +170733367406,441,0 +170733367454,442,0 +170733367502,442,0 +170733367550,441,0 +170733367598,441,0 +170733367646,441,0 +170733367695,442,0 +170733367743,441,0 +170733367791,441,0 +170733367839,442,0 +170733367889,442,0 +170733367938,442,0 +170733367988,441,0 +170733368036,441,0 +170733368084,441,0 +170733368132,441,0 +170733368181,441,0 +170733368231,292,1 +170733368316,438,0 +170733368365,441,0 +170733368413,442,0 +170733368461,441,0 +170733368511,441,0 +170733368559,442,0 +170733368607,441,0 +170733368655,441,0 +170733368704,441,0 +170733368752,442,0 +170733368802,441,0 +170733368850,441,0 +170733368898,441,0 +170733368947,442,0 +170733368995,441,0 +170733369043,442,0 +170733369091,441,0 +170733369139,441,0 +170733369187,442,0 +170733369235,441,0 +170733369283,296,1 +170733369377,439,0 +170733369425,442,0 +170733369473,442,0 +170733369521,441,0 +170733369569,441,0 +170733369617,442,0 +170733369666,441,0 +170733369714,441,0 +170733369762,441,0 +170733369810,441,0 +170733369860,442,0 +170733369907,442,0 +170733369955,442,0 +170733370005,441,0 +170733370053,442,0 +170733370101,441,0 +170733370150,442,0 +170733370198,442,0 +170733370248,441,0 +170733370296,285,1 +170733370368,299,1 +170733370459,441,0 +170733370508,441,0 +170733370558,441,0 +170733370606,442,0 +170733370654,441,0 +170733370702,442,0 +170733370750,442,0 +170733370799,441,0 +170733370847,441,0 +170733370895,441,0 +170733370945,442,0 +170733370994,442,0 +170733371042,442,0 +170733371090,441,0 +170733371139,441,0 +170733371189,442,0 +170733371239,442,0 +170733371287,442,0 +170733371335,441,0 +170733371383,296,1 +170733371467,439,0 +170733371516,441,0 +170733371566,442,0 +170733371614,441,0 +170733371662,441,0 +170733371710,441,0 +170733371759,442,0 +170733371807,441,0 +170733371857,442,0 +170733371906,441,0 +170733371954,441,0 +170733372002,442,0 +170733372052,441,0 +170733372099,442,0 +170733372147,442,0 +170733372195,441,0 +170733372243,441,0 +170733372291,441,0 +170733372339,441,0 +170733372388,441,0 +170733372438,307,1 +170733372527,440,0 +170733372575,441,0 +170733372622,441,0 +170733372672,442,0 +170733372721,441,0 +170733372769,442,0 +170733372817,441,0 +170733372867,441,0 +170733372915,441,0 +170733372964,442,0 +170733373012,442,0 +170733373062,441,0 +170733373111,442,0 +170733373159,441,0 +170733373208,442,0 +170733373255,441,0 +170733373305,442,0 +170733373353,442,0 +170733373401,442,0 +170733373449,300,1 +170733373532,265,0 +170733373580,441,0 +170733373628,441,0 +170733373677,441,0 +170733373727,442,0 +170733373775,442,0 +170733373823,442,0 +170733373872,442,0 +170733373920,442,0 +170733373968,441,0 +170733374018,441,0 +170733374066,442,0 +170733374114,442,0 +170733374162,442,0 +170733374210,441,0 +170733374257,442,0 +170733374305,442,0 +170733374355,442,0 +170733374404,441,0 +170733374452,441,0 +170733374500,304,1 +170733374580,272,1 +170733374665,441,0 +170733374713,442,0 +170733374761,441,0 +170733374811,441,0 +170733374860,442,0 +170733374908,441,0 +170733374956,441,0 +170733375004,441,0 +170733375052,441,0 +170733375100,441,0 +170733375148,442,0 +170733375198,442,0 +170733375246,441,0 +170733375295,442,0 +170733375345,442,0 +170733375393,441,0 +170733375440,441,0 +170733375490,442,0 +170733375538,441,0 +170733375587,291,1 +170733375677,440,0 +170733375725,441,0 +170733375773,442,0 +170733375821,442,0 +170733375869,441,0 +170733375918,442,0 +170733375966,442,0 +170733376014,441,0 +170733376062,442,0 +170733376112,441,0 +170733376160,442,0 +170733376208,442,0 +170733376256,441,0 +170733376305,442,0 +170733376353,441,0 +170733376401,442,0 +170733376451,441,0 +170733376499,442,0 +170733376546,442,0 +170733376594,439,0 +170733376644,290,1 +170733376738,441,0 +170733376787,441,0 +170733376835,441,0 +170733376883,441,0 +170733376933,441,0 +170733376980,441,0 +170733377030,441,0 +170733377078,441,0 +170733377126,441,0 +170733377174,441,0 +170733377223,441,0 +170733377271,441,0 +170733377319,441,0 +170733377367,442,0 +170733377415,441,0 +170733377465,442,0 +170733377514,441,0 +170733377562,442,0 +170733377612,441,0 +170733377660,277,1 +170733377740,241,0 +170733377788,441,0 +170733377836,442,0 +170733377884,442,0 +170733377933,442,0 +170733377982,441,0 +170733378030,442,0 +170733378078,441,0 +170733378126,442,0 +170733378174,441,0 +170733378222,441,0 +170733378272,442,0 +170733378320,442,0 +170733378369,442,0 +170733378419,442,0 +170733378468,442,0 +170733378518,442,0 +170733378566,441,0 +170733378616,441,0 +170733378663,441,0 +170733378713,315,0 +170733378761,311,0 +170733378810,439,0 +170733378858,441,0 +170733378906,441,0 +170733378956,442,0 +170733379004,441,0 +170733379052,442,0 +170733379100,442,0 +170733379148,441,0 +170733379197,441,0 +170733379245,442,0 +170733379295,442,0 +170733379343,441,0 +170733379391,442,0 +170733379439,442,0 +170733379487,442,0 +170733379536,442,0 +170733379584,441,0 +170733379632,442,0 +170733379680,441,0 +170733379728,441,0 +170733379776,292,1 +170733379859,439,0 +170733379907,442,0 +170733379956,442,0 +170733380004,442,0 +170733380052,442,0 +170733380100,442,0 +170733380148,442,0 +170733380198,442,0 +170733380247,442,0 +170733380297,442,0 +170733380345,441,0 +170733380392,441,0 +170733380442,442,0 +170733380490,441,0 +170733380538,441,0 +170733380587,441,0 +170733380635,441,0 +170733380683,441,0 +170733380731,441,0 +170733380781,441,0 +170733380830,291,1 +170733380918,440,0 +170733380966,441,0 +170733381014,442,0 +170733381062,441,0 +170733381110,442,0 +170733381160,442,0 +170733381209,442,0 +170733381257,441,0 +170733381307,442,0 +170733381355,441,0 +170733381404,441,0 +170733381452,442,0 +170733381501,442,0 +170733381549,441,0 +170733381597,441,0 +170733381645,442,0 +170733381693,441,0 +170733381743,441,0 +170733381792,442,0 +170733381840,364,0 +170733381889,286,1 +170733381978,441,0 +170733382026,442,0 +170733382074,442,0 +170733382122,441,0 +170733382172,442,0 +170733382220,442,0 +170733382268,441,0 +170733382315,441,0 +170733382365,441,0 +170733382413,442,0 +170733382461,441,0 +170733382511,441,0 +170733382558,442,0 +170733382606,442,0 +170733382654,441,0 +170733382704,441,0 +170733382752,441,0 +170733382800,441,0 +170733382849,441,0 +170733382897,296,1 +170733382977,301,1 +170733383061,442,0 +170733383109,441,0 +170733383157,441,0 +170733383205,441,0 +170733383253,442,0 +170733383301,441,0 +170733383349,442,0 +170733383397,441,0 +170733383445,442,0 +170733383493,442,0 +170733383540,441,0 +170733383588,442,0 +170733383636,442,0 +170733383684,441,0 +170733383732,442,0 +170733383780,442,0 +170733383829,442,0 +170733383879,441,0 +170733383927,441,0 +170733383975,279,1 +170733384061,439,0 +170733384111,442,0 +170733384159,441,0 +170733384207,441,0 +170733384256,441,0 +170733384304,441,0 +170733384352,441,0 +170733384400,441,0 +170733384447,441,0 +170733384495,442,0 +170733384543,441,0 +170733384591,442,0 +170733384639,441,0 +170733384687,441,0 +170733384735,442,0 +170733384783,442,0 +170733384830,441,0 +170733384878,441,0 +170733384926,441,0 +170733384974,441,0 +170733385022,282,1 +170733385104,438,0 +170733385152,441,0 +170733385200,441,0 +170733385248,441,0 +170733385296,441,0 +170733385344,441,0 +170733385391,441,0 +170733385439,441,0 +170733385487,441,0 +170733385535,441,0 +170733385585,441,0 +170733385632,442,0 +170733385680,442,0 +170733385728,441,0 +170733385778,442,0 +170733385825,441,0 +170733385873,441,0 +170733385921,441,0 +170733385969,441,0 +170733386017,441,0 +170733386065,291,1 +170733386148,439,0 +170733386196,442,0 +170733386244,441,0 +170733386292,441,0 +170733386340,441,0 +170733386388,441,0 +170733386436,442,0 +170733386484,442,0 +170733386531,441,0 +170733386579,442,0 +170733386627,441,0 +170733386675,441,0 +170733386723,442,0 +170733386771,442,0 +170733386819,441,0 +170733386867,442,0 +170733386914,441,0 +170733386962,441,0 +170733387010,442,0 +170733387060,441,0 +170733387108,296,1 +170733387193,437,0 +170733387241,441,0 +170733387289,442,0 +170733387337,442,0 +170733387385,442,0 +170733387432,442,0 +170733387480,441,0 +170733387528,441,0 +170733387576,442,0 +170733387624,441,0 +170733387672,442,0 +170733387720,441,0 +170733387768,441,0 +170733387817,441,0 +170733387865,442,0 +170733387913,441,0 +170733387961,442,0 +170733388009,441,0 +170733388057,441,0 +170733388104,441,0 +170733388152,290,1 +170733388233,243,0 +170733388281,441,0 +170733388329,442,0 +170733388377,441,0 +170733388424,442,0 +170733388472,441,0 +170733388520,442,0 +170733388568,442,0 +170733388616,441,0 +170733388664,441,0 +170733388712,442,0 +170733388760,442,0 +170733388808,441,0 +170733388856,442,0 +170733388905,441,0 +170733388953,442,0 +170733389001,441,0 +170733389049,441,0 +170733389097,441,0 +170733389144,441,0 +170733389192,291,1 +170733389273,257,0 +170733389321,441,0 +170733389369,441,0 +170733389417,441,0 +170733389465,442,0 +170733389513,441,0 +170733389560,441,0 +170733389608,441,0 +170733389656,441,0 +170733389704,442,0 +170733389752,441,0 +170733389800,442,0 +170733389848,442,0 +170733389896,442,0 +170733389944,442,0 +170733389991,441,0 +170733390039,442,0 +170733390087,441,0 +170733390137,441,0 +170733390185,441,0 +170733390233,440,0 +170733390281,306,1 +170733390370,441,0 +170733390420,441,0 +170733390468,442,0 +170733390516,441,0 +170733390565,442,0 +170733390613,441,0 +170733390661,441,0 +170733390709,441,0 +170733390757,442,0 +170733390805,442,0 +170733390855,442,0 +170733390903,441,0 +170733390951,442,0 +170733390999,442,0 +170733391047,442,0 +170733391096,442,0 +170733391144,442,0 +170733391194,442,0 +170733391241,441,0 +170733391289,436,0 +170733391337,286,1 +170733391420,440,0 +170733391469,441,0 +170733391517,442,0 +170733391565,442,0 +170733391613,442,0 +170733391662,441,0 +170733391710,442,0 +170733391758,442,0 +170733391806,442,0 +170733391854,442,0 +170733391902,442,0 +170733391950,441,0 +170733391998,441,0 +170733392047,441,0 +170733392095,441,0 +170733392143,442,0 +170733392191,441,0 +170733392239,441,0 +170733392287,442,0 +170733392337,299,1 +170733392432,353,0 +170733392479,441,0 +170733392529,442,0 +170733392577,442,0 +170733392625,441,0 +170733392673,441,0 +170733392721,442,0 +170733392769,441,0 +170733392817,441,0 +170733392865,441,0 +170733392914,442,0 +170733392962,441,0 +170733393010,441,0 +170733393058,442,0 +170733393108,442,0 +170733393155,442,0 +170733393203,442,0 +170733393253,442,0 +170733393302,441,0 +170733393352,441,0 +170733393400,296,1 +170733393485,435,0 +170733393533,441,0 +170733393581,442,0 +170733393629,441,0 +170733393677,442,0 +170733393725,441,0 +170733393774,441,0 +170733393822,442,0 +170733393872,442,0 +170733393921,441,0 +170733393971,442,0 +170733394019,442,0 +170733394068,442,0 +170733394116,442,0 +170733394164,441,0 +170733394214,441,0 +170733394262,441,0 +170733394310,442,0 +170733394358,441,0 +170733394406,441,0 +170733394454,298,1 +170733394543,437,0 +170733394593,441,0 +170733394641,441,0 +170733394689,442,0 +170733394737,441,0 +170733394786,441,0 +170733394834,441,0 +170733394884,442,0 +170733394932,441,0 +170733394979,441,0 +170733395029,441,0 +170733395077,442,0 +170733395126,441,0 +170733395174,442,0 +170733395224,441,0 +170733395272,441,0 +170733395320,442,0 +170733395368,441,0 +170733395417,441,0 +170733395466,441,0 +170733395514,304,1 +170733395595,438,0 +170733395645,442,0 +170733395693,442,0 +170733395740,442,0 +170733395788,441,0 +170733395836,442,0 +170733395884,441,0 +170733395934,442,0 +170733395983,441,0 +170733396032,442,0 +170733396080,441,0 +170733396128,441,0 +170733396176,442,0 +170733396224,441,0 +170733396272,441,0 +170733396320,442,0 +170733396368,441,0 +170733396416,441,0 +170733396463,441,0 +170733396511,441,0 +170733396559,304,1 +170733396642,438,0 +170733396690,441,0 +170733396738,441,0 +170733396786,441,0 +170733396834,442,0 +170733396882,441,0 +170733396930,441,0 +170733396978,441,0 +170733397025,441,0 +170733397073,442,0 +170733397121,442,0 +170733397169,441,0 +170733397217,441,0 +170733397265,441,0 +170733397313,441,0 +170733397362,441,0 +170733397410,442,0 +170733397458,441,0 +170733397506,441,0 +170733397554,441,0 +170733397602,293,1 +170733397682,236,0 +170733397730,441,0 +170733397778,441,0 +170733397826,441,0 +170733397875,441,0 +170733397923,441,0 +170733397971,442,0 +170733398019,442,0 +170733398067,442,0 +170733398115,442,0 +170733398163,441,0 +170733398211,442,0 +170733398260,442,0 +170733398310,442,0 +170733398358,442,0 +170733398407,442,0 +170733398457,442,0 +170733398506,442,0 +170733398554,442,0 +170733398604,441,0 +170733398652,297,1 +170733398740,436,0 +170733398793,442,0 +170733398842,441,0 +170733398890,441,0 +170733398938,442,0 +170733398987,442,0 +170733399035,441,0 +170733399085,441,0 +170733399133,442,0 +170733399183,442,0 +170733399231,441,0 +170733399278,442,0 +170733399326,442,0 +170733399374,442,0 +170733399422,442,0 +170733399472,442,0 +170733399520,441,0 +170733399568,442,0 +170733399616,442,0 +170733399665,441,0 +170733399713,305,1 +170733399794,438,0 +170733399842,442,0 +170733399890,442,0 +170733399938,442,0 +170733399986,442,0 +170733400035,442,0 +170733400083,442,0 +170733400131,441,0 +170733400179,441,0 +170733400229,442,0 +170733400277,442,0 +170733400325,441,0 +170733400373,441,0 +170733400422,442,0 +170733400472,441,0 +170733400520,442,0 +170733400569,441,0 +170733400617,441,0 +170733400667,441,0 +170733400715,441,0 +170733400763,299,1 +170733400845,439,0 +170733400893,442,0 +170733400943,441,0 +170733400991,442,0 +170733401039,442,0 +170733401087,441,0 +170733401135,441,0 +170733401184,442,0 +170733401234,442,0 +170733401282,442,0 +170733401331,441,0 +170733401379,442,0 +170733401427,441,0 +170733401477,441,0 +170733401525,442,0 +170733401574,441,0 +170733401622,441,0 +170733401670,442,0 +170733401718,441,0 +170733401766,435,0 +170733401814,295,1 +170733401904,441,0 +170733401952,442,0 +170733402000,442,0 +170733402048,442,0 +170733402096,441,0 +170733402144,442,0 +170733402192,441,0 +170733402240,441,0 +170733402288,442,0 +170733402335,442,0 +170733402383,441,0 +170733402433,442,0 +170733402482,442,0 +170733402530,442,0 +170733402578,442,0 +170733402626,442,0 +170733402674,442,0 +170733402722,441,0 +170733402770,441,0 +170733402817,316,0 +170733402865,298,1 +170733402981,442,0 +170733403031,441,0 +170733403080,441,0 +170733403128,441,0 +170733403176,441,0 +170733403224,442,0 +170733403272,441,0 +170733403320,441,0 +170733403370,441,0 +170733403419,442,0 +170733403469,441,0 +170733403518,441,0 +170733403566,441,0 +170733403614,442,0 +170733403664,442,0 +170733403712,441,0 +170733403760,441,0 +170733403808,441,0 +170733403855,441,0 +170733403905,302,1 +170733403985,438,0 +170733404035,441,0 +170733404084,441,0 +170733404132,441,0 +170733404182,441,0 +170733404230,442,0 +170733404278,442,0 +170733404327,442,0 +170733404375,442,0 +170733404423,442,0 +170733404473,442,0 +170733404521,441,0 +170733404570,442,0 +170733404618,441,0 +170733404668,442,0 +170733404715,442,0 +170733404765,441,0 +170733404813,442,0 +170733404863,441,0 +170733404912,435,0 +170733404960,295,1 +170733405046,440,0 +170733405096,441,0 +170733405144,442,0 +170733405192,442,0 +170733405240,442,0 +170733405287,441,0 +170733405335,441,0 +170733405383,442,0 +170733405433,442,0 +170733405481,441,0 +170733405530,442,0 +170733405578,441,0 +170733405626,442,0 +170733405676,441,0 +170733405724,442,0 +170733405772,441,0 +170733405820,442,0 +170733405869,442,0 +170733405919,441,0 +170733405968,440,0 +170733406016,292,1 +170733406102,440,0 +170733406150,441,0 +170733406198,442,0 +170733406246,442,0 +170733406296,441,0 +170733406344,441,0 +170733406392,442,0 +170733406440,442,0 +170733406488,442,0 +170733406537,442,0 +170733406585,442,0 +170733406633,441,0 +170733406681,441,0 +170733406729,441,0 +170733406777,441,0 +170733406825,441,0 +170733406875,441,0 +170733406923,442,0 +170733406971,441,0 +170733407019,277,1 +170733407106,251,0 +170733407154,441,0 +170733407202,441,0 +170733407250,442,0 +170733407298,441,0 +170733407346,442,0 +170733407395,441,0 +170733407443,441,0 +170733407492,442,0 +170733407540,442,0 +170733407588,442,0 +170733407636,442,0 +170733407684,441,0 +170733407732,442,0 +170733407780,441,0 +170733407828,441,0 +170733407876,441,0 +170733407925,442,0 +170733407973,442,0 +170733408023,441,0 +170733408071,300,1 +170733408161,240,0 +170733408210,441,0 +170733408258,441,0 +170733408308,441,0 +170733408356,441,0 +170733408404,442,0 +170733408452,441,0 +170733408501,441,0 +170733408549,441,0 +170733408599,442,0 +170733408647,442,0 +170733408695,442,0 +170733408744,441,0 +170733408792,442,0 +170733408840,441,0 +170733408888,442,0 +170733408937,442,0 +170733408985,442,0 +170733409033,441,0 +170733409081,441,0 +170733409131,307,1 +170733409222,438,0 +170733409270,441,0 +170733409318,442,0 +170733409367,442,0 +170733409415,441,0 +170733409465,442,0 +170733409512,441,0 +170733409560,441,0 +170733409608,442,0 +170733409656,441,0 +170733409704,442,0 +170733409752,441,0 +170733409802,442,0 +170733409850,442,0 +170733409898,442,0 +170733409946,441,0 +170733409994,441,0 +170733410042,441,0 +170733410090,441,0 +170733410139,441,0 +170733410189,297,1 +170733410273,436,0 +170733410321,442,0 +170733410369,441,0 +170733410418,441,0 +170733410466,442,0 +170733410514,441,0 +170733410564,442,0 +170733410612,442,0 +170733410661,441,0 +170733410711,442,0 +170733410760,442,0 +170733410808,442,0 +170733410858,442,0 +170733410905,441,0 +170733410955,442,0 +170733411003,441,0 +170733411051,442,0 +170733411100,442,0 +170733411148,441,0 +170733411196,440,0 +170733411244,271,1 +170733411326,439,0 +170733411375,442,0 +170733411423,441,0 +170733411473,442,0 +170733411521,442,0 +170733411569,442,0 +170733411617,442,0 +170733411665,442,0 +170733411713,441,0 +170733411760,441,0 +170733411810,441,0 +170733411858,442,0 +170733411906,441,0 +170733411955,442,0 +170733412003,441,0 +170733412051,442,0 +170733412099,441,0 +170733412149,441,0 +170733412198,442,0 +170733412246,225,0 +170733412299,252,0 +170733412347,252,0 +170733412395,440,0 +170733412443,441,0 +170733412491,441,0 +170733412540,441,0 +170733412588,441,0 +170733412638,441,0 +170733412687,441,0 +170733412735,441,0 +170733412783,441,0 +170733412833,441,0 +170733412882,441,0 +170733412932,441,0 +170733412981,441,0 +170733413031,441,0 +170733413080,441,0 +170733413130,441,0 +170733413178,441,0 +170733413226,441,0 +170733413274,441,0 +170733413323,274,1 +170733413410,232,0 +170733413460,441,0 +170733413508,441,0 +170733413557,441,0 +170733413605,441,0 +170733413653,441,0 +170733413701,441,0 +170733413749,441,0 +170733413797,441,0 +170733413846,441,0 +170733413896,441,0 +170733413945,441,0 +170733413993,441,0 +170733414041,441,0 +170733414089,441,0 +170733414139,441,0 +170733414187,441,0 +170733414235,441,0 +170733414283,441,0 +170733414332,441,0 +170733414380,286,1 +170733414463,435,0 +170733414511,441,0 +170733414559,441,0 +170733414609,441,0 +170733414656,441,0 +170733414705,441,0 +170733414752,441,0 +170733414802,441,0 +170733414850,441,0 +170733414898,441,0 +170733414946,441,0 +170733414994,441,0 +170733415041,441,0 +170733415089,441,0 +170733415137,441,0 +170733415187,441,0 +170733415235,441,0 +170733415283,441,0 +170733415331,441,0 +170733415379,441,0 +170733415428,288,1 +170733415512,437,0 +170733415562,441,0 +170733415611,441,0 +170733415659,441,0 +170733415709,441,0 +170733415759,441,0 +170733415806,441,0 +170733415854,441,0 +170733415902,441,0 +170733415952,441,0 +170733416001,441,0 +170733416049,441,0 +170733416099,441,0 +170733416147,441,0 +170733416195,441,0 +170733416243,441,0 +170733416291,441,0 +170733416340,441,0 +170733416388,441,0 +170733416436,441,0 +170733416486,296,1 +170733416570,438,0 +170733416619,441,0 +170733416669,441,0 +170733416717,441,0 +170733416766,441,0 +170733416814,441,0 +170733416862,441,0 +170733416911,441,0 +170733416959,441,0 +170733417009,441,0 +170733417057,441,0 +170733417106,441,0 +170733417154,441,0 +170733417202,441,0 +170733417250,441,0 +170733417298,441,0 +170733417346,441,0 +170733417394,441,0 +170733417442,441,0 +170733417490,438,0 +170733417540,299,1 +170733417622,440,0 +170733417672,441,0 +170733417720,441,0 +170733417768,441,0 +170733417817,441,0 +170733417865,441,0 +170733417913,441,0 +170733417961,441,0 +170733418011,441,0 +170733418060,441,0 +170733418108,441,0 +170733418158,441,0 +170733418207,441,0 +170733418255,441,0 +170733418303,441,0 +170733418353,441,0 +170733418401,441,0 +170733418450,441,0 +170733418500,441,0 +170733418549,279,1 +170733418638,240,0 +170733418686,441,0 +170733418734,441,0 +170733418782,441,0 +170733418831,441,0 +170733418879,441,0 +170733418927,441,0 +170733418975,441,0 +170733419023,441,0 +170733419071,441,0 +170733419121,441,0 +170733419169,441,0 +170733419216,441,0 +170733419264,441,0 +170733419312,441,0 +170733419360,441,0 +170733419410,441,0 +170733419459,441,0 +170733419509,441,0 +170733419558,441,0 +170733419606,298,1 +170733419684,295,1 +170733419769,441,0 +170733419819,441,0 +170733419867,441,0 +170733419916,441,0 +170733419964,441,0 +170733420012,441,0 +170733420060,441,0 +170733420108,441,0 +170733420157,441,0 +170733420205,441,0 +170733420253,441,0 +170733420303,441,0 +170733420351,441,0 +170733420399,441,0 +170733420447,441,0 +170733420496,441,0 +170733420544,441,0 +170733420592,441,0 +170733420642,440,0 +170733420691,293,1 +170733420778,439,0 +170733420827,441,0 +170733420875,441,0 +170733420923,441,0 +170733420971,441,0 +170733421020,441,0 +170733421070,441,0 +170733421119,441,0 +170733421167,441,0 +170733421215,441,0 +170733421263,441,0 +170733421313,441,0 +170733421362,441,0 +170733421410,441,0 +170733421460,441,0 +170733421508,441,0 +170733421557,441,0 +170733421605,441,0 +170733421655,441,0 +170733421703,292,1 +170733421783,254,0 +170733421831,440,0 +170733421878,441,0 +170733421926,441,0 +170733421974,441,0 +170733422022,441,0 +170733422072,441,0 +170733422121,441,0 +170733422169,441,0 +170733422219,441,0 +170733422268,441,0 +170733422318,441,0 +170733422366,441,0 +170733422414,441,0 +170733422462,441,0 +170733422510,441,0 +170733422559,441,0 +170733422607,441,0 +170733422655,441,0 +170733422705,441,0 +170733422753,289,1 +170733422838,242,0 +170733422888,441,0 +170733422936,441,0 +170733422985,441,0 +170733423033,441,0 +170733423081,441,0 +170733423131,441,0 +170733423179,441,0 +170733423227,441,0 +170733423276,441,0 +170733423324,441,0 +170733423372,441,0 +170733423420,441,0 +170733423468,441,0 +170733423516,441,0 +170733423564,441,0 +170733423612,441,0 +170733423660,441,0 +170733423709,441,0 +170733423757,441,0 +170733423805,299,1 +170733423890,432,0 +170733423938,441,0 +170733423986,441,0 +170733424034,441,0 +170733424082,441,0 +170733424130,441,0 +170733424180,441,0 +170733424228,441,0 +170733424275,441,0 +170733424324,441,0 +170733424371,441,0 +170733424419,441,0 +170733424469,441,0 +170733424517,441,0 +170733424565,441,0 +170733424614,441,0 +170733424662,441,0 +170733424712,441,0 +170733424760,441,0 +170733424809,441,0 +170733424857,285,1 +170733424949,437,0 +170733424997,441,0 +170733425047,441,0 +170733425095,441,0 +170733425143,441,0 +170733425192,441,0 +170733425240,441,0 +170733425290,441,0 +170733425337,441,0 +170733425385,441,0 +170733425433,441,0 +170733425481,441,0 +170733425529,441,0 +170733425579,441,0 +170733425628,441,0 +170733425676,441,0 +170733425724,441,0 +170733425774,441,0 +170733425822,441,0 +170733425870,440,0 +170733425918,300,1 +170733426000,437,0 +170733426048,441,0 +170733426098,441,0 +170733426146,441,0 +170733426194,441,0 +170733426243,441,0 +170733426291,441,0 +170733426339,441,0 +170733426387,441,0 +170733426435,441,0 +170733426484,441,0 +170733426532,441,0 +170733426580,441,0 +170733426630,441,0 +170733426678,441,0 +170733426726,441,0 +170733426775,441,0 +170733426823,441,0 +170733426871,441,0 +170733426919,440,0 +170733426967,303,1 +170733427086,441,0 +170733427136,441,0 +170733427184,441,0 +170733427232,441,0 +170733427280,441,0 +170733427328,441,0 +170733427375,441,0 +170733427423,441,0 +170733427471,441,0 +170733427519,441,0 +170733427569,441,0 +170733427618,441,0 +170733427666,441,0 +170733427716,441,0 +170733427764,441,0 +170733427812,441,0 +170733427860,441,0 +170733427908,441,0 +170733427956,441,0 +170733428004,301,1 +170733428091,428,0 +170733428139,441,0 +170733428188,441,0 +170733428236,441,0 +170733428284,441,0 +170733428332,441,0 +170733428382,441,0 +170733428430,441,0 +170733428478,441,0 +170733428526,441,0 +170733428575,441,0 +170733428623,441,0 +170733428671,441,0 +170733428719,441,0 +170733428767,441,0 +170733428815,441,0 +170733428865,441,0 +170733428913,441,0 +170733428960,441,0 +170733429008,441,0 +170733429056,305,1 +170733429139,416,0 +170733429189,441,0 +170733429237,441,0 +170733429285,441,0 +170733429332,441,0 +170733429382,441,0 +170733429430,441,0 +170733429480,440,0 +170733429528,441,0 +170733429577,441,0 +170733429625,441,0 +170733429673,441,0 +170733429721,441,0 +170733429769,441,0 +170733429818,441,0 +170733429866,441,0 +170733429916,441,0 +170733429964,441,0 +170733430012,441,0 +170733430061,440,0 +170733430109,308,1 +170733430201,438,0 +170733430248,441,0 +170733430298,441,0 +170733430348,441,0 +170733430397,441,0 +170733430445,441,0 +170733430493,441,0 +170733430542,441,0 +170733430590,441,0 +170733430640,441,0 +170733430689,441,0 +170733430737,441,0 +170733430785,441,0 +170733430833,441,0 +170733430883,441,0 +170733430931,441,0 +170733430979,441,0 +170733431027,441,0 +170733431074,441,0 +170733431122,440,0 +170733431170,285,1 +170733431246,438,0 +170733431294,441,0 +170733431342,441,0 +170733431389,441,0 +170733431437,441,0 +170733431486,441,0 +170733431535,441,0 +170733431583,441,0 +170733431632,441,0 +170733431682,441,0 +170733431732,441,0 +170733431781,441,0 +170733431829,441,0 +170733431878,441,0 +170733431928,441,0 +170733431977,441,0 +170733432025,441,0 +170733432073,441,0 +170733432121,441,0 +170733432169,437,0 +170733432217,289,1 +170733432302,439,0 +170733432350,441,0 +170733432399,441,0 +170733432447,441,0 +170733432495,441,0 +170733432543,441,0 +170733432592,441,0 +170733432640,441,0 +170733432688,441,0 +170733432736,441,0 +170733432784,441,0 +170733432834,441,0 +170733432882,441,0 +170733432930,441,0 +170733432978,441,0 +170733433026,441,0 +170733433075,441,0 +170733433123,441,0 +170733433173,441,0 +170733433220,290,1 +170733433311,284,1 +170733433392,441,0 +170733433440,441,0 +170733433488,441,0 +170733433536,441,0 +170733433585,441,0 +170733433633,441,0 +170733433681,441,0 +170733433729,441,0 +170733433778,441,0 +170733433826,441,0 +170733433874,441,0 +170733433922,441,0 +170733433972,441,0 +170733434020,441,0 +170733434069,441,0 +170733434117,441,0 +170733434165,441,0 +170733434213,441,0 +170733434263,440,0 +170733434310,282,1 +170733434398,438,0 +170733434448,441,0 +170733434497,441,0 +170733434545,441,0 +170733434593,441,0 +170733434641,441,0 +170733434689,441,0 +170733434737,441,0 +170733434785,441,0 +170733434833,441,0 +170733434881,441,0 +170733434930,441,0 +170733434980,441,0 +170733435028,441,0 +170733435076,441,0 +170733435125,441,0 +170733435173,441,0 +170733435223,441,0 +170733435272,441,0 +170733435320,440,0 +170733435368,292,1 +170733435450,438,0 +170733435498,441,0 +170733435546,441,0 +170733435594,441,0 +170733435642,441,0 +170733435690,441,0 +170733435737,441,0 +170733435785,441,0 +170733435833,441,0 +170733435881,441,0 +170733435929,441,0 +170733435977,441,0 +170733436026,441,0 +170733436074,441,0 +170733436122,441,0 +170733436170,441,0 +170733436218,441,0 +170733436266,441,0 +170733436314,441,0 +170733436362,426,0 +170733436410,290,1 +170733436492,439,0 +170733436540,441,0 +170733436588,441,0 +170733436636,441,0 +170733436684,441,0 +170733436732,441,0 +170733436779,441,0 +170733436827,441,0 +170733436875,441,0 +170733436925,441,0 +170733436973,441,0 +170733437021,441,0 +170733437069,441,0 +170733437118,441,0 +170733437166,441,0 +170733437214,441,0 +170733437262,441,0 +170733437310,441,0 +170733437358,441,0 +170733437407,440,0 +170733437457,288,1 +170733437542,439,0 +170733437591,441,0 +170733437639,441,0 +170733437687,441,0 +170733437737,441,0 +170733437785,441,0 +170733437834,441,0 +170733437882,441,0 +170733437930,441,0 +170733437979,441,0 +170733438027,441,0 +170733438075,441,0 +170733438125,441,0 +170733438174,441,0 +170733438224,441,0 +170733438272,441,0 +170733438322,441,0 +170733438370,441,0 +170733438417,441,0 +170733438465,437,0 +170733438513,305,1 +170733438595,440,0 +170733438643,441,0 +170733438691,441,0 +170733438739,441,0 +170733438787,441,0 +170733438835,441,0 +170733438883,441,0 +170733438931,441,0 +170733438980,441,0 +170733439028,441,0 +170733439076,441,0 +170733439126,441,0 +170733439174,441,0 +170733439223,441,0 +170733439271,441,0 +170733439321,441,0 +170733439370,441,0 +170733439418,441,0 +170733439466,441,0 +170733439516,283,1 +170733439599,299,1 +170733439681,441,0 +170733439729,441,0 +170733439777,441,0 +170733439825,441,0 +170733439873,441,0 +170733439920,441,0 +170733439970,441,0 +170733440018,441,0 +170733440066,441,0 +170733440115,441,0 +170733440163,441,0 +170733440211,441,0 +170733440259,441,0 +170733440307,441,0 +170733440355,441,0 +170733440403,441,0 +170733440453,441,0 +170733440501,441,0 +170733440549,441,0 +170733440598,441,0 +170733440646,441,0 +170733440694,441,0 +170733440742,441,0 +170733440790,441,0 +170733440840,441,0 +170733440889,441,0 +170733440937,441,0 +170733440985,441,0 +170733441033,441,0 +170733441081,386,0 +170733441129,290,1 +170733441208,438,0 +170733441257,441,0 +170733441305,441,0 +170733441353,441,0 +170733441401,441,0 +170733441449,441,0 +170733441497,441,0 +170733441545,441,0 +170733441593,441,0 +170733441641,441,0 +170733441689,441,0 +170733441736,441,0 +170733441784,441,0 +170733441832,441,0 +170733441880,441,0 +170733441928,441,0 +170733441976,441,0 +170733442023,441,0 +170733442073,441,0 +170733442122,439,0 +170733442172,286,1 +170733442255,439,0 +170733442303,441,0 +170733442350,441,0 +170733442398,441,0 +170733442446,441,0 +170733442494,441,0 +170733442544,441,0 +170733442593,441,0 +170733442641,441,0 +170733442689,441,0 +170733442739,441,0 +170733442787,441,0 +170733442834,441,0 +170733442884,441,0 +170733442932,441,0 +170733442980,441,0 +170733443028,441,0 +170733443076,441,0 +170733443124,441,0 +170733443173,440,0 +170733443221,291,1 +170733443305,438,0 +170733443353,441,0 +170733443401,441,0 +170733443449,441,0 +170733443497,441,0 +170733443545,441,0 +170733443594,441,0 +170733443642,441,0 +170733443690,441,0 +170733443738,441,0 +170733443786,441,0 +170733443834,441,0 +170733443882,441,0 +170733443930,441,0 +170733443978,441,0 +170733444026,441,0 +170733444075,441,0 +170733444125,441,0 +170733444173,441,0 +170733444222,438,0 +170733444272,298,1 +170733444351,438,0 +170733444399,441,0 +170733444447,441,0 +170733444495,441,0 +170733444543,441,0 +170733444592,441,0 +170733444642,441,0 +170733444690,441,0 +170733444738,441,0 +170733444787,441,0 +170733444835,441,0 +170733444883,441,0 +170733444931,441,0 +170733444979,441,0 +170733445027,441,0 +170733445075,441,0 +170733445123,441,0 +170733445171,441,0 +170733445219,441,0 +170733445268,439,0 +170733445316,305,1 +170733445400,438,0 +170733445447,441,0 +170733445495,441,0 +170733445543,441,0 +170733445591,441,0 +170733445641,441,0 +170733445688,441,0 +170733445736,441,0 +170733445784,441,0 +170733445832,441,0 +170733445880,441,0 +170733445928,441,0 +170733445976,441,0 +170733446024,441,0 +170733446071,441,0 +170733446119,441,0 +170733446167,441,0 +170733446215,441,0 +170733446265,441,0 +170733446313,440,0 +170733446361,308,1 +170733446447,439,0 +170733446495,441,0 +170733446543,441,0 +170733446590,441,0 +170733446638,441,0 +170733446686,441,0 +170733446734,441,0 +170733446782,441,0 +170733446830,441,0 +170733446878,441,0 +170733446927,441,0 +170733446976,441,0 +170733447024,441,0 +170733447072,441,0 +170733447120,441,0 +170733447168,441,0 +170733447216,441,0 +170733447264,441,0 +170733447313,441,0 +170733447361,440,0 +170733447409,304,1 +170733447493,438,0 +170733447541,441,0 +170733447589,441,0 +170733447637,441,0 +170733447685,441,0 +170733447733,441,0 +170733447781,441,0 +170733447828,441,0 +170733447876,441,0 +170733447924,441,0 +170733447972,441,0 +170733448020,441,0 +170733448068,441,0 +170733448117,441,0 +170733448165,441,0 +170733448213,441,0 +170733448261,441,0 +170733448310,441,0 +170733448358,441,0 +170733448406,439,0 +170733448456,301,1 +170733448542,439,0 +170733448590,441,0 +170733448638,441,0 +170733448686,441,0 +170733448735,441,0 +170733448785,441,0 +170733448833,441,0 +170733448881,441,0 +170733448929,441,0 +170733448976,441,0 +170733449024,441,0 +170733449074,441,0 +170733449122,441,0 +170733449170,441,0 +170733449218,441,0 +170733449266,441,0 +170733449315,441,0 +170733449363,441,0 +170733449411,441,0 +170733449459,440,0 +170733449508,303,1 +170733449593,439,0 +170733449643,441,0 +170733449692,441,0 +170733449742,441,0 +170733449791,441,0 +170733449841,441,0 +170733449891,441,0 +170733449938,441,0 +170733449986,441,0 +170733450034,441,0 +170733450082,441,0 +170733450130,441,0 +170733450178,441,0 +170733450228,441,0 +170733450276,441,0 +170733450325,441,0 +170733450373,441,0 +170733450422,441,0 +170733450470,441,0 +170733450520,424,0 +170733450568,305,1 +170733450655,440,0 +170733450703,441,0 +170733450751,441,0 +170733450799,441,0 +170733450848,441,0 +170733450896,441,0 +170733450944,441,0 +170733450993,441,0 +170733451041,441,0 +170733451089,441,0 +170733451137,441,0 +170733451187,441,0 +170733451235,441,0 +170733451283,441,0 +170733451331,441,0 +170733451379,441,0 +170733451428,441,0 +170733451478,441,0 +170733451527,441,0 +170733451575,305,1 +170733451661,242,0 +170733451711,440,0 +170733451760,441,0 +170733451810,441,0 +170733451858,441,0 +170733451907,441,0 +170733451957,441,0 +170733452005,441,0 +170733452053,441,0 +170733452101,441,0 +170733452149,441,0 +170733452198,441,0 +170733452248,441,0 +170733452297,441,0 +170733452345,441,0 +170733452393,441,0 +170733452443,441,0 +170733452492,441,0 +170733452540,441,0 +170733452590,440,0 +170733452639,298,1 +170733452721,435,0 +170733452769,441,0 +170733452819,441,0 +170733452867,441,0 +170733452915,441,0 +170733452962,441,0 +170733453010,441,0 +170733453060,441,0 +170733453109,441,0 +170733453157,441,0 +170733453205,441,0 +170733453255,441,0 +170733453303,441,0 +170733453351,441,0 +170733453399,441,0 +170733453448,441,0 +170733453496,441,0 +170733453546,441,0 +170733453595,441,0 +170733453643,441,0 +170733453693,300,1 +170733453779,437,0 +170733453829,441,0 +170733453877,441,0 +170733453925,441,0 +170733453973,441,0 +170733454021,441,0 +170733454069,441,0 +170733454117,441,0 +170733454166,441,0 +170733454216,441,0 +170733454264,441,0 +170733454313,441,0 +170733454361,441,0 +170733454409,441,0 +170733454458,441,0 +170733454508,441,0 +170733454556,441,0 +170733454605,441,0 +170733454653,441,0 +170733454701,391,0 +170733454749,301,1 +170733454836,440,0 +170733454883,441,0 +170733454931,441,0 +170733454979,441,0 +170733455027,441,0 +170733455075,441,0 +170733455125,441,0 +170733455173,441,0 +170733455221,441,0 +170733455270,441,0 +170733455318,441,0 +170733455366,441,0 +170733455416,441,0 +170733455464,441,0 +170733455512,441,0 +170733455560,441,0 +170733455609,441,0 +170733455657,441,0 +170733455705,441,0 +170733455753,435,0 +170733455803,303,1 +170733455890,439,0 +170733455938,441,0 +170733455988,441,0 +170733456036,441,0 +170733456085,441,0 +170733456133,441,0 +170733456181,441,0 +170733456230,441,0 +170733456278,441,0 +170733456326,441,0 +170733456374,441,0 +170733456422,441,0 +170733456470,441,0 +170733456518,441,0 +170733456566,441,0 +170733456614,441,0 +170733456662,441,0 +170733456710,441,0 +170733456760,441,0 +170733456808,440,0 +170733456857,303,1 +170733456939,439,0 +170733456988,441,0 +170733457036,441,0 +170733457084,441,0 +170733457134,441,0 +170733457182,441,0 +170733457230,441,0 +170733457279,441,0 +170733457329,441,0 +170733457377,441,0 +170733457426,441,0 +170733457474,441,0 +170733457522,441,0 +170733457570,441,0 +170733457618,441,0 +170733457667,441,0 +170733457715,441,0 +170733457763,441,0 +170733457813,441,0 +170733457862,297,1 +170733457946,254,0 +170733457994,440,0 +170733458044,441,0 +170733458092,441,0 +170733458140,441,0 +170733458188,441,0 +170733458236,441,0 +170733458284,441,0 +170733458333,441,0 +170733458381,441,0 +170733458430,441,0 +170733458478,441,0 +170733458526,441,0 +170733458575,441,0 +170733458623,441,0 +170733458671,441,0 +170733458719,441,0 +170733458767,441,0 +170733458815,441,0 +170733458863,441,0 +170733458911,304,1 +170733458994,265,0 +170733459042,440,0 +170733459090,441,0 +170733459138,441,0 +170733459187,441,0 +170733459237,441,0 +170733459286,441,0 +170733459334,441,0 +170733459384,441,0 +170733459433,441,0 +170733459481,441,0 +170733459529,441,0 +170733459577,441,0 +170733459625,441,0 +170733459673,441,0 +170733459721,441,0 +170733459769,441,0 +170733459819,441,0 +170733459867,441,0 +170733459914,441,0 +170733459962,285,1 +170733460053,242,0 +170733460102,441,0 +170733460150,441,0 +170733460198,441,0 +170733460248,441,0 +170733460296,441,0 +170733460344,441,0 +170733460392,441,0 +170733460440,441,0 +170733460489,441,0 +170733460537,441,0 +170733460585,441,0 +170733460635,441,0 +170733460683,441,0 +170733460731,441,0 +170733460778,441,0 +170733460826,441,0 +170733460874,441,0 +170733460924,441,0 +170733460972,441,0 +170733461021,302,1 +170733461104,232,0 +170733461152,441,0 +170733461200,441,0 +170733461248,441,0 +170733461297,441,0 +170733461345,441,0 +170733461393,441,0 +170733461441,441,0 +170733461489,441,0 +170733461537,441,0 +170733461586,441,0 +170733461634,441,0 +170733461684,441,0 +170733461732,441,0 +170733461780,441,0 +170733461828,441,0 +170733461876,441,0 +170733461924,441,0 +170733461972,441,0 +170733462020,441,0 +170733462069,302,1 +170733462157,436,0 +170733462209,441,0 +170733462257,441,0 +170733462307,441,0 +170733462355,441,0 +170733462403,441,0 +170733462451,441,0 +170733462499,441,0 +170733462547,441,0 +170733462595,441,0 +170733462643,441,0 +170733462692,441,0 +170733462740,441,0 +170733462788,441,0 +170733462838,441,0 +170733462886,441,0 +170733462935,441,0 +170733462985,441,0 +170733463033,441,0 +170733463081,441,0 +170733463129,298,1 +170733463216,437,0 +170733463266,441,0 +170733463314,441,0 +170733463362,441,0 +170733463410,441,0 +170733463459,441,0 +170733463507,441,0 +170733463556,441,0 +170733463604,441,0 +170733463654,441,0 +170733463703,441,0 +170733463753,441,0 +170733463801,441,0 +170733463849,441,0 +170733463897,441,0 +170733463945,441,0 +170733463992,441,0 +170733464040,441,0 +170733464088,441,0 +170733464136,440,0 +170733464186,284,1 +170733464271,437,0 +170733464320,441,0 +170733464368,441,0 +170733464416,441,0 +170733464464,441,0 +170733464512,441,0 +170733464562,441,0 +170733464610,441,0 +170733464658,441,0 +170733464706,441,0 +170733464753,441,0 +170733464801,441,0 +170733464851,441,0 +170733464901,441,0 +170733464950,441,0 +170733464998,441,0 +170733465048,441,0 +170733465097,441,0 +170733465147,441,0 +170733465195,416,0 +170733465243,295,1 +170733465326,439,0 +170733465374,441,0 +170733465422,441,0 +170733465470,441,0 +170733465518,441,0 +170733465567,441,0 +170733465615,441,0 +170733465665,441,0 +170733465713,441,0 +170733465762,441,0 +170733465810,441,0 +170733465860,441,0 +170733465908,441,0 +170733465957,441,0 +170733466005,441,0 +170733466053,441,0 +170733466101,441,0 +170733466149,441,0 +170733466198,441,0 +170733466246,431,0 +170733466294,296,1 +170733466380,439,0 +170733466429,441,0 +170733466479,441,0 +170733466527,441,0 +170733466575,441,0 +170733466624,441,0 +170733466674,441,0 +170733466722,441,0 +170733466770,441,0 +170733466819,441,0 +170733466869,441,0 +170733466917,441,0 +170733466966,441,0 +170733467014,441,0 +170733467062,441,0 +170733467112,441,0 +170733467160,441,0 +170733467209,441,0 +170733467257,441,0 +170733467305,310,0 +170733467355,302,1 +170733467438,441,0 +170733467488,441,0 +170733467536,441,0 +170733467585,441,0 +170733467633,441,0 +170733467683,441,0 +170733467730,441,0 +170733467778,441,0 +170733467826,441,0 +170733467874,441,0 +170733467922,441,0 +170733467972,441,0 +170733468021,441,0 +170733468071,441,0 +170733468119,441,0 +170733468167,441,0 +170733468215,441,0 +170733468264,441,0 +170733468312,440,0 +170733468360,311,0 +170733468408,299,1 +170733468505,441,0 +170733468554,441,0 +170733468602,441,0 +170733468650,441,0 +170733468698,441,0 +170733468746,441,0 +170733468794,441,0 +170733468843,441,0 +170733468893,441,0 +170733468942,441,0 +170733468990,441,0 +170733469038,441,0 +170733469086,441,0 +170733469134,441,0 +170733469182,441,0 +170733469230,441,0 +170733469278,441,0 +170733469326,441,0 +170733469374,440,0 +170733469423,305,1 +170733469505,438,0 +170733469554,441,0 +170733469604,441,0 +170733469652,441,0 +170733469701,441,0 +170733469749,441,0 +170733469797,441,0 +170733469847,441,0 +170733469895,441,0 +170733469943,441,0 +170733469991,441,0 +170733470040,441,0 +170733470090,441,0 +170733470138,441,0 +170733470187,441,0 +170733470235,441,0 +170733470283,441,0 +170733470331,441,0 +170733470380,441,0 +170733470430,440,0 +170733470478,276,1 +170733470558,437,0 +170733470608,441,0 +170733470656,441,0 +170733470704,441,0 +170733470751,441,0 +170733470799,441,0 +170733470847,441,0 +170733470895,441,0 +170733470945,441,0 +170733470994,441,0 +170733471042,441,0 +170733471092,441,0 +170733471141,441,0 +170733471191,441,0 +170733471240,441,0 +170733471290,441,0 +170733471338,441,0 +170733471386,441,0 +170733471435,441,0 +170733471483,440,0 +170733471533,302,1 +170733471617,439,0 +170733471665,441,0 +170733471715,441,0 +170733471762,441,0 +170733471810,441,0 +170733471858,441,0 +170733471906,441,0 +170733471956,441,0 +170733472004,441,0 +170733472052,441,0 +170733472100,441,0 +170733472149,441,0 +170733472199,441,0 +170733472248,441,0 +170733472296,441,0 +170733472344,441,0 +170733472393,441,0 +170733472441,441,0 +170733472489,441,0 +170733472539,436,0 +170733472587,288,1 +170733472671,439,0 +170733472718,441,0 +170733472768,441,0 +170733472816,441,0 +170733472865,441,0 +170733472913,441,0 +170733472963,441,0 +170733473011,441,0 +170733473060,441,0 +170733473110,441,0 +170733473158,441,0 +170733473207,441,0 +170733473255,441,0 +170733473303,441,0 +170733473351,441,0 +170733473399,441,0 +170733473449,441,0 +170733473497,441,0 +170733473546,441,0 +170733473594,307,1 +170733473679,233,0 +170733473727,440,0 +170733473775,441,0 +170733473825,441,0 +170733473873,441,0 +170733473922,441,0 +170733473970,441,0 +170733474018,441,0 +170733474066,441,0 +170733474114,441,0 +170733474162,441,0 +170733474211,441,0 +170733474259,441,0 +170733474309,441,0 +170733474357,441,0 +170733474406,441,0 +170733474456,441,0 +170733474504,441,0 +170733474552,441,0 +170733474600,441,0 +170733474649,292,1 +170733474739,435,0 +170733474788,441,0 +170733474838,441,0 +170733474886,441,0 +170733474934,441,0 +170733474982,441,0 +170733475030,441,0 +170733475079,441,0 +170733475129,441,0 +170733475177,441,0 +170733475226,441,0 +170733475276,441,0 +170733475324,441,0 +170733475372,441,0 +170733475420,441,0 +170733475469,441,0 +170733475519,441,0 +170733475568,441,0 +170733475616,441,0 +170733475664,440,0 +170733475714,260,0 +170733475763,306,1 +170733475848,441,0 +170733475896,441,0 +170733475944,441,0 +170733475992,441,0 +170733476041,441,0 +170733476089,441,0 +170733476137,441,0 +170733476185,441,0 +170733476233,441,0 +170733476281,441,0 +170733476330,441,0 +170733476378,441,0 +170733476426,441,0 +170733476474,441,0 +170733476524,441,0 +170733476572,441,0 +170733476621,441,0 +170733476669,441,0 +170733476717,441,0 +170733476765,303,1 +170733476854,435,0 +170733476901,441,0 +170733476949,441,0 +170733476997,441,0 +170733477047,441,0 +170733477094,441,0 +170733477142,441,0 +170733477190,441,0 +170733477238,441,0 +170733477286,441,0 +170733477334,441,0 +170733477382,441,0 +170733477430,441,0 +170733477478,441,0 +170733477525,441,0 +170733477573,441,0 +170733477621,441,0 +170733477671,441,0 +170733477718,441,0 +170733477766,438,0 +170733477814,291,1 +170733477902,439,0 +170733477950,441,0 +170733477998,441,0 +170733478046,441,0 +170733478094,441,0 +170733478142,441,0 +170733478189,441,0 +170733478237,441,0 +170733478287,441,0 +170733478335,441,0 +170733478383,441,0 +170733478432,441,0 +170733478480,441,0 +170733478528,441,0 +170733478576,441,0 +170733478625,441,0 +170733478675,441,0 +170733478723,441,0 +170733478771,441,0 +170733478820,440,0 +170733478870,307,1 +170733478956,439,0 +170733479004,441,0 +170733479052,441,0 +170733479102,441,0 +170733479150,441,0 +170733479198,441,0 +170733479246,441,0 +170733479295,441,0 +170733479345,441,0 +170733479393,441,0 +170733479441,441,0 +170733479489,441,0 +170733479536,441,0 +170733479584,441,0 +170733479632,441,0 +170733479682,441,0 +170733479730,441,0 +170733479777,441,0 +170733479825,441,0 +170733479873,276,1 +170733479957,287,1 +170733480038,441,0 +170733480086,441,0 +170733480134,441,0 +170733480182,441,0 +170733480232,441,0 +170733480280,441,0 +170733480329,441,0 +170733480377,441,0 +170733480425,441,0 +170733480473,441,0 +170733480521,441,0 +170733480570,441,0 +170733480620,441,0 +170733480668,441,0 +170733480717,441,0 +170733480765,441,0 +170733480813,441,0 +170733480861,441,0 +170733480909,439,0 +170733480957,262,0 +170733481005,292,1 +170733481094,441,0 +170733481142,441,0 +170733481190,441,0 +170733481239,441,0 +170733481287,441,0 +170733481335,441,0 +170733481383,441,0 +170733481431,441,0 +170733481479,441,0 +170733481527,441,0 +170733481575,441,0 +170733481625,441,0 +170733481674,441,0 +170733481722,441,0 +170733481770,441,0 +170733481820,441,0 +170733481869,441,0 +170733481917,441,0 +170733481965,436,0 +170733482013,290,1 +170733482095,439,0 +170733482143,441,0 +170733482190,441,0 +170733482238,441,0 +170733482286,441,0 +170733482336,441,0 +170733482384,441,0 +170733482432,441,0 +170733482481,441,0 +170733482529,441,0 +170733482577,441,0 +170733482627,441,0 +170733482676,441,0 +170733482726,441,0 +170733482774,441,0 +170733482822,441,0 +170733482870,441,0 +170733482919,441,0 +170733482967,441,0 +170733483015,438,0 +170733483063,289,1 +170733483140,437,0 +170733483188,441,0 +170733483236,441,0 +170733483284,441,0 +170733483332,441,0 +170733483379,441,0 +170733483429,441,0 +170733483477,441,0 +170733483525,441,0 +170733483574,441,0 +170733483624,441,0 +170733483672,441,0 +170733483720,441,0 +170733483767,441,0 +170733483815,441,0 +170733483865,441,0 +170733483913,441,0 +170733483961,441,0 +170733484009,441,0 +170733484056,440,0 +170733484104,273,1 +170733484191,439,0 +170733484240,441,0 +170733484288,441,0 +170733484336,441,0 +170733484386,441,0 +170733484434,441,0 +170733484482,441,0 +170733484530,441,0 +170733484578,441,0 +170733484627,441,0 +170733484677,441,0 +170733484725,441,0 +170733484773,441,0 +170733484820,441,0 +170733484868,441,0 +170733484916,441,0 +170733484964,441,0 +170733485012,441,0 +170733485060,441,0 +170733485108,440,0 +170733485156,289,1 +170733485240,437,0 +170733485288,441,0 +170733485336,441,0 +170733485383,441,0 +170733485431,441,0 +170733485479,441,0 +170733485527,441,0 +170733485575,441,0 +170733485623,441,0 +170733485671,441,0 +170733485719,441,0 +170733485767,441,0 +170733485815,441,0 +170733485863,441,0 +170733485910,441,0 +170733485958,441,0 +170733486006,441,0 +170733486054,441,0 +170733486102,441,0 +170733486151,440,0 +170733486199,297,1 +170733486282,437,0 +170733486330,441,0 +170733486379,441,0 +170733486427,441,0 +170733486475,441,0 +170733486525,441,0 +170733486573,441,0 +170733486621,441,0 +170733486670,441,0 +170733486720,441,0 +170733486769,441,0 +170733486817,441,0 +170733486867,441,0 +170733486915,441,0 +170733486964,441,0 +170733487014,441,0 +170733487062,441,0 +170733487111,441,0 +170733487161,441,0 +170733487209,440,0 +170733487258,294,1 +170733487345,439,0 +170733487393,441,0 +170733487441,441,0 +170733487489,441,0 +170733487536,441,0 +170733487584,441,0 +170733487632,441,0 +170733487680,441,0 +170733487728,441,0 +170733487776,441,0 +170733487825,441,0 +170733487873,441,0 +170733487921,441,0 +170733487969,441,0 +170733488017,441,0 +170733488065,441,0 +170733488113,441,0 +170733488161,441,0 +170733488208,441,0 +170733488256,439,0 +170733488304,296,1 +170733488395,440,0 +170733488443,441,0 +170733488491,441,0 +170733488540,441,0 +170733488588,441,0 +170733488636,441,0 +170733488686,441,0 +170733488735,441,0 +170733488783,441,0 +170733488832,441,0 +170733488880,441,0 +170733488930,441,0 +170733488978,441,0 +170733489027,441,0 +170733489075,441,0 +170733489123,441,0 +170733489171,441,0 +170733489219,441,0 +170733489267,441,0 +170733489315,294,1 +170733489402,293,1 +170733489483,441,0 +170733489531,441,0 +170733489579,441,0 +170733489627,441,0 +170733489675,441,0 +170733489723,441,0 +170733489770,441,0 +170733489818,441,0 +170733489866,441,0 +170733489914,441,0 +170733489962,441,0 +170733490010,441,0 +170733490058,441,0 +170733490106,441,0 +170733490154,441,0 +170733490202,441,0 +170733490249,441,0 +170733490297,441,0 +170733490345,440,0 +170733490393,284,1 +170733490478,437,0 +170733490526,441,0 +170733490574,441,0 +170733490622,441,0 +170733490671,441,0 +170733490719,441,0 +170733490767,441,0 +170733490817,441,0 +170733490865,441,0 +170733490914,441,0 +170733490962,441,0 +170733491010,441,0 +170733491058,441,0 +170733491106,441,0 +170733491153,441,0 +170733491201,441,0 +170733491249,441,0 +170733491299,441,0 +170733491347,441,0 +170733491394,440,0 +170733491442,314,0 +170733491490,295,1 +170733491572,441,0 +170733491620,441,0 +170733491668,441,0 +170733491716,441,0 +170733491764,441,0 +170733491812,441,0 +170733491859,441,0 +170733491909,441,0 +170733491957,441,0 +170733492005,441,0 +170733492055,441,0 +170733492102,441,0 +170733492152,441,0 +170733492200,441,0 +170733492248,441,0 +170733492296,441,0 +170733492345,441,0 +170733492395,441,0 +170733492443,440,0 +170733492492,299,1 +170733492577,437,0 +170733492626,441,0 +170733492674,441,0 +170733492724,441,0 +170733492773,441,0 +170733492823,441,0 +170733492872,441,0 +170733492920,441,0 +170733492970,441,0 +170733493018,441,0 +170733493066,441,0 +170733493115,441,0 +170733493165,441,0 +170733493214,441,0 +170733493264,441,0 +170733493312,441,0 +170733493360,441,0 +170733493407,441,0 +170733493457,441,0 +170733493505,439,0 +170733493555,301,1 +170733493641,439,0 +170733493690,441,0 +170733493738,441,0 +170733493786,441,0 +170733493836,441,0 +170733493884,441,0 +170733493932,441,0 +170733493980,441,0 +170733494028,441,0 +170733494077,441,0 +170733494127,441,0 +170733494174,441,0 +170733494222,441,0 +170733494270,441,0 +170733494318,441,0 +170733494366,441,0 +170733494414,441,0 +170733494462,441,0 +170733494512,441,0 +170733494560,423,0 +170733494609,307,1 +170733494694,440,0 +170733494742,441,0 +170733494790,441,0 +170733494840,441,0 +170733494889,441,0 +170733494939,441,0 +170733494987,441,0 +170733495035,441,0 +170733495083,441,0 +170733495132,441,0 +170733495180,441,0 +170733495230,441,0 +170733495278,441,0 +170733495326,441,0 +170733495374,441,0 +170733495422,441,0 +170733495469,441,0 +170733495519,441,0 +170733495567,441,0 +170733495615,312,0 +170733495663,305,1 +170733495749,440,0 +170733495797,441,0 +170733495845,441,0 +170733495895,441,0 +170733495943,441,0 +170733495992,441,0 +170733496040,441,0 +170733496088,441,0 +170733496136,441,0 +170733496186,441,0 +170733496234,441,0 +170733496283,441,0 +170733496333,441,0 +170733496382,441,0 +170733496430,441,0 +170733496478,441,0 +170733496526,441,0 +170733496575,441,0 +170733496625,441,0 +170733496674,280,1 +170733496767,434,0 +170733496815,441,0 +170733496863,441,0 +170733496911,441,0 +170733496959,441,0 +170733497008,441,0 +170733497056,441,0 +170733497104,441,0 +170733497152,441,0 +170733497200,441,0 +170733497248,441,0 +170733497296,441,0 +170733497345,441,0 +170733497393,441,0 +170733497441,441,0 +170733497489,441,0 +170733497537,441,0 +170733497585,441,0 +170733497633,441,0 +170733497681,441,0 +170733497729,309,1 +170733497816,428,0 +170733497866,441,0 +170733497915,441,0 +170733497963,441,0 +170733498011,441,0 +170733498061,441,0 +170733498109,441,0 +170733498157,441,0 +170733498205,441,0 +170733498253,441,0 +170733498300,441,0 +170733498350,441,0 +170733498398,441,0 +170733498446,441,0 +170733498494,441,0 +170733498543,441,0 +170733498593,441,0 +170733498641,441,0 +170733498690,441,0 +170733498740,440,0 +170733498788,295,1 +170733498874,438,0 +170733498922,441,0 +170733498970,441,0 +170733499018,441,0 +170733499066,441,0 +170733499114,441,0 +170733499162,441,0 +170733499210,441,0 +170733499259,441,0 +170733499307,441,0 +170733499357,441,0 +170733499405,441,0 +170733499454,441,0 +170733499502,441,0 +170733499550,441,0 +170733499600,441,0 +170733499648,441,0 +170733499697,441,0 +170733499745,441,0 +170733499793,440,0 +170733499841,292,1 +170733499928,439,0 +170733499977,441,0 +170733500025,441,0 +170733500073,441,0 +170733500122,441,0 +170733500170,441,0 +170733500218,441,0 +170733500266,441,0 +170733500314,441,0 +170733500364,441,0 +170733500411,441,0 +170733500459,441,0 +170733500507,441,0 +170733500555,441,0 +170733500603,441,0 +170733500651,441,0 +170733500699,441,0 +170733500747,441,0 +170733500796,441,0 +170733500844,440,0 +170733500892,308,1 +170733500973,436,0 +170733501022,441,0 +170733501072,441,0 +170733501121,441,0 +170733501169,441,0 +170733501217,441,0 +170733501265,441,0 +170733501313,441,0 +170733501363,441,0 +170733501412,441,0 +170733501462,441,0 +170733501510,441,0 +170733501559,441,0 +170733501607,441,0 +170733501657,441,0 +170733501706,441,0 +170733501756,441,0 +170733501803,441,0 +170733501851,441,0 +170733501899,440,0 +170733501949,283,1 +170733502027,438,0 +170733502075,441,0 +170733502124,441,0 +170733502172,441,0 +170733502220,441,0 +170733502268,441,0 +170733502317,441,0 +170733502367,441,0 +170733502415,441,0 +170733502463,441,0 +170733502511,441,0 +170733502560,441,0 +170733502608,441,0 +170733502656,441,0 +170733502704,441,0 +170733502752,441,0 +170733502800,441,0 +170733502848,441,0 +170733502896,441,0 +170733502944,428,0 +170733502991,302,1 +170733503077,439,0 +170733503124,441,0 +170733503172,441,0 +170733503220,441,0 +170733503268,441,0 +170733503317,441,0 +170733503367,441,0 +170733503415,441,0 +170733503463,441,0 +170733503510,441,0 +170733503558,441,0 +170733503606,441,0 +170733503654,441,0 +170733503702,441,0 +170733503750,441,0 +170733503798,441,0 +170733503846,441,0 +170733503894,441,0 +170733503942,441,0 +170733503991,440,0 +170733504039,291,1 +170733504122,437,0 +170733504170,441,0 +170733504218,441,0 +170733504266,441,0 +170733504314,441,0 +170733504361,441,0 +170733504411,441,0 +170733504459,441,0 +170733504508,441,0 +170733504556,441,0 +170733504604,441,0 +170733504652,441,0 +170733504700,441,0 +170733504748,441,0 +170733504797,441,0 +170733504845,441,0 +170733504895,441,0 +170733504943,441,0 +170733504991,441,0 +170733505040,440,0 +170733505088,305,1 +170733505170,437,0 +170733505218,441,0 +170733505266,441,0 +170733505314,441,0 +170733505362,441,0 +170733505410,441,0 +170733505458,441,0 +170733505506,441,0 +170733505555,441,0 +170733505605,441,0 +170733505654,441,0 +170733505702,441,0 +170733505750,441,0 +170733505798,441,0 +170733505846,441,0 +170733505894,441,0 +170733505942,441,0 +170733505990,441,0 +170733506038,441,0 +170733506086,440,0 +170733506136,296,1 +170733506218,439,0 +170733506266,441,0 +170733506316,441,0 +170733506365,441,0 +170733506413,441,0 +170733506463,441,0 +170733506511,441,0 +170733506559,441,0 +170733506607,441,0 +170733506655,441,0 +170733506703,441,0 +170733506751,441,0 +170733506800,441,0 +170733506848,441,0 +170733506896,441,0 +170733506944,441,0 +170733506994,441,0 +170733507042,441,0 +170733507091,441,0 +170733507139,440,0 +170733507187,293,1 +170733507271,439,0 +170733507321,441,0 +170733507370,441,0 +170733507418,441,0 +170733507468,441,0 +170733507516,441,0 +170733507564,441,0 +170733507612,441,0 +170733507660,441,0 +170733507709,441,0 +170733507757,441,0 +170733507806,441,0 +170733507856,441,0 +170733507904,441,0 +170733507952,441,0 +170733508000,441,0 +170733508048,441,0 +170733508096,441,0 +170733508145,441,0 +170733508193,440,0 +170733508241,307,1 +170733508326,438,0 +170733508373,441,0 +170733508423,441,0 +170733508472,441,0 +170733508520,441,0 +170733508570,441,0 +170733508619,441,0 +170733508667,441,0 +170733508717,441,0 +170733508766,441,0 +170733508814,441,0 +170733508862,441,0 +170733508912,441,0 +170733508960,441,0 +170733509009,441,0 +170733509057,441,0 +170733509107,441,0 +170733509156,441,0 +170733509206,441,0 +170733509254,277,1 +170733509337,277,1 +170733509419,441,0 +170733509468,441,0 +170733509518,441,0 +170733509567,441,0 +170733509615,441,0 +170733509663,441,0 +170733509711,441,0 +170733509759,441,0 +170733509809,441,0 +170733509858,441,0 +170733509908,441,0 +170733509956,441,0 +170733510005,441,0 +170733510055,441,0 +170733510104,441,0 +170733510154,441,0 +170733510202,441,0 +170733510250,441,0 +170733510298,273,1 +170733510384,253,0 +170733510432,441,0 +170733510480,441,0 +170733510528,441,0 +170733510578,441,0 +170733510627,441,0 +170733510677,441,0 +170733510725,441,0 +170733510773,441,0 +170733510820,441,0 +170733510868,441,0 +170733510916,441,0 +170733510964,441,0 +170733511014,441,0 +170733511061,441,0 +170733511109,441,0 +170733511157,441,0 +170733511205,441,0 +170733511253,441,0 +170733511302,441,0 +170733511350,294,1 +170733511430,287,1 +170733511512,441,0 +170733511560,441,0 +170733511608,441,0 +170733511655,441,0 +170733511703,441,0 +170733511751,441,0 +170733511801,441,0 +170733511849,441,0 +170733511896,441,0 +170733511944,441,0 +170733511992,441,0 +170733512040,441,0 +170733512088,441,0 +170733512136,441,0 +170733512184,441,0 +170733512233,441,0 +170733512281,441,0 +170733512331,441,0 +170733512381,440,0 +170733512430,305,1 +170733512519,438,0 +170733512568,441,0 +170733512616,441,0 +170733512666,441,0 +170733512714,441,0 +170733512763,441,0 +170733512812,441,0 +170733512862,441,0 +170733512912,441,0 +170733512959,441,0 +170733513007,441,0 +170733513057,441,0 +170733513105,441,0 +170733513154,441,0 +170733513204,441,0 +170733513252,441,0 +170733513300,441,0 +170733513349,441,0 +170733513397,441,0 +170733513447,301,1 +170733513530,258,0 +170733513579,440,0 +170733513627,441,0 +170733513675,441,0 +170733513725,441,0 +170733513772,441,0 +170733513822,441,0 +170733513871,441,0 +170733513919,441,0 +170733513969,441,0 +170733514017,441,0 +170733514065,441,0 +170733514114,441,0 +170733514164,441,0 +170733514212,441,0 +170733514261,441,0 +170733514311,441,0 +170733514360,441,0 +170733514408,441,0 +170733514456,441,0 +170733514504,297,1 +170733514586,269,0 +170733514636,440,0 +170733514684,441,0 +170733514732,441,0 +170733514780,441,0 +170733514829,441,0 +170733514877,441,0 +170733514927,441,0 +170733514975,441,0 +170733515023,441,0 +170733515071,441,0 +170733515120,441,0 +170733515168,441,0 +170733515216,441,0 +170733515264,441,0 +170733515312,441,0 +170733515360,441,0 +170733515410,441,0 +170733515458,441,0 +170733515506,441,0 +170733515553,262,0 +170733515601,291,1 +170733515681,440,0 +170733515730,441,0 +170733515778,441,0 +170733515828,441,0 +170733515876,441,0 +170733515925,441,0 +170733515975,441,0 +170733516025,441,0 +170733516072,441,0 +170733516120,441,0 +170733516170,441,0 +170733516219,441,0 +170733516267,441,0 +170733516315,441,0 +170733516365,441,0 +170733516413,441,0 +170733516461,441,0 +170733516509,441,0 +170733516557,441,0 +170733516606,293,1 +170733516687,235,0 +170733516735,441,0 +170733516783,441,0 +170733516832,441,0 +170733516882,441,0 +170733516930,441,0 +170733516978,441,0 +170733517026,441,0 +170733517074,441,0 +170733517123,441,0 +170733517171,441,0 +170733517219,441,0 +170733517269,441,0 +170733517317,441,0 +170733517364,441,0 +170733517414,441,0 +170733517462,441,0 +170733517511,441,0 +170733517559,441,0 +170733517609,441,0 +170733517658,298,1 +170733517746,295,1 +170733517827,441,0 +170733517876,441,0 +170733517924,441,0 +170733517972,441,0 +170733518020,441,0 +170733518068,441,0 +170733518117,441,0 +170733518165,441,0 +170733518213,441,0 +170733518261,441,0 +170733518311,441,0 +170733518359,441,0 +170733518407,441,0 +170733518455,441,0 +170733518503,441,0 +170733518552,441,0 +170733518600,441,0 +170733518648,441,0 +170733518696,296,1 +170733518782,268,0 +170733518832,441,0 +170733518880,441,0 +170733518929,441,0 +170733518977,441,0 +170733519025,441,0 +170733519073,441,0 +170733519121,441,0 +170733519169,441,0 +170733519217,441,0 +170733519266,441,0 +170733519316,441,0 +170733519364,441,0 +170733519412,441,0 +170733519460,441,0 +170733519508,441,0 +170733519556,441,0 +170733519604,441,0 +170733519652,441,0 +170733519700,441,0 +170733519749,308,1 +170733519836,237,0 +170733519884,441,0 +170733519932,441,0 +170733519980,441,0 +170733520028,441,0 +170733520076,441,0 +170733520124,441,0 +170733520174,441,0 +170733520223,441,0 +170733520271,441,0 +170733520319,441,0 +170733520368,441,0 +170733520416,441,0 +170733520464,441,0 +170733520512,441,0 +170733520560,441,0 +170733520608,441,0 +170733520658,441,0 +170733520706,441,0 +170733520754,441,0 +170733520802,301,1 +170733520882,237,0 +170733520930,441,0 +170733520980,441,0 +170733521029,441,0 +170733521077,441,0 +170733521125,441,0 +170733521173,441,0 +170733521222,441,0 +170733521272,441,0 +170733521321,441,0 +170733521369,441,0 +170733521417,441,0 +170733521465,441,0 +170733521513,441,0 +170733521561,441,0 +170733521611,441,0 +170733521659,441,0 +170733521707,441,0 +170733521755,441,0 +170733521803,441,0 +170733521851,287,1 +170733521937,231,0 +170733521985,441,0 +170733522033,441,0 +170733522081,441,0 +170733522129,441,0 +170733522177,441,0 +170733522224,441,0 +170733522272,441,0 +170733522320,441,0 +170733522370,441,0 +170733522419,441,0 +170733522469,441,0 +170733522518,441,0 +170733522566,441,0 +170733522615,441,0 +170733522663,441,0 +170733522713,441,0 +170733522761,441,0 +170733522810,440,0 +170733522860,441,0 +170733522908,289,1 +170733522992,436,0 +170733523042,441,0 +170733523091,441,0 +170733523139,441,0 +170733523188,441,0 +170733523236,441,0 +170733523284,441,0 +170733523332,441,0 +170733523382,441,0 +170733523431,441,0 +170733523479,441,0 +170733523527,441,0 +170733523575,441,0 +170733523623,441,0 +170733523671,441,0 +170733523719,441,0 +170733523769,441,0 +170733523817,441,0 +170733523864,441,0 +170733523912,441,0 +170733523960,298,1 +170733524043,432,0 +170733524091,441,0 +170733524139,441,0 +170733524188,441,0 +170733524238,441,0 +170733524286,441,0 +170733524334,441,0 +170733524382,441,0 +170733524430,441,0 +170733524479,441,0 +170733524527,441,0 +170733524575,441,0 +170733524623,441,0 +170733524673,441,0 +170733524721,441,0 +170733524768,441,0 +170733524816,441,0 +170733524864,441,0 +170733524912,441,0 +170733524960,440,0 +170733525008,293,1 +170733525093,436,0 +170733525143,441,0 +170733525192,441,0 +170733525240,441,0 +170733525288,441,0 +170733525336,441,0 +170733525384,441,0 +170733525432,441,0 +170733525480,441,0 +170733525527,441,0 +170733525575,441,0 +170733525625,441,0 +170733525673,441,0 +170733525721,441,0 +170733525769,441,0 +170733525816,441,0 +170733525864,441,0 +170733525914,441,0 +170733525963,441,0 +170733526013,440,0 +170733526061,282,1 +170733526141,438,0 +170733526189,441,0 +170733526237,441,0 +170733526286,441,0 +170733526336,441,0 +170733526384,441,0 +170733526432,441,0 +170733526480,441,0 +170733526528,441,0 +170733526576,441,0 +170733526624,441,0 +170733526672,441,0 +170733526720,441,0 +170733526769,441,0 +170733526817,441,0 +170733526865,441,0 +170733526913,441,0 +170733526962,441,0 +170733527010,441,0 +170733527060,440,0 +170733527109,273,1 +170733527192,437,0 +170733527242,441,0 +170733527290,441,0 +170733527339,441,0 +170733527387,441,0 +170733527437,441,0 +170733527485,441,0 +170733527532,441,0 +170733527580,441,0 +170733527628,441,0 +170733527678,441,0 +170733527726,441,0 +170733527773,441,0 +170733527821,441,0 +170733527869,441,0 +170733527917,441,0 +170733527965,441,0 +170733528013,441,0 +170733528061,441,0 +170733528109,440,0 +170733528157,297,1 +170733528243,439,0 +170733528291,441,0 +170733528339,441,0 +170733528387,441,0 +170733528434,441,0 +170733528482,441,0 +170733528531,441,0 +170733528579,441,0 +170733528627,441,0 +170733528675,441,0 +170733528724,441,0 +170733528774,441,0 +170733528821,441,0 +170733528869,441,0 +170733528917,441,0 +170733528965,441,0 +170733529013,441,0 +170733529061,441,0 +170733529109,441,0 +170733529157,440,0 +170733529205,300,1 +170733529293,438,0 +170733529342,441,0 +170733529392,441,0 +170733529440,441,0 +170733529488,441,0 +170733529536,441,0 +170733529584,441,0 +170733529632,441,0 +170733529681,441,0 +170733529729,441,0 +170733529779,441,0 +170733529828,441,0 +170733529878,441,0 +170733529927,441,0 +170733529975,441,0 +170733530023,441,0 +170733530071,441,0 +170733530119,441,0 +170733530169,441,0 +170733530217,440,0 +170733530265,268,0 +170733530314,278,1 +170733530400,441,0 +170733530448,441,0 +170733530496,441,0 +170733530546,441,0 +170733530594,441,0 +170733530642,441,0 +170733530691,441,0 +170733530739,441,0 +170733530787,441,0 +170733530835,441,0 +170733530883,441,0 +170733530930,441,0 +170733530978,441,0 +170733531026,441,0 +170733531074,441,0 +170733531122,441,0 +170733531170,441,0 +170733531218,441,0 +170733531267,439,0 +170733531315,300,1 +170733531401,439,0 +170733531449,441,0 +170733531497,441,0 +170733531545,441,0 +170733531593,441,0 +170733531641,441,0 +170733531689,441,0 +170733531737,441,0 +170733531785,441,0 +170733531832,441,0 +170733531880,441,0 +170733531928,441,0 +170733531976,441,0 +170733532026,441,0 +170733532073,441,0 +170733532121,441,0 +170733532169,441,0 +170733532217,441,0 +170733532265,441,0 +170733532313,267,0 +170733532361,300,1 +170733532450,440,0 +170733532498,441,0 +170733532545,441,0 +170733532593,441,0 +170733532641,441,0 +170733532691,441,0 +170733532739,441,0 +170733532787,441,0 +170733532835,441,0 +170733532884,441,0 +170733532934,441,0 +170733532982,441,0 +170733533030,441,0 +170733533077,441,0 +170733533127,441,0 +170733533175,441,0 +170733533223,441,0 +170733533272,441,0 +170733533320,441,0 +170733533368,270,1 +170733533452,280,1 +170733533534,441,0 +170733533582,441,0 +170733533632,441,0 +170733533680,441,0 +170733533728,441,0 +170733533776,441,0 +170733533824,441,0 +170733533872,441,0 +170733533919,441,0 +170733533967,441,0 +170733534015,441,0 +170733534065,441,0 +170733534113,441,0 +170733534161,441,0 +170733534209,441,0 +170733534258,441,0 +170733534306,441,0 +170733534354,440,0 +170733534402,440,0 +170733534450,299,1 +170733534534,437,0 +170733534582,441,0 +170733534630,441,0 +170733534678,441,0 +170733534726,441,0 +170733534776,441,0 +170733534824,441,0 +170733534872,441,0 +170733534920,441,0 +170733534968,441,0 +170733535016,441,0 +170733535065,441,0 +170733535113,441,0 +170733535161,441,0 +170733535209,441,0 +170733535259,441,0 +170733535308,441,0 +170733535356,441,0 +170733535404,441,0 +170733535452,437,0 +170733535502,309,1 +170733535589,439,0 +170733535637,441,0 +170733535685,441,0 +170733535735,441,0 +170733535783,441,0 +170733535831,441,0 +170733535879,441,0 +170733535927,441,0 +170733535975,441,0 +170733536023,441,0 +170733536071,441,0 +170733536120,441,0 +170733536168,441,0 +170733536218,441,0 +170733536267,441,0 +170733536315,441,0 +170733536363,441,0 +170733536411,441,0 +170733536459,440,0 +170733536507,440,0 +170733536555,299,1 +170733536641,439,0 +170733536690,441,0 +170733536738,441,0 +170733536786,441,0 +170733536834,441,0 +170733536882,441,0 +170733536932,441,0 +170733536980,441,0 +170733537028,441,0 +170733537076,441,0 +170733537123,441,0 +170733537173,441,0 +170733537221,441,0 +170733537269,441,0 +170733537318,441,0 +170733537366,441,0 +170733537416,441,0 +170733537464,441,0 +170733537512,441,0 +170733537561,439,0 +170733537609,300,1 +170733537697,439,0 +170733537746,441,0 +170733537796,441,0 +170733537844,441,0 +170733537892,441,0 +170733537941,441,0 +170733537989,441,0 +170733538037,441,0 +170733538085,441,0 +170733538135,441,0 +170733538184,441,0 +170733538232,441,0 +170733538280,441,0 +170733538329,441,0 +170733538377,441,0 +170733538425,441,0 +170733538475,441,0 +170733538524,441,0 +170733538572,440,0 +170733538620,297,1 +170733538702,247,0 +170733538750,440,0 +170733538797,441,0 +170733538845,441,0 +170733538893,441,0 +170733538941,441,0 +170733538989,441,0 +170733539037,441,0 +170733539085,441,0 +170733539133,441,0 +170733539181,441,0 +170733539229,441,0 +170733539277,441,0 +170733539324,441,0 +170733539372,441,0 +170733539420,441,0 +170733539468,441,0 +170733539516,441,0 +170733539564,441,0 +170733539612,441,0 +170733539660,322,0 +170733539708,307,1 +170733539793,440,0 +170733539841,441,0 +170733539888,441,0 +170733539936,441,0 +170733539986,441,0 +170733540035,441,0 +170733540085,441,0 +170733540133,441,0 +170733540182,441,0 +170733540230,441,0 +170733540280,441,0 +170733540328,441,0 +170733540377,441,0 +170733540425,441,0 +170733540473,441,0 +170733540523,441,0 +170733540571,441,0 +170733540620,441,0 +170733540670,441,0 +170733540719,311,0 +170733540767,297,1 +170733540852,441,0 +170733540902,441,0 +170733540951,441,0 +170733541001,441,0 +170733541049,441,0 +170733541097,441,0 +170733541144,441,0 +170733541192,441,0 +170733541240,441,0 +170733541288,441,0 +170733541338,441,0 +170733541386,441,0 +170733541434,441,0 +170733541483,441,0 +170733541533,441,0 +170733541581,441,0 +170733541628,441,0 +170733541676,441,0 +170733541724,441,0 +170733541772,308,1 +170733541859,239,0 +170733541907,441,0 +170733541955,441,0 +170733542003,441,0 +170733542051,441,0 +170733542100,441,0 +170733542150,441,0 +170733542198,441,0 +170733542246,441,0 +170733542295,441,0 +170733542345,441,0 +170733542393,441,0 +170733542441,441,0 +170733542489,441,0 +170733542537,441,0 +170733542585,441,0 +170733542633,441,0 +170733542681,441,0 +170733542728,441,0 +170733542778,440,0 +170733542826,296,1 +170733542909,434,0 +170733542957,441,0 +170733543005,441,0 +170733543052,441,0 +170733543102,441,0 +170733543150,441,0 +170733543199,441,0 +170733543247,441,0 +170733543295,441,0 +170733543343,441,0 +170733543393,441,0 +170733543441,441,0 +170733543489,441,0 +170733543538,441,0 +170733543586,441,0 +170733543634,441,0 +170733543684,441,0 +170733543733,441,0 +170733543783,441,0 +170733543831,441,0 +170733543879,302,1 +170733543961,240,0 +170733544009,441,0 +170733544059,441,0 +170733544108,441,0 +170733544158,441,0 +170733544206,441,0 +170733544254,441,0 +170733544301,441,0 +170733544351,441,0 +170733544401,441,0 +170733544450,441,0 +170733544498,441,0 +170733544546,441,0 +170733544595,441,0 +170733544645,441,0 +170733544693,441,0 +170733544742,441,0 +170733544790,441,0 +170733544838,441,0 +170733544886,440,0 +170733544936,304,1 +170733545018,436,0 +170733545066,441,0 +170733545114,441,0 +170733545162,441,0 +170733545210,441,0 +170733545259,441,0 +170733545307,441,0 +170733545357,441,0 +170733545405,441,0 +170733545454,441,0 +170733545502,441,0 +170733545550,441,0 +170733545598,441,0 +170733545646,441,0 +170733545694,441,0 +170733545743,441,0 +170733545791,441,0 +170733545841,441,0 +170733545889,441,0 +170733545937,441,0 +170733545985,288,1 +170733546070,436,0 +170733546117,441,0 +170733546167,441,0 +170733546215,441,0 +170733546263,441,0 +170733546313,441,0 +170733546362,441,0 +170733546410,441,0 +170733546460,441,0 +170733546507,441,0 +170733546555,441,0 +170733546603,441,0 +170733546651,441,0 +170733546699,441,0 +170733546749,441,0 +170733546798,441,0 +170733546846,441,0 +170733546894,441,0 +170733546944,441,0 +170733546992,441,0 +170733547040,306,1 +170733547121,437,0 +170733547169,441,0 +170733547217,441,0 +170733547265,441,0 +170733547314,441,0 +170733547362,441,0 +170733547410,441,0 +170733547458,441,0 +170733547508,441,0 +170733547557,441,0 +170733547607,441,0 +170733547655,441,0 +170733547703,441,0 +170733547752,441,0 +170733547800,441,0 +170733547850,441,0 +170733547899,441,0 +170733547947,441,0 +170733547997,441,0 +170733548045,440,0 +170733548093,282,1 +170733548173,436,0 +170733548221,441,0 +170733548269,441,0 +170733548317,441,0 +170733548365,441,0 +170733548413,441,0 +170733548461,441,0 +170733548510,441,0 +170733548560,441,0 +170733548607,441,0 +170733548657,441,0 +170733548705,441,0 +170733548754,441,0 +170733548802,441,0 +170733548850,441,0 +170733548898,441,0 +170733548946,441,0 +170733548994,441,0 +170733549042,441,0 +170733549090,440,0 +170733549138,262,0 +170733549186,302,1 +170733549265,441,0 +170733549315,441,0 +170733549363,441,0 +170733549412,441,0 +170733549460,441,0 +170733549508,441,0 +170733549556,441,0 +170733549604,441,0 +170733549652,441,0 +170733549700,441,0 +170733549749,441,0 +170733549797,441,0 +170733549845,441,0 +170733549895,441,0 +170733549943,441,0 +170733549992,441,0 +170733550040,441,0 +170733550088,441,0 +170733550136,440,0 +170733550186,298,1 +170733550277,439,0 +170733550325,441,0 +170733550375,441,0 +170733550423,441,0 +170733550472,441,0 +170733550520,441,0 +170733550568,441,0 +170733550616,441,0 +170733550664,441,0 +170733550712,441,0 +170733550760,441,0 +170733550808,441,0 +170733550856,441,0 +170733550904,441,0 +170733550953,441,0 +170733551001,441,0 +170733551049,441,0 +170733551097,441,0 +170733551146,441,0 +170733551194,440,0 +170733551242,294,1 +170733551329,439,0 +170733551379,441,0 +170733551427,441,0 +170733551475,441,0 +170733551523,441,0 +170733551570,441,0 +170733551620,441,0 +170733551668,441,0 +170733551716,441,0 +170733551765,441,0 +170733551813,441,0 +170733551861,441,0 +170733551909,441,0 +170733551957,441,0 +170733552004,441,0 +170733552052,441,0 +170733552100,441,0 +170733552148,441,0 +170733552196,441,0 +170733552244,440,0 +170733552293,297,1 +170733552373,437,0 +170733552420,441,0 +170733552468,441,0 +170733552518,441,0 +170733552566,441,0 +170733552614,441,0 +170733552663,441,0 +170733552711,441,0 +170733552759,441,0 +170733552808,441,0 +170733552856,441,0 +170733552904,441,0 +170733552952,441,0 +170733553000,441,0 +170733553048,441,0 +170733553097,441,0 +170733553145,441,0 +170733553193,441,0 +170733553241,441,0 +170733553289,440,0 +170733553337,296,1 +170733553421,437,0 +170733553469,441,0 +170733553517,441,0 +170733553565,441,0 +170733553615,441,0 +170733553663,441,0 +170733553711,441,0 +170733553759,441,0 +170733553808,441,0 +170733553856,441,0 +170733553904,441,0 +170733553952,441,0 +170733554001,441,0 +170733554049,441,0 +170733554097,441,0 +170733554145,441,0 +170733554195,441,0 +170733554244,441,0 +170733554292,441,0 +170733554340,440,0 +170733554388,298,1 +170733554466,435,0 +170733554514,441,0 +170733554562,441,0 +170733554610,441,0 +170733554658,441,0 +170733554706,441,0 +170733554754,441,0 +170733554802,441,0 +170733554851,441,0 +170733554899,441,0 +170733554949,441,0 +170733554998,441,0 +170733555046,441,0 +170733555094,441,0 +170733555142,441,0 +170733555192,441,0 +170733555240,441,0 +170733555289,441,0 +170733555337,441,0 +170733555385,440,0 +170733555433,298,1 +170733555517,436,0 +170733555565,441,0 +170733555613,441,0 +170733555662,441,0 +170733555710,441,0 +170733555758,441,0 +170733555808,441,0 +170733555855,441,0 +170733555903,441,0 +170733555951,441,0 +170733555999,441,0 +170733556047,441,0 +170733556095,441,0 +170733556143,441,0 +170733556191,441,0 +170733556240,441,0 +170733556288,441,0 +170733556336,441,0 +170733556384,441,0 +170733556432,440,0 +170733556482,299,1 +170733556569,437,0 +170733556618,441,0 +170733556668,441,0 +170733556716,441,0 +170733556765,441,0 +170733556815,441,0 +170733556863,441,0 +170733556911,441,0 +170733556959,441,0 +170733557007,441,0 +170733557056,441,0 +170733557106,441,0 +170733557155,441,0 +170733557203,441,0 +170733557253,441,0 +170733557301,441,0 +170733557350,441,0 +170733557398,441,0 +170733557448,441,0 +170733557496,350,0 +170733557543,307,1 +170733557624,439,0 +170733557673,441,0 +170733557721,441,0 +170733557771,441,0 +170733557820,441,0 +170733557868,441,0 +170733557916,441,0 +170733557964,441,0 +170733558012,441,0 +170733558060,441,0 +170733558108,441,0 +170733558156,441,0 +170733558204,441,0 +170733558252,441,0 +170733558301,441,0 +170733558349,441,0 +170733558399,441,0 +170733558447,441,0 +170733558495,441,0 +170733558544,439,0 +170733558592,287,1 +170733558678,439,0 +170733558726,441,0 +170733558774,441,0 +170733558824,441,0 +170733558872,441,0 +170733558921,441,0 +170733558969,441,0 +170733559018,441,0 +170733559066,441,0 +170733559116,441,0 +170733559164,441,0 +170733559213,441,0 +170733559261,441,0 +170733559311,441,0 +170733559360,441,0 +170733559408,441,0 +170733559458,441,0 +170733559506,441,0 +170733559554,441,0 +170733559602,310,0 +170733559650,292,1 +170733559726,439,0 +170733559774,441,0 +170733559822,441,0 +170733559872,441,0 +170733559920,441,0 +170733559969,441,0 +170733560017,441,0 +170733560067,441,0 +170733560115,441,0 +170733560163,441,0 +170733560210,441,0 +170733560258,441,0 +170733560306,441,0 +170733560354,441,0 +170733560404,441,0 +170733560453,441,0 +170733560501,441,0 +170733560549,441,0 +170733560597,441,0 +170733560647,437,0 +170733560695,301,1 +170733560777,439,0 +170733560827,441,0 +170733560876,441,0 +170733560924,441,0 +170733560972,441,0 +170733561020,441,0 +170733561068,441,0 +170733561116,441,0 +170733561166,441,0 +170733561214,441,0 +170733561262,441,0 +170733561311,441,0 +170733561359,441,0 +170733561409,441,0 +170733561457,441,0 +170733561506,441,0 +170733561554,441,0 +170733561604,441,0 +170733561652,441,0 +170733561701,305,1 +170733561783,296,1 +170733561869,441,0 +170733561917,441,0 +170733561965,441,0 +170733562013,441,0 +170733562061,441,0 +170733562111,441,0 +170733562160,441,0 +170733562208,441,0 +170733562258,441,0 +170733562306,441,0 +170733562354,441,0 +170733562402,441,0 +170733562450,441,0 +170733562497,441,0 +170733562547,441,0 +170733562595,441,0 +170733562643,441,0 +170733562691,441,0 +170733562739,440,0 +170733562787,292,1 +170733562872,438,0 +170733562921,441,0 +170733562971,441,0 +170733563020,441,0 +170733563068,441,0 +170733563116,441,0 +170733563164,441,0 +170733563212,441,0 +170733563260,441,0 +170733563308,441,0 +170733563356,441,0 +170733563406,441,0 +170733563455,441,0 +170733563505,441,0 +170733563552,441,0 +170733563602,441,0 +170733563650,441,0 +170733563698,441,0 +170733563746,441,0 +170733563794,426,0 +170733563842,297,1 +170733563924,439,0 +170733563972,441,0 +170733564020,441,0 +170733564068,441,0 +170733564116,441,0 +170733564165,441,0 +170733564215,441,0 +170733564263,441,0 +170733564311,441,0 +170733564359,441,0 +170733564407,441,0 +170733564456,441,0 +170733564504,441,0 +170733564552,441,0 +170733564601,441,0 +170733564649,441,0 +170733564699,441,0 +170733564747,441,0 +170733564795,441,0 +170733564843,353,0 +170733564892,270,1 +170733565006,441,0 +170733565056,441,0 +170733565104,441,0 +170733565152,441,0 +170733565201,441,0 +170733565251,441,0 +170733565299,441,0 +170733565347,441,0 +170733565395,441,0 +170733565443,441,0 +170733565491,441,0 +170733565539,441,0 +170733565588,441,0 +170733565636,441,0 +170733565684,441,0 +170733565734,441,0 +170733565782,441,0 +170733565830,441,0 +170733565878,441,0 +170733565926,282,1 +170733566004,435,0 +170733566052,441,0 +170733566101,441,0 +170733566149,441,0 +170733566199,441,0 +170733566247,441,0 +170733566296,441,0 +170733566344,441,0 +170733566392,441,0 +170733566440,441,0 +170733566488,441,0 +170733566538,441,0 +170733566586,441,0 +170733566634,441,0 +170733566682,441,0 +170733566730,441,0 +170733566778,441,0 +170733566826,441,0 +170733566874,441,0 +170733566923,441,0 +170733566971,293,1 +170733567057,436,0 +170733567105,441,0 +170733567153,441,0 +170733567200,441,0 +170733567248,441,0 +170733567296,441,0 +170733567344,441,0 +170733567392,441,0 +170733567440,441,0 +170733567488,441,0 +170733567538,441,0 +170733567587,441,0 +170733567635,441,0 +170733567685,441,0 +170733567733,441,0 +170733567781,441,0 +170733567830,441,0 +170733567878,441,0 +170733567928,441,0 +170733567976,440,0 +170733568024,288,1 +170733568112,437,0 +170733568160,441,0 +170733568208,441,0 +170733568256,441,0 +170733568304,441,0 +170733568352,441,0 +170733568400,441,0 +170733568450,441,0 +170733568498,441,0 +170733568546,441,0 +170733568595,441,0 +170733568645,441,0 +170733568693,441,0 +170733568741,441,0 +170733568789,441,0 +170733568837,441,0 +170733568885,441,0 +170733568933,441,0 +170733568981,441,0 +170733569029,440,0 +170733569077,301,1 +170733569160,437,0 +170733569208,441,0 +170733569256,441,0 +170733569303,441,0 +170733569353,441,0 +170733569401,441,0 +170733569449,441,0 +170733569497,441,0 +170733569545,441,0 +170733569593,441,0 +170733569641,441,0 +170733569689,441,0 +170733569736,441,0 +170733569786,441,0 +170733569834,441,0 +170733569884,441,0 +170733569931,441,0 +170733569981,441,0 +170733570031,441,0 +170733570078,440,0 +170733570127,299,1 +170733570208,438,0 +170733570256,441,0 +170733570304,441,0 +170733570352,441,0 +170733570400,441,0 +170733570448,441,0 +170733570496,441,0 +170733570544,441,0 +170733570593,441,0 +170733570641,441,0 +170733570691,441,0 +170733570739,441,0 +170733570787,441,0 +170733570836,441,0 +170733570884,441,0 +170733570932,441,0 +170733570982,441,0 +170733571031,441,0 +170733571079,441,0 +170733571127,441,0 +170733571175,304,1 +170733571260,437,0 +170733571309,441,0 +170733571357,441,0 +170733571405,441,0 +170733571455,441,0 +170733571503,441,0 +170733571551,441,0 +170733571599,441,0 +170733571648,441,0 +170733571696,441,0 +170733571744,441,0 +170733571792,441,0 +170733571840,441,0 +170733571888,441,0 +170733571937,441,0 +170733571985,441,0 +170733572033,441,0 +170733572083,441,0 +170733572131,441,0 +170733572180,431,0 +170733572228,309,1 +170733572310,439,0 +170733572358,441,0 +170733572405,441,0 +170733572453,441,0 +170733572501,441,0 +170733572549,441,0 +170733572597,441,0 +170733572645,441,0 +170733572693,441,0 +170733572743,441,0 +170733572791,441,0 +170733572840,441,0 +170733572888,441,0 +170733572936,441,0 +170733572984,441,0 +170733573032,441,0 +170733573080,441,0 +170733573129,441,0 +170733573177,441,0 +170733573225,440,0 +170733573273,299,1 +170733573355,437,0 +170733573404,441,0 +170733573452,441,0 +170733573502,441,0 +170733573550,441,0 +170733573598,441,0 +170733573647,441,0 +170733573697,441,0 +170733573745,441,0 +170733573793,441,0 +170733573843,441,0 +170733573891,441,0 +170733573939,441,0 +170733573988,441,0 +170733574036,441,0 +170733574086,441,0 +170733574134,441,0 +170733574182,441,0 +170733574230,441,0 +170733574278,440,0 +170733574326,308,1 +170733574407,438,0 +170733574455,441,0 +170733574502,441,0 +170733574550,441,0 +170733574598,441,0 +170733574648,441,0 +170733574696,441,0 +170733574744,441,0 +170733574792,441,0 +170733574841,441,0 +170733574889,441,0 +170733574937,441,0 +170733574985,441,0 +170733575033,441,0 +170733575081,441,0 +170733575129,441,0 +170733575178,441,0 +170733575226,441,0 +170733575274,441,0 +170733575323,440,0 +170733575372,303,1 +170733575454,437,0 +170733575502,441,0 +170733575550,441,0 +170733575600,441,0 +170733575648,441,0 +170733575696,441,0 +170733575743,441,0 +170733575793,441,0 +170733575843,441,0 +170733575891,441,0 +170733575938,441,0 +170733575986,441,0 +170733576036,441,0 +170733576084,441,0 +170733576132,441,0 +170733576180,441,0 +170733576228,441,0 +170733576277,441,0 +170733576325,441,0 +170733576373,439,0 +170733576423,302,1 +170733576507,439,0 +170733576557,441,0 +170733576605,441,0 +170733576652,441,0 +170733576700,441,0 +170733576748,441,0 +170733576796,441,0 +170733576844,441,0 +170733576892,441,0 +170733576940,441,0 +170733576988,441,0 +170733577036,441,0 +170733577084,441,0 +170733577132,441,0 +170733577180,441,0 +170733577228,441,0 +170733577276,441,0 +170733577325,441,0 +170733577373,441,0 +170733577421,440,0 +170733577469,295,1 +170733577551,438,0 +170733577599,441,0 +170733577647,441,0 +170733577695,441,0 +170733577743,441,0 +170733577790,441,0 +170733577838,441,0 +170733577888,441,0 +170733577936,441,0 +170733577984,441,0 +170733578031,441,0 +170733578079,441,0 +170733578127,441,0 +170733578177,441,0 +170733578225,441,0 +170733578274,441,0 +170733578322,441,0 +170733578372,441,0 +170733578421,441,0 +170733578469,440,0 +170733578519,304,1 +170733578603,438,0 +170733578650,441,0 +170733578698,441,0 +170733578746,441,0 +170733578796,441,0 +170733578844,441,0 +170733578892,441,0 +170733578940,441,0 +170733578988,441,0 +170733579036,441,0 +170733579084,441,0 +170733579132,441,0 +170733579180,441,0 +170733579228,441,0 +170733579277,441,0 +170733579327,441,0 +170733579376,441,0 +170733579426,441,0 +170733579474,441,0 +170733579522,437,0 +170733579570,299,1 +170733579652,439,0 +170733579700,441,0 +170733579748,441,0 +170733579796,441,0 +170733579844,441,0 +170733579893,441,0 +170733579943,441,0 +170733579992,441,0 +170733580042,441,0 +170733580090,441,0 +170733580138,441,0 +170733580186,441,0 +170733580234,441,0 +170733580281,441,0 +170733580329,441,0 +170733580379,441,0 +170733580428,441,0 +170733580476,441,0 +170733580524,441,0 +170733580574,433,0 +170733580622,290,1 +170733580707,439,0 +170733580755,441,0 +170733580804,441,0 +170733580852,441,0 +170733580902,441,0 +170733580951,441,0 +170733580999,441,0 +170733581049,441,0 +170733581097,441,0 +170733581145,441,0 +170733581193,441,0 +170733581241,441,0 +170733581290,441,0 +170733581338,441,0 +170733581386,441,0 +170733581435,441,0 +170733581483,441,0 +170733581533,441,0 +170733581582,441,0 +170733581630,317,0 +170733581678,287,1 +170733581764,440,0 +170733581812,441,0 +170733581861,441,0 +170733581909,441,0 +170733581957,441,0 +170733582005,441,0 +170733582054,441,0 +170733582104,441,0 +170733582152,441,0 +170733582201,441,0 +170733582249,441,0 +170733582297,441,0 +170733582345,441,0 +170733582393,441,0 +170733582441,441,0 +170733582489,441,0 +170733582539,441,0 +170733582588,441,0 +170733582636,441,0 +170733582684,298,1 +170733582769,245,0 +170733582819,441,0 +170733582868,441,0 +170733582916,441,0 +170733582964,441,0 +170733583012,441,0 +170733583060,441,0 +170733583108,441,0 +170733583156,441,0 +170733583203,441,0 +170733583253,441,0 +170733583302,441,0 +170733583350,441,0 +170733583398,441,0 +170733583446,441,0 +170733583494,441,0 +170733583542,441,0 +170733583590,441,0 +170733583638,441,0 +170733583688,441,0 +170733583735,312,0 +170733583783,311,0 +170733583831,430,0 +170733583879,441,0 +170733583927,441,0 +170733583975,441,0 +170733584023,441,0 +170733584070,441,0 +170733584118,441,0 +170733584166,441,0 +170733584216,441,0 +170733584264,441,0 +170733584312,441,0 +170733584360,441,0 +170733584407,441,0 +170733584455,441,0 +170733584503,441,0 +170733584553,441,0 +170733584601,441,0 +170733584649,441,0 +170733584697,441,0 +170733584746,441,0 +170733584794,302,1 +170733584881,435,0 +170733584930,441,0 +170733584978,441,0 +170733585028,441,0 +170733585077,441,0 +170733585127,441,0 +170733585176,441,0 +170733585224,441,0 +170733585274,441,0 +170733585323,441,0 +170733585371,441,0 +170733585419,441,0 +170733585467,441,0 +170733585517,441,0 +170733585565,441,0 +170733585613,441,0 +170733585660,441,0 +170733585708,441,0 +170733585758,441,0 +170733585806,440,0 +170733585853,300,1 +170733585947,439,0 +170733585995,441,0 +170733586044,441,0 +170733586092,441,0 +170733586142,441,0 +170733586189,441,0 +170733586237,441,0 +170733586285,441,0 +170733586333,441,0 +170733586383,441,0 +170733586431,441,0 +170733586479,441,0 +170733586528,441,0 +170733586578,441,0 +170733586626,441,0 +170733586675,441,0 +170733586723,441,0 +170733586771,441,0 +170733586819,441,0 +170733586867,319,0 +170733586915,252,0 +170733586963,226,0 +170733587011,440,0 +170733587060,441,0 +170733587108,441,0 +170733587156,441,0 +170733587204,441,0 +170733587252,441,0 +170733587300,441,0 +170733587348,441,0 +170733587397,441,0 +170733587445,441,0 +170733587493,441,0 +170733587541,441,0 +170733587591,441,0 +170733587639,441,0 +170733587688,441,0 +170733587738,441,0 +170733587786,441,0 +170733587835,441,0 +170733587883,440,0 +170733587933,296,1 +170733588015,235,0 +170733588063,440,0 +170733588111,441,0 +170733588160,441,0 +170733588208,441,0 +170733588258,441,0 +170733588306,441,0 +170733588354,441,0 +170733588402,441,0 +170733588450,441,0 +170733588498,441,0 +170733588547,441,0 +170733588595,441,0 +170733588643,441,0 +170733588693,441,0 +170733588741,441,0 +170733588790,441,0 +170733588840,441,0 +170733588887,441,0 +170733588937,441,0 +170733588987,302,1 +170733589068,249,0 +170733589116,440,0 +170733589164,441,0 +170733589212,441,0 +170733589260,441,0 +170733589307,441,0 +170733589357,441,0 +170733589405,441,0 +170733589453,441,0 +170733589501,441,0 +170733589549,441,0 +170733589597,441,0 +170733589645,441,0 +170733589693,441,0 +170733589740,441,0 +170733589790,441,0 +170733589838,441,0 +170733589886,441,0 +170733589934,441,0 +170733589982,440,0 +170733590030,283,1 +170733590127,436,0 +170733590175,441,0 +170733590224,441,0 +170733590274,441,0 +170733590322,441,0 +170733590370,441,0 +170733590417,441,0 +170733590465,441,0 +170733590515,441,0 +170733590564,441,0 +170733590612,441,0 +170733590660,441,0 +170733590708,441,0 +170733590756,441,0 +170733590804,441,0 +170733590852,441,0 +170733590900,441,0 +170733590948,441,0 +170733590996,440,0 +170733591044,440,0 +170733591092,299,1 +170733591182,438,0 +170733591232,441,0 +170733591281,441,0 +170733591331,441,0 +170733591379,441,0 +170733591427,441,0 +170733591475,441,0 +170733591523,441,0 +170733591571,441,0 +170733591618,441,0 +170733591668,441,0 +170733591716,441,0 +170733591765,441,0 +170733591815,441,0 +170733591864,441,0 +170733591914,441,0 +170733591963,440,0 +170733592011,441,0 +170733592059,441,0 +170733592109,426,0 +170733592157,307,1 +170733592241,440,0 +170733592289,441,0 +170733592338,441,0 +170733592386,441,0 +170733592434,441,0 +170733592483,440,0 +170733592531,441,0 +170733592579,441,0 +170733592627,441,0 +170733592675,441,0 +170733592725,441,0 +170733592773,441,0 +170733592821,441,0 +170733592870,441,0 +170733592918,441,0 +170733592966,441,0 +170733593014,441,0 +170733593062,441,0 +170733593110,441,0 +170733593158,429,0 +170733593206,302,1 +170733593283,438,0 +170733593331,441,0 +170733593379,441,0 +170733593427,441,0 +170733593476,441,0 +170733593524,441,0 +170733593572,441,0 +170733593620,441,0 +170733593668,441,0 +170733593718,441,0 +170733593765,441,0 +170733593813,441,0 +170733593863,441,0 +170733593911,441,0 +170733593959,441,0 +170733594007,441,0 +170733594055,441,0 +170733594102,440,0 +170733594150,441,0 +170733594198,435,0 +170733594246,304,1 +170733594332,439,0 +170733594380,441,0 +170733594430,441,0 +170733594478,441,0 +170733594525,441,0 +170733594573,441,0 +170733594623,441,0 +170733594671,441,0 +170733594719,441,0 +170733594767,441,0 +170733594816,441,0 +170733594864,441,0 +170733594912,441,0 +170733594960,441,0 +170733595009,441,0 +170733595057,441,0 +170733595105,441,0 +170733595154,441,0 +170733595204,441,0 +170733595253,308,1 +170733595339,280,1 +170733595424,441,0 +170733595471,441,0 +170733595521,441,0 +170733595569,441,0 +170733595617,441,0 +170733595665,441,0 +170733595713,441,0 +170733595761,441,0 +170733595809,441,0 +170733595856,441,0 +170733595906,441,0 +170733595954,441,0 +170733596002,441,0 +170733596050,441,0 +170733596098,441,0 +170733596146,441,0 +170733596194,441,0 +170733596242,441,0 +170733596289,440,0 +170733596337,301,1 +170733596418,433,0 +170733596468,441,0 +170733596515,441,0 +170733596563,441,0 +170733596613,441,0 +170733596661,441,0 +170733596708,441,0 +170733596756,440,0 +170733596804,441,0 +170733596852,441,0 +170733596900,441,0 +170733596948,441,0 +170733596996,441,0 +170733597044,441,0 +170733597091,441,0 +170733597139,441,0 +170733597187,441,0 +170733597235,441,0 +170733597283,441,0 +170733597332,441,0 +170733597380,305,1 +170733597461,434,0 +170733597509,441,0 +170733597557,441,0 +170733597605,441,0 +170733597654,441,0 +170733597703,441,0 +170733597751,441,0 +170733597799,441,0 +170733597847,441,0 +170733597895,441,0 +170733597943,441,0 +170733597992,441,0 +170733598040,441,0 +170733598088,441,0 +170733598136,441,0 +170733598184,441,0 +170733598232,441,0 +170733598280,441,0 +170733598327,441,0 +170733598375,440,0 +170733598423,307,1 +170733598506,435,0 +170733598554,441,0 +170733598602,441,0 +170733598650,441,0 +170733598698,440,0 +170733598746,441,0 +170733598793,440,0 +170733598841,441,0 +170733598889,441,0 +170733598937,441,0 +170733598985,441,0 +170733599033,441,0 +170733599081,441,0 +170733599129,441,0 +170733599177,441,0 +170733599226,441,0 +170733599274,441,0 +170733599323,441,0 +170733599371,440,0 +170733599419,441,0 +170733599467,288,1 +170733599553,430,0 +170733599601,441,0 +170733599649,441,0 +170733599697,441,0 +170733599744,441,0 +170733599794,441,0 +170733599842,441,0 +170733599890,441,0 +170733599938,441,0 +170733599985,441,0 diff --git a/laser_value/0208-06.csv b/laser_value/0208-06.csv new file mode 100644 index 0000000..12d0fbf --- /dev/null +++ b/laser_value/0208-06.csv @@ -0,0 +1,7175 @@ +timestamp,laser_value,event +170733600034,441,0 +170733600082,441,0 +170733600129,441,0 +170733600177,441,0 +170733600225,441,0 +170733600275,441,0 +170733600323,441,0 +170733600371,441,0 +170733600418,441,0 +170733600468,440,0 +170733600517,307,1 +170733600597,234,0 +170733600645,441,0 +170733600692,441,0 +170733600740,441,0 +170733600788,441,0 +170733600836,441,0 +170733600884,441,0 +170733600932,441,0 +170733600980,441,0 +170733601028,441,0 +170733601075,441,0 +170733601125,441,0 +170733601174,441,0 +170733601222,441,0 +170733601270,441,0 +170733601318,441,0 +170733601366,441,0 +170733601414,440,0 +170733601462,441,0 +170733601511,440,0 +170733601559,293,1 +170733601652,438,0 +170733601699,441,0 +170733601747,441,0 +170733601795,441,0 +170733601843,441,0 +170733601891,441,0 +170733601939,441,0 +170733601988,441,0 +170733602036,441,0 +170733602084,441,0 +170733602132,441,0 +170733602180,441,0 +170733602228,441,0 +170733602275,441,0 +170733602323,441,0 +170733602371,441,0 +170733602419,441,0 +170733602467,441,0 +170733602515,441,0 +170733602563,440,0 +170733602612,308,1 +170733602697,246,0 +170733602745,441,0 +170733602792,441,0 +170733602840,441,0 +170733602888,441,0 +170733602936,441,0 +170733602984,441,0 +170733603032,441,0 +170733603080,441,0 +170733603127,441,0 +170733603175,441,0 +170733603223,441,0 +170733603271,441,0 +170733603319,441,0 +170733603367,441,0 +170733603415,441,0 +170733603464,441,0 +170733603512,441,0 +170733603560,441,0 +170733603608,441,0 +170733603656,309,1 +170733603739,239,0 +170733603787,440,0 +170733603835,441,0 +170733603883,441,0 +170733603931,441,0 +170733603979,441,0 +170733604026,441,0 +170733604074,441,0 +170733604124,441,0 +170733604172,441,0 +170733604220,441,0 +170733604267,441,0 +170733604315,441,0 +170733604363,441,0 +170733604411,441,0 +170733604459,441,0 +170733604509,441,0 +170733604557,441,0 +170733604605,441,0 +170733604653,440,0 +170733604702,302,1 +170733604794,260,0 +170733604843,440,0 +170733604891,441,0 +170733604939,441,0 +170733604987,441,0 +170733605035,441,0 +170733605083,441,0 +170733605131,441,0 +170733605179,441,0 +170733605227,441,0 +170733605276,441,0 +170733605326,441,0 +170733605374,441,0 +170733605422,441,0 +170733605470,441,0 +170733605518,441,0 +170733605565,441,0 +170733605613,441,0 +170733605663,441,0 +170733605712,440,0 +170733605760,286,1 +170733605846,435,0 +170733605894,440,0 +170733605942,441,0 +170733605990,441,0 +170733606037,441,0 +170733606085,441,0 +170733606133,441,0 +170733606181,441,0 +170733606229,441,0 +170733606277,441,0 +170733606325,441,0 +170733606374,441,0 +170733606422,441,0 +170733606472,441,0 +170733606520,441,0 +170733606568,441,0 +170733606617,441,0 +170733606665,441,0 +170733606713,441,0 +170733606761,440,0 +170733606809,298,1 +170733606897,435,0 +170733606945,441,0 +170733606993,441,0 +170733607041,441,0 +170733607089,441,0 +170733607137,441,0 +170733607186,441,0 +170733607234,441,0 +170733607282,441,0 +170733607330,441,0 +170733607378,441,0 +170733607426,441,0 +170733607474,441,0 +170733607522,441,0 +170733607570,441,0 +170733607618,441,0 +170733607665,441,0 +170733607713,441,0 +170733607761,441,0 +170733607809,441,0 +170733607859,284,1 +170733607951,437,0 +170733607999,440,0 +170733608049,441,0 +170733608097,441,0 +170733608144,441,0 +170733608192,441,0 +170733608240,441,0 +170733608288,441,0 +170733608337,441,0 +170733608385,441,0 +170733608433,441,0 +170733608481,441,0 +170733608529,441,0 +170733608577,441,0 +170733608625,441,0 +170733608673,441,0 +170733608721,441,0 +170733608769,441,0 +170733608816,441,0 +170733608864,440,0 +170733608912,296,1 +170733609004,438,0 +170733609054,441,0 +170733609103,441,0 +170733609151,441,0 +170733609199,441,0 +170733609247,441,0 +170733609295,441,0 +170733609342,441,0 +170733609392,441,0 +170733609440,441,0 +170733609489,441,0 +170733609537,441,0 +170733609585,441,0 +170733609634,441,0 +170733609682,441,0 +170733609732,441,0 +170733609780,441,0 +170733609827,440,0 +170733609875,441,0 +170733609923,425,0 +170733609971,302,1 +170733610063,440,0 +170733610110,441,0 +170733610158,441,0 +170733610206,441,0 +170733610255,441,0 +170733610305,441,0 +170733610353,441,0 +170733610401,440,0 +170733610450,441,0 +170733610498,441,0 +170733610546,441,0 +170733610594,440,0 +170733610642,441,0 +170733610690,441,0 +170733610737,441,0 +170733610785,441,0 +170733610833,441,0 +170733610881,441,0 +170733610929,440,0 +170733610977,440,0 +170733611025,295,1 +170733611110,439,0 +170733611159,441,0 +170733611207,441,0 +170733611255,441,0 +170733611303,441,0 +170733611351,440,0 +170733611399,441,0 +170733611447,440,0 +170733611495,441,0 +170733611543,441,0 +170733611590,441,0 +170733611638,441,0 +170733611686,441,0 +170733611734,441,0 +170733611782,441,0 +170733611830,441,0 +170733611878,441,0 +170733611925,440,0 +170733611973,440,0 +170733612021,439,0 +170733612069,282,1 +170733612159,440,0 +170733612207,441,0 +170733612255,441,0 +170733612303,441,0 +170733612351,441,0 +170733612399,441,0 +170733612448,441,0 +170733612496,441,0 +170733612544,441,0 +170733612594,441,0 +170733612641,441,0 +170733612689,441,0 +170733612737,441,0 +170733612785,441,0 +170733612833,441,0 +170733612881,441,0 +170733612930,441,0 +170733612980,441,0 +170733613028,440,0 +170733613077,300,1 +170733613163,280,1 +170733613245,441,0 +170733613294,441,0 +170733613342,441,0 +170733613392,441,0 +170733613440,441,0 +170733613488,441,0 +170733613535,441,0 +170733613583,441,0 +170733613631,441,0 +170733613679,441,0 +170733613727,441,0 +170733613775,441,0 +170733613824,441,0 +170733613874,441,0 +170733613922,441,0 +170733613971,441,0 +170733614019,441,0 +170733614067,440,0 +170733614115,440,0 +170733614163,301,1 +170733614251,439,0 +170733614299,441,0 +170733614347,441,0 +170733614394,441,0 +170733614442,441,0 +170733614490,441,0 +170733614540,441,0 +170733614587,440,0 +170733614637,441,0 +170733614686,441,0 +170733614734,441,0 +170733614782,441,0 +170733614830,441,0 +170733614879,441,0 +170733614927,441,0 +170733614975,440,0 +170733615023,441,0 +170733615071,440,0 +170733615119,440,0 +170733615168,441,0 +170733615218,441,0 +170733615266,441,0 +170733615314,441,0 +170733615362,441,0 +170733615409,441,0 +170733615457,441,0 +170733615505,441,0 +170733615553,441,0 +170733615601,441,0 +170733615649,440,0 +170733615698,287,1 +170733615779,266,0 +170733615826,440,0 +170733615874,441,0 +170733615922,441,0 +170733615970,440,0 +170733616018,441,0 +170733616067,441,0 +170733616115,441,0 +170733616163,441,0 +170733616211,441,0 +170733616259,441,0 +170733616307,441,0 +170733616354,441,0 +170733616402,441,0 +170733616450,441,0 +170733616498,441,0 +170733616546,441,0 +170733616594,441,0 +170733616643,441,0 +170733616691,441,0 +170733616739,301,1 +170733616825,246,0 +170733616872,440,0 +170733616920,441,0 +170733616968,441,0 +170733617016,441,0 +170733617064,441,0 +170733617112,441,0 +170733617160,441,0 +170733617208,441,0 +170733617256,441,0 +170733617303,441,0 +170733617351,441,0 +170733617399,441,0 +170733617447,441,0 +170733617495,441,0 +170733617543,441,0 +170733617590,441,0 +170733617638,441,0 +170733617686,441,0 +170733617734,441,0 +170733617782,440,0 +170733617830,291,1 +170733617911,435,0 +170733617959,441,0 +170733618007,441,0 +170733618055,441,0 +170733618102,441,0 +170733618150,441,0 +170733618198,441,0 +170733618246,441,0 +170733618294,441,0 +170733618342,441,0 +170733618391,441,0 +170733618439,441,0 +170733618487,441,0 +170733618535,441,0 +170733618583,441,0 +170733618631,441,0 +170733618678,441,0 +170733618726,441,0 +170733618774,441,0 +170733618822,440,0 +170733618870,295,1 +170733618954,436,0 +170733619002,441,0 +170733619051,441,0 +170733619099,441,0 +170733619147,441,0 +170733619195,441,0 +170733619243,441,0 +170733619291,441,0 +170733619339,441,0 +170733619386,441,0 +170733619434,441,0 +170733619482,441,0 +170733619530,441,0 +170733619578,441,0 +170733619626,441,0 +170733619674,441,0 +170733619723,441,0 +170733619771,441,0 +170733619819,441,0 +170733619867,440,0 +170733619915,307,1 +170733619999,437,0 +170733620047,441,0 +170733620095,441,0 +170733620143,441,0 +170733620190,441,0 +170733620238,441,0 +170733620286,441,0 +170733620334,441,0 +170733620382,441,0 +170733620430,440,0 +170733620478,441,0 +170733620526,441,0 +170733620573,441,0 +170733620621,441,0 +170733620669,441,0 +170733620717,441,0 +170733620765,441,0 +170733620813,441,0 +170733620861,441,0 +170733620909,440,0 +170733620956,296,1 +170733621042,434,0 +170733621090,440,0 +170733621139,441,0 +170733621187,441,0 +170733621235,441,0 +170733621283,441,0 +170733621331,441,0 +170733621379,441,0 +170733621427,441,0 +170733621474,441,0 +170733621524,441,0 +170733621573,441,0 +170733621621,441,0 +170733621671,441,0 +170733621719,441,0 +170733621767,441,0 +170733621816,441,0 +170733621864,441,0 +170733621912,441,0 +170733621960,440,0 +170733622007,299,1 +170733622091,436,0 +170733622138,441,0 +170733622186,441,0 +170733622234,441,0 +170733622282,441,0 +170733622330,441,0 +170733622378,441,0 +170733622426,441,0 +170733622475,441,0 +170733622523,441,0 +170733622571,441,0 +170733622619,441,0 +170733622667,441,0 +170733622715,441,0 +170733622762,441,0 +170733622810,441,0 +170733622858,441,0 +170733622906,441,0 +170733622954,441,0 +170733623002,440,0 +170733623050,302,1 +170733623137,436,0 +170733623187,441,0 +170733623236,441,0 +170733623284,441,0 +170733623334,441,0 +170733623383,441,0 +170733623431,441,0 +170733623479,441,0 +170733623527,441,0 +170733623575,441,0 +170733623623,441,0 +170733623671,441,0 +170733623718,441,0 +170733623766,441,0 +170733623814,441,0 +170733623862,441,0 +170733623910,441,0 +170733623958,441,0 +170733624006,441,0 +170733624054,440,0 +170733624102,310,0 +170733624149,305,1 +170733624237,441,0 +170733624285,441,0 +170733624333,441,0 +170733624381,441,0 +170733624428,441,0 +170733624478,441,0 +170733624526,441,0 +170733624573,441,0 +170733624621,441,0 +170733624669,440,0 +170733624717,441,0 +170733624765,440,0 +170733624814,441,0 +170733624862,440,0 +170733624910,441,0 +170733624960,441,0 +170733625008,441,0 +170733625055,441,0 +170733625103,440,0 +170733625151,305,1 +170733625230,261,0 +170733625277,440,0 +170733625325,441,0 +170733625375,441,0 +170733625423,441,0 +170733625472,441,0 +170733625522,441,0 +170733625571,441,0 +170733625619,441,0 +170733625667,441,0 +170733625715,441,0 +170733625763,441,0 +170733625810,441,0 +170733625858,441,0 +170733625906,441,0 +170733625954,441,0 +170733626002,441,0 +170733626051,441,0 +170733626099,441,0 +170733626147,440,0 +170733626195,304,1 +170733626280,319,0 +170733626328,441,0 +170733626376,441,0 +170733626424,441,0 +170733626471,441,0 +170733626519,441,0 +170733626567,441,0 +170733626615,441,0 +170733626663,441,0 +170733626711,441,0 +170733626759,441,0 +170733626807,441,0 +170733626854,441,0 +170733626902,441,0 +170733626950,441,0 +170733626998,441,0 +170733627046,441,0 +170733627095,441,0 +170733627145,441,0 +170733627193,440,0 +170733627241,306,1 +170733627326,390,0 +170733627375,441,0 +170733627423,441,0 +170733627471,441,0 +170733627519,441,0 +170733627567,441,0 +170733627614,441,0 +170733627662,441,0 +170733627710,441,0 +170733627758,441,0 +170733627806,441,0 +170733627854,441,0 +170733627902,440,0 +170733627950,441,0 +170733627997,441,0 +170733628045,441,0 +170733628095,441,0 +170733628143,441,0 +170733628191,441,0 +170733628240,440,0 +170733628290,305,1 +170733628371,235,0 +170733628421,440,0 +170733628469,441,0 +170733628517,441,0 +170733628564,441,0 +170733628614,441,0 +170733628662,441,0 +170733628710,441,0 +170733628758,441,0 +170733628806,441,0 +170733628853,440,0 +170733628901,441,0 +170733628951,441,0 +170733628999,441,0 +170733629047,441,0 +170733629096,441,0 +170733629146,441,0 +170733629194,441,0 +170733629242,441,0 +170733629290,440,0 +170733629339,290,1 +170733629424,436,0 +170733629474,440,0 +170733629522,441,0 +170733629570,440,0 +170733629617,441,0 +170733629667,441,0 +170733629715,441,0 +170733629764,441,0 +170733629812,441,0 +170733629860,441,0 +170733629908,441,0 +170733629956,441,0 +170733630006,441,0 +170733630055,441,0 +170733630103,441,0 +170733630151,441,0 +170733630199,441,0 +170733630247,441,0 +170733630297,441,0 +170733630346,440,0 +170733630394,307,1 +170733630483,435,0 +170733630531,440,0 +170733630579,441,0 +170733630629,441,0 +170733630676,441,0 +170733630726,441,0 +170733630774,441,0 +170733630823,441,0 +170733630873,441,0 +170733630921,441,0 +170733630970,441,0 +170733631020,441,0 +170733631068,441,0 +170733631117,441,0 +170733631165,441,0 +170733631215,441,0 +170733631264,441,0 +170733631312,441,0 +170733631360,441,0 +170733631408,431,0 +170733631456,305,1 +170733631542,438,0 +170733631590,441,0 +170733631638,440,0 +170733631686,441,0 +170733631734,441,0 +170733631782,441,0 +170733631830,441,0 +170733631877,441,0 +170733631927,441,0 +170733631975,441,0 +170733632022,441,0 +170733632070,441,0 +170733632118,441,0 +170733632166,441,0 +170733632214,441,0 +170733632262,441,0 +170733632310,441,0 +170733632358,441,0 +170733632406,441,0 +170733632454,440,0 +170733632503,279,1 +170733632588,437,0 +170733632636,441,0 +170733632684,441,0 +170733632732,441,0 +170733632782,441,0 +170733632831,441,0 +170733632879,441,0 +170733632929,441,0 +170733632977,441,0 +170733633024,441,0 +170733633074,441,0 +170733633122,441,0 +170733633170,441,0 +170733633219,441,0 +170733633267,441,0 +170733633316,441,0 +170733633364,441,0 +170733633412,441,0 +170733633460,441,0 +170733633508,440,0 +170733633558,294,1 +170733633643,438,0 +170733633692,441,0 +170733633740,441,0 +170733633788,441,0 +170733633836,441,0 +170733633886,441,0 +170733633934,441,0 +170733633983,441,0 +170733634031,441,0 +170733634081,441,0 +170733634129,441,0 +170733634178,441,0 +170733634226,441,0 +170733634275,441,0 +170733634325,441,0 +170733634373,441,0 +170733634421,441,0 +170733634469,441,0 +170733634517,441,0 +170733634565,269,0 +170733634614,310,0 +170733634664,402,0 +170733634712,441,0 +170733634760,441,0 +170733634808,441,0 +170733634857,441,0 +170733634905,441,0 +170733634953,441,0 +170733635001,441,0 +170733635051,441,0 +170733635099,441,0 +170733635146,441,0 +170733635194,441,0 +170733635242,441,0 +170733635290,441,0 +170733635338,441,0 +170733635386,441,0 +170733635434,441,0 +170733635484,441,0 +170733635532,440,0 +170733635580,441,0 +170733635628,298,1 +170733635716,264,0 +170733635764,441,0 +170733635812,441,0 +170733635860,441,0 +170733635909,441,0 +170733635959,441,0 +170733636007,441,0 +170733636055,441,0 +170733636103,441,0 +170733636151,441,0 +170733636200,441,0 +170733636248,441,0 +170733636296,441,0 +170733636344,441,0 +170733636393,441,0 +170733636441,441,0 +170733636489,441,0 +170733636539,441,0 +170733636588,441,0 +170733636638,441,0 +170733636687,297,1 +170733636773,435,0 +170733636823,441,0 +170733636872,441,0 +170733636920,441,0 +170733636968,441,0 +170733637016,441,0 +170733637064,441,0 +170733637112,441,0 +170733637160,441,0 +170733637208,441,0 +170733637256,441,0 +170733637304,441,0 +170733637351,441,0 +170733637399,441,0 +170733637449,441,0 +170733637497,441,0 +170733637545,441,0 +170733637592,441,0 +170733637642,440,0 +170733637690,440,0 +170733637738,294,1 +170733637823,435,0 +170733637871,441,0 +170733637919,441,0 +170733637967,441,0 +170733638015,441,0 +170733638063,441,0 +170733638111,441,0 +170733638160,441,0 +170733638209,441,0 +170733638257,441,0 +170733638305,441,0 +170733638353,441,0 +170733638401,441,0 +170733638449,441,0 +170733638498,440,0 +170733638546,441,0 +170733638594,440,0 +170733638644,441,0 +170733638691,440,0 +170733638741,440,0 +170733638789,295,1 +170733638874,436,0 +170733638924,441,0 +170733638972,441,0 +170733639020,441,0 +170733639067,441,0 +170733639115,441,0 +170733639163,441,0 +170733639211,441,0 +170733639261,441,0 +170733639309,441,0 +170733639358,441,0 +170733639406,441,0 +170733639454,441,0 +170733639502,441,0 +170733639550,441,0 +170733639597,441,0 +170733639645,441,0 +170733639693,441,0 +170733639741,441,0 +170733639789,440,0 +170733639837,290,1 +170733639928,437,0 +170733639975,441,0 +170733640023,441,0 +170733640071,441,0 +170733640119,441,0 +170733640169,441,0 +170733640216,441,0 +170733640264,441,0 +170733640312,440,0 +170733640360,441,0 +170733640410,441,0 +170733640457,441,0 +170733640505,441,0 +170733640555,441,0 +170733640603,441,0 +170733640651,441,0 +170733640698,440,0 +170733640746,441,0 +170733640794,441,0 +170733640842,440,0 +170733640890,302,1 +170733640980,436,0 +170733641028,441,0 +170733641076,441,0 +170733641125,441,0 +170733641173,441,0 +170733641223,441,0 +170733641273,441,0 +170733641320,441,0 +170733641370,441,0 +170733641418,441,0 +170733641466,441,0 +170733641514,441,0 +170733641562,441,0 +170733641610,441,0 +170733641659,441,0 +170733641707,441,0 +170733641755,441,0 +170733641803,441,0 +170733641851,441,0 +170733641899,405,0 +170733641947,302,1 +170733642040,440,0 +170733642089,441,0 +170733642137,441,0 +170733642185,441,0 +170733642233,441,0 +170733642281,441,0 +170733642330,441,0 +170733642380,441,0 +170733642429,441,0 +170733642479,441,0 +170733642527,441,0 +170733642575,441,0 +170733642623,441,0 +170733642670,441,0 +170733642718,441,0 +170733642766,441,0 +170733642814,441,0 +170733642862,441,0 +170733642912,441,0 +170733642959,293,1 +170733643050,264,0 +170733643100,440,0 +170733643148,441,0 +170733643197,441,0 +170733643245,441,0 +170733643293,441,0 +170733643343,441,0 +170733643390,441,0 +170733643440,441,0 +170733643488,441,0 +170733643536,441,0 +170733643585,441,0 +170733643633,441,0 +170733643681,441,0 +170733643729,441,0 +170733643777,441,0 +170733643825,441,0 +170733643873,441,0 +170733643922,441,0 +170733643970,440,0 +170733644018,303,1 +170733644109,435,0 +170733644162,441,0 +170733644211,441,0 +170733644259,441,0 +170733644309,441,0 +170733644357,441,0 +170733644405,441,0 +170733644453,441,0 +170733644502,441,0 +170733644551,441,0 +170733644599,441,0 +170733644647,441,0 +170733644695,441,0 +170733644743,441,0 +170733644791,440,0 +170733644841,441,0 +170733644889,441,0 +170733644937,441,0 +170733644985,441,0 +170733645033,440,0 +170733645080,293,1 +170733645160,434,0 +170733645208,441,0 +170733645256,441,0 +170733645304,441,0 +170733645352,441,0 +170733645400,441,0 +170733645449,441,0 +170733645497,441,0 +170733645545,441,0 +170733645593,441,0 +170733645642,441,0 +170733645690,441,0 +170733645738,441,0 +170733645786,441,0 +170733645834,441,0 +170733645882,441,0 +170733645930,441,0 +170733645978,441,0 +170733646027,441,0 +170733646076,440,0 +170733646124,301,1 +170733646209,428,0 +170733646257,441,0 +170733646306,441,0 +170733646354,441,0 +170733646402,441,0 +170733646452,441,0 +170733646500,441,0 +170733646549,441,0 +170733646597,441,0 +170733646646,441,0 +170733646694,441,0 +170733646742,441,0 +170733646790,441,0 +170733646838,441,0 +170733646886,441,0 +170733646935,441,0 +170733646983,441,0 +170733647033,441,0 +170733647081,441,0 +170733647129,440,0 +170733647177,298,1 +170733647263,434,0 +170733647316,441,0 +170733647365,440,0 +170733647413,441,0 +170733647461,441,0 +170733647511,441,0 +170733647559,441,0 +170733647608,441,0 +170733647656,441,0 +170733647704,441,0 +170733647752,441,0 +170733647800,441,0 +170733647849,441,0 +170733647897,441,0 +170733647945,441,0 +170733647993,441,0 +170733648041,441,0 +170733648088,441,0 +170733648136,441,0 +170733648184,440,0 +170733648234,302,1 +170733648318,437,0 +170733648367,441,0 +170733648415,440,0 +170733648465,441,0 +170733648513,441,0 +170733648561,441,0 +170733648608,441,0 +170733648656,441,0 +170733648704,441,0 +170733648752,440,0 +170733648800,441,0 +170733648848,441,0 +170733648896,441,0 +170733648944,441,0 +170733648992,441,0 +170733649040,441,0 +170733649087,441,0 +170733649135,441,0 +170733649183,441,0 +170733649231,440,0 +170733649280,289,1 +170733649376,439,0 +170733649424,441,0 +170733649472,441,0 +170733649520,441,0 +170733649568,441,0 +170733649616,441,0 +170733649665,440,0 +170733649713,441,0 +170733649761,440,0 +170733649809,441,0 +170733649856,441,0 +170733649904,441,0 +170733649954,441,0 +170733650002,441,0 +170733650050,441,0 +170733650099,441,0 +170733650149,441,0 +170733650198,441,0 +170733650246,441,0 +170733650294,307,1 +170733650373,286,1 +170733650457,441,0 +170733650505,441,0 +170733650555,441,0 +170733650603,441,0 +170733650651,441,0 +170733650700,441,0 +170733650750,441,0 +170733650798,441,0 +170733650846,441,0 +170733650894,441,0 +170733650942,441,0 +170733650990,441,0 +170733651038,441,0 +170733651086,441,0 +170733651133,441,0 +170733651183,441,0 +170733651231,441,0 +170733651279,441,0 +170733651327,441,0 +170733651375,309,1 +170733651455,412,0 +170733651505,441,0 +170733651554,441,0 +170733651604,441,0 +170733651652,441,0 +170733651700,441,0 +170733651749,441,0 +170733651797,441,0 +170733651845,441,0 +170733651895,441,0 +170733651943,441,0 +170733651991,441,0 +170733652040,441,0 +170733652088,441,0 +170733652138,441,0 +170733652186,441,0 +170733652234,441,0 +170733652282,441,0 +170733652330,440,0 +170733652377,440,0 +170733652425,291,1 +170733652512,438,0 +170733652561,441,0 +170733652611,441,0 +170733652661,441,0 +170733652708,441,0 +170733652756,441,0 +170733652806,441,0 +170733652854,441,0 +170733652902,441,0 +170733652950,441,0 +170733652998,441,0 +170733653046,441,0 +170733653094,441,0 +170733653142,441,0 +170733653190,441,0 +170733653238,441,0 +170733653286,441,0 +170733653334,441,0 +170733653381,441,0 +170733653429,438,0 +170733653477,298,1 +170733653564,438,0 +170733653612,441,0 +170733653661,441,0 +170733653709,441,0 +170733653759,441,0 +170733653807,441,0 +170733653856,441,0 +170733653904,440,0 +170733653954,441,0 +170733654002,441,0 +170733654050,441,0 +170733654098,441,0 +170733654146,441,0 +170733654194,441,0 +170733654241,441,0 +170733654291,441,0 +170733654339,441,0 +170733654387,441,0 +170733654437,440,0 +170733654486,293,1 +170733654578,249,0 +170733654628,440,0 +170733654676,441,0 +170733654724,441,0 +170733654772,441,0 +170733654820,441,0 +170733654868,441,0 +170733654917,441,0 +170733654965,441,0 +170733655013,441,0 +170733655061,441,0 +170733655111,441,0 +170733655160,441,0 +170733655208,441,0 +170733655256,441,0 +170733655304,441,0 +170733655352,441,0 +170733655400,441,0 +170733655448,441,0 +170733655497,441,0 +170733655545,289,1 +170733655628,285,1 +170733655717,441,0 +170733655766,441,0 +170733655814,441,0 +170733655862,441,0 +170733655910,441,0 +170733655960,441,0 +170733656008,440,0 +170733656057,441,0 +170733656107,441,0 +170733656156,441,0 +170733656206,441,0 +170733656255,441,0 +170733656303,441,0 +170733656351,441,0 +170733656399,441,0 +170733656447,441,0 +170733656495,441,0 +170733656543,441,0 +170733656591,311,0 +170733656639,291,1 +170733656728,441,0 +170733656776,441,0 +170733656824,441,0 +170733656873,441,0 +170733656921,441,0 +170733656971,441,0 +170733657019,441,0 +170733657067,441,0 +170733657114,441,0 +170733657162,441,0 +170733657210,441,0 +170733657258,441,0 +170733657308,441,0 +170733657356,441,0 +170733657404,441,0 +170733657452,441,0 +170733657501,441,0 +170733657549,441,0 +170733657599,441,0 +170733657647,280,1 +170733657737,431,0 +170733657785,441,0 +170733657833,441,0 +170733657881,441,0 +170733657929,441,0 +170733657977,441,0 +170733658026,441,0 +170733658074,441,0 +170733658124,441,0 +170733658172,441,0 +170733658220,440,0 +170733658269,441,0 +170733658317,441,0 +170733658367,441,0 +170733658415,441,0 +170733658463,441,0 +170733658511,441,0 +170733658559,441,0 +170733658607,441,0 +170733658655,440,0 +170733658704,281,1 +170733658799,436,0 +170733658848,441,0 +170733658896,441,0 +170733658946,441,0 +170733658995,441,0 +170733659043,441,0 +170733659093,441,0 +170733659141,441,0 +170733659190,440,0 +170733659238,441,0 +170733659286,441,0 +170733659334,441,0 +170733659382,441,0 +170733659432,441,0 +170733659481,441,0 +170733659529,441,0 +170733659577,441,0 +170733659627,441,0 +170733659675,441,0 +170733659724,377,0 +170733659772,291,1 +170733659861,439,0 +170733659911,441,0 +170733659960,440,0 +170733660010,441,0 +170733660058,441,0 +170733660106,441,0 +170733660155,441,0 +170733660203,441,0 +170733660253,441,0 +170733660301,441,0 +170733660350,441,0 +170733660400,440,0 +170733660448,441,0 +170733660496,441,0 +170733660545,441,0 +170733660593,441,0 +170733660643,441,0 +170733660691,441,0 +170733660739,440,0 +170733660787,284,1 +170733660875,347,0 +170733660923,441,0 +170733660971,441,0 +170733661019,441,0 +170733661067,441,0 +170733661115,441,0 +170733661163,441,0 +170733661211,441,0 +170733661260,441,0 +170733661308,441,0 +170733661358,441,0 +170733661406,441,0 +170733661454,441,0 +170733661502,441,0 +170733661550,441,0 +170733661598,441,0 +170733661646,441,0 +170733661695,441,0 +170733661743,441,0 +170733661791,441,0 +170733661841,283,1 +170733661916,294,1 +170733661998,441,0 +170733662048,441,0 +170733662096,441,0 +170733662144,441,0 +170733662192,441,0 +170733662240,441,0 +170733662288,441,0 +170733662337,441,0 +170733662385,441,0 +170733662433,441,0 +170733662483,441,0 +170733662532,441,0 +170733662582,441,0 +170733662631,441,0 +170733662679,441,0 +170733662729,441,0 +170733662777,441,0 +170733662826,441,0 +170733662874,380,0 +170733662922,305,1 +170733663010,439,0 +170733663058,441,0 +170733663106,441,0 +170733663154,441,0 +170733663204,441,0 +170733663252,441,0 +170733663300,441,0 +170733663348,441,0 +170733663396,441,0 +170733663444,441,0 +170733663492,441,0 +170733663540,441,0 +170733663588,441,0 +170733663636,441,0 +170733663684,441,0 +170733663732,441,0 +170733663779,441,0 +170733663827,441,0 +170733663875,441,0 +170733663925,285,1 +170733664010,285,1 +170733664095,441,0 +170733664143,441,0 +170733664191,441,0 +170733664239,441,0 +170733664287,441,0 +170733664335,441,0 +170733664383,441,0 +170733664432,441,0 +170733664481,441,0 +170733664529,441,0 +170733664577,441,0 +170733664625,441,0 +170733664675,441,0 +170733664723,441,0 +170733664770,441,0 +170733664818,441,0 +170733664866,440,0 +170733664914,441,0 +170733664962,440,0 +170733665010,278,1 +170733665090,436,0 +170733665138,441,0 +170733665186,441,0 +170733665235,441,0 +170733665283,441,0 +170733665331,441,0 +170733665379,441,0 +170733665427,441,0 +170733665475,441,0 +170733665523,441,0 +170733665571,441,0 +170733665621,441,0 +170733665669,441,0 +170733665717,441,0 +170733665765,441,0 +170733665812,441,0 +170733665860,441,0 +170733665908,441,0 +170733665956,441,0 +170733666006,440,0 +170733666054,310,0 +170733666102,297,1 +170733666184,441,0 +170733666234,441,0 +170733666282,441,0 +170733666331,441,0 +170733666379,441,0 +170733666427,441,0 +170733666477,441,0 +170733666526,441,0 +170733666574,441,0 +170733666622,441,0 +170733666670,441,0 +170733666718,441,0 +170733666768,441,0 +170733666816,441,0 +170733666865,441,0 +170733666913,441,0 +170733666961,441,0 +170733667011,441,0 +170733667060,438,0 +170733667108,295,1 +170733667194,439,0 +170733667242,441,0 +170733667290,441,0 +170733667338,441,0 +170733667386,441,0 +170733667435,441,0 +170733667483,441,0 +170733667531,441,0 +170733667581,441,0 +170733667629,441,0 +170733667677,441,0 +170733667726,441,0 +170733667774,441,0 +170733667822,441,0 +170733667870,441,0 +170733667918,441,0 +170733667966,440,0 +170733668014,441,0 +170733668063,441,0 +170733668111,440,0 +170733668159,301,1 +170733668245,438,0 +170733668293,441,0 +170733668341,441,0 +170733668389,441,0 +170733668437,441,0 +170733668485,441,0 +170733668533,441,0 +170733668581,441,0 +170733668629,441,0 +170733668677,441,0 +170733668725,441,0 +170733668774,441,0 +170733668822,441,0 +170733668870,441,0 +170733668918,441,0 +170733668966,441,0 +170733669014,441,0 +170733669062,441,0 +170733669110,440,0 +170733669158,440,0 +170733669206,304,1 +170733669298,438,0 +170733669347,441,0 +170733669395,441,0 +170733669443,441,0 +170733669491,441,0 +170733669539,441,0 +170733669589,441,0 +170733669637,441,0 +170733669686,441,0 +170733669736,441,0 +170733669785,441,0 +170733669835,441,0 +170733669884,441,0 +170733669932,441,0 +170733669980,441,0 +170733670028,441,0 +170733670076,441,0 +170733670126,441,0 +170733670174,440,0 +170733670222,345,0 +170733670270,302,1 +170733670359,440,0 +170733670407,441,0 +170733670455,441,0 +170733670505,441,0 +170733670554,441,0 +170733670602,441,0 +170733670650,441,0 +170733670698,441,0 +170733670746,441,0 +170733670796,441,0 +170733670844,441,0 +170733670892,441,0 +170733670940,441,0 +170733670988,441,0 +170733671036,441,0 +170733671083,441,0 +170733671131,441,0 +170733671179,441,0 +170733671229,441,0 +170733671278,309,1 +170733671366,236,0 +170733671416,440,0 +170733671465,441,0 +170733671513,441,0 +170733671561,441,0 +170733671609,441,0 +170733671659,441,0 +170733671708,441,0 +170733671756,441,0 +170733671804,441,0 +170733671852,441,0 +170733671901,441,0 +170733671949,441,0 +170733671999,441,0 +170733672047,441,0 +170733672095,441,0 +170733672143,441,0 +170733672191,440,0 +170733672240,441,0 +170733672288,440,0 +170733672336,306,1 +170733672422,283,1 +170733672505,441,0 +170733672555,441,0 +170733672603,441,0 +170733672650,441,0 +170733672698,441,0 +170733672746,441,0 +170733672794,441,0 +170733672842,441,0 +170733672890,441,0 +170733672938,441,0 +170733672986,441,0 +170733673034,441,0 +170733673082,441,0 +170733673130,441,0 +170733673179,441,0 +170733673227,441,0 +170733673275,441,0 +170733673323,441,0 +170733673371,303,1 +170733673458,252,0 +170733673506,440,0 +170733673554,441,0 +170733673602,441,0 +170733673650,441,0 +170733673698,441,0 +170733673746,441,0 +170733673794,441,0 +170733673844,441,0 +170733673893,441,0 +170733673941,441,0 +170733673989,441,0 +170733674037,441,0 +170733674085,441,0 +170733674133,441,0 +170733674180,441,0 +170733674228,441,0 +170733674276,441,0 +170733674324,441,0 +170733674372,441,0 +170733674422,294,1 +170733674509,260,0 +170733674558,441,0 +170733674606,441,0 +170733674654,441,0 +170733674704,441,0 +170733674753,441,0 +170733674803,441,0 +170733674852,440,0 +170733674900,441,0 +170733674950,441,0 +170733674998,441,0 +170733675046,441,0 +170733675095,441,0 +170733675143,441,0 +170733675191,441,0 +170733675239,441,0 +170733675288,441,0 +170733675336,441,0 +170733675384,441,0 +170733675432,440,0 +170733675482,298,1 +170733675567,428,0 +170733675615,441,0 +170733675663,441,0 +170733675711,441,0 +170733675759,441,0 +170733675807,441,0 +170733675855,441,0 +170733675903,441,0 +170733675951,441,0 +170733675999,441,0 +170733676048,441,0 +170733676096,441,0 +170733676144,441,0 +170733676192,441,0 +170733676240,441,0 +170733676288,441,0 +170733676336,441,0 +170733676386,441,0 +170733676434,441,0 +170733676483,440,0 +170733676531,290,1 +170733676621,258,0 +170733676669,441,0 +170733676718,441,0 +170733676768,441,0 +170733676817,441,0 +170733676867,441,0 +170733676915,441,0 +170733676963,441,0 +170733677012,441,0 +170733677060,441,0 +170733677110,441,0 +170733677158,441,0 +170733677205,441,0 +170733677255,441,0 +170733677303,441,0 +170733677352,441,0 +170733677402,441,0 +170733677450,441,0 +170733677499,441,0 +170733677549,440,0 +170733677598,309,1 +170733677682,435,0 +170733677730,441,0 +170733677780,441,0 +170733677828,441,0 +170733677875,441,0 +170733677925,441,0 +170733677973,441,0 +170733678022,441,0 +170733678072,441,0 +170733678120,441,0 +170733678168,441,0 +170733678217,441,0 +170733678265,441,0 +170733678313,441,0 +170733678363,441,0 +170733678411,441,0 +170733678459,441,0 +170733678507,441,0 +170733678555,441,0 +170733678604,440,0 +170733678652,302,1 +170733678739,438,0 +170733678787,441,0 +170733678835,441,0 +170733678883,441,0 +170733678931,441,0 +170733678979,441,0 +170733679028,441,0 +170733679076,441,0 +170733679124,441,0 +170733679172,441,0 +170733679220,441,0 +170733679268,441,0 +170733679318,441,0 +170733679367,440,0 +170733679415,441,0 +170733679463,441,0 +170733679511,441,0 +170733679559,441,0 +170733679608,441,0 +170733679656,385,0 +170733679706,304,1 +170733679819,441,0 +170733679867,441,0 +170733679915,441,0 +170733679965,441,0 +170733680013,441,0 +170733680062,441,0 +170733680112,441,0 +170733680159,441,0 +170733680209,441,0 +170733680257,441,0 +170733680305,441,0 +170733680354,441,0 +170733680404,441,0 +170733680452,441,0 +170733680500,441,0 +170733680549,441,0 +170733680597,441,0 +170733680647,440,0 +170733680696,441,0 +170733680746,287,1 +170733680833,437,0 +170733680881,441,0 +170733680929,441,0 +170733680977,441,0 +170733681026,441,0 +170733681076,441,0 +170733681124,441,0 +170733681171,441,0 +170733681219,441,0 +170733681267,441,0 +170733681315,441,0 +170733681365,441,0 +170733681413,441,0 +170733681461,441,0 +170733681508,441,0 +170733681556,441,0 +170733681604,441,0 +170733681652,441,0 +170733681700,441,0 +170733681748,440,0 +170733681796,273,1 +170733681883,439,0 +170733681931,441,0 +170733681979,441,0 +170733682029,441,0 +170733682077,441,0 +170733682126,441,0 +170733682174,441,0 +170733682222,441,0 +170733682270,441,0 +170733682318,441,0 +170733682366,441,0 +170733682415,441,0 +170733682465,441,0 +170733682513,441,0 +170733682561,441,0 +170733682611,441,0 +170733682659,441,0 +170733682706,441,0 +170733682754,441,0 +170733682802,362,0 +170733682850,302,1 +170733682933,439,0 +170733682983,441,0 +170733683031,441,0 +170733683080,441,0 +170733683130,441,0 +170733683179,441,0 +170733683229,441,0 +170733683277,441,0 +170733683325,441,0 +170733683373,441,0 +170733683421,441,0 +170733683469,441,0 +170733683517,441,0 +170733683565,441,0 +170733683614,441,0 +170733683662,441,0 +170733683710,441,0 +170733683759,441,0 +170733683809,441,0 +170733683857,439,0 +170733683905,298,1 +170733683988,438,0 +170733684037,441,0 +170733684085,441,0 +170733684133,441,0 +170733684181,441,0 +170733684229,441,0 +170733684277,441,0 +170733684327,441,0 +170733684376,441,0 +170733684424,441,0 +170733684472,441,0 +170733684520,441,0 +170733684568,441,0 +170733684617,441,0 +170733684665,441,0 +170733684715,441,0 +170733684764,441,0 +170733684812,441,0 +170733684860,441,0 +170733684908,439,0 +170733684956,282,1 +170733685040,438,0 +170733685088,441,0 +170733685136,441,0 +170733685186,441,0 +170733685234,441,0 +170733685282,441,0 +170733685330,441,0 +170733685378,441,0 +170733685427,441,0 +170733685475,441,0 +170733685523,441,0 +170733685573,441,0 +170733685621,441,0 +170733685669,441,0 +170733685716,441,0 +170733685764,441,0 +170733685814,441,0 +170733685862,441,0 +170733685911,441,0 +170733685961,311,0 +170733686010,311,0 +170733686058,435,0 +170733686111,441,0 +170733686159,441,0 +170733686207,441,0 +170733686255,441,0 +170733686303,441,0 +170733686351,441,0 +170733686399,441,0 +170733686447,441,0 +170733686495,441,0 +170733686544,441,0 +170733686592,441,0 +170733686640,441,0 +170733686688,441,0 +170733686738,441,0 +170733686786,441,0 +170733686834,441,0 +170733686882,441,0 +170733686930,441,0 +170733686978,440,0 +170733687027,304,1 +170733687113,414,0 +170733687161,441,0 +170733687211,441,0 +170733687260,441,0 +170733687308,441,0 +170733687356,441,0 +170733687404,441,0 +170733687452,441,0 +170733687500,441,0 +170733687548,441,0 +170733687596,441,0 +170733687644,441,0 +170733687692,441,0 +170733687740,441,0 +170733687789,441,0 +170733687839,441,0 +170733687888,441,0 +170733687936,441,0 +170733687986,441,0 +170733688034,440,0 +170733688084,288,1 +170733688173,437,0 +170733688221,441,0 +170733688269,441,0 +170733688317,441,0 +170733688366,441,0 +170733688414,441,0 +170733688462,441,0 +170733688510,441,0 +170733688558,441,0 +170733688608,441,0 +170733688656,441,0 +170733688703,441,0 +170733688751,441,0 +170733688799,441,0 +170733688847,441,0 +170733688897,441,0 +170733688946,441,0 +170733688994,441,0 +170733689042,441,0 +170733689091,440,0 +170733689139,272,1 +170733689225,438,0 +170733689273,441,0 +170733689321,441,0 +170733689369,441,0 +170733689417,441,0 +170733689464,441,0 +170733689512,441,0 +170733689560,441,0 +170733689608,441,0 +170733689658,441,0 +170733689707,441,0 +170733689755,441,0 +170733689803,441,0 +170733689851,441,0 +170733689901,441,0 +170733689950,441,0 +170733690000,441,0 +170733690048,441,0 +170733690096,441,0 +170733690144,440,0 +170733690192,291,1 +170733690282,438,0 +170733690330,441,0 +170733690378,441,0 +170733690426,441,0 +170733690474,441,0 +170733690523,441,0 +170733690571,441,0 +170733690621,441,0 +170733690670,441,0 +170733690718,441,0 +170733690766,441,0 +170733690814,441,0 +170733690862,441,0 +170733690909,441,0 +170733690959,441,0 +170733691009,441,0 +170733691057,441,0 +170733691104,441,0 +170733691152,441,0 +170733691202,420,0 +170733691250,289,1 +170733691331,439,0 +170733691381,441,0 +170733691428,441,0 +170733691476,441,0 +170733691524,441,0 +170733691572,441,0 +170733691620,441,0 +170733691668,441,0 +170733691716,441,0 +170733691764,441,0 +170733691812,441,0 +170733691861,441,0 +170733691909,441,0 +170733691957,441,0 +170733692005,441,0 +170733692053,441,0 +170733692102,441,0 +170733692152,441,0 +170733692200,441,0 +170733692249,437,0 +170733692297,279,1 +170733692379,439,0 +170733692428,441,0 +170733692476,441,0 +170733692524,441,0 +170733692572,441,0 +170733692621,441,0 +170733692669,441,0 +170733692719,440,0 +170733692768,441,0 +170733692816,441,0 +170733692864,441,0 +170733692912,441,0 +170733692960,441,0 +170733693008,441,0 +170733693056,441,0 +170733693104,441,0 +170733693152,441,0 +170733693199,441,0 +170733693249,441,0 +170733693297,440,0 +170733693345,304,1 +170733693432,439,0 +170733693480,441,0 +170733693528,441,0 +170733693576,441,0 +170733693624,441,0 +170733693673,441,0 +170733693721,441,0 +170733693769,441,0 +170733693817,441,0 +170733693865,441,0 +170733693913,441,0 +170733693962,441,0 +170733694012,441,0 +170733694059,441,0 +170733694107,441,0 +170733694155,441,0 +170733694205,441,0 +170733694254,440,0 +170733694302,441,0 +170733694350,296,1 +170733694438,280,1 +170733694516,441,0 +170733694564,441,0 +170733694611,441,0 +170733694659,441,0 +170733694707,441,0 +170733694755,441,0 +170733694803,441,0 +170733694851,441,0 +170733694899,441,0 +170733694947,441,0 +170733694994,441,0 +170733695042,441,0 +170733695090,441,0 +170733695138,441,0 +170733695186,441,0 +170733695234,441,0 +170733695282,441,0 +170733695330,441,0 +170733695378,440,0 +170733695427,266,0 +170733695475,282,1 +170733695558,441,0 +170733695606,441,0 +170733695653,441,0 +170733695701,441,0 +170733695749,441,0 +170733695797,441,0 +170733695845,441,0 +170733695893,441,0 +170733695941,440,0 +170733695989,441,0 +170733696037,441,0 +170733696084,441,0 +170733696132,441,0 +170733696180,441,0 +170733696230,441,0 +170733696279,441,0 +170733696329,441,0 +170733696376,441,0 +170733696424,441,0 +170733696472,284,1 +170733696555,434,0 +170733696603,441,0 +170733696653,441,0 +170733696701,441,0 +170733696749,441,0 +170733696797,441,0 +170733696845,441,0 +170733696893,441,0 +170733696941,441,0 +170733696989,441,0 +170733697038,441,0 +170733697086,441,0 +170733697134,441,0 +170733697182,441,0 +170733697232,441,0 +170733697280,441,0 +170733697328,441,0 +170733697375,441,0 +170733697423,441,0 +170733697473,440,0 +170733697521,290,1 +170733697609,436,0 +170733697657,441,0 +170733697704,441,0 +170733697752,441,0 +170733697802,441,0 +170733697850,441,0 +170733697898,441,0 +170733697946,440,0 +170733697994,441,0 +170733698043,441,0 +170733698093,441,0 +170733698142,441,0 +170733698192,441,0 +170733698240,441,0 +170733698288,441,0 +170733698337,441,0 +170733698385,441,0 +170733698433,441,0 +170733698483,441,0 +170733698532,440,0 +170733698580,287,1 +170733698666,438,0 +170733698715,441,0 +170733698765,441,0 +170733698814,441,0 +170733698862,441,0 +170733698912,441,0 +170733698960,441,0 +170733699008,441,0 +170733699056,440,0 +170733699105,441,0 +170733699153,441,0 +170733699201,441,0 +170733699249,441,0 +170733699297,441,0 +170733699345,441,0 +170733699393,441,0 +170733699441,441,0 +170733699489,441,0 +170733699538,441,0 +170733699586,440,0 +170733699636,291,1 +170733699725,439,0 +170733699775,441,0 +170733699825,441,0 +170733699872,441,0 +170733699920,441,0 +170733699968,441,0 +170733700016,441,0 +170733700064,441,0 +170733700112,441,0 +170733700160,441,0 +170733700208,441,0 +170733700256,441,0 +170733700304,441,0 +170733700352,441,0 +170733700400,441,0 +170733700449,441,0 +170733700497,441,0 +170733700545,441,0 +170733700593,441,0 +170733700641,291,1 +170733700728,250,0 +170733700776,440,0 +170733700824,441,0 +170733700872,441,0 +170733700920,441,0 +170733700968,441,0 +170733701016,441,0 +170733701064,441,0 +170733701112,441,0 +170733701161,441,0 +170733701209,441,0 +170733701259,441,0 +170733701307,441,0 +170733701355,441,0 +170733701404,441,0 +170733701452,441,0 +170733701502,441,0 +170733701550,441,0 +170733701598,441,0 +170733701647,441,0 +170733701695,298,1 +170733701787,235,0 +170733701836,441,0 +170733701884,441,0 +170733701932,441,0 +170733701980,441,0 +170733702030,441,0 +170733702078,441,0 +170733702126,441,0 +170733702174,441,0 +170733702222,441,0 +170733702270,441,0 +170733702318,441,0 +170733702367,441,0 +170733702417,441,0 +170733702465,441,0 +170733702513,441,0 +170733702562,441,0 +170733702612,441,0 +170733702660,441,0 +170733702708,440,0 +170733702756,289,1 +170733702846,435,0 +170733702896,441,0 +170733702944,441,0 +170733702992,441,0 +170733703040,441,0 +170733703089,441,0 +170733703137,441,0 +170733703185,441,0 +170733703235,441,0 +170733703283,441,0 +170733703331,441,0 +170733703380,441,0 +170733703430,441,0 +170733703478,441,0 +170733703526,441,0 +170733703573,441,0 +170733703621,441,0 +170733703669,441,0 +170733703717,441,0 +170733703767,440,0 +170733703815,304,1 +170733703897,435,0 +170733703945,441,0 +170733703993,441,0 +170733704043,441,0 +170733704091,441,0 +170733704140,441,0 +170733704188,441,0 +170733704238,441,0 +170733704286,441,0 +170733704334,441,0 +170733704383,441,0 +170733704431,441,0 +170733704479,441,0 +170733704529,441,0 +170733704577,441,0 +170733704625,441,0 +170733704673,441,0 +170733704722,441,0 +170733704770,440,0 +170733704820,430,0 +170733704868,273,1 +170733704950,438,0 +170733705000,441,0 +170733705048,441,0 +170733705097,441,0 +170733705147,441,0 +170733705196,441,0 +170733705246,441,0 +170733705295,440,0 +170733705343,441,0 +170733705393,441,0 +170733705443,441,0 +170733705490,441,0 +170733705540,441,0 +170733705588,441,0 +170733705638,441,0 +170733705685,441,0 +170733705733,441,0 +170733705781,441,0 +170733705829,441,0 +170733705877,440,0 +170733705925,293,1 +170733706008,437,0 +170733706056,441,0 +170733706104,441,0 +170733706152,440,0 +170733706200,441,0 +170733706248,441,0 +170733706296,441,0 +170733706344,441,0 +170733706392,441,0 +170733706440,441,0 +170733706488,441,0 +170733706535,441,0 +170733706583,441,0 +170733706631,441,0 +170733706679,441,0 +170733706729,441,0 +170733706776,441,0 +170733706824,440,0 +170733706874,440,0 +170733706922,440,0 +170733706969,256,0 +170733707017,298,1 +170733707104,441,0 +170733707152,441,0 +170733707200,441,0 +170733707248,441,0 +170733707296,441,0 +170733707344,440,0 +170733707392,441,0 +170733707439,440,0 +170733707487,441,0 +170733707537,441,0 +170733707585,441,0 +170733707633,441,0 +170733707680,441,0 +170733707728,441,0 +170733707776,441,0 +170733707824,441,0 +170733707872,441,0 +170733707922,440,0 +170733707970,433,0 +170733708017,303,1 +170733708113,440,0 +170733708162,441,0 +170733708210,440,0 +170733708258,441,0 +170733708308,441,0 +170733708357,441,0 +170733708405,441,0 +170733708455,441,0 +170733708503,441,0 +170733708552,441,0 +170733708600,441,0 +170733708650,441,0 +170733708699,441,0 +170733708747,441,0 +170733708797,441,0 +170733708845,441,0 +170733708893,441,0 +170733708942,441,0 +170733708990,441,0 +170733709038,307,1 +170733709126,249,0 +170733709174,440,0 +170733709222,441,0 +170733709270,441,0 +170733709318,441,0 +170733709366,441,0 +170733709415,441,0 +170733709465,441,0 +170733709514,441,0 +170733709564,441,0 +170733709612,441,0 +170733709659,441,0 +170733709707,441,0 +170733709755,441,0 +170733709803,441,0 +170733709851,441,0 +170733709899,441,0 +170733709947,441,0 +170733709995,440,0 +170733710043,440,0 +170733710091,305,1 +170733710184,433,0 +170733710232,441,0 +170733710280,441,0 +170733710328,441,0 +170733710376,441,0 +170733710423,441,0 +170733710471,441,0 +170733710521,441,0 +170733710569,440,0 +170733710617,441,0 +170733710666,441,0 +170733710716,441,0 +170733710764,441,0 +170733710813,441,0 +170733710861,441,0 +170733710909,441,0 +170733710959,441,0 +170733711007,441,0 +170733711055,441,0 +170733711104,440,0 +170733711154,309,1 +170733711246,438,0 +170733711296,441,0 +170733711343,441,0 +170733711393,441,0 +170733711442,441,0 +170733711490,441,0 +170733711540,441,0 +170733711588,441,0 +170733711636,441,0 +170733711684,441,0 +170733711733,441,0 +170733711781,441,0 +170733711829,441,0 +170733711877,441,0 +170733711925,441,0 +170733711973,441,0 +170733712021,441,0 +170733712069,441,0 +170733712117,441,0 +170733712165,440,0 +170733712213,302,1 +170733712296,437,0 +170733712344,441,0 +170733712393,441,0 +170733712441,441,0 +170733712489,441,0 +170733712537,441,0 +170733712585,441,0 +170733712633,440,0 +170733712681,441,0 +170733712729,440,0 +170733712777,441,0 +170733712824,441,0 +170733712872,441,0 +170733712920,441,0 +170733712968,441,0 +170733713016,441,0 +170733713064,441,0 +170733713112,440,0 +170733713161,441,0 +170733713209,439,0 +170733713257,300,1 +170733713342,437,0 +170733713390,440,0 +170733713438,440,0 +170733713486,441,0 +170733713533,441,0 +170733713583,441,0 +170733713631,441,0 +170733713679,440,0 +170733713726,441,0 +170733713776,441,0 +170733713824,441,0 +170733713872,441,0 +170733713920,441,0 +170733713967,441,0 +170733714015,441,0 +170733714063,441,0 +170733714111,440,0 +170733714159,441,0 +170733714207,441,0 +170733714256,440,0 +170733714304,298,1 +170733714388,436,0 +170733714437,441,0 +170733714485,441,0 +170733714535,441,0 +170733714584,441,0 +170733714634,441,0 +170733714682,441,0 +170733714731,441,0 +170733714779,441,0 +170733714827,441,0 +170733714875,441,0 +170733714923,441,0 +170733714971,441,0 +170733715018,441,0 +170733715066,441,0 +170733715114,441,0 +170733715162,441,0 +170733715210,441,0 +170733715258,441,0 +170733715306,440,0 +170733715355,293,1 +170733715443,437,0 +170733715492,440,0 +170733715540,441,0 +170733715588,441,0 +170733715638,441,0 +170733715687,441,0 +170733715735,440,0 +170733715783,441,0 +170733715831,441,0 +170733715879,441,0 +170733715928,441,0 +170733715978,441,0 +170733716026,441,0 +170733716074,441,0 +170733716122,441,0 +170733716170,441,0 +170733716219,441,0 +170733716269,441,0 +170733716317,440,0 +170733716365,419,0 +170733716413,312,0 +170733716462,251,0 +170733716512,441,0 +170733716559,440,0 +170733716609,441,0 +170733716657,441,0 +170733716705,441,0 +170733716754,441,0 +170733716802,441,0 +170733716850,441,0 +170733716900,441,0 +170733716948,441,0 +170733716996,441,0 +170733717044,441,0 +170733717093,441,0 +170733717141,441,0 +170733717191,441,0 +170733717239,441,0 +170733717288,441,0 +170733717336,441,0 +170733717386,440,0 +170733717434,301,1 +170733717521,434,0 +170733717574,440,0 +170733717622,441,0 +170733717671,441,0 +170733717719,441,0 +170733717767,441,0 +170733717815,441,0 +170733717865,441,0 +170733717913,441,0 +170733717961,441,0 +170733718010,441,0 +170733718060,441,0 +170733718109,441,0 +170733718159,441,0 +170733718207,441,0 +170733718255,441,0 +170733718303,441,0 +170733718352,441,0 +170733718400,441,0 +170733718450,440,0 +170733718498,305,1 +170733718578,433,0 +170733718628,441,0 +170733718677,441,0 +170733718725,441,0 +170733718773,441,0 +170733718821,441,0 +170733718869,441,0 +170733718917,441,0 +170733718965,441,0 +170733719014,441,0 +170733719062,441,0 +170733719110,441,0 +170733719158,441,0 +170733719206,441,0 +170733719254,441,0 +170733719302,441,0 +170733719350,441,0 +170733719398,441,0 +170733719445,441,0 +170733719493,440,0 +170733719541,296,1 +170733719629,435,0 +170733719677,440,0 +170733719726,441,0 +170733719774,441,0 +170733719822,441,0 +170733719870,441,0 +170733719920,440,0 +170733719968,441,0 +170733720017,441,0 +170733720065,441,0 +170733720115,441,0 +170733720163,441,0 +170733720211,441,0 +170733720259,441,0 +170733720307,441,0 +170733720354,441,0 +170733720404,441,0 +170733720452,441,0 +170733720500,441,0 +170733720548,440,0 +170733720596,296,1 +170733720683,435,0 +170733720731,441,0 +170733720780,441,0 +170733720828,441,0 +170733720876,441,0 +170733720924,441,0 +170733720972,441,0 +170733721020,441,0 +170733721069,441,0 +170733721117,441,0 +170733721165,441,0 +170733721215,441,0 +170733721264,441,0 +170733721312,441,0 +170733721360,441,0 +170733721408,441,0 +170733721456,441,0 +170733721504,440,0 +170733721554,441,0 +170733721602,440,0 +170733721650,309,1 +170733721733,434,0 +170733721781,441,0 +170733721829,441,0 +170733721878,440,0 +170733721926,441,0 +170733721974,441,0 +170733722022,441,0 +170733722070,441,0 +170733722118,441,0 +170733722165,441,0 +170733722213,441,0 +170733722261,441,0 +170733722309,441,0 +170733722357,441,0 +170733722405,441,0 +170733722453,441,0 +170733722501,441,0 +170733722549,441,0 +170733722597,441,0 +170733722645,440,0 +170733722693,303,1 +170733722781,436,0 +170733722830,441,0 +170733722880,441,0 +170733722928,441,0 +170733722976,441,0 +170733723024,441,0 +170733723071,441,0 +170733723119,441,0 +170733723167,441,0 +170733723215,441,0 +170733723263,441,0 +170733723311,441,0 +170733723359,441,0 +170733723407,441,0 +170733723456,441,0 +170733723504,441,0 +170733723554,441,0 +170733723603,441,0 +170733723653,441,0 +170733723700,440,0 +170733723748,296,1 +170733723827,437,0 +170733723875,441,0 +170733723924,441,0 +170733723972,441,0 +170733724021,441,0 +170733724069,441,0 +170733724117,441,0 +170733724165,441,0 +170733724213,441,0 +170733724261,441,0 +170733724309,441,0 +170733724357,441,0 +170733724405,441,0 +170733724452,441,0 +170733724500,441,0 +170733724548,441,0 +170733724596,440,0 +170733724644,441,0 +170733724692,441,0 +170733724740,440,0 +170733724788,295,1 +170733724873,433,0 +170733724923,440,0 +170733724972,441,0 +170733725020,440,0 +170733725068,441,0 +170733725116,441,0 +170733725164,441,0 +170733725214,441,0 +170733725263,441,0 +170733725313,441,0 +170733725361,441,0 +170733725409,441,0 +170733725457,441,0 +170733725506,441,0 +170733725556,441,0 +170733725604,441,0 +170733725652,441,0 +170733725699,441,0 +170733725747,441,0 +170733725795,440,0 +170733725843,305,1 +170733725925,435,0 +170733725973,441,0 +170733726022,441,0 +170733726072,440,0 +170733726121,441,0 +170733726169,441,0 +170733726217,441,0 +170733726265,441,0 +170733726313,441,0 +170733726362,441,0 +170733726410,441,0 +170733726460,441,0 +170733726509,441,0 +170733726557,441,0 +170733726605,441,0 +170733726653,441,0 +170733726700,441,0 +170733726748,441,0 +170733726796,441,0 +170733726844,440,0 +170733726892,291,1 +170733726983,438,0 +170733727031,441,0 +170733727079,441,0 +170733727127,441,0 +170733727175,441,0 +170733727223,441,0 +170733727270,441,0 +170733727318,441,0 +170733727366,441,0 +170733727416,441,0 +170733727464,441,0 +170733727511,441,0 +170733727559,441,0 +170733727607,441,0 +170733727655,441,0 +170733727703,441,0 +170733727751,441,0 +170733727799,441,0 +170733727847,441,0 +170733727895,440,0 +170733727944,310,0 +170733727994,318,0 +170733728043,438,0 +170733728091,441,0 +170733728139,441,0 +170733728187,441,0 +170733728235,441,0 +170733728283,440,0 +170733728332,441,0 +170733728380,441,0 +170733728428,441,0 +170733728477,441,0 +170733728527,441,0 +170733728575,441,0 +170733728624,441,0 +170733728672,441,0 +170733728720,441,0 +170733728768,441,0 +170733728816,441,0 +170733728866,441,0 +170733728914,441,0 +170733728963,438,0 +170733729011,298,1 +170733729099,439,0 +170733729147,441,0 +170733729195,441,0 +170733729243,441,0 +170733729291,441,0 +170733729339,441,0 +170733729387,441,0 +170733729435,441,0 +170733729483,441,0 +170733729532,441,0 +170733729582,441,0 +170733729630,441,0 +170733729678,441,0 +170733729727,441,0 +170733729777,441,0 +170733729825,441,0 +170733729873,441,0 +170733729922,440,0 +170733729972,441,0 +170733730021,300,1 +170733730111,430,0 +170733730161,441,0 +170733730209,441,0 +170733730257,441,0 +170733730304,441,0 +170733730352,441,0 +170733730400,441,0 +170733730448,441,0 +170733730496,441,0 +170733730544,441,0 +170733730592,441,0 +170733730640,441,0 +170733730689,441,0 +170733730737,441,0 +170733730785,441,0 +170733730835,441,0 +170733730882,441,0 +170733730932,441,0 +170733730982,441,0 +170733731029,440,0 +170733731077,308,1 +170733731162,238,0 +170733731210,441,0 +170733731258,441,0 +170733731306,441,0 +170733731354,441,0 +170733731402,441,0 +170733731450,441,0 +170733731498,441,0 +170733731546,441,0 +170733731593,441,0 +170733731641,441,0 +170733731689,441,0 +170733731739,441,0 +170733731787,441,0 +170733731835,441,0 +170733731883,441,0 +170733731932,441,0 +170733731982,441,0 +170733732030,441,0 +170733732078,440,0 +170733732125,294,1 +170733732210,265,0 +170733732258,441,0 +170733732305,441,0 +170733732353,441,0 +170733732401,441,0 +170733732451,441,0 +170733732499,441,0 +170733732548,441,0 +170733732596,441,0 +170733732644,441,0 +170733732692,441,0 +170733732742,441,0 +170733732791,441,0 +170733732839,441,0 +170733732889,441,0 +170733732937,441,0 +170733732985,441,0 +170733733033,441,0 +170733733081,441,0 +170733733128,441,0 +170733733176,291,1 +170733733267,436,0 +170733733315,441,0 +170733733364,441,0 +170733733412,441,0 +170733733460,441,0 +170733733510,441,0 +170733733558,441,0 +170733733606,441,0 +170733733654,441,0 +170733733702,441,0 +170733733749,441,0 +170733733797,440,0 +170733733845,441,0 +170733733895,441,0 +170733733944,441,0 +170733733992,441,0 +170733734040,441,0 +170733734088,441,0 +170733734136,441,0 +170733734186,440,0 +170733734234,288,1 +170733734329,437,0 +170733734378,441,0 +170733734428,441,0 +170733734476,441,0 +170733734524,441,0 +170733734573,441,0 +170733734623,441,0 +170733734672,441,0 +170733734722,441,0 +170733734770,441,0 +170733734819,440,0 +170733734869,441,0 +170733734916,441,0 +170733734964,441,0 +170733735012,441,0 +170733735062,441,0 +170733735110,441,0 +170733735158,441,0 +170733735207,440,0 +170733735257,287,1 +170733735340,299,1 +170733735421,440,0 +170733735469,441,0 +170733735517,441,0 +170733735565,441,0 +170733735613,441,0 +170733735661,441,0 +170733735711,441,0 +170733735759,441,0 +170733735808,441,0 +170733735856,441,0 +170733735906,441,0 +170733735955,441,0 +170733736003,441,0 +170733736053,441,0 +170733736101,441,0 +170733736149,441,0 +170733736197,441,0 +170733736245,441,0 +170733736292,440,0 +170733736340,306,1 +170733736424,437,0 +170733736472,441,0 +170733736522,441,0 +170733736570,441,0 +170733736619,441,0 +170733736667,441,0 +170733736717,441,0 +170733736765,441,0 +170733736813,440,0 +170733736861,441,0 +170733736910,441,0 +170733736958,441,0 +170733737008,441,0 +170733737057,441,0 +170733737107,441,0 +170733737155,441,0 +170733737204,441,0 +170733737252,441,0 +170733737300,441,0 +170733737348,440,0 +170733737396,290,1 +170733737479,437,0 +170733737529,441,0 +170733737577,441,0 +170733737625,441,0 +170733737673,441,0 +170733737721,441,0 +170733737770,440,0 +170733737818,441,0 +170733737868,441,0 +170733737917,441,0 +170733737965,441,0 +170733738013,441,0 +170733738061,441,0 +170733738109,441,0 +170733738157,441,0 +170733738205,441,0 +170733738253,441,0 +170733738301,441,0 +170733738349,441,0 +170733738397,421,0 +170733738445,292,1 +170733738529,439,0 +170733738579,441,0 +170733738627,441,0 +170733738675,441,0 +170733738722,441,0 +170733738770,441,0 +170733738818,441,0 +170733738866,441,0 +170733738916,441,0 +170733738964,441,0 +170733739011,441,0 +170733739059,441,0 +170733739107,440,0 +170733739155,441,0 +170733739203,441,0 +170733739253,441,0 +170733739300,441,0 +170733739348,441,0 +170733739396,441,0 +170733739444,440,0 +170733739494,308,1 +170733739578,439,0 +170733739626,441,0 +170733739675,441,0 +170733739725,441,0 +170733739773,441,0 +170733739821,441,0 +170733739869,441,0 +170733739916,441,0 +170733739964,441,0 +170733740012,441,0 +170733740062,441,0 +170733740109,441,0 +170733740157,441,0 +170733740205,441,0 +170733740253,441,0 +170733740301,441,0 +170733740349,441,0 +170733740397,441,0 +170733740445,441,0 +170733740494,440,0 +170733740544,285,1 +170733740625,438,0 +170733740673,441,0 +170733740721,441,0 +170733740769,441,0 +170733740817,441,0 +170733740865,441,0 +170733740914,441,0 +170733740964,441,0 +170733741012,441,0 +170733741059,441,0 +170733741107,441,0 +170733741155,441,0 +170733741203,441,0 +170733741251,441,0 +170733741299,441,0 +170733741347,441,0 +170733741395,441,0 +170733741442,441,0 +170733741490,441,0 +170733741538,439,0 +170733741586,291,1 +170733741671,438,0 +170733741719,441,0 +170733741768,441,0 +170733741816,441,0 +170733741864,441,0 +170733741912,441,0 +170733741960,441,0 +170733742008,441,0 +170733742056,441,0 +170733742103,441,0 +170733742151,441,0 +170733742199,441,0 +170733742247,441,0 +170733742295,441,0 +170733742343,441,0 +170733742391,441,0 +170733742439,441,0 +170733742486,441,0 +170733742534,441,0 +170733742582,440,0 +170733742630,292,1 +170733742719,438,0 +170733742767,441,0 +170733742815,441,0 +170733742862,441,0 +170733742910,441,0 +170733742958,441,0 +170733743008,441,0 +170733743057,441,0 +170733743105,441,0 +170733743153,441,0 +170733743202,441,0 +170733743250,441,0 +170733743298,441,0 +170733743348,441,0 +170733743396,441,0 +170733743443,441,0 +170733743491,441,0 +170733743539,441,0 +170733743587,441,0 +170733743635,440,0 +170733743683,305,1 +170733743767,434,0 +170733743815,441,0 +170733743863,441,0 +170733743912,441,0 +170733743962,441,0 +170733744012,441,0 +170733744059,441,0 +170733744109,441,0 +170733744157,441,0 +170733744205,441,0 +170733744254,441,0 +170733744302,441,0 +170733744350,441,0 +170733744398,441,0 +170733744446,441,0 +170733744496,441,0 +170733744544,441,0 +170733744592,441,0 +170733744640,441,0 +170733744688,439,0 +170733744736,303,1 +170733744819,437,0 +170733744869,441,0 +170733744917,441,0 +170733744965,441,0 +170733745013,441,0 +170733745062,441,0 +170733745110,441,0 +170733745158,441,0 +170733745207,441,0 +170733745255,441,0 +170733745303,441,0 +170733745351,441,0 +170733745401,441,0 +170733745449,441,0 +170733745498,441,0 +170733745546,441,0 +170733745594,441,0 +170733745644,440,0 +170733745692,441,0 +170733745739,439,0 +170733745787,311,0 +170733745837,264,0 +170733745886,441,0 +170733745934,441,0 +170733745982,441,0 +170733746030,441,0 +170733746080,441,0 +170733746128,441,0 +170733746177,441,0 +170733746225,441,0 +170733746273,441,0 +170733746321,441,0 +170733746369,441,0 +170733746418,441,0 +170733746466,441,0 +170733746516,441,0 +170733746564,441,0 +170733746612,441,0 +170733746660,441,0 +170733746708,441,0 +170733746756,440,0 +170733746804,275,1 +170733746889,249,0 +170733746937,440,0 +170733746987,441,0 +170733747035,441,0 +170733747082,441,0 +170733747130,441,0 +170733747180,441,0 +170733747228,441,0 +170733747276,440,0 +170733747324,441,0 +170733747373,441,0 +170733747421,441,0 +170733747469,441,0 +170733747517,441,0 +170733747564,441,0 +170733747612,441,0 +170733747660,441,0 +170733747708,441,0 +170733747756,441,0 +170733747804,441,0 +170733747852,295,1 +170733747944,235,0 +170733747993,440,0 +170733748041,441,0 +170733748089,440,0 +170733748139,441,0 +170733748188,441,0 +170733748236,441,0 +170733748284,441,0 +170733748332,441,0 +170733748380,441,0 +170733748428,441,0 +170733748476,441,0 +170733748525,441,0 +170733748573,441,0 +170733748621,441,0 +170733748669,441,0 +170733748717,441,0 +170733748766,441,0 +170733748815,441,0 +170733748863,441,0 +170733748911,297,1 +170733748994,429,0 +170733749042,441,0 +170733749090,441,0 +170733749138,441,0 +170733749186,441,0 +170733749234,441,0 +170733749282,441,0 +170733749330,441,0 +170733749379,441,0 +170733749427,441,0 +170733749477,441,0 +170733749525,441,0 +170733749573,441,0 +170733749622,441,0 +170733749670,441,0 +170733749718,441,0 +170733749766,441,0 +170733749814,441,0 +170733749862,441,0 +170733749911,440,0 +170733749959,299,1 +170733750048,234,0 +170733750096,440,0 +170733750144,441,0 +170733750192,441,0 +170733750240,441,0 +170733750288,441,0 +170733750335,441,0 +170733750385,441,0 +170733750433,441,0 +170733750481,441,0 +170733750529,441,0 +170733750576,441,0 +170733750624,441,0 +170733750674,441,0 +170733750722,441,0 +170733750770,441,0 +170733750817,441,0 +170733750865,441,0 +170733750913,441,0 +170733750961,440,0 +170733751009,296,1 +170733751091,240,0 +170733751139,440,0 +170733751186,441,0 +170733751234,441,0 +170733751282,441,0 +170733751330,441,0 +170733751378,441,0 +170733751427,441,0 +170733751475,441,0 +170733751523,441,0 +170733751571,441,0 +170733751621,441,0 +170733751669,441,0 +170733751716,441,0 +170733751764,441,0 +170733751812,441,0 +170733751860,441,0 +170733751908,441,0 +170733751956,441,0 +170733752004,440,0 +170733752054,306,1 +170733752145,434,0 +170733752193,441,0 +170733752241,441,0 +170733752290,441,0 +170733752340,441,0 +170733752388,441,0 +170733752436,441,0 +170733752485,441,0 +170733752533,441,0 +170733752581,441,0 +170733752629,441,0 +170733752679,441,0 +170733752727,441,0 +170733752775,441,0 +170733752822,441,0 +170733752870,441,0 +170733752918,441,0 +170733752966,441,0 +170733753014,441,0 +170733753062,441,0 +170733753109,310,0 +170733753157,304,1 +170733753247,441,0 +170733753295,441,0 +170733753343,441,0 +170733753391,441,0 +170733753439,441,0 +170733753488,441,0 +170733753536,441,0 +170733753584,441,0 +170733753632,441,0 +170733753682,441,0 +170733753729,441,0 +170733753779,441,0 +170733753829,441,0 +170733753877,441,0 +170733753926,441,0 +170733753976,441,0 +170733754024,441,0 +170733754073,441,0 +170733754123,440,0 +170733754171,296,1 +170733754250,437,0 +170733754299,441,0 +170733754347,440,0 +170733754397,441,0 +170733754445,441,0 +170733754492,441,0 +170733754540,441,0 +170733754590,441,0 +170733754638,441,0 +170733754686,441,0 +170733754734,441,0 +170733754783,441,0 +170733754831,441,0 +170733754881,441,0 +170733754929,441,0 +170733754977,441,0 +170733755025,441,0 +170733755073,441,0 +170733755121,441,0 +170733755170,440,0 +170733755220,281,1 +170733755300,437,0 +170733755347,441,0 +170733755397,441,0 +170733755445,441,0 +170733755494,441,0 +170733755544,441,0 +170733755592,441,0 +170733755640,441,0 +170733755689,441,0 +170733755737,441,0 +170733755787,441,0 +170733755835,440,0 +170733755883,441,0 +170733755931,441,0 +170733755979,441,0 +170733756027,441,0 +170733756076,441,0 +170733756124,441,0 +170733756172,441,0 +170733756221,440,0 +170733756271,290,1 +170733756359,438,0 +170733756408,441,0 +170733756456,441,0 +170733756504,441,0 +170733756554,441,0 +170733756602,441,0 +170733756651,441,0 +170733756699,441,0 +170733756747,441,0 +170733756797,441,0 +170733756845,441,0 +170733756894,441,0 +170733756944,441,0 +170733756992,441,0 +170733757040,441,0 +170733757087,441,0 +170733757135,441,0 +170733757185,441,0 +170733757233,441,0 +170733757282,424,0 +170733757332,280,1 +170733757417,439,0 +170733757467,441,0 +170733757515,441,0 +170733757562,441,0 +170733757610,441,0 +170733757660,441,0 +170733757709,441,0 +170733757759,441,0 +170733757807,441,0 +170733757856,441,0 +170733757904,441,0 +170733757954,441,0 +170733758003,441,0 +170733758051,441,0 +170733758099,441,0 +170733758149,441,0 +170733758197,441,0 +170733758245,441,0 +170733758293,440,0 +170733758342,306,1 +170733758430,245,0 +170733758478,441,0 +170733758526,441,0 +170733758574,441,0 +170733758622,441,0 +170733758671,441,0 +170733758719,441,0 +170733758767,441,0 +170733758817,441,0 +170733758865,441,0 +170733758914,441,0 +170733758964,440,0 +170733759013,441,0 +170733759061,441,0 +170733759111,441,0 +170733759159,441,0 +170733759208,441,0 +170733759256,441,0 +170733759304,441,0 +170733759352,441,0 +170733759400,303,1 +170733759484,430,0 +170733759533,441,0 +170733759581,441,0 +170733759629,441,0 +170733759679,441,0 +170733759727,441,0 +170733759775,441,0 +170733759823,441,0 +170733759871,441,0 +170733759920,441,0 +170733759970,441,0 +170733760018,441,0 +170733760065,441,0 +170733760113,441,0 +170733760161,441,0 +170733760209,441,0 +170733760259,441,0 +170733760308,441,0 +170733760356,441,0 +170733760404,440,0 +170733760452,302,1 +170733760537,433,0 +170733760585,441,0 +170733760633,441,0 +170733760682,441,0 +170733760730,441,0 +170733760780,441,0 +170733760828,441,0 +170733760876,440,0 +170733760924,441,0 +170733760972,441,0 +170733761020,441,0 +170733761069,441,0 +170733761117,441,0 +170733761165,441,0 +170733761213,441,0 +170733761261,441,0 +170733761309,441,0 +170733761357,441,0 +170733761405,441,0 +170733761453,440,0 +170733761501,248,0 +170733761550,253,0 +170733761600,440,0 +170733761649,441,0 +170733761697,441,0 +170733761747,441,0 +170733761795,441,0 +170733761844,441,0 +170733761892,441,0 +170733761942,441,0 +170733761990,441,0 +170733762038,441,0 +170733762087,441,0 +170733762135,441,0 +170733762183,441,0 +170733762233,441,0 +170733762282,441,0 +170733762330,441,0 +170733762378,441,0 +170733762427,441,0 +170733762475,441,0 +170733762523,438,0 +170733762571,290,1 +170733762655,439,0 +170733762705,441,0 +170733762753,441,0 +170733762800,441,0 +170733762848,441,0 +170733762896,441,0 +170733762944,441,0 +170733762992,441,0 +170733763040,441,0 +170733763088,441,0 +170733763136,441,0 +170733763184,441,0 +170733763232,441,0 +170733763282,441,0 +170733763330,441,0 +170733763378,441,0 +170733763426,441,0 +170733763474,441,0 +170733763522,441,0 +170733763571,276,1 +170733763652,305,1 +170733763737,441,0 +170733763785,441,0 +170733763833,441,0 +170733763881,441,0 +170733763929,441,0 +170733763977,441,0 +170733764025,441,0 +170733764073,441,0 +170733764122,441,0 +170733764172,441,0 +170733764220,441,0 +170733764269,441,0 +170733764317,441,0 +170733764365,441,0 +170733764413,441,0 +170733764461,441,0 +170733764509,441,0 +170733764557,441,0 +170733764605,440,0 +170733764653,291,1 +170733764735,436,0 +170733764783,441,0 +170733764831,441,0 +170733764879,441,0 +170733764929,441,0 +170733764977,441,0 +170733765024,441,0 +170733765074,441,0 +170733765124,441,0 +170733765173,441,0 +170733765221,441,0 +170733765271,441,0 +170733765318,441,0 +170733765368,441,0 +170733765416,441,0 +170733765465,441,0 +170733765513,441,0 +170733765561,441,0 +170733765609,441,0 +170733765657,440,0 +170733765707,300,1 +170733765793,437,0 +170733765841,441,0 +170733765890,441,0 +170733765940,441,0 +170733765989,441,0 +170733766039,441,0 +170733766087,441,0 +170733766135,441,0 +170733766183,441,0 +170733766231,441,0 +170733766279,441,0 +170733766327,441,0 +170733766376,441,0 +170733766424,441,0 +170733766472,441,0 +170733766522,441,0 +170733766570,441,0 +170733766618,441,0 +170733766666,441,0 +170733766714,432,0 +170733766762,304,1 +170733766843,439,0 +170733766893,441,0 +170733766941,441,0 +170733766990,441,0 +170733767040,440,0 +170733767089,441,0 +170733767139,440,0 +170733767187,441,0 +170733767235,440,0 +170733767283,441,0 +170733767332,441,0 +170733767380,441,0 +170733767430,441,0 +170733767478,441,0 +170733767527,441,0 +170733767577,441,0 +170733767626,441,0 +170733767674,440,0 +170733767722,440,0 +170733767770,298,1 +170733767859,230,0 +170733767909,440,0 +170733767957,441,0 +170733768004,441,0 +170733768052,440,0 +170733768100,441,0 +170733768148,441,0 +170733768196,441,0 +170733768246,441,0 +170733768294,441,0 +170733768342,440,0 +170733768391,440,0 +170733768439,441,0 +170733768487,440,0 +170733768535,441,0 +170733768583,441,0 +170733768633,441,0 +170733768681,441,0 +170733768729,440,0 +170733768776,440,0 +170733768824,301,1 +170733768915,236,0 +170733768963,440,0 +170733769011,441,0 +170733769059,441,0 +170733769108,441,0 +170733769156,440,0 +170733769204,441,0 +170733769252,441,0 +170733769300,441,0 +170733769349,441,0 +170733769397,441,0 +170733769445,441,0 +170733769495,441,0 +170733769543,441,0 +170733769591,441,0 +170733769639,441,0 +170733769687,441,0 +170733769736,441,0 +170733769784,441,0 +170733769832,440,0 +170733769880,296,1 +170733769964,260,0 +170733770013,441,0 +170733770061,441,0 +170733770109,441,0 +170733770157,440,0 +170733770205,441,0 +170733770255,441,0 +170733770304,441,0 +170733770352,440,0 +170733770402,441,0 +170733770450,441,0 +170733770498,441,0 +170733770546,441,0 +170733770594,441,0 +170733770643,441,0 +170733770693,441,0 +170733770742,440,0 +170733770792,441,0 +170733770841,441,0 +170733770889,440,0 +170733770939,281,1 +170733771023,435,0 +170733771072,441,0 +170733771120,440,0 +170733771168,441,0 +170733771216,441,0 +170733771266,441,0 +170733771315,441,0 +170733771363,441,0 +170733771411,441,0 +170733771459,441,0 +170733771509,441,0 +170733771557,441,0 +170733771604,441,0 +170733771652,441,0 +170733771702,441,0 +170733771750,441,0 +170733771798,441,0 +170733771846,441,0 +170733771894,440,0 +170733771942,441,0 +170733771990,299,1 +170733772069,426,0 +170733772119,441,0 +170733772168,441,0 +170733772216,441,0 +170733772264,441,0 +170733772312,441,0 +170733772361,441,0 +170733772411,440,0 +170733772459,441,0 +170733772508,440,0 +170733772556,441,0 +170733772606,441,0 +170733772654,441,0 +170733772702,441,0 +170733772750,441,0 +170733772799,441,0 +170733772847,441,0 +170733772897,441,0 +170733772945,440,0 +170733772994,440,0 +170733773042,304,1 +170733773127,436,0 +170733773177,441,0 +170733773225,441,0 +170733773273,441,0 +170733773321,441,0 +170733773370,441,0 +170733773418,441,0 +170733773468,441,0 +170733773516,441,0 +170733773564,441,0 +170733773613,441,0 +170733773661,441,0 +170733773709,441,0 +170733773759,441,0 +170733773807,441,0 +170733773856,441,0 +170733773906,441,0 +170733773955,440,0 +170733774005,441,0 +170733774053,266,0 +170733774102,301,1 +170733774189,440,0 +170733774239,441,0 +170733774288,441,0 +170733774336,441,0 +170733774384,441,0 +170733774432,441,0 +170733774480,441,0 +170733774528,441,0 +170733774576,441,0 +170733774626,441,0 +170733774675,441,0 +170733774723,441,0 +170733774771,441,0 +170733774820,441,0 +170733774868,441,0 +170733774918,441,0 +170733774966,441,0 +170733775015,441,0 +170733775063,441,0 +170733775111,307,1 +170733775204,233,0 +170733775253,441,0 +170733775301,441,0 +170733775349,441,0 +170733775397,441,0 +170733775445,441,0 +170733775495,441,0 +170733775544,440,0 +170733775592,441,0 +170733775642,441,0 +170733775691,441,0 +170733775739,441,0 +170733775787,441,0 +170733775837,441,0 +170733775885,441,0 +170733775933,441,0 +170733775981,441,0 +170733776029,441,0 +170733776076,441,0 +170733776126,440,0 +170733776176,290,1 +170733776263,437,0 +170733776313,441,0 +170733776361,441,0 +170733776410,441,0 +170733776458,441,0 +170733776508,441,0 +170733776556,441,0 +170733776604,440,0 +170733776653,441,0 +170733776703,441,0 +170733776751,441,0 +170733776799,441,0 +170733776846,441,0 +170733776894,441,0 +170733776942,440,0 +170733776990,441,0 +170733777038,441,0 +170733777088,441,0 +170733777136,441,0 +170733777184,440,0 +170733777233,304,1 +170733777315,437,0 +170733777365,441,0 +170733777413,441,0 +170733777461,441,0 +170733777509,441,0 +170733777557,441,0 +170733777604,441,0 +170733777654,441,0 +170733777702,440,0 +170733777751,441,0 +170733777801,441,0 +170733777849,441,0 +170733777897,441,0 +170733777945,441,0 +170733777993,441,0 +170733778041,441,0 +170733778089,440,0 +170733778137,441,0 +170733778186,441,0 +170733778234,440,0 +170733778282,305,1 +170733778361,435,0 +170733778409,440,0 +170733778459,441,0 +170733778507,441,0 +170733778556,441,0 +170733778606,441,0 +170733778654,441,0 +170733778703,441,0 +170733778751,441,0 +170733778799,441,0 +170733778847,441,0 +170733778895,441,0 +170733778943,441,0 +170733778991,441,0 +170733779039,441,0 +170733779087,441,0 +170733779135,441,0 +170733779183,440,0 +170733779231,441,0 +170733779279,440,0 +170733779327,306,1 +170733779403,418,0 +170733779453,441,0 +170733779501,441,0 +170733779549,441,0 +170733779598,441,0 +170733779648,441,0 +170733779696,441,0 +170733779744,441,0 +170733779792,441,0 +170733779841,441,0 +170733779889,441,0 +170733779939,441,0 +170733779987,441,0 +170733780035,441,0 +170733780083,441,0 +170733780131,441,0 +170733780179,441,0 +170733780228,441,0 +170733780276,441,0 +170733780324,440,0 +170733780372,282,1 +170733780461,436,0 +170733780510,441,0 +170733780560,441,0 +170733780609,441,0 +170733780657,441,0 +170733780705,441,0 +170733780753,441,0 +170733780801,441,0 +170733780849,441,0 +170733780897,441,0 +170733780945,441,0 +170733780993,441,0 +170733781041,441,0 +170733781089,441,0 +170733781138,440,0 +170733781186,441,0 +170733781234,441,0 +170733781284,441,0 +170733781332,441,0 +170733781380,440,0 +170733781428,291,1 +170733781512,437,0 +170733781560,440,0 +170733781608,441,0 +170733781656,441,0 +170733781705,441,0 +170733781753,441,0 +170733781801,441,0 +170733781851,441,0 +170733781899,441,0 +170733781947,441,0 +170733781995,441,0 +170733782043,440,0 +170733782090,441,0 +170733782138,441,0 +170733782186,441,0 +170733782236,441,0 +170733782285,441,0 +170733782333,441,0 +170733782381,441,0 +170733782429,440,0 +170733782479,300,1 +170733782567,438,0 +170733782616,441,0 +170733782664,441,0 +170733782712,441,0 +170733782762,441,0 +170733782810,441,0 +170733782859,441,0 +170733782909,440,0 +170733782958,441,0 +170733783006,441,0 +170733783054,441,0 +170733783102,441,0 +170733783150,441,0 +170733783198,441,0 +170733783246,440,0 +170733783294,441,0 +170733783342,440,0 +170733783390,441,0 +170733783437,440,0 +170733783485,436,0 +170733783533,293,1 +170733783617,439,0 +170733783667,441,0 +170733783716,441,0 +170733783764,441,0 +170733783812,441,0 +170733783861,441,0 +170733783909,441,0 +170733783957,441,0 +170733784007,441,0 +170733784055,440,0 +170733784102,441,0 +170733784150,441,0 +170733784198,441,0 +170733784248,441,0 +170733784296,441,0 +170733784344,441,0 +170733784392,441,0 +170733784441,440,0 +170733784489,441,0 +170733784537,300,1 +170733784619,292,1 +170733784702,441,0 +170733784750,441,0 +170733784798,441,0 +170733784847,441,0 +170733784895,441,0 +170733784943,441,0 +170733784993,441,0 +170733785042,441,0 +170733785090,441,0 +170733785138,441,0 +170733785186,441,0 +170733785235,441,0 +170733785285,441,0 +170733785333,441,0 +170733785381,441,0 +170733785429,441,0 +170733785478,441,0 +170733785528,440,0 +170733785576,439,0 +170733785625,303,1 +170733785713,438,0 +170733785761,441,0 +170733785811,441,0 +170733785858,441,0 +170733785906,441,0 +170733785954,441,0 +170733786004,441,0 +170733786051,440,0 +170733786099,441,0 +170733786147,441,0 +170733786195,441,0 +170733786243,441,0 +170733786291,441,0 +170733786340,441,0 +170733786388,441,0 +170733786436,441,0 +170733786484,441,0 +170733786534,441,0 +170733786582,441,0 +170733786630,428,0 +170733786678,294,1 +170733786759,438,0 +170733786809,441,0 +170733786857,441,0 +170733786905,441,0 +170733786954,441,0 +170733787002,441,0 +170733787050,441,0 +170733787098,441,0 +170733787146,440,0 +170733787193,441,0 +170733787241,440,0 +170733787289,441,0 +170733787337,441,0 +170733787385,441,0 +170733787433,441,0 +170733787481,441,0 +170733787529,441,0 +170733787577,440,0 +170733787625,441,0 +170733787673,440,0 +170733787721,299,1 +170733787805,435,0 +170733787855,441,0 +170733787904,441,0 +170733787952,441,0 +170733788000,441,0 +170733788048,441,0 +170733788096,441,0 +170733788144,441,0 +170733788192,441,0 +170733788242,441,0 +170733788290,441,0 +170733788339,441,0 +170733788387,441,0 +170733788435,441,0 +170733788485,441,0 +170733788534,441,0 +170733788582,441,0 +170733788630,441,0 +170733788680,441,0 +170733788728,281,1 +170733788815,278,1 +170733788902,441,0 +170733788950,441,0 +170733788998,441,0 +170733789046,441,0 +170733789095,441,0 +170733789145,441,0 +170733789192,440,0 +170733789242,441,0 +170733789290,441,0 +170733789338,441,0 +170733789386,441,0 +170733789434,441,0 +170733789482,441,0 +170733789529,441,0 +170733789577,441,0 +170733789627,440,0 +170733789675,441,0 +170733789724,441,0 +170733789772,441,0 +170733789820,441,0 +170733789870,441,0 +170733789918,441,0 +170733789966,441,0 +170733790013,441,0 +170733790061,441,0 +170733790109,441,0 +170733790157,441,0 +170733790205,441,0 +170733790253,440,0 +170733790301,279,1 +170733790388,267,0 +170733790436,440,0 +170733790485,441,0 +170733790533,441,0 +170733790583,441,0 +170733790631,441,0 +170733790679,441,0 +170733790728,441,0 +170733790778,441,0 +170733790826,441,0 +170733790875,441,0 +170733790923,441,0 +170733790971,441,0 +170733791019,441,0 +170733791069,441,0 +170733791118,441,0 +170733791166,441,0 +170733791215,441,0 +170733791263,441,0 +170733791313,440,0 +170733791361,300,1 +170733791449,236,0 +170733791497,440,0 +170733791545,441,0 +170733791593,441,0 +170733791641,441,0 +170733791689,441,0 +170733791738,441,0 +170733791786,441,0 +170733791834,441,0 +170733791882,441,0 +170733791930,441,0 +170733791978,441,0 +170733792026,441,0 +170733792073,441,0 +170733792121,441,0 +170733792169,441,0 +170733792219,441,0 +170733792267,441,0 +170733792314,441,0 +170733792362,440,0 +170733792412,293,1 +170733792499,425,0 +170733792547,440,0 +170733792594,441,0 +170733792642,441,0 +170733792690,441,0 +170733792740,441,0 +170733792788,441,0 +170733792836,441,0 +170733792884,441,0 +170733792932,441,0 +170733792979,441,0 +170733793029,441,0 +170733793078,441,0 +170733793128,441,0 +170733793176,441,0 +170733793225,441,0 +170733793275,441,0 +170733793324,440,0 +170733793372,441,0 +170733793420,440,0 +170733793470,308,1 +170733793553,433,0 +170733793601,440,0 +170733793650,441,0 +170733793700,441,0 +170733793749,441,0 +170733793797,441,0 +170733793845,441,0 +170733793893,441,0 +170733793941,441,0 +170733793989,441,0 +170733794037,441,0 +170733794086,441,0 +170733794134,441,0 +170733794182,441,0 +170733794232,441,0 +170733794281,441,0 +170733794331,441,0 +170733794380,441,0 +170733794428,440,0 +170733794476,440,0 +170733794526,308,1 +170733794614,436,0 +170733794663,440,0 +170733794711,441,0 +170733794759,441,0 +170733794809,441,0 +170733794858,441,0 +170733794906,441,0 +170733794954,441,0 +170733795002,441,0 +170733795050,441,0 +170733795099,441,0 +170733795147,441,0 +170733795197,441,0 +170733795245,441,0 +170733795294,441,0 +170733795342,441,0 +170733795390,441,0 +170733795438,441,0 +170733795486,440,0 +170733795534,440,0 +170733795582,308,1 +170733795664,436,0 +170733795712,441,0 +170733795760,441,0 +170733795808,441,0 +170733795855,441,0 +170733795903,441,0 +170733795951,441,0 +170733795999,441,0 +170733796047,441,0 +170733796095,441,0 +170733796143,441,0 +170733796191,441,0 +170733796238,441,0 +170733796286,441,0 +170733796334,441,0 +170733796382,441,0 +170733796430,441,0 +170733796478,441,0 +170733796526,441,0 +170733796574,440,0 +170733796621,309,1 +170733796705,437,0 +170733796753,441,0 +170733796801,441,0 +170733796849,441,0 +170733796897,441,0 +170733796945,441,0 +170733796993,441,0 +170733797041,441,0 +170733797090,441,0 +170733797138,441,0 +170733797188,441,0 +170733797236,441,0 +170733797285,441,0 +170733797333,441,0 +170733797381,441,0 +170733797429,441,0 +170733797477,441,0 +170733797525,441,0 +170733797574,441,0 +170733797622,440,0 +170733797670,301,1 +170733797759,436,0 +170733797807,440,0 +170733797855,440,0 +170733797903,441,0 +170733797951,441,0 +170733797999,441,0 +170733798047,441,0 +170733798095,440,0 +170733798143,441,0 +170733798191,441,0 +170733798239,441,0 +170733798288,441,0 +170733798338,441,0 +170733798386,441,0 +170733798434,441,0 +170733798482,441,0 +170733798531,441,0 +170733798581,441,0 +170733798629,441,0 +170733798677,439,0 +170733798725,309,1 +170733798807,438,0 +170733798855,441,0 +170733798904,441,0 +170733798952,441,0 +170733799001,441,0 +170733799051,441,0 +170733799099,441,0 +170733799148,441,0 +170733799196,441,0 +170733799244,441,0 +170733799292,441,0 +170733799342,441,0 +170733799390,441,0 +170733799438,441,0 +170733799487,441,0 +170733799537,441,0 +170733799586,441,0 +170733799634,441,0 +170733799684,441,0 +170733799733,307,1 +170733799820,250,0 +170733799868,440,0 +170733799916,441,0 +170733799964,441,0 +170733800013,441,0 +170733800061,441,0 +170733800111,441,0 +170733800160,441,0 +170733800208,441,0 +170733800256,441,0 +170733800304,441,0 +170733800352,441,0 +170733800400,441,0 +170733800448,441,0 +170733800496,441,0 +170733800544,441,0 +170733800592,441,0 +170733800640,441,0 +170733800689,441,0 +170733800737,440,0 +170733800785,278,1 +170733800868,303,1 +170733800949,441,0 +170733800999,441,0 +170733801047,441,0 +170733801095,441,0 +170733801143,441,0 +170733801191,441,0 +170733801239,441,0 +170733801287,441,0 +170733801335,441,0 +170733801384,441,0 +170733801432,441,0 +170733801480,441,0 +170733801530,441,0 +170733801579,441,0 +170733801627,441,0 +170733801675,441,0 +170733801723,441,0 +170733801771,441,0 +170733801819,440,0 +170733801868,300,1 +170733801951,437,0 +170733801999,441,0 +170733802047,441,0 +170733802095,441,0 +170733802145,441,0 +170733802193,441,0 +170733802240,441,0 +170733802288,441,0 +170733802336,441,0 +170733802384,441,0 +170733802432,441,0 +170733802480,441,0 +170733802530,441,0 +170733802578,441,0 +170733802625,441,0 +170733802675,441,0 +170733802723,441,0 +170733802771,441,0 +170733802819,441,0 +170733802868,440,0 +170733802916,299,1 +170733803000,437,0 +170733803048,441,0 +170733803096,441,0 +170733803144,441,0 +170733803191,441,0 +170733803239,441,0 +170733803287,441,0 +170733803335,441,0 +170733803383,441,0 +170733803431,441,0 +170733803479,441,0 +170733803527,441,0 +170733803575,441,0 +170733803623,441,0 +170733803672,441,0 +170733803720,441,0 +170733803768,441,0 +170733803816,441,0 +170733803864,441,0 +170733803912,440,0 +170733803959,304,1 +170733804047,437,0 +170733804095,441,0 +170733804143,441,0 +170733804190,440,0 +170733804240,441,0 +170733804288,441,0 +170733804337,441,0 +170733804387,441,0 +170733804435,440,0 +170733804484,441,0 +170733804532,441,0 +170733804582,441,0 +170733804630,441,0 +170733804679,441,0 +170733804729,441,0 +170733804778,441,0 +170733804826,441,0 +170733804874,441,0 +170733804924,441,0 +170733804971,438,0 +170733805019,300,1 +170733805103,438,0 +170733805153,441,0 +170733805202,441,0 +170733805250,441,0 +170733805298,441,0 +170733805346,441,0 +170733805394,440,0 +170733805442,441,0 +170733805492,441,0 +170733805539,441,0 +170733805587,441,0 +170733805635,441,0 +170733805683,441,0 +170733805731,441,0 +170733805779,441,0 +170733805827,441,0 +170733805875,441,0 +170733805923,441,0 +170733805970,441,0 +170733806018,440,0 +170733806066,306,1 +170733806155,439,0 +170733806203,441,0 +170733806251,441,0 +170733806299,441,0 +170733806347,441,0 +170733806395,441,0 +170733806444,441,0 +170733806492,441,0 +170733806540,441,0 +170733806588,441,0 +170733806636,441,0 +170733806684,441,0 +170733806732,441,0 +170733806779,441,0 +170733806827,441,0 +170733806875,441,0 +170733806923,441,0 +170733806972,441,0 +170733807020,440,0 +170733807068,422,0 +170733807116,294,1 +170733807202,439,0 +170733807250,441,0 +170733807298,440,0 +170733807346,441,0 +170733807394,441,0 +170733807441,441,0 +170733807491,441,0 +170733807540,441,0 +170733807590,441,0 +170733807639,441,0 +170733807687,441,0 +170733807735,441,0 +170733807783,441,0 +170733807832,441,0 +170733807882,441,0 +170733807932,441,0 +170733807980,441,0 +170733808028,441,0 +170733808075,441,0 +170733808125,290,1 +170733808205,303,1 +170733808289,441,0 +170733808337,441,0 +170733808385,441,0 +170733808434,441,0 +170733808484,441,0 +170733808532,441,0 +170733808580,441,0 +170733808628,441,0 +170733808677,441,0 +170733808725,441,0 +170733808775,441,0 +170733808823,440,0 +170733808872,441,0 +170733808920,441,0 +170733808968,441,0 +170733809016,441,0 +170733809066,441,0 +170733809114,440,0 +170733809163,440,0 +170733809211,299,1 +170733809296,439,0 +170733809346,441,0 +170733809395,441,0 +170733809443,441,0 +170733809491,441,0 +170733809541,441,0 +170733809590,441,0 +170733809640,441,0 +170733809688,441,0 +170733809736,441,0 +170733809784,441,0 +170733809832,441,0 +170733809881,441,0 +170733809929,441,0 +170733809977,441,0 +170733810025,441,0 +170733810073,441,0 +170733810122,441,0 +170733810172,440,0 +170733810220,440,0 +170733810268,297,1 +170733810355,438,0 +170733810403,441,0 +170733810450,441,0 +170733810500,441,0 +170733810550,441,0 +170733810597,441,0 +170733810645,440,0 +170733810695,441,0 +170733810743,441,0 +170733810793,441,0 +170733810841,441,0 +170733810890,441,0 +170733810938,441,0 +170733810987,441,0 +170733811035,441,0 +170733811083,441,0 +170733811131,441,0 +170733811181,441,0 +170733811229,441,0 +170733811277,298,1 +170733811366,238,0 +170733811415,441,0 +170733811463,441,0 +170733811511,441,0 +170733811561,441,0 +170733811610,441,0 +170733811658,441,0 +170733811706,441,0 +170733811754,441,0 +170733811803,441,0 +170733811851,440,0 +170733811899,441,0 +170733811947,441,0 +170733811995,441,0 +170733812043,441,0 +170733812091,441,0 +170733812139,441,0 +170733812187,441,0 +170733812235,441,0 +170733812283,440,0 +170733812333,296,1 +170733812414,243,0 +170733812463,440,0 +170733812511,441,0 +170733812561,441,0 +170733812610,441,0 +170733812660,441,0 +170733812708,441,0 +170733812756,441,0 +170733812804,441,0 +170733812853,441,0 +170733812902,441,0 +170733812950,441,0 +170733812998,441,0 +170733813048,441,0 +170733813096,441,0 +170733813144,441,0 +170733813192,441,0 +170733813239,441,0 +170733813287,441,0 +170733813335,441,0 +170733813383,295,1 +170733813465,235,0 +170733813513,440,0 +170733813561,441,0 +170733813609,440,0 +170733813657,441,0 +170733813704,441,0 +170733813752,441,0 +170733813800,441,0 +170733813848,441,0 +170733813898,441,0 +170733813946,441,0 +170733813993,441,0 +170733814043,440,0 +170733814093,441,0 +170733814140,441,0 +170733814190,441,0 +170733814240,441,0 +170733814287,441,0 +170733814335,441,0 +170733814385,441,0 +170733814433,300,1 +170733814513,235,0 +170733814561,441,0 +170733814609,441,0 +170733814659,441,0 +170733814707,441,0 +170733814755,441,0 +170733814803,441,0 +170733814851,441,0 +170733814899,441,0 +170733814948,441,0 +170733814996,441,0 +170733815046,441,0 +170733815094,441,0 +170733815142,441,0 +170733815191,440,0 +170733815239,441,0 +170733815287,441,0 +170733815337,441,0 +170733815384,441,0 +170733815432,440,0 +170733815482,302,1 +170733815567,254,0 +170733815617,441,0 +170733815666,441,0 +170733815714,441,0 +170733815762,441,0 +170733815810,440,0 +170733815858,441,0 +170733815907,441,0 +170733815957,441,0 +170733816005,441,0 +170733816053,441,0 +170733816101,441,0 +170733816150,441,0 +170733816198,441,0 +170733816248,441,0 +170733816296,441,0 +170733816344,441,0 +170733816393,441,0 +170733816443,441,0 +170733816491,441,0 +170733816539,305,1 +170733816622,405,0 +170733816670,441,0 +170733816720,441,0 +170733816768,441,0 +170733816816,441,0 +170733816865,440,0 +170733816913,441,0 +170733816961,441,0 +170733817011,441,0 +170733817059,441,0 +170733817107,441,0 +170733817156,441,0 +170733817206,441,0 +170733817254,441,0 +170733817303,441,0 +170733817353,441,0 +170733817401,441,0 +170733817449,441,0 +170733817497,441,0 +170733817545,440,0 +170733817594,293,1 +170733817681,437,0 +170733817729,441,0 +170733817777,441,0 +170733817825,441,0 +170733817874,441,0 +170733817922,441,0 +170733817970,440,0 +170733818020,441,0 +170733818069,441,0 +170733818117,441,0 +170733818167,441,0 +170733818215,440,0 +170733818264,441,0 +170733818313,441,0 +170733818361,441,0 +170733818409,441,0 +170733818459,441,0 +170733818508,441,0 +170733818556,440,0 +170733818604,437,0 +170733818654,297,1 +170733818736,439,0 +170733818784,440,0 +170733818832,441,0 +170733818880,441,0 +170733818930,441,0 +170733818977,441,0 +170733819025,441,0 +170733819073,440,0 +170733819123,441,0 +170733819172,441,0 +170733819220,441,0 +170733819268,441,0 +170733819318,441,0 +170733819366,441,0 +170733819414,441,0 +170733819462,441,0 +170733819510,441,0 +170733819559,441,0 +170733819607,441,0 +170733819655,427,0 +170733819705,297,1 +170733819792,440,0 +170733819840,441,0 +170733819890,441,0 +170733819938,441,0 +170733819987,441,0 +170733820035,440,0 +170733820083,441,0 +170733820131,441,0 +170733820179,441,0 +170733820227,441,0 +170733820275,441,0 +170733820323,441,0 +170733820371,441,0 +170733820420,441,0 +170733820470,441,0 +170733820518,441,0 +170733820566,441,0 +170733820614,441,0 +170733820663,441,0 +170733820711,348,0 +170733820759,291,1 +170733820852,440,0 +170733820900,441,0 +170733820948,441,0 +170733820996,441,0 +170733821044,441,0 +170733821093,441,0 +170733821141,441,0 +170733821189,441,0 +170733821237,441,0 +170733821285,441,0 +170733821333,441,0 +170733821381,441,0 +170733821431,441,0 +170733821480,441,0 +170733821528,441,0 +170733821578,441,0 +170733821627,441,0 +170733821675,440,0 +170733821723,440,0 +170733821771,284,1 +170733821852,415,0 +170733821900,440,0 +170733821948,441,0 +170733821996,441,0 +170733822046,441,0 +170733822094,441,0 +170733822142,441,0 +170733822191,441,0 +170733822241,441,0 +170733822289,441,0 +170733822337,441,0 +170733822385,441,0 +170733822434,441,0 +170733822482,441,0 +170733822530,441,0 +170733822578,441,0 +170733822626,441,0 +170733822674,441,0 +170733822724,441,0 +170733822773,440,0 +170733822823,286,1 +170733822907,266,0 +170733822955,441,0 +170733823004,441,0 +170733823054,441,0 +170733823102,441,0 +170733823150,441,0 +170733823199,441,0 +170733823247,441,0 +170733823297,441,0 +170733823345,441,0 +170733823393,441,0 +170733823441,441,0 +170733823490,441,0 +170733823540,441,0 +170733823588,441,0 +170733823636,441,0 +170733823684,441,0 +170733823733,440,0 +170733823783,441,0 +170733823831,440,0 +170733823880,282,1 +170733823964,436,0 +170733824013,441,0 +170733824061,441,0 +170733824109,441,0 +170733824159,441,0 +170733824207,441,0 +170733824255,441,0 +170733824303,441,0 +170733824350,441,0 +170733824398,441,0 +170733824446,441,0 +170733824494,441,0 +170733824542,441,0 +170733824592,441,0 +170733824640,441,0 +170733824688,441,0 +170733824737,441,0 +170733824785,440,0 +170733824833,441,0 +170733824881,440,0 +170733824929,251,0 +170733824977,269,0 +170733825026,438,0 +170733825074,441,0 +170733825124,441,0 +170733825173,441,0 +170733825221,441,0 +170733825271,441,0 +170733825320,441,0 +170733825368,441,0 +170733825416,441,0 +170733825464,441,0 +170733825512,441,0 +170733825560,441,0 +170733825608,441,0 +170733825656,441,0 +170733825706,441,0 +170733825755,441,0 +170733825803,441,0 +170733825851,441,0 +170733825899,441,0 +170733825947,440,0 +170733825996,296,1 +170733826081,438,0 +170733826129,441,0 +170733826176,441,0 +170733826226,441,0 +170733826274,441,0 +170733826322,441,0 +170733826369,441,0 +170733826419,441,0 +170733826467,441,0 +170733826515,441,0 +170733826564,441,0 +170733826612,441,0 +170733826662,441,0 +170733826710,441,0 +170733826757,441,0 +170733826805,441,0 +170733826853,441,0 +170733826901,441,0 +170733826949,441,0 +170733826997,291,1 +170733827089,271,1 +170733827173,440,0 +170733827221,441,0 +170733827269,441,0 +170733827319,441,0 +170733827367,441,0 +170733827416,441,0 +170733827464,441,0 +170733827512,441,0 +170733827560,441,0 +170733827608,441,0 +170733827658,441,0 +170733827707,441,0 +170733827757,441,0 +170733827805,441,0 +170733827853,441,0 +170733827900,441,0 +170733827948,441,0 +170733827996,440,0 +170733828044,298,1 +170733828132,261,0 +170733828180,440,0 +170733828228,441,0 +170733828276,441,0 +170733828324,441,0 +170733828373,441,0 +170733828421,441,0 +170733828469,441,0 +170733828517,441,0 +170733828565,441,0 +170733828613,441,0 +170733828661,441,0 +170733828709,441,0 +170733828758,441,0 +170733828808,441,0 +170733828857,441,0 +170733828905,440,0 +170733828955,441,0 +170733829003,441,0 +170733829051,441,0 +170733829099,303,1 +170733829196,434,0 +170733829244,441,0 +170733829292,441,0 +170733829340,441,0 +170733829389,441,0 +170733829437,441,0 +170733829487,441,0 +170733829536,441,0 +170733829586,441,0 +170733829634,441,0 +170733829683,441,0 +170733829731,441,0 +170733829779,441,0 +170733829829,441,0 +170733829878,441,0 +170733829926,441,0 +170733829976,441,0 +170733830024,441,0 +170733830072,441,0 +170733830121,440,0 +170733830169,311,0 +170733830219,307,1 +170733830301,441,0 +170733830351,441,0 +170733830399,441,0 +170733830447,441,0 +170733830495,441,0 +170733830544,440,0 +170733830592,441,0 +170733830640,441,0 +170733830688,441,0 +170733830736,441,0 +170733830784,441,0 +170733830834,441,0 +170733830882,441,0 +170733830930,441,0 +170733830978,441,0 +170733831027,441,0 +170733831075,441,0 +170733831123,441,0 +170733831171,440,0 +170733831219,299,1 +170733831299,436,0 +170733831348,441,0 +170733831397,441,0 +170733831445,441,0 +170733831495,441,0 +170733831543,441,0 +170733831591,441,0 +170733831640,440,0 +170733831688,441,0 +170733831736,441,0 +170733831784,441,0 +170733831832,441,0 +170733831881,441,0 +170733831929,441,0 +170733831979,441,0 +170733832027,441,0 +170733832076,441,0 +170733832124,441,0 +170733832172,441,0 +170733832220,440,0 +170733832269,292,1 +170733832354,436,0 +170733832403,441,0 +170733832451,441,0 +170733832501,441,0 +170733832549,441,0 +170733832597,441,0 +170733832646,441,0 +170733832694,441,0 +170733832742,441,0 +170733832790,441,0 +170733832839,441,0 +170733832887,441,0 +170733832935,441,0 +170733832983,441,0 +170733833031,441,0 +170733833079,441,0 +170733833129,441,0 +170733833177,441,0 +170733833226,441,0 +170733833274,440,0 +170733833322,290,1 +170733833405,437,0 +170733833454,441,0 +170733833504,441,0 +170733833552,441,0 +170733833600,441,0 +170733833648,441,0 +170733833696,441,0 +170733833745,441,0 +170733833795,441,0 +170733833843,441,0 +170733833891,441,0 +170733833938,441,0 +170733833986,441,0 +170733834036,441,0 +170733834084,441,0 +170733834132,441,0 +170733834180,441,0 +170733834228,441,0 +170733834275,440,0 +170733834323,439,0 +170733834371,304,1 +170733834458,439,0 +170733834507,441,0 +170733834555,441,0 +170733834603,441,0 +170733834651,441,0 +170733834699,441,0 +170733834747,441,0 +170733834796,440,0 +170733834844,441,0 +170733834892,441,0 +170733834940,441,0 +170733834988,441,0 +170733835036,441,0 +170733835084,441,0 +170733835132,441,0 +170733835179,441,0 +170733835227,441,0 +170733835275,441,0 +170733835323,441,0 +170733835371,440,0 +170733835419,302,1 +170733835506,438,0 +170733835554,441,0 +170733835604,441,0 +170733835651,441,0 +170733835701,441,0 +170733835750,441,0 +170733835800,441,0 +170733835848,441,0 +170733835896,441,0 +170733835945,441,0 +170733835993,441,0 +170733836041,441,0 +170733836089,441,0 +170733836137,441,0 +170733836185,441,0 +170733836232,441,0 +170733836282,441,0 +170733836330,441,0 +170733836379,440,0 +170733836427,437,0 +170733836475,293,1 +170733836559,439,0 +170733836608,441,0 +170733836656,441,0 +170733836704,441,0 +170733836752,441,0 +170733836800,441,0 +170733836848,441,0 +170733836898,441,0 +170733836947,441,0 +170733836995,441,0 +170733837043,440,0 +170733837091,441,0 +170733837140,441,0 +170733837188,441,0 +170733837236,441,0 +170733837284,441,0 +170733837332,441,0 +170733837380,441,0 +170733837428,441,0 +170733837476,375,0 +170733837524,301,1 +170733837605,438,0 +170733837653,441,0 +170733837701,441,0 +170733837749,441,0 +170733837799,441,0 +170733837848,441,0 +170733837896,441,0 +170733837944,441,0 +170733837993,441,0 +170733838041,441,0 +170733838089,441,0 +170733838137,441,0 +170733838187,441,0 +170733838235,441,0 +170733838283,441,0 +170733838331,441,0 +170733838379,441,0 +170733838427,441,0 +170733838475,441,0 +170733838523,440,0 +170733838571,297,1 +170733838653,438,0 +170733838701,441,0 +170733838749,441,0 +170733838799,441,0 +170733838847,441,0 +170733838895,441,0 +170733838943,441,0 +170733838990,441,0 +170733839038,441,0 +170733839088,441,0 +170733839136,441,0 +170733839184,441,0 +170733839233,441,0 +170733839281,441,0 +170733839331,441,0 +170733839378,441,0 +170733839426,441,0 +170733839476,441,0 +170733839524,441,0 +170733839572,440,0 +170733839619,294,1 +170733839706,438,0 +170733839754,441,0 +170733839802,441,0 +170733839850,441,0 +170733839898,441,0 +170733839946,441,0 +170733839994,441,0 +170733840041,440,0 +170733840089,441,0 +170733840139,441,0 +170733840187,441,0 +170733840235,441,0 +170733840283,441,0 +170733840331,441,0 +170733840379,441,0 +170733840427,441,0 +170733840475,441,0 +170733840523,441,0 +170733840571,440,0 +170733840618,435,0 +170733840666,280,1 +170733840756,440,0 +170733840803,441,0 +170733840851,441,0 +170733840899,441,0 +170733840949,441,0 +170733840997,441,0 +170733841044,441,0 +170733841092,441,0 +170733841142,441,0 +170733841190,441,0 +170733841237,441,0 +170733841285,441,0 +170733841333,441,0 +170733841381,441,0 +170733841429,441,0 +170733841477,441,0 +170733841526,441,0 +170733841574,441,0 +170733841622,441,0 +170733841670,435,0 +170733841718,297,1 +170733841800,438,0 +170733841848,441,0 +170733841896,441,0 +170733841944,441,0 +170733841993,441,0 +170733842041,441,0 +170733842091,441,0 +170733842139,441,0 +170733842186,441,0 +170733842234,441,0 +170733842282,441,0 +170733842330,441,0 +170733842378,441,0 +170733842426,441,0 +170733842475,441,0 +170733842523,441,0 +170733842571,441,0 +170733842621,441,0 +170733842669,441,0 +170733842718,436,0 +170733842766,298,1 +170733842855,439,0 +170733842903,441,0 +170733842953,441,0 +170733843001,441,0 +170733843049,441,0 +170733843098,441,0 +170733843146,441,0 +170733843194,441,0 +170733843242,441,0 +170733843290,441,0 +170733843338,441,0 +170733843386,441,0 +170733843433,441,0 +170733843481,441,0 +170733843529,441,0 +170733843577,441,0 +170733843625,441,0 +170733843673,441,0 +170733843721,441,0 +170733843769,436,0 +170733843816,312,0 +170733843864,239,0 +170733843912,441,0 +170733843960,441,0 +170733844008,441,0 +170733844056,441,0 +170733844104,441,0 +170733844152,441,0 +170733844200,441,0 +170733844247,441,0 +170733844295,441,0 +170733844343,441,0 +170733844391,441,0 +170733844439,441,0 +170733844487,441,0 +170733844535,441,0 +170733844584,441,0 +170733844632,441,0 +170733844680,441,0 +170733844730,441,0 +170733844777,441,0 +170733844825,280,1 +170733844915,265,0 +170733844962,440,0 +170733845010,441,0 +170733845058,441,0 +170733845106,441,0 +170733845154,441,0 +170733845203,441,0 +170733845253,441,0 +170733845301,441,0 +170733845350,441,0 +170733845398,441,0 +170733845446,441,0 +170733845494,441,0 +170733845543,441,0 +170733845591,441,0 +170733845639,441,0 +170733845687,441,0 +170733845735,441,0 +170733845784,441,0 +170733845834,441,0 +170733845882,305,1 +170733845969,245,0 +170733846017,440,0 +170733846065,441,0 +170733846113,441,0 +170733846161,441,0 +170733846210,441,0 +170733846258,441,0 +170733846306,441,0 +170733846354,441,0 +170733846402,441,0 +170733846449,441,0 +170733846497,441,0 +170733846545,441,0 +170733846593,441,0 +170733846641,441,0 +170733846689,441,0 +170733846738,441,0 +170733846786,441,0 +170733846834,441,0 +170733846882,440,0 +170733846930,309,1 +170733847036,437,0 +170733847086,441,0 +170733847134,441,0 +170733847182,441,0 +170733847230,441,0 +170733847278,441,0 +170733847326,441,0 +170733847373,441,0 +170733847423,441,0 +170733847471,441,0 +170733847519,441,0 +170733847567,441,0 +170733847615,441,0 +170733847663,441,0 +170733847711,441,0 +170733847759,441,0 +170733847808,441,0 +170733847856,441,0 +170733847904,441,0 +170733847954,440,0 +170733848003,308,1 +170733848090,437,0 +170733848138,441,0 +170733848186,441,0 +170733848234,441,0 +170733848282,441,0 +170733848330,441,0 +170733848378,441,0 +170733848427,440,0 +170733848475,441,0 +170733848523,441,0 +170733848573,441,0 +170733848622,441,0 +170733848672,441,0 +170733848720,441,0 +170733848768,441,0 +170733848816,441,0 +170733848865,441,0 +170733848913,441,0 +170733848963,441,0 +170733849011,430,0 +170733849059,299,1 +170733849144,439,0 +170733849192,441,0 +170733849240,441,0 +170733849288,441,0 +170733849336,441,0 +170733849384,441,0 +170733849433,441,0 +170733849481,441,0 +170733849529,441,0 +170733849577,441,0 +170733849627,441,0 +170733849676,441,0 +170733849724,441,0 +170733849774,441,0 +170733849822,441,0 +170733849870,441,0 +170733849918,441,0 +170733849966,441,0 +170733850014,441,0 +170733850063,416,0 +170733850111,306,1 +170733850197,439,0 +170733850247,441,0 +170733850296,441,0 +170733850344,441,0 +170733850394,441,0 +170733850443,441,0 +170733850493,441,0 +170733850541,441,0 +170733850589,441,0 +170733850638,441,0 +170733850686,441,0 +170733850734,441,0 +170733850782,441,0 +170733850830,441,0 +170733850878,441,0 +170733850928,441,0 +170733850976,441,0 +170733851024,441,0 +170733851072,440,0 +170733851120,295,1 +170733851205,239,0 +170733851254,441,0 +170733851302,441,0 +170733851350,441,0 +170733851398,441,0 +170733851448,441,0 +170733851496,441,0 +170733851544,441,0 +170733851592,441,0 +170733851640,441,0 +170733851688,441,0 +170733851736,441,0 +170733851784,441,0 +170733851832,441,0 +170733851880,441,0 +170733851928,441,0 +170733851977,441,0 +170733852025,441,0 +170733852074,441,0 +170733852124,441,0 +170733852172,300,1 +170733852256,252,0 +170733852304,440,0 +170733852352,441,0 +170733852400,441,0 +170733852448,441,0 +170733852496,441,0 +170733852545,441,0 +170733852593,441,0 +170733852641,441,0 +170733852691,441,0 +170733852740,441,0 +170733852788,441,0 +170733852838,441,0 +170733852886,441,0 +170733852934,441,0 +170733852982,441,0 +170733853031,441,0 +170733853079,441,0 +170733853129,441,0 +170733853176,441,0 +170733853226,306,1 +170733853314,380,0 +170733853364,441,0 +170733853412,441,0 +170733853461,441,0 +170733853509,441,0 +170733853559,441,0 +170733853608,441,0 +170733853656,441,0 +170733853706,441,0 +170733853754,441,0 +170733853802,441,0 +170733853851,441,0 +170733853899,441,0 +170733853947,441,0 +170733853995,441,0 +170733854043,441,0 +170733854093,441,0 +170733854141,441,0 +170733854189,440,0 +170733854237,440,0 +170733854285,300,1 +170733854371,435,0 +170733854424,441,0 +170733854473,441,0 +170733854521,441,0 +170733854569,441,0 +170733854617,441,0 +170733854665,441,0 +170733854715,441,0 +170733854763,441,0 +170733854812,441,0 +170733854860,441,0 +170733854910,441,0 +170733854958,441,0 +170733855006,441,0 +170733855056,441,0 +170733855105,441,0 +170733855155,441,0 +170733855203,441,0 +170733855252,441,0 +170733855300,439,0 +170733855348,291,1 +170733855440,440,0 +170733855488,441,0 +170733855536,441,0 +170733855585,441,0 +170733855633,441,0 +170733855681,441,0 +170733855729,441,0 +170733855777,441,0 +170733855825,441,0 +170733855875,441,0 +170733855924,441,0 +170733855974,441,0 +170733856022,441,0 +170733856070,441,0 +170733856119,441,0 +170733856169,441,0 +170733856217,441,0 +170733856265,441,0 +170733856314,441,0 +170733856362,284,1 +170733856446,252,0 +170733856494,440,0 +170733856542,441,0 +170733856590,441,0 +170733856638,441,0 +170733856686,441,0 +170733856734,441,0 +170733856782,441,0 +170733856832,441,0 +170733856880,441,0 +170733856929,441,0 +170733856979,441,0 +170733857028,441,0 +170733857076,441,0 +170733857124,441,0 +170733857172,441,0 +170733857220,441,0 +170733857268,441,0 +170733857316,441,0 +170733857364,441,0 +170733857412,293,1 +170733857499,246,0 +170733857548,441,0 +170733857596,441,0 +170733857645,441,0 +170733857693,441,0 +170733857743,441,0 +170733857791,441,0 +170733857839,441,0 +170733857887,441,0 +170733857935,441,0 +170733857983,441,0 +170733858031,441,0 +170733858078,441,0 +170733858126,441,0 +170733858176,441,0 +170733858224,441,0 +170733858272,441,0 +170733858320,441,0 +170733858368,441,0 +170733858417,441,0 +170733858465,293,1 +170733858550,235,0 +170733858599,441,0 +170733858647,441,0 +170733858697,441,0 +170733858745,440,0 +170733858793,441,0 +170733858841,441,0 +170733858890,441,0 +170733858938,441,0 +170733858988,441,0 +170733859036,441,0 +170733859084,441,0 +170733859132,441,0 +170733859180,441,0 +170733859228,441,0 +170733859275,441,0 +170733859323,441,0 +170733859373,441,0 +170733859421,441,0 +170733859470,441,0 +170733859518,304,1 +170733859603,239,0 +170733859652,441,0 +170733859700,441,0 +170733859750,441,0 +170733859799,441,0 +170733859849,441,0 +170733859898,441,0 +170733859948,441,0 +170733859996,441,0 +170733860044,441,0 +170733860092,441,0 +170733860140,441,0 +170733860188,441,0 +170733860236,441,0 +170733860284,441,0 +170733860332,441,0 +170733860379,441,0 +170733860429,441,0 +170733860477,441,0 +170733860525,441,0 +170733860573,310,0 +170733860621,301,1 +170733860701,440,0 +170733860750,441,0 +170733860800,441,0 +170733860849,441,0 +170733860899,441,0 +170733860948,441,0 +170733860996,441,0 +170733861044,441,0 +170733861092,441,0 +170733861142,441,0 +170733861191,441,0 +170733861239,441,0 +170733861287,441,0 +170733861335,441,0 +170733861383,441,0 +170733861430,441,0 +170733861478,441,0 +170733861526,441,0 +170733861576,441,0 +170733861625,300,1 +170733861704,243,0 +170733861752,440,0 +170733861801,441,0 +170733861849,441,0 +170733861898,441,0 +170733861946,441,0 +170733861994,441,0 +170733862042,441,0 +170733862090,441,0 +170733862138,441,0 +170733862186,441,0 +170733862236,441,0 +170733862284,441,0 +170733862332,441,0 +170733862381,441,0 +170733862429,441,0 +170733862477,441,0 +170733862527,441,0 +170733862576,441,0 +170733862626,441,0 +170733862675,298,1 +170733862763,436,0 +170733862811,441,0 +170733862859,441,0 +170733862907,441,0 +170733862956,441,0 +170733863004,441,0 +170733863054,441,0 +170733863103,441,0 +170733863151,441,0 +170733863199,441,0 +170733863248,441,0 +170733863296,441,0 +170733863344,441,0 +170733863392,441,0 +170733863440,441,0 +170733863488,441,0 +170733863536,441,0 +170733863584,441,0 +170733863633,441,0 +170733863681,440,0 +170733863729,291,1 +170733863818,438,0 +170733863865,441,0 +170733863913,441,0 +170733863961,441,0 +170733864009,441,0 +170733864058,441,0 +170733864106,441,0 +170733864154,441,0 +170733864203,441,0 +170733864251,441,0 +170733864299,441,0 +170733864347,441,0 +170733864395,441,0 +170733864443,441,0 +170733864493,441,0 +170733864542,441,0 +170733864590,441,0 +170733864639,441,0 +170733864689,441,0 +170733864737,440,0 +170733864785,281,1 +170733864876,437,0 +170733864923,441,0 +170733864973,441,0 +170733865022,441,0 +170733865070,441,0 +170733865118,440,0 +170733865166,441,0 +170733865214,441,0 +170733865262,441,0 +170733865312,441,0 +170733865360,441,0 +170733865409,441,0 +170733865457,441,0 +170733865505,441,0 +170733865553,441,0 +170733865603,441,0 +170733865651,441,0 +170733865699,441,0 +170733865747,440,0 +170733865795,312,0 +170733865843,300,1 +170733865928,440,0 +170733865976,441,0 +170733866023,441,0 +170733866073,441,0 +170733866122,441,0 +170733866172,441,0 +170733866220,441,0 +170733866269,441,0 +170733866317,441,0 +170733866365,441,0 +170733866415,441,0 +170733866463,441,0 +170733866511,441,0 +170733866560,441,0 +170733866608,441,0 +170733866658,441,0 +170733866707,441,0 +170733866755,441,0 +170733866803,441,0 +170733866851,291,1 +170733866938,251,0 +170733866988,441,0 +170733867037,441,0 +170733867085,441,0 +170733867133,441,0 +170733867183,441,0 +170733867231,441,0 +170733867280,441,0 +170733867328,441,0 +170733867376,441,0 +170733867424,441,0 +170733867472,441,0 +170733867521,441,0 +170733867571,441,0 +170733867619,441,0 +170733867667,441,0 +170733867715,441,0 +170733867764,441,0 +170733867812,440,0 +170733867862,441,0 +170733867910,286,1 +170733867991,271,1 +170733868079,441,0 +170733868128,441,0 +170733868178,441,0 +170733868226,441,0 +170733868274,441,0 +170733868323,441,0 +170733868371,441,0 +170733868421,441,0 +170733868470,441,0 +170733868520,441,0 +170733868568,441,0 +170733868616,441,0 +170733868664,441,0 +170733868713,441,0 +170733868761,441,0 +170733868809,441,0 +170733868857,441,0 +170733868905,441,0 +170733868953,282,1 +170733869040,275,1 +170733869124,441,0 +170733869172,441,0 +170733869220,441,0 +170733869268,441,0 +170733869317,441,0 +170733869365,441,0 +170733869413,441,0 +170733869461,441,0 +170733869509,441,0 +170733869557,441,0 +170733869605,441,0 +170733869653,441,0 +170733869702,441,0 +170733869750,441,0 +170733869800,441,0 +170733869849,441,0 +170733869899,441,0 +170733869947,441,0 +170733869995,286,1 +170733870076,285,1 +170733870156,441,0 +170733870205,441,0 +170733870253,441,0 +170733870303,441,0 +170733870351,441,0 +170733870400,441,0 +170733870450,441,0 +170733870498,441,0 +170733870546,441,0 +170733870594,441,0 +170733870642,441,0 +170733870690,441,0 +170733870738,441,0 +170733870786,441,0 +170733870835,441,0 +170733870884,441,0 +170733870932,441,0 +170733870980,441,0 +170733871028,441,0 +170733871076,300,1 +170733871162,436,0 +170733871212,441,0 +170733871261,441,0 +170733871311,441,0 +170733871360,441,0 +170733871410,441,0 +170733871458,441,0 +170733871506,441,0 +170733871555,441,0 +170733871603,441,0 +170733871653,441,0 +170733871701,441,0 +170733871748,441,0 +170733871796,441,0 +170733871844,441,0 +170733871892,441,0 +170733871940,441,0 +170733871988,441,0 +170733872036,441,0 +170733872084,437,0 +170733872132,291,1 +170733872221,439,0 +170733872269,441,0 +170733872317,441,0 +170733872365,441,0 +170733872414,441,0 +170733872462,441,0 +170733872510,441,0 +170733872558,441,0 +170733872606,441,0 +170733872654,441,0 +170733872702,441,0 +170733872750,441,0 +170733872799,441,0 +170733872847,441,0 +170733872895,441,0 +170733872943,441,0 +170733872991,441,0 +170733873039,441,0 +170733873087,441,0 +170733873135,279,1 +170733873221,286,1 +170733873297,441,0 +170733873347,441,0 +170733873395,441,0 +170733873444,441,0 +170733873492,441,0 +170733873542,441,0 +170733873589,441,0 +170733873637,441,0 +170733873685,441,0 +170733873733,441,0 +170733873781,441,0 +170733873829,441,0 +170733873877,441,0 +170733873925,441,0 +170733873973,441,0 +170733874021,441,0 +170733874069,441,0 +170733874117,441,0 +170733874165,440,0 +170733874214,307,1 +170733874298,435,0 +170733874348,441,0 +170733874396,441,0 +170733874445,441,0 +170733874493,441,0 +170733874541,441,0 +170733874591,441,0 +170733874639,441,0 +170733874688,441,0 +170733874736,441,0 +170733874784,441,0 +170733874832,441,0 +170733874882,441,0 +170733874931,441,0 +170733874979,441,0 +170733875027,440,0 +170733875075,440,0 +170733875123,441,0 +170733875171,441,0 +170733875221,441,0 +170733875269,267,0 +170733875317,286,1 +170733875398,441,0 +170733875446,441,0 +170733875494,441,0 +170733875542,441,0 +170733875589,441,0 +170733875637,441,0 +170733875685,441,0 +170733875733,441,0 +170733875781,441,0 +170733875829,441,0 +170733875877,441,0 +170733875927,441,0 +170733875976,441,0 +170733876024,441,0 +170733876072,441,0 +170733876120,441,0 +170733876168,441,0 +170733876218,441,0 +170733876267,440,0 +170733876315,295,1 +170733876405,439,0 +170733876452,441,0 +170733876500,441,0 +170733876548,441,0 +170733876596,441,0 +170733876644,441,0 +170733876692,441,0 +170733876740,441,0 +170733876788,441,0 +170733876836,441,0 +170733876883,441,0 +170733876931,441,0 +170733876979,441,0 +170733877027,441,0 +170733877075,441,0 +170733877125,441,0 +170733877173,441,0 +170733877221,441,0 +170733877270,440,0 +170733877318,440,0 +170733877367,302,1 +170733877461,440,0 +170733877509,441,0 +170733877558,441,0 +170733877606,441,0 +170733877654,441,0 +170733877702,441,0 +170733877750,441,0 +170733877798,441,0 +170733877846,441,0 +170733877894,441,0 +170733877942,441,0 +170733877990,441,0 +170733878038,441,0 +170733878086,441,0 +170733878134,441,0 +170733878182,441,0 +170733878230,441,0 +170733878278,441,0 +170733878327,441,0 +170733878377,277,1 +170733878471,256,0 +170733878519,440,0 +170733878567,441,0 +170733878615,441,0 +170733878663,441,0 +170733878711,441,0 +170733878759,441,0 +170733878808,441,0 +170733878856,441,0 +170733878904,441,0 +170733878954,441,0 +170733879002,441,0 +170733879050,441,0 +170733879098,441,0 +170733879146,441,0 +170733879194,441,0 +170733879243,441,0 +170733879293,441,0 +170733879342,441,0 +170733879392,440,0 +170733879440,296,1 +170733879523,235,0 +170733879571,441,0 +170733879621,441,0 +170733879670,441,0 +170733879718,441,0 +170733879766,441,0 +170733879816,441,0 +170733879864,441,0 +170733879912,441,0 +170733879961,441,0 +170733880009,441,0 +170733880057,441,0 +170733880107,441,0 +170733880155,441,0 +170733880204,441,0 +170733880252,441,0 +170733880300,441,0 +170733880348,441,0 +170733880396,441,0 +170733880444,440,0 +170733880492,301,1 +170733880573,430,0 +170733880621,441,0 +170733880669,441,0 +170733880719,441,0 +170733880767,441,0 +170733880815,440,0 +170733880863,441,0 +170733880911,441,0 +170733880959,441,0 +170733881007,441,0 +170733881056,441,0 +170733881106,441,0 +170733881154,441,0 +170733881203,441,0 +170733881251,441,0 +170733881299,441,0 +170733881347,441,0 +170733881396,441,0 +170733881444,441,0 +170733881492,440,0 +170733881540,297,1 +170733881631,422,0 +170733881680,441,0 +170733881728,441,0 +170733881776,441,0 +170733881824,441,0 +170733881874,441,0 +170733881923,441,0 +170733881971,441,0 +170733882020,441,0 +170733882068,441,0 +170733882116,441,0 +170733882164,441,0 +170733882214,441,0 +170733882262,441,0 +170733882311,441,0 +170733882359,441,0 +170733882407,441,0 +170733882455,441,0 +170733882503,440,0 +170733882551,440,0 +170733882599,305,1 +170733882684,436,0 +170733882734,441,0 +170733882782,441,0 +170733882830,441,0 +170733882879,441,0 +170733882927,441,0 +170733882975,441,0 +170733883025,440,0 +170733883073,441,0 +170733883122,441,0 +170733883172,441,0 +170733883220,441,0 +170733883268,441,0 +170733883316,441,0 +170733883364,441,0 +170733883412,441,0 +170733883460,441,0 +170733883508,440,0 +170733883557,441,0 +170733883607,440,0 +170733883655,300,1 +170733883740,437,0 +170733883788,441,0 +170733883836,441,0 +170733883885,441,0 +170733883933,441,0 +170733883982,441,0 +170733884032,441,0 +170733884080,440,0 +170733884128,441,0 +170733884176,441,0 +170733884225,441,0 +170733884275,441,0 +170733884324,441,0 +170733884372,441,0 +170733884420,441,0 +170733884468,441,0 +170733884516,441,0 +170733884564,441,0 +170733884614,440,0 +170733884663,325,0 +170733884711,305,1 +170733884796,439,0 +170733884845,441,0 +170733884895,441,0 +170733884943,441,0 +170733884991,441,0 +170733885039,441,0 +170733885088,441,0 +170733885136,441,0 +170733885186,441,0 +170733885234,441,0 +170733885282,441,0 +170733885330,441,0 +170733885379,441,0 +170733885429,441,0 +170733885477,441,0 +170733885526,441,0 +170733885574,441,0 +170733885624,441,0 +170733885672,440,0 +170733885720,302,1 +170733885802,263,0 +170733885850,440,0 +170733885900,440,0 +170733885948,441,0 +170733885997,441,0 +170733886047,441,0 +170733886095,441,0 +170733886143,441,0 +170733886191,441,0 +170733886241,441,0 +170733886288,441,0 +170733886338,441,0 +170733886386,441,0 +170733886434,441,0 +170733886482,441,0 +170733886530,441,0 +170733886578,441,0 +170733886627,441,0 +170733886675,441,0 +170733886723,441,0 +170733886773,296,1 +170733886857,262,0 +170733886906,440,0 +170733886954,441,0 +170733887002,441,0 +170733887050,441,0 +170733887098,441,0 +170733887147,441,0 +170733887197,440,0 +170733887245,441,0 +170733887294,441,0 +170733887342,441,0 +170733887390,441,0 +170733887440,441,0 +170733887488,441,0 +170733887537,441,0 +170733887587,441,0 +170733887635,441,0 +170733887683,441,0 +170733887731,441,0 +170733887778,441,0 +170733887826,292,1 +170733887910,232,0 +170733887958,440,0 +170733888008,441,0 +170733888056,441,0 +170733888104,441,0 +170733888152,441,0 +170733888200,441,0 +170733888248,440,0 +170733888297,441,0 +170733888345,440,0 +170733888395,441,0 +170733888444,441,0 +170733888492,441,0 +170733888542,441,0 +170733888590,441,0 +170733888638,441,0 +170733888687,441,0 +170733888737,441,0 +170733888785,441,0 +170733888833,440,0 +170733888882,312,0 +170733888930,311,0 +170733888980,437,0 +170733889028,440,0 +170733889077,441,0 +170733889127,441,0 +170733889176,441,0 +170733889224,441,0 +170733889272,441,0 +170733889322,441,0 +170733889371,441,0 +170733889419,441,0 +170733889469,441,0 +170733889517,441,0 +170733889566,441,0 +170733889616,441,0 +170733889664,441,0 +170733889712,441,0 +170733889761,441,0 +170733889809,441,0 +170733889857,441,0 +170733889905,440,0 +170733889953,284,1 +170733890036,437,0 +170733890085,441,0 +170733890135,441,0 +170733890184,441,0 +170733890232,441,0 +170733890280,441,0 +170733890328,441,0 +170733890378,441,0 +170733890426,440,0 +170733890475,441,0 +170733890523,441,0 +170733890571,441,0 +170733890619,441,0 +170733890667,441,0 +170733890715,441,0 +170733890763,441,0 +170733890811,441,0 +170733890859,441,0 +170733890908,441,0 +170733890958,439,0 +170733891008,306,1 +170733891102,440,0 +170733891152,441,0 +170733891200,441,0 +170733891249,441,0 +170733891297,441,0 +170733891345,441,0 +170733891393,441,0 +170733891441,441,0 +170733891490,441,0 +170733891538,441,0 +170733891588,441,0 +170733891637,441,0 +170733891685,441,0 +170733891733,441,0 +170733891781,441,0 +170733891829,441,0 +170733891879,441,0 +170733891927,441,0 +170733891975,441,0 +170733892023,300,1 +170733892110,241,0 +170733892159,440,0 +170733892209,441,0 +170733892258,441,0 +170733892308,441,0 +170733892355,441,0 +170733892405,441,0 +170733892453,441,0 +170733892501,441,0 +170733892549,441,0 +170733892598,441,0 +170733892646,441,0 +170733892696,441,0 +170733892744,441,0 +170733892792,441,0 +170733892840,441,0 +170733892888,441,0 +170733892936,441,0 +170733892984,440,0 +170733893032,440,0 +170733893080,311,0 +170733893128,310,0 +170733893177,437,0 +170733893227,441,0 +170733893275,441,0 +170733893324,441,0 +170733893374,441,0 +170733893423,441,0 +170733893471,441,0 +170733893519,441,0 +170733893567,441,0 +170733893617,441,0 +170733893666,441,0 +170733893716,441,0 +170733893764,441,0 +170733893813,441,0 +170733893861,441,0 +170733893909,441,0 +170733893957,441,0 +170733894005,441,0 +170733894055,441,0 +170733894103,440,0 +170733894151,295,1 +170733894239,439,0 +170733894288,441,0 +170733894336,441,0 +170733894384,441,0 +170733894432,441,0 +170733894480,441,0 +170733894530,441,0 +170733894578,441,0 +170733894625,441,0 +170733894673,441,0 +170733894721,441,0 +170733894769,441,0 +170733894817,441,0 +170733894865,441,0 +170733894915,441,0 +170733894964,441,0 +170733895012,441,0 +170733895060,441,0 +170733895110,440,0 +170733895158,278,1 +170733895242,300,1 +170733895322,441,0 +170733895372,441,0 +170733895420,441,0 +170733895469,441,0 +170733895517,441,0 +170733895565,441,0 +170733895615,441,0 +170733895663,441,0 +170733895712,441,0 +170733895760,441,0 +170733895808,441,0 +170733895856,441,0 +170733895906,441,0 +170733895954,441,0 +170733896002,441,0 +170733896050,441,0 +170733896098,441,0 +170733896146,441,0 +170733896195,440,0 +170733896245,311,0 +170733896293,314,0 +170733896342,439,0 +170733896390,441,0 +170733896438,441,0 +170733896486,441,0 +170733896536,441,0 +170733896584,441,0 +170733896632,441,0 +170733896680,441,0 +170733896727,441,0 +170733896777,441,0 +170733896825,441,0 +170733896874,441,0 +170733896922,441,0 +170733896970,441,0 +170733897018,441,0 +170733897066,441,0 +170733897114,441,0 +170733897162,441,0 +170733897210,441,0 +170733897258,412,0 +170733897305,306,1 +170733897387,439,0 +170733897435,441,0 +170733897483,441,0 +170733897531,441,0 +170733897579,441,0 +170733897627,441,0 +170733897675,441,0 +170733897724,441,0 +170733897774,441,0 +170733897822,441,0 +170733897870,441,0 +170733897919,441,0 +170733897967,441,0 +170733898015,441,0 +170733898063,441,0 +170733898111,441,0 +170733898160,441,0 +170733898208,441,0 +170733898256,441,0 +170733898304,439,0 +170733898354,294,1 +170733898435,439,0 +170733898483,441,0 +170733898531,441,0 +170733898579,441,0 +170733898628,441,0 +170733898676,441,0 +170733898726,441,0 +170733898774,441,0 +170733898823,441,0 +170733898871,441,0 +170733898919,441,0 +170733898967,441,0 +170733899017,441,0 +170733899066,441,0 +170733899114,441,0 +170733899164,441,0 +170733899211,441,0 +170733899261,441,0 +170733899309,441,0 +170733899358,306,1 +170733899449,242,0 +170733899497,440,0 +170733899546,441,0 +170733899594,441,0 +170733899642,441,0 +170733899690,441,0 +170733899738,441,0 +170733899786,441,0 +170733899834,441,0 +170733899882,441,0 +170733899931,441,0 +170733899979,441,0 +170733900027,441,0 +170733900075,441,0 +170733900124,441,0 +170733900172,441,0 +170733900222,441,0 +170733900271,441,0 +170733900321,441,0 +170733900369,440,0 +170733900417,299,1 +170733900504,235,0 +170733900552,440,0 +170733900600,440,0 +170733900648,441,0 +170733900697,441,0 +170733900745,441,0 +170733900793,441,0 +170733900841,441,0 +170733900889,441,0 +170733900937,441,0 +170733900985,441,0 +170733901033,441,0 +170733901081,441,0 +170733901129,441,0 +170733901179,441,0 +170733901227,440,0 +170733901275,441,0 +170733901324,441,0 +170733901374,441,0 +170733901422,440,0 +170733901470,303,1 +170733901560,431,0 +170733901609,441,0 +170733901657,441,0 +170733901707,441,0 +170733901755,441,0 +170733901803,441,0 +170733901851,441,0 +170733901899,441,0 +170733901947,440,0 +170733901995,441,0 +170733902043,441,0 +170733902090,441,0 +170733902140,441,0 +170733902188,441,0 +170733902237,441,0 +170733902285,441,0 +170733902333,441,0 +170733902381,441,0 +170733902429,441,0 +170733902477,440,0 +170733902525,313,0 +170733902573,310,0 +170733902621,438,0 +170733902671,441,0 +170733902719,441,0 +170733902767,441,0 +170733902816,441,0 +170733902864,441,0 +170733902913,441,0 +170733902963,441,0 +170733903011,441,0 +170733903060,441,0 +170733903108,441,0 +170733903156,441,0 +170733903206,441,0 +170733903255,441,0 +170733903303,441,0 +170733903351,441,0 +170733903401,441,0 +170733903450,441,0 +170733903500,440,0 +170733903549,407,0 +170733903597,295,1 +170733903686,440,0 +170733903736,440,0 +170733903784,441,0 +170733903832,440,0 +170733903881,441,0 +170733903931,441,0 +170733903979,440,0 +170733904027,440,0 +170733904075,441,0 +170733904123,441,0 +170733904172,441,0 +170733904220,441,0 +170733904268,441,0 +170733904317,441,0 +170733904365,441,0 +170733904413,441,0 +170733904463,440,0 +170733904511,441,0 +170733904559,440,0 +170733904607,438,0 +170733904655,299,1 +170733904748,440,0 +170733904798,441,0 +170733904845,441,0 +170733904893,440,0 +170733904941,441,0 +170733904989,441,0 +170733905037,441,0 +170733905085,441,0 +170733905133,440,0 +170733905182,441,0 +170733905230,441,0 +170733905278,441,0 +170733905326,441,0 +170733905374,441,0 +170733905422,441,0 +170733905470,441,0 +170733905518,441,0 +170733905567,440,0 +170733905615,440,0 +170733905664,306,1 +170733905744,268,0 +170733905792,440,0 +170733905840,441,0 +170733905888,441,0 +170733905936,441,0 +170733905985,441,0 +170733906033,441,0 +170733906083,441,0 +170733906131,441,0 +170733906179,441,0 +170733906227,441,0 +170733906275,441,0 +170733906322,441,0 +170733906370,441,0 +170733906418,441,0 +170733906466,441,0 +170733906514,440,0 +170733906562,441,0 +170733906610,441,0 +170733906658,440,0 +170733906706,303,1 +170733906790,259,0 +170733906838,440,0 +170733906886,440,0 +170733906935,441,0 +170733906983,441,0 +170733907033,441,0 +170733907082,441,0 +170733907131,441,0 +170733907181,441,0 +170733907229,440,0 +170733907277,441,0 +170733907325,441,0 +170733907373,441,0 +170733907422,441,0 +170733907470,441,0 +170733907518,441,0 +170733907568,440,0 +170733907616,440,0 +170733907664,441,0 +170733907713,440,0 +170733907761,286,1 +170733907846,246,0 +170733907896,440,0 +170733907943,441,0 +170733907991,441,0 +170733908039,441,0 +170733908087,441,0 +170733908135,441,0 +170733908183,441,0 +170733908231,441,0 +170733908280,440,0 +170733908328,441,0 +170733908378,440,0 +170733908426,441,0 +170733908475,441,0 +170733908525,440,0 +170733908574,441,0 +170733908624,441,0 +170733908673,441,0 +170733908723,441,0 +170733908771,440,0 +170733908819,285,1 +170733908908,432,0 +170733908957,441,0 +170733909007,441,0 +170733909055,441,0 +170733909103,440,0 +170733909151,441,0 +170733909198,441,0 +170733909246,441,0 +170733909294,441,0 +170733909344,441,0 +170733909392,441,0 +170733909440,441,0 +170733909488,440,0 +170733909537,441,0 +170733909585,441,0 +170733909633,441,0 +170733909681,441,0 +170733909729,441,0 +170733909777,441,0 +170733909825,440,0 +170733909873,306,1 +170733909956,437,0 +170733910006,441,0 +170733910055,441,0 +170733910105,441,0 +170733910153,441,0 +170733910201,441,0 +170733910249,441,0 +170733910298,440,0 +170733910346,441,0 +170733910394,441,0 +170733910442,441,0 +170733910490,441,0 +170733910539,441,0 +170733910587,441,0 +170733910635,441,0 +170733910683,441,0 +170733910731,440,0 +170733910779,441,0 +170733910827,441,0 +170733910877,440,0 +170733910925,310,0 +170733910973,302,1 +170733911055,441,0 +170733911104,441,0 +170733911152,441,0 +170733911202,440,0 +170733911250,441,0 +170733911299,441,0 +170733911349,441,0 +170733911397,441,0 +170733911445,441,0 +170733911493,441,0 +170733911541,441,0 +170733911590,441,0 +170733911638,441,0 +170733911686,441,0 +170733911736,441,0 +170733911785,441,0 +170733911833,441,0 +170733911881,440,0 +170733911929,440,0 +170733911979,280,1 +170733912064,435,0 +170733912114,440,0 +170733912162,440,0 +170733912210,440,0 +170733912258,440,0 +170733912306,441,0 +170733912354,440,0 +170733912402,440,0 +170733912451,441,0 +170733912499,440,0 +170733912547,441,0 +170733912595,441,0 +170733912645,441,0 +170733912693,441,0 +170733912741,440,0 +170733912789,440,0 +170733912837,440,0 +170733912885,440,0 +170733912933,440,0 +170733912981,440,0 +170733913028,280,1 +170733913112,437,0 +170733913160,441,0 +170733913209,440,0 +170733913257,440,0 +170733913305,441,0 +170733913355,440,0 +170733913403,441,0 +170733913451,440,0 +170733913499,440,0 +170733913547,440,0 +170733913596,441,0 +170733913644,441,0 +170733913692,440,0 +170733913740,440,0 +170733913789,441,0 +170733913837,440,0 +170733913887,441,0 +170733913936,441,0 +170733913984,441,0 +170733914032,440,0 +170733914080,307,1 +170733914163,437,0 +170733914211,440,0 +170733914259,441,0 +170733914307,440,0 +170733914356,440,0 +170733914406,441,0 +170733914454,441,0 +170733914501,440,0 +170733914549,441,0 +170733914597,441,0 +170733914645,441,0 +170733914695,440,0 +170733914743,441,0 +170733914790,440,0 +170733914840,440,0 +170733914889,441,0 +170733914937,440,0 +170733914985,440,0 +170733915033,440,0 +170733915081,440,0 +170733915129,286,1 +170733915205,434,0 +170733915253,440,0 +170733915301,441,0 +170733915350,440,0 +170733915398,441,0 +170733915446,441,0 +170733915494,441,0 +170733915542,440,0 +170733915590,440,0 +170733915638,440,0 +170733915687,441,0 +170733915737,441,0 +170733915785,441,0 +170733915833,440,0 +170733915882,441,0 +170733915930,440,0 +170733915978,441,0 +170733916026,440,0 +170733916073,440,0 +170733916121,440,0 +170733916169,284,1 +170733916254,435,0 +170733916302,441,0 +170733916350,441,0 +170733916398,441,0 +170733916447,441,0 +170733916495,440,0 +170733916543,441,0 +170733916591,440,0 +170733916639,440,0 +170733916687,441,0 +170733916735,440,0 +170733916783,440,0 +170733916831,441,0 +170733916879,441,0 +170733916926,441,0 +170733916976,440,0 +170733917024,440,0 +170733917072,441,0 +170733917119,440,0 +170733917167,440,0 +170733917215,296,1 +170733917303,437,0 +170733917353,441,0 +170733917402,440,0 +170733917450,440,0 +170733917500,440,0 +170733917549,440,0 +170733917597,440,0 +170733917645,440,0 +170733917693,440,0 +170733917741,440,0 +170733917789,440,0 +170733917836,441,0 +170733917884,441,0 +170733917932,440,0 +170733917980,441,0 +170733918030,441,0 +170733918079,440,0 +170733918127,441,0 +170733918175,440,0 +170733918223,440,0 +170733918271,301,1 +170733918351,435,0 +170733918399,440,0 +170733918447,440,0 +170733918495,440,0 +170733918542,441,0 +170733918590,441,0 +170733918638,440,0 +170733918686,440,0 +170733918734,440,0 +170733918782,441,0 +170733918830,441,0 +170733918877,441,0 +170733918927,440,0 +170733918975,440,0 +170733919023,440,0 +170733919071,441,0 +170733919120,440,0 +170733919168,441,0 +170733919216,441,0 +170733919264,440,0 +170733919312,299,1 +170733919398,432,0 +170733919446,440,0 +170733919494,441,0 +170733919542,440,0 +170733919590,441,0 +170733919637,440,0 +170733919685,440,0 +170733919733,441,0 +170733919781,441,0 +170733919831,440,0 +170733919878,441,0 +170733919926,440,0 +170733919974,441,0 +170733920022,441,0 +170733920072,441,0 +170733920120,440,0 +170733920168,441,0 +170733920216,441,0 +170733920263,440,0 +170733920311,440,0 +170733920359,314,0 +170733920407,300,1 +170733920494,440,0 +170733920543,440,0 +170733920591,441,0 +170733920639,441,0 +170733920687,440,0 +170733920735,441,0 +170733920783,441,0 +170733920831,441,0 +170733920880,441,0 +170733920928,441,0 +170733920976,441,0 +170733921026,441,0 +170733921074,441,0 +170733921122,440,0 +170733921171,441,0 +170733921219,441,0 +170733921269,441,0 +170733921317,440,0 +170733921366,440,0 +170733921414,311,0 +170733921464,309,1 +170733921549,440,0 +170733921599,440,0 +170733921646,441,0 +170733921696,440,0 +170733921746,440,0 +170733921793,441,0 +170733921843,440,0 +170733921891,440,0 +170733921939,441,0 +170733921988,441,0 +170733922038,441,0 +170733922086,441,0 +170733922135,441,0 +170733922185,440,0 +170733922234,441,0 +170733922282,440,0 +170733922332,440,0 +170733922381,441,0 +170733922431,419,0 +170733922479,300,1 +170733922555,437,0 +170733922603,441,0 +170733922651,440,0 +170733922699,441,0 +170733922749,441,0 +170733922797,441,0 +170733922845,440,0 +170733922894,441,0 +170733922942,440,0 +170733922990,441,0 +170733923038,440,0 +170733923087,440,0 +170733923135,441,0 +170733923183,440,0 +170733923231,440,0 +170733923281,441,0 +170733923329,441,0 +170733923377,441,0 +170733923425,440,0 +170733923473,440,0 +170733923521,304,1 +170733923598,435,0 +170733923646,440,0 +170733923694,440,0 +170733923742,440,0 +170733923792,441,0 +170733923840,441,0 +170733923888,441,0 +170733923936,440,0 +170733923984,441,0 +170733924033,441,0 +170733924083,441,0 +170733924131,441,0 +170733924180,441,0 +170733924228,441,0 +170733924276,441,0 +170733924326,440,0 +170733924375,441,0 +170733924425,441,0 +170733924473,440,0 +170733924520,440,0 +170733924568,300,1 +170733924652,437,0 +170733924700,441,0 +170733924748,441,0 +170733924796,441,0 +170733924844,441,0 +170733924892,441,0 +170733924941,440,0 +170733924989,441,0 +170733925037,441,0 +170733925085,440,0 +170733925135,441,0 +170733925183,441,0 +170733925231,441,0 +170733925279,440,0 +170733925327,441,0 +170733925376,441,0 +170733925424,441,0 +170733925474,441,0 +170733925522,441,0 +170733925570,439,0 +170733925619,303,1 +170733925704,438,0 +170733925752,441,0 +170733925802,440,0 +170733925850,441,0 +170733925898,441,0 +170733925946,441,0 +170733925994,440,0 +170733926042,441,0 +170733926090,440,0 +170733926138,441,0 +170733926186,441,0 +170733926234,441,0 +170733926281,441,0 +170733926329,441,0 +170733926377,441,0 +170733926427,440,0 +170733926475,441,0 +170733926523,441,0 +170733926571,441,0 +170733926620,440,0 +170733926668,298,1 +170733926749,438,0 +170733926799,440,0 +170733926847,441,0 +170733926895,440,0 +170733926942,441,0 +170733926992,441,0 +170733927040,440,0 +170733927090,441,0 +170733927137,441,0 +170733927187,441,0 +170733927235,441,0 +170733927283,441,0 +170733927331,441,0 +170733927379,441,0 +170733927427,440,0 +170733927475,441,0 +170733927523,441,0 +170733927571,441,0 +170733927619,441,0 +170733927667,440,0 +170733927716,306,1 +170733927802,436,0 +170733927850,440,0 +170733927900,441,0 +170733927949,441,0 +170733927997,441,0 +170733928045,441,0 +170733928093,441,0 +170733928141,441,0 +170733928191,441,0 +170733928239,440,0 +170733928287,440,0 +170733928336,441,0 +170733928384,441,0 +170733928432,441,0 +170733928482,440,0 +170733928531,441,0 +170733928579,441,0 +170733928627,440,0 +170733928675,441,0 +170733928723,285,1 +170733928805,278,1 +170733928885,441,0 +170733928933,440,0 +170733928981,441,0 +170733929028,441,0 +170733929076,440,0 +170733929124,441,0 +170733929172,440,0 +170733929220,441,0 +170733929268,441,0 +170733929316,441,0 +170733929366,441,0 +170733929414,441,0 +170733929462,441,0 +170733929511,441,0 +170733929559,440,0 +170733929607,441,0 +170733929655,441,0 +170733929705,440,0 +170733929754,440,0 +170733929804,293,1 +170733929887,434,0 +170733929935,440,0 +170733929985,441,0 +170733930032,441,0 +170733930080,441,0 +170733930128,441,0 +170733930178,441,0 +170733930226,441,0 +170733930274,441,0 +170733930322,441,0 +170733930370,440,0 +170733930418,441,0 +170733930467,441,0 +170733930515,441,0 +170733930563,440,0 +170733930613,441,0 +170733930662,441,0 +170733930712,441,0 +170733930761,441,0 +170733930811,440,0 +170733930859,284,1 +170733930942,436,0 +170733930992,441,0 +170733931040,441,0 +170733931088,440,0 +170733931136,441,0 +170733931184,441,0 +170733931233,441,0 +170733931281,441,0 +170733931329,441,0 +170733931377,441,0 +170733931425,440,0 +170733931473,441,0 +170733931521,441,0 +170733931569,441,0 +170733931617,441,0 +170733931665,441,0 +170733931713,440,0 +170733931761,441,0 +170733931809,440,0 +170733931857,440,0 +170733931906,293,1 +170733931995,438,0 +170733932042,441,0 +170733932092,440,0 +170733932140,441,0 +170733932188,441,0 +170733932236,441,0 +170733932284,441,0 +170733932332,441,0 +170733932381,441,0 +170733932431,441,0 +170733932480,440,0 +170733932528,441,0 +170733932578,441,0 +170733932626,441,0 +170733932674,441,0 +170733932722,441,0 +170733932770,440,0 +170733932818,441,0 +170733932867,440,0 +170733932917,431,0 +170733932965,301,1 +170733933048,439,0 +170733933097,441,0 +170733933147,441,0 +170733933195,441,0 +170733933243,441,0 +170733933291,441,0 +170733933339,441,0 +170733933387,440,0 +170733933435,441,0 +170733933483,441,0 +170733933531,441,0 +170733933579,441,0 +170733933628,441,0 +170733933676,440,0 +170733933726,441,0 +170733933775,440,0 +170733933825,440,0 +170733933875,441,0 +170733933922,440,0 +170733933972,439,0 +170733934021,299,1 +170733934108,439,0 +170733934156,441,0 +170733934204,440,0 +170733934254,441,0 +170733934302,441,0 +170733934351,440,0 +170733934399,441,0 +170733934449,440,0 +170733934497,441,0 +170733934545,441,0 +170733934594,440,0 +170733934642,441,0 +170733934692,441,0 +170733934740,441,0 +170733934788,440,0 +170733934837,441,0 +170733934885,441,0 +170733934933,440,0 +170733934981,440,0 +170733935031,293,1 +170733935109,284,1 +170733935188,441,0 +170733935237,441,0 +170733935285,441,0 +170733935333,440,0 +170733935381,441,0 +170733935429,441,0 +170733935479,441,0 +170733935528,441,0 +170733935576,441,0 +170733935624,440,0 +170733935674,441,0 +170733935722,441,0 +170733935770,441,0 +170733935818,441,0 +170733935866,441,0 +170733935915,441,0 +170733935963,441,0 +170733936011,434,0 +170733936059,221,0 +170733936107,255,0 +170733936155,245,0 +170733936203,440,0 +170733936251,441,0 +170733936299,441,0 +170733936348,441,0 +170733936396,441,0 +170733936444,441,0 +170733936492,441,0 +170733936540,441,0 +170733936590,441,0 +170733936638,441,0 +170733936686,441,0 +170733936734,441,0 +170733936782,441,0 +170733936831,441,0 +170733936879,441,0 +170733936927,441,0 +170733936977,441,0 +170733937026,441,0 +170733937074,441,0 +170733937122,286,1 +170733937208,259,0 +170733937256,441,0 +170733937303,441,0 +170733937351,441,0 +170733937401,441,0 +170733937451,441,0 +170733937500,441,0 +170733937548,441,0 +170733937596,441,0 +170733937646,441,0 +170733937695,441,0 +170733937743,441,0 +170733937791,441,0 +170733937839,441,0 +170733937887,441,0 +170733937935,441,0 +170733937984,441,0 +170733938032,441,0 +170733938080,441,0 +170733938128,441,0 +170733938176,293,1 +170733938263,245,0 +170733938311,441,0 +170733938359,441,0 +170733938407,441,0 +170733938457,441,0 +170733938505,441,0 +170733938552,441,0 +170733938600,441,0 +170733938648,441,0 +170733938696,441,0 +170733938745,441,0 +170733938795,441,0 +170733938843,441,0 +170733938892,441,0 +170733938940,441,0 +170733938988,441,0 +170733939038,441,0 +170733939086,441,0 +170733939134,441,0 +170733939183,441,0 +170733939231,295,1 +170733939319,438,0 +170733939367,441,0 +170733939415,441,0 +170733939465,441,0 +170733939513,441,0 +170733939562,441,0 +170733939610,441,0 +170733939658,441,0 +170733939706,441,0 +170733939756,441,0 +170733939805,441,0 +170733939853,441,0 +170733939903,441,0 +170733939951,441,0 +170733939998,441,0 +170733940046,441,0 +170733940094,441,0 +170733940144,441,0 +170733940192,441,0 +170733940242,441,0 +170733940290,305,1 +170733940373,438,0 +170733940426,441,0 +170733940475,441,0 +170733940525,441,0 +170733940573,441,0 +170733940621,441,0 +170733940670,441,0 +170733940718,441,0 +170733940766,441,0 +170733940814,441,0 +170733940864,441,0 +170733940912,441,0 +170733940960,441,0 +170733941008,441,0 +170733941057,441,0 +170733941105,441,0 +170733941153,441,0 +170733941203,441,0 +170733941252,441,0 +170733941300,441,0 +170733941348,292,1 +170733941434,439,0 +170733941483,441,0 +170733941531,441,0 +170733941579,441,0 +170733941628,441,0 +170733941676,441,0 +170733941726,441,0 +170733941774,441,0 +170733941822,441,0 +170733941869,441,0 +170733941919,441,0 +170733941968,441,0 +170733942016,441,0 +170733942066,441,0 +170733942114,441,0 +170733942162,441,0 +170733942210,441,0 +170733942257,441,0 +170733942305,441,0 +170733942353,440,0 +170733942401,291,1 +170733942492,440,0 +170733942540,441,0 +170733942587,441,0 +170733942635,441,0 +170733942683,441,0 +170733942731,441,0 +170733942779,441,0 +170733942827,441,0 +170733942875,441,0 +170733942925,441,0 +170733942974,441,0 +170733943022,441,0 +170733943071,441,0 +170733943119,441,0 +170733943167,441,0 +170733943215,441,0 +170733943263,441,0 +170733943311,441,0 +170733943359,441,0 +170733943409,299,1 +170733943491,286,1 +170733943570,441,0 +170733943618,441,0 +170733943667,441,0 +170733943717,441,0 +170733943765,441,0 +170733943813,441,0 +170733943861,441,0 +170733943909,441,0 +170733943958,441,0 +170733944008,441,0 +170733944056,441,0 +170733944104,441,0 +170733944152,441,0 +170733944200,441,0 +170733944248,441,0 +170733944296,441,0 +170733944343,441,0 +170733944391,441,0 +170733944439,440,0 +170733944487,295,1 +170733944571,438,0 +170733944621,441,0 +170733944669,441,0 +170733944717,441,0 +170733944765,441,0 +170733944814,441,0 +170733944862,441,0 +170733944910,441,0 +170733944958,441,0 +170733945008,441,0 +170733945056,441,0 +170733945105,441,0 +170733945155,441,0 +170733945204,441,0 +170733945252,441,0 +170733945300,441,0 +170733945350,441,0 +170733945399,441,0 +170733945447,441,0 +170733945497,440,0 +170733945546,294,1 +170733945631,439,0 +170733945679,441,0 +170733945728,441,0 +170733945776,441,0 +170733945826,441,0 +170733945874,441,0 +170733945922,441,0 +170733945971,441,0 +170733946021,441,0 +170733946069,441,0 +170733946117,441,0 +170733946165,441,0 +170733946213,441,0 +170733946262,441,0 +170733946312,441,0 +170733946360,441,0 +170733946408,441,0 +170733946456,441,0 +170733946504,441,0 +170733946552,427,0 +170733946601,290,1 +170733946697,441,0 +170733946746,441,0 +170733946794,441,0 +170733946844,441,0 +170733946891,441,0 +170733946939,441,0 +170733946987,441,0 +170733947035,441,0 +170733947085,441,0 +170733947133,441,0 +170733947180,441,0 +170733947228,441,0 +170733947276,441,0 +170733947324,441,0 +170733947372,441,0 +170733947420,441,0 +170733947468,441,0 +170733947516,441,0 +170733947564,441,0 +170733947613,291,1 +170733947699,341,0 +170733947747,441,0 +170733947795,441,0 +170733947844,441,0 +170733947894,441,0 +170733947944,441,0 +170733947993,441,0 +170733948041,441,0 +170733948089,441,0 +170733948138,441,0 +170733948186,441,0 +170733948234,441,0 +170733948284,441,0 +170733948332,441,0 +170733948380,441,0 +170733948429,441,0 +170733948477,441,0 +170733948525,441,0 +170733948573,441,0 +170733948621,441,0 +170733948671,293,1 +170733948752,434,0 +170733948800,441,0 +170733948848,441,0 +170733948896,441,0 +170733948944,441,0 +170733948992,441,0 +170733949040,441,0 +170733949088,441,0 +170733949136,441,0 +170733949184,441,0 +170733949233,441,0 +170733949283,441,0 +170733949331,441,0 +170733949379,441,0 +170733949427,441,0 +170733949475,441,0 +170733949523,441,0 +170733949570,441,0 +170733949618,441,0 +170733949668,441,0 +170733949717,299,1 +170733949798,230,0 +170733949846,441,0 +170733949896,441,0 +170733949944,441,0 +170733949993,441,0 +170733950041,441,0 +170733950089,441,0 +170733950137,441,0 +170733950185,441,0 +170733950233,441,0 +170733950281,441,0 +170733950331,441,0 +170733950380,441,0 +170733950428,441,0 +170733950478,441,0 +170733950526,441,0 +170733950574,441,0 +170733950622,441,0 +170733950670,441,0 +170733950717,441,0 +170733950765,288,1 +170733950856,438,0 +170733950905,441,0 +170733950953,441,0 +170733951001,441,0 +170733951049,441,0 +170733951097,441,0 +170733951145,441,0 +170733951193,441,0 +170733951241,441,0 +170733951290,441,0 +170733951340,441,0 +170733951388,441,0 +170733951436,441,0 +170733951484,441,0 +170733951532,441,0 +170733951580,441,0 +170733951628,441,0 +170733951676,441,0 +170733951724,441,0 +170733951773,441,0 +170733951821,286,1 +170733951904,438,0 +170733951953,441,0 +170733952003,441,0 +170733952051,441,0 +170733952100,441,0 +170733952148,441,0 +170733952198,441,0 +170733952246,441,0 +170733952294,441,0 +170733952342,441,0 +170733952389,441,0 +170733952439,441,0 +170733952487,441,0 +170733952536,441,0 +170733952584,441,0 +170733952632,441,0 +170733952682,441,0 +170733952732,441,0 +170733952779,441,0 +170733952827,441,0 +170733952875,300,1 +170733952959,438,0 +170733953007,441,0 +170733953055,441,0 +170733953105,441,0 +170733953153,441,0 +170733953201,441,0 +170733953249,441,0 +170733953297,441,0 +170733953346,441,0 +170733953396,441,0 +170733953444,441,0 +170733953492,441,0 +170733953541,441,0 +170733953589,441,0 +170733953637,441,0 +170733953687,441,0 +170733953735,441,0 +170733953783,441,0 +170733953831,441,0 +170733953878,269,0 +170733953928,297,1 +170733954004,439,0 +170733954054,441,0 +170733954103,441,0 +170733954151,441,0 +170733954199,441,0 +170733954247,441,0 +170733954295,441,0 +170733954345,441,0 +170733954394,441,0 +170733954442,441,0 +170733954490,441,0 +170733954540,441,0 +170733954589,441,0 +170733954637,441,0 +170733954685,441,0 +170733954733,441,0 +170733954781,441,0 +170733954829,441,0 +170733954877,441,0 +170733954924,441,0 +170733954972,294,1 +170733955060,439,0 +170733955107,441,0 +170733955155,441,0 +170733955205,441,0 +170733955253,441,0 +170733955300,441,0 +170733955348,441,0 +170733955396,441,0 +170733955444,441,0 +170733955492,441,0 +170733955540,441,0 +170733955588,441,0 +170733955636,441,0 +170733955684,441,0 +170733955731,441,0 +170733955779,441,0 +170733955827,441,0 +170733955875,441,0 +170733955925,441,0 +170733955973,441,0 +170733956021,289,1 +170733956102,438,0 +170733956149,441,0 +170733956197,441,0 +170733956247,441,0 +170733956295,441,0 +170733956344,441,0 +170733956392,441,0 +170733956440,441,0 +170733956488,441,0 +170733956536,441,0 +170733956584,441,0 +170733956632,441,0 +170733956680,441,0 +170733956728,441,0 +170733956776,441,0 +170733956823,441,0 +170733956871,441,0 +170733956919,441,0 +170733956967,441,0 +170733957015,441,0 +170733957063,275,1 +170733957146,437,0 +170733957194,441,0 +170733957242,441,0 +170733957290,441,0 +170733957338,441,0 +170733957386,441,0 +170733957434,441,0 +170733957482,441,0 +170733957530,441,0 +170733957577,441,0 +170733957627,441,0 +170733957675,441,0 +170733957722,441,0 +170733957770,441,0 +170733957818,441,0 +170733957866,441,0 +170733957914,441,0 +170733957962,441,0 +170733958010,441,0 +170733958058,441,0 +170733958105,293,1 +170733958189,437,0 +170733958237,441,0 +170733958285,441,0 +170733958333,441,0 +170733958381,441,0 +170733958429,441,0 +170733958476,441,0 +170733958524,441,0 +170733958572,441,0 +170733958620,441,0 +170733958668,441,0 +170733958717,441,0 +170733958767,441,0 +170733958815,441,0 +170733958863,441,0 +170733958911,441,0 +170733958958,441,0 +170733959008,441,0 +170733959057,441,0 +170733959105,441,0 +170733959153,297,1 +170733959239,437,0 +170733959287,441,0 +170733959337,441,0 +170733959385,441,0 +170733959433,441,0 +170733959480,441,0 +170733959528,441,0 +170733959576,441,0 +170733959626,441,0 +170733959674,441,0 +170733959723,441,0 +170733959771,441,0 +170733959821,441,0 +170733959868,441,0 +170733959916,441,0 +170733959964,441,0 +170733960012,441,0 diff --git a/laser_value/0208-07.csv b/laser_value/0208-07.csv new file mode 100644 index 0000000..8ee6acb --- /dev/null +++ b/laser_value/0208-07.csv @@ -0,0 +1,7162 @@ +timestamp,laser_value,event +170733960061,441,0 +170733960109,441,0 +170733960157,441,0 +170733960205,291,1 +170733960302,439,0 +170733960350,441,0 +170733960398,441,0 +170733960446,441,0 +170733960494,441,0 +170733960542,441,0 +170733960591,441,0 +170733960641,441,0 +170733960689,441,0 +170733960737,441,0 +170733960785,441,0 +170733960834,441,0 +170733960882,441,0 +170733960931,441,0 +170733960981,441,0 +170733961029,441,0 +170733961078,441,0 +170733961126,441,0 +170733961174,441,0 +170733961222,305,1 +170733961304,288,1 +170733961388,441,0 +170733961436,441,0 +170733961485,441,0 +170733961535,441,0 +170733961584,441,0 +170733961632,441,0 +170733961680,441,0 +170733961728,441,0 +170733961776,441,0 +170733961825,441,0 +170733961875,441,0 +170733961923,441,0 +170733961972,441,0 +170733962022,441,0 +170733962070,441,0 +170733962118,441,0 +170733962165,441,0 +170733962215,441,0 +170733962263,441,0 +170733962311,299,1 +170733962395,438,0 +170733962443,441,0 +170733962490,441,0 +170733962538,441,0 +170733962586,441,0 +170733962634,441,0 +170733962682,441,0 +170733962731,441,0 +170733962779,441,0 +170733962827,441,0 +170733962875,441,0 +170733962923,441,0 +170733962971,441,0 +170733963019,441,0 +170733963067,441,0 +170733963115,441,0 +170733963162,441,0 +170733963212,441,0 +170733963260,441,0 +170733963308,441,0 +170733963356,305,1 +170733963448,439,0 +170733963498,441,0 +170733963545,441,0 +170733963593,441,0 +170733963641,441,0 +170733963691,441,0 +170733963739,441,0 +170733963787,441,0 +170733963836,441,0 +170733963884,441,0 +170733963932,441,0 +170733963980,441,0 +170733964028,441,0 +170733964075,441,0 +170733964125,441,0 +170733964173,441,0 +170733964221,441,0 +170733964270,441,0 +170733964318,441,0 +170733964366,441,0 +170733964415,441,0 +170733964465,441,0 +170733964513,441,0 +170733964561,441,0 +170733964609,441,0 +170733964657,441,0 +170733964705,441,0 +170733964752,441,0 +170733964800,441,0 +170733964848,441,0 +170733964896,298,1 +170733964977,272,1 +170733965062,441,0 +170733965111,441,0 +170733965159,441,0 +170733965208,441,0 +170733965256,441,0 +170733965306,441,0 +170733965354,441,0 +170733965402,441,0 +170733965451,441,0 +170733965499,441,0 +170733965549,441,0 +170733965597,441,0 +170733965646,441,0 +170733965696,441,0 +170733965744,441,0 +170733965793,441,0 +170733965841,441,0 +170733965889,441,0 +170733965939,351,0 +170733965987,286,1 +170733966065,439,0 +170733966115,441,0 +170733966163,441,0 +170733966212,441,0 +170733966260,441,0 +170733966308,441,0 +170733966356,441,0 +170733966406,441,0 +170733966455,441,0 +170733966503,441,0 +170733966551,441,0 +170733966599,441,0 +170733966647,441,0 +170733966697,441,0 +170733966746,441,0 +170733966794,441,0 +170733966842,441,0 +170733966890,441,0 +170733966938,441,0 +170733966987,434,0 +170733967037,304,1 +170733967118,440,0 +170733967166,441,0 +170733967214,441,0 +170733967264,441,0 +170733967312,441,0 +170733967361,441,0 +170733967409,441,0 +170733967457,441,0 +170733967505,441,0 +170733967553,441,0 +170733967601,441,0 +170733967649,441,0 +170733967697,441,0 +170733967745,441,0 +170733967794,441,0 +170733967842,441,0 +170733967892,441,0 +170733967940,441,0 +170733967989,441,0 +170733968037,295,1 +170733968129,257,0 +170733968177,441,0 +170733968225,441,0 +170733968273,441,0 +170733968321,441,0 +170733968370,441,0 +170733968418,441,0 +170733968466,441,0 +170733968514,441,0 +170733968562,441,0 +170733968611,441,0 +170733968659,441,0 +170733968707,441,0 +170733968757,441,0 +170733968806,441,0 +170733968856,441,0 +170733968904,441,0 +170733968952,441,0 +170733968999,441,0 +170733969049,441,0 +170733969097,314,0 +170733969145,295,1 +170733969230,441,0 +170733969278,441,0 +170733969328,441,0 +170733969377,441,0 +170733969425,441,0 +170733969475,441,0 +170733969523,441,0 +170733969571,441,0 +170733969619,441,0 +170733969668,441,0 +170733969716,441,0 +170733969765,441,0 +170733969813,441,0 +170733969863,441,0 +170733969912,441,0 +170733969962,441,0 +170733970010,441,0 +170733970058,441,0 +170733970106,441,0 +170733970155,301,1 +170733970239,391,0 +170733970288,441,0 +170733970336,441,0 +170733970384,441,0 +170733970432,441,0 +170733970482,441,0 +170733970530,441,0 +170733970579,441,0 +170733970627,441,0 +170733970677,441,0 +170733970725,441,0 +170733970774,441,0 +170733970822,441,0 +170733970870,441,0 +170733970918,441,0 +170733970966,441,0 +170733971015,441,0 +170733971065,441,0 +170733971113,441,0 +170733971161,441,0 +170733971209,307,1 +170733971292,437,0 +170733971345,441,0 +170733971394,441,0 +170733971442,441,0 +170733971492,441,0 +170733971540,441,0 +170733971589,441,0 +170733971637,441,0 +170733971685,441,0 +170733971735,441,0 +170733971783,441,0 +170733971831,441,0 +170733971879,441,0 +170733971928,441,0 +170733971976,441,0 +170733972026,441,0 +170733972073,441,0 +170733972123,441,0 +170733972171,441,0 +170733972219,440,0 +170733972268,293,1 +170733972357,440,0 +170733972405,441,0 +170733972453,441,0 +170733972502,441,0 +170733972550,441,0 +170733972598,441,0 +170733972648,441,0 +170733972696,441,0 +170733972745,441,0 +170733972793,441,0 +170733972843,441,0 +170733972891,441,0 +170733972939,441,0 +170733972988,441,0 +170733973038,441,0 +170733973086,441,0 +170733973134,441,0 +170733973182,441,0 +170733973230,441,0 +170733973278,300,1 +170733973366,245,0 +170733973413,441,0 +170733973461,441,0 +170733973511,441,0 +170733973559,441,0 +170733973607,441,0 +170733973656,441,0 +170733973704,441,0 +170733973754,441,0 +170733973802,441,0 +170733973850,441,0 +170733973898,441,0 +170733973946,441,0 +170733973995,441,0 +170733974043,441,0 +170733974091,441,0 +170733974141,441,0 +170733974189,441,0 +170733974238,441,0 +170733974286,441,0 +170733974334,307,1 +170733974413,269,0 +170733974461,440,0 +170733974509,441,0 +170733974558,441,0 +170733974606,441,0 +170733974654,441,0 +170733974702,441,0 +170733974751,441,0 +170733974799,441,0 +170733974847,441,0 +170733974895,441,0 +170733974943,441,0 +170733974991,441,0 +170733975039,441,0 +170733975087,441,0 +170733975137,441,0 +170733975184,441,0 +170733975232,441,0 +170733975280,441,0 +170733975328,441,0 +170733975378,308,1 +170733975466,255,0 +170733975514,441,0 +170733975562,441,0 +170733975610,441,0 +170733975659,441,0 +170733975707,441,0 +170733975755,441,0 +170733975803,441,0 +170733975852,441,0 +170733975902,441,0 +170733975950,441,0 +170733976000,441,0 +170733976048,441,0 +170733976096,441,0 +170733976145,441,0 +170733976193,441,0 +170733976241,441,0 +170733976289,441,0 +170733976339,441,0 +170733976386,441,0 +170733976434,301,1 +170733976521,421,0 +170733976569,441,0 +170733976617,441,0 +170733976665,441,0 +170733976714,441,0 +170733976762,441,0 +170733976810,441,0 +170733976858,441,0 +170733976908,441,0 +170733976956,441,0 +170733977004,441,0 +170733977053,441,0 +170733977101,441,0 +170733977149,441,0 +170733977197,441,0 +170733977245,441,0 +170733977293,441,0 +170733977341,441,0 +170733977391,441,0 +170733977440,441,0 +170733977490,303,1 +170733977576,239,0 +170733977624,441,0 +170733977672,441,0 +170733977720,441,0 +170733977768,441,0 +170733977818,441,0 +170733977867,441,0 +170733977917,441,0 +170733977965,441,0 +170733978012,441,0 +170733978060,441,0 +170733978110,441,0 +170733978158,441,0 +170733978206,441,0 +170733978255,441,0 +170733978303,441,0 +170733978351,441,0 +170733978401,441,0 +170733978450,441,0 +170733978500,441,0 +170733978548,275,1 +170733978631,437,0 +170733978679,441,0 +170733978727,441,0 +170733978777,441,0 +170733978825,441,0 +170733978872,441,0 +170733978920,441,0 +170733978970,441,0 +170733979019,441,0 +170733979067,441,0 +170733979117,441,0 +170733979165,441,0 +170733979213,441,0 +170733979262,441,0 +170733979310,441,0 +170733979360,441,0 +170733979409,441,0 +170733979459,441,0 +170733979509,441,0 +170733979556,440,0 +170733979606,297,1 +170733979691,440,0 +170733979739,441,0 +170733979788,441,0 +170733979838,441,0 +170733979887,441,0 +170733979937,441,0 +170733979985,441,0 +170733980033,441,0 +170733980082,441,0 +170733980132,441,0 +170733980180,441,0 +170733980228,441,0 +170733980276,441,0 +170733980323,441,0 +170733980371,441,0 +170733980419,441,0 +170733980467,441,0 +170733980515,441,0 +170733980565,441,0 +170733980614,432,0 +170733980662,304,1 +170733980745,439,0 +170733980793,441,0 +170733980840,441,0 +170733980888,441,0 +170733980938,441,0 +170733980986,441,0 +170733981034,441,0 +170733981082,441,0 +170733981132,441,0 +170733981179,441,0 +170733981227,441,0 +170733981275,441,0 +170733981323,441,0 +170733981371,441,0 +170733981419,441,0 +170733981469,441,0 +170733981518,441,0 +170733981566,441,0 +170733981614,441,0 +170733981664,290,1 +170733981751,255,0 +170733981801,441,0 +170733981850,441,0 +170733981898,441,0 +170733981946,441,0 +170733981994,441,0 +170733982042,441,0 +170733982090,441,0 +170733982138,441,0 +170733982186,441,0 +170733982234,441,0 +170733982282,441,0 +170733982332,441,0 +170733982379,441,0 +170733982427,441,0 +170733982477,441,0 +170733982525,441,0 +170733982573,441,0 +170733982622,441,0 +170733982670,441,0 +170733982718,302,1 +170733982800,254,0 +170733982848,441,0 +170733982898,441,0 +170733982947,441,0 +170733982995,441,0 +170733983043,441,0 +170733983091,441,0 +170733983139,441,0 +170733983187,441,0 +170733983235,441,0 +170733983285,441,0 +170733983333,441,0 +170733983381,441,0 +170733983430,441,0 +170733983478,441,0 +170733983526,441,0 +170733983574,441,0 +170733983622,441,0 +170733983671,441,0 +170733983721,441,0 +170733983770,300,1 +170733983853,237,0 +170733983901,441,0 +170733983949,441,0 +170733983997,441,0 +170733984046,441,0 +170733984094,441,0 +170733984142,441,0 +170733984190,441,0 +170733984238,441,0 +170733984286,441,0 +170733984334,441,0 +170733984381,441,0 +170733984429,441,0 +170733984477,441,0 +170733984525,441,0 +170733984573,441,0 +170733984621,441,0 +170733984671,441,0 +170733984720,441,0 +170733984770,441,0 +170733984818,293,1 +170733984909,253,0 +170733984957,441,0 +170733985005,441,0 +170733985053,441,0 +170733985101,441,0 +170733985149,441,0 +170733985198,441,0 +170733985246,441,0 +170733985294,441,0 +170733985342,441,0 +170733985391,441,0 +170733985439,441,0 +170733985487,441,0 +170733985537,441,0 +170733985585,441,0 +170733985633,441,0 +170733985682,441,0 +170733985730,441,0 +170733985780,441,0 +170733985828,441,0 +170733985877,297,1 +170733985961,232,0 +170733986009,441,0 +170733986057,441,0 +170733986105,441,0 +170733986153,441,0 +170733986203,441,0 +170733986251,441,0 +170733986299,441,0 +170733986347,441,0 +170733986396,441,0 +170733986444,441,0 +170733986492,441,0 +170733986540,441,0 +170733986588,441,0 +170733986636,441,0 +170733986684,441,0 +170733986734,441,0 +170733986782,441,0 +170733986830,441,0 +170733986878,441,0 +170733986926,287,1 +170733987008,425,0 +170733987056,441,0 +170733987104,441,0 +170733987153,441,0 +170733987201,441,0 +170733987249,441,0 +170733987299,441,0 +170733987347,441,0 +170733987395,441,0 +170733987443,441,0 +170733987491,441,0 +170733987540,441,0 +170733987588,441,0 +170733987636,441,0 +170733987684,441,0 +170733987732,441,0 +170733987780,441,0 +170733987828,441,0 +170733987876,441,0 +170733987924,441,0 +170733987972,286,1 +170733988058,433,0 +170733988106,441,0 +170733988154,441,0 +170733988203,441,0 +170733988251,441,0 +170733988299,441,0 +170733988347,441,0 +170733988395,441,0 +170733988443,441,0 +170733988491,441,0 +170733988539,441,0 +170733988587,441,0 +170733988635,441,0 +170733988683,441,0 +170733988731,441,0 +170733988779,441,0 +170733988827,441,0 +170733988875,441,0 +170733988923,441,0 +170733988971,441,0 +170733989019,301,1 +170733989108,437,0 +170733989160,441,0 +170733989208,441,0 +170733989256,441,0 +170733989306,441,0 +170733989354,441,0 +170733989403,441,0 +170733989453,441,0 +170733989502,441,0 +170733989550,441,0 +170733989600,441,0 +170733989648,441,0 +170733989696,441,0 +170733989744,441,0 +170733989792,441,0 +170733989841,441,0 +170733989889,441,0 +170733989937,441,0 +170733989985,441,0 +170733990033,440,0 +170733990082,299,1 +170733990168,438,0 +170733990218,441,0 +170733990266,441,0 +170733990314,441,0 +170733990362,441,0 +170733990410,441,0 +170733990458,441,0 +170733990506,441,0 +170733990554,441,0 +170733990602,441,0 +170733990650,441,0 +170733990697,441,0 +170733990745,441,0 +170733990793,441,0 +170733990841,441,0 +170733990889,441,0 +170733990937,441,0 +170733990985,441,0 +170733991032,441,0 +170733991080,441,0 +170733991128,294,1 +170733991212,437,0 +170733991260,441,0 +170733991307,441,0 +170733991355,441,0 +170733991403,441,0 +170733991451,441,0 +170733991501,441,0 +170733991549,441,0 +170733991598,441,0 +170733991646,441,0 +170733991694,441,0 +170733991743,441,0 +170733991791,441,0 +170733991839,441,0 +170733991887,441,0 +170733991935,441,0 +170733991983,441,0 +170733992031,441,0 +170733992080,441,0 +170733992128,441,0 +170733992176,307,1 +170733992269,438,0 +170733992319,441,0 +170733992368,441,0 +170733992418,441,0 +170733992466,441,0 +170733992514,441,0 +170733992562,441,0 +170733992610,441,0 +170733992659,441,0 +170733992707,441,0 +170733992755,441,0 +170733992803,441,0 +170733992851,441,0 +170733992899,441,0 +170733992948,441,0 +170733992996,441,0 +170733993045,441,0 +170733993093,441,0 +170733993141,441,0 +170733993189,441,0 +170733993239,292,1 +170733993331,439,0 +170733993379,441,0 +170733993427,441,0 +170733993475,441,0 +170733993525,441,0 +170733993574,441,0 +170733993624,441,0 +170733993672,441,0 +170733993720,441,0 +170733993768,441,0 +170733993816,441,0 +170733993865,441,0 +170733993913,441,0 +170733993963,441,0 +170733994011,441,0 +170733994060,441,0 +170733994108,441,0 +170733994156,441,0 +170733994204,441,0 +170733994254,310,0 +170733994302,294,1 +170733994398,441,0 +170733994446,441,0 +170733994495,441,0 +170733994543,441,0 +170733994593,441,0 +170733994641,441,0 +170733994689,441,0 +170733994737,441,0 +170733994785,441,0 +170733994833,441,0 +170733994880,441,0 +170733994928,441,0 +170733994976,441,0 +170733995026,441,0 +170733995073,441,0 +170733995121,441,0 +170733995169,441,0 +170733995217,441,0 +170733995265,441,0 +170733995313,294,1 +170733995397,420,0 +170733995445,441,0 +170733995493,441,0 +170733995542,441,0 +170733995590,441,0 +170733995638,441,0 +170733995688,441,0 +170733995736,441,0 +170733995784,441,0 +170733995833,441,0 +170733995882,441,0 +170733995932,441,0 +170733995980,441,0 +170733996028,441,0 +170733996076,441,0 +170733996125,441,0 +170733996173,441,0 +170733996221,441,0 +170733996270,441,0 +170733996318,441,0 +170733996366,294,1 +170733996451,437,0 +170733996498,441,0 +170733996548,441,0 +170733996597,441,0 +170733996647,441,0 +170733996695,441,0 +170733996743,441,0 +170733996791,441,0 +170733996839,441,0 +170733996887,441,0 +170733996936,441,0 +170733996986,441,0 +170733997034,441,0 +170733997082,441,0 +170733997130,441,0 +170733997179,441,0 +170733997227,441,0 +170733997275,441,0 +170733997325,441,0 +170733997374,441,0 +170733997424,293,1 +170733997509,439,0 +170733997557,441,0 +170733997605,441,0 +170733997653,441,0 +170733997701,441,0 +170733997749,441,0 +170733997799,441,0 +170733997847,441,0 +170733997894,441,0 +170733997942,441,0 +170733997990,441,0 +170733998038,441,0 +170733998088,441,0 +170733998137,441,0 +170733998187,441,0 +170733998236,441,0 +170733998284,441,0 +170733998334,441,0 +170733998382,441,0 +170733998430,437,0 +170733998479,286,1 +170733998563,440,0 +170733998611,441,0 +170733998659,441,0 +170733998707,441,0 +170733998757,441,0 +170733998806,441,0 +170733998856,441,0 +170733998904,441,0 +170733998953,441,0 +170733999001,441,0 +170733999051,441,0 +170733999099,441,0 +170733999147,441,0 +170733999195,441,0 +170733999243,441,0 +170733999292,441,0 +170733999341,441,0 +170733999389,441,0 +170733999437,441,0 +170733999485,431,0 +170733999533,284,1 +170733999621,440,0 +170733999669,441,0 +170733999717,441,0 +170733999765,441,0 +170733999814,441,0 +170733999862,441,0 +170733999910,441,0 +170733999960,441,0 +170734000008,441,0 +170734000056,441,0 +170734000103,441,0 +170734000151,441,0 +170734000199,441,0 +170734000247,441,0 +170734000295,441,0 +170734000343,441,0 +170734000391,441,0 +170734000439,441,0 +170734000488,441,0 +170734000536,441,0 +170734000584,304,1 +170734000674,439,0 +170734000722,441,0 +170734000770,441,0 +170734000819,441,0 +170734000867,441,0 +170734000915,441,0 +170734000963,441,0 +170734001011,441,0 +170734001061,441,0 +170734001110,441,0 +170734001158,441,0 +170734001206,441,0 +170734001256,441,0 +170734001304,441,0 +170734001352,441,0 +170734001401,441,0 +170734001449,441,0 +170734001497,441,0 +170734001545,441,0 +170734001593,305,1 +170734001681,344,0 +170734001729,441,0 +170734001777,441,0 +170734001825,441,0 +170734001873,441,0 +170734001923,441,0 +170734001972,441,0 +170734002022,441,0 +170734002070,441,0 +170734002118,441,0 +170734002167,441,0 +170734002215,441,0 +170734002263,441,0 +170734002311,441,0 +170734002359,441,0 +170734002409,441,0 +170734002457,441,0 +170734002504,441,0 +170734002554,441,0 +170734002603,441,0 +170734002653,304,1 +170734002738,437,0 +170734002787,441,0 +170734002835,441,0 +170734002883,441,0 +170734002931,441,0 +170734002981,441,0 +170734003029,441,0 +170734003077,441,0 +170734003126,441,0 +170734003175,441,0 +170734003223,441,0 +170734003271,441,0 +170734003319,441,0 +170734003368,441,0 +170734003418,441,0 +170734003466,441,0 +170734003514,441,0 +170734003561,441,0 +170734003609,441,0 +170734003657,441,0 +170734003705,283,1 +170734003795,439,0 +170734003844,441,0 +170734003892,441,0 +170734003941,441,0 +170734003989,441,0 +170734004037,441,0 +170734004085,441,0 +170734004133,441,0 +170734004181,441,0 +170734004229,441,0 +170734004277,441,0 +170734004325,441,0 +170734004372,441,0 +170734004422,441,0 +170734004470,441,0 +170734004518,441,0 +170734004565,441,0 +170734004613,441,0 +170734004663,441,0 +170734004712,440,0 +170734004760,300,1 +170734004845,439,0 +170734004895,441,0 +170734004943,441,0 +170734004990,441,0 +170734005040,441,0 +170734005090,441,0 +170734005138,441,0 +170734005186,441,0 +170734005233,441,0 +170734005283,441,0 +170734005331,441,0 +170734005379,441,0 +170734005427,441,0 +170734005475,441,0 +170734005523,441,0 +170734005572,441,0 +170734005622,441,0 +170734005671,441,0 +170734005721,441,0 +170734005770,411,0 +170734005820,302,1 +170734005909,441,0 +170734005957,441,0 +170734006005,441,0 +170734006053,441,0 +170734006101,441,0 +170734006149,441,0 +170734006197,441,0 +170734006245,441,0 +170734006293,441,0 +170734006341,441,0 +170734006390,441,0 +170734006438,441,0 +170734006486,441,0 +170734006534,441,0 +170734006582,441,0 +170734006630,441,0 +170734006678,441,0 +170734006725,441,0 +170734006773,441,0 +170734006821,405,0 +170734006869,305,1 +170734006958,440,0 +170734007006,441,0 +170734007053,441,0 +170734007101,441,0 +170734007149,441,0 +170734007197,441,0 +170734007245,441,0 +170734007293,441,0 +170734007341,441,0 +170734007389,441,0 +170734007436,441,0 +170734007484,441,0 +170734007532,441,0 +170734007580,441,0 +170734007628,441,0 +170734007676,441,0 +170734007724,441,0 +170734007771,441,0 +170734007819,441,0 +170734007867,440,0 +170734007915,286,1 +170734007995,438,0 +170734008042,441,0 +170734008090,441,0 +170734008138,441,0 +170734008188,441,0 +170734008236,441,0 +170734008284,441,0 +170734008332,441,0 +170734008380,441,0 +170734008427,441,0 +170734008475,441,0 +170734008523,441,0 +170734008571,441,0 +170734008619,441,0 +170734008667,441,0 +170734008715,441,0 +170734008765,441,0 +170734008813,441,0 +170734008861,441,0 +170734008909,440,0 +170734008957,302,1 +170734009042,439,0 +170734009090,441,0 +170734009138,441,0 +170734009186,441,0 +170734009234,441,0 +170734009282,441,0 +170734009330,441,0 +170734009378,441,0 +170734009425,441,0 +170734009473,441,0 +170734009521,441,0 +170734009569,441,0 +170734009617,441,0 +170734009665,441,0 +170734009713,441,0 +170734009761,441,0 +170734009810,441,0 +170734009860,441,0 +170734009908,441,0 +170734009956,440,0 +170734010005,290,1 +170734010095,440,0 +170734010143,441,0 +170734010191,441,0 +170734010239,441,0 +170734010288,441,0 +170734010336,441,0 +170734010384,441,0 +170734010434,441,0 +170734010482,441,0 +170734010530,441,0 +170734010578,441,0 +170734010627,441,0 +170734010675,441,0 +170734010723,441,0 +170734010771,441,0 +170734010819,441,0 +170734010867,441,0 +170734010915,441,0 +170734010963,441,0 +170734011010,440,0 +170734011060,293,1 +170734011144,440,0 +170734011192,441,0 +170734011240,441,0 +170734011287,441,0 +170734011335,441,0 +170734011383,441,0 +170734011431,441,0 +170734011481,441,0 +170734011529,441,0 +170734011578,441,0 +170734011626,441,0 +170734011674,441,0 +170734011724,441,0 +170734011771,441,0 +170734011819,441,0 +170734011869,441,0 +170734011917,441,0 +170734011965,441,0 +170734012013,441,0 +170734012061,429,0 +170734012109,288,1 +170734012191,440,0 +170734012239,441,0 +170734012287,441,0 +170734012335,441,0 +170734012383,441,0 +170734012431,441,0 +170734012481,441,0 +170734012530,441,0 +170734012580,441,0 +170734012628,441,0 +170734012676,441,0 +170734012725,441,0 +170734012775,441,0 +170734012823,441,0 +170734012870,441,0 +170734012918,441,0 +170734012966,441,0 +170734013014,441,0 +170734013062,441,0 +170734013112,431,0 +170734013160,294,1 +170734013246,440,0 +170734013296,441,0 +170734013344,441,0 +170734013393,441,0 +170734013441,441,0 +170734013489,441,0 +170734013539,441,0 +170734013587,441,0 +170734013636,441,0 +170734013684,441,0 +170734013734,441,0 +170734013782,441,0 +170734013829,441,0 +170734013877,441,0 +170734013925,441,0 +170734013973,441,0 +170734014021,441,0 +170734014071,441,0 +170734014119,441,0 +170734014167,323,0 +170734014215,299,1 +170734014303,441,0 +170734014352,441,0 +170734014400,441,0 +170734014448,441,0 +170734014497,441,0 +170734014545,441,0 +170734014593,441,0 +170734014641,441,0 +170734014689,441,0 +170734014737,441,0 +170734014787,441,0 +170734014835,441,0 +170734014883,441,0 +170734014932,441,0 +170734014980,441,0 +170734015028,441,0 +170734015078,441,0 +170734015126,441,0 +170734015174,441,0 +170734015223,298,1 +170734015308,241,0 +170734015356,441,0 +170734015404,441,0 +170734015453,441,0 +170734015501,441,0 +170734015551,441,0 +170734015599,441,0 +170734015647,441,0 +170734015695,441,0 +170734015743,441,0 +170734015792,441,0 +170734015840,441,0 +170734015890,441,0 +170734015938,441,0 +170734015985,441,0 +170734016035,441,0 +170734016083,441,0 +170734016131,441,0 +170734016180,441,0 +170734016228,441,0 +170734016276,293,1 +170734016365,259,0 +170734016412,441,0 +170734016462,441,0 +170734016512,441,0 +170734016561,441,0 +170734016609,441,0 +170734016659,441,0 +170734016706,441,0 +170734016754,441,0 +170734016802,441,0 +170734016850,441,0 +170734016900,441,0 +170734016949,441,0 +170734016997,441,0 +170734017047,441,0 +170734017096,441,0 +170734017144,441,0 +170734017192,441,0 +170734017240,441,0 +170734017288,441,0 +170734017337,291,1 +170734017425,438,0 +170734017473,441,0 +170734017521,441,0 +170734017569,441,0 +170734017617,441,0 +170734017665,441,0 +170734017713,441,0 +170734017761,441,0 +170734017809,441,0 +170734017857,441,0 +170734017906,441,0 +170734017956,441,0 +170734018004,441,0 +170734018052,441,0 +170734018100,441,0 +170734018148,441,0 +170734018197,441,0 +170734018245,441,0 +170734018293,441,0 +170734018343,441,0 +170734018391,296,1 +170734018476,438,0 +170734018525,441,0 +170734018573,441,0 +170734018621,441,0 +170734018669,441,0 +170734018717,441,0 +170734018767,441,0 +170734018815,441,0 +170734018864,441,0 +170734018914,441,0 +170734018962,441,0 +170734019011,441,0 +170734019059,441,0 +170734019107,441,0 +170734019155,441,0 +170734019203,441,0 +170734019251,441,0 +170734019299,441,0 +170734019347,441,0 +170734019395,441,0 +170734019443,282,1 +170734019527,438,0 +170734019575,441,0 +170734019623,441,0 +170734019673,441,0 +170734019722,441,0 +170734019770,441,0 +170734019818,441,0 +170734019866,441,0 +170734019914,441,0 +170734019962,441,0 +170734020010,441,0 +170734020058,441,0 +170734020106,441,0 +170734020154,441,0 +170734020202,441,0 +170734020251,441,0 +170734020299,441,0 +170734020347,441,0 +170734020395,441,0 +170734020443,441,0 +170734020491,284,1 +170734020576,439,0 +170734020626,441,0 +170734020674,441,0 +170734020723,441,0 +170734020771,441,0 +170734020819,441,0 +170734020867,441,0 +170734020915,441,0 +170734020963,441,0 +170734021011,441,0 +170734021059,441,0 +170734021107,441,0 +170734021155,441,0 +170734021203,441,0 +170734021251,441,0 +170734021299,441,0 +170734021347,441,0 +170734021396,441,0 +170734021444,441,0 +170734021492,440,0 +170734021540,292,1 +170734021629,439,0 +170734021678,441,0 +170734021728,441,0 +170734021776,441,0 +170734021826,441,0 +170734021875,441,0 +170734021923,441,0 +170734021971,441,0 +170734022021,441,0 +170734022069,441,0 +170734022117,441,0 +170734022166,441,0 +170734022214,441,0 +170734022262,441,0 +170734022311,441,0 +170734022359,441,0 +170734022407,441,0 +170734022455,441,0 +170734022503,441,0 +170734022551,441,0 +170734022599,285,1 +170734022688,439,0 +170734022736,441,0 +170734022784,441,0 +170734022834,441,0 +170734022882,441,0 +170734022930,441,0 +170734022978,441,0 +170734023026,441,0 +170734023074,441,0 +170734023123,441,0 +170734023171,441,0 +170734023219,441,0 +170734023267,441,0 +170734023315,441,0 +170734023363,441,0 +170734023411,441,0 +170734023459,441,0 +170734023507,441,0 +170734023555,441,0 +170734023603,329,0 +170734023651,285,1 +170734023736,440,0 +170734023784,441,0 +170734023834,441,0 +170734023883,441,0 +170734023933,441,0 +170734023982,441,0 +170734024030,441,0 +170734024078,441,0 +170734024126,441,0 +170734024174,441,0 +170734024222,441,0 +170734024270,441,0 +170734024320,441,0 +170734024368,441,0 +170734024416,441,0 +170734024465,441,0 +170734024513,441,0 +170734024561,441,0 +170734024611,441,0 +170734024660,301,1 +170734024745,260,0 +170734024793,441,0 +170734024841,441,0 +170734024889,441,0 +170734024937,441,0 +170734024985,441,0 +170734025033,441,0 +170734025081,441,0 +170734025129,441,0 +170734025177,441,0 +170734025225,441,0 +170734025273,441,0 +170734025321,441,0 +170734025369,441,0 +170734025417,441,0 +170734025465,441,0 +170734025512,441,0 +170734025562,441,0 +170734025610,441,0 +170734025659,441,0 +170734025707,271,1 +170734025794,237,0 +170734025843,441,0 +170734025893,441,0 +170734025941,441,0 +170734025990,441,0 +170734026038,441,0 +170734026086,441,0 +170734026134,441,0 +170734026182,441,0 +170734026231,441,0 +170734026281,441,0 +170734026329,441,0 +170734026378,441,0 +170734026426,441,0 +170734026474,441,0 +170734026524,441,0 +170734026572,441,0 +170734026621,441,0 +170734026669,441,0 +170734026717,441,0 +170734026765,297,1 +170734026850,234,0 +170734026899,441,0 +170734026949,441,0 +170734026999,441,0 +170734027046,441,0 +170734027094,441,0 +170734027144,441,0 +170734027193,441,0 +170734027241,441,0 +170734027291,441,0 +170734027339,441,0 +170734027387,441,0 +170734027436,441,0 +170734027484,441,0 +170734027532,441,0 +170734027580,441,0 +170734027630,441,0 +170734027678,441,0 +170734027725,441,0 +170734027775,440,0 +170734027823,293,1 +170734027906,437,0 +170734027954,441,0 +170734028002,441,0 +170734028050,441,0 +170734028098,441,0 +170734028146,441,0 +170734028196,441,0 +170734028244,441,0 +170734028292,441,0 +170734028340,441,0 +170734028388,441,0 +170734028436,441,0 +170734028485,441,0 +170734028534,441,0 +170734028584,441,0 +170734028632,441,0 +170734028680,441,0 +170734028728,441,0 +170734028776,441,0 +170734028824,441,0 +170734028872,291,1 +170734028957,435,0 +170734029005,441,0 +170734029053,441,0 +170734029101,441,0 +170734029150,441,0 +170734029198,441,0 +170734029246,441,0 +170734029294,441,0 +170734029344,441,0 +170734029392,441,0 +170734029441,441,0 +170734029491,441,0 +170734029539,441,0 +170734029587,441,0 +170734029635,441,0 +170734029683,441,0 +170734029732,441,0 +170734029780,441,0 +170734029828,441,0 +170734029876,441,0 +170734029924,277,1 +170734030010,437,0 +170734030058,441,0 +170734030106,441,0 +170734030154,441,0 +170734030202,441,0 +170734030252,441,0 +170734030300,441,0 +170734030348,441,0 +170734030396,441,0 +170734030444,441,0 +170734030493,441,0 +170734030543,441,0 +170734030592,441,0 +170734030640,441,0 +170734030690,441,0 +170734030738,441,0 +170734030786,441,0 +170734030833,441,0 +170734030883,441,0 +170734030932,440,0 +170734030980,291,1 +170734031065,440,0 +170734031114,441,0 +170734031162,441,0 +170734031212,441,0 +170734031260,441,0 +170734031308,441,0 +170734031357,441,0 +170734031407,441,0 +170734031456,441,0 +170734031506,441,0 +170734031555,441,0 +170734031605,441,0 +170734031653,441,0 +170734031701,441,0 +170734031749,441,0 +170734031797,441,0 +170734031845,441,0 +170734031893,441,0 +170734031940,441,0 +170734031988,296,1 +170734032071,291,1 +170734032152,441,0 +170734032202,441,0 +170734032250,441,0 +170734032298,441,0 +170734032346,441,0 +170734032394,441,0 +170734032442,441,0 +170734032491,441,0 +170734032541,441,0 +170734032589,441,0 +170734032637,441,0 +170734032685,441,0 +170734032733,441,0 +170734032781,441,0 +170734032829,441,0 +170734032877,441,0 +170734032924,441,0 +170734032972,441,0 +170734033020,441,0 +170734033068,288,1 +170734033156,438,0 +170734033206,441,0 +170734033254,441,0 +170734033302,441,0 +170734033350,441,0 +170734033399,441,0 +170734033449,441,0 +170734033497,441,0 +170734033545,441,0 +170734033593,441,0 +170734033641,441,0 +170734033689,441,0 +170734033737,441,0 +170734033785,441,0 +170734033832,441,0 +170734033880,441,0 +170734033930,441,0 +170734033978,441,0 +170734034027,441,0 +170734034075,440,0 +170734034123,292,1 +170734034211,439,0 +170734034259,441,0 +170734034307,441,0 +170734034356,441,0 +170734034404,441,0 +170734034452,441,0 +170734034502,441,0 +170734034550,441,0 +170734034599,441,0 +170734034649,441,0 +170734034697,441,0 +170734034745,441,0 +170734034792,441,0 +170734034840,441,0 +170734034888,441,0 +170734034936,441,0 +170734034984,441,0 +170734035032,441,0 +170734035080,441,0 +170734035130,438,0 +170734035178,308,1 +170734035265,440,0 +170734035313,441,0 +170734035361,441,0 +170734035409,441,0 +170734035457,441,0 +170734035507,441,0 +170734035556,441,0 +170734035604,441,0 +170734035652,441,0 +170734035702,441,0 +170734035750,441,0 +170734035799,441,0 +170734035847,441,0 +170734035895,441,0 +170734035943,441,0 +170734035991,441,0 +170734036041,441,0 +170734036090,441,0 +170734036140,441,0 +170734036188,431,0 +170734036236,295,1 +170734036324,440,0 +170734036374,441,0 +170734036423,441,0 +170734036473,441,0 +170734036520,441,0 +170734036568,441,0 +170734036616,441,0 +170734036664,441,0 +170734036714,441,0 +170734036763,441,0 +170734036813,441,0 +170734036861,441,0 +170734036909,441,0 +170734036957,441,0 +170734037006,441,0 +170734037054,441,0 +170734037102,441,0 +170734037152,441,0 +170734037200,441,0 +170734037248,330,0 +170734037295,299,1 +170734037379,440,0 +170734037427,441,0 +170734037475,441,0 +170734037523,441,0 +170734037573,441,0 +170734037621,441,0 +170734037669,441,0 +170734037717,441,0 +170734037764,441,0 +170734037812,441,0 +170734037860,441,0 +170734037908,441,0 +170734037956,441,0 +170734038004,441,0 +170734038052,441,0 +170734038100,441,0 +170734038148,441,0 +170734038196,441,0 +170734038244,441,0 +170734038294,287,1 +170734038378,237,0 +170734038426,441,0 +170734038475,441,0 +170734038523,441,0 +170734038571,441,0 +170734038619,441,0 +170734038667,441,0 +170734038715,441,0 +170734038763,441,0 +170734038813,441,0 +170734038860,441,0 +170734038910,441,0 +170734038958,441,0 +170734039006,441,0 +170734039054,441,0 +170734039103,441,0 +170734039153,441,0 +170734039201,441,0 +170734039250,441,0 +170734039298,441,0 +170734039346,288,1 +170734039424,291,1 +170734039511,441,0 +170734039559,441,0 +170734039607,441,0 +170734039656,441,0 +170734039706,441,0 +170734039754,441,0 +170734039802,441,0 +170734039850,441,0 +170734039898,441,0 +170734039947,441,0 +170734039996,441,0 +170734040046,441,0 +170734040094,441,0 +170734040144,441,0 +170734040193,441,0 +170734040241,441,0 +170734040291,441,0 +170734040339,441,0 +170734040388,284,1 +170734040475,252,0 +170734040524,441,0 +170734040572,441,0 +170734040620,441,0 +170734040668,441,0 +170734040716,441,0 +170734040764,441,0 +170734040812,441,0 +170734040860,441,0 +170734040908,441,0 +170734040956,441,0 +170734041004,441,0 +170734041052,441,0 +170734041101,441,0 +170734041149,441,0 +170734041199,441,0 +170734041248,441,0 +170734041298,441,0 +170734041347,441,0 +170734041397,441,0 +170734041445,306,1 +170734041528,242,0 +170734041578,441,0 +170734041626,441,0 +170734041674,441,0 +170734041722,441,0 +170734041770,441,0 +170734041818,441,0 +170734041866,441,0 +170734041914,441,0 +170734041962,441,0 +170734042010,441,0 +170734042058,441,0 +170734042106,441,0 +170734042154,441,0 +170734042203,441,0 +170734042251,441,0 +170734042299,441,0 +170734042347,441,0 +170734042396,441,0 +170734042444,441,0 +170734042492,306,1 +170734042572,243,0 +170734042621,441,0 +170734042669,441,0 +170734042717,441,0 +170734042765,441,0 +170734042813,441,0 +170734042861,441,0 +170734042909,441,0 +170734042959,441,0 +170734043007,441,0 +170734043056,441,0 +170734043104,441,0 +170734043152,441,0 +170734043200,441,0 +170734043248,441,0 +170734043296,441,0 +170734043344,441,0 +170734043392,441,0 +170734043440,441,0 +170734043490,441,0 +170734043537,391,0 +170734043587,295,1 +170734043671,440,0 +170734043718,441,0 +170734043766,441,0 +170734043816,441,0 +170734043865,441,0 +170734043915,441,0 +170734043963,441,0 +170734044012,441,0 +170734044060,441,0 +170734044110,441,0 +170734044158,441,0 +170734044206,441,0 +170734044254,441,0 +170734044302,441,0 +170734044350,441,0 +170734044398,441,0 +170734044448,441,0 +170734044496,441,0 +170734044544,441,0 +170734044592,289,1 +170734044678,248,0 +170734044726,441,0 +170734044774,441,0 +170734044822,441,0 +170734044871,441,0 +170734044921,441,0 +170734044969,441,0 +170734045017,441,0 +170734045065,441,0 +170734045113,441,0 +170734045162,441,0 +170734045212,441,0 +170734045260,441,0 +170734045308,441,0 +170734045357,441,0 +170734045405,441,0 +170734045453,441,0 +170734045501,441,0 +170734045551,441,0 +170734045599,441,0 +170734045647,279,1 +170734045738,437,0 +170734045787,441,0 +170734045835,441,0 +170734045883,441,0 +170734045931,441,0 +170734045979,441,0 +170734046027,441,0 +170734046075,441,0 +170734046123,441,0 +170734046173,441,0 +170734046222,441,0 +170734046270,441,0 +170734046320,441,0 +170734046369,441,0 +170734046419,441,0 +170734046467,441,0 +170734046515,441,0 +170734046562,441,0 +170734046612,441,0 +170734046660,441,0 +170734046708,288,1 +170734046800,439,0 +170734046849,441,0 +170734046897,441,0 +170734046945,441,0 +170734046993,441,0 +170734047041,441,0 +170734047089,441,0 +170734047137,441,0 +170734047187,441,0 +170734047234,441,0 +170734047282,441,0 +170734047330,441,0 +170734047380,441,0 +170734047428,441,0 +170734047476,441,0 +170734047524,441,0 +170734047572,441,0 +170734047619,441,0 +170734047667,441,0 +170734047717,441,0 +170734047765,281,1 +170734047854,440,0 +170734047902,441,0 +170734047950,441,0 +170734047997,441,0 +170734048045,441,0 +170734048095,441,0 +170734048143,441,0 +170734048191,441,0 +170734048240,441,0 +170734048290,441,0 +170734048338,441,0 +170734048386,441,0 +170734048435,441,0 +170734048484,441,0 +170734048532,441,0 +170734048582,441,0 +170734048630,441,0 +170734048679,441,0 +170734048727,441,0 +170734048775,292,1 +170734048856,283,1 +170734048935,441,0 +170734048984,441,0 +170734049032,441,0 +170734049080,441,0 +170734049128,441,0 +170734049176,441,0 +170734049226,441,0 +170734049274,441,0 +170734049323,441,0 +170734049371,441,0 +170734049419,441,0 +170734049467,441,0 +170734049515,441,0 +170734049563,441,0 +170734049612,441,0 +170734049660,441,0 +170734049708,441,0 +170734049756,441,0 +170734049804,441,0 +170734049852,291,1 +170734049935,438,0 +170734049983,441,0 +170734050032,441,0 +170734050080,441,0 +170734050128,441,0 +170734050176,441,0 +170734050226,441,0 +170734050274,441,0 +170734050322,441,0 +170734050370,441,0 +170734050417,441,0 +170734050465,441,0 +170734050515,441,0 +170734050564,441,0 +170734050612,441,0 +170734050660,441,0 +170734050709,441,0 +170734050759,441,0 +170734050807,441,0 +170734050855,441,0 +170734050902,282,1 +170734050988,439,0 +170734051036,441,0 +170734051083,441,0 +170734051133,441,0 +170734051181,441,0 +170734051229,441,0 +170734051277,441,0 +170734051326,441,0 +170734051375,441,0 +170734051423,441,0 +170734051471,441,0 +170734051519,441,0 +170734051566,441,0 +170734051614,441,0 +170734051662,441,0 +170734051712,441,0 +170734051760,441,0 +170734051809,441,0 +170734051858,441,0 +170734051908,441,0 +170734051957,280,1 +170734052039,439,0 +170734052087,441,0 +170734052136,441,0 +170734052184,441,0 +170734052232,441,0 +170734052280,441,0 +170734052328,441,0 +170734052376,441,0 +170734052424,441,0 +170734052471,441,0 +170734052519,441,0 +170734052567,441,0 +170734052615,441,0 +170734052665,441,0 +170734052713,441,0 +170734052760,441,0 +170734052810,441,0 +170734052858,441,0 +170734052907,441,0 +170734052955,440,0 +170734053003,303,1 +170734053086,439,0 +170734053134,441,0 +170734053182,441,0 +170734053230,441,0 +170734053279,441,0 +170734053327,441,0 +170734053376,441,0 +170734053426,441,0 +170734053474,441,0 +170734053522,441,0 +170734053570,441,0 +170734053617,441,0 +170734053665,441,0 +170734053713,441,0 +170734053761,441,0 +170734053811,441,0 +170734053858,441,0 +170734053906,441,0 +170734053954,441,0 +170734054002,440,0 +170734054050,310,0 +170734054098,303,1 +170734054180,441,0 +170734054228,441,0 +170734054278,441,0 +170734054326,441,0 +170734054374,441,0 +170734054423,441,0 +170734054471,441,0 +170734054519,441,0 +170734054567,441,0 +170734054615,441,0 +170734054663,441,0 +170734054711,441,0 +170734054759,441,0 +170734054807,441,0 +170734054855,441,0 +170734054903,441,0 +170734054952,441,0 +170734055000,441,0 +170734055050,441,0 +170734055098,283,1 +170734055190,440,0 +170734055240,441,0 +170734055288,441,0 +170734055335,441,0 +170734055383,441,0 +170734055431,441,0 +170734055481,441,0 +170734055529,441,0 +170734055577,441,0 +170734055626,441,0 +170734055676,441,0 +170734055724,441,0 +170734055772,441,0 +170734055821,441,0 +170734055869,441,0 +170734055919,441,0 +170734055967,441,0 +170734056015,441,0 +170734056063,441,0 +170734056111,298,1 +170734056196,272,1 +170734056278,441,0 +170734056326,441,0 +170734056375,441,0 +170734056423,441,0 +170734056471,441,0 +170734056519,441,0 +170734056567,441,0 +170734056616,441,0 +170734056664,441,0 +170734056712,441,0 +170734056760,441,0 +170734056808,441,0 +170734056856,441,0 +170734056904,441,0 +170734056952,441,0 +170734057002,441,0 +170734057050,441,0 +170734057097,441,0 +170734057145,440,0 +170734057193,298,1 +170734057273,439,0 +170734057322,441,0 +170734057370,441,0 +170734057418,441,0 +170734057468,441,0 +170734057517,441,0 +170734057565,441,0 +170734057613,441,0 +170734057661,441,0 +170734057709,441,0 +170734057759,441,0 +170734057806,441,0 +170734057856,441,0 +170734057904,441,0 +170734057952,441,0 +170734058000,441,0 +170734058048,441,0 +170734058097,441,0 +170734058145,441,0 +170734058193,441,0 +170734058241,288,1 +170734058338,440,0 +170734058386,441,0 +170734058434,441,0 +170734058482,441,0 +170734058532,441,0 +170734058581,441,0 +170734058631,441,0 +170734058678,441,0 +170734058726,441,0 +170734058774,441,0 +170734058822,441,0 +170734058870,441,0 +170734058918,441,0 +170734058966,441,0 +170734059014,441,0 +170734059062,441,0 +170734059110,441,0 +170734059158,441,0 +170734059207,441,0 +170734059255,440,0 +170734059304,300,1 +170734059388,440,0 +170734059436,441,0 +170734059484,441,0 +170734059533,441,0 +170734059581,441,0 +170734059629,441,0 +170734059677,441,0 +170734059725,441,0 +170734059773,441,0 +170734059821,441,0 +170734059869,441,0 +170734059919,441,0 +170734059968,441,0 +170734060016,441,0 +170734060066,441,0 +170734060114,441,0 +170734060162,441,0 +170734060210,441,0 +170734060257,441,0 +170734060305,427,0 +170734060355,304,1 +170734060436,440,0 +170734060486,441,0 +170734060535,441,0 +170734060585,441,0 +170734060633,441,0 +170734060682,441,0 +170734060730,441,0 +170734060778,441,0 +170734060828,441,0 +170734060875,441,0 +170734060923,441,0 +170734060973,441,0 +170734061021,441,0 +170734061069,441,0 +170734061117,441,0 +170734061165,441,0 +170734061213,441,0 +170734061262,441,0 +170734061312,441,0 +170734061360,291,1 +170734061449,234,0 +170734061497,441,0 +170734061547,441,0 +170734061596,441,0 +170734061646,441,0 +170734061693,441,0 +170734061741,441,0 +170734061789,441,0 +170734061837,441,0 +170734061885,441,0 +170734061933,441,0 +170734061983,441,0 +170734062031,441,0 +170734062079,441,0 +170734062128,441,0 +170734062176,441,0 +170734062224,441,0 +170734062274,441,0 +170734062322,441,0 +170734062369,441,0 +170734062417,292,1 +170734062504,437,0 +170734062553,441,0 +170734062603,441,0 +170734062651,441,0 +170734062699,441,0 +170734062747,441,0 +170734062795,441,0 +170734062843,441,0 +170734062891,441,0 +170734062939,441,0 +170734062987,441,0 +170734063035,441,0 +170734063084,441,0 +170734063134,441,0 +170734063183,441,0 +170734063233,441,0 +170734063282,441,0 +170734063330,441,0 +170734063378,441,0 +170734063426,441,0 +170734063476,295,1 +170734063561,436,0 +170734063610,441,0 +170734063658,441,0 +170734063706,441,0 +170734063754,441,0 +170734063802,441,0 +170734063850,441,0 +170734063900,441,0 +170734063949,441,0 +170734063997,441,0 +170734064047,441,0 +170734064095,441,0 +170734064142,441,0 +170734064192,441,0 +170734064240,441,0 +170734064287,441,0 +170734064335,441,0 +170734064385,441,0 +170734064433,441,0 +170734064481,441,0 +170734064530,293,1 +170734064615,438,0 +170734064663,441,0 +170734064711,441,0 +170734064759,441,0 +170734064809,441,0 +170734064858,441,0 +170734064908,441,0 +170734064956,441,0 +170734065004,441,0 +170734065052,441,0 +170734065100,441,0 +170734065148,441,0 +170734065196,441,0 +170734065244,441,0 +170734065292,441,0 +170734065340,441,0 +170734065388,441,0 +170734065436,441,0 +170734065483,441,0 +170734065533,441,0 +170734065581,291,1 +170734065665,438,0 +170734065713,441,0 +170734065761,441,0 +170734065810,441,0 +170734065858,441,0 +170734065906,441,0 +170734065956,441,0 +170734066005,441,0 +170734066053,441,0 +170734066101,441,0 +170734066149,441,0 +170734066197,441,0 +170734066245,441,0 +170734066293,441,0 +170734066341,441,0 +170734066391,441,0 +170734066439,441,0 +170734066486,441,0 +170734066534,441,0 +170734066584,441,0 +170734066634,284,1 +170734066720,436,0 +170734066770,441,0 +170734066818,441,0 +170734066865,441,0 +170734066913,441,0 +170734066961,441,0 +170734067009,441,0 +170734067058,441,0 +170734067105,441,0 +170734067153,441,0 +170734067201,441,0 +170734067251,441,0 +170734067299,441,0 +170734067347,441,0 +170734067396,441,0 +170734067444,441,0 +170734067492,441,0 +170734067540,441,0 +170734067588,441,0 +170734067638,437,0 +170734067686,304,1 +170734067770,440,0 +170734067820,441,0 +170734067868,441,0 +170734067917,441,0 +170734067965,441,0 +170734068013,441,0 +170734068061,441,0 +170734068109,441,0 +170734068157,441,0 +170734068205,441,0 +170734068255,441,0 +170734068303,441,0 +170734068351,441,0 +170734068400,441,0 +170734068450,441,0 +170734068498,441,0 +170734068546,441,0 +170734068594,441,0 +170734068643,441,0 +170734068693,422,0 +170734068741,308,1 +170734068825,440,0 +170734068874,441,0 +170734068922,441,0 +170734068972,441,0 +170734069020,441,0 +170734069068,441,0 +170734069116,441,0 +170734069164,441,0 +170734069212,441,0 +170734069261,441,0 +170734069309,441,0 +170734069357,441,0 +170734069405,441,0 +170734069455,441,0 +170734069503,441,0 +170734069552,441,0 +170734069602,441,0 +170734069650,441,0 +170734069699,441,0 +170734069749,301,1 +170734069837,251,0 +170734069885,441,0 +170734069934,441,0 +170734069982,441,0 +170734070030,441,0 +170734070078,441,0 +170734070126,441,0 +170734070174,441,0 +170734070222,441,0 +170734070272,441,0 +170734070320,441,0 +170734070368,441,0 +170734070416,441,0 +170734070463,441,0 +170734070511,441,0 +170734070561,441,0 +170734070609,441,0 +170734070656,441,0 +170734070706,441,0 +170734070754,441,0 +170734070802,297,1 +170734070886,269,0 +170734070934,441,0 +170734070983,441,0 +170734071031,441,0 +170734071079,441,0 +170734071128,441,0 +170734071176,441,0 +170734071224,441,0 +170734071272,441,0 +170734071320,441,0 +170734071368,441,0 +170734071417,441,0 +170734071465,441,0 +170734071513,441,0 +170734071561,441,0 +170734071609,441,0 +170734071659,441,0 +170734071707,441,0 +170734071755,441,0 +170734071803,441,0 +170734071851,311,0 +170734071898,307,1 +170734071982,441,0 +170734072030,441,0 +170734072080,441,0 +170734072129,441,0 +170734072177,441,0 +170734072225,441,0 +170734072273,441,0 +170734072321,441,0 +170734072369,441,0 +170734072417,441,0 +170734072464,441,0 +170734072512,441,0 +170734072560,441,0 +170734072608,441,0 +170734072656,441,0 +170734072705,441,0 +170734072753,441,0 +170734072803,441,0 +170734072850,441,0 +170734072900,290,1 +170734072984,302,1 +170734073062,441,0 +170734073110,441,0 +170734073158,441,0 +170734073207,441,0 +170734073255,441,0 +170734073303,441,0 +170734073351,441,0 +170734073399,441,0 +170734073447,441,0 +170734073496,441,0 +170734073546,441,0 +170734073594,441,0 +170734073641,441,0 +170734073691,441,0 +170734073740,441,0 +170734073788,441,0 +170734073836,441,0 +170734073884,441,0 +170734073932,441,0 +170734073980,299,1 +170734074059,437,0 +170734074107,441,0 +170734074156,441,0 +170734074204,441,0 +170734074252,441,0 +170734074302,441,0 +170734074350,441,0 +170734074397,441,0 +170734074445,441,0 +170734074493,441,0 +170734074541,441,0 +170734074589,441,0 +170734074637,441,0 +170734074685,441,0 +170734074734,441,0 +170734074784,441,0 +170734074832,441,0 +170734074881,441,0 +170734074929,441,0 +170734074977,441,0 +170734075025,305,1 +170734075110,439,0 +170734075158,441,0 +170734075206,441,0 +170734075254,441,0 +170734075304,441,0 +170734075352,441,0 +170734075400,441,0 +170734075449,441,0 +170734075497,441,0 +170734075545,441,0 +170734075593,441,0 +170734075641,441,0 +170734075691,441,0 +170734075740,441,0 +170734075788,441,0 +170734075836,442,0 +170734075886,441,0 +170734075934,441,0 +170734075983,441,0 +170734076032,440,0 +170734076082,305,1 +170734076176,440,0 +170734076224,441,0 +170734076271,441,0 +170734076319,441,0 +170734076367,441,0 +170734076415,441,0 +170734076463,441,0 +170734076511,441,0 +170734076559,441,0 +170734076607,441,0 +170734076655,441,0 +170734076705,441,0 +170734076754,441,0 +170734076802,441,0 +170734076850,441,0 +170734076898,441,0 +170734076948,441,0 +170734076997,441,0 +170734077045,441,0 +170734077095,304,1 +170734077179,268,0 +170734077227,441,0 +170734077275,441,0 +170734077323,441,0 +170734077371,441,0 +170734077420,441,0 +170734077468,441,0 +170734077516,441,0 +170734077564,441,0 +170734077612,441,0 +170734077660,441,0 +170734077709,441,0 +170734077759,441,0 +170734077809,441,0 +170734077857,441,0 +170734077904,441,0 +170734077954,441,0 +170734078002,441,0 +170734078050,441,0 +170734078099,441,0 +170734078147,302,1 +170734078234,239,0 +170734078282,441,0 +170734078330,441,0 +170734078378,441,0 +170734078426,441,0 +170734078475,441,0 +170734078523,441,0 +170734078571,441,0 +170734078621,441,0 +170734078669,441,0 +170734078718,441,0 +170734078766,441,0 +170734078814,441,0 +170734078862,441,0 +170734078912,441,0 +170734078960,441,0 +170734079009,441,0 +170734079057,441,0 +170734079107,441,0 +170734079156,441,0 +170734079204,296,1 +170734079291,284,1 +170734079373,441,0 +170734079420,441,0 +170734079468,441,0 +170734079518,441,0 +170734079566,441,0 +170734079614,441,0 +170734079661,441,0 +170734079709,441,0 +170734079757,441,0 +170734079807,441,0 +170734079855,441,0 +170734079903,441,0 +170734079951,441,0 +170734079998,441,0 +170734080046,441,0 +170734080096,441,0 +170734080144,441,0 +170734080192,441,0 +170734080240,282,1 +170734080328,279,1 +170734080414,441,0 +170734080462,441,0 +170734080510,441,0 +170734080558,441,0 +170734080606,441,0 +170734080654,441,0 +170734080702,441,0 +170734080751,441,0 +170734080799,441,0 +170734080847,441,0 +170734080895,441,0 +170734080945,441,0 +170734080993,441,0 +170734081040,441,0 +170734081088,441,0 +170734081136,441,0 +170734081184,441,0 +170734081234,441,0 +170734081282,441,0 +170734081331,298,1 +170734081415,439,0 +170734081463,441,0 +170734081511,441,0 +170734081559,441,0 +170734081607,441,0 +170734081655,441,0 +170734081704,441,0 +170734081754,441,0 +170734081802,441,0 +170734081850,441,0 +170734081898,441,0 +170734081947,441,0 +170734081995,441,0 +170734082043,441,0 +170734082093,441,0 +170734082141,441,0 +170734082190,441,0 +170734082238,441,0 +170734082286,441,0 +170734082334,278,1 +170734082418,281,1 +170734082498,441,0 +170734082546,441,0 +170734082594,441,0 +170734082642,441,0 +170734082691,441,0 +170734082741,441,0 +170734082791,441,0 +170734082839,441,0 +170734082887,441,0 +170734082934,441,0 +170734082982,441,0 +170734083032,441,0 +170734083080,441,0 +170734083129,441,0 +170734083177,441,0 +170734083227,441,0 +170734083275,441,0 +170734083324,441,0 +170734083374,440,0 +170734083423,294,1 +170734083507,439,0 +170734083555,441,0 +170734083605,441,0 +170734083654,441,0 +170734083702,441,0 +170734083750,441,0 +170734083798,441,0 +170734083847,441,0 +170734083895,441,0 +170734083943,441,0 +170734083991,441,0 +170734084039,441,0 +170734084087,441,0 +170734084135,441,0 +170734084183,441,0 +170734084231,441,0 +170734084281,441,0 +170734084329,441,0 +170734084378,441,0 +170734084426,439,0 +170734084476,294,1 +170734084561,440,0 +170734084611,441,0 +170734084659,441,0 +170734084707,441,0 +170734084756,441,0 +170734084804,441,0 +170734084854,441,0 +170734084902,441,0 +170734084951,441,0 +170734084999,441,0 +170734085047,441,0 +170734085095,441,0 +170734085143,441,0 +170734085191,441,0 +170734085239,441,0 +170734085287,441,0 +170734085335,441,0 +170734085383,441,0 +170734085431,441,0 +170734085479,434,0 +170734085527,261,0 +170734085576,233,0 +170734085626,441,0 +170734085675,441,0 +170734085723,441,0 +170734085771,441,0 +170734085821,441,0 +170734085869,441,0 +170734085917,441,0 +170734085965,441,0 +170734086012,441,0 +170734086060,441,0 +170734086108,441,0 +170734086156,441,0 +170734086204,441,0 +170734086252,441,0 +170734086301,441,0 +170734086349,441,0 +170734086397,441,0 +170734086445,441,0 +170734086495,441,0 +170734086543,290,1 +170734086622,255,0 +170734086670,441,0 +170734086720,441,0 +170734086769,441,0 +170734086817,441,0 +170734086867,441,0 +170734086915,441,0 +170734086964,441,0 +170734087012,441,0 +170734087060,441,0 +170734087108,441,0 +170734087158,441,0 +170734087206,441,0 +170734087254,441,0 +170734087302,441,0 +170734087350,441,0 +170734087399,441,0 +170734087447,441,0 +170734087495,441,0 +170734087543,441,0 +170734087593,282,1 +170734087679,233,0 +170734087726,441,0 +170734087774,441,0 +170734087822,441,0 +170734087870,441,0 +170734087918,441,0 +170734087966,441,0 +170734088015,441,0 +170734088063,441,0 +170734088111,441,0 +170734088159,441,0 +170734088207,441,0 +170734088255,441,0 +170734088304,441,0 +170734088352,441,0 +170734088400,441,0 +170734088448,441,0 +170734088498,441,0 +170734088546,441,0 +170734088594,441,0 +170734088643,285,1 +170734088728,251,0 +170734088776,441,0 +170734088825,441,0 +170734088873,441,0 +170734088921,441,0 +170734088969,441,0 +170734089017,441,0 +170734089066,441,0 +170734089114,441,0 +170734089164,441,0 +170734089212,441,0 +170734089260,441,0 +170734089309,441,0 +170734089359,441,0 +170734089407,441,0 +170734089456,441,0 +170734089504,441,0 +170734089552,441,0 +170734089600,441,0 +170734089650,441,0 +170734089698,288,1 +170734089781,435,0 +170734089830,441,0 +170734089880,441,0 +170734089928,441,0 +170734089976,441,0 +170734090023,441,0 +170734090071,441,0 +170734090119,441,0 +170734090167,441,0 +170734090215,441,0 +170734090263,441,0 +170734090311,441,0 +170734090358,441,0 +170734090406,441,0 +170734090456,441,0 +170734090504,441,0 +170734090552,441,0 +170734090600,441,0 +170734090648,441,0 +170734090696,441,0 +170734090743,286,1 +170734090823,247,0 +170734090873,441,0 +170734090922,441,0 +170734090972,441,0 +170734091020,441,0 +170734091068,441,0 +170734091116,441,0 +170734091164,441,0 +170734091212,441,0 +170734091261,441,0 +170734091309,441,0 +170734091357,441,0 +170734091405,441,0 +170734091453,441,0 +170734091501,441,0 +170734091551,441,0 +170734091600,441,0 +170734091648,441,0 +170734091696,441,0 +170734091746,441,0 +170734091795,288,1 +170734091881,430,0 +170734091930,441,0 +170734091978,441,0 +170734092026,441,0 +170734092074,441,0 +170734092122,441,0 +170734092171,441,0 +170734092221,441,0 +170734092269,441,0 +170734092318,441,0 +170734092366,441,0 +170734092415,441,0 +170734092463,441,0 +170734092513,441,0 +170734092561,441,0 +170734092609,441,0 +170734092658,441,0 +170734092706,441,0 +170734092754,441,0 +170734092802,441,0 +170734092852,275,1 +170734092939,438,0 +170734092987,441,0 +170734093037,441,0 +170734093084,441,0 +170734093132,441,0 +170734093180,441,0 +170734093228,441,0 +170734093278,441,0 +170734093326,441,0 +170734093374,441,0 +170734093421,441,0 +170734093469,441,0 +170734093517,441,0 +170734093565,441,0 +170734093613,441,0 +170734093663,441,0 +170734093711,441,0 +170734093759,441,0 +170734093808,441,0 +170734093856,440,0 +170734093906,295,1 +170734093984,437,0 +170734094032,441,0 +170734094081,441,0 +170734094129,441,0 +170734094177,441,0 +170734094225,441,0 +170734094273,441,0 +170734094321,441,0 +170734094371,441,0 +170734094419,441,0 +170734094468,441,0 +170734094518,441,0 +170734094566,441,0 +170734094614,441,0 +170734094662,441,0 +170734094711,441,0 +170734094759,441,0 +170734094807,441,0 +170734094855,441,0 +170734094903,441,0 +170734094951,312,0 +170734094999,299,1 +170734095080,441,0 +170734095128,441,0 +170734095177,441,0 +170734095225,441,0 +170734095273,441,0 +170734095321,441,0 +170734095369,441,0 +170734095419,441,0 +170734095467,441,0 +170734095515,441,0 +170734095564,441,0 +170734095612,441,0 +170734095662,441,0 +170734095710,441,0 +170734095759,441,0 +170734095807,441,0 +170734095855,441,0 +170734095903,441,0 +170734095951,441,0 +170734096001,295,1 +170734096085,433,0 +170734096132,441,0 +170734096180,441,0 +170734096228,441,0 +170734096276,441,0 +170734096324,441,0 +170734096374,441,0 +170734096423,441,0 +170734096471,441,0 +170734096519,441,0 +170734096569,441,0 +170734096617,441,0 +170734096665,441,0 +170734096714,441,0 +170734096764,441,0 +170734096812,441,0 +170734096860,441,0 +170734096907,441,0 +170734096955,441,0 +170734097005,440,0 +170734097054,290,1 +170734097142,439,0 +170734097191,441,0 +170734097241,441,0 +170734097289,441,0 +170734097337,441,0 +170734097386,441,0 +170734097434,441,0 +170734097482,441,0 +170734097530,441,0 +170734097578,441,0 +170734097626,441,0 +170734097674,441,0 +170734097722,441,0 +170734097770,441,0 +170734097818,441,0 +170734097867,441,0 +170734097915,441,0 +170734097965,441,0 +170734098014,441,0 +170734098062,441,0 +170734098112,301,1 +170734098199,440,0 +170734098247,441,0 +170734098296,441,0 +170734098344,441,0 +170734098392,441,0 +170734098440,441,0 +170734098488,441,0 +170734098536,441,0 +170734098584,441,0 +170734098632,441,0 +170734098680,441,0 +170734098727,441,0 +170734098775,441,0 +170734098823,441,0 +170734098871,441,0 +170734098919,441,0 +170734098967,441,0 +170734099015,441,0 +170734099064,441,0 +170734099112,410,0 +170734099160,293,1 +170734099248,441,0 +170734099296,441,0 +170734099344,441,0 +170734099392,441,0 +170734099440,441,0 +170734099488,441,0 +170734099536,441,0 +170734099583,441,0 +170734099631,441,0 +170734099679,441,0 +170734099727,441,0 +170734099775,441,0 +170734099823,441,0 +170734099871,441,0 +170734099919,441,0 +170734099966,441,0 +170734100014,441,0 +170734100062,441,0 +170734100110,441,0 +170734100158,427,0 +170734100206,292,1 +170734100293,440,0 +170734100340,441,0 +170734100390,441,0 +170734100438,441,0 +170734100486,441,0 +170734100534,441,0 +170734100581,441,0 +170734100629,441,0 +170734100677,441,0 +170734100725,441,0 +170734100773,441,0 +170734100821,441,0 +170734100869,441,0 +170734100918,441,0 +170734100968,441,0 +170734101017,441,0 +170734101065,441,0 +170734101113,441,0 +170734101163,441,0 +170734101211,428,0 +170734101260,303,1 +170734101346,440,0 +170734101394,441,0 +170734101442,441,0 +170734101490,441,0 +170734101540,441,0 +170734101588,441,0 +170734101636,441,0 +170734101684,441,0 +170734101732,441,0 +170734101780,441,0 +170734101827,441,0 +170734101875,441,0 +170734101923,441,0 +170734101973,441,0 +170734102021,441,0 +170734102069,441,0 +170734102118,441,0 +170734102168,441,0 +170734102216,441,0 +170734102264,424,0 +170734102313,294,1 +170734102392,439,0 +170734102440,441,0 +170734102488,441,0 +170734102536,441,0 +170734102584,441,0 +170734102633,441,0 +170734102681,441,0 +170734102731,441,0 +170734102779,441,0 +170734102828,441,0 +170734102876,441,0 +170734102926,441,0 +170734102975,441,0 +170734103025,441,0 +170734103074,441,0 +170734103122,441,0 +170734103170,441,0 +170734103220,441,0 +170734103268,441,0 +170734103316,293,1 +170734103407,248,0 +170734103456,441,0 +170734103504,441,0 +170734103552,441,0 +170734103600,441,0 +170734103648,441,0 +170734103698,441,0 +170734103746,441,0 +170734103794,441,0 +170734103843,441,0 +170734103891,441,0 +170734103941,441,0 +170734103990,441,0 +170734104038,441,0 +170734104088,441,0 +170734104136,441,0 +170734104184,441,0 +170734104232,441,0 +170734104281,441,0 +170734104329,441,0 +170734104377,294,1 +170734104467,434,0 +170734104515,441,0 +170734104563,441,0 +170734104611,441,0 +170734104660,441,0 +170734104708,441,0 +170734104756,441,0 +170734104804,441,0 +170734104852,441,0 +170734104900,441,0 +170734104948,441,0 +170734104997,441,0 +170734105047,441,0 +170734105096,441,0 +170734105146,441,0 +170734105194,441,0 +170734105242,441,0 +170734105290,441,0 +170734105339,441,0 +170734105389,441,0 +170734105437,286,1 +170734105520,437,0 +170734105568,441,0 +170734105617,441,0 +170734105667,441,0 +170734105716,441,0 +170734105766,441,0 +170734105814,441,0 +170734105862,441,0 +170734105910,441,0 +170734105959,441,0 +170734106009,441,0 +170734106057,441,0 +170734106106,441,0 +170734106156,441,0 +170734106206,441,0 +170734106255,441,0 +170734106303,441,0 +170734106351,441,0 +170734106399,441,0 +170734106447,441,0 +170734106497,291,1 +170734106579,439,0 +170734106627,441,0 +170734106676,441,0 +170734106726,441,0 +170734106774,441,0 +170734106823,441,0 +170734106871,441,0 +170734106919,441,0 +170734106967,441,0 +170734107015,441,0 +170734107065,441,0 +170734107113,441,0 +170734107162,441,0 +170734107210,441,0 +170734107258,441,0 +170734107306,441,0 +170734107354,441,0 +170734107403,441,0 +170734107451,441,0 +170734107499,440,0 +170734107547,301,1 +170734107636,440,0 +170734107686,441,0 +170734107734,441,0 +170734107782,441,0 +170734107831,441,0 +170734107881,441,0 +170734107929,441,0 +170734107977,441,0 +170734108025,441,0 +170734108074,441,0 +170734108122,441,0 +170734108170,441,0 +170734108218,441,0 +170734108266,441,0 +170734108314,441,0 +170734108362,441,0 +170734108412,441,0 +170734108461,441,0 +170734108511,441,0 +170734108559,303,1 +170734108646,242,0 +170734108696,441,0 +170734108744,441,0 +170734108793,441,0 +170734108841,441,0 +170734108889,441,0 +170734108937,441,0 +170734108985,441,0 +170734109035,441,0 +170734109083,441,0 +170734109131,441,0 +170734109179,441,0 +170734109228,441,0 +170734109278,441,0 +170734109327,441,0 +170734109377,441,0 +170734109426,441,0 +170734109474,441,0 +170734109522,441,0 +170734109572,441,0 +170734109620,292,1 +170734109710,435,0 +170734109758,441,0 +170734109806,441,0 +170734109856,441,0 +170734109904,441,0 +170734109952,441,0 +170734110001,441,0 +170734110049,441,0 +170734110098,441,0 +170734110146,441,0 +170734110196,441,0 +170734110244,441,0 +170734110292,441,0 +170734110341,441,0 +170734110389,441,0 +170734110437,441,0 +170734110485,441,0 +170734110533,441,0 +170734110581,441,0 +170734110629,432,0 +170734110678,245,0 +170734110726,249,0 +170734110774,439,0 +170734110822,441,0 +170734110870,441,0 +170734110918,441,0 +170734110966,441,0 +170734111016,441,0 +170734111063,441,0 +170734111113,441,0 +170734111161,441,0 +170734111209,441,0 +170734111257,441,0 +170734111305,441,0 +170734111353,441,0 +170734111400,441,0 +170734111448,441,0 +170734111496,441,0 +170734111544,441,0 +170734111594,441,0 +170734111641,441,0 +170734111689,440,0 +170734111737,296,1 +170734111824,439,0 +170734111872,441,0 +170734111920,441,0 +170734111970,441,0 +170734112018,441,0 +170734112066,441,0 +170734112114,441,0 +170734112163,441,0 +170734112211,441,0 +170734112259,441,0 +170734112307,441,0 +170734112355,441,0 +170734112403,441,0 +170734112451,441,0 +170734112499,441,0 +170734112548,441,0 +170734112596,441,0 +170734112644,441,0 +170734112694,441,0 +170734112742,437,0 +170734112789,306,1 +170734112880,440,0 +170734112930,441,0 +170734112979,441,0 +170734113029,441,0 +170734113077,441,0 +170734113126,441,0 +170734113174,441,0 +170734113222,441,0 +170734113270,441,0 +170734113320,441,0 +170734113368,441,0 +170734113416,441,0 +170734113464,441,0 +170734113513,441,0 +170734113563,441,0 +170734113612,441,0 +170734113660,441,0 +170734113710,441,0 +170734113757,441,0 +170734113805,294,1 +170734113889,241,0 +170734113937,441,0 +170734113985,441,0 +170734114035,441,0 +170734114083,441,0 +170734114131,441,0 +170734114180,441,0 +170734114230,441,0 +170734114279,441,0 +170734114329,441,0 +170734114377,441,0 +170734114425,441,0 +170734114473,441,0 +170734114520,441,0 +170734114568,441,0 +170734114616,441,0 +170734114664,441,0 +170734114712,441,0 +170734114762,441,0 +170734114810,441,0 +170734114858,309,1 +170734114938,248,0 +170734114988,441,0 +170734115038,441,0 +170734115085,441,0 +170734115135,441,0 +170734115185,441,0 +170734115233,441,0 +170734115281,441,0 +170734115328,441,0 +170734115378,441,0 +170734115426,441,0 +170734115474,441,0 +170734115522,441,0 +170734115571,441,0 +170734115621,441,0 +170734115669,441,0 +170734115718,441,0 +170734115768,441,0 +170734115816,441,0 +170734115864,441,0 +170734115913,306,1 +170734115995,432,0 +170734116043,441,0 +170734116091,441,0 +170734116139,441,0 +170734116186,441,0 +170734116234,441,0 +170734116282,441,0 +170734116332,441,0 +170734116380,441,0 +170734116428,441,0 +170734116476,441,0 +170734116524,441,0 +170734116572,441,0 +170734116621,441,0 +170734116669,441,0 +170734116717,441,0 +170734116765,441,0 +170734116815,441,0 +170734116863,441,0 +170734116910,441,0 +170734116958,294,1 +170734117044,237,0 +170734117094,441,0 +170734117142,441,0 +170734117190,441,0 +170734117239,441,0 +170734117289,441,0 +170734117337,441,0 +170734117384,441,0 +170734117432,441,0 +170734117480,441,0 +170734117528,441,0 +170734117578,441,0 +170734117626,441,0 +170734117674,441,0 +170734117722,441,0 +170734117771,441,0 +170734117819,441,0 +170734117869,441,0 +170734117917,441,0 +170734117964,441,0 +170734118012,306,1 +170734118096,267,0 +170734118143,441,0 +170734118191,441,0 +170734118239,441,0 +170734118287,441,0 +170734118335,441,0 +170734118383,441,0 +170734118431,441,0 +170734118479,441,0 +170734118527,441,0 +170734118575,441,0 +170734118624,441,0 +170734118674,441,0 +170734118722,441,0 +170734118771,441,0 +170734118819,441,0 +170734118867,441,0 +170734118915,441,0 +170734118963,441,0 +170734119013,441,0 +170734119061,296,1 +170734119140,433,0 +170734119190,441,0 +170734119238,441,0 +170734119286,441,0 +170734119334,441,0 +170734119381,441,0 +170734119429,441,0 +170734119477,441,0 +170734119527,441,0 +170734119575,441,0 +170734119624,441,0 +170734119674,441,0 +170734119724,441,0 +170734119772,441,0 +170734119821,441,0 +170734119869,441,0 +170734119918,441,0 +170734119966,441,0 +170734120014,441,0 +170734120064,441,0 +170734120112,291,1 +170734120200,436,0 +170734120248,441,0 +170734120295,441,0 +170734120345,441,0 +170734120393,441,0 +170734120443,441,0 +170734120490,441,0 +170734120538,441,0 +170734120586,441,0 +170734120634,441,0 +170734120682,441,0 +170734120730,441,0 +170734120778,441,0 +170734120826,441,0 +170734120876,441,0 +170734120924,441,0 +170734120972,441,0 +170734121020,441,0 +170734121069,441,0 +170734121119,441,0 +170734121166,306,1 +170734121253,437,0 +170734121301,441,0 +170734121349,441,0 +170734121398,441,0 +170734121446,441,0 +170734121494,441,0 +170734121542,441,0 +170734121590,441,0 +170734121637,441,0 +170734121687,441,0 +170734121735,441,0 +170734121783,441,0 +170734121831,441,0 +170734121879,441,0 +170734121927,441,0 +170734121976,441,0 +170734122024,441,0 +170734122072,441,0 +170734122120,441,0 +170734122168,437,0 +170734122216,294,1 +170734122312,440,0 +170734122360,441,0 +170734122408,441,0 +170734122457,441,0 +170734122505,441,0 +170734122553,441,0 +170734122601,441,0 +170734122649,441,0 +170734122697,441,0 +170734122745,441,0 +170734122795,441,0 +170734122843,441,0 +170734122891,441,0 +170734122939,441,0 +170734122986,441,0 +170734123034,441,0 +170734123084,441,0 +170734123133,441,0 +170734123181,441,0 +170734123231,268,0 +170734123279,306,1 +170734123363,440,0 +170734123413,441,0 +170734123461,441,0 +170734123509,441,0 +170734123558,441,0 +170734123608,441,0 +170734123656,441,0 +170734123704,441,0 +170734123752,441,0 +170734123800,441,0 +170734123849,441,0 +170734123899,441,0 +170734123948,441,0 +170734123996,441,0 +170734124044,441,0 +170734124092,441,0 +170734124140,441,0 +170734124189,441,0 +170734124237,441,0 +170734124285,291,1 +170734124374,252,0 +170734124422,441,0 +170734124470,441,0 +170734124518,441,0 +170734124567,441,0 +170734124615,441,0 +170734124663,441,0 +170734124713,441,0 +170734124761,441,0 +170734124810,441,0 +170734124860,441,0 +170734124909,441,0 +170734124959,441,0 +170734125007,441,0 +170734125055,441,0 +170734125103,441,0 +170734125150,441,0 +170734125198,441,0 +170734125246,441,0 +170734125294,441,0 +170734125342,313,0 +170734125390,308,1 +170734125471,441,0 +170734125521,441,0 +170734125570,441,0 +170734125620,441,0 +170734125668,441,0 +170734125717,441,0 +170734125767,441,0 +170734125816,441,0 +170734125864,441,0 +170734125914,441,0 +170734125962,441,0 +170734126011,441,0 +170734126059,441,0 +170734126107,441,0 +170734126155,441,0 +170734126205,441,0 +170734126254,441,0 +170734126302,441,0 +170734126350,441,0 +170734126398,303,1 +170734126484,436,0 +170734126532,441,0 +170734126580,441,0 +170734126629,441,0 +170734126677,441,0 +170734126725,441,0 +170734126773,441,0 +170734126823,441,0 +170734126872,441,0 +170734126921,441,0 +170734126969,441,0 +170734127017,441,0 +170734127067,441,0 +170734127116,441,0 +170734127164,441,0 +170734127214,441,0 +170734127262,441,0 +170734127310,441,0 +170734127359,441,0 +170734127407,440,0 +170734127455,303,1 +170734127545,439,0 +170734127592,441,0 +170734127640,441,0 +170734127688,441,0 +170734127736,441,0 +170734127786,441,0 +170734127833,441,0 +170734127881,441,0 +170734127931,441,0 +170734127979,441,0 +170734128026,441,0 +170734128074,441,0 +170734128122,441,0 +170734128170,441,0 +170734128218,441,0 +170734128266,441,0 +170734128314,441,0 +170734128362,441,0 +170734128410,441,0 +170734128458,439,0 +170734128507,300,1 +170734128598,440,0 +170734128646,441,0 +170734128696,441,0 +170734128745,441,0 +170734128793,441,0 +170734128841,441,0 +170734128889,441,0 +170734128937,441,0 +170734128985,441,0 +170734129033,441,0 +170734129081,441,0 +170734129130,441,0 +170734129180,441,0 +170734129230,441,0 +170734129278,441,0 +170734129327,441,0 +170734129375,441,0 +170734129423,441,0 +170734129471,441,0 +170734129519,298,1 +170734129608,259,0 +170734129656,441,0 +170734129706,441,0 +170734129756,441,0 +170734129805,441,0 +170734129855,441,0 +170734129904,441,0 +170734129952,441,0 +170734130002,441,0 +170734130051,441,0 +170734130099,441,0 +170734130147,441,0 +170734130195,441,0 +170734130243,441,0 +170734130291,441,0 +170734130339,441,0 +170734130388,441,0 +170734130436,441,0 +170734130486,441,0 +170734130534,441,0 +170734130582,298,1 +170734130665,384,0 +170734130713,441,0 +170734130762,441,0 +170734130810,441,0 +170734130860,441,0 +170734130908,441,0 +170734130956,441,0 +170734131006,441,0 +170734131054,441,0 +170734131103,441,0 +170734131151,441,0 +170734131199,441,0 +170734131247,441,0 +170734131297,441,0 +170734131346,441,0 +170734131394,441,0 +170734131444,441,0 +170734131492,441,0 +170734131539,441,0 +170734131587,441,0 +170734131635,298,1 +170734131715,238,0 +170734131764,441,0 +170734131814,441,0 +170734131862,441,0 +170734131910,441,0 +170734131958,441,0 +170734132006,441,0 +170734132054,441,0 +170734132103,441,0 +170734132151,441,0 +170734132199,441,0 +170734132249,441,0 +170734132297,441,0 +170734132346,441,0 +170734132396,441,0 +170734132444,441,0 +170734132492,441,0 +170734132540,441,0 +170734132588,441,0 +170734132636,441,0 +170734132684,302,1 +170734132766,355,0 +170734132814,441,0 +170734132862,441,0 +170734132910,441,0 +170734132958,441,0 +170734133006,441,0 +170734133054,441,0 +170734133102,441,0 +170734133150,441,0 +170734133198,441,0 +170734133246,441,0 +170734133294,441,0 +170734133343,441,0 +170734133393,441,0 +170734133441,441,0 +170734133489,441,0 +170734133537,441,0 +170734133584,441,0 +170734133632,441,0 +170734133680,441,0 +170734133728,297,1 +170734133815,434,0 +170734133863,441,0 +170734133910,441,0 +170734133960,441,0 +170734134009,441,0 +170734134057,441,0 +170734134105,441,0 +170734134153,441,0 +170734134201,441,0 +170734134250,441,0 +170734134298,441,0 +170734134346,441,0 +170734134394,441,0 +170734134442,441,0 +170734134490,441,0 +170734134539,441,0 +170734134587,441,0 +170734134635,441,0 +170734134683,441,0 +170734134731,441,0 +170734134779,301,1 +170734134862,434,0 +170734134910,441,0 +170734134960,441,0 +170734135008,441,0 +170734135055,441,0 +170734135103,441,0 +170734135151,441,0 +170734135199,441,0 +170734135247,441,0 +170734135295,441,0 +170734135343,441,0 +170734135390,441,0 +170734135438,441,0 +170734135486,441,0 +170734135536,441,0 +170734135584,441,0 +170734135631,441,0 +170734135679,441,0 +170734135727,441,0 +170734135777,441,0 +170734135824,301,1 +170734135912,436,0 +170734135960,441,0 +170734136008,441,0 +170734136057,441,0 +170734136105,441,0 +170734136153,441,0 +170734136201,441,0 +170734136249,441,0 +170734136298,441,0 +170734136346,441,0 +170734136394,441,0 +170734136442,441,0 +170734136492,441,0 +170734136539,441,0 +170734136587,441,0 +170734136635,441,0 +170734136685,441,0 +170734136733,441,0 +170734136780,441,0 +170734136828,441,0 +170734136878,301,1 +170734136956,434,0 +170734137004,441,0 +170734137052,441,0 +170734137100,441,0 +170734137148,441,0 +170734137196,441,0 +170734137244,441,0 +170734137292,441,0 +170734137340,441,0 +170734137387,441,0 +170734137435,441,0 +170734137485,441,0 +170734137535,441,0 +170734137582,441,0 +170734137630,441,0 +170734137680,441,0 +170734137729,441,0 +170734137779,441,0 +170734137829,441,0 +170734137876,441,0 +170734137924,305,1 +170734138008,435,0 +170734138061,441,0 +170734138109,441,0 +170734138158,441,0 +170734138208,441,0 +170734138257,441,0 +170734138305,441,0 +170734138353,441,0 +170734138401,441,0 +170734138449,441,0 +170734138497,441,0 +170734138544,441,0 +170734138592,441,0 +170734138640,441,0 +170734138688,441,0 +170734138736,441,0 +170734138784,441,0 +170734138832,441,0 +170734138881,441,0 +170734138929,441,0 +170734138977,441,0 +170734139025,441,0 +170734139073,441,0 +170734139121,441,0 +170734139169,441,0 +170734139217,441,0 +170734139264,441,0 +170734139312,441,0 +170734139360,441,0 +170734139408,441,0 +170734139456,440,0 +170734139504,296,1 +170734139584,437,0 +170734139632,441,0 +170734139680,441,0 +170734139728,441,0 +170734139776,441,0 +170734139824,441,0 +170734139872,441,0 +170734139919,441,0 +170734139967,441,0 +170734140015,441,0 +170734140063,441,0 +170734140111,441,0 +170734140159,441,0 +170734140207,441,0 +170734140255,441,0 +170734140303,441,0 +170734140351,441,0 +170734140400,441,0 +170734140448,441,0 +170734140496,441,0 +170734140546,293,1 +170734140631,437,0 +170734140681,441,0 +170734140729,441,0 +170734140777,441,0 +170734140826,441,0 +170734140874,441,0 +170734140924,441,0 +170734140972,441,0 +170734141020,441,0 +170734141067,441,0 +170734141115,441,0 +170734141163,441,0 +170734141211,441,0 +170734141259,441,0 +170734141307,441,0 +170734141355,441,0 +170734141403,441,0 +170734141453,441,0 +170734141500,441,0 +170734141548,440,0 +170734141596,303,1 +170734141677,434,0 +170734141727,441,0 +170734141775,441,0 +170734141823,441,0 +170734141872,441,0 +170734141920,441,0 +170734141968,441,0 +170734142016,441,0 +170734142066,441,0 +170734142114,441,0 +170734142163,441,0 +170734142211,441,0 +170734142259,441,0 +170734142309,441,0 +170734142357,441,0 +170734142405,441,0 +170734142454,441,0 +170734142502,441,0 +170734142550,441,0 +170734142599,440,0 +170734142647,295,1 +170734142732,437,0 +170734142782,441,0 +170734142829,441,0 +170734142877,441,0 +170734142925,441,0 +170734142973,441,0 +170734143021,441,0 +170734143069,441,0 +170734143117,441,0 +170734143165,441,0 +170734143213,441,0 +170734143261,441,0 +170734143308,441,0 +170734143356,441,0 +170734143404,441,0 +170734143452,441,0 +170734143500,441,0 +170734143548,441,0 +170734143595,441,0 +170734143643,441,0 +170734143691,307,1 +170734143781,437,0 +170734143829,441,0 +170734143877,441,0 +170734143925,441,0 +170734143974,441,0 +170734144024,441,0 +170734144073,441,0 +170734144121,441,0 +170734144171,441,0 +170734144220,441,0 +170734144268,441,0 +170734144318,441,0 +170734144367,441,0 +170734144415,441,0 +170734144463,441,0 +170734144512,441,0 +170734144562,441,0 +170734144610,441,0 +170734144659,441,0 +170734144707,341,0 +170734144757,305,1 +170734144844,440,0 +170734144893,441,0 +170734144943,441,0 +170734144992,441,0 +170734145040,441,0 +170734145088,441,0 +170734145136,441,0 +170734145186,441,0 +170734145233,441,0 +170734145283,441,0 +170734145331,441,0 +170734145380,441,0 +170734145428,441,0 +170734145478,441,0 +170734145526,441,0 +170734145574,441,0 +170734145622,441,0 +170734145670,441,0 +170734145718,441,0 +170734145765,296,1 +170734145852,256,0 +170734145900,440,0 +170734145950,441,0 +170734145998,441,0 +170734146046,441,0 +170734146093,441,0 +170734146141,441,0 +170734146189,441,0 +170734146237,441,0 +170734146285,441,0 +170734146333,441,0 +170734146383,441,0 +170734146432,441,0 +170734146480,441,0 +170734146528,441,0 +170734146578,441,0 +170734146626,441,0 +170734146674,441,0 +170734146723,441,0 +170734146773,441,0 +170734146821,302,1 +170734146909,425,0 +170734146958,441,0 +170734147006,441,0 +170734147054,441,0 +170734147102,441,0 +170734147150,441,0 +170734147198,441,0 +170734147246,441,0 +170734147294,441,0 +170734147342,441,0 +170734147390,441,0 +170734147438,441,0 +170734147487,441,0 +170734147535,441,0 +170734147583,441,0 +170734147633,441,0 +170734147681,441,0 +170734147730,441,0 +170734147780,441,0 +170734147827,441,0 +170734147875,306,1 +170734147957,237,0 +170734148005,441,0 +170734148053,441,0 +170734148101,441,0 +170734148151,441,0 +170734148199,441,0 +170734148247,441,0 +170734148295,441,0 +170734148342,441,0 +170734148392,441,0 +170734148440,441,0 +170734148489,441,0 +170734148537,441,0 +170734148585,441,0 +170734148633,441,0 +170734148683,441,0 +170734148731,441,0 +170734148780,441,0 +170734148830,441,0 +170734148878,441,0 +170734148926,302,1 +170734149018,438,0 +170734149068,441,0 +170734149116,441,0 +170734149164,441,0 +170734149213,441,0 +170734149261,441,0 +170734149311,441,0 +170734149359,441,0 +170734149408,441,0 +170734149458,441,0 +170734149507,441,0 +170734149555,441,0 +170734149603,441,0 +170734149653,441,0 +170734149702,441,0 +170734149750,441,0 +170734149798,441,0 +170734149846,441,0 +170734149894,441,0 +170734149942,424,0 +170734149990,305,1 +170734150072,438,0 +170734150120,441,0 +170734150167,441,0 +170734150217,441,0 +170734150265,441,0 +170734150313,441,0 +170734150361,441,0 +170734150409,441,0 +170734150457,441,0 +170734150505,441,0 +170734150554,441,0 +170734150602,441,0 +170734150652,441,0 +170734150700,441,0 +170734150748,441,0 +170734150795,441,0 +170734150843,441,0 +170734150891,441,0 +170734150939,441,0 +170734150987,440,0 +170734151037,296,1 +170734151118,437,0 +170734151166,441,0 +170734151214,441,0 +170734151263,441,0 +170734151311,441,0 +170734151359,441,0 +170734151407,441,0 +170734151457,441,0 +170734151506,441,0 +170734151556,441,0 +170734151605,441,0 +170734151653,441,0 +170734151703,441,0 +170734151752,441,0 +170734151800,441,0 +170734151848,441,0 +170734151898,441,0 +170734151946,441,0 +170734151995,441,0 +170734152043,301,1 +170734152127,302,1 +170734152205,441,0 +170734152255,441,0 +170734152303,441,0 +170734152352,441,0 +170734152402,441,0 +170734152450,441,0 +170734152499,441,0 +170734152547,441,0 +170734152595,441,0 +170734152644,441,0 +170734152692,441,0 +170734152740,441,0 +170734152788,441,0 +170734152836,441,0 +170734152884,441,0 +170734152934,441,0 +170734152982,441,0 +170734153030,441,0 +170734153078,440,0 +170734153126,298,1 +170734153210,438,0 +170734153260,441,0 +170734153308,441,0 +170734153357,441,0 +170734153405,441,0 +170734153453,441,0 +170734153501,441,0 +170734153549,441,0 +170734153597,441,0 +170734153645,441,0 +170734153693,441,0 +170734153741,441,0 +170734153790,441,0 +170734153838,441,0 +170734153888,441,0 +170734153936,441,0 +170734153984,441,0 +170734154032,441,0 +170734154081,441,0 +170734154131,441,0 +170734154179,298,1 +170734154262,435,0 +170734154310,441,0 +170734154358,441,0 +170734154406,441,0 +170734154455,441,0 +170734154505,441,0 +170734154554,441,0 +170734154602,441,0 +170734154650,441,0 +170734154698,441,0 +170734154748,441,0 +170734154796,441,0 +170734154845,441,0 +170734154895,441,0 +170734154943,441,0 +170734154991,441,0 +170734155039,441,0 +170734155088,441,0 +170734155136,441,0 +170734155184,440,0 +170734155234,300,1 +170734155313,437,0 +170734155362,441,0 +170734155412,441,0 +170734155460,441,0 +170734155509,441,0 +170734155557,441,0 +170734155605,441,0 +170734155653,441,0 +170734155701,441,0 +170734155749,441,0 +170734155797,441,0 +170734155845,441,0 +170734155894,441,0 +170734155944,441,0 +170734155992,441,0 +170734156041,441,0 +170734156091,441,0 +170734156139,441,0 +170734156188,441,0 +170734156238,279,1 +170734156341,416,0 +170734156390,441,0 +170734156438,441,0 +170734156486,441,0 +170734156534,441,0 +170734156582,441,0 +170734156630,441,0 +170734156678,441,0 +170734156726,441,0 +170734156776,441,0 +170734156825,441,0 +170734156873,441,0 +170734156921,441,0 +170734156969,441,0 +170734157017,441,0 +170734157065,441,0 +170734157113,441,0 +170734157161,441,0 +170734157209,441,0 +170734157257,441,0 +170734157305,307,1 +170734157386,254,0 +170734157434,441,0 +170734157483,441,0 +170734157531,441,0 +170734157579,441,0 +170734157629,441,0 +170734157677,441,0 +170734157725,441,0 +170734157772,441,0 +170734157820,441,0 +170734157868,441,0 +170734157916,441,0 +170734157964,441,0 +170734158014,441,0 +170734158062,441,0 +170734158110,441,0 +170734158158,441,0 +170734158206,441,0 +170734158255,441,0 +170734158303,441,0 +170734158353,310,0 +170734158401,304,1 +170734158488,441,0 +170734158536,441,0 +170734158585,441,0 +170734158633,441,0 +170734158681,441,0 +170734158729,441,0 +170734158779,441,0 +170734158828,441,0 +170734158876,441,0 +170734158924,441,0 +170734158974,441,0 +170734159022,441,0 +170734159070,441,0 +170734159117,441,0 +170734159165,441,0 +170734159215,441,0 +170734159264,441,0 +170734159312,441,0 +170734159362,440,0 +170734159409,294,1 +170734159494,435,0 +170734159542,441,0 +170734159591,441,0 +170734159639,441,0 +170734159687,441,0 +170734159735,441,0 +170734159783,441,0 +170734159832,441,0 +170734159882,441,0 +170734159930,441,0 +170734159979,441,0 +170734160027,441,0 +170734160077,441,0 +170734160125,441,0 +170734160173,441,0 +170734160222,441,0 +170734160270,441,0 +170734160318,441,0 +170734160366,441,0 +170734160414,441,0 +170734160462,277,1 +170734160548,433,0 +170734160597,441,0 +170734160645,441,0 +170734160693,441,0 +170734160741,441,0 +170734160789,441,0 +170734160837,441,0 +170734160885,441,0 +170734160935,441,0 +170734160983,441,0 +170734161031,441,0 +170734161079,441,0 +170734161126,441,0 +170734161174,441,0 +170734161222,441,0 +170734161270,441,0 +170734161318,441,0 +170734161366,441,0 +170734161414,441,0 +170734161463,441,0 +170734161511,295,1 +170734161596,434,0 +170734161644,441,0 +170734161692,441,0 +170734161741,441,0 +170734161789,441,0 +170734161837,441,0 +170734161885,441,0 +170734161933,441,0 +170734161981,441,0 +170734162030,441,0 +170734162080,441,0 +170734162129,441,0 +170734162177,441,0 +170734162225,441,0 +170734162275,441,0 +170734162323,441,0 +170734162371,441,0 +170734162420,441,0 +170734162468,441,0 +170734162516,440,0 +170734162564,288,1 +170734162650,437,0 +170734162699,441,0 +170734162749,441,0 +170734162797,441,0 +170734162847,441,0 +170734162896,441,0 +170734162944,441,0 +170734162992,441,0 +170734163040,441,0 +170734163089,441,0 +170734163139,441,0 +170734163187,441,0 +170734163235,441,0 +170734163284,441,0 +170734163332,441,0 +170734163380,441,0 +170734163428,441,0 +170734163476,441,0 +170734163526,441,0 +170734163574,440,0 +170734163622,299,1 +170734163703,438,0 +170734163751,441,0 +170734163800,441,0 +170734163848,441,0 +170734163896,441,0 +170734163944,441,0 +170734163994,441,0 +170734164043,441,0 +170734164093,441,0 +170734164141,441,0 +170734164189,441,0 +170734164236,441,0 +170734164284,441,0 +170734164332,441,0 +170734164380,441,0 +170734164428,441,0 +170734164478,441,0 +170734164526,441,0 +170734164574,441,0 +170734164622,439,0 +170734164669,298,1 +170734164749,436,0 +170734164799,441,0 +170734164847,441,0 +170734164895,441,0 +170734164943,441,0 +170734164991,441,0 +170734165039,441,0 +170734165087,441,0 +170734165135,441,0 +170734165183,441,0 +170734165232,441,0 +170734165280,441,0 +170734165330,441,0 +170734165379,441,0 +170734165427,441,0 +170734165477,441,0 +170734165525,441,0 +170734165573,441,0 +170734165621,441,0 +170734165670,436,0 +170734165720,296,1 +170734165804,439,0 +170734165854,441,0 +170734165903,441,0 +170734165951,441,0 +170734165999,441,0 +170734166047,441,0 +170734166097,441,0 +170734166145,441,0 +170734166194,441,0 +170734166242,441,0 +170734166290,441,0 +170734166338,441,0 +170734166387,441,0 +170734166435,441,0 +170734166483,441,0 +170734166531,441,0 +170734166579,441,0 +170734166629,441,0 +170734166677,441,0 +170734166725,423,0 +170734166774,304,1 +170734166859,440,0 +170734166907,441,0 +170734166957,441,0 +170734167006,441,0 +170734167056,441,0 +170734167105,441,0 +170734167153,441,0 +170734167201,441,0 +170734167249,441,0 +170734167297,441,0 +170734167346,441,0 +170734167394,441,0 +170734167443,441,0 +170734167493,441,0 +170734167541,441,0 +170734167588,441,0 +170734167636,441,0 +170734167686,441,0 +170734167734,441,0 +170734167783,303,1 +170734167870,239,0 +170734167918,441,0 +170734167968,441,0 +170734168016,441,0 +170734168064,441,0 +170734168113,441,0 +170734168161,441,0 +170734168209,441,0 +170734168258,441,0 +170734168306,441,0 +170734168354,441,0 +170734168402,441,0 +170734168450,441,0 +170734168498,441,0 +170734168546,441,0 +170734168594,441,0 +170734168642,441,0 +170734168692,441,0 +170734168740,441,0 +170734168788,441,0 +170734168836,305,1 +170734168932,434,0 +170734168981,441,0 +170734169029,441,0 +170734169079,441,0 +170734169127,441,0 +170734169175,441,0 +170734169223,441,0 +170734169271,441,0 +170734169320,441,0 +170734169368,441,0 +170734169416,441,0 +170734169466,441,0 +170734169513,441,0 +170734169561,441,0 +170734169609,441,0 +170734169657,441,0 +170734169705,441,0 +170734169753,441,0 +170734169803,441,0 +170734169851,441,0 +170734169899,301,1 +170734169984,433,0 +170734170033,441,0 +170734170081,441,0 +170734170131,441,0 +170734170179,441,0 +170734170227,441,0 +170734170275,441,0 +170734170322,441,0 +170734170370,441,0 +170734170420,441,0 +170734170468,441,0 +170734170516,441,0 +170734170565,441,0 +170734170615,441,0 +170734170663,441,0 +170734170711,441,0 +170734170759,441,0 +170734170807,441,0 +170734170855,441,0 +170734170903,440,0 +170734170951,289,1 +170734171040,437,0 +170734171088,441,0 +170734171135,441,0 +170734171185,441,0 +170734171233,441,0 +170734171281,441,0 +170734171330,441,0 +170734171378,441,0 +170734171426,441,0 +170734171474,441,0 +170734171524,441,0 +170734171572,441,0 +170734171620,441,0 +170734171669,441,0 +170734171717,441,0 +170734171765,441,0 +170734171815,441,0 +170734171863,441,0 +170734171912,441,0 +170734171960,434,0 +170734172008,291,1 +170734172085,438,0 +170734172133,441,0 +170734172181,441,0 +170734172229,441,0 +170734172279,441,0 +170734172326,441,0 +170734172374,441,0 +170734172422,441,0 +170734172470,441,0 +170734172518,441,0 +170734172568,441,0 +170734172616,441,0 +170734172665,441,0 +170734172715,441,0 +170734172763,441,0 +170734172811,441,0 +170734172860,441,0 +170734172908,441,0 +170734172956,441,0 +170734173004,441,0 +170734173054,270,1 +170734173145,439,0 +170734173193,441,0 +170734173241,441,0 +170734173289,441,0 +170734173338,441,0 +170734173388,441,0 +170734173436,441,0 +170734173485,441,0 +170734173535,441,0 +170734173583,441,0 +170734173631,441,0 +170734173680,441,0 +170734173730,441,0 +170734173778,441,0 +170734173826,441,0 +170734173875,441,0 +170734173923,441,0 +170734173971,441,0 +170734174021,441,0 +170734174070,306,1 +170734174160,345,0 +170734174208,441,0 +170734174256,441,0 +170734174304,441,0 +170734174352,441,0 +170734174401,441,0 +170734174449,441,0 +170734174497,441,0 +170734174547,441,0 +170734174595,441,0 +170734174644,441,0 +170734174692,441,0 +170734174742,441,0 +170734174790,441,0 +170734174839,441,0 +170734174887,441,0 +170734174935,441,0 +170734174985,441,0 +170734175034,441,0 +170734175082,441,0 +170734175130,295,1 +170734175214,254,0 +170734175264,441,0 +170734175313,441,0 +170734175361,441,0 +170734175410,441,0 +170734175458,441,0 +170734175506,441,0 +170734175556,441,0 +170734175604,441,0 +170734175652,441,0 +170734175701,441,0 +170734175749,441,0 +170734175797,441,0 +170734175845,441,0 +170734175893,441,0 +170734175941,441,0 +170734175989,441,0 +170734176037,441,0 +170734176087,441,0 +170734176136,441,0 +170734176186,291,1 +170734176266,238,0 +170734176315,441,0 +170734176365,441,0 +170734176414,441,0 +170734176462,441,0 +170734176512,441,0 +170734176561,441,0 +170734176609,441,0 +170734176659,441,0 +170734176707,441,0 +170734176755,441,0 +170734176804,441,0 +170734176854,441,0 +170734176902,441,0 +170734176950,441,0 +170734176998,441,0 +170734177047,441,0 +170734177095,441,0 +170734177143,441,0 +170734177191,441,0 +170734177239,267,0 +170734177287,304,1 +170734177373,441,0 +170734177421,441,0 +170734177470,441,0 +170734177520,441,0 +170734177570,441,0 +170734177617,441,0 +170734177667,441,0 +170734177716,441,0 +170734177766,441,0 +170734177814,441,0 +170734177863,441,0 +170734177913,441,0 +170734177963,441,0 +170734178010,441,0 +170734178060,441,0 +170734178109,441,0 +170734178159,441,0 +170734178209,441,0 +170734178256,303,1 +170734178345,248,0 +170734178395,441,0 +170734178443,441,0 +170734178492,441,0 +170734178540,441,0 +170734178590,441,0 +170734178638,441,0 +170734178687,441,0 +170734178737,441,0 +170734178785,441,0 +170734178833,441,0 +170734178881,441,0 +170734178930,441,0 +170734178980,441,0 +170734179028,441,0 +170734179077,441,0 +170734179125,441,0 +170734179173,441,0 +170734179221,441,0 +170734179269,441,0 +170734179317,308,1 +170734179404,243,0 +170734179454,441,0 +170734179502,441,0 +170734179551,441,0 +170734179601,441,0 +170734179650,441,0 +170734179700,441,0 +170734179749,441,0 +170734179797,441,0 +170734179845,441,0 +170734179895,441,0 +170734179943,441,0 +170734179990,441,0 +170734180038,441,0 +170734180088,441,0 +170734180137,441,0 +170734180185,441,0 +170734180235,441,0 +170734180283,441,0 +170734180331,441,0 +170734180379,291,1 +170734180465,436,0 +170734180513,441,0 +170734180561,441,0 +170734180609,441,0 +170734180657,441,0 +170734180705,441,0 +170734180755,441,0 +170734180802,441,0 +170734180850,441,0 +170734180898,441,0 +170734180946,441,0 +170734180996,441,0 +170734181045,441,0 +170734181093,441,0 +170734181141,441,0 +170734181189,441,0 +170734181237,441,0 +170734181287,441,0 +170734181335,441,0 +170734181383,440,0 +170734181431,286,1 +170734181509,436,0 +170734181557,441,0 +170734181605,441,0 +170734181655,441,0 +170734181705,441,0 +170734181752,441,0 +170734181800,441,0 +170734181848,441,0 +170734181898,441,0 +170734181946,441,0 +170734181995,441,0 +170734182045,441,0 +170734182095,441,0 +170734182142,441,0 +170734182190,441,0 +170734182238,441,0 +170734182286,441,0 +170734182334,441,0 +170734182382,441,0 +170734182430,440,0 +170734182478,285,1 +170734182561,436,0 +170734182609,441,0 +170734182659,441,0 +170734182707,441,0 +170734182756,441,0 +170734182806,441,0 +170734182854,441,0 +170734182902,441,0 +170734182950,441,0 +170734182998,441,0 +170734183047,441,0 +170734183095,441,0 +170734183143,441,0 +170734183192,441,0 +170734183240,441,0 +170734183288,441,0 +170734183336,441,0 +170734183384,441,0 +170734183432,441,0 +170734183480,441,0 +170734183528,301,1 +170734183610,435,0 +170734183660,441,0 +170734183708,441,0 +170734183756,441,0 +170734183804,441,0 +170734183852,441,0 +170734183900,441,0 +170734183949,441,0 +170734183999,441,0 +170734184047,441,0 +170734184094,441,0 +170734184142,441,0 +170734184190,441,0 +170734184238,441,0 +170734184288,441,0 +170734184336,441,0 +170734184384,441,0 +170734184432,441,0 +170734184481,441,0 +170734184529,440,0 +170734184579,286,1 +170734184667,438,0 +170734184715,441,0 +170734184764,441,0 +170734184814,441,0 +170734184863,441,0 +170734184911,441,0 +170734184961,441,0 +170734185009,441,0 +170734185058,441,0 +170734185108,441,0 +170734185156,441,0 +170734185203,441,0 +170734185251,441,0 +170734185301,441,0 +170734185349,441,0 +170734185397,441,0 +170734185446,441,0 +170734185494,441,0 +170734185542,441,0 +170734185590,439,0 +170734185638,287,1 +170734185723,438,0 +170734185772,441,0 +170734185820,441,0 +170734185868,441,0 +170734185916,441,0 +170734185964,441,0 +170734186012,441,0 +170734186061,441,0 +170734186111,441,0 +170734186159,441,0 +170734186206,441,0 +170734186254,441,0 +170734186304,441,0 +170734186352,441,0 +170734186400,441,0 +170734186448,441,0 +170734186497,441,0 +170734186545,441,0 +170734186595,441,0 +170734186643,331,0 +170734186691,299,1 +170734186779,440,0 +170734186827,441,0 +170734186877,441,0 +170734186925,441,0 +170734186974,441,0 +170734187024,441,0 +170734187072,441,0 +170734187121,441,0 +170734187171,441,0 +170734187219,441,0 +170734187267,441,0 +170734187315,441,0 +170734187363,441,0 +170734187411,441,0 +170734187459,441,0 +170734187507,441,0 +170734187556,441,0 +170734187606,441,0 +170734187654,441,0 +170734187702,296,1 +170734187792,233,0 +170734187839,441,0 +170734187887,441,0 +170734187937,441,0 +170734187985,441,0 +170734188034,441,0 +170734188082,441,0 +170734188130,441,0 +170734188180,441,0 +170734188228,441,0 +170734188276,441,0 +170734188324,441,0 +170734188372,441,0 +170734188421,441,0 +170734188471,441,0 +170734188519,441,0 +170734188567,441,0 +170734188615,441,0 +170734188664,441,0 +170734188714,440,0 +170734188763,279,1 +170734188845,436,0 +170734188898,441,0 +170734188946,441,0 +170734188994,441,0 +170734189041,441,0 +170734189089,441,0 +170734189137,441,0 +170734189185,441,0 +170734189233,441,0 +170734189281,441,0 +170734189329,441,0 +170734189379,441,0 +170734189427,441,0 +170734189475,441,0 +170734189524,441,0 +170734189572,441,0 +170734189622,441,0 +170734189670,441,0 +170734189717,441,0 +170734189767,441,0 +170734189816,291,1 +170734189903,434,0 +170734189952,441,0 +170734190002,441,0 +170734190050,441,0 +170734190100,441,0 +170734190147,441,0 +170734190197,441,0 +170734190246,441,0 +170734190296,441,0 +170734190344,441,0 +170734190392,441,0 +170734190441,441,0 +170734190489,441,0 +170734190539,441,0 +170734190587,441,0 +170734190635,441,0 +170734190683,441,0 +170734190732,441,0 +170734190780,441,0 +170734190828,440,0 +170734190876,283,1 +170734190959,438,0 +170734191009,441,0 +170734191057,441,0 +170734191104,441,0 +170734191152,441,0 +170734191200,441,0 +170734191248,441,0 +170734191296,441,0 +170734191344,441,0 +170734191392,441,0 +170734191440,441,0 +170734191490,441,0 +170734191538,441,0 +170734191586,441,0 +170734191634,441,0 +170734191682,441,0 +170734191729,441,0 +170734191779,441,0 +170734191828,441,0 +170734191878,440,0 +170734191927,285,1 +170734192013,438,0 +170734192063,441,0 +170734192111,441,0 +170734192160,441,0 +170734192208,441,0 +170734192256,441,0 +170734192306,441,0 +170734192355,441,0 +170734192403,441,0 +170734192451,441,0 +170734192501,441,0 +170734192550,441,0 +170734192600,441,0 +170734192648,441,0 +170734192696,441,0 +170734192745,441,0 +170734192793,441,0 +170734192841,441,0 +170734192891,441,0 +170734192939,370,0 +170734192988,298,1 +170734193069,438,0 +170734193119,441,0 +170734193168,441,0 +170734193216,441,0 +170734193266,441,0 +170734193314,441,0 +170734193363,441,0 +170734193411,441,0 +170734193459,441,0 +170734193508,441,0 +170734193556,441,0 +170734193606,441,0 +170734193654,441,0 +170734193702,441,0 +170734193751,441,0 +170734193801,441,0 +170734193849,441,0 +170734193898,441,0 +170734193946,441,0 +170734193994,293,1 +170734194076,295,1 +170734194155,441,0 +170734194205,441,0 +170734194253,441,0 +170734194301,441,0 +170734194350,441,0 +170734194400,441,0 +170734194448,441,0 +170734194496,441,0 +170734194544,441,0 +170734194593,441,0 +170734194643,441,0 +170734194692,441,0 +170734194740,441,0 +170734194788,441,0 +170734194836,441,0 +170734194884,441,0 +170734194932,441,0 +170734194981,441,0 +170734195029,440,0 +170734195077,293,1 +170734195161,438,0 +170734195208,441,0 +170734195258,441,0 +170734195306,441,0 +170734195354,441,0 +170734195403,441,0 +170734195451,441,0 +170734195499,441,0 +170734195547,441,0 +170734195597,441,0 +170734195646,441,0 +170734195694,441,0 +170734195744,441,0 +170734195792,441,0 +170734195840,441,0 +170734195889,441,0 +170734195939,441,0 +170734195987,441,0 +170734196035,441,0 +170734196084,435,0 +170734196132,297,1 +170734196217,439,0 +170734196267,441,0 +170734196316,441,0 +170734196364,441,0 +170734196412,441,0 +170734196460,441,0 +170734196509,441,0 +170734196557,441,0 +170734196607,441,0 +170734196656,441,0 +170734196704,441,0 +170734196754,441,0 +170734196802,441,0 +170734196851,441,0 +170734196899,441,0 +170734196949,441,0 +170734196998,441,0 +170734197046,441,0 +170734197096,441,0 +170734197144,298,1 +170734197224,288,1 +170734197306,441,0 +170734197354,441,0 +170734197402,441,0 +170734197450,441,0 +170734197499,441,0 +170734197547,441,0 +170734197597,441,0 +170734197645,441,0 +170734197694,441,0 +170734197742,441,0 +170734197790,441,0 +170734197838,441,0 +170734197888,441,0 +170734197936,441,0 +170734197985,441,0 +170734198035,441,0 +170734198083,441,0 +170734198131,441,0 +170734198179,440,0 +170734198227,280,1 +170734198314,439,0 +170734198362,441,0 +170734198410,441,0 +170734198458,441,0 +170734198506,441,0 +170734198556,441,0 +170734198604,441,0 +170734198653,441,0 +170734198701,441,0 +170734198749,441,0 +170734198797,441,0 +170734198845,441,0 +170734198893,441,0 +170734198941,441,0 +170734198990,441,0 +170734199038,441,0 +170734199086,441,0 +170734199134,441,0 +170734199183,441,0 +170734199233,406,0 +170734199281,285,1 +170734199364,438,0 +170734199412,441,0 +170734199460,441,0 +170734199508,441,0 +170734199557,441,0 +170734199607,441,0 +170734199654,441,0 +170734199703,441,0 +170734199750,441,0 +170734199798,441,0 +170734199848,441,0 +170734199896,441,0 +170734199945,441,0 +170734199993,441,0 +170734200043,441,0 +170734200092,441,0 +170734200142,441,0 +170734200190,441,0 +170734200239,441,0 +170734200289,280,1 +170734200374,272,1 +170734200452,441,0 +170734200500,441,0 +170734200548,441,0 +170734200598,441,0 +170734200647,441,0 +170734200697,441,0 +170734200746,441,0 +170734200796,441,0 +170734200844,441,0 +170734200893,441,0 +170734200943,441,0 +170734200992,441,0 +170734201040,441,0 +170734201090,441,0 +170734201138,441,0 +170734201187,441,0 +170734201235,441,0 +170734201285,441,0 +170734201333,284,1 +170734201415,286,1 +170734201494,441,0 +170734201542,441,0 +170734201592,441,0 +170734201640,441,0 +170734201689,441,0 +170734201737,441,0 +170734201785,441,0 +170734201833,441,0 +170734201883,441,0 +170734201931,441,0 +170734201980,441,0 +170734202028,441,0 +170734202078,441,0 +170734202126,441,0 +170734202175,441,0 +170734202225,441,0 +170734202274,441,0 +170734202324,441,0 +170734202372,440,0 +170734202421,291,1 +170734202503,437,0 +170734202552,441,0 +170734202602,441,0 +170734202650,441,0 +170734202697,441,0 +170734202747,441,0 +170734202795,441,0 +170734202845,441,0 +170734202894,441,0 +170734202942,441,0 +170734202991,441,0 +170734203039,441,0 +170734203087,441,0 +170734203137,441,0 +170734203185,441,0 +170734203233,441,0 +170734203281,441,0 +170734203329,441,0 +170734203377,441,0 +170734203425,268,0 +170734203473,304,1 +170734203560,440,0 +170734203608,441,0 +170734203656,441,0 +170734203704,441,0 +170734203754,441,0 +170734203803,441,0 +170734203851,441,0 +170734203901,441,0 +170734203949,441,0 +170734203998,441,0 +170734204046,441,0 +170734204094,441,0 +170734204144,441,0 +170734204193,441,0 +170734204241,441,0 +170734204291,441,0 +170734204339,441,0 +170734204388,441,0 +170734204436,441,0 +170734204486,300,1 +170734204576,235,0 +170734204625,441,0 +170734204675,441,0 +170734204723,441,0 +170734204771,441,0 +170734204820,441,0 +170734204870,441,0 +170734204918,441,0 +170734204966,441,0 +170734205014,441,0 +170734205062,441,0 +170734205110,441,0 +170734205159,441,0 +170734205207,441,0 +170734205257,441,0 +170734205306,441,0 +170734205356,441,0 +170734205404,441,0 +170734205453,441,0 +170734205501,440,0 +170734205551,294,1 +170734205632,427,0 +170734205680,441,0 +170734205730,441,0 +170734205779,441,0 +170734205827,441,0 +170734205875,441,0 +170734205923,441,0 +170734205971,441,0 +170734206020,441,0 +170734206070,441,0 +170734206119,441,0 +170734206167,441,0 +170734206215,441,0 +170734206265,441,0 +170734206312,441,0 +170734206360,441,0 +170734206408,441,0 +170734206456,441,0 +170734206504,441,0 +170734206554,440,0 +170734206603,299,1 +170734206690,437,0 +170734206742,441,0 +170734206792,441,0 +170734206840,441,0 +170734206889,441,0 +170734206939,441,0 +170734206987,441,0 +170734207035,441,0 +170734207084,441,0 +170734207132,441,0 +170734207182,441,0 +170734207230,441,0 +170734207278,441,0 +170734207327,441,0 +170734207377,441,0 +170734207425,441,0 +170734207473,441,0 +170734207522,441,0 +170734207570,441,0 +170734207620,365,0 +170734207668,295,1 +170734207754,440,0 +170734207803,441,0 +170734207853,441,0 +170734207901,441,0 +170734207949,441,0 +170734207998,441,0 +170734208046,441,0 +170734208094,441,0 +170734208142,441,0 +170734208190,441,0 +170734208238,441,0 +170734208286,441,0 +170734208336,441,0 +170734208383,441,0 +170734208431,441,0 +170734208479,441,0 +170734208527,441,0 +170734208575,441,0 +170734208623,441,0 +170734208672,363,0 +170734208722,293,1 +170734208806,439,0 +170734208854,441,0 +170734208903,441,0 +170734208953,441,0 +170734209001,441,0 +170734209049,441,0 +170734209097,441,0 +170734209145,441,0 +170734209192,441,0 +170734209240,441,0 +170734209290,441,0 +170734209338,441,0 +170734209386,441,0 +170734209435,441,0 +170734209483,441,0 +170734209533,441,0 +170734209582,441,0 +170734209632,441,0 +170734209681,441,0 +170734209731,299,1 +170734209813,260,0 +170734209861,440,0 +170734209910,441,0 +170734209958,441,0 +170734210008,441,0 +170734210056,441,0 +170734210104,441,0 +170734210152,441,0 +170734210200,441,0 +170734210249,441,0 +170734210297,441,0 +170734210345,441,0 +170734210395,441,0 +170734210443,441,0 +170734210492,441,0 +170734210542,441,0 +170734210591,441,0 +170734210639,441,0 +170734210687,441,0 +170734210735,440,0 +170734210783,269,0 +170734210831,297,1 +170734210917,441,0 +170734210965,441,0 +170734211013,441,0 +170734211060,441,0 +170734211108,441,0 +170734211156,441,0 +170734211204,441,0 +170734211252,441,0 +170734211300,441,0 +170734211348,441,0 +170734211396,441,0 +170734211444,441,0 +170734211493,441,0 +170734211541,441,0 +170734211591,441,0 +170734211639,441,0 +170734211687,441,0 +170734211736,441,0 +170734211784,441,0 +170734211832,291,1 +170734211915,248,0 +170734211965,440,0 +170734212013,441,0 +170734212060,441,0 +170734212110,441,0 +170734212160,441,0 +170734212209,441,0 +170734212259,441,0 +170734212308,441,0 +170734212356,441,0 +170734212404,441,0 +170734212452,441,0 +170734212500,441,0 +170734212548,441,0 +170734212597,441,0 +170734212645,441,0 +170734212694,441,0 +170734212742,441,0 +170734212792,441,0 +170734212840,441,0 +170734212888,287,1 +170734212971,328,0 +170734213021,441,0 +170734213069,441,0 +170734213116,441,0 +170734213164,441,0 +170734213212,441,0 +170734213260,441,0 +170734213308,441,0 +170734213356,441,0 +170734213405,441,0 +170734213455,441,0 +170734213503,441,0 +170734213551,441,0 +170734213600,441,0 +170734213650,441,0 +170734213699,441,0 +170734213747,441,0 +170734213797,441,0 +170734213845,441,0 +170734213894,440,0 +170734213942,292,1 +170734214021,238,0 +170734214070,441,0 +170734214118,441,0 +170734214166,441,0 +170734214214,441,0 +170734214262,441,0 +170734214312,441,0 +170734214360,441,0 +170734214409,441,0 +170734214457,441,0 +170734214505,441,0 +170734214555,441,0 +170734214604,441,0 +170734214654,441,0 +170734214702,441,0 +170734214750,441,0 +170734214798,441,0 +170734214846,441,0 +170734214894,441,0 +170734214943,441,0 +170734214991,286,1 +170734215076,436,0 +170734215124,441,0 +170734215172,441,0 +170734215220,441,0 +170734215269,441,0 +170734215317,441,0 +170734215365,441,0 +170734215413,441,0 +170734215463,441,0 +170734215511,441,0 +170734215560,441,0 +170734215608,441,0 +170734215656,441,0 +170734215706,441,0 +170734215755,441,0 +170734215803,441,0 +170734215851,441,0 +170734215901,441,0 +170734215949,441,0 +170734215997,440,0 +170734216045,294,1 +170734216128,436,0 +170734216178,441,0 +170734216226,441,0 +170734216274,441,0 +170734216322,441,0 +170734216370,441,0 +170734216419,441,0 +170734216467,441,0 +170734216515,441,0 +170734216565,441,0 +170734216614,441,0 +170734216664,441,0 +170734216713,441,0 +170734216763,441,0 +170734216811,441,0 +170734216859,441,0 +170734216906,441,0 +170734216956,441,0 +170734217004,441,0 +170734217052,440,0 +170734217100,297,1 +170734217188,438,0 +170734217236,441,0 +170734217283,441,0 +170734217331,441,0 +170734217381,441,0 +170734217431,441,0 +170734217480,441,0 +170734217528,441,0 +170734217578,441,0 +170734217625,441,0 +170734217673,441,0 +170734217723,441,0 +170734217772,441,0 +170734217822,441,0 +170734217871,441,0 +170734217921,441,0 +170734217969,441,0 +170734218017,441,0 +170734218065,441,0 +170734218113,407,0 +170734218161,293,1 +170734218239,439,0 +170734218288,441,0 +170734218338,441,0 +170734218388,441,0 +170734218435,441,0 +170734218483,441,0 +170734218531,441,0 +170734218581,441,0 +170734218631,441,0 +170734218680,441,0 +170734218730,441,0 +170734218779,441,0 +170734218827,441,0 +170734218877,441,0 +170734218925,441,0 +170734218973,441,0 +170734219020,441,0 +170734219070,441,0 +170734219120,441,0 +170734219168,281,1 +170734219251,293,1 +170734219329,441,0 +170734219378,441,0 +170734219428,441,0 +170734219476,441,0 +170734219523,441,0 +170734219573,441,0 +170734219621,441,0 +170734219669,441,0 +170734219719,441,0 +170734219768,441,0 +170734219816,441,0 +170734219864,441,0 +170734219913,441,0 +170734219961,441,0 +170734220009,441,0 +170734220057,441,0 +170734220105,441,0 +170734220153,441,0 +170734220201,440,0 +170734220251,277,1 +170734220337,439,0 +170734220385,441,0 +170734220434,441,0 +170734220484,441,0 +170734220532,441,0 +170734220580,441,0 +170734220628,441,0 +170734220677,441,0 +170734220727,441,0 +170734220775,441,0 +170734220824,441,0 +170734220874,441,0 +170734220923,441,0 +170734220971,441,0 +170734221019,441,0 +170734221067,441,0 +170734221117,441,0 +170734221165,441,0 +170734221214,441,0 +170734221264,329,0 +170734221312,297,1 +170734221396,440,0 +170734221446,441,0 +170734221494,441,0 +170734221542,441,0 +170734221590,441,0 +170734221638,441,0 +170734221687,441,0 +170734221735,441,0 +170734221783,441,0 +170734221831,441,0 +170734221881,441,0 +170734221930,441,0 +170734221980,441,0 +170734222028,441,0 +170734222076,441,0 +170734222124,441,0 +170734222172,441,0 +170734222221,441,0 +170734222269,440,0 +170734222317,296,1 +170734222405,234,0 +170734222454,441,0 +170734222504,441,0 +170734222552,441,0 +170734222600,441,0 +170734222648,441,0 +170734222696,441,0 +170734222745,441,0 +170734222793,441,0 +170734222841,441,0 +170734222889,441,0 +170734222939,441,0 +170734222988,441,0 +170734223036,441,0 +170734223084,441,0 +170734223132,441,0 +170734223180,441,0 +170734223230,441,0 +170734223279,441,0 +170734223329,440,0 +170734223378,290,1 +170734223464,436,0 +170734223516,441,0 +170734223566,441,0 +170734223615,441,0 +170734223663,441,0 +170734223713,441,0 +170734223762,441,0 +170734223812,441,0 +170734223861,441,0 +170734223911,441,0 +170734223959,441,0 +170734224007,441,0 +170734224056,441,0 +170734224104,441,0 +170734224152,441,0 +170734224200,441,0 +170734224248,441,0 +170734224296,441,0 +170734224344,441,0 +170734224392,440,0 +170734224440,287,1 +170734224528,439,0 +170734224577,441,0 +170734224627,441,0 +170734224675,441,0 +170734224723,441,0 +170734224770,441,0 +170734224820,441,0 +170734224868,441,0 +170734224916,441,0 +170734224965,441,0 +170734225015,441,0 +170734225065,441,0 +170734225112,441,0 +170734225162,441,0 +170734225210,441,0 +170734225258,441,0 +170734225308,441,0 +170734225357,441,0 +170734225407,441,0 +170734225456,292,1 +170734225540,245,0 +170734225590,440,0 +170734225638,441,0 +170734225686,441,0 +170734225735,441,0 +170734225783,441,0 +170734225831,441,0 +170734225879,441,0 +170734225927,441,0 +170734225975,441,0 +170734226023,441,0 +170734226071,441,0 +170734226120,441,0 +170734226168,441,0 +170734226216,441,0 +170734226264,441,0 +170734226314,441,0 +170734226363,441,0 +170734226411,441,0 +170734226459,441,0 +170734226509,293,1 +170734226592,245,0 +170734226641,441,0 +170734226691,441,0 +170734226739,441,0 +170734226787,441,0 +170734226835,441,0 +170734226883,441,0 +170734226931,441,0 +170734226980,441,0 +170734227028,441,0 +170734227076,441,0 +170734227124,441,0 +170734227172,441,0 +170734227220,441,0 +170734227268,441,0 +170734227316,441,0 +170734227365,441,0 +170734227413,441,0 +170734227461,441,0 +170734227509,441,0 +170734227557,282,1 +170734227642,252,0 +170734227690,441,0 +170734227740,441,0 +170734227788,441,0 +170734227836,441,0 +170734227884,441,0 +170734227932,441,0 +170734227980,441,0 +170734228028,441,0 +170734228076,441,0 +170734228123,441,0 +170734228173,441,0 +170734228223,441,0 +170734228271,441,0 +170734228318,441,0 +170734228366,441,0 +170734228416,441,0 +170734228464,441,0 +170734228513,441,0 +170734228561,441,0 +170734228611,305,1 +170734228701,353,0 +170734228748,441,0 +170734228798,441,0 +170734228846,441,0 +170734228895,441,0 +170734228943,441,0 +170734228993,441,0 +170734229042,441,0 +170734229092,441,0 +170734229140,441,0 +170734229188,441,0 +170734229236,441,0 +170734229285,441,0 +170734229333,441,0 +170734229381,441,0 +170734229431,441,0 +170734229479,441,0 +170734229528,441,0 +170734229576,441,0 +170734229626,440,0 +170734229675,304,1 +170734229776,439,0 +170734229824,441,0 +170734229873,441,0 +170734229922,441,0 +170734229970,441,0 +170734230018,441,0 +170734230066,441,0 +170734230116,441,0 +170734230165,441,0 +170734230213,441,0 +170734230263,441,0 +170734230311,441,0 +170734230359,441,0 +170734230407,441,0 +170734230455,441,0 +170734230504,441,0 +170734230554,441,0 +170734230603,441,0 +170734230653,441,0 +170734230701,300,1 +170734230787,239,0 +170734230837,441,0 +170734230885,441,0 +170734230934,441,0 +170734230982,441,0 +170734231030,441,0 +170734231080,441,0 +170734231128,441,0 +170734231177,441,0 +170734231227,441,0 +170734231275,441,0 +170734231324,441,0 +170734231372,441,0 +170734231422,441,0 +170734231471,441,0 +170734231521,441,0 +170734231569,441,0 +170734231618,441,0 +170734231666,441,0 +170734231716,441,0 +170734231766,274,1 +170734231853,435,0 +170734231901,441,0 +170734231949,441,0 +170734231997,441,0 +170734232045,441,0 +170734232093,441,0 +170734232143,441,0 +170734232191,441,0 +170734232239,441,0 +170734232287,441,0 +170734232337,441,0 +170734232386,441,0 +170734232436,441,0 +170734232484,441,0 +170734232533,441,0 +170734232583,441,0 +170734232631,441,0 +170734232679,441,0 +170734232726,441,0 +170734232776,440,0 +170734232824,286,1 +170734232907,438,0 +170734232955,441,0 +170734233004,441,0 +170734233054,441,0 +170734233102,441,0 +170734233152,441,0 +170734233199,441,0 +170734233247,441,0 +170734233295,441,0 +170734233343,441,0 +170734233391,441,0 +170734233439,441,0 +170734233489,441,0 +170734233537,441,0 +170734233585,441,0 +170734233633,441,0 +170734233681,441,0 +170734233730,441,0 +170734233780,441,0 +170734233829,440,0 +170734233879,302,1 +170734233965,438,0 +170734234014,441,0 +170734234064,441,0 +170734234113,441,0 +170734234161,441,0 +170734234209,441,0 +170734234259,441,0 +170734234307,441,0 +170734234356,441,0 +170734234406,441,0 +170734234455,441,0 +170734234503,441,0 +170734234553,441,0 +170734234601,441,0 +170734234649,441,0 +170734234697,441,0 +170734234746,441,0 +170734234794,441,0 +170734234842,441,0 +170734234890,439,0 +170734234940,297,1 +170734235026,440,0 +170734235073,441,0 +170734235123,441,0 +170734235171,441,0 +170734235219,441,0 +170734235267,441,0 +170734235316,441,0 +170734235366,441,0 +170734235416,441,0 +170734235463,441,0 +170734235513,441,0 +170734235561,441,0 +170734235610,441,0 +170734235660,441,0 +170734235709,441,0 +170734235757,441,0 +170734235807,441,0 +170734235855,441,0 +170734235905,441,0 +170734235954,292,1 +170734236038,239,0 +170734236086,440,0 +170734236136,441,0 +170734236185,441,0 +170734236235,441,0 +170734236283,441,0 +170734236331,441,0 +170734236380,441,0 +170734236430,441,0 +170734236478,441,0 +170734236526,441,0 +170734236575,441,0 +170734236623,441,0 +170734236671,441,0 +170734236719,441,0 +170734236769,441,0 +170734236818,441,0 +170734236866,441,0 +170734236916,441,0 +170734236965,440,0 +170734237015,299,1 +170734237096,437,0 +170734237144,441,0 +170734237192,441,0 +170734237240,441,0 +170734237289,441,0 +170734237339,441,0 +170734237388,441,0 +170734237436,441,0 +170734237486,441,0 +170734237535,441,0 +170734237583,441,0 +170734237631,441,0 +170734237681,441,0 +170734237729,441,0 +170734237777,441,0 +170734237825,441,0 +170734237872,441,0 +170734237920,441,0 +170734237970,441,0 +170734238018,440,0 +170734238066,294,1 +170734238150,437,0 +170734238200,441,0 +170734238249,441,0 +170734238299,441,0 +170734238348,441,0 +170734238398,441,0 +170734238446,441,0 +170734238495,441,0 +170734238545,441,0 +170734238595,441,0 +170734238643,441,0 +170734238692,441,0 +170734238740,441,0 +170734238788,441,0 +170734238837,441,0 +170734238885,441,0 +170734238933,441,0 +170734238981,441,0 +170734239031,441,0 +170734239080,437,0 +170734239130,290,1 +170734239223,440,0 +170734239271,441,0 +170734239319,441,0 +170734239366,441,0 +170734239414,441,0 +170734239464,441,0 +170734239513,441,0 +170734239561,441,0 +170734239611,441,0 +170734239658,441,0 +170734239706,441,0 +170734239754,441,0 +170734239802,441,0 +170734239852,441,0 +170734239899,441,0 +170734239947,441,0 +170734239997,441,0 +170734240045,441,0 +170734240093,441,0 +170734240142,312,0 +170734240190,288,1 +170734240278,441,0 +170734240326,441,0 +170734240374,441,0 +170734240422,441,0 +170734240470,441,0 +170734240518,441,0 +170734240566,441,0 +170734240614,441,0 +170734240662,441,0 +170734240710,441,0 +170734240758,441,0 +170734240806,441,0 +170734240854,441,0 +170734240902,441,0 +170734240951,441,0 +170734241001,441,0 +170734241050,441,0 +170734241100,441,0 +170734241149,441,0 +170734241199,288,1 +170734241282,237,0 +170734241330,441,0 +170734241378,441,0 +170734241426,441,0 +170734241475,441,0 +170734241525,441,0 +170734241574,441,0 +170734241622,441,0 +170734241671,441,0 +170734241719,441,0 +170734241767,441,0 +170734241817,441,0 +170734241866,441,0 +170734241914,441,0 +170734241964,441,0 +170734242013,441,0 +170734242061,441,0 +170734242109,441,0 +170734242159,441,0 +170734242208,441,0 +170734242256,288,1 +170734242338,419,0 +170734242386,441,0 +170734242436,441,0 +170734242486,441,0 +170734242534,441,0 +170734242583,441,0 +170734242633,441,0 +170734242682,441,0 +170734242732,441,0 +170734242780,441,0 +170734242829,441,0 +170734242877,441,0 +170734242925,441,0 +170734242973,441,0 +170734243021,441,0 +170734243069,441,0 +170734243116,441,0 +170734243164,441,0 +170734243212,441,0 +170734243260,441,0 +170734243308,249,0 +170734243356,260,0 +170734243404,438,0 +170734243452,441,0 +170734243500,441,0 +170734243548,441,0 +170734243597,441,0 +170734243647,441,0 +170734243696,441,0 +170734243744,441,0 +170734243794,441,0 +170734243843,441,0 +170734243891,441,0 +170734243939,441,0 +170734243987,441,0 +170734244035,441,0 +170734244085,441,0 +170734244133,441,0 +170734244181,441,0 +170734244229,441,0 +170734244277,441,0 +170734244325,439,0 +170734244374,297,1 +170734244457,439,0 +170734244505,441,0 +170734244553,441,0 +170734244601,441,0 +170734244649,441,0 +170734244698,441,0 +170734244746,441,0 +170734244794,441,0 +170734244842,441,0 +170734244890,441,0 +170734244938,441,0 +170734244986,441,0 +170734245035,441,0 +170734245083,441,0 +170734245131,441,0 +170734245179,441,0 +170734245226,441,0 +170734245274,441,0 +170734245322,441,0 +170734245370,440,0 +170734245418,292,1 +170734245499,438,0 +170734245547,441,0 +170734245596,441,0 +170734245644,441,0 +170734245692,441,0 +170734245740,441,0 +170734245789,441,0 +170734245837,441,0 +170734245885,441,0 +170734245933,441,0 +170734245981,441,0 +170734246029,441,0 +170734246077,441,0 +170734246125,441,0 +170734246174,441,0 +170734246222,441,0 +170734246270,441,0 +170734246317,441,0 +170734246365,441,0 +170734246413,440,0 +170734246461,299,1 +170734246545,435,0 +170734246595,441,0 +170734246644,441,0 +170734246692,441,0 +170734246740,441,0 +170734246788,441,0 +170734246836,441,0 +170734246886,441,0 +170734246935,441,0 +170734246983,441,0 +170734247031,441,0 +170734247080,441,0 +170734247128,441,0 +170734247176,441,0 +170734247225,441,0 +170734247273,441,0 +170734247323,441,0 +170734247372,441,0 +170734247420,441,0 +170734247469,436,0 +170734247517,289,1 +170734247601,440,0 +170734247649,441,0 +170734247699,441,0 +170734247747,441,0 +170734247795,441,0 +170734247844,441,0 +170734247892,441,0 +170734247940,441,0 +170734247988,441,0 +170734248037,441,0 +170734248085,441,0 +170734248133,441,0 +170734248180,441,0 +170734248228,441,0 +170734248276,441,0 +170734248324,441,0 +170734248372,441,0 +170734248420,441,0 +170734248468,441,0 +170734248516,440,0 +170734248563,291,1 +170734248645,437,0 +170734248693,441,0 +170734248741,441,0 +170734248789,441,0 +170734248838,441,0 +170734248888,441,0 +170734248936,441,0 +170734248984,441,0 +170734249031,441,0 +170734249079,441,0 +170734249129,441,0 +170734249178,441,0 +170734249226,441,0 +170734249274,441,0 +170734249322,441,0 +170734249370,441,0 +170734249420,441,0 +170734249468,441,0 +170734249517,441,0 +170734249567,440,0 +170734249615,289,1 +170734249708,439,0 +170734249756,441,0 +170734249803,441,0 +170734249853,441,0 +170734249902,441,0 +170734249952,441,0 +170734250000,441,0 +170734250048,441,0 +170734250096,441,0 +170734250144,441,0 +170734250193,441,0 +170734250243,441,0 +170734250292,441,0 +170734250340,441,0 +170734250390,441,0 +170734250438,441,0 +170734250486,441,0 +170734250534,441,0 +170734250582,441,0 +170734250629,280,1 +170734250708,310,0 +170734250755,439,0 +170734250805,441,0 +170734250855,441,0 +170734250903,441,0 +170734250950,441,0 +170734250998,441,0 +170734251048,441,0 +170734251097,441,0 +170734251145,441,0 +170734251193,441,0 +170734251241,441,0 +170734251289,441,0 +170734251337,441,0 +170734251385,441,0 +170734251433,441,0 +170734251480,441,0 +170734251530,441,0 +170734251579,441,0 +170734251627,441,0 +170734251675,410,0 +170734251723,297,1 +170734251803,439,0 +170734251851,441,0 +170734251899,441,0 +170734251947,441,0 +170734251995,441,0 +170734252043,441,0 +170734252091,441,0 +170734252139,441,0 +170734252187,441,0 +170734252236,441,0 +170734252284,441,0 +170734252334,441,0 +170734252382,441,0 +170734252429,441,0 +170734252477,441,0 +170734252525,441,0 +170734252573,441,0 +170734252621,441,0 +170734252669,441,0 +170734252717,440,0 +170734252765,291,1 +170734252843,437,0 +170734252891,441,0 +170734252939,441,0 +170734252989,441,0 +170734253036,441,0 +170734253084,441,0 +170734253132,441,0 +170734253180,441,0 +170734253228,441,0 +170734253277,441,0 +170734253325,441,0 +170734253373,441,0 +170734253423,441,0 +170734253470,441,0 +170734253520,441,0 +170734253568,441,0 +170734253616,441,0 +170734253664,441,0 +170734253713,441,0 +170734253761,440,0 +170734253810,288,1 +170734253897,439,0 +170734253945,441,0 +170734253995,441,0 +170734254043,441,0 +170734254092,441,0 +170734254142,441,0 +170734254189,441,0 +170734254237,441,0 +170734254285,441,0 +170734254333,441,0 +170734254381,441,0 +170734254431,441,0 +170734254479,441,0 +170734254527,441,0 +170734254575,441,0 +170734254623,441,0 +170734254671,441,0 +170734254718,441,0 +170734254766,441,0 +170734254814,440,0 +170734254864,290,1 +170734254945,439,0 +170734254993,441,0 +170734255041,441,0 +170734255091,441,0 +170734255139,441,0 +170734255188,441,0 +170734255236,441,0 +170734255284,441,0 +170734255332,441,0 +170734255380,441,0 +170734255427,441,0 +170734255475,441,0 +170734255523,441,0 +170734255571,441,0 +170734255619,441,0 +170734255667,441,0 +170734255716,441,0 +170734255764,441,0 +170734255812,441,0 +170734255860,440,0 +170734255908,266,0 +170734255956,303,1 +170734256037,441,0 +170734256085,441,0 +170734256133,441,0 +170734256180,441,0 +170734256228,441,0 +170734256276,441,0 +170734256324,441,0 +170734256372,441,0 +170734256420,441,0 +170734256468,441,0 +170734256516,441,0 +170734256564,441,0 +170734256613,441,0 +170734256661,441,0 +170734256709,441,0 +170734256757,441,0 +170734256805,441,0 +170734256853,441,0 +170734256902,440,0 +170734256950,290,1 +170734257034,436,0 +170734257082,441,0 +170734257130,441,0 +170734257179,441,0 +170734257229,441,0 +170734257278,441,0 +170734257326,441,0 +170734257376,441,0 +170734257424,441,0 +170734257471,441,0 +170734257521,441,0 +170734257569,441,0 +170734257617,441,0 +170734257665,441,0 +170734257713,441,0 +170734257762,441,0 +170734257810,441,0 +170734257858,441,0 +170734257906,441,0 +170734257956,440,0 +170734258005,280,1 +170734258088,437,0 +170734258135,441,0 +170734258183,441,0 +170734258231,441,0 +170734258279,441,0 +170734258327,441,0 +170734258376,441,0 +170734258424,441,0 +170734258474,441,0 +170734258522,441,0 +170734258570,441,0 +170734258618,441,0 +170734258666,441,0 +170734258714,441,0 +170734258763,441,0 +170734258813,441,0 +170734258861,441,0 +170734258910,441,0 +170734258958,441,0 +170734259006,440,0 +170734259054,303,1 +170734259138,438,0 +170734259186,441,0 +170734259234,441,0 +170734259282,441,0 +170734259329,441,0 +170734259377,441,0 +170734259425,441,0 +170734259473,441,0 +170734259521,441,0 +170734259569,441,0 +170734259616,441,0 +170734259664,441,0 +170734259712,441,0 +170734259760,441,0 +170734259808,441,0 +170734259856,441,0 +170734259904,441,0 +170734259952,441,0 +170734260000,441,0 +170734260047,441,0 +170734260097,297,1 +170734260183,437,0 +170734260233,441,0 +170734260281,441,0 +170734260329,441,0 +170734260378,441,0 +170734260428,441,0 +170734260477,441,0 +170734260525,441,0 +170734260575,441,0 +170734260623,441,0 +170734260672,441,0 +170734260720,441,0 +170734260768,441,0 +170734260816,441,0 +170734260864,441,0 +170734260912,441,0 +170734260961,441,0 +170734261009,441,0 +170734261059,441,0 +170734261107,440,0 +170734261155,286,1 +170734261239,439,0 +170734261287,441,0 +170734261335,441,0 +170734261383,441,0 +170734261431,441,0 +170734261478,441,0 +170734261526,441,0 +170734261574,441,0 +170734261622,441,0 +170734261670,441,0 +170734261718,441,0 +170734261766,441,0 +170734261814,441,0 +170734261862,441,0 +170734261909,441,0 +170734261957,441,0 +170734262007,441,0 +170734262055,441,0 +170734262103,441,0 +170734262150,440,0 +170734262198,292,1 +170734262284,439,0 +170734262332,441,0 +170734262379,441,0 +170734262429,441,0 +170734262477,441,0 +170734262525,441,0 +170734262574,441,0 +170734262622,441,0 +170734262670,441,0 +170734262718,441,0 +170734262766,441,0 +170734262814,441,0 +170734262861,441,0 +170734262909,441,0 +170734262957,441,0 +170734263007,441,0 +170734263055,441,0 +170734263104,441,0 +170734263153,441,0 +170734263201,440,0 +170734263251,298,1 +170734263337,438,0 +170734263385,441,0 +170734263433,441,0 +170734263481,441,0 +170734263529,441,0 +170734263577,441,0 +170734263625,441,0 +170734263673,441,0 +170734263722,441,0 +170734263770,441,0 +170734263818,441,0 +170734263866,441,0 +170734263914,441,0 +170734263962,441,0 +170734264012,441,0 +170734264060,441,0 +170734264107,441,0 +170734264155,441,0 +170734264203,441,0 +170734264251,440,0 +170734264299,250,0 +170734264347,297,1 +170734264432,441,0 +170734264480,441,0 +170734264528,441,0 +170734264576,441,0 +170734264625,441,0 +170734264673,441,0 +170734264723,441,0 +170734264771,441,0 +170734264819,441,0 +170734264867,441,0 +170734264915,441,0 +170734264964,441,0 +170734265012,441,0 +170734265060,441,0 +170734265108,441,0 +170734265156,441,0 +170734265206,441,0 +170734265254,441,0 +170734265302,440,0 +170734265350,287,1 +170734265433,437,0 +170734265481,441,0 +170734265530,441,0 +170734265580,441,0 +170734265628,441,0 +170734265675,441,0 +170734265723,441,0 +170734265771,441,0 +170734265821,441,0 +170734265869,441,0 +170734265917,441,0 +170734265965,441,0 +170734266013,441,0 +170734266062,441,0 +170734266110,441,0 +170734266160,441,0 +170734266209,441,0 +170734266257,441,0 +170734266305,441,0 +170734266353,440,0 +170734266401,285,1 +170734266485,439,0 +170734266533,441,0 +170734266581,441,0 +170734266630,441,0 +170734266678,441,0 +170734266726,441,0 +170734266774,441,0 +170734266823,441,0 +170734266873,441,0 +170734266921,441,0 +170734266970,441,0 +170734267018,441,0 +170734267066,441,0 +170734267114,441,0 +170734267162,441,0 +170734267210,441,0 +170734267258,441,0 +170734267306,441,0 +170734267354,441,0 +170734267403,439,0 +170734267453,296,1 +170734267534,438,0 +170734267583,441,0 +170734267633,441,0 +170734267682,441,0 +170734267730,441,0 +170734267778,441,0 +170734267828,441,0 +170734267876,441,0 +170734267923,441,0 +170734267971,441,0 +170734268019,441,0 +170734268069,441,0 +170734268118,441,0 +170734268166,441,0 +170734268214,441,0 +170734268262,441,0 +170734268310,441,0 +170734268358,441,0 +170734268406,441,0 +170734268456,395,0 +170734268505,285,1 +170734268588,439,0 +170734268636,441,0 +170734268684,441,0 +170734268733,441,0 +170734268781,441,0 +170734268831,441,0 +170734268879,441,0 +170734268927,441,0 +170734268975,441,0 +170734269022,441,0 +170734269071,441,0 +170734269118,441,0 +170734269166,441,0 +170734269214,441,0 +170734269264,441,0 +170734269312,441,0 +170734269360,441,0 +170734269408,441,0 +170734269457,441,0 +170734269505,417,0 +170734269553,301,1 +170734269633,438,0 +170734269682,441,0 +170734269730,441,0 +170734269778,441,0 +170734269826,441,0 +170734269876,441,0 +170734269924,441,0 +170734269973,441,0 +170734270023,441,0 +170734270072,441,0 +170734270122,441,0 +170734270172,441,0 +170734270220,441,0 +170734270267,441,0 +170734270315,441,0 +170734270363,441,0 +170734270411,441,0 +170734270459,441,0 +170734270507,441,0 +170734270555,388,0 +170734270603,304,1 +170734270692,440,0 +170734270742,441,0 +170734270791,441,0 +170734270841,441,0 +170734270889,441,0 +170734270937,441,0 +170734270986,441,0 +170734271036,441,0 +170734271085,441,0 +170734271133,441,0 +170734271181,441,0 +170734271229,441,0 +170734271277,441,0 +170734271325,441,0 +170734271373,441,0 +170734271423,441,0 +170734271471,441,0 +170734271520,441,0 +170734271570,441,0 +170734271619,306,1 +170734271699,250,0 +170734271747,440,0 +170734271795,441,0 +170734271843,441,0 +170734271891,441,0 +170734271939,441,0 +170734271987,441,0 +170734272035,441,0 +170734272084,441,0 +170734272132,441,0 +170734272180,441,0 +170734272228,441,0 +170734272276,441,0 +170734272326,441,0 +170734272375,441,0 +170734272425,441,0 +170734272474,441,0 +170734272522,441,0 +170734272570,441,0 +170734272620,441,0 +170734272668,297,1 +170734272747,278,1 +170734272826,441,0 +170734272876,441,0 +170734272924,441,0 +170734272972,441,0 +170734273021,441,0 +170734273069,441,0 +170734273117,441,0 +170734273165,441,0 +170734273213,441,0 +170734273261,441,0 +170734273309,441,0 +170734273359,441,0 +170734273408,441,0 +170734273456,441,0 +170734273504,441,0 +170734273552,441,0 +170734273600,441,0 +170734273648,441,0 +170734273696,440,0 +170734273744,294,1 +170734273823,438,0 +170734273872,441,0 +170734273922,441,0 +170734273970,441,0 +170734274018,441,0 +170734274066,441,0 +170734274114,441,0 +170734274162,441,0 +170734274209,441,0 +170734274259,441,0 +170734274307,441,0 +170734274355,441,0 +170734274403,441,0 +170734274451,441,0 +170734274499,441,0 +170734274547,441,0 +170734274595,441,0 +170734274643,441,0 +170734274691,441,0 +170734274739,440,0 +170734274787,293,1 +170734274872,439,0 +170734274920,441,0 +170734274968,441,0 +170734275018,441,0 +170734275066,441,0 +170734275115,441,0 +170734275165,441,0 +170734275213,441,0 +170734275261,441,0 +170734275309,441,0 +170734275358,441,0 +170734275408,441,0 +170734275457,441,0 +170734275505,441,0 +170734275553,441,0 +170734275602,441,0 +170734275650,441,0 +170734275698,441,0 +170734275746,441,0 +170734275794,440,0 +170734275842,297,1 +170734275923,438,0 +170734275971,441,0 +170734276019,441,0 +170734276067,441,0 +170734276117,441,0 +170734276165,441,0 +170734276214,441,0 +170734276264,441,0 +170734276311,441,0 +170734276359,441,0 +170734276409,441,0 +170734276459,441,0 +170734276508,441,0 +170734276556,441,0 +170734276606,441,0 +170734276654,441,0 +170734276703,441,0 +170734276751,441,0 +170734276799,441,0 +170734276847,291,1 +170734276929,292,1 +170734277011,441,0 +170734277059,441,0 +170734277107,441,0 +170734277155,441,0 +170734277203,441,0 +170734277251,441,0 +170734277300,441,0 +170734277348,441,0 +170734277396,441,0 +170734277444,441,0 +170734277493,441,0 +170734277541,441,0 +170734277589,441,0 +170734277637,441,0 +170734277687,441,0 +170734277735,441,0 +170734277783,441,0 +170734277831,441,0 +170734277880,440,0 +170734277930,291,1 +170734278016,438,0 +170734278064,441,0 +170734278113,441,0 +170734278161,441,0 +170734278209,441,0 +170734278257,441,0 +170734278307,441,0 +170734278355,441,0 +170734278403,441,0 +170734278452,441,0 +170734278502,441,0 +170734278550,441,0 +170734278599,441,0 +170734278647,441,0 +170734278697,441,0 +170734278745,441,0 +170734278792,441,0 +170734278840,441,0 +170734278890,441,0 +170734278938,440,0 +170734278987,283,1 +170734279066,437,0 +170734279116,441,0 +170734279164,441,0 +170734279212,441,0 +170734279259,441,0 +170734279307,441,0 +170734279355,441,0 +170734279403,441,0 +170734279451,441,0 +170734279499,441,0 +170734279547,441,0 +170734279595,441,0 +170734279645,441,0 +170734279694,441,0 +170734279742,441,0 +170734279792,441,0 +170734279841,441,0 +170734279891,441,0 +170734279939,441,0 +170734279987,440,0 +170734280036,292,1 +170734280117,438,0 +170734280167,441,0 +170734280215,441,0 +170734280263,441,0 +170734280312,441,0 +170734280360,441,0 +170734280408,441,0 +170734280457,441,0 +170734280505,441,0 +170734280553,441,0 +170734280601,441,0 +170734280651,441,0 +170734280699,441,0 +170734280748,441,0 +170734280796,441,0 +170734280846,441,0 +170734280894,441,0 +170734280943,441,0 +170734280991,441,0 +170734281041,278,1 +170734281126,279,1 +170734281207,441,0 +170734281255,441,0 +170734281302,441,0 +170734281350,441,0 +170734281398,441,0 +170734281446,441,0 +170734281496,441,0 +170734281544,441,0 +170734281593,441,0 +170734281641,441,0 +170734281689,441,0 +170734281737,441,0 +170734281785,441,0 +170734281835,441,0 +170734281883,441,0 +170734281930,441,0 +170734281978,441,0 +170734282026,441,0 +170734282076,440,0 +170734282125,296,1 +170734282211,438,0 +170734282259,441,0 +170734282307,441,0 +170734282355,441,0 +170734282403,441,0 +170734282451,441,0 +170734282499,441,0 +170734282547,441,0 +170734282596,441,0 +170734282644,441,0 +170734282692,441,0 +170734282742,441,0 +170734282789,441,0 +170734282839,441,0 +170734282887,441,0 +170734282935,441,0 +170734282983,441,0 +170734283032,441,0 +170734283081,441,0 +170734283129,440,0 +170734283179,304,1 +170734283260,438,0 +170734283308,441,0 +170734283357,441,0 +170734283407,441,0 +170734283455,441,0 +170734283503,441,0 +170734283551,441,0 +170734283599,441,0 +170734283648,441,0 +170734283696,441,0 +170734283744,441,0 +170734283793,441,0 +170734283841,441,0 +170734283889,441,0 +170734283937,441,0 +170734283987,441,0 +170734284035,441,0 +170734284083,441,0 +170734284131,441,0 +170734284179,426,0 +170734284227,296,1 +170734284310,439,0 +170734284360,441,0 +170734284409,441,0 +170734284459,441,0 +170734284507,441,0 +170734284556,441,0 +170734284606,441,0 +170734284653,441,0 +170734284703,441,0 +170734284753,441,0 +170734284802,441,0 +170734284850,441,0 +170734284898,441,0 +170734284946,441,0 +170734284994,441,0 +170734285042,441,0 +170734285090,441,0 +170734285138,221,0 +170734285186,220,0 +170734285234,224,0 +170734285282,250,0 +170734285331,244,0 +170734285379,441,0 +170734285427,441,0 +170734285476,441,0 +170734285524,441,0 +170734285572,441,0 +170734285620,441,0 +170734285670,441,0 +170734285718,441,0 +170734285766,441,0 +170734285814,441,0 +170734285863,441,0 +170734285911,441,0 +170734285959,441,0 +170734286007,441,0 +170734286055,441,0 +170734286103,441,0 +170734286151,441,0 +170734286200,441,0 +170734286248,441,0 +170734286296,282,1 +170734286384,243,0 +170734286432,441,0 +170734286480,441,0 +170734286528,441,0 +170734286576,441,0 +170734286623,441,0 +170734286673,441,0 +170734286721,441,0 +170734286769,441,0 +170734286817,441,0 +170734286865,441,0 +170734286914,441,0 +170734286962,441,0 +170734287010,441,0 +170734287058,441,0 +170734287108,441,0 +170734287156,441,0 +170734287205,441,0 +170734287255,441,0 +170734287303,441,0 +170734287352,302,1 +170734287439,436,0 +170734287491,441,0 +170734287541,441,0 +170734287589,441,0 +170734287637,441,0 +170734287685,441,0 +170734287733,441,0 +170734287781,441,0 +170734287829,441,0 +170734287877,441,0 +170734287925,441,0 +170734287972,441,0 +170734288020,441,0 +170734288068,441,0 +170734288118,441,0 +170734288166,441,0 +170734288215,441,0 +170734288263,441,0 +170734288311,441,0 +170734288359,441,0 +170734288407,285,1 +170734288489,436,0 +170734288537,441,0 +170734288585,441,0 +170734288633,441,0 +170734288681,441,0 +170734288730,441,0 +170734288778,441,0 +170734288826,441,0 +170734288874,441,0 +170734288922,441,0 +170734288970,441,0 +170734289019,441,0 +170734289069,441,0 +170734289117,441,0 +170734289165,441,0 +170734289214,441,0 +170734289262,441,0 +170734289312,441,0 +170734289361,441,0 +170734289411,441,0 +170734289459,302,1 +170734289546,438,0 +170734289594,441,0 +170734289644,441,0 +170734289693,441,0 +170734289743,441,0 +170734289791,441,0 +170734289838,441,0 +170734289886,441,0 +170734289936,441,0 +170734289984,441,0 +170734290032,441,0 +170734290079,441,0 +170734290127,441,0 +170734290177,441,0 +170734290225,441,0 +170734290273,441,0 +170734290321,441,0 +170734290368,441,0 +170734290416,441,0 +170734290466,441,0 +170734290514,304,1 +170734290604,440,0 +170734290652,441,0 +170734290700,441,0 +170734290748,441,0 +170734290796,441,0 +170734290844,441,0 +170734290893,441,0 +170734290941,441,0 +170734290989,441,0 +170734291037,441,0 +170734291087,441,0 +170734291136,441,0 +170734291184,441,0 +170734291232,441,0 +170734291280,441,0 +170734291328,441,0 +170734291376,441,0 +170734291424,441,0 +170734291472,441,0 +170734291520,431,0 +170734291568,303,1 +170734291652,440,0 +170734291700,441,0 +170734291748,441,0 +170734291796,441,0 +170734291844,441,0 +170734291893,441,0 +170734291943,441,0 +170734291991,441,0 +170734292040,441,0 +170734292090,441,0 +170734292138,441,0 +170734292187,441,0 +170734292237,441,0 +170734292286,441,0 +170734292336,441,0 +170734292384,441,0 +170734292432,441,0 +170734292481,441,0 +170734292529,441,0 +170734292577,302,1 +170734292661,300,1 +170734292739,441,0 +170734292787,441,0 +170734292834,441,0 +170734292884,441,0 +170734292932,441,0 +170734292982,441,0 +170734293031,441,0 +170734293079,441,0 +170734293127,441,0 +170734293175,441,0 +170734293223,441,0 +170734293271,441,0 +170734293319,441,0 +170734293368,441,0 +170734293416,441,0 +170734293464,441,0 +170734293514,441,0 +170734293562,441,0 +170734293611,441,0 +170734293659,270,1 +170734293741,439,0 +170734293789,441,0 +170734293837,441,0 +170734293885,441,0 +170734293933,441,0 +170734293981,441,0 +170734294028,441,0 +170734294076,441,0 +170734294124,441,0 +170734294174,441,0 +170734294222,441,0 +170734294270,441,0 +170734294318,441,0 +170734294366,441,0 +170734294414,441,0 +170734294462,441,0 +170734294510,441,0 +170734294559,441,0 +170734294609,441,0 +170734294657,441,0 +170734294706,299,1 +170734294796,437,0 +170734294844,441,0 +170734294892,441,0 +170734294941,441,0 +170734294991,441,0 +170734295039,441,0 +170734295087,441,0 +170734295135,441,0 +170734295183,441,0 +170734295231,441,0 +170734295278,441,0 +170734295328,441,0 +170734295376,441,0 +170734295424,441,0 +170734295472,441,0 +170734295521,441,0 +170734295569,441,0 +170734295619,441,0 +170734295668,441,0 +170734295716,271,1 +170734295801,291,1 +170734295881,441,0 +170734295929,441,0 +170734295977,441,0 +170734296025,441,0 +170734296074,441,0 +170734296124,441,0 +170734296172,441,0 +170734296221,441,0 +170734296269,441,0 +170734296317,441,0 +170734296365,441,0 +170734296413,441,0 +170734296463,441,0 +170734296512,441,0 +170734296562,441,0 +170734296611,441,0 +170734296659,441,0 +170734296707,441,0 +170734296755,439,0 +170734296804,306,1 +170734296894,440,0 +170734296942,441,0 +170734296990,441,0 +170734297040,441,0 +170734297089,441,0 +170734297139,441,0 +170734297187,441,0 +170734297236,441,0 +170734297286,441,0 +170734297334,441,0 +170734297382,441,0 +170734297430,441,0 +170734297478,441,0 +170734297526,441,0 +170734297575,441,0 +170734297625,441,0 +170734297673,441,0 +170734297721,441,0 +170734297770,441,0 +170734297818,281,1 +170734297908,245,0 +170734297956,441,0 +170734298004,441,0 +170734298053,441,0 +170734298103,441,0 +170734298151,441,0 +170734298199,441,0 +170734298248,441,0 +170734298296,441,0 +170734298344,441,0 +170734298393,441,0 +170734298441,441,0 +170734298491,441,0 +170734298540,441,0 +170734298588,441,0 +170734298636,441,0 +170734298684,441,0 +170734298732,441,0 +170734298780,441,0 +170734298830,441,0 +170734298878,301,1 +170734298960,396,0 +170734299010,441,0 +170734299058,441,0 +170734299106,441,0 +170734299154,441,0 +170734299203,441,0 +170734299251,441,0 +170734299300,441,0 +170734299350,441,0 +170734299399,441,0 +170734299449,441,0 +170734299499,441,0 +170734299548,441,0 +170734299596,441,0 +170734299644,441,0 +170734299692,441,0 +170734299740,441,0 +170734299788,441,0 +170734299836,441,0 +170734299884,441,0 +170734299932,299,1 +170734300017,437,0 +170734300066,441,0 +170734300116,441,0 +170734300165,441,0 +170734300215,441,0 +170734300263,441,0 +170734300311,441,0 +170734300359,441,0 +170734300407,441,0 +170734300456,441,0 +170734300504,441,0 +170734300552,441,0 +170734300602,441,0 +170734300649,441,0 +170734300697,441,0 +170734300745,441,0 +170734300793,441,0 +170734300841,441,0 +170734300889,441,0 +170734300937,441,0 +170734300985,307,1 +170734301067,427,0 +170734301116,441,0 +170734301164,441,0 +170734301212,441,0 +170734301260,441,0 +170734301309,441,0 +170734301357,441,0 +170734301405,441,0 +170734301453,441,0 +170734301501,441,0 +170734301549,441,0 +170734301597,441,0 +170734301644,441,0 +170734301692,441,0 +170734301740,441,0 +170734301790,441,0 +170734301837,441,0 +170734301885,441,0 +170734301933,441,0 +170734301983,441,0 +170734302030,258,0 +170734302078,305,1 +170734302155,441,0 +170734302202,441,0 +170734302250,441,0 +170734302298,441,0 +170734302346,441,0 +170734302394,441,0 +170734302442,441,0 +170734302490,441,0 +170734302538,441,0 +170734302586,441,0 +170734302633,441,0 +170734302683,441,0 +170734302731,441,0 +170734302779,441,0 +170734302828,441,0 +170734302876,441,0 +170734302924,441,0 +170734302972,441,0 +170734303020,441,0 +170734303068,308,1 +170734303147,241,0 +170734303195,441,0 +170734303243,441,0 +170734303291,441,0 +170734303339,441,0 +170734303387,441,0 +170734303436,441,0 +170734303484,441,0 +170734303532,441,0 +170734303582,441,0 +170734303630,441,0 +170734303679,441,0 +170734303729,441,0 +170734303777,441,0 +170734303825,441,0 +170734303873,441,0 +170734303921,441,0 +170734303970,441,0 +170734304020,441,0 +170734304067,441,0 +170734304115,283,1 +170734304204,284,1 +170734304283,441,0 +170734304331,441,0 +170734304379,441,0 +170734304427,441,0 +170734304476,441,0 +170734304524,441,0 +170734304572,441,0 +170734304622,441,0 +170734304670,441,0 +170734304718,441,0 +170734304766,441,0 +170734304815,441,0 +170734304863,441,0 +170734304911,441,0 +170734304959,441,0 +170734305009,441,0 +170734305056,441,0 +170734305104,441,0 +170734305154,290,1 +170734305240,275,1 +170734305322,441,0 +170734305371,441,0 +170734305421,441,0 +170734305470,441,0 +170734305518,441,0 +170734305566,441,0 +170734305614,441,0 +170734305664,441,0 +170734305712,441,0 +170734305761,441,0 +170734305809,441,0 +170734305857,441,0 +170734305905,441,0 +170734305955,441,0 +170734306003,441,0 +170734306050,441,0 +170734306100,441,0 +170734306148,441,0 +170734306196,289,1 +170734306274,302,1 +170734306352,441,0 +170734306400,441,0 +170734306450,441,0 +170734306498,441,0 +170734306547,441,0 +170734306595,441,0 +170734306643,441,0 +170734306693,441,0 +170734306741,441,0 +170734306789,441,0 +170734306837,441,0 +170734306885,441,0 +170734306934,441,0 +170734306982,441,0 +170734307030,441,0 +170734307078,441,0 +170734307126,441,0 +170734307174,441,0 +170734307222,441,0 +170734307270,302,1 +170734307354,347,0 +170734307403,441,0 +170734307451,441,0 +170734307501,441,0 +170734307549,441,0 +170734307597,441,0 +170734307646,441,0 +170734307694,441,0 +170734307742,441,0 +170734307790,441,0 +170734307838,441,0 +170734307886,441,0 +170734307934,441,0 +170734307982,441,0 +170734308030,441,0 +170734308078,441,0 +170734308126,441,0 +170734308175,441,0 +170734308225,441,0 +170734308273,441,0 +170734308321,301,1 +170734308404,437,0 +170734308452,441,0 +170734308500,441,0 +170734308548,441,0 +170734308596,441,0 +170734308646,441,0 +170734308695,441,0 +170734308743,441,0 +170734308793,441,0 +170734308841,441,0 +170734308890,441,0 +170734308938,441,0 +170734308987,441,0 +170734309035,441,0 +170734309083,441,0 +170734309131,441,0 +170734309179,441,0 +170734309227,441,0 +170734309275,441,0 +170734309324,441,0 +170734309372,307,1 +170734309455,436,0 +170734309503,441,0 +170734309551,441,0 +170734309601,441,0 +170734309650,441,0 +170734309700,441,0 +170734309749,441,0 +170734309799,441,0 +170734309847,441,0 +170734309895,441,0 +170734309943,441,0 +170734309993,441,0 +170734310041,441,0 +170734310090,441,0 +170734310140,441,0 +170734310189,441,0 +170734310237,441,0 +170734310285,441,0 +170734310333,441,0 +170734310381,440,0 +170734310431,301,1 +170734310517,439,0 +170734310565,441,0 +170734310615,441,0 +170734310663,441,0 +170734310711,441,0 +170734310760,441,0 +170734310810,441,0 +170734310858,441,0 +170734310906,441,0 +170734310955,441,0 +170734311005,441,0 +170734311053,441,0 +170734311101,441,0 +170734311149,441,0 +170734311197,441,0 +170734311245,441,0 +170734311292,441,0 +170734311340,441,0 +170734311388,441,0 +170734311436,379,0 +170734311484,307,1 +170734311570,440,0 +170734311618,441,0 +170734311666,441,0 +170734311714,441,0 +170734311762,441,0 +170734311810,441,0 +170734311858,441,0 +170734311905,441,0 +170734311953,441,0 +170734312003,441,0 +170734312051,441,0 +170734312099,441,0 +170734312147,441,0 +170734312195,441,0 +170734312243,441,0 +170734312290,441,0 +170734312338,441,0 +170734312386,441,0 +170734312436,441,0 +170734312485,382,0 +170734312533,294,1 +170734312624,441,0 +170734312672,441,0 +170734312720,441,0 +170734312768,441,0 +170734312817,441,0 +170734312865,441,0 +170734312915,441,0 +170734312963,441,0 +170734313011,441,0 +170734313060,441,0 +170734313108,441,0 +170734313156,441,0 +170734313204,441,0 +170734313252,441,0 +170734313300,441,0 +170734313348,441,0 +170734313395,441,0 +170734313443,441,0 +170734313493,441,0 +170734313542,441,0 +170734313590,441,0 +170734313638,441,0 +170734313686,441,0 +170734313734,441,0 +170734313782,441,0 +170734313831,441,0 +170734313879,441,0 +170734313928,441,0 +170734313976,441,0 +170734314026,441,0 +170734314075,303,1 +170734314159,434,0 +170734314208,441,0 +170734314256,441,0 +170734314304,441,0 +170734314352,441,0 +170734314402,441,0 +170734314450,441,0 +170734314498,441,0 +170734314546,441,0 +170734314595,441,0 +170734314643,441,0 +170734314691,441,0 +170734314739,441,0 +170734314788,441,0 +170734314838,441,0 +170734314887,441,0 +170734314935,441,0 +170734314983,441,0 +170734315031,441,0 +170734315079,441,0 +170734315127,300,1 +170734315207,426,0 +170734315255,441,0 +170734315304,441,0 +170734315352,441,0 +170734315402,441,0 +170734315451,441,0 +170734315501,441,0 +170734315549,441,0 +170734315598,441,0 +170734315646,441,0 +170734315694,441,0 +170734315744,441,0 +170734315792,441,0 +170734315840,441,0 +170734315888,441,0 +170734315936,441,0 +170734315984,441,0 +170734316032,441,0 +170734316080,441,0 +170734316129,441,0 +170734316179,303,1 +170734316267,435,0 +170734316315,441,0 +170734316365,441,0 +170734316414,441,0 +170734316462,441,0 +170734316512,441,0 +170734316559,441,0 +170734316609,441,0 +170734316657,441,0 +170734316706,441,0 +170734316754,441,0 +170734316804,441,0 +170734316852,441,0 +170734316900,441,0 +170734316949,441,0 +170734316997,441,0 +170734317045,441,0 +170734317095,441,0 +170734317143,441,0 +170734317190,391,0 +170734317240,304,1 +170734317321,439,0 +170734317369,441,0 +170734317417,441,0 +170734317465,441,0 +170734317513,441,0 +170734317561,441,0 +170734317609,441,0 +170734317657,441,0 +170734317705,441,0 +170734317753,441,0 +170734317801,441,0 +170734317848,441,0 +170734317898,441,0 +170734317946,441,0 +170734317994,441,0 +170734318043,441,0 +170734318091,441,0 +170734318139,441,0 +170734318187,441,0 +170734318235,440,0 +170734318284,304,1 +170734318359,436,0 +170734318407,441,0 +170734318456,441,0 +170734318506,441,0 +170734318555,441,0 +170734318603,441,0 +170734318651,441,0 +170734318699,441,0 +170734318747,441,0 +170734318795,441,0 +170734318843,441,0 +170734318892,441,0 +170734318940,441,0 +170734318990,441,0 +170734319038,441,0 +170734319087,441,0 +170734319135,441,0 +170734319183,441,0 +170734319231,441,0 +170734319280,441,0 +170734319330,268,0 +170734319380,282,1 +170734319460,441,0 +170734319508,441,0 +170734319558,441,0 +170734319607,441,0 +170734319655,441,0 +170734319703,441,0 +170734319751,441,0 +170734319799,441,0 +170734319847,441,0 +170734319896,441,0 +170734319944,441,0 +170734319992,441,0 diff --git a/laser_value/0208-08.csv b/laser_value/0208-08.csv new file mode 100644 index 0000000..c20e29e --- /dev/null +++ b/laser_value/0208-08.csv @@ -0,0 +1,7154 @@ +timestamp,laser_value,event +170734320040,441,0 +170734320088,441,0 +170734320136,441,0 +170734320184,441,0 +170734320232,441,0 +170734320281,441,0 +170734320329,441,0 +170734320377,303,1 +170734320463,438,0 +170734320511,441,0 +170734320559,441,0 +170734320608,441,0 +170734320657,441,0 +170734320705,441,0 +170734320753,441,0 +170734320803,441,0 +170734320851,441,0 +170734320900,441,0 +170734320948,441,0 +170734320996,441,0 +170734321045,441,0 +170734321093,441,0 +170734321141,441,0 +170734321191,441,0 +170734321239,441,0 +170734321287,441,0 +170734321335,441,0 +170734321384,299,1 +170734321469,296,1 +170734321549,441,0 +170734321597,441,0 +170734321647,441,0 +170734321695,441,0 +170734321743,441,0 +170734321790,441,0 +170734321838,441,0 +170734321888,441,0 +170734321936,441,0 +170734321984,441,0 +170734322033,441,0 +170734322083,441,0 +170734322130,441,0 +170734322180,441,0 +170734322228,441,0 +170734322276,441,0 +170734322324,441,0 +170734322373,441,0 +170734322421,441,0 +170734322469,307,1 +170734322553,435,0 +170734322603,441,0 +170734322651,441,0 +170734322700,441,0 +170734322750,441,0 +170734322798,441,0 +170734322846,441,0 +170734322894,441,0 +170734322942,441,0 +170734322991,441,0 +170734323041,441,0 +170734323088,441,0 +170734323136,441,0 +170734323184,441,0 +170734323232,441,0 +170734323280,441,0 +170734323328,441,0 +170734323376,441,0 +170734323424,441,0 +170734323472,441,0 +170734323520,302,1 +170734323597,436,0 +170734323650,441,0 +170734323698,441,0 +170734323746,441,0 +170734323795,441,0 +170734323843,441,0 +170734323891,441,0 +170734323940,441,0 +170734323990,441,0 +170734324038,441,0 +170734324086,441,0 +170734324134,441,0 +170734324182,441,0 +170734324231,441,0 +170734324281,441,0 +170734324329,441,0 +170734324378,441,0 +170734324426,441,0 +170734324474,441,0 +170734324523,439,0 +170734324571,305,1 +170734324657,438,0 +170734324705,441,0 +170734324753,441,0 +170734324801,441,0 +170734324851,441,0 +170734324899,441,0 +170734324947,441,0 +170734324995,441,0 +170734325042,441,0 +170734325090,441,0 +170734325138,441,0 +170734325186,441,0 +170734325234,441,0 +170734325282,441,0 +170734325330,441,0 +170734325378,441,0 +170734325427,441,0 +170734325475,441,0 +170734325523,441,0 +170734325571,441,0 +170734325619,290,1 +170734325719,440,0 +170734325767,441,0 +170734325817,441,0 +170734325866,441,0 +170734325916,441,0 +170734325964,441,0 +170734326011,441,0 +170734326059,441,0 +170734326107,441,0 +170734326155,441,0 +170734326203,441,0 +170734326251,441,0 +170734326299,441,0 +170734326347,441,0 +170734326395,441,0 +170734326442,441,0 +170734326490,441,0 +170734326538,441,0 +170734326586,441,0 +170734326636,381,0 +170734326685,297,1 +170734326766,440,0 +170734326816,441,0 +170734326864,441,0 +170734326913,441,0 +170734326961,441,0 +170734327009,441,0 +170734327057,441,0 +170734327105,441,0 +170734327154,441,0 +170734327202,441,0 +170734327251,441,0 +170734327301,441,0 +170734327349,441,0 +170734327398,441,0 +170734327446,441,0 +170734327496,441,0 +170734327544,441,0 +170734327593,441,0 +170734327643,441,0 +170734327691,299,1 +170734327773,237,0 +170734327821,441,0 +170734327868,441,0 +170734327918,441,0 +170734327966,441,0 +170734328014,441,0 +170734328062,441,0 +170734328111,441,0 +170734328159,441,0 +170734328207,441,0 +170734328255,441,0 +170734328303,441,0 +170734328351,441,0 +170734328399,441,0 +170734328448,441,0 +170734328496,441,0 +170734328545,441,0 +170734328595,441,0 +170734328643,441,0 +170734328691,441,0 +170734328739,291,1 +170734328825,262,0 +170734328874,441,0 +170734328922,441,0 +170734328970,441,0 +170734329018,441,0 +170734329065,441,0 +170734329113,441,0 +170734329163,441,0 +170734329211,441,0 +170734329259,441,0 +170734329308,441,0 +170734329356,441,0 +170734329404,441,0 +170734329452,441,0 +170734329499,441,0 +170734329547,441,0 +170734329595,441,0 +170734329643,441,0 +170734329691,441,0 +170734329739,441,0 +170734329787,310,0 +170734329835,307,1 +170734329926,441,0 +170734329974,441,0 +170734330023,441,0 +170734330071,441,0 +170734330119,441,0 +170734330167,441,0 +170734330215,441,0 +170734330263,441,0 +170734330311,441,0 +170734330360,441,0 +170734330409,441,0 +170734330459,441,0 +170734330507,441,0 +170734330555,441,0 +170734330604,441,0 +170734330654,441,0 +170734330702,441,0 +170734330749,441,0 +170734330797,441,0 +170734330847,308,1 +170734330928,353,0 +170734330976,441,0 +170734331024,441,0 +170734331072,441,0 +170734331120,441,0 +170734331167,441,0 +170734331215,441,0 +170734331263,441,0 +170734331313,441,0 +170734331362,441,0 +170734331410,441,0 +170734331458,441,0 +170734331506,441,0 +170734331555,441,0 +170734331603,441,0 +170734331651,441,0 +170734331699,441,0 +170734331747,441,0 +170734331795,441,0 +170734331842,441,0 +170734331890,305,1 +170734331978,433,0 +170734332026,441,0 +170734332073,441,0 +170734332121,441,0 +170734332171,441,0 +170734332219,441,0 +170734332267,441,0 +170734332314,441,0 +170734332364,441,0 +170734332412,441,0 +170734332460,441,0 +170734332508,441,0 +170734332557,441,0 +170734332605,441,0 +170734332653,441,0 +170734332701,441,0 +170734332749,441,0 +170734332796,441,0 +170734332844,441,0 +170734332892,441,0 +170734332940,304,1 +170734333022,239,0 +170734333070,441,0 +170734333118,441,0 +170734333166,441,0 +170734333214,441,0 +170734333262,441,0 +170734333310,441,0 +170734333358,441,0 +170734333405,441,0 +170734333453,441,0 +170734333501,441,0 +170734333549,441,0 +170734333598,441,0 +170734333646,441,0 +170734333694,441,0 +170734333742,441,0 +170734333790,441,0 +170734333838,441,0 +170734333886,441,0 +170734333934,441,0 +170734333981,292,1 +170734334066,242,0 +170734334114,441,0 +170734334162,441,0 +170734334210,441,0 +170734334258,441,0 +170734334306,441,0 +170734334353,441,0 +170734334401,441,0 +170734334449,441,0 +170734334497,441,0 +170734334545,441,0 +170734334593,441,0 +170734334641,441,0 +170734334689,441,0 +170734334737,441,0 +170734334784,441,0 +170734334832,441,0 +170734334880,441,0 +170734334928,441,0 +170734334976,441,0 +170734335024,269,0 +170734335073,300,1 +170734335164,441,0 +170734335212,441,0 +170734335260,441,0 +170734335308,441,0 +170734335356,441,0 +170734335404,441,0 +170734335452,441,0 +170734335499,441,0 +170734335547,441,0 +170734335595,441,0 +170734335645,441,0 +170734335692,441,0 +170734335740,441,0 +170734335788,441,0 +170734335836,441,0 +170734335884,441,0 +170734335932,441,0 +170734335980,441,0 +170734336029,441,0 +170734336077,297,1 +170734336158,273,1 +170734336239,441,0 +170734336287,441,0 +170734336335,441,0 +170734336383,441,0 +170734336432,441,0 +170734336482,441,0 +170734336530,441,0 +170734336578,441,0 +170734336626,441,0 +170734336674,441,0 +170734336721,441,0 +170734336771,441,0 +170734336819,441,0 +170734336867,441,0 +170734336914,441,0 +170734336962,441,0 +170734337010,441,0 +170734337060,441,0 +170734337108,440,0 +170734337155,310,0 +170734337205,305,1 +170734337294,441,0 +170734337341,441,0 +170734337389,441,0 +170734337437,441,0 +170734337486,441,0 +170734337536,441,0 +170734337584,441,0 +170734337632,441,0 +170734337680,441,0 +170734337729,441,0 +170734337777,441,0 +170734337827,441,0 +170734337874,441,0 +170734337922,441,0 +170734337970,441,0 +170734338018,441,0 +170734338066,441,0 +170734338114,441,0 +170734338162,440,0 +170734338211,295,1 +170734338297,439,0 +170734338344,441,0 +170734338392,441,0 +170734338440,441,0 +170734338488,441,0 +170734338536,441,0 +170734338584,441,0 +170734338632,441,0 +170734338679,441,0 +170734338727,441,0 +170734338775,441,0 +170734338823,441,0 +170734338871,441,0 +170734338919,441,0 +170734338967,441,0 +170734339014,441,0 +170734339062,441,0 +170734339112,441,0 +170734339161,441,0 +170734339209,441,0 +170734339257,306,1 +170734339337,438,0 +170734339385,441,0 +170734339433,441,0 +170734339481,441,0 +170734339529,441,0 +170734339577,441,0 +170734339625,441,0 +170734339673,441,0 +170734339722,441,0 +170734339770,441,0 +170734339820,441,0 +170734339869,441,0 +170734339917,441,0 +170734339965,441,0 +170734340013,441,0 +170734340061,441,0 +170734340109,441,0 +170734340158,441,0 +170734340206,441,0 +170734340254,440,0 +170734340302,305,1 +170734340383,438,0 +170734340431,441,0 +170734340479,441,0 +170734340527,441,0 +170734340575,441,0 +170734340622,441,0 +170734340670,441,0 +170734340718,441,0 +170734340766,441,0 +170734340814,441,0 +170734340862,441,0 +170734340911,441,0 +170734340961,441,0 +170734341009,441,0 +170734341057,441,0 +170734341105,441,0 +170734341152,441,0 +170734341200,441,0 +170734341248,441,0 +170734341296,441,0 +170734341344,311,0 +170734341392,272,1 +170734341478,441,0 +170734341526,441,0 +170734341574,441,0 +170734341622,441,0 +170734341671,441,0 +170734341719,441,0 +170734341767,441,0 +170734341815,441,0 +170734341863,441,0 +170734341911,441,0 +170734341959,441,0 +170734342006,441,0 +170734342056,441,0 +170734342104,441,0 +170734342152,441,0 +170734342199,441,0 +170734342249,441,0 +170734342297,441,0 +170734342345,440,0 +170734342392,299,1 +170734342474,438,0 +170734342522,441,0 +170734342570,441,0 +170734342618,441,0 +170734342666,441,0 +170734342714,441,0 +170734342762,441,0 +170734342809,441,0 +170734342857,441,0 +170734342905,441,0 +170734342953,441,0 +170734343001,441,0 +170734343050,441,0 +170734343098,441,0 +170734343146,441,0 +170734343196,441,0 +170734343244,441,0 +170734343293,441,0 +170734343341,441,0 +170734343390,441,0 +170734343440,301,1 +170734343522,436,0 +170734343572,441,0 +170734343620,441,0 +170734343667,441,0 +170734343715,441,0 +170734343763,441,0 +170734343813,441,0 +170734343862,441,0 +170734343910,441,0 +170734343958,441,0 +170734344006,441,0 +170734344054,441,0 +170734344102,441,0 +170734344152,441,0 +170734344201,441,0 +170734344251,441,0 +170734344300,441,0 +170734344350,441,0 +170734344398,441,0 +170734344447,441,0 +170734344495,285,1 +170734344576,436,0 +170734344626,441,0 +170734344674,441,0 +170734344722,441,0 +170734344770,441,0 +170734344819,441,0 +170734344867,441,0 +170734344915,441,0 +170734344963,441,0 +170734345011,441,0 +170734345059,441,0 +170734345107,441,0 +170734345157,441,0 +170734345206,441,0 +170734345254,441,0 +170734345304,441,0 +170734345352,441,0 +170734345400,441,0 +170734345449,441,0 +170734345497,441,0 +170734345547,295,1 +170734345629,438,0 +170734345678,441,0 +170734345728,441,0 +170734345777,441,0 +170734345825,441,0 +170734345875,441,0 +170734345923,441,0 +170734345971,441,0 +170734346019,441,0 +170734346067,441,0 +170734346114,441,0 +170734346164,441,0 +170734346214,441,0 +170734346263,441,0 +170734346311,441,0 +170734346359,441,0 +170734346408,441,0 +170734346456,441,0 +170734346504,441,0 +170734346552,437,0 +170734346600,292,1 +170734346683,440,0 +170734346731,441,0 +170734346779,441,0 +170734346827,441,0 +170734346875,441,0 +170734346923,441,0 +170734346972,441,0 +170734347020,441,0 +170734347069,441,0 +170734347119,441,0 +170734347167,441,0 +170734347216,441,0 +170734347264,441,0 +170734347312,441,0 +170734347360,441,0 +170734347408,441,0 +170734347458,441,0 +170734347506,441,0 +170734347554,441,0 +170734347602,429,0 +170734347651,299,1 +170734347730,439,0 +170734347779,441,0 +170734347827,441,0 +170734347875,441,0 +170734347925,441,0 +170734347974,441,0 +170734348022,441,0 +170734348070,441,0 +170734348118,441,0 +170734348166,441,0 +170734348215,441,0 +170734348263,441,0 +170734348311,441,0 +170734348359,441,0 +170734348407,441,0 +170734348455,441,0 +170734348503,441,0 +170734348553,441,0 +170734348601,441,0 +170734348650,288,1 +170734348735,290,1 +170734348818,441,0 +170734348868,441,0 +170734348917,441,0 +170734348965,441,0 +170734349015,441,0 +170734349063,441,0 +170734349111,441,0 +170734349159,441,0 +170734349208,441,0 +170734349256,441,0 +170734349304,441,0 +170734349353,441,0 +170734349401,441,0 +170734349449,441,0 +170734349499,441,0 +170734349548,441,0 +170734349596,441,0 +170734349646,441,0 +170734349695,441,0 +170734349745,303,1 +170734349830,438,0 +170734349879,441,0 +170734349929,441,0 +170734349977,441,0 +170734350025,441,0 +170734350074,441,0 +170734350122,441,0 +170734350170,441,0 +170734350218,441,0 +170734350266,441,0 +170734350314,441,0 +170734350364,441,0 +170734350412,441,0 +170734350461,441,0 +170734350511,441,0 +170734350559,441,0 +170734350607,441,0 +170734350656,441,0 +170734350704,441,0 +170734350754,252,0 +170734350801,260,0 +170734350849,236,0 +170734350897,441,0 +170734350947,441,0 +170734350995,441,0 +170734351042,441,0 +170734351090,441,0 +170734351138,441,0 +170734351186,441,0 +170734351234,441,0 +170734351282,441,0 +170734351330,441,0 +170734351378,441,0 +170734351426,441,0 +170734351475,441,0 +170734351523,441,0 +170734351571,441,0 +170734351619,441,0 +170734351668,441,0 +170734351718,441,0 +170734351766,441,0 +170734351813,296,1 +170734351906,416,0 +170734351955,441,0 +170734352005,441,0 +170734352053,441,0 +170734352102,441,0 +170734352150,441,0 +170734352198,441,0 +170734352246,441,0 +170734352295,441,0 +170734352343,441,0 +170734352391,441,0 +170734352441,441,0 +170734352488,441,0 +170734352538,441,0 +170734352587,441,0 +170734352637,441,0 +170734352685,441,0 +170734352733,441,0 +170734352780,441,0 +170734352828,441,0 +170734352876,301,1 +170734352964,438,0 +170734353012,441,0 +170734353061,441,0 +170734353111,441,0 +170734353159,441,0 +170734353207,441,0 +170734353255,441,0 +170734353303,441,0 +170734353352,441,0 +170734353401,441,0 +170734353449,441,0 +170734353497,441,0 +170734353545,441,0 +170734353594,441,0 +170734353642,441,0 +170734353690,441,0 +170734353738,441,0 +170734353786,441,0 +170734353834,441,0 +170734353882,440,0 +170734353930,311,0 +170734353978,283,1 +170734354063,441,0 +170734354112,441,0 +170734354160,441,0 +170734354208,441,0 +170734354258,441,0 +170734354306,441,0 +170734354353,441,0 +170734354401,441,0 +170734354449,441,0 +170734354499,441,0 +170734354547,441,0 +170734354595,441,0 +170734354643,441,0 +170734354690,441,0 +170734354738,441,0 +170734354786,441,0 +170734354834,441,0 +170734354882,441,0 +170734354930,432,0 +170734354978,276,1 +170734355064,440,0 +170734355112,441,0 +170734355160,441,0 +170734355208,441,0 +170734355256,441,0 +170734355304,441,0 +170734355354,441,0 +170734355403,441,0 +170734355453,441,0 +170734355501,441,0 +170734355549,441,0 +170734355597,441,0 +170734355646,441,0 +170734355696,441,0 +170734355745,441,0 +170734355793,441,0 +170734355843,441,0 +170734355891,441,0 +170734355939,441,0 +170734355987,440,0 +170734356035,300,1 +170734356119,440,0 +170734356169,441,0 +170734356217,441,0 +170734356265,441,0 +170734356313,441,0 +170734356361,441,0 +170734356410,441,0 +170734356460,441,0 +170734356509,441,0 +170734356557,441,0 +170734356607,441,0 +170734356656,441,0 +170734356704,441,0 +170734356752,441,0 +170734356800,441,0 +170734356848,441,0 +170734356896,441,0 +170734356945,441,0 +170734356993,441,0 +170734357043,301,1 +170734357132,248,0 +170734357181,441,0 +170734357229,441,0 +170734357277,441,0 +170734357325,441,0 +170734357373,441,0 +170734357422,441,0 +170734357470,441,0 +170734357520,441,0 +170734357568,441,0 +170734357616,441,0 +170734357665,441,0 +170734357715,441,0 +170734357763,441,0 +170734357812,441,0 +170734357860,441,0 +170734357910,441,0 +170734357958,441,0 +170734358006,441,0 +170734358054,441,0 +170734358102,302,1 +170734358183,236,0 +170734358232,441,0 +170734358281,441,0 +170734358329,441,0 +170734358379,441,0 +170734358428,441,0 +170734358476,441,0 +170734358526,441,0 +170734358574,441,0 +170734358622,441,0 +170734358670,441,0 +170734358717,441,0 +170734358765,441,0 +170734358813,441,0 +170734358861,441,0 +170734358911,441,0 +170734358959,441,0 +170734359006,441,0 +170734359054,441,0 +170734359102,441,0 +170734359150,303,1 +170734359229,248,0 +170734359277,441,0 +170734359325,441,0 +170734359374,441,0 +170734359424,441,0 +170734359472,441,0 +170734359520,441,0 +170734359568,441,0 +170734359615,441,0 +170734359663,441,0 +170734359711,441,0 +170734359759,441,0 +170734359809,441,0 +170734359857,441,0 +170734359904,441,0 +170734359952,441,0 +170734360000,441,0 +170734360048,441,0 +170734360096,441,0 +170734360145,441,0 +170734360193,437,0 +170734360241,288,1 +170734360328,440,0 +170734360375,441,0 +170734360423,441,0 +170734360471,441,0 +170734360519,441,0 +170734360567,441,0 +170734360615,441,0 +170734360663,441,0 +170734360711,441,0 +170734360758,441,0 +170734360806,441,0 +170734360854,441,0 +170734360902,441,0 +170734360950,441,0 +170734360998,441,0 +170734361048,441,0 +170734361096,441,0 +170734361145,441,0 +170734361193,441,0 +170734361241,301,1 +170734361326,238,0 +170734361375,441,0 +170734361423,441,0 +170734361471,441,0 +170734361521,441,0 +170734361570,441,0 +170734361620,441,0 +170734361668,441,0 +170734361716,441,0 +170734361765,441,0 +170734361815,441,0 +170734361863,441,0 +170734361912,441,0 +170734361960,441,0 +170734362010,441,0 +170734362058,441,0 +170734362106,441,0 +170734362155,441,0 +170734362205,441,0 +170734362253,441,0 +170734362301,304,1 +170734362381,235,0 +170734362429,441,0 +170734362477,441,0 +170734362525,441,0 +170734362573,441,0 +170734362621,441,0 +170734362669,441,0 +170734362717,441,0 +170734362765,441,0 +170734362812,441,0 +170734362860,441,0 +170734362910,441,0 +170734362959,441,0 +170734363009,441,0 +170734363058,441,0 +170734363106,441,0 +170734363154,441,0 +170734363203,441,0 +170734363251,441,0 +170734363299,441,0 +170734363347,305,1 +170734363430,237,0 +170734363479,441,0 +170734363527,441,0 +170734363575,441,0 +170734363623,441,0 +170734363672,441,0 +170734363722,441,0 +170734363770,441,0 +170734363819,441,0 +170734363867,441,0 +170734363915,441,0 +170734363963,441,0 +170734364013,441,0 +170734364061,441,0 +170734364108,441,0 +170734364156,441,0 +170734364204,441,0 +170734364254,441,0 +170734364303,441,0 +170734364351,441,0 +170734364399,297,1 +170734364482,404,0 +170734364530,441,0 +170734364578,441,0 +170734364626,441,0 +170734364676,441,0 +170734364725,441,0 +170734364773,441,0 +170734364821,441,0 +170734364869,441,0 +170734364917,441,0 +170734364966,441,0 +170734365016,441,0 +170734365064,441,0 +170734365112,441,0 +170734365160,441,0 +170734365208,441,0 +170734365256,441,0 +170734365303,441,0 +170734365351,441,0 +170734365401,441,0 +170734365449,299,1 +170734365543,438,0 +170734365590,441,0 +170734365638,441,0 +170734365688,441,0 +170734365736,441,0 +170734365785,441,0 +170734365835,441,0 +170734365883,441,0 +170734365932,441,0 +170734365982,441,0 +170734366030,441,0 +170734366078,441,0 +170734366126,441,0 +170734366174,441,0 +170734366222,441,0 +170734366270,441,0 +170734366318,441,0 +170734366366,441,0 +170734366414,441,0 +170734366462,441,0 +170734366510,284,1 +170734366589,421,0 +170734366638,441,0 +170734366688,441,0 +170734366736,441,0 +170734366783,441,0 +170734366831,441,0 +170734366879,441,0 +170734366927,441,0 +170734366975,441,0 +170734367023,441,0 +170734367072,441,0 +170734367122,441,0 +170734367170,441,0 +170734367219,441,0 +170734367269,441,0 +170734367318,441,0 +170734367366,441,0 +170734367414,441,0 +170734367462,441,0 +170734367512,441,0 +170734367560,286,1 +170734367639,435,0 +170734367687,441,0 +170734367735,441,0 +170734367783,441,0 +170734367831,441,0 +170734367880,441,0 +170734367928,441,0 +170734367978,441,0 +170734368026,441,0 +170734368074,441,0 +170734368122,441,0 +170734368170,441,0 +170734368218,441,0 +170734368267,441,0 +170734368315,441,0 +170734368365,441,0 +170734368413,441,0 +170734368461,441,0 +170734368510,441,0 +170734368558,441,0 +170734368606,289,1 +170734368690,437,0 +170734368738,441,0 +170734368786,441,0 +170734368834,441,0 +170734368882,441,0 +170734368931,441,0 +170734368979,441,0 +170734369027,441,0 +170734369075,441,0 +170734369123,441,0 +170734369171,441,0 +170734369220,441,0 +170734369268,441,0 +170734369316,441,0 +170734369364,441,0 +170734369414,441,0 +170734369462,441,0 +170734369510,441,0 +170734369559,441,0 +170734369609,441,0 +170734369658,298,1 +170734369745,439,0 +170734369793,441,0 +170734369841,441,0 +170734369889,441,0 +170734369937,441,0 +170734369985,441,0 +170734370033,441,0 +170734370082,441,0 +170734370130,441,0 +170734370178,441,0 +170734370226,441,0 +170734370274,441,0 +170734370322,441,0 +170734370370,441,0 +170734370418,441,0 +170734370468,441,0 +170734370517,441,0 +170734370565,441,0 +170734370613,441,0 +170734370661,441,0 +170734370710,295,1 +170734370796,438,0 +170734370843,441,0 +170734370891,441,0 +170734370939,441,0 +170734370987,441,0 +170734371035,441,0 +170734371085,441,0 +170734371133,441,0 +170734371182,441,0 +170734371230,441,0 +170734371278,441,0 +170734371326,441,0 +170734371376,441,0 +170734371425,441,0 +170734371473,441,0 +170734371521,441,0 +170734371569,441,0 +170734371617,441,0 +170734371666,441,0 +170734371714,440,0 +170734371762,292,1 +170734371845,439,0 +170734371893,441,0 +170734371941,441,0 +170734371989,441,0 +170734372037,441,0 +170734372085,441,0 +170734372134,441,0 +170734372184,441,0 +170734372232,441,0 +170734372280,441,0 +170734372328,441,0 +170734372376,441,0 +170734372424,441,0 +170734372471,441,0 +170734372519,441,0 +170734372569,441,0 +170734372617,441,0 +170734372665,441,0 +170734372713,441,0 +170734372761,440,0 +170734372810,291,1 +170734372893,439,0 +170734372942,441,0 +170734372992,441,0 +170734373041,441,0 +170734373091,441,0 +170734373139,441,0 +170734373187,441,0 +170734373235,441,0 +170734373283,441,0 +170734373330,441,0 +170734373378,441,0 +170734373426,441,0 +170734373474,441,0 +170734373522,441,0 +170734373570,441,0 +170734373620,441,0 +170734373669,441,0 +170734373719,441,0 +170734373767,441,0 +170734373816,440,0 +170734373866,294,1 +170734373947,438,0 +170734373995,441,0 +170734374045,441,0 +170734374095,441,0 +170734374143,441,0 +170734374190,441,0 +170734374238,441,0 +170734374286,441,0 +170734374336,441,0 +170734374384,441,0 +170734374432,441,0 +170734374480,441,0 +170734374528,441,0 +170734374576,441,0 +170734374624,441,0 +170734374672,441,0 +170734374720,441,0 +170734374769,441,0 +170734374819,441,0 +170734374867,441,0 +170734374915,300,1 +170734375001,439,0 +170734375050,441,0 +170734375098,441,0 +170734375148,441,0 +170734375197,441,0 +170734375247,441,0 +170734375295,441,0 +170734375344,441,0 +170734375394,441,0 +170734375442,441,0 +170734375490,441,0 +170734375538,441,0 +170734375587,441,0 +170734375637,441,0 +170734375685,441,0 +170734375733,441,0 +170734375781,441,0 +170734375829,441,0 +170734375877,441,0 +170734375926,296,1 +170734376005,264,0 +170734376055,441,0 +170734376104,441,0 +170734376154,441,0 +170734376202,441,0 +170734376250,441,0 +170734376298,441,0 +170734376345,441,0 +170734376393,441,0 +170734376441,441,0 +170734376491,441,0 +170734376539,441,0 +170734376587,441,0 +170734376636,441,0 +170734376684,441,0 +170734376732,441,0 +170734376780,441,0 +170734376830,441,0 +170734376878,441,0 +170734376927,441,0 +170734376975,286,1 +170734377062,284,1 +170734377145,441,0 +170734377193,441,0 +170734377243,441,0 +170734377292,441,0 +170734377342,441,0 +170734377390,441,0 +170734377438,441,0 +170734377486,441,0 +170734377533,441,0 +170734377581,441,0 +170734377631,441,0 +170734377679,441,0 +170734377727,441,0 +170734377775,441,0 +170734377823,441,0 +170734377870,441,0 +170734377918,441,0 +170734377966,441,0 +170734378014,437,0 +170734378062,267,0 +170734378110,270,1 +170734378197,441,0 +170734378245,441,0 +170734378293,441,0 +170734378341,441,0 +170734378390,441,0 +170734378438,441,0 +170734378486,441,0 +170734378536,441,0 +170734378585,441,0 +170734378633,441,0 +170734378681,441,0 +170734378731,441,0 +170734378779,441,0 +170734378827,441,0 +170734378875,441,0 +170734378923,441,0 +170734378970,441,0 +170734379020,441,0 +170734379068,298,1 +170734379153,273,1 +170734379235,441,0 +170734379284,441,0 +170734379332,441,0 +170734379380,441,0 +170734379428,441,0 +170734379478,441,0 +170734379527,441,0 +170734379577,441,0 +170734379625,441,0 +170734379674,441,0 +170734379722,441,0 +170734379770,441,0 +170734379818,441,0 +170734379867,441,0 +170734379915,441,0 +170734379963,441,0 +170734380011,441,0 +170734380059,441,0 +170734380107,438,0 +170734380155,299,1 +170734380252,441,0 +170734380300,441,0 +170734380348,441,0 +170734380396,441,0 +170734380444,441,0 +170734380493,441,0 +170734380541,441,0 +170734380589,441,0 +170734380639,441,0 +170734380688,441,0 +170734380736,441,0 +170734380784,441,0 +170734380832,441,0 +170734380880,441,0 +170734380929,441,0 +170734380977,441,0 +170734381025,441,0 +170734381075,441,0 +170734381124,441,0 +170734381172,295,1 +170734381251,289,1 +170734381332,441,0 +170734381380,441,0 +170734381429,441,0 +170734381477,441,0 +170734381527,441,0 +170734381575,441,0 +170734381625,441,0 +170734381672,441,0 +170734381720,441,0 +170734381768,441,0 +170734381816,441,0 +170734381864,441,0 +170734381912,441,0 +170734381960,441,0 +170734382008,441,0 +170734382055,441,0 +170734382103,441,0 +170734382151,441,0 +170734382201,440,0 +170734382249,301,1 +170734382332,437,0 +170734382382,441,0 +170734382430,441,0 +170734382477,441,0 +170734382525,441,0 +170734382575,441,0 +170734382624,441,0 +170734382672,441,0 +170734382720,441,0 +170734382768,441,0 +170734382818,441,0 +170734382866,441,0 +170734382914,441,0 +170734382962,441,0 +170734383011,441,0 +170734383059,441,0 +170734383107,441,0 +170734383157,441,0 +170734383206,441,0 +170734383254,440,0 +170734383304,298,1 +170734383379,439,0 +170734383429,441,0 +170734383477,441,0 +170734383525,441,0 +170734383574,441,0 +170734383622,441,0 +170734383670,441,0 +170734383718,441,0 +170734383768,441,0 +170734383817,441,0 +170734383865,441,0 +170734383913,441,0 +170734383963,441,0 +170734384011,441,0 +170734384059,441,0 +170734384107,441,0 +170734384154,441,0 +170734384202,441,0 +170734384250,441,0 +170734384298,440,0 +170734384346,307,1 +170734384469,441,0 +170734384518,441,0 +170734384566,441,0 +170734384614,441,0 +170734384662,441,0 +170734384710,441,0 +170734384758,441,0 +170734384807,441,0 +170734384855,441,0 +170734384903,441,0 +170734384951,441,0 +170734384999,441,0 +170734385049,441,0 +170734385097,441,0 +170734385145,441,0 +170734385192,441,0 +170734385240,441,0 +170734385288,441,0 +170734385336,441,0 +170734385384,304,1 +170734385970,441,0 +170734386018,441,0 +170734386066,441,0 +170734386113,441,0 +170734386161,441,0 +170734386209,441,0 +170734386257,441,0 +170734386307,441,0 +170734386355,441,0 +170734386403,435,0 +170734386452,303,1 +170734386534,440,0 +170734386583,441,0 +170734386631,441,0 +170734386679,441,0 +170734386727,441,0 +170734386775,441,0 +170734386825,441,0 +170734386872,441,0 +170734386920,441,0 +170734386970,441,0 +170734387019,441,0 +170734387067,441,0 +170734387115,441,0 +170734387163,441,0 +170734387213,441,0 +170734387261,441,0 +170734387309,441,0 +170734387357,441,0 +170734387404,441,0 +170734387452,412,0 +170734387500,288,1 +170734387584,439,0 +170734387632,441,0 +170734387680,441,0 +170734387730,441,0 +170734387779,441,0 +170734387829,441,0 +170734387877,441,0 +170734387926,441,0 +170734387976,441,0 +170734388024,441,0 +170734388073,441,0 +170734388121,441,0 +170734388169,441,0 +170734388217,441,0 +170734388267,441,0 +170734388315,441,0 +170734388364,441,0 +170734388412,441,0 +170734388462,441,0 +170734388510,287,1 +170734388591,301,1 +170734388667,441,0 +170734388715,441,0 +170734388763,441,0 +170734388811,441,0 +170734388859,441,0 +170734388906,441,0 +170734388956,441,0 +170734389005,441,0 +170734389053,441,0 +170734389103,441,0 +170734389151,441,0 +170734389199,441,0 +170734389248,441,0 +170734389296,441,0 +170734389346,441,0 +170734389394,441,0 +170734389443,441,0 +170734389491,441,0 +170734389539,441,0 +170734389587,281,1 +170734389671,438,0 +170734389719,441,0 +170734389767,441,0 +170734389815,441,0 +170734389863,441,0 +170734389911,441,0 +170734389960,441,0 +170734390008,441,0 +170734390056,441,0 +170734390104,441,0 +170734390152,441,0 +170734390200,441,0 +170734390247,441,0 +170734390297,441,0 +170734390346,441,0 +170734390396,441,0 +170734390445,441,0 +170734390493,441,0 +170734390541,441,0 +170734390589,440,0 +170734390637,298,1 +170734390720,438,0 +170734390767,441,0 +170734390817,441,0 +170734390865,441,0 +170734390913,441,0 +170734390962,441,0 +170734391010,441,0 +170734391058,441,0 +170734391106,441,0 +170734391154,441,0 +170734391202,441,0 +170734391252,441,0 +170734391301,441,0 +170734391349,441,0 +170734391397,441,0 +170734391445,441,0 +170734391495,441,0 +170734391543,441,0 +170734391591,441,0 +170734391639,441,0 +170734391687,302,1 +170734391764,436,0 +170734391811,441,0 +170734391859,441,0 +170734391907,441,0 +170734391957,441,0 +170734392005,441,0 +170734392054,441,0 +170734392104,441,0 +170734392153,441,0 +170734392201,441,0 +170734392249,441,0 +170734392297,441,0 +170734392345,441,0 +170734392394,441,0 +170734392442,441,0 +170734392490,441,0 +170734392538,441,0 +170734392587,441,0 +170734392635,441,0 +170734392685,440,0 +170734392732,301,1 +170734392816,438,0 +170734392864,441,0 +170734392912,441,0 +170734392960,441,0 +170734393008,441,0 +170734393057,441,0 +170734393107,441,0 +170734393155,441,0 +170734393204,441,0 +170734393252,441,0 +170734393300,441,0 +170734393348,441,0 +170734393397,441,0 +170734393447,441,0 +170734393495,441,0 +170734393543,441,0 +170734393592,441,0 +170734393640,441,0 +170734393688,441,0 +170734393736,441,0 +170734393784,298,1 +170734393865,438,0 +170734393914,441,0 +170734393962,441,0 +170734394010,441,0 +170734394058,441,0 +170734394107,441,0 +170734394155,441,0 +170734394205,441,0 +170734394254,441,0 +170734394302,441,0 +170734394351,441,0 +170734394399,441,0 +170734394447,441,0 +170734394495,441,0 +170734394543,441,0 +170734394591,441,0 +170734394639,441,0 +170734394687,441,0 +170734394735,441,0 +170734394784,441,0 +170734394832,282,1 +170734394918,438,0 +170734394967,441,0 +170734395015,441,0 +170734395063,441,0 +170734395113,441,0 +170734395162,441,0 +170734395210,441,0 +170734395260,441,0 +170734395308,441,0 +170734395356,441,0 +170734395405,441,0 +170734395455,441,0 +170734395504,441,0 +170734395554,441,0 +170734395603,441,0 +170734395651,441,0 +170734395699,441,0 +170734395747,441,0 +170734395795,441,0 +170734395845,411,0 +170734395892,292,1 +170734395972,439,0 +170734396020,441,0 +170734396068,441,0 +170734396116,441,0 +170734396164,441,0 +170734396212,441,0 +170734396260,441,0 +170734396308,441,0 +170734396356,441,0 +170734396406,441,0 +170734396453,441,0 +170734396503,441,0 +170734396551,441,0 +170734396599,441,0 +170734396647,441,0 +170734396695,441,0 +170734396743,441,0 +170734396791,441,0 +170734396839,441,0 +170734396886,440,0 +170734396934,303,1 +170734397020,438,0 +170734397068,441,0 +170734397117,441,0 +170734397165,441,0 +170734397213,441,0 +170734397261,441,0 +170734397309,441,0 +170734397359,441,0 +170734397407,441,0 +170734397454,441,0 +170734397502,441,0 +170734397552,441,0 +170734397600,441,0 +170734397649,441,0 +170734397697,441,0 +170734397745,441,0 +170734397793,441,0 +170734397841,441,0 +170734397891,441,0 +170734397939,433,0 +170734397987,305,1 +170734398077,440,0 +170734398125,441,0 +170734398174,441,0 +170734398224,441,0 +170734398272,441,0 +170734398321,441,0 +170734398369,441,0 +170734398417,441,0 +170734398466,441,0 +170734398516,441,0 +170734398564,441,0 +170734398614,441,0 +170734398663,441,0 +170734398711,441,0 +170734398759,441,0 +170734398807,441,0 +170734398855,441,0 +170734398903,441,0 +170734398952,441,0 +170734399002,301,1 +170734399087,238,0 +170734399136,441,0 +170734399186,441,0 +170734399234,441,0 +170734399282,441,0 +170734399330,441,0 +170734399378,441,0 +170734399426,441,0 +170734399474,441,0 +170734399523,441,0 +170734399571,441,0 +170734399621,441,0 +170734399670,441,0 +170734399719,441,0 +170734399767,441,0 +170734399815,441,0 +170734399865,441,0 +170734399913,441,0 +170734399961,441,0 +170734400010,441,0 +170734400060,251,0 +170734400108,285,1 +170734400197,441,0 +170734400245,441,0 +170734400294,441,0 +170734400342,441,0 +170734400390,441,0 +170734400438,441,0 +170734400486,441,0 +170734400534,441,0 +170734400582,441,0 +170734400630,441,0 +170734400677,441,0 +170734400725,441,0 +170734400773,441,0 +170734400823,441,0 +170734400871,441,0 +170734400920,441,0 +170734400970,441,0 +170734401019,441,0 +170734401067,441,0 +170734401116,296,1 +170734401198,436,0 +170734401247,441,0 +170734401295,441,0 +170734401343,441,0 +170734401391,441,0 +170734401439,441,0 +170734401487,441,0 +170734401535,441,0 +170734401583,441,0 +170734401632,441,0 +170734401680,441,0 +170734401730,441,0 +170734401779,441,0 +170734401827,441,0 +170734401875,441,0 +170734401923,441,0 +170734401973,441,0 +170734402021,441,0 +170734402069,441,0 +170734402116,441,0 +170734402166,306,1 +170734402238,428,0 +170734402286,441,0 +170734402334,441,0 +170734402382,441,0 +170734402431,441,0 +170734402481,441,0 +170734402529,441,0 +170734402577,441,0 +170734402626,441,0 +170734402674,441,0 +170734402724,441,0 +170734402772,441,0 +170734402820,441,0 +170734402869,441,0 +170734402919,441,0 +170734402967,441,0 +170734403016,441,0 +170734403064,441,0 +170734403114,441,0 +170734403162,441,0 +170734403209,303,1 +170734403294,436,0 +170734403342,441,0 +170734403390,441,0 +170734403438,441,0 +170734403486,441,0 +170734403535,441,0 +170734403585,441,0 +170734403633,441,0 +170734403681,441,0 +170734403729,441,0 +170734403778,441,0 +170734403826,441,0 +170734403874,441,0 +170734403922,441,0 +170734403970,441,0 +170734404019,441,0 +170734404067,441,0 +170734404115,441,0 +170734404165,441,0 +170734404213,441,0 +170734404261,292,1 +170734404341,239,0 +170734404391,441,0 +170734404438,441,0 +170734404488,441,0 +170734404536,441,0 +170734404584,441,0 +170734404632,441,0 +170734404680,441,0 +170734404729,441,0 +170734404777,441,0 +170734404825,441,0 +170734404873,441,0 +170734404923,441,0 +170734404972,441,0 +170734405020,441,0 +170734405068,441,0 +170734405116,441,0 +170734405165,441,0 +170734405215,441,0 +170734405263,441,0 +170734405312,283,1 +170734405392,438,0 +170734405440,441,0 +170734405488,441,0 +170734405538,441,0 +170734405587,441,0 +170734405635,441,0 +170734405683,441,0 +170734405733,441,0 +170734405783,441,0 +170734405830,441,0 +170734405880,441,0 +170734405930,441,0 +170734405978,441,0 +170734406026,441,0 +170734406073,441,0 +170734406121,441,0 +170734406169,441,0 +170734406219,441,0 +170734406267,441,0 +170734406315,440,0 +170734406363,278,1 +170734406453,440,0 +170734406502,441,0 +170734406550,441,0 +170734406598,441,0 +170734406648,441,0 +170734406696,441,0 +170734406745,441,0 +170734406793,441,0 +170734406841,441,0 +170734406891,441,0 +170734406938,441,0 +170734406986,441,0 +170734407034,441,0 +170734407082,441,0 +170734407132,441,0 +170734407181,441,0 +170734407229,441,0 +170734407277,441,0 +170734407325,441,0 +170734407373,439,0 +170734407421,303,1 +170734407507,440,0 +170734407556,441,0 +170734407604,441,0 +170734407654,441,0 +170734407702,441,0 +170734407751,441,0 +170734407801,441,0 +170734407849,441,0 +170734407897,441,0 +170734407945,441,0 +170734407993,441,0 +170734408040,441,0 +170734408088,441,0 +170734408136,441,0 +170734408184,441,0 +170734408232,441,0 +170734408282,441,0 +170734408330,441,0 +170734408378,441,0 +170734408427,289,1 +170734408512,274,1 +170734408595,441,0 +170734408644,441,0 +170734408692,441,0 +170734408740,441,0 +170734408789,441,0 +170734408837,441,0 +170734408885,441,0 +170734408933,441,0 +170734408981,441,0 +170734409029,441,0 +170734409077,441,0 +170734409126,441,0 +170734409174,441,0 +170734409222,441,0 +170734409270,441,0 +170734409318,441,0 +170734409366,441,0 +170734409414,441,0 +170734409462,439,0 +170734409510,305,1 +170734409594,439,0 +170734409642,441,0 +170734409690,441,0 +170734409738,441,0 +170734409786,441,0 +170734409834,441,0 +170734409882,441,0 +170734409930,441,0 +170734409979,441,0 +170734410027,441,0 +170734410075,441,0 +170734410123,441,0 +170734410173,441,0 +170734410222,441,0 +170734410270,441,0 +170734410320,441,0 +170734410368,441,0 +170734410416,441,0 +170734410463,441,0 +170734410511,441,0 +170734410559,302,1 +170734410642,436,0 +170734410690,441,0 +170734410738,441,0 +170734410788,441,0 +170734410836,441,0 +170734410884,441,0 +170734410932,441,0 +170734410981,441,0 +170734411029,441,0 +170734411077,441,0 +170734411125,441,0 +170734411174,441,0 +170734411224,441,0 +170734411273,441,0 +170734411323,441,0 +170734411371,441,0 +170734411420,441,0 +170734411470,441,0 +170734411518,441,0 +170734411566,440,0 +170734411615,297,1 +170734411699,438,0 +170734411748,441,0 +170734411796,441,0 +170734411844,441,0 +170734411893,441,0 +170734411941,441,0 +170734411991,441,0 +170734412040,441,0 +170734412090,441,0 +170734412140,441,0 +170734412189,441,0 +170734412237,441,0 +170734412287,441,0 +170734412336,441,0 +170734412384,441,0 +170734412434,441,0 +170734412483,441,0 +170734412531,441,0 +170734412579,441,0 +170734412627,298,1 +170734412714,238,0 +170734412762,441,0 +170734412810,441,0 +170734412858,441,0 +170734412906,441,0 +170734412954,441,0 +170734413003,441,0 +170734413053,441,0 +170734413101,441,0 +170734413149,441,0 +170734413197,441,0 +170734413246,441,0 +170734413294,441,0 +170734413342,441,0 +170734413390,441,0 +170734413438,441,0 +170734413486,441,0 +170734413534,441,0 +170734413582,441,0 +170734413630,441,0 +170734413678,304,1 +170734413757,293,1 +170734413830,441,0 +170734413880,441,0 +170734413928,441,0 +170734413976,441,0 +170734414024,441,0 +170734414073,441,0 +170734414123,441,0 +170734414171,441,0 +170734414220,441,0 +170734414270,441,0 +170734414319,441,0 +170734414369,441,0 +170734414418,441,0 +170734414468,441,0 +170734414516,441,0 +170734414564,441,0 +170734414612,441,0 +170734414661,441,0 +170734414711,440,0 +170734414760,297,1 +170734414847,440,0 +170734414897,441,0 +170734414945,441,0 +170734414993,441,0 +170734415041,441,0 +170734415090,441,0 +170734415140,441,0 +170734415189,441,0 +170734415237,441,0 +170734415285,441,0 +170734415333,441,0 +170734415381,441,0 +170734415429,441,0 +170734415477,441,0 +170734415527,441,0 +170734415576,441,0 +170734415626,441,0 +170734415673,441,0 +170734415721,441,0 +170734415771,294,1 +170734415857,247,0 +170734415905,441,0 +170734415954,441,0 +170734416004,441,0 +170734416052,441,0 +170734416102,441,0 +170734416151,441,0 +170734416199,441,0 +170734416247,441,0 +170734416296,441,0 +170734416344,441,0 +170734416392,441,0 +170734416442,441,0 +170734416491,441,0 +170734416539,441,0 +170734416587,441,0 +170734416635,441,0 +170734416685,441,0 +170734416734,441,0 +170734416782,441,0 +170734416832,307,1 +170734416912,253,0 +170734416960,441,0 +170734417008,441,0 +170734417056,441,0 +170734417104,441,0 +170734417154,441,0 +170734417202,441,0 +170734417250,441,0 +170734417298,441,0 +170734417347,441,0 +170734417397,441,0 +170734417445,441,0 +170734417493,441,0 +170734417541,441,0 +170734417590,441,0 +170734417638,441,0 +170734417686,441,0 +170734417736,441,0 +170734417783,441,0 +170734417831,441,0 +170734417879,304,1 +170734417962,242,0 +170734418011,441,0 +170734418061,441,0 +170734418110,441,0 +170734418158,441,0 +170734418206,441,0 +170734418256,441,0 +170734418303,441,0 +170734418351,441,0 +170734418399,441,0 +170734418447,441,0 +170734418495,441,0 +170734418543,441,0 +170734418591,441,0 +170734418639,441,0 +170734418687,441,0 +170734418735,441,0 +170734418785,441,0 +170734418833,441,0 +170734418882,441,0 +170734418932,302,1 +170734419016,236,0 +170734419064,441,0 +170734419112,441,0 +170734419160,441,0 +170734419208,441,0 +170734419256,441,0 +170734419304,441,0 +170734419352,441,0 +170734419400,441,0 +170734419448,441,0 +170734419496,441,0 +170734419544,441,0 +170734419591,441,0 +170734419639,441,0 +170734419687,441,0 +170734419737,441,0 +170734419785,441,0 +170734419832,441,0 +170734419880,441,0 +170734419928,441,0 +170734419976,299,1 +170734420061,246,0 +170734420109,441,0 +170734420157,441,0 +170734420206,441,0 +170734420254,441,0 +170734420302,441,0 +170734420350,441,0 +170734420398,441,0 +170734420447,441,0 +170734420497,441,0 +170734420545,441,0 +170734420594,441,0 +170734420642,441,0 +170734420690,441,0 +170734420739,441,0 +170734420789,441,0 +170734420837,441,0 +170734420885,441,0 +170734420933,441,0 +170734420980,441,0 +170734421028,309,1 +170734421114,236,0 +170734421161,441,0 +170734421209,441,0 +170734421257,441,0 +170734421307,441,0 +170734421354,441,0 +170734421402,441,0 +170734421452,441,0 +170734421501,441,0 +170734421549,441,0 +170734421597,441,0 +170734421645,441,0 +170734421693,441,0 +170734421741,441,0 +170734421790,441,0 +170734421838,441,0 +170734421886,441,0 +170734421935,441,0 +170734421983,441,0 +170734422031,441,0 +170734422081,292,1 +170734422164,436,0 +170734422214,441,0 +170734422262,441,0 +170734422311,441,0 +170734422359,441,0 +170734422407,441,0 +170734422456,441,0 +170734422504,441,0 +170734422552,441,0 +170734422600,441,0 +170734422648,441,0 +170734422696,441,0 +170734422744,441,0 +170734422791,441,0 +170734422839,441,0 +170734422887,441,0 +170734422937,441,0 +170734422985,441,0 +170734423032,441,0 +170734423080,441,0 +170734423128,300,1 +170734423210,238,0 +170734423258,441,0 +170734423306,441,0 +170734423354,441,0 +170734423402,441,0 +170734423450,441,0 +170734423498,441,0 +170734423546,441,0 +170734423595,441,0 +170734423643,441,0 +170734423691,441,0 +170734423740,441,0 +170734423788,441,0 +170734423838,441,0 +170734423886,441,0 +170734423934,441,0 +170734423982,441,0 +170734424030,441,0 +170734424078,441,0 +170734424126,441,0 +170734424175,296,1 +170734424258,235,0 +170734424306,441,0 +170734424354,441,0 +170734424402,441,0 +170734424451,441,0 +170734424501,441,0 +170734424549,441,0 +170734424598,441,0 +170734424646,441,0 +170734424696,441,0 +170734424744,441,0 +170734424792,441,0 +170734424840,441,0 +170734424889,441,0 +170734424937,441,0 +170734424985,441,0 +170734425035,441,0 +170734425084,441,0 +170734425134,441,0 +170734425182,441,0 +170734425231,300,1 +170734425315,433,0 +170734425364,441,0 +170734425412,441,0 +170734425462,441,0 +170734425510,441,0 +170734425557,441,0 +170734425605,441,0 +170734425655,441,0 +170734425704,441,0 +170734425752,441,0 +170734425802,441,0 +170734425850,441,0 +170734425898,441,0 +170734425946,441,0 +170734425994,441,0 +170734426043,441,0 +170734426091,441,0 +170734426139,441,0 +170734426189,441,0 +170734426237,441,0 +170734426286,307,1 +170734426371,432,0 +170734426420,441,0 +170734426470,441,0 +170734426519,441,0 +170734426567,441,0 +170734426615,441,0 +170734426663,441,0 +170734426711,441,0 +170734426759,441,0 +170734426809,441,0 +170734426858,441,0 +170734426908,441,0 +170734426958,441,0 +170734427005,441,0 +170734427055,441,0 +170734427103,441,0 +170734427151,441,0 +170734427199,441,0 +170734427247,441,0 +170734427295,440,0 +170734427344,302,1 +170734427432,438,0 +170734427480,441,0 +170734427530,441,0 +170734427579,441,0 +170734427627,441,0 +170734427675,441,0 +170734427723,441,0 +170734427771,441,0 +170734427821,441,0 +170734427868,441,0 +170734427916,441,0 +170734427966,441,0 +170734428014,441,0 +170734428062,441,0 +170734428111,441,0 +170734428159,441,0 +170734428209,441,0 +170734428257,441,0 +170734428306,441,0 +170734428356,273,1 +170734428438,298,1 +170734428520,441,0 +170734428568,441,0 +170734428616,441,0 +170734428664,441,0 +170734428712,441,0 +170734428760,441,0 +170734428808,441,0 +170734428856,441,0 +170734428904,441,0 +170734428952,441,0 +170734429002,441,0 +170734429050,441,0 +170734429097,441,0 +170734429147,441,0 +170734429195,441,0 +170734429245,441,0 +170734429292,441,0 +170734429342,441,0 +170734429391,441,0 +170734429439,268,0 +170734429489,298,1 +170734429571,441,0 +170734429619,441,0 +170734429668,441,0 +170734429716,441,0 +170734429764,441,0 +170734429812,441,0 +170734429861,441,0 +170734429909,441,0 +170734429957,441,0 +170734430007,441,0 +170734430055,441,0 +170734430104,441,0 +170734430152,441,0 +170734430202,441,0 +170734430250,441,0 +170734430299,441,0 +170734430347,441,0 +170734430397,441,0 +170734430445,440,0 +170734430494,297,1 +170734430578,438,0 +170734430626,441,0 +170734430675,441,0 +170734430723,441,0 +170734430771,441,0 +170734430819,441,0 +170734430869,441,0 +170734430917,441,0 +170734430965,441,0 +170734431014,441,0 +170734431064,441,0 +170734431113,441,0 +170734431161,441,0 +170734431211,441,0 +170734431259,441,0 +170734431308,441,0 +170734431356,441,0 +170734431406,441,0 +170734431453,441,0 +170734431503,268,0 +170734431551,300,1 +170734431634,440,0 +170734431682,441,0 +170734431731,441,0 +170734431779,441,0 +170734431827,441,0 +170734431875,441,0 +170734431923,441,0 +170734431970,441,0 +170734432018,441,0 +170734432066,441,0 +170734432114,441,0 +170734432162,441,0 +170734432210,441,0 +170734432258,441,0 +170734432306,441,0 +170734432355,441,0 +170734432403,441,0 +170734432452,441,0 +170734432500,441,0 +170734432548,440,0 +170734432596,279,1 +170734432676,438,0 +170734432724,441,0 +170734432772,441,0 +170734432819,441,0 +170734432867,441,0 +170734432915,441,0 +170734432965,441,0 +170734433014,441,0 +170734433064,441,0 +170734433112,441,0 +170734433160,441,0 +170734433209,441,0 +170734433257,441,0 +170734433305,441,0 +170734433353,441,0 +170734433401,441,0 +170734433449,441,0 +170734433499,441,0 +170734433548,441,0 +170734433596,440,0 +170734433644,305,1 +170734433731,438,0 +170734433779,441,0 +170734433828,441,0 +170734433876,441,0 +170734433924,441,0 +170734433974,441,0 +170734434022,441,0 +170734434071,441,0 +170734434121,441,0 +170734434170,441,0 +170734434220,441,0 +170734434268,441,0 +170734434316,441,0 +170734434365,441,0 +170734434413,441,0 +170734434461,441,0 +170734434509,441,0 +170734434557,441,0 +170734434605,441,0 +170734434653,309,1 +170734434731,293,1 +170734434809,441,0 +170734434857,441,0 +170734434906,441,0 +170734434954,441,0 +170734435002,441,0 +170734435050,441,0 +170734435098,441,0 +170734435146,441,0 +170734435195,441,0 +170734435243,441,0 +170734435291,441,0 +170734435339,441,0 +170734435389,441,0 +170734435438,441,0 +170734435488,441,0 +170734435537,441,0 +170734435587,441,0 +170734435635,441,0 +170734435684,441,0 +170734435732,277,1 +170734435816,436,0 +170734435866,441,0 +170734435914,441,0 +170734435963,441,0 +170734436011,441,0 +170734436059,441,0 +170734436109,441,0 +170734436157,441,0 +170734436205,441,0 +170734436253,441,0 +170734436301,441,0 +170734436349,441,0 +170734436397,441,0 +170734436445,441,0 +170734436494,441,0 +170734436542,441,0 +170734436592,441,0 +170734436641,441,0 +170734436691,441,0 +170734436740,439,0 +170734436788,303,1 +170734436882,440,0 +170734436929,441,0 +170734436979,441,0 +170734437027,441,0 +170734437075,441,0 +170734437123,441,0 +170734437172,441,0 +170734437220,441,0 +170734437270,441,0 +170734437319,441,0 +170734437367,441,0 +170734437415,441,0 +170734437463,441,0 +170734437511,441,0 +170734437559,441,0 +170734437607,441,0 +170734437655,441,0 +170734437703,441,0 +170734437753,441,0 +170734437800,277,1 +170734437879,293,1 +170734437954,441,0 +170734438002,441,0 +170734438050,441,0 +170734438098,441,0 +170734438146,441,0 +170734438194,441,0 +170734438242,441,0 +170734438290,441,0 +170734438339,441,0 +170734438389,441,0 +170734438439,441,0 +170734438487,441,0 +170734438536,441,0 +170734438584,441,0 +170734438632,441,0 +170734438680,441,0 +170734438728,441,0 +170734438776,441,0 +170734438824,441,0 +170734438872,299,1 +170734438953,431,0 +170734439002,441,0 +170734439050,441,0 +170734439098,441,0 +170734439146,441,0 +170734439194,441,0 +170734439243,441,0 +170734439291,441,0 +170734439339,441,0 +170734439387,441,0 +170734439435,441,0 +170734439483,441,0 +170734439533,441,0 +170734439582,441,0 +170734439630,441,0 +170734439678,441,0 +170734439726,441,0 +170734439774,441,0 +170734439822,441,0 +170734439870,441,0 +170734439918,284,1 +170734440003,321,0 +170734440052,441,0 +170734440100,441,0 +170734440150,441,0 +170734440199,441,0 +170734440247,441,0 +170734440295,441,0 +170734440343,441,0 +170734440393,441,0 +170734440441,441,0 +170734440489,441,0 +170734440537,441,0 +170734440586,441,0 +170734440634,441,0 +170734440682,441,0 +170734440730,441,0 +170734440778,441,0 +170734440826,441,0 +170734440873,441,0 +170734440921,441,0 +170734440969,276,1 +170734441045,229,0 +170734441093,441,0 +170734441142,441,0 +170734441192,441,0 +170734441241,441,0 +170734441291,441,0 +170734441340,441,0 +170734441388,441,0 +170734441436,441,0 +170734441486,441,0 +170734441534,441,0 +170734441583,441,0 +170734441631,441,0 +170734441679,441,0 +170734441729,441,0 +170734441777,441,0 +170734441826,441,0 +170734441874,441,0 +170734441924,441,0 +170734441973,441,0 +170734442023,300,1 +170734442105,435,0 +170734442153,441,0 +170734442201,441,0 +170734442249,441,0 +170734442297,441,0 +170734442345,441,0 +170734442394,441,0 +170734442442,441,0 +170734442490,441,0 +170734442539,441,0 +170734442587,441,0 +170734442637,441,0 +170734442685,441,0 +170734442733,441,0 +170734442782,441,0 +170734442832,441,0 +170734442880,441,0 +170734442928,441,0 +170734442975,441,0 +170734443023,440,0 +170734443071,293,1 +170734443157,437,0 +170734443205,441,0 +170734443253,441,0 +170734443301,441,0 +170734443349,441,0 +170734443397,441,0 +170734443445,441,0 +170734443494,441,0 +170734443542,441,0 +170734443590,441,0 +170734443638,441,0 +170734443686,441,0 +170734443736,441,0 +170734443785,441,0 +170734443835,441,0 +170734443884,441,0 +170734443934,441,0 +170734443982,441,0 +170734444031,441,0 +170734444081,440,0 +170734444129,301,1 +170734444214,439,0 +170734444263,441,0 +170734444311,441,0 +170734444359,441,0 +170734444407,441,0 +170734444456,441,0 +170734444506,441,0 +170734444554,441,0 +170734444602,441,0 +170734444651,441,0 +170734444699,441,0 +170734444747,441,0 +170734444795,441,0 +170734444845,441,0 +170734444893,441,0 +170734444942,441,0 +170734444990,441,0 +170734445040,441,0 +170734445089,441,0 +170734445137,430,0 +170734445185,304,1 +170734445269,439,0 +170734445318,441,0 +170734445368,441,0 +170734445417,441,0 +170734445465,441,0 +170734445513,441,0 +170734445561,441,0 +170734445611,441,0 +170734445659,441,0 +170734445708,441,0 +170734445756,441,0 +170734445804,441,0 +170734445853,441,0 +170734445901,441,0 +170734445951,441,0 +170734445999,441,0 +170734446047,441,0 +170734446094,441,0 +170734446144,441,0 +170734446194,303,1 +170734446280,251,0 +170734446328,441,0 +170734446376,441,0 +170734446426,441,0 +170734446475,441,0 +170734446523,441,0 +170734446571,441,0 +170734446619,441,0 +170734446666,441,0 +170734446714,441,0 +170734446762,441,0 +170734446812,441,0 +170734446861,441,0 +170734446909,441,0 +170734446958,441,0 +170734447006,441,0 +170734447054,441,0 +170734447102,441,0 +170734447152,441,0 +170734447200,441,0 +170734447248,301,1 +170734447329,267,0 +170734447377,441,0 +170734447425,441,0 +170734447473,441,0 +170734447521,441,0 +170734447569,441,0 +170734447617,441,0 +170734447666,441,0 +170734447714,441,0 +170734447764,441,0 +170734447813,441,0 +170734447861,441,0 +170734447909,441,0 +170734447957,441,0 +170734448005,441,0 +170734448053,441,0 +170734448101,441,0 +170734448149,441,0 +170734448197,441,0 +170734448245,441,0 +170734448295,279,1 +170734448378,278,1 +170734448453,441,0 +170734448500,441,0 +170734448550,441,0 +170734448598,441,0 +170734448647,441,0 +170734448695,441,0 +170734448743,441,0 +170734448791,441,0 +170734448841,441,0 +170734448890,441,0 +170734448938,441,0 +170734448986,441,0 +170734449036,441,0 +170734449084,441,0 +170734449133,441,0 +170734449181,441,0 +170734449231,441,0 +170734449279,441,0 +170734449328,439,0 +170734449378,298,1 +170734449458,438,0 +170734449506,441,0 +170734449554,441,0 +170734449602,441,0 +170734449650,441,0 +170734449698,441,0 +170734449746,441,0 +170734449794,441,0 +170734449843,441,0 +170734449891,441,0 +170734449941,441,0 +170734449989,441,0 +170734450037,441,0 +170734450085,441,0 +170734450133,441,0 +170734450181,441,0 +170734450230,441,0 +170734450278,441,0 +170734450326,441,0 +170734450374,435,0 +170734450423,298,1 +170734450506,439,0 +170734450555,441,0 +170734450605,441,0 +170734450653,441,0 +170734450701,441,0 +170734450750,441,0 +170734450798,441,0 +170734450848,441,0 +170734450895,441,0 +170734450945,441,0 +170734450993,441,0 +170734451041,441,0 +170734451089,441,0 +170734451138,441,0 +170734451186,441,0 +170734451234,441,0 +170734451282,441,0 +170734451332,441,0 +170734451381,441,0 +170734451429,395,0 +170734451477,294,1 +170734451558,440,0 +170734451608,441,0 +170734451656,441,0 +170734451706,441,0 +170734451755,441,0 +170734451805,441,0 +170734451852,441,0 +170734451902,441,0 +170734451950,441,0 +170734451998,441,0 +170734452047,441,0 +170734452095,441,0 +170734452143,441,0 +170734452191,441,0 +170734452241,441,0 +170734452289,441,0 +170734452337,441,0 +170734452386,441,0 +170734452434,441,0 +170734452482,282,1 +170734452566,287,1 +170734452646,441,0 +170734452694,441,0 +170734452743,441,0 +170734452791,441,0 +170734452839,441,0 +170734452888,441,0 +170734452936,441,0 +170734452984,441,0 +170734453032,441,0 +170734453082,441,0 +170734453130,441,0 +170734453177,441,0 +170734453225,441,0 +170734453275,441,0 +170734453323,441,0 +170734453371,441,0 +170734453419,441,0 +170734453468,441,0 +170734453516,440,0 +170734453565,289,1 +170734453650,438,0 +170734453698,441,0 +170734453746,441,0 +170734453794,441,0 +170734453843,441,0 +170734453891,441,0 +170734453939,441,0 +170734453987,441,0 +170734454035,441,0 +170734454085,441,0 +170734454134,441,0 +170734454182,441,0 +170734454231,441,0 +170734454281,441,0 +170734454331,441,0 +170734454380,441,0 +170734454428,441,0 +170734454476,441,0 +170734454524,441,0 +170734454572,440,0 +170734454621,291,1 +170734454704,439,0 +170734454753,441,0 +170734454803,441,0 +170734454851,441,0 +170734454899,441,0 +170734454948,441,0 +170734454996,441,0 +170734455044,441,0 +170734455092,441,0 +170734455140,441,0 +170734455188,441,0 +170734455236,441,0 +170734455285,441,0 +170734455335,441,0 +170734455383,441,0 +170734455431,441,0 +170734455480,441,0 +170734455528,441,0 +170734455576,441,0 +170734455624,440,0 +170734455672,287,1 +170734455754,438,0 +170734455802,441,0 +170734455851,441,0 +170734455899,441,0 +170734455947,441,0 +170734455997,441,0 +170734456046,441,0 +170734456094,441,0 +170734456142,441,0 +170734456190,441,0 +170734456238,441,0 +170734456286,441,0 +170734456336,441,0 +170734456385,441,0 +170734456433,441,0 +170734456481,441,0 +170734456529,441,0 +170734456577,441,0 +170734456627,441,0 +170734456675,289,1 +170734456757,293,1 +170734456837,441,0 +170734456885,441,0 +170734456933,441,0 +170734456981,441,0 +170734457028,441,0 +170734457076,441,0 +170734457124,441,0 +170734457172,441,0 +170734457220,441,0 +170734457268,441,0 +170734457318,441,0 +170734457366,441,0 +170734457414,441,0 +170734457462,441,0 +170734457511,441,0 +170734457559,441,0 +170734457609,441,0 +170734457657,441,0 +170734457705,440,0 +170734457752,300,1 +170734457833,436,0 +170734457881,441,0 +170734457930,441,0 +170734457978,441,0 +170734458026,441,0 +170734458074,441,0 +170734458122,441,0 +170734458172,441,0 +170734458220,441,0 +170734458268,441,0 +170734458317,441,0 +170734458365,441,0 +170734458415,441,0 +170734458463,441,0 +170734458511,441,0 +170734458559,441,0 +170734458608,441,0 +170734458656,441,0 +170734458704,441,0 +170734458752,441,0 +170734458801,298,1 +170734458885,437,0 +170734458933,441,0 +170734458981,441,0 +170734459029,441,0 +170734459077,441,0 +170734459126,441,0 +170734459174,441,0 +170734459222,441,0 +170734459270,441,0 +170734459318,441,0 +170734459366,441,0 +170734459415,441,0 +170734459463,441,0 +170734459511,441,0 +170734459559,441,0 +170734459609,441,0 +170734459658,441,0 +170734459706,441,0 +170734459755,441,0 +170734459805,441,0 +170734459853,250,0 +170734459901,249,0 +170734459950,440,0 +170734460000,441,0 +170734460048,441,0 +170734460097,441,0 +170734460147,441,0 +170734460196,441,0 +170734460246,441,0 +170734460294,441,0 +170734460342,441,0 +170734460390,441,0 +170734460438,441,0 +170734460486,441,0 +170734460534,441,0 +170734460581,441,0 +170734460631,441,0 +170734460679,441,0 +170734460728,441,0 +170734460776,441,0 +170734460824,441,0 +170734460872,304,1 +170734460959,251,0 +170734461009,441,0 +170734461058,441,0 +170734461106,441,0 +170734461154,441,0 +170734461203,441,0 +170734461251,441,0 +170734461299,441,0 +170734461349,441,0 +170734461397,441,0 +170734461445,441,0 +170734461494,441,0 +170734461542,441,0 +170734461592,441,0 +170734461640,441,0 +170734461688,441,0 +170734461736,441,0 +170734461785,441,0 +170734461835,441,0 +170734461883,441,0 +170734461931,299,1 +170734462013,260,0 +170734462061,441,0 +170734462110,441,0 +170734462160,441,0 +170734462208,441,0 +170734462256,441,0 +170734462305,441,0 +170734462353,441,0 +170734462401,441,0 +170734462449,441,0 +170734462499,441,0 +170734462547,441,0 +170734462596,441,0 +170734462644,441,0 +170734462692,441,0 +170734462740,441,0 +170734462789,441,0 +170734462837,441,0 +170734462887,441,0 +170734462935,441,0 +170734462985,296,1 +170734463071,321,0 +170734463120,441,0 +170734463168,441,0 +170734463218,441,0 +170734463267,441,0 +170734463315,441,0 +170734463363,441,0 +170734463413,441,0 +170734463462,441,0 +170734463512,441,0 +170734463561,441,0 +170734463611,441,0 +170734463660,441,0 +170734463708,441,0 +170734463756,441,0 +170734463804,441,0 +170734463852,441,0 +170734463900,441,0 +170734463948,441,0 +170734463996,440,0 +170734464044,307,1 +170734464126,437,0 +170734464174,441,0 +170734464222,441,0 +170734464271,441,0 +170734464319,441,0 +170734464367,441,0 +170734464417,441,0 +170734464465,441,0 +170734464513,441,0 +170734464562,441,0 +170734464612,441,0 +170734464661,441,0 +170734464709,441,0 +170734464759,441,0 +170734464808,441,0 +170734464856,441,0 +170734464904,441,0 +170734464954,441,0 +170734465003,441,0 +170734465051,440,0 +170734465099,300,1 +170734465178,438,0 +170734465226,441,0 +170734465276,441,0 +170734465325,441,0 +170734465375,441,0 +170734465423,441,0 +170734465471,441,0 +170734465519,441,0 +170734465567,441,0 +170734465615,441,0 +170734465663,441,0 +170734465711,441,0 +170734465758,441,0 +170734465806,441,0 +170734465856,441,0 +170734465904,441,0 +170734465952,441,0 +170734466000,441,0 +170734466049,441,0 +170734466099,439,0 +170734466147,302,1 +170734466233,439,0 +170734466283,441,0 +170734466333,441,0 +170734466381,441,0 +170734466430,441,0 +170734466478,441,0 +170734466526,441,0 +170734466574,441,0 +170734466623,441,0 +170734466671,441,0 +170734466719,441,0 +170734466769,441,0 +170734466818,441,0 +170734466866,441,0 +170734466914,441,0 +170734466962,441,0 +170734467010,441,0 +170734467060,441,0 +170734467109,441,0 +170734467159,304,1 +170734467231,312,0 +170734467279,438,0 +170734467328,441,0 +170734467376,441,0 +170734467424,441,0 +170734467474,441,0 +170734467521,441,0 +170734467569,441,0 +170734467617,441,0 +170734467665,441,0 +170734467713,441,0 +170734467761,441,0 +170734467809,441,0 +170734467858,441,0 +170734467906,441,0 +170734467954,441,0 +170734468002,441,0 +170734468050,441,0 +170734468098,441,0 +170734468147,441,0 +170734468195,437,0 +170734468243,294,1 +170734468325,438,0 +170734468374,441,0 +170734468424,441,0 +170734468472,441,0 +170734468521,441,0 +170734468571,441,0 +170734468619,441,0 +170734468667,441,0 +170734468715,441,0 +170734468763,441,0 +170734468811,441,0 +170734468859,441,0 +170734468907,441,0 +170734468955,441,0 +170734469002,441,0 +170734469050,441,0 +170734469098,441,0 +170734469146,441,0 +170734469194,441,0 +170734469242,440,0 +170734469290,287,1 +170734469374,437,0 +170734469422,441,0 +170734469470,441,0 +170734469518,441,0 +170734469566,441,0 +170734469614,441,0 +170734469661,441,0 +170734469711,441,0 +170734469759,441,0 +170734469807,441,0 +170734469856,441,0 +170734469904,441,0 +170734469952,441,0 +170734470000,441,0 +170734470048,441,0 +170734470096,441,0 +170734470145,441,0 +170734470193,441,0 +170734470241,441,0 +170734470291,440,0 +170734470339,303,1 +170734470427,438,0 +170734470476,441,0 +170734470524,441,0 +170734470574,441,0 +170734470622,441,0 +170734470670,441,0 +170734470718,441,0 +170734470766,441,0 +170734470813,441,0 +170734470863,441,0 +170734470911,441,0 +170734470959,441,0 +170734471007,441,0 +170734471055,441,0 +170734471104,441,0 +170734471152,441,0 +170734471202,441,0 +170734471250,441,0 +170734471298,441,0 +170734471347,436,0 +170734471397,286,1 +170734471476,439,0 +170734471524,441,0 +170734471572,441,0 +170734471621,441,0 +170734471669,441,0 +170734471717,441,0 +170734471767,441,0 +170734471816,441,0 +170734471864,441,0 +170734471912,441,0 +170734471960,441,0 +170734472008,441,0 +170734472057,441,0 +170734472105,441,0 +170734472155,441,0 +170734472204,441,0 +170734472254,441,0 +170734472302,441,0 +170734472351,441,0 +170734472401,302,1 +170734472485,268,0 +170734472533,441,0 +170734472581,441,0 +170734472629,441,0 +170734472677,441,0 +170734472726,441,0 +170734472774,441,0 +170734472824,441,0 +170734472872,441,0 +170734472920,441,0 +170734472968,441,0 +170734473015,441,0 +170734473063,441,0 +170734473111,441,0 +170734473159,441,0 +170734473207,441,0 +170734473255,441,0 +170734473303,441,0 +170734473353,441,0 +170734473402,441,0 +170734473450,285,1 +170734473544,298,1 +170734473622,441,0 +170734473670,441,0 +170734473719,441,0 +170734473769,441,0 +170734473818,441,0 +170734473866,441,0 +170734473914,441,0 +170734473964,441,0 +170734474012,441,0 +170734474060,441,0 +170734474108,441,0 +170734474156,441,0 +170734474204,441,0 +170734474253,441,0 +170734474301,441,0 +170734474349,441,0 +170734474397,441,0 +170734474445,441,0 +170734474493,310,0 +170734474541,308,1 +170734474625,440,0 +170734474673,441,0 +170734474721,441,0 +170734474769,441,0 +170734474817,441,0 +170734474865,441,0 +170734474915,441,0 +170734474963,441,0 +170734475010,441,0 +170734475060,441,0 +170734475110,441,0 +170734475157,441,0 +170734475205,441,0 +170734475253,441,0 +170734475303,441,0 +170734475351,441,0 +170734475400,441,0 +170734475450,441,0 +170734475499,441,0 +170734475547,314,0 +170734475595,308,1 +170734475681,440,0 +170734475729,441,0 +170734475779,441,0 +170734475827,441,0 +170734475875,441,0 +170734475924,441,0 +170734475974,441,0 +170734476023,441,0 +170734476071,441,0 +170734476119,441,0 +170734476167,441,0 +170734476217,441,0 +170734476264,441,0 +170734476312,441,0 +170734476360,441,0 +170734476408,441,0 +170734476456,441,0 +170734476504,441,0 +170734476552,441,0 +170734476600,294,1 +170734476689,246,0 +170734476737,441,0 +170734476786,441,0 +170734476836,441,0 +170734476885,441,0 +170734476933,441,0 +170734476981,441,0 +170734477029,441,0 +170734477077,441,0 +170734477125,441,0 +170734477173,441,0 +170734477223,441,0 +170734477271,441,0 +170734477320,441,0 +170734477370,441,0 +170734477419,441,0 +170734477469,441,0 +170734477517,441,0 +170734477565,441,0 +170734477613,441,0 +170734477662,293,1 +170734477746,239,0 +170734477794,441,0 +170734477842,441,0 +170734477890,441,0 +170734477938,441,0 +170734477986,441,0 +170734478035,441,0 +170734478083,441,0 +170734478133,441,0 +170734478181,441,0 +170734478230,441,0 +170734478278,441,0 +170734478326,441,0 +170734478374,441,0 +170734478424,441,0 +170734478472,441,0 +170734478521,441,0 +170734478569,441,0 +170734478617,441,0 +170734478665,441,0 +170734478713,287,1 +170734478795,436,0 +170734478844,441,0 +170734478892,441,0 +170734478940,441,0 +170734478988,441,0 +170734479036,441,0 +170734479084,441,0 +170734479133,441,0 +170734479181,441,0 +170734479229,441,0 +170734479279,441,0 +170734479328,441,0 +170734479378,441,0 +170734479426,441,0 +170734479474,441,0 +170734479522,441,0 +170734479571,441,0 +170734479619,441,0 +170734479669,441,0 +170734479717,441,0 +170734479765,252,0 +170734479812,289,1 +170734479894,441,0 +170734479943,441,0 +170734479991,441,0 +170734480039,441,0 +170734480087,441,0 +170734480135,441,0 +170734480183,441,0 +170734480231,441,0 +170734480279,441,0 +170734480327,441,0 +170734480375,441,0 +170734480425,441,0 +170734480473,441,0 +170734480521,441,0 +170734480569,441,0 +170734480617,441,0 +170734480665,441,0 +170734480714,441,0 +170734480764,441,0 +170734480812,301,1 +170734480895,435,0 +170734480945,441,0 +170734480993,441,0 +170734481041,441,0 +170734481089,441,0 +170734481137,441,0 +170734481185,441,0 +170734481233,441,0 +170734481281,441,0 +170734481329,441,0 +170734481377,441,0 +170734481425,441,0 +170734481474,441,0 +170734481524,441,0 +170734481573,441,0 +170734481621,441,0 +170734481669,441,0 +170734481719,441,0 +170734481767,441,0 +170734481816,441,0 +170734481864,290,1 +170734481951,437,0 +170734482000,441,0 +170734482048,441,0 +170734482098,441,0 +170734482147,441,0 +170734482195,441,0 +170734482243,441,0 +170734482291,441,0 +170734482339,441,0 +170734482389,441,0 +170734482437,441,0 +170734482486,441,0 +170734482534,441,0 +170734482582,441,0 +170734482632,441,0 +170734482680,441,0 +170734482727,441,0 +170734482775,441,0 +170734482823,441,0 +170734482871,286,1 +170734482962,277,1 +170734483047,441,0 +170734483095,441,0 +170734483143,441,0 +170734483191,441,0 +170734483239,441,0 +170734483289,441,0 +170734483337,441,0 +170734483386,441,0 +170734483436,441,0 +170734483484,441,0 +170734483533,441,0 +170734483581,441,0 +170734483629,441,0 +170734483677,441,0 +170734483725,441,0 +170734483773,441,0 +170734483821,441,0 +170734483869,441,0 +170734483917,440,0 +170734483965,290,1 +170734484050,437,0 +170734484099,441,0 +170734484147,441,0 +170734484195,441,0 +170734484245,441,0 +170734484293,441,0 +170734484342,441,0 +170734484390,441,0 +170734484438,441,0 +170734484486,441,0 +170734484536,441,0 +170734484585,441,0 +170734484633,441,0 +170734484681,441,0 +170734484729,441,0 +170734484777,441,0 +170734484826,441,0 +170734484874,441,0 +170734484922,441,0 +170734484970,439,0 +170734485018,299,1 +170734485102,439,0 +170734485151,441,0 +170734485201,441,0 +170734485249,441,0 +170734485298,441,0 +170734485346,441,0 +170734485394,441,0 +170734485442,441,0 +170734485490,441,0 +170734485538,441,0 +170734485586,441,0 +170734485636,441,0 +170734485684,441,0 +170734485732,441,0 +170734485779,441,0 +170734485827,441,0 +170734485875,441,0 +170734485923,441,0 +170734485971,441,0 +170734486021,292,1 +170734486104,293,1 +170734486186,441,0 +170734486236,441,0 +170734486285,441,0 +170734486335,441,0 +170734486383,441,0 +170734486431,441,0 +170734486480,441,0 +170734486528,441,0 +170734486576,441,0 +170734486624,441,0 +170734486672,441,0 +170734486721,441,0 +170734486769,441,0 +170734486817,441,0 +170734486865,441,0 +170734486914,441,0 +170734486962,441,0 +170734487010,441,0 +170734487060,440,0 +170734487109,290,1 +170734487194,438,0 +170734487242,441,0 +170734487289,441,0 +170734487337,441,0 +170734487385,441,0 +170734487435,441,0 +170734487484,441,0 +170734487532,441,0 +170734487580,441,0 +170734487628,441,0 +170734487678,441,0 +170734487726,441,0 +170734487774,441,0 +170734487823,441,0 +170734487871,441,0 +170734487921,441,0 +170734487968,441,0 +170734488016,441,0 +170734488064,441,0 +170734488112,441,0 +170734488160,441,0 +170734488208,441,0 +170734488256,441,0 +170734488304,441,0 +170734488352,441,0 +170734488400,441,0 +170734488448,441,0 +170734488496,441,0 +170734488544,441,0 +170734488592,441,0 +170734488639,285,1 +170734488721,295,1 +170734488801,441,0 +170734488849,441,0 +170734488897,441,0 +170734488944,441,0 +170734488992,441,0 +170734489040,441,0 +170734489088,441,0 +170734489136,441,0 +170734489184,441,0 +170734489232,441,0 +170734489280,441,0 +170734489328,441,0 +170734489377,441,0 +170734489425,441,0 +170734489473,441,0 +170734489522,441,0 +170734489572,441,0 +170734489621,441,0 +170734489669,440,0 +170734489717,305,1 +170734489800,438,0 +170734489848,441,0 +170734489896,441,0 +170734489946,441,0 +170734489994,441,0 +170734490042,441,0 +170734490089,441,0 +170734490137,441,0 +170734490185,441,0 +170734490233,441,0 +170734490281,441,0 +170734490331,441,0 +170734490379,441,0 +170734490427,441,0 +170734490475,441,0 +170734490523,441,0 +170734490571,441,0 +170734490618,441,0 +170734490666,441,0 +170734490714,441,0 +170734490762,302,1 +170734490840,236,0 +170734490888,441,0 +170734490936,441,0 +170734490986,441,0 +170734491034,441,0 +170734491083,441,0 +170734491131,441,0 +170734491179,441,0 +170734491227,441,0 +170734491275,441,0 +170734491323,441,0 +170734491371,441,0 +170734491421,441,0 +170734491470,441,0 +170734491518,441,0 +170734491566,441,0 +170734491616,441,0 +170734491665,441,0 +170734491715,441,0 +170734491764,441,0 +170734491812,289,1 +170734491899,435,0 +170734491947,441,0 +170734491995,441,0 +170734492043,441,0 +170734492091,441,0 +170734492138,441,0 +170734492186,441,0 +170734492236,441,0 +170734492285,441,0 +170734492335,441,0 +170734492383,441,0 +170734492431,441,0 +170734492480,441,0 +170734492530,441,0 +170734492578,441,0 +170734492627,441,0 +170734492675,441,0 +170734492725,441,0 +170734492773,441,0 +170734492822,439,0 +170734492872,300,1 +170734492956,439,0 +170734493005,441,0 +170734493055,441,0 +170734493104,441,0 +170734493152,441,0 +170734493200,441,0 +170734493248,441,0 +170734493296,441,0 +170734493346,441,0 +170734493394,441,0 +170734493441,441,0 +170734493491,441,0 +170734493539,441,0 +170734493587,441,0 +170734493635,441,0 +170734493684,441,0 +170734493734,441,0 +170734493782,441,0 +170734493830,441,0 +170734493879,424,0 +170734493929,298,1 +170734494014,440,0 +170734494064,441,0 +170734494113,441,0 +170734494163,441,0 +170734494211,441,0 +170734494259,441,0 +170734494307,441,0 +170734494356,441,0 +170734494404,441,0 +170734494454,441,0 +170734494502,441,0 +170734494551,441,0 +170734494599,441,0 +170734494647,441,0 +170734494697,441,0 +170734494745,441,0 +170734494794,441,0 +170734494844,441,0 +170734494893,441,0 +170734494943,306,1 +170734495024,257,0 +170734495072,441,0 +170734495121,441,0 +170734495171,441,0 +170734495220,441,0 +170734495268,441,0 +170734495316,441,0 +170734495364,441,0 +170734495412,441,0 +170734495462,441,0 +170734495510,441,0 +170734495559,441,0 +170734495607,441,0 +170734495655,441,0 +170734495705,441,0 +170734495754,441,0 +170734495802,441,0 +170734495850,441,0 +170734495898,441,0 +170734495946,440,0 +170734495996,297,1 +170734496081,436,0 +170734496129,441,0 +170734496177,441,0 +170734496225,441,0 +170734496273,441,0 +170734496323,441,0 +170734496372,441,0 +170734496422,441,0 +170734496470,441,0 +170734496517,441,0 +170734496565,441,0 +170734496615,441,0 +170734496663,441,0 +170734496711,441,0 +170734496759,441,0 +170734496808,441,0 +170734496856,441,0 +170734496904,441,0 +170734496952,441,0 +170734497000,441,0 +170734497048,303,1 +170734497127,436,0 +170734497176,441,0 +170734497224,441,0 +170734497272,441,0 +170734497322,441,0 +170734497370,441,0 +170734497417,441,0 +170734497465,441,0 +170734497513,441,0 +170734497561,441,0 +170734497611,441,0 +170734497660,441,0 +170734497708,441,0 +170734497756,441,0 +170734497806,441,0 +170734497856,441,0 +170734497905,441,0 +170734497953,441,0 +170734498001,441,0 +170734498049,441,0 +170734498097,299,1 +170734498180,261,0 +170734498228,441,0 +170734498277,441,0 +170734498325,441,0 +170734498373,441,0 +170734498421,441,0 +170734498469,441,0 +170734498519,441,0 +170734498567,441,0 +170734498614,441,0 +170734498664,441,0 +170734498712,441,0 +170734498760,441,0 +170734498808,441,0 +170734498856,441,0 +170734498904,441,0 +170734498953,441,0 +170734499003,441,0 +170734499051,441,0 +170734499099,440,0 +170734499147,306,1 +170734499232,436,0 +170734499282,441,0 +170734499330,441,0 +170734499379,441,0 +170734499429,441,0 +170734499477,441,0 +170734499525,441,0 +170734499573,441,0 +170734499622,441,0 +170734499670,441,0 +170734499718,441,0 +170734499766,441,0 +170734499814,441,0 +170734499864,441,0 +170734499912,441,0 +170734499960,441,0 +170734500008,441,0 +170734500057,441,0 +170734500105,441,0 +170734500154,440,0 +170734500202,296,1 +170734500288,437,0 +170734500336,441,0 +170734500386,441,0 +170734500435,441,0 +170734500485,441,0 +170734500533,441,0 +170734500580,441,0 +170734500630,441,0 +170734500678,441,0 +170734500726,441,0 +170734500774,441,0 +170734500822,441,0 +170734500870,441,0 +170734500918,441,0 +170734500968,441,0 +170734501017,441,0 +170734501067,441,0 +170734501116,441,0 +170734501164,441,0 +170734501214,356,0 +170734501262,303,1 +170734501345,439,0 +170734501392,441,0 +170734501440,441,0 +170734501488,441,0 +170734501538,441,0 +170734501586,441,0 +170734501633,441,0 +170734501683,441,0 +170734501732,441,0 +170734501780,441,0 +170734501830,441,0 +170734501878,441,0 +170734501926,441,0 +170734501974,441,0 +170734502022,441,0 +170734502070,441,0 +170734502118,441,0 +170734502167,441,0 +170734502216,441,0 +170734502264,298,1 +170734502346,310,0 +170734502394,440,0 +170734502444,441,0 +170734502492,441,0 +170734502540,441,0 +170734502588,441,0 +170734502636,441,0 +170734502685,441,0 +170734502735,441,0 +170734502783,441,0 +170734502832,441,0 +170734502882,441,0 +170734502932,441,0 +170734502981,441,0 +170734503029,441,0 +170734503077,441,0 +170734503125,441,0 +170734503173,441,0 +170734503221,441,0 +170734503270,441,0 +170734503318,305,1 +170734503405,250,0 +170734503454,441,0 +170734503504,441,0 +170734503552,441,0 +170734503600,441,0 +170734503647,441,0 +170734503697,441,0 +170734503745,441,0 +170734503793,441,0 +170734503840,441,0 +170734503888,441,0 +170734503936,441,0 +170734503984,441,0 +170734504032,441,0 +170734504080,441,0 +170734504129,441,0 +170734504179,441,0 +170734504227,441,0 +170734504275,441,0 +170734504322,441,0 +170734504370,303,1 +170734504454,251,0 +170734504502,440,0 +170734504552,441,0 +170734504602,441,0 +170734504651,441,0 +170734504701,441,0 +170734504748,441,0 +170734504798,441,0 +170734504846,441,0 +170734504894,441,0 +170734504943,441,0 +170734504991,441,0 +170734505039,441,0 +170734505089,441,0 +170734505138,441,0 +170734505186,441,0 +170734505236,441,0 +170734505284,441,0 +170734505332,441,0 +170734505381,441,0 +170734505431,287,1 +170734505513,436,0 +170734505566,441,0 +170734505615,441,0 +170734505665,441,0 +170734505713,441,0 +170734505762,441,0 +170734505812,441,0 +170734505860,441,0 +170734505909,441,0 +170734505959,441,0 +170734506008,441,0 +170734506056,441,0 +170734506106,441,0 +170734506154,441,0 +170734506202,441,0 +170734506250,441,0 +170734506299,441,0 +170734506349,441,0 +170734506398,441,0 +170734506446,440,0 +170734506494,293,1 +170734506578,438,0 +170734506626,441,0 +170734506674,441,0 +170734506722,441,0 +170734506770,441,0 +170734506818,441,0 +170734506866,441,0 +170734506914,441,0 +170734506961,441,0 +170734507011,441,0 +170734507059,441,0 +170734507107,441,0 +170734507155,441,0 +170734507204,441,0 +170734507252,441,0 +170734507302,441,0 +170734507350,441,0 +170734507397,441,0 +170734507445,441,0 +170734507493,441,0 +170734507541,303,1 +170734507626,438,0 +170734507674,441,0 +170734507722,441,0 +170734507770,441,0 +170734507818,441,0 +170734507866,441,0 +170734507914,441,0 +170734507963,441,0 +170734508011,441,0 +170734508059,441,0 +170734508107,441,0 +170734508155,441,0 +170734508202,441,0 +170734508250,441,0 +170734508298,441,0 +170734508346,441,0 +170734508395,441,0 +170734508445,441,0 +170734508493,441,0 +170734508541,441,0 +170734508590,297,1 +170734508675,437,0 +170734508722,441,0 +170734508772,441,0 +170734508821,441,0 +170734508871,441,0 +170734508919,441,0 +170734508967,441,0 +170734509014,441,0 +170734509062,441,0 +170734509110,441,0 +170734509158,441,0 +170734509206,441,0 +170734509255,441,0 +170734509305,441,0 +170734509354,441,0 +170734509402,441,0 +170734509450,441,0 +170734509498,441,0 +170734509546,441,0 +170734509594,433,0 +170734509643,299,1 +170734509725,438,0 +170734509773,441,0 +170734509821,441,0 +170734509869,441,0 +170734509917,441,0 +170734509965,441,0 +170734510013,441,0 +170734510061,441,0 +170734510108,441,0 +170734510156,441,0 +170734510204,441,0 +170734510252,441,0 +170734510300,441,0 +170734510348,441,0 +170734510397,441,0 +170734510445,441,0 +170734510493,441,0 +170734510541,441,0 +170734510589,441,0 +170734510638,441,0 +170734510686,301,1 +170734510766,436,0 +170734510814,441,0 +170734510862,441,0 +170734510911,441,0 +170734510959,441,0 +170734511007,441,0 +170734511057,441,0 +170734511105,441,0 +170734511152,441,0 +170734511200,441,0 +170734511250,441,0 +170734511298,441,0 +170734511345,441,0 +170734511393,441,0 +170734511441,441,0 +170734511489,441,0 +170734511537,441,0 +170734511585,441,0 +170734511633,441,0 +170734511681,440,0 +170734511728,310,0 +170734511776,309,1 +170734511859,441,0 +170734511907,441,0 +170734511957,441,0 +170734512005,441,0 +170734512053,441,0 +170734512100,441,0 +170734512148,441,0 +170734512196,441,0 +170734512244,441,0 +170734512292,441,0 +170734512340,441,0 +170734512388,441,0 +170734512436,441,0 +170734512485,441,0 +170734512534,441,0 +170734512582,441,0 +170734512630,441,0 +170734512678,441,0 +170734512726,441,0 +170734512774,286,1 +170734512856,429,0 +170734512903,441,0 +170734512951,441,0 +170734512999,441,0 +170734513049,441,0 +170734513097,441,0 +170734513145,441,0 +170734513194,441,0 +170734513242,441,0 +170734513291,441,0 +170734513339,441,0 +170734513387,441,0 +170734513436,441,0 +170734513486,441,0 +170734513534,441,0 +170734513582,441,0 +170734513630,441,0 +170734513677,441,0 +170734513725,441,0 +170734513773,441,0 +170734513821,290,1 +170734513906,435,0 +170734513954,441,0 +170734514002,441,0 +170734514052,441,0 +170734514099,441,0 +170734514147,441,0 +170734514195,441,0 +170734514243,441,0 +170734514291,441,0 +170734514339,441,0 +170734514388,441,0 +170734514436,441,0 +170734514484,441,0 +170734514532,441,0 +170734514580,441,0 +170734514629,441,0 +170734514677,441,0 +170734514727,441,0 +170734514775,441,0 +170734514824,441,0 +170734514872,298,1 +170734514960,434,0 +170734515008,441,0 +170734515056,441,0 +170734515104,441,0 +170734515152,441,0 +170734515201,441,0 +170734515249,441,0 +170734515298,441,0 +170734515346,441,0 +170734515396,441,0 +170734515444,441,0 +170734515491,441,0 +170734515539,441,0 +170734515589,441,0 +170734515637,441,0 +170734515686,441,0 +170734515734,441,0 +170734515782,441,0 +170734515830,441,0 +170734515877,440,0 +170734515925,298,1 +170734516008,437,0 +170734516056,441,0 +170734516104,441,0 +170734516152,441,0 +170734516200,441,0 +170734516248,441,0 +170734516296,441,0 +170734516343,441,0 +170734516391,441,0 +170734516439,441,0 +170734516487,441,0 +170734516537,441,0 +170734516586,441,0 +170734516634,441,0 +170734516682,441,0 +170734516731,441,0 +170734516781,441,0 +170734516830,441,0 +170734516878,441,0 +170734516926,440,0 +170734516974,290,1 +170734517056,437,0 +170734517104,441,0 +170734517151,441,0 +170734517201,441,0 +170734517249,441,0 +170734517296,441,0 +170734517344,441,0 +170734517392,441,0 +170734517440,441,0 +170734517488,441,0 +170734517537,441,0 +170734517585,441,0 +170734517633,441,0 +170734517683,441,0 +170734517731,441,0 +170734517779,441,0 +170734517826,441,0 +170734517874,441,0 +170734517922,441,0 +170734517970,441,0 +170734518018,253,0 +170734518066,287,1 +170734518152,441,0 +170734518202,441,0 +170734518250,441,0 +170734518299,441,0 +170734518349,441,0 +170734518397,441,0 +170734518445,441,0 +170734518493,441,0 +170734518542,441,0 +170734518590,441,0 +170734518638,441,0 +170734518686,441,0 +170734518734,441,0 +170734518784,441,0 +170734518832,441,0 +170734518879,441,0 +170734518927,441,0 +170734518977,441,0 +170734519025,440,0 +170734519073,283,1 +170734519153,437,0 +170734519201,441,0 +170734519250,441,0 +170734519298,441,0 +170734519346,441,0 +170734519394,441,0 +170734519442,441,0 +170734519492,441,0 +170734519539,441,0 +170734519587,441,0 +170734519635,441,0 +170734519683,441,0 +170734519731,441,0 +170734519779,441,0 +170734519828,441,0 +170734519878,441,0 +170734519926,441,0 +170734519973,441,0 +170734520021,441,0 +170734520071,440,0 +170734520120,281,1 +170734520204,437,0 +170734520251,441,0 +170734520299,441,0 +170734520347,441,0 +170734520395,441,0 +170734520443,441,0 +170734520491,441,0 +170734520539,441,0 +170734520588,441,0 +170734520636,441,0 +170734520684,441,0 +170734520732,441,0 +170734520780,441,0 +170734520828,441,0 +170734520877,441,0 +170734520925,441,0 +170734520974,441,0 +170734521024,441,0 +170734521071,441,0 +170734521119,441,0 +170734521167,270,1 +170734521248,435,0 +170734521297,441,0 +170734521345,441,0 +170734521395,441,0 +170734521443,441,0 +170734521491,441,0 +170734521539,441,0 +170734521586,441,0 +170734521634,441,0 +170734521682,441,0 +170734521730,441,0 +170734521778,441,0 +170734521826,441,0 +170734521874,441,0 +170734521922,441,0 +170734521972,441,0 +170734522021,441,0 +170734522071,441,0 +170734522119,441,0 +170734522168,440,0 +170734522216,299,1 +170734522303,438,0 +170734522351,441,0 +170734522399,441,0 +170734522447,441,0 +170734522495,441,0 +170734522543,441,0 +170734522591,441,0 +170734522639,441,0 +170734522687,441,0 +170734522735,441,0 +170734522784,441,0 +170734522834,441,0 +170734522882,441,0 +170734522931,441,0 +170734522979,441,0 +170734523027,441,0 +170734523075,441,0 +170734523125,441,0 +170734523173,441,0 +170734523222,325,0 +170734523272,297,1 +170734523356,439,0 +170734523405,441,0 +170734523453,441,0 +170734523501,441,0 +170734523549,441,0 +170734523597,441,0 +170734523645,441,0 +170734523693,441,0 +170734523740,441,0 +170734523788,441,0 +170734523836,441,0 +170734523884,441,0 +170734523932,441,0 +170734523980,441,0 +170734524029,441,0 +170734524079,441,0 +170734524127,441,0 +170734524176,441,0 +170734524224,441,0 +170734524274,441,0 +170734524322,309,1 +170734524403,436,0 +170734524453,441,0 +170734524501,441,0 +170734524550,441,0 +170734524598,441,0 +170734524646,441,0 +170734524695,441,0 +170734524743,441,0 +170734524791,441,0 +170734524839,441,0 +170734524887,441,0 +170734524935,441,0 +170734524983,441,0 +170734525031,441,0 +170734525081,441,0 +170734525130,441,0 +170734525178,441,0 +170734525226,441,0 +170734525274,441,0 +170734525323,439,0 +170734525371,251,0 +170734525419,291,1 +170734525505,441,0 +170734525553,441,0 +170734525603,441,0 +170734525652,441,0 +170734525702,441,0 +170734525750,441,0 +170734525798,441,0 +170734525846,441,0 +170734525895,441,0 +170734525943,441,0 +170734525991,441,0 +170734526040,441,0 +170734526088,441,0 +170734526136,441,0 +170734526184,441,0 +170734526232,441,0 +170734526280,441,0 +170734526330,441,0 +170734526378,306,1 +170734526458,266,0 +170734526508,441,0 +170734526556,441,0 +170734526603,441,0 +170734526653,441,0 +170734526701,441,0 +170734526749,441,0 +170734526797,441,0 +170734526845,441,0 +170734526893,441,0 +170734526941,441,0 +170734526989,441,0 +170734527037,441,0 +170734527086,441,0 +170734527136,441,0 +170734527184,441,0 +170734527232,441,0 +170734527281,441,0 +170734527331,441,0 +170734527380,441,0 +170734527428,297,1 +170734527506,288,1 +170734527583,441,0 +170734527633,441,0 +170734527682,441,0 +170734527730,441,0 +170734527780,441,0 +170734527828,441,0 +170734527876,441,0 +170734527924,441,0 +170734527973,441,0 +170734528021,441,0 +170734528069,441,0 +170734528117,441,0 +170734528165,441,0 +170734528214,441,0 +170734528262,441,0 +170734528310,441,0 +170734528360,441,0 +170734528409,441,0 +170734528459,440,0 +170734528507,309,1 +170734528590,437,0 +170734528638,441,0 +170734528688,441,0 +170734528737,441,0 +170734528785,441,0 +170734528835,441,0 +170734528883,441,0 +170734528931,441,0 +170734528979,441,0 +170734529028,441,0 +170734529076,441,0 +170734529126,441,0 +170734529175,441,0 +170734529223,441,0 +170734529273,441,0 +170734529321,441,0 +170734529369,441,0 +170734529418,441,0 +170734529466,441,0 +170734529514,420,0 +170734529563,306,1 +170734529652,440,0 +170734529700,441,0 +170734529748,441,0 +170734529796,441,0 +170734529844,441,0 +170734529892,441,0 +170734529941,441,0 +170734529989,441,0 +170734530037,441,0 +170734530085,441,0 +170734530133,441,0 +170734530181,441,0 +170734530230,441,0 +170734530278,441,0 +170734530328,441,0 +170734530378,441,0 +170734530425,441,0 +170734530473,441,0 +170734530521,441,0 +170734530569,305,1 +170734530653,262,0 +170734530701,440,0 +170734530749,441,0 +170734530797,441,0 +170734530845,441,0 +170734530895,441,0 +170734530943,441,0 +170734530990,441,0 +170734531038,441,0 +170734531086,441,0 +170734531134,441,0 +170734531182,441,0 +170734531230,441,0 +170734531278,441,0 +170734531326,441,0 +170734531374,441,0 +170734531422,441,0 +170734531470,441,0 +170734531519,441,0 +170734531569,441,0 +170734531617,291,1 +170734531702,295,1 +170734531784,441,0 +170734531834,441,0 +170734531882,441,0 +170734531931,441,0 +170734531981,441,0 +170734532029,441,0 +170734532077,441,0 +170734532125,441,0 +170734532174,441,0 +170734532224,441,0 +170734532273,441,0 +170734532321,441,0 +170734532371,441,0 +170734532420,441,0 +170734532470,441,0 +170734532519,441,0 +170734532567,441,0 +170734532617,441,0 +170734532665,286,1 +170734532744,302,1 +170734532830,441,0 +170734532880,441,0 +170734532929,441,0 +170734532979,441,0 +170734533027,441,0 +170734533075,441,0 +170734533124,441,0 +170734533172,441,0 +170734533222,441,0 +170734533270,441,0 +170734533318,441,0 +170734533368,441,0 +170734533416,441,0 +170734533465,441,0 +170734533515,441,0 +170734533564,441,0 +170734533614,441,0 +170734533663,441,0 +170734533711,298,1 +170734533799,243,0 +170734533847,441,0 +170734533895,441,0 +170734533943,441,0 +170734533991,441,0 +170734534039,441,0 +170734534087,441,0 +170734534135,441,0 +170734534182,441,0 +170734534232,441,0 +170734534280,441,0 +170734534328,441,0 +170734534375,441,0 +170734534425,441,0 +170734534473,441,0 +170734534521,441,0 +170734534569,441,0 +170734534617,441,0 +170734534664,441,0 +170734534712,441,0 +170734534760,434,0 +170734534810,286,1 +170734534898,440,0 +170734534947,441,0 +170734534997,441,0 +170734535045,441,0 +170734535093,441,0 +170734535142,441,0 +170734535190,441,0 +170734535240,441,0 +170734535289,441,0 +170734535337,441,0 +170734535385,441,0 +170734535433,441,0 +170734535481,441,0 +170734535529,441,0 +170734535578,441,0 +170734535626,441,0 +170734535676,441,0 +170734535724,441,0 +170734535772,441,0 +170734535820,308,1 +170734535899,272,1 +170734535978,441,0 +170734536028,441,0 +170734536077,441,0 +170734536127,441,0 +170734536176,441,0 +170734536224,441,0 +170734536274,441,0 +170734536324,441,0 +170734536371,441,0 +170734536419,441,0 +170734536469,441,0 +170734536519,441,0 +170734536567,441,0 +170734536615,441,0 +170734536662,441,0 +170734536710,441,0 +170734536758,441,0 +170734536806,441,0 +170734536856,435,0 +170734536904,268,0 +170734536952,244,0 +170734537001,441,0 +170734537049,441,0 +170734537099,441,0 +170734537148,441,0 +170734537196,441,0 +170734537246,441,0 +170734537294,441,0 +170734537342,441,0 +170734537390,441,0 +170734537438,441,0 +170734537486,441,0 +170734537535,441,0 +170734537583,441,0 +170734537633,441,0 +170734537682,441,0 +170734537732,441,0 +170734537781,441,0 +170734537829,441,0 +170734537879,441,0 +170734537927,291,1 +170734538009,234,0 +170734538057,441,0 +170734538105,441,0 +170734538153,441,0 +170734538203,441,0 +170734538251,441,0 +170734538300,441,0 +170734538348,441,0 +170734538398,441,0 +170734538446,441,0 +170734538494,441,0 +170734538542,441,0 +170734538589,441,0 +170734538638,441,0 +170734538686,441,0 +170734538733,441,0 +170734538783,441,0 +170734538831,441,0 +170734538879,441,0 +170734538929,441,0 +170734538978,304,1 +170734539062,434,0 +170734539110,441,0 +170734539160,441,0 +170734539208,441,0 +170734539256,441,0 +170734539304,441,0 +170734539352,441,0 +170734539400,441,0 +170734539448,441,0 +170734539497,441,0 +170734539545,441,0 +170734539593,441,0 +170734539643,441,0 +170734539691,441,0 +170734539739,441,0 +170734539788,441,0 +170734539836,441,0 +170734539884,441,0 +170734539932,441,0 +170734539981,441,0 +170734540029,284,1 +170734540111,434,0 +170734540161,441,0 +170734540210,441,0 +170734540258,441,0 +170734540306,441,0 +170734540356,441,0 +170734540404,441,0 +170734540452,441,0 +170734540500,441,0 +170734540548,441,0 +170734540595,441,0 +170734540643,441,0 +170734540693,441,0 +170734540741,441,0 +170734540790,441,0 +170734540838,441,0 +170734540886,441,0 +170734540934,441,0 +170734540982,441,0 +170734541030,441,0 +170734541078,299,1 +170734541157,383,0 +170734541205,441,0 +170734541253,441,0 +170734541301,441,0 +170734541349,441,0 +170734541397,441,0 +170734541446,441,0 +170734541494,441,0 +170734541542,441,0 +170734541590,441,0 +170734541638,441,0 +170734541686,441,0 +170734541734,441,0 +170734541782,441,0 +170734541830,441,0 +170734541878,441,0 +170734541927,441,0 +170734541977,441,0 +170734542026,441,0 +170734542074,441,0 +170734542122,288,1 +170734542203,237,0 +170734542251,441,0 +170734542300,441,0 +170734542348,441,0 +170734542398,441,0 +170734542446,441,0 +170734542494,441,0 +170734542543,441,0 +170734542593,441,0 +170734542641,441,0 +170734542690,441,0 +170734542738,441,0 +170734542786,441,0 +170734542834,441,0 +170734542882,441,0 +170734542930,441,0 +170734542978,441,0 +170734543026,441,0 +170734543074,441,0 +170734543122,441,0 +170734543172,287,1 +170734543255,432,0 +170734543304,441,0 +170734543354,441,0 +170734543402,441,0 +170734543450,441,0 +170734543498,441,0 +170734543545,441,0 +170734543595,441,0 +170734543644,441,0 +170734543692,441,0 +170734543742,441,0 +170734543790,441,0 +170734543839,441,0 +170734543887,441,0 +170734543935,441,0 +170734543983,441,0 +170734544031,441,0 +170734544079,441,0 +170734544127,441,0 +170734544177,441,0 +170734544226,287,1 +170734544308,347,0 +170734544356,441,0 +170734544404,441,0 +170734544454,441,0 +170734544504,441,0 +170734544553,441,0 +170734544603,441,0 +170734544651,441,0 +170734544700,441,0 +170734544748,441,0 +170734544796,441,0 +170734544844,441,0 +170734544893,441,0 +170734544941,441,0 +170734544989,441,0 +170734545039,441,0 +170734545088,441,0 +170734545136,441,0 +170734545186,441,0 +170734545235,440,0 +170734545283,290,1 +170734545363,437,0 +170734545413,441,0 +170734545461,441,0 +170734545510,441,0 +170734545560,441,0 +170734545609,441,0 +170734545657,441,0 +170734545705,441,0 +170734545755,441,0 +170734545803,441,0 +170734545852,441,0 +170734545900,441,0 +170734545948,441,0 +170734545996,441,0 +170734546044,441,0 +170734546092,441,0 +170734546140,441,0 +170734546190,441,0 +170734546239,441,0 +170734546287,440,0 +170734546337,279,1 +170734546419,437,0 +170734546468,441,0 +170734546516,441,0 +170734546564,441,0 +170734546612,441,0 +170734546662,441,0 +170734546710,441,0 +170734546759,441,0 +170734546809,441,0 +170734546858,441,0 +170734546906,441,0 +170734546956,441,0 +170734547004,441,0 +170734547053,441,0 +170734547101,441,0 +170734547149,441,0 +170734547198,441,0 +170734547246,441,0 +170734547296,441,0 +170734547344,436,0 +170734547392,294,1 +170734547472,439,0 +170734547520,441,0 +170734547569,441,0 +170734547619,441,0 +170734547667,441,0 +170734547715,441,0 +170734547763,441,0 +170734547811,441,0 +170734547860,441,0 +170734547908,441,0 +170734547956,441,0 +170734548004,441,0 +170734548054,441,0 +170734548101,441,0 +170734548149,441,0 +170734548199,441,0 +170734548248,441,0 +170734548298,441,0 +170734548346,441,0 +170734548395,272,1 +170734548476,299,1 +170734548557,441,0 +170734548607,441,0 +170734548655,441,0 +170734548702,441,0 +170734548750,441,0 +170734548798,441,0 +170734548848,441,0 +170734548898,441,0 +170734548947,441,0 +170734548995,441,0 +170734549043,441,0 +170734549091,441,0 +170734549139,441,0 +170734549187,441,0 +170734549236,441,0 +170734549286,441,0 +170734549335,441,0 +170734549383,441,0 +170734549431,440,0 +170734549479,299,1 +170734549563,438,0 +170734549613,441,0 +170734549662,441,0 +170734549712,441,0 +170734549761,441,0 +170734549810,441,0 +170734549860,441,0 +170734549909,441,0 +170734549957,441,0 +170734550005,441,0 +170734550053,441,0 +170734550103,441,0 +170734550151,441,0 +170734550199,441,0 +170734550247,441,0 +170734550296,441,0 +170734550344,441,0 +170734550392,441,0 +170734550440,441,0 +170734550490,440,0 +170734550539,286,1 +170734550631,440,0 +170734550679,441,0 +170734550728,441,0 +170734550776,441,0 +170734550824,441,0 +170734550874,441,0 +170734550922,441,0 +170734550970,441,0 +170734551019,441,0 +170734551069,441,0 +170734551118,441,0 +170734551166,441,0 +170734551214,441,0 +170734551262,441,0 +170734551310,441,0 +170734551358,441,0 +170734551406,441,0 +170734551455,441,0 +170734551505,441,0 +170734551553,282,1 +170734551634,294,1 +170734551718,441,0 +170734551766,441,0 +170734551816,441,0 +170734551864,441,0 +170734551912,441,0 +170734551960,441,0 +170734552008,441,0 +170734552056,441,0 +170734552105,441,0 +170734552155,441,0 +170734552203,441,0 +170734552251,441,0 +170734552298,441,0 +170734552348,441,0 +170734552398,441,0 +170734552446,441,0 +170734552493,441,0 +170734552541,441,0 +170734552589,280,1 +170734552672,306,1 +170734552750,441,0 +170734552798,441,0 +170734552847,441,0 +170734552895,441,0 +170734552943,441,0 +170734552993,441,0 +170734553041,441,0 +170734553088,441,0 +170734553136,441,0 +170734553184,441,0 +170734553232,441,0 +170734553280,441,0 +170734553328,441,0 +170734553378,441,0 +170734553426,441,0 +170734553474,441,0 +170734553522,441,0 +170734553571,441,0 +170734553619,441,0 +170734553669,289,1 +170734553750,435,0 +170734553798,441,0 +170734553847,441,0 +170734553897,441,0 +170734553945,441,0 +170734553993,441,0 +170734554040,441,0 +170734554090,441,0 +170734554138,441,0 +170734554187,441,0 +170734554235,441,0 +170734554283,441,0 +170734554331,441,0 +170734554379,441,0 +170734554427,441,0 +170734554475,441,0 +170734554525,441,0 +170734554573,441,0 +170734554622,441,0 +170734554670,441,0 +170734554720,300,1 +170734554804,436,0 +170734554856,441,0 +170734554904,441,0 +170734554954,441,0 +170734555002,441,0 +170734555050,441,0 +170734555098,441,0 +170734555147,441,0 +170734555197,441,0 +170734555245,441,0 +170734555293,441,0 +170734555340,441,0 +170734555388,441,0 +170734555436,441,0 +170734555484,441,0 +170734555534,441,0 +170734555582,441,0 +170734555629,441,0 +170734555677,441,0 +170734555725,440,0 +170734555775,311,0 +170734555823,257,0 +170734555872,441,0 +170734555920,441,0 +170734555970,441,0 +170734556019,441,0 +170734556069,441,0 +170734556117,441,0 +170734556165,441,0 +170734556213,441,0 +170734556261,441,0 +170734556309,441,0 +170734556357,441,0 +170734556405,441,0 +170734556452,441,0 +170734556502,441,0 +170734556552,441,0 +170734556599,441,0 +170734556649,441,0 +170734556697,441,0 +170734556746,441,0 +170734556796,294,1 +170734556876,294,1 +170734556957,441,0 +170734557006,441,0 +170734557056,441,0 +170734557105,441,0 +170734557153,441,0 +170734557201,441,0 +170734557249,441,0 +170734557298,441,0 +170734557346,441,0 +170734557394,441,0 +170734557442,441,0 +170734557490,441,0 +170734557537,441,0 +170734557585,441,0 +170734557635,441,0 +170734557684,441,0 +170734557734,441,0 +170734557783,441,0 +170734557831,440,0 +170734557879,305,1 +170734557967,439,0 +170734558015,441,0 +170734558063,441,0 +170734558111,441,0 +170734558159,441,0 +170734558209,441,0 +170734558258,441,0 +170734558306,441,0 +170734558354,441,0 +170734558404,441,0 +170734558452,441,0 +170734558500,441,0 +170734558549,441,0 +170734558599,441,0 +170734558647,441,0 +170734558695,441,0 +170734558743,441,0 +170734558792,441,0 +170734558840,441,0 +170734558888,288,1 +170734558968,306,1 +170734559045,441,0 +170734559093,441,0 +170734559141,441,0 +170734559189,441,0 +170734559239,441,0 +170734559288,441,0 +170734559338,441,0 +170734559387,441,0 +170734559435,441,0 +170734559485,441,0 +170734559534,441,0 +170734559582,441,0 +170734559630,441,0 +170734559680,441,0 +170734559728,441,0 +170734559776,441,0 +170734559825,441,0 +170734559875,441,0 +170734559924,440,0 +170734559972,301,1 +170734560055,438,0 +170734560104,441,0 +170734560154,441,0 +170734560202,441,0 +170734560250,441,0 +170734560299,441,0 +170734560349,441,0 +170734560399,441,0 +170734560447,441,0 +170734560495,441,0 +170734560544,441,0 +170734560592,441,0 +170734560641,441,0 +170734560689,441,0 +170734560739,441,0 +170734560787,441,0 +170734560836,441,0 +170734560884,441,0 +170734560932,441,0 +170734560982,436,0 +170734561030,303,1 +170734561113,440,0 +170734561161,441,0 +170734561208,441,0 +170734561258,441,0 +170734561308,441,0 +170734561356,441,0 +170734561403,441,0 +170734561453,441,0 +170734561503,441,0 +170734561550,441,0 +170734561598,441,0 +170734561646,441,0 +170734561696,441,0 +170734561744,441,0 +170734561792,441,0 +170734561840,441,0 +170734561888,441,0 +170734561936,441,0 +170734561984,441,0 +170734562031,432,0 +170734562079,289,1 +170734562161,439,0 +170734562209,441,0 +170734562257,441,0 +170734562307,441,0 +170734562355,441,0 +170734562404,441,0 +170734562454,441,0 +170734562503,441,0 +170734562551,441,0 +170734562599,441,0 +170734562647,441,0 +170734562695,441,0 +170734562743,441,0 +170734562791,441,0 +170734562840,441,0 +170734562888,441,0 +170734562938,441,0 +170734562987,441,0 +170734563035,441,0 +170734563083,280,1 +170734563166,294,1 +170734563248,441,0 +170734563296,441,0 +170734563344,441,0 +170734563392,441,0 +170734563440,441,0 +170734563489,441,0 +170734563537,441,0 +170734563587,441,0 +170734563635,441,0 +170734563683,441,0 +170734563731,441,0 +170734563779,441,0 +170734563827,441,0 +170734563876,441,0 +170734563924,441,0 +170734563972,441,0 +170734564020,441,0 +170734564070,441,0 +170734564119,440,0 +170734564167,284,1 +170734564249,438,0 +170734564298,441,0 +170734564346,441,0 +170734564394,441,0 +170734564443,441,0 +170734564493,441,0 +170734564541,441,0 +170734564589,441,0 +170734564637,441,0 +170734564687,441,0 +170734564734,441,0 +170734564782,441,0 +170734564830,441,0 +170734564878,441,0 +170734564926,441,0 +170734564974,441,0 +170734565024,441,0 +170734565072,441,0 +170734565121,441,0 +170734565171,440,0 +170734565219,299,1 +170734565301,438,0 +170734565350,441,0 +170734565398,441,0 +170734565446,441,0 +170734565494,441,0 +170734565542,441,0 +170734565590,441,0 +170734565638,441,0 +170734565686,441,0 +170734565734,441,0 +170734565782,441,0 +170734565830,441,0 +170734565878,441,0 +170734565926,441,0 +170734565974,441,0 +170734566022,441,0 +170734566071,441,0 +170734566119,441,0 +170734566167,441,0 +170734566217,441,0 +170734566265,277,1 +170734566347,436,0 +170734566395,441,0 +170734566443,441,0 +170734566491,441,0 +170734566539,441,0 +170734566586,441,0 +170734566636,441,0 +170734566684,441,0 +170734566732,441,0 +170734566780,441,0 +170734566828,441,0 +170734566877,441,0 +170734566925,441,0 +170734566973,441,0 +170734567021,441,0 +170734567069,441,0 +170734567118,441,0 +170734567168,441,0 +170734567216,441,0 +170734567264,441,0 +170734567313,289,1 +170734567399,439,0 +170734567447,441,0 +170734567495,441,0 +170734567543,441,0 +170734567593,441,0 +170734567641,441,0 +170734567690,441,0 +170734567738,441,0 +170734567786,441,0 +170734567834,441,0 +170734567883,441,0 +170734567931,441,0 +170734567981,441,0 +170734568030,441,0 +170734568080,441,0 +170734568128,441,0 +170734568176,441,0 +170734568224,441,0 +170734568272,441,0 +170734568319,440,0 +170734568367,307,1 +170734568450,439,0 +170734568498,441,0 +170734568546,441,0 +170734568594,441,0 +170734568642,441,0 +170734568690,441,0 +170734568737,441,0 +170734568785,441,0 +170734568833,441,0 +170734568881,441,0 +170734568929,441,0 +170734568977,441,0 +170734569025,441,0 +170734569073,441,0 +170734569122,441,0 +170734569170,441,0 +170734569218,441,0 +170734569266,441,0 +170734569314,441,0 +170734569362,441,0 +170734569411,274,1 +170734569496,437,0 +170734569544,441,0 +170734569592,441,0 +170734569640,441,0 +170734569688,441,0 +170734569736,441,0 +170734569785,441,0 +170734569835,441,0 +170734569882,441,0 +170734569930,441,0 +170734569978,441,0 +170734570026,441,0 +170734570074,441,0 +170734570122,441,0 +170734570170,441,0 +170734570218,441,0 +170734570267,441,0 +170734570317,441,0 +170734570366,441,0 +170734570414,435,0 +170734570462,300,1 +170734570543,439,0 +170734570592,441,0 +170734570642,441,0 +170734570691,441,0 +170734570741,441,0 +170734570789,441,0 +170734570837,441,0 +170734570885,441,0 +170734570934,441,0 +170734570982,441,0 +170734571032,441,0 +170734571081,441,0 +170734571131,441,0 +170734571179,441,0 +170734571227,441,0 +170734571275,441,0 +170734571324,441,0 +170734571372,441,0 +170734571421,441,0 +170734571469,412,0 +170734571519,299,1 +170734571601,440,0 +170734571649,441,0 +170734571697,441,0 +170734571745,441,0 +170734571793,441,0 +170734571841,441,0 +170734571889,441,0 +170734571937,441,0 +170734571986,441,0 +170734572036,441,0 +170734572084,441,0 +170734572133,441,0 +170734572181,441,0 +170734572229,441,0 +170734572279,441,0 +170734572327,441,0 +170734572375,441,0 +170734572424,441,0 +170734572472,441,0 +170734572522,282,1 +170734572609,260,0 +170734572659,441,0 +170734572707,441,0 +170734572755,441,0 +170734572802,441,0 +170734572852,441,0 +170734572900,441,0 +170734572948,441,0 +170734572996,441,0 +170734573045,441,0 +170734573093,441,0 +170734573141,441,0 +170734573189,441,0 +170734573237,441,0 +170734573285,441,0 +170734573333,441,0 +170734573383,441,0 +170734573432,441,0 +170734573482,441,0 +170734573531,441,0 +170734573579,302,1 +170734573662,246,0 +170734573709,441,0 +170734573757,441,0 +170734573807,441,0 +170734573855,441,0 +170734573903,441,0 +170734573952,441,0 +170734574002,441,0 +170734574051,441,0 +170734574099,441,0 +170734574149,441,0 +170734574197,441,0 +170734574245,441,0 +170734574294,441,0 +170734574342,441,0 +170734574390,441,0 +170734574440,441,0 +170734574489,441,0 +170734574537,441,0 +170734574587,441,0 +170734574635,298,1 +170734574716,425,0 +170734574764,441,0 +170734574812,441,0 +170734574860,441,0 +170734574909,441,0 +170734574959,441,0 +170734575008,441,0 +170734575056,441,0 +170734575104,441,0 +170734575154,441,0 +170734575202,441,0 +170734575250,441,0 +170734575298,441,0 +170734575347,441,0 +170734575397,441,0 +170734575445,441,0 +170734575494,441,0 +170734575542,441,0 +170734575592,441,0 +170734575640,440,0 +170734575688,290,1 +170734575768,426,0 +170734575816,441,0 +170734575866,441,0 +170734575914,441,0 +170734575963,441,0 +170734576013,441,0 +170734576062,441,0 +170734576112,441,0 +170734576161,441,0 +170734576211,441,0 +170734576259,441,0 +170734576307,441,0 +170734576356,441,0 +170734576404,441,0 +170734576454,441,0 +170734576503,441,0 +170734576551,441,0 +170734576601,441,0 +170734576649,441,0 +170734576697,440,0 +170734576745,288,1 +170734576830,438,0 +170734576878,441,0 +170734576926,441,0 +170734576974,441,0 +170734577023,441,0 +170734577071,441,0 +170734577119,441,0 +170734577167,441,0 +170734577217,441,0 +170734577264,441,0 +170734577312,441,0 +170734577360,441,0 +170734577408,441,0 +170734577458,441,0 +170734577506,441,0 +170734577554,441,0 +170734577603,441,0 +170734577651,441,0 +170734577699,441,0 +170734577747,440,0 +170734577795,307,1 +170734577878,439,0 +170734577926,441,0 +170734577976,441,0 +170734578025,441,0 +170734578073,441,0 +170734578123,441,0 +170734578171,441,0 +170734578220,441,0 +170734578268,441,0 +170734578316,441,0 +170734578364,441,0 +170734578412,441,0 +170734578462,441,0 +170734578510,441,0 +170734578559,441,0 +170734578609,441,0 +170734578658,441,0 +170734578706,441,0 +170734578756,441,0 +170734578805,309,1 +170734578900,255,0 +170734578950,441,0 +170734578998,441,0 +170734579046,441,0 +170734579096,441,0 +170734579143,441,0 +170734579193,441,0 +170734579242,441,0 +170734579292,441,0 +170734579340,441,0 +170734579388,441,0 +170734579436,441,0 +170734579485,441,0 +170734579533,441,0 +170734579581,441,0 +170734579629,441,0 +170734579679,441,0 +170734579727,441,0 +170734579775,441,0 +170734579823,441,0 +170734579872,289,1 +170734579955,234,0 +170734580003,441,0 +170734580052,441,0 +170734580102,441,0 +170734580151,441,0 +170734580199,441,0 +170734580247,441,0 +170734580297,441,0 +170734580346,441,0 +170734580396,441,0 +170734580445,441,0 +170734580493,441,0 +170734580541,441,0 +170734580591,441,0 +170734580639,441,0 +170734580687,441,0 +170734580736,441,0 +170734580786,441,0 +170734580834,441,0 +170734580882,441,0 +170734580930,293,1 +170734581012,435,0 +170734581062,441,0 +170734581111,441,0 +170734581161,441,0 +170734581209,441,0 +170734581257,441,0 +170734581305,441,0 +170734581354,441,0 +170734581402,441,0 +170734581450,441,0 +170734581498,441,0 +170734581548,441,0 +170734581596,441,0 +170734581644,441,0 +170734581692,441,0 +170734581740,441,0 +170734581788,441,0 +170734581836,441,0 +170734581885,441,0 +170734581933,440,0 +170734581981,293,1 +170734582061,435,0 +170734582111,441,0 +170734582159,441,0 +170734582208,441,0 +170734582258,441,0 +170734582307,441,0 +170734582357,441,0 +170734582405,441,0 +170734582454,441,0 +170734582502,441,0 +170734582550,441,0 +170734582600,441,0 +170734582649,441,0 +170734582699,441,0 +170734582749,441,0 +170734582797,441,0 +170734582845,441,0 +170734582894,441,0 +170734582943,441,0 +170734582991,417,0 +170734583039,292,1 +170734583126,439,0 +170734583175,441,0 +170734583223,441,0 +170734583271,441,0 +170734583321,441,0 +170734583370,441,0 +170734583418,441,0 +170734583466,441,0 +170734583514,441,0 +170734583564,441,0 +170734583612,441,0 +170734583661,441,0 +170734583709,441,0 +170734583757,441,0 +170734583805,441,0 +170734583853,441,0 +170734583901,441,0 +170734583949,441,0 +170734583997,441,0 +170734584044,440,0 +170734584094,299,1 +170734584178,439,0 +170734584226,441,0 +170734584276,441,0 +170734584324,441,0 +170734584373,441,0 +170734584421,441,0 +170734584469,441,0 +170734584517,441,0 +170734584565,441,0 +170734584613,441,0 +170734584661,441,0 +170734584709,441,0 +170734584757,441,0 +170734584804,441,0 +170734584854,441,0 +170734584902,441,0 +170734584950,441,0 +170734584998,441,0 +170734585046,441,0 +170734585094,296,1 +170734585180,284,1 +170734585266,441,0 +170734585314,441,0 +170734585364,441,0 +170734585412,441,0 +170734585461,441,0 +170734585509,441,0 +170734585557,441,0 +170734585605,441,0 +170734585655,441,0 +170734585702,441,0 +170734585750,441,0 +170734585798,441,0 +170734585848,441,0 +170734585896,441,0 +170734585945,441,0 +170734585995,441,0 +170734586044,441,0 +170734586094,441,0 +170734586142,418,0 +170734586191,295,1 +170734586274,439,0 +170734586322,441,0 +170734586370,441,0 +170734586418,441,0 +170734586466,441,0 +170734586516,441,0 +170734586565,441,0 +170734586615,441,0 +170734586664,441,0 +170734586712,441,0 +170734586760,441,0 +170734586810,441,0 +170734586859,441,0 +170734586907,441,0 +170734586955,441,0 +170734587003,441,0 +170734587051,441,0 +170734587101,441,0 +170734587149,441,0 +170734587198,425,0 +170734587246,291,1 +170734587330,440,0 +170734587380,441,0 +170734587429,441,0 +170734587477,441,0 +170734587525,441,0 +170734587575,441,0 +170734587623,441,0 +170734587670,441,0 +170734587718,441,0 +170734587766,441,0 +170734587814,441,0 +170734587862,441,0 +170734587911,441,0 +170734587959,441,0 +170734588007,441,0 +170734588055,441,0 +170734588103,441,0 +170734588151,441,0 +170734588199,441,0 +170734588247,432,0 +170734588295,296,1 +170734588378,439,0 +170734588426,441,0 +170734588475,441,0 +170734588525,441,0 +170734588573,441,0 +170734588621,441,0 +170734588669,441,0 +170734588718,441,0 +170734588766,441,0 +170734588814,441,0 +170734588864,441,0 +170734588912,441,0 +170734588961,441,0 +170734589009,441,0 +170734589057,441,0 +170734589107,441,0 +170734589156,441,0 +170734589206,441,0 +170734589254,441,0 +170734589303,302,1 +170734589385,236,0 +170734589433,441,0 +170734589481,441,0 +170734589529,441,0 +170734589577,441,0 +170734589626,441,0 +170734589676,441,0 +170734589726,441,0 +170734589773,441,0 +170734589823,441,0 +170734589873,441,0 +170734589921,441,0 +170734589969,441,0 +170734590016,441,0 +170734590064,441,0 +170734590114,441,0 +170734590162,441,0 +170734590210,441,0 +170734590258,441,0 +170734590306,441,0 +170734590353,285,1 +170734590439,236,0 +170734590487,441,0 +170734590535,441,0 +170734590585,441,0 +170734590633,441,0 +170734590681,441,0 +170734590729,441,0 +170734590777,441,0 +170734590825,441,0 +170734590872,441,0 +170734590920,441,0 +170734590970,441,0 +170734591019,441,0 +170734591067,441,0 +170734591115,441,0 +170734591165,441,0 +170734591213,441,0 +170734591261,441,0 +170734591310,441,0 +170734591360,441,0 +170734591407,264,0 +170734591455,254,0 +170734591503,437,0 +170734591553,441,0 +170734591601,441,0 +170734591648,441,0 +170734591696,441,0 +170734591744,441,0 +170734591793,441,0 +170734591843,441,0 +170734591891,441,0 +170734591939,441,0 +170734591988,441,0 +170734592038,441,0 +170734592085,441,0 +170734592135,441,0 +170734592183,441,0 +170734592231,441,0 +170734592279,441,0 +170734592326,441,0 +170734592374,441,0 +170734592422,440,0 +170734592470,274,1 +170734592556,439,0 +170734592603,441,0 +170734592651,441,0 +170734592699,441,0 +170734592747,441,0 +170734592795,441,0 +170734592843,441,0 +170734592891,441,0 +170734592939,441,0 +170734592987,441,0 +170734593036,441,0 +170734593084,441,0 +170734593132,441,0 +170734593180,441,0 +170734593228,441,0 +170734593276,441,0 +170734593324,441,0 +170734593372,441,0 +170734593420,441,0 +170734593468,440,0 +170734593517,307,1 +170734593603,437,0 +170734593651,441,0 +170734593701,441,0 +170734593749,441,0 +170734593797,441,0 +170734593846,441,0 +170734593894,441,0 +170734593942,441,0 +170734593990,441,0 +170734594038,441,0 +170734594086,441,0 +170734594134,441,0 +170734594182,441,0 +170734594231,441,0 +170734594281,441,0 +170734594330,441,0 +170734594380,441,0 +170734594428,441,0 +170734594477,441,0 +170734594527,441,0 +170734594575,302,1 +170734594653,436,0 +170734594706,441,0 +170734594755,441,0 +170734594803,441,0 +170734594851,441,0 +170734594901,441,0 +170734594950,441,0 +170734594998,441,0 +170734595046,441,0 +170734595094,441,0 +170734595142,441,0 +170734595191,441,0 +170734595241,441,0 +170734595290,441,0 +170734595338,441,0 +170734595386,441,0 +170734595434,441,0 +170734595484,441,0 +170734595533,441,0 +170734595583,439,0 +170734595631,295,1 +170734595731,441,0 +170734595779,441,0 +170734595829,441,0 +170734595878,441,0 +170734595926,441,0 +170734595976,441,0 +170734596025,441,0 +170734596075,441,0 +170734596124,441,0 +170734596174,441,0 +170734596222,441,0 +170734596271,441,0 +170734596321,441,0 +170734596369,441,0 +170734596417,441,0 +170734596465,441,0 +170734596514,441,0 +170734596562,441,0 +170734596610,441,0 +170734596658,295,1 +170734596735,259,0 +170734596784,441,0 +170734596832,441,0 +170734596880,441,0 +170734596930,441,0 +170734596978,441,0 +170734597026,441,0 +170734597074,441,0 +170734597122,441,0 +170734597170,441,0 +170734597218,441,0 +170734597267,441,0 +170734597315,441,0 +170734597363,441,0 +170734597413,441,0 +170734597460,441,0 +170734597508,441,0 +170734597556,441,0 +170734597604,441,0 +170734597654,441,0 +170734597702,302,1 +170734597789,241,0 +170734597838,441,0 +170734597886,441,0 +170734597934,441,0 +170734597984,441,0 +170734598032,441,0 +170734598081,441,0 +170734598129,441,0 +170734598179,441,0 +170734598227,441,0 +170734598274,441,0 +170734598324,441,0 +170734598372,441,0 +170734598420,441,0 +170734598468,441,0 +170734598517,441,0 +170734598565,441,0 +170734598615,441,0 +170734598663,441,0 +170734598711,441,0 +170734598759,297,1 +170734598843,435,0 +170734598891,441,0 +170734598939,441,0 +170734598988,441,0 +170734599038,441,0 +170734599086,441,0 +170734599136,441,0 +170734599185,441,0 +170734599233,441,0 +170734599281,441,0 +170734599329,441,0 +170734599377,441,0 +170734599426,441,0 +170734599476,441,0 +170734599524,441,0 +170734599572,441,0 +170734599621,441,0 +170734599669,441,0 +170734599717,441,0 +170734599765,441,0 +170734599813,300,1 +170734599894,438,0 +170734599942,441,0 +170734599990,441,0 +170734600038,441,0 +170734600086,441,0 +170734600134,441,0 +170734600182,441,0 +170734600229,441,0 +170734600277,441,0 +170734600327,441,0 +170734600375,441,0 +170734600423,441,0 +170734600472,441,0 +170734600522,441,0 +170734600570,441,0 +170734600618,441,0 +170734600666,441,0 +170734600713,441,0 +170734600761,441,0 +170734600811,441,0 +170734600859,306,1 +170734600939,241,0 +170734600987,441,0 +170734601037,441,0 +170734601085,441,0 +170734601134,441,0 +170734601182,441,0 +170734601232,441,0 +170734601281,441,0 +170734601329,441,0 +170734601379,441,0 +170734601427,441,0 +170734601475,441,0 +170734601524,441,0 +170734601574,441,0 +170734601623,441,0 +170734601671,441,0 +170734601719,441,0 +170734601767,441,0 +170734601816,441,0 +170734601864,441,0 +170734601912,286,1 +170734602003,438,0 +170734602051,441,0 +170734602099,441,0 +170734602147,441,0 +170734602195,441,0 +170734602243,441,0 +170734602290,441,0 +170734602338,441,0 +170734602386,441,0 +170734602434,441,0 +170734602482,441,0 +170734602530,441,0 +170734602578,441,0 +170734602626,441,0 +170734602673,441,0 +170734602723,441,0 +170734602771,441,0 +170734602821,441,0 +170734602869,441,0 +170734602916,441,0 +170734602964,276,1 +170734603054,438,0 +170734603104,441,0 +170734603153,441,0 +170734603201,441,0 +170734603251,441,0 +170734603299,441,0 +170734603347,441,0 +170734603395,441,0 +170734603444,441,0 +170734603494,441,0 +170734603542,441,0 +170734603589,441,0 +170734603637,441,0 +170734603685,441,0 +170734603733,441,0 +170734603781,441,0 +170734603829,441,0 +170734603877,441,0 +170734603925,441,0 +170734603973,440,0 +170734604021,259,0 +170734604071,270,1 +170734604155,441,0 +170734604203,441,0 +170734604253,441,0 +170734604302,441,0 +170734604350,441,0 +170734604400,441,0 +170734604449,441,0 +170734604499,441,0 +170734604548,441,0 +170734604596,441,0 +170734604644,441,0 +170734604694,441,0 +170734604742,441,0 +170734604791,441,0 +170734604839,441,0 +170734604887,441,0 +170734604935,441,0 +170734604983,441,0 +170734605031,285,1 +170734605113,296,1 +170734605199,441,0 +170734605247,441,0 +170734605296,441,0 +170734605344,441,0 +170734605394,441,0 +170734605442,441,0 +170734605490,441,0 +170734605539,441,0 +170734605587,441,0 +170734605635,441,0 +170734605684,441,0 +170734605732,441,0 +170734605780,441,0 +170734605830,441,0 +170734605878,441,0 +170734605927,441,0 +170734605977,441,0 +170734606025,441,0 +170734606074,431,0 +170734606124,295,1 +170734606206,439,0 +170734606254,441,0 +170734606302,441,0 +170734606352,441,0 +170734606400,441,0 +170734606447,441,0 +170734606495,441,0 +170734606543,441,0 +170734606591,441,0 +170734606639,441,0 +170734606689,441,0 +170734606737,441,0 +170734606785,441,0 +170734606834,441,0 +170734606882,441,0 +170734606930,441,0 +170734606978,441,0 +170734607028,441,0 +170734607077,441,0 +170734607127,375,0 +170734607176,303,1 +170734607257,439,0 +170734607307,441,0 +170734607355,441,0 +170734607403,441,0 +170734607451,441,0 +170734607499,441,0 +170734607548,441,0 +170734607598,441,0 +170734607647,441,0 +170734607695,441,0 +170734607743,441,0 +170734607791,441,0 +170734607839,441,0 +170734607889,441,0 +170734607938,441,0 +170734607988,441,0 +170734608036,441,0 +170734608084,441,0 +170734608132,441,0 +170734608181,283,1 +170734608264,283,1 +170734608346,441,0 +170734608394,441,0 +170734608442,441,0 +170734608490,441,0 +170734608538,441,0 +170734608588,441,0 +170734608637,441,0 +170734608685,441,0 +170734608735,441,0 +170734608784,441,0 +170734608832,441,0 +170734608882,441,0 +170734608931,441,0 +170734608979,441,0 +170734609027,441,0 +170734609075,441,0 +170734609125,441,0 +170734609174,441,0 +170734609222,440,0 +170734609270,296,1 +170734609350,439,0 +170734609398,441,0 +170734609448,441,0 +170734609496,441,0 +170734609545,441,0 +170734609595,441,0 +170734609644,441,0 +170734609692,441,0 +170734609740,441,0 +170734609788,441,0 +170734609837,441,0 +170734609887,441,0 +170734609935,441,0 +170734609983,441,0 +170734610031,441,0 +170734610080,441,0 +170734610128,441,0 +170734610178,441,0 +170734610226,441,0 +170734610274,432,0 +170734610322,277,1 +170734610404,439,0 +170734610452,441,0 +170734610500,441,0 +170734610548,441,0 +170734610598,441,0 +170734610646,441,0 +170734610694,441,0 +170734610742,441,0 +170734610791,441,0 +170734610839,441,0 +170734610887,441,0 +170734610935,441,0 +170734610985,441,0 +170734611033,441,0 +170734611081,441,0 +170734611128,441,0 +170734611176,441,0 +170734611224,441,0 +170734611272,441,0 +170734611320,353,0 +170734611368,302,1 +170734611453,440,0 +170734611502,441,0 +170734611550,441,0 +170734611598,441,0 +170734611648,441,0 +170734611696,441,0 +170734611743,441,0 +170734611791,441,0 +170734611841,441,0 +170734611889,441,0 +170734611937,441,0 +170734611985,441,0 +170734612033,441,0 +170734612082,441,0 +170734612132,441,0 +170734612180,441,0 +170734612229,441,0 +170734612277,441,0 +170734612325,441,0 +170734612373,274,1 +170734612456,289,1 +170734612535,441,0 +170734612583,441,0 +170734612631,441,0 +170734612679,441,0 +170734612727,441,0 +170734612775,441,0 +170734612823,441,0 +170734612871,441,0 +170734612921,441,0 +170734612969,441,0 +170734613018,441,0 +170734613066,441,0 +170734613114,441,0 +170734613164,441,0 +170734613211,441,0 +170734613259,441,0 +170734613307,441,0 +170734613357,441,0 +170734613405,441,0 +170734613454,266,0 +170734613502,300,1 +170734613589,441,0 +170734613638,441,0 +170734613686,441,0 +170734613736,441,0 +170734613784,441,0 +170734613832,441,0 +170734613879,441,0 +170734613927,441,0 +170734613977,441,0 +170734614025,441,0 +170734614073,441,0 +170734614122,441,0 +170734614172,441,0 +170734614222,441,0 +170734614269,441,0 +170734614319,441,0 +170734614367,441,0 +170734614415,441,0 +170734614463,408,0 +170734614512,288,1 +170734614599,440,0 +170734614647,441,0 +170734614695,441,0 +170734614745,441,0 +170734614793,441,0 +170734614841,441,0 +170734614889,441,0 +170734614938,441,0 +170734614988,441,0 +170734615036,441,0 +170734615085,441,0 +170734615135,441,0 +170734615184,441,0 +170734615234,441,0 +170734615282,441,0 +170734615330,441,0 +170734615379,441,0 +170734615427,441,0 +170734615475,441,0 +170734615523,262,0 +170734615571,287,1 +170734615649,440,0 +170734615697,441,0 +170734615747,441,0 +170734615795,441,0 +170734615843,441,0 +170734615892,441,0 +170734615940,441,0 +170734615990,441,0 +170734616039,441,0 +170734616087,441,0 +170734616137,441,0 +170734616186,441,0 +170734616234,441,0 +170734616282,441,0 +170734616330,441,0 +170734616378,441,0 +170734616426,441,0 +170734616474,441,0 +170734616522,441,0 +170734616570,425,0 +170734616618,300,1 +170734616703,440,0 +170734616752,441,0 +170734616802,441,0 +170734616850,441,0 +170734616897,441,0 +170734616945,441,0 +170734616995,441,0 +170734617044,441,0 +170734617094,441,0 +170734617142,441,0 +170734617192,441,0 +170734617240,441,0 +170734617288,441,0 +170734617336,441,0 +170734617383,441,0 +170734617431,441,0 +170734617479,441,0 +170734617529,441,0 +170734617577,441,0 +170734617625,293,1 +170734617715,236,0 +170734617763,441,0 +170734617811,441,0 +170734617859,441,0 +170734617907,441,0 +170734617955,441,0 +170734618003,441,0 +170734618051,441,0 +170734618099,441,0 +170734618147,441,0 +170734618195,441,0 +170734618243,441,0 +170734618291,441,0 +170734618339,441,0 +170734618386,441,0 +170734618434,441,0 +170734618482,441,0 +170734618532,441,0 +170734618580,441,0 +170734618628,441,0 +170734618676,304,1 +170734618761,360,0 +170734618811,441,0 +170734618859,441,0 +170734618907,441,0 +170734618955,441,0 +170734619003,441,0 +170734619051,441,0 +170734619099,441,0 +170734619148,441,0 +170734619196,441,0 +170734619244,441,0 +170734619292,441,0 +170734619340,441,0 +170734619388,441,0 +170734619436,441,0 +170734619485,441,0 +170734619535,441,0 +170734619584,441,0 +170734619632,441,0 +170734619680,441,0 +170734619728,301,1 +170734619810,251,0 +170734619858,440,0 +170734619907,441,0 +170734619957,441,0 +170734620005,441,0 +170734620053,441,0 +170734620102,441,0 +170734620150,441,0 +170734620198,441,0 +170734620246,441,0 +170734620294,441,0 +170734620342,441,0 +170734620390,441,0 +170734620438,441,0 +170734620487,441,0 +170734620535,441,0 +170734620585,441,0 +170734620634,441,0 +170734620684,441,0 +170734620733,441,0 +170734620781,293,1 +170734620862,244,0 +170734620912,441,0 +170734620961,441,0 +170734621011,441,0 +170734621060,441,0 +170734621108,441,0 +170734621156,441,0 +170734621204,441,0 +170734621254,441,0 +170734621301,441,0 +170734621351,441,0 +170734621399,441,0 +170734621448,441,0 +170734621496,441,0 +170734621544,441,0 +170734621594,441,0 +170734621644,441,0 +170734621691,441,0 +170734621741,441,0 +170734621790,441,0 +170734621838,271,1 +170734621925,438,0 +170734621973,441,0 +170734622023,441,0 +170734622071,441,0 +170734622120,441,0 +170734622168,441,0 +170734622216,441,0 +170734622266,441,0 +170734622314,441,0 +170734622362,441,0 +170734622409,441,0 +170734622457,441,0 +170734622505,441,0 +170734622555,441,0 +170734622603,441,0 +170734622651,441,0 +170734622699,441,0 +170734622747,441,0 +170734622796,441,0 +170734622846,440,0 +170734622894,284,1 +170734622978,438,0 +170734623026,441,0 +170734623074,441,0 +170734623124,441,0 +170734623172,441,0 +170734623220,441,0 +170734623268,441,0 +170734623316,441,0 +170734623363,441,0 +170734623413,441,0 +170734623461,441,0 +170734623509,441,0 +170734623557,441,0 +170734623605,441,0 +170734623654,441,0 +170734623702,441,0 +170734623750,441,0 +170734623798,441,0 +170734623848,441,0 +170734623896,441,0 +170734623945,309,1 +170734624030,439,0 +170734624080,441,0 +170734624129,441,0 +170734624177,441,0 +170734624225,441,0 +170734624275,441,0 +170734624323,441,0 +170734624371,441,0 +170734624419,441,0 +170734624467,441,0 +170734624516,441,0 +170734624564,441,0 +170734624614,441,0 +170734624662,441,0 +170734624710,441,0 +170734624758,441,0 +170734624805,441,0 +170734624855,441,0 +170734624903,441,0 +170734624953,440,0 +170734625001,297,1 +170734625086,440,0 +170734625135,441,0 +170734625183,441,0 +170734625233,441,0 +170734625281,441,0 +170734625329,441,0 +170734625377,441,0 +170734625426,441,0 +170734625474,441,0 +170734625522,441,0 +170734625570,441,0 +170734625619,441,0 +170734625667,441,0 +170734625717,441,0 +170734625765,441,0 +170734625814,441,0 +170734625862,441,0 +170734625912,441,0 +170734625961,441,0 +170734626011,296,1 +170734626091,293,1 +170734626173,441,0 +170734626221,441,0 +170734626271,441,0 +170734626319,441,0 +170734626369,441,0 +170734626418,441,0 +170734626466,441,0 +170734626516,441,0 +170734626565,441,0 +170734626613,441,0 +170734626661,441,0 +170734626711,441,0 +170734626759,441,0 +170734626807,441,0 +170734626856,441,0 +170734626904,441,0 +170734626953,441,0 +170734627001,441,0 +170734627049,273,1 +170734627135,288,1 +170734627213,441,0 +170734627262,441,0 +170734627310,441,0 +170734627360,441,0 +170734627409,441,0 +170734627459,441,0 +170734627508,441,0 +170734627556,441,0 +170734627604,441,0 +170734627653,441,0 +170734627703,441,0 +170734627751,441,0 +170734627799,441,0 +170734627847,441,0 +170734627895,441,0 +170734627944,441,0 +170734627992,441,0 +170734628042,441,0 +170734628090,441,0 +170734628138,285,1 +170734628220,437,0 +170734628269,441,0 +170734628317,441,0 +170734628365,441,0 +170734628415,441,0 +170734628464,441,0 +170734628512,441,0 +170734628562,441,0 +170734628611,441,0 +170734628659,441,0 +170734628709,441,0 +170734628757,441,0 +170734628805,441,0 +170734628853,441,0 +170734628901,441,0 +170734628949,441,0 +170734628998,441,0 +170734629046,441,0 +170734629095,441,0 +170734629143,435,0 +170734629191,294,1 +170734629271,438,0 +170734629319,441,0 +170734629367,441,0 +170734629415,441,0 +170734629463,441,0 +170734629510,441,0 +170734629558,441,0 +170734629606,441,0 +170734629656,441,0 +170734629704,441,0 +170734629753,441,0 +170734629802,441,0 +170734629850,441,0 +170734629898,441,0 +170734629946,441,0 +170734629994,441,0 +170734630042,441,0 +170734630090,441,0 +170734630138,441,0 +170734630185,440,0 +170734630233,288,1 +170734630315,438,0 +170734630363,441,0 +170734630413,441,0 +170734630461,441,0 +170734630510,441,0 +170734630558,441,0 +170734630606,441,0 +170734630655,441,0 +170734630703,441,0 +170734630751,441,0 +170734630799,441,0 +170734630847,441,0 +170734630895,441,0 +170734630942,441,0 +170734630990,441,0 +170734631038,441,0 +170734631088,441,0 +170734631136,441,0 +170734631184,441,0 +170734631232,441,0 +170734631280,299,1 +170734631363,437,0 +170734631412,441,0 +170734631460,441,0 +170734631508,441,0 +170734631558,441,0 +170734631607,441,0 +170734631655,441,0 +170734631703,441,0 +170734631751,441,0 +170734631799,441,0 +170734631847,441,0 +170734631897,441,0 +170734631945,441,0 +170734631994,441,0 +170734632042,441,0 +170734632092,441,0 +170734632140,441,0 +170734632189,441,0 +170734632239,441,0 +170734632287,440,0 +170734632335,284,1 +170734632423,438,0 +170734632471,441,0 +170734632519,441,0 +170734632567,441,0 +170734632616,441,0 +170734632664,441,0 +170734632714,441,0 +170734632763,441,0 +170734632811,441,0 +170734632859,441,0 +170734632907,441,0 +170734632955,441,0 +170734633003,441,0 +170734633051,441,0 +170734633101,441,0 +170734633149,441,0 +170734633198,441,0 +170734633248,441,0 +170734633295,441,0 +170734633343,297,1 +170734633424,305,1 +170734633504,441,0 +170734633551,441,0 +170734633599,441,0 +170734633647,441,0 +170734633695,441,0 +170734633743,441,0 +170734633793,441,0 +170734633841,441,0 +170734633889,441,0 +170734633937,441,0 +170734633986,441,0 +170734634034,441,0 +170734634082,441,0 +170734634132,441,0 +170734634180,441,0 +170734634228,441,0 +170734634275,441,0 +170734634323,441,0 +170734634371,441,0 +170734634419,248,0 +170734634467,253,0 +170734634515,440,0 +170734634563,441,0 +170734634613,441,0 +170734634661,441,0 +170734634709,441,0 +170734634758,441,0 +170734634806,441,0 +170734634854,441,0 +170734634903,441,0 +170734634953,441,0 +170734635001,441,0 +170734635049,441,0 +170734635097,441,0 +170734635145,441,0 +170734635193,441,0 +170734635241,441,0 +170734635289,441,0 +170734635337,441,0 +170734635386,441,0 +170734635434,440,0 +170734635482,300,1 +170734635566,439,0 +170734635614,441,0 +170734635663,441,0 +170734635711,441,0 +170734635759,441,0 +170734635807,441,0 +170734635855,441,0 +170734635903,441,0 +170734635951,441,0 +170734635998,441,0 +170734636046,441,0 +170734636096,441,0 +170734636146,441,0 +170734636194,441,0 +170734636241,441,0 +170734636289,441,0 +170734636337,441,0 +170734636385,441,0 +170734636435,441,0 +170734636483,432,0 +170734636532,302,1 +170734636610,439,0 +170734636659,441,0 +170734636707,441,0 +170734636755,441,0 +170734636803,441,0 +170734636851,441,0 +170734636899,441,0 +170734636947,441,0 +170734636996,441,0 +170734637046,441,0 +170734637094,441,0 +170734637142,441,0 +170734637191,441,0 +170734637239,441,0 +170734637289,441,0 +170734637338,441,0 +170734637386,441,0 +170734637434,441,0 +170734637482,441,0 +170734637531,429,0 +170734637579,292,1 +170734637662,440,0 +170734637710,441,0 +170734637758,441,0 +170734637807,441,0 +170734637855,441,0 +170734637903,441,0 +170734637951,441,0 +170734637999,441,0 +170734638047,441,0 +170734638095,441,0 +170734638143,441,0 +170734638191,441,0 +170734638239,441,0 +170734638286,441,0 +170734638336,441,0 +170734638384,441,0 +170734638432,441,0 +170734638479,441,0 +170734638529,441,0 +170734638578,440,0 +170734638626,303,1 +170734638707,438,0 +170734638755,441,0 +170734638803,441,0 +170734638851,441,0 +170734638899,441,0 +170734638947,441,0 +170734638995,441,0 +170734639044,441,0 +170734639092,441,0 +170734639141,441,0 +170734639191,441,0 +170734639239,441,0 +170734639287,441,0 +170734639336,441,0 +170734639384,441,0 +170734639432,441,0 +170734639480,441,0 +170734639529,441,0 +170734639577,441,0 +170734639627,440,0 +170734639675,297,1 +170734639758,440,0 +170734639806,441,0 +170734639856,441,0 +170734639904,441,0 +170734639952,441,0 +170734640000,441,0 +170734640048,441,0 +170734640096,441,0 +170734640143,441,0 +170734640193,441,0 +170734640241,441,0 +170734640289,441,0 +170734640337,441,0 +170734640385,441,0 +170734640434,441,0 +170734640482,441,0 +170734640530,441,0 +170734640579,441,0 +170734640627,441,0 +170734640675,436,0 +170734640723,303,1 +170734640805,439,0 +170734640854,441,0 +170734640902,441,0 +170734640952,441,0 +170734640999,441,0 +170734641047,441,0 +170734641097,441,0 +170734641145,441,0 +170734641194,441,0 +170734641242,441,0 +170734641290,441,0 +170734641338,441,0 +170734641386,441,0 +170734641434,441,0 +170734641481,441,0 +170734641531,441,0 +170734641579,441,0 +170734641627,441,0 +170734641675,441,0 +170734641722,432,0 +170734641770,301,1 +170734641851,438,0 +170734641899,441,0 +170734641947,441,0 +170734641997,441,0 +170734642044,441,0 +170734642092,441,0 +170734642142,441,0 +170734642190,441,0 +170734642239,441,0 +170734642287,441,0 +170734642335,441,0 +170734642383,441,0 +170734642431,441,0 +170734642479,441,0 +170734642527,441,0 +170734642576,441,0 +170734642625,441,0 +170734642673,441,0 +170734642723,441,0 +170734642772,436,0 +170734642820,288,1 +170734642906,439,0 +170734642956,441,0 +170734643004,441,0 +170734643052,441,0 +170734643100,441,0 +170734643150,441,0 +170734643199,441,0 +170734643247,441,0 +170734643295,441,0 +170734643342,441,0 +170734643390,441,0 +170734643438,441,0 +170734643486,441,0 +170734643534,441,0 +170734643582,441,0 +170734643630,441,0 +170734643678,441,0 +170734643725,441,0 +170734643775,441,0 +170734643824,280,1 +170734643909,266,0 +170734643957,440,0 +170734644005,441,0 +170734644053,441,0 +170734644101,441,0 +170734644149,441,0 +170734644197,441,0 +170734644246,441,0 +170734644296,441,0 +170734644344,441,0 +170734644393,441,0 +170734644441,441,0 +170734644489,441,0 +170734644537,441,0 +170734644585,441,0 +170734644633,441,0 +170734644681,441,0 +170734644731,441,0 +170734644780,441,0 +170734644830,441,0 +170734644878,281,1 +170734644958,301,1 +170734645041,441,0 +170734645089,441,0 +170734645137,441,0 +170734645185,441,0 +170734645233,441,0 +170734645282,441,0 +170734645330,441,0 +170734645378,441,0 +170734645428,441,0 +170734645476,441,0 +170734645525,441,0 +170734645573,441,0 +170734645621,441,0 +170734645669,441,0 +170734645718,441,0 +170734645766,441,0 +170734645814,441,0 +170734645862,441,0 +170734645910,440,0 +170734645960,294,1 +170734646036,437,0 +170734646084,441,0 +170734646132,441,0 +170734646180,441,0 +170734646230,441,0 +170734646279,441,0 +170734646327,441,0 +170734646377,441,0 +170734646426,441,0 +170734646476,441,0 +170734646524,441,0 +170734646573,441,0 +170734646621,441,0 +170734646671,441,0 +170734646719,441,0 +170734646767,441,0 +170734646815,441,0 +170734646864,441,0 +170734646914,441,0 +170734646963,440,0 +170734647011,300,1 +170734647089,437,0 +170734647139,441,0 +170734647187,441,0 +170734647235,441,0 +170734647283,441,0 +170734647331,441,0 +170734647379,441,0 +170734647428,441,0 +170734647476,441,0 +170734647524,441,0 +170734647572,441,0 +170734647620,441,0 +170734647668,441,0 +170734647717,441,0 +170734647766,441,0 +170734647816,441,0 +170734647864,441,0 +170734647912,441,0 +170734647960,441,0 +170734648008,440,0 +170734648056,300,1 +170734648138,438,0 +170734648188,441,0 +170734648237,441,0 +170734648285,441,0 +170734648335,441,0 +170734648384,441,0 +170734648432,441,0 +170734648480,441,0 +170734648528,441,0 +170734648576,441,0 +170734648624,441,0 +170734648672,441,0 +170734648722,441,0 +170734648771,441,0 +170734648819,441,0 +170734648867,441,0 +170734648915,441,0 +170734648963,441,0 +170734649012,441,0 +170734649060,438,0 +170734649108,300,1 +170734649189,439,0 +170734649236,441,0 +170734649284,441,0 +170734649334,441,0 +170734649382,441,0 +170734649430,441,0 +170734649478,441,0 +170734649526,441,0 +170734649573,441,0 +170734649621,441,0 +170734649669,441,0 +170734649717,441,0 +170734649765,441,0 +170734649813,441,0 +170734649861,441,0 +170734649909,441,0 +170734649957,441,0 +170734650004,441,0 +170734650052,441,0 +170734650100,440,0 +170734650148,296,1 +170734650229,437,0 +170734650277,441,0 +170734650326,441,0 +170734650374,441,0 +170734650424,441,0 +170734650472,441,0 +170734650520,441,0 +170734650567,441,0 +170734650615,441,0 +170734650663,441,0 +170734650713,441,0 +170734650762,441,0 +170734650810,441,0 +170734650858,441,0 +170734650906,441,0 +170734650954,441,0 +170734651002,441,0 +170734651050,441,0 +170734651099,441,0 +170734651149,440,0 +170734651199,306,1 +170734651279,437,0 +170734651327,441,0 +170734651377,441,0 +170734651426,441,0 +170734651476,441,0 +170734651525,441,0 +170734651573,441,0 +170734651623,441,0 +170734651672,441,0 +170734651720,441,0 +170734651768,441,0 +170734651816,441,0 +170734651864,441,0 +170734651913,441,0 +170734651961,441,0 +170734652011,441,0 +170734652060,441,0 +170734652110,441,0 +170734652158,441,0 +170734652206,315,0 +170734652254,301,1 +170734652330,438,0 +170734652378,441,0 +170734652426,441,0 +170734652475,441,0 +170734652524,441,0 +170734652572,441,0 +170734652620,441,0 +170734652668,441,0 +170734652716,441,0 +170734652764,441,0 +170734652814,441,0 +170734652862,441,0 +170734652910,441,0 +170734652958,441,0 +170734653006,441,0 +170734653054,441,0 +170734653102,441,0 +170734653150,441,0 +170734653198,441,0 +170734653245,441,0 +170734653295,277,1 +170734653384,439,0 +170734653432,441,0 +170734653480,441,0 +170734653528,441,0 +170734653577,441,0 +170734653625,441,0 +170734653673,441,0 +170734653721,441,0 +170734653771,441,0 +170734653820,441,0 +170734653868,441,0 +170734653916,441,0 +170734653966,441,0 +170734654014,441,0 +170734654063,441,0 +170734654111,441,0 +170734654161,441,0 +170734654209,441,0 +170734654257,441,0 +170734654306,421,0 +170734654354,298,1 +170734654440,439,0 +170734654490,441,0 +170734654538,441,0 +170734654586,441,0 +170734654634,441,0 +170734654682,441,0 +170734654731,441,0 +170734654781,441,0 +170734654830,441,0 +170734654878,441,0 +170734654926,441,0 +170734654976,441,0 +170734655024,441,0 +170734655072,441,0 +170734655120,441,0 +170734655167,441,0 +170734655215,441,0 +170734655265,441,0 +170734655313,441,0 +170734655361,302,1 +170734655442,281,1 +170734655530,441,0 +170734655578,441,0 +170734655626,441,0 +170734655674,441,0 +170734655723,441,0 +170734655771,441,0 +170734655821,441,0 +170734655870,441,0 +170734655918,441,0 +170734655966,441,0 +170734656014,441,0 +170734656064,441,0 +170734656112,441,0 +170734656160,441,0 +170734656209,441,0 +170734656259,441,0 +170734656307,441,0 +170734656354,441,0 +170734656404,288,1 +170734656487,263,0 +170734656535,440,0 +170734656583,441,0 +170734656631,441,0 +170734656679,441,0 +170734656726,441,0 +170734656774,441,0 +170734656822,441,0 +170734656872,441,0 +170734656920,441,0 +170734656967,441,0 +170734657015,441,0 +170734657065,441,0 +170734657113,441,0 +170734657161,441,0 +170734657209,441,0 +170734657258,441,0 +170734657308,441,0 +170734657356,441,0 +170734657405,441,0 +170734657455,286,1 +170734657535,287,1 +170734657615,441,0 +170734657663,441,0 +170734657712,441,0 +170734657760,441,0 +170734657808,441,0 +170734657856,441,0 +170734657904,441,0 +170734657952,441,0 +170734658000,441,0 +170734658050,441,0 +170734658098,441,0 +170734658147,441,0 +170734658197,441,0 +170734658246,441,0 +170734658294,441,0 +170734658344,441,0 +170734658392,441,0 +170734658440,441,0 +170734658488,439,0 +170734658535,296,1 +170734658613,437,0 +170734658663,441,0 +170734658711,441,0 +170734658759,441,0 +170734658806,441,0 +170734658856,441,0 +170734658906,441,0 +170734658955,441,0 +170734659003,441,0 +170734659051,441,0 +170734659100,441,0 +170734659148,441,0 +170734659196,441,0 +170734659244,441,0 +170734659294,441,0 +170734659342,441,0 +170734659390,441,0 +170734659439,441,0 +170734659487,441,0 +170734659535,440,0 +170734659585,295,1 +170734659667,438,0 +170734659715,441,0 +170734659763,441,0 +170734659812,441,0 +170734659862,441,0 +170734659910,441,0 +170734659958,441,0 +170734660005,441,0 +170734660055,441,0 +170734660103,441,0 +170734660151,441,0 +170734660199,441,0 +170734660247,441,0 +170734660296,441,0 +170734660346,441,0 +170734660394,441,0 +170734660442,441,0 +170734660491,441,0 +170734660541,441,0 +170734660589,440,0 +170734660638,295,1 +170734660716,437,0 +170734660764,441,0 +170734660812,441,0 +170734660860,441,0 +170734660908,441,0 +170734660956,441,0 +170734661004,441,0 +170734661053,441,0 +170734661101,441,0 +170734661151,441,0 +170734661200,441,0 +170734661248,441,0 +170734661298,441,0 +170734661347,441,0 +170734661395,441,0 +170734661445,441,0 +170734661493,441,0 +170734661542,441,0 +170734661592,441,0 +170734661641,437,0 +170734661689,292,1 +170734661769,438,0 +170734661817,441,0 +170734661864,441,0 +170734661912,441,0 +170734661962,441,0 +170734662010,441,0 +170734662058,441,0 +170734662107,441,0 +170734662157,441,0 +170734662206,441,0 +170734662256,441,0 +170734662304,441,0 +170734662352,441,0 +170734662400,441,0 +170734662449,441,0 +170734662497,441,0 +170734662547,441,0 +170734662595,441,0 +170734662643,441,0 +170734662691,441,0 +170734662739,441,0 +170734662788,441,0 +170734662836,441,0 +170734662886,441,0 +170734662935,441,0 +170734662983,441,0 +170734663031,441,0 +170734663081,441,0 +170734663129,441,0 +170734663177,441,0 +170734663225,299,1 +170734663309,243,0 +170734663359,441,0 +170734663408,441,0 +170734663456,441,0 +170734663506,441,0 +170734663553,441,0 +170734663601,441,0 +170734663649,441,0 +170734663697,441,0 +170734663745,441,0 +170734663793,441,0 +170734663841,441,0 +170734663891,441,0 +170734663939,441,0 +170734663987,441,0 +170734664034,441,0 +170734664084,441,0 +170734664133,441,0 +170734664182,441,0 +170734664231,441,0 +170734664281,298,1 +170734664368,435,0 +170734664418,441,0 +170734664466,441,0 +170734664514,441,0 +170734664561,441,0 +170734664611,441,0 +170734664659,441,0 +170734664707,441,0 +170734664755,441,0 +170734664803,441,0 +170734664851,441,0 +170734664899,441,0 +170734664947,441,0 +170734664995,441,0 +170734665044,441,0 +170734665092,441,0 +170734665140,441,0 +170734665188,441,0 +170734665238,441,0 +170734665287,440,0 +170734665337,293,1 +170734665422,438,0 +170734665472,441,0 +170734665520,441,0 +170734665568,441,0 +170734665616,441,0 +170734665665,441,0 +170734665713,441,0 +170734665761,441,0 +170734665811,441,0 +170734665858,441,0 +170734665906,441,0 +170734665956,441,0 +170734666004,441,0 +170734666054,441,0 +170734666102,441,0 +170734666150,441,0 +170734666199,441,0 +170734666248,441,0 +170734666296,441,0 +170734666346,440,0 +170734666395,298,1 +170734666480,437,0 +170734666528,441,0 +170734666576,441,0 +170734666625,441,0 +170734666673,441,0 +170734666721,441,0 +170734666769,441,0 +170734666817,441,0 +170734666865,441,0 +170734666913,441,0 +170734666961,441,0 +170734667009,441,0 +170734667057,441,0 +170734667104,441,0 +170734667152,441,0 +170734667200,441,0 +170734667248,441,0 +170734667296,441,0 +170734667344,441,0 +170734667392,440,0 +170734667440,294,1 +170734667520,436,0 +170734667568,441,0 +170734667616,441,0 +170734667664,441,0 +170734667712,441,0 +170734667761,441,0 +170734667809,441,0 +170734667857,441,0 +170734667905,441,0 +170734667953,441,0 +170734668001,441,0 +170734668049,441,0 +170734668097,441,0 +170734668145,441,0 +170734668193,441,0 +170734668241,441,0 +170734668289,441,0 +170734668337,441,0 +170734668384,441,0 +170734668432,441,0 +170734668480,294,1 +170734668560,428,0 +170734668608,441,0 +170734668657,441,0 +170734668705,441,0 +170734668753,441,0 +170734668801,441,0 +170734668849,441,0 +170734668897,441,0 +170734668945,441,0 +170734668992,441,0 +170734669040,441,0 +170734669088,441,0 +170734669136,441,0 +170734669184,441,0 +170734669232,441,0 +170734669280,441,0 +170734669329,441,0 +170734669379,441,0 +170734669427,441,0 +170734669475,441,0 +170734669523,300,1 +170734669604,434,0 +170734669654,441,0 +170734669702,441,0 +170734669751,441,0 +170734669799,441,0 +170734669847,441,0 +170734669895,441,0 +170734669945,441,0 +170734669995,441,0 +170734670043,441,0 +170734670091,441,0 +170734670140,441,0 +170734670188,441,0 +170734670238,441,0 +170734670287,441,0 +170734670335,441,0 +170734670385,441,0 +170734670434,441,0 +170734670482,441,0 +170734670530,440,0 +170734670578,293,1 +170734670660,436,0 +170734670708,441,0 +170734670756,441,0 +170734670804,441,0 +170734670852,441,0 +170734670901,441,0 +170734670949,441,0 +170734670997,441,0 +170734671047,441,0 +170734671095,441,0 +170734671142,441,0 +170734671190,441,0 +170734671238,441,0 +170734671286,441,0 +170734671334,441,0 +170734671382,441,0 +170734671430,441,0 +170734671478,441,0 +170734671526,441,0 +170734671574,440,0 +170734671622,289,1 +170734671703,435,0 +170734671751,441,0 +170734671800,441,0 +170734671848,441,0 +170734671896,441,0 +170734671945,441,0 +170734671993,441,0 +170734672041,441,0 +170734672089,441,0 +170734672139,441,0 +170734672188,441,0 +170734672236,441,0 +170734672286,441,0 +170734672335,441,0 +170734672385,441,0 +170734672433,441,0 +170734672482,441,0 +170734672530,441,0 +170734672578,441,0 +170734672626,440,0 +170734672674,302,1 +170734672754,437,0 +170734672804,441,0 +170734672852,441,0 +170734672901,441,0 +170734672949,441,0 +170734672997,441,0 +170734673045,441,0 +170734673095,441,0 +170734673144,441,0 +170734673194,441,0 +170734673242,441,0 +170734673290,441,0 +170734673338,441,0 +170734673386,441,0 +170734673434,441,0 +170734673483,441,0 +170734673531,441,0 +170734673579,441,0 +170734673629,441,0 +170734673677,441,0 +170734673724,302,1 +170734673800,433,0 +170734673848,441,0 +170734673896,441,0 +170734673945,441,0 +170734673995,441,0 +170734674043,441,0 +170734674091,441,0 +170734674140,441,0 +170734674190,441,0 +170734674239,441,0 +170734674287,441,0 +170734674337,441,0 +170734674385,441,0 +170734674433,441,0 +170734674481,441,0 +170734674530,441,0 +170734674578,441,0 +170734674626,441,0 +170734674674,441,0 +170734674722,440,0 +170734674770,293,1 +170734674852,435,0 +170734674900,441,0 +170734674948,441,0 +170734674996,441,0 +170734675043,441,0 +170734675093,441,0 +170734675142,441,0 +170734675190,441,0 +170734675238,441,0 +170734675288,441,0 +170734675335,441,0 +170734675383,441,0 +170734675431,441,0 +170734675479,441,0 +170734675527,441,0 +170734675575,441,0 +170734675623,441,0 +170734675671,441,0 +170734675720,441,0 +170734675768,440,0 +170734675816,299,1 +170734675898,434,0 +170734675947,441,0 +170734675995,441,0 +170734676045,441,0 +170734676093,441,0 +170734676142,441,0 +170734676192,441,0 +170734676240,441,0 +170734676288,441,0 +170734676336,441,0 +170734676384,441,0 +170734676432,441,0 +170734676481,441,0 +170734676531,441,0 +170734676579,441,0 +170734676628,441,0 +170734676676,441,0 +170734676724,441,0 +170734676772,441,0 +170734676822,440,0 +170734676870,304,1 +170734676947,436,0 +170734676995,441,0 +170734677044,441,0 +170734677094,441,0 +170734677142,441,0 +170734677192,441,0 +170734677240,441,0 +170734677289,441,0 +170734677337,441,0 +170734677385,441,0 +170734677433,441,0 +170734677482,441,0 +170734677530,441,0 +170734677578,441,0 +170734677626,441,0 +170734677674,441,0 +170734677724,441,0 +170734677772,441,0 +170734677820,441,0 +170734677868,440,0 +170734677916,303,1 +170734677996,436,0 +170734678044,441,0 +170734678094,441,0 +170734678142,441,0 +170734678190,441,0 +170734678238,441,0 +170734678287,441,0 +170734678337,441,0 +170734678386,441,0 +170734678434,441,0 +170734678482,441,0 +170734678530,441,0 +170734678578,441,0 +170734678626,441,0 +170734678673,441,0 +170734678721,441,0 +170734678771,441,0 +170734678819,441,0 +170734678867,441,0 +170734678914,441,0 +170734678962,293,1 +170734679047,437,0 +170734679095,441,0 +170734679144,441,0 +170734679192,441,0 +170734679242,441,0 +170734679291,441,0 +170734679341,441,0 +170734679389,441,0 +170734679437,441,0 +170734679485,441,0 +170734679534,441,0 +170734679582,441,0 +170734679630,441,0 +170734679678,441,0 +170734679728,441,0 +170734679776,441,0 +170734679824,441,0 +170734679871,441,0 +170734679921,441,0 +170734679969,440,0 +170734680019,274,1 diff --git a/laser_value/0208-09.csv b/laser_value/0208-09.csv new file mode 100644 index 0000000..e4d2995 --- /dev/null +++ b/laser_value/0208-09.csv @@ -0,0 +1,7172 @@ +timestamp,laser_value,event +170734680101,438,0 +170734680149,441,0 +170734680197,441,0 +170734680246,441,0 +170734680296,441,0 +170734680345,441,0 +170734680393,441,0 +170734680441,441,0 +170734680489,441,0 +170734680537,441,0 +170734680585,441,0 +170734680635,441,0 +170734680683,441,0 +170734680732,441,0 +170734680780,441,0 +170734680828,441,0 +170734680876,441,0 +170734680924,441,0 +170734680972,441,0 +170734681021,434,0 +170734681069,313,0 +170734681117,276,1 +170734681200,441,0 +170734681248,441,0 +170734681296,441,0 +170734681344,441,0 +170734681393,441,0 +170734681441,441,0 +170734681489,441,0 +170734681537,441,0 +170734681585,441,0 +170734681634,441,0 +170734681682,441,0 +170734681730,441,0 +170734681778,441,0 +170734681826,441,0 +170734681874,441,0 +170734681922,441,0 +170734681969,441,0 +170734682017,441,0 +170734682065,440,0 +170734682115,294,1 +170734682196,437,0 +170734682244,441,0 +170734682293,441,0 +170734682343,441,0 +170734682391,441,0 +170734682440,441,0 +170734682488,441,0 +170734682536,441,0 +170734682584,441,0 +170734682632,441,0 +170734682681,441,0 +170734682729,441,0 +170734682777,441,0 +170734682825,441,0 +170734682874,441,0 +170734682922,441,0 +170734682970,441,0 +170734683018,441,0 +170734683066,441,0 +170734683114,441,0 +170734683162,292,1 +170734683244,434,0 +170734683292,441,0 +170734683342,441,0 +170734683391,441,0 +170734683439,441,0 +170734683487,441,0 +170734683535,441,0 +170734683583,441,0 +170734683630,441,0 +170734683680,441,0 +170734683729,441,0 +170734683777,441,0 +170734683825,441,0 +170734683873,441,0 +170734683921,441,0 +170734683969,441,0 +170734684017,441,0 +170734684064,441,0 +170734684112,441,0 +170734684162,440,0 +170734684210,290,1 +170734684294,437,0 +170734684342,441,0 +170734684390,441,0 +170734684438,441,0 +170734684485,441,0 +170734684533,441,0 +170734684581,441,0 +170734684631,441,0 +170734684679,441,0 +170734684727,441,0 +170734684774,441,0 +170734684822,441,0 +170734684872,441,0 +170734684922,441,0 +170734684969,441,0 +170734685017,441,0 +170734685067,441,0 +170734685115,441,0 +170734685163,441,0 +170734685211,440,0 +170734685259,303,1 +170734685348,438,0 +170734685397,441,0 +170734685445,441,0 +170734685493,441,0 +170734685541,441,0 +170734685589,441,0 +170734685637,441,0 +170734685685,441,0 +170734685733,441,0 +170734685781,441,0 +170734685829,441,0 +170734685877,441,0 +170734685925,441,0 +170734685973,441,0 +170734686020,441,0 +170734686068,441,0 +170734686116,441,0 +170734686164,441,0 +170734686212,441,0 +170734686261,440,0 +170734686309,297,1 +170734686393,437,0 +170734686441,441,0 +170734686489,441,0 +170734686537,441,0 +170734686585,441,0 +170734686633,441,0 +170734686681,441,0 +170734686728,441,0 +170734686776,441,0 +170734686824,441,0 +170734686872,441,0 +170734686920,441,0 +170734686968,441,0 +170734687016,441,0 +170734687064,441,0 +170734687111,441,0 +170734687159,441,0 +170734687207,441,0 +170734687257,441,0 +170734687305,440,0 +170734687353,294,1 +170734687439,438,0 +170734687487,441,0 +170734687535,441,0 +170734687584,441,0 +170734687634,441,0 +170734687682,441,0 +170734687731,441,0 +170734687779,441,0 +170734687827,441,0 +170734687877,441,0 +170734687925,441,0 +170734687973,441,0 +170734688021,441,0 +170734688070,441,0 +170734688118,441,0 +170734688168,441,0 +170734688217,441,0 +170734688267,441,0 +170734688315,441,0 +170734688363,381,0 +170734688412,296,1 +170734688492,438,0 +170734688542,441,0 +170734688590,441,0 +170734688639,441,0 +170734688689,441,0 +170734688738,441,0 +170734688786,441,0 +170734688834,441,0 +170734688882,441,0 +170734688931,441,0 +170734688979,441,0 +170734689029,441,0 +170734689077,441,0 +170734689125,441,0 +170734689173,441,0 +170734689222,441,0 +170734689270,441,0 +170734689320,441,0 +170734689369,441,0 +170734689417,439,0 +170734689465,307,1 +170734689547,438,0 +170734689595,441,0 +170734689642,441,0 +170734689690,441,0 +170734689740,441,0 +170734689788,441,0 +170734689836,441,0 +170734689884,441,0 +170734689932,441,0 +170734689980,441,0 +170734690029,441,0 +170734690077,441,0 +170734690125,441,0 +170734690175,441,0 +170734690223,441,0 +170734690271,441,0 +170734690319,441,0 +170734690367,441,0 +170734690415,441,0 +170734690462,435,0 +170734690512,298,1 +170734690596,438,0 +170734690645,441,0 +170734690695,441,0 +170734690743,441,0 +170734690791,441,0 +170734690839,441,0 +170734690887,441,0 +170734690936,441,0 +170734690986,441,0 +170734691035,441,0 +170734691083,441,0 +170734691133,441,0 +170734691181,441,0 +170734691229,441,0 +170734691277,441,0 +170734691326,441,0 +170734691374,441,0 +170734691423,441,0 +170734691471,441,0 +170734691519,292,1 +170734691603,254,0 +170734691651,440,0 +170734691701,441,0 +170734691749,441,0 +170734691797,441,0 +170734691845,441,0 +170734691893,441,0 +170734691942,441,0 +170734691992,441,0 +170734692041,441,0 +170734692091,441,0 +170734692139,441,0 +170734692187,441,0 +170734692235,441,0 +170734692284,441,0 +170734692332,441,0 +170734692380,441,0 +170734692428,441,0 +170734692478,441,0 +170734692527,440,0 +170734692575,309,1 +170734692658,249,0 +170734692708,440,0 +170734692756,441,0 +170734692804,441,0 +170734692852,441,0 +170734692900,441,0 +170734692948,441,0 +170734692996,441,0 +170734693044,441,0 +170734693092,441,0 +170734693139,441,0 +170734693189,441,0 +170734693238,441,0 +170734693286,441,0 +170734693334,441,0 +170734693382,441,0 +170734693430,441,0 +170734693478,441,0 +170734693528,441,0 +170734693576,441,0 +170734693624,283,1 +170734693702,300,1 +170734693782,441,0 +170734693830,441,0 +170734693878,441,0 +170734693928,441,0 +170734693976,441,0 +170734694024,441,0 +170734694072,441,0 +170734694120,441,0 +170734694167,441,0 +170734694215,441,0 +170734694263,441,0 +170734694311,441,0 +170734694359,441,0 +170734694407,441,0 +170734694455,441,0 +170734694503,441,0 +170734694550,441,0 +170734694598,441,0 +170734694646,438,0 +170734694696,290,1 +170734694778,438,0 +170734694826,441,0 +170734694874,441,0 +170734694922,441,0 +170734694970,441,0 +170734695018,441,0 +170734695065,441,0 +170734695113,441,0 +170734695163,441,0 +170734695211,441,0 +170734695258,441,0 +170734695306,441,0 +170734695354,441,0 +170734695402,441,0 +170734695450,441,0 +170734695500,441,0 +170734695548,441,0 +170734695596,441,0 +170734695643,441,0 +170734695691,440,0 +170734695739,284,1 +170734695823,436,0 +170734695871,441,0 +170734695921,441,0 +170734695968,441,0 +170734696018,441,0 +170734696066,441,0 +170734696115,441,0 +170734696163,441,0 +170734696211,441,0 +170734696261,441,0 +170734696309,441,0 +170734696357,441,0 +170734696405,441,0 +170734696454,441,0 +170734696504,441,0 +170734696552,441,0 +170734696601,441,0 +170734696651,441,0 +170734696700,441,0 +170734696748,439,0 +170734696796,290,1 +170734696873,437,0 +170734696923,441,0 +170734696971,441,0 +170734697019,441,0 +170734697067,441,0 +170734697115,441,0 +170734697163,441,0 +170734697211,441,0 +170734697259,441,0 +170734697308,441,0 +170734697356,441,0 +170734697404,441,0 +170734697452,441,0 +170734697500,441,0 +170734697549,441,0 +170734697597,441,0 +170734697645,441,0 +170734697693,441,0 +170734697743,441,0 +170734697792,440,0 +170734697840,299,1 +170734697919,435,0 +170734697967,441,0 +170734698015,441,0 +170734698063,441,0 +170734698111,441,0 +170734698161,441,0 +170734698209,441,0 +170734698257,441,0 +170734698306,441,0 +170734698356,441,0 +170734698405,441,0 +170734698455,441,0 +170734698503,441,0 +170734698552,441,0 +170734698602,441,0 +170734698650,441,0 +170734698699,441,0 +170734698747,441,0 +170734698795,441,0 +170734698845,440,0 +170734698893,307,1 +170734698980,436,0 +170734699027,441,0 +170734699075,441,0 +170734699123,441,0 +170734699171,441,0 +170734699219,441,0 +170734699269,441,0 +170734699317,441,0 +170734699366,441,0 +170734699416,441,0 +170734699465,441,0 +170734699513,441,0 +170734699561,441,0 +170734699609,441,0 +170734699657,441,0 +170734699705,441,0 +170734699753,441,0 +170734699802,441,0 +170734699852,441,0 +170734699900,276,1 +170734699985,298,1 +170734700067,441,0 +170734700115,441,0 +170734700162,441,0 +170734700210,441,0 +170734700258,441,0 +170734700306,441,0 +170734700354,441,0 +170734700404,441,0 +170734700452,441,0 +170734700500,441,0 +170734700549,441,0 +170734700597,441,0 +170734700646,441,0 +170734700694,441,0 +170734700742,441,0 +170734700790,441,0 +170734700838,441,0 +170734700886,441,0 +170734700936,440,0 +170734700983,285,1 +170734701062,436,0 +170734701110,441,0 +170734701158,441,0 +170734701206,441,0 +170734701254,441,0 +170734701302,441,0 +170734701350,441,0 +170734701398,441,0 +170734701445,441,0 +170734701493,441,0 +170734701541,441,0 +170734701589,441,0 +170734701639,441,0 +170734701687,441,0 +170734701736,441,0 +170734701784,441,0 +170734701834,441,0 +170734701883,441,0 +170734701931,441,0 +170734701979,440,0 +170734702027,290,1 +170734702109,437,0 +170734702159,441,0 +170734702208,441,0 +170734702256,441,0 +170734702304,441,0 +170734702352,441,0 +170734702402,441,0 +170734702449,441,0 +170734702497,441,0 +170734702545,441,0 +170734702595,441,0 +170734702645,441,0 +170734702694,441,0 +170734702742,441,0 +170734702790,441,0 +170734702838,441,0 +170734702886,441,0 +170734702934,441,0 +170734702983,441,0 +170734703031,315,0 +170734703080,305,1 +170734703163,438,0 +170734703211,441,0 +170734703258,441,0 +170734703306,441,0 +170734703354,441,0 +170734703402,441,0 +170734703450,441,0 +170734703498,441,0 +170734703546,441,0 +170734703594,441,0 +170734703642,441,0 +170734703692,441,0 +170734703740,441,0 +170734703788,441,0 +170734703837,441,0 +170734703887,441,0 +170734703936,441,0 +170734703986,441,0 +170734704035,441,0 +170734704083,440,0 +170734704131,288,1 +170734704219,438,0 +170734704267,441,0 +170734704315,441,0 +170734704365,441,0 +170734704414,441,0 +170734704462,441,0 +170734704512,441,0 +170734704561,441,0 +170734704609,441,0 +170734704657,441,0 +170734704705,441,0 +170734704753,441,0 +170734704801,441,0 +170734704849,441,0 +170734704897,441,0 +170734704946,441,0 +170734704995,441,0 +170734705045,441,0 +170734705094,441,0 +170734705142,435,0 +170734705190,294,1 +170734705274,438,0 +170734705324,441,0 +170734705371,441,0 +170734705419,441,0 +170734705469,441,0 +170734705519,441,0 +170734705566,441,0 +170734705614,441,0 +170734705664,441,0 +170734705712,441,0 +170734705760,441,0 +170734705808,441,0 +170734705856,441,0 +170734705905,441,0 +170734705955,441,0 +170734706003,441,0 +170734706051,441,0 +170734706099,441,0 +170734706147,441,0 +170734706195,289,1 +170734706275,268,0 +170734706323,440,0 +170734706372,441,0 +170734706420,441,0 +170734706470,441,0 +170734706519,441,0 +170734706567,441,0 +170734706615,441,0 +170734706663,441,0 +170734706711,441,0 +170734706759,441,0 +170734706807,441,0 +170734706857,441,0 +170734706905,441,0 +170734706953,441,0 +170734707002,441,0 +170734707050,441,0 +170734707098,441,0 +170734707146,441,0 +170734707194,441,0 +170734707242,291,1 +170734707326,287,1 +170734707407,441,0 +170734707455,441,0 +170734707503,441,0 +170734707551,441,0 +170734707600,441,0 +170734707648,441,0 +170734707698,441,0 +170734707745,441,0 +170734707795,441,0 +170734707843,441,0 +170734707891,441,0 +170734707940,441,0 +170734707990,441,0 +170734708040,441,0 +170734708088,441,0 +170734708135,441,0 +170734708183,441,0 +170734708231,441,0 +170734708279,440,0 +170734708327,288,1 +170734708407,437,0 +170734708455,441,0 +170734708503,441,0 +170734708551,441,0 +170734708599,441,0 +170734708648,441,0 +170734708698,441,0 +170734708746,441,0 +170734708794,441,0 +170734708842,441,0 +170734708889,441,0 +170734708937,441,0 +170734708985,441,0 +170734709033,441,0 +170734709081,441,0 +170734709129,441,0 +170734709177,441,0 +170734709225,441,0 +170734709273,441,0 +170734709322,440,0 +170734709370,289,1 +170734709452,438,0 +170734709500,441,0 +170734709548,441,0 +170734709596,441,0 +170734709645,441,0 +170734709693,441,0 +170734709741,441,0 +170734709791,441,0 +170734709840,441,0 +170734709888,441,0 +170734709936,441,0 +170734709984,441,0 +170734710032,441,0 +170734710081,441,0 +170734710129,441,0 +170734710177,441,0 +170734710225,441,0 +170734710275,441,0 +170734710323,441,0 +170734710370,439,0 +170734710418,292,1 +170734710502,437,0 +170734710550,441,0 +170734710598,441,0 +170734710646,441,0 +170734710694,441,0 +170734710742,441,0 +170734710790,441,0 +170734710840,441,0 +170734710889,441,0 +170734710939,441,0 +170734710987,441,0 +170734711035,441,0 +170734711083,441,0 +170734711131,441,0 +170734711179,441,0 +170734711228,441,0 +170734711276,441,0 +170734711326,441,0 +170734711373,441,0 +170734711421,440,0 +170734711469,267,0 +170734711517,296,1 +170734711600,441,0 +170734711648,441,0 +170734711696,441,0 +170734711744,441,0 +170734711792,441,0 +170734711840,441,0 +170734711888,441,0 +170734711937,441,0 +170734711985,441,0 +170734712035,441,0 +170734712083,441,0 +170734712131,441,0 +170734712180,441,0 +170734712229,441,0 +170734712277,441,0 +170734712325,441,0 +170734712373,441,0 +170734712421,441,0 +170734712470,440,0 +170734712518,290,1 +170734712598,435,0 +170734712651,441,0 +170734712699,441,0 +170734712747,441,0 +170734712794,441,0 +170734712842,441,0 +170734712890,441,0 +170734712938,441,0 +170734712986,441,0 +170734713034,441,0 +170734713082,441,0 +170734713130,441,0 +170734713178,441,0 +170734713226,441,0 +170734713273,441,0 +170734713323,441,0 +170734713371,441,0 +170734713419,441,0 +170734713466,441,0 +170734713516,440,0 +170734713564,265,0 +170734713613,263,0 +170734713661,440,0 +170734713709,441,0 +170734713759,441,0 +170734713807,441,0 +170734713855,441,0 +170734713902,441,0 +170734713950,441,0 +170734714000,441,0 +170734714048,441,0 +170734714096,441,0 +170734714143,441,0 +170734714191,441,0 +170734714239,441,0 +170734714289,441,0 +170734714337,441,0 +170734714386,441,0 +170734714434,441,0 +170734714482,441,0 +170734714531,441,0 +170734714580,436,0 +170734714629,284,1 +170734714706,439,0 +170734714754,441,0 +170734714802,441,0 +170734714850,441,0 +170734714898,441,0 +170734714946,441,0 +170734714994,441,0 +170734715043,441,0 +170734715091,441,0 +170734715139,441,0 +170734715187,441,0 +170734715235,441,0 +170734715285,441,0 +170734715333,441,0 +170734715381,441,0 +170734715429,441,0 +170734715477,441,0 +170734715525,441,0 +170734715572,441,0 +170734715620,440,0 +170734715668,282,1 +170734715760,439,0 +170734715808,441,0 +170734715857,441,0 +170734715907,441,0 +170734715956,441,0 +170734716004,441,0 +170734716054,441,0 +170734716102,441,0 +170734716151,441,0 +170734716199,441,0 +170734716247,441,0 +170734716295,441,0 +170734716343,441,0 +170734716391,441,0 +170734716439,441,0 +170734716487,441,0 +170734716535,441,0 +170734716584,441,0 +170734716632,441,0 +170734716680,292,1 +170734716768,245,0 +170734716816,440,0 +170734716864,441,0 +170734716914,441,0 +170734716963,441,0 +170734717011,441,0 +170734717059,441,0 +170734717107,441,0 +170734717155,441,0 +170734717204,441,0 +170734717252,441,0 +170734717300,441,0 +170734717350,441,0 +170734717398,441,0 +170734717447,441,0 +170734717495,441,0 +170734717543,441,0 +170734717593,441,0 +170734717641,441,0 +170734717690,441,0 +170734717738,288,1 +170734717819,264,0 +170734717867,440,0 +170734717915,441,0 +170734717962,441,0 +170734718010,441,0 +170734718060,441,0 +170734718110,441,0 +170734718157,441,0 +170734718207,441,0 +170734718255,441,0 +170734718303,441,0 +170734718351,441,0 +170734718399,441,0 +170734718448,441,0 +170734718496,441,0 +170734718546,441,0 +170734718594,441,0 +170734718642,441,0 +170734718690,441,0 +170734718738,441,0 +170734718786,296,1 +170734718864,307,1 +170734718946,441,0 +170734718994,441,0 +170734719042,441,0 +170734719090,441,0 +170734719138,441,0 +170734719187,441,0 +170734719235,441,0 +170734719283,441,0 +170734719331,441,0 +170734719379,441,0 +170734719427,441,0 +170734719475,441,0 +170734719523,441,0 +170734719571,441,0 +170734719621,441,0 +170734719669,441,0 +170734719718,441,0 +170734719766,441,0 +170734719816,440,0 +170734719865,292,1 +170734719946,436,0 +170734719994,441,0 +170734720042,441,0 +170734720089,441,0 +170734720137,441,0 +170734720185,441,0 +170734720233,441,0 +170734720281,441,0 +170734720329,441,0 +170734720377,441,0 +170734720425,441,0 +170734720473,441,0 +170734720520,441,0 +170734720568,441,0 +170734720618,441,0 +170734720666,441,0 +170734720714,441,0 +170734720763,441,0 +170734720811,441,0 +170734720861,440,0 +170734720909,300,1 +170734720992,437,0 +170734721041,441,0 +170734721089,441,0 +170734721137,441,0 +170734721187,441,0 +170734721235,441,0 +170734721283,441,0 +170734721331,441,0 +170734721379,441,0 +170734721428,441,0 +170734721476,441,0 +170734721526,441,0 +170734721575,441,0 +170734721625,441,0 +170734721673,441,0 +170734721721,441,0 +170734721769,441,0 +170734721818,441,0 +170734721868,441,0 +170734721917,440,0 +170734721965,293,1 +170734722043,438,0 +170734722091,441,0 +170734722139,441,0 +170734722188,441,0 +170734722236,441,0 +170734722284,441,0 +170734722334,441,0 +170734722382,441,0 +170734722430,441,0 +170734722479,441,0 +170734722529,441,0 +170734722578,441,0 +170734722626,441,0 +170734722674,441,0 +170734722723,441,0 +170734722771,441,0 +170734722819,441,0 +170734722867,441,0 +170734722915,441,0 +170734722963,440,0 +170734723013,292,1 +170734723097,437,0 +170734723145,441,0 +170734723193,441,0 +170734723241,441,0 +170734723291,441,0 +170734723339,441,0 +170734723386,441,0 +170734723434,441,0 +170734723482,441,0 +170734723530,441,0 +170734723578,441,0 +170734723626,441,0 +170734723676,441,0 +170734723724,441,0 +170734723772,441,0 +170734723820,441,0 +170734723869,441,0 +170734723917,441,0 +170734723965,441,0 +170734724015,432,0 +170734724064,301,1 +170734724146,440,0 +170734724194,441,0 +170734724242,441,0 +170734724290,441,0 +170734724338,441,0 +170734724387,441,0 +170734724435,441,0 +170734724483,441,0 +170734724531,441,0 +170734724579,441,0 +170734724629,441,0 +170734724676,441,0 +170734724724,441,0 +170734724772,441,0 +170734724820,441,0 +170734724868,441,0 +170734724916,441,0 +170734724964,441,0 +170734725014,441,0 +170734725062,440,0 +170734725111,303,1 +170734725199,439,0 +170734725249,441,0 +170734725297,441,0 +170734725346,441,0 +170734725394,441,0 +170734725444,441,0 +170734725493,441,0 +170734725543,441,0 +170734725591,441,0 +170734725639,441,0 +170734725688,441,0 +170734725736,441,0 +170734725784,441,0 +170734725834,441,0 +170734725882,441,0 +170734725931,441,0 +170734725981,441,0 +170734726029,441,0 +170734726077,441,0 +170734726125,294,1 +170734726213,280,1 +170734726291,441,0 +170734726339,441,0 +170734726386,441,0 +170734726434,441,0 +170734726482,441,0 +170734726532,441,0 +170734726581,441,0 +170734726631,441,0 +170734726679,441,0 +170734726727,441,0 +170734726775,441,0 +170734726823,441,0 +170734726870,441,0 +170734726920,441,0 +170734726968,441,0 +170734727016,441,0 +170734727064,441,0 +170734727112,441,0 +170734727160,440,0 +170734727209,297,1 +170734727291,437,0 +170734727341,441,0 +170734727388,441,0 +170734727436,441,0 +170734727484,441,0 +170734727532,441,0 +170734727582,441,0 +170734727630,441,0 +170734727679,441,0 +170734727727,441,0 +170734727775,441,0 +170734727823,441,0 +170734727873,441,0 +170734727921,441,0 +170734727969,441,0 +170734728018,441,0 +170734728066,441,0 +170734728114,441,0 +170734728164,441,0 +170734728212,438,0 +170734728259,282,1 +170734728341,438,0 +170734728389,441,0 +170734728437,441,0 +170734728484,441,0 +170734728532,441,0 +170734728580,441,0 +170734728628,441,0 +170734728676,441,0 +170734728724,441,0 +170734728772,441,0 +170734728822,441,0 +170734728869,441,0 +170734728917,441,0 +170734728965,441,0 +170734729013,441,0 +170734729061,441,0 +170734729109,441,0 +170734729157,441,0 +170734729205,441,0 +170734729253,440,0 +170734729300,293,1 +170734729386,438,0 +170734729434,441,0 +170734729481,441,0 +170734729531,441,0 +170734729579,441,0 +170734729627,441,0 +170734729676,441,0 +170734729724,441,0 +170734729772,441,0 +170734729821,441,0 +170734729869,441,0 +170734729917,441,0 +170734729965,441,0 +170734730013,441,0 +170734730061,441,0 +170734730111,441,0 +170734730159,441,0 +170734730206,441,0 +170734730254,441,0 +170734730302,440,0 +170734730352,302,1 +170734730440,439,0 +170734730488,441,0 +170734730536,441,0 +170734730583,441,0 +170734730631,441,0 +170734730679,441,0 +170734730729,441,0 +170734730778,441,0 +170734730826,441,0 +170734730876,441,0 +170734730925,441,0 +170734730973,441,0 +170734731021,441,0 +170734731069,441,0 +170734731117,441,0 +170734731165,441,0 +170734731213,441,0 +170734731261,441,0 +170734731309,441,0 +170734731357,440,0 +170734731406,306,1 +170734731487,439,0 +170734731537,441,0 +170734731586,441,0 +170734731636,441,0 +170734731685,441,0 +170734731733,441,0 +170734731781,441,0 +170734731829,441,0 +170734731877,441,0 +170734731925,441,0 +170734731973,441,0 +170734732023,441,0 +170734732072,441,0 +170734732122,441,0 +170734732170,441,0 +170734732218,441,0 +170734732265,441,0 +170734732313,441,0 +170734732363,441,0 +170734732411,293,1 +170734732496,296,1 +170734732576,441,0 +170734732624,441,0 +170734732671,441,0 +170734732719,441,0 +170734732767,441,0 +170734732815,441,0 +170734732865,441,0 +170734732913,441,0 +170734732961,441,0 +170734733009,441,0 +170734733057,441,0 +170734733104,441,0 +170734733152,441,0 +170734733200,441,0 +170734733250,441,0 +170734733298,441,0 +170734733346,441,0 +170734733394,441,0 +170734733443,440,0 +170734733493,294,1 +170734733578,436,0 +170734733628,440,0 +170734733676,441,0 +170734733725,441,0 +170734733775,440,0 +170734733824,441,0 +170734733872,440,0 +170734733922,441,0 +170734733969,441,0 +170734734017,441,0 +170734734065,440,0 +170734734113,441,0 +170734734161,441,0 +170734734209,440,0 +170734734257,441,0 +170734734305,440,0 +170734734354,441,0 +170734734404,440,0 +170734734453,441,0 +170734734503,440,0 +170734734550,298,1 +170734734629,434,0 +170734734676,440,0 +170734734726,440,0 +170734734774,441,0 +170734734823,441,0 +170734734871,441,0 +170734734919,441,0 +170734734969,441,0 +170734735017,441,0 +170734735064,441,0 +170734735112,441,0 +170734735162,441,0 +170734735210,441,0 +170734735260,441,0 +170734735307,441,0 +170734735355,441,0 +170734735403,441,0 +170734735451,441,0 +170734735501,441,0 +170734735549,440,0 +170734735597,296,1 +170734735676,435,0 +170734735725,440,0 +170734735775,441,0 +170734735823,441,0 +170734735872,441,0 +170734735922,441,0 +170734735970,440,0 +170734736018,441,0 +170734736066,441,0 +170734736114,441,0 +170734736162,441,0 +170734736210,441,0 +170734736259,441,0 +170734736309,441,0 +170734736357,441,0 +170734736405,441,0 +170734736452,441,0 +170734736502,441,0 +170734736550,440,0 +170734736598,440,0 +170734736647,267,0 +170734736695,269,0 +170734736743,440,0 +170734736791,441,0 +170734736839,441,0 +170734736887,441,0 +170734736935,441,0 +170734736983,441,0 +170734737031,441,0 +170734737079,441,0 +170734737126,441,0 +170734737174,441,0 +170734737222,441,0 +170734737272,441,0 +170734737320,441,0 +170734737367,441,0 +170734737417,440,0 +170734737465,441,0 +170734737513,441,0 +170734737562,441,0 +170734737612,441,0 +170734737659,435,0 +170734737707,299,1 +170734737790,439,0 +170734737838,441,0 +170734737886,441,0 +170734737933,441,0 +170734737981,441,0 +170734738029,441,0 +170734738077,441,0 +170734738125,441,0 +170734738173,441,0 +170734738221,441,0 +170734738270,441,0 +170734738320,441,0 +170734738368,441,0 +170734738415,441,0 +170734738463,441,0 +170734738511,441,0 +170734738559,441,0 +170734738607,441,0 +170734738655,441,0 +170734738704,288,1 +170734738789,277,1 +170734738869,441,0 +170734738917,441,0 +170734738965,441,0 +170734739015,441,0 +170734739063,441,0 +170734739112,440,0 +170734739160,441,0 +170734739208,441,0 +170734739256,441,0 +170734739304,441,0 +170734739352,441,0 +170734739400,441,0 +170734739448,441,0 +170734739496,441,0 +170734739544,441,0 +170734739592,441,0 +170734739641,441,0 +170734739689,441,0 +170734739737,440,0 +170734739785,270,1 +170734739866,435,0 +170734739919,441,0 +170734739967,441,0 +170734740015,441,0 +170734740063,441,0 +170734740111,441,0 +170734740158,441,0 +170734740206,441,0 +170734740256,441,0 +170734740304,441,0 +170734740352,441,0 +170734740400,441,0 +170734740447,441,0 +170734740495,441,0 +170734740543,441,0 +170734740591,441,0 +170734740639,441,0 +170734740687,441,0 +170734740735,441,0 +170734740783,440,0 +170734740830,306,1 +170734740913,434,0 +170734740961,440,0 +170734741009,441,0 +170734741057,441,0 +170734741105,441,0 +170734741155,441,0 +170734741202,441,0 +170734741250,441,0 +170734741300,441,0 +170734741348,441,0 +170734741396,441,0 +170734741445,441,0 +170734741493,441,0 +170734741541,441,0 +170734741589,441,0 +170734741638,441,0 +170734741688,441,0 +170734741737,441,0 +170734741785,441,0 +170734741833,440,0 +170734741881,300,1 +170734741963,419,0 +170734742012,441,0 +170734742060,441,0 +170734742108,441,0 +170734742158,441,0 +170734742207,441,0 +170734742255,441,0 +170734742303,441,0 +170734742351,441,0 +170734742399,441,0 +170734742449,441,0 +170734742498,441,0 +170734742546,441,0 +170734742594,441,0 +170734742644,441,0 +170734742692,441,0 +170734742740,441,0 +170734742789,441,0 +170734742837,440,0 +170734742885,440,0 +170734742933,303,1 +170734743015,436,0 +170734743063,441,0 +170734743110,441,0 +170734743158,441,0 +170734743208,440,0 +170734743256,441,0 +170734743304,441,0 +170734743351,441,0 +170734743399,441,0 +170734743449,441,0 +170734743497,441,0 +170734743545,440,0 +170734743593,441,0 +170734743642,441,0 +170734743690,441,0 +170734743738,440,0 +170734743786,441,0 +170734743833,441,0 +170734743881,441,0 +170734743931,440,0 +170734743979,283,1 +170734744062,434,0 +170734744110,440,0 +170734744158,441,0 +170734744206,441,0 +170734744255,441,0 +170734744303,441,0 +170734744351,440,0 +170734744399,441,0 +170734744447,441,0 +170734744496,441,0 +170734744544,441,0 +170734744592,441,0 +170734744640,441,0 +170734744688,441,0 +170734744736,441,0 +170734744783,441,0 +170734744831,441,0 +170734744879,440,0 +170734744927,441,0 +170734744975,440,0 +170734745023,295,1 +170734745109,434,0 +170734745157,440,0 +170734745204,441,0 +170734745254,441,0 +170734745303,441,0 +170734745351,441,0 +170734745399,441,0 +170734745447,441,0 +170734745495,441,0 +170734745543,441,0 +170734745591,441,0 +170734745639,441,0 +170734745687,441,0 +170734745736,441,0 +170734745785,441,0 +170734745835,441,0 +170734745883,441,0 +170734745931,440,0 +170734745978,441,0 +170734746028,440,0 +170734746076,294,1 +170734746167,438,0 +170734746215,440,0 +170734746263,441,0 +170734746311,441,0 +170734746359,441,0 +170734746407,441,0 +170734746455,441,0 +170734746504,440,0 +170734746552,441,0 +170734746600,441,0 +170734746648,441,0 +170734746696,441,0 +170734746743,441,0 +170734746791,441,0 +170734746839,441,0 +170734746887,441,0 +170734746935,441,0 +170734746985,441,0 +170734747032,440,0 +170734747080,439,0 +170734747128,309,1 +170734747211,436,0 +170734747259,441,0 +170734747307,441,0 +170734747355,441,0 +170734747403,441,0 +170734747450,441,0 +170734747498,441,0 +170734747546,441,0 +170734747594,441,0 +170734747644,441,0 +170734747691,441,0 +170734747739,441,0 +170734747789,441,0 +170734747837,441,0 +170734747885,441,0 +170734747934,441,0 +170734747982,441,0 +170734748031,441,0 +170734748079,441,0 +170734748127,440,0 +170734748175,305,1 +170734748261,436,0 +170734748309,440,0 +170734748357,440,0 +170734748405,441,0 +170734748454,441,0 +170734748502,441,0 +170734748550,441,0 +170734748598,441,0 +170734748646,441,0 +170734748694,441,0 +170734748742,441,0 +170734748790,441,0 +170734748839,441,0 +170734748888,441,0 +170734748936,441,0 +170734748984,441,0 +170734749034,441,0 +170734749081,440,0 +170734749129,441,0 +170734749177,440,0 +170734749227,296,1 +170734749305,433,0 +170734749353,440,0 +170734749401,441,0 +170734749449,441,0 +170734749497,441,0 +170734749546,441,0 +170734749596,441,0 +170734749644,441,0 +170734749692,441,0 +170734749741,441,0 +170734749791,441,0 +170734749838,441,0 +170734749886,441,0 +170734749936,441,0 +170734749985,441,0 +170734750033,441,0 +170734750081,441,0 +170734750129,441,0 +170734750178,440,0 +170734750226,439,0 +170734750274,294,1 +170734750352,437,0 +170734750400,441,0 +170734750448,441,0 +170734750496,441,0 +170734750544,441,0 +170734750592,440,0 +170734750641,441,0 +170734750689,441,0 +170734750737,441,0 +170734750785,441,0 +170734750833,441,0 +170734750883,441,0 +170734750930,441,0 +170734750978,441,0 +170734751026,441,0 +170734751074,441,0 +170734751124,441,0 +170734751172,441,0 +170734751221,441,0 +170734751269,440,0 +170734751319,298,1 +170734751396,434,0 +170734751443,440,0 +170734751491,441,0 +170734751541,441,0 +170734751589,441,0 +170734751637,441,0 +170734751685,441,0 +170734751733,441,0 +170734751782,441,0 +170734751832,441,0 +170734751880,441,0 +170734751929,441,0 +170734751977,441,0 +170734752027,441,0 +170734752076,441,0 +170734752124,441,0 +170734752172,441,0 +170734752220,441,0 +170734752268,440,0 +170734752316,440,0 +170734752365,258,0 +170734752413,302,1 +170734752496,441,0 +170734752544,441,0 +170734752592,441,0 +170734752640,441,0 +170734752689,441,0 +170734752739,441,0 +170734752787,441,0 +170734752836,441,0 +170734752884,441,0 +170734752932,441,0 +170734752982,441,0 +170734753031,441,0 +170734753081,441,0 +170734753129,441,0 +170734753178,441,0 +170734753228,441,0 +170734753276,441,0 +170734753325,440,0 +170734753373,424,0 +170734753421,301,1 +170734753505,439,0 +170734753555,441,0 +170734753603,441,0 +170734753652,441,0 +170734753700,441,0 +170734753748,441,0 +170734753796,441,0 +170734753845,441,0 +170734753893,441,0 +170734753941,441,0 +170734753989,441,0 +170734754037,441,0 +170734754085,441,0 +170734754133,441,0 +170734754181,441,0 +170734754228,441,0 +170734754276,441,0 +170734754324,441,0 +170734754372,441,0 +170734754420,440,0 +170734754469,305,1 +170734754552,438,0 +170734754600,440,0 +170734754648,441,0 +170734754696,441,0 +170734754744,441,0 +170734754792,441,0 +170734754840,440,0 +170734754888,441,0 +170734754937,441,0 +170734754986,441,0 +170734755036,441,0 +170734755084,441,0 +170734755132,440,0 +170734755179,441,0 +170734755227,441,0 +170734755275,441,0 +170734755323,441,0 +170734755371,441,0 +170734755419,441,0 +170734755467,440,0 +170734755515,295,1 +170734755593,434,0 +170734755641,440,0 +170734755689,441,0 +170734755737,441,0 +170734755785,441,0 +170734755834,441,0 +170734755882,441,0 +170734755930,441,0 +170734755978,441,0 +170734756026,441,0 +170734756075,441,0 +170734756123,441,0 +170734756173,441,0 +170734756220,441,0 +170734756270,441,0 +170734756318,441,0 +170734756366,441,0 +170734756414,440,0 +170734756461,441,0 +170734756509,440,0 +170734756559,300,1 +170734756643,433,0 +170734756691,441,0 +170734756741,441,0 +170734756789,441,0 +170734756837,441,0 +170734756885,441,0 +170734756933,441,0 +170734756981,441,0 +170734757029,441,0 +170734757077,441,0 +170734757126,441,0 +170734757176,441,0 +170734757224,441,0 +170734757272,441,0 +170734757321,441,0 +170734757371,441,0 +170734757419,441,0 +170734757467,441,0 +170734757514,441,0 +170734757562,440,0 +170734757610,301,1 +170734757690,436,0 +170734757737,441,0 +170734757785,441,0 +170734757833,441,0 +170734757881,441,0 +170734757931,441,0 +170734757978,441,0 +170734758026,441,0 +170734758074,441,0 +170734758124,441,0 +170734758172,441,0 +170734758219,441,0 +170734758267,441,0 +170734758315,441,0 +170734758363,441,0 +170734758411,440,0 +170734758459,441,0 +170734758507,441,0 +170734758554,441,0 +170734758602,440,0 +170734758652,299,1 +170734758731,431,0 +170734758779,440,0 +170734758827,441,0 +170734758875,441,0 +170734758923,441,0 +170734758971,441,0 +170734759020,441,0 +170734759068,441,0 +170734759116,441,0 +170734759164,441,0 +170734759212,441,0 +170734759260,441,0 +170734759308,441,0 +170734759356,441,0 +170734759405,441,0 +170734759454,440,0 +170734759504,441,0 +170734759553,441,0 +170734759603,441,0 +170734759651,440,0 +170734759699,309,1 +170734759779,242,0 +170734759828,441,0 +170734759878,441,0 +170734759926,441,0 +170734759975,441,0 +170734760024,441,0 +170734760072,441,0 +170734760120,441,0 +170734760168,441,0 +170734760216,441,0 +170734760264,441,0 +170734760312,441,0 +170734760360,441,0 +170734760408,441,0 +170734760456,441,0 +170734760504,441,0 +170734760552,441,0 +170734760600,441,0 +170734760648,440,0 +170734760697,440,0 +170734760745,301,1 +170734760830,436,0 +170734760878,441,0 +170734760926,441,0 +170734760974,441,0 +170734761023,441,0 +170734761071,441,0 +170734761119,440,0 +170734761167,441,0 +170734761215,441,0 +170734761265,441,0 +170734761313,441,0 +170734761362,441,0 +170734761410,441,0 +170734761460,440,0 +170734761509,440,0 +170734761559,441,0 +170734761607,441,0 +170734761655,441,0 +170734761702,441,0 +170734761750,440,0 +170734761798,295,1 +170734761882,434,0 +170734761931,440,0 +170734761981,441,0 +170734762029,441,0 +170734762077,441,0 +170734762126,441,0 +170734762176,440,0 +170734762224,440,0 +170734762272,441,0 +170734762320,441,0 +170734762368,441,0 +170734762416,441,0 +170734762463,441,0 +170734762511,440,0 +170734762559,441,0 +170734762609,441,0 +170734762657,441,0 +170734762705,441,0 +170734762754,440,0 +170734762802,440,0 +170734762850,297,1 +170734762933,432,0 +170734762981,441,0 +170734763029,441,0 +170734763079,441,0 +170734763128,440,0 +170734763176,441,0 +170734763224,441,0 +170734763272,441,0 +170734763322,441,0 +170734763370,441,0 +170734763417,441,0 +170734763467,441,0 +170734763515,441,0 +170734763563,441,0 +170734763611,441,0 +170734763660,441,0 +170734763710,441,0 +170734763757,441,0 +170734763805,441,0 +170734763853,440,0 +170734763901,299,1 +170734763979,428,0 +170734764028,440,0 +170734764076,441,0 +170734764126,441,0 +170734764175,441,0 +170734764223,441,0 +170734764271,441,0 +170734764321,441,0 +170734764369,441,0 +170734764417,441,0 +170734764466,441,0 +170734764514,441,0 +170734764562,441,0 +170734764610,441,0 +170734764658,441,0 +170734764707,441,0 +170734764757,441,0 +170734764805,441,0 +170734764854,441,0 +170734764902,440,0 +170734764952,298,1 +170734765036,436,0 +170734765084,441,0 +170734765132,441,0 +170734765181,440,0 +170734765229,440,0 +170734765279,441,0 +170734765327,440,0 +170734765376,441,0 +170734765424,441,0 +170734765472,440,0 +170734765520,441,0 +170734765568,441,0 +170734765616,441,0 +170734765664,441,0 +170734765712,441,0 +170734765760,441,0 +170734765809,441,0 +170734765857,441,0 +170734765905,441,0 +170734765955,440,0 +170734766003,284,1 +170734766089,437,0 +170734766137,440,0 +170734766187,441,0 +170734766236,441,0 +170734766284,440,0 +170734766332,441,0 +170734766380,441,0 +170734766430,441,0 +170734766477,441,0 +170734766527,441,0 +170734766577,440,0 +170734766626,441,0 +170734766674,441,0 +170734766722,441,0 +170734766770,441,0 +170734766820,441,0 +170734766867,441,0 +170734766915,441,0 +170734766963,441,0 +170734767011,440,0 +170734767059,300,1 +170734767141,438,0 +170734767189,441,0 +170734767237,441,0 +170734767285,441,0 +170734767333,441,0 +170734767380,441,0 +170734767430,441,0 +170734767478,441,0 +170734767526,441,0 +170734767574,441,0 +170734767622,441,0 +170734767671,441,0 +170734767719,441,0 +170734767767,441,0 +170734767815,441,0 +170734767863,440,0 +170734767910,441,0 +170734767958,440,0 +170734768006,440,0 +170734768054,440,0 +170734768102,301,1 +170734768186,438,0 +170734768236,441,0 +170734768284,441,0 +170734768332,441,0 +170734768380,441,0 +170734768428,441,0 +170734768476,441,0 +170734768525,441,0 +170734768573,441,0 +170734768621,441,0 +170734768671,440,0 +170734768718,441,0 +170734768766,440,0 +170734768816,441,0 +170734768864,441,0 +170734768913,440,0 +170734768961,440,0 +170734769011,440,0 +170734769059,441,0 +170734769109,439,0 +170734769156,309,1 +170734769237,437,0 +170734769285,441,0 +170734769333,441,0 +170734769381,441,0 +170734769429,440,0 +170734769479,441,0 +170734769527,441,0 +170734769575,441,0 +170734769623,441,0 +170734769672,441,0 +170734769722,441,0 +170734769770,441,0 +170734769817,441,0 +170734769865,441,0 +170734769915,441,0 +170734769963,441,0 +170734770011,441,0 +170734770060,441,0 +170734770108,440,0 +170734770158,440,0 +170734770206,297,1 +170734770288,437,0 +170734770337,441,0 +170734770387,441,0 +170734770435,441,0 +170734770484,441,0 +170734770534,441,0 +170734770582,441,0 +170734770630,441,0 +170734770678,441,0 +170734770726,441,0 +170734770775,441,0 +170734770825,441,0 +170734770874,441,0 +170734770922,441,0 +170734770970,441,0 +170734771018,441,0 +170734771066,440,0 +170734771114,440,0 +170734771163,440,0 +170734771211,440,0 +170734771259,295,1 +170734771345,438,0 +170734771394,441,0 +170734771442,441,0 +170734771490,441,0 +170734771538,441,0 +170734771587,441,0 +170734771637,441,0 +170734771686,441,0 +170734771734,440,0 +170734771782,441,0 +170734771832,441,0 +170734771880,441,0 +170734771927,441,0 +170734771975,441,0 +170734772023,441,0 +170734772073,441,0 +170734772122,440,0 +170734772170,441,0 +170734772220,440,0 +170734772268,309,1 +170734772346,276,1 +170734772426,441,0 +170734772474,440,0 +170734772522,440,0 +170734772571,441,0 +170734772619,441,0 +170734772669,441,0 +170734772717,441,0 +170734772764,441,0 +170734772812,441,0 +170734772862,441,0 +170734772910,440,0 +170734772959,441,0 +170734773009,441,0 +170734773057,441,0 +170734773105,441,0 +170734773154,441,0 +170734773204,441,0 +170734773253,441,0 +170734773301,440,0 +170734773349,301,1 +170734773428,437,0 +170734773476,441,0 +170734773525,441,0 +170734773575,441,0 +170734773623,441,0 +170734773672,441,0 +170734773720,441,0 +170734773770,441,0 +170734773818,441,0 +170734773866,441,0 +170734773914,441,0 +170734773963,441,0 +170734774011,441,0 +170734774061,441,0 +170734774110,440,0 +170734774158,441,0 +170734774206,441,0 +170734774254,441,0 +170734774302,441,0 +170734774350,440,0 +170734774399,284,1 +170734774481,437,0 +170734774531,441,0 +170734774580,441,0 +170734774629,441,0 +170734774677,441,0 +170734774725,441,0 +170734774775,441,0 +170734774823,441,0 +170734774871,441,0 +170734774919,441,0 +170734774968,441,0 +170734775016,441,0 +170734775064,441,0 +170734775114,440,0 +170734775162,441,0 +170734775210,441,0 +170734775258,441,0 +170734775307,441,0 +170734775355,440,0 +170734775405,437,0 +170734775453,298,1 +170734775537,439,0 +170734775585,441,0 +170734775633,441,0 +170734775681,441,0 +170734775730,441,0 +170734775778,441,0 +170734775828,441,0 +170734775877,441,0 +170734775925,441,0 +170734775973,441,0 +170734776021,441,0 +170734776070,441,0 +170734776120,441,0 +170734776170,441,0 +170734776219,441,0 +170734776267,441,0 +170734776317,441,0 +170734776364,441,0 +170734776412,441,0 +170734776460,285,1 +170734776541,282,1 +170734776621,441,0 +170734776669,441,0 +170734776716,441,0 +170734776766,441,0 +170734776814,441,0 +170734776863,441,0 +170734776913,441,0 +170734776961,441,0 +170734777009,441,0 +170734777058,441,0 +170734777106,441,0 +170734777154,441,0 +170734777204,441,0 +170734777252,441,0 +170734777301,441,0 +170734777349,441,0 +170734777399,441,0 +170734777447,441,0 +170734777495,440,0 +170734777543,301,1 +170734777628,437,0 +170734777676,440,0 +170734777726,441,0 +170734777775,441,0 +170734777823,441,0 +170734777871,441,0 +170734777919,441,0 +170734777967,441,0 +170734778015,441,0 +170734778063,441,0 +170734778111,441,0 +170734778161,441,0 +170734778209,441,0 +170734778257,441,0 +170734778305,441,0 +170734778353,441,0 +170734778401,441,0 +170734778448,441,0 +170734778496,441,0 +170734778544,440,0 +170734778592,270,1 +170734778678,436,0 +170734778726,441,0 +170734778775,441,0 +170734778823,441,0 +170734778871,441,0 +170734778920,441,0 +170734778968,441,0 +170734779018,441,0 +170734779066,441,0 +170734779114,441,0 +170734779162,441,0 +170734779211,441,0 +170734779259,441,0 +170734779307,441,0 +170734779355,441,0 +170734779403,441,0 +170734779451,441,0 +170734779500,441,0 +170734779550,440,0 +170734779598,438,0 +170734779647,296,1 +170734779728,438,0 +170734779776,441,0 +170734779824,441,0 +170734779872,441,0 +170734779920,441,0 +170734779968,441,0 +170734780016,441,0 +170734780064,441,0 +170734780113,441,0 +170734780161,441,0 +170734780209,441,0 +170734780259,441,0 +170734780309,441,0 +170734780356,441,0 +170734780404,441,0 +170734780452,441,0 +170734780500,441,0 +170734780548,441,0 +170734780596,441,0 +170734780646,439,0 +170734780694,306,1 +170734780777,438,0 +170734780825,440,0 +170734780873,441,0 +170734780921,441,0 +170734780971,441,0 +170734781019,441,0 +170734781068,441,0 +170734781116,441,0 +170734781164,440,0 +170734781214,441,0 +170734781262,441,0 +170734781310,441,0 +170734781359,441,0 +170734781408,441,0 +170734781458,441,0 +170734781508,440,0 +170734781556,440,0 +170734781603,441,0 +170734781651,441,0 +170734781701,439,0 +170734781751,293,1 +170734781830,436,0 +170734781878,440,0 +170734781926,441,0 +170734781974,441,0 +170734782022,440,0 +170734782071,441,0 +170734782119,440,0 +170734782167,441,0 +170734782215,441,0 +170734782263,440,0 +170734782313,440,0 +170734782362,441,0 +170734782410,440,0 +170734782458,441,0 +170734782506,441,0 +170734782556,441,0 +170734782605,441,0 +170734782655,440,0 +170734782703,440,0 +170734782752,304,1 +170734782838,248,0 +170734782887,440,0 +170734782935,440,0 +170734782985,440,0 +170734783033,441,0 +170734783082,441,0 +170734783132,441,0 +170734783181,441,0 +170734783229,440,0 +170734783277,440,0 +170734783327,441,0 +170734783375,441,0 +170734783422,441,0 +170734783470,440,0 +170734783520,441,0 +170734783568,441,0 +170734783616,441,0 +170734783665,441,0 +170734783715,441,0 +170734783764,440,0 +170734783814,300,1 +170734783890,265,0 +170734783938,440,0 +170734783986,440,0 +170734784036,440,0 +170734784085,440,0 +170734784133,440,0 +170734784181,440,0 +170734784229,440,0 +170734784277,440,0 +170734784327,441,0 +170734784375,440,0 +170734784424,441,0 +170734784472,441,0 +170734784520,441,0 +170734784568,440,0 +170734784616,440,0 +170734784665,440,0 +170734784713,441,0 +170734784761,440,0 +170734784811,440,0 +170734784860,269,0 +170734784910,267,0 +170734784960,329,0 +170734785009,440,0 +170734785057,440,0 +170734785107,440,0 +170734785156,440,0 +170734785206,441,0 +170734785254,440,0 +170734785302,440,0 +170734785349,440,0 +170734785397,440,0 +170734785445,440,0 +170734785495,441,0 +170734785544,440,0 +170734785594,440,0 +170734785642,440,0 +170734785690,440,0 +170734785738,440,0 +170734785786,440,0 +170734785834,440,0 +170734785883,440,0 +170734785931,304,1 +170734786015,433,0 +170734786064,440,0 +170734786112,441,0 +170734786161,440,0 +170734786209,440,0 +170734786257,441,0 +170734786307,441,0 +170734786355,441,0 +170734786403,440,0 +170734786451,441,0 +170734786500,440,0 +170734786548,440,0 +170734786596,440,0 +170734786644,440,0 +170734786694,440,0 +170734786742,440,0 +170734786790,440,0 +170734786839,440,0 +170734786889,440,0 +170734786938,439,0 +170734786986,299,1 +170734787071,438,0 +170734787120,440,0 +170734787168,440,0 +170734787217,440,0 +170734787265,440,0 +170734787315,440,0 +170734787364,440,0 +170734787414,440,0 +170734787464,440,0 +170734787512,440,0 +170734787559,440,0 +170734787607,440,0 +170734787657,440,0 +170734787705,440,0 +170734787755,440,0 +170734787802,440,0 +170734787852,440,0 +170734787902,440,0 +170734787949,440,0 +170734787997,437,0 +170734788047,281,1 +170734788131,439,0 +170734788181,440,0 +170734788229,440,0 +170734788277,440,0 +170734788326,440,0 +170734788374,440,0 +170734788422,440,0 +170734788470,440,0 +170734788518,440,0 +170734788566,440,0 +170734788614,440,0 +170734788663,440,0 +170734788711,440,0 +170734788759,440,0 +170734788807,440,0 +170734788855,440,0 +170734788903,440,0 +170734788953,440,0 +170734789000,440,0 +170734789048,346,0 +170734789096,286,1 +170734789180,439,0 +170734789227,440,0 +170734789275,441,0 +170734789323,440,0 +170734789371,440,0 +170734789419,440,0 +170734789467,440,0 +170734789515,440,0 +170734789565,440,0 +170734789614,440,0 +170734789662,440,0 +170734789710,440,0 +170734789758,440,0 +170734789806,440,0 +170734789854,440,0 +170734789902,440,0 +170734789950,440,0 +170734790000,440,0 +170734790048,440,0 +170734790095,261,0 +170734790143,274,1 +170734790224,439,0 +170734790272,440,0 +170734790321,440,0 +170734790369,440,0 +170734790417,440,0 +170734790467,440,0 +170734790515,440,0 +170734790563,441,0 +170734790611,440,0 +170734790659,440,0 +170734790706,440,0 +170734790754,440,0 +170734790802,440,0 +170734790850,440,0 +170734790898,440,0 +170734790946,440,0 +170734790994,440,0 +170734791042,440,0 +170734791090,440,0 +170734791137,434,0 +170734791185,291,1 +170734791271,438,0 +170734791319,440,0 +170734791367,440,0 +170734791415,440,0 +170734791463,440,0 +170734791511,441,0 +170734791558,440,0 +170734791606,440,0 +170734791654,440,0 +170734791702,440,0 +170734791750,440,0 +170734791798,440,0 +170734791847,440,0 +170734791895,440,0 +170734791945,440,0 +170734791993,440,0 +170734792041,440,0 +170734792090,440,0 +170734792138,440,0 +170734792186,439,0 +170734792234,286,1 +170734792318,437,0 +170734792366,440,0 +170734792414,440,0 +170734792462,440,0 +170734792510,440,0 +170734792558,440,0 +170734792607,440,0 +170734792655,440,0 +170734792703,440,0 +170734792751,440,0 +170734792799,440,0 +170734792847,440,0 +170734792896,440,0 +170734792944,440,0 +170734792992,440,0 +170734793040,440,0 +170734793088,441,0 +170734793137,440,0 +170734793185,440,0 +170734793234,439,0 +170734793282,299,1 +170734793359,432,0 +170734793408,440,0 +170734793456,440,0 +170734793504,440,0 +170734793552,440,0 +170734793600,440,0 +170734793648,440,0 +170734793696,440,0 +170734793745,440,0 +170734793793,440,0 +170734793841,440,0 +170734793889,440,0 +170734793937,440,0 +170734793985,440,0 +170734794034,440,0 +170734794084,441,0 +170734794132,440,0 +170734794180,440,0 +170734794229,440,0 +170734794277,440,0 +170734794325,302,1 +170734794403,433,0 +170734794456,440,0 +170734794504,440,0 +170734794552,440,0 +170734794600,440,0 +170734794649,440,0 +170734794699,440,0 +170734794747,440,0 +170734794796,440,0 +170734794844,441,0 +170734794894,440,0 +170734794942,441,0 +170734794990,440,0 +170734795038,440,0 +170734795087,440,0 +170734795135,441,0 +170734795185,440,0 +170734795234,440,0 +170734795282,440,0 +170734795330,439,0 +170734795378,296,1 +170734795463,437,0 +170734795511,440,0 +170734795559,440,0 +170734795609,440,0 +170734795656,440,0 +170734795704,440,0 +170734795752,440,0 +170734795800,440,0 +170734795848,440,0 +170734795896,440,0 +170734795944,440,0 +170734795993,440,0 +170734796041,441,0 +170734796089,440,0 +170734796137,440,0 +170734796185,440,0 +170734796233,440,0 +170734796281,441,0 +170734796329,440,0 +170734796376,440,0 +170734796424,288,1 +170734796504,435,0 +170734796552,440,0 +170734796600,440,0 +170734796648,440,0 +170734796697,440,0 +170734796747,440,0 +170734796796,440,0 +170734796844,440,0 +170734796892,440,0 +170734796940,440,0 +170734796988,440,0 +170734797036,440,0 +170734797083,440,0 +170734797131,440,0 +170734797179,440,0 +170734797227,440,0 +170734797275,440,0 +170734797323,440,0 +170734797371,440,0 +170734797419,440,0 +170734797467,292,1 +170734797545,432,0 +170734797594,440,0 +170734797644,440,0 +170734797694,440,0 +170734797742,440,0 +170734797789,441,0 +170734797839,440,0 +170734797887,441,0 +170734797936,440,0 +170734797984,440,0 +170734798034,440,0 +170734798084,440,0 +170734798131,440,0 +170734798179,440,0 +170734798227,440,0 +170734798277,440,0 +170734798325,440,0 +170734798373,440,0 +170734798421,440,0 +170734798469,440,0 +170734798517,305,1 +170734798597,434,0 +170734798645,440,0 +170734798693,440,0 +170734798741,440,0 +170734798789,440,0 +170734798839,440,0 +170734798886,440,0 +170734798934,440,0 +170734798984,441,0 +170734799034,440,0 +170734799083,440,0 +170734799131,440,0 +170734799179,440,0 +170734799229,440,0 +170734799277,440,0 +170734799325,440,0 +170734799374,440,0 +170734799424,440,0 +170734799473,440,0 +170734799521,439,0 +170734799569,307,1 +170734799649,435,0 +170734799699,440,0 +170734799748,440,0 +170734799796,440,0 +170734799846,440,0 +170734799895,440,0 +170734799943,440,0 +170734799991,440,0 +170734800041,440,0 +170734800089,440,0 +170734800138,441,0 +170734800186,440,0 +170734800236,440,0 +170734800285,440,0 +170734800333,440,0 +170734800381,440,0 +170734800429,440,0 +170734800477,440,0 +170734800525,440,0 +170734800573,440,0 +170734800622,302,1 +170734800706,434,0 +170734800754,440,0 +170734800802,440,0 +170734800850,440,0 +170734800897,440,0 +170734800945,440,0 +170734800993,441,0 +170734801043,441,0 +170734801091,440,0 +170734801138,440,0 +170734801186,440,0 +170734801234,440,0 +170734801282,440,0 +170734801330,440,0 +170734801378,440,0 +170734801426,440,0 +170734801474,440,0 +170734801522,441,0 +170734801570,440,0 +170734801620,437,0 +170734801667,295,1 +170734801745,437,0 +170734801793,440,0 +170734801841,440,0 +170734801889,441,0 +170734801937,440,0 +170734801984,440,0 +170734802034,440,0 +170734802082,440,0 +170734802130,440,0 +170734802177,440,0 +170734802225,440,0 +170734802273,440,0 +170734802321,440,0 +170734802369,440,0 +170734802417,440,0 +170734802466,441,0 +170734802516,440,0 +170734802565,441,0 +170734802613,440,0 +170734802661,440,0 +170734802709,283,1 +170734802787,433,0 +170734802837,440,0 +170734802886,440,0 +170734802936,440,0 +170734802984,440,0 +170734803032,440,0 +170734803080,440,0 +170734803127,440,0 +170734803175,440,0 +170734803225,440,0 +170734803274,440,0 +170734803322,440,0 +170734803370,440,0 +170734803420,440,0 +170734803468,440,0 +170734803516,440,0 +170734803565,440,0 +170734803615,440,0 +170734803663,440,0 +170734803711,440,0 +170734803758,299,1 +170734803836,426,0 +170734803884,440,0 +170734803933,440,0 +170734803981,440,0 +170734804029,440,0 +170734804077,441,0 +170734804127,440,0 +170734804176,440,0 +170734804224,440,0 +170734804272,440,0 +170734804320,440,0 +170734804368,440,0 +170734804416,440,0 +170734804464,440,0 +170734804512,440,0 +170734804560,440,0 +170734804608,440,0 +170734804656,440,0 +170734804704,440,0 +170734804753,440,0 +170734804801,297,1 +170734804881,433,0 +170734804929,440,0 +170734804978,440,0 +170734805028,440,0 +170734805076,441,0 +170734805124,440,0 +170734805172,440,0 +170734805220,440,0 +170734805269,440,0 +170734805317,440,0 +170734805367,440,0 +170734805416,440,0 +170734805464,441,0 +170734805512,440,0 +170734805562,441,0 +170734805610,440,0 +170734805658,440,0 +170734805707,440,0 +170734805757,440,0 +170734805806,439,0 +170734805856,304,1 +170734805936,435,0 +170734805983,440,0 +170734806033,440,0 +170734806083,440,0 +170734806132,440,0 +170734806182,440,0 +170734806229,441,0 +170734806279,440,0 +170734806327,440,0 +170734806375,441,0 +170734806424,440,0 +170734806474,440,0 +170734806523,440,0 +170734806571,440,0 +170734806619,440,0 +170734806669,440,0 +170734806719,440,0 +170734806768,440,0 +170734806816,440,0 +170734806866,440,0 +170734806915,300,1 +170734806995,435,0 +170734807043,440,0 +170734807092,440,0 +170734807140,440,0 +170734807188,441,0 +170734807238,440,0 +170734807285,440,0 +170734807333,440,0 +170734807381,441,0 +170734807431,441,0 +170734807480,440,0 +170734807528,441,0 +170734807576,440,0 +170734807624,440,0 +170734807672,440,0 +170734807722,440,0 +170734807770,440,0 +170734807819,440,0 +170734807869,440,0 +170734807918,438,0 +170734807966,296,1 +170734808045,436,0 +170734808093,440,0 +170734808141,441,0 +170734808190,440,0 +170734808238,440,0 +170734808287,441,0 +170734808335,440,0 +170734808383,440,0 +170734808433,440,0 +170734808481,440,0 +170734808529,440,0 +170734808577,440,0 +170734808627,440,0 +170734808674,440,0 +170734808722,440,0 +170734808772,440,0 +170734808821,440,0 +170734808869,441,0 +170734808917,440,0 +170734808965,433,0 +170734809013,255,0 +170734809061,235,0 +170734809109,440,0 +170734809157,440,0 +170734809207,440,0 +170734809256,440,0 +170734809304,440,0 +170734809352,441,0 +170734809400,441,0 +170734809448,440,0 +170734809496,440,0 +170734809544,440,0 +170734809592,441,0 +170734809641,440,0 +170734809689,441,0 +170734809737,440,0 +170734809785,440,0 +170734809833,440,0 +170734809881,440,0 +170734809929,440,0 +170734809977,440,0 +170734810025,290,1 +170734810110,265,0 +170734810159,440,0 +170734810208,440,0 +170734810256,440,0 +170734810304,440,0 +170734810352,440,0 +170734810400,441,0 +170734810448,440,0 +170734810496,440,0 +170734810546,440,0 +170734810594,440,0 +170734810642,440,0 +170734810691,440,0 +170734810739,440,0 +170734810787,440,0 +170734810835,440,0 +170734810883,441,0 +170734810931,440,0 +170734810979,441,0 +170734811027,440,0 +170734811075,270,1 +170734811160,262,0 +170734811208,440,0 +170734811256,440,0 +170734811303,440,0 +170734811351,440,0 +170734811399,440,0 +170734811449,440,0 +170734811497,441,0 +170734811546,440,0 +170734811596,441,0 +170734811645,440,0 +170734811695,440,0 +170734811743,440,0 +170734811792,440,0 +170734811840,440,0 +170734811888,440,0 +170734811938,440,0 +170734811986,440,0 +170734812034,441,0 +170734812083,440,0 +170734812133,298,1 +170734812216,433,0 +170734812265,440,0 +170734812315,440,0 +170734812364,440,0 +170734812414,440,0 +170734812462,440,0 +170734812510,440,0 +170734812559,440,0 +170734812607,441,0 +170734812657,440,0 +170734812706,440,0 +170734812754,440,0 +170734812804,440,0 +170734812853,440,0 +170734812903,440,0 +170734812951,441,0 +170734812999,440,0 +170734813047,440,0 +170734813095,440,0 +170734813144,439,0 +170734813192,313,0 +170734813242,272,1 +170734813322,440,0 +170734813372,440,0 +170734813419,440,0 +170734813467,440,0 +170734813517,441,0 +170734813565,441,0 +170734813613,440,0 +170734813661,441,0 +170734813709,440,0 +170734813757,441,0 +170734813805,440,0 +170734813854,440,0 +170734813902,440,0 +170734813950,440,0 +170734813998,440,0 +170734814046,441,0 +170734814095,440,0 +170734814145,440,0 +170734814195,440,0 +170734814244,307,1 +170734814324,432,0 +170734814373,440,0 +170734814421,440,0 +170734814469,440,0 +170734814519,440,0 +170734814566,440,0 +170734814614,440,0 +170734814662,441,0 +170734814710,440,0 +170734814758,440,0 +170734814806,440,0 +170734814854,440,0 +170734814904,440,0 +170734814952,440,0 +170734815000,440,0 +170734815048,440,0 +170734815097,440,0 +170734815147,440,0 +170734815195,440,0 +170734815243,440,0 +170734815292,302,1 +170734815375,435,0 +170734815423,440,0 +170734815471,440,0 +170734815518,440,0 +170734815566,441,0 +170734815614,440,0 +170734815662,440,0 +170734815710,440,0 +170734815758,440,0 +170734815806,440,0 +170734815854,440,0 +170734815902,441,0 +170734815950,440,0 +170734816000,440,0 +170734816048,440,0 +170734816095,440,0 +170734816143,440,0 +170734816191,440,0 +170734816241,440,0 +170734816289,439,0 +170734816337,303,1 +170734816421,434,0 +170734816469,440,0 +170734816517,440,0 +170734816567,440,0 +170734816616,440,0 +170734816666,440,0 +170734816715,440,0 +170734816765,440,0 +170734816813,440,0 +170734816861,440,0 +170734816909,440,0 +170734816958,440,0 +170734817008,440,0 +170734817056,440,0 +170734817104,440,0 +170734817152,440,0 +170734817200,440,0 +170734817248,440,0 +170734817296,441,0 +170734817344,440,0 +170734817391,294,1 +170734817472,435,0 +170734817520,440,0 +170734817568,440,0 +170734817615,440,0 +170734817663,440,0 +170734817711,440,0 +170734817761,441,0 +170734817810,440,0 +170734817858,440,0 +170734817906,440,0 +170734817954,440,0 +170734818002,440,0 +170734818050,440,0 +170734818098,440,0 +170734818148,440,0 +170734818196,440,0 +170734818245,440,0 +170734818295,440,0 +170734818344,440,0 +170734818392,439,0 +170734818442,281,1 +170734818525,436,0 +170734818574,440,0 +170734818624,440,0 +170734818672,440,0 +170734818721,440,0 +170734818769,440,0 +170734818817,440,0 +170734818865,440,0 +170734818913,440,0 +170734818961,440,0 +170734819010,440,0 +170734819058,440,0 +170734819106,440,0 +170734819154,440,0 +170734819204,440,0 +170734819253,440,0 +170734819301,440,0 +170734819351,440,0 +170734819400,440,0 +170734819450,312,0 +170734819498,296,1 +170734819577,438,0 +170734819625,441,0 +170734819673,440,0 +170734819720,440,0 +170734819768,441,0 +170734819816,440,0 +170734819864,441,0 +170734819912,440,0 +170734819960,441,0 +170734820008,440,0 +170734820058,441,0 +170734820106,440,0 +170734820155,440,0 +170734820203,441,0 +170734820251,440,0 +170734820301,441,0 +170734820348,441,0 +170734820398,441,0 +170734820446,440,0 +170734820496,286,1 +170734820572,301,1 +170734820651,440,0 +170734820699,441,0 +170734820747,440,0 +170734820797,441,0 +170734820845,440,0 +170734820894,441,0 +170734820942,440,0 +170734820990,440,0 +170734821038,441,0 +170734821086,441,0 +170734821135,440,0 +170734821185,441,0 +170734821233,440,0 +170734821281,441,0 +170734821329,441,0 +170734821377,440,0 +170734821425,440,0 +170734821474,441,0 +170734821522,440,0 +170734821570,292,1 +170734821660,435,0 +170734821709,441,0 +170734821759,441,0 +170734821807,440,0 +170734821855,441,0 +170734821903,440,0 +170734821950,441,0 +170734822000,440,0 +170734822050,441,0 +170734822098,440,0 +170734822147,441,0 +170734822196,441,0 +170734822244,440,0 +170734822292,441,0 +170734822340,440,0 +170734822390,441,0 +170734822440,441,0 +170734822488,441,0 +170734822535,441,0 +170734822585,440,0 +170734822633,283,1 +170734822715,435,0 +170734822763,440,0 +170734822813,441,0 +170734822862,440,0 +170734822911,440,0 +170734822958,440,0 +170734823006,441,0 +170734823054,440,0 +170734823102,441,0 +170734823152,441,0 +170734823201,440,0 +170734823251,441,0 +170734823299,441,0 +170734823347,440,0 +170734823395,441,0 +170734823444,441,0 +170734823494,440,0 +170734823543,441,0 +170734823591,440,0 +170734823639,435,0 +170734823687,297,1 +170734823765,437,0 +170734823813,441,0 +170734823863,441,0 +170734823913,440,0 +170734823961,441,0 +170734824010,440,0 +170734824058,441,0 +170734824106,441,0 +170734824155,440,0 +170734824203,441,0 +170734824253,441,0 +170734824301,441,0 +170734824349,441,0 +170734824398,440,0 +170734824448,440,0 +170734824496,441,0 +170734824545,440,0 +170734824595,441,0 +170734824643,440,0 +170734824691,381,0 +170734824740,305,1 +170734824818,439,0 +170734824867,440,0 +170734824917,441,0 +170734824966,441,0 +170734825014,440,0 +170734825064,440,0 +170734825114,440,0 +170734825162,440,0 +170734825209,440,0 +170734825257,441,0 +170734825305,441,0 +170734825355,441,0 +170734825403,440,0 +170734825451,441,0 +170734825499,441,0 +170734825548,441,0 +170734825596,441,0 +170734825644,440,0 +170734825692,440,0 +170734825742,438,0 +170734825790,261,0 +170734825838,248,0 +170734825887,440,0 +170734825935,441,0 +170734825985,441,0 +170734826033,441,0 +170734826082,440,0 +170734826130,441,0 +170734826180,441,0 +170734826228,441,0 +170734826275,440,0 +170734826323,440,0 +170734826373,441,0 +170734826421,441,0 +170734826469,441,0 +170734826517,441,0 +170734826565,441,0 +170734826614,441,0 +170734826662,440,0 +170734826710,440,0 +170734826758,440,0 +170734826808,303,1 +170734826885,387,0 +170734826933,440,0 +170734826981,440,0 +170734827029,440,0 +170734827077,441,0 +170734827127,440,0 +170734827176,440,0 +170734827224,440,0 +170734827272,440,0 +170734827320,440,0 +170734827368,440,0 +170734827416,440,0 +170734827464,440,0 +170734827513,440,0 +170734827561,440,0 +170734827609,440,0 +170734827657,440,0 +170734827705,441,0 +170734827753,440,0 +170734827801,441,0 +170734827850,297,1 +170734827935,267,0 +170734827985,440,0 +170734828033,441,0 +170734828082,440,0 +170734828130,441,0 +170734828178,440,0 +170734828226,440,0 +170734828275,440,0 +170734828323,440,0 +170734828371,441,0 +170734828419,440,0 +170734828467,440,0 +170734828516,440,0 +170734828566,441,0 +170734828613,441,0 +170734828663,441,0 +170734828711,440,0 +170734828759,441,0 +170734828806,440,0 +170734828854,440,0 +170734828902,296,1 +170734828980,244,0 +170734829028,440,0 +170734829075,440,0 +170734829125,440,0 +170734829173,441,0 +170734829221,440,0 +170734829269,440,0 +170734829318,440,0 +170734829366,441,0 +170734829414,440,0 +170734829462,441,0 +170734829510,441,0 +170734829558,440,0 +170734829607,441,0 +170734829655,441,0 +170734829703,441,0 +170734829751,440,0 +170734829799,441,0 +170734829849,440,0 +170734829898,441,0 +170734829946,309,1 +170734830029,263,0 +170734830078,440,0 +170734830128,440,0 +170734830176,441,0 +170734830225,440,0 +170734830273,440,0 +170734830321,440,0 +170734830369,440,0 +170734830417,440,0 +170734830465,441,0 +170734830512,441,0 +170734830560,441,0 +170734830608,440,0 +170734830658,440,0 +170734830706,440,0 +170734830755,441,0 +170734830803,440,0 +170734830851,441,0 +170734830899,440,0 +170734830947,440,0 +170734830995,294,1 +170734831077,386,0 +170734831125,440,0 +170734831173,440,0 +170734831221,440,0 +170734831269,440,0 +170734831317,440,0 +170734831365,440,0 +170734831412,440,0 +170734831460,440,0 +170734831510,440,0 +170734831560,441,0 +170734831608,441,0 +170734831657,440,0 +170734831707,441,0 +170734831756,441,0 +170734831804,440,0 +170734831852,441,0 +170734831900,440,0 +170734831948,440,0 +170734831997,440,0 +170734832047,295,1 +170734832127,236,0 +170734832175,440,0 +170734832223,440,0 +170734832272,440,0 +170734832320,440,0 +170734832368,440,0 +170734832416,440,0 +170734832464,440,0 +170734832513,440,0 +170734832561,440,0 +170734832611,441,0 +170734832659,440,0 +170734832707,441,0 +170734832755,440,0 +170734832802,441,0 +170734832850,440,0 +170734832898,440,0 +170734832946,440,0 +170734832994,441,0 +170734833042,440,0 +170734833092,302,1 +170734833171,253,0 +170734833219,440,0 +170734833268,440,0 +170734833318,440,0 +170734833366,440,0 +170734833413,440,0 +170734833461,440,0 +170734833509,441,0 +170734833557,441,0 +170734833607,440,0 +170734833654,440,0 +170734833702,440,0 +170734833750,440,0 +170734833798,441,0 +170734833848,440,0 +170734833895,440,0 +170734833943,440,0 +170734833991,440,0 +170734834039,440,0 +170734834087,440,0 +170734834135,300,1 +170734834208,252,0 +170734834258,440,0 +170734834307,440,0 +170734834355,440,0 +170734834403,440,0 +170734834453,440,0 +170734834502,441,0 +170734834550,440,0 +170734834598,441,0 +170734834646,440,0 +170734834694,441,0 +170734834741,440,0 +170734834789,441,0 +170734834837,440,0 +170734834885,440,0 +170734834933,440,0 +170734834982,441,0 +170734835030,440,0 +170734835078,440,0 +170734835128,440,0 +170734835175,284,1 +170734835263,282,1 +170734835345,441,0 +170734835393,440,0 +170734835442,440,0 +170734835490,440,0 +170734835538,441,0 +170734835586,440,0 +170734835635,440,0 +170734835683,440,0 +170734835731,440,0 +170734835780,440,0 +170734835828,441,0 +170734835876,441,0 +170734835924,441,0 +170734835973,440,0 +170734836021,440,0 +170734836069,440,0 +170734836117,440,0 +170734836165,440,0 +170734836213,440,0 +170734836261,298,1 +170734836341,436,0 +170734836391,441,0 +170734836439,440,0 +170734836487,440,0 +170734836534,441,0 +170734836582,441,0 +170734836630,440,0 +170734836680,440,0 +170734836728,441,0 +170734836776,441,0 +170734836823,440,0 +170734836873,440,0 +170734836921,441,0 +170734836969,440,0 +170734837016,441,0 +170734837064,440,0 +170734837112,440,0 +170734837160,440,0 +170734837208,440,0 +170734837256,440,0 +170734837305,440,0 +170734837355,441,0 +170734837404,440,0 +170734837454,440,0 +170734837501,440,0 +170734837549,441,0 +170734837597,440,0 +170734837645,440,0 +170734837693,441,0 +170734837741,440,0 +170734837789,439,0 +170734837837,296,1 +170734837912,435,0 +170734837962,440,0 +170734838010,440,0 +170734838058,440,0 +170734838106,440,0 +170734838154,440,0 +170734838201,441,0 +170734838249,440,0 +170734838297,440,0 +170734838345,441,0 +170734838395,440,0 +170734838444,440,0 +170734838492,440,0 +170734838541,441,0 +170734838589,440,0 +170734838639,440,0 +170734838687,440,0 +170734838735,440,0 +170734838784,440,0 +170734838834,292,1 +170734838916,305,1 +170734838997,440,0 +170734839045,440,0 +170734839095,440,0 +170734839143,441,0 +170734839191,440,0 +170734839239,441,0 +170734839287,440,0 +170734839335,440,0 +170734839383,441,0 +170734839431,440,0 +170734839479,440,0 +170734839527,440,0 +170734839576,440,0 +170734839624,441,0 +170734839673,440,0 +170734839721,440,0 +170734839769,440,0 +170734839817,440,0 +170734839865,440,0 +170734839915,300,1 +170734839997,432,0 +170734840047,440,0 +170734840095,440,0 +170734840144,440,0 +170734840192,440,0 +170734840240,440,0 +170734840288,440,0 +170734840336,440,0 +170734840384,440,0 +170734840434,441,0 +170734840482,440,0 +170734840530,440,0 +170734840579,441,0 +170734840627,441,0 +170734840676,440,0 +170734840724,440,0 +170734840772,440,0 +170734840820,440,0 +170734840868,441,0 +170734840916,440,0 +170734840964,290,1 +170734841046,433,0 +170734841094,440,0 +170734841142,440,0 +170734841190,440,0 +170734841238,441,0 +170734841286,441,0 +170734841333,440,0 +170734841381,440,0 +170734841429,440,0 +170734841477,441,0 +170734841525,440,0 +170734841574,440,0 +170734841624,441,0 +170734841672,440,0 +170734841719,440,0 +170734841767,440,0 +170734841815,440,0 +170734841863,440,0 +170734841911,441,0 +170734841959,440,0 +170734842007,296,1 +170734842085,435,0 +170734842138,441,0 +170734842186,441,0 +170734842235,441,0 +170734842283,441,0 +170734842331,440,0 +170734842379,441,0 +170734842427,441,0 +170734842475,441,0 +170734842522,441,0 +170734842570,441,0 +170734842618,440,0 +170734842666,441,0 +170734842714,441,0 +170734842762,441,0 +170734842810,441,0 +170734842858,441,0 +170734842907,441,0 +170734842956,440,0 +170734843006,440,0 +170734843054,295,1 +170734843131,235,0 +170734843179,440,0 +170734843227,440,0 +170734843275,441,0 +170734843322,440,0 +170734843370,440,0 +170734843418,440,0 +170734843468,440,0 +170734843515,441,0 +170734843563,440,0 +170734843611,441,0 +170734843659,440,0 +170734843707,440,0 +170734843756,441,0 +170734843804,441,0 +170734843852,441,0 +170734843900,440,0 +170734843948,441,0 +170734843996,440,0 +170734844045,440,0 +170734844094,299,1 +170734844175,267,0 +170734844224,440,0 +170734844272,440,0 +170734844320,441,0 +170734844368,441,0 +170734844416,441,0 +170734844464,441,0 +170734844511,441,0 +170734844559,441,0 +170734844607,441,0 +170734844657,441,0 +170734844706,440,0 +170734844755,441,0 +170734844803,441,0 +170734844851,441,0 +170734844901,441,0 +170734844949,441,0 +170734844996,441,0 +170734845044,441,0 +170734845094,440,0 +170734845142,297,1 +170734845225,424,0 +170734845273,440,0 +170734845321,440,0 +170734845371,441,0 +170734845420,441,0 +170734845470,441,0 +170734845519,440,0 +170734845567,441,0 +170734845615,441,0 +170734845664,441,0 +170734845712,441,0 +170734845760,440,0 +170734845808,441,0 +170734845856,441,0 +170734845905,441,0 +170734845953,441,0 +170734846003,440,0 +170734846051,441,0 +170734846098,441,0 +170734846146,440,0 +170734846194,312,0 +170734846242,309,1 +170734846319,440,0 +170734846367,441,0 +170734846415,441,0 +170734846462,440,0 +170734846510,441,0 +170734846558,441,0 +170734846606,440,0 +170734846654,441,0 +170734846702,440,0 +170734846752,440,0 +170734846800,441,0 +170734846848,441,0 +170734846896,441,0 +170734846944,441,0 +170734846992,441,0 +170734847039,441,0 +170734847089,440,0 +170734847139,441,0 +170734847188,440,0 +170734847236,306,1 +170734847315,246,0 +170734847365,440,0 +170734847415,440,0 +170734847462,441,0 +170734847510,440,0 +170734847558,440,0 +170734847608,440,0 +170734847657,440,0 +170734847707,440,0 +170734847756,441,0 +170734847806,440,0 +170734847854,441,0 +170734847903,440,0 +170734847953,440,0 +170734848001,440,0 +170734848049,441,0 +170734848098,440,0 +170734848146,440,0 +170734848196,440,0 +170734848244,440,0 +170734848292,311,0 +170734848341,303,1 +170734848421,440,0 +170734848469,440,0 +170734848517,440,0 +170734848565,440,0 +170734848615,441,0 +170734848665,440,0 +170734848712,440,0 +170734848760,441,0 +170734848808,441,0 +170734848856,440,0 +170734848904,440,0 +170734848952,440,0 +170734849000,440,0 +170734849048,441,0 +170734849095,440,0 +170734849145,440,0 +170734849193,440,0 +170734849241,440,0 +170734849290,439,0 +170734849338,298,1 +170734849422,434,0 +170734849471,440,0 +170734849519,440,0 +170734849567,440,0 +170734849617,440,0 +170734849666,440,0 +170734849714,440,0 +170734849762,440,0 +170734849812,440,0 +170734849860,440,0 +170734849909,440,0 +170734849959,440,0 +170734850007,440,0 +170734850056,440,0 +170734850104,440,0 +170734850152,440,0 +170734850201,440,0 +170734850249,440,0 +170734850299,440,0 +170734850348,440,0 +170734850396,303,1 +170734850481,433,0 +170734850530,440,0 +170734850578,440,0 +170734850626,440,0 +170734850674,440,0 +170734850723,440,0 +170734850773,440,0 +170734850821,440,0 +170734850869,440,0 +170734850917,440,0 +170734850965,440,0 +170734851013,441,0 +170734851061,440,0 +170734851109,440,0 +170734851157,441,0 +170734851205,440,0 +170734851253,440,0 +170734851301,440,0 +170734851349,440,0 +170734851398,440,0 +170734851446,299,1 +170734851526,432,0 +170734851574,440,0 +170734851622,440,0 +170734851670,440,0 +170734851719,440,0 +170734851767,440,0 +170734851815,440,0 +170734851864,440,0 +170734851912,440,0 +170734851960,440,0 +170734852008,440,0 +170734852056,440,0 +170734852106,440,0 +170734852153,440,0 +170734852201,440,0 +170734852249,440,0 +170734852297,440,0 +170734852347,440,0 +170734852396,440,0 +170734852446,440,0 +170734852494,302,1 +170734852574,436,0 +170734852622,440,0 +170734852670,440,0 +170734852718,440,0 +170734852766,440,0 +170734852813,440,0 +170734852863,440,0 +170734852911,440,0 +170734852959,440,0 +170734853007,440,0 +170734853056,440,0 +170734853104,440,0 +170734853154,440,0 +170734853203,440,0 +170734853251,440,0 +170734853299,440,0 +170734853349,440,0 +170734853397,440,0 +170734853445,440,0 +170734853493,439,0 +170734853542,292,1 +170734853642,439,0 +170734853690,440,0 +170734853738,440,0 +170734853786,440,0 +170734853834,440,0 +170734853882,440,0 +170734853930,440,0 +170734853979,440,0 +170734854027,440,0 +170734854075,440,0 +170734854123,440,0 +170734854173,440,0 +170734854221,440,0 +170734854269,440,0 +170734854317,440,0 +170734854364,440,0 +170734854412,440,0 +170734854460,440,0 +170734854508,440,0 +170734854556,439,0 +170734854606,299,1 +170734854685,437,0 +170734854732,440,0 +170734854780,440,0 +170734854830,440,0 +170734854878,440,0 +170734854925,440,0 +170734854973,440,0 +170734855021,440,0 +170734855069,440,0 +170734855117,440,0 +170734855165,440,0 +170734855213,440,0 +170734855261,440,0 +170734855309,440,0 +170734855357,440,0 +170734855405,440,0 +170734855453,440,0 +170734855501,440,0 +170734855549,440,0 +170734855598,438,0 +170734855646,310,0 +170734855694,267,0 +170734855742,439,0 +170734855792,440,0 +170734855840,440,0 +170734855889,440,0 +170734855937,440,0 +170734855985,440,0 +170734856035,440,0 +170734856083,440,0 +170734856131,440,0 +170734856179,440,0 +170734856227,440,0 +170734856276,441,0 +170734856324,440,0 +170734856372,441,0 +170734856420,441,0 +170734856469,440,0 +170734856519,440,0 +170734856567,440,0 +170734856615,440,0 +170734856663,301,1 +170734856743,260,0 +170734856791,440,0 +170734856839,440,0 +170734856888,441,0 +170734856936,440,0 +170734856986,440,0 +170734857034,440,0 +170734857082,440,0 +170734857130,440,0 +170734857179,440,0 +170734857227,440,0 +170734857275,441,0 +170734857323,440,0 +170734857371,440,0 +170734857421,440,0 +170734857470,440,0 +170734857518,440,0 +170734857566,440,0 +170734857614,440,0 +170734857662,440,0 +170734857710,269,0 +170734857758,297,1 +170734857843,439,0 +170734857892,440,0 +170734857940,440,0 +170734857988,440,0 +170734858036,440,0 +170734858086,440,0 +170734858135,441,0 +170734858185,440,0 +170734858233,440,0 +170734858281,440,0 +170734858330,441,0 +170734858380,440,0 +170734858429,440,0 +170734858477,440,0 +170734858525,440,0 +170734858573,440,0 +170734858621,440,0 +170734858669,440,0 +170734858717,440,0 +170734858765,276,1 +170734858841,300,1 +170734858921,440,0 +170734858971,440,0 +170734859019,440,0 +170734859066,440,0 +170734859116,440,0 +170734859164,440,0 +170734859213,440,0 +170734859261,440,0 +170734859309,440,0 +170734859359,440,0 +170734859407,440,0 +170734859455,440,0 +170734859503,440,0 +170734859552,440,0 +170734859600,440,0 +170734859650,440,0 +170734859699,440,0 +170734859749,440,0 +170734859797,435,0 +170734859846,303,1 +170734859928,437,0 +170734859978,440,0 +170734860026,440,0 +170734860074,440,0 +170734860122,440,0 +170734860170,440,0 +170734860218,440,0 +170734860266,440,0 +170734860314,440,0 +170734860362,440,0 +170734860410,440,0 +170734860457,440,0 +170734860505,440,0 +170734860553,441,0 +170734860601,440,0 +170734860649,440,0 +170734860699,440,0 +170734860747,440,0 +170734860797,440,0 +170734860844,439,0 +170734860892,302,1 +170734860977,437,0 +170734861025,440,0 +170734861073,440,0 +170734861121,440,0 +170734861171,440,0 +170734861220,440,0 +170734861270,440,0 +170734861319,440,0 +170734861367,440,0 +170734861415,440,0 +170734861463,440,0 +170734861513,440,0 +170734861561,440,0 +170734861609,440,0 +170734861657,440,0 +170734861706,440,0 +170734861754,441,0 +170734861802,440,0 +170734861850,440,0 +170734861898,284,1 +170734861981,266,0 +170734862031,439,0 +170734862079,440,0 +170734862127,440,0 +170734862175,440,0 +170734862225,440,0 +170734862272,440,0 +170734862322,440,0 +170734862370,440,0 +170734862418,440,0 +170734862466,440,0 +170734862513,440,0 +170734862561,440,0 +170734862609,440,0 +170734862657,440,0 +170734862705,441,0 +170734862753,440,0 +170734862801,440,0 +170734862849,440,0 +170734862898,440,0 +170734862948,276,1 +170734863029,291,1 +170734863110,440,0 +170734863158,440,0 +170734863207,440,0 +170734863255,440,0 +170734863305,440,0 +170734863352,440,0 +170734863402,440,0 +170734863450,440,0 +170734863499,440,0 +170734863549,440,0 +170734863598,440,0 +170734863646,440,0 +170734863696,440,0 +170734863746,440,0 +170734863793,440,0 +170734863841,440,0 +170734863891,440,0 +170734863939,440,0 +170734863987,437,0 +170734864035,310,0 +170734864084,249,0 +170734864134,440,0 +170734864183,440,0 +170734864231,440,0 +170734864279,440,0 +170734864327,440,0 +170734864375,440,0 +170734864424,440,0 +170734864472,440,0 +170734864521,440,0 +170734864569,440,0 +170734864617,440,0 +170734864665,440,0 +170734864713,440,0 +170734864762,440,0 +170734864810,440,0 +170734864858,440,0 +170734864906,440,0 +170734864954,440,0 +170734865002,440,0 +170734865049,277,1 +170734865131,305,1 +170734865213,440,0 +170734865262,440,0 +170734865312,440,0 +170734865362,440,0 +170734865409,440,0 +170734865459,440,0 +170734865508,440,0 +170734865558,440,0 +170734865606,440,0 +170734865655,440,0 +170734865703,440,0 +170734865751,440,0 +170734865801,440,0 +170734865849,440,0 +170734865897,440,0 +170734865945,440,0 +170734865994,440,0 +170734866042,440,0 +170734866090,439,0 +170734866140,302,1 +170734866222,437,0 +170734866270,440,0 +170734866318,440,0 +170734866366,440,0 +170734866414,440,0 +170734866462,440,0 +170734866511,440,0 +170734866559,440,0 +170734866607,440,0 +170734866655,440,0 +170734866702,440,0 +170734866750,440,0 +170734866798,440,0 +170734866848,440,0 +170734866896,440,0 +170734866943,440,0 +170734866991,440,0 +170734867041,440,0 +170734867089,440,0 +170734867137,439,0 +170734867184,263,0 +170734867232,260,0 +170734867280,439,0 +170734867328,440,0 +170734867376,440,0 +170734867424,440,0 +170734867473,440,0 +170734867521,440,0 +170734867569,440,0 +170734867617,440,0 +170734867665,440,0 +170734867713,440,0 +170734867761,440,0 +170734867808,440,0 +170734867856,440,0 +170734867904,440,0 +170734867952,440,0 +170734868000,440,0 +170734868048,440,0 +170734868096,440,0 +170734868144,440,0 +170734868192,275,1 +170734868275,304,1 +170734868351,440,0 +170734868399,440,0 +170734868447,440,0 +170734868495,440,0 +170734868544,441,0 +170734868592,440,0 +170734868640,440,0 +170734868688,440,0 +170734868736,440,0 +170734868784,440,0 +170734868834,440,0 +170734868882,440,0 +170734868930,440,0 +170734868978,440,0 +170734869026,440,0 +170734869073,440,0 +170734869123,440,0 +170734869171,440,0 +170734869219,440,0 +170734869267,293,1 +170734869353,432,0 +170734869401,440,0 +170734869450,440,0 +170734869500,440,0 +170734869548,440,0 +170734869597,440,0 +170734869645,440,0 +170734869693,440,0 +170734869741,440,0 +170734869789,440,0 +170734869837,440,0 +170734869885,440,0 +170734869933,440,0 +170734869981,440,0 +170734870029,440,0 +170734870078,440,0 +170734870126,440,0 +170734870176,440,0 +170734870224,440,0 +170734870272,439,0 +170734870321,299,1 +170734870404,435,0 +170734870454,440,0 +170734870502,440,0 +170734870550,440,0 +170734870599,440,0 +170734870647,440,0 +170734870695,440,0 +170734870743,440,0 +170734870791,440,0 +170734870839,440,0 +170734870887,440,0 +170734870935,440,0 +170734870983,440,0 +170734871032,440,0 +170734871082,440,0 +170734871130,440,0 +170734871178,440,0 +170734871226,440,0 +170734871274,440,0 +170734871322,438,0 +170734871369,288,1 +170734871458,438,0 +170734871508,440,0 +170734871556,440,0 +170734871603,440,0 +170734871651,440,0 +170734871701,440,0 +170734871751,440,0 +170734871800,440,0 +170734871850,440,0 +170734871897,440,0 +170734871947,440,0 +170734871995,440,0 +170734872043,440,0 +170734872092,440,0 +170734872140,440,0 +170734872188,440,0 +170734872236,440,0 +170734872286,440,0 +170734872334,440,0 +170734872383,302,1 +170734872466,300,1 +170734872544,440,0 +170734872594,440,0 +170734872643,440,0 +170734872691,440,0 +170734872739,440,0 +170734872787,440,0 +170734872835,440,0 +170734872884,440,0 +170734872932,440,0 +170734872980,440,0 +170734873028,440,0 +170734873076,440,0 +170734873124,440,0 +170734873172,440,0 +170734873220,440,0 +170734873268,440,0 +170734873318,440,0 +170734873365,440,0 +170734873415,440,0 +170734873463,303,1 +170734873541,250,0 +170734873591,440,0 +170734873639,440,0 +170734873687,440,0 +170734873735,440,0 +170734873783,440,0 +170734873831,440,0 +170734873879,440,0 +170734873926,440,0 +170734873974,440,0 +170734874024,440,0 +170734874072,440,0 +170734874120,440,0 +170734874168,440,0 +170734874217,440,0 +170734874265,440,0 +170734874315,440,0 +170734874363,440,0 +170734874410,440,0 +170734874460,440,0 +170734874508,251,0 +170734874556,304,1 +170734874641,440,0 +170734874689,440,0 +170734874738,440,0 +170734874786,440,0 +170734874834,440,0 +170734874882,440,0 +170734874930,440,0 +170734874978,440,0 +170734875028,440,0 +170734875076,440,0 +170734875125,440,0 +170734875173,440,0 +170734875221,440,0 +170734875269,440,0 +170734875317,440,0 +170734875367,440,0 +170734875415,440,0 +170734875464,440,0 +170734875512,439,0 +170734875560,305,1 +170734875642,433,0 +170734875690,440,0 +170734875738,440,0 +170734875786,440,0 +170734875834,440,0 +170734875882,440,0 +170734875930,440,0 +170734875978,440,0 +170734876027,440,0 +170734876075,440,0 +170734876125,440,0 +170734876173,440,0 +170734876220,440,0 +170734876270,440,0 +170734876318,440,0 +170734876366,440,0 +170734876414,440,0 +170734876462,440,0 +170734876510,440,0 +170734876558,439,0 +170734876606,289,1 +170734876684,434,0 +170734876732,440,0 +170734876781,440,0 +170734876831,440,0 +170734876879,440,0 +170734876928,440,0 +170734876978,440,0 +170734877026,440,0 +170734877074,440,0 +170734877122,440,0 +170734877171,440,0 +170734877219,440,0 +170734877267,440,0 +170734877317,440,0 +170734877365,440,0 +170734877413,440,0 +170734877461,440,0 +170734877509,440,0 +170734877556,440,0 +170734877606,440,0 +170734877654,302,1 +170734877737,433,0 +170734877786,440,0 +170734877834,440,0 +170734877882,440,0 +170734877930,440,0 +170734877978,440,0 +170734878026,440,0 +170734878076,440,0 +170734878125,440,0 +170734878173,440,0 +170734878221,440,0 +170734878269,440,0 +170734878317,440,0 +170734878365,440,0 +170734878414,440,0 +170734878464,440,0 +170734878512,440,0 +170734878560,440,0 +170734878608,440,0 +170734878656,439,0 +170734878705,289,1 +170734878792,438,0 +170734878840,440,0 +170734878888,440,0 +170734878936,440,0 +170734878984,440,0 +170734879033,440,0 +170734879083,440,0 +170734879132,440,0 +170734879180,440,0 +170734879230,440,0 +170734879278,440,0 +170734879326,440,0 +170734879375,440,0 +170734879425,440,0 +170734879473,440,0 +170734879521,440,0 +170734879569,440,0 +170734879617,440,0 +170734879665,440,0 +170734879714,436,0 +170734879762,294,1 +170734879842,435,0 +170734879890,440,0 +170734879938,440,0 +170734879987,440,0 +170734880035,440,0 +170734880085,440,0 +170734880133,440,0 +170734880181,440,0 +170734880229,440,0 +170734880277,440,0 +170734880325,440,0 +170734880374,440,0 +170734880422,440,0 +170734880470,440,0 +170734880520,440,0 +170734880568,440,0 +170734880616,440,0 +170734880665,440,0 +170734880713,440,0 +170734880763,439,0 +170734880811,296,1 +170734880890,435,0 +170734880940,440,0 +170734880987,440,0 +170734881035,440,0 +170734881085,440,0 +170734881134,440,0 +170734881184,440,0 +170734881232,440,0 +170734881281,440,0 +170734881331,440,0 +170734881381,440,0 +170734881429,440,0 +170734881477,440,0 +170734881524,440,0 +170734881572,440,0 +170734881620,440,0 +170734881670,440,0 +170734881718,440,0 +170734881766,440,0 +170734881814,437,0 +170734881862,301,1 +170734881945,438,0 +170734881993,440,0 +170734882041,440,0 +170734882089,440,0 +170734882137,440,0 +170734882186,440,0 +170734882236,440,0 +170734882284,440,0 +170734882333,440,0 +170734882381,440,0 +170734882429,440,0 +170734882477,440,0 +170734882525,440,0 +170734882573,440,0 +170734882623,440,0 +170734882671,440,0 +170734882719,440,0 +170734882766,440,0 +170734882814,440,0 +170734882862,274,1 +170734882942,300,1 +170734883022,440,0 +170734883072,440,0 +170734883120,440,0 +170734883168,440,0 +170734883216,440,0 +170734883265,440,0 +170734883314,440,0 +170734883362,440,0 +170734883410,440,0 +170734883458,440,0 +170734883508,440,0 +170734883556,440,0 +170734883604,440,0 +170734883652,440,0 +170734883701,440,0 +170734883749,440,0 +170734883797,440,0 +170734883845,440,0 +170734883895,440,0 +170734883943,280,1 +170734884028,433,0 +170734884076,440,0 +170734884126,440,0 +170734884175,440,0 +170734884223,440,0 +170734884273,440,0 +170734884321,440,0 +170734884370,440,0 +170734884418,440,0 +170734884468,440,0 +170734884517,440,0 +170734884565,440,0 +170734884613,440,0 +170734884663,440,0 +170734884710,440,0 +170734884760,440,0 +170734884808,440,0 +170734884856,440,0 +170734884905,440,0 +170734884953,437,0 +170734885001,289,1 +170734885082,436,0 +170734885130,440,0 +170734885178,440,0 +170734885226,440,0 +170734885276,440,0 +170734885325,440,0 +170734885373,440,0 +170734885421,440,0 +170734885469,440,0 +170734885517,440,0 +170734885565,440,0 +170734885613,440,0 +170734885662,440,0 +170734885712,440,0 +170734885760,440,0 +170734885808,440,0 +170734885856,440,0 +170734885905,440,0 +170734885955,440,0 +170734886004,437,0 +170734886054,291,1 +170734886136,437,0 +170734886185,440,0 +170734886233,440,0 +170734886283,440,0 +170734886332,440,0 +170734886382,440,0 +170734886431,440,0 +170734886479,440,0 +170734886527,440,0 +170734886575,440,0 +170734886623,440,0 +170734886671,440,0 +170734886719,440,0 +170734886767,440,0 +170734886814,440,0 +170734886862,440,0 +170734886910,440,0 +170734886958,440,0 +170734887006,440,0 +170734887054,433,0 +170734887102,303,1 +170734887182,436,0 +170734887230,440,0 +170734887278,440,0 +170734887326,440,0 +170734887374,440,0 +170734887422,440,0 +170734887471,440,0 +170734887519,440,0 +170734887567,440,0 +170734887615,440,0 +170734887663,440,0 +170734887712,440,0 +170734887760,440,0 +170734887808,440,0 +170734887856,440,0 +170734887904,440,0 +170734887952,440,0 +170734888000,440,0 +170734888047,440,0 +170734888095,439,0 +170734888143,301,1 +170734888225,434,0 +170734888273,440,0 +170734888321,440,0 +170734888369,440,0 +170734888417,440,0 +170734888467,440,0 +170734888514,440,0 +170734888562,440,0 +170734888610,440,0 +170734888660,440,0 +170734888709,440,0 +170734888757,440,0 +170734888807,440,0 +170734888856,440,0 +170734888904,440,0 +170734888952,440,0 +170734889000,440,0 +170734889048,440,0 +170734889098,440,0 +170734889146,439,0 +170734889193,295,1 +170734889270,435,0 +170734889318,440,0 +170734889368,440,0 +170734889417,440,0 +170734889467,440,0 +170734889515,440,0 +170734889564,440,0 +170734889614,440,0 +170734889663,440,0 +170734889713,440,0 +170734889762,440,0 +170734889812,440,0 +170734889860,440,0 +170734889908,440,0 +170734889957,440,0 +170734890005,440,0 +170734890055,440,0 +170734890103,440,0 +170734890151,440,0 +170734890199,439,0 +170734890247,290,1 +170734890330,436,0 +170734890378,440,0 +170734890426,440,0 +170734890474,440,0 +170734890522,440,0 +170734890570,440,0 +170734890620,440,0 +170734890668,440,0 +170734890716,440,0 +170734890764,440,0 +170734890811,440,0 +170734890861,440,0 +170734890909,440,0 +170734890959,440,0 +170734891008,440,0 +170734891056,440,0 +170734891104,440,0 +170734891153,440,0 +170734891201,440,0 +170734891249,436,0 +170734891299,289,1 +170734891383,438,0 +170734891431,440,0 +170734891481,440,0 +170734891531,440,0 +170734891579,440,0 +170734891628,440,0 +170734891678,440,0 +170734891726,440,0 +170734891774,440,0 +170734891821,440,0 +170734891869,440,0 +170734891917,440,0 +170734891967,440,0 +170734892015,440,0 +170734892063,440,0 +170734892111,440,0 +170734892160,440,0 +170734892208,440,0 +170734892257,440,0 +170734892307,399,0 +170734892356,299,1 +170734892437,437,0 +170734892486,440,0 +170734892536,440,0 +170734892584,440,0 +170734892632,440,0 +170734892679,440,0 +170734892727,440,0 +170734892775,440,0 +170734892823,440,0 +170734892871,440,0 +170734892919,440,0 +170734892969,440,0 +170734893017,440,0 +170734893064,440,0 +170734893114,440,0 +170734893162,440,0 +170734893210,440,0 +170734893259,440,0 +170734893309,440,0 +170734893357,299,1 +170734893436,283,1 +170734893518,440,0 +170734893566,440,0 +170734893614,440,0 +170734893664,440,0 +170734893712,440,0 +170734893761,440,0 +170734893809,440,0 +170734893857,440,0 +170734893907,440,0 +170734893956,440,0 +170734894006,440,0 +170734894054,440,0 +170734894101,440,0 +170734894149,440,0 +170734894197,440,0 +170734894245,440,0 +170734894293,440,0 +170734894342,440,0 +170734894390,439,0 +170734894438,307,1 +170734894518,433,0 +170734894567,440,0 +170734894615,440,0 +170734894665,440,0 +170734894713,440,0 +170734894761,440,0 +170734894810,440,0 +170734894858,440,0 +170734894908,440,0 +170734894956,440,0 +170734895005,440,0 +170734895055,440,0 +170734895103,440,0 +170734895151,440,0 +170734895201,440,0 +170734895249,440,0 +170734895296,440,0 +170734895346,440,0 +170734895394,440,0 +170734895444,440,0 +170734895493,291,1 +170734895576,435,0 +170734895625,440,0 +170734895673,440,0 +170734895723,440,0 +170734895772,440,0 +170734895820,440,0 +170734895868,440,0 +170734895916,440,0 +170734895964,440,0 +170734896012,440,0 +170734896061,440,0 +170734896111,440,0 +170734896159,440,0 +170734896207,440,0 +170734896256,440,0 +170734896304,440,0 +170734896353,440,0 +170734896401,440,0 +170734896449,440,0 +170734896497,439,0 +170734896545,288,1 +170734896628,437,0 +170734896676,440,0 +170734896724,440,0 +170734896772,440,0 +170734896820,440,0 +170734896868,440,0 +170734896917,440,0 +170734896967,440,0 +170734897015,440,0 +170734897062,440,0 +170734897110,440,0 +170734897158,440,0 +170734897206,440,0 +170734897254,440,0 +170734897302,440,0 +170734897350,440,0 +170734897398,440,0 +170734897445,440,0 +170734897495,440,0 +170734897543,313,0 +170734897592,285,1 +170734897673,436,0 +170734897721,440,0 +170734897769,440,0 +170734897817,440,0 +170734897865,440,0 +170734897914,440,0 +170734897962,440,0 +170734898010,440,0 +170734898058,440,0 +170734898106,440,0 +170734898155,440,0 +170734898205,440,0 +170734898252,440,0 +170734898300,440,0 +170734898348,440,0 +170734898396,440,0 +170734898444,440,0 +170734898494,440,0 +170734898543,440,0 +170734898593,439,0 +170734898641,289,1 +170734898720,437,0 +170734898768,440,0 +170734898816,440,0 +170734898866,440,0 +170734898914,440,0 +170734898962,440,0 +170734899010,440,0 +170734899059,440,0 +170734899109,440,0 +170734899158,440,0 +170734899208,440,0 +170734899256,440,0 +170734899304,440,0 +170734899352,440,0 +170734899401,440,0 +170734899449,440,0 +170734899497,440,0 +170734899545,440,0 +170734899593,440,0 +170734899641,425,0 +170734899689,298,1 +170734899770,436,0 +170734899820,440,0 +170734899869,440,0 +170734899919,440,0 +170734899968,440,0 +170734900016,440,0 +170734900066,440,0 +170734900115,440,0 +170734900165,440,0 +170734900213,440,0 +170734900262,440,0 +170734900310,440,0 +170734900358,440,0 +170734900408,440,0 +170734900456,440,0 +170734900504,440,0 +170734900553,440,0 +170734900601,440,0 +170734900650,440,0 +170734900698,277,1 +170734900790,234,0 +170734900838,440,0 +170734900886,440,0 +170734900934,440,0 +170734900982,440,0 +170734901030,440,0 +170734901078,440,0 +170734901126,440,0 +170734901174,440,0 +170734901222,440,0 +170734901270,440,0 +170734901318,440,0 +170734901366,440,0 +170734901413,440,0 +170734901461,440,0 +170734901509,440,0 +170734901557,440,0 +170734901607,440,0 +170734901656,440,0 +170734901704,440,0 +170734901752,285,1 +170734901830,302,1 +170734901907,440,0 +170734901955,440,0 +170734902004,440,0 +170734902052,440,0 +170734902101,440,0 +170734902149,440,0 +170734902199,440,0 +170734902248,440,0 +170734902298,440,0 +170734902347,440,0 +170734902397,440,0 +170734902445,440,0 +170734902494,440,0 +170734902542,440,0 +170734902590,440,0 +170734902640,440,0 +170734902688,440,0 +170734902736,440,0 +170734902784,439,0 +170734902833,270,1 +170734902916,434,0 +170734902964,440,0 +170734903014,440,0 +170734903063,440,0 +170734903113,440,0 +170734903162,440,0 +170734903212,440,0 +170734903260,440,0 +170734903309,440,0 +170734903357,440,0 +170734903405,440,0 +170734903453,440,0 +170734903502,440,0 +170734903552,440,0 +170734903601,440,0 +170734903651,440,0 +170734903701,440,0 +170734903750,440,0 +170734903798,440,0 +170734903848,278,1 +170734903927,259,0 +170734903975,439,0 +170734904025,440,0 +170734904074,440,0 +170734904122,440,0 +170734904172,440,0 +170734904221,440,0 +170734904269,440,0 +170734904317,440,0 +170734904367,440,0 +170734904415,440,0 +170734904463,440,0 +170734904511,440,0 +170734904559,440,0 +170734904607,440,0 +170734904656,440,0 +170734904706,440,0 +170734904755,440,0 +170734904803,440,0 +170734904851,440,0 +170734904899,302,1 +170734904981,274,1 +170734905059,440,0 +170734905107,440,0 +170734905157,440,0 +170734905205,440,0 +170734905253,440,0 +170734905302,440,0 +170734905350,440,0 +170734905400,440,0 +170734905449,440,0 +170734905499,440,0 +170734905548,440,0 +170734905596,440,0 +170734905644,440,0 +170734905694,440,0 +170734905743,440,0 +170734905791,440,0 +170734905839,440,0 +170734905887,440,0 +170734905937,439,0 +170734905985,293,1 +170734906066,436,0 +170734906115,440,0 +170734906165,440,0 +170734906214,440,0 +170734906264,440,0 +170734906312,440,0 +170734906361,440,0 +170734906409,440,0 +170734906459,440,0 +170734906507,440,0 +170734906555,440,0 +170734906602,440,0 +170734906650,440,0 +170734906698,440,0 +170734906746,440,0 +170734906794,440,0 +170734906844,440,0 +170734906892,440,0 +170734906940,440,0 +170734906988,272,1 +170734907069,311,0 +170734907117,437,0 +170734907165,440,0 +170734907213,440,0 +170734907260,440,0 +170734907308,440,0 +170734907358,440,0 +170734907408,440,0 +170734907457,440,0 +170734907505,440,0 +170734907554,440,0 +170734907604,440,0 +170734907654,440,0 +170734907701,440,0 +170734907749,440,0 +170734907799,440,0 +170734907847,440,0 +170734907895,440,0 +170734907943,440,0 +170734907992,440,0 +170734908040,302,1 +170734908122,254,0 +170734908172,440,0 +170734908220,440,0 +170734908269,440,0 +170734908317,440,0 +170734908365,440,0 +170734908415,440,0 +170734908463,440,0 +170734908511,440,0 +170734908558,440,0 +170734908606,440,0 +170734908654,440,0 +170734908702,440,0 +170734908750,440,0 +170734908798,440,0 +170734908846,440,0 +170734908896,440,0 +170734908944,440,0 +170734908992,440,0 +170734909040,440,0 +170734909089,433,0 +170734909137,297,1 +170734909222,438,0 +170734909270,440,0 +170734909318,440,0 +170734909366,440,0 +170734909414,440,0 +170734909462,440,0 +170734909511,440,0 +170734909559,440,0 +170734909609,440,0 +170734909658,440,0 +170734909708,440,0 +170734909757,440,0 +170734909807,440,0 +170734909857,440,0 +170734909904,440,0 +170734909952,440,0 +170734910002,440,0 +170734910050,440,0 +170734910099,440,0 +170734910149,294,1 +170734910228,288,1 +170734910309,440,0 +170734910357,440,0 +170734910404,440,0 +170734910454,440,0 +170734910504,440,0 +170734910552,440,0 +170734910600,440,0 +170734910649,440,0 +170734910699,440,0 +170734910748,440,0 +170734910797,440,0 +170734910845,440,0 +170734910893,440,0 +170734910943,440,0 +170734910992,440,0 +170734911042,440,0 +170734911090,440,0 +170734911138,440,0 +170734911186,294,1 +170734911263,294,1 +170734911345,440,0 +170734911393,440,0 +170734911441,440,0 +170734911489,440,0 +170734911537,440,0 +170734911585,440,0 +170734911632,440,0 +170734911680,440,0 +170734911730,440,0 +170734911778,440,0 +170734911827,440,0 +170734911875,440,0 +170734911923,440,0 +170734911971,440,0 +170734912021,440,0 +170734912069,440,0 +170734912118,440,0 +170734912168,440,0 +170734912216,440,0 +170734912264,297,1 +170734912341,431,0 +170734912389,440,0 +170734912437,440,0 +170734912485,440,0 +170734912533,440,0 +170734912581,440,0 +170734912630,440,0 +170734912680,440,0 +170734912730,440,0 +170734912778,440,0 +170734912827,440,0 +170734912875,440,0 +170734912925,440,0 +170734912973,440,0 +170734913020,440,0 +170734913070,440,0 +170734913118,440,0 +170734913166,440,0 +170734913214,440,0 +170734913262,440,0 +170734913310,289,1 +170734913393,434,0 +170734913441,440,0 +170734913489,440,0 +170734913537,440,0 +170734913585,440,0 +170734913634,440,0 +170734913682,440,0 +170734913730,440,0 +170734913780,440,0 +170734913828,440,0 +170734913876,440,0 +170734913924,440,0 +170734913973,440,0 +170734914023,440,0 +170734914071,440,0 +170734914118,440,0 +170734914168,440,0 +170734914216,440,0 +170734914266,440,0 +170734914315,440,0 +170734914363,291,1 +170734914448,435,0 +170734914496,440,0 +170734914546,440,0 +170734914594,440,0 +170734914643,440,0 +170734914693,440,0 +170734914742,440,0 +170734914792,440,0 +170734914842,440,0 +170734914890,440,0 +170734914939,440,0 +170734914988,440,0 +170734915038,440,0 +170734915086,440,0 +170734915134,440,0 +170734915182,440,0 +170734915231,440,0 +170734915281,440,0 +170734915331,440,0 +170734915378,421,0 +170734915428,301,1 +170734915511,439,0 +170734915559,440,0 +170734915607,440,0 +170734915657,440,0 +170734915706,440,0 +170734915756,440,0 +170734915804,440,0 +170734915853,440,0 +170734915903,440,0 +170734915951,440,0 +170734915999,440,0 +170734916048,440,0 +170734916098,440,0 +170734916147,440,0 +170734916195,440,0 +170734916243,440,0 +170734916293,440,0 +170734916342,440,0 +170734916390,440,0 +170734916438,292,1 +170734916519,269,0 +170734916567,439,0 +170734916615,440,0 +170734916663,440,0 +170734916711,440,0 +170734916759,440,0 +170734916806,440,0 +170734916854,440,0 +170734916902,440,0 +170734916950,440,0 +170734917000,440,0 +170734917048,440,0 +170734917097,440,0 +170734917145,440,0 +170734917195,440,0 +170734917244,440,0 +170734917292,440,0 +170734917340,440,0 +170734917390,440,0 +170734917439,440,0 +170734917487,280,1 +170734917571,279,1 +170734917649,440,0 +170734917699,440,0 +170734917748,440,0 +170734917796,440,0 +170734917844,440,0 +170734917892,440,0 +170734917940,440,0 +170734917988,440,0 +170734918037,440,0 +170734918085,440,0 +170734918133,440,0 +170734918183,440,0 +170734918232,440,0 +170734918280,440,0 +170734918328,440,0 +170734918376,440,0 +170734918424,440,0 +170734918472,440,0 +170734918520,439,0 +170734918568,282,1 +170734918649,437,0 +170734918697,440,0 +170734918745,440,0 +170734918793,440,0 +170734918841,440,0 +170734918889,440,0 +170734918937,440,0 +170734918985,440,0 +170734919033,440,0 +170734919081,440,0 +170734919129,440,0 +170734919179,440,0 +170734919226,440,0 +170734919274,440,0 +170734919324,440,0 +170734919372,440,0 +170734919420,440,0 +170734919468,440,0 +170734919516,440,0 +170734919564,440,0 +170734919612,293,1 +170734919693,435,0 +170734919743,440,0 +170734919792,440,0 +170734919842,440,0 +170734919891,440,0 +170734919939,440,0 +170734919987,440,0 +170734920035,440,0 +170734920083,440,0 +170734920133,440,0 +170734920182,440,0 +170734920232,440,0 +170734920281,440,0 +170734920331,440,0 +170734920379,440,0 +170734920428,440,0 +170734920478,440,0 +170734920527,440,0 +170734920577,440,0 +170734920625,269,0 +170734920674,303,1 +170734920754,439,0 +170734920803,440,0 +170734920853,440,0 +170734920902,440,0 +170734920952,440,0 +170734921000,440,0 +170734921049,440,0 +170734921097,440,0 +170734921145,440,0 +170734921193,440,0 +170734921241,440,0 +170734921289,440,0 +170734921337,440,0 +170734921386,440,0 +170734921434,441,0 +170734921482,440,0 +170734921530,440,0 +170734921578,440,0 +170734921625,440,0 +170734921675,300,1 +170734921762,273,1 +170734921843,440,0 +170734921893,440,0 +170734921941,440,0 +170734921989,440,0 +170734922038,440,0 +170734922086,440,0 +170734922134,440,0 +170734922182,440,0 +170734922230,440,0 +170734922278,440,0 +170734922325,440,0 +170734922373,440,0 +170734922421,440,0 +170734922469,440,0 +170734922517,440,0 +170734922565,440,0 +170734922614,441,0 +170734922662,440,0 +170734922712,438,0 +170734922760,297,1 +170734922839,437,0 +170734922887,440,0 +170734922936,440,0 +170734922986,440,0 +170734923034,440,0 +170734923082,440,0 +170734923130,440,0 +170734923178,440,0 +170734923225,440,0 +170734923273,440,0 +170734923321,440,0 +170734923369,440,0 +170734923417,440,0 +170734923465,440,0 +170734923515,440,0 +170734923563,440,0 +170734923611,440,0 +170734923659,440,0 +170734923707,440,0 +170734923756,439,0 +170734923806,295,1 +170734923889,437,0 +170734923937,440,0 +170734923985,440,0 +170734924033,440,0 +170734924082,440,0 +170734924130,440,0 +170734924178,440,0 +170734924226,440,0 +170734924274,440,0 +170734924322,440,0 +170734924370,440,0 +170734924418,440,0 +170734924466,440,0 +170734924514,440,0 +170734924563,440,0 +170734924613,440,0 +170734924661,440,0 +170734924709,440,0 +170734924758,440,0 +170734924808,438,0 +170734924857,291,1 +170734924939,437,0 +170734924987,440,0 +170734925035,440,0 +170734925083,440,0 +170734925131,440,0 +170734925179,440,0 +170734925229,440,0 +170734925278,440,0 +170734925326,440,0 +170734925374,440,0 +170734925424,440,0 +170734925472,440,0 +170734925520,440,0 +170734925569,440,0 +170734925617,440,0 +170734925665,440,0 +170734925714,440,0 +170734925762,440,0 +170734925812,440,0 +170734925860,434,0 +170734925909,297,1 +170734925991,439,0 +170734926039,440,0 +170734926087,440,0 +170734926135,440,0 +170734926182,440,0 +170734926230,440,0 +170734926278,441,0 +170734926326,440,0 +170734926376,440,0 +170734926423,440,0 +170734926471,440,0 +170734926519,440,0 +170734926567,440,0 +170734926615,440,0 +170734926663,440,0 +170734926711,440,0 +170734926760,440,0 +170734926810,440,0 +170734926858,440,0 +170734926907,262,0 +170734926955,286,1 +170734927038,438,0 +170734927086,440,0 +170734927136,440,0 +170734927184,440,0 +170734927233,440,0 +170734927281,440,0 +170734927331,441,0 +170734927379,440,0 +170734927428,441,0 +170734927477,440,0 +170734927527,440,0 +170734927575,441,0 +170734927624,440,0 +170734927672,440,0 +170734927722,440,0 +170734927770,440,0 +170734927819,440,0 +170734927867,440,0 +170734927917,440,0 +170734927965,294,1 +170734928044,299,1 +170734928128,440,0 +170734928175,441,0 +170734928223,440,0 +170734928273,440,0 +170734928321,440,0 +170734928369,440,0 +170734928418,440,0 +170734928468,440,0 +170734928516,441,0 +170734928565,440,0 +170734928613,440,0 +170734928661,440,0 +170734928711,440,0 +170734928759,440,0 +170734928807,440,0 +170734928856,440,0 +170734928906,440,0 +170734928954,440,0 +170734929003,258,0 +170734929053,298,1 +170734929131,438,0 +170734929179,440,0 +170734929227,440,0 +170734929275,440,0 +170734929325,440,0 +170734929374,440,0 +170734929422,441,0 +170734929470,440,0 +170734929520,440,0 +170734929569,440,0 +170734929619,440,0 +170734929666,440,0 +170734929716,441,0 +170734929764,440,0 +170734929813,440,0 +170734929863,440,0 +170734929911,440,0 +170734929961,440,0 +170734930010,440,0 +170734930058,299,1 +170734930141,260,0 +170734930190,439,0 +170734930238,440,0 +170734930288,440,0 +170734930336,440,0 +170734930385,441,0 +170734930433,440,0 +170734930483,440,0 +170734930532,440,0 +170734930582,440,0 +170734930630,440,0 +170734930678,440,0 +170734930726,440,0 +170734930775,440,0 +170734930823,440,0 +170734930871,440,0 +170734930919,440,0 +170734930967,440,0 +170734931015,440,0 +170734931062,440,0 +170734931110,300,1 +170734931191,281,1 +170734931270,440,0 +170734931317,440,0 +170734931365,440,0 +170734931413,440,0 +170734931461,440,0 +170734931509,440,0 +170734931557,440,0 +170734931605,441,0 +170734931653,440,0 +170734931702,440,0 +170734931750,440,0 +170734931798,440,0 +170734931846,440,0 +170734931894,440,0 +170734931944,440,0 +170734931992,441,0 +170734932041,440,0 +170734932089,440,0 +170734932137,440,0 +170734932185,276,1 +170734932269,436,0 +170734932317,440,0 +170734932365,440,0 +170734932413,440,0 +170734932462,440,0 +170734932510,441,0 +170734932558,440,0 +170734932607,440,0 +170734932657,440,0 +170734932705,440,0 +170734932752,440,0 +170734932800,440,0 +170734932848,440,0 +170734932896,440,0 +170734932944,440,0 +170734932992,440,0 +170734933040,440,0 +170734933088,440,0 +170734933136,440,0 +170734933184,440,0 +170734933233,294,1 +170734933311,435,0 +170734933359,440,0 +170734933408,440,0 +170734933456,440,0 +170734933504,440,0 +170734933554,440,0 +170734933602,440,0 +170734933651,440,0 +170734933699,440,0 +170734933747,440,0 +170734933795,440,0 +170734933843,440,0 +170734933892,440,0 +170734933942,440,0 +170734933990,440,0 +170734934038,440,0 +170734934086,440,0 +170734934134,440,0 +170734934182,440,0 +170734934230,440,0 +170734934279,291,1 +170734934365,435,0 +170734934413,440,0 +170734934461,440,0 +170734934510,440,0 +170734934558,440,0 +170734934606,440,0 +170734934656,440,0 +170734934704,440,0 +170734934752,440,0 +170734934800,440,0 +170734934848,440,0 +170734934895,440,0 +170734934943,440,0 +170734934993,440,0 +170734935041,440,0 +170734935089,440,0 +170734935137,440,0 +170734935185,440,0 +170734935233,440,0 +170734935281,439,0 +170734935329,287,1 +170734935407,435,0 +170734935455,440,0 +170734935503,440,0 +170734935551,440,0 +170734935601,440,0 +170734935650,440,0 +170734935700,440,0 +170734935748,440,0 +170734935797,440,0 +170734935847,440,0 +170734935896,440,0 +170734935946,440,0 +170734935995,441,0 +170734936045,440,0 +170734936093,440,0 +170734936141,440,0 +170734936189,440,0 +170734936238,440,0 +170734936286,440,0 +170734936336,440,0 +170734936384,285,1 +170734936465,435,0 +170734936513,440,0 +170734936561,440,0 +170734936610,440,0 +170734936658,440,0 +170734936708,440,0 +170734936757,440,0 +170734936805,440,0 +170734936853,440,0 +170734936902,440,0 +170734936952,440,0 +170734937000,440,0 +170734937048,440,0 +170734937096,440,0 +170734937144,440,0 +170734937193,440,0 +170734937241,440,0 +170734937289,440,0 +170734937337,440,0 +170734937385,359,0 +170734937435,295,1 +170734937513,437,0 +170734937561,440,0 +170734937609,440,0 +170734937657,440,0 +170734937705,440,0 +170734937753,440,0 +170734937801,440,0 +170734937849,440,0 +170734937897,440,0 +170734937945,440,0 +170734937993,440,0 +170734938042,440,0 +170734938090,440,0 +170734938138,440,0 +170734938186,440,0 +170734938234,440,0 +170734938283,440,0 +170734938333,440,0 +170734938381,440,0 +170734938429,440,0 +170734938477,287,1 +170734938560,435,0 +170734938610,440,0 +170734938659,440,0 +170734938707,440,0 +170734938755,440,0 +170734938803,440,0 +170734938851,440,0 +170734938899,440,0 +170734938949,440,0 +170734938997,440,0 +170734939045,440,0 +170734939094,440,0 +170734939144,440,0 +170734939192,440,0 +170734939239,440,0 +170734939287,440,0 +170734939335,440,0 +170734939385,440,0 +170734939434,440,0 +170734939482,440,0 +170734939532,296,1 +170734939613,433,0 +170734939661,440,0 +170734939711,440,0 +170734939759,440,0 +170734939807,440,0 +170734939855,440,0 +170734939902,440,0 +170734939950,440,0 +170734939998,440,0 +170734940046,440,0 +170734940094,440,0 +170734940144,440,0 +170734940193,440,0 +170734940241,440,0 +170734940289,440,0 +170734940339,440,0 +170734940387,440,0 +170734940435,440,0 +170734940483,440,0 +170734940532,439,0 +170734940582,306,1 +170734940662,435,0 +170734940710,440,0 +170734940758,440,0 +170734940806,440,0 +170734940854,440,0 +170734940902,440,0 +170734940952,440,0 +170734941000,440,0 +170734941049,440,0 +170734941099,440,0 +170734941147,440,0 +170734941195,440,0 +170734941242,440,0 +170734941290,440,0 +170734941338,440,0 +170734941386,440,0 +170734941434,440,0 +170734941482,440,0 +170734941530,440,0 +170734941578,438,0 +170734941626,279,1 +170734941709,435,0 +170734941758,440,0 +170734941806,440,0 +170734941856,440,0 +170734941904,440,0 +170734941952,440,0 +170734942000,440,0 +170734942047,440,0 +170734942095,440,0 +170734942143,440,0 +170734942193,440,0 +170734942241,440,0 +170734942290,440,0 +170734942339,440,0 +170734942386,440,0 +170734942434,440,0 +170734942484,440,0 +170734942534,440,0 +170734942582,440,0 +170734942629,439,0 +170734942679,290,1 +170734942762,436,0 +170734942810,440,0 +170734942858,440,0 +170734942905,440,0 +170734942955,440,0 +170734943003,440,0 +170734943052,440,0 +170734943102,440,0 +170734943150,440,0 +170734943198,440,0 +170734943246,440,0 +170734943295,440,0 +170734943343,440,0 +170734943391,440,0 +170734943439,440,0 +170734943489,440,0 +170734943538,440,0 +170734943586,440,0 +170734943634,440,0 +170734943682,439,0 +170734943731,295,1 +170734943818,437,0 +170734943866,440,0 +170734943915,440,0 +170734943965,440,0 +170734944013,440,0 +170734944062,440,0 +170734944110,440,0 +170734944160,440,0 +170734944208,440,0 +170734944256,440,0 +170734944304,440,0 +170734944352,440,0 +170734944400,440,0 +170734944448,440,0 +170734944495,440,0 +170734944545,440,0 +170734944593,440,0 +170734944641,440,0 +170734944689,440,0 +170734944737,305,1 +170734944815,306,1 +170734944894,440,0 +170734944942,440,0 +170734944990,440,0 +170734945038,440,0 +170734945086,440,0 +170734945135,440,0 +170734945185,440,0 +170734945233,440,0 +170734945281,440,0 +170734945330,440,0 +170734945378,440,0 +170734945428,440,0 +170734945477,440,0 +170734945525,440,0 +170734945575,440,0 +170734945624,440,0 +170734945674,440,0 +170734945722,440,0 +170734945769,439,0 +170734945817,304,1 +170734945899,433,0 +170734945947,440,0 +170734945995,440,0 +170734946044,440,0 +170734946092,440,0 +170734946140,440,0 +170734946188,440,0 +170734946236,440,0 +170734946284,440,0 +170734946332,440,0 +170734946380,440,0 +170734946428,440,0 +170734946477,440,0 +170734946527,440,0 +170734946575,440,0 +170734946623,440,0 +170734946672,440,0 +170734946722,440,0 +170734946770,440,0 +170734946818,439,0 +170734946866,301,1 +170734946947,282,1 +170734947027,440,0 +170734947075,440,0 +170734947124,440,0 +170734947174,440,0 +170734947222,440,0 +170734947270,440,0 +170734947318,440,0 +170734947367,440,0 +170734947415,440,0 +170734947465,440,0 +170734947514,440,0 +170734947562,440,0 +170734947610,440,0 +170734947658,440,0 +170734947706,440,0 +170734947755,440,0 +170734947803,441,0 +170734947851,440,0 +170734947899,292,1 +170734947983,234,0 +170734948033,438,0 +170734948082,439,0 +170734948130,439,0 +170734948180,438,0 +170734948229,439,0 +170734948279,439,0 +170734948327,438,0 +170734948375,439,0 +170734948423,439,0 +170734948471,439,0 +170734948519,439,0 +170734948566,439,0 +170734948614,439,0 +170734948664,439,0 +170734948712,439,0 +170734948760,439,0 +170734948808,439,0 +170734948857,439,0 +170734948907,438,0 +170734948955,301,1 +170734949039,259,0 +170734949089,438,0 +170734949137,439,0 +170734949185,439,0 +170734949233,439,0 +170734949280,439,0 +170734949328,439,0 +170734949378,439,0 +170734949427,439,0 +170734949475,439,0 +170734949525,439,0 +170734949573,439,0 +170734949621,439,0 +170734949669,439,0 +170734949717,439,0 +170734949765,439,0 +170734949814,439,0 +170734949864,439,0 +170734949912,438,0 +170734949960,438,0 +170734950008,269,0 +170734950057,304,1 +170734950142,438,0 +170734950191,439,0 +170734950239,439,0 +170734950289,439,0 +170734950337,439,0 +170734950385,438,0 +170734950434,439,0 +170734950482,439,0 +170734950531,439,0 +170734950581,438,0 +170734950629,438,0 +170734950679,438,0 +170734950727,439,0 +170734950774,439,0 +170734950823,439,0 +170734950870,439,0 +170734950920,439,0 +170734950968,438,0 +170734951016,438,0 +170734951064,295,1 +170734951153,433,0 +170734951201,438,0 +170734951250,438,0 +170734951300,439,0 +170734951349,439,0 +170734951399,439,0 +170734951447,439,0 +170734951495,439,0 +170734951544,439,0 +170734951592,439,0 +170734951640,439,0 +170734951688,438,0 +170734951738,439,0 +170734951787,439,0 +170734951835,438,0 +170734951885,438,0 +170734951933,439,0 +170734951982,439,0 +170734952030,439,0 +170734952080,270,1 +170734952158,304,1 +170734952239,439,0 +170734952289,439,0 +170734952337,439,0 +170734952385,439,0 +170734952433,439,0 +170734952482,439,0 +170734952532,439,0 +170734952581,439,0 +170734952629,439,0 +170734952677,439,0 +170734952725,439,0 +170734952775,439,0 +170734952824,439,0 +170734952872,439,0 +170734952920,439,0 +170734952970,439,0 +170734953018,439,0 +170734953067,439,0 +170734953117,438,0 +170734953165,274,1 +170734953244,430,0 +170734953294,438,0 +170734953342,439,0 +170734953390,439,0 +170734953438,439,0 +170734953486,439,0 +170734953535,439,0 +170734953583,439,0 +170734953631,439,0 +170734953681,439,0 +170734953728,439,0 +170734953776,439,0 +170734953824,439,0 +170734953874,439,0 +170734953922,439,0 +170734953970,439,0 +170734954019,439,0 +170734954069,439,0 +170734954118,439,0 +170734954168,438,0 +170734954216,296,1 +170734954298,431,0 +170734954348,438,0 +170734954397,439,0 +170734954445,439,0 +170734954495,439,0 +170734954544,439,0 +170734954592,439,0 +170734954640,439,0 +170734954690,439,0 +170734954738,439,0 +170734954787,439,0 +170734954835,439,0 +170734954885,439,0 +170734954933,439,0 +170734954981,439,0 +170734955030,439,0 +170734955080,439,0 +170734955128,439,0 +170734955177,438,0 +170734955225,437,0 +170734955275,293,1 +170734955358,436,0 +170734955408,439,0 +170734955456,439,0 +170734955506,439,0 +170734955553,439,0 +170734955601,439,0 +170734955649,439,0 +170734955699,439,0 +170734955747,439,0 +170734955795,439,0 +170734955844,439,0 +170734955892,439,0 +170734955940,439,0 +170734955990,439,0 +170734956038,439,0 +170734956086,439,0 +170734956134,439,0 +170734956182,439,0 +170734956230,439,0 +170734956279,325,0 +170734956329,296,1 +170734956409,436,0 +170734956457,439,0 +170734956505,439,0 +170734956555,439,0 +170734956603,439,0 +170734956651,439,0 +170734956700,439,0 +170734956750,439,0 +170734956798,439,0 +170734956847,439,0 +170734956897,439,0 +170734956946,439,0 +170734956994,439,0 +170734957042,439,0 +170734957090,439,0 +170734957138,439,0 +170734957188,439,0 +170734957236,439,0 +170734957285,439,0 +170734957333,292,1 +170734957418,257,0 +170734957466,438,0 +170734957514,439,0 +170734957562,439,0 +170734957611,439,0 +170734957661,439,0 +170734957710,439,0 +170734957758,439,0 +170734957808,439,0 +170734957856,439,0 +170734957905,439,0 +170734957953,439,0 +170734958001,439,0 +170734958049,439,0 +170734958099,439,0 +170734958147,439,0 +170734958195,439,0 +170734958243,439,0 +170734958291,439,0 +170734958339,439,0 +170734958387,299,1 +170734958477,298,1 +170734958557,439,0 +170734958605,439,0 +170734958653,439,0 +170734958701,439,0 +170734958750,439,0 +170734958799,439,0 +170734958847,439,0 +170734958895,439,0 +170734958943,439,0 +170734958991,439,0 +170734959039,439,0 +170734959088,439,0 +170734959138,439,0 +170734959186,439,0 +170734959234,439,0 +170734959281,439,0 +170734959329,439,0 +170734959377,439,0 +170734959427,275,1 +170734959511,288,1 +170734959591,440,0 +170734959640,440,0 +170734959690,441,0 +170734959739,440,0 +170734959789,440,0 +170734959838,440,0 +170734959888,441,0 +170734959936,441,0 +170734959985,441,0 +170734960035,441,0 +170734960085,441,0 +170734960134,441,0 +170734960183,441,0 +170734960231,441,0 +170734960281,441,0 +170734960330,441,0 +170734960380,441,0 +170734960428,440,0 +170734960477,256,0 +170734960525,287,1 +170734960607,440,0 +170734960654,441,0 +170734960702,441,0 +170734960750,441,0 +170734960798,441,0 +170734960846,441,0 +170734960896,441,0 +170734960944,441,0 +170734960992,441,0 +170734961040,441,0 +170734961088,441,0 +170734961137,441,0 +170734961185,441,0 +170734961233,441,0 +170734961281,441,0 +170734961329,441,0 +170734961377,441,0 +170734961425,441,0 +170734961473,441,0 +170734961523,440,0 +170734961571,296,1 +170734961648,436,0 +170734961696,441,0 +170734961744,441,0 +170734961792,441,0 +170734961840,441,0 +170734961888,441,0 +170734961936,441,0 +170734961984,440,0 +170734962032,441,0 +170734962080,441,0 +170734962127,441,0 +170734962175,440,0 +170734962223,440,0 +170734962271,441,0 +170734962319,441,0 +170734962367,441,0 +170734962415,441,0 +170734962463,440,0 +170734962511,441,0 +170734962560,440,0 +170734962609,282,1 +170734962690,435,0 +170734962738,440,0 +170734962786,440,0 +170734962836,440,0 +170734962885,440,0 +170734962935,440,0 +170734962983,440,0 +170734963031,440,0 +170734963079,440,0 +170734963127,440,0 +170734963175,440,0 +170734963223,440,0 +170734963270,441,0 +170734963320,440,0 +170734963370,440,0 +170734963417,440,0 +170734963465,440,0 +170734963513,440,0 +170734963563,440,0 +170734963611,439,0 +170734963659,272,1 +170734963738,436,0 +170734963786,440,0 +170734963834,441,0 +170734963882,440,0 +170734963930,440,0 +170734963978,440,0 +170734964026,440,0 +170734964074,441,0 +170734964123,440,0 +170734964171,441,0 +170734964221,440,0 +170734964269,441,0 +170734964317,440,0 +170734964365,441,0 +170734964414,441,0 +170734964464,441,0 +170734964512,440,0 +170734964560,440,0 +170734964608,440,0 +170734964656,440,0 +170734964703,248,0 +170734964751,301,1 +170734964831,440,0 +170734964879,440,0 +170734964929,440,0 +170734964978,441,0 +170734965026,440,0 +170734965074,441,0 +170734965122,440,0 +170734965170,440,0 +170734965218,440,0 +170734965266,440,0 +170734965316,440,0 +170734965365,440,0 +170734965415,440,0 +170734965463,441,0 +170734965511,440,0 +170734965558,440,0 +170734965608,441,0 +170734965656,441,0 +170734965704,440,0 +170734965753,301,1 +170734965834,432,0 +170734965883,440,0 +170734965931,441,0 +170734965979,441,0 +170734966027,440,0 +170734966075,440,0 +170734966125,440,0 +170734966173,441,0 +170734966221,440,0 +170734966270,440,0 +170734966318,441,0 +170734966366,440,0 +170734966414,441,0 +170734966464,441,0 +170734966513,441,0 +170734966563,440,0 +170734966611,440,0 +170734966659,440,0 +170734966707,440,0 +170734966756,438,0 +170734966806,285,1 +170734966885,436,0 +170734966933,441,0 +170734966983,440,0 +170734967031,440,0 +170734967079,440,0 +170734967126,441,0 +170734967174,441,0 +170734967224,441,0 +170734967272,440,0 +170734967320,440,0 +170734967369,440,0 +170734967417,440,0 +170734967465,440,0 +170734967513,441,0 +170734967561,441,0 +170734967610,440,0 +170734967658,441,0 +170734967708,440,0 +170734967755,441,0 +170734967803,440,0 +170734967853,287,1 +170734967935,435,0 +170734967983,440,0 +170734968031,440,0 +170734968079,440,0 +170734968129,440,0 +170734968177,440,0 +170734968225,440,0 +170734968274,440,0 +170734968324,441,0 +170734968373,441,0 +170734968421,441,0 +170734968469,441,0 +170734968519,441,0 +170734968567,441,0 +170734968615,440,0 +170734968664,441,0 +170734968712,440,0 +170734968762,440,0 +170734968811,440,0 +170734968861,440,0 +170734968910,310,0 +170734968960,288,1 +170734969045,440,0 +170734969093,440,0 +170734969142,441,0 +170734969190,441,0 +170734969240,441,0 +170734969289,440,0 +170734969339,441,0 +170734969387,440,0 +170734969435,441,0 +170734969483,440,0 +170734969532,440,0 +170734969580,440,0 +170734969628,440,0 +170734969678,440,0 +170734969727,440,0 +170734969775,441,0 +170734969825,441,0 +170734969873,440,0 +170734969922,293,1 +170734970002,272,1 +170734970078,440,0 +170734970126,440,0 +170734970174,440,0 +170734970222,440,0 +170734970270,440,0 +170734970320,440,0 +170734970368,440,0 +170734970417,440,0 +170734970465,440,0 +170734970515,440,0 +170734970563,440,0 +170734970612,440,0 +170734970660,440,0 +170734970710,440,0 +170734970758,440,0 +170734970806,440,0 +170734970855,440,0 +170734970903,440,0 +170734970953,439,0 +170734971001,299,1 +170734971079,434,0 +170734971127,440,0 +170734971176,440,0 +170734971224,440,0 +170734971272,440,0 +170734971320,440,0 +170734971370,440,0 +170734971419,440,0 +170734971467,440,0 +170734971517,440,0 +170734971565,440,0 +170734971613,440,0 +170734971662,440,0 +170734971710,440,0 +170734971758,440,0 +170734971808,440,0 +170734971856,440,0 +170734971903,440,0 +170734971953,440,0 +170734972001,439,0 +170734972051,290,1 +170734972138,437,0 +170734972188,440,0 +170734972237,440,0 +170734972285,440,0 +170734972333,440,0 +170734972381,440,0 +170734972429,440,0 +170734972477,440,0 +170734972524,440,0 +170734972572,440,0 +170734972620,440,0 +170734972668,440,0 +170734972716,440,0 +170734972765,440,0 +170734972813,440,0 +170734972863,440,0 +170734972911,440,0 +170734972958,440,0 +170734973006,440,0 +170734973054,438,0 +170734973102,309,1 +170734973181,435,0 +170734973229,440,0 +170734973278,440,0 +170734973326,440,0 +170734973374,440,0 +170734973422,440,0 +170734973471,440,0 +170734973519,440,0 +170734973567,440,0 +170734973615,440,0 +170734973663,440,0 +170734973711,440,0 +170734973761,440,0 +170734973809,440,0 +170734973858,440,0 +170734973908,440,0 +170734973957,440,0 +170734974005,440,0 +170734974053,440,0 +170734974101,437,0 +170734974149,301,1 +170734974236,438,0 +170734974283,440,0 +170734974333,440,0 +170734974381,440,0 +170734974429,440,0 +170734974477,440,0 +170734974525,440,0 +170734974574,440,0 +170734974624,440,0 +170734974672,440,0 +170734974720,440,0 +170734974769,440,0 +170734974817,440,0 +170734974867,440,0 +170734974915,440,0 +170734974964,440,0 +170734975012,440,0 +170734975060,440,0 +170734975108,440,0 +170734975158,281,1 +170734975238,309,1 +170734975320,440,0 +170734975368,440,0 +170734975417,440,0 +170734975465,440,0 +170734975513,440,0 +170734975563,440,0 +170734975612,440,0 +170734975660,440,0 +170734975708,440,0 +170734975757,440,0 +170734975805,440,0 +170734975853,440,0 +170734975903,440,0 +170734975951,440,0 +170734975999,440,0 +170734976046,440,0 +170734976094,440,0 +170734976142,440,0 +170734976192,439,0 +170734976241,294,1 +170734976330,435,0 +170734976379,440,0 +170734976427,440,0 +170734976477,440,0 +170734976526,440,0 +170734976576,440,0 +170734976625,440,0 +170734976673,440,0 +170734976723,440,0 +170734976772,440,0 +170734976820,440,0 +170734976868,440,0 +170734976918,440,0 +170734976967,440,0 +170734977015,440,0 +170734977064,440,0 +170734977114,440,0 +170734977162,440,0 +170734977210,440,0 +170734977258,289,1 +170734977339,293,1 +170734977422,440,0 +170734977472,440,0 +170734977520,440,0 +170734977568,440,0 +170734977617,440,0 +170734977667,440,0 +170734977716,440,0 +170734977764,440,0 +170734977812,440,0 +170734977862,440,0 +170734977910,440,0 +170734977959,440,0 +170734978007,440,0 +170734978055,440,0 +170734978103,440,0 +170734978151,440,0 +170734978200,440,0 +170734978248,440,0 +170734978298,333,0 +170734978347,299,1 +170734978428,436,0 +170734978476,440,0 +170734978524,440,0 +170734978572,440,0 +170734978620,440,0 +170734978668,440,0 +170734978717,440,0 +170734978765,440,0 +170734978813,440,0 +170734978863,440,0 +170734978912,440,0 +170734978962,440,0 +170734979010,440,0 +170734979058,440,0 +170734979106,440,0 +170734979154,440,0 +170734979201,440,0 +170734979249,440,0 +170734979297,440,0 +170734979347,435,0 +170734979395,305,1 +170734979485,439,0 +170734979533,439,0 +170734979581,440,0 +170734979630,440,0 +170734979680,440,0 +170734979729,440,0 +170734979777,440,0 +170734979825,440,0 +170734979873,440,0 +170734979921,440,0 +170734979969,440,0 +170734980018,440,0 +170734980066,440,0 +170734980116,440,0 +170734980164,440,0 +170734980213,440,0 +170734980263,440,0 +170734980313,440,0 +170734980361,439,0 +170734980410,301,1 +170734980495,247,0 +170734980543,439,0 +170734980590,440,0 +170734980640,440,0 +170734980690,440,0 +170734980739,440,0 +170734980787,439,0 +170734980835,440,0 +170734980884,440,0 +170734980934,440,0 +170734980982,440,0 +170734981030,440,0 +170734981078,440,0 +170734981127,440,0 +170734981177,440,0 +170734981225,440,0 +170734981274,440,0 +170734981322,440,0 +170734981372,440,0 +170734981422,439,0 +170734981469,301,1 +170734981549,431,0 +170734981597,440,0 +170734981645,440,0 +170734981692,440,0 +170734981740,440,0 +170734981788,440,0 +170734981838,440,0 +170734981886,440,0 +170734981936,440,0 +170734981983,440,0 +170734982033,440,0 +170734982081,440,0 +170734982129,440,0 +170734982177,440,0 +170734982225,440,0 +170734982273,440,0 +170734982322,440,0 +170734982370,440,0 +170734982420,440,0 +170734982468,440,0 +170734982517,292,1 +170734982598,412,0 +170734982648,440,0 +170734982697,440,0 +170734982745,440,0 +170734982793,440,0 +170734982843,440,0 +170734982891,440,0 +170734982938,440,0 +170734982986,440,0 +170734983034,440,0 +170734983084,440,0 +170734983133,440,0 +170734983181,440,0 +170734983231,440,0 +170734983280,440,0 +170734983329,440,0 +170734983377,440,0 +170734983427,222,0 +170734983475,218,0 +170734983524,221,0 +170734983572,245,0 +170734983620,251,0 +170734983668,437,0 +170734983718,440,0 +170734983766,440,0 +170734983815,440,0 +170734983863,440,0 +170734983911,440,0 +170734983960,440,0 +170734984008,440,0 +170734984058,440,0 +170734984105,440,0 +170734984155,440,0 +170734984203,440,0 +170734984251,440,0 +170734984300,440,0 +170734984348,440,0 +170734984396,440,0 +170734984444,440,0 +170734984492,440,0 +170734984540,440,0 +170734984588,438,0 +170734984637,297,1 +170734984718,436,0 +170734984766,440,0 +170734984815,440,0 +170734984863,440,0 +170734984912,440,0 +170734984962,440,0 +170734985010,440,0 +170734985058,440,0 +170734985107,440,0 +170734985155,440,0 +170734985203,440,0 +170734985251,440,0 +170734985298,440,0 +170734985346,440,0 +170734985394,440,0 +170734985442,440,0 +170734985490,440,0 +170734985539,440,0 +170734985587,440,0 +170734985637,436,0 +170734985685,302,1 +170734985765,435,0 +170734985814,440,0 +170734985864,440,0 +170734985912,440,0 +170734985960,440,0 +170734986009,440,0 +170734986059,440,0 +170734986108,440,0 +170734986158,439,0 +170734986207,440,0 +170734986257,440,0 +170734986305,440,0 +170734986354,440,0 +170734986402,440,0 +170734986452,440,0 +170734986500,440,0 +170734986549,440,0 +170734986597,440,0 +170734986645,440,0 +170734986695,267,0 +170734986743,299,1 +170734986821,437,0 +170734986869,440,0 +170734986917,440,0 +170734986965,440,0 +170734987014,440,0 +170734987063,440,0 +170734987113,440,0 +170734987161,440,0 +170734987208,440,0 +170734987256,440,0 +170734987306,440,0 +170734987355,440,0 +170734987403,440,0 +170734987453,440,0 +170734987502,440,0 +170734987550,440,0 +170734987600,439,0 +170734987648,440,0 +170734987696,439,0 +170734987745,293,1 +170734987830,245,0 +170734987878,439,0 +170734987926,440,0 +170734987974,440,0 +170734988022,440,0 +170734988070,440,0 +170734988118,440,0 +170734988166,440,0 +170734988214,440,0 +170734988262,440,0 +170734988310,440,0 +170734988359,440,0 +170734988409,440,0 +170734988457,440,0 +170734988504,440,0 +170734988552,440,0 +170734988600,440,0 +170734988650,440,0 +170734988698,440,0 +170734988745,440,0 +170734988795,281,1 +170734988878,234,0 +170734988926,440,0 +170734988973,440,0 +170734989023,440,0 +170734989071,440,0 +170734989119,440,0 +170734989166,440,0 +170734989214,440,0 +170734989264,440,0 +170734989313,440,0 +170734989361,440,0 +170734989409,440,0 +170734989458,439,0 +170734989506,440,0 +170734989554,440,0 +170734989602,440,0 +170734989650,440,0 +170734989700,440,0 +170734989747,440,0 +170734989795,440,0 +170734989843,300,1 +170734989920,302,1 +170734989997,440,0 +170734990045,440,0 +170734990092,440,0 +170734990140,440,0 +170734990190,440,0 +170734990238,440,0 +170734990286,440,0 +170734990335,440,0 +170734990385,440,0 +170734990432,440,0 +170734990480,440,0 +170734990530,440,0 +170734990579,440,0 +170734990627,440,0 +170734990675,440,0 +170734990723,440,0 +170734990771,440,0 +170734990819,440,0 +170734990866,439,0 +170734990914,307,1 +170734990990,276,1 +170734991070,440,0 +170734991118,440,0 +170734991166,440,0 +170734991215,440,0 +170734991263,440,0 +170734991311,440,0 +170734991359,440,0 +170734991407,440,0 +170734991456,440,0 +170734991504,440,0 +170734991553,440,0 +170734991603,440,0 +170734991651,440,0 +170734991699,440,0 +170734991746,440,0 +170734991794,440,0 +170734991842,440,0 +170734991890,439,0 +170734991938,296,1 +170734992018,250,0 +170734992067,439,0 +170734992117,440,0 +170734992165,440,0 +170734992213,440,0 +170734992261,440,0 +170734992310,440,0 +170734992358,440,0 +170734992408,440,0 +170734992456,440,0 +170734992504,440,0 +170734992552,440,0 +170734992600,440,0 +170734992648,440,0 +170734992696,440,0 +170734992745,440,0 +170734992794,440,0 +170734992842,440,0 +170734992892,440,0 +170734992940,439,0 +170734992988,293,1 +170734993069,286,1 +170734993147,440,0 +170734993195,440,0 +170734993243,440,0 +170734993293,440,0 +170734993342,440,0 +170734993390,440,0 +170734993438,440,0 +170734993486,440,0 +170734993534,440,0 +170734993584,440,0 +170734993633,440,0 +170734993681,440,0 +170734993729,440,0 +170734993777,440,0 +170734993827,440,0 +170734993875,440,0 +170734993924,440,0 +170734993974,440,0 +170734994023,436,0 +170734994071,297,1 +170734994158,438,0 +170734994207,440,0 +170734994255,439,0 +170734994303,440,0 +170734994351,440,0 +170734994399,440,0 +170734994447,440,0 +170734994495,439,0 +170734994544,440,0 +170734994592,440,0 +170734994640,440,0 +170734994688,440,0 +170734994736,439,0 +170734994784,439,0 +170734994834,440,0 +170734994882,440,0 +170734994930,440,0 +170734994979,439,0 +170734995029,439,0 +170734995077,279,1 +170734995157,287,1 +170734995237,440,0 +170734995286,439,0 +170734995336,440,0 +170734995384,439,0 +170734995433,439,0 +170734995483,439,0 +170734995530,439,0 +170734995580,440,0 +170734995628,440,0 +170734995676,439,0 +170734995724,439,0 +170734995773,440,0 +170734995821,440,0 +170734995869,440,0 +170734995917,439,0 +170734995967,440,0 +170734996016,440,0 +170734996066,440,0 +170734996115,426,0 +170734996165,307,1 +170734996249,437,0 +170734996297,440,0 +170734996345,440,0 +170734996393,440,0 +170734996442,439,0 +170734996490,440,0 +170734996540,440,0 +170734996588,440,0 +170734996637,439,0 +170734996685,439,0 +170734996733,440,0 +170734996781,439,0 +170734996829,440,0 +170734996879,439,0 +170734996927,440,0 +170734996975,440,0 +170734997023,440,0 +170734997072,439,0 +170734997120,440,0 +170734997168,414,0 +170734997218,298,1 +170734997299,436,0 +170734997347,439,0 +170734997397,440,0 +170734997446,439,0 +170734997494,440,0 +170734997544,439,0 +170734997592,440,0 +170734997640,440,0 +170734997689,439,0 +170734997739,439,0 +170734997787,440,0 +170734997835,439,0 +170734997884,439,0 +170734997934,439,0 +170734997982,439,0 +170734998031,440,0 +170734998081,439,0 +170734998129,440,0 +170734998176,439,0 +170734998224,393,0 +170734998272,309,1 +170734998353,438,0 +170734998401,439,0 +170734998451,439,0 +170734998500,439,0 +170734998548,439,0 +170734998598,440,0 +170734998647,439,0 +170734998695,439,0 +170734998745,440,0 +170734998792,440,0 +170734998840,440,0 +170734998889,439,0 +170734998936,439,0 +170734998986,439,0 +170734999034,439,0 +170734999084,440,0 +170734999131,440,0 +170734999179,440,0 +170734999227,439,0 +170734999277,304,1 +170734999355,283,1 +170734999431,439,0 +170734999481,439,0 +170734999530,440,0 +170734999580,440,0 +170734999629,439,0 +170734999677,440,0 +170734999725,440,0 +170734999773,439,0 +170734999821,440,0 +170734999869,439,0 +170734999919,439,0 +170734999967,439,0 +170735000015,440,0 +170735000063,439,0 +170735000111,439,0 +170735000159,439,0 +170735000208,439,0 +170735000256,439,0 +170735000304,438,0 +170735000354,307,1 +170735000436,436,0 +170735000484,439,0 +170735000532,440,0 +170735000580,439,0 +170735000629,439,0 +170735000677,440,0 +170735000725,440,0 +170735000773,439,0 +170735000823,439,0 +170735000871,439,0 +170735000920,439,0 +170735000968,439,0 +170735001018,440,0 +170735001067,439,0 +170735001115,439,0 +170735001163,440,0 +170735001213,440,0 +170735001262,440,0 +170735001310,439,0 +170735001360,435,0 +170735001409,301,1 +170735001486,436,0 +170735001534,439,0 +170735001584,440,0 +170735001633,439,0 +170735001681,440,0 +170735001729,439,0 +170735001779,439,0 +170735001827,439,0 +170735001875,439,0 +170735001924,439,0 +170735001973,439,0 +170735002023,439,0 +170735002071,439,0 +170735002119,439,0 +170735002167,439,0 +170735002215,439,0 +170735002263,439,0 +170735002311,439,0 +170735002359,439,0 +170735002406,437,0 +170735002454,298,1 +170735002535,435,0 +170735002583,439,0 +170735002631,439,0 +170735002679,439,0 +170735002727,439,0 +170735002775,439,0 +170735002824,439,0 +170735002872,440,0 +170735002922,439,0 +170735002970,440,0 +170735003018,439,0 +170735003066,439,0 +170735003114,440,0 +170735003162,439,0 +170735003210,440,0 +170735003258,439,0 +170735003306,439,0 +170735003355,439,0 +170735003403,439,0 +170735003451,402,0 +170735003499,304,1 +170735003579,435,0 +170735003627,439,0 +170735003676,439,0 +170735003724,439,0 +170735003772,440,0 +170735003820,439,0 +170735003868,439,0 +170735003916,439,0 +170735003965,439,0 +170735004015,440,0 +170735004063,439,0 +170735004111,439,0 +170735004160,439,0 +170735004210,439,0 +170735004258,440,0 +170735004306,439,0 +170735004355,440,0 +170735004405,439,0 +170735004453,439,0 +170735004501,437,0 +170735004550,301,1 +170735004633,437,0 +170735004681,439,0 +170735004729,439,0 +170735004777,439,0 +170735004826,439,0 +170735004874,440,0 +170735004922,439,0 +170735004970,439,0 +170735005018,439,0 +170735005066,439,0 +170735005114,439,0 +170735005162,439,0 +170735005210,440,0 +170735005258,440,0 +170735005306,439,0 +170735005354,439,0 +170735005402,439,0 +170735005450,439,0 +170735005498,439,0 +170735005546,439,0 +170735005594,304,1 +170735005682,435,0 +170735005730,439,0 +170735005780,439,0 +170735005828,439,0 +170735005876,439,0 +170735005925,439,0 +170735005975,439,0 +170735006023,439,0 +170735006071,440,0 +170735006119,440,0 +170735006167,439,0 +170735006215,439,0 +170735006262,439,0 +170735006310,439,0 +170735006360,439,0 +170735006409,439,0 +170735006459,439,0 +170735006507,440,0 +170735006556,439,0 +170735006604,276,1 +170735006685,291,1 +170735006764,439,0 +170735006813,439,0 +170735006863,439,0 +170735006911,440,0 +170735006959,440,0 +170735007007,439,0 +170735007055,439,0 +170735007102,440,0 +170735007152,439,0 +170735007201,439,0 +170735007251,439,0 +170735007300,440,0 +170735007348,439,0 +170735007396,439,0 +170735007444,439,0 +170735007494,439,0 +170735007543,439,0 +170735007593,439,0 +170735007641,438,0 +170735007690,304,1 +170735007771,435,0 +170735007819,439,0 +170735007867,439,0 +170735007915,439,0 +170735007963,439,0 +170735008012,439,0 +170735008060,439,0 +170735008110,440,0 +170735008158,440,0 +170735008206,439,0 +170735008255,439,0 +170735008305,439,0 +170735008354,439,0 +170735008404,439,0 +170735008452,440,0 +170735008501,439,0 +170735008549,439,0 +170735008599,439,0 +170735008647,440,0 +170735008695,437,0 +170735008743,294,1 +170735008828,438,0 +170735008876,439,0 +170735008926,439,0 +170735008974,439,0 +170735009023,439,0 +170735009073,439,0 +170735009121,439,0 +170735009169,439,0 +170735009218,439,0 +170735009268,439,0 +170735009316,439,0 +170735009364,439,0 +170735009412,439,0 +170735009460,439,0 +170735009508,439,0 +170735009556,440,0 +170735009604,439,0 +170735009652,439,0 +170735009701,439,0 +170735009751,304,1 +170735009836,281,1 +170735009911,439,0 +170735009959,439,0 +170735010008,439,0 +170735010056,440,0 +170735010104,439,0 +170735010154,439,0 +170735010202,439,0 +170735010251,439,0 +170735010299,439,0 +170735010347,439,0 +170735010395,439,0 +170735010445,440,0 +170735010494,439,0 +170735010544,440,0 +170735010593,439,0 +170735010641,440,0 +170735010689,439,0 +170735010737,439,0 +170735010785,435,0 +170735010833,305,1 +170735010911,435,0 +170735010959,439,0 +170735011007,439,0 +170735011055,439,0 +170735011104,440,0 +170735011154,439,0 +170735011204,440,0 +170735011253,439,0 +170735011301,440,0 +170735011351,439,0 +170735011399,439,0 +170735011447,440,0 +170735011496,439,0 +170735011544,440,0 +170735011592,439,0 +170735011642,439,0 +170735011689,439,0 +170735011737,440,0 +170735011785,439,0 +170735011835,440,0 +170735011883,440,0 +170735011932,439,0 +170735011982,439,0 +170735012030,439,0 +170735012078,440,0 +170735012127,440,0 +170735012175,439,0 +170735012223,439,0 +170735012271,440,0 +170735012319,439,0 +170735012369,277,1 +170735012451,289,1 +170735012531,439,0 +170735012581,440,0 +170735012629,439,0 +170735012678,439,0 +170735012726,439,0 +170735012774,439,0 +170735012822,439,0 +170735012870,440,0 +170735012918,439,0 +170735012967,439,0 +170735013015,439,0 +170735013065,439,0 +170735013113,439,0 +170735013161,440,0 +170735013209,439,0 +170735013258,439,0 +170735013306,439,0 +170735013356,439,0 +170735013404,428,0 +170735013453,305,1 +170735013537,436,0 +170735013586,439,0 +170735013634,440,0 +170735013682,439,0 +170735013732,439,0 +170735013780,439,0 +170735013828,439,0 +170735013877,440,0 +170735013925,439,0 +170735013973,439,0 +170735014021,439,0 +170735014071,440,0 +170735014120,440,0 +170735014168,440,0 +170735014218,439,0 +170735014266,440,0 +170735014315,439,0 +170735014363,439,0 +170735014413,439,0 +170735014460,276,1 +170735014543,297,1 +170735014622,439,0 +170735014670,439,0 +170735014718,440,0 +170735014766,439,0 +170735014816,439,0 +170735014864,439,0 +170735014911,439,0 +170735014959,440,0 +170735015009,440,0 +170735015057,439,0 +170735015105,439,0 +170735015153,439,0 +170735015201,440,0 +170735015250,440,0 +170735015298,440,0 +170735015346,440,0 +170735015394,440,0 +170735015442,439,0 +170735015490,439,0 +170735015538,282,1 +170735015617,430,0 +170735015667,439,0 +170735015715,440,0 +170735015764,440,0 +170735015812,440,0 +170735015862,440,0 +170735015910,439,0 +170735015958,439,0 +170735016006,440,0 +170735016055,439,0 +170735016104,439,0 +170735016152,440,0 +170735016200,440,0 +170735016248,440,0 +170735016297,440,0 +170735016345,440,0 +170735016393,439,0 +170735016441,440,0 +170735016491,440,0 +170735016540,439,0 +170735016588,295,1 +170735016671,433,0 +170735016720,440,0 +170735016770,439,0 +170735016818,439,0 +170735016867,440,0 +170735016915,440,0 +170735016963,439,0 +170735017011,440,0 +170735017061,439,0 +170735017109,440,0 +170735017156,440,0 +170735017204,440,0 +170735017252,440,0 +170735017300,440,0 +170735017350,440,0 +170735017397,440,0 +170735017445,439,0 +170735017495,440,0 +170735017543,439,0 +170735017592,427,0 +170735017640,293,1 +170735017726,437,0 +170735017774,439,0 +170735017824,440,0 +170735017871,439,0 +170735017919,440,0 +170735017967,440,0 +170735018017,439,0 +170735018065,440,0 +170735018113,440,0 +170735018160,439,0 +170735018210,440,0 +170735018258,440,0 +170735018306,439,0 +170735018354,440,0 +170735018402,440,0 +170735018450,440,0 +170735018498,439,0 +170735018547,439,0 +170735018595,439,0 +170735018645,437,0 +170735018694,297,1 +170735018772,434,0 +170735018821,439,0 +170735018869,440,0 +170735018917,439,0 +170735018967,440,0 +170735019015,440,0 +170735019062,440,0 +170735019112,440,0 +170735019160,439,0 +170735019208,440,0 +170735019257,440,0 +170735019305,440,0 +170735019353,440,0 +170735019403,439,0 +170735019452,439,0 +170735019500,440,0 +170735019548,439,0 +170735019598,440,0 +170735019647,439,0 +170735019695,413,0 +170735019745,299,1 +170735019826,436,0 +170735019876,439,0 +170735019923,439,0 +170735019971,439,0 +170735020021,440,0 +170735020071,440,0 +170735020120,439,0 +170735020168,439,0 +170735020217,439,0 +170735020265,439,0 +170735020315,439,0 +170735020364,440,0 +170735020414,440,0 +170735020463,439,0 +170735020511,439,0 +170735020559,439,0 +170735020609,440,0 +170735020659,439,0 +170735020708,439,0 +170735020756,309,1 +170735020838,264,0 +170735020888,439,0 +170735020936,440,0 +170735020985,440,0 +170735021033,440,0 +170735021081,439,0 +170735021129,439,0 +170735021177,440,0 +170735021225,440,0 +170735021275,440,0 +170735021324,440,0 +170735021374,439,0 +170735021422,439,0 +170735021470,440,0 +170735021519,439,0 +170735021569,439,0 +170735021618,440,0 +170735021668,439,0 +170735021716,440,0 +170735021764,439,0 +170735021813,302,1 +170735021894,272,1 +170735021974,440,0 +170735022022,440,0 +170735022070,439,0 +170735022118,440,0 +170735022166,440,0 +170735022215,440,0 +170735022263,439,0 +170735022313,440,0 +170735022362,439,0 +170735022410,440,0 +170735022458,439,0 +170735022506,440,0 +170735022554,439,0 +170735022602,440,0 +170735022651,440,0 +170735022701,440,0 +170735022750,440,0 +170735022798,439,0 +170735022846,301,1 +170735022927,294,1 +170735023005,439,0 +170735023053,440,0 +170735023103,440,0 +170735023151,439,0 +170735023200,440,0 +170735023248,440,0 +170735023298,440,0 +170735023345,439,0 +170735023393,440,0 +170735023443,440,0 +170735023491,439,0 +170735023539,439,0 +170735023587,439,0 +170735023635,440,0 +170735023684,440,0 +170735023732,440,0 +170735023780,440,0 +170735023830,439,0 +170735023878,438,0 +170735023926,295,1 +170735024017,437,0 +170735024065,439,0 +170735024113,439,0 +170735024161,440,0 +170735024209,440,0 +170735024257,440,0 +170735024305,439,0 +170735024353,440,0 +170735024401,439,0 +170735024449,440,0 +170735024496,439,0 +170735024544,439,0 +170735024592,440,0 +170735024642,440,0 +170735024690,439,0 +170735024738,440,0 +170735024787,440,0 +170735024837,439,0 +170735024884,440,0 +170735024934,436,0 +170735024984,263,0 +170735025032,248,0 +170735025080,439,0 +170735025129,439,0 +170735025177,439,0 +170735025225,440,0 +170735025274,439,0 +170735025322,440,0 +170735025372,440,0 +170735025420,439,0 +170735025469,439,0 +170735025517,440,0 +170735025565,439,0 +170735025613,440,0 +170735025661,439,0 +170735025709,439,0 +170735025757,439,0 +170735025805,439,0 +170735025854,440,0 +170735025902,439,0 +170735025950,439,0 +170735026000,309,1 +170735026083,234,0 +170735026133,439,0 +170735026182,439,0 +170735026232,440,0 +170735026280,440,0 +170735026328,439,0 +170735026376,439,0 +170735026424,439,0 +170735026471,439,0 +170735026519,439,0 +170735026567,439,0 +170735026615,439,0 +170735026663,440,0 +170735026713,439,0 +170735026761,440,0 +170735026809,439,0 +170735026858,439,0 +170735026906,440,0 +170735026954,440,0 +170735027004,439,0 +170735027053,300,1 +170735027134,251,0 +170735027183,439,0 +170735027231,440,0 +170735027280,440,0 +170735027328,440,0 +170735027376,439,0 +170735027424,439,0 +170735027474,439,0 +170735027523,439,0 +170735027573,440,0 +170735027621,439,0 +170735027669,440,0 +170735027718,439,0 +170735027766,439,0 +170735027814,439,0 +170735027862,440,0 +170735027912,440,0 +170735027959,440,0 +170735028007,439,0 +170735028055,439,0 +170735028103,304,1 +170735028181,283,1 +170735028260,439,0 +170735028310,439,0 +170735028357,440,0 +170735028405,439,0 +170735028453,439,0 +170735028501,439,0 +170735028549,440,0 +170735028599,439,0 +170735028648,439,0 +170735028698,439,0 +170735028746,439,0 +170735028794,439,0 +170735028842,440,0 +170735028889,439,0 +170735028937,439,0 +170735028985,439,0 +170735029033,440,0 +170735029081,439,0 +170735029130,286,1 +170735029209,304,1 +170735029286,439,0 +170735029334,440,0 +170735029382,439,0 +170735029430,440,0 +170735029478,439,0 +170735029526,440,0 +170735029573,439,0 +170735029623,440,0 +170735029673,440,0 +170735029721,440,0 +170735029768,439,0 +170735029816,439,0 +170735029864,440,0 +170735029912,439,0 +170735029960,440,0 +170735030008,439,0 +170735030056,440,0 +170735030106,439,0 +170735030154,439,0 +170735030202,309,1 +170735030281,380,0 +170735030329,439,0 +170735030379,439,0 +170735030428,440,0 +170735030478,439,0 +170735030527,439,0 +170735030575,439,0 +170735030623,440,0 +170735030671,440,0 +170735030719,440,0 +170735030767,439,0 +170735030816,439,0 +170735030866,440,0 +170735030915,439,0 +170735030965,440,0 +170735031013,439,0 +170735031061,439,0 +170735031110,439,0 +170735031160,439,0 +170735031208,439,0 +170735031257,307,1 +170735031334,385,0 +170735031382,439,0 +170735031432,439,0 +170735031480,439,0 +170735031528,439,0 +170735031576,439,0 +170735031624,440,0 +170735031672,439,0 +170735031719,439,0 +170735031767,439,0 +170735031817,440,0 +170735031865,439,0 +170735031913,439,0 +170735031961,439,0 +170735032009,439,0 +170735032057,440,0 +170735032105,439,0 +170735032154,439,0 +170735032204,439,0 +170735032253,439,0 +170735032301,306,1 +170735032385,431,0 +170735032432,439,0 +170735032480,440,0 +170735032530,439,0 +170735032579,439,0 +170735032627,439,0 +170735032677,439,0 +170735032725,439,0 +170735032773,440,0 +170735032821,440,0 +170735032870,439,0 +170735032918,439,0 +170735032966,439,0 +170735033014,439,0 +170735033062,440,0 +170735033110,439,0 +170735033158,439,0 +170735033206,439,0 +170735033253,440,0 +170735033301,439,0 +170735033349,277,1 +170735033428,400,0 +170735033476,439,0 +170735033524,439,0 +170735033572,439,0 +170735033620,439,0 +170735033668,440,0 +170735033716,439,0 +170735033764,440,0 +170735033812,439,0 +170735033861,439,0 +170735033911,439,0 +170735033960,439,0 +170735034010,439,0 +170735034058,439,0 +170735034106,439,0 +170735034155,440,0 +170735034203,439,0 +170735034253,440,0 +170735034303,439,0 +170735034350,439,0 +170735034400,270,1 +170735034481,398,0 +170735034529,439,0 +170735034577,439,0 +170735034624,439,0 +170735034672,440,0 +170735034720,439,0 +170735034768,439,0 +170735034816,439,0 +170735034864,439,0 +170735034913,440,0 +170735034963,439,0 +170735035012,440,0 +170735035060,439,0 +170735035108,439,0 +170735035158,440,0 +170735035207,439,0 +170735035255,439,0 +170735035305,439,0 +170735035353,439,0 +170735035401,439,0 +170735035450,289,1 +170735035532,406,0 +170735035580,439,0 +170735035628,439,0 +170735035676,439,0 +170735035726,439,0 +170735035774,439,0 +170735035822,439,0 +170735035870,440,0 +170735035917,439,0 +170735035965,439,0 +170735036015,439,0 +170735036063,440,0 +170735036111,439,0 +170735036159,439,0 +170735036207,439,0 +170735036256,439,0 +170735036304,440,0 +170735036354,439,0 +170735036402,440,0 +170735036450,438,0 +170735036499,290,1 +170735036583,433,0 +170735036631,439,0 +170735036679,439,0 +170735036727,439,0 +170735036775,439,0 +170735036823,439,0 +170735036872,440,0 +170735036920,439,0 +170735036970,439,0 +170735037019,439,0 +170735037067,440,0 +170735037117,439,0 +170735037165,439,0 +170735037213,439,0 +170735037262,439,0 +170735037310,439,0 +170735037358,439,0 +170735037406,440,0 +170735037456,439,0 +170735037505,439,0 +170735037553,300,1 +170735037634,431,0 +170735037682,439,0 +170735037731,439,0 +170735037779,439,0 +170735037829,439,0 +170735037878,439,0 +170735037928,439,0 +170735037976,439,0 +170735038024,439,0 +170735038071,439,0 +170735038121,439,0 +170735038169,440,0 +170735038217,440,0 +170735038265,440,0 +170735038313,440,0 +170735038360,439,0 +170735038408,439,0 +170735038458,439,0 +170735038506,439,0 +170735038554,439,0 +170735038602,296,1 +170735038680,432,0 +170735038728,439,0 +170735038776,439,0 +170735038826,439,0 +170735038874,439,0 +170735038923,439,0 +170735038973,439,0 +170735039021,440,0 +170735039069,439,0 +170735039117,439,0 +170735039165,440,0 +170735039212,439,0 +170735039260,439,0 +170735039310,440,0 +170735039358,440,0 +170735039406,440,0 +170735039454,439,0 +170735039503,439,0 +170735039553,439,0 +170735039602,438,0 +170735039652,300,1 +170735039736,435,0 +170735039784,439,0 +170735039832,439,0 +170735039880,439,0 +170735039928,439,0 +170735039976,439,0 +170735040024,439,0 diff --git a/laser_value/0208-10.csv b/laser_value/0208-10.csv new file mode 100644 index 0000000..344be19 --- /dev/null +++ b/laser_value/0208-10.csv @@ -0,0 +1,7171 @@ +timestamp,laser_value,event +170735040074,440,0 +170735040122,439,0 +170735040170,440,0 +170735040219,439,0 +170735040267,440,0 +170735040317,440,0 +170735040365,439,0 +170735040414,439,0 +170735040463,440,0 +170735040511,439,0 +170735040561,440,0 +170735040609,439,0 +170735040657,437,0 +170735040705,295,1 +170735040780,434,0 +170735040828,439,0 +170735040876,440,0 +170735040926,440,0 +170735040973,439,0 +170735041021,439,0 +170735041069,439,0 +170735041117,439,0 +170735041165,440,0 +170735041213,439,0 +170735041261,439,0 +170735041309,439,0 +170735041359,439,0 +170735041407,440,0 +170735041455,440,0 +170735041504,439,0 +170735041554,439,0 +170735041602,439,0 +170735041651,439,0 +170735041699,439,0 +170735041747,299,1 +170735041822,406,0 +170735041869,440,0 +170735041917,439,0 +170735041967,440,0 +170735042015,439,0 +170735042063,439,0 +170735042112,440,0 +170735042160,440,0 +170735042208,440,0 +170735042256,439,0 +170735042304,440,0 +170735042354,439,0 +170735042402,440,0 +170735042451,440,0 +170735042499,440,0 +170735042547,439,0 +170735042595,440,0 +170735042643,440,0 +170735042691,440,0 +170735042739,439,0 +170735042787,299,1 +170735042868,235,0 +170735042916,439,0 +170735042965,439,0 +170735043015,440,0 +170735043064,439,0 +170735043112,439,0 +170735043161,439,0 +170735043209,440,0 +170735043257,440,0 +170735043305,440,0 +170735043353,439,0 +170735043401,439,0 +170735043449,440,0 +170735043499,440,0 +170735043547,440,0 +170735043595,439,0 +170735043644,439,0 +170735043692,439,0 +170735043740,439,0 +170735043788,439,0 +170735043838,295,1 +170735043917,429,0 +170735043966,439,0 +170735044014,440,0 +170735044062,440,0 +170735044110,439,0 +170735044160,440,0 +170735044208,439,0 +170735044257,440,0 +170735044305,440,0 +170735044353,439,0 +170735044402,439,0 +170735044452,439,0 +170735044500,439,0 +170735044548,439,0 +170735044596,440,0 +170735044645,439,0 +170735044695,440,0 +170735044744,440,0 +170735044792,440,0 +170735044840,439,0 +170735044888,275,1 +170735044973,433,0 +170735045021,439,0 +170735045069,439,0 +170735045117,439,0 +170735045165,440,0 +170735045215,439,0 +170735045263,440,0 +170735045311,439,0 +170735045359,440,0 +170735045407,439,0 +170735045455,440,0 +170735045503,439,0 +170735045550,439,0 +170735045598,439,0 +170735045646,440,0 +170735045696,439,0 +170735045744,439,0 +170735045792,439,0 +170735045840,439,0 +170735045889,439,0 +170735045937,287,1 +170735046023,435,0 +170735046073,439,0 +170735046123,439,0 +170735046170,439,0 +170735046218,440,0 +170735046268,439,0 +170735046316,440,0 +170735046365,440,0 +170735046413,439,0 +170735046461,439,0 +170735046509,439,0 +170735046557,439,0 +170735046605,439,0 +170735046653,439,0 +170735046702,439,0 +170735046750,439,0 +170735046798,439,0 +170735046846,439,0 +170735046894,440,0 +170735046943,423,0 +170735046991,298,1 +170735047072,436,0 +170735047120,439,0 +170735047168,439,0 +170735047216,440,0 +170735047264,439,0 +170735047314,439,0 +170735047362,439,0 +170735047411,440,0 +170735047461,439,0 +170735047510,440,0 +170735047558,439,0 +170735047606,439,0 +170735047654,439,0 +170735047702,440,0 +170735047750,439,0 +170735047798,439,0 +170735047846,439,0 +170735047894,439,0 +170735047942,439,0 +170735047990,439,0 +170735048039,305,1 +170735048120,343,0 +170735048168,439,0 +170735048216,439,0 +170735048264,439,0 +170735048312,440,0 +170735048362,440,0 +170735048411,439,0 +170735048461,440,0 +170735048508,439,0 +170735048556,439,0 +170735048604,439,0 +170735048652,439,0 +170735048700,440,0 +170735048750,439,0 +170735048798,440,0 +170735048846,439,0 +170735048894,439,0 +170735048942,439,0 +170735048990,440,0 +170735049039,439,0 +170735049089,298,1 +170735049172,434,0 +170735049220,439,0 +170735049268,439,0 +170735049315,439,0 +170735049363,439,0 +170735049411,439,0 +170735049459,439,0 +170735049507,439,0 +170735049555,439,0 +170735049605,439,0 +170735049653,439,0 +170735049701,440,0 +170735049750,439,0 +170735049800,439,0 +170735049848,439,0 +170735049896,439,0 +170735049944,439,0 +170735049993,439,0 +170735050041,439,0 +170735050089,439,0 +170735050137,305,1 +170735050218,431,0 +170735050268,439,0 +170735050316,439,0 +170735050365,439,0 +170735050415,439,0 +170735050463,439,0 +170735050512,440,0 +170735050560,440,0 +170735050610,440,0 +170735050659,439,0 +170735050707,439,0 +170735050757,439,0 +170735050805,440,0 +170735050854,439,0 +170735050904,439,0 +170735050952,439,0 +170735051000,439,0 +170735051048,439,0 +170735051097,439,0 +170735051147,269,0 +170735051195,295,1 +170735051273,437,0 +170735051322,439,0 +170735051370,439,0 +170735051418,439,0 +170735051468,439,0 +170735051517,439,0 +170735051565,440,0 +170735051613,439,0 +170735051661,439,0 +170735051709,439,0 +170735051759,439,0 +170735051807,439,0 +170735051855,439,0 +170735051903,439,0 +170735051950,439,0 +170735052000,439,0 +170735052048,439,0 +170735052097,439,0 +170735052145,439,0 +170735052193,333,0 +170735052241,297,1 +170735052321,435,0 +170735052370,439,0 +170735052420,440,0 +170735052468,439,0 +170735052517,439,0 +170735052565,440,0 +170735052613,439,0 +170735052661,439,0 +170735052709,439,0 +170735052757,439,0 +170735052805,439,0 +170735052853,439,0 +170735052901,439,0 +170735052949,439,0 +170735052999,439,0 +170735053047,439,0 +170735053095,440,0 +170735053144,439,0 +170735053192,439,0 +170735053242,343,0 +170735053290,304,1 +170735053371,436,0 +170735053420,439,0 +170735053468,439,0 +170735053516,439,0 +170735053564,439,0 +170735053612,439,0 +170735053660,439,0 +170735053708,440,0 +170735053756,439,0 +170735053804,440,0 +170735053852,439,0 +170735053900,440,0 +170735053949,439,0 +170735053999,439,0 +170735054048,439,0 +170735054098,439,0 +170735054146,440,0 +170735054194,439,0 +170735054242,439,0 +170735054290,385,0 +170735054337,300,1 +170735054419,437,0 +170735054469,439,0 +170735054517,439,0 +170735054565,439,0 +170735054613,439,0 +170735054661,439,0 +170735054710,439,0 +170735054758,439,0 +170735054806,439,0 +170735054854,439,0 +170735054903,440,0 +170735054951,440,0 +170735055001,439,0 +170735055049,439,0 +170735055097,439,0 +170735055144,439,0 +170735055192,439,0 +170735055240,439,0 +170735055288,440,0 +170735055336,294,1 +170735055423,301,1 +170735055502,439,0 +170735055550,439,0 +170735055598,440,0 +170735055646,439,0 +170735055694,439,0 +170735055742,439,0 +170735055790,439,0 +170735055837,439,0 +170735055885,439,0 +170735055933,440,0 +170735055981,439,0 +170735056029,439,0 +170735056077,439,0 +170735056125,439,0 +170735056173,440,0 +170735056221,439,0 +170735056269,439,0 +170735056316,439,0 +170735056364,439,0 +170735056412,307,1 +170735056497,315,0 +170735056545,439,0 +170735056593,439,0 +170735056641,439,0 +170735056689,439,0 +170735056737,439,0 +170735056785,439,0 +170735056832,439,0 +170735056880,439,0 +170735056928,439,0 +170735056976,439,0 +170735057024,440,0 +170735057072,439,0 +170735057121,439,0 +170735057171,440,0 +170735057220,439,0 +170735057268,439,0 +170735057316,439,0 +170735057365,439,0 +170735057413,439,0 +170735057461,308,1 +170735057542,233,0 +170735057589,439,0 +170735057637,439,0 +170735057685,439,0 +170735057733,439,0 +170735057781,439,0 +170735057829,439,0 +170735057877,440,0 +170735057925,440,0 +170735057974,439,0 +170735058022,439,0 +170735058070,439,0 +170735058118,440,0 +170735058168,440,0 +170735058216,440,0 +170735058264,439,0 +170735058312,440,0 +170735058360,439,0 +170735058408,440,0 +170735058456,439,0 +170735058504,303,1 +170735058589,236,0 +170735058637,439,0 +170735058685,439,0 +170735058733,439,0 +170735058781,439,0 +170735058830,440,0 +170735058880,439,0 +170735058928,440,0 +170735058977,439,0 +170735059025,439,0 +170735059073,439,0 +170735059121,439,0 +170735059171,440,0 +170735059219,439,0 +170735059267,439,0 +170735059316,439,0 +170735059364,439,0 +170735059414,439,0 +170735059462,439,0 +170735059510,439,0 +170735059557,302,1 +170735059637,241,0 +170735059687,439,0 +170735059734,439,0 +170735059782,440,0 +170735059830,439,0 +170735059878,440,0 +170735059926,439,0 +170735059974,439,0 +170735060022,439,0 +170735060072,439,0 +170735060120,439,0 +170735060169,439,0 +170735060217,439,0 +170735060265,440,0 +170735060313,439,0 +170735060361,439,0 +170735060409,439,0 +170735060457,439,0 +170735060506,439,0 +170735060554,439,0 +170735060602,286,1 +170735060683,242,0 +170735060731,439,0 +170735060780,440,0 +170735060828,439,0 +170735060876,439,0 +170735060926,439,0 +170735060975,439,0 +170735061023,439,0 +170735061073,439,0 +170735061121,439,0 +170735061170,439,0 +170735061218,439,0 +170735061268,439,0 +170735061316,439,0 +170735061364,439,0 +170735061412,439,0 +170735061461,439,0 +170735061509,439,0 +170735061557,439,0 +170735061607,439,0 +170735061654,277,1 +170735061736,431,0 +170735061786,439,0 +170735061833,439,0 +170735061881,439,0 +170735061929,440,0 +170735061977,439,0 +170735062025,440,0 +170735062073,439,0 +170735062120,439,0 +170735062170,439,0 +170735062219,439,0 +170735062267,439,0 +170735062315,439,0 +170735062363,439,0 +170735062412,439,0 +170735062460,439,0 +170735062508,439,0 +170735062556,439,0 +170735062604,439,0 +170735062652,439,0 +170735062700,280,1 +170735062779,235,0 +170735062829,439,0 +170735062877,439,0 +170735062924,439,0 +170735062972,439,0 +170735063020,439,0 +170735063068,439,0 +170735063116,439,0 +170735063164,439,0 +170735063212,439,0 +170735063260,439,0 +170735063307,439,0 +170735063355,439,0 +170735063403,439,0 +170735063453,439,0 +170735063501,439,0 +170735063549,439,0 +170735063598,439,0 +170735063646,439,0 +170735063696,439,0 +170735063744,286,1 +170735063824,254,0 +170735063874,439,0 +170735063922,439,0 +170735063970,439,0 +170735064017,439,0 +170735064065,439,0 +170735064113,439,0 +170735064161,439,0 +170735064209,440,0 +170735064257,439,0 +170735064306,439,0 +170735064354,439,0 +170735064402,439,0 +170735064451,439,0 +170735064501,439,0 +170735064549,439,0 +170735064597,439,0 +170735064645,440,0 +170735064692,439,0 +170735064740,439,0 +170735064788,305,1 +170735064871,275,1 +170735064950,439,0 +170735064998,439,0 +170735065045,439,0 +170735065095,439,0 +170735065144,440,0 +170735065192,440,0 +170735065240,439,0 +170735065288,439,0 +170735065338,439,0 +170735065385,439,0 +170735065435,439,0 +170735065484,439,0 +170735065532,439,0 +170735065580,439,0 +170735065628,439,0 +170735065676,440,0 +170735065724,439,0 +170735065772,439,0 +170735065820,437,0 +170735065870,293,1 +170735065949,434,0 +170735065997,439,0 +170735066045,439,0 +170735066093,440,0 +170735066142,439,0 +170735066190,439,0 +170735066238,440,0 +170735066286,439,0 +170735066335,439,0 +170735066383,439,0 +170735066431,439,0 +170735066479,439,0 +170735066529,439,0 +170735066578,440,0 +170735066628,439,0 +170735066677,439,0 +170735066725,440,0 +170735066773,439,0 +170735066821,440,0 +170735066869,439,0 +170735066917,289,1 +170735067006,436,0 +170735067054,439,0 +170735067102,439,0 +170735067150,440,0 +170735067198,440,0 +170735067246,439,0 +170735067295,439,0 +170735067343,439,0 +170735067391,439,0 +170735067439,439,0 +170735067487,439,0 +170735067536,439,0 +170735067584,439,0 +170735067634,439,0 +170735067683,439,0 +170735067731,439,0 +170735067779,439,0 +170735067827,439,0 +170735067875,439,0 +170735067924,437,0 +170735067974,301,1 +170735068056,437,0 +170735068106,439,0 +170735068155,439,0 +170735068205,440,0 +170735068255,440,0 +170735068303,439,0 +170735068352,440,0 +170735068400,439,0 +170735068448,440,0 +170735068496,439,0 +170735068544,440,0 +170735068592,439,0 +170735068640,439,0 +170735068689,440,0 +170735068737,439,0 +170735068787,439,0 +170735068835,439,0 +170735068882,439,0 +170735068930,439,0 +170735068978,270,1 +170735069063,260,0 +170735069111,438,0 +170735069159,439,0 +170735069207,439,0 +170735069255,440,0 +170735069305,440,0 +170735069354,439,0 +170735069402,440,0 +170735069450,439,0 +170735069500,440,0 +170735069548,439,0 +170735069596,439,0 +170735069645,439,0 +170735069695,439,0 +170735069743,439,0 +170735069792,439,0 +170735069840,439,0 +170735069890,440,0 +170735069938,440,0 +170735069985,439,0 +170735070033,294,1 +170735070116,268,0 +170735070164,439,0 +170735070212,439,0 +170735070260,439,0 +170735070308,440,0 +170735070356,439,0 +170735070405,439,0 +170735070453,439,0 +170735070501,439,0 +170735070549,440,0 +170735070597,439,0 +170735070646,439,0 +170735070694,440,0 +170735070742,439,0 +170735070790,439,0 +170735070838,439,0 +170735070886,439,0 +170735070935,440,0 +170735070983,439,0 +170735071032,439,0 +170735071080,406,0 +170735071128,277,1 +170735071208,438,0 +170735071256,440,0 +170735071304,439,0 +170735071353,439,0 +170735071401,439,0 +170735071449,440,0 +170735071497,440,0 +170735071545,439,0 +170735071593,439,0 +170735071641,439,0 +170735071688,439,0 +170735071736,439,0 +170735071784,439,0 +170735071834,439,0 +170735071882,440,0 +170735071929,439,0 +170735071977,439,0 +170735072025,439,0 +170735072073,439,0 +170735072121,436,0 +170735072171,290,1 +170735072255,434,0 +170735072302,439,0 +170735072350,439,0 +170735072398,439,0 +170735072446,440,0 +170735072494,439,0 +170735072542,439,0 +170735072591,439,0 +170735072639,439,0 +170735072687,440,0 +170735072735,440,0 +170735072783,439,0 +170735072831,439,0 +170735072879,439,0 +170735072926,439,0 +170735072974,439,0 +170735073022,440,0 +170735073070,439,0 +170735073118,439,0 +170735073167,419,0 +170735073215,293,1 +170735073297,436,0 +170735073347,439,0 +170735073394,439,0 +170735073442,439,0 +170735073490,439,0 +170735073540,440,0 +170735073589,440,0 +170735073638,440,0 +170735073686,439,0 +170735073734,439,0 +170735073784,439,0 +170735073832,439,0 +170735073881,439,0 +170735073929,440,0 +170735073977,439,0 +170735074025,439,0 +170735074073,439,0 +170735074121,440,0 +170735074168,439,0 +170735074216,427,0 +170735074266,294,1 +170735074339,435,0 +170735074387,439,0 +170735074436,440,0 +170735074484,439,0 +170735074534,439,0 +170735074581,440,0 +170735074631,439,0 +170735074679,439,0 +170735074728,440,0 +170735074778,439,0 +170735074827,439,0 +170735074875,439,0 +170735074923,439,0 +170735074971,439,0 +170735075019,439,0 +170735075067,439,0 +170735075115,439,0 +170735075162,440,0 +170735075210,439,0 +170735075258,439,0 +170735075306,253,0 +170735075355,287,1 +170735075435,439,0 +170735075483,439,0 +170735075531,440,0 +170735075579,439,0 +170735075627,439,0 +170735075675,440,0 +170735075723,440,0 +170735075770,439,0 +170735075818,439,0 +170735075866,439,0 +170735075914,439,0 +170735075962,439,0 +170735076010,439,0 +170735076058,439,0 +170735076107,439,0 +170735076155,439,0 +170735076205,439,0 +170735076253,439,0 +170735076302,439,0 +170735076350,285,1 +170735076432,435,0 +170735076479,439,0 +170735076527,439,0 +170735076577,439,0 +170735076625,439,0 +170735076672,439,0 +170735076720,439,0 +170735076768,439,0 +170735076816,439,0 +170735076864,439,0 +170735076912,439,0 +170735076960,439,0 +170735077008,439,0 +170735077055,439,0 +170735077103,439,0 +170735077151,439,0 +170735077199,439,0 +170735077249,439,0 +170735077296,439,0 +170735077344,439,0 +170735077392,288,1 +170735077474,429,0 +170735077521,439,0 +170735077569,439,0 +170735077617,439,0 +170735077665,439,0 +170735077715,439,0 +170735077762,439,0 +170735077810,439,0 +170735077858,439,0 +170735077906,439,0 +170735077954,439,0 +170735078004,439,0 +170735078053,439,0 +170735078102,439,0 +170735078150,439,0 +170735078200,439,0 +170735078248,439,0 +170735078295,440,0 +170735078345,439,0 +170735078394,439,0 +170735078442,279,1 +170735078524,345,0 +170735078572,439,0 +170735078620,440,0 +170735078667,439,0 +170735078715,439,0 +170735078763,439,0 +170735078811,439,0 +170735078859,439,0 +170735078907,439,0 +170735078955,439,0 +170735079003,440,0 +170735079051,439,0 +170735079099,439,0 +170735079147,439,0 +170735079195,439,0 +170735079243,439,0 +170735079292,439,0 +170735079340,439,0 +170735079388,439,0 +170735079436,439,0 +170735079486,296,1 +170735079565,250,0 +170735079613,439,0 +170735079661,440,0 +170735079709,439,0 +170735079757,439,0 +170735079805,439,0 +170735079854,439,0 +170735079902,440,0 +170735079950,439,0 +170735079998,439,0 +170735080046,439,0 +170735080095,440,0 +170735080143,439,0 +170735080191,440,0 +170735080239,439,0 +170735080287,440,0 +170735080337,440,0 +170735080386,439,0 +170735080434,440,0 +170735080482,439,0 +170735080530,288,1 +170735080610,268,0 +170735080658,439,0 +170735080707,439,0 +170735080755,440,0 +170735080803,439,0 +170735080851,439,0 +170735080900,439,0 +170735080948,439,0 +170735080996,439,0 +170735081044,439,0 +170735081092,439,0 +170735081140,440,0 +170735081188,439,0 +170735081238,439,0 +170735081287,439,0 +170735081335,439,0 +170735081385,439,0 +170735081433,439,0 +170735081481,439,0 +170735081529,439,0 +170735081578,293,1 +170735081671,428,0 +170735081720,440,0 +170735081770,439,0 +170735081818,439,0 +170735081866,439,0 +170735081914,440,0 +170735081963,440,0 +170735082013,439,0 +170735082061,440,0 +170735082109,439,0 +170735082158,439,0 +170735082208,439,0 +170735082256,439,0 +170735082303,440,0 +170735082353,439,0 +170735082401,440,0 +170735082450,439,0 +170735082498,440,0 +170735082546,439,0 +170735082594,439,0 +170735082644,285,1 +170735082726,432,0 +170735082775,439,0 +170735082823,439,0 +170735082871,439,0 +170735082920,440,0 +170735082968,440,0 +170735083016,439,0 +170735083064,439,0 +170735083114,439,0 +170735083162,440,0 +170735083210,439,0 +170735083258,439,0 +170735083306,439,0 +170735083354,440,0 +170735083402,439,0 +170735083450,439,0 +170735083499,439,0 +170735083547,439,0 +170735083595,439,0 +170735083643,439,0 +170735083692,300,1 +170735083774,435,0 +170735083824,439,0 +170735083873,439,0 +170735083921,439,0 +170735083969,439,0 +170735084019,439,0 +170735084066,440,0 +170735084114,439,0 +170735084164,439,0 +170735084212,439,0 +170735084260,440,0 +170735084308,440,0 +170735084357,439,0 +170735084405,439,0 +170735084453,440,0 +170735084501,439,0 +170735084549,439,0 +170735084597,439,0 +170735084645,439,0 +170735084693,438,0 +170735084743,284,1 +170735084829,434,0 +170735084877,440,0 +170735084925,439,0 +170735084974,439,0 +170735085024,440,0 +170735085073,439,0 +170735085121,440,0 +170735085169,439,0 +170735085217,439,0 +170735085266,440,0 +170735085314,440,0 +170735085362,439,0 +170735085410,440,0 +170735085458,439,0 +170735085506,439,0 +170735085556,440,0 +170735085605,439,0 +170735085653,440,0 +170735085701,440,0 +170735085749,439,0 +170735085799,295,1 +170735085879,433,0 +170735085929,439,0 +170735085978,439,0 +170735086026,439,0 +170735086076,439,0 +170735086124,440,0 +170735086172,440,0 +170735086221,439,0 +170735086271,439,0 +170735086320,440,0 +170735086368,439,0 +170735086416,440,0 +170735086464,439,0 +170735086512,440,0 +170735086560,439,0 +170735086608,439,0 +170735086656,440,0 +170735086704,439,0 +170735086753,440,0 +170735086801,439,0 +170735086849,306,1 +170735086930,432,0 +170735086978,439,0 +170735087026,439,0 +170735087076,440,0 +170735087124,439,0 +170735087173,440,0 +170735087221,439,0 +170735087269,439,0 +170735087319,439,0 +170735087368,439,0 +170735087416,440,0 +170735087464,439,0 +170735087512,439,0 +170735087560,439,0 +170735087608,440,0 +170735087656,439,0 +170735087705,439,0 +170735087753,439,0 +170735087801,439,0 +170735087851,437,0 +170735087899,293,1 +170735087980,436,0 +170735088028,439,0 +170735088076,439,0 +170735088125,439,0 +170735088173,440,0 +170735088223,439,0 +170735088272,440,0 +170735088322,439,0 +170735088370,439,0 +170735088418,439,0 +170735088466,439,0 +170735088514,440,0 +170735088563,439,0 +170735088613,439,0 +170735088662,440,0 +170735088712,439,0 +170735088761,439,0 +170735088811,440,0 +170735088859,439,0 +170735088907,273,1 +170735088988,287,1 +170735089068,439,0 +170735089116,439,0 +170735089164,439,0 +170735089214,439,0 +170735089262,439,0 +170735089310,440,0 +170735089359,439,0 +170735089407,439,0 +170735089455,439,0 +170735089503,439,0 +170735089553,439,0 +170735089602,439,0 +170735089652,440,0 +170735089699,440,0 +170735089749,440,0 +170735089798,439,0 +170735089846,439,0 +170735089896,440,0 +170735089944,439,0 +170735089992,294,1 +170735090071,433,0 +170735090119,439,0 +170735090168,440,0 +170735090216,439,0 +170735090264,439,0 +170735090312,440,0 +170735090360,440,0 +170735090408,440,0 +170735090456,440,0 +170735090504,440,0 +170735090553,439,0 +170735090601,439,0 +170735090649,439,0 +170735090697,439,0 +170735090745,440,0 +170735090793,439,0 +170735090843,439,0 +170735090891,439,0 +170735090939,439,0 +170735090986,439,0 +170735091034,292,1 +170735091116,432,0 +170735091164,439,0 +170735091212,439,0 +170735091260,439,0 +170735091308,439,0 +170735091355,440,0 +170735091405,439,0 +170735091454,439,0 +170735091504,440,0 +170735091552,439,0 +170735091600,440,0 +170735091647,439,0 +170735091695,439,0 +170735091745,440,0 +170735091793,439,0 +170735091842,439,0 +170735091892,439,0 +170735091940,439,0 +170735091988,439,0 +170735092036,439,0 +170735092085,293,1 +170735092162,432,0 +170735092210,439,0 +170735092258,440,0 +170735092306,439,0 +170735092355,440,0 +170735092403,439,0 +170735092451,439,0 +170735092499,440,0 +170735092547,440,0 +170735092595,439,0 +170735092643,440,0 +170735092693,439,0 +170735092741,440,0 +170735092790,440,0 +170735092840,440,0 +170735092889,439,0 +170735092937,439,0 +170735092985,439,0 +170735093033,439,0 +170735093083,439,0 +170735093131,288,1 +170735093211,431,0 +170735093259,439,0 +170735093307,440,0 +170735093357,439,0 +170735093406,439,0 +170735093454,439,0 +170735093502,440,0 +170735093550,439,0 +170735093598,439,0 +170735093646,439,0 +170735093695,439,0 +170735093743,439,0 +170735093793,439,0 +170735093841,439,0 +170735093890,440,0 +170735093938,439,0 +170735093986,440,0 +170735094034,439,0 +170735094082,439,0 +170735094130,439,0 +170735094179,290,1 +170735094264,429,0 +170735094312,439,0 +170735094362,439,0 +170735094410,439,0 +170735094459,440,0 +170735094507,439,0 +170735094555,439,0 +170735094605,439,0 +170735094654,439,0 +170735094702,439,0 +170735094750,439,0 +170735094798,439,0 +170735094846,439,0 +170735094896,439,0 +170735094945,439,0 +170735094993,439,0 +170735095041,440,0 +170735095089,439,0 +170735095138,439,0 +170735095186,435,0 +170735095234,299,1 +170735095317,434,0 +170735095365,439,0 +170735095413,439,0 +170735095461,439,0 +170735095509,439,0 +170735095559,440,0 +170735095608,439,0 +170735095656,440,0 +170735095706,439,0 +170735095754,439,0 +170735095803,439,0 +170735095851,440,0 +170735095899,439,0 +170735095949,439,0 +170735095997,439,0 +170735096046,439,0 +170735096094,439,0 +170735096142,439,0 +170735096190,439,0 +170735096238,438,0 +170735096286,292,1 +170735096368,437,0 +170735096416,440,0 +170735096465,439,0 +170735096515,439,0 +170735096563,439,0 +170735096612,439,0 +170735096662,440,0 +170735096710,440,0 +170735096758,440,0 +170735096807,439,0 +170735096857,439,0 +170735096905,440,0 +170735096953,439,0 +170735097001,439,0 +170735097050,439,0 +170735097098,439,0 +170735097146,440,0 +170735097194,439,0 +170735097242,439,0 +170735097291,436,0 +170735097339,291,1 +170735097419,435,0 +170735097467,439,0 +170735097514,439,0 +170735097562,439,0 +170735097610,439,0 +170735097660,439,0 +170735097709,439,0 +170735097757,439,0 +170735097807,439,0 +170735097856,439,0 +170735097904,440,0 +170735097954,439,0 +170735098002,439,0 +170735098050,439,0 +170735098098,439,0 +170735098147,439,0 +170735098195,439,0 +170735098243,439,0 +170735098291,439,0 +170735098339,277,1 +170735098418,295,1 +170735098493,439,0 +170735098541,439,0 +170735098588,439,0 +170735098638,439,0 +170735098686,439,0 +170735098734,439,0 +170735098782,439,0 +170735098831,440,0 +170735098881,439,0 +170735098931,440,0 +170735098979,439,0 +170735099027,439,0 +170735099075,439,0 +170735099124,439,0 +170735099172,439,0 +170735099220,439,0 +170735099268,439,0 +170735099316,439,0 +170735099365,439,0 +170735099415,289,1 +170735099497,433,0 +170735099545,439,0 +170735099593,440,0 +170735099643,439,0 +170735099692,440,0 +170735099742,439,0 +170735099791,440,0 +170735099839,439,0 +170735099889,439,0 +170735099938,440,0 +170735099988,439,0 +170735100036,439,0 +170735100084,439,0 +170735100132,439,0 +170735100180,440,0 +170735100229,439,0 +170735100277,439,0 +170735100325,439,0 +170735100375,439,0 +170735100423,439,0 +170735100472,282,1 +170735100553,430,0 +170735100601,439,0 +170735100649,439,0 +170735100697,439,0 +170735100745,439,0 +170735100795,439,0 +170735100843,440,0 +170735100891,440,0 +170735100940,440,0 +170735100990,439,0 +170735101038,440,0 +170735101085,439,0 +170735101135,439,0 +170735101184,440,0 +170735101232,439,0 +170735101282,439,0 +170735101331,439,0 +170735101379,439,0 +170735101427,440,0 +170735101477,437,0 +170735101525,292,1 +170735101628,439,0 +170735101678,439,0 +170735101726,439,0 +170735101774,439,0 +170735101823,439,0 +170735101871,439,0 +170735101919,439,0 +170735101967,440,0 +170735102015,440,0 +170735102064,439,0 +170735102114,439,0 +170735102162,440,0 +170735102211,439,0 +170735102259,440,0 +170735102307,439,0 +170735102355,440,0 +170735102403,439,0 +170735102451,439,0 +170735102499,439,0 +170735102547,310,0 +170735102597,306,1 +170735102683,439,0 +170735102731,440,0 +170735102780,439,0 +170735102830,439,0 +170735102880,439,0 +170735102929,439,0 +170735102977,439,0 +170735103025,440,0 +170735103075,439,0 +170735103122,439,0 +170735103172,440,0 +170735103221,439,0 +170735103271,439,0 +170735103320,439,0 +170735103368,439,0 +170735103418,439,0 +170735103466,439,0 +170735103515,439,0 +170735103563,439,0 +170735103611,297,1 +170735103697,432,0 +170735103746,439,0 +170735103796,439,0 +170735103844,440,0 +170735103893,440,0 +170735103941,440,0 +170735103991,439,0 +170735104040,439,0 +170735104088,439,0 +170735104136,439,0 +170735104184,439,0 +170735104232,439,0 +170735104280,439,0 +170735104327,439,0 +170735104375,439,0 +170735104423,439,0 +170735104471,440,0 +170735104521,439,0 +170735104568,439,0 +170735104618,439,0 +170735104666,300,1 +170735104746,434,0 +170735104794,439,0 +170735104842,439,0 +170735104890,439,0 +170735104938,440,0 +170735104985,440,0 +170735105035,440,0 +170735105083,439,0 +170735105131,439,0 +170735105180,439,0 +170735105228,440,0 +170735105276,439,0 +170735105324,440,0 +170735105372,439,0 +170735105420,440,0 +170735105468,439,0 +170735105515,439,0 +170735105563,440,0 +170735105611,439,0 +170735105659,439,0 +170735105707,284,1 +170735105789,433,0 +170735105837,439,0 +170735105885,440,0 +170735105935,440,0 +170735105983,439,0 +170735106032,440,0 +170735106080,439,0 +170735106128,440,0 +170735106177,439,0 +170735106225,440,0 +170735106274,439,0 +170735106322,439,0 +170735106370,439,0 +170735106418,439,0 +170735106466,439,0 +170735106514,439,0 +170735106563,439,0 +170735106611,439,0 +170735106659,440,0 +170735106707,439,0 +170735106756,293,1 +170735106842,433,0 +170735106889,439,0 +170735106939,439,0 +170735106987,439,0 +170735107035,439,0 +170735107082,439,0 +170735107130,439,0 +170735107178,440,0 +170735107226,440,0 +170735107274,440,0 +170735107322,440,0 +170735107371,439,0 +170735107419,440,0 +170735107467,440,0 +170735107515,439,0 +170735107563,440,0 +170735107611,439,0 +170735107659,440,0 +170735107706,439,0 +170735107756,439,0 +170735107804,297,1 +170735107884,432,0 +170735107932,439,0 +170735107980,439,0 +170735108028,440,0 +170735108077,439,0 +170735108125,439,0 +170735108174,439,0 +170735108222,439,0 +170735108270,440,0 +170735108318,439,0 +170735108366,440,0 +170735108414,439,0 +170735108462,439,0 +170735108511,439,0 +170735108559,439,0 +170735108607,439,0 +170735108655,440,0 +170735108704,439,0 +170735108752,439,0 +170735108800,439,0 +170735108850,298,1 +170735108931,239,0 +170735108980,439,0 +170735109028,439,0 +170735109076,439,0 +170735109124,440,0 +170735109172,439,0 +170735109221,440,0 +170735109269,439,0 +170735109319,439,0 +170735109368,440,0 +170735109416,439,0 +170735109464,440,0 +170735109512,440,0 +170735109559,439,0 +170735109607,439,0 +170735109655,439,0 +170735109703,440,0 +170735109751,439,0 +170735109799,439,0 +170735109847,439,0 +170735109895,296,1 +170735109977,429,0 +170735110025,439,0 +170735110075,439,0 +170735110123,440,0 +170735110170,439,0 +170735110218,439,0 +170735110268,439,0 +170735110317,440,0 +170735110365,439,0 +170735110413,440,0 +170735110461,439,0 +170735110509,439,0 +170735110557,439,0 +170735110604,440,0 +170735110654,439,0 +170735110702,439,0 +170735110750,439,0 +170735110799,440,0 +170735110847,440,0 +170735110895,439,0 +170735110944,304,1 +170735111026,418,0 +170735111074,439,0 +170735111123,439,0 +170735111171,439,0 +170735111220,439,0 +170735111268,439,0 +170735111316,439,0 +170735111364,439,0 +170735111414,440,0 +170735111462,440,0 +170735111509,440,0 +170735111557,439,0 +170735111605,439,0 +170735111653,439,0 +170735111701,439,0 +170735111750,439,0 +170735111798,439,0 +170735111848,439,0 +170735111895,439,0 +170735111943,439,0 +170735111991,298,1 +170735112070,234,0 +170735112118,440,0 +170735112166,439,0 +170735112213,440,0 +170735112261,439,0 +170735112309,439,0 +170735112357,440,0 +170735112405,439,0 +170735112454,440,0 +170735112502,439,0 +170735112550,440,0 +170735112598,440,0 +170735112646,439,0 +170735112694,440,0 +170735112741,440,0 +170735112789,440,0 +170735112839,440,0 +170735112887,439,0 +170735112936,440,0 +170735112984,439,0 +170735113033,298,1 +170735113114,235,0 +170735113162,439,0 +170735113210,440,0 +170735113258,439,0 +170735113306,439,0 +170735113354,440,0 +170735113402,440,0 +170735113450,439,0 +170735113497,439,0 +170735113545,440,0 +170735113593,439,0 +170735113641,440,0 +170735113689,439,0 +170735113737,440,0 +170735113785,440,0 +170735113834,440,0 +170735113882,440,0 +170735113932,440,0 +170735113979,439,0 +170735114027,439,0 +170735114075,294,1 +170735114154,274,1 +170735114230,439,0 +170735114279,439,0 +170735114327,440,0 +170735114375,439,0 +170735114424,440,0 +170735114474,439,0 +170735114522,439,0 +170735114570,440,0 +170735114617,440,0 +170735114665,440,0 +170735114713,439,0 +170735114761,440,0 +170735114809,439,0 +170735114858,439,0 +170735114908,439,0 +170735114957,440,0 +170735115005,439,0 +170735115055,439,0 +170735115102,439,0 +170735115150,298,1 +170735115233,432,0 +170735115280,439,0 +170735115328,439,0 +170735115376,439,0 +170735115424,439,0 +170735115472,439,0 +170735115520,440,0 +170735115569,440,0 +170735115617,440,0 +170735115664,439,0 +170735115712,439,0 +170735115762,440,0 +170735115810,439,0 +170735115859,440,0 +170735115907,439,0 +170735115955,439,0 +170735116003,439,0 +170735116051,440,0 +170735116100,439,0 +170735116148,439,0 +170735116196,295,1 +170735116280,427,0 +170735116328,439,0 +170735116376,440,0 +170735116424,439,0 +170735116471,440,0 +170735116519,439,0 +170735116569,440,0 +170735116617,439,0 +170735116665,439,0 +170735116713,439,0 +170735116762,440,0 +170735116810,439,0 +170735116858,440,0 +170735116906,439,0 +170735116954,440,0 +170735117004,440,0 +170735117052,439,0 +170735117100,440,0 +170735117148,439,0 +170735117195,439,0 +170735117243,300,1 +170735117322,432,0 +170735117370,439,0 +170735117419,439,0 +170735117469,439,0 +170735117517,439,0 +170735117565,439,0 +170735117613,440,0 +170735117661,439,0 +170735117710,439,0 +170735117760,440,0 +170735117808,439,0 +170735117856,439,0 +170735117905,439,0 +170735117953,440,0 +170735118001,439,0 +170735118049,440,0 +170735118097,439,0 +170735118146,439,0 +170735118196,439,0 +170735118244,439,0 +170735118291,300,1 +170735118373,431,0 +170735118421,440,0 +170735118469,439,0 +170735118517,439,0 +170735118565,440,0 +170735118612,439,0 +170735118660,440,0 +170735118708,439,0 +170735118756,440,0 +170735118804,440,0 +170735118852,440,0 +170735118900,439,0 +170735118948,439,0 +170735118996,439,0 +170735119043,440,0 +170735119091,440,0 +170735119139,440,0 +170735119189,440,0 +170735119236,439,0 +170735119284,439,0 +170735119332,311,0 +170735119380,301,1 +170735119459,439,0 +170735119509,440,0 +170735119558,439,0 +170735119606,440,0 +170735119654,439,0 +170735119702,439,0 +170735119750,440,0 +170735119799,440,0 +170735119849,439,0 +170735119897,440,0 +170735119946,439,0 +170735119994,440,0 +170735120042,439,0 +170735120089,439,0 +170735120137,439,0 +170735120185,440,0 +170735120233,440,0 +170735120281,439,0 +170735120330,439,0 +170735120378,290,1 +170735120459,431,0 +170735120507,439,0 +170735120555,440,0 +170735120604,439,0 +170735120652,440,0 +170735120701,440,0 +170735120749,440,0 +170735120797,440,0 +170735120847,439,0 +170735120895,440,0 +170735120944,440,0 +170735120992,440,0 +170735121040,440,0 +170735121088,439,0 +170735121136,440,0 +170735121184,439,0 +170735121233,439,0 +170735121283,440,0 +170735121330,439,0 +170735121380,439,0 +170735121428,300,1 +170735121507,235,0 +170735121555,439,0 +170735121603,439,0 +170735121651,440,0 +170735121699,440,0 +170735121747,439,0 +170735121795,440,0 +170735121843,440,0 +170735121891,440,0 +170735121939,440,0 +170735121988,439,0 +170735122036,440,0 +170735122084,440,0 +170735122132,439,0 +170735122180,440,0 +170735122229,440,0 +170735122277,440,0 +170735122325,440,0 +170735122375,439,0 +170735122422,440,0 +170735122470,295,1 +170735122548,281,1 +170735122628,440,0 +170735122677,440,0 +170735122725,440,0 +170735122773,440,0 +170735122822,440,0 +170735122872,439,0 +170735122920,440,0 +170735122968,440,0 +170735123016,440,0 +170735123064,439,0 +170735123113,440,0 +170735123163,439,0 +170735123211,439,0 +170735123260,439,0 +170735123308,440,0 +170735123356,439,0 +170735123406,440,0 +170735123455,439,0 +170735123503,439,0 +170735123553,293,1 +170735123631,434,0 +170735123680,439,0 +170735123728,440,0 +170735123776,440,0 +170735123824,439,0 +170735123872,440,0 +170735123920,440,0 +170735123969,439,0 +170735124019,440,0 +170735124067,440,0 +170735124116,439,0 +170735124164,439,0 +170735124214,439,0 +170735124261,440,0 +170735124309,439,0 +170735124357,439,0 +170735124405,439,0 +170735124453,439,0 +170735124501,440,0 +170735124549,438,0 +170735124597,294,1 +170735124684,437,0 +170735124732,439,0 +170735124780,440,0 +170735124828,439,0 +170735124875,439,0 +170735124925,440,0 +170735124975,440,0 +170735125023,440,0 +170735125072,440,0 +170735125120,440,0 +170735125168,440,0 +170735125218,440,0 +170735125266,440,0 +170735125313,440,0 +170735125363,440,0 +170735125411,440,0 +170735125459,439,0 +170735125507,440,0 +170735125555,439,0 +170735125603,439,0 +170735125651,283,1 +170735125733,435,0 +170735125782,439,0 +170735125830,440,0 +170735125878,440,0 +170735125927,440,0 +170735125975,439,0 +170735126023,440,0 +170735126071,440,0 +170735126121,439,0 +170735126170,440,0 +170735126218,439,0 +170735126266,440,0 +170735126315,440,0 +170735126363,440,0 +170735126411,440,0 +170735126461,439,0 +170735126509,440,0 +170735126558,440,0 +170735126606,439,0 +170735126655,426,0 +170735126703,294,1 +170735126785,437,0 +170735126833,440,0 +170735126881,439,0 +170735126930,440,0 +170735126978,440,0 +170735127026,439,0 +170735127074,440,0 +170735127124,439,0 +170735127172,440,0 +170735127220,439,0 +170735127268,440,0 +170735127316,439,0 +170735127364,440,0 +170735127412,440,0 +170735127460,440,0 +170735127508,440,0 +170735127555,440,0 +170735127603,439,0 +170735127651,439,0 +170735127699,438,0 +170735127749,300,1 +170735127830,438,0 +170735127878,439,0 +170735127926,440,0 +170735127974,440,0 +170735128022,440,0 +170735128070,440,0 +170735128118,440,0 +170735128168,440,0 +170735128217,440,0 +170735128265,440,0 +170735128313,440,0 +170735128363,440,0 +170735128412,440,0 +170735128462,440,0 +170735128510,440,0 +170735128558,440,0 +170735128606,440,0 +170735128654,440,0 +170735128701,440,0 +170735128751,419,0 +170735128801,297,1 +170735128882,436,0 +170735128932,440,0 +170735128981,439,0 +170735129031,440,0 +170735129079,440,0 +170735129129,440,0 +170735129177,440,0 +170735129227,440,0 +170735129275,440,0 +170735129324,440,0 +170735129372,440,0 +170735129420,439,0 +170735129468,440,0 +170735129516,439,0 +170735129564,440,0 +170735129613,440,0 +170735129663,439,0 +170735129711,439,0 +170735129759,439,0 +170735129807,370,0 +170735129856,292,1 +170735129935,437,0 +170735129985,440,0 +170735130034,439,0 +170735130082,439,0 +170735130132,440,0 +170735130179,439,0 +170735130229,440,0 +170735130277,440,0 +170735130326,440,0 +170735130376,440,0 +170735130424,440,0 +170735130474,440,0 +170735130522,440,0 +170735130571,440,0 +170735130619,440,0 +170735130669,440,0 +170735130717,440,0 +170735130766,440,0 +170735130814,439,0 +170735130864,289,1 +170735130949,246,0 +170735130997,438,0 +170735131046,439,0 +170735131096,439,0 +170735131145,439,0 +170735131193,440,0 +170735131243,440,0 +170735131291,440,0 +170735131339,440,0 +170735131387,440,0 +170735131434,440,0 +170735131484,439,0 +170735131532,440,0 +170735131580,440,0 +170735131628,439,0 +170735131675,440,0 +170735131723,440,0 +170735131773,440,0 +170735131821,440,0 +170735131869,439,0 +170735131917,301,1 +170735131999,236,0 +170735132049,439,0 +170735132098,440,0 +170735132146,440,0 +170735132194,440,0 +170735132242,440,0 +170735132291,440,0 +170735132339,440,0 +170735132387,440,0 +170735132437,440,0 +170735132486,439,0 +170735132534,440,0 +170735132582,439,0 +170735132630,439,0 +170735132680,440,0 +170735132729,440,0 +170735132777,440,0 +170735132825,440,0 +170735132873,439,0 +170735132923,439,0 +170735132971,304,1 +170735133052,416,0 +170735133100,439,0 +170735133148,439,0 +170735133196,440,0 +170735133244,440,0 +170735133292,439,0 +170735133340,440,0 +170735133388,439,0 +170735133436,440,0 +170735133484,440,0 +170735133532,440,0 +170735133580,440,0 +170735133627,440,0 +170735133675,440,0 +170735133723,440,0 +170735133771,440,0 +170735133819,440,0 +170735133868,439,0 +170735133916,439,0 +170735133964,439,0 +170735134014,298,1 +170735134096,236,0 +170735134144,439,0 +170735134193,440,0 +170735134241,440,0 +170735134289,440,0 +170735134337,440,0 +170735134385,439,0 +170735134433,440,0 +170735134481,440,0 +170735134530,439,0 +170735134578,440,0 +170735134628,440,0 +170735134675,439,0 +170735134723,440,0 +170735134771,439,0 +170735134819,439,0 +170735134867,439,0 +170735134916,439,0 +170735134964,439,0 +170735135012,440,0 +170735135060,301,1 +170735135139,246,0 +170735135187,440,0 +170735135235,440,0 +170735135285,440,0 +170735135333,440,0 +170735135380,441,0 +170735135430,441,0 +170735135478,440,0 +170735135527,440,0 +170735135577,440,0 +170735135625,440,0 +170735135674,440,0 +170735135722,441,0 +170735135771,440,0 +170735135821,440,0 +170735135869,440,0 +170735135917,440,0 +170735135966,440,0 +170735136014,441,0 +170735136062,440,0 +170735136110,298,1 +170735136194,236,0 +170735136242,440,0 +170735136290,440,0 +170735136338,440,0 +170735136387,440,0 +170735136435,440,0 +170735136483,440,0 +170735136533,440,0 +170735136582,440,0 +170735136632,440,0 +170735136681,440,0 +170735136729,440,0 +170735136779,440,0 +170735136828,440,0 +170735136876,440,0 +170735136924,440,0 +170735136972,440,0 +170735137020,440,0 +170735137069,440,0 +170735137117,440,0 +170735137165,298,1 +170735137251,424,0 +170735137299,440,0 +170735137347,440,0 +170735137395,440,0 +170735137445,440,0 +170735137493,440,0 +170735137540,440,0 +170735137588,441,0 +170735137636,440,0 +170735137684,440,0 +170735137732,440,0 +170735137780,440,0 +170735137828,440,0 +170735137876,440,0 +170735137923,440,0 +170735137971,440,0 +170735138019,440,0 +170735138067,440,0 +170735138115,440,0 +170735138164,440,0 +170735138212,293,1 +170735138299,237,0 +170735138347,440,0 +170735138395,440,0 +170735138443,440,0 +170735138490,440,0 +170735138538,440,0 +170735138586,440,0 +170735138634,440,0 +170735138682,440,0 +170735138730,440,0 +170735138778,440,0 +170735138826,440,0 +170735138875,440,0 +170735138924,440,0 +170735138974,440,0 +170735139023,440,0 +170735139071,440,0 +170735139119,440,0 +170735139169,440,0 +170735139216,440,0 +170735139264,251,0 +170735139312,280,1 +170735139391,440,0 +170735139439,440,0 +170735139487,440,0 +170735139535,440,0 +170735139583,440,0 +170735139631,440,0 +170735139680,440,0 +170735139730,440,0 +170735139778,440,0 +170735139825,440,0 +170735139873,440,0 +170735139921,440,0 +170735139969,440,0 +170735140017,440,0 +170735140065,440,0 +170735140113,440,0 +170735140160,440,0 +170735140208,440,0 +170735140258,440,0 +170735140306,256,0 +170735140354,299,1 +170735140433,440,0 +170735140481,440,0 +170735140529,440,0 +170735140577,440,0 +170735140625,440,0 +170735140673,440,0 +170735140721,440,0 +170735140768,440,0 +170735140816,440,0 +170735140864,440,0 +170735140914,440,0 +170735140961,440,0 +170735141009,440,0 +170735141057,440,0 +170735141105,440,0 +170735141155,440,0 +170735141203,440,0 +170735141250,440,0 +170735141298,440,0 +170735141346,260,0 +170735141394,290,1 +170735141473,437,0 +170735141521,440,0 +170735141569,440,0 +170735141617,440,0 +170735141665,440,0 +170735141713,440,0 +170735141760,440,0 +170735141808,440,0 +170735141856,440,0 +170735141904,440,0 +170735141952,440,0 +170735142000,440,0 +170735142048,440,0 +170735142096,440,0 +170735142143,440,0 +170735142193,440,0 +170735142241,440,0 +170735142289,440,0 +170735142338,440,0 +170735142387,437,0 +170735142437,301,1 +170735142517,437,0 +170735142565,440,0 +170735142613,440,0 +170735142661,440,0 +170735142710,440,0 +170735142758,440,0 +170735142806,440,0 +170735142855,440,0 +170735142905,440,0 +170735142953,440,0 +170735143001,440,0 +170735143050,440,0 +170735143100,440,0 +170735143148,440,0 +170735143197,440,0 +170735143245,440,0 +170735143295,440,0 +170735143343,440,0 +170735143391,440,0 +170735143439,273,1 +170735143518,303,1 +170735143596,440,0 +170735143645,440,0 +170735143695,440,0 +170735143743,440,0 +170735143792,440,0 +170735143842,440,0 +170735143891,440,0 +170735143939,440,0 +170735143989,440,0 +170735144038,440,0 +170735144088,440,0 +170735144137,440,0 +170735144185,440,0 +170735144233,440,0 +170735144283,440,0 +170735144331,440,0 +170735144379,440,0 +170735144427,440,0 +170735144476,440,0 +170735144524,297,1 +170735144604,433,0 +170735144654,440,0 +170735144703,440,0 +170735144753,440,0 +170735144801,440,0 +170735144848,440,0 +170735144896,440,0 +170735144944,440,0 +170735144992,440,0 +170735145040,440,0 +170735145088,440,0 +170735145136,440,0 +170735145184,440,0 +170735145233,440,0 +170735145283,440,0 +170735145331,440,0 +170735145380,440,0 +170735145428,440,0 +170735145476,440,0 +170735145524,440,0 +170735145571,288,1 +170735145659,434,0 +170735145707,440,0 +170735145756,440,0 +170735145806,440,0 +170735145855,440,0 +170735145903,440,0 +170735145951,440,0 +170735146001,440,0 +170735146050,440,0 +170735146100,440,0 +170735146148,440,0 +170735146196,440,0 +170735146244,440,0 +170735146293,440,0 +170735146341,440,0 +170735146389,440,0 +170735146439,440,0 +170735146487,440,0 +170735146536,440,0 +170735146584,430,0 +170735146632,290,1 +170735146714,438,0 +170735146762,440,0 +170735146811,440,0 +170735146861,440,0 +170735146910,440,0 +170735146958,440,0 +170735147006,440,0 +170735147056,440,0 +170735147105,440,0 +170735147153,440,0 +170735147201,440,0 +170735147249,440,0 +170735147297,440,0 +170735147346,440,0 +170735147394,440,0 +170735147443,440,0 +170735147491,440,0 +170735147539,440,0 +170735147589,440,0 +170735147636,278,1 +170735147716,282,1 +170735147796,440,0 +170735147845,440,0 +170735147893,440,0 +170735147941,440,0 +170735147989,440,0 +170735148037,440,0 +170735148085,440,0 +170735148132,440,0 +170735148180,440,0 +170735148228,440,0 +170735148278,440,0 +170735148326,440,0 +170735148374,440,0 +170735148421,440,0 +170735148471,440,0 +170735148519,440,0 +170735148569,440,0 +170735148617,440,0 +170735148665,440,0 +170735148714,277,1 +170735148797,433,0 +170735148846,440,0 +170735148894,440,0 +170735148942,440,0 +170735148992,440,0 +170735149040,440,0 +170735149088,440,0 +170735149137,440,0 +170735149187,440,0 +170735149234,440,0 +170735149282,440,0 +170735149332,440,0 +170735149382,440,0 +170735149430,440,0 +170735149479,440,0 +170735149529,440,0 +170735149577,440,0 +170735149624,440,0 +170735149672,440,0 +170735149720,439,0 +170735149768,300,1 +170735149859,438,0 +170735149908,440,0 +170735149958,440,0 +170735150006,440,0 +170735150054,440,0 +170735150102,440,0 +170735150150,440,0 +170735150199,440,0 +170735150247,440,0 +170735150297,440,0 +170735150346,440,0 +170735150394,440,0 +170735150442,440,0 +170735150490,440,0 +170735150538,440,0 +170735150587,440,0 +170735150635,440,0 +170735150685,440,0 +170735150735,440,0 +170735150783,298,1 +170735150863,287,1 +170735150943,440,0 +170735150993,440,0 +170735151041,440,0 +170735151090,440,0 +170735151138,440,0 +170735151186,440,0 +170735151234,440,0 +170735151284,440,0 +170735151333,440,0 +170735151383,440,0 +170735151431,440,0 +170735151479,440,0 +170735151526,440,0 +170735151574,440,0 +170735151622,440,0 +170735151670,440,0 +170735151720,440,0 +170735151768,440,0 +170735151816,439,0 +170735151865,290,1 +170735151949,435,0 +170735151997,440,0 +170735152045,440,0 +170735152092,440,0 +170735152140,440,0 +170735152188,440,0 +170735152236,440,0 +170735152284,440,0 +170735152333,440,0 +170735152381,440,0 +170735152429,440,0 +170735152477,440,0 +170735152525,440,0 +170735152573,440,0 +170735152621,440,0 +170735152668,440,0 +170735152716,440,0 +170735152764,440,0 +170735152814,440,0 +170735152861,439,0 +170735152909,298,1 +170735152990,432,0 +170735153038,440,0 +170735153086,440,0 +170735153134,440,0 +170735153183,440,0 +170735153232,440,0 +170735153282,440,0 +170735153330,440,0 +170735153379,440,0 +170735153427,440,0 +170735153477,440,0 +170735153525,440,0 +170735153574,440,0 +170735153622,440,0 +170735153670,440,0 +170735153718,440,0 +170735153768,440,0 +170735153817,440,0 +170735153865,440,0 +170735153913,439,0 +170735153961,301,1 +170735154042,434,0 +170735154090,440,0 +170735154138,440,0 +170735154186,440,0 +170735154234,440,0 +170735154282,440,0 +170735154330,440,0 +170735154379,440,0 +170735154427,440,0 +170735154475,440,0 +170735154523,440,0 +170735154571,440,0 +170735154618,440,0 +170735154668,440,0 +170735154716,440,0 +170735154764,440,0 +170735154813,440,0 +170735154861,440,0 +170735154911,440,0 +170735154960,439,0 +170735155008,300,1 +170735155089,435,0 +170735155137,440,0 +170735155185,440,0 +170735155232,440,0 +170735155280,440,0 +170735155328,440,0 +170735155376,440,0 +170735155424,440,0 +170735155472,440,0 +170735155520,440,0 +170735155568,440,0 +170735155615,440,0 +170735155663,440,0 +170735155711,440,0 +170735155759,440,0 +170735155807,440,0 +170735155856,440,0 +170735155904,440,0 +170735155952,440,0 +170735156000,440,0 +170735156048,298,1 +170735156126,430,0 +170735156174,440,0 +170735156222,440,0 +170735156270,440,0 +170735156318,440,0 +170735156366,440,0 +170735156415,440,0 +170735156464,440,0 +170735156512,440,0 +170735156560,440,0 +170735156610,440,0 +170735156659,440,0 +170735156708,440,0 +170735156756,440,0 +170735156804,440,0 +170735156852,440,0 +170735156900,440,0 +170735156948,440,0 +170735156997,440,0 +170735157045,440,0 +170735157095,286,1 +170735157173,429,0 +170735157221,440,0 +170735157269,440,0 +170735157317,440,0 +170735157365,440,0 +170735157414,440,0 +170735157462,440,0 +170735157510,440,0 +170735157558,440,0 +170735157605,440,0 +170735157653,440,0 +170735157701,440,0 +170735157749,440,0 +170735157797,440,0 +170735157845,440,0 +170735157893,440,0 +170735157941,440,0 +170735157989,440,0 +170735158036,440,0 +170735158084,440,0 +170735158132,246,0 +170735158180,250,0 +170735158228,426,0 +170735158276,437,0 +170735158324,437,0 +170735158372,437,0 +170735158420,437,0 +170735158468,437,0 +170735158515,438,0 +170735158563,437,0 +170735158611,437,0 +170735158659,436,0 +170735158708,437,0 +170735158756,437,0 +170735158806,437,0 +170735158854,437,0 +170735158902,437,0 +170735158949,437,0 +170735158997,437,0 +170735159045,437,0 +170735159093,437,0 +170735159141,436,0 +170735159191,297,1 +170735159271,353,0 +170735159319,436,0 +170735159369,437,0 +170735159418,437,0 +170735159466,437,0 +170735159514,437,0 +170735159562,437,0 +170735159610,436,0 +170735159658,437,0 +170735159705,436,0 +170735159753,437,0 +170735159801,437,0 +170735159849,437,0 +170735159897,437,0 +170735159946,437,0 +170735159994,437,0 +170735160042,437,0 +170735160090,437,0 +170735160138,437,0 +170735160188,436,0 +170735160237,307,1 +170735160319,237,0 +170735160367,435,0 +170735160417,435,0 +170735160465,435,0 +170735160513,436,0 +170735160560,436,0 +170735160608,436,0 +170735160656,436,0 +170735160704,435,0 +170735160752,436,0 +170735160800,435,0 +170735160848,435,0 +170735160896,436,0 +170735160944,435,0 +170735160992,436,0 +170735161041,436,0 +170735161091,436,0 +170735161139,436,0 +170735161188,435,0 +170735161236,435,0 +170735161286,292,1 +170735161368,411,0 +170735161417,436,0 +170735161465,436,0 +170735161515,436,0 +170735161563,435,0 +170735161611,436,0 +170735161660,436,0 +170735161710,435,0 +170735161758,435,0 +170735161806,435,0 +170735161854,436,0 +170735161902,436,0 +170735161950,436,0 +170735161997,436,0 +170735162045,435,0 +170735162093,436,0 +170735162143,435,0 +170735162191,436,0 +170735162239,435,0 +170735162288,435,0 +170735162336,304,1 +170735162417,415,0 +170735162470,435,0 +170735162518,436,0 +170735162567,435,0 +170735162617,436,0 +170735162667,436,0 +170735162716,436,0 +170735162764,435,0 +170735162812,436,0 +170735162860,436,0 +170735162908,435,0 +170735162957,435,0 +170735163005,435,0 +170735163053,436,0 +170735163101,436,0 +170735163151,436,0 +170735163200,435,0 +170735163250,436,0 +170735163298,435,0 +170735163346,435,0 +170735163394,306,1 +170735163475,423,0 +170735163524,435,0 +170735163572,436,0 +170735163620,436,0 +170735163670,436,0 +170735163719,436,0 +170735163769,436,0 +170735163817,436,0 +170735163866,436,0 +170735163914,436,0 +170735163962,436,0 +170735164010,436,0 +170735164058,436,0 +170735164108,436,0 +170735164156,436,0 +170735164204,437,0 +170735164253,436,0 +170735164301,436,0 +170735164349,435,0 +170735164397,275,1 +170735164480,287,1 +170735164560,436,0 +170735164610,436,0 +170735164659,436,0 +170735164709,436,0 +170735164758,436,0 +170735164808,436,0 +170735164857,436,0 +170735164905,436,0 +170735164955,436,0 +170735165003,436,0 +170735165052,436,0 +170735165100,436,0 +170735165150,436,0 +170735165198,436,0 +170735165246,436,0 +170735165294,436,0 +170735165343,436,0 +170735165393,436,0 +170735165442,432,0 +170735165490,302,1 +170735165572,426,0 +170735165620,436,0 +170735165668,436,0 +170735165716,436,0 +170735165763,436,0 +170735165811,436,0 +170735165859,436,0 +170735165907,436,0 +170735165955,436,0 +170735166003,436,0 +170735166051,436,0 +170735166099,436,0 +170735166147,436,0 +170735166195,436,0 +170735166243,436,0 +170735166291,436,0 +170735166339,436,0 +170735166389,436,0 +170735166437,436,0 +170735166486,435,0 +170735166536,303,1 +170735166617,417,0 +170735166665,436,0 +170735166713,436,0 +170735166761,436,0 +170735166809,436,0 +170735166857,436,0 +170735166905,436,0 +170735166954,436,0 +170735167002,436,0 +170735167051,436,0 +170735167099,436,0 +170735167147,436,0 +170735167197,436,0 +170735167245,436,0 +170735167293,436,0 +170735167341,436,0 +170735167390,436,0 +170735167438,436,0 +170735167486,435,0 +170735167534,435,0 +170735167582,298,1 +170735167665,417,0 +170735167713,436,0 +170735167761,436,0 +170735167809,436,0 +170735167857,436,0 +170735167905,436,0 +170735167953,435,0 +170735168001,436,0 +170735168049,436,0 +170735168097,436,0 +170735168145,436,0 +170735168193,436,0 +170735168241,436,0 +170735168289,436,0 +170735168337,436,0 +170735168384,436,0 +170735168432,435,0 +170735168480,436,0 +170735168528,436,0 +170735168576,435,0 +170735168625,300,1 +170735168707,415,0 +170735168755,435,0 +170735168804,436,0 +170735168852,435,0 +170735168900,435,0 +170735168948,435,0 +170735168996,436,0 +170735169044,435,0 +170735169091,436,0 +170735169141,434,0 +170735169189,436,0 +170735169237,435,0 +170735169286,435,0 +170735169334,436,0 +170735169382,435,0 +170735169430,435,0 +170735169478,434,0 +170735169526,435,0 +170735169575,435,0 +170735169625,434,0 +170735169673,306,1 +170735169755,406,0 +170735169804,435,0 +170735169852,435,0 +170735169900,435,0 +170735169948,435,0 +170735169996,435,0 +170735170044,435,0 +170735170093,436,0 +170735170141,436,0 +170735170191,435,0 +170735170240,435,0 +170735170288,435,0 +170735170336,435,0 +170735170384,435,0 +170735170432,436,0 +170735170480,435,0 +170735170528,436,0 +170735170578,435,0 +170735170626,435,0 +170735170673,434,0 +170735170721,292,1 +170735170801,411,0 +170735170849,435,0 +170735170897,435,0 +170735170945,436,0 +170735170993,435,0 +170735171040,435,0 +170735171090,435,0 +170735171138,435,0 +170735171187,436,0 +170735171235,435,0 +170735171283,436,0 +170735171333,435,0 +170735171382,435,0 +170735171432,435,0 +170735171481,435,0 +170735171531,436,0 +170735171579,435,0 +170735171627,436,0 +170735171676,435,0 +170735171724,434,0 +170735171772,303,1 +170735171852,422,0 +170735171902,435,0 +170735171950,435,0 +170735171998,436,0 +170735172046,435,0 +170735172094,436,0 +170735172141,435,0 +170735172189,436,0 +170735172237,435,0 +170735172285,435,0 +170735172333,435,0 +170735172381,435,0 +170735172428,435,0 +170735172476,435,0 +170735172524,435,0 +170735172572,435,0 +170735172622,435,0 +170735172670,435,0 +170735172718,435,0 +170735172765,434,0 +170735172813,307,1 +170735172894,397,0 +170735172942,435,0 +170735172990,435,0 +170735173039,435,0 +170735173087,435,0 +170735173135,435,0 +170735173183,436,0 +170735173231,435,0 +170735173279,436,0 +170735173327,435,0 +170735173375,436,0 +170735173424,435,0 +170735173472,435,0 +170735173520,435,0 +170735173568,435,0 +170735173618,435,0 +170735173665,435,0 +170735173715,435,0 +170735173763,435,0 +170735173811,434,0 +170735173859,307,1 +170735173939,236,0 +170735173987,435,0 +170735174036,435,0 +170735174084,435,0 +170735174132,436,0 +170735174180,435,0 +170735174228,436,0 +170735174276,436,0 +170735174324,435,0 +170735174371,436,0 +170735174419,435,0 +170735174467,436,0 +170735174515,435,0 +170735174563,435,0 +170735174612,435,0 +170735174660,436,0 +170735174710,436,0 +170735174758,436,0 +170735174806,435,0 +170735174855,435,0 +170735174904,317,0 +170735174952,300,1 +170735175032,434,0 +170735175080,436,0 +170735175128,435,0 +170735175176,436,0 +170735175224,436,0 +170735175273,436,0 +170735175321,436,0 +170735175369,436,0 +170735175417,436,0 +170735175465,436,0 +170735175514,435,0 +170735175564,436,0 +170735175612,435,0 +170735175660,437,0 +170735175708,436,0 +170735175756,435,0 +170735175804,436,0 +170735175851,436,0 +170735175899,435,0 +170735175947,309,1 +170735176041,400,0 +170735176089,436,0 +170735176137,435,0 +170735176185,436,0 +170735176233,436,0 +170735176281,436,0 +170735176329,436,0 +170735176376,436,0 +170735176424,436,0 +170735176472,436,0 +170735176520,436,0 +170735176569,435,0 +170735176619,436,0 +170735176667,435,0 +170735176715,436,0 +170735176764,436,0 +170735176814,436,0 +170735176862,436,0 +170735176910,435,0 +170735176957,434,0 +170735177005,298,1 +170735177085,391,0 +170735177133,436,0 +170735177181,436,0 +170735177229,436,0 +170735177277,436,0 +170735177325,436,0 +170735177374,435,0 +170735177422,436,0 +170735177470,436,0 +170735177518,435,0 +170735177566,436,0 +170735177613,435,0 +170735177661,436,0 +170735177711,435,0 +170735177759,436,0 +170735177807,436,0 +170735177854,435,0 +170735177902,436,0 +170735177950,435,0 +170735177998,435,0 +170735178046,313,0 +170735178094,305,1 +170735178174,435,0 +170735178223,436,0 +170735178271,436,0 +170735178321,436,0 +170735178369,436,0 +170735178416,436,0 +170735178464,436,0 +170735178512,435,0 +170735178560,435,0 +170735178608,436,0 +170735178656,435,0 +170735178704,436,0 +170735178752,435,0 +170735178801,435,0 +170735178849,436,0 +170735178899,435,0 +170735178947,435,0 +170735178995,436,0 +170735179044,435,0 +170735179094,297,1 +170735179174,266,0 +170735179224,433,0 +170735179272,433,0 +170735179320,432,0 +170735179368,434,0 +170735179416,433,0 +170735179464,433,0 +170735179513,433,0 +170735179561,433,0 +170735179609,433,0 +170735179657,433,0 +170735179707,434,0 +170735179756,434,0 +170735179804,433,0 +170735179854,434,0 +170735179902,434,0 +170735179950,434,0 +170735179997,433,0 +170735180045,433,0 +170735180095,433,0 +170735180143,303,1 +170735180223,258,0 +170735180271,434,0 +170735180319,433,0 +170735180367,434,0 +170735180415,433,0 +170735180463,434,0 +170735180511,433,0 +170735180559,433,0 +170735180609,434,0 +170735180656,432,0 +170735180704,435,0 +170735180752,434,0 +170735180800,434,0 +170735180850,434,0 +170735180898,434,0 +170735180946,434,0 +170735180994,433,0 +170735181043,435,0 +170735181091,432,0 +170735181139,435,0 +170735181187,303,1 +170735181268,236,0 +170735181316,433,0 +170735181364,432,0 +170735181412,433,0 +170735181462,432,0 +170735181510,435,0 +170735181557,433,0 +170735181607,435,0 +170735181655,434,0 +170735181703,433,0 +170735181750,433,0 +170735181798,434,0 +170735181848,434,0 +170735181896,434,0 +170735181944,434,0 +170735181991,434,0 +170735182041,434,0 +170735182089,433,0 +170735182137,433,0 +170735182186,433,0 +170735182234,298,1 +170735182314,279,1 +170735182391,433,0 +170735182439,433,0 +170735182488,434,0 +170735182536,434,0 +170735182584,434,0 +170735182632,433,0 +170735182681,434,0 +170735182731,435,0 +170735182779,434,0 +170735182827,434,0 +170735182874,434,0 +170735182922,433,0 +170735182970,433,0 +170735183018,433,0 +170735183066,434,0 +170735183114,434,0 +170735183162,434,0 +170735183210,433,0 +170735183258,388,0 +170735183305,308,1 +170735183390,425,0 +170735183438,434,0 +170735183486,434,0 +170735183533,433,0 +170735183581,434,0 +170735183629,434,0 +170735183677,433,0 +170735183725,433,0 +170735183773,434,0 +170735183821,434,0 +170735183869,434,0 +170735183917,434,0 +170735183964,434,0 +170735184012,435,0 +170735184060,433,0 +170735184108,434,0 +170735184156,433,0 +170735184204,434,0 +170735184253,435,0 +170735184303,432,0 +170735184351,300,1 +170735184430,414,0 +170735184479,433,0 +170735184527,433,0 +170735184575,433,0 +170735184623,435,0 +170735184671,432,0 +170735184719,435,0 +170735184766,433,0 +170735184814,434,0 +170735184862,433,0 +170735184910,434,0 +170735184958,434,0 +170735185007,434,0 +170735185057,434,0 +170735185105,433,0 +170735185153,434,0 +170735185201,435,0 +170735185249,433,0 +170735185298,435,0 +170735185346,431,0 +170735185394,307,1 +170735185475,403,0 +170735185523,432,0 +170735185570,433,0 +170735185618,433,0 +170735185666,434,0 +170735185714,434,0 +170735185762,434,0 +170735185810,433,0 +170735185858,436,0 +170735185906,433,0 +170735185954,436,0 +170735186001,432,0 +170735186049,434,0 +170735186097,433,0 +170735186145,434,0 +170735186193,434,0 +170735186241,432,0 +170735186290,434,0 +170735186338,433,0 +170735186386,434,0 +170735186434,432,0 +170735186482,433,0 +170735186531,434,0 +170735186579,433,0 +170735186627,434,0 +170735186676,434,0 +170735186726,433,0 +170735186774,433,0 +170735186822,433,0 +170735186870,433,0 +170735186917,377,0 +170735186965,293,1 +170735187044,415,0 +170735187094,434,0 +170735187142,434,0 +170735187190,434,0 +170735187237,434,0 +170735187287,435,0 +170735187335,435,0 +170735187383,434,0 +170735187431,434,0 +170735187478,433,0 +170735187526,434,0 +170735187574,432,0 +170735187624,434,0 +170735187673,433,0 +170735187721,432,0 +170735187769,434,0 +170735187817,433,0 +170735187865,435,0 +170735187913,434,0 +170735187961,434,0 +170735188008,298,1 +170735188101,407,0 +170735188149,433,0 +170735188197,432,0 +170735188246,434,0 +170735188294,434,0 +170735188343,434,0 +170735188391,436,0 +170735188439,433,0 +170735188487,434,0 +170735188535,434,0 +170735188584,434,0 +170735188632,435,0 +170735188680,433,0 +170735188728,434,0 +170735188776,433,0 +170735188824,434,0 +170735188872,434,0 +170735188920,433,0 +170735188967,433,0 +170735189015,432,0 +170735189063,302,1 +170735189153,415,0 +170735189201,433,0 +170735189250,433,0 +170735189298,434,0 +170735189348,434,0 +170735189396,434,0 +170735189444,433,0 +170735189492,435,0 +170735189540,434,0 +170735189587,435,0 +170735189635,434,0 +170735189683,434,0 +170735189733,433,0 +170735189782,435,0 +170735189830,433,0 +170735189880,433,0 +170735189928,432,0 +170735189975,435,0 +170735190023,432,0 +170735190071,365,0 +170735190119,306,1 +170735190203,427,0 +170735190251,433,0 +170735190299,434,0 +170735190347,433,0 +170735190394,433,0 +170735190444,434,0 +170735190492,435,0 +170735190540,434,0 +170735190588,433,0 +170735190637,433,0 +170735190687,434,0 +170735190735,434,0 +170735190782,434,0 +170735190830,436,0 +170735190878,434,0 +170735190928,435,0 +170735190976,434,0 +170735191025,434,0 +170735191073,434,0 +170735191123,405,0 +170735191171,305,1 +170735191256,426,0 +170735191304,435,0 +170735191352,435,0 +170735191401,435,0 +170735191451,435,0 +170735191500,436,0 +170735191550,435,0 +170735191598,435,0 +170735191646,435,0 +170735191694,435,0 +170735191742,435,0 +170735191790,435,0 +170735191838,435,0 +170735191887,435,0 +170735191937,435,0 +170735191985,435,0 +170735192033,435,0 +170735192081,435,0 +170735192128,435,0 +170735192176,298,1 +170735192270,246,0 +170735192318,435,0 +170735192366,437,0 +170735192414,437,0 +170735192462,436,0 +170735192511,436,0 +170735192561,437,0 +170735192609,436,0 +170735192657,436,0 +170735192706,437,0 +170735192754,437,0 +170735192802,437,0 +170735192850,437,0 +170735192898,437,0 +170735192946,436,0 +170735192994,436,0 +170735193044,437,0 +170735193092,437,0 +170735193141,436,0 +170735193189,436,0 +170735193239,310,0 +170735193287,301,1 +170735193372,436,0 +170735193420,436,0 +170735193468,436,0 +170735193517,437,0 +170735193565,437,0 +170735193613,436,0 +170735193661,437,0 +170735193709,437,0 +170735193757,436,0 +170735193805,436,0 +170735193855,437,0 +170735193903,436,0 +170735193950,436,0 +170735193998,436,0 +170735194046,436,0 +170735194094,437,0 +170735194144,437,0 +170735194192,437,0 +170735194240,435,0 +170735194289,304,1 +170735194374,414,0 +170735194422,436,0 +170735194470,436,0 +170735194518,437,0 +170735194567,436,0 +170735194617,436,0 +170735194665,436,0 +170735194714,437,0 +170735194762,436,0 +170735194812,437,0 +170735194860,436,0 +170735194909,436,0 +170735194957,437,0 +170735195005,437,0 +170735195055,437,0 +170735195103,436,0 +170735195151,437,0 +170735195200,437,0 +170735195248,436,0 +170735195296,434,0 +170735195344,311,0 +170735195392,305,1 +170735195469,437,0 +170735195519,436,0 +170735195568,437,0 +170735195618,436,0 +170735195666,437,0 +170735195714,437,0 +170735195761,436,0 +170735195809,437,0 +170735195859,437,0 +170735195909,437,0 +170735195958,436,0 +170735196007,437,0 +170735196055,437,0 +170735196103,436,0 +170735196151,436,0 +170735196199,437,0 +170735196247,436,0 +170735196295,436,0 +170735196343,434,0 +170735196391,303,1 +170735196468,240,0 +170735196516,436,0 +170735196564,436,0 +170735196612,436,0 +170735196660,436,0 +170735196708,437,0 +170735196757,436,0 +170735196805,437,0 +170735196853,436,0 +170735196901,437,0 +170735196949,436,0 +170735196997,436,0 +170735197045,436,0 +170735197093,436,0 +170735197140,436,0 +170735197188,436,0 +170735197236,436,0 +170735197286,437,0 +170735197335,436,0 +170735197383,436,0 +170735197431,302,1 +170735197516,246,0 +170735197564,436,0 +170735197612,436,0 +170735197660,437,0 +170735197709,436,0 +170735197757,436,0 +170735197805,436,0 +170735197853,437,0 +170735197901,436,0 +170735197949,437,0 +170735197999,437,0 +170735198048,436,0 +170735198098,437,0 +170735198146,436,0 +170735198195,437,0 +170735198243,436,0 +170735198291,437,0 +170735198339,436,0 +170735198387,437,0 +170735198435,435,0 +170735198483,302,1 +170735198562,236,0 +170735198610,436,0 +170735198658,436,0 +170735198706,436,0 +170735198754,436,0 +170735198802,437,0 +170735198849,437,0 +170735198897,437,0 +170735198945,437,0 +170735198993,436,0 +170735199043,436,0 +170735199091,437,0 +170735199139,437,0 +170735199187,437,0 +170735199236,436,0 +170735199284,437,0 +170735199332,437,0 +170735199380,436,0 +170735199428,436,0 +170735199477,436,0 +170735199527,309,1 +170735199608,233,0 +170735199656,436,0 +170735199703,437,0 +170735199753,436,0 +170735199801,437,0 +170735199849,437,0 +170735199897,436,0 +170735199946,436,0 +170735199996,437,0 +170735200046,436,0 +170735200093,437,0 +170735200141,436,0 +170735200189,437,0 +170735200237,437,0 +170735200285,437,0 +170735200333,437,0 +170735200381,437,0 +170735200431,436,0 +170735200480,437,0 +170735200528,436,0 +170735200576,304,1 +170735200656,238,0 +170735200704,435,0 +170735200752,437,0 +170735200801,437,0 +170735200849,436,0 +170735200897,437,0 +170735200945,436,0 +170735200993,437,0 +170735201041,436,0 +170735201089,437,0 +170735201137,436,0 +170735201184,437,0 +170735201234,436,0 +170735201282,437,0 +170735201330,436,0 +170735201379,436,0 +170735201427,437,0 +170735201475,437,0 +170735201523,437,0 +170735201571,435,0 +170735201619,298,1 +170735201701,240,0 +170735201749,436,0 +170735201797,436,0 +170735201845,437,0 +170735201893,436,0 +170735201941,436,0 +170735201989,436,0 +170735202037,437,0 +170735202085,436,0 +170735202133,437,0 +170735202182,436,0 +170735202230,437,0 +170735202278,437,0 +170735202325,436,0 +170735202373,437,0 +170735202421,437,0 +170735202469,437,0 +170735202517,437,0 +170735202565,436,0 +170735202613,436,0 +170735202661,307,1 +170735202738,301,1 +170735202820,436,0 +170735202868,437,0 +170735202916,437,0 +170735202965,437,0 +170735203013,436,0 +170735203061,436,0 +170735203109,436,0 +170735203159,436,0 +170735203207,437,0 +170735203256,437,0 +170735203304,437,0 +170735203352,436,0 +170735203400,437,0 +170735203448,436,0 +170735203496,436,0 +170735203544,436,0 +170735203592,437,0 +170735203640,436,0 +170735203688,435,0 +170735203736,309,1 +170735203817,413,0 +170735203867,436,0 +170735203916,436,0 +170735203966,436,0 +170735204014,436,0 +170735204063,437,0 +170735204113,436,0 +170735204160,436,0 +170735204210,437,0 +170735204258,436,0 +170735204306,436,0 +170735204354,436,0 +170735204403,437,0 +170735204451,437,0 +170735204501,437,0 +170735204549,437,0 +170735204597,437,0 +170735204645,436,0 +170735204693,436,0 +170735204740,435,0 +170735204790,302,1 +170735204876,428,0 +170735204924,436,0 +170735204972,436,0 +170735205021,437,0 +170735205071,437,0 +170735205119,437,0 +170735205167,436,0 +170735205214,436,0 +170735205262,437,0 +170735205310,437,0 +170735205358,436,0 +170735205406,436,0 +170735205454,437,0 +170735205502,436,0 +170735205551,437,0 +170735205601,437,0 +170735205649,437,0 +170735205697,436,0 +170735205746,436,0 +170735205794,281,1 +170735205880,296,1 +170735205961,437,0 +170735206009,437,0 +170735206058,436,0 +170735206108,437,0 +170735206155,437,0 +170735206203,436,0 +170735206251,436,0 +170735206301,436,0 +170735206349,437,0 +170735206398,436,0 +170735206446,437,0 +170735206496,436,0 +170735206545,436,0 +170735206593,436,0 +170735206641,437,0 +170735206689,436,0 +170735206737,436,0 +170735206785,437,0 +170735206833,435,0 +170735206881,298,1 +170735206963,416,0 +170735207011,436,0 +170735207059,436,0 +170735207107,436,0 +170735207155,436,0 +170735207203,436,0 +170735207251,436,0 +170735207301,436,0 +170735207349,436,0 +170735207398,436,0 +170735207448,437,0 +170735207496,436,0 +170735207545,436,0 +170735207595,436,0 +170735207643,436,0 +170735207691,436,0 +170735207740,436,0 +170735207788,436,0 +170735207838,436,0 +170735207886,433,0 +170735207934,309,1 +170735208016,423,0 +170735208064,436,0 +170735208114,437,0 +170735208164,436,0 +170735208212,436,0 +170735208260,436,0 +170735208309,437,0 +170735208357,436,0 +170735208405,436,0 +170735208453,436,0 +170735208501,436,0 +170735208549,436,0 +170735208598,436,0 +170735208646,436,0 +170735208694,436,0 +170735208744,436,0 +170735208792,436,0 +170735208840,436,0 +170735208888,436,0 +170735208936,271,1 +170735209028,266,0 +170735209076,434,0 +170735209126,436,0 +170735209174,437,0 +170735209221,436,0 +170735209269,437,0 +170735209317,436,0 +170735209365,436,0 +170735209415,437,0 +170735209463,436,0 +170735209511,437,0 +170735209561,437,0 +170735209608,436,0 +170735209656,437,0 +170735209704,436,0 +170735209752,436,0 +170735209800,437,0 +170735209850,436,0 +170735209899,436,0 +170735209947,436,0 +170735209995,285,1 +170735210077,301,1 +170735210153,437,0 +170735210201,437,0 +170735210249,436,0 +170735210297,437,0 +170735210347,437,0 +170735210395,436,0 +170735210443,437,0 +170735210492,436,0 +170735210540,436,0 +170735210590,437,0 +170735210638,437,0 +170735210685,436,0 +170735210733,437,0 +170735210781,436,0 +170735210831,436,0 +170735210879,437,0 +170735210928,437,0 +170735210978,437,0 +170735211026,436,0 +170735211074,297,1 +170735211156,412,0 +170735211206,436,0 +170735211254,436,0 +170735211302,436,0 +170735211350,436,0 +170735211398,436,0 +170735211447,437,0 +170735211495,436,0 +170735211543,437,0 +170735211591,437,0 +170735211639,436,0 +170735211689,437,0 +170735211738,436,0 +170735211786,437,0 +170735211834,436,0 +170735211884,436,0 +170735211931,437,0 +170735211981,436,0 +170735212029,436,0 +170735212077,433,0 +170735212125,299,1 +170735212210,427,0 +170735212258,437,0 +170735212306,436,0 +170735212354,437,0 +170735212402,436,0 +170735212450,436,0 +170735212498,437,0 +170735212546,436,0 +170735212596,437,0 +170735212644,437,0 +170735212692,436,0 +170735212741,436,0 +170735212791,436,0 +170735212839,436,0 +170735212887,437,0 +170735212936,436,0 +170735212986,437,0 +170735213034,436,0 +170735213083,436,0 +170735213131,433,0 +170735213179,287,1 +170735213259,422,0 +170735213307,436,0 +170735213355,436,0 +170735213403,437,0 +170735213452,437,0 +170735213500,436,0 +170735213548,437,0 +170735213596,436,0 +170735213644,436,0 +170735213692,436,0 +170735213740,437,0 +170735213788,436,0 +170735213836,437,0 +170735213884,436,0 +170735213932,437,0 +170735213980,437,0 +170735214029,437,0 +170735214077,436,0 +170735214125,437,0 +170735214174,433,0 +170735214222,297,1 +170735214306,425,0 +170735214354,436,0 +170735214401,436,0 +170735214451,436,0 +170735214499,436,0 +170735214547,436,0 +170735214594,437,0 +170735214642,436,0 +170735214690,437,0 +170735214738,436,0 +170735214786,437,0 +170735214834,437,0 +170735214884,436,0 +170735214932,437,0 +170735214980,437,0 +170735215029,437,0 +170735215077,437,0 +170735215125,436,0 +170735215174,436,0 +170735215222,431,0 +170735215270,305,1 +170735215355,426,0 +170735215402,436,0 +170735215450,436,0 +170735215498,436,0 +170735215546,437,0 +170735215596,437,0 +170735215644,436,0 +170735215692,436,0 +170735215740,436,0 +170735215788,436,0 +170735215836,437,0 +170735215884,437,0 +170735215933,437,0 +170735215981,437,0 +170735216029,436,0 +170735216077,436,0 +170735216127,437,0 +170735216175,436,0 +170735216223,436,0 +170735216270,434,0 +170735216318,293,1 +170735216399,421,0 +170735216446,435,0 +170735216494,436,0 +170735216542,436,0 +170735216592,437,0 +170735216641,436,0 +170735216689,437,0 +170735216737,436,0 +170735216785,436,0 +170735216835,437,0 +170735216884,436,0 +170735216932,436,0 +170735216980,436,0 +170735217028,436,0 +170735217076,436,0 +170735217124,437,0 +170735217172,436,0 +170735217219,437,0 +170735217269,436,0 +170735217317,435,0 +170735217365,288,1 +170735217448,414,0 +170735217496,436,0 +170735217544,436,0 +170735217591,437,0 +170735217639,436,0 +170735217689,437,0 +170735217737,436,0 +170735217785,437,0 +170735217833,436,0 +170735217880,436,0 +170735217928,436,0 +170735217976,437,0 +170735218024,436,0 +170735218072,437,0 +170735218120,436,0 +170735218168,436,0 +170735218216,436,0 +170735218263,436,0 +170735218313,437,0 +170735218361,435,0 +170735218409,281,1 +170735218495,414,0 +170735218543,436,0 +170735218590,436,0 +170735218638,436,0 +170735218686,436,0 +170735218734,437,0 +170735218782,436,0 +170735218830,437,0 +170735218880,437,0 +170735218928,436,0 +170735218976,437,0 +170735219025,436,0 +170735219073,437,0 +170735219123,436,0 +170735219171,437,0 +170735219220,436,0 +170735219268,436,0 +170735219318,437,0 +170735219366,436,0 +170735219414,435,0 +170735219463,292,1 +170735219547,422,0 +170735219595,436,0 +170735219643,437,0 +170735219691,436,0 +170735219739,436,0 +170735219787,437,0 +170735219835,436,0 +170735219883,437,0 +170735219931,436,0 +170735219980,437,0 +170735220030,436,0 +170735220078,437,0 +170735220126,437,0 +170735220174,437,0 +170735220223,436,0 +170735220271,437,0 +170735220319,437,0 +170735220367,436,0 +170735220415,436,0 +170735220463,434,0 +170735220513,302,1 +170735220589,422,0 +170735220638,437,0 +170735220686,436,0 +170735220736,436,0 +170735220784,436,0 +170735220832,436,0 +170735220880,436,0 +170735220928,436,0 +170735220976,437,0 +170735221025,436,0 +170735221073,436,0 +170735221121,437,0 +170735221169,436,0 +170735221217,437,0 +170735221266,436,0 +170735221316,436,0 +170735221364,437,0 +170735221412,437,0 +170735221462,436,0 +170735221510,434,0 +170735221557,288,1 +170735221639,420,0 +170735221689,437,0 +170735221737,436,0 +170735221785,437,0 +170735221833,437,0 +170735221880,437,0 +170735221928,437,0 +170735221976,437,0 +170735222024,436,0 +170735222074,437,0 +170735222122,436,0 +170735222170,437,0 +170735222219,436,0 +170735222267,437,0 +170735222317,437,0 +170735222365,437,0 +170735222413,436,0 +170735222461,437,0 +170735222510,436,0 +170735222558,436,0 +170735222606,292,1 +170735222687,238,0 +170735222735,435,0 +170735222783,436,0 +170735222831,437,0 +170735222879,437,0 +170735222927,437,0 +170735222977,436,0 +170735223025,437,0 +170735223073,436,0 +170735223120,437,0 +170735223168,437,0 +170735223218,436,0 +170735223266,436,0 +170735223314,436,0 +170735223362,436,0 +170735223410,437,0 +170735223458,436,0 +170735223506,436,0 +170735223554,436,0 +170735223603,435,0 +170735223653,270,1 +170735223748,429,0 +170735223796,437,0 +170735223844,437,0 +170735223892,437,0 +170735223941,437,0 +170735223989,436,0 +170735224037,436,0 +170735224085,436,0 +170735224133,436,0 +170735224182,437,0 +170735224232,437,0 +170735224280,437,0 +170735224328,436,0 +170735224378,437,0 +170735224427,436,0 +170735224475,437,0 +170735224523,437,0 +170735224571,437,0 +170735224619,436,0 +170735224667,290,1 +170735224752,296,1 +170735224827,436,0 +170735224877,437,0 +170735224925,436,0 +170735224974,437,0 +170735225024,437,0 +170735225072,436,0 +170735225122,437,0 +170735225169,436,0 +170735225217,437,0 +170735225265,436,0 +170735225313,437,0 +170735225361,437,0 +170735225411,437,0 +170735225460,436,0 +170735225508,436,0 +170735225556,436,0 +170735225604,437,0 +170735225654,436,0 +170735225702,436,0 +170735225750,295,1 +170735225833,412,0 +170735225883,436,0 +170735225931,437,0 +170735225978,437,0 +170735226028,437,0 +170735226078,436,0 +170735226126,437,0 +170735226175,436,0 +170735226223,436,0 +170735226273,437,0 +170735226321,437,0 +170735226369,437,0 +170735226418,437,0 +170735226467,437,0 +170735226515,436,0 +170735226563,437,0 +170735226613,437,0 +170735226663,437,0 +170735226712,436,0 +170735226762,275,1 +170735226845,290,1 +170735226927,437,0 +170735226975,437,0 +170735227025,436,0 +170735227073,437,0 +170735227122,436,0 +170735227170,437,0 +170735227220,437,0 +170735227268,436,0 +170735227316,437,0 +170735227365,437,0 +170735227413,436,0 +170735227463,437,0 +170735227512,437,0 +170735227560,437,0 +170735227608,437,0 +170735227656,436,0 +170735227706,436,0 +170735227754,436,0 +170735227802,428,0 +170735227851,295,1 +170735227933,426,0 +170735227983,436,0 +170735228032,437,0 +170735228080,437,0 +170735228128,437,0 +170735228176,437,0 +170735228224,437,0 +170735228272,436,0 +170735228320,437,0 +170735228369,436,0 +170735228417,437,0 +170735228466,436,0 +170735228514,436,0 +170735228564,436,0 +170735228613,436,0 +170735228663,436,0 +170735228710,437,0 +170735228758,436,0 +170735228808,436,0 +170735228858,433,0 +170735228906,273,1 +170735228986,424,0 +170735229034,436,0 +170735229082,437,0 +170735229130,436,0 +170735229178,436,0 +170735229226,437,0 +170735229274,436,0 +170735229321,436,0 +170735229369,436,0 +170735229417,436,0 +170735229465,436,0 +170735229513,436,0 +170735229561,437,0 +170735229609,437,0 +170735229657,436,0 +170735229706,436,0 +170735229754,436,0 +170735229802,437,0 +170735229850,436,0 +170735229898,435,0 +170735229946,263,0 +170735229994,297,1 +170735230075,431,0 +170735230123,432,0 +170735230172,430,0 +170735230220,433,0 +170735230268,433,0 +170735230316,431,0 +170735230364,432,0 +170735230412,432,0 +170735230460,433,0 +170735230510,433,0 +170735230559,431,0 +170735230607,432,0 +170735230657,430,0 +170735230706,431,0 +170735230754,433,0 +170735230804,432,0 +170735230853,431,0 +170735230901,430,0 +170735230951,267,0 +170735230999,285,1 +170735231078,422,0 +170735231126,434,0 +170735231174,433,0 +170735231222,433,0 +170735231271,434,0 +170735231319,434,0 +170735231367,434,0 +170735231417,434,0 +170735231465,434,0 +170735231514,434,0 +170735231564,434,0 +170735231613,433,0 +170735231661,434,0 +170735231711,433,0 +170735231759,434,0 +170735231809,434,0 +170735231856,434,0 +170735231906,433,0 +170735231956,434,0 +170735232004,415,0 +170735232052,283,1 +170735232130,414,0 +170735232180,433,0 +170735232228,434,0 +170735232276,434,0 +170735232325,434,0 +170735232375,434,0 +170735232422,433,0 +170735232472,434,0 +170735232520,433,0 +170735232568,434,0 +170735232616,434,0 +170735232665,434,0 +170735232715,434,0 +170735232763,434,0 +170735232812,434,0 +170735232860,434,0 +170735232910,434,0 +170735232958,434,0 +170735233006,433,0 +170735233054,432,0 +170735233102,266,0 +170735233150,276,1 +170735233229,433,0 +170735233277,434,0 +170735233325,434,0 +170735233374,434,0 +170735233422,434,0 +170735233470,433,0 +170735233518,434,0 +170735233568,434,0 +170735233616,433,0 +170735233663,433,0 +170735233711,433,0 +170735233761,434,0 +170735233809,434,0 +170735233857,434,0 +170735233905,434,0 +170735233953,434,0 +170735234001,433,0 +170735234050,433,0 +170735234098,352,0 +170735234146,299,1 +170735234227,423,0 +170735234275,434,0 +170735234323,433,0 +170735234371,434,0 +170735234421,434,0 +170735234470,434,0 +170735234520,434,0 +170735234568,434,0 +170735234616,435,0 +170735234663,434,0 +170735234711,434,0 +170735234761,434,0 +170735234809,433,0 +170735234857,434,0 +170735234907,434,0 +170735234955,434,0 +170735235004,433,0 +170735235052,434,0 +170735235100,434,0 +170735235150,397,0 +170735235199,284,1 +170735235281,421,0 +170735235330,434,0 +170735235380,434,0 +170735235428,434,0 +170735235477,434,0 +170735235525,434,0 +170735235573,434,0 +170735235621,433,0 +170735235669,434,0 +170735235717,433,0 +170735235765,434,0 +170735235813,434,0 +170735235861,434,0 +170735235911,434,0 +170735235959,434,0 +170735236007,434,0 +170735236056,434,0 +170735236104,433,0 +170735236154,432,0 +170735236201,273,1 +170735236278,297,1 +170735236355,433,0 +170735236405,434,0 +170735236454,434,0 +170735236502,434,0 +170735236550,434,0 +170735236598,434,0 +170735236648,433,0 +170735236697,434,0 +170735236745,433,0 +170735236793,434,0 +170735236841,433,0 +170735236891,434,0 +170735236939,434,0 +170735236987,434,0 +170735237035,433,0 +170735237083,433,0 +170735237131,434,0 +170735237179,433,0 +170735237228,432,0 +170735237276,280,1 +170735237361,394,0 +170735237409,433,0 +170735237457,434,0 +170735237505,434,0 +170735237554,433,0 +170735237602,434,0 +170735237650,434,0 +170735237698,434,0 +170735237746,434,0 +170735237794,434,0 +170735237843,434,0 +170735237891,434,0 +170735237939,434,0 +170735237989,434,0 +170735238037,435,0 +170735238085,434,0 +170735238133,434,0 +170735238181,434,0 +170735238229,433,0 +170735238277,433,0 +170735238325,280,1 +170735238407,388,0 +170735238455,433,0 +170735238503,433,0 +170735238550,433,0 +170735238598,433,0 +170735238646,434,0 +170735238694,434,0 +170735238742,433,0 +170735238790,434,0 +170735238838,434,0 +170735238886,434,0 +170735238935,434,0 +170735238985,433,0 +170735239032,434,0 +170735239080,434,0 +170735239130,434,0 +170735239178,433,0 +170735239227,434,0 +170735239275,433,0 +170735239323,433,0 +170735239371,295,1 +170735239456,365,0 +170735239504,433,0 +170735239553,434,0 +170735239603,434,0 +170735239651,434,0 +170735239699,434,0 +170735239746,433,0 +170735239796,433,0 +170735239844,433,0 +170735239892,434,0 +170735239940,434,0 +170735239989,434,0 +170735240037,434,0 +170735240087,434,0 +170735240135,434,0 +170735240183,433,0 +170735240231,433,0 +170735240279,434,0 +170735240327,433,0 +170735240375,432,0 +170735240424,284,1 +170735240509,329,0 +170735240557,433,0 +170735240605,434,0 +170735240655,433,0 +170735240702,434,0 +170735240752,433,0 +170735240800,434,0 +170735240848,434,0 +170735240896,434,0 +170735240944,434,0 +170735240992,434,0 +170735241041,434,0 +170735241089,434,0 +170735241137,434,0 +170735241185,434,0 +170735241235,434,0 +170735241282,434,0 +170735241332,434,0 +170735241380,434,0 +170735241428,434,0 +170735241477,295,1 +170735241559,412,0 +170735241617,434,0 +170735241665,434,0 +170735241714,434,0 +170735241764,434,0 +170735241813,433,0 +170735241861,433,0 +170735241909,434,0 +170735241959,434,0 +170735242007,434,0 +170735242055,434,0 +170735242103,434,0 +170735242151,434,0 +170735242198,434,0 +170735242246,434,0 +170735242294,434,0 +170735242342,434,0 +170735242390,434,0 +170735242438,434,0 +170735242488,430,0 +170735242536,297,1 +170735242620,420,0 +170735242668,433,0 +170735242716,434,0 +170735242765,433,0 +170735242813,434,0 +170735242861,434,0 +170735242911,435,0 +170735242960,434,0 +170735243008,434,0 +170735243058,434,0 +170735243106,434,0 +170735243154,434,0 +170735243203,433,0 +170735243253,434,0 +170735243301,434,0 +170735243349,434,0 +170735243397,434,0 +170735243445,433,0 +170735243493,434,0 +170735243541,397,0 +170735243588,292,1 +170735243673,426,0 +170735243723,434,0 +170735243771,434,0 +170735243819,434,0 +170735243867,434,0 +170735243914,434,0 +170735243964,434,0 +170735244012,434,0 +170735244062,434,0 +170735244109,434,0 +170735244159,434,0 +170735244207,434,0 +170735244256,434,0 +170735244304,434,0 +170735244352,434,0 +170735244400,434,0 +170735244448,434,0 +170735244496,434,0 +170735244544,434,0 +170735244594,426,0 +170735244642,293,1 +170735244723,418,0 +170735244771,434,0 +170735244819,434,0 +170735244867,434,0 +170735244915,433,0 +170735244963,434,0 +170735245012,434,0 +170735245060,434,0 +170735245110,434,0 +170735245158,434,0 +170735245206,434,0 +170735245253,434,0 +170735245303,434,0 +170735245353,434,0 +170735245400,433,0 +170735245450,434,0 +170735245499,434,0 +170735245547,434,0 +170735245595,432,0 +170735245643,292,1 +170735245726,271,1 +170735245807,434,0 +170735245856,434,0 +170735245904,433,0 +170735245952,434,0 +170735246001,433,0 +170735246051,434,0 +170735246101,434,0 +170735246149,434,0 +170735246198,434,0 +170735246246,434,0 +170735246294,433,0 +170735246344,433,0 +170735246392,434,0 +170735246440,434,0 +170735246488,434,0 +170735246536,434,0 +170735246584,433,0 +170735246632,433,0 +170735246680,432,0 +170735246727,291,1 +170735246814,419,0 +170735246862,434,0 +170735246910,433,0 +170735246958,434,0 +170735247006,434,0 +170735247054,434,0 +170735247102,433,0 +170735247150,434,0 +170735247198,434,0 +170735247246,434,0 +170735247294,434,0 +170735247343,434,0 +170735247393,434,0 +170735247441,434,0 +170735247489,434,0 +170735247537,434,0 +170735247585,434,0 +170735247634,434,0 +170735247682,434,0 +170735247730,433,0 +170735247778,288,1 +170735247865,417,0 +170735247913,433,0 +170735247961,434,0 +170735248011,434,0 +170735248060,434,0 +170735248110,433,0 +170735248158,434,0 +170735248206,434,0 +170735248255,434,0 +170735248305,433,0 +170735248354,434,0 +170735248404,434,0 +170735248453,433,0 +170735248501,433,0 +170735248551,434,0 +170735248599,434,0 +170735248648,434,0 +170735248696,434,0 +170735248746,434,0 +170735248795,285,1 +170735248879,268,0 +170735248929,430,0 +170735248977,433,0 +170735249026,434,0 +170735249075,433,0 +170735249122,433,0 +170735249172,434,0 +170735249220,434,0 +170735249268,434,0 +170735249315,434,0 +170735249363,434,0 +170735249411,434,0 +170735249459,435,0 +170735249507,434,0 +170735249555,433,0 +170735249603,434,0 +170735249651,433,0 +170735249699,434,0 +170735249746,433,0 +170735249794,434,0 +170735249842,284,1 +170735249922,287,1 +170735250000,434,0 +170735250048,434,0 +170735250098,434,0 +170735250147,434,0 +170735250195,434,0 +170735250245,434,0 +170735250292,433,0 +170735250340,434,0 +170735250388,433,0 +170735250436,434,0 +170735250484,434,0 +170735250534,435,0 +170735250583,434,0 +170735250631,434,0 +170735250681,434,0 +170735250729,434,0 +170735250779,434,0 +170735250826,432,0 +170735250874,433,0 +170735250922,284,1 +170735251004,413,0 +170735251062,433,0 +170735251110,433,0 +170735251158,434,0 +170735251206,434,0 +170735251254,434,0 +170735251302,434,0 +170735251350,434,0 +170735251398,433,0 +170735251445,434,0 +170735251495,433,0 +170735251543,434,0 +170735251592,434,0 +170735251640,434,0 +170735251688,434,0 +170735251738,434,0 +170735251786,434,0 +170735251834,434,0 +170735251881,433,0 +170735251929,432,0 +170735251979,262,0 +170735252028,280,1 +170735252116,434,0 +170735252164,433,0 +170735252212,434,0 +170735252259,434,0 +170735252307,434,0 +170735252357,434,0 +170735252405,433,0 +170735252453,434,0 +170735252501,433,0 +170735252548,433,0 +170735252596,434,0 +170735252644,434,0 +170735252694,434,0 +170735252742,433,0 +170735252789,433,0 +170735252837,433,0 +170735252885,434,0 +170735252935,432,0 +170735252983,278,1 +170735253072,252,0 +170735253120,432,0 +170735253168,433,0 +170735253218,434,0 +170735253266,434,0 +170735253315,434,0 +170735253363,434,0 +170735253412,434,0 +170735253460,433,0 +170735253508,434,0 +170735253556,434,0 +170735253604,434,0 +170735253652,434,0 +170735253700,434,0 +170735253748,434,0 +170735253798,434,0 +170735253846,433,0 +170735253894,433,0 +170735253942,434,0 +170735253990,434,0 +170735254038,311,0 +170735254087,304,1 +170735254173,428,0 +170735254223,434,0 +170735254272,434,0 +170735254320,434,0 +170735254368,434,0 +170735254416,434,0 +170735254464,434,0 +170735254513,434,0 +170735254561,433,0 +170735254611,433,0 +170735254658,433,0 +170735254706,434,0 +170735254754,434,0 +170735254802,434,0 +170735254850,434,0 +170735254898,434,0 +170735254946,434,0 +170735254994,434,0 +170735255042,434,0 +170735255090,359,0 +170735255137,284,1 +170735255219,424,0 +170735255267,433,0 +170735255317,434,0 +170735255366,434,0 +170735255414,434,0 +170735255462,434,0 +170735255512,434,0 +170735255561,434,0 +170735255611,433,0 +170735255660,434,0 +170735255708,434,0 +170735255756,434,0 +170735255804,434,0 +170735255852,434,0 +170735255900,434,0 +170735255948,434,0 +170735255996,434,0 +170735256044,433,0 +170735256092,434,0 +170735256140,291,1 +170735256221,259,0 +170735256271,432,0 +170735256319,433,0 +170735256368,434,0 +170735256416,433,0 +170735256464,434,0 +170735256514,434,0 +170735256562,434,0 +170735256610,434,0 +170735256658,434,0 +170735256706,434,0 +170735256754,434,0 +170735256802,433,0 +170735256850,433,0 +170735256897,434,0 +170735256947,434,0 +170735256997,434,0 +170735257046,434,0 +170735257096,433,0 +170735257143,434,0 +170735257191,286,1 +170735257275,282,1 +170735257355,434,0 +170735257405,434,0 +170735257453,434,0 +170735257502,435,0 +170735257550,434,0 +170735257598,434,0 +170735257646,434,0 +170735257696,434,0 +170735257744,434,0 +170735257793,434,0 +170735257841,434,0 +170735257889,434,0 +170735257937,434,0 +170735257985,434,0 +170735258035,434,0 +170735258084,434,0 +170735258132,434,0 +170735258182,433,0 +170735258230,425,0 +170735258279,295,1 +170735258360,425,0 +170735258408,434,0 +170735258458,434,0 +170735258505,434,0 +170735258553,434,0 +170735258601,434,0 +170735258649,434,0 +170735258699,434,0 +170735258747,434,0 +170735258795,434,0 +170735258843,434,0 +170735258891,435,0 +170735258940,434,0 +170735258988,434,0 +170735259037,434,0 +170735259087,434,0 +170735259135,434,0 +170735259183,434,0 +170735259231,434,0 +170735259279,341,0 +170735259327,287,1 +170735259414,430,0 +170735259462,434,0 +170735259511,434,0 +170735259559,434,0 +170735259607,434,0 +170735259655,434,0 +170735259703,434,0 +170735259751,434,0 +170735259799,433,0 +170735259847,434,0 +170735259897,434,0 +170735259946,434,0 +170735259994,434,0 +170735260042,434,0 +170735260090,434,0 +170735260138,434,0 +170735260186,435,0 +170735260234,434,0 +170735260283,434,0 +170735260333,300,1 +170735260417,265,0 +170735260465,430,0 +170735260513,434,0 +170735260562,434,0 +170735260610,434,0 +170735260660,434,0 +170735260708,434,0 +170735260756,434,0 +170735260805,434,0 +170735260853,433,0 +170735260901,434,0 +170735260951,434,0 +170735260998,434,0 +170735261048,434,0 +170735261096,434,0 +170735261144,434,0 +170735261192,434,0 +170735261241,434,0 +170735261289,434,0 +170735261337,434,0 +170735261385,285,1 +170735261467,301,1 +170735261544,433,0 +170735261591,434,0 +170735261640,434,0 +170735261689,434,0 +170735261737,434,0 +170735261785,434,0 +170735261833,434,0 +170735261881,434,0 +170735261929,434,0 +170735261977,434,0 +170735262025,434,0 +170735262074,434,0 +170735262122,434,0 +170735262170,434,0 +170735262220,434,0 +170735262269,433,0 +170735262319,434,0 +170735262367,434,0 +170735262415,433,0 +170735262464,289,1 +170735262547,418,0 +170735262596,432,0 +170735262644,434,0 +170735262692,434,0 +170735262742,434,0 +170735262790,434,0 +170735262838,433,0 +170735262886,434,0 +170735262934,434,0 +170735262982,434,0 +170735263030,434,0 +170735263079,434,0 +170735263127,433,0 +170735263177,434,0 +170735263226,434,0 +170735263274,434,0 +170735263322,434,0 +170735263370,434,0 +170735263419,434,0 +170735263467,432,0 +170735263515,297,1 +170735263601,420,0 +170735263649,434,0 +170735263697,434,0 +170735263746,433,0 +170735263796,434,0 +170735263845,434,0 +170735263893,434,0 +170735263941,434,0 +170735263989,434,0 +170735264037,434,0 +170735264085,434,0 +170735264133,434,0 +170735264180,434,0 +170735264230,434,0 +170735264279,434,0 +170735264327,434,0 +170735264375,434,0 +170735264425,434,0 +170735264473,432,0 +170735264521,429,0 +170735264569,307,1 +170735264651,422,0 +170735264700,434,0 +170735264748,433,0 +170735264797,434,0 +170735264845,434,0 +170735264895,434,0 +170735264943,434,0 +170735264992,434,0 +170735265042,433,0 +170735265090,434,0 +170735265138,435,0 +170735265186,434,0 +170735265235,434,0 +170735265283,433,0 +170735265331,434,0 +170735265381,434,0 +170735265430,433,0 +170735265478,434,0 +170735265526,433,0 +170735265575,321,0 +170735265623,292,1 +170735265705,429,0 +170735265753,434,0 +170735265801,433,0 +170735265851,434,0 +170735265900,434,0 +170735265948,434,0 +170735265996,434,0 +170735266044,434,0 +170735266093,433,0 +170735266141,434,0 +170735266189,434,0 +170735266237,434,0 +170735266287,434,0 +170735266336,433,0 +170735266384,434,0 +170735266432,434,0 +170735266480,434,0 +170735266530,434,0 +170735266578,434,0 +170735266625,264,0 +170735266673,301,1 +170735266754,429,0 +170735266804,433,0 +170735266851,434,0 +170735266899,434,0 +170735266947,434,0 +170735266995,434,0 +170735267045,433,0 +170735267094,434,0 +170735267144,434,0 +170735267192,433,0 +170735267241,434,0 +170735267289,434,0 +170735267337,434,0 +170735267385,434,0 +170735267435,434,0 +170735267483,434,0 +170735267531,434,0 +170735267579,434,0 +170735267626,433,0 +170735267674,290,1 +170735267766,245,0 +170735267816,431,0 +170735267864,434,0 +170735267913,434,0 +170735267961,434,0 +170735268009,434,0 +170735268057,434,0 +170735268105,434,0 +170735268153,434,0 +170735268203,433,0 +170735268251,434,0 +170735268299,434,0 +170735268347,434,0 +170735268394,434,0 +170735268442,434,0 +170735268492,434,0 +170735268540,434,0 +170735268588,434,0 +170735268638,434,0 +170735268687,433,0 +170735268735,282,1 +170735268818,232,0 +170735268867,433,0 +170735268915,434,0 +170735268963,434,0 +170735269013,434,0 +170735269061,435,0 +170735269109,433,0 +170735269158,434,0 +170735269206,433,0 +170735269254,434,0 +170735269302,434,0 +170735269350,434,0 +170735269398,434,0 +170735269446,434,0 +170735269494,435,0 +170735269542,434,0 +170735269591,434,0 +170735269641,434,0 +170735269690,434,0 +170735269738,433,0 +170735269788,303,1 +170735269871,235,0 +170735269919,433,0 +170735269967,434,0 +170735270015,434,0 +170735270064,434,0 +170735270114,434,0 +170735270162,434,0 +170735270210,435,0 +170735270258,433,0 +170735270306,434,0 +170735270355,434,0 +170735270405,434,0 +170735270453,434,0 +170735270501,435,0 +170735270549,434,0 +170735270597,434,0 +170735270645,434,0 +170735270694,434,0 +170735270742,434,0 +170735270790,433,0 +170735270838,304,1 +170735270914,235,0 +170735270962,432,0 +170735271012,434,0 +170735271060,434,0 +170735271108,434,0 +170735271156,434,0 +170735271204,435,0 +170735271252,434,0 +170735271300,434,0 +170735271348,434,0 +170735271396,434,0 +170735271444,434,0 +170735271492,434,0 +170735271540,434,0 +170735271588,434,0 +170735271635,434,0 +170735271683,434,0 +170735271731,433,0 +170735271779,434,0 +170735271827,433,0 +170735271875,295,1 +170735271955,276,1 +170735272032,434,0 +170735272082,434,0 +170735272130,434,0 +170735272178,434,0 +170735272226,434,0 +170735272274,434,0 +170735272322,434,0 +170735272370,434,0 +170735272419,433,0 +170735272467,434,0 +170735272515,434,0 +170735272565,434,0 +170735272613,433,0 +170735272661,434,0 +170735272708,434,0 +170735272758,434,0 +170735272806,434,0 +170735272854,434,0 +170735272902,431,0 +170735272950,303,1 +170735273033,423,0 +170735273081,434,0 +170735273129,434,0 +170735273177,434,0 +170735273225,434,0 +170735273273,434,0 +170735273321,434,0 +170735273369,434,0 +170735273418,434,0 +170735273468,435,0 +170735273517,433,0 +170735273565,434,0 +170735273613,434,0 +170735273661,433,0 +170735273709,434,0 +170735273759,434,0 +170735273808,434,0 +170735273856,434,0 +170735273906,434,0 +170735273955,429,0 +170735274005,289,1 +170735274086,418,0 +170735274134,433,0 +170735274183,433,0 +170735274231,434,0 +170735274281,434,0 +170735274330,434,0 +170735274378,434,0 +170735274428,433,0 +170735274477,434,0 +170735274525,434,0 +170735274573,434,0 +170735274621,434,0 +170735274670,434,0 +170735274718,434,0 +170735274766,434,0 +170735274816,434,0 +170735274864,434,0 +170735274913,433,0 +170735274961,432,0 +170735275009,293,1 +170735275091,273,1 +170735275167,434,0 +170735275215,434,0 +170735275263,434,0 +170735275311,434,0 +170735275361,434,0 +170735275409,433,0 +170735275458,434,0 +170735275506,434,0 +170735275554,434,0 +170735275603,434,0 +170735275652,434,0 +170735275701,434,0 +170735275749,434,0 +170735275799,434,0 +170735275847,434,0 +170735275896,434,0 +170735275944,434,0 +170735275994,434,0 +170735276042,432,0 +170735276090,293,1 +170735276176,418,0 +170735276223,434,0 +170735276271,434,0 +170735276319,434,0 +170735276369,434,0 +170735276418,434,0 +170735276466,433,0 +170735276516,433,0 +170735276565,434,0 +170735276613,434,0 +170735276661,434,0 +170735276709,434,0 +170735276757,433,0 +170735276805,433,0 +170735276853,434,0 +170735276903,434,0 +170735276951,434,0 +170735276999,434,0 +170735277048,434,0 +170735277096,432,0 +170735277144,302,1 +170735277226,409,0 +170735277274,434,0 +170735277323,434,0 +170735277371,434,0 +170735277419,434,0 +170735277467,435,0 +170735277515,434,0 +170735277563,434,0 +170735277611,434,0 +170735277659,434,0 +170735277707,434,0 +170735277756,434,0 +170735277804,434,0 +170735277852,433,0 +170735277900,434,0 +170735277950,434,0 +170735277998,434,0 +170735278046,434,0 +170735278095,433,0 +170735278145,431,0 +170735278193,287,1 +170735278272,416,0 +170735278321,434,0 +170735278370,433,0 +170735278420,433,0 +170735278470,433,0 +170735278518,434,0 +170735278565,434,0 +170735278613,434,0 +170735278663,434,0 +170735278711,434,0 +170735278759,434,0 +170735278807,434,0 +170735278855,434,0 +170735278902,434,0 +170735278950,434,0 +170735278998,434,0 +170735279046,434,0 +170735279096,434,0 +170735279144,434,0 +170735279192,431,0 +170735279240,288,1 +170735279324,424,0 +170735279372,433,0 +170735279420,434,0 +170735279468,434,0 +170735279516,434,0 +170735279564,434,0 +170735279614,434,0 +170735279662,433,0 +170735279710,434,0 +170735279757,433,0 +170735279805,434,0 +170735279853,434,0 +170735279901,434,0 +170735279949,434,0 +170735279997,433,0 +170735280045,434,0 +170735280093,434,0 +170735280141,434,0 +170735280191,434,0 +170735280239,432,0 +170735280287,283,1 +170735280365,403,0 +170735280418,434,0 +170735280466,434,0 +170735280515,434,0 +170735280563,434,0 +170735280611,433,0 +170735280659,434,0 +170735280707,434,0 +170735280755,435,0 +170735280804,434,0 +170735280852,434,0 +170735280900,434,0 +170735280948,434,0 +170735280996,434,0 +170735281044,434,0 +170735281094,434,0 +170735281142,434,0 +170735281190,434,0 +170735281238,434,0 +170735281287,414,0 +170735281335,302,1 +170735281415,416,0 +170735281465,433,0 +170735281513,434,0 +170735281561,434,0 +170735281609,434,0 +170735281658,434,0 +170735281706,434,0 +170735281754,434,0 +170735281802,433,0 +170735281850,434,0 +170735281900,434,0 +170735281948,434,0 +170735281997,433,0 +170735282047,434,0 +170735282094,434,0 +170735282142,434,0 +170735282190,433,0 +170735282238,433,0 +170735282286,433,0 +170735282334,432,0 +170735282382,297,1 +170735282460,413,0 +170735282508,433,0 +170735282556,434,0 +170735282604,434,0 +170735282654,433,0 +170735282702,434,0 +170735282751,433,0 +170735282799,434,0 +170735282849,433,0 +170735282897,434,0 +170735282946,433,0 +170735282996,434,0 +170735283044,433,0 +170735283092,434,0 +170735283140,433,0 +170735283189,434,0 +170735283237,434,0 +170735283287,433,0 +170735283335,433,0 +170735283383,431,0 +170735283431,293,1 +170735283518,414,0 +170735283566,434,0 +170735283614,434,0 +170735283663,434,0 +170735283711,433,0 +170735283759,435,0 +170735283807,433,0 +170735283855,434,0 +170735283905,433,0 +170735283954,434,0 +170735284002,434,0 +170735284050,434,0 +170735284100,434,0 +170735284148,433,0 +170735284195,433,0 +170735284243,434,0 +170735284291,434,0 +170735284339,434,0 +170735284387,434,0 +170735284435,432,0 +170735284483,298,1 +170735284568,417,0 +170735284615,434,0 +170735284663,433,0 +170735284711,434,0 +170735284759,433,0 +170735284807,434,0 +170735284855,433,0 +170735284903,434,0 +170735284951,433,0 +170735284998,433,0 +170735285046,434,0 +170735285094,434,0 +170735285142,433,0 +170735285192,434,0 +170735285239,433,0 +170735285287,434,0 +170735285337,434,0 +170735285385,434,0 +170735285433,434,0 +170735285482,432,0 +170735285530,299,1 +170735285611,417,0 +170735285659,434,0 +170735285707,433,0 +170735285755,434,0 +170735285803,434,0 +170735285850,434,0 +170735285898,434,0 +170735285946,433,0 +170735285994,434,0 +170735286042,433,0 +170735286090,434,0 +170735286138,433,0 +170735286186,434,0 +170735286234,433,0 +170735286282,434,0 +170735286330,433,0 +170735286379,433,0 +170735286429,434,0 +170735286477,434,0 +170735286526,433,0 +170735286574,296,1 +170735286659,402,0 +170735286708,433,0 +170735286758,433,0 +170735286806,434,0 +170735286854,434,0 +170735286902,434,0 +170735286951,433,0 +170735286999,433,0 +170735287049,434,0 +170735287097,433,0 +170735287146,434,0 +170735287194,434,0 +170735287242,433,0 +170735287290,434,0 +170735287338,433,0 +170735287386,434,0 +170735287436,433,0 +170735287485,433,0 +170735287533,434,0 +170735287581,431,0 +170735287629,291,1 +170735287713,421,0 +170735287761,433,0 +170735287809,435,0 +170735287857,433,0 +170735287904,434,0 +170735287952,434,0 +170735288000,433,0 +170735288048,433,0 +170735288096,434,0 +170735288144,434,0 +170735288192,434,0 +170735288240,433,0 +170735288289,433,0 +170735288337,434,0 +170735288387,434,0 +170735288435,434,0 +170735288483,433,0 +170735288531,434,0 +170735288580,434,0 +170735288630,432,0 +170735288678,303,1 +170735288758,406,0 +170735288806,433,0 +170735288854,434,0 +170735288901,434,0 +170735288949,434,0 +170735288999,434,0 +170735289047,433,0 +170735289095,434,0 +170735289143,434,0 +170735289191,434,0 +170735289239,434,0 +170735289288,434,0 +170735289336,433,0 +170735289384,433,0 +170735289434,434,0 +170735289483,434,0 +170735289531,434,0 +170735289579,434,0 +170735289627,433,0 +170735289675,431,0 +170735289723,301,1 +170735289806,415,0 +170735289856,434,0 +170735289904,434,0 +170735289953,433,0 +170735290003,434,0 +170735290052,433,0 +170735290100,434,0 +170735290150,434,0 +170735290199,434,0 +170735290249,433,0 +170735290297,434,0 +170735290345,433,0 +170735290393,434,0 +170735290441,434,0 +170735290489,434,0 +170735290537,434,0 +170735290584,434,0 +170735290632,434,0 +170735290680,433,0 +170735290728,430,0 +170735290776,298,1 +170735290860,418,0 +170735290908,434,0 +170735290958,434,0 +170735291005,433,0 +170735291053,434,0 +170735291103,433,0 +170735291151,433,0 +170735291198,433,0 +170735291246,434,0 +170735291294,434,0 +170735291344,434,0 +170735291392,434,0 +170735291439,433,0 +170735291487,434,0 +170735291535,433,0 +170735291583,434,0 +170735291631,434,0 +170735291679,434,0 +170735291727,434,0 +170735291777,432,0 +170735291826,305,1 +170735291907,413,0 +170735291955,433,0 +170735292003,433,0 +170735292051,434,0 +170735292098,434,0 +170735292148,433,0 +170735292196,434,0 +170735292244,433,0 +170735292292,434,0 +170735292341,433,0 +170735292391,434,0 +170735292440,434,0 +170735292488,434,0 +170735292536,434,0 +170735292586,434,0 +170735292635,434,0 +170735292683,434,0 +170735292733,434,0 +170735292781,434,0 +170735292829,433,0 +170735292878,303,1 +170735292959,410,0 +170735293009,433,0 +170735293057,433,0 +170735293105,434,0 +170735293154,434,0 +170735293202,434,0 +170735293250,433,0 +170735293298,434,0 +170735293346,434,0 +170735293394,433,0 +170735293442,434,0 +170735293490,434,0 +170735293538,434,0 +170735293586,433,0 +170735293634,434,0 +170735293682,434,0 +170735293731,434,0 +170735293779,434,0 +170735293827,433,0 +170735293875,429,0 +170735293923,297,1 +170735294002,414,0 +170735294050,433,0 +170735294098,434,0 +170735294147,434,0 +170735294195,434,0 +170735294243,434,0 +170735294292,434,0 +170735294340,434,0 +170735294388,434,0 +170735294436,434,0 +170735294484,434,0 +170735294532,434,0 +170735294580,434,0 +170735294629,434,0 +170735294677,433,0 +170735294725,433,0 +170735294773,434,0 +170735294821,434,0 +170735294868,433,0 +170735294916,432,0 +170735294964,296,1 +170735295047,415,0 +170735295096,433,0 +170735295144,434,0 +170735295192,433,0 +170735295240,434,0 +170735295288,433,0 +170735295336,434,0 +170735295384,433,0 +170735295432,434,0 +170735295479,434,0 +170735295527,433,0 +170735295575,434,0 +170735295623,434,0 +170735295671,434,0 +170735295720,434,0 +170735295768,433,0 +170735295818,433,0 +170735295866,434,0 +170735295915,434,0 +170735295965,432,0 +170735296012,300,1 +170735296097,389,0 +170735296147,434,0 +170735296194,434,0 +170735296242,434,0 +170735296292,433,0 +170735296340,434,0 +170735296388,433,0 +170735296437,433,0 +170735296485,434,0 +170735296533,434,0 +170735296581,433,0 +170735296629,433,0 +170735296679,434,0 +170735296728,433,0 +170735296776,433,0 +170735296824,434,0 +170735296872,433,0 +170735296920,434,0 +170735296968,434,0 +170735297016,431,0 +170735297064,304,1 +170735297143,410,0 +170735297196,431,0 +170735297244,431,0 +170735297293,430,0 +170735297343,432,0 +170735297391,431,0 +170735297439,431,0 +170735297487,432,0 +170735297536,431,0 +170735297584,431,0 +170735297632,431,0 +170735297680,431,0 +170735297728,431,0 +170735297776,431,0 +170735297825,431,0 +170735297875,431,0 +170735297923,432,0 +170735297972,431,0 +170735298020,431,0 +170735298070,429,0 +170735298119,294,1 +170735298201,414,0 +170735298249,431,0 +170735298297,431,0 +170735298345,431,0 +170735298394,431,0 +170735298442,431,0 +170735298490,431,0 +170735298538,431,0 +170735298586,431,0 +170735298634,431,0 +170735298684,431,0 +170735298732,430,0 +170735298781,431,0 +170735298829,431,0 +170735298877,431,0 +170735298925,430,0 +170735298973,431,0 +170735299021,431,0 +170735299069,431,0 +170735299117,430,0 +170735299165,274,1 +170735299243,235,0 +170735299291,430,0 +170735299339,431,0 +170735299387,430,0 +170735299436,431,0 +170735299484,431,0 +170735299532,432,0 +170735299580,431,0 +170735299628,431,0 +170735299676,431,0 +170735299724,432,0 +170735299773,431,0 +170735299821,432,0 +170735299869,431,0 +170735299917,431,0 +170735299965,432,0 +170735300013,431,0 +170735300061,432,0 +170735300111,432,0 +170735300160,430,0 +170735300208,291,1 +170735300289,383,0 +170735300337,430,0 +170735300386,430,0 +170735300436,431,0 +170735300484,431,0 +170735300533,431,0 +170735300581,431,0 +170735300629,430,0 +170735300679,430,0 +170735300727,430,0 +170735300775,431,0 +170735300823,431,0 +170735300871,431,0 +170735300919,431,0 +170735300966,431,0 +170735301014,430,0 +170735301062,430,0 +170735301112,431,0 +170735301160,431,0 +170735301208,429,0 +170735301256,295,1 +170735301338,370,0 +170735301387,430,0 +170735301437,431,0 +170735301485,431,0 +170735301533,431,0 +170735301581,431,0 +170735301630,432,0 +170735301678,430,0 +170735301726,431,0 +170735301776,431,0 +170735301824,431,0 +170735301871,430,0 +170735301919,431,0 +170735301967,431,0 +170735302015,431,0 +170735302065,431,0 +170735302113,431,0 +170735302161,430,0 +170735302209,431,0 +170735302257,430,0 +170735302305,306,1 +170735302380,232,0 +170735302428,430,0 +170735302477,431,0 +170735302525,430,0 +170735302573,431,0 +170735302621,430,0 +170735302669,430,0 +170735302717,432,0 +170735302765,431,0 +170735302815,431,0 +170735302863,430,0 +170735302912,431,0 +170735302960,431,0 +170735303010,431,0 +170735303059,431,0 +170735303107,431,0 +170735303155,431,0 +170735303203,431,0 +170735303251,431,0 +170735303299,430,0 +170735303348,291,1 +170735303430,233,0 +170735303478,430,0 +170735303526,431,0 +170735303574,431,0 +170735303622,431,0 +170735303669,431,0 +170735303719,431,0 +170735303767,431,0 +170735303816,432,0 +170735303864,432,0 +170735303912,431,0 +170735303962,431,0 +170735304010,431,0 +170735304058,430,0 +170735304106,431,0 +170735304154,430,0 +170735304202,431,0 +170735304249,430,0 +170735304297,430,0 +170735304347,430,0 +170735304395,300,1 +170735304479,372,0 +170735304528,431,0 +170735304576,431,0 +170735304624,431,0 +170735304672,430,0 +170735304720,431,0 +170735304769,432,0 +170735304817,430,0 +170735304865,431,0 +170735304913,431,0 +170735304961,430,0 +170735305009,431,0 +170735305057,430,0 +170735305105,431,0 +170735305153,431,0 +170735305200,430,0 +170735305248,431,0 +170735305296,431,0 +170735305344,430,0 +170735305392,429,0 +170735305440,305,1 +170735305521,275,1 +170735305600,430,0 +170735305647,430,0 +170735305697,430,0 +170735305745,430,0 +170735305794,431,0 +170735305842,431,0 +170735305892,432,0 +170735305940,431,0 +170735305988,431,0 +170735306036,430,0 +170735306084,430,0 +170735306132,431,0 +170735306179,431,0 +170735306227,431,0 +170735306275,431,0 +170735306323,430,0 +170735306373,430,0 +170735306422,430,0 +170735306470,425,0 +170735306518,294,1 +170735306598,408,0 +170735306648,430,0 +170735306696,431,0 +170735306744,430,0 +170735306793,430,0 +170735306841,431,0 +170735306891,429,0 +170735306939,430,0 +170735306987,430,0 +170735307034,430,0 +170735307082,430,0 +170735307130,430,0 +170735307180,430,0 +170735307228,431,0 +170735307276,430,0 +170735307325,432,0 +170735307373,430,0 +170735307421,430,0 +170735307469,430,0 +170735307519,285,1 +170735307613,250,0 +170735307661,426,0 +170735307710,430,0 +170735307758,429,0 +170735307807,429,0 +170735307855,430,0 +170735307903,430,0 +170735307951,430,0 +170735307999,430,0 +170735308049,431,0 +170735308098,429,0 +170735308146,430,0 +170735308194,430,0 +170735308242,430,0 +170735308290,430,0 +170735308338,430,0 +170735308386,430,0 +170735308434,431,0 +170735308482,430,0 +170735308531,430,0 +170735308581,297,1 +170735308662,291,1 +170735308741,431,0 +170735308789,432,0 +170735308839,432,0 +170735308888,431,0 +170735308936,431,0 +170735308984,432,0 +170735309034,432,0 +170735309082,432,0 +170735309131,432,0 +170735309179,430,0 +170735309227,431,0 +170735309275,431,0 +170735309325,432,0 +170735309374,432,0 +170735309422,431,0 +170735309470,432,0 +170735309518,432,0 +170735309566,432,0 +170735309614,430,0 +170735309662,303,1 +170735309740,400,0 +170735309793,429,0 +170735309841,430,0 +170735309889,430,0 +170735309938,430,0 +170735309988,430,0 +170735310036,430,0 +170735310085,430,0 +170735310135,430,0 +170735310184,430,0 +170735310234,430,0 +170735310282,430,0 +170735310331,429,0 +170735310381,430,0 +170735310430,430,0 +170735310478,430,0 +170735310528,430,0 +170735310576,429,0 +170735310625,429,0 +170735310675,295,1 +170735310758,241,0 +170735310806,428,0 +170735310854,429,0 +170735310902,430,0 +170735310951,429,0 +170735310999,429,0 +170735311049,430,0 +170735311097,430,0 +170735311145,429,0 +170735311194,430,0 +170735311242,430,0 +170735311292,429,0 +170735311340,430,0 +170735311388,430,0 +170735311437,430,0 +170735311485,430,0 +170735311533,430,0 +170735311583,430,0 +170735311630,430,0 +170735311678,428,0 +170735311726,298,1 +170735311807,289,1 +170735311885,427,0 +170735311934,428,0 +170735311984,429,0 +170735312032,428,0 +170735312080,428,0 +170735312128,429,0 +170735312176,427,0 +170735312225,429,0 +170735312273,428,0 +170735312323,428,0 +170735312371,429,0 +170735312419,428,0 +170735312467,428,0 +170735312515,429,0 +170735312563,428,0 +170735312611,428,0 +170735312659,427,0 +170735312708,429,0 +170735312756,424,0 +170735312805,289,1 +170735312888,401,0 +170735312937,427,0 +170735312985,428,0 +170735313035,427,0 +170735313083,428,0 +170735313131,428,0 +170735313180,428,0 +170735313228,428,0 +170735313276,427,0 +170735313324,428,0 +170735313372,429,0 +170735313420,428,0 +170735313468,429,0 +170735313518,428,0 +170735313567,428,0 +170735313615,428,0 +170735313663,428,0 +170735313711,428,0 +170735313759,429,0 +170735313808,424,0 +170735313856,293,1 +170735313935,397,0 +170735313992,429,0 +170735314040,428,0 +170735314090,429,0 +170735314137,428,0 +170735314185,428,0 +170735314235,428,0 +170735314283,429,0 +170735314331,429,0 +170735314379,428,0 +170735314427,429,0 +170735314474,428,0 +170735314522,428,0 +170735314572,429,0 +170735314620,430,0 +170735314668,428,0 +170735314717,429,0 +170735314767,428,0 +170735314816,427,0 +170735314864,414,0 +170735314912,299,1 +170735314991,409,0 +170735315040,428,0 +170735315088,429,0 +170735315136,429,0 +170735315184,429,0 +170735315232,428,0 +170735315280,428,0 +170735315328,429,0 +170735315375,430,0 +170735315423,429,0 +170735315471,429,0 +170735315519,428,0 +170735315569,428,0 +170735315616,428,0 +170735315664,429,0 +170735315714,428,0 +170735315762,429,0 +170735315810,429,0 +170735315858,428,0 +170735315906,425,0 +170735315955,274,1 +170735316040,408,0 +170735316088,429,0 +170735316136,427,0 +170735316185,429,0 +170735316233,428,0 +170735316283,429,0 +170735316331,429,0 +170735316380,428,0 +170735316428,429,0 +170735316478,429,0 +170735316526,428,0 +170735316575,428,0 +170735316625,428,0 +170735316673,429,0 +170735316721,429,0 +170735316769,428,0 +170735316816,428,0 +170735316864,429,0 +170735316912,428,0 +170735316962,420,0 +170735317011,300,1 +170735317095,413,0 +170735317143,428,0 +170735317191,428,0 +170735317239,429,0 +170735317287,428,0 +170735317335,429,0 +170735317384,430,0 +170735317432,429,0 +170735317482,428,0 +170735317530,429,0 +170735317579,429,0 +170735317629,429,0 +170735317677,428,0 +170735317725,429,0 +170735317773,429,0 +170735317820,429,0 +170735317868,428,0 +170735317918,428,0 +170735317966,428,0 +170735318014,370,0 +170735318062,281,1 +170735318143,413,0 +170735318191,428,0 +170735318239,428,0 +170735318289,429,0 +170735318337,428,0 +170735318385,428,0 +170735318433,428,0 +170735318481,428,0 +170735318528,429,0 +170735318576,429,0 +170735318626,428,0 +170735318675,428,0 +170735318723,429,0 +170735318771,428,0 +170735318819,429,0 +170735318867,428,0 +170735318915,428,0 +170735318963,427,0 +170735319011,427,0 +170735319060,302,1 +170735319140,285,1 +170735319220,428,0 +170735319268,429,0 +170735319316,429,0 +170735319363,429,0 +170735319411,428,0 +170735319459,429,0 +170735319509,430,0 +170735319557,428,0 +170735319606,430,0 +170735319654,428,0 +170735319702,430,0 +170735319750,428,0 +170735319797,428,0 +170735319845,430,0 +170735319893,428,0 +170735319941,429,0 +170735319991,429,0 +170735320038,428,0 +170735320086,427,0 +170735320134,288,1 +170735320217,324,0 +170735320265,428,0 +170735320312,428,0 +170735320360,429,0 +170735320408,429,0 +170735320456,429,0 +170735320504,429,0 +170735320552,428,0 +170735320600,430,0 +170735320648,428,0 +170735320696,429,0 +170735320743,429,0 +170735320791,429,0 +170735320839,429,0 +170735320887,429,0 +170735320935,429,0 +170735320983,429,0 +170735321031,429,0 +170735321079,428,0 +170735321127,428,0 +170735321175,295,1 +170735321255,265,0 +170735321303,423,0 +170735321351,427,0 +170735321400,428,0 +170735321448,428,0 +170735321496,428,0 +170735321544,429,0 +170735321592,429,0 +170735321640,429,0 +170735321688,428,0 +170735321738,429,0 +170735321785,429,0 +170735321835,429,0 +170735321884,428,0 +170735321932,428,0 +170735321980,428,0 +170735322028,429,0 +170735322076,428,0 +170735322124,429,0 +170735322172,428,0 +170735322220,302,1 +170735322300,246,0 +170735322349,426,0 +170735322397,428,0 +170735322445,430,0 +170735322493,428,0 +170735322541,429,0 +170735322591,428,0 +170735322639,429,0 +170735322688,427,0 +170735322736,428,0 +170735322786,429,0 +170735322834,429,0 +170735322883,428,0 +170735322931,428,0 +170735322981,429,0 +170735323029,429,0 +170735323078,429,0 +170735323126,429,0 +170735323174,428,0 +170735323224,427,0 +170735323272,297,1 +170735323349,240,0 +170735323398,427,0 +170735323446,428,0 +170735323494,428,0 +170735323542,429,0 +170735323590,429,0 +170735323640,429,0 +170735323688,428,0 +170735323737,429,0 +170735323785,428,0 +170735323833,430,0 +170735323881,428,0 +170735323929,428,0 +170735323977,429,0 +170735324025,429,0 +170735324074,428,0 +170735324122,428,0 +170735324170,428,0 +170735324220,428,0 +170735324268,428,0 +170735324315,299,1 +170735324400,270,1 +170735324478,428,0 +170735324528,427,0 +170735324576,428,0 +170735324623,428,0 +170735324671,429,0 +170735324719,429,0 +170735324769,429,0 +170735324819,428,0 +170735324867,428,0 +170735324916,428,0 +170735324964,428,0 +170735325012,427,0 +170735325061,428,0 +170735325111,428,0 +170735325159,428,0 +170735325207,429,0 +170735325256,429,0 +170735325304,427,0 +170735325352,294,1 +170735325443,242,0 +170735325491,425,0 +170735325541,428,0 +170735325590,429,0 +170735325640,428,0 +170735325688,429,0 +170735325736,428,0 +170735325784,429,0 +170735325832,428,0 +170735325880,429,0 +170735325928,428,0 +170735325977,428,0 +170735326027,429,0 +170735326074,428,0 +170735326122,428,0 +170735326170,429,0 +170735326218,428,0 +170735326266,429,0 +170735326314,428,0 +170735326364,427,0 +170735326413,295,1 +170735326495,248,0 +170735326544,426,0 +170735326592,428,0 +170735326642,428,0 +170735326691,428,0 +170735326739,428,0 +170735326788,429,0 +170735326838,430,0 +170735326886,428,0 +170735326934,429,0 +170735326982,428,0 +170735327030,428,0 +170735327078,428,0 +170735327126,428,0 +170735327174,428,0 +170735327222,428,0 +170735327270,429,0 +170735327319,428,0 +170735327367,429,0 +170735327415,429,0 +170735327463,284,1 +170735327550,228,0 +170735327598,427,0 +170735327646,428,0 +170735327694,429,0 +170735327743,428,0 +170735327793,428,0 +170735327841,428,0 +170735327890,429,0 +170735327938,428,0 +170735327986,429,0 +170735328034,429,0 +170735328082,428,0 +170735328130,428,0 +170735328179,428,0 +170735328229,428,0 +170735328277,428,0 +170735328325,428,0 +170735328373,428,0 +170735328421,428,0 +170735328469,428,0 +170735328518,303,1 +170735328602,239,0 +170735328651,426,0 +170735328699,428,0 +170735328749,428,0 +170735328797,428,0 +170735328846,429,0 +170735328896,428,0 +170735328944,429,0 +170735328992,428,0 +170735329040,428,0 +170735329088,429,0 +170735329137,428,0 +170735329187,428,0 +170735329235,428,0 +170735329282,428,0 +170735329330,428,0 +170735329378,428,0 +170735329428,429,0 +170735329476,428,0 +170735329525,425,0 +170735329573,302,1 +170735329658,395,0 +170735329711,429,0 +170735329759,428,0 +170735329808,428,0 +170735329856,429,0 +170735329904,428,0 +170735329952,429,0 +170735330002,428,0 +170735330050,429,0 +170735330099,428,0 +170735330149,429,0 +170735330197,428,0 +170735330245,428,0 +170735330294,428,0 +170735330344,427,0 +170735330392,429,0 +170735330441,430,0 +170735330489,429,0 +170735330537,428,0 +170735330586,424,0 +170735330634,293,1 +170735330717,402,0 +170735330765,428,0 +170735330813,428,0 +170735330860,428,0 +170735330908,429,0 +170735330956,428,0 +170735331004,429,0 +170735331052,429,0 +170735331100,428,0 +170735331148,429,0 +170735331196,428,0 +170735331246,429,0 +170735331294,428,0 +170735331341,429,0 +170735331391,428,0 +170735331439,428,0 +170735331487,428,0 +170735331535,428,0 +170735331582,429,0 +170735331630,426,0 +170735331678,269,0 +170735331726,290,1 +170735331806,428,0 +170735331854,428,0 +170735331902,429,0 +170735331950,428,0 +170735331998,429,0 +170735332046,428,0 +170735332093,429,0 +170735332141,429,0 +170735332189,428,0 +170735332237,428,0 +170735332285,428,0 +170735332333,429,0 +170735332381,429,0 +170735332429,427,0 +170735332476,428,0 +170735332524,428,0 +170735332572,429,0 +170735332620,428,0 +170735332668,426,0 +170735332717,255,0 +170735332765,252,0 +170735332813,419,0 +170735332861,432,0 +170735332911,432,0 +170735332958,432,0 +170735333006,432,0 +170735333054,432,0 +170735333104,431,0 +170735333152,432,0 +170735333200,431,0 +170735333249,432,0 +170735333297,432,0 +170735333345,431,0 +170735333393,432,0 +170735333441,432,0 +170735333490,432,0 +170735333538,431,0 +170735333588,431,0 +170735333636,431,0 +170735333684,431,0 +170735333733,422,0 +170735333783,307,1 +170735333865,418,0 +170735333913,431,0 +170735333961,431,0 +170735334009,431,0 +170735334057,432,0 +170735334105,431,0 +170735334154,432,0 +170735334202,432,0 +170735334252,432,0 +170735334300,431,0 +170735334348,432,0 +170735334396,432,0 +170735334444,432,0 +170735334492,432,0 +170735334541,431,0 +170735334589,431,0 +170735334637,431,0 +170735334685,432,0 +170735334733,430,0 +170735334783,429,0 +170735334831,296,1 +170735334916,409,0 +170735334964,431,0 +170735335012,432,0 +170735335060,432,0 +170735335108,431,0 +170735335155,432,0 +170735335205,432,0 +170735335253,432,0 +170735335301,431,0 +170735335350,432,0 +170735335400,432,0 +170735335448,431,0 +170735335497,431,0 +170735335545,431,0 +170735335593,432,0 +170735335641,432,0 +170735335689,432,0 +170735335737,431,0 +170735335787,432,0 +170735335835,382,0 +170735335884,301,1 +170735335962,413,0 +170735336011,431,0 +170735336059,431,0 +170735336107,431,0 +170735336155,431,0 +170735336203,432,0 +170735336252,431,0 +170735336300,432,0 +170735336348,431,0 +170735336396,432,0 +170735336444,431,0 +170735336492,431,0 +170735336540,431,0 +170735336588,431,0 +170735336637,431,0 +170735336685,431,0 +170735336733,431,0 +170735336781,432,0 +170735336829,431,0 +170735336879,428,0 +170735336926,293,1 +170735337013,420,0 +170735337061,432,0 +170735337111,431,0 +170735337159,431,0 +170735337207,432,0 +170735337255,431,0 +170735337304,432,0 +170735337354,431,0 +170735337403,431,0 +170735337451,432,0 +170735337501,431,0 +170735337549,432,0 +170735337598,431,0 +170735337646,431,0 +170735337694,431,0 +170735337744,431,0 +170735337793,432,0 +170735337841,432,0 +170735337891,431,0 +170735337939,263,0 +170735337991,306,1 +170735338069,427,0 +170735338117,432,0 +170735338165,431,0 +170735338215,432,0 +170735338263,431,0 +170735338312,431,0 +170735338360,431,0 +170735338409,432,0 +170735338459,431,0 +170735338507,432,0 +170735338555,431,0 +170735338603,431,0 +170735338652,431,0 +170735338702,431,0 +170735338751,432,0 +170735338799,431,0 +170735338847,432,0 +170735338895,432,0 +170735338943,430,0 +170735338991,284,1 +170735339071,297,1 +170735339146,432,0 +170735339194,431,0 +170735339242,431,0 +170735339290,432,0 +170735339338,431,0 +170735339386,431,0 +170735339434,431,0 +170735339483,432,0 +170735339531,432,0 +170735339579,432,0 +170735339629,431,0 +170735339678,432,0 +170735339728,431,0 +170735339776,432,0 +170735339824,431,0 +170735339872,431,0 +170735339920,431,0 +170735339969,431,0 +170735340019,427,0 +170735340068,302,1 +170735340149,416,0 +170735340199,431,0 +170735340249,432,0 +170735340296,431,0 +170735340344,432,0 +170735340392,431,0 +170735340440,431,0 +170735340488,431,0 +170735340536,432,0 +170735340586,432,0 +170735340633,432,0 +170735340683,431,0 +170735340731,431,0 +170735340780,431,0 +170735340830,431,0 +170735340879,432,0 +170735340927,430,0 +170735340977,432,0 +170735341026,431,0 +170735341076,294,1 +170735341161,289,1 +170735341238,431,0 +170735341286,432,0 +170735341334,431,0 +170735341382,431,0 +170735341430,432,0 +170735341478,432,0 +170735341525,431,0 +170735341573,431,0 +170735341621,431,0 +170735341669,431,0 +170735341718,431,0 +170735341766,431,0 +170735341814,432,0 +170735341862,431,0 +170735341910,431,0 +170735341958,432,0 +170735342006,431,0 +170735342054,431,0 +170735342102,430,0 +170735342151,287,1 +170735342232,251,0 +170735342280,430,0 +170735342328,431,0 +170735342376,432,0 +170735342425,431,0 +170735342473,431,0 +170735342521,432,0 +170735342569,432,0 +170735342617,432,0 +170735342665,432,0 +170735342714,431,0 +170735342762,431,0 +170735342810,431,0 +170735342860,432,0 +170735342909,431,0 +170735342957,431,0 +170735343005,431,0 +170735343053,432,0 +170735343103,431,0 +170735343151,431,0 +170735343200,297,1 +170735343280,240,0 +170735343328,429,0 +170735343376,431,0 +170735343424,431,0 +170735343472,431,0 +170735343520,431,0 +170735343569,431,0 +170735343617,431,0 +170735343665,431,0 +170735343713,432,0 +170735343761,430,0 +170735343809,430,0 +170735343857,430,0 +170735343905,431,0 +170735343953,432,0 +170735344001,431,0 +170735344048,431,0 +170735344096,432,0 +170735344144,431,0 +170735344192,430,0 +170735344240,318,0 +170735344288,286,1 +170735344367,430,0 +170735344417,431,0 +170735344466,431,0 +170735344514,431,0 +170735344562,431,0 +170735344610,431,0 +170735344658,431,0 +170735344708,431,0 +170735344755,431,0 +170735344803,432,0 +170735344853,431,0 +170735344901,431,0 +170735344950,431,0 +170735344998,431,0 +170735345046,431,0 +170735345094,431,0 +170735345144,432,0 +170735345192,431,0 +170735345240,430,0 +170735345288,307,1 +170735345371,238,0 +170735345419,430,0 +170735345467,431,0 +170735345515,431,0 +170735345563,431,0 +170735345611,431,0 +170735345658,431,0 +170735345706,430,0 +170735345754,431,0 +170735345804,431,0 +170735345852,431,0 +170735345901,432,0 +170735345949,431,0 +170735345998,431,0 +170735346048,431,0 +170735346096,431,0 +170735346144,431,0 +170735346192,431,0 +170735346240,432,0 +170735346288,431,0 +170735346336,312,0 +170735346385,298,1 +170735346467,431,0 +170735346516,431,0 +170735346566,432,0 +170735346614,432,0 +170735346663,431,0 +170735346711,432,0 +170735346759,432,0 +170735346807,432,0 +170735346855,432,0 +170735346905,432,0 +170735346954,432,0 +170735347002,431,0 +170735347050,432,0 +170735347100,432,0 +170735347149,432,0 +170735347197,432,0 +170735347245,431,0 +170735347293,431,0 +170735347341,430,0 +170735347389,306,1 +170735347469,351,0 +170735347517,432,0 +170735347565,431,0 +170735347613,432,0 +170735347661,432,0 +170735347709,431,0 +170735347757,432,0 +170735347807,432,0 +170735347854,432,0 +170735347902,432,0 +170735347950,432,0 +170735347998,432,0 +170735348046,432,0 +170735348096,432,0 +170735348145,431,0 +170735348193,432,0 +170735348243,432,0 +170735348291,432,0 +170735348339,431,0 +170735348388,430,0 +170735348436,300,1 +170735348519,382,0 +170735348569,432,0 +170735348617,432,0 +170735348666,432,0 +170735348714,432,0 +170735348764,432,0 +170735348811,432,0 +170735348859,432,0 +170735348907,432,0 +170735348955,432,0 +170735349003,431,0 +170735349051,432,0 +170735349099,432,0 +170735349147,432,0 +170735349195,432,0 +170735349242,432,0 +170735349290,431,0 +170735349338,432,0 +170735349386,431,0 +170735349434,431,0 +170735349482,311,0 +170735349530,299,1 +170735349612,432,0 +170735349660,432,0 +170735349708,433,0 +170735349756,433,0 +170735349804,433,0 +170735349852,433,0 +170735349902,432,0 +170735349951,432,0 +170735349999,433,0 +170735350047,433,0 +170735350097,432,0 +170735350145,433,0 +170735350193,433,0 +170735350241,433,0 +170735350290,433,0 +170735350338,433,0 +170735350386,433,0 +170735350435,433,0 +170735350483,432,0 +170735350531,314,0 +170735350579,304,1 +170735350664,432,0 +170735350712,433,0 +170735350761,433,0 +170735350809,432,0 +170735350859,433,0 +170735350907,433,0 +170735350955,433,0 +170735351003,433,0 +170735351051,432,0 +170735351100,433,0 +170735351150,432,0 +170735351198,433,0 +170735351246,433,0 +170735351294,433,0 +170735351342,433,0 +170735351390,433,0 +170735351439,432,0 +170735351489,432,0 +170735351537,431,0 +170735351586,294,1 +170735351665,298,1 +170735351746,432,0 +170735351794,433,0 +170735351842,433,0 +170735351892,433,0 +170735351939,433,0 +170735351987,433,0 +170735352035,432,0 +170735352085,433,0 +170735352134,432,0 +170735352182,432,0 +170735352230,433,0 +170735352278,433,0 +170735352328,432,0 +170735352377,432,0 +170735352425,433,0 +170735352473,433,0 +170735352523,432,0 +170735352571,431,0 +170735352619,311,0 +170735352667,301,1 +170735352743,429,0 +170735352791,432,0 +170735352841,433,0 +170735352889,433,0 +170735352938,433,0 +170735352986,432,0 +170735353034,434,0 +170735353084,433,0 +170735353132,432,0 +170735353180,433,0 +170735353228,433,0 +170735353277,433,0 +170735353327,433,0 +170735353375,433,0 +170735353422,433,0 +170735353470,433,0 +170735353518,433,0 +170735353566,433,0 +170735353616,432,0 +170735353664,292,1 +170735353751,253,0 +170735353799,427,0 +170735353846,427,0 +170735353896,430,0 +170735353944,427,0 +170735353992,428,0 +170735354041,429,0 +170735354089,428,0 +170735354139,430,0 +170735354188,426,0 +170735354236,430,0 +170735354284,430,0 +170735354332,430,0 +170735354380,428,0 +170735354428,429,0 +170735354476,430,0 +170735354524,429,0 +170735354572,428,0 +170735354620,427,0 +170735354669,428,0 +170735354719,305,1 +170735354799,235,0 +170735354847,428,0 +170735354895,427,0 +170735354943,429,0 +170735354991,429,0 +170735355039,429,0 +170735355087,430,0 +170735355136,431,0 +170735355184,428,0 +170735355232,429,0 +170735355280,429,0 +170735355328,428,0 +170735355376,429,0 +170735355424,428,0 +170735355472,429,0 +170735355520,430,0 +170735355569,430,0 +170735355617,429,0 +170735355665,428,0 +170735355715,428,0 +170735355763,296,1 +170735355847,235,0 +170735355897,428,0 +170735355946,429,0 +170735355994,429,0 +170735356044,428,0 +170735356092,429,0 +170735356141,430,0 +170735356189,429,0 +170735356237,430,0 +170735356285,428,0 +170735356333,430,0 +170735356382,429,0 +170735356430,429,0 +170735356478,428,0 +170735356526,429,0 +170735356574,427,0 +170735356624,429,0 +170735356672,429,0 +170735356720,429,0 +170735356769,427,0 +170735356817,303,1 +170735356898,234,0 +170735356947,428,0 +170735356997,429,0 +170735357045,429,0 +170735357093,429,0 +170735357142,428,0 +170735357190,430,0 +170735357238,429,0 +170735357286,426,0 +170735357334,429,0 +170735357382,428,0 +170735357431,428,0 +170735357481,430,0 +170735357529,428,0 +170735357578,429,0 +170735357626,428,0 +170735357674,427,0 +170735357722,431,0 +170735357770,429,0 +170735357818,427,0 +170735357868,299,1 +170735357946,243,0 +170735357994,427,0 +170735358042,429,0 +170735358090,430,0 +170735358138,430,0 +170735358185,428,0 +170735358233,429,0 +170735358281,427,0 +170735358331,427,0 +170735358379,430,0 +170735358427,429,0 +170735358476,429,0 +170735358524,427,0 +170735358572,430,0 +170735358622,427,0 +170735358670,429,0 +170735358718,428,0 +170735358766,429,0 +170735358815,432,0 +170735358865,426,0 +170735358913,302,1 +170735358997,253,0 +170735359047,429,0 +170735359095,429,0 +170735359143,429,0 +170735359191,428,0 +170735359239,428,0 +170735359287,429,0 +170735359335,430,0 +170735359384,427,0 +170735359434,429,0 +170735359482,429,0 +170735359530,428,0 +170735359578,430,0 +170735359626,428,0 +170735359673,428,0 +170735359721,429,0 +170735359769,426,0 +170735359817,430,0 +170735359865,427,0 +170735359913,430,0 +170735359961,307,1 +170735360040,248,0 +170735360090,427,0 +170735360138,429,0 +170735360186,428,0 +170735360234,430,0 +170735360282,429,0 +170735360331,428,0 +170735360381,429,0 +170735360429,428,0 +170735360477,429,0 +170735360525,428,0 +170735360573,430,0 +170735360621,428,0 +170735360670,428,0 +170735360720,429,0 +170735360768,428,0 +170735360816,428,0 +170735360865,429,0 +170735360915,431,0 +170735360963,429,0 +170735361011,429,0 +170735361059,429,0 +170735361107,429,0 +170735361154,429,0 +170735361202,427,0 +170735361250,430,0 +170735361300,428,0 +170735361348,429,0 +170735361397,429,0 +170735361445,429,0 +170735361495,425,0 +170735361543,293,1 +170735361634,399,0 +170735361682,427,0 +170735361730,429,0 +170735361778,429,0 +170735361826,428,0 +170735361875,429,0 +170735361925,429,0 +170735361974,428,0 +170735362022,429,0 +170735362070,429,0 +170735362118,427,0 +170735362168,429,0 +170735362216,429,0 +170735362263,429,0 +170735362313,429,0 +170735362361,427,0 +170735362409,429,0 +170735362457,428,0 +170735362505,430,0 +170735362553,417,0 +170735362602,307,1 +170735363185,429,0 +170735363234,429,0 +170735363284,427,0 +170735363333,427,0 +170735363381,428,0 +170735363429,429,0 +170735363477,429,0 +170735363525,431,0 +170735363573,429,0 +170735363621,297,1 +170735363705,252,0 +170735363753,426,0 +170735363801,427,0 +170735363849,428,0 +170735363898,430,0 +170735363946,429,0 +170735363994,430,0 +170735364042,430,0 +170735364090,427,0 +170735364139,430,0 +170735364189,430,0 +170735364237,429,0 +170735364285,430,0 +170735364333,429,0 +170735364382,430,0 +170735364432,429,0 +170735364480,429,0 +170735364528,430,0 +170735364576,429,0 +170735364624,426,0 +170735364673,311,0 +170735364723,300,1 +170735364804,426,0 +170735364853,429,0 +170735364901,430,0 +170735364951,431,0 +170735365000,430,0 +170735365050,430,0 +170735365099,431,0 +170735365149,429,0 +170735365197,431,0 +170735365246,430,0 +170735365294,429,0 +170735365342,430,0 +170735365390,430,0 +170735365438,431,0 +170735365486,431,0 +170735365534,430,0 +170735365584,429,0 +170735365633,428,0 +170735365683,429,0 +170735365732,310,0 +170735365780,304,1 +170735365860,432,0 +170735365908,433,0 +170735365955,434,0 +170735366005,434,0 +170735366053,434,0 +170735366101,433,0 +170735366149,433,0 +170735366197,433,0 +170735366245,433,0 +170735366293,433,0 +170735366341,433,0 +170735366390,432,0 +170735366438,433,0 +170735366486,433,0 +170735366536,433,0 +170735366584,433,0 +170735366633,432,0 +170735366681,433,0 +170735366729,431,0 +170735366777,296,1 +170735366859,252,0 +170735366907,431,0 +170735366956,432,0 +170735367004,432,0 +170735367052,433,0 +170735367100,432,0 +170735367148,433,0 +170735367196,432,0 +170735367244,432,0 +170735367292,432,0 +170735367341,431,0 +170735367389,432,0 +170735367437,432,0 +170735367487,432,0 +170735367535,433,0 +170735367584,432,0 +170735367632,432,0 +170735367680,432,0 +170735367728,433,0 +170735367777,431,0 +170735367827,306,1 +170735367908,377,0 +170735367958,432,0 +170735368006,432,0 +170735368054,432,0 +170735368102,432,0 +170735368150,431,0 +170735368199,432,0 +170735368247,432,0 +170735368295,432,0 +170735368343,432,0 +170735368392,432,0 +170735368440,432,0 +170735368488,432,0 +170735368536,432,0 +170735368584,432,0 +170735368632,432,0 +170735368680,432,0 +170735368728,433,0 +170735368776,432,0 +170735368824,431,0 +170735368872,297,1 +170735368953,235,0 +170735369001,431,0 +170735369050,432,0 +170735369098,432,0 +170735369146,432,0 +170735369196,432,0 +170735369243,432,0 +170735369291,432,0 +170735369339,432,0 +170735369387,432,0 +170735369435,432,0 +170735369483,432,0 +170735369533,432,0 +170735369582,432,0 +170735369632,431,0 +170735369680,432,0 +170735369728,432,0 +170735369776,431,0 +170735369824,432,0 +170735369871,428,0 +170735369919,312,0 +170735369967,291,1 +170735370045,431,0 +170735370093,431,0 +170735370141,432,0 +170735370189,432,0 +170735370237,432,0 +170735370285,432,0 +170735370334,432,0 +170735370384,432,0 +170735370432,432,0 +170735370480,431,0 +170735370528,432,0 +170735370576,431,0 +170735370624,432,0 +170735370673,432,0 +170735370721,432,0 +170735370769,432,0 +170735370818,432,0 +170735370866,432,0 +170735370914,430,0 +170735370962,310,0 +170735371012,306,1 +170735371096,431,0 +170735371145,432,0 +170735371193,432,0 +170735371241,432,0 +170735371291,432,0 +170735371339,431,0 +170735371388,431,0 +170735371436,432,0 +170735371484,432,0 +170735371532,432,0 +170735371580,431,0 +170735371628,432,0 +170735371678,432,0 +170735371726,433,0 +170735371774,432,0 +170735371822,432,0 +170735371870,431,0 +170735371917,431,0 +170735371965,431,0 +170735372015,301,1 +170735372104,234,0 +170735372152,431,0 +170735372200,431,0 +170735372248,432,0 +170735372297,431,0 +170735372345,432,0 +170735372395,432,0 +170735372443,432,0 +170735372491,431,0 +170735372539,432,0 +170735372588,432,0 +170735372636,431,0 +170735372686,432,0 +170735372734,432,0 +170735372782,432,0 +170735372831,432,0 +170735372879,432,0 +170735372927,431,0 +170735372975,433,0 +170735373023,430,0 +170735373071,287,1 +170735373154,397,0 +170735373206,432,0 +170735373254,432,0 +170735373302,432,0 +170735373350,432,0 +170735373398,432,0 +170735373446,432,0 +170735373494,431,0 +170735373544,432,0 +170735373592,432,0 +170735373640,432,0 +170735373688,432,0 +170735373736,432,0 +170735373785,431,0 +170735373835,431,0 +170735373883,431,0 +170735373932,431,0 +170735373980,431,0 +170735374028,431,0 +170735374076,395,0 +170735374126,303,1 +170735374207,414,0 +170735374255,431,0 +170735374305,431,0 +170735374355,432,0 +170735374404,432,0 +170735374452,432,0 +170735374500,432,0 +170735374549,432,0 +170735374597,432,0 +170735374645,431,0 +170735374695,432,0 +170735374743,431,0 +170735374791,432,0 +170735374840,431,0 +170735374890,432,0 +170735374938,431,0 +170735374986,431,0 +170735375035,432,0 +170735375085,431,0 +170735375133,428,0 +170735375181,308,1 +170735375264,413,0 +170735375313,431,0 +170735375361,432,0 +170735375409,432,0 +170735375457,431,0 +170735375507,431,0 +170735375555,432,0 +170735375602,431,0 +170735375650,431,0 +170735375698,432,0 +170735375748,432,0 +170735375796,432,0 +170735375845,432,0 +170735375895,431,0 +170735375943,432,0 +170735375991,431,0 +170735376039,432,0 +170735376087,432,0 +170735376135,431,0 +170735376183,419,0 +170735376232,296,1 +170735376316,420,0 +170735376366,431,0 +170735376415,431,0 +170735376463,431,0 +170735376513,432,0 +170735376561,432,0 +170735376610,432,0 +170735376658,431,0 +170735376706,432,0 +170735376756,432,0 +170735376803,432,0 +170735376851,432,0 +170735376899,431,0 +170735376947,432,0 +170735376995,432,0 +170735377043,432,0 +170735377091,432,0 +170735377139,431,0 +170735377189,431,0 +170735377237,305,1 +170735377318,302,1 +170735377396,431,0 +170735377445,432,0 +170735377495,432,0 +170735377544,431,0 +170735377592,432,0 +170735377640,431,0 +170735377688,431,0 +170735377736,432,0 +170735377784,431,0 +170735377832,432,0 +170735377880,432,0 +170735377929,431,0 +170735377977,431,0 +170735378027,432,0 +170735378075,431,0 +170735378124,432,0 +170735378174,433,0 +170735378222,431,0 +170735378270,429,0 +170735378318,308,1 +170735378397,401,0 +170735378445,431,0 +170735378493,431,0 +170735378541,432,0 +170735378591,432,0 +170735378639,432,0 +170735378687,432,0 +170735378735,432,0 +170735378784,432,0 +170735378832,432,0 +170735378882,432,0 +170735378931,432,0 +170735378979,431,0 +170735379029,432,0 +170735379077,431,0 +170735379125,432,0 +170735379174,432,0 +170735379224,432,0 +170735379273,432,0 +170735379321,431,0 +170735379369,308,1 +170735379449,398,0 +170735379502,431,0 +170735379550,431,0 +170735379598,431,0 +170735379646,432,0 +170735379695,432,0 +170735379745,431,0 +170735379793,431,0 +170735379843,432,0 +170735379891,432,0 +170735379938,431,0 +170735379986,431,0 +170735380034,432,0 +170735380082,431,0 +170735380130,432,0 +170735380178,431,0 +170735380226,431,0 +170735380274,432,0 +170735380322,431,0 +170735380370,427,0 +170735380420,301,1 +170735380503,417,0 +170735380553,431,0 +170735380601,431,0 +170735380649,432,0 +170735380697,431,0 +170735380744,432,0 +170735380794,431,0 +170735380844,431,0 +170735380893,431,0 +170735380941,431,0 +170735380991,431,0 +170735381040,431,0 +170735381088,432,0 +170735381136,431,0 +170735381184,431,0 +170735381233,431,0 +170735381281,431,0 +170735381331,432,0 +170735381380,431,0 +170735381428,326,0 +170735381476,304,1 +170735381559,418,0 +170735381607,431,0 +170735381655,432,0 +170735381703,432,0 +170735381750,431,0 +170735381799,432,0 +170735381848,432,0 +170735381896,432,0 +170735381944,431,0 +170735381993,431,0 +170735382043,432,0 +170735382091,431,0 +170735382139,432,0 +170735382187,431,0 +170735382236,431,0 +170735382286,431,0 +170735382334,431,0 +170735382384,431,0 +170735382431,432,0 +170735382479,289,1 +170735382565,283,1 +170735382645,431,0 +170735382694,431,0 +170735382744,431,0 +170735382792,431,0 +170735382841,432,0 +170735382889,432,0 +170735382939,432,0 +170735382988,432,0 +170735383036,431,0 +170735383084,432,0 +170735383134,432,0 +170735383182,432,0 +170735383230,431,0 +170735383277,431,0 +170735383325,432,0 +170735383373,431,0 +170735383421,432,0 +170735383471,430,0 +170735383520,291,1 +170735383602,306,1 +170735383679,429,0 +170735383728,430,0 +170735383776,430,0 +170735383824,430,0 +170735383872,430,0 +170735383920,430,0 +170735383968,430,0 +170735384016,430,0 +170735384064,430,0 +170735384112,431,0 +170735384160,430,0 +170735384209,430,0 +170735384257,430,0 +170735384305,430,0 +170735384353,430,0 +170735384401,431,0 +170735384449,430,0 +170735384497,430,0 +170735384547,428,0 +170735384596,284,1 +170735384677,360,0 +170735384726,429,0 +170735384774,430,0 +170735384822,430,0 +170735384870,430,0 +170735384920,430,0 +170735384968,432,0 +170735385017,430,0 +170735385067,430,0 +170735385116,430,0 +170735385164,431,0 +170735385214,430,0 +170735385262,430,0 +170735385310,430,0 +170735385359,430,0 +170735385407,431,0 +170735385455,431,0 +170735385503,430,0 +170735385551,430,0 +170735385599,427,0 +170735385647,294,1 +170735385728,322,0 +170735385776,430,0 +170735385824,430,0 +170735385872,430,0 +170735385921,430,0 +170735385969,430,0 +170735386019,431,0 +170735386068,430,0 +170735386116,431,0 +170735386164,430,0 +170735386214,430,0 +170735386262,430,0 +170735386311,430,0 +170735386359,430,0 +170735386407,430,0 +170735386455,430,0 +170735386503,431,0 +170735386551,430,0 +170735386599,429,0 +170735386647,429,0 +170735386695,301,1 +170735386776,235,0 +170735386824,428,0 +170735386872,430,0 +170735386921,430,0 +170735386969,429,0 +170735387019,430,0 +170735387068,430,0 +170735387118,431,0 +170735387167,430,0 +170735387215,430,0 +170735387263,430,0 +170735387311,430,0 +170735387359,430,0 +170735387409,430,0 +170735387457,430,0 +170735387505,431,0 +170735387553,430,0 +170735387602,431,0 +170735387650,430,0 +170735387698,429,0 +170735387748,309,1 +170735387833,364,0 +170735387881,429,0 +170735387931,429,0 +170735387978,430,0 +170735388028,430,0 +170735388076,431,0 +170735388124,431,0 +170735388173,430,0 +170735388223,430,0 +170735388271,429,0 +170735388320,430,0 +170735388368,430,0 +170735388418,430,0 +170735388467,430,0 +170735388517,430,0 +170735388566,429,0 +170735388616,430,0 +170735388666,429,0 +170735388714,429,0 +170735388761,315,0 +170735388809,299,1 +170735388894,420,0 +170735388942,432,0 +170735388991,432,0 +170735389039,432,0 +170735389087,432,0 +170735389137,432,0 +170735389185,431,0 +170735389233,432,0 +170735389281,432,0 +170735389329,432,0 +170735389378,433,0 +170735389426,432,0 +170735389474,433,0 +170735389524,432,0 +170735389572,432,0 +170735389620,432,0 +170735389669,432,0 +170735389717,432,0 +170735389767,432,0 +170735389814,292,1 +170735389906,255,0 +170735389954,429,0 +170735390002,432,0 +170735390052,432,0 +170735390100,432,0 +170735390147,432,0 +170735390197,432,0 +170735390246,433,0 +170735390294,432,0 +170735390342,432,0 +170735390390,432,0 +170735390440,432,0 +170735390488,432,0 +170735390537,433,0 +170735390585,432,0 +170735390635,432,0 +170735390684,432,0 +170735390734,432,0 +170735390782,433,0 +170735390830,431,0 +170735390878,304,1 +170735390958,252,0 +170735391007,426,0 +170735391057,430,0 +170735391106,430,0 +170735391156,431,0 +170735391204,431,0 +170735391253,430,0 +170735391303,430,0 +170735391351,430,0 +170735391398,430,0 +170735391448,430,0 +170735391496,430,0 +170735391544,430,0 +170735391592,430,0 +170735391641,430,0 +170735391689,430,0 +170735391739,430,0 +170735391787,430,0 +170735391835,431,0 +170735391883,429,0 +170735391931,290,1 +170735392011,233,0 +170735392061,428,0 +170735392109,428,0 +170735392158,429,0 +170735392206,429,0 +170735392256,429,0 +170735392305,429,0 +170735392355,429,0 +170735392404,428,0 +170735392454,429,0 +170735392503,428,0 +170735392551,429,0 +170735392599,429,0 +170735392649,428,0 +170735392698,429,0 +170735392746,429,0 +170735392794,429,0 +170735392842,428,0 +170735392892,429,0 +170735392939,425,0 +170735392989,285,1 +170735393070,380,0 +170735393120,430,0 +170735393169,430,0 +170735393219,430,0 +170735393267,430,0 +170735393316,431,0 +170735393366,431,0 +170735393414,429,0 +170735393463,430,0 +170735393513,430,0 +170735393561,430,0 +170735393610,430,0 +170735393658,430,0 +170735393706,430,0 +170735393756,430,0 +170735393804,430,0 +170735393853,430,0 +170735393903,431,0 +170735393952,430,0 +170735394002,428,0 +170735394051,292,1 +170735394133,402,0 +170735394181,430,0 +170735394229,430,0 +170735394278,430,0 +170735394326,430,0 +170735394374,430,0 +170735394422,430,0 +170735394470,430,0 +170735394520,430,0 +170735394569,431,0 +170735394617,430,0 +170735394667,430,0 +170735394715,430,0 +170735394764,430,0 +170735394814,430,0 +170735394863,430,0 +170735394911,429,0 +170735394959,430,0 +170735395007,430,0 +170735395057,312,0 +170735395106,303,1 +170735395187,418,0 +170735395235,430,0 +170735395283,430,0 +170735395333,430,0 +170735395381,430,0 +170735395429,430,0 +170735395477,429,0 +170735395526,430,0 +170735395576,429,0 +170735395625,429,0 +170735395675,429,0 +170735395724,428,0 +170735395772,428,0 +170735395822,428,0 +170735395870,429,0 +170735395918,429,0 +170735395966,428,0 +170735396013,428,0 +170735396063,428,0 +170735396111,303,1 +170735396185,291,1 +170735396267,428,0 +170735396315,429,0 +170735396363,429,0 +170735396411,429,0 +170735396459,429,0 +170735396508,429,0 +170735396556,429,0 +170735396604,429,0 +170735396652,429,0 +170735396700,429,0 +170735396750,428,0 +170735396798,429,0 +170735396846,429,0 +170735396894,429,0 +170735396942,429,0 +170735396991,429,0 +170735397041,430,0 +170735397090,428,0 +170735397140,427,0 +170735397189,300,1 +170735397268,250,0 +170735397316,428,0 +170735397364,429,0 +170735397412,429,0 +170735397462,429,0 +170735397510,429,0 +170735397557,429,0 +170735397605,429,0 +170735397655,429,0 +170735397703,429,0 +170735397751,429,0 +170735397799,429,0 +170735397848,428,0 +170735397896,429,0 +170735397944,429,0 +170735397992,429,0 +170735398040,429,0 +170735398090,429,0 +170735398138,429,0 +170735398186,427,0 +170735398235,260,0 +170735398285,283,1 +170735398365,428,0 +170735398415,428,0 +170735398464,429,0 +170735398512,429,0 +170735398560,429,0 +170735398608,429,0 +170735398656,429,0 +170735398706,429,0 +170735398755,429,0 +170735398803,429,0 +170735398851,429,0 +170735398899,428,0 +170735398947,428,0 +170735398995,429,0 +170735399043,428,0 +170735399091,428,0 +170735399139,429,0 +170735399187,428,0 +170735399235,401,0 +170735399285,308,1 +170735399366,409,0 +170735399416,429,0 +170735399465,429,0 +170735399515,429,0 +170735399563,429,0 +170735399611,429,0 +170735399660,429,0 +170735399710,429,0 +170735399757,429,0 +170735399807,429,0 +170735399855,428,0 +170735399903,429,0 +170735399951,429,0 +170735399999,429,0 diff --git a/laser_value/0208-11.csv b/laser_value/0208-11.csv new file mode 100644 index 0000000..0e77486 --- /dev/null +++ b/laser_value/0208-11.csv @@ -0,0 +1,6949 @@ +timestamp,laser_value,event +170735400049,429,0 +170735400097,429,0 +170735400146,428,0 +170735400194,429,0 +170735400242,429,0 +170735400290,390,0 +170735400338,293,1 +170735400421,412,0 +170735400471,428,0 +170735400520,429,0 +170735400568,429,0 +170735400616,429,0 +170735400664,429,0 +170735400712,429,0 +170735400760,430,0 +170735400808,429,0 +170735400856,429,0 +170735400904,429,0 +170735400952,429,0 +170735401000,429,0 +170735401047,429,0 +170735401097,429,0 +170735401145,429,0 +170735401194,428,0 +170735401242,429,0 +170735401290,429,0 +170735401338,426,0 +170735401386,306,1 +170735401469,399,0 +170735401517,428,0 +170735401565,428,0 +170735401615,429,0 +170735401663,429,0 +170735401711,429,0 +170735401759,429,0 +170735401808,429,0 +170735401858,428,0 +170735401906,429,0 +170735401954,429,0 +170735402003,429,0 +170735402051,429,0 +170735402101,428,0 +170735402150,429,0 +170735402198,429,0 +170735402246,429,0 +170735402294,428,0 +170735402342,429,0 +170735402390,423,0 +170735402439,297,1 +170735402518,412,0 +170735402566,430,0 +170735402615,430,0 +170735402665,429,0 +170735402714,430,0 +170735402762,431,0 +170735402812,430,0 +170735402861,431,0 +170735402909,431,0 +170735402958,429,0 +170735403006,431,0 +170735403056,430,0 +170735403104,430,0 +170735403152,430,0 +170735403200,430,0 +170735403249,431,0 +170735403299,430,0 +170735403348,430,0 +170735403398,430,0 +170735403446,292,1 +170735403529,294,1 +170735403610,431,0 +170735403658,429,0 +170735403706,431,0 +170735403755,430,0 +170735403803,430,0 +170735403853,431,0 +170735403901,431,0 +170735403950,430,0 +170735403999,430,0 +170735404047,430,0 +170735404095,430,0 +170735404143,430,0 +170735404191,431,0 +170735404239,430,0 +170735404287,430,0 +170735404335,431,0 +170735404383,430,0 +170735404430,432,0 +170735404478,428,0 +170735404526,286,1 +170735404609,419,0 +170735404656,435,0 +170735404706,435,0 +170735404754,435,0 +170735404803,435,0 +170735404851,435,0 +170735404901,435,0 +170735404949,436,0 +170735404998,435,0 +170735405046,435,0 +170735405096,435,0 +170735405144,435,0 +170735405193,435,0 +170735405243,435,0 +170735405290,435,0 +170735405338,435,0 +170735405386,435,0 +170735405434,435,0 +170735405482,435,0 +170735405530,433,0 +170735405578,292,1 +170735405656,416,0 +170735405704,435,0 +170735405754,435,0 +170735405802,435,0 +170735405850,436,0 +170735405899,436,0 +170735405947,435,0 +170735405995,435,0 +170735406043,435,0 +170735406091,435,0 +170735406138,435,0 +170735406186,435,0 +170735406234,435,0 +170735406282,435,0 +170735406330,435,0 +170735406378,436,0 +170735406427,435,0 +170735406475,436,0 +170735406525,435,0 +170735406573,433,0 +170735406621,291,1 +170735406702,421,0 +170735406750,435,0 +170735406797,435,0 +170735406845,435,0 +170735406895,436,0 +170735406944,435,0 +170735406992,435,0 +170735407040,435,0 +170735407088,435,0 +170735407138,435,0 +170735407187,435,0 +170735407237,435,0 +170735407286,435,0 +170735407334,435,0 +170735407382,435,0 +170735407432,435,0 +170735407480,436,0 +170735407527,436,0 +170735407577,435,0 +170735407625,433,0 +170735407674,271,1 +170735407758,424,0 +170735407806,436,0 +170735407854,437,0 +170735407902,436,0 +170735407950,437,0 +170735408000,437,0 +170735408048,436,0 +170735408096,436,0 +170735408143,437,0 +170735408191,436,0 +170735408239,437,0 +170735408287,436,0 +170735408335,436,0 +170735408383,436,0 +170735408431,437,0 +170735408479,437,0 +170735408527,437,0 +170735408575,436,0 +170735408625,437,0 +170735408673,435,0 +170735408721,298,1 +170735408804,418,0 +170735408854,436,0 +170735408904,436,0 +170735408952,436,0 +170735408999,437,0 +170735409049,437,0 +170735409097,436,0 +170735409145,435,0 +170735409193,437,0 +170735409242,437,0 +170735409292,436,0 +170735409341,437,0 +170735409389,436,0 +170735409439,436,0 +170735409487,437,0 +170735409535,436,0 +170735409584,436,0 +170735409632,436,0 +170735409680,436,0 +170735409730,435,0 +170735409778,278,1 +170735409853,419,0 +170735409902,436,0 +170735409952,436,0 +170735409999,437,0 +170735410047,436,0 +170735410095,436,0 +170735410143,436,0 +170735410191,436,0 +170735410239,436,0 +170735410287,436,0 +170735410335,436,0 +170735410384,436,0 +170735410432,436,0 +170735410480,436,0 +170735410528,436,0 +170735410576,436,0 +170735410623,436,0 +170735410671,435,0 +170735410721,435,0 +170735410769,434,0 +170735410817,285,1 +170735410898,415,0 +170735410946,436,0 +170735410994,436,0 +170735411041,436,0 +170735411091,436,0 +170735411141,437,0 +170735411190,436,0 +170735411240,436,0 +170735411288,436,0 +170735411336,436,0 +170735411384,436,0 +170735411433,436,0 +170735411481,436,0 +170735411529,436,0 +170735411577,436,0 +170735411625,436,0 +170735411673,436,0 +170735411720,436,0 +170735411768,436,0 +170735411816,433,0 +170735411864,294,1 +170735411945,422,0 +170735411993,435,0 +170735412041,436,0 +170735412089,436,0 +170735412137,436,0 +170735412185,436,0 +170735412233,435,0 +170735412282,437,0 +170735412332,436,0 +170735412381,435,0 +170735412429,436,0 +170735412479,436,0 +170735412526,437,0 +170735412576,437,0 +170735412624,436,0 +170735412672,436,0 +170735412720,436,0 +170735412768,436,0 +170735412816,433,0 +170735412863,435,0 +170735412911,291,1 +170735412991,278,1 +170735413074,436,0 +170735413122,436,0 +170735413170,436,0 +170735413218,436,0 +170735413266,436,0 +170735413314,437,0 +170735413363,437,0 +170735413411,436,0 +170735413459,435,0 +170735413507,436,0 +170735413555,436,0 +170735413603,436,0 +170735413650,436,0 +170735413698,435,0 +170735413746,436,0 +170735413794,436,0 +170735413842,436,0 +170735413890,435,0 +170735413938,296,1 +170735414020,245,0 +170735414068,435,0 +170735414116,436,0 +170735414165,435,0 +170735414213,436,0 +170735414261,436,0 +170735414311,436,0 +170735414358,437,0 +170735414406,436,0 +170735414454,436,0 +170735414504,435,0 +170735414552,436,0 +170735414600,435,0 +170735414648,436,0 +170735414696,435,0 +170735414744,436,0 +170735414791,436,0 +170735414839,435,0 +170735414889,436,0 +170735414937,435,0 +170735414986,279,1 +170735415070,277,1 +170735415150,437,0 +170735415198,436,0 +170735415246,436,0 +170735415295,436,0 +170735415343,436,0 +170735415391,436,0 +170735415439,437,0 +170735415487,435,0 +170735415535,437,0 +170735415583,435,0 +170735415632,436,0 +170735415680,436,0 +170735415728,436,0 +170735415776,436,0 +170735415824,436,0 +170735415873,435,0 +170735415921,436,0 +170735415971,436,0 +170735416021,434,0 +170735416068,298,1 +170735416151,419,0 +170735416199,435,0 +170735416247,436,0 +170735416295,436,0 +170735416344,436,0 +170735416392,436,0 +170735416440,435,0 +170735416488,436,0 +170735416536,436,0 +170735416585,436,0 +170735416633,436,0 +170735416681,435,0 +170735416729,436,0 +170735416777,436,0 +170735416825,436,0 +170735416873,436,0 +170735416920,436,0 +170735416968,436,0 +170735417018,435,0 +170735417066,435,0 +170735417114,296,1 +170735417194,403,0 +170735417244,436,0 +170735417292,437,0 +170735417340,436,0 +170735417388,436,0 +170735417437,436,0 +170735417485,436,0 +170735417535,436,0 +170735417583,437,0 +170735417631,437,0 +170735417678,436,0 +170735417728,436,0 +170735417777,436,0 +170735417825,436,0 +170735417875,436,0 +170735417923,436,0 +170735417972,437,0 +170735418020,435,0 +170735418068,436,0 +170735418116,433,0 +170735418164,294,1 +170735418245,422,0 +170735418293,435,0 +170735418343,436,0 +170735418390,437,0 +170735418438,436,0 +170735418488,436,0 +170735418536,436,0 +170735418585,435,0 +170735418633,436,0 +170735418681,436,0 +170735418729,436,0 +170735418777,436,0 +170735418825,436,0 +170735418873,437,0 +170735418920,436,0 +170735418968,436,0 +170735419016,436,0 +170735419064,437,0 +170735419112,436,0 +170735419160,435,0 +170735419208,297,1 +170735419291,404,0 +170735419339,436,0 +170735419387,436,0 +170735419435,436,0 +170735419483,436,0 +170735419531,436,0 +170735419579,436,0 +170735419626,436,0 +170735419674,436,0 +170735419722,437,0 +170735419770,436,0 +170735419818,436,0 +170735419866,436,0 +170735419915,436,0 +170735419963,436,0 +170735420013,436,0 +170735420060,436,0 +170735420108,436,0 +170735420156,437,0 +170735420206,435,0 +170735420255,276,1 +170735420343,420,0 +170735420391,436,0 +170735420439,436,0 +170735420487,436,0 +170735420534,436,0 +170735420582,436,0 +170735420630,436,0 +170735420678,435,0 +170735420726,436,0 +170735420775,436,0 +170735420823,436,0 +170735420871,436,0 +170735420921,436,0 +170735420969,436,0 +170735421017,436,0 +170735421066,435,0 +170735421114,436,0 +170735421162,437,0 +170735421210,436,0 +170735421259,435,0 +170735421307,289,1 +170735421387,418,0 +170735421435,436,0 +170735421485,436,0 +170735421533,436,0 +170735421581,436,0 +170735421628,436,0 +170735421678,436,0 +170735421727,435,0 +170735421777,436,0 +170735421825,436,0 +170735421873,436,0 +170735421921,435,0 +170735421969,436,0 +170735422016,435,0 +170735422064,436,0 +170735422112,436,0 +170735422160,437,0 +170735422208,436,0 +170735422256,435,0 +170735422304,435,0 +170735422354,299,1 +170735422435,415,0 +170735422483,435,0 +170735422533,436,0 +170735422581,436,0 +170735422630,436,0 +170735422678,436,0 +170735422726,436,0 +170735422774,436,0 +170735422824,435,0 +170735422873,436,0 +170735422923,436,0 +170735422971,436,0 +170735423020,436,0 +170735423070,436,0 +170735423119,436,0 +170735423167,435,0 +170735423215,436,0 +170735423265,435,0 +170735423313,436,0 +170735423360,436,0 +170735423408,276,1 +170735423491,407,0 +170735423541,435,0 +170735423589,436,0 +170735423637,435,0 +170735423685,436,0 +170735423733,435,0 +170735423781,436,0 +170735423830,436,0 +170735423878,437,0 +170735423926,436,0 +170735423974,436,0 +170735424024,436,0 +170735424071,435,0 +170735424121,436,0 +170735424169,436,0 +170735424217,436,0 +170735424267,436,0 +170735424314,436,0 +170735424362,435,0 +170735424412,434,0 +170735424461,281,1 +170735424543,427,0 +170735424592,436,0 +170735424640,437,0 +170735424688,436,0 +170735424736,436,0 +170735424786,436,0 +170735424835,436,0 +170735424885,437,0 +170735424933,436,0 +170735424982,436,0 +170735425030,435,0 +170735425080,435,0 +170735425128,436,0 +170735425176,436,0 +170735425224,436,0 +170735425272,435,0 +170735425321,436,0 +170735425369,435,0 +170735425417,436,0 +170735425465,432,0 +170735425514,296,1 +170735425596,425,0 +170735425644,437,0 +170735425692,435,0 +170735425739,436,0 +170735425787,436,0 +170735425835,437,0 +170735425885,436,0 +170735425932,436,0 +170735425980,436,0 +170735426028,435,0 +170735426076,436,0 +170735426124,435,0 +170735426174,436,0 +170735426223,436,0 +170735426271,436,0 +170735426319,436,0 +170735426367,436,0 +170735426415,436,0 +170735426465,436,0 +170735426513,434,0 +170735426561,291,1 +170735426641,424,0 +170735426689,435,0 +170735426737,436,0 +170735426785,436,0 +170735426835,436,0 +170735426882,436,0 +170735426930,436,0 +170735426980,436,0 +170735427030,436,0 +170735427077,437,0 +170735427127,436,0 +170735427176,436,0 +170735427224,436,0 +170735427274,436,0 +170735427323,435,0 +170735427371,436,0 +170735427419,436,0 +170735427467,436,0 +170735427515,436,0 +170735427563,433,0 +170735427612,295,1 +170735427697,431,0 +170735427747,436,0 +170735427795,436,0 +170735427843,436,0 +170735427891,436,0 +170735427939,436,0 +170735427988,436,0 +170735428036,436,0 +170735428084,437,0 +170735428132,436,0 +170735428180,435,0 +170735428230,436,0 +170735428278,436,0 +170735428325,437,0 +170735428373,436,0 +170735428421,437,0 +170735428469,435,0 +170735428519,436,0 +170735428567,436,0 +170735428615,284,1 +170735428695,273,1 +170735428777,435,0 +170735428827,437,0 +170735428875,436,0 +170735428923,436,0 +170735428971,436,0 +170735429019,435,0 +170735429066,436,0 +170735429114,436,0 +170735429162,436,0 +170735429210,436,0 +170735429258,436,0 +170735429306,435,0 +170735429353,436,0 +170735429401,436,0 +170735429449,436,0 +170735429497,436,0 +170735429545,437,0 +170735429593,436,0 +170735429641,435,0 +170735429689,296,1 +170735429769,235,0 +170735429817,436,0 +170735429865,436,0 +170735429913,436,0 +170735429961,436,0 +170735430009,436,0 +170735430057,436,0 +170735430105,436,0 +170735430154,435,0 +170735430202,436,0 +170735430251,437,0 +170735430299,437,0 +170735430347,436,0 +170735430395,435,0 +170735430443,436,0 +170735430491,436,0 +170735430539,436,0 +170735430586,436,0 +170735430634,436,0 +170735430682,436,0 +170735430730,278,1 +170735430812,257,0 +170735430860,434,0 +170735430910,436,0 +170735430959,436,0 +170735431007,436,0 +170735431056,435,0 +170735431106,436,0 +170735431154,436,0 +170735431202,436,0 +170735431250,435,0 +170735431297,436,0 +170735431345,436,0 +170735431393,436,0 +170735431441,436,0 +170735431489,436,0 +170735431537,436,0 +170735431585,437,0 +170735431634,435,0 +170735431684,435,0 +170735431732,435,0 +170735431780,293,1 +170735431861,253,0 +170735431909,435,0 +170735431957,436,0 +170735432005,436,0 +170735432053,436,0 +170735432101,435,0 +170735432149,436,0 +170735432197,436,0 +170735432245,436,0 +170735432292,436,0 +170735432342,436,0 +170735432390,436,0 +170735432438,436,0 +170735432486,436,0 +170735432534,437,0 +170735432582,436,0 +170735432629,436,0 +170735432677,434,0 +170735432725,436,0 +170735432773,435,0 +170735432823,296,1 +170735432903,259,0 +170735432951,434,0 +170735432999,436,0 +170735433048,436,0 +170735433096,436,0 +170735433144,436,0 +170735433192,436,0 +170735433242,436,0 +170735433291,437,0 +170735433339,435,0 +170735433388,436,0 +170735433436,436,0 +170735433484,436,0 +170735433532,435,0 +170735433580,436,0 +170735433628,436,0 +170735433676,436,0 +170735433723,436,0 +170735433771,436,0 +170735433819,435,0 +170735433867,398,0 +170735433915,302,1 +170735434001,434,0 +170735434051,436,0 +170735434098,436,0 +170735434148,436,0 +170735434196,436,0 +170735434244,436,0 +170735434292,436,0 +170735434339,435,0 +170735434389,436,0 +170735434437,436,0 +170735434485,436,0 +170735434532,435,0 +170735434580,436,0 +170735434630,437,0 +170735434678,435,0 +170735434725,436,0 +170735434773,436,0 +170735434823,435,0 +170735434871,434,0 +170735434919,266,0 +170735434966,301,1 +170735435044,431,0 +170735435092,436,0 +170735435140,436,0 +170735435189,436,0 +170735435237,436,0 +170735435287,436,0 +170735435334,436,0 +170735435382,435,0 +170735435432,436,0 +170735435480,436,0 +170735435528,436,0 +170735435576,436,0 +170735435623,435,0 +170735435671,436,0 +170735435719,436,0 +170735435767,436,0 +170735435817,436,0 +170735435865,435,0 +170735435914,436,0 +170735435962,294,1 +170735436056,244,0 +170735436106,434,0 +170735436154,435,0 +170735436201,436,0 +170735436249,436,0 +170735436297,436,0 +170735436345,435,0 +170735436393,436,0 +170735436441,436,0 +170735436489,436,0 +170735436537,437,0 +170735436585,436,0 +170735436635,435,0 +170735436684,436,0 +170735436734,436,0 +170735436783,436,0 +170735436833,437,0 +170735436881,435,0 +170735436929,436,0 +170735436978,436,0 +170735437026,277,1 +170735437107,234,0 +170735437157,436,0 +170735437205,435,0 +170735437252,436,0 +170735437300,435,0 +170735437348,436,0 +170735437396,433,0 +170735437444,436,0 +170735437492,435,0 +170735437540,437,0 +170735437589,436,0 +170735437639,435,0 +170735437687,436,0 +170735437735,436,0 +170735437784,436,0 +170735437832,436,0 +170735437880,435,0 +170735437929,436,0 +170735437977,436,0 +170735438025,435,0 +170735438074,296,1 +170735438162,246,0 +170735438211,434,0 +170735438259,436,0 +170735438309,436,0 +170735438358,436,0 +170735438408,436,0 +170735438456,436,0 +170735438504,436,0 +170735438551,436,0 +170735438599,436,0 +170735438649,436,0 +170735438697,436,0 +170735438745,436,0 +170735438793,436,0 +170735438841,436,0 +170735438889,436,0 +170735438937,436,0 +170735438986,436,0 +170735439034,436,0 +170735439084,435,0 +170735439132,309,1 +170735439213,234,0 +170735439261,436,0 +170735439309,436,0 +170735439359,435,0 +170735439407,436,0 +170735439456,436,0 +170735439506,436,0 +170735439554,435,0 +170735439602,436,0 +170735439651,436,0 +170735439699,436,0 +170735439747,436,0 +170735439795,436,0 +170735439843,436,0 +170735439891,436,0 +170735439940,436,0 +170735439988,436,0 +170735440038,436,0 +170735440086,435,0 +170735440135,435,0 +170735440185,287,1 +170735440271,416,0 +170735440320,436,0 +170735440370,436,0 +170735440418,436,0 +170735440466,435,0 +170735440514,436,0 +170735440562,436,0 +170735440611,434,0 +170735440661,437,0 +170735440709,436,0 +170735440757,436,0 +170735440805,436,0 +170735440853,436,0 +170735440900,436,0 +170735440950,436,0 +170735440999,437,0 +170735441047,436,0 +170735441095,436,0 +170735441145,436,0 +170735441194,434,0 +170735441242,299,1 +170735441325,425,0 +170735441372,435,0 +170735441420,435,0 +170735441468,436,0 +170735441517,435,0 +170735441566,435,0 +170735441614,436,0 +170735441663,435,0 +170735441711,436,0 +170735441759,436,0 +170735441807,436,0 +170735441855,434,0 +170735441905,436,0 +170735441953,435,0 +170735442002,436,0 +170735442050,436,0 +170735442098,436,0 +170735442146,435,0 +170735442194,435,0 +170735442242,435,0 +170735442290,288,1 +170735442370,405,0 +170735442418,433,0 +170735442466,433,0 +170735442514,432,0 +170735442562,433,0 +170735442610,433,0 +170735442660,432,0 +170735442708,433,0 +170735442756,433,0 +170735442805,433,0 +170735442854,433,0 +170735442902,433,0 +170735442950,432,0 +170735442998,432,0 +170735443046,433,0 +170735443096,434,0 +170735443144,433,0 +170735443192,433,0 +170735443240,432,0 +170735443288,429,0 +170735443336,296,1 +170735443418,420,0 +170735443468,432,0 +170735443516,433,0 +170735443565,432,0 +170735443615,432,0 +170735443664,433,0 +170735443712,434,0 +170735443760,433,0 +170735443808,433,0 +170735443856,432,0 +170735443906,432,0 +170735443954,433,0 +170735444003,433,0 +170735444051,433,0 +170735444099,433,0 +170735444147,433,0 +170735444195,433,0 +170735444243,432,0 +170735444291,433,0 +170735444339,430,0 +170735444387,303,1 +170735444469,410,0 +170735444518,433,0 +170735444566,433,0 +170735444616,432,0 +170735444665,433,0 +170735444715,433,0 +170735444764,433,0 +170735444814,433,0 +170735444863,432,0 +170735444911,433,0 +170735444959,433,0 +170735445007,433,0 +170735445055,432,0 +170735445103,433,0 +170735445152,433,0 +170735445202,433,0 +170735445252,432,0 +170735445300,433,0 +170735445349,433,0 +170735445399,426,0 +170735445447,299,1 +170735445533,422,0 +170735445581,432,0 +170735445630,433,0 +170735445678,433,0 +170735445726,433,0 +170735445775,433,0 +170735445825,433,0 +170735445875,432,0 +170735445922,433,0 +170735445970,432,0 +170735446018,433,0 +170735446066,433,0 +170735446114,433,0 +170735446162,433,0 +170735446210,432,0 +170735446260,433,0 +170735446308,433,0 +170735446356,433,0 +170735446404,432,0 +170735446452,374,0 +170735446499,302,1 +170735446585,429,0 +170735446633,433,0 +170735446681,433,0 +170735446730,433,0 +170735446778,432,0 +170735446828,433,0 +170735446878,433,0 +170735446927,432,0 +170735446975,432,0 +170735447023,433,0 +170735447073,433,0 +170735447121,433,0 +170735447169,432,0 +170735447218,433,0 +170735447266,433,0 +170735447314,433,0 +170735447363,433,0 +170735447413,433,0 +170735447462,431,0 +170735447510,298,1 +170735447593,233,0 +170735447641,431,0 +170735447689,433,0 +170735447739,432,0 +170735447786,433,0 +170735447834,433,0 +170735447884,433,0 +170735447933,433,0 +170735447983,432,0 +170735448031,432,0 +170735448079,433,0 +170735448127,433,0 +170735448175,433,0 +170735448223,433,0 +170735448272,433,0 +170735448320,433,0 +170735448368,433,0 +170735448416,432,0 +170735448464,433,0 +170735448512,432,0 +170735448560,301,1 +170735448643,237,0 +170735448693,433,0 +170735448741,434,0 +170735448789,433,0 +170735448837,433,0 +170735448886,433,0 +170735448936,434,0 +170735448985,433,0 +170735449033,434,0 +170735449081,434,0 +170735449129,433,0 +170735449179,433,0 +170735449228,433,0 +170735449276,433,0 +170735449324,433,0 +170735449372,433,0 +170735449420,433,0 +170735449468,433,0 +170735449516,433,0 +170735449564,432,0 +170735449612,300,1 +170735449692,257,0 +170735449740,433,0 +170735449790,433,0 +170735449837,433,0 +170735449885,433,0 +170735449933,433,0 +170735449981,434,0 +170735450029,433,0 +170735450077,434,0 +170735450125,433,0 +170735450173,434,0 +170735450221,433,0 +170735450271,433,0 +170735450319,433,0 +170735450368,433,0 +170735450416,433,0 +170735450464,433,0 +170735450513,433,0 +170735450561,433,0 +170735450609,432,0 +170735450657,280,1 +170735450747,404,0 +170735450795,433,0 +170735450843,433,0 +170735450891,433,0 +170735450939,433,0 +170735450989,434,0 +170735451037,433,0 +170735451085,433,0 +170735451134,434,0 +170735451182,432,0 +170735451230,434,0 +170735451278,433,0 +170735451326,433,0 +170735451376,433,0 +170735451425,433,0 +170735451473,433,0 +170735451521,433,0 +170735451571,433,0 +170735451620,433,0 +170735451668,431,0 +170735451716,304,1 +170735451802,404,0 +170735451851,432,0 +170735451899,433,0 +170735451947,433,0 +170735451995,433,0 +170735452043,433,0 +170735452091,433,0 +170735452139,433,0 +170735452189,433,0 +170735452236,433,0 +170735452284,433,0 +170735452332,434,0 +170735452382,433,0 +170735452430,433,0 +170735452478,433,0 +170735452526,433,0 +170735452575,433,0 +170735452625,433,0 +170735452673,433,0 +170735452721,431,0 +170735452769,304,1 +170735452850,409,0 +170735452898,433,0 +170735452946,432,0 +170735452996,433,0 +170735453044,433,0 +170735453091,433,0 +170735453139,433,0 +170735453189,433,0 +170735453238,434,0 +170735453288,433,0 +170735453336,433,0 +170735453384,433,0 +170735453432,433,0 +170735453481,433,0 +170735453529,433,0 +170735453579,433,0 +170735453627,433,0 +170735453676,433,0 +170735453724,432,0 +170735453774,431,0 +170735453822,287,1 +170735453908,419,0 +170735453956,431,0 +170735454004,431,0 +170735454052,431,0 +170735454101,431,0 +170735454151,431,0 +170735454199,432,0 +170735454247,432,0 +170735454295,431,0 +170735454343,432,0 +170735454391,432,0 +170735454439,432,0 +170735454488,431,0 +170735454536,431,0 +170735454584,432,0 +170735454632,431,0 +170735454682,431,0 +170735454730,431,0 +170735454778,431,0 +170735454825,424,0 +170735454873,293,1 +170735454955,414,0 +170735455003,431,0 +170735455051,431,0 +170735455099,431,0 +170735455148,431,0 +170735455196,431,0 +170735455244,431,0 +170735455292,430,0 +170735455342,431,0 +170735455390,431,0 +170735455438,431,0 +170735455486,432,0 +170735455535,432,0 +170735455583,431,0 +170735455633,431,0 +170735455681,431,0 +170735455729,431,0 +170735455776,431,0 +170735455824,430,0 +170735455874,425,0 +170735455923,300,1 +170735456003,420,0 +170735456050,432,0 +170735456098,432,0 +170735456146,432,0 +170735456194,431,0 +170735456244,432,0 +170735456292,431,0 +170735456341,432,0 +170735456389,432,0 +170735456437,432,0 +170735456485,432,0 +170735456533,432,0 +170735456581,431,0 +170735456628,432,0 +170735456676,431,0 +170735456724,432,0 +170735456772,432,0 +170735456820,431,0 +170735456868,432,0 +170735456916,429,0 +170735456964,298,1 +170735457046,401,0 +170735457093,431,0 +170735457141,431,0 +170735457189,431,0 +170735457239,432,0 +170735457288,431,0 +170735457336,431,0 +170735457384,432,0 +170735457432,432,0 +170735457480,432,0 +170735457528,431,0 +170735457576,432,0 +170735457626,432,0 +170735457674,431,0 +170735457722,431,0 +170735457771,431,0 +170735457819,431,0 +170735457868,431,0 +170735457918,431,0 +170735457967,423,0 +170735458015,297,1 +170735458096,412,0 +170735458144,431,0 +170735458193,431,0 +170735458243,432,0 +170735458293,431,0 +170735458340,431,0 +170735458388,432,0 +170735458436,432,0 +170735458484,432,0 +170735458532,431,0 +170735458582,432,0 +170735458630,431,0 +170735458678,431,0 +170735458727,432,0 +170735458775,432,0 +170735458823,431,0 +170735458871,432,0 +170735458921,431,0 +170735458969,431,0 +170735459017,426,0 +170735459066,295,1 +170735459149,421,0 +170735459199,432,0 +170735459247,432,0 +170735459296,432,0 +170735459344,431,0 +170735459394,431,0 +170735459443,432,0 +170735459493,431,0 +170735459541,431,0 +170735459589,432,0 +170735459638,432,0 +170735459688,432,0 +170735459735,431,0 +170735459785,432,0 +170735459833,432,0 +170735459881,432,0 +170735459929,431,0 +170735459978,431,0 +170735460026,431,0 +170735460075,427,0 +170735460123,299,1 +170735460204,413,0 +170735460252,431,0 +170735460301,432,0 +170735460349,431,0 +170735460397,432,0 +170735460447,431,0 +170735460494,432,0 +170735460542,431,0 +170735460590,432,0 +170735460638,432,0 +170735460686,432,0 +170735460736,432,0 +170735460784,431,0 +170735460832,432,0 +170735460881,432,0 +170735460931,432,0 +170735460979,432,0 +170735461026,431,0 +170735461076,431,0 +170735461126,423,0 +170735461175,298,1 +170735461256,420,0 +170735461305,432,0 +170735461353,431,0 +170735461401,431,0 +170735461449,432,0 +170735461497,431,0 +170735461545,432,0 +170735461594,432,0 +170735461642,431,0 +170735461690,432,0 +170735461739,432,0 +170735461789,432,0 +170735461837,432,0 +170735461884,432,0 +170735461932,432,0 +170735461980,431,0 +170735462028,432,0 +170735462076,431,0 +170735462124,431,0 +170735462172,279,1 +170735462250,301,1 +170735462330,431,0 +170735462378,432,0 +170735462426,431,0 +170735462474,432,0 +170735462522,432,0 +170735462570,431,0 +170735462618,432,0 +170735462666,431,0 +170735462714,432,0 +170735462762,432,0 +170735462810,432,0 +170735462857,432,0 +170735462905,432,0 +170735462953,431,0 +170735463001,431,0 +170735463050,432,0 +170735463098,431,0 +170735463146,431,0 +170735463194,430,0 +170735463242,303,1 +170735463320,239,0 +170735463368,430,0 +170735463416,431,0 +170735463464,431,0 +170735463511,431,0 +170735463559,431,0 +170735463609,432,0 +170735463657,432,0 +170735463705,431,0 +170735463753,432,0 +170735463801,432,0 +170735463848,432,0 +170735463896,432,0 +170735463944,431,0 +170735463992,431,0 +170735464040,432,0 +170735464088,431,0 +170735464136,432,0 +170735464184,431,0 +170735464232,431,0 +170735464279,289,1 +170735464363,281,1 +170735464445,432,0 +170735464495,432,0 +170735464542,432,0 +170735464590,431,0 +170735464638,432,0 +170735464686,431,0 +170735464736,431,0 +170735464784,432,0 +170735464833,431,0 +170735464881,432,0 +170735464929,432,0 +170735464977,431,0 +170735465027,432,0 +170735465075,432,0 +170735465123,431,0 +170735465171,432,0 +170735465218,432,0 +170735465266,431,0 +170735465314,395,0 +170735465362,300,1 +170735465444,420,0 +170735465494,429,0 +170735465543,430,0 +170735465591,429,0 +170735465639,429,0 +170735465687,430,0 +170735465735,430,0 +170735465784,430,0 +170735465834,429,0 +170735465882,429,0 +170735465930,430,0 +170735465978,429,0 +170735466026,430,0 +170735466074,430,0 +170735466122,430,0 +170735466171,430,0 +170735466219,430,0 +170735466267,430,0 +170735466317,429,0 +170735466365,288,1 +170735466442,298,1 +170735466521,429,0 +170735466571,430,0 +170735466620,429,0 +170735466668,429,0 +170735466716,430,0 +170735466764,429,0 +170735466812,430,0 +170735466860,430,0 +170735466910,429,0 +170735466958,430,0 +170735467006,430,0 +170735467055,430,0 +170735467103,429,0 +170735467151,429,0 +170735467199,429,0 +170735467247,430,0 +170735467296,430,0 +170735467346,429,0 +170735467395,429,0 +170735467443,310,0 +170735467493,299,1 +170735467578,428,0 +170735467626,429,0 +170735467674,429,0 +170735467722,429,0 +170735467770,430,0 +170735467818,430,0 +170735467866,429,0 +170735467914,428,0 +170735467963,429,0 +170735468011,429,0 +170735468061,429,0 +170735468109,428,0 +170735468157,429,0 +170735468204,429,0 +170735468252,429,0 +170735468300,429,0 +170735468348,429,0 +170735468396,429,0 +170735468444,427,0 +170735468492,302,1 +170735468575,339,0 +170735468623,428,0 +170735468671,429,0 +170735468719,428,0 +170735468767,429,0 +170735468815,429,0 +170735468863,430,0 +170735468911,429,0 +170735468959,428,0 +170735469009,429,0 +170735469057,429,0 +170735469106,429,0 +170735469154,429,0 +170735469204,429,0 +170735469252,429,0 +170735469300,429,0 +170735469348,429,0 +170735469395,428,0 +170735469443,428,0 +170735469491,426,0 +170735469539,309,1 +170735469620,373,0 +170735469668,428,0 +170735469716,429,0 +170735469764,429,0 +170735469814,429,0 +170735469863,429,0 +170735469913,429,0 +170735469961,429,0 +170735470009,430,0 +170735470057,429,0 +170735470106,429,0 +170735470154,429,0 +170735470204,429,0 +170735470251,429,0 +170735470299,428,0 +170735470347,429,0 +170735470395,429,0 +170735470443,428,0 +170735470492,429,0 +170735470540,427,0 +170735470588,302,1 +170735470672,264,0 +170735470720,429,0 +170735470768,429,0 +170735470818,429,0 +170735470866,429,0 +170735470915,429,0 +170735470963,429,0 +170735471012,429,0 +170735471060,429,0 +170735471108,429,0 +170735471156,429,0 +170735471204,430,0 +170735471252,429,0 +170735471300,429,0 +170735471348,430,0 +170735471396,429,0 +170735471445,429,0 +170735471495,429,0 +170735471543,428,0 +170735471591,427,0 +170735471639,293,1 +170735471719,234,0 +170735471767,435,0 +170735471816,435,0 +170735471864,436,0 +170735471912,436,0 +170735471960,436,0 +170735472008,436,0 +170735472056,436,0 +170735472104,435,0 +170735472152,436,0 +170735472200,436,0 +170735472247,436,0 +170735472295,436,0 +170735472345,436,0 +170735472392,436,0 +170735472440,436,0 +170735472488,435,0 +170735472538,436,0 +170735472586,436,0 +170735472634,435,0 +170735472681,300,1 +170735472765,420,0 +170735472822,436,0 +170735472870,436,0 +170735472920,436,0 +170735472969,436,0 +170735473019,436,0 +170735473068,436,0 +170735473116,435,0 +170735473166,435,0 +170735473214,435,0 +170735473262,436,0 +170735473310,436,0 +170735473358,435,0 +170735473406,436,0 +170735473455,435,0 +170735473503,435,0 +170735473551,436,0 +170735473599,436,0 +170735473646,435,0 +170735473694,434,0 +170735473744,290,1 +170735473818,235,0 +170735473866,435,0 +170735473916,436,0 +170735473964,436,0 +170735474011,436,0 +170735474059,435,0 +170735474107,435,0 +170735474155,436,0 +170735474203,436,0 +170735474253,436,0 +170735474303,435,0 +170735474352,436,0 +170735474400,436,0 +170735474448,436,0 +170735474497,436,0 +170735474545,436,0 +170735474593,436,0 +170735474643,436,0 +170735474692,436,0 +170735474740,435,0 +170735474790,287,1 +170735474867,232,0 +170735474915,435,0 +170735474963,436,0 +170735475011,436,0 +170735475059,436,0 +170735475109,436,0 +170735475157,436,0 +170735475206,436,0 +170735475254,436,0 +170735475302,437,0 +170735475350,436,0 +170735475400,436,0 +170735475448,436,0 +170735475496,436,0 +170735475545,436,0 +170735475595,436,0 +170735475644,436,0 +170735475692,436,0 +170735475740,434,0 +170735475788,436,0 +170735475838,297,1 +170735475920,409,0 +170735475968,436,0 +170735476016,436,0 +170735476064,436,0 +170735476113,437,0 +170735476162,437,0 +170735476210,437,0 +170735476258,435,0 +170735476307,437,0 +170735476355,437,0 +170735476403,436,0 +170735476451,436,0 +170735476499,437,0 +170735476549,436,0 +170735476598,437,0 +170735476646,437,0 +170735476694,436,0 +170735476742,436,0 +170735476790,436,0 +170735476839,436,0 +170735476889,267,0 +170735476938,302,1 +170735477014,436,0 +170735477064,437,0 +170735477111,436,0 +170735477159,437,0 +170735477207,436,0 +170735477255,437,0 +170735477303,436,0 +170735477353,436,0 +170735477401,437,0 +170735477450,436,0 +170735477498,437,0 +170735477548,436,0 +170735477596,436,0 +170735477643,436,0 +170735477691,436,0 +170735477739,437,0 +170735477787,437,0 +170735477835,436,0 +170735477885,436,0 +170735477933,267,0 +170735477981,300,1 +170735478055,436,0 +170735478105,435,0 +170735478153,437,0 +170735478201,436,0 +170735478249,436,0 +170735478297,437,0 +170735478345,436,0 +170735478394,437,0 +170735478442,437,0 +170735478492,436,0 +170735478540,436,0 +170735478589,437,0 +170735478637,436,0 +170735478685,437,0 +170735478733,436,0 +170735478781,437,0 +170735478830,437,0 +170735478878,435,0 +170735478926,436,0 +170735478974,285,1 +170735479056,230,0 +170735479104,436,0 +170735479153,436,0 +170735479201,436,0 +170735479251,436,0 +170735479299,436,0 +170735479347,436,0 +170735479396,436,0 +170735479446,436,0 +170735479494,436,0 +170735479542,436,0 +170735479590,436,0 +170735479638,436,0 +170735479686,436,0 +170735479735,436,0 +170735479783,436,0 +170735479831,436,0 +170735479879,436,0 +170735479928,435,0 +170735479978,435,0 +170735480026,292,1 +170735480114,392,0 +170735480163,436,0 +170735480211,436,0 +170735480261,436,0 +170735480309,436,0 +170735480356,436,0 +170735480404,437,0 +170735480454,434,0 +170735480504,437,0 +170735480553,436,0 +170735480601,436,0 +170735480649,436,0 +170735480698,436,0 +170735480746,436,0 +170735480796,436,0 +170735480845,436,0 +170735480893,436,0 +170735480941,436,0 +170735480991,436,0 +170735481039,435,0 +170735481088,296,1 +170735481168,420,0 +170735481216,436,0 +170735481264,436,0 +170735481312,436,0 +170735481361,436,0 +170735481411,436,0 +170735481459,437,0 +170735481507,436,0 +170735481556,436,0 +170735481604,436,0 +170735481654,436,0 +170735481703,436,0 +170735481751,436,0 +170735481800,436,0 +170735481848,436,0 +170735481898,436,0 +170735481946,436,0 +170735481994,436,0 +170735482042,435,0 +170735482090,434,0 +170735482138,311,0 +170735482186,299,1 +170735482264,436,0 +170735482313,436,0 +170735482361,436,0 +170735482409,436,0 +170735482459,436,0 +170735482508,436,0 +170735482556,436,0 +170735482604,436,0 +170735482652,437,0 +170735482700,436,0 +170735482748,436,0 +170735482796,436,0 +170735482844,436,0 +170735482893,437,0 +170735482943,436,0 +170735482992,436,0 +170735483042,436,0 +170735483092,436,0 +170735483141,435,0 +170735483189,298,1 +170735483273,411,0 +170735483321,433,0 +170735483369,433,0 +170735483418,433,0 +170735483466,434,0 +170735483514,433,0 +170735483562,433,0 +170735483610,434,0 +170735483658,433,0 +170735483706,433,0 +170735483756,433,0 +170735483804,433,0 +170735483852,434,0 +170735483900,433,0 +170735483949,433,0 +170735483999,433,0 +170735484047,433,0 +170735484095,433,0 +170735484144,433,0 +170735484192,430,0 +170735484240,308,1 +170735484327,422,0 +170735484376,433,0 +170735484424,433,0 +170735484474,433,0 +170735484523,434,0 +170735484573,434,0 +170735484621,434,0 +170735484669,434,0 +170735484718,434,0 +170735484768,434,0 +170735484817,433,0 +170735484865,434,0 +170735484913,433,0 +170735484963,434,0 +170735485012,434,0 +170735485062,433,0 +170735485110,433,0 +170735485160,433,0 +170735485209,433,0 +170735485257,263,0 +170735485307,306,1 +170735485384,428,0 +170735485434,432,0 +170735485482,433,0 +170735485530,433,0 +170735485578,433,0 +170735485626,433,0 +170735485673,433,0 +170735485721,432,0 +170735485769,433,0 +170735485817,432,0 +170735485865,433,0 +170735485915,433,0 +170735485963,433,0 +170735486011,433,0 +170735486059,432,0 +170735486108,433,0 +170735486156,433,0 +170735486205,432,0 +170735486253,432,0 +170735486300,430,0 +170735486348,295,1 +170735486429,416,0 +170735486477,432,0 +170735486525,433,0 +170735486575,433,0 +170735486623,432,0 +170735486672,433,0 +170735486720,433,0 +170735486770,431,0 +170735486819,433,0 +170735486869,433,0 +170735486917,432,0 +170735486965,432,0 +170735487013,432,0 +170735487061,432,0 +170735487110,433,0 +170735487158,433,0 +170735487206,432,0 +170735487256,433,0 +170735487303,432,0 +170735487353,303,1 +170735487429,282,1 +170735487510,432,0 +170735487558,432,0 +170735487606,433,0 +170735487654,433,0 +170735487702,432,0 +170735487750,432,0 +170735487800,433,0 +170735487848,433,0 +170735487897,432,0 +170735487945,433,0 +170735487993,433,0 +170735488041,432,0 +170735488091,433,0 +170735488140,432,0 +170735488190,433,0 +170735488238,432,0 +170735488287,432,0 +170735488335,433,0 +170735488383,430,0 +170735488431,295,1 +170735488517,416,0 +170735488565,432,0 +170735488615,432,0 +170735488662,432,0 +170735488710,432,0 +170735488758,432,0 +170735488806,432,0 +170735488854,433,0 +170735488903,432,0 +170735488951,433,0 +170735488999,432,0 +170735489047,432,0 +170735489097,432,0 +170735489146,433,0 +170735489194,432,0 +170735489242,433,0 +170735489290,432,0 +170735489338,433,0 +170735489385,432,0 +170735489433,431,0 +170735489481,296,1 +170735489560,235,0 +170735489608,432,0 +170735489656,432,0 +170735489704,432,0 +170735489752,433,0 +170735489799,432,0 +170735489847,433,0 +170735489895,433,0 +170735489943,432,0 +170735489993,432,0 +170735490040,433,0 +170735490088,432,0 +170735490136,433,0 +170735490186,432,0 +170735490234,432,0 +170735490281,432,0 +170735490329,433,0 +170735490377,432,0 +170735490425,432,0 +170735490473,431,0 +170735490521,299,1 +170735490600,233,0 +170735490648,432,0 +170735490696,433,0 +170735490744,432,0 +170735490792,432,0 +170735490840,432,0 +170735490888,432,0 +170735490936,433,0 +170735490984,432,0 +170735491032,433,0 +170735491080,432,0 +170735491129,432,0 +170735491177,432,0 +170735491225,432,0 +170735491273,433,0 +170735491322,432,0 +170735491372,432,0 +170735491421,432,0 +170735491471,432,0 +170735491519,431,0 +170735491566,304,1 +170735491647,241,0 +170735491695,432,0 +170735491744,432,0 +170735491794,432,0 +170735491844,432,0 +170735491893,432,0 +170735491941,433,0 +170735491991,432,0 +170735492040,432,0 +170735492088,432,0 +170735492136,432,0 +170735492186,432,0 +170735492234,432,0 +170735492281,432,0 +170735492331,432,0 +170735492381,432,0 +170735492430,432,0 +170735492478,431,0 +170735492526,432,0 +170735492574,431,0 +170735492622,296,1 +170735492700,234,0 +170735492748,431,0 +170735492798,432,0 +170735492846,432,0 +170735492894,432,0 +170735492942,433,0 +170735492990,433,0 +170735493039,432,0 +170735493089,432,0 +170735493138,432,0 +170735493186,432,0 +170735493236,432,0 +170735493284,433,0 +170735493332,432,0 +170735493379,432,0 +170735493429,432,0 +170735493477,432,0 +170735493525,432,0 +170735493573,432,0 +170735493622,432,0 +170735493670,297,1 +170735493757,405,0 +170735493810,432,0 +170735493859,432,0 +170735493909,432,0 +170735493956,432,0 +170735494004,432,0 +170735494052,432,0 +170735494100,432,0 +170735494150,432,0 +170735494198,432,0 +170735494246,432,0 +170735494294,432,0 +170735494342,432,0 +170735494390,432,0 +170735494437,432,0 +170735494487,432,0 +170735494535,432,0 +170735494584,432,0 +170735494632,432,0 +170735494682,429,0 +170735494731,308,1 +170735494811,418,0 +170735494859,432,0 +170735494908,432,0 +170735494956,432,0 +170735495006,432,0 +170735495055,432,0 +170735495103,432,0 +170735495153,432,0 +170735495202,433,0 +170735495250,432,0 +170735495298,432,0 +170735495348,433,0 +170735495397,432,0 +170735495445,432,0 +170735495493,432,0 +170735495541,432,0 +170735495589,432,0 +170735495637,432,0 +170735495685,432,0 +170735495733,428,0 +170735495781,303,1 +170735495862,418,0 +170735495910,434,0 +170735495958,434,0 +170735496006,434,0 +170735496054,434,0 +170735496103,434,0 +170735496151,434,0 +170735496199,434,0 +170735496247,434,0 +170735496297,434,0 +170735496345,434,0 +170735496394,434,0 +170735496442,434,0 +170735496490,434,0 +170735496540,434,0 +170735496588,435,0 +170735496636,434,0 +170735496685,434,0 +170735496735,433,0 +170735496784,433,0 +170735496834,304,1 +170735496924,427,0 +170735496972,434,0 +170735497020,435,0 +170735497068,434,0 +170735497116,434,0 +170735497164,434,0 +170735497212,434,0 +170735497261,434,0 +170735497309,434,0 +170735497357,434,0 +170735497406,434,0 +170735497456,434,0 +170735497504,434,0 +170735497552,434,0 +170735497600,434,0 +170735497648,434,0 +170735497697,434,0 +170735497747,434,0 +170735497795,433,0 +170735497843,282,1 +170735497925,274,1 +170735498006,434,0 +170735498054,434,0 +170735498102,434,0 +170735498151,434,0 +170735498199,435,0 +170735498249,434,0 +170735498297,434,0 +170735498345,434,0 +170735498394,435,0 +170735498444,434,0 +170735498493,434,0 +170735498543,434,0 +170735498591,434,0 +170735498639,434,0 +170735498688,434,0 +170735498736,434,0 +170735498786,434,0 +170735498835,434,0 +170735498883,414,0 +170735498931,300,1 +170735499019,428,0 +170735499067,434,0 +170735499115,434,0 +170735499163,434,0 +170735499211,434,0 +170735499259,434,0 +170735499308,434,0 +170735499356,434,0 +170735499404,434,0 +170735499452,434,0 +170735499500,434,0 +170735499548,434,0 +170735499598,434,0 +170735499646,434,0 +170735499694,435,0 +170735499741,434,0 +170735499791,434,0 +170735499841,434,0 +170735499890,434,0 +170735499938,343,0 +170735499988,294,1 +170735500069,432,0 +170735500117,436,0 +170735500165,435,0 +170735500213,436,0 +170735500261,436,0 +170735500309,436,0 +170735500358,436,0 +170735500408,436,0 +170735500456,436,0 +170735500504,436,0 +170735500552,435,0 +170735500601,436,0 +170735500649,436,0 +170735500697,436,0 +170735500745,435,0 +170735500793,436,0 +170735500841,435,0 +170735500891,435,0 +170735500940,435,0 +170735500988,280,1 +170735501072,282,1 +170735501152,435,0 +170735501200,436,0 +170735501250,436,0 +170735501298,436,0 +170735501346,435,0 +170735501393,436,0 +170735501441,435,0 +170735501489,436,0 +170735501539,436,0 +170735501588,435,0 +170735501636,435,0 +170735501686,436,0 +170735501735,436,0 +170735501783,436,0 +170735501831,435,0 +170735501879,436,0 +170735501927,435,0 +170735501975,435,0 +170735502025,427,0 +170735502073,300,1 +170735502153,425,0 +170735502203,435,0 +170735502252,436,0 +170735502300,435,0 +170735502348,436,0 +170735502397,436,0 +170735502445,436,0 +170735502493,436,0 +170735502541,435,0 +170735502589,436,0 +170735502639,436,0 +170735502686,436,0 +170735502734,436,0 +170735502784,435,0 +170735502833,435,0 +170735502881,436,0 +170735502929,435,0 +170735502977,436,0 +170735503027,435,0 +170735503076,423,0 +170735503126,302,1 +170735503205,424,0 +170735503252,435,0 +170735503300,435,0 +170735503348,436,0 +170735503396,436,0 +170735503444,435,0 +170735503492,435,0 +170735503540,435,0 +170735503589,436,0 +170735503637,435,0 +170735503685,436,0 +170735503733,435,0 +170735503782,436,0 +170735503832,436,0 +170735503879,436,0 +170735503927,436,0 +170735503975,436,0 +170735504023,436,0 +170735504071,435,0 +170735504119,433,0 +170735504167,299,1 +170735504246,417,0 +170735504296,435,0 +170735504344,435,0 +170735504393,436,0 +170735504441,436,0 +170735504489,436,0 +170735504538,436,0 +170735504588,436,0 +170735504637,436,0 +170735504685,436,0 +170735504733,436,0 +170735504781,436,0 +170735504831,436,0 +170735504880,436,0 +170735504928,436,0 +170735504978,435,0 +170735505026,436,0 +170735505074,436,0 +170735505123,436,0 +170735505173,433,0 +170735505222,308,1 +170735505309,429,0 +170735505358,435,0 +170735505406,435,0 +170735505454,436,0 +170735505502,436,0 +170735505550,435,0 +170735505597,436,0 +170735505645,436,0 +170735505693,435,0 +170735505741,436,0 +170735505789,435,0 +170735505837,436,0 +170735505885,435,0 +170735505933,436,0 +170735505980,435,0 +170735506028,435,0 +170735506076,436,0 +170735506126,435,0 +170735506173,435,0 +170735506221,394,0 +170735506269,299,1 +170735506349,422,0 +170735506397,435,0 +170735506445,435,0 +170735506493,435,0 +170735506541,436,0 +170735506590,436,0 +170735506639,435,0 +170735506687,435,0 +170735506735,436,0 +170735506783,435,0 +170735506831,436,0 +170735506879,435,0 +170735506927,436,0 +170735506975,436,0 +170735507023,436,0 +170735507071,436,0 +170735507119,436,0 +170735507166,435,0 +170735507214,435,0 +170735507264,435,0 +170735507314,252,0 +170735507363,244,0 +170735507411,431,0 +170735507461,433,0 +170735507509,434,0 +170735507557,433,0 +170735507606,434,0 +170735507654,434,0 +170735507703,433,0 +170735507751,434,0 +170735507801,433,0 +170735507849,434,0 +170735507898,434,0 +170735507948,434,0 +170735507996,434,0 +170735508044,433,0 +170735508092,434,0 +170735508141,434,0 +170735508191,433,0 +170735508239,434,0 +170735508287,432,0 +170735508335,297,1 +170735508415,267,0 +170735508463,430,0 +170735508511,433,0 +170735508559,433,0 +170735508607,433,0 +170735508655,434,0 +170735508703,433,0 +170735508751,434,0 +170735508799,434,0 +170735508846,434,0 +170735508894,434,0 +170735508944,434,0 +170735508994,434,0 +170735509041,434,0 +170735509089,434,0 +170735509137,433,0 +170735509185,434,0 +170735509233,434,0 +170735509281,433,0 +170735509329,433,0 +170735509377,286,1 +170735509456,299,1 +170735509546,433,0 +170735509593,433,0 +170735509641,433,0 +170735509689,434,0 +170735509737,433,0 +170735509785,434,0 +170735509833,433,0 +170735509880,433,0 +170735509928,434,0 +170735509976,433,0 +170735510024,433,0 +170735510072,434,0 +170735510120,434,0 +170735510168,434,0 +170735510216,434,0 +170735510264,433,0 +170735510312,434,0 +170735510360,433,0 +170735510408,429,0 +170735510457,303,1 +170735510538,421,0 +170735510586,432,0 +170735510634,434,0 +170735510682,433,0 +170735510730,434,0 +170735510780,433,0 +170735510828,434,0 +170735510877,434,0 +170735510925,433,0 +170735510973,433,0 +170735511021,433,0 +170735511069,434,0 +170735511117,433,0 +170735511166,433,0 +170735511215,434,0 +170735511263,434,0 +170735511311,434,0 +170735511359,434,0 +170735511407,433,0 +170735511455,432,0 +170735511503,300,1 +170735511596,419,0 +170735511644,433,0 +170735511692,433,0 +170735511740,434,0 +170735511788,432,0 +170735511838,433,0 +170735511887,434,0 +170735511935,434,0 +170735511985,433,0 +170735512033,434,0 +170735512081,433,0 +170735512129,433,0 +170735512176,434,0 +170735512226,434,0 +170735512274,434,0 +170735512322,433,0 +170735512371,433,0 +170735512419,433,0 +170735512467,433,0 +170735512515,430,0 +170735512563,304,1 +170735512648,419,0 +170735512696,432,0 +170735512744,432,0 +170735512793,433,0 +170735512841,432,0 +170735512890,433,0 +170735512938,432,0 +170735512986,432,0 +170735513034,433,0 +170735513082,432,0 +170735513130,433,0 +170735513178,432,0 +170735513226,433,0 +170735513273,432,0 +170735513321,433,0 +170735513369,432,0 +170735513417,433,0 +170735513465,432,0 +170735513513,433,0 +170735513561,273,1 +170735513646,303,1 +170735513726,432,0 +170735513776,432,0 +170735513824,433,0 +170735513871,432,0 +170735513919,433,0 +170735513969,433,0 +170735514017,432,0 +170735514066,432,0 +170735514114,432,0 +170735514162,433,0 +170735514210,432,0 +170735514260,432,0 +170735514309,433,0 +170735514359,432,0 +170735514408,433,0 +170735514458,433,0 +170735514506,433,0 +170735514554,433,0 +170735514603,429,0 +170735514651,304,1 +170735514732,418,0 +170735514781,432,0 +170735514831,432,0 +170735514879,432,0 +170735514927,433,0 +170735514975,432,0 +170735515023,434,0 +170735515071,433,0 +170735515119,433,0 +170735515167,433,0 +170735515214,432,0 +170735515264,433,0 +170735515313,433,0 +170735515361,433,0 +170735515409,432,0 +170735515459,432,0 +170735515507,432,0 +170735515556,433,0 +170735515604,433,0 +170735515652,428,0 +170735515700,302,1 +170735515782,407,0 +170735515830,432,0 +170735515880,433,0 +170735515929,433,0 +170735515977,433,0 +170735516027,433,0 +170735516076,432,0 +170735516124,433,0 +170735516172,433,0 +170735516220,433,0 +170735516270,433,0 +170735516318,432,0 +170735516366,433,0 +170735516414,433,0 +170735516461,432,0 +170735516511,432,0 +170735516560,433,0 +170735516608,431,0 +170735516658,433,0 +170735516706,293,1 +170735516790,293,1 +170735516870,432,0 +170735516920,433,0 +170735516968,432,0 +170735517017,432,0 +170735517067,432,0 +170735517116,432,0 +170735517164,433,0 +170735517212,433,0 +170735517260,432,0 +170735517310,432,0 +170735517358,432,0 +170735517406,432,0 +170735517454,433,0 +170735517502,433,0 +170735517549,433,0 +170735517597,432,0 +170735517645,433,0 +170735517693,432,0 +170735517743,429,0 +170735517791,302,1 +170735517874,413,0 +170735517924,432,0 +170735517973,432,0 +170735518021,433,0 +170735518069,432,0 +170735518117,433,0 +170735518165,432,0 +170735518215,433,0 +170735518263,433,0 +170735518312,433,0 +170735518360,432,0 +170735518408,433,0 +170735518456,432,0 +170735518506,433,0 +170735518555,432,0 +170735518603,433,0 +170735518653,432,0 +170735518701,433,0 +170735518749,433,0 +170735518797,431,0 +170735518845,299,1 +170735518923,402,0 +170735518971,433,0 +170735519021,433,0 +170735519069,433,0 +170735519117,433,0 +170735519166,432,0 +170735519214,432,0 +170735519262,432,0 +170735519310,432,0 +170735519360,432,0 +170735519408,433,0 +170735519455,433,0 +170735519503,432,0 +170735519551,433,0 +170735519599,432,0 +170735519649,432,0 +170735519697,433,0 +170735519746,432,0 +170735519794,432,0 +170735519844,430,0 +170735519892,306,1 +170735519973,413,0 +170735520023,433,0 +170735520072,432,0 +170735520120,433,0 +170735520168,432,0 +170735520217,433,0 +170735520265,433,0 +170735520313,433,0 +170735520361,432,0 +170735520411,433,0 +170735520459,432,0 +170735520508,432,0 +170735520556,432,0 +170735520604,433,0 +170735520652,433,0 +170735520700,432,0 +170735520749,433,0 +170735520799,433,0 +170735520847,432,0 +170735520895,277,1 +170735520974,298,1 +170735521051,433,0 +170735521099,433,0 +170735521147,433,0 +170735521195,433,0 +170735521243,432,0 +170735521292,432,0 +170735521340,432,0 +170735521390,432,0 +170735521440,433,0 +170735521488,433,0 +170735521535,433,0 +170735521583,432,0 +170735521633,433,0 +170735521681,432,0 +170735521730,432,0 +170735521778,433,0 +170735521826,432,0 +170735521876,432,0 +170735521925,432,0 +170735521975,311,0 +170735522024,304,1 +170735522108,433,0 +170735522156,433,0 +170735522206,432,0 +170735522255,432,0 +170735522303,432,0 +170735522351,433,0 +170735522399,434,0 +170735522447,432,0 +170735522495,433,0 +170735522543,432,0 +170735522592,432,0 +170735522642,433,0 +170735522690,432,0 +170735522739,433,0 +170735522787,433,0 +170735522837,433,0 +170735522886,433,0 +170735522934,432,0 +170735522984,430,0 +170735523032,305,1 +170735523116,415,0 +170735523164,432,0 +170735523214,433,0 +170735523263,433,0 +170735523311,433,0 +170735523361,433,0 +170735523409,432,0 +170735523458,433,0 +170735523508,433,0 +170735523557,433,0 +170735523607,433,0 +170735523656,433,0 +170735523706,433,0 +170735523755,432,0 +170735523805,433,0 +170735523853,432,0 +170735523901,432,0 +170735523950,433,0 +170735523998,432,0 +170735524048,308,1 +170735524127,259,0 +170735524175,430,0 +170735524223,432,0 +170735524271,432,0 +170735524321,433,0 +170735524369,434,0 +170735524416,433,0 +170735524464,433,0 +170735524512,433,0 +170735524560,432,0 +170735524608,433,0 +170735524658,432,0 +170735524707,432,0 +170735524755,433,0 +170735524803,433,0 +170735524851,433,0 +170735524899,434,0 +170735524947,433,0 +170735524995,433,0 +170735525043,432,0 +170735525091,284,1 +170735525172,283,1 +170735525252,433,0 +170735525300,432,0 +170735525348,433,0 +170735525396,433,0 +170735525446,433,0 +170735525494,433,0 +170735525542,432,0 +170735525591,435,0 +170735525641,433,0 +170735525689,434,0 +170735525737,432,0 +170735525785,432,0 +170735525833,433,0 +170735525882,432,0 +170735525930,434,0 +170735525980,433,0 +170735526027,433,0 +170735526075,433,0 +170735526123,432,0 +170735526173,296,1 +170735526255,357,0 +170735526303,432,0 +170735526351,433,0 +170735526399,433,0 +170735526447,434,0 +170735526495,433,0 +170735526544,433,0 +170735526594,434,0 +170735526643,432,0 +170735526693,434,0 +170735526741,432,0 +170735526790,432,0 +170735526838,434,0 +170735526886,432,0 +170735526934,433,0 +170735526982,431,0 +170735527030,433,0 +170735527078,432,0 +170735527128,434,0 +170735527175,431,0 +170735527223,304,1 +170735527308,411,0 +170735527356,432,0 +170735527404,433,0 +170735527452,433,0 +170735527500,433,0 +170735527547,432,0 +170735527597,433,0 +170735527645,433,0 +170735527694,433,0 +170735527744,433,0 +170735527793,432,0 +170735527841,432,0 +170735527889,432,0 +170735527937,433,0 +170735527987,433,0 +170735528036,433,0 +170735528084,434,0 +170735528134,431,0 +170735528183,432,0 +170735528233,273,1 +170735528315,301,1 +170735528390,433,0 +170735528439,432,0 +170735528489,432,0 +170735528537,433,0 +170735528586,431,0 +170735528634,433,0 +170735528682,431,0 +170735528730,433,0 +170735528778,433,0 +170735528826,433,0 +170735528874,432,0 +170735528922,431,0 +170735528970,432,0 +170735529018,431,0 +170735529067,434,0 +170735529115,432,0 +170735529165,432,0 +170735529213,432,0 +170735529261,432,0 +170735529308,304,1 +170735529393,387,0 +170735529442,430,0 +170735529490,433,0 +170735529540,433,0 +170735529589,432,0 +170735529639,433,0 +170735529686,432,0 +170735529736,432,0 +170735529784,432,0 +170735529832,432,0 +170735529882,432,0 +170735529931,434,0 +170735529979,432,0 +170735530029,430,0 +170735530078,432,0 +170735530126,432,0 +170735530174,431,0 +170735530222,432,0 +170735530271,432,0 +170735530319,429,0 +170735530369,298,1 +170735530448,409,0 +170735530498,433,0 +170735530546,432,0 +170735530594,432,0 +170735530643,432,0 +170735530691,432,0 +170735530741,433,0 +170735530789,432,0 +170735530838,432,0 +170735530888,430,0 +170735530936,433,0 +170735530984,432,0 +170735531033,433,0 +170735531083,433,0 +170735531132,433,0 +170735531182,432,0 +170735531230,432,0 +170735531278,432,0 +170735531325,432,0 +170735531373,272,1 +170735531454,301,1 +170735531532,432,0 +170735531581,432,0 +170735531629,432,0 +170735531677,433,0 +170735531725,433,0 +170735531773,433,0 +170735531822,430,0 +170735531870,432,0 +170735531920,431,0 +170735531968,434,0 +170735532016,432,0 +170735532064,433,0 +170735532112,433,0 +170735532160,432,0 +170735532209,433,0 +170735532257,432,0 +170735532307,432,0 +170735532355,431,0 +170735532404,431,0 +170735532454,296,1 +170735532538,399,0 +170735532586,432,0 +170735532634,431,0 +170735532682,433,0 +170735532730,433,0 +170735532778,434,0 +170735532826,432,0 +170735532874,432,0 +170735532922,432,0 +170735532970,432,0 +170735533018,433,0 +170735533067,433,0 +170735533115,433,0 +170735533164,433,0 +170735533212,432,0 +170735533260,432,0 +170735533308,432,0 +170735533356,433,0 +170735533404,433,0 +170735533452,432,0 +170735533500,298,1 +170735533580,235,0 +170735533628,432,0 +170735533677,432,0 +170735533725,433,0 +170735533773,433,0 +170735533821,433,0 +170735533869,433,0 +170735533919,433,0 +170735533968,431,0 +170735534016,433,0 +170735534064,431,0 +170735534114,433,0 +170735534162,433,0 +170735534211,431,0 +170735534259,433,0 +170735534308,432,0 +170735534356,432,0 +170735534404,433,0 +170735534452,432,0 +170735534502,432,0 +170735534552,309,1 +170735534633,366,0 +170735534681,433,0 +170735534729,432,0 +170735534779,432,0 +170735534827,433,0 +170735534876,432,0 +170735534926,432,0 +170735534975,433,0 +170735535025,432,0 +170735535073,431,0 +170735535121,432,0 +170735535170,431,0 +170735535220,433,0 +170735535269,433,0 +170735535319,432,0 +170735535367,432,0 +170735535415,432,0 +170735535463,432,0 +170735535511,433,0 +170735535559,432,0 +170735535607,432,0 +170735535656,432,0 +170735535706,432,0 +170735535755,432,0 +170735535805,432,0 +170735535853,432,0 +170735535901,433,0 +170735535949,431,0 +170735535997,432,0 +170735536046,433,0 +170735536094,356,0 +170735536144,303,1 +170735536225,417,0 +170735536274,432,0 +170735536324,433,0 +170735536372,431,0 +170735536420,433,0 +170735536469,432,0 +170735536519,431,0 +170735536567,433,0 +170735536615,430,0 +170735536664,433,0 +170735536714,433,0 +170735536763,432,0 +170735536813,433,0 +170735536862,433,0 +170735536910,432,0 +170735536958,432,0 +170735537008,432,0 +170735537056,432,0 +170735537104,431,0 +170735537152,293,1 +170735537233,286,1 +170735537313,432,0 +170735537361,431,0 +170735537408,433,0 +170735537456,433,0 +170735537506,433,0 +170735537555,431,0 +170735537603,434,0 +170735537651,431,0 +170735537701,433,0 +170735537749,432,0 +170735537798,431,0 +170735537846,433,0 +170735537896,431,0 +170735537944,432,0 +170735537992,433,0 +170735538039,432,0 +170735538087,433,0 +170735538135,432,0 +170735538183,429,0 +170735538231,301,1 +170735538311,413,0 +170735538359,432,0 +170735538409,433,0 +170735538457,433,0 +170735538504,433,0 +170735538552,432,0 +170735538600,432,0 +170735538648,434,0 +170735538696,433,0 +170735538746,433,0 +170735538795,433,0 +170735538845,433,0 +170735538893,433,0 +170735538941,432,0 +170735538989,432,0 +170735539037,432,0 +170735539085,432,0 +170735539133,432,0 +170735539182,432,0 +170735539230,427,0 +170735539278,307,1 +170735539361,418,0 +170735539410,432,0 +170735539460,432,0 +170735539508,432,0 +170735539557,430,0 +170735539605,433,0 +170735539653,433,0 +170735539701,432,0 +170735539749,433,0 +170735539799,432,0 +170735539848,432,0 +170735539898,433,0 +170735539946,433,0 +170735539994,433,0 +170735540043,433,0 +170735540093,433,0 +170735540142,432,0 +170735540192,433,0 +170735540240,433,0 +170735540289,428,0 +170735540337,302,1 +170735540423,416,0 +170735540472,430,0 +170735540520,430,0 +170735540570,430,0 +170735540618,431,0 +170735540666,431,0 +170735540715,430,0 +170735540763,430,0 +170735540811,429,0 +170735540861,431,0 +170735540909,430,0 +170735540957,431,0 +170735541006,430,0 +170735541056,430,0 +170735541105,431,0 +170735541153,430,0 +170735541203,430,0 +170735541251,430,0 +170735541300,429,0 +170735541348,262,0 +170735541396,301,1 +170735541477,422,0 +170735541525,429,0 +170735541573,429,0 +170735541622,429,0 +170735541672,429,0 +170735541721,429,0 +170735541769,427,0 +170735541819,429,0 +170735541867,429,0 +170735541915,428,0 +170735541964,430,0 +170735542014,428,0 +170735542062,429,0 +170735542110,429,0 +170735542157,429,0 +170735542205,429,0 +170735542255,430,0 +170735542303,430,0 +170735542351,428,0 +170735542399,303,1 +170735542480,255,0 +170735542529,427,0 +170735542577,429,0 +170735542625,428,0 +170735542673,430,0 +170735542721,431,0 +170735542771,428,0 +170735542818,430,0 +170735542866,429,0 +170735542914,429,0 +170735542964,430,0 +170735543013,430,0 +170735543061,430,0 +170735543111,430,0 +170735543159,429,0 +170735543207,429,0 +170735543256,429,0 +170735543306,431,0 +170735543355,429,0 +170735543405,426,0 +170735543455,306,1 +170735543537,235,0 +170735543586,428,0 +170735543634,430,0 +170735543682,429,0 +170735543730,429,0 +170735543780,429,0 +170735543829,429,0 +170735543879,429,0 +170735543927,429,0 +170735543976,428,0 +170735544026,430,0 +170735544074,430,0 +170735544122,430,0 +170735544170,429,0 +170735544218,429,0 +170735544266,429,0 +170735544315,429,0 +170735544365,429,0 +170735544414,428,0 +170735544464,426,0 +170735544513,311,0 +170735544561,310,0 +170735544611,412,0 +170735544660,430,0 +170735544710,429,0 +170735544759,429,0 +170735544809,430,0 +170735544857,429,0 +170735544906,428,0 +170735544956,429,0 +170735545005,430,0 +170735545053,430,0 +170735545101,430,0 +170735545151,428,0 +170735545200,429,0 +170735545250,429,0 +170735545298,429,0 +170735545346,429,0 +170735545395,428,0 +170735545443,430,0 +170735545493,427,0 +170735545541,308,1 +170735545626,247,0 +170735545674,428,0 +170735545723,429,0 +170735545773,429,0 +170735545822,429,0 +170735545870,429,0 +170735545918,429,0 +170735545966,429,0 +170735546016,429,0 +170735546064,429,0 +170735546113,428,0 +170735546163,429,0 +170735546211,429,0 +170735546260,430,0 +170735546308,430,0 +170735546356,429,0 +170735546404,429,0 +170735546453,429,0 +170735546503,429,0 +170735546553,426,0 +170735546602,304,1 +170735546680,241,0 +170735546728,428,0 +170735546777,429,0 +170735546827,430,0 +170735546875,429,0 +170735546923,430,0 +170735546971,429,0 +170735547019,430,0 +170735547067,429,0 +170735547115,430,0 +170735547162,429,0 +170735547210,430,0 +170735547260,429,0 +170735547308,430,0 +170735547356,429,0 +170735547404,430,0 +170735547452,430,0 +170735547500,430,0 +170735547549,429,0 +170735547597,428,0 +170735547645,302,1 +170735547725,240,0 +170735547774,429,0 +170735547824,431,0 +170735547872,429,0 +170735547921,429,0 +170735547971,430,0 +170735548018,430,0 +170735548066,430,0 +170735548116,429,0 +170735548166,430,0 +170735548213,430,0 +170735548263,429,0 +170735548311,430,0 +170735548360,430,0 +170735548408,430,0 +170735548458,431,0 +170735548506,430,0 +170735548554,430,0 +170735548603,428,0 +170735548653,428,0 +170735548701,305,1 +170735548780,235,0 +170735548828,430,0 +170735548878,430,0 +170735548927,431,0 +170735548977,430,0 +170735549024,430,0 +170735549072,431,0 +170735549120,429,0 +170735549170,431,0 +170735549218,431,0 +170735549267,430,0 +170735549315,430,0 +170735549363,431,0 +170735549411,431,0 +170735549459,431,0 +170735549507,431,0 +170735549555,430,0 +170735549605,430,0 +170735549653,430,0 +170735549701,429,0 +170735549750,302,1 +170735549833,404,0 +170735549890,431,0 +170735549938,431,0 +170735549988,431,0 +170735550036,432,0 +170735550084,432,0 +170735550132,431,0 +170735550180,432,0 +170735550229,431,0 +170735550277,432,0 +170735550325,431,0 +170735550373,432,0 +170735550423,432,0 +170735550471,432,0 +170735550520,431,0 +170735550568,432,0 +170735550616,433,0 +170735550664,431,0 +170735550712,433,0 +170735550761,427,0 +170735550811,304,1 +170735550898,412,0 +170735550946,431,0 +170735550996,433,0 +170735551044,432,0 +170735551092,431,0 +170735551139,431,0 +170735551187,432,0 +170735551237,433,0 +170735551285,431,0 +170735551333,433,0 +170735551382,432,0 +170735551432,431,0 +170735551480,432,0 +170735551528,431,0 +170735551575,432,0 +170735551625,432,0 +170735551673,431,0 +170735551722,432,0 +170735551772,431,0 +170735551820,352,0 +170735551868,291,1 +170735552450,432,0 +170735552498,432,0 +170735552546,431,0 +170735552595,432,0 +170735552645,432,0 +170735552694,432,0 +170735552742,432,0 +170735552792,432,0 +170735552841,431,0 +170735552891,292,1 +170735552975,317,0 +170735553022,431,0 +170735553072,432,0 +170735553122,432,0 +170735553169,432,0 +170735553219,431,0 +170735553267,432,0 +170735553315,432,0 +170735553365,433,0 +170735553412,432,0 +170735553460,432,0 +170735553508,431,0 +170735553556,431,0 +170735553604,432,0 +170735553654,432,0 +170735553703,432,0 +170735553751,433,0 +170735553799,433,0 +170735553847,432,0 +170735553897,430,0 +170735553946,309,1 +170735554024,398,0 +170735554077,430,0 +170735554126,431,0 +170735554176,432,0 +170735554224,432,0 +170735554272,431,0 +170735554321,432,0 +170735554371,431,0 +170735554420,431,0 +170735554468,431,0 +170735554518,432,0 +170735554566,431,0 +170735554614,432,0 +170735554662,431,0 +170735554709,432,0 +170735554759,431,0 +170735554807,431,0 +170735554855,431,0 +170735554904,431,0 +170735554952,428,0 +170735555000,301,1 +170735555085,416,0 +170735555133,432,0 +170735555183,431,0 +170735555232,432,0 +170735555280,432,0 +170735555328,432,0 +170735555378,432,0 +170735555426,432,0 +170735555475,431,0 +170735555523,433,0 +170735555573,432,0 +170735555620,433,0 +170735555668,432,0 +170735555716,432,0 +170735555764,432,0 +170735555814,433,0 +170735555863,432,0 +170735555911,433,0 +170735555959,433,0 +170735556007,429,0 +170735556055,306,1 +170735556142,410,0 +170735556192,433,0 +170735556240,432,0 +170735556289,432,0 +170735556339,432,0 +170735556387,432,0 +170735556436,432,0 +170735556484,433,0 +170735556534,432,0 +170735556582,432,0 +170735556630,432,0 +170735556679,432,0 +170735556727,432,0 +170735556777,432,0 +170735556825,432,0 +170735556872,432,0 +170735556920,432,0 +170735556970,432,0 +170735557019,432,0 +170735557067,289,1 +170735557158,244,0 +170735557208,431,0 +170735557256,432,0 +170735557303,432,0 +170735557351,433,0 +170735557399,432,0 +170735557447,432,0 +170735557495,432,0 +170735557543,433,0 +170735557591,433,0 +170735557639,433,0 +170735557687,433,0 +170735557736,432,0 +170735557784,432,0 +170735557833,432,0 +170735557881,432,0 +170735557929,433,0 +170735557977,433,0 +170735558025,433,0 +170735558073,430,0 +170735558121,296,1 +170735558201,267,0 +170735558249,429,0 +170735558297,432,0 +170735558345,433,0 +170735558393,433,0 +170735558442,431,0 +170735558490,430,0 +170735558538,433,0 +170735558586,431,0 +170735558634,433,0 +170735558682,431,0 +170735558732,434,0 +170735558781,432,0 +170735558831,432,0 +170735558879,433,0 +170735558928,432,0 +170735558978,432,0 +170735559026,432,0 +170735559075,432,0 +170735559123,432,0 +170735559171,293,1 +170735559256,266,0 +170735559306,429,0 +170735559355,432,0 +170735559403,433,0 +170735559451,432,0 +170735559501,433,0 +170735559550,432,0 +170735559598,432,0 +170735559648,433,0 +170735559696,433,0 +170735559744,434,0 +170735559793,432,0 +170735559841,433,0 +170735559889,432,0 +170735559939,432,0 +170735559987,433,0 +170735560035,433,0 +170735560084,432,0 +170735560132,432,0 +170735560182,431,0 +170735560230,289,1 +170735560310,241,0 +170735560359,431,0 +170735560407,432,0 +170735560456,431,0 +170735560504,431,0 +170735560554,431,0 +170735560602,432,0 +170735560650,432,0 +170735560699,431,0 +170735560749,432,0 +170735560797,432,0 +170735560845,432,0 +170735560893,432,0 +170735560941,432,0 +170735560989,431,0 +170735561037,432,0 +170735561086,431,0 +170735561136,432,0 +170735561184,431,0 +170735561232,430,0 +170735561281,301,1 +170735561366,397,0 +170735561415,431,0 +170735561463,432,0 +170735561513,432,0 +170735561561,432,0 +170735561609,431,0 +170735561657,432,0 +170735561705,432,0 +170735561753,431,0 +170735561802,432,0 +170735561850,432,0 +170735561898,432,0 +170735561946,432,0 +170735561994,433,0 +170735562042,432,0 +170735562090,432,0 +170735562139,432,0 +170735562187,432,0 +170735562235,432,0 +170735562283,431,0 +170735562332,309,1 +170735562424,402,0 +170735562471,431,0 +170735562519,430,0 +170735562567,431,0 +170735562617,431,0 +170735562665,430,0 +170735562714,431,0 +170735562763,431,0 +170735562811,431,0 +170735562859,431,0 +170735562907,430,0 +170735562955,431,0 +170735563003,431,0 +170735563051,431,0 +170735563099,430,0 +170735563147,430,0 +170735563194,431,0 +170735563244,431,0 +170735563293,430,0 +170735563341,428,0 +170735563391,302,1 +170735563472,378,0 +170735563522,430,0 +170735563571,430,0 +170735563621,430,0 +170735563671,430,0 +170735563720,430,0 +170735563770,430,0 +170735563819,431,0 +170735563869,430,0 +170735563917,430,0 +170735563966,431,0 +170735564014,430,0 +170735564062,430,0 +170735564110,431,0 +170735564158,431,0 +170735564206,430,0 +170735564254,430,0 +170735564302,430,0 +170735564350,429,0 +170735564398,274,1 +170735564478,296,1 +170735564561,429,0 +170735564609,430,0 +170735564658,430,0 +170735564706,430,0 +170735564754,430,0 +170735564802,430,0 +170735564850,430,0 +170735564898,430,0 +170735564946,431,0 +170735564996,431,0 +170735565045,430,0 +170735565093,431,0 +170735565143,431,0 +170735565190,430,0 +170735565238,430,0 +170735565286,431,0 +170735565334,431,0 +170735565382,430,0 +170735565430,429,0 +170735565479,299,1 +170735565559,232,0 +170735565607,430,0 +170735565656,430,0 +170735565706,430,0 +170735565755,429,0 +170735565803,431,0 +170735565851,430,0 +170735565899,431,0 +170735565949,430,0 +170735565998,430,0 +170735566046,430,0 +170735566094,430,0 +170735566142,431,0 +170735566190,430,0 +170735566239,430,0 +170735566287,431,0 +170735566337,430,0 +170735566387,430,0 +170735566436,430,0 +170735566484,428,0 +170735566532,291,1 +170735566611,246,0 +170735566658,429,0 +170735566706,429,0 +170735566754,428,0 +170735566804,429,0 +170735566852,429,0 +170735566899,429,0 +170735566947,429,0 +170735566995,429,0 +170735567043,428,0 +170735567091,429,0 +170735567139,429,0 +170735567187,429,0 +170735567236,429,0 +170735567284,429,0 +170735567332,429,0 +170735567380,430,0 +170735567430,429,0 +170735567478,429,0 +170735567526,426,0 +170735567574,280,1 +170735567657,403,0 +170735567710,432,0 +170735567758,433,0 +170735567805,433,0 +170735567853,434,0 +170735567901,433,0 +170735567949,434,0 +170735567997,433,0 +170735568045,434,0 +170735568093,433,0 +170735568141,434,0 +170735568189,433,0 +170735568239,434,0 +170735568287,433,0 +170735568334,433,0 +170735568382,433,0 +170735568432,433,0 +170735568481,434,0 +170735568531,433,0 +170735568580,430,0 +170735568628,296,1 +170735568708,414,0 +170735568756,433,0 +170735568804,434,0 +170735568852,433,0 +170735568900,433,0 +170735568948,434,0 +170735568996,434,0 +170735569045,433,0 +170735569095,433,0 +170735569143,433,0 +170735569191,433,0 +170735569240,433,0 +170735569290,433,0 +170735569338,433,0 +170735569386,434,0 +170735569434,433,0 +170735569483,433,0 +170735569531,434,0 +170735569579,433,0 +170735569627,432,0 +170735569675,283,1 +170735569756,375,0 +170735569804,433,0 +170735569852,433,0 +170735569900,433,0 +170735569948,433,0 +170735569998,433,0 +170735570047,433,0 +170735570095,434,0 +170735570143,433,0 +170735570191,432,0 +170735570241,434,0 +170735570289,433,0 +170735570338,433,0 +170735570386,433,0 +170735570434,432,0 +170735570482,433,0 +170735570531,433,0 +170735570579,433,0 +170735570627,434,0 +170735570675,431,0 +170735570723,294,1 +170735570808,408,0 +170735570856,433,0 +170735570906,433,0 +170735570955,432,0 +170735571003,433,0 +170735571051,432,0 +170735571101,433,0 +170735571149,432,0 +170735571197,433,0 +170735571244,432,0 +170735571294,432,0 +170735571342,434,0 +170735571390,433,0 +170735571438,433,0 +170735571486,433,0 +170735571534,432,0 +170735571583,433,0 +170735571631,432,0 +170735571679,434,0 +170735571729,432,0 +170735571777,298,1 +170735571861,391,0 +170735571909,432,0 +170735571958,432,0 +170735572006,433,0 +170735572054,433,0 +170735572102,432,0 +170735572151,433,0 +170735572199,433,0 +170735572247,433,0 +170735572295,433,0 +170735572345,432,0 +170735572394,433,0 +170735572442,433,0 +170735572492,432,0 +170735572540,433,0 +170735572588,432,0 +170735572636,433,0 +170735572685,432,0 +170735572733,432,0 +170735572783,412,0 +170735572831,285,1 +170735572914,416,0 +170735572963,432,0 +170735573011,432,0 +170735573061,433,0 +170735573110,432,0 +170735573160,432,0 +170735573208,432,0 +170735573256,432,0 +170735573304,432,0 +170735573351,433,0 +170735573399,432,0 +170735573447,432,0 +170735573495,432,0 +170735573543,432,0 +170735573591,433,0 +170735573639,432,0 +170735573687,432,0 +170735573736,433,0 +170735573784,433,0 +170735573833,374,0 +170735573881,285,1 +170735573966,420,0 +170735574014,432,0 +170735574062,432,0 +170735574110,432,0 +170735574159,432,0 +170735574209,432,0 +170735574258,433,0 +170735574306,432,0 +170735574354,433,0 +170735574402,432,0 +170735574450,434,0 +170735574499,432,0 +170735574547,432,0 +170735574595,432,0 +170735574643,432,0 +170735574690,432,0 +170735574738,433,0 +170735574786,433,0 +170735574834,432,0 +170735574882,291,1 +170735574962,292,1 +170735575044,432,0 +170735575092,432,0 +170735575140,432,0 +170735575189,433,0 +170735575237,432,0 +170735575285,432,0 +170735575333,433,0 +170735575383,432,0 +170735575431,432,0 +170735575480,432,0 +170735575528,432,0 +170735575576,433,0 +170735575625,432,0 +170735575673,432,0 +170735575721,432,0 +170735575769,433,0 +170735575817,432,0 +170735575867,433,0 +170735575914,431,0 +170735575964,302,1 +170735576046,404,0 +170735576095,432,0 +170735576143,433,0 +170735576191,433,0 +170735576239,432,0 +170735576289,433,0 +170735576337,432,0 +170735576386,431,0 +170735576436,432,0 +170735576485,432,0 +170735576533,432,0 +170735576583,432,0 +170735576632,433,0 +170735576682,432,0 +170735576730,432,0 +170735576779,432,0 +170735576827,432,0 +170735576877,432,0 +170735576926,432,0 +170735576976,306,1 +170735577059,291,1 +170735577135,432,0 +170735577184,432,0 +170735577234,432,0 +170735577282,432,0 +170735577330,432,0 +170735577378,432,0 +170735577426,432,0 +170735577474,432,0 +170735577521,432,0 +170735577569,433,0 +170735577617,432,0 +170735577665,432,0 +170735577713,431,0 +170735577761,432,0 +170735577810,432,0 +170735577858,432,0 +170735577908,432,0 +170735577956,432,0 +170735578004,431,0 +170735578052,282,1 +170735578132,238,0 +170735578180,430,0 +170735578228,432,0 +170735578276,431,0 +170735578323,432,0 +170735578373,431,0 +170735578422,432,0 +170735578470,431,0 +170735578518,432,0 +170735578568,431,0 +170735578616,432,0 +170735578664,431,0 +170735578713,432,0 +170735578761,432,0 +170735578810,432,0 +170735578858,432,0 +170735578908,432,0 +170735578957,432,0 +170735579005,431,0 +170735579053,430,0 +170735579101,290,1 +170735579182,403,0 +170735579230,434,0 +170735579279,435,0 +170735579327,434,0 +170735579375,435,0 +170735579425,435,0 +170735579472,435,0 +170735579520,435,0 +170735579568,434,0 +170735579617,435,0 +170735579666,435,0 +170735579716,434,0 +170735579764,434,0 +170735579813,435,0 +170735579861,435,0 +170735579911,435,0 +170735579959,435,0 +170735580007,435,0 +170735580056,434,0 +170735580104,433,0 +170735580152,297,1 +170735580233,377,0 +170735580281,433,0 +170735580329,434,0 +170735580377,433,0 +170735580425,433,0 +170735580473,433,0 +170735580521,434,0 +170735580570,434,0 +170735580618,433,0 +170735580668,434,0 +170735580716,433,0 +170735580764,434,0 +170735580812,434,0 +170735580861,433,0 +170735580911,433,0 +170735580960,434,0 +170735581008,433,0 +170735581058,433,0 +170735581107,433,0 +170735581155,432,0 +170735581203,287,1 +170735581282,383,0 +170735581330,432,0 +170735581378,433,0 +170735581426,433,0 +170735581475,432,0 +170735581525,433,0 +170735581574,433,0 +170735581622,433,0 +170735581672,433,0 +170735581721,433,0 +170735581769,434,0 +170735581817,433,0 +170735581865,434,0 +170735581913,433,0 +170735581961,433,0 +170735582011,433,0 +170735582059,433,0 +170735582107,433,0 +170735582155,433,0 +170735582203,432,0 +170735582251,286,1 +170735582341,411,0 +170735582388,432,0 +170735582438,431,0 +170735582486,432,0 +170735582536,432,0 +170735582585,432,0 +170735582633,433,0 +170735582683,432,0 +170735582731,432,0 +170735582778,431,0 +170735582828,431,0 +170735582876,432,0 +170735582924,432,0 +170735582973,432,0 +170735583023,432,0 +170735583071,432,0 +170735583121,432,0 +170735583168,432,0 +170735583218,431,0 +170735583266,277,1 +170735583345,298,1 +170735583428,432,0 +170735583477,432,0 +170735583525,432,0 +170735583575,432,0 +170735583622,433,0 +170735583670,433,0 +170735583720,433,0 +170735583768,433,0 +170735583816,432,0 +170735583864,433,0 +170735583912,433,0 +170735583961,432,0 +170735584009,432,0 +170735584057,432,0 +170735584107,433,0 +170735584155,433,0 +170735584203,432,0 +170735584252,432,0 +170735584300,431,0 +170735584348,265,0 +170735584397,290,1 +170735584481,431,0 +170735584529,432,0 +170735584577,432,0 +170735584627,431,0 +170735584675,431,0 +170735584724,432,0 +170735584772,432,0 +170735584820,432,0 +170735584868,432,0 +170735584916,432,0 +170735584964,432,0 +170735585011,432,0 +170735585059,432,0 +170735585107,431,0 +170735585155,431,0 +170735585203,431,0 +170735585251,431,0 +170735585299,431,0 +170735585347,429,0 +170735585396,286,1 +170735585476,250,0 +170735585524,431,0 +170735585572,431,0 +170735585620,431,0 +170735585668,431,0 +170735585716,431,0 +170735585764,430,0 +170735585811,430,0 +170735585859,430,0 +170735585907,430,0 +170735585955,430,0 +170735586003,430,0 +170735586051,430,0 +170735586100,430,0 +170735586148,430,0 +170735586196,430,0 +170735586244,430,0 +170735586292,430,0 +170735586340,431,0 +170735586388,429,0 +170735586435,299,1 +170735586515,239,0 +170735586563,429,0 +170735586611,430,0 +170735586658,431,0 +170735586706,431,0 +170735586754,431,0 +170735586802,431,0 +170735586851,431,0 +170735586901,430,0 +170735586949,431,0 +170735586998,431,0 +170735587048,430,0 +170735587096,431,0 +170735587144,431,0 +170735587192,431,0 +170735587240,431,0 +170735587288,431,0 +170735587336,430,0 +170735587384,430,0 +170735587431,429,0 +170735587481,280,1 +170735587561,236,0 +170735587611,429,0 +170735587659,430,0 +170735587707,431,0 +170735587755,430,0 +170735587803,430,0 +170735587852,430,0 +170735587902,431,0 +170735587950,431,0 +170735587998,431,0 +170735588047,430,0 +170735588095,431,0 +170735588143,431,0 +170735588191,430,0 +170735588240,430,0 +170735588288,431,0 +170735588336,430,0 +170735588384,430,0 +170735588433,430,0 +170735588481,430,0 +170735588529,295,1 +170735588616,241,0 +170735588664,430,0 +170735588712,430,0 +170735588760,431,0 +170735588808,431,0 +170735588857,430,0 +170735588905,431,0 +170735588953,430,0 +170735589001,431,0 +170735589051,431,0 +170735589100,431,0 +170735589150,431,0 +170735589199,430,0 +170735589249,430,0 +170735589297,430,0 +170735589345,430,0 +170735589394,431,0 +170735589442,431,0 +170735589492,430,0 +170735589540,429,0 +170735589588,286,1 +170735589668,309,1 +170735589745,430,0 +170735589793,430,0 +170735589841,430,0 +170735589889,431,0 +170735589938,430,0 +170735589986,431,0 +170735590034,430,0 +170735590082,430,0 +170735590130,431,0 +170735590178,430,0 +170735590226,430,0 +170735590274,431,0 +170735590322,430,0 +170735590370,431,0 +170735590418,431,0 +170735590466,430,0 +170735590514,431,0 +170735590563,430,0 +170735590613,264,0 +170735590661,297,1 +170735590749,425,0 +170735590798,430,0 +170735590847,430,0 +170735590897,431,0 +170735590945,430,0 +170735590993,430,0 +170735591041,431,0 +170735591089,431,0 +170735591138,430,0 +170735591188,430,0 +170735591236,431,0 +170735591284,430,0 +170735591332,430,0 +170735591380,430,0 +170735591428,430,0 +170735591476,430,0 +170735591524,430,0 +170735591573,430,0 +170735591621,429,0 +170735591671,303,1 +170735591749,287,1 +170735591827,431,0 +170735591876,430,0 +170735591924,430,0 +170735591974,430,0 +170735592022,430,0 +170735592070,430,0 +170735592118,430,0 +170735592166,430,0 +170735592214,430,0 +170735592262,430,0 +170735592309,431,0 +170735592357,430,0 +170735592405,430,0 +170735592455,430,0 +170735592503,431,0 +170735592552,430,0 +170735592602,430,0 +170735592650,429,0 +170735592698,428,0 +170735592746,302,1 +170735592825,378,0 +170735592874,430,0 +170735592922,431,0 +170735592970,431,0 +170735593018,430,0 +170735593066,430,0 +170735593114,431,0 +170735593162,431,0 +170735593212,431,0 +170735593261,431,0 +170735593311,430,0 +170735593360,431,0 +170735593410,430,0 +170735593459,430,0 +170735593509,431,0 +170735593557,431,0 +170735593605,431,0 +170735593653,431,0 +170735593701,431,0 +170735593750,428,0 +170735593798,301,1 +170735593888,416,0 +170735593938,430,0 +170735593986,430,0 +170735594035,430,0 +170735594083,431,0 +170735594133,430,0 +170735594181,431,0 +170735594230,431,0 +170735594278,431,0 +170735594326,431,0 +170735594375,430,0 +170735594425,431,0 +170735594473,431,0 +170735594521,431,0 +170735594569,431,0 +170735594618,431,0 +170735594668,430,0 +170735594716,431,0 +170735594764,430,0 +170735594812,296,1 +170735594891,293,1 +170735594967,430,0 +170735595015,430,0 +170735595064,430,0 +170735595114,430,0 +170735595161,430,0 +170735595209,431,0 +170735595257,431,0 +170735595305,430,0 +170735595353,430,0 +170735595402,431,0 +170735595450,430,0 +170735595498,431,0 +170735595548,431,0 +170735595596,431,0 +170735595644,431,0 +170735595691,430,0 +170735595741,430,0 +170735595789,430,0 +170735595837,429,0 +170735595885,299,1 +170735595967,347,0 +170735596014,430,0 +170735596062,431,0 +170735596110,431,0 +170735596158,431,0 +170735596206,430,0 +170735596254,430,0 +170735596302,430,0 +170735596350,431,0 +170735596398,431,0 +170735596447,431,0 +170735596495,431,0 +170735596543,430,0 +170735596591,431,0 +170735596639,431,0 +170735596689,430,0 +170735596738,430,0 +170735596786,430,0 +170735596834,432,0 +170735596882,429,0 +170735596930,288,1 +170735597008,231,0 +170735597055,430,0 +170735597103,430,0 +170735597151,430,0 +170735597199,430,0 +170735597249,431,0 +170735597297,430,0 +170735597345,430,0 +170735597393,431,0 +170735597442,430,0 +170735597490,431,0 +170735597540,431,0 +170735597588,430,0 +170735597636,431,0 +170735597684,430,0 +170735597732,431,0 +170735597780,430,0 +170735597829,430,0 +170735597879,432,0 +170735597927,428,0 +170735597975,292,1 +170735598057,313,0 +170735598105,430,0 +170735598153,431,0 +170735598201,431,0 +170735598250,431,0 +170735598300,431,0 +170735598349,432,0 +170735598397,431,0 +170735598447,431,0 +170735598495,431,0 +170735598543,431,0 +170735598591,431,0 +170735598639,431,0 +170735598688,431,0 +170735598736,431,0 +170735598786,431,0 +170735598835,431,0 +170735598883,431,0 +170735598931,430,0 +170735598979,429,0 +170735599027,277,1 +170735599110,263,0 +170735599160,430,0 +170735599208,430,0 +170735599256,431,0 +170735599305,431,0 +170735599353,431,0 +170735599401,430,0 +170735599451,430,0 +170735599500,431,0 +170735599548,431,0 +170735599598,430,0 +170735599646,431,0 +170735599695,431,0 +170735599743,431,0 +170735599791,431,0 +170735599839,430,0 +170735599889,431,0 +170735599937,431,0 +170735599985,431,0 +170735600034,429,0 +170735600082,299,1 +170735600160,234,0 +170735600210,430,0 +170735600259,431,0 +170735600309,431,0 +170735600358,431,0 +170735600406,430,0 +170735600456,431,0 +170735600505,430,0 +170735600555,432,0 +170735600604,430,0 +170735600654,430,0 +170735600702,431,0 +170735600750,431,0 +170735600798,431,0 +170735600846,431,0 +170735600894,431,0 +170735600942,430,0 +170735600990,431,0 +170735601038,431,0 +170735601087,427,0 +170735601135,290,1 +170735601217,402,0 +170735601265,430,0 +170735601313,430,0 +170735601362,430,0 +170735601410,430,0 +170735601458,430,0 +170735601508,430,0 +170735601556,430,0 +170735601604,430,0 +170735601651,431,0 +170735601699,430,0 +170735601747,430,0 +170735601795,429,0 +170735601843,430,0 +170735601891,429,0 +170735601941,430,0 +170735601990,429,0 +170735602038,430,0 +170735602086,430,0 +170735602134,427,0 +170735602184,287,1 +170735602269,409,0 +170735602317,429,0 +170735602365,430,0 +170735602415,430,0 +170735602462,430,0 +170735602510,430,0 +170735602558,430,0 +170735602606,430,0 +170735602654,429,0 +170735602704,430,0 +170735602752,430,0 +170735602801,430,0 +170735602849,430,0 +170735602897,430,0 +170735602947,430,0 +170735602996,430,0 +170735603046,430,0 +170735603095,430,0 +170735603143,430,0 +170735603193,427,0 +170735603241,288,1 +170735603332,416,0 +170735603380,430,0 +170735603428,430,0 +170735603476,430,0 +170735603524,430,0 +170735603574,429,0 +170735603623,430,0 +170735603671,430,0 +170735603721,430,0 +170735603769,430,0 +170735603817,430,0 +170735603865,430,0 +170735603912,430,0 +170735603960,430,0 +170735604010,430,0 +170735604058,430,0 +170735604107,430,0 +170735604155,430,0 +170735604205,429,0 +170735604254,296,1 +170735604336,260,0 +170735604385,426,0 +170735604435,429,0 +170735604484,429,0 +170735604532,429,0 +170735604580,430,0 +170735604630,429,0 +170735604679,429,0 +170735604729,430,0 +170735604777,430,0 +170735604826,430,0 +170735604876,430,0 +170735604925,429,0 +170735604973,430,0 +170735605021,429,0 +170735605069,430,0 +170735605117,430,0 +170735605165,430,0 +170735605213,430,0 +170735605261,427,0 +170735605309,305,1 +170735605393,233,0 +170735605442,430,0 +170735605490,431,0 +170735605540,431,0 +170735605590,431,0 +170735605639,431,0 +170735605687,431,0 +170735605735,431,0 +170735605785,431,0 +170735605833,430,0 +170735605881,431,0 +170735605928,431,0 +170735605976,431,0 +170735606024,431,0 +170735606072,431,0 +170735606120,431,0 +170735606168,431,0 +170735606216,431,0 +170735606266,431,0 +170735606315,430,0 +170735606365,296,1 +170735606445,237,0 +170735606493,429,0 +170735606543,431,0 +170735606592,431,0 +170735606640,431,0 +170735606688,431,0 +170735606736,431,0 +170735606786,431,0 +170735606834,432,0 +170735606882,431,0 +170735606930,431,0 +170735606979,431,0 +170735607027,431,0 +170735607077,431,0 +170735607126,431,0 +170735607174,431,0 +170735607222,431,0 +170735607270,431,0 +170735607320,431,0 +170735607369,430,0 +170735607417,290,1 +170735607502,233,0 +170735607550,430,0 +170735607598,431,0 +170735607646,431,0 +170735607694,431,0 +170735607742,431,0 +170735607791,431,0 +170735607839,431,0 +170735607887,431,0 +170735607935,432,0 +170735607983,431,0 +170735608033,431,0 +170735608081,431,0 +170735608129,431,0 +170735608176,431,0 +170735608224,431,0 +170735608272,431,0 +170735608320,431,0 +170735608369,431,0 +170735608417,430,0 +170735608465,286,1 +170735608545,262,0 +170735608595,430,0 +170735608644,430,0 +170735608692,431,0 +170735608740,430,0 +170735608788,431,0 +170735608838,431,0 +170735608887,431,0 +170735608937,431,0 +170735608985,430,0 +170735609033,431,0 +170735609081,431,0 +170735609129,430,0 +170735609178,431,0 +170735609228,431,0 +170735609276,431,0 +170735609324,431,0 +170735609373,431,0 +170735609421,430,0 +170735609469,429,0 +170735609519,286,1 +170735609598,259,0 +170735609646,430,0 +170735609693,431,0 +170735609741,431,0 +170735609789,430,0 +170735609839,430,0 +170735609888,430,0 +170735609936,431,0 +170735609986,430,0 +170735610035,431,0 +170735610083,431,0 +170735610131,430,0 +170735610181,432,0 +170735610230,431,0 +170735610280,430,0 +170735610328,431,0 +170735610376,431,0 +170735610424,431,0 +170735610472,431,0 +170735610519,429,0 +170735610567,296,1 +170735610646,242,0 +170735610694,428,0 +170735610742,431,0 +170735610790,431,0 +170735610839,430,0 +170735610887,430,0 +170735610935,430,0 +170735610983,431,0 +170735611031,430,0 +170735611078,430,0 +170735611126,430,0 +170735611174,431,0 +170735611222,431,0 +170735611272,431,0 +170735611319,430,0 +170735611367,430,0 +170735611417,431,0 +170735611465,429,0 +170735611513,431,0 +170735611560,430,0 +170735611608,284,1 +170735611694,275,1 +170735611771,430,0 +170735611819,431,0 +170735611867,430,0 +170735611915,430,0 +170735611963,431,0 +170735612010,430,0 +170735612060,431,0 +170735612109,431,0 +170735612157,430,0 +170735612205,431,0 +170735612253,430,0 +170735612301,431,0 +170735612349,430,0 +170735612398,431,0 +170735612446,431,0 +170735612494,430,0 +170735612542,432,0 +170735612590,429,0 +170735612638,390,0 +170735612687,293,1 +170735612766,420,0 +170735612814,430,0 +170735612862,430,0 +170735612909,430,0 +170735612957,431,0 +170735613005,430,0 +170735613053,430,0 +170735613101,430,0 +170735613150,430,0 +170735613198,430,0 +170735613246,431,0 +170735613294,430,0 +170735613344,432,0 +170735613393,431,0 +170735613441,430,0 +170735613489,430,0 +170735613537,431,0 +170735613585,430,0 +170735613632,430,0 +170735613680,429,0 +170735613728,295,1 +170735613805,383,0 +170735613852,429,0 +170735613902,430,0 +170735613950,430,0 +170735613998,430,0 +170735614046,431,0 +170735614093,430,0 +170735614141,432,0 +170735614189,431,0 +170735614237,430,0 +170735614285,430,0 +170735614333,430,0 +170735614381,432,0 +170735614429,430,0 +170735614476,430,0 +170735614524,430,0 +170735614572,431,0 +170735614620,431,0 +170735614668,430,0 +170735614718,429,0 +170735614765,294,1 +170735614847,252,0 +170735614895,430,0 +170735614943,432,0 +170735614991,430,0 +170735615039,431,0 +170735615088,431,0 +170735615136,431,0 +170735615184,432,0 +170735615232,431,0 +170735615280,431,0 +170735615327,430,0 +170735615375,431,0 +170735615425,430,0 +170735615473,431,0 +170735615521,431,0 +170735615570,430,0 +170735615618,431,0 +170735615668,430,0 +170735615716,430,0 +170735615764,429,0 +170735615812,305,1 +170735615895,381,0 +170735615943,430,0 +170735615991,430,0 +170735616041,430,0 +170735616089,430,0 +170735616137,430,0 +170735616184,431,0 +170735616232,431,0 +170735616280,432,0 +170735616330,430,0 +170735616378,431,0 +170735616425,430,0 +170735616475,430,0 +170735616523,431,0 +170735616571,431,0 +170735616620,430,0 +170735616668,431,0 +170735616716,430,0 +170735616764,430,0 +170735616813,429,0 +170735616861,300,1 +170735616939,234,0 +170735616987,429,0 +170735617037,429,0 +170735617084,429,0 +170735617134,429,0 +170735617182,430,0 +170735617232,431,0 +170735617281,429,0 +170735617329,429,0 +170735617377,430,0 +170735617426,430,0 +170735617474,431,0 +170735617522,429,0 +170735617572,430,0 +170735617621,430,0 +170735617669,430,0 +170735617717,430,0 +170735617767,429,0 +170735617815,429,0 +170735617863,428,0 +170735617911,295,1 +170735617990,245,0 +170735618038,429,0 +170735618086,429,0 +170735618136,430,0 +170735618184,429,0 +170735618233,430,0 +170735618281,430,0 +170735618329,430,0 +170735618377,430,0 +170735618425,429,0 +170735618474,429,0 +170735618524,430,0 +170735618573,429,0 +170735618623,430,0 +170735618673,429,0 +170735618721,429,0 +170735618768,430,0 +170735618816,430,0 +170735618864,430,0 +170735618912,428,0 +170735618960,315,0 +170735619008,310,0 +170735619058,414,0 +170735619106,429,0 +170735619154,429,0 +170735619203,430,0 +170735619251,429,0 +170735619301,429,0 +170735619350,430,0 +170735619400,429,0 +170735619448,430,0 +170735619497,429,0 +170735619545,429,0 +170735619595,430,0 +170735619644,430,0 +170735619692,429,0 +170735619742,429,0 +170735619790,429,0 +170735619838,429,0 +170735619886,431,0 +170735619934,429,0 +170735619983,264,0 +170735620031,265,0 +170735620079,227,0 +170735620129,429,0 +170735620178,429,0 +170735620228,430,0 +170735620276,430,0 +170735620325,429,0 +170735620373,431,0 +170735620421,430,0 +170735620470,430,0 +170735620518,430,0 +170735620566,429,0 +170735620614,430,0 +170735620662,430,0 +170735620712,429,0 +170735620760,430,0 +170735620808,430,0 +170735620857,429,0 +170735620907,430,0 +170735620955,429,0 +170735621003,428,0 +170735621051,253,0 +170735621099,254,0 +170735621148,417,0 +170735621201,430,0 +170735621249,429,0 +170735621298,429,0 +170735621346,430,0 +170735621396,430,0 +170735621445,429,0 +170735621495,430,0 +170735621544,430,0 +170735621592,430,0 +170735621640,430,0 +170735621690,430,0 +170735621738,429,0 +170735621786,430,0 +170735621834,429,0 +170735621882,429,0 +170735621930,430,0 +170735621979,430,0 +170735622029,429,0 +170735622077,422,0 +170735622125,302,1 +170735622206,411,0 +170735622256,429,0 +170735622304,430,0 +170735622352,429,0 +170735622400,429,0 +170735622449,429,0 +170735622497,429,0 +170735622547,429,0 +170735622596,429,0 +170735622644,430,0 +170735622694,429,0 +170735622742,431,0 +170735622790,429,0 +170735622838,429,0 +170735622885,429,0 +170735622935,430,0 +170735622985,429,0 +170735623033,429,0 +170735623082,429,0 +170735623130,295,1 +170735623218,242,0 +170735623268,428,0 +170735623317,430,0 +170735623367,430,0 +170735623416,430,0 +170735623464,430,0 +170735623512,430,0 +170735623562,429,0 +170735623610,430,0 +170735623658,430,0 +170735623707,429,0 +170735623757,429,0 +170735623806,429,0 +170735623856,431,0 +170735623904,430,0 +170735623953,430,0 +170735624001,430,0 +170735624049,430,0 +170735624097,431,0 +170735624145,428,0 +170735624193,307,1 +170735624276,238,0 +170735624324,429,0 +170735624374,429,0 +170735624421,429,0 +170735624471,430,0 +170735624520,429,0 +170735624568,430,0 +170735624618,430,0 +170735624667,430,0 +170735624717,429,0 +170735624764,430,0 +170735624812,430,0 +170735624862,430,0 +170735624911,430,0 +170735624961,429,0 +170735625009,429,0 +170735625056,430,0 +170735625104,430,0 +170735625152,430,0 +170735625202,428,0 +170735625250,287,1 +170735625333,398,0 +170735625390,428,0 +170735625438,430,0 +170735625488,430,0 +170735625537,429,0 +170735625585,430,0 +170735625635,429,0 +170735625683,431,0 +170735625731,429,0 +170735625780,430,0 +170735625830,430,0 +170735625878,429,0 +170735625926,430,0 +170735625974,430,0 +170735626022,430,0 +170735626070,430,0 +170735626118,429,0 +170735626166,430,0 +170735626213,430,0 +170735626261,426,0 +170735626309,302,1 +170735626395,412,0 +170735626443,430,0 +170735626491,430,0 +170735626541,429,0 +170735626589,430,0 +170735626637,429,0 +170735626685,431,0 +170735626733,431,0 +170735626780,429,0 +170735626828,430,0 +170735626876,429,0 +170735626924,430,0 +170735626972,430,0 +170735627020,430,0 +170735627070,430,0 +170735627118,429,0 +170735627167,429,0 +170735627215,430,0 +170735627263,429,0 +170735627311,406,0 +170735627359,306,1 +170735627438,405,0 +170735627486,429,0 +170735627534,430,0 +170735627582,430,0 +170735627630,429,0 +170735627679,430,0 +170735627727,429,0 +170735627775,430,0 +170735627823,430,0 +170735627871,430,0 +170735627919,430,0 +170735627967,429,0 +170735628015,430,0 +170735628065,430,0 +170735628113,430,0 +170735628160,430,0 +170735628208,429,0 +170735628258,429,0 +170735628306,428,0 +170735628354,427,0 +170735628403,303,1 +170735628486,407,0 +170735628538,430,0 +170735628586,430,0 +170735628634,429,0 +170735628682,430,0 +170735628732,430,0 +170735628780,429,0 +170735628829,430,0 +170735628879,430,0 +170735628927,429,0 +170735628975,430,0 +170735629024,429,0 +170735629072,430,0 +170735629120,430,0 +170735629168,430,0 +170735629216,429,0 +170735629266,429,0 +170735629314,429,0 +170735629362,430,0 +170735629411,426,0 +170735629459,292,1 +170735629539,405,0 +170735629588,429,0 +170735629636,429,0 +170735629686,430,0 +170735629734,429,0 +170735629783,430,0 +170735629831,430,0 +170735629881,430,0 +170735629929,430,0 +170735629976,429,0 +170735630024,430,0 +170735630074,429,0 +170735630122,429,0 +170735630171,431,0 +170735630219,429,0 +170735630269,429,0 +170735630318,430,0 +170735630366,430,0 +170735630414,430,0 +170735630464,272,1 +170735630547,292,1 +170735630621,430,0 +170735630669,429,0 +170735630717,429,0 +170735630766,429,0 +170735630814,430,0 +170735630864,430,0 +170735630913,429,0 +170735630963,430,0 +170735631011,429,0 +170735631060,430,0 +170735631108,429,0 +170735631156,430,0 +170735631204,430,0 +170735631252,430,0 +170735631301,430,0 +170735631351,430,0 +170735631400,429,0 +170735631450,430,0 +170735631498,427,0 +170735631545,297,1 +170735631623,398,0 +170735631680,429,0 +170735631730,430,0 +170735631778,430,0 +170735631826,430,0 +170735631875,431,0 +170735631923,429,0 +170735631972,430,0 +170735632022,429,0 +170735632070,430,0 +170735632118,430,0 +170735632165,430,0 +170735632213,429,0 +170735632261,430,0 +170735632311,429,0 +170735632359,430,0 +170735632407,429,0 +170735632455,430,0 +170735632502,429,0 +170735632552,426,0 +170735632600,265,0 +170735632648,262,0 +170735632697,421,0 +170735632745,429,0 +170735632793,429,0 +170735632842,429,0 +170735632890,429,0 +170735632940,428,0 +170735632989,429,0 +170735633037,429,0 +170735633087,430,0 +170735633135,429,0 +170735633183,429,0 +170735633230,429,0 +170735633278,429,0 +170735633326,429,0 +170735633374,429,0 +170735633422,428,0 +170735633470,428,0 +170735633518,429,0 +170735633566,428,0 +170735633614,275,1 +170735633699,245,0 +170735633747,425,0 +170735633795,429,0 +170735633843,429,0 +170735633891,428,0 +170735633939,429,0 +170735633987,428,0 +170735634035,429,0 +170735634083,429,0 +170735634131,429,0 +170735634179,429,0 +170735634228,429,0 +170735634278,429,0 +170735634327,429,0 +170735634377,430,0 +170735634425,429,0 +170735634473,429,0 +170735634521,428,0 +170735634570,428,0 +170735634618,428,0 +170735634666,300,1 +170735634749,274,1 +170735634828,428,0 +170735634876,429,0 +170735634924,429,0 +170735634973,428,0 +170735635023,428,0 +170735635071,429,0 +170735635120,428,0 +170735635168,429,0 +170735635216,429,0 +170735635266,429,0 +170735635314,428,0 +170735635362,429,0 +170735635411,429,0 +170735635461,428,0 +170735635510,428,0 +170735635558,428,0 +170735635606,429,0 +170735635656,428,0 +170735635704,424,0 +170735635752,278,1 +170735635832,406,0 +170735635880,429,0 +170735635928,429,0 +170735635978,429,0 +170735636026,428,0 +170735636074,429,0 +170735636122,429,0 +170735636170,429,0 +170735636217,430,0 +170735636265,429,0 +170735636313,429,0 +170735636361,429,0 +170735636409,429,0 +170735636457,429,0 +170735636505,429,0 +170735636553,429,0 +170735636602,429,0 +170735636650,429,0 +170735636700,429,0 +170735636747,427,0 +170735636795,301,1 +170735636878,393,0 +170735636930,428,0 +170735636978,429,0 +170735637028,429,0 +170735637077,428,0 +170735637127,429,0 +170735637176,429,0 +170735637224,429,0 +170735637272,429,0 +170735637322,428,0 +170735637370,429,0 +170735637419,429,0 +170735637467,429,0 +170735637515,429,0 +170735637565,428,0 +170735637613,429,0 +170735637662,429,0 +170735637710,429,0 +170735637758,428,0 +170735637806,307,1 +170735638392,429,0 +170735638442,429,0 +170735638491,429,0 +170735638539,429,0 +170735638587,429,0 +170735638637,429,0 +170735638686,429,0 +170735638734,429,0 +170735638782,429,0 +170735638830,427,0 +170735638880,297,1 +170735638960,236,0 +170735639009,428,0 +170735639057,429,0 +170735639105,429,0 +170735639153,429,0 +170735639201,428,0 +170735639249,430,0 +170735639299,428,0 +170735639348,429,0 +170735639396,429,0 +170735639444,428,0 +170735639494,429,0 +170735639543,429,0 +170735639593,429,0 +170735639641,429,0 +170735639689,429,0 +170735639738,429,0 +170735639788,429,0 +170735639836,428,0 +170735639884,428,0 +170735639932,298,1 +170735640015,350,0 +170735640063,428,0 +170735640111,429,0 +170735640160,429,0 +170735640210,429,0 +170735640258,429,0 +170735640306,429,0 +170735640355,429,0 +170735640405,429,0 +170735640454,429,0 +170735640502,430,0 +170735640550,429,0 +170735640600,430,0 +170735640648,429,0 +170735640696,430,0 +170735640744,430,0 +170735640792,429,0 +170735640839,429,0 +170735640887,430,0 +170735640935,427,0 +170735640983,305,1 +170735641066,400,0 +170735641124,429,0 +170735641173,429,0 +170735641221,429,0 +170735641269,430,0 +170735641317,430,0 +170735641365,429,0 +170735641413,430,0 +170735641463,429,0 +170735641511,430,0 +170735641559,429,0 +170735641607,430,0 +170735641655,429,0 +170735641703,429,0 +170735641751,429,0 +170735641800,429,0 +170735641848,429,0 +170735641896,429,0 +170735641945,429,0 +170735641993,420,0 +170735642041,303,1 +170735642127,418,0 +170735642176,431,0 +170735642224,431,0 +170735642274,430,0 +170735642321,431,0 +170735642371,430,0 +170735642419,430,0 +170735642467,431,0 +170735642517,431,0 +170735642565,431,0 +170735642614,431,0 +170735642662,430,0 +170735642712,431,0 +170735642759,431,0 +170735642807,431,0 +170735642855,431,0 +170735642903,431,0 +170735642951,431,0 +170735642999,430,0 +170735643047,427,0 +170735643095,301,1 +170735643175,403,0 +170735643225,429,0 +170735643273,430,0 +170735643321,430,0 +170735643370,430,0 +170735643418,430,0 +170735643466,430,0 +170735643514,430,0 +170735643562,430,0 +170735643610,430,0 +170735643658,429,0 +170735643706,429,0 +170735643754,429,0 +170735643803,429,0 +170735643851,430,0 +170735643899,429,0 +170735643947,430,0 +170735643996,429,0 +170735644044,429,0 +170735644092,426,0 +170735644140,311,0 +170735644188,291,1 +170735644271,430,0 +170735644319,429,0 +170735644368,429,0 +170735644418,430,0 +170735644466,429,0 +170735644515,430,0 +170735644563,429,0 +170735644611,429,0 +170735644661,430,0 +170735644709,429,0 +170735644757,430,0 +170735644805,429,0 +170735644853,430,0 +170735644901,430,0 +170735644949,429,0 +170735644997,430,0 +170735645046,430,0 +170735645094,429,0 +170735645144,424,0 +170735645191,294,1 +170735645269,400,0 +170735645319,430,0 +170735645368,429,0 +170735645418,429,0 +170735645466,430,0 +170735645514,430,0 +170735645562,431,0 +170735645610,431,0 +170735645659,431,0 +170735645707,430,0 +170735645755,429,0 +170735645803,430,0 +170735645853,429,0 +170735645901,430,0 +170735645950,430,0 +170735645998,430,0 +170735646046,430,0 +170735646094,429,0 +170735646143,430,0 +170735646191,424,0 +170735646239,302,1 +170735646319,417,0 +170735646367,432,0 +170735646415,432,0 +170735646463,432,0 +170735646511,432,0 +170735646560,431,0 +170735646608,433,0 +170735646658,433,0 +170735646706,433,0 +170735646754,432,0 +170735646801,432,0 +170735646849,432,0 +170735646897,432,0 +170735646945,432,0 +170735646993,432,0 +170735647041,432,0 +170735647091,432,0 +170735647140,432,0 +170735647190,432,0 +170735647238,430,0 +170735647286,295,1 +170735647367,401,0 +170735647419,432,0 +170735647467,431,0 +170735647515,431,0 +170735647563,432,0 +170735647611,432,0 +170735647659,432,0 +170735647706,431,0 +170735647756,431,0 +170735647804,432,0 +170735647852,431,0 +170735647900,432,0 +170735647948,431,0 +170735647995,432,0 +170735648043,431,0 +170735648091,431,0 +170735648139,431,0 +170735648189,431,0 +170735648236,432,0 +170735648284,429,0 +170735648332,299,1 +170735648415,418,0 +170735648462,433,0 +170735648510,433,0 +170735648558,432,0 +170735648606,433,0 +170735648656,432,0 +170735648705,432,0 +170735648755,433,0 +170735648804,433,0 +170735648852,433,0 +170735648900,433,0 +170735648948,433,0 +170735648996,433,0 +170735649044,432,0 +170735649094,433,0 +170735649142,433,0 +170735649190,433,0 +170735649238,432,0 +170735649286,433,0 +170735649335,430,0 +170735649385,296,1 +170735649466,418,0 +170735649514,433,0 +170735649562,433,0 +170735649612,433,0 +170735649661,433,0 +170735649709,433,0 +170735649759,433,0 +170735649808,433,0 +170735649858,433,0 +170735649906,433,0 +170735649954,433,0 +170735650002,433,0 +170735650050,433,0 +170735650097,433,0 +170735650145,433,0 +170735650193,433,0 +170735650241,433,0 +170735650290,434,0 +170735650338,433,0 +170735650386,431,0 +170735650434,300,1 +170735650510,410,0 +170735650558,433,0 +170735650606,433,0 +170735650654,433,0 +170735650704,433,0 +170735650752,433,0 +170735650801,433,0 +170735650849,433,0 +170735650897,433,0 +170735650947,433,0 +170735650995,433,0 +170735651042,433,0 +170735651090,433,0 +170735651138,433,0 +170735651186,433,0 +170735651234,433,0 +170735651284,433,0 +170735651331,433,0 +170735651381,433,0 +170735651429,432,0 +170735651477,312,0 +170735651525,304,1 +170735651608,433,0 +170735651658,433,0 +170735651707,433,0 +170735651755,433,0 +170735651803,433,0 +170735651853,433,0 +170735651902,433,0 +170735651950,433,0 +170735652000,433,0 +170735652048,433,0 +170735652096,433,0 +170735652144,433,0 +170735652191,433,0 +170735652241,433,0 +170735652289,433,0 +170735652337,433,0 +170735652386,433,0 +170735652434,433,0 +170735652482,431,0 +170735652531,293,1 +170735652612,419,0 +170735652660,433,0 +170735652707,433,0 +170735652755,433,0 +170735652803,433,0 +170735652851,433,0 +170735652899,433,0 +170735652947,433,0 +170735652995,433,0 +170735653043,433,0 +170735653090,433,0 +170735653140,433,0 +170735653190,433,0 +170735653239,433,0 +170735653287,433,0 +170735653335,433,0 +170735653385,433,0 +170735653433,433,0 +170735653481,433,0 +170735653529,432,0 +170735653578,298,1 +170735653661,396,0 +170735653709,429,0 +170735653757,428,0 +170735653805,429,0 +170735653853,429,0 +170735653902,429,0 +170735653950,429,0 +170735653998,428,0 +170735654046,429,0 +170735654096,429,0 +170735654144,429,0 +170735654192,429,0 +170735654239,429,0 +170735654287,429,0 +170735654335,429,0 +170735654385,429,0 +170735654433,429,0 +170735654480,429,0 +170735654528,429,0 +170735654578,426,0 +170735654626,291,1 +170735654704,336,0 +170735654752,428,0 +170735654801,429,0 +170735654849,429,0 +170735654897,429,0 +170735654945,429,0 +170735654994,429,0 +170735655042,429,0 +170735655090,430,0 +170735655139,429,0 +170735655189,429,0 +170735655238,429,0 +170735655286,429,0 +170735655336,430,0 +170735655384,429,0 +170735655431,429,0 +170735655479,429,0 +170735655527,429,0 +170735655575,428,0 +170735655623,427,0 +170735655672,305,1 +170735655757,410,0 +170735655805,429,0 +170735655853,429,0 +170735655902,429,0 +170735655950,430,0 +170735655998,430,0 +170735656046,429,0 +170735656094,430,0 +170735656142,429,0 +170735656190,429,0 +170735656238,430,0 +170735656287,429,0 +170735656335,430,0 +170735656384,430,0 +170735656432,430,0 +170735656480,429,0 +170735656528,430,0 +170735656578,430,0 +170735656626,429,0 +170735656675,426,0 +170735656723,311,0 +170735656771,301,1 +170735656850,430,0 +170735656898,430,0 +170735656946,430,0 +170735656995,430,0 +170735657043,430,0 +170735657091,430,0 +170735657139,430,0 +170735657188,430,0 +170735657238,430,0 +170735657286,430,0 +170735657335,430,0 +170735657385,430,0 +170735657435,430,0 +170735657483,431,0 +170735657532,430,0 +170735657580,430,0 +170735657628,430,0 +170735657676,430,0 +170735657726,428,0 +170735657773,289,1 +170735657862,407,0 +170735657911,431,0 +170735657961,430,0 +170735658008,430,0 +170735658056,430,0 +170735658106,430,0 +170735658155,430,0 +170735658203,431,0 +170735658251,430,0 +170735658299,431,0 +170735658347,430,0 +170735658395,431,0 +170735658444,431,0 +170735658492,430,0 +170735658540,430,0 +170735658588,431,0 +170735658637,431,0 +170735658687,430,0 +170735658736,430,0 +170735658784,427,0 +170735658833,300,1 +170735658920,428,0 +170735658968,434,0 +170735659016,433,0 +170735659064,433,0 +170735659112,433,0 +170735659160,433,0 +170735659207,434,0 +170735659255,433,0 +170735659303,433,0 +170735659351,433,0 +170735659399,434,0 +170735659447,434,0 +170735659495,434,0 +170735659543,433,0 +170735659592,433,0 +170735659640,433,0 +170735659688,434,0 +170735659736,434,0 +170735659784,433,0 +170735659832,430,0 +170735659880,297,1 +170735659960,409,0 +170735660008,432,0 +170735660055,430,0 +170735660103,432,0 +170735660153,432,0 +170735660201,431,0 +170735660249,431,0 +170735660296,432,0 +170735660344,432,0 +170735660392,432,0 +170735660440,431,0 +170735660488,431,0 +170735660536,431,0 +170735660586,432,0 +170735660634,432,0 +170735660682,431,0 +170735660730,431,0 +170735660778,432,0 +170735660826,431,0 +170735660873,430,0 +170735660923,282,1 +170735661004,405,0 +170735661057,430,0 +170735661104,431,0 +170735661152,432,0 +170735661202,432,0 +170735661250,432,0 +170735661297,431,0 +170735661345,431,0 +170735661395,430,0 +170735661444,431,0 +170735661492,432,0 +170735661540,432,0 +170735661588,431,0 +170735661636,431,0 +170735661686,431,0 +170735661734,431,0 +170735661782,431,0 +170735661831,430,0 +170735661879,431,0 +170735661927,428,0 +170735661977,281,1 +170735662056,410,0 +170735662104,431,0 +170735662152,431,0 +170735662200,431,0 +170735662248,431,0 +170735662296,431,0 +170735662344,431,0 +170735662393,431,0 +170735662442,431,0 +170735662489,430,0 +170735662537,431,0 +170735662585,431,0 +170735662633,432,0 +170735662681,432,0 +170735662729,431,0 +170735662777,431,0 +170735662826,431,0 +170735662876,431,0 +170735662925,431,0 +170735662975,428,0 +170735663023,299,1 +170735663106,413,0 +170735663154,431,0 +170735663204,432,0 +170735663252,431,0 +170735663300,431,0 +170735663347,432,0 +170735663395,431,0 +170735663443,430,0 +170735663493,431,0 +170735663541,431,0 +170735663590,430,0 +170735663640,432,0 +170735663689,432,0 +170735663739,431,0 +170735663788,431,0 +170735663836,431,0 +170735663884,431,0 +170735663932,431,0 +170735663980,431,0 +170735664030,340,0 +170735664079,302,1 +170735664161,418,0 +170735664210,431,0 +170735664260,432,0 +170735664308,431,0 +170735664356,432,0 +170735664404,432,0 +170735664452,431,0 +170735664500,432,0 +170735664548,431,0 +170735664596,432,0 +170735664644,432,0 +170735664692,431,0 +170735664741,432,0 +170735664791,431,0 +170735664840,431,0 +170735664890,431,0 +170735664938,432,0 +170735664987,431,0 +170735665037,431,0 +170735665085,357,0 +170735665134,300,1 +170735665212,424,0 +170735665259,431,0 +170735665307,432,0 +170735665355,431,0 +170735665403,431,0 +170735665453,431,0 +170735665500,431,0 +170735665548,431,0 +170735665596,431,0 +170735665644,432,0 +170735665694,432,0 +170735665743,431,0 +170735665791,431,0 +170735665839,431,0 +170735665889,432,0 +170735665937,431,0 +170735665984,432,0 +170735666032,432,0 +170735666082,431,0 +170735666131,428,0 +170735666179,306,1 +170735666259,401,0 +170735666307,431,0 +170735666354,431,0 +170735666404,431,0 +170735666453,431,0 +170735666503,431,0 +170735666552,432,0 +170735666600,431,0 +170735666648,431,0 +170735666697,431,0 +170735666745,432,0 +170735666793,432,0 +170735666841,431,0 +170735666889,431,0 +170735666937,432,0 +170735666985,431,0 +170735667033,431,0 +170735667080,432,0 +170735667128,431,0 +170735667176,423,0 +170735667224,300,1 +170735667304,413,0 +170735667352,431,0 +170735667400,431,0 +170735667450,432,0 +170735667498,431,0 +170735667545,431,0 +170735667595,432,0 +170735667644,431,0 +170735667694,432,0 +170735667743,431,0 +170735667791,432,0 +170735667839,431,0 +170735667889,431,0 +170735667936,432,0 +170735667984,431,0 +170735668032,431,0 +170735668080,431,0 +170735668128,431,0 +170735668176,431,0 +170735668224,429,0 +170735668271,296,1 +170735668353,415,0 +170735668401,431,0 +170735668449,431,0 +170735668497,431,0 +170735668545,431,0 +170735668592,431,0 +170735668640,431,0 +170735668688,431,0 +170735668736,431,0 +170735668784,431,0 +170735668832,431,0 +170735668880,431,0 +170735668928,431,0 +170735668976,431,0 +170735669023,432,0 +170735669071,430,0 +170735669119,431,0 +170735669167,431,0 +170735669215,431,0 +170735669264,429,0 +170735669312,300,1 +170735669398,402,0 +170735669446,431,0 +170735669493,431,0 +170735669541,431,0 +170735669589,431,0 +170735669637,431,0 +170735669685,431,0 +170735669733,431,0 +170735669781,431,0 +170735669830,431,0 +170735669878,431,0 +170735669926,431,0 +170735669974,431,0 +170735670024,431,0 +170735670072,431,0 +170735670119,431,0 +170735670167,431,0 +170735670215,431,0 +170735670263,431,0 +170735670311,429,0 +170735670360,289,1 +170735670439,396,0 +170735670487,432,0 +170735670535,432,0 +170735670583,433,0 +170735670631,432,0 +170735670680,432,0 +170735670728,432,0 +170735670776,432,0 +170735670824,432,0 +170735670872,432,0 +170735670920,433,0 +170735670968,433,0 +170735671016,432,0 +170735671065,432,0 +170735671113,431,0 +170735671161,432,0 +170735671211,432,0 +170735671260,432,0 +170735671308,432,0 +170735671356,429,0 +170735671404,307,1 +170735671484,410,0 +170735671532,432,0 +170735671581,432,0 +170735671629,432,0 +170735671677,431,0 +170735671725,432,0 +170735671773,432,0 +170735671821,432,0 +170735671869,431,0 +170735671917,432,0 +170735671965,432,0 +170735672013,432,0 +170735672060,432,0 +170735672108,432,0 +170735672156,432,0 +170735672206,432,0 +170735672254,432,0 +170735672302,433,0 +170735672351,431,0 +170735672401,431,0 +170735672449,298,1 +170735672530,311,0 +170735672578,431,0 +170735672627,432,0 +170735672675,432,0 +170735672725,432,0 +170735672774,432,0 +170735672822,432,0 +170735672870,431,0 +170735672920,432,0 +170735672968,432,0 +170735673017,432,0 +170735673065,432,0 +170735673113,432,0 +170735673161,432,0 +170735673209,432,0 +170735673257,432,0 +170735673305,431,0 +170735673354,432,0 +170735673404,432,0 +170735673452,431,0 +170735673501,306,1 +170735673582,279,1 +170735673663,432,0 +170735673713,432,0 +170735673760,432,0 +170735673808,432,0 +170735673856,432,0 +170735673904,432,0 +170735673954,432,0 +170735674001,432,0 +170735674051,432,0 +170735674099,432,0 +170735674148,431,0 +170735674196,431,0 +170735674244,432,0 +170735674292,432,0 +170735674340,432,0 +170735674388,432,0 +170735674437,432,0 +170735674485,431,0 +170735674533,301,1 +170735674617,231,0 +170735674665,429,0 +170735674715,430,0 +170735674763,430,0 +170735674811,430,0 +170735674859,429,0 +170735674906,430,0 +170735674954,430,0 +170735675002,429,0 +170735675050,430,0 +170735675098,429,0 +170735675147,430,0 +170735675195,429,0 +170735675245,429,0 +170735675294,430,0 +170735675342,429,0 +170735675390,430,0 +170735675438,429,0 +170735675486,429,0 +170735675534,430,0 +170735675582,286,1 +170735675668,233,0 +170735675716,428,0 +170735675764,430,0 +170735675812,430,0 +170735675860,429,0 +170735675908,429,0 +170735675956,430,0 +170735676005,431,0 +170735676053,431,0 +170735676103,430,0 +170735676152,429,0 +170735676202,430,0 +170735676251,429,0 +170735676299,429,0 +170735676349,429,0 +170735676397,430,0 +170735676444,430,0 +170735676494,429,0 +170735676542,429,0 +170735676590,427,0 +170735676638,291,1 +170735676715,258,0 +170735676765,426,0 +170735676813,429,0 +170735676862,429,0 +170735676910,430,0 +170735676958,430,0 +170735677008,429,0 +170735677056,430,0 +170735677104,430,0 +170735677153,430,0 +170735677201,430,0 +170735677251,429,0 +170735677299,429,0 +170735677348,429,0 +170735677396,430,0 +170735677445,430,0 +170735677493,430,0 +170735677541,430,0 +170735677589,429,0 +170735677639,426,0 +170735677687,308,1 +170735677767,245,0 +170735677815,428,0 +170735677865,429,0 +170735677914,430,0 +170735677962,429,0 +170735678010,429,0 +170735678058,430,0 +170735678108,429,0 +170735678156,430,0 +170735678205,429,0 +170735678255,429,0 +170735678304,430,0 +170735678352,429,0 +170735678401,429,0 +170735678451,430,0 +170735678500,430,0 +170735678550,429,0 +170735678598,430,0 +170735678647,428,0 +170735678695,427,0 +170735678745,304,1 +170735678825,403,0 +170735678878,432,0 +170735678926,432,0 +170735678975,432,0 +170735679023,432,0 +170735679073,432,0 +170735679121,432,0 +170735679169,432,0 +170735679218,432,0 +170735679266,432,0 +170735679316,432,0 +170735679364,432,0 +170735679411,432,0 +170735679459,432,0 +170735679507,432,0 +170735679555,432,0 +170735679603,431,0 +170735679653,432,0 +170735679701,432,0 +170735679750,429,0 +170735679798,295,1 +170735679876,400,0 +170735679924,431,0 +170735679972,432,0 +170735680021,431,0 +170735680069,432,0 +170735680117,432,0 +170735680166,432,0 +170735680216,432,0 +170735680264,432,0 +170735680311,432,0 +170735680359,432,0 +170735680407,432,0 +170735680455,432,0 +170735680503,432,0 +170735680552,432,0 +170735680602,432,0 +170735680650,432,0 +170735680698,432,0 +170735680745,431,0 +170735680793,430,0 +170735680841,279,1 +170735680929,402,0 +170735680977,432,0 +170735681025,431,0 +170735681073,432,0 +170735681122,431,0 +170735681172,432,0 +170735681220,432,0 +170735681268,432,0 +170735681316,432,0 +170735681363,432,0 +170735681411,432,0 +170735681459,432,0 +170735681507,432,0 +170735681557,432,0 +170735681605,432,0 +170735681652,432,0 +170735681700,432,0 +170735681750,221,0 +170735681798,219,0 +170735681846,221,0 +170735681894,249,0 +170735681942,252,0 +170735681991,418,0 +170735682039,426,0 +170735682088,427,0 +170735682138,427,0 +170735682186,426,0 +170735682234,426,0 +170735682283,426,0 +170735682333,427,0 +170735682381,427,0 +170735682429,426,0 +170735682478,427,0 +170735682526,427,0 +170735682574,427,0 +170735682622,426,0 +170735682672,427,0 +170735682720,427,0 +170735682768,427,0 +170735682815,429,0 +170735682865,425,0 +170735682913,298,1 +170735683010,234,0 +170735683058,427,0 +170735683105,429,0 +170735683153,429,0 +170735683201,428,0 +170735683249,429,0 +170735683299,428,0 +170735683347,428,0 +170735683396,429,0 +170735683444,428,0 +170735683492,429,0 +170735683540,429,0 +170735683588,429,0 +170735683635,429,0 +170735683685,429,0 +170735683733,429,0 +170735683781,429,0 +170735683829,430,0 +170735683876,428,0 +170735683926,427,0 +170735683975,301,1 +170735684065,349,0 +170735684113,428,0 +170735684161,429,0 +170735684210,429,0 +170735684258,429,0 +170735684306,429,0 +170735684354,429,0 +170735684402,428,0 +170735684451,429,0 +170735684501,429,0 +170735684548,429,0 +170735684596,429,0 +170735684644,429,0 +170735684692,429,0 +170735684740,428,0 +170735684788,428,0 +170735684836,429,0 +170735684884,430,0 +170735684931,429,0 +170735684979,427,0 +170735685029,300,1 +170735685106,236,0 +170735685154,428,0 +170735685202,428,0 +170735685252,429,0 +170735685299,428,0 +170735685347,429,0 +170735685395,429,0 +170735685443,429,0 +170735685493,429,0 +170735685541,428,0 +170735685590,429,0 +170735685638,429,0 +170735685688,429,0 +170735685736,429,0 +170735685784,429,0 +170735685831,429,0 +170735685881,429,0 +170735685929,429,0 +170735685978,429,0 +170735686026,426,0 +170735686074,308,1 +170735686153,237,0 +170735686201,428,0 +170735686249,429,0 +170735686297,429,0 +170735686347,429,0 +170735686395,428,0 +170735686443,429,0 +170735686491,430,0 +170735686539,429,0 +170735686588,429,0 +170735686636,429,0 +170735686684,429,0 +170735686732,428,0 +170735686780,430,0 +170735686827,429,0 +170735686875,428,0 +170735686923,429,0 +170735686971,428,0 +170735687021,430,0 +170735687069,428,0 +170735687118,262,0 +170735687166,304,1 +170735687246,421,0 +170735687294,423,0 +170735687342,423,0 +170735687390,423,0 +170735687438,424,0 +170735687485,423,0 +170735687538,423,0 +170735687586,425,0 +170735687636,424,0 +170735687683,423,0 +170735687736,424,0 +170735687784,424,0 +170735687837,424,0 +170735687886,423,0 +170735687934,423,0 +170735687982,423,0 +170735688032,423,0 +170735688081,422,0 +170735688129,420,0 +170735688177,295,1 +170735688260,323,0 +170735688308,422,0 +170735688356,423,0 +170735688406,423,0 +170735688454,424,0 +170735688502,422,0 +170735688550,423,0 +170735688598,425,0 +170735688650,424,0 +170735688703,424,0 +170735688753,423,0 +170735688805,422,0 +170735688855,422,0 +170735688903,423,0 +170735688952,423,0 +170735689000,423,0 +170735689048,424,0 +170735689101,424,0 +170735689149,423,0 +170735689197,274,1 +170735689280,296,1 +170735689362,422,0 +170735689411,423,0 +170735689459,424,0 +170735689508,424,0 +170735689558,424,0 +170735689608,423,0 +170735689660,424,0 +170735689708,423,0 +170735689756,423,0 +170735689806,423,0 +170735689858,424,0 +170735689911,423,0 +170735689959,424,0 +170735690007,423,0 +170735690055,423,0 +170735690103,424,0 +170735690152,422,0 +170735690202,425,0 +170735690251,292,1 +170735690335,261,0 +170735690383,422,0 +170735690436,422,0 +170735690484,422,0 +170735690536,423,0 +170735690584,423,0 +170735690637,422,0 +170735690690,423,0 +170735690738,423,0 +170735690786,425,0 +170735690834,424,0 +170735690887,423,0 +170735690939,423,0 +170735690987,424,0 +170735691035,424,0 +170735691083,423,0 +170735691136,423,0 +170735691186,423,0 +170735691233,424,0 +170735691286,418,0 +170735691334,293,1 +170735691411,379,0 +170735691463,423,0 +170735691513,422,0 +170735691561,423,0 +170735691614,423,0 +170735691663,425,0 +170735691711,423,0 +170735691759,424,0 +170735691809,423,0 +170735691857,423,0 +170735691904,424,0 +170735691957,423,0 +170735692005,424,0 +170735692055,423,0 +170735692107,423,0 +170735692157,423,0 +170735692205,423,0 +170735692254,423,0 +170735692304,422,0 +170735692354,298,1 +170735692440,234,0 +170735692489,419,0 +170735692542,421,0 +170735692595,421,0 +170735692647,423,0 +170735692700,422,0 +170735692753,421,0 +170735692806,422,0 +170735692858,423,0 +170735692911,421,0 +170735692964,422,0 +170735693017,422,0 +170735693064,420,0 +170735693117,421,0 +170735693170,422,0 +170735693223,421,0 +170735693271,421,0 +170735693323,420,0 +170735693376,414,0 +170735693426,307,1 +170735693508,391,0 +170735693561,420,0 +170735693614,421,0 +170735693666,422,0 +170735693719,421,0 +170735693772,422,0 +170735693824,421,0 +170735693877,420,0 +170735693930,421,0 +170735693983,420,0 +170735694035,420,0 +170735694088,420,0 +170735694141,420,0 +170735694194,420,0 +170735694246,420,0 +170735694299,422,0 +170735694352,421,0 +170735694405,419,0 +170735694457,296,1 +170735694542,278,1 +170735694621,420,0 +170735694674,421,0 +170735694726,420,0 +170735694779,421,0 +170735694832,422,0 +170735694885,422,0 +170735694937,420,0 +170735694990,421,0 +170735695043,421,0 +170735695096,421,0 +170735695148,419,0 +170735695201,421,0 +170735695254,420,0 +170735695306,420,0 +170735695359,421,0 +170735695412,422,0 +170735695465,419,0 +170735695513,308,1 +170735695591,253,0 +170735695641,416,0 +170735695694,421,0 +170735695746,420,0 +170735695799,421,0 +170735695852,421,0 +170735695905,421,0 +170735695957,420,0 +170735696010,420,0 +170735696063,420,0 +170735696116,420,0 +170735696168,420,0 +170735696221,422,0 +170735696274,421,0 +170735696327,420,0 +170735696379,420,0 +170735696432,420,0 +170735696485,420,0 +170735696538,305,1 +170735696629,243,0 +170735696679,419,0 +170735696732,421,0 +170735696785,420,0 +170735696837,421,0 +170735696890,421,0 +170735696943,421,0 +170735696995,421,0 +170735697048,422,0 +170735697101,420,0 +170735697154,421,0 +170735697206,421,0 +170735697259,420,0 +170735697312,421,0 +170735697364,421,0 +170735697412,421,0 +170735697465,423,0 +170735697518,421,0 +170735697571,412,0 +170735697623,307,1 +170735697701,384,0 +170735697754,420,0 +170735697807,421,0 +170735697864,419,0 +170735697917,421,0 +170735697970,423,0 +170735698022,421,0 +170735698075,421,0 +170735698128,422,0 +170735698181,421,0 +170735698233,420,0 +170735698286,420,0 +170735698339,421,0 +170735698392,420,0 +170735698444,421,0 +170735698497,422,0 +170735698550,422,0 +170735698603,419,0 +170735698655,307,1 +170735698736,234,0 +170735698784,420,0 +170735698837,421,0 +170735698890,420,0 +170735698943,421,0 +170735698996,421,0 +170735699048,421,0 +170735699101,420,0 +170735699154,421,0 +170735699207,421,0 +170735699259,421,0 +170735699312,420,0 +170735699365,421,0 +170735699417,421,0 +170735699470,422,0 +170735699523,421,0 +170735699576,421,0 +170735699628,420,0 +170735699681,295,1 +170735699779,234,0 +170735699827,420,0 +170735699880,422,0 +170735699933,420,0 +170735699985,421,0 +170735700038,421,0 +170735700091,420,0 +170735700143,420,0 +170735700196,421,0 +170735700249,420,0 +170735700302,420,0 +170735700355,420,0 +170735700407,421,0 +170735700460,421,0 +170735700513,420,0 +170735700566,421,0 +170735700618,421,0 +170735700671,419,0 +170735700724,298,1 +170735700811,267,0 +170735700859,415,0 +170735700911,421,0 +170735700964,420,0 +170735701012,420,0 +170735701065,422,0 +170735701117,421,0 +170735701170,421,0 +170735701223,420,0 +170735701276,421,0 +170735701328,421,0 +170735701381,420,0 +170735701434,421,0 +170735701487,421,0 +170735701539,421,0 +170735701592,420,0 +170735701645,422,0 +170735701698,421,0 +170735701750,419,0 +170735701803,306,1 +170735701885,247,0 +170735701932,420,0 +170735701985,420,0 +170735702038,420,0 +170735702091,421,0 +170735702143,421,0 +170735702196,422,0 +170735702249,421,0 +170735702302,421,0 +170735702354,421,0 +170735702407,420,0 +170735702460,422,0 +170735702513,421,0 +170735702565,421,0 +170735702618,421,0 +170735702671,421,0 +170735702724,422,0 +170735702776,420,0 +170735702829,263,0 +170735702882,306,1 +170735702965,413,0 +170735703017,421,0 +170735703070,421,0 +170735703123,421,0 +170735703176,422,0 +170735703229,421,0 +170735703281,421,0 +170735703334,421,0 +170735703387,420,0 +170735703439,420,0 +170735703492,422,0 +170735703545,421,0 +170735703598,421,0 +170735703650,421,0 +170735703703,420,0 +170735703756,422,0 +170735703809,420,0 +170735703862,391,0 +170735703914,305,1 +170735703995,401,0 +170735704048,420,0 +170735704101,421,0 +170735704153,421,0 +170735704206,421,0 +170735704259,420,0 +170735704311,423,0 +170735704361,421,0 +170735704414,420,0 +170735704467,420,0 +170735704519,421,0 +170735704572,421,0 +170735704625,421,0 +170735704677,420,0 +170735704730,421,0 +170735704783,421,0 +170735704836,421,0 +170735704888,419,0 +170735704941,300,1 +170735705030,347,0 +170735705079,420,0 +170735705132,421,0 +170735705185,421,0 +170735705237,421,0 +170735705290,421,0 +170735705343,422,0 +170735705396,421,0 +170735705448,420,0 +170735705501,422,0 +170735705554,422,0 +170735705607,421,0 +170735705659,422,0 +170735705712,421,0 +170735705765,422,0 +170735705818,420,0 +170735705870,420,0 +170735705923,420,0 +170735705976,283,1 +170735706067,245,0 +170735706115,419,0 +170735706168,420,0 +170735706221,419,0 +170735706273,421,0 +170735706326,420,0 +170735706379,420,0 +170735706432,420,0 +170735706484,420,0 +170735706537,420,0 +170735706590,419,0 +170735706643,420,0 +170735706700,419,0 +170735706753,420,0 +170735706806,420,0 +170735706858,420,0 +170735706911,421,0 +170735706964,420,0 +170735707016,279,1 +170735707099,274,1 +170735707177,418,0 +170735707230,420,0 +170735707283,419,0 +170735707336,419,0 +170735707389,421,0 +170735707441,422,0 +170735707494,420,0 +170735707547,420,0 +170735707600,420,0 +170735707652,420,0 +170735707705,420,0 +170735707758,420,0 +170735707811,420,0 +170735707863,420,0 +170735707916,420,0 +170735707969,421,0 +170735708022,419,0 +170735708074,299,1 +170735708157,257,0 +170735708205,417,0 +170735708258,420,0 +170735708315,419,0 +170735708368,420,0 +170735708421,420,0 +170735708473,420,0 +170735708526,419,0 +170735708579,420,0 +170735708632,420,0 +170735708685,421,0 +170735708737,420,0 +170735708790,420,0 +170735708843,420,0 +170735708896,421,0 +170735708948,419,0 +170735709001,420,0 +170735709054,420,0 +170735709106,409,0 +170735709159,292,1 +170735709243,407,0 +170735709300,420,0 +170735709353,420,0 +170735709406,420,0 +170735709459,420,0 +170735709511,420,0 +170735709564,420,0 +170735709617,420,0 +170735709670,420,0 +170735709722,420,0 +170735709775,420,0 +170735709828,420,0 +170735709880,421,0 +170735709938,420,0 +170735709991,420,0 +170735710043,420,0 +170735710096,419,0 +170735710149,419,0 +170735710202,419,0 +170735710254,419,0 +170735710307,421,0 +170735710360,419,0 +170735710412,420,0 +170735710465,420,0 +170735710518,421,0 +170735710571,420,0 +170735710623,420,0 +170735710676,412,0 +170735710729,302,1 +170735710810,388,0 +170735710863,420,0 +170735710915,420,0 +170735710968,420,0 +170735711021,420,0 +170735711074,420,0 +170735711127,421,0 +170735711179,420,0 +170735711232,421,0 +170735711285,420,0 +170735711338,420,0 +170735711390,420,0 +170735711443,420,0 +170735711496,420,0 +170735711549,421,0 +170735711601,422,0 +170735711649,421,0 +170735711702,417,0 +170735711755,306,1 +170735711835,235,0 +170735711883,419,0 +170735711936,419,0 +170735711989,421,0 +170735712041,420,0 +170735712094,420,0 +170735712147,420,0 +170735712199,421,0 +170735712252,420,0 +170735712305,419,0 +170735712358,420,0 +170735712411,420,0 +170735712463,419,0 +170735712516,420,0 +170735712569,420,0 +170735712621,420,0 +170735712674,421,0 +170735712727,420,0 +170735712779,272,1 +170735712867,283,1 +170735712942,420,0 +170735712995,421,0 +170735713048,420,0 +170735713100,419,0 +170735713153,420,0 +170735713206,420,0 +170735713258,421,0 +170735713311,421,0 +170735713364,419,0 +170735713417,420,0 +170735713469,420,0 +170735713522,421,0 +170735713575,421,0 +170735713628,420,0 +170735713680,420,0 +170735713738,419,0 +170735713791,418,0 +170735713843,312,0 +170735713891,308,1 +170735713969,414,0 +170735714022,419,0 +170735714075,420,0 +170735714128,420,0 +170735714180,421,0 +170735714233,419,0 +170735714286,420,0 +170735714338,420,0 +170735714391,420,0 +170735714444,420,0 +170735714497,419,0 +170735714550,419,0 +170735714602,420,0 +170735714655,420,0 +170735714708,420,0 +170735714761,420,0 +170735714813,420,0 +170735714866,411,0 +170735714919,305,1 +170735715005,395,0 +170735715067,411,0 +170735715130,412,0 +170735715195,410,0 +170735715253,411,0 +170735715315,411,0 +170735715377,411,0 +170735715443,412,0 +170735715505,412,0 +170735715567,412,0 +170735715633,411,0 +170735715695,411,0 +170735715761,411,0 +170735715827,411,0 +170735715892,405,0 +170735715958,304,1 +170735716038,358,0 +170735716095,411,0 +170735716153,411,0 +170735716215,411,0 +170735716281,412,0 +170735716346,410,0 +170735716412,411,0 +170735716478,412,0 +170735716543,411,0 +170735716605,411,0 +170735716668,413,0 +170735716730,412,0 +170735716793,411,0 +170735716855,412,0 +170735716917,411,0 +170735716983,285,1 +170735717071,269,0 +170735717119,1010100,0 +170735717165,413,0 +170735717228,412,0 +170735717293,410,0 +170735717359,410,0 +170735717424,411,0 +170735717486,411,0 +170735717549,411,0 +170735717611,412,0 +170735717677,410,0 +170735717742,412,0 +170735717804,411,0 +170735717867,413,0 +170735717932,409,0 +170735717994,405,0 +170735718057,308,1 +170735718137,365,0 +170735718194,412,0 +170735718256,410,0 +170735718319,412,0 +170735718381,411,0 +170735718439,411,0 +170735718501,412,0 +170735718567,411,0 +170735718629,414,0 +170735718695,411,0 +170735718757,411,0 +170735718819,412,0 +170735718885,412,0 +170735718947,411,0 +170735719004,411,0 +170735719067,306,1 +170735719156,262,0 +170735719204,405,0 +170735719270,411,0 +170735719332,412,0 +170735719394,412,0 +170735719457,412,0 +170735719514,412,0 +170735719576,412,0 +170735719639,413,0 +170735719701,411,0 +170735719763,412,0 +170735719821,409,0 +170735719883,412,0 +170735719945,413,0 +170735720007,413,0 +170735720070,410,0 +170735720127,296,1 +170735720209,258,0 +170735720257,410,0 +170735720319,412,0 +170735720382,412,0 +170735720444,413,0 +170735720501,414,0 +170735720559,414,0 +170735720616,414,0 +170735720674,413,0 +170735720736,414,0 +170735720799,413,0 +170735720856,414,0 +170735720918,413,0 +170735720976,414,0 +170735721033,413,0 +170735721091,412,0 +170735721148,407,0 +170735721206,301,1 +170735721286,374,0 +170735721344,411,0 +170735721406,411,0 +170735721468,413,0 +170735721531,412,0 +170735721588,414,0 +170735721650,412,0 +170735721713,412,0 +170735721775,412,0 +170735721833,413,0 +170735721895,412,0 +170735721957,412,0 +170735722015,413,0 +170735722077,410,0 +170735722140,412,0 +170735722202,286,1 +170735722297,286,1 +170735722376,410,0 +170735722434,413,0 +170735722496,413,0 +170735722558,414,0 +170735722616,414,0 +170735722673,413,0 +170735722731,413,0 +170735722796,413,0 +170735722854,414,0 +170735722911,411,0 +170735722977,414,0 +170735723034,413,0 +170735723096,413,0 +170735723154,412,0 +170735723211,409,0 +170735723269,288,1 +170735723353,295,1 +170735723433,412,0 +170735723490,415,0 +170735723548,413,0 +170735723606,413,0 +170735723668,413,0 +170735723730,412,0 +170735723792,412,0 +170735723855,412,0 +170735723912,413,0 +170735723974,413,0 +170735724032,412,0 +170735724094,414,0 +170735724152,414,0 +170735724214,412,0 +170735724276,410,0 +170735724334,312,0 +170735724382,306,1 +170735724462,411,0 +170735724524,412,0 +170735724586,412,0 +170735724648,413,0 +170735724711,413,0 +170735724768,413,0 +170735724826,412,0 +170735724888,412,0 +170735724953,414,0 +170735725011,413,0 +170735725073,412,0 +170735725136,413,0 +170735725193,413,0 +170735725255,412,0 +170735725313,412,0 +170735725375,289,1 +170735725457,262,0 +170735725505,411,0 +170735725563,412,0 +170735725620,412,0 +170735725682,411,0 +170735725745,412,0 +170735725807,412,0 +170735725873,412,0 +170735725930,413,0 +170735725993,411,0 +170735726050,413,0 +170735726108,414,0 +170735726165,412,0 +170735726223,411,0 +170735726285,412,0 +170735726343,411,0 +170735726400,300,1 +170735726501,246,0 +170735726550,409,0 +170735726613,412,0 +170735726670,414,0 +170735726733,414,0 +170735726790,412,0 +170735726848,411,0 +170735726905,413,0 +170735726963,414,0 +170735727020,410,0 +170735727082,412,0 +170735727145,411,0 +170735727202,413,0 +170735727260,414,0 +170735727322,413,0 +170735727379,411,0 +170735727442,298,1 +170735727537,316,0 +170735727585,394,0 +170735727642,415,0 +170735727699,414,0 +170735727762,413,0 +170735727820,413,0 +170735727882,413,0 +170735727940,414,0 +170735728002,413,0 +170735728064,412,0 +170735728126,413,0 +170735728189,412,0 +170735728246,412,0 +170735728309,413,0 +170735728371,411,0 +170735728429,411,0 +170735728491,391,0 +170735728553,305,1 +170735728632,394,0 +170735728694,410,0 +170735728757,411,0 +170735728819,412,0 +170735728881,413,0 +170735728944,412,0 +170735729006,412,0 +170735729068,412,0 +170735729126,412,0 +170735729188,411,0 +170735729246,412,0 +170735729308,412,0 +170735729370,411,0 +170735729433,411,0 +170735729495,409,0 +170735729558,281,1 +170735729637,287,1 +170735729718,411,0 +170735729781,411,0 +170735729846,413,0 +170735729909,413,0 +170735729971,413,0 +170735730028,411,0 +170735730091,415,0 +170735730148,412,0 +170735730205,411,0 +170735730271,413,0 +170735730333,412,0 +170735730396,412,0 +170735730458,412,0 +170735730515,411,0 +170735730573,403,0 +170735730635,293,1 +170735730719,382,0 +170735730776,413,0 +170735730839,412,0 +170735730901,411,0 +170735730958,414,0 +170735731021,414,0 +170735731078,415,0 +170735731136,413,0 +170735731198,414,0 +170735731256,412,0 +170735731313,412,0 +170735731375,413,0 +170735731438,412,0 +170735731495,412,0 +170735731557,411,0 +170735731615,411,0 +170735731677,297,1 +170735731764,331,0 +170735731812,411,0 +170735731869,412,0 +170735731931,413,0 +170735731984,412,0 +170735732046,412,0 +170735732104,412,0 +170735732169,412,0 +170735732227,413,0 +170735732289,413,0 +170735732346,413,0 +170735732409,413,0 +170735732471,414,0 +170735732529,413,0 +170735732586,414,0 +170735732644,413,0 +170735732709,296,1 +170735732792,261,0 +170735732841,409,0 +170735732907,412,0 +170735732969,413,0 +170735733031,413,0 +170735733094,415,0 +170735733156,413,0 +170735733214,414,0 +170735733271,413,0 +170735733329,413,0 +170735733391,413,0 +170735733453,415,0 +170735733511,412,0 +170735733569,413,0 +170735733631,412,0 +170735733688,412,0 +170735733741,296,1 +170735733842,238,0 +170735733890,411,0 +170735733952,412,0 +170735734014,413,0 +170735734072,413,0 +170735734134,413,0 +170735734197,414,0 +170735734259,413,0 +170735734321,413,0 +170735734384,412,0 +170735734446,415,0 +170735734503,413,0 +170735734566,413,0 +170735734628,412,0 +170735734690,413,0 +170735734748,411,0 +170735734810,300,1 +170735734891,234,0 +170735734939,412,0 +170735735001,412,0 +170735735059,413,0 +170735735112,413,0 +170735735174,412,0 +170735735236,413,0 +170735735294,414,0 +170735735347,413,0 +170735735409,415,0 +170735735467,412,0 +170735735524,415,0 +170735735587,411,0 +170735735649,411,0 +170735735711,412,0 +170735735774,412,0 +170735735831,382,0 +170735735894,299,1 +170735735979,402,0 +170735736041,413,0 +170735736099,415,0 +170735736156,413,0 +170735736219,414,0 +170735736276,411,0 +170735736329,413,0 +170735736387,413,0 +170735736449,414,0 +170735736506,414,0 +170735736569,412,0 +170735736631,413,0 +170735736689,413,0 +170735736751,414,0 +170735736813,415,0 +170735736866,402,0 +170735736928,300,1 +170735737015,403,0 +170735737081,413,0 +170735737138,413,0 +170735737196,415,0 +170735737253,414,0 +170735737319,413,0 +170735737376,414,0 +170735737434,415,0 +170735737491,413,0 +170735737554,413,0 +170735737616,413,0 +170735737673,413,0 +170735737736,413,0 +170735737793,414,0 +170735737851,413,0 +170735737908,409,0 +170735737966,293,1 +170735738044,241,0 +170735738093,412,0 +170735738155,412,0 +170735738218,414,0 +170735738275,414,0 +170735738333,412,0 +170735738390,414,0 +170735738453,415,0 +170735738510,415,0 +170735738568,414,0 +170735738633,414,0 +170735738695,413,0 +170735738753,413,0 +170735738810,413,0 +170735738873,411,0 +170735738938,411,0 +170735739001,266,0 +170735739049,294,1 +170735739137,409,0 +170735739199,412,0 +170735739261,412,0 +170735739319,413,0 +170735739381,412,0 +170735739439,414,0 +170735739501,414,0 +170735739563,412,0 +170735739621,413,0 +170735739683,414,0 +170735739741,414,0 +170735739803,411,0 +170735739865,411,0 +170735739928,413,0 +170735739985,413,0 +170735740043,301,1 +170735740135,245,0 +170735740184,412,0 +170735740242,412,0 +170735740307,412,0 +170735740370,412,0 +170735740427,412,0 +170735740489,411,0 +170735740547,413,0 +170735740605,413,0 +170735740662,411,0 +170735740720,414,0 +170735740777,414,0 +170735740835,414,0 +170735740892,413,0 +170735740954,414,0 +170735741017,411,0 +170735741079,269,0 +170735741141,298,1 +170735741226,408,0 +170735741291,412,0 +170735741349,411,0 +170735741411,413,0 +170735741469,413,0 +170735741531,412,0 +170735741593,415,0 +170735741655,413,0 +170735741718,413,0 +170735741780,414,0 +170735741842,414,0 +170735741900,415,0 +170735741957,415,0 +170735742015,414,0 +170735742072,414,0 +170735742129,291,1 +170735742219,306,1 +170735742301,413,0 +170735742358,412,0 +170735742421,414,0 +170735742483,414,0 +170735742545,414,0 +170735742603,413,0 +170735742660,412,0 +170735742723,415,0 +170735742780,413,0 +170735742838,413,0 +170735742895,415,0 +170735742953,412,0 +170735743010,415,0 +170735743068,412,0 +170735743130,412,0 +170735743188,292,1 +170735743274,263,0 +170735743323,411,0 +170735743389,415,0 +170735743447,415,0 +170735743509,415,0 +170735743571,414,0 +170735743629,416,0 +170735743691,414,0 +170735743753,414,0 +170735743816,414,0 +170735743873,414,0 +170735743931,415,0 +170735743988,414,0 +170735744046,414,0 +170735744103,412,0 +170735744166,413,0 +170735744223,290,1 +170735744312,269,0 +170735744362,411,0 +170735744427,414,0 +170735744485,414,0 +170735744542,412,0 +170735744604,414,0 +170735744667,414,0 +170735744729,412,0 +170735744787,414,0 +170735744844,414,0 +170735744902,414,0 +170735744964,414,0 +170735745022,415,0 +170735745079,414,0 +170735745142,416,0 +170735745199,412,0 +170735745257,409,0 +170735745314,296,1 +170735745397,372,0 +170735745454,413,0 +170735745517,413,0 +170735745579,412,0 +170735745641,414,0 +170735745704,411,0 +170735745761,411,0 +170735745823,413,0 +170735745886,411,0 +170735745948,412,0 +170735746010,414,0 +170735746068,414,0 +170735746126,414,0 +170735746183,415,0 +170735746241,412,0 +170735746303,411,0 +170735746361,297,1 +170735746444,243,0 +170735746492,414,0 +170735746554,415,0 +170735746616,412,0 +170735746679,415,0 +170735746736,413,0 +170735746794,413,0 +170735746851,414,0 +170735746909,414,0 +170735746971,414,0 +170735747029,415,0 +170735747091,414,0 +170735747149,415,0 +170735747206,414,0 +170735747268,414,0 +170735747331,414,0 +170735747388,302,1 +170735747471,245,0 +170735747518,411,0 +170735747581,414,0 +170735747638,414,0 +170735747696,414,0 +170735747753,416,0 +170735747811,411,0 +170735747868,412,0 +170735747931,414,0 +170735747988,414,0 +170735748051,412,0 +170735748113,413,0 +170735748175,412,0 +170735748233,414,0 +170735748295,414,0 +170735748353,414,0 +170735748410,343,0 +170735748472,293,1 +170735748552,395,0 +170735748609,413,0 +170735748667,412,0 +170735748729,414,0 +170735748792,414,0 +170735748849,414,0 +170735748907,415,0 +170735748964,413,0 +170735749022,414,0 +170735749079,413,0 +170735749137,413,0 +170735749194,411,0 +170735749252,411,0 +170735749314,413,0 +170735749377,414,0 +170735749439,410,0 +170735749497,284,1 +170735749574,256,0 +170735749622,412,0 +170735749684,414,0 +170735749747,413,0 +170735749809,413,0 +170735749871,413,0 +170735749929,413,0 +170735749991,413,0 +170735750049,412,0 +170735750111,412,0 +170735750173,415,0 +170735750231,413,0 +170735750293,415,0 +170735750351,414,0 +170735750413,413,0 +170735750475,409,0 +170735750538,302,1 +170735750619,237,0 +170735750667,411,0 +170735750729,414,0 +170735750787,413,0 +170735750845,414,0 +170735750902,415,0 +170735750960,414,0 +170735751017,412,0 +170735751079,413,0 +170735751142,413,0 +170735751199,415,0 +170735751257,413,0 +170735751314,412,0 +170735751372,413,0 +170735751429,413,0 +170735751487,414,0 +170735751549,281,1 +170735751637,297,1 +170735751717,410,0 +170735751779,409,0 +170735751842,410,0 +170735751907,412,0 +170735751969,413,0 +170735752032,412,0 +170735752089,413,0 +170735752155,412,0 +170735752212,411,0 +170735752278,409,0 +170735752340,411,0 +170735752406,411,0 +170735752468,413,0 +170735752530,410,0 +170735752592,398,0 +170735752658,291,1 +170735752737,363,0 +170735752789,409,0 +170735752855,412,0 +170735752912,413,0 +170735752974,409,0 +170735753037,414,0 +170735753094,410,0 +170735753156,412,0 +170735753219,411,0 +170735753281,410,0 +170735753347,411,0 +170735753409,411,0 +170735753467,410,0 +170735753532,411,0 +170735753590,412,0 +170735753652,399,0 +170735753714,301,1 +170735753797,384,0 +170735753854,413,0 +170735753912,412,0 +170735753974,411,0 +170735754036,413,0 +170735754094,414,0 +170735754151,411,0 +170735754214,411,0 +170735754276,413,0 +170735754334,413,0 +170735754396,410,0 +170735754458,413,0 +170735754524,410,0 +170735754581,414,0 +170735754639,409,0 +170735754701,288,1 +170735754801,307,1 +170735754885,410,0 +170735754943,411,0 +170735755005,411,0 +170735755071,412,0 +170735755136,414,0 +170735755199,413,0 +170735755261,413,0 +170735755318,411,0 +170735755384,412,0 +170735755446,412,0 +170735755509,412,0 +170735755571,415,0 +170735755628,413,0 +170735755686,412,0 +170735755743,323,0 +170735755806,298,1 +170735755888,390,0 +170735755950,410,0 +170735756016,410,0 +170735756078,410,0 +170735756140,410,0 +170735756202,411,0 +170735756268,411,0 +170735756325,410,0 +170735756383,410,0 +170735756445,410,0 +170735756503,412,0 +170735756565,413,0 +170735756627,412,0 +170735756685,410,0 +170735756751,408,0 +170735756813,286,1 +170735756906,269,0 +170735756954,407,0 +170735757016,409,0 +170735757081,413,0 +170735757144,413,0 +170735757214,413,0 +170735757276,413,0 +170735757339,413,0 +170735757396,413,0 +170735757454,411,0 +170735757516,410,0 +170735757578,411,0 +170735757636,411,0 +170735757698,411,0 +170735757760,413,0 +170735757823,405,0 +170735757888,296,1 +170735757969,324,0 +170735758016,411,0 +170735758079,411,0 +170735758136,409,0 +170735758206,409,0 +170735758264,409,0 +170735758330,411,0 +170735758387,413,0 +170735758450,412,0 +170735758515,412,0 +170735758577,410,0 +170735758635,411,0 +170735758693,412,0 +170735758755,411,0 +170735758817,412,0 +170735758883,404,0 +170735758945,267,0 +170735758993,273,1 +170735759075,411,0 +170735759137,408,0 +170735759200,411,0 +170735759262,411,0 +170735759324,408,0 +170735759390,412,0 +170735759447,412,0 +170735759513,410,0 +170735759575,412,0 +170735759638,411,0 +170735759700,409,0 +170735759762,409,0 +170735759820,409,0 +170735759882,413,0 +170735759944,288,1 diff --git a/laser_value/0208-12.csv b/laser_value/0208-12.csv new file mode 100644 index 0000000..c015532 --- /dev/null +++ b/laser_value/0208-12.csv @@ -0,0 +1,6746 @@ +timestamp,laser_value,event +170735760040,304,1 +170735760118,410,0 +170735760184,409,0 +170735760246,408,0 +170735760308,409,0 +170735760374,412,0 +170735760436,411,0 +170735760498,412,0 +170735760564,410,0 +170735760626,412,0 +170735760689,411,0 +170735760751,412,0 +170735760813,411,0 +170735760876,407,0 +170735760938,412,0 +170735761000,289,1 +170735761097,286,1 +170735761179,411,0 +170735761241,411,0 +170735761304,413,0 +170735761366,412,0 +170735761423,411,0 +170735761486,410,0 +170735761548,411,0 +170735761610,412,0 +170735761673,411,0 +170735761738,411,0 +170735761804,410,0 +170735761866,411,0 +170735761928,411,0 +170735761990,411,0 +170735762053,279,1 +170735762149,252,0 +170735762197,410,0 +170735762259,413,0 +170735762322,414,0 +170735762384,411,0 +170735762446,412,0 +170735762509,413,0 +170735762571,413,0 +170735762633,413,0 +170735762691,412,0 +170735762753,411,0 +170735762810,411,0 +170735762873,410,0 +170735762935,406,0 +170735762992,410,0 +170735763058,410,0 +170735763120,293,1 +170735763203,251,0 +170735763251,411,0 +170735763316,415,0 +170735763374,412,0 +170735763436,414,0 +170735763501,412,0 +170735763564,410,0 +170735763621,412,0 +170735763678,410,0 +170735763736,411,0 +170735763801,413,0 +170735763859,410,0 +170735763921,410,0 +170735763979,413,0 +170735764041,412,0 +170735764099,411,0 +170735764161,289,1 +170735764239,282,1 +170735764318,411,0 +170735764381,409,0 +170735764443,412,0 +170735764505,411,0 +170735764568,411,0 +170735764625,412,0 +170735764687,411,0 +170735764750,411,0 +170735764807,409,0 +170735764870,410,0 +170735764935,412,0 +170735764993,412,0 +170735765050,413,0 +170735765112,412,0 +170735765170,408,0 +170735765232,299,1 +170735765311,300,1 +170735765392,410,0 +170735765455,414,0 +170735765512,413,0 +170735765574,412,0 +170735765632,413,0 +170735765694,413,0 +170735765752,412,0 +170735765814,411,0 +170735765872,413,0 +170735765929,410,0 +170735765992,411,0 +170735766049,412,0 +170735766107,412,0 +170735766169,414,0 +170735766227,402,0 +170735766289,301,1 +170735766371,382,0 +170735766433,411,0 +170735766499,414,0 +170735766556,413,0 +170735766614,411,0 +170735766676,411,0 +170735766738,411,0 +170735766796,411,0 +170735766854,412,0 +170735766916,410,0 +170735766978,411,0 +170735767040,411,0 +170735767103,410,0 +170735767165,411,0 +170735767227,412,0 +170735767285,287,1 +170735767378,306,1 +170735767458,410,0 +170735767516,412,0 +170735767578,412,0 +170735767641,411,0 +170735767703,410,0 +170735767765,413,0 +170735767827,411,0 +170735767885,411,0 +170735767950,411,0 +170735768013,411,0 +170735768075,409,0 +170735768141,411,0 +170735768198,414,0 +170735768256,412,0 +170735768313,409,0 +170735768376,292,1 +170735768460,267,0 +170735768510,410,0 +170735768575,411,0 +170735768641,409,0 +170735768706,409,0 +170735768769,412,0 +170735768831,413,0 +170735768893,409,0 +170735768959,410,0 +170735769021,409,0 +170735769084,411,0 +170735769146,411,0 +170735769208,412,0 +170735769271,412,0 +170735769333,412,0 +170735769390,386,0 +170735769453,296,1 +170735769533,401,0 +170735769599,412,0 +170735769661,413,0 +170735769727,412,0 +170735769789,411,0 +170735769851,412,0 +170735769914,412,0 +170735769976,412,0 +170735770034,410,0 +170735770099,413,0 +170735770162,410,0 +170735770224,412,0 +170735770286,409,0 +170735770357,410,0 +170735770422,386,0 +170735770488,298,1 +170735770570,387,0 +170735770632,410,0 +170735770694,412,0 +170735770756,411,0 +170735770819,412,0 +170735770884,411,0 +170735770946,411,0 +170735771009,411,0 +170735771071,413,0 +170735771133,409,0 +170735771191,412,0 +170735771248,413,0 +170735771306,411,0 +170735771368,412,0 +170735771426,411,0 +170735771483,286,1 +170735771582,296,1 +170735771661,409,0 +170735771724,414,0 +170735771781,411,0 +170735771839,412,0 +170735771896,413,0 +170735771954,411,0 +170735772016,412,0 +170735772079,410,0 +170735772144,412,0 +170735772202,412,0 +170735772264,411,0 +170735772326,408,0 +170735772384,411,0 +170735772441,408,0 +170735772504,409,0 +170735772566,295,1 +170735772646,233,0 +170735772694,408,0 +170735772756,408,0 +170735772814,410,0 +170735772879,411,0 +170735772942,410,0 +170735773004,412,0 +170735773061,414,0 +170735773124,410,0 +170735773186,409,0 +170735773248,411,0 +170735773306,411,0 +170735773368,413,0 +170735773430,411,0 +170735773493,412,0 +170735773550,404,0 +170735773608,276,1 +170735773685,279,1 +170735773766,411,0 +170735773828,412,0 +170735773893,410,0 +170735773951,411,0 +170735774013,411,0 +170735774071,409,0 +170735774128,410,0 +170735774190,411,0 +170735774252,413,0 +170735774315,410,0 +170735774377,413,0 +170735774439,410,0 +170735774497,411,0 +170735774559,412,0 +170735774612,406,0 +170735774674,300,1 +170735774755,329,0 +170735774803,411,0 +170735774865,407,0 +170735774927,411,0 +170735774992,413,0 +170735775050,409,0 +170735775112,410,0 +170735775170,410,0 +170735775227,410,0 +170735775289,411,0 +170735775352,410,0 +170735775409,412,0 +170735775471,411,0 +170735775533,408,0 +170735775596,411,0 +170735775661,407,0 +170735775723,295,1 +170735775804,288,1 +170735775883,411,0 +170735775945,409,0 +170735776010,415,0 +170735776068,409,0 +170735776130,409,0 +170735776196,409,0 +170735776261,410,0 +170735776319,413,0 +170735776381,411,0 +170735776443,409,0 +170735776505,408,0 +170735776568,407,0 +170735776633,412,0 +170735776695,408,0 +170735776758,287,1 +170735776838,246,0 +170735776886,410,0 +170735776952,411,0 +170735777014,409,0 +170735777077,410,0 +170735777139,412,0 +170735777201,412,0 +170735777259,409,0 +170735777321,408,0 +170735777384,409,0 +170735777449,409,0 +170735777511,411,0 +170735777577,411,0 +170735777639,411,0 +170735777702,410,0 +170735777764,399,0 +170735777826,303,1 +170735777908,377,0 +170735777970,407,0 +170735778036,411,0 +170735778098,410,0 +170735778160,412,0 +170735778226,412,0 +170735778292,412,0 +170735778354,410,0 +170735778416,411,0 +170735778482,410,0 +170735778547,410,0 +170735778610,412,0 +170735778672,412,0 +170735778734,410,0 +170735778796,405,0 +170735778862,285,1 +170735778940,254,0 +170735778990,409,0 +170735779052,411,0 +170735779110,412,0 +170735779172,413,0 +170735779234,410,0 +170735779297,414,0 +170735779362,411,0 +170735779428,411,0 +170735779490,411,0 +170735779553,409,0 +170735779615,410,0 +170735779677,411,0 +170735779740,412,0 +170735779797,410,0 +170735779863,407,0 +170735779920,292,1 +170735780009,379,0 +170735780071,410,0 +170735780133,410,0 +170735780196,409,0 +170735780258,409,0 +170735780320,408,0 +170735780386,411,0 +170735780448,409,0 +170735780511,409,0 +170735780573,411,0 +170735780639,408,0 +170735780701,410,0 +170735780763,408,0 +170735780826,408,0 +170735780896,405,0 +170735780966,297,1 +170735781047,376,0 +170735781110,407,0 +170735781175,406,0 +170735781238,408,0 +170735781303,408,0 +170735781365,407,0 +170735781423,411,0 +170735781485,409,0 +170735781547,407,0 +170735781610,410,0 +170735781672,411,0 +170735781738,408,0 +170735781803,411,0 +170735781865,409,0 +170735781928,402,0 +170735781998,306,1 +170735782078,256,0 +170735782126,407,0 +170735782183,408,0 +170735782249,407,0 +170735782311,411,0 +170735782374,410,0 +170735782436,413,0 +170735782498,410,0 +170735782564,411,0 +170735782621,409,0 +170735782683,408,0 +170735782746,410,0 +170735782803,408,0 +170735782866,409,0 +170735782931,411,0 +170735782997,407,0 +170735783062,290,1 +170735783139,243,0 +170735783188,1010100,0 +170735783235,409,0 +170735783300,408,0 +170735783366,407,0 +170735783436,407,0 +170735783502,408,0 +170735783572,407,0 +170735783638,411,0 +170735783700,409,0 +170735783766,408,0 +170735783828,408,0 +170735783890,407,0 +170735783956,407,0 +170735784021,409,0 +170735784084,281,1 +170735784182,246,0 +170735784230,1010100,0 +170735784276,407,0 +170735784342,405,0 +170735784407,406,0 +170735784478,408,0 +170735784540,409,0 +170735784602,406,0 +170735784672,409,0 +170735784738,407,0 +170735784800,408,0 +170735784871,407,0 +170735784936,404,0 +170735785002,405,0 +170735785072,407,0 +170735785138,298,1 +170735785221,277,1 +170735785299,405,0 +170735785374,1010100,0 +170735785422,407,0 +170735785492,1010100,0 +170735785538,1010100,0 +170735785585,407,0 +170735785647,407,0 +170735785713,406,0 +170735785778,409,0 +170735785844,407,0 +170735785909,410,0 +170735785971,409,0 +170735786037,407,0 +170735786099,408,0 +170735786165,388,0 +170735786230,301,1 +170735786310,1010100,0 +170735786357,404,0 +170735786422,406,0 +170735786485,409,0 +170735786550,404,0 +170735786612,407,0 +170735786683,1010100,0 +170735786729,1010100,0 +170735786775,1010100,0 +170735786822,410,0 +170735786884,408,0 +170735786949,406,0 +170735787015,409,0 +170735787085,407,0 +170735787143,404,0 +170735787208,399,0 +170735787274,299,1 +170735787354,383,0 +170735787419,408,0 +170735787482,408,0 +170735787544,410,0 +170735787610,410,0 +170735787675,408,0 +170735787741,1010100,0 +170735787787,406,0 +170735787852,406,0 +170735787918,408,0 +170735787983,407,0 +170735788054,405,0 +170735788119,408,0 +170735788185,410,0 +170735788250,398,0 +170735788316,304,1 +170735788400,397,0 +170735788470,407,0 +170735788540,406,0 +170735788603,1010100,0 +170735788651,406,0 +170735788716,410,0 +170735788782,408,0 +170735788839,407,0 +170735788905,408,0 +170735788967,410,0 +170735789033,408,0 +170735789103,1010100,0 +170735789149,405,0 +170735789211,407,0 +170735789274,410,0 +170735789339,301,1 +170735789421,246,0 +170735789469,405,0 +170735789535,408,0 +170735789600,1010100,0 +170735789646,406,0 +170735789709,1010100,0 +170735789757,403,0 +170735789822,410,0 +170735789875,407,0 +170735789941,406,0 +170735790006,407,0 +170735790072,1010100,0 +170735790118,408,0 +170735790180,408,0 +170735790251,409,0 +170735790313,409,0 +170735790378,284,1 +170735790477,259,0 +170735790525,400,0 +170735790590,405,0 +170735790656,407,0 +170735790726,406,0 +170735790792,1010100,0 +170735790838,408,0 +170735790903,411,0 +170735790969,407,0 +170735791026,409,0 +170735791092,407,0 +170735791162,408,0 +170735791232,406,0 +170735791298,410,0 +170735791360,405,0 +170735791426,289,1 +170735791523,246,0 +170735791572,403,0 +170735791638,1010100,0 +170735791684,404,0 +170735791746,406,0 +170735791812,406,0 +170735791877,407,0 +170735791943,408,0 +170735792005,409,0 +170735792063,406,0 +170735792133,404,0 +170735792203,407,0 +170735792269,408,0 +170735792335,405,0 +170735792400,407,0 +170735792466,289,1 +170735792569,242,0 +170735792618,1010100,0 +170735792665,404,0 +170735792730,1010100,0 +170735792776,409,0 +170735792847,408,0 +170735792912,408,0 +170735792978,409,0 +170735793043,1010100,0 +170735793090,406,0 +170735793155,407,0 +170735793218,407,0 +170735793283,407,0 +170735793353,406,0 +170735793419,409,0 +170735793485,401,0 +170735793550,306,1 +170735793637,355,0 +170735793695,406,0 +170735793760,405,0 +170735793831,1010100,0 +170735793877,410,0 +170735793943,407,0 +170735794008,1010100,0 +170735794056,408,0 +170735794122,407,0 +170735794187,410,0 +170735794249,1010100,0 +170735794296,409,0 +170735794366,403,0 +170735794432,404,0 +170735794497,407,0 +170735794563,280,1 +170735794660,280,1 +170735794743,407,0 +170735794805,406,0 +170735794876,409,0 +170735794938,406,0 +170735795003,408,0 +170735795074,1010100,0 +170735795120,404,0 +170735795182,408,0 +170735795248,404,0 +170735795310,1010100,0 +170735795357,408,0 +170735795419,409,0 +170735795484,405,0 +170735795550,407,0 +170735795612,290,1 +170735795711,232,0 +170735795759,408,0 +170735795829,409,0 +170735795891,408,0 +170735795954,407,0 +170735796016,408,0 +170735796074,409,0 +170735796136,405,0 +170735796202,1010100,0 +170735796248,408,0 +170735796310,1010100,0 +170735796360,407,0 +170735796422,410,0 +170735796484,408,0 +170735796550,407,0 +170735796620,402,0 +170735796686,305,1 +170735796771,234,0 +170735796820,411,0 +170735796886,408,0 +170735796948,1010100,0 +170735796994,406,0 +170735797060,409,0 +170735797130,408,0 +170735797196,409,0 +170735797266,1010100,0 +170735797312,407,0 +170735797375,407,0 +170735797437,1010100,0 +170735797485,1010100,0 +170735797531,409,0 +170735797594,407,0 +170735797659,1010100,0 +170735797706,293,1 +170735797800,294,1 +170735797878,406,0 +170735797944,410,0 +170735798006,410,0 +170735798068,408,0 +170735798139,410,0 +170735798204,408,0 +170735798266,408,0 +170735798337,409,0 +170735798399,408,0 +170735798461,407,0 +170735798526,408,0 +170735798597,1010100,0 +170735798643,407,0 +170735798709,407,0 +170735798779,299,1 +170735798865,235,0 +170735798915,407,0 +170735798980,410,0 +170735799046,410,0 +170735799108,409,0 +170735799170,408,0 +170735799236,409,0 +170735799302,408,0 +170735799372,406,0 +170735799442,1010100,0 +170735799488,406,0 +170735799554,407,0 +170735799619,408,0 +170735799685,406,0 +170735799750,403,0 +170735799821,300,1 +170735799900,289,1 +170735799979,406,0 +170735800044,409,0 +170735800110,409,0 +170735800175,409,0 +170735800245,410,0 +170735800311,407,0 +170735800377,403,0 +170735800442,407,0 +170735800512,407,0 +170735800575,408,0 +170735800640,408,0 +170735800702,409,0 +170735800765,408,0 +170735800830,1010100,0 +170735800878,308,1 +170735800955,254,0 +170735801003,405,0 +170735801068,409,0 +170735801134,405,0 +170735801199,407,0 +170735801257,1010100,0 +170735801303,409,0 +170735801369,1010100,0 +170735801417,412,0 +170735801482,409,0 +170735801545,410,0 +170735801610,408,0 +170735801673,1010100,0 +170735801719,407,0 +170735801781,1010100,0 +170735801827,410,0 +170735801893,275,1 +170735801993,293,1 +170735802070,405,0 +170735802140,407,0 +170735802202,406,0 +170735802268,407,0 +170735802330,1010100,0 +170735802376,407,0 +170735802442,408,0 +170735802507,408,0 +170735802578,406,0 +170735802643,408,0 +170735802714,406,0 +170735802776,409,0 +170735802846,1010100,0 +170735802894,407,0 +170735802960,272,1 +170735803038,293,1 +170735803117,407,0 +170735803182,408,0 +170735803244,1010100,0 +170735803291,409,0 +170735803356,404,0 +170735803426,1010100,0 +170735803473,408,0 +170735803538,410,0 +170735803604,411,0 +170735803661,405,0 +170735803726,406,0 +170735803802,410,0 +170735803864,408,0 +170735803929,409,0 +170735803995,1010100,0 +170735804043,291,1 +170735804121,373,0 +170735804184,406,0 +170735804249,1010100,0 +170735804295,407,0 +170735804361,405,0 +170735804426,406,0 +170735804492,405,0 +170735804557,408,0 +170735804628,409,0 +170735804693,406,0 +170735804759,408,0 +170735804824,410,0 +170735804890,409,0 +170735804956,408,0 +170735805026,400,0 +170735805091,300,1 +170735805173,358,0 +170735805230,407,0 +170735805296,407,0 +170735805361,403,0 +170735805431,1010100,0 +170735805479,407,0 +170735805555,409,0 +170735805617,411,0 +170735805682,1010100,0 +170735805729,406,0 +170735805794,408,0 +170735805856,1010100,0 +170735805903,408,0 +170735805968,406,0 +170735806031,410,0 +170735806093,295,1 +170735806196,250,0 +170735806245,1010100,0 +170735806292,408,0 +170735806354,409,0 +170735806419,405,0 +170735806485,410,0 +170735806550,1010100,0 +170735806598,406,0 +170735806664,404,0 +170735806729,410,0 +170735806795,407,0 +170735806857,408,0 +170735806919,409,0 +170735806985,408,0 +170735807047,1010100,0 +170735807095,404,0 +170735807165,292,1 +170735807248,247,0 +170735807296,410,0 +170735807353,413,0 +170735807411,411,0 +170735807468,413,0 +170735807526,413,0 +170735807584,413,0 +170735807641,411,0 +170735807699,412,0 +170735807756,414,0 +170735807814,413,0 +170735807871,413,0 +170735807929,412,0 +170735807986,412,0 +170735808049,412,0 +170735808111,413,0 +170735808173,404,0 +170735808231,292,1 +170735808307,366,0 +170735808370,411,0 +170735808427,412,0 +170735808485,414,0 +170735808542,412,0 +170735808600,413,0 +170735808657,413,0 +170735808715,414,0 +170735808773,413,0 +170735808830,413,0 +170735808883,414,0 +170735808940,415,0 +170735809003,413,0 +170735809065,414,0 +170735809122,415,0 +170735809180,413,0 +170735809237,406,0 +170735809295,291,1 +170735809374,381,0 +170735809431,413,0 +170735809489,415,0 +170735809547,414,0 +170735809604,412,0 +170735809662,413,0 +170735809719,412,0 +170735809777,411,0 +170735809839,413,0 +170735809897,413,0 +170735809959,413,0 +170735810017,411,0 +170735810074,413,0 +170735810132,414,0 +170735810189,414,0 +170735810247,412,0 +170735810304,311,0 +170735810352,296,1 +170735810436,410,0 +170735810494,412,0 +170735810556,414,0 +170735810614,414,0 +170735810671,413,0 +170735810733,415,0 +170735810791,413,0 +170735810848,412,0 +170735810906,414,0 +170735810963,413,0 +170735811021,413,0 +170735811078,414,0 +170735811140,414,0 +170735811198,413,0 +170735811260,413,0 +170735811318,409,0 +170735811375,299,1 +170735811455,333,0 +170735811503,413,0 +170735811561,414,0 +170735811623,413,0 +170735811681,413,0 +170735811743,413,0 +170735811801,414,0 +170735811863,413,0 +170735811920,414,0 +170735811978,415,0 +170735812035,414,0 +170735812093,413,0 +170735812150,414,0 +170735812208,413,0 +170735812265,412,0 +170735812323,413,0 +170735812385,406,0 +170735812443,300,1 +170735812524,383,0 +170735812581,413,0 +170735812639,414,0 +170735812696,415,0 +170735812754,414,0 +170735812811,414,0 +170735812869,412,0 +170735812931,413,0 +170735812993,411,0 +170735813051,412,0 +170735813109,414,0 +170735813166,414,0 +170735813224,414,0 +170735813281,415,0 +170735813339,414,0 +170735813396,413,0 +170735813454,295,1 +170735813553,234,0 +170735813603,413,0 +170735813665,413,0 +170735813722,414,0 +170735813780,414,0 +170735813842,412,0 +170735813905,412,0 +170735813967,413,0 +170735814025,415,0 +170735814082,413,0 +170735814145,413,0 +170735814202,413,0 +170735814260,412,0 +170735814317,413,0 +170735814375,411,0 +170735814432,411,0 +170735814495,287,1 +170735814580,293,1 +170735814657,412,0 +170735814714,412,0 +170735814772,411,0 +170735814829,413,0 +170735814887,411,0 +170735814940,411,0 +170735814997,413,0 +170735815055,414,0 +170735815112,412,0 +170735815170,411,0 +170735815232,414,0 +170735815290,412,0 +170735815347,413,0 +170735815405,413,0 +170735815462,412,0 +170735815525,407,0 +170735815577,308,1 +170735815659,371,0 +170735815717,412,0 +170735815774,412,0 +170735815837,410,0 +170735815894,411,0 +170735815956,412,0 +170735816019,413,0 +170735816076,411,0 +170735816134,411,0 +170735816191,413,0 +170735816254,413,0 +170735816316,413,0 +170735816374,411,0 +170735816436,413,0 +170735816493,412,0 +170735816551,410,0 +170735816613,308,1 +170735816695,248,0 +170735816743,410,0 +170735816805,411,0 +170735816868,413,0 +170735816930,414,0 +170735816988,412,0 +170735817050,412,0 +170735817108,412,0 +170735817170,410,0 +170735817227,413,0 +170735817285,414,0 +170735817342,413,0 +170735817400,413,0 +170735817457,412,0 +170735817515,412,0 +170735817577,412,0 +170735817640,301,1 +170735817739,232,0 +170735817788,410,0 +170735817851,412,0 +170735817908,412,0 +170735817970,412,0 +170735818028,413,0 +170735818085,412,0 +170735818148,413,0 +170735818205,412,0 +170735818271,413,0 +170735818329,412,0 +170735818391,409,0 +170735818448,413,0 +170735818506,411,0 +170735818568,411,0 +170735818626,413,0 +170735818683,287,1 +170735818778,256,0 +170735818828,410,0 +170735818885,411,0 +170735818948,413,0 +170735819010,412,0 +170735819068,412,0 +170735819130,412,0 +170735819192,409,0 +170735819255,412,0 +170735819317,410,0 +170735819374,411,0 +170735819437,411,0 +170735819494,413,0 +170735819552,410,0 +170735819610,413,0 +170735819672,411,0 +170735819734,394,0 +170735819796,284,1 +170735819880,398,0 +170735819938,412,0 +170735820000,412,0 +170735820058,411,0 +170735820115,411,0 +170735820173,412,0 +170735820230,412,0 +170735820293,412,0 +170735820355,411,0 +170735820417,412,0 +170735820480,411,0 +170735820542,413,0 +170735820600,409,0 +170735820662,411,0 +170735820724,410,0 +170735820782,296,1 +170735820875,295,1 +170735820951,1010100,0 +170735821006,1010100,0 +170735821060,1010100,0 +170735821114,1010100,0 +170735821167,1010100,0 +170735821225,1010100,0 +170735821279,1010100,0 +170735821332,1010100,0 +170735821386,1010100,0 +170735821439,1010100,0 +170735821493,1010100,0 +170735821546,1010100,0 +170735821602,1010100,0 +170735821658,1010100,0 +170735821714,1010100,0 +170735821765,1010100,0 +170735821821,1010100,0 +170735821873,278,1 +170735821950,310,0 +170735821998,1010100,0 +170735822054,1010100,0 +170735822108,1010100,0 +170735822161,1010100,0 +170735822215,1010100,0 +170735822270,1010100,0 +170735822324,1010100,0 +170735822375,1010100,0 +170735822430,1010100,0 +170735822487,1010100,0 +170735822548,1010100,0 +170735822602,1010100,0 +170735822656,1010100,0 +170735822711,1010100,0 +170735822770,1010100,0 +170735822829,1010100,0 +170735822875,1010100,0 +170735822928,304,1 +170735823017,1010100,0 +170735823064,1010100,0 +170735823117,1010100,0 +170735823170,1010100,0 +170735823224,1010100,0 +170735823279,1010100,0 +170735823333,1010100,0 +170735823390,1010100,0 +170735823446,1010100,0 +170735823501,1010100,0 +170735823555,1010100,0 +170735823609,1010100,0 +170735823664,1010100,0 +170735823720,1010100,0 +170735823774,1010100,0 +170735823830,1010100,0 +170735823886,1010100,0 +170735823942,289,1 +170735824029,262,0 +170735824077,1010100,0 +170735824133,1010100,0 +170735824188,1010100,0 +170735824247,1010100,0 +170735824300,1010100,0 +170735824359,1010100,0 +170735824413,1010100,0 +170735824467,1010100,0 +170735824522,1010100,0 +170735824576,1010100,0 +170735824634,1010100,0 +170735824688,1010100,0 +170735824742,1010100,0 +170735824800,1010100,0 +170735824856,1010100,0 +170735824904,1010100,0 +170735824957,1010100,0 +170735825009,289,1 +170735825093,305,1 +170735825171,1010100,0 +170735825225,1010100,0 +170735825279,1010100,0 +170735825339,1010100,0 +170735825393,1010100,0 +170735825449,1010100,0 +170735825503,1010100,0 +170735825558,1010100,0 +170735825614,1010100,0 +170735825666,1010100,0 +170735825725,1010100,0 +170735825780,1010100,0 +170735825837,1010100,0 +170735825892,1010100,0 +170735825944,1010100,0 +170735825999,1010100,0 +170735826053,267,0 +170735826102,296,1 +170735826186,1010100,0 +170735826242,1010100,0 +170735826294,1010100,0 +170735826348,1010100,0 +170735826402,1010100,0 +170735826453,1010100,0 +170735826506,1010100,0 +170735826559,1010100,0 +170735826613,1010100,0 +170735826664,1010100,0 +170735826719,1010100,0 +170735826774,1010100,0 +170735826827,1010100,0 +170735826883,1010100,0 +170735826934,1010100,0 +170735826989,1010100,0 +170735827045,1010100,0 +170735827097,280,1 +170735827178,285,1 +170735827258,1010100,0 +170735827307,1010100,0 +170735827363,1010100,0 +170735827417,1010100,0 +170735827471,1010100,0 +170735827526,1010100,0 +170735827578,1010100,0 +170735827631,1010100,0 +170735827682,1010100,0 +170735827736,1010100,0 +170735827791,1010100,0 +170735827845,1010100,0 +170735827899,1010100,0 +170735827955,1010100,0 +170735828009,1010100,0 +170735828065,1010100,0 +170735828118,1010100,0 +170735828172,288,1 +170735828254,351,0 +170735828317,1010100,0 +170735828366,1010100,0 +170735828417,1010100,0 +170735828467,1010100,0 +170735828516,1010100,0 +170735828564,1010100,0 +170735828612,1010100,0 +170735828661,1010100,0 +170735828709,1010100,0 +170735828759,1010100,0 +170735828808,1010100,0 +170735828856,1010100,0 +170735828905,1010100,0 +170735828955,1010100,0 +170735829004,1010100,0 +170735829052,1010100,0 +170735829100,1010100,0 +170735829148,1010100,0 +170735829198,261,0 +170735829245,300,1 +170735829327,1010100,0 +170735829375,1010100,0 +170735829423,1010100,0 +170735829473,1010100,0 +170735829524,1010100,0 +170735829573,1010100,0 +170735829623,1010100,0 +170735829671,1010100,0 +170735829720,1010100,0 +170735829772,1010100,0 +170735829821,1010100,0 +170735829872,1010100,0 +170735829922,1010100,0 +170735829970,1010100,0 +170735830021,1010100,0 +170735830071,1010100,0 +170735830119,1010100,0 +170735830168,1010100,0 +170735830219,1010100,0 +170735830269,300,1 +170735830355,347,0 +170735830412,1010100,0 +170735830465,1010100,0 +170735830516,1010100,0 +170735830569,1010100,0 +170735830621,1010100,0 +170735830669,1010100,0 +170735830721,1010100,0 +170735830773,1010100,0 +170735830824,1010100,0 +170735830877,1010100,0 +170735830930,1010100,0 +170735830980,1010100,0 +170735831029,1010100,0 +170735831082,1010100,0 +170735831135,1010100,0 +170735831184,1010100,0 +170735831237,1010100,0 +170735831288,275,1 +170735831370,287,1 +170735831449,420,0 +170735831506,421,0 +170735831559,421,0 +170735831612,420,0 +170735831665,422,0 +170735831717,422,0 +170735831770,421,0 +170735831827,420,0 +170735831880,421,0 +170735831933,419,0 +170735831985,421,0 +170735832038,422,0 +170735832091,421,0 +170735832144,421,0 +170735832196,422,0 +170735832249,420,0 +170735832302,419,0 +170735832354,290,1 +170735832436,285,1 +170735832514,1010100,0 +170735832564,1010100,0 +170735832617,1010100,0 +170735832666,1010100,0 +170735832716,1010100,0 +170735832769,1010100,0 +170735832818,1010100,0 +170735832868,1010100,0 +170735832922,1010100,0 +170735832973,1010100,0 +170735833021,1010100,0 +170735833072,1010100,0 +170735833123,1010100,0 +170735833172,1010100,0 +170735833223,1010100,0 +170735833270,1010100,0 +170735833319,1010100,0 +170735833369,1010100,0 +170735833418,304,1 +170735833497,342,0 +170735833554,1010100,0 +170735833602,1010100,0 +170735833654,1010100,0 +170735833701,1010100,0 +170735833754,1010100,0 +170735833802,1010100,0 +170735833853,1010100,0 +170735833906,1010100,0 +170735833959,1010100,0 +170735834010,1010100,0 +170735834061,1010100,0 +170735834112,1010100,0 +170735834163,1010100,0 +170735834216,1010100,0 +170735834267,1010100,0 +170735834320,1010100,0 +170735834370,1010100,0 +170735834417,1010100,0 +170735834465,298,1 +170735834549,278,1 +170735834632,1010100,0 +170735834715,1010100,0 +170735834784,1010100,0 +170735834857,1010100,0 +170735834926,1010100,0 +170735834998,1010100,0 +170735835071,1010100,0 +170735835148,1010100,0 +170735835223,1010100,0 +170735835295,1010100,0 +170735835365,1010100,0 +170735835431,1010100,0 +170735835500,286,1 +170735835582,232,0 +170735835631,1010100,0 +170735835708,1010100,0 +170735835780,1010100,0 +170735835855,1010100,0 +170735835930,1010100,0 +170735835996,1010100,0 +170735836063,1010100,0 +170735836138,1010100,0 +170735836218,1010100,0 +170735836288,1010100,0 +170735836357,1010100,0 +170735836429,1010100,0 +170735836498,1010100,0 +170735836560,293,1 +170735836639,284,1 +170735836722,1010100,0 +170735836795,1010100,0 +170735836864,1010100,0 +170735836936,1010100,0 +170735836998,1010100,0 +170735837070,1010100,0 +170735837139,1010100,0 +170735837206,1010100,0 +170735837283,1010100,0 +170735837352,1010100,0 +170735837422,1010100,0 +170735837492,1010100,0 +170735837558,1010100,0 +170735837618,249,0 +170735837666,279,1 +170735837752,1010100,0 +170735837820,1010100,0 +170735837889,1010100,0 +170735837953,1010100,0 +170735838022,1010100,0 +170735838092,1010100,0 +170735838161,1010100,0 +170735838229,1010100,0 +170735838298,1010100,0 +170735838369,1010100,0 +170735838437,1010100,0 +170735838500,1010100,0 +170735838562,1010100,0 +170735838631,273,1 +170735838709,298,1 +170735838791,1010100,0 +170735838860,1010100,0 +170735838927,1010100,0 +170735838994,1010100,0 +170735839060,1010100,0 +170735839127,1010100,0 +170735839200,1010100,0 +170735839269,1010100,0 +170735839333,1010100,0 +170735839407,1010100,0 +170735839479,1010100,0 +170735839552,1010100,0 +170735839621,1010100,0 +170735839686,292,1 +170735839767,236,0 +170735839815,1010100,0 +170735839884,1010100,0 +170735839952,1010100,0 +170735840021,1010100,0 +170735840090,1010100,0 +170735840158,1010100,0 +170735840225,1010100,0 +170735840292,1010100,0 +170735840361,1010100,0 +170735840430,1010100,0 +170735840492,1010100,0 +170735840567,1010100,0 +170735840629,1010100,0 +170735840697,1010100,0 +170735840762,298,1 +170735840850,341,0 +170735840912,1010100,0 +170735840979,1010100,0 +170735841041,1010100,0 +170735841102,1010100,0 +170735841172,1010100,0 +170735841240,1010100,0 +170735841308,1010100,0 +170735841375,1010100,0 +170735841436,1010100,0 +170735841502,1010100,0 +170735841575,1010100,0 +170735841646,1010100,0 +170735841711,1010100,0 +170735841778,279,1 +170735841860,283,1 +170735841939,1010100,0 +170735842002,1010100,0 +170735842069,1010100,0 +170735842129,1010100,0 +170735842196,1010100,0 +170735842262,1010100,0 +170735842326,1010100,0 +170735842395,1010100,0 +170735842465,1010100,0 +170735842529,1010100,0 +170735842591,1010100,0 +170735842658,1010100,0 +170735842729,1010100,0 +170735842799,1010100,0 +170735842861,297,1 +170735842943,344,0 +170735843013,1010100,0 +170735843088,1010100,0 +170735843152,1010100,0 +170735843223,1010100,0 +170735843287,1010100,0 +170735843355,1010100,0 +170735843419,1010100,0 +170735843485,1010100,0 +170735843554,1010100,0 +170735843624,1010100,0 +170735843693,1010100,0 +170735843758,1010100,0 +170735843824,1010100,0 +170735843891,296,1 +170735843974,246,0 +170735844024,1010100,0 +170735844093,1010100,0 +170735844163,1010100,0 +170735844232,1010100,0 +170735844297,1010100,0 +170735844364,1010100,0 +170735844430,1010100,0 +170735844500,1010100,0 +170735844569,1010100,0 +170735844638,1010100,0 +170735844705,1010100,0 +170735844777,1010100,0 +170735844844,1010100,0 +170735844910,1010100,0 +170735844969,292,1 +170735845050,1010100,0 +170735845103,1010100,0 +170735845186,1010100,0 +170735845261,1010100,0 +170735845326,1010100,0 +170735845406,1010100,0 +170735845486,1010100,0 +170735845561,1010100,0 +170735845643,1010100,0 +170735845720,1010100,0 +170735845795,1010100,0 +170735845870,1010100,0 +170735845943,1010100,0 +170735846010,308,1 +170735846092,1010100,0 +170735846151,1010100,0 +170735846231,1010100,0 +170735846306,1010100,0 +170735846375,1010100,0 +170735846457,1010100,0 +170735846538,1010100,0 +170735846610,1010100,0 +170735846679,1010100,0 +170735846754,1010100,0 +170735846829,1010100,0 +170735846903,1010100,0 +170735846973,1010100,0 +170735847045,299,1 +170735847128,316,0 +170735847186,1010100,0 +170735847256,1010100,0 +170735847320,1010100,0 +170735847395,1010100,0 +170735847467,1010100,0 +170735847531,1010100,0 +170735847598,1010100,0 +170735847668,1010100,0 +170735847742,1010100,0 +170735847816,1010100,0 +170735847884,1010100,0 +170735847953,1010100,0 +170735848023,1010100,0 +170735848091,275,1 +170735848173,307,1 +170735848253,1010100,0 +170735848336,1010100,0 +170735848405,1010100,0 +170735848584,1010100,0 +170735848766,1010100,0 +170735848843,1010100,0 +170735849024,283,1 +170735849205,293,1 +170735849285,1010100,0 +170735849365,1010100,0 +170735849445,1010100,0 +170735849523,1010100,0 +170735849599,1010100,0 +170735849771,1010100,0 +170735849838,1010100,0 +170735849914,1010100,0 +170735849992,1010100,0 +170735850072,1010100,0 +170735850142,1010100,0 +170735850201,303,1 +170735850345,1010100,0 +170735850418,1010100,0 +170735850487,1010100,0 +170735850564,1010100,0 +170735850644,1010100,0 +170735850818,1010100,0 +170735851093,1010100,0 +170735851171,1010100,0 +170735851242,297,1 +170735851327,317,0 +170735851385,1010100,0 +170735851455,1010100,0 +170735851626,1010100,0 +170735851798,1010100,0 +170735851873,1010100,0 +170735851949,1010100,0 +170735852024,1010100,0 +170735852102,1010100,0 +170735852171,1010100,0 +170735852249,1010100,0 +170735852310,310,0 +170735852357,239,0 +170735852405,1010100,0 +170735852482,1010100,0 +170735852562,1010100,0 +170735852637,1010100,0 +170735852712,1010100,0 +170735852792,1010100,0 +170735852868,1010100,0 +170735852943,1010100,0 +170735853018,1010100,0 +170735853089,1010100,0 +170735853159,1010100,0 +170735853231,1010100,0 +170735853301,1010100,0 +170735853354,308,1 +170735853434,1010100,0 +170735853480,1010100,0 +170735853562,1010100,0 +170735853638,1010100,0 +170735853713,1010100,0 +170735853795,1010100,0 +170735853878,1010100,0 +170735853946,1010100,0 +170735854017,1010100,0 +170735854085,1010100,0 +170735854160,1010100,0 +170735854239,1010100,0 +170735854309,1010100,0 +170735854378,301,1 +170735854459,295,1 +170735854537,1010100,0 +170735854611,1010100,0 +170735854682,1010100,0 +170735854762,1010100,0 +170735854831,1010100,0 +170735854898,1010100,0 +170735854981,1010100,0 +170735855065,1010100,0 +170735855135,1010100,0 +170735855309,1010100,0 +170735855378,1010100,0 +170735855448,292,1 +170735855529,1010100,0 +170735855583,1010100,0 +170735855657,1010100,0 +170735855732,1010100,0 +170735855997,1010100,0 +170735856072,1010100,0 +170735856146,1010100,0 +170735856215,1010100,0 +170735856283,1010100,0 +170735856355,218,0 +170735856403,218,0 +170735856451,220,0 +170735856501,248,0 +170735856550,242,0 +170735856600,440,0 +170735856650,441,0 +170735856699,441,0 +170735856749,441,0 +170735856797,440,0 +170735856845,440,0 +170735856893,441,0 +170735856942,440,0 +170735856990,441,0 +170735857038,441,0 +170735857086,441,0 +170735857134,441,0 +170735857182,441,0 +170735857230,441,0 +170735857280,440,0 +170735857327,441,0 +170735857377,441,0 +170735857427,441,0 +170735857476,440,0 +170735857526,301,1 +170735857604,238,0 +170735857654,440,0 +170735857704,441,0 +170735857753,441,0 +170735857803,441,0 +170735857851,441,0 +170735857899,441,0 +170735857947,441,0 +170735857996,441,0 +170735858046,441,0 +170735858094,441,0 +170735858143,441,0 +170735858193,441,0 +170735858241,441,0 +170735858290,441,0 +170735858338,441,0 +170735858386,441,0 +170735858434,441,0 +170735858484,441,0 +170735858531,440,0 +170735858579,301,1 +170735858660,433,0 +170735858709,441,0 +170735858759,441,0 +170735858808,441,0 +170735858858,441,0 +170735858907,441,0 +170735858957,441,0 +170735859006,441,0 +170735859054,441,0 +170735859104,441,0 +170735859153,441,0 +170735859201,441,0 +170735859251,441,0 +170735859299,441,0 +170735859347,441,0 +170735859396,441,0 +170735859446,441,0 +170735859494,441,0 +170735859543,441,0 +170735859593,440,0 +170735859641,297,1 +170735859721,437,0 +170735859769,440,0 +170735859817,441,0 +170735859865,441,0 +170735859913,441,0 +170735859961,440,0 +170735860009,440,0 +170735860057,441,0 +170735860104,441,0 +170735860154,441,0 +170735860203,441,0 +170735860253,441,0 +170735860303,441,0 +170735860352,441,0 +170735860400,440,0 +170735860450,441,0 +170735860497,440,0 +170735860547,441,0 +170735860595,441,0 +170735860643,407,0 +170735860692,303,1 +170735860770,438,0 +170735860819,441,0 +170735860867,441,0 +170735860915,441,0 +170735860963,441,0 +170735861013,441,0 +170735861061,441,0 +170735861109,441,0 +170735861156,441,0 +170735861206,441,0 +170735861256,441,0 +170735861305,441,0 +170735861353,440,0 +170735861403,441,0 +170735861452,441,0 +170735861502,441,0 +170735861550,441,0 +170735861597,441,0 +170735861645,441,0 +170735861693,258,0 +170735861743,301,1 +170735861823,440,0 +170735861873,441,0 +170735861921,441,0 +170735861969,440,0 +170735862019,441,0 +170735862068,441,0 +170735862118,441,0 +170735862165,441,0 +170735862215,441,0 +170735862263,441,0 +170735862312,441,0 +170735862362,441,0 +170735862410,441,0 +170735862458,441,0 +170735862506,441,0 +170735862556,441,0 +170735862603,441,0 +170735862653,441,0 +170735862701,440,0 +170735862749,292,1 +170735862829,289,1 +170735862904,441,0 +170735862952,441,0 +170735863000,441,0 +170735863050,441,0 +170735863099,441,0 +170735863147,441,0 +170735863197,441,0 +170735863245,441,0 +170735863294,441,0 +170735863344,441,0 +170735863393,441,0 +170735863441,441,0 +170735863491,441,0 +170735863540,441,0 +170735863588,441,0 +170735863638,441,0 +170735863686,441,0 +170735863735,441,0 +170735863783,440,0 +170735863831,312,0 +170735863879,302,1 +170735864465,441,0 +170735864514,441,0 +170735864562,441,0 +170735864610,441,0 +170735864658,441,0 +170735864706,441,0 +170735864754,441,0 +170735864802,441,0 +170735864850,300,1 +170735864929,257,0 +170735864977,440,0 +170735865025,441,0 +170735865073,441,0 +170735865121,441,0 +170735865169,441,0 +170735865217,441,0 +170735865265,441,0 +170735865313,441,0 +170735865361,441,0 +170735865409,441,0 +170735865457,441,0 +170735865505,441,0 +170735865553,441,0 +170735865602,441,0 +170735865650,441,0 +170735865698,441,0 +170735865746,441,0 +170735865796,441,0 +170735865844,441,0 +170735865892,281,1 +170735865978,293,1 +170735866058,441,0 +170735866106,441,0 +170735866154,441,0 +170735866202,441,0 +170735866250,441,0 +170735866300,441,0 +170735866348,441,0 +170735866396,441,0 +170735866444,441,0 +170735866493,441,0 +170735866541,441,0 +170735866591,441,0 +170735866640,441,0 +170735866688,441,0 +170735866736,441,0 +170735866786,441,0 +170735866834,441,0 +170735866883,441,0 +170735866931,440,0 +170735866979,306,1 +170735867059,438,0 +170735867107,441,0 +170735867155,441,0 +170735867203,441,0 +170735867251,441,0 +170735867300,441,0 +170735867348,441,0 +170735867398,441,0 +170735867447,441,0 +170735867497,441,0 +170735867545,441,0 +170735867594,441,0 +170735867642,441,0 +170735867690,441,0 +170735867740,441,0 +170735867789,441,0 +170735867837,441,0 +170735867887,441,0 +170735867936,441,0 +170735867986,286,1 +170735868073,245,0 +170735868123,440,0 +170735868171,441,0 +170735868220,441,0 +170735868268,441,0 +170735868316,441,0 +170735868364,441,0 +170735868412,441,0 +170735868460,441,0 +170735868510,441,0 +170735868559,441,0 +170735868609,441,0 +170735868658,441,0 +170735868708,441,0 +170735868757,441,0 +170735868807,441,0 +170735868856,441,0 +170735868904,441,0 +170735868952,441,0 +170735869000,441,0 +170735869050,299,1 +170735869129,240,0 +170735869179,441,0 +170735869227,441,0 +170735869275,441,0 +170735869323,441,0 +170735869371,441,0 +170735869419,441,0 +170735869468,441,0 +170735869516,441,0 +170735869564,441,0 +170735869612,441,0 +170735869660,441,0 +170735869709,441,0 +170735869757,441,0 +170735869805,441,0 +170735869855,441,0 +170735869904,441,0 +170735869954,441,0 +170735870002,441,0 +170735870051,441,0 +170735870099,303,1 +170735870179,236,0 +170735870228,441,0 +170735870278,441,0 +170735870325,441,0 +170735870373,441,0 +170735870421,441,0 +170735870469,441,0 +170735870517,441,0 +170735870567,441,0 +170735870616,441,0 +170735870664,441,0 +170735870712,441,0 +170735870760,441,0 +170735870807,441,0 +170735870855,441,0 +170735870903,441,0 +170735870951,441,0 +170735870999,441,0 +170735871047,441,0 +170735871095,441,0 +170735871143,304,1 +170735871220,277,1 +170735871300,441,0 +170735871350,441,0 +170735871398,441,0 +170735871446,441,0 +170735871493,441,0 +170735871541,441,0 +170735871589,441,0 +170735871639,441,0 +170735871688,441,0 +170735871736,441,0 +170735871784,441,0 +170735871832,441,0 +170735871880,441,0 +170735871928,441,0 +170735871975,441,0 +170735872023,441,0 +170735872071,441,0 +170735872119,441,0 +170735872167,440,0 +170735872215,297,1 +170735872300,437,0 +170735872349,441,0 +170735872399,441,0 +170735872446,441,0 +170735872494,441,0 +170735872544,441,0 +170735872592,441,0 +170735872640,441,0 +170735872689,441,0 +170735872737,441,0 +170735872786,441,0 +170735872836,441,0 +170735872884,441,0 +170735872932,441,0 +170735872980,441,0 +170735873027,441,0 +170735873075,441,0 +170735873125,441,0 +170735873173,441,0 +170735873220,422,0 +170735873268,297,1 +170735873354,440,0 +170735873402,441,0 +170735873450,441,0 +170735873499,441,0 +170735873547,441,0 +170735873595,441,0 +170735873645,441,0 +170735873693,441,0 +170735873740,440,0 +170735873788,441,0 +170735873836,441,0 +170735873885,441,0 +170735873932,441,0 +170735873980,441,0 +170735874030,441,0 +170735874078,441,0 +170735874125,441,0 +170735874175,441,0 +170735874224,441,0 +170735874272,440,0 +170735874320,281,1 +170735874400,438,0 +170735874448,441,0 +170735874496,441,0 +170735874544,441,0 +170735874592,441,0 +170735874639,441,0 +170735874687,441,0 +170735874735,441,0 +170735874785,441,0 +170735874833,441,0 +170735874880,441,0 +170735874930,441,0 +170735874978,441,0 +170735875026,441,0 +170735875074,441,0 +170735875121,441,0 +170735875169,441,0 +170735875217,440,0 +170735875265,441,0 +170735875313,440,0 +170735875362,292,1 +170735875442,437,0 +170735875492,441,0 +170735875540,441,0 +170735875588,441,0 +170735875637,441,0 +170735875685,441,0 +170735875733,441,0 +170735875781,441,0 +170735875829,441,0 +170735875877,441,0 +170735875926,441,0 +170735875974,441,0 +170735876022,441,0 +170735876070,441,0 +170735876120,441,0 +170735876168,441,0 +170735876217,440,0 +170735876267,441,0 +170735876315,441,0 +170735876363,392,0 +170735876411,308,1 +170735876492,439,0 +170735876540,441,0 +170735876590,441,0 +170735876638,441,0 +170735876686,441,0 +170735876734,441,0 +170735876783,441,0 +170735876831,441,0 +170735876880,441,0 +170735876930,441,0 +170735876978,441,0 +170735877026,441,0 +170735877074,441,0 +170735877122,441,0 +170735877170,441,0 +170735877217,441,0 +170735877265,441,0 +170735877313,441,0 +170735877361,441,0 +170735877409,440,0 +170735877458,301,1 +170735877545,439,0 +170735877593,441,0 +170735877641,441,0 +170735877688,441,0 +170735877736,441,0 +170735877786,441,0 +170735877834,441,0 +170735877882,441,0 +170735877930,441,0 +170735877978,441,0 +170735878026,441,0 +170735878074,441,0 +170735878122,441,0 +170735878169,441,0 +170735878217,441,0 +170735878267,441,0 +170735878315,441,0 +170735878363,441,0 +170735878411,441,0 +170735878459,440,0 +170735878508,300,1 +170735878586,433,0 +170735878634,441,0 +170735878682,441,0 +170735878730,441,0 +170735878778,441,0 +170735878826,441,0 +170735878875,441,0 +170735878923,441,0 +170735878971,441,0 +170735879019,441,0 +170735879067,441,0 +170735879115,441,0 +170735879163,441,0 +170735879212,441,0 +170735879260,441,0 +170735879310,441,0 +170735879358,441,0 +170735879407,441,0 +170735879457,441,0 +170735879506,440,0 +170735879556,291,1 +170735879637,437,0 +170735879685,441,0 +170735879734,441,0 +170735879782,441,0 +170735879830,441,0 +170735879880,441,0 +170735879928,441,0 +170735879976,441,0 +170735880025,441,0 +170735880075,441,0 +170735880124,441,0 +170735880172,441,0 +170735880222,441,0 +170735880270,441,0 +170735880318,441,0 +170735880366,441,0 +170735880415,441,0 +170735880465,441,0 +170735880514,441,0 +170735880562,395,0 +170735880612,300,1 +170735880696,440,0 +170735880744,441,0 +170735880792,441,0 +170735880839,441,0 +170735880887,441,0 +170735880935,441,0 +170735880985,441,0 +170735881033,441,0 +170735881082,441,0 +170735881130,441,0 +170735881178,441,0 +170735881226,441,0 +170735881274,441,0 +170735881322,441,0 +170735881370,441,0 +170735881418,441,0 +170735881468,441,0 +170735881516,441,0 +170735881564,441,0 +170735881613,378,0 +170735881661,302,1 +170735881746,440,0 +170735881794,441,0 +170735881842,441,0 +170735881892,441,0 +170735881940,441,0 +170735881988,441,0 +170735882036,441,0 +170735882084,441,0 +170735882132,441,0 +170735882179,441,0 +170735882227,441,0 +170735882275,441,0 +170735882323,441,0 +170735882371,441,0 +170735882419,441,0 +170735882469,441,0 +170735882517,441,0 +170735882565,441,0 +170735882614,441,0 +170735882662,284,1 +170735882739,306,1 +170735882813,441,0 +170735882861,441,0 +170735882908,441,0 +170735882956,441,0 +170735883004,441,0 +170735883054,441,0 +170735883103,441,0 +170735883151,441,0 +170735883201,441,0 +170735883249,441,0 +170735883298,441,0 +170735883348,441,0 +170735883396,441,0 +170735883445,441,0 +170735883495,441,0 +170735883543,441,0 +170735883591,441,0 +170735883639,441,0 +170735883687,440,0 +170735883736,296,1 +170735883821,437,0 +170735883869,441,0 +170735883919,441,0 +170735883967,441,0 +170735884015,441,0 +170735884064,441,0 +170735884112,441,0 +170735884162,441,0 +170735884210,441,0 +170735884257,441,0 +170735884305,441,0 +170735884353,441,0 +170735884401,441,0 +170735884451,440,0 +170735884499,441,0 +170735884547,441,0 +170735884596,441,0 +170735884646,441,0 +170735884694,441,0 +170735884742,441,0 +170735884790,441,0 +170735884839,441,0 +170735884887,441,0 +170735884935,441,0 +170735884983,441,0 +170735885032,441,0 +170735885082,441,0 +170735885132,441,0 +170735885180,440,0 +170735885229,441,0 +170735885279,325,0 +170735885328,309,1 +170735885406,438,0 +170735885454,441,0 +170735885503,441,0 +170735885553,441,0 +170735885602,441,0 +170735885652,441,0 +170735885701,441,0 +170735885751,441,0 +170735885799,440,0 +170735885847,441,0 +170735885896,441,0 +170735885944,441,0 +170735885992,441,0 +170735886040,441,0 +170735886088,441,0 +170735886137,441,0 +170735886185,441,0 +170735886235,441,0 +170735886284,441,0 +170735886334,304,1 +170735886415,267,0 +170735886463,440,0 +170735886511,441,0 +170735886559,441,0 +170735886607,441,0 +170735886655,441,0 +170735886703,441,0 +170735886751,441,0 +170735886799,441,0 +170735886847,441,0 +170735886896,441,0 +170735886946,441,0 +170735886994,441,0 +170735887042,441,0 +170735887091,441,0 +170735887141,441,0 +170735887189,441,0 +170735887238,441,0 +170735887286,441,0 +170735887336,441,0 +170735887384,305,1 +170735887462,293,1 +170735887542,441,0 +170735887590,441,0 +170735887639,441,0 +170735887687,441,0 +170735887737,441,0 +170735887785,441,0 +170735887833,441,0 +170735887882,441,0 +170735887930,441,0 +170735887978,441,0 +170735888026,441,0 +170735888074,441,0 +170735888122,441,0 +170735888170,441,0 +170735888218,441,0 +170735888267,441,0 +170735888317,441,0 +170735888366,441,0 +170735888414,440,0 +170735888462,308,1 +170735888545,437,0 +170735888593,441,0 +170735888641,441,0 +170735888691,440,0 +170735888739,441,0 +170735888787,441,0 +170735888835,441,0 +170735888883,441,0 +170735888930,441,0 +170735888978,441,0 +170735889026,441,0 +170735889074,441,0 +170735889122,441,0 +170735889172,441,0 +170735889220,441,0 +170735889268,441,0 +170735889317,441,0 +170735889365,441,0 +170735889413,441,0 +170735889461,439,0 +170735889509,306,1 +170735889589,436,0 +170735889638,441,0 +170735889686,441,0 +170735889736,441,0 +170735889784,441,0 +170735889833,441,0 +170735889883,441,0 +170735889931,441,0 +170735889979,441,0 +170735890027,441,0 +170735890076,441,0 +170735890124,441,0 +170735890172,441,0 +170735890220,441,0 +170735890270,441,0 +170735890319,441,0 +170735890367,441,0 +170735890417,441,0 +170735890466,441,0 +170735890516,285,1 +170735890597,313,0 +170735890645,438,0 +170735890693,441,0 +170735890741,441,0 +170735890790,441,0 +170735890840,441,0 +170735890888,441,0 +170735890937,441,0 +170735890985,441,0 +170735891033,441,0 +170735891083,441,0 +170735891131,441,0 +170735891180,441,0 +170735891230,441,0 +170735891279,441,0 +170735891327,441,0 +170735891375,441,0 +170735891423,441,0 +170735891471,441,0 +170735891519,441,0 +170735891567,280,1 +170735891653,265,0 +170735891701,440,0 +170735891749,441,0 +170735891797,441,0 +170735891845,441,0 +170735891893,441,0 +170735891942,441,0 +170735891990,441,0 +170735892038,441,0 +170735892086,441,0 +170735892136,441,0 +170735892185,441,0 +170735892233,441,0 +170735892281,441,0 +170735892329,441,0 +170735892379,441,0 +170735892427,441,0 +170735892475,441,0 +170735892524,441,0 +170735892574,440,0 +170735892622,301,1 +170735892706,250,0 +170735892755,440,0 +170735892803,441,0 +170735892851,441,0 +170735892899,441,0 +170735892947,441,0 +170735892997,441,0 +170735893045,441,0 +170735893093,441,0 +170735893142,441,0 +170735893190,441,0 +170735893240,441,0 +170735893289,441,0 +170735893337,441,0 +170735893385,441,0 +170735893433,441,0 +170735893483,441,0 +170735893531,441,0 +170735893579,441,0 +170735893628,441,0 +170735893678,307,1 +170735893760,243,0 +170735893808,441,0 +170735893856,441,0 +170735893904,441,0 +170735893952,441,0 +170735894002,441,0 +170735894050,441,0 +170735894099,441,0 +170735894149,441,0 +170735894197,441,0 +170735894244,441,0 +170735894294,441,0 +170735894342,441,0 +170735894392,441,0 +170735894439,441,0 +170735894489,441,0 +170735894537,441,0 +170735894585,441,0 +170735894634,441,0 +170735894682,441,0 +170735894730,309,1 +170735894816,239,0 +170735894864,441,0 +170735894914,441,0 +170735894963,441,0 +170735895011,441,0 +170735895059,441,0 +170735895108,441,0 +170735895156,441,0 +170735895206,441,0 +170735895255,441,0 +170735895303,441,0 +170735895351,441,0 +170735895401,441,0 +170735895450,441,0 +170735895498,441,0 +170735895546,441,0 +170735895594,441,0 +170735895642,441,0 +170735895692,440,0 +170735895740,440,0 +170735895787,286,1 +170735895871,436,0 +170735895919,441,0 +170735895967,441,0 +170735896015,441,0 +170735896063,441,0 +170735896111,441,0 +170735896160,441,0 +170735896210,441,0 +170735896259,441,0 +170735896309,441,0 +170735896358,441,0 +170735896408,441,0 +170735896456,441,0 +170735896505,441,0 +170735896553,441,0 +170735896603,441,0 +170735896651,441,0 +170735896699,441,0 +170735896747,441,0 +170735896796,440,0 +170735896844,300,1 +170735896925,436,0 +170735896975,441,0 +170735897023,441,0 +170735897072,441,0 +170735897120,441,0 +170735897168,441,0 +170735897216,441,0 +170735897264,441,0 +170735897312,441,0 +170735897362,441,0 +170735897411,441,0 +170735897459,441,0 +170735897507,441,0 +170735897555,441,0 +170735897604,441,0 +170735897652,441,0 +170735897701,441,0 +170735897751,441,0 +170735897799,441,0 +170735897848,439,0 +170735897896,294,1 +170735897973,437,0 +170735898021,441,0 +170735898069,441,0 +170735898118,441,0 +170735898166,441,0 +170735898214,441,0 +170735898264,441,0 +170735898312,441,0 +170735898359,441,0 +170735898407,441,0 +170735898455,441,0 +170735898503,441,0 +170735898551,441,0 +170735898599,441,0 +170735898647,441,0 +170735898694,441,0 +170735898744,441,0 +170735898792,441,0 +170735898841,441,0 +170735898889,423,0 +170735898937,302,1 +170735899021,438,0 +170735899070,441,0 +170735899118,441,0 +170735899168,441,0 +170735899218,441,0 +170735899267,441,0 +170735899315,441,0 +170735899363,441,0 +170735899411,441,0 +170735899461,441,0 +170735899510,441,0 +170735899558,441,0 +170735899608,441,0 +170735899655,441,0 +170735899703,441,0 +170735899751,441,0 +170735899799,441,0 +170735899847,441,0 +170735899895,441,0 +170735899943,439,0 +170735899991,297,1 +170735900074,437,0 +170735900122,441,0 +170735900170,441,0 +170735900218,441,0 +170735900266,441,0 +170735900314,441,0 +170735900362,441,0 +170735900410,441,0 +170735900458,441,0 +170735900506,441,0 +170735900554,441,0 +170735900602,441,0 +170735900651,441,0 +170735900699,441,0 +170735900747,441,0 +170735900795,441,0 +170735900843,441,0 +170735900891,441,0 +170735900941,441,0 +170735900989,440,0 +170735901036,291,1 +170735901116,436,0 +170735901164,441,0 +170735901212,441,0 +170735901262,441,0 +170735901310,441,0 +170735901358,441,0 +170735901406,441,0 +170735901453,441,0 +170735901501,441,0 +170735901549,441,0 +170735901597,441,0 +170735901645,441,0 +170735901695,441,0 +170735901743,441,0 +170735901791,441,0 +170735901839,441,0 +170735901887,441,0 +170735901934,441,0 +170735901984,441,0 +170735902033,440,0 +170735902081,289,1 +170735902162,437,0 +170735902212,441,0 +170735902260,441,0 +170735902308,441,0 +170735902355,441,0 +170735902403,441,0 +170735902451,441,0 +170735902499,441,0 +170735902547,441,0 +170735902597,441,0 +170735902646,441,0 +170735902694,441,0 +170735902742,441,0 +170735902790,441,0 +170735902838,441,0 +170735902886,441,0 +170735902935,441,0 +170735902983,441,0 +170735903031,441,0 +170735903081,440,0 +170735903129,311,0 +170735903176,302,1 +170735903259,441,0 +170735903307,441,0 +170735903355,441,0 +170735903402,441,0 +170735903450,441,0 +170735903498,441,0 +170735903546,441,0 +170735903594,441,0 +170735903642,441,0 +170735903690,441,0 +170735903740,441,0 +170735903788,441,0 +170735903836,441,0 +170735903884,441,0 +170735903932,441,0 +170735903980,441,0 +170735904027,441,0 +170735904075,441,0 +170735904125,440,0 +170735904173,304,1 +170735904250,237,0 +170735904298,441,0 +170735904346,441,0 +170735904394,441,0 +170735904442,441,0 +170735904492,441,0 +170735904540,441,0 +170735904588,441,0 +170735904637,441,0 +170735904687,441,0 +170735904734,441,0 +170735904782,441,0 +170735904832,441,0 +170735904880,441,0 +170735904927,441,0 +170735904975,441,0 +170735905025,441,0 +170735905073,441,0 +170735905121,441,0 +170735905170,440,0 +170735905218,301,1 +170735905294,241,0 +170735905342,441,0 +170735905389,441,0 +170735905437,441,0 +170735905487,441,0 +170735905535,441,0 +170735905583,441,0 +170735905630,441,0 +170735905678,441,0 +170735905726,441,0 +170735905774,441,0 +170735905824,441,0 +170735905871,441,0 +170735905919,441,0 +170735905967,441,0 +170735906015,441,0 +170735906063,441,0 +170735906113,441,0 +170735906162,441,0 +170735906210,440,0 +170735906258,305,1 +170735906338,241,0 +170735906386,441,0 +170735906435,441,0 +170735906483,441,0 +170735906531,441,0 +170735906581,441,0 +170735906630,441,0 +170735906678,441,0 +170735906726,441,0 +170735906775,441,0 +170735906823,441,0 +170735906873,441,0 +170735906921,441,0 +170735906970,441,0 +170735907020,441,0 +170735907068,441,0 +170735907116,441,0 +170735907165,441,0 +170735907213,441,0 +170735907263,440,0 +170735907310,303,1 +170735907386,282,1 +170735907468,441,0 +170735907516,441,0 +170735907564,441,0 +170735907614,441,0 +170735907662,441,0 +170735907711,441,0 +170735907761,440,0 +170735907810,441,0 +170735907858,441,0 +170735907908,441,0 +170735907956,441,0 +170735908005,441,0 +170735908055,441,0 +170735908103,441,0 +170735908151,441,0 +170735908200,441,0 +170735908248,441,0 +170735908296,441,0 +170735908344,280,1 +170735908423,309,1 +170735908502,441,0 +170735908550,440,0 +170735908599,441,0 +170735908647,441,0 +170735908695,441,0 +170735908743,441,0 +170735908791,441,0 +170735908839,441,0 +170735908888,441,0 +170735908938,440,0 +170735908987,441,0 +170735909035,441,0 +170735909085,441,0 +170735909135,441,0 +170735909182,441,0 +170735909230,441,0 +170735909280,441,0 +170735909328,440,0 +170735909376,439,0 +170735909424,293,1 +170735909504,437,0 +170735909552,441,0 +170735909600,441,0 +170735909650,441,0 +170735909698,441,0 +170735909746,441,0 +170735909794,441,0 +170735909843,441,0 +170735909891,441,0 +170735909939,441,0 +170735909989,441,0 +170735910038,441,0 +170735910088,441,0 +170735910136,441,0 +170735910185,441,0 +170735910233,441,0 +170735910281,441,0 +170735910331,441,0 +170735910380,440,0 +170735910428,440,0 +170735910476,305,1 +170735910557,436,0 +170735910606,441,0 +170735910656,441,0 +170735910706,441,0 +170735910755,441,0 +170735910805,441,0 +170735910854,441,0 +170735910904,441,0 +170735910952,441,0 +170735911001,441,0 +170735911049,441,0 +170735911097,441,0 +170735911145,441,0 +170735911195,441,0 +170735911243,441,0 +170735911292,441,0 +170735911342,441,0 +170735911391,441,0 +170735911441,441,0 +170735911489,282,1 +170735911570,291,1 +170735911649,441,0 +170735911699,441,0 +170735911748,441,0 +170735911796,441,0 +170735911846,441,0 +170735911895,441,0 +170735911943,441,0 +170735911991,441,0 +170735912039,441,0 +170735912087,441,0 +170735912135,441,0 +170735912183,441,0 +170735912233,441,0 +170735912282,441,0 +170735912332,441,0 +170735912380,441,0 +170735912429,441,0 +170735912479,441,0 +170735912528,291,1 +170735912610,302,1 +170735912691,441,0 +170735912740,441,0 +170735912790,441,0 +170735912838,441,0 +170735912887,441,0 +170735912935,441,0 +170735912985,441,0 +170735913033,441,0 +170735913082,441,0 +170735913130,441,0 +170735913178,441,0 +170735913226,441,0 +170735913276,441,0 +170735913324,441,0 +170735913372,441,0 +170735913421,441,0 +170735913469,441,0 +170735913519,440,0 +170735913567,440,0 +170735913616,298,1 +170735913700,437,0 +170735913748,441,0 +170735913796,441,0 +170735913844,441,0 +170735913892,441,0 +170735913942,441,0 +170735913991,441,0 +170735914041,441,0 +170735914089,441,0 +170735914136,441,0 +170735914186,441,0 +170735914235,441,0 +170735914285,441,0 +170735914333,441,0 +170735914381,441,0 +170735914429,441,0 +170735914477,441,0 +170735914525,441,0 +170735914573,441,0 +170735914621,440,0 +170735914670,297,1 +170735914752,436,0 +170735914800,441,0 +170735914848,441,0 +170735914898,441,0 +170735914947,441,0 +170735914995,441,0 +170735915045,441,0 +170735915093,441,0 +170735915141,441,0 +170735915189,441,0 +170735915238,441,0 +170735915286,441,0 +170735915334,441,0 +170735915384,441,0 +170735915432,441,0 +170735915481,441,0 +170735915529,441,0 +170735915579,441,0 +170735915628,441,0 +170735915676,433,0 +170735915724,307,1 +170735915801,437,0 +170735915850,441,0 +170735915900,441,0 +170735915949,441,0 +170735915999,441,0 +170735916047,441,0 +170735916095,441,0 +170735916144,441,0 +170735916192,441,0 +170735916240,441,0 +170735916288,441,0 +170735916336,441,0 +170735916384,441,0 +170735916432,441,0 +170735916480,441,0 +170735916529,441,0 +170735916579,441,0 +170735916628,441,0 +170735916678,441,0 +170735916726,408,0 +170735916776,288,1 +170735916857,438,0 +170735916905,441,0 +170735916953,441,0 +170735917001,441,0 +170735917049,441,0 +170735917097,441,0 +170735917146,441,0 +170735917194,441,0 +170735917242,441,0 +170735917290,441,0 +170735917340,441,0 +170735917389,441,0 +170735917439,441,0 +170735917488,441,0 +170735917536,441,0 +170735917584,441,0 +170735917634,441,0 +170735917682,441,0 +170735917731,441,0 +170735917779,302,1 +170735917863,270,1 +170735917938,441,0 +170735917986,441,0 +170735918035,441,0 +170735918085,441,0 +170735918133,441,0 +170735918181,441,0 +170735918229,441,0 +170735918278,441,0 +170735918326,441,0 +170735918376,441,0 +170735918425,441,0 +170735918475,441,0 +170735918523,441,0 +170735918572,441,0 +170735918620,441,0 +170735918668,441,0 +170735918716,441,0 +170735918764,441,0 +170735918814,439,0 +170735918863,288,1 +170735918946,438,0 +170735918996,441,0 +170735919043,441,0 +170735919093,441,0 +170735919141,441,0 +170735919191,441,0 +170735919240,441,0 +170735919290,441,0 +170735919338,441,0 +170735919387,441,0 +170735919437,441,0 +170735919486,441,0 +170735919536,441,0 +170735919585,441,0 +170735919633,441,0 +170735919683,441,0 +170735919732,441,0 +170735919782,441,0 +170735919831,441,0 +170735919881,307,1 +170735919961,250,0 +170735920011,440,0 +170735920059,441,0 +170735920107,441,0 +170735920155,441,0 +170735920203,441,0 +170735920251,441,0 +170735920300,441,0 +170735920348,441,0 +170735920398,441,0 +170735920446,441,0 +170735920494,441,0 +170735920542,441,0 +170735920589,441,0 +170735920639,441,0 +170735920688,441,0 +170735920738,441,0 +170735920786,441,0 +170735920835,441,0 +170735920883,441,0 +170735920931,292,1 +170735921019,256,0 +170735921067,440,0 +170735921116,441,0 +170735921166,441,0 +170735921214,441,0 +170735921262,441,0 +170735921309,441,0 +170735921359,441,0 +170735921407,441,0 +170735921456,441,0 +170735921506,441,0 +170735921554,441,0 +170735921602,441,0 +170735921651,440,0 +170735921699,441,0 +170735921749,441,0 +170735921798,441,0 +170735921846,441,0 +170735921896,441,0 +170735921945,440,0 +170735921993,291,1 +170735922075,280,1 +170735922156,441,0 +170735922204,441,0 +170735922253,441,0 +170735922301,441,0 +170735922349,441,0 +170735922399,441,0 +170735922448,441,0 +170735922496,441,0 +170735922544,441,0 +170735922592,441,0 +170735922640,441,0 +170735922688,441,0 +170735922737,441,0 +170735922785,441,0 +170735922835,441,0 +170735922883,441,0 +170735922931,441,0 +170735922980,441,0 +170735923030,310,0 +170735923079,303,1 +170735923162,440,0 +170735923211,441,0 +170735923259,441,0 +170735923307,441,0 +170735923355,441,0 +170735923403,441,0 +170735923453,441,0 +170735923502,441,0 +170735923550,441,0 +170735923598,440,0 +170735923646,441,0 +170735923695,441,0 +170735923745,441,0 +170735923793,441,0 +170735923841,441,0 +170735923889,441,0 +170735923937,441,0 +170735923986,441,0 +170735924036,440,0 +170735924084,297,1 +170735924165,427,0 +170735924215,441,0 +170735924263,441,0 +170735924312,441,0 +170735924362,441,0 +170735924410,441,0 +170735924459,441,0 +170735924507,441,0 +170735924555,441,0 +170735924605,441,0 +170735924653,441,0 +170735924701,441,0 +170735924750,441,0 +170735924798,441,0 +170735924848,441,0 +170735924897,441,0 +170735924945,441,0 +170735924993,441,0 +170735925041,441,0 +170735925089,440,0 +170735925137,299,1 +170735925218,433,0 +170735925266,441,0 +170735925316,441,0 +170735925365,441,0 +170735925415,441,0 +170735925464,441,0 +170735925514,441,0 +170735925562,441,0 +170735925610,441,0 +170735925659,441,0 +170735925709,441,0 +170735925757,441,0 +170735925805,441,0 +170735925853,441,0 +170735925901,441,0 +170735925950,441,0 +170735925998,441,0 +170735926046,441,0 +170735926096,441,0 +170735926145,440,0 +170735926193,293,1 +170735926278,437,0 +170735926326,441,0 +170735926374,441,0 +170735926421,441,0 +170735926469,441,0 +170735926517,441,0 +170735926565,441,0 +170735926613,441,0 +170735926663,441,0 +170735926711,441,0 +170735926759,441,0 +170735926808,441,0 +170735926856,441,0 +170735926906,441,0 +170735926955,441,0 +170735927005,441,0 +170735927053,441,0 +170735927101,441,0 +170735927151,441,0 +170735927199,435,0 +170735927246,287,1 +170735927326,437,0 +170735927376,441,0 +170735927424,441,0 +170735927472,441,0 +170735927521,441,0 +170735927569,441,0 +170735927617,441,0 +170735927667,441,0 +170735927715,441,0 +170735927763,441,0 +170735927811,441,0 +170735927859,441,0 +170735927908,441,0 +170735927956,441,0 +170735928006,441,0 +170735928054,441,0 +170735928102,441,0 +170735928151,441,0 +170735928201,441,0 +170735928250,298,1 +170735928331,305,1 +170735928410,441,0 +170735928458,441,0 +170735928506,441,0 +170735928554,441,0 +170735928604,441,0 +170735928653,441,0 +170735928701,441,0 +170735928751,441,0 +170735928798,441,0 +170735928846,441,0 +170735928894,441,0 +170735928942,441,0 +170735928990,441,0 +170735929040,441,0 +170735929088,441,0 +170735929136,441,0 +170735929185,441,0 +170735929233,441,0 +170735929281,441,0 +170735929329,306,1 +170735929411,236,0 +170735929461,441,0 +170735929510,441,0 +170735929560,441,0 +170735929608,441,0 +170735929656,441,0 +170735929704,441,0 +170735929753,441,0 +170735929801,441,0 +170735929851,441,0 +170735929899,441,0 +170735929947,441,0 +170735929996,441,0 +170735930044,441,0 +170735930094,441,0 +170735930142,441,0 +170735930190,441,0 +170735930239,441,0 +170735930289,441,0 +170735930337,440,0 +170735930385,294,1 +170735930466,435,0 +170735930514,441,0 +170735930561,441,0 +170735930609,441,0 +170735930657,441,0 +170735930705,441,0 +170735930755,441,0 +170735930803,441,0 +170735930852,441,0 +170735930900,441,0 +170735930948,441,0 +170735930998,441,0 +170735931046,441,0 +170735931095,441,0 +170735931145,441,0 +170735931194,441,0 +170735931242,441,0 +170735931290,441,0 +170735931338,441,0 +170735931388,440,0 +170735931436,304,1 +170735931514,435,0 +170735931566,441,0 +170735931616,441,0 +170735931666,441,0 +170735931714,441,0 +170735931761,441,0 +170735931809,441,0 +170735931857,441,0 +170735931907,441,0 +170735931955,441,0 +170735932003,441,0 +170735932052,441,0 +170735932102,441,0 +170735932151,441,0 +170735932201,441,0 +170735932250,441,0 +170735932300,441,0 +170735932348,441,0 +170735932397,441,0 +170735932445,440,0 +170735932493,297,1 +170735932635,441,0 +170735932683,441,0 +170735932731,441,0 +170735932779,441,0 +170735932827,441,0 +170735932875,441,0 +170735932923,441,0 +170735932973,441,0 +170735933021,441,0 +170735933069,441,0 +170735933116,441,0 +170735933164,441,0 +170735933212,441,0 +170735933260,441,0 +170735933308,441,0 +170735933356,441,0 +170735933406,441,0 +170735933454,441,0 +170735933502,410,0 +170735933551,298,1 +170735933632,439,0 +170735933681,441,0 +170735933731,441,0 +170735933780,441,0 +170735933828,441,0 +170735933876,441,0 +170735933926,441,0 +170735933975,441,0 +170735934023,441,0 +170735934071,441,0 +170735934119,441,0 +170735934167,441,0 +170735934215,441,0 +170735934265,441,0 +170735934314,441,0 +170735934364,441,0 +170735934413,441,0 +170735934463,441,0 +170735934513,440,0 +170735934560,301,1 +170735934635,288,1 +170735934716,441,0 +170735934766,441,0 +170735934814,441,0 +170735934862,441,0 +170735934910,441,0 +170735934958,441,0 +170735935006,441,0 +170735935053,441,0 +170735935103,441,0 +170735935153,441,0 +170735935200,441,0 +170735935248,441,0 +170735935298,441,0 +170735935346,441,0 +170735935394,441,0 +170735935442,441,0 +170735935490,441,0 +170735935538,441,0 +170735935586,440,0 +170735935634,298,1 +170735935715,437,0 +170735935763,441,0 +170735935813,441,0 +170735935861,441,0 +170735935910,441,0 +170735935958,441,0 +170735936008,441,0 +170735936057,441,0 +170735936107,441,0 +170735936156,441,0 +170735936206,441,0 +170735936254,441,0 +170735936304,441,0 +170735936353,441,0 +170735936401,441,0 +170735936450,441,0 +170735936500,441,0 +170735936549,441,0 +170735936597,441,0 +170735936645,440,0 +170735936693,291,1 +170735936777,438,0 +170735936825,441,0 +170735936873,441,0 +170735936921,441,0 +170735936971,441,0 +170735937019,441,0 +170735937068,441,0 +170735937116,441,0 +170735937164,441,0 +170735937214,441,0 +170735937262,441,0 +170735937310,441,0 +170735937358,441,0 +170735937405,441,0 +170735937453,441,0 +170735937503,441,0 +170735937551,441,0 +170735937600,441,0 +170735937648,441,0 +170735937698,293,1 +170735937776,299,1 +170735937856,441,0 +170735937906,441,0 +170735937955,441,0 +170735938003,441,0 +170735938051,441,0 +170735938101,441,0 +170735938150,441,0 +170735938200,441,0 +170735938248,441,0 +170735938297,441,0 +170735938345,441,0 +170735938393,441,0 +170735938441,441,0 +170735938491,441,0 +170735938540,441,0 +170735938588,441,0 +170735938638,441,0 +170735938686,441,0 +170735938734,440,0 +170735938781,294,1 +170735938865,437,0 +170735938912,441,0 +170735938960,441,0 +170735939010,441,0 +170735939058,441,0 +170735939106,441,0 +170735939154,441,0 +170735939203,441,0 +170735939251,441,0 +170735939301,441,0 +170735939349,441,0 +170735939397,441,0 +170735939445,441,0 +170735939493,441,0 +170735939541,441,0 +170735939589,441,0 +170735939637,441,0 +170735939686,441,0 +170735939736,441,0 +170735939785,440,0 +170735939833,301,1 +170735939915,437,0 +170735939965,441,0 +170735940014,441,0 +170735940062,441,0 +170735940112,441,0 +170735940161,441,0 +170735940211,441,0 +170735940259,441,0 +170735940306,441,0 +170735940354,441,0 +170735940402,441,0 +170735940450,441,0 +170735940500,441,0 +170735940550,441,0 +170735940598,441,0 +170735940645,441,0 +170735940693,441,0 +170735940743,441,0 +170735940792,441,0 +170735940842,402,0 +170735940892,305,1 +170735940972,438,0 +170735941020,441,0 +170735941067,441,0 +170735941115,441,0 +170735941165,441,0 +170735941215,441,0 +170735941264,441,0 +170735941312,441,0 +170735941362,441,0 +170735941411,441,0 +170735941459,441,0 +170735941507,441,0 +170735941556,441,0 +170735941604,441,0 +170735941652,441,0 +170735941700,441,0 +170735941750,441,0 +170735941799,441,0 +170735941847,441,0 +170735941895,276,1 +170735941981,256,0 +170735942029,440,0 +170735942079,441,0 +170735942127,441,0 +170735942175,441,0 +170735942223,441,0 +170735942270,441,0 +170735942318,441,0 +170735942368,441,0 +170735942416,441,0 +170735942464,441,0 +170735942512,441,0 +170735942560,441,0 +170735942607,441,0 +170735942655,441,0 +170735942703,441,0 +170735942751,441,0 +170735942799,441,0 +170735942847,441,0 +170735942895,441,0 +170735942943,273,1 +170735943024,299,1 +170735943101,441,0 +170735943148,441,0 +170735943198,441,0 +170735943246,441,0 +170735943295,441,0 +170735943343,441,0 +170735943391,441,0 +170735943439,441,0 +170735943487,441,0 +170735943535,441,0 +170735943583,441,0 +170735943632,441,0 +170735943682,441,0 +170735943731,441,0 +170735943779,441,0 +170735943827,441,0 +170735943875,441,0 +170735943923,441,0 +170735943971,441,0 +170735944020,292,1 +170735944103,434,0 +170735944150,441,0 +170735944198,441,0 +170735944248,441,0 +170735944297,441,0 +170735944345,441,0 +170735944393,441,0 +170735944441,441,0 +170735944489,441,0 +170735944537,441,0 +170735944585,441,0 +170735944634,441,0 +170735944684,441,0 +170735944733,441,0 +170735944783,441,0 +170735944831,441,0 +170735944880,441,0 +170735944930,441,0 +170735944978,441,0 +170735945026,441,0 +170735945074,298,1 +170735945150,426,0 +170735945198,441,0 +170735945246,441,0 +170735945296,441,0 +170735945344,441,0 +170735945393,441,0 +170735945441,441,0 +170735945491,441,0 +170735945539,441,0 +170735945586,441,0 +170735945636,441,0 +170735945686,441,0 +170735945735,441,0 +170735945783,441,0 +170735945832,441,0 +170735945882,441,0 +170735945930,441,0 +170735945978,441,0 +170735946026,441,0 +170735946075,441,0 +170735946123,284,1 +170735946213,438,0 +170735946261,441,0 +170735946311,441,0 +170735946360,441,0 +170735946410,441,0 +170735946459,441,0 +170735946507,441,0 +170735946555,441,0 +170735946605,441,0 +170735946654,441,0 +170735946702,441,0 +170735946750,441,0 +170735946798,441,0 +170735946848,441,0 +170735946897,441,0 +170735946947,441,0 +170735946996,441,0 +170735947046,441,0 +170735947094,441,0 +170735947142,274,1 +170735947224,284,1 +170735947303,441,0 +170735947351,441,0 +170735947399,441,0 +170735947447,441,0 +170735947494,441,0 +170735947542,441,0 +170735947590,441,0 +170735947640,441,0 +170735947688,441,0 +170735947736,441,0 +170735947785,441,0 +170735947835,441,0 +170735947883,441,0 +170735947932,441,0 +170735947982,441,0 +170735948031,441,0 +170735948079,441,0 +170735948127,441,0 +170735948177,440,0 +170735948226,285,1 +170735948305,436,0 +170735948353,441,0 +170735948402,441,0 +170735948450,441,0 +170735948500,441,0 +170735948549,441,0 +170735948599,441,0 +170735948648,441,0 +170735948696,441,0 +170735948744,441,0 +170735948792,441,0 +170735948840,441,0 +170735948890,441,0 +170735948938,441,0 +170735948987,441,0 +170735949037,441,0 +170735949086,441,0 +170735949136,441,0 +170735949184,441,0 +170735949233,405,0 +170735949283,307,1 +170735949365,438,0 +170735949413,441,0 +170735949461,441,0 +170735949509,441,0 +170735949557,441,0 +170735949605,441,0 +170735949653,441,0 +170735949701,441,0 +170735949750,441,0 +170735949798,441,0 +170735949846,441,0 +170735949894,441,0 +170735949942,441,0 +170735949990,441,0 +170735950040,441,0 +170735950089,441,0 +170735950139,441,0 +170735950187,441,0 +170735950235,441,0 +170735950283,287,1 +170735950364,301,1 +170735950441,441,0 +170735950489,441,0 +170735950538,441,0 +170735950588,441,0 +170735950636,441,0 +170735950684,441,0 +170735950731,441,0 +170735950779,441,0 +170735950827,441,0 +170735950875,441,0 +170735950923,441,0 +170735950973,441,0 +170735951021,441,0 +170735951069,441,0 +170735951118,441,0 +170735951168,441,0 +170735951217,441,0 +170735951267,441,0 +170735951315,441,0 +170735951363,286,1 +170735951443,424,0 +170735951491,441,0 +170735951539,441,0 +170735951586,441,0 +170735951634,441,0 +170735951682,441,0 +170735951730,441,0 +170735951778,441,0 +170735951826,441,0 +170735951874,441,0 +170735951923,441,0 +170735951971,441,0 +170735952019,441,0 +170735952069,441,0 +170735952117,441,0 +170735952164,441,0 +170735952212,441,0 +170735952260,441,0 +170735952308,441,0 +170735952356,440,0 +170735952405,301,1 +170735952489,432,0 +170735952537,441,0 +170735952586,441,0 +170735952634,441,0 +170735952684,441,0 +170735952732,441,0 +170735952781,441,0 +170735952831,441,0 +170735952880,441,0 +170735952928,441,0 +170735952978,441,0 +170735953027,441,0 +170735953075,441,0 +170735953125,441,0 +170735953174,441,0 +170735953222,441,0 +170735953270,441,0 +170735953320,441,0 +170735953368,441,0 +170735953416,440,0 +170735953463,295,1 +170735953546,434,0 +170735953594,441,0 +170735953642,441,0 +170735953690,441,0 +170735953738,441,0 +170735953786,441,0 +170735953834,441,0 +170735953882,441,0 +170735953930,441,0 +170735953978,441,0 +170735954026,441,0 +170735954074,441,0 +170735954122,441,0 +170735954171,441,0 +170735954219,441,0 +170735954268,441,0 +170735954316,441,0 +170735954366,441,0 +170735954414,441,0 +170735954462,441,0 +170735954509,288,1 +170735954588,431,0 +170735954636,441,0 +170735954685,441,0 +170735954735,441,0 +170735954783,441,0 +170735954832,441,0 +170735954880,441,0 +170735954928,441,0 +170735954976,441,0 +170735955024,441,0 +170735955072,441,0 +170735955122,441,0 +170735955170,441,0 +170735955217,441,0 +170735955265,441,0 +170735955313,441,0 +170735955363,441,0 +170735955411,441,0 +170735955459,441,0 +170735955508,441,0 +170735955556,256,0 +170735955604,290,1 +170735955686,441,0 +170735955735,441,0 +170735955783,441,0 +170735955831,441,0 +170735955881,441,0 +170735955928,441,0 +170735955976,441,0 +170735956024,441,0 +170735956072,441,0 +170735956120,441,0 +170735956168,441,0 +170735956216,441,0 +170735956264,441,0 +170735956313,441,0 +170735956361,441,0 +170735956409,441,0 +170735956457,441,0 +170735956505,441,0 +170735956553,441,0 +170735956600,295,1 +170735956684,257,0 +170735956733,441,0 +170735956783,441,0 +170735956832,441,0 +170735956880,441,0 +170735956928,441,0 +170735956976,441,0 +170735957024,441,0 +170735957072,441,0 +170735957120,441,0 +170735957168,441,0 +170735957216,441,0 +170735957264,441,0 +170735957313,441,0 +170735957361,441,0 +170735957409,441,0 +170735957457,441,0 +170735957505,441,0 +170735957552,441,0 +170735957600,441,0 +170735957648,305,1 +170735957728,236,0 +170735957776,441,0 +170735957824,441,0 +170735957872,441,0 +170735957919,441,0 +170735957967,441,0 +170735958015,441,0 +170735958063,441,0 +170735958111,441,0 +170735958159,441,0 +170735958207,441,0 +170735958255,441,0 +170735958303,441,0 +170735958351,441,0 +170735958399,441,0 +170735958447,441,0 +170735958495,441,0 +170735958543,441,0 +170735958591,441,0 +170735958639,441,0 +170735958687,271,1 +170735958768,295,1 +170735958847,441,0 +170735958895,441,0 +170735958943,441,0 +170735958990,441,0 +170735959038,441,0 +170735959088,441,0 +170735959136,441,0 +170735959184,441,0 +170735959232,441,0 +170735959279,441,0 +170735959327,441,0 +170735959375,441,0 +170735959423,441,0 +170735959471,441,0 +170735959519,441,0 +170735959568,441,0 +170735959616,441,0 +170735959664,441,0 +170735959712,440,0 +170735959762,306,1 +170735959846,436,0 +170735959894,441,0 +170735959942,441,0 +170735959990,441,0 +170735960038,441,0 +170735960087,441,0 +170735960135,441,0 +170735960183,441,0 +170735960233,441,0 +170735960280,441,0 +170735960328,441,0 +170735960378,441,0 +170735960426,441,0 +170735960474,441,0 +170735960522,441,0 +170735960570,441,0 +170735960619,441,0 +170735960667,441,0 +170735960717,441,0 +170735960765,440,0 +170735960813,293,1 +170735960896,437,0 +170735960944,441,0 +170735960992,441,0 +170735961040,441,0 +170735961087,441,0 +170735961137,441,0 +170735961185,440,0 +170735961233,441,0 +170735961281,441,0 +170735961330,441,0 +170735961378,441,0 +170735961428,441,0 +170735961477,441,0 +170735961525,441,0 +170735961575,441,0 +170735961624,441,0 +170735961674,441,0 +170735961722,441,0 +170735961770,441,0 +170735961818,440,0 +170735961866,296,1 +170735961944,436,0 +170735961992,441,0 +170735962040,441,0 +170735962088,441,0 +170735962136,441,0 +170735962184,441,0 +170735962232,441,0 +170735962281,441,0 +170735962329,441,0 +170735962377,441,0 +170735962425,441,0 +170735962475,441,0 +170735962523,441,0 +170735962570,441,0 +170735962619,441,0 +170735962667,441,0 +170735962715,441,0 +170735962762,441,0 +170735962810,441,0 +170735962860,440,0 +170735962910,288,1 +170735962997,437,0 +170735963046,441,0 +170735963096,441,0 +170735963145,441,0 +170735963195,441,0 +170735963243,441,0 +170735963292,441,0 +170735963340,441,0 +170735963388,441,0 +170735963436,441,0 +170735963484,441,0 +170735963532,441,0 +170735963582,441,0 +170735963630,441,0 +170735963678,441,0 +170735963726,441,0 +170735963774,441,0 +170735963822,441,0 +170735963869,441,0 +170735963917,440,0 +170735963965,300,1 +170735964045,437,0 +170735964095,441,0 +170735964144,441,0 +170735964192,441,0 +170735964240,441,0 +170735964288,441,0 +170735964336,441,0 +170735964384,441,0 +170735964432,441,0 +170735964480,441,0 +170735964528,441,0 +170735964576,441,0 +170735964625,441,0 +170735964673,441,0 +170735964723,441,0 +170735964771,441,0 +170735964820,441,0 +170735964868,441,0 +170735964918,441,0 +170735964966,376,0 +170735965015,302,1 +170735965098,439,0 +170735965146,441,0 +170735965196,441,0 +170735965244,441,0 +170735965294,441,0 +170735965342,441,0 +170735965389,441,0 +170735965437,441,0 +170735965485,441,0 +170735965533,441,0 +170735965583,441,0 +170735965632,441,0 +170735965680,441,0 +170735965728,441,0 +170735965776,441,0 +170735965824,441,0 +170735965874,441,0 +170735965922,441,0 +170735965969,441,0 +170735966017,440,0 +170735966065,274,1 +170735966149,437,0 +170735966199,441,0 +170735966247,441,0 +170735966295,441,0 +170735966342,441,0 +170735966390,441,0 +170735966438,441,0 +170735966486,441,0 +170735966534,441,0 +170735966582,441,0 +170735966632,441,0 +170735966680,441,0 +170735966728,441,0 +170735966777,441,0 +170735966825,441,0 +170735966873,441,0 +170735966921,441,0 +170735966969,441,0 +170735967017,441,0 +170735967066,440,0 +170735967114,299,1 +170735967196,437,0 +170735967244,441,0 +170735967293,441,0 +170735967341,441,0 +170735967391,441,0 +170735967440,441,0 +170735967488,441,0 +170735967536,441,0 +170735967584,441,0 +170735967632,441,0 +170735967681,441,0 +170735967729,441,0 +170735967777,441,0 +170735967825,441,0 +170735967873,441,0 +170735967921,441,0 +170735967971,441,0 +170735968019,441,0 +170735968067,441,0 +170735968115,434,0 +170735968164,310,0 +170735968212,251,0 +170735968260,440,0 +170735968308,441,0 +170735968356,441,0 +170735968404,441,0 +170735968453,441,0 +170735968501,441,0 +170735968549,441,0 +170735968597,441,0 +170735968645,441,0 +170735968693,441,0 +170735968741,441,0 +170735968789,441,0 +170735968838,441,0 +170735968886,441,0 +170735968936,441,0 +170735968985,441,0 +170735969033,441,0 +170735969083,441,0 +170735969132,441,0 +170735969182,304,1 +170735969266,310,0 +170735969316,441,0 +170735969365,441,0 +170735969413,441,0 +170735969463,441,0 +170735969511,441,0 +170735969559,441,0 +170735969608,441,0 +170735969656,441,0 +170735969704,441,0 +170735969752,441,0 +170735969800,441,0 +170735969848,441,0 +170735969897,441,0 +170735969947,441,0 +170735969995,441,0 +170735970043,441,0 +170735970091,441,0 +170735970139,441,0 +170735970187,441,0 +170735970235,285,1 +170735970317,241,0 +170735970365,441,0 +170735970413,441,0 +170735970461,441,0 +170735970509,441,0 +170735970557,441,0 +170735970607,441,0 +170735970655,441,0 +170735970702,441,0 +170735970750,441,0 +170735970800,441,0 +170735970848,441,0 +170735970896,441,0 +170735970944,441,0 +170735970992,441,0 +170735971040,441,0 +170735971089,441,0 +170735971139,441,0 +170735971187,441,0 +170735971235,440,0 +170735971283,277,1 +170735971365,434,0 +170735971415,441,0 +170735971463,441,0 +170735971510,441,0 +170735971558,441,0 +170735971606,441,0 +170735971656,441,0 +170735971703,441,0 +170735971753,441,0 +170735971801,441,0 +170735971849,441,0 +170735971898,441,0 +170735971948,441,0 +170735971997,441,0 +170735972045,441,0 +170735972095,441,0 +170735972143,441,0 +170735972192,441,0 +170735972240,441,0 +170735972290,440,0 +170735972338,296,1 +170735972417,435,0 +170735972465,441,0 +170735972513,441,0 +170735972561,441,0 +170735972609,441,0 +170735972659,441,0 +170735972708,441,0 +170735972756,441,0 +170735972806,441,0 +170735972855,441,0 +170735972903,441,0 +170735972953,441,0 +170735973001,441,0 +170735973050,441,0 +170735973100,441,0 +170735973148,441,0 +170735973196,441,0 +170735973245,441,0 +170735973295,441,0 +170735973343,440,0 +170735973391,289,1 +170735973474,434,0 +170735973522,441,0 +170735973570,441,0 +170735973619,441,0 +170735973669,441,0 +170735973717,441,0 +170735973765,441,0 +170735973812,441,0 +170735973862,441,0 +170735973912,441,0 +170735973960,441,0 +170735974007,441,0 +170735974055,441,0 +170735974103,441,0 +170735974151,441,0 +170735974199,441,0 +170735974247,441,0 +170735974297,441,0 +170735974345,441,0 +170735974392,440,0 +170735974442,295,1 +170735974527,437,0 +170735974575,441,0 +170735974623,441,0 +170735974670,441,0 +170735974718,441,0 +170735974768,441,0 +170735974816,441,0 +170735974864,441,0 +170735974913,441,0 +170735974961,441,0 +170735975009,441,0 +170735975057,441,0 +170735975105,441,0 +170735975153,441,0 +170735975202,441,0 +170735975250,441,0 +170735975298,441,0 +170735975346,441,0 +170735975396,441,0 +170735975444,440,0 +170735975491,301,1 +170735975571,436,0 +170735975619,441,0 +170735975667,441,0 +170735975715,441,0 +170735975765,441,0 +170735975814,441,0 +170735975862,441,0 +170735975912,441,0 +170735975960,441,0 +170735976008,441,0 +170735976056,441,0 +170735976104,441,0 +170735976152,441,0 +170735976201,441,0 +170735976249,441,0 +170735976299,441,0 +170735976347,441,0 +170735976396,441,0 +170735976446,441,0 +170735976494,440,0 +170735976541,297,1 +170735976625,437,0 +170735976673,441,0 +170735976721,441,0 +170735976771,441,0 +170735976820,441,0 +170735976870,441,0 +170735976918,441,0 +170735976966,441,0 +170735977015,441,0 +170735977063,441,0 +170735977111,441,0 +170735977161,441,0 +170735977209,441,0 +170735977258,441,0 +170735977306,441,0 +170735977354,441,0 +170735977404,441,0 +170735977452,441,0 +170735977501,441,0 +170735977551,418,0 +170735977599,274,1 +170735977679,439,0 +170735977727,441,0 +170735977775,441,0 +170735977825,441,0 +170735977874,441,0 +170735977924,441,0 +170735977972,441,0 +170735978021,441,0 +170735978069,441,0 +170735978117,441,0 +170735978165,441,0 +170735978213,441,0 +170735978261,441,0 +170735978309,441,0 +170735978357,441,0 +170735978405,441,0 +170735978453,441,0 +170735978503,441,0 +170735978550,441,0 +170735978598,434,0 +170735978648,303,1 +170735978728,439,0 +170735978776,441,0 +170735978825,441,0 +170735978873,441,0 +170735978921,441,0 +170735978969,441,0 +170735979019,441,0 +170735979067,441,0 +170735979115,441,0 +170735979164,441,0 +170735979212,441,0 +170735979260,441,0 +170735979310,441,0 +170735979358,441,0 +170735979406,441,0 +170735979453,441,0 +170735979503,441,0 +170735979551,441,0 +170735979599,441,0 +170735979648,280,1 +170735979727,302,1 +170735979807,441,0 +170735979856,441,0 +170735979904,441,0 +170735979954,441,0 +170735980003,441,0 +170735980051,441,0 +170735980099,441,0 +170735980147,441,0 +170735980195,441,0 +170735980245,441,0 +170735980293,441,0 +170735980341,441,0 +170735980390,441,0 +170735980438,441,0 +170735980486,441,0 +170735980534,441,0 +170735980582,441,0 +170735980632,441,0 +170735980680,441,0 +170735980728,306,1 +170735980807,240,0 +170735980856,441,0 +170735980904,441,0 +170735980953,441,0 +170735981003,441,0 +170735981051,441,0 +170735981101,441,0 +170735981148,441,0 +170735981198,441,0 +170735981246,441,0 +170735981295,441,0 +170735981345,441,0 +170735981393,441,0 +170735981442,441,0 +170735981492,441,0 +170735981540,441,0 +170735981587,441,0 +170735981635,441,0 +170735981683,441,0 +170735981731,441,0 +170735981779,305,1 +170735981863,436,0 +170735981912,441,0 +170735981960,441,0 +170735982008,441,0 +170735982056,441,0 +170735982104,441,0 +170735982152,441,0 +170735982200,441,0 +170735982248,441,0 +170735982298,441,0 +170735982346,441,0 +170735982394,441,0 +170735982443,441,0 +170735982491,441,0 +170735982540,441,0 +170735982588,441,0 +170735982638,441,0 +170735982688,441,0 +170735982736,441,0 +170735982783,440,0 +170735982831,295,1 +170735982910,436,0 +170735982958,441,0 +170735983006,441,0 +170735983055,441,0 +170735983105,441,0 +170735983154,441,0 +170735983204,441,0 +170735983252,441,0 +170735983302,441,0 +170735983349,441,0 +170735983397,441,0 +170735983445,441,0 +170735983495,441,0 +170735983543,441,0 +170735983591,441,0 +170735983639,441,0 +170735983687,441,0 +170735983736,441,0 +170735983786,441,0 +170735983834,440,0 +170735983881,276,1 +170735983959,435,0 +170735984009,441,0 +170735984058,441,0 +170735984106,441,0 +170735984154,441,0 +170735984204,441,0 +170735984253,441,0 +170735984303,441,0 +170735984351,441,0 +170735984398,441,0 +170735984447,441,0 +170735984496,441,0 +170735984546,441,0 +170735984594,441,0 +170735984643,441,0 +170735984691,441,0 +170735984739,441,0 +170735984787,441,0 +170735984835,441,0 +170735984883,441,0 +170735984931,298,1 +170735985010,435,0 +170735985060,441,0 +170735985108,441,0 +170735985156,441,0 +170735985203,441,0 +170735985253,441,0 +170735985301,441,0 +170735985350,440,0 +170735985398,441,0 +170735985446,441,0 +170735985496,441,0 +170735985544,441,0 +170735985593,441,0 +170735985641,441,0 +170735985691,441,0 +170735985739,441,0 +170735985787,441,0 +170735985836,441,0 +170735985884,441,0 +170735985932,440,0 +170735985980,298,1 +170735986056,437,0 +170735986104,441,0 +170735986152,441,0 +170735986200,441,0 +170735986249,441,0 +170735986297,441,0 +170735986345,441,0 +170735986393,441,0 +170735986441,441,0 +170735986490,441,0 +170735986540,441,0 +170735986588,441,0 +170735986637,441,0 +170735986687,441,0 +170735986736,441,0 +170735986784,441,0 +170735986832,441,0 +170735986880,441,0 +170735986928,441,0 +170735986976,441,0 +170735987024,300,1 +170735987104,433,0 +170735987154,441,0 +170735987201,441,0 +170735987249,441,0 +170735987297,441,0 +170735987345,441,0 +170735987393,441,0 +170735987441,441,0 +170735987491,441,0 +170735987540,441,0 +170735987590,441,0 +170735987639,441,0 +170735987687,441,0 +170735987737,441,0 +170735987785,441,0 +170735987835,441,0 +170735987882,441,0 +170735987930,441,0 +170735987980,441,0 +170735988028,441,0 +170735988075,312,0 +170735988123,306,1 +170735988210,441,0 +170735988259,441,0 +170735988307,441,0 +170735988355,441,0 +170735988403,441,0 +170735988451,441,0 +170735988500,441,0 +170735988548,441,0 +170735988596,441,0 +170735988643,441,0 +170735988693,441,0 +170735988743,441,0 +170735988791,441,0 +170735988840,441,0 +170735988888,441,0 +170735988936,441,0 +170735988986,441,0 +170735989035,441,0 +170735989083,440,0 +170735989133,303,1 +170735989220,438,0 +170735989268,441,0 +170735989316,441,0 +170735989364,441,0 +170735989413,441,0 +170735989461,441,0 +170735989509,441,0 +170735989557,441,0 +170735989605,441,0 +170735989653,441,0 +170735989701,441,0 +170735989749,441,0 +170735989797,441,0 +170735989847,441,0 +170735989896,441,0 +170735989944,441,0 +170735989992,441,0 +170735990040,441,0 +170735990090,441,0 +170735990139,426,0 +170735990189,298,1 +170735990271,440,0 +170735990321,441,0 +170735990370,441,0 +170735990418,441,0 +170735990466,441,0 +170735990516,441,0 +170735990565,441,0 +170735990614,441,0 +170735990662,441,0 +170735990710,441,0 +170735990760,441,0 +170735990809,441,0 +170735990857,441,0 +170735990905,441,0 +170735990953,441,0 +170735991001,441,0 +170735991050,441,0 +170735991100,441,0 +170735991149,441,0 +170735991197,422,0 +170735991245,289,1 +170735991326,440,0 +170735991376,441,0 +170735991424,441,0 +170735991473,441,0 +170735991521,441,0 +170735991569,441,0 +170735991618,441,0 +170735991666,441,0 +170735991716,441,0 +170735991764,441,0 +170735991812,441,0 +170735991860,441,0 +170735991908,441,0 +170735991957,441,0 +170735992005,441,0 +170735992053,441,0 +170735992101,441,0 +170735992151,441,0 +170735992199,441,0 +170735992248,298,1 +170735992329,266,0 +170735992378,440,0 +170735992428,441,0 +170735992476,441,0 +170735992525,441,0 +170735992573,441,0 +170735992623,441,0 +170735992672,441,0 +170735992720,441,0 +170735992770,441,0 +170735992819,441,0 +170735992867,441,0 +170735992915,441,0 +170735992963,441,0 +170735993013,441,0 +170735993061,441,0 +170735993109,441,0 +170735993157,441,0 +170735993206,441,0 +170735993256,441,0 +170735993304,301,1 +170735993390,282,1 +170735993470,441,0 +170735993518,441,0 +170735993568,441,0 +170735993616,441,0 +170735993664,441,0 +170735993712,441,0 +170735993760,441,0 +170735993808,441,0 +170735993856,441,0 +170735993903,441,0 +170735993953,441,0 +170735994001,441,0 +170735994049,441,0 +170735994096,441,0 +170735994144,441,0 +170735994194,441,0 +170735994242,441,0 +170735994291,440,0 +170735994341,303,1 +170735994421,278,1 +170735994502,441,0 +170735994551,441,0 +170735994601,441,0 +170735994649,441,0 +170735994696,441,0 +170735994746,441,0 +170735994794,441,0 +170735994842,441,0 +170735994890,441,0 +170735994938,441,0 +170735994987,441,0 +170735995035,441,0 +170735995083,441,0 +170735995131,441,0 +170735995179,441,0 +170735995227,441,0 +170735995276,441,0 +170735995324,441,0 +170735995372,441,0 +170735995421,299,1 +170735995501,435,0 +170735995549,441,0 +170735995597,441,0 +170735995645,441,0 +170735995693,441,0 +170735995741,441,0 +170735995791,441,0 +170735995839,441,0 +170735995887,441,0 +170735995935,441,0 +170735995983,441,0 +170735996032,441,0 +170735996080,441,0 +170735996128,441,0 +170735996176,441,0 +170735996224,441,0 +170735996272,441,0 +170735996321,441,0 +170735996369,441,0 +170735996417,441,0 +170735996465,287,1 +170735996547,430,0 +170735996595,441,0 +170735996643,441,0 +170735996691,441,0 +170735996740,441,0 +170735996788,441,0 +170735996838,441,0 +170735996886,441,0 +170735996933,441,0 +170735996981,441,0 +170735997029,441,0 +170735997079,441,0 +170735997128,441,0 +170735997176,441,0 +170735997224,441,0 +170735997272,441,0 +170735997322,441,0 +170735997371,441,0 +170735997419,441,0 +170735997467,440,0 +170735997515,305,1 +170735997595,436,0 +170735997647,441,0 +170735997695,441,0 +170735997743,441,0 +170735997791,441,0 +170735997839,441,0 +170735997889,441,0 +170735997937,441,0 +170735997985,441,0 +170735998033,441,0 +170735998081,441,0 +170735998128,441,0 +170735998176,441,0 +170735998226,441,0 +170735998276,441,0 +170735998325,441,0 +170735998373,441,0 +170735998421,441,0 +170735998469,441,0 +170735998517,440,0 +170735998565,290,1 +170735998644,435,0 +170735998692,441,0 +170735998740,441,0 +170735998789,441,0 +170735998837,441,0 +170735998885,441,0 +170735998933,441,0 +170735998983,441,0 +170735999032,441,0 +170735999080,441,0 +170735999130,441,0 +170735999180,441,0 +170735999229,441,0 +170735999279,441,0 +170735999327,441,0 +170735999376,441,0 +170735999424,441,0 +170735999472,441,0 +170735999520,441,0 +170735999568,440,0 +170735999616,286,1 +170735999697,246,0 +170735999745,441,0 +170735999795,441,0 +170735999843,441,0 +170735999890,441,0 +170735999938,441,0 +170735999986,441,0 +170736000034,441,0 +170736000082,441,0 +170736000132,441,0 +170736000181,441,0 +170736000231,441,0 +170736000279,441,0 +170736000327,441,0 +170736000375,441,0 +170736000424,441,0 +170736000474,441,0 +170736000522,441,0 +170736000570,441,0 +170736000619,440,0 +170736000669,284,1 +170736000751,437,0 +170736000799,441,0 +170736000847,441,0 +170736000897,441,0 +170736000944,441,0 +170736000993,441,0 +170736001040,441,0 +170736001090,441,0 +170736001140,441,0 +170736001188,441,0 +170736001237,441,0 +170736001287,441,0 +170736001335,441,0 +170736001384,441,0 +170736001432,441,0 +170736001480,441,0 +170736001528,441,0 +170736001576,441,0 +170736001626,441,0 +170736001675,439,0 +170736001723,286,1 +170736001804,438,0 +170736001853,441,0 +170736001901,441,0 +170736001951,441,0 +170736001999,441,0 +170736002047,441,0 +170736002096,441,0 +170736002146,441,0 +170736002194,441,0 +170736002242,441,0 +170736002290,441,0 +170736002338,441,0 +170736002386,441,0 +170736002434,441,0 +170736002482,441,0 +170736002530,441,0 +170736002579,441,0 +170736002627,441,0 +170736002675,441,0 +170736002723,440,0 +170736002771,296,1 +170736002850,436,0 +170736002900,441,0 +170736002949,441,0 +170736002999,441,0 +170736003048,441,0 +170736003098,441,0 +170736003147,441,0 +170736003195,441,0 +170736003245,441,0 +170736003293,441,0 +170736003341,441,0 +170736003389,441,0 +170736003437,441,0 +170736003486,441,0 +170736003536,441,0 +170736003584,441,0 +170736003633,441,0 +170736003683,441,0 +170736003733,441,0 +170736003782,440,0 +170736003830,288,1 +170736003910,438,0 +170736003960,441,0 +170736004010,441,0 +170736004057,441,0 +170736004107,441,0 +170736004157,441,0 +170736004205,441,0 +170736004252,441,0 +170736004302,441,0 +170736004350,441,0 +170736004398,441,0 +170736004446,441,0 +170736004495,441,0 +170736004545,441,0 +170736004594,441,0 +170736004642,441,0 +170736004690,441,0 +170736004740,441,0 +170736004789,440,0 +170736004837,292,1 +170736004968,440,0 +170736005016,441,0 +170736005065,441,0 +170736005113,441,0 +170736005161,441,0 +170736005210,441,0 +170736005258,441,0 +170736005308,441,0 +170736005356,441,0 +170736005405,441,0 +170736005453,441,0 +170736005501,441,0 +170736005550,441,0 +170736005598,441,0 +170736005646,441,0 +170736005694,441,0 +170736005742,441,0 +170736005790,441,0 +170736005839,440,0 +170736005887,291,1 +170736005965,298,1 +170736006046,441,0 +170736006094,441,0 +170736006142,441,0 +170736006190,441,0 +170736006238,441,0 +170736006286,441,0 +170736006333,441,0 +170736006381,441,0 +170736006429,441,0 +170736006477,441,0 +170736006525,441,0 +170736006573,441,0 +170736006622,441,0 +170736006670,441,0 +170736006718,441,0 +170736006766,441,0 +170736006814,441,0 +170736006862,441,0 +170736006910,441,0 +170736006957,295,1 +170736007038,430,0 +170736007087,440,0 +170736007135,441,0 +170736007183,441,0 +170736007231,441,0 +170736007279,441,0 +170736007326,441,0 +170736007374,441,0 +170736007422,441,0 +170736007472,441,0 +170736007521,441,0 +170736007569,441,0 +170736007617,441,0 +170736007666,441,0 +170736007714,441,0 +170736007762,441,0 +170736007810,441,0 +170736007858,441,0 +170736007906,441,0 +170736007955,441,0 +170736008003,297,1 +170736008086,435,0 +170736008134,441,0 +170736008182,441,0 +170736008230,441,0 +170736008278,441,0 +170736008326,441,0 +170736008375,441,0 +170736008423,440,0 +170736008471,441,0 +170736008519,441,0 +170736008567,441,0 +170736008616,441,0 +170736008664,441,0 +170736008712,441,0 +170736008760,441,0 +170736008808,441,0 +170736008856,441,0 +170736008904,441,0 +170736008951,441,0 +170736008999,441,0 +170736009049,288,1 +170736009128,248,0 +170736009176,440,0 +170736009224,441,0 +170736009272,441,0 +170736009321,441,0 +170736009369,441,0 +170736009417,441,0 +170736009465,441,0 +170736009515,441,0 +170736009562,441,0 +170736009612,441,0 +170736009660,441,0 +170736009710,441,0 +170736009759,441,0 +170736009809,441,0 +170736009857,441,0 +170736009905,441,0 +170736009954,441,0 +170736010004,441,0 +170736010053,441,0 +170736010101,296,1 +170736010183,265,0 +170736010233,440,0 +170736010281,441,0 +170736010329,441,0 +170736010378,441,0 +170736010428,441,0 +170736010475,441,0 +170736010523,441,0 +170736010573,441,0 +170736010621,441,0 +170736010669,441,0 +170736010717,441,0 +170736010766,441,0 +170736010816,441,0 +170736010864,441,0 +170736010913,441,0 +170736010963,441,0 +170736011011,441,0 +170736011059,441,0 +170736011107,440,0 +170736011156,298,1 +170736011239,435,0 +170736011287,441,0 +170736011335,441,0 +170736011383,441,0 +170736011433,441,0 +170736011481,441,0 +170736011530,441,0 +170736011578,440,0 +170736011628,441,0 +170736011676,441,0 +170736011724,441,0 +170736011772,441,0 +170736011821,441,0 +170736011869,441,0 +170736011917,441,0 +170736011965,441,0 +170736012013,441,0 +170736012061,441,0 +170736012109,441,0 +170736012157,440,0 +170736012205,286,1 +170736012289,435,0 +170736012336,440,0 +170736012384,441,0 +170736012432,441,0 +170736012480,441,0 +170736012528,441,0 +170736012576,441,0 +170736012624,441,0 +170736012672,441,0 +170736012719,441,0 +170736012767,441,0 +170736012815,441,0 +170736012863,441,0 +170736012911,441,0 +170736012959,441,0 +170736013007,441,0 +170736013055,441,0 +170736013102,441,0 +170736013150,441,0 +170736013198,440,0 +170736013248,301,1 +170736013329,431,0 +170736013377,441,0 +170736013425,441,0 +170736013474,441,0 +170736013522,441,0 +170736013572,441,0 +170736013621,441,0 +170736013669,441,0 +170736013717,441,0 +170736013765,441,0 +170736013814,441,0 +170736013862,441,0 +170736013912,441,0 +170736013960,441,0 +170736014008,441,0 +170736014056,441,0 +170736014104,441,0 +170736014151,441,0 +170736014199,441,0 +170736014249,441,0 +170736014297,283,1 +170736014382,432,0 +170736014430,441,0 +170736014478,441,0 +170736014528,441,0 +170736014576,441,0 +170736014623,441,0 +170736014671,441,0 +170736014719,441,0 +170736014767,441,0 +170736014817,441,0 +170736014864,441,0 +170736014912,441,0 +170736014962,441,0 +170736015011,441,0 +170736015059,441,0 +170736015109,440,0 +170736015157,441,0 +170736015206,441,0 +170736015254,441,0 +170736015302,440,0 +170736015350,298,1 +170736015434,434,0 +170736015482,441,0 +170736015530,441,0 +170736015578,441,0 +170736015626,441,0 +170736015675,441,0 +170736015723,441,0 +170736015773,441,0 +170736015821,441,0 +170736015870,441,0 +170736015918,441,0 +170736015968,441,0 +170736016017,441,0 +170736016067,441,0 +170736016116,441,0 +170736016164,441,0 +170736016212,441,0 +170736016260,441,0 +170736016308,441,0 +170736016356,440,0 +170736016406,298,1 +170736016485,436,0 +170736016534,440,0 +170736016582,441,0 +170736016630,441,0 +170736016678,441,0 +170736016726,441,0 +170736016774,441,0 +170736016822,441,0 +170736016870,441,0 +170736016918,441,0 +170736016966,441,0 +170736017015,441,0 +170736017065,441,0 +170736017114,441,0 +170736017162,441,0 +170736017212,441,0 +170736017260,441,0 +170736017308,441,0 +170736017356,440,0 +170736017405,440,0 +170736017455,288,1 +170736017535,436,0 +170736017583,441,0 +170736017631,441,0 +170736017680,440,0 +170736017728,441,0 +170736017778,441,0 +170736017826,441,0 +170736017874,441,0 +170736017922,441,0 +170736017970,441,0 +170736018018,441,0 +170736018066,441,0 +170736018115,441,0 +170736018163,441,0 +170736018211,441,0 +170736018259,441,0 +170736018309,441,0 +170736018357,441,0 +170736018405,441,0 +170736018452,440,0 +170736018502,299,1 +170736018590,436,0 +170736018638,441,0 +170736018686,441,0 +170736018734,441,0 +170736018783,441,0 +170736018833,441,0 +170736018882,441,0 +170736018930,441,0 +170736018978,441,0 +170736019026,441,0 +170736019076,441,0 +170736019125,441,0 +170736019173,441,0 +170736019223,441,0 +170736019271,441,0 +170736019319,441,0 +170736019367,441,0 +170736019415,441,0 +170736019464,441,0 +170736019514,277,1 +170736019595,273,1 +170736019673,441,0 +170736019721,441,0 +170736019770,441,0 +170736019820,441,0 +170736019869,441,0 +170736019917,441,0 +170736019967,441,0 +170736020015,441,0 +170736020064,441,0 +170736020112,441,0 +170736020160,441,0 +170736020208,441,0 +170736020256,441,0 +170736020304,441,0 +170736020352,441,0 +170736020402,441,0 +170736020450,441,0 +170736020498,441,0 +170736020547,440,0 +170736020595,295,1 +170736020677,436,0 +170736020725,441,0 +170736020773,441,0 +170736020820,441,0 +170736020868,441,0 +170736020918,441,0 +170736020967,441,0 +170736021017,441,0 +170736021066,441,0 +170736021116,441,0 +170736021164,441,0 +170736021212,441,0 +170736021260,441,0 +170736021310,441,0 +170736021357,441,0 +170736021405,441,0 +170736021453,441,0 +170736021503,441,0 +170736021551,440,0 +170736021599,440,0 +170736021647,283,1 +170736021732,436,0 +170736021780,440,0 +170736021830,441,0 +170736021878,441,0 +170736021925,441,0 +170736021975,441,0 +170736022025,441,0 +170736022074,441,0 +170736022122,441,0 +170736022172,441,0 +170736022221,441,0 +170736022271,441,0 +170736022320,441,0 +170736022370,441,0 +170736022418,441,0 +170736022466,441,0 +170736022515,441,0 +170736022565,441,0 +170736022613,440,0 +170736022661,287,1 +170736022746,290,1 +170736022825,441,0 +170736022874,441,0 +170736022924,441,0 +170736022973,441,0 +170736023021,441,0 +170736023069,441,0 +170736023117,441,0 +170736023165,441,0 +170736023213,441,0 +170736023261,441,0 +170736023309,441,0 +170736023357,441,0 +170736023407,441,0 +170736023454,441,0 +170736023502,441,0 +170736023550,441,0 +170736023598,441,0 +170736023646,440,0 +170736023696,437,0 +170736023744,300,1 +170736023823,437,0 +170736023871,440,0 +170736023919,441,0 +170736023967,441,0 +170736024016,441,0 +170736024064,441,0 +170736024112,441,0 +170736024160,441,0 +170736024208,441,0 +170736024256,441,0 +170736024306,441,0 +170736024355,441,0 +170736024403,441,0 +170736024451,441,0 +170736024499,441,0 +170736024549,441,0 +170736024598,441,0 +170736024648,441,0 +170736024696,441,0 +170736024744,440,0 +170736024793,302,1 +170736024882,435,0 +170736024931,441,0 +170736024981,441,0 +170736025029,441,0 +170736025079,441,0 +170736025126,441,0 +170736025176,441,0 +170736025224,441,0 +170736025272,441,0 +170736025320,441,0 +170736025368,441,0 +170736025416,441,0 +170736025465,441,0 +170736025515,441,0 +170736025564,441,0 +170736025612,441,0 +170736025662,441,0 +170736025711,441,0 +170736025759,441,0 +170736025807,435,0 +170736025857,313,0 +170736025905,238,0 +170736025953,440,0 +170736026001,441,0 +170736026049,441,0 +170736026097,441,0 +170736026145,441,0 +170736026194,441,0 +170736026244,441,0 +170736026292,441,0 +170736026341,440,0 +170736026389,441,0 +170736026437,441,0 +170736026485,441,0 +170736026533,441,0 +170736026582,441,0 +170736026630,441,0 +170736026680,441,0 +170736026728,441,0 +170736026776,441,0 +170736026824,441,0 +170736026872,299,1 +170736026956,238,0 +170736027004,441,0 +170736027052,441,0 +170736027101,441,0 +170736027149,441,0 +170736027197,441,0 +170736027245,440,0 +170736027293,441,0 +170736027343,441,0 +170736027392,441,0 +170736027442,441,0 +170736027490,441,0 +170736027538,441,0 +170736027586,441,0 +170736027634,441,0 +170736027682,441,0 +170736027731,441,0 +170736027779,440,0 +170736027827,441,0 +170736027875,440,0 +170736027923,294,1 +170736028003,237,0 +170736028052,440,0 +170736028100,441,0 +170736028150,441,0 +170736028198,441,0 +170736028246,441,0 +170736028295,441,0 +170736028343,441,0 +170736028391,441,0 +170736028439,440,0 +170736028488,441,0 +170736028536,441,0 +170736028584,441,0 +170736028634,441,0 +170736028682,441,0 +170736028730,441,0 +170736028778,441,0 +170736028826,441,0 +170736028875,441,0 +170736028923,440,0 +170736028971,305,1 +170736029050,249,0 +170736029098,440,0 +170736029146,441,0 +170736029194,441,0 +170736029242,441,0 +170736029291,440,0 +170736029341,441,0 +170736029389,440,0 +170736029437,441,0 +170736029485,441,0 +170736029533,441,0 +170736029581,441,0 +170736029630,441,0 +170736029680,441,0 +170736029728,441,0 +170736029776,441,0 +170736029825,441,0 +170736029875,441,0 +170736029924,440,0 +170736029974,440,0 +170736030022,304,1 +170736030107,434,0 +170736030155,440,0 +170736030205,441,0 +170736030254,441,0 +170736030302,441,0 +170736030350,441,0 +170736030400,441,0 +170736030447,441,0 +170736030495,441,0 +170736030543,441,0 +170736030593,441,0 +170736030642,441,0 +170736030690,441,0 +170736030738,441,0 +170736030786,441,0 +170736030834,441,0 +170736030882,441,0 +170736030932,441,0 +170736030980,441,0 +170736031028,440,0 +170736031075,246,0 +170736031125,251,0 +170736031173,438,0 +170736031221,440,0 +170736031269,441,0 +170736031317,441,0 +170736031366,441,0 +170736031416,441,0 +170736031465,440,0 +170736031515,441,0 +170736031564,441,0 +170736031612,441,0 +170736031660,440,0 +170736031708,441,0 +170736031758,441,0 +170736031806,441,0 +170736031854,441,0 +170736031902,441,0 +170736031950,441,0 +170736031999,441,0 +170736032047,441,0 +170736032095,440,0 +170736032143,304,1 +170736032222,437,0 +170736032270,441,0 +170736032319,440,0 +170736032369,441,0 +170736032418,441,0 +170736032468,441,0 +170736032517,441,0 +170736032567,441,0 +170736032616,440,0 +170736032664,440,0 +170736032712,441,0 +170736032762,440,0 +170736032811,441,0 +170736032861,441,0 +170736032910,441,0 +170736032958,441,0 +170736033008,441,0 +170736033056,441,0 +170736033103,441,0 +170736033151,310,0 +170736033199,309,1 +170736033281,438,0 +170736033329,441,0 +170736033379,441,0 +170736033427,440,0 +170736033474,441,0 +170736033522,441,0 +170736033570,441,0 +170736033620,441,0 +170736033668,441,0 +170736033715,440,0 +170736033763,441,0 +170736033811,441,0 +170736033859,441,0 +170736033907,440,0 +170736033955,440,0 +170736034003,441,0 +170736034052,441,0 +170736034102,441,0 +170736034150,441,0 +170736034198,265,0 +170736034245,299,1 +170736034323,438,0 +170736034371,441,0 +170736034418,441,0 +170736034468,441,0 +170736034516,440,0 +170736034564,441,0 +170736034613,441,0 +170736034661,441,0 +170736034709,441,0 +170736034757,441,0 +170736034806,441,0 +170736034854,440,0 +170736034902,441,0 +170736034950,441,0 +170736034998,441,0 +170736035046,441,0 +170736035094,441,0 +170736035142,441,0 +170736035190,441,0 +170736035238,440,0 +170736035285,303,1 +170736035373,438,0 +170736035423,441,0 +170736035471,441,0 +170736035520,440,0 +170736035568,441,0 +170736035616,440,0 +170736035664,440,0 +170736035714,441,0 +170736035762,441,0 +170736035811,441,0 +170736035861,441,0 +170736035909,440,0 +170736035957,441,0 +170736036006,441,0 +170736036054,441,0 +170736036104,441,0 +170736036153,441,0 +170736036203,441,0 +170736036251,441,0 +170736036300,256,0 +170736036350,302,1 +170736036433,440,0 +170736036481,441,0 +170736036531,441,0 +170736036581,441,0 +170736036628,441,0 +170736036676,441,0 +170736036726,441,0 +170736036776,440,0 +170736036825,441,0 +170736036873,441,0 +170736036921,441,0 +170736036969,441,0 +170736037017,441,0 +170736037066,441,0 +170736037114,441,0 +170736037162,441,0 +170736037210,441,0 +170736037258,441,0 +170736037306,441,0 +170736037355,291,1 +170736037434,249,0 +170736037483,440,0 +170736037533,441,0 +170736037582,441,0 +170736037630,441,0 +170736037680,441,0 +170736037728,441,0 +170736037778,441,0 +170736037825,441,0 +170736037874,441,0 +170736037921,441,0 +170736037969,441,0 +170736038017,441,0 +170736038065,441,0 +170736038113,441,0 +170736038161,441,0 +170736038211,441,0 +170736038259,441,0 +170736038308,441,0 +170736038356,441,0 +170736038406,299,1 +170736038483,236,0 +170736038531,441,0 +170736038580,441,0 +170736038628,441,0 +170736038676,441,0 +170736038724,441,0 +170736038773,441,0 +170736038821,441,0 +170736038869,441,0 +170736038919,441,0 +170736038967,441,0 +170736039015,441,0 +170736039063,441,0 +170736039112,441,0 +170736039160,441,0 +170736039208,441,0 +170736039258,441,0 +170736039306,441,0 +170736039354,441,0 +170736039403,441,0 +170736039453,299,1 +170736039532,255,0 +170736039580,440,0 +170736039627,441,0 +170736039675,441,0 +170736039723,441,0 +170736039773,441,0 +170736039821,441,0 +170736039870,441,0 +170736039918,441,0 +170736039966,441,0 +170736040014,441,0 +170736040064,441,0 +170736040112,441,0 +170736040160,441,0 +170736040209,441,0 +170736040257,441,0 +170736040305,441,0 +170736040355,441,0 +170736040404,441,0 +170736040454,440,0 +170736040503,298,1 +170736040596,432,0 +170736040646,441,0 +170736040693,441,0 +170736040743,441,0 +170736040792,441,0 +170736040842,441,0 +170736040890,441,0 +170736040938,441,0 +170736040986,441,0 +170736041035,441,0 +170736041083,441,0 +170736041133,441,0 +170736041181,441,0 +170736041230,441,0 +170736041278,441,0 +170736041328,441,0 +170736041376,441,0 +170736041425,441,0 +170736041473,441,0 +170736041521,440,0 +170736041571,291,1 +170736041651,436,0 +170736041701,441,0 +170736041749,441,0 +170736041797,441,0 +170736041845,441,0 +170736041893,441,0 +170736041942,441,0 +170736041990,441,0 +170736042040,441,0 +170736042088,441,0 +170736042136,441,0 +170736042185,441,0 +170736042235,441,0 +170736042284,441,0 +170736042334,441,0 +170736042382,441,0 +170736042430,441,0 +170736042478,441,0 +170736042527,441,0 +170736042575,431,0 +170736042624,284,1 +170736042700,437,0 +170736042748,441,0 +170736042796,441,0 +170736042844,441,0 +170736042892,441,0 +170736042940,441,0 +170736042988,441,0 +170736043035,441,0 +170736043083,441,0 +170736043131,441,0 +170736043179,441,0 +170736043227,441,0 +170736043275,441,0 +170736043323,441,0 +170736043371,441,0 +170736043419,441,0 +170736043467,441,0 +170736043515,441,0 +170736043563,441,0 +170736043610,440,0 +170736043658,294,1 +170736043737,404,0 +170736043785,441,0 +170736043834,441,0 +170736043882,441,0 +170736043930,441,0 +170736043978,441,0 +170736044027,441,0 +170736044075,441,0 +170736044125,441,0 +170736044175,441,0 +170736044222,441,0 +170736044270,441,0 +170736044320,441,0 +170736044369,441,0 +170736044417,441,0 +170736044467,441,0 +170736044517,441,0 +170736044566,441,0 +170736044616,441,0 +170736044664,440,0 +170736044711,295,1 +170736044793,436,0 +170736044841,441,0 +170736044889,441,0 +170736044936,441,0 +170736044984,441,0 +170736045032,440,0 +170736045082,441,0 +170736045130,440,0 +170736045178,441,0 +170736045225,441,0 +170736045273,441,0 +170736045321,441,0 +170736045369,441,0 +170736045417,441,0 +170736045465,440,0 +170736045513,441,0 +170736045561,441,0 +170736045610,441,0 +170736045660,441,0 +170736045708,440,0 +170736045756,305,1 +170736045837,437,0 +170736045886,441,0 +170736045936,441,0 +170736045984,441,0 +170736046032,441,0 +170736046080,441,0 +170736046128,441,0 +170736046176,441,0 +170736046224,441,0 +170736046273,441,0 +170736046321,441,0 +170736046369,441,0 +170736046417,441,0 +170736046465,441,0 +170736046513,441,0 +170736046562,441,0 +170736046610,441,0 +170736046660,441,0 +170736046709,441,0 +170736046757,441,0 +170736046805,296,1 +170736046884,434,0 +170736046932,441,0 +170736046981,441,0 +170736047031,441,0 +170736047081,441,0 +170736047130,441,0 +170736047180,441,0 +170736047228,441,0 +170736047276,441,0 +170736047325,441,0 +170736047375,441,0 +170736047422,441,0 +170736047470,441,0 +170736047520,441,0 +170736047568,441,0 +170736047617,441,0 +170736047667,441,0 +170736047715,441,0 +170736047763,441,0 +170736047812,440,0 +170736047860,302,1 +170736047941,435,0 +170736047991,441,0 +170736048040,441,0 +170736048090,441,0 +170736048139,441,0 +170736048187,441,0 +170736048235,441,0 +170736048285,441,0 +170736048335,441,0 +170736048384,441,0 +170736048432,441,0 +170736048480,441,0 +170736048528,441,0 +170736048577,441,0 +170736048627,441,0 +170736048675,441,0 +170736048723,441,0 +170736048771,441,0 +170736048820,441,0 +170736048870,268,0 +170736048918,298,1 +170736048996,438,0 +170736049044,441,0 +170736049092,441,0 +170736049139,441,0 +170736049187,441,0 +170736049235,441,0 +170736049285,441,0 +170736049333,441,0 +170736049380,441,0 +170736049428,441,0 +170736049476,441,0 +170736049524,441,0 +170736049574,441,0 +170736049623,441,0 +170736049671,441,0 +170736049719,441,0 +170736049767,441,0 +170736049815,441,0 +170736049863,441,0 +170736049911,440,0 +170736049959,292,1 +170736050039,437,0 +170736050087,441,0 +170736050135,441,0 +170736050185,441,0 +170736050234,441,0 +170736050282,441,0 +170736050332,441,0 +170736050380,441,0 +170736050428,441,0 +170736050476,441,0 +170736050525,441,0 +170736050573,441,0 +170736050621,441,0 +170736050669,441,0 +170736050717,441,0 +170736050765,441,0 +170736050812,441,0 +170736050860,441,0 +170736050908,441,0 +170736050958,440,0 +170736051006,301,1 +170736051091,436,0 +170736051141,441,0 +170736051189,441,0 +170736051238,441,0 +170736051287,441,0 +170736051335,440,0 +170736051383,441,0 +170736051433,441,0 +170736051481,441,0 +170736051529,441,0 +170736051577,441,0 +170736051625,441,0 +170736051672,441,0 +170736051720,441,0 +170736051768,441,0 +170736051816,441,0 +170736051864,441,0 +170736051912,441,0 +170736051960,441,0 +170736052008,424,0 +170736052055,299,1 +170736052135,437,0 +170736052183,441,0 +170736052231,441,0 +170736052280,441,0 +170736052330,441,0 +170736052379,441,0 +170736052427,441,0 +170736052475,441,0 +170736052523,441,0 +170736052571,441,0 +170736052619,441,0 +170736052667,441,0 +170736052716,441,0 +170736052764,441,0 +170736052812,441,0 +170736052860,441,0 +170736052909,441,0 +170736052957,441,0 +170736053005,441,0 +170736053053,434,0 +170736053101,293,1 +170736053183,438,0 +170736053231,441,0 +170736053281,441,0 +170736053328,441,0 +170736053376,441,0 +170736053424,441,0 +170736053474,441,0 +170736053522,441,0 +170736053569,441,0 +170736053617,441,0 +170736053665,441,0 +170736053713,441,0 +170736053761,441,0 +170736053809,441,0 +170736053858,441,0 +170736053908,441,0 +170736053956,441,0 +170736054004,441,0 +170736054053,441,0 +170736054101,440,0 +170736054149,303,1 +170736054229,434,0 +170736054277,441,0 +170736054327,441,0 +170736054375,441,0 +170736054422,441,0 +170736054470,441,0 +170736054518,441,0 +170736054566,440,0 +170736054614,441,0 +170736054662,441,0 +170736054710,441,0 +170736054758,441,0 +170736054806,441,0 +170736054855,441,0 +170736054905,441,0 +170736054954,441,0 +170736055002,441,0 +170736055050,441,0 +170736055098,441,0 +170736055146,440,0 +170736055194,297,1 +170736055272,433,0 +170736055321,441,0 +170736055371,441,0 +170736055419,441,0 +170736055467,441,0 +170736055515,441,0 +170736055563,441,0 +170736055611,441,0 +170736055659,441,0 +170736055708,441,0 +170736055758,441,0 +170736055807,441,0 +170736055855,441,0 +170736055903,441,0 +170736055951,441,0 +170736055999,441,0 +170736056047,441,0 +170736056096,441,0 +170736056144,440,0 +170736056192,440,0 +170736056240,309,1 +170736056317,435,0 +170736056367,441,0 +170736056414,441,0 +170736056462,441,0 +170736056510,441,0 +170736056558,441,0 +170736056606,441,0 +170736056655,441,0 +170736056703,441,0 +170736056753,441,0 +170736056801,441,0 +170736056849,441,0 +170736056897,441,0 +170736056946,441,0 +170736056994,441,0 +170736057042,441,0 +170736057090,441,0 +170736057138,441,0 +170736057186,441,0 +170736057233,440,0 +170736057283,298,1 +170736057364,431,0 +170736057412,441,0 +170736057460,441,0 +170736057510,441,0 +170736057559,441,0 +170736057609,441,0 +170736057658,441,0 +170736057706,441,0 +170736057756,441,0 +170736057805,441,0 +170736057855,441,0 +170736057903,441,0 +170736057951,441,0 +170736058000,441,0 +170736058048,441,0 +170736058096,441,0 +170736058144,441,0 +170736058194,441,0 +170736058243,441,0 +170736058293,440,0 +170736058341,297,1 +170736058421,434,0 +170736058473,441,0 +170736058521,441,0 +170736058569,441,0 +170736058617,441,0 +170736058667,441,0 +170736058716,441,0 +170736058766,441,0 +170736058814,441,0 +170736058862,441,0 +170736058910,441,0 +170736058959,441,0 +170736059007,441,0 +170736059055,441,0 +170736059104,441,0 +170736059152,441,0 +170736059200,441,0 +170736059248,441,0 +170736059296,441,0 +170736059344,441,0 +170736059394,441,0 +170736059442,441,0 +170736059489,441,0 +170736059539,441,0 +170736059588,441,0 +170736059636,441,0 +170736059686,441,0 +170736059734,441,0 +170736059781,441,0 +170736059829,440,0 +170736059877,295,1 +170736059956,297,1 +170736060033,441,0 +170736060080,441,0 +170736060128,441,0 +170736060176,441,0 +170736060224,441,0 +170736060272,441,0 +170736060322,441,0 +170736060370,441,0 +170736060418,441,0 +170736060466,441,0 +170736060515,441,0 +170736060565,441,0 +170736060612,441,0 +170736060660,441,0 +170736060708,441,0 +170736060756,441,0 +170736060806,441,0 +170736060854,441,0 +170736060903,441,0 +170736060953,301,1 +170736061033,434,0 +170736061085,440,0 +170736061135,441,0 +170736061184,441,0 +170736061232,440,0 +170736061280,441,0 +170736061328,441,0 +170736061376,441,0 +170736061424,441,0 +170736061472,441,0 +170736061522,441,0 +170736061571,441,0 +170736061619,441,0 +170736061667,441,0 +170736061715,441,0 +170736061763,441,0 +170736061813,441,0 +170736061861,441,0 +170736061909,441,0 +170736061957,440,0 +170736062005,295,1 +170736062090,433,0 +170736062139,441,0 +170736062187,441,0 +170736062237,441,0 +170736062286,441,0 +170736062336,441,0 +170736062385,441,0 +170736062433,441,0 +170736062481,441,0 +170736062531,441,0 +170736062580,441,0 +170736062630,441,0 +170736062679,441,0 +170736062729,441,0 +170736062778,441,0 +170736062828,441,0 +170736062876,441,0 +170736062925,441,0 +170736062975,441,0 +170736063024,280,1 +170736063107,292,1 +170736063186,441,0 +170736063235,441,0 +170736063283,441,0 +170736063333,441,0 +170736063381,441,0 +170736063429,441,0 +170736063477,441,0 +170736063526,441,0 +170736063576,441,0 +170736063625,441,0 +170736063673,441,0 +170736063721,441,0 +170736063769,441,0 +170736063818,441,0 +170736063868,441,0 +170736063916,441,0 +170736063964,441,0 +170736064012,441,0 +170736064060,440,0 +170736064108,293,1 +170736064187,436,0 +170736064235,441,0 +170736064283,441,0 +170736064333,441,0 +170736064381,441,0 +170736064429,441,0 +170736064477,441,0 +170736064525,441,0 +170736064573,441,0 +170736064621,441,0 +170736064669,441,0 +170736064718,441,0 +170736064766,441,0 +170736064814,441,0 +170736064864,441,0 +170736064913,441,0 +170736064961,441,0 +170736065009,441,0 +170736065059,441,0 +170736065108,440,0 +170736065158,297,1 +170736065235,434,0 +170736065285,441,0 +170736065335,441,0 +170736065384,440,0 +170736065434,441,0 +170736065482,441,0 +170736065531,441,0 +170736065579,440,0 +170736065629,441,0 +170736065677,441,0 +170736065726,440,0 +170736065776,441,0 +170736065825,441,0 +170736065875,441,0 +170736065924,441,0 +170736065972,441,0 +170736066020,441,0 +170736066068,441,0 +170736066116,441,0 +170736066164,372,0 +170736066214,278,1 +170736066299,440,0 +170736066347,440,0 +170736066395,441,0 +170736066443,441,0 +170736066491,441,0 +170736066539,441,0 +170736066588,441,0 +170736066636,441,0 +170736066684,441,0 +170736066734,441,0 +170736066783,441,0 +170736066831,441,0 +170736066879,441,0 +170736066929,441,0 +170736066978,441,0 +170736067026,441,0 +170736067076,441,0 +170736067125,441,0 +170736067175,441,0 +170736067222,308,1 +170736067306,247,0 +170736067355,440,0 +170736067403,441,0 +170736067451,441,0 +170736067499,441,0 +170736067547,441,0 +170736067597,441,0 +170736067646,441,0 +170736067694,441,0 +170736067744,441,0 +170736067792,441,0 +170736067839,441,0 +170736067889,441,0 +170736067937,441,0 +170736067985,441,0 +170736068034,441,0 +170736068082,441,0 +170736068130,441,0 +170736068178,441,0 +170736068228,440,0 +170736068277,282,1 +170736068362,236,0 +170736068411,441,0 +170736068459,441,0 +170736068507,441,0 +170736068555,441,0 +170736068605,441,0 +170736068653,441,0 +170736068701,441,0 +170736068749,441,0 +170736068798,441,0 +170736068848,441,0 +170736068896,441,0 +170736068944,441,0 +170736068993,441,0 +170736069043,441,0 +170736069091,441,0 +170736069139,441,0 +170736069187,441,0 +170736069236,441,0 +170736069284,441,0 +170736069332,309,1 +170736069412,246,0 +170736069460,440,0 +170736069510,441,0 +170736069559,441,0 +170736069609,441,0 +170736069657,441,0 +170736069705,441,0 +170736069753,441,0 +170736069802,441,0 +170736069850,441,0 +170736069898,441,0 +170736069946,441,0 +170736069996,441,0 +170736070044,441,0 +170736070093,441,0 +170736070141,441,0 +170736070190,441,0 +170736070238,441,0 +170736070286,441,0 +170736070336,440,0 +170736070384,299,1 +170736070464,431,0 +170736070514,441,0 +170736070562,441,0 +170736070610,441,0 +170736070658,441,0 +170736070707,441,0 +170736070757,441,0 +170736070805,441,0 +170736070853,441,0 +170736070901,441,0 +170736070949,441,0 +170736070998,441,0 +170736071046,441,0 +170736071096,441,0 +170736071145,441,0 +170736071193,441,0 +170736071241,441,0 +170736071289,441,0 +170736071337,441,0 +170736071385,440,0 +170736071433,302,1 +170736071515,416,0 +170736071564,441,0 +170736071612,441,0 +170736071660,441,0 +170736071709,441,0 +170736071757,441,0 +170736071807,441,0 +170736071855,441,0 +170736071904,441,0 +170736071952,441,0 +170736072000,441,0 +170736072050,441,0 +170736072099,441,0 +170736072149,441,0 +170736072197,441,0 +170736072245,441,0 +170736072293,441,0 +170736072341,441,0 +170736072390,441,0 +170736072438,440,0 +170736072486,295,1 +170736072563,261,0 +170736072611,441,0 +170736072660,441,0 +170736072708,441,0 +170736072756,441,0 +170736072804,441,0 +170736072854,441,0 +170736072902,441,0 +170736072950,441,0 +170736072999,441,0 +170736073047,441,0 +170736073097,441,0 +170736073145,441,0 +170736073193,441,0 +170736073241,441,0 +170736073289,441,0 +170736073337,441,0 +170736073385,441,0 +170736073433,441,0 +170736073481,440,0 +170736073529,308,1 +170736073604,365,0 +170736073654,441,0 +170736073703,441,0 +170736073751,441,0 +170736073799,441,0 +170736073847,441,0 +170736073895,441,0 +170736073943,441,0 +170736073991,441,0 +170736074039,441,0 +170736074087,441,0 +170736074136,441,0 +170736074186,441,0 +170736074235,441,0 +170736074283,441,0 +170736074331,441,0 +170736074379,441,0 +170736074427,441,0 +170736074477,441,0 +170736074525,441,0 +170736074572,305,1 +170736074653,237,0 +170736074701,440,0 +170736074751,441,0 +170736074799,441,0 +170736074848,441,0 +170736074896,441,0 +170736074944,441,0 +170736074992,441,0 +170736075042,441,0 +170736075090,441,0 +170736075139,441,0 +170736075187,441,0 +170736075235,441,0 +170736075285,441,0 +170736075334,441,0 +170736075382,441,0 +170736075430,441,0 +170736075478,441,0 +170736075528,440,0 +170736075576,440,0 +170736075625,297,1 +170736075707,245,0 +170736075756,441,0 +170736075804,441,0 +170736075854,441,0 +170736075903,441,0 +170736075951,441,0 +170736075999,441,0 +170736076047,441,0 +170736076095,441,0 +170736076143,441,0 +170736076191,441,0 +170736076239,441,0 +170736076287,441,0 +170736076336,441,0 +170736076384,441,0 +170736076432,441,0 +170736076480,441,0 +170736076528,441,0 +170736076576,441,0 +170736076624,441,0 +170736076672,303,1 +170736076751,241,0 +170736076799,440,0 +170736076847,441,0 +170736076897,441,0 +170736076945,441,0 +170736076994,441,0 +170736077042,441,0 +170736077090,441,0 +170736077138,441,0 +170736077186,441,0 +170736077234,441,0 +170736077282,441,0 +170736077330,441,0 +170736077380,441,0 +170736077428,441,0 +170736077476,441,0 +170736077525,441,0 +170736077573,440,0 +170736077623,441,0 +170736077671,441,0 +170736077719,309,1 +170736077800,244,0 +170736077848,440,0 +170736077896,441,0 +170736077944,441,0 +170736077992,441,0 +170736078041,441,0 +170736078089,441,0 +170736078137,441,0 +170736078185,441,0 +170736078235,441,0 +170736078284,441,0 +170736078332,441,0 +170736078380,441,0 +170736078428,441,0 +170736078476,441,0 +170736078524,441,0 +170736078572,441,0 +170736078620,441,0 +170736078668,441,0 +170736078718,441,0 +170736078767,300,1 +170736078847,236,0 +170736078895,441,0 +170736078943,440,0 +170736078991,441,0 +170736079039,441,0 +170736079087,441,0 +170736079135,441,0 +170736079183,441,0 +170736079231,441,0 +170736079280,441,0 +170736079328,441,0 +170736079376,441,0 +170736079426,441,0 +170736079475,441,0 +170736079523,441,0 +170736079571,441,0 +170736079619,441,0 +170736079667,441,0 +170736079715,441,0 +170736079765,441,0 +170736079813,296,1 +170736079892,268,0 +170736079940,440,0 +170736079988,441,0 +170736080036,441,0 +170736080083,441,0 +170736080131,441,0 +170736080179,441,0 +170736080229,441,0 +170736080277,441,0 +170736080325,441,0 +170736080373,441,0 +170736080421,441,0 +170736080470,441,0 +170736080518,441,0 +170736080566,441,0 +170736080614,441,0 +170736080662,441,0 +170736080710,441,0 +170736080759,441,0 +170736080807,440,0 +170736080857,299,1 +170736080941,246,0 +170736080991,440,0 +170736081039,441,0 +170736081088,441,0 +170736081138,441,0 +170736081187,441,0 +170736081235,441,0 +170736081285,441,0 +170736081333,441,0 +170736081382,441,0 +170736081432,441,0 +170736081480,441,0 +170736081529,441,0 +170736081577,441,0 +170736081625,441,0 +170736081673,441,0 +170736081721,441,0 +170736081769,441,0 +170736081817,440,0 +170736081864,440,0 +170736081912,285,1 +170736081991,239,0 +170736082038,440,0 +170736082088,441,0 +170736082136,441,0 +170736082184,441,0 +170736082232,441,0 +170736082281,441,0 +170736082329,441,0 +170736082377,441,0 +170736082425,441,0 +170736082474,441,0 +170736082522,441,0 +170736082570,441,0 +170736082620,441,0 +170736082668,441,0 +170736082716,441,0 +170736082764,441,0 +170736082811,441,0 +170736082859,441,0 +170736082907,441,0 +170736082955,300,1 +170736083033,268,0 +170736083081,440,0 +170736083129,441,0 +170736083177,441,0 +170736083224,441,0 +170736083274,441,0 +170736083324,441,0 +170736083372,441,0 +170736083420,441,0 +170736083467,441,0 +170736083515,440,0 +170736083563,441,0 +170736083611,441,0 +170736083659,441,0 +170736083707,441,0 +170736083755,441,0 +170736083805,441,0 +170736083853,441,0 +170736083902,440,0 +170736083950,441,0 +170736084000,435,0 +170736084048,290,1 +170736084142,440,0 +170736084190,441,0 +170736084238,441,0 +170736084286,441,0 +170736084334,441,0 +170736084382,441,0 +170736084431,441,0 +170736084479,441,0 +170736084527,441,0 +170736084575,441,0 +170736084623,441,0 +170736084671,441,0 +170736084719,441,0 +170736084767,441,0 +170736084815,441,0 +170736084863,441,0 +170736084911,441,0 +170736084958,441,0 +170736085006,441,0 +170736085054,297,1 +170736085132,285,1 +170736085210,441,0 +170736085258,441,0 +170736085308,441,0 +170736085356,441,0 +170736085404,441,0 +170736085452,441,0 +170736085500,441,0 +170736085549,441,0 +170736085599,441,0 +170736085648,441,0 +170736085698,441,0 +170736085746,441,0 +170736085795,441,0 +170736085843,441,0 +170736085891,441,0 +170736085939,441,0 +170736085989,441,0 +170736086038,441,0 +170736086086,436,0 +170736086136,300,1 +170736086217,438,0 +170736086265,441,0 +170736086314,441,0 +170736086362,441,0 +170736086410,441,0 +170736086458,441,0 +170736086506,441,0 +170736086554,441,0 +170736086602,441,0 +170736086650,440,0 +170736086698,441,0 +170736086747,440,0 +170736086795,441,0 +170736086845,441,0 +170736086893,441,0 +170736086942,441,0 +170736086992,441,0 +170736087040,441,0 +170736087088,441,0 +170736087137,439,0 +170736087187,296,1 +170736087267,438,0 +170736087315,441,0 +170736087364,441,0 +170736087414,440,0 +170736087462,441,0 +170736087509,441,0 +170736087557,441,0 +170736087607,441,0 +170736087657,441,0 +170736087704,441,0 +170736087752,441,0 +170736087800,441,0 +170736087850,440,0 +170736087898,440,0 +170736087946,441,0 +170736087995,441,0 +170736088045,440,0 +170736088094,441,0 +170736088142,440,0 +170736088190,280,1 +170736088270,298,1 +170736088349,441,0 +170736088397,441,0 +170736088445,441,0 +170736088493,441,0 +170736088542,441,0 +170736088592,441,0 +170736088641,441,0 +170736088689,441,0 +170736088737,441,0 +170736088785,441,0 +170736088833,441,0 +170736088881,441,0 +170736088929,441,0 +170736088977,441,0 +170736089025,441,0 +170736089073,441,0 +170736089121,441,0 +170736089169,440,0 +170736089217,440,0 +170736089265,291,1 +170736089344,435,0 +170736089392,441,0 +170736089440,441,0 +170736089488,441,0 +170736089536,441,0 +170736089583,441,0 +170736089633,441,0 +170736089683,441,0 +170736089730,441,0 +170736089778,441,0 +170736089828,441,0 +170736089876,441,0 +170736089925,441,0 +170736089975,441,0 +170736090023,441,0 +170736090071,441,0 +170736090119,441,0 +170736090167,441,0 +170736090216,441,0 +170736090264,440,0 +170736090313,297,1 +170736090397,434,0 +170736090450,441,0 +170736090498,441,0 +170736090545,441,0 +170736090595,441,0 +170736090643,441,0 +170736090691,441,0 +170736090740,441,0 +170736090788,441,0 +170736090836,441,0 +170736090884,441,0 +170736090934,441,0 +170736090982,441,0 +170736091030,441,0 +170736091079,441,0 +170736091129,441,0 +170736091177,441,0 +170736091225,441,0 +170736091273,441,0 +170736091322,440,0 +170736091370,291,1 +170736091455,436,0 +170736091503,441,0 +170736091553,441,0 +170736091601,441,0 +170736091650,441,0 +170736091698,441,0 +170736091748,441,0 +170736091796,441,0 +170736091845,441,0 +170736091893,441,0 +170736091943,441,0 +170736091991,441,0 +170736092039,441,0 +170736092088,441,0 +170736092138,441,0 +170736092186,441,0 +170736092234,441,0 +170736092283,441,0 +170736092331,440,0 +170736092379,437,0 +170736092427,304,1 +170736092507,438,0 +170736092555,441,0 +170736092603,441,0 +170736092653,441,0 +170736092702,441,0 +170736092750,441,0 +170736092799,441,0 +170736092847,441,0 +170736092895,441,0 +170736092943,441,0 +170736092993,441,0 +170736093042,441,0 +170736093090,441,0 +170736093138,441,0 +170736093186,441,0 +170736093236,441,0 +170736093285,441,0 +170736093333,441,0 +170736093383,441,0 +170736093431,296,1 +170736093507,306,1 +170736093588,441,0 +170736093638,441,0 +170736093686,441,0 +170736093735,441,0 +170736093783,441,0 +170736093831,441,0 +170736093880,441,0 +170736093930,441,0 +170736093978,441,0 +170736094027,441,0 +170736094075,441,0 +170736094123,441,0 +170736094171,441,0 +170736094221,441,0 +170736094269,441,0 +170736094317,441,0 +170736094365,441,0 +170736094413,441,0 +170736094461,440,0 +170736094509,308,1 +170736094586,425,0 +170736094634,441,0 +170736094682,440,0 +170736094731,441,0 +170736094779,441,0 +170736094829,441,0 +170736094877,441,0 +170736094926,441,0 +170736094975,441,0 +170736095025,441,0 +170736095073,441,0 +170736095121,441,0 +170736095169,441,0 +170736095217,441,0 +170736095265,441,0 +170736095313,441,0 +170736095361,441,0 +170736095408,441,0 +170736095458,441,0 +170736095506,440,0 +170736095556,301,1 +170736095637,348,0 +170736095686,441,0 +170736095734,441,0 +170736095782,441,0 +170736095832,441,0 +170736095880,441,0 +170736095928,441,0 +170736095976,441,0 +170736096024,441,0 +170736096073,441,0 +170736096121,441,0 +170736096169,441,0 +170736096218,441,0 +170736096268,441,0 +170736096316,441,0 +170736096365,441,0 +170736096413,441,0 +170736096461,441,0 +170736096511,441,0 +170736096560,440,0 +170736096608,280,1 +170736096687,435,0 +170736096735,441,0 +170736096785,441,0 +170736096834,441,0 +170736096884,441,0 +170736096932,441,0 +170736096981,441,0 +170736097029,441,0 +170736097079,441,0 +170736097127,441,0 +170736097176,441,0 +170736097224,441,0 +170736097272,441,0 +170736097322,441,0 +170736097370,441,0 +170736097419,441,0 +170736097469,441,0 +170736097517,441,0 +170736097565,441,0 +170736097613,440,0 +170736097661,290,1 +170736097742,437,0 +170736097790,441,0 +170736097839,441,0 +170736097887,441,0 +170736097935,441,0 +170736097985,441,0 +170736098033,441,0 +170736098080,441,0 +170736098128,441,0 +170736098176,441,0 +170736098224,441,0 +170736098274,441,0 +170736098322,441,0 +170736098371,441,0 +170736098419,441,0 +170736098467,441,0 +170736098515,441,0 +170736098565,440,0 +170736098613,441,0 +170736098662,440,0 +170736098712,252,0 +170736098761,283,1 +170736098841,441,0 +170736098889,441,0 +170736098937,441,0 +170736098986,441,0 +170736099036,441,0 +170736099085,441,0 +170736099133,440,0 +170736099183,441,0 +170736099232,441,0 +170736099280,441,0 +170736099328,441,0 +170736099378,441,0 +170736099427,441,0 +170736099475,441,0 +170736099523,441,0 +170736099571,441,0 +170736099620,441,0 +170736099670,440,0 +170736099718,373,0 +170736099766,313,0 +170736099814,245,0 +170736099862,440,0 +170736099911,441,0 +170736099959,441,0 +170736100007,441,0 +170736100057,441,0 +170736100106,441,0 +170736100154,441,0 +170736100202,441,0 +170736100252,441,0 +170736100300,441,0 +170736100349,441,0 +170736100399,441,0 +170736100447,441,0 +170736100496,441,0 +170736100544,441,0 +170736100592,441,0 +170736100640,441,0 +170736100688,441,0 +170736100736,440,0 +170736100784,299,1 +170736100865,238,0 +170736100913,440,0 +170736100961,441,0 +170736101009,441,0 +170736101059,441,0 +170736101107,441,0 +170736101155,441,0 +170736101202,441,0 +170736101252,441,0 +170736101302,441,0 +170736101349,441,0 +170736101399,441,0 +170736101447,441,0 +170736101495,441,0 +170736101543,441,0 +170736101591,441,0 +170736101639,441,0 +170736101687,441,0 +170736101736,441,0 +170736101786,440,0 +170736101833,274,1 +170736101913,234,0 +170736101961,441,0 +170736102011,441,0 +170736102058,441,0 +170736102108,441,0 +170736102156,441,0 +170736102204,441,0 +170736102252,441,0 +170736102301,441,0 +170736102349,441,0 +170736102399,440,0 +170736102448,441,0 +170736102496,441,0 +170736102546,441,0 +170736102595,441,0 +170736102645,441,0 +170736102693,441,0 +170736102741,441,0 +170736102789,441,0 +170736102837,440,0 +170736102885,298,1 +170736102967,361,0 +170736103015,441,0 +170736103064,441,0 +170736103112,441,0 +170736103160,440,0 +170736103208,441,0 +170736103256,441,0 +170736103305,441,0 +170736103353,441,0 +170736103401,441,0 +170736103449,441,0 +170736103497,441,0 +170736103546,441,0 +170736103594,441,0 +170736103644,441,0 +170736103694,441,0 +170736103743,441,0 +170736103793,441,0 +170736103841,441,0 +170736103888,440,0 +170736103936,291,1 +170736104017,432,0 +170736104067,441,0 +170736104114,441,0 +170736104162,441,0 +170736104212,441,0 +170736104261,441,0 +170736104309,441,0 +170736104357,441,0 +170736104405,441,0 +170736104453,441,0 +170736104501,441,0 +170736104549,441,0 +170736104599,441,0 +170736104648,441,0 +170736104696,441,0 +170736104744,441,0 +170736104794,441,0 +170736104842,441,0 +170736104890,440,0 +170736104937,440,0 +170736104985,306,1 +170736105068,434,0 +170736105118,441,0 +170736105167,441,0 +170736105217,441,0 +170736105265,441,0 +170736105312,441,0 +170736105360,441,0 +170736105408,441,0 +170736105456,441,0 +170736105506,441,0 +170736105553,441,0 +170736105601,441,0 +170736105649,441,0 +170736105699,441,0 +170736105747,441,0 +170736105796,441,0 +170736105844,441,0 +170736105892,441,0 +170736105940,441,0 +170736105988,441,0 +170736106035,305,1 +170736106118,236,0 +170736106167,441,0 +170736106215,441,0 +170736106264,441,0 +170736106312,441,0 +170736106362,440,0 +170736106411,441,0 +170736106459,441,0 +170736106509,441,0 +170736106558,441,0 +170736106606,441,0 +170736106654,441,0 +170736106702,441,0 +170736106752,441,0 +170736106801,441,0 +170736106851,441,0 +170736106899,441,0 +170736106947,441,0 +170736106996,441,0 +170736107046,440,0 +170736107094,306,1 +170736107171,431,0 +170736107219,441,0 +170736107269,441,0 +170736107318,441,0 +170736107366,441,0 +170736107414,440,0 +170736107463,441,0 +170736107511,441,0 +170736107559,440,0 +170736107608,441,0 +170736107658,441,0 +170736107706,441,0 +170736107754,441,0 +170736107802,441,0 +170736107849,441,0 +170736107897,441,0 +170736107945,441,0 +170736107995,441,0 +170736108043,441,0 +170736108090,440,0 +170736108138,289,1 +170736108219,435,0 +170736108266,441,0 +170736108314,441,0 +170736108362,441,0 +170736108410,441,0 +170736108458,441,0 +170736108506,441,0 +170736108555,441,0 +170736108603,440,0 +170736108653,441,0 +170736108701,441,0 +170736108749,441,0 +170736108797,441,0 +170736108845,441,0 +170736108894,441,0 +170736108942,441,0 +170736108990,441,0 +170736109038,441,0 +170736109087,441,0 +170736109135,440,0 +170736109185,301,1 +170736109262,278,1 +170736109339,441,0 +170736109387,440,0 +170736109436,441,0 +170736109484,441,0 +170736109532,441,0 +170736109580,440,0 +170736109628,441,0 +170736109677,441,0 +170736109725,441,0 +170736109775,441,0 +170736109823,441,0 +170736109871,441,0 +170736109919,441,0 +170736109968,441,0 +170736110016,440,0 +170736110064,440,0 +170736110112,441,0 +170736110160,441,0 +170736110208,346,0 +170736110256,292,1 +170736110340,439,0 +170736110387,441,0 +170736110435,441,0 +170736110483,441,0 +170736110531,440,0 +170736110579,441,0 +170736110627,441,0 +170736110675,441,0 +170736110723,441,0 +170736110770,441,0 +170736110818,441,0 +170736110866,441,0 +170736110916,441,0 +170736110964,441,0 +170736111012,441,0 +170736111061,441,0 +170736111111,441,0 +170736111159,441,0 +170736111207,441,0 +170736111256,287,1 +170736111342,272,1 +170736111418,441,0 +170736111465,441,0 +170736111513,441,0 +170736111563,441,0 +170736111611,441,0 +170736111659,441,0 +170736111708,441,0 +170736111758,441,0 +170736111806,441,0 +170736111854,441,0 +170736111902,441,0 +170736111950,441,0 +170736111998,441,0 +170736112046,441,0 +170736112095,441,0 +170736112143,441,0 +170736112191,441,0 +170736112239,440,0 +170736112287,440,0 +170736112335,292,1 +170736112414,435,0 +170736112462,441,0 +170736112511,441,0 +170736112559,441,0 +170736112607,441,0 +170736112657,441,0 +170736112706,441,0 +170736112754,441,0 +170736112804,441,0 +170736112852,441,0 +170736112901,440,0 +170736112949,441,0 +170736112997,441,0 +170736113045,441,0 +170736113094,441,0 +170736113144,441,0 +170736113194,441,0 +170736113243,441,0 +170736113291,441,0 +170736113339,440,0 +170736113389,297,1 +170736113467,310,0 +170736113516,441,0 +170736113566,441,0 +170736113614,441,0 +170736113663,441,0 +170736113711,441,0 +170736113761,441,0 +170736113809,441,0 +170736113857,441,0 +170736113905,441,0 +170736113952,441,0 +170736114002,441,0 +170736114050,441,0 +170736114098,441,0 +170736114146,441,0 +170736114194,441,0 +170736114242,441,0 +170736114290,440,0 +170736114338,440,0 +170736114385,440,0 +170736114433,312,0 +170736114483,274,1 +170736114568,441,0 +170736114616,441,0 +170736114665,441,0 +170736114713,441,0 +170736114761,441,0 +170736114810,441,0 +170736114860,441,0 +170736114908,441,0 +170736114956,441,0 +170736115004,441,0 +170736115052,441,0 +170736115100,441,0 +170736115148,441,0 +170736115196,441,0 +170736115244,441,0 +170736115292,441,0 +170736115341,441,0 +170736115389,441,0 +170736115437,440,0 +170736115485,307,1 +170736115571,437,0 +170736115621,441,0 +170736115669,441,0 +170736115716,441,0 +170736115766,441,0 +170736115815,441,0 +170736115865,441,0 +170736115915,441,0 +170736115964,441,0 +170736116012,441,0 +170736116062,441,0 +170736116110,441,0 +170736116159,441,0 +170736116207,441,0 +170736116255,441,0 +170736116303,441,0 +170736116351,441,0 +170736116399,441,0 +170736116447,441,0 +170736116495,440,0 +170736116544,302,1 +170736116624,437,0 +170736116672,440,0 +170736116721,441,0 +170736116769,441,0 +170736116819,441,0 +170736116868,441,0 +170736116916,441,0 +170736116966,441,0 +170736117014,441,0 +170736117063,441,0 +170736117113,441,0 +170736117162,441,0 +170736117210,441,0 +170736117258,441,0 +170736117306,441,0 +170736117354,441,0 +170736117402,441,0 +170736117452,441,0 +170736117501,441,0 +170736117551,438,0 +170736117599,306,1 +170736117676,438,0 +170736117724,441,0 +170736117773,441,0 +170736117823,440,0 +170736117871,441,0 +170736117920,441,0 +170736117968,441,0 +170736118018,441,0 +170736118066,441,0 +170736118114,441,0 +170736118163,441,0 +170736118213,441,0 +170736118261,441,0 +170736118309,441,0 +170736118358,441,0 +170736118406,441,0 +170736118456,441,0 +170736118505,441,0 +170736118553,441,0 +170736118603,303,1 +170736118684,251,0 +170736118732,440,0 +170736118780,441,0 +170736118828,441,0 +170736118876,441,0 +170736118924,441,0 +170736118972,440,0 +170736119021,441,0 +170736119071,441,0 +170736119121,441,0 +170736119168,441,0 +170736119216,441,0 +170736119266,441,0 +170736119314,441,0 +170736119362,441,0 +170736119411,441,0 +170736119461,441,0 +170736119509,441,0 +170736119557,441,0 +170736119605,441,0 +170736119654,278,1 +170736119740,288,1 +170736119819,441,0 +170736119867,441,0 +170736119915,441,0 +170736119963,441,0 +170736120011,441,0 diff --git a/laser_value/0208-13.csv b/laser_value/0208-13.csv new file mode 100644 index 0000000..1068a41 --- /dev/null +++ b/laser_value/0208-13.csv @@ -0,0 +1,7173 @@ +timestamp,laser_value,event +170736120061,441,0 +170736120110,441,0 +170736120158,441,0 +170736120206,441,0 +170736120254,441,0 +170736120302,441,0 +170736120352,441,0 +170736120401,441,0 +170736120451,441,0 +170736120499,441,0 +170736120547,441,0 +170736120595,441,0 +170736120643,441,0 +170736120691,440,0 +170736120739,303,1 +170736120822,437,0 +170736120870,441,0 +170736120918,441,0 +170736120966,441,0 +170736121014,441,0 +170736121062,441,0 +170736121110,441,0 +170736121158,441,0 +170736121206,441,0 +170736121254,441,0 +170736121303,441,0 +170736121353,441,0 +170736121401,440,0 +170736121449,441,0 +170736121496,441,0 +170736121544,441,0 +170736121592,441,0 +170736121640,440,0 +170736121688,440,0 +170736121736,440,0 +170736121786,310,0 +170736121834,277,1 +170736121922,441,0 +170736121970,441,0 +170736122019,441,0 +170736122069,441,0 +170736122117,441,0 +170736122165,441,0 +170736122214,441,0 +170736122264,441,0 +170736122312,441,0 +170736122360,441,0 +170736122409,440,0 +170736122459,441,0 +170736122507,441,0 +170736122555,441,0 +170736122604,441,0 +170736122654,441,0 +170736122702,441,0 +170736122750,441,0 +170736122799,278,1 +170736122882,283,1 +170736122963,441,0 +170736123011,441,0 +170736123060,441,0 +170736123110,441,0 +170736123157,441,0 +170736123205,441,0 +170736123253,441,0 +170736123301,441,0 +170736123349,441,0 +170736123399,441,0 +170736123448,441,0 +170736123496,441,0 +170736123546,441,0 +170736123594,441,0 +170736123642,441,0 +170736123690,441,0 +170736123738,441,0 +170736123787,441,0 +170736123835,440,0 +170736123885,297,1 +170736123965,436,0 +170736124013,441,0 +170736124062,441,0 +170736124112,441,0 +170736124160,441,0 +170736124208,441,0 +170736124256,441,0 +170736124303,441,0 +170736124351,441,0 +170736124399,441,0 +170736124449,441,0 +170736124498,441,0 +170736124548,441,0 +170736124596,441,0 +170736124645,441,0 +170736124695,441,0 +170736124744,441,0 +170736124794,441,0 +170736124842,441,0 +170736124890,438,0 +170736124938,298,1 +170736125016,438,0 +170736125066,441,0 +170736125115,441,0 +170736125165,441,0 +170736125213,441,0 +170736125262,441,0 +170736125310,441,0 +170736125358,441,0 +170736125408,441,0 +170736125456,441,0 +170736125504,441,0 +170736125552,441,0 +170736125599,441,0 +170736125647,441,0 +170736125695,441,0 +170736125743,441,0 +170736125791,441,0 +170736125839,441,0 +170736125887,440,0 +170736125937,439,0 +170736125987,303,1 +170736126068,438,0 +170736126117,441,0 +170736126165,441,0 +170736126213,441,0 +170736126261,441,0 +170736126309,441,0 +170736126357,441,0 +170736126406,441,0 +170736126454,441,0 +170736126504,441,0 +170736126552,441,0 +170736126600,441,0 +170736126649,441,0 +170736126699,441,0 +170736126748,441,0 +170736126796,441,0 +170736126844,441,0 +170736126894,441,0 +170736126942,440,0 +170736126991,433,0 +170736127039,302,1 +170736127117,438,0 +170736127167,440,0 +170736127215,440,0 +170736127263,441,0 +170736127311,441,0 +170736127360,441,0 +170736127410,441,0 +170736127458,441,0 +170736127506,441,0 +170736127554,441,0 +170736127602,441,0 +170736127649,441,0 +170736127697,441,0 +170736127745,441,0 +170736127795,441,0 +170736127843,441,0 +170736127891,441,0 +170736127939,441,0 +170736127987,441,0 +170736128035,440,0 +170736128084,299,1 +170736128166,435,0 +170736128215,441,0 +170736128265,441,0 +170736128313,441,0 +170736128361,441,0 +170736128409,441,0 +170736128457,441,0 +170736128506,441,0 +170736128554,441,0 +170736128602,441,0 +170736128650,441,0 +170736128698,441,0 +170736128746,441,0 +170736128795,441,0 +170736128843,441,0 +170736128893,441,0 +170736128941,441,0 +170736128989,441,0 +170736129037,441,0 +170736129085,440,0 +170736129134,300,1 +170736129214,435,0 +170736129262,441,0 +170736129310,441,0 +170736129358,441,0 +170736129406,441,0 +170736129454,441,0 +170736129502,441,0 +170736129550,441,0 +170736129598,441,0 +170736129646,441,0 +170736129695,441,0 +170736129743,441,0 +170736129791,441,0 +170736129841,441,0 +170736129890,441,0 +170736129938,441,0 +170736129986,441,0 +170736130036,441,0 +170736130084,441,0 +170736130133,440,0 +170736130181,304,1 +170736130262,438,0 +170736130312,441,0 +170736130360,441,0 +170736130408,440,0 +170736130456,441,0 +170736130503,441,0 +170736130551,441,0 +170736130601,441,0 +170736130649,441,0 +170736130697,441,0 +170736130745,441,0 +170736130793,441,0 +170736130841,441,0 +170736130890,441,0 +170736130938,441,0 +170736130986,441,0 +170736131034,441,0 +170736131083,441,0 +170736131133,441,0 +170736131181,440,0 +170736131230,297,1 +170736131309,435,0 +170736131357,440,0 +170736131406,441,0 +170736131454,441,0 +170736131502,441,0 +170736131550,441,0 +170736131598,441,0 +170736131646,441,0 +170736131694,441,0 +170736131744,441,0 +170736131792,441,0 +170736131840,440,0 +170736131889,441,0 +170736131939,441,0 +170736131987,441,0 +170736132035,441,0 +170736132083,441,0 +170736132131,441,0 +170736132180,441,0 +170736132230,440,0 +170736132279,302,1 +170736132360,436,0 +170736132408,441,0 +170736132458,441,0 +170736132506,441,0 +170736132554,441,0 +170736132601,441,0 +170736132649,441,0 +170736132697,441,0 +170736132747,441,0 +170736132796,441,0 +170736132844,441,0 +170736132892,441,0 +170736132940,441,0 +170736132988,441,0 +170736133036,441,0 +170736133084,441,0 +170736133132,440,0 +170736133180,441,0 +170736133229,440,0 +170736133277,439,0 +170736133327,300,1 +170736133407,438,0 +170736133455,441,0 +170736133504,441,0 +170736133554,441,0 +170736133603,441,0 +170736133651,441,0 +170736133699,441,0 +170736133747,441,0 +170736133795,441,0 +170736133843,441,0 +170736133891,441,0 +170736133939,441,0 +170736133987,441,0 +170736134036,441,0 +170736134084,441,0 +170736134132,441,0 +170736134180,441,0 +170736134228,441,0 +170736134276,441,0 +170736134324,440,0 +170736134372,306,1 +170736134453,435,0 +170736134501,441,0 +170736134549,441,0 +170736134597,441,0 +170736134645,441,0 +170736134693,441,0 +170736134741,441,0 +170736134789,441,0 +170736134837,441,0 +170736134885,441,0 +170736134934,441,0 +170736134982,441,0 +170736135030,441,0 +170736135078,441,0 +170736135126,441,0 +170736135174,441,0 +170736135222,441,0 +170736135270,441,0 +170736135319,441,0 +170736135369,440,0 +170736135419,305,1 +170736135505,434,0 +170736135553,441,0 +170736135601,441,0 +170736135649,440,0 +170736135699,441,0 +170736135747,441,0 +170736135795,440,0 +170736135843,441,0 +170736135891,441,0 +170736135940,441,0 +170736135988,441,0 +170736136036,441,0 +170736136084,441,0 +170736136132,441,0 +170736136181,441,0 +170736136231,441,0 +170736136279,441,0 +170736136327,441,0 +170736136375,441,0 +170736136424,440,0 +170736136472,308,1 +170736136553,433,0 +170736136602,441,0 +170736136650,441,0 +170736136698,441,0 +170736136748,441,0 +170736136796,441,0 +170736136845,441,0 +170736136895,441,0 +170736136944,441,0 +170736136994,441,0 +170736137043,441,0 +170736137093,441,0 +170736137141,441,0 +170736137189,441,0 +170736137238,441,0 +170736137286,441,0 +170736137336,441,0 +170736137384,441,0 +170736137433,441,0 +170736137483,293,1 +170736137562,296,1 +170736137640,441,0 +170736137688,441,0 +170736137738,441,0 +170736137786,441,0 +170736137835,441,0 +170736137883,441,0 +170736137931,441,0 +170736137979,441,0 +170736138027,441,0 +170736138075,440,0 +170736138123,441,0 +170736138171,441,0 +170736138220,441,0 +170736138268,441,0 +170736138316,441,0 +170736138364,441,0 +170736138412,441,0 +170736138460,441,0 +170736138508,440,0 +170736138558,308,1 +170736138640,399,0 +170736138688,440,0 +170736138736,441,0 +170736138785,441,0 +170736138833,441,0 +170736138883,441,0 +170736138931,441,0 +170736138980,441,0 +170736139028,441,0 +170736139076,441,0 +170736139126,441,0 +170736139174,441,0 +170736139222,441,0 +170736139270,441,0 +170736139319,441,0 +170736139367,441,0 +170736139417,441,0 +170736139465,441,0 +170736139513,441,0 +170736139561,440,0 +170736139609,290,1 +170736139689,423,0 +170736139738,440,0 +170736139786,441,0 +170736139834,441,0 +170736139882,441,0 +170736139930,441,0 +170736139979,441,0 +170736140027,441,0 +170736140077,441,0 +170736140125,441,0 +170736140173,441,0 +170736140221,441,0 +170736140270,441,0 +170736140320,441,0 +170736140369,441,0 +170736140417,441,0 +170736140465,441,0 +170736140513,441,0 +170736140561,441,0 +170736140609,440,0 +170736140659,299,1 +170736140738,431,0 +170736140787,441,0 +170736140835,441,0 +170736140885,441,0 +170736140934,441,0 +170736140982,441,0 +170736141030,441,0 +170736141078,441,0 +170736141126,441,0 +170736141174,441,0 +170736141223,440,0 +170736141273,441,0 +170736141321,440,0 +170736141369,441,0 +170736141417,441,0 +170736141465,441,0 +170736141513,441,0 +170736141561,441,0 +170736141608,441,0 +170736141658,440,0 +170736141706,302,1 +170736141787,434,0 +170736141835,441,0 +170736141885,441,0 +170736141933,441,0 +170736141981,441,0 +170736142028,441,0 +170736142076,440,0 +170736142124,440,0 +170736142174,441,0 +170736142222,441,0 +170736142270,441,0 +170736142318,441,0 +170736142367,441,0 +170736142415,441,0 +170736142463,441,0 +170736142511,441,0 +170736142559,441,0 +170736142607,441,0 +170736142657,441,0 +170736142705,441,0 +170736142753,313,0 +170736142801,308,1 +170736142881,440,0 +170736142929,441,0 +170736142977,441,0 +170736143026,441,0 +170736143074,441,0 +170736143124,441,0 +170736143172,441,0 +170736143220,441,0 +170736143269,441,0 +170736143317,441,0 +170736143365,441,0 +170736143415,441,0 +170736143464,441,0 +170736143512,441,0 +170736143562,441,0 +170736143610,441,0 +170736143658,441,0 +170736143706,441,0 +170736143754,440,0 +170736143801,304,1 +170736143882,432,0 +170736143930,441,0 +170736143978,441,0 +170736144027,441,0 +170736144077,441,0 +170736144125,441,0 +170736144173,441,0 +170736144221,441,0 +170736144269,441,0 +170736144316,441,0 +170736144364,441,0 +170736144414,441,0 +170736144462,441,0 +170736144509,441,0 +170736144559,441,0 +170736144609,441,0 +170736144657,441,0 +170736144704,441,0 +170736144754,441,0 +170736144804,440,0 +170736144853,294,1 +170736144938,436,0 +170736144988,441,0 +170736145036,441,0 +170736145085,441,0 +170736145135,441,0 +170736145183,441,0 +170736145231,441,0 +170736145280,441,0 +170736145328,440,0 +170736145376,441,0 +170736145424,441,0 +170736145472,441,0 +170736145521,441,0 +170736145569,441,0 +170736145617,441,0 +170736145666,441,0 +170736145714,441,0 +170736145762,441,0 +170736145810,441,0 +170736145858,440,0 +170736145907,294,1 +170736145989,437,0 +170736146039,441,0 +170736146087,441,0 +170736146135,440,0 +170736146182,441,0 +170736146230,441,0 +170736146280,441,0 +170736146328,441,0 +170736146376,441,0 +170736146423,441,0 +170736146471,440,0 +170736146519,441,0 +170736146567,441,0 +170736146615,441,0 +170736146663,441,0 +170736146712,441,0 +170736146760,441,0 +170736146808,441,0 +170736146856,441,0 +170736146904,440,0 +170736146952,302,1 +170736147036,436,0 +170736147084,441,0 +170736147132,441,0 +170736147180,441,0 +170736147229,441,0 +170736147277,441,0 +170736147327,441,0 +170736147376,441,0 +170736147424,441,0 +170736147472,441,0 +170736147520,440,0 +170736147567,441,0 +170736147615,441,0 +170736147663,441,0 +170736147711,441,0 +170736147759,441,0 +170736147809,441,0 +170736147856,441,0 +170736147904,440,0 +170736147952,439,0 +170736148000,308,1 +170736148084,436,0 +170736148133,441,0 +170736148181,441,0 +170736148230,441,0 +170736148280,441,0 +170736148328,441,0 +170736148377,441,0 +170736148425,441,0 +170736148473,441,0 +170736148523,441,0 +170736148573,441,0 +170736148622,441,0 +170736148670,441,0 +170736148718,441,0 +170736148766,441,0 +170736148815,441,0 +170736148863,441,0 +170736148913,441,0 +170736148962,441,0 +170736149010,439,0 +170736149058,299,1 +170736149143,439,0 +170736149193,441,0 +170736149240,441,0 +170736149288,441,0 +170736149336,441,0 +170736149386,441,0 +170736149435,441,0 +170736149483,441,0 +170736149531,441,0 +170736149581,441,0 +170736149629,441,0 +170736149678,441,0 +170736149728,441,0 +170736149777,441,0 +170736149827,441,0 +170736149876,441,0 +170736149924,441,0 +170736149974,441,0 +170736150022,441,0 +170736150070,435,0 +170736150119,303,1 +170736150204,439,0 +170736150254,441,0 +170736150302,441,0 +170736150350,441,0 +170736150399,440,0 +170736150447,441,0 +170736150495,441,0 +170736150545,441,0 +170736150593,441,0 +170736150642,441,0 +170736150692,441,0 +170736150740,441,0 +170736150789,441,0 +170736150837,441,0 +170736150885,441,0 +170736150933,441,0 +170736150981,441,0 +170736151031,441,0 +170736151078,441,0 +170736151126,309,1 +170736151212,232,0 +170736151260,440,0 +170736151308,440,0 +170736151356,441,0 +170736151404,441,0 +170736151452,441,0 +170736151500,441,0 +170736151549,441,0 +170736151597,441,0 +170736151645,441,0 +170736151693,441,0 +170736151741,441,0 +170736151789,441,0 +170736151839,441,0 +170736151887,441,0 +170736151935,441,0 +170736151983,441,0 +170736152031,441,0 +170736152080,441,0 +170736152128,440,0 +170736152176,303,1 +170736152266,434,0 +170736152314,441,0 +170736152364,441,0 +170736152413,441,0 +170736152461,440,0 +170736152509,441,0 +170736152557,441,0 +170736152607,440,0 +170736152656,441,0 +170736152704,441,0 +170736152752,441,0 +170736152800,441,0 +170736152850,441,0 +170736152899,441,0 +170736152947,441,0 +170736152997,441,0 +170736153046,440,0 +170736153094,441,0 +170736153143,440,0 +170736153193,440,0 +170736153241,301,1 +170736153323,433,0 +170736153372,441,0 +170736153420,441,0 +170736153469,441,0 +170736153517,441,0 +170736153565,441,0 +170736153615,440,0 +170736153663,441,0 +170736153710,441,0 +170736153758,441,0 +170736153806,441,0 +170736153854,441,0 +170736153904,441,0 +170736153953,441,0 +170736154001,441,0 +170736154049,441,0 +170736154097,441,0 +170736154147,441,0 +170736154196,441,0 +170736154246,438,0 +170736154294,306,1 +170736154372,436,0 +170736154421,441,0 +170736154469,441,0 +170736154517,441,0 +170736154565,441,0 +170736154613,441,0 +170736154662,440,0 +170736154710,441,0 +170736154758,441,0 +170736154806,441,0 +170736154856,441,0 +170736154904,441,0 +170736154952,441,0 +170736155000,441,0 +170736155048,441,0 +170736155096,441,0 +170736155144,441,0 +170736155192,441,0 +170736155240,441,0 +170736155288,440,0 +170736155336,304,1 +170736155416,436,0 +170736155464,441,0 +170736155512,441,0 +170736155562,440,0 +170736155610,441,0 +170736155657,441,0 +170736155705,441,0 +170736155753,441,0 +170736155801,441,0 +170736155849,441,0 +170736155899,441,0 +170736155947,441,0 +170736155995,441,0 +170736156043,441,0 +170736156090,441,0 +170736156138,441,0 +170736156188,441,0 +170736156236,441,0 +170736156284,440,0 +170736156333,440,0 +170736156383,305,1 +170736156463,432,0 +170736156511,441,0 +170736156559,441,0 +170736156607,441,0 +170736156655,441,0 +170736156703,441,0 +170736156751,441,0 +170736156799,441,0 +170736156847,441,0 +170736156897,441,0 +170736156944,441,0 +170736156992,441,0 +170736157042,441,0 +170736157091,441,0 +170736157139,441,0 +170736157187,441,0 +170736157235,441,0 +170736157283,441,0 +170736157331,441,0 +170736157379,440,0 +170736157429,296,1 +170736157510,230,0 +170736157559,440,0 +170736157609,441,0 +170736157658,441,0 +170736157706,441,0 +170736157756,441,0 +170736157805,441,0 +170736157855,441,0 +170736157903,441,0 +170736157951,441,0 +170736158000,441,0 +170736158048,441,0 +170736158096,441,0 +170736158144,441,0 +170736158192,441,0 +170736158240,441,0 +170736158288,441,0 +170736158336,441,0 +170736158384,441,0 +170736158432,440,0 +170736158481,299,1 +170736158561,434,0 +170736158609,441,0 +170736158658,440,0 +170736158708,441,0 +170736158756,441,0 +170736158804,441,0 +170736158852,441,0 +170736158900,441,0 +170736158948,441,0 +170736158996,441,0 +170736159044,441,0 +170736159092,441,0 +170736159140,441,0 +170736159187,441,0 +170736159237,441,0 +170736159286,441,0 +170736159336,441,0 +170736159384,441,0 +170736159432,441,0 +170736159481,440,0 +170736159529,308,1 +170736159612,427,0 +170736159660,441,0 +170736159710,441,0 +170736159758,441,0 +170736159806,441,0 +170736159854,441,0 +170736159902,441,0 +170736159950,441,0 +170736159998,441,0 +170736160047,441,0 +170736160095,441,0 +170736160144,441,0 +170736160194,441,0 +170736160243,441,0 +170736160291,441,0 +170736160341,441,0 +170736160389,441,0 +170736160438,441,0 +170736160488,441,0 +170736160537,440,0 +170736160585,300,1 +170736160667,434,0 +170736160715,441,0 +170736160765,441,0 +170736160812,441,0 +170736160860,441,0 +170736160908,441,0 +170736160956,441,0 +170736161004,440,0 +170736161052,441,0 +170736161100,441,0 +170736161147,441,0 +170736161195,441,0 +170736161243,441,0 +170736161291,441,0 +170736161339,441,0 +170736161387,441,0 +170736161437,441,0 +170736161485,441,0 +170736161533,441,0 +170736161581,440,0 +170736161630,294,1 +170736161712,434,0 +170736161762,441,0 +170736161810,441,0 +170736161859,441,0 +170736161909,441,0 +170736161958,441,0 +170736162008,441,0 +170736162057,441,0 +170736162105,441,0 +170736162153,441,0 +170736162203,441,0 +170736162252,441,0 +170736162302,441,0 +170736162350,441,0 +170736162399,441,0 +170736162449,441,0 +170736162499,441,0 +170736162546,441,0 +170736162596,441,0 +170736162644,434,0 +170736162692,311,0 +170736162740,269,0 +170736162788,440,0 +170736162836,441,0 +170736162884,441,0 +170736162933,441,0 +170736162981,441,0 +170736163029,441,0 +170736163077,441,0 +170736163124,440,0 +170736163172,441,0 +170736163220,441,0 +170736163270,441,0 +170736163319,441,0 +170736163367,441,0 +170736163416,441,0 +170736163464,441,0 +170736163512,441,0 +170736163560,441,0 +170736163608,441,0 +170736163656,441,0 +170736163706,294,1 +170736163783,295,1 +170736163862,441,0 +170736163910,441,0 +170736163959,441,0 +170736164009,441,0 +170736164058,441,0 +170736164106,441,0 +170736164156,441,0 +170736164205,441,0 +170736164255,441,0 +170736164303,441,0 +170736164350,441,0 +170736164398,441,0 +170736164446,441,0 +170736164494,441,0 +170736164542,441,0 +170736164590,441,0 +170736164638,441,0 +170736164688,441,0 +170736164736,440,0 +170736164785,297,1 +170736164865,435,0 +170736164913,441,0 +170736164961,441,0 +170736165011,441,0 +170736165059,441,0 +170736165108,441,0 +170736165158,441,0 +170736165206,441,0 +170736165255,441,0 +170736165305,441,0 +170736165353,441,0 +170736165401,441,0 +170736165450,441,0 +170736165498,441,0 +170736165546,441,0 +170736165596,440,0 +170736165644,441,0 +170736165692,441,0 +170736165741,441,0 +170736165791,440,0 +170736165840,288,1 +170736165921,434,0 +170736165970,441,0 +170736166018,441,0 +170736166066,441,0 +170736166114,441,0 +170736166162,441,0 +170736166212,441,0 +170736166260,441,0 +170736166308,441,0 +170736166356,441,0 +170736166405,441,0 +170736166453,441,0 +170736166501,441,0 +170736166549,441,0 +170736166597,441,0 +170736166645,441,0 +170736166694,441,0 +170736166744,441,0 +170736166793,441,0 +170736166843,421,0 +170736166893,269,0 +170736166940,246,0 +170736166988,440,0 +170736167038,441,0 +170736167086,441,0 +170736167134,441,0 +170736167182,441,0 +170736167230,441,0 +170736167279,441,0 +170736167329,441,0 +170736167378,441,0 +170736167426,441,0 +170736167476,441,0 +170736167524,441,0 +170736167572,441,0 +170736167621,441,0 +170736167669,441,0 +170736167719,441,0 +170736167767,441,0 +170736167815,440,0 +170736167864,441,0 +170736167912,302,1 +170736167991,249,0 +170736168039,440,0 +170736168088,441,0 +170736168136,441,0 +170736168186,441,0 +170736168235,441,0 +170736168285,441,0 +170736168333,441,0 +170736168382,441,0 +170736168430,441,0 +170736168480,441,0 +170736168529,441,0 +170736168577,441,0 +170736168625,441,0 +170736168675,441,0 +170736168723,441,0 +170736168772,441,0 +170736168822,441,0 +170736168871,441,0 +170736168919,440,0 +170736168967,303,1 +170736169048,236,0 +170736169096,441,0 +170736169144,441,0 +170736169193,441,0 +170736169241,441,0 +170736169289,441,0 +170736169337,441,0 +170736169385,441,0 +170736169433,441,0 +170736169482,441,0 +170736169530,441,0 +170736169578,441,0 +170736169626,441,0 +170736169674,441,0 +170736169724,441,0 +170736169773,441,0 +170736169823,441,0 +170736169871,441,0 +170736169920,441,0 +170736169968,441,0 +170736170016,301,1 +170736170099,424,0 +170736170149,440,0 +170736170196,441,0 +170736170246,441,0 +170736170294,441,0 +170736170342,441,0 +170736170390,441,0 +170736170438,441,0 +170736170486,441,0 +170736170534,441,0 +170736170583,441,0 +170736170633,441,0 +170736170680,441,0 +170736170730,441,0 +170736170778,441,0 +170736170826,441,0 +170736170875,441,0 +170736170923,441,0 +170736170971,441,0 +170736171019,441,0 +170736171067,303,1 +170736171147,430,0 +170736171195,441,0 +170736171243,441,0 +170736171291,441,0 +170736171339,441,0 +170736171389,441,0 +170736171437,441,0 +170736171486,441,0 +170736171534,441,0 +170736171582,441,0 +170736171630,441,0 +170736171679,441,0 +170736171727,441,0 +170736171775,441,0 +170736171823,441,0 +170736171871,441,0 +170736171921,441,0 +170736171969,441,0 +170736172018,441,0 +170736172066,441,0 +170736172116,313,0 +170736172164,308,1 +170736172243,440,0 +170736172291,441,0 +170736172339,441,0 +170736172387,441,0 +170736172437,441,0 +170736172486,441,0 +170736172534,441,0 +170736172582,441,0 +170736172632,441,0 +170736172680,441,0 +170736172728,441,0 +170736172777,441,0 +170736172827,441,0 +170736172874,441,0 +170736172922,441,0 +170736172970,441,0 +170736173018,441,0 +170736173066,440,0 +170736173114,441,0 +170736173162,294,1 +170736173237,266,0 +170736173287,440,0 +170736173335,441,0 +170736173384,441,0 +170736173432,441,0 +170736173482,441,0 +170736173530,441,0 +170736173578,441,0 +170736173626,441,0 +170736173675,441,0 +170736173723,441,0 +170736173773,441,0 +170736173822,441,0 +170736173872,441,0 +170736173921,441,0 +170736173969,441,0 +170736174019,441,0 +170736174067,441,0 +170736174116,441,0 +170736174164,441,0 +170736174212,299,1 +170736174290,237,0 +170736174340,441,0 +170736174388,441,0 +170736174437,441,0 +170736174487,441,0 +170736174535,441,0 +170736174584,441,0 +170736174632,441,0 +170736174680,441,0 +170736174728,441,0 +170736174778,441,0 +170736174826,441,0 +170736174874,441,0 +170736174923,441,0 +170736174971,440,0 +170736175021,441,0 +170736175068,441,0 +170736175118,441,0 +170736175166,441,0 +170736175216,440,0 +170736175265,293,1 +170736175346,237,0 +170736175395,441,0 +170736175445,441,0 +170736175493,441,0 +170736175541,441,0 +170736175589,441,0 +170736175638,441,0 +170736175688,441,0 +170736175736,441,0 +170736175784,441,0 +170736175833,440,0 +170736175881,441,0 +170736175929,441,0 +170736175977,441,0 +170736176025,441,0 +170736176075,441,0 +170736176123,441,0 +170736176170,440,0 +170736176220,441,0 +170736176268,440,0 +170736176317,300,1 +170736176391,239,0 +170736176440,441,0 +170736176488,441,0 +170736176538,441,0 +170736176586,441,0 +170736176634,441,0 +170736176682,441,0 +170736176730,441,0 +170736176778,441,0 +170736176827,441,0 +170736176877,441,0 +170736176926,441,0 +170736176974,441,0 +170736177022,441,0 +170736177072,441,0 +170736177121,441,0 +170736177169,441,0 +170736177217,441,0 +170736177267,441,0 +170736177315,440,0 +170736177363,301,1 +170736177443,435,0 +170736177493,441,0 +170736177542,441,0 +170736177590,441,0 +170736177638,441,0 +170736177686,441,0 +170736177736,441,0 +170736177785,441,0 +170736177835,441,0 +170736177883,441,0 +170736177931,441,0 +170736177978,441,0 +170736178028,441,0 +170736178076,441,0 +170736178125,441,0 +170736178173,441,0 +170736178223,441,0 +170736178271,441,0 +170736178319,441,0 +170736178367,440,0 +170736178415,299,1 +170736178498,433,0 +170736178550,441,0 +170736178598,441,0 +170736178646,441,0 +170736178694,441,0 +170736178744,441,0 +170736178792,441,0 +170736178839,441,0 +170736178887,441,0 +170736178935,441,0 +170736178983,441,0 +170736179031,441,0 +170736179079,441,0 +170736179127,441,0 +170736179177,441,0 +170736179226,441,0 +170736179274,441,0 +170736179322,441,0 +170736179370,441,0 +170736179418,441,0 +170736179466,284,1 +170736179545,349,0 +170736179593,441,0 +170736179643,441,0 +170736179691,441,0 +170736179739,441,0 +170736179788,441,0 +170736179836,441,0 +170736179886,441,0 +170736179933,441,0 +170736179983,441,0 +170736180033,441,0 +170736180082,441,0 +170736180132,441,0 +170736180180,441,0 +170736180227,441,0 +170736180275,441,0 +170736180323,441,0 +170736180373,441,0 +170736180422,441,0 +170736180472,440,0 +170736180521,309,1 +170736180604,435,0 +170736180653,441,0 +170736180703,441,0 +170736180751,441,0 +170736180800,441,0 +170736180848,441,0 +170736180896,441,0 +170736180944,441,0 +170736180992,441,0 +170736181041,441,0 +170736181089,441,0 +170736181137,441,0 +170736181187,441,0 +170736181236,441,0 +170736181286,441,0 +170736181334,441,0 +170736181382,441,0 +170736181431,441,0 +170736181479,440,0 +170736181527,439,0 +170736181575,302,1 +170736181654,436,0 +170736181702,441,0 +170736181750,441,0 +170736181798,441,0 +170736181846,441,0 +170736181896,441,0 +170736181944,441,0 +170736181992,440,0 +170736182041,441,0 +170736182091,440,0 +170736182139,441,0 +170736182187,441,0 +170736182235,441,0 +170736182283,441,0 +170736182331,441,0 +170736182378,441,0 +170736182428,441,0 +170736182476,441,0 +170736182524,440,0 +170736182572,441,0 +170736182620,301,1 +170736182701,435,0 +170736182749,441,0 +170736182799,441,0 +170736182847,441,0 +170736182895,441,0 +170736182943,441,0 +170736182991,440,0 +170736183039,441,0 +170736183088,441,0 +170736183138,441,0 +170736183186,441,0 +170736183234,441,0 +170736183282,440,0 +170736183331,441,0 +170736183379,441,0 +170736183427,441,0 +170736183475,441,0 +170736183525,441,0 +170736183573,441,0 +170736183621,440,0 +170736183669,298,1 +170736183749,437,0 +170736183798,441,0 +170736183846,441,0 +170736183896,441,0 +170736183943,441,0 +170736183993,441,0 +170736184041,441,0 +170736184090,441,0 +170736184138,441,0 +170736184186,441,0 +170736184236,441,0 +170736184284,441,0 +170736184332,441,0 +170736184380,441,0 +170736184428,441,0 +170736184475,441,0 +170736184525,441,0 +170736184574,441,0 +170736184624,441,0 +170736184674,440,0 +170736184723,295,1 +170736184804,438,0 +170736184852,441,0 +170736184900,441,0 +170736184948,441,0 +170736184995,441,0 +170736185043,441,0 +170736185091,441,0 +170736185139,441,0 +170736185187,441,0 +170736185237,441,0 +170736185286,441,0 +170736185334,441,0 +170736185382,441,0 +170736185430,441,0 +170736185478,441,0 +170736185526,441,0 +170736185574,441,0 +170736185624,441,0 +170736185672,441,0 +170736185720,440,0 +170736185767,291,1 +170736185845,436,0 +170736185893,441,0 +170736185941,441,0 +170736185989,441,0 +170736186037,441,0 +170736186087,441,0 +170736186135,441,0 +170736186184,441,0 +170736186234,441,0 +170736186282,440,0 +170736186330,441,0 +170736186378,441,0 +170736186425,441,0 +170736186473,441,0 +170736186521,441,0 +170736186569,441,0 +170736186617,441,0 +170736186667,441,0 +170736186715,441,0 +170736186763,440,0 +170736186810,310,0 +170736186860,309,1 +170736186942,441,0 +170736186990,441,0 +170736187040,441,0 +170736187089,441,0 +170736187139,441,0 +170736187187,441,0 +170736187235,441,0 +170736187284,441,0 +170736187332,441,0 +170736187380,441,0 +170736187429,441,0 +170736187479,441,0 +170736187529,441,0 +170736187576,441,0 +170736187624,441,0 +170736187674,441,0 +170736187722,441,0 +170736187771,441,0 +170736187819,440,0 +170736187867,306,1 +170736187951,436,0 +170736187999,441,0 +170736188046,441,0 +170736188094,441,0 +170736188142,441,0 +170736188190,441,0 +170736188238,441,0 +170736188286,441,0 +170736188335,441,0 +170736188383,441,0 +170736188431,441,0 +170736188481,441,0 +170736188530,441,0 +170736188580,441,0 +170736188627,441,0 +170736188675,441,0 +170736188725,441,0 +170736188773,441,0 +170736188821,441,0 +170736188868,438,0 +170736188916,303,1 +170736188997,435,0 +170736189045,441,0 +170736189093,441,0 +170736189141,441,0 +170736189188,441,0 +170736189236,441,0 +170736189286,441,0 +170736189335,441,0 +170736189385,441,0 +170736189434,441,0 +170736189484,441,0 +170736189532,441,0 +170736189580,441,0 +170736189628,441,0 +170736189677,441,0 +170736189725,441,0 +170736189773,441,0 +170736189821,441,0 +170736189869,441,0 +170736189917,440,0 +170736189966,307,1 +170736190050,437,0 +170736190097,441,0 +170736190145,441,0 +170736190193,441,0 +170736190241,441,0 +170736190289,441,0 +170736190337,441,0 +170736190385,441,0 +170736190433,441,0 +170736190482,441,0 +170736190530,441,0 +170736190579,441,0 +170736190627,441,0 +170736190675,441,0 +170736190723,441,0 +170736190771,441,0 +170736190819,441,0 +170736190868,441,0 +170736190916,441,0 +170736190964,441,0 +170736191012,308,1 +170736191095,434,0 +170736191143,441,0 +170736191191,441,0 +170736191239,441,0 +170736191289,441,0 +170736191338,441,0 +170736191386,441,0 +170736191434,441,0 +170736191482,441,0 +170736191530,441,0 +170736191578,441,0 +170736191626,441,0 +170736191675,441,0 +170736191723,441,0 +170736191774,441,0 +170736191821,441,0 +170736191871,441,0 +170736191919,441,0 +170736191968,440,0 +170736192016,284,1 +170736192097,300,1 +170736192178,440,0 +170736192226,441,0 +170736192276,441,0 +170736192326,441,0 +170736192375,441,0 +170736192423,441,0 +170736192471,441,0 +170736192520,441,0 +170736192570,441,0 +170736192618,441,0 +170736192666,441,0 +170736192714,441,0 +170736192763,441,0 +170736192811,441,0 +170736192859,441,0 +170736192907,441,0 +170736192955,441,0 +170736193003,441,0 +170736193051,440,0 +170736193099,297,1 +170736193181,433,0 +170736193229,441,0 +170736193277,441,0 +170736193326,441,0 +170736193376,441,0 +170736193425,441,0 +170736193473,441,0 +170736193523,441,0 +170736193571,441,0 +170736193620,441,0 +170736193668,441,0 +170736193718,441,0 +170736193766,441,0 +170736193813,441,0 +170736193861,441,0 +170736193911,441,0 +170736193959,441,0 +170736194007,441,0 +170736194055,441,0 +170736194104,440,0 +170736194154,297,1 +170736194239,435,0 +170736194287,441,0 +170736194335,441,0 +170736194385,441,0 +170736194434,441,0 +170736194484,441,0 +170736194533,441,0 +170736194581,441,0 +170736194629,441,0 +170736194677,441,0 +170736194725,441,0 +170736194775,441,0 +170736194823,441,0 +170736194870,441,0 +170736194918,441,0 +170736194966,441,0 +170736195014,441,0 +170736195064,441,0 +170736195113,441,0 +170736195163,439,0 +170736195211,303,1 +170736195290,437,0 +170736195339,441,0 +170736195389,441,0 +170736195437,441,0 +170736195487,441,0 +170736195535,441,0 +170736195583,441,0 +170736195632,441,0 +170736195680,441,0 +170736195730,441,0 +170736195777,441,0 +170736195825,441,0 +170736195873,441,0 +170736195921,441,0 +170736195969,441,0 +170736196017,441,0 +170736196067,441,0 +170736196116,441,0 +170736196166,440,0 +170736196215,298,1 +170736196294,295,1 +170736196370,441,0 +170736196419,441,0 +170736196469,441,0 +170736196517,441,0 +170736196566,441,0 +170736196614,441,0 +170736196664,441,0 +170736196712,441,0 +170736196760,441,0 +170736196809,441,0 +170736196859,441,0 +170736196907,441,0 +170736196955,441,0 +170736197004,441,0 +170736197054,441,0 +170736197103,441,0 +170736197151,441,0 +170736197199,441,0 +170736197247,440,0 +170736197297,295,1 +170736197378,433,0 +170736197426,441,0 +170736197474,441,0 +170736197523,441,0 +170736197571,440,0 +170736197619,441,0 +170736197667,441,0 +170736197717,441,0 +170736197766,441,0 +170736197814,441,0 +170736197864,441,0 +170736197912,441,0 +170736197960,441,0 +170736198009,441,0 +170736198057,441,0 +170736198107,441,0 +170736198155,441,0 +170736198203,441,0 +170736198251,440,0 +170736198300,440,0 +170736198348,289,1 +170736198429,436,0 +170736198477,441,0 +170736198525,440,0 +170736198573,441,0 +170736198621,441,0 +170736198669,440,0 +170736198719,441,0 +170736198767,441,0 +170736198816,441,0 +170736198864,441,0 +170736198914,441,0 +170736198963,441,0 +170736199013,441,0 +170736199062,441,0 +170736199112,441,0 +170736199160,441,0 +170736199208,441,0 +170736199257,441,0 +170736199305,440,0 +170736199355,283,1 +170736199435,302,1 +170736199513,441,0 +170736199562,441,0 +170736199610,441,0 +170736199658,441,0 +170736199708,441,0 +170736199756,441,0 +170736199805,441,0 +170736199853,441,0 +170736199902,441,0 +170736199950,441,0 +170736199998,441,0 +170736200048,441,0 +170736200096,441,0 +170736200145,441,0 +170736200193,441,0 +170736200241,441,0 +170736200289,441,0 +170736200339,440,0 +170736200387,440,0 +170736200436,313,0 +170736200484,303,1 +170736200565,440,0 +170736200613,441,0 +170736200661,441,0 +170736200709,440,0 +170736200758,440,0 +170736200808,441,0 +170736200856,440,0 +170736200905,441,0 +170736200955,441,0 +170736201003,441,0 +170736201050,441,0 +170736201098,441,0 +170736201148,441,0 +170736201197,441,0 +170736201247,441,0 +170736201295,441,0 +170736201343,441,0 +170736201392,441,0 +170736201440,440,0 +170736201490,305,1 +170736201572,396,0 +170736201621,440,0 +170736201671,441,0 +170736201719,441,0 +170736201766,441,0 +170736201815,441,0 +170736201863,441,0 +170736201911,440,0 +170736201960,441,0 +170736202010,441,0 +170736202059,441,0 +170736202109,441,0 +170736202156,441,0 +170736202204,441,0 +170736202252,441,0 +170736202300,440,0 +170736202348,441,0 +170736202398,441,0 +170736202446,440,0 +170736202495,439,0 +170736202543,296,1 +170736202624,435,0 +170736202672,441,0 +170736202720,441,0 +170736202768,441,0 +170736202816,441,0 +170736202865,441,0 +170736202915,441,0 +170736202964,441,0 +170736203012,441,0 +170736203060,441,0 +170736203109,441,0 +170736203157,441,0 +170736203205,441,0 +170736203253,441,0 +170736203303,440,0 +170736203352,441,0 +170736203402,441,0 +170736203450,441,0 +170736203498,441,0 +170736203547,437,0 +170736203595,307,1 +170736203676,437,0 +170736203724,441,0 +170736203774,441,0 +170736203823,441,0 +170736203873,440,0 +170736203922,441,0 +170736203970,441,0 +170736204020,441,0 +170736204069,441,0 +170736204117,441,0 +170736204165,440,0 +170736204213,441,0 +170736204261,441,0 +170736204311,441,0 +170736204359,440,0 +170736204408,441,0 +170736204456,441,0 +170736204504,441,0 +170736204552,441,0 +170736204600,440,0 +170736204648,290,1 +170736204731,437,0 +170736204778,441,0 +170736204826,441,0 +170736204876,441,0 +170736204925,441,0 +170736204975,441,0 +170736205023,441,0 +170736205071,441,0 +170736205119,441,0 +170736205168,441,0 +170736205218,441,0 +170736205266,440,0 +170736205314,441,0 +170736205362,441,0 +170736205411,441,0 +170736205459,441,0 +170736205509,441,0 +170736205557,441,0 +170736205606,440,0 +170736205656,253,0 +170736205705,247,0 +170736205755,228,0 +170736205804,441,0 +170736205852,441,0 +170736205902,441,0 +170736205950,441,0 +170736205998,441,0 +170736206047,441,0 +170736206097,441,0 +170736206145,440,0 +170736206194,441,0 +170736206242,441,0 +170736206290,441,0 +170736206340,441,0 +170736206388,441,0 +170736206436,441,0 +170736206483,441,0 +170736206531,441,0 +170736206579,441,0 +170736206627,440,0 +170736206675,440,0 +170736206723,306,1 +170736206804,430,0 +170736206851,440,0 +170736206899,441,0 +170736206947,441,0 +170736206995,441,0 +170736207043,440,0 +170736207091,441,0 +170736207139,441,0 +170736207187,440,0 +170736207236,441,0 +170736207284,441,0 +170736207332,441,0 +170736207380,441,0 +170736207430,441,0 +170736207479,441,0 +170736207527,440,0 +170736207577,440,0 +170736207625,441,0 +170736207674,441,0 +170736207722,441,0 +170736207770,304,1 +170736207852,239,0 +170736207900,441,0 +170736207950,441,0 +170736207998,441,0 +170736208046,441,0 +170736208094,441,0 +170736208143,441,0 +170736208191,440,0 +170736208239,441,0 +170736208289,441,0 +170736208337,441,0 +170736208386,441,0 +170736208436,441,0 +170736208484,441,0 +170736208532,441,0 +170736208581,441,0 +170736208631,441,0 +170736208679,441,0 +170736208727,441,0 +170736208775,441,0 +170736208823,299,1 +170736208904,240,0 +170736208952,441,0 +170736209000,441,0 +170736209048,441,0 +170736209096,441,0 +170736209145,441,0 +170736209195,440,0 +170736209244,441,0 +170736209294,441,0 +170736209342,441,0 +170736209390,441,0 +170736209438,441,0 +170736209486,441,0 +170736209534,441,0 +170736209583,441,0 +170736209631,441,0 +170736209679,441,0 +170736209728,441,0 +170736209776,441,0 +170736209824,440,0 +170736209872,302,1 +170736209955,433,0 +170736210007,440,0 +170736210055,441,0 +170736210103,441,0 +170736210151,441,0 +170736210199,441,0 +170736210247,441,0 +170736210294,441,0 +170736210342,441,0 +170736210390,440,0 +170736210438,441,0 +170736210487,441,0 +170736210535,441,0 +170736210583,441,0 +170736210631,441,0 +170736210681,441,0 +170736210728,441,0 +170736210776,441,0 +170736210824,441,0 +170736210872,440,0 +170736210920,312,0 +170736210968,299,1 +170736211045,441,0 +170736211092,441,0 +170736211140,441,0 +170736211188,441,0 +170736211236,441,0 +170736211284,441,0 +170736211332,441,0 +170736211381,441,0 +170736211429,441,0 +170736211477,441,0 +170736211526,441,0 +170736211574,441,0 +170736211622,441,0 +170736211670,441,0 +170736211720,441,0 +170736211767,441,0 +170736211817,441,0 +170736211865,441,0 +170736211914,441,0 +170736211962,300,1 +170736212044,237,0 +170736212092,440,0 +170736212142,441,0 +170736212189,441,0 +170736212237,441,0 +170736212285,440,0 +170736212333,441,0 +170736212381,441,0 +170736212429,441,0 +170736212477,441,0 +170736212524,441,0 +170736212572,441,0 +170736212620,441,0 +170736212668,441,0 +170736212716,441,0 +170736212765,440,0 +170736212813,441,0 +170736212861,441,0 +170736212910,441,0 +170736212960,440,0 +170736213008,306,1 +170736213097,434,0 +170736213145,441,0 +170736213193,441,0 +170736213240,441,0 +170736213288,441,0 +170736213338,441,0 +170736213386,441,0 +170736213435,441,0 +170736213483,440,0 +170736213531,441,0 +170736213580,441,0 +170736213628,441,0 +170736213676,441,0 +170736213724,440,0 +170736213772,441,0 +170736213820,441,0 +170736213868,441,0 +170736213916,441,0 +170736213963,441,0 +170736214011,440,0 +170736214059,298,1 +170736214144,433,0 +170736214192,440,0 +170736214240,441,0 +170736214288,441,0 +170736214336,440,0 +170736214383,441,0 +170736214431,441,0 +170736214479,441,0 +170736214527,441,0 +170736214577,441,0 +170736214626,441,0 +170736214675,441,0 +170736214723,441,0 +170736214771,441,0 +170736214819,441,0 +170736214867,441,0 +170736214915,440,0 +170736214963,441,0 +170736215011,441,0 +170736215058,441,0 +170736215106,301,1 +170736215187,266,0 +170736215235,441,0 +170736215283,441,0 +170736215331,441,0 +170736215378,440,0 +170736215426,441,0 +170736215474,441,0 +170736215522,441,0 +170736215570,441,0 +170736215619,440,0 +170736215669,441,0 +170736215717,441,0 +170736215765,441,0 +170736215812,440,0 +170736215860,441,0 +170736215908,441,0 +170736215956,441,0 +170736216004,441,0 +170736216053,441,0 +170736216101,440,0 +170736216149,296,1 +170736216230,286,1 +170736216311,441,0 +170736216361,441,0 +170736216409,441,0 +170736216457,441,0 +170736216506,441,0 +170736216554,441,0 +170736216602,441,0 +170736216650,441,0 +170736216699,441,0 +170736216747,441,0 +170736216795,441,0 +170736216843,441,0 +170736216891,441,0 +170736216939,441,0 +170736216987,441,0 +170736217035,441,0 +170736217084,441,0 +170736217132,440,0 +170736217180,430,0 +170736217228,302,1 +170736217313,438,0 +170736217361,441,0 +170736217409,441,0 +170736217458,440,0 +170736217506,441,0 +170736217554,441,0 +170736217602,441,0 +170736217650,441,0 +170736217699,441,0 +170736217747,441,0 +170736217795,441,0 +170736217843,441,0 +170736217890,440,0 +170736217938,441,0 +170736217986,441,0 +170736218034,440,0 +170736218082,440,0 +170736218130,441,0 +170736218178,441,0 +170736218225,439,0 +170736218273,300,1 +170736218351,436,0 +170736218399,441,0 +170736218447,441,0 +170736218495,440,0 +170736218545,441,0 +170736218592,441,0 +170736218640,441,0 +170736218688,441,0 +170736218736,441,0 +170736218784,441,0 +170736218832,441,0 +170736218880,441,0 +170736218928,441,0 +170736218976,441,0 +170736219024,441,0 +170736219073,441,0 +170736219121,441,0 +170736219169,441,0 +170736219217,441,0 +170736219265,440,0 +170736219312,293,1 +170736219393,435,0 +170736219441,441,0 +170736219489,441,0 +170736219539,441,0 +170736219587,441,0 +170736219636,441,0 +170736219684,441,0 +170736219732,441,0 +170736219781,441,0 +170736219829,441,0 +170736219877,440,0 +170736219925,441,0 +170736219973,440,0 +170736220022,441,0 +170736220072,441,0 +170736220120,441,0 +170736220168,441,0 +170736220215,441,0 +170736220263,440,0 +170736220311,440,0 +170736220359,300,1 +170736220439,435,0 +170736220487,440,0 +170736220534,441,0 +170736220582,441,0 +170736220630,441,0 +170736220678,441,0 +170736220726,441,0 +170736220774,440,0 +170736220822,441,0 +170736220869,441,0 +170736220917,441,0 +170736220965,441,0 +170736221013,441,0 +170736221061,441,0 +170736221110,441,0 +170736221158,441,0 +170736221206,441,0 +170736221256,440,0 +170736221304,440,0 +170736221351,440,0 +170736221399,294,1 +170736221477,404,0 +170736221525,441,0 +170736221573,441,0 +170736221621,441,0 +170736221670,441,0 +170736221718,441,0 +170736221766,441,0 +170736221814,441,0 +170736221862,440,0 +170736221909,441,0 +170736221957,441,0 +170736222007,441,0 +170736222056,441,0 +170736222104,441,0 +170736222152,441,0 +170736222200,441,0 +170736222248,441,0 +170736222296,441,0 +170736222344,441,0 +170736222393,440,0 +170736222442,305,1 +170736222523,236,0 +170736222571,441,0 +170736222619,441,0 +170736222668,441,0 +170736222716,441,0 +170736222766,441,0 +170736222814,440,0 +170736222862,441,0 +170736222910,441,0 +170736222959,441,0 +170736223007,441,0 +170736223055,441,0 +170736223103,441,0 +170736223151,440,0 +170736223198,441,0 +170736223248,441,0 +170736223296,440,0 +170736223344,441,0 +170736223393,441,0 +170736223442,441,0 +170736223490,294,1 +170736223572,247,0 +170736223620,440,0 +170736223669,440,0 +170736223719,441,0 +170736223767,440,0 +170736223815,441,0 +170736223863,441,0 +170736223911,440,0 +170736223959,441,0 +170736224006,441,0 +170736224054,441,0 +170736224102,441,0 +170736224150,441,0 +170736224198,441,0 +170736224247,440,0 +170736224295,441,0 +170736224345,441,0 +170736224393,441,0 +170736224442,441,0 +170736224490,440,0 +170736224540,309,1 +170736224623,244,0 +170736224671,440,0 +170736224719,440,0 +170736224767,440,0 +170736224816,441,0 +170736224864,441,0 +170736224912,441,0 +170736224960,441,0 +170736225008,441,0 +170736225056,441,0 +170736225104,441,0 +170736225152,441,0 +170736225199,441,0 +170736225247,441,0 +170736225295,440,0 +170736225345,441,0 +170736225393,441,0 +170736225441,440,0 +170736225489,441,0 +170736225537,440,0 +170736225585,294,1 +170736225663,252,0 +170736225711,440,0 +170736225759,441,0 +170736225807,441,0 +170736225855,441,0 +170736225905,441,0 +170736225953,441,0 +170736226000,441,0 +170736226050,441,0 +170736226098,441,0 +170736226147,440,0 +170736226197,440,0 +170736226247,441,0 +170736226296,441,0 +170736226344,441,0 +170736226392,441,0 +170736226440,440,0 +170736226488,441,0 +170736226537,440,0 +170736226585,441,0 +170736226633,302,1 +170736226716,240,0 +170736226764,440,0 +170736226812,441,0 +170736226860,441,0 +170736226908,441,0 +170736226956,441,0 +170736227004,441,0 +170736227051,440,0 +170736227101,440,0 +170736227149,441,0 +170736227197,441,0 +170736227244,441,0 +170736227294,441,0 +170736227342,441,0 +170736227391,441,0 +170736227439,441,0 +170736227487,440,0 +170736227535,441,0 +170736227583,441,0 +170736227631,441,0 +170736227679,297,1 +170736227755,250,0 +170736227804,440,0 +170736227852,441,0 +170736227900,441,0 +170736227948,441,0 +170736227996,441,0 +170736228044,441,0 +170736228092,440,0 +170736228140,441,0 +170736228188,441,0 +170736228236,441,0 +170736228286,441,0 +170736228335,441,0 +170736228383,441,0 +170736228431,441,0 +170736228481,441,0 +170736228529,441,0 +170736228577,441,0 +170736228625,441,0 +170736228673,440,0 +170736228721,307,1 +170736228799,267,0 +170736228848,440,0 +170736228898,440,0 +170736228947,441,0 +170736228995,441,0 +170736229043,441,0 +170736229091,441,0 +170736229141,441,0 +170736229189,440,0 +170736229238,441,0 +170736229286,441,0 +170736229336,441,0 +170736229385,441,0 +170736229433,441,0 +170736229483,440,0 +170736229531,441,0 +170736229580,441,0 +170736229628,441,0 +170736229676,441,0 +170736229724,440,0 +170736229774,299,1 +170736229852,261,0 +170736229900,440,0 +170736229949,441,0 +170736229997,441,0 +170736230045,441,0 +170736230093,441,0 +170736230141,441,0 +170736230189,441,0 +170736230237,440,0 +170736230287,441,0 +170736230335,441,0 +170736230384,441,0 +170736230432,441,0 +170736230482,441,0 +170736230530,441,0 +170736230579,440,0 +170736230629,441,0 +170736230677,441,0 +170736230726,440,0 +170736230774,441,0 +170736230822,286,1 +170736230902,287,1 +170736230980,441,0 +170736231028,441,0 +170736231077,441,0 +170736231127,441,0 +170736231176,441,0 +170736231226,441,0 +170736231275,441,0 +170736231323,441,0 +170736231371,441,0 +170736231419,441,0 +170736231469,441,0 +170736231518,441,0 +170736231566,441,0 +170736231614,441,0 +170736231664,441,0 +170736231712,441,0 +170736231761,441,0 +170736231809,441,0 +170736231857,438,0 +170736231905,303,1 +170736231983,436,0 +170736232031,441,0 +170736232080,441,0 +170736232128,441,0 +170736232176,441,0 +170736232226,441,0 +170736232275,441,0 +170736232323,441,0 +170736232373,441,0 +170736232421,441,0 +170736232469,441,0 +170736232518,441,0 +170736232568,441,0 +170736232615,441,0 +170736232665,440,0 +170736232713,441,0 +170736232761,441,0 +170736232809,441,0 +170736232857,441,0 +170736232906,368,0 +170736232954,305,1 +170736233033,437,0 +170736233083,441,0 +170736233132,441,0 +170736233182,440,0 +170736233231,440,0 +170736233279,441,0 +170736233327,441,0 +170736233377,441,0 +170736233425,441,0 +170736233474,440,0 +170736233524,441,0 +170736233572,440,0 +170736233621,441,0 +170736233669,441,0 +170736233719,441,0 +170736233768,440,0 +170736233816,440,0 +170736233864,441,0 +170736233912,441,0 +170736233960,441,0 +170736234010,441,0 +170736234058,441,0 +170736234106,440,0 +170736234154,441,0 +170736234202,441,0 +170736234250,441,0 +170736234298,441,0 +170736234346,441,0 +170736234395,440,0 +170736234443,441,0 +170736234491,299,1 +170736234574,244,0 +170736234624,441,0 +170736234673,441,0 +170736234723,441,0 +170736234771,441,0 +170736234818,441,0 +170736234866,441,0 +170736234916,441,0 +170736234965,441,0 +170736235013,441,0 +170736235063,441,0 +170736235111,441,0 +170736235160,441,0 +170736235208,441,0 +170736235256,441,0 +170736235304,440,0 +170736235352,440,0 +170736235400,441,0 +170736235448,441,0 +170736235496,440,0 +170736235544,293,1 +170736235628,429,0 +170736235676,440,0 +170736235724,441,0 +170736235773,441,0 +170736235823,441,0 +170736235873,441,0 +170736235922,441,0 +170736235970,440,0 +170736236018,440,0 +170736236066,441,0 +170736236115,441,0 +170736236165,441,0 +170736236214,441,0 +170736236262,441,0 +170736236312,441,0 +170736236360,441,0 +170736236408,441,0 +170736236456,440,0 +170736236505,440,0 +170736236553,440,0 +170736236601,288,1 +170736236682,433,0 +170736236730,441,0 +170736236778,440,0 +170736236827,441,0 +170736236877,441,0 +170736236926,441,0 +170736236976,441,0 +170736237024,440,0 +170736237073,441,0 +170736237121,441,0 +170736237169,441,0 +170736237219,441,0 +170736237268,440,0 +170736237318,441,0 +170736237367,441,0 +170736237417,441,0 +170736237466,441,0 +170736237514,441,0 +170736237564,441,0 +170736237613,439,0 +170736237661,300,1 +170736237742,437,0 +170736237790,440,0 +170736237838,441,0 +170736237887,441,0 +170736237937,441,0 +170736237987,440,0 +170736238034,441,0 +170736238084,441,0 +170736238132,440,0 +170736238182,441,0 +170736238231,440,0 +170736238281,441,0 +170736238329,440,0 +170736238377,441,0 +170736238425,441,0 +170736238475,440,0 +170736238523,441,0 +170736238571,441,0 +170736238619,440,0 +170736238666,440,0 +170736238716,298,1 +170736238797,437,0 +170736238847,440,0 +170736238895,440,0 +170736238943,441,0 +170736238991,441,0 +170736239040,440,0 +170736239090,441,0 +170736239139,440,0 +170736239187,440,0 +170736239235,441,0 +170736239285,440,0 +170736239334,440,0 +170736239384,440,0 +170736239432,440,0 +170736239480,441,0 +170736239529,441,0 +170736239579,440,0 +170736239627,441,0 +170736239675,440,0 +170736239724,294,1 +170736239806,293,1 +170736239884,440,0 +170736239933,440,0 +170736239983,441,0 +170736240031,441,0 +170736240078,441,0 +170736240128,441,0 +170736240176,440,0 +170736240224,441,0 +170736240272,440,0 +170736240321,441,0 +170736240369,440,0 +170736240419,440,0 +170736240468,441,0 +170736240516,440,0 +170736240566,441,0 +170736240615,440,0 +170736240665,441,0 +170736240713,441,0 +170736240761,440,0 +170736240809,293,1 +170736240889,437,0 +170736240937,441,0 +170736240985,440,0 +170736241033,441,0 +170736241081,441,0 +170736241129,441,0 +170736241178,441,0 +170736241226,441,0 +170736241274,440,0 +170736241323,441,0 +170736241373,441,0 +170736241420,440,0 +170736241468,441,0 +170736241518,441,0 +170736241567,441,0 +170736241615,440,0 +170736241663,441,0 +170736241711,440,0 +170736241759,441,0 +170736241808,439,0 +170736241856,302,1 +170736241936,435,0 +170736241985,441,0 +170736242035,440,0 +170736242082,441,0 +170736242132,440,0 +170736242181,441,0 +170736242229,440,0 +170736242277,441,0 +170736242327,441,0 +170736242376,441,0 +170736242424,441,0 +170736242472,441,0 +170736242520,441,0 +170736242568,440,0 +170736242615,440,0 +170736242663,441,0 +170736242711,440,0 +170736242759,440,0 +170736242807,441,0 +170736242855,432,0 +170736242904,301,1 +170736242987,438,0 +170736243035,440,0 +170736243083,440,0 +170736243131,441,0 +170736243179,441,0 +170736243227,441,0 +170736243275,441,0 +170736243324,441,0 +170736243372,440,0 +170736243420,440,0 +170736243468,441,0 +170736243516,440,0 +170736243564,441,0 +170736243611,441,0 +170736243659,441,0 +170736243709,441,0 +170736243757,441,0 +170736243806,441,0 +170736243856,440,0 +170736243904,280,1 +170736243985,293,1 +170736244064,441,0 +170736244113,441,0 +170736244163,441,0 +170736244211,440,0 +170736244260,441,0 +170736244310,441,0 +170736244359,441,0 +170736244409,440,0 +170736244457,441,0 +170736244505,440,0 +170736244553,440,0 +170736244601,440,0 +170736244649,441,0 +170736244697,440,0 +170736244744,441,0 +170736244792,440,0 +170736244840,441,0 +170736244888,440,0 +170736244936,440,0 +170736244986,299,1 +170736245065,238,0 +170736245115,440,0 +170736245163,441,0 +170736245211,441,0 +170736245259,440,0 +170736245308,440,0 +170736245356,440,0 +170736245406,440,0 +170736245454,440,0 +170736245502,441,0 +170736245551,440,0 +170736245599,440,0 +170736245647,441,0 +170736245697,440,0 +170736245745,441,0 +170736245794,441,0 +170736245844,440,0 +170736245892,441,0 +170736245940,440,0 +170736245988,440,0 +170736246036,292,1 +170736246117,433,0 +170736246166,440,0 +170736246216,441,0 +170736246264,440,0 +170736246312,440,0 +170736246360,440,0 +170736246408,440,0 +170736246456,441,0 +170736246504,440,0 +170736246551,440,0 +170736246599,441,0 +170736246647,441,0 +170736246695,441,0 +170736246743,440,0 +170736246793,440,0 +170736246842,440,0 +170736246890,441,0 +170736246938,441,0 +170736246986,440,0 +170736247036,440,0 +170736247084,298,1 +170736247168,435,0 +170736247216,440,0 +170736247266,441,0 +170736247313,441,0 +170736247361,441,0 +170736247409,440,0 +170736247457,440,0 +170736247505,440,0 +170736247553,440,0 +170736247601,441,0 +170736247649,441,0 +170736247699,441,0 +170736247747,440,0 +170736247795,441,0 +170736247843,441,0 +170736247891,441,0 +170736247939,440,0 +170736247987,440,0 +170736248035,440,0 +170736248084,440,0 +170736248132,297,1 +170736248211,430,0 +170736248261,440,0 +170736248310,440,0 +170736248358,441,0 +170736248406,441,0 +170736248454,440,0 +170736248502,440,0 +170736248552,440,0 +170736248600,440,0 +170736248648,441,0 +170736248696,441,0 +170736248744,441,0 +170736248792,441,0 +170736248841,440,0 +170736248889,440,0 +170736248937,441,0 +170736248986,441,0 +170736249036,441,0 +170736249085,441,0 +170736249133,440,0 +170736249183,300,1 +170736249260,407,0 +170736249308,440,0 +170736249357,440,0 +170736249407,441,0 +170736249455,441,0 +170736249503,440,0 +170736249551,441,0 +170736249599,440,0 +170736249647,441,0 +170736249695,441,0 +170736249744,440,0 +170736249792,441,0 +170736249840,441,0 +170736249888,441,0 +170736249936,441,0 +170736249984,440,0 +170736250033,440,0 +170736250081,441,0 +170736250131,440,0 +170736250179,440,0 +170736250228,283,1 +170736250313,436,0 +170736250361,440,0 +170736250409,440,0 +170736250458,441,0 +170736250508,441,0 +170736250556,440,0 +170736250605,440,0 +170736250653,441,0 +170736250701,440,0 +170736250749,441,0 +170736250798,440,0 +170736250846,441,0 +170736250894,440,0 +170736250942,441,0 +170736250990,440,0 +170736251038,441,0 +170736251085,440,0 +170736251133,440,0 +170736251183,440,0 +170736251232,440,0 +170736251282,297,1 +170736251366,436,0 +170736251414,440,0 +170736251463,440,0 +170736251511,440,0 +170736251559,440,0 +170736251607,440,0 +170736251657,440,0 +170736251704,440,0 +170736251752,440,0 +170736251802,440,0 +170736251850,440,0 +170736251898,441,0 +170736251947,440,0 +170736251995,441,0 +170736252043,441,0 +170736252091,440,0 +170736252141,441,0 +170736252189,440,0 +170736252236,440,0 +170736252286,440,0 +170736252336,307,1 +170736252415,435,0 +170736252463,440,0 +170736252513,440,0 +170736252561,441,0 +170736252609,441,0 +170736252657,440,0 +170736252706,440,0 +170736252754,441,0 +170736252802,440,0 +170736252852,441,0 +170736252900,440,0 +170736252947,440,0 +170736252995,441,0 +170736253043,440,0 +170736253091,441,0 +170736253139,440,0 +170736253187,441,0 +170736253235,441,0 +170736253283,440,0 +170736253333,440,0 +170736253381,307,1 +170736253462,436,0 +170736253511,441,0 +170736253559,440,0 +170736253609,440,0 +170736253657,440,0 +170736253705,441,0 +170736253753,441,0 +170736253802,441,0 +170736253850,441,0 +170736253900,441,0 +170736253949,441,0 +170736253999,441,0 +170736254047,440,0 +170736254094,441,0 +170736254142,441,0 +170736254190,441,0 +170736254238,441,0 +170736254286,441,0 +170736254334,440,0 +170736254382,440,0 +170736254430,299,1 +170736254510,436,0 +170736254558,441,0 +170736254606,440,0 +170736254654,441,0 +170736254702,441,0 +170736254751,441,0 +170736254800,440,0 +170736254848,440,0 +170736254896,440,0 +170736254944,441,0 +170736254992,441,0 +170736255040,441,0 +170736255088,440,0 +170736255137,441,0 +170736255185,441,0 +170736255233,441,0 +170736255281,441,0 +170736255329,441,0 +170736255378,441,0 +170736255428,440,0 +170736255476,308,1 +170736255553,433,0 +170736255602,440,0 +170736255652,441,0 +170736255701,441,0 +170736255751,441,0 +170736255799,441,0 +170736255847,441,0 +170736255896,441,0 +170736255946,441,0 +170736255994,441,0 +170736256042,441,0 +170736256090,441,0 +170736256137,441,0 +170736256185,441,0 +170736256235,441,0 +170736256283,440,0 +170736256331,441,0 +170736256379,441,0 +170736256427,440,0 +170736256475,440,0 +170736256523,289,1 +170736256605,434,0 +170736256653,441,0 +170736256701,441,0 +170736256749,441,0 +170736256799,440,0 +170736256848,440,0 +170736256898,441,0 +170736256947,441,0 +170736256997,440,0 +170736257045,440,0 +170736257094,440,0 +170736257144,441,0 +170736257192,441,0 +170736257240,441,0 +170736257289,441,0 +170736257337,441,0 +170736257385,441,0 +170736257435,441,0 +170736257483,440,0 +170736257531,440,0 +170736257580,291,1 +170736257663,436,0 +170736257713,440,0 +170736257761,440,0 +170736257810,440,0 +170736257860,441,0 +170736257909,440,0 +170736257957,441,0 +170736258005,441,0 +170736258055,440,0 +170736258104,441,0 +170736258152,441,0 +170736258200,441,0 +170736258250,441,0 +170736258299,441,0 +170736258347,440,0 +170736258395,440,0 +170736258443,441,0 +170736258491,441,0 +170736258539,440,0 +170736258588,274,1 +170736258664,295,1 +170736258742,440,0 +170736258790,441,0 +170736258838,441,0 +170736258888,440,0 +170736258937,440,0 +170736258985,441,0 +170736259033,441,0 +170736259081,441,0 +170736259129,441,0 +170736259177,441,0 +170736259225,440,0 +170736259273,441,0 +170736259322,441,0 +170736259370,441,0 +170736259418,440,0 +170736259466,441,0 +170736259514,441,0 +170736259562,441,0 +170736259610,440,0 +170736259658,305,1 +170736259738,232,0 +170736259786,440,0 +170736259836,441,0 +170736259884,441,0 +170736259932,441,0 +170736259980,440,0 +170736260028,441,0 +170736260077,441,0 +170736260127,440,0 +170736260175,441,0 +170736260223,441,0 +170736260270,440,0 +170736260320,441,0 +170736260368,441,0 +170736260416,441,0 +170736260465,441,0 +170736260513,440,0 +170736260563,441,0 +170736260612,441,0 +170736260662,440,0 +170736260712,289,1 +170736260790,242,0 +170736260838,440,0 +170736260886,440,0 +170736260935,441,0 +170736260983,441,0 +170736261031,441,0 +170736261080,441,0 +170736261128,440,0 +170736261176,440,0 +170736261224,441,0 +170736261272,440,0 +170736261321,441,0 +170736261369,441,0 +170736261419,441,0 +170736261467,441,0 +170736261515,441,0 +170736261562,441,0 +170736261610,441,0 +170736261658,441,0 +170736261706,440,0 +170736261754,305,1 +170736261832,239,0 +170736261879,440,0 +170736261927,440,0 +170736261975,441,0 +170736262023,441,0 +170736262071,441,0 +170736262119,441,0 +170736262167,440,0 +170736262215,440,0 +170736262264,440,0 +170736262312,440,0 +170736262362,441,0 +170736262411,440,0 +170736262459,440,0 +170736262509,441,0 +170736262558,441,0 +170736262608,441,0 +170736262656,441,0 +170736262704,440,0 +170736262752,440,0 +170736262801,290,1 +170736262884,430,0 +170736262933,440,0 +170736262983,440,0 +170736263031,441,0 +170736263080,440,0 +170736263130,441,0 +170736263178,440,0 +170736263226,441,0 +170736263275,440,0 +170736263325,440,0 +170736263373,440,0 +170736263421,440,0 +170736263469,440,0 +170736263517,440,0 +170736263566,441,0 +170736263615,441,0 +170736263663,441,0 +170736263713,441,0 +170736263761,440,0 +170736263809,440,0 +170736263859,301,1 +170736263939,248,0 +170736263987,440,0 +170736264036,441,0 +170736264084,440,0 +170736264132,440,0 +170736264180,440,0 +170736264228,441,0 +170736264276,441,0 +170736264326,441,0 +170736264374,441,0 +170736264421,441,0 +170736264469,441,0 +170736264519,440,0 +170736264569,441,0 +170736264616,441,0 +170736264666,441,0 +170736264714,441,0 +170736264762,441,0 +170736264811,441,0 +170736264859,440,0 +170736264909,289,1 +170736264991,434,0 +170736265041,441,0 +170736265090,441,0 +170736265138,441,0 +170736265186,441,0 +170736265234,441,0 +170736265282,441,0 +170736265330,441,0 +170736265378,441,0 +170736265426,441,0 +170736265475,441,0 +170736265525,441,0 +170736265574,441,0 +170736265622,441,0 +170736265670,441,0 +170736265720,441,0 +170736265769,441,0 +170736265817,441,0 +170736265865,440,0 +170736265915,335,0 +170736265964,297,1 +170736266043,432,0 +170736266091,439,0 +170736266140,439,0 +170736266190,439,0 +170736266238,439,0 +170736266286,439,0 +170736266335,439,0 +170736266385,439,0 +170736266433,439,0 +170736266481,439,0 +170736266529,439,0 +170736266577,439,0 +170736266626,439,0 +170736266674,439,0 +170736266722,439,0 +170736266771,439,0 +170736266819,439,0 +170736266867,439,0 +170736266915,439,0 +170736266963,438,0 +170736267011,307,1 +170736267091,430,0 +170736267139,439,0 +170736267189,439,0 +170736267238,439,0 +170736267286,439,0 +170736267334,439,0 +170736267382,439,0 +170736267430,439,0 +170736267478,439,0 +170736267528,439,0 +170736267577,439,0 +170736267625,439,0 +170736267673,438,0 +170736267721,439,0 +170736267769,439,0 +170736267817,439,0 +170736267865,439,0 +170736267914,439,0 +170736267962,439,0 +170736268010,438,0 +170736268058,300,1 +170736268139,432,0 +170736268187,439,0 +170736268235,439,0 +170736268283,439,0 +170736268331,439,0 +170736268379,439,0 +170736268429,439,0 +170736268478,439,0 +170736268526,439,0 +170736268574,439,0 +170736268622,439,0 +170736268670,439,0 +170736268719,439,0 +170736268767,439,0 +170736268815,439,0 +170736268863,439,0 +170736268911,439,0 +170736268959,439,0 +170736269009,439,0 +170736269058,434,0 +170736269106,303,1 +170736269188,433,0 +170736269236,439,0 +170736269284,439,0 +170736269332,439,0 +170736269380,439,0 +170736269427,439,0 +170736269475,439,0 +170736269525,439,0 +170736269573,439,0 +170736269622,439,0 +170736269670,439,0 +170736269720,439,0 +170736269768,439,0 +170736269816,439,0 +170736269865,439,0 +170736269915,439,0 +170736269963,439,0 +170736270011,439,0 +170736270059,439,0 +170736270107,439,0 +170736270156,299,1 +170736270238,264,0 +170736270286,440,0 +170736270334,440,0 +170736270383,440,0 +170736270431,440,0 +170736270479,440,0 +170736270529,440,0 +170736270578,440,0 +170736270626,440,0 +170736270674,440,0 +170736270724,440,0 +170736270773,440,0 +170736270823,440,0 +170736270872,440,0 +170736270920,440,0 +170736270968,440,0 +170736271016,440,0 +170736271064,440,0 +170736271112,440,0 +170736271160,439,0 +170736271210,276,1 +170736271290,435,0 +170736271339,440,0 +170736271387,440,0 +170736271435,440,0 +170736271484,440,0 +170736271532,440,0 +170736271580,440,0 +170736271630,440,0 +170736271678,440,0 +170736271726,440,0 +170736271775,440,0 +170736271823,440,0 +170736271871,440,0 +170736271919,440,0 +170736271967,440,0 +170736272015,440,0 +170736272063,440,0 +170736272112,440,0 +170736272160,440,0 +170736272208,290,1 +170736272284,295,1 +170736272364,440,0 +170736272414,440,0 +170736272463,440,0 +170736272513,440,0 +170736272562,440,0 +170736272612,440,0 +170736272661,440,0 +170736272709,440,0 +170736272757,440,0 +170736272807,440,0 +170736272856,440,0 +170736272904,440,0 +170736272952,440,0 +170736273000,440,0 +170736273048,440,0 +170736273097,440,0 +170736273147,440,0 +170736273196,440,0 +170736273244,440,0 +170736273292,289,1 +170736273377,435,0 +170736273426,440,0 +170736273474,440,0 +170736273522,440,0 +170736273572,440,0 +170736273621,440,0 +170736273671,440,0 +170736273720,440,0 +170736273768,440,0 +170736273818,440,0 +170736273866,440,0 +170736273915,440,0 +170736273965,440,0 +170736274013,440,0 +170736274061,440,0 +170736274109,440,0 +170736274157,440,0 +170736274205,440,0 +170736274254,440,0 +170736274302,439,0 +170736274350,287,1 +170736274436,435,0 +170736274486,440,0 +170736274535,440,0 +170736274583,440,0 +170736274631,440,0 +170736274681,440,0 +170736274729,440,0 +170736274777,440,0 +170736274825,440,0 +170736274873,440,0 +170736274922,440,0 +170736274970,440,0 +170736275020,440,0 +170736275067,440,0 +170736275115,440,0 +170736275163,440,0 +170736275211,440,0 +170736275261,440,0 +170736275311,440,0 +170736275358,297,1 +170736275436,272,1 +170736275518,440,0 +170736275568,440,0 +170736275616,440,0 +170736275664,440,0 +170736275712,440,0 +170736275760,440,0 +170736275809,440,0 +170736275859,440,0 +170736275907,440,0 +170736275955,440,0 +170736276003,440,0 +170736276053,440,0 +170736276101,440,0 +170736276149,440,0 +170736276198,440,0 +170736276248,440,0 +170736276296,440,0 +170736276344,440,0 +170736276391,439,0 +170736276439,275,1 +170736276525,436,0 +170736276575,440,0 +170736276624,440,0 +170736276672,440,0 +170736276720,440,0 +170736276769,440,0 +170736276819,440,0 +170736276867,440,0 +170736276917,440,0 +170736276965,440,0 +170736277014,440,0 +170736277062,440,0 +170736277112,440,0 +170736277160,440,0 +170736277209,440,0 +170736277259,440,0 +170736277307,440,0 +170736277356,440,0 +170736277406,440,0 +170736277454,438,0 +170736277502,301,1 +170736277586,436,0 +170736277634,440,0 +170736277682,440,0 +170736277732,440,0 +170736277779,440,0 +170736277828,440,0 +170736277877,440,0 +170736277927,440,0 +170736277976,440,0 +170736278026,440,0 +170736278075,440,0 +170736278125,440,0 +170736278174,440,0 +170736278222,440,0 +170736278270,440,0 +170736278318,440,0 +170736278368,440,0 +170736278417,440,0 +170736278465,440,0 +170736278513,299,1 +170736278597,276,1 +170736278677,440,0 +170736278725,440,0 +170736278773,440,0 +170736278821,440,0 +170736278870,440,0 +170736278920,440,0 +170736278970,440,0 +170736279018,440,0 +170736279066,440,0 +170736279115,440,0 +170736279163,440,0 +170736279211,440,0 +170736279259,440,0 +170736279307,440,0 +170736279356,440,0 +170736279404,440,0 +170736279452,440,0 +170736279500,440,0 +170736279548,299,1 +170736279631,291,1 +170736279708,440,0 +170736279756,440,0 +170736279806,440,0 +170736279855,440,0 +170736279905,440,0 +170736279953,440,0 +170736280001,440,0 +170736280049,440,0 +170736280097,440,0 +170736280144,440,0 +170736280192,440,0 +170736280240,440,0 +170736280290,440,0 +170736280338,440,0 +170736280387,440,0 +170736280435,440,0 +170736280483,440,0 +170736280531,440,0 +170736280579,440,0 +170736280627,292,1 +170736280713,429,0 +170736280761,440,0 +170736280810,440,0 +170736280858,440,0 +170736280906,440,0 +170736280954,440,0 +170736281002,440,0 +170736281051,440,0 +170736281099,440,0 +170736281149,440,0 +170736281196,440,0 +170736281244,440,0 +170736281292,440,0 +170736281340,440,0 +170736281388,440,0 +170736281437,440,0 +170736281485,440,0 +170736281535,440,0 +170736281583,440,0 +170736281631,440,0 +170736281679,294,1 +170736281761,431,0 +170736281809,440,0 +170736281858,440,0 +170736281906,440,0 +170736281956,440,0 +170736282005,440,0 +170736282055,440,0 +170736282104,440,0 +170736282152,440,0 +170736282200,440,0 +170736282248,440,0 +170736282296,440,0 +170736282346,440,0 +170736282394,440,0 +170736282442,440,0 +170736282490,440,0 +170736282539,440,0 +170736282589,440,0 +170736282638,440,0 +170736282688,440,0 +170736282737,297,1 +170736282815,434,0 +170736282863,440,0 +170736282911,440,0 +170736282959,440,0 +170736283007,440,0 +170736283057,440,0 +170736283105,440,0 +170736283153,440,0 +170736283201,440,0 +170736283250,440,0 +170736283298,440,0 +170736283348,440,0 +170736283397,440,0 +170736283445,440,0 +170736283493,440,0 +170736283541,440,0 +170736283589,440,0 +170736283639,440,0 +170736283687,440,0 +170736283736,439,0 +170736283784,296,1 +170736283861,433,0 +170736283911,440,0 +170736283959,440,0 +170736284007,440,0 +170736284055,440,0 +170736284103,440,0 +170736284151,440,0 +170736284199,440,0 +170736284247,440,0 +170736284295,440,0 +170736284343,440,0 +170736284390,440,0 +170736284440,440,0 +170736284488,440,0 +170736284536,440,0 +170736284584,440,0 +170736284632,440,0 +170736284680,440,0 +170736284728,440,0 +170736284776,440,0 +170736284824,292,1 +170736284906,430,0 +170736284956,440,0 +170736285006,440,0 +170736285055,440,0 +170736285105,440,0 +170736285153,440,0 +170736285201,440,0 +170736285250,440,0 +170736285300,440,0 +170736285349,440,0 +170736285397,440,0 +170736285447,440,0 +170736285495,440,0 +170736285543,440,0 +170736285591,440,0 +170736285639,440,0 +170736285687,440,0 +170736285734,440,0 +170736285782,440,0 +170736285830,440,0 +170736285880,288,1 +170736285964,434,0 +170736286013,440,0 +170736286063,440,0 +170736286111,440,0 +170736286159,440,0 +170736286207,440,0 +170736286255,440,0 +170736286303,440,0 +170736286351,440,0 +170736286399,440,0 +170736286447,440,0 +170736286495,440,0 +170736286544,440,0 +170736286592,440,0 +170736286642,440,0 +170736286690,440,0 +170736286738,440,0 +170736286785,440,0 +170736286835,440,0 +170736286883,439,0 +170736286931,297,1 +170736287010,435,0 +170736287058,440,0 +170736287108,440,0 +170736287156,440,0 +170736287205,440,0 +170736287253,440,0 +170736287303,440,0 +170736287352,440,0 +170736287400,440,0 +170736287448,440,0 +170736287498,440,0 +170736287547,440,0 +170736287595,440,0 +170736287645,440,0 +170736287693,440,0 +170736287741,440,0 +170736287790,440,0 +170736287840,440,0 +170736287889,440,0 +170736287937,288,1 +170736288016,313,0 +170736288066,437,0 +170736288114,440,0 +170736288162,440,0 +170736288210,440,0 +170736288259,440,0 +170736288307,440,0 +170736288357,440,0 +170736288405,440,0 +170736288452,440,0 +170736288500,440,0 +170736288550,440,0 +170736288598,440,0 +170736288646,440,0 +170736288694,440,0 +170736288742,440,0 +170736288790,440,0 +170736288839,440,0 +170736288889,440,0 +170736288937,440,0 +170736288986,439,0 +170736289036,304,1 +170736289118,436,0 +170736289167,440,0 +170736289215,440,0 +170736289263,440,0 +170736289311,440,0 +170736289359,440,0 +170736289409,440,0 +170736289457,440,0 +170736289504,440,0 +170736289554,440,0 +170736289603,440,0 +170736289653,440,0 +170736289703,440,0 +170736289750,440,0 +170736289798,440,0 +170736289848,440,0 +170736289897,440,0 +170736289947,440,0 +170736289995,440,0 +170736290043,439,0 +170736290091,298,1 +170736290172,438,0 +170736290220,440,0 +170736290268,440,0 +170736290317,440,0 +170736290367,440,0 +170736290415,440,0 +170736290462,440,0 +170736290510,440,0 +170736290558,440,0 +170736290606,440,0 +170736290654,440,0 +170736290702,441,0 +170736290750,440,0 +170736290798,440,0 +170736290845,440,0 +170736290893,440,0 +170736290941,440,0 +170736290991,440,0 +170736291038,440,0 +170736291088,439,0 +170736291136,304,1 +170736291216,437,0 +170736291265,440,0 +170736291313,440,0 +170736291361,440,0 +170736291411,440,0 +170736291459,440,0 +170736291508,440,0 +170736291556,440,0 +170736291604,440,0 +170736291652,440,0 +170736291700,440,0 +170736291747,440,0 +170736291795,440,0 +170736291843,440,0 +170736291891,440,0 +170736291941,440,0 +170736291989,440,0 +170736292038,440,0 +170736292088,440,0 +170736292137,436,0 +170736292187,299,1 +170736292266,437,0 +170736292314,440,0 +170736292364,440,0 +170736292412,440,0 +170736292460,440,0 +170736292508,440,0 +170736292557,440,0 +170736292605,440,0 +170736292655,440,0 +170736292704,440,0 +170736292754,440,0 +170736292802,440,0 +170736292850,440,0 +170736292898,440,0 +170736292947,440,0 +170736292995,440,0 +170736293045,440,0 +170736293093,440,0 +170736293141,440,0 +170736293188,439,0 +170736293237,306,1 +170736293318,437,0 +170736293366,440,0 +170736293416,440,0 +170736293464,440,0 +170736293512,440,0 +170736293561,440,0 +170736293611,440,0 +170736293660,440,0 +170736293708,440,0 +170736293756,440,0 +170736293806,440,0 +170736293854,440,0 +170736293902,440,0 +170736293951,440,0 +170736293999,440,0 +170736294047,440,0 +170736294095,440,0 +170736294143,440,0 +170736294191,440,0 +170736294241,302,1 +170736294324,300,1 +170736294400,440,0 +170736294447,440,0 +170736294495,440,0 +170736294545,440,0 +170736294594,440,0 +170736294644,440,0 +170736294693,440,0 +170736294741,440,0 +170736294791,440,0 +170736294839,440,0 +170736294887,440,0 +170736294935,440,0 +170736294984,440,0 +170736295032,440,0 +170736295080,440,0 +170736295130,440,0 +170736295178,440,0 +170736295227,440,0 +170736295277,437,0 +170736295325,301,1 +170736295433,440,0 +170736295482,440,0 +170736295530,440,0 +170736295578,440,0 +170736295626,440,0 +170736295674,440,0 +170736295722,440,0 +170736295770,440,0 +170736295820,440,0 +170736295867,440,0 +170736295917,440,0 +170736295967,440,0 +170736296016,440,0 +170736296064,440,0 +170736296112,440,0 +170736296162,440,0 +170736296211,440,0 +170736296259,440,0 +170736296309,440,0 +170736296357,307,1 +170736296438,239,0 +170736296486,440,0 +170736296534,440,0 +170736296584,440,0 +170736296632,440,0 +170736296679,440,0 +170736296729,440,0 +170736296777,440,0 +170736296825,440,0 +170736296874,440,0 +170736296922,440,0 +170736296970,440,0 +170736297018,440,0 +170736297066,440,0 +170736297114,440,0 +170736297164,440,0 +170736297213,440,0 +170736297261,440,0 +170736297311,440,0 +170736297360,440,0 +170736297408,282,1 +170736297485,248,0 +170736297534,440,0 +170736297582,440,0 +170736297630,440,0 +170736297680,440,0 +170736297729,440,0 +170736297779,440,0 +170736297827,440,0 +170736297876,440,0 +170736297924,440,0 +170736297972,440,0 +170736298022,440,0 +170736298070,440,0 +170736298119,440,0 +170736298167,440,0 +170736298216,440,0 +170736298264,440,0 +170736298314,440,0 +170736298364,440,0 +170736298412,440,0 +170736298459,305,1 +170736298543,432,0 +170736298593,440,0 +170736298641,440,0 +170736298690,440,0 +170736298740,440,0 +170736298789,440,0 +170736298839,440,0 +170736298887,440,0 +170736298935,440,0 +170736298983,440,0 +170736299031,440,0 +170736299080,440,0 +170736299130,440,0 +170736299178,440,0 +170736299226,440,0 +170736299275,440,0 +170736299323,440,0 +170736299371,441,0 +170736299419,440,0 +170736299469,440,0 +170736299517,299,1 +170736299597,431,0 +170736299646,440,0 +170736299694,440,0 +170736299744,440,0 +170736299792,440,0 +170736299840,440,0 +170736299888,440,0 +170736299936,440,0 +170736299985,440,0 +170736300033,440,0 +170736300081,440,0 +170736300131,440,0 +170736300179,440,0 +170736300227,440,0 +170736300276,440,0 +170736300324,440,0 +170736300372,440,0 +170736300420,440,0 +170736300470,440,0 +170736300519,439,0 +170736300567,303,1 +170736301146,440,0 +170736301196,440,0 +170736301246,440,0 +170736301295,440,0 +170736301345,440,0 +170736301394,440,0 +170736301444,440,0 +170736301492,440,0 +170736301541,440,0 +170736301589,303,1 +170736301675,246,0 +170736301723,440,0 +170736301771,440,0 +170736301819,440,0 +170736301868,440,0 +170736301916,440,0 +170736301964,440,0 +170736302012,440,0 +170736302060,440,0 +170736302108,440,0 +170736302156,440,0 +170736302204,440,0 +170736302253,440,0 +170736302302,440,0 +170736302350,440,0 +170736302398,440,0 +170736302446,440,0 +170736302494,440,0 +170736302544,440,0 +170736302593,440,0 +170736302641,289,1 +170736302727,236,0 +170736302775,440,0 +170736302823,440,0 +170736302871,440,0 +170736302920,440,0 +170736302968,440,0 +170736303016,440,0 +170736303064,440,0 +170736303112,440,0 +170736303160,440,0 +170736303208,440,0 +170736303256,440,0 +170736303304,440,0 +170736303352,440,0 +170736303401,440,0 +170736303451,440,0 +170736303499,440,0 +170736303548,440,0 +170736303596,440,0 +170736303644,440,0 +170736303694,295,1 +170736303770,295,1 +170736303850,440,0 +170736303900,440,0 +170736303948,440,0 +170736303996,440,0 +170736304045,440,0 +170736304095,440,0 +170736304145,440,0 +170736304193,440,0 +170736304241,440,0 +170736304288,440,0 +170736304338,440,0 +170736304386,440,0 +170736304435,440,0 +170736304483,440,0 +170736304533,440,0 +170736304581,440,0 +170736304630,440,0 +170736304678,440,0 +170736304728,408,0 +170736304776,300,1 +170736304857,439,0 +170736304907,440,0 +170736304955,440,0 +170736305003,440,0 +170736305052,440,0 +170736305102,440,0 +170736305150,440,0 +170736305198,440,0 +170736305246,440,0 +170736305295,440,0 +170736305345,440,0 +170736305395,440,0 +170736305443,440,0 +170736305491,440,0 +170736305540,440,0 +170736305590,440,0 +170736305638,440,0 +170736305686,440,0 +170736305734,440,0 +170736305781,438,0 +170736305831,304,1 +170736305911,438,0 +170736305961,440,0 +170736306009,440,0 +170736306057,440,0 +170736306105,440,0 +170736306153,440,0 +170736306202,440,0 +170736306250,440,0 +170736306300,440,0 +170736306348,440,0 +170736306397,440,0 +170736306447,440,0 +170736306496,440,0 +170736306544,440,0 +170736306594,440,0 +170736306643,440,0 +170736306693,440,0 +170736306742,440,0 +170736306792,440,0 +170736306841,292,1 +170736306922,239,0 +170736306970,440,0 +170736307018,440,0 +170736307065,440,0 +170736307115,440,0 +170736307163,440,0 +170736307211,440,0 +170736307260,440,0 +170736307308,440,0 +170736307356,440,0 +170736307406,440,0 +170736307455,440,0 +170736307505,440,0 +170736307553,440,0 +170736307603,440,0 +170736307651,440,0 +170736307699,440,0 +170736307747,440,0 +170736307795,440,0 +170736307844,440,0 +170736307894,301,1 +170736307974,274,1 +170736308055,440,0 +170736308102,440,0 +170736308150,440,0 +170736308198,440,0 +170736308246,440,0 +170736308296,440,0 +170736308345,440,0 +170736308395,440,0 +170736308445,440,0 +170736308493,440,0 +170736308542,440,0 +170736308590,440,0 +170736308638,440,0 +170736308686,440,0 +170736308736,440,0 +170736308785,440,0 +170736308833,440,0 +170736308881,440,0 +170736308929,280,1 +170736309012,313,0 +170736309060,438,0 +170736309108,440,0 +170736309156,440,0 +170736309204,440,0 +170736309252,440,0 +170736309301,440,0 +170736309349,440,0 +170736309397,440,0 +170736309445,440,0 +170736309494,440,0 +170736309542,440,0 +170736309590,440,0 +170736309640,440,0 +170736309688,440,0 +170736309737,440,0 +170736309785,440,0 +170736309833,440,0 +170736309881,440,0 +170736309929,440,0 +170736309979,292,1 +170736310059,301,1 +170736310141,440,0 +170736310188,440,0 +170736310236,440,0 +170736310286,440,0 +170736310334,440,0 +170736310382,440,0 +170736310430,440,0 +170736310479,440,0 +170736310529,440,0 +170736310577,440,0 +170736310624,440,0 +170736310672,440,0 +170736310720,440,0 +170736310768,440,0 +170736310816,440,0 +170736310864,440,0 +170736310912,440,0 +170736310962,440,0 +170736311009,440,0 +170736311057,307,1 +170736311136,427,0 +170736311186,440,0 +170736311234,440,0 +170736311282,440,0 +170736311330,440,0 +170736311378,440,0 +170736311426,440,0 +170736311473,440,0 +170736311523,440,0 +170736311571,440,0 +170736311619,440,0 +170736311669,440,0 +170736311716,440,0 +170736311764,440,0 +170736311814,440,0 +170736311864,440,0 +170736311912,440,0 +170736311959,440,0 +170736312007,440,0 +170736312055,440,0 +170736312105,304,1 +170736312205,436,0 +170736312253,440,0 +170736312303,440,0 +170736312351,440,0 +170736312400,440,0 +170736312450,440,0 +170736312498,440,0 +170736312546,440,0 +170736312595,440,0 +170736312645,440,0 +170736312693,440,0 +170736312741,440,0 +170736312790,440,0 +170736312838,440,0 +170736312886,440,0 +170736312934,440,0 +170736312982,440,0 +170736313030,440,0 +170736313080,440,0 +170736313127,293,1 +170736313212,282,1 +170736313289,440,0 +170736313337,440,0 +170736313386,440,0 +170736313434,440,0 +170736313482,440,0 +170736313530,440,0 +170736313578,440,0 +170736313628,440,0 +170736313677,440,0 +170736313725,440,0 +170736313775,440,0 +170736313823,440,0 +170736313871,440,0 +170736313919,440,0 +170736313968,440,0 +170736314016,440,0 +170736314066,440,0 +170736314115,440,0 +170736314165,439,0 +170736314213,299,1 +170736314294,436,0 +170736314343,440,0 +170736314393,440,0 +170736314441,440,0 +170736314489,440,0 +170736314538,440,0 +170736314586,440,0 +170736314634,440,0 +170736314682,440,0 +170736314730,440,0 +170736314778,440,0 +170736314826,440,0 +170736314875,440,0 +170736314923,440,0 +170736314973,440,0 +170736315021,440,0 +170736315069,440,0 +170736315118,440,0 +170736315166,440,0 +170736315216,439,0 +170736315265,296,1 +170736315351,437,0 +170736315401,440,0 +170736315449,440,0 +170736315498,440,0 +170736315548,440,0 +170736315596,440,0 +170736315644,440,0 +170736315693,440,0 +170736315741,440,0 +170736315789,440,0 +170736315837,440,0 +170736315885,440,0 +170736315933,440,0 +170736315981,440,0 +170736316029,440,0 +170736316078,440,0 +170736316128,440,0 +170736316177,440,0 +170736316225,440,0 +170736316273,285,1 +170736316354,308,1 +170736316435,440,0 +170736316485,440,0 +170736316535,440,0 +170736316583,440,0 +170736316632,440,0 +170736316680,440,0 +170736316728,440,0 +170736316776,440,0 +170736316824,440,0 +170736316872,440,0 +170736316920,440,0 +170736316968,440,0 +170736317017,440,0 +170736317067,440,0 +170736317115,440,0 +170736317164,440,0 +170736317212,440,0 +170736317260,440,0 +170736317308,329,0 +170736317358,304,1 +170736317437,436,0 +170736317485,440,0 +170736317533,440,0 +170736317581,440,0 +170736317631,440,0 +170736317678,440,0 +170736317726,440,0 +170736317774,440,0 +170736317822,440,0 +170736317872,440,0 +170736317920,440,0 +170736317968,440,0 +170736318017,440,0 +170736318065,440,0 +170736318113,440,0 +170736318163,440,0 +170736318211,440,0 +170736318260,440,0 +170736318308,440,0 +170736318356,440,0 +170736318404,301,1 +170736318489,436,0 +170736318537,440,0 +170736318585,440,0 +170736318633,440,0 +170736318681,440,0 +170736318729,440,0 +170736318777,440,0 +170736318825,440,0 +170736318874,440,0 +170736318922,440,0 +170736318970,440,0 +170736319018,440,0 +170736319066,440,0 +170736319114,440,0 +170736319162,440,0 +170736319209,440,0 +170736319257,440,0 +170736319305,440,0 +170736319353,440,0 +170736319403,440,0 +170736319451,300,1 +170736319530,435,0 +170736319580,440,0 +170736319629,440,0 +170736319677,440,0 +170736319725,440,0 +170736319773,440,0 +170736319821,440,0 +170736319871,440,0 +170736319919,440,0 +170736319968,440,0 +170736320016,440,0 +170736320066,440,0 +170736320115,440,0 +170736320163,440,0 +170736320211,440,0 +170736320259,440,0 +170736320309,440,0 +170736320357,440,0 +170736320405,440,0 +170736320454,437,0 +170736320502,300,1 +170736320579,436,0 +170736320628,440,0 +170736320676,440,0 +170736320724,440,0 +170736320772,440,0 +170736320820,440,0 +170736320868,440,0 +170736320916,440,0 +170736320964,440,0 +170736321012,440,0 +170736321060,440,0 +170736321109,440,0 +170736321157,440,0 +170736321205,440,0 +170736321253,440,0 +170736321301,440,0 +170736321351,440,0 +170736321400,440,0 +170736321450,440,0 +170736321498,439,0 +170736321546,300,1 +170736321625,435,0 +170736321673,440,0 +170736321721,440,0 +170736321771,440,0 +170736321819,440,0 +170736321867,440,0 +170736321915,440,0 +170736321963,440,0 +170736322011,440,0 +170736322059,440,0 +170736322106,440,0 +170736322154,440,0 +170736322202,440,0 +170736322250,440,0 +170736322298,440,0 +170736322346,440,0 +170736322396,440,0 +170736322443,440,0 +170736322491,440,0 +170736322541,440,0 +170736322589,305,1 +170736322670,381,0 +170736322718,440,0 +170736322767,440,0 +170736322815,440,0 +170736322865,440,0 +170736322913,440,0 +170736322961,440,0 +170736323010,440,0 +170736323060,440,0 +170736323109,440,0 +170736323159,440,0 +170736323207,440,0 +170736323256,440,0 +170736323304,440,0 +170736323352,440,0 +170736323402,440,0 +170736323451,440,0 +170736323499,440,0 +170736323549,440,0 +170736323598,294,1 +170736323682,309,1 +170736323759,440,0 +170736323807,440,0 +170736323855,440,0 +170736323903,440,0 +170736323951,440,0 +170736323999,440,0 +170736324049,440,0 +170736324098,440,0 +170736324148,440,0 +170736324197,440,0 +170736324247,440,0 +170736324295,440,0 +170736324344,440,0 +170736324392,440,0 +170736324440,440,0 +170736324490,440,0 +170736324538,440,0 +170736324585,440,0 +170736324635,439,0 +170736324683,305,1 +170736324763,431,0 +170736324811,440,0 +170736324860,440,0 +170736324910,440,0 +170736324960,440,0 +170736325009,440,0 +170736325057,440,0 +170736325105,440,0 +170736325153,440,0 +170736325201,440,0 +170736325250,440,0 +170736325298,440,0 +170736325348,440,0 +170736325396,440,0 +170736325444,440,0 +170736325493,440,0 +170736325543,440,0 +170736325591,440,0 +170736325639,440,0 +170736325688,440,0 +170736325736,302,1 +170736325816,434,0 +170736325864,440,0 +170736325912,440,0 +170736325960,440,0 +170736326009,440,0 +170736326057,440,0 +170736326107,440,0 +170736326156,440,0 +170736326206,440,0 +170736326256,440,0 +170736326305,440,0 +170736326355,440,0 +170736326403,440,0 +170736326451,440,0 +170736326499,440,0 +170736326547,440,0 +170736326595,440,0 +170736326643,440,0 +170736326691,440,0 +170736326738,440,0 +170736326788,295,1 +170736326868,435,0 +170736326916,440,0 +170736326964,440,0 +170736327012,440,0 +170736327060,440,0 +170736327108,440,0 +170736327155,440,0 +170736327203,440,0 +170736327253,440,0 +170736327301,440,0 +170736327349,440,0 +170736327397,440,0 +170736327445,440,0 +170736327493,440,0 +170736327541,440,0 +170736327589,440,0 +170736327637,440,0 +170736327685,440,0 +170736327734,440,0 +170736327782,439,0 +170736327832,299,1 +170736327916,435,0 +170736327964,440,0 +170736328014,440,0 +170736328061,440,0 +170736328109,440,0 +170736328159,440,0 +170736328207,440,0 +170736328255,440,0 +170736328303,440,0 +170736328351,440,0 +170736328399,440,0 +170736328447,440,0 +170736328495,440,0 +170736328543,440,0 +170736328590,440,0 +170736328638,440,0 +170736328688,440,0 +170736328738,440,0 +170736328786,440,0 +170736328834,440,0 +170736328883,295,1 +170736328962,434,0 +170736329012,440,0 +170736329061,440,0 +170736329111,440,0 +170736329160,440,0 +170736329210,440,0 +170736329258,440,0 +170736329307,440,0 +170736329355,440,0 +170736329403,440,0 +170736329451,440,0 +170736329501,440,0 +170736329550,440,0 +170736329598,440,0 +170736329646,440,0 +170736329696,440,0 +170736329744,440,0 +170736329793,440,0 +170736329843,440,0 +170736329892,436,0 +170736329940,256,0 +170736329988,245,0 +170736330038,440,0 +170736330086,440,0 +170736330135,440,0 +170736330183,440,0 +170736330231,440,0 +170736330279,440,0 +170736330327,440,0 +170736330377,440,0 +170736330426,440,0 +170736330474,440,0 +170736330522,440,0 +170736330570,440,0 +170736330620,440,0 +170736330667,440,0 +170736330715,440,0 +170736330763,440,0 +170736330811,440,0 +170736330859,440,0 +170736330909,440,0 +170736330957,294,1 +170736331035,264,0 +170736331083,439,0 +170736331133,440,0 +170736331182,440,0 +170736331230,440,0 +170736331278,440,0 +170736331328,440,0 +170736331376,440,0 +170736331425,440,0 +170736331473,440,0 +170736331521,440,0 +170736331569,440,0 +170736331619,440,0 +170736331667,440,0 +170736331715,440,0 +170736331764,440,0 +170736331814,440,0 +170736331863,440,0 +170736331913,440,0 +170736331961,440,0 +170736332010,304,1 +170736332094,426,0 +170736332142,440,0 +170736332190,440,0 +170736332239,440,0 +170736332289,440,0 +170736332337,440,0 +170736332385,440,0 +170736332434,440,0 +170736332482,440,0 +170736332530,440,0 +170736332580,440,0 +170736332629,440,0 +170736332679,440,0 +170736332728,440,0 +170736332776,440,0 +170736332824,440,0 +170736332874,440,0 +170736332922,440,0 +170736332970,440,0 +170736333019,440,0 +170736333067,303,1 +170736333148,237,0 +170736333196,440,0 +170736333245,440,0 +170736333293,440,0 +170736333341,440,0 +170736333391,440,0 +170736333440,440,0 +170736333488,440,0 +170736333538,440,0 +170736333586,440,0 +170736333635,440,0 +170736333685,440,0 +170736333733,440,0 +170736333781,440,0 +170736333829,440,0 +170736333878,440,0 +170736333928,441,0 +170736333978,440,0 +170736334025,440,0 +170736334073,440,0 +170736334121,296,1 +170736334201,429,0 +170736334249,440,0 +170736334298,440,0 +170736334346,440,0 +170736334394,440,0 +170736334442,440,0 +170736334491,440,0 +170736334539,440,0 +170736334587,440,0 +170736334635,440,0 +170736334683,440,0 +170736334731,440,0 +170736334779,440,0 +170736334827,440,0 +170736334874,440,0 +170736334922,440,0 +170736334972,440,0 +170736335020,440,0 +170736335069,440,0 +170736335117,440,0 +170736335167,298,1 +170736335246,239,0 +170736335294,440,0 +170736335343,440,0 +170736335393,440,0 +170736335441,440,0 +170736335489,440,0 +170736335537,440,0 +170736335586,440,0 +170736335634,440,0 +170736335684,440,0 +170736335732,440,0 +170736335780,440,0 +170736335827,440,0 +170736335875,440,0 +170736335925,440,0 +170736335973,440,0 +170736336021,440,0 +170736336069,440,0 +170736336117,440,0 +170736336165,440,0 +170736336213,294,1 +170736336297,257,0 +170736336346,440,0 +170736336394,440,0 +170736336444,440,0 +170736336492,440,0 +170736336540,440,0 +170736336588,440,0 +170736336636,440,0 +170736336685,440,0 +170736336735,440,0 +170736336783,440,0 +170736336831,440,0 +170736336880,440,0 +170736336928,440,0 +170736336976,440,0 +170736337024,440,0 +170736337073,440,0 +170736337121,440,0 +170736337169,440,0 +170736337219,440,0 +170736337267,299,1 +170736337348,240,0 +170736337396,440,0 +170736337444,440,0 +170736337492,440,0 +170736337540,440,0 +170736337588,440,0 +170736337636,440,0 +170736337683,440,0 +170736337731,440,0 +170736337779,440,0 +170736337829,440,0 +170736337877,440,0 +170736337926,440,0 +170736337974,440,0 +170736338022,440,0 +170736338072,440,0 +170736338120,440,0 +170736338168,440,0 +170736338216,440,0 +170736338265,440,0 +170736338313,300,1 +170736338391,427,0 +170736338439,440,0 +170736338488,440,0 +170736338536,440,0 +170736338586,440,0 +170736338634,440,0 +170736338683,440,0 +170736338731,440,0 +170736338779,440,0 +170736338827,440,0 +170736338875,440,0 +170736338925,440,0 +170736338974,440,0 +170736339022,440,0 +170736339070,440,0 +170736339120,440,0 +170736339169,440,0 +170736339219,440,0 +170736339267,440,0 +170736339315,439,0 +170736339363,296,1 +170736339443,424,0 +170736339493,440,0 +170736339541,440,0 +170736339589,440,0 +170736339638,440,0 +170736339686,440,0 +170736339734,440,0 +170736339784,440,0 +170736339832,440,0 +170736339881,440,0 +170736339929,440,0 +170736339979,440,0 +170736340027,440,0 +170736340075,440,0 +170736340123,440,0 +170736340170,440,0 +170736340218,440,0 +170736340266,440,0 +170736340314,440,0 +170736340363,440,0 +170736340411,306,1 +170736340492,248,0 +170736340540,439,0 +170736340588,440,0 +170736340636,440,0 +170736340684,440,0 +170736340732,440,0 +170736340780,440,0 +170736340828,440,0 +170736340875,440,0 +170736340923,440,0 +170736340971,440,0 +170736341019,440,0 +170736341069,440,0 +170736341118,440,0 +170736341166,440,0 +170736341214,440,0 +170736341262,440,0 +170736341310,440,0 +170736341358,440,0 +170736341406,440,0 +170736341454,304,1 +170736341538,248,0 +170736341586,439,0 +170736341634,440,0 +170736341682,440,0 +170736341729,440,0 +170736341779,440,0 +170736341827,440,0 +170736341875,440,0 +170736341924,440,0 +170736341974,440,0 +170736342022,440,0 +170736342070,440,0 +170736342118,440,0 +170736342166,440,0 +170736342214,440,0 +170736342263,440,0 +170736342313,440,0 +170736342361,440,0 +170736342409,440,0 +170736342457,440,0 +170736342504,310,0 +170736342554,309,1 +170736342637,440,0 +170736342686,440,0 +170736342734,440,0 +170736342784,440,0 +170736342833,440,0 +170736342883,440,0 +170736342931,440,0 +170736342979,440,0 +170736343027,440,0 +170736343076,440,0 +170736343126,440,0 +170736343174,440,0 +170736343223,440,0 +170736343273,440,0 +170736343321,440,0 +170736343370,440,0 +170736343420,440,0 +170736343468,440,0 +170736343516,440,0 +170736343565,299,1 +170736343647,397,0 +170736343695,440,0 +170736343744,440,0 +170736343792,440,0 +170736343840,440,0 +170736343890,440,0 +170736343938,440,0 +170736343986,440,0 +170736344034,440,0 +170736344082,440,0 +170736344129,440,0 +170736344177,440,0 +170736344225,440,0 +170736344273,440,0 +170736344321,440,0 +170736344369,440,0 +170736344417,440,0 +170736344465,440,0 +170736344513,440,0 +170736344561,439,0 +170736344611,298,1 +170736344692,235,0 +170736344741,440,0 +170736344791,440,0 +170736344839,440,0 +170736344887,440,0 +170736344936,440,0 +170736344984,440,0 +170736345034,440,0 +170736345083,440,0 +170736345133,440,0 +170736345182,440,0 +170736345230,440,0 +170736345278,440,0 +170736345326,440,0 +170736345374,440,0 +170736345422,440,0 +170736345470,440,0 +170736345518,440,0 +170736345566,440,0 +170736345614,439,0 +170736345663,295,1 +170736345743,432,0 +170736345796,440,0 +170736345845,440,0 +170736345893,440,0 +170736345943,440,0 +170736345991,440,0 +170736346040,440,0 +170736346088,440,0 +170736346136,440,0 +170736346186,440,0 +170736346234,440,0 +170736346283,440,0 +170736346331,440,0 +170736346381,440,0 +170736346430,440,0 +170736346478,440,0 +170736346526,440,0 +170736346574,440,0 +170736346624,440,0 +170736346672,439,0 +170736346720,299,1 +170736346796,433,0 +170736346843,440,0 +170736346891,440,0 +170736346941,440,0 +170736346989,440,0 +170736347037,440,0 +170736347085,440,0 +170736347134,440,0 +170736347182,440,0 +170736347230,440,0 +170736347278,440,0 +170736347326,440,0 +170736347374,440,0 +170736347422,440,0 +170736347470,440,0 +170736347518,440,0 +170736347566,440,0 +170736347614,440,0 +170736347662,440,0 +170736347710,439,0 +170736347759,297,1 +170736347843,249,0 +170736347892,440,0 +170736347940,440,0 +170736347990,440,0 +170736348040,440,0 +170736348087,440,0 +170736348136,440,0 +170736348183,440,0 +170736348233,440,0 +170736348281,440,0 +170736348330,440,0 +170736348378,440,0 +170736348426,440,0 +170736348474,440,0 +170736348522,440,0 +170736348570,440,0 +170736348618,440,0 +170736348666,440,0 +170736348714,440,0 +170736348762,440,0 +170736348810,295,1 +170736348887,403,0 +170736348937,440,0 +170736348985,440,0 +170736349033,440,0 +170736349081,440,0 +170736349129,440,0 +170736349178,440,0 +170736349228,440,0 +170736349276,440,0 +170736349325,440,0 +170736349375,440,0 +170736349423,440,0 +170736349470,440,0 +170736349518,440,0 +170736349566,440,0 +170736349614,440,0 +170736349662,440,0 +170736349710,440,0 +170736349758,440,0 +170736349806,440,0 +170736349854,309,1 +170736349932,255,0 +170736349980,440,0 +170736350028,440,0 +170736350078,440,0 +170736350126,440,0 +170736350175,440,0 +170736350223,440,0 +170736350271,440,0 +170736350319,440,0 +170736350367,440,0 +170736350415,440,0 +170736350463,440,0 +170736350511,440,0 +170736350561,440,0 +170736350610,440,0 +170736350660,440,0 +170736350708,440,0 +170736350756,440,0 +170736350804,440,0 +170736350852,440,0 +170736350899,305,1 +170736350980,238,0 +170736351029,440,0 +170736351077,440,0 +170736351127,440,0 +170736351175,440,0 +170736351224,440,0 +170736351272,440,0 +170736351320,440,0 +170736351370,440,0 +170736351419,440,0 +170736351467,440,0 +170736351515,440,0 +170736351563,440,0 +170736351611,440,0 +170736351659,440,0 +170736351707,440,0 +170736351754,440,0 +170736351802,440,0 +170736351850,440,0 +170736351898,440,0 +170736351946,277,1 +170736352027,260,0 +170736352075,439,0 +170736352123,440,0 +170736352171,440,0 +170736352220,440,0 +170736352270,440,0 +170736352318,440,0 +170736352366,440,0 +170736352414,440,0 +170736352461,440,0 +170736352509,440,0 +170736352557,440,0 +170736352605,440,0 +170736352653,440,0 +170736352701,440,0 +170736352749,440,0 +170736352797,440,0 +170736352845,440,0 +170736352892,440,0 +170736352940,440,0 +170736352990,298,1 +170736353067,296,1 +170736353143,439,0 +170736353191,440,0 +170736353238,439,0 +170736353288,440,0 +170736353336,440,0 +170736353384,440,0 +170736353431,440,0 +170736353479,440,0 +170736353527,440,0 +170736353577,440,0 +170736353625,440,0 +170736353672,440,0 +170736353722,440,0 +170736353770,440,0 +170736353818,440,0 +170736353866,440,0 +170736353914,440,0 +170736353961,440,0 +170736354009,439,0 +170736354057,301,1 +170736354138,433,0 +170736354186,440,0 +170736354234,440,0 +170736354282,440,0 +170736354330,440,0 +170736354378,440,0 +170736354426,440,0 +170736354474,440,0 +170736354522,440,0 +170736354570,440,0 +170736354617,440,0 +170736354665,440,0 +170736354713,440,0 +170736354763,440,0 +170736354811,440,0 +170736354858,440,0 +170736354906,440,0 +170736354954,440,0 +170736355002,440,0 +170736355050,440,0 +170736355098,305,1 +170736355182,408,0 +170736355230,439,0 +170736355280,440,0 +170736355327,440,0 +170736355375,440,0 +170736355423,440,0 +170736355471,440,0 +170736355519,439,0 +170736355567,440,0 +170736355615,440,0 +170736355664,440,0 +170736355712,440,0 +170736355760,440,0 +170736355810,440,0 +170736355858,440,0 +170736355905,440,0 +170736355953,440,0 +170736356001,440,0 +170736356049,439,0 +170736356099,439,0 +170736356147,285,1 +170736356230,239,0 +170736356279,439,0 +170736356327,439,0 +170736356375,439,0 +170736356423,440,0 +170736356471,440,0 +170736356521,439,0 +170736356569,439,0 +170736356618,439,0 +170736356668,439,0 +170736356716,439,0 +170736356764,439,0 +170736356812,439,0 +170736356860,439,0 +170736356909,439,0 +170736356957,439,0 +170736357005,439,0 +170736357055,439,0 +170736357104,439,0 +170736357152,439,0 +170736357202,299,1 +170736357286,432,0 +170736357339,440,0 +170736357388,440,0 +170736357436,439,0 +170736357486,439,0 +170736357534,440,0 +170736357582,440,0 +170736357630,440,0 +170736357679,440,0 +170736357727,440,0 +170736357775,440,0 +170736357825,440,0 +170736357873,440,0 +170736357921,440,0 +170736357970,439,0 +170736358018,440,0 +170736358068,440,0 +170736358116,439,0 +170736358163,439,0 +170736358213,439,0 +170736358261,303,1 +170736358344,433,0 +170736358392,439,0 +170736358440,439,0 +170736358488,440,0 +170736358536,440,0 +170736358583,439,0 +170736358633,440,0 +170736358681,439,0 +170736358729,439,0 +170736358778,439,0 +170736358826,439,0 +170736358874,440,0 +170736358922,439,0 +170736358970,439,0 +170736359018,439,0 +170736359065,439,0 +170736359113,439,0 +170736359163,439,0 +170736359212,440,0 +170736359260,439,0 +170736359308,281,1 +170736359388,429,0 +170736359436,439,0 +170736359484,439,0 +170736359532,440,0 +170736359580,439,0 +170736359627,439,0 +170736359675,439,0 +170736359723,439,0 +170736359771,439,0 +170736359819,439,0 +170736359867,439,0 +170736359915,439,0 +170736359963,440,0 +170736360012,439,0 +170736360060,439,0 +170736360109,439,0 +170736360159,440,0 +170736360208,439,0 +170736360258,439,0 +170736360306,439,0 +170736360353,295,1 +170736360437,430,0 +170736360485,439,0 +170736360533,439,0 +170736360581,439,0 +170736360630,439,0 +170736360678,440,0 +170736360726,439,0 +170736360776,440,0 +170736360824,439,0 +170736360872,439,0 +170736360921,440,0 +170736360969,440,0 +170736361017,439,0 +170736361067,439,0 +170736361116,439,0 +170736361164,439,0 +170736361212,440,0 +170736361262,440,0 +170736361310,439,0 +170736361357,439,0 +170736361405,296,1 +170736361488,434,0 +170736361536,439,0 +170736361584,440,0 +170736361632,440,0 +170736361680,439,0 +170736361730,440,0 +170736361778,439,0 +170736361826,440,0 +170736361874,439,0 +170736361923,439,0 +170736361973,439,0 +170736362022,439,0 +170736362072,440,0 +170736362120,440,0 +170736362167,439,0 +170736362217,440,0 +170736362265,440,0 +170736362315,439,0 +170736362363,439,0 +170736362411,439,0 +170736362460,306,1 +170736362535,430,0 +170736362583,439,0 +170736362632,439,0 +170736362680,439,0 +170736362730,439,0 +170736362778,439,0 +170736362826,440,0 +170736362874,439,0 +170736362923,440,0 +170736362971,439,0 +170736363019,440,0 +170736363069,440,0 +170736363117,439,0 +170736363164,439,0 +170736363212,440,0 +170736363262,440,0 +170736363310,440,0 +170736363358,439,0 +170736363407,439,0 +170736363455,439,0 +170736363505,287,1 +170736363585,429,0 +170736363638,439,0 +170736363686,439,0 +170736363734,440,0 +170736363783,439,0 +170736363831,440,0 +170736363881,439,0 +170736363929,439,0 +170736363978,440,0 +170736364026,439,0 +170736364076,439,0 +170736364124,439,0 +170736364173,439,0 +170736364221,440,0 +170736364269,439,0 +170736364319,439,0 +170736364367,440,0 +170736364414,439,0 +170736364462,439,0 +170736364510,438,0 +170736364558,294,1 +170736364639,434,0 +170736364687,440,0 +170736364735,439,0 +170736364783,439,0 +170736364833,439,0 +170736364881,440,0 +170736364930,440,0 +170736364978,439,0 +170736365026,440,0 +170736365075,440,0 +170736365123,439,0 +170736365171,440,0 +170736365221,440,0 +170736365271,439,0 +170736365319,439,0 +170736365366,439,0 +170736365414,439,0 +170736365464,440,0 +170736365512,439,0 +170736365560,438,0 +170736365608,309,1 +170736365697,438,0 +170736365745,439,0 +170736365793,440,0 +170736365841,439,0 +170736365889,439,0 +170736365937,439,0 +170736365984,440,0 +170736366034,440,0 +170736366082,439,0 +170736366130,439,0 +170736366179,439,0 +170736366229,439,0 +170736366277,439,0 +170736366326,440,0 +170736366376,439,0 +170736366426,439,0 +170736366473,440,0 +170736366521,439,0 +170736366571,439,0 +170736366619,428,0 +170736366668,300,1 +170736366747,436,0 +170736366797,440,0 +170736366846,440,0 +170736366896,440,0 +170736366944,439,0 +170736366992,440,0 +170736367040,439,0 +170736367088,439,0 +170736367136,440,0 +170736367184,439,0 +170736367233,439,0 +170736367281,439,0 +170736367329,440,0 +170736367377,440,0 +170736367427,440,0 +170736367475,439,0 +170736367522,440,0 +170736367570,440,0 +170736367618,440,0 +170736367666,285,1 +170736367748,273,1 +170736367820,439,0 +170736367868,439,0 +170736367916,439,0 +170736367965,440,0 +170736368015,439,0 +170736368064,439,0 +170736368114,440,0 +170736368163,439,0 +170736368213,439,0 +170736368263,439,0 +170736368311,440,0 +170736368359,439,0 +170736368407,440,0 +170736368454,439,0 +170736368502,439,0 +170736368550,439,0 +170736368598,439,0 +170736368646,439,0 +170736368696,439,0 +170736368744,297,1 +170736368829,434,0 +170736368877,439,0 +170736368927,439,0 +170736368975,439,0 +170736369023,439,0 +170736369071,439,0 +170736369119,439,0 +170736369167,439,0 +170736369216,439,0 +170736369264,439,0 +170736369312,439,0 +170736369360,439,0 +170736369408,439,0 +170736369458,440,0 +170736369507,439,0 +170736369557,439,0 +170736369605,439,0 +170736369653,439,0 +170736369702,439,0 +170736369752,439,0 +170736369800,306,1 +170736369881,432,0 +170736369929,439,0 +170736369977,440,0 +170736370025,439,0 +170736370075,439,0 +170736370123,439,0 +170736370171,439,0 +170736370220,439,0 +170736370268,440,0 +170736370316,439,0 +170736370366,439,0 +170736370415,440,0 +170736370463,439,0 +170736370513,439,0 +170736370561,439,0 +170736370610,439,0 +170736370658,439,0 +170736370708,439,0 +170736370755,439,0 +170736370803,438,0 +170736370851,307,1 +170736370934,435,0 +170736370982,439,0 +170736371029,440,0 +170736371077,439,0 +170736371125,439,0 +170736371173,439,0 +170736371221,439,0 +170736371269,439,0 +170736371317,439,0 +170736371365,439,0 +170736371413,439,0 +170736371460,439,0 +170736371508,439,0 +170736371558,439,0 +170736371608,439,0 +170736371656,439,0 +170736371704,439,0 +170736371752,439,0 +170736371801,439,0 +170736371849,435,0 +170736371897,302,1 +170736371971,433,0 +170736372019,439,0 +170736372069,439,0 +170736372117,439,0 +170736372165,439,0 +170736372213,439,0 +170736372262,439,0 +170736372311,439,0 +170736372359,439,0 +170736372407,439,0 +170736372457,439,0 +170736372506,440,0 +170736372556,439,0 +170736372604,439,0 +170736372652,439,0 +170736372700,439,0 +170736372749,440,0 +170736372799,439,0 +170736372847,439,0 +170736372895,439,0 +170736372944,297,1 +170736373025,432,0 +170736373073,439,0 +170736373121,439,0 +170736373169,439,0 +170736373217,439,0 +170736373265,440,0 +170736373314,440,0 +170736373362,440,0 +170736373410,439,0 +170736373458,440,0 +170736373506,439,0 +170736373555,439,0 +170736373605,439,0 +170736373654,439,0 +170736373702,439,0 +170736373750,439,0 +170736373798,439,0 +170736373846,439,0 +170736373894,439,0 +170736373942,439,0 +170736373990,305,1 +170736374068,427,0 +170736374116,439,0 +170736374164,439,0 +170736374214,440,0 +170736374263,439,0 +170736374311,439,0 +170736374360,439,0 +170736374408,439,0 +170736374458,439,0 +170736374506,439,0 +170736374554,439,0 +170736374602,439,0 +170736374650,439,0 +170736374699,439,0 +170736374747,439,0 +170736374797,439,0 +170736374845,439,0 +170736374894,439,0 +170736374944,439,0 +170736374992,437,0 +170736375040,301,1 +170736375119,434,0 +170736375168,439,0 +170736375216,439,0 +170736375266,439,0 +170736375314,439,0 +170736375363,439,0 +170736375411,439,0 +170736375459,439,0 +170736375509,439,0 +170736375557,439,0 +170736375605,440,0 +170736375653,439,0 +170736375701,439,0 +170736375749,439,0 +170736375798,439,0 +170736375848,439,0 +170736375896,439,0 +170736375945,439,0 +170736375993,439,0 +170736376041,438,0 +170736376091,292,1 +170736376171,434,0 +170736376219,439,0 +170736376267,439,0 +170736376315,439,0 +170736376363,439,0 +170736376413,439,0 +170736376461,439,0 +170736376509,439,0 +170736376557,439,0 +170736376605,439,0 +170736376653,439,0 +170736376701,439,0 +170736376749,439,0 +170736376797,439,0 +170736376844,440,0 +170736376892,439,0 +170736376942,439,0 +170736376990,440,0 +170736377038,439,0 +170736377086,439,0 +170736377134,296,1 +170736377213,429,0 +170736377263,439,0 +170736377311,439,0 +170736377359,439,0 +170736377408,439,0 +170736377456,439,0 +170736377504,439,0 +170736377554,439,0 +170736377603,439,0 +170736377653,439,0 +170736377702,439,0 +170736377752,439,0 +170736377800,439,0 +170736377848,439,0 +170736377897,439,0 +170736377947,439,0 +170736377995,439,0 +170736378044,439,0 +170736378094,439,0 +170736378143,422,0 +170736378193,302,1 +170736378273,435,0 +170736378321,439,0 +170736378369,439,0 +170736378417,439,0 +170736378466,439,0 +170736378514,439,0 +170736378564,439,0 +170736378612,439,0 +170736378660,439,0 +170736378708,439,0 +170736378756,440,0 +170736378804,439,0 +170736378852,439,0 +170736378900,439,0 +170736378947,439,0 +170736378995,439,0 +170736379043,439,0 +170736379091,439,0 +170736379139,439,0 +170736379187,438,0 +170736379235,300,1 +170736379319,435,0 +170736379367,439,0 +170736379415,439,0 +170736379463,439,0 +170736379511,439,0 +170736379559,439,0 +170736379609,440,0 +170736379658,439,0 +170736379708,439,0 +170736379756,439,0 +170736379804,439,0 +170736379853,439,0 +170736379903,439,0 +170736379951,440,0 +170736379999,439,0 +170736380047,439,0 +170736380096,439,0 +170736380144,219,0 +170736380192,218,0 +170736380242,222,0 +170736380290,251,0 +170736380339,241,0 +170736380387,441,0 +170736380435,441,0 +170736380485,441,0 +170736380534,441,0 +170736380584,441,0 +170736380633,441,0 +170736380683,441,0 +170736380732,441,0 +170736380780,441,0 +170736380828,441,0 +170736380878,441,0 +170736380926,441,0 +170736380974,441,0 +170736381023,441,0 +170736381073,441,0 +170736381121,441,0 +170736381170,441,0 +170736381220,441,0 +170736381268,441,0 +170736381316,303,1 +170736381392,246,0 +170736381442,441,0 +170736381490,441,0 +170736381538,441,0 +170736381587,441,0 +170736381636,441,0 +170736381686,441,0 +170736381734,441,0 +170736381782,441,0 +170736381830,441,0 +170736381879,441,0 +170736381927,441,0 +170736381975,441,0 +170736382023,441,0 +170736382073,441,0 +170736382121,441,0 +170736382169,441,0 +170736382217,441,0 +170736382265,441,0 +170736382314,441,0 +170736382364,283,1 +170736382448,436,0 +170736382496,441,0 +170736382545,441,0 +170736382595,441,0 +170736382643,441,0 +170736382692,441,0 +170736382740,441,0 +170736382788,441,0 +170736382838,441,0 +170736382887,441,0 +170736382935,441,0 +170736382985,441,0 +170736383033,441,0 +170736383081,441,0 +170736383129,441,0 +170736383178,441,0 +170736383228,441,0 +170736383277,441,0 +170736383325,441,0 +170736383373,440,0 +170736383423,291,1 +170736383502,436,0 +170736383550,441,0 +170736383598,441,0 +170736383648,441,0 +170736383696,441,0 +170736383743,441,0 +170736383791,441,0 +170736383839,441,0 +170736383887,441,0 +170736383935,441,0 +170736383985,441,0 +170736384033,441,0 +170736384081,441,0 +170736384129,441,0 +170736384177,441,0 +170736384225,441,0 +170736384273,441,0 +170736384322,441,0 +170736384372,441,0 +170736384421,441,0 +170736384469,306,1 +170736384550,435,0 +170736384598,441,0 +170736384646,441,0 +170736384694,441,0 +170736384742,441,0 +170736384790,441,0 +170736384837,441,0 +170736384885,441,0 +170736384935,441,0 +170736384983,441,0 +170736385031,441,0 +170736385079,441,0 +170736385127,441,0 +170736385176,441,0 +170736385226,441,0 +170736385275,441,0 +170736385323,441,0 +170736385373,441,0 +170736385421,441,0 +170736385470,441,0 +170736385518,306,1 +170736385597,436,0 +170736385645,441,0 +170736385694,441,0 +170736385742,441,0 +170736385790,441,0 +170736385838,441,0 +170736385886,441,0 +170736385934,441,0 +170736385982,441,0 +170736386030,441,0 +170736386078,441,0 +170736386126,441,0 +170736386174,441,0 +170736386222,441,0 +170736386269,441,0 +170736386317,441,0 +170736386365,441,0 +170736386415,441,0 +170736386463,441,0 +170736386511,441,0 +170736386559,300,1 +170736386632,239,0 +170736386680,441,0 +170736386729,441,0 +170736386779,441,0 +170736386828,441,0 +170736386878,441,0 +170736386928,441,0 +170736386976,441,0 +170736387023,441,0 +170736387071,441,0 +170736387119,441,0 +170736387167,441,0 +170736387215,441,0 +170736387263,441,0 +170736387311,441,0 +170736387359,441,0 +170736387407,441,0 +170736387455,441,0 +170736387503,441,0 +170736387551,441,0 +170736387599,309,1 +170736387677,237,0 +170736387727,441,0 +170736387776,441,0 +170736387824,441,0 +170736387874,441,0 +170736387922,441,0 +170736387970,441,0 +170736388018,441,0 +170736388065,441,0 +170736388113,441,0 +170736388161,441,0 +170736388209,441,0 +170736388257,441,0 +170736388306,441,0 +170736388354,441,0 +170736388404,441,0 +170736388453,441,0 +170736388501,441,0 +170736388549,441,0 +170736388597,441,0 +170736388645,303,1 +170736388727,243,0 +170736388775,441,0 +170736388823,441,0 +170736388871,441,0 +170736388918,441,0 +170736388966,441,0 +170736389014,441,0 +170736389062,441,0 +170736389110,441,0 +170736389158,441,0 +170736389206,441,0 +170736389254,441,0 +170736389302,441,0 +170736389351,441,0 +170736389399,441,0 +170736389447,441,0 +170736389497,441,0 +170736389546,441,0 +170736389596,441,0 +170736389646,441,0 +170736389694,304,1 +170736389777,242,0 +170736389825,441,0 +170736389875,441,0 +170736389922,441,0 +170736389970,441,0 +170736390020,441,0 +170736390068,441,0 +170736390115,441,0 +170736390163,441,0 +170736390211,441,0 +170736390261,441,0 +170736390309,441,0 +170736390356,441,0 +170736390404,441,0 +170736390452,441,0 +170736390502,441,0 +170736390550,441,0 +170736390598,441,0 +170736390645,441,0 +170736390693,441,0 +170736390741,301,1 +170736390820,243,0 +170736390868,441,0 +170736390916,441,0 +170736390966,441,0 +170736391013,441,0 +170736391061,441,0 +170736391109,441,0 +170736391157,441,0 +170736391205,441,0 +170736391253,441,0 +170736391301,441,0 +170736391350,441,0 +170736391398,441,0 +170736391448,441,0 +170736391497,441,0 +170736391545,441,0 +170736391593,441,0 +170736391641,441,0 +170736391690,441,0 +170736391738,441,0 +170736391786,297,1 +170736391869,273,1 +170736391947,441,0 +170736391995,441,0 +170736392043,441,0 +170736392092,441,0 +170736392140,441,0 +170736392188,441,0 +170736392237,441,0 +170736392287,441,0 +170736392335,441,0 +170736392383,441,0 +170736392430,441,0 +170736392478,441,0 +170736392528,441,0 +170736392576,441,0 +170736392625,441,0 +170736392673,441,0 +170736392721,441,0 +170736392769,441,0 +170736392817,441,0 +170736392866,294,1 +170736392945,438,0 +170736392995,441,0 +170736393043,441,0 +170736393091,441,0 +170736393139,441,0 +170736393187,441,0 +170736393235,441,0 +170736393283,441,0 +170736393331,441,0 +170736393379,441,0 +170736393426,441,0 +170736393474,441,0 +170736393522,441,0 +170736393570,441,0 +170736393618,441,0 +170736393666,441,0 +170736393714,441,0 +170736393762,441,0 +170736393811,441,0 +170736393861,441,0 +170736393909,286,1 +170736393991,438,0 +170736394041,441,0 +170736394089,441,0 +170736394138,441,0 +170736394188,441,0 +170736394236,441,0 +170736394285,441,0 +170736394333,441,0 +170736394383,441,0 +170736394431,441,0 +170736394479,441,0 +170736394528,441,0 +170736394578,441,0 +170736394626,441,0 +170736394673,441,0 +170736394723,441,0 +170736394771,441,0 +170736394819,441,0 +170736394867,441,0 +170736394915,440,0 +170736394963,305,1 +170736395044,439,0 +170736395093,441,0 +170736395141,441,0 +170736395191,441,0 +170736395239,441,0 +170736395287,441,0 +170736395334,441,0 +170736395382,441,0 +170736395430,441,0 +170736395478,441,0 +170736395526,441,0 +170736395574,441,0 +170736395622,441,0 +170736395670,441,0 +170736395717,441,0 +170736395765,441,0 +170736395813,441,0 +170736395863,441,0 +170736395911,441,0 +170736395959,441,0 +170736396007,295,1 +170736396091,438,0 +170736396141,441,0 +170736396190,441,0 +170736396238,441,0 +170736396286,441,0 +170736396336,441,0 +170736396384,441,0 +170736396432,441,0 +170736396480,441,0 +170736396529,441,0 +170736396577,441,0 +170736396627,441,0 +170736396675,441,0 +170736396723,441,0 +170736396772,441,0 +170736396820,441,0 +170736396870,441,0 +170736396918,441,0 +170736396966,441,0 +170736397015,423,0 +170736397065,302,1 +170736397144,439,0 +170736397192,441,0 +170736397240,441,0 +170736397288,441,0 +170736397336,441,0 +170736397384,441,0 +170736397432,441,0 +170736397482,441,0 +170736397531,441,0 +170736397579,441,0 +170736397629,441,0 +170736397677,441,0 +170736397725,441,0 +170736397774,441,0 +170736397822,441,0 +170736397871,441,0 +170736397921,441,0 +170736397971,441,0 +170736398020,441,0 +170736398070,285,1 +170736398148,294,1 +170736398226,441,0 +170736398276,441,0 +170736398325,441,0 +170736398375,441,0 +170736398423,441,0 +170736398472,441,0 +170736398520,441,0 +170736398568,441,0 +170736398616,441,0 +170736398666,441,0 +170736398714,441,0 +170736398763,441,0 +170736398811,441,0 +170736398859,441,0 +170736398907,441,0 +170736398957,441,0 +170736399005,441,0 +170736399053,441,0 +170736399102,441,0 +170736399150,301,1 +170736399231,436,0 +170736399279,441,0 +170736399328,441,0 +170736399376,441,0 +170736399424,441,0 +170736399474,441,0 +170736399522,441,0 +170736399570,441,0 +170736399618,441,0 +170736399666,441,0 +170736399714,441,0 +170736399762,441,0 +170736399811,441,0 +170736399859,441,0 +170736399909,441,0 +170736399958,441,0 +170736400008,441,0 +170736400057,441,0 +170736400105,441,0 +170736400153,440,0 +170736400201,306,1 +170736400279,436,0 +170736400327,441,0 +170736400376,441,0 +170736400424,441,0 +170736400472,441,0 +170736400520,441,0 +170736400568,441,0 +170736400617,441,0 +170736400665,441,0 +170736400713,441,0 +170736400763,441,0 +170736400811,441,0 +170736400860,441,0 +170736400908,441,0 +170736400958,441,0 +170736401006,441,0 +170736401054,441,0 +170736401103,441,0 +170736401151,441,0 +170736401199,440,0 +170736401247,306,1 +170736401326,437,0 +170736401374,441,0 +170736401424,441,0 +170736401473,441,0 +170736401521,441,0 +170736401569,441,0 +170736401617,441,0 +170736401665,441,0 +170736401715,441,0 +170736401763,441,0 +170736401811,441,0 +170736401859,441,0 +170736401907,441,0 +170736401955,441,0 +170736402004,441,0 +170736402052,441,0 +170736402100,441,0 +170736402148,441,0 +170736402196,441,0 +170736402244,440,0 +170736402291,310,0 +170736402341,296,1 +170736402420,441,0 +170736402468,441,0 +170736402516,441,0 +170736402564,441,0 +170736402612,441,0 +170736402660,441,0 +170736402708,441,0 +170736402757,441,0 +170736402805,441,0 +170736402853,441,0 +170736402901,441,0 +170736402949,441,0 +170736402997,441,0 +170736403045,441,0 +170736403093,441,0 +170736403140,441,0 +170736403188,441,0 +170736403236,441,0 +170736403286,441,0 +170736403333,303,1 +170736403417,435,0 +170736403465,441,0 +170736403513,441,0 +170736403561,441,0 +170736403609,441,0 +170736403658,441,0 +170736403706,441,0 +170736403754,441,0 +170736403804,441,0 +170736403852,441,0 +170736403900,441,0 +170736403949,441,0 +170736403997,441,0 +170736404045,441,0 +170736404093,441,0 +170736404141,441,0 +170736404189,441,0 +170736404239,441,0 +170736404287,441,0 +170736404335,440,0 +170736404382,299,1 +170736404463,435,0 +170736404512,441,0 +170736404562,441,0 +170736404610,441,0 +170736404658,441,0 +170736404706,441,0 +170736404754,441,0 +170736404802,441,0 +170736404850,441,0 +170736404898,441,0 +170736404946,441,0 +170736404995,441,0 +170736405043,441,0 +170736405093,441,0 +170736405141,441,0 +170736405189,441,0 +170736405237,441,0 +170736405286,441,0 +170736405336,441,0 +170736405385,440,0 +170736405433,303,1 +170736405518,439,0 +170736405566,441,0 +170736405614,441,0 +170736405664,441,0 +170736405713,441,0 +170736405761,441,0 +170736405809,441,0 +170736405857,441,0 +170736405905,441,0 +170736405953,441,0 +170736406001,441,0 +170736406051,441,0 +170736406099,441,0 +170736406147,441,0 +170736406195,441,0 +170736406244,441,0 +170736406292,441,0 +170736406340,441,0 +170736406388,441,0 +170736406436,441,0 +170736406486,298,1 +170736406566,436,0 +170736406614,441,0 +170736406662,441,0 +170736406710,441,0 +170736406760,441,0 +170736406808,441,0 +170736406856,441,0 +170736406905,441,0 +170736406955,441,0 +170736407003,441,0 +170736407051,441,0 +170736407099,441,0 +170736407147,441,0 +170736407195,441,0 +170736407242,441,0 +170736407290,441,0 +170736407338,441,0 +170736407388,441,0 +170736407436,441,0 +170736407484,441,0 +170736407533,299,1 +170736407614,435,0 +170736407664,441,0 +170736407712,441,0 +170736407761,441,0 +170736407811,441,0 +170736407860,441,0 +170736407910,441,0 +170736407958,441,0 +170736408007,441,0 +170736408055,441,0 +170736408105,441,0 +170736408153,441,0 +170736408202,441,0 +170736408252,441,0 +170736408300,441,0 +170736408348,441,0 +170736408397,441,0 +170736408445,441,0 +170736408495,441,0 +170736408543,441,0 +170736408591,441,0 +170736408639,441,0 +170736408687,441,0 +170736408735,441,0 +170736408784,441,0 +170736408832,441,0 +170736408880,441,0 +170736408928,441,0 +170736408978,441,0 +170736409026,441,0 +170736409075,292,1 +170736409157,282,1 +170736409233,441,0 +170736409282,441,0 +170736409330,441,0 +170736409378,441,0 +170736409426,441,0 +170736409474,441,0 +170736409522,441,0 +170736409572,441,0 +170736409621,441,0 +170736409671,441,0 +170736409719,441,0 +170736409767,441,0 +170736409815,441,0 +170736409863,441,0 +170736409911,441,0 +170736409960,441,0 +170736410010,441,0 +170736410057,441,0 +170736410105,440,0 +170736410153,296,1 +170736410228,434,0 +170736410277,441,0 +170736410325,441,0 +170736410373,441,0 +170736410421,441,0 +170736410469,441,0 +170736410517,441,0 +170736410567,441,0 +170736410616,441,0 +170736410664,441,0 +170736410712,441,0 +170736410762,441,0 +170736410810,441,0 +170736410857,441,0 +170736410907,441,0 +170736410955,441,0 +170736411003,441,0 +170736411051,441,0 +170736411100,441,0 +170736411150,441,0 +170736411199,294,1 +170736411280,435,0 +170736411328,441,0 +170736411376,441,0 +170736411424,441,0 +170736411474,441,0 +170736411522,441,0 +170736411570,441,0 +170736411619,441,0 +170736411667,441,0 +170736411715,441,0 +170736411763,441,0 +170736411813,441,0 +170736411861,441,0 +170736411909,441,0 +170736411957,441,0 +170736412005,441,0 +170736412053,441,0 +170736412102,441,0 +170736412152,441,0 +170736412200,440,0 +170736412249,299,1 +170736412325,436,0 +170736412375,441,0 +170736412423,441,0 +170736412471,441,0 +170736412519,441,0 +170736412567,441,0 +170736412615,441,0 +170736412663,441,0 +170736412711,441,0 +170736412760,441,0 +170736412808,441,0 +170736412856,441,0 +170736412906,441,0 +170736412955,441,0 +170736413003,441,0 +170736413051,441,0 +170736413101,441,0 +170736413150,441,0 +170736413200,441,0 +170736413248,440,0 +170736413296,300,1 +170736413379,435,0 +170736413427,441,0 +170736413475,441,0 +170736413524,441,0 +170736413572,441,0 +170736413620,441,0 +170736413668,441,0 +170736413716,441,0 +170736413764,441,0 +170736413812,441,0 +170736413862,441,0 +170736413911,441,0 +170736413959,441,0 +170736414007,441,0 +170736414055,441,0 +170736414105,441,0 +170736414154,441,0 +170736414203,441,0 +170736414253,441,0 +170736414301,441,0 +170736414349,299,1 +170736414427,429,0 +170736414475,441,0 +170736414522,441,0 +170736414572,441,0 +170736414621,441,0 +170736414669,441,0 +170736414717,441,0 +170736414767,441,0 +170736414816,441,0 +170736414864,441,0 +170736414914,441,0 +170736414963,441,0 +170736415011,441,0 +170736415061,441,0 +170736415110,441,0 +170736415158,441,0 +170736415206,441,0 +170736415256,441,0 +170736415304,441,0 +170736415352,440,0 +170736415400,294,1 +170736415479,437,0 +170736415528,441,0 +170736415576,441,0 +170736415624,441,0 +170736415672,441,0 +170736415720,441,0 +170736415768,441,0 +170736415817,441,0 +170736415867,441,0 +170736415915,441,0 +170736415963,441,0 +170736416013,441,0 +170736416061,441,0 +170736416108,441,0 +170736416156,441,0 +170736416204,441,0 +170736416252,441,0 +170736416300,441,0 +170736416348,441,0 +170736416396,440,0 +170736416445,300,1 +170736416524,437,0 +170736416572,441,0 +170736416621,441,0 +170736416669,441,0 +170736416717,441,0 +170736416767,441,0 +170736416815,441,0 +170736416863,441,0 +170736416911,441,0 +170736416959,441,0 +170736417006,441,0 +170736417056,441,0 +170736417104,441,0 +170736417152,441,0 +170736417200,441,0 +170736417249,441,0 +170736417297,441,0 +170736417347,441,0 +170736417395,441,0 +170736417444,441,0 +170736417492,300,1 +170736417573,436,0 +170736417621,441,0 +170736417669,441,0 +170736417717,441,0 +170736417765,441,0 +170736417813,441,0 +170736417861,441,0 +170736417909,441,0 +170736417957,441,0 +170736418005,441,0 +170736418053,441,0 +170736418101,441,0 +170736418149,441,0 +170736418197,441,0 +170736418245,441,0 +170736418293,441,0 +170736418342,441,0 +170736418390,441,0 +170736418438,441,0 +170736418486,441,0 +170736418534,305,1 +170736418616,437,0 +170736418663,441,0 +170736418711,441,0 +170736418759,441,0 +170736418807,441,0 +170736418855,441,0 +170736418903,441,0 +170736418953,441,0 +170736419002,441,0 +170736419050,441,0 +170736419100,441,0 +170736419147,441,0 +170736419197,441,0 +170736419247,441,0 +170736419295,441,0 +170736419343,441,0 +170736419391,441,0 +170736419440,441,0 +170736419488,441,0 +170736419538,441,0 +170736419585,299,1 +170736419666,436,0 +170736419714,441,0 +170736419764,441,0 +170736419812,441,0 +170736419861,441,0 +170736419909,441,0 +170736419957,441,0 +170736420005,441,0 +170736420053,441,0 +170736420103,441,0 +170736420152,441,0 +170736420202,441,0 +170736420251,441,0 +170736420301,441,0 +170736420349,441,0 +170736420397,441,0 +170736420446,441,0 +170736420494,441,0 +170736420542,441,0 +170736420590,440,0 +170736420640,301,1 +170736420720,437,0 +170736420770,441,0 +170736420819,441,0 +170736420869,441,0 +170736420917,441,0 +170736420965,441,0 +170736421013,441,0 +170736421061,441,0 +170736421110,441,0 +170736421160,441,0 +170736421208,441,0 +170736421256,441,0 +170736421304,441,0 +170736421353,441,0 +170736421401,441,0 +170736421449,441,0 +170736421499,441,0 +170736421547,441,0 +170736421596,441,0 +170736421646,440,0 +170736421694,297,1 +170736421778,438,0 +170736421828,441,0 +170736421876,441,0 +170736421924,441,0 +170736421972,441,0 +170736422019,441,0 +170736422067,441,0 +170736422117,441,0 +170736422165,441,0 +170736422213,441,0 +170736422261,441,0 +170736422309,441,0 +170736422357,441,0 +170736422406,441,0 +170736422456,441,0 +170736422504,441,0 +170736422552,441,0 +170736422600,441,0 +170736422649,441,0 +170736422697,418,0 +170736422745,304,1 +170736422834,440,0 +170736422882,441,0 +170736422930,441,0 +170736422979,441,0 +170736423027,441,0 +170736423075,441,0 +170736423123,441,0 +170736423173,441,0 +170736423222,441,0 +170736423272,441,0 +170736423320,441,0 +170736423368,441,0 +170736423417,441,0 +170736423465,441,0 +170736423513,441,0 +170736423561,441,0 +170736423611,441,0 +170736423660,441,0 +170736423708,441,0 +170736423756,297,1 +170736423838,275,1 +170736423916,441,0 +170736423965,441,0 +170736424013,441,0 +170736424061,441,0 +170736424109,441,0 +170736424157,441,0 +170736424205,441,0 +170736424253,441,0 +170736424302,441,0 +170736424352,441,0 +170736424401,441,0 +170736424451,441,0 +170736424500,441,0 +170736424548,441,0 +170736424596,441,0 +170736424644,441,0 +170736424692,441,0 +170736424740,441,0 +170736424788,440,0 +170736424838,291,1 +170736424919,438,0 +170736424969,441,0 +170736425017,441,0 +170736425065,441,0 +170736425114,441,0 +170736425162,441,0 +170736425212,441,0 +170736425260,441,0 +170736425308,441,0 +170736425356,441,0 +170736425405,441,0 +170736425453,441,0 +170736425501,441,0 +170736425549,441,0 +170736425596,441,0 +170736425644,441,0 +170736425692,441,0 +170736425740,441,0 +170736425788,441,0 +170736425836,440,0 +170736425884,297,1 +170736425965,438,0 +170736426013,441,0 +170736426061,441,0 +170736426110,441,0 +170736426158,441,0 +170736426208,441,0 +170736426257,441,0 +170736426305,441,0 +170736426353,441,0 +170736426401,441,0 +170736426451,441,0 +170736426500,441,0 +170736426548,441,0 +170736426598,441,0 +170736426646,441,0 +170736426694,441,0 +170736426743,441,0 +170736426791,441,0 +170736426841,441,0 +170736426890,287,1 +170736426975,294,1 +170736427053,441,0 +170736427101,441,0 +170736427149,441,0 +170736427197,441,0 +170736427245,441,0 +170736427293,441,0 +170736427341,441,0 +170736427390,441,0 +170736427438,441,0 +170736427486,441,0 +170736427534,441,0 +170736427582,441,0 +170736427632,441,0 +170736427681,441,0 +170736427729,441,0 +170736427778,441,0 +170736427828,441,0 +170736427876,441,0 +170736427925,441,0 +170736427973,300,1 +170736428052,436,0 +170736428100,441,0 +170736428149,441,0 +170736428197,441,0 +170736428245,441,0 +170736428294,441,0 +170736428342,441,0 +170736428390,441,0 +170736428438,441,0 +170736428486,441,0 +170736428536,441,0 +170736428584,441,0 +170736428632,441,0 +170736428680,441,0 +170736428729,441,0 +170736428777,441,0 +170736428825,441,0 +170736428875,441,0 +170736428922,441,0 +170736428970,441,0 +170736429020,287,1 +170736429102,435,0 +170736429150,441,0 +170736429198,441,0 +170736429246,441,0 +170736429294,441,0 +170736429342,441,0 +170736429390,441,0 +170736429439,441,0 +170736429487,441,0 +170736429535,441,0 +170736429585,441,0 +170736429632,441,0 +170736429680,441,0 +170736429728,441,0 +170736429778,441,0 +170736429826,441,0 +170736429873,441,0 +170736429923,441,0 +170736429971,441,0 +170736430019,441,0 +170736430066,306,1 +170736430147,429,0 +170736430194,441,0 +170736430244,441,0 +170736430292,441,0 +170736430341,441,0 +170736430389,441,0 +170736430437,441,0 +170736430487,441,0 +170736430535,441,0 +170736430584,441,0 +170736430632,441,0 +170736430680,441,0 +170736430728,441,0 +170736430776,441,0 +170736430826,441,0 +170736430874,441,0 +170736430922,441,0 +170736430971,441,0 +170736431019,441,0 +170736431067,441,0 +170736431115,286,1 +170736431198,436,0 +170736431246,441,0 +170736431293,441,0 +170736431343,441,0 +170736431393,441,0 +170736431440,441,0 +170736431488,441,0 +170736431536,441,0 +170736431584,441,0 +170736431632,441,0 +170736431680,441,0 +170736431730,441,0 +170736431777,441,0 +170736431825,441,0 +170736431873,441,0 +170736431921,441,0 +170736431969,441,0 +170736432017,441,0 +170736432065,441,0 +170736432113,441,0 +170736432161,300,1 +170736432239,278,1 +170736432317,441,0 +170736432365,441,0 +170736432414,441,0 +170736432462,441,0 +170736432510,441,0 +170736432558,441,0 +170736432606,441,0 +170736432654,441,0 +170736432702,441,0 +170736432749,441,0 +170736432797,441,0 +170736432847,441,0 +170736432895,441,0 +170736432944,441,0 +170736432992,441,0 +170736433040,441,0 +170736433088,441,0 +170736433137,441,0 +170736433185,385,0 +170736433233,294,1 +170736433312,439,0 +170736433360,441,0 +170736433409,441,0 +170736433457,441,0 +170736433505,441,0 +170736433553,441,0 +170736433601,441,0 +170736433649,441,0 +170736433697,441,0 +170736433745,441,0 +170736433794,441,0 +170736433844,441,0 +170736433892,441,0 +170736433940,441,0 +170736433988,441,0 +170736434035,441,0 +170736434083,441,0 +170736434131,441,0 +170736434179,441,0 +170736434227,425,0 +170736434275,297,1 +170736434356,439,0 +170736434405,441,0 +170736434453,441,0 +170736434501,441,0 +170736434549,441,0 +170736434597,441,0 +170736434645,441,0 +170736434693,441,0 +170736434741,441,0 +170736434789,441,0 +170736434837,441,0 +170736434887,441,0 +170736434936,441,0 +170736434984,441,0 +170736435032,441,0 +170736435082,441,0 +170736435130,441,0 +170736435179,441,0 +170736435227,441,0 +170736435275,432,0 +170736435323,294,1 +170736435405,439,0 +170736435455,441,0 +170736435503,441,0 +170736435551,441,0 +170736435599,441,0 +170736435647,441,0 +170736435695,441,0 +170736435743,441,0 +170736435791,441,0 +170736435839,441,0 +170736435887,441,0 +170736435935,441,0 +170736435983,441,0 +170736436031,441,0 +170736436079,441,0 +170736436128,441,0 +170736436178,441,0 +170736436226,441,0 +170736436275,441,0 +170736436325,440,0 +170736436374,295,1 +170736436452,436,0 +170736436500,441,0 +170736436549,441,0 +170736436597,441,0 +170736436645,441,0 +170736436693,441,0 +170736436741,441,0 +170736436789,441,0 +170736436837,441,0 +170736436885,441,0 +170736436935,441,0 +170736436983,441,0 +170736437031,441,0 +170736437079,441,0 +170736437127,441,0 +170736437175,441,0 +170736437223,441,0 +170736437272,441,0 +170736437320,441,0 +170736437368,440,0 +170736437416,302,1 +170736437501,438,0 +170736437548,441,0 +170736437598,441,0 +170736437646,441,0 +170736437694,441,0 +170736437742,441,0 +170736437791,441,0 +170736437839,441,0 +170736437887,441,0 +170736437937,441,0 +170736437986,441,0 +170736438034,441,0 +170736438082,441,0 +170736438130,441,0 +170736438178,441,0 +170736438226,441,0 +170736438276,441,0 +170736438325,441,0 +170736438373,441,0 +170736438421,438,0 +170736438471,293,1 +170736438550,439,0 +170736438598,441,0 +170736438646,441,0 +170736438694,441,0 +170736438744,441,0 +170736438792,441,0 +170736438840,441,0 +170736438888,441,0 +170736438936,441,0 +170736438985,441,0 +170736439035,441,0 +170736439084,441,0 +170736439132,441,0 +170736439182,441,0 +170736439231,441,0 +170736439281,441,0 +170736439330,441,0 +170736439378,441,0 +170736439426,441,0 +170736439474,439,0 +170736439522,294,1 +170736439602,438,0 +170736439650,441,0 +170736439698,441,0 +170736439746,441,0 +170736439794,441,0 +170736439842,441,0 +170736439890,441,0 +170736439938,441,0 +170736439987,441,0 +170736440035,441,0 +170736440083,441,0 +170736440132,441,0 +170736440182,441,0 +170736440230,441,0 +170736440278,441,0 +170736440328,441,0 +170736440377,441,0 +170736440427,441,0 +170736440475,441,0 +170736440523,368,0 +170736440571,295,1 +170736440644,438,0 +170736440694,441,0 +170736440742,441,0 +170736440791,441,0 +170736440841,441,0 +170736440889,441,0 +170736440938,441,0 +170736440988,441,0 +170736441037,441,0 +170736441085,441,0 +170736441133,441,0 +170736441181,441,0 +170736441229,441,0 +170736441277,441,0 +170736441325,441,0 +170736441373,441,0 +170736441423,441,0 +170736441471,441,0 +170736441520,441,0 +170736441568,294,1 +170736441650,275,1 +170736441728,441,0 +170736441776,441,0 +170736441824,441,0 +170736441872,441,0 +170736441920,441,0 +170736441969,441,0 +170736442017,441,0 +170736442066,441,0 +170736442114,441,0 +170736442162,441,0 +170736442212,441,0 +170736442260,441,0 +170736442308,441,0 +170736442357,441,0 +170736442405,441,0 +170736442453,441,0 +170736442501,441,0 +170736442549,441,0 +170736442597,441,0 +170736442645,297,1 +170736442728,430,0 +170736442776,441,0 +170736442824,441,0 +170736442872,441,0 +170736442920,441,0 +170736442967,441,0 +170736443015,441,0 +170736443063,441,0 +170736443111,441,0 +170736443159,441,0 +170736443207,441,0 +170736443256,441,0 +170736443306,441,0 +170736443354,441,0 +170736443403,441,0 +170736443453,441,0 +170736443502,441,0 +170736443552,441,0 +170736443600,441,0 +170736443648,441,0 +170736443696,300,1 +170736443781,434,0 +170736443830,441,0 +170736443878,441,0 +170736443926,441,0 +170736443976,441,0 +170736444025,441,0 +170736444075,441,0 +170736444123,441,0 +170736444172,441,0 +170736444220,441,0 +170736444268,441,0 +170736444316,441,0 +170736444364,441,0 +170736444414,441,0 +170736444462,441,0 +170736444511,441,0 +170736444559,441,0 +170736444608,441,0 +170736444658,441,0 +170736444706,441,0 +170736444754,305,1 +170736444831,239,0 +170736444879,441,0 +170736444927,441,0 +170736444975,441,0 +170736445024,441,0 +170736445074,441,0 +170736445122,441,0 +170736445171,441,0 +170736445219,441,0 +170736445267,441,0 +170736445317,441,0 +170736445365,441,0 +170736445412,441,0 +170736445460,441,0 +170736445508,441,0 +170736445556,441,0 +170736445606,441,0 +170736445654,441,0 +170736445702,441,0 +170736445750,441,0 +170736445798,281,1 +170736445877,436,0 +170736445926,441,0 +170736445974,441,0 +170736446024,441,0 +170736446072,441,0 +170736446120,441,0 +170736446169,441,0 +170736446217,441,0 +170736446267,441,0 +170736446315,441,0 +170736446363,441,0 +170736446411,441,0 +170736446458,441,0 +170736446508,441,0 +170736446556,441,0 +170736446605,441,0 +170736446653,441,0 +170736446701,441,0 +170736446749,441,0 +170736446797,440,0 +170736446847,295,1 +170736446928,436,0 +170736446976,441,0 +170736447024,441,0 +170736447072,441,0 +170736447120,441,0 +170736447168,441,0 +170736447218,441,0 +170736447266,441,0 +170736447315,441,0 +170736447363,441,0 +170736447411,441,0 +170736447460,441,0 +170736447510,441,0 +170736447558,441,0 +170736447606,441,0 +170736447654,441,0 +170736447702,441,0 +170736447750,441,0 +170736447798,441,0 +170736447846,440,0 +170736447894,270,1 +170736447975,438,0 +170736448024,441,0 +170736448072,441,0 +170736448122,441,0 +170736448171,441,0 +170736448219,441,0 +170736448267,441,0 +170736448315,441,0 +170736448363,441,0 +170736448412,441,0 +170736448460,441,0 +170736448508,441,0 +170736448556,441,0 +170736448604,441,0 +170736448652,441,0 +170736448702,441,0 +170736448750,441,0 +170736448799,441,0 +170736448849,441,0 +170736448897,439,0 +170736448945,294,1 +170736449021,437,0 +170736449069,441,0 +170736449117,441,0 +170736449165,441,0 +170736449213,441,0 +170736449261,441,0 +170736449309,441,0 +170736449357,441,0 +170736449407,441,0 +170736449456,441,0 +170736449506,441,0 +170736449554,441,0 +170736449602,441,0 +170736449649,441,0 +170736449697,441,0 +170736449745,441,0 +170736449793,441,0 +170736449841,441,0 +170736449889,441,0 +170736449937,440,0 +170736449985,291,1 +170736450064,436,0 +170736450112,441,0 +170736450159,441,0 +170736450209,441,0 +170736450257,441,0 +170736450305,441,0 +170736450353,441,0 +170736450402,441,0 +170736450450,441,0 +170736450498,441,0 +170736450547,441,0 +170736450595,441,0 +170736450643,441,0 +170736450691,441,0 +170736450739,441,0 +170736450787,441,0 +170736450834,441,0 +170736450882,441,0 +170736450930,441,0 +170736450980,441,0 +170736451028,277,1 +170736451108,243,0 +170736451156,441,0 +170736451203,441,0 +170736451251,441,0 +170736451299,441,0 +170736451347,441,0 +170736451395,441,0 +170736451443,441,0 +170736451491,441,0 +170736451540,441,0 +170736451590,441,0 +170736451638,441,0 +170736451686,441,0 +170736451734,441,0 +170736451783,441,0 +170736451831,441,0 +170736451881,441,0 +170736451930,441,0 +170736451978,441,0 +170736452026,441,0 +170736452074,295,1 +170736452155,241,0 +170736452203,441,0 +170736452251,441,0 +170736452298,441,0 +170736452346,441,0 +170736452396,441,0 +170736452445,441,0 +170736452493,441,0 +170736452541,441,0 +170736452589,441,0 +170736452637,441,0 +170736452686,441,0 +170736452734,441,0 +170736452782,441,0 +170736452832,441,0 +170736452880,441,0 +170736452928,441,0 +170736452975,441,0 +170736453023,441,0 +170736453071,441,0 +170736453119,295,1 +170736453198,266,0 +170736453246,440,0 +170736453294,441,0 +170736453342,441,0 +170736453389,441,0 +170736453437,441,0 +170736453485,441,0 +170736453535,441,0 +170736453584,441,0 +170736453632,441,0 +170736453680,441,0 +170736453728,441,0 +170736453776,441,0 +170736453824,441,0 +170736453871,441,0 +170736453919,441,0 +170736453967,441,0 +170736454015,441,0 +170736454063,441,0 +170736454111,441,0 +170736454159,296,1 +170736454237,296,1 +170736454312,441,0 +170736454360,441,0 +170736454408,441,0 +170736454456,441,0 +170736454504,441,0 +170736454554,441,0 +170736454602,441,0 +170736454649,441,0 +170736454697,441,0 +170736454747,441,0 +170736454797,441,0 +170736454845,441,0 +170736454893,441,0 +170736454940,441,0 +170736454990,441,0 +170736455038,441,0 +170736455086,441,0 +170736455134,441,0 +170736455182,440,0 +170736455230,296,1 +170736455310,435,0 +170736455359,441,0 +170736455409,441,0 +170736455457,441,0 +170736455505,441,0 +170736455553,441,0 +170736455601,441,0 +170736455650,441,0 +170736455698,441,0 +170736455747,441,0 +170736455795,441,0 +170736455843,441,0 +170736455891,441,0 +170736455940,441,0 +170736455989,441,0 +170736456039,441,0 +170736456087,441,0 +170736456135,441,0 +170736456184,441,0 +170736456232,440,0 +170736456280,292,1 +170736456365,438,0 +170736456413,441,0 +170736456461,441,0 +170736456511,441,0 +170736456560,441,0 +170736456608,441,0 +170736456658,441,0 +170736456706,441,0 +170736456754,441,0 +170736456802,441,0 +170736456851,441,0 +170736456899,441,0 +170736456949,441,0 +170736456996,441,0 +170736457044,441,0 +170736457092,441,0 +170736457140,441,0 +170736457188,441,0 +170736457238,441,0 +170736457286,440,0 +170736457334,295,1 +170736457417,437,0 +170736457465,441,0 +170736457513,441,0 +170736457561,441,0 +170736457610,441,0 +170736457660,441,0 +170736457710,441,0 +170736457757,441,0 +170736457805,441,0 +170736457853,441,0 +170736457901,441,0 +170736457951,441,0 +170736457999,441,0 +170736458047,441,0 +170736458096,441,0 +170736458144,441,0 +170736458192,441,0 +170736458240,441,0 +170736458288,441,0 +170736458336,440,0 +170736458384,296,1 +170736458461,435,0 +170736458509,441,0 +170736458557,441,0 +170736458605,441,0 +170736458653,441,0 +170736458701,441,0 +170736458748,441,0 +170736458796,441,0 +170736458844,441,0 +170736458894,441,0 +170736458943,441,0 +170736458991,441,0 +170736459039,441,0 +170736459087,441,0 +170736459135,441,0 +170736459183,441,0 +170736459231,441,0 +170736459279,441,0 +170736459327,441,0 +170736459375,441,0 +170736459423,287,1 +170736459506,435,0 +170736459554,441,0 +170736459602,441,0 +170736459650,441,0 +170736459699,441,0 +170736459749,441,0 +170736459797,441,0 +170736459845,441,0 +170736459893,441,0 +170736459941,441,0 +170736459990,441,0 +170736460040,441,0 +170736460087,441,0 +170736460137,441,0 +170736460186,441,0 +170736460236,441,0 +170736460284,441,0 +170736460332,441,0 +170736460380,441,0 +170736460427,441,0 +170736460475,291,1 +170736460555,436,0 +170736460603,441,0 +170736460651,441,0 +170736460699,441,0 +170736460747,441,0 +170736460795,441,0 +170736460844,441,0 +170736460892,441,0 +170736460940,441,0 +170736460988,441,0 +170736461036,441,0 +170736461084,441,0 +170736461131,441,0 +170736461179,441,0 +170736461227,441,0 +170736461275,441,0 +170736461323,441,0 +170736461371,441,0 +170736461419,441,0 +170736461469,441,0 +170736461517,299,1 +170736461596,247,0 +170736461644,441,0 +170736461693,441,0 +170736461741,441,0 +170736461791,441,0 +170736461839,441,0 +170736461887,441,0 +170736461935,441,0 +170736461983,441,0 +170736462032,441,0 +170736462080,441,0 +170736462128,441,0 +170736462176,441,0 +170736462224,441,0 +170736462271,441,0 +170736462319,441,0 +170736462369,441,0 +170736462417,441,0 +170736462465,441,0 +170736462513,441,0 +170736462560,295,1 +170736462640,290,1 +170736462721,441,0 +170736462769,441,0 +170736462817,441,0 +170736462865,441,0 +170736462913,441,0 +170736462961,441,0 +170736463008,441,0 +170736463056,441,0 +170736463104,441,0 +170736463152,441,0 +170736463200,441,0 +170736463248,441,0 +170736463296,441,0 +170736463346,441,0 +170736463395,441,0 +170736463443,441,0 +170736463493,441,0 +170736463541,441,0 +170736463589,437,0 +170736463637,308,1 +170736463716,438,0 +170736463764,441,0 +170736463812,441,0 +170736463860,441,0 +170736463908,441,0 +170736463958,441,0 +170736464006,441,0 +170736464054,441,0 +170736464102,441,0 +170736464151,441,0 +170736464201,441,0 +170736464249,441,0 +170736464298,441,0 +170736464346,441,0 +170736464396,441,0 +170736464444,441,0 +170736464493,441,0 +170736464541,441,0 +170736464589,441,0 +170736464639,351,0 +170736464687,292,1 +170736464770,439,0 +170736464818,441,0 +170736464866,441,0 +170736464914,441,0 +170736464962,441,0 +170736465010,441,0 +170736465059,441,0 +170736465107,441,0 +170736465157,441,0 +170736465205,441,0 +170736465253,441,0 +170736465301,441,0 +170736465349,441,0 +170736465397,441,0 +170736465446,441,0 +170736465494,441,0 +170736465542,441,0 +170736465590,441,0 +170736465638,441,0 +170736465686,440,0 +170736465734,298,1 +170736465812,436,0 +170736465860,441,0 +170736465908,441,0 +170736465956,441,0 +170736466004,441,0 +170736466052,441,0 +170736466100,441,0 +170736466148,441,0 +170736466198,441,0 +170736466246,441,0 +170736466294,441,0 +170736466341,441,0 +170736466389,441,0 +170736466438,441,0 +170736466485,441,0 +170736466533,441,0 +170736466581,441,0 +170736466631,441,0 +170736466679,441,0 +170736466727,441,0 +170736466776,298,1 +170736466860,436,0 +170736466909,441,0 +170736466957,441,0 +170736467005,441,0 +170736467053,441,0 +170736467101,441,0 +170736467149,441,0 +170736467197,441,0 +170736467247,441,0 +170736467296,441,0 +170736467346,441,0 +170736467394,441,0 +170736467442,441,0 +170736467491,441,0 +170736467539,441,0 +170736467589,441,0 +170736467637,441,0 +170736467685,441,0 +170736467733,441,0 +170736467781,440,0 +170736467829,289,1 +170736467909,438,0 +170736467957,441,0 +170736468007,441,0 +170736468054,441,0 +170736468102,441,0 +170736468150,441,0 +170736468200,441,0 +170736468248,441,0 +170736468297,441,0 +170736468347,441,0 +170736468395,441,0 +170736468443,441,0 +170736468490,441,0 +170736468538,441,0 +170736468586,441,0 +170736468636,441,0 +170736468685,441,0 +170736468733,441,0 +170736468781,441,0 +170736468829,440,0 +170736468878,301,1 +170736468958,437,0 +170736469005,441,0 +170736469053,441,0 +170736469101,441,0 +170736469151,441,0 +170736469200,441,0 +170736469248,441,0 +170736469296,441,0 +170736469344,441,0 +170736469392,441,0 +170736469440,441,0 +170736469488,441,0 +170736469536,441,0 +170736469583,441,0 +170736469631,441,0 +170736469679,441,0 +170736469727,441,0 +170736469775,441,0 +170736469823,441,0 +170736469871,441,0 +170736469921,295,1 +170736469997,431,0 +170736470046,441,0 +170736470094,441,0 +170736470142,441,0 +170736470190,441,0 +170736470240,441,0 +170736470289,441,0 +170736470337,441,0 +170736470385,441,0 +170736470433,441,0 +170736470481,441,0 +170736470529,441,0 +170736470577,441,0 +170736470625,441,0 +170736470673,441,0 +170736470722,441,0 +170736470770,441,0 +170736470818,441,0 +170736470866,441,0 +170736470916,441,0 +170736470964,303,1 +170736471045,435,0 +170736471093,441,0 +170736471141,441,0 +170736471189,441,0 +170736471237,441,0 +170736471285,441,0 +170736471333,441,0 +170736471381,441,0 +170736471429,441,0 +170736471477,441,0 +170736471525,441,0 +170736471573,441,0 +170736471621,441,0 +170736471669,441,0 +170736471717,441,0 +170736471765,441,0 +170736471813,441,0 +170736471861,441,0 +170736471910,441,0 +170736471958,441,0 +170736472006,284,1 +170736472086,236,0 +170736472134,441,0 +170736472182,441,0 +170736472230,441,0 +170736472278,441,0 +170736472326,441,0 +170736472375,441,0 +170736472425,441,0 +170736472473,441,0 +170736472521,441,0 +170736472570,441,0 +170736472618,441,0 +170736472668,441,0 +170736472716,441,0 +170736472765,441,0 +170736472813,441,0 +170736472863,441,0 +170736472911,441,0 +170736472959,441,0 +170736473007,441,0 +170736473056,289,1 +170736473134,288,1 +170736473211,441,0 +170736473261,441,0 +170736473309,441,0 +170736473357,441,0 +170736473405,441,0 +170736473453,441,0 +170736473501,441,0 +170736473550,441,0 +170736473598,441,0 +170736473648,441,0 +170736473696,441,0 +170736473744,441,0 +170736473793,441,0 +170736473841,441,0 +170736473889,441,0 +170736473939,441,0 +170736473986,441,0 +170736474034,441,0 +170736474082,438,0 +170736474132,300,1 +170736474218,439,0 +170736474266,441,0 +170736474314,441,0 +170736474362,441,0 +170736474412,441,0 +170736474460,441,0 +170736474508,441,0 +170736474556,441,0 +170736474604,441,0 +170736474653,441,0 +170736474701,441,0 +170736474749,441,0 +170736474797,441,0 +170736474845,441,0 +170736474893,441,0 +170736474942,441,0 +170736474990,441,0 +170736475040,441,0 +170736475089,441,0 +170736475139,287,1 +170736475215,283,1 +170736475293,441,0 +170736475341,441,0 +170736475390,441,0 +170736475438,441,0 +170736475486,441,0 +170736475534,441,0 +170736475584,441,0 +170736475633,441,0 +170736475681,441,0 +170736475729,441,0 +170736475777,441,0 +170736475825,441,0 +170736475873,441,0 +170736475921,441,0 +170736475969,441,0 +170736476017,441,0 +170736476066,441,0 +170736476114,441,0 +170736476164,441,0 +170736476212,302,1 +170736476291,390,0 +170736476341,441,0 +170736476389,441,0 +170736476437,441,0 +170736476485,441,0 +170736476535,441,0 +170736476584,441,0 +170736476634,441,0 +170736476682,441,0 +170736476731,441,0 +170736476781,441,0 +170736476829,441,0 +170736476878,441,0 +170736476926,441,0 +170736476974,441,0 +170736477022,441,0 +170736477070,441,0 +170736477118,441,0 +170736477166,441,0 +170736477216,441,0 +170736477265,300,1 +170736477348,437,0 +170736477396,441,0 +170736477444,441,0 +170736477491,441,0 +170736477541,441,0 +170736477589,441,0 +170736477638,441,0 +170736477688,441,0 +170736477736,441,0 +170736477784,441,0 +170736477832,441,0 +170736477881,441,0 +170736477929,441,0 +170736477977,441,0 +170736478027,441,0 +170736478075,441,0 +170736478124,441,0 +170736478174,441,0 +170736478222,441,0 +170736478271,439,0 +170736478321,292,1 +170736478397,438,0 +170736478445,441,0 +170736478494,441,0 +170736478544,441,0 +170736478594,441,0 +170736478642,441,0 +170736478689,441,0 +170736478737,441,0 +170736478787,441,0 +170736478835,441,0 +170736478883,441,0 +170736478932,441,0 +170736478980,441,0 +170736479028,441,0 +170736479078,441,0 +170736479126,441,0 +170736479174,441,0 +170736479222,441,0 +170736479271,441,0 +170736479319,441,0 +170736479367,280,1 +170736479446,437,0 +170736479494,441,0 +170736479542,441,0 +170736479590,441,0 +170736479638,441,0 +170736479686,441,0 +170736479734,441,0 +170736479782,441,0 +170736479830,441,0 +170736479878,441,0 +170736479928,441,0 +170736479977,441,0 +170736480025,441,0 diff --git a/laser_value/0208-14.csv b/laser_value/0208-14.csv new file mode 100644 index 0000000..dc14a29 --- /dev/null +++ b/laser_value/0208-14.csv @@ -0,0 +1,7209 @@ +timestamp,laser_value,event +170736480074,441,0 +170736480123,441,0 +170736480173,441,0 +170736480222,441,0 +170736480270,441,0 +170736480318,441,0 +170736480366,441,0 +170736480414,297,1 +170736480497,390,0 +170736480547,441,0 +170736480595,441,0 +170736480643,441,0 +170736480691,441,0 +170736480739,441,0 +170736480787,441,0 +170736480835,441,0 +170736480882,441,0 +170736480930,441,0 +170736480978,441,0 +170736481026,441,0 +170736481074,441,0 +170736481122,441,0 +170736481170,441,0 +170736481218,441,0 +170736481266,441,0 +170736481316,441,0 +170736481364,441,0 +170736481412,440,0 +170736481461,303,1 +170736481538,433,0 +170736481586,441,0 +170736481634,441,0 +170736481682,441,0 +170736481730,441,0 +170736481778,441,0 +170736481827,441,0 +170736481877,441,0 +170736481925,441,0 +170736481974,441,0 +170736482022,441,0 +170736482070,441,0 +170736482118,441,0 +170736482166,441,0 +170736482214,441,0 +170736482262,441,0 +170736482311,441,0 +170736482359,441,0 +170736482407,441,0 +170736482455,441,0 +170736482503,292,1 +170736482581,271,1 +170736482659,441,0 +170736482708,441,0 +170736482758,441,0 +170736482806,441,0 +170736482854,441,0 +170736482903,441,0 +170736482951,441,0 +170736482999,441,0 +170736483047,441,0 +170736483097,441,0 +170736483146,441,0 +170736483196,441,0 +170736483244,441,0 +170736483292,441,0 +170736483341,441,0 +170736483389,441,0 +170736483439,441,0 +170736483487,441,0 +170736483535,438,0 +170736483583,285,1 +170736483664,438,0 +170736483712,441,0 +170736483760,441,0 +170736483808,441,0 +170736483856,441,0 +170736483905,441,0 +170736483953,441,0 +170736484001,441,0 +170736484049,441,0 +170736484099,441,0 +170736484147,441,0 +170736484196,441,0 +170736484244,441,0 +170736484294,441,0 +170736484343,441,0 +170736484391,441,0 +170736484439,441,0 +170736484487,441,0 +170736484535,441,0 +170736484583,289,1 +170736484664,274,1 +170736484743,441,0 +170736484793,441,0 +170736484841,441,0 +170736484890,441,0 +170736484938,441,0 +170736484988,441,0 +170736485037,441,0 +170736485085,441,0 +170736485135,441,0 +170736485183,441,0 +170736485231,441,0 +170736485278,441,0 +170736485326,441,0 +170736485374,441,0 +170736485422,441,0 +170736485472,441,0 +170736485521,441,0 +170736485571,441,0 +170736485619,439,0 +170736485668,299,1 +170736485746,438,0 +170736485796,441,0 +170736485845,441,0 +170736485893,441,0 +170736485941,441,0 +170736485989,441,0 +170736486039,441,0 +170736486087,441,0 +170736486135,441,0 +170736486183,441,0 +170736486230,441,0 +170736486278,441,0 +170736486326,441,0 +170736486374,441,0 +170736486422,441,0 +170736486470,441,0 +170736486518,441,0 +170736486566,441,0 +170736486614,441,0 +170736486663,441,0 +170736486713,297,1 +170736486791,436,0 +170736486839,441,0 +170736486887,441,0 +170736486935,441,0 +170736486984,441,0 +170736487032,441,0 +170736487080,441,0 +170736487128,441,0 +170736487176,441,0 +170736487224,441,0 +170736487272,441,0 +170736487320,441,0 +170736487368,441,0 +170736487416,441,0 +170736487464,441,0 +170736487512,441,0 +170736487559,441,0 +170736487607,441,0 +170736487657,441,0 +170736487705,441,0 +170736487753,294,1 +170736487843,434,0 +170736487890,441,0 +170736487938,441,0 +170736487986,441,0 +170736488034,441,0 +170736488082,441,0 +170736488132,441,0 +170736488180,441,0 +170736488229,441,0 +170736488277,441,0 +170736488325,441,0 +170736488373,441,0 +170736488421,441,0 +170736488469,441,0 +170736488517,441,0 +170736488566,441,0 +170736488614,441,0 +170736488662,441,0 +170736488710,441,0 +170736488760,440,0 +170736488809,292,1 +170736488890,437,0 +170736488939,441,0 +170736488987,441,0 +170736489035,441,0 +170736489085,441,0 +170736489134,441,0 +170736489182,441,0 +170736489230,441,0 +170736489278,441,0 +170736489328,441,0 +170736489376,441,0 +170736489424,441,0 +170736489473,441,0 +170736489521,441,0 +170736489569,441,0 +170736489617,441,0 +170736489665,441,0 +170736489713,441,0 +170736489763,441,0 +170736489811,440,0 +170736489859,295,1 +170736489941,436,0 +170736489991,441,0 +170736490039,441,0 +170736490087,441,0 +170736490136,441,0 +170736490186,441,0 +170736490234,441,0 +170736490281,441,0 +170736490329,441,0 +170736490377,441,0 +170736490425,441,0 +170736490475,441,0 +170736490523,441,0 +170736490570,441,0 +170736490618,441,0 +170736490666,441,0 +170736490714,441,0 +170736490762,441,0 +170736490810,441,0 +170736490860,441,0 +170736490909,283,1 +170736490989,436,0 +170736491038,441,0 +170736491088,441,0 +170736491136,441,0 +170736491184,441,0 +170736491232,441,0 +170736491281,441,0 +170736491329,441,0 +170736491379,441,0 +170736491427,441,0 +170736491475,441,0 +170736491524,441,0 +170736491572,441,0 +170736491622,441,0 +170736491670,441,0 +170736491718,441,0 +170736491766,441,0 +170736491815,441,0 +170736491863,441,0 +170736491913,440,0 +170736491961,299,1 +170736492038,438,0 +170736492086,441,0 +170736492134,441,0 +170736492182,441,0 +170736492230,441,0 +170736492278,441,0 +170736492328,441,0 +170736492376,441,0 +170736492423,441,0 +170736492471,441,0 +170736492519,441,0 +170736492567,441,0 +170736492615,441,0 +170736492663,441,0 +170736492711,441,0 +170736492759,441,0 +170736492807,441,0 +170736492855,441,0 +170736492902,441,0 +170736492950,440,0 +170736493000,297,1 +170736493079,437,0 +170736493129,441,0 +170736493178,441,0 +170736493226,441,0 +170736493276,441,0 +170736493324,441,0 +170736493371,441,0 +170736493419,441,0 +170736493467,441,0 +170736493515,441,0 +170736493563,441,0 +170736493611,441,0 +170736493660,441,0 +170736493708,441,0 +170736493756,441,0 +170736493805,441,0 +170736493853,441,0 +170736493901,441,0 +170736493949,441,0 +170736493997,441,0 +170736494045,288,1 +170736494122,261,0 +170736494170,441,0 +170736494218,441,0 +170736494266,441,0 +170736494315,441,0 +170736494363,441,0 +170736494411,441,0 +170736494459,441,0 +170736494507,441,0 +170736494555,441,0 +170736494603,441,0 +170736494651,441,0 +170736494699,441,0 +170736494747,441,0 +170736494795,441,0 +170736494843,441,0 +170736494890,441,0 +170736494939,441,0 +170736494986,441,0 +170736495034,441,0 +170736495084,310,0 +170736495132,300,1 +170736495212,441,0 +170736495262,441,0 +170736495309,441,0 +170736495359,441,0 +170736495409,441,0 +170736495457,441,0 +170736495506,441,0 +170736495554,441,0 +170736495602,441,0 +170736495650,441,0 +170736495698,441,0 +170736495747,441,0 +170736495795,441,0 +170736495843,441,0 +170736495893,441,0 +170736495941,441,0 +170736495989,441,0 +170736496036,441,0 +170736496084,441,0 +170736496132,312,0 +170736496180,298,1 +170736496265,441,0 +170736496312,441,0 +170736496360,441,0 +170736496408,441,0 +170736496458,441,0 +170736496506,441,0 +170736496553,441,0 +170736496601,441,0 +170736496649,441,0 +170736496697,441,0 +170736496745,441,0 +170736496793,441,0 +170736496841,441,0 +170736496889,441,0 +170736496936,441,0 +170736496984,441,0 +170736497032,441,0 +170736497080,441,0 +170736497128,441,0 +170736497176,303,1 +170736497258,277,1 +170736497335,441,0 +170736497384,441,0 +170736497432,441,0 +170736497480,441,0 +170736497528,441,0 +170736497576,441,0 +170736497624,441,0 +170736497672,441,0 +170736497720,441,0 +170736497768,441,0 +170736497817,441,0 +170736497865,441,0 +170736497913,441,0 +170736497961,441,0 +170736498008,441,0 +170736498056,441,0 +170736498104,441,0 +170736498152,441,0 +170736498200,441,0 +170736498248,301,1 +170736498332,437,0 +170736498381,441,0 +170736498429,441,0 +170736498477,441,0 +170736498525,441,0 +170736498573,441,0 +170736498622,441,0 +170736498672,441,0 +170736498720,441,0 +170736498768,441,0 +170736498817,441,0 +170736498865,441,0 +170736498915,441,0 +170736498963,441,0 +170736499011,441,0 +170736499059,441,0 +170736499108,441,0 +170736499158,441,0 +170736499206,441,0 +170736499254,441,0 +170736499302,304,1 +170736499382,439,0 +170736499430,441,0 +170736499479,441,0 +170736499527,441,0 +170736499575,441,0 +170736499623,441,0 +170736499671,441,0 +170736499721,441,0 +170736499769,441,0 +170736499818,441,0 +170736499866,441,0 +170736499914,441,0 +170736499962,441,0 +170736500012,441,0 +170736500061,441,0 +170736500109,441,0 +170736500157,441,0 +170736500207,441,0 +170736500255,441,0 +170736500303,378,0 +170736500351,307,1 +170736500432,439,0 +170736500482,441,0 +170736500531,441,0 +170736500579,441,0 +170736500627,441,0 +170736500675,441,0 +170736500725,441,0 +170736500773,441,0 +170736500822,441,0 +170736500870,441,0 +170736500918,441,0 +170736500966,441,0 +170736501016,441,0 +170736501064,441,0 +170736501111,441,0 +170736501161,441,0 +170736501209,441,0 +170736501258,441,0 +170736501306,441,0 +170736501356,329,0 +170736501404,293,1 +170736501486,440,0 +170736501534,441,0 +170736501582,441,0 +170736501630,441,0 +170736501678,441,0 +170736501725,441,0 +170736501775,441,0 +170736501823,441,0 +170736501872,441,0 +170736501920,441,0 +170736501970,441,0 +170736502019,441,0 +170736502069,441,0 +170736502118,441,0 +170736502166,441,0 +170736502214,441,0 +170736502262,441,0 +170736502310,441,0 +170736502360,441,0 +170736502408,433,0 +170736502456,296,1 +170736502535,438,0 +170736502583,441,0 +170736502632,441,0 +170736502682,441,0 +170736502731,441,0 +170736502779,441,0 +170736502829,441,0 +170736502877,441,0 +170736502925,441,0 +170736502974,441,0 +170736503022,441,0 +170736503070,441,0 +170736503118,441,0 +170736503166,441,0 +170736503214,441,0 +170736503262,441,0 +170736503312,441,0 +170736503360,441,0 +170736503409,441,0 +170736503459,281,1 +170736503536,282,1 +170736503619,441,0 +170736503669,441,0 +170736503718,441,0 +170736503766,441,0 +170736503814,441,0 +170736503864,441,0 +170736503912,441,0 +170736503960,441,0 +170736504008,441,0 +170736504055,441,0 +170736504103,441,0 +170736504153,441,0 +170736504201,441,0 +170736504249,441,0 +170736504298,441,0 +170736504346,441,0 +170736504396,441,0 +170736504444,441,0 +170736504492,437,0 +170736504540,304,1 +170736504624,438,0 +170736504672,441,0 +170736504722,441,0 +170736504770,441,0 +170736504818,441,0 +170736504867,441,0 +170736504915,441,0 +170736504963,441,0 +170736505012,441,0 +170736505060,441,0 +170736505108,441,0 +170736505158,441,0 +170736505206,441,0 +170736505254,441,0 +170736505302,441,0 +170736505350,441,0 +170736505398,441,0 +170736505447,441,0 +170736505495,441,0 +170736505543,441,0 +170736505591,290,1 +170736505669,437,0 +170736505718,441,0 +170736505766,441,0 +170736505816,441,0 +170736505864,441,0 +170736505912,441,0 +170736505961,441,0 +170736506009,441,0 +170736506057,441,0 +170736506105,441,0 +170736506153,441,0 +170736506201,441,0 +170736506249,441,0 +170736506297,441,0 +170736506347,441,0 +170736506396,441,0 +170736506444,441,0 +170736506492,441,0 +170736506540,441,0 +170736506588,440,0 +170736506636,310,0 +170736506684,263,0 +170736506732,440,0 +170736506780,441,0 +170736506828,441,0 +170736506876,441,0 +170736506924,441,0 +170736506973,441,0 +170736507023,441,0 +170736507071,441,0 +170736507119,441,0 +170736507169,441,0 +170736507217,441,0 +170736507265,441,0 +170736507313,441,0 +170736507361,441,0 +170736507410,441,0 +170736507458,441,0 +170736507507,441,0 +170736507555,441,0 +170736507603,441,0 +170736507651,293,1 +170736507730,287,1 +170736507809,441,0 +170736507857,441,0 +170736507905,441,0 +170736507953,441,0 +170736508001,441,0 +170736508049,441,0 +170736508097,441,0 +170736508145,441,0 +170736508193,441,0 +170736508240,441,0 +170736508288,441,0 +170736508336,441,0 +170736508384,441,0 +170736508432,441,0 +170736508480,441,0 +170736508528,441,0 +170736508576,441,0 +170736508625,441,0 +170736508673,441,0 +170736508721,296,1 +170736508801,400,0 +170736508849,441,0 +170736508897,441,0 +170736508945,441,0 +170736508993,441,0 +170736509041,441,0 +170736509089,441,0 +170736509137,441,0 +170736509185,441,0 +170736509233,441,0 +170736509282,441,0 +170736509332,441,0 +170736509380,441,0 +170736509427,441,0 +170736509475,441,0 +170736509525,441,0 +170736509573,441,0 +170736509621,441,0 +170736509669,441,0 +170736509717,441,0 +170736509765,309,1 +170736509843,258,0 +170736509891,441,0 +170736509939,441,0 +170736509987,441,0 +170736510037,441,0 +170736510084,441,0 +170736510132,441,0 +170736510180,441,0 +170736510228,441,0 +170736510276,441,0 +170736510324,441,0 +170736510372,441,0 +170736510421,441,0 +170736510469,441,0 +170736510518,441,0 +170736510568,441,0 +170736510616,441,0 +170736510664,441,0 +170736510712,441,0 +170736510761,441,0 +170736510809,291,1 +170736510888,288,1 +170736510969,441,0 +170736511017,441,0 +170736511065,441,0 +170736511113,441,0 +170736511161,441,0 +170736511209,441,0 +170736511258,441,0 +170736511308,441,0 +170736511355,441,0 +170736511405,441,0 +170736511453,441,0 +170736511501,441,0 +170736511549,441,0 +170736511597,441,0 +170736511645,441,0 +170736511693,441,0 +170736511742,441,0 +170736511790,441,0 +170736511840,440,0 +170736511889,291,1 +170736511967,438,0 +170736512015,441,0 +170736512063,441,0 +170736512113,441,0 +170736512162,441,0 +170736512210,441,0 +170736512258,441,0 +170736512308,441,0 +170736512356,441,0 +170736512405,441,0 +170736512453,441,0 +170736512501,441,0 +170736512549,441,0 +170736512597,441,0 +170736512647,441,0 +170736512695,441,0 +170736512744,441,0 +170736512792,441,0 +170736512840,441,0 +170736512888,440,0 +170736512936,312,0 +170736512984,278,1 +170736513063,441,0 +170736513111,441,0 +170736513159,441,0 +170736513207,441,0 +170736513255,441,0 +170736513303,441,0 +170736513351,441,0 +170736513399,441,0 +170736513446,441,0 +170736513496,441,0 +170736513544,441,0 +170736513592,441,0 +170736513639,441,0 +170736513687,441,0 +170736513735,441,0 +170736513783,441,0 +170736513831,441,0 +170736513879,441,0 +170736513927,441,0 +170736513977,307,1 +170736514057,436,0 +170736514105,441,0 +170736514153,441,0 +170736514201,441,0 +170736514249,441,0 +170736514297,441,0 +170736514345,441,0 +170736514395,441,0 +170736514443,441,0 +170736514492,441,0 +170736514542,441,0 +170736514590,441,0 +170736514639,441,0 +170736514689,441,0 +170736514737,441,0 +170736514785,441,0 +170736514834,441,0 +170736514882,441,0 +170736514930,441,0 +170736514978,441,0 +170736515028,307,1 +170736515113,438,0 +170736515161,441,0 +170736515209,441,0 +170736515259,441,0 +170736515307,441,0 +170736515355,441,0 +170736515403,441,0 +170736515451,441,0 +170736515499,441,0 +170736515547,441,0 +170736515595,441,0 +170736515644,441,0 +170736515692,441,0 +170736515740,441,0 +170736515788,441,0 +170736515836,441,0 +170736515885,441,0 +170736515935,441,0 +170736515983,441,0 +170736516031,441,0 +170736516079,291,1 +170736516164,438,0 +170736516213,441,0 +170736516261,441,0 +170736516309,441,0 +170736516357,441,0 +170736516405,441,0 +170736516453,441,0 +170736516502,441,0 +170736516550,441,0 +170736516598,441,0 +170736516646,441,0 +170736516694,441,0 +170736516742,441,0 +170736516790,441,0 +170736516840,441,0 +170736516888,441,0 +170736516936,441,0 +170736516985,441,0 +170736517033,441,0 +170736517083,441,0 +170736517131,301,1 +170736517209,436,0 +170736517258,441,0 +170736517306,441,0 +170736517356,441,0 +170736517404,441,0 +170736517452,441,0 +170736517500,441,0 +170736517548,441,0 +170736517596,441,0 +170736517645,441,0 +170736517693,441,0 +170736517741,441,0 +170736517791,441,0 +170736517839,441,0 +170736517888,441,0 +170736517938,441,0 +170736517987,441,0 +170736518035,441,0 +170736518083,441,0 +170736518131,441,0 +170736518179,301,1 +170736518265,438,0 +170736518313,441,0 +170736518361,441,0 +170736518411,441,0 +170736518460,441,0 +170736518510,441,0 +170736518558,441,0 +170736518606,441,0 +170736518654,441,0 +170736518703,441,0 +170736518753,441,0 +170736518801,441,0 +170736518850,441,0 +170736518898,441,0 +170736518947,441,0 +170736518995,441,0 +170736519043,441,0 +170736519093,441,0 +170736519141,441,0 +170736519190,357,0 +170736519240,301,1 +170736519320,440,0 +170736519368,441,0 +170736519416,441,0 +170736519465,441,0 +170736519513,441,0 +170736519563,441,0 +170736519611,441,0 +170736519659,441,0 +170736519707,441,0 +170736519755,441,0 +170736519803,441,0 +170736519851,441,0 +170736519899,441,0 +170736519948,441,0 +170736519996,441,0 +170736520044,441,0 +170736520092,441,0 +170736520140,441,0 +170736520188,441,0 +170736520237,440,0 +170736520287,307,1 +170736520367,438,0 +170736520415,441,0 +170736520463,441,0 +170736520511,441,0 +170736520559,441,0 +170736520607,441,0 +170736520655,441,0 +170736520703,441,0 +170736520752,441,0 +170736520800,441,0 +170736520848,441,0 +170736520898,441,0 +170736520947,441,0 +170736520995,441,0 +170736521043,441,0 +170736521091,441,0 +170736521139,441,0 +170736521187,441,0 +170736521235,441,0 +170736521283,440,0 +170736521333,292,1 +170736521421,439,0 +170736521469,441,0 +170736521519,441,0 +170736521568,441,0 +170736521616,441,0 +170736521664,441,0 +170736521712,441,0 +170736521760,441,0 +170736521810,441,0 +170736521859,441,0 +170736521907,441,0 +170736521955,441,0 +170736522003,441,0 +170736522051,441,0 +170736522099,441,0 +170736522147,441,0 +170736522195,441,0 +170736522243,441,0 +170736522291,441,0 +170736522339,424,0 +170736522387,294,1 +170736522468,440,0 +170736522516,441,0 +170736522564,441,0 +170736522612,441,0 +170736522660,441,0 +170736522708,441,0 +170736522756,441,0 +170736522804,441,0 +170736522852,441,0 +170736522901,441,0 +170736522949,441,0 +170736522997,441,0 +170736523047,441,0 +170736523095,441,0 +170736523143,441,0 +170736523192,441,0 +170736523242,441,0 +170736523290,441,0 +170736523338,441,0 +170736523387,440,0 +170736523435,306,1 +170736523514,439,0 +170736523563,441,0 +170736523613,441,0 +170736523661,441,0 +170736523709,441,0 +170736523757,441,0 +170736523805,441,0 +170736523854,441,0 +170736523902,441,0 +170736523950,441,0 +170736523999,441,0 +170736524049,441,0 +170736524097,441,0 +170736524145,441,0 +170736524193,441,0 +170736524241,441,0 +170736524289,441,0 +170736524337,441,0 +170736524385,441,0 +170736524434,441,0 +170736524482,299,1 +170736524563,437,0 +170736524611,441,0 +170736524659,441,0 +170736524707,441,0 +170736524756,441,0 +170736524804,441,0 +170736524854,441,0 +170736524902,441,0 +170736524951,441,0 +170736525001,441,0 +170736525049,441,0 +170736525097,441,0 +170736525145,441,0 +170736525193,441,0 +170736525241,441,0 +170736525290,441,0 +170736525338,441,0 +170736525386,441,0 +170736525434,441,0 +170736525482,440,0 +170736525530,305,1 +170736525608,436,0 +170736525656,441,0 +170736525704,441,0 +170736525752,441,0 +170736525800,441,0 +170736525848,441,0 +170736525896,441,0 +170736525944,441,0 +170736525992,441,0 +170736526039,441,0 +170736526087,441,0 +170736526135,441,0 +170736526183,441,0 +170736526231,441,0 +170736526281,441,0 +170736526329,441,0 +170736526377,441,0 +170736526426,441,0 +170736526476,441,0 +170736526524,441,0 +170736526572,302,1 +170736526652,438,0 +170736526700,441,0 +170736526748,441,0 +170736526796,441,0 +170736526844,441,0 +170736526893,441,0 +170736526941,441,0 +170736526989,441,0 +170736527037,441,0 +170736527085,441,0 +170736527133,441,0 +170736527182,441,0 +170736527230,441,0 +170736527278,441,0 +170736527328,441,0 +170736527376,441,0 +170736527424,441,0 +170736527473,441,0 +170736527521,441,0 +170736527569,441,0 +170736527617,290,1 +170736527698,429,0 +170736527746,441,0 +170736527794,441,0 +170736527842,441,0 +170736527891,441,0 +170736527941,441,0 +170736527989,441,0 +170736528037,441,0 +170736528085,441,0 +170736528134,441,0 +170736528182,441,0 +170736528230,441,0 +170736528278,441,0 +170736528326,441,0 +170736528374,441,0 +170736528422,441,0 +170736528470,441,0 +170736528518,441,0 +170736528566,441,0 +170736528614,441,0 +170736528662,298,1 +170736528744,436,0 +170736528792,441,0 +170736528840,441,0 +170736528888,441,0 +170736528936,441,0 +170736528985,441,0 +170736529035,441,0 +170736529084,441,0 +170736529132,441,0 +170736529180,441,0 +170736529228,441,0 +170736529277,441,0 +170736529325,441,0 +170736529373,441,0 +170736529423,441,0 +170736529471,441,0 +170736529519,441,0 +170736529567,441,0 +170736529616,441,0 +170736529666,440,0 +170736529714,296,1 +170736529793,436,0 +170736529843,441,0 +170736529892,441,0 +170736529942,441,0 +170736529990,441,0 +170736530038,441,0 +170736530086,441,0 +170736530135,441,0 +170736530183,441,0 +170736530231,441,0 +170736530281,441,0 +170736530330,441,0 +170736530380,441,0 +170736530428,441,0 +170736530477,441,0 +170736530525,441,0 +170736530573,441,0 +170736530621,441,0 +170736530669,441,0 +170736530717,441,0 +170736530765,288,1 +170736530841,425,0 +170736530889,441,0 +170736530937,441,0 +170736530985,441,0 +170736531033,441,0 +170736531082,441,0 +170736531132,441,0 +170736531180,441,0 +170736531229,441,0 +170736531278,441,0 +170736531327,441,0 +170736531375,441,0 +170736531423,441,0 +170736531471,441,0 +170736531519,441,0 +170736531567,441,0 +170736531615,441,0 +170736531663,441,0 +170736531713,441,0 +170736531761,441,0 +170736531809,294,1 +170736531892,237,0 +170736531940,441,0 +170736531988,441,0 +170736532037,441,0 +170736532087,441,0 +170736532135,441,0 +170736532182,441,0 +170736532230,441,0 +170736532278,441,0 +170736532328,441,0 +170736532376,441,0 +170736532424,441,0 +170736532472,441,0 +170736532520,441,0 +170736532568,441,0 +170736532616,441,0 +170736532664,441,0 +170736532712,441,0 +170736532760,441,0 +170736532809,441,0 +170736532857,303,1 +170736532940,426,0 +170736532987,441,0 +170736533035,441,0 +170736533083,441,0 +170736533131,441,0 +170736533179,441,0 +170736533227,441,0 +170736533275,441,0 +170736533323,441,0 +170736533373,441,0 +170736533421,441,0 +170736533469,441,0 +170736533517,441,0 +170736533566,441,0 +170736533614,441,0 +170736533662,441,0 +170736533710,441,0 +170736533758,441,0 +170736533808,441,0 +170736533856,441,0 +170736533903,300,1 +170736533983,246,0 +170736534033,441,0 +170736534081,441,0 +170736534130,441,0 +170736534178,441,0 +170736534226,441,0 +170736534276,441,0 +170736534324,441,0 +170736534372,441,0 +170736534421,441,0 +170736534469,441,0 +170736534519,441,0 +170736534567,441,0 +170736534616,441,0 +170736534664,441,0 +170736534713,441,0 +170736534761,441,0 +170736534809,441,0 +170736534857,441,0 +170736534907,441,0 +170736534955,283,1 +170736535034,235,0 +170736535082,441,0 +170736535130,441,0 +170736535178,441,0 +170736535225,441,0 +170736535273,441,0 +170736535321,441,0 +170736535369,441,0 +170736535417,441,0 +170736535465,441,0 +170736535513,441,0 +170736535562,441,0 +170736535610,441,0 +170736535658,441,0 +170736535706,441,0 +170736535754,441,0 +170736535802,441,0 +170736535850,441,0 +170736535898,441,0 +170736535946,441,0 +170736535993,305,1 +170736536074,247,0 +170736536122,441,0 +170736536170,441,0 +170736536218,441,0 +170736536265,441,0 +170736536313,441,0 +170736536361,441,0 +170736536409,441,0 +170736536459,441,0 +170736536507,441,0 +170736536556,441,0 +170736536606,441,0 +170736536654,441,0 +170736536702,441,0 +170736536751,441,0 +170736536799,441,0 +170736536849,441,0 +170736536898,441,0 +170736536946,441,0 +170736536994,441,0 +170736537042,303,1 +170736537122,246,0 +170736537169,441,0 +170736537218,441,0 +170736537265,441,0 +170736537313,441,0 +170736537361,441,0 +170736537409,441,0 +170736537459,441,0 +170736537507,441,0 +170736537555,441,0 +170736537603,441,0 +170736537651,441,0 +170736537700,441,0 +170736537748,441,0 +170736537796,441,0 +170736537844,441,0 +170736537892,441,0 +170736537940,441,0 +170736537988,441,0 +170736538036,441,0 +170736538083,266,0 +170736538131,292,1 +170736538212,439,0 +170736538260,441,0 +170736538308,441,0 +170736538356,441,0 +170736538404,441,0 +170736538452,441,0 +170736538500,441,0 +170736538549,441,0 +170736538597,441,0 +170736538645,441,0 +170736538693,441,0 +170736538743,441,0 +170736538791,441,0 +170736538839,441,0 +170736538886,441,0 +170736538934,441,0 +170736538982,441,0 +170736539030,441,0 +170736539078,441,0 +170736539126,441,0 +170736539176,294,1 +170736539254,437,0 +170736539304,441,0 +170736539352,441,0 +170736539400,441,0 +170736539448,441,0 +170736539496,441,0 +170736539544,441,0 +170736539592,441,0 +170736539639,441,0 +170736539687,441,0 +170736539737,441,0 +170736539785,441,0 +170736539833,441,0 +170736539881,441,0 +170736539930,441,0 +170736539980,441,0 +170736540028,441,0 +170736540076,441,0 +170736540124,441,0 +170736540173,439,0 +170736540223,294,1 +170736540312,440,0 +170736540360,441,0 +170736540408,441,0 +170736540456,441,0 +170736540506,441,0 +170736540553,441,0 +170736540601,441,0 +170736540651,441,0 +170736540699,441,0 +170736540747,441,0 +170736540795,441,0 +170736540842,441,0 +170736540890,441,0 +170736540940,441,0 +170736540989,441,0 +170736541037,441,0 +170736541087,441,0 +170736541136,441,0 +170736541184,441,0 +170736541234,304,1 +170736541311,280,1 +170736541389,441,0 +170736541439,441,0 +170736541487,441,0 +170736541535,441,0 +170736541582,441,0 +170736541630,441,0 +170736541680,441,0 +170736541728,441,0 +170736541777,441,0 +170736541825,441,0 +170736541873,441,0 +170736541923,441,0 +170736541972,441,0 +170736542020,441,0 +170736542068,441,0 +170736542116,441,0 +170736542166,441,0 +170736542215,441,0 +170736542263,441,0 +170736542313,292,1 +170736542392,438,0 +170736542442,441,0 +170736542490,441,0 +170736542538,441,0 +170736542585,441,0 +170736542633,441,0 +170736542683,441,0 +170736542731,441,0 +170736542780,441,0 +170736542830,441,0 +170736542878,441,0 +170736542928,441,0 +170736542976,441,0 +170736543023,441,0 +170736543073,441,0 +170736543122,441,0 +170736543170,441,0 +170736543218,441,0 +170736543268,441,0 +170736543316,440,0 +170736543365,296,1 +170736543443,439,0 +170736543491,441,0 +170736543539,441,0 +170736543587,441,0 +170736543635,441,0 +170736543683,441,0 +170736543731,441,0 +170736543779,441,0 +170736543829,441,0 +170736543877,441,0 +170736543925,441,0 +170736543974,441,0 +170736544024,441,0 +170736544072,441,0 +170736544120,441,0 +170736544168,441,0 +170736544216,441,0 +170736544265,441,0 +170736544313,441,0 +170736544361,437,0 +170736544409,295,1 +170736544488,438,0 +170736544538,441,0 +170736544587,441,0 +170736544635,441,0 +170736544683,441,0 +170736544731,441,0 +170736544781,441,0 +170736544828,441,0 +170736544876,441,0 +170736544926,441,0 +170736544974,441,0 +170736545023,441,0 +170736545073,441,0 +170736545121,441,0 +170736545169,441,0 +170736545217,441,0 +170736545265,441,0 +170736545314,441,0 +170736545364,441,0 +170736545413,439,0 +170736545463,300,1 +170736545543,439,0 +170736545593,441,0 +170736545641,441,0 +170736545689,441,0 +170736545738,441,0 +170736545788,441,0 +170736545836,441,0 +170736545884,441,0 +170736545933,441,0 +170736545981,441,0 +170736546029,441,0 +170736546077,441,0 +170736546127,441,0 +170736546175,441,0 +170736546224,441,0 +170736546272,441,0 +170736546320,441,0 +170736546370,441,0 +170736546419,441,0 +170736546467,440,0 +170736546517,302,1 +170736546597,439,0 +170736546645,441,0 +170736546693,441,0 +170736546741,441,0 +170736546789,441,0 +170736546837,441,0 +170736546885,441,0 +170736546934,441,0 +170736546984,441,0 +170736547032,441,0 +170736547080,441,0 +170736547128,441,0 +170736547176,441,0 +170736547224,441,0 +170736547272,441,0 +170736547320,441,0 +170736547368,441,0 +170736547415,441,0 +170736547465,441,0 +170736547513,440,0 +170736547562,299,1 +170736547643,438,0 +170736547691,441,0 +170736547739,441,0 +170736547787,441,0 +170736547835,441,0 +170736547885,441,0 +170736547933,441,0 +170736547981,441,0 +170736548030,441,0 +170736548078,441,0 +170736548127,441,0 +170736548175,441,0 +170736548223,441,0 +170736548271,441,0 +170736548319,441,0 +170736548367,441,0 +170736548415,441,0 +170736548463,441,0 +170736548511,441,0 +170736548559,424,0 +170736548607,294,1 +170736548690,439,0 +170736548738,441,0 +170736548786,441,0 +170736548834,441,0 +170736548882,441,0 +170736548932,441,0 +170736548980,441,0 +170736549028,441,0 +170736549076,441,0 +170736549125,441,0 +170736549173,441,0 +170736549223,441,0 +170736549271,441,0 +170736549320,441,0 +170736549368,441,0 +170736549416,441,0 +170736549466,441,0 +170736549514,441,0 +170736549562,441,0 +170736549609,441,0 +170736549659,308,1 +170736549744,439,0 +170736549794,441,0 +170736549842,441,0 +170736549890,441,0 +170736549938,441,0 +170736549986,441,0 +170736550034,441,0 +170736550082,441,0 +170736550131,441,0 +170736550179,441,0 +170736550227,441,0 +170736550275,441,0 +170736550325,441,0 +170736550374,441,0 +170736550424,441,0 +170736550472,441,0 +170736550520,441,0 +170736550568,441,0 +170736550615,441,0 +170736550663,427,0 +170736550713,304,1 +170736550790,438,0 +170736550838,441,0 +170736550886,441,0 +170736550935,441,0 +170736550983,441,0 +170736551031,441,0 +170736551079,441,0 +170736551127,441,0 +170736551175,441,0 +170736551224,441,0 +170736551272,441,0 +170736551320,441,0 +170736551368,441,0 +170736551418,441,0 +170736551466,441,0 +170736551513,441,0 +170736551563,441,0 +170736551611,441,0 +170736551660,441,0 +170736551710,287,1 +170736551786,290,1 +170736551861,441,0 +170736551910,441,0 +170736551960,441,0 +170736552009,441,0 +170736552057,441,0 +170736552105,441,0 +170736552155,441,0 +170736552203,441,0 +170736552251,441,0 +170736552299,441,0 +170736552348,441,0 +170736552396,441,0 +170736552446,441,0 +170736552493,441,0 +170736552541,441,0 +170736552589,441,0 +170736552637,441,0 +170736552685,441,0 +170736552735,441,0 +170736552784,290,1 +170736552864,437,0 +170736552913,441,0 +170736552961,441,0 +170736553011,441,0 +170736553058,441,0 +170736553106,441,0 +170736553154,441,0 +170736553202,441,0 +170736553250,441,0 +170736553300,441,0 +170736553349,441,0 +170736553397,441,0 +170736553445,441,0 +170736553495,441,0 +170736553543,441,0 +170736553591,441,0 +170736553640,441,0 +170736553688,441,0 +170736553738,441,0 +170736553786,441,0 +170736553834,307,1 +170736553917,239,0 +170736553967,441,0 +170736554015,441,0 +170736554064,441,0 +170736554112,441,0 +170736554162,441,0 +170736554210,441,0 +170736554258,441,0 +170736554306,441,0 +170736554353,441,0 +170736554401,441,0 +170736554449,441,0 +170736554497,441,0 +170736554545,441,0 +170736554595,441,0 +170736554644,441,0 +170736554692,441,0 +170736554742,441,0 +170736554790,441,0 +170736554839,441,0 +170736554888,247,0 +170736554936,249,0 +170736554985,440,0 +170736555033,441,0 +170736555083,441,0 +170736555131,441,0 +170736555178,441,0 +170736555228,441,0 +170736555278,441,0 +170736555326,441,0 +170736555374,441,0 +170736555421,441,0 +170736555471,441,0 +170736555519,441,0 +170736555567,441,0 +170736555615,441,0 +170736555663,441,0 +170736555712,441,0 +170736555760,441,0 +170736555810,441,0 +170736555859,441,0 +170736555907,297,1 +170736555986,297,1 +170736556060,441,0 +170736556108,441,0 +170736556158,441,0 +170736556206,441,0 +170736556255,441,0 +170736556305,441,0 +170736556354,441,0 +170736556402,441,0 +170736556450,441,0 +170736556498,441,0 +170736556546,441,0 +170736556594,441,0 +170736556644,441,0 +170736556692,441,0 +170736556741,441,0 +170736556789,441,0 +170736556837,441,0 +170736556886,441,0 +170736556934,441,0 +170736556982,288,1 +170736557062,434,0 +170736557110,441,0 +170736557158,441,0 +170736557206,441,0 +170736557254,441,0 +170736557303,441,0 +170736557353,441,0 +170736557400,441,0 +170736557448,441,0 +170736557496,441,0 +170736557544,441,0 +170736557594,441,0 +170736557642,441,0 +170736557689,441,0 +170736557739,441,0 +170736557787,441,0 +170736557836,441,0 +170736557884,441,0 +170736557932,441,0 +170736557980,441,0 +170736558028,297,1 +170736558111,437,0 +170736558159,441,0 +170736558209,441,0 +170736558257,441,0 +170736558306,441,0 +170736558356,441,0 +170736558405,441,0 +170736558453,441,0 +170736558501,441,0 +170736558549,441,0 +170736558597,441,0 +170736558645,441,0 +170736558693,441,0 +170736558742,441,0 +170736558790,441,0 +170736558838,441,0 +170736558886,441,0 +170736558934,441,0 +170736558983,441,0 +170736559031,440,0 +170736559081,293,1 +170736559164,439,0 +170736559212,441,0 +170736559260,441,0 +170736559308,441,0 +170736559356,441,0 +170736559405,441,0 +170736559453,441,0 +170736559501,441,0 +170736559549,441,0 +170736559597,441,0 +170736559645,441,0 +170736559695,441,0 +170736559742,441,0 +170736559790,441,0 +170736559838,441,0 +170736559886,441,0 +170736559934,441,0 +170736559982,441,0 +170736560030,441,0 +170736560080,441,0 +170736560129,307,1 +170736560209,438,0 +170736560259,441,0 +170736560307,441,0 +170736560355,441,0 +170736560404,441,0 +170736560452,441,0 +170736560500,441,0 +170736560548,441,0 +170736560596,441,0 +170736560644,441,0 +170736560693,441,0 +170736560741,441,0 +170736560789,441,0 +170736560839,441,0 +170736560887,441,0 +170736560936,441,0 +170736560984,441,0 +170736561032,441,0 +170736561080,441,0 +170736561128,441,0 +170736561178,293,1 +170736561261,437,0 +170736561311,441,0 +170736561359,441,0 +170736561407,441,0 +170736561455,441,0 +170736561503,441,0 +170736561551,441,0 +170736561599,441,0 +170736561647,441,0 +170736561694,441,0 +170736561744,441,0 +170736561792,441,0 +170736561840,441,0 +170736561888,441,0 +170736561936,441,0 +170736561984,441,0 +170736562032,441,0 +170736562080,441,0 +170736562129,441,0 +170736562177,441,0 +170736562225,301,1 +170736562303,433,0 +170736562351,441,0 +170736562399,441,0 +170736562448,441,0 +170736562496,441,0 +170736562544,441,0 +170736562594,441,0 +170736562642,441,0 +170736562691,441,0 +170736562739,441,0 +170736562787,441,0 +170736562835,441,0 +170736562883,441,0 +170736562931,441,0 +170736562979,441,0 +170736563027,441,0 +170736563076,441,0 +170736563126,441,0 +170736563174,441,0 +170736563222,440,0 +170736563271,299,1 +170736563351,436,0 +170736563400,441,0 +170736563450,441,0 +170736563498,441,0 +170736563546,441,0 +170736563595,441,0 +170736563643,441,0 +170736563693,441,0 +170736563741,441,0 +170736563789,441,0 +170736563838,441,0 +170736563886,441,0 +170736563934,441,0 +170736563984,441,0 +170736564032,441,0 +170736564080,441,0 +170736564129,441,0 +170736564177,441,0 +170736564227,441,0 +170736564276,441,0 +170736564326,297,1 +170736564407,436,0 +170736564455,441,0 +170736564502,441,0 +170736564550,441,0 +170736564598,441,0 +170736564648,441,0 +170736564696,441,0 +170736564744,441,0 +170736564793,441,0 +170736564841,441,0 +170736564889,441,0 +170736564937,441,0 +170736564985,441,0 +170736565034,441,0 +170736565082,441,0 +170736565130,441,0 +170736565180,441,0 +170736565229,441,0 +170736565277,441,0 +170736565325,441,0 +170736565373,300,1 +170736565454,438,0 +170736565502,441,0 +170736565551,441,0 +170736565601,441,0 +170736565650,441,0 +170736565700,441,0 +170736565748,441,0 +170736565796,441,0 +170736565844,441,0 +170736565892,441,0 +170736565941,441,0 +170736565989,441,0 +170736566037,441,0 +170736566085,441,0 +170736566133,441,0 +170736566183,441,0 +170736566232,441,0 +170736566280,441,0 +170736566328,441,0 +170736566376,431,0 +170736566424,290,1 +170736566503,438,0 +170736566551,441,0 +170736566599,441,0 +170736566649,441,0 +170736566698,441,0 +170736566746,441,0 +170736566795,441,0 +170736566843,441,0 +170736566893,441,0 +170736566941,441,0 +170736566990,441,0 +170736567038,441,0 +170736567086,441,0 +170736567134,441,0 +170736567182,441,0 +170736567230,441,0 +170736567278,441,0 +170736567327,441,0 +170736567375,441,0 +170736567425,440,0 +170736567473,299,1 +170736567556,439,0 +170736567603,441,0 +170736567651,441,0 +170736567699,441,0 +170736567747,441,0 +170736567795,441,0 +170736567845,441,0 +170736567893,441,0 +170736567942,441,0 +170736567992,441,0 +170736568041,441,0 +170736568091,441,0 +170736568139,441,0 +170736568187,441,0 +170736568235,441,0 +170736568283,441,0 +170736568331,441,0 +170736568379,441,0 +170736568427,441,0 +170736568476,441,0 +170736568526,289,1 +170736568605,438,0 +170736568653,441,0 +170736568701,441,0 +170736568749,441,0 +170736568798,441,0 +170736568846,441,0 +170736568894,441,0 +170736568942,441,0 +170736568990,441,0 +170736569038,441,0 +170736569087,441,0 +170736569135,441,0 +170736569183,441,0 +170736569231,441,0 +170736569279,441,0 +170736569327,441,0 +170736569377,441,0 +170736569425,441,0 +170736569472,441,0 +170736569520,440,0 +170736569570,299,1 +170736569654,439,0 +170736569704,441,0 +170736569752,441,0 +170736569800,441,0 +170736569849,441,0 +170736569897,441,0 +170736569947,441,0 +170736569995,441,0 +170736570043,441,0 +170736570091,441,0 +170736570139,441,0 +170736570188,441,0 +170736570236,441,0 +170736570284,441,0 +170736570334,441,0 +170736570382,441,0 +170736570431,441,0 +170736570481,441,0 +170736570530,441,0 +170736570578,337,0 +170736570628,302,1 +170736570710,440,0 +170736570760,441,0 +170736570809,441,0 +170736570857,441,0 +170736570905,441,0 +170736570953,441,0 +170736571001,441,0 +170736571051,441,0 +170736571099,441,0 +170736571147,441,0 +170736571195,441,0 +170736571243,441,0 +170736571291,441,0 +170736571339,441,0 +170736571388,441,0 +170736571436,441,0 +170736571484,441,0 +170736571532,441,0 +170736571580,441,0 +170736571628,441,0 +170736571677,301,1 +170736571759,439,0 +170736571809,441,0 +170736571857,441,0 +170736571906,441,0 +170736571954,441,0 +170736572004,441,0 +170736572051,441,0 +170736572099,441,0 +170736572149,441,0 +170736572198,441,0 +170736572246,441,0 +170736572296,441,0 +170736572344,441,0 +170736572392,441,0 +170736572441,441,0 +170736572491,441,0 +170736572539,441,0 +170736572588,441,0 +170736572638,441,0 +170736572687,296,1 +170736572768,246,0 +170736572817,441,0 +170736572865,441,0 +170736572915,441,0 +170736572963,441,0 +170736573011,441,0 +170736573060,441,0 +170736573108,441,0 +170736573158,441,0 +170736573206,441,0 +170736573255,441,0 +170736573303,441,0 +170736573353,441,0 +170736573401,441,0 +170736573450,441,0 +170736573500,441,0 +170736573548,441,0 +170736573597,441,0 +170736573645,441,0 +170736573694,441,0 +170736573742,307,1 +170736573823,432,0 +170736573873,441,0 +170736573921,441,0 +170736573969,441,0 +170736574018,441,0 +170736574066,441,0 +170736574114,441,0 +170736574162,441,0 +170736574210,441,0 +170736574259,441,0 +170736574307,441,0 +170736574355,441,0 +170736574403,441,0 +170736574451,441,0 +170736574499,441,0 +170736574547,441,0 +170736574597,441,0 +170736574644,441,0 +170736574692,441,0 +170736574742,441,0 +170736574791,308,1 +170736574870,237,0 +170736574918,441,0 +170736574966,441,0 +170736575014,441,0 +170736575062,441,0 +170736575110,441,0 +170736575159,441,0 +170736575207,441,0 +170736575255,441,0 +170736575305,441,0 +170736575353,441,0 +170736575402,441,0 +170736575450,441,0 +170736575500,441,0 +170736575548,441,0 +170736575596,441,0 +170736575644,441,0 +170736575692,441,0 +170736575740,441,0 +170736575789,441,0 +170736575837,305,1 +170736575917,264,0 +170736575965,441,0 +170736576014,441,0 +170736576062,441,0 +170736576112,441,0 +170736576162,441,0 +170736576209,441,0 +170736576257,441,0 +170736576305,441,0 +170736576353,441,0 +170736576401,441,0 +170736576451,441,0 +170736576499,441,0 +170736576547,441,0 +170736576596,441,0 +170736576646,441,0 +170736576694,441,0 +170736576742,441,0 +170736576790,441,0 +170736576839,441,0 +170736576889,301,1 +170736576969,239,0 +170736577019,441,0 +170736577066,441,0 +170736577114,441,0 +170736577164,441,0 +170736577213,441,0 +170736577263,441,0 +170736577312,441,0 +170736577362,441,0 +170736577411,441,0 +170736577459,441,0 +170736577507,441,0 +170736577557,441,0 +170736577606,441,0 +170736577654,441,0 +170736577702,441,0 +170736577750,441,0 +170736577798,441,0 +170736577848,441,0 +170736577896,441,0 +170736577943,290,1 +170736578030,437,0 +170736578080,441,0 +170736578128,441,0 +170736578177,441,0 +170736578225,441,0 +170736578273,441,0 +170736578323,441,0 +170736578371,441,0 +170736578419,441,0 +170736578466,441,0 +170736578514,441,0 +170736578562,441,0 +170736578610,441,0 +170736578660,441,0 +170736578708,441,0 +170736578755,441,0 +170736578803,441,0 +170736578851,441,0 +170736578899,441,0 +170736578947,441,0 +170736578995,290,1 +170736579076,434,0 +170736579124,441,0 +170736579172,441,0 +170736579222,441,0 +170736579270,441,0 +170736579318,441,0 +170736579367,441,0 +170736579415,441,0 +170736579463,441,0 +170736579511,441,0 +170736579559,441,0 +170736579607,441,0 +170736579657,441,0 +170736579705,441,0 +170736579754,441,0 +170736579803,441,0 +170736579851,441,0 +170736579899,441,0 +170736579947,441,0 +170736579995,441,0 +170736580043,307,1 +170736580126,437,0 +170736580174,441,0 +170736580222,441,0 +170736580270,441,0 +170736580319,441,0 +170736580367,441,0 +170736580417,441,0 +170736580465,441,0 +170736580513,441,0 +170736580562,441,0 +170736580610,441,0 +170736580658,441,0 +170736580706,441,0 +170736580754,441,0 +170736580802,441,0 +170736580850,441,0 +170736580898,441,0 +170736580947,441,0 +170736580995,441,0 +170736581045,441,0 +170736581093,298,1 +170736581174,436,0 +170736581224,441,0 +170736581271,441,0 +170736581320,441,0 +170736581368,441,0 +170736581416,441,0 +170736581463,441,0 +170736581511,441,0 +170736581559,441,0 +170736581607,441,0 +170736581655,441,0 +170736581703,441,0 +170736581751,441,0 +170736581801,441,0 +170736581849,441,0 +170736581898,441,0 +170736581946,441,0 +170736581994,441,0 +170736582044,441,0 +170736582092,441,0 +170736582141,302,1 +170736582222,437,0 +170736582271,441,0 +170736582321,441,0 +170736582370,441,0 +170736582420,441,0 +170736582469,441,0 +170736582517,441,0 +170736582565,441,0 +170736582613,441,0 +170736582661,441,0 +170736582711,441,0 +170736582760,441,0 +170736582808,441,0 +170736582856,441,0 +170736582904,441,0 +170736582953,441,0 +170736583001,441,0 +170736583051,441,0 +170736583100,441,0 +170736583148,441,0 +170736583196,441,0 +170736583246,441,0 +170736583295,441,0 +170736583343,441,0 +170736583393,441,0 +170736583441,441,0 +170736583490,441,0 +170736583538,441,0 +170736583588,441,0 +170736583636,441,0 +170736583684,438,0 +170736583733,298,1 +170736583814,439,0 +170736583864,441,0 +170736583913,441,0 +170736583961,441,0 +170736584009,441,0 +170736584059,441,0 +170736584107,441,0 +170736584154,441,0 +170736584202,441,0 +170736584250,441,0 +170736584298,441,0 +170736584346,441,0 +170736584394,441,0 +170736584442,441,0 +170736584490,441,0 +170736584537,441,0 +170736584585,441,0 +170736584633,441,0 +170736584683,441,0 +170736584732,332,0 +170736584780,299,1 +170736584861,439,0 +170736584909,441,0 +170736584959,441,0 +170736585006,441,0 +170736585054,441,0 +170736585102,441,0 +170736585152,441,0 +170736585200,441,0 +170736585248,441,0 +170736585296,441,0 +170736585345,441,0 +170736585393,441,0 +170736585441,441,0 +170736585491,441,0 +170736585540,441,0 +170736585588,441,0 +170736585636,441,0 +170736585684,441,0 +170736585732,441,0 +170736585780,439,0 +170736585827,292,1 +170736585904,438,0 +170736585952,441,0 +170736586000,441,0 +170736586047,441,0 +170736586095,441,0 +170736586143,441,0 +170736586193,441,0 +170736586241,441,0 +170736586289,441,0 +170736586336,441,0 +170736586384,441,0 +170736586432,441,0 +170736586482,441,0 +170736586530,441,0 +170736586577,441,0 +170736586625,441,0 +170736586675,441,0 +170736586723,441,0 +170736586771,441,0 +170736586818,441,0 +170736586866,300,1 +170736586946,437,0 +170736586995,441,0 +170736587043,441,0 +170736587093,441,0 +170736587141,441,0 +170736587190,441,0 +170736587238,441,0 +170736587286,441,0 +170736587334,441,0 +170736587382,441,0 +170736587430,441,0 +170736587478,441,0 +170736587526,441,0 +170736587573,441,0 +170736587621,441,0 +170736587669,441,0 +170736587717,441,0 +170736587765,441,0 +170736587813,441,0 +170736587861,441,0 +170736587909,298,1 +170736587994,437,0 +170736588042,441,0 +170736588091,441,0 +170736588139,441,0 +170736588187,441,0 +170736588235,441,0 +170736588283,441,0 +170736588332,441,0 +170736588380,441,0 +170736588428,441,0 +170736588476,441,0 +170736588524,441,0 +170736588572,441,0 +170736588621,441,0 +170736588669,441,0 +170736588719,441,0 +170736588768,441,0 +170736588816,441,0 +170736588864,441,0 +170736588912,440,0 +170736588960,291,1 +170736589046,438,0 +170736589093,441,0 +170736589143,441,0 +170736589191,441,0 +170736589239,441,0 +170736589287,441,0 +170736589336,441,0 +170736589384,441,0 +170736589432,441,0 +170736589480,441,0 +170736589528,441,0 +170736589575,441,0 +170736589623,441,0 +170736589671,441,0 +170736589719,441,0 +170736589767,441,0 +170736589815,441,0 +170736589863,441,0 +170736589911,441,0 +170736589958,441,0 +170736590006,305,1 +170736590084,436,0 +170736590132,441,0 +170736590180,441,0 +170736590228,441,0 +170736590276,441,0 +170736590326,441,0 +170736590373,441,0 +170736590421,441,0 +170736590469,441,0 +170736590517,441,0 +170736590565,441,0 +170736590613,441,0 +170736590660,441,0 +170736590708,441,0 +170736590756,441,0 +170736590804,441,0 +170736590852,441,0 +170736590900,441,0 +170736590948,441,0 +170736590996,441,0 +170736591044,295,1 +170736591128,245,0 +170736591176,441,0 +170736591224,441,0 +170736591273,441,0 +170736591323,441,0 +170736591371,441,0 +170736591420,441,0 +170736591469,441,0 +170736591517,441,0 +170736591565,441,0 +170736591613,441,0 +170736591661,441,0 +170736591711,441,0 +170736591760,441,0 +170736591808,441,0 +170736591856,441,0 +170736591904,441,0 +170736591952,441,0 +170736592000,441,0 +170736592047,441,0 +170736592095,298,1 +170736592176,320,0 +170736592226,441,0 +170736592273,441,0 +170736592321,441,0 +170736592369,441,0 +170736592417,441,0 +170736592465,441,0 +170736592513,441,0 +170736592561,441,0 +170736592609,441,0 +170736592656,441,0 +170736592704,441,0 +170736592752,441,0 +170736592800,441,0 +170736592848,441,0 +170736592896,441,0 +170736592944,441,0 +170736592992,441,0 +170736593041,441,0 +170736593089,441,0 +170736593139,303,1 +170736593214,243,0 +170736593262,441,0 +170736593312,441,0 +170736593361,441,0 +170736593409,441,0 +170736593457,441,0 +170736593505,441,0 +170736593553,441,0 +170736593601,441,0 +170736593649,441,0 +170736593698,441,0 +170736593746,441,0 +170736593794,441,0 +170736593842,441,0 +170736593890,441,0 +170736593938,441,0 +170736593986,441,0 +170736594034,441,0 +170736594082,441,0 +170736594131,441,0 +170736594179,289,1 +170736594261,274,1 +170736594340,441,0 +170736594388,441,0 +170736594438,441,0 +170736594486,441,0 +170736594534,441,0 +170736594583,441,0 +170736594633,441,0 +170736594682,441,0 +170736594730,441,0 +170736594778,441,0 +170736594826,441,0 +170736594874,441,0 +170736594922,441,0 +170736594970,441,0 +170736595018,441,0 +170736595067,441,0 +170736595115,441,0 +170736595163,441,0 +170736595211,439,0 +170736595259,306,1 +170736595341,439,0 +170736595391,441,0 +170736595439,441,0 +170736595488,441,0 +170736595536,441,0 +170736595586,441,0 +170736595634,441,0 +170736595683,441,0 +170736595731,441,0 +170736595779,441,0 +170736595827,441,0 +170736595875,441,0 +170736595923,441,0 +170736595973,441,0 +170736596021,441,0 +170736596069,441,0 +170736596117,441,0 +170736596165,441,0 +170736596213,441,0 +170736596261,406,0 +170736596309,299,1 +170736596389,440,0 +170736596438,441,0 +170736596486,441,0 +170736596534,441,0 +170736596582,441,0 +170736596630,441,0 +170736596678,441,0 +170736596726,441,0 +170736596774,441,0 +170736596824,441,0 +170736596872,441,0 +170736596920,441,0 +170736596968,441,0 +170736597017,441,0 +170736597067,441,0 +170736597115,441,0 +170736597163,441,0 +170736597210,441,0 +170736597260,441,0 +170736597308,441,0 +170736597357,306,1 +170736597440,439,0 +170736597488,441,0 +170736597536,441,0 +170736597585,441,0 +170736597635,441,0 +170736597683,441,0 +170736597732,441,0 +170736597782,441,0 +170736597830,441,0 +170736597878,441,0 +170736597927,441,0 +170736597977,441,0 +170736598025,441,0 +170736598073,441,0 +170736598122,441,0 +170736598170,441,0 +170736598218,441,0 +170736598266,441,0 +170736598315,441,0 +170736598365,439,0 +170736598413,298,1 +170736598491,438,0 +170736598539,441,0 +170736598588,441,0 +170736598636,441,0 +170736598684,441,0 +170736598732,441,0 +170736598780,441,0 +170736598829,441,0 +170736598877,441,0 +170736598925,441,0 +170736598973,441,0 +170736599023,441,0 +170736599072,441,0 +170736599122,441,0 +170736599170,441,0 +170736599219,441,0 +170736599267,441,0 +170736599317,441,0 +170736599366,441,0 +170736599414,276,1 +170736599494,292,1 +170736599569,441,0 +170736599617,441,0 +170736599666,441,0 +170736599716,441,0 +170736599765,441,0 +170736599815,441,0 +170736599863,441,0 +170736599911,441,0 +170736599960,441,0 +170736600010,441,0 +170736600058,441,0 +170736600106,441,0 +170736600154,441,0 +170736600202,441,0 +170736600251,441,0 +170736600299,441,0 +170736600349,441,0 +170736600397,441,0 +170736600445,441,0 +170736600493,294,1 +170736600577,438,0 +170736600626,441,0 +170736600674,441,0 +170736600723,441,0 +170736600773,441,0 +170736600821,441,0 +170736600870,441,0 +170736600918,441,0 +170736600968,441,0 +170736601016,441,0 +170736601065,441,0 +170736601115,441,0 +170736601163,441,0 +170736601212,441,0 +170736601262,441,0 +170736601311,441,0 +170736601359,441,0 +170736601407,441,0 +170736601455,441,0 +170736601505,440,0 +170736601554,287,1 +170736601633,438,0 +170736601682,441,0 +170736601730,441,0 +170736601780,441,0 +170736601829,441,0 +170736601877,441,0 +170736601925,441,0 +170736601975,441,0 +170736602024,441,0 +170736602072,441,0 +170736602122,441,0 +170736602170,441,0 +170736602218,441,0 +170736602266,441,0 +170736602314,441,0 +170736602363,441,0 +170736602411,441,0 +170736602459,441,0 +170736602507,441,0 +170736602555,261,0 +170736602604,298,1 +170736602685,440,0 +170736602734,441,0 +170736602782,441,0 +170736602832,441,0 +170736602880,441,0 +170736602930,441,0 +170736602978,441,0 +170736603027,441,0 +170736603077,441,0 +170736603125,441,0 +170736603173,441,0 +170736603222,441,0 +170736603270,441,0 +170736603318,441,0 +170736603366,441,0 +170736603414,441,0 +170736603463,441,0 +170736603511,441,0 +170736603561,441,0 +170736603609,296,1 +170736603689,286,1 +170736603767,441,0 +170736603815,441,0 +170736603863,441,0 +170736603911,441,0 +170736603959,441,0 +170736604008,441,0 +170736604056,441,0 +170736604106,441,0 +170736604154,441,0 +170736604202,441,0 +170736604251,441,0 +170736604299,441,0 +170736604347,441,0 +170736604395,441,0 +170736604443,441,0 +170736604493,441,0 +170736604542,441,0 +170736604590,441,0 +170736604640,441,0 +170736604687,304,1 +170736604767,435,0 +170736604817,441,0 +170736604865,441,0 +170736604913,441,0 +170736604961,441,0 +170736605010,441,0 +170736605060,441,0 +170736605108,441,0 +170736605157,441,0 +170736605205,441,0 +170736605253,441,0 +170736605303,441,0 +170736605352,441,0 +170736605400,441,0 +170736605448,441,0 +170736605496,441,0 +170736605546,441,0 +170736605593,441,0 +170736605641,441,0 +170736605689,441,0 +170736605737,297,1 +170736605821,436,0 +170736605869,441,0 +170736605918,441,0 +170736605966,441,0 +170736606016,441,0 +170736606064,441,0 +170736606112,441,0 +170736606160,441,0 +170736606208,441,0 +170736606257,441,0 +170736606307,441,0 +170736606356,441,0 +170736606406,441,0 +170736606454,441,0 +170736606503,441,0 +170736606551,441,0 +170736606601,441,0 +170736606649,441,0 +170736606698,441,0 +170736606746,421,0 +170736606796,299,1 +170736606875,440,0 +170736606923,441,0 +170736606971,441,0 +170736607020,441,0 +170736607068,441,0 +170736607116,441,0 +170736607165,441,0 +170736607215,441,0 +170736607263,441,0 +170736607311,441,0 +170736607360,441,0 +170736607408,441,0 +170736607458,441,0 +170736607507,441,0 +170736607555,441,0 +170736607603,441,0 +170736607651,441,0 +170736607699,441,0 +170736607747,441,0 +170736607795,440,0 +170736607845,303,1 +170736607924,439,0 +170736607974,441,0 +170736608023,441,0 +170736608071,441,0 +170736608120,441,0 +170736608168,441,0 +170736608215,441,0 +170736608265,441,0 +170736608314,441,0 +170736608362,441,0 +170736608410,441,0 +170736608460,441,0 +170736608509,441,0 +170736608557,441,0 +170736608605,441,0 +170736608653,441,0 +170736608701,441,0 +170736608751,441,0 +170736608799,441,0 +170736608847,440,0 +170736608895,298,1 +170736608977,438,0 +170736609025,441,0 +170736609073,441,0 +170736609122,441,0 +170736609172,441,0 +170736609220,441,0 +170736609269,441,0 +170736609317,441,0 +170736609367,441,0 +170736609414,441,0 +170736609464,441,0 +170736609512,441,0 +170736609560,441,0 +170736609608,441,0 +170736609657,441,0 +170736609705,441,0 +170736609753,441,0 +170736609803,441,0 +170736609851,441,0 +170736609898,293,1 +170736609985,257,0 +170736610034,441,0 +170736610082,441,0 +170736610130,441,0 +170736610178,441,0 +170736610226,441,0 +170736610275,441,0 +170736610323,441,0 +170736610371,441,0 +170736610419,441,0 +170736610467,441,0 +170736610515,441,0 +170736610563,441,0 +170736610613,441,0 +170736610660,441,0 +170736610710,441,0 +170736610759,441,0 +170736610807,441,0 +170736610855,441,0 +170736610903,441,0 +170736610951,291,1 +170736611033,264,0 +170736611083,441,0 +170736611131,441,0 +170736611180,441,0 +170736611228,441,0 +170736611276,441,0 +170736611324,441,0 +170736611372,441,0 +170736611420,441,0 +170736611469,441,0 +170736611519,441,0 +170736611567,441,0 +170736611615,441,0 +170736611663,441,0 +170736611711,441,0 +170736611760,441,0 +170736611808,441,0 +170736611858,441,0 +170736611906,441,0 +170736611954,441,0 +170736612003,277,1 +170736612083,297,1 +170736612158,441,0 +170736612206,441,0 +170736612254,441,0 +170736612304,441,0 +170736612353,441,0 +170736612403,441,0 +170736612451,441,0 +170736612499,441,0 +170736612548,441,0 +170736612598,441,0 +170736612646,441,0 +170736612695,441,0 +170736612745,441,0 +170736612793,441,0 +170736612842,441,0 +170736612890,441,0 +170736612938,441,0 +170736612988,441,0 +170736613036,441,0 +170736613085,286,1 +170736613165,438,0 +170736613214,441,0 +170736613262,441,0 +170736613312,441,0 +170736613359,441,0 +170736613409,441,0 +170736613457,441,0 +170736613505,441,0 +170736613554,441,0 +170736613604,441,0 +170736613652,441,0 +170736613701,441,0 +170736613749,441,0 +170736613797,441,0 +170736613845,441,0 +170736613893,441,0 +170736613943,441,0 +170736613991,441,0 +170736614039,441,0 +170736614087,441,0 +170736614135,270,1 +170736614218,439,0 +170736614266,441,0 +170736614314,441,0 +170736614362,441,0 +170736614412,441,0 +170736614460,441,0 +170736614508,441,0 +170736614556,441,0 +170736614604,441,0 +170736614652,441,0 +170736614701,441,0 +170736614749,441,0 +170736614797,441,0 +170736614845,441,0 +170736614893,441,0 +170736614941,441,0 +170736614989,441,0 +170736615037,441,0 +170736615086,441,0 +170736615136,439,0 +170736615185,293,1 +170736615264,438,0 +170736615313,441,0 +170736615363,441,0 +170736615411,441,0 +170736615459,441,0 +170736615507,441,0 +170736615555,441,0 +170736615603,441,0 +170736615650,441,0 +170736615698,441,0 +170736615746,441,0 +170736615794,441,0 +170736615842,441,0 +170736615890,441,0 +170736615940,441,0 +170736615988,441,0 +170736616036,441,0 +170736616084,441,0 +170736616132,441,0 +170736616181,440,0 +170736616229,292,1 +170736616311,438,0 +170736616361,441,0 +170736616409,441,0 +170736616456,441,0 +170736616506,441,0 +170736616556,441,0 +170736616604,441,0 +170736616653,441,0 +170736616703,441,0 +170736616751,441,0 +170736616799,441,0 +170736616847,441,0 +170736616896,441,0 +170736616944,441,0 +170736616994,441,0 +170736617041,441,0 +170736617089,441,0 +170736617137,441,0 +170736617185,441,0 +170736617235,281,1 +170736617369,441,0 +170736617417,441,0 +170736617465,441,0 +170736617515,441,0 +170736617563,441,0 +170736617611,441,0 +170736617659,441,0 +170736617707,441,0 +170736617755,441,0 +170736617804,441,0 +170736617854,441,0 +170736617902,441,0 +170736617951,441,0 +170736617999,441,0 +170736618049,441,0 +170736618097,441,0 +170736618144,441,0 +170736618194,441,0 +170736618244,441,0 +170736618291,296,1 +170736618371,291,1 +170736618448,441,0 +170736618498,441,0 +170736618546,441,0 +170736618595,441,0 +170736618643,441,0 +170736618691,441,0 +170736618739,441,0 +170736618787,441,0 +170736618835,441,0 +170736618885,441,0 +170736618934,441,0 +170736618984,441,0 +170736619033,441,0 +170736619081,441,0 +170736619129,441,0 +170736619179,441,0 +170736619228,441,0 +170736619276,441,0 +170736619326,441,0 +170736619375,296,1 +170736619455,391,0 +170736619503,441,0 +170736619552,441,0 +170736619602,441,0 +170736619651,441,0 +170736619701,441,0 +170736619749,441,0 +170736619797,441,0 +170736619846,441,0 +170736619894,441,0 +170736619942,441,0 +170736619990,441,0 +170736620038,441,0 +170736620088,441,0 +170736620136,441,0 +170736620184,441,0 +170736620233,441,0 +170736620281,441,0 +170736620331,441,0 +170736620378,440,0 +170736620428,276,1 +170736620507,439,0 +170736620555,441,0 +170736620603,441,0 +170736620651,441,0 +170736620699,441,0 +170736620747,441,0 +170736620797,441,0 +170736620846,441,0 +170736620896,441,0 +170736620945,441,0 +170736620993,441,0 +170736621041,441,0 +170736621089,441,0 +170736621137,441,0 +170736621185,441,0 +170736621233,441,0 +170736621281,441,0 +170736621329,441,0 +170736621377,441,0 +170736621425,440,0 +170736621473,297,1 +170736621554,439,0 +170736621602,441,0 +170736621650,441,0 +170736621699,441,0 +170736621747,441,0 +170736621797,441,0 +170736621846,441,0 +170736621894,441,0 +170736621944,441,0 +170736621993,441,0 +170736622041,441,0 +170736622089,441,0 +170736622137,441,0 +170736622185,441,0 +170736622233,441,0 +170736622281,441,0 +170736622330,441,0 +170736622378,441,0 +170736622426,441,0 +170736622474,440,0 +170736622524,283,1 +170736622605,439,0 +170736622653,441,0 +170736622701,441,0 +170736622748,441,0 +170736622798,441,0 +170736622846,441,0 +170736622896,441,0 +170736622944,441,0 +170736622992,441,0 +170736623041,441,0 +170736623089,441,0 +170736623139,441,0 +170736623187,441,0 +170736623236,441,0 +170736623284,441,0 +170736623332,441,0 +170736623381,441,0 +170736623429,441,0 +170736623479,441,0 +170736623527,274,1 +170736623602,301,1 +170736623679,441,0 +170736623728,441,0 +170736623776,441,0 +170736623824,441,0 +170736623872,441,0 +170736623920,441,0 +170736623968,441,0 +170736624016,441,0 +170736624064,441,0 +170736624112,441,0 +170736624160,441,0 +170736624209,441,0 +170736624257,441,0 +170736624305,441,0 +170736624353,441,0 +170736624401,441,0 +170736624451,441,0 +170736624499,441,0 +170736624548,441,0 +170736624596,295,1 +170736624677,421,0 +170736624725,441,0 +170736624774,441,0 +170736624822,441,0 +170736624870,441,0 +170736624918,441,0 +170736624966,441,0 +170736625014,441,0 +170736625062,441,0 +170736625111,441,0 +170736625159,441,0 +170736625207,441,0 +170736625255,441,0 +170736625303,441,0 +170736625351,441,0 +170736625399,441,0 +170736625447,441,0 +170736625495,441,0 +170736625543,441,0 +170736625591,441,0 +170736625638,279,1 +170736625719,241,0 +170736625768,441,0 +170736625816,441,0 +170736625864,441,0 +170736625914,441,0 +170736625961,441,0 +170736626011,441,0 +170736626059,441,0 +170736626107,441,0 +170736626155,441,0 +170736626203,441,0 +170736626252,441,0 +170736626300,441,0 +170736626348,441,0 +170736626397,441,0 +170736626445,441,0 +170736626493,441,0 +170736626541,441,0 +170736626589,441,0 +170736626637,441,0 +170736626685,293,1 +170736626766,292,1 +170736626846,441,0 +170736626894,441,0 +170736626943,441,0 +170736626993,441,0 +170736627041,441,0 +170736627089,441,0 +170736627137,441,0 +170736627185,441,0 +170736627232,441,0 +170736627282,441,0 +170736627330,441,0 +170736627380,441,0 +170736627427,441,0 +170736627477,441,0 +170736627525,441,0 +170736627573,442,0 +170736627621,441,0 +170736627670,441,0 +170736627718,435,0 +170736627766,298,1 +170736627850,440,0 +170736627898,441,0 +170736627947,441,0 +170736627995,441,0 +170736628043,441,0 +170736628091,441,0 +170736628139,441,0 +170736628187,441,0 +170736628237,441,0 +170736628285,441,0 +170736628333,441,0 +170736628380,441,0 +170736628428,441,0 +170736628476,441,0 +170736628526,441,0 +170736628575,441,0 +170736628623,441,0 +170736628671,441,0 +170736628719,441,0 +170736628767,430,0 +170736628815,310,0 +170736628864,254,0 +170736628914,441,0 +170736628962,441,0 +170736629011,441,0 +170736629061,441,0 +170736629110,441,0 +170736629158,441,0 +170736629206,441,0 +170736629254,441,0 +170736629302,441,0 +170736629350,441,0 +170736629400,441,0 +170736629449,441,0 +170736629497,441,0 +170736629545,441,0 +170736629593,441,0 +170736629642,441,0 +170736629690,441,0 +170736629738,441,0 +170736629788,441,0 +170736629837,300,1 +170736629923,283,1 +170736630001,441,0 +170736630049,441,0 +170736630097,441,0 +170736630145,441,0 +170736630193,441,0 +170736630241,441,0 +170736630289,441,0 +170736630336,441,0 +170736630384,441,0 +170736630432,441,0 +170736630480,441,0 +170736630528,441,0 +170736630576,441,0 +170736630625,441,0 +170736630673,441,0 +170736630721,441,0 +170736630769,441,0 +170736630817,441,0 +170736630865,429,0 +170736630913,296,1 +170736630991,438,0 +170736631039,441,0 +170736631089,441,0 +170736631138,441,0 +170736631186,441,0 +170736631234,441,0 +170736631282,441,0 +170736631332,441,0 +170736631380,441,0 +170736631428,441,0 +170736631477,441,0 +170736631527,441,0 +170736631574,441,0 +170736631622,441,0 +170736631670,441,0 +170736631720,441,0 +170736631768,441,0 +170736631816,441,0 +170736631865,441,0 +170736631913,314,0 +170736631961,306,1 +170736632040,439,0 +170736632088,441,0 +170736632136,441,0 +170736632186,441,0 +170736632234,441,0 +170736632282,441,0 +170736632330,441,0 +170736632378,441,0 +170736632427,441,0 +170736632477,441,0 +170736632524,441,0 +170736632572,441,0 +170736632620,441,0 +170736632668,441,0 +170736632716,441,0 +170736632766,441,0 +170736632814,441,0 +170736632863,441,0 +170736632911,441,0 +170736632959,288,1 +170736633042,299,1 +170736633125,441,0 +170736633173,441,0 +170736633221,441,0 +170736633271,441,0 +170736633319,441,0 +170736633367,441,0 +170736633416,441,0 +170736633464,441,0 +170736633512,441,0 +170736633560,441,0 +170736633608,441,0 +170736633656,441,0 +170736633704,441,0 +170736633752,441,0 +170736633801,441,0 +170736633849,441,0 +170736633897,441,0 +170736633945,441,0 +170736633993,441,0 +170736634040,296,1 +170736634118,268,0 +170736634165,441,0 +170736634213,441,0 +170736634261,441,0 +170736634311,441,0 +170736634359,441,0 +170736634406,441,0 +170736634454,441,0 +170736634502,441,0 +170736634550,441,0 +170736634598,441,0 +170736634646,441,0 +170736634694,441,0 +170736634742,441,0 +170736634789,441,0 +170736634837,441,0 +170736634885,441,0 +170736634933,441,0 +170736634983,441,0 +170736635032,441,0 +170736635080,297,1 +170736635165,236,0 +170736635214,441,0 +170736635262,441,0 +170736635310,441,0 +170736635358,441,0 +170736635406,441,0 +170736635454,441,0 +170736635503,441,0 +170736635551,441,0 +170736635599,441,0 +170736635647,441,0 +170736635697,441,0 +170736635745,441,0 +170736635793,441,0 +170736635841,441,0 +170736635888,441,0 +170736635936,441,0 +170736635986,441,0 +170736636034,441,0 +170736636082,441,0 +170736636130,299,1 +170736636213,272,1 +170736636289,441,0 +170736636337,441,0 +170736636385,441,0 +170736636435,441,0 +170736636484,441,0 +170736636534,441,0 +170736636583,441,0 +170736636631,441,0 +170736636680,441,0 +170736636728,442,0 +170736636776,441,0 +170736636824,441,0 +170736636872,441,0 +170736636920,441,0 +170736636969,441,0 +170736637019,441,0 +170736637067,441,0 +170736637115,441,0 +170736637163,291,1 +170736637245,299,1 +170736637320,441,0 +170736637368,441,0 +170736637418,441,0 +170736637466,441,0 +170736637513,441,0 +170736637561,441,0 +170736637609,441,0 +170736637659,441,0 +170736637708,441,0 +170736637758,441,0 +170736637806,441,0 +170736637854,441,0 +170736637902,441,0 +170736637950,441,0 +170736637998,441,0 +170736638046,441,0 +170736638094,441,0 +170736638141,441,0 +170736638189,441,0 +170736638239,288,1 +170736638318,402,0 +170736638368,441,0 +170736638416,441,0 +170736638463,441,0 +170736638511,441,0 +170736638559,441,0 +170736638607,441,0 +170736638655,441,0 +170736638703,441,0 +170736638751,441,0 +170736638798,441,0 +170736638846,441,0 +170736638894,441,0 +170736638942,441,0 +170736638990,441,0 +170736639038,441,0 +170736639087,441,0 +170736639135,441,0 +170736639183,441,0 +170736639231,441,0 +170736639281,295,1 +170736639363,253,0 +170736639410,441,0 +170736639458,441,0 +170736639506,441,0 +170736639554,441,0 +170736639603,441,0 +170736639651,441,0 +170736639701,441,0 +170736639748,441,0 +170736639796,441,0 +170736639844,441,0 +170736639892,441,0 +170736639942,441,0 +170736639990,441,0 +170736640039,441,0 +170736640089,441,0 +170736640137,441,0 +170736640185,441,0 +170736640233,441,0 +170736640281,441,0 +170736640329,297,1 +170736640406,237,0 +170736640455,441,0 +170736640503,441,0 +170736640553,441,0 +170736640601,441,0 +170736640649,441,0 +170736640697,441,0 +170736640745,441,0 +170736640793,441,0 +170736640841,441,0 +170736640888,441,0 +170736640938,441,0 +170736640986,441,0 +170736641035,441,0 +170736641085,441,0 +170736641133,441,0 +170736641183,441,0 +170736641230,441,0 +170736641278,441,0 +170736641328,441,0 +170736641376,284,1 +170736641455,281,1 +170736641534,441,0 +170736641584,441,0 +170736641632,441,0 +170736641680,441,0 +170736641729,441,0 +170736641777,441,0 +170736641827,441,0 +170736641875,441,0 +170736641923,441,0 +170736641971,441,0 +170736642019,441,0 +170736642068,441,0 +170736642116,441,0 +170736642164,441,0 +170736642212,441,0 +170736642260,441,0 +170736642309,441,0 +170736642357,441,0 +170736642405,441,0 +170736642453,305,1 +170736642533,438,0 +170736642581,441,0 +170736642629,441,0 +170736642677,441,0 +170736642724,441,0 +170736642772,441,0 +170736642820,441,0 +170736642868,441,0 +170736642916,441,0 +170736642964,441,0 +170736643012,441,0 +170736643060,441,0 +170736643108,441,0 +170736643156,441,0 +170736643203,441,0 +170736643253,441,0 +170736643301,441,0 +170736643351,441,0 +170736643398,441,0 +170736643448,440,0 +170736643497,304,1 +170736643578,437,0 +170736643627,441,0 +170736643675,441,0 +170736643723,441,0 +170736643771,441,0 +170736643819,441,0 +170736643867,441,0 +170736643917,441,0 +170736643966,441,0 +170736644014,441,0 +170736644064,441,0 +170736644112,441,0 +170736644161,441,0 +170736644209,441,0 +170736644259,441,0 +170736644307,441,0 +170736644355,441,0 +170736644404,441,0 +170736644452,441,0 +170736644500,440,0 +170736644548,299,1 +170736644632,439,0 +170736644680,441,0 +170736644729,441,0 +170736644777,441,0 +170736644827,441,0 +170736644876,441,0 +170736644924,441,0 +170736644974,441,0 +170736645022,441,0 +170736645069,441,0 +170736645117,441,0 +170736645165,441,0 +170736645215,441,0 +170736645263,441,0 +170736645312,441,0 +170736645360,441,0 +170736645410,441,0 +170736645458,441,0 +170736645506,441,0 +170736645554,440,0 +170736645602,298,1 +170736645682,437,0 +170736645730,441,0 +170736645778,441,0 +170736645826,441,0 +170736645874,441,0 +170736645922,441,0 +170736645970,441,0 +170736646020,441,0 +170736646068,441,0 +170736646115,441,0 +170736646163,441,0 +170736646213,441,0 +170736646261,441,0 +170736646311,441,0 +170736646359,441,0 +170736646407,441,0 +170736646456,441,0 +170736646506,441,0 +170736646555,441,0 +170736646603,268,0 +170736646651,287,1 +170736646727,439,0 +170736646775,441,0 +170736646823,441,0 +170736646871,441,0 +170736646921,441,0 +170736646969,441,0 +170736647017,441,0 +170736647066,441,0 +170736647114,441,0 +170736647164,441,0 +170736647212,441,0 +170736647260,441,0 +170736647307,441,0 +170736647355,441,0 +170736647403,441,0 +170736647451,441,0 +170736647499,441,0 +170736647547,441,0 +170736647595,441,0 +170736647644,440,0 +170736647692,285,1 +170736647775,438,0 +170736647823,441,0 +170736647871,441,0 +170736647918,441,0 +170736647966,441,0 +170736648014,441,0 +170736648062,441,0 +170736648110,441,0 +170736648158,441,0 +170736648206,441,0 +170736648254,441,0 +170736648302,441,0 +170736648351,441,0 +170736648399,441,0 +170736648447,441,0 +170736648495,441,0 +170736648543,441,0 +170736648591,441,0 +170736648640,441,0 +170736648688,441,0 +170736648738,295,1 +170736648818,437,0 +170736648867,441,0 +170736648917,441,0 +170736648966,441,0 +170736649014,441,0 +170736649062,441,0 +170736649110,441,0 +170736649158,441,0 +170736649206,441,0 +170736649255,441,0 +170736649303,441,0 +170736649351,441,0 +170736649399,441,0 +170736649447,441,0 +170736649497,441,0 +170736649545,441,0 +170736649594,441,0 +170736649642,441,0 +170736649690,441,0 +170736649738,441,0 +170736649786,301,1 +170736649865,438,0 +170736649913,441,0 +170736649961,441,0 +170736650009,441,0 +170736650058,441,0 +170736650107,441,0 +170736650154,441,0 +170736650204,441,0 +170736650252,441,0 +170736650300,441,0 +170736650348,441,0 +170736650398,441,0 +170736650446,441,0 +170736650495,441,0 +170736650543,441,0 +170736650591,441,0 +170736650639,441,0 +170736650687,441,0 +170736650735,441,0 +170736650785,441,0 +170736650834,300,1 +170736650914,438,0 +170736650964,441,0 +170736651013,441,0 +170736651061,441,0 +170736651109,441,0 +170736651157,441,0 +170736651205,441,0 +170736651254,441,0 +170736651302,441,0 +170736651350,441,0 +170736651398,441,0 +170736651447,441,0 +170736651495,441,0 +170736651545,441,0 +170736651593,441,0 +170736651641,441,0 +170736651688,441,0 +170736651736,441,0 +170736651784,441,0 +170736651834,441,0 +170736651881,280,1 +170736651962,422,0 +170736652010,441,0 +170736652058,441,0 +170736652106,441,0 +170736652153,441,0 +170736652201,441,0 +170736652249,441,0 +170736652297,441,0 +170736652345,441,0 +170736652393,441,0 +170736652441,441,0 +170736652489,441,0 +170736652538,441,0 +170736652586,441,0 +170736652634,441,0 +170736652683,441,0 +170736652731,441,0 +170736652779,441,0 +170736652829,441,0 +170736652877,441,0 +170736652926,298,1 +170736653011,436,0 +170736653064,441,0 +170736653112,441,0 +170736653161,441,0 +170736653209,441,0 +170736653257,441,0 +170736653307,441,0 +170736653356,441,0 +170736653404,441,0 +170736653454,441,0 +170736653502,441,0 +170736653550,441,0 +170736653599,441,0 +170736653647,441,0 +170736653697,441,0 +170736653745,441,0 +170736653793,441,0 +170736653841,441,0 +170736653889,441,0 +170736653938,440,0 +170736653988,309,1 +170736654069,437,0 +170736654118,441,0 +170736654166,441,0 +170736654216,441,0 +170736654264,441,0 +170736654312,441,0 +170736654361,441,0 +170736654409,441,0 +170736654457,441,0 +170736654505,441,0 +170736654553,441,0 +170736654601,441,0 +170736654649,441,0 +170736654697,441,0 +170736654745,441,0 +170736654793,441,0 +170736654841,441,0 +170736654890,441,0 +170736654938,441,0 +170736654986,440,0 +170736655034,298,1 +170736655114,435,0 +170736655162,441,0 +170736655210,441,0 +170736655258,441,0 +170736655307,441,0 +170736655355,441,0 +170736655403,441,0 +170736655451,440,0 +170736655499,441,0 +170736655549,440,0 +170736655598,440,0 +170736655646,440,0 +170736655694,440,0 +170736655742,440,0 +170736655790,440,0 +170736655839,440,0 +170736655887,440,0 +170736655935,440,0 +170736655983,440,0 +170736656033,440,0 +170736656082,286,1 +170736656163,431,0 +170736656211,440,0 +170736656260,440,0 +170736656308,440,0 +170736656356,440,0 +170736656404,440,0 +170736656452,440,0 +170736656500,440,0 +170736656550,440,0 +170736656599,440,0 +170736656647,440,0 +170736656695,440,0 +170736656743,440,0 +170736656793,440,0 +170736656842,440,0 +170736656890,440,0 +170736656938,440,0 +170736656986,440,0 +170736657035,440,0 +170736657085,439,0 +170736657133,287,1 +170736657212,434,0 +170736657259,440,0 +170736657307,440,0 +170736657355,440,0 +170736657403,440,0 +170736657451,440,0 +170736657499,440,0 +170736657547,440,0 +170736657597,440,0 +170736657645,440,0 +170736657694,440,0 +170736657742,440,0 +170736657790,440,0 +170736657838,440,0 +170736657886,440,0 +170736657934,440,0 +170736657982,440,0 +170736658030,440,0 +170736658079,440,0 +170736658127,440,0 +170736658175,288,1 +170736658256,284,1 +170736658332,440,0 +170736658380,440,0 +170736658427,440,0 +170736658477,440,0 +170736658525,440,0 +170736658574,440,0 +170736658622,440,0 +170736658670,440,0 +170736658718,440,0 +170736658766,440,0 +170736658814,440,0 +170736658862,440,0 +170736658910,440,0 +170736658958,440,0 +170736659006,440,0 +170736659054,440,0 +170736659103,440,0 +170736659153,440,0 +170736659202,307,1 +170736659277,298,1 +170736659356,440,0 +170736659406,440,0 +170736659455,440,0 +170736659503,440,0 +170736659551,440,0 +170736659599,440,0 +170736659647,440,0 +170736659695,440,0 +170736659743,440,0 +170736659792,440,0 +170736659840,440,0 +170736659888,440,0 +170736659936,440,0 +170736659985,440,0 +170736660033,440,0 +170736660081,440,0 +170736660129,440,0 +170736660177,440,0 +170736660225,440,0 +170736660273,285,1 +170736660352,229,0 +170736660400,440,0 +170736660449,440,0 +170736660497,440,0 +170736660545,440,0 +170736660595,440,0 +170736660643,440,0 +170736660691,440,0 +170736660739,440,0 +170736660788,440,0 +170736660838,440,0 +170736660886,440,0 +170736660936,440,0 +170736660984,440,0 +170736661031,440,0 +170736661081,440,0 +170736661129,440,0 +170736661179,440,0 +170736661226,440,0 +170736661274,440,0 +170736661324,270,1 +170736661404,434,0 +170736661453,440,0 +170736661501,440,0 +170736661549,440,0 +170736661597,440,0 +170736661645,440,0 +170736661694,440,0 +170736661742,440,0 +170736661792,440,0 +170736661840,440,0 +170736661888,440,0 +170736661936,440,0 +170736661984,440,0 +170736662033,440,0 +170736662083,440,0 +170736662132,440,0 +170736662182,440,0 +170736662230,440,0 +170736662278,440,0 +170736662327,440,0 +170736662377,284,1 +170736662459,435,0 +170736662508,440,0 +170736662556,440,0 +170736662606,440,0 +170736662655,440,0 +170736662705,440,0 +170736662753,440,0 +170736662802,440,0 +170736662852,441,0 +170736662900,440,0 +170736662948,440,0 +170736662997,440,0 +170736663045,440,0 +170736663093,440,0 +170736663141,440,0 +170736663191,440,0 +170736663239,440,0 +170736663288,440,0 +170736663336,440,0 +170736663384,440,0 +170736663432,291,1 +170736663515,437,0 +170736663564,440,0 +170736663614,440,0 +170736663663,440,0 +170736663711,440,0 +170736663761,440,0 +170736663809,440,0 +170736663858,440,0 +170736663906,440,0 +170736663954,440,0 +170736664002,440,0 +170736664050,440,0 +170736664098,440,0 +170736664146,440,0 +170736664194,440,0 +170736664242,440,0 +170736664290,440,0 +170736664340,440,0 +170736664387,440,0 +170736664435,440,0 +170736664483,299,1 +170736664562,435,0 +170736664610,440,0 +170736664658,440,0 +170736664706,440,0 +170736664755,440,0 +170736664805,440,0 +170736664853,441,0 +170736664901,440,0 +170736664949,440,0 +170736664997,440,0 +170736665045,440,0 +170736665093,441,0 +170736665141,440,0 +170736665190,440,0 +170736665238,441,0 +170736665286,440,0 +170736665336,440,0 +170736665383,440,0 +170736665433,440,0 +170736665481,291,1 +170736665561,434,0 +170736665609,440,0 +170736665657,440,0 +170736665705,440,0 +170736665753,440,0 +170736665801,440,0 +170736665850,440,0 +170736665898,441,0 +170736665946,440,0 +170736665996,440,0 +170736666044,440,0 +170736666092,440,0 +170736666141,440,0 +170736666189,440,0 +170736666237,440,0 +170736666285,440,0 +170736666333,440,0 +170736666381,282,1 +170736666461,435,0 +170736666509,440,0 +170736666558,440,0 +170736666606,440,0 +170736666654,440,0 +170736666702,440,0 +170736666750,440,0 +170736666798,440,0 +170736666847,440,0 +170736666895,440,0 +170736666945,440,0 +170736666993,440,0 +170736667041,440,0 +170736667089,440,0 +170736667138,440,0 +170736667186,440,0 +170736667236,286,1 +170736667318,434,0 +170736667370,440,0 +170736667420,439,0 +170736667469,440,0 +170736667517,440,0 +170736667565,440,0 +170736667613,440,0 +170736667661,439,0 +170736667709,440,0 +170736667759,440,0 +170736667808,439,0 +170736667856,440,0 +170736667904,440,0 +170736667952,439,0 +170736668000,439,0 +170736668050,439,0 +170736668098,293,1 +170736668180,434,0 +170736668228,439,0 +170736668276,439,0 +170736668324,440,0 +170736668372,439,0 +170736668421,439,0 +170736668469,439,0 +170736668519,439,0 +170736668568,439,0 +170736668616,440,0 +170736668664,439,0 +170736668714,439,0 +170736668762,439,0 +170736668810,440,0 +170736668859,440,0 +170736668907,439,0 +170736668955,291,1 +170736669036,438,0 +170736669084,440,0 +170736669132,440,0 +170736669180,440,0 +170736669228,440,0 +170736669276,440,0 +170736669324,440,0 +170736669372,440,0 +170736669420,440,0 +170736669468,440,0 +170736669516,440,0 +170736669564,440,0 +170736669614,440,0 +170736669663,440,0 +170736669711,440,0 +170736669759,440,0 +170736669808,292,1 +170736669888,434,0 +170736669937,440,0 +170736669985,440,0 +170736670035,440,0 +170736670083,440,0 +170736670131,440,0 +170736670179,440,0 +170736670228,440,0 +170736670277,440,0 +170736670325,440,0 +170736670373,440,0 +170736670421,440,0 +170736670469,440,0 +170736670517,439,0 +170736670565,439,0 +170736670613,439,0 +170736670663,264,0 +170736670711,265,0 +170736670759,438,0 +170736670806,440,0 +170736670854,440,0 +170736670902,440,0 +170736670950,440,0 +170736670998,440,0 +170736671046,439,0 +170736671094,439,0 +170736671144,439,0 +170736671192,440,0 +170736671240,439,0 +170736671289,440,0 +170736671339,440,0 +170736671387,439,0 +170736671435,440,0 +170736671484,439,0 +170736671532,274,1 +170736671617,439,0 +170736671665,440,0 +170736671713,440,0 +170736671762,440,0 +170736671810,440,0 +170736671858,440,0 +170736671906,440,0 +170736671954,440,0 +170736672002,440,0 +170736672051,440,0 +170736672099,440,0 +170736672147,440,0 +170736672195,440,0 +170736672243,440,0 +170736672291,235,0 +170736672339,226,0 +170736672387,264,0 +170736672437,237,0 +170736672485,221,0 +170736672533,220,0 +170736672581,220,0 +170736672630,220,0 +170736672678,220,0 +170736672726,221,0 +170736672774,220,0 +170736672822,220,0 +170736672870,220,0 +170736672918,220,0 +170736672966,220,0 +170736673014,220,0 +170736673062,221,0 +170736673111,225,0 +170736673159,227,0 +170736673207,232,0 +170736673255,287,1 +170736673336,221,0 +170736673386,221,0 +170736673435,220,0 +170736673483,219,0 +170736673531,220,0 +170736673581,219,0 +170736673629,220,0 +170736673678,220,0 +170736673726,220,0 +170736673774,220,0 +170736673824,220,0 +170736673872,220,0 +170736673920,220,0 +170736673968,220,0 +170736674016,220,0 +170736674064,229,0 +170736674113,290,1 +170736674199,220,0 +170736674247,220,0 +170736674295,219,0 +170736674343,219,0 +170736674391,219,0 +170736674439,219,0 +170736674487,219,0 +170736674535,220,0 +170736674582,219,0 +170736674630,220,0 +170736674678,220,0 +170736674726,220,0 +170736674774,219,0 +170736674822,219,0 +170736674870,220,0 +170736674918,230,0 +170736674965,293,1 +170736675044,221,0 +170736675092,219,0 +170736675140,219,0 +170736675189,220,0 +170736675237,219,0 +170736675285,219,0 +170736675335,219,0 +170736675383,219,0 +170736675431,219,0 +170736675479,220,0 +170736675527,219,0 +170736675575,219,0 +170736675622,220,0 +170736675672,220,0 +170736675720,220,0 +170736675768,221,0 +170736675818,300,1 +170736675897,221,0 +170736675945,220,0 +170736675993,220,0 +170736676042,219,0 +170736676090,219,0 +170736676138,220,0 +170736676186,220,0 +170736676234,220,0 +170736676283,220,0 +170736676331,219,0 +170736676379,220,0 +170736676427,219,0 +170736676475,220,0 +170736676523,220,0 +170736676571,220,0 +170736676621,221,0 +170736676670,294,1 +170736676749,228,0 +170736676797,220,0 +170736676845,220,0 +170736676893,220,0 +170736676943,220,0 +170736676991,220,0 +170736677039,219,0 +170736677088,220,0 +170736677136,220,0 +170736677184,220,0 +170736677233,220,0 +170736677281,220,0 +170736677331,220,0 +170736677379,220,0 +170736677427,220,0 +170736677476,223,0 +170736677524,306,1 +170736677612,221,0 +170736677660,220,0 +170736677708,219,0 +170736677756,219,0 +170736677805,220,0 +170736677853,220,0 +170736677901,219,0 +170736677951,219,0 +170736677999,219,0 +170736678046,220,0 +170736678094,219,0 +170736678144,219,0 +170736678193,220,0 +170736678243,220,0 +170736678291,220,0 +170736678340,223,0 +170736678388,296,1 +170736678469,220,0 +170736678518,220,0 +170736678566,219,0 +170736678614,220,0 +170736678662,220,0 +170736678711,219,0 +170736678761,219,0 +170736678809,220,0 +170736678857,219,0 +170736678905,219,0 +170736678953,220,0 +170736679001,219,0 +170736679049,219,0 +170736679098,219,0 +170736679148,220,0 +170736679196,222,0 +170736679243,296,1 +170736679322,222,0 +170736679370,219,0 +170736679417,219,0 +170736679465,219,0 +170736679513,219,0 +170736679561,220,0 +170736679609,219,0 +170736679658,219,0 +170736679706,219,0 +170736679754,219,0 +170736679802,219,0 +170736679850,219,0 +170736679898,219,0 +170736679946,219,0 +170736679994,219,0 +170736680042,224,0 +170736680092,292,1 +170736680169,230,0 +170736680217,220,0 +170736680265,219,0 +170736680313,219,0 +170736680362,219,0 +170736680410,219,0 +170736680458,220,0 +170736680508,219,0 +170736680557,220,0 +170736680605,220,0 +170736680653,220,0 +170736680701,220,0 +170736680749,220,0 +170736680799,220,0 +170736680847,219,0 +170736680895,222,0 +170736680943,293,1 +170736681020,229,0 +170736681070,220,0 +170736681118,219,0 +170736681166,220,0 +170736681215,220,0 +170736681265,220,0 +170736681314,219,0 +170736681362,220,0 +170736681412,219,0 +170736681460,219,0 +170736681508,220,0 +170736681556,220,0 +170736681605,220,0 +170736681653,220,0 +170736681701,220,0 +170736681749,222,0 +170736681797,271,1 +170736681873,239,0 +170736681923,221,0 +170736681972,220,0 +170736682020,220,0 +170736682070,220,0 +170736682118,220,0 +170736682166,221,0 +170736682214,221,0 +170736682263,220,0 +170736682311,220,0 +170736682361,220,0 +170736682409,220,0 +170736682457,220,0 +170736682505,220,0 +170736682553,220,0 +170736682601,221,0 +170736682649,295,1 +170736682730,241,0 +170736682780,221,0 +170736682830,220,0 +170736682879,220,0 +170736682927,220,0 +170736682977,220,0 +170736683026,220,0 +170736683076,220,0 +170736683123,220,0 +170736683171,220,0 +170736683219,220,0 +170736683267,220,0 +170736683315,220,0 +170736683365,220,0 +170736683414,220,0 +170736683462,222,0 +170736683510,283,1 +170736683592,230,0 +170736683641,220,0 +170736683689,220,0 +170736683737,220,0 +170736683785,220,0 +170736683835,220,0 +170736683884,220,0 +170736683932,220,0 +170736683982,220,0 +170736684030,220,0 +170736684078,221,0 +170736684126,221,0 +170736684173,220,0 +170736684223,221,0 +170736684272,220,0 +170736684320,222,0 +170736684368,280,1 +170736684448,227,0 +170736684496,220,0 +170736684544,221,0 +170736684592,221,0 +170736684640,220,0 +170736684688,220,0 +170736684736,221,0 +170736684783,220,0 +170736684831,220,0 +170736684881,220,0 +170736684929,220,0 +170736684977,220,0 +170736685024,220,0 +170736685072,221,0 +170736685122,221,0 +170736685170,221,0 +170736685217,282,1 +170736685295,235,0 +170736685343,221,0 +170736685391,220,0 +170736685439,221,0 +170736685488,220,0 +170736685538,220,0 +170736685586,220,0 +170736685634,221,0 +170736685682,220,0 +170736685730,220,0 +170736685777,220,0 +170736685825,220,0 +170736685873,220,0 +170736685921,220,0 +170736685971,221,0 +170736686018,221,0 +170736686066,304,1 +170736686147,239,0 +170736686194,220,0 +170736686242,220,0 +170736686290,220,0 +170736686338,220,0 +170736686386,220,0 +170736686434,220,0 +170736686482,220,0 +170736686530,220,0 +170736686577,220,0 +170736686625,220,0 +170736686673,220,0 +170736686721,220,0 +170736686769,220,0 +170736686817,220,0 +170736686865,221,0 +170736686914,261,0 +170736686962,307,1 +170736687038,221,0 +170736687086,220,0 +170736687134,220,0 +170736687182,220,0 +170736687230,220,0 +170736687278,220,0 +170736687326,220,0 +170736687374,220,0 +170736687422,220,0 +170736687470,220,0 +170736687518,220,0 +170736687566,220,0 +170736687614,220,0 +170736687663,220,0 +170736687713,220,0 +170736687762,223,0 +170736687812,292,1 +170736687890,222,0 +170736687938,220,0 +170736687986,220,0 +170736688036,220,0 +170736688084,220,0 +170736688131,220,0 +170736688179,221,0 +170736688227,220,0 +170736688275,220,0 +170736688323,221,0 +170736688371,220,0 +170736688421,220,0 +170736688470,220,0 +170736688518,220,0 +170736688566,220,0 +170736688614,222,0 +170736688664,298,1 +170736688746,223,0 +170736688796,220,0 +170736688845,221,0 +170736688893,220,0 +170736688941,220,0 +170736688989,220,0 +170736689039,221,0 +170736689088,220,0 +170736689138,221,0 +170736689186,220,0 +170736689234,220,0 +170736689283,220,0 +170736689331,220,0 +170736689379,220,0 +170736689427,221,0 +170736689475,223,0 +170736689523,256,0 +170736689571,229,0 +170736689619,221,0 +170736689668,220,0 +170736689716,221,0 +170736689764,220,0 +170736689812,220,0 +170736689862,220,0 +170736689910,220,0 +170736689958,220,0 +170736690007,220,0 +170736690055,220,0 +170736690103,220,0 +170736690151,220,0 +170736690201,220,0 +170736690249,220,0 +170736690297,221,0 +170736690345,234,0 +170736690393,257,0 +170736690441,230,0 +170736690489,221,0 +170736690537,220,0 +170736690586,220,0 +170736690635,221,0 +170736690683,220,0 +170736690731,221,0 +170736690779,220,0 +170736690827,220,0 +170736690875,220,0 +170736690925,221,0 +170736690973,221,0 +170736691021,220,0 +170736691069,220,0 +170736691118,220,0 +170736691166,221,0 +170736691214,253,0 +170736691262,256,0 +170736691312,223,0 +170736691361,220,0 +170736691409,220,0 +170736691459,220,0 +170736691507,220,0 +170736691555,220,0 +170736691602,220,0 +170736691652,220,0 +170736691700,220,0 +170736691748,220,0 +170736691796,221,0 +170736691844,220,0 +170736691892,220,0 +170736691941,221,0 +170736691989,220,0 +170736692037,222,0 +170736692085,267,0 +170736692133,226,0 +170736692181,221,0 +170736692229,220,0 +170736692277,220,0 +170736692325,221,0 +170736692373,220,0 +170736692421,220,0 +170736692469,220,0 +170736692517,220,0 +170736692566,220,0 +170736692616,220,0 +170736692664,220,0 +170736692712,220,0 +170736692761,220,0 +170736692809,220,0 +170736692859,221,0 +170736692907,225,0 +170736692956,257,0 +170736693004,229,0 +170736693052,221,0 +170736693102,220,0 +170736693150,220,0 +170736693199,220,0 +170736693247,220,0 +170736693295,220,0 +170736693343,220,0 +170736693391,220,0 +170736693439,220,0 +170736693486,220,0 +170736693536,220,0 +170736693584,220,0 +170736693632,220,0 +170736693681,220,0 +170736693729,223,0 +170736693777,249,0 +170736693826,256,0 +170736693874,226,0 +170736693924,221,0 +170736693973,221,0 +170736694021,221,0 +170736694069,220,0 +170736694117,221,0 +170736694165,220,0 +170736694215,221,0 +170736694263,221,0 +170736694312,221,0 +170736694362,220,0 +170736694410,221,0 +170736694459,220,0 +170736694509,222,0 +170736694557,225,0 +170736694605,232,0 +170736694654,255,0 +170736694704,230,0 +170736694752,220,0 +170736694801,220,0 +170736694849,220,0 +170736694897,220,0 +170736694947,220,0 +170736694996,220,0 +170736695046,220,0 +170736695094,219,0 +170736695143,220,0 +170736695191,220,0 +170736695241,220,0 +170736695290,219,0 +170736695338,220,0 +170736695386,221,0 +170736695434,223,0 +170736695482,240,0 +170736695530,293,1 +170736695615,221,0 +170736695663,220,0 +170736695712,220,0 +170736695760,220,0 +170736695808,220,0 +170736695858,220,0 +170736695907,221,0 +170736695955,220,0 +170736696003,220,0 +170736696053,220,0 +170736696102,221,0 +170736696152,220,0 +170736696200,221,0 +170736696248,220,0 +170736696296,222,0 +170736696343,273,1 +170736696419,231,0 +170736696467,220,0 +170736696515,219,0 +170736696563,220,0 +170736696611,219,0 +170736696659,220,0 +170736696707,219,0 +170736696755,220,0 +170736696803,220,0 +170736696851,219,0 +170736696900,220,0 +170736696950,220,0 +170736696999,220,0 +170736697047,221,0 +170736697097,222,0 +170736697145,228,0 +170736697194,237,0 +170736697242,294,1 +170736697327,220,0 +170736697375,220,0 +170736697423,220,0 +170736697472,220,0 +170736697520,220,0 +170736697570,220,0 +170736697618,220,0 +170736697666,219,0 +170736697715,220,0 +170736697765,220,0 +170736697814,220,0 +170736697862,220,0 +170736697912,220,0 +170736697960,221,0 +170736698008,224,0 +170736698056,288,1 +170736698133,231,0 +170736698183,220,0 +170736698231,220,0 +170736698280,220,0 +170736698330,220,0 +170736698378,220,0 +170736698426,220,0 +170736698475,219,0 +170736698523,219,0 +170736698571,220,0 +170736698619,220,0 +170736698667,220,0 +170736698717,220,0 +170736698765,219,0 +170736698813,220,0 +170736698861,222,0 +170736698910,287,1 +170736698992,239,0 +170736699040,220,0 +170736699088,220,0 +170736699137,220,0 +170736699185,220,0 +170736699235,220,0 +170736699284,220,0 +170736699334,220,0 +170736699383,220,0 +170736699433,220,0 +170736699481,220,0 +170736699529,220,0 +170736699577,220,0 +170736699625,220,0 +170736699673,220,0 +170736699721,221,0 +170736699769,245,0 +170736699818,301,1 +170736699903,219,0 +170736699951,219,0 +170736699999,220,0 +170736700047,219,0 +170736700096,219,0 +170736700144,220,0 +170736700192,220,0 +170736700240,220,0 +170736700289,219,0 +170736700337,219,0 +170736700385,219,0 +170736700433,220,0 +170736700481,219,0 +170736700529,220,0 +170736700577,220,0 +170736700625,241,0 +170736700673,297,1 +170736700753,221,0 +170736700803,220,0 +170736700851,220,0 +170736700900,220,0 +170736700948,220,0 +170736700996,219,0 +170736701046,220,0 +170736701094,220,0 +170736701143,220,0 +170736701193,220,0 +170736701241,220,0 +170736701289,220,0 +170736701338,220,0 +170736701388,220,0 +170736701436,221,0 +170736701485,301,1 +170736701565,245,0 +170736701613,220,0 +170736701661,220,0 +170736701711,220,0 +170736701759,220,0 +170736701807,220,0 +170736701855,220,0 +170736701903,220,0 +170736701952,220,0 +170736702000,220,0 +170736702050,220,0 +170736702099,220,0 +170736702147,220,0 +170736702195,220,0 +170736702243,219,0 +170736702291,220,0 +170736702341,264,0 +170736702389,302,1 +170736702471,220,0 +170736702520,220,0 +170736702568,220,0 +170736702616,220,0 +170736702664,220,0 +170736702712,220,0 +170736702760,220,0 +170736702808,220,0 +170736702856,220,0 +170736702904,220,0 +170736702952,220,0 +170736703000,220,0 +170736703048,220,0 +170736703096,220,0 +170736703144,220,0 +170736703194,284,1 +170736703278,242,0 +170736703326,221,0 +170736703374,220,0 +170736703424,220,0 +170736703472,220,0 +170736703520,220,0 +170736703568,220,0 +170736703616,220,0 +170736703663,220,0 +170736703711,220,0 +170736703759,220,0 +170736703807,220,0 +170736703855,220,0 +170736703904,220,0 +170736703952,220,0 +170736704000,220,0 +170736704050,273,1 +170736704128,234,0 +170736704177,220,0 +170736704227,219,0 +170736704275,219,0 +170736704323,219,0 +170736704371,219,0 +170736704420,219,0 +170736704470,219,0 +170736704519,219,0 +170736704569,219,0 +170736704618,220,0 +170736704666,220,0 +170736704714,219,0 +170736704762,220,0 +170736704810,219,0 +170736704858,220,0 +170736704906,250,0 +170736704954,253,0 +170736705002,225,0 +170736705049,219,0 +170736705097,220,0 +170736705145,219,0 +170736705193,219,0 +170736705241,219,0 +170736705289,219,0 +170736705339,219,0 +170736705387,219,0 +170736705435,219,0 +170736705483,219,0 +170736705531,219,0 +170736705578,219,0 +170736705626,219,0 +170736705674,220,0 +170736705724,219,0 +170736705773,254,0 +170736705821,254,0 +170736705871,225,0 +170736705919,220,0 +170736705968,219,0 +170736706016,219,0 +170736706064,219,0 +170736706112,219,0 +170736706160,219,0 +170736706210,219,0 +170736706259,219,0 +170736706307,219,0 +170736706355,219,0 +170736706405,220,0 +170736706454,219,0 +170736706502,219,0 +170736706550,221,0 +170736706598,224,0 +170736706646,268,0 +170736706696,224,0 +170736706744,220,0 +170736706793,219,0 +170736706841,219,0 +170736706889,219,0 +170736706937,219,0 +170736706985,219,0 +170736707033,219,0 +170736707082,219,0 +170736707130,219,0 +170736707180,218,0 +170736707228,219,0 +170736707276,219,0 +170736707324,219,0 +170736707372,219,0 +170736707421,219,0 +170736707469,239,0 +170736707519,294,1 +170736707598,219,0 +170736707647,219,0 +170736707695,219,0 +170736707743,219,0 +170736707791,218,0 +170736707841,219,0 +170736707890,219,0 +170736707940,218,0 +170736707988,219,0 +170736708037,219,0 +170736708085,218,0 +170736708133,219,0 +170736708182,219,0 +170736708230,219,0 +170736708278,219,0 +170736708326,235,0 +170736708376,293,1 +170736708455,219,0 +170736708504,218,0 +170736708552,218,0 +170736708600,218,0 +170736708648,218,0 +170736708696,218,0 +170736708746,218,0 +170736708793,219,0 +170736708843,219,0 +170736708891,219,0 +170736708939,219,0 +170736708987,218,0 +170736709036,218,0 +170736709084,218,0 +170736709132,219,0 +170736709180,230,0 +170736709228,296,1 +170736709311,219,0 +170736709359,219,0 +170736709408,219,0 +170736709456,219,0 +170736709504,218,0 +170736709552,219,0 +170736709600,219,0 +170736709648,218,0 +170736709696,218,0 +170736709744,218,0 +170736709794,219,0 +170736709843,218,0 +170736709891,218,0 +170736709939,219,0 +170736709987,219,0 +170736710035,253,0 +170736710083,292,1 +170736710160,219,0 +170736710208,218,0 +170736710256,218,0 +170736710304,218,0 +170736710352,219,0 +170736710400,218,0 +170736710448,218,0 +170736710496,219,0 +170736710545,218,0 +170736710593,219,0 +170736710643,219,0 +170736710691,219,0 +170736710739,218,0 +170736710787,218,0 +170736710836,219,0 +170736710884,224,0 +170736710934,290,1 +170736711022,219,0 +170736711071,219,0 +170736711119,219,0 +170736711168,219,0 +170736711216,219,0 +170736711266,220,0 +170736711315,219,0 +170736711363,219,0 +170736711411,219,0 +170736711461,219,0 +170736711509,219,0 +170736711558,219,0 +170736711606,219,0 +170736711654,219,0 +170736711702,220,0 +170736711750,245,0 +170736711798,295,1 +170736711877,220,0 +170736711927,220,0 +170736711975,220,0 +170736712023,220,0 +170736712072,220,0 +170736712120,219,0 +170736712168,219,0 +170736712216,220,0 +170736712266,220,0 +170736712315,220,0 +170736712363,219,0 +170736712413,219,0 +170736712462,220,0 +170736712510,220,0 +170736712560,220,0 +170736712609,243,0 +170736712659,287,1 +170736712734,220,0 +170736712782,219,0 +170736712830,219,0 +170736712880,219,0 +170736712929,219,0 +170736712977,219,0 +170736713026,219,0 +170736713074,219,0 +170736713122,219,0 +170736713172,219,0 +170736713220,219,0 +170736713268,219,0 +170736713316,219,0 +170736713364,219,0 +170736713412,220,0 +170736713460,244,0 +170736713508,286,1 +170736713589,220,0 +170736713639,220,0 +170736713688,220,0 +170736713738,220,0 +170736713786,219,0 +170736713834,219,0 +170736713882,220,0 +170736713930,219,0 +170736713978,219,0 +170736714025,219,0 +170736714073,220,0 +170736714123,219,0 +170736714171,219,0 +170736714219,219,0 +170736714267,220,0 +170736714316,231,0 +170736714364,279,1 +170736714443,220,0 +170736714491,219,0 +170736714539,220,0 +170736714587,219,0 +170736714637,219,0 +170736714686,220,0 +170736714734,219,0 +170736714782,219,0 +170736714832,220,0 +170736714880,219,0 +170736714928,219,0 +170736714977,219,0 +170736715025,219,0 +170736715073,220,0 +170736715122,219,0 +170736715170,227,0 +170736715218,280,1 +170736715297,220,0 +170736715345,219,0 +170736715393,219,0 +170736715441,219,0 +170736715489,220,0 +170736715538,219,0 +170736715586,219,0 +170736715634,219,0 +170736715682,219,0 +170736715730,219,0 +170736715778,219,0 +170736715827,219,0 +170736715875,219,0 +170736715923,220,0 +170736715971,225,0 +170736716021,234,0 +170736716069,274,1 +170736716148,220,0 +170736716195,219,0 +170736716243,219,0 +170736716293,219,0 +170736716341,219,0 +170736716389,219,0 +170736716437,219,0 +170736716485,219,0 +170736716533,219,0 +170736716581,219,0 +170736716630,219,0 +170736716678,220,0 +170736716726,220,0 +170736716774,219,0 +170736716822,220,0 +170736716870,223,0 +170736716918,254,0 +170736716966,226,0 +170736717016,220,0 +170736717065,219,0 +170736717113,220,0 +170736717161,220,0 +170736717209,220,0 +170736717257,220,0 +170736717305,220,0 +170736717354,219,0 +170736717402,219,0 +170736717452,220,0 +170736717500,220,0 +170736717549,221,0 +170736717599,223,0 +170736717648,225,0 +170736717696,233,0 +170736717746,237,0 +170736717794,254,0 +170736717842,226,0 +170736717890,220,0 +170736717939,219,0 +170736717987,219,0 +170736718035,220,0 +170736718085,220,0 +170736718134,219,0 +170736718182,220,0 +170736718232,220,0 +170736718280,220,0 +170736718328,220,0 +170736718377,219,0 +170736718425,220,0 +170736718473,220,0 +170736718521,220,0 +170736718571,221,0 +170736718619,255,0 +170736718668,257,0 +170736718716,222,0 +170736718764,220,0 +170736718812,220,0 +170736718860,219,0 +170736718908,220,0 +170736718956,220,0 +170736719004,220,0 +170736719053,220,0 +170736719103,220,0 +170736719151,220,0 +170736719199,220,0 +170736719248,220,0 +170736719296,220,0 +170736719344,220,0 +170736719392,220,0 +170736719440,223,0 +170736719488,291,1 +170736719567,222,0 +170736719617,220,0 +170736719666,220,0 +170736719716,220,0 +170736719764,220,0 +170736719812,220,0 +170736719860,220,0 +170736719908,220,0 +170736719956,220,0 +170736720004,220,0 +170736720052,220,0 +170736720100,220,0 +170736720148,220,0 +170736720195,219,0 +170736720243,220,0 +170736720293,222,0 +170736720341,283,1 +170736720419,221,0 +170736720468,220,0 +170736720516,220,0 +170736720564,220,0 +170736720615,220,0 +170736720664,220,0 +170736720712,220,0 +170736720762,220,0 +170736720809,220,0 +170736720857,219,0 +170736720905,220,0 +170736720953,220,0 +170736721001,220,0 +170736721049,221,0 +170736721099,220,0 +170736721147,221,0 +170736721196,291,1 +170736721279,224,0 +170736721329,221,0 +170736721377,220,0 +170736721425,220,0 +170736721474,220,0 +170736721522,220,0 +170736721570,220,0 +170736721618,220,0 +170736721666,220,0 +170736721714,220,0 +170736721762,220,0 +170736721810,220,0 +170736721860,221,0 +170736721908,220,0 +170736721956,222,0 +170736722004,229,0 +170736722052,270,1 +170736722135,221,0 +170736722183,219,0 +170736722231,220,0 +170736722280,220,0 +170736722328,220,0 +170736722376,220,0 +170736722424,219,0 +170736722472,219,0 +170736722520,220,0 +170736722568,220,0 +170736722616,219,0 +170736722664,220,0 +170736722711,220,0 +170736722761,220,0 +170736722810,220,0 +170736722860,222,0 +170736722908,257,0 +170736722956,223,0 +170736723004,221,0 +170736723053,220,0 +170736723101,219,0 +170736723149,220,0 +170736723197,220,0 +170736723245,220,0 +170736723292,220,0 +170736723340,220,0 +170736723388,220,0 +170736723436,220,0 +170736723484,219,0 +170736723532,220,0 +170736723580,220,0 +170736723628,220,0 +170736723678,220,0 +170736723726,223,0 +170736723773,265,0 +170736723821,233,0 +170736723869,220,0 +170736723917,219,0 +170736723967,220,0 +170736724015,219,0 +170736724063,219,0 +170736724112,220,0 +170736724160,219,0 +170736724210,219,0 +170736724259,219,0 +170736724309,220,0 +170736724357,219,0 +170736724406,219,0 +170736724454,220,0 +170736724502,219,0 +170736724550,220,0 +170736724600,254,0 +170736724649,257,0 +170736724697,225,0 +170736724746,220,0 +170736724794,219,0 +170736724842,219,0 +170736724890,220,0 +170736724938,219,0 +170736724986,220,0 +170736725034,220,0 +170736725084,219,0 +170736725132,220,0 +170736725180,220,0 +170736725229,220,0 +170736725277,220,0 +170736725325,220,0 +170736725373,220,0 +170736725421,221,0 +170736725469,263,0 +170736725517,249,0 +170736725565,221,0 +170736725615,220,0 +170736725663,220,0 +170736725711,220,0 +170736725758,220,0 +170736725806,220,0 +170736725854,220,0 +170736725902,220,0 +170736725952,220,0 +170736726001,220,0 +170736726049,220,0 +170736726097,220,0 +170736726145,220,0 +170736726193,220,0 +170736726241,220,0 +170736726289,223,0 +170736726337,274,1 +170736726426,221,0 +170736726474,220,0 +170736726522,220,0 +170736726571,219,0 +170736726621,220,0 +170736726669,219,0 +170736726718,220,0 +170736726766,220,0 +170736726814,219,0 +170736726864,220,0 +170736726911,220,0 +170736726959,220,0 +170736727007,220,0 +170736727055,220,0 +170736727105,220,0 +170736727153,228,0 +170736727201,277,1 +170736727290,220,0 +170736727338,220,0 +170736727387,220,0 +170736727437,220,0 +170736727485,220,0 +170736727533,219,0 +170736727581,220,0 +170736727630,220,0 +170736727678,220,0 +170736727727,219,0 +170736727775,219,0 +170736727825,220,0 +170736727873,220,0 +170736727921,220,0 +170736727970,220,0 +170736728018,291,1 +170736728102,233,0 +170736728151,220,0 +170736728201,220,0 +170736728250,219,0 +170736728300,220,0 +170736728349,220,0 +170736728397,220,0 +170736728447,220,0 +170736728495,220,0 +170736728543,220,0 +170736728591,220,0 +170736728639,219,0 +170736728687,220,0 +170736728735,220,0 +170736728783,220,0 +170736728831,221,0 +170736728878,273,1 +170736728953,233,0 +170736729001,220,0 +170736729049,220,0 +170736729097,220,0 +170736729146,219,0 +170736729196,220,0 +170736729244,220,0 +170736729292,220,0 +170736729341,220,0 +170736729389,220,0 +170736729437,220,0 +170736729485,220,0 +170736729535,220,0 +170736729584,220,0 +170736729634,220,0 +170736729682,225,0 +170736729729,248,0 +170736729779,256,0 +170736729827,225,0 +170736729876,219,0 +170736729926,219,0 +170736729975,220,0 +170736730023,219,0 +170736730071,219,0 +170736730121,219,0 +170736730169,220,0 +170736730217,219,0 +170736730265,219,0 +170736730313,220,0 +170736730361,219,0 +170736730409,220,0 +170736730457,220,0 +170736730505,220,0 +170736730554,221,0 +170736730602,260,0 +170736730650,259,0 +170736730698,222,0 +170736730746,222,0 +170736730794,222,0 +170736730842,221,0 +170736730889,221,0 +170736730937,221,0 +170736730985,222,0 +170736731033,222,0 +170736731081,222,0 +170736731131,222,0 +170736731179,222,0 +170736731228,222,0 +170736731276,223,0 +170736731324,223,0 +170736731373,223,0 +170736731421,225,0 +170736731469,300,1 +170736731552,221,0 +170736731599,219,0 +170736731647,220,0 +170736731695,220,0 +170736731743,219,0 +170736731791,219,0 +170736731839,219,0 +170736731887,220,0 +170736731935,220,0 +170736731983,219,0 +170736732032,219,0 +170736732082,219,0 +170736732130,219,0 +170736732178,219,0 +170736732227,220,0 +170736732275,222,0 +170736732323,295,1 +170736732406,221,0 +170736732454,220,0 +170736732502,219,0 +170736732550,219,0 +170736732598,219,0 +170736732646,220,0 +170736732694,219,0 +170736732742,220,0 +170736732790,220,0 +170736732838,219,0 +170736732886,220,0 +170736732934,220,0 +170736732981,220,0 +170736733029,219,0 +170736733077,219,0 +170736733127,220,0 +170736733176,287,1 +170736733255,226,0 +170736733302,219,0 +170736733352,219,0 +170736733402,219,0 +170736733449,219,0 +170736733497,219,0 +170736733547,219,0 +170736733595,219,0 +170736733643,219,0 +170736733692,219,0 +170736733740,219,0 +170736733790,220,0 +170736733838,220,0 +170736733887,220,0 +170736733935,220,0 +170736733983,223,0 +170736734033,300,1 +170736734115,224,0 +170736734163,220,0 +170736734211,220,0 +170736734260,220,0 +170736734308,220,0 +170736734356,220,0 +170736734405,220,0 +170736734453,220,0 +170736734501,220,0 +170736734549,220,0 +170736734597,220,0 +170736734645,220,0 +170736734693,220,0 +170736734741,220,0 +170736734789,219,0 +170736734836,222,0 +170736734884,302,1 +170736734967,223,0 +170736735015,219,0 +170736735064,220,0 +170736735112,220,0 +170736735160,219,0 +170736735208,219,0 +170736735256,219,0 +170736735304,220,0 +170736735352,219,0 +170736735400,219,0 +170736735448,219,0 +170736735496,220,0 +170736735544,219,0 +170736735592,219,0 +170736735640,219,0 +170736735687,220,0 +170736735737,296,1 +170736735819,228,0 +170736735869,219,0 +170736735917,219,0 +170736735965,219,0 +170736736014,219,0 +170736736062,219,0 +170736736112,219,0 +170736736160,219,0 +170736736209,219,0 +170736736259,219,0 +170736736307,219,0 +170736736354,219,0 +170736736402,219,0 +170736736450,221,0 +170736736498,222,0 +170736736546,234,0 +170736736596,288,1 +170736736675,229,0 +170736736724,219,0 +170736736772,219,0 +170736736820,219,0 +170736736870,219,0 +170736736918,219,0 +170736736966,219,0 +170736737014,219,0 +170736737061,219,0 +170736737111,219,0 +170736737160,219,0 +170736737208,218,0 +170736737256,219,0 +170736737304,219,0 +170736737352,219,0 +170736737402,221,0 +170736737450,258,0 +170736737499,258,0 +170736737547,221,0 +170736737595,220,0 +170736737643,220,0 +170736737691,220,0 +170736737739,220,0 +170736737787,220,0 +170736737835,220,0 +170736737884,220,0 +170736737932,220,0 +170736737980,220,0 +170736738030,220,0 +170736738079,220,0 +170736738129,220,0 +170736738177,220,0 +170736738225,220,0 +170736738273,222,0 +170736738322,284,1 +170736738404,221,0 +170736738452,219,0 +170736738500,220,0 +170736738548,220,0 +170736738598,220,0 +170736738646,220,0 +170736738695,220,0 +170736738743,220,0 +170736738793,220,0 +170736738841,220,0 +170736738889,220,0 +170736738937,220,0 +170736738985,220,0 +170736739033,221,0 +170736739082,227,0 +170736739130,232,0 +170736739180,287,1 +170736739257,223,0 +170736739305,220,0 +170736739353,220,0 +170736739401,220,0 +170736739450,220,0 +170736739498,220,0 +170736739546,220,0 +170736739594,220,0 +170736739643,220,0 +170736739691,220,0 +170736739739,220,0 +170736739787,219,0 +170736739835,220,0 +170736739885,219,0 +170736739933,222,0 +170736739982,230,0 +170736740030,281,1 +170736740110,221,0 +170736740158,220,0 +170736740207,220,0 +170736740257,220,0 +170736740305,220,0 +170736740354,220,0 +170736740404,219,0 +170736740452,220,0 +170736740500,219,0 +170736740548,220,0 +170736740597,220,0 +170736740647,219,0 +170736740695,220,0 +170736740743,220,0 +170736740791,220,0 +170736740840,220,0 +170736740888,220,0 +170736740936,220,0 +170736740986,220,0 +170736741034,220,0 +170736741082,219,0 +170736741130,220,0 +170736741178,222,0 +170736741227,225,0 +170736741275,242,0 +170736741323,255,0 +170736741371,228,0 +170736741420,220,0 +170736741468,220,0 +170736741516,220,0 +170736741564,220,0 +170736741614,220,0 +170736741662,220,0 +170736741711,220,0 +170736741759,219,0 +170736741807,220,0 +170736741855,220,0 +170736741905,220,0 +170736741954,219,0 +170736742002,220,0 +170736742052,220,0 +170736742100,221,0 +170736742149,250,0 +170736742199,254,0 +170736742247,223,0 +170736742296,221,0 +170736742344,220,0 +170736742392,220,0 +170736742440,221,0 +170736742488,221,0 +170736742537,220,0 +170736742585,221,0 +170736742635,220,0 +170736742683,220,0 +170736742731,221,0 +170736742780,221,0 +170736742828,221,0 +170736742876,221,0 +170736742926,224,0 +170736742975,237,0 +170736743023,257,0 +170736743071,222,0 +170736743119,221,0 +170736743169,220,0 +170736743217,220,0 +170736743265,220,0 +170736743313,220,0 +170736743362,220,0 +170736743410,220,0 +170736743458,220,0 +170736743506,220,0 +170736743556,220,0 +170736743604,220,0 +170736743652,220,0 +170736743701,220,0 +170736743749,222,0 +170736743799,225,0 +170736743848,290,1 +170736743926,236,0 +170736743974,222,0 +170736744023,221,0 +170736744073,221,0 +170736744121,221,0 +170736744170,221,0 +170736744218,221,0 +170736744266,221,0 +170736744314,221,0 +170736744364,221,0 +170736744413,221,0 +170736744461,220,0 +170736744509,220,0 +170736744559,221,0 +170736744607,221,0 +170736744655,221,0 +170736744703,249,0 +170736744751,292,1 +170736744828,221,0 +170736744878,221,0 +170736744925,220,0 +170736744975,220,0 +170736745023,220,0 +170736745072,220,0 +170736745122,220,0 +170736745171,220,0 +170736745221,220,0 +170736745271,220,0 +170736745319,220,0 +170736745366,221,0 +170736745414,220,0 +170736745462,221,0 +170736745510,221,0 +170736745560,280,1 +170736745640,233,0 +170736745688,221,0 +170736745736,221,0 +170736745784,220,0 +170736745833,220,0 +170736745881,220,0 +170736745931,220,0 +170736745980,220,0 +170736746028,220,0 +170736746076,220,0 +170736746124,220,0 +170736746172,220,0 +170736746221,221,0 +170736746271,222,0 +170736746319,223,0 +170736746368,228,0 +170736746418,302,1 +170736746496,235,0 +170736746544,220,0 +170736746592,220,0 +170736746640,220,0 +170736746688,219,0 +170736746737,220,0 +170736746785,220,0 +170736746833,220,0 +170736746881,220,0 +170736746929,219,0 +170736746977,219,0 +170736747025,220,0 +170736747074,221,0 +170736747122,220,0 +170736747172,219,0 +170736747220,220,0 +170736747268,236,0 +170736747315,291,1 +170736747393,220,0 +170736747441,220,0 +170736747489,220,0 +170736747537,220,0 +170736747585,220,0 +170736747633,220,0 +170736747681,220,0 +170736747729,220,0 +170736747776,220,0 +170736747824,220,0 +170736747872,220,0 +170736747920,220,0 +170736747968,220,0 +170736748017,220,0 +170736748067,221,0 +170736748115,222,0 +170736748163,258,0 +170736748211,222,0 +170736748259,219,0 +170736748306,219,0 +170736748354,219,0 +170736748402,219,0 +170736748450,219,0 +170736748498,219,0 +170736748546,219,0 +170736748594,219,0 +170736748643,219,0 +170736748691,219,0 +170736748739,219,0 +170736748787,219,0 +170736748835,219,0 +170736748883,220,0 +170736748931,220,0 +170736748979,233,0 +170736749027,270,1 +170736749109,220,0 +170736749157,219,0 +170736749205,219,0 +170736749254,219,0 +170736749302,219,0 +170736749350,219,0 +170736749398,219,0 +170736749446,220,0 +170736749493,219,0 +170736749541,220,0 +170736749589,219,0 +170736749639,219,0 +170736749687,219,0 +170736749736,220,0 +170736749784,220,0 +170736749832,234,0 +170736749880,295,1 +170736749960,220,0 +170736750008,220,0 +170736750056,220,0 +170736750105,219,0 +170736750153,219,0 +170736750203,220,0 +170736750251,219,0 +170736750300,219,0 +170736750348,219,0 +170736750396,219,0 +170736750444,219,0 +170736750492,219,0 +170736750540,219,0 +170736750588,219,0 +170736750636,220,0 +170736750684,222,0 +170736750732,299,1 +170736750817,221,0 +170736750865,219,0 +170736750913,220,0 +170736750961,219,0 +170736751011,220,0 +170736751060,220,0 +170736751110,220,0 +170736751158,220,0 +170736751205,220,0 +170736751255,220,0 +170736751303,220,0 +170736751351,220,0 +170736751399,220,0 +170736751448,220,0 +170736751498,220,0 +170736751546,241,0 +170736751594,298,1 +170736751673,220,0 +170736751721,219,0 +170736751769,219,0 +170736751819,220,0 +170736751867,219,0 +170736751915,219,0 +170736751964,219,0 +170736752012,219,0 +170736752062,219,0 +170736752110,219,0 +170736752158,219,0 +170736752206,219,0 +170736752254,219,0 +170736752301,220,0 +170736752349,219,0 +170736752397,226,0 +170736752445,306,1 +170736752529,219,0 +170736752579,218,0 +170736752627,219,0 +170736752675,218,0 +170736752723,218,0 +170736752771,219,0 +170736752819,219,0 +170736752866,219,0 +170736752914,218,0 +170736752962,219,0 +170736753010,219,0 +170736753058,218,0 +170736753108,219,0 +170736753156,219,0 +170736753204,219,0 +170736753252,224,0 +170736753300,252,0 +170736753348,226,0 +170736753396,220,0 +170736753444,219,0 +170736753492,220,0 +170736753541,219,0 +170736753589,219,0 +170736753637,219,0 +170736753685,219,0 +170736753733,220,0 +170736753783,220,0 +170736753831,220,0 +170736753879,220,0 +170736753926,220,0 +170736753976,220,0 +170736754024,220,0 +170736754073,220,0 +170736754121,239,0 +170736754169,254,0 +170736754219,228,0 +170736754268,220,0 +170736754316,219,0 +170736754364,220,0 +170736754412,220,0 +170736754462,220,0 +170736754511,219,0 +170736754561,220,0 +170736754610,220,0 +170736754660,220,0 +170736754709,220,0 +170736754757,219,0 +170736754805,220,0 +170736754853,220,0 +170736754902,220,0 +170736754952,221,0 +170736755000,252,0 +170736755049,251,0 +170736755097,221,0 +170736755145,220,0 +170736755193,219,0 +170736755243,219,0 +170736755291,219,0 +170736755339,219,0 +170736755387,219,0 +170736755435,219,0 +170736755482,219,0 +170736755530,219,0 +170736755580,220,0 +170736755628,219,0 +170736755676,219,0 +170736755725,219,0 +170736755773,220,0 +170736755821,226,0 +170736755869,255,0 +170736755917,228,0 +170736755965,220,0 +170736756013,219,0 +170736756061,219,0 +170736756111,219,0 +170736756159,219,0 +170736756206,219,0 +170736756254,220,0 +170736756304,219,0 +170736756353,220,0 +170736756401,220,0 +170736756449,219,0 +170736756499,220,0 +170736756548,219,0 +170736756596,220,0 +170736756644,221,0 +170736756692,245,0 +170736756740,256,0 +170736756790,226,0 +170736756839,220,0 +170736756889,219,0 +170736756937,219,0 +170736756984,219,0 +170736757032,219,0 +170736757080,220,0 +170736757130,219,0 +170736757178,219,0 +170736757226,219,0 +170736757275,220,0 +170736757323,219,0 +170736757371,219,0 +170736757419,219,0 +170736757467,219,0 +170736757517,220,0 +170736757565,252,0 +170736757613,256,0 +170736757661,220,0 +170736757709,219,0 +170736757757,219,0 +170736757805,219,0 +170736757854,219,0 +170736757902,219,0 +170736757950,219,0 +170736757998,219,0 +170736758046,219,0 +170736758094,219,0 +170736758142,219,0 +170736758190,219,0 +170736758239,219,0 +170736758287,219,0 +170736758337,219,0 +170736758385,222,0 +170736758433,254,0 +170736758482,227,0 +170736758530,220,0 +170736758578,219,0 +170736758626,219,0 +170736758674,219,0 +170736758722,219,0 +170736758772,219,0 +170736758820,219,0 +170736758868,219,0 +170736758916,219,0 +170736758965,219,0 +170736759015,219,0 +170736759063,220,0 +170736759111,221,0 +170736759159,223,0 +170736759207,229,0 +170736759256,245,0 +170736759306,268,0 +170736759354,230,0 +170736759402,220,0 +170736759451,220,0 +170736759499,219,0 +170736759547,219,0 +170736759595,220,0 +170736759645,220,0 +170736759694,219,0 +170736759742,220,0 +170736759790,219,0 +170736759838,219,0 +170736759886,219,0 +170736759936,219,0 +170736759984,220,0 +170736760032,219,0 +170736760080,222,0 +170736760129,266,0 +170736760177,258,0 +170736760225,226,0 +170736760273,219,0 +170736760321,219,0 +170736760369,220,0 +170736760417,219,0 +170736760465,219,0 +170736760514,219,0 +170736760562,219,0 +170736760612,219,0 +170736760661,219,0 +170736760709,219,0 +170736760757,219,0 +170736760805,219,0 +170736760853,219,0 +170736760902,221,0 +170736760950,225,0 +170736760998,276,1 +170736761079,224,0 +170736761127,220,0 +170736761177,220,0 +170736761226,219,0 +170736761274,220,0 +170736761322,220,0 +170736761372,219,0 +170736761420,219,0 +170736761468,220,0 +170736761517,220,0 +170736761565,220,0 +170736761613,220,0 +170736761661,220,0 +170736761709,221,0 +170736761758,225,0 +170736761806,232,0 +170736761854,282,1 +170736761936,222,0 +170736761986,219,0 +170736762035,220,0 +170736762083,219,0 +170736762131,219,0 +170736762181,219,0 +170736762229,219,0 +170736762277,219,0 +170736762326,219,0 +170736762376,219,0 +170736762424,219,0 +170736762472,219,0 +170736762521,219,0 +170736762571,220,0 +170736762619,222,0 +170736762667,229,0 +170736762715,287,1 +170736762792,226,0 +170736762840,220,0 +170736762890,220,0 +170736762938,220,0 +170736762986,220,0 +170736763034,220,0 +170736763082,220,0 +170736763130,220,0 +170736763178,220,0 +170736763227,220,0 +170736763275,219,0 +170736763323,220,0 +170736763371,220,0 +170736763420,221,0 +170736763468,223,0 +170736763516,230,0 +170736763566,281,1 +170736763646,225,0 +170736763694,220,0 +170736763742,219,0 +170736763790,219,0 +170736763838,219,0 +170736763888,220,0 +170736763936,220,0 +170736763984,220,0 +170736764033,219,0 +170736764081,219,0 +170736764131,220,0 +170736764179,220,0 +170736764227,219,0 +170736764275,219,0 +170736764323,220,0 +170736764372,221,0 +170736764420,297,1 +170736764498,223,0 +170736764548,220,0 +170736764596,220,0 +170736764644,219,0 +170736764693,219,0 +170736764741,219,0 +170736764789,220,0 +170736764837,220,0 +170736764885,220,0 +170736764933,219,0 +170736764983,220,0 +170736765031,220,0 +170736765079,220,0 +170736765128,220,0 +170736765178,220,0 +170736765227,220,0 +170736765277,278,1 +170736765358,227,0 +170736765405,221,0 +170736765453,220,0 +170736765501,220,0 +170736765549,221,0 +170736765599,220,0 +170736765648,220,0 +170736765696,220,0 +170736765744,220,0 +170736765792,220,0 +170736765842,220,0 +170736765890,220,0 +170736765939,221,0 +170736765989,223,0 +170736766037,224,0 +170736766085,228,0 +170736766134,248,0 +170736766182,250,0 +170736766230,221,0 +170736766280,220,0 +170736766328,219,0 +170736766377,219,0 +170736766425,219,0 +170736766475,219,0 +170736766523,219,0 +170736766572,219,0 +170736766620,219,0 +170736766668,219,0 +170736766716,219,0 +170736766764,219,0 +170736766812,219,0 +170736766862,219,0 +170736766910,220,0 +170736766958,230,0 +170736767007,253,0 +170736767055,228,0 +170736767104,219,0 +170736767154,220,0 +170736767203,220,0 +170736767251,219,0 +170736767299,220,0 +170736767347,220,0 +170736767397,220,0 +170736767445,219,0 +170736767494,219,0 +170736767544,220,0 +170736767592,219,0 +170736767640,220,0 +170736767689,220,0 +170736767737,220,0 +170736767785,221,0 +170736767835,295,1 +170736767914,234,0 +170736767964,219,0 +170736768013,220,0 +170736768061,220,0 +170736768109,220,0 +170736768157,220,0 +170736768207,220,0 +170736768255,220,0 +170736768303,220,0 +170736768351,220,0 +170736768400,220,0 +170736768450,220,0 +170736768498,220,0 +170736768545,220,0 +170736768593,220,0 +170736768643,221,0 +170736768692,290,1 +170736768773,232,0 +170736768823,220,0 +170736768871,220,0 +170736768919,220,0 +170736768967,220,0 +170736769015,219,0 +170736769063,219,0 +170736769111,220,0 +170736769159,220,0 +170736769207,220,0 +170736769255,220,0 +170736769303,221,0 +170736769352,220,0 +170736769402,220,0 +170736769450,219,0 +170736769499,221,0 +170736769547,294,1 +170736769627,234,0 +170736769675,220,0 +170736769725,220,0 +170736769773,220,0 +170736769822,220,0 +170736769872,220,0 +170736769920,220,0 +170736769969,220,0 +170736770017,220,0 +170736770065,220,0 +170736770113,220,0 +170736770161,220,0 +170736770209,220,0 +170736770257,219,0 +170736770307,220,0 +170736770356,222,0 +170736770404,274,1 +170736770480,231,0 +170736770530,220,0 +170736770578,219,0 +170736770627,219,0 +170736770675,220,0 +170736770723,220,0 +170736770771,219,0 +170736770819,220,0 +170736770869,219,0 +170736770917,219,0 +170736770965,219,0 +170736771013,219,0 +170736771062,220,0 +170736771110,220,0 +170736771158,220,0 +170736771208,220,0 +170736771255,275,1 +170736771335,232,0 +170736771383,220,0 +170736771433,220,0 +170736771481,220,0 +170736771530,220,0 +170736771578,220,0 +170736771626,220,0 +170736771676,220,0 +170736771724,220,0 +170736771772,220,0 +170736771819,220,0 +170736771869,220,0 +170736771919,219,0 +170736771966,220,0 +170736772014,220,0 +170736772064,221,0 +170736772112,287,1 +170736772198,240,0 +170736772246,225,0 +170736772294,225,0 +170736772342,225,0 +170736772390,224,0 +170736772438,224,0 +170736772488,224,0 +170736772536,224,0 +170736772584,225,0 +170736772632,224,0 +170736772680,224,0 +170736772728,224,0 +170736772776,224,0 +170736772823,224,0 +170736772871,224,0 +170736772919,225,0 +170736772967,275,1 +170736773046,241,0 +170736773094,225,0 +170736773142,225,0 +170736773190,225,0 +170736773239,225,0 +170736773287,225,0 +170736773337,226,0 +170736773385,225,0 +170736773434,225,0 +170736773482,225,0 +170736773532,225,0 +170736773580,224,0 +170736773629,225,0 +170736773677,225,0 +170736773725,225,0 +170736773773,226,0 +170736773821,297,1 +170736773903,246,0 +170736773952,225,0 +170736774000,224,0 +170736774050,224,0 +170736774097,225,0 +170736774145,225,0 +170736774193,225,0 +170736774241,224,0 +170736774289,225,0 +170736774337,225,0 +170736774387,225,0 +170736774436,224,0 +170736774484,225,0 +170736774532,225,0 +170736774580,225,0 +170736774628,226,0 +170736774676,291,1 +170736774755,240,0 +170736774803,224,0 +170736774853,224,0 +170736774901,225,0 +170736774949,224,0 +170736774997,224,0 +170736775045,224,0 +170736775093,224,0 +170736775141,224,0 +170736775189,224,0 +170736775236,224,0 +170736775284,225,0 +170736775334,224,0 +170736775383,224,0 +170736775431,224,0 +170736775479,225,0 +170736775529,262,0 +170736775577,302,1 +170736775660,220,0 +170736775710,220,0 +170736775759,220,0 +170736775807,220,0 +170736775855,220,0 +170736775903,220,0 +170736775951,220,0 +170736775999,220,0 +170736776047,220,0 +170736776095,220,0 +170736776145,220,0 +170736776194,219,0 +170736776242,220,0 +170736776290,220,0 +170736776338,221,0 +170736776386,298,1 +170736776466,237,0 +170736776516,219,0 +170736776565,219,0 +170736776613,219,0 +170736776661,219,0 +170736776711,219,0 +170736776759,219,0 +170736776806,219,0 +170736776854,219,0 +170736776902,220,0 +170736776952,220,0 +170736777001,220,0 +170736777049,219,0 +170736777097,220,0 +170736777145,220,0 +170736777195,220,0 +170736777243,300,1 +170736777322,234,0 +170736777371,220,0 +170736777419,219,0 +170736777467,220,0 +170736777517,219,0 +170736777564,220,0 +170736777614,220,0 +170736777663,219,0 +170736777713,220,0 +170736777761,220,0 +170736777809,220,0 +170736777857,220,0 +170736777905,220,0 +170736777953,220,0 +170736778001,220,0 +170736778050,220,0 +170736778098,227,0 +170736778146,252,0 +170736778194,228,0 +170736778242,220,0 +170736778290,220,0 +170736778338,220,0 +170736778386,220,0 +170736778436,220,0 +170736778484,220,0 +170736778532,220,0 +170736778581,220,0 +170736778629,220,0 +170736778679,220,0 +170736778728,220,0 +170736778776,220,0 +170736778824,220,0 +170736778872,220,0 +170736778922,221,0 +170736778971,249,0 +170736779019,253,0 +170736779067,224,0 +170736779115,220,0 +170736779164,220,0 +170736779212,220,0 +170736779260,220,0 +170736779310,220,0 +170736779358,220,0 +170736779406,220,0 +170736779454,220,0 +170736779502,219,0 +170736779551,220,0 +170736779601,219,0 +170736779649,220,0 +170736779697,220,0 +170736779745,220,0 +170736779794,223,0 +170736779842,287,1 +170736779923,221,0 +170736779973,220,0 +170736780022,219,0 +170736780070,220,0 +170736780118,219,0 +170736780166,219,0 +170736780214,219,0 +170736780264,219,0 +170736780312,219,0 +170736780360,219,0 +170736780409,219,0 +170736780457,219,0 +170736780505,219,0 +170736780553,219,0 +170736780601,219,0 +170736780649,221,0 +170736780698,258,0 +170736780746,224,0 +170736780794,220,0 +170736780842,220,0 +170736780890,219,0 +170736780938,220,0 +170736780986,220,0 +170736781036,219,0 +170736781085,220,0 +170736781135,220,0 +170736781183,220,0 +170736781231,219,0 +170736781280,220,0 +170736781328,219,0 +170736781376,219,0 +170736781424,219,0 +170736781472,220,0 +170736781520,225,0 +170736781568,276,1 +170736781647,220,0 +170736781696,220,0 +170736781746,220,0 +170736781794,220,0 +170736781842,220,0 +170736781890,220,0 +170736781939,220,0 +170736781987,219,0 +170736782035,220,0 +170736782083,220,0 +170736782133,220,0 +170736782181,220,0 +170736782230,219,0 +170736782279,220,0 +170736782327,221,0 +170736782375,269,0 +170736782425,257,0 +170736782473,227,0 +170736782521,220,0 +170736782569,220,0 +170736782618,220,0 +170736782666,220,0 +170736782714,219,0 +170736782762,220,0 +170736782810,220,0 +170736782858,220,0 +170736782906,220,0 +170736782954,220,0 +170736783003,219,0 +170736783053,220,0 +170736783101,220,0 +170736783149,222,0 +170736783197,227,0 +170736783245,289,1 +170736783323,235,0 +170736783371,220,0 +170736783420,220,0 +170736783468,220,0 +170736783516,219,0 +170736783566,219,0 +170736783614,219,0 +170736783662,220,0 +170736783711,220,0 +170736783761,219,0 +170736783809,220,0 +170736783858,219,0 +170736783906,220,0 +170736783954,220,0 +170736784002,221,0 +170736784051,225,0 +170736784099,250,0 +170736784147,282,1 +170736784230,220,0 +170736784280,220,0 +170736784328,220,0 +170736784377,220,0 +170736784425,220,0 +170736784475,220,0 +170736784524,220,0 +170736784574,220,0 +170736784622,220,0 +170736784670,220,0 +170736784718,220,0 +170736784767,220,0 +170736784815,220,0 +170736784864,220,0 +170736784912,220,0 +170736784960,276,1 +170736785037,232,0 +170736785087,220,0 +170736785135,220,0 +170736785184,220,0 +170736785232,220,0 +170736785280,220,0 +170736785328,220,0 +170736785376,220,0 +170736785426,220,0 +170736785475,220,0 +170736785523,220,0 +170736785571,219,0 +170736785619,220,0 +170736785667,220,0 +170736785715,220,0 +170736785765,223,0 +170736785814,288,1 +170736785890,236,0 +170736785938,219,0 +170736785986,220,0 +170736786034,220,0 +170736786082,219,0 +170736786131,220,0 +170736786179,219,0 +170736786227,220,0 +170736786275,219,0 +170736786323,219,0 +170736786371,219,0 +170736786419,219,0 +170736786467,219,0 +170736786515,219,0 +170736786564,220,0 +170736786612,222,0 +170736786662,232,0 +170736786710,290,1 +170736786790,220,0 +170736786840,220,0 +170736786888,220,0 +170736786936,219,0 +170736786984,220,0 +170736787033,220,0 +170736787083,220,0 +170736787131,220,0 +170736787180,220,0 +170736787228,220,0 +170736787278,220,0 +170736787326,220,0 +170736787374,219,0 +170736787422,220,0 +170736787471,220,0 +170736787519,241,0 +170736787567,255,0 +170736787617,227,0 +170736787664,220,0 +170736787712,220,0 +170736787762,219,0 +170736787810,220,0 +170736787858,220,0 +170736787907,220,0 +170736787955,219,0 +170736788005,220,0 +170736788053,220,0 +170736788101,220,0 +170736788149,220,0 +170736788198,219,0 +170736788246,219,0 +170736788294,220,0 +170736788342,220,0 +170736788390,270,1 +170736788474,227,0 +170736788522,220,0 +170736788570,220,0 +170736788620,220,0 +170736788667,219,0 +170736788717,219,0 +170736788765,219,0 +170736788813,220,0 +170736788861,220,0 +170736788910,220,0 +170736788958,219,0 +170736789006,220,0 +170736789054,220,0 +170736789104,220,0 +170736789152,220,0 +170736789200,221,0 +170736789248,264,0 +170736789297,258,0 +170736789345,221,0 +170736789393,220,0 +170736789443,220,0 +170736789491,220,0 +170736789539,220,0 +170736789587,220,0 +170736789635,219,0 +170736789684,220,0 +170736789732,220,0 +170736789780,220,0 +170736789828,220,0 +170736789876,220,0 +170736789924,220,0 +170736789972,220,0 +170736790021,220,0 +170736790071,221,0 +170736790119,250,0 +170736790167,262,0 +170736790215,222,0 +170736790263,221,0 +170736790311,220,0 +170736790359,220,0 +170736790406,220,0 +170736790456,220,0 +170736790504,220,0 +170736790554,220,0 +170736790601,220,0 +170736790651,220,0 +170736790699,220,0 +170736790748,220,0 +170736790796,220,0 +170736790844,220,0 +170736790892,220,0 +170736790942,225,0 +170736790991,256,0 +170736791041,229,0 +170736791090,220,0 +170736791140,220,0 +170736791188,220,0 +170736791236,220,0 +170736791285,220,0 +170736791333,220,0 +170736791381,220,0 +170736791429,220,0 +170736791479,220,0 +170736791527,220,0 +170736791575,220,0 +170736791623,220,0 +170736791672,220,0 +170736791720,220,0 +170736791768,221,0 +170736791816,273,1 +170736791896,231,0 +170736791946,220,0 +170736791994,220,0 +170736792042,219,0 +170736792090,220,0 +170736792139,220,0 +170736792187,220,0 +170736792235,220,0 +170736792283,219,0 +170736792331,220,0 +170736792379,220,0 +170736792429,219,0 +170736792478,220,0 +170736792527,220,0 +170736792577,220,0 +170736792625,221,0 +170736792673,267,0 +170736792721,288,1 +170736792797,220,0 +170736792847,219,0 +170736792895,220,0 +170736792943,220,0 +170736792991,220,0 +170736793039,220,0 +170736793086,219,0 +170736793134,219,0 +170736793182,219,0 +170736793230,220,0 +170736793280,220,0 +170736793328,219,0 +170736793376,220,0 +170736793425,221,0 +170736793473,226,0 +170736793521,262,0 +170736793569,303,1 +170736793650,220,0 +170736793699,220,0 +170736793747,220,0 +170736793795,220,0 +170736793845,220,0 +170736793893,220,0 +170736793940,219,0 +170736793990,219,0 +170736794040,220,0 +170736794089,220,0 +170736794137,219,0 +170736794187,220,0 +170736794235,219,0 +170736794284,220,0 +170736794333,220,0 +170736794383,285,1 +170736794461,236,0 +170736794509,221,0 +170736794557,220,0 +170736794605,220,0 +170736794655,220,0 +170736794704,220,0 +170736794752,221,0 +170736794802,220,0 +170736794851,220,0 +170736794901,221,0 +170736794949,220,0 +170736794998,220,0 +170736795046,220,0 +170736795094,221,0 +170736795142,220,0 +170736795190,221,0 +170736795238,289,1 +170736795319,240,0 +170736795369,221,0 +170736795417,220,0 +170736795465,220,0 +170736795513,220,0 +170736795561,220,0 +170736795609,220,0 +170736795658,221,0 +170736795708,220,0 +170736795756,221,0 +170736795805,220,0 +170736795853,221,0 +170736795901,220,0 +170736795949,221,0 +170736795997,220,0 +170736796045,221,0 +170736796093,265,0 +170736796142,300,1 +170736796229,220,0 +170736796277,221,0 +170736796325,220,0 +170736796373,220,0 +170736796421,220,0 +170736796468,220,0 +170736796516,220,0 +170736796566,221,0 +170736796615,220,0 +170736796665,221,0 +170736796713,220,0 +170736796761,221,0 +170736796809,220,0 +170736796857,220,0 +170736796905,221,0 +170736796953,276,1 +170736797027,233,0 +170736797075,221,0 +170736797123,220,0 +170736797172,220,0 +170736797220,221,0 +170736797270,220,0 +170736797318,220,0 +170736797365,221,0 +170736797413,220,0 +170736797461,220,0 +170736797509,220,0 +170736797557,220,0 +170736797605,220,0 +170736797653,220,0 +170736797703,221,0 +170736797750,225,0 +170736797798,241,0 +170736797846,297,1 +170736797930,221,0 +170736797980,220,0 +170736798028,220,0 +170736798075,220,0 +170736798125,221,0 +170736798173,220,0 +170736798221,220,0 +170736798270,220,0 +170736798318,220,0 +170736798366,220,0 +170736798414,220,0 +170736798462,220,0 +170736798512,220,0 +170736798560,220,0 +170736798608,221,0 +170736798656,227,0 +170736798703,286,1 +170736798781,221,0 +170736798829,219,0 +170736798879,220,0 +170736798926,220,0 +170736798974,220,0 +170736799022,219,0 +170736799070,220,0 +170736799118,220,0 +170736799166,220,0 +170736799214,220,0 +170736799263,220,0 +170736799313,220,0 +170736799361,220,0 +170736799409,220,0 +170736799456,220,0 +170736799504,223,0 +170736799554,293,1 +170736799634,221,0 +170736799682,220,0 +170736799729,220,0 +170736799778,220,0 +170736799825,220,0 +170736799873,220,0 +170736799921,220,0 +170736799969,220,0 +170736800017,220,0 +170736800065,221,0 +170736800113,221,0 +170736800161,221,0 +170736800209,221,0 +170736800259,220,0 +170736800306,220,0 +170736800356,223,0 +170736800404,299,1 +170736800488,221,0 +170736800536,221,0 +170736800584,220,0 +170736800631,220,0 +170736800679,220,0 +170736800727,220,0 +170736800775,220,0 +170736800823,220,0 +170736800873,220,0 +170736800921,220,0 +170736800970,220,0 +170736801020,221,0 +170736801068,220,0 +170736801116,220,0 +170736801163,220,0 +170736801211,223,0 +170736801259,297,1 +170736801337,227,0 +170736801385,220,0 +170736801433,221,0 +170736801481,220,0 +170736801529,220,0 +170736801578,221,0 +170736801626,220,0 +170736801676,220,0 +170736801724,220,0 +170736801772,221,0 +170736801820,221,0 +170736801869,220,0 +170736801917,221,0 +170736801967,220,0 +170736802015,221,0 +170736802063,222,0 +170736802111,249,0 +170736802159,254,0 +170736802208,221,0 +170736802256,220,0 +170736802304,220,0 +170736802352,220,0 +170736802400,220,0 +170736802448,221,0 +170736802496,220,0 +170736802545,221,0 +170736802595,220,0 +170736802643,220,0 +170736802691,220,0 +170736802739,220,0 +170736802787,221,0 +170736802835,221,0 +170736802883,221,0 +170736802931,223,0 +170736802979,253,0 +170736803027,225,0 +170736803075,221,0 +170736803124,220,0 +170736803172,221,0 +170736803222,220,0 +170736803270,220,0 +170736803319,220,0 +170736803367,221,0 +170736803415,220,0 +170736803465,221,0 +170736803512,220,0 +170736803562,221,0 +170736803610,220,0 +170736803658,220,0 +170736803706,220,0 +170736803755,226,0 +170736803803,253,0 +170736803851,257,0 +170736803901,230,0 +170736803949,220,0 +170736803997,220,0 +170736804045,220,0 +170736804092,220,0 +170736804140,219,0 +170736804188,220,0 +170736804236,220,0 +170736804284,220,0 +170736804334,220,0 +170736804382,219,0 +170736804431,220,0 +170736804479,220,0 +170736804529,220,0 +170736804577,220,0 +170736804625,221,0 +170736804674,284,1 +170736804753,233,0 +170736804803,221,0 +170736804851,220,0 +170736804900,221,0 +170736804950,220,0 +170736804999,220,0 +170736805047,220,0 +170736805095,220,0 +170736805143,221,0 +170736805191,220,0 +170736805239,220,0 +170736805288,220,0 +170736805336,220,0 +170736805384,220,0 +170736805432,221,0 +170736805480,226,0 +170736805529,286,1 +170736805607,233,0 +170736805655,221,0 +170736805703,221,0 +170736805751,221,0 +170736805799,221,0 +170736805847,220,0 +170736805895,221,0 +170736805942,220,0 +170736805992,220,0 +170736806040,221,0 +170736806089,221,0 +170736806137,221,0 +170736806186,221,0 +170736806234,221,0 +170736806283,222,0 +170736806331,226,0 +170736806379,281,1 +170736806463,231,0 +170736806513,220,0 +170736806562,219,0 +170736806612,219,0 +170736806660,220,0 +170736806708,219,0 +170736806756,220,0 +170736806804,219,0 +170736806851,219,0 +170736806899,219,0 +170736806947,219,0 +170736806995,219,0 +170736807045,219,0 +170736807093,220,0 +170736807142,222,0 +170736807192,229,0 +170736807240,285,1 +170736807316,236,0 +170736807364,221,0 +170736807413,220,0 +170736807463,220,0 +170736807511,220,0 +170736807559,220,0 +170736807607,220,0 +170736807655,220,0 +170736807702,221,0 +170736807752,220,0 +170736807800,220,0 +170736807848,221,0 +170736807896,220,0 +170736807945,220,0 +170736807993,220,0 +170736808041,221,0 +170736808089,274,1 +170736808168,234,0 +170736808216,220,0 +170736808265,220,0 +170736808313,221,0 +170736808361,220,0 +170736808409,220,0 +170736808457,220,0 +170736808506,220,0 +170736808554,220,0 +170736808602,220,0 +170736808652,220,0 +170736808700,220,0 +170736808748,220,0 +170736808797,220,0 +170736808845,220,0 +170736808893,221,0 +170736808941,240,0 +170736808989,301,1 +170736809069,221,0 +170736809118,220,0 +170736809168,220,0 +170736809217,221,0 +170736809265,220,0 +170736809313,220,0 +170736809363,220,0 +170736809411,220,0 +170736809458,220,0 +170736809506,220,0 +170736809556,220,0 +170736809604,220,0 +170736809652,220,0 +170736809700,220,0 +170736809747,221,0 +170736809795,282,1 +170736809874,231,0 +170736809922,220,0 +170736809970,220,0 +170736810018,220,0 +170736810066,220,0 +170736810114,220,0 +170736810162,220,0 +170736810211,220,0 +170736810259,220,0 +170736810307,220,0 +170736810355,220,0 +170736810403,220,0 +170736810453,219,0 +170736810503,220,0 +170736810550,220,0 +170736810598,221,0 +170736810646,229,0 +170736810696,299,1 +170736810777,221,0 +170736810825,221,0 +170736810873,221,0 +170736810920,220,0 +170736810970,221,0 +170736811019,221,0 +170736811068,221,0 +170736811116,220,0 +170736811164,221,0 +170736811213,221,0 +170736811261,220,0 +170736811309,221,0 +170736811357,221,0 +170736811405,221,0 +170736811453,221,0 +170736811501,229,0 +170736811549,302,1 +170736811624,222,0 +170736811674,220,0 +170736811723,220,0 +170736811771,220,0 +170736811819,220,0 +170736811867,220,0 +170736811917,221,0 +170736811965,220,0 +170736812013,220,0 +170736812062,220,0 +170736812112,220,0 +170736812161,221,0 +170736812211,222,0 +170736812260,224,0 +170736812308,232,0 +170736812358,255,0 +170736812407,309,1 +170736812487,221,0 +170736812535,220,0 +170736812583,220,0 +170736812631,220,0 +170736812679,220,0 +170736812727,220,0 +170736812775,220,0 +170736812823,220,0 +170736812871,220,0 +170736812920,220,0 +170736812968,220,0 +170736813016,220,0 +170736813064,220,0 +170736813112,220,0 +170736813160,220,0 +170736813208,224,0 +170736813257,303,1 +170736813337,221,0 +170736813385,220,0 +170736813434,220,0 +170736813482,220,0 +170736813530,220,0 +170736813578,220,0 +170736813628,220,0 +170736813676,220,0 +170736813724,220,0 +170736813773,220,0 +170736813821,220,0 +170736813869,220,0 +170736813919,220,0 +170736813966,220,0 +170736814014,220,0 +170736814062,222,0 +170736814112,288,1 +170736814193,226,0 +170736814241,220,0 +170736814289,220,0 +170736814338,220,0 +170736814386,220,0 +170736814434,220,0 +170736814484,220,0 +170736814532,220,0 +170736814580,220,0 +170736814628,220,0 +170736814676,220,0 +170736814725,220,0 +170736814775,220,0 +170736814824,220,0 +170736814874,220,0 +170736814923,222,0 +170736814971,253,0 +170736815019,226,0 +170736815067,220,0 +170736815115,220,0 +170736815163,219,0 +170736815211,219,0 +170736815259,220,0 +170736815307,220,0 +170736815355,220,0 +170736815403,219,0 +170736815451,220,0 +170736815499,220,0 +170736815547,220,0 +170736815597,220,0 +170736815645,220,0 +170736815694,220,0 +170736815742,221,0 +170736815790,262,0 +170736815839,255,0 +170736815887,225,0 +170736815935,218,0 +170736815983,219,0 +170736816033,219,0 +170736816081,219,0 +170736816129,218,0 +170736816178,219,0 +170736816226,218,0 +170736816274,219,0 +170736816322,219,0 +170736816370,219,0 +170736816420,219,0 +170736816468,219,0 +170736816516,219,0 +170736816565,219,0 +170736816613,219,0 +170736816661,296,1 +170736816742,236,0 +170736816791,219,0 +170736816839,219,0 +170736816887,219,0 +170736816937,219,0 +170736816985,219,0 +170736817035,218,0 +170736817082,219,0 +170736817130,219,0 +170736817178,219,0 +170736817228,219,0 +170736817277,218,0 +170736817327,219,0 +170736817375,219,0 +170736817423,219,0 +170736817472,221,0 +170736817520,288,1 +170736817597,236,0 +170736817646,219,0 +170736817696,219,0 +170736817746,219,0 +170736817795,219,0 +170736817843,219,0 +170736817891,219,0 +170736817940,219,0 +170736817988,219,0 +170736818038,218,0 +170736818086,218,0 +170736818134,219,0 +170736818182,219,0 +170736818230,219,0 +170736818278,219,0 +170736818326,221,0 +170736818374,290,1 +170736818455,226,0 +170736818504,219,0 +170736818552,219,0 +170736818600,219,0 +170736818648,219,0 +170736818696,219,0 +170736818744,219,0 +170736818792,219,0 +170736818841,219,0 +170736818889,219,0 +170736818939,219,0 +170736818987,219,0 +170736819035,219,0 +170736819083,219,0 +170736819131,219,0 +170736819179,220,0 +170736819228,305,1 +170736819306,239,0 +170736819354,219,0 +170736819402,219,0 +170736819452,219,0 +170736819501,218,0 +170736819549,219,0 +170736819599,219,0 +170736819647,219,0 +170736819695,218,0 +170736819744,219,0 +170736819792,219,0 +170736819841,218,0 +170736819889,219,0 +170736819939,219,0 +170736819988,219,0 +170736820038,220,0 +170736820086,298,1 +170736820166,242,0 +170736820214,219,0 +170736820262,219,0 +170736820310,218,0 +170736820358,219,0 +170736820406,219,0 +170736820454,219,0 +170736820504,219,0 +170736820552,219,0 +170736820600,219,0 +170736820649,219,0 +170736820697,219,0 +170736820747,219,0 +170736820794,219,0 +170736820844,219,0 +170736820892,220,0 +170736820940,291,1 +170736821022,231,0 +170736821070,220,0 +170736821118,219,0 +170736821166,218,0 +170736821214,219,0 +170736821263,218,0 +170736821311,219,0 +170736821361,219,0 +170736821409,219,0 +170736821458,219,0 +170736821506,218,0 +170736821554,219,0 +170736821602,219,0 +170736821650,219,0 +170736821698,219,0 +170736821745,221,0 +170736821793,274,1 +170736821874,231,0 +170736821923,219,0 +170736821972,220,0 +170736822021,220,0 +170736822069,219,0 +170736822117,219,0 +170736822166,219,0 +170736822216,219,0 +170736822264,219,0 +170736822312,219,0 +170736822361,219,0 +170736822409,220,0 +170736822457,220,0 +170736822507,219,0 +170736822555,220,0 +170736822603,220,0 +170736822652,282,1 +170736822732,230,0 +170736822781,220,0 +170736822829,220,0 +170736822879,220,0 +170736822927,219,0 +170736822975,220,0 +170736823022,220,0 +170736823070,220,0 +170736823118,220,0 +170736823166,220,0 +170736823214,220,0 +170736823262,220,0 +170736823310,220,0 +170736823358,220,0 +170736823405,219,0 +170736823453,220,0 +170736823501,284,1 +170736823579,234,0 +170736823627,220,0 +170736823675,220,0 +170736823723,220,0 +170736823773,220,0 +170736823820,220,0 +170736823868,220,0 +170736823916,220,0 +170736823964,220,0 +170736824012,220,0 +170736824060,220,0 +170736824110,220,0 +170736824157,220,0 +170736824207,221,0 +170736824255,222,0 +170736824304,228,0 +170736824354,243,0 +170736824402,265,0 +170736824451,233,0 +170736824501,220,0 +170736824549,220,0 +170736824597,220,0 +170736824645,220,0 +170736824695,220,0 +170736824743,220,0 +170736824791,220,0 +170736824840,220,0 +170736824888,220,0 +170736824936,220,0 +170736824984,220,0 +170736825033,220,0 +170736825081,220,0 +170736825129,221,0 +170736825177,222,0 +170736825225,295,1 +170736825315,231,0 +170736825363,220,0 +170736825412,220,0 +170736825460,220,0 +170736825508,220,0 +170736825556,220,0 +170736825604,220,0 +170736825653,220,0 +170736825701,220,0 +170736825749,220,0 +170736825797,220,0 +170736825845,220,0 +170736825893,220,0 +170736825941,220,0 +170736825989,220,0 +170736826037,221,0 +170736826085,290,1 +170736826165,233,0 +170736826213,220,0 +170736826262,220,0 +170736826310,220,0 +170736826358,220,0 +170736826406,220,0 +170736826454,220,0 +170736826502,220,0 +170736826549,220,0 +170736826599,220,0 +170736826648,221,0 +170736826696,220,0 +170736826744,220,0 +170736826792,220,0 +170736826840,221,0 +170736826888,221,0 +170736826936,253,0 +170736826985,257,0 +170736827033,225,0 +170736827081,220,0 +170736827129,220,0 +170736827177,220,0 +170736827225,220,0 +170736827273,220,0 +170736827321,220,0 +170736827368,220,0 +170736827416,221,0 +170736827464,220,0 +170736827512,220,0 +170736827560,221,0 +170736827608,224,0 +170736827656,225,0 +170736827704,232,0 +170736827752,238,0 +170736827800,255,0 +170736827849,256,0 +170736827897,224,0 +170736827945,220,0 +170736827993,220,0 +170736828043,220,0 +170736828091,220,0 +170736828139,220,0 +170736828186,220,0 +170736828236,220,0 +170736828285,220,0 +170736828333,220,0 +170736828381,220,0 +170736828429,220,0 +170736828477,220,0 +170736828525,220,0 +170736828573,220,0 +170736828621,221,0 +170736828668,283,1 +170736828747,225,0 +170736828795,220,0 +170736828842,220,0 +170736828890,220,0 +170736828938,220,0 +170736828986,220,0 +170736829034,219,0 +170736829084,220,0 +170736829131,220,0 +170736829179,219,0 +170736829227,220,0 +170736829275,219,0 +170736829323,219,0 +170736829371,220,0 +170736829419,220,0 +170736829467,221,0 +170736829515,256,0 +170736829563,272,1 +170736829641,220,0 +170736829689,219,0 +170736829737,219,0 +170736829785,219,0 +170736829833,219,0 +170736829881,219,0 +170736829929,219,0 +170736829977,219,0 +170736830027,220,0 +170736830075,219,0 +170736830123,219,0 +170736830171,219,0 +170736830220,219,0 +170736830268,221,0 +170736830318,225,0 +170736830366,291,1 +170736830446,239,0 +170736830495,221,0 +170736830543,220,0 +170736830593,220,0 +170736830642,221,0 +170736830690,220,0 +170736830739,219,0 +170736830786,220,0 +170736830836,220,0 +170736830884,220,0 +170736830932,220,0 +170736830980,220,0 +170736831028,221,0 +170736831077,221,0 +170736831127,224,0 +170736831175,232,0 +170736831223,282,1 +170736831302,234,0 +170736831351,221,0 +170736831399,220,0 +170736831447,220,0 +170736831496,221,0 +170736831546,220,0 +170736831594,220,0 +170736831642,220,0 +170736831690,220,0 +170736831738,221,0 +170736831786,220,0 +170736831834,220,0 +170736831883,220,0 +170736831933,220,0 +170736831982,221,0 +170736832030,220,0 +170736832078,262,0 +170736832126,288,1 +170736832207,220,0 +170736832254,220,0 +170736832302,220,0 +170736832350,220,0 +170736832398,220,0 +170736832446,220,0 +170736832494,220,0 +170736832542,220,0 +170736832590,220,0 +170736832638,220,0 +170736832688,220,0 +170736832736,220,0 +170736832785,220,0 +170736832833,221,0 +170736832881,221,0 +170736832929,241,0 +170736832978,298,1 +170736833065,221,0 +170736833113,221,0 +170736833161,220,0 +170736833209,221,0 +170736833258,220,0 +170736833308,220,0 +170736833357,220,0 +170736833407,220,0 +170736833455,220,0 +170736833504,221,0 +170736833554,220,0 +170736833602,220,0 +170736833650,220,0 +170736833698,220,0 +170736833746,221,0 +170736833795,274,1 +170736833875,237,0 +170736833923,220,0 +170736833972,220,0 +170736834020,219,0 +170736834070,219,0 +170736834118,219,0 +170736834166,219,0 +170736834215,219,0 +170736834263,220,0 +170736834311,219,0 +170736834360,219,0 +170736834410,219,0 +170736834458,219,0 +170736834506,219,0 +170736834554,219,0 +170736834602,219,0 +170736834650,247,0 +170736834699,289,1 +170736834779,219,0 +170736834829,219,0 +170736834877,219,0 +170736834925,219,0 +170736834973,219,0 +170736835020,219,0 +170736835070,218,0 +170736835120,219,0 +170736835169,219,0 +170736835217,219,0 +170736835267,219,0 +170736835315,218,0 +170736835362,218,0 +170736835412,219,0 +170736835462,219,0 +170736835510,288,1 +170736835590,231,0 +170736835638,219,0 +170736835688,219,0 +170736835737,219,0 +170736835787,219,0 +170736835835,219,0 +170736835883,219,0 +170736835932,218,0 +170736835980,218,0 +170736836028,218,0 +170736836076,219,0 +170736836124,219,0 +170736836173,219,0 +170736836223,219,0 +170736836271,219,0 +170736836319,219,0 +170736836368,279,1 +170736836448,228,0 +170736836496,219,0 +170736836545,218,0 +170736836595,219,0 +170736836644,219,0 +170736836692,219,0 +170736836742,218,0 +170736836790,218,0 +170736836839,218,0 +170736836889,218,0 +170736836937,218,0 +170736836985,219,0 +170736837033,219,0 +170736837081,219,0 +170736837130,221,0 +170736837178,224,0 +170736837228,280,1 +170736837308,225,0 +170736837357,220,0 +170736837405,220,0 +170736837455,219,0 +170736837503,219,0 +170736837552,219,0 +170736837602,219,0 +170736837650,219,0 +170736837698,219,0 +170736837746,219,0 +170736837793,219,0 +170736837843,219,0 +170736837891,219,0 +170736837939,219,0 +170736837988,219,0 +170736838038,219,0 +170736838086,284,1 +170736838167,234,0 +170736838215,219,0 +170736838263,218,0 +170736838311,218,0 +170736838359,218,0 +170736838407,219,0 +170736838456,218,0 +170736838504,219,0 +170736838552,218,0 +170736838600,219,0 +170736838648,219,0 +170736838696,219,0 +170736838743,219,0 +170736838791,219,0 +170736838839,219,0 +170736838887,219,0 +170736838935,245,0 +170736838983,248,0 +170736839031,223,0 +170736839078,219,0 +170736839128,219,0 +170736839176,219,0 +170736839225,219,0 +170736839273,219,0 +170736839321,219,0 +170736839369,219,0 +170736839417,219,0 +170736839465,219,0 +170736839513,219,0 +170736839560,219,0 +170736839608,219,0 +170736839656,219,0 +170736839704,219,0 +170736839752,219,0 +170736839800,247,0 +170736839848,248,0 +170736839896,220,0 +170736839945,220,0 +170736839993,219,0 diff --git a/laser_value/0208-15.csv b/laser_value/0208-15.csv new file mode 100644 index 0000000..4e1d189 --- /dev/null +++ b/laser_value/0208-15.csv @@ -0,0 +1,7400 @@ +timestamp,laser_value,event +170736840041,219,0 +170736840089,219,0 +170736840137,219,0 +170736840185,220,0 +170736840234,219,0 +170736840284,220,0 +170736840332,220,0 +170736840380,220,0 +170736840429,220,0 +170736840477,220,0 +170736840527,221,0 +170736840575,223,0 +170736840623,228,0 +170736840671,260,0 +170736840719,232,0 +170736840768,219,0 +170736840818,219,0 +170736840865,219,0 +170736840913,219,0 +170736840961,218,0 +170736841009,218,0 +170736841057,219,0 +170736841105,219,0 +170736841153,219,0 +170736841201,219,0 +170736841249,218,0 +170736841296,219,0 +170736841344,218,0 +170736841392,219,0 +170736841440,219,0 +170736841488,222,0 +170736841536,275,1 +170736841616,221,0 +170736841664,219,0 +170736841712,219,0 +170736841760,219,0 +170736841808,219,0 +170736841856,219,0 +170736841903,219,0 +170736841951,219,0 +170736841999,219,0 +170736842047,219,0 +170736842095,219,0 +170736842143,219,0 +170736842191,219,0 +170736842239,219,0 +170736842287,219,0 +170736842335,222,0 +170736842383,278,1 +170736842461,223,0 +170736842509,220,0 +170736842557,220,0 +170736842607,220,0 +170736842654,220,0 +170736842702,220,0 +170736842750,220,0 +170736842798,220,0 +170736842846,220,0 +170736842894,220,0 +170736842942,219,0 +170736842990,220,0 +170736843037,220,0 +170736843085,220,0 +170736843133,220,0 +170736843183,226,0 +170736843232,269,0 +170736843280,279,1 +170736843361,220,0 +170736843409,220,0 +170736843457,219,0 +170736843506,220,0 +170736843556,220,0 +170736843604,219,0 +170736843652,220,0 +170736843700,219,0 +170736843749,219,0 +170736843797,220,0 +170736843846,219,0 +170736843894,219,0 +170736843942,219,0 +170736843990,219,0 +170736844038,221,0 +170736844088,296,1 +170736844163,240,0 +170736844211,220,0 +170736844259,220,0 +170736844307,220,0 +170736844356,220,0 +170736844406,220,0 +170736844455,220,0 +170736844503,220,0 +170736844551,219,0 +170736844599,220,0 +170736844647,220,0 +170736844697,219,0 +170736844745,219,0 +170736844792,219,0 +170736844840,220,0 +170736844888,221,0 +170736844936,283,1 +170736845019,234,0 +170736845069,220,0 +170736845117,219,0 +170736845165,219,0 +170736845213,220,0 +170736845262,219,0 +170736845310,220,0 +170736845358,220,0 +170736845406,219,0 +170736845454,219,0 +170736845503,220,0 +170736845553,220,0 +170736845601,219,0 +170736845650,220,0 +170736845700,220,0 +170736845748,221,0 +170736845796,274,1 +170736845881,227,0 +170736845930,220,0 +170736845978,220,0 +170736846028,219,0 +170736846076,220,0 +170736846125,219,0 +170736846173,220,0 +170736846221,220,0 +170736846269,219,0 +170736846317,219,0 +170736846365,219,0 +170736846414,220,0 +170736846464,220,0 +170736846512,219,0 +170736846560,220,0 +170736846609,220,0 +170736846657,284,1 +170736846738,232,0 +170736846788,220,0 +170736846836,219,0 +170736846884,219,0 +170736846932,220,0 +170736846981,219,0 +170736847029,219,0 +170736847077,219,0 +170736847125,220,0 +170736847173,219,0 +170736847222,219,0 +170736847272,220,0 +170736847320,220,0 +170736847367,220,0 +170736847415,219,0 +170736847463,221,0 +170736847511,277,1 +170736847594,228,0 +170736847642,219,0 +170736847689,220,0 +170736847737,219,0 +170736847785,219,0 +170736847835,219,0 +170736847883,220,0 +170736847930,220,0 +170736847978,219,0 +170736848026,220,0 +170736848074,219,0 +170736848122,219,0 +170736848170,219,0 +170736848218,219,0 +170736848266,220,0 +170736848315,221,0 +170736848363,260,0 +170736848411,269,0 +170736848459,221,0 +170736848509,219,0 +170736848558,220,0 +170736848606,219,0 +170736848655,219,0 +170736848703,219,0 +170736848753,219,0 +170736848801,219,0 +170736848850,219,0 +170736848900,220,0 +170736848948,220,0 +170736848997,219,0 +170736849045,219,0 +170736849093,220,0 +170736849143,224,0 +170736849191,230,0 +170736849239,274,1 +170736849320,223,0 +170736849368,220,0 +170736849416,220,0 +170736849464,220,0 +170736849512,220,0 +170736849560,220,0 +170736849608,220,0 +170736849656,220,0 +170736849705,220,0 +170736849753,220,0 +170736849801,220,0 +170736849849,220,0 +170736849899,220,0 +170736849947,221,0 +170736849995,221,0 +170736850044,222,0 +170736850092,271,1 +170736850172,226,0 +170736850220,221,0 +170736850270,220,0 +170736850318,220,0 +170736850367,220,0 +170736850415,220,0 +170736850465,221,0 +170736850514,220,0 +170736850562,220,0 +170736850610,220,0 +170736850660,220,0 +170736850709,220,0 +170736850757,220,0 +170736850807,221,0 +170736850855,223,0 +170736850903,230,0 +170736850951,251,0 +170736850998,223,0 +170736851046,221,0 +170736851096,221,0 +170736851146,220,0 +170736851193,220,0 +170736851241,220,0 +170736851289,220,0 +170736851337,221,0 +170736851385,220,0 +170736851433,220,0 +170736851483,220,0 +170736851531,221,0 +170736851579,220,0 +170736851628,220,0 +170736851678,220,0 +170736851726,221,0 +170736851774,240,0 +170736851822,252,0 +170736851870,228,0 +170736851918,221,0 +170736851967,220,0 +170736852017,220,0 +170736852066,220,0 +170736852114,220,0 +170736852162,220,0 +170736852210,220,0 +170736852258,220,0 +170736852306,220,0 +170736852354,220,0 +170736852404,220,0 +170736852451,220,0 +170736852500,220,0 +170736852547,220,0 +170736852595,222,0 +170736852643,257,0 +170736852693,260,0 +170736852741,223,0 +170736852789,220,0 +170736852838,220,0 +170736852886,220,0 +170736852934,220,0 +170736852982,220,0 +170736853030,220,0 +170736853078,220,0 +170736853128,220,0 +170736853176,220,0 +170736853224,220,0 +170736853271,220,0 +170736853319,220,0 +170736853367,220,0 +170736853417,221,0 +170736853465,227,0 +170736853513,254,0 +170736853561,235,0 +170736853609,220,0 +170736853657,220,0 +170736853706,220,0 +170736853754,220,0 +170736853802,220,0 +170736853850,220,0 +170736853898,220,0 +170736853946,220,0 +170736853994,219,0 +170736854042,220,0 +170736854090,220,0 +170736854140,219,0 +170736854187,220,0 +170736854237,220,0 +170736854285,220,0 +170736854335,228,0 +170736854384,256,0 +170736854432,226,0 +170736854481,220,0 +170736854529,220,0 +170736854577,220,0 +170736854625,220,0 +170736854673,219,0 +170736854721,220,0 +170736854769,219,0 +170736854817,219,0 +170736854867,220,0 +170736854915,219,0 +170736854963,219,0 +170736855011,219,0 +170736855058,219,0 +170736855106,220,0 +170736855154,222,0 +170736855204,260,0 +170736855252,257,0 +170736855300,227,0 +170736855348,220,0 +170736855396,220,0 +170736855445,219,0 +170736855493,220,0 +170736855543,220,0 +170736855591,220,0 +170736855639,220,0 +170736855686,220,0 +170736855734,220,0 +170736855784,219,0 +170736855832,220,0 +170736855880,220,0 +170736855929,220,0 +170736855977,221,0 +170736856027,226,0 +170736856075,278,1 +170736856162,229,0 +170736856211,220,0 +170736856259,220,0 +170736856307,220,0 +170736856355,220,0 +170736856403,220,0 +170736856452,220,0 +170736856500,219,0 +170736856548,220,0 +170736856598,220,0 +170736856646,220,0 +170736856694,220,0 +170736856742,220,0 +170736856790,220,0 +170736856839,221,0 +170736856887,221,0 +170736856935,268,0 +170736856983,287,1 +170736857067,220,0 +170736857117,220,0 +170736857165,220,0 +170736857213,220,0 +170736857261,220,0 +170736857309,220,0 +170736857358,220,0 +170736857408,220,0 +170736857456,220,0 +170736857504,220,0 +170736857552,220,0 +170736857601,220,0 +170736857649,220,0 +170736857697,220,0 +170736857747,222,0 +170736857795,254,0 +170736857844,231,0 +170736857892,220,0 +170736857940,220,0 +170736857988,220,0 +170736858036,220,0 +170736858084,220,0 +170736858134,220,0 +170736858182,220,0 +170736858231,220,0 +170736858279,220,0 +170736858327,220,0 +170736858375,220,0 +170736858423,220,0 +170736858471,220,0 +170736858519,220,0 +170736858567,220,0 +170736858615,225,0 +170736858662,264,0 +170736858710,227,0 +170736858758,220,0 +170736858806,220,0 +170736858854,220,0 +170736858902,220,0 +170736858950,220,0 +170736858998,220,0 +170736859046,220,0 +170736859093,220,0 +170736859141,220,0 +170736859189,220,0 +170736859237,220,0 +170736859285,220,0 +170736859333,220,0 +170736859381,220,0 +170736859429,220,0 +170736859477,232,0 +170736859525,283,1 +170736859607,221,0 +170736859655,221,0 +170736859703,220,0 +170736859750,220,0 +170736859798,220,0 +170736859848,220,0 +170736859896,220,0 +170736859944,220,0 +170736859991,220,0 +170736860039,220,0 +170736860087,221,0 +170736860135,222,0 +170736860183,224,0 +170736860231,227,0 +170736860279,233,0 +170736860327,237,0 +170736860375,253,0 +170736860423,227,0 +170736860471,220,0 +170736860521,220,0 +170736860569,220,0 +170736860616,219,0 +170736860664,220,0 +170736860712,219,0 +170736860762,220,0 +170736860810,220,0 +170736860858,220,0 +170736860906,220,0 +170736860955,220,0 +170736861003,220,0 +170736861051,219,0 +170736861101,220,0 +170736861150,220,0 +170736861198,278,1 +170736861276,230,0 +170736861324,221,0 +170736861372,220,0 +170736861420,220,0 +170736861468,220,0 +170736861516,219,0 +170736861564,220,0 +170736861612,220,0 +170736861660,220,0 +170736861707,220,0 +170736861755,220,0 +170736861803,220,0 +170736861851,220,0 +170736861900,219,0 +170736861948,220,0 +170736861998,220,0 +170736862046,223,0 +170736862094,277,1 +170736862174,221,0 +170736862223,220,0 +170736862271,220,0 +170736862319,220,0 +170736862367,219,0 +170736862415,220,0 +170736862463,220,0 +170736862511,220,0 +170736862559,219,0 +170736862608,220,0 +170736862656,219,0 +170736862704,220,0 +170736862752,219,0 +170736862801,220,0 +170736862849,220,0 +170736862897,223,0 +170736862945,274,1 +170736863030,221,0 +170736863079,220,0 +170736863127,220,0 +170736863175,220,0 +170736863223,220,0 +170736863271,220,0 +170736863319,220,0 +170736863367,220,0 +170736863415,220,0 +170736863463,220,0 +170736863511,220,0 +170736863560,220,0 +170736863608,220,0 +170736863656,220,0 +170736863704,220,0 +170736863751,223,0 +170736863799,251,0 +170736863847,224,0 +170736863897,220,0 +170736863945,220,0 +170736863992,220,0 +170736864040,220,0 +170736864088,220,0 +170736864138,220,0 +170736864187,220,0 +170736864235,220,0 +170736864283,220,0 +170736864331,220,0 +170736864379,220,0 +170736864427,220,0 +170736864475,220,0 +170736864525,220,0 +170736864574,221,0 +170736864622,241,0 +170736864670,256,0 +170736864720,225,0 +170736864768,220,0 +170736864816,220,0 +170736864864,220,0 +170736864913,220,0 +170736864963,220,0 +170736865011,220,0 +170736865059,220,0 +170736865108,220,0 +170736865156,220,0 +170736865206,219,0 +170736865255,220,0 +170736865303,220,0 +170736865353,220,0 +170736865400,220,0 +170736865448,221,0 +170736865496,278,1 +170736865574,232,0 +170736865622,220,0 +170736865670,220,0 +170736865718,220,0 +170736865767,220,0 +170736865815,220,0 +170736865863,220,0 +170736865913,220,0 +170736865961,220,0 +170736866009,219,0 +170736866058,220,0 +170736866106,219,0 +170736866154,220,0 +170736866202,220,0 +170736866251,220,0 +170736866301,221,0 +170736866349,268,0 +170736866398,251,0 +170736866446,220,0 +170736866494,219,0 +170736866542,220,0 +170736866590,220,0 +170736866638,219,0 +170736866686,219,0 +170736866734,220,0 +170736866782,220,0 +170736866830,220,0 +170736866878,220,0 +170736866927,220,0 +170736866975,220,0 +170736867025,220,0 +170736867075,220,0 +170736867124,220,0 +170736867172,223,0 +170736867220,279,1 +170736867306,221,0 +170736867354,220,0 +170736867402,220,0 +170736867450,220,0 +170736867498,219,0 +170736867546,220,0 +170736867593,219,0 +170736867643,219,0 +170736867691,220,0 +170736867739,220,0 +170736867787,220,0 +170736867835,220,0 +170736867883,220,0 +170736867932,220,0 +170736867980,220,0 +170736868028,221,0 +170736868076,272,1 +170736868154,228,0 +170736868202,220,0 +170736868250,220,0 +170736868298,219,0 +170736868348,219,0 +170736868396,220,0 +170736868444,219,0 +170736868492,220,0 +170736868541,220,0 +170736868589,220,0 +170736868637,219,0 +170736868687,219,0 +170736868735,219,0 +170736868784,219,0 +170736868832,220,0 +170736868880,221,0 +170736868928,281,1 +170736869007,233,0 +170736869055,220,0 +170736869103,220,0 +170736869153,219,0 +170736869201,220,0 +170736869249,220,0 +170736869297,219,0 +170736869345,220,0 +170736869393,220,0 +170736869441,219,0 +170736869489,220,0 +170736869537,220,0 +170736869585,220,0 +170736869633,220,0 +170736869680,220,0 +170736869728,222,0 +170736869776,269,0 +170736869824,276,1 +170736869903,220,0 +170736869953,220,0 +170736870001,220,0 +170736870049,220,0 +170736870097,219,0 +170736870145,220,0 +170736870193,219,0 +170736870241,220,0 +170736870289,220,0 +170736870336,220,0 +170736870384,220,0 +170736870432,219,0 +170736870482,220,0 +170736870530,220,0 +170736870578,220,0 +170736870626,287,1 +170736870710,229,0 +170736870759,220,0 +170736870809,220,0 +170736870857,220,0 +170736870904,219,0 +170736870952,220,0 +170736871000,220,0 +170736871048,219,0 +170736871098,220,0 +170736871146,220,0 +170736871194,220,0 +170736871243,219,0 +170736871291,219,0 +170736871341,219,0 +170736871389,220,0 +170736871437,221,0 +170736871484,279,1 +170736871563,231,0 +170736871611,220,0 +170736871659,219,0 +170736871707,220,0 +170736871755,220,0 +170736871803,220,0 +170736871851,219,0 +170736871898,220,0 +170736871946,219,0 +170736871994,220,0 +170736872042,220,0 +170736872090,220,0 +170736872138,219,0 +170736872186,221,0 +170736872234,222,0 +170736872281,228,0 +170736872329,266,0 +170736872377,281,1 +170736872456,220,0 +170736872504,220,0 +170736872552,220,0 +170736872600,220,0 +170736872648,220,0 +170736872696,220,0 +170736872744,220,0 +170736872792,220,0 +170736872839,220,0 +170736872889,220,0 +170736872937,220,0 +170736872985,220,0 +170736873033,220,0 +170736873081,220,0 +170736873129,221,0 +170736873177,231,0 +170736873225,282,1 +170736873303,220,0 +170736873351,220,0 +170736873401,220,0 +170736873448,220,0 +170736873498,220,0 +170736873546,219,0 +170736873596,220,0 +170736873645,220,0 +170736873693,220,0 +170736873742,220,0 +170736873790,219,0 +170736873840,220,0 +170736873888,219,0 +170736873936,220,0 +170736873984,221,0 +170736874032,227,0 +170736874081,269,0 +170736874131,232,0 +170736874179,220,0 +170736874227,220,0 +170736874275,220,0 +170736874323,220,0 +170736874371,220,0 +170736874419,219,0 +170736874468,220,0 +170736874516,220,0 +170736874564,220,0 +170736874614,220,0 +170736874663,220,0 +170736874711,220,0 +170736874759,220,0 +170736874807,220,0 +170736874855,221,0 +170736874903,272,1 +170736874985,233,0 +170736875033,220,0 +170736875081,220,0 +170736875129,219,0 +170736875176,220,0 +170736875225,220,0 +170736875272,219,0 +170736875320,219,0 +170736875368,219,0 +170736875416,220,0 +170736875464,219,0 +170736875512,219,0 +170736875560,219,0 +170736875608,219,0 +170736875656,219,0 +170736875704,220,0 +170736875752,252,0 +170736875800,251,0 +170736875848,225,0 +170736875897,219,0 +170736875945,219,0 +170736875995,219,0 +170736876043,219,0 +170736876091,219,0 +170736876140,220,0 +170736876188,219,0 +170736876238,219,0 +170736876286,219,0 +170736876334,220,0 +170736876383,219,0 +170736876431,220,0 +170736876479,220,0 +170736876529,220,0 +170736876578,221,0 +170736876626,250,0 +170736876674,274,1 +170736876755,220,0 +170736876803,219,0 +170736876852,220,0 +170736876900,219,0 +170736876948,219,0 +170736876996,220,0 +170736877044,219,0 +170736877092,219,0 +170736877142,219,0 +170736877189,219,0 +170736877237,219,0 +170736877285,219,0 +170736877335,220,0 +170736877383,220,0 +170736877431,221,0 +170736877480,268,0 +170736877528,266,0 +170736877578,220,0 +170736877627,220,0 +170736877675,220,0 +170736877723,220,0 +170736877773,219,0 +170736877821,219,0 +170736877869,219,0 +170736877919,220,0 +170736877968,219,0 +170736878016,219,0 +170736878064,220,0 +170736878112,219,0 +170736878162,219,0 +170736878209,219,0 +170736878259,220,0 +170736878307,227,0 +170736878356,281,1 +170736878437,220,0 +170736878485,219,0 +170736878533,220,0 +170736878583,219,0 +170736878630,219,0 +170736878680,219,0 +170736878728,219,0 +170736878776,220,0 +170736878824,220,0 +170736878872,219,0 +170736878920,220,0 +170736878968,219,0 +170736879017,219,0 +170736879065,220,0 +170736879113,220,0 +170736879161,223,0 +170736879209,290,1 +170736879288,222,0 +170736879336,220,0 +170736879384,220,0 +170736879434,219,0 +170736879483,219,0 +170736879531,219,0 +170736879579,220,0 +170736879629,220,0 +170736879678,219,0 +170736879726,220,0 +170736879774,220,0 +170736879824,219,0 +170736879871,220,0 +170736879921,220,0 +170736879969,220,0 +170736880017,222,0 +170736880065,263,0 +170736880114,228,0 +170736880162,220,0 +170736880210,220,0 +170736880258,219,0 +170736880306,220,0 +170736880354,220,0 +170736880404,219,0 +170736880452,219,0 +170736880500,220,0 +170736880548,219,0 +170736880596,220,0 +170736880645,220,0 +170736880693,219,0 +170736880741,220,0 +170736880789,220,0 +170736880837,220,0 +170736880885,239,0 +170736880933,275,1 +170736881013,220,0 +170736881063,220,0 +170736881112,219,0 +170736881160,220,0 +170736881210,220,0 +170736881258,219,0 +170736881306,220,0 +170736881354,219,0 +170736881401,220,0 +170736881451,220,0 +170736881499,219,0 +170736881547,220,0 +170736881595,220,0 +170736881643,220,0 +170736881692,220,0 +170736881740,242,0 +170736881790,269,0 +170736881838,234,0 +170736881886,220,0 +170736881935,220,0 +170736881983,220,0 +170736882033,219,0 +170736882082,219,0 +170736882132,219,0 +170736882180,220,0 +170736882228,220,0 +170736882277,220,0 +170736882325,220,0 +170736882373,220,0 +170736882421,219,0 +170736882469,219,0 +170736882519,220,0 +170736882567,221,0 +170736882615,289,1 +170736882699,231,0 +170736882749,220,0 +170736882797,219,0 +170736882845,220,0 +170736882893,220,0 +170736882941,220,0 +170736882989,219,0 +170736883037,219,0 +170736883086,220,0 +170736883136,220,0 +170736883185,220,0 +170736883233,219,0 +170736883281,219,0 +170736883329,220,0 +170736883377,219,0 +170736883427,220,0 +170736883476,220,0 +170736883524,220,0 +170736883572,220,0 +170736883620,220,0 +170736883668,220,0 +170736883716,220,0 +170736883766,220,0 +170736883815,220,0 +170736883863,222,0 +170736883913,268,0 +170736883960,228,0 +170736884010,220,0 +170736884058,220,0 +170736884106,219,0 +170736884155,220,0 +170736884203,220,0 +170736884251,220,0 +170736884299,220,0 +170736884349,219,0 +170736884397,219,0 +170736884445,220,0 +170736884494,219,0 +170736884542,220,0 +170736884590,219,0 +170736884638,220,0 +170736884688,220,0 +170736884736,265,0 +170736884784,281,1 +170736884865,220,0 +170736884915,219,0 +170736884963,219,0 +170736885011,219,0 +170736885059,220,0 +170736885107,219,0 +170736885154,220,0 +170736885202,220,0 +170736885250,219,0 +170736885298,220,0 +170736885346,220,0 +170736885394,220,0 +170736885442,220,0 +170736885491,219,0 +170736885539,220,0 +170736885587,222,0 +170736885635,266,0 +170736885683,228,0 +170736885731,220,0 +170736885779,220,0 +170736885828,220,0 +170736885876,220,0 +170736885924,220,0 +170736885973,220,0 +170736886021,220,0 +170736886071,220,0 +170736886119,220,0 +170736886168,219,0 +170736886216,220,0 +170736886266,219,0 +170736886314,220,0 +170736886362,219,0 +170736886410,220,0 +170736886459,255,0 +170736886507,257,0 +170736886555,226,0 +170736886603,220,0 +170736886651,220,0 +170736886699,220,0 +170736886747,219,0 +170736886795,219,0 +170736886843,219,0 +170736886891,219,0 +170736886938,220,0 +170736886986,219,0 +170736887034,219,0 +170736887082,219,0 +170736887130,219,0 +170736887180,220,0 +170736887228,219,0 +170736887276,221,0 +170736887325,276,1 +170736887407,233,0 +170736887455,220,0 +170736887503,220,0 +170736887553,219,0 +170736887600,219,0 +170736887648,219,0 +170736887696,219,0 +170736887744,219,0 +170736887792,220,0 +170736887840,219,0 +170736887888,219,0 +170736887937,219,0 +170736887986,219,0 +170736888034,219,0 +170736888084,219,0 +170736888133,220,0 +170736888183,247,0 +170736888232,253,0 +170736888282,221,0 +170736888330,219,0 +170736888378,219,0 +170736888426,219,0 +170736888475,219,0 +170736888523,219,0 +170736888571,219,0 +170736888620,219,0 +170736888668,220,0 +170736888716,219,0 +170736888764,219,0 +170736888812,219,0 +170736888861,220,0 +170736888909,220,0 +170736888957,220,0 +170736889005,221,0 +170736889053,254,0 +170736889101,226,0 +170736889149,219,0 +170736889197,219,0 +170736889245,219,0 +170736889293,220,0 +170736889341,219,0 +170736889388,219,0 +170736889438,219,0 +170736889486,219,0 +170736889534,220,0 +170736889582,220,0 +170736889630,220,0 +170736889678,219,0 +170736889726,219,0 +170736889775,220,0 +170736889823,220,0 +170736889873,251,0 +170736889921,268,0 +170736889970,231,0 +170736890018,220,0 +170736890066,220,0 +170736890114,219,0 +170736890164,220,0 +170736890212,220,0 +170736890261,220,0 +170736890309,219,0 +170736890359,219,0 +170736890407,219,0 +170736890455,219,0 +170736890502,219,0 +170736890550,219,0 +170736890600,219,0 +170736890648,219,0 +170736890696,220,0 +170736890744,266,0 +170736890793,275,1 +170736890871,220,0 +170736890919,220,0 +170736890967,219,0 +170736891015,219,0 +170736891065,219,0 +170736891113,219,0 +170736891161,219,0 +170736891210,219,0 +170736891258,219,0 +170736891306,219,0 +170736891354,219,0 +170736891403,219,0 +170736891451,219,0 +170736891499,219,0 +170736891547,220,0 +170736891595,292,1 +170736891673,232,0 +170736891722,220,0 +170736891770,219,0 +170736891818,219,0 +170736891866,219,0 +170736891914,219,0 +170736891962,219,0 +170736892010,219,0 +170736892058,219,0 +170736892105,219,0 +170736892153,219,0 +170736892201,220,0 +170736892249,219,0 +170736892297,220,0 +170736892345,220,0 +170736892393,220,0 +170736892442,229,0 +170736892491,269,0 +170736892539,229,0 +170736892587,219,0 +170736892635,219,0 +170736892683,219,0 +170736892731,219,0 +170736892779,219,0 +170736892827,219,0 +170736892876,219,0 +170736892924,219,0 +170736892972,219,0 +170736893022,219,0 +170736893070,219,0 +170736893118,219,0 +170736893165,219,0 +170736893213,219,0 +170736893261,220,0 +170736893309,280,1 +170736893389,233,0 +170736893437,220,0 +170736893485,219,0 +170736893535,219,0 +170736893584,219,0 +170736893632,219,0 +170736893680,219,0 +170736893730,219,0 +170736893778,219,0 +170736893826,219,0 +170736893874,219,0 +170736893923,219,0 +170736893973,219,0 +170736894021,220,0 +170736894069,222,0 +170736894117,228,0 +170736894166,289,1 +170736894251,232,0 +170736894299,221,0 +170736894349,220,0 +170736894397,220,0 +170736894446,221,0 +170736894494,220,0 +170736894542,220,0 +170736894591,220,0 +170736894639,220,0 +170736894687,220,0 +170736894737,220,0 +170736894787,221,0 +170736894836,220,0 +170736894886,220,0 +170736894933,221,0 +170736894983,228,0 +170736895031,296,1 +170736895105,235,0 +170736895155,220,0 +170736895205,220,0 +170736895254,220,0 +170736895304,220,0 +170736895351,220,0 +170736895399,220,0 +170736895449,219,0 +170736895497,220,0 +170736895545,220,0 +170736895594,220,0 +170736895642,220,0 +170736895692,220,0 +170736895741,220,0 +170736895791,220,0 +170736895839,221,0 +170736895887,272,1 +170736895973,231,0 +170736896021,221,0 +170736896068,220,0 +170736896118,220,0 +170736896166,220,0 +170736896214,220,0 +170736896262,220,0 +170736896311,220,0 +170736896359,220,0 +170736896407,220,0 +170736896455,220,0 +170736896503,220,0 +170736896551,220,0 +170736896599,220,0 +170736896647,220,0 +170736896695,223,0 +170736896743,291,1 +170736896826,227,0 +170736896874,220,0 +170736896922,221,0 +170736896971,220,0 +170736897019,220,0 +170736897067,220,0 +170736897115,220,0 +170736897163,220,0 +170736897211,221,0 +170736897259,220,0 +170736897307,220,0 +170736897356,220,0 +170736897406,220,0 +170736897455,222,0 +170736897503,225,0 +170736897551,234,0 +170736897601,294,1 +170736897681,232,0 +170736897731,219,0 +170736897779,219,0 +170736897827,220,0 +170736897876,219,0 +170736897926,219,0 +170736897975,220,0 +170736898023,220,0 +170736898073,220,0 +170736898121,220,0 +170736898169,220,0 +170736898217,219,0 +170736898265,220,0 +170736898314,220,0 +170736898364,220,0 +170736898412,221,0 +170736898460,285,1 +170736898542,233,0 +170736898590,221,0 +170736898638,220,0 +170736898686,220,0 +170736898735,220,0 +170736898785,220,0 +170736898833,220,0 +170736898882,220,0 +170736898930,220,0 +170736898978,220,0 +170736899026,220,0 +170736899076,220,0 +170736899125,220,0 +170736899175,220,0 +170736899224,220,0 +170736899274,222,0 +170736899322,293,1 +170736899401,228,0 +170736899451,220,0 +170736899500,219,0 +170736899548,220,0 +170736899596,220,0 +170736899644,220,0 +170736899692,220,0 +170736899740,220,0 +170736899789,219,0 +170736899839,219,0 +170736899887,220,0 +170736899935,220,0 +170736899983,220,0 +170736900031,220,0 +170736900079,220,0 +170736900128,221,0 +170736900178,250,0 +170736900226,244,0 +170736900274,220,0 +170736900321,220,0 +170736900369,220,0 +170736900419,220,0 +170736900467,220,0 +170736900515,219,0 +170736900563,219,0 +170736900612,220,0 +170736900660,220,0 +170736900708,220,0 +170736900756,219,0 +170736900804,220,0 +170736900852,221,0 +170736900900,220,0 +170736900948,221,0 +170736900996,221,0 +170736901044,251,0 +170736901094,228,0 +170736901143,220,0 +170736901193,220,0 +170736901241,220,0 +170736901289,220,0 +170736901338,220,0 +170736901386,220,0 +170736901434,219,0 +170736901482,220,0 +170736901530,220,0 +170736901578,220,0 +170736901626,220,0 +170736901674,219,0 +170736901724,220,0 +170736901772,220,0 +170736901820,220,0 +170736901869,280,1 +170736901953,236,0 +170736902001,220,0 +170736902049,220,0 +170736902097,220,0 +170736902146,219,0 +170736902194,220,0 +170736902242,220,0 +170736902292,220,0 +170736902340,220,0 +170736902388,220,0 +170736902437,220,0 +170736902485,220,0 +170736902533,220,0 +170736902583,220,0 +170736902631,220,0 +170736902679,221,0 +170736902727,283,1 +170736902813,232,0 +170736902863,220,0 +170736902911,220,0 +170736902959,220,0 +170736903007,219,0 +170736903054,220,0 +170736903102,219,0 +170736903150,219,0 +170736903198,220,0 +170736903248,220,0 +170736903297,220,0 +170736903347,219,0 +170736903396,220,0 +170736903446,220,0 +170736903494,220,0 +170736903543,220,0 +170736903591,276,1 +170736903670,234,0 +170736903718,220,0 +170736903766,220,0 +170736903814,220,0 +170736903862,220,0 +170736903910,220,0 +170736903958,220,0 +170736904006,220,0 +170736904055,219,0 +170736904103,219,0 +170736904151,219,0 +170736904199,219,0 +170736904247,219,0 +170736904295,220,0 +170736904344,220,0 +170736904392,220,0 +170736904440,244,0 +170736904488,281,1 +170736904575,220,0 +170736904623,220,0 +170736904671,220,0 +170736904719,220,0 +170736904767,220,0 +170736904815,220,0 +170736904863,220,0 +170736904911,219,0 +170736904959,220,0 +170736905006,219,0 +170736905054,220,0 +170736905102,219,0 +170736905152,219,0 +170736905200,219,0 +170736905249,220,0 +170736905299,290,1 +170736905386,238,0 +170736905434,220,0 +170736905482,220,0 +170736905530,220,0 +170736905578,220,0 +170736905625,220,0 +170736905673,220,0 +170736905723,219,0 +170736905771,220,0 +170736905819,219,0 +170736905867,220,0 +170736905915,219,0 +170736905963,219,0 +170736906012,219,0 +170736906060,219,0 +170736906108,220,0 +170736906158,287,1 +170736906238,236,0 +170736906286,220,0 +170736906336,220,0 +170736906383,220,0 +170736906431,220,0 +170736906481,220,0 +170736906529,220,0 +170736906577,220,0 +170736906625,220,0 +170736906673,220,0 +170736906721,220,0 +170736906769,220,0 +170736906818,220,0 +170736906868,220,0 +170736906916,220,0 +170736906965,220,0 +170736907015,285,1 +170736907104,235,0 +170736907153,221,0 +170736907201,220,0 +170736907251,220,0 +170736907300,220,0 +170736907348,220,0 +170736907396,220,0 +170736907446,220,0 +170736907494,220,0 +170736907543,220,0 +170736907593,220,0 +170736907641,220,0 +170736907690,220,0 +170736907740,220,0 +170736907788,220,0 +170736907835,221,0 +170736907883,283,1 +170736907966,233,0 +170736908016,221,0 +170736908065,221,0 +170736908113,221,0 +170736908161,221,0 +170736908210,221,0 +170736908258,222,0 +170736908308,221,0 +170736908356,222,0 +170736908404,222,0 +170736908452,221,0 +170736908500,220,0 +170736908549,222,0 +170736908597,226,0 +170736908645,234,0 +170736908695,239,0 +170736908743,289,1 +170736908829,224,0 +170736908877,220,0 +170736908925,220,0 +170736908974,220,0 +170736909022,220,0 +170736909072,220,0 +170736909120,220,0 +170736909168,220,0 +170736909216,221,0 +170736909264,220,0 +170736909313,221,0 +170736909361,220,0 +170736909409,220,0 +170736909457,220,0 +170736909507,220,0 +170736909555,221,0 +170736909603,282,1 +170736909685,233,0 +170736909734,220,0 +170736909782,220,0 +170736909830,220,0 +170736909878,220,0 +170736909926,220,0 +170736909974,220,0 +170736910022,220,0 +170736910072,220,0 +170736910120,220,0 +170736910169,220,0 +170736910217,220,0 +170736910265,220,0 +170736910313,220,0 +170736910363,220,0 +170736910411,221,0 +170736910460,250,0 +170736910510,236,0 +170736910558,221,0 +170736910605,220,0 +170736910653,220,0 +170736910701,220,0 +170736910749,221,0 +170736910799,221,0 +170736910848,221,0 +170736910896,221,0 +170736910944,220,0 +170736910992,221,0 +170736911042,221,0 +170736911091,221,0 +170736911139,221,0 +170736911189,221,0 +170736911237,222,0 +170736911285,233,0 +170736911333,253,0 +170736911381,228,0 +170736911429,221,0 +170736911477,220,0 +170736911526,221,0 +170736911576,221,0 +170736911624,221,0 +170736911673,221,0 +170736911721,221,0 +170736911769,220,0 +170736911817,220,0 +170736911865,220,0 +170736911913,220,0 +170736911961,220,0 +170736912009,220,0 +170736912057,220,0 +170736912105,221,0 +170736912153,252,0 +170736912200,254,0 +170736912248,226,0 +170736912296,221,0 +170736912344,221,0 +170736912392,221,0 +170736912440,220,0 +170736912490,220,0 +170736912538,220,0 +170736912587,221,0 +170736912635,220,0 +170736912683,220,0 +170736912733,221,0 +170736912782,221,0 +170736912832,220,0 +170736912880,220,0 +170736912928,220,0 +170736912977,223,0 +170736913025,252,0 +170736913073,253,0 +170736913123,224,0 +170736913172,220,0 +170736913220,220,0 +170736913268,220,0 +170736913316,220,0 +170736913364,220,0 +170736913412,220,0 +170736913460,220,0 +170736913508,220,0 +170736913557,221,0 +170736913605,220,0 +170736913653,220,0 +170736913703,221,0 +170736913751,220,0 +170736913799,220,0 +170736913847,225,0 +170736913896,293,1 +170736913981,221,0 +170736914029,220,0 +170736914077,220,0 +170736914126,220,0 +170736914174,220,0 +170736914224,220,0 +170736914272,220,0 +170736914321,220,0 +170736914369,220,0 +170736914417,220,0 +170736914467,220,0 +170736914515,220,0 +170736914564,220,0 +170736914612,220,0 +170736914660,220,0 +170736914708,226,0 +170736914758,284,1 +170736914839,221,0 +170736914889,220,0 +170736914937,220,0 +170736914985,220,0 +170736915033,220,0 +170736915081,220,0 +170736915129,220,0 +170736915177,220,0 +170736915225,220,0 +170736915274,220,0 +170736915322,219,0 +170736915370,220,0 +170736915418,220,0 +170736915466,221,0 +170736915514,220,0 +170736915562,224,0 +170736915611,271,1 +170736915696,221,0 +170736915744,221,0 +170736915792,221,0 +170736915840,221,0 +170736915887,221,0 +170736915935,221,0 +170736915983,221,0 +170736916031,221,0 +170736916081,221,0 +170736916130,221,0 +170736916178,221,0 +170736916226,221,0 +170736916274,221,0 +170736916322,221,0 +170736916372,221,0 +170736916421,232,0 +170736916469,292,1 +170736916550,222,0 +170736916598,221,0 +170736916646,221,0 +170736916694,220,0 +170736916744,221,0 +170736916791,220,0 +170736916839,220,0 +170736916889,220,0 +170736916937,220,0 +170736916985,220,0 +170736917034,220,0 +170736917084,220,0 +170736917132,220,0 +170736917180,220,0 +170736917229,224,0 +170736917277,234,0 +170736917325,282,1 +170736917407,221,0 +170736917455,220,0 +170736917505,220,0 +170736917553,220,0 +170736917601,221,0 +170736917649,220,0 +170736917697,220,0 +170736917745,220,0 +170736917793,220,0 +170736917842,220,0 +170736917892,220,0 +170736917940,220,0 +170736917988,220,0 +170736918037,220,0 +170736918085,220,0 +170736918135,227,0 +170736918183,280,1 +170736918264,221,0 +170736918311,220,0 +170736918359,220,0 +170736918407,220,0 +170736918455,220,0 +170736918503,220,0 +170736918551,220,0 +170736918599,220,0 +170736918647,220,0 +170736918697,220,0 +170736918745,220,0 +170736918792,220,0 +170736918840,221,0 +170736918888,220,0 +170736918936,220,0 +170736918984,226,0 +170736919032,255,0 +170736919080,224,0 +170736919130,220,0 +170736919179,220,0 +170736919227,220,0 +170736919275,220,0 +170736919325,220,0 +170736919373,220,0 +170736919422,220,0 +170736919470,219,0 +170736919518,219,0 +170736919567,221,0 +170736919617,220,0 +170736919665,220,0 +170736919713,220,0 +170736919760,220,0 +170736919808,221,0 +170736919856,288,1 +170736919934,231,0 +170736919983,220,0 +170736920031,220,0 +170736920081,220,0 +170736920130,220,0 +170736920180,220,0 +170736920228,220,0 +170736920277,220,0 +170736920327,220,0 +170736920376,220,0 +170736920424,220,0 +170736920472,220,0 +170736920520,220,0 +170736920569,220,0 +170736920619,220,0 +170736920667,221,0 +170736920715,253,0 +170736920765,254,0 +170736920812,224,0 +170736920860,220,0 +170736920908,220,0 +170736920958,220,0 +170736921007,220,0 +170736921057,220,0 +170736921105,220,0 +170736921153,220,0 +170736921201,220,0 +170736921249,220,0 +170736921297,220,0 +170736921344,220,0 +170736921392,220,0 +170736921442,220,0 +170736921490,221,0 +170736921539,228,0 +170736921587,252,0 +170736921637,254,0 +170736921685,223,0 +170736921733,221,0 +170736921782,220,0 +170736921830,220,0 +170736921880,220,0 +170736921928,220,0 +170736921977,220,0 +170736922025,220,0 +170736922075,220,0 +170736922123,220,0 +170736922171,220,0 +170736922219,220,0 +170736922268,220,0 +170736922318,220,0 +170736922367,221,0 +170736922415,223,0 +170736922465,255,0 +170736922515,229,0 +170736922564,220,0 +170736922614,220,0 +170736922663,220,0 +170736922713,220,0 +170736922762,220,0 +170736922810,220,0 +170736922858,220,0 +170736922908,220,0 +170736922957,220,0 +170736923005,220,0 +170736923053,220,0 +170736923101,220,0 +170736923149,220,0 +170736923197,220,0 +170736923245,221,0 +170736923292,251,0 +170736923340,257,0 +170736923388,226,0 +170736923436,220,0 +170736923484,220,0 +170736923532,220,0 +170736923581,220,0 +170736923631,220,0 +170736923679,221,0 +170736923727,220,0 +170736923774,221,0 +170736923822,220,0 +170736923872,220,0 +170736923920,220,0 +170736923970,220,0 +170736924019,220,0 +170736924067,220,0 +170736924115,221,0 +170736924163,254,0 +170736924211,254,0 +170736924259,222,0 +170736924307,220,0 +170736924355,220,0 +170736924404,221,0 +170736924454,221,0 +170736924502,220,0 +170736924550,220,0 +170736924598,220,0 +170736924646,220,0 +170736924694,220,0 +170736924742,220,0 +170736924789,220,0 +170736924837,220,0 +170736924885,220,0 +170736924935,221,0 +170736924983,222,0 +170736925032,253,0 +170736925080,222,0 +170736925128,221,0 +170736925176,220,0 +170736925226,220,0 +170736925274,220,0 +170736925323,221,0 +170736925371,221,0 +170736925419,221,0 +170736925469,220,0 +170736925518,220,0 +170736925568,220,0 +170736925616,220,0 +170736925665,220,0 +170736925713,220,0 +170736925762,220,0 +170736925812,222,0 +170736925860,274,1 +170736925941,235,0 +170736925989,221,0 +170736926037,220,0 +170736926085,220,0 +170736926133,221,0 +170736926183,220,0 +170736926231,220,0 +170736926280,220,0 +170736926328,220,0 +170736926378,220,0 +170736926426,220,0 +170736926475,221,0 +170736926523,220,0 +170736926573,221,0 +170736926621,220,0 +170736926669,221,0 +170736926717,260,0 +170736926765,264,0 +170736926812,227,0 +170736926860,220,0 +170736926910,221,0 +170736926958,221,0 +170736927006,220,0 +170736927055,221,0 +170736927103,220,0 +170736927151,221,0 +170736927199,221,0 +170736927247,221,0 +170736927297,221,0 +170736927346,220,0 +170736927394,221,0 +170736927442,221,0 +170736927490,221,0 +170736927538,221,0 +170736927586,254,0 +170736927635,262,0 +170736927683,223,0 +170736927731,221,0 +170736927779,221,0 +170736927827,221,0 +170736927875,220,0 +170736927923,220,0 +170736927971,220,0 +170736928019,220,0 +170736928068,220,0 +170736928116,220,0 +170736928164,220,0 +170736928214,220,0 +170736928262,220,0 +170736928311,220,0 +170736928361,220,0 +170736928409,221,0 +170736928458,251,0 +170736928506,248,0 +170736928554,221,0 +170736928604,220,0 +170736928652,221,0 +170736928701,220,0 +170736928749,220,0 +170736928797,220,0 +170736928845,220,0 +170736928893,220,0 +170736928941,220,0 +170736928991,220,0 +170736929039,220,0 +170736929088,221,0 +170736929136,221,0 +170736929184,221,0 +170736929232,221,0 +170736929280,242,0 +170736929328,260,0 +170736929376,231,0 +170736929424,221,0 +170736929473,220,0 +170736929523,221,0 +170736929571,220,0 +170736929620,220,0 +170736929668,221,0 +170736929716,221,0 +170736929765,220,0 +170736929815,220,0 +170736929864,220,0 +170736929912,220,0 +170736929960,220,0 +170736930010,220,0 +170736930058,220,0 +170736930107,222,0 +170736930157,273,1 +170736930241,229,0 +170736930288,221,0 +170736930336,220,0 +170736930384,221,0 +170736930432,221,0 +170736930480,221,0 +170736930530,220,0 +170736930578,221,0 +170736930626,220,0 +170736930673,221,0 +170736930723,220,0 +170736930773,221,0 +170736930821,220,0 +170736930870,221,0 +170736930918,221,0 +170736930966,222,0 +170736931014,253,0 +170736931063,255,0 +170736931111,224,0 +170736931159,220,0 +170736931209,220,0 +170736931257,220,0 +170736931306,219,0 +170736931356,220,0 +170736931404,219,0 +170736931453,220,0 +170736931503,220,0 +170736931552,220,0 +170736931602,220,0 +170736931651,220,0 +170736931699,220,0 +170736931749,220,0 +170736931797,220,0 +170736931845,228,0 +170736931893,257,0 +170736931942,229,0 +170736931990,221,0 +170736932038,220,0 +170736932088,221,0 +170736932136,221,0 +170736932184,221,0 +170736932233,221,0 +170736932281,221,0 +170736932331,222,0 +170736932379,221,0 +170736932427,221,0 +170736932475,221,0 +170736932524,221,0 +170736932572,221,0 +170736932620,221,0 +170736932668,222,0 +170736932716,253,0 +170736932764,256,0 +170736932812,224,0 +170736932859,220,0 +170736932907,220,0 +170736932957,220,0 +170736933005,219,0 +170736933054,220,0 +170736933104,220,0 +170736933152,220,0 +170736933200,220,0 +170736933248,220,0 +170736933296,220,0 +170736933345,220,0 +170736933393,219,0 +170736933441,219,0 +170736933489,219,0 +170736933537,220,0 +170736933585,249,0 +170736933633,255,0 +170736933682,225,0 +170736933730,221,0 +170736933779,220,0 +170736933827,221,0 +170736933877,220,0 +170736933925,220,0 +170736933973,221,0 +170736934022,221,0 +170736934072,221,0 +170736934120,221,0 +170736934169,220,0 +170736934217,220,0 +170736934265,220,0 +170736934313,220,0 +170736934361,221,0 +170736934410,227,0 +170736934460,255,0 +170736934510,223,0 +170736934557,220,0 +170736934607,220,0 +170736934655,220,0 +170736934704,220,0 +170736934752,220,0 +170736934800,220,0 +170736934850,220,0 +170736934899,220,0 +170736934947,220,0 +170736934995,220,0 +170736935043,220,0 +170736935091,220,0 +170736935140,220,0 +170736935190,218,0 +170736935238,217,0 +170736935286,248,0 +170736935335,255,0 +170736935383,232,0 +170736935431,225,0 +170736935479,225,0 +170736935527,225,0 +170736935575,225,0 +170736935625,225,0 +170736935673,224,0 +170736935722,224,0 +170736935772,224,0 +170736935821,224,0 +170736935869,225,0 +170736935919,225,0 +170736935967,225,0 +170736936015,224,0 +170736936064,224,0 +170736936112,223,0 +170736936160,251,0 +170736936208,254,0 +170736936257,223,0 +170736936305,221,0 +170736936355,220,0 +170736936403,221,0 +170736936451,220,0 +170736936499,221,0 +170736936546,221,0 +170736936594,221,0 +170736936642,221,0 +170736936690,221,0 +170736936738,221,0 +170736936786,220,0 +170736936834,221,0 +170736936881,221,0 +170736936931,221,0 +170736936979,222,0 +170736937027,249,0 +170736937076,254,0 +170736937124,221,0 +170736937172,221,0 +170736937221,220,0 +170736937269,220,0 +170736937317,221,0 +170736937367,221,0 +170736937415,221,0 +170736937463,221,0 +170736937512,221,0 +170736937560,221,0 +170736937608,221,0 +170736937656,221,0 +170736937704,221,0 +170736937753,221,0 +170736937803,221,0 +170736937851,261,0 +170736937900,269,0 +170736937948,229,0 +170736937996,221,0 +170736938045,221,0 +170736938093,221,0 +170736938141,221,0 +170736938189,221,0 +170736938237,221,0 +170736938285,221,0 +170736938333,221,0 +170736938381,220,0 +170736938429,220,0 +170736938476,220,0 +170736938526,220,0 +170736938574,220,0 +170736938622,220,0 +170736938670,221,0 +170736938717,254,0 +170736938767,256,0 +170736938815,226,0 +170736938863,220,0 +170736938911,221,0 +170736938959,221,0 +170736939008,221,0 +170736939056,220,0 +170736939104,221,0 +170736939152,220,0 +170736939201,220,0 +170736939249,221,0 +170736939297,221,0 +170736939345,221,0 +170736939393,221,0 +170736939441,220,0 +170736939490,221,0 +170736939539,228,0 +170736939587,249,0 +170736939635,251,0 +170736939685,223,0 +170736939733,220,0 +170736939781,221,0 +170736939829,220,0 +170736939877,220,0 +170736939925,220,0 +170736939972,220,0 +170736940022,220,0 +170736940071,220,0 +170736940121,220,0 +170736940169,220,0 +170736940217,220,0 +170736940265,221,0 +170736940313,224,0 +170736940362,228,0 +170736940412,235,0 +170736940460,249,0 +170736940508,223,0 +170736940556,220,0 +170736940604,220,0 +170736940652,220,0 +170736940701,220,0 +170736940749,220,0 +170736940797,220,0 +170736940846,219,0 +170736940896,220,0 +170736940944,220,0 +170736940994,219,0 +170736941043,219,0 +170736941091,220,0 +170736941139,219,0 +170736941188,220,0 +170736941236,221,0 +170736941284,230,0 +170736941332,253,0 +170736941382,227,0 +170736941431,220,0 +170736941479,220,0 +170736941529,220,0 +170736941577,220,0 +170736941625,221,0 +170736941673,220,0 +170736941721,220,0 +170736941770,220,0 +170736941818,220,0 +170736941868,220,0 +170736941915,220,0 +170736941963,220,0 +170736942011,220,0 +170736942061,220,0 +170736942110,221,0 +170736942158,250,0 +170736942208,255,0 +170736942256,224,0 +170736942305,220,0 +170736942355,220,0 +170736942403,220,0 +170736942452,220,0 +170736942502,220,0 +170736942550,220,0 +170736942599,221,0 +170736942649,220,0 +170736942698,220,0 +170736942748,220,0 +170736942797,220,0 +170736942845,220,0 +170736942893,221,0 +170736942943,221,0 +170736942990,223,0 +170736943038,255,0 +170736943086,229,0 +170736943134,221,0 +170736943182,220,0 +170736943230,220,0 +170736943278,220,0 +170736943326,220,0 +170736943374,220,0 +170736943422,220,0 +170736943472,220,0 +170736943520,220,0 +170736943568,220,0 +170736943616,220,0 +170736943664,220,0 +170736943712,221,0 +170736943761,220,0 +170736943809,221,0 +170736943857,247,0 +170736943907,256,0 +170736943955,225,0 +170736944003,220,0 +170736944052,220,0 +170736944100,220,0 +170736944148,220,0 +170736944198,220,0 +170736944246,220,0 +170736944294,219,0 +170736944342,220,0 +170736944391,220,0 +170736944439,220,0 +170736944487,220,0 +170736944535,220,0 +170736944583,220,0 +170736944632,220,0 +170736944680,220,0 +170736944728,252,0 +170736944776,256,0 +170736944824,223,0 +170736944872,220,0 +170736944920,220,0 +170736944968,220,0 +170736945017,219,0 +170736945066,220,0 +170736945114,220,0 +170736945161,219,0 +170736945209,220,0 +170736945257,220,0 +170736945305,219,0 +170736945353,219,0 +170736945401,219,0 +170736945449,220,0 +170736945499,220,0 +170736945547,220,0 +170736945595,252,0 +170736945644,254,0 +170736945694,221,0 +170736945742,220,0 +170736945791,220,0 +170736945839,220,0 +170736945887,220,0 +170736945935,220,0 +170736945984,220,0 +170736946032,220,0 +170736946082,220,0 +170736946130,220,0 +170736946178,219,0 +170736946226,219,0 +170736946274,220,0 +170736946322,219,0 +170736946370,220,0 +170736946419,223,0 +170736946467,258,0 +170736946517,238,0 +170736946566,221,0 +170736946614,219,0 +170736946664,220,0 +170736946712,219,0 +170736946761,220,0 +170736946809,220,0 +170736946859,220,0 +170736946908,220,0 +170736946956,220,0 +170736947006,220,0 +170736947053,220,0 +170736947101,220,0 +170736947149,220,0 +170736947197,220,0 +170736947245,220,0 +170736947293,247,0 +170736947343,256,0 +170736947391,224,0 +170736947439,220,0 +170736947487,219,0 +170736947535,219,0 +170736947583,219,0 +170736947632,219,0 +170736947681,219,0 +170736947729,219,0 +170736947779,220,0 +170736947828,220,0 +170736947876,219,0 +170736947924,220,0 +170736947972,220,0 +170736948020,219,0 +170736948070,221,0 +170736948117,220,0 +170736948167,251,0 +170736948215,251,0 +170736948264,221,0 +170736948312,221,0 +170736948362,220,0 +170736948411,220,0 +170736948459,220,0 +170736948507,220,0 +170736948555,220,0 +170736948603,220,0 +170736948653,220,0 +170736948701,220,0 +170736948748,219,0 +170736948796,220,0 +170736948844,220,0 +170736948892,220,0 +170736948940,220,0 +170736948988,221,0 +170736949037,251,0 +170736949085,223,0 +170736949133,220,0 +170736949183,220,0 +170736949231,219,0 +170736949280,219,0 +170736949328,219,0 +170736949376,220,0 +170736949426,219,0 +170736949475,220,0 +170736949525,220,0 +170736949574,220,0 +170736949624,220,0 +170736949672,220,0 +170736949721,220,0 +170736949769,220,0 +170736949817,220,0 +170736949865,254,0 +170736949913,253,0 +170736949961,226,0 +170736950009,220,0 +170736950058,220,0 +170736950108,220,0 +170736950157,220,0 +170736950207,220,0 +170736950255,220,0 +170736950303,220,0 +170736950351,220,0 +170736950400,220,0 +170736950450,220,0 +170736950499,220,0 +170736950549,220,0 +170736950597,220,0 +170736950645,220,0 +170736950694,222,0 +170736950744,278,1 +170736950833,221,0 +170736950882,220,0 +170736950930,220,0 +170736950978,220,0 +170736951028,220,0 +170736951075,220,0 +170736951123,220,0 +170736951173,220,0 +170736951222,220,0 +170736951272,220,0 +170736951320,220,0 +170736951368,219,0 +170736951416,220,0 +170736951464,220,0 +170736951511,220,0 +170736951559,222,0 +170736951607,252,0 +170736951657,222,0 +170736951705,220,0 +170736951754,220,0 +170736951802,220,0 +170736951850,220,0 +170736951900,220,0 +170736951949,220,0 +170736951997,220,0 +170736952047,220,0 +170736952095,220,0 +170736952143,220,0 +170736952192,220,0 +170736952240,220,0 +170736952288,220,0 +170736952336,220,0 +170736952384,221,0 +170736952433,242,0 +170736952483,255,0 +170736952531,227,0 +170736952579,219,0 +170736952626,220,0 +170736952674,220,0 +170736952722,219,0 +170736952770,220,0 +170736952818,220,0 +170736952866,219,0 +170736952914,219,0 +170736952963,220,0 +170736953011,220,0 +170736953059,220,0 +170736953107,219,0 +170736953155,220,0 +170736953203,220,0 +170736953251,220,0 +170736953299,249,0 +170736953347,254,0 +170736953396,222,0 +170736953444,220,0 +170736953492,220,0 +170736953540,220,0 +170736953588,220,0 +170736953636,220,0 +170736953684,220,0 +170736953731,220,0 +170736953779,220,0 +170736953827,219,0 +170736953875,220,0 +170736953923,220,0 +170736953971,220,0 +170736954019,220,0 +170736954068,220,0 +170736954116,221,0 +170736954164,252,0 +170736954212,254,0 +170736954260,221,0 +170736954307,220,0 +170736954355,220,0 +170736954403,219,0 +170736954451,220,0 +170736954499,220,0 +170736954547,220,0 +170736954595,220,0 +170736954643,219,0 +170736954691,219,0 +170736954738,219,0 +170736954786,219,0 +170736954834,219,0 +170736954882,220,0 +170736954930,220,0 +170736954978,221,0 +170736955027,254,0 +170736955075,235,0 +170736955123,220,0 +170736955173,220,0 +170736955220,219,0 +170736955268,220,0 +170736955318,220,0 +170736955366,219,0 +170736955414,219,0 +170736955462,219,0 +170736955511,220,0 +170736955559,219,0 +170736955609,220,0 +170736955657,220,0 +170736955705,219,0 +170736955753,220,0 +170736955801,220,0 +170736955848,229,0 +170736955898,254,0 +170736955946,228,0 +170736955994,219,0 +170736956042,220,0 +170736956090,220,0 +170736956138,220,0 +170736956187,220,0 +170736956235,220,0 +170736956283,220,0 +170736956331,220,0 +170736956379,220,0 +170736956427,220,0 +170736956475,220,0 +170736956523,220,0 +170736956571,220,0 +170736956618,220,0 +170736956666,220,0 +170736956714,251,0 +170736956764,255,0 +170736956813,223,0 +170736956861,219,0 +170736956911,220,0 +170736956959,220,0 +170736957008,220,0 +170736957056,220,0 +170736957104,220,0 +170736957152,220,0 +170736957200,220,0 +170736957248,219,0 +170736957296,219,0 +170736957343,219,0 +170736957391,219,0 +170736957439,219,0 +170736957487,219,0 +170736957535,222,0 +170736957583,251,0 +170736957631,254,0 +170736957679,230,0 +170736957727,228,0 +170736957776,228,0 +170736957826,227,0 +170736957874,228,0 +170736957922,228,0 +170736957970,228,0 +170736958019,228,0 +170736958069,227,0 +170736958117,227,0 +170736958165,226,0 +170736958213,226,0 +170736958260,227,0 +170736958308,227,0 +170736958356,228,0 +170736958406,227,0 +170736958455,250,0 +170736958503,242,0 +170736958551,226,0 +170736958599,224,0 +170736958648,224,0 +170736958696,224,0 +170736958744,224,0 +170736958794,224,0 +170736958842,224,0 +170736958891,225,0 +170736958939,225,0 +170736958989,225,0 +170736959038,225,0 +170736959086,225,0 +170736959134,224,0 +170736959182,225,0 +170736959232,221,0 +170736959280,229,0 +170736959328,255,0 +170736959375,229,0 +170736959423,221,0 +170736959473,221,0 +170736959521,221,0 +170736959569,221,0 +170736959618,221,0 +170736959666,221,0 +170736959714,220,0 +170736959764,221,0 +170736959812,221,0 +170736959860,221,0 +170736959908,221,0 +170736959956,221,0 +170736960005,221,0 +170736960053,221,0 +170736960103,221,0 +170736960151,250,0 +170736960199,253,0 +170736960247,222,0 +170736960295,221,0 +170736960343,220,0 +170736960391,221,0 +170736960439,220,0 +170736960488,221,0 +170736960536,221,0 +170736960584,221,0 +170736960633,220,0 +170736960683,220,0 +170736960732,221,0 +170736960780,220,0 +170736960828,221,0 +170736960876,220,0 +170736960924,221,0 +170736960972,222,0 +170736961019,251,0 +170736961067,252,0 +170736961115,221,0 +170736961163,221,0 +170736961211,220,0 +170736961259,221,0 +170736961308,220,0 +170736961356,220,0 +170736961404,220,0 +170736961452,221,0 +170736961500,221,0 +170736961548,220,0 +170736961596,221,0 +170736961644,221,0 +170736961692,221,0 +170736961740,221,0 +170736961787,221,0 +170736961835,223,0 +170736961883,253,0 +170736961931,222,0 +170736961979,222,0 +170736962029,221,0 +170736962078,221,0 +170736962126,221,0 +170736962174,221,0 +170736962224,221,0 +170736962272,221,0 +170736962321,220,0 +170736962369,221,0 +170736962419,220,0 +170736962468,221,0 +170736962516,220,0 +170736962564,223,0 +170736962614,226,0 +170736962662,232,0 +170736962709,250,0 +170736962757,254,0 +170736962805,226,0 +170736962853,221,0 +170736962902,221,0 +170736962952,221,0 +170736963000,220,0 +170736963048,221,0 +170736963096,221,0 +170736963143,220,0 +170736963191,220,0 +170736963239,221,0 +170736963287,220,0 +170736963335,220,0 +170736963383,220,0 +170736963431,220,0 +170736963479,220,0 +170736963527,221,0 +170736963574,249,0 +170736963622,256,0 +170736963672,224,0 +170736963720,220,0 +170736963768,220,0 +170736963815,220,0 +170736963863,220,0 +170736963913,221,0 +170736963962,221,0 +170736964010,221,0 +170736964060,221,0 +170736964109,221,0 +170736964157,220,0 +170736964207,221,0 +170736964255,220,0 +170736964304,220,0 +170736964354,221,0 +170736964402,222,0 +170736964450,249,0 +170736964497,253,0 +170736964545,222,0 +170736964593,221,0 +170736964641,221,0 +170736964689,221,0 +170736964737,221,0 +170736964785,221,0 +170736964833,221,0 +170736964881,221,0 +170736964930,221,0 +170736964978,221,0 +170736965028,221,0 +170736965077,221,0 +170736965125,221,0 +170736965173,220,0 +170736965221,221,0 +170736965271,224,0 +170736965320,254,0 +170736965368,228,0 +170736965416,222,0 +170736965464,221,0 +170736965514,221,0 +170736965562,221,0 +170736965610,221,0 +170736965658,221,0 +170736965706,221,0 +170736965754,221,0 +170736965803,221,0 +170736965853,222,0 +170736965901,225,0 +170736965950,226,0 +170736965998,230,0 +170736966046,236,0 +170736966094,241,0 +170736966142,251,0 +170736966190,255,0 +170736966238,227,0 +170736966286,222,0 +170736966334,222,0 +170736966382,221,0 +170736966430,222,0 +170736966477,223,0 +170736966527,222,0 +170736966575,223,0 +170736966623,223,0 +170736966673,222,0 +170736966722,222,0 +170736966772,222,0 +170736966820,224,0 +170736966867,228,0 +170736966915,233,0 +170736966965,238,0 +170736967013,251,0 +170736967063,254,0 +170736967110,224,0 +170736967158,222,0 +170736967206,222,0 +170736967254,222,0 +170736967304,222,0 +170736967353,222,0 +170736967403,222,0 +170736967451,222,0 +170736967500,222,0 +170736967548,223,0 +170736967596,223,0 +170736967646,222,0 +170736967695,225,0 +170736967743,227,0 +170736967791,235,0 +170736967839,237,0 +170736967888,254,0 +170736967936,225,0 +170736967984,222,0 +170736968032,222,0 +170736968080,221,0 +170736968128,222,0 +170736968176,221,0 +170736968224,222,0 +170736968272,222,0 +170736968319,221,0 +170736968367,222,0 +170736968415,224,0 +170736968463,226,0 +170736968511,227,0 +170736968559,232,0 +170736968607,237,0 +170736968655,242,0 +170736968702,243,0 +170736968750,255,0 +170736968800,230,0 +170736968848,222,0 +170736968896,222,0 +170736968943,222,0 +170736968993,222,0 +170736969041,223,0 +170736969089,223,0 +170736969136,222,0 +170736969184,222,0 +170736969232,222,0 +170736969280,222,0 +170736969328,222,0 +170736969376,222,0 +170736969424,223,0 +170736969473,222,0 +170736969521,223,0 +170736969570,231,0 +170736969618,255,0 +170736969666,231,0 +170736969714,223,0 +170736969762,223,0 +170736969810,223,0 +170736969858,222,0 +170736969906,223,0 +170736969953,222,0 +170736970001,222,0 +170736970049,223,0 +170736970097,222,0 +170736970145,222,0 +170736970193,222,0 +170736970241,222,0 +170736970290,222,0 +170736970338,222,0 +170736970386,222,0 +170736970434,249,0 +170736970482,255,0 +170736970530,228,0 +170736970578,223,0 +170736970627,223,0 +170736970677,222,0 +170736970726,222,0 +170736970774,222,0 +170736970823,222,0 +170736970871,222,0 +170736970919,222,0 +170736970969,222,0 +170736971017,222,0 +170736971064,223,0 +170736971112,224,0 +170736971160,228,0 +170736971208,232,0 +170736971258,239,0 +170736971306,252,0 +170736971354,247,0 +170736971402,223,0 +170736971450,222,0 +170736971498,222,0 +170736971545,222,0 +170736971595,223,0 +170736971643,223,0 +170736971691,223,0 +170736971739,223,0 +170736971787,223,0 +170736971835,223,0 +170736971884,223,0 +170736971932,225,0 +170736971982,226,0 +170736972030,230,0 +170736972079,236,0 +170736972127,239,0 +170736972175,254,0 +170736972223,228,0 +170736972271,222,0 +170736972321,221,0 +170736972370,222,0 +170736972418,222,0 +170736972466,222,0 +170736972516,222,0 +170736972565,221,0 +170736972613,221,0 +170736972661,221,0 +170736972709,222,0 +170736972757,221,0 +170736972807,221,0 +170736972856,222,0 +170736972904,224,0 +170736972954,229,0 +170736973002,239,0 +170736973049,256,0 +170736973097,231,0 +170736973147,224,0 +170736973195,224,0 +170736973244,224,0 +170736973292,224,0 +170736973342,224,0 +170736973390,224,0 +170736973438,224,0 +170736973486,224,0 +170736973534,224,0 +170736973583,223,0 +170736973631,223,0 +170736973679,224,0 +170736973727,224,0 +170736973775,224,0 +170736973823,229,0 +170736973871,253,0 +170736973919,255,0 +170736973968,224,0 +170736974016,223,0 +170736974066,224,0 +170736974114,224,0 +170736974162,223,0 +170736974210,223,0 +170736974258,222,0 +170736974306,223,0 +170736974354,223,0 +170736974403,223,0 +170736974453,223,0 +170736974502,223,0 +170736974550,223,0 +170736974598,226,0 +170736974646,231,0 +170736974694,239,0 +170736974742,254,0 +170736974790,226,0 +170736974838,225,0 +170736974887,225,0 +170736974935,224,0 +170736974983,225,0 +170736975031,224,0 +170736975081,224,0 +170736975129,225,0 +170736975178,224,0 +170736975226,224,0 +170736975274,224,0 +170736975324,224,0 +170736975373,225,0 +170736975423,225,0 +170736975471,231,0 +170736975520,237,0 +170736975570,241,0 +170736975618,257,0 +170736975666,230,0 +170736975713,223,0 +170736975761,223,0 +170736975811,223,0 +170736975859,223,0 +170736975907,223,0 +170736975955,223,0 +170736976003,223,0 +170736976052,226,0 +170736976100,227,0 +170736976148,227,0 +170736976196,230,0 +170736976244,235,0 +170736976292,234,0 +170736976340,244,0 +170736976388,242,0 +170736976438,244,0 +170736976486,255,0 +170736976534,230,0 +170736976582,224,0 +170736976629,224,0 +170736976677,224,0 +170736976725,224,0 +170736976773,223,0 +170736976821,224,0 +170736976869,223,0 +170736976918,224,0 +170736976966,224,0 +170736977014,224,0 +170736977062,224,0 +170736977112,224,0 +170736977160,227,0 +170736977208,232,0 +170736977255,236,0 +170736977303,250,0 +170736977353,254,0 +170736977401,224,0 +170736977450,223,0 +170736977498,222,0 +170736977546,223,0 +170736977596,222,0 +170736977644,222,0 +170736977692,223,0 +170736977740,223,0 +170736977789,222,0 +170736977837,222,0 +170736977885,222,0 +170736977935,222,0 +170736977983,223,0 +170736978031,225,0 +170736978079,230,0 +170736978128,233,0 +170736978176,252,0 +170736978224,250,0 +170736978274,224,0 +170736978322,224,0 +170736978370,224,0 +170736978419,223,0 +170736978467,224,0 +170736978515,223,0 +170736978563,223,0 +170736978611,224,0 +170736978659,223,0 +170736978707,223,0 +170736978755,223,0 +170736978803,224,0 +170736978851,223,0 +170736978899,223,0 +170736978948,224,0 +170736978996,226,0 +170736979044,253,0 +170736979094,230,0 +170736979142,224,0 +170736979190,223,0 +170736979238,223,0 +170736979286,223,0 +170736979335,223,0 +170736979383,224,0 +170736979433,224,0 +170736979482,226,0 +170736979532,228,0 +170736979580,230,0 +170736979628,232,0 +170736979676,230,0 +170736979724,242,0 +170736979772,245,0 +170736979821,245,0 +170736979871,253,0 +170736979920,254,0 +170736979968,225,0 +170736980016,223,0 +170736980066,223,0 +170736980113,223,0 +170736980161,223,0 +170736980211,223,0 +170736980259,223,0 +170736980307,223,0 +170736980356,222,0 +170736980406,216,0 +170736980454,223,0 +170736980503,222,0 +170736980551,223,0 +170736980601,223,0 +170736980651,227,0 +170736980700,233,0 +170736980748,253,0 +170736980796,226,0 +170736980846,222,0 +170736980895,222,0 +170736980943,221,0 +170736980991,222,0 +170736981041,222,0 +170736981089,222,0 +170736981137,222,0 +170736981186,222,0 +170736981234,222,0 +170736981282,223,0 +170736981332,224,0 +170736981381,227,0 +170736981431,230,0 +170736981479,233,0 +170736981528,240,0 +170736981578,248,0 +170736981626,254,0 +170736981674,229,0 +170736981723,223,0 +170736981771,222,0 +170736981819,222,0 +170736981867,222,0 +170736981917,222,0 +170736981965,222,0 +170736982012,222,0 +170736982060,222,0 +170736982108,222,0 +170736982158,222,0 +170736982206,222,0 +170736982254,222,0 +170736982302,222,0 +170736982350,222,0 +170736982399,223,0 +170736982449,251,0 +170736982497,255,0 +170736982545,225,0 +170736982593,222,0 +170736982642,222,0 +170736982690,222,0 +170736982740,222,0 +170736982788,222,0 +170736982836,222,0 +170736982883,222,0 +170736982931,223,0 +170736982979,222,0 +170736983029,222,0 +170736983078,222,0 +170736983128,222,0 +170736983176,222,0 +170736983224,222,0 +170736983272,224,0 +170736983320,253,0 +170736983369,233,0 +170736983417,224,0 +170736983465,223,0 +170736983513,224,0 +170736983561,223,0 +170736983611,223,0 +170736983659,223,0 +170736983708,224,0 +170736983756,222,0 +170736983804,223,0 +170736983852,223,0 +170736983900,224,0 +170736983948,226,0 +170736983997,231,0 +170736984047,235,0 +170736984095,242,0 +170736984143,246,0 +170736984192,257,0 +170736984242,232,0 +170736984290,225,0 +170736984339,225,0 +170736984387,225,0 +170736984435,224,0 +170736984483,224,0 +170736984533,224,0 +170736984581,224,0 +170736984629,224,0 +170736984678,224,0 +170736984726,224,0 +170736984774,224,0 +170736984822,224,0 +170736984872,224,0 +170736984920,224,0 +170736984968,225,0 +170736985016,250,0 +170736985064,255,0 +170736985111,226,0 +170736985161,222,0 +170736985209,223,0 +170736985257,223,0 +170736985305,222,0 +170736985353,223,0 +170736985401,223,0 +170736985448,222,0 +170736985496,223,0 +170736985544,223,0 +170736985592,227,0 +170736985640,228,0 +170736985688,231,0 +170736985737,235,0 +170736985785,241,0 +170736985834,246,0 +170736985882,253,0 +170736985930,255,0 +170736985978,225,0 +170736986026,223,0 +170736986075,223,0 +170736986123,224,0 +170736986171,224,0 +170736986219,223,0 +170736986267,224,0 +170736986315,224,0 +170736986363,224,0 +170736986411,224,0 +170736986459,227,0 +170736986507,228,0 +170736986556,233,0 +170736986604,237,0 +170736986652,242,0 +170736986702,244,0 +170736986750,254,0 +170736986799,223,0 +170736986847,223,0 +170736986895,222,0 +170736986945,222,0 +170736986994,222,0 +170736987044,222,0 +170736987092,222,0 +170736987141,222,0 +170736987191,223,0 +170736987239,223,0 +170736987287,223,0 +170736987336,226,0 +170736987384,226,0 +170736987432,232,0 +170736987480,238,0 +170736987530,241,0 +170736987578,252,0 +170736987626,255,0 +170736987675,228,0 +170736987723,223,0 +170736987773,223,0 +170736987821,223,0 +170736987870,223,0 +170736987918,223,0 +170736987968,223,0 +170736988017,222,0 +170736988067,222,0 +170736988115,222,0 +170736988164,222,0 +170736988214,222,0 +170736988262,223,0 +170736988311,226,0 +170736988361,231,0 +170736988410,251,0 +170736988458,255,0 +170736988506,255,0 +170736988554,223,0 +170736988602,223,0 +170736988651,222,0 +170736988701,222,0 +170736988749,222,0 +170736988798,223,0 +170736988848,222,0 +170736988896,222,0 +170736988944,223,0 +170736988993,222,0 +170736989043,222,0 +170736989092,223,0 +170736989142,223,0 +170736989190,222,0 +170736989238,222,0 +170736989287,243,0 +170736989335,255,0 +170736989383,229,0 +170736989431,222,0 +170736989479,222,0 +170736989527,222,0 +170736989575,221,0 +170736989623,222,0 +170736989671,222,0 +170736989719,222,0 +170736989769,221,0 +170736989818,222,0 +170736989866,222,0 +170736989916,222,0 +170736989965,224,0 +170736990013,226,0 +170736990063,232,0 +170736990112,239,0 +170736990160,252,0 +170736990209,254,0 +170736990257,225,0 +170736990307,222,0 +170736990355,223,0 +170736990403,223,0 +170736990451,223,0 +170736990500,223,0 +170736990548,223,0 +170736990596,223,0 +170736990644,223,0 +170736990692,225,0 +170736990740,227,0 +170736990788,230,0 +170736990836,231,0 +170736990884,235,0 +170736990932,241,0 +170736990979,237,0 +170736991027,252,0 +170736991075,249,0 +170736991123,220,0 +170736991171,219,0 +170736991219,219,0 +170736991267,219,0 +170736991315,220,0 +170736991363,219,0 +170736991411,218,0 +170736991458,219,0 +170736991506,220,0 +170736991556,219,0 +170736991604,219,0 +170736991652,219,0 +170736991699,221,0 +170736991747,225,0 +170736991795,230,0 +170736991845,236,0 +170736991892,255,0 +170736991940,224,0 +170736991990,224,0 +170736992038,224,0 +170736992086,224,0 +170736992133,224,0 +170736992181,224,0 +170736992229,224,0 +170736992277,224,0 +170736992325,223,0 +170736992373,224,0 +170736992421,224,0 +170736992470,226,0 +170736992519,230,0 +170736992569,236,0 +170736992617,239,0 +170736992665,243,0 +170736992713,248,0 +170736992761,255,0 +170736992809,230,0 +170736992857,224,0 +170736992905,223,0 +170736992953,223,0 +170736993002,223,0 +170736993052,222,0 +170736993101,223,0 +170736993149,223,0 +170736993199,223,0 +170736993247,224,0 +170736993296,225,0 +170736993346,226,0 +170736993395,227,0 +170736993443,233,0 +170736993493,237,0 +170736993541,241,0 +170736993590,252,0 +170736993638,255,0 +170736993688,224,0 +170736993737,223,0 +170736993785,223,0 +170736993833,223,0 +170736993881,223,0 +170736993929,223,0 +170736993977,223,0 +170736994026,223,0 +170736994076,222,0 +170736994124,223,0 +170736994173,226,0 +170736994221,226,0 +170736994269,232,0 +170736994317,237,0 +170736994365,242,0 +170736994413,247,0 +170736994461,254,0 +170736994508,225,0 +170736994556,224,0 +170736994604,224,0 +170736994652,223,0 +170736994700,223,0 +170736994748,223,0 +170736994796,222,0 +170736994843,222,0 +170736994891,223,0 +170736994939,223,0 +170736994987,223,0 +170736995035,223,0 +170736995084,223,0 +170736995132,223,0 +170736995180,223,0 +170736995228,223,0 +170736995278,225,0 +170736995327,255,0 +170736995377,228,0 +170736995425,223,0 +170736995473,223,0 +170736995522,223,0 +170736995572,223,0 +170736995620,223,0 +170736995668,222,0 +170736995716,222,0 +170736995764,221,0 +170736995813,222,0 +170736995861,223,0 +170736995911,223,0 +170736995959,223,0 +170736996007,222,0 +170736996055,223,0 +170736996102,223,0 +170736996150,250,0 +170736996198,255,0 +170736996246,227,0 +170736996294,222,0 +170736996342,221,0 +170736996390,221,0 +170736996440,221,0 +170736996488,221,0 +170736996536,221,0 +170736996583,220,0 +170736996633,221,0 +170736996681,221,0 +170736996730,223,0 +170736996778,225,0 +170736996826,227,0 +170736996876,233,0 +170736996925,239,0 +170736996975,244,0 +170736997025,253,0 +170736997072,253,0 +170736997122,223,0 +170736997171,222,0 +170736997219,222,0 +170736997267,222,0 +170736997315,223,0 +170736997365,223,0 +170736997414,223,0 +170736997462,222,0 +170736997510,222,0 +170736997560,222,0 +170736997608,222,0 +170736997656,222,0 +170736997704,223,0 +170736997752,223,0 +170736997801,223,0 +170736997849,225,0 +170736997897,255,0 +170736997947,230,0 +170736997995,223,0 +170736998044,223,0 +170736998092,222,0 +170736998140,222,0 +170736998190,222,0 +170736998238,222,0 +170736998285,222,0 +170736998335,222,0 +170736998383,222,0 +170736998431,222,0 +170736998480,223,0 +170736998528,223,0 +170736998576,225,0 +170736998626,230,0 +170736998675,235,0 +170736998723,252,0 +170736998773,255,0 +170736998821,228,0 +170736998870,222,0 +170736998920,223,0 +170736998968,223,0 +170736999017,223,0 +170736999067,223,0 +170736999116,223,0 +170736999164,223,0 +170736999214,223,0 +170736999262,223,0 +170736999310,227,0 +170736999359,227,0 +170736999409,231,0 +170736999457,234,0 +170736999506,242,0 +170736999554,246,0 +170736999602,254,0 +170736999652,232,0 +170736999701,223,0 +170736999749,222,0 +170736999797,223,0 +170736999845,223,0 +170736999893,223,0 +170736999941,223,0 +170736999989,223,0 +170737000037,223,0 +170737000085,224,0 +170737000135,223,0 +170737000183,224,0 +170737000232,226,0 +170737000280,230,0 +170737000328,237,0 +170737000376,241,0 +170737000426,246,0 +170737000474,254,0 +170737000522,228,0 +170737000571,223,0 +170737000619,222,0 +170737000667,222,0 +170737000715,222,0 +170737000763,222,0 +170737000811,221,0 +170737000859,221,0 +170737000907,222,0 +170737000955,223,0 +170737001003,226,0 +170737001051,227,0 +170737001099,225,0 +170737001148,234,0 +170737001196,237,0 +170737001244,242,0 +170737001292,251,0 +170737001341,256,0 +170737001391,228,0 +170737001440,223,0 +170737001488,224,0 +170737001536,223,0 +170737001584,223,0 +170737001634,223,0 +170737001682,223,0 +170737001730,223,0 +170737001779,223,0 +170737001827,223,0 +170737001877,223,0 +170737001926,224,0 +170737001974,223,0 +170737002022,223,0 +170737002070,224,0 +170737002120,227,0 +170737002169,253,0 +170737002219,226,0 +170737002267,223,0 +170737002316,222,0 +170737002364,221,0 +170737002414,222,0 +170737002462,222,0 +170737002510,222,0 +170737002559,222,0 +170737002609,222,0 +170737002657,221,0 +170737002705,222,0 +170737002753,221,0 +170737002801,222,0 +170737002850,222,0 +170737002900,222,0 +170737002948,226,0 +170737002996,235,0 +170737003045,258,0 +170737003093,229,0 +170737003141,222,0 +170737003191,222,0 +170737003239,222,0 +170737003286,221,0 +170737003336,221,0 +170737003386,222,0 +170737003433,224,0 +170737003481,225,0 +170737003529,226,0 +170737003577,228,0 +170737003625,231,0 +170737003675,235,0 +170737003723,239,0 +170737003771,242,0 +170737003819,248,0 +170737003868,252,0 +170737003918,253,0 +170737003967,227,0 +170737004015,225,0 +170737004063,224,0 +170737004111,225,0 +170737004159,225,0 +170737004207,225,0 +170737004255,224,0 +170737004303,224,0 +170737004351,224,0 +170737004399,225,0 +170737004447,225,0 +170737004497,227,0 +170737004546,231,0 +170737004594,235,0 +170737004642,241,0 +170737004690,245,0 +170737004740,254,0 +170737004788,232,0 +170737004836,225,0 +170737004883,224,0 +170737004931,225,0 +170737004979,225,0 +170737005027,225,0 +170737005075,225,0 +170737005123,224,0 +170737005171,225,0 +170737005219,225,0 +170737005267,225,0 +170737005317,225,0 +170737005365,225,0 +170737005413,225,0 +170737005461,224,0 +170737005509,224,0 +170737005557,231,0 +170737005605,253,0 +170737005652,223,0 +170737005700,224,0 +170737005748,223,0 +170737005796,223,0 +170737005844,223,0 +170737005894,223,0 +170737005942,223,0 +170737005990,223,0 +170737006038,223,0 +170737006087,223,0 +170737006135,223,0 +170737006183,224,0 +170737006231,225,0 +170737006279,227,0 +170737006327,233,0 +170737006374,239,0 +170737006422,243,0 +170737006470,255,0 +170737006518,226,0 +170737006568,222,0 +170737006616,221,0 +170737006664,222,0 +170737006713,221,0 +170737006761,221,0 +170737006809,221,0 +170737006859,221,0 +170737006908,221,0 +170737006956,221,0 +170737007006,221,0 +170737007055,221,0 +170737007103,222,0 +170737007153,221,0 +170737007200,222,0 +170737007248,222,0 +170737007298,251,0 +170737007347,254,0 +170737007395,224,0 +170737007445,222,0 +170737007494,222,0 +170737007542,222,0 +170737007590,222,0 +170737007640,222,0 +170737007689,222,0 +170737007737,221,0 +170737007785,222,0 +170737007833,222,0 +170737007881,222,0 +170737007930,222,0 +170737007978,222,0 +170737008028,223,0 +170737008077,226,0 +170737008127,236,0 +170737008175,256,0 +170737008224,231,0 +170737008274,225,0 +170737008323,224,0 +170737008371,224,0 +170737008419,223,0 +170737008467,223,0 +170737008515,223,0 +170737008563,224,0 +170737008611,223,0 +170737008661,223,0 +170737008710,224,0 +170737008758,224,0 +170737008808,225,0 +170737008857,223,0 +170737008905,223,0 +170737008953,226,0 +170737009001,247,0 +170737009049,255,0 +170737009099,231,0 +170737009148,224,0 +170737009196,225,0 +170737009246,224,0 +170737009295,224,0 +170737009345,225,0 +170737009393,224,0 +170737009441,225,0 +170737009489,225,0 +170737009537,224,0 +170737009586,229,0 +170737009636,230,0 +170737009684,237,0 +170737009731,242,0 +170737009781,246,0 +170737009829,247,0 +170737009877,254,0 +170737009926,251,0 +170737009974,224,0 +170737010022,223,0 +170737010070,224,0 +170737010118,223,0 +170737010166,223,0 +170737010214,223,0 +170737010264,223,0 +170737010313,223,0 +170737010361,223,0 +170737010409,224,0 +170737010459,226,0 +170737010507,227,0 +170737010555,233,0 +170737010602,240,0 +170737010650,244,0 +170737010698,243,0 +170737010746,253,0 +170737010794,223,0 +170737010842,223,0 +170737010890,222,0 +170737010938,222,0 +170737010986,222,0 +170737011034,222,0 +170737011082,222,0 +170737011130,222,0 +170737011177,222,0 +170737011225,222,0 +170737011273,224,0 +170737011321,226,0 +170737011371,228,0 +170737011420,232,0 +170737011468,237,0 +170737011518,243,0 +170737011567,241,0 +170737011615,262,0 +170737011663,232,0 +170737011711,226,0 +170737011761,224,0 +170737011808,224,0 +170737011858,224,0 +170737011906,224,0 +170737011955,224,0 +170737012003,224,0 +170737012051,224,0 +170737012099,223,0 +170737012149,224,0 +170737012198,224,0 +170737012246,225,0 +170737012294,224,0 +170737012342,228,0 +170737012390,232,0 +170737012438,253,0 +170737012488,255,0 +170737012536,227,0 +170737012584,223,0 +170737012632,222,0 +170737012679,222,0 +170737012727,222,0 +170737012775,222,0 +170737012825,223,0 +170737012874,222,0 +170737012924,224,0 +170737012972,224,0 +170737013020,226,0 +170737013068,226,0 +170737013116,234,0 +170737013164,236,0 +170737013212,240,0 +170737013261,245,0 +170737013309,252,0 +170737013357,230,0 +170737013405,222,0 +170737013455,222,0 +170737013503,222,0 +170737013552,222,0 +170737013600,222,0 +170737013650,222,0 +170737013698,222,0 +170737013745,222,0 +170737013793,222,0 +170737013841,221,0 +170737013889,223,0 +170737013937,226,0 +170737013985,225,0 +170737014033,226,0 +170737014081,235,0 +170737014129,242,0 +170737014176,256,0 +170737014226,232,0 +170737014274,225,0 +170737014322,226,0 +170737014370,226,0 +170737014417,225,0 +170737014465,225,0 +170737014513,226,0 +170737014561,226,0 +170737014609,225,0 +170737014657,225,0 +170737014705,225,0 +170737014753,227,0 +170737014801,230,0 +170737014849,234,0 +170737014896,236,0 +170737014944,240,0 +170737014992,245,0 +170737015040,255,0 +170737015088,232,0 +170737015136,226,0 +170737015184,226,0 +170737015232,225,0 +170737015280,224,0 +170737015329,224,0 +170737015377,224,0 +170737015425,224,0 +170737015473,224,0 +170737015521,224,0 +170737015568,225,0 +170737015616,225,0 +170737015664,228,0 +170737015712,232,0 +170737015760,235,0 +170737015809,240,0 +170737015857,251,0 +170737015907,255,0 +170737015955,226,0 +170737016005,223,0 +170737016053,223,0 +170737016101,223,0 +170737016149,223,0 +170737016197,223,0 +170737016244,222,0 +170737016294,223,0 +170737016343,223,0 +170737016393,222,0 +170737016442,221,0 +170737016492,223,0 +170737016540,224,0 +170737016588,225,0 +170737016636,230,0 +170737016684,236,0 +170737016732,253,0 +170737016779,237,0 +170737016827,223,0 +170737016875,223,0 +170737016925,223,0 +170737016973,223,0 +170737017021,222,0 +170737017068,223,0 +170737017116,225,0 +170737017166,226,0 +170737017214,226,0 +170737017263,227,0 +170737017311,231,0 +170737017359,237,0 +170737017407,239,0 +170737017455,246,0 +170737017503,247,0 +170737017551,250,0 +170737017599,254,0 +170737017649,224,0 +170737017697,221,0 +170737017744,221,0 +170737017792,220,0 +170737017840,221,0 +170737017888,221,0 +170737017936,221,0 +170737017984,221,0 +170737018032,222,0 +170737018080,221,0 +170737018127,221,0 +170737018175,221,0 +170737018223,221,0 +170737018271,220,0 +170737018320,221,0 +170737018370,221,0 +170737018419,226,0 +170737018467,255,0 +170737018515,228,0 +170737018563,220,0 +170737018611,220,0 +170737018659,220,0 +170737018707,220,0 +170737018755,220,0 +170737018802,220,0 +170737018850,220,0 +170737018900,220,0 +170737018948,220,0 +170737018996,219,0 +170737019044,222,0 +170737019093,224,0 +170737019141,228,0 +170737019189,236,0 +170737019239,240,0 +170737019288,252,0 +170737019336,254,0 +170737019386,226,0 +170737019434,223,0 +170737019482,224,0 +170737019529,224,0 +170737019577,224,0 +170737019627,223,0 +170737019675,223,0 +170737019723,223,0 +170737019772,223,0 +170737019822,222,0 +170737019870,223,0 +170737019918,224,0 +170737019967,224,0 +170737020017,228,0 +170737020065,233,0 +170737020113,238,0 +170737020161,252,0 +170737020210,242,0 +170737020260,222,0 +170737020308,222,0 +170737020357,222,0 +170737020405,222,0 +170737020453,222,0 +170737020501,221,0 +170737020549,221,0 +170737020598,221,0 +170737020646,221,0 +170737020694,221,0 +170737020742,223,0 +170737020790,223,0 +170737020838,227,0 +170737020885,230,0 +170737020935,236,0 +170737020983,239,0 +170737021031,254,0 +170737021079,227,0 +170737021127,225,0 +170737021174,224,0 +170737021222,224,0 +170737021270,224,0 +170737021318,223,0 +170737021366,222,0 +170737021415,224,0 +170737021463,223,0 +170737021511,223,0 +170737021559,225,0 +170737021607,228,0 +170737021655,230,0 +170737021703,236,0 +170737021751,241,0 +170737021799,245,0 +170737021846,251,0 +170737021894,257,0 +170737021942,227,0 +170737021990,220,0 +170737022038,220,0 +170737022086,220,0 +170737022134,219,0 +170737022182,220,0 +170737022230,219,0 +170737022278,219,0 +170737022325,220,0 +170737022373,221,0 +170737022421,219,0 +170737022469,220,0 +170737022517,220,0 +170737022565,226,0 +170737022613,227,0 +170737022661,236,0 +170737022709,248,0 +170737022756,256,0 +170737022806,225,0 +170737022856,221,0 +170737022904,222,0 +170737022951,222,0 +170737022999,221,0 +170737023049,222,0 +170737023097,221,0 +170737023145,221,0 +170737023193,222,0 +170737023241,222,0 +170737023289,222,0 +170737023338,222,0 +170737023386,221,0 +170737023436,221,0 +170737023484,225,0 +170737023532,232,0 +170737023581,251,0 +170737023631,250,0 +170737023679,223,0 +170737023727,222,0 +170737023776,223,0 +170737023824,223,0 +170737023872,222,0 +170737023920,222,0 +170737023968,222,0 +170737024016,222,0 +170737024066,222,0 +170737024114,222,0 +170737024163,223,0 +170737024211,225,0 +170737024259,227,0 +170737024309,233,0 +170737024358,239,0 +170737024406,242,0 +170737024454,254,0 +170737024504,223,0 +170737024552,222,0 +170737024599,222,0 +170737024649,221,0 +170737024697,221,0 +170737024745,221,0 +170737024793,221,0 +170737024841,222,0 +170737024889,222,0 +170737024937,223,0 +170737024984,224,0 +170737025032,226,0 +170737025080,227,0 +170737025128,233,0 +170737025178,238,0 +170737025227,242,0 +170737025275,249,0 +170737025323,255,0 +170737025373,229,0 +170737025421,223,0 +170737025468,223,0 +170737025516,223,0 +170737025564,223,0 +170737025612,223,0 +170737025660,223,0 +170737025708,222,0 +170737025758,223,0 +170737025806,223,0 +170737025854,223,0 +170737025902,223,0 +170737025950,223,0 +170737025998,223,0 +170737026047,223,0 +170737026095,223,0 +170737026143,222,0 +170737026191,223,0 +170737026239,223,0 +170737026287,223,0 +170737026337,223,0 +170737026385,223,0 +170737026433,223,0 +170737026481,223,0 +170737026529,223,0 +170737026578,250,0 +170737026626,253,0 +170737026674,225,0 +170737026722,223,0 +170737026771,223,0 +170737026821,223,0 +170737026869,223,0 +170737026917,223,0 +170737026965,222,0 +170737027013,223,0 +170737027061,223,0 +170737027109,223,0 +170737027157,223,0 +170737027206,223,0 +170737027256,226,0 +170737027304,231,0 +170737027352,237,0 +170737027401,242,0 +170737027451,254,0 +170737027500,227,0 +170737027548,223,0 +170737027596,222,0 +170737027646,223,0 +170737027695,223,0 +170737027743,222,0 +170737027791,222,0 +170737027839,222,0 +170737027889,223,0 +170737027938,223,0 +170737027986,223,0 +170737028036,227,0 +170737028085,231,0 +170737028135,233,0 +170737028184,241,0 +170737028232,247,0 +170737028280,253,0 +170737028330,253,0 +170737028378,225,0 +170737028425,224,0 +170737028473,223,0 +170737028523,223,0 +170737028571,224,0 +170737028619,224,0 +170737028667,224,0 +170737028716,225,0 +170737028764,228,0 +170737028812,230,0 +170737028862,231,0 +170737028911,234,0 +170737028959,238,0 +170737029007,242,0 +170737029057,248,0 +170737029105,246,0 +170737029153,254,0 +170737029200,254,0 +170737029250,224,0 +170737029298,223,0 +170737029346,223,0 +170737029395,222,0 +170737029443,222,0 +170737029491,223,0 +170737029539,222,0 +170737029589,223,0 +170737029637,223,0 +170737029685,225,0 +170737029733,228,0 +170737029782,226,0 +170737029830,233,0 +170737029878,236,0 +170737029928,244,0 +170737029975,245,0 +170737030023,253,0 +170737030071,224,0 +170737030121,223,0 +170737030169,223,0 +170737030218,223,0 +170737030266,223,0 +170737030316,223,0 +170737030364,223,0 +170737030412,223,0 +170737030460,223,0 +170737030510,222,0 +170737030559,223,0 +170737030607,223,0 +170737030657,225,0 +170737030705,225,0 +170737030754,230,0 +170737030802,236,0 +170737030850,253,0 +170737030898,254,0 +170737030946,228,0 +170737030994,222,0 +170737031042,222,0 +170737031092,222,0 +170737031141,222,0 +170737031191,222,0 +170737031240,222,0 +170737031288,222,0 +170737031338,223,0 +170737031386,223,0 +170737031434,224,0 +170737031483,226,0 +170737031531,233,0 +170737031581,240,0 +170737031630,241,0 +170737031680,243,0 +170737031728,254,0 +170737031777,224,0 +170737031827,224,0 +170737031875,224,0 +170737031923,223,0 +170737031971,223,0 +170737032018,223,0 +170737032066,223,0 +170737032116,223,0 +170737032164,224,0 +170737032212,223,0 +170737032260,223,0 +170737032308,223,0 +170737032356,224,0 +170737032404,225,0 +170737032452,229,0 +170737032501,231,0 +170737032549,238,0 +170737032599,256,0 +170737032647,230,0 +170737032695,223,0 +170737032744,223,0 +170737032792,223,0 +170737032840,223,0 +170737032888,223,0 +170737032936,223,0 +170737032986,223,0 +170737033034,223,0 +170737033082,222,0 +170737033129,223,0 +170737033177,223,0 +170737033225,223,0 +170737033273,223,0 +170737033321,223,0 +170737033371,226,0 +170737033419,250,0 +170737033467,255,0 +170737033515,228,0 +170737033563,224,0 +170737033612,223,0 +170737033660,223,0 +170737033708,223,0 +170737033758,223,0 +170737033807,224,0 +170737033855,223,0 +170737033903,223,0 +170737033953,223,0 +170737034001,224,0 +170737034050,223,0 +170737034098,223,0 +170737034146,225,0 +170737034194,231,0 +170737034243,239,0 +170737034291,254,0 +170737034339,237,0 +170737034387,224,0 +170737034435,223,0 +170737034483,223,0 +170737034530,223,0 +170737034578,223,0 +170737034626,223,0 +170737034674,223,0 +170737034722,223,0 +170737034770,222,0 +170737034818,222,0 +170737034867,221,0 +170737034915,223,0 +170737034965,225,0 +170737035012,228,0 +170737035060,232,0 +170737035108,241,0 +170737035156,253,0 +170737035204,244,0 +170737035252,224,0 +170737035300,223,0 +170737035348,223,0 +170737035396,223,0 +170737035444,223,0 +170737035493,223,0 +170737035541,223,0 +170737035591,223,0 +170737035638,223,0 +170737035686,223,0 +170737035734,224,0 +170737035782,223,0 +170737035830,224,0 +170737035878,224,0 +170737035926,231,0 +170737035974,238,0 +170737036021,254,0 +170737036071,226,0 +170737036119,223,0 +170737036167,223,0 +170737036216,223,0 +170737036264,223,0 +170737036312,223,0 +170737036360,223,0 +170737036408,223,0 +170737036456,222,0 +170737036504,223,0 +170737036551,224,0 +170737036599,223,0 +170737036649,223,0 +170737036698,224,0 +170737036746,228,0 +170737036796,233,0 +170737036843,250,0 +170737036891,255,0 +170737036939,227,0 +170737036987,221,0 +170737037035,221,0 +170737037083,221,0 +170737037131,221,0 +170737037179,221,0 +170737037227,223,0 +170737037274,225,0 +170737037322,223,0 +170737037372,228,0 +170737037421,228,0 +170737037471,231,0 +170737037520,235,0 +170737037568,240,0 +170737037616,246,0 +170737037664,248,0 +170737037712,253,0 +170737037760,255,0 +170737037810,225,0 +170737037858,223,0 +170737037907,222,0 +170737037957,222,0 +170737038005,222,0 +170737038054,222,0 +170737038102,222,0 +170737038150,223,0 +170737038198,223,0 +170737038246,223,0 +170737038294,223,0 +170737038342,223,0 +170737038390,224,0 +170737038438,224,0 +170737038486,224,0 +170737038535,226,0 +170737038583,253,0 +170737038631,246,0 +170737038679,226,0 +170737038727,224,0 +170737038777,224,0 +170737038825,224,0 +170737038873,224,0 +170737038921,224,0 +170737038969,224,0 +170737039016,224,0 +170737039066,226,0 +170737039114,230,0 +170737039162,231,0 +170737039211,233,0 +170737039259,237,0 +170737039307,240,0 +170737039355,244,0 +170737039405,241,0 +170737039454,256,0 +170737039504,231,0 +170737039553,221,0 +170737039601,221,0 +170737039651,221,0 +170737039699,221,0 +170737039746,221,0 +170737039794,221,0 +170737039844,221,0 +170737039892,221,0 +170737039941,221,0 +170737039989,220,0 +170737040037,221,0 +170737040087,221,0 +170737040135,221,0 +170737040183,221,0 +170737040231,222,0 +170737040279,251,0 +170737040327,255,0 +170737040375,225,0 +170737040423,222,0 +170737040471,222,0 +170737040520,222,0 +170737040568,221,0 +170737040616,221,0 +170737040665,222,0 +170737040713,221,0 +170737040761,221,0 +170737040811,221,0 +170737040859,221,0 +170737040907,221,0 +170737040956,222,0 +170737041006,222,0 +170737041054,222,0 +170737041103,223,0 +170737041151,252,0 +170737041199,252,0 +170737041247,222,0 +170737041297,220,0 +170737041346,220,0 +170737041396,220,0 +170737041444,221,0 +170737041492,220,0 +170737041540,220,0 +170737041588,220,0 +170737041637,219,0 +170737041685,223,0 +170737041733,224,0 +170737041781,226,0 +170737041830,232,0 +170737041878,236,0 +170737041928,237,0 +170737041976,241,0 +170737042024,255,0 +170737042073,229,0 +170737042123,223,0 +170737042172,223,0 +170737042220,222,0 +170737042268,222,0 +170737042318,222,0 +170737042366,223,0 +170737042413,222,0 +170737042461,222,0 +170737042509,224,0 +170737042557,225,0 +170737042605,226,0 +170737042655,233,0 +170737042703,239,0 +170737042751,242,0 +170737042799,247,0 +170737042847,252,0 +170737042896,256,0 +170737042944,228,0 +170737042992,223,0 +170737043042,223,0 +170737043090,224,0 +170737043139,224,0 +170737043187,223,0 +170737043236,224,0 +170737043286,223,0 +170737043334,223,0 +170737043382,224,0 +170737043430,223,0 +170737043479,223,0 +170737043529,224,0 +170737043577,226,0 +170737043625,232,0 +170737043673,237,0 +170737043721,252,0 +170737043769,254,0 +170737043818,222,0 +170737043866,221,0 +170737043914,222,0 +170737043962,221,0 +170737044010,222,0 +170737044058,221,0 +170737044108,221,0 +170737044157,221,0 +170737044207,222,0 +170737044256,222,0 +170737044304,222,0 +170737044352,224,0 +170737044400,225,0 +170737044448,229,0 +170737044496,235,0 +170737044544,240,0 +170737044593,255,0 +170737044641,230,0 +170737044689,223,0 +170737044737,223,0 +170737044785,223,0 +170737044835,222,0 +170737044883,223,0 +170737044932,222,0 +170737044980,222,0 +170737045030,223,0 +170737045078,223,0 +170737045127,225,0 +170737045177,225,0 +170737045225,230,0 +170737045274,237,0 +170737045322,241,0 +170737045370,246,0 +170737045418,252,0 +170737045466,255,0 +170737045516,228,0 +170737045564,223,0 +170737045613,223,0 +170737045661,223,0 +170737045709,223,0 +170737045757,223,0 +170737045805,222,0 +170737045853,222,0 +170737045901,222,0 +170737045949,223,0 +170737045997,222,0 +170737046046,224,0 +170737046094,226,0 +170737046142,231,0 +170737046190,236,0 +170737046238,242,0 +170737046286,252,0 +170737046334,253,0 +170737046382,223,0 +170737046432,223,0 +170737046481,222,0 +170737046529,222,0 +170737046577,222,0 +170737046625,222,0 +170737046673,222,0 +170737046721,223,0 +170737046769,222,0 +170737046817,223,0 +170737046865,222,0 +170737046913,222,0 +170737046961,222,0 +170737047009,222,0 +170737047057,222,0 +170737047105,229,0 +170737047153,254,0 +170737047202,227,0 +170737047250,222,0 +170737047298,223,0 +170737047348,222,0 +170737047396,222,0 +170737047445,222,0 +170737047493,223,0 +170737047543,223,0 +170737047591,223,0 +170737047639,222,0 +170737047687,222,0 +170737047736,222,0 +170737047784,222,0 +170737047832,223,0 +170737047880,224,0 +170737047928,223,0 +170737047978,233,0 +170737048027,254,0 +170737048075,228,0 +170737048123,221,0 +170737048173,222,0 +170737048221,222,0 +170737048268,222,0 +170737048316,222,0 +170737048364,222,0 +170737048412,222,0 +170737048462,222,0 +170737048510,222,0 +170737048558,224,0 +170737048606,227,0 +170737048653,230,0 +170737048701,233,0 +170737048749,235,0 +170737048797,241,0 +170737048845,252,0 +170737048893,255,0 +170737048942,230,0 +170737048992,225,0 +170737049040,225,0 +170737049089,225,0 +170737049137,224,0 +170737049187,225,0 +170737049235,225,0 +170737049284,224,0 +170737049332,224,0 +170737049382,224,0 +170737049431,225,0 +170737049481,225,0 +170737049530,227,0 +170737049578,231,0 +170737049626,234,0 +170737049676,241,0 +170737049724,251,0 +170737049773,223,0 +170737049821,223,0 +170737049869,222,0 +170737049917,222,0 +170737049967,222,0 +170737050016,221,0 +170737050064,221,0 +170737050114,222,0 +170737050162,221,0 +170737050210,222,0 +170737050258,222,0 +170737050305,222,0 +170737050353,221,0 +170737050401,222,0 +170737050449,222,0 +170737050497,229,0 +170737050545,235,0 +170737050593,256,0 +170737050643,237,0 +170737050691,223,0 +170737050739,223,0 +170737050787,223,0 +170737050836,223,0 +170737050884,223,0 +170737050932,223,0 +170737050980,225,0 +170737051028,227,0 +170737051077,227,0 +170737051127,230,0 +170737051175,234,0 +170737051223,237,0 +170737051270,239,0 +170737051318,245,0 +170737051366,248,0 +170737051414,245,0 +170737051462,256,0 +170737051512,229,0 +170737051559,223,0 +170737051607,223,0 +170737051655,224,0 +170737051703,224,0 +170737051753,223,0 +170737051802,223,0 +170737051851,222,0 +170737051899,222,0 +170737051947,222,0 +170737051995,222,0 +170737052043,222,0 +170737052091,223,0 +170737052139,224,0 +170737052187,226,0 +170737052235,219,0 +170737052283,254,0 +170737052332,254,0 +170737052380,221,0 +170737052428,220,0 +170737052478,220,0 +170737052526,220,0 +170737052574,220,0 +170737052622,220,0 +170737052671,220,0 +170737052721,220,0 +170737052769,220,0 +170737052817,219,0 +170737052865,220,0 +170737052913,220,0 +170737052961,220,0 +170737053009,220,0 +170737053058,222,0 +170737053106,230,0 +170737053154,253,0 +170737053204,223,0 +170737053253,220,0 +170737053303,220,0 +170737053350,220,0 +170737053398,220,0 +170737053448,220,0 +170737053497,221,0 +170737053545,220,0 +170737053593,220,0 +170737053641,220,0 +170737053691,220,0 +170737053739,219,0 +170737053788,221,0 +170737053838,222,0 +170737053886,223,0 +170737053935,228,0 +170737053983,239,0 +170737054031,256,0 +170737054081,228,0 +170737054129,225,0 +170737054177,224,0 +170737054226,225,0 +170737054274,223,0 +170737054322,223,0 +170737054370,224,0 +170737054418,224,0 +170737054466,224,0 +170737054513,223,0 +170737054561,223,0 +170737054609,224,0 +170737054657,225,0 +170737054707,225,0 +170737054754,228,0 +170737054802,234,0 +170737054850,252,0 +170737054898,255,0 +170737054946,225,0 +170737054994,223,0 +170737055042,223,0 +170737055090,223,0 +170737055138,222,0 +170737055186,223,0 +170737055234,223,0 +170737055281,224,0 +170737055329,227,0 +170737055377,225,0 +170737055425,230,0 +170737055473,233,0 +170737055521,237,0 +170737055569,244,0 +170737055617,248,0 +170737055666,249,0 +170737055714,254,0 +170737055762,253,0 +170737055810,226,0 +170737055858,223,0 +170737055906,223,0 +170737055954,222,0 +170737056001,222,0 +170737056049,223,0 +170737056099,221,0 +170737056147,221,0 +170737056195,222,0 +170737056243,222,0 +170737056290,222,0 +170737056338,225,0 +170737056386,226,0 +170737056434,232,0 +170737056482,237,0 +170737056530,240,0 +170737056578,253,0 +170737056628,230,0 +170737056676,222,0 +170737056723,222,0 +170737056771,222,0 +170737056819,222,0 +170737056867,222,0 +170737056915,221,0 +170737056963,222,0 +170737057011,222,0 +170737057059,224,0 +170737057107,225,0 +170737057154,228,0 +170737057202,230,0 +170737057250,233,0 +170737057298,240,0 +170737057346,243,0 +170737057394,245,0 +170737057442,255,0 +170737057490,225,0 +170737057538,223,0 +170737057585,223,0 +170737057633,224,0 +170737057681,223,0 +170737057729,223,0 +170737057778,223,0 +170737057826,223,0 +170737057874,223,0 +170737057924,223,0 +170737057972,223,0 +170737058020,222,0 +170737058068,223,0 +170737058116,224,0 +170737058163,223,0 +170737058211,223,0 +170737058259,240,0 +170737058307,255,0 +170737058355,228,0 +170737058403,222,0 +170737058451,222,0 +170737058499,222,0 +170737058546,222,0 +170737058594,221,0 +170737058642,222,0 +170737058690,222,0 +170737058738,222,0 +170737058786,222,0 +170737058834,221,0 +170737058882,222,0 +170737058930,222,0 +170737058978,221,0 +170737059027,223,0 +170737059075,227,0 +170737059123,251,0 +170737059171,254,0 +170737059219,226,0 +170737059267,222,0 +170737059315,222,0 +170737059363,222,0 +170737059413,222,0 +170737059461,222,0 +170737059509,222,0 +170737059558,222,0 +170737059608,222,0 +170737059656,222,0 +170737059704,222,0 +170737059752,222,0 +170737059800,222,0 +170737059847,222,0 +170737059895,223,0 +170737059943,227,0 +170737059993,251,0 +170737060041,254,0 +170737060088,225,0 +170737060136,222,0 +170737060184,223,0 +170737060232,223,0 +170737060280,223,0 +170737060328,222,0 +170737060378,222,0 +170737060426,223,0 +170737060474,224,0 +170737060522,227,0 +170737060570,228,0 +170737060617,229,0 +170737060665,234,0 +170737060713,236,0 +170737060761,243,0 +170737060809,247,0 +170737060857,253,0 +170737060905,251,0 +170737060953,225,0 +170737061001,223,0 +170737061049,223,0 +170737061098,223,0 +170737061146,223,0 +170737061194,222,0 +170737061242,223,0 +170737061290,223,0 +170737061338,223,0 +170737061385,223,0 +170737061433,223,0 +170737061481,223,0 +170737061529,224,0 +170737061577,224,0 +170737061625,224,0 +170737061673,225,0 +170737061721,252,0 +170737061769,228,0 +170737061817,226,0 +170737061864,225,0 +170737061912,225,0 +170737061960,225,0 +170737062008,225,0 +170737062056,226,0 +170737062104,225,0 +170737062152,225,0 +170737062200,224,0 +170737062248,225,0 +170737062297,225,0 +170737062345,225,0 +170737062393,225,0 +170737062441,225,0 +170737062489,225,0 +170737062537,228,0 +170737062584,254,0 +170737062632,232,0 +170737062680,226,0 +170737062728,225,0 +170737062776,226,0 +170737062824,225,0 +170737062872,226,0 +170737062920,225,0 +170737062968,225,0 +170737063015,225,0 +170737063063,225,0 +170737063113,225,0 +170737063161,225,0 +170737063210,225,0 +170737063258,225,0 +170737063306,225,0 +170737063354,225,0 +170737063404,233,0 +170737063453,254,0 +170737063501,232,0 +170737063549,225,0 +170737063597,225,0 +170737063645,224,0 +170737063693,224,0 +170737063741,224,0 +170737063789,225,0 +170737063838,224,0 +170737063886,224,0 +170737063936,224,0 +170737063985,225,0 +170737064033,225,0 +170737064081,225,0 +170737064131,225,0 +170737064179,225,0 +170737064228,230,0 +170737064276,250,0 +170737064324,254,0 +170737064372,224,0 +170737064420,221,0 +170737064468,221,0 +170737064516,221,0 +170737064564,221,0 +170737064611,221,0 +170737064659,221,0 +170737064709,221,0 +170737064758,221,0 +170737064806,221,0 +170737064854,221,0 +170737064902,221,0 +170737064950,221,0 +170737064998,221,0 +170737065045,222,0 +170737065093,226,0 +170737065141,253,0 +170737065189,252,0 +170737065237,223,0 +170737065285,223,0 +170737065333,223,0 +170737065381,224,0 +170737065429,223,0 +170737065476,224,0 +170737065524,226,0 +170737065572,226,0 +170737065620,230,0 +170737065668,230,0 +170737065716,233,0 +170737065764,239,0 +170737065812,244,0 +170737065860,245,0 +170737065908,249,0 +170737065957,252,0 +170737066005,253,0 +170737066053,248,0 +170737066101,224,0 +170737066149,223,0 +170737066196,223,0 +170737066244,223,0 +170737066292,223,0 +170737066340,223,0 +170737066388,223,0 +170737066436,223,0 +170737066485,223,0 +170737066533,223,0 +170737066583,223,0 +170737066631,224,0 +170737066679,223,0 +170737066727,222,0 +170737066774,223,0 +170737066822,228,0 +170737066870,254,0 +170737066920,223,0 +170737066969,225,0 +170737067017,225,0 +170737067065,225,0 +170737067113,225,0 +170737067161,224,0 +170737067208,224,0 +170737067256,224,0 +170737067306,224,0 +170737067354,224,0 +170737067402,224,0 +170737067449,224,0 +170737067497,224,0 +170737067545,224,0 +170737067593,224,0 +170737067641,225,0 +170737067689,250,0 +170737067737,253,0 +170737067785,231,0 +170737067833,224,0 +170737067881,224,0 +170737067928,224,0 +170737067976,224,0 +170737068024,224,0 +170737068072,224,0 +170737068120,224,0 +170737068168,224,0 +170737068216,224,0 +170737068264,224,0 +170737068312,224,0 +170737068360,224,0 +170737068409,224,0 +170737068457,225,0 +170737068505,225,0 +170737068553,249,0 +170737068600,255,0 +170737068648,230,0 +170737068696,225,0 +170737068744,225,0 +170737068794,225,0 +170737068842,224,0 +170737068889,224,0 +170737068937,225,0 +170737068985,225,0 +170737069033,226,0 +170737069081,225,0 +170737069129,225,0 +170737069177,224,0 +170737069225,225,0 +170737069272,224,0 +170737069320,228,0 +170737069368,234,0 +170737069416,251,0 +170737069464,254,0 +170737069513,228,0 +170737069561,224,0 +170737069609,224,0 +170737069657,224,0 +170737069705,223,0 +170737069753,224,0 +170737069801,223,0 +170737069849,223,0 +170737069897,223,0 +170737069945,224,0 +170737069992,224,0 +170737070040,225,0 +170737070088,229,0 +170737070138,234,0 +170737070185,240,0 +170737070233,239,0 +170737070281,254,0 +170737070329,254,0 +170737070377,224,0 +170737070425,223,0 +170737070473,223,0 +170737070521,223,0 +170737070569,223,0 +170737070618,223,0 +170737070666,223,0 +170737070714,223,0 +170737070762,223,0 +170737070810,223,0 +170737070858,234,0 +170737070906,228,0 +170737070954,232,0 +170737071002,238,0 +170737071052,241,0 +170737071101,236,0 +170737071149,255,0 +170737071197,223,0 +170737071247,221,0 +170737071296,221,0 +170737071344,221,0 +170737071392,221,0 +170737071440,220,0 +170737071488,221,0 +170737071536,220,0 +170737071585,220,0 +170737071633,221,0 +170737071681,222,0 +170737071731,224,0 +170737071779,226,0 +170737071827,235,0 +170737071875,238,0 +170737071923,241,0 +170737071972,250,0 +170737072020,253,0 +170737072068,224,0 +170737072116,224,0 +170737072164,224,0 +170737072213,224,0 +170737072261,224,0 +170737072309,223,0 +170737072358,225,0 +170737072406,227,0 +170737072454,227,0 +170737072502,228,0 +170737072552,227,0 +170737072600,233,0 +170737072648,240,0 +170737072696,246,0 +170737072744,247,0 +170737072792,250,0 +170737072841,252,0 +170737072891,254,0 +170737072938,229,0 +170737072986,224,0 +170737073034,225,0 +170737073082,224,0 +170737073130,225,0 +170737073178,224,0 +170737073226,223,0 +170737073275,226,0 +170737073323,227,0 +170737073371,229,0 +170737073419,228,0 +170737073467,233,0 +170737073514,237,0 +170737073562,243,0 +170737073610,241,0 +170737073660,240,0 +170737073708,253,0 +170737073755,256,0 +170737073803,224,0 +170737073851,223,0 +170737073899,223,0 +170737073947,223,0 +170737073997,222,0 +170737074045,223,0 +170737074093,223,0 +170737074141,223,0 +170737074189,222,0 +170737074237,223,0 +170737074285,222,0 +170737074333,222,0 +170737074380,223,0 +170737074428,225,0 +170737074476,230,0 +170737074524,231,0 +170737074574,252,0 +170737074623,244,0 +170737074673,224,0 +170737074722,224,0 +170737074772,224,0 +170737074820,224,0 +170737074869,224,0 +170737074917,224,0 +170737074965,224,0 +170737075015,224,0 +170737075063,224,0 +170737075112,224,0 +170737075160,224,0 +170737075208,224,0 +170737075256,224,0 +170737075304,224,0 +170737075353,224,0 +170737075401,231,0 +170737075449,254,0 +170737075497,228,0 +170737075545,223,0 +170737075595,223,0 +170737075643,222,0 +170737075691,223,0 +170737075740,223,0 +170737075790,223,0 +170737075838,223,0 +170737075886,223,0 +170737075935,223,0 +170737075985,224,0 +170737076033,222,0 +170737076081,225,0 +170737076130,228,0 +170737076178,232,0 +170737076227,239,0 +170737076275,251,0 +170737076323,256,0 +170737076373,224,0 +170737076421,223,0 +170737076469,223,0 +170737076517,222,0 +170737076565,223,0 +170737076614,223,0 +170737076662,223,0 +170737076712,223,0 +170737076760,223,0 +170737076808,223,0 +170737076856,223,0 +170737076904,223,0 +170737076952,223,0 +170737077000,222,0 +170737077049,224,0 +170737077099,230,0 +170737077147,253,0 +170737077195,225,0 +170737077244,223,0 +170737077292,224,0 +170737077340,223,0 +170737077389,223,0 +170737077439,223,0 +170737077487,223,0 +170737077537,223,0 +170737077585,223,0 +170737077632,223,0 +170737077682,223,0 +170737077731,223,0 +170737077779,223,0 +170737077827,223,0 +170737077875,222,0 +170737077923,223,0 +170737077971,225,0 +170737078019,254,0 +170737078067,224,0 +170737078115,224,0 +170737078165,223,0 +170737078214,223,0 +170737078262,223,0 +170737078310,224,0 +170737078358,225,0 +170737078407,226,0 +170737078457,227,0 +170737078506,228,0 +170737078556,231,0 +170737078604,237,0 +170737078652,240,0 +170737078700,244,0 +170737078748,248,0 +170737078796,249,0 +170737078845,253,0 +170737078893,254,0 +170737078941,228,0 +170737078991,223,0 +170737079039,223,0 +170737079087,222,0 +170737079135,223,0 +170737079184,223,0 +170737079232,223,0 +170737079282,222,0 +170737079331,223,0 +170737079381,222,0 +170737079430,222,0 +170737079480,223,0 +170737079529,223,0 +170737079577,227,0 +170737079627,232,0 +170737079675,240,0 +170737079723,254,0 +170737079772,222,0 +170737079820,222,0 +170737079868,222,0 +170737079916,222,0 +170737079964,222,0 +170737080012,222,0 +170737080060,221,0 +170737080110,222,0 +170737080158,223,0 +170737080205,222,0 +170737080253,222,0 +170737080303,223,0 +170737080352,222,0 +170737080400,222,0 +170737080448,223,0 +170737080498,223,0 +170737080547,232,0 +170737080597,254,0 +170737080645,229,0 +170737080693,222,0 +170737080741,222,0 +170737080790,222,0 +170737080840,223,0 +170737080889,222,0 +170737080937,222,0 +170737080985,222,0 +170737081033,222,0 +170737081081,222,0 +170737081129,223,0 +170737081177,224,0 +170737081225,226,0 +170737081273,230,0 +170737081321,235,0 +170737081369,238,0 +170737081417,252,0 +170737081466,255,0 +170737081514,227,0 +170737081562,223,0 +170737081610,223,0 +170737081658,223,0 +170737081708,223,0 +170737081756,222,0 +170737081805,222,0 +170737081853,222,0 +170737081901,223,0 +170737081949,223,0 +170737081997,223,0 +170737082045,224,0 +170737082094,226,0 +170737082142,231,0 +170737082192,237,0 +170737082242,239,0 +170737082291,253,0 +170737082341,225,0 +170737082389,221,0 +170737082437,221,0 +170737082485,220,0 +170737082534,221,0 +170737082584,220,0 +170737082633,221,0 +170737082682,221,0 +170737082732,220,0 +170737082782,220,0 +170737082830,220,0 +170737082877,221,0 +170737082925,221,0 +170737082973,221,0 +170737083021,224,0 +170737083069,229,0 +170737083119,237,0 +170737083167,255,0 +170737083216,229,0 +170737083264,222,0 +170737083314,222,0 +170737083362,222,0 +170737083410,222,0 +170737083458,221,0 +170737083506,221,0 +170737083555,221,0 +170737083605,221,0 +170737083653,222,0 +170737083701,222,0 +170737083749,222,0 +170737083798,222,0 +170737083848,222,0 +170737083895,222,0 +170737083943,223,0 +170737083993,250,0 +170737084042,255,0 +170737084092,226,0 +170737084140,223,0 +170737084188,222,0 +170737084237,222,0 +170737084285,222,0 +170737084333,222,0 +170737084381,222,0 +170737084429,223,0 +170737084477,223,0 +170737084525,222,0 +170737084575,223,0 +170737084623,226,0 +170737084672,228,0 +170737084722,231,0 +170737084770,238,0 +170737084818,246,0 +170737084867,253,0 +170737084915,254,0 +170737084963,226,0 +170737085011,225,0 +170737085059,225,0 +170737085107,224,0 +170737085155,225,0 +170737085204,224,0 +170737085252,224,0 +170737085300,225,0 +170737085348,224,0 +170737085398,224,0 +170737085446,224,0 +170737085494,224,0 +170737085542,224,0 +170737085590,226,0 +170737085638,230,0 +170737085687,236,0 +170737085737,253,0 +170737085785,228,0 +170737085833,221,0 +170737085882,221,0 +170737085930,221,0 +170737085978,221,0 +170737086026,221,0 +170737086074,221,0 +170737086124,221,0 +170737086171,221,0 +170737086219,221,0 +170737086269,221,0 +170737086317,221,0 +170737086365,225,0 +170737086413,223,0 +170737086462,229,0 +170737086510,234,0 +170737086558,246,0 +170737086606,254,0 +170737086654,231,0 +170737086702,225,0 +170737086750,225,0 +170737086798,225,0 +170737086846,225,0 +170737086896,225,0 +170737086945,224,0 +170737086993,225,0 +170737087041,225,0 +170737087090,224,0 +170737087138,225,0 +170737087186,225,0 +170737087236,225,0 +170737087284,225,0 +170737087333,226,0 +170737087381,226,0 +170737087429,250,0 +170737087477,254,0 +170737087525,229,0 +170737087573,225,0 +170737087621,226,0 +170737087669,225,0 +170737087718,226,0 +170737087766,225,0 +170737087814,224,0 +170737087862,224,0 +170737087910,224,0 +170737087958,225,0 +170737088008,224,0 +170737088056,225,0 +170737088105,225,0 +170737088153,225,0 +170737088201,225,0 +170737088249,227,0 +170737088299,252,0 +170737088348,230,0 +170737088396,225,0 +170737088446,226,0 +170737088493,224,0 +170737088543,226,0 +170737088591,225,0 +170737088639,225,0 +170737088688,225,0 +170737088738,225,0 +170737088786,224,0 +170737088834,226,0 +170737088883,230,0 +170737088933,230,0 +170737088981,233,0 +170737089029,237,0 +170737089077,244,0 +170737089125,250,0 +170737089174,254,0 +170737089222,228,0 +170737089270,222,0 +170737089318,222,0 +170737089366,222,0 +170737089416,222,0 +170737089464,221,0 +170737089512,222,0 +170737089561,221,0 +170737089609,221,0 +170737089657,221,0 +170737089705,221,0 +170737089755,222,0 +170737089803,222,0 +170737089852,222,0 +170737089902,222,0 +170737089950,225,0 +170737089999,249,0 +170737090047,253,0 +170737090095,231,0 +170737090143,228,0 +170737090193,228,0 +170737090241,228,0 +170737090289,227,0 +170737090337,226,0 +170737090386,226,0 +170737090436,226,0 +170737090485,228,0 +170737090533,232,0 +170737090583,231,0 +170737090630,235,0 +170737090678,240,0 +170737090728,243,0 +170737090776,246,0 +170737090824,247,0 +170737090872,251,0 +170737090920,240,0 +170737090969,223,0 +170737091019,223,0 +170737091067,223,0 +170737091116,223,0 +170737091166,223,0 +170737091216,223,0 +170737091265,225,0 +170737091315,226,0 +170737091362,228,0 +170737091410,229,0 +170737091458,234,0 +170737091506,238,0 +170737091554,240,0 +170737091602,243,0 +170737091652,245,0 +170737091701,250,0 +170737091749,252,0 +170737091797,226,0 +170737091845,222,0 +170737091895,222,0 +170737091944,221,0 +170737091992,221,0 +170737092040,221,0 +170737092088,221,0 +170737092136,221,0 +170737092184,221,0 +170737092234,221,0 +170737092283,222,0 +170737092333,221,0 +170737092381,221,0 +170737092428,221,0 +170737092476,221,0 +170737092526,221,0 +170737092574,247,0 +170737092623,250,0 +170737092671,223,0 +170737092719,222,0 +170737092767,222,0 +170737092815,221,0 +170737092863,221,0 +170737092913,221,0 +170737092960,221,0 +170737093010,221,0 +170737093058,221,0 +170737093106,221,0 +170737093154,221,0 +170737093202,221,0 +170737093250,221,0 +170737093299,222,0 +170737093349,221,0 +170737093398,222,0 +170737093446,250,0 +170737093494,224,0 +170737093542,222,0 +170737093590,221,0 +170737093638,221,0 +170737093688,221,0 +170737093737,221,0 +170737093787,221,0 +170737093836,221,0 +170737093884,221,0 +170737093932,221,0 +170737093980,221,0 +170737094030,221,0 +170737094078,221,0 +170737094126,221,0 +170737094175,221,0 +170737094223,222,0 +170737094271,246,0 +170737094319,251,0 +170737094367,226,0 +170737094415,222,0 +170737094464,221,0 +170737094512,221,0 +170737094560,221,0 +170737094608,222,0 +170737094656,221,0 +170737094704,221,0 +170737094752,222,0 +170737094801,221,0 +170737094850,221,0 +170737094898,222,0 +170737094948,221,0 +170737094997,222,0 +170737095045,223,0 +170737095093,227,0 +170737095141,248,0 +170737095189,249,0 +170737095239,225,0 +170737095288,223,0 +170737095336,223,0 +170737095386,223,0 +170737095434,223,0 +170737095483,223,0 +170737095533,225,0 +170737095581,224,0 +170737095628,224,0 +170737095678,227,0 +170737095726,228,0 +170737095774,232,0 +170737095822,237,0 +170737095870,239,0 +170737095918,240,0 +170737095965,236,0 +170737096013,247,0 +170737096061,239,0 +170737096109,222,0 +170737096159,221,0 +170737096207,221,0 +170737096256,221,0 +170737096304,221,0 +170737096352,221,0 +170737096400,221,0 +170737096448,222,0 +170737096496,222,0 +170737096544,221,0 +170737096592,222,0 +170737096640,222,0 +170737096688,223,0 +170737096736,226,0 +170737096785,231,0 +170737096833,233,0 +170737096881,249,0 +170737096929,226,0 +170737096979,222,0 +170737097028,221,0 +170737097076,221,0 +170737097126,221,0 +170737097174,221,0 +170737097222,221,0 +170737097270,221,0 +170737097318,221,0 +170737097365,221,0 +170737097413,221,0 +170737097461,221,0 +170737097509,222,0 +170737097559,222,0 +170737097607,225,0 +170737097656,229,0 +170737097704,244,0 +170737097752,249,0 +170737097802,226,0 +170737097850,223,0 +170737097898,222,0 +170737097946,222,0 +170737097994,223,0 +170737098042,222,0 +170737098091,222,0 +170737098139,222,0 +170737098187,222,0 +170737098237,224,0 +170737098285,225,0 +170737098333,225,0 +170737098382,229,0 +170737098430,233,0 +170737098478,236,0 +170737098528,235,0 +170737098576,245,0 +170737098624,246,0 +170737098672,222,0 +170737098719,221,0 +170737098769,221,0 +170737098818,221,0 +170737098866,222,0 +170737098914,222,0 +170737098962,223,0 +170737099010,224,0 +170737099058,224,0 +170737099106,225,0 +170737099154,226,0 +170737099203,230,0 +170737099251,232,0 +170737099299,234,0 +170737099347,235,0 +170737099395,237,0 +170737099443,247,0 +170737099493,225,0 +170737099541,222,0 +170737099589,222,0 +170737099636,222,0 +170737099684,222,0 +170737099732,222,0 +170737099780,222,0 +170737099828,222,0 +170737099876,222,0 +170737099924,222,0 +170737099974,222,0 +170737100022,222,0 +170737100070,224,0 +170737100119,224,0 +170737100167,226,0 +170737100215,228,0 +170737100265,229,0 +170737100314,249,0 +170737100363,227,0 +170737100411,222,0 +170737100459,222,0 +170737100509,222,0 +170737100557,221,0 +170737100605,222,0 +170737100654,222,0 +170737100702,221,0 +170737100752,222,0 +170737100800,222,0 +170737100849,222,0 +170737100897,221,0 +170737100945,221,0 +170737100993,222,0 +170737101041,225,0 +170737101091,229,0 +170737101140,246,0 +170737101188,247,0 +170737101238,222,0 +170737101287,221,0 +170737101335,221,0 +170737101385,221,0 +170737101434,221,0 +170737101482,221,0 +170737101530,220,0 +170737101578,221,0 +170737101627,221,0 +170737101677,220,0 +170737101725,221,0 +170737101773,222,0 +170737101822,224,0 +170737101870,227,0 +170737101920,230,0 +170737101968,232,0 +170737102017,245,0 +170737102067,226,0 +170737102115,222,0 +170737102163,221,0 +170737102212,221,0 +170737102260,222,0 +170737102308,222,0 +170737102356,222,0 +170737102404,221,0 +170737102453,221,0 +170737102503,222,0 +170737102551,222,0 +170737102599,222,0 +170737102647,221,0 +170737102695,221,0 +170737102744,223,0 +170737102794,227,0 +170737102842,232,0 +170737102890,244,0 +170737102938,224,0 +170737102986,220,0 +170737103034,220,0 +170737103082,220,0 +170737103131,220,0 +170737103179,220,0 +170737103227,220,0 +170737103275,221,0 +170737103323,221,0 +170737103371,221,0 +170737103419,222,0 +170737103469,223,0 +170737103517,225,0 +170737103564,228,0 +170737103612,229,0 +170737103662,230,0 +170737103710,240,0 +170737103758,242,0 +170737103806,223,0 +170737103854,221,0 +170737103902,220,0 +170737103951,220,0 +170737104001,220,0 +170737104050,220,0 +170737104100,221,0 +170737104148,220,0 +170737104196,221,0 +170737104245,222,0 +170737104293,222,0 +170737104342,223,0 +170737104390,223,0 +170737104438,225,0 +170737104485,227,0 +170737104535,228,0 +170737104584,239,0 +170737104632,225,0 +170737104682,220,0 +170737104730,220,0 +170737104777,220,0 +170737104825,220,0 +170737104873,220,0 +170737104921,220,0 +170737104969,220,0 +170737105017,220,0 +170737105065,220,0 +170737105113,220,0 +170737105160,221,0 +170737105210,221,0 +170737105258,223,0 +170737105306,225,0 +170737105354,226,0 +170737105402,228,0 +170737105450,239,0 +170737105499,223,0 +170737105549,219,0 +170737105597,219,0 +170737105645,219,0 +170737105693,219,0 +170737105741,219,0 +170737105790,219,0 +170737105838,219,0 +170737105886,219,0 +170737105934,219,0 +170737105982,219,0 +170737106031,219,0 +170737106081,219,0 +170737106130,219,0 +170737106178,219,0 +170737106226,219,0 +170737106274,236,0 +170737106324,240,0 +170737106372,222,0 +170737106419,219,0 +170737106467,219,0 +170737106515,219,0 +170737106563,219,0 +170737106613,219,0 +170737106662,219,0 +170737106710,219,0 +170737106758,219,0 +170737106808,219,0 +170737106856,219,0 +170737106905,219,0 +170737106953,220,0 +170737107003,222,0 +170737107052,225,0 +170737107100,227,0 +170737107148,237,0 +170737107196,241,0 +170737107244,220,0 +170737107292,220,0 +170737107342,220,0 +170737107390,220,0 +170737107438,221,0 +170737107486,221,0 +170737107534,222,0 +170737107582,223,0 +170737107630,223,0 +170737107677,223,0 +170737107725,226,0 +170737107773,227,0 +170737107821,228,0 +170737107871,231,0 +170737107919,231,0 +170737107968,231,0 +170737108016,238,0 +170737108064,237,0 +170737108112,220,0 +170737108162,220,0 +170737108210,220,0 +170737108259,220,0 +170737108307,219,0 +170737108357,219,0 +170737108405,220,0 +170737108453,219,0 +170737108501,220,0 +170737108549,220,0 +170737108596,222,0 +170737108644,223,0 +170737108692,224,0 +170737108740,226,0 +170737108790,227,0 +170737108838,228,0 +170737108886,241,0 +170737108935,224,0 +170737108983,220,0 +170737109031,220,0 +170737109080,219,0 +170737109128,219,0 +170737109176,220,0 +170737109226,219,0 +170737109274,220,0 +170737109322,220,0 +170737109371,220,0 +170737109419,221,0 +170737109469,222,0 +170737109517,222,0 +170737109566,225,0 +170737109614,226,0 +170737109662,229,0 +170737109710,237,0 +170737109758,240,0 +170737109807,223,0 +170737109855,220,0 +170737109903,220,0 +170737109951,220,0 +170737109999,220,0 +170737110047,220,0 +170737110096,220,0 +170737110144,220,0 +170737110192,220,0 +170737110240,220,0 +170737110288,220,0 +170737110336,220,0 +170737110384,220,0 +170737110433,222,0 +170737110481,225,0 +170737110529,232,0 +170737110577,237,0 +170737110625,239,0 +170737110673,220,0 +170737110721,219,0 +170737110769,219,0 +170737110818,219,0 +170737110868,219,0 +170737110916,220,0 +170737110964,219,0 +170737111012,221,0 +170737111060,221,0 +170737111108,222,0 +170737111156,223,0 +170737111205,225,0 +170737111253,226,0 +170737111301,229,0 +170737111349,231,0 +170737111398,232,0 +170737111446,242,0 +170737111494,223,0 +170737111544,220,0 +170737111592,219,0 +170737111641,220,0 +170737111689,220,0 +170737111737,220,0 +170737111787,220,0 +170737111835,221,0 +170737111883,221,0 +170737111931,222,0 +170737111980,222,0 +170737112028,223,0 +170737112076,225,0 +170737112125,226,0 +170737112173,229,0 +170737112221,229,0 +170737112269,231,0 +170737112319,241,0 +170737112368,224,0 +170737112416,219,0 +170737112466,219,0 +170737112514,219,0 +170737112562,219,0 +170737112611,219,0 +170737112659,219,0 +170737112707,219,0 +170737112757,219,0 +170737112806,219,0 +170737112854,221,0 +170737112902,221,0 +170737112950,222,0 +170737112998,225,0 +170737113048,228,0 +170737113096,229,0 +170737113144,241,0 +170737113193,243,0 +170737113241,221,0 +170737113289,219,0 +170737113337,219,0 +170737113385,219,0 +170737113433,219,0 +170737113481,219,0 +170737113529,219,0 +170737113576,219,0 +170737113624,219,0 +170737113672,220,0 +170737113720,221,0 +170737113768,222,0 +170737113817,224,0 +170737113865,227,0 +170737113913,230,0 +170737113961,230,0 +170737114009,242,0 +170737114057,245,0 +170737114107,220,0 +170737114155,220,0 +170737114203,219,0 +170737114251,219,0 +170737114298,219,0 +170737114346,219,0 +170737114394,219,0 +170737114442,220,0 +170737114490,221,0 +170737114538,221,0 +170737114586,223,0 +170737114634,223,0 +170737114682,225,0 +170737114730,227,0 +170737114777,230,0 +170737114825,235,0 +170737114873,243,0 +170737114921,243,0 +170737114969,220,0 +170737115017,219,0 +170737115065,219,0 +170737115113,219,0 +170737115160,219,0 +170737115208,220,0 +170737115256,221,0 +170737115304,220,0 +170737115352,221,0 +170737115400,222,0 +170737115450,224,0 +170737115499,225,0 +170737115547,230,0 +170737115597,231,0 +170737115645,232,0 +170737115692,234,0 +170737115740,245,0 +170737115788,222,0 +170737115836,218,0 +170737115884,218,0 +170737115933,218,0 +170737115981,218,0 +170737116029,218,0 +170737116079,218,0 +170737116127,218,0 +170737116175,218,0 +170737116222,218,0 +170737116272,218,0 +170737116320,218,0 +170737116368,221,0 +170737116416,219,0 +170737116464,222,0 +170737116512,224,0 +170737116560,233,0 +170737116609,245,0 +170737116657,223,0 +170737116705,220,0 +170737116753,219,0 +170737116801,219,0 +170737116849,219,0 +170737116897,219,0 +170737116945,219,0 +170737116993,219,0 +170737117041,219,0 +170737117089,219,0 +170737117138,219,0 +170737117188,220,0 +170737117237,221,0 +170737117285,221,0 +170737117333,224,0 +170737117383,228,0 +170737117431,240,0 +170737117478,245,0 +170737117526,221,0 +170737117574,219,0 +170737117622,220,0 +170737117670,219,0 +170737117718,220,0 +170737117767,220,0 +170737117815,219,0 +170737117863,219,0 +170737117911,219,0 +170737117959,219,0 +170737118009,220,0 +170737118057,220,0 +170737118105,219,0 +170737118154,220,0 +170737118202,224,0 +170737118250,227,0 +170737118298,242,0 +170737118346,244,0 +170737118394,220,0 +170737118442,219,0 +170737118490,219,0 +170737118538,219,0 +170737118588,219,0 +170737118637,219,0 +170737118687,219,0 +170737118736,219,0 +170737118785,219,0 +170737118833,219,0 +170737118883,219,0 +170737118932,219,0 +170737118980,220,0 +170737119028,219,0 +170737119076,219,0 +170737119126,221,0 +170737119174,243,0 +170737119223,223,0 +170737119271,220,0 +170737119319,220,0 +170737119367,220,0 +170737119415,220,0 +170737119465,220,0 +170737119513,220,0 +170737119562,219,0 +170737119610,220,0 +170737119658,220,0 +170737119707,220,0 +170737119757,220,0 +170737119805,221,0 +170737119853,222,0 +170737119903,224,0 +170737119950,230,0 +170737119998,235,0 +170737120046,241,0 +170737120094,224,0 +170737120142,219,0 +170737120192,220,0 +170737120240,219,0 +170737120289,219,0 +170737120339,219,0 +170737120387,219,0 +170737120435,219,0 +170737120483,219,0 +170737120532,219,0 +170737120580,219,0 +170737120628,219,0 +170737120678,220,0 +170737120726,219,0 +170737120774,219,0 +170737120822,222,0 +170737120871,244,0 +170737120921,242,0 +170737120969,223,0 +170737121017,220,0 +170737121066,220,0 +170737121114,220,0 +170737121162,220,0 +170737121210,220,0 +170737121258,220,0 +170737121306,221,0 +170737121355,221,0 +170737121403,223,0 +170737121451,224,0 +170737121499,228,0 +170737121547,230,0 +170737121595,235,0 +170737121643,234,0 +170737121693,239,0 +170737121741,249,0 +170737121790,237,0 +170737121838,219,0 +170737121886,218,0 +170737121934,219,0 +170737121982,218,0 +170737122030,219,0 +170737122078,218,0 +170737122128,220,0 +170737122176,221,0 +170737122224,223,0 +170737122273,223,0 +170737122323,224,0 +170737122371,229,0 +170737122419,234,0 +170737122467,235,0 +170737122516,237,0 +170737122564,238,0 +170737122614,246,0 +170737122662,225,0 +170737122710,220,0 +170737122758,220,0 +170737122807,220,0 +170737122855,220,0 +170737122904,220,0 +170737122953,220,0 +170737123000,220,0 +170737123048,220,0 +170737123096,220,0 +170737123146,221,0 +170737123194,222,0 +170737123242,223,0 +170737123291,226,0 +170737123339,227,0 +170737123387,229,0 +170737123437,243,0 +170737123486,246,0 +170737123534,220,0 +170737123582,218,0 +170737123630,218,0 +170737123678,218,0 +170737123728,218,0 +170737123776,219,0 +170737123824,225,0 +170737123873,219,0 +170737123923,221,0 +170737123971,221,0 +170737124019,223,0 +170737124066,224,0 +170737124114,227,0 +170737124164,231,0 +170737124213,238,0 +170737124261,236,0 +170737124311,246,0 +170737124360,247,0 +170737124408,220,0 +170737124458,219,0 +170737124506,220,0 +170737124554,220,0 +170737124602,219,0 +170737124650,220,0 +170737124698,220,0 +170737124747,220,0 +170737124795,221,0 +170737124843,222,0 +170737124893,223,0 +170737124940,225,0 +170737124990,227,0 +170737125038,230,0 +170737125086,233,0 +170737125134,236,0 +170737125182,245,0 +170737125230,226,0 +170737125279,220,0 +170737125327,220,0 +170737125375,220,0 +170737125423,220,0 +170737125473,220,0 +170737125521,220,0 +170737125569,220,0 +170737125618,220,0 +170737125666,221,0 +170737125714,224,0 +170737125764,225,0 +170737125813,229,0 +170737125861,231,0 +170737125909,233,0 +170737125957,233,0 +170737126005,239,0 +170737126053,245,0 +170737126102,223,0 +170737126150,220,0 +170737126198,219,0 +170737126248,219,0 +170737126297,220,0 +170737126345,220,0 +170737126393,220,0 +170737126441,219,0 +170737126491,220,0 +170737126539,219,0 +170737126588,220,0 +170737126638,219,0 +170737126686,219,0 +170737126734,219,0 +170737126783,219,0 +170737126831,220,0 +170737126879,238,0 +170737126927,241,0 +170737126975,221,0 +170737127023,220,0 +170737127071,219,0 +170737127121,219,0 +170737127169,220,0 +170737127217,221,0 +170737127265,221,0 +170737127314,223,0 +170737127362,223,0 +170737127410,223,0 +170737127459,224,0 +170737127507,227,0 +170737127556,229,0 +170737127604,231,0 +170737127654,231,0 +170737127702,232,0 +170737127750,241,0 +170737127798,222,0 +170737127846,219,0 +170737127894,218,0 +170737127943,218,0 +170737127991,218,0 +170737128039,218,0 +170737128089,218,0 +170737128136,218,0 +170737128186,218,0 +170737128234,218,0 +170737128283,219,0 +170737128333,219,0 +170737128383,221,0 +170737128430,223,0 +170737128480,225,0 +170737128528,228,0 +170737128577,237,0 +170737128625,240,0 +170737128673,222,0 +170737128721,220,0 +170737128769,219,0 +170737128819,219,0 +170737128867,219,0 +170737128915,220,0 +170737128963,220,0 +170737129012,219,0 +170737129060,220,0 +170737129108,221,0 +170737129156,222,0 +170737129206,222,0 +170737129254,225,0 +170737129302,226,0 +170737129351,228,0 +170737129399,229,0 +170737129447,238,0 +170737129495,240,0 +170737129543,221,0 +170737129591,219,0 +170737129639,219,0 +170737129687,219,0 +170737129735,219,0 +170737129783,219,0 +170737129833,219,0 +170737129882,219,0 +170737129932,219,0 +170737129980,219,0 +170737130028,219,0 +170737130077,219,0 +170737130125,220,0 +170737130173,222,0 +170737130223,225,0 +170737130272,227,0 +170737130322,239,0 +170737130370,222,0 +170737130418,219,0 +170737130465,219,0 +170737130513,219,0 +170737130561,219,0 +170737130611,219,0 +170737130659,219,0 +170737130707,219,0 +170737130755,219,0 +170737130803,219,0 +170737130851,220,0 +170737130899,221,0 +170737130947,221,0 +170737130995,224,0 +170737131043,227,0 +170737131091,230,0 +170737131140,232,0 +170737131190,243,0 +170737131238,223,0 +170737131286,218,0 +170737131334,218,0 +170737131383,218,0 +170737131431,218,0 +170737131479,218,0 +170737131527,218,0 +170737131575,218,0 +170737131624,218,0 +170737131674,221,0 +170737131723,221,0 +170737131771,221,0 +170737131819,225,0 +170737131869,227,0 +170737131917,232,0 +170737131965,233,0 +170737132014,249,0 +170737132064,248,0 +170737132113,224,0 +170737132161,221,0 +170737132209,220,0 +170737132259,220,0 +170737132308,220,0 +170737132358,220,0 +170737132406,221,0 +170737132454,221,0 +170737132502,221,0 +170737132551,223,0 +170737132599,223,0 +170737132647,225,0 +170737132695,228,0 +170737132743,231,0 +170737132791,234,0 +170737132839,232,0 +170737132887,246,0 +170737132937,245,0 +170737132985,219,0 +170737133034,218,0 +170737133084,218,0 +170737133133,218,0 +170737133181,218,0 +170737133230,218,0 +170737133278,218,0 +170737133326,220,0 +170737133376,223,0 +170737133426,222,0 +170737133475,223,0 +170737133523,226,0 +170737133573,231,0 +170737133621,236,0 +170737133670,235,0 +170737133718,239,0 +170737133766,249,0 +170737133815,225,0 +170737133865,220,0 +170737133913,220,0 +170737133961,220,0 +170737134010,219,0 +170737134058,220,0 +170737134106,220,0 +170737134154,220,0 +170737134202,221,0 +170737134252,221,0 +170737134301,223,0 +170737134351,225,0 +170737134399,230,0 +170737134447,233,0 +170737134495,234,0 +170737134543,237,0 +170737134591,245,0 +170737134640,246,0 +170737134688,221,0 +170737134738,220,0 +170737134786,219,0 +170737134835,219,0 +170737134883,219,0 +170737134933,219,0 +170737134981,219,0 +170737135029,219,0 +170737135078,220,0 +170737135128,220,0 +170737135176,219,0 +170737135225,220,0 +170737135275,221,0 +170737135324,224,0 +170737135372,228,0 +170737135422,230,0 +170737135471,247,0 +170737135521,224,0 +170737135570,220,0 +170737135618,220,0 +170737135666,220,0 +170737135716,220,0 +170737135764,220,0 +170737135812,220,0 +170737135860,220,0 +170737135909,221,0 +170737135957,223,0 +170737136005,223,0 +170737136053,223,0 +170737136103,228,0 +170737136151,232,0 +170737136199,235,0 +170737136247,239,0 +170737136296,246,0 +170737136344,249,0 +170737136392,223,0 +170737136440,219,0 +170737136488,219,0 +170737136538,219,0 +170737136586,219,0 +170737136634,219,0 +170737136682,220,0 +170737136731,219,0 +170737136779,219,0 +170737136827,219,0 +170737136877,220,0 +170737136925,219,0 +170737136973,219,0 +170737137022,220,0 +170737137070,225,0 +170737137118,228,0 +170737137166,245,0 +170737137214,248,0 +170737137263,221,0 +170737137311,220,0 +170737137359,220,0 +170737137407,220,0 +170737137455,220,0 +170737137503,220,0 +170737137551,220,0 +170737137599,220,0 +170737137648,220,0 +170737137698,220,0 +170737137748,222,0 +170737137795,222,0 +170737137845,225,0 +170737137893,229,0 +170737137941,232,0 +170737137989,234,0 +170737138037,245,0 +170737138085,222,0 +170737138132,220,0 +170737138180,220,0 +170737138228,219,0 +170737138276,219,0 +170737138324,219,0 +170737138372,220,0 +170737138420,220,0 +170737138468,221,0 +170737138516,221,0 +170737138564,221,0 +170737138613,222,0 +170737138662,224,0 +170737138712,228,0 +170737138760,228,0 +170737138808,233,0 +170737138856,233,0 +170737138903,244,0 +170737138951,223,0 +170737138999,219,0 +170737139047,218,0 +170737139095,218,0 +170737139143,219,0 +170737139191,219,0 +170737139239,219,0 +170737139287,219,0 +170737139335,219,0 +170737139382,220,0 +170737139430,220,0 +170737139478,221,0 +170737139528,223,0 +170737139577,227,0 +170737139625,229,0 +170737139673,231,0 +170737139721,240,0 +170737139769,241,0 +170737139818,222,0 +170737139866,219,0 +170737139914,219,0 +170737139962,219,0 +170737140010,219,0 +170737140058,219,0 +170737140107,219,0 +170737140155,219,0 +170737140203,219,0 +170737140251,219,0 +170737140299,220,0 +170737140347,220,0 +170737140397,222,0 +170737140444,224,0 +170737140492,227,0 +170737140540,228,0 +170737140588,238,0 +170737140636,242,0 +170737140685,220,0 +170737140733,219,0 +170737140781,218,0 +170737140829,219,0 +170737140877,219,0 +170737140925,218,0 +170737140973,219,0 +170737141021,219,0 +170737141068,219,0 +170737141116,220,0 +170737141164,220,0 +170737141212,221,0 +170737141260,224,0 +170737141308,227,0 +170737141356,229,0 +170737141404,230,0 +170737141451,239,0 +170737141499,239,0 +170737141547,220,0 +170737141595,219,0 +170737141643,219,0 +170737141691,219,0 +170737141740,219,0 +170737141788,219,0 +170737141836,219,0 +170737141884,220,0 +170737141932,219,0 +170737141980,219,0 +170737142028,220,0 +170737142075,221,0 +170737142123,223,0 +170737142171,224,0 +170737142219,227,0 +170737142267,228,0 +170737142315,238,0 +170737142363,239,0 +170737142411,220,0 +170737142459,220,0 +170737142506,219,0 +170737142554,219,0 +170737142602,219,0 +170737142650,219,0 +170737142698,220,0 +170737142746,220,0 +170737142795,221,0 +170737142843,221,0 +170737142891,222,0 +170737142939,224,0 +170737142987,226,0 +170737143036,227,0 +170737143085,229,0 +170737143134,232,0 +170737143184,238,0 +170737143232,223,0 +170737143280,219,0 +170737143327,219,0 +170737143375,219,0 +170737143425,219,0 +170737143473,219,0 +170737143521,219,0 +170737143569,219,0 +170737143617,219,0 +170737143665,221,0 +170737143713,221,0 +170737143761,224,0 +170737143809,227,0 +170737143857,228,0 +170737143905,230,0 +170737143953,231,0 +170737144000,232,0 +170737144048,243,0 +170737144096,224,0 +170737144144,219,0 +170737144194,219,0 +170737144242,219,0 +170737144290,218,0 +170737144338,218,0 +170737144385,219,0 +170737144433,218,0 +170737144483,218,0 +170737144532,219,0 +170737144582,219,0 +170737144630,218,0 +170737144679,219,0 +170737144727,219,0 +170737144777,220,0 +170737144825,222,0 +170737144874,271,1 +170737144965,227,0 +170737145013,220,0 +170737145061,220,0 +170737145109,220,0 +170737145157,220,0 +170737145205,220,0 +170737145253,220,0 +170737145301,221,0 +170737145349,221,0 +170737145399,222,0 +170737145446,222,0 +170737145494,225,0 +170737145544,227,0 +170737145592,231,0 +170737145640,230,0 +170737145688,230,0 +170737145736,237,0 +170737145784,239,0 +170737145833,220,0 +170737145881,219,0 +170737145929,219,0 +170737145979,219,0 +170737146028,219,0 +170737146076,219,0 +170737146126,218,0 +170737146174,219,0 +170737146222,218,0 +170737146270,218,0 +170737146319,219,0 +170737146367,219,0 +170737146415,220,0 +170737146465,222,0 +170737146513,224,0 +170737146562,226,0 +170737146612,239,0 +170737146660,223,0 +170737146708,219,0 +170737146756,219,0 +170737146803,219,0 +170737146853,219,0 +170737146902,219,0 +170737146950,219,0 +170737146998,219,0 +170737147046,220,0 +170737147094,220,0 +170737147144,220,0 +170737147192,221,0 +170737147241,223,0 +170737147289,225,0 +170737147337,227,0 +170737147385,230,0 +170737147433,233,0 +170737147483,241,0 +170737147532,223,0 +170737147582,219,0 +170737147630,219,0 +170737147678,219,0 +170737147726,219,0 +170737147774,219,0 +170737147821,219,0 +170737147871,220,0 +170737147921,220,0 +170737147970,221,0 +170737148020,221,0 +170737148068,223,0 +170737148115,225,0 +170737148163,227,0 +170737148213,229,0 +170737148262,232,0 +170737148310,239,0 +170737148360,238,0 +170737148409,220,0 +170737148457,219,0 +170737148505,219,0 +170737148553,219,0 +170737148601,219,0 +170737148649,219,0 +170737148697,219,0 +170737148745,219,0 +170737148792,219,0 +170737148840,219,0 +170737148890,219,0 +170737148940,220,0 +170737148987,220,0 +170737149037,222,0 +170737149086,224,0 +170737149134,228,0 +170737149182,240,0 +170737149230,223,0 +170737149278,219,0 +170737149326,219,0 +170737149374,219,0 +170737149422,219,0 +170737149471,219,0 +170737149521,219,0 +170737149570,219,0 +170737149618,220,0 +170737149666,220,0 +170737149714,220,0 +170737149762,222,0 +170737149812,225,0 +170737149860,227,0 +170737149908,229,0 +170737149957,230,0 +170737150005,233,0 +170737150055,240,0 +170737150103,223,0 +170737150151,219,0 +170737150199,219,0 +170737150247,219,0 +170737150295,219,0 +170737150343,219,0 +170737150392,219,0 +170737150442,219,0 +170737150490,219,0 +170737150537,219,0 +170737150585,220,0 +170737150635,221,0 +170737150683,222,0 +170737150731,224,0 +170737150779,225,0 +170737150828,228,0 +170737150876,233,0 +170737150924,241,0 +170737150974,221,0 +170737151023,219,0 +170737151071,218,0 +170737151121,219,0 +170737151170,219,0 +170737151220,218,0 +170737151268,219,0 +170737151316,219,0 +170737151364,219,0 +170737151413,220,0 +170737151461,219,0 +170737151509,221,0 +170737151557,223,0 +170737151606,225,0 +170737151654,226,0 +170737151702,228,0 +170737151750,240,0 +170737151798,224,0 +170737151846,219,0 +170737151894,219,0 +170737151941,219,0 +170737151989,219,0 +170737152037,219,0 +170737152085,219,0 +170737152133,219,0 +170737152181,219,0 +170737152229,219,0 +170737152277,220,0 +170737152324,220,0 +170737152372,221,0 +170737152420,224,0 +170737152468,226,0 +170737152516,227,0 +170737152564,230,0 +170737152612,239,0 +170737152660,223,0 +170737152708,219,0 +170737152756,219,0 +170737152803,219,0 +170737152851,219,0 +170737152899,219,0 +170737152949,219,0 +170737152997,220,0 +170737153045,220,0 +170737153094,220,0 +170737153142,221,0 +170737153192,223,0 +170737153241,224,0 +170737153289,226,0 +170737153339,229,0 +170737153387,231,0 +170737153435,234,0 +170737153484,240,0 +170737153532,221,0 +170737153580,218,0 +170737153629,218,0 +170737153679,218,0 +170737153727,218,0 +170737153775,218,0 +170737153823,218,0 +170737153871,218,0 +170737153920,219,0 +170737153970,220,0 +170737154019,220,0 +170737154067,222,0 +170737154115,224,0 +170737154165,227,0 +170737154214,228,0 +170737154262,229,0 +170737154310,239,0 +170737154358,238,0 +170737154406,219,0 +170737154456,218,0 +170737154504,218,0 +170737154553,218,0 +170737154601,218,0 +170737154651,218,0 +170737154699,219,0 +170737154748,219,0 +170737154796,220,0 +170737154846,220,0 +170737154894,221,0 +170737154942,223,0 +170737154990,225,0 +170737155039,228,0 +170737155089,230,0 +170737155138,234,0 +170737155186,240,0 +170737155234,223,0 +170737155282,218,0 +170737155330,218,0 +170737155378,218,0 +170737155428,218,0 +170737155476,218,0 +170737155525,218,0 +170737155575,218,0 +170737155623,220,0 +170737155672,220,0 +170737155720,220,0 +170737155768,222,0 +170737155816,223,0 +170737155866,225,0 +170737155914,227,0 +170737155963,229,0 +170737156011,237,0 +170737156059,241,0 +170737156109,220,0 +170737156157,218,0 +170737156205,218,0 +170737156252,218,0 +170737156300,218,0 +170737156348,218,0 +170737156398,218,0 +170737156447,218,0 +170737156497,218,0 +170737156545,218,0 +170737156593,218,0 +170737156641,218,0 +170737156690,219,0 +170737156740,220,0 +170737156788,223,0 +170737156837,226,0 +170737156885,239,0 +170737156935,241,0 +170737156983,219,0 +170737157031,218,0 +170737157079,218,0 +170737157127,218,0 +170737157175,218,0 +170737157223,218,0 +170737157271,218,0 +170737157320,218,0 +170737157368,218,0 +170737157416,218,0 +170737157464,219,0 +170737157512,219,0 +170737157560,221,0 +170737157608,224,0 +170737157656,227,0 +170737157704,228,0 +170737157752,239,0 +170737157800,222,0 +170737157848,219,0 +170737157897,219,0 +170737157947,219,0 +170737157995,219,0 +170737158043,219,0 +170737158091,219,0 +170737158139,219,0 +170737158186,218,0 +170737158234,219,0 +170737158282,219,0 +170737158332,219,0 +170737158381,219,0 +170737158429,219,0 +170737158479,222,0 +170737158527,224,0 +170737158577,238,0 +170737158626,243,0 +170737158674,220,0 +170737158724,219,0 +170737158772,218,0 +170737158819,219,0 +170737158867,218,0 +170737158915,218,0 +170737158965,218,0 +170737159013,218,0 +170737159062,218,0 +170737159110,219,0 +170737159160,218,0 +170737159208,219,0 +170737159256,220,0 +170737159304,222,0 +170737159353,225,0 +170737159401,228,0 +170737159449,240,0 +170737159497,241,0 +170737159545,219,0 +170737159593,219,0 +170737159643,219,0 +170737159691,218,0 +170737159739,218,0 +170737159787,218,0 +170737159835,218,0 +170737159884,218,0 +170737159932,218,0 +170737159982,218,0 +170737160031,218,0 +170737160079,218,0 +170737160128,218,0 +170737160176,218,0 +170737160224,218,0 +170737160272,219,0 +170737160320,241,0 +170737160368,222,0 +170737160416,218,0 +170737160464,218,0 +170737160514,218,0 +170737160563,218,0 +170737160611,218,0 +170737160659,219,0 +170737160707,220,0 +170737160755,220,0 +170737160803,221,0 +170737160853,222,0 +170737160901,224,0 +170737160950,227,0 +170737160998,231,0 +170737161048,231,0 +170737161096,234,0 +170737161144,241,0 +170737161192,243,0 +170737161241,221,0 +170737161289,218,0 +170737161337,218,0 +170737161385,218,0 +170737161433,218,0 +170737161481,218,0 +170737161529,218,0 +170737161577,218,0 +170737161625,217,0 +170737161673,218,0 +170737161721,218,0 +170737161769,219,0 +170737161817,220,0 +170737161865,220,0 +170737161913,223,0 +170737161961,225,0 +170737162009,240,0 +170737162057,240,0 +170737162106,221,0 +170737162154,218,0 +170737162202,218,0 +170737162252,218,0 +170737162300,218,0 +170737162349,218,0 +170737162399,219,0 +170737162448,219,0 +170737162496,220,0 +170737162546,221,0 +170737162594,221,0 +170737162641,223,0 +170737162691,225,0 +170737162739,229,0 +170737162787,231,0 +170737162836,232,0 +170737162884,240,0 +170737162932,239,0 +170737162980,219,0 +170737163028,218,0 +170737163078,218,0 +170737163127,218,0 +170737163175,218,0 +170737163223,218,0 +170737163273,218,0 +170737163321,218,0 +170737163370,218,0 +170737163418,219,0 +170737163468,220,0 +170737163516,220,0 +170737163564,223,0 +170737163611,226,0 +170737163661,227,0 +170737163709,232,0 +170737163757,240,0 +170737163805,222,0 +170737163853,218,0 +170737163901,218,0 +170737163949,218,0 +170737163997,218,0 +170737164045,218,0 +170737164095,219,0 +170737164142,219,0 +170737164192,220,0 +170737164241,220,0 +170737164289,220,0 +170737164339,223,0 +170737164387,224,0 +170737164436,226,0 +170737164486,229,0 +170737164534,230,0 +170737164584,238,0 +170737164631,239,0 +170737164679,219,0 +170737164727,218,0 +170737164775,218,0 +170737164825,218,0 +170737164873,218,0 +170737164921,218,0 +170737164969,219,0 +170737165017,219,0 +170737165066,219,0 +170737165114,221,0 +170737165162,222,0 +170737165210,225,0 +170737165258,227,0 +170737165306,226,0 +170737165354,230,0 +170737165404,230,0 +170737165453,235,0 +170737165501,234,0 +170737165549,219,0 +170737165597,218,0 +170737165646,218,0 +170737165696,218,0 +170737165746,218,0 +170737165794,219,0 +170737165842,220,0 +170737165891,220,0 +170737165939,220,0 +170737165987,221,0 +170737166035,223,0 +170737166083,225,0 +170737166132,229,0 +170737166180,231,0 +170737166228,232,0 +170737166276,233,0 +170737166324,241,0 +170737166372,223,0 +170737166420,218,0 +170737166468,218,0 +170737166518,218,0 +170737166566,218,0 +170737166613,218,0 +170737166661,218,0 +170737166709,218,0 +170737166757,218,0 +170737166805,219,0 +170737166853,220,0 +170737166901,220,0 +170737166949,221,0 +170737166997,223,0 +170737167044,225,0 +170737167092,228,0 +170737167140,235,0 +170737167190,241,0 +170737167238,222,0 +170737167286,219,0 +170737167334,219,0 +170737167383,219,0 +170737167431,219,0 +170737167479,219,0 +170737167527,219,0 +170737167575,220,0 +170737167623,220,0 +170737167673,221,0 +170737167721,222,0 +170737167769,224,0 +170737167817,226,0 +170737167866,228,0 +170737167916,230,0 +170737167963,231,0 +170737168011,239,0 +170737168061,239,0 +170737168109,222,0 +170737168157,219,0 +170737168205,219,0 +170737168253,219,0 +170737168301,219,0 +170737168349,219,0 +170737168397,219,0 +170737168445,219,0 +170737168493,219,0 +170737168541,219,0 +170737168589,219,0 +170737168637,219,0 +170737168685,219,0 +170737168732,219,0 +170737168780,219,0 +170737168830,219,0 +170737168878,220,0 +170737168926,221,0 +170737168974,221,0 +170737169021,222,0 +170737169069,224,0 +170737169117,227,0 +170737169165,229,0 +170737169215,230,0 +170737169264,230,0 +170737169312,240,0 +170737169360,233,0 +170737169408,219,0 +170737169457,219,0 +170737169505,219,0 +170737169553,219,0 +170737169603,219,0 +170737169651,219,0 +170737169700,219,0 +170737169748,219,0 +170737169798,220,0 +170737169846,221,0 +170737169894,222,0 +170737169943,224,0 +170737169991,226,0 +170737170039,228,0 +170737170087,230,0 +170737170135,234,0 +170737170182,238,0 +170737170230,223,0 +170737170278,218,0 +170737170326,218,0 +170737170374,218,0 +170737170422,218,0 +170737170470,218,0 +170737170519,218,0 +170737170567,219,0 +170737170617,219,0 +170737170664,218,0 +170737170714,219,0 +170737170762,220,0 +170737170811,222,0 +170737170859,225,0 +170737170907,226,0 +170737170955,228,0 +170737171004,237,0 +170737171052,240,0 +170737171100,221,0 +170737171148,218,0 +170737171196,218,0 +170737171244,218,0 +170737171292,218,0 +170737171340,218,0 +170737171389,218,0 +170737171437,219,0 +170737171485,219,0 +170737171533,219,0 +170737171581,221,0 +170737171628,222,0 +170737171676,225,0 +170737171724,228,0 +170737171774,229,0 +170737171822,233,0 +170737171871,241,0 +170737171919,240,0 +170737171967,220,0 +170737172015,218,0 +170737172062,218,0 +170737172112,218,0 +170737172161,218,0 +170737172209,218,0 +170737172257,218,0 +170737172305,219,0 +170737172353,219,0 +170737172401,220,0 +170737172450,220,0 +170737172498,222,0 +170737172546,225,0 +170737172594,227,0 +170737172642,228,0 +170737172690,231,0 +170737172738,243,0 +170737172785,221,0 +170737172835,219,0 +170737172883,219,0 +170737172932,219,0 +170737172980,219,0 +170737173028,219,0 +170737173076,219,0 +170737173124,219,0 +170737173172,220,0 +170737173220,221,0 +170737173268,221,0 +170737173316,221,0 +170737173363,224,0 +170737173411,226,0 +170737173459,229,0 +170737173507,230,0 +170737173555,232,0 +170737173603,241,0 +170737173652,223,0 +170737173700,218,0 +170737173748,218,0 +170737173796,218,0 +170737173844,218,0 +170737173892,218,0 +170737173940,219,0 +170737173987,219,0 +170737174035,220,0 +170737174085,220,0 +170737174133,221,0 +170737174181,223,0 +170737174229,225,0 +170737174276,228,0 +170737174326,231,0 +170737174374,233,0 +170737174422,233,0 +170737174470,242,0 +170737174518,223,0 +170737174565,218,0 +170737174613,218,0 +170737174663,218,0 +170737174711,218,0 +170737174759,218,0 +170737174806,218,0 +170737174856,218,0 +170737174905,218,0 +170737174955,218,0 +170737175003,218,0 +170737175051,219,0 +170737175098,220,0 +170737175146,221,0 +170737175194,224,0 +170737175242,225,0 +170737175290,237,0 +170737175338,240,0 +170737175386,220,0 +170737175433,218,0 +170737175481,218,0 +170737175529,218,0 +170737175577,218,0 +170737175625,218,0 +170737175673,218,0 +170737175721,218,0 +170737175769,218,0 +170737175817,219,0 +170737175865,219,0 +170737175913,220,0 +170737175960,223,0 +170737176008,226,0 +170737176056,228,0 +170737176104,229,0 +170737176152,238,0 +170737176201,242,0 +170737176249,219,0 +170737176297,219,0 +170737176347,219,0 +170737176396,219,0 +170737176444,219,0 +170737176492,220,0 +170737176540,221,0 +170737176588,221,0 +170737176636,222,0 +170737176684,222,0 +170737176732,223,0 +170737176779,227,0 +170737176827,229,0 +170737176875,231,0 +170737176923,232,0 +170737176971,232,0 +170737177020,240,0 +170737177068,240,0 +170737177116,219,0 +170737177164,219,0 +170737177212,219,0 +170737177260,218,0 +170737177308,218,0 +170737177355,219,0 +170737177405,219,0 +170737177453,219,0 +170737177501,219,0 +170737177549,219,0 +170737177596,220,0 +170737177644,220,0 +170737177692,224,0 +170737177742,225,0 +170737177791,228,0 +170737177839,229,0 +170737177888,241,0 +170737177936,222,0 +170737177986,218,0 +170737178034,218,0 +170737178083,218,0 +170737178131,218,0 +170737178179,218,0 +170737178227,218,0 +170737178275,218,0 +170737178323,219,0 +170737178371,220,0 +170737178419,220,0 +170737178466,220,0 +170737178514,223,0 +170737178562,226,0 +170737178610,228,0 +170737178658,230,0 +170737178707,239,0 +170737178755,240,0 +170737178803,222,0 +170737178851,219,0 +170737178899,219,0 +170737178947,219,0 +170737178996,219,0 +170737179044,219,0 +170737179092,219,0 +170737179140,218,0 +170737179189,218,0 +170737179237,219,0 +170737179285,221,0 +170737179333,221,0 +170737179381,223,0 +170737179429,227,0 +170737179477,228,0 +170737179526,230,0 +170737179574,238,0 +170737179622,241,0 +170737179670,221,0 +170737179718,219,0 +170737179766,218,0 +170737179814,219,0 +170737179862,219,0 +170737179909,218,0 +170737179957,219,0 +170737180005,219,0 +170737180053,219,0 +170737180101,219,0 +170737180149,219,0 +170737180197,219,0 +170737180245,220,0 +170737180294,223,0 +170737180342,226,0 +170737180390,228,0 +170737180438,240,0 +170737180486,240,0 +170737180534,221,0 +170737180582,219,0 +170737180629,219,0 +170737180677,218,0 +170737180725,218,0 +170737180773,218,0 +170737180821,219,0 +170737180869,219,0 +170737180917,219,0 +170737180965,219,0 +170737181014,219,0 +170737181062,220,0 +170737181110,221,0 +170737181159,223,0 +170737181207,226,0 +170737181255,230,0 +170737181303,243,0 +170737181351,266,0 +170737181399,219,0 +170737181447,218,0 +170737181495,218,0 +170737181542,218,0 +170737181590,218,0 +170737181640,218,0 +170737181688,218,0 +170737181736,218,0 +170737181783,218,0 +170737181831,218,0 +170737181879,219,0 +170737181927,220,0 +170737181976,219,0 +170737182024,223,0 +170737182072,225,0 +170737182120,227,0 +170737182168,241,0 +170737182216,225,0 +170737182265,218,0 +170737182313,218,0 +170737182361,218,0 +170737182409,218,0 +170737182457,217,0 +170737182505,218,0 +170737182553,218,0 +170737182601,218,0 +170737182648,218,0 +170737182698,218,0 +170737182746,218,0 +170737182794,218,0 +170737182842,219,0 +170737182890,222,0 +170737182937,225,0 +170737182985,227,0 +170737183033,243,0 +170737183081,223,0 +170737183129,218,0 +170737183177,218,0 +170737183225,217,0 +170737183273,218,0 +170737183321,217,0 +170737183370,218,0 +170737183420,218,0 +170737183468,218,0 +170737183515,218,0 +170737183563,217,0 +170737183613,217,0 +170737183661,218,0 +170737183709,219,0 +170737183756,220,0 +170737183804,224,0 +170737183854,236,0 +170737183902,243,0 +170737183949,222,0 +170737183997,219,0 +170737184045,218,0 +170737184093,218,0 +170737184141,218,0 +170737184189,218,0 +170737184237,218,0 +170737184286,218,0 +170737184334,219,0 +170737184382,219,0 +170737184430,220,0 +170737184478,221,0 +170737184527,221,0 +170737184575,224,0 +170737184625,226,0 +170737184674,229,0 +170737184722,240,0 +170737184770,241,0 +170737184818,219,0 +170737184866,218,0 +170737184916,218,0 +170737184965,218,0 +170737185013,218,0 +170737185063,218,0 +170737185111,218,0 +170737185159,218,0 +170737185209,218,0 +170737185256,218,0 +170737185306,218,0 +170737185354,218,0 +170737185402,218,0 +170737185451,218,0 +170737185499,220,0 +170737185549,224,0 +170737185597,240,0 +170737185645,222,0 +170737185693,218,0 +170737185741,218,0 +170737185790,218,0 +170737185840,218,0 +170737185888,218,0 +170737185936,218,0 +170737185984,217,0 +170737186032,218,0 +170737186080,217,0 +170737186129,217,0 +170737186177,217,0 +170737186225,218,0 +170737186273,218,0 +170737186321,221,0 +170737186371,223,0 +170737186419,227,0 +170737186467,241,0 +170737186514,224,0 +170737186562,220,0 +170737186610,220,0 +170737186658,219,0 +170737186706,221,0 +170737186754,221,0 +170737186802,222,0 +170737186850,221,0 +170737186900,223,0 +170737186948,223,0 +170737186997,224,0 +170737187045,227,0 +170737187095,229,0 +170737187143,231,0 +170737187191,232,0 +170737187240,232,0 +170737187290,237,0 +170737187338,240,0 +170737187386,221,0 +170737187434,219,0 +170737187482,219,0 +170737187530,219,0 +170737187579,219,0 +170737187627,220,0 +170737187677,220,0 +170737187725,220,0 +170737187773,221,0 +170737187821,223,0 +170737187869,225,0 +170737187916,228,0 +170737187966,230,0 +170737188014,233,0 +170737188063,235,0 +170737188111,235,0 +170737188159,240,0 +170737188207,237,0 +170737188257,219,0 +170737188306,219,0 +170737188356,218,0 +170737188404,218,0 +170737188452,219,0 +170737188501,219,0 +170737188551,220,0 +170737188599,220,0 +170737188647,221,0 +170737188696,221,0 +170737188744,221,0 +170737188792,224,0 +170737188840,227,0 +170737188890,229,0 +170737188939,229,0 +170737188987,234,0 +170737189035,241,0 +170737189083,223,0 +170737189133,219,0 +170737189181,219,0 +170737189230,219,0 +170737189278,219,0 +170737189326,218,0 +170737189374,219,0 +170737189423,219,0 +170737189471,219,0 +170737189519,220,0 +170737189567,221,0 +170737189615,222,0 +170737189663,225,0 +170737189713,228,0 +170737189761,229,0 +170737189810,231,0 +170737189858,239,0 +170737189906,242,0 +170737189956,221,0 +170737190004,219,0 +170737190053,219,0 +170737190103,218,0 +170737190152,219,0 +170737190200,219,0 +170737190248,218,0 +170737190296,219,0 +170737190344,219,0 +170737190392,220,0 +170737190442,221,0 +170737190490,222,0 +170737190538,224,0 +170737190586,227,0 +170737190634,229,0 +170737190682,231,0 +170737190730,241,0 +170737190779,239,0 +170737190827,219,0 +170737190876,218,0 +170737190924,218,0 +170737190972,218,0 +170737191022,218,0 +170737191070,218,0 +170737191118,218,0 +170737191167,219,0 +170737191215,220,0 +170737191263,220,0 +170737191311,221,0 +170737191359,224,0 +170737191407,227,0 +170737191455,229,0 +170737191505,230,0 +170737191553,232,0 +170737191602,241,0 +170737191650,222,0 +170737191698,219,0 +170737191746,218,0 +170737191794,218,0 +170737191844,218,0 +170737191892,218,0 +170737191940,218,0 +170737191989,218,0 +170737192039,218,0 +170737192087,218,0 +170737192135,218,0 +170737192183,219,0 +170737192230,220,0 +170737192278,220,0 +170737192326,223,0 +170737192374,225,0 +170737192422,234,0 +170737192470,241,0 +170737192520,223,0 +170737192568,218,0 +170737192617,218,0 +170737192665,218,0 +170737192713,217,0 +170737192761,218,0 +170737192811,218,0 +170737192859,218,0 +170737192907,219,0 +170737192956,219,0 +170737193004,220,0 +170737193052,222,0 +170737193100,225,0 +170737193148,227,0 +170737193196,229,0 +170737193244,231,0 +170737193292,251,0 +170737193342,244,0 +170737193389,221,0 +170737193439,219,0 +170737193488,219,0 +170737193536,218,0 +170737193584,219,0 +170737193634,219,0 +170737193682,219,0 +170737193730,219,0 +170737193779,220,0 +170737193827,220,0 +170737193875,221,0 +170737193923,222,0 +170737193971,225,0 +170737194019,227,0 +170737194067,227,0 +170737194115,229,0 +170737194165,238,0 +170737194213,244,0 +170737194262,219,0 +170737194312,218,0 +170737194360,218,0 +170737194408,218,0 +170737194456,218,0 +170737194505,218,0 +170737194553,219,0 +170737194601,219,0 +170737194649,219,0 +170737194697,220,0 +170737194745,220,0 +170737194793,222,0 +170737194843,225,0 +170737194892,229,0 +170737194940,231,0 +170737194990,233,0 +170737195039,241,0 +170737195087,225,0 +170737195135,219,0 +170737195185,219,0 +170737195233,219,0 +170737195280,219,0 +170737195328,219,0 +170737195376,219,0 +170737195424,219,0 +170737195472,219,0 +170737195522,219,0 +170737195571,221,0 +170737195619,221,0 +170737195669,222,0 +170737195719,224,0 +170737195768,226,0 +170737195816,228,0 +170737195864,235,0 +170737195912,239,0 +170737195961,219,0 +170737196009,218,0 +170737196059,218,0 +170737196107,218,0 +170737196156,218,0 +170737196204,218,0 +170737196252,218,0 +170737196300,218,0 +170737196348,218,0 +170737196396,218,0 +170737196444,219,0 +170737196492,220,0 +170737196540,221,0 +170737196588,224,0 +170737196637,227,0 +170737196685,229,0 +170737196733,237,0 +170737196781,226,0 +170737196831,219,0 +170737196879,219,0 +170737196928,219,0 +170737196976,219,0 +170737197026,219,0 +170737197074,218,0 +170737197122,219,0 +170737197170,219,0 +170737197218,219,0 +170737197266,220,0 +170737197314,220,0 +170737197361,221,0 +170737197411,224,0 +170737197459,226,0 +170737197507,229,0 +170737197555,231,0 +170737197603,242,0 +170737197652,223,0 +170737197702,219,0 +170737197750,219,0 +170737197799,219,0 +170737197849,219,0 +170737197897,219,0 +170737197946,219,0 +170737197994,219,0 +170737198042,219,0 +170737198090,219,0 +170737198138,219,0 +170737198186,220,0 +170737198236,221,0 +170737198284,223,0 +170737198332,227,0 +170737198380,229,0 +170737198427,230,0 +170737198477,240,0 +170737198527,222,0 +170737198574,218,0 +170737198624,218,0 +170737198672,218,0 +170737198722,218,0 +170737198770,218,0 +170737198817,218,0 +170737198865,218,0 +170737198913,218,0 +170737198961,219,0 +170737199009,219,0 +170737199057,220,0 +170737199105,222,0 +170737199155,225,0 +170737199203,227,0 +170737199251,229,0 +170737199300,238,0 +170737199348,242,0 +170737199398,220,0 +170737199446,219,0 +170737199495,219,0 +170737199543,219,0 +170737199591,219,0 +170737199639,220,0 +170737199687,221,0 +170737199735,222,0 +170737199782,222,0 +170737199830,222,0 +170737199880,226,0 +170737199929,227,0 +170737199979,228,0 +170737200027,231,0 diff --git a/laser_value/0208-16.csv b/laser_value/0208-16.csv new file mode 100644 index 0000000..591ba79 --- /dev/null +++ b/laser_value/0208-16.csv @@ -0,0 +1,7354 @@ +timestamp,laser_value,event +170737200076,221,0 +170737200125,229,0 +170737200173,242,0 +170737200221,223,0 +170737200269,219,0 +170737200317,219,0 +170737200365,219,0 +170737200413,219,0 +170737200461,219,0 +170737200509,219,0 +170737200556,219,0 +170737200604,220,0 +170737200652,220,0 +170737200700,221,0 +170737200748,222,0 +170737200796,223,0 +170737200844,226,0 +170737200892,228,0 +170737200940,230,0 +170737200988,231,0 +170737201037,241,0 +170737201085,224,0 +170737201133,219,0 +170737201181,219,0 +170737201229,219,0 +170737201277,219,0 +170737201326,219,0 +170737201376,219,0 +170737201424,219,0 +170737201473,219,0 +170737201521,219,0 +170737201571,219,0 +170737201619,220,0 +170737201668,221,0 +170737201716,224,0 +170737201764,227,0 +170737201812,228,0 +170737201860,240,0 +170737201909,241,0 +170737201957,220,0 +170737202007,219,0 +170737202055,218,0 +170737202103,219,0 +170737202151,218,0 +170737202200,219,0 +170737202248,218,0 +170737202298,218,0 +170737202346,219,0 +170737202394,219,0 +170737202442,220,0 +170737202491,221,0 +170737202539,222,0 +170737202587,225,0 +170737202635,227,0 +170737202683,228,0 +170737202731,241,0 +170737202778,240,0 +170737202826,219,0 +170737202874,219,0 +170737202922,219,0 +170737202970,218,0 +170737203018,219,0 +170737203066,218,0 +170737203115,219,0 +170737203165,219,0 +170737203214,219,0 +170737203262,219,0 +170737203312,219,0 +170737203361,220,0 +170737203409,222,0 +170737203457,226,0 +170737203506,228,0 +170737203554,231,0 +170737203602,241,0 +170737203652,224,0 +170737203701,219,0 +170737203749,219,0 +170737203799,218,0 +170737203847,219,0 +170737203896,219,0 +170737203944,219,0 +170737203992,219,0 +170737204040,219,0 +170737204088,220,0 +170737204136,221,0 +170737204184,221,0 +170737204232,224,0 +170737204280,226,0 +170737204329,230,0 +170737204379,230,0 +170737204427,239,0 +170737204474,242,0 +170737204524,220,0 +170737204572,217,0 +170737204620,217,0 +170737204668,217,0 +170737204716,217,0 +170737204763,217,0 +170737204811,217,0 +170737204859,217,0 +170737204909,217,0 +170737204957,217,0 +170737205005,217,0 +170737205052,217,0 +170737205100,219,0 +170737205148,220,0 +170737205196,223,0 +170737205245,225,0 +170737205293,242,0 +170737205341,241,0 +170737205389,220,0 +170737205437,218,0 +170737205485,218,0 +170737205533,218,0 +170737205581,218,0 +170737205628,218,0 +170737205678,218,0 +170737205726,218,0 +170737205774,218,0 +170737205823,218,0 +170737205871,218,0 +170737205919,218,0 +170737205967,218,0 +170737206015,218,0 +170737206062,219,0 +170737206110,222,0 +170737206158,254,0 +170737206206,254,0 +170737206254,219,0 +170737206302,218,0 +170737206350,218,0 +170737206399,218,0 +170737206447,218,0 +170737206495,218,0 +170737206543,218,0 +170737206591,218,0 +170737206641,218,0 +170737206688,219,0 +170737206736,218,0 +170737206786,218,0 +170737206835,218,0 +170737206883,219,0 +170737206931,219,0 +170737206981,220,0 +170737207030,238,0 +170737207080,222,0 +170737207129,218,0 +170737207179,218,0 +170737207227,218,0 +170737207275,218,0 +170737207324,219,0 +170737207372,219,0 +170737207422,218,0 +170737207470,219,0 +170737207518,218,0 +170737207566,218,0 +170737207614,219,0 +170737207663,220,0 +170737207711,223,0 +170737207759,225,0 +170737207807,231,0 +170737207856,237,0 +170737207906,236,0 +170737207954,221,0 +170737208002,218,0 +170737208050,218,0 +170737208097,218,0 +170737208145,218,0 +170737208193,218,0 +170737208243,218,0 +170737208291,218,0 +170737208338,218,0 +170737208386,219,0 +170737208436,220,0 +170737208484,221,0 +170737208531,223,0 +170737208579,225,0 +170737208627,228,0 +170737208675,230,0 +170737208723,238,0 +170737208771,241,0 +170737208819,219,0 +170737208867,218,0 +170737208916,218,0 +170737208964,218,0 +170737209012,218,0 +170737209060,218,0 +170737209108,218,0 +170737209155,218,0 +170737209203,219,0 +170737209251,219,0 +170737209301,220,0 +170737209350,222,0 +170737209398,225,0 +170737209446,227,0 +170737209494,230,0 +170737209542,231,0 +170737209590,238,0 +170737209638,240,0 +170737209687,219,0 +170737209735,219,0 +170737209783,219,0 +170737209831,219,0 +170737209879,219,0 +170737209929,219,0 +170737209977,220,0 +170737210026,220,0 +170737210076,222,0 +170737210124,222,0 +170737210172,225,0 +170737210220,226,0 +170737210269,228,0 +170737210317,231,0 +170737210367,231,0 +170737210416,232,0 +170737210464,241,0 +170737210514,224,0 +170737210561,219,0 +170737210609,219,0 +170737210657,218,0 +170737210705,219,0 +170737210753,219,0 +170737210801,219,0 +170737210849,219,0 +170737210897,219,0 +170737210945,220,0 +170737210993,220,0 +170737211043,221,0 +170737211091,223,0 +170737211139,226,0 +170737211187,226,0 +170737211235,228,0 +170737211282,234,0 +170737211330,240,0 +170737211378,221,0 +170737211428,218,0 +170737211477,218,0 +170737211525,218,0 +170737211575,218,0 +170737211624,218,0 +170737211672,218,0 +170737211720,219,0 +170737211768,219,0 +170737211818,220,0 +170737211866,221,0 +170737211914,222,0 +170737211963,225,0 +170737212013,227,0 +170737212062,228,0 +170737212110,230,0 +170737212160,239,0 +170737212209,240,0 +170737212257,218,0 +170737212307,218,0 +170737212356,217,0 +170737212406,218,0 +170737212455,217,0 +170737212503,217,0 +170737212551,217,0 +170737212599,218,0 +170737212649,217,0 +170737212697,218,0 +170737212746,219,0 +170737212794,220,0 +170737212842,222,0 +170737212892,225,0 +170737212941,229,0 +170737212989,231,0 +170737213037,242,0 +170737213085,223,0 +170737213134,219,0 +170737213184,219,0 +170737213232,219,0 +170737213282,219,0 +170737213329,220,0 +170737213377,221,0 +170737213427,221,0 +170737213476,221,0 +170737213524,222,0 +170737213574,224,0 +170737213622,226,0 +170737213670,229,0 +170737213718,231,0 +170737213766,232,0 +170737213815,232,0 +170737213863,238,0 +170737213913,240,0 +170737213962,220,0 +170737214010,219,0 +170737214058,218,0 +170737214108,219,0 +170737214156,219,0 +170737214204,218,0 +170737214252,219,0 +170737214299,219,0 +170737214347,219,0 +170737214397,220,0 +170737214445,221,0 +170737214493,222,0 +170737214542,225,0 +170737214590,227,0 +170737214638,232,0 +170737214686,231,0 +170737214734,239,0 +170737214782,240,0 +170737214830,219,0 +170737214878,219,0 +170737214928,219,0 +170737214976,219,0 +170737215024,219,0 +170737215072,219,0 +170737215121,219,0 +170737215171,220,0 +170737215219,221,0 +170737215266,221,0 +170737215316,222,0 +170737215366,224,0 +170737215413,226,0 +170737215461,228,0 +170737215509,230,0 +170737215557,231,0 +170737215607,240,0 +170737215655,221,0 +170737215703,219,0 +170737215752,219,0 +170737215802,219,0 +170737215850,218,0 +170737215898,219,0 +170737215946,219,0 +170737215994,219,0 +170737216041,219,0 +170737216090,219,0 +170737216137,218,0 +170737216185,219,0 +170737216233,220,0 +170737216281,221,0 +170737216329,223,0 +170737216377,226,0 +170737216425,228,0 +170737216473,240,0 +170737216521,223,0 +170737216569,218,0 +170737216617,218,0 +170737216664,218,0 +170737216712,218,0 +170737216760,218,0 +170737216808,218,0 +170737216858,218,0 +170737216907,218,0 +170737216957,218,0 +170737217006,218,0 +170737217055,220,0 +170737217103,221,0 +170737217151,224,0 +170737217199,225,0 +170737217247,228,0 +170737217297,238,0 +170737217345,240,0 +170737217394,220,0 +170737217442,219,0 +170737217490,218,0 +170737217540,219,0 +170737217589,219,0 +170737217639,219,0 +170737217688,219,0 +170737217738,218,0 +170737217785,218,0 +170737217835,219,0 +170737217883,220,0 +170737217931,220,0 +170737217980,223,0 +170737218028,225,0 +170737218078,228,0 +170737218127,231,0 +170737218175,239,0 +170737218223,223,0 +170737218271,219,0 +170737218319,219,0 +170737218367,219,0 +170737218417,219,0 +170737218465,218,0 +170737218514,218,0 +170737218564,219,0 +170737218613,219,0 +170737218661,220,0 +170737218711,221,0 +170737218760,222,0 +170737218808,225,0 +170737218858,228,0 +170737218906,228,0 +170737218953,230,0 +170737219001,255,0 +170737219049,245,0 +170737219099,224,0 +170737219147,219,0 +170737219195,219,0 +170737219242,218,0 +170737219290,218,0 +170737219338,218,0 +170737219386,218,0 +170737219434,219,0 +170737219482,219,0 +170737219531,219,0 +170737219579,220,0 +170737219629,221,0 +170737219678,223,0 +170737219728,226,0 +170737219776,229,0 +170737219825,231,0 +170737219873,240,0 +170737219921,246,0 +170737219969,219,0 +170737220019,218,0 +170737220067,218,0 +170737220115,218,0 +170737220162,218,0 +170737220210,218,0 +170737220260,219,0 +170737220308,218,0 +170737220356,218,0 +170737220404,220,0 +170737220453,220,0 +170737220503,221,0 +170737220551,223,0 +170737220599,225,0 +170737220647,228,0 +170737220695,228,0 +170737220744,237,0 +170737220794,225,0 +170737220841,219,0 +170737220890,218,0 +170737220939,219,0 +170737220989,218,0 +170737221036,218,0 +170737221086,218,0 +170737221134,219,0 +170737221184,218,0 +170737221232,218,0 +170737221281,218,0 +170737221329,220,0 +170737221377,220,0 +170737221425,223,0 +170737221475,226,0 +170737221524,227,0 +170737221572,230,0 +170737221620,239,0 +170737221669,223,0 +170737221717,218,0 +170737221765,218,0 +170737221813,218,0 +170737221862,218,0 +170737221910,218,0 +170737221958,218,0 +170737222005,218,0 +170737222055,218,0 +170737222104,218,0 +170737222154,219,0 +170737222202,218,0 +170737222250,220,0 +170737222299,222,0 +170737222349,225,0 +170737222397,227,0 +170737222445,237,0 +170737222494,241,0 +170737222542,219,0 +170737222590,218,0 +170737222638,218,0 +170737222686,218,0 +170737222735,218,0 +170737222783,218,0 +170737222831,218,0 +170737222879,218,0 +170737222927,218,0 +170737222977,219,0 +170737223027,219,0 +170737223074,221,0 +170737223122,224,0 +170737223172,226,0 +170737223220,227,0 +170737223268,227,0 +170737223317,242,0 +170737223365,221,0 +170737223413,218,0 +170737223463,218,0 +170737223511,218,0 +170737223559,218,0 +170737223607,218,0 +170737223655,218,0 +170737223703,218,0 +170737223751,218,0 +170737223799,218,0 +170737223847,219,0 +170737223896,220,0 +170737223946,221,0 +170737223994,223,0 +170737224042,227,0 +170737224091,229,0 +170737224139,232,0 +170737224189,243,0 +170737224237,224,0 +170737224285,219,0 +170737224333,219,0 +170737224381,219,0 +170737224429,219,0 +170737224476,219,0 +170737224524,219,0 +170737224574,219,0 +170737224622,219,0 +170737224671,219,0 +170737224721,219,0 +170737224770,219,0 +170737224820,219,0 +170737224869,219,0 +170737224917,220,0 +170737224965,223,0 +170737225013,239,0 +170737225063,242,0 +170737225111,220,0 +170737225159,218,0 +170737225207,219,0 +170737225256,218,0 +170737225304,218,0 +170737225352,219,0 +170737225402,219,0 +170737225450,220,0 +170737225499,221,0 +170737225547,222,0 +170737225597,226,0 +170737225646,227,0 +170737225694,228,0 +170737225742,231,0 +170737225790,233,0 +170737225838,232,0 +170737225886,234,0 +170737225935,224,0 +170737225983,219,0 +170737226031,218,0 +170737226081,218,0 +170737226129,218,0 +170737226178,218,0 +170737226228,219,0 +170737226277,218,0 +170737226325,219,0 +170737226375,219,0 +170737226423,220,0 +170737226472,221,0 +170737226520,223,0 +170737226568,225,0 +170737226616,228,0 +170737226664,231,0 +170737226712,230,0 +170737226760,244,0 +170737226807,224,0 +170737226855,219,0 +170737226903,219,0 +170737226951,219,0 +170737226999,219,0 +170737227047,219,0 +170737227097,219,0 +170737227144,219,0 +170737227192,219,0 +170737227242,219,0 +170737227290,219,0 +170737227339,218,0 +170737227387,219,0 +170737227435,219,0 +170737227483,219,0 +170737227533,222,0 +170737227581,240,0 +170737227630,243,0 +170737227680,221,0 +170737227728,218,0 +170737227775,218,0 +170737227823,218,0 +170737227871,219,0 +170737227919,219,0 +170737227967,218,0 +170737228015,218,0 +170737228063,218,0 +170737228111,218,0 +170737228159,218,0 +170737228208,218,0 +170737228258,218,0 +170737228306,218,0 +170737228354,218,0 +170737228403,220,0 +170737228451,239,0 +170737228499,242,0 +170737228547,219,0 +170737228595,218,0 +170737228644,218,0 +170737228692,218,0 +170737228742,218,0 +170737228790,218,0 +170737228839,218,0 +170737228889,218,0 +170737228938,218,0 +170737228986,218,0 +170737229034,220,0 +170737229084,221,0 +170737229132,223,0 +170737229181,225,0 +170737229229,228,0 +170737229277,229,0 +170737229325,239,0 +170737229373,223,0 +170737229421,218,0 +170737229469,218,0 +170737229517,218,0 +170737229566,218,0 +170737229614,218,0 +170737229664,218,0 +170737229712,218,0 +170737229760,218,0 +170737229808,218,0 +170737229855,218,0 +170737229903,218,0 +170737229951,218,0 +170737230001,218,0 +170737230049,218,0 +170737230097,220,0 +170737230145,224,0 +170737230193,242,0 +170737230241,224,0 +170737230290,219,0 +170737230338,219,0 +170737230388,218,0 +170737230437,218,0 +170737230485,219,0 +170737230533,218,0 +170737230581,218,0 +170737230631,219,0 +170737230679,218,0 +170737230726,219,0 +170737230776,220,0 +170737230824,221,0 +170737230872,223,0 +170737230920,225,0 +170737230970,229,0 +170737231018,243,0 +170737231066,242,0 +170737231115,220,0 +170737231163,218,0 +170737231211,218,0 +170737231261,218,0 +170737231309,218,0 +170737231356,218,0 +170737231406,218,0 +170737231455,219,0 +170737231503,219,0 +170737231551,219,0 +170737231599,220,0 +170737231649,222,0 +170737231697,225,0 +170737231745,227,0 +170737231793,229,0 +170737231841,232,0 +170737231889,238,0 +170737231938,241,0 +170737231986,219,0 +170737232036,218,0 +170737232084,218,0 +170737232132,218,0 +170737232181,219,0 +170737232229,218,0 +170737232277,219,0 +170737232326,219,0 +170737232374,220,0 +170737232424,221,0 +170737232473,222,0 +170737232523,224,0 +170737232571,227,0 +170737232619,230,0 +170737232667,231,0 +170737232715,233,0 +170737232764,237,0 +170737232812,223,0 +170737232860,219,0 +170737232908,219,0 +170737232958,218,0 +170737233006,218,0 +170737233055,218,0 +170737233103,218,0 +170737233151,218,0 +170737233199,219,0 +170737233249,218,0 +170737233297,219,0 +170737233346,219,0 +170737233394,221,0 +170737233442,221,0 +170737233490,224,0 +170737233540,227,0 +170737233588,237,0 +170737233637,242,0 +170737233685,222,0 +170737233735,219,0 +170737233783,219,0 +170737233831,219,0 +170737233879,219,0 +170737233928,218,0 +170737233976,219,0 +170737234024,219,0 +170737234073,218,0 +170737234121,219,0 +170737234169,220,0 +170737234219,221,0 +170737234267,223,0 +170737234317,226,0 +170737234365,228,0 +170737234413,231,0 +170737234460,239,0 +170737234508,240,0 +170737234556,219,0 +170737234606,219,0 +170737234654,219,0 +170737234702,219,0 +170737234750,219,0 +170737234798,219,0 +170737234847,219,0 +170737234895,219,0 +170737234943,219,0 +170737234993,220,0 +170737235042,221,0 +170737235092,221,0 +170737235140,225,0 +170737235188,228,0 +170737235237,230,0 +170737235287,231,0 +170737235335,242,0 +170737235383,223,0 +170737235432,219,0 +170737235480,219,0 +170737235530,219,0 +170737235579,218,0 +170737235627,219,0 +170737235677,218,0 +170737235725,219,0 +170737235773,219,0 +170737235822,218,0 +170737235872,220,0 +170737235920,221,0 +170737235968,222,0 +170737236016,224,0 +170737236064,226,0 +170737236113,229,0 +170737236161,239,0 +170737236211,241,0 +170737236259,221,0 +170737236307,218,0 +170737236355,218,0 +170737236403,218,0 +170737236451,218,0 +170737236499,218,0 +170737236547,219,0 +170737236596,220,0 +170737236646,220,0 +170737236694,221,0 +170737236743,222,0 +170737236791,225,0 +170737236839,227,0 +170737236889,229,0 +170737236937,231,0 +170737236985,231,0 +170737237033,239,0 +170737237082,240,0 +170737237132,218,0 +170737237180,218,0 +170737237228,218,0 +170737237276,218,0 +170737237324,218,0 +170737237372,218,0 +170737237420,218,0 +170737237468,218,0 +170737237516,218,0 +170737237564,218,0 +170737237613,220,0 +170737237663,222,0 +170737237711,224,0 +170737237760,226,0 +170737237808,228,0 +170737237856,230,0 +170737237904,240,0 +170737237952,226,0 +170737238000,223,0 +170737238048,223,0 +170737238096,223,0 +170737238144,223,0 +170737238192,223,0 +170737238240,223,0 +170737238289,226,0 +170737238339,226,0 +170737238387,225,0 +170737238436,220,0 +170737238486,219,0 +170737238534,220,0 +170737238582,222,0 +170737238630,225,0 +170737238678,226,0 +170737238726,235,0 +170737238774,241,0 +170737238821,223,0 +170737238871,219,0 +170737238921,219,0 +170737238970,219,0 +170737239018,219,0 +170737239066,219,0 +170737239115,219,0 +170737239163,219,0 +170737239213,219,0 +170737239261,220,0 +170737239309,221,0 +170737239357,221,0 +170737239406,224,0 +170737239456,226,0 +170737239504,228,0 +170737239552,230,0 +170737239600,239,0 +170737239648,240,0 +170737239696,220,0 +170737239745,218,0 +170737239793,219,0 +170737239841,219,0 +170737239889,219,0 +170737239937,219,0 +170737239985,219,0 +170737240034,219,0 +170737240082,219,0 +170737240132,219,0 +170737240180,219,0 +170737240229,221,0 +170737240277,222,0 +170737240327,224,0 +170737240376,226,0 +170737240426,229,0 +170737240474,241,0 +170737240523,223,0 +170737240573,219,0 +170737240622,219,0 +170737240670,219,0 +170737240718,219,0 +170737240766,219,0 +170737240814,219,0 +170737240862,220,0 +170737240910,221,0 +170737240958,221,0 +170737241008,222,0 +170737241057,223,0 +170737241105,226,0 +170737241155,227,0 +170737241204,230,0 +170737241254,230,0 +170737241302,247,0 +170737241350,241,0 +170737241398,222,0 +170737241446,219,0 +170737241493,219,0 +170737241541,219,0 +170737241589,218,0 +170737241637,219,0 +170737241685,219,0 +170737241733,219,0 +170737241783,219,0 +170737241831,220,0 +170737241879,221,0 +170737241928,221,0 +170737241976,223,0 +170737242024,226,0 +170737242072,228,0 +170737242120,230,0 +170737242168,263,0 +170737242218,250,0 +170737242265,221,0 +170737242313,219,0 +170737242361,219,0 +170737242410,218,0 +170737242459,219,0 +170737242509,218,0 +170737242556,219,0 +170737242604,219,0 +170737242652,219,0 +170737242700,219,0 +170737242748,219,0 +170737242796,219,0 +170737242846,220,0 +170737242894,222,0 +170737242942,225,0 +170737242990,228,0 +170737243039,239,0 +170737243087,226,0 +170737243135,219,0 +170737243183,218,0 +170737243233,219,0 +170737243282,219,0 +170737243330,219,0 +170737243378,219,0 +170737243428,219,0 +170737243477,220,0 +170737243525,221,0 +170737243574,221,0 +170737243622,225,0 +170737243670,227,0 +170737243718,230,0 +170737243768,231,0 +170737243816,233,0 +170737243864,230,0 +170737243913,243,0 +170737243961,224,0 +170737244011,219,0 +170737244060,219,0 +170737244108,219,0 +170737244156,219,0 +170737244206,219,0 +170737244255,219,0 +170737244305,219,0 +170737244353,219,0 +170737244402,219,0 +170737244450,219,0 +170737244498,219,0 +170737244546,220,0 +170737244595,223,0 +170737244645,226,0 +170737244693,228,0 +170737244742,252,0 +170737244790,243,0 +170737244838,220,0 +170737244886,219,0 +170737244934,219,0 +170737244982,219,0 +170737245030,219,0 +170737245078,218,0 +170737245128,218,0 +170737245176,219,0 +170737245224,219,0 +170737245273,219,0 +170737245323,220,0 +170737245371,220,0 +170737245419,222,0 +170737245467,224,0 +170737245514,227,0 +170737245564,222,0 +170737245612,241,0 +170737245660,242,0 +170737245708,220,0 +170737245755,220,0 +170737245805,220,0 +170737245853,220,0 +170737245902,220,0 +170737245950,219,0 +170737245998,219,0 +170737246047,219,0 +170737246097,219,0 +170737246145,219,0 +170737246193,220,0 +170737246241,220,0 +170737246288,220,0 +170737246336,223,0 +170737246384,226,0 +170737246432,229,0 +170737246480,242,0 +170737246528,223,0 +170737246577,219,0 +170737246625,219,0 +170737246673,219,0 +170737246721,219,0 +170737246769,219,0 +170737246817,219,0 +170737246865,219,0 +170737246913,219,0 +170737246961,220,0 +170737247009,221,0 +170737247057,221,0 +170737247104,223,0 +170737247152,226,0 +170737247200,229,0 +170737247248,230,0 +170737247296,231,0 +170737247344,243,0 +170737247392,223,0 +170737247440,218,0 +170737247488,219,0 +170737247535,218,0 +170737247583,218,0 +170737247631,219,0 +170737247679,219,0 +170737247727,218,0 +170737247775,218,0 +170737247824,218,0 +170737247872,219,0 +170737247920,219,0 +170737247968,220,0 +170737248016,222,0 +170737248064,224,0 +170737248112,227,0 +170737248160,229,0 +170737248208,243,0 +170737248256,223,0 +170737248303,219,0 +170737248351,219,0 +170737248399,219,0 +170737248447,219,0 +170737248495,219,0 +170737248543,219,0 +170737248591,219,0 +170737248639,220,0 +170737248687,221,0 +170737248736,223,0 +170737248784,223,0 +170737248832,226,0 +170737248880,227,0 +170737248928,231,0 +170737248976,231,0 +170737249023,242,0 +170737249071,242,0 +170737249119,221,0 +170737249167,219,0 +170737249215,219,0 +170737249265,218,0 +170737249312,218,0 +170737249362,219,0 +170737249411,218,0 +170737249459,218,0 +170737249509,218,0 +170737249558,218,0 +170737249606,219,0 +170737249654,220,0 +170737249702,222,0 +170737249750,225,0 +170737249798,227,0 +170737249845,230,0 +170737249893,241,0 +170737249941,242,0 +170737249989,220,0 +170737250037,219,0 +170737250085,219,0 +170737250133,219,0 +170737250181,219,0 +170737250230,219,0 +170737250278,219,0 +170737250326,219,0 +170737250374,219,0 +170737250422,219,0 +170737250470,221,0 +170737250517,222,0 +170737250565,226,0 +170737250613,227,0 +170737250661,229,0 +170737250709,231,0 +170737250757,243,0 +170737250805,221,0 +170737250853,218,0 +170737250901,218,0 +170737250949,218,0 +170737250996,218,0 +170737251044,218,0 +170737251092,218,0 +170737251140,218,0 +170737251190,218,0 +170737251238,218,0 +170737251287,218,0 +170737251335,218,0 +170737251383,218,0 +170737251431,218,0 +170737251481,218,0 +170737251529,218,0 +170737251577,219,0 +170737251626,240,0 +170737251674,222,0 +170737251724,218,0 +170737251772,218,0 +170737251820,218,0 +170737251869,218,0 +170737251919,218,0 +170737251967,218,0 +170737252016,218,0 +170737252064,218,0 +170737252112,218,0 +170737252160,218,0 +170737252210,218,0 +170737252259,218,0 +170737252307,218,0 +170737252357,219,0 +170737252406,220,0 +170737252454,236,0 +170737252502,242,0 +170737252552,223,0 +170737252601,218,0 +170737252651,218,0 +170737252700,218,0 +170737252748,218,0 +170737252796,218,0 +170737252844,219,0 +170737252893,218,0 +170737252943,218,0 +170737252991,219,0 +170737253039,219,0 +170737253087,218,0 +170737253136,219,0 +170737253184,218,0 +170737253234,219,0 +170737253283,223,0 +170737253331,238,0 +170737253381,230,0 +170737253429,220,0 +170737253477,219,0 +170737253526,219,0 +170737253576,220,0 +170737253623,219,0 +170737253671,219,0 +170737253719,219,0 +170737253767,221,0 +170737253815,221,0 +170737253863,222,0 +170737253911,223,0 +170737253959,225,0 +170737254006,228,0 +170737254054,229,0 +170737254104,231,0 +170737254153,233,0 +170737254201,238,0 +170737254249,223,0 +170737254299,219,0 +170737254348,219,0 +170737254396,219,0 +170737254444,219,0 +170737254492,219,0 +170737254541,219,0 +170737254589,219,0 +170737254637,219,0 +170737254685,220,0 +170737254733,221,0 +170737254781,223,0 +170737254829,225,0 +170737254877,228,0 +170737254924,230,0 +170737254974,231,0 +170737255023,239,0 +170737255073,241,0 +170737255122,222,0 +170737255170,219,0 +170737255218,219,0 +170737255266,218,0 +170737255316,219,0 +170737255364,219,0 +170737255412,220,0 +170737255460,221,0 +170737255508,221,0 +170737255557,223,0 +170737255605,223,0 +170737255653,224,0 +170737255701,226,0 +170737255749,228,0 +170737255798,234,0 +170737255846,233,0 +170737255896,237,0 +170737255944,241,0 +170737255992,219,0 +170737256042,218,0 +170737256090,218,0 +170737256138,218,0 +170737256186,218,0 +170737256233,218,0 +170737256283,218,0 +170737256331,218,0 +170737256379,218,0 +170737256427,218,0 +170737256474,219,0 +170737256522,219,0 +170737256570,222,0 +170737256618,225,0 +170737256666,227,0 +170737256714,229,0 +170737256762,239,0 +170737256810,232,0 +170737256858,219,0 +170737256905,219,0 +170737256953,218,0 +170737257001,218,0 +170737257049,219,0 +170737257097,218,0 +170737257145,218,0 +170737257193,219,0 +170737257241,218,0 +170737257288,219,0 +170737257338,219,0 +170737257386,219,0 +170737257434,221,0 +170737257482,223,0 +170737257529,225,0 +170737257577,228,0 +170737257625,242,0 +170737257675,222,0 +170737257722,220,0 +170737257772,219,0 +170737257821,219,0 +170737257869,219,0 +170737257917,219,0 +170737257965,219,0 +170737258013,219,0 +170737258061,219,0 +170737258109,219,0 +170737258157,220,0 +170737258205,222,0 +170737258253,223,0 +170737258300,225,0 +170737258348,227,0 +170737258396,229,0 +170737258446,230,0 +170737258495,241,0 +170737258543,222,0 +170737258591,218,0 +170737258639,217,0 +170737258689,217,0 +170737258737,217,0 +170737258785,217,0 +170737258833,217,0 +170737258882,217,0 +170737258932,217,0 +170737258981,217,0 +170737259029,218,0 +170737259077,219,0 +170737259125,220,0 +170737259175,222,0 +170737259223,224,0 +170737259271,227,0 +170737259319,239,0 +170737259366,241,0 +170737259414,221,0 +170737259464,219,0 +170737259512,219,0 +170737259561,219,0 +170737259611,219,0 +170737259659,219,0 +170737259707,219,0 +170737259756,219,0 +170737259804,219,0 +170737259852,220,0 +170737259900,220,0 +170737259948,221,0 +170737259996,223,0 +170737260046,225,0 +170737260094,227,0 +170737260142,229,0 +170737260190,241,0 +170737260239,233,0 +170737260289,219,0 +170737260337,219,0 +170737260386,218,0 +170737260436,218,0 +170737260484,218,0 +170737260533,218,0 +170737260581,218,0 +170737260631,218,0 +170737260679,218,0 +170737260728,219,0 +170737260776,221,0 +170737260824,221,0 +170737260872,224,0 +170737260922,226,0 +170737260971,227,0 +170737261019,230,0 +170737261068,242,0 +170737261116,224,0 +170737261164,219,0 +170737261212,219,0 +170737261262,219,0 +170737261310,219,0 +170737261358,219,0 +170737261406,219,0 +170737261454,220,0 +170737261502,221,0 +170737261550,221,0 +170737261598,221,0 +170737261646,226,0 +170737261694,227,0 +170737261743,229,0 +170737261793,231,0 +170737261842,233,0 +170737261890,238,0 +170737261938,242,0 +170737261986,221,0 +170737262036,219,0 +170737262083,219,0 +170737262131,218,0 +170737262179,219,0 +170737262227,219,0 +170737262277,218,0 +170737262326,218,0 +170737262374,219,0 +170737262422,219,0 +170737262470,221,0 +170737262520,221,0 +170737262569,225,0 +170737262617,226,0 +170737262667,229,0 +170737262715,231,0 +170737262763,241,0 +170737262811,235,0 +170737262859,218,0 +170737262907,218,0 +170737262955,218,0 +170737263004,218,0 +170737263052,218,0 +170737263100,218,0 +170737263148,218,0 +170737263196,218,0 +170737263245,218,0 +170737263293,219,0 +170737263341,220,0 +170737263389,220,0 +170737263437,223,0 +170737263485,225,0 +170737263532,228,0 +170737263580,230,0 +170737263628,240,0 +170737263676,236,0 +170737263724,219,0 +170737263772,219,0 +170737263821,218,0 +170737263871,219,0 +170737263918,219,0 +170737263966,219,0 +170737264014,219,0 +170737264062,219,0 +170737264110,219,0 +170737264158,218,0 +170737264206,219,0 +170737264254,220,0 +170737264303,221,0 +170737264352,224,0 +170737264400,227,0 +170737264448,230,0 +170737264496,246,0 +170737264544,221,0 +170737264594,219,0 +170737264641,218,0 +170737264689,218,0 +170737264739,218,0 +170737264787,219,0 +170737264835,218,0 +170737264883,219,0 +170737264930,219,0 +170737264978,220,0 +170737265026,221,0 +170737265074,222,0 +170737265122,225,0 +170737265170,226,0 +170737265218,230,0 +170737265267,231,0 +170737265315,238,0 +170737265363,242,0 +170737265411,223,0 +170737265461,218,0 +170737265508,218,0 +170737265557,219,0 +170737265604,218,0 +170737265652,218,0 +170737265700,218,0 +170737265748,218,0 +170737265798,218,0 +170737265846,219,0 +170737265893,219,0 +170737265941,221,0 +170737265991,224,0 +170737266039,223,0 +170737266088,227,0 +170737266136,228,0 +170737266184,239,0 +170737266232,243,0 +170737266280,406,0 +170737266332,412,0 +170737266385,414,0 +170737266438,414,0 +170737266490,415,0 +170737266543,415,0 +170737266596,218,0 +170737266658,218,0 +170737266707,220,0 +170737266755,222,0 +170737266805,224,0 +170737266853,227,0 +170737266901,229,0 +170737266948,231,0 +170737266996,232,0 +170737267044,240,0 +170737267094,243,0 +170737267142,220,0 +170737267191,219,0 +170737267239,219,0 +170737267287,219,0 +170737267335,219,0 +170737267383,219,0 +170737267431,218,0 +170737267480,219,0 +170737267528,218,0 +170737267576,219,0 +170737267624,219,0 +170737267672,221,0 +170737267720,220,0 +170737267768,222,0 +170737267817,225,0 +170737267865,228,0 +170737267913,238,0 +170737267961,233,0 +170737268010,219,0 +170737268058,218,0 +170737268106,218,0 +170737268154,218,0 +170737268204,218,0 +170737268252,218,0 +170737268300,218,0 +170737268349,218,0 +170737268397,218,0 +170737268445,219,0 +170737268495,221,0 +170737268543,223,0 +170737268590,225,0 +170737268638,226,0 +170737268686,229,0 +170737268736,231,0 +170737268783,242,0 +170737268831,224,0 +170737268879,219,0 +170737268927,219,0 +170737268975,219,0 +170737269023,219,0 +170737269071,219,0 +170737269120,219,0 +170737269168,219,0 +170737269216,219,0 +170737269264,219,0 +170737269312,219,0 +170737269360,219,0 +170737269409,219,0 +170737269459,219,0 +170737269506,221,0 +170737269554,224,0 +170737269602,230,0 +170737269650,241,0 +170737269698,226,0 +170737269746,220,0 +170737269794,219,0 +170737269842,219,0 +170737269889,219,0 +170737269937,219,0 +170737269987,219,0 +170737270036,219,0 +170737270086,219,0 +170737270134,219,0 +170737270182,219,0 +170737270230,219,0 +170737270277,220,0 +170737270325,221,0 +170737270373,224,0 +170737270421,226,0 +170737270469,237,0 +170737270517,241,0 +170737270566,220,0 +170737270614,217,0 +170737270662,217,0 +170737270710,217,0 +170737270758,217,0 +170737270806,217,0 +170737270853,217,0 +170737270903,217,0 +170737270951,217,0 +170737270999,217,0 +170737271047,218,0 +170737271095,219,0 +170737271142,221,0 +170737271190,224,0 +170737271238,227,0 +170737271286,228,0 +170737271334,240,0 +170737271382,243,0 +170737271430,220,0 +170737271478,219,0 +170737271527,219,0 +170737271575,219,0 +170737271623,219,0 +170737271671,220,0 +170737271719,220,0 +170737271766,220,0 +170737271814,221,0 +170737271862,222,0 +170737271910,223,0 +170737271958,224,0 +170737272006,228,0 +170737272054,229,0 +170737272102,232,0 +170737272150,232,0 +170737272199,242,0 +170737272247,239,0 +170737272295,220,0 +170737272343,219,0 +170737272391,219,0 +170737272440,219,0 +170737272490,219,0 +170737272537,219,0 +170737272585,219,0 +170737272633,219,0 +170737272681,219,0 +170737272729,219,0 +170737272777,219,0 +170737272825,220,0 +170737272873,219,0 +170737272921,220,0 +170737272968,224,0 +170737273016,226,0 +170737273064,247,0 +170737273112,228,0 +170737273162,220,0 +170737273211,219,0 +170737273259,219,0 +170737273307,219,0 +170737273355,219,0 +170737273403,219,0 +170737273450,219,0 +170737273500,219,0 +170737273548,219,0 +170737273595,219,0 +170737273645,219,0 +170737273693,219,0 +170737273741,219,0 +170737273789,221,0 +170737273836,224,0 +170737273884,233,0 +170737273932,245,0 +170737273980,225,0 +170737274028,220,0 +170737274076,219,0 +170737274124,219,0 +170737274172,219,0 +170737274219,219,0 +170737274267,219,0 +170737274315,219,0 +170737274363,219,0 +170737274411,219,0 +170737274459,219,0 +170737274507,219,0 +170737274555,219,0 +170737274603,221,0 +170737274652,224,0 +170737274700,226,0 +170737274748,238,0 +170737274797,243,0 +170737274845,223,0 +170737274895,220,0 +170737274943,220,0 +170737274991,220,0 +170737275038,220,0 +170737275086,219,0 +170737275134,220,0 +170737275182,220,0 +170737275230,220,0 +170737275278,221,0 +170737275326,222,0 +170737275374,223,0 +170737275422,226,0 +170737275472,229,0 +170737275520,229,0 +170737275569,229,0 +170737275619,238,0 +170737275666,240,0 +170737275716,220,0 +170737275766,219,0 +170737275815,218,0 +170737275863,218,0 +170737275911,218,0 +170737275959,218,0 +170737276007,219,0 +170737276055,218,0 +170737276104,218,0 +170737276152,218,0 +170737276200,219,0 +170737276248,220,0 +170737276296,221,0 +170737276344,224,0 +170737276393,226,0 +170737276441,230,0 +170737276491,241,0 +170737276539,233,0 +170737276587,219,0 +170737276635,219,0 +170737276682,219,0 +170737276730,219,0 +170737276778,219,0 +170737276826,219,0 +170737276874,219,0 +170737276922,219,0 +170737276970,219,0 +170737277018,220,0 +170737277066,221,0 +170737277114,223,0 +170737277164,225,0 +170737277213,229,0 +170737277263,230,0 +170737277312,233,0 +170737277360,241,0 +170737277408,222,0 +170737277456,218,0 +170737277506,218,0 +170737277554,218,0 +170737277603,218,0 +170737277651,218,0 +170737277699,218,0 +170737277747,218,0 +170737277795,218,0 +170737277845,219,0 +170737277893,219,0 +170737277940,221,0 +170737277990,222,0 +170737278038,224,0 +170737278086,227,0 +170737278134,229,0 +170737278182,243,0 +170737278230,243,0 +170737278278,221,0 +170737278327,219,0 +170737278375,219,0 +170737278425,218,0 +170737278473,218,0 +170737278520,218,0 +170737278568,218,0 +170737278618,219,0 +170737278666,219,0 +170737278715,219,0 +170737278763,220,0 +170737278811,220,0 +170737278861,223,0 +170737278909,225,0 +170737278957,228,0 +170737279005,230,0 +170737279053,239,0 +170737279102,241,0 +170737279150,218,0 +170737279198,217,0 +170737279246,218,0 +170737279294,217,0 +170737279344,217,0 +170737279392,218,0 +170737279440,218,0 +170737279488,219,0 +170737279536,221,0 +170737279585,222,0 +170737279633,222,0 +170737279681,224,0 +170737279729,226,0 +170737279777,228,0 +170737279825,229,0 +170737279873,231,0 +170737279921,240,0 +170737279969,223,0 +170737280017,219,0 +170737280066,219,0 +170737280114,218,0 +170737280162,219,0 +170737280210,218,0 +170737280258,219,0 +170737280306,218,0 +170737280354,218,0 +170737280402,219,0 +170737280450,219,0 +170737280498,218,0 +170737280546,219,0 +170737280594,218,0 +170737280642,219,0 +170737280691,219,0 +170737280739,226,0 +170737280789,241,0 +170737280837,223,0 +170737280885,219,0 +170737280932,218,0 +170737280980,218,0 +170737281028,218,0 +170737281076,219,0 +170737281124,218,0 +170737281172,218,0 +170737281220,219,0 +170737281268,219,0 +170737281316,220,0 +170737281363,221,0 +170737281411,223,0 +170737281459,225,0 +170737281507,228,0 +170737281557,231,0 +170737281604,234,0 +170737281652,242,0 +170737281700,224,0 +170737281748,219,0 +170737281796,218,0 +170737281844,219,0 +170737281892,218,0 +170737281940,219,0 +170737281989,219,0 +170737282037,220,0 +170737282087,221,0 +170737282135,221,0 +170737282183,222,0 +170737282231,225,0 +170737282279,224,0 +170737282327,230,0 +170737282376,230,0 +170737282426,231,0 +170737282474,236,0 +170737282521,238,0 +170737282569,221,0 +170737282619,219,0 +170737282667,218,0 +170737282715,219,0 +170737282764,219,0 +170737282812,219,0 +170737282860,219,0 +170737282910,219,0 +170737282959,219,0 +170737283007,221,0 +170737283057,221,0 +170737283105,224,0 +170737283154,226,0 +170737283204,229,0 +170737283252,231,0 +170737283300,233,0 +170737283348,240,0 +170737283397,223,0 +170737283445,219,0 +170737283495,219,0 +170737283543,218,0 +170737283591,219,0 +170737283640,219,0 +170737283688,218,0 +170737283738,218,0 +170737283786,219,0 +170737283834,218,0 +170737283882,219,0 +170737283930,219,0 +170737283978,219,0 +170737284027,220,0 +170737284075,220,0 +170737284123,224,0 +170737284171,228,0 +170737284219,244,0 +170737284267,224,0 +170737284317,219,0 +170737284366,218,0 +170737284414,218,0 +170737284464,218,0 +170737284512,218,0 +170737284561,218,0 +170737284609,218,0 +170737284659,219,0 +170737284707,218,0 +170737284756,219,0 +170737284804,219,0 +170737284852,221,0 +170737284900,222,0 +170737284948,224,0 +170737284998,228,0 +170737285046,239,0 +170737285095,240,0 +170737285143,221,0 +170737285191,218,0 +170737285239,218,0 +170737285287,218,0 +170737285337,218,0 +170737285385,218,0 +170737285434,219,0 +170737285482,219,0 +170737285530,219,0 +170737285580,218,0 +170737285627,218,0 +170737285677,218,0 +170737285725,218,0 +170737285773,218,0 +170737285822,219,0 +170737285872,220,0 +170737285920,242,0 +170737285969,222,0 +170737286019,219,0 +170737286068,218,0 +170737286116,218,0 +170737286166,218,0 +170737286214,218,0 +170737286262,219,0 +170737286310,219,0 +170737286358,220,0 +170737286407,222,0 +170737286455,223,0 +170737286505,225,0 +170737286553,229,0 +170737286601,231,0 +170737286649,231,0 +170737286698,233,0 +170737286746,237,0 +170737286796,241,0 +170737286844,222,0 +170737286892,219,0 +170737286941,219,0 +170737286991,219,0 +170737287039,219,0 +170737287087,219,0 +170737287135,219,0 +170737287184,219,0 +170737287234,219,0 +170737287282,219,0 +170737287331,219,0 +170737287379,220,0 +170737287429,221,0 +170737287478,222,0 +170737287526,226,0 +170737287574,229,0 +170737287622,240,0 +170737287670,242,0 +170737287718,221,0 +170737287766,219,0 +170737287816,219,0 +170737287863,219,0 +170737287912,219,0 +170737287959,219,0 +170737288007,219,0 +170737288055,219,0 +170737288104,219,0 +170737288151,219,0 +170737288201,219,0 +170737288249,219,0 +170737288297,220,0 +170737288345,221,0 +170737288393,224,0 +170737288441,227,0 +170737288489,240,0 +170737288538,234,0 +170737288588,220,0 +170737288637,219,0 +170737288687,220,0 +170737288736,219,0 +170737288784,220,0 +170737288832,219,0 +170737288880,219,0 +170737288928,219,0 +170737288978,219,0 +170737289027,220,0 +170737289075,220,0 +170737289125,222,0 +170737289174,225,0 +170737289224,227,0 +170737289272,230,0 +170737289321,241,0 +170737289369,244,0 +170737289417,222,0 +170737289465,219,0 +170737289515,219,0 +170737289563,219,0 +170737289611,219,0 +170737289659,220,0 +170737289707,222,0 +170737289755,222,0 +170737289804,222,0 +170737289854,224,0 +170737289903,227,0 +170737289953,230,0 +170737290002,231,0 +170737290050,234,0 +170737290098,234,0 +170737290146,236,0 +170737290194,240,0 +170737290242,242,0 +170737290290,221,0 +170737290338,219,0 +170737290386,219,0 +170737290435,219,0 +170737290485,219,0 +170737290533,219,0 +170737290581,219,0 +170737290630,219,0 +170737290679,219,0 +170737290727,219,0 +170737290775,219,0 +170737290823,220,0 +170737290871,221,0 +170737290919,224,0 +170737290969,227,0 +170737291018,230,0 +170737291068,241,0 +170737291117,224,0 +170737291165,219,0 +170737291213,219,0 +170737291261,218,0 +170737291309,218,0 +170737291358,218,0 +170737291406,219,0 +170737291456,219,0 +170737291504,219,0 +170737291552,219,0 +170737291601,219,0 +170737291649,220,0 +170737291697,221,0 +170737291747,223,0 +170737291796,227,0 +170737291846,231,0 +170737291895,240,0 +170737291943,242,0 +170737291991,220,0 +170737292041,218,0 +170737292089,218,0 +170737292137,218,0 +170737292185,219,0 +170737292232,218,0 +170737292280,218,0 +170737292328,219,0 +170737292376,219,0 +170737292424,220,0 +170737292472,221,0 +170737292519,222,0 +170737292567,224,0 +170737292615,226,0 +170737292663,228,0 +170737292711,231,0 +170737292759,241,0 +170737292807,242,0 +170737292857,219,0 +170737292906,218,0 +170737292954,218,0 +170737293002,218,0 +170737293050,218,0 +170737293098,218,0 +170737293146,218,0 +170737293195,218,0 +170737293243,219,0 +170737293293,218,0 +170737293341,218,0 +170737293390,218,0 +170737293440,218,0 +170737293487,220,0 +170737293535,222,0 +170737293583,225,0 +170737293633,241,0 +170737293681,226,0 +170737293729,219,0 +170737293777,218,0 +170737293825,218,0 +170737293873,218,0 +170737293921,218,0 +170737293969,218,0 +170737294017,218,0 +170737294065,218,0 +170737294113,218,0 +170737294160,218,0 +170737294210,218,0 +170737294259,218,0 +170737294307,219,0 +170737294357,218,0 +170737294405,219,0 +170737294453,230,0 +170737294501,241,0 +170737294550,223,0 +170737294598,218,0 +170737294646,219,0 +170737294694,218,0 +170737294742,218,0 +170737294790,218,0 +170737294838,219,0 +170737294886,218,0 +170737294936,218,0 +170737294984,218,0 +170737295032,219,0 +170737295081,219,0 +170737295129,220,0 +170737295177,221,0 +170737295225,224,0 +170737295273,226,0 +170737295321,238,0 +170737295369,243,0 +170737295417,220,0 +170737295465,218,0 +170737295513,218,0 +170737295561,218,0 +170737295609,218,0 +170737295657,218,0 +170737295705,218,0 +170737295754,218,0 +170737295802,218,0 +170737295850,218,0 +170737295900,218,0 +170737295948,219,0 +170737295997,220,0 +170737296045,221,0 +170737296095,223,0 +170737296143,227,0 +170737296191,241,0 +170737296240,243,0 +170737296288,220,0 +170737296338,218,0 +170737296387,218,0 +170737296435,218,0 +170737296483,218,0 +170737296531,218,0 +170737296579,219,0 +170737296627,219,0 +170737296675,218,0 +170737296723,218,0 +170737296772,219,0 +170737296820,218,0 +170737296868,218,0 +170737296916,219,0 +170737296964,220,0 +170737297012,225,0 +170737297060,240,0 +170737297108,221,0 +170737297158,219,0 +170737297206,218,0 +170737297255,219,0 +170737297303,219,0 +170737297353,219,0 +170737297402,218,0 +170737297450,219,0 +170737297500,220,0 +170737297548,219,0 +170737297596,221,0 +170737297643,220,0 +170737297693,224,0 +170737297741,225,0 +170737297789,228,0 +170737297837,229,0 +170737297886,239,0 +170737297934,241,0 +170737297984,221,0 +170737298032,219,0 +170737298081,218,0 +170737298129,219,0 +170737298177,218,0 +170737298225,218,0 +170737298275,218,0 +170737298323,219,0 +170737298370,218,0 +170737298418,218,0 +170737298466,220,0 +170737298516,219,0 +170737298565,223,0 +170737298613,225,0 +170737298663,227,0 +170737298711,229,0 +170737298758,238,0 +170737298806,240,0 +170737298856,218,0 +170737298905,218,0 +170737298953,218,0 +170737299001,218,0 +170737299051,218,0 +170737299099,218,0 +170737299147,218,0 +170737299196,218,0 +170737299244,218,0 +170737299292,218,0 +170737299340,218,0 +170737299388,219,0 +170737299436,220,0 +170737299484,222,0 +170737299532,224,0 +170737299580,228,0 +170737299627,239,0 +170737299675,236,0 +170737299725,219,0 +170737299773,219,0 +170737299821,218,0 +170737299870,218,0 +170737299918,218,0 +170737299968,218,0 +170737300016,218,0 +170737300064,219,0 +170737300112,219,0 +170737300160,220,0 +170737300208,221,0 +170737300256,223,0 +170737300303,225,0 +170737300351,228,0 +170737300399,229,0 +170737300447,231,0 +170737300495,241,0 +170737300545,223,0 +170737300593,218,0 +170737300641,218,0 +170737300689,218,0 +170737300736,219,0 +170737300786,218,0 +170737300834,218,0 +170737300882,218,0 +170737300930,218,0 +170737300977,219,0 +170737301027,218,0 +170737301076,219,0 +170737301124,219,0 +170737301172,222,0 +170737301222,224,0 +170737301271,227,0 +170737301319,239,0 +170737301367,239,0 +170737301415,221,0 +170737301465,219,0 +170737301512,218,0 +170737301560,218,0 +170737301608,219,0 +170737301656,219,0 +170737301704,219,0 +170737301752,218,0 +170737301801,218,0 +170737301849,219,0 +170737301897,219,0 +170737301945,219,0 +170737301993,220,0 +170737302041,224,0 +170737302089,226,0 +170737302137,229,0 +170737302185,238,0 +170737302233,242,0 +170737302281,221,0 +170737302329,219,0 +170737302377,219,0 +170737302426,219,0 +170737302474,219,0 +170737302522,219,0 +170737302570,220,0 +170737302619,220,0 +170737302669,222,0 +170737302717,222,0 +170737302764,222,0 +170737302812,225,0 +170737302860,228,0 +170737302910,229,0 +170737302958,230,0 +170737303006,232,0 +170737303054,241,0 +170737303102,229,0 +170737303149,220,0 +170737303197,219,0 +170737303247,219,0 +170737303295,219,0 +170737303343,219,0 +170737303391,219,0 +170737303439,219,0 +170737303487,219,0 +170737303535,219,0 +170737303584,219,0 +170737303632,219,0 +170737303681,220,0 +170737303730,222,0 +170737303778,227,0 +170737303825,227,0 +170737303873,231,0 +170737303921,242,0 +170737303971,224,0 +170737304020,219,0 +170737304068,219,0 +170737304116,219,0 +170737304164,219,0 +170737304212,219,0 +170737304262,219,0 +170737304310,219,0 +170737304358,220,0 +170737304406,219,0 +170737304455,219,0 +170737304505,221,0 +170737304553,223,0 +170737304601,224,0 +170737304649,227,0 +170737304697,228,0 +170737304744,246,0 +170737304792,242,0 +170737304842,221,0 +170737304890,218,0 +170737304938,218,0 +170737304986,218,0 +170737305035,218,0 +170737305083,217,0 +170737305133,218,0 +170737305181,218,0 +170737305229,218,0 +170737305277,219,0 +170737305325,220,0 +170737305373,221,0 +170737305421,222,0 +170737305470,224,0 +170737305518,227,0 +170737305568,230,0 +170737305617,237,0 +170737305665,241,0 +170737305713,220,0 +170737305763,218,0 +170737305811,218,0 +170737305858,219,0 +170737305906,218,0 +170737305954,219,0 +170737306002,221,0 +170737306052,221,0 +170737306100,221,0 +170737306148,222,0 +170737306197,224,0 +170737306245,226,0 +170737306295,230,0 +170737306344,231,0 +170737306392,232,0 +170737306440,235,0 +170737306488,243,0 +170737306536,220,0 +170737306584,219,0 +170737306632,219,0 +170737306680,218,0 +170737306728,219,0 +170737306776,219,0 +170737306824,219,0 +170737306874,219,0 +170737306922,219,0 +170737306971,219,0 +170737307019,220,0 +170737307067,221,0 +170737307115,222,0 +170737307163,225,0 +170737307211,227,0 +170737307259,229,0 +170737307307,231,0 +170737307355,242,0 +170737307403,223,0 +170737307451,218,0 +170737307501,218,0 +170737307548,218,0 +170737307596,218,0 +170737307644,218,0 +170737307692,218,0 +170737307740,218,0 +170737307788,218,0 +170737307836,218,0 +170737307886,218,0 +170737307935,218,0 +170737307983,218,0 +170737308033,219,0 +170737308081,221,0 +170737308129,224,0 +170737308178,238,0 +170737308226,242,0 +170737308274,221,0 +170737308322,218,0 +170737308372,218,0 +170737308420,218,0 +170737308469,218,0 +170737308519,218,0 +170737308567,218,0 +170737308615,218,0 +170737308663,219,0 +170737308711,219,0 +170737308759,221,0 +170737308807,221,0 +170737308855,225,0 +170737308903,226,0 +170737308951,229,0 +170737308998,235,0 +170737309046,243,0 +170737309094,241,0 +170737309142,220,0 +170737309190,219,0 +170737309238,218,0 +170737309287,219,0 +170737309335,218,0 +170737309383,218,0 +170737309431,218,0 +170737309481,218,0 +170737309529,218,0 +170737309578,218,0 +170737309627,219,0 +170737309677,219,0 +170737309727,220,0 +170737309775,223,0 +170737309822,225,0 +170737309872,229,0 +170737309920,241,0 +170737309969,223,0 +170737310019,218,0 +170737310067,219,0 +170737310115,218,0 +170737310163,219,0 +170737310210,218,0 +170737310258,218,0 +170737310306,220,0 +170737310354,220,0 +170737310402,220,0 +170737310450,222,0 +170737310497,224,0 +170737310545,227,0 +170737310593,229,0 +170737310641,231,0 +170737310689,233,0 +170737310737,231,0 +170737310785,242,0 +170737310833,223,0 +170737310880,218,0 +170737310928,218,0 +170737310976,218,0 +170737311024,218,0 +170737311072,218,0 +170737311122,218,0 +170737311169,218,0 +170737311217,218,0 +170737311265,218,0 +170737311313,218,0 +170737311361,217,0 +170737311409,218,0 +170737311457,218,0 +170737311505,218,0 +170737311553,218,0 +170737311601,218,0 +170737311648,218,0 +170737311696,219,0 +170737311744,220,0 +170737311792,221,0 +170737311840,224,0 +170737311888,227,0 +170737311937,229,0 +170737311987,231,0 +170737312037,239,0 +170737312085,241,0 +170737312134,220,0 +170737312184,218,0 +170737312232,218,0 +170737312280,218,0 +170737312327,218,0 +170737312375,218,0 +170737312423,218,0 +170737312471,218,0 +170737312519,218,0 +170737312568,218,0 +170737312616,218,0 +170737312664,219,0 +170737312712,221,0 +170737312760,225,0 +170737312810,226,0 +170737312858,228,0 +170737312906,240,0 +170737312953,239,0 +170737313001,218,0 +170737313049,218,0 +170737313097,218,0 +170737313145,218,0 +170737313193,218,0 +170737313241,218,0 +170737313289,218,0 +170737313339,218,0 +170737313387,218,0 +170737313435,218,0 +170737313483,218,0 +170737313531,218,0 +170737313579,218,0 +170737313627,218,0 +170737313675,218,0 +170737313722,219,0 +170737313772,240,0 +170737313820,222,0 +170737313868,218,0 +170737313916,218,0 +170737313965,218,0 +170737314013,218,0 +170737314061,218,0 +170737314109,218,0 +170737314159,218,0 +170737314208,218,0 +170737314256,218,0 +170737314304,219,0 +170737314352,219,0 +170737314400,220,0 +170737314448,222,0 +170737314496,225,0 +170737314544,228,0 +170737314591,231,0 +170737314639,242,0 +170737314687,223,0 +170737314735,219,0 +170737314783,219,0 +170737314831,219,0 +170737314879,219,0 +170737314927,218,0 +170737314975,219,0 +170737315023,219,0 +170737315071,218,0 +170737315119,218,0 +170737315167,218,0 +170737315215,219,0 +170737315264,219,0 +170737315312,219,0 +170737315360,218,0 +170737315408,219,0 +170737315456,239,0 +170737315504,241,0 +170737315552,223,0 +170737315600,219,0 +170737315647,219,0 +170737315695,219,0 +170737315745,219,0 +170737315793,219,0 +170737315841,219,0 +170737315890,218,0 +170737315940,218,0 +170737315988,219,0 +170737316037,219,0 +170737316085,221,0 +170737316133,223,0 +170737316181,226,0 +170737316229,226,0 +170737316277,229,0 +170737316327,237,0 +170737316375,243,0 +170737316424,218,0 +170737316472,218,0 +170737316520,218,0 +170737316568,219,0 +170737316616,220,0 +170737316664,220,0 +170737316713,221,0 +170737316763,222,0 +170737316811,223,0 +170737316861,224,0 +170737316909,225,0 +170737316956,226,0 +170737317006,232,0 +170737317054,234,0 +170737317103,237,0 +170737317151,237,0 +170737317199,244,0 +170737317247,222,0 +170737317295,219,0 +170737317345,219,0 +170737317394,219,0 +170737317442,218,0 +170737317490,219,0 +170737317538,219,0 +170737317586,219,0 +170737317634,219,0 +170737317682,219,0 +170737317732,219,0 +170737317781,219,0 +170737317831,218,0 +170737317879,219,0 +170737317927,220,0 +170737317976,223,0 +170737318026,239,0 +170737318074,243,0 +170737318122,225,0 +170737318169,219,0 +170737318217,218,0 +170737318265,219,0 +170737318315,218,0 +170737318365,219,0 +170737318412,218,0 +170737318460,218,0 +170737318510,218,0 +170737318558,218,0 +170737318607,218,0 +170737318655,219,0 +170737318705,219,0 +170737318753,218,0 +170737318801,220,0 +170737318850,224,0 +170737318898,238,0 +170737318946,241,0 +170737318994,219,0 +170737319042,218,0 +170737319092,218,0 +170737319140,218,0 +170737319188,218,0 +170737319235,218,0 +170737319283,218,0 +170737319333,219,0 +170737319381,219,0 +170737319430,219,0 +170737319478,219,0 +170737319528,218,0 +170737319576,218,0 +170737319624,218,0 +170737319672,221,0 +170737319720,227,0 +170737319767,240,0 +170737319815,221,0 +170737319865,218,0 +170737319914,218,0 +170737319964,218,0 +170737320012,218,0 +170737320060,218,0 +170737320108,218,0 +170737320157,218,0 +170737320205,218,0 +170737320253,218,0 +170737320301,218,0 +170737320349,218,0 +170737320397,220,0 +170737320445,221,0 +170737320493,224,0 +170737320541,227,0 +170737320588,231,0 +170737320638,243,0 +170737320686,224,0 +170737320734,219,0 +170737320782,219,0 +170737320829,219,0 +170737320877,219,0 +170737320925,219,0 +170737320973,219,0 +170737321021,218,0 +170737321069,218,0 +170737321117,218,0 +170737321166,219,0 +170737321214,219,0 +170737321262,220,0 +170737321310,221,0 +170737321358,224,0 +170737321406,227,0 +170737321453,234,0 +170737321501,240,0 +170737321549,222,0 +170737321597,218,0 +170737321647,218,0 +170737321696,218,0 +170737321744,218,0 +170737321794,218,0 +170737321842,218,0 +170737321890,219,0 +170737321938,218,0 +170737321987,218,0 +170737322037,218,0 +170737322085,218,0 +170737322133,218,0 +170737322181,218,0 +170737322230,218,0 +170737322278,221,0 +170737322328,238,0 +170737322376,241,0 +170737322424,219,0 +170737322471,218,0 +170737322521,218,0 +170737322571,218,0 +170737322620,218,0 +170737322670,219,0 +170737322718,219,0 +170737322767,219,0 +170737322815,220,0 +170737322863,221,0 +170737322911,222,0 +170737322961,224,0 +170737323008,227,0 +170737323056,229,0 +170737323104,230,0 +170737323152,231,0 +170737323200,237,0 +170737323249,221,0 +170737323297,219,0 +170737323347,218,0 +170737323396,218,0 +170737323444,218,0 +170737323492,218,0 +170737323542,218,0 +170737323590,218,0 +170737323638,219,0 +170737323686,220,0 +170737323735,221,0 +170737323785,221,0 +170737323833,225,0 +170737323881,227,0 +170737323930,228,0 +170737323978,230,0 +170737324026,234,0 +170737324075,240,0 +170737324123,223,0 +170737324171,218,0 +170737324221,218,0 +170737324269,218,0 +170737324317,218,0 +170737324366,217,0 +170737324414,218,0 +170737324462,218,0 +170737324510,218,0 +170737324558,218,0 +170737324608,218,0 +170737324656,220,0 +170737324704,218,0 +170737324753,219,0 +170737324801,222,0 +170737324851,226,0 +170737324899,238,0 +170737324947,243,0 +170737324995,220,0 +170737325043,218,0 +170737325091,218,0 +170737325140,219,0 +170737325188,218,0 +170737325236,218,0 +170737325284,218,0 +170737325332,218,0 +170737325380,219,0 +170737325428,219,0 +170737325476,220,0 +170737325523,222,0 +170737325571,224,0 +170737325621,228,0 +170737325669,232,0 +170737325717,230,0 +170737325766,240,0 +170737325814,220,0 +170737325864,219,0 +170737325912,219,0 +170737325960,219,0 +170737326008,219,0 +170737326056,219,0 +170737326104,219,0 +170737326152,219,0 +170737326200,219,0 +170737326249,220,0 +170737326297,222,0 +170737326345,222,0 +170737326393,224,0 +170737326441,226,0 +170737326489,229,0 +170737326537,230,0 +170737326585,228,0 +170737326632,241,0 +170737326680,221,0 +170737326728,218,0 +170737326778,217,0 +170737326826,217,0 +170737326875,217,0 +170737326923,217,0 +170737326971,217,0 +170737327019,217,0 +170737327068,217,0 +170737327116,217,0 +170737327164,217,0 +170737327212,218,0 +170737327260,218,0 +170737327308,222,0 +170737327355,224,0 +170737327403,229,0 +170737327451,239,0 +170737327499,242,0 +170737327549,222,0 +170737327596,219,0 +170737327644,219,0 +170737327694,219,0 +170737327742,219,0 +170737327791,219,0 +170737327839,219,0 +170737327887,219,0 +170737327935,219,0 +170737327984,220,0 +170737328032,221,0 +170737328080,222,0 +170737328128,225,0 +170737328176,228,0 +170737328224,229,0 +170737328272,231,0 +170737328319,240,0 +170737328367,242,0 +170737328415,220,0 +170737328463,219,0 +170737328511,219,0 +170737328559,219,0 +170737328607,219,0 +170737328655,219,0 +170737328703,219,0 +170737328750,219,0 +170737328798,219,0 +170737328846,219,0 +170737328894,219,0 +170737328944,221,0 +170737328991,221,0 +170737329039,224,0 +170737329089,227,0 +170737329137,230,0 +170737329186,240,0 +170737329234,243,0 +170737329282,220,0 +170737329330,218,0 +170737329380,219,0 +170737329427,219,0 +170737329475,218,0 +170737329523,219,0 +170737329571,219,0 +170737329619,219,0 +170737329667,219,0 +170737329717,219,0 +170737329766,218,0 +170737329814,219,0 +170737329862,221,0 +170737329910,223,0 +170737329958,228,0 +170737330006,230,0 +170737330054,242,0 +170737330104,223,0 +170737330152,220,0 +170737330201,218,0 +170737330251,219,0 +170737330299,219,0 +170737330348,219,0 +170737330396,219,0 +170737330446,219,0 +170737330494,219,0 +170737330542,220,0 +170737330591,222,0 +170737330639,222,0 +170737330687,222,0 +170737330735,226,0 +170737330785,229,0 +170737330833,231,0 +170737330881,246,0 +170737330928,241,0 +170737330976,223,0 +170737331026,218,0 +170737331074,218,0 +170737331123,218,0 +170737331173,218,0 +170737331221,218,0 +170737331269,218,0 +170737331317,218,0 +170737331365,218,0 +170737331413,218,0 +170737331461,218,0 +170737331509,218,0 +170737331557,220,0 +170737331606,222,0 +170737331656,225,0 +170737331704,228,0 +170737331752,240,0 +170737331800,245,0 +170737331848,222,0 +170737331896,219,0 +170737331944,220,0 +170737331992,219,0 +170737332041,219,0 +170737332089,219,0 +170737332137,219,0 +170737332185,219,0 +170737332234,219,0 +170737332284,219,0 +170737332332,219,0 +170737332380,220,0 +170737332428,221,0 +170737332476,224,0 +170737332524,226,0 +170737332573,229,0 +170737332621,241,0 +170737332671,239,0 +170737332720,219,0 +170737332770,218,0 +170737332819,218,0 +170737332867,218,0 +170737332915,218,0 +170737332963,218,0 +170737333011,218,0 +170737333061,218,0 +170737333109,219,0 +170737333157,219,0 +170737333205,220,0 +170737333252,222,0 +170737333300,224,0 +170737333348,228,0 +170737333396,230,0 +170737333446,232,0 +170737333494,243,0 +170737333542,224,0 +170737333591,219,0 +170737333639,218,0 +170737333687,218,0 +170737333735,219,0 +170737333785,219,0 +170737333833,218,0 +170737333881,218,0 +170737333930,218,0 +170737333978,219,0 +170737334026,220,0 +170737334074,221,0 +170737334122,223,0 +170737334172,225,0 +170737334220,227,0 +170737334267,228,0 +170737334317,239,0 +170737334365,242,0 +170737334415,219,0 +170737334463,218,0 +170737334512,219,0 +170737334560,219,0 +170737334608,218,0 +170737334656,218,0 +170737334704,218,0 +170737334752,218,0 +170737334801,219,0 +170737334851,219,0 +170737334899,219,0 +170737334947,219,0 +170737334995,220,0 +170737335043,223,0 +170737335091,225,0 +170737335140,227,0 +170737335188,239,0 +170737335236,241,0 +170737335284,220,0 +170737335332,218,0 +170737335382,218,0 +170737335431,218,0 +170737335479,218,0 +170737335527,218,0 +170737335577,218,0 +170737335625,218,0 +170737335673,218,0 +170737335721,218,0 +170737335770,218,0 +170737335818,218,0 +170737335868,218,0 +170737335915,218,0 +170737335963,218,0 +170737336011,222,0 +170737336059,242,0 +170737336107,221,0 +170737336155,219,0 +170737336203,219,0 +170737336251,219,0 +170737336300,219,0 +170737336348,219,0 +170737336398,219,0 +170737336447,219,0 +170737336495,219,0 +170737336545,219,0 +170737336593,219,0 +170737336641,220,0 +170737336689,220,0 +170737336737,224,0 +170737336786,227,0 +170737336834,230,0 +170737336882,233,0 +170737336930,242,0 +170737336978,223,0 +170737337026,218,0 +170737337074,218,0 +170737337122,218,0 +170737337170,219,0 +170737337220,218,0 +170737337268,219,0 +170737337316,218,0 +170737337365,218,0 +170737337415,219,0 +170737337463,219,0 +170737337512,219,0 +170737337560,219,0 +170737337608,219,0 +170737337656,219,0 +170737337704,219,0 +170737337754,237,0 +170737337803,242,0 +170737337851,220,0 +170737337901,219,0 +170737337949,219,0 +170737337997,219,0 +170737338044,219,0 +170737338092,219,0 +170737338140,218,0 +170737338189,218,0 +170737338237,219,0 +170737338284,219,0 +170737338332,220,0 +170737338382,223,0 +170737338430,225,0 +170737338478,228,0 +170737338526,231,0 +170737338575,233,0 +170737338623,238,0 +170737338671,236,0 +170737338719,219,0 +170737338767,219,0 +170737338815,219,0 +170737338863,219,0 +170737338911,219,0 +170737338958,219,0 +170737339006,219,0 +170737339054,220,0 +170737339102,220,0 +170737339150,221,0 +170737339198,222,0 +170737339246,224,0 +170737339294,226,0 +170737339342,231,0 +170737339390,233,0 +170737339437,232,0 +170737339485,242,0 +170737339533,221,0 +170737339581,219,0 +170737339629,218,0 +170737339677,219,0 +170737339725,219,0 +170737339773,218,0 +170737339821,219,0 +170737339871,218,0 +170737339919,219,0 +170737339967,219,0 +170737340014,218,0 +170737340062,219,0 +170737340110,219,0 +170737340158,219,0 +170737340206,220,0 +170737340254,223,0 +170737340304,232,0 +170737340352,243,0 +170737340402,223,0 +170737340450,219,0 +170737340497,219,0 +170737340547,219,0 +170737340595,219,0 +170737340645,219,0 +170737340692,219,0 +170737340740,219,0 +170737340790,219,0 +170737340838,220,0 +170737340887,221,0 +170737340935,222,0 +170737340985,223,0 +170737341035,226,0 +170737341083,229,0 +170737341130,229,0 +170737341178,238,0 +170737341226,243,0 +170737341274,222,0 +170737341322,218,0 +170737341372,217,0 +170737341420,217,0 +170737341468,218,0 +170737341517,218,0 +170737341565,217,0 +170737341613,217,0 +170737341662,218,0 +170737341712,218,0 +170737341760,218,0 +170737341808,218,0 +170737341856,218,0 +170737341905,218,0 +170737341953,218,0 +170737342003,219,0 +170737342051,241,0 +170737342100,227,0 +170737342150,219,0 +170737342198,219,0 +170737342247,218,0 +170737342297,219,0 +170737342346,218,0 +170737342396,218,0 +170737342445,218,0 +170737342493,218,0 +170737342541,218,0 +170737342589,218,0 +170737342637,219,0 +170737342685,219,0 +170737342735,221,0 +170737342782,223,0 +170737342832,227,0 +170737342881,240,0 +170737342929,243,0 +170737342979,223,0 +170737343028,219,0 +170737343076,219,0 +170737343124,218,0 +170737343172,219,0 +170737343220,219,0 +170737343268,218,0 +170737343318,218,0 +170737343366,219,0 +170737343415,220,0 +170737343465,221,0 +170737343513,223,0 +170737343561,226,0 +170737343609,228,0 +170737343657,230,0 +170737343706,231,0 +170737343754,240,0 +170737343802,245,0 +170737343851,219,0 +170737343899,218,0 +170737343947,218,0 +170737343997,218,0 +170737344046,218,0 +170737344094,218,0 +170737344142,218,0 +170737344190,219,0 +170737344238,218,0 +170737344286,218,0 +170737344334,218,0 +170737344382,219,0 +170737344432,221,0 +170737344480,223,0 +170737344528,226,0 +170737344577,229,0 +170737344625,240,0 +170737344673,230,0 +170737344722,220,0 +170737344770,219,0 +170737344820,219,0 +170737344869,219,0 +170737344917,219,0 +170737344967,219,0 +170737345015,219,0 +170737345064,220,0 +170737345112,219,0 +170737345160,220,0 +170737345210,220,0 +170737345259,221,0 +170737345307,224,0 +170737345355,227,0 +170737345403,229,0 +170737345451,238,0 +170737345499,241,0 +170737345549,222,0 +170737345598,219,0 +170737345648,219,0 +170737345696,219,0 +170737345745,219,0 +170737345793,219,0 +170737345841,219,0 +170737345891,219,0 +170737345940,219,0 +170737345988,219,0 +170737346036,220,0 +170737346084,221,0 +170737346132,223,0 +170737346180,226,0 +170737346228,229,0 +170737346276,230,0 +170737346324,236,0 +170737346373,240,0 +170737346421,219,0 +170737346471,218,0 +170737346519,218,0 +170737346568,218,0 +170737346618,218,0 +170737346666,218,0 +170737346714,219,0 +170737346761,220,0 +170737346809,220,0 +170737346857,221,0 +170737346905,223,0 +170737346955,225,0 +170737347003,228,0 +170737347052,230,0 +170737347102,232,0 +170737347150,234,0 +170737347198,240,0 +170737347247,222,0 +170737347295,219,0 +170737347343,218,0 +170737347391,219,0 +170737347441,219,0 +170737347490,219,0 +170737347538,218,0 +170737347586,219,0 +170737347635,220,0 +170737347685,220,0 +170737347733,221,0 +170737347781,224,0 +170737347829,226,0 +170737347877,229,0 +170737347926,230,0 +170737347976,230,0 +170737348024,238,0 +170737348073,235,0 +170737348123,222,0 +170737348171,218,0 +170737348219,218,0 +170737348267,218,0 +170737348314,218,0 +170737348362,218,0 +170737348410,218,0 +170737348460,218,0 +170737348508,218,0 +170737348555,218,0 +170737348603,218,0 +170737348651,219,0 +170737348699,220,0 +170737348747,221,0 +170737348795,224,0 +170737348843,227,0 +170737348891,238,0 +170737348939,240,0 +170737348987,221,0 +170737349034,218,0 +170737349082,219,0 +170737349130,219,0 +170737349178,219,0 +170737349228,219,0 +170737349277,219,0 +170737349327,219,0 +170737349375,219,0 +170737349423,219,0 +170737349470,220,0 +170737349518,221,0 +170737349566,222,0 +170737349614,227,0 +170737349662,227,0 +170737349710,229,0 +170737349759,240,0 +170737349809,240,0 +170737349857,220,0 +170737349906,219,0 +170737349956,219,0 +170737350004,218,0 +170737350053,218,0 +170737350101,219,0 +170737350151,219,0 +170737350199,219,0 +170737350247,219,0 +170737350296,219,0 +170737350344,219,0 +170737350392,219,0 +170737350440,220,0 +170737350490,222,0 +170737350538,225,0 +170737350586,229,0 +170737350634,240,0 +170737350683,224,0 +170737350731,220,0 +170737350779,220,0 +170737350829,219,0 +170737350878,220,0 +170737350926,220,0 +170737350974,220,0 +170737351022,220,0 +170737351071,221,0 +170737351121,222,0 +170737351170,222,0 +170737351218,224,0 +170737351266,227,0 +170737351314,228,0 +170737351362,230,0 +170737351410,231,0 +170737351460,239,0 +170737351508,241,0 +170737351555,221,0 +170737351605,218,0 +170737351653,218,0 +170737351702,218,0 +170737351752,218,0 +170737351801,218,0 +170737351851,219,0 +170737351899,218,0 +170737351948,219,0 +170737351996,219,0 +170737352044,220,0 +170737352092,221,0 +170737352142,224,0 +170737352190,227,0 +170737352239,230,0 +170737352289,232,0 +170737352338,241,0 +170737352386,231,0 +170737352436,219,0 +170737352484,218,0 +170737352532,218,0 +170737352581,218,0 +170737352629,218,0 +170737352679,218,0 +170737352727,218,0 +170737352775,219,0 +170737352823,218,0 +170737352870,218,0 +170737352918,218,0 +170737352968,219,0 +170737353017,222,0 +170737353065,225,0 +170737353113,227,0 +170737353163,230,0 +170737353211,241,0 +170737353259,223,0 +170737353308,219,0 +170737353356,219,0 +170737353404,219,0 +170737353453,219,0 +170737353501,219,0 +170737353551,219,0 +170737353599,218,0 +170737353647,219,0 +170737353695,219,0 +170737353743,221,0 +170737353791,221,0 +170737353838,225,0 +170737353886,227,0 +170737353936,229,0 +170737353984,233,0 +170737354033,240,0 +170737354081,242,0 +170737354129,223,0 +170737354177,219,0 +170737354227,219,0 +170737354275,219,0 +170737354323,219,0 +170737354371,219,0 +170737354419,219,0 +170737354467,219,0 +170737354515,219,0 +170737354564,219,0 +170737354614,219,0 +170737354662,220,0 +170737354711,221,0 +170737354761,224,0 +170737354809,227,0 +170737354858,229,0 +170737354908,239,0 +170737354957,242,0 +170737355007,220,0 +170737355055,219,0 +170737355103,219,0 +170737355151,219,0 +170737355199,219,0 +170737355247,218,0 +170737355295,219,0 +170737355343,218,0 +170737355391,219,0 +170737355439,219,0 +170737355486,221,0 +170737355534,223,0 +170737355582,226,0 +170737355630,227,0 +170737355678,229,0 +170737355726,232,0 +170737355776,242,0 +170737355825,223,0 +170737355873,221,0 +170737355921,221,0 +170737355971,221,0 +170737356019,220,0 +170737356067,220,0 +170737356115,220,0 +170737356164,220,0 +170737356212,220,0 +170737356260,220,0 +170737356308,219,0 +170737356356,220,0 +170737356406,220,0 +170737356454,224,0 +170737356503,226,0 +170737356551,229,0 +170737356599,229,0 +170737356649,242,0 +170737356698,224,0 +170737356748,219,0 +170737356797,220,0 +170737356845,219,0 +170737356895,219,0 +170737356943,220,0 +170737356990,220,0 +170737357040,220,0 +170737357088,220,0 +170737357137,220,0 +170737357185,219,0 +170737357233,220,0 +170737357281,221,0 +170737357329,224,0 +170737357379,226,0 +170737357427,230,0 +170737357475,240,0 +170737357523,240,0 +170737357572,220,0 +170737357620,219,0 +170737357669,219,0 +170737357717,220,0 +170737357765,220,0 +170737357815,219,0 +170737357863,220,0 +170737357911,220,0 +170737357959,219,0 +170737358008,220,0 +170737358056,220,0 +170737358105,221,0 +170737358155,224,0 +170737358203,227,0 +170737358251,230,0 +170737358300,229,0 +170737358348,243,0 +170737358396,224,0 +170737358444,219,0 +170737358494,218,0 +170737358543,218,0 +170737358591,219,0 +170737358641,219,0 +170737358689,218,0 +170737358738,219,0 +170737358788,219,0 +170737358836,218,0 +170737358884,220,0 +170737358932,221,0 +170737358980,223,0 +170737359028,225,0 +170737359075,228,0 +170737359123,229,0 +170737359171,232,0 +170737359219,242,0 +170737359267,224,0 +170737359315,219,0 +170737359363,219,0 +170737359412,219,0 +170737359462,219,0 +170737359511,219,0 +170737359559,219,0 +170737359607,219,0 +170737359655,219,0 +170737359703,219,0 +170737359753,219,0 +170737359802,219,0 +170737359850,219,0 +170737359898,219,0 +170737359948,219,0 +170737359996,223,0 +170737360044,240,0 +170737360092,241,0 +170737360139,220,0 +170737360187,218,0 +170737360235,218,0 +170737360283,218,0 +170737360333,218,0 +170737360381,218,0 +170737360430,218,0 +170737360480,219,0 +170737360528,219,0 +170737360576,221,0 +170737360624,221,0 +170737360671,223,0 +170737360719,227,0 +170737360767,228,0 +170737360815,231,0 +170737360863,231,0 +170737360913,241,0 +170737360960,241,0 +170737361008,219,0 +170737361058,218,0 +170737361106,218,0 +170737361154,218,0 +170737361202,219,0 +170737361250,219,0 +170737361299,218,0 +170737361349,218,0 +170737361398,218,0 +170737361448,219,0 +170737361496,219,0 +170737361545,220,0 +170737361593,223,0 +170737361643,224,0 +170737361692,229,0 +170737361742,230,0 +170737361791,243,0 +170737361839,224,0 +170737361887,218,0 +170737361937,218,0 +170737361986,218,0 +170737362034,218,0 +170737362082,218,0 +170737362130,218,0 +170737362180,218,0 +170737362228,218,0 +170737362276,218,0 +170737362324,218,0 +170737362372,218,0 +170737362420,218,0 +170737362468,218,0 +170737362516,218,0 +170737362564,220,0 +170737362612,238,0 +170737362660,243,0 +170737362709,221,0 +170737362759,219,0 +170737362807,218,0 +170737362854,218,0 +170737362904,218,0 +170737362952,218,0 +170737363002,218,0 +170737363049,218,0 +170737363099,218,0 +170737363147,219,0 +170737363195,219,0 +170737363244,219,0 +170737363294,218,0 +170737363342,218,0 +170737363390,219,0 +170737363439,219,0 +170737363489,240,0 +170737363536,231,0 +170737363584,219,0 +170737363634,219,0 +170737363682,219,0 +170737363731,218,0 +170737363779,219,0 +170737363827,218,0 +170737363875,219,0 +170737363924,219,0 +170737363972,219,0 +170737364020,219,0 +170737364068,219,0 +170737364116,219,0 +170737364164,219,0 +170737364212,219,0 +170737364261,219,0 +170737364309,221,0 +170737364357,243,0 +170737364405,223,0 +170737364453,218,0 +170737364501,218,0 +170737364549,218,0 +170737364596,218,0 +170737364644,218,0 +170737364692,218,0 +170737364740,219,0 +170737364788,220,0 +170737364836,221,0 +170737364884,222,0 +170737364932,222,0 +170737364980,225,0 +170737365028,227,0 +170737365076,229,0 +170737365123,232,0 +170737365171,233,0 +170737365219,242,0 +170737365267,224,0 +170737365315,218,0 +170737365364,218,0 +170737365412,219,0 +170737365460,219,0 +170737365510,218,0 +170737365558,218,0 +170737365605,218,0 +170737365653,219,0 +170737365701,219,0 +170737365749,218,0 +170737365799,219,0 +170737365847,221,0 +170737365895,223,0 +170737365942,227,0 +170737365990,228,0 +170737366040,232,0 +170737366088,243,0 +170737366136,222,0 +170737366184,218,0 +170737366233,218,0 +170737366281,218,0 +170737366329,218,0 +170737366377,218,0 +170737366425,218,0 +170737366473,218,0 +170737366521,219,0 +170737366570,218,0 +170737366620,218,0 +170737366669,218,0 +170737366717,218,0 +170737366765,218,0 +170737366815,218,0 +170737366863,219,0 +170737366911,237,0 +170737366959,242,0 +170737367008,220,0 +170737367058,218,0 +170737367106,218,0 +170737367154,218,0 +170737367202,218,0 +170737367250,218,0 +170737367298,218,0 +170737367346,219,0 +170737367395,220,0 +170737367443,221,0 +170737367491,222,0 +170737367539,224,0 +170737367588,227,0 +170737367636,229,0 +170737367684,231,0 +170737367732,234,0 +170737367780,241,0 +170737367828,228,0 +170737367876,220,0 +170737367925,219,0 +170737367975,219,0 +170737368023,219,0 +170737368071,220,0 +170737368119,219,0 +170737368167,219,0 +170737368215,220,0 +170737368263,219,0 +170737368312,219,0 +170737368360,219,0 +170737368408,219,0 +170737368456,220,0 +170737368504,221,0 +170737368554,224,0 +170737368602,228,0 +170737368649,242,0 +170737368697,224,0 +170737368745,219,0 +170737368795,219,0 +170737368844,219,0 +170737368892,219,0 +170737368940,220,0 +170737368988,221,0 +170737369036,222,0 +170737369084,223,0 +170737369132,222,0 +170737369180,226,0 +170737369228,227,0 +170737369275,229,0 +170737369323,231,0 +170737369373,233,0 +170737369421,234,0 +170737369469,234,0 +170737369517,240,0 +170737369566,240,0 +170737369614,222,0 +170737369662,218,0 +170737369710,219,0 +170737369758,218,0 +170737369806,219,0 +170737369854,218,0 +170737369902,219,0 +170737369950,218,0 +170737369998,218,0 +170737370048,218,0 +170737370095,219,0 +170737370145,219,0 +170737370193,219,0 +170737370241,220,0 +170737370290,220,0 +170737370338,221,0 +170737370386,222,0 +170737370436,224,0 +170737370485,226,0 +170737370533,227,0 +170737370581,229,0 +170737370631,231,0 +170737370680,235,0 +170737370728,240,0 +170737370776,241,0 +170737370826,221,0 +170737370874,218,0 +170737370922,218,0 +170737370970,218,0 +170737371018,218,0 +170737371065,218,0 +170737371115,218,0 +170737371163,218,0 +170737371212,218,0 +170737371260,218,0 +170737371308,218,0 +170737371356,219,0 +170737371404,220,0 +170737371452,220,0 +170737371500,220,0 +170737371548,220,0 +170737371595,223,0 +170737371643,226,0 +170737371691,226,0 +170737371741,228,0 +170737371789,231,0 +170737371838,231,0 +170737371886,231,0 +170737371934,240,0 +170737371984,242,0 +170737372032,221,0 +170737372080,219,0 +170737372129,218,0 +170737372177,218,0 +170737372225,218,0 +170737372275,218,0 +170737372323,219,0 +170737372370,218,0 +170737372418,218,0 +170737372466,218,0 +170737372516,218,0 +170737372563,218,0 +170737372611,218,0 +170737372659,218,0 +170737372709,219,0 +170737372757,219,0 +170737372805,220,0 +170737372853,221,0 +170737372901,223,0 +170737372950,225,0 +170737372998,226,0 +170737373046,229,0 +170737373094,230,0 +170737373142,230,0 +170737373189,241,0 +170737373237,241,0 +170737373287,222,0 +170737373335,218,0 +170737373384,218,0 +170737373432,218,0 +170737373482,218,0 +170737373530,218,0 +170737373578,219,0 +170737373626,218,0 +170737373673,218,0 +170737373723,218,0 +170737373771,218,0 +170737373819,218,0 +170737373867,218,0 +170737373915,218,0 +170737373963,219,0 +170737374010,219,0 +170737374058,220,0 +170737374108,220,0 +170737374157,222,0 +170737374207,224,0 +170737374255,226,0 +170737374303,228,0 +170737374351,228,0 +170737374400,240,0 +170737374450,243,0 +170737374498,221,0 +170737374546,219,0 +170737374594,218,0 +170737374642,218,0 +170737374690,218,0 +170737374739,218,0 +170737374787,218,0 +170737374835,218,0 +170737374885,219,0 +170737374933,218,0 +170737374982,218,0 +170737375030,218,0 +170737375078,218,0 +170737375128,218,0 +170737375177,218,0 +170737375227,218,0 +170737375275,218,0 +170737375323,218,0 +170737375370,218,0 +170737375418,219,0 +170737375466,218,0 +170737375516,219,0 +170737375564,221,0 +170737375613,239,0 +170737375661,243,0 +170737375709,221,0 +170737375757,219,0 +170737375807,219,0 +170737375855,219,0 +170737375903,218,0 +170737375951,218,0 +170737375999,218,0 +170737376047,219,0 +170737376095,218,0 +170737376144,219,0 +170737376192,218,0 +170737376240,218,0 +170737376290,219,0 +170737376339,219,0 +170737376387,218,0 +170737376436,219,0 +170737376484,219,0 +170737376534,221,0 +170737376582,220,0 +170737376631,222,0 +170737376679,222,0 +170737376727,225,0 +170737376777,228,0 +170737376826,229,0 +170737376874,240,0 +170737376924,242,0 +170737376973,221,0 +170737377021,218,0 +170737377071,217,0 +170737377120,217,0 +170737377168,217,0 +170737377216,218,0 +170737377264,217,0 +170737377312,217,0 +170737377361,218,0 +170737377409,217,0 +170737377457,218,0 +170737377505,218,0 +170737377553,218,0 +170737377601,217,0 +170737377649,217,0 +170737377697,217,0 +170737377747,219,0 +170737377794,220,0 +170737377842,220,0 +170737377890,222,0 +170737377938,224,0 +170737377988,227,0 +170737378037,229,0 +170737378085,239,0 +170737378135,243,0 +170737378183,223,0 +170737378232,218,0 +170737378282,218,0 +170737378330,218,0 +170737378378,218,0 +170737378425,218,0 +170737378473,218,0 +170737378521,218,0 +170737378569,218,0 +170737378617,218,0 +170737378665,218,0 +170737378713,218,0 +170737378761,218,0 +170737378809,218,0 +170737378857,218,0 +170737378906,218,0 +170737378954,218,0 +170737379002,219,0 +170737379052,220,0 +170737379099,221,0 +170737379149,224,0 +170737379198,226,0 +170737379246,228,0 +170737379296,240,0 +170737379345,242,0 +170737379393,222,0 +170737379441,220,0 +170737379491,219,0 +170737379540,219,0 +170737379588,219,0 +170737379636,219,0 +170737379686,219,0 +170737379735,218,0 +170737379783,219,0 +170737379831,219,0 +170737379879,219,0 +170737379927,219,0 +170737379976,219,0 +170737380024,218,0 +170737380072,219,0 +170737380122,219,0 +170737380171,219,0 +170737380219,219,0 +170737380267,219,0 +170737380315,218,0 +170737380363,219,0 +170737380411,219,0 +170737380461,219,0 +170737380509,224,0 +170737380557,242,0 +170737380605,242,0 +170737380654,223,0 +170737380702,219,0 +170737380752,219,0 +170737380801,219,0 +170737380851,219,0 +170737380899,219,0 +170737380947,219,0 +170737380994,219,0 +170737381044,219,0 +170737381092,219,0 +170737381142,219,0 +170737381190,219,0 +170737381238,219,0 +170737381285,218,0 +170737381333,219,0 +170737381381,219,0 +170737381429,219,0 +170737381477,219,0 +170737381527,219,0 +170737381574,219,0 +170737381622,219,0 +170737381670,219,0 +170737381718,220,0 +170737381766,241,0 +170737381814,242,0 +170737381863,221,0 +170737381911,220,0 +170737381959,219,0 +170737382007,219,0 +170737382055,219,0 +170737382103,218,0 +170737382151,218,0 +170737382199,218,0 +170737382247,218,0 +170737382295,218,0 +170737382342,219,0 +170737382390,219,0 +170737382438,218,0 +170737382486,219,0 +170737382536,219,0 +170737382584,218,0 +170737382632,218,0 +170737382680,218,0 +170737382729,218,0 +170737382777,218,0 +170737382825,218,0 +170737382873,219,0 +170737382921,219,0 +170737382971,240,0 +170737383019,246,0 +170737383068,243,0 +170737383116,221,0 +170737383164,219,0 +170737383212,218,0 +170737383260,218,0 +170737383310,219,0 +170737383357,219,0 +170737383405,219,0 +170737383453,219,0 +170737383501,219,0 +170737383551,219,0 +170737383599,218,0 +170737383648,219,0 +170737383696,219,0 +170737383744,220,0 +170737383794,221,0 +170737383842,221,0 +170737383890,223,0 +170737383939,225,0 +170737383987,227,0 +170737384035,229,0 +170737384083,232,0 +170737384133,233,0 +170737384181,231,0 +170737384229,242,0 +170737384277,246,0 +170737384325,222,0 +170737384374,218,0 +170737384422,217,0 +170737384470,218,0 +170737384518,218,0 +170737384567,217,0 +170737384615,217,0 +170737384663,218,0 +170737384711,218,0 +170737384759,218,0 +170737384806,218,0 +170737384854,218,0 +170737384904,218,0 +170737384952,217,0 +170737384999,218,0 +170737385049,218,0 +170737385097,218,0 +170737385145,218,0 +170737385193,217,0 +170737385242,217,0 +170737385290,218,0 +170737385338,218,0 +170737385386,218,0 +170737385434,238,0 +170737385482,244,0 +170737385529,242,0 +170737385577,221,0 +170737385625,218,0 +170737385673,218,0 +170737385721,218,0 +170737385769,218,0 +170737385817,217,0 +170737385865,218,0 +170737385913,217,0 +170737385960,217,0 +170737386008,217,0 +170737386058,217,0 +170737386106,217,0 +170737386154,217,0 +170737386202,217,0 +170737386250,217,0 +170737386298,218,0 +170737386347,219,0 +170737386395,220,0 +170737386443,220,0 +170737386492,223,0 +170737386540,227,0 +170737386588,229,0 +170737386636,231,0 +170737386684,240,0 +170737386732,244,0 +170737386779,224,0 +170737386827,218,0 +170737386875,218,0 +170737386923,217,0 +170737386971,218,0 +170737387019,218,0 +170737387067,217,0 +170737387115,218,0 +170737387163,218,0 +170737387210,218,0 +170737387258,218,0 +170737387306,217,0 +170737387354,218,0 +170737387402,218,0 +170737387450,218,0 +170737387499,218,0 +170737387547,218,0 +170737387595,218,0 +170737387645,218,0 +170737387692,220,0 +170737387742,222,0 +170737387790,225,0 +170737387839,228,0 +170737387887,242,0 +170737387935,244,0 +170737387983,222,0 +170737388031,218,0 +170737388079,217,0 +170737388126,217,0 +170737388174,218,0 +170737388222,217,0 +170737388270,217,0 +170737388318,217,0 +170737388366,217,0 +170737388414,217,0 +170737388462,217,0 +170737388509,217,0 +170737388557,217,0 +170737388605,217,0 +170737388653,217,0 +170737388701,217,0 +170737388749,217,0 +170737388797,218,0 +170737388845,218,0 +170737388893,218,0 +170737388942,219,0 +170737388990,221,0 +170737389039,225,0 +170737389087,227,0 +170737389135,240,0 +170737389184,243,0 +170737389232,224,0 +170737389282,219,0 +170737389330,218,0 +170737389379,218,0 +170737389427,218,0 +170737389475,219,0 +170737389523,218,0 +170737389572,218,0 +170737389620,217,0 +170737389668,218,0 +170737389718,218,0 +170737389765,218,0 +170737389813,218,0 +170737389861,218,0 +170737389909,218,0 +170737389957,218,0 +170737390007,219,0 +170737390055,220,0 +170737390103,221,0 +170737390151,222,0 +170737390199,224,0 +170737390247,227,0 +170737390295,230,0 +170737390343,240,0 +170737390391,243,0 +170737390438,243,0 +170737390486,223,0 +170737390534,218,0 +170737390584,218,0 +170737390632,218,0 +170737390681,218,0 +170737390729,218,0 +170737390777,218,0 +170737390825,218,0 +170737390873,218,0 +170737390920,218,0 +170737390968,218,0 +170737391016,218,0 +170737391066,218,0 +170737391114,218,0 +170737391162,218,0 +170737391209,218,0 +170737391259,218,0 +170737391307,219,0 +170737391355,219,0 +170737391402,221,0 +170737391450,224,0 +170737391498,228,0 +170737391546,230,0 +170737391594,242,0 +170737391642,243,0 +170737391690,224,0 +170737391738,219,0 +170737391786,219,0 +170737391834,219,0 +170737391882,219,0 +170737391929,218,0 +170737391979,219,0 +170737392027,218,0 +170737392075,218,0 +170737392123,219,0 +170737392171,219,0 +170737392218,218,0 +170737392266,218,0 +170737392314,219,0 +170737392362,218,0 +170737392410,218,0 +170737392458,218,0 +170737392507,218,0 +170737392555,218,0 +170737392603,220,0 +170737392651,221,0 +170737392699,223,0 +170737392747,227,0 +170737392795,241,0 +170737392843,245,0 +170737392890,239,0 +170737392938,220,0 +170737392986,218,0 +170737393034,218,0 +170737393082,218,0 +170737393130,218,0 +170737393178,218,0 +170737393226,218,0 +170737393273,218,0 +170737393321,218,0 +170737393369,218,0 +170737393417,218,0 +170737393465,218,0 +170737393513,218,0 +170737393562,218,0 +170737393610,218,0 +170737393658,218,0 +170737393706,218,0 +170737393754,218,0 +170737393802,219,0 +170737393852,220,0 +170737393899,221,0 +170737393947,224,0 +170737393995,226,0 +170737394043,239,0 +170737394091,244,0 +170737394139,220,0 +170737394187,219,0 +170737394236,218,0 +170737394284,218,0 +170737394332,218,0 +170737394380,218,0 +170737394430,218,0 +170737394478,218,0 +170737394527,218,0 +170737394575,218,0 +170737394623,219,0 +170737394671,218,0 +170737394719,218,0 +170737394768,218,0 +170737394816,218,0 +170737394866,218,0 +170737394914,218,0 +170737394962,218,0 +170737395010,218,0 +170737395058,218,0 +170737395106,218,0 +170737395156,218,0 +170737395204,219,0 +170737395252,242,0 +170737395300,246,0 +170737395348,229,0 +170737395396,221,0 +170737395444,219,0 +170737395492,219,0 +170737395541,219,0 +170737395589,218,0 +170737395637,218,0 +170737395685,218,0 +170737395733,218,0 +170737395782,218,0 +170737395832,219,0 +170737395880,219,0 +170737395929,218,0 +170737395979,218,0 +170737396028,219,0 +170737396076,219,0 +170737396124,218,0 +170737396172,219,0 +170737396220,219,0 +170737396268,219,0 +170737396318,219,0 +170737396366,219,0 +170737396413,219,0 +170737396461,224,0 +170737396511,244,0 +170737396559,252,0 +170737396607,227,0 +170737396657,220,0 +170737396704,219,0 +170737396752,219,0 +170737396802,219,0 +170737396850,219,0 +170737396898,219,0 +170737396946,219,0 +170737396994,219,0 +170737397041,219,0 +170737397091,219,0 +170737397139,219,0 +170737397189,219,0 +170737397237,219,0 +170737397286,219,0 +170737397334,219,0 +170737397382,219,0 +170737397430,219,0 +170737397478,219,0 +170737397526,219,0 +170737397575,220,0 +170737397625,221,0 +170737397673,224,0 +170737397721,284,1 +170737397810,232,0 +170737397858,221,0 +170737397906,219,0 +170737397954,218,0 +170737398002,219,0 +170737398050,218,0 +170737398098,218,0 +170737398146,218,0 +170737398193,218,0 +170737398241,218,0 +170737398289,218,0 +170737398337,218,0 +170737398387,218,0 +170737398435,218,0 +170737398484,218,0 +170737398532,218,0 +170737398580,218,0 +170737398630,218,0 +170737398678,218,0 +170737398726,218,0 +170737398774,219,0 +170737398823,220,0 +170737398873,224,0 +170737398921,228,0 +170737398970,292,1 +170737399057,230,0 +170737399106,220,0 +170737399156,219,0 +170737399204,219,0 +170737399252,219,0 +170737399300,219,0 +170737399348,219,0 +170737399396,219,0 +170737399444,219,0 +170737399492,219,0 +170737399540,219,0 +170737399587,219,0 +170737399635,219,0 +170737399683,219,0 +170737399733,218,0 +170737399781,219,0 +170737399829,218,0 +170737399878,218,0 +170737399926,219,0 +170737399974,218,0 +170737400022,219,0 +170737400070,219,0 +170737400120,221,0 +170737400169,278,1 +170737400251,286,1 +170737400329,219,0 +170737400377,219,0 +170737400425,219,0 +170737400474,219,0 +170737400522,219,0 +170737400572,219,0 +170737400620,219,0 +170737400669,219,0 +170737400717,218,0 +170737400765,218,0 +170737400813,219,0 +170737400861,218,0 +170737400911,219,0 +170737400960,219,0 +170737401008,219,0 +170737401056,219,0 +170737401106,218,0 +170737401154,219,0 +170737401202,218,0 +170737401250,218,0 +170737401298,218,0 +170737401347,220,0 +170737401395,290,1 +170737401475,277,1 +170737401554,220,0 +170737401602,219,0 +170737401650,219,0 +170737401698,219,0 +170737401745,219,0 +170737401795,219,0 +170737401843,219,0 +170737401891,218,0 +170737401939,218,0 +170737401986,218,0 +170737402034,218,0 +170737402082,218,0 +170737402130,218,0 +170737402178,218,0 +170737402226,218,0 +170737402274,218,0 +170737402322,218,0 +170737402370,218,0 +170737402417,218,0 +170737402465,218,0 +170737402513,219,0 +170737402561,219,0 +170737402609,223,0 +170737402657,275,1 +170737402734,229,0 +170737402782,221,0 +170737402830,219,0 +170737402878,219,0 +170737402926,219,0 +170737402974,219,0 +170737403022,218,0 +170737403069,218,0 +170737403117,218,0 +170737403165,219,0 +170737403213,219,0 +170737403261,219,0 +170737403309,219,0 +170737403357,219,0 +170737403406,219,0 +170737403454,218,0 +170737403502,219,0 +170737403550,219,0 +170737403598,219,0 +170737403646,219,0 +170737403693,219,0 +170737403741,219,0 +170737403789,219,0 +170737403837,239,0 +170737403885,283,1 +170737403968,235,0 +170737404017,219,0 +170737404065,218,0 +170737404113,218,0 +170737404161,218,0 +170737404210,218,0 +170737404258,218,0 +170737404306,218,0 +170737404354,218,0 +170737404402,218,0 +170737404450,219,0 +170737404498,218,0 +170737404546,218,0 +170737404594,219,0 +170737404641,219,0 +170737404689,219,0 +170737404737,218,0 +170737404785,219,0 +170737404833,218,0 +170737404881,219,0 +170737404929,218,0 +170737404977,219,0 +170737405026,221,0 +170737405074,281,1 +170737405155,297,1 +170737405231,217,0 +170737405279,217,0 +170737405327,217,0 +170737405376,217,0 +170737405424,216,0 +170737405472,216,0 +170737405520,216,0 +170737405568,216,0 +170737405618,216,0 +170737405665,217,0 +170737405713,216,0 +170737405761,217,0 +170737405809,217,0 +170737405857,217,0 +170737405905,216,0 +170737405954,216,0 +170737406002,216,0 +170737406050,216,0 +170737406098,216,0 +170737406146,216,0 +170737406194,216,0 +170737406241,217,0 +170737406289,220,0 +170737406337,273,1 +170737406418,233,0 +170737406467,220,0 +170737406517,218,0 +170737406565,218,0 +170737406613,218,0 +170737406661,217,0 +170737406708,218,0 +170737406756,217,0 +170737406804,217,0 +170737406852,217,0 +170737406901,217,0 +170737406949,218,0 +170737406997,217,0 +170737407045,218,0 +170737407093,218,0 +170737407141,217,0 +170737407189,217,0 +170737407237,217,0 +170737407285,217,0 +170737407332,217,0 +170737407380,217,0 +170737407428,217,0 +170737407476,218,0 +170737407526,224,0 +170737407573,269,0 +170737407621,298,1 +170737407703,219,0 +170737407752,218,0 +170737407802,218,0 +170737407851,218,0 +170737407900,218,0 +170737407948,218,0 +170737407996,219,0 +170737408044,218,0 +170737408092,218,0 +170737408140,218,0 +170737408188,218,0 +170737408236,219,0 +170737408283,218,0 +170737408331,219,0 +170737408379,218,0 +170737408427,218,0 +170737408475,218,0 +170737408523,218,0 +170737408571,219,0 +170737408619,220,0 +170737408667,222,0 +170737408715,225,0 +170737408763,287,1 +170737408842,284,1 +170737408919,220,0 +170737408967,219,0 +170737409016,219,0 +170737409064,218,0 +170737409112,219,0 +170737409160,219,0 +170737409208,218,0 +170737409256,219,0 +170737409304,218,0 +170737409352,218,0 +170737409399,218,0 +170737409447,218,0 +170737409495,219,0 +170737409543,218,0 +170737409591,219,0 +170737409639,219,0 +170737409687,219,0 +170737409735,219,0 +170737409782,218,0 +170737409832,219,0 +170737409880,218,0 +170737409928,219,0 +170737409976,224,0 +170737410023,281,1 +170737410108,235,0 +170737410156,219,0 +170737410204,219,0 +170737410252,218,0 +170737410300,218,0 +170737410347,218,0 +170737410395,218,0 +170737410443,218,0 +170737410491,218,0 +170737410539,218,0 +170737410587,218,0 +170737410636,218,0 +170737410684,218,0 +170737410732,218,0 +170737410780,218,0 +170737410828,218,0 +170737410876,218,0 +170737410924,218,0 +170737410972,218,0 +170737411021,218,0 +170737411071,218,0 +170737411118,218,0 +170737411166,219,0 +170737411214,229,0 +170737411262,280,1 +170737411345,234,0 +170737411392,219,0 +170737411440,218,0 +170737411488,218,0 +170737411536,218,0 +170737411584,218,0 +170737411632,218,0 +170737411680,218,0 +170737411728,218,0 +170737411776,218,0 +170737411823,218,0 +170737411871,218,0 +170737411921,218,0 +170737411969,218,0 +170737412016,218,0 +170737412064,218,0 +170737412112,218,0 +170737412160,218,0 +170737412208,218,0 +170737412256,218,0 +170737412304,218,0 +170737412352,219,0 +170737412399,221,0 +170737412449,285,1 +170737412525,291,1 +170737412602,219,0 +170737412650,218,0 +170737412698,217,0 +170737412746,217,0 +170737412794,217,0 +170737412842,217,0 +170737412891,217,0 +170737412941,218,0 +170737412989,217,0 +170737413037,217,0 +170737413085,217,0 +170737413132,218,0 +170737413180,218,0 +170737413228,217,0 +170737413276,218,0 +170737413324,217,0 +170737413372,218,0 +170737413420,218,0 +170737413468,217,0 +170737413517,217,0 +170737413565,219,0 +170737413615,220,0 +170737413662,228,0 +170737413712,271,1 +170737413791,233,0 +170737413839,219,0 +170737413886,219,0 +170737413934,219,0 +170737413982,219,0 +170737414030,219,0 +170737414078,219,0 +170737414126,219,0 +170737414174,218,0 +170737414222,219,0 +170737414270,218,0 +170737414317,219,0 +170737414365,218,0 +170737414415,218,0 +170737414463,219,0 +170737414511,219,0 +170737414559,219,0 +170737414606,218,0 +170737414654,219,0 +170737414702,219,0 +170737414750,219,0 +170737414798,220,0 +170737414846,222,0 +170737414895,227,0 +170737414943,284,1 +170737415022,227,0 +170737415070,222,0 +170737415118,220,0 +170737415166,220,0 +170737415214,219,0 +170737415261,219,0 +170737415309,220,0 +170737415357,221,0 +170737415405,222,0 +170737415453,222,0 +170737415501,225,0 +170737415549,225,0 +170737415597,225,0 +170737415645,225,0 +170737415693,225,0 +170737415740,233,0 +170737415788,220,0 +170737415836,221,0 +170737415884,221,0 +170737415932,222,0 +170737415980,222,0 +170737416028,222,0 +170737416076,223,0 +170737416123,225,0 +170737416171,271,1 +170737416249,226,0 +170737416297,219,0 +170737416345,218,0 +170737416395,218,0 +170737416443,218,0 +170737416491,218,0 +170737416538,217,0 +170737416586,217,0 +170737416634,217,0 +170737416682,217,0 +170737416730,218,0 +170737416778,217,0 +170737416826,218,0 +170737416873,218,0 +170737416923,217,0 +170737416972,217,0 +170737417020,218,0 +170737417068,217,0 +170737417116,218,0 +170737417164,218,0 +170737417212,218,0 +170737417260,218,0 +170737417308,218,0 +170737417358,247,0 +170737417406,261,0 +170737417455,260,0 +170737417505,224,0 +170737417553,218,0 +170737417601,218,0 +170737417649,218,0 +170737417698,217,0 +170737417746,218,0 +170737417796,217,0 +170737417845,217,0 +170737417893,217,0 +170737417941,217,0 +170737417991,217,0 +170737418039,218,0 +170737418089,218,0 +170737418136,218,0 +170737418186,217,0 +170737418234,217,0 +170737418283,217,0 +170737418331,217,0 +170737418379,217,0 +170737418427,217,0 +170737418475,217,0 +170737418523,218,0 +170737418571,220,0 +170737418619,272,1 +170737418704,227,0 +170737418751,220,0 +170737418801,218,0 +170737418849,218,0 +170737418897,218,0 +170737418945,218,0 +170737418994,218,0 +170737419042,218,0 +170737419090,218,0 +170737419138,218,0 +170737419186,218,0 +170737419233,218,0 +170737419281,218,0 +170737419329,217,0 +170737419377,218,0 +170737419425,218,0 +170737419473,218,0 +170737419521,218,0 +170737419569,218,0 +170737419617,218,0 +170737419666,218,0 +170737419716,218,0 +170737419764,219,0 +170737419811,222,0 +170737419859,272,1 +170737419940,228,0 +170737419989,219,0 +170737420039,218,0 +170737420087,218,0 +170737420135,217,0 +170737420184,218,0 +170737420232,218,0 +170737420280,218,0 +170737420328,218,0 +170737420376,218,0 +170737420424,218,0 +170737420472,218,0 +170737420520,218,0 +170737420568,218,0 +170737420616,217,0 +170737420665,218,0 +170737420713,218,0 +170737420761,218,0 +170737420809,218,0 +170737420857,218,0 +170737420905,218,0 +170737420953,218,0 +170737421003,221,0 +170737421052,270,1 +170737421137,284,1 +170737421216,218,0 +170737421264,217,0 +170737421314,217,0 +170737421362,217,0 +170737421410,217,0 +170737421458,217,0 +170737421507,217,0 +170737421555,217,0 +170737421605,217,0 +170737421653,217,0 +170737421702,217,0 +170737421750,217,0 +170737421800,217,0 +170737421848,217,0 +170737421896,217,0 +170737421945,217,0 +170737421993,217,0 +170737422043,217,0 +170737422091,217,0 +170737422140,217,0 +170737422190,217,0 +170737422239,219,0 +170737422287,284,1 +170737422370,281,1 +170737422449,218,0 +170737422497,218,0 +170737422545,218,0 +170737422594,218,0 +170737422644,218,0 +170737422693,218,0 +170737422741,218,0 +170737422789,218,0 +170737422837,218,0 +170737422886,218,0 +170737422934,218,0 +170737422984,218,0 +170737423032,218,0 +170737423080,218,0 +170737423128,218,0 +170737423177,218,0 +170737423225,218,0 +170737423273,218,0 +170737423321,218,0 +170737423371,219,0 +170737423420,218,0 +170737423468,219,0 +170737423518,284,1 +170737423600,275,1 +170737423675,220,0 +170737423723,218,0 +170737423771,218,0 +170737423821,218,0 +170737423869,218,0 +170737423918,218,0 +170737423966,218,0 +170737424014,218,0 +170737424062,218,0 +170737424110,218,0 +170737424158,218,0 +170737424207,218,0 +170737424255,218,0 +170737424305,218,0 +170737424354,218,0 +170737424402,218,0 +170737424450,218,0 +170737424498,218,0 +170737424548,218,0 +170737424596,218,0 +170737424644,218,0 +170737424692,221,0 +170737424739,258,0 +170737424787,280,1 +170737424870,226,0 +170737424918,219,0 +170737424966,218,0 +170737425013,218,0 +170737425061,218,0 +170737425109,218,0 +170737425157,218,0 +170737425205,218,0 +170737425253,218,0 +170737425301,218,0 +170737425349,218,0 +170737425397,218,0 +170737425445,219,0 +170737425492,218,0 +170737425540,218,0 +170737425588,218,0 +170737425636,218,0 +170737425684,218,0 +170737425732,218,0 +170737425780,218,0 +170737425829,219,0 +170737425877,218,0 +170737425925,219,0 +170737425973,284,1 +170737426054,286,1 +170737426135,219,0 +170737426183,218,0 +170737426231,218,0 +170737426279,218,0 +170737426327,219,0 +170737426374,218,0 +170737426422,218,0 +170737426470,218,0 +170737426520,218,0 +170737426568,218,0 +170737426615,218,0 +170737426663,218,0 +170737426713,218,0 +170737426761,217,0 +170737426810,218,0 +170737426859,218,0 +170737426907,218,0 +170737426957,218,0 +170737427007,218,0 +170737427055,218,0 +170737427103,218,0 +170737427151,221,0 +170737427199,277,1 +170737427282,282,1 +170737427359,218,0 +170737427407,218,0 +170737427455,218,0 +170737427503,218,0 +170737427551,218,0 +170737427600,218,0 +170737427648,218,0 +170737427696,218,0 +170737427744,218,0 +170737427793,218,0 +170737427843,218,0 +170737427890,218,0 +170737427938,217,0 +170737427986,218,0 +170737428034,218,0 +170737428082,218,0 +170737428132,218,0 +170737428181,218,0 +170737428231,218,0 +170737428279,218,0 +170737428326,218,0 +170737428374,219,0 +170737428422,262,0 +170737428470,260,0 +170737428518,262,0 +170737428566,225,0 +170737428614,219,0 +170737428662,219,0 +170737428710,219,0 +170737428758,219,0 +170737428806,219,0 +170737428853,219,0 +170737428901,219,0 +170737428951,219,0 +170737429000,220,0 +170737429048,220,0 +170737429096,220,0 +170737429144,220,0 +170737429192,220,0 +170737429240,220,0 +170737429287,220,0 +170737429337,221,0 +170737429385,220,0 +170737429433,221,0 +170737429481,221,0 +170737429528,221,0 +170737429576,219,0 +170737429626,222,0 +170737429674,261,0 +170737429723,270,1 +170737429815,218,0 +170737429863,218,0 +170737429911,218,0 +170737429960,218,0 +170737430010,218,0 +170737430058,218,0 +170737430106,218,0 +170737430154,218,0 +170737430201,218,0 +170737430249,218,0 +170737430299,218,0 +170737430347,218,0 +170737430395,218,0 +170737430442,218,0 +170737430490,218,0 +170737430538,218,0 +170737430588,218,0 +170737430636,218,0 +170737430684,218,0 +170737430732,218,0 +170737430780,218,0 +170737430828,219,0 +170737430877,261,0 +170737430925,270,1 +170737431010,227,0 +170737431058,218,0 +170737431107,217,0 +170737431157,217,0 +170737431205,217,0 +170737431252,217,0 +170737431302,217,0 +170737431350,217,0 +170737431400,217,0 +170737431447,217,0 +170737431495,217,0 +170737431543,217,0 +170737431591,217,0 +170737431639,217,0 +170737431687,217,0 +170737431737,217,0 +170737431785,217,0 +170737431833,217,0 +170737431881,218,0 +170737431930,217,0 +170737431978,217,0 +170737432026,217,0 +170737432074,218,0 +170737432124,266,0 +170737432172,286,1 +170737432248,225,0 +170737432296,218,0 +170737432345,218,0 +170737432393,217,0 +170737432441,217,0 +170737432489,217,0 +170737432539,217,0 +170737432587,218,0 +170737432635,217,0 +170737432683,217,0 +170737432731,217,0 +170737432779,217,0 +170737432827,217,0 +170737432876,217,0 +170737432926,217,0 +170737432974,217,0 +170737433022,217,0 +170737433070,217,0 +170737433119,217,0 +170737433167,217,0 +170737433215,218,0 +170737433265,218,0 +170737433313,219,0 +170737433360,272,1 +170737433442,275,1 +170737433519,218,0 +170737433567,218,0 +170737433615,218,0 +170737433663,218,0 +170737433711,218,0 +170737433759,218,0 +170737433809,218,0 +170737433858,218,0 +170737433906,218,0 +170737433954,218,0 +170737434002,218,0 +170737434052,218,0 +170737434099,218,0 +170737434149,218,0 +170737434197,218,0 +170737434245,218,0 +170737434293,218,0 +170737434342,218,0 +170737434390,218,0 +170737434440,218,0 +170737434488,218,0 +170737434536,221,0 +170737434585,284,1 +170737434665,256,0 +170737434713,226,0 +170737434761,219,0 +170737434809,219,0 +170737434857,218,0 +170737434905,218,0 +170737434953,219,0 +170737435001,219,0 +170737435049,219,0 +170737435097,219,0 +170737435145,218,0 +170737435193,218,0 +170737435243,218,0 +170737435292,218,0 +170737435340,219,0 +170737435388,219,0 +170737435436,219,0 +170737435484,218,0 +170737435532,218,0 +170737435580,218,0 +170737435629,219,0 +170737435677,218,0 +170737435725,219,0 +170737435775,224,0 +170737435824,264,0 +170737435874,280,1 +170737435956,220,0 +170737436005,219,0 +170737436053,219,0 +170737436101,218,0 +170737436151,218,0 +170737436199,218,0 +170737436248,218,0 +170737436298,218,0 +170737436347,218,0 +170737436395,218,0 +170737436445,218,0 +170737436493,218,0 +170737436540,218,0 +170737436588,218,0 +170737436636,218,0 +170737436686,218,0 +170737436735,218,0 +170737436783,218,0 +170737436831,218,0 +170737436879,218,0 +170737436929,219,0 +170737436977,219,0 +170737437026,242,0 +170737437074,268,0 +170737437124,266,0 +170737437172,225,0 +170737437221,218,0 +170737437271,218,0 +170737437321,219,0 +170737437369,218,0 +170737437418,218,0 +170737437468,218,0 +170737437516,218,0 +170737437565,218,0 +170737437613,218,0 +170737437661,218,0 +170737437709,218,0 +170737437757,218,0 +170737437806,218,0 +170737437856,218,0 +170737437905,218,0 +170737437953,218,0 +170737438001,218,0 +170737438049,218,0 +170737438097,218,0 +170737438145,218,0 +170737438193,219,0 +170737438241,223,0 +170737438289,266,0 +170737438337,260,0 +170737438387,229,0 +170737438435,218,0 +170737438483,218,0 +170737438531,218,0 +170737438579,218,0 +170737438626,218,0 +170737438676,218,0 +170737438724,218,0 +170737438772,218,0 +170737438820,218,0 +170737438869,218,0 +170737438919,218,0 +170737438967,218,0 +170737439016,218,0 +170737439064,218,0 +170737439112,218,0 +170737439160,218,0 +170737439208,218,0 +170737439256,218,0 +170737439304,218,0 +170737439354,218,0 +170737439402,219,0 +170737439451,220,0 +170737439499,268,0 +170737439549,277,1 +170737439628,221,0 +170737439676,218,0 +170737439724,218,0 +170737439772,219,0 +170737439821,218,0 +170737439870,219,0 +170737439918,218,0 +170737439966,219,0 +170737440014,218,0 +170737440062,219,0 +170737440110,219,0 +170737440158,219,0 +170737440206,219,0 +170737440254,219,0 +170737440304,219,0 +170737440353,219,0 +170737440401,218,0 +170737440449,219,0 +170737440499,218,0 +170737440547,218,0 +170737440596,218,0 +170737440644,219,0 +170737440692,223,0 +170737440742,275,1 +170737440819,234,0 +170737440867,222,0 +170737440915,218,0 +170737440963,218,0 +170737441011,218,0 +170737441061,218,0 +170737441110,218,0 +170737441158,218,0 +170737441206,218,0 +170737441254,218,0 +170737441302,218,0 +170737441350,219,0 +170737441397,218,0 +170737441445,218,0 +170737441493,218,0 +170737441541,218,0 +170737441589,218,0 +170737441637,218,0 +170737441685,218,0 +170737441733,218,0 +170737441781,218,0 +170737441829,218,0 +170737441878,218,0 +170737441926,221,0 +170737441974,281,1 +170737442051,228,0 +170737442099,220,0 +170737442147,218,0 +170737442195,218,0 +170737442243,218,0 +170737442291,218,0 +170737442339,218,0 +170737442387,218,0 +170737442436,218,0 +170737442484,218,0 +170737442532,218,0 +170737442580,218,0 +170737442630,218,0 +170737442679,218,0 +170737442727,218,0 +170737442777,218,0 +170737442826,218,0 +170737442874,218,0 +170737442924,218,0 +170737442973,218,0 +170737443021,218,0 +170737443069,219,0 +170737443117,219,0 +170737443167,250,0 +170737443214,258,0 +170737443262,266,0 +170737443310,228,0 +170737443360,219,0 +170737443408,219,0 +170737443456,218,0 +170737443504,218,0 +170737443553,218,0 +170737443601,218,0 +170737443649,218,0 +170737443697,218,0 +170737443746,218,0 +170737443794,218,0 +170737443842,218,0 +170737443892,219,0 +170737443941,218,0 +170737443989,218,0 +170737444037,219,0 +170737444087,219,0 +170737444135,218,0 +170737444184,219,0 +170737444232,218,0 +170737444282,220,0 +170737444330,220,0 +170737444378,224,0 +170737444427,292,1 +170737444510,232,0 +170737444560,220,0 +170737444609,219,0 +170737444657,218,0 +170737444707,218,0 +170737444756,218,0 +170737444806,218,0 +170737444853,218,0 +170737444901,219,0 +170737444949,218,0 +170737444997,218,0 +170737445045,217,0 +170737445093,218,0 +170737445141,218,0 +170737445189,218,0 +170737445237,218,0 +170737445285,218,0 +170737445333,218,0 +170737445381,218,0 +170737445429,218,0 +170737445477,218,0 +170737445525,219,0 +170737445574,219,0 +170737445622,234,0 +170737445670,279,1 +170737445752,233,0 +170737445800,219,0 +170737445848,218,0 +170737445896,218,0 +170737445945,219,0 +170737445995,219,0 +170737446043,218,0 +170737446090,219,0 +170737446138,219,0 +170737446188,219,0 +170737446236,218,0 +170737446284,218,0 +170737446333,219,0 +170737446381,218,0 +170737446429,218,0 +170737446477,218,0 +170737446525,218,0 +170737446573,218,0 +170737446621,218,0 +170737446670,218,0 +170737446718,218,0 +170737446766,219,0 +170737446814,220,0 +170737446862,284,1 +170737446943,267,0 +170737446991,224,0 +170737447039,218,0 +170737447087,217,0 +170737447135,218,0 +170737447185,217,0 +170737447233,218,0 +170737447281,218,0 +170737447329,218,0 +170737447378,218,0 +170737447428,218,0 +170737447477,218,0 +170737447525,218,0 +170737447575,217,0 +170737447623,218,0 +170737447671,218,0 +170737447719,218,0 +170737447766,218,0 +170737447814,218,0 +170737447864,218,0 +170737447912,218,0 +170737447960,218,0 +170737448008,218,0 +170737448056,222,0 +170737448105,275,1 +170737448183,237,0 +170737448231,222,0 +170737448280,218,0 +170737448328,218,0 +170737448376,218,0 +170737448424,218,0 +170737448472,218,0 +170737448522,218,0 +170737448571,218,0 +170737448621,218,0 +170737448669,218,0 +170737448718,218,0 +170737448766,218,0 +170737448816,217,0 +170737448864,218,0 +170737448913,218,0 +170737448961,218,0 +170737449009,218,0 +170737449059,217,0 +170737449108,218,0 +170737449156,217,0 +170737449204,218,0 +170737449252,218,0 +170737449300,225,0 +170737449350,279,1 +170737449433,230,0 +170737449481,219,0 +170737449529,219,0 +170737449578,218,0 +170737449626,218,0 +170737449676,218,0 +170737449725,219,0 +170737449773,218,0 +170737449823,218,0 +170737449872,218,0 +170737449922,218,0 +170737449970,218,0 +170737450017,218,0 +170737450065,218,0 +170737450113,218,0 +170737450161,218,0 +170737450209,218,0 +170737450257,218,0 +170737450305,218,0 +170737450353,218,0 +170737450401,218,0 +170737450448,218,0 +170737450496,220,0 +170737450544,254,0 +170737450592,264,0 +170737450642,244,0 +170737450689,225,0 +170737450737,219,0 +170737450785,219,0 +170737450833,219,0 +170737450881,219,0 +170737450931,219,0 +170737450979,219,0 +170737451027,219,0 +170737451075,219,0 +170737451123,219,0 +170737451171,219,0 +170737451219,219,0 +170737451267,219,0 +170737451316,219,0 +170737451364,219,0 +170737451412,219,0 +170737451460,219,0 +170737451508,219,0 +170737451556,219,0 +170737451604,219,0 +170737451654,219,0 +170737451703,219,0 +170737451751,225,0 +170737451799,267,0 +170737451847,277,1 +170737451930,220,0 +170737451978,219,0 +170737452026,219,0 +170737452074,219,0 +170737452122,219,0 +170737452170,219,0 +170737452218,219,0 +170737452265,219,0 +170737452315,218,0 +170737452363,219,0 +170737452411,218,0 +170737452459,219,0 +170737452506,219,0 +170737452554,218,0 +170737452602,218,0 +170737452650,218,0 +170737452698,219,0 +170737452746,219,0 +170737452794,219,0 +170737452842,219,0 +170737452890,220,0 +170737452938,222,0 +170737452985,226,0 +170737453033,265,0 +170737453083,286,1 +170737453170,219,0 +170737453218,219,0 +170737453267,219,0 +170737453315,219,0 +170737453363,219,0 +170737453413,219,0 +170737453461,219,0 +170737453509,218,0 +170737453557,219,0 +170737453606,218,0 +170737453656,219,0 +170737453704,218,0 +170737453753,219,0 +170737453803,219,0 +170737453851,218,0 +170737453900,219,0 +170737453948,218,0 +170737453996,219,0 +170737454046,219,0 +170737454095,219,0 +170737454145,219,0 +170737454193,220,0 +170737454241,261,0 +170737454290,264,0 +170737454338,230,0 +170737454387,221,0 +170737454435,218,0 +170737454483,218,0 +170737454531,218,0 +170737454579,217,0 +170737454629,217,0 +170737454677,218,0 +170737454726,217,0 +170737454774,218,0 +170737454822,217,0 +170737454870,218,0 +170737454920,218,0 +170737454968,217,0 +170737455016,218,0 +170737455065,218,0 +170737455115,218,0 +170737455163,218,0 +170737455211,218,0 +170737455260,218,0 +170737455308,218,0 +170737455356,218,0 +170737455404,220,0 +170737455454,279,1 +170737455532,264,0 +170737455580,230,0 +170737455628,218,0 +170737455676,218,0 +170737455724,218,0 +170737455772,218,0 +170737455820,218,0 +170737455869,218,0 +170737455917,218,0 +170737455967,217,0 +170737456017,218,0 +170737456064,217,0 +170737456114,218,0 +170737456162,218,0 +170737456210,218,0 +170737456258,218,0 +170737456307,218,0 +170737456357,218,0 +170737456406,218,0 +170737456454,218,0 +170737456502,218,0 +170737456550,218,0 +170737456600,218,0 +170737456648,220,0 +170737456696,282,1 +170737456776,248,0 +170737456824,223,0 +170737456872,218,0 +170737456920,218,0 +170737456970,218,0 +170737457019,217,0 +170737457067,218,0 +170737457115,217,0 +170737457163,218,0 +170737457213,218,0 +170737457261,218,0 +170737457308,218,0 +170737457356,218,0 +170737457406,218,0 +170737457455,218,0 +170737457503,218,0 +170737457551,218,0 +170737457599,219,0 +170737457647,221,0 +170737457695,221,0 +170737457745,223,0 +170737457793,225,0 +170737457842,228,0 +170737457892,232,0 +170737457940,240,0 +170737457989,240,0 +170737458039,223,0 +170737458087,218,0 +170737458135,218,0 +170737458182,218,0 +170737458230,217,0 +170737458280,217,0 +170737458328,217,0 +170737458377,218,0 +170737458425,218,0 +170737458475,217,0 +170737458524,218,0 +170737458574,217,0 +170737458622,217,0 +170737458670,218,0 +170737458719,217,0 +170737458769,217,0 +170737458818,217,0 +170737458868,217,0 +170737458917,217,0 +170737458967,218,0 +170737459015,218,0 +170737459063,219,0 +170737459111,223,0 +170737459159,284,1 +170737459241,253,0 +170737459289,225,0 +170737459338,219,0 +170737459387,219,0 +170737459435,219,0 +170737459483,219,0 +170737459531,219,0 +170737459579,218,0 +170737459627,218,0 +170737459675,219,0 +170737459723,218,0 +170737459770,218,0 +170737459818,218,0 +170737459866,219,0 +170737459914,218,0 +170737459962,219,0 +170737460010,218,0 +170737460059,218,0 +170737460107,219,0 +170737460155,219,0 +170737460205,219,0 +170737460253,220,0 +170737460300,222,0 +170737460348,228,0 +170737460396,265,0 +170737460444,275,1 +170737460527,222,0 +170737460575,219,0 +170737460623,218,0 +170737460671,218,0 +170737460719,218,0 +170737460767,218,0 +170737460815,218,0 +170737460863,218,0 +170737460911,219,0 +170737460959,218,0 +170737461007,218,0 +170737461056,218,0 +170737461104,218,0 +170737461152,218,0 +170737461202,218,0 +170737461251,218,0 +170737461299,218,0 +170737461347,218,0 +170737461395,218,0 +170737461443,219,0 +170737461491,219,0 +170737461539,220,0 +170737461587,229,0 +170737461635,262,0 +170737461683,268,0 +170737461731,225,0 +170737461779,217,0 +170737461826,217,0 +170737461874,217,0 +170737461922,217,0 +170737461970,217,0 +170737462018,217,0 +170737462066,217,0 +170737462114,217,0 +170737462162,217,0 +170737462210,216,0 +170737462259,217,0 +170737462307,216,0 +170737462355,217,0 +170737462404,217,0 +170737462452,217,0 +170737462500,217,0 +170737462548,217,0 +170737462596,216,0 +170737462644,217,0 +170737462692,217,0 +170737462740,217,0 +170737462788,218,0 +170737462837,281,1 +170737462923,262,0 +170737462971,223,0 +170737463019,217,0 +170737463067,217,0 +170737463115,217,0 +170737463163,217,0 +170737463211,217,0 +170737463259,217,0 +170737463307,217,0 +170737463355,217,0 +170737463404,217,0 +170737463452,217,0 +170737463500,217,0 +170737463548,217,0 +170737463596,216,0 +170737463646,217,0 +170737463694,217,0 +170737463742,217,0 +170737463790,217,0 +170737463838,217,0 +170737463886,217,0 +170737463934,219,0 +170737463982,221,0 +170737464031,226,0 +170737464079,290,1 +170737464160,229,0 +170737464208,219,0 +170737464256,218,0 +170737464303,218,0 +170737464351,218,0 +170737464399,217,0 +170737464449,217,0 +170737464497,218,0 +170737464547,218,0 +170737464596,217,0 +170737464644,218,0 +170737464692,217,0 +170737464740,218,0 +170737464788,218,0 +170737464837,218,0 +170737464885,217,0 +170737464933,217,0 +170737464981,217,0 +170737465029,217,0 +170737465077,218,0 +170737465125,218,0 +170737465173,218,0 +170737465221,218,0 +170737465271,233,0 +170737465319,274,1 +170737465396,234,0 +170737465445,218,0 +170737465495,218,0 +170737465544,217,0 +170737465592,217,0 +170737465642,217,0 +170737465690,217,0 +170737465739,217,0 +170737465787,217,0 +170737465835,218,0 +170737465883,217,0 +170737465933,217,0 +170737465981,217,0 +170737466029,217,0 +170737466077,217,0 +170737466126,217,0 +170737466174,218,0 +170737466224,217,0 +170737466272,218,0 +170737466321,217,0 +170737466371,217,0 +170737466420,218,0 +170737466470,218,0 +170737466518,262,0 +170737466566,260,0 +170737466614,231,0 +170737466662,221,0 +170737466709,218,0 +170737466757,218,0 +170737466807,217,0 +170737466855,217,0 +170737466903,217,0 +170737466952,218,0 +170737467002,217,0 +170737467050,217,0 +170737467098,217,0 +170737467146,217,0 +170737467195,218,0 +170737467243,218,0 +170737467291,218,0 +170737467339,218,0 +170737467387,218,0 +170737467435,217,0 +170737467485,218,0 +170737467533,217,0 +170737467582,218,0 +170737467630,218,0 +170737467678,218,0 +170737467726,221,0 +170737467776,261,0 +170737467824,271,1 +170737467907,219,0 +170737467954,218,0 +170737468002,218,0 +170737468050,218,0 +170737468100,218,0 +170737468148,218,0 +170737468196,218,0 +170737468244,218,0 +170737468292,218,0 +170737468340,218,0 +170737468388,218,0 +170737468437,218,0 +170737468485,218,0 +170737468533,218,0 +170737468581,218,0 +170737468631,218,0 +170737468680,218,0 +170737468728,218,0 +170737468776,218,0 +170737468824,218,0 +170737468873,218,0 +170737468923,219,0 +170737468973,269,0 +170737469022,267,0 +170737469072,255,0 +170737469120,224,0 +170737469168,218,0 +170737469217,218,0 +170737469265,218,0 +170737469314,218,0 +170737469362,217,0 +170737469410,218,0 +170737469458,218,0 +170737469508,218,0 +170737469557,218,0 +170737469607,218,0 +170737469656,218,0 +170737469704,218,0 +170737469752,218,0 +170737469800,218,0 +170737469848,218,0 +170737469896,217,0 +170737469946,217,0 +170737469995,218,0 +170737470043,218,0 +170737470091,218,0 +170737470141,219,0 +170737470189,253,0 +170737470238,282,1 +170737470318,232,0 +170737470368,218,0 +170737470416,218,0 +170737470464,217,0 +170737470512,217,0 +170737470561,217,0 +170737470609,217,0 +170737470657,217,0 +170737470706,217,0 +170737470756,217,0 +170737470804,217,0 +170737470852,217,0 +170737470901,217,0 +170737470949,217,0 +170737470997,217,0 +170737471045,217,0 +170737471093,217,0 +170737471141,217,0 +170737471189,217,0 +170737471237,217,0 +170737471286,217,0 +170737471336,217,0 +170737471384,219,0 +170737471432,285,1 +170737471514,280,1 +170737471593,218,0 +170737471641,218,0 +170737471689,217,0 +170737471737,217,0 +170737471785,217,0 +170737471833,217,0 +170737471883,217,0 +170737471932,217,0 +170737471982,217,0 +170737472031,217,0 +170737472079,217,0 +170737472127,217,0 +170737472177,217,0 +170737472225,217,0 +170737472273,217,0 +170737472320,217,0 +170737472370,217,0 +170737472418,217,0 +170737472466,217,0 +170737472514,217,0 +170737472562,217,0 +170737472610,218,0 +170737472658,269,0 +170737472707,260,0 +170737472755,226,0 +170737472803,219,0 +170737472851,217,0 +170737472899,217,0 +170737472949,217,0 +170737472997,217,0 +170737473045,217,0 +170737473093,217,0 +170737473142,217,0 +170737473190,217,0 +170737473238,217,0 +170737473286,217,0 +170737473334,217,0 +170737473382,217,0 +170737473429,217,0 +170737473479,217,0 +170737473527,217,0 +170737473575,217,0 +170737473623,217,0 +170737473670,217,0 +170737473718,217,0 +170737473766,217,0 +170737473814,218,0 +170737473862,225,0 +170737473910,265,0 +170737473958,281,1 +170737474035,219,0 +170737474083,218,0 +170737474131,218,0 +170737474179,218,0 +170737474228,218,0 +170737474276,218,0 +170737474324,218,0 +170737474372,218,0 +170737474420,218,0 +170737474469,218,0 +170737474517,218,0 +170737474565,218,0 +170737474613,218,0 +170737474661,218,0 +170737474709,217,0 +170737474757,218,0 +170737474805,218,0 +170737474852,218,0 +170737474900,218,0 +170737474948,218,0 +170737474996,218,0 +170737475044,219,0 +170737475092,221,0 +170737475141,274,1 +170737475219,226,0 +170737475267,219,0 +170737475315,217,0 +170737475363,217,0 +170737475411,218,0 +170737475459,217,0 +170737475507,217,0 +170737475555,218,0 +170737475603,217,0 +170737475650,217,0 +170737475698,217,0 +170737475746,217,0 +170737475794,218,0 +170737475842,217,0 +170737475890,217,0 +170737475938,217,0 +170737475986,217,0 +170737476033,217,0 +170737476083,217,0 +170737476132,217,0 +170737476182,217,0 +170737476230,218,0 +170737476278,218,0 +170737476326,239,0 +170737476375,278,1 +170737476451,235,0 +170737476501,222,0 +170737476550,220,0 +170737476598,221,0 +170737476646,220,0 +170737476694,221,0 +170737476742,220,0 +170737476792,220,0 +170737476839,220,0 +170737476887,221,0 +170737476935,221,0 +170737476985,220,0 +170737477033,220,0 +170737477081,220,0 +170737477129,221,0 +170737477177,220,0 +170737477225,220,0 +170737477273,220,0 +170737477321,220,0 +170737477368,220,0 +170737477416,220,0 +170737477466,221,0 +170737477514,220,0 +170737477563,257,0 +170737477611,276,1 +170737477691,229,0 +170737477739,217,0 +170737477787,217,0 +170737477837,217,0 +170737477885,217,0 +170737477934,217,0 +170737477982,217,0 +170737478032,217,0 +170737478080,218,0 +170737478129,217,0 +170737478177,217,0 +170737478225,217,0 +170737478273,217,0 +170737478321,217,0 +170737478369,217,0 +170737478417,217,0 +170737478466,217,0 +170737478514,217,0 +170737478564,217,0 +170737478612,217,0 +170737478660,218,0 +170737478708,218,0 +170737478757,219,0 +170737478805,270,1 +170737478889,231,0 +170737478937,219,0 +170737478986,218,0 +170737479034,217,0 +170737479084,217,0 +170737479133,218,0 +170737479181,217,0 +170737479229,217,0 +170737479277,217,0 +170737479325,217,0 +170737479373,218,0 +170737479421,218,0 +170737479469,217,0 +170737479516,217,0 +170737479564,217,0 +170737479612,218,0 +170737479660,218,0 +170737479708,218,0 +170737479756,217,0 +170737479804,217,0 +170737479852,217,0 +170737479899,218,0 +170737479947,217,0 +170737479995,220,0 +170737480043,276,1 +170737480126,227,0 +170737480176,219,0 +170737480224,217,0 +170737480272,217,0 +170737480320,218,0 +170737480369,217,0 +170737480417,217,0 +170737480465,217,0 +170737480513,217,0 +170737480561,217,0 +170737480611,217,0 +170737480659,217,0 +170737480707,218,0 +170737480755,218,0 +170737480803,217,0 +170737480851,218,0 +170737480898,218,0 +170737480946,217,0 +170737480996,218,0 +170737481044,217,0 +170737481092,218,0 +170737481140,217,0 +170737481188,218,0 +170737481237,268,0 +170737481285,272,1 +170737481363,231,0 +170737481411,218,0 +170737481459,218,0 +170737481507,218,0 +170737481555,218,0 +170737481603,217,0 +170737481651,218,0 +170737481699,218,0 +170737481747,218,0 +170737481795,218,0 +170737481844,217,0 +170737481892,217,0 +170737481940,217,0 +170737481988,217,0 +170737482036,218,0 +170737482084,217,0 +170737482132,217,0 +170737482180,218,0 +170737482228,217,0 +170737482278,218,0 +170737482326,217,0 +170737482375,217,0 +170737482425,218,0 +170737482474,277,1 +170737482556,287,1 +170737482634,218,0 +170737482682,218,0 +170737482732,217,0 +170737482780,217,0 +170737482828,217,0 +170737482877,217,0 +170737482925,217,0 +170737482973,217,0 +170737483021,217,0 +170737483069,218,0 +170737483117,218,0 +170737483165,218,0 +170737483215,217,0 +170737483263,218,0 +170737483311,218,0 +170737483360,217,0 +170737483410,217,0 +170737483459,217,0 +170737483507,217,0 +170737483555,217,0 +170737483603,217,0 +170737483653,219,0 +170737483702,290,1 +170737483785,279,1 +170737483861,219,0 +170737483911,218,0 +170737483959,218,0 +170737484008,218,0 +170737484056,218,0 +170737484104,218,0 +170737484152,218,0 +170737484202,218,0 +170737484251,218,0 +170737484301,218,0 +170737484349,217,0 +170737484398,218,0 +170737484446,218,0 +170737484494,218,0 +170737484544,217,0 +170737484592,218,0 +170737484640,218,0 +170737484688,218,0 +170737484737,218,0 +170737484785,218,0 +170737484833,218,0 +170737484883,218,0 +170737484930,268,0 +170737484978,282,1 +170737485054,231,0 +170737485104,219,0 +170737485152,218,0 +170737485200,218,0 +170737485248,218,0 +170737485296,218,0 +170737485344,218,0 +170737485392,218,0 +170737485441,218,0 +170737485489,217,0 +170737485537,218,0 +170737485587,217,0 +170737485636,218,0 +170737485686,217,0 +170737485735,218,0 +170737485783,218,0 +170737485831,218,0 +170737485879,218,0 +170737485927,218,0 +170737485975,218,0 +170737486023,218,0 +170737486073,218,0 +170737486121,219,0 +170737486170,269,0 +170737486218,260,0 +170737486266,224,0 +170737486314,220,0 +170737486363,218,0 +170737486412,218,0 +170737486459,218,0 +170737486509,218,0 +170737486557,218,0 +170737486605,218,0 +170737486653,217,0 +170737486702,218,0 +170737486752,218,0 +170737486801,217,0 +170737486849,218,0 +170737486897,218,0 +170737486947,217,0 +170737486995,217,0 +170737487043,218,0 +170737487091,218,0 +170737487140,218,0 +170737487188,218,0 +170737487236,218,0 +170737487284,218,0 +170737487332,219,0 +170737487380,268,0 +170737487428,268,0 +170737487478,248,0 +170737487526,223,0 +170737487574,218,0 +170737487622,218,0 +170737487671,218,0 +170737487719,218,0 +170737487767,218,0 +170737487815,218,0 +170737487863,218,0 +170737487912,218,0 +170737487960,218,0 +170737488008,218,0 +170737488058,218,0 +170737488107,218,0 +170737488155,218,0 +170737488203,218,0 +170737488251,218,0 +170737488299,218,0 +170737488347,218,0 +170737488396,218,0 +170737488444,218,0 +170737488492,218,0 +170737488542,218,0 +170737488590,220,0 +170737488637,250,0 +170737488685,257,0 +170737488733,231,0 +170737488781,219,0 +170737488829,218,0 +170737488879,218,0 +170737488927,218,0 +170737488975,218,0 +170737489023,218,0 +170737489072,218,0 +170737489120,217,0 +170737489168,218,0 +170737489218,218,0 +170737489267,218,0 +170737489315,218,0 +170737489363,218,0 +170737489413,218,0 +170737489461,218,0 +170737489509,218,0 +170737489557,218,0 +170737489604,218,0 +170737489654,218,0 +170737489702,218,0 +170737489750,218,0 +170737489800,219,0 +170737489849,286,1 +170737489937,258,0 +170737489986,225,0 +170737490034,218,0 +170737490082,218,0 +170737490130,218,0 +170737490178,217,0 +170737490226,217,0 +170737490273,218,0 +170737490321,218,0 +170737490369,218,0 +170737490419,218,0 +170737490467,218,0 +170737490514,218,0 +170737490562,218,0 +170737490610,218,0 +170737490658,218,0 +170737490706,217,0 +170737490754,218,0 +170737490802,217,0 +170737490849,218,0 +170737490899,218,0 +170737490948,218,0 +170737490996,218,0 +170737491044,218,0 +170737491092,218,0 +170737491140,218,0 +170737491188,218,0 +170737491236,217,0 +170737491284,218,0 +170737491331,218,0 +170737491381,218,0 +170737491429,218,0 +170737491477,218,0 +170737491524,218,0 +170737491572,218,0 +170737491620,218,0 +170737491670,223,0 +170737491718,274,1 +170737491803,233,0 +170737491851,218,0 +170737491899,218,0 +170737491947,218,0 +170737491995,218,0 +170737492043,218,0 +170737492091,218,0 +170737492139,218,0 +170737492188,218,0 +170737492236,218,0 +170737492284,218,0 +170737492332,218,0 +170737492380,218,0 +170737492428,218,0 +170737492475,218,0 +170737492523,217,0 +170737492571,218,0 +170737492619,218,0 +170737492667,217,0 +170737492715,217,0 +170737492764,217,0 +170737492812,218,0 +170737492860,218,0 +170737492908,231,0 +170737492956,285,1 +170737493036,233,0 +170737493084,218,0 +170737493132,218,0 +170737493179,217,0 +170737493229,218,0 +170737493277,217,0 +170737493325,218,0 +170737493373,218,0 +170737493420,218,0 +170737493470,218,0 +170737493518,218,0 +170737493566,217,0 +170737493615,217,0 +170737493665,218,0 +170737493714,217,0 +170737493762,218,0 +170737493812,218,0 +170737493861,218,0 +170737493909,218,0 +170737493957,217,0 +170737494007,217,0 +170737494055,218,0 +170737494103,218,0 +170737494151,271,1 +170737494233,281,1 +170737494311,218,0 +170737494361,217,0 +170737494409,217,0 +170737494457,217,0 +170737494506,217,0 +170737494554,217,0 +170737494602,217,0 +170737494650,217,0 +170737494698,217,0 +170737494746,217,0 +170737494794,217,0 +170737494842,217,0 +170737494890,217,0 +170737494938,218,0 +170737494985,217,0 +170737495035,217,0 +170737495084,218,0 +170737495134,217,0 +170737495183,217,0 +170737495231,217,0 +170737495279,217,0 +170737495329,218,0 +170737495377,272,1 +170737495457,274,1 +170737495529,219,0 +170737495579,218,0 +170737495626,218,0 +170737495674,217,0 +170737495722,218,0 +170737495770,217,0 +170737495818,218,0 +170737495866,218,0 +170737495914,217,0 +170737495962,218,0 +170737496012,218,0 +170737496061,218,0 +170737496111,217,0 +170737496160,219,0 +170737496210,219,0 +170737496258,219,0 +170737496307,219,0 +170737496355,219,0 +170737496405,219,0 +170737496453,219,0 +170737496501,219,0 +170737496549,220,0 +170737496597,271,1 +170737496675,274,1 +170737496756,219,0 +170737496804,218,0 +170737496851,218,0 +170737496899,218,0 +170737496947,217,0 +170737496997,217,0 +170737497046,217,0 +170737497094,218,0 +170737497142,218,0 +170737497190,217,0 +170737497238,218,0 +170737497288,217,0 +170737497337,218,0 +170737497385,217,0 +170737497433,217,0 +170737497481,217,0 +170737497529,217,0 +170737497577,217,0 +170737497626,217,0 +170737497674,217,0 +170737497722,217,0 +170737497770,218,0 +170737497818,227,0 +170737497866,275,1 +170737497949,234,0 +170737497996,218,0 +170737498044,218,0 +170737498092,218,0 +170737498142,217,0 +170737498190,218,0 +170737498238,218,0 +170737498285,218,0 +170737498333,218,0 +170737498381,218,0 +170737498429,218,0 +170737498477,218,0 +170737498526,218,0 +170737498574,217,0 +170737498622,217,0 +170737498670,218,0 +170737498718,218,0 +170737498766,218,0 +170737498814,218,0 +170737498862,218,0 +170737498909,218,0 +170737498957,218,0 +170737499005,219,0 +170737499053,270,1 +170737499137,269,0 +170737499185,229,0 +170737499233,218,0 +170737499280,217,0 +170737499328,217,0 +170737499376,217,0 +170737499424,217,0 +170737499472,217,0 +170737499520,218,0 +170737499568,218,0 +170737499616,217,0 +170737499664,217,0 +170737499712,217,0 +170737499759,218,0 +170737499807,217,0 +170737499855,217,0 +170737499903,217,0 +170737499951,217,0 +170737499999,218,0 +170737500047,217,0 +170737500095,218,0 +170737500143,217,0 +170737500192,218,0 +170737500242,219,0 +170737500289,255,0 +170737500337,293,1 +170737500416,221,0 +170737500466,217,0 +170737500514,217,0 +170737500562,217,0 +170737500611,217,0 +170737500661,217,0 +170737500709,218,0 +170737500757,217,0 +170737500805,217,0 +170737500853,217,0 +170737500901,218,0 +170737500949,217,0 +170737500997,217,0 +170737501046,217,0 +170737501094,217,0 +170737501142,218,0 +170737501190,217,0 +170737501238,218,0 +170737501286,217,0 +170737501335,217,0 +170737501383,217,0 +170737501431,218,0 +170737501479,219,0 +170737501527,269,0 +170737501575,279,1 +170737501656,225,0 +170737501704,217,0 +170737501752,217,0 +170737501800,217,0 +170737501847,217,0 +170737501895,217,0 +170737501943,217,0 +170737501991,217,0 +170737502039,217,0 +170737502087,217,0 +170737502135,217,0 +170737502183,217,0 +170737502230,217,0 +170737502280,217,0 +170737502328,217,0 +170737502376,217,0 +170737502425,217,0 +170737502473,217,0 +170737502521,217,0 +170737502569,217,0 +170737502616,217,0 +170737502664,218,0 +170737502712,220,0 +170737502760,282,1 +170737502842,239,0 +170737502890,223,0 +170737502938,219,0 +170737502986,218,0 +170737503033,218,0 +170737503081,218,0 +170737503129,218,0 +170737503177,219,0 +170737503225,218,0 +170737503273,218,0 +170737503321,218,0 +170737503368,218,0 +170737503416,219,0 +170737503464,218,0 +170737503512,219,0 +170737503560,218,0 +170737503608,218,0 +170737503657,218,0 +170737503705,219,0 +170737503753,219,0 +170737503801,219,0 +170737503849,219,0 +170737503897,219,0 +170737503945,222,0 +170737503993,278,1 +170737504073,239,0 +170737504121,221,0 +170737504168,218,0 +170737504216,218,0 +170737504264,218,0 +170737504312,218,0 +170737504362,218,0 +170737504410,218,0 +170737504457,218,0 +170737504505,218,0 +170737504553,218,0 +170737504601,218,0 +170737504649,218,0 +170737504697,218,0 +170737504745,218,0 +170737504793,218,0 +170737504840,217,0 +170737504888,217,0 +170737504936,218,0 +170737504984,218,0 +170737505032,218,0 +170737505080,218,0 +170737505128,218,0 +170737505175,221,0 +170737505225,281,1 +170737505302,233,0 +170737505350,220,0 +170737505399,218,0 +170737505447,218,0 +170737505495,218,0 +170737505543,218,0 +170737505592,218,0 +170737505640,218,0 +170737505690,217,0 +170737505738,217,0 +170737505787,218,0 +170737505835,218,0 +170737505883,217,0 +170737505933,218,0 +170737505981,218,0 +170737506029,217,0 +170737506077,217,0 +170737506124,217,0 +170737506172,218,0 +170737506220,218,0 +170737506268,218,0 +170737506316,218,0 +170737506364,219,0 +170737506412,221,0 +170737506460,284,1 +170737506535,230,0 +170737506583,221,0 +170737506631,218,0 +170737506679,218,0 +170737506727,218,0 +170737506774,218,0 +170737506824,218,0 +170737506872,218,0 +170737506920,218,0 +170737506967,218,0 +170737507015,218,0 +170737507063,218,0 +170737507111,218,0 +170737507159,218,0 +170737507207,218,0 +170737507255,218,0 +170737507303,218,0 +170737507350,218,0 +170737507398,218,0 +170737507446,218,0 +170737507494,218,0 +170737507544,218,0 +170737507591,219,0 +170737507639,230,0 +170737507687,297,1 +170737507766,233,0 +170737507814,220,0 +170737507862,218,0 +170737507910,218,0 +170737507958,218,0 +170737508006,218,0 +170737508053,218,0 +170737508103,218,0 +170737508151,218,0 +170737508200,218,0 +170737508248,218,0 +170737508296,218,0 +170737508344,218,0 +170737508392,218,0 +170737508440,218,0 +170737508488,218,0 +170737508535,218,0 +170737508583,218,0 +170737508631,218,0 +170737508679,218,0 +170737508727,218,0 +170737508775,218,0 +170737508823,218,0 +170737508871,225,0 +170737508919,279,1 +170737508999,234,0 +170737509047,218,0 +170737509095,218,0 +170737509143,218,0 +170737509192,218,0 +170737509240,218,0 +170737509288,218,0 +170737509336,218,0 +170737509384,217,0 +170737509432,218,0 +170737509479,218,0 +170737509527,218,0 +170737509575,218,0 +170737509623,218,0 +170737509671,218,0 +170737509720,218,0 +170737509770,218,0 +170737509818,218,0 +170737509867,218,0 +170737509915,218,0 +170737509963,218,0 +170737510011,218,0 +170737510059,219,0 +170737510107,238,0 +170737510154,275,1 +170737510234,230,0 +170737510282,218,0 +170737510330,218,0 +170737510378,218,0 +170737510427,218,0 +170737510475,218,0 +170737510523,218,0 +170737510571,218,0 +170737510619,218,0 +170737510667,218,0 +170737510714,218,0 +170737510762,218,0 +170737510810,218,0 +170737510858,218,0 +170737510906,218,0 +170737510954,218,0 +170737511002,218,0 +170737511050,218,0 +170737511097,217,0 +170737511145,218,0 +170737511193,218,0 +170737511243,218,0 +170737511290,219,0 +170737511338,250,0 +170737511386,275,1 +170737511465,230,0 +170737511512,219,0 +170737511560,218,0 +170737511610,218,0 +170737511658,218,0 +170737511706,218,0 +170737511753,218,0 +170737511801,218,0 +170737511849,218,0 +170737511897,218,0 +170737511945,218,0 +170737511993,218,0 +170737512041,218,0 +170737512089,218,0 +170737512138,218,0 +170737512186,218,0 +170737512234,218,0 +170737512282,218,0 +170737512330,218,0 +170737512378,218,0 +170737512426,218,0 +170737512475,218,0 +170737512523,219,0 +170737512571,289,1 +170737512654,267,0 +170737512703,226,0 +170737512751,219,0 +170737512799,218,0 +170737512847,218,0 +170737512895,218,0 +170737512943,218,0 +170737512991,218,0 +170737513038,218,0 +170737513086,218,0 +170737513134,218,0 +170737513182,218,0 +170737513230,218,0 +170737513278,218,0 +170737513326,218,0 +170737513375,218,0 +170737513423,218,0 +170737513471,218,0 +170737513519,218,0 +170737513568,218,0 +170737513616,218,0 +170737513664,218,0 +170737513712,218,0 +170737513760,219,0 +170737513808,273,1 +170737513889,272,1 +170737513966,219,0 +170737514015,218,0 +170737514063,218,0 +170737514111,218,0 +170737514159,218,0 +170737514207,218,0 +170737514255,218,0 +170737514303,218,0 +170737514351,218,0 +170737514399,218,0 +170737514446,218,0 +170737514494,218,0 +170737514542,218,0 +170737514590,218,0 +170737514640,218,0 +170737514688,218,0 +170737514735,218,0 +170737514783,218,0 +170737514831,218,0 +170737514879,218,0 +170737514927,218,0 +170737514977,218,0 +170737515024,263,0 +170737515072,283,1 +170737515151,232,0 +170737515199,218,0 +170737515247,217,0 +170737515295,218,0 +170737515343,218,0 +170737515392,217,0 +170737515440,217,0 +170737515488,217,0 +170737515536,217,0 +170737515586,218,0 +170737515635,217,0 +170737515683,218,0 +170737515731,217,0 +170737515779,217,0 +170737515827,217,0 +170737515876,217,0 +170737515926,217,0 +170737515974,218,0 +170737516023,217,0 +170737516071,217,0 +170737516121,217,0 +170737516169,218,0 +170737516218,220,0 +170737516266,267,0 +170737516316,263,0 +170737516364,226,0 +170737516413,220,0 +170737516461,218,0 +170737516509,218,0 +170737516557,218,0 +170737516606,218,0 +170737516654,218,0 +170737516704,218,0 +170737516752,218,0 +170737516800,218,0 +170737516848,218,0 +170737516896,218,0 +170737516944,218,0 +170737516992,218,0 +170737517040,217,0 +170737517089,218,0 +170737517137,218,0 +170737517185,217,0 +170737517235,217,0 +170737517284,217,0 +170737517332,218,0 +170737517382,217,0 +170737517430,219,0 +170737517478,269,0 +170737517526,269,0 +170737517573,253,0 +170737517621,225,0 +170737517671,220,0 +170737517719,220,0 +170737517768,219,0 +170737517818,220,0 +170737517866,220,0 +170737517914,219,0 +170737517962,219,0 +170737518010,219,0 +170737518058,219,0 +170737518105,219,0 +170737518153,219,0 +170737518201,219,0 +170737518249,219,0 +170737518297,219,0 +170737518347,219,0 +170737518395,219,0 +170737518443,219,0 +170737518491,219,0 +170737518539,219,0 +170737518587,219,0 +170737518636,219,0 +170737518684,220,0 +170737518734,266,0 +170737518783,275,1 +170737518862,224,0 +170737518910,218,0 +170737518958,218,0 +170737519006,218,0 +170737519054,218,0 +170737519101,218,0 +170737519149,218,0 +170737519197,218,0 +170737519245,218,0 +170737519293,218,0 +170737519341,218,0 +170737519389,218,0 +170737519437,218,0 +170737519486,218,0 +170737519536,218,0 +170737519585,218,0 +170737519633,218,0 +170737519683,218,0 +170737519731,218,0 +170737519779,218,0 +170737519828,218,0 +170737519878,219,0 +170737519926,221,0 +170737519975,269,0 +170737520025,279,1 +170737520105,220,0 +170737520154,218,0 +170737520202,219,0 +170737520250,218,0 +170737520298,218,0 +170737520348,218,0 +170737520397,218,0 +170737520447,218,0 +170737520495,218,0 +170737520542,218,0 +170737520590,218,0 +170737520638,218,0 +170737520688,218,0 +170737520736,218,0 +170737520784,218,0 +170737520833,218,0 +170737520883,218,0 +170737520931,218,0 +170737520979,218,0 +170737521027,218,0 +170737521075,219,0 +170737521122,220,0 +170737521170,267,0 +170737521218,270,1 +170737521296,233,0 +170737521344,218,0 +170737521392,218,0 +170737521440,218,0 +170737521489,218,0 +170737521537,218,0 +170737521587,218,0 +170737521636,218,0 +170737521684,218,0 +170737521734,218,0 +170737521782,218,0 +170737521831,218,0 +170737521879,218,0 +170737521927,218,0 +170737521975,218,0 +170737522024,218,0 +170737522072,218,0 +170737522120,218,0 +170737522168,218,0 +170737522218,218,0 +170737522266,218,0 +170737522314,219,0 +170737522362,219,0 +170737522410,285,1 +170737522491,273,1 +170737522571,219,0 +170737522619,219,0 +170737522667,219,0 +170737522715,218,0 +170737522763,218,0 +170737522811,219,0 +170737522860,219,0 +170737522910,218,0 +170737522958,218,0 +170737523006,219,0 +170737523055,219,0 +170737523103,218,0 +170737523151,218,0 +170737523199,218,0 +170737523247,219,0 +170737523296,218,0 +170737523344,218,0 +170737523394,218,0 +170737523442,218,0 +170737523491,219,0 +170737523539,219,0 +170737523587,219,0 +170737523637,273,1 +170737523714,267,0 +170737523762,230,0 +170737523810,218,0 +170737523858,218,0 +170737523906,218,0 +170737523954,218,0 +170737524002,218,0 +170737524051,218,0 +170737524099,218,0 +170737524147,218,0 +170737524197,217,0 +170737524246,217,0 +170737524294,217,0 +170737524344,217,0 +170737524391,218,0 +170737524439,218,0 +170737524487,218,0 +170737524535,218,0 +170737524585,218,0 +170737524633,218,0 +170737524681,218,0 +170737524730,218,0 +170737524778,218,0 +170737524826,221,0 +170737524874,281,1 +170737524958,234,0 +170737525006,220,0 +170737525056,218,0 +170737525104,218,0 +170737525152,218,0 +170737525200,217,0 +170737525248,218,0 +170737525296,218,0 +170737525345,217,0 +170737525393,217,0 +170737525441,217,0 +170737525489,218,0 +170737525537,218,0 +170737525587,217,0 +170737525634,218,0 +170737525684,217,0 +170737525732,218,0 +170737525782,218,0 +170737525829,218,0 +170737525877,218,0 +170737525925,218,0 +170737525973,218,0 +170737526023,219,0 +170737526071,223,0 +170737526120,274,1 +170737526204,230,0 +170737526254,218,0 +170737526302,218,0 +170737526350,218,0 +170737526398,217,0 +170737526446,218,0 +170737526496,218,0 +170737526544,218,0 +170737526592,218,0 +170737526639,217,0 +170737526689,217,0 +170737526737,218,0 +170737526785,218,0 +170737526834,218,0 +170737526882,217,0 +170737526932,217,0 +170737526980,217,0 +170737527029,217,0 +170737527079,217,0 +170737527128,217,0 +170737527176,217,0 +170737527224,218,0 +170737527272,218,0 +170737527320,236,0 +170737527370,280,1 +170737527448,233,0 +170737527496,218,0 +170737527544,217,0 +170737527594,217,0 +170737527642,217,0 +170737527690,217,0 +170737527739,217,0 +170737527789,217,0 +170737527838,217,0 +170737527888,217,0 +170737527936,217,0 +170737527984,217,0 +170737528033,217,0 +170737528081,217,0 +170737528130,217,0 +170737528180,217,0 +170737528228,217,0 +170737528278,217,0 +170737528327,217,0 +170737528377,218,0 +170737528425,217,0 +170737528473,218,0 +170737528521,220,0 +170737528569,267,0 +170737528617,284,1 +170737528697,223,0 +170737528745,218,0 +170737528794,218,0 +170737528842,218,0 +170737528890,217,0 +170737528938,217,0 +170737528986,217,0 +170737529034,217,0 +170737529082,217,0 +170737529130,218,0 +170737529178,217,0 +170737529228,217,0 +170737529276,217,0 +170737529324,217,0 +170737529373,217,0 +170737529421,217,0 +170737529469,218,0 +170737529519,217,0 +170737529567,217,0 +170737529616,218,0 +170737529664,218,0 +170737529713,219,0 +170737529761,269,0 +170737529809,275,1 +170737529888,231,0 +170737529936,218,0 +170737529984,217,0 +170737530032,218,0 +170737530081,218,0 +170737530131,217,0 +170737530180,218,0 +170737530228,217,0 +170737530276,217,0 +170737530324,218,0 +170737530372,217,0 +170737530420,217,0 +170737530468,218,0 +170737530518,217,0 +170737530566,217,0 +170737530615,217,0 +170737530663,217,0 +170737530711,218,0 +170737530759,218,0 +170737530809,217,0 +170737530857,217,0 +170737530904,218,0 +170737530954,218,0 +170737531002,251,0 +170737531051,293,1 +170737531133,230,0 +170737531181,218,0 +170737531229,217,0 +170737531277,217,0 +170737531326,218,0 +170737531374,217,0 +170737531424,217,0 +170737531473,217,0 +170737531521,217,0 +170737531569,217,0 +170737531617,217,0 +170737531667,217,0 +170737531715,217,0 +170737531762,217,0 +170737531810,217,0 +170737531860,217,0 +170737531908,217,0 +170737531956,217,0 +170737532004,217,0 +170737532052,217,0 +170737532100,217,0 +170737532148,218,0 +170737532197,219,0 +170737532245,284,1 +170737532325,246,0 +170737532374,223,0 +170737532422,217,0 +170737532472,217,0 +170737532520,217,0 +170737532567,217,0 +170737532615,217,0 +170737532663,217,0 +170737532713,217,0 +170737532761,217,0 +170737532810,217,0 +170737532858,217,0 +170737532906,217,0 +170737532954,217,0 +170737533002,217,0 +170737533050,217,0 +170737533098,217,0 +170737533146,217,0 +170737533194,218,0 +170737533242,217,0 +170737533290,217,0 +170737533338,217,0 +170737533388,217,0 +170737533436,220,0 +170737533484,283,1 +170737533569,236,0 +170737533618,220,0 +170737533666,218,0 +170737533714,218,0 +170737533762,217,0 +170737533810,217,0 +170737533858,217,0 +170737533906,218,0 +170737533954,218,0 +170737534004,217,0 +170737534053,217,0 +170737534101,217,0 +170737534151,217,0 +170737534200,217,0 +170737534250,217,0 +170737534298,217,0 +170737534346,217,0 +170737534395,217,0 +170737534443,217,0 +170737534493,217,0 +170737534541,217,0 +170737534589,218,0 +170737534637,219,0 +170737534685,265,0 +170737534734,276,1 +170737534814,225,0 +170737534862,217,0 +170737534910,217,0 +170737534958,217,0 +170737535007,217,0 +170737535055,217,0 +170737535105,217,0 +170737535153,217,0 +170737535201,217,0 +170737535250,217,0 +170737535300,217,0 +170737535348,217,0 +170737535396,217,0 +170737535444,217,0 +170737535492,217,0 +170737535540,217,0 +170737535588,217,0 +170737535636,217,0 +170737535684,217,0 +170737535732,217,0 +170737535779,217,0 +170737535828,217,0 +170737535875,218,0 +170737535923,268,0 +170737535973,283,1 +170737536050,228,0 +170737536098,218,0 +170737536147,217,0 +170737536195,217,0 +170737536245,217,0 +170737536293,217,0 +170737536341,217,0 +170737536389,217,0 +170737536437,218,0 +170737536485,217,0 +170737536533,217,0 +170737536581,217,0 +170737536629,217,0 +170737536677,218,0 +170737536725,217,0 +170737536773,217,0 +170737536821,217,0 +170737536869,217,0 +170737536917,217,0 +170737536965,217,0 +170737537014,217,0 +170737537064,218,0 +170737537112,220,0 +170737537160,275,1 +170737537240,230,0 +170737537290,220,0 +170737537338,218,0 +170737537386,218,0 +170737537435,218,0 +170737537483,217,0 +170737537531,218,0 +170737537581,218,0 +170737537629,217,0 +170737537677,218,0 +170737537725,218,0 +170737537774,218,0 +170737537824,218,0 +170737537872,218,0 +170737537920,217,0 +170737537969,217,0 +170737538017,217,0 +170737538065,218,0 +170737538115,218,0 +170737538163,217,0 +170737538212,217,0 +170737538260,218,0 +170737538308,219,0 +170737538358,229,0 +170737538406,287,1 +170737538485,234,0 +170737538535,218,0 +170737538584,218,0 +170737538632,218,0 +170737538680,218,0 +170737538728,217,0 +170737538776,217,0 +170737538824,217,0 +170737538874,217,0 +170737538922,217,0 +170737538970,217,0 +170737539020,217,0 +170737539068,217,0 +170737539115,217,0 +170737539165,217,0 +170737539213,217,0 +170737539261,218,0 +170737539309,218,0 +170737539358,217,0 +170737539408,218,0 +170737539456,218,0 +170737539504,217,0 +170737539553,219,0 +170737539601,281,1 +170737539680,277,1 +170737539757,219,0 +170737539806,218,0 +170737539856,217,0 +170737539904,217,0 +170737539952,217,0 +170737540000,217,0 +170737540048,217,0 +170737540097,217,0 +170737540145,217,0 +170737540193,217,0 +170737540243,217,0 +170737540291,217,0 +170737540340,217,0 +170737540388,217,0 +170737540438,217,0 +170737540486,217,0 +170737540535,217,0 +170737540583,217,0 +170737540631,217,0 +170737540681,217,0 +170737540730,218,0 +170737540778,218,0 +170737540828,278,1 +170737540906,282,1 +170737540986,219,0 +170737541034,218,0 +170737541082,218,0 +170737541130,218,0 +170737541178,217,0 +170737541226,217,0 +170737541274,217,0 +170737541322,218,0 +170737541370,218,0 +170737541417,217,0 +170737541465,218,0 +170737541515,218,0 +170737541564,218,0 +170737541612,217,0 +170737541660,217,0 +170737541709,217,0 +170737541757,217,0 +170737541805,217,0 +170737541853,218,0 +170737541901,218,0 +170737541949,218,0 +170737541999,219,0 +170737542047,265,0 +170737542095,281,1 +170737542178,230,0 +170737542228,217,0 +170737542276,217,0 +170737542324,217,0 +170737542373,217,0 +170737542421,217,0 +170737542469,217,0 +170737542517,217,0 +170737542565,217,0 +170737542615,217,0 +170737542664,217,0 +170737542712,217,0 +170737542762,217,0 +170737542810,217,0 +170737542858,217,0 +170737542906,217,0 +170737542955,217,0 +170737543003,217,0 +170737543051,217,0 +170737543099,217,0 +170737543149,217,0 +170737543197,218,0 +170737543245,219,0 +170737543293,281,1 +170737543377,262,0 +170737543425,223,0 +170737543473,218,0 +170737543521,218,0 +170737543569,218,0 +170737543617,218,0 +170737543665,218,0 +170737543713,218,0 +170737543761,218,0 +170737543809,218,0 +170737543857,217,0 +170737543906,217,0 +170737543956,218,0 +170737544004,218,0 +170737544052,218,0 +170737544101,218,0 +170737544149,218,0 +170737544197,218,0 +170737544245,218,0 +170737544293,218,0 +170737544341,218,0 +170737544391,218,0 +170737544439,218,0 +170737544487,220,0 +170737544535,285,1 +170737544614,245,0 +170737544662,223,0 +170737544710,218,0 +170737544758,218,0 +170737544808,218,0 +170737544856,218,0 +170737544904,218,0 +170737544953,218,0 +170737545003,218,0 +170737545051,218,0 +170737545098,218,0 +170737545146,218,0 +170737545196,218,0 +170737545244,218,0 +170737545292,218,0 +170737545340,218,0 +170737545388,218,0 +170737545436,218,0 +170737545485,218,0 +170737545533,218,0 +170737545583,218,0 +170737545632,218,0 +170737545680,219,0 +170737545728,221,0 +170737545778,268,0 +170737545826,279,1 +170737545908,219,0 +170737545957,218,0 +170737546005,218,0 +170737546053,218,0 +170737546101,218,0 +170737546149,218,0 +170737546197,218,0 +170737546245,218,0 +170737546293,218,0 +170737546340,218,0 +170737546388,218,0 +170737546436,218,0 +170737546484,218,0 +170737546534,218,0 +170737546583,218,0 +170737546631,218,0 +170737546681,218,0 +170737546729,218,0 +170737546777,218,0 +170737546825,218,0 +170737546872,218,0 +170737546920,219,0 +170737546968,257,0 +170737547018,274,1 +170737547102,228,0 +170737547150,218,0 +170737547198,218,0 +170737547246,218,0 +170737547295,218,0 +170737547343,217,0 +170737547391,218,0 +170737547439,217,0 +170737547487,218,0 +170737547535,217,0 +170737547585,218,0 +170737547633,218,0 +170737547681,218,0 +170737547729,218,0 +170737547777,218,0 +170737547824,218,0 +170737547872,218,0 +170737547920,218,0 +170737547968,218,0 +170737548018,217,0 +170737548066,218,0 +170737548114,218,0 +170737548162,218,0 +170737548210,292,1 +170737548291,285,1 +170737548371,218,0 +170737548419,218,0 +170737548467,218,0 +170737548515,217,0 +170737548563,218,0 +170737548611,218,0 +170737548659,217,0 +170737548707,217,0 +170737548756,218,0 +170737548806,217,0 +170737548854,217,0 +170737548902,218,0 +170737548950,217,0 +170737548998,217,0 +170737549045,217,0 +170737549095,218,0 +170737549143,218,0 +170737549191,217,0 +170737549238,217,0 +170737549288,218,0 +170737549336,218,0 +170737549384,218,0 +170737549432,278,1 +170737549513,285,1 +170737549592,219,0 +170737549641,218,0 +170737549689,217,0 +170737549737,217,0 +170737549785,218,0 +170737549833,218,0 +170737549881,218,0 +170737549929,218,0 +170737549977,217,0 +170737550027,218,0 +170737550074,218,0 +170737550124,218,0 +170737550173,217,0 +170737550223,218,0 +170737550271,218,0 +170737550319,218,0 +170737550367,217,0 +170737550415,218,0 +170737550463,218,0 +170737550511,218,0 +170737550560,218,0 +170737550608,218,0 +170737550656,289,1 +170737550737,291,1 +170737550816,219,0 +170737550864,218,0 +170737550912,218,0 +170737550961,217,0 +170737551009,218,0 +170737551057,217,0 +170737551105,218,0 +170737551153,217,0 +170737551202,217,0 +170737551252,217,0 +170737551300,217,0 +170737551348,218,0 +170737551396,217,0 +170737551444,217,0 +170737551491,217,0 +170737551539,217,0 +170737551587,217,0 +170737551637,217,0 +170737551686,217,0 +170737551734,218,0 +170737551782,217,0 +170737551830,218,0 +170737551878,233,0 +170737551926,277,1 +170737552005,236,0 +170737552053,218,0 +170737552101,218,0 +170737552150,218,0 +170737552200,218,0 +170737552248,217,0 +170737552297,218,0 +170737552345,218,0 +170737552395,217,0 +170737552443,218,0 +170737552492,218,0 +170737552540,218,0 +170737552588,218,0 +170737552638,218,0 +170737552686,218,0 +170737552734,218,0 +170737552782,218,0 +170737552830,218,0 +170737552878,218,0 +170737552926,218,0 +170737552974,218,0 +170737553022,218,0 +170737553070,218,0 +170737553119,226,0 +170737553167,289,1 +170737553258,232,0 +170737553308,218,0 +170737553357,217,0 +170737553405,217,0 +170737553453,217,0 +170737553501,217,0 +170737553549,217,0 +170737553599,217,0 +170737553647,218,0 +170737553695,217,0 +170737553744,217,0 +170737553794,217,0 +170737553842,218,0 +170737553891,217,0 +170737553939,218,0 +170737553988,218,0 +170737554036,217,0 +170737554084,218,0 +170737554134,218,0 +170737554182,218,0 +170737554230,218,0 +170737554278,218,0 +170737554326,220,0 +170737554375,280,1 +170737554465,234,0 +170737554513,218,0 +170737554561,218,0 +170737554609,217,0 +170737554657,218,0 +170737554705,218,0 +170737554753,218,0 +170737554801,218,0 +170737554849,218,0 +170737554898,218,0 +170737554948,218,0 +170737554996,218,0 +170737555045,218,0 +170737555095,218,0 +170737555143,218,0 +170737555190,218,0 +170737555238,218,0 +170737555286,218,0 +170737555334,218,0 +170737555382,218,0 +170737555430,218,0 +170737555478,218,0 +170737555526,219,0 +170737555573,227,0 +170737555623,267,0 +170737555671,273,1 +170737555751,219,0 +170737555799,218,0 +170737555847,218,0 +170737555897,218,0 +170737555946,218,0 +170737555994,218,0 +170737556044,218,0 +170737556092,218,0 +170737556140,218,0 +170737556187,218,0 +170737556235,218,0 +170737556283,218,0 +170737556331,218,0 +170737556379,218,0 +170737556427,218,0 +170737556475,218,0 +170737556523,218,0 +170737556570,218,0 +170737556618,218,0 +170737556666,218,0 +170737556714,218,0 +170737556762,219,0 +170737556810,255,0 +170737556858,285,1 +170737556936,232,0 +170737556984,218,0 +170737557032,218,0 +170737557080,217,0 +170737557128,218,0 +170737557176,218,0 +170737557224,218,0 +170737557272,218,0 +170737557319,218,0 +170737557369,218,0 +170737557417,217,0 +170737557465,218,0 +170737557513,218,0 +170737557560,218,0 +170737557608,217,0 +170737557656,218,0 +170737557704,218,0 +170737557752,217,0 +170737557800,218,0 +170737557848,217,0 +170737557897,218,0 +170737557945,218,0 +170737557993,219,0 +170737558041,272,1 +170737558120,265,0 +170737558170,229,0 +170737558220,218,0 +170737558268,218,0 +170737558315,218,0 +170737558363,218,0 +170737558411,218,0 +170737558459,218,0 +170737558507,218,0 +170737558555,218,0 +170737558603,218,0 +170737558651,218,0 +170737558699,218,0 +170737558747,218,0 +170737558795,218,0 +170737558842,218,0 +170737558890,218,0 +170737558940,218,0 +170737558988,218,0 +170737559036,218,0 +170737559084,218,0 +170737559133,218,0 +170737559181,218,0 +170737559231,219,0 +170737559279,280,1 +170737559360,258,0 +170737559408,222,0 +170737559458,217,0 +170737559507,217,0 +170737559555,217,0 +170737559603,217,0 +170737559653,217,0 +170737559701,217,0 +170737559749,217,0 +170737559796,217,0 +170737559844,217,0 +170737559892,217,0 +170737559940,217,0 +170737559988,217,0 diff --git a/laser_value/0208-17.csv b/laser_value/0208-17.csv new file mode 100644 index 0000000..7708281 --- /dev/null +++ b/laser_value/0208-17.csv @@ -0,0 +1,7116 @@ +timestamp,laser_value,event +170737560037,217,0 +170737560085,217,0 +170737560133,217,0 +170737560181,217,0 +170737560229,217,0 +170737560277,217,0 +170737560325,217,0 +170737560372,217,0 +170737560420,217,0 +170737560468,220,0 +170737560516,276,1 +170737560598,230,0 +170737560646,221,0 +170737560694,218,0 +170737560741,218,0 +170737560789,218,0 +170737560837,217,0 +170737560885,218,0 +170737560933,218,0 +170737560981,218,0 +170737561029,218,0 +170737561078,218,0 +170737561126,218,0 +170737561174,218,0 +170737561222,218,0 +170737561269,218,0 +170737561317,218,0 +170737561365,218,0 +170737561413,218,0 +170737561461,218,0 +170737561509,218,0 +170737561557,218,0 +170737561605,218,0 +170737561652,218,0 +170737561702,220,0 +170737561750,276,1 +170737561831,262,0 +170737561878,224,0 +170737561926,218,0 +170737561974,217,0 +170737562022,217,0 +170737562070,218,0 +170737562118,218,0 +170737562166,217,0 +170737562214,217,0 +170737562262,217,0 +170737562310,217,0 +170737562358,217,0 +170737562406,218,0 +170737562454,217,0 +170737562503,217,0 +170737562551,217,0 +170737562599,217,0 +170737562647,217,0 +170737562695,217,0 +170737562745,218,0 +170737562793,218,0 +170737562840,218,0 +170737562890,218,0 +170737562940,222,0 +170737562987,274,1 +170737563074,231,0 +170737563124,219,0 +170737563172,218,0 +170737563220,219,0 +170737563268,219,0 +170737563315,219,0 +170737563363,219,0 +170737563411,218,0 +170737563461,218,0 +170737563510,218,0 +170737563558,218,0 +170737563606,218,0 +170737563654,218,0 +170737563702,218,0 +170737563749,218,0 +170737563797,218,0 +170737563845,218,0 +170737563893,219,0 +170737563943,219,0 +170737563990,218,0 +170737564038,218,0 +170737564088,218,0 +170737564136,220,0 +170737564184,263,0 +170737564232,279,1 +170737564312,228,0 +170737564360,218,0 +170737564409,217,0 +170737564457,218,0 +170737564505,218,0 +170737564553,218,0 +170737564603,217,0 +170737564651,218,0 +170737564699,218,0 +170737564748,218,0 +170737564798,218,0 +170737564847,218,0 +170737564895,218,0 +170737564943,217,0 +170737564991,218,0 +170737565039,218,0 +170737565087,218,0 +170737565135,218,0 +170737565183,218,0 +170737565231,218,0 +170737565279,218,0 +170737565327,218,0 +170737565376,219,0 +170737565426,253,0 +170737565474,262,0 +170737565522,238,0 +170737565571,221,0 +170737565619,218,0 +170737565667,218,0 +170737565715,218,0 +170737565763,218,0 +170737565812,218,0 +170737565860,218,0 +170737565908,217,0 +170737565958,217,0 +170737566007,218,0 +170737566057,217,0 +170737566106,217,0 +170737566154,217,0 +170737566202,218,0 +170737566252,217,0 +170737566300,218,0 +170737566349,218,0 +170737566399,218,0 +170737566447,217,0 +170737566495,218,0 +170737566543,218,0 +170737566592,219,0 +170737566640,242,0 +170737566689,269,0 +170737566739,268,0 +170737566788,222,0 +170737566838,218,0 +170737566886,218,0 +170737566935,218,0 +170737566983,217,0 +170737567031,217,0 +170737567079,217,0 +170737567127,217,0 +170737567175,217,0 +170737567223,217,0 +170737567271,218,0 +170737567319,218,0 +170737567368,218,0 +170737567416,217,0 +170737567464,217,0 +170737567514,218,0 +170737567562,218,0 +170737567610,218,0 +170737567659,218,0 +170737567709,218,0 +170737567757,218,0 +170737567805,218,0 +170737567853,221,0 +170737567901,276,1 +170737567980,227,0 +170737568030,218,0 +170737568079,218,0 +170737568129,217,0 +170737568177,217,0 +170737568226,218,0 +170737568274,218,0 +170737568322,217,0 +170737568370,218,0 +170737568418,217,0 +170737568466,218,0 +170737568514,217,0 +170737568563,217,0 +170737568611,217,0 +170737568659,217,0 +170737568707,218,0 +170737568755,218,0 +170737568803,217,0 +170737568853,218,0 +170737568901,218,0 +170737568950,217,0 +170737569000,218,0 +170737569048,218,0 +170737569097,252,0 +170737569147,280,1 +170737569232,226,0 +170737569281,218,0 +170737569329,218,0 +170737569377,217,0 +170737569427,217,0 +170737569476,217,0 +170737569524,217,0 +170737569572,218,0 +170737569622,217,0 +170737569670,218,0 +170737569718,218,0 +170737569766,217,0 +170737569814,217,0 +170737569863,218,0 +170737569911,217,0 +170737569959,218,0 +170737570007,218,0 +170737570055,217,0 +170737570105,218,0 +170737570153,217,0 +170737570200,217,0 +170737570250,218,0 +170737570298,219,0 +170737570348,273,1 +170737570429,270,1 +170737570504,218,0 +170737570552,217,0 +170737570602,217,0 +170737570651,217,0 +170737570699,217,0 +170737570749,217,0 +170737570797,217,0 +170737570845,217,0 +170737570894,217,0 +170737570944,217,0 +170737570993,217,0 +170737571041,217,0 +170737571091,217,0 +170737571140,217,0 +170737571188,217,0 +170737571236,217,0 +170737571286,217,0 +170737571334,217,0 +170737571382,217,0 +170737571430,217,0 +170737571479,218,0 +170737571529,221,0 +170737571578,267,0 +170737571626,272,1 +170737571708,224,0 +170737571757,218,0 +170737571805,218,0 +170737571853,218,0 +170737571901,218,0 +170737571949,218,0 +170737571997,217,0 +170737572045,218,0 +170737572093,218,0 +170737572141,217,0 +170737572189,218,0 +170737572238,218,0 +170737572288,218,0 +170737572336,217,0 +170737572384,218,0 +170737572432,218,0 +170737572480,217,0 +170737572529,218,0 +170737572579,217,0 +170737572627,218,0 +170737572675,218,0 +170737572723,218,0 +170737572771,222,0 +170737572819,278,1 +170737572896,235,0 +170737572945,219,0 +170737572993,218,0 +170737573041,218,0 +170737573091,218,0 +170737573139,218,0 +170737573187,218,0 +170737573235,217,0 +170737573283,218,0 +170737573331,218,0 +170737573380,218,0 +170737573428,218,0 +170737573478,217,0 +170737573527,218,0 +170737573575,218,0 +170737573623,218,0 +170737573673,218,0 +170737573721,218,0 +170737573769,218,0 +170737573817,217,0 +170737573866,218,0 +170737573914,218,0 +170737573962,218,0 +170737574012,222,0 +170737574060,273,1 +170737574141,230,0 +170737574189,218,0 +170737574238,218,0 +170737574286,217,0 +170737574336,218,0 +170737574384,218,0 +170737574433,218,0 +170737574481,218,0 +170737574529,218,0 +170737574577,218,0 +170737574625,217,0 +170737574673,217,0 +170737574721,218,0 +170737574771,217,0 +170737574819,217,0 +170737574867,217,0 +170737574916,217,0 +170737574964,217,0 +170737575014,218,0 +170737575062,218,0 +170737575110,218,0 +170737575158,218,0 +170737575205,218,0 +170737575255,262,0 +170737575303,274,1 +170737575382,233,0 +170737575430,218,0 +170737575478,217,0 +170737575528,217,0 +170737575576,217,0 +170737575625,217,0 +170737575673,218,0 +170737575721,218,0 +170737575769,217,0 +170737575818,218,0 +170737575866,217,0 +170737575914,217,0 +170737575962,217,0 +170737576010,218,0 +170737576058,217,0 +170737576106,217,0 +170737576154,218,0 +170737576204,217,0 +170737576252,217,0 +170737576300,217,0 +170737576348,217,0 +170737576396,218,0 +170737576444,219,0 +170737576492,283,1 +170737576578,243,0 +170737576628,220,0 +170737576676,217,0 +170737576724,217,0 +170737576773,217,0 +170737576823,217,0 +170737576872,217,0 +170737576922,217,0 +170737576971,217,0 +170737577019,217,0 +170737577069,217,0 +170737577117,217,0 +170737577165,217,0 +170737577213,217,0 +170737577261,217,0 +170737577310,217,0 +170737577358,217,0 +170737577406,217,0 +170737577454,217,0 +170737577502,217,0 +170737577550,217,0 +170737577598,217,0 +170737577646,217,0 +170737577695,222,0 +170737577743,265,0 +170737577791,269,0 +170737577839,230,0 +170737577887,217,0 +170737577935,217,0 +170737577983,217,0 +170737578031,217,0 +170737578080,217,0 +170737578128,217,0 +170737578176,217,0 +170737578224,217,0 +170737578274,217,0 +170737578321,217,0 +170737578371,217,0 +170737578419,217,0 +170737578467,217,0 +170737578515,217,0 +170737578565,217,0 +170737578612,217,0 +170737578660,217,0 +170737578708,218,0 +170737578758,217,0 +170737578807,217,0 +170737578855,217,0 +170737578903,218,0 +170737578951,263,0 +170737578999,292,1 +170737579082,233,0 +170737579130,218,0 +170737579178,219,0 +170737579226,218,0 +170737579274,218,0 +170737579322,219,0 +170737579371,218,0 +170737579419,218,0 +170737579467,219,0 +170737579515,218,0 +170737579563,218,0 +170737579611,218,0 +170737579660,218,0 +170737579708,218,0 +170737579758,218,0 +170737579806,218,0 +170737579854,218,0 +170737579902,218,0 +170737579950,218,0 +170737579998,218,0 +170737580047,218,0 +170737580095,219,0 +170737580145,220,0 +170737580193,271,1 +170737580274,257,0 +170737580324,222,0 +170737580372,218,0 +170737580420,218,0 +170737580468,218,0 +170737580517,217,0 +170737580565,217,0 +170737580613,218,0 +170737580661,218,0 +170737580709,218,0 +170737580757,218,0 +170737580807,218,0 +170737580854,217,0 +170737580902,218,0 +170737580950,218,0 +170737580998,218,0 +170737581046,218,0 +170737581096,218,0 +170737581144,218,0 +170737581192,217,0 +170737581241,218,0 +170737581291,218,0 +170737581339,218,0 +170737581387,222,0 +170737581435,287,1 +170737581514,233,0 +170737581561,219,0 +170737581609,218,0 +170737581657,218,0 +170737581705,218,0 +170737581753,218,0 +170737581803,218,0 +170737581851,218,0 +170737581899,218,0 +170737581948,218,0 +170737581996,218,0 +170737582046,218,0 +170737582094,218,0 +170737582143,218,0 +170737582191,218,0 +170737582239,218,0 +170737582287,218,0 +170737582335,218,0 +170737582383,218,0 +170737582431,218,0 +170737582479,218,0 +170737582527,218,0 +170737582575,218,0 +170737582623,224,0 +170737582671,281,1 +170737582752,235,0 +170737582800,218,0 +170737582848,218,0 +170737582896,218,0 +170737582943,217,0 +170737582991,217,0 +170737583041,218,0 +170737583089,217,0 +170737583137,217,0 +170737583185,218,0 +170737583233,218,0 +170737583281,218,0 +170737583329,218,0 +170737583377,218,0 +170737583426,218,0 +170737583474,218,0 +170737583522,218,0 +170737583570,218,0 +170737583618,218,0 +170737583666,218,0 +170737583715,218,0 +170737583765,218,0 +170737583814,218,0 +170737583864,267,0 +170737583912,273,1 +170737583998,227,0 +170737584046,218,0 +170737584096,218,0 +170737584144,217,0 +170737584192,218,0 +170737584240,218,0 +170737584288,218,0 +170737584336,217,0 +170737584385,218,0 +170737584433,217,0 +170737584483,217,0 +170737584530,217,0 +170737584578,217,0 +170737584626,218,0 +170737584674,218,0 +170737584722,217,0 +170737584770,217,0 +170737584818,217,0 +170737584868,217,0 +170737584916,218,0 +170737584965,218,0 +170737585013,218,0 +170737585061,219,0 +170737585109,277,1 +170737585190,234,0 +170737585238,220,0 +170737585285,217,0 +170737585333,217,0 +170737585383,217,0 +170737585432,217,0 +170737585480,218,0 +170737585528,217,0 +170737585576,217,0 +170737585624,217,0 +170737585672,217,0 +170737585720,217,0 +170737585768,218,0 +170737585815,217,0 +170737585863,217,0 +170737585911,218,0 +170737585959,217,0 +170737586009,217,0 +170737586056,217,0 +170737586104,218,0 +170737586152,217,0 +170737586200,218,0 +170737586250,218,0 +170737586298,223,0 +170737586347,276,1 +170737586430,230,0 +170737586478,219,0 +170737586525,219,0 +170737586573,218,0 +170737586621,218,0 +170737586669,218,0 +170737586717,218,0 +170737586767,219,0 +170737586815,218,0 +170737586864,218,0 +170737586912,219,0 +170737586962,218,0 +170737587012,218,0 +170737587060,218,0 +170737587107,218,0 +170737587155,218,0 +170737587203,218,0 +170737587251,218,0 +170737587299,218,0 +170737587347,218,0 +170737587395,218,0 +170737587443,218,0 +170737587493,219,0 +170737587542,227,0 +170737587590,284,1 +170737587671,231,0 +170737587721,219,0 +170737587768,218,0 +170737587816,218,0 +170737587864,218,0 +170737587912,218,0 +170737587960,218,0 +170737588010,218,0 +170737588058,218,0 +170737588107,218,0 +170737588155,218,0 +170737588205,218,0 +170737588253,218,0 +170737588301,218,0 +170737588349,218,0 +170737588398,219,0 +170737588446,219,0 +170737588496,219,0 +170737588544,218,0 +170737588593,218,0 +170737588643,219,0 +170737588691,218,0 +170737588741,220,0 +170737588788,269,0 +170737588836,274,1 +170737588922,225,0 +170737588972,219,0 +170737589020,218,0 +170737589069,219,0 +170737589117,218,0 +170737589165,218,0 +170737589213,218,0 +170737589261,218,0 +170737589309,218,0 +170737589357,218,0 +170737589404,218,0 +170737589454,219,0 +170737589503,219,0 +170737589551,219,0 +170737589599,218,0 +170737589647,218,0 +170737589695,219,0 +170737589745,219,0 +170737589793,219,0 +170737589841,219,0 +170737589889,219,0 +170737589939,219,0 +170737589986,222,0 +170737590036,267,0 +170737590086,266,0 +170737590135,231,0 +170737590184,219,0 +170737590232,218,0 +170737590282,218,0 +170737590331,218,0 +170737590379,218,0 +170737590429,218,0 +170737590477,218,0 +170737590525,218,0 +170737590573,218,0 +170737590621,218,0 +170737590668,218,0 +170737590716,218,0 +170737590764,218,0 +170737590812,218,0 +170737590860,218,0 +170737590909,218,0 +170737590957,219,0 +170737591007,218,0 +170737591055,218,0 +170737591102,218,0 +170737591150,219,0 +170737591198,220,0 +170737591246,291,1 +170737591324,273,1 +170737591402,218,0 +170737591452,218,0 +170737591500,218,0 +170737591549,218,0 +170737591597,218,0 +170737591645,218,0 +170737591695,218,0 +170737591742,218,0 +170737591792,218,0 +170737591840,217,0 +170737591888,218,0 +170737591937,218,0 +170737591987,218,0 +170737592037,218,0 +170737592086,218,0 +170737592134,218,0 +170737592182,218,0 +170737592230,218,0 +170737592278,218,0 +170737592326,218,0 +170737592375,218,0 +170737592423,219,0 +170737592471,273,1 +170737592552,282,1 +170737592632,219,0 +170737592680,218,0 +170737592728,218,0 +170737592776,218,0 +170737592825,218,0 +170737592873,218,0 +170737592921,218,0 +170737592969,218,0 +170737593017,217,0 +170737593065,217,0 +170737593112,217,0 +170737593160,217,0 +170737593208,217,0 +170737593256,217,0 +170737593304,217,0 +170737593353,217,0 +170737593403,217,0 +170737593453,217,0 +170737593501,217,0 +170737593548,218,0 +170737593596,218,0 +170737593644,219,0 +170737593692,295,1 +170737593772,276,1 +170737593851,219,0 +170737593899,218,0 +170737593947,218,0 +170737593995,218,0 +170737594043,218,0 +170737594091,217,0 +170737594139,218,0 +170737594186,218,0 +170737594235,218,0 +170737594282,218,0 +170737594330,218,0 +170737594378,218,0 +170737594426,218,0 +170737594476,218,0 +170737594524,218,0 +170737594572,218,0 +170737594621,218,0 +170737594671,218,0 +170737594719,218,0 +170737594767,218,0 +170737594815,218,0 +170737594864,219,0 +170737594914,268,0 +170737594962,290,1 +170737595040,237,0 +170737595090,218,0 +170737595138,218,0 +170737595186,218,0 +170737595235,218,0 +170737595285,218,0 +170737595333,218,0 +170737595381,218,0 +170737595428,218,0 +170737595476,218,0 +170737595524,218,0 +170737595572,218,0 +170737595620,218,0 +170737595669,218,0 +170737595717,218,0 +170737595765,218,0 +170737595813,217,0 +170737595861,218,0 +170737595909,218,0 +170737595957,217,0 +170737596005,218,0 +170737596052,218,0 +170737596102,218,0 +170737596150,233,0 +170737596198,303,1 +170737596279,238,0 +170737596327,218,0 +170737596375,218,0 +170737596423,218,0 +170737596471,218,0 +170737596519,218,0 +170737596567,218,0 +170737596615,218,0 +170737596663,218,0 +170737596710,218,0 +170737596758,218,0 +170737596806,218,0 +170737596854,218,0 +170737596902,218,0 +170737596950,218,0 +170737596998,218,0 +170737597046,218,0 +170737597093,218,0 +170737597141,218,0 +170737597189,218,0 +170737597237,218,0 +170737597285,218,0 +170737597333,219,0 +170737597383,275,1 +170737597466,304,1 +170737597545,219,0 +170737597595,218,0 +170737597643,218,0 +170737597692,218,0 +170737597740,218,0 +170737597788,218,0 +170737597836,218,0 +170737597886,218,0 +170737597933,218,0 +170737597981,218,0 +170737598029,219,0 +170737598077,218,0 +170737598127,218,0 +170737598175,218,0 +170737598225,218,0 +170737598274,218,0 +170737598324,218,0 +170737598373,218,0 +170737598423,218,0 +170737598472,218,0 +170737598520,219,0 +170737598568,220,0 +170737598616,294,1 +170737598697,280,1 +170737598776,218,0 +170737598824,218,0 +170737598872,218,0 +170737598920,218,0 +170737598969,218,0 +170737599019,217,0 +170737599066,218,0 +170737599114,218,0 +170737599162,218,0 +170737599212,218,0 +170737599260,218,0 +170737599307,217,0 +170737599355,218,0 +170737599403,218,0 +170737599451,218,0 +170737599499,217,0 +170737599547,217,0 +170737599595,218,0 +170737599644,218,0 +170737599692,218,0 +170737599742,218,0 +170737599790,219,0 +170737599838,256,0 +170737599886,298,1 +170737599967,231,0 +170737600016,218,0 +170737600066,218,0 +170737600114,218,0 +170737600162,218,0 +170737600210,218,0 +170737600260,218,0 +170737600309,218,0 +170737600357,218,0 +170737600405,218,0 +170737600453,218,0 +170737600501,218,0 +170737600549,218,0 +170737600597,218,0 +170737600645,218,0 +170737600694,218,0 +170737600742,218,0 +170737600790,218,0 +170737600838,218,0 +170737600888,218,0 +170737600936,218,0 +170737600984,218,0 +170737601032,219,0 +170737601080,289,1 +170737601160,279,1 +170737601235,219,0 +170737601283,218,0 +170737601331,218,0 +170737601380,218,0 +170737601428,218,0 +170737601478,218,0 +170737601526,218,0 +170737601574,218,0 +170737601621,218,0 +170737601669,218,0 +170737601717,218,0 +170737601765,218,0 +170737601813,218,0 +170737601862,218,0 +170737601910,218,0 +170737601958,218,0 +170737602008,218,0 +170737602056,218,0 +170737602104,218,0 +170737602152,218,0 +170737602200,218,0 +170737602248,221,0 +170737602297,287,1 +170737602377,294,1 +170737602462,219,0 +170737602511,218,0 +170737602559,218,0 +170737602609,218,0 +170737602658,218,0 +170737602706,218,0 +170737602754,218,0 +170737602802,218,0 +170737602850,218,0 +170737602898,218,0 +170737602946,218,0 +170737602994,218,0 +170737603042,218,0 +170737603091,218,0 +170737603139,218,0 +170737603187,219,0 +170737603235,218,0 +170737603283,218,0 +170737603331,218,0 +170737603378,218,0 +170737603426,219,0 +170737603476,221,0 +170737603524,296,1 +170737603604,285,1 +170737603683,218,0 +170737603731,218,0 +170737603779,217,0 +170737603827,218,0 +170737603875,217,0 +170737603923,218,0 +170737603971,218,0 +170737604020,218,0 +170737604068,218,0 +170737604116,218,0 +170737604165,218,0 +170737604213,218,0 +170737604261,218,0 +170737604309,217,0 +170737604357,218,0 +170737604405,217,0 +170737604453,217,0 +170737604501,218,0 +170737604550,218,0 +170737604598,218,0 +170737604646,218,0 +170737604694,218,0 +170737604742,222,0 +170737604792,294,1 +170737604881,236,0 +170737604929,219,0 +170737604977,218,0 +170737605025,218,0 +170737605074,218,0 +170737605122,218,0 +170737605170,218,0 +170737605218,218,0 +170737605266,218,0 +170737605314,218,0 +170737605362,218,0 +170737605410,218,0 +170737605458,218,0 +170737605505,218,0 +170737605553,218,0 +170737605601,218,0 +170737605649,218,0 +170737605698,218,0 +170737605748,218,0 +170737605796,218,0 +170737605844,218,0 +170737605892,218,0 +170737605940,219,0 +170737605988,286,1 +170737606070,288,1 +170737606148,219,0 +170737606196,218,0 +170737606244,218,0 +170737606292,218,0 +170737606340,218,0 +170737606388,218,0 +170737606436,218,0 +170737606484,218,0 +170737606532,218,0 +170737606580,218,0 +170737606628,218,0 +170737606676,218,0 +170737606724,218,0 +170737606772,218,0 +170737606820,218,0 +170737606868,218,0 +170737606917,218,0 +170737606967,218,0 +170737607015,218,0 +170737607064,218,0 +170737607112,218,0 +170737607160,219,0 +170737607208,230,0 +170737607256,288,1 +170737607336,234,0 +170737607385,219,0 +170737607433,219,0 +170737607481,219,0 +170737607531,219,0 +170737607580,219,0 +170737607628,218,0 +170737607676,218,0 +170737607726,218,0 +170737607774,218,0 +170737607823,219,0 +170737607871,218,0 +170737607919,218,0 +170737607967,218,0 +170737608017,218,0 +170737608066,218,0 +170737608114,218,0 +170737608164,218,0 +170737608213,218,0 +170737608263,218,0 +170737608312,218,0 +170737608360,219,0 +170737608408,220,0 +170737608458,280,1 +170737608537,270,1 +170737608617,218,0 +170737608667,217,0 +170737608715,217,0 +170737608764,217,0 +170737608814,218,0 +170737608862,217,0 +170737608910,218,0 +170737608958,217,0 +170737609007,218,0 +170737609057,218,0 +170737609104,218,0 +170737609152,218,0 +170737609200,217,0 +170737609248,218,0 +170737609298,218,0 +170737609346,218,0 +170737609395,218,0 +170737609443,218,0 +170737609491,218,0 +170737609539,218,0 +170737609589,218,0 +170737609638,219,0 +170737609688,293,1 +170737609771,294,1 +170737609851,219,0 +170737609900,218,0 +170737609950,218,0 +170737609998,218,0 +170737610046,218,0 +170737610095,218,0 +170737610143,218,0 +170737610191,219,0 +170737610241,218,0 +170737610289,218,0 +170737610337,218,0 +170737610385,218,0 +170737610433,218,0 +170737610481,218,0 +170737610529,218,0 +170737610578,218,0 +170737610628,218,0 +170737610675,218,0 +170737610725,218,0 +170737610774,218,0 +170737610822,218,0 +170737610870,221,0 +170737610918,278,1 +170737610998,274,1 +170737611075,218,0 +170737611123,218,0 +170737611171,217,0 +170737611219,217,0 +170737611267,218,0 +170737611314,218,0 +170737611362,217,0 +170737611410,218,0 +170737611458,218,0 +170737611506,217,0 +170737611556,218,0 +170737611605,217,0 +170737611655,218,0 +170737611703,217,0 +170737611751,217,0 +170737611799,217,0 +170737611846,218,0 +170737611894,218,0 +170737611942,218,0 +170737611990,218,0 +170737612038,218,0 +170737612086,219,0 +170737612134,267,0 +170737612181,275,1 +170737612271,228,0 +170737612321,218,0 +170737612369,218,0 +170737612417,218,0 +170737612465,218,0 +170737612514,218,0 +170737612562,218,0 +170737612610,218,0 +170737612658,218,0 +170737612708,218,0 +170737612756,218,0 +170737612804,218,0 +170737612852,218,0 +170737612900,218,0 +170737612948,218,0 +170737612995,218,0 +170737613045,218,0 +170737613093,218,0 +170737613141,218,0 +170737613189,218,0 +170737613238,218,0 +170737613288,219,0 +170737613336,220,0 +170737613384,279,1 +170737613472,238,0 +170737613520,222,0 +170737613567,218,0 +170737613615,218,0 +170737613665,217,0 +170737613713,217,0 +170737613762,218,0 +170737613810,218,0 +170737613858,218,0 +170737613906,217,0 +170737613954,217,0 +170737614001,218,0 +170737614049,218,0 +170737614097,217,0 +170737614147,218,0 +170737614195,218,0 +170737614242,218,0 +170737614290,218,0 +170737614338,218,0 +170737614386,218,0 +170737614434,218,0 +170737614482,218,0 +170737614530,219,0 +170737614578,224,0 +170737614625,283,1 +170737614712,231,0 +170737614762,219,0 +170737614810,218,0 +170737614859,219,0 +170737614907,218,0 +170737614957,218,0 +170737615005,218,0 +170737615053,218,0 +170737615101,218,0 +170737615150,218,0 +170737615198,217,0 +170737615248,218,0 +170737615296,218,0 +170737615344,218,0 +170737615392,218,0 +170737615440,218,0 +170737615489,218,0 +170737615537,218,0 +170737615587,218,0 +170737615636,218,0 +170737615684,218,0 +170737615734,218,0 +170737615783,221,0 +170737615833,278,1 +170737615919,275,1 +170737615995,219,0 +170737616043,219,0 +170737616091,219,0 +170737616139,219,0 +170737616188,219,0 +170737616236,219,0 +170737616284,219,0 +170737616332,219,0 +170737616380,219,0 +170737616428,219,0 +170737616477,219,0 +170737616525,219,0 +170737616573,219,0 +170737616621,219,0 +170737616671,219,0 +170737616719,219,0 +170737616767,219,0 +170737616815,219,0 +170737616863,219,0 +170737616911,219,0 +170737616959,219,0 +170737617007,220,0 +170737617056,285,1 +170737617137,293,1 +170737617218,219,0 +170737617268,218,0 +170737617316,218,0 +170737617364,218,0 +170737617413,218,0 +170737617461,218,0 +170737617511,218,0 +170737617559,218,0 +170737617607,218,0 +170737617656,218,0 +170737617704,218,0 +170737617752,218,0 +170737617802,219,0 +170737617851,218,0 +170737617901,218,0 +170737617949,218,0 +170737617997,218,0 +170737618045,219,0 +170737618093,219,0 +170737618142,218,0 +170737618190,218,0 +170737618238,220,0 +170737618286,278,1 +170737618365,277,1 +170737618441,219,0 +170737618489,219,0 +170737618537,218,0 +170737618586,218,0 +170737618636,218,0 +170737618684,218,0 +170737618732,219,0 +170737618780,218,0 +170737618828,218,0 +170737618876,218,0 +170737618924,218,0 +170737618972,218,0 +170737619020,218,0 +170737619069,218,0 +170737619119,218,0 +170737619166,218,0 +170737619216,218,0 +170737619264,218,0 +170737619312,218,0 +170737619361,218,0 +170737619409,219,0 +170737619457,219,0 +170737619507,278,1 +170737619586,290,1 +170737619669,219,0 +170737619717,218,0 +170737619765,218,0 +170737619815,218,0 +170737619863,218,0 +170737619911,218,0 +170737619960,218,0 +170737620010,218,0 +170737620058,218,0 +170737620107,218,0 +170737620155,218,0 +170737620203,218,0 +170737620253,219,0 +170737620302,218,0 +170737620352,218,0 +170737620400,219,0 +170737620448,218,0 +170737620496,219,0 +170737620544,219,0 +170737620592,219,0 +170737620640,219,0 +170737620688,219,0 +170737620736,280,1 +170737620818,270,1 +170737620900,219,0 +170737620950,219,0 +170737620998,219,0 +170737621046,219,0 +170737621093,219,0 +170737621141,219,0 +170737621191,218,0 +170737621239,219,0 +170737621287,218,0 +170737621335,218,0 +170737621383,219,0 +170737621431,218,0 +170737621479,219,0 +170737621528,218,0 +170737621576,218,0 +170737621624,218,0 +170737621672,219,0 +170737621720,218,0 +170737621768,218,0 +170737621816,218,0 +170737621865,219,0 +170737621915,219,0 +170737621963,223,0 +170737622012,281,1 +170737622096,233,0 +170737622144,219,0 +170737622193,218,0 +170737622241,218,0 +170737622289,219,0 +170737622337,219,0 +170737622385,219,0 +170737622433,219,0 +170737622483,219,0 +170737622530,219,0 +170737622580,219,0 +170737622628,218,0 +170737622676,218,0 +170737622726,219,0 +170737622773,219,0 +170737622821,218,0 +170737622871,218,0 +170737622919,218,0 +170737622967,218,0 +170737623015,219,0 +170737623064,218,0 +170737623112,219,0 +170737623160,220,0 +170737623210,257,0 +170737623258,260,0 +170737623306,236,0 +170737623354,220,0 +170737623402,218,0 +170737623450,218,0 +170737623498,218,0 +170737623546,218,0 +170737623593,218,0 +170737623641,218,0 +170737623689,218,0 +170737623739,218,0 +170737623787,218,0 +170737623835,218,0 +170737623884,218,0 +170737623932,218,0 +170737623980,218,0 +170737624028,218,0 +170737624078,218,0 +170737624126,218,0 +170737624174,218,0 +170737624221,219,0 +170737624269,218,0 +170737624317,218,0 +170737624367,219,0 +170737624415,221,0 +170737624464,270,1 +170737624546,226,0 +170737624594,220,0 +170737624642,218,0 +170737624690,218,0 +170737624739,219,0 +170737624787,219,0 +170737624835,219,0 +170737624883,218,0 +170737624933,218,0 +170737624981,218,0 +170737625029,218,0 +170737625078,218,0 +170737625128,218,0 +170737625177,218,0 +170737625225,218,0 +170737625275,218,0 +170737625324,218,0 +170737625372,218,0 +170737625420,218,0 +170737625468,218,0 +170737625516,218,0 +170737625564,219,0 +170737625612,219,0 +170737625660,251,0 +170737625708,271,1 +170737625791,227,0 +170737625838,219,0 +170737625886,219,0 +170737625934,218,0 +170737625984,219,0 +170737626032,219,0 +170737626079,219,0 +170737626127,218,0 +170737626175,219,0 +170737626223,218,0 +170737626271,218,0 +170737626319,219,0 +170737626367,219,0 +170737626415,219,0 +170737626463,218,0 +170737626511,218,0 +170737626559,218,0 +170737626607,218,0 +170737626655,218,0 +170737626703,218,0 +170737626752,219,0 +170737626800,219,0 +170737626848,220,0 +170737626896,278,1 +170737626977,285,1 +170737627055,220,0 +170737627103,219,0 +170737627151,218,0 +170737627199,219,0 +170737627246,219,0 +170737627294,219,0 +170737627342,219,0 +170737627390,218,0 +170737627438,218,0 +170737627488,218,0 +170737627537,218,0 +170737627585,218,0 +170737627633,218,0 +170737627681,218,0 +170737627729,219,0 +170737627777,219,0 +170737627824,219,0 +170737627872,219,0 +170737627920,219,0 +170737627970,218,0 +170737628018,218,0 +170737628065,219,0 +170737628113,270,1 +170737628195,277,1 +170737628272,220,0 +170737628320,218,0 +170737628368,218,0 +170737628416,218,0 +170737628466,218,0 +170737628514,218,0 +170737628562,218,0 +170737628609,218,0 +170737628657,218,0 +170737628707,218,0 +170737628755,218,0 +170737628803,218,0 +170737628851,218,0 +170737628898,218,0 +170737628946,218,0 +170737628994,218,0 +170737629042,218,0 +170737629090,218,0 +170737629138,218,0 +170737629186,218,0 +170737629233,218,0 +170737629281,218,0 +170737629331,221,0 +170737629379,274,1 +170737629460,226,0 +170737629509,219,0 +170737629557,218,0 +170737629605,218,0 +170737629653,218,0 +170737629701,218,0 +170737629750,218,0 +170737629798,218,0 +170737629846,218,0 +170737629894,218,0 +170737629942,218,0 +170737629990,218,0 +170737630040,218,0 +170737630088,218,0 +170737630136,218,0 +170737630184,218,0 +170737630232,218,0 +170737630280,218,0 +170737630329,218,0 +170737630377,218,0 +170737630427,218,0 +170737630475,218,0 +170737630524,218,0 +170737630574,229,0 +170737630622,290,1 +170737630704,234,0 +170737630752,219,0 +170737630802,218,0 +170737630851,218,0 +170737630899,218,0 +170737630947,218,0 +170737630995,218,0 +170737631043,218,0 +170737631093,218,0 +170737631141,218,0 +170737631189,218,0 +170737631237,218,0 +170737631285,218,0 +170737631334,218,0 +170737631382,218,0 +170737631430,218,0 +170737631478,218,0 +170737631526,218,0 +170737631574,218,0 +170737631622,218,0 +170737631670,218,0 +170737631718,218,0 +170737631766,219,0 +170737631814,279,1 +170737631895,293,1 +170737631972,219,0 +170737632021,218,0 +170737632069,218,0 +170737632117,218,0 +170737632166,218,0 +170737632214,218,0 +170737632264,218,0 +170737632312,218,0 +170737632360,218,0 +170737632408,218,0 +170737632456,218,0 +170737632504,218,0 +170737632552,218,0 +170737632600,218,0 +170737632648,218,0 +170737632696,217,0 +170737632745,217,0 +170737632795,218,0 +170737632843,218,0 +170737632891,218,0 +170737632939,218,0 +170737632987,219,0 +170737633036,273,1 +170737633123,269,0 +170737633173,228,0 +170737633222,218,0 +170737633270,218,0 +170737633318,219,0 +170737633366,219,0 +170737633414,219,0 +170737633462,219,0 +170737633509,219,0 +170737633557,220,0 +170737633605,220,0 +170737633653,220,0 +170737633701,220,0 +170737633750,220,0 +170737633798,219,0 +170737633846,219,0 +170737633894,219,0 +170737633942,219,0 +170737633991,219,0 +170737634039,219,0 +170737634087,219,0 +170737634135,219,0 +170737634183,219,0 +170737634231,224,0 +170737634279,267,0 +170737634327,291,1 +170737634403,229,0 +170737634451,222,0 +170737634499,222,0 +170737634547,222,0 +170737634597,222,0 +170737634644,222,0 +170737634692,222,0 +170737634742,221,0 +170737634790,221,0 +170737634838,221,0 +170737634887,221,0 +170737634935,220,0 +170737634983,221,0 +170737635033,221,0 +170737635081,220,0 +170737635130,220,0 +170737635178,221,0 +170737635226,220,0 +170737635274,220,0 +170737635322,221,0 +170737635370,221,0 +170737635420,221,0 +170737635468,222,0 +170737635516,276,1 +170737635596,244,0 +170737635646,222,0 +170737635696,218,0 +170737635745,217,0 +170737635795,218,0 +170737635844,218,0 +170737635892,218,0 +170737635940,218,0 +170737635988,218,0 +170737636036,218,0 +170737636084,218,0 +170737636132,218,0 +170737636180,218,0 +170737636228,217,0 +170737636277,218,0 +170737636327,218,0 +170737636375,218,0 +170737636424,218,0 +170737636472,218,0 +170737636520,218,0 +170737636568,218,0 +170737636616,218,0 +170737636664,218,0 +170737636712,229,0 +170737636760,269,0 +170737636808,265,0 +170737636857,230,0 +170737636905,219,0 +170737636953,218,0 +170737637003,218,0 +170737637052,218,0 +170737637102,218,0 +170737637149,218,0 +170737637198,219,0 +170737637245,218,0 +170737637295,218,0 +170737637343,218,0 +170737637391,218,0 +170737637439,218,0 +170737637487,218,0 +170737637535,218,0 +170737637584,218,0 +170737637632,218,0 +170737637680,218,0 +170737637730,218,0 +170737637778,218,0 +170737637826,218,0 +170737637874,218,0 +170737637921,220,0 +170737637971,273,1 +170737638050,240,0 +170737638098,219,0 +170737638146,218,0 +170737638195,218,0 +170737638243,218,0 +170737638291,218,0 +170737638339,218,0 +170737638389,218,0 +170737638437,218,0 +170737638484,218,0 +170737638532,218,0 +170737638580,218,0 +170737638630,218,0 +170737638678,218,0 +170737638727,218,0 +170737638775,218,0 +170737638823,217,0 +170737638871,217,0 +170737638921,218,0 +170737638969,218,0 +170737639018,218,0 +170737639066,218,0 +170737639116,218,0 +170737639165,220,0 +170737639215,277,1 +170737639296,226,0 +170737639344,220,0 +170737639392,218,0 +170737639441,218,0 +170737639491,218,0 +170737639539,218,0 +170737639588,218,0 +170737639636,218,0 +170737639686,219,0 +170737639735,219,0 +170737639783,218,0 +170737639831,218,0 +170737639879,218,0 +170737639927,218,0 +170737639977,218,0 +170737640025,218,0 +170737640073,218,0 +170737640122,218,0 +170737640171,218,0 +170737640219,218,0 +170737640269,218,0 +170737640319,218,0 +170737640367,219,0 +170737640416,276,1 +170737640498,283,1 +170737640579,220,0 +170737640628,218,0 +170737640678,218,0 +170737640726,218,0 +170737640774,218,0 +170737640822,218,0 +170737640871,218,0 +170737640919,218,0 +170737640967,218,0 +170737641015,218,0 +170737641063,218,0 +170737641111,218,0 +170737641161,218,0 +170737641209,218,0 +170737641257,218,0 +170737641305,218,0 +170737641353,218,0 +170737641401,219,0 +170737641449,218,0 +170737641497,218,0 +170737641544,219,0 +170737641592,219,0 +170737641640,253,0 +170737641688,272,1 +170737641779,230,0 +170737641829,218,0 +170737641877,218,0 +170737641925,218,0 +170737641974,218,0 +170737642022,218,0 +170737642070,218,0 +170737642118,218,0 +170737642168,218,0 +170737642216,218,0 +170737642264,218,0 +170737642312,218,0 +170737642359,218,0 +170737642407,218,0 +170737642457,218,0 +170737642507,218,0 +170737642556,219,0 +170737642606,218,0 +170737642655,218,0 +170737642703,218,0 +170737642751,219,0 +170737642799,219,0 +170737642849,221,0 +170737642896,257,0 +170737642946,266,0 +170737642994,230,0 +170737643044,218,0 +170737643091,218,0 +170737643139,218,0 +170737643187,218,0 +170737643235,218,0 +170737643285,218,0 +170737643333,218,0 +170737643382,218,0 +170737643432,218,0 +170737643480,218,0 +170737643528,218,0 +170737643576,218,0 +170737643624,218,0 +170737643672,218,0 +170737643720,218,0 +170737643769,218,0 +170737643817,218,0 +170737643865,218,0 +170737643913,218,0 +170737643961,218,0 +170737644009,218,0 +170737644059,220,0 +170737644107,265,0 +170737644155,275,1 +170737644236,231,0 +170737644284,217,0 +170737644332,217,0 +170737644380,217,0 +170737644429,217,0 +170737644477,217,0 +170737644527,217,0 +170737644576,217,0 +170737644624,217,0 +170737644672,217,0 +170737644722,217,0 +170737644770,217,0 +170737644818,217,0 +170737644866,217,0 +170737644914,217,0 +170737644962,217,0 +170737645010,217,0 +170737645059,217,0 +170737645107,217,0 +170737645155,217,0 +170737645203,217,0 +170737645251,217,0 +170737645299,220,0 +170737645347,290,1 +170737645431,247,0 +170737645480,222,0 +170737645528,218,0 +170737645576,217,0 +170737645625,217,0 +170737645673,217,0 +170737645721,217,0 +170737645771,217,0 +170737645819,217,0 +170737645867,217,0 +170737645915,217,0 +170737645963,217,0 +170737646010,218,0 +170737646058,218,0 +170737646106,217,0 +170737646154,217,0 +170737646202,217,0 +170737646252,218,0 +170737646300,217,0 +170737646348,217,0 +170737646396,218,0 +170737646445,217,0 +170737646495,218,0 +170737646542,231,0 +170737646592,278,1 +170737646675,234,0 +170737646723,219,0 +170737646771,218,0 +170737646819,218,0 +170737646867,218,0 +170737646915,218,0 +170737646962,218,0 +170737647010,218,0 +170737647058,218,0 +170737647106,218,0 +170737647154,217,0 +170737647202,218,0 +170737647250,217,0 +170737647298,217,0 +170737647345,217,0 +170737647393,218,0 +170737647441,217,0 +170737647489,218,0 +170737647537,217,0 +170737647586,218,0 +170737647636,218,0 +170737647684,218,0 +170737647732,218,0 +170737647780,222,0 +170737647827,264,0 +170737647875,266,0 +170737647923,228,0 +170737647971,218,0 +170737648019,218,0 +170737648067,218,0 +170737648115,218,0 +170737648163,218,0 +170737648211,217,0 +170737648259,218,0 +170737648306,217,0 +170737648354,217,0 +170737648402,218,0 +170737648450,218,0 +170737648498,217,0 +170737648546,218,0 +170737648594,217,0 +170737648642,217,0 +170737648690,217,0 +170737648737,218,0 +170737648785,218,0 +170737648833,217,0 +170737648881,218,0 +170737648931,218,0 +170737648979,219,0 +170737649026,288,1 +170737649104,286,1 +170737649184,220,0 +170737649233,218,0 +170737649281,218,0 +170737649331,218,0 +170737649379,218,0 +170737649427,218,0 +170737649475,218,0 +170737649523,218,0 +170737649572,218,0 +170737649622,218,0 +170737649670,218,0 +170737649718,218,0 +170737649767,218,0 +170737649815,218,0 +170737649863,218,0 +170737649913,218,0 +170737649961,218,0 +170737650010,218,0 +170737650058,218,0 +170737650108,218,0 +170737650155,219,0 +170737650205,220,0 +170737650253,288,1 +170737650331,276,1 +170737650410,219,0 +170737650460,219,0 +170737650508,218,0 +170737650556,218,0 +170737650604,220,0 +170737650652,219,0 +170737650700,220,0 +170737650749,219,0 +170737650797,220,0 +170737650845,220,0 +170737650893,220,0 +170737650943,220,0 +170737650991,220,0 +170737651038,220,0 +170737651086,220,0 +170737651134,220,0 +170737651182,220,0 +170737651230,220,0 +170737651278,220,0 +170737651326,220,0 +170737651376,221,0 +170737651424,220,0 +170737651473,274,1 +170737651556,303,1 +170737651635,218,0 +170737651685,218,0 +170737651734,218,0 +170737651785,218,0 +170737651834,218,0 +170737651882,218,0 +170737651930,218,0 +170737651980,217,0 +170737652028,217,0 +170737652076,218,0 +170737652124,217,0 +170737652172,218,0 +170737652220,217,0 +170737652268,217,0 +170737652316,218,0 +170737652364,218,0 +170737652413,217,0 +170737652461,218,0 +170737652509,218,0 +170737652557,218,0 +170737652607,218,0 +170737652656,219,0 +170737652704,285,1 +170737652783,273,1 +170737652864,219,0 +170737652912,218,0 +170737652960,218,0 +170737653008,218,0 +170737653056,218,0 +170737653104,218,0 +170737653153,218,0 +170737653201,218,0 +170737653249,218,0 +170737653297,218,0 +170737653345,218,0 +170737653394,218,0 +170737653442,217,0 +170737653490,217,0 +170737653538,218,0 +170737653586,218,0 +170737653634,218,0 +170737653682,218,0 +170737653732,218,0 +170737653780,219,0 +170737653828,218,0 +170737653876,222,0 +170737653925,263,0 +170737653973,265,0 +170737654023,266,0 +170737654071,227,0 +170737654120,218,0 +170737654168,218,0 +170737654216,218,0 +170737654264,218,0 +170737654312,218,0 +170737654360,217,0 +170737654408,218,0 +170737654456,218,0 +170737654504,217,0 +170737654553,218,0 +170737654601,218,0 +170737654649,217,0 +170737654697,218,0 +170737654745,218,0 +170737654793,217,0 +170737654843,218,0 +170737654891,217,0 +170737654939,218,0 +170737654988,217,0 +170737655038,217,0 +170737655086,218,0 +170737655134,220,0 +170737655182,262,0 +170737655230,273,1 +170737655306,220,0 +170737655354,217,0 +170737655402,217,0 +170737655450,218,0 +170737655498,218,0 +170737655546,218,0 +170737655594,217,0 +170737655642,218,0 +170737655690,218,0 +170737655738,217,0 +170737655786,218,0 +170737655836,218,0 +170737655885,217,0 +170737655935,217,0 +170737655983,217,0 +170737656031,217,0 +170737656078,218,0 +170737656126,218,0 +170737656174,218,0 +170737656222,218,0 +170737656270,218,0 +170737656318,218,0 +170737656366,220,0 +170737656414,272,1 +170737656496,228,0 +170737656544,222,0 +170737656594,218,0 +170737656643,217,0 +170737656691,217,0 +170737656741,217,0 +170737656789,217,0 +170737656837,217,0 +170737656886,217,0 +170737656934,218,0 +170737656984,217,0 +170737657032,217,0 +170737657080,217,0 +170737657128,218,0 +170737657176,218,0 +170737657224,217,0 +170737657272,218,0 +170737657319,218,0 +170737657367,218,0 +170737657417,218,0 +170737657465,218,0 +170737657513,218,0 +170737657562,218,0 +170737657612,226,0 +170737657660,271,1 +170737657745,235,0 +170737657794,219,0 +170737657844,218,0 +170737657894,218,0 +170737657941,218,0 +170737657989,217,0 +170737658039,217,0 +170737658087,218,0 +170737658135,218,0 +170737658183,218,0 +170737658231,218,0 +170737658279,218,0 +170737658327,218,0 +170737658375,219,0 +170737658423,219,0 +170737658471,219,0 +170737658520,218,0 +170737658568,218,0 +170737658616,218,0 +170737658664,219,0 +170737658712,218,0 +170737658761,219,0 +170737658809,219,0 +170737658859,263,0 +170737658908,263,0 +170737658956,227,0 +170737659006,220,0 +170737659054,219,0 +170737659102,218,0 +170737659150,218,0 +170737659198,218,0 +170737659246,218,0 +170737659294,218,0 +170737659343,218,0 +170737659391,218,0 +170737659439,218,0 +170737659487,218,0 +170737659535,218,0 +170737659583,218,0 +170737659631,218,0 +170737659681,218,0 +170737659729,218,0 +170737659776,218,0 +170737659824,218,0 +170737659872,218,0 +170737659920,218,0 +170737659970,218,0 +170737660018,219,0 +170737660067,240,0 +170737660115,268,0 +170737660163,258,0 +170737660213,226,0 +170737660262,218,0 +170737660310,218,0 +170737660358,218,0 +170737660406,218,0 +170737660454,218,0 +170737660502,218,0 +170737660550,218,0 +170737660599,218,0 +170737660647,218,0 +170737660695,218,0 +170737660745,218,0 +170737660794,218,0 +170737660842,218,0 +170737660890,218,0 +170737660940,218,0 +170737660988,218,0 +170737661036,218,0 +170737661084,218,0 +170737661133,218,0 +170737661181,218,0 +170737661231,219,0 +170737661280,223,0 +170737661328,295,1 +170737661414,253,0 +170737661461,225,0 +170737661509,218,0 +170737661557,218,0 +170737661605,218,0 +170737661653,218,0 +170737661701,218,0 +170737661749,217,0 +170737661799,217,0 +170737661847,218,0 +170737661895,218,0 +170737661944,218,0 +170737661992,218,0 +170737662040,218,0 +170737662088,218,0 +170737662136,218,0 +170737662185,218,0 +170737662233,219,0 +170737662281,220,0 +170737662329,220,0 +170737662377,223,0 +170737662427,226,0 +170737662475,228,0 +170737662523,228,0 +170737662570,245,0 +170737662618,242,0 +170737662666,223,0 +170737662714,218,0 +170737662762,218,0 +170737662810,218,0 +170737662858,217,0 +170737662906,218,0 +170737662954,218,0 +170737663002,218,0 +170737663050,218,0 +170737663100,218,0 +170737663148,218,0 +170737663196,217,0 +170737663245,218,0 +170737663293,218,0 +170737663343,218,0 +170737663392,217,0 +170737663440,217,0 +170737663488,217,0 +170737663538,218,0 +170737663586,217,0 +170737663633,217,0 +170737663681,218,0 +170737663731,221,0 +170737663779,284,1 +170737663865,227,0 +170737663914,219,0 +170737663962,218,0 +170737664010,218,0 +170737664058,218,0 +170737664106,218,0 +170737664154,217,0 +170737664202,218,0 +170737664251,218,0 +170737664299,218,0 +170737664347,217,0 +170737664395,218,0 +170737664443,217,0 +170737664491,217,0 +170737664541,218,0 +170737664590,218,0 +170737664638,217,0 +170737664686,217,0 +170737664736,217,0 +170737664785,218,0 +170737664833,218,0 +170737664881,218,0 +170737664929,218,0 +170737664978,221,0 +170737665028,262,0 +170737665077,282,1 +170737665162,219,0 +170737665210,218,0 +170737665258,218,0 +170737665306,218,0 +170737665356,218,0 +170737665404,218,0 +170737665453,218,0 +170737665502,218,0 +170737665550,218,0 +170737665598,218,0 +170737665646,218,0 +170737665694,218,0 +170737665742,218,0 +170737665790,218,0 +170737665839,218,0 +170737665889,218,0 +170737665937,218,0 +170737665985,218,0 +170737666032,217,0 +170737666080,217,0 +170737666130,218,0 +170737666178,219,0 +170737666226,270,1 +170737666308,275,1 +170737666386,219,0 +170737666434,218,0 +170737666482,218,0 +170737666530,218,0 +170737666578,218,0 +170737666626,218,0 +170737666674,218,0 +170737666722,218,0 +170737666769,218,0 +170737666817,218,0 +170737666865,218,0 +170737666913,218,0 +170737666961,218,0 +170737667009,218,0 +170737667057,218,0 +170737667106,218,0 +170737667155,218,0 +170737667203,218,0 +170737667251,218,0 +170737667299,218,0 +170737667347,218,0 +170737667397,219,0 +170737667446,276,1 +170737667528,281,1 +170737667607,219,0 +170737667655,218,0 +170737667702,218,0 +170737667750,218,0 +170737667798,218,0 +170737667846,218,0 +170737667894,218,0 +170737667944,218,0 +170737667991,218,0 +170737668041,218,0 +170737668089,218,0 +170737668137,218,0 +170737668184,218,0 +170737668232,218,0 +170737668280,218,0 +170737668328,218,0 +170737668376,218,0 +170737668424,218,0 +170737668472,218,0 +170737668520,218,0 +170737668567,218,0 +170737668617,219,0 +170737668665,223,0 +170737668713,288,1 +170737668797,234,0 +170737668845,219,0 +170737668893,219,0 +170737668941,218,0 +170737668989,218,0 +170737669037,218,0 +170737669085,218,0 +170737669133,218,0 +170737669180,218,0 +170737669228,218,0 +170737669276,218,0 +170737669326,218,0 +170737669374,218,0 +170737669421,218,0 +170737669469,219,0 +170737669517,218,0 +170737669565,218,0 +170737669613,218,0 +170737669661,218,0 +170737669709,218,0 +170737669757,218,0 +170737669804,218,0 +170737669852,218,0 +170737669900,231,0 +170737669948,273,1 +170737670031,237,0 +170737670079,219,0 +170737670127,218,0 +170737670174,218,0 +170737670224,218,0 +170737670272,218,0 +170737670320,218,0 +170737670368,218,0 +170737670416,218,0 +170737670464,218,0 +170737670511,218,0 +170737670561,218,0 +170737670609,218,0 +170737670657,218,0 +170737670706,218,0 +170737670754,218,0 +170737670802,218,0 +170737670852,218,0 +170737670900,217,0 +170737670948,218,0 +170737670996,218,0 +170737671044,218,0 +170737671091,219,0 +170737671139,260,0 +170737671187,266,0 +170737671235,236,0 +170737671285,220,0 +170737671333,218,0 +170737671381,218,0 +170737671429,218,0 +170737671478,218,0 +170737671528,218,0 +170737671575,218,0 +170737671623,217,0 +170737671671,218,0 +170737671721,217,0 +170737671769,218,0 +170737671817,218,0 +170737671865,218,0 +170737671914,218,0 +170737671962,218,0 +170737672010,218,0 +170737672060,218,0 +170737672108,218,0 +170737672156,218,0 +170737672204,218,0 +170737672252,218,0 +170737672300,219,0 +170737672348,261,0 +170737672396,267,0 +170737672444,285,1 +170737672531,218,0 +170737672579,218,0 +170737672627,218,0 +170737672675,218,0 +170737672723,218,0 +170737672771,218,0 +170737672820,217,0 +170737672868,218,0 +170737672918,218,0 +170737672966,218,0 +170737673014,218,0 +170737673063,218,0 +170737673111,218,0 +170737673159,218,0 +170737673209,218,0 +170737673258,218,0 +170737673306,218,0 +170737673354,218,0 +170737673402,218,0 +170737673452,218,0 +170737673500,218,0 +170737673548,219,0 +170737673597,250,0 +170737673645,272,1 +170737673731,233,0 +170737673781,218,0 +170737673829,218,0 +170737673878,217,0 +170737673928,217,0 +170737673976,217,0 +170737674024,217,0 +170737674072,217,0 +170737674121,218,0 +170737674169,218,0 +170737674217,217,0 +170737674265,217,0 +170737674315,218,0 +170737674363,217,0 +170737674411,217,0 +170737674459,217,0 +170737674507,217,0 +170737674556,218,0 +170737674604,217,0 +170737674652,217,0 +170737674700,217,0 +170737674748,218,0 +170737674796,220,0 +170737674844,283,1 +170737674927,241,0 +170737674975,222,0 +170737675023,218,0 +170737675072,217,0 +170737675120,217,0 +170737675168,218,0 +170737675216,217,0 +170737675266,217,0 +170737675315,217,0 +170737675363,218,0 +170737675411,218,0 +170737675461,217,0 +170737675509,217,0 +170737675557,217,0 +170737675606,217,0 +170737675656,217,0 +170737675704,218,0 +170737675752,217,0 +170737675800,218,0 +170737675848,218,0 +170737675896,217,0 +170737675945,218,0 +170737675995,218,0 +170737676043,283,1 +170737676131,297,1 +170737676208,219,0 +170737676255,218,0 +170737676303,218,0 +170737676351,218,0 +170737676399,218,0 +170737676447,218,0 +170737676495,218,0 +170737676543,218,0 +170737676591,218,0 +170737676639,218,0 +170737676687,218,0 +170737676735,218,0 +170737676783,218,0 +170737676831,218,0 +170737676878,218,0 +170737676928,218,0 +170737676976,218,0 +170737677026,218,0 +170737677073,218,0 +170737677121,218,0 +170737677169,218,0 +170737677219,219,0 +170737677267,241,0 +170737677315,265,0 +170737677363,255,0 +170737677412,225,0 +170737677462,219,0 +170737677510,219,0 +170737677558,218,0 +170737677607,218,0 +170737677657,218,0 +170737677706,218,0 +170737677754,218,0 +170737677802,218,0 +170737677850,218,0 +170737677900,218,0 +170737677948,218,0 +170737677996,218,0 +170737678044,219,0 +170737678093,219,0 +170737678141,218,0 +170737678191,218,0 +170737678240,218,0 +170737678290,218,0 +170737678338,218,0 +170737678387,218,0 +170737678435,219,0 +170737678483,221,0 +170737678531,279,1 +170737678610,259,0 +170737678658,227,0 +170737678706,218,0 +170737678754,218,0 +170737678803,218,0 +170737678852,218,0 +170737678899,218,0 +170737678948,218,0 +170737678996,218,0 +170737679043,218,0 +170737679091,218,0 +170737679141,218,0 +170737679189,218,0 +170737679237,218,0 +170737679285,218,0 +170737679334,218,0 +170737679382,218,0 +170737679430,218,0 +170737679480,218,0 +170737679528,218,0 +170737679576,218,0 +170737679624,218,0 +170737679672,219,0 +170737679721,266,0 +170737679771,294,1 +170737679850,236,0 +170737679899,219,0 +170737679949,218,0 +170737679997,218,0 +170737680045,218,0 +170737680093,218,0 +170737680141,218,0 +170737680189,218,0 +170737680237,219,0 +170737680285,218,0 +170737680333,218,0 +170737680382,218,0 +170737680430,218,0 +170737680478,218,0 +170737680526,218,0 +170737680576,218,0 +170737680625,218,0 +170737680673,218,0 +170737680723,218,0 +170737680771,217,0 +170737680820,218,0 +170737680868,219,0 +170737680918,220,0 +170737680966,298,1 +170737681044,282,1 +170737681121,219,0 +170737681169,219,0 +170737681217,218,0 +170737681266,218,0 +170737681316,218,0 +170737681364,218,0 +170737681413,218,0 +170737681461,218,0 +170737681509,218,0 +170737681557,218,0 +170737681605,219,0 +170737681655,218,0 +170737681702,218,0 +170737681752,218,0 +170737681800,219,0 +170737681849,219,0 +170737681899,219,0 +170737681947,218,0 +170737681995,218,0 +170737682043,219,0 +170737682091,219,0 +170737682139,220,0 +170737682186,245,0 +170737682234,272,1 +170737682310,233,0 +170737682358,219,0 +170737682406,218,0 +170737682454,218,0 +170737682502,218,0 +170737682550,218,0 +170737682597,218,0 +170737682645,218,0 +170737682693,218,0 +170737682743,218,0 +170737682790,218,0 +170737682838,218,0 +170737682886,218,0 +170737682934,218,0 +170737682982,218,0 +170737683030,218,0 +170737683078,218,0 +170737683126,218,0 +170737683174,218,0 +170737683222,218,0 +170737683271,218,0 +170737683321,218,0 +170737683369,219,0 +170737683417,274,1 +170737683494,265,0 +170737683542,234,0 +170737683591,219,0 +170737683639,218,0 +170737683687,218,0 +170737683735,218,0 +170737683783,218,0 +170737683833,218,0 +170737683881,218,0 +170737683929,218,0 +170737683977,218,0 +170737684025,218,0 +170737684073,218,0 +170737684122,218,0 +170737684170,218,0 +170737684218,218,0 +170737684268,218,0 +170737684316,218,0 +170737684363,218,0 +170737684413,218,0 +170737684461,218,0 +170737684509,218,0 +170737684557,218,0 +170737684604,220,0 +170737684652,295,1 +170737684732,282,1 +170737684812,219,0 +170737684860,219,0 +170737684908,218,0 +170737684956,219,0 +170737685004,219,0 +170737685051,219,0 +170737685099,218,0 +170737685149,219,0 +170737685197,219,0 +170737685245,219,0 +170737685292,219,0 +170737685342,219,0 +170737685390,219,0 +170737685438,219,0 +170737685486,219,0 +170737685533,218,0 +170737685581,219,0 +170737685629,218,0 +170737685677,219,0 +170737685727,219,0 +170737685776,218,0 +170737685824,220,0 +170737685872,267,0 +170737685920,276,1 +170737686001,233,0 +170737686050,218,0 +170737686098,218,0 +170737686146,218,0 +170737686194,218,0 +170737686244,218,0 +170737686293,218,0 +170737686343,218,0 +170737686392,219,0 +170737686440,218,0 +170737686490,218,0 +170737686538,218,0 +170737686586,218,0 +170737686634,218,0 +170737686681,218,0 +170737686731,218,0 +170737686779,218,0 +170737686827,218,0 +170737686875,218,0 +170737686923,218,0 +170737686971,218,0 +170737687019,218,0 +170737687067,220,0 +170737687116,278,1 +170737687194,286,1 +170737687269,219,0 +170737687317,218,0 +170737687365,218,0 +170737687413,218,0 +170737687460,218,0 +170737687508,218,0 +170737687556,218,0 +170737687604,218,0 +170737687652,218,0 +170737687700,218,0 +170737687748,218,0 +170737687796,218,0 +170737687844,218,0 +170737687892,218,0 +170737687941,218,0 +170737687990,218,0 +170737688038,218,0 +170737688088,218,0 +170737688136,218,0 +170737688184,218,0 +170737688233,218,0 +170737688281,219,0 +170737688331,288,1 +170737688411,279,1 +170737688486,221,0 +170737688535,218,0 +170737688585,218,0 +170737688633,218,0 +170737688681,218,0 +170737688729,217,0 +170737688777,218,0 +170737688826,218,0 +170737688876,218,0 +170737688925,218,0 +170737688975,218,0 +170737689024,218,0 +170737689072,218,0 +170737689120,218,0 +170737689168,218,0 +170737689218,218,0 +170737689266,218,0 +170737689314,218,0 +170737689362,218,0 +170737689410,218,0 +170737689457,218,0 +170737689505,219,0 +170737689553,288,1 +170737689635,279,1 +170737689716,218,0 +170737689766,218,0 +170737689813,218,0 +170737689861,218,0 +170737689911,218,0 +170737689960,218,0 +170737690008,218,0 +170737690058,218,0 +170737690107,218,0 +170737690157,218,0 +170737690205,218,0 +170737690253,217,0 +170737690301,218,0 +170737690349,218,0 +170737690397,218,0 +170737690445,218,0 +170737690493,218,0 +170737690542,218,0 +170737690590,218,0 +170737690640,218,0 +170737690688,218,0 +170737690737,219,0 +170737690787,246,0 +170737690835,270,1 +170737690915,230,0 +170737690963,219,0 +170737691011,218,0 +170737691059,218,0 +170737691107,218,0 +170737691157,218,0 +170737691205,218,0 +170737691253,218,0 +170737691301,218,0 +170737691350,218,0 +170737691398,218,0 +170737691446,218,0 +170737691496,217,0 +170737691544,218,0 +170737691593,217,0 +170737691641,218,0 +170737691691,217,0 +170737691739,218,0 +170737691787,218,0 +170737691835,218,0 +170737691883,218,0 +170737691931,218,0 +170737691980,219,0 +170737692028,265,0 +170737692076,273,1 +170737692154,227,0 +170737692202,218,0 +170737692250,218,0 +170737692298,218,0 +170737692345,218,0 +170737692393,218,0 +170737692441,218,0 +170737692489,218,0 +170737692537,218,0 +170737692585,218,0 +170737692633,217,0 +170737692681,218,0 +170737692729,218,0 +170737692776,218,0 +170737692824,218,0 +170737692872,218,0 +170737692920,218,0 +170737692968,218,0 +170737693016,218,0 +170737693064,218,0 +170737693112,218,0 +170737693160,218,0 +170737693208,219,0 +170737693255,246,0 +170737693305,264,0 +170737693353,225,0 +170737693401,219,0 +170737693449,218,0 +170737693496,217,0 +170737693544,218,0 +170737693592,217,0 +170737693640,217,0 +170737693688,217,0 +170737693736,217,0 +170737693784,218,0 +170737693833,217,0 +170737693881,217,0 +170737693929,217,0 +170737693977,217,0 +170737694025,217,0 +170737694075,217,0 +170737694123,217,0 +170737694172,218,0 +170737694220,217,0 +170737694268,217,0 +170737694318,217,0 +170737694365,217,0 +170737694415,218,0 +170737694464,235,0 +170737694512,258,0 +170737694560,266,0 +170737694610,226,0 +170737694658,218,0 +170737694706,218,0 +170737694755,218,0 +170737694803,218,0 +170737694851,218,0 +170737694901,218,0 +170737694949,217,0 +170737694998,218,0 +170737695046,217,0 +170737695094,218,0 +170737695144,218,0 +170737695193,217,0 +170737695241,218,0 +170737695289,218,0 +170737695339,217,0 +170737695387,218,0 +170737695436,218,0 +170737695484,218,0 +170737695532,218,0 +170737695580,218,0 +170737695628,218,0 +170737695676,218,0 +170737695724,218,0 +170737695773,218,0 +170737695821,217,0 +170737695869,218,0 +170737695917,218,0 +170737695965,218,0 +170737696013,218,0 +170737696061,218,0 +170737696109,218,0 +170737696157,218,0 +170737696205,218,0 +170737696253,219,0 +170737696302,225,0 +170737696350,277,1 +170737696434,232,0 +170737696482,219,0 +170737696530,218,0 +170737696579,218,0 +170737696627,218,0 +170737696675,218,0 +170737696723,218,0 +170737696771,218,0 +170737696819,218,0 +170737696869,218,0 +170737696917,218,0 +170737696965,218,0 +170737697013,218,0 +170737697061,218,0 +170737697108,218,0 +170737697156,218,0 +170737697204,218,0 +170737697252,218,0 +170737697300,218,0 +170737697348,218,0 +170737697397,218,0 +170737697447,218,0 +170737697495,219,0 +170737697543,275,1 +170737697627,263,0 +170737697675,224,0 +170737697723,218,0 +170737697772,218,0 +170737697820,218,0 +170737697868,218,0 +170737697916,218,0 +170737697964,218,0 +170737698012,218,0 +170737698060,218,0 +170737698108,218,0 +170737698156,218,0 +170737698204,218,0 +170737698254,218,0 +170737698303,218,0 +170737698353,217,0 +170737698402,218,0 +170737698452,218,0 +170737698500,218,0 +170737698548,218,0 +170737698596,218,0 +170737698644,218,0 +170737698692,218,0 +170737698741,220,0 +170737698789,267,0 +170737698839,270,1 +170737698926,221,0 +170737698974,218,0 +170737699021,218,0 +170737699069,218,0 +170737699117,218,0 +170737699167,218,0 +170737699215,218,0 +170737699263,218,0 +170737699311,218,0 +170737699360,218,0 +170737699408,218,0 +170737699458,218,0 +170737699506,218,0 +170737699554,218,0 +170737699602,218,0 +170737699650,218,0 +170737699699,218,0 +170737699747,218,0 +170737699795,218,0 +170737699845,218,0 +170737699893,218,0 +170737699941,219,0 +170737699989,222,0 +170737700036,284,1 +170737700117,231,0 +170737700165,222,0 +170737700215,218,0 +170737700264,218,0 +170737700312,218,0 +170737700360,218,0 +170737700408,218,0 +170737700456,218,0 +170737700506,218,0 +170737700555,218,0 +170737700605,218,0 +170737700654,218,0 +170737700702,218,0 +170737700750,218,0 +170737700798,218,0 +170737700846,218,0 +170737700896,218,0 +170737700944,218,0 +170737700991,218,0 +170737701039,218,0 +170737701087,218,0 +170737701135,218,0 +170737701183,219,0 +170737701231,275,1 +170737701307,277,1 +170737701381,223,0 +170737701429,218,0 +170737701477,218,0 +170737701525,218,0 +170737701573,218,0 +170737701621,218,0 +170737701669,218,0 +170737701717,218,0 +170737701765,218,0 +170737701814,218,0 +170737701862,218,0 +170737701910,218,0 +170737701958,218,0 +170737702006,218,0 +170737702056,218,0 +170737702105,218,0 +170737702155,218,0 +170737702204,218,0 +170737702252,218,0 +170737702302,218,0 +170737702350,218,0 +170737702398,219,0 +170737702446,228,0 +170737702495,275,1 +170737702574,237,0 +170737702622,219,0 +170737702670,218,0 +170737702718,218,0 +170737702766,218,0 +170737702814,218,0 +170737702861,218,0 +170737702909,218,0 +170737702957,218,0 +170737703005,218,0 +170737703055,218,0 +170737703103,218,0 +170737703152,218,0 +170737703200,218,0 +170737703250,218,0 +170737703299,218,0 +170737703347,218,0 +170737703397,218,0 +170737703445,218,0 +170737703493,218,0 +170737703541,218,0 +170737703589,218,0 +170737703637,218,0 +170737703686,225,0 +170737703736,269,0 +170737703784,266,0 +170737703832,226,0 +170737703880,218,0 +170737703928,218,0 +170737703977,218,0 +170737704025,218,0 +170737704073,218,0 +170737704121,218,0 +170737704169,218,0 +170737704219,218,0 +170737704267,218,0 +170737704315,218,0 +170737704363,218,0 +170737704411,218,0 +170737704459,218,0 +170737704507,218,0 +170737704554,218,0 +170737704602,217,0 +170737704651,218,0 +170737704700,218,0 +170737704748,218,0 +170737704798,218,0 +170737704846,218,0 +170737704893,220,0 +170737704941,276,1 +170737705027,232,0 +170737705075,219,0 +170737705123,218,0 +170737705171,218,0 +170737705220,218,0 +170737705268,218,0 +170737705318,218,0 +170737705366,218,0 +170737705415,218,0 +170737705463,218,0 +170737705511,218,0 +170737705561,218,0 +170737705609,218,0 +170737705657,218,0 +170737705705,218,0 +170737705752,218,0 +170737705802,218,0 +170737705850,218,0 +170737705898,218,0 +170737705946,218,0 +170737705994,218,0 +170737706042,218,0 +170737706091,219,0 +170737706139,275,1 +170737706224,287,1 +170737706303,219,0 +170737706353,218,0 +170737706401,218,0 +170737706449,218,0 +170737706497,218,0 +170737706545,218,0 +170737706593,218,0 +170737706641,218,0 +170737706690,218,0 +170737706740,218,0 +170737706787,218,0 +170737706835,218,0 +170737706885,218,0 +170737706934,218,0 +170737706984,218,0 +170737707033,218,0 +170737707081,218,0 +170737707129,218,0 +170737707177,218,0 +170737707227,218,0 +170737707275,218,0 +170737707324,219,0 +170737707372,288,1 +170737707451,284,1 +170737707529,218,0 +170737707577,218,0 +170737707625,218,0 +170737707673,218,0 +170737707721,217,0 +170737707769,217,0 +170737707817,218,0 +170737707865,218,0 +170737707915,218,0 +170737707963,218,0 +170737708012,217,0 +170737708060,218,0 +170737708108,218,0 +170737708156,218,0 +170737708204,218,0 +170737708254,218,0 +170737708301,218,0 +170737708349,218,0 +170737708397,218,0 +170737708445,218,0 +170737708493,218,0 +170737708543,218,0 +170737708591,221,0 +170737708639,287,1 +170737708719,234,0 +170737708769,220,0 +170737708818,218,0 +170737708868,218,0 +170737708916,218,0 +170737708965,218,0 +170737709013,218,0 +170737709061,218,0 +170737709109,218,0 +170737709157,218,0 +170737709205,218,0 +170737709253,217,0 +170737709301,218,0 +170737709349,218,0 +170737709397,217,0 +170737709445,218,0 +170737709493,217,0 +170737709541,218,0 +170737709590,218,0 +170737709638,218,0 +170737709688,217,0 +170737709736,217,0 +170737709785,219,0 +170737709835,278,1 +170737709918,292,1 +170737709997,219,0 +170737710045,218,0 +170737710093,217,0 +170737710141,218,0 +170737710189,218,0 +170737710237,217,0 +170737710285,218,0 +170737710333,218,0 +170737710381,218,0 +170737710429,218,0 +170737710477,218,0 +170737710525,218,0 +170737710573,218,0 +170737710623,218,0 +170737710671,218,0 +170737710720,218,0 +170737710768,218,0 +170737710816,218,0 +170737710864,218,0 +170737710913,218,0 +170737710961,218,0 +170737711009,219,0 +170737711059,276,1 +170737711138,289,1 +170737711219,219,0 +170737711268,219,0 +170737711316,218,0 +170737711366,218,0 +170737711414,218,0 +170737711463,219,0 +170737711511,218,0 +170737711559,218,0 +170737711607,218,0 +170737711655,219,0 +170737711703,218,0 +170737711753,219,0 +170737711801,218,0 +170737711849,219,0 +170737711897,218,0 +170737711945,218,0 +170737711994,219,0 +170737712042,218,0 +170737712090,218,0 +170737712138,218,0 +170737712186,218,0 +170737712234,219,0 +170737712283,240,0 +170737712333,294,1 +170737712412,238,0 +170737712461,218,0 +170737712511,218,0 +170737712560,218,0 +170737712610,218,0 +170737712659,218,0 +170737712707,218,0 +170737712755,218,0 +170737712803,218,0 +170737712853,218,0 +170737712902,218,0 +170737712952,218,0 +170737713000,218,0 +170737713048,218,0 +170737713097,218,0 +170737713145,218,0 +170737713193,218,0 +170737713241,218,0 +170737713289,218,0 +170737713337,218,0 +170737713385,218,0 +170737713433,218,0 +170737713481,220,0 +170737713530,280,1 +170737713612,253,0 +170737713661,225,0 +170737713709,218,0 +170737713757,218,0 +170737713807,218,0 +170737713855,217,0 +170737713903,217,0 +170737713951,218,0 +170737713999,218,0 +170737714048,218,0 +170737714096,218,0 +170737714144,218,0 +170737714192,218,0 +170737714242,218,0 +170737714289,218,0 +170737714339,218,0 +170737714387,218,0 +170737714435,218,0 +170737714484,218,0 +170737714532,218,0 +170737714580,218,0 +170737714628,218,0 +170737714676,219,0 +170737714726,227,0 +170737714775,281,1 +170737714853,226,0 +170737714901,219,0 +170737714949,218,0 +170737714997,218,0 +170737715045,218,0 +170737715093,218,0 +170737715141,218,0 +170737715189,218,0 +170737715237,218,0 +170737715285,218,0 +170737715333,218,0 +170737715382,218,0 +170737715430,218,0 +170737715478,218,0 +170737715527,218,0 +170737715577,218,0 +170737715625,218,0 +170737715673,218,0 +170737715721,218,0 +170737715769,218,0 +170737715817,218,0 +170737715866,218,0 +170737715914,219,0 +170737715962,225,0 +170737716012,278,1 +170737716095,232,0 +170737716143,219,0 +170737716191,218,0 +170737716239,218,0 +170737716288,218,0 +170737716336,218,0 +170737716384,218,0 +170737716434,218,0 +170737716483,218,0 +170737716531,218,0 +170737716579,218,0 +170737716627,218,0 +170737716675,218,0 +170737716723,218,0 +170737716772,218,0 +170737716820,217,0 +170737716870,218,0 +170737716919,218,0 +170737716967,218,0 +170737717015,218,0 +170737717063,218,0 +170737717111,218,0 +170737717161,219,0 +170737717209,290,1 +170737717293,270,1 +170737717374,220,0 +170737717422,218,0 +170737717470,218,0 +170737717520,218,0 +170737717568,218,0 +170737717616,218,0 +170737717663,218,0 +170737717711,218,0 +170737717759,218,0 +170737717807,218,0 +170737717855,218,0 +170737717905,218,0 +170737717953,218,0 +170737718001,218,0 +170737718049,218,0 +170737718097,218,0 +170737718146,218,0 +170737718194,218,0 +170737718242,218,0 +170737718290,218,0 +170737718338,218,0 +170737718388,220,0 +170737718435,276,1 +170737718517,287,1 +170737718595,219,0 +170737718642,217,0 +170737718690,217,0 +170737718740,217,0 +170737718788,217,0 +170737718836,217,0 +170737718885,217,0 +170737718933,217,0 +170737718981,217,0 +170737719029,217,0 +170737719077,217,0 +170737719125,217,0 +170737719173,217,0 +170737719221,217,0 +170737719269,217,0 +170737719317,217,0 +170737719365,217,0 +170737719413,217,0 +170737719461,218,0 +170737719509,217,0 +170737719557,217,0 +170737719605,218,0 +170737719655,249,0 +170737719703,298,1 +170737719783,236,0 +170737719833,218,0 +170737719881,218,0 +170737719929,218,0 +170737719977,218,0 +170737720025,218,0 +170737720072,219,0 +170737720120,218,0 +170737720168,218,0 +170737720216,218,0 +170737720264,218,0 +170737720312,218,0 +170737720362,218,0 +170737720410,218,0 +170737720458,218,0 +170737720505,219,0 +170737720553,218,0 +170737720601,218,0 +170737720649,218,0 +170737720697,219,0 +170737720747,218,0 +170737720795,219,0 +170737720843,219,0 +170737720891,246,0 +170737720939,272,1 +170737721025,229,0 +170737721075,217,0 +170737721123,217,0 +170737721171,217,0 +170737721219,217,0 +170737721268,217,0 +170737721318,217,0 +170737721367,217,0 +170737721417,217,0 +170737721465,217,0 +170737721514,217,0 +170737721562,217,0 +170737721612,217,0 +170737721660,217,0 +170737721709,217,0 +170737721757,217,0 +170737721805,217,0 +170737721853,217,0 +170737721901,217,0 +170737721949,217,0 +170737721997,217,0 +170737722045,217,0 +170737722093,219,0 +170737722143,276,1 +170737722222,230,0 +170737722270,221,0 +170737722318,217,0 +170737722366,217,0 +170737722414,217,0 +170737722462,217,0 +170737722512,217,0 +170737722560,217,0 +170737722608,217,0 +170737722656,217,0 +170737722704,217,0 +170737722753,217,0 +170737722801,217,0 +170737722849,217,0 +170737722897,217,0 +170737722945,217,0 +170737722993,217,0 +170737723041,217,0 +170737723089,217,0 +170737723137,217,0 +170737723187,217,0 +170737723235,217,0 +170737723282,218,0 +170737723330,221,0 +170737723378,273,1 +170737723458,230,0 +170737723506,218,0 +170737723555,217,0 +170737723603,217,0 +170737723651,217,0 +170737723699,217,0 +170737723747,217,0 +170737723795,217,0 +170737723843,217,0 +170737723891,217,0 +170737723941,217,0 +170737723989,217,0 +170737724038,217,0 +170737724086,217,0 +170737724136,217,0 +170737724185,217,0 +170737724233,216,0 +170737724281,217,0 +170737724331,217,0 +170737724380,216,0 +170737724428,217,0 +170737724476,217,0 +170737724524,218,0 +170737724572,252,0 +170737724621,268,0 +170737724669,253,0 +170737724717,224,0 +170737724765,218,0 +170737724813,218,0 +170737724863,217,0 +170737724911,218,0 +170737724959,217,0 +170737725007,217,0 +170737725056,217,0 +170737725106,218,0 +170737725154,218,0 +170737725202,217,0 +170737725250,218,0 +170737725298,217,0 +170737725347,217,0 +170737725395,217,0 +170737725443,218,0 +170737725491,217,0 +170737725539,217,0 +170737725587,218,0 +170737725637,217,0 +170737725684,217,0 +170737725732,218,0 +170737725780,219,0 +170737725828,269,0 +170737725878,274,1 +170737725960,227,0 +170737726008,218,0 +170737726056,217,0 +170737726104,218,0 +170737726154,218,0 +170737726201,218,0 +170737726251,217,0 +170737726299,218,0 +170737726348,217,0 +170737726396,217,0 +170737726444,217,0 +170737726492,218,0 +170737726540,217,0 +170737726588,218,0 +170737726636,218,0 +170737726684,218,0 +170737726732,218,0 +170737726782,218,0 +170737726830,218,0 +170737726879,218,0 +170737726927,217,0 +170737726975,218,0 +170737727023,233,0 +170737727071,284,1 +170737727154,237,0 +170737727202,218,0 +170737727250,218,0 +170737727298,218,0 +170737727346,218,0 +170737727394,218,0 +170737727442,217,0 +170737727490,217,0 +170737727538,217,0 +170737727586,217,0 +170737727635,218,0 +170737727683,218,0 +170737727731,218,0 +170737727779,218,0 +170737727827,218,0 +170737727876,218,0 +170737727924,218,0 +170737727972,217,0 +170737728022,217,0 +170737728070,217,0 +170737728119,217,0 +170737728167,217,0 +170737728217,218,0 +170737728265,281,1 +170737728341,275,1 +170737728419,220,0 +170737728467,217,0 +170737728515,217,0 +170737728563,218,0 +170737728613,217,0 +170737728661,218,0 +170737728709,218,0 +170737728757,218,0 +170737728806,217,0 +170737728854,218,0 +170737728902,217,0 +170737728950,217,0 +170737728998,217,0 +170737729046,218,0 +170737729094,218,0 +170737729142,217,0 +170737729191,218,0 +170737729239,217,0 +170737729287,217,0 +170737729335,218,0 +170737729383,217,0 +170737729431,218,0 +170737729481,222,0 +170737729530,290,1 +170737729614,230,0 +170737729664,218,0 +170737729712,218,0 +170737729759,217,0 +170737729809,217,0 +170737729859,218,0 +170737729907,218,0 +170737729955,217,0 +170737730004,217,0 +170737730052,217,0 +170737730100,217,0 +170737730148,217,0 +170737730196,217,0 +170737730244,218,0 +170737730293,217,0 +170737730341,218,0 +170737730389,218,0 +170737730439,218,0 +170737730487,218,0 +170737730536,217,0 +170737730584,218,0 +170737730632,218,0 +170737730682,218,0 +170737730731,281,1 +170737730809,298,1 +170737730889,219,0 +170737730938,218,0 +170737730986,218,0 +170737731034,218,0 +170737731082,218,0 +170737731130,218,0 +170737731178,218,0 +170737731226,218,0 +170737731274,218,0 +170737731322,218,0 +170737731370,218,0 +170737731418,218,0 +170737731466,218,0 +170737731514,218,0 +170737731562,218,0 +170737731611,218,0 +170737731659,218,0 +170737731707,218,0 +170737731755,218,0 +170737731805,218,0 +170737731853,218,0 +170737731901,219,0 +170737731950,269,0 +170737731998,294,1 +170737732077,229,0 +170737732125,218,0 +170737732173,217,0 +170737732222,218,0 +170737732270,218,0 +170737732320,218,0 +170737732368,217,0 +170737732416,218,0 +170737732465,218,0 +170737732513,218,0 +170737732563,218,0 +170737732611,218,0 +170737732659,218,0 +170737732707,218,0 +170737732755,218,0 +170737732803,218,0 +170737732851,218,0 +170737732899,218,0 +170737732946,218,0 +170737732994,218,0 +170737733042,218,0 +170737733090,218,0 +170737733138,219,0 +170737733188,282,1 +170737733268,279,1 +170737733346,218,0 +170737733394,218,0 +170737733442,218,0 +170737733490,218,0 +170737733538,217,0 +170737733586,218,0 +170737733634,217,0 +170737733684,217,0 +170737733732,218,0 +170737733781,217,0 +170737733831,218,0 +170737733880,217,0 +170737733928,218,0 +170737733976,217,0 +170737734024,217,0 +170737734074,218,0 +170737734123,217,0 +170737734171,218,0 +170737734219,217,0 +170737734267,217,0 +170737734315,218,0 +170737734363,218,0 +170737734411,276,1 +170737734496,299,1 +170737734576,219,0 +170737734624,218,0 +170737734674,218,0 +170737734722,217,0 +170737734770,217,0 +170737734818,217,0 +170737734866,217,0 +170737734914,217,0 +170737734962,217,0 +170737735010,217,0 +170737735059,217,0 +170737735107,217,0 +170737735158,217,0 +170737735205,217,0 +170737735255,217,0 +170737735304,217,0 +170737735352,217,0 +170737735402,217,0 +170737735452,217,0 +170737735499,217,0 +170737735547,217,0 +170737735595,218,0 +170737735645,283,1 +170737735732,269,0 +170737735780,228,0 +170737735830,218,0 +170737735879,219,0 +170737735927,218,0 +170737735977,218,0 +170737736025,218,0 +170737736073,218,0 +170737736121,218,0 +170737736169,218,0 +170737736217,218,0 +170737736265,218,0 +170737736312,218,0 +170737736360,218,0 +170737736410,218,0 +170737736458,218,0 +170737736508,218,0 +170737736557,218,0 +170737736607,218,0 +170737736656,218,0 +170737736704,218,0 +170737736752,218,0 +170737736800,218,0 +170737736848,241,0 +170737736898,294,1 +170737736992,232,0 +170737737041,219,0 +170737737089,218,0 +170737737139,218,0 +170737737187,218,0 +170737737236,218,0 +170737737284,218,0 +170737737334,218,0 +170737737383,218,0 +170737737431,218,0 +170737737481,218,0 +170737737529,218,0 +170737737577,218,0 +170737737626,218,0 +170737737674,218,0 +170737737724,218,0 +170737737772,218,0 +170737737821,218,0 +170737737869,218,0 +170737737917,218,0 +170737737965,218,0 +170737738013,218,0 +170737738063,223,0 +170737738112,237,0 +170737738160,309,1 +170737738248,230,0 +170737738296,219,0 +170737738346,218,0 +170737738394,218,0 +170737738442,218,0 +170737738491,219,0 +170737738539,218,0 +170737738589,218,0 +170737738637,218,0 +170737738685,218,0 +170737738732,218,0 +170737738780,218,0 +170737738828,219,0 +170737738876,218,0 +170737738926,218,0 +170737738974,218,0 +170737739022,218,0 +170737739070,218,0 +170737739118,218,0 +170737739166,218,0 +170737739214,218,0 +170737739263,219,0 +170737739311,235,0 +170737739359,287,1 +170737739442,235,0 +170737739489,219,0 +170737739537,218,0 +170737739587,218,0 +170737739635,218,0 +170737739683,218,0 +170737739731,218,0 +170737739779,218,0 +170737739827,219,0 +170737739875,218,0 +170737739924,218,0 +170737739974,218,0 +170737740022,218,0 +170737740070,218,0 +170737740119,218,0 +170737740167,218,0 +170737740215,218,0 +170737740263,218,0 +170737740311,218,0 +170737740359,218,0 +170737740407,218,0 +170737740455,218,0 +170737740503,220,0 +170737740551,273,1 +170737740636,288,1 +170737740796,218,0 +170737740843,218,0 +170737740891,218,0 +170737740939,218,0 +170737740989,218,0 +170737741038,218,0 +170737741086,218,0 +170737741134,218,0 +170737741184,218,0 +170737741232,218,0 +170737741280,218,0 +170737741328,218,0 +170737741376,218,0 +170737741425,218,0 +170737741473,217,0 +170737741523,218,0 +170737741571,218,0 +170737741620,218,0 +170737741670,218,0 +170737741718,219,0 +170737741766,240,0 +170737741815,280,1 +170737741897,231,0 +170737741946,218,0 +170737741994,218,0 +170737742042,218,0 +170737742090,218,0 +170737742138,218,0 +170737742186,218,0 +170737742236,218,0 +170737742284,218,0 +170737742333,218,0 +170737742383,218,0 +170737742431,218,0 +170737742479,218,0 +170737742528,218,0 +170737742578,218,0 +170737742626,218,0 +170737742674,218,0 +170737742723,218,0 +170737742771,218,0 +170737742819,218,0 +170737742869,218,0 +170737742916,218,0 +170737742964,219,0 +170737743012,277,1 +170737743096,291,1 +170737743175,220,0 +170737743223,218,0 +170737743271,218,0 +170737743319,218,0 +170737743367,218,0 +170737743415,218,0 +170737743464,218,0 +170737743512,218,0 +170737743562,218,0 +170737743610,218,0 +170737743658,218,0 +170737743706,218,0 +170737743754,218,0 +170737743802,218,0 +170737743851,218,0 +170737743899,218,0 +170737743947,218,0 +170737743995,218,0 +170737744043,218,0 +170737744093,218,0 +170737744142,218,0 +170737744190,220,0 +170737744238,290,1 +170737744321,285,1 +170737744402,219,0 +170737744450,218,0 +170737744498,218,0 +170737744546,218,0 +170737744596,218,0 +170737744644,218,0 +170737744692,218,0 +170737744741,218,0 +170737744789,218,0 +170737744837,217,0 +170737744887,217,0 +170737744935,218,0 +170737744982,217,0 +170737745030,218,0 +170737745078,218,0 +170737745126,217,0 +170737745174,218,0 +170737745222,218,0 +170737745270,217,0 +170737745318,218,0 +170737745366,218,0 +170737745414,219,0 +170737745462,281,1 +170737745544,286,1 +170737745622,219,0 +170737745672,218,0 +170737745720,218,0 +170737745768,218,0 +170737745816,218,0 +170737745865,218,0 +170737745915,218,0 +170737745963,218,0 +170737746011,218,0 +170737746061,218,0 +170737746110,218,0 +170737746158,218,0 +170737746206,218,0 +170737746254,217,0 +170737746304,218,0 +170737746352,217,0 +170737746401,218,0 +170737746449,218,0 +170737746498,218,0 +170737746548,218,0 +170737746596,218,0 +170737746645,219,0 +170737746693,269,0 +170737746743,291,1 +170737746826,234,0 +170737746875,219,0 +170737746925,218,0 +170737746974,218,0 +170737747024,218,0 +170737747073,218,0 +170737747123,218,0 +170737747172,218,0 +170737747220,218,0 +170737747270,218,0 +170737747318,218,0 +170737747367,218,0 +170737747417,218,0 +170737747465,218,0 +170737747514,218,0 +170737747562,218,0 +170737747610,218,0 +170737747658,218,0 +170737747708,218,0 +170737747757,218,0 +170737747805,218,0 +170737747853,219,0 +170737747901,221,0 +170737747949,285,1 +170737748029,232,0 +170737748077,221,0 +170737748125,219,0 +170737748173,218,0 +170737748221,218,0 +170737748271,219,0 +170737748319,219,0 +170737748367,219,0 +170737748416,218,0 +170737748464,219,0 +170737748514,218,0 +170737748562,219,0 +170737748610,219,0 +170737748658,218,0 +170737748706,219,0 +170737748754,218,0 +170737748802,218,0 +170737748850,218,0 +170737748898,218,0 +170737748947,218,0 +170737748997,219,0 +170737749045,219,0 +170737749094,220,0 +170737749144,283,1 +170737749221,274,1 +170737749300,219,0 +170737749348,218,0 +170737749396,218,0 +170737749444,218,0 +170737749492,218,0 +170737749541,218,0 +170737749589,218,0 +170737749637,218,0 +170737749685,218,0 +170737749733,218,0 +170737749780,218,0 +170737749830,218,0 +170737749878,218,0 +170737749926,218,0 +170737749975,218,0 +170737750025,218,0 +170737750073,218,0 +170737750120,218,0 +170737750168,218,0 +170737750218,218,0 +170737750266,218,0 +170737750314,218,0 +170737750362,221,0 +170737750410,275,1 +170737750491,230,0 +170737750540,219,0 +170737750590,218,0 +170737750637,218,0 +170737750685,218,0 +170737750735,218,0 +170737750783,218,0 +170737750831,218,0 +170737750880,218,0 +170737750928,217,0 +170737750976,218,0 +170737751026,218,0 +170737751074,218,0 +170737751122,218,0 +170737751171,217,0 +170737751219,218,0 +170737751267,217,0 +170737751315,218,0 +170737751363,218,0 +170737751411,218,0 +170737751460,218,0 +170737751508,218,0 +170737751556,219,0 +170737751604,229,0 +170737751654,271,1 +170737751730,228,0 +170737751780,220,0 +170737751827,219,0 +170737751875,219,0 +170737751923,218,0 +170737751971,218,0 +170737752019,218,0 +170737752067,218,0 +170737752115,219,0 +170737752163,218,0 +170737752210,218,0 +170737752258,219,0 +170737752306,218,0 +170737752354,218,0 +170737752402,218,0 +170737752451,218,0 +170737752499,218,0 +170737752547,218,0 +170737752595,219,0 +170737752643,219,0 +170737752693,219,0 +170737752741,219,0 +170737752788,219,0 +170737752836,259,0 +170737752884,272,1 +170737752965,233,0 +170737753013,219,0 +170737753061,218,0 +170737753109,218,0 +170737753157,218,0 +170737753205,218,0 +170737753255,218,0 +170737753304,218,0 +170737753352,218,0 +170737753400,218,0 +170737753448,219,0 +170737753496,218,0 +170737753544,219,0 +170737753593,219,0 +170737753641,218,0 +170737753689,218,0 +170737753737,219,0 +170737753785,218,0 +170737753835,218,0 +170737753883,219,0 +170737753931,219,0 +170737753979,219,0 +170737754027,220,0 +170737754075,287,1 +170737754159,276,1 +170737754242,219,0 +170737754291,219,0 +170737754339,219,0 +170737754389,219,0 +170737754437,218,0 +170737754485,219,0 +170737754535,219,0 +170737754582,218,0 +170737754630,219,0 +170737754678,218,0 +170737754728,219,0 +170737754776,218,0 +170737754824,218,0 +170737754872,218,0 +170737754920,218,0 +170737754968,218,0 +170737755017,219,0 +170737755067,218,0 +170737755115,219,0 +170737755163,218,0 +170737755211,219,0 +170737755259,219,0 +170737755306,284,1 +170737755384,304,1 +170737755461,220,0 +170737755511,218,0 +170737755559,219,0 +170737755608,218,0 +170737755656,218,0 +170737755704,218,0 +170737755752,219,0 +170737755800,218,0 +170737755848,218,0 +170737755897,218,0 +170737755945,218,0 +170737755995,218,0 +170737756043,218,0 +170737756091,218,0 +170737756140,218,0 +170737756188,218,0 +170737756238,218,0 +170737756286,218,0 +170737756334,218,0 +170737756383,218,0 +170737756431,218,0 +170737756481,220,0 +170737756529,270,1 +170737756626,235,0 +170737756674,223,0 +170737756723,218,0 +170737756771,218,0 +170737756819,218,0 +170737756867,218,0 +170737756915,218,0 +170737756963,218,0 +170737757013,218,0 +170737757061,218,0 +170737757108,218,0 +170737757156,218,0 +170737757206,218,0 +170737757254,218,0 +170737757302,218,0 +170737757350,218,0 +170737757398,218,0 +170737757446,218,0 +170737757495,218,0 +170737757543,218,0 +170737757591,218,0 +170737757639,218,0 +170737757687,219,0 +170737757736,221,0 +170737757786,276,1 +170737757867,234,0 +170737757917,219,0 +170737757966,218,0 +170737758014,218,0 +170737758064,218,0 +170737758112,218,0 +170737758160,218,0 +170737758208,217,0 +170737758256,218,0 +170737758304,218,0 +170737758351,218,0 +170737758399,218,0 +170737758447,218,0 +170737758495,218,0 +170737758543,217,0 +170737758591,218,0 +170737758639,218,0 +170737758687,218,0 +170737758734,218,0 +170737758784,218,0 +170737758832,218,0 +170737758880,218,0 +170737758928,219,0 +170737758976,233,0 +170737759024,275,1 +170737759105,235,0 +170737759153,219,0 +170737759201,218,0 +170737759250,218,0 +170737759298,218,0 +170737759348,218,0 +170737759396,218,0 +170737759444,218,0 +170737759493,218,0 +170737759541,218,0 +170737759589,218,0 +170737759638,218,0 +170737759688,218,0 +170737759736,218,0 +170737759784,218,0 +170737759832,218,0 +170737759880,218,0 +170737759928,218,0 +170737759976,218,0 +170737760023,218,0 +170737760071,218,0 +170737760119,218,0 +170737760167,219,0 +170737760215,224,0 +170737760263,264,0 +170737760311,279,1 +170737760390,219,0 +170737760440,218,0 +170737760488,218,0 +170737760536,218,0 +170737760584,218,0 +170737760632,218,0 +170737760679,217,0 +170737760729,218,0 +170737760777,218,0 +170737760825,218,0 +170737760873,218,0 +170737760922,218,0 +170737760970,218,0 +170737761018,218,0 +170737761066,218,0 +170737761114,218,0 +170737761162,218,0 +170737761210,218,0 +170737761258,218,0 +170737761306,218,0 +170737761355,218,0 +170737761403,220,0 +170737761451,284,1 +170737761533,274,1 +170737761615,218,0 +170737761663,218,0 +170737761711,219,0 +170737761759,218,0 +170737761807,218,0 +170737761855,218,0 +170737761904,218,0 +170737761952,218,0 +170737762002,218,0 +170737762051,218,0 +170737762099,218,0 +170737762147,218,0 +170737762195,218,0 +170737762243,218,0 +170737762293,218,0 +170737762341,218,0 +170737762389,218,0 +170737762437,218,0 +170737762484,218,0 +170737762534,218,0 +170737762584,219,0 +170737762631,219,0 +170737762679,280,1 +170737762758,263,0 +170737762806,230,0 +170737762854,219,0 +170737762902,218,0 +170737762950,219,0 +170737762999,218,0 +170737763047,218,0 +170737763095,219,0 +170737763143,218,0 +170737763191,218,0 +170737763239,218,0 +170737763287,218,0 +170737763335,219,0 +170737763383,218,0 +170737763432,218,0 +170737763480,218,0 +170737763528,218,0 +170737763576,218,0 +170737763624,218,0 +170737763671,218,0 +170737763719,218,0 +170737763767,218,0 +170737763815,218,0 +170737763863,219,0 +170737763911,261,0 +170737763959,282,1 +170737764040,230,0 +170737764088,218,0 +170737764136,218,0 +170737764184,218,0 +170737764232,217,0 +170737764280,218,0 +170737764327,218,0 +170737764375,217,0 +170737764423,218,0 +170737764471,217,0 +170737764519,217,0 +170737764569,218,0 +170737764618,217,0 +170737764668,218,0 +170737764716,218,0 +170737764763,218,0 +170737764811,218,0 +170737764861,218,0 +170737764909,218,0 +170737764959,218,0 +170737765007,218,0 +170737765054,218,0 +170737765102,220,0 +170737765152,285,1 +170737765235,231,0 +170737765283,219,0 +170737765332,218,0 +170737765382,218,0 +170737765430,218,0 +170737765478,218,0 +170737765526,217,0 +170737765574,218,0 +170737765623,217,0 +170737765671,218,0 +170737765719,218,0 +170737765769,217,0 +170737765817,217,0 +170737765866,218,0 +170737765916,218,0 +170737765964,218,0 +170737766012,218,0 +170737766060,218,0 +170737766109,218,0 +170737766159,218,0 +170737766207,218,0 +170737766256,218,0 +170737766304,219,0 +170737766354,272,1 +170737766434,287,1 +170737766512,220,0 +170737766560,218,0 +170737766608,218,0 +170737766658,218,0 +170737766706,218,0 +170737766755,218,0 +170737766803,218,0 +170737766851,218,0 +170737766899,218,0 +170737766949,218,0 +170737766997,218,0 +170737767045,218,0 +170737767093,218,0 +170737767141,218,0 +170737767189,218,0 +170737767237,218,0 +170737767285,218,0 +170737767334,218,0 +170737767382,218,0 +170737767432,218,0 +170737767480,218,0 +170737767529,219,0 +170737767579,223,0 +170737767627,280,1 +170737767710,234,0 +170737767758,219,0 +170737767805,218,0 +170737767854,218,0 +170737767901,219,0 +170737767949,218,0 +170737767997,218,0 +170737768045,218,0 +170737768093,218,0 +170737768143,218,0 +170737768191,218,0 +170737768239,218,0 +170737768288,218,0 +170737768336,218,0 +170737768384,218,0 +170737768432,218,0 +170737768480,218,0 +170737768529,218,0 +170737768577,218,0 +170737768627,218,0 +170737768675,218,0 +170737768723,219,0 +170737768770,219,0 +170737768818,226,0 +170737768866,286,1 +170737768947,232,0 +170737768995,220,0 +170737769043,218,0 +170737769091,218,0 +170737769138,218,0 +170737769186,218,0 +170737769236,218,0 +170737769284,218,0 +170737769332,218,0 +170737769379,218,0 +170737769427,218,0 +170737769475,217,0 +170737769523,218,0 +170737769571,218,0 +170737769619,218,0 +170737769668,219,0 +170737769716,218,0 +170737769764,218,0 +170737769812,218,0 +170737769860,218,0 +170737769908,219,0 +170737769956,219,0 +170737770003,219,0 +170737770051,261,0 +170737770101,269,0 +170737770149,261,0 +170737770197,224,0 +170737770245,219,0 +170737770293,218,0 +170737770342,219,0 +170737770390,218,0 +170737770438,219,0 +170737770486,219,0 +170737770534,219,0 +170737770582,218,0 +170737770630,218,0 +170737770678,218,0 +170737770726,218,0 +170737770774,218,0 +170737770822,219,0 +170737770872,218,0 +170737770920,218,0 +170737770968,219,0 +170737771016,218,0 +170737771063,218,0 +170737771113,218,0 +170737771161,219,0 +170737771209,219,0 +170737771257,222,0 +170737771306,273,1 +170737771388,228,0 +170737771436,220,0 +170737771484,218,0 +170737771532,218,0 +170737771582,218,0 +170737771630,218,0 +170737771678,218,0 +170737771727,218,0 +170737771775,218,0 +170737771823,218,0 +170737771871,218,0 +170737771919,218,0 +170737771969,218,0 +170737772017,218,0 +170737772064,218,0 +170737772112,218,0 +170737772160,218,0 +170737772208,218,0 +170737772256,218,0 +170737772304,218,0 +170737772352,218,0 +170737772400,218,0 +170737772448,219,0 +170737772495,221,0 +170737772545,280,1 +170737772629,231,0 +170737772677,219,0 +170737772724,218,0 +170737772772,218,0 +170737772820,218,0 +170737772868,218,0 +170737772916,217,0 +170737772964,217,0 +170737773013,217,0 +170737773061,218,0 +170737773109,218,0 +170737773157,217,0 +170737773205,217,0 +170737773253,218,0 +170737773303,218,0 +170737773350,217,0 +170737773398,217,0 +170737773448,217,0 +170737773496,217,0 +170737773544,218,0 +170737773593,218,0 +170737773641,218,0 +170737773689,219,0 +170737773737,270,1 +170737773815,288,1 +170737773893,220,0 +170737773941,218,0 +170737773989,218,0 +170737774038,218,0 +170737774086,218,0 +170737774134,218,0 +170737774182,218,0 +170737774230,218,0 +170737774278,218,0 +170737774325,218,0 +170737774373,218,0 +170737774421,218,0 +170737774469,218,0 +170737774519,218,0 +170737774566,218,0 +170737774614,218,0 +170737774662,218,0 +170737774710,218,0 +170737774760,218,0 +170737774807,218,0 +170737774857,218,0 +170737774905,219,0 +170737774953,225,0 +170737775001,276,1 +170737775084,233,0 +170737775134,219,0 +170737775183,218,0 +170737775231,219,0 +170737775279,219,0 +170737775327,219,0 +170737775375,218,0 +170737775423,219,0 +170737775471,219,0 +170737775519,218,0 +170737775567,218,0 +170737775614,219,0 +170737775662,218,0 +170737775710,219,0 +170737775758,218,0 +170737775806,218,0 +170737775856,219,0 +170737775904,218,0 +170737775951,218,0 +170737775999,218,0 +170737776047,218,0 +170737776095,219,0 +170737776143,219,0 +170737776191,225,0 +170737776239,275,1 +170737776320,234,0 +170737776368,218,0 +170737776416,218,0 +170737776466,218,0 +170737776514,218,0 +170737776562,217,0 +170737776610,217,0 +170737776657,218,0 +170737776705,218,0 +170737776753,218,0 +170737776801,217,0 +170737776849,218,0 +170737776897,218,0 +170737776945,217,0 +170737776994,218,0 +170737777042,218,0 +170737777092,218,0 +170737777139,218,0 +170737777187,217,0 +170737777237,218,0 +170737777285,217,0 +170737777333,218,0 +170737777382,218,0 +170737777430,228,0 +170737777480,286,1 +170737777564,235,0 +170737777612,219,0 +170737777660,218,0 +170737777708,218,0 +170737777756,218,0 +170737777805,218,0 +170737777853,218,0 +170737777901,218,0 +170737777949,218,0 +170737777998,218,0 +170737778046,218,0 +170737778094,218,0 +170737778142,217,0 +170737778190,218,0 +170737778237,218,0 +170737778285,218,0 +170737778333,217,0 +170737778381,218,0 +170737778429,218,0 +170737778477,218,0 +170737778525,218,0 +170737778572,218,0 +170737778620,219,0 +170737778668,285,1 +170737778752,268,0 +170737778800,226,0 +170737778848,218,0 +170737778896,218,0 +170737778944,218,0 +170737778991,218,0 +170737779039,218,0 +170737779087,218,0 +170737779135,218,0 +170737779183,218,0 +170737779231,218,0 +170737779279,217,0 +170737779327,218,0 +170737779375,218,0 +170737779422,218,0 +170737779470,218,0 +170737779518,218,0 +170737779566,218,0 +170737779614,218,0 +170737779662,218,0 +170737779710,218,0 +170737779758,218,0 +170737779805,218,0 +170737779853,219,0 +170737779901,269,0 +170737779949,296,1 +170737780025,229,0 +170737780075,218,0 +170737780124,218,0 +170737780172,218,0 +170737780222,218,0 +170737780270,218,0 +170737780318,218,0 +170737780366,218,0 +170737780414,218,0 +170737780462,218,0 +170737780511,219,0 +170737780559,218,0 +170737780607,218,0 +170737780655,218,0 +170737780703,218,0 +170737780751,218,0 +170737780798,218,0 +170737780846,218,0 +170737780896,218,0 +170737780943,218,0 +170737780991,218,0 +170737781039,218,0 +170737781087,219,0 +170737781135,283,1 +170737781213,279,1 +170737781291,218,0 +170737781339,218,0 +170737781386,218,0 +170737781434,218,0 +170737781482,218,0 +170737781530,217,0 +170737781578,218,0 +170737781626,218,0 +170737781674,217,0 +170737781722,218,0 +170737781771,217,0 +170737781821,218,0 +170737781869,218,0 +170737781916,217,0 +170737781964,218,0 +170737782014,218,0 +170737782062,218,0 +170737782111,218,0 +170737782159,217,0 +170737782207,218,0 +170737782255,218,0 +170737782303,219,0 +170737782350,270,1 +170737782430,277,1 +170737782506,221,0 +170737782554,218,0 +170737782604,218,0 +170737782652,218,0 +170737782701,218,0 +170737782751,218,0 +170737782801,218,0 +170737782848,218,0 +170737782896,218,0 +170737782944,218,0 +170737782992,218,0 +170737783040,218,0 +170737783088,218,0 +170737783138,218,0 +170737783186,218,0 +170737783234,218,0 +170737783283,218,0 +170737783331,218,0 +170737783379,218,0 +170737783427,219,0 +170737783475,218,0 +170737783523,219,0 +170737783571,239,0 +170737783618,287,1 +170737783698,236,0 +170737783746,219,0 +170737783794,218,0 +170737783842,219,0 +170737783890,218,0 +170737783938,218,0 +170737783986,218,0 +170737784034,218,0 +170737784081,218,0 +170737784129,218,0 +170737784177,218,0 +170737784225,218,0 +170737784273,218,0 +170737784321,219,0 +170737784369,218,0 +170737784417,218,0 +170737784465,218,0 +170737784512,218,0 +170737784560,218,0 +170737784608,218,0 +170737784656,218,0 +170737784704,218,0 +170737784752,219,0 +170737784800,229,0 +170737784848,282,1 +170737784930,237,0 +170737784978,219,0 +170737785028,218,0 +170737785076,218,0 +170737785123,218,0 +170737785171,218,0 +170737785221,218,0 +170737785269,218,0 +170737785318,218,0 +170737785366,218,0 +170737785414,219,0 +170737785462,218,0 +170737785511,218,0 +170737785561,219,0 +170737785608,218,0 +170737785656,219,0 +170737785704,218,0 +170737785754,218,0 +170737785803,218,0 +170737785851,218,0 +170737785899,218,0 +170737785947,218,0 +170737785995,219,0 +170737786043,245,0 +170737786090,287,1 +170737786168,234,0 +170737786218,219,0 +170737786267,219,0 +170737786315,218,0 +170737786363,218,0 +170737786411,218,0 +170737786459,218,0 +170737786507,218,0 +170737786556,218,0 +170737786604,218,0 +170737786652,218,0 +170737786700,218,0 +170737786748,218,0 +170737786796,219,0 +170737786843,219,0 +170737786891,218,0 +170737786939,219,0 +170737786987,219,0 +170737787035,219,0 +170737787084,219,0 +170737787132,219,0 +170737787180,219,0 +170737787228,220,0 +170737787276,285,1 +170737787360,290,1 +170737787438,219,0 +170737787487,218,0 +170737787537,218,0 +170737787585,218,0 +170737787632,218,0 +170737787680,218,0 +170737787728,218,0 +170737787776,218,0 +170737787824,218,0 +170737787872,218,0 +170737787920,218,0 +170737787968,218,0 +170737788015,218,0 +170737788065,218,0 +170737788113,218,0 +170737788161,218,0 +170737788210,218,0 +170737788260,218,0 +170737788309,218,0 +170737788357,218,0 +170737788405,218,0 +170737788453,219,0 +170737788501,271,1 +170737788582,270,1 +170737788660,219,0 +170737788708,218,0 +170737788756,217,0 +170737788803,218,0 +170737788851,218,0 +170737788901,217,0 +170737788949,217,0 +170737788997,218,0 +170737789045,218,0 +170737789092,218,0 +170737789140,218,0 +170737789188,218,0 +170737789236,218,0 +170737789285,218,0 +170737789333,218,0 +170737789381,218,0 +170737789431,218,0 +170737789480,218,0 +170737789528,218,0 +170737789576,218,0 +170737789624,218,0 +170737789672,218,0 +170737789719,221,0 +170737789767,287,1 +170737789848,230,0 +170737789896,220,0 +170737789944,218,0 +170737789992,218,0 +170737790040,218,0 +170737790087,218,0 +170737790135,218,0 +170737790183,217,0 +170737790231,218,0 +170737790279,217,0 +170737790327,218,0 +170737790375,218,0 +170737790424,218,0 +170737790472,218,0 +170737790520,218,0 +170737790568,218,0 +170737790616,218,0 +170737790664,218,0 +170737790712,218,0 +170737790761,218,0 +170737790810,218,0 +170737790858,218,0 +170737790906,219,0 +170737790954,262,0 +170737791002,282,1 +170737791087,233,0 +170737791137,218,0 +170737791185,218,0 +170737791233,218,0 +170737791281,218,0 +170737791330,218,0 +170737791380,218,0 +170737791427,218,0 +170737791475,218,0 +170737791523,218,0 +170737791571,217,0 +170737791619,218,0 +170737791667,218,0 +170737791715,218,0 +170737791762,218,0 +170737791810,218,0 +170737791858,218,0 +170737791906,218,0 +170737791954,218,0 +170737792002,218,0 +170737792050,218,0 +170737792098,218,0 +170737792145,219,0 +170737792193,278,1 +170737792272,300,1 +170737792352,218,0 +170737792400,218,0 +170737792448,218,0 +170737792496,218,0 +170737792544,218,0 +170737792592,218,0 +170737792641,218,0 +170737792690,218,0 +170737792740,218,0 +170737792788,218,0 +170737792837,218,0 +170737792885,218,0 +170737792933,218,0 +170737792983,218,0 +170737793030,218,0 +170737793078,218,0 +170737793126,218,0 +170737793176,218,0 +170737793224,218,0 +170737793271,218,0 +170737793319,218,0 +170737793367,219,0 +170737793415,266,0 +170737793465,275,1 +170737793545,232,0 +170737793594,218,0 +170737793642,218,0 +170737793690,218,0 +170737793738,218,0 +170737793786,218,0 +170737793833,218,0 +170737793881,217,0 +170737793929,218,0 +170737793977,218,0 +170737794025,218,0 +170737794073,218,0 +170737794121,217,0 +170737794169,218,0 +170737794217,218,0 +170737794265,218,0 +170737794313,218,0 +170737794361,218,0 +170737794409,218,0 +170737794459,217,0 +170737794508,218,0 +170737794556,218,0 +170737794604,219,0 +170737794652,258,0 +170737794700,272,1 +170737794785,231,0 +170737794833,218,0 +170737794881,217,0 +170737794930,217,0 +170737794978,218,0 +170737795026,217,0 +170737795074,218,0 +170737795122,218,0 +170737795170,217,0 +170737795218,217,0 +170737795267,217,0 +170737795315,217,0 +170737795365,217,0 +170737795413,218,0 +170737795460,217,0 +170737795508,217,0 +170737795556,217,0 +170737795604,218,0 +170737795654,217,0 +170737795703,217,0 +170737795751,218,0 +170737795799,218,0 +170737795847,221,0 +170737795894,292,1 +170737795971,268,0 +170737796019,224,0 +170737796066,218,0 +170737796114,218,0 +170737796162,218,0 +170737796210,218,0 +170737796258,218,0 +170737796306,218,0 +170737796354,218,0 +170737796402,217,0 +170737796450,218,0 +170737796497,218,0 +170737796545,218,0 +170737796593,218,0 +170737796641,218,0 +170737796689,218,0 +170737796737,218,0 +170737796785,218,0 +170737796833,217,0 +170737796881,218,0 +170737796930,218,0 +170737796978,218,0 +170737797028,218,0 +170737797076,221,0 +170737797124,283,1 +170737797208,229,0 +170737797256,218,0 +170737797304,217,0 +170737797353,217,0 +170737797401,217,0 +170737797451,217,0 +170737797499,217,0 +170737797547,216,0 +170737797595,216,0 +170737797643,217,0 +170737797691,217,0 +170737797739,217,0 +170737797787,217,0 +170737797835,217,0 +170737797883,217,0 +170737797931,217,0 +170737797978,217,0 +170737798028,217,0 +170737798076,217,0 +170737798124,217,0 +170737798172,217,0 +170737798220,217,0 +170737798267,217,0 +170737798315,223,0 +170737798363,295,1 +170737798451,233,0 +170737798499,218,0 +170737798546,217,0 +170737798596,217,0 +170737798644,217,0 +170737798693,217,0 +170737798741,217,0 +170737798789,217,0 +170737798839,217,0 +170737798888,217,0 +170737798936,217,0 +170737798984,217,0 +170737799032,217,0 +170737799080,217,0 +170737799128,217,0 +170737799177,217,0 +170737799225,217,0 +170737799274,217,0 +170737799322,217,0 +170737799370,217,0 +170737799420,217,0 +170737799468,217,0 +170737799516,218,0 +170737799564,298,1 +170737799643,297,1 +170737799721,219,0 +170737799771,218,0 +170737799818,218,0 +170737799866,218,0 +170737799916,218,0 +170737799964,218,0 +170737800012,218,0 +170737800061,218,0 +170737800109,218,0 +170737800157,218,0 +170737800205,218,0 +170737800253,218,0 +170737800302,218,0 +170737800350,218,0 +170737800398,218,0 +170737800446,218,0 +170737800494,218,0 +170737800543,218,0 +170737800591,218,0 +170737800639,218,0 +170737800687,218,0 +170737800736,219,0 +170737800784,290,1 +170737800867,297,1 +170737800946,219,0 +170737800994,218,0 +170737801043,218,0 +170737801091,218,0 +170737801141,218,0 +170737801189,218,0 +170737801237,218,0 +170737801286,218,0 +170737801334,218,0 +170737801382,218,0 +170737801430,218,0 +170737801478,218,0 +170737801526,217,0 +170737801574,217,0 +170737801622,217,0 +170737801670,217,0 +170737801718,217,0 +170737801766,217,0 +170737801815,218,0 +170737801863,218,0 +170737801911,218,0 +170737801961,219,0 +170737802009,250,0 +170737802057,291,1 +170737802136,237,0 +170737802184,219,0 +170737802232,218,0 +170737802280,218,0 +170737802329,218,0 +170737802377,218,0 +170737802425,218,0 +170737802473,218,0 +170737802523,218,0 +170737802571,218,0 +170737802619,218,0 +170737802667,218,0 +170737802716,218,0 +170737802764,218,0 +170737802814,218,0 +170737802863,218,0 +170737802911,218,0 +170737802959,218,0 +170737803009,217,0 +170737803056,218,0 +170737803104,218,0 +170737803152,218,0 +170737803200,218,0 +170737803248,262,0 +170737803296,296,1 +170737803373,240,0 +170737803421,219,0 +170737803469,218,0 +170737803517,217,0 +170737803566,218,0 +170737803614,218,0 +170737803662,218,0 +170737803710,218,0 +170737803760,218,0 +170737803807,218,0 +170737803857,218,0 +170737803905,218,0 +170737803953,218,0 +170737804001,218,0 +170737804049,218,0 +170737804098,218,0 +170737804146,217,0 +170737804194,218,0 +170737804242,218,0 +170737804290,218,0 +170737804338,218,0 +170737804386,218,0 +170737804434,220,0 +170737804482,295,1 +170737804563,279,1 +170737804643,218,0 +170737804691,217,0 +170737804739,218,0 +170737804786,218,0 +170737804834,218,0 +170737804884,218,0 +170737804933,217,0 +170737804983,218,0 +170737805032,217,0 +170737805080,217,0 +170737805128,217,0 +170737805176,217,0 +170737805224,217,0 +170737805272,217,0 +170737805322,217,0 +170737805370,217,0 +170737805418,217,0 +170737805466,217,0 +170737805514,217,0 +170737805562,217,0 +170737805611,218,0 +170737805659,220,0 +170737805707,285,1 +170737805795,263,0 +170737805843,222,0 +170737805891,217,0 +170737805939,217,0 +170737805987,217,0 +170737806035,217,0 +170737806083,217,0 +170737806131,217,0 +170737806180,217,0 +170737806228,217,0 +170737806276,217,0 +170737806324,217,0 +170737806373,217,0 +170737806423,217,0 +170737806471,217,0 +170737806519,217,0 +170737806567,217,0 +170737806615,217,0 +170737806663,217,0 +170737806711,217,0 +170737806759,217,0 +170737806807,217,0 +170737806854,217,0 +170737806902,219,0 +170737806950,297,1 +170737807034,251,0 +170737807084,223,0 +170737807132,219,0 +170737807179,219,0 +170737807227,218,0 +170737807275,219,0 +170737807323,219,0 +170737807371,219,0 +170737807419,219,0 +170737807467,218,0 +170737807515,218,0 +170737807563,218,0 +170737807611,218,0 +170737807659,218,0 +170737807708,218,0 +170737807756,218,0 +170737807804,218,0 +170737807854,218,0 +170737807902,218,0 +170737807951,218,0 +170737807999,218,0 +170737808047,219,0 +170737808095,219,0 +170737808143,222,0 +170737808192,300,1 +170737808276,230,0 +170737808324,218,0 +170737808372,217,0 +170737808419,217,0 +170737808467,217,0 +170737808517,217,0 +170737808565,217,0 +170737808613,217,0 +170737808661,217,0 +170737808709,218,0 +170737808757,217,0 +170737808806,217,0 +170737808854,217,0 +170737808902,217,0 +170737808950,218,0 +170737808998,217,0 +170737809046,217,0 +170737809095,217,0 +170737809145,218,0 +170737809193,217,0 +170737809241,217,0 +170737809289,218,0 +170737809337,219,0 +170737809385,262,0 +170737809433,306,1 +170737809515,234,0 +170737809563,218,0 +170737809611,218,0 +170737809659,218,0 +170737809708,218,0 +170737809756,218,0 +170737809804,218,0 +170737809854,218,0 +170737809902,218,0 +170737809950,218,0 +170737809999,218,0 +170737810047,218,0 +170737810095,218,0 +170737810143,218,0 +170737810190,218,0 +170737810238,218,0 +170737810286,218,0 +170737810334,217,0 +170737810382,218,0 +170737810430,218,0 +170737810478,217,0 +170737810527,218,0 +170737810577,219,0 +170737810625,296,1 +170737810707,276,1 +170737810784,218,0 +170737810832,218,0 +170737810881,218,0 +170737810931,217,0 +170737810979,218,0 +170737811027,218,0 +170737811075,218,0 +170737811123,217,0 +170737811171,217,0 +170737811219,217,0 +170737811267,217,0 +170737811316,218,0 +170737811366,217,0 +170737811414,218,0 +170737811462,218,0 +170737811510,217,0 +170737811558,218,0 +170737811606,218,0 +170737811655,218,0 +170737811703,218,0 +170737811751,218,0 +170737811799,218,0 +170737811847,226,0 +170737811895,283,1 +170737811976,230,0 +170737812024,219,0 +170737812072,218,0 +170737812121,217,0 +170737812169,218,0 +170737812217,218,0 +170737812267,218,0 +170737812316,217,0 +170737812364,218,0 +170737812412,217,0 +170737812460,218,0 +170737812509,217,0 +170737812557,218,0 +170737812605,218,0 +170737812653,217,0 +170737812703,217,0 +170737812752,218,0 +170737812800,218,0 +170737812848,217,0 +170737812896,218,0 +170737812946,217,0 +170737812994,218,0 +170737813041,219,0 +170737813089,289,1 +170737813170,290,1 +170737813250,218,0 +170737813299,217,0 +170737813347,218,0 +170737813395,217,0 +170737813443,218,0 +170737813491,217,0 +170737813539,217,0 +170737813587,218,0 +170737813635,218,0 +170737813683,217,0 +170737813731,218,0 +170737813778,217,0 +170737813826,218,0 +170737813876,218,0 +170737813924,218,0 +170737813973,218,0 +170737814021,218,0 +170737814069,218,0 +170737814117,218,0 +170737814165,218,0 +170737814215,218,0 +170737814262,220,0 +170737814310,290,1 +170737814391,304,1 +170737814470,218,0 +170737814519,218,0 +170737814567,217,0 +170737814615,218,0 +170737814663,217,0 +170737814711,217,0 +170737814759,218,0 +170737814807,218,0 +170737814855,217,0 +170737814903,217,0 +170737814953,217,0 +170737815001,218,0 +170737815049,217,0 +170737815096,218,0 +170737815144,218,0 +170737815192,217,0 +170737815242,217,0 +170737815290,217,0 +170737815339,217,0 +170737815389,218,0 +170737815437,218,0 +170737815485,218,0 +170737815534,233,0 +170737815582,294,1 +170737815659,237,0 +170737815708,218,0 +170737815756,218,0 +170737815804,218,0 +170737815854,218,0 +170737815902,218,0 +170737815951,218,0 +170737816001,218,0 +170737816049,217,0 +170737816098,218,0 +170737816146,218,0 +170737816195,217,0 +170737816243,217,0 +170737816291,218,0 +170737816339,217,0 +170737816389,218,0 +170737816437,218,0 +170737816485,218,0 +170737816533,217,0 +170737816581,218,0 +170737816629,218,0 +170737816677,218,0 +170737816726,219,0 +170737816774,277,1 +170737816856,283,1 +170737816935,219,0 +170737816983,218,0 +170737817031,217,0 +170737817081,218,0 +170737817129,218,0 +170737817177,218,0 +170737817226,218,0 +170737817274,217,0 +170737817322,217,0 +170737817372,217,0 +170737817420,218,0 +170737817468,218,0 +170737817516,217,0 +170737817564,217,0 +170737817612,217,0 +170737817661,217,0 +170737817709,217,0 +170737817757,218,0 +170737817806,217,0 +170737817856,217,0 +170737817904,218,0 +170737817952,219,0 +170737818000,288,1 +170737818080,285,1 +170737818161,217,0 +170737818208,217,0 +170737818258,217,0 +170737818306,217,0 +170737818354,217,0 +170737818402,217,0 +170737818451,217,0 +170737818499,217,0 +170737818547,218,0 +170737818595,217,0 +170737818643,217,0 +170737818691,217,0 +170737818739,217,0 +170737818789,217,0 +170737818837,217,0 +170737818885,217,0 +170737818933,217,0 +170737818981,217,0 +170737819029,218,0 +170737819077,217,0 +170737819125,217,0 +170737819173,218,0 +170737819221,230,0 +170737819268,280,1 +170737819348,233,0 +170737819396,218,0 +170737819444,217,0 +170737819491,217,0 +170737819541,217,0 +170737819589,217,0 +170737819637,217,0 +170737819685,217,0 +170737819733,217,0 +170737819782,217,0 +170737819832,217,0 +170737819880,217,0 +170737819928,217,0 +170737819977,218,0 +170737820025,217,0 +170737820073,217,0 +170737820121,217,0 +170737820169,217,0 +170737820218,218,0 +170737820266,218,0 +170737820314,218,0 +170737820362,218,0 +170737820412,218,0 +170737820460,282,1 +170737820541,278,1 +170737820619,221,0 +170737820667,218,0 +170737820715,218,0 +170737820763,218,0 +170737820811,218,0 +170737820859,217,0 +170737820907,218,0 +170737820954,217,0 +170737821002,217,0 +170737821050,218,0 +170737821098,218,0 +170737821146,218,0 +170737821195,217,0 +170737821243,217,0 +170737821293,217,0 +170737821341,217,0 +170737821389,217,0 +170737821437,217,0 +170737821485,218,0 +170737821533,218,0 +170737821581,218,0 +170737821629,218,0 +170737821676,227,0 +170737821726,280,1 +170737821805,234,0 +170737821853,219,0 +170737821903,218,0 +170737821950,218,0 +170737821998,218,0 +170737822046,218,0 +170737822094,218,0 +170737822142,218,0 +170737822191,219,0 +170737822239,218,0 +170737822289,218,0 +170737822337,218,0 +170737822385,218,0 +170737822433,218,0 +170737822482,218,0 +170737822530,218,0 +170737822578,218,0 +170737822628,218,0 +170737822676,218,0 +170737822724,218,0 +170737822772,218,0 +170737822819,219,0 +170737822867,220,0 +170737822915,272,1 +170737823000,275,1 +170737823079,218,0 +170737823128,217,0 +170737823176,218,0 +170737823224,217,0 +170737823272,217,0 +170737823320,217,0 +170737823370,217,0 +170737823418,218,0 +170737823466,218,0 +170737823514,218,0 +170737823562,218,0 +170737823610,218,0 +170737823659,218,0 +170737823709,218,0 +170737823758,218,0 +170737823806,218,0 +170737823854,218,0 +170737823902,218,0 +170737823950,218,0 +170737823998,218,0 +170737824046,217,0 +170737824094,218,0 +170737824143,252,0 +170737824193,283,1 +170737824277,231,0 +170737824327,218,0 +170737824375,218,0 +170737824423,218,0 +170737824471,218,0 +170737824519,217,0 +170737824567,218,0 +170737824615,218,0 +170737824664,217,0 +170737824712,218,0 +170737824760,217,0 +170737824808,217,0 +170737824857,218,0 +170737824905,218,0 +170737824955,217,0 +170737825003,217,0 +170737825051,217,0 +170737825099,217,0 +170737825148,217,0 +170737825196,217,0 +170737825244,217,0 +170737825294,218,0 +170737825342,219,0 +170737825390,282,1 +170737825471,252,0 +170737825521,224,0 +170737825569,218,0 +170737825617,218,0 +170737825665,217,0 +170737825713,217,0 +170737825761,218,0 +170737825810,218,0 +170737825858,218,0 +170737825906,218,0 +170737825954,217,0 +170737826004,218,0 +170737826052,217,0 +170737826101,217,0 +170737826149,218,0 +170737826197,217,0 +170737826245,217,0 +170737826293,217,0 +170737826341,217,0 +170737826389,217,0 +170737826438,217,0 +170737826486,218,0 +170737826534,218,0 +170737826584,239,0 +170737826632,284,1 +170737826710,230,0 +170737826758,219,0 +170737826806,218,0 +170737826855,218,0 +170737826903,218,0 +170737826951,218,0 +170737826999,218,0 +170737827047,218,0 +170737827095,218,0 +170737827143,218,0 +170737827193,218,0 +170737827240,217,0 +170737827288,218,0 +170737827336,218,0 +170737827386,218,0 +170737827435,218,0 +170737827483,218,0 +170737827531,217,0 +170737827579,218,0 +170737827627,218,0 +170737827675,218,0 +170737827723,218,0 +170737827770,218,0 +170737827818,223,0 +170737827866,289,1 +170737827947,233,0 +170737827995,219,0 +170737828043,218,0 +170737828091,218,0 +170737828141,218,0 +170737828188,217,0 +170737828238,217,0 +170737828286,218,0 +170737828334,217,0 +170737828382,217,0 +170737828430,217,0 +170737828478,217,0 +170737828526,217,0 +170737828574,218,0 +170737828621,217,0 +170737828671,217,0 +170737828720,217,0 +170737828768,217,0 +170737828816,218,0 +170737828864,218,0 +170737828912,217,0 +170737828960,218,0 +170737829008,218,0 +170737829055,223,0 +170737829103,277,1 +170737829186,230,0 +170737829234,220,0 +170737829281,218,0 +170737829329,218,0 +170737829377,218,0 +170737829425,218,0 +170737829473,218,0 +170737829521,218,0 +170737829569,218,0 +170737829618,218,0 +170737829666,218,0 +170737829716,218,0 +170737829764,218,0 +170737829812,218,0 +170737829859,218,0 +170737829907,218,0 +170737829955,218,0 +170737830003,218,0 +170737830051,218,0 +170737830099,218,0 +170737830147,218,0 +170737830196,218,0 +170737830244,220,0 +170737830292,274,1 +170737830379,277,1 +170737830463,219,0 +170737830511,218,0 +170737830558,218,0 +170737830606,218,0 +170737830656,218,0 +170737830704,218,0 +170737830751,218,0 +170737830799,218,0 +170737830847,218,0 +170737830895,218,0 +170737830943,218,0 +170737830991,218,0 +170737831040,218,0 +170737831088,218,0 +170737831136,218,0 +170737831186,218,0 +170737831234,218,0 +170737831282,218,0 +170737831330,218,0 +170737831379,218,0 +170737831429,219,0 +170737831477,220,0 +170737831525,278,1 +170737831606,288,1 +170737831683,220,0 +170737831731,218,0 +170737831779,218,0 +170737831829,218,0 +170737831877,218,0 +170737831925,218,0 +170737831973,218,0 +170737832022,218,0 +170737832070,218,0 +170737832118,218,0 +170737832168,218,0 +170737832216,218,0 +170737832264,218,0 +170737832312,218,0 +170737832360,218,0 +170737832408,218,0 +170737832456,218,0 +170737832504,218,0 +170737832553,218,0 +170737832602,218,0 +170737832652,218,0 +170737832700,219,0 +170737832750,268,0 +170737832799,285,1 +170737832878,233,0 +170737832928,218,0 +170737832976,217,0 +170737833024,218,0 +170737833072,218,0 +170737833120,218,0 +170737833168,218,0 +170737833216,217,0 +170737833264,217,0 +170737833313,218,0 +170737833361,218,0 +170737833411,218,0 +170737833460,217,0 +170737833508,217,0 +170737833556,217,0 +170737833606,217,0 +170737833654,217,0 +170737833703,218,0 +170737833751,217,0 +170737833799,218,0 +170737833847,218,0 +170737833897,218,0 +170737833945,219,0 +170737833993,277,1 +170737834073,257,0 +170737834123,222,0 +170737834171,217,0 +170737834219,217,0 +170737834268,217,0 +170737834316,217,0 +170737834366,217,0 +170737834414,217,0 +170737834463,217,0 +170737834511,217,0 +170737834561,217,0 +170737834609,217,0 +170737834657,217,0 +170737834705,217,0 +170737834754,217,0 +170737834802,217,0 +170737834850,217,0 +170737834900,217,0 +170737834948,217,0 +170737834996,217,0 +170737835045,217,0 +170737835093,217,0 +170737835141,217,0 +170737835189,227,0 +170737835237,286,1 +170737835317,230,0 +170737835367,218,0 +170737835416,218,0 +170737835464,218,0 +170737835512,218,0 +170737835560,218,0 +170737835608,218,0 +170737835656,218,0 +170737835704,218,0 +170737835751,218,0 +170737835799,218,0 +170737835849,218,0 +170737835897,218,0 +170737835945,218,0 +170737835993,218,0 +170737836041,218,0 +170737836089,217,0 +170737836138,218,0 +170737836186,218,0 +170737836236,218,0 +170737836285,218,0 +170737836333,218,0 +170737836381,219,0 +170737836429,239,0 +170737836477,279,1 +170737836557,230,0 +170737836606,218,0 +170737836654,217,0 +170737836702,217,0 +170737836750,217,0 +170737836798,217,0 +170737836847,217,0 +170737836895,217,0 +170737836943,217,0 +170737836993,217,0 +170737837041,217,0 +170737837089,217,0 +170737837137,217,0 +170737837185,217,0 +170737837234,217,0 +170737837282,217,0 +170737837332,217,0 +170737837380,217,0 +170737837427,217,0 +170737837477,217,0 +170737837526,217,0 +170737837574,217,0 +170737837624,218,0 +170737837672,263,0 +170737837720,263,0 +170737837768,270,1 +170737837849,219,0 +170737837898,218,0 +170737837947,218,0 +170737837997,218,0 +170737838045,218,0 +170737838093,218,0 +170737838141,218,0 +170737838189,218,0 +170737838237,217,0 +170737838285,218,0 +170737838333,218,0 +170737838381,217,0 +170737838430,218,0 +170737838478,217,0 +170737838526,217,0 +170737838576,217,0 +170737838623,217,0 +170737838671,218,0 +170737838719,218,0 +170737838767,218,0 +170737838817,218,0 +170737838865,220,0 +170737838913,262,0 +170737838962,287,1 +170737839045,225,0 +170737839093,217,0 +170737839143,217,0 +170737839191,217,0 +170737839240,217,0 +170737839288,217,0 +170737839336,217,0 +170737839384,217,0 +170737839432,217,0 +170737839480,218,0 +170737839528,217,0 +170737839576,218,0 +170737839624,218,0 +170737839672,217,0 +170737839720,218,0 +170737839769,217,0 +170737839817,217,0 +170737839865,217,0 +170737839913,217,0 +170737839961,218,0 +170737840009,217,0 +170737840059,218,0 +170737840107,225,0 +170737840155,276,1 +170737840234,228,0 +170737840282,220,0 +170737840332,218,0 +170737840380,218,0 +170737840428,218,0 +170737840476,218,0 +170737840523,218,0 +170737840571,218,0 +170737840621,218,0 +170737840670,218,0 +170737840718,218,0 +170737840766,218,0 +170737840814,218,0 +170737840862,218,0 +170737840912,218,0 +170737840960,218,0 +170737841009,218,0 +170737841057,218,0 +170737841105,218,0 +170737841153,218,0 +170737841203,218,0 +170737841252,218,0 +170737841300,218,0 +170737841350,223,0 +170737841398,275,1 +170737841479,233,0 +170737841528,219,0 +170737841576,218,0 +170737841624,218,0 +170737841672,218,0 +170737841721,218,0 +170737841769,218,0 +170737841817,218,0 +170737841865,217,0 +170737841913,218,0 +170737841961,218,0 +170737842009,217,0 +170737842057,217,0 +170737842105,217,0 +170737842153,218,0 +170737842201,218,0 +170737842249,218,0 +170737842297,217,0 +170737842346,218,0 +170737842396,218,0 +170737842444,217,0 +170737842493,218,0 +170737842541,218,0 +170737842589,272,1 +170737842670,282,1 +170737842747,220,0 +170737842795,218,0 +170737842843,218,0 +170737842891,218,0 +170737842939,218,0 +170737842987,218,0 +170737843035,218,0 +170737843083,218,0 +170737843131,218,0 +170737843178,217,0 +170737843226,218,0 +170737843274,217,0 +170737843324,218,0 +170737843373,218,0 +170737843421,218,0 +170737843469,218,0 +170737843517,218,0 +170737843565,218,0 +170737843612,218,0 +170737843660,218,0 +170737843708,218,0 +170737843756,219,0 +170737843806,253,0 +170737843853,283,1 +170737843937,232,0 +170737843986,219,0 +170737844034,219,0 +170737844082,218,0 +170737844131,218,0 +170737844179,218,0 +170737844227,218,0 +170737844277,218,0 +170737844325,218,0 +170737844373,218,0 +170737844421,218,0 +170737844470,219,0 +170737844518,218,0 +170737844566,219,0 +170737844614,219,0 +170737844664,219,0 +170737844712,219,0 +170737844760,219,0 +170737844807,218,0 +170737844855,219,0 +170737844903,218,0 +170737844951,218,0 +170737845001,219,0 +170737845050,288,1 +170737845133,272,1 +170737845214,219,0 +170737845263,219,0 +170737845311,219,0 +170737845359,218,0 +170737845407,219,0 +170737845455,218,0 +170737845503,218,0 +170737845551,219,0 +170737845599,219,0 +170737845648,218,0 +170737845698,218,0 +170737845747,218,0 +170737845795,218,0 +170737845844,219,0 +170737845892,218,0 +170737845940,219,0 +170737845988,218,0 +170737846036,219,0 +170737846084,219,0 +170737846132,218,0 +170737846180,219,0 +170737846228,219,0 +170737846275,224,0 +170737846325,268,0 +170737846373,276,1 +170737846453,220,0 +170737846501,219,0 +170737846549,218,0 +170737846597,218,0 +170737846647,218,0 +170737846695,218,0 +170737846744,218,0 +170737846792,218,0 +170737846842,218,0 +170737846890,218,0 +170737846938,218,0 +170737846985,218,0 +170737847033,218,0 +170737847081,218,0 +170737847129,218,0 +170737847177,218,0 +170737847225,218,0 +170737847273,218,0 +170737847321,218,0 +170737847369,218,0 +170737847418,219,0 +170737847468,220,0 +170737847516,258,0 +170737847563,267,0 +170737847611,238,0 +170737847659,223,0 +170737847707,218,0 +170737847755,218,0 +170737847805,218,0 +170737847852,218,0 +170737847900,218,0 +170737847950,218,0 +170737847999,218,0 +170737848047,218,0 +170737848095,218,0 +170737848143,218,0 +170737848191,218,0 +170737848241,218,0 +170737848289,218,0 +170737848338,218,0 +170737848386,218,0 +170737848434,218,0 +170737848482,218,0 +170737848530,218,0 +170737848578,218,0 +170737848626,218,0 +170737848674,219,0 +170737848722,226,0 +170737848769,279,1 +170737848851,233,0 +170737848899,218,0 +170737848947,218,0 +170737848995,218,0 +170737849042,218,0 +170737849090,218,0 +170737849138,217,0 +170737849186,218,0 +170737849234,217,0 +170737849282,217,0 +170737849331,217,0 +170737849379,217,0 +170737849429,218,0 +170737849477,217,0 +170737849525,218,0 +170737849574,217,0 +170737849622,217,0 +170737849670,218,0 +170737849718,217,0 +170737849766,217,0 +170737849814,217,0 +170737849862,217,0 +170737849912,218,0 +170737849959,232,0 +170737850007,279,1 +170737850090,233,0 +170737850139,219,0 +170737850187,218,0 +170737850235,218,0 +170737850283,218,0 +170737850333,218,0 +170737850381,218,0 +170737850429,218,0 +170737850477,218,0 +170737850525,218,0 +170737850573,218,0 +170737850621,218,0 +170737850669,218,0 +170737850718,218,0 +170737850766,218,0 +170737850814,218,0 +170737850862,218,0 +170737850912,218,0 +170737850960,218,0 +170737851009,218,0 +170737851057,219,0 +170737851107,218,0 +170737851156,219,0 +170737851206,284,1 +170737851285,274,1 +170737851363,218,0 +170737851411,218,0 +170737851459,218,0 +170737851507,218,0 +170737851554,218,0 +170737851604,218,0 +170737851652,218,0 +170737851700,218,0 +170737851748,218,0 +170737851795,218,0 +170737851843,218,0 +170737851891,218,0 +170737851939,218,0 +170737851987,218,0 +170737852035,218,0 +170737852083,218,0 +170737852131,218,0 +170737852179,218,0 +170737852228,218,0 +170737852276,218,0 +170737852324,218,0 +170737852372,219,0 +170737852420,273,1 +170737852501,267,0 +170737852549,228,0 +170737852597,219,0 +170737852644,217,0 +170737852692,218,0 +170737852740,218,0 +170737852788,218,0 +170737852836,218,0 +170737852884,218,0 +170737852932,218,0 +170737852981,218,0 +170737853031,218,0 +170737853079,218,0 +170737853128,218,0 +170737853178,218,0 +170737853225,218,0 +170737853273,218,0 +170737853321,218,0 +170737853371,217,0 +170737853419,218,0 +170737853468,218,0 +170737853518,218,0 +170737853567,218,0 +170737853615,220,0 +170737853663,298,1 +170737853742,268,0 +170737853789,227,0 +170737853837,218,0 +170737853887,218,0 +170737853936,218,0 +170737853984,217,0 +170737854034,217,0 +170737854083,217,0 +170737854133,218,0 +170737854182,218,0 +170737854230,217,0 +170737854278,217,0 +170737854326,218,0 +170737854374,218,0 +170737854422,217,0 +170737854470,218,0 +170737854520,218,0 +170737854568,217,0 +170737854616,218,0 +170737854665,218,0 +170737854713,218,0 +170737854761,217,0 +170737854809,218,0 +170737854857,220,0 +170737854905,300,1 +170737854988,243,0 +170737855036,224,0 +170737855084,218,0 +170737855132,218,0 +170737855180,218,0 +170737855230,218,0 +170737855278,218,0 +170737855326,218,0 +170737855373,218,0 +170737855423,218,0 +170737855471,218,0 +170737855519,218,0 +170737855567,218,0 +170737855615,218,0 +170737855663,218,0 +170737855711,218,0 +170737855759,218,0 +170737855807,218,0 +170737855855,218,0 +170737855904,218,0 +170737855952,218,0 +170737856000,218,0 +170737856048,218,0 +170737856097,226,0 +170737856145,291,1 +170737856229,233,0 +170737856279,219,0 +170737856327,218,0 +170737856375,218,0 +170737856423,218,0 +170737856471,218,0 +170737856519,218,0 +170737856567,218,0 +170737856615,218,0 +170737856663,218,0 +170737856711,218,0 +170737856760,218,0 +170737856808,218,0 +170737856856,218,0 +170737856904,218,0 +170737856954,218,0 +170737857002,218,0 +170737857050,218,0 +170737857098,218,0 +170737857147,218,0 +170737857195,218,0 +170737857243,218,0 +170737857291,219,0 +170737857339,279,1 +170737857417,279,1 +170737857499,219,0 +170737857549,218,0 +170737857598,218,0 +170737857646,218,0 +170737857694,218,0 +170737857742,218,0 +170737857792,218,0 +170737857840,218,0 +170737857888,218,0 +170737857937,218,0 +170737857985,218,0 +170737858035,218,0 +170737858083,218,0 +170737858131,218,0 +170737858179,218,0 +170737858228,218,0 +170737858276,218,0 +170737858326,218,0 +170737858374,217,0 +170737858422,218,0 +170737858470,218,0 +170737858518,220,0 +170737858566,249,0 +170737858616,267,0 +170737858665,258,0 +170737858715,225,0 +170737858763,218,0 +170737858811,218,0 +170737858859,218,0 +170737858907,218,0 +170737858956,218,0 +170737859004,218,0 +170737859052,218,0 +170737859100,218,0 +170737859148,218,0 +170737859196,218,0 +170737859244,218,0 +170737859292,218,0 +170737859341,218,0 +170737859389,218,0 +170737859437,218,0 +170737859485,218,0 +170737859533,217,0 +170737859581,218,0 +170737859631,218,0 +170737859679,218,0 +170737859728,218,0 +170737859776,221,0 +170737859824,263,0 +170737859872,276,1 +170737859969,218,0 +170737860017,218,0 +170737860065,218,0 +170737860114,218,0 +170737860164,218,0 +170737860213,217,0 +170737860263,218,0 +170737860311,217,0 +170737860359,217,0 +170737860407,217,0 +170737860455,218,0 +170737860502,218,0 +170737860550,218,0 +170737860598,218,0 +170737860648,218,0 +170737860697,218,0 +170737860745,218,0 +170737860793,218,0 +170737860843,218,0 +170737860893,218,0 +170737860942,218,0 +170737860990,220,0 +170737861038,269,0 +170737861085,261,0 +170737861133,225,0 +170737861183,219,0 +170737861231,218,0 +170737861280,218,0 +170737861330,218,0 +170737861377,218,0 +170737861427,218,0 +170737861475,218,0 +170737861525,218,0 +170737861572,218,0 +170737861622,218,0 +170737861670,218,0 +170737861718,218,0 +170737861766,218,0 +170737861815,218,0 +170737861863,218,0 +170737861911,218,0 +170737861959,218,0 +170737862007,218,0 +170737862057,218,0 +170737862105,219,0 +170737862153,219,0 +170737862202,220,0 +170737862250,255,0 +170737862300,269,0 +170737862348,244,0 +170737862396,223,0 +170737862445,218,0 +170737862493,217,0 +170737862541,218,0 +170737862591,218,0 +170737862639,217,0 +170737862688,218,0 +170737862736,218,0 +170737862784,217,0 +170737862834,218,0 +170737862883,218,0 +170737862933,218,0 +170737862981,218,0 +170737863030,218,0 +170737863079,218,0 +170737863127,218,0 +170737863175,218,0 +170737863223,218,0 +170737863271,217,0 +170737863319,217,0 +170737863367,218,0 +170737863415,218,0 +170737863463,220,0 +170737863511,265,0 +170737863559,267,0 +170737863608,233,0 +170737863656,219,0 +170737863706,218,0 +170737863754,218,0 +170737863803,218,0 +170737863853,218,0 +170737863900,218,0 +170737863950,218,0 +170737863998,218,0 +170737864047,218,0 +170737864097,218,0 +170737864145,218,0 +170737864194,218,0 +170737864242,218,0 +170737864290,218,0 +170737864338,218,0 +170737864386,217,0 +170737864434,217,0 +170737864484,219,0 +170737864532,218,0 +170737864581,221,0 +170737864629,224,0 +170737864677,226,0 +170737864725,272,1 +170737864803,247,0 +170737864852,227,0 +170737864901,219,0 +170737864949,219,0 +170737864999,219,0 +170737865047,219,0 +170737865095,219,0 +170737865143,219,0 +170737865191,219,0 +170737865239,219,0 +170737865287,219,0 +170737865336,219,0 +170737865386,219,0 +170737865435,219,0 +170737865485,219,0 +170737865534,219,0 +170737865582,219,0 +170737865630,219,0 +170737865678,219,0 +170737865726,219,0 +170737865775,219,0 +170737865823,219,0 +170737865871,219,0 +170737865919,224,0 +170737865969,263,0 +170737866017,276,1 +170737866098,220,0 +170737866146,218,0 +170737866194,218,0 +170737866242,217,0 +170737866290,218,0 +170737866338,217,0 +170737866386,218,0 +170737866434,217,0 +170737866482,218,0 +170737866529,218,0 +170737866579,217,0 +170737866627,218,0 +170737866675,218,0 +170737866723,218,0 +170737866771,218,0 +170737866819,218,0 +170737866867,219,0 +170737866915,220,0 +170737866964,220,0 +170737867012,222,0 +170737867062,224,0 +170737867111,228,0 +170737867159,230,0 +170737867209,242,0 +170737867258,239,0 +170737867306,222,0 +170737867354,217,0 +170737867402,217,0 +170737867451,216,0 +170737867499,217,0 +170737867547,217,0 +170737867597,217,0 +170737867645,216,0 +170737867693,217,0 +170737867742,217,0 +170737867790,216,0 +170737867838,217,0 +170737867886,216,0 +170737867934,217,0 +170737867982,217,0 +170737868030,216,0 +170737868078,216,0 +170737868128,217,0 +170737868176,216,0 +170737868225,216,0 +170737868273,217,0 +170737868321,217,0 +170737868370,219,0 +170737868420,282,1 +170737868504,228,0 +170737868552,219,0 +170737868600,217,0 +170737868648,217,0 +170737868697,217,0 +170737868745,217,0 +170737868795,216,0 +170737868843,217,0 +170737868891,217,0 +170737868939,216,0 +170737868986,216,0 +170737869036,217,0 +170737869085,216,0 +170737869135,216,0 +170737869185,217,0 +170737869233,217,0 +170737869282,217,0 +170737869330,217,0 +170737869380,217,0 +170737869429,217,0 +170737869477,217,0 +170737869525,217,0 +170737869573,218,0 +170737869621,260,0 +170737869669,275,1 +170737869751,230,0 +170737869801,216,0 +170737869850,217,0 +170737869900,217,0 +170737869948,216,0 +170737869997,217,0 +170737870045,217,0 +170737870093,217,0 +170737870141,217,0 +170737870190,217,0 +170737870238,217,0 +170737870286,217,0 +170737870334,217,0 +170737870382,217,0 +170737870430,217,0 +170737870478,216,0 +170737870526,216,0 +170737870574,217,0 +170737870622,216,0 +170737870670,216,0 +170737870718,217,0 +170737870768,217,0 +170737870817,218,0 +170737870865,266,0 +170737870915,268,0 +170737870963,230,0 +170737871012,218,0 +170737871060,217,0 +170737871110,217,0 +170737871158,217,0 +170737871206,217,0 +170737871254,217,0 +170737871303,217,0 +170737871351,217,0 +170737871399,217,0 +170737871447,217,0 +170737871495,217,0 +170737871545,217,0 +170737871594,217,0 +170737871644,217,0 +170737871691,217,0 +170737871739,217,0 +170737871787,217,0 +170737871837,217,0 +170737871885,217,0 +170737871933,217,0 +170737871981,217,0 +170737872029,218,0 +170737872078,247,0 +170737872128,288,1 +170737872209,232,0 +170737872259,218,0 +170737872306,217,0 +170737872354,217,0 +170737872402,217,0 +170737872450,217,0 +170737872498,217,0 +170737872546,217,0 +170737872594,217,0 +170737872642,217,0 +170737872692,217,0 +170737872740,217,0 +170737872789,216,0 +170737872837,217,0 +170737872887,217,0 +170737872935,216,0 +170737872983,216,0 +170737873031,217,0 +170737873079,217,0 +170737873127,216,0 +170737873175,217,0 +170737873223,217,0 +170737873271,218,0 +170737873318,258,0 +170737873368,295,1 +170737873446,229,0 +170737873494,218,0 +170737873542,218,0 +170737873590,218,0 +170737873638,218,0 +170737873686,218,0 +170737873735,218,0 +170737873783,218,0 +170737873833,218,0 +170737873881,217,0 +170737873930,218,0 +170737873978,217,0 +170737874026,218,0 +170737874074,217,0 +170737874122,217,0 +170737874170,218,0 +170737874218,217,0 +170737874266,218,0 +170737874314,217,0 +170737874363,217,0 +170737874412,218,0 +170737874459,218,0 +170737874507,220,0 +170737874555,262,0 +170737874603,280,1 +170737874686,220,0 +170737874735,218,0 +170737874783,218,0 +170737874831,217,0 +170737874881,217,0 +170737874930,218,0 +170737874978,218,0 +170737875028,218,0 +170737875076,217,0 +170737875124,217,0 +170737875172,218,0 +170737875220,217,0 +170737875268,217,0 +170737875315,217,0 +170737875363,217,0 +170737875413,217,0 +170737875461,218,0 +170737875509,218,0 +170737875557,217,0 +170737875605,217,0 +170737875653,218,0 +170737875701,218,0 +170737875750,220,0 +170737875798,256,0 +170737875848,276,1 +170737875924,221,0 +170737875974,217,0 +170737876022,217,0 +170737876070,217,0 +170737876118,217,0 +170737876167,217,0 +170737876215,217,0 +170737876263,217,0 +170737876313,217,0 +170737876361,217,0 +170737876408,217,0 +170737876456,217,0 +170737876506,217,0 +170737876554,217,0 +170737876602,217,0 +170737876650,217,0 +170737876698,217,0 +170737876746,217,0 +170737876794,217,0 +170737876842,217,0 +170737876890,217,0 +170737876938,218,0 +170737876986,239,0 +170737877035,276,1 +170737877113,231,0 +170737877161,218,0 +170737877210,217,0 +170737877258,217,0 +170737877306,216,0 +170737877354,217,0 +170737877402,217,0 +170737877450,216,0 +170737877498,217,0 +170737877546,217,0 +170737877594,216,0 +170737877643,217,0 +170737877691,216,0 +170737877739,217,0 +170737877789,217,0 +170737877837,217,0 +170737877885,217,0 +170737877932,217,0 +170737877980,216,0 +170737878028,217,0 +170737878076,217,0 +170737878124,217,0 +170737878172,218,0 +170737878220,266,0 +170737878268,269,0 +170737878317,256,0 +170737878365,222,0 +170737878413,217,0 +170737878461,217,0 +170737878511,217,0 +170737878560,217,0 +170737878608,217,0 +170737878656,217,0 +170737878706,217,0 +170737878755,217,0 +170737878805,217,0 +170737878853,217,0 +170737878901,217,0 +170737878949,217,0 +170737878998,217,0 +170737879046,217,0 +170737879096,217,0 +170737879144,217,0 +170737879192,217,0 +170737879240,217,0 +170737879288,217,0 +170737879336,217,0 +170737879385,218,0 +170737879435,222,0 +170737879483,276,1 +170737879563,231,0 +170737879611,219,0 +170737879659,217,0 +170737879709,217,0 +170737879757,217,0 +170737879804,217,0 +170737879854,217,0 +170737879902,217,0 +170737879950,217,0 +170737880000,217,0 +170737880049,217,0 +170737880097,217,0 +170737880145,217,0 +170737880193,217,0 +170737880241,217,0 +170737880289,217,0 +170737880337,218,0 +170737880386,217,0 +170737880434,217,0 +170737880484,217,0 +170737880532,217,0 +170737880581,217,0 +170737880629,218,0 +170737880679,232,0 +170737880728,264,0 +170737880778,273,1 +170737880858,218,0 +170737880906,217,0 +170737880954,217,0 +170737881002,217,0 +170737881052,217,0 +170737881100,217,0 +170737881149,217,0 +170737881197,217,0 +170737881247,217,0 +170737881295,217,0 +170737881343,217,0 +170737881392,217,0 +170737881440,217,0 +170737881488,217,0 +170737881538,218,0 +170737881586,218,0 +170737881634,218,0 +170737881683,217,0 +170737881731,217,0 +170737881779,218,0 +170737881827,217,0 +170737881875,219,0 +170737881923,285,1 +170737882005,261,0 +170737882053,225,0 +170737882101,218,0 +170737882150,219,0 +170737882198,218,0 +170737882246,218,0 +170737882295,218,0 +170737882344,218,0 +170737882392,219,0 +170737882440,218,0 +170737882487,218,0 +170737882537,218,0 +170737882585,218,0 +170737882633,218,0 +170737882681,218,0 +170737882729,218,0 +170737882778,218,0 +170737882826,218,0 +170737882876,218,0 +170737882925,218,0 +170737882975,219,0 +170737883024,219,0 +170737883072,219,0 +170737883120,228,0 +170737883170,271,1 +170737883250,232,0 +170737883299,218,0 +170737883347,217,0 +170737883395,217,0 +170737883445,217,0 +170737883494,217,0 +170737883542,217,0 +170737883590,217,0 +170737883640,217,0 +170737883688,217,0 +170737883736,217,0 +170737883785,217,0 +170737883833,217,0 +170737883881,217,0 +170737883929,217,0 +170737883977,217,0 +170737884025,217,0 +170737884075,217,0 +170737884123,217,0 +170737884171,217,0 +170737884220,217,0 +170737884268,217,0 +170737884316,218,0 +170737884366,264,0 +170737884415,287,1 +170737884495,234,0 +170737884543,218,0 +170737884591,217,0 +170737884639,217,0 +170737884687,217,0 +170737884735,217,0 +170737884783,217,0 +170737884831,217,0 +170737884879,217,0 +170737884927,217,0 +170737884975,217,0 +170737885023,217,0 +170737885072,217,0 +170737885122,217,0 +170737885170,217,0 +170737885217,217,0 +170737885267,217,0 +170737885315,217,0 +170737885363,217,0 +170737885412,217,0 +170737885462,217,0 +170737885510,217,0 +170737885558,218,0 +170737885607,297,1 +170737885686,272,1 +170737885762,218,0 +170737885811,217,0 +170737885859,218,0 +170737885907,218,0 +170737885955,217,0 +170737886003,217,0 +170737886053,217,0 +170737886101,217,0 +170737886149,217,0 +170737886197,217,0 +170737886245,217,0 +170737886293,217,0 +170737886341,217,0 +170737886388,217,0 +170737886438,217,0 +170737886486,217,0 +170737886534,217,0 +170737886583,217,0 +170737886631,217,0 +170737886679,217,0 +170737886727,217,0 +170737886776,218,0 +170737886824,260,0 +170737886872,274,1 +170737886950,227,0 +170737886998,218,0 +170737887046,217,0 +170737887094,217,0 +170737887141,217,0 +170737887189,218,0 +170737887237,217,0 +170737887285,217,0 +170737887335,217,0 +170737887383,217,0 +170737887430,217,0 +170737887480,217,0 +170737887528,217,0 +170737887576,217,0 +170737887625,217,0 +170737887675,217,0 +170737887723,217,0 +170737887771,217,0 +170737887819,217,0 +170737887867,217,0 +170737887915,217,0 +170737887963,217,0 +170737888011,218,0 +170737888059,270,1 +170737888136,277,1 +170737888214,218,0 +170737888262,217,0 +170737888312,217,0 +170737888360,217,0 +170737888408,217,0 +170737888456,217,0 +170737888504,217,0 +170737888552,217,0 +170737888600,217,0 +170737888649,217,0 +170737888697,217,0 +170737888745,217,0 +170737888795,217,0 +170737888843,217,0 +170737888890,217,0 +170737888940,217,0 +170737888988,217,0 +170737889036,217,0 +170737889085,217,0 +170737889133,217,0 +170737889181,217,0 +170737889229,218,0 +170737889277,248,0 +170737889327,276,1 +170737889411,232,0 +170737889460,219,0 +170737889508,218,0 +170737889558,217,0 +170737889606,217,0 +170737889655,217,0 +170737889705,217,0 +170737889754,217,0 +170737889802,217,0 +170737889850,217,0 +170737889900,217,0 +170737889949,217,0 +170737889997,217,0 +170737890047,217,0 +170737890095,217,0 +170737890144,217,0 +170737890192,217,0 +170737890242,217,0 +170737890290,218,0 +170737890338,217,0 +170737890386,217,0 +170737890435,218,0 +170737890483,220,0 +170737890532,275,1 +170737890614,233,0 +170737890661,222,0 +170737890709,218,0 +170737890757,217,0 +170737890807,217,0 +170737890855,217,0 +170737890903,217,0 +170737890951,217,0 +170737891000,217,0 +170737891048,217,0 +170737891096,217,0 +170737891144,217,0 +170737891192,217,0 +170737891241,217,0 +170737891289,217,0 +170737891339,217,0 +170737891387,217,0 +170737891436,217,0 +170737891486,217,0 +170737891534,217,0 +170737891582,217,0 +170737891631,217,0 +170737891679,218,0 +170737891727,277,1 +170737891808,286,1 +170737891887,221,0 +170737891936,218,0 +170737891984,217,0 +170737892034,217,0 +170737892082,217,0 +170737892130,217,0 +170737892178,217,0 +170737892226,217,0 +170737892274,217,0 +170737892323,217,0 +170737892371,217,0 +170737892419,217,0 +170737892467,217,0 +170737892516,217,0 +170737892564,217,0 +170737892612,217,0 +170737892662,218,0 +170737892710,217,0 +170737892758,217,0 +170737892806,217,0 +170737892854,217,0 +170737892902,218,0 +170737892950,221,0 +170737892998,286,1 +170737893082,231,0 +170737893130,218,0 +170737893178,217,0 +170737893226,217,0 +170737893274,217,0 +170737893324,217,0 +170737893372,217,0 +170737893421,217,0 +170737893470,217,0 +170737893520,217,0 +170737893568,217,0 +170737893616,217,0 +170737893664,217,0 +170737893714,217,0 +170737893761,217,0 +170737893809,217,0 +170737893859,217,0 +170737893907,217,0 +170737893955,217,0 +170737894004,217,0 +170737894052,217,0 +170737894100,217,0 +170737894148,218,0 +170737894196,280,1 +170737894275,281,1 +170737894354,218,0 +170737894403,217,0 +170737894451,217,0 +170737894499,217,0 +170737894547,217,0 +170737894595,217,0 +170737894643,217,0 +170737894691,217,0 +170737894739,217,0 +170737894789,216,0 +170737894837,217,0 +170737894884,217,0 +170737894934,217,0 +170737894983,217,0 +170737895031,217,0 +170737895079,217,0 +170737895127,217,0 +170737895175,217,0 +170737895225,217,0 +170737895273,217,0 +170737895321,217,0 +170737895369,217,0 +170737895417,268,0 +170737895467,268,0 +170737895516,243,0 +170737895564,220,0 +170737895612,217,0 +170737895662,217,0 +170737895710,217,0 +170737895759,217,0 +170737895809,217,0 +170737895857,217,0 +170737895905,217,0 +170737895952,217,0 +170737896001,217,0 +170737896049,217,0 +170737896098,217,0 +170737896146,217,0 +170737896194,217,0 +170737896243,217,0 +170737896293,217,0 +170737896341,217,0 +170737896389,217,0 +170737896438,217,0 +170737896486,217,0 +170737896536,217,0 +170737896584,218,0 +170737896632,224,0 +170737896680,267,0 +170737896729,275,1 +170737896808,218,0 +170737896857,217,0 +170737896907,217,0 +170737896954,217,0 +170737897004,217,0 +170737897052,217,0 +170737897101,217,0 +170737897149,217,0 +170737897197,217,0 +170737897245,217,0 +170737897293,217,0 +170737897341,217,0 +170737897389,217,0 +170737897437,217,0 +170737897487,217,0 +170737897536,217,0 +170737897586,217,0 +170737897635,217,0 +170737897683,217,0 +170737897731,217,0 +170737897781,217,0 +170737897829,218,0 +170737897877,254,0 +170737897925,252,0 +170737897974,264,0 +170737898022,229,0 +170737898070,218,0 +170737898119,217,0 +170737898169,217,0 +170737898217,218,0 +170737898265,217,0 +170737898314,217,0 +170737898362,217,0 +170737898410,218,0 +170737898458,217,0 +170737898508,217,0 +170737898555,217,0 +170737898603,217,0 +170737898651,217,0 +170737898699,217,0 +170737898748,217,0 +170737898796,217,0 +170737898844,217,0 +170737898892,217,0 +170737898940,217,0 +170737898989,217,0 +170737899037,218,0 +170737899085,221,0 +170737899133,270,1 +170737899214,228,0 +170737899262,221,0 +170737899310,217,0 +170737899358,217,0 +170737899408,216,0 +170737899456,217,0 +170737899504,217,0 +170737899552,217,0 +170737899599,217,0 +170737899649,217,0 +170737899698,217,0 +170737899746,217,0 +170737899794,217,0 +170737899842,217,0 +170737899890,217,0 +170737899938,217,0 +170737899987,217,0 +170737900037,217,0 +170737900085,217,0 +170737900134,217,0 +170737900182,217,0 +170737900230,217,0 +170737900279,217,0 +170737900327,216,0 +170737900375,217,0 +170737900423,217,0 +170737900471,217,0 +170737900519,217,0 +170737900567,217,0 +170737900615,217,0 +170737900664,217,0 +170737900712,217,0 +170737900760,217,0 +170737900808,217,0 +170737900858,217,0 +170737900906,219,0 +170737900954,274,1 +170737901031,266,0 +170737901081,226,0 +170737901129,217,0 +170737901177,217,0 +170737901225,217,0 +170737901274,217,0 +170737901322,217,0 +170737901370,217,0 +170737901418,217,0 +170737901466,217,0 +170737901514,217,0 +170737901562,217,0 +170737901609,217,0 +170737901659,217,0 +170737901707,217,0 +170737901755,217,0 +170737901803,217,0 +170737901850,217,0 +170737901898,217,0 +170737901946,217,0 +170737901994,217,0 +170737902042,217,0 +170737902092,217,0 +170737902140,218,0 +170737902188,273,1 +170737902272,277,1 +170737902349,218,0 +170737902399,217,0 +170737902448,217,0 +170737902496,217,0 +170737902544,217,0 +170737902592,217,0 +170737902641,217,0 +170737902691,217,0 +170737902739,217,0 +170737902788,217,0 +170737902836,217,0 +170737902885,217,0 +170737902933,217,0 +170737902981,217,0 +170737903029,217,0 +170737903077,217,0 +170737903127,217,0 +170737903175,217,0 +170737903223,217,0 +170737903272,217,0 +170737903322,217,0 +170737903370,219,0 +170737903419,261,0 +170737903467,271,1 +170737903551,223,0 +170737903599,217,0 +170737903647,217,0 +170737903694,217,0 +170737903742,217,0 +170737903790,217,0 +170737903838,217,0 +170737903886,217,0 +170737903936,217,0 +170737903984,217,0 +170737904032,217,0 +170737904080,217,0 +170737904128,217,0 +170737904177,217,0 +170737904225,217,0 +170737904275,217,0 +170737904323,217,0 +170737904371,217,0 +170737904419,217,0 +170737904467,217,0 +170737904516,217,0 +170737904566,217,0 +170737904613,221,0 +170737904661,276,1 +170737904740,272,1 +170737904818,274,1 +170737904897,274,1 +170737904976,274,1 +170737905056,274,1 +170737905131,275,1 +170737905210,275,1 +170737905290,275,1 +170737905365,274,1 +170737905443,274,1 +170737905522,274,1 +170737905598,274,1 +170737905679,273,1 +170737905756,273,1 +170737905835,273,1 +170737905907,273,1 +170737905980,273,1 +170737906060,273,1 +170737906136,273,1 +170737906217,273,1 +170737906303,273,1 +170737906379,272,1 +170737906455,272,1 +170737906530,272,1 +170737906610,272,1 +170737906691,272,1 +170737906770,272,1 +170737906849,272,1 +170737906928,272,1 +170737907004,272,1 +170737907084,271,1 +170737907160,272,1 +170737907233,271,1 +170737907309,271,1 +170737907386,272,1 +170737907466,271,1 +170737907547,272,1 +170737907628,272,1 +170737907706,271,1 +170737907782,271,1 +170737907855,271,1 +170737907929,271,1 +170737908005,271,1 +170737908085,271,1 +170737908165,271,1 +170737908247,271,1 +170737908326,271,1 +170737908404,271,1 +170737908481,271,1 +170737908563,271,1 +170737908640,271,1 +170737908716,271,1 +170737908796,271,1 +170737908878,271,1 +170737908957,271,1 +170737909036,271,1 +170737909116,271,1 +170737909194,270,1 +170737909272,271,1 +170737909355,270,1 +170737909434,271,1 +170737909512,271,1 +170737909590,271,1 +170737909664,271,1 +170737909742,270,1 +170737909820,270,1 +170737909893,270,1 +170737909992,271,1 +170737910071,271,1 +170737910144,270,1 +170737910223,270,1 +170737910302,271,1 +170737910381,270,1 +170737910461,270,1 +170737910540,271,1 +170737910622,270,1 +170737910699,271,1 +170737910779,270,1 +170737910857,270,1 +170737910938,270,1 +170737911014,270,1 +170737911089,271,1 +170737911169,270,1 +170737911246,270,1 +170737911326,270,1 +170737911400,270,1 +170737911481,270,1 +170737911563,270,1 +170737911637,270,1 +170737911716,270,1 +170737911798,270,1 +170737911876,270,1 +170737911956,270,1 +170737912036,270,1 +170737912112,270,1 +170737912190,270,1 +170737912270,270,1 +170737912349,270,1 +170737912424,270,1 +170737912500,270,1 +170737912577,270,1 +170737912658,270,1 +170737912740,269,0 +170737912788,270,1 +170737912865,270,1 +170737912944,270,1 +170737913022,270,1 +170737913104,270,1 +170737913180,270,1 +170737913256,270,1 +170737913336,270,1 +170737913415,270,1 +170737913495,270,1 +170737913577,270,1 +170737913652,270,1 +170737913733,269,0 +170737913781,270,1 +170737913856,270,1 +170737913934,270,1 +170737914012,270,1 +170737914092,270,1 +170737914174,270,1 +170737914256,270,1 +170737914335,270,1 +170737914414,270,1 +170737914494,270,1 +170737914575,270,1 +170737914654,270,1 +170737914735,270,1 +170737914815,270,1 +170737914887,270,1 +170737914973,270,1 +170737915051,269,0 +170737915099,270,1 +170737915176,270,1 +170737915254,270,1 +170737915334,270,1 +170737915412,270,1 +170737915491,269,0 +170737915541,270,1 +170737915620,270,1 +170737915700,270,1 +170737915785,270,1 +170737915864,270,1 +170737915944,270,1 +170737916024,269,0 +170737916072,269,0 +170737916120,270,1 +170737916197,270,1 +170737916273,269,0 +170737916321,269,0 +170737916369,270,1 +170737916448,270,1 +170737916523,270,1 +170737916597,269,0 +170737916645,270,1 +170737916724,270,1 +170737916801,269,0 +170737916849,269,0 +170737916897,269,0 +170737916945,270,1 +170737917024,270,1 +170737917100,270,1 +170737917180,270,1 +170737917258,269,0 +170737917306,269,0 +170737917356,269,0 +170737917405,270,1 +170737917491,269,0 +170737917539,270,1 +170737917616,269,0 +170737917663,270,1 +170737917742,270,1 +170737917819,269,0 +170737917867,270,1 +170737917946,269,0 +170737917995,269,0 +170737918043,269,0 +170737918091,269,0 +170737918140,270,1 +170737918220,269,0 +170737918268,270,1 +170737918345,270,1 +170737918424,269,0 +170737918472,270,1 +170737918549,269,0 +170737918599,270,1 +170737918679,269,0 +170737918729,270,1 +170737918810,270,1 +170737918893,269,0 +170737918941,269,0 +170737918989,269,0 +170737919037,270,1 +170737919117,270,1 +170737919198,269,0 +170737919246,269,0 +170737919294,269,0 +170737919342,269,0 +170737919390,269,0 +170737919437,270,1 +170737919515,270,1 +170737919593,270,1 +170737919671,269,0 +170737919721,269,0 +170737919769,269,0 +170737919817,269,0 +170737919865,270,1 +170737919950,269,0 +170737919998,270,1 diff --git a/laser_value/0208-18.csv b/laser_value/0208-18.csv new file mode 100644 index 0000000..9f294b6 --- /dev/null +++ b/laser_value/0208-18.csv @@ -0,0 +1,7435 @@ +timestamp,laser_value,event +170737920077,270,1 +170737920154,269,0 +170737920202,269,0 +170737920252,269,0 +170737920300,270,1 +170737920379,270,1 +170737920457,269,0 +170737920507,269,0 +170737920554,269,0 +170737920604,270,1 +170737920686,269,0 +170737920733,269,0 +170737920781,269,0 +170737920831,269,0 +170737920879,270,1 +170737920962,269,0 +170737921010,269,0 +170737921058,270,1 +170737921142,269,0 +170737921190,269,0 +170737921238,270,1 +170737921316,269,0 +170737921364,269,0 +170737921414,269,0 +170737921463,269,0 +170737921511,269,0 +170737921561,269,0 +170737921609,270,1 +170737921691,269,0 +170737921739,269,0 +170737921787,270,1 +170737921866,269,0 +170737921914,270,1 +170737921994,269,0 +170737922042,269,0 +170737922090,269,0 +170737922138,269,0 +170737922186,269,0 +170737922234,269,0 +170737922282,269,0 +170737922332,269,0 +170737922380,269,0 +170737922427,270,1 +170737922506,269,0 +170737922554,269,0 +170737922603,269,0 +170737922651,269,0 +170737922699,270,1 +170737922785,269,0 +170737922833,269,0 +170737922883,269,0 +170737922931,269,0 +170737922979,269,0 +170737923027,269,0 +170737923074,269,0 +170737923122,269,0 +170737923170,269,0 +170737923218,269,0 +170737923266,269,0 +170737923314,269,0 +170737923364,269,0 +170737923412,270,1 +170737923494,269,0 +170737923542,269,0 +170737923590,269,0 +170737923638,269,0 +170737923686,269,0 +170737923734,269,0 +170737923782,269,0 +170737923830,269,0 +170737923878,269,0 +170737923926,269,0 +170737923974,269,0 +170737924023,269,0 +170737924071,269,0 +170737924119,269,0 +170737924167,269,0 +170737924216,269,0 +170737924266,269,0 +170737924314,269,0 +170737924362,269,0 +170737924411,269,0 +170737924459,269,0 +170737924507,269,0 +170737924557,269,0 +170737924605,269,0 +170737924654,270,1 +170737924732,269,0 +170737924782,269,0 +170737924830,269,0 +170737924878,269,0 +170737924926,269,0 +170737924975,270,1 +170737925053,269,0 +170737925101,269,0 +170737925151,269,0 +170737925199,269,0 +170737925246,269,0 +170737925294,269,0 +170737925342,269,0 +170737925390,269,0 +170737925438,269,0 +170737925486,269,0 +170737925534,269,0 +170737925582,269,0 +170737925630,269,0 +170737925678,269,0 +170737925725,269,0 +170737925773,269,0 +170737925821,270,1 +170737925905,269,0 +170737925953,269,0 +170737926001,269,0 +170737926050,269,0 +170737926098,269,0 +170737926148,269,0 +170737926196,269,0 +170737926245,269,0 +170737926293,269,0 +170737926343,269,0 +170737926392,269,0 +170737926440,269,0 +170737926488,269,0 +170737926536,269,0 +170737926584,269,0 +170737926632,269,0 +170737926680,269,0 +170737926730,269,0 +170737926779,269,0 +170737926827,269,0 +170737926875,269,0 +170737926923,269,0 +170737926972,269,0 +170737927020,269,0 +170737927068,269,0 +170737927116,269,0 +170737927164,269,0 +170737927214,269,0 +170737927262,269,0 +170737927311,269,0 +170737927359,269,0 +170737927407,269,0 +170737927457,269,0 +170737927506,269,0 +170737927554,269,0 +170737927602,269,0 +170737927650,269,0 +170737927699,269,0 +170737927747,269,0 +170737927795,269,0 +170737927845,269,0 +170737927893,269,0 +170737927941,269,0 +170737927989,269,0 +170737928038,269,0 +170737928086,269,0 +170737928134,269,0 +170737928184,269,0 +170737928232,269,0 +170737928281,269,0 +170737928329,269,0 +170737928377,269,0 +170737928425,269,0 +170737928473,269,0 +170737928522,269,0 +170737928570,269,0 +170737928618,269,0 +170737928666,269,0 +170737928716,269,0 +170737928764,269,0 +170737928813,269,0 +170737928861,269,0 +170737928911,269,0 +170737928959,269,0 +170737929007,269,0 +170737929056,269,0 +170737929106,269,0 +170737929154,269,0 +170737929202,269,0 +170737929249,269,0 +170737929299,269,0 +170737929347,269,0 +170737929395,269,0 +170737929443,269,0 +170737929491,269,0 +170737929539,269,0 +170737929588,269,0 +170737929636,268,0 +170737929686,269,0 +170737929734,269,0 +170737929781,269,0 +170737929829,269,0 +170737929879,269,0 +170737929927,269,0 +170737929975,269,0 +170737930023,269,0 +170737930072,269,0 +170737930120,269,0 +170737930168,269,0 +170737930216,269,0 +170737930266,269,0 +170737930314,269,0 +170737930362,269,0 +170737930410,269,0 +170737930459,269,0 +170737930507,269,0 +170737930555,269,0 +170737930603,269,0 +170737930652,269,0 +170737930700,269,0 +170737930750,269,0 +170737930798,269,0 +170737930846,269,0 +170737930894,269,0 +170737930942,269,0 +170737930990,269,0 +170737931038,269,0 +170737931086,269,0 +170737931134,269,0 +170737931181,269,0 +170737931229,269,0 +170737931277,269,0 +170737931327,269,0 +170737931375,269,0 +170737931423,269,0 +170737931471,269,0 +170737931519,269,0 +170737931568,269,0 +170737931616,269,0 +170737931664,269,0 +170737931714,269,0 +170737931762,268,0 +170737931811,269,0 +170737931859,269,0 +170737931907,269,0 +170737931955,269,0 +170737932003,269,0 +170737932051,269,0 +170737932100,269,0 +170737932148,269,0 +170737932196,269,0 +170737932244,269,0 +170737932292,269,0 +170737932340,269,0 +170737932388,269,0 +170737932436,269,0 +170737932486,269,0 +170737932534,269,0 +170737932582,269,0 +170737932629,269,0 +170737932677,269,0 +170737932725,269,0 +170737932773,269,0 +170737932823,269,0 +170737932871,269,0 +170737932919,269,0 +170737932967,269,0 +170737933015,269,0 +170737933063,269,0 +170737933112,269,0 +170737933162,269,0 +170737933210,269,0 +170737933259,269,0 +170737933309,269,0 +170737933356,269,0 +170737933404,269,0 +170737933452,269,0 +170737933500,269,0 +170737933550,269,0 +170737933599,269,0 +170737933649,269,0 +170737933697,269,0 +170737933746,269,0 +170737933794,269,0 +170737933844,269,0 +170737933892,269,0 +170737933940,269,0 +170737933989,269,0 +170737934039,269,0 +170737934087,269,0 +170737934135,269,0 +170737934184,269,0 +170737934232,269,0 +170737934281,269,0 +170737934331,269,0 +170737934380,269,0 +170737934428,269,0 +170737934476,269,0 +170737934524,269,0 +170737934574,269,0 +170737934622,269,0 +170737934671,269,0 +170737934719,269,0 +170737934769,269,0 +170737934818,269,0 +170737934866,269,0 +170737934914,269,0 +170737934964,269,0 +170737935012,269,0 +170737935060,269,0 +170737935108,269,0 +170737935156,269,0 +170737935203,269,0 +170737935251,269,0 +170737935299,269,0 +170737935349,269,0 +170737935397,269,0 +170737935444,269,0 +170737935494,269,0 +170737935542,269,0 +170737935590,269,0 +170737935639,269,0 +170737935687,269,0 +170737935735,269,0 +170737935783,269,0 +170737935831,269,0 +170737935879,269,0 +170737935929,269,0 +170737935977,269,0 +170737936026,269,0 +170737936074,269,0 +170737936124,269,0 +170737936173,269,0 +170737936221,269,0 +170737936269,269,0 +170737936319,269,0 +170737936367,269,0 +170737936415,269,0 +170737936463,269,0 +170737936510,269,0 +170737936558,269,0 +170737936606,269,0 +170737936654,269,0 +170737936704,269,0 +170737936753,269,0 +170737936801,269,0 +170737936849,269,0 +170737936897,269,0 +170737936945,269,0 +170737936993,269,0 +170737937041,269,0 +170737937089,269,0 +170737937137,269,0 +170737937187,269,0 +170737937235,269,0 +170737937283,269,0 +170737937331,269,0 +170737937379,269,0 +170737937428,269,0 +170737937476,269,0 +170737937524,269,0 +170737937572,269,0 +170737937620,269,0 +170737937668,269,0 +170737937716,269,0 +170737937764,269,0 +170737937812,269,0 +170737937860,269,0 +170737937909,269,0 +170737937957,269,0 +170737938005,269,0 +170737938053,269,0 +170737938102,269,0 +170737938150,269,0 +170737938198,269,0 +170737938246,269,0 +170737938294,269,0 +170737938342,269,0 +170737938392,269,0 +170737938440,269,0 +170737938488,269,0 +170737938536,269,0 +170737938583,269,0 +170737938631,269,0 +170737938679,269,0 +170737938727,269,0 +170737938777,269,0 +170737938826,269,0 +170737938874,269,0 +170737938922,269,0 +170737938970,269,0 +170737939020,269,0 +170737939068,269,0 +170737939116,269,0 +170737939164,269,0 +170737939212,269,0 +170737939260,269,0 +170737939308,269,0 +170737939356,269,0 +170737939403,269,0 +170737939453,269,0 +170737939501,269,0 +170737939549,269,0 +170737939598,269,0 +170737939648,269,0 +170737939696,269,0 +170737939744,269,0 +170737939792,269,0 +170737939840,269,0 +170737939888,269,0 +170737939936,269,0 +170737939984,269,0 +170737940032,269,0 +170737940079,269,0 +170737940127,269,0 +170737940175,269,0 +170737940223,269,0 +170737940272,269,0 +170737940320,269,0 +170737940368,269,0 +170737940416,269,0 +170737940466,269,0 +170737940513,269,0 +170737940561,269,0 +170737940609,269,0 +170737940657,269,0 +170737940705,269,0 +170737940753,269,0 +170737940801,269,0 +170737940849,269,0 +170737940897,269,0 +170737940945,269,0 +170737940993,269,0 +170737941042,269,0 +170737941090,269,0 +170737941140,269,0 +170737941188,269,0 +170737941237,269,0 +170737941285,269,0 +170737941333,269,0 +170737941381,269,0 +170737941429,269,0 +170737941477,269,0 +170737941527,269,0 +170737941575,269,0 +170737941622,269,0 +170737941670,269,0 +170737941720,269,0 +170737941768,269,0 +170737941816,269,0 +170737941864,269,0 +170737941913,269,0 +170737941963,269,0 +170737942012,269,0 +170737942062,269,0 +170737942110,269,0 +170737942159,269,0 +170737942209,269,0 +170737942257,269,0 +170737942304,269,0 +170737942352,269,0 +170737942400,269,0 +170737942448,270,1 +170737942531,269,0 +170737942579,269,0 +170737942628,269,0 +170737942678,269,0 +170737942726,269,0 +170737942775,269,0 +170737942823,269,0 +170737942871,269,0 +170737942919,269,0 +170737942967,269,0 +170737943015,269,0 +170737943064,269,0 +170737943112,269,0 +170737943162,269,0 +170737943210,269,0 +170737943258,269,0 +170737943306,269,0 +170737943355,269,0 +170737943403,269,0 +170737943451,269,0 +170737943499,269,0 +170737943547,269,0 +170737943595,269,0 +170737943643,269,0 +170737943691,269,0 +170737943740,269,0 +170737943790,269,0 +170737943838,269,0 +170737943886,269,0 +170737943935,269,0 +170737943983,269,0 +170737944033,269,0 +170737944081,269,0 +170737944129,269,0 +170737944177,269,0 +170737944225,269,0 +170737944273,269,0 +170737944321,269,0 +170737944369,269,0 +170737944418,269,0 +170737944466,270,1 +170737944546,269,0 +170737944596,269,0 +170737944644,269,0 +170737944692,269,0 +170737944740,269,0 +170737944788,269,0 +170737944837,269,0 +170737944887,269,0 +170737944935,269,0 +170737944984,269,0 +170737945034,269,0 +170737945082,269,0 +170737945129,269,0 +170737945179,269,0 +170737945227,269,0 +170737945275,269,0 +170737945323,269,0 +170737945371,269,0 +170737945419,269,0 +170737945467,269,0 +170737945516,269,0 +170737945566,269,0 +170737945614,269,0 +170737945662,269,0 +170737945710,269,0 +170737945758,269,0 +170737945807,269,0 +170737945855,269,0 +170737945903,269,0 +170737945951,269,0 +170737945999,269,0 +170737946047,269,0 +170737946095,269,0 +170737946143,269,0 +170737946191,269,0 +170737946239,269,0 +170737946288,269,0 +170737946336,269,0 +170737946384,269,0 +170737946434,269,0 +170737946481,269,0 +170737946529,269,0 +170737946577,269,0 +170737946625,269,0 +170737946673,269,0 +170737946721,269,0 +170737946769,269,0 +170737946817,269,0 +170737946866,269,0 +170737946914,269,0 +170737946962,269,0 +170737947010,269,0 +170737947059,269,0 +170737947107,269,0 +170737947157,269,0 +170737947205,269,0 +170737947253,269,0 +170737947301,269,0 +170737947349,269,0 +170737947398,269,0 +170737947446,269,0 +170737947494,269,0 +170737947542,269,0 +170737947590,269,0 +170737947639,269,0 +170737947687,269,0 +170737947735,269,0 +170737947783,269,0 +170737947831,269,0 +170737947879,269,0 +170737947927,269,0 +170737947974,269,0 +170737948022,269,0 +170737948070,269,0 +170737948118,269,0 +170737948166,269,0 +170737948214,269,0 +170737948262,269,0 +170737948310,269,0 +170737948360,269,0 +170737948407,269,0 +170737948455,269,0 +170737948505,269,0 +170737948553,269,0 +170737948601,269,0 +170737948648,269,0 +170737948698,269,0 +170737948746,269,0 +170737948795,269,0 +170737948843,269,0 +170737948891,269,0 +170737948939,269,0 +170737948987,269,0 +170737949035,269,0 +170737949083,269,0 +170737949131,269,0 +170737949179,269,0 +170737949226,269,0 +170737949274,269,0 +170737949322,269,0 +170737949370,269,0 +170737949420,269,0 +170737949467,269,0 +170737949515,269,0 +170737949563,269,0 +170737949613,269,0 +170737949661,269,0 +170737949709,269,0 +170737949757,269,0 +170737949806,269,0 +170737949854,269,0 +170737949904,269,0 +170737949952,269,0 +170737950000,269,0 +170737950048,269,0 +170737950096,269,0 +170737950144,269,0 +170737950191,269,0 +170737950239,269,0 +170737950287,269,0 +170737950335,269,0 +170737950385,269,0 +170737950433,269,0 +170737950481,269,0 +170737950529,269,0 +170737950577,269,0 +170737950626,269,0 +170737950674,269,0 +170737950722,269,0 +170737950772,269,0 +170737950821,269,0 +170737950871,269,0 +170737950919,269,0 +170737950967,269,0 +170737951014,269,0 +170737951062,269,0 +170737951110,269,0 +170737951158,269,0 +170737951208,269,0 +170737951256,269,0 +170737951304,269,0 +170737951353,269,0 +170737951401,269,0 +170737951449,269,0 +170737951497,269,0 +170737951545,269,0 +170737951595,269,0 +170737951642,269,0 +170737951690,269,0 +170737951738,269,0 +170737951788,269,0 +170737951836,269,0 +170737951884,269,0 +170737951932,269,0 +170737951981,269,0 +170737952029,269,0 +170737952077,269,0 +170737952125,269,0 +170737952173,269,0 +170737952223,269,0 +170737952271,269,0 +170737952319,269,0 +170737952367,269,0 +170737952415,269,0 +170737952464,268,0 +170737952512,269,0 +170737952560,269,0 +170737952610,269,0 +170737952657,269,0 +170737952705,269,0 +170737952753,269,0 +170737952801,269,0 +170737952849,269,0 +170737952899,269,0 +170737952946,269,0 +170737952994,269,0 +170737953042,269,0 +170737953090,269,0 +170737953139,269,0 +170737953187,269,0 +170737953235,269,0 +170737953283,269,0 +170737953331,269,0 +170737953379,269,0 +170737953427,269,0 +170737953477,269,0 +170737953525,269,0 +170737953573,269,0 +170737953621,269,0 +170737953669,269,0 +170737953717,269,0 +170737953765,269,0 +170737953813,269,0 +170737953861,269,0 +170737953908,269,0 +170737953956,269,0 +170737954004,269,0 +170737954053,269,0 +170737954101,269,0 +170737954149,269,0 +170737954199,269,0 +170737954247,269,0 +170737954296,269,0 +170737954344,269,0 +170737954392,269,0 +170737954440,269,0 +170737954488,269,0 +170737954536,269,0 +170737954586,269,0 +170737954634,269,0 +170737954682,269,0 +170737954731,269,0 +170737954779,269,0 +170737954827,269,0 +170737954875,269,0 +170737954924,269,0 +170737954972,269,0 +170737955020,269,0 +170737955068,269,0 +170737955116,269,0 +170737955164,269,0 +170737955212,269,0 +170737955260,269,0 +170737955308,269,0 +170737955357,269,0 +170737955405,269,0 +170737955453,269,0 +170737955501,269,0 +170737955551,269,0 +170737955600,269,0 +170737955648,269,0 +170737955696,269,0 +170737955744,269,0 +170737955792,269,0 +170737955839,269,0 +170737955887,269,0 +170737955935,269,0 +170737955983,269,0 +170737956031,269,0 +170737956079,269,0 +170737956127,269,0 +170737956175,269,0 +170737956222,269,0 +170737956272,269,0 +170737956320,269,0 +170737956369,269,0 +170737956417,269,0 +170737956465,269,0 +170737956513,269,0 +170737956563,269,0 +170737956611,269,0 +170737956660,269,0 +170737956710,269,0 +170737956758,269,0 +170737956805,269,0 +170737956853,269,0 +170737956901,269,0 +170737956949,269,0 +170737956997,269,0 +170737957045,269,0 +170737957093,269,0 +170737957141,269,0 +170737957189,269,0 +170737957237,269,0 +170737957285,269,0 +170737957335,269,0 +170737957383,269,0 +170737957431,269,0 +170737957480,269,0 +170737957530,269,0 +170737957578,269,0 +170737957626,269,0 +170737957673,269,0 +170737957721,269,0 +170737957771,269,0 +170737957819,269,0 +170737957867,269,0 +170737957915,269,0 +170737957963,269,0 +170737958011,269,0 +170737958060,269,0 +170737958108,269,0 +170737958158,269,0 +170737958206,269,0 +170737958254,269,0 +170737958303,269,0 +170737958351,269,0 +170737958399,269,0 +170737958449,269,0 +170737958498,269,0 +170737958548,269,0 +170737958597,269,0 +170737958645,269,0 +170737958695,269,0 +170737958743,269,0 +170737958791,269,0 +170737958839,269,0 +170737958888,269,0 +170737958936,269,0 +170737958986,269,0 +170737959034,269,0 +170737959082,269,0 +170737959129,269,0 +170737959177,269,0 +170737959227,269,0 +170737959275,269,0 +170737959324,269,0 +170737959372,269,0 +170737959422,269,0 +170737959470,269,0 +170737959518,269,0 +170737959567,269,0 +170737959617,269,0 +170737959666,269,0 +170737959714,269,0 +170737959764,269,0 +170737959812,269,0 +170737959861,268,0 +170737959909,269,0 +170737959957,269,0 +170737960005,269,0 +170737960053,269,0 +170737960101,269,0 +170737960151,269,0 +170737960199,269,0 +170737960248,269,0 +170737960296,269,0 +170737960344,269,0 +170737960392,269,0 +170737960440,269,0 +170737960488,269,0 +170737960536,269,0 +170737960585,269,0 +170737960633,269,0 +170737960683,269,0 +170737960732,269,0 +170737960782,269,0 +170737960831,269,0 +170737960879,269,0 +170737960929,269,0 +170737960978,269,0 +170737961026,269,0 +170737961076,269,0 +170737961124,269,0 +170737961172,269,0 +170737961220,269,0 +170737961268,269,0 +170737961316,269,0 +170737961364,269,0 +170737961411,268,0 +170737961459,268,0 +170737961509,269,0 +170737961557,269,0 +170737961605,269,0 +170737961653,269,0 +170737961701,269,0 +170737961749,269,0 +170737961797,269,0 +170737961845,269,0 +170737961893,269,0 +170737961942,269,0 +170737961992,269,0 +170737962040,269,0 +170737962089,269,0 +170737962137,269,0 +170737962186,269,0 +170737962236,269,0 +170737962284,269,0 +170737962333,268,0 +170737962381,269,0 +170737962429,269,0 +170737962477,269,0 +170737962525,269,0 +170737962573,268,0 +170737962622,268,0 +170737962670,269,0 +170737962718,269,0 +170737962766,269,0 +170737962814,268,0 +170737962862,269,0 +170737962911,269,0 +170737962959,269,0 +170737963007,269,0 +170737963055,269,0 +170737963103,269,0 +170737963151,269,0 +170737963199,269,0 +170737963247,269,0 +170737963295,269,0 +170737963343,269,0 +170737963392,268,0 +170737963442,269,0 +170737963490,269,0 +170737963538,269,0 +170737963587,269,0 +170737963635,268,0 +170737963683,269,0 +170737963731,269,0 +170737963779,269,0 +170737963827,269,0 +170737963877,269,0 +170737963925,269,0 +170737963973,269,0 +170737964021,269,0 +170737964068,269,0 +170737964116,269,0 +170737964164,269,0 +170737964214,269,0 +170737964263,269,0 +170737964313,269,0 +170737964362,269,0 +170737964410,269,0 +170737964458,269,0 +170737964506,269,0 +170737964556,269,0 +170737964604,269,0 +170737964652,269,0 +170737964700,269,0 +170737964748,269,0 +170737964795,269,0 +170737964843,269,0 +170737964891,269,0 +170737964939,269,0 +170737964989,269,0 +170737965037,269,0 +170737965084,269,0 +170737965132,269,0 +170737965180,268,0 +170737965228,269,0 +170737965276,269,0 +170737965324,268,0 +170737965372,269,0 +170737965420,269,0 +170737965468,269,0 +170737965515,269,0 +170737965563,268,0 +170737965611,268,0 +170737965661,269,0 +170737965709,269,0 +170737965757,269,0 +170737965805,268,0 +170737965852,268,0 +170737965900,269,0 +170737965948,269,0 +170737965996,269,0 +170737966044,268,0 +170737966092,269,0 +170737966140,268,0 +170737966188,269,0 +170737966238,269,0 +170737966286,268,0 +170737966334,268,0 +170737966383,268,0 +170737966431,268,0 +170737966479,269,0 +170737966527,269,0 +170737966575,268,0 +170737966623,269,0 +170737966670,268,0 +170737966720,268,0 +170737966768,268,0 +170737966816,269,0 +170737966864,269,0 +170737966912,268,0 +170737966960,269,0 +170737967008,269,0 +170737967056,269,0 +170737967104,268,0 +170737967152,268,0 +170737967201,269,0 +170737967249,269,0 +170737967297,269,0 +170737967347,268,0 +170737967395,269,0 +170737967443,269,0 +170737967492,269,0 +170737967540,268,0 +170737967590,269,0 +170737967638,269,0 +170737967686,269,0 +170737967734,269,0 +170737967782,269,0 +170737967831,269,0 +170737967879,269,0 +170737967927,268,0 +170737967977,269,0 +170737968024,269,0 +170737968074,269,0 +170737968122,269,0 +170737968171,268,0 +170737968219,269,0 +170737968269,269,0 +170737968317,269,0 +170737968365,269,0 +170737968413,268,0 +170737968462,269,0 +170737968510,268,0 +170737968560,269,0 +170737968609,269,0 +170737968657,268,0 +170737968705,268,0 +170737968753,269,0 +170737968803,269,0 +170737968852,268,0 +170737968902,268,0 +170737968950,269,0 +170737968998,268,0 +170737969046,269,0 +170737969094,269,0 +170737969142,269,0 +170737969189,269,0 +170737969237,269,0 +170737969285,269,0 +170737969335,268,0 +170737969383,269,0 +170737969431,269,0 +170737969479,269,0 +170737969527,268,0 +170737969575,269,0 +170737969623,268,0 +170737969671,269,0 +170737969719,269,0 +170737969767,268,0 +170737969816,269,0 +170737969864,269,0 +170737969914,269,0 +170737969961,269,0 +170737970009,269,0 +170737970057,269,0 +170737970107,269,0 +170737970155,269,0 +170737970204,269,0 +170737970252,268,0 +170737970300,269,0 +170737970348,269,0 +170737970396,268,0 +170737970444,269,0 +170737970494,268,0 +170737970542,268,0 +170737970591,269,0 +170737970639,269,0 +170737970687,269,0 +170737970737,268,0 +170737970785,269,0 +170737970834,269,0 +170737970882,269,0 +170737970930,269,0 +170737970978,269,0 +170737971026,268,0 +170737971074,269,0 +170737971121,268,0 +170737971169,269,0 +170737971217,269,0 +170737971265,269,0 +170737971313,268,0 +170737971361,268,0 +170737971411,269,0 +170737971459,269,0 +170737971507,269,0 +170737971555,269,0 +170737971603,269,0 +170737971652,268,0 +170737971700,269,0 +170737971750,269,0 +170737971798,269,0 +170737971846,269,0 +170737971894,269,0 +170737971941,268,0 +170737971991,268,0 +170737972039,269,0 +170737972087,269,0 +170737972135,269,0 +170737972184,268,0 +170737972232,269,0 +170737972280,269,0 +170737972328,269,0 +170737972376,268,0 +170737972424,268,0 +170737972472,269,0 +170737972520,269,0 +170737972568,268,0 +170737972616,269,0 +170737972664,269,0 +170737972714,269,0 +170737972762,268,0 +170737972811,268,0 +170737972859,269,0 +170737972909,269,0 +170737972957,269,0 +170737973006,269,0 +170737973054,269,0 +170737973102,269,0 +170737973150,269,0 +170737973198,268,0 +170737973246,268,0 +170737973294,269,0 +170737973342,269,0 +170737973390,268,0 +170737973440,269,0 +170737973488,269,0 +170737973536,269,0 +170737973585,268,0 +170737973633,269,0 +170737973681,269,0 +170737973729,269,0 +170737973777,268,0 +170737973825,268,0 +170737973873,269,0 +170737973921,268,0 +170737973969,268,0 +170737974017,268,0 +170737974065,268,0 +170737974114,269,0 +170737974162,269,0 +170737974210,269,0 +170737974260,268,0 +170737974309,269,0 +170737974359,269,0 +170737974407,269,0 +170737974455,268,0 +170737974504,268,0 +170737974552,269,0 +170737974600,269,0 +170737974648,269,0 +170737974696,268,0 +170737974746,268,0 +170737974795,268,0 +170737974843,269,0 +170737974891,268,0 +170737974939,268,0 +170737974987,268,0 +170737975035,268,0 +170737975084,268,0 +170737975132,269,0 +170737975180,269,0 +170737975228,268,0 +170737975278,269,0 +170737975326,269,0 +170737975374,268,0 +170737975422,269,0 +170737975470,268,0 +170737975518,268,0 +170737975566,268,0 +170737975614,268,0 +170737975662,268,0 +170737975711,269,0 +170737975759,268,0 +170737975809,268,0 +170737975856,269,0 +170737975904,269,0 +170737975952,268,0 +170737976002,269,0 +170737976050,268,0 +170737976098,268,0 +170737976146,269,0 +170737976194,269,0 +170737976242,268,0 +170737976290,269,0 +170737976339,269,0 +170737976387,268,0 +170737976435,269,0 +170737976483,268,0 +170737976531,269,0 +170737976579,268,0 +170737976627,269,0 +170737976675,268,0 +170737976723,269,0 +170737976771,269,0 +170737976819,269,0 +170737976869,269,0 +170737976917,269,0 +170737976964,268,0 +170737977012,268,0 +170737977062,268,0 +170737977110,268,0 +170737977158,269,0 +170737977206,268,0 +170737977254,269,0 +170737977303,269,0 +170737977351,268,0 +170737977401,268,0 +170737977449,269,0 +170737977497,268,0 +170737977545,268,0 +170737977593,268,0 +170737977641,269,0 +170737977689,268,0 +170737977737,269,0 +170737977786,269,0 +170737977836,269,0 +170737977884,269,0 +170737977932,268,0 +170737977980,268,0 +170737978028,268,0 +170737978076,269,0 +170737978125,269,0 +170737978175,269,0 +170737978223,268,0 +170737978271,268,0 +170737978319,268,0 +170737978366,269,0 +170737978414,268,0 +170737978462,269,0 +170737978510,268,0 +170737978558,269,0 +170737978606,269,0 +170737978654,269,0 +170737978702,269,0 +170737978750,269,0 +170737978800,268,0 +170737978848,268,0 +170737978896,269,0 +170737978944,269,0 +170737978992,269,0 +170737979040,269,0 +170737979088,269,0 +170737979136,269,0 +170737979183,268,0 +170737979233,269,0 +170737979283,269,0 +170737979331,268,0 +170737979378,269,0 +170737979428,268,0 +170737979477,268,0 +170737979527,268,0 +170737979575,269,0 +170737979623,268,0 +170737979671,269,0 +170737979719,268,0 +170737979768,269,0 +170737979816,268,0 +170737979864,268,0 +170737979912,268,0 +170737979960,268,0 +170737980008,269,0 +170737980056,268,0 +170737980104,268,0 +170737980153,268,0 +170737980201,268,0 +170737980251,269,0 +170737980299,268,0 +170737980347,268,0 +170737980395,268,0 +170737980443,269,0 +170737980492,269,0 +170737980540,269,0 +170737980588,268,0 +170737980636,268,0 +170737980686,269,0 +170737980734,269,0 +170737980781,268,0 +170737980831,268,0 +170737980879,268,0 +170737980927,268,0 +170737980977,268,0 +170737981024,269,0 +170737981072,269,0 +170737981122,269,0 +170737981170,269,0 +170737981220,269,0 +170737981270,269,0 +170737981319,269,0 +170737981367,269,0 +170737981415,269,0 +170737981463,269,0 +170737981511,268,0 +170737981559,268,0 +170737981607,269,0 +170737981654,269,0 +170737981702,268,0 +170737981752,268,0 +170737981801,268,0 +170737981849,269,0 +170737981897,268,0 +170737981945,269,0 +170737981993,269,0 +170737982041,269,0 +170737982091,268,0 +170737982139,269,0 +170737982186,268,0 +170737982234,268,0 +170737982284,269,0 +170737982332,269,0 +170737982379,268,0 +170737982427,268,0 +170737982475,268,0 +170737982523,269,0 +170737982573,269,0 +170737982621,269,0 +170737982669,269,0 +170737982718,268,0 +170737982766,268,0 +170737982816,268,0 +170737982864,268,0 +170737982911,268,0 +170737982959,268,0 +170737983007,269,0 +170737983055,268,0 +170737983103,268,0 +170737983151,268,0 +170737983199,268,0 +170737983249,268,0 +170737983297,268,0 +170737983346,269,0 +170737983394,269,0 +170737983444,268,0 +170737983492,268,0 +170737983539,268,0 +170737983587,268,0 +170737983635,268,0 +170737983683,268,0 +170737983731,268,0 +170737983779,268,0 +170737983827,268,0 +170737983875,268,0 +170737983923,269,0 +170737983971,268,0 +170737984018,269,0 +170737984066,269,0 +170737984114,268,0 +170737984162,268,0 +170737984212,268,0 +170737984259,268,0 +170737984307,269,0 +170737984355,268,0 +170737984403,268,0 +170737984453,268,0 +170737984502,268,0 +170737984550,268,0 +170737984600,268,0 +170737984648,268,0 +170737984696,268,0 +170737984744,268,0 +170737984793,269,0 +170737984843,268,0 +170737984892,268,0 +170737984940,269,0 +170737984990,268,0 +170737985038,268,0 +170737985085,268,0 +170737985133,268,0 +170737985181,268,0 +170737985229,268,0 +170737985277,268,0 +170737985326,268,0 +170737985374,268,0 +170737985422,269,0 +170737985470,269,0 +170737985518,268,0 +170737985566,268,0 +170737985614,268,0 +170737985662,268,0 +170737985711,268,0 +170737985759,268,0 +170737985807,268,0 +170737985855,268,0 +170737985903,268,0 +170737985951,268,0 +170737985999,269,0 +170737986047,269,0 +170737986095,269,0 +170737986143,268,0 +170737986191,268,0 +170737986238,268,0 +170737986288,268,0 +170737986336,268,0 +170737986384,268,0 +170737986432,268,0 +170737986480,268,0 +170737986528,269,0 +170737986576,268,0 +170737986624,268,0 +170737986672,268,0 +170737986720,268,0 +170737986768,269,0 +170737986816,269,0 +170737986864,268,0 +170737986912,268,0 +170737986960,268,0 +170737987009,269,0 +170737987057,268,0 +170737987105,268,0 +170737987153,268,0 +170737987202,268,0 +170737987250,268,0 +170737987298,268,0 +170737987348,268,0 +170737987397,268,0 +170737987445,269,0 +170737987493,268,0 +170737987543,268,0 +170737987591,268,0 +170737987640,269,0 +170737987690,268,0 +170737987739,269,0 +170737987787,268,0 +170737987835,269,0 +170737987883,269,0 +170737987933,268,0 +170737987981,268,0 +170737988030,268,0 +170737988078,268,0 +170737988128,269,0 +170737988176,269,0 +170737988224,269,0 +170737988272,268,0 +170737988321,268,0 +170737988371,268,0 +170737988420,268,0 +170737988470,269,0 +170737988519,269,0 +170737988569,268,0 +170737988617,268,0 +170737988665,268,0 +170737988713,268,0 +170737988761,268,0 +170737988809,268,0 +170737988857,268,0 +170737988905,268,0 +170737988953,268,0 +170737989002,268,0 +170737989050,268,0 +170737989098,268,0 +170737989146,269,0 +170737989194,268,0 +170737989244,268,0 +170737989292,268,0 +170737989341,268,0 +170737989389,268,0 +170737989437,269,0 +170737989487,268,0 +170737989535,268,0 +170737989583,268,0 +170737989632,268,0 +170737989682,269,0 +170737989729,268,0 +170737989779,268,0 +170737989827,269,0 +170737989875,268,0 +170737989924,268,0 +170737989974,268,0 +170737990022,268,0 +170737990070,269,0 +170737990118,268,0 +170737990166,268,0 +170737990214,269,0 +170737990262,268,0 +170737990310,268,0 +170737990358,268,0 +170737990407,268,0 +170737990457,269,0 +170737990505,268,0 +170737990554,268,0 +170737990602,268,0 +170737990650,269,0 +170737990700,268,0 +170737990748,268,0 +170737990796,268,0 +170737990844,269,0 +170737990891,269,0 +170737990939,268,0 +170737990987,268,0 +170737991035,268,0 +170737991083,268,0 +170737991131,268,0 +170737991179,269,0 +170737991228,268,0 +170737991276,269,0 +170737991324,268,0 +170737991372,268,0 +170737991420,268,0 +170737991470,268,0 +170737991519,268,0 +170737991567,268,0 +170737991617,268,0 +170737991666,268,0 +170737991714,268,0 +170737991762,268,0 +170737991812,268,0 +170737991860,269,0 +170737991908,268,0 +170737991957,268,0 +170737992005,268,0 +170737992053,268,0 +170737992101,268,0 +170737992151,268,0 +170737992199,269,0 +170737992248,268,0 +170737992296,268,0 +170737992344,268,0 +170737992392,268,0 +170737992440,268,0 +170737992488,268,0 +170737992536,268,0 +170737992586,268,0 +170737992633,268,0 +170737992681,269,0 +170737992729,268,0 +170737992777,268,0 +170737992827,268,0 +170737992876,269,0 +170737992926,268,0 +170737992974,269,0 +170737993023,268,0 +170737993071,268,0 +170737993119,268,0 +170737993169,268,0 +170737993218,268,0 +170737993266,268,0 +170737993314,269,0 +170737993362,268,0 +170737993412,268,0 +170737993460,268,0 +170737993509,268,0 +170737993557,269,0 +170737993605,268,0 +170737993653,269,0 +170737993701,268,0 +170737993749,268,0 +170737993797,268,0 +170737993847,268,0 +170737993895,268,0 +170737993944,268,0 +170737993992,268,0 +170737994040,268,0 +170737994088,268,0 +170737994136,268,0 +170737994184,268,0 +170737994232,268,0 +170737994281,269,0 +170737994329,268,0 +170737994379,269,0 +170737994426,268,0 +170737994476,268,0 +170737994524,268,0 +170737994572,268,0 +170737994620,268,0 +170737994668,268,0 +170737994716,268,0 +170737994765,268,0 +170737994813,269,0 +170737994861,268,0 +170737994909,268,0 +170737994959,268,0 +170737995007,268,0 +170737995056,269,0 +170737995106,268,0 +170737995154,268,0 +170737995203,268,0 +170737995251,268,0 +170737995301,268,0 +170737995350,268,0 +170737995400,268,0 +170737995448,268,0 +170737995496,268,0 +170737995544,268,0 +170737995592,268,0 +170737995640,269,0 +170737995687,268,0 +170737995735,268,0 +170737995783,268,0 +170737995831,268,0 +170737995879,268,0 +170737995929,268,0 +170737995977,268,0 +170737996025,268,0 +170737996073,268,0 +170737996121,269,0 +170737996169,268,0 +170737996218,268,0 +170737996266,268,0 +170737996316,268,0 +170737996365,268,0 +170737996413,268,0 +170737996461,269,0 +170737996509,268,0 +170737996557,269,0 +170737996605,268,0 +170737996653,268,0 +170737996702,268,0 +170737996750,268,0 +170737996800,268,0 +170737996848,268,0 +170737996896,268,0 +170737996944,268,0 +170737996992,268,0 +170737997040,268,0 +170737997088,268,0 +170737997136,268,0 +170737997184,268,0 +170737997232,268,0 +170737997280,268,0 +170737997328,268,0 +170737997375,268,0 +170737997423,268,0 +170737997471,268,0 +170737997519,269,0 +170737997569,268,0 +170737997618,268,0 +170737997666,268,0 +170737997714,268,0 +170737997762,268,0 +170737997812,268,0 +170737997860,268,0 +170737997908,268,0 +170737997957,268,0 +170737998005,268,0 +170737998055,268,0 +170737998103,268,0 +170737998152,268,0 +170737998200,269,0 +170737998250,268,0 +170737998298,268,0 +170737998347,268,0 +170737998395,268,0 +170737998443,268,0 +170737998491,269,0 +170737998539,268,0 +170737998587,268,0 +170737998635,268,0 +170737998683,269,0 +170737998733,268,0 +170737998781,268,0 +170737998828,268,0 +170737998876,268,0 +170737998926,268,0 +170737998974,268,0 +170737999022,268,0 +170737999071,269,0 +170737999119,268,0 +170737999169,268,0 +170737999217,268,0 +170737999265,268,0 +170737999313,268,0 +170737999361,268,0 +170737999409,269,0 +170737999457,268,0 +170737999505,268,0 +170737999553,268,0 +170737999602,268,0 +170737999650,268,0 +170737999700,268,0 +170737999749,268,0 +170737999797,268,0 +170737999845,268,0 +170737999893,268,0 +170737999941,268,0 +170737999989,268,0 +170738000037,268,0 +170738000085,268,0 +170738000133,268,0 +170738000181,268,0 +170738000230,268,0 +170738000278,268,0 +170738000328,268,0 +170738000376,268,0 +170738000425,268,0 +170738000473,268,0 +170738000521,268,0 +170738000569,268,0 +170738000617,268,0 +170738000665,268,0 +170738000713,268,0 +170738000761,268,0 +170738000811,269,0 +170738000859,269,0 +170738000907,268,0 +170738000954,268,0 +170738001004,268,0 +170738001054,268,0 +170738001102,268,0 +170738001150,268,0 +170738001198,268,0 +170738001246,268,0 +170738001294,269,0 +170738001341,268,0 +170738001389,268,0 +170738001437,268,0 +170738001485,268,0 +170738001533,268,0 +170738001581,268,0 +170738001629,268,0 +170738001677,268,0 +170738001725,268,0 +170738001775,268,0 +170738001824,268,0 +170738001872,268,0 +170738001920,268,0 +170738001968,269,0 +170738002016,268,0 +170738002065,268,0 +170738002113,268,0 +170738002161,268,0 +170738002211,268,0 +170738002259,268,0 +170738002308,268,0 +170738002356,268,0 +170738002404,268,0 +170738002452,268,0 +170738002500,268,0 +170738002548,268,0 +170738002596,268,0 +170738002646,268,0 +170738002694,268,0 +170738002742,268,0 +170738002790,268,0 +170738002838,268,0 +170738002885,269,0 +170738002934,268,0 +170738002981,269,0 +170738003029,268,0 +170738003077,268,0 +170738003125,268,0 +170738003173,268,0 +170738003221,268,0 +170738003269,268,0 +170738003317,268,0 +170738003365,268,0 +170738003413,268,0 +170738003461,268,0 +170738003510,268,0 +170738003558,268,0 +170738003608,268,0 +170738003656,268,0 +170738003704,268,0 +170738003752,268,0 +170738003800,269,0 +170738003848,268,0 +170738003897,268,0 +170738003945,268,0 +170738003993,268,0 +170738004041,268,0 +170738004089,268,0 +170738004137,269,0 +170738004185,268,0 +170738004233,268,0 +170738004281,268,0 +170738004329,268,0 +170738004378,268,0 +170738004428,268,0 +170738004476,268,0 +170738004525,268,0 +170738004575,268,0 +170738004623,268,0 +170738004671,268,0 +170738004719,269,0 +170738004767,268,0 +170738004815,269,0 +170738004863,268,0 +170738004911,268,0 +170738004959,268,0 +170738005007,268,0 +170738005056,268,0 +170738005106,269,0 +170738005155,268,0 +170738005203,268,0 +170738005253,268,0 +170738005301,268,0 +170738005349,269,0 +170738005397,268,0 +170738005445,268,0 +170738005492,268,0 +170738005540,269,0 +170738005588,269,0 +170738005636,268,0 +170738005686,268,0 +170738005734,269,0 +170738005782,268,0 +170738005830,268,0 +170738005879,268,0 +170738005927,268,0 +170738005975,269,0 +170738006023,268,0 +170738006071,269,0 +170738006119,268,0 +170738006169,268,0 +170738006217,268,0 +170738006265,269,0 +170738006313,269,0 +170738006361,269,0 +170738006409,268,0 +170738006457,268,0 +170738006504,268,0 +170738006552,268,0 +170738006600,268,0 +170738006648,268,0 +170738006696,268,0 +170738006744,268,0 +170738006792,268,0 +170738006840,268,0 +170738006888,268,0 +170738006936,268,0 +170738006984,269,0 +170738007032,268,0 +170738007082,268,0 +170738007131,268,0 +170738007179,268,0 +170738007227,268,0 +170738007275,268,0 +170738007323,268,0 +170738007371,268,0 +170738007420,268,0 +170738007468,268,0 +170738007518,268,0 +170738007566,268,0 +170738007614,268,0 +170738007662,269,0 +170738007710,269,0 +170738007758,268,0 +170738007805,268,0 +170738007853,268,0 +170738007901,268,0 +170738007949,268,0 +170738007997,268,0 +170738008045,268,0 +170738008093,268,0 +170738008141,268,0 +170738008189,268,0 +170738008237,268,0 +170738008284,268,0 +170738008332,269,0 +170738008380,268,0 +170738008428,269,0 +170738008476,268,0 +170738008524,268,0 +170738008572,268,0 +170738008619,268,0 +170738008669,269,0 +170738008717,268,0 +170738008766,268,0 +170738008814,268,0 +170738008864,268,0 +170738008911,268,0 +170738008959,268,0 +170738009007,268,0 +170738009055,268,0 +170738009103,269,0 +170738009151,268,0 +170738009199,268,0 +170738009247,268,0 +170738009295,268,0 +170738009344,268,0 +170738009392,268,0 +170738009440,268,0 +170738009488,268,0 +170738009536,268,0 +170738009584,268,0 +170738009632,268,0 +170738009679,268,0 +170738009727,268,0 +170738009775,268,0 +170738009823,268,0 +170738009871,268,0 +170738009919,268,0 +170738009967,268,0 +170738010017,268,0 +170738010066,268,0 +170738010114,268,0 +170738010162,268,0 +170738010212,268,0 +170738010260,268,0 +170738010309,268,0 +170738010357,268,0 +170738010405,268,0 +170738010453,268,0 +170738010501,269,0 +170738010549,268,0 +170738010597,268,0 +170738010646,268,0 +170738010694,268,0 +170738010742,268,0 +170738010790,268,0 +170738010840,269,0 +170738010889,268,0 +170738010937,269,0 +170738010985,268,0 +170738011033,268,0 +170738011081,268,0 +170738011129,268,0 +170738011177,268,0 +170738011225,268,0 +170738011272,268,0 +170738011320,268,0 +170738011368,268,0 +170738011416,269,0 +170738011464,268,0 +170738011512,268,0 +170738011560,268,0 +170738011608,268,0 +170738011656,268,0 +170738011704,268,0 +170738011752,269,0 +170738011800,268,0 +170738011847,269,0 +170738011895,268,0 +170738011943,268,0 +170738011991,268,0 +170738012039,268,0 +170738012087,269,0 +170738012136,269,0 +170738012186,268,0 +170738012234,268,0 +170738012282,268,0 +170738012330,268,0 +170738012379,268,0 +170738012427,268,0 +170738012477,268,0 +170738012526,268,0 +170738012574,269,0 +170738012624,269,0 +170738012672,269,0 +170738012720,268,0 +170738012768,268,0 +170738012816,268,0 +170738012864,269,0 +170738012912,268,0 +170738012961,268,0 +170738013009,269,0 +170738013058,268,0 +170738013108,268,0 +170738013156,268,0 +170738013204,268,0 +170738013252,268,0 +170738013300,268,0 +170738013348,269,0 +170738013396,269,0 +170738013444,269,0 +170738013492,268,0 +170738013540,269,0 +170738013588,269,0 +170738013635,269,0 +170738013683,268,0 +170738013731,268,0 +170738013779,268,0 +170738013827,268,0 +170738013877,269,0 +170738013926,269,0 +170738013974,269,0 +170738014024,268,0 +170738014072,268,0 +170738014120,268,0 +170738014169,268,0 +170738014217,268,0 +170738014265,268,0 +170738014315,269,0 +170738014363,269,0 +170738014412,268,0 +170738014460,268,0 +170738014508,268,0 +170738014556,268,0 +170738014604,268,0 +170738014652,268,0 +170738014700,268,0 +170738014748,268,0 +170738014796,268,0 +170738014845,269,0 +170738014893,268,0 +170738014941,269,0 +170738014990,269,0 +170738015038,268,0 +170738015088,268,0 +170738015136,268,0 +170738015184,269,0 +170738015232,268,0 +170738015280,269,0 +170738015329,269,0 +170738015377,268,0 +170738015425,268,0 +170738015475,268,0 +170738015523,268,0 +170738015572,268,0 +170738015620,269,0 +170738015668,269,0 +170738015716,268,0 +170738015764,268,0 +170738015812,268,0 +170738015861,268,0 +170738015909,269,0 +170738015957,269,0 +170738016005,269,0 +170738016053,268,0 +170738016101,268,0 +170738016149,268,0 +170738016197,268,0 +170738016245,268,0 +170738016295,269,0 +170738016342,268,0 +170738016392,268,0 +170738016440,268,0 +170738016488,268,0 +170738016536,269,0 +170738016584,268,0 +170738016632,268,0 +170738016680,268,0 +170738016728,268,0 +170738016776,269,0 +170738016824,268,0 +170738016873,268,0 +170738016921,268,0 +170738016970,269,0 +170738017018,268,0 +170738017068,269,0 +170738017117,268,0 +170738017167,268,0 +170738017215,268,0 +170738017263,268,0 +170738017312,268,0 +170738017362,268,0 +170738017410,268,0 +170738017458,268,0 +170738017506,269,0 +170738017555,268,0 +170738017605,268,0 +170738017653,268,0 +170738017701,268,0 +170738017749,268,0 +170738017797,268,0 +170738017845,268,0 +170738017893,268,0 +170738017942,268,0 +170738017990,268,0 +170738018038,268,0 +170738018086,268,0 +170738018134,268,0 +170738018182,268,0 +170738018230,269,0 +170738018279,268,0 +170738018327,268,0 +170738018377,269,0 +170738018425,268,0 +170738018473,268,0 +170738018521,268,0 +170738018570,268,0 +170738018618,268,0 +170738018666,268,0 +170738018716,268,0 +170738018764,269,0 +170738018813,268,0 +170738018861,268,0 +170738018909,269,0 +170738018957,268,0 +170738019005,268,0 +170738019053,268,0 +170738019101,268,0 +170738019149,268,0 +170738019197,268,0 +170738019246,269,0 +170738019294,268,0 +170738019342,268,0 +170738019392,268,0 +170738019440,268,0 +170738019488,269,0 +170738019536,268,0 +170738019584,268,0 +170738019632,268,0 +170738019681,268,0 +170738019731,268,0 +170738019779,268,0 +170738019828,268,0 +170738019878,268,0 +170738019927,268,0 +170738019975,268,0 +170738020023,268,0 +170738020071,269,0 +170738020119,269,0 +170738020167,268,0 +170738020215,268,0 +170738020263,268,0 +170738020311,268,0 +170738020361,268,0 +170738020409,268,0 +170738020458,268,0 +170738020506,268,0 +170738020554,268,0 +170738020602,269,0 +170738020651,268,0 +170738020699,268,0 +170738020749,268,0 +170738020797,268,0 +170738020845,268,0 +170738020893,268,0 +170738020941,268,0 +170738020989,268,0 +170738021038,268,0 +170738021086,268,0 +170738021134,268,0 +170738021184,269,0 +170738021232,269,0 +170738021280,269,0 +170738021329,268,0 +170738021377,268,0 +170738021425,268,0 +170738021475,268,0 +170738021523,268,0 +170738021572,268,0 +170738021622,268,0 +170738021671,268,0 +170738021719,268,0 +170738021767,268,0 +170738021817,268,0 +170738021865,268,0 +170738021912,268,0 +170738021960,268,0 +170738022008,269,0 +170738022056,268,0 +170738022104,268,0 +170738022152,268,0 +170738022200,268,0 +170738022250,268,0 +170738022298,268,0 +170738022346,268,0 +170738022393,268,0 +170738022443,268,0 +170738022492,269,0 +170738022540,268,0 +170738022588,268,0 +170738022636,268,0 +170738022684,268,0 +170738022732,268,0 +170738022780,269,0 +170738022828,268,0 +170738022875,268,0 +170738022925,268,0 +170738022973,268,0 +170738023021,268,0 +170738023069,268,0 +170738023117,268,0 +170738023165,268,0 +170738023213,268,0 +170738023261,268,0 +170738023309,269,0 +170738023357,268,0 +170738023405,269,0 +170738023454,268,0 +170738023502,268,0 +170738023552,269,0 +170738023600,268,0 +170738023649,268,0 +170738023697,268,0 +170738023745,268,0 +170738023793,268,0 +170738023843,268,0 +170738023892,268,0 +170738023942,268,0 +170738023990,268,0 +170738024038,268,0 +170738024085,268,0 +170738024133,268,0 +170738024181,268,0 +170738024229,268,0 +170738024279,268,0 +170738024326,268,0 +170738024376,268,0 +170738024424,268,0 +170738024473,268,0 +170738024521,268,0 +170738024569,268,0 +170738024617,268,0 +170738024667,268,0 +170738024715,268,0 +170738024764,268,0 +170738024814,268,0 +170738024863,269,0 +170738024911,269,0 +170738024961,268,0 +170738025010,268,0 +170738025058,268,0 +170738025108,268,0 +170738025157,268,0 +170738025205,268,0 +170738025253,268,0 +170738025301,268,0 +170738025349,268,0 +170738025397,268,0 +170738025447,268,0 +170738025495,268,0 +170738025542,268,0 +170738025592,268,0 +170738025640,268,0 +170738025688,268,0 +170738025737,268,0 +170738025785,268,0 +170738025833,268,0 +170738025883,268,0 +170738025932,268,0 +170738025980,268,0 +170738026030,268,0 +170738026078,268,0 +170738026127,268,0 +170738026177,268,0 +170738026225,268,0 +170738026273,268,0 +170738026321,268,0 +170738026370,268,0 +170738026418,269,0 +170738026466,269,0 +170738026514,268,0 +170738026562,268,0 +170738026610,268,0 +170738026660,269,0 +170738026709,268,0 +170738026757,268,0 +170738026805,268,0 +170738026853,268,0 +170738026901,268,0 +170738026949,268,0 +170738026998,269,0 +170738027048,268,0 +170738027096,268,0 +170738027144,268,0 +170738027193,268,0 +170738027243,268,0 +170738027292,268,0 +170738027340,268,0 +170738027388,268,0 +170738027436,268,0 +170738027484,268,0 +170738027534,268,0 +170738027583,268,0 +170738027631,268,0 +170738027681,268,0 +170738027730,268,0 +170738027778,268,0 +170738027826,269,0 +170738027874,268,0 +170738027922,268,0 +170738027972,268,0 +170738028020,268,0 +170738028067,268,0 +170738028117,269,0 +170738028165,268,0 +170738028214,268,0 +170738028262,268,0 +170738028312,268,0 +170738028361,268,0 +170738028411,268,0 +170738028459,268,0 +170738028508,268,0 +170738028556,268,0 +170738028604,268,0 +170738028654,269,0 +170738028703,269,0 +170738028751,268,0 +170738028801,269,0 +170738028849,269,0 +170738028897,268,0 +170738028945,268,0 +170738028993,268,0 +170738029041,268,0 +170738029089,269,0 +170738029137,268,0 +170738029186,268,0 +170738029234,268,0 +170738029284,268,0 +170738029332,268,0 +170738029380,268,0 +170738029427,268,0 +170738029475,268,0 +170738029523,268,0 +170738029571,268,0 +170738029619,268,0 +170738029667,268,0 +170738029715,268,0 +170738029765,268,0 +170738029814,268,0 +170738029862,268,0 +170738029910,268,0 +170738029958,268,0 +170738030008,268,0 +170738030057,268,0 +170738030107,268,0 +170738030156,268,0 +170738030206,268,0 +170738030254,268,0 +170738030303,268,0 +170738030351,268,0 +170738030401,268,0 +170738030449,268,0 +170738030497,268,0 +170738030545,268,0 +170738030594,269,0 +170738030642,268,0 +170738030690,268,0 +170738030738,268,0 +170738030786,268,0 +170738030834,268,0 +170738030882,269,0 +170738030930,268,0 +170738030978,268,0 +170738031026,268,0 +170738031074,268,0 +170738031122,268,0 +170738031170,268,0 +170738031218,268,0 +170738031267,268,0 +170738031315,268,0 +170738031363,268,0 +170738031411,268,0 +170738031459,268,0 +170738031507,268,0 +170738031555,268,0 +170738031603,268,0 +170738031651,268,0 +170738031701,268,0 +170738031749,268,0 +170738031797,268,0 +170738031845,268,0 +170738031893,268,0 +170738031942,268,0 +170738031990,268,0 +170738032038,268,0 +170738032086,269,0 +170738032135,268,0 +170738032183,268,0 +170738032231,268,0 +170738032279,269,0 +170738032329,268,0 +170738032377,268,0 +170738032425,268,0 +170738032474,268,0 +170738032524,268,0 +170738032572,268,0 +170738032620,268,0 +170738032668,268,0 +170738032716,268,0 +170738032765,268,0 +170738032813,268,0 +170738032861,268,0 +170738032909,268,0 +170738032958,268,0 +170738033006,268,0 +170738033055,268,0 +170738033105,268,0 +170738033154,268,0 +170738033204,268,0 +170738033252,268,0 +170738033300,268,0 +170738033348,268,0 +170738033396,268,0 +170738033444,268,0 +170738033492,268,0 +170738033540,268,0 +170738033588,268,0 +170738033637,268,0 +170738033687,268,0 +170738033736,268,0 +170738033784,268,0 +170738033834,268,0 +170738033882,268,0 +170738033929,268,0 +170738033977,268,0 +170738034025,268,0 +170738034075,268,0 +170738034124,268,0 +170738034172,268,0 +170738034220,268,0 +170738034270,268,0 +170738034319,268,0 +170738034367,268,0 +170738034415,268,0 +170738034465,268,0 +170738034513,268,0 +170738034561,268,0 +170738034611,268,0 +170738034659,268,0 +170738034707,268,0 +170738034755,268,0 +170738034802,268,0 +170738034850,268,0 +170738034900,268,0 +170738034949,268,0 +170738034997,268,0 +170738035045,268,0 +170738035093,268,0 +170738035141,268,0 +170738035189,268,0 +170738035237,268,0 +170738035285,268,0 +170738035335,268,0 +170738035384,268,0 +170738035434,268,0 +170738035483,269,0 +170738035531,268,0 +170738035581,268,0 +170738035629,269,0 +170738035678,268,0 +170738035726,268,0 +170738035774,268,0 +170738035822,268,0 +170738035872,268,0 +170738035920,268,0 +170738035969,268,0 +170738036019,268,0 +170738036067,269,0 +170738036115,268,0 +170738036163,268,0 +170738036211,268,0 +170738036259,268,0 +170738036307,268,0 +170738036355,268,0 +170738036403,268,0 +170738036451,269,0 +170738036499,268,0 +170738036548,268,0 +170738036596,268,0 +170738036646,268,0 +170738036694,268,0 +170738036742,268,0 +170738036789,269,0 +170738036837,268,0 +170738036887,268,0 +170738036935,268,0 +170738036983,268,0 +170738037031,268,0 +170738037079,268,0 +170738037127,268,0 +170738037176,268,0 +170738037224,268,0 +170738037274,268,0 +170738037322,268,0 +170738037370,268,0 +170738037418,268,0 +170738037467,268,0 +170738037515,268,0 +170738037563,268,0 +170738037611,268,0 +170738037659,268,0 +170738037709,268,0 +170738037757,268,0 +170738037805,268,0 +170738037853,269,0 +170738037902,268,0 +170738037952,268,0 +170738038001,268,0 +170738038049,268,0 +170738038097,268,0 +170738038145,268,0 +170738038193,268,0 +170738038241,268,0 +170738038290,268,0 +170738038338,268,0 +170738038388,268,0 +170738038436,268,0 +170738038484,268,0 +170738038531,268,0 +170738038579,268,0 +170738038627,268,0 +170738038675,268,0 +170738038725,268,0 +170738038773,268,0 +170738038822,268,0 +170738038870,268,0 +170738038918,268,0 +170738038967,268,0 +170738039015,268,0 +170738039063,268,0 +170738039111,268,0 +170738039159,268,0 +170738039207,268,0 +170738039255,268,0 +170738039303,268,0 +170738039350,268,0 +170738039398,268,0 +170738039446,268,0 +170738039496,268,0 +170738039544,268,0 +170738039591,268,0 +170738039639,268,0 +170738039687,268,0 +170738039735,268,0 +170738039783,268,0 +170738039831,268,0 +170738039879,268,0 +170738039927,268,0 +170738039974,268,0 +170738040022,268,0 +170738040070,269,0 +170738040118,268,0 +170738040166,268,0 +170738040215,268,0 +170738040263,268,0 +170738040311,268,0 +170738040359,268,0 +170738040407,269,0 +170738040455,268,0 +170738040503,268,0 +170738040552,268,0 +170738040600,268,0 +170738040648,268,0 +170738040696,268,0 +170738040745,268,0 +170738040793,268,0 +170738040841,269,0 +170738040889,268,0 +170738040937,268,0 +170738040985,268,0 +170738041033,268,0 +170738041081,268,0 +170738041129,268,0 +170738041176,269,0 +170738041224,268,0 +170738041272,268,0 +170738041320,268,0 +170738041368,268,0 +170738041416,268,0 +170738041464,268,0 +170738041512,268,0 +170738041559,268,0 +170738041607,268,0 +170738041657,268,0 +170738041705,268,0 +170738041753,268,0 +170738041800,268,0 +170738041848,268,0 +170738041896,268,0 +170738041944,268,0 +170738041994,268,0 +170738042041,268,0 +170738042089,269,0 +170738042137,269,0 +170738042185,268,0 +170738042233,268,0 +170738042281,268,0 +170738042331,268,0 +170738042379,268,0 +170738042428,268,0 +170738042478,268,0 +170738042527,268,0 +170738042575,268,0 +170738042623,268,0 +170738042671,268,0 +170738042719,268,0 +170738042767,269,0 +170738042816,268,0 +170738042864,268,0 +170738042912,268,0 +170738042960,268,0 +170738043008,268,0 +170738043056,268,0 +170738043104,268,0 +170738043151,268,0 +170738043199,268,0 +170738043249,268,0 +170738043297,268,0 +170738043345,268,0 +170738043394,268,0 +170738043442,268,0 +170738043490,268,0 +170738043540,268,0 +170738043588,268,0 +170738043636,268,0 +170738043684,268,0 +170738043733,269,0 +170738043781,268,0 +170738043831,268,0 +170738043878,268,0 +170738043926,268,0 +170738043974,268,0 +170738044022,268,0 +170738044070,268,0 +170738044118,268,0 +170738044166,268,0 +170738044214,268,0 +170738044264,268,0 +170738044312,268,0 +170738044360,268,0 +170738044408,268,0 +170738044457,268,0 +170738044507,268,0 +170738044555,268,0 +170738044603,268,0 +170738044650,268,0 +170738044698,268,0 +170738044746,268,0 +170738044794,269,0 +170738044842,268,0 +170738044890,268,0 +170738044938,268,0 +170738044986,268,0 +170738045034,268,0 +170738045082,268,0 +170738045130,268,0 +170738045178,268,0 +170738045226,268,0 +170738045274,268,0 +170738045322,268,0 +170738045371,268,0 +170738045419,268,0 +170738045467,268,0 +170738045515,268,0 +170738045563,268,0 +170738045611,268,0 +170738045661,269,0 +170738045709,268,0 +170738045757,268,0 +170738045806,268,0 +170738045854,268,0 +170738045902,268,0 +170738045952,268,0 +170738046000,268,0 +170738046048,268,0 +170738046096,268,0 +170738046144,268,0 +170738046192,268,0 +170738046240,268,0 +170738046287,268,0 +170738046335,268,0 +170738046383,268,0 +170738046431,268,0 +170738046479,268,0 +170738046527,268,0 +170738046575,268,0 +170738046623,268,0 +170738046671,268,0 +170738046719,268,0 +170738046767,268,0 +170738046817,268,0 +170738046865,268,0 +170738046912,268,0 +170738046960,268,0 +170738047008,268,0 +170738047056,268,0 +170738047106,268,0 +170738047156,268,0 +170738047203,268,0 +170738047253,268,0 +170738047301,268,0 +170738047349,268,0 +170738047397,268,0 +170738047446,268,0 +170738047494,268,0 +170738047542,268,0 +170738047590,269,0 +170738047638,268,0 +170738047688,268,0 +170738047736,269,0 +170738047785,268,0 +170738047833,268,0 +170738047881,268,0 +170738047929,268,0 +170738047979,268,0 +170738048027,269,0 +170738048075,268,0 +170738048123,268,0 +170738048170,268,0 +170738048218,268,0 +170738048266,268,0 +170738048314,268,0 +170738048362,268,0 +170738048410,268,0 +170738048458,268,0 +170738048506,269,0 +170738048554,268,0 +170738048602,268,0 +170738048650,268,0 +170738048698,269,0 +170738048747,268,0 +170738048797,269,0 +170738048846,268,0 +170738048894,268,0 +170738048942,268,0 +170738048990,268,0 +170738049038,268,0 +170738049086,268,0 +170738049136,268,0 +170738049184,268,0 +170738049232,268,0 +170738049280,268,0 +170738049328,268,0 +170738049377,268,0 +170738049427,268,0 +170738049475,268,0 +170738049523,268,0 +170738049572,268,0 +170738049620,268,0 +170738049668,268,0 +170738049716,268,0 +170738049766,268,0 +170738049813,268,0 +170738049863,268,0 +170738049911,268,0 +170738049959,269,0 +170738050007,268,0 +170738050057,268,0 +170738050104,268,0 +170738050152,268,0 +170738050200,268,0 +170738050248,268,0 +170738050298,268,0 +170738050346,268,0 +170738050394,268,0 +170738050443,268,0 +170738050491,268,0 +170738050539,268,0 +170738050587,268,0 +170738050637,268,0 +170738050685,268,0 +170738050734,268,0 +170738050784,268,0 +170738050832,268,0 +170738050880,269,0 +170738050929,268,0 +170738050977,268,0 +170738051025,268,0 +170738051073,268,0 +170738051121,268,0 +170738051169,268,0 +170738051217,268,0 +170738051265,268,0 +170738051312,268,0 +170738051360,268,0 +170738051408,268,0 +170738051458,268,0 +170738051506,268,0 +170738051553,268,0 +170738051603,268,0 +170738051651,268,0 +170738051700,268,0 +170738051750,268,0 +170738051798,268,0 +170738051846,268,0 +170738051893,268,0 +170738051941,268,0 +170738051991,268,0 +170738052039,268,0 +170738052086,268,0 +170738052136,268,0 +170738052184,268,0 +170738052233,268,0 +170738052281,268,0 +170738052331,268,0 +170738052378,268,0 +170738052426,268,0 +170738052474,268,0 +170738052522,269,0 +170738052570,268,0 +170738052618,268,0 +170738052666,268,0 +170738052714,268,0 +170738052761,268,0 +170738052811,268,0 +170738052860,268,0 +170738052908,268,0 +170738052956,268,0 +170738053004,268,0 +170738053052,268,0 +170738053100,268,0 +170738053148,268,0 +170738053196,268,0 +170738053244,268,0 +170738053292,268,0 +170738053340,268,0 +170738053387,268,0 +170738053435,268,0 +170738053483,268,0 +170738053531,268,0 +170738053579,268,0 +170738053627,268,0 +170738053675,268,0 +170738053722,268,0 +170738053770,268,0 +170738053820,268,0 +170738053869,268,0 +170738053917,268,0 +170738053965,268,0 +170738054013,268,0 +170738054061,268,0 +170738054108,268,0 +170738054158,268,0 +170738054207,268,0 +170738054255,268,0 +170738054303,269,0 +170738054351,268,0 +170738054399,268,0 +170738054447,268,0 +170738054495,268,0 +170738054542,268,0 +170738054590,268,0 +170738054638,268,0 +170738054686,268,0 +170738054734,268,0 +170738054782,268,0 +170738054831,268,0 +170738054879,268,0 +170738054927,268,0 +170738054975,268,0 +170738055023,268,0 +170738055071,268,0 +170738055119,268,0 +170738055166,268,0 +170738055214,268,0 +170738055262,268,0 +170738055310,268,0 +170738055358,268,0 +170738055406,268,0 +170738055454,268,0 +170738055503,268,0 +170738055551,268,0 +170738055601,268,0 +170738055649,268,0 +170738055698,268,0 +170738055746,268,0 +170738055794,268,0 +170738055842,268,0 +170738055891,268,0 +170738055941,268,0 +170738055989,268,0 +170738056037,268,0 +170738056086,268,0 +170738056134,268,0 +170738056182,268,0 +170738056230,268,0 +170738056279,268,0 +170738056327,268,0 +170738056375,268,0 +170738056423,268,0 +170738056471,268,0 +170738056520,268,0 +170738056568,268,0 +170738056616,268,0 +170738056664,268,0 +170738056712,268,0 +170738056759,268,0 +170738056809,268,0 +170738056857,268,0 +170738056905,268,0 +170738056954,268,0 +170738057002,268,0 +170738057050,268,0 +170738057098,268,0 +170738057146,268,0 +170738057194,268,0 +170738057243,268,0 +170738057292,268,0 +170738057340,268,0 +170738057388,268,0 +170738057438,268,0 +170738057486,268,0 +170738057535,268,0 +170738057583,268,0 +170738057631,268,0 +170738057680,268,0 +170738057730,268,0 +170738057778,268,0 +170738057826,268,0 +170738057874,268,0 +170738057922,268,0 +170738057969,268,0 +170738058017,268,0 +170738058067,268,0 +170738058115,268,0 +170738058163,268,0 +170738058210,268,0 +170738058258,268,0 +170738058306,268,0 +170738058354,268,0 +170738058402,268,0 +170738058450,268,0 +170738058498,268,0 +170738058546,268,0 +170738058593,268,0 +170738058641,268,0 +170738058689,268,0 +170738058737,268,0 +170738058785,268,0 +170738058833,268,0 +170738058881,268,0 +170738058929,268,0 +170738058977,268,0 +170738059026,268,0 +170738059074,268,0 +170738059122,268,0 +170738059171,268,0 +170738059219,268,0 +170738059267,268,0 +170738059316,268,0 +170738059364,268,0 +170738059412,268,0 +170738059460,268,0 +170738059508,268,0 +170738059556,268,0 +170738059604,268,0 +170738059652,268,0 +170738059700,268,0 +170738059747,268,0 +170738059795,268,0 +170738059843,268,0 +170738059891,268,0 +170738059939,268,0 +170738059987,268,0 +170738060035,268,0 +170738060083,268,0 +170738060132,268,0 +170738060180,268,0 +170738060228,268,0 +170738060276,268,0 +170738060324,268,0 +170738060371,268,0 +170738060421,268,0 +170738060470,268,0 +170738060518,268,0 +170738060566,268,0 +170738060614,268,0 +170738060662,268,0 +170738060710,268,0 +170738060758,268,0 +170738060806,268,0 +170738060854,269,0 +170738060902,268,0 +170738060950,268,0 +170738060998,268,0 +170738061046,268,0 +170738061094,268,0 +170738061142,268,0 +170738061190,268,0 +170738061238,268,0 +170738061286,268,0 +170738061335,268,0 +170738061385,268,0 +170738061434,268,0 +170738061484,268,0 +170738061532,268,0 +170738061582,268,0 +170738061630,268,0 +170738061677,268,0 +170738061725,268,0 +170738061773,268,0 +170738061821,268,0 +170738061869,268,0 +170738061919,268,0 +170738061967,268,0 +170738062015,268,0 +170738062063,268,0 +170738062112,268,0 +170738062160,268,0 +170738062210,268,0 +170738062258,268,0 +170738062306,268,0 +170738062354,268,0 +170738062402,268,0 +170738062449,268,0 +170738062499,268,0 +170738062547,268,0 +170738062595,268,0 +170738062643,268,0 +170738062691,268,0 +170738062740,268,0 +170738062788,268,0 +170738062836,268,0 +170738062884,268,0 +170738062934,268,0 +170738062982,268,0 +170738063030,268,0 +170738063078,268,0 +170738063126,268,0 +170738063174,268,0 +170738063222,268,0 +170738063270,268,0 +170738063318,268,0 +170738063366,268,0 +170738063414,268,0 +170738063462,268,0 +170738063510,268,0 +170738063557,268,0 +170738063606,268,0 +170738063653,268,0 +170738063701,268,0 +170738063749,268,0 +170738063797,268,0 +170738063847,268,0 +170738063895,268,0 +170738063944,268,0 +170738063994,268,0 +170738064042,268,0 +170738064090,268,0 +170738064138,268,0 +170738064186,268,0 +170738064234,268,0 +170738064282,268,0 +170738064330,268,0 +170738064378,268,0 +170738064427,268,0 +170738064475,268,0 +170738064525,268,0 +170738064574,268,0 +170738064624,268,0 +170738064672,268,0 +170738064720,268,0 +170738064768,268,0 +170738064816,268,0 +170738064864,268,0 +170738064913,268,0 +170738064961,268,0 +170738065011,268,0 +170738065058,268,0 +170738065108,268,0 +170738065156,268,0 +170738065204,268,0 +170738065252,268,0 +170738065299,268,0 +170738065347,268,0 +170738065395,268,0 +170738065445,268,0 +170738065493,268,0 +170738065541,268,0 +170738065588,268,0 +170738065636,268,0 +170738065684,268,0 +170738065732,268,0 +170738065780,268,0 +170738065829,268,0 +170738065877,268,0 +170738065925,268,0 +170738065973,268,0 +170738066021,268,0 +170738066069,268,0 +170738066117,268,0 +170738066164,268,0 +170738066212,268,0 +170738066260,268,0 +170738066310,268,0 +170738066358,268,0 +170738066406,268,0 +170738066453,268,0 +170738066503,268,0 +170738066553,268,0 +170738066601,268,0 +170738066649,268,0 +170738066696,268,0 +170738066744,268,0 +170738066792,268,0 +170738066840,268,0 +170738066890,268,0 +170738066940,268,0 +170738066988,268,0 +170738067035,268,0 +170738067083,268,0 +170738067131,268,0 +170738067179,268,0 +170738067229,268,0 +170738067277,268,0 +170738067327,268,0 +170738067375,268,0 +170738067422,268,0 +170738067470,268,0 +170738067520,268,0 +170738067568,268,0 +170738067616,268,0 +170738067664,268,0 +170738067713,268,0 +170738067761,268,0 +170738067811,268,0 +170738067860,268,0 +170738067908,268,0 +170738067958,268,0 +170738068006,268,0 +170738068055,268,0 +170738068103,268,0 +170738068151,268,0 +170738068199,268,0 +170738068247,268,0 +170738068295,268,0 +170738068345,268,0 +170738068394,268,0 +170738068444,268,0 +170738068491,268,0 +170738068541,268,0 +170738068589,268,0 +170738068637,268,0 +170738068685,268,0 +170738068734,268,0 +170738068784,268,0 +170738068832,268,0 +170738068880,268,0 +170738068929,268,0 +170738068977,268,0 +170738069026,268,0 +170738069075,268,0 +170738069124,268,0 +170738069172,268,0 +170738069222,268,0 +170738069270,268,0 +170738069318,268,0 +170738069368,268,0 +170738069417,268,0 +170738069465,268,0 +170738069513,268,0 +170738069562,268,0 +170738069610,268,0 +170738069658,268,0 +170738069706,268,0 +170738069756,268,0 +170738069804,268,0 +170738069853,268,0 +170738069901,268,0 +170738069949,268,0 +170738069997,268,0 +170738070045,268,0 +170738070093,268,0 +170738070141,268,0 +170738070191,268,0 +170738070238,268,0 +170738070286,268,0 +170738070334,268,0 +170738070382,268,0 +170738070432,268,0 +170738070480,268,0 +170738070528,268,0 +170738070576,268,0 +170738070624,268,0 +170738070672,268,0 +170738070720,268,0 +170738070768,268,0 +170738070817,268,0 +170738070865,268,0 +170738070913,268,0 +170738070961,268,0 +170738071009,268,0 +170738071057,268,0 +170738071105,268,0 +170738071154,268,0 +170738071202,268,0 +170738071250,268,0 +170738071298,268,0 +170738071346,268,0 +170738071394,268,0 +170738071443,268,0 +170738071493,268,0 +170738071542,268,0 +170738071590,268,0 +170738071638,268,0 +170738071686,268,0 +170738071734,268,0 +170738071782,268,0 +170738071830,268,0 +170738071878,268,0 +170738071926,268,0 +170738071974,268,0 +170738072021,268,0 +170738072069,268,0 +170738072117,268,0 +170738072165,268,0 +170738072213,268,0 +170738072263,268,0 +170738072311,268,0 +170738072360,268,0 +170738072408,268,0 +170738072456,268,0 +170738072504,268,0 +170738072552,268,0 +170738072600,268,0 +170738072648,268,0 +170738072696,268,0 +170738072744,268,0 +170738072792,268,0 +170738072841,268,0 +170738072891,268,0 +170738072939,268,0 +170738072987,268,0 +170738073035,268,0 +170738073083,268,0 +170738073132,268,0 +170738073180,268,0 +170738073228,268,0 +170738073276,268,0 +170738073324,268,0 +170738073372,268,0 +170738073420,268,0 +170738073468,268,0 +170738073518,268,0 +170738073567,268,0 +170738073615,268,0 +170738073663,268,0 +170738073713,268,0 +170738073761,268,0 +170738073809,269,0 +170738073857,268,0 +170738073905,268,0 +170738073954,268,0 +170738074004,268,0 +170738074051,268,0 +170738074099,267,0 +170738074147,268,0 +170738074195,268,0 +170738074245,268,0 +170738074293,268,0 +170738074341,268,0 +170738074389,268,0 +170738074437,268,0 +170738074484,268,0 +170738074532,268,0 +170738074580,268,0 +170738074628,268,0 +170738074676,268,0 +170738074724,268,0 +170738074773,268,0 +170738074821,268,0 +170738074869,268,0 +170738074919,268,0 +170738074967,268,0 +170738075015,268,0 +170738075063,268,0 +170738075111,268,0 +170738075159,268,0 +170738075207,268,0 +170738075255,268,0 +170738075303,268,0 +170738075350,268,0 +170738075398,268,0 +170738075448,268,0 +170738075497,268,0 +170738075547,268,0 +170738075596,268,0 +170738075644,268,0 +170738075692,268,0 +170738075740,268,0 +170738075788,268,0 +170738075836,268,0 +170738075886,268,0 +170738075934,268,0 +170738075982,268,0 +170738076029,268,0 +170738076077,268,0 +170738076125,268,0 +170738076173,268,0 +170738076221,268,0 +170738076269,268,0 +170738076317,268,0 +170738076365,268,0 +170738076415,268,0 +170738076463,268,0 +170738076512,268,0 +170738076560,268,0 +170738076608,268,0 +170738076656,268,0 +170738076704,268,0 +170738076752,268,0 +170738076802,268,0 +170738076849,268,0 +170738076898,268,0 +170738076945,268,0 +170738076993,268,0 +170738077041,268,0 +170738077089,268,0 +170738077139,268,0 +170738077187,268,0 +170738077235,268,0 +170738077284,268,0 +170738077334,268,0 +170738077382,268,0 +170738077431,268,0 +170738077481,268,0 +170738077530,268,0 +170738077580,268,0 +170738077628,268,0 +170738077676,268,0 +170738077724,268,0 +170738077772,268,0 +170738077820,268,0 +170738077868,268,0 +170738077917,268,0 +170738077967,268,0 +170738078015,268,0 +170738078063,268,0 +170738078111,268,0 +170738078159,268,0 +170738078207,268,0 +170738078255,268,0 +170738078303,268,0 +170738078350,268,0 +170738078398,268,0 +170738078446,268,0 +170738078494,268,0 +170738078542,268,0 +170738078590,268,0 +170738078638,268,0 +170738078686,268,0 +170738078734,268,0 +170738078782,268,0 +170738078830,268,0 +170738078878,268,0 +170738078926,268,0 +170738078976,268,0 +170738079023,268,0 +170738079071,268,0 +170738079119,268,0 +170738079167,268,0 +170738079215,268,0 +170738079263,268,0 +170738079311,268,0 +170738079359,268,0 +170738079407,268,0 +170738079455,268,0 +170738079505,268,0 +170738079554,268,0 +170738079602,268,0 +170738079650,268,0 +170738079700,268,0 +170738079748,268,0 +170738079796,268,0 +170738079845,269,0 +170738079893,268,0 +170738079941,268,0 +170738079989,268,0 +170738080039,268,0 +170738080088,268,0 +170738080136,268,0 +170738080186,268,0 +170738080234,268,0 +170738080282,268,0 +170738080330,268,0 +170738080379,268,0 +170738080427,268,0 +170738080475,268,0 +170738080524,268,0 +170738080572,268,0 +170738080622,268,0 +170738080670,268,0 +170738080718,268,0 +170738080766,268,0 +170738080814,268,0 +170738080862,268,0 +170738080911,268,0 +170738080960,268,0 +170738081008,268,0 +170738081056,268,0 +170738081104,268,0 +170738081152,268,0 +170738081200,269,0 +170738081248,268,0 +170738081296,268,0 +170738081343,268,0 +170738081391,268,0 +170738081439,268,0 +170738081489,268,0 +170738081537,268,0 +170738081584,268,0 +170738081632,268,0 +170738081682,268,0 +170738081730,268,0 +170738081778,268,0 +170738081826,268,0 +170738081874,268,0 +170738081921,268,0 +170738081969,268,0 +170738082017,268,0 +170738082065,268,0 +170738082114,268,0 +170738082162,268,0 +170738082212,268,0 +170738082260,268,0 +170738082308,268,0 +170738082355,268,0 +170738082403,268,0 +170738082451,268,0 +170738082499,268,0 +170738082547,268,0 +170738082595,268,0 +170738082643,268,0 +170738082692,268,0 +170738082740,268,0 +170738082788,268,0 +170738082836,268,0 +170738082884,268,0 +170738082932,268,0 +170738082980,268,0 +170738083028,268,0 +170738083076,268,0 +170738083124,268,0 +170738083172,268,0 +170738083222,268,0 +170738083271,268,0 +170738083321,268,0 +170738083369,268,0 +170738083417,268,0 +170738083465,268,0 +170738083513,268,0 +170738083561,268,0 +170738083609,268,0 +170738083656,268,0 +170738083704,268,0 +170738083752,268,0 +170738083800,268,0 +170738083848,268,0 +170738083898,268,0 +170738083947,268,0 +170738083995,268,0 +170738084045,268,0 +170738084094,268,0 +170738084144,268,0 +170738084193,268,0 +170738084243,268,0 +170738084291,268,0 +170738084339,268,0 +170738084387,268,0 +170738084435,268,0 +170738084484,268,0 +170738084532,268,0 +170738084580,268,0 +170738084628,268,0 +170738084676,268,0 +170738084726,268,0 +170738084774,268,0 +170738084821,268,0 +170738084871,268,0 +170738084919,268,0 +170738084967,268,0 +170738085015,268,0 +170738085063,268,0 +170738085112,268,0 +170738085160,268,0 +170738085208,268,0 +170738085256,268,0 +170738085305,268,0 +170738085355,268,0 +170738085403,268,0 +170738085450,268,0 +170738085498,268,0 +170738085546,268,0 +170738085594,268,0 +170738085642,268,0 +170738085690,268,0 +170738085738,268,0 +170738085785,268,0 +170738085833,268,0 +170738085881,268,0 +170738085929,268,0 +170738085977,268,0 +170738086026,268,0 +170738086074,268,0 +170738086122,268,0 +170738086170,268,0 +170738086218,268,0 +170738086266,268,0 +170738086314,268,0 +170738086363,268,0 +170738086411,268,0 +170738086459,268,0 +170738086507,268,0 +170738086555,268,0 +170738086603,268,0 +170738086651,268,0 +170738086698,268,0 +170738086746,268,0 +170738086794,268,0 +170738086842,268,0 +170738086890,268,0 +170738086940,268,0 +170738086987,268,0 +170738087035,268,0 +170738087083,268,0 +170738087131,268,0 +170738087179,268,0 +170738087227,268,0 +170738087275,268,0 +170738087323,268,0 +170738087370,268,0 +170738087418,268,0 +170738087466,268,0 +170738087516,268,0 +170738087564,268,0 +170738087613,268,0 +170738087663,268,0 +170738087711,268,0 +170738087758,268,0 +170738087808,268,0 +170738087856,268,0 +170738087904,268,0 +170738087952,268,0 +170738088001,268,0 +170738088051,268,0 +170738088099,267,0 +170738088147,268,0 +170738088196,268,0 +170738088244,268,0 +170738088294,268,0 +170738088342,268,0 +170738088391,268,0 +170738088439,268,0 +170738088489,268,0 +170738088537,268,0 +170738088585,268,0 +170738088633,268,0 +170738088682,268,0 +170738088730,268,0 +170738088778,268,0 +170738088826,268,0 +170738088874,268,0 +170738088922,268,0 +170738088970,268,0 +170738089018,268,0 +170738089067,268,0 +170738089115,268,0 +170738089165,268,0 +170738089213,268,0 +170738089262,268,0 +170738089310,268,0 +170738089358,268,0 +170738089408,268,0 +170738089457,268,0 +170738089507,268,0 +170738089555,268,0 +170738089603,268,0 +170738089652,268,0 +170738089700,268,0 +170738089750,269,0 +170738089799,268,0 +170738089847,268,0 +170738089897,268,0 +170738089945,268,0 +170738089993,268,0 +170738090041,268,0 +170738090089,268,0 +170738090137,268,0 +170738090186,268,0 +170738090236,268,0 +170738090285,268,0 +170738090335,268,0 +170738090383,268,0 +170738090431,268,0 +170738090479,268,0 +170738090527,268,0 +170738090576,268,0 +170738090624,268,0 +170738090672,268,0 +170738090722,268,0 +170738090771,268,0 +170738090819,268,0 +170738090867,268,0 +170738090917,268,0 +170738090966,268,0 +170738091014,268,0 +170738091064,268,0 +170738091112,268,0 +170738091160,268,0 +170738091208,268,0 +170738091256,268,0 +170738091305,268,0 +170738091353,268,0 +170738091401,268,0 +170738091449,268,0 +170738091497,268,0 +170738091545,268,0 +170738091593,268,0 +170738091641,268,0 +170738091690,268,0 +170738091738,268,0 +170738091786,268,0 +170738091836,268,0 +170738091884,268,0 +170738091933,268,0 +170738091983,268,0 +170738092031,268,0 +170738092079,268,0 +170738092126,268,0 +170738092174,268,0 +170738092222,268,0 +170738092270,268,0 +170738092318,268,0 +170738092366,268,0 +170738092414,268,0 +170738092462,268,0 +170738092510,268,0 +170738092558,268,0 +170738092607,268,0 +170738092655,268,0 +170738092703,268,0 +170738092751,268,0 +170738092799,268,0 +170738092848,268,0 +170738092896,268,0 +170738092946,268,0 +170738092994,268,0 +170738093042,268,0 +170738093090,268,0 +170738093138,268,0 +170738093186,268,0 +170738093234,268,0 +170738093282,268,0 +170738093332,268,0 +170738093380,268,0 +170738093427,268,0 +170738093475,268,0 +170738093523,268,0 +170738093571,268,0 +170738093619,268,0 +170738093667,268,0 +170738093715,268,0 +170738093763,268,0 +170738093811,268,0 +170738093861,268,0 +170738093910,268,0 +170738093958,268,0 +170738094008,268,0 +170738094057,268,0 +170738094105,268,0 +170738094153,268,0 +170738094201,268,0 +170738094249,268,0 +170738094297,268,0 +170738094344,268,0 +170738094392,268,0 +170738094442,268,0 +170738094490,268,0 +170738094538,268,0 +170738094585,268,0 +170738094633,268,0 +170738094681,268,0 +170738094731,268,0 +170738094780,268,0 +170738094828,268,0 +170738094876,268,0 +170738094924,268,0 +170738094972,268,0 +170738095020,268,0 +170738095068,268,0 +170738095116,268,0 +170738095165,268,0 +170738095213,268,0 +170738095261,268,0 +170738095309,268,0 +170738095357,268,0 +170738095405,268,0 +170738095453,268,0 +170738095503,268,0 +170738095551,268,0 +170738095599,268,0 +170738095647,268,0 +170738095695,268,0 +170738095743,268,0 +170738095790,268,0 +170738095838,268,0 +170738095886,268,0 +170738095936,268,0 +170738095984,268,0 +170738096032,268,0 +170738096080,268,0 +170738096128,268,0 +170738096176,268,0 +170738096224,268,0 +170738096273,268,0 +170738096323,268,0 +170738096372,268,0 +170738096420,268,0 +170738096468,268,0 +170738096516,268,0 +170738096566,268,0 +170738096615,268,0 +170738096663,268,0 +170738096712,268,0 +170738096760,268,0 +170738096808,268,0 +170738096856,268,0 +170738096904,268,0 +170738096952,268,0 +170738097000,268,0 +170738097048,268,0 +170738097096,268,0 +170738097146,268,0 +170738097195,268,0 +170738097243,268,0 +170738097291,268,0 +170738097341,268,0 +170738097389,268,0 +170738097437,268,0 +170738097486,268,0 +170738097536,268,0 +170738097585,268,0 +170738097633,268,0 +170738097681,268,0 +170738097729,268,0 +170738097779,268,0 +170738097827,268,0 +170738097875,268,0 +170738097923,268,0 +170738097972,268,0 +170738098020,268,0 +170738098070,268,0 +170738098119,268,0 +170738098167,268,0 +170738098215,268,0 +170738098263,268,0 +170738098311,268,0 +170738098359,268,0 +170738098409,269,0 +170738098457,268,0 +170738098505,268,0 +170738098553,268,0 +170738098602,268,0 +170738098650,268,0 +170738098698,268,0 +170738098747,268,0 +170738098797,268,0 +170738098845,268,0 +170738098893,268,0 +170738098942,268,0 +170738098990,268,0 +170738099038,268,0 +170738099086,268,0 +170738099134,268,0 +170738099183,268,0 +170738099231,268,0 +170738099279,268,0 +170738099329,268,0 +170738099378,268,0 +170738099426,268,0 +170738099474,268,0 +170738099524,268,0 +170738099573,268,0 +170738099621,268,0 +170738099669,268,0 +170738099717,268,0 +170738099765,268,0 +170738099813,268,0 +170738099861,268,0 +170738099909,268,0 +170738099957,268,0 +170738100005,268,0 +170738100054,268,0 +170738100102,268,0 +170738100150,268,0 +170738100198,268,0 +170738100248,268,0 +170738100296,268,0 +170738100345,268,0 +170738100395,268,0 +170738100444,268,0 +170738100494,268,0 +170738100542,268,0 +170738100590,268,0 +170738100637,268,0 +170738100685,268,0 +170738100733,268,0 +170738100781,268,0 +170738100829,268,0 +170738100877,268,0 +170738100927,268,0 +170738100976,268,0 +170738101024,268,0 +170738101074,268,0 +170738101123,268,0 +170738101171,268,0 +170738101219,268,0 +170738101269,268,0 +170738101317,268,0 +170738101365,268,0 +170738101412,268,0 +170738101460,268,0 +170738101508,268,0 +170738101556,268,0 +170738101604,268,0 +170738101653,268,0 +170738101701,268,0 +170738101749,268,0 +170738101797,268,0 +170738101845,268,0 +170738101893,268,0 +170738101941,268,0 +170738101989,268,0 +170738102036,268,0 +170738102086,268,0 +170738102134,268,0 +170738102182,268,0 +170738102231,268,0 +170738102279,268,0 +170738102327,268,0 +170738102375,268,0 +170738102425,268,0 +170738102473,268,0 +170738102521,268,0 +170738102570,268,0 +170738102620,268,0 +170738102668,268,0 +170738102717,268,0 +170738102765,268,0 +170738102813,268,0 +170738102861,268,0 +170738102909,268,0 +170738102957,268,0 +170738103007,268,0 +170738103054,268,0 +170738103102,268,0 +170738103150,268,0 +170738103198,268,0 +170738103248,268,0 +170738103296,268,0 +170738103345,268,0 +170738103393,268,0 +170738103441,268,0 +170738103489,268,0 +170738103539,268,0 +170738103588,268,0 +170738103636,268,0 +170738103684,268,0 +170738103732,268,0 +170738103780,268,0 +170738103828,268,0 +170738103876,268,0 +170738103924,268,0 +170738103974,268,0 +170738104022,268,0 +170738104071,268,0 +170738104119,268,0 +170738104167,268,0 +170738104215,268,0 +170738104265,268,0 +170738104313,268,0 +170738104360,268,0 +170738104410,268,0 +170738104458,268,0 +170738104506,268,0 +170738104555,268,0 +170738104603,268,0 +170738104651,268,0 +170738104699,268,0 +170738104748,268,0 +170738104796,268,0 +170738104846,268,0 +170738104894,268,0 +170738104942,268,0 +170738104991,268,0 +170738105039,268,0 +170738105087,268,0 +170738105135,268,0 +170738105183,268,0 +170738105232,268,0 +170738105280,268,0 +170738105328,268,0 +170738105378,268,0 +170738105426,268,0 +170738105473,268,0 +170738105521,268,0 +170738105569,268,0 +170738105617,268,0 +170738105665,268,0 +170738105713,268,0 +170738105762,268,0 +170738105810,268,0 +170738105858,268,0 +170738105906,268,0 +170738105954,268,0 +170738106002,268,0 +170738106051,268,0 +170738106099,268,0 +170738106147,268,0 +170738106195,268,0 +170738106245,268,0 +170738106293,268,0 +170738106341,268,0 +170738106389,268,0 +170738106437,268,0 +170738106485,268,0 +170738106533,268,0 +170738106582,268,0 +170738106630,268,0 +170738106678,268,0 +170738106727,268,0 +170738106775,268,0 +170738106823,268,0 +170738106873,268,0 +170738106921,268,0 +170738106968,268,0 +170738107016,268,0 +170738107064,268,0 +170738107114,268,0 +170738107162,268,0 +170738107209,268,0 +170738107260,268,0 +170738107308,268,0 +170738107356,268,0 +170738107405,268,0 +170738107453,268,0 +170738107502,268,0 +170738107550,268,0 +170738107598,268,0 +170738107646,268,0 +170738107694,268,0 +170738107742,268,0 +170738107790,268,0 +170738107840,268,0 +170738107887,268,0 +170738107935,268,0 +170738107983,268,0 +170738108031,268,0 +170738108079,268,0 +170738108127,268,0 +170738108175,268,0 +170738108223,268,0 +170738108270,268,0 +170738108318,268,0 +170738108366,268,0 +170738108414,268,0 +170738108464,268,0 +170738108513,268,0 +170738108561,268,0 +170738108609,268,0 +170738108657,268,0 +170738108706,268,0 +170738108754,268,0 +170738108802,268,0 +170738108850,268,0 +170738108898,268,0 +170738108946,268,0 +170738108994,268,0 +170738109042,268,0 +170738109090,268,0 +170738109138,268,0 +170738109186,268,0 +170738109235,268,0 +170738109283,268,0 +170738109331,268,0 +170738109379,268,0 +170738109427,268,0 +170738109477,268,0 +170738109525,268,0 +170738109572,268,0 +170738109620,268,0 +170738109670,268,0 +170738109719,268,0 +170738109767,268,0 +170738109817,268,0 +170738109866,268,0 +170738109915,268,0 +170738109963,268,0 +170738110011,268,0 +170738110061,268,0 +170738110109,268,0 +170738110156,268,0 +170738110204,268,0 +170738110252,268,0 +170738110300,268,0 +170738110350,268,0 +170738110398,268,0 +170738110446,268,0 +170738110494,268,0 +170738110542,268,0 +170738110590,268,0 +170738110638,268,0 +170738110687,268,0 +170738110735,268,0 +170738110783,268,0 +170738110831,268,0 +170738110879,268,0 +170738110927,268,0 +170738110975,268,0 +170738111022,268,0 +170738111072,268,0 +170738111120,268,0 +170738111168,268,0 +170738111216,268,0 +170738111263,268,0 +170738111311,268,0 +170738111359,268,0 +170738111407,268,0 +170738111455,268,0 +170738111504,268,0 +170738111552,268,0 +170738111600,268,0 +170738111648,268,0 +170738111696,268,0 +170738111744,268,0 +170738111792,268,0 +170738111840,268,0 +170738111889,268,0 +170738111939,268,0 +170738111987,268,0 +170738112035,268,0 +170738112083,268,0 +170738112131,268,0 +170738112179,268,0 +170738112227,268,0 +170738112276,268,0 +170738112326,268,0 +170738112374,268,0 +170738112422,268,0 +170738112470,268,0 +170738112518,268,0 +170738112566,268,0 +170738112614,268,0 +170738112662,268,0 +170738112709,268,0 +170738112757,268,0 +170738112805,268,0 +170738112853,268,0 +170738112903,268,0 +170738112951,268,0 +170738112999,268,0 +170738113048,268,0 +170738113096,268,0 +170738113144,268,0 +170738113192,268,0 +170738113240,268,0 +170738113290,268,0 +170738113337,268,0 +170738113385,268,0 +170738113433,268,0 +170738113481,268,0 +170738113529,268,0 +170738113577,268,0 +170738113627,268,0 +170738113676,268,0 +170738113724,268,0 +170738113772,268,0 +170738113820,268,0 +170738113870,268,0 +170738113918,268,0 +170738113966,268,0 +170738114015,268,0 +170738114063,268,0 +170738114111,268,0 +170738114161,268,0 +170738114210,268,0 +170738114258,268,0 +170738114306,268,0 +170738114354,268,0 +170738114402,268,0 +170738114450,268,0 +170738114498,268,0 +170738114546,268,0 +170738114594,268,0 +170738114642,268,0 +170738114692,268,0 +170738114740,268,0 +170738114789,268,0 +170738114837,268,0 +170738114887,268,0 +170738114936,268,0 +170738114984,268,0 +170738115032,268,0 +170738115080,268,0 +170738115128,268,0 +170738115176,268,0 +170738115223,268,0 +170738115271,268,0 +170738115319,268,0 +170738115369,268,0 +170738115418,268,0 +170738115466,268,0 +170738115514,268,0 +170738115562,268,0 +170738115610,268,0 +170738115658,268,0 +170738115708,268,0 +170738115756,268,0 +170738115804,268,0 +170738115852,268,0 +170738115901,268,0 +170738115949,268,0 +170738115997,268,0 +170738116045,268,0 +170738116093,268,0 +170738116142,268,0 +170738116192,268,0 +170738116240,268,0 +170738116288,268,0 +170738116337,268,0 +170738116387,268,0 +170738116437,268,0 +170738116485,268,0 +170738116532,268,0 +170738116582,268,0 +170738116630,268,0 +170738116678,268,0 +170738116727,268,0 +170738116777,268,0 +170738116825,268,0 +170738116873,268,0 +170738116922,268,0 +170738116970,268,0 +170738117018,268,0 +170738117066,268,0 +170738117114,268,0 +170738117162,268,0 +170738117210,268,0 +170738117258,268,0 +170738117306,268,0 +170738117354,268,0 +170738117402,268,0 +170738117450,268,0 +170738117498,268,0 +170738117546,268,0 +170738117595,268,0 +170738117645,268,0 +170738117693,268,0 +170738117741,268,0 +170738117789,268,0 +170738117837,268,0 +170738117885,268,0 +170738117934,268,0 +170738117982,268,0 +170738118030,268,0 +170738118080,268,0 +170738118128,268,0 +170738118177,268,0 +170738118225,268,0 +170738118275,268,0 +170738118323,268,0 +170738118371,268,0 +170738118419,268,0 +170738118467,268,0 +170738118515,268,0 +170738118563,268,0 +170738118611,268,0 +170738118659,268,0 +170738118707,268,0 +170738118755,268,0 +170738118802,268,0 +170738118850,268,0 +170738118898,268,0 +170738118946,268,0 +170738118994,268,0 +170738119042,268,0 +170738119091,268,0 +170738119141,268,0 +170738119189,268,0 +170738119237,268,0 +170738119286,268,0 +170738119336,268,0 +170738119384,268,0 +170738119431,268,0 +170738119481,268,0 +170738119529,268,0 +170738119577,268,0 +170738119625,268,0 +170738119673,268,0 +170738119720,268,0 +170738119768,268,0 +170738119816,268,0 +170738119864,268,0 +170738119912,268,0 +170738119960,268,0 +170738120009,268,0 +170738120059,268,0 +170738120108,268,0 +170738120156,268,0 +170738120205,268,0 +170738120253,268,0 +170738120301,268,0 +170738120351,268,0 +170738120399,268,0 +170738120448,268,0 +170738120496,268,0 +170738120546,268,0 +170738120594,268,0 +170738120642,268,0 +170738120690,268,0 +170738120738,268,0 +170738120787,268,0 +170738120835,268,0 +170738120885,268,0 +170738120933,268,0 +170738120982,268,0 +170738121030,268,0 +170738121078,268,0 +170738121126,268,0 +170738121174,268,0 +170738121222,268,0 +170738121270,268,0 +170738121320,268,0 +170738121369,268,0 +170738121417,268,0 +170738121465,268,0 +170738121513,268,0 +170738121561,268,0 +170738121609,268,0 +170738121657,268,0 +170738121705,268,0 +170738121753,268,0 +170738121803,268,0 +170738121852,268,0 +170738121900,268,0 +170738121948,268,0 +170738121997,268,0 +170738122045,268,0 +170738122093,268,0 +170738122141,268,0 +170738122189,268,0 +170738122237,268,0 +170738122285,268,0 +170738122333,268,0 +170738122381,268,0 +170738122429,268,0 +170738122477,268,0 +170738122525,268,0 +170738122573,268,0 +170738122621,268,0 +170738122670,268,0 +170738122718,268,0 +170738122768,268,0 +170738122817,268,0 +170738122865,268,0 +170738122915,268,0 +170738122963,268,0 +170738123011,268,0 +170738123060,268,0 +170738123108,268,0 +170738123156,268,0 +170738123204,268,0 +170738123252,268,0 +170738123300,268,0 +170738123348,268,0 +170738123396,268,0 +170738123444,268,0 +170738123492,268,0 +170738123540,267,0 +170738123588,268,0 +170738123636,268,0 +170738123685,268,0 +170738123735,268,0 +170738123783,268,0 +170738123831,268,0 +170738123879,268,0 +170738123927,268,0 +170738123975,268,0 +170738124023,268,0 +170738124072,268,0 +170738124120,268,0 +170738124168,268,0 +170738124218,268,0 +170738124267,268,0 +170738124317,267,0 +170738124366,268,0 +170738124416,268,0 +170738124465,267,0 +170738124515,268,0 +170738124563,268,0 +170738124611,268,0 +170738124660,268,0 +170738124710,268,0 +170738124759,268,0 +170738124809,268,0 +170738124857,268,0 +170738124905,268,0 +170738124955,268,0 +170738125002,268,0 +170738125050,268,0 +170738125098,268,0 +170738125148,268,0 +170738125196,268,0 +170738125244,268,0 +170738125292,268,0 +170738125340,268,0 +170738125388,268,0 +170738125436,268,0 +170738125484,268,0 +170738125532,268,0 +170738125579,268,0 +170738125627,268,0 +170738125675,268,0 +170738125725,268,0 +170738125773,267,0 +170738125822,268,0 +170738125870,267,0 +170738125918,268,0 +170738125966,268,0 +170738126014,268,0 +170738126062,268,0 +170738126112,268,0 +170738126161,268,0 +170738126209,268,0 +170738126257,268,0 +170738126307,268,0 +170738126355,268,0 +170738126403,268,0 +170738126451,268,0 +170738126500,268,0 +170738126550,268,0 +170738126599,268,0 +170738126647,268,0 +170738126695,268,0 +170738126743,268,0 +170738126791,268,0 +170738126841,268,0 +170738126889,268,0 +170738126938,268,0 +170738126986,268,0 +170738127036,268,0 +170738127084,268,0 +170738127133,268,0 +170738127181,268,0 +170738127229,268,0 +170738127277,268,0 +170738127325,268,0 +170738127373,268,0 +170738127423,268,0 +170738127471,268,0 +170738127518,268,0 +170738127566,268,0 +170738127614,268,0 +170738127664,268,0 +170738127714,268,0 +170738127761,268,0 +170738127809,268,0 +170738127857,268,0 +170738127905,268,0 +170738127955,268,0 +170738128003,268,0 +170738128051,268,0 +170738128099,268,0 +170738128147,268,0 +170738128196,267,0 +170738128244,268,0 +170738128292,268,0 +170738128340,268,0 +170738128388,268,0 +170738128436,268,0 +170738128486,268,0 +170738128535,268,0 +170738128585,268,0 +170738128633,267,0 +170738128682,268,0 +170738128730,268,0 +170738128778,268,0 +170738128826,268,0 +170738128876,268,0 +170738128925,268,0 +170738128973,268,0 +170738129021,268,0 +170738129069,268,0 +170738129117,268,0 +170738129166,268,0 +170738129214,268,0 +170738129262,268,0 +170738129310,268,0 +170738129358,268,0 +170738129408,268,0 +170738129456,268,0 +170738129504,268,0 +170738129553,268,0 +170738129601,268,0 +170738129649,268,0 +170738129697,268,0 +170738129745,268,0 +170738129793,268,0 +170738129840,268,0 +170738129890,268,0 +170738129938,268,0 +170738129986,268,0 +170738130033,268,0 +170738130083,268,0 +170738130133,268,0 +170738130181,268,0 +170738130228,267,0 +170738130276,268,0 +170738130324,268,0 +170738130372,268,0 +170738130420,268,0 +170738130468,268,0 +170738130516,268,0 +170738130566,268,0 +170738130615,267,0 +170738130663,268,0 +170738130711,268,0 +170738130759,268,0 +170738130807,268,0 +170738130855,268,0 +170738130903,268,0 +170738130951,268,0 +170738130999,268,0 +170738131047,268,0 +170738131095,268,0 +170738131143,268,0 +170738131191,268,0 +170738131239,268,0 +170738131288,268,0 +170738131338,268,0 +170738131387,268,0 +170738131435,268,0 +170738131483,268,0 +170738131531,268,0 +170738131579,268,0 +170738131627,267,0 +170738131675,268,0 +170738131725,268,0 +170738131774,268,0 +170738131822,268,0 +170738131870,268,0 +170738131918,267,0 +170738131968,268,0 +170738132016,268,0 +170738132065,268,0 +170738132113,268,0 +170738132161,268,0 +170738132209,268,0 +170738132257,268,0 +170738132305,268,0 +170738132353,268,0 +170738132402,268,0 +170738132450,267,0 +170738132500,268,0 +170738132548,268,0 +170738132596,268,0 +170738132644,268,0 +170738132693,268,0 +170738132743,268,0 +170738132792,268,0 +170738132840,268,0 +170738132888,268,0 +170738132936,268,0 +170738132984,268,0 +170738133032,268,0 +170738133080,268,0 +170738133128,268,0 +170738133176,268,0 +170738133224,268,0 +170738133272,268,0 +170738133320,268,0 +170738133369,268,0 +170738133417,268,0 +170738133467,268,0 +170738133515,268,0 +170738133562,268,0 +170738133610,268,0 +170738133658,268,0 +170738133706,268,0 +170738133754,268,0 +170738133804,268,0 +170738133853,268,0 +170738133901,268,0 +170738133949,268,0 +170738133997,268,0 +170738134045,268,0 +170738134095,268,0 +170738134143,268,0 +170738134192,268,0 +170738134240,268,0 +170738134288,268,0 +170738134336,268,0 +170738134384,268,0 +170738134432,268,0 +170738134480,268,0 +170738134528,268,0 +170738134576,268,0 +170738134624,268,0 +170738134672,268,0 +170738134720,268,0 +170738134769,268,0 +170738134817,268,0 +170738134865,268,0 +170738134913,267,0 +170738134963,268,0 +170738135012,268,0 +170738135060,267,0 +170738135108,267,0 +170738135156,268,0 +170738135204,268,0 +170738135254,268,0 +170738135303,268,0 +170738135353,268,0 +170738135402,268,0 +170738135450,268,0 +170738135500,268,0 +170738135548,268,0 +170738135596,268,0 +170738135644,268,0 +170738135693,268,0 +170738135741,268,0 +170738135789,268,0 +170738135837,268,0 +170738135885,268,0 +170738135933,268,0 +170738135983,268,0 +170738136031,268,0 +170738136078,268,0 +170738136126,268,0 +170738136174,268,0 +170738136222,268,0 +170738136272,268,0 +170738136320,268,0 +170738136368,268,0 +170738136416,268,0 +170738136465,268,0 +170738136515,268,0 +170738136563,268,0 +170738136612,268,0 +170738136660,268,0 +170738136708,268,0 +170738136756,268,0 +170738136804,268,0 +170738136852,268,0 +170738136900,268,0 +170738136950,268,0 +170738136998,268,0 +170738137046,268,0 +170738137094,268,0 +170738137143,268,0 +170738137191,268,0 +170738137239,268,0 +170738137288,268,0 +170738137336,268,0 +170738137386,268,0 +170738137434,268,0 +170738137482,268,0 +170738137530,268,0 +170738137578,268,0 +170738137626,268,0 +170738137674,268,0 +170738137721,268,0 +170738137769,268,0 +170738137817,268,0 +170738137866,268,0 +170738137914,268,0 +170738137962,268,0 +170738138012,268,0 +170738138061,268,0 +170738138109,268,0 +170738138157,268,0 +170738138205,268,0 +170738138253,268,0 +170738138301,268,0 +170738138348,268,0 +170738138396,268,0 +170738138444,268,0 +170738138492,268,0 +170738138542,268,0 +170738138591,268,0 +170738138639,268,0 +170738138689,268,0 +170738138737,268,0 +170738138784,268,0 +170738138832,268,0 +170738138882,268,0 +170738138930,268,0 +170738138979,268,0 +170738139029,268,0 +170738139078,268,0 +170738139128,268,0 +170738139177,268,0 +170738139225,268,0 +170738139273,268,0 +170738139321,268,0 +170738139369,268,0 +170738139418,268,0 +170738139468,268,0 +170738139516,268,0 +170738139564,268,0 +170738139613,268,0 +170738139663,268,0 +170738139713,268,0 +170738139760,268,0 +170738139808,268,0 +170738139856,268,0 +170738139906,268,0 +170738139954,268,0 +170738140003,268,0 +170738140051,268,0 +170738140099,268,0 +170738140147,268,0 +170738140197,268,0 +170738140245,268,0 +170738140293,268,0 +170738140341,268,0 +170738140390,268,0 +170738140440,268,0 +170738140488,268,0 +170738140536,268,0 +170738140583,268,0 +170738140631,268,0 +170738140681,268,0 +170738140730,268,0 +170738140778,268,0 +170738140826,268,0 +170738140874,268,0 +170738140922,268,0 +170738140972,268,0 +170738141020,268,0 +170738141068,268,0 +170738141116,268,0 +170738141164,268,0 +170738141212,268,0 +170738141260,268,0 +170738141308,268,0 +170738141356,268,0 +170738141404,268,0 +170738141453,268,0 +170738141501,268,0 +170738141550,268,0 +170738141598,268,0 +170738141648,268,0 +170738141696,268,0 +170738141745,268,0 +170738141793,268,0 +170738141841,268,0 +170738141889,268,0 +170738141937,268,0 +170738141985,268,0 +170738142033,268,0 +170738142081,268,0 +170738142129,268,0 +170738142177,268,0 +170738142225,268,0 +170738142273,268,0 +170738142321,268,0 +170738142370,268,0 +170738142418,268,0 +170738142466,268,0 +170738142516,268,0 +170738142564,268,0 +170738142612,268,0 +170738142660,268,0 +170738142708,268,0 +170738142756,268,0 +170738142805,268,0 +170738142853,268,0 +170738142901,268,0 +170738142951,268,0 +170738143000,268,0 +170738143050,268,0 +170738143099,267,0 +170738143147,268,0 +170738143195,268,0 +170738143245,268,0 +170738143293,268,0 +170738143341,268,0 +170738143390,268,0 +170738143438,268,0 +170738143486,268,0 +170738143534,268,0 +170738143582,268,0 +170738143630,268,0 +170738143678,268,0 +170738143726,268,0 +170738143775,268,0 +170738143823,268,0 +170738143871,268,0 +170738143919,268,0 +170738143967,268,0 +170738144015,268,0 +170738144065,268,0 +170738144114,268,0 +170738144164,268,0 +170738144213,268,0 +170738144261,268,0 +170738144311,268,0 +170738144359,268,0 +170738144407,268,0 +170738144456,268,0 +170738144506,268,0 +170738144554,268,0 +170738144602,268,0 +170738144650,267,0 +170738144698,268,0 +170738144746,268,0 +170738144794,268,0 +170738144842,268,0 +170738144890,268,0 +170738144939,268,0 +170738144987,268,0 +170738145035,268,0 +170738145084,268,0 +170738145132,268,0 +170738145180,268,0 +170738145228,268,0 +170738145278,268,0 +170738145327,268,0 +170738145377,268,0 +170738145425,268,0 +170738145473,268,0 +170738145523,268,0 +170738145570,268,0 +170738145618,268,0 +170738145666,268,0 +170738145714,268,0 +170738145762,268,0 +170738145812,268,0 +170738145860,268,0 +170738145908,268,0 +170738145957,268,0 +170738146006,268,0 +170738146054,268,0 +170738146102,268,0 +170738146151,268,0 +170738146201,268,0 +170738146249,268,0 +170738146297,268,0 +170738146346,268,0 +170738146396,268,0 +170738146444,268,0 +170738146492,268,0 +170738146540,268,0 +170738146589,268,0 +170738146637,268,0 +170738146685,268,0 +170738146733,268,0 +170738146783,268,0 +170738146832,268,0 +170738146880,268,0 +170738146928,268,0 +170738146976,268,0 +170738147024,268,0 +170738147074,268,0 +170738147122,268,0 +170738147170,268,0 +170738147218,268,0 +170738147266,268,0 +170738147314,268,0 +170738147362,268,0 +170738147411,268,0 +170738147459,268,0 +170738147507,268,0 +170738147555,268,0 +170738147603,268,0 +170738147651,268,0 +170738147699,268,0 +170738147747,268,0 +170738147795,268,0 +170738147844,268,0 +170738147892,268,0 +170738147940,268,0 +170738147988,268,0 +170738148036,268,0 +170738148084,268,0 +170738148133,268,0 +170738148181,268,0 +170738148231,268,0 +170738148280,268,0 +170738148330,268,0 +170738148378,268,0 +170738148426,268,0 +170738148474,267,0 +170738148522,268,0 +170738148570,268,0 +170738148618,268,0 +170738148667,268,0 +170738148715,267,0 +170738148763,268,0 +170738148811,268,0 +170738148861,268,0 +170738148909,268,0 +170738148957,268,0 +170738149005,268,0 +170738149054,268,0 +170738149103,268,0 +170738149153,268,0 +170738149201,267,0 +170738149251,268,0 +170738149299,268,0 +170738149348,268,0 +170738149396,268,0 +170738149446,268,0 +170738149495,268,0 +170738149545,268,0 +170738149593,268,0 +170738149640,268,0 +170738149688,268,0 +170738149736,268,0 +170738149786,268,0 +170738149834,268,0 +170738149883,268,0 +170738149933,268,0 +170738149981,268,0 +170738150031,268,0 +170738150078,268,0 +170738150126,268,0 +170738150176,268,0 +170738150224,268,0 +170738150272,268,0 +170738150320,268,0 +170738150368,268,0 +170738150416,268,0 +170738150466,268,0 +170738150513,268,0 +170738150563,268,0 +170738150611,268,0 +170738150661,268,0 +170738150708,268,0 +170738150756,268,0 +170738150804,268,0 +170738150852,268,0 +170738150900,268,0 +170738150948,268,0 +170738150996,268,0 +170738151046,268,0 +170738151095,268,0 +170738151143,268,0 +170738151191,268,0 +170738151239,268,0 +170738151287,268,0 +170738151335,268,0 +170738151383,268,0 +170738151433,268,0 +170738151481,268,0 +170738151529,268,0 +170738151577,268,0 +170738151625,268,0 +170738151673,268,0 +170738151721,268,0 +170738151770,268,0 +170738151818,268,0 +170738151866,268,0 +170738151914,268,0 +170738151962,267,0 +170738152012,268,0 +170738152060,268,0 +170738152108,268,0 +170738152156,268,0 +170738152204,268,0 +170738152252,268,0 +170738152299,268,0 +170738152349,268,0 +170738152399,268,0 +170738152448,268,0 +170738152498,268,0 +170738152546,268,0 +170738152593,268,0 +170738152641,268,0 +170738152689,268,0 +170738152739,268,0 +170738152787,268,0 +170738152835,268,0 +170738152884,268,0 +170738152932,268,0 +170738152980,268,0 +170738153028,268,0 +170738153076,268,0 +170738153125,268,0 +170738153173,268,0 +170738153223,268,0 +170738153271,268,0 +170738153319,268,0 +170738153366,268,0 +170738153414,268,0 +170738153462,268,0 +170738153510,268,0 +170738153560,268,0 +170738153607,268,0 +170738153657,268,0 +170738153705,268,0 +170738153753,268,0 +170738153802,268,0 +170738153850,268,0 +170738153898,268,0 +170738153948,268,0 +170738153997,268,0 +170738154045,268,0 +170738154095,268,0 +170738154143,268,0 +170738154192,268,0 +170738154242,268,0 +170738154291,268,0 +170738154339,268,0 +170738154389,268,0 +170738154438,268,0 +170738154486,267,0 +170738154534,267,0 +170738154582,268,0 +170738154630,268,0 +170738154679,268,0 +170738154727,268,0 +170738154777,267,0 +170738154825,268,0 +170738154873,268,0 +170738154921,268,0 +170738154969,268,0 +170738155017,268,0 +170738155066,268,0 +170738155114,268,0 +170738155162,268,0 +170738155210,268,0 +170738155260,268,0 +170738155308,268,0 +170738155357,268,0 +170738155407,267,0 +170738155455,268,0 +170738155503,268,0 +170738155552,268,0 +170738155602,268,0 +170738155650,268,0 +170738155698,267,0 +170738155746,268,0 +170738155794,268,0 +170738155842,268,0 +170738155889,268,0 +170738155937,268,0 +170738155987,268,0 +170738156035,268,0 +170738156083,268,0 +170738156131,268,0 +170738156179,268,0 +170738156227,268,0 +170738156275,268,0 +170738156323,268,0 +170738156371,268,0 +170738156419,268,0 +170738156467,268,0 +170738156514,268,0 +170738156562,268,0 +170738156610,268,0 +170738156658,267,0 +170738156706,268,0 +170738156754,268,0 +170738156804,268,0 +170738156852,268,0 +170738156901,268,0 +170738156951,268,0 +170738157000,268,0 +170738157048,267,0 +170738157096,267,0 +170738157144,268,0 +170738157192,268,0 +170738157241,268,0 +170738157291,268,0 +170738157339,268,0 +170738157387,268,0 +170738157435,268,0 +170738157483,268,0 +170738157531,268,0 +170738157579,268,0 +170738157626,268,0 +170738157674,268,0 +170738157722,268,0 +170738157770,268,0 +170738157820,268,0 +170738157868,268,0 +170738157917,268,0 +170738157965,268,0 +170738158013,268,0 +170738158061,268,0 +170738158109,268,0 +170738158158,268,0 +170738158206,268,0 +170738158256,268,0 +170738158304,267,0 +170738158353,268,0 +170738158402,268,0 +170738158450,268,0 +170738158498,268,0 +170738158546,268,0 +170738158594,267,0 +170738158644,268,0 +170738158692,268,0 +170738158740,268,0 +170738158787,268,0 +170738158835,268,0 +170738158885,267,0 +170738158933,268,0 +170738158981,268,0 +170738159029,267,0 +170738159077,268,0 +170738159125,268,0 +170738159173,268,0 +170738159222,268,0 +170738159270,268,0 +170738159318,268,0 +170738159366,268,0 +170738159414,268,0 +170738159462,268,0 +170738159510,268,0 +170738159558,268,0 +170738159606,268,0 +170738159654,268,0 +170738159702,268,0 +170738159751,268,0 +170738159799,268,0 +170738159847,268,0 +170738159895,268,0 +170738159944,268,0 +170738159994,268,0 +170738160042,268,0 +170738160090,268,0 +170738160138,268,0 +170738160187,268,0 +170738160237,268,0 +170738160285,268,0 +170738160333,268,0 +170738160381,268,0 +170738160429,268,0 +170738160478,268,0 +170738160526,268,0 +170738160576,268,0 +170738160626,268,0 +170738160674,268,0 +170738160721,268,0 +170738160769,268,0 +170738160817,268,0 +170738160865,268,0 +170738160915,268,0 +170738160963,268,0 +170738161011,267,0 +170738161061,268,0 +170738161108,268,0 +170738161156,268,0 +170738161206,268,0 +170738161256,268,0 +170738161305,268,0 +170738161353,268,0 +170738161401,268,0 +170738161449,268,0 +170738161497,268,0 +170738161546,268,0 +170738161594,268,0 +170738161644,268,0 +170738161693,268,0 +170738161741,268,0 +170738161789,268,0 +170738161837,268,0 +170738161885,268,0 +170738161934,268,0 +170738161982,268,0 +170738162032,268,0 +170738162081,268,0 +170738162129,268,0 +170738162179,268,0 +170738162226,268,0 +170738162276,268,0 +170738162324,268,0 +170738162372,268,0 +170738162420,268,0 +170738162468,268,0 +170738162516,268,0 +170738162564,268,0 +170738162611,268,0 +170738162661,268,0 +170738162711,268,0 +170738162759,268,0 +170738162807,268,0 +170738162856,268,0 +170738162906,268,0 +170738162954,268,0 +170738163003,268,0 +170738163051,268,0 +170738163099,268,0 +170738163147,268,0 +170738163195,268,0 +170738163245,268,0 +170738163293,268,0 +170738163340,268,0 +170738163390,268,0 +170738163438,268,0 +170738163486,268,0 +170738163534,268,0 +170738163582,268,0 +170738163630,268,0 +170738163677,267,0 +170738163725,268,0 +170738163773,268,0 +170738163821,268,0 +170738163869,268,0 +170738163917,268,0 +170738163967,268,0 +170738164015,268,0 +170738164063,268,0 +170738164111,268,0 +170738164158,268,0 +170738164206,268,0 +170738164254,268,0 +170738164304,268,0 +170738164352,267,0 +170738164401,268,0 +170738164449,268,0 +170738164497,268,0 +170738164545,268,0 +170738164593,268,0 +170738164643,268,0 +170738164691,268,0 +170738164738,268,0 +170738164786,268,0 +170738164834,268,0 +170738164884,268,0 +170738164932,268,0 +170738164979,268,0 +170738165029,267,0 +170738165077,268,0 +170738165125,268,0 +170738165174,268,0 +170738165222,268,0 +170738165272,268,0 +170738165320,268,0 +170738165368,268,0 +170738165416,268,0 +170738165464,268,0 +170738165512,268,0 +170738165560,268,0 +170738165609,268,0 +170738165657,268,0 +170738165705,268,0 +170738165753,267,0 +170738165801,268,0 +170738165849,268,0 +170738165897,268,0 +170738165946,268,0 +170738165996,268,0 +170738166044,268,0 +170738166092,268,0 +170738166140,268,0 +170738166189,268,0 +170738166237,268,0 +170738166285,268,0 +170738166333,268,0 +170738166381,268,0 +170738166430,268,0 +170738166478,268,0 +170738166526,268,0 +170738166574,268,0 +170738166622,268,0 +170738166672,268,0 +170738166720,268,0 +170738166768,267,0 +170738166815,268,0 +170738166863,268,0 +170738166911,268,0 +170738166959,268,0 +170738167007,268,0 +170738167055,268,0 +170738167104,268,0 +170738167152,268,0 +170738167202,268,0 +170738167251,268,0 +170738167299,268,0 +170738167347,268,0 +170738167395,268,0 +170738167443,268,0 +170738167491,268,0 +170738167540,268,0 +170738167590,268,0 +170738167638,268,0 +170738167686,268,0 +170738167734,268,0 +170738167782,268,0 +170738167830,268,0 +170738167879,268,0 +170738167927,268,0 +170738167977,268,0 +170738168026,268,0 +170738168074,268,0 +170738168123,268,0 +170738168171,268,0 +170738168219,267,0 +170738168267,268,0 +170738168317,268,0 +170738168366,268,0 +170738168414,268,0 +170738168462,268,0 +170738168512,268,0 +170738168560,268,0 +170738168608,268,0 +170738168657,268,0 +170738168705,268,0 +170738168755,268,0 +170738168804,268,0 +170738168854,268,0 +170738168902,268,0 +170738168951,268,0 +170738168999,268,0 +170738169047,268,0 +170738169095,268,0 +170738169145,268,0 +170738169193,268,0 +170738169241,268,0 +170738169289,268,0 +170738169337,268,0 +170738169386,267,0 +170738169434,268,0 +170738169482,267,0 +170738169532,268,0 +170738169580,268,0 +170738169628,268,0 +170738169676,268,0 +170738169724,268,0 +170738169771,268,0 +170738169821,268,0 +170738169869,268,0 +170738169917,268,0 +170738169966,268,0 +170738170014,268,0 +170738170062,268,0 +170738170110,268,0 +170738170160,268,0 +170738170208,268,0 +170738170256,268,0 +170738170303,268,0 +170738170351,268,0 +170738170399,268,0 +170738170447,268,0 +170738170495,268,0 +170738170543,268,0 +170738170591,268,0 +170738170639,268,0 +170738170687,268,0 +170738170736,268,0 +170738170784,268,0 +170738170834,268,0 +170738170882,268,0 +170738170930,268,0 +170738170978,267,0 +170738171026,268,0 +170738171074,268,0 +170738171122,268,0 +170738171170,268,0 +170738171218,268,0 +170738171265,268,0 +170738171315,268,0 +170738171363,268,0 +170738171412,268,0 +170738171462,268,0 +170738171512,267,0 +170738171559,267,0 +170738171609,267,0 +170738171657,268,0 +170738171706,268,0 +170738171754,268,0 +170738171804,268,0 +170738171852,268,0 +170738171900,268,0 +170738171948,268,0 +170738171996,268,0 +170738172045,268,0 +170738172093,268,0 +170738172143,268,0 +170738172192,268,0 +170738172240,268,0 +170738172288,268,0 +170738172336,268,0 +170738172384,268,0 +170738172434,268,0 +170738172481,268,0 +170738172531,268,0 +170738172580,268,0 +170738172630,268,0 +170738172678,268,0 +170738172727,268,0 +170738172775,268,0 +170738172823,267,0 +170738172873,268,0 +170738172922,268,0 +170738172970,268,0 +170738173018,268,0 +170738173068,268,0 +170738173116,268,0 +170738173164,268,0 +170738173212,268,0 +170738173260,268,0 +170738173308,268,0 +170738173357,268,0 +170738173405,268,0 +170738173454,268,0 +170738173502,268,0 +170738173550,268,0 +170738173598,268,0 +170738173646,268,0 +170738173694,268,0 +170738173742,268,0 +170738173790,268,0 +170738173837,268,0 +170738173885,268,0 +170738173933,268,0 +170738173981,268,0 +170738174029,268,0 +170738174077,268,0 +170738174125,268,0 +170738174173,268,0 +170738174221,268,0 +170738174268,267,0 +170738174316,268,0 +170738174364,268,0 +170738174412,268,0 +170738174460,268,0 +170738174508,267,0 +170738174556,268,0 +170738174604,268,0 +170738174651,268,0 +170738174699,268,0 +170738174747,267,0 +170738174795,268,0 +170738174843,268,0 +170738174892,268,0 +170738174940,268,0 +170738174988,268,0 +170738175036,267,0 +170738175084,268,0 +170738175134,268,0 +170738175183,268,0 +170738175231,268,0 +170738175279,268,0 +170738175329,268,0 +170738175377,268,0 +170738175426,268,0 +170738175474,268,0 +170738175524,268,0 +170738175572,268,0 +170738175620,268,0 +170738175668,268,0 +170738175716,268,0 +170738175764,268,0 +170738175814,268,0 +170738175862,268,0 +170738175910,268,0 +170738175959,268,0 +170738176009,267,0 +170738176057,268,0 +170738176107,268,0 +170738176155,268,0 +170738176203,268,0 +170738176252,268,0 +170738176300,268,0 +170738176348,268,0 +170738176396,268,0 +170738176445,268,0 +170738176493,268,0 +170738176543,268,0 +170738176592,268,0 +170738176640,267,0 +170738176688,268,0 +170738176738,268,0 +170738176786,268,0 +170738176834,268,0 +170738176882,268,0 +170738176931,268,0 +170738176979,268,0 +170738177029,268,0 +170738177078,268,0 +170738177126,268,0 +170738177174,268,0 +170738177222,268,0 +170738177270,268,0 +170738177318,268,0 +170738177366,268,0 +170738177414,268,0 +170738177461,268,0 +170738177509,268,0 +170738177559,268,0 +170738177607,268,0 +170738177656,268,0 +170738177704,268,0 +170738177752,268,0 +170738177802,268,0 +170738177850,268,0 +170738177899,268,0 +170738177949,268,0 +170738177997,267,0 +170738178046,268,0 +170738178096,268,0 +170738178144,268,0 +170738178192,268,0 +170738178240,268,0 +170738178288,268,0 +170738178336,268,0 +170738178384,268,0 +170738178432,268,0 +170738178479,268,0 +170738178527,268,0 +170738178577,268,0 +170738178625,268,0 +170738178673,268,0 +170738178722,268,0 +170738178770,268,0 +170738178818,268,0 +170738178866,268,0 +170738178914,268,0 +170738178964,268,0 +170738179012,268,0 +170738179060,268,0 +170738179109,268,0 +170738179157,268,0 +170738179205,268,0 +170738179254,268,0 +170738179303,268,0 +170738179352,268,0 +170738179400,267,0 +170738179450,268,0 +170738179497,268,0 +170738179545,267,0 +170738179593,268,0 +170738179641,268,0 +170738179689,268,0 +170738179737,268,0 +170738179785,268,0 +170738179835,268,0 +170738179883,268,0 +170738179931,268,0 +170738179979,268,0 +170738180027,268,0 +170738180075,268,0 +170738180123,268,0 +170738180172,268,0 +170738180222,268,0 +170738180270,268,0 +170738180319,268,0 +170738180367,268,0 +170738180415,268,0 +170738180463,268,0 +170738180512,268,0 +170738180560,268,0 +170738180610,268,0 +170738180659,267,0 +170738180707,268,0 +170738180755,268,0 +170738180803,268,0 +170738180851,268,0 +170738180901,267,0 +170738180950,268,0 +170738181000,268,0 +170738181050,268,0 +170738181098,268,0 +170738181145,268,0 +170738181193,268,0 +170738181241,268,0 +170738181289,268,0 +170738181337,268,0 +170738181385,268,0 +170738181433,268,0 +170738181482,268,0 +170738181530,267,0 +170738181578,268,0 +170738181626,268,0 +170738181676,268,0 +170738181725,268,0 +170738181774,268,0 +170738181824,268,0 +170738181874,268,0 +170738181921,268,0 +170738181969,268,0 +170738182019,268,0 +170738182067,268,0 +170738182116,268,0 +170738182164,268,0 +170738182212,268,0 +170738182262,268,0 +170738182311,268,0 +170738182359,268,0 +170738182407,268,0 +170738182455,268,0 +170738182503,268,0 +170738182551,268,0 +170738182599,268,0 +170738182647,268,0 +170738182695,268,0 +170738182743,268,0 +170738182791,268,0 +170738182838,268,0 +170738182886,268,0 +170738182936,268,0 +170738182984,268,0 +170738183032,268,0 +170738183081,268,0 +170738183129,268,0 +170738183177,268,0 +170738183225,268,0 +170738183273,268,0 +170738183323,268,0 +170738183370,268,0 +170738183418,268,0 +170738183466,267,0 +170738183514,267,0 +170738183562,268,0 +170738183610,268,0 +170738183658,268,0 +170738183707,267,0 +170738183755,267,0 +170738183803,268,0 +170738183851,268,0 +170738183901,268,0 +170738183949,268,0 +170738183998,268,0 +170738184046,268,0 +170738184096,268,0 +170738184144,268,0 +170738184193,267,0 +170738184241,268,0 +170738184291,268,0 +170738184339,268,0 +170738184387,268,0 +170738184435,268,0 +170738184483,268,0 +170738184532,268,0 +170738184582,268,0 +170738184631,268,0 +170738184679,268,0 +170738184727,268,0 +170738184775,268,0 +170738184825,268,0 +170738184874,268,0 +170738184922,268,0 +170738184970,268,0 +170738185018,268,0 +170738185068,268,0 +170738185116,268,0 +170738185164,268,0 +170738185212,268,0 +170738185260,268,0 +170738185308,268,0 +170738185356,268,0 +170738185405,268,0 +170738185453,268,0 +170738185501,268,0 +170738185551,268,0 +170738185599,268,0 +170738185648,268,0 +170738185698,268,0 +170738185746,268,0 +170738185794,268,0 +170738185842,268,0 +170738185891,268,0 +170738185939,268,0 +170738185989,268,0 +170738186037,268,0 +170738186085,267,0 +170738186132,268,0 +170738186182,268,0 +170738186232,268,0 +170738186281,268,0 +170738186331,268,0 +170738186380,268,0 +170738186428,268,0 +170738186476,268,0 +170738186524,268,0 +170738186574,268,0 +170738186622,268,0 +170738186670,268,0 +170738186719,268,0 +170738186767,268,0 +170738186815,268,0 +170738186863,268,0 +170738186911,268,0 +170738186959,268,0 +170738187007,268,0 +170738187055,268,0 +170738187103,268,0 +170738187151,268,0 +170738187200,268,0 +170738187248,268,0 +170738187296,268,0 +170738187344,268,0 +170738187392,268,0 +170738187442,268,0 +170738187490,268,0 +170738187538,268,0 +170738187586,268,0 +170738187634,268,0 +170738187683,268,0 +170738187731,268,0 +170738187779,268,0 +170738187827,268,0 +170738187875,268,0 +170738187923,268,0 +170738187971,268,0 +170738188019,268,0 +170738188067,268,0 +170738188115,268,0 +170738188164,268,0 +170738188212,268,0 +170738188260,268,0 +170738188308,268,0 +170738188356,268,0 +170738188405,267,0 +170738188453,268,0 +170738188501,268,0 +170738188549,268,0 +170738188597,268,0 +170738188645,268,0 +170738188693,268,0 +170738188741,268,0 +170738188789,268,0 +170738188836,268,0 +170738188884,268,0 +170738188932,268,0 +170738188980,268,0 +170738189028,268,0 +170738189078,268,0 +170738189127,268,0 +170738189175,267,0 +170738189223,268,0 +170738189271,267,0 +170738189321,268,0 +170738189369,267,0 +170738189417,268,0 +170738189465,268,0 +170738189513,268,0 +170738189561,268,0 +170738189609,268,0 +170738189658,268,0 +170738189706,268,0 +170738189756,268,0 +170738189804,268,0 +170738189853,268,0 +170738189901,267,0 +170738189949,268,0 +170738189997,268,0 +170738190045,268,0 +170738190093,267,0 +170738190141,268,0 +170738190189,267,0 +170738190239,268,0 +170738190287,268,0 +170738190335,267,0 +170738190383,268,0 +170738190432,268,0 +170738190480,268,0 +170738190528,268,0 +170738190576,267,0 +170738190624,268,0 +170738190672,268,0 +170738190720,268,0 +170738190769,268,0 +170738190817,268,0 +170738190865,268,0 +170738190913,267,0 +170738190963,268,0 +170738191011,268,0 +170738191059,268,0 +170738191107,267,0 +170738191156,268,0 +170738191206,268,0 +170738191254,268,0 +170738191302,268,0 +170738191350,268,0 +170738191398,268,0 +170738191447,268,0 +170738191495,268,0 +170738191545,268,0 +170738191593,268,0 +170738191641,268,0 +170738191689,268,0 +170738191738,268,0 +170738191786,268,0 +170738191834,268,0 +170738191882,268,0 +170738191930,268,0 +170738191978,268,0 +170738192026,267,0 +170738192074,268,0 +170738192122,268,0 +170738192170,268,0 +170738192218,268,0 +170738192266,268,0 +170738192314,267,0 +170738192362,268,0 +170738192410,268,0 +170738192458,268,0 +170738192507,268,0 +170738192557,268,0 +170738192605,268,0 +170738192653,268,0 +170738192702,268,0 +170738192752,268,0 +170738192801,268,0 +170738192849,268,0 +170738192897,268,0 +170738192945,267,0 +170738192993,268,0 +170738193041,268,0 +170738193091,268,0 +170738193139,268,0 +170738193187,267,0 +170738193235,268,0 +170738193283,268,0 +170738193332,268,0 +170738193382,268,0 +170738193431,268,0 +170738193479,268,0 +170738193529,268,0 +170738193577,268,0 +170738193626,268,0 +170738193674,268,0 +170738193722,268,0 +170738193770,268,0 +170738193818,268,0 +170738193866,268,0 +170738193914,268,0 +170738193962,268,0 +170738194010,268,0 +170738194058,268,0 +170738194106,267,0 +170738194154,268,0 +170738194203,267,0 +170738194253,268,0 +170738194302,268,0 +170738194352,267,0 +170738194400,268,0 +170738194449,268,0 +170738194497,268,0 +170738194547,268,0 +170738194595,268,0 +170738194643,268,0 +170738194691,268,0 +170738194740,268,0 +170738194788,268,0 +170738194836,268,0 +170738194884,268,0 +170738194932,268,0 +170738194980,268,0 +170738195028,268,0 +170738195078,267,0 +170738195125,268,0 +170738195173,268,0 +170738195221,268,0 +170738195269,267,0 +170738195317,268,0 +170738195365,268,0 +170738195413,267,0 +170738195461,268,0 +170738195509,268,0 +170738195558,268,0 +170738195606,268,0 +170738195654,268,0 +170738195704,268,0 +170738195753,268,0 +170738195803,268,0 +170738195852,268,0 +170738195900,268,0 +170738195950,268,0 +170738195999,268,0 +170738196047,268,0 +170738196095,268,0 +170738196145,268,0 +170738196193,268,0 +170738196241,268,0 +170738196289,268,0 +170738196337,268,0 +170738196385,268,0 +170738196433,268,0 +170738196480,268,0 +170738196530,268,0 +170738196578,268,0 +170738196626,268,0 +170738196674,268,0 +170738196722,268,0 +170738196771,268,0 +170738196821,268,0 +170738196869,268,0 +170738196917,267,0 +170738196965,267,0 +170738197013,268,0 +170738197062,268,0 +170738197110,268,0 +170738197158,268,0 +170738197208,268,0 +170738197256,268,0 +170738197304,268,0 +170738197353,268,0 +170738197401,268,0 +170738197449,268,0 +170738197497,268,0 +170738197545,268,0 +170738197593,268,0 +170738197642,268,0 +170738197690,268,0 +170738197740,268,0 +170738197788,268,0 +170738197836,268,0 +170738197884,268,0 +170738197933,268,0 +170738197981,268,0 +170738198031,268,0 +170738198079,267,0 +170738198128,268,0 +170738198176,267,0 +170738198224,268,0 +170738198273,268,0 +170738198321,268,0 +170738198371,268,0 +170738198419,267,0 +170738198467,268,0 +170738198515,267,0 +170738198563,268,0 +170738198611,268,0 +170738198659,268,0 +170738198708,268,0 +170738198756,267,0 +170738198804,268,0 +170738198852,268,0 +170738198902,268,0 +170738198950,268,0 +170738198999,268,0 +170738199047,267,0 +170738199096,268,0 +170738199144,268,0 +170738199192,268,0 +170738199240,268,0 +170738199288,268,0 +170738199336,268,0 +170738199384,268,0 +170738199432,268,0 +170738199482,268,0 +170738199530,268,0 +170738199578,268,0 +170738199626,268,0 +170738199674,268,0 +170738199722,268,0 +170738199770,268,0 +170738199818,268,0 +170738199866,268,0 +170738199914,267,0 +170738199962,268,0 +170738200009,268,0 +170738200059,267,0 +170738200107,268,0 +170738200155,268,0 +170738200203,268,0 +170738200252,268,0 +170738200302,268,0 +170738200350,268,0 +170738200399,268,0 +170738200447,268,0 +170738200497,268,0 +170738200545,268,0 +170738200594,268,0 +170738200644,268,0 +170738200692,268,0 +170738200740,268,0 +170738200789,268,0 +170738200837,268,0 +170738200885,268,0 +170738200935,268,0 +170738200983,268,0 +170738201031,268,0 +170738201079,268,0 +170738201127,268,0 +170738201175,268,0 +170738201223,268,0 +170738201271,267,0 +170738201320,268,0 +170738201370,268,0 +170738201419,268,0 +170738201469,268,0 +170738201517,268,0 +170738201565,268,0 +170738201613,268,0 +170738201660,268,0 +170738201708,268,0 +170738201758,268,0 +170738201806,268,0 +170738201855,268,0 +170738201903,268,0 +170738201951,268,0 +170738201999,268,0 +170738202047,268,0 +170738202097,268,0 +170738202145,267,0 +170738202193,268,0 +170738202241,268,0 +170738202289,268,0 +170738202338,267,0 +170738202386,268,0 +170738202434,267,0 +170738202482,268,0 +170738202532,268,0 +170738202580,268,0 +170738202627,268,0 +170738202675,268,0 +170738202725,268,0 +170738202774,268,0 +170738202824,268,0 +170738202872,268,0 +170738202920,268,0 +170738202968,268,0 +170738203016,268,0 +170738203065,268,0 +170738203113,268,0 +170738203161,268,0 +170738203209,268,0 +170738203259,268,0 +170738203307,268,0 +170738203355,268,0 +170738203403,268,0 +170738203451,268,0 +170738203500,268,0 +170738203548,267,0 +170738203598,268,0 +170738203646,268,0 +170738203694,267,0 +170738203743,268,0 +170738203793,268,0 +170738203842,268,0 +170738203890,268,0 +170738203938,268,0 +170738203986,268,0 +170738204036,268,0 +170738204085,268,0 +170738204133,268,0 +170738204182,268,0 +170738204230,268,0 +170738204278,268,0 +170738204326,267,0 +170738204374,268,0 +170738204422,268,0 +170738204472,268,0 +170738204520,268,0 +170738204568,268,0 +170738204616,268,0 +170738204664,268,0 +170738204713,268,0 +170738204761,267,0 +170738204809,268,0 +170738204857,268,0 +170738204905,268,0 +170738204953,268,0 +170738205001,268,0 +170738205051,268,0 +170738205099,268,0 +170738205148,268,0 +170738205196,268,0 +170738205244,268,0 +170738205293,267,0 +170738205342,268,0 +170738205391,268,0 +170738205439,268,0 +170738205487,268,0 +170738205535,268,0 +170738205584,268,0 +170738205632,268,0 +170738205682,268,0 +170738205730,268,0 +170738205778,268,0 +170738205826,268,0 +170738205875,268,0 +170738205923,268,0 +170738205971,268,0 +170738206021,268,0 +170738206069,268,0 +170738206118,268,0 +170738206166,268,0 +170738206214,268,0 +170738206262,268,0 +170738206311,268,0 +170738206359,268,0 +170738206407,268,0 +170738206455,268,0 +170738206503,268,0 +170738206551,268,0 +170738206601,268,0 +170738206649,268,0 +170738206697,268,0 +170738206745,268,0 +170738206793,268,0 +170738206840,268,0 +170738206888,267,0 +170738206936,268,0 +170738206986,268,0 +170738207035,268,0 +170738207083,268,0 +170738207131,267,0 +170738207179,268,0 +170738207227,268,0 +170738207275,268,0 +170738207323,268,0 +170738207373,268,0 +170738207421,268,0 +170738207469,268,0 +170738207516,268,0 +170738207566,267,0 +170738207616,268,0 +170738207664,268,0 +170738207712,268,0 +170738207761,267,0 +170738207811,268,0 +170738207859,268,0 +170738207906,268,0 +170738207956,268,0 +170738208006,268,0 +170738208055,268,0 +170738208103,268,0 +170738208151,267,0 +170738208199,268,0 +170738208247,268,0 +170738208295,267,0 +170738208343,268,0 +170738208392,268,0 +170738208440,268,0 +170738208488,268,0 +170738208538,268,0 +170738208586,268,0 +170738208635,268,0 +170738208683,268,0 +170738208733,268,0 +170738208781,268,0 +170738208830,268,0 +170738208878,268,0 +170738208926,268,0 +170738208974,268,0 +170738209022,268,0 +170738209072,268,0 +170738209119,268,0 +170738209169,268,0 +170738209218,268,0 +170738209266,267,0 +170738209316,268,0 +170738209364,268,0 +170738209412,268,0 +170738209460,268,0 +170738209508,268,0 +170738209556,268,0 +170738209604,268,0 +170738209653,268,0 +170738209701,267,0 +170738209749,268,0 +170738209797,268,0 +170738209845,267,0 +170738209893,268,0 +170738209943,267,0 +170738209992,268,0 +170738210042,268,0 +170738210091,268,0 +170738210139,268,0 +170738210187,268,0 +170738210237,268,0 +170738210285,267,0 +170738210333,268,0 +170738210380,267,0 +170738210428,268,0 +170738210476,267,0 +170738210524,268,0 +170738210572,268,0 +170738210620,267,0 +170738210668,268,0 +170738210716,267,0 +170738210764,268,0 +170738210814,268,0 +170738210862,268,0 +170738210910,267,0 +170738210958,268,0 +170738211006,268,0 +170738211053,267,0 +170738211103,268,0 +170738211151,268,0 +170738211200,268,0 +170738211248,268,0 +170738211296,268,0 +170738211344,268,0 +170738211392,268,0 +170738211440,268,0 +170738211488,268,0 +170738211538,268,0 +170738211587,268,0 +170738211636,268,0 +170738211683,268,0 +170738211731,268,0 +170738211779,267,0 +170738211827,268,0 +170738211877,268,0 +170738211925,268,0 +170738211973,268,0 +170738212021,268,0 +170738212068,268,0 +170738212116,268,0 +170738212164,268,0 +170738212212,268,0 +170738212260,268,0 +170738212308,268,0 +170738212356,268,0 +170738212404,268,0 +170738212452,268,0 +170738212500,268,0 +170738212548,268,0 +170738212596,268,0 +170738212644,268,0 +170738212693,268,0 +170738212741,267,0 +170738212789,268,0 +170738212837,268,0 +170738212885,268,0 +170738212933,267,0 +170738212981,268,0 +170738213029,268,0 +170738213078,268,0 +170738213128,268,0 +170738213176,268,0 +170738213225,268,0 +170738213275,268,0 +170738213323,268,0 +170738213371,268,0 +170738213419,268,0 +170738213467,268,0 +170738213516,268,0 +170738213564,268,0 +170738213614,268,0 +170738213662,268,0 +170738213710,268,0 +170738213759,268,0 +170738213807,268,0 +170738213855,268,0 +170738213903,268,0 +170738213953,268,0 +170738214001,268,0 +170738214049,268,0 +170738214097,268,0 +170738214145,268,0 +170738214193,268,0 +170738214241,267,0 +170738214289,268,0 +170738214337,267,0 +170738214385,268,0 +170738214434,268,0 +170738214482,268,0 +170738214532,268,0 +170738214580,268,0 +170738214629,268,0 +170738214679,268,0 +170738214727,268,0 +170738214774,268,0 +170738214822,268,0 +170738214870,268,0 +170738214920,268,0 +170738214967,268,0 +170738215017,268,0 +170738215065,268,0 +170738215113,268,0 +170738215161,268,0 +170738215209,268,0 +170738215256,268,0 +170738215304,268,0 +170738215352,268,0 +170738215400,268,0 +170738215448,267,0 +170738215496,268,0 +170738215544,268,0 +170738215591,267,0 +170738215641,268,0 +170738215689,268,0 +170738215737,268,0 +170738215786,268,0 +170738215834,268,0 +170738215882,268,0 +170738215930,268,0 +170738215978,268,0 +170738216027,268,0 +170738216077,268,0 +170738216126,268,0 +170738216174,268,0 +170738216224,268,0 +170738216271,267,0 +170738216319,268,0 +170738216367,268,0 +170738216417,268,0 +170738216465,268,0 +170738216513,268,0 +170738216562,268,0 +170738216612,268,0 +170738216660,268,0 +170738216708,268,0 +170738216757,268,0 +170738216805,268,0 +170738216853,268,0 +170738216903,268,0 +170738216952,268,0 +170738217000,267,0 +170738217050,268,0 +170738217099,268,0 +170738217147,268,0 +170738217197,268,0 +170738217245,268,0 +170738217293,268,0 +170738217342,268,0 +170738217390,268,0 +170738217438,267,0 +170738217486,267,0 +170738217534,268,0 +170738217584,268,0 +170738217632,268,0 +170738217681,268,0 +170738217729,268,0 +170738217777,268,0 +170738217825,268,0 +170738217873,268,0 +170738217923,268,0 +170738217971,268,0 +170738218018,268,0 +170738218068,268,0 +170738218116,268,0 +170738218165,268,0 +170738218213,268,0 +170738218261,267,0 +170738218311,268,0 +170738218359,268,0 +170738218407,268,0 +170738218455,267,0 +170738218503,268,0 +170738218551,267,0 +170738218599,267,0 +170738218647,268,0 +170738218695,268,0 +170738218743,268,0 +170738218791,268,0 +170738218839,268,0 +170738218888,268,0 +170738218936,267,0 +170738218984,267,0 +170738219032,268,0 +170738219080,268,0 +170738219128,268,0 +170738219176,268,0 +170738219224,268,0 +170738219272,268,0 +170738219321,267,0 +170738219369,268,0 +170738219417,268,0 +170738219465,267,0 +170738219513,268,0 +170738219561,268,0 +170738219609,268,0 +170738219659,268,0 +170738219706,268,0 +170738219756,268,0 +170738219804,268,0 +170738219853,268,0 +170738219901,268,0 +170738219951,267,0 +170738219999,268,0 +170738220048,268,0 +170738220098,268,0 +170738220146,267,0 +170738220194,267,0 +170738220242,267,0 +170738220290,268,0 +170738220338,267,0 +170738220386,267,0 +170738220434,268,0 +170738220482,267,0 +170738220530,268,0 +170738220578,267,0 +170738220627,267,0 +170738220675,268,0 +170738220725,268,0 +170738220772,268,0 +170738220820,268,0 +170738220870,268,0 +170738220918,267,0 +170738220966,268,0 +170738221014,268,0 +170738221063,268,0 +170738221111,268,0 +170738221159,268,0 +170738221207,267,0 +170738221255,268,0 +170738221303,268,0 +170738221351,268,0 +170738221401,267,0 +170738221449,268,0 +170738221497,268,0 +170738221545,268,0 +170738221593,267,0 +170738221642,267,0 +170738221690,268,0 +170738221738,267,0 +170738221786,268,0 +170738221834,267,0 +170738221882,268,0 +170738221930,267,0 +170738221980,267,0 +170738222028,268,0 +170738222076,268,0 +170738222123,268,0 +170738222171,267,0 +170738222219,268,0 +170738222269,268,0 +170738222317,268,0 +170738222365,268,0 +170738222413,268,0 +170738222462,268,0 +170738222510,268,0 +170738222558,268,0 +170738222606,268,0 +170738222654,268,0 +170738222703,268,0 +170738222751,268,0 +170738222799,268,0 +170738222849,268,0 +170738222897,268,0 +170738222945,268,0 +170738222993,268,0 +170738223041,268,0 +170738223090,268,0 +170738223138,268,0 +170738223186,268,0 +170738223234,267,0 +170738223282,267,0 +170738223332,268,0 +170738223380,267,0 +170738223429,268,0 +170738223479,268,0 +170738223528,268,0 +170738223578,268,0 +170738223627,268,0 +170738223675,268,0 +170738223723,268,0 +170738223771,267,0 +170738223821,268,0 +170738223869,268,0 +170738223918,268,0 +170738223968,268,0 +170738224016,268,0 +170738224064,268,0 +170738224112,268,0 +170738224160,268,0 +170738224208,268,0 +170738224256,268,0 +170738224304,267,0 +170738224353,268,0 +170738224403,268,0 +170738224451,268,0 +170738224499,268,0 +170738224548,267,0 +170738224598,268,0 +170738224646,268,0 +170738224695,268,0 +170738224745,267,0 +170738224793,268,0 +170738224842,267,0 +170738224890,268,0 +170738224938,268,0 +170738224988,268,0 +170738225037,267,0 +170738225087,268,0 +170738225135,268,0 +170738225184,267,0 +170738225232,268,0 +170738225281,268,0 +170738225329,267,0 +170738225377,268,0 +170738225425,268,0 +170738225473,268,0 +170738225523,268,0 +170738225571,268,0 +170738225619,267,0 +170738225667,268,0 +170738225715,268,0 +170738225762,268,0 +170738225812,268,0 +170738225860,268,0 +170738225909,268,0 +170738225959,268,0 +170738226008,267,0 +170738226056,268,0 +170738226104,268,0 +170738226154,268,0 +170738226203,268,0 +170738226253,268,0 +170738226301,268,0 +170738226350,268,0 +170738226398,268,0 +170738226446,268,0 +170738226496,268,0 +170738226544,267,0 +170738226593,267,0 +170738226641,268,0 +170738226691,268,0 +170738226739,268,0 +170738226788,268,0 +170738226836,268,0 +170738226884,268,0 +170738226932,268,0 +170738226982,268,0 +170738227031,268,0 +170738227081,268,0 +170738227129,268,0 +170738227177,268,0 +170738227224,267,0 +170738227272,268,0 +170738227320,268,0 +170738227368,268,0 +170738227416,267,0 +170738227464,268,0 +170738227513,268,0 +170738227561,268,0 +170738227609,268,0 +170738227657,267,0 +170738227705,267,0 +170738227754,268,0 +170738227802,267,0 +170738227850,267,0 +170738227898,268,0 +170738227946,268,0 +170738227994,268,0 +170738228042,268,0 +170738228089,268,0 +170738228137,268,0 +170738228185,267,0 +170738228233,267,0 +170738228281,267,0 +170738228329,267,0 +170738228377,267,0 +170738228425,268,0 +170738228472,268,0 +170738228522,268,0 +170738228570,268,0 +170738228618,267,0 +170738228666,268,0 +170738228713,268,0 +170738228761,268,0 +170738228809,267,0 +170738228857,268,0 +170738228905,268,0 +170738228953,268,0 +170738229001,268,0 +170738229049,268,0 +170738229096,268,0 +170738229144,268,0 +170738229192,268,0 +170738229240,268,0 +170738229290,268,0 +170738229338,268,0 +170738229385,267,0 +170738229433,268,0 +170738229483,268,0 +170738229531,268,0 +170738229580,268,0 +170738229628,268,0 +170738229678,268,0 +170738229726,268,0 +170738229773,267,0 +170738229823,268,0 +170738229871,268,0 +170738229921,268,0 +170738229968,267,0 +170738230018,268,0 +170738230066,268,0 +170738230114,267,0 +170738230163,268,0 +170738230211,268,0 +170738230259,268,0 +170738230307,267,0 +170738230357,268,0 +170738230406,268,0 +170738230454,268,0 +170738230504,268,0 +170738230553,268,0 +170738230603,268,0 +170738230651,267,0 +170738230700,268,0 +170738230748,268,0 +170738230798,268,0 +170738230846,268,0 +170738230894,268,0 +170738230942,267,0 +170738230990,268,0 +170738231039,267,0 +170738231089,268,0 +170738231136,268,0 +170738231184,267,0 +170738231232,267,0 +170738231282,267,0 +170738231330,268,0 +170738231377,268,0 +170738231425,268,0 +170738231473,268,0 +170738231521,268,0 +170738231569,267,0 +170738231617,267,0 +170738231667,268,0 +170738231714,268,0 +170738231762,268,0 +170738231812,268,0 +170738231861,268,0 +170738231911,268,0 +170738231959,268,0 +170738232007,268,0 +170738232055,268,0 +170738232102,267,0 +170738232150,268,0 +170738232198,268,0 +170738232246,268,0 +170738232294,267,0 +170738232342,268,0 +170738232391,268,0 +170738232439,268,0 +170738232487,268,0 +170738232535,268,0 +170738232583,268,0 +170738232631,268,0 +170738232679,268,0 +170738232727,267,0 +170738232775,268,0 +170738232823,268,0 +170738232873,268,0 +170738232921,268,0 +170738232969,268,0 +170738233016,268,0 +170738233064,268,0 +170738233114,268,0 +170738233162,267,0 +170738233211,268,0 +170738233259,268,0 +170738233307,268,0 +170738233355,268,0 +170738233403,268,0 +170738233451,267,0 +170738233499,268,0 +170738233547,268,0 +170738233597,268,0 +170738233645,268,0 +170738233693,268,0 +170738233742,268,0 +170738233790,267,0 +170738233838,268,0 +170738233887,268,0 +170738233935,267,0 +170738233985,268,0 +170738234034,268,0 +170738234084,268,0 +170738234132,268,0 +170738234180,267,0 +170738234228,268,0 +170738234276,268,0 +170738234324,268,0 +170738234373,268,0 +170738234421,268,0 +170738234469,268,0 +170738234517,268,0 +170738234567,267,0 +170738234614,268,0 +170738234662,268,0 +170738234710,268,0 +170738234758,268,0 +170738234806,268,0 +170738234854,268,0 +170738234902,268,0 +170738234952,268,0 +170738235000,268,0 +170738235048,268,0 +170738235096,268,0 +170738235144,268,0 +170738235193,268,0 +170738235243,268,0 +170738235292,268,0 +170738235340,268,0 +170738235388,268,0 +170738235436,268,0 +170738235484,268,0 +170738235533,268,0 +170738235583,268,0 +170738235632,268,0 +170738235680,267,0 +170738235730,268,0 +170738235778,268,0 +170738235826,268,0 +170738235874,268,0 +170738235922,267,0 +170738235970,268,0 +170738236018,268,0 +170738236065,268,0 +170738236113,268,0 +170738236163,268,0 +170738236212,267,0 +170738236260,268,0 +170738236308,268,0 +170738236356,268,0 +170738236406,268,0 +170738236454,268,0 +170738236503,268,0 +170738236551,268,0 +170738236599,268,0 +170738236647,268,0 +170738236695,268,0 +170738236745,268,0 +170738236793,268,0 +170738236842,268,0 +170738236890,267,0 +170738236938,267,0 +170738236986,268,0 +170738237034,268,0 +170738237083,268,0 +170738237131,268,0 +170738237179,268,0 +170738237227,268,0 +170738237275,268,0 +170738237323,268,0 +170738237371,268,0 +170738237419,268,0 +170738237467,268,0 +170738237515,268,0 +170738237563,268,0 +170738237611,268,0 +170738237661,268,0 +170738237709,268,0 +170738237757,268,0 +170738237805,268,0 +170738237852,268,0 +170738237902,268,0 +170738237950,268,0 +170738237998,268,0 +170738238046,268,0 +170738238095,268,0 +170738238145,268,0 +170738238192,268,0 +170738238240,268,0 +170738238288,268,0 +170738238338,268,0 +170738238386,268,0 +170738238434,268,0 +170738238482,268,0 +170738238531,268,0 +170738238579,268,0 +170738238627,268,0 +170738238675,267,0 +170738238723,268,0 +170738238771,268,0 +170738238819,268,0 +170738238868,268,0 +170738238916,268,0 +170738238966,268,0 +170738239014,268,0 +170738239061,268,0 +170738239111,268,0 +170738239159,268,0 +170738239208,268,0 +170738239256,268,0 +170738239304,268,0 +170738239352,268,0 +170738239400,268,0 +170738239448,268,0 +170738239496,268,0 +170738239544,268,0 +170738239592,268,0 +170738239642,268,0 +170738239691,268,0 +170738239739,268,0 +170738239787,268,0 +170738239837,268,0 +170738239885,268,0 +170738239933,268,0 +170738239981,268,0 +170738240029,268,0 +170738240076,268,0 +170738240124,268,0 +170738240172,268,0 +170738240220,268,0 +170738240270,268,0 +170738240318,268,0 +170738240366,268,0 +170738240414,268,0 +170738240462,268,0 +170738240511,268,0 +170738240561,268,0 +170738240609,268,0 +170738240658,268,0 +170738240708,268,0 +170738240756,268,0 +170738240804,268,0 +170738240853,268,0 +170738240901,268,0 +170738240949,268,0 +170738240998,268,0 +170738241046,268,0 +170738241096,268,0 +170738241144,268,0 +170738241193,268,0 +170738241241,268,0 +170738241289,268,0 +170738241339,269,0 +170738241387,268,0 +170738241435,268,0 +170738241483,268,0 +170738241531,268,0 +170738241579,268,0 +170738241627,269,0 +170738241675,268,0 +170738241723,268,0 +170738241771,268,0 +170738241820,268,0 +170738241870,268,0 +170738241918,268,0 +170738241965,268,0 +170738242013,268,0 +170738242061,268,0 +170738242109,268,0 +170738242157,268,0 +170738242205,268,0 +170738242253,268,0 +170738242300,268,0 +170738242348,268,0 +170738242396,268,0 +170738242444,268,0 +170738242492,268,0 +170738242541,268,0 +170738242589,268,0 +170738242637,268,0 +170738242687,269,0 +170738242735,268,0 +170738242782,268,0 +170738242830,268,0 +170738242878,268,0 +170738242926,268,0 +170738242974,268,0 +170738243022,268,0 +170738243072,268,0 +170738243119,268,0 +170738243169,268,0 +170738243219,268,0 +170738243266,268,0 +170738243314,268,0 +170738243362,268,0 +170738243410,268,0 +170738243458,268,0 +170738243506,268,0 +170738243556,268,0 +170738243604,268,0 +170738243651,268,0 +170738243699,268,0 +170738243749,268,0 +170738243797,268,0 +170738243846,268,0 +170738243894,268,0 +170738243942,268,0 +170738243990,268,0 +170738244038,268,0 +170738244086,268,0 +170738244135,268,0 +170738244185,268,0 +170738244234,267,0 +170738244284,268,0 +170738244331,268,0 +170738244381,268,0 +170738244430,268,0 +170738244478,268,0 +170738244526,268,0 +170738244576,268,0 +170738244624,268,0 +170738244673,268,0 +170738244721,268,0 +170738244769,268,0 +170738244817,268,0 +170738244866,268,0 +170738244914,268,0 +170738244964,268,0 +170738245013,267,0 +170738245061,268,0 +170738245111,268,0 +170738245159,268,0 +170738245207,268,0 +170738245255,268,0 +170738245304,268,0 +170738245352,268,0 +170738245400,268,0 +170738245448,268,0 +170738245496,268,0 +170738245544,268,0 +170738245592,268,0 +170738245641,268,0 +170738245689,267,0 +170738245737,268,0 +170738245785,268,0 +170738245833,267,0 +170738245883,268,0 +170738245932,268,0 +170738245980,268,0 +170738246028,268,0 +170738246076,268,0 +170738246124,268,0 +170738246171,268,0 +170738246219,267,0 +170738246267,268,0 +170738246315,268,0 +170738246363,268,0 +170738246411,268,0 +170738246459,268,0 +170738246507,268,0 +170738246554,267,0 +170738246602,268,0 +170738246652,268,0 +170738246700,268,0 +170738246748,268,0 +170738246797,268,0 +170738246845,268,0 +170738246893,268,0 +170738246941,268,0 +170738246990,268,0 +170738247038,267,0 +170738247086,268,0 +170738247134,268,0 +170738247182,268,0 +170738247230,268,0 +170738247279,268,0 +170738247327,268,0 +170738247375,268,0 +170738247423,268,0 +170738247471,268,0 +170738247519,268,0 +170738247567,268,0 +170738247614,268,0 +170738247662,268,0 +170738247710,268,0 +170738247758,268,0 +170738247806,268,0 +170738247854,268,0 +170738247902,268,0 +170738247950,268,0 +170738247998,268,0 +170738248047,268,0 +170738248095,268,0 +170738248143,268,0 +170738248191,268,0 +170738248240,268,0 +170738248288,268,0 +170738248336,268,0 +170738248385,268,0 +170738248433,268,0 +170738248481,268,0 +170738248529,268,0 +170738248577,268,0 +170738248625,268,0 +170738248673,268,0 +170738248721,268,0 +170738248770,268,0 +170738248818,268,0 +170738248866,268,0 +170738248914,268,0 +170738248962,268,0 +170738249010,268,0 +170738249058,268,0 +170738249105,268,0 +170738249155,268,0 +170738249203,268,0 +170738249251,268,0 +170738249299,268,0 +170738249347,268,0 +170738249395,267,0 +170738249443,267,0 +170738249491,268,0 +170738249539,268,0 +170738249586,268,0 +170738249634,268,0 +170738249682,268,0 +170738249730,268,0 +170738249778,268,0 +170738249826,268,0 +170738249874,268,0 +170738249922,268,0 +170738249970,268,0 +170738250018,268,0 +170738250065,267,0 +170738250113,268,0 +170738250161,268,0 +170738250209,268,0 +170738250257,268,0 +170738250305,268,0 +170738250353,268,0 +170738250401,268,0 +170738250449,268,0 +170738250497,268,0 +170738250545,268,0 +170738250595,268,0 +170738250644,268,0 +170738250692,268,0 +170738250740,268,0 +170738250788,268,0 +170738250836,268,0 +170738250883,268,0 +170738250931,268,0 +170738250979,268,0 +170738251027,268,0 +170738251075,267,0 +170738251123,268,0 +170738251172,268,0 +170738251220,268,0 +170738251270,268,0 +170738251318,268,0 +170738251366,268,0 +170738251415,268,0 +170738251463,268,0 +170738251511,268,0 +170738251559,268,0 +170738251607,268,0 +170738251655,268,0 +170738251704,268,0 +170738251752,268,0 +170738251802,268,0 +170738251851,268,0 +170738251901,268,0 +170738251949,267,0 +170738251998,268,0 +170738252046,268,0 +170738252094,268,0 +170738252142,267,0 +170738252190,268,0 +170738252238,268,0 +170738252286,268,0 +170738252336,268,0 +170738252384,268,0 +170738252431,268,0 +170738252479,268,0 +170738252527,268,0 +170738252575,267,0 +170738252623,268,0 +170738252673,268,0 +170738252721,268,0 +170738252769,268,0 +170738252818,268,0 +170738252866,268,0 +170738252914,268,0 +170738252962,267,0 +170738253010,268,0 +170738253058,268,0 +170738253108,267,0 +170738253156,268,0 +170738253204,268,0 +170738253251,268,0 +170738253301,268,0 +170738253349,268,0 +170738253398,268,0 +170738253446,268,0 +170738253496,267,0 +170738253544,268,0 +170738253592,268,0 +170738253641,268,0 +170738253691,268,0 +170738253739,268,0 +170738253787,268,0 +170738253835,267,0 +170738253883,268,0 +170738253932,268,0 +170738253982,267,0 +170738254030,267,0 +170738254078,268,0 +170738254126,268,0 +170738254174,267,0 +170738254222,268,0 +170738254270,268,0 +170738254318,267,0 +170738254365,267,0 +170738254415,268,0 +170738254465,268,0 +170738254513,268,0 +170738254560,268,0 +170738254608,268,0 +170738254656,268,0 +170738254704,267,0 +170738254754,267,0 +170738254802,268,0 +170738254851,267,0 +170738254899,268,0 +170738254947,267,0 +170738254995,268,0 +170738255044,267,0 +170738255094,268,0 +170738255143,268,0 +170738255193,267,0 +170738255242,268,0 +170738255290,267,0 +170738255338,267,0 +170738255386,268,0 +170738255434,268,0 +170738255482,267,0 +170738255530,268,0 +170738255578,267,0 +170738255625,268,0 +170738255673,268,0 +170738255721,267,0 +170738255769,267,0 +170738255817,267,0 +170738255865,268,0 +170738255913,268,0 +170738255963,268,0 +170738256011,268,0 +170738256060,267,0 +170738256110,267,0 +170738256158,268,0 +170738256207,267,0 +170738256255,267,0 +170738256303,268,0 +170738256351,267,0 +170738256401,268,0 +170738256448,267,0 +170738256496,268,0 +170738256544,267,0 +170738256592,267,0 +170738256640,268,0 +170738256688,267,0 +170738256736,268,0 +170738256784,267,0 +170738256832,267,0 +170738256880,268,0 +170738256928,268,0 +170738256975,268,0 +170738257025,268,0 +170738257073,267,0 +170738257121,268,0 +170738257169,268,0 +170738257217,268,0 +170738257265,267,0 +170738257312,267,0 +170738257360,268,0 +170738257408,267,0 +170738257458,268,0 +170738257506,267,0 +170738257554,268,0 +170738257602,267,0 +170738257651,267,0 +170738257701,267,0 +170738257750,267,0 +170738257798,267,0 +170738257846,267,0 +170738257894,268,0 +170738257942,268,0 +170738257990,268,0 +170738258038,268,0 +170738258087,267,0 +170738258135,268,0 +170738258183,267,0 +170738258231,267,0 +170738258279,267,0 +170738258327,267,0 +170738258375,268,0 +170738258423,267,0 +170738258473,268,0 +170738258520,268,0 +170738258570,267,0 +170738258618,268,0 +170738258666,268,0 +170738258715,268,0 +170738258763,267,0 +170738258811,267,0 +170738258859,267,0 +170738258909,267,0 +170738258957,268,0 +170738259006,268,0 +170738259056,268,0 +170738259104,267,0 +170738259152,268,0 +170738259200,267,0 +170738259248,268,0 +170738259296,267,0 +170738259344,268,0 +170738259393,268,0 +170738259441,268,0 +170738259491,268,0 +170738259539,268,0 +170738259587,268,0 +170738259634,268,0 +170738259682,267,0 +170738259730,267,0 +170738259778,268,0 +170738259826,268,0 +170738259876,268,0 +170738259925,268,0 +170738259973,267,0 +170738260021,267,0 +170738260071,268,0 +170738260119,268,0 +170738260168,267,0 +170738260216,267,0 +170738260264,268,0 +170738260312,268,0 +170738260360,268,0 +170738260408,268,0 +170738260456,267,0 +170738260505,268,0 +170738260555,268,0 +170738260603,267,0 +170738260651,267,0 +170738260699,268,0 +170738260748,268,0 +170738260796,267,0 +170738260844,267,0 +170738260892,267,0 +170738260940,267,0 +170738260988,268,0 +170738261036,267,0 +170738261083,268,0 +170738261131,268,0 +170738261179,267,0 +170738261227,267,0 +170738261275,268,0 +170738261323,267,0 +170738261373,268,0 +170738261421,267,0 +170738261469,267,0 +170738261517,267,0 +170738261566,268,0 +170738261614,267,0 +170738261662,267,0 +170738261710,267,0 +170738261758,268,0 +170738261808,267,0 +170738261857,267,0 +170738261905,267,0 +170738261955,267,0 +170738262004,268,0 +170738262052,267,0 +170738262100,268,0 +170738262149,268,0 +170738262199,267,0 +170738262247,267,0 +170738262296,267,0 +170738262344,268,0 +170738262394,267,0 +170738262442,268,0 +170738262490,267,0 +170738262538,268,0 +170738262586,267,0 +170738262634,267,0 +170738262682,267,0 +170738262730,267,0 +170738262779,267,0 +170738262827,268,0 +170738262875,268,0 +170738262923,267,0 +170738262971,267,0 +170738263019,267,0 +170738263068,267,0 +170738263116,267,0 +170738263164,267,0 +170738263214,267,0 +170738263262,268,0 +170738263310,268,0 +170738263358,268,0 +170738263406,267,0 +170738263454,267,0 +170738263502,268,0 +170738263551,267,0 +170738263601,267,0 +170738263649,268,0 +170738263697,268,0 +170738263746,268,0 +170738263794,268,0 +170738263844,267,0 +170738263893,267,0 +170738263941,267,0 +170738263989,267,0 +170738264037,267,0 +170738264085,267,0 +170738264133,268,0 +170738264180,268,0 +170738264230,267,0 +170738264279,267,0 +170738264327,267,0 +170738264375,267,0 +170738264423,267,0 +170738264471,267,0 +170738264519,267,0 +170738264567,267,0 +170738264616,267,0 +170738264664,267,0 +170738264714,267,0 +170738264762,267,0 +170738264809,268,0 +170738264857,268,0 +170738264905,267,0 +170738264953,267,0 +170738265001,267,0 +170738265049,267,0 +170738265097,268,0 +170738265145,267,0 +170738265193,267,0 +170738265240,267,0 +170738265288,267,0 +170738265336,267,0 +170738265384,268,0 +170738265432,268,0 +170738265480,267,0 +170738265528,267,0 +170738265576,267,0 +170738265624,267,0 +170738265671,267,0 +170738265719,267,0 +170738265767,267,0 +170738265817,267,0 +170738265865,268,0 +170738265912,268,0 +170738265960,267,0 +170738266008,268,0 +170738266056,267,0 +170738266104,267,0 +170738266152,268,0 +170738266200,268,0 +170738266248,267,0 +170738266295,267,0 +170738266343,267,0 +170738266391,267,0 +170738266441,267,0 +170738266489,268,0 +170738266536,267,0 +170738266584,267,0 +170738266632,268,0 +170738266680,268,0 +170738266728,268,0 +170738266776,267,0 +170738266824,267,0 +170738266872,267,0 +170738266920,267,0 +170738266967,267,0 +170738267015,267,0 +170738267063,267,0 +170738267111,267,0 +170738267161,267,0 +170738267210,267,0 +170738267258,267,0 +170738267306,267,0 +170738267354,267,0 +170738267403,267,0 +170738267453,267,0 +170738267501,267,0 +170738267548,268,0 +170738267596,267,0 +170738267644,267,0 +170738267692,267,0 +170738267740,267,0 +170738267788,268,0 +170738267836,267,0 +170738267884,267,0 +170738267931,267,0 +170738267979,267,0 +170738268029,267,0 +170738268077,267,0 +170738268124,267,0 +170738268172,267,0 +170738268220,268,0 +170738268270,267,0 +170738268319,267,0 +170738268369,267,0 +170738268417,267,0 +170738268464,267,0 +170738268512,267,0 +170738268560,267,0 +170738268608,267,0 +170738268656,267,0 +170738268705,267,0 +170738268753,267,0 +170738268801,267,0 +170738268849,267,0 +170738268897,267,0 +170738268945,267,0 +170738268993,267,0 +170738269041,267,0 +170738269088,267,0 +170738269136,267,0 +170738269186,267,0 +170738269234,267,0 +170738269282,267,0 +170738269330,267,0 +170738269378,267,0 +170738269426,267,0 +170738269474,267,0 +170738269523,267,0 +170738269571,267,0 +170738269619,267,0 +170738269667,267,0 +170738269717,267,0 +170738269765,267,0 +170738269814,267,0 +170738269862,267,0 +170738269910,267,0 +170738269960,267,0 +170738270009,267,0 +170738270059,267,0 +170738270107,267,0 +170738270154,267,0 +170738270202,267,0 +170738270250,267,0 +170738270298,267,0 +170738270346,267,0 +170738270395,267,0 +170738270443,267,0 +170738270491,267,0 +170738270541,267,0 +170738270589,267,0 +170738270636,267,0 +170738270684,267,0 +170738270732,267,0 +170738270782,267,0 +170738270831,267,0 +170738270879,267,0 +170738270927,267,0 +170738270976,267,0 +170738271024,267,0 +170738271072,267,0 +170738271120,267,0 +170738271168,267,0 +170738271216,267,0 +170738271264,267,0 +170738271312,267,0 +170738271360,267,0 +170738271409,267,0 +170738271458,267,0 +170738271506,267,0 +170738271554,267,0 +170738271602,267,0 +170738271650,267,0 +170738271698,267,0 +170738271746,267,0 +170738271794,267,0 +170738271842,267,0 +170738271890,267,0 +170738271938,267,0 +170738271986,267,0 +170738272034,267,0 +170738272082,267,0 +170738272130,267,0 +170738272178,267,0 +170738272226,267,0 +170738272274,267,0 +170738272322,267,0 +170738272370,267,0 +170738272419,267,0 +170738272467,267,0 +170738272515,267,0 +170738272563,267,0 +170738272611,267,0 +170738272659,267,0 +170738272707,267,0 +170738272757,267,0 +170738272806,267,0 +170738272856,267,0 +170738272904,267,0 +170738272953,267,0 +170738273001,267,0 +170738273049,267,0 +170738273097,267,0 +170738273145,267,0 +170738273193,267,0 +170738273241,267,0 +170738273289,267,0 +170738273337,267,0 +170738273386,267,0 +170738273436,267,0 +170738273484,267,0 +170738273532,267,0 +170738273581,267,0 +170738273629,267,0 +170738273677,267,0 +170738273725,267,0 +170738273773,267,0 +170738273821,267,0 +170738273871,267,0 +170738273920,267,0 +170738273968,267,0 +170738274018,267,0 +170738274066,267,0 +170738274114,267,0 +170738274163,267,0 +170738274213,267,0 +170738274261,267,0 +170738274309,267,0 +170738274356,267,0 +170738274404,267,0 +170738274452,267,0 +170738274500,267,0 +170738274548,267,0 +170738274598,267,0 +170738274646,267,0 +170738274694,267,0 +170738274743,267,0 +170738274791,267,0 +170738274839,267,0 +170738274889,267,0 +170738274937,267,0 +170738274984,267,0 +170738275032,267,0 +170738275080,267,0 +170738275128,267,0 +170738275176,267,0 +170738275224,267,0 +170738275274,267,0 +170738275322,267,0 +170738275370,267,0 +170738275418,267,0 +170738275466,267,0 +170738275514,267,0 +170738275562,267,0 +170738275611,267,0 +170738275659,267,0 +170738275708,267,0 +170738275758,267,0 +170738275806,267,0 +170738275854,267,0 +170738275902,267,0 +170738275951,267,0 +170738275999,267,0 +170738276049,267,0 +170738276097,267,0 +170738276146,267,0 +170738276194,267,0 +170738276242,267,0 +170738276290,267,0 +170738276338,267,0 +170738276386,267,0 +170738276434,267,0 +170738276482,267,0 +170738276532,267,0 +170738276581,267,0 +170738276629,267,0 +170738276677,267,0 +170738276725,267,0 +170738276773,267,0 +170738276821,267,0 +170738276869,267,0 +170738276917,267,0 +170738276966,267,0 +170738277014,268,0 +170738277062,268,0 +170738277110,267,0 +170738277158,268,0 +170738277206,267,0 +170738277254,267,0 +170738277304,267,0 +170738277352,267,0 +170738277400,267,0 +170738277448,267,0 +170738277496,267,0 +170738277544,267,0 +170738277591,267,0 +170738277639,267,0 +170738277687,267,0 +170738277735,267,0 +170738277783,267,0 +170738277832,267,0 +170738277880,267,0 +170738277928,267,0 +170738277976,267,0 +170738278026,267,0 +170738278074,267,0 +170738278121,267,0 +170738278169,267,0 +170738278217,267,0 +170738278265,267,0 +170738278313,267,0 +170738278361,267,0 +170738278410,267,0 +170738278458,267,0 +170738278506,267,0 +170738278554,268,0 +170738278602,267,0 +170738278651,267,0 +170738278701,267,0 +170738278749,267,0 +170738278797,267,0 +170738278845,267,0 +170738278892,267,0 +170738278940,267,0 +170738278988,267,0 +170738279038,267,0 +170738279086,267,0 +170738279133,267,0 +170738279181,267,0 +170738279229,267,0 +170738279277,267,0 +170738279327,267,0 +170738279374,267,0 +170738279422,267,0 +170738279472,267,0 +170738279520,267,0 +170738279568,267,0 +170738279615,268,0 +170738279663,267,0 +170738279711,267,0 +170738279759,267,0 +170738279807,267,0 +170738279855,267,0 +170738279903,267,0 +170738279952,267,0 +170738280000,268,0 diff --git a/laser_value/0208-19.csv b/laser_value/0208-19.csv new file mode 100644 index 0000000..ea96d57 --- /dev/null +++ b/laser_value/0208-19.csv @@ -0,0 +1,7445 @@ +timestamp,laser_value,event +170738280049,267,0 +170738280097,267,0 +170738280145,267,0 +170738280193,267,0 +170738280242,267,0 +170738280290,267,0 +170738280338,267,0 +170738280386,267,0 +170738280434,267,0 +170738280481,267,0 +170738280529,268,0 +170738280577,267,0 +170738280625,267,0 +170738280673,267,0 +170738280721,267,0 +170738280769,267,0 +170738280818,267,0 +170738280866,267,0 +170738280916,267,0 +170738280964,267,0 +170738281011,267,0 +170738281059,267,0 +170738281107,267,0 +170738281155,267,0 +170738281203,267,0 +170738281251,267,0 +170738281299,267,0 +170738281347,267,0 +170738281395,267,0 +170738281442,267,0 +170738281490,267,0 +170738281540,267,0 +170738281588,267,0 +170738281635,267,0 +170738281683,267,0 +170738281731,267,0 +170738281779,267,0 +170738281827,267,0 +170738281875,267,0 +170738281923,267,0 +170738281971,267,0 +170738282020,267,0 +170738282068,267,0 +170738282116,267,0 +170738282165,267,0 +170738282213,267,0 +170738282261,267,0 +170738282309,267,0 +170738282357,267,0 +170738282405,267,0 +170738282454,267,0 +170738282502,267,0 +170738282550,267,0 +170738282598,267,0 +170738282646,267,0 +170738282695,267,0 +170738282743,267,0 +170738282791,267,0 +170738282839,267,0 +170738282887,267,0 +170738282935,267,0 +170738282982,267,0 +170738283030,267,0 +170738283078,267,0 +170738283126,267,0 +170738283174,267,0 +170738283222,267,0 +170738283270,267,0 +170738283318,268,0 +170738283366,267,0 +170738283413,267,0 +170738283461,267,0 +170738283509,267,0 +170738283557,267,0 +170738283605,267,0 +170738283653,267,0 +170738283701,267,0 +170738283749,267,0 +170738283796,267,0 +170738283844,267,0 +170738283894,267,0 +170738283942,267,0 +170738283991,267,0 +170738284041,267,0 +170738284088,267,0 +170738284136,267,0 +170738284186,267,0 +170738284234,267,0 +170738284283,267,0 +170738284331,267,0 +170738284379,267,0 +170738284427,267,0 +170738284476,267,0 +170738284524,267,0 +170738284572,267,0 +170738284620,267,0 +170738284668,267,0 +170738284716,267,0 +170738284763,267,0 +170738284811,267,0 +170738284859,267,0 +170738284907,267,0 +170738284955,267,0 +170738285003,267,0 +170738285052,267,0 +170738285100,267,0 +170738285148,268,0 +170738285196,267,0 +170738285245,267,0 +170738285295,267,0 +170738285343,267,0 +170738285391,267,0 +170738285438,267,0 +170738285486,267,0 +170738285534,267,0 +170738285582,267,0 +170738285630,267,0 +170738285678,267,0 +170738285726,267,0 +170738285773,267,0 +170738285821,267,0 +170738285869,267,0 +170738285917,267,0 +170738285965,267,0 +170738286013,267,0 +170738286061,267,0 +170738286109,267,0 +170738286156,267,0 +170738286204,267,0 +170738286252,267,0 +170738286302,267,0 +170738286350,267,0 +170738286397,267,0 +170738286445,267,0 +170738286493,267,0 +170738286541,267,0 +170738286589,267,0 +170738286637,267,0 +170738286686,267,0 +170738286734,267,0 +170738286784,267,0 +170738286832,267,0 +170738286881,267,0 +170738286930,267,0 +170738286978,267,0 +170738287028,267,0 +170738287077,267,0 +170738287125,267,0 +170738287173,267,0 +170738287221,267,0 +170738287271,267,0 +170738287319,267,0 +170738287367,267,0 +170738287416,268,0 +170738287464,267,0 +170738287512,267,0 +170738287560,267,0 +170738287610,267,0 +170738287658,267,0 +170738287706,267,0 +170738287755,267,0 +170738287803,267,0 +170738287851,267,0 +170738287899,267,0 +170738287947,267,0 +170738287994,267,0 +170738288044,267,0 +170738288093,267,0 +170738288141,267,0 +170738288189,267,0 +170738288237,267,0 +170738288285,267,0 +170738288333,267,0 +170738288380,267,0 +170738288428,267,0 +170738288476,267,0 +170738288524,267,0 +170738288572,267,0 +170738288620,267,0 +170738288668,267,0 +170738288716,267,0 +170738288764,267,0 +170738288811,267,0 +170738288859,267,0 +170738288907,267,0 +170738288955,267,0 +170738289003,267,0 +170738289051,267,0 +170738289099,267,0 +170738289147,267,0 +170738289195,267,0 +170738289243,267,0 +170738289290,267,0 +170738289338,267,0 +170738289386,267,0 +170738289434,267,0 +170738289482,267,0 +170738289530,267,0 +170738289578,267,0 +170738289626,267,0 +170738289674,267,0 +170738289721,267,0 +170738289769,267,0 +170738289817,267,0 +170738289865,267,0 +170738289913,267,0 +170738289961,267,0 +170738290009,267,0 +170738290057,267,0 +170738290106,267,0 +170738290154,267,0 +170738290203,267,0 +170738290251,267,0 +170738290299,267,0 +170738290347,267,0 +170738290397,267,0 +170738290444,267,0 +170738290492,267,0 +170738290540,267,0 +170738290590,267,0 +170738290638,267,0 +170738290685,267,0 +170738290733,267,0 +170738290781,267,0 +170738290829,267,0 +170738290879,267,0 +170738290926,267,0 +170738290974,267,0 +170738291024,267,0 +170738291072,267,0 +170738291119,267,0 +170738291167,267,0 +170738291215,267,0 +170738291263,267,0 +170738291311,267,0 +170738291359,267,0 +170738291407,267,0 +170738291455,267,0 +170738291502,267,0 +170738291550,267,0 +170738291598,267,0 +170738291646,267,0 +170738291694,267,0 +170738291742,267,0 +170738291790,267,0 +170738291838,267,0 +170738291885,267,0 +170738291933,267,0 +170738291981,267,0 +170738292029,267,0 +170738292077,267,0 +170738292125,267,0 +170738292173,267,0 +170738292221,267,0 +170738292270,267,0 +170738292320,267,0 +170738292367,267,0 +170738292415,267,0 +170738292463,267,0 +170738292511,267,0 +170738292559,267,0 +170738292608,267,0 +170738292656,267,0 +170738292704,267,0 +170738292752,267,0 +170738292800,267,0 +170738292848,267,0 +170738292896,267,0 +170738292944,267,0 +170738292991,267,0 +170738293039,267,0 +170738293087,267,0 +170738293135,267,0 +170738293183,267,0 +170738293233,267,0 +170738293280,267,0 +170738293328,267,0 +170738293376,267,0 +170738293424,267,0 +170738293472,267,0 +170738293520,267,0 +170738293568,267,0 +170738293616,267,0 +170738293666,267,0 +170738293715,267,0 +170738293765,267,0 +170738293813,267,0 +170738293860,267,0 +170738293908,267,0 +170738293956,267,0 +170738294004,267,0 +170738294052,267,0 +170738294102,267,0 +170738294151,267,0 +170738294199,267,0 +170738294249,267,0 +170738294297,267,0 +170738294345,267,0 +170738294393,267,0 +170738294442,267,0 +170738294490,267,0 +170738294538,267,0 +170738294588,267,0 +170738294637,267,0 +170738294685,267,0 +170738294733,267,0 +170738294781,267,0 +170738294829,267,0 +170738294879,267,0 +170738294928,267,0 +170738294976,267,0 +170738295024,267,0 +170738295072,267,0 +170738295120,267,0 +170738295168,267,0 +170738295216,267,0 +170738295264,267,0 +170738295312,267,0 +170738295360,267,0 +170738295408,267,0 +170738295456,267,0 +170738295503,267,0 +170738295551,267,0 +170738295601,267,0 +170738295650,267,0 +170738295698,267,0 +170738295748,267,0 +170738295796,267,0 +170738295844,267,0 +170738295892,267,0 +170738295940,267,0 +170738295988,267,0 +170738296037,267,0 +170738296085,267,0 +170738296135,267,0 +170738296183,267,0 +170738296232,267,0 +170738296282,267,0 +170738296331,267,0 +170738296379,267,0 +170738296427,267,0 +170738296475,267,0 +170738296523,267,0 +170738296571,267,0 +170738296618,267,0 +170738296666,267,0 +170738296714,267,0 +170738296762,267,0 +170738296810,267,0 +170738296860,267,0 +170738296908,267,0 +170738296957,267,0 +170738297007,267,0 +170738297055,267,0 +170738297104,267,0 +170738297152,267,0 +170738297201,267,0 +170738297249,267,0 +170738297297,267,0 +170738297347,267,0 +170738297394,267,0 +170738297444,267,0 +170738297492,267,0 +170738297541,267,0 +170738297589,267,0 +170738297637,267,0 +170738297685,267,0 +170738297733,267,0 +170738297781,267,0 +170738297828,267,0 +170738297876,267,0 +170738297924,267,0 +170738297972,267,0 +170738298020,267,0 +170738298068,267,0 +170738298116,267,0 +170738298164,267,0 +170738298211,267,0 +170738298259,267,0 +170738298307,267,0 +170738298355,267,0 +170738298403,267,0 +170738298453,267,0 +170738298500,267,0 +170738298548,267,0 +170738298596,267,0 +170738298644,267,0 +170738298692,267,0 +170738298740,267,0 +170738298788,267,0 +170738298836,267,0 +170738298884,267,0 +170738298931,267,0 +170738298979,267,0 +170738299027,267,0 +170738299075,267,0 +170738299125,267,0 +170738299172,267,0 +170738299220,267,0 +170738299268,267,0 +170738299316,267,0 +170738299364,267,0 +170738299413,267,0 +170738299461,267,0 +170738299509,267,0 +170738299558,267,0 +170738299606,267,0 +170738299654,267,0 +170738299702,267,0 +170738299750,267,0 +170738299798,267,0 +170738299847,267,0 +170738299895,267,0 +170738299943,267,0 +170738299991,267,0 +170738300041,268,0 +170738300088,267,0 +170738300136,267,0 +170738300184,267,0 +170738300232,267,0 +170738300280,267,0 +170738300328,267,0 +170738300376,267,0 +170738300424,267,0 +170738300471,267,0 +170738300519,267,0 +170738300567,267,0 +170738300615,267,0 +170738300663,267,0 +170738300711,267,0 +170738300759,267,0 +170738300807,267,0 +170738300854,268,0 +170738300902,267,0 +170738300952,267,0 +170738301000,267,0 +170738301047,267,0 +170738301095,267,0 +170738301143,267,0 +170738301193,267,0 +170738301241,267,0 +170738301289,267,0 +170738301336,267,0 +170738301384,267,0 +170738301432,267,0 +170738301480,267,0 +170738301528,267,0 +170738301576,267,0 +170738301624,267,0 +170738301672,267,0 +170738301720,267,0 +170738301768,267,0 +170738301816,267,0 +170738301864,267,0 +170738301912,267,0 +170738301961,268,0 +170738302009,267,0 +170738302057,267,0 +170738302105,268,0 +170738302155,267,0 +170738302203,267,0 +170738302251,267,0 +170738302299,267,0 +170738302348,267,0 +170738302396,267,0 +170738302444,267,0 +170738302493,268,0 +170738302541,267,0 +170738302591,267,0 +170738302639,267,0 +170738302687,267,0 +170738302735,267,0 +170738302783,268,0 +170738302830,268,0 +170738302878,267,0 +170738302926,267,0 +170738302974,268,0 +170738303022,267,0 +170738303070,267,0 +170738303118,268,0 +170738303166,267,0 +170738303213,267,0 +170738303263,267,0 +170738303311,267,0 +170738303358,267,0 +170738303406,267,0 +170738303454,267,0 +170738303502,267,0 +170738303550,267,0 +170738303598,268,0 +170738303646,268,0 +170738303694,267,0 +170738303741,267,0 +170738303789,267,0 +170738303837,267,0 +170738303885,267,0 +170738303935,267,0 +170738303982,267,0 +170738304030,268,0 +170738304078,268,0 +170738304126,267,0 +170738304174,267,0 +170738304222,268,0 +170738304270,268,0 +170738304318,267,0 +170738304366,267,0 +170738304414,267,0 +170738304461,267,0 +170738304509,267,0 +170738304557,267,0 +170738304605,267,0 +170738304653,267,0 +170738304701,267,0 +170738304750,267,0 +170738304798,267,0 +170738304846,268,0 +170738304894,267,0 +170738304943,267,0 +170738304991,267,0 +170738305039,267,0 +170738305089,267,0 +170738305137,268,0 +170738305186,267,0 +170738305234,267,0 +170738305284,268,0 +170738305333,268,0 +170738305381,268,0 +170738305429,267,0 +170738305477,267,0 +170738305525,267,0 +170738305573,268,0 +170738305621,268,0 +170738305668,267,0 +170738305716,267,0 +170738305764,267,0 +170738305812,267,0 +170738305860,267,0 +170738305909,268,0 +170738305957,267,0 +170738306005,267,0 +170738306053,268,0 +170738306101,268,0 +170738306149,267,0 +170738306197,267,0 +170738306245,267,0 +170738306293,268,0 +170738306340,268,0 +170738306390,268,0 +170738306438,267,0 +170738306486,267,0 +170738306534,267,0 +170738306581,268,0 +170738306631,267,0 +170738306679,267,0 +170738306726,268,0 +170738306774,267,0 +170738306824,267,0 +170738306872,267,0 +170738306920,267,0 +170738306968,267,0 +170738307016,267,0 +170738307065,267,0 +170738307113,267,0 +170738307161,268,0 +170738307209,267,0 +170738307257,267,0 +170738307305,267,0 +170738307353,267,0 +170738307401,267,0 +170738307449,267,0 +170738307498,267,0 +170738307546,267,0 +170738307594,268,0 +170738307644,268,0 +170738307692,268,0 +170738307741,267,0 +170738307789,267,0 +170738307839,267,0 +170738307888,268,0 +170738307936,268,0 +170738307984,268,0 +170738308032,267,0 +170738308080,268,0 +170738308129,267,0 +170738308177,267,0 +170738308225,268,0 +170738308275,268,0 +170738308324,267,0 +170738308374,267,0 +170738308422,268,0 +170738308470,268,0 +170738308518,268,0 +170738308566,267,0 +170738308614,268,0 +170738308662,267,0 +170738308711,268,0 +170738308759,268,0 +170738308809,268,0 +170738308857,267,0 +170738308905,267,0 +170738308953,267,0 +170738309001,268,0 +170738309049,268,0 +170738309098,267,0 +170738309146,268,0 +170738309194,267,0 +170738309244,268,0 +170738309292,268,0 +170738309339,268,0 +170738309387,268,0 +170738309437,268,0 +170738309485,268,0 +170738309533,267,0 +170738309581,268,0 +170738309629,267,0 +170738309678,268,0 +170738309728,268,0 +170738309776,268,0 +170738309824,268,0 +170738309872,268,0 +170738309920,268,0 +170738309968,268,0 +170738310016,268,0 +170738310064,268,0 +170738310111,267,0 +170738310159,268,0 +170738310209,268,0 +170738310258,268,0 +170738310306,267,0 +170738310356,268,0 +170738310404,268,0 +170738310452,268,0 +170738310500,268,0 +170738310548,268,0 +170738310596,268,0 +170738310644,268,0 +170738310693,268,0 +170738310741,268,0 +170738310789,268,0 +170738310839,268,0 +170738310887,268,0 +170738310935,268,0 +170738310983,268,0 +170738311032,267,0 +170738311082,268,0 +170738311129,268,0 +170738311179,268,0 +170738311229,267,0 +170738311278,268,0 +170738311326,267,0 +170738311374,268,0 +170738311422,268,0 +170738311470,268,0 +170738311518,267,0 +170738311566,268,0 +170738311614,268,0 +170738311662,268,0 +170738311711,268,0 +170738311761,268,0 +170738311810,268,0 +170738311860,268,0 +170738311909,268,0 +170738311957,268,0 +170738312005,268,0 +170738312053,268,0 +170738312101,268,0 +170738312149,268,0 +170738312199,268,0 +170738312248,268,0 +170738312296,268,0 +170738312344,268,0 +170738312392,268,0 +170738312442,268,0 +170738312489,268,0 +170738312539,268,0 +170738312587,268,0 +170738312635,268,0 +170738312683,268,0 +170738312731,268,0 +170738312780,268,0 +170738312828,268,0 +170738312878,267,0 +170738312926,268,0 +170738312975,268,0 +170738313025,268,0 +170738313074,268,0 +170738313122,268,0 +170738313170,268,0 +170738313220,268,0 +170738313269,268,0 +170738313317,268,0 +170738313365,268,0 +170738313415,268,0 +170738313464,268,0 +170738313514,268,0 +170738313561,268,0 +170738313611,268,0 +170738313659,268,0 +170738313707,268,0 +170738313755,268,0 +170738313803,268,0 +170738313850,268,0 +170738313900,268,0 +170738313948,268,0 +170738313997,268,0 +170738314045,268,0 +170738314093,268,0 +170738314141,268,0 +170738314189,268,0 +170738314237,268,0 +170738314285,268,0 +170738314333,268,0 +170738314381,268,0 +170738314429,268,0 +170738314477,268,0 +170738314527,268,0 +170738314575,268,0 +170738314624,267,0 +170738314672,268,0 +170738314720,268,0 +170738314769,268,0 +170738314819,268,0 +170738314869,269,0 +170738314918,268,0 +170738314966,268,0 +170738315014,267,0 +170738315063,268,0 +170738315111,268,0 +170738315161,268,0 +170738315209,268,0 +170738315257,268,0 +170738315305,268,0 +170738315354,268,0 +170738315402,268,0 +170738315450,268,0 +170738315498,268,0 +170738315546,268,0 +170738315596,268,0 +170738315645,267,0 +170738315693,268,0 +170738315741,268,0 +170738315791,268,0 +170738315839,268,0 +170738315888,268,0 +170738315936,268,0 +170738315984,268,0 +170738316032,268,0 +170738316080,267,0 +170738316129,268,0 +170738316177,268,0 +170738316225,268,0 +170738316273,269,0 +170738316321,268,0 +170738316369,268,0 +170738316419,268,0 +170738316468,268,0 +170738316516,268,0 +170738316566,268,0 +170738316614,268,0 +170738316662,268,0 +170738316710,268,0 +170738316758,268,0 +170738316806,267,0 +170738316855,268,0 +170738316903,268,0 +170738316951,268,0 +170738316999,269,0 +170738317049,268,0 +170738317098,267,0 +170738317146,268,0 +170738317194,268,0 +170738317242,268,0 +170738317290,268,0 +170738317338,269,0 +170738317385,268,0 +170738317433,268,0 +170738317481,268,0 +170738317529,268,0 +170738317577,268,0 +170738317625,268,0 +170738317674,268,0 +170738317722,268,0 +170738317770,268,0 +170738317818,268,0 +170738317866,268,0 +170738317914,268,0 +170738317963,268,0 +170738318013,269,0 +170738318061,268,0 +170738318110,268,0 +170738318160,268,0 +170738318208,268,0 +170738318256,268,0 +170738318305,268,0 +170738318353,268,0 +170738318403,268,0 +170738318451,269,0 +170738318500,268,0 +170738318548,268,0 +170738318596,268,0 +170738318644,268,0 +170738318692,268,0 +170738318740,268,0 +170738318790,268,0 +170738318838,268,0 +170738318886,268,0 +170738318933,268,0 +170738318981,268,0 +170738319029,268,0 +170738319077,268,0 +170738319125,268,0 +170738319173,268,0 +170738319221,268,0 +170738319269,268,0 +170738319319,268,0 +170738319367,268,0 +170738319415,268,0 +170738319463,268,0 +170738319511,268,0 +170738319560,268,0 +170738319610,268,0 +170738319659,268,0 +170738319707,268,0 +170738319755,268,0 +170738319803,268,0 +170738319851,268,0 +170738319901,268,0 +170738319950,267,0 +170738319998,268,0 +170738320047,268,0 +170738320095,268,0 +170738320143,268,0 +170738320193,268,0 +170738320241,268,0 +170738320289,268,0 +170738320338,268,0 +170738320388,268,0 +170738320436,268,0 +170738320483,268,0 +170738320531,268,0 +170738320579,268,0 +170738320627,268,0 +170738320675,268,0 +170738320723,268,0 +170738320771,268,0 +170738320819,268,0 +170738320866,269,0 +170738320914,268,0 +170738320962,268,0 +170738321010,268,0 +170738321058,268,0 +170738321107,268,0 +170738321155,268,0 +170738321203,268,0 +170738321251,268,0 +170738321301,268,0 +170738321350,268,0 +170738321398,268,0 +170738321446,268,0 +170738321494,268,0 +170738321541,268,0 +170738321589,268,0 +170738321637,268,0 +170738321685,268,0 +170738321733,268,0 +170738321781,268,0 +170738321829,268,0 +170738321877,268,0 +170738321925,268,0 +170738321972,268,0 +170738322020,269,0 +170738322068,268,0 +170738322116,269,0 +170738322164,268,0 +170738322212,268,0 +170738322260,268,0 +170738322308,268,0 +170738322356,268,0 +170738322403,268,0 +170738322451,268,0 +170738322499,268,0 +170738322547,268,0 +170738322595,268,0 +170738322643,268,0 +170738322692,268,0 +170738322742,268,0 +170738322790,269,0 +170738322838,268,0 +170738322886,268,0 +170738322934,268,0 +170738322983,268,0 +170738323033,268,0 +170738323080,268,0 +170738323130,268,0 +170738323180,268,0 +170738323229,268,0 +170738323277,268,0 +170738323325,268,0 +170738323373,268,0 +170738323421,268,0 +170738323470,268,0 +170738323520,268,0 +170738323569,268,0 +170738323619,268,0 +170738323668,268,0 +170738323718,268,0 +170738323766,268,0 +170738323815,268,0 +170738323863,268,0 +170738323911,268,0 +170738323959,268,0 +170738324007,268,0 +170738324055,268,0 +170738324103,268,0 +170738324153,268,0 +170738324201,268,0 +170738324250,268,0 +170738324298,268,0 +170738324346,268,0 +170738324394,268,0 +170738324442,268,0 +170738324490,268,0 +170738324538,268,0 +170738324586,268,0 +170738324634,268,0 +170738324683,268,0 +170738324731,268,0 +170738324779,268,0 +170738324827,268,0 +170738324875,268,0 +170738324925,268,0 +170738324974,268,0 +170738325022,268,0 +170738325070,268,0 +170738325119,268,0 +170738325167,268,0 +170738325215,268,0 +170738325263,268,0 +170738325311,268,0 +170738325361,268,0 +170738325409,268,0 +170738325457,268,0 +170738325505,268,0 +170738325553,268,0 +170738325601,268,0 +170738325650,268,0 +170738325700,268,0 +170738325748,268,0 +170738325797,268,0 +170738325847,269,0 +170738325895,268,0 +170738325944,268,0 +170738325992,268,0 +170738326040,268,0 +170738326088,268,0 +170738326136,268,0 +170738326184,268,0 +170738326233,268,0 +170738326281,268,0 +170738326329,268,0 +170738326377,268,0 +170738326425,269,0 +170738326473,268,0 +170738326521,268,0 +170738326569,268,0 +170738326617,268,0 +170738326665,268,0 +170738326713,268,0 +170738326761,268,0 +170738326809,268,0 +170738326857,268,0 +170738326905,268,0 +170738326953,269,0 +170738327001,268,0 +170738327050,268,0 +170738327098,268,0 +170738327148,268,0 +170738327197,268,0 +170738327245,268,0 +170738327293,268,0 +170738327341,268,0 +170738327389,268,0 +170738327438,268,0 +170738327486,268,0 +170738327536,268,0 +170738327584,268,0 +170738327632,268,0 +170738327680,268,0 +170738327728,268,0 +170738327777,268,0 +170738327825,268,0 +170738327874,268,0 +170738327924,268,0 +170738327972,268,0 +170738328020,268,0 +170738328069,268,0 +170738328117,268,0 +170738328165,268,0 +170738328213,268,0 +170738328263,268,0 +170738328311,269,0 +170738328360,268,0 +170738328408,268,0 +170738328458,268,0 +170738328506,268,0 +170738328554,268,0 +170738328602,268,0 +170738328650,268,0 +170738328698,268,0 +170738328746,268,0 +170738328794,268,0 +170738328843,269,0 +170738328891,268,0 +170738328939,268,0 +170738328987,269,0 +170738329035,268,0 +170738329083,268,0 +170738329132,268,0 +170738329180,268,0 +170738329228,268,0 +170738329276,268,0 +170738329324,269,0 +170738329372,269,0 +170738329422,269,0 +170738329471,268,0 +170738329521,268,0 +170738329570,268,0 +170738329618,268,0 +170738329666,268,0 +170738329714,268,0 +170738329762,268,0 +170738329810,268,0 +170738329858,268,0 +170738329906,268,0 +170738329954,268,0 +170738330003,268,0 +170738330051,268,0 +170738330099,268,0 +170738330147,268,0 +170738330197,268,0 +170738330245,268,0 +170738330293,268,0 +170738330342,268,0 +170738330392,269,0 +170738330441,268,0 +170738330489,268,0 +170738330537,268,0 +170738330587,268,0 +170738330635,268,0 +170738330683,268,0 +170738330731,268,0 +170738330780,268,0 +170738330828,268,0 +170738330876,268,0 +170738330924,268,0 +170738330972,268,0 +170738331020,268,0 +170738331068,268,0 +170738331118,269,0 +170738331167,268,0 +170738331217,268,0 +170738331266,268,0 +170738331314,268,0 +170738331362,269,0 +170738331411,268,0 +170738331459,269,0 +170738331507,268,0 +170738331557,268,0 +170738331606,268,0 +170738331654,268,0 +170738331704,268,0 +170738331753,269,0 +170738331801,268,0 +170738331849,268,0 +170738331897,268,0 +170738331945,268,0 +170738331995,269,0 +170738332043,268,0 +170738332091,268,0 +170738332139,268,0 +170738332186,268,0 +170738332234,268,0 +170738332282,269,0 +170738332330,268,0 +170738332378,268,0 +170738332426,268,0 +170738332474,269,0 +170738332522,268,0 +170738332570,268,0 +170738332618,268,0 +170738332666,268,0 +170738332714,268,0 +170738332762,268,0 +170738332810,268,0 +170738332858,268,0 +170738332907,268,0 +170738332955,268,0 +170738333003,269,0 +170738333051,268,0 +170738333101,268,0 +170738333149,269,0 +170738333197,269,0 +170738333245,269,0 +170738333293,268,0 +170738333341,269,0 +170738333389,269,0 +170738333438,268,0 +170738333486,269,0 +170738333536,269,0 +170738333584,269,0 +170738333632,268,0 +170738333680,268,0 +170738333727,268,0 +170738333777,268,0 +170738333827,268,0 +170738333876,269,0 +170738333924,268,0 +170738333972,268,0 +170738334020,268,0 +170738334068,268,0 +170738334116,268,0 +170738334164,268,0 +170738334213,268,0 +170738334261,268,0 +170738334309,268,0 +170738334359,268,0 +170738334407,268,0 +170738334455,268,0 +170738334503,268,0 +170738334552,268,0 +170738334600,268,0 +170738334648,268,0 +170738334696,268,0 +170738334744,268,0 +170738334792,269,0 +170738334840,268,0 +170738334889,268,0 +170738334937,268,0 +170738334985,268,0 +170738335035,268,0 +170738335083,268,0 +170738335132,268,0 +170738335182,269,0 +170738335230,268,0 +170738335279,268,0 +170738335327,268,0 +170738335375,268,0 +170738335423,268,0 +170738335471,268,0 +170738335519,268,0 +170738335567,268,0 +170738335615,268,0 +170738335663,268,0 +170738335713,268,0 +170738335762,268,0 +170738335812,268,0 +170738335860,268,0 +170738335908,268,0 +170738335956,268,0 +170738336004,268,0 +170738336053,268,0 +170738336101,268,0 +170738336149,268,0 +170738336197,268,0 +170738336246,268,0 +170738336294,268,0 +170738336342,268,0 +170738336390,269,0 +170738336438,268,0 +170738336488,268,0 +170738336536,268,0 +170738336584,268,0 +170738336631,268,0 +170738336679,268,0 +170738336727,268,0 +170738336777,268,0 +170738336825,268,0 +170738336873,269,0 +170738336921,268,0 +170738336969,268,0 +170738337017,268,0 +170738337066,268,0 +170738337114,268,0 +170738337164,268,0 +170738337212,268,0 +170738337261,268,0 +170738337309,268,0 +170738337357,268,0 +170738337405,268,0 +170738337453,269,0 +170738337501,268,0 +170738337549,268,0 +170738337599,268,0 +170738337647,268,0 +170738337695,268,0 +170738337743,268,0 +170738337791,268,0 +170738337839,268,0 +170738337886,269,0 +170738337934,268,0 +170738337984,268,0 +170738338034,268,0 +170738338081,268,0 +170738338129,268,0 +170738338179,268,0 +170738338227,268,0 +170738338275,269,0 +170738338324,269,0 +170738338374,268,0 +170738338422,268,0 +170738338470,268,0 +170738338518,268,0 +170738338566,269,0 +170738338614,268,0 +170738338662,269,0 +170738338710,268,0 +170738338758,268,0 +170738338807,268,0 +170738338857,268,0 +170738338905,269,0 +170738338953,268,0 +170738339001,268,0 +170738339049,268,0 +170738339096,268,0 +170738339144,268,0 +170738339194,268,0 +170738339244,268,0 +170738339293,268,0 +170738339341,268,0 +170738339389,268,0 +170738339437,268,0 +170738339487,268,0 +170738339534,268,0 +170738339583,269,0 +170738339632,268,0 +170738339681,269,0 +170738339731,269,0 +170738339780,268,0 +170738339828,268,0 +170738339876,268,0 +170738339924,268,0 +170738339972,268,0 +170738340020,268,0 +170738340068,268,0 +170738340118,268,0 +170738340166,268,0 +170738340214,268,0 +170738340262,268,0 +170738340310,268,0 +170738340357,268,0 +170738340407,269,0 +170738340455,268,0 +170738340504,269,0 +170738340552,268,0 +170738340602,268,0 +170738340650,268,0 +170738340698,268,0 +170738340746,268,0 +170738340794,268,0 +170738340842,269,0 +170738340890,268,0 +170738340938,268,0 +170738340986,268,0 +170738341034,268,0 +170738341081,268,0 +170738341131,268,0 +170738341179,269,0 +170738341227,269,0 +170738341275,269,0 +170738341323,269,0 +170738341371,269,0 +170738341419,268,0 +170738341468,268,0 +170738341516,268,0 +170738341566,268,0 +170738341614,268,0 +170738341662,268,0 +170738341710,268,0 +170738341758,268,0 +170738341807,268,0 +170738341855,268,0 +170738341903,268,0 +170738341953,268,0 +170738342001,268,0 +170738342048,268,0 +170738342096,268,0 +170738342144,268,0 +170738342192,268,0 +170738342240,269,0 +170738342288,268,0 +170738342336,268,0 +170738342384,268,0 +170738342432,268,0 +170738342480,268,0 +170738342530,268,0 +170738342579,268,0 +170738342627,269,0 +170738342675,268,0 +170738342723,268,0 +170738342773,268,0 +170738342822,268,0 +170738342872,268,0 +170738342920,269,0 +170738342969,268,0 +170738343019,268,0 +170738343067,268,0 +170738343115,268,0 +170738343164,268,0 +170738343212,268,0 +170738343260,269,0 +170738343308,268,0 +170738343356,268,0 +170738343404,268,0 +170738343452,268,0 +170738343500,268,0 +170738343549,268,0 +170738343599,268,0 +170738343647,268,0 +170738343696,268,0 +170738343744,268,0 +170738343792,268,0 +170738343842,268,0 +170738343890,268,0 +170738343938,268,0 +170738343987,268,0 +170738344037,268,0 +170738344085,268,0 +170738344133,268,0 +170738344183,269,0 +170738344230,268,0 +170738344278,268,0 +170738344328,268,0 +170738344376,268,0 +170738344424,268,0 +170738344472,268,0 +170738344521,269,0 +170738344569,268,0 +170738344617,268,0 +170738344667,268,0 +170738344716,269,0 +170738344766,268,0 +170738344814,268,0 +170738344862,268,0 +170738344910,268,0 +170738344959,268,0 +170738345009,269,0 +170738345057,268,0 +170738345105,268,0 +170738345153,268,0 +170738345202,268,0 +170738345250,268,0 +170738345298,268,0 +170738345348,269,0 +170738345396,268,0 +170738345444,268,0 +170738345492,268,0 +170738345540,268,0 +170738345589,268,0 +170738345638,268,0 +170738345686,268,0 +170738345734,268,0 +170738345782,269,0 +170738345830,268,0 +170738345878,268,0 +170738345926,268,0 +170738345976,268,0 +170738346024,268,0 +170738346072,268,0 +170738346120,268,0 +170738346168,268,0 +170738346216,268,0 +170738346264,268,0 +170738346312,269,0 +170738346360,268,0 +170738346408,268,0 +170738346457,268,0 +170738346507,268,0 +170738346555,268,0 +170738346604,268,0 +170738346654,268,0 +170738346702,268,0 +170738346750,268,0 +170738346798,268,0 +170738346846,268,0 +170738346894,268,0 +170738346942,268,0 +170738346990,269,0 +170738347038,268,0 +170738347085,268,0 +170738347133,269,0 +170738347181,269,0 +170738347231,268,0 +170738347279,268,0 +170738347327,268,0 +170738347375,268,0 +170738347423,268,0 +170738347471,268,0 +170738347519,268,0 +170738347566,268,0 +170738347616,268,0 +170738347666,268,0 +170738347714,268,0 +170738347762,268,0 +170738347810,269,0 +170738347858,269,0 +170738347906,268,0 +170738347953,268,0 +170738348001,268,0 +170738348049,269,0 +170738348097,269,0 +170738348145,268,0 +170738348193,268,0 +170738348241,268,0 +170738348289,268,0 +170738348337,268,0 +170738348386,268,0 +170738348434,269,0 +170738348482,268,0 +170738348530,268,0 +170738348578,268,0 +170738348626,269,0 +170738348674,268,0 +170738348722,268,0 +170738348770,268,0 +170738348818,268,0 +170738348866,268,0 +170738348915,269,0 +170738348963,268,0 +170738349013,268,0 +170738349061,268,0 +170738349109,269,0 +170738349156,268,0 +170738349204,268,0 +170738349254,268,0 +170738349302,269,0 +170738349350,268,0 +170738349400,268,0 +170738349448,268,0 +170738349496,268,0 +170738349543,268,0 +170738349591,268,0 +170738349639,268,0 +170738349687,268,0 +170738349737,269,0 +170738349785,268,0 +170738349833,268,0 +170738349881,268,0 +170738349929,268,0 +170738349977,268,0 +170738350026,268,0 +170738350076,269,0 +170738350125,268,0 +170738350173,268,0 +170738350223,268,0 +170738350271,268,0 +170738350320,268,0 +170738350370,268,0 +170738350418,268,0 +170738350466,269,0 +170738350514,269,0 +170738350563,268,0 +170738350611,269,0 +170738350661,269,0 +170738350709,268,0 +170738350757,268,0 +170738350805,268,0 +170738350853,268,0 +170738350902,268,0 +170738350950,268,0 +170738351000,268,0 +170738351047,268,0 +170738351095,268,0 +170738351145,268,0 +170738351193,269,0 +170738351242,268,0 +170738351292,268,0 +170738351340,268,0 +170738351390,268,0 +170738351438,268,0 +170738351487,268,0 +170738351535,268,0 +170738351583,268,0 +170738351631,268,0 +170738351679,268,0 +170738351729,268,0 +170738351777,268,0 +170738351826,268,0 +170738351874,268,0 +170738351924,268,0 +170738351971,268,0 +170738352021,268,0 +170738352070,268,0 +170738352118,268,0 +170738352166,268,0 +170738352214,268,0 +170738352262,268,0 +170738352310,268,0 +170738352358,268,0 +170738352408,268,0 +170738352456,268,0 +170738352505,268,0 +170738352553,268,0 +170738352603,269,0 +170738352651,268,0 +170738352700,268,0 +170738352748,268,0 +170738352796,268,0 +170738352844,268,0 +170738352892,268,0 +170738352941,268,0 +170738352989,268,0 +170738353039,268,0 +170738353088,268,0 +170738353136,268,0 +170738353184,268,0 +170738353234,268,0 +170738353282,268,0 +170738353330,268,0 +170738353378,268,0 +170738353426,268,0 +170738353474,268,0 +170738353522,268,0 +170738353570,269,0 +170738353618,268,0 +170738353666,268,0 +170738353713,268,0 +170738353763,269,0 +170738353812,268,0 +170738353860,268,0 +170738353910,268,0 +170738353960,268,0 +170738354008,268,0 +170738354057,268,0 +170738354105,268,0 +170738354155,268,0 +170738354203,268,0 +170738354251,269,0 +170738354300,268,0 +170738354350,268,0 +170738354399,269,0 +170738354447,268,0 +170738354497,268,0 +170738354544,268,0 +170738354592,268,0 +170738354640,269,0 +170738354688,269,0 +170738354736,268,0 +170738354784,268,0 +170738354832,268,0 +170738354880,268,0 +170738354927,268,0 +170738354975,268,0 +170738355023,268,0 +170738355071,268,0 +170738355119,268,0 +170738355167,268,0 +170738355215,268,0 +170738355262,268,0 +170738355310,268,0 +170738355360,268,0 +170738355409,268,0 +170738355459,268,0 +170738355507,269,0 +170738355554,268,0 +170738355602,268,0 +170738355650,268,0 +170738355698,268,0 +170738355746,268,0 +170738355794,269,0 +170738355842,268,0 +170738355890,268,0 +170738355938,269,0 +170738355985,268,0 +170738356033,268,0 +170738356081,269,0 +170738356129,268,0 +170738356177,269,0 +170738356225,268,0 +170738356273,268,0 +170738356320,268,0 +170738356368,268,0 +170738356416,268,0 +170738356466,268,0 +170738356514,268,0 +170738356562,269,0 +170738356610,268,0 +170738356657,268,0 +170738356705,268,0 +170738356753,269,0 +170738356803,268,0 +170738356851,268,0 +170738356899,268,0 +170738356948,268,0 +170738356998,268,0 +170738357046,268,0 +170738357094,269,0 +170738357142,269,0 +170738357190,268,0 +170738357239,268,0 +170738357287,269,0 +170738357337,268,0 +170738357385,268,0 +170738357434,268,0 +170738357482,268,0 +170738357530,268,0 +170738357578,268,0 +170738357626,268,0 +170738357674,268,0 +170738357722,268,0 +170738357770,268,0 +170738357819,268,0 +170738357867,268,0 +170738357917,268,0 +170738357965,268,0 +170738358013,268,0 +170738358062,268,0 +170738358110,268,0 +170738358158,268,0 +170738358206,269,0 +170738358254,268,0 +170738358302,268,0 +170738358349,268,0 +170738358399,268,0 +170738358447,268,0 +170738358496,268,0 +170738358544,268,0 +170738358592,268,0 +170738358642,268,0 +170738358689,268,0 +170738358737,268,0 +170738358785,268,0 +170738358833,268,0 +170738358881,268,0 +170738358929,268,0 +170738358978,268,0 +170738359026,268,0 +170738359074,268,0 +170738359122,268,0 +170738359170,269,0 +170738359218,268,0 +170738359266,268,0 +170738359314,268,0 +170738359362,268,0 +170738359411,268,0 +170738359459,268,0 +170738359507,268,0 +170738359555,268,0 +170738359604,268,0 +170738359652,269,0 +170738359702,268,0 +170738359750,268,0 +170738359800,269,0 +170738359848,268,0 +170738359896,268,0 +170738359944,268,0 +170738359991,268,0 +170738360039,268,0 +170738360087,268,0 +170738360135,268,0 +170738360183,268,0 +170738360231,268,0 +170738360279,268,0 +170738360327,268,0 +170738360377,268,0 +170738360424,268,0 +170738360472,268,0 +170738360520,268,0 +170738360568,268,0 +170738360616,268,0 +170738360664,268,0 +170738360712,268,0 +170738360760,268,0 +170738360810,268,0 +170738360858,268,0 +170738360906,268,0 +170738360954,268,0 +170738361002,268,0 +170738361051,268,0 +170738361099,268,0 +170738361147,268,0 +170738361195,267,0 +170738361243,268,0 +170738361291,268,0 +170738361340,268,0 +170738361388,268,0 +170738361436,268,0 +170738361486,268,0 +170738361534,268,0 +170738361582,268,0 +170738361630,268,0 +170738361678,269,0 +170738361727,269,0 +170738361775,268,0 +170738361823,268,0 +170738361873,268,0 +170738361920,268,0 +170738361968,268,0 +170738362016,268,0 +170738362064,268,0 +170738362112,268,0 +170738362161,268,0 +170738362209,268,0 +170738362259,268,0 +170738362307,268,0 +170738362354,268,0 +170738362402,268,0 +170738362452,269,0 +170738362500,268,0 +170738362548,269,0 +170738362595,268,0 +170738362643,268,0 +170738362691,268,0 +170738362741,268,0 +170738362789,268,0 +170738362836,269,0 +170738362884,268,0 +170738362932,269,0 +170738362980,268,0 +170738363028,268,0 +170738363077,268,0 +170738363125,268,0 +170738363173,268,0 +170738363221,268,0 +170738363271,268,0 +170738363319,268,0 +170738363367,268,0 +170738363415,268,0 +170738363463,268,0 +170738363511,268,0 +170738363559,269,0 +170738363607,268,0 +170738363655,268,0 +170738363703,268,0 +170738363750,268,0 +170738363798,268,0 +170738363848,268,0 +170738363896,268,0 +170738363946,269,0 +170738363995,268,0 +170738364043,268,0 +170738364091,269,0 +170738364139,268,0 +170738364187,269,0 +170738364237,268,0 +170738364286,268,0 +170738364334,268,0 +170738364382,268,0 +170738364430,269,0 +170738364478,268,0 +170738364526,268,0 +170738364574,268,0 +170738364622,268,0 +170738364670,268,0 +170738364718,268,0 +170738364767,268,0 +170738364815,268,0 +170738364865,268,0 +170738364914,268,0 +170738364962,268,0 +170738365010,268,0 +170738365058,268,0 +170738365106,268,0 +170738365154,268,0 +170738365204,268,0 +170738365252,268,0 +170738365301,268,0 +170738365349,268,0 +170738365397,268,0 +170738365445,268,0 +170738365495,268,0 +170738365543,268,0 +170738365590,269,0 +170738365638,268,0 +170738365686,268,0 +170738365736,268,0 +170738365784,268,0 +170738365833,268,0 +170738365881,268,0 +170738365929,268,0 +170738365977,268,0 +170738366025,268,0 +170738366073,268,0 +170738366121,268,0 +170738366171,268,0 +170738366219,268,0 +170738366266,268,0 +170738366314,268,0 +170738366364,269,0 +170738366413,268,0 +170738366461,268,0 +170738366509,268,0 +170738366557,269,0 +170738366607,268,0 +170738366656,269,0 +170738366704,268,0 +170738366752,268,0 +170738366800,268,0 +170738366848,268,0 +170738366896,268,0 +170738366944,268,0 +170738366992,268,0 +170738367040,268,0 +170738367088,268,0 +170738367138,268,0 +170738367187,268,0 +170738367235,268,0 +170738367283,268,0 +170738367331,268,0 +170738367379,268,0 +170738367427,268,0 +170738367476,268,0 +170738367524,268,0 +170738367572,268,0 +170738367620,268,0 +170738367668,268,0 +170738367717,268,0 +170738367765,268,0 +170738367813,268,0 +170738367861,268,0 +170738367909,268,0 +170738367959,268,0 +170738368007,268,0 +170738368056,268,0 +170738368106,267,0 +170738368155,268,0 +170738368203,268,0 +170738368251,268,0 +170738368299,268,0 +170738368349,268,0 +170738368398,268,0 +170738368448,268,0 +170738368496,268,0 +170738368545,268,0 +170738368593,268,0 +170738368641,268,0 +170738368691,268,0 +170738368740,268,0 +170738368790,268,0 +170738368840,269,0 +170738368887,269,0 +170738368935,268,0 +170738368983,268,0 +170738369032,268,0 +170738369080,268,0 +170738369128,268,0 +170738369176,268,0 +170738369224,269,0 +170738369272,268,0 +170738369320,268,0 +170738369368,268,0 +170738369415,268,0 +170738369465,268,0 +170738369513,268,0 +170738369561,268,0 +170738369609,268,0 +170738369657,268,0 +170738369706,269,0 +170738369754,268,0 +170738369802,268,0 +170738369852,269,0 +170738369900,268,0 +170738369948,268,0 +170738369996,269,0 +170738370044,268,0 +170738370092,268,0 +170738370140,268,0 +170738370188,268,0 +170738370236,268,0 +170738370285,268,0 +170738370333,268,0 +170738370382,268,0 +170738370432,268,0 +170738370480,268,0 +170738370528,269,0 +170738370576,268,0 +170738370625,268,0 +170738370675,268,0 +170738370724,268,0 +170738370772,268,0 +170738370822,268,0 +170738370871,268,0 +170738370919,268,0 +170738370967,268,0 +170738371017,268,0 +170738371066,268,0 +170738371116,268,0 +170738371164,269,0 +170738371212,268,0 +170738371261,269,0 +170738371311,268,0 +170738371360,268,0 +170738371408,268,0 +170738371456,268,0 +170738371504,268,0 +170738371552,268,0 +170738371600,268,0 +170738371647,268,0 +170738371697,268,0 +170738371745,268,0 +170738371793,268,0 +170738371841,268,0 +170738371890,268,0 +170738371940,268,0 +170738371988,268,0 +170738372036,268,0 +170738372084,268,0 +170738372131,268,0 +170738372179,268,0 +170738372227,268,0 +170738372275,268,0 +170738372323,268,0 +170738372371,269,0 +170738372420,268,0 +170738372468,268,0 +170738372516,268,0 +170738372564,269,0 +170738372613,269,0 +170738372661,268,0 +170738372711,268,0 +170738372759,268,0 +170738372807,269,0 +170738372856,269,0 +170738372906,268,0 +170738372954,269,0 +170738373002,269,0 +170738373051,268,0 +170738373099,268,0 +170738373149,268,0 +170738373196,268,0 +170738373244,269,0 +170738373292,268,0 +170738373342,268,0 +170738373390,268,0 +170738373438,268,0 +170738373486,268,0 +170738373534,268,0 +170738373581,268,0 +170738373629,268,0 +170738373677,268,0 +170738373725,268,0 +170738373773,268,0 +170738373821,268,0 +170738373869,268,0 +170738373917,268,0 +170738373965,268,0 +170738374013,268,0 +170738374062,268,0 +170738374112,268,0 +170738374160,268,0 +170738374208,268,0 +170738374256,268,0 +170738374305,268,0 +170738374353,268,0 +170738374401,268,0 +170738374449,268,0 +170738374497,268,0 +170738374545,268,0 +170738374593,268,0 +170738374642,268,0 +170738374690,268,0 +170738374739,268,0 +170738374786,268,0 +170738374834,268,0 +170738374884,268,0 +170738374933,269,0 +170738374983,269,0 +170738375032,269,0 +170738375080,269,0 +170738375128,268,0 +170738375176,268,0 +170738375224,269,0 +170738375272,269,0 +170738375320,269,0 +170738375370,268,0 +170738375419,268,0 +170738375467,268,0 +170738375517,268,0 +170738375566,269,0 +170738375616,268,0 +170738375663,268,0 +170738375711,268,0 +170738375759,268,0 +170738375809,269,0 +170738375857,269,0 +170738375905,268,0 +170738375954,268,0 +170738376002,268,0 +170738376052,268,0 +170738376100,268,0 +170738376149,268,0 +170738376199,268,0 +170738376248,268,0 +170738376296,268,0 +170738376346,268,0 +170738376395,268,0 +170738376443,268,0 +170738376491,269,0 +170738376539,268,0 +170738376587,268,0 +170738376635,268,0 +170738376683,268,0 +170738376731,268,0 +170738376779,268,0 +170738376827,268,0 +170738376874,268,0 +170738376922,268,0 +170738376970,268,0 +170738377020,268,0 +170738377068,268,0 +170738377115,268,0 +170738377163,268,0 +170738377211,268,0 +170738377259,268,0 +170738377307,268,0 +170738377355,268,0 +170738377403,268,0 +170738377451,268,0 +170738377499,268,0 +170738377546,268,0 +170738377594,268,0 +170738377644,268,0 +170738377692,268,0 +170738377739,269,0 +170738377787,268,0 +170738377835,268,0 +170738377883,268,0 +170738377931,268,0 +170738377979,268,0 +170738378028,268,0 +170738378076,268,0 +170738378124,268,0 +170738378172,268,0 +170738378220,269,0 +170738378268,268,0 +170738378316,269,0 +170738378363,268,0 +170738378411,268,0 +170738378459,268,0 +170738378507,269,0 +170738378555,268,0 +170738378603,269,0 +170738378651,268,0 +170738378699,268,0 +170738378747,268,0 +170738378794,268,0 +170738378842,268,0 +170738378890,268,0 +170738378938,268,0 +170738378986,268,0 +170738379034,268,0 +170738379082,269,0 +170738379130,268,0 +170738379177,268,0 +170738379225,268,0 +170738379273,268,0 +170738379321,268,0 +170738379369,268,0 +170738379417,268,0 +170738379465,268,0 +170738379513,269,0 +170738379561,268,0 +170738379609,268,0 +170738379657,268,0 +170738379705,268,0 +170738379752,268,0 +170738379800,268,0 +170738379848,268,0 +170738379896,268,0 +170738379944,268,0 +170738379993,268,0 +170738380041,268,0 +170738380091,268,0 +170738380139,268,0 +170738380187,268,0 +170738380234,268,0 +170738380282,268,0 +170738380330,268,0 +170738380378,269,0 +170738380426,268,0 +170738380474,268,0 +170738380523,268,0 +170738380571,268,0 +170738380619,268,0 +170738380667,268,0 +170738380715,269,0 +170738380763,269,0 +170738380811,268,0 +170738380858,269,0 +170738380908,268,0 +170738380957,269,0 +170738381005,269,0 +170738381053,268,0 +170738381101,268,0 +170738381149,268,0 +170738381197,268,0 +170738381245,268,0 +170738381293,268,0 +170738381340,268,0 +170738381388,269,0 +170738381436,268,0 +170738381484,268,0 +170738381532,268,0 +170738381580,269,0 +170738381629,269,0 +170738381677,268,0 +170738381725,268,0 +170738381773,268,0 +170738381822,268,0 +170738381870,268,0 +170738381918,268,0 +170738381966,268,0 +170738382014,268,0 +170738382062,269,0 +170738382110,268,0 +170738382157,268,0 +170738382205,269,0 +170738382253,269,0 +170738382301,268,0 +170738382349,268,0 +170738382397,268,0 +170738382445,268,0 +170738382493,268,0 +170738382541,269,0 +170738382589,268,0 +170738382638,268,0 +170738382686,268,0 +170738382734,269,0 +170738382782,269,0 +170738382830,269,0 +170738382878,268,0 +170738382926,268,0 +170738382974,268,0 +170738383024,269,0 +170738383073,268,0 +170738383121,268,0 +170738383171,269,0 +170738383220,268,0 +170738383268,268,0 +170738383316,269,0 +170738383364,269,0 +170738383412,268,0 +170738383460,268,0 +170738383510,268,0 +170738383558,268,0 +170738383606,268,0 +170738383654,269,0 +170738383703,268,0 +170738383751,269,0 +170738383801,268,0 +170738383849,268,0 +170738383897,268,0 +170738383945,269,0 +170738383993,268,0 +170738384040,268,0 +170738384090,268,0 +170738384138,268,0 +170738384186,268,0 +170738384235,268,0 +170738384285,268,0 +170738384333,268,0 +170738384381,269,0 +170738384429,268,0 +170738384477,268,0 +170738384525,268,0 +170738384573,268,0 +170738384621,268,0 +170738384669,268,0 +170738384718,269,0 +170738384766,268,0 +170738384814,268,0 +170738384864,268,0 +170738384912,268,0 +170738384960,268,0 +170738385007,268,0 +170738385055,268,0 +170738385103,268,0 +170738385153,268,0 +170738385201,268,0 +170738385249,268,0 +170738385297,268,0 +170738385345,269,0 +170738385394,268,0 +170738385442,267,0 +170738385492,268,0 +170738385540,268,0 +170738385589,268,0 +170738385637,268,0 +170738385685,268,0 +170738385735,268,0 +170738385783,268,0 +170738385831,268,0 +170738385879,268,0 +170738385927,269,0 +170738385975,268,0 +170738386022,268,0 +170738386070,268,0 +170738386118,268,0 +170738386166,268,0 +170738386214,268,0 +170738386262,268,0 +170738386310,268,0 +170738386358,268,0 +170738386406,268,0 +170738386454,268,0 +170738386502,268,0 +170738386550,268,0 +170738386598,268,0 +170738386646,268,0 +170738386695,268,0 +170738386743,268,0 +170738386791,268,0 +170738386841,269,0 +170738386888,268,0 +170738386936,268,0 +170738386984,268,0 +170738387032,268,0 +170738387080,268,0 +170738387128,268,0 +170738387177,268,0 +170738387227,268,0 +170738387276,269,0 +170738387326,268,0 +170738387375,268,0 +170738387425,268,0 +170738387474,268,0 +170738387522,268,0 +170738387570,268,0 +170738387618,268,0 +170738387668,268,0 +170738387716,268,0 +170738387763,268,0 +170738387811,268,0 +170738387859,268,0 +170738387907,268,0 +170738387957,268,0 +170738388004,268,0 +170738388052,268,0 +170738388100,268,0 +170738388148,268,0 +170738388196,268,0 +170738388244,268,0 +170738388293,268,0 +170738388343,268,0 +170738388391,268,0 +170738388440,268,0 +170738388490,268,0 +170738388538,268,0 +170738388586,268,0 +170738388634,268,0 +170738388682,268,0 +170738388729,268,0 +170738388777,268,0 +170738388825,269,0 +170738388873,268,0 +170738388921,268,0 +170738388969,268,0 +170738389017,268,0 +170738389065,268,0 +170738389114,268,0 +170738389162,269,0 +170738389212,268,0 +170738389260,268,0 +170738389308,268,0 +170738389355,268,0 +170738389403,268,0 +170738389451,268,0 +170738389499,268,0 +170738389547,268,0 +170738389595,268,0 +170738389645,268,0 +170738389693,268,0 +170738389740,268,0 +170738389788,268,0 +170738389836,268,0 +170738389884,268,0 +170738389932,268,0 +170738389980,268,0 +170738390028,268,0 +170738390077,268,0 +170738390125,268,0 +170738390173,268,0 +170738390221,269,0 +170738390269,268,0 +170738390317,268,0 +170738390365,268,0 +170738390413,268,0 +170738390461,268,0 +170738390509,268,0 +170738390557,268,0 +170738390605,268,0 +170738390653,268,0 +170738390702,268,0 +170738390750,268,0 +170738390798,268,0 +170738390846,268,0 +170738390896,268,0 +170738390944,268,0 +170738390993,268,0 +170738391041,268,0 +170738391089,268,0 +170738391137,268,0 +170738391185,268,0 +170738391233,268,0 +170738391281,268,0 +170738391329,269,0 +170738391377,268,0 +170738391425,268,0 +170738391474,268,0 +170738391522,268,0 +170738391570,269,0 +170738391620,268,0 +170738391668,268,0 +170738391715,268,0 +170738391763,268,0 +170738391811,268,0 +170738391859,268,0 +170738391907,268,0 +170738391955,268,0 +170738392003,268,0 +170738392051,268,0 +170738392099,268,0 +170738392146,268,0 +170738392194,268,0 +170738392242,268,0 +170738392290,268,0 +170738392338,268,0 +170738392386,268,0 +170738392434,268,0 +170738392482,268,0 +170738392530,268,0 +170738392578,268,0 +170738392625,268,0 +170738392673,268,0 +170738392721,268,0 +170738392769,268,0 +170738392817,268,0 +170738392865,268,0 +170738392915,268,0 +170738392964,268,0 +170738393012,268,0 +170738393060,268,0 +170738393110,268,0 +170738393158,268,0 +170738393207,268,0 +170738393257,268,0 +170738393305,268,0 +170738393353,268,0 +170738393401,268,0 +170738393448,268,0 +170738393498,268,0 +170738393547,268,0 +170738393595,268,0 +170738393643,268,0 +170738393691,268,0 +170738393739,268,0 +170738393787,268,0 +170738393835,268,0 +170738393883,268,0 +170738393931,268,0 +170738393979,268,0 +170738394027,268,0 +170738394075,267,0 +170738394123,268,0 +170738394171,268,0 +170738394219,268,0 +170738394267,268,0 +170738394315,268,0 +170738394363,268,0 +170738394411,268,0 +170738394459,267,0 +170738394507,268,0 +170738394556,269,0 +170738394606,268,0 +170738394655,268,0 +170738394703,268,0 +170738394751,268,0 +170738394801,268,0 +170738394850,268,0 +170738394900,268,0 +170738394948,268,0 +170738394996,268,0 +170738395044,268,0 +170738395093,268,0 +170738395143,268,0 +170738395191,268,0 +170738395240,268,0 +170738395288,268,0 +170738395336,268,0 +170738395386,268,0 +170738395434,268,0 +170738395482,268,0 +170738395531,268,0 +170738395579,268,0 +170738395627,269,0 +170738395675,268,0 +170738395723,268,0 +170738395771,267,0 +170738395819,268,0 +170738395866,268,0 +170738395914,268,0 +170738395962,268,0 +170738396010,268,0 +170738396058,268,0 +170738396106,268,0 +170738396156,268,0 +170738396204,268,0 +170738396252,268,0 +170738396300,268,0 +170738396348,268,0 +170738396396,268,0 +170738396444,268,0 +170738396493,268,0 +170738396541,268,0 +170738396589,268,0 +170738396639,268,0 +170738396687,268,0 +170738396736,268,0 +170738396784,268,0 +170738396832,268,0 +170738396880,268,0 +170738396928,268,0 +170738396976,268,0 +170738397024,268,0 +170738397072,268,0 +170738397120,268,0 +170738397169,267,0 +170738397217,268,0 +170738397267,268,0 +170738397315,268,0 +170738397363,268,0 +170738397411,268,0 +170738397459,268,0 +170738397507,268,0 +170738397555,268,0 +170738397604,268,0 +170738397654,268,0 +170738397702,268,0 +170738397751,268,0 +170738397799,268,0 +170738397847,268,0 +170738397895,268,0 +170738397943,268,0 +170738397991,268,0 +170738398039,268,0 +170738398087,268,0 +170738398136,268,0 +170738398185,268,0 +170738398233,268,0 +170738398283,268,0 +170738398332,268,0 +170738398380,268,0 +170738398430,268,0 +170738398478,268,0 +170738398526,268,0 +170738398574,268,0 +170738398622,268,0 +170738398670,268,0 +170738398718,268,0 +170738398766,268,0 +170738398813,268,0 +170738398863,268,0 +170738398911,267,0 +170738398959,268,0 +170738399008,268,0 +170738399056,268,0 +170738399104,268,0 +170738399152,268,0 +170738399200,268,0 +170738399248,268,0 +170738399296,268,0 +170738399344,268,0 +170738399392,268,0 +170738399441,268,0 +170738399489,268,0 +170738399537,268,0 +170738399585,268,0 +170738399633,268,0 +170738399682,268,0 +170738399732,268,0 +170738399780,268,0 +170738399828,268,0 +170738399875,268,0 +170738399923,268,0 +170738399971,268,0 +170738400019,268,0 +170738400067,268,0 +170738400116,269,0 +170738400164,268,0 +170738400212,268,0 +170738400260,268,0 +170738400308,268,0 +170738400356,268,0 +170738400404,267,0 +170738400452,268,0 +170738400500,268,0 +170738400547,268,0 +170738400595,268,0 +170738400645,268,0 +170738400693,268,0 +170738400740,268,0 +170738400788,268,0 +170738400838,268,0 +170738400886,268,0 +170738400934,268,0 +170738400982,268,0 +170738401029,268,0 +170738401079,268,0 +170738401127,268,0 +170738401175,268,0 +170738401223,268,0 +170738401270,268,0 +170738401318,268,0 +170738401366,268,0 +170738401414,268,0 +170738401464,267,0 +170738401512,268,0 +170738401561,268,0 +170738401609,268,0 +170738401657,268,0 +170738401705,268,0 +170738401753,268,0 +170738401801,267,0 +170738401849,268,0 +170738401898,268,0 +170738401946,268,0 +170738401994,268,0 +170738402042,267,0 +170738402090,268,0 +170738402139,268,0 +170738402187,268,0 +170738402237,268,0 +170738402285,267,0 +170738402332,268,0 +170738402380,268,0 +170738402430,268,0 +170738402478,268,0 +170738402526,268,0 +170738402574,268,0 +170738402623,268,0 +170738402673,268,0 +170738402722,268,0 +170738402770,268,0 +170738402818,268,0 +170738402866,269,0 +170738402914,268,0 +170738402963,268,0 +170738403011,268,0 +170738403059,268,0 +170738403107,268,0 +170738403155,268,0 +170738403203,268,0 +170738403251,268,0 +170738403301,268,0 +170738403350,268,0 +170738403398,268,0 +170738403446,268,0 +170738403494,268,0 +170738403542,268,0 +170738403592,268,0 +170738403640,268,0 +170738403688,268,0 +170738403736,268,0 +170738403784,268,0 +170738403833,268,0 +170738403882,268,0 +170738403930,268,0 +170738403978,268,0 +170738404028,268,0 +170738404076,268,0 +170738404124,268,0 +170738404172,268,0 +170738404221,268,0 +170738404269,268,0 +170738404317,268,0 +170738404365,268,0 +170738404415,268,0 +170738404463,268,0 +170738404511,267,0 +170738404559,268,0 +170738404608,268,0 +170738404656,268,0 +170738404704,268,0 +170738404752,268,0 +170738404800,268,0 +170738404848,268,0 +170738404896,268,0 +170738404944,268,0 +170738404993,268,0 +170738405041,268,0 +170738405089,268,0 +170738405139,268,0 +170738405187,268,0 +170738405236,268,0 +170738405284,268,0 +170738405334,268,0 +170738405383,268,0 +170738405433,268,0 +170738405481,268,0 +170738405529,268,0 +170738405578,268,0 +170738405626,268,0 +170738405676,268,0 +170738405725,268,0 +170738405773,268,0 +170738405821,268,0 +170738405871,269,0 +170738405919,268,0 +170738405967,268,0 +170738406015,268,0 +170738406063,268,0 +170738406111,268,0 +170738406159,268,0 +170738406206,268,0 +170738406256,268,0 +170738406304,268,0 +170738406354,267,0 +170738406402,267,0 +170738406450,268,0 +170738406498,268,0 +170738406546,267,0 +170738406594,268,0 +170738406643,268,0 +170738406691,268,0 +170738406739,268,0 +170738406787,268,0 +170738406836,268,0 +170738406886,268,0 +170738406934,268,0 +170738406983,268,0 +170738407031,268,0 +170738407079,268,0 +170738407127,268,0 +170738407175,267,0 +170738407223,268,0 +170738407271,268,0 +170738407321,268,0 +170738407369,268,0 +170738407418,267,0 +170738407466,268,0 +170738407514,268,0 +170738407563,268,0 +170738407611,268,0 +170738407661,268,0 +170738407710,268,0 +170738407758,268,0 +170738407808,268,0 +170738407856,268,0 +170738407905,268,0 +170738407953,268,0 +170738408001,268,0 +170738408049,267,0 +170738408097,268,0 +170738408145,268,0 +170738408193,268,0 +170738408241,268,0 +170738408289,268,0 +170738408339,268,0 +170738408387,268,0 +170738408436,268,0 +170738408486,268,0 +170738408534,268,0 +170738408583,268,0 +170738408631,268,0 +170738408681,268,0 +170738408729,268,0 +170738408777,268,0 +170738408825,268,0 +170738408873,268,0 +170738408921,268,0 +170738408969,268,0 +170738409017,268,0 +170738409065,268,0 +170738409113,267,0 +170738409161,268,0 +170738409208,268,0 +170738409256,268,0 +170738409304,268,0 +170738409354,268,0 +170738409402,268,0 +170738409450,268,0 +170738409498,267,0 +170738409546,268,0 +170738409594,268,0 +170738409642,268,0 +170738409691,268,0 +170738409739,268,0 +170738409789,268,0 +170738409836,268,0 +170738409884,268,0 +170738409934,268,0 +170738409982,267,0 +170738410031,268,0 +170738410080,268,0 +170738410128,268,0 +170738410175,268,0 +170738410223,268,0 +170738410271,268,0 +170738410321,268,0 +170738410369,268,0 +170738410418,268,0 +170738410466,268,0 +170738410516,268,0 +170738410564,268,0 +170738410612,268,0 +170738410660,268,0 +170738410708,268,0 +170738410756,268,0 +170738410805,268,0 +170738410853,267,0 +170738410901,268,0 +170738410949,268,0 +170738410997,268,0 +170738411045,268,0 +170738411093,268,0 +170738411141,268,0 +170738411189,268,0 +170738411237,268,0 +170738411285,268,0 +170738411334,268,0 +170738411382,268,0 +170738411430,268,0 +170738411478,268,0 +170738411526,268,0 +170738411574,268,0 +170738411624,268,0 +170738411673,268,0 +170738411721,267,0 +170738411769,267,0 +170738411817,268,0 +170738411867,268,0 +170738411914,268,0 +170738411964,268,0 +170738412012,268,0 +170738412061,268,0 +170738412109,268,0 +170738412157,267,0 +170738412205,267,0 +170738412253,268,0 +170738412301,268,0 +170738412351,268,0 +170738412399,268,0 +170738412447,268,0 +170738412495,268,0 +170738412543,268,0 +170738412590,268,0 +170738412640,268,0 +170738412688,268,0 +170738412736,268,0 +170738412785,268,0 +170738412833,268,0 +170738412881,268,0 +170738412931,268,0 +170738412980,268,0 +170738413028,268,0 +170738413076,268,0 +170738413124,267,0 +170738413172,268,0 +170738413220,268,0 +170738413268,267,0 +170738413316,268,0 +170738413366,268,0 +170738413414,268,0 +170738413463,268,0 +170738413511,268,0 +170738413561,268,0 +170738413609,268,0 +170738413657,268,0 +170738413704,268,0 +170738413754,268,0 +170738413802,268,0 +170738413850,268,0 +170738413899,268,0 +170738413947,268,0 +170738413995,268,0 +170738414045,268,0 +170738414094,268,0 +170738414142,267,0 +170738414190,268,0 +170738414240,268,0 +170738414288,268,0 +170738414337,268,0 +170738414387,268,0 +170738414434,267,0 +170738414484,268,0 +170738414532,268,0 +170738414580,268,0 +170738414628,268,0 +170738414677,268,0 +170738414725,268,0 +170738414775,268,0 +170738414824,268,0 +170738414872,268,0 +170738414920,268,0 +170738414968,268,0 +170738415016,267,0 +170738415066,268,0 +170738415114,268,0 +170738415162,267,0 +170738415211,268,0 +170738415259,267,0 +170738415309,268,0 +170738415357,268,0 +170738415405,268,0 +170738415453,268,0 +170738415501,268,0 +170738415550,268,0 +170738415598,267,0 +170738415646,268,0 +170738415694,268,0 +170738415742,268,0 +170738415790,268,0 +170738415839,268,0 +170738415887,268,0 +170738415935,268,0 +170738415984,268,0 +170738416032,268,0 +170738416080,267,0 +170738416128,268,0 +170738416176,268,0 +170738416225,268,0 +170738416273,268,0 +170738416321,268,0 +170738416369,268,0 +170738416417,268,0 +170738416465,268,0 +170738416513,268,0 +170738416561,268,0 +170738416608,268,0 +170738416656,268,0 +170738416704,268,0 +170738416752,268,0 +170738416802,268,0 +170738416850,268,0 +170738416897,268,0 +170738416945,268,0 +170738416993,268,0 +170738417041,268,0 +170738417089,268,0 +170738417137,268,0 +170738417185,268,0 +170738417233,268,0 +170738417283,268,0 +170738417331,268,0 +170738417380,268,0 +170738417428,268,0 +170738417476,268,0 +170738417524,268,0 +170738417572,268,0 +170738417620,267,0 +170738417669,268,0 +170738417717,267,0 +170738417765,268,0 +170738417813,268,0 +170738417861,268,0 +170738417909,268,0 +170738417959,268,0 +170738418007,268,0 +170738418055,268,0 +170738418103,268,0 +170738418151,268,0 +170738418199,268,0 +170738418247,268,0 +170738418296,268,0 +170738418346,268,0 +170738418393,268,0 +170738418441,268,0 +170738418489,268,0 +170738418537,268,0 +170738418585,268,0 +170738418633,268,0 +170738418681,267,0 +170738418729,268,0 +170738418777,268,0 +170738418825,268,0 +170738418873,268,0 +170738418921,268,0 +170738418969,268,0 +170738419017,268,0 +170738419065,268,0 +170738419114,268,0 +170738419162,268,0 +170738419210,268,0 +170738419258,268,0 +170738419308,267,0 +170738419356,267,0 +170738419405,267,0 +170738419453,267,0 +170738419501,268,0 +170738419549,268,0 +170738419597,268,0 +170738419645,267,0 +170738419693,268,0 +170738419741,268,0 +170738419790,268,0 +170738419840,268,0 +170738419888,268,0 +170738419937,268,0 +170738419985,268,0 +170738420033,268,0 +170738420083,268,0 +170738420132,268,0 +170738420182,268,0 +170738420230,268,0 +170738420278,268,0 +170738420327,267,0 +170738420375,268,0 +170738420423,268,0 +170738420471,268,0 +170738420519,267,0 +170738420566,268,0 +170738420614,268,0 +170738420664,268,0 +170738420712,268,0 +170738420760,268,0 +170738420808,268,0 +170738420856,268,0 +170738420905,268,0 +170738420953,268,0 +170738421003,267,0 +170738421052,267,0 +170738421100,268,0 +170738421148,268,0 +170738421196,267,0 +170738421244,268,0 +170738421293,267,0 +170738421341,268,0 +170738421391,268,0 +170738421439,268,0 +170738421487,268,0 +170738421535,268,0 +170738421583,267,0 +170738421632,268,0 +170738421682,268,0 +170738421730,268,0 +170738421778,268,0 +170738421826,268,0 +170738421874,268,0 +170738421923,268,0 +170738421971,268,0 +170738422019,268,0 +170738422067,268,0 +170738422115,268,0 +170738422163,268,0 +170738422211,268,0 +170738422259,268,0 +170738422307,268,0 +170738422355,268,0 +170738422405,268,0 +170738422453,268,0 +170738422501,268,0 +170738422550,268,0 +170738422598,268,0 +170738422648,268,0 +170738422696,268,0 +170738422745,268,0 +170738422793,268,0 +170738422841,268,0 +170738422889,268,0 +170738422938,267,0 +170738422986,268,0 +170738423034,268,0 +170738423084,268,0 +170738423133,268,0 +170738423183,268,0 +170738423231,268,0 +170738423279,268,0 +170738423328,268,0 +170738423376,267,0 +170738423424,268,0 +170738423474,268,0 +170738423522,268,0 +170738423571,267,0 +170738423619,268,0 +170738423669,268,0 +170738423716,268,0 +170738423764,268,0 +170738423814,268,0 +170738423862,268,0 +170738423911,268,0 +170738423961,268,0 +170738424009,268,0 +170738424057,268,0 +170738424105,268,0 +170738424154,268,0 +170738424202,267,0 +170738424252,268,0 +170738424301,268,0 +170738424351,268,0 +170738424400,268,0 +170738424448,268,0 +170738424496,268,0 +170738424544,268,0 +170738424592,268,0 +170738424640,268,0 +170738424688,268,0 +170738424736,268,0 +170738424785,268,0 +170738424833,268,0 +170738424883,268,0 +170738424932,268,0 +170738424982,268,0 +170738425031,268,0 +170738425079,268,0 +170738425127,268,0 +170738425175,268,0 +170738425225,268,0 +170738425273,268,0 +170738425321,268,0 +170738425371,268,0 +170738425419,268,0 +170738425467,268,0 +170738425514,268,0 +170738425564,268,0 +170738425612,268,0 +170738425662,268,0 +170738425711,268,0 +170738425759,268,0 +170738425809,268,0 +170738425857,268,0 +170738425906,267,0 +170738425954,268,0 +170738426002,268,0 +170738426050,268,0 +170738426100,268,0 +170738426148,268,0 +170738426196,267,0 +170738426244,268,0 +170738426292,268,0 +170738426341,268,0 +170738426389,268,0 +170738426437,268,0 +170738426485,268,0 +170738426533,268,0 +170738426581,268,0 +170738426630,268,0 +170738426678,268,0 +170738426726,268,0 +170738426776,268,0 +170738426824,268,0 +170738426872,268,0 +170738426920,268,0 +170738426969,268,0 +170738427019,268,0 +170738427067,268,0 +170738427115,267,0 +170738427164,268,0 +170738427212,268,0 +170738427260,268,0 +170738427310,268,0 +170738427358,268,0 +170738427406,267,0 +170738427454,268,0 +170738427502,268,0 +170738427551,268,0 +170738427599,268,0 +170738427647,268,0 +170738427695,268,0 +170738427743,268,0 +170738427791,268,0 +170738427839,268,0 +170738427887,268,0 +170738427935,268,0 +170738427983,268,0 +170738428031,268,0 +170738428080,268,0 +170738428128,268,0 +170738428176,267,0 +170738428224,268,0 +170738428272,268,0 +170738428320,268,0 +170738428369,268,0 +170738428417,268,0 +170738428465,268,0 +170738428513,268,0 +170738428563,268,0 +170738428611,268,0 +170738428659,267,0 +170738428707,268,0 +170738428755,268,0 +170738428804,267,0 +170738428852,268,0 +170738428900,268,0 +170738428948,268,0 +170738428998,268,0 +170738429047,268,0 +170738429095,268,0 +170738429143,268,0 +170738429191,268,0 +170738429239,268,0 +170738429287,267,0 +170738429336,268,0 +170738429384,268,0 +170738429432,268,0 +170738429482,268,0 +170738429530,268,0 +170738429578,268,0 +170738429626,268,0 +170738429674,268,0 +170738429722,268,0 +170738429770,268,0 +170738429818,268,0 +170738429866,268,0 +170738429913,268,0 +170738429963,268,0 +170738430012,268,0 +170738430060,268,0 +170738430110,268,0 +170738430158,268,0 +170738430206,268,0 +170738430254,268,0 +170738430302,268,0 +170738430350,268,0 +170738430398,268,0 +170738430446,268,0 +170738430494,268,0 +170738430541,268,0 +170738430589,268,0 +170738430637,268,0 +170738430685,268,0 +170738430733,268,0 +170738430783,267,0 +170738430832,268,0 +170738430880,268,0 +170738430928,268,0 +170738430976,268,0 +170738431024,268,0 +170738431072,268,0 +170738431120,268,0 +170738431168,268,0 +170738431216,268,0 +170738431264,268,0 +170738431312,268,0 +170738431360,268,0 +170738431408,268,0 +170738431458,268,0 +170738431506,268,0 +170738431555,267,0 +170738431603,268,0 +170738431651,268,0 +170738431701,268,0 +170738431749,268,0 +170738431797,268,0 +170738431845,268,0 +170738431893,268,0 +170738431941,268,0 +170738431988,268,0 +170738432038,268,0 +170738432087,268,0 +170738432136,268,0 +170738432184,268,0 +170738432231,268,0 +170738432279,268,0 +170738432329,268,0 +170738432377,268,0 +170738432425,268,0 +170738432474,268,0 +170738432522,268,0 +170738432570,268,0 +170738432618,268,0 +170738432666,268,0 +170738432714,268,0 +170738432764,268,0 +170738432811,268,0 +170738432861,268,0 +170738432909,268,0 +170738432957,268,0 +170738433006,268,0 +170738433054,268,0 +170738433104,268,0 +170738433152,268,0 +170738433200,267,0 +170738433248,268,0 +170738433297,268,0 +170738433345,268,0 +170738433393,268,0 +170738433441,268,0 +170738433489,267,0 +170738433537,268,0 +170738433585,268,0 +170738433633,268,0 +170738433681,268,0 +170738433729,268,0 +170738433779,267,0 +170738433827,268,0 +170738433874,268,0 +170738433922,268,0 +170738433970,268,0 +170738434018,268,0 +170738434066,267,0 +170738434116,268,0 +170738434165,268,0 +170738434215,267,0 +170738434264,268,0 +170738434314,268,0 +170738434362,268,0 +170738434410,268,0 +170738434459,268,0 +170738434507,268,0 +170738434557,268,0 +170738434605,267,0 +170738434653,268,0 +170738434701,268,0 +170738434750,268,0 +170738434798,268,0 +170738434846,268,0 +170738434894,268,0 +170738434944,268,0 +170738434992,268,0 +170738435041,268,0 +170738435091,268,0 +170738435140,268,0 +170738435190,268,0 +170738435240,268,0 +170738435288,268,0 +170738435336,268,0 +170738435383,268,0 +170738435431,268,0 +170738435479,268,0 +170738435527,268,0 +170738435575,268,0 +170738435623,268,0 +170738435671,268,0 +170738435719,268,0 +170738435767,268,0 +170738435815,268,0 +170738435863,268,0 +170738435912,268,0 +170738435960,268,0 +170738436010,268,0 +170738436058,268,0 +170738436106,268,0 +170738436154,268,0 +170738436202,268,0 +170738436250,268,0 +170738436298,268,0 +170738436346,268,0 +170738436394,268,0 +170738436443,268,0 +170738436493,268,0 +170738436541,268,0 +170738436589,268,0 +170738436636,268,0 +170738436686,268,0 +170738436735,268,0 +170738436783,268,0 +170738436831,268,0 +170738436879,268,0 +170738436927,268,0 +170738436975,268,0 +170738437023,268,0 +170738437071,268,0 +170738437118,268,0 +170738437166,268,0 +170738437214,268,0 +170738437262,268,0 +170738437310,268,0 +170738437358,268,0 +170738437406,268,0 +170738437454,268,0 +170738437501,268,0 +170738437549,268,0 +170738437597,268,0 +170738437645,268,0 +170738437693,268,0 +170738437743,268,0 +170738437791,268,0 +170738437840,268,0 +170738437888,268,0 +170738437936,268,0 +170738437985,268,0 +170738438033,268,0 +170738438081,268,0 +170738438131,268,0 +170738438179,267,0 +170738438227,267,0 +170738438275,268,0 +170738438323,268,0 +170738438372,268,0 +170738438420,268,0 +170738438470,268,0 +170738438519,268,0 +170738438567,268,0 +170738438615,268,0 +170738438665,268,0 +170738438714,268,0 +170738438764,267,0 +170738438812,268,0 +170738438860,268,0 +170738438908,268,0 +170738438956,268,0 +170738439003,268,0 +170738439051,268,0 +170738439099,268,0 +170738439147,268,0 +170738439195,267,0 +170738439243,267,0 +170738439291,268,0 +170738439339,268,0 +170738439387,268,0 +170738439436,268,0 +170738439484,268,0 +170738439532,268,0 +170738439580,268,0 +170738439628,268,0 +170738439675,268,0 +170738439723,268,0 +170738439771,268,0 +170738439819,268,0 +170738439867,268,0 +170738439915,268,0 +170738439963,268,0 +170738440011,268,0 +170738440060,268,0 +170738440108,268,0 +170738440156,268,0 +170738440204,268,0 +170738440252,268,0 +170738440301,268,0 +170738440349,268,0 +170738440397,268,0 +170738440445,268,0 +170738440493,268,0 +170738440541,268,0 +170738440589,268,0 +170738440637,268,0 +170738440684,268,0 +170738440732,268,0 +170738440782,268,0 +170738440830,268,0 +170738440878,268,0 +170738440925,268,0 +170738440973,268,0 +170738441021,268,0 +170738441071,268,0 +170738441119,268,0 +170738441168,268,0 +170738441216,268,0 +170738441266,268,0 +170738441315,268,0 +170738441363,268,0 +170738441411,268,0 +170738441459,268,0 +170738441507,268,0 +170738441557,268,0 +170738441606,268,0 +170738441654,268,0 +170738441704,268,0 +170738441752,268,0 +170738441800,268,0 +170738441848,268,0 +170738441896,268,0 +170738441944,268,0 +170738441991,267,0 +170738442039,268,0 +170738442087,268,0 +170738442135,268,0 +170738442185,268,0 +170738442234,268,0 +170738442283,268,0 +170738442330,268,0 +170738442380,267,0 +170738442428,268,0 +170738442476,268,0 +170738442524,268,0 +170738442572,268,0 +170738442620,268,0 +170738442668,267,0 +170738442716,268,0 +170738442764,268,0 +170738442812,267,0 +170738442861,268,0 +170738442909,268,0 +170738442957,268,0 +170738443005,268,0 +170738443054,268,0 +170738443102,268,0 +170738443150,268,0 +170738443198,268,0 +170738443248,268,0 +170738443296,268,0 +170738443344,267,0 +170738443393,267,0 +170738443441,268,0 +170738443489,267,0 +170738443537,268,0 +170738443585,268,0 +170738443635,268,0 +170738443683,268,0 +170738443731,268,0 +170738443779,268,0 +170738443827,268,0 +170738443875,268,0 +170738443923,268,0 +170738443971,268,0 +170738444018,267,0 +170738444066,268,0 +170738444114,268,0 +170738444162,268,0 +170738444210,268,0 +170738444260,267,0 +170738444308,268,0 +170738444356,268,0 +170738444405,268,0 +170738444455,268,0 +170738444503,268,0 +170738444551,267,0 +170738444600,268,0 +170738444648,268,0 +170738444698,268,0 +170738444746,268,0 +170738444794,267,0 +170738444842,268,0 +170738444890,268,0 +170738444938,268,0 +170738444986,268,0 +170738445035,267,0 +170738445085,268,0 +170738445133,268,0 +170738445180,268,0 +170738445228,268,0 +170738445278,268,0 +170738445326,268,0 +170738445374,268,0 +170738445422,268,0 +170738445471,268,0 +170738445519,268,0 +170738445569,268,0 +170738445617,268,0 +170738445666,268,0 +170738445714,268,0 +170738445764,267,0 +170738445812,268,0 +170738445860,267,0 +170738445909,268,0 +170738445957,267,0 +170738446005,268,0 +170738446055,268,0 +170738446104,268,0 +170738446152,268,0 +170738446200,268,0 +170738446248,268,0 +170738446298,268,0 +170738446345,268,0 +170738446395,268,0 +170738446443,268,0 +170738446493,268,0 +170738446542,268,0 +170738446590,268,0 +170738446639,268,0 +170738446689,268,0 +170738446737,267,0 +170738446785,268,0 +170738446833,268,0 +170738446881,267,0 +170738446929,268,0 +170738446978,268,0 +170738447026,267,0 +170738447076,267,0 +170738447124,268,0 +170738447173,268,0 +170738447221,268,0 +170738447269,268,0 +170738447317,268,0 +170738447365,268,0 +170738447415,268,0 +170738447463,268,0 +170738447512,267,0 +170738447560,268,0 +170738447608,268,0 +170738447656,268,0 +170738447704,267,0 +170738447752,268,0 +170738447801,268,0 +170738447849,268,0 +170738447897,268,0 +170738447945,268,0 +170738447995,268,0 +170738448044,268,0 +170738448092,268,0 +170738448142,268,0 +170738448191,268,0 +170738448239,268,0 +170738448289,268,0 +170738448337,268,0 +170738448385,267,0 +170738448432,268,0 +170738448482,268,0 +170738448530,268,0 +170738448579,268,0 +170738448629,268,0 +170738448679,267,0 +170738448727,268,0 +170738448776,268,0 +170738448825,268,0 +170738448873,268,0 +170738448921,268,0 +170738448969,267,0 +170738449017,267,0 +170738449065,268,0 +170738449115,268,0 +170738449164,267,0 +170738449212,267,0 +170738449260,268,0 +170738449308,268,0 +170738449356,267,0 +170738449404,267,0 +170738449452,268,0 +170738449502,268,0 +170738449550,268,0 +170738449599,268,0 +170738449647,268,0 +170738449695,267,0 +170738449743,267,0 +170738449791,267,0 +170738449841,268,0 +170738449890,267,0 +170738449938,268,0 +170738449986,268,0 +170738450036,267,0 +170738450084,268,0 +170738450132,268,0 +170738450180,268,0 +170738450228,267,0 +170738450276,267,0 +170738450323,268,0 +170738450371,267,0 +170738450419,268,0 +170738450469,268,0 +170738450518,268,0 +170738450566,267,0 +170738450614,268,0 +170738450664,268,0 +170738450712,268,0 +170738450761,268,0 +170738450811,268,0 +170738450859,268,0 +170738450907,267,0 +170738450956,267,0 +170738451004,268,0 +170738451054,268,0 +170738451103,267,0 +170738451153,268,0 +170738451201,268,0 +170738451249,267,0 +170738451297,268,0 +170738451345,268,0 +170738451393,268,0 +170738451441,268,0 +170738451489,267,0 +170738451537,268,0 +170738451584,268,0 +170738451633,267,0 +170738451680,267,0 +170738451730,267,0 +170738451780,268,0 +170738451828,268,0 +170738451877,268,0 +170738451927,268,0 +170738451975,267,0 +170738452024,267,0 +170738452072,268,0 +170738452120,268,0 +170738452168,268,0 +170738452216,268,0 +170738452264,267,0 +170738452313,268,0 +170738452363,267,0 +170738452411,267,0 +170738452460,268,0 +170738452508,268,0 +170738452558,268,0 +170738452606,268,0 +170738452655,268,0 +170738452705,268,0 +170738452753,268,0 +170738452802,268,0 +170738452850,267,0 +170738452900,268,0 +170738452949,268,0 +170738452999,268,0 +170738453047,268,0 +170738453095,268,0 +170738453143,268,0 +170738453191,267,0 +170738453240,268,0 +170738453288,267,0 +170738453336,267,0 +170738453384,268,0 +170738453432,268,0 +170738453481,267,0 +170738453529,267,0 +170738453577,268,0 +170738453625,268,0 +170738453673,267,0 +170738453721,267,0 +170738453769,268,0 +170738453817,267,0 +170738453867,268,0 +170738453916,267,0 +170738453964,268,0 +170738454012,268,0 +170738454060,268,0 +170738454110,268,0 +170738454158,268,0 +170738454206,268,0 +170738454255,268,0 +170738454305,268,0 +170738454353,268,0 +170738454403,268,0 +170738454451,267,0 +170738454500,268,0 +170738454548,268,0 +170738454596,267,0 +170738454644,267,0 +170738454694,267,0 +170738454743,268,0 +170738454791,268,0 +170738454841,267,0 +170738454888,268,0 +170738454938,267,0 +170738454986,267,0 +170738455034,268,0 +170738455082,268,0 +170738455130,268,0 +170738455178,268,0 +170738455227,268,0 +170738455275,267,0 +170738455323,268,0 +170738455373,267,0 +170738455421,267,0 +170738455470,268,0 +170738455518,268,0 +170738455568,268,0 +170738455616,268,0 +170738455665,267,0 +170738455715,268,0 +170738455762,268,0 +170738455810,268,0 +170738455860,267,0 +170738455908,267,0 +170738455958,268,0 +170738456007,267,0 +170738456055,267,0 +170738456103,268,0 +170738456153,268,0 +170738456201,268,0 +170738456248,268,0 +170738456296,268,0 +170738456346,268,0 +170738456394,268,0 +170738456442,267,0 +170738456490,267,0 +170738456538,268,0 +170738456586,268,0 +170738456634,268,0 +170738456682,268,0 +170738456731,267,0 +170738456781,268,0 +170738456829,268,0 +170738456878,268,0 +170738456926,268,0 +170738456974,268,0 +170738457022,268,0 +170738457070,268,0 +170738457118,267,0 +170738457166,268,0 +170738457214,267,0 +170738457264,267,0 +170738457313,268,0 +170738457361,268,0 +170738457409,268,0 +170738457459,268,0 +170738457507,268,0 +170738457555,268,0 +170738457602,268,0 +170738457652,267,0 +170738457700,267,0 +170738457750,268,0 +170738457798,268,0 +170738457845,267,0 +170738457893,268,0 +170738457941,268,0 +170738457989,267,0 +170738458037,267,0 +170738458085,267,0 +170738458133,268,0 +170738458181,268,0 +170738458231,268,0 +170738458279,267,0 +170738458328,267,0 +170738458376,268,0 +170738458426,268,0 +170738458474,268,0 +170738458522,268,0 +170738458570,268,0 +170738458618,267,0 +170738458667,267,0 +170738458717,268,0 +170738458764,268,0 +170738458813,268,0 +170738458860,267,0 +170738458908,268,0 +170738458956,268,0 +170738459004,268,0 +170738459054,268,0 +170738459102,267,0 +170738459150,267,0 +170738459198,267,0 +170738459247,268,0 +170738459295,267,0 +170738459345,268,0 +170738459393,268,0 +170738459442,268,0 +170738459490,268,0 +170738459538,268,0 +170738459586,268,0 +170738459636,268,0 +170738459684,268,0 +170738459732,268,0 +170738459780,268,0 +170738459827,268,0 +170738459877,268,0 +170738459925,268,0 +170738459973,268,0 +170738460023,268,0 +170738460072,268,0 +170738460120,268,0 +170738460168,267,0 +170738460218,268,0 +170738460266,268,0 +170738460314,268,0 +170738460362,268,0 +170738460410,268,0 +170738460458,267,0 +170738460506,268,0 +170738460553,268,0 +170738460601,268,0 +170738460651,268,0 +170738460699,268,0 +170738460747,267,0 +170738460795,267,0 +170738460843,268,0 +170738460891,268,0 +170738460939,268,0 +170738460988,268,0 +170738461038,267,0 +170738461086,268,0 +170738461135,268,0 +170738461183,267,0 +170738461233,268,0 +170738461281,267,0 +170738461330,267,0 +170738461380,267,0 +170738461428,268,0 +170738461476,267,0 +170738461524,268,0 +170738461573,268,0 +170738461621,267,0 +170738461671,268,0 +170738461719,268,0 +170738461767,268,0 +170738461815,267,0 +170738461862,268,0 +170738461912,268,0 +170738461960,267,0 +170738462008,268,0 +170738462056,268,0 +170738462105,268,0 +170738462155,268,0 +170738462204,268,0 +170738462252,267,0 +170738462300,267,0 +170738462348,267,0 +170738462396,267,0 +170738462444,267,0 +170738462492,267,0 +170738462540,267,0 +170738462588,268,0 +170738462636,268,0 +170738462686,268,0 +170738462735,267,0 +170738462783,267,0 +170738462833,267,0 +170738462882,267,0 +170738462930,267,0 +170738462978,268,0 +170738463026,267,0 +170738463074,268,0 +170738463122,268,0 +170738463170,267,0 +170738463218,268,0 +170738463266,268,0 +170738463316,268,0 +170738463364,268,0 +170738463412,267,0 +170738463460,267,0 +170738463509,268,0 +170738463557,267,0 +170738463605,268,0 +170738463653,268,0 +170738463703,268,0 +170738463751,268,0 +170738463798,267,0 +170738463848,268,0 +170738463896,267,0 +170738463944,268,0 +170738463993,267,0 +170738464041,268,0 +170738464089,268,0 +170738464137,268,0 +170738464185,267,0 +170738464233,268,0 +170738464281,268,0 +170738464329,268,0 +170738464377,267,0 +170738464425,268,0 +170738464474,267,0 +170738464522,268,0 +170738464572,267,0 +170738464620,267,0 +170738464668,268,0 +170738464717,268,0 +170738464765,268,0 +170738464815,268,0 +170738464863,267,0 +170738464911,267,0 +170738464959,268,0 +170738465008,267,0 +170738465056,268,0 +170738465104,268,0 +170738465152,267,0 +170738465200,268,0 +170738465250,267,0 +170738465299,268,0 +170738465347,268,0 +170738465397,268,0 +170738465445,268,0 +170738465493,268,0 +170738465542,267,0 +170738465590,268,0 +170738465638,268,0 +170738465686,268,0 +170738465736,268,0 +170738465785,267,0 +170738465833,267,0 +170738465881,268,0 +170738465929,268,0 +170738465977,267,0 +170738466024,268,0 +170738466074,268,0 +170738466122,268,0 +170738466170,268,0 +170738466218,267,0 +170738466265,268,0 +170738466315,268,0 +170738466364,267,0 +170738466412,268,0 +170738466460,267,0 +170738466508,268,0 +170738466557,267,0 +170738466605,268,0 +170738466653,268,0 +170738466701,268,0 +170738466749,268,0 +170738466797,268,0 +170738466845,268,0 +170738466893,268,0 +170738466942,268,0 +170738466992,268,0 +170738467039,268,0 +170738467087,268,0 +170738467135,268,0 +170738467183,268,0 +170738467231,268,0 +170738467279,268,0 +170738467327,268,0 +170738467375,268,0 +170738467423,268,0 +170738467472,268,0 +170738467520,268,0 +170738467568,268,0 +170738467617,267,0 +170738467667,268,0 +170738467717,268,0 +170738467766,268,0 +170738467814,268,0 +170738467862,268,0 +170738467910,268,0 +170738467958,267,0 +170738468006,268,0 +170738468054,267,0 +170738468103,268,0 +170738468153,268,0 +170738468201,268,0 +170738468250,268,0 +170738468300,268,0 +170738468349,268,0 +170738468397,268,0 +170738468445,268,0 +170738468493,268,0 +170738468541,268,0 +170738468589,268,0 +170738468639,268,0 +170738468687,268,0 +170738468735,268,0 +170738468783,268,0 +170738468832,268,0 +170738468880,268,0 +170738468930,268,0 +170738468978,268,0 +170738469026,268,0 +170738469075,268,0 +170738469123,268,0 +170738469173,268,0 +170738469221,268,0 +170738469270,268,0 +170738469318,268,0 +170738469366,268,0 +170738469414,268,0 +170738469462,268,0 +170738469510,268,0 +170738469559,268,0 +170738469607,268,0 +170738469655,268,0 +170738469703,268,0 +170738469753,268,0 +170738469801,268,0 +170738469849,268,0 +170738469897,268,0 +170738469945,268,0 +170738469993,268,0 +170738470042,268,0 +170738470090,268,0 +170738470138,268,0 +170738470188,268,0 +170738470237,268,0 +170738470285,268,0 +170738470333,268,0 +170738470381,268,0 +170738470429,268,0 +170738470477,268,0 +170738470525,268,0 +170738470575,268,0 +170738470623,268,0 +170738470670,268,0 +170738470720,268,0 +170738470768,268,0 +170738470816,268,0 +170738470865,268,0 +170738470915,268,0 +170738470964,267,0 +170738471012,268,0 +170738471062,268,0 +170738471110,268,0 +170738471158,268,0 +170738471206,268,0 +170738471254,268,0 +170738471302,268,0 +170738471351,268,0 +170738471399,268,0 +170738471447,268,0 +170738471497,268,0 +170738471545,268,0 +170738471594,268,0 +170738471642,267,0 +170738471690,268,0 +170738471738,268,0 +170738471786,268,0 +170738471834,268,0 +170738471882,268,0 +170738471930,268,0 +170738471978,268,0 +170738472026,268,0 +170738472074,268,0 +170738472122,268,0 +170738472172,268,0 +170738472219,268,0 +170738472269,267,0 +170738472317,268,0 +170738472365,268,0 +170738472413,268,0 +170738472463,268,0 +170738472511,268,0 +170738472559,268,0 +170738472606,268,0 +170738472654,268,0 +170738472704,268,0 +170738472752,268,0 +170738472801,268,0 +170738472851,268,0 +170738472899,268,0 +170738472948,268,0 +170738472996,268,0 +170738473044,267,0 +170738473092,268,0 +170738473142,268,0 +170738473191,268,0 +170738473239,268,0 +170738473287,268,0 +170738473335,269,0 +170738473385,268,0 +170738473433,268,0 +170738473481,268,0 +170738473531,268,0 +170738473579,268,0 +170738473627,268,0 +170738473676,268,0 +170738473724,268,0 +170738473772,268,0 +170738473820,268,0 +170738473868,267,0 +170738473916,268,0 +170738473964,268,0 +170738474012,267,0 +170738474060,268,0 +170738474107,268,0 +170738474155,268,0 +170738474203,268,0 +170738474251,268,0 +170738474301,268,0 +170738474350,268,0 +170738474400,268,0 +170738474449,268,0 +170738474499,267,0 +170738474547,268,0 +170738474595,268,0 +170738474643,267,0 +170738474691,267,0 +170738474740,268,0 +170738474790,268,0 +170738474839,268,0 +170738474887,268,0 +170738474935,268,0 +170738474985,268,0 +170738475033,268,0 +170738475081,268,0 +170738475130,268,0 +170738475180,268,0 +170738475228,268,0 +170738475276,268,0 +170738475324,268,0 +170738475372,268,0 +170738475420,268,0 +170738475468,268,0 +170738475516,268,0 +170738475565,268,0 +170738475613,268,0 +170738475661,268,0 +170738475711,267,0 +170738475758,268,0 +170738475808,268,0 +170738475856,268,0 +170738475904,268,0 +170738475954,268,0 +170738476002,268,0 +170738476051,268,0 +170738476099,268,0 +170738476147,268,0 +170738476195,268,0 +170738476245,268,0 +170738476292,268,0 +170738476340,268,0 +170738476390,268,0 +170738476438,268,0 +170738476486,268,0 +170738476534,268,0 +170738476582,268,0 +170738476630,267,0 +170738476679,268,0 +170738476727,268,0 +170738476775,268,0 +170738476823,268,0 +170738476871,268,0 +170738476921,268,0 +170738476969,268,0 +170738477016,268,0 +170738477064,268,0 +170738477112,268,0 +170738477160,268,0 +170738477210,268,0 +170738477258,268,0 +170738477306,269,0 +170738477354,268,0 +170738477402,268,0 +170738477450,268,0 +170738477498,268,0 +170738477546,268,0 +170738477595,268,0 +170738477643,268,0 +170738477691,268,0 +170738477739,268,0 +170738477787,268,0 +170738477836,268,0 +170738477884,268,0 +170738477932,267,0 +170738477980,268,0 +170738478028,268,0 +170738478078,268,0 +170738478126,268,0 +170738478174,268,0 +170738478222,268,0 +170738478270,268,0 +170738478318,268,0 +170738478367,268,0 +170738478415,268,0 +170738478465,268,0 +170738478514,268,0 +170738478562,268,0 +170738478610,268,0 +170738478660,268,0 +170738478708,268,0 +170738478756,268,0 +170738478804,268,0 +170738478852,268,0 +170738478901,268,0 +170738478951,268,0 +170738478998,268,0 +170738479046,268,0 +170738479094,268,0 +170738479142,268,0 +170738479192,268,0 +170738479240,268,0 +170738479289,268,0 +170738479337,268,0 +170738479385,268,0 +170738479433,268,0 +170738479483,268,0 +170738479531,268,0 +170738479580,268,0 +170738479628,268,0 +170738479678,268,0 +170738479725,268,0 +170738479773,268,0 +170738479823,268,0 +170738479871,268,0 +170738479919,268,0 +170738479967,268,0 +170738480015,268,0 +170738480063,268,0 +170738480110,268,0 +170738480160,268,0 +170738480208,268,0 +170738480258,268,0 +170738480305,268,0 +170738480353,268,0 +170738480401,268,0 +170738480449,268,0 +170738480497,268,0 +170738480545,268,0 +170738480593,268,0 +170738480641,268,0 +170738480689,268,0 +170738480739,268,0 +170738480787,268,0 +170738480835,268,0 +170738480884,268,0 +170738480934,268,0 +170738480983,268,0 +170738481031,268,0 +170738481079,268,0 +170738481127,268,0 +170738481175,268,0 +170738481223,268,0 +170738481273,268,0 +170738481321,268,0 +170738481369,268,0 +170738481417,268,0 +170738481465,268,0 +170738481513,268,0 +170738481562,268,0 +170738481612,268,0 +170738481661,268,0 +170738481709,268,0 +170738481757,268,0 +170738481805,268,0 +170738481853,268,0 +170738481901,268,0 +170738481949,268,0 +170738481997,268,0 +170738482045,268,0 +170738482093,268,0 +170738482142,268,0 +170738482192,268,0 +170738482239,268,0 +170738482289,268,0 +170738482337,268,0 +170738482385,268,0 +170738482433,268,0 +170738482481,268,0 +170738482530,268,0 +170738482578,268,0 +170738482628,268,0 +170738482676,268,0 +170738482725,268,0 +170738482773,268,0 +170738482821,268,0 +170738482869,268,0 +170738482917,268,0 +170738482965,268,0 +170738483013,269,0 +170738483063,268,0 +170738483111,268,0 +170738483159,268,0 +170738483208,268,0 +170738483256,268,0 +170738483304,268,0 +170738483354,268,0 +170738483403,268,0 +170738483453,268,0 +170738483502,268,0 +170738483550,268,0 +170738483598,268,0 +170738483646,268,0 +170738483694,268,0 +170738483744,268,0 +170738483791,268,0 +170738483841,268,0 +170738483889,268,0 +170738483937,268,0 +170738483985,268,0 +170738484033,268,0 +170738484081,268,0 +170738484129,268,0 +170738484178,268,0 +170738484226,268,0 +170738484274,268,0 +170738484322,268,0 +170738484370,268,0 +170738484418,268,0 +170738484466,268,0 +170738484516,268,0 +170738484564,268,0 +170738484613,268,0 +170738484661,268,0 +170738484709,268,0 +170738484757,268,0 +170738484805,268,0 +170738484854,268,0 +170738484902,268,0 +170738484950,268,0 +170738485000,268,0 +170738485048,268,0 +170738485097,267,0 +170738485145,268,0 +170738485193,268,0 +170738485243,268,0 +170738485291,268,0 +170738485340,268,0 +170738485388,268,0 +170738485438,268,0 +170738485487,268,0 +170738485535,268,0 +170738485585,268,0 +170738485634,268,0 +170738485682,268,0 +170738485730,268,0 +170738485778,268,0 +170738485826,268,0 +170738485874,268,0 +170738485922,268,0 +170738485970,268,0 +170738486018,268,0 +170738486066,268,0 +170738486114,268,0 +170738486162,268,0 +170738486209,268,0 +170738486259,268,0 +170738486307,268,0 +170738486355,268,0 +170738486403,268,0 +170738486451,268,0 +170738486499,268,0 +170738486548,268,0 +170738486596,268,0 +170738486644,267,0 +170738486692,268,0 +170738486740,268,0 +170738486788,268,0 +170738486836,268,0 +170738486884,268,0 +170738486934,268,0 +170738486982,268,0 +170738487030,267,0 +170738487079,268,0 +170738487127,268,0 +170738487175,268,0 +170738487223,268,0 +170738487273,268,0 +170738487322,268,0 +170738487370,268,0 +170738487418,268,0 +170738487466,268,0 +170738487514,268,0 +170738487562,268,0 +170738487610,268,0 +170738487659,268,0 +170738487709,268,0 +170738487757,268,0 +170738487805,268,0 +170738487853,268,0 +170738487901,268,0 +170738487950,268,0 +170738487998,268,0 +170738488046,268,0 +170738488094,268,0 +170738488142,268,0 +170738488190,268,0 +170738488240,268,0 +170738488288,268,0 +170738488336,268,0 +170738488385,268,0 +170738488433,268,0 +170738488483,268,0 +170738488531,268,0 +170738488579,268,0 +170738488627,268,0 +170738488675,268,0 +170738488723,268,0 +170738488772,268,0 +170738488820,268,0 +170738488870,268,0 +170738488917,268,0 +170738488967,268,0 +170738489015,268,0 +170738489065,268,0 +170738489114,268,0 +170738489162,268,0 +170738489212,268,0 +170738489261,268,0 +170738489309,268,0 +170738489357,267,0 +170738489405,268,0 +170738489453,268,0 +170738489502,268,0 +170738489550,268,0 +170738489600,268,0 +170738489648,268,0 +170738489696,268,0 +170738489743,268,0 +170738489791,268,0 +170738489839,269,0 +170738489887,268,0 +170738489935,268,0 +170738489983,268,0 +170738490031,268,0 +170738490079,268,0 +170738490127,268,0 +170738490175,268,0 +170738490222,268,0 +170738490270,268,0 +170738490320,268,0 +170738490368,268,0 +170738490417,268,0 +170738490467,268,0 +170738490515,268,0 +170738490563,269,0 +170738490611,268,0 +170738490660,268,0 +170738490708,268,0 +170738490756,268,0 +170738490804,268,0 +170738490852,268,0 +170738490900,268,0 +170738490950,268,0 +170738490998,268,0 +170738491046,268,0 +170738491095,268,0 +170738491145,268,0 +170738491194,268,0 +170738491242,268,0 +170738491290,268,0 +170738491338,268,0 +170738491386,268,0 +170738491434,268,0 +170738491482,268,0 +170738491530,268,0 +170738491577,268,0 +170738491627,268,0 +170738491675,268,0 +170738491724,268,0 +170738491772,268,0 +170738491822,268,0 +170738491869,268,0 +170738491917,268,0 +170738491965,268,0 +170738492015,268,0 +170738492064,268,0 +170738492112,268,0 +170738492161,268,0 +170738492209,268,0 +170738492257,268,0 +170738492305,268,0 +170738492353,268,0 +170738492401,268,0 +170738492449,268,0 +170738492497,268,0 +170738492545,268,0 +170738492594,268,0 +170738492642,268,0 +170738492691,268,0 +170738492739,268,0 +170738492787,268,0 +170738492836,268,0 +170738492884,268,0 +170738492932,268,0 +170738492980,268,0 +170738493030,268,0 +170738493078,268,0 +170738493126,268,0 +170738493173,268,0 +170738493221,268,0 +170738493269,268,0 +170738493317,268,0 +170738493365,268,0 +170738493413,268,0 +170738493461,268,0 +170738493509,268,0 +170738493557,268,0 +170738493606,268,0 +170738493654,268,0 +170738493702,268,0 +170738493750,268,0 +170738493798,268,0 +170738493846,268,0 +170738493893,268,0 +170738493941,268,0 +170738493991,268,0 +170738494039,268,0 +170738494087,268,0 +170738494136,268,0 +170738494184,268,0 +170738494233,268,0 +170738494281,268,0 +170738494329,268,0 +170738494377,268,0 +170738494427,268,0 +170738494475,268,0 +170738494523,268,0 +170738494571,268,0 +170738494619,268,0 +170738494667,268,0 +170738494715,268,0 +170738494763,268,0 +170738494812,268,0 +170738494862,268,0 +170738494910,268,0 +170738494958,268,0 +170738495006,268,0 +170738495054,268,0 +170738495102,268,0 +170738495149,268,0 +170738495197,268,0 +170738495245,268,0 +170738495293,268,0 +170738495341,268,0 +170738495389,268,0 +170738495437,268,0 +170738495486,268,0 +170738495534,268,0 +170738495582,268,0 +170738495630,268,0 +170738495678,268,0 +170738495726,268,0 +170738495773,268,0 +170738495821,268,0 +170738495869,268,0 +170738495917,268,0 +170738495965,268,0 +170738496013,268,0 +170738496061,268,0 +170738496109,268,0 +170738496157,268,0 +170738496205,268,0 +170738496253,268,0 +170738496302,268,0 +170738496350,268,0 +170738496400,268,0 +170738496447,268,0 +170738496495,268,0 +170738496543,268,0 +170738496591,268,0 +170738496639,268,0 +170738496687,268,0 +170738496735,268,0 +170738496785,268,0 +170738496833,268,0 +170738496882,268,0 +170738496930,268,0 +170738496978,268,0 +170738497026,268,0 +170738497074,268,0 +170738497124,268,0 +170738497173,268,0 +170738497221,268,0 +170738497269,268,0 +170738497319,268,0 +170738497367,268,0 +170738497415,267,0 +170738497463,268,0 +170738497511,268,0 +170738497559,268,0 +170738497608,268,0 +170738497656,268,0 +170738497706,268,0 +170738497754,268,0 +170738497802,268,0 +170738497851,268,0 +170738497899,268,0 +170738497947,268,0 +170738497995,268,0 +170738498045,268,0 +170738498093,268,0 +170738498140,268,0 +170738498188,268,0 +170738498238,268,0 +170738498286,268,0 +170738498336,268,0 +170738498383,268,0 +170738498433,268,0 +170738498481,268,0 +170738498529,268,0 +170738498577,267,0 +170738498626,268,0 +170738498676,268,0 +170738498725,268,0 +170738498773,268,0 +170738498821,267,0 +170738498869,268,0 +170738498917,268,0 +170738498965,268,0 +170738499015,268,0 +170738499064,268,0 +170738499114,268,0 +170738499163,268,0 +170738499213,268,0 +170738499261,268,0 +170738499309,268,0 +170738499358,268,0 +170738499408,268,0 +170738499456,268,0 +170738499504,268,0 +170738499552,268,0 +170738499599,268,0 +170738499648,268,0 +170738499695,268,0 +170738499743,268,0 +170738499793,268,0 +170738499841,268,0 +170738499890,268,0 +170738499938,268,0 +170738499986,268,0 +170738500034,268,0 +170738500082,268,0 +170738500130,268,0 +170738500180,268,0 +170738500228,268,0 +170738500276,268,0 +170738500325,268,0 +170738500373,268,0 +170738500421,268,0 +170738500469,268,0 +170738500519,268,0 +170738500568,268,0 +170738500616,268,0 +170738500664,267,0 +170738500714,268,0 +170738500762,268,0 +170738500811,268,0 +170738500861,268,0 +170738500910,268,0 +170738500958,268,0 +170738501006,268,0 +170738501054,268,0 +170738501104,268,0 +170738501152,268,0 +170738501200,268,0 +170738501248,268,0 +170738501297,268,0 +170738501345,268,0 +170738501393,268,0 +170738501442,268,0 +170738501492,268,0 +170738501540,268,0 +170738501589,268,0 +170738501639,268,0 +170738501687,268,0 +170738501735,268,0 +170738501783,268,0 +170738501832,268,0 +170738501880,268,0 +170738501930,268,0 +170738501980,268,0 +170738502029,268,0 +170738502077,268,0 +170738502126,268,0 +170738502174,268,0 +170738502222,268,0 +170738502270,269,0 +170738502318,268,0 +170738502366,268,0 +170738502414,268,0 +170738502462,268,0 +170738502510,268,0 +170738502558,268,0 +170738502606,268,0 +170738502654,268,0 +170738502704,268,0 +170738502752,268,0 +170738502801,268,0 +170738502849,268,0 +170738502897,269,0 +170738502945,268,0 +170738502993,268,0 +170738503042,268,0 +170738503090,268,0 +170738503138,268,0 +170738503186,268,0 +170738503234,268,0 +170738503284,268,0 +170738503332,268,0 +170738503380,268,0 +170738503429,268,0 +170738503479,268,0 +170738503527,268,0 +170738503575,268,0 +170738503624,268,0 +170738503672,268,0 +170738503722,268,0 +170738503770,268,0 +170738503818,268,0 +170738503866,268,0 +170738503915,268,0 +170738503963,268,0 +170738504011,268,0 +170738504059,268,0 +170738504109,268,0 +170738504156,268,0 +170738504206,268,0 +170738504254,268,0 +170738504302,268,0 +170738504350,268,0 +170738504398,268,0 +170738504447,268,0 +170738504495,268,0 +170738504545,268,0 +170738504593,268,0 +170738504641,268,0 +170738504689,268,0 +170738504738,268,0 +170738504786,268,0 +170738504836,268,0 +170738504885,268,0 +170738504933,268,0 +170738504983,268,0 +170738505031,268,0 +170738505080,268,0 +170738505128,268,0 +170738505176,268,0 +170738505224,268,0 +170738505272,268,0 +170738505320,268,0 +170738505370,268,0 +170738505417,268,0 +170738505465,268,0 +170738505515,268,0 +170738505564,268,0 +170738505612,268,0 +170738505660,268,0 +170738505708,268,0 +170738505756,268,0 +170738505804,268,0 +170738505852,268,0 +170738505900,268,0 +170738505950,268,0 +170738505998,268,0 +170738506047,268,0 +170738506095,268,0 +170738506143,268,0 +170738506191,268,0 +170738506241,268,0 +170738506289,268,0 +170738506337,268,0 +170738506385,268,0 +170738506433,268,0 +170738506481,268,0 +170738506529,268,0 +170738506577,268,0 +170738506625,268,0 +170738506672,268,0 +170738506720,268,0 +170738506768,268,0 +170738506816,268,0 +170738506864,268,0 +170738506912,268,0 +170738506962,268,0 +170738507010,268,0 +170738507059,268,0 +170738507107,268,0 +170738507155,268,0 +170738507203,268,0 +170738507251,268,0 +170738507299,268,0 +170738507347,268,0 +170738507395,268,0 +170738507443,268,0 +170738507491,268,0 +170738507539,268,0 +170738507587,268,0 +170738507636,268,0 +170738507684,268,0 +170738507734,268,0 +170738507783,268,0 +170738507831,268,0 +170738507881,268,0 +170738507929,268,0 +170738507977,268,0 +170738508026,268,0 +170738508074,268,0 +170738508124,268,0 +170738508172,268,0 +170738508221,268,0 +170738508269,268,0 +170738508319,268,0 +170738508367,268,0 +170738508415,268,0 +170738508464,268,0 +170738508512,268,0 +170738508562,269,0 +170738508610,268,0 +170738508659,268,0 +170738508707,268,0 +170738508755,268,0 +170738508805,268,0 +170738508853,268,0 +170738508900,268,0 +170738508948,268,0 +170738508996,268,0 +170738509044,268,0 +170738509092,268,0 +170738509140,268,0 +170738509188,268,0 +170738509236,268,0 +170738509286,268,0 +170738509334,268,0 +170738509382,268,0 +170738509430,268,0 +170738509478,268,0 +170738509526,268,0 +170738509573,268,0 +170738509621,268,0 +170738509671,268,0 +170738509719,268,0 +170738509767,268,0 +170738509815,268,0 +170738509864,268,0 +170738509912,268,0 +170738509960,268,0 +170738510008,268,0 +170738510056,268,0 +170738510104,268,0 +170738510152,268,0 +170738510200,268,0 +170738510248,268,0 +170738510298,268,0 +170738510346,268,0 +170738510394,268,0 +170738510442,268,0 +170738510491,268,0 +170738510539,268,0 +170738510587,268,0 +170738510635,268,0 +170738510684,268,0 +170738510732,268,0 +170738510780,268,0 +170738510828,268,0 +170738510878,269,0 +170738510926,268,0 +170738510974,268,0 +170738511022,268,0 +170738511071,268,0 +170738511119,268,0 +170738511169,268,0 +170738511218,268,0 +170738511266,268,0 +170738511314,268,0 +170738511364,268,0 +170738511412,269,0 +170738511461,268,0 +170738511509,268,0 +170738511558,268,0 +170738511607,269,0 +170738511656,268,0 +170738511704,268,0 +170738511754,268,0 +170738511803,268,0 +170738511851,268,0 +170738511899,268,0 +170738511948,268,0 +170738511996,268,0 +170738512046,268,0 +170738512094,268,0 +170738512142,268,0 +170738512191,268,0 +170738512239,268,0 +170738512287,268,0 +170738512337,268,0 +170738512385,268,0 +170738512433,268,0 +170738512481,268,0 +170738512530,268,0 +170738512578,268,0 +170738512626,268,0 +170738512674,268,0 +170738512724,268,0 +170738512773,268,0 +170738512823,268,0 +170738512871,268,0 +170738512920,269,0 +170738512968,268,0 +170738513018,268,0 +170738513066,268,0 +170738513115,268,0 +170738513163,268,0 +170738513213,268,0 +170738513261,268,0 +170738513310,268,0 +170738513358,268,0 +170738513406,268,0 +170738513454,268,0 +170738513502,268,0 +170738513551,268,0 +170738513599,268,0 +170738513647,268,0 +170738513695,268,0 +170738513743,268,0 +170738513793,268,0 +170738513841,268,0 +170738513889,268,0 +170738513937,268,0 +170738513986,268,0 +170738514034,268,0 +170738514084,268,0 +170738514132,268,0 +170738514179,268,0 +170738514227,268,0 +170738514275,268,0 +170738514325,268,0 +170738514373,268,0 +170738514421,268,0 +170738514469,268,0 +170738514518,268,0 +170738514566,268,0 +170738514614,268,0 +170738514662,268,0 +170738514712,268,0 +170738514760,268,0 +170738514809,268,0 +170738514857,268,0 +170738514905,268,0 +170738514954,268,0 +170738515004,268,0 +170738515052,269,0 +170738515101,268,0 +170738515149,268,0 +170738515197,268,0 +170738515247,268,0 +170738515295,268,0 +170738515343,268,0 +170738515391,268,0 +170738515440,268,0 +170738515488,269,0 +170738515536,268,0 +170738515586,268,0 +170738515634,268,0 +170738515682,268,0 +170738515730,268,0 +170738515778,268,0 +170738515826,268,0 +170738515875,268,0 +170738515923,268,0 +170738515971,268,0 +170738516019,268,0 +170738516067,268,0 +170738516115,268,0 +170738516163,268,0 +170738516211,268,0 +170738516259,268,0 +170738516307,268,0 +170738516356,268,0 +170738516406,268,0 +170738516456,269,0 +170738516503,268,0 +170738516551,268,0 +170738516599,268,0 +170738516647,268,0 +170738516695,268,0 +170738516745,268,0 +170738516793,268,0 +170738516842,268,0 +170738516890,268,0 +170738516938,268,0 +170738516988,268,0 +170738517036,268,0 +170738517084,268,0 +170738517132,268,0 +170738517180,268,0 +170738517228,268,0 +170738517276,268,0 +170738517324,268,0 +170738517373,268,0 +170738517421,268,0 +170738517471,268,0 +170738517519,268,0 +170738517567,268,0 +170738517614,268,0 +170738517664,268,0 +170738517712,268,0 +170738517760,268,0 +170738517810,268,0 +170738517859,268,0 +170738517909,268,0 +170738517956,268,0 +170738518004,268,0 +170738518052,268,0 +170738518100,268,0 +170738518148,268,0 +170738518196,268,0 +170738518244,268,0 +170738518292,268,0 +170738518342,268,0 +170738518390,268,0 +170738518438,268,0 +170738518486,268,0 +170738518534,268,0 +170738518582,268,0 +170738518631,268,0 +170738518679,268,0 +170738518729,268,0 +170738518778,268,0 +170738518826,268,0 +170738518874,268,0 +170738518922,268,0 +170738518970,268,0 +170738519018,268,0 +170738519067,268,0 +170738519115,268,0 +170738519163,269,0 +170738519211,268,0 +170738519261,268,0 +170738519310,268,0 +170738519358,268,0 +170738519406,268,0 +170738519456,268,0 +170738519504,268,0 +170738519552,268,0 +170738519601,268,0 +170738519649,269,0 +170738519697,268,0 +170738519745,268,0 +170738519793,268,0 +170738519841,268,0 +170738519889,268,0 +170738519939,268,0 +170738519988,268,0 +170738520036,269,0 +170738520086,268,0 +170738520134,268,0 +170738520183,268,0 +170738520233,269,0 +170738520280,268,0 +170738520330,268,0 +170738520378,268,0 +170738520426,268,0 +170738520475,268,0 +170738520523,268,0 +170738520571,268,0 +170738520619,268,0 +170738520669,268,0 +170738520717,268,0 +170738520765,268,0 +170738520813,269,0 +170738520861,268,0 +170738520909,268,0 +170738520957,268,0 +170738521005,268,0 +170738521054,268,0 +170738521102,268,0 +170738521150,268,0 +170738521200,268,0 +170738521248,269,0 +170738521296,268,0 +170738521344,268,0 +170738521392,268,0 +170738521441,268,0 +170738521489,268,0 +170738521538,268,0 +170738521586,268,0 +170738521636,268,0 +170738521684,268,0 +170738521732,268,0 +170738521780,268,0 +170738521829,268,0 +170738521879,268,0 +170738521928,268,0 +170738521976,268,0 +170738522024,268,0 +170738522072,268,0 +170738522122,267,0 +170738522171,268,0 +170738522219,268,0 +170738522267,268,0 +170738522315,268,0 +170738522363,268,0 +170738522411,269,0 +170738522459,268,0 +170738522507,268,0 +170738522555,268,0 +170738522603,268,0 +170738522651,268,0 +170738522699,268,0 +170738522747,269,0 +170738522795,268,0 +170738522843,268,0 +170738522893,268,0 +170738522941,268,0 +170738522989,268,0 +170738523038,268,0 +170738523088,268,0 +170738523136,268,0 +170738523185,268,0 +170738523235,268,0 +170738523283,268,0 +170738523332,268,0 +170738523380,268,0 +170738523430,268,0 +170738523478,268,0 +170738523526,268,0 +170738523574,268,0 +170738523623,268,0 +170738523671,268,0 +170738523719,268,0 +170738523767,269,0 +170738523815,268,0 +170738523863,268,0 +170738523913,268,0 +170738523962,268,0 +170738524010,268,0 +170738524058,268,0 +170738524106,268,0 +170738524154,268,0 +170738524202,268,0 +170738524251,268,0 +170738524299,268,0 +170738524349,268,0 +170738524397,268,0 +170738524445,268,0 +170738524493,268,0 +170738524542,268,0 +170738524592,268,0 +170738524641,268,0 +170738524689,268,0 +170738524737,268,0 +170738524785,268,0 +170738524835,268,0 +170738524883,268,0 +170738524932,268,0 +170738524982,268,0 +170738525030,268,0 +170738525078,268,0 +170738525126,268,0 +170738525174,268,0 +170738525222,268,0 +170738525270,268,0 +170738525319,268,0 +170738525367,268,0 +170738525415,268,0 +170738525465,268,0 +170738525513,268,0 +170738525561,268,0 +170738525610,268,0 +170738525660,268,0 +170738525708,268,0 +170738525757,268,0 +170738525805,268,0 +170738525853,268,0 +170738525901,268,0 +170738525951,268,0 +170738526000,268,0 +170738526048,268,0 +170738526096,269,0 +170738526146,268,0 +170738526194,268,0 +170738526241,268,0 +170738526289,268,0 +170738526339,268,0 +170738526387,268,0 +170738526435,268,0 +170738526483,268,0 +170738526532,268,0 +170738526580,268,0 +170738526630,268,0 +170738526678,268,0 +170738526727,268,0 +170738526777,268,0 +170738526827,268,0 +170738526874,268,0 +170738526922,268,0 +170738526970,268,0 +170738527018,268,0 +170738527066,268,0 +170738527114,268,0 +170738527164,268,0 +170738527212,268,0 +170738527261,268,0 +170738527309,268,0 +170738527359,268,0 +170738527407,268,0 +170738527455,268,0 +170738527504,268,0 +170738527552,268,0 +170738527602,268,0 +170738527650,268,0 +170738527698,268,0 +170738527746,268,0 +170738527794,268,0 +170738527843,268,0 +170738527891,268,0 +170738527939,268,0 +170738527987,268,0 +170738528035,268,0 +170738528084,268,0 +170738528132,268,0 +170738528182,268,0 +170738528230,268,0 +170738528278,268,0 +170738528326,268,0 +170738528374,268,0 +170738528422,268,0 +170738528471,268,0 +170738528521,268,0 +170738528570,268,0 +170738528618,268,0 +170738528668,268,0 +170738528716,268,0 +170738528765,268,0 +170738528815,268,0 +170738528863,268,0 +170738528912,268,0 +170738528960,268,0 +170738529008,268,0 +170738529056,268,0 +170738529106,268,0 +170738529155,268,0 +170738529203,268,0 +170738529251,268,0 +170738529299,268,0 +170738529349,268,0 +170738529398,268,0 +170738529448,268,0 +170738529496,268,0 +170738529544,268,0 +170738529592,268,0 +170738529641,268,0 +170738529689,268,0 +170738529739,268,0 +170738529787,268,0 +170738529836,268,0 +170738529884,268,0 +170738529932,268,0 +170738529980,268,0 +170738530028,268,0 +170738530076,267,0 +170738530124,268,0 +170738530174,268,0 +170738530223,268,0 +170738530271,268,0 +170738530319,268,0 +170738530368,268,0 +170738530416,268,0 +170738530466,268,0 +170738530515,268,0 +170738530563,268,0 +170738530611,268,0 +170738530659,268,0 +170738530709,268,0 +170738530757,268,0 +170738530806,268,0 +170738530854,268,0 +170738530902,268,0 +170738530950,268,0 +170738530998,268,0 +170738531046,268,0 +170738531094,268,0 +170738531143,268,0 +170738531194,268,0 +170738531243,268,0 +170738531291,268,0 +170738531339,268,0 +170738531387,268,0 +170738531437,268,0 +170738531485,268,0 +170738531533,268,0 +170738531582,268,0 +170738531630,268,0 +170738531678,268,0 +170738531726,268,0 +170738531774,268,0 +170738531822,268,0 +170738531872,268,0 +170738531920,268,0 +170738531967,268,0 +170738532015,268,0 +170738532063,268,0 +170738532113,268,0 +170738532161,268,0 +170738532209,268,0 +170738532258,268,0 +170738532306,268,0 +170738532354,268,0 +170738532404,268,0 +170738532452,268,0 +170738532501,268,0 +170738532549,268,0 +170738532599,268,0 +170738532647,268,0 +170738532695,268,0 +170738532743,268,0 +170738532791,268,0 +170738532839,268,0 +170738532886,268,0 +170738532934,268,0 +170738532982,268,0 +170738533030,268,0 +170738533078,268,0 +170738533126,268,0 +170738533174,268,0 +170738533222,268,0 +170738533270,268,0 +170738533318,268,0 +170738533368,268,0 +170738533416,268,0 +170738533464,268,0 +170738533512,268,0 +170738533560,268,0 +170738533609,268,0 +170738533657,268,0 +170738533707,268,0 +170738533755,268,0 +170738533803,269,0 +170738533851,267,0 +170738533899,268,0 +170738533947,268,0 +170738533995,268,0 +170738534044,268,0 +170738534092,268,0 +170738534140,268,0 +170738534188,268,0 +170738534236,268,0 +170738534284,268,0 +170738534333,268,0 +170738534381,268,0 +170738534429,268,0 +170738534479,268,0 +170738534527,268,0 +170738534575,268,0 +170738534623,268,0 +170738534671,268,0 +170738534719,268,0 +170738534767,268,0 +170738534816,268,0 +170738534864,268,0 +170738534912,268,0 +170738534960,268,0 +170738535010,268,0 +170738535058,268,0 +170738535107,268,0 +170738535155,268,0 +170738535204,268,0 +170738535252,268,0 +170738535300,268,0 +170738535348,267,0 +170738535398,268,0 +170738535446,268,0 +170738535494,268,0 +170738535543,268,0 +170738535593,268,0 +170738535641,268,0 +170738535690,268,0 +170738535738,268,0 +170738535786,268,0 +170738535836,268,0 +170738535885,268,0 +170738535933,268,0 +170738535983,268,0 +170738536031,268,0 +170738536079,268,0 +170738536127,268,0 +170738536175,268,0 +170738536224,268,0 +170738536274,268,0 +170738536322,268,0 +170738536370,268,0 +170738536418,268,0 +170738536467,268,0 +170738536515,268,0 +170738536563,268,0 +170738536613,268,0 +170738536661,268,0 +170738536709,268,0 +170738536758,268,0 +170738536806,268,0 +170738536856,268,0 +170738536904,268,0 +170738536952,268,0 +170738537000,268,0 +170738537047,268,0 +170738537097,268,0 +170738537145,268,0 +170738537193,268,0 +170738537241,268,0 +170738537290,268,0 +170738537338,268,0 +170738537388,268,0 +170738537437,268,0 +170738537485,268,0 +170738537535,268,0 +170738537583,268,0 +170738537632,268,0 +170738537682,268,0 +170738537731,268,0 +170738537779,268,0 +170738537829,268,0 +170738537877,267,0 +170738537926,268,0 +170738537974,268,0 +170738538022,268,0 +170738538070,268,0 +170738538118,268,0 +170738538168,268,0 +170738538215,268,0 +170738538265,268,0 +170738538313,267,0 +170738538362,268,0 +170738538410,268,0 +170738538460,268,0 +170738538508,268,0 +170738538557,268,0 +170738538605,267,0 +170738538653,268,0 +170738538703,267,0 +170738538751,268,0 +170738538799,268,0 +170738538847,268,0 +170738538895,268,0 +170738538943,268,0 +170738538992,268,0 +170738539040,268,0 +170738539088,268,0 +170738539138,268,0 +170738539186,268,0 +170738539234,268,0 +170738539282,268,0 +170738539330,268,0 +170738539378,268,0 +170738539426,268,0 +170738539475,268,0 +170738539523,268,0 +170738539571,268,0 +170738539621,268,0 +170738539669,268,0 +170738539717,268,0 +170738539765,268,0 +170738539813,268,0 +170738539861,268,0 +170738539908,268,0 +170738539958,268,0 +170738540006,267,0 +170738540055,268,0 +170738540105,268,0 +170738540153,268,0 +170738540201,268,0 +170738540250,268,0 +170738540298,268,0 +170738540348,268,0 +170738540396,268,0 +170738540445,268,0 +170738540493,268,0 +170738540543,268,0 +170738540591,268,0 +170738540640,268,0 +170738540688,268,0 +170738540736,268,0 +170738540784,268,0 +170738540834,268,0 +170738540881,268,0 +170738540931,268,0 +170738540979,268,0 +170738541027,268,0 +170738541075,268,0 +170738541123,268,0 +170738541172,268,0 +170738541220,268,0 +170738541270,268,0 +170738541320,268,0 +170738541367,268,0 +170738541416,268,0 +170738541465,268,0 +170738541513,268,0 +170738541563,268,0 +170738541610,268,0 +170738541658,268,0 +170738541706,268,0 +170738541756,268,0 +170738541804,268,0 +170738541852,268,0 +170738541901,268,0 +170738541951,267,0 +170738541999,268,0 +170738542047,268,0 +170738542095,268,0 +170738542143,268,0 +170738542191,268,0 +170738542240,268,0 +170738542290,268,0 +170738542339,268,0 +170738542387,268,0 +170738542435,268,0 +170738542483,268,0 +170738542533,268,0 +170738542581,268,0 +170738542630,268,0 +170738542678,268,0 +170738542728,268,0 +170738542776,268,0 +170738542824,268,0 +170738542872,268,0 +170738542920,267,0 +170738542968,268,0 +170738543017,268,0 +170738543065,268,0 +170738543113,268,0 +170738543163,268,0 +170738543210,268,0 +170738543258,268,0 +170738543306,268,0 +170738543354,268,0 +170738543402,268,0 +170738543452,268,0 +170738543500,268,0 +170738543548,268,0 +170738543596,268,0 +170738543644,268,0 +170738543692,268,0 +170738543740,268,0 +170738543788,268,0 +170738543836,268,0 +170738543884,268,0 +170738543932,268,0 +170738543981,268,0 +170738544029,268,0 +170738544079,268,0 +170738544128,268,0 +170738544176,268,0 +170738544226,268,0 +170738544274,268,0 +170738544322,268,0 +170738544370,268,0 +170738544418,268,0 +170738544466,268,0 +170738544514,268,0 +170738544562,268,0 +170738544610,268,0 +170738544658,268,0 +170738544706,268,0 +170738544755,268,0 +170738544805,268,0 +170738544853,267,0 +170738544901,268,0 +170738544949,268,0 +170738544998,268,0 +170738545046,268,0 +170738545094,268,0 +170738545142,268,0 +170738545190,268,0 +170738545240,268,0 +170738545287,268,0 +170738545336,268,0 +170738545383,268,0 +170738545431,268,0 +170738545481,268,0 +170738545529,268,0 +170738545577,268,0 +170738545625,268,0 +170738545673,268,0 +170738545722,268,0 +170738545772,268,0 +170738545820,268,0 +170738545868,268,0 +170738545916,268,0 +170738545964,268,0 +170738546013,268,0 +170738546061,268,0 +170738546109,268,0 +170738546157,268,0 +170738546207,268,0 +170738546256,268,0 +170738546306,268,0 +170738546354,268,0 +170738546402,268,0 +170738546451,268,0 +170738546499,268,0 +170738546547,268,0 +170738546597,268,0 +170738546646,268,0 +170738546694,268,0 +170738546742,268,0 +170738546792,268,0 +170738546840,268,0 +170738546889,268,0 +170738546937,268,0 +170738546985,268,0 +170738547033,268,0 +170738547081,268,0 +170738547129,268,0 +170738547179,268,0 +170738547227,268,0 +170738547275,268,0 +170738547323,268,0 +170738547371,268,0 +170738547419,268,0 +170738547467,268,0 +170738547515,268,0 +170738547562,268,0 +170738547610,268,0 +170738547658,268,0 +170738547706,268,0 +170738547754,268,0 +170738547802,268,0 +170738547852,268,0 +170738547901,268,0 +170738547951,268,0 +170738548000,268,0 +170738548048,268,0 +170738548098,268,0 +170738548146,268,0 +170738548195,268,0 +170738548243,268,0 +170738548293,268,0 +170738548341,268,0 +170738548390,268,0 +170738548440,268,0 +170738548488,268,0 +170738548536,268,0 +170738548584,268,0 +170738548632,268,0 +170738548680,268,0 +170738548728,268,0 +170738548777,268,0 +170738548825,268,0 +170738548875,268,0 +170738548923,268,0 +170738548972,268,0 +170738549020,268,0 +170738549070,268,0 +170738549118,268,0 +170738549166,268,0 +170738549215,268,0 +170738549263,268,0 +170738549313,268,0 +170738549361,268,0 +170738549410,268,0 +170738549458,268,0 +170738549506,268,0 +170738549556,268,0 +170738549605,268,0 +170738549653,269,0 +170738549701,268,0 +170738549751,268,0 +170738549799,268,0 +170738549848,268,0 +170738549896,267,0 +170738549944,268,0 +170738549993,268,0 +170738550041,267,0 +170738550089,268,0 +170738550137,268,0 +170738550185,268,0 +170738550233,268,0 +170738550281,268,0 +170738550329,268,0 +170738550377,268,0 +170738550425,268,0 +170738550474,268,0 +170738550522,268,0 +170738550570,268,0 +170738550620,268,0 +170738550668,268,0 +170738550716,268,0 +170738550765,268,0 +170738550813,268,0 +170738550863,268,0 +170738550912,268,0 +170738550960,268,0 +170738551008,268,0 +170738551058,268,0 +170738551105,268,0 +170738551155,268,0 +170738551203,268,0 +170738551251,268,0 +170738551299,268,0 +170738551347,268,0 +170738551397,268,0 +170738551445,268,0 +170738551494,268,0 +170738551544,268,0 +170738551592,269,0 +170738551640,268,0 +170738551687,268,0 +170738551737,268,0 +170738551785,268,0 +170738551833,268,0 +170738551881,268,0 +170738551929,268,0 +170738551978,268,0 +170738552026,268,0 +170738552076,268,0 +170738552124,268,0 +170738552172,268,0 +170738552220,268,0 +170738552268,268,0 +170738552316,268,0 +170738552365,268,0 +170738552415,268,0 +170738552463,268,0 +170738552512,268,0 +170738552560,268,0 +170738552610,268,0 +170738552658,268,0 +170738552706,268,0 +170738552753,268,0 +170738552801,268,0 +170738552851,268,0 +170738552899,268,0 +170738552948,268,0 +170738552996,268,0 +170738553044,268,0 +170738553092,268,0 +170738553140,268,0 +170738553188,268,0 +170738553237,268,0 +170738553285,268,0 +170738553334,268,0 +170738553382,268,0 +170738553432,268,0 +170738553480,268,0 +170738553528,268,0 +170738553576,268,0 +170738553625,268,0 +170738553673,268,0 +170738553721,268,0 +170738553769,268,0 +170738553817,268,0 +170738553865,268,0 +170738553914,268,0 +170738553962,268,0 +170738554012,268,0 +170738554061,269,0 +170738554109,268,0 +170738554157,268,0 +170738554205,268,0 +170738554253,268,0 +170738554301,268,0 +170738554349,268,0 +170738554396,268,0 +170738554444,268,0 +170738554492,268,0 +170738554542,268,0 +170738554590,268,0 +170738554637,268,0 +170738554685,268,0 +170738554733,268,0 +170738554781,268,0 +170738554829,268,0 +170738554877,269,0 +170738554925,268,0 +170738554973,268,0 +170738555022,268,0 +170738555072,269,0 +170738555120,268,0 +170738555169,268,0 +170738555217,269,0 +170738555265,268,0 +170738555313,268,0 +170738555363,269,0 +170738555411,268,0 +170738555459,268,0 +170738555507,268,0 +170738555555,268,0 +170738555603,268,0 +170738555651,268,0 +170738555698,268,0 +170738555746,268,0 +170738555794,268,0 +170738555842,268,0 +170738555890,268,0 +170738555938,268,0 +170738555986,268,0 +170738556034,268,0 +170738556082,268,0 +170738556129,268,0 +170738556177,268,0 +170738556227,268,0 +170738556275,268,0 +170738556323,268,0 +170738556370,268,0 +170738556418,268,0 +170738556466,268,0 +170738556514,268,0 +170738556563,268,0 +170738556613,268,0 +170738556661,268,0 +170738556711,268,0 +170738556760,268,0 +170738556808,268,0 +170738556858,268,0 +170738556906,268,0 +170738556954,268,0 +170738557003,268,0 +170738557051,269,0 +170738557099,268,0 +170738557147,268,0 +170738557195,268,0 +170738557243,268,0 +170738557292,268,0 +170738557340,268,0 +170738557388,268,0 +170738557438,268,0 +170738557486,268,0 +170738557535,268,0 +170738557583,268,0 +170738557631,268,0 +170738557679,268,0 +170738557729,269,0 +170738557777,268,0 +170738557826,268,0 +170738557874,268,0 +170738557922,268,0 +170738557970,268,0 +170738558018,268,0 +170738558066,268,0 +170738558115,268,0 +170738558164,268,0 +170738558212,268,0 +170738558262,268,0 +170738558310,268,0 +170738558358,268,0 +170738558406,269,0 +170738558455,268,0 +170738558503,268,0 +170738558551,269,0 +170738558599,268,0 +170738558647,268,0 +170738558697,268,0 +170738558746,268,0 +170738558796,268,0 +170738558844,268,0 +170738558891,268,0 +170738558939,268,0 +170738558987,268,0 +170738559035,268,0 +170738559085,268,0 +170738559133,268,0 +170738559181,268,0 +170738559229,268,0 +170738559277,268,0 +170738559326,268,0 +170738559374,269,0 +170738559424,268,0 +170738559473,268,0 +170738559523,268,0 +170738559571,268,0 +170738559619,268,0 +170738559668,268,0 +170738559718,268,0 +170738559766,268,0 +170738559814,268,0 +170738559863,268,0 +170738559913,269,0 +170738559961,268,0 +170738560009,268,0 +170738560058,268,0 +170738560108,268,0 +170738560156,268,0 +170738560204,268,0 +170738560253,268,0 +170738560303,268,0 +170738560351,268,0 +170738560400,269,0 +170738560450,268,0 +170738560498,268,0 +170738560546,268,0 +170738560594,268,0 +170738560642,268,0 +170738560691,268,0 +170738560741,268,0 +170738560789,268,0 +170738560839,268,0 +170738560888,268,0 +170738560936,268,0 +170738560984,268,0 +170738561033,268,0 +170738561081,268,0 +170738561131,268,0 +170738561180,268,0 +170738561228,268,0 +170738561276,268,0 +170738561324,268,0 +170738561372,268,0 +170738561420,268,0 +170738561468,268,0 +170738561516,268,0 +170738561564,268,0 +170738561612,268,0 +170738561660,268,0 +170738561708,268,0 +170738561756,268,0 +170738561804,268,0 +170738561852,268,0 +170738561900,268,0 +170738561948,268,0 +170738561996,269,0 +170738562045,268,0 +170738562093,268,0 +170738562143,268,0 +170738562191,268,0 +170738562239,269,0 +170738562287,269,0 +170738562335,268,0 +170738562383,268,0 +170738562431,268,0 +170738562480,268,0 +170738562528,269,0 +170738562578,268,0 +170738562626,268,0 +170738562674,268,0 +170738562722,268,0 +170738562770,268,0 +170738562819,268,0 +170738562869,268,0 +170738562917,268,0 +170738562965,268,0 +170738563014,269,0 +170738563062,268,0 +170738563110,268,0 +170738563158,268,0 +170738563207,268,0 +170738563255,268,0 +170738563305,269,0 +170738563353,269,0 +170738563401,268,0 +170738563449,268,0 +170738563496,268,0 +170738563544,268,0 +170738563592,269,0 +170738563642,268,0 +170738563689,268,0 +170738563737,268,0 +170738563785,268,0 +170738563833,268,0 +170738563881,268,0 +170738563929,268,0 +170738563977,268,0 +170738564025,268,0 +170738564073,268,0 +170738564120,269,0 +170738564168,268,0 +170738564216,268,0 +170738564264,268,0 +170738564312,268,0 +170738564360,268,0 +170738564409,269,0 +170738564457,268,0 +170738564507,268,0 +170738564555,268,0 +170738564603,268,0 +170738564650,268,0 +170738564698,268,0 +170738564746,268,0 +170738564796,268,0 +170738564845,268,0 +170738564893,268,0 +170738564941,268,0 +170738564989,268,0 +170738565036,268,0 +170738565084,268,0 +170738565132,268,0 +170738565180,268,0 +170738565230,268,0 +170738565277,268,0 +170738565325,268,0 +170738565373,268,0 +170738565421,268,0 +170738565469,268,0 +170738565517,268,0 +170738565566,268,0 +170738565614,268,0 +170738565662,269,0 +170738565710,268,0 +170738565760,268,0 +170738565807,268,0 +170738565855,268,0 +170738565903,268,0 +170738565951,268,0 +170738565999,268,0 +170738566047,268,0 +170738566095,268,0 +170738566143,268,0 +170738566192,269,0 +170738566240,268,0 +170738566288,268,0 +170738566337,268,0 +170738566385,268,0 +170738566433,268,0 +170738566481,268,0 +170738566529,268,0 +170738566577,268,0 +170738566625,268,0 +170738566674,269,0 +170738566722,268,0 +170738566770,268,0 +170738566819,268,0 +170738566869,268,0 +170738566916,268,0 +170738566964,268,0 +170738567012,268,0 +170738567062,269,0 +170738567110,268,0 +170738567157,268,0 +170738567205,268,0 +170738567253,268,0 +170738567301,268,0 +170738567349,269,0 +170738567397,268,0 +170738567445,268,0 +170738567492,268,0 +170738567540,268,0 +170738567590,268,0 +170738567638,269,0 +170738567687,268,0 +170738567737,268,0 +170738567786,268,0 +170738567834,268,0 +170738567882,268,0 +170738567930,268,0 +170738567978,268,0 +170738568027,268,0 +170738568075,268,0 +170738568123,268,0 +170738568171,268,0 +170738568219,268,0 +170738568266,269,0 +170738568314,268,0 +170738568362,268,0 +170738568412,268,0 +170738568460,268,0 +170738568507,268,0 +170738568557,268,0 +170738568605,268,0 +170738568654,268,0 +170738568702,268,0 +170738568750,269,0 +170738568798,268,0 +170738568846,268,0 +170738568894,268,0 +170738568942,268,0 +170738568990,268,0 +170738569038,268,0 +170738569086,268,0 +170738569134,268,0 +170738569182,268,0 +170738569232,268,0 +170738569280,268,0 +170738569328,268,0 +170738569376,268,0 +170738569424,268,0 +170738569472,268,0 +170738569520,269,0 +170738569567,268,0 +170738569617,268,0 +170738569665,268,0 +170738569713,268,0 +170738569762,269,0 +170738569810,268,0 +170738569858,268,0 +170738569907,268,0 +170738569957,268,0 +170738570005,268,0 +170738570054,268,0 +170738570104,268,0 +170738570152,268,0 +170738570199,268,0 +170738570247,268,0 +170738570295,268,0 +170738570343,268,0 +170738570391,268,0 +170738570439,268,0 +170738570487,268,0 +170738570535,268,0 +170738570582,268,0 +170738570630,268,0 +170738570678,268,0 +170738570728,268,0 +170738570776,268,0 +170738570825,268,0 +170738570873,268,0 +170738570921,268,0 +170738570969,268,0 +170738571018,268,0 +170738571066,268,0 +170738571114,268,0 +170738571162,268,0 +170738571210,268,0 +170738571258,268,0 +170738571306,268,0 +170738571354,268,0 +170738571402,268,0 +170738571449,268,0 +170738571497,269,0 +170738571545,268,0 +170738571593,268,0 +170738571641,268,0 +170738571689,268,0 +170738571737,268,0 +170738571786,268,0 +170738571834,268,0 +170738571882,268,0 +170738571930,268,0 +170738571978,268,0 +170738572027,268,0 +170738572075,268,0 +170738572125,268,0 +170738572174,268,0 +170738572222,268,0 +170738572270,268,0 +170738572318,269,0 +170738572365,268,0 +170738572415,268,0 +170738572463,268,0 +170738572511,268,0 +170738572559,268,0 +170738572606,268,0 +170738572654,268,0 +170738572702,269,0 +170738572750,268,0 +170738572798,268,0 +170738572846,268,0 +170738572894,268,0 +170738572942,268,0 +170738572990,268,0 +170738573037,268,0 +170738573085,268,0 +170738573133,268,0 +170738573181,268,0 +170738573229,268,0 +170738573279,268,0 +170738573328,268,0 +170738573376,268,0 +170738573424,268,0 +170738573473,268,0 +170738573523,268,0 +170738573572,268,0 +170738573620,268,0 +170738573668,268,0 +170738573716,268,0 +170738573764,268,0 +170738573814,269,0 +170738573862,268,0 +170738573911,269,0 +170738573959,268,0 +170738574009,268,0 +170738574057,268,0 +170738574105,268,0 +170738574153,268,0 +170738574202,268,0 +170738574252,269,0 +170738574300,269,0 +170738574348,268,0 +170738574396,268,0 +170738574443,268,0 +170738574491,268,0 +170738574541,269,0 +170738574589,268,0 +170738574637,268,0 +170738574686,268,0 +170738574735,268,0 +170738574783,268,0 +170738574831,268,0 +170738574880,268,0 +170738574929,268,0 +170738574979,268,0 +170738575028,268,0 +170738575076,268,0 +170738575124,268,0 +170738575172,268,0 +170738575220,268,0 +170738575270,268,0 +170738575318,268,0 +170738575366,268,0 +170738575415,268,0 +170738575465,268,0 +170738575513,268,0 +170738575561,268,0 +170738575609,268,0 +170738575658,268,0 +170738575706,268,0 +170738575754,268,0 +170738575802,269,0 +170738575850,268,0 +170738575898,268,0 +170738575948,268,0 +170738575996,268,0 +170738576044,268,0 +170738576092,268,0 +170738576140,268,0 +170738576188,268,0 +170738576237,268,0 +170738576285,269,0 +170738576335,268,0 +170738576384,268,0 +170738576432,268,0 +170738576480,268,0 +170738576528,268,0 +170738576578,268,0 +170738576626,268,0 +170738576675,268,0 +170738576723,268,0 +170738576771,268,0 +170738576819,268,0 +170738576867,268,0 +170738576915,268,0 +170738576963,268,0 +170738577011,268,0 +170738577059,268,0 +170738577107,268,0 +170738577155,268,0 +170738577203,268,0 +170738577251,268,0 +170738577299,268,0 +170738577347,268,0 +170738577395,268,0 +170738577443,268,0 +170738577492,268,0 +170738577540,268,0 +170738577590,268,0 +170738577639,268,0 +170738577687,269,0 +170738577737,268,0 +170738577786,268,0 +170738577834,268,0 +170738577882,268,0 +170738577930,268,0 +170738577978,269,0 +170738578026,269,0 +170738578074,268,0 +170738578122,268,0 +170738578170,268,0 +170738578218,268,0 +170738578267,268,0 +170738578317,269,0 +170738578365,268,0 +170738578414,268,0 +170738578464,268,0 +170738578513,268,0 +170738578561,268,0 +170738578609,268,0 +170738578659,268,0 +170738578708,268,0 +170738578756,268,0 +170738578806,268,0 +170738578855,268,0 +170738578905,268,0 +170738578953,268,0 +170738579001,268,0 +170738579049,268,0 +170738579098,268,0 +170738579146,268,0 +170738579196,268,0 +170738579244,268,0 +170738579294,268,0 +170738579342,268,0 +170738579391,268,0 +170738579439,268,0 +170738579487,268,0 +170738579536,268,0 +170738579586,268,0 +170738579634,268,0 +170738579682,268,0 +170738579730,268,0 +170738579778,268,0 +170738579826,268,0 +170738579874,268,0 +170738579922,268,0 +170738579971,268,0 +170738580019,268,0 +170738580067,268,0 +170738580115,268,0 +170738580165,268,0 +170738580213,268,0 +170738580262,268,0 +170738580310,268,0 +170738580358,268,0 +170738580407,268,0 +170738580455,268,0 +170738580503,268,0 +170738580553,268,0 +170738580601,268,0 +170738580649,268,0 +170738580697,268,0 +170738580745,268,0 +170738580792,268,0 +170738580840,268,0 +170738580888,268,0 +170738580938,268,0 +170738580986,268,0 +170738581035,268,0 +170738581083,268,0 +170738581131,268,0 +170738581181,268,0 +170738581229,268,0 +170738581277,268,0 +170738581325,268,0 +170738581373,268,0 +170738581421,268,0 +170738581470,268,0 +170738581520,268,0 +170738581569,268,0 +170738581619,268,0 +170738581668,268,0 +170738581718,267,0 +170738581766,268,0 +170738581815,268,0 +170738581865,268,0 +170738581913,268,0 +170738581961,268,0 +170738582010,268,0 +170738582060,268,0 +170738582108,268,0 +170738582157,268,0 +170738582207,268,0 +170738582255,268,0 +170738582304,268,0 +170738582352,268,0 +170738582400,268,0 +170738582448,268,0 +170738582496,268,0 +170738582545,268,0 +170738582593,268,0 +170738582641,268,0 +170738582689,268,0 +170738582737,268,0 +170738582785,268,0 +170738582835,267,0 +170738582884,268,0 +170738582934,268,0 +170738582982,268,0 +170738583030,268,0 +170738583078,268,0 +170738583126,268,0 +170738583174,268,0 +170738583222,268,0 +170738583270,268,0 +170738583318,268,0 +170738583366,268,0 +170738583414,268,0 +170738583462,268,0 +170738583510,268,0 +170738583559,268,0 +170738583607,268,0 +170738583655,268,0 +170738583703,268,0 +170738583751,268,0 +170738583799,268,0 +170738583847,268,0 +170738583895,268,0 +170738583943,268,0 +170738583992,268,0 +170738584040,268,0 +170738584088,268,0 +170738584138,268,0 +170738584186,268,0 +170738584234,269,0 +170738584283,268,0 +170738584331,268,0 +170738584379,268,0 +170738584427,268,0 +170738584475,268,0 +170738584523,268,0 +170738584573,268,0 +170738584621,268,0 +170738584669,268,0 +170738584717,268,0 +170738584766,268,0 +170738584814,268,0 +170738584862,268,0 +170738584910,268,0 +170738584958,268,0 +170738585008,268,0 +170738585055,268,0 +170738585103,268,0 +170738585151,268,0 +170738585199,268,0 +170738585247,268,0 +170738585297,268,0 +170738585345,268,0 +170738585393,268,0 +170738585441,268,0 +170738585489,268,0 +170738585537,268,0 +170738585585,268,0 +170738585634,268,0 +170738585684,268,0 +170738585733,268,0 +170738585781,268,0 +170738585831,268,0 +170738585879,268,0 +170738585927,268,0 +170738585975,268,0 +170738586024,268,0 +170738586072,268,0 +170738586120,268,0 +170738586168,268,0 +170738586218,268,0 +170738586266,268,0 +170738586315,268,0 +170738586363,268,0 +170738586413,268,0 +170738586461,268,0 +170738586508,268,0 +170738586558,268,0 +170738586607,268,0 +170738586655,268,0 +170738586703,268,0 +170738586751,268,0 +170738586799,268,0 +170738586849,268,0 +170738586897,268,0 +170738586946,268,0 +170738586994,268,0 +170738587042,267,0 +170738587092,268,0 +170738587140,268,0 +170738587188,268,0 +170738587237,268,0 +170738587285,268,0 +170738587333,268,0 +170738587381,267,0 +170738587431,268,0 +170738587479,268,0 +170738587527,268,0 +170738587575,268,0 +170738587624,268,0 +170738587672,268,0 +170738587722,268,0 +170738587770,268,0 +170738587818,267,0 +170738587867,268,0 +170738587915,267,0 +170738587963,268,0 +170738588011,268,0 +170738588059,268,0 +170738588108,268,0 +170738588156,268,0 +170738588206,268,0 +170738588255,268,0 +170738588303,268,0 +170738588351,268,0 +170738588399,268,0 +170738588447,268,0 +170738588495,268,0 +170738588543,268,0 +170738588591,268,0 +170738588639,268,0 +170738588687,268,0 +170738588735,268,0 +170738588783,268,0 +170738588833,268,0 +170738588882,268,0 +170738588930,268,0 +170738588980,268,0 +170738589028,268,0 +170738589076,268,0 +170738589124,268,0 +170738589172,268,0 +170738589220,268,0 +170738589268,268,0 +170738589316,268,0 +170738589365,268,0 +170738589413,268,0 +170738589463,268,0 +170738589511,268,0 +170738589559,268,0 +170738589607,268,0 +170738589654,268,0 +170738589704,268,0 +170738589754,268,0 +170738589802,268,0 +170738589851,268,0 +170738589899,268,0 +170738589947,268,0 +170738589995,268,0 +170738590045,268,0 +170738590093,268,0 +170738590141,268,0 +170738590189,268,0 +170738590237,268,0 +170738590285,268,0 +170738590333,268,0 +170738590381,268,0 +170738590429,268,0 +170738590477,268,0 +170738590525,268,0 +170738590573,268,0 +170738590622,268,0 +170738590672,268,0 +170738590719,268,0 +170738590769,268,0 +170738590817,268,0 +170738590865,268,0 +170738590914,268,0 +170738590964,268,0 +170738591012,268,0 +170738591060,268,0 +170738591108,267,0 +170738591156,268,0 +170738591204,268,0 +170738591253,268,0 +170738591303,268,0 +170738591352,268,0 +170738591400,268,0 +170738591448,268,0 +170738591496,268,0 +170738591546,268,0 +170738591594,268,0 +170738591643,268,0 +170738591693,268,0 +170738591741,268,0 +170738591789,268,0 +170738591838,268,0 +170738591886,268,0 +170738591934,268,0 +170738591982,268,0 +170738592030,267,0 +170738592080,268,0 +170738592128,268,0 +170738592177,268,0 +170738592225,268,0 +170738592273,268,0 +170738592321,268,0 +170738592369,268,0 +170738592419,268,0 +170738592467,268,0 +170738592515,267,0 +170738592564,268,0 +170738592612,268,0 +170738592660,268,0 +170738592710,268,0 +170738592758,268,0 +170738592806,268,0 +170738592854,268,0 +170738592903,268,0 +170738592951,268,0 +170738593000,267,0 +170738593048,268,0 +170738593096,267,0 +170738593144,268,0 +170738593192,268,0 +170738593240,268,0 +170738593288,268,0 +170738593338,268,0 +170738593387,268,0 +170738593435,268,0 +170738593485,268,0 +170738593534,268,0 +170738593582,268,0 +170738593632,268,0 +170738593681,268,0 +170738593729,268,0 +170738593779,268,0 +170738593828,268,0 +170738593876,268,0 +170738593924,268,0 +170738593974,268,0 +170738594023,268,0 +170738594071,268,0 +170738594119,268,0 +170738594167,268,0 +170738594215,268,0 +170738594263,268,0 +170738594311,268,0 +170738594359,268,0 +170738594407,268,0 +170738594455,268,0 +170738594503,268,0 +170738594551,268,0 +170738594599,268,0 +170738594648,268,0 +170738594696,268,0 +170738594744,268,0 +170738594794,268,0 +170738594842,268,0 +170738594890,268,0 +170738594938,268,0 +170738594986,268,0 +170738595035,268,0 +170738595083,268,0 +170738595131,268,0 +170738595179,268,0 +170738595229,268,0 +170738595278,268,0 +170738595326,268,0 +170738595374,268,0 +170738595422,268,0 +170738595470,268,0 +170738595518,268,0 +170738595566,268,0 +170738595614,268,0 +170738595662,268,0 +170738595710,268,0 +170738595759,268,0 +170738595807,268,0 +170738595855,268,0 +170738595903,268,0 +170738595953,268,0 +170738596001,268,0 +170738596050,268,0 +170738596098,268,0 +170738596146,268,0 +170738596194,268,0 +170738596242,268,0 +170738596290,268,0 +170738596338,268,0 +170738596388,268,0 +170738596436,268,0 +170738596485,268,0 +170738596535,268,0 +170738596583,268,0 +170738596631,268,0 +170738596679,268,0 +170738596727,268,0 +170738596774,268,0 +170738596822,268,0 +170738596870,268,0 +170738596920,268,0 +170738596968,268,0 +170738597016,268,0 +170738597065,268,0 +170738597113,268,0 +170738597161,268,0 +170738597211,268,0 +170738597259,268,0 +170738597307,268,0 +170738597355,268,0 +170738597403,268,0 +170738597451,268,0 +170738597499,268,0 +170738597548,268,0 +170738597596,268,0 +170738597644,268,0 +170738597692,269,0 +170738597740,268,0 +170738597788,268,0 +170738597837,268,0 +170738597885,268,0 +170738597935,268,0 +170738597983,268,0 +170738598031,268,0 +170738598079,268,0 +170738598128,268,0 +170738598176,268,0 +170738598224,268,0 +170738598272,268,0 +170738598322,268,0 +170738598370,268,0 +170738598419,268,0 +170738598469,268,0 +170738598517,268,0 +170738598566,268,0 +170738598614,268,0 +170738598662,267,0 +170738598710,268,0 +170738598758,268,0 +170738598806,268,0 +170738598854,267,0 +170738598902,268,0 +170738598950,268,0 +170738598998,268,0 +170738599046,268,0 +170738599094,268,0 +170738599144,268,0 +170738599192,268,0 +170738599241,268,0 +170738599289,268,0 +170738599337,268,0 +170738599385,268,0 +170738599433,268,0 +170738599481,268,0 +170738599531,268,0 +170738599580,268,0 +170738599630,268,0 +170738599678,268,0 +170738599725,268,0 +170738599773,268,0 +170738599821,268,0 +170738599869,267,0 +170738599917,268,0 +170738599965,268,0 +170738600015,268,0 +170738600063,268,0 +170738600111,268,0 +170738600159,268,0 +170738600207,268,0 +170738600256,268,0 +170738600304,268,0 +170738600354,268,0 +170738600402,268,0 +170738600450,268,0 +170738600498,267,0 +170738600546,268,0 +170738600594,268,0 +170738600642,268,0 +170738600690,268,0 +170738600739,268,0 +170738600787,268,0 +170738600837,267,0 +170738600885,268,0 +170738600933,268,0 +170738600982,268,0 +170738601032,268,0 +170738601081,268,0 +170738601129,268,0 +170738601177,268,0 +170738601225,268,0 +170738601273,268,0 +170738601321,268,0 +170738601369,268,0 +170738601419,268,0 +170738601468,268,0 +170738601516,268,0 +170738601564,269,0 +170738601612,268,0 +170738601660,268,0 +170738601709,268,0 +170738601757,268,0 +170738601805,268,0 +170738601855,268,0 +170738601903,268,0 +170738601952,268,0 +170738602000,268,0 +170738602050,268,0 +170738602098,268,0 +170738602146,268,0 +170738602193,268,0 +170738602241,268,0 +170738602289,268,0 +170738602337,268,0 +170738602385,268,0 +170738602433,268,0 +170738602483,268,0 +170738602531,268,0 +170738602580,268,0 +170738602628,268,0 +170738602678,268,0 +170738602726,268,0 +170738602774,268,0 +170738602823,268,0 +170738602873,268,0 +170738602921,268,0 +170738602970,268,0 +170738603018,268,0 +170738603066,268,0 +170738603114,268,0 +170738603162,268,0 +170738603210,268,0 +170738603258,268,0 +170738603306,268,0 +170738603354,268,0 +170738603402,268,0 +170738603450,268,0 +170738603498,268,0 +170738603546,268,0 +170738603594,268,0 +170738603643,268,0 +170738603693,267,0 +170738603742,268,0 +170738603790,268,0 +170738603840,268,0 +170738603888,268,0 +170738603936,268,0 +170738603984,267,0 +170738604032,268,0 +170738604080,268,0 +170738604128,268,0 +170738604177,268,0 +170738604225,268,0 +170738604275,268,0 +170738604323,268,0 +170738604372,268,0 +170738604420,268,0 +170738604470,268,0 +170738604519,268,0 +170738604569,268,0 +170738604617,268,0 +170738604665,268,0 +170738604713,268,0 +170738604761,268,0 +170738604809,268,0 +170738604857,268,0 +170738604905,268,0 +170738604954,268,0 +170738605004,268,0 +170738605052,268,0 +170738605101,268,0 +170738605149,268,0 +170738605197,268,0 +170738605245,268,0 +170738605295,268,0 +170738605343,268,0 +170738605392,268,0 +170738605440,268,0 +170738605490,268,0 +170738605537,268,0 +170738605587,268,0 +170738605635,268,0 +170738605683,268,0 +170738605731,268,0 +170738605779,268,0 +170738605828,268,0 +170738605878,268,0 +170738605927,268,0 +170738605977,268,0 +170738606025,268,0 +170738606073,268,0 +170738606122,268,0 +170738606170,268,0 +170738606218,268,0 +170738606266,268,0 +170738606316,268,0 +170738606364,268,0 +170738606412,268,0 +170738606460,268,0 +170738606508,268,0 +170738606556,267,0 +170738606605,268,0 +170738606653,268,0 +170738606703,268,0 +170738606751,268,0 +170738606799,268,0 +170738606848,268,0 +170738606896,268,0 +170738606944,268,0 +170738606994,268,0 +170738607042,268,0 +170738607091,268,0 +170738607139,268,0 +170738607187,268,0 +170738607235,268,0 +170738607283,268,0 +170738607331,268,0 +170738607379,268,0 +170738607427,268,0 +170738607475,267,0 +170738607523,268,0 +170738607573,268,0 +170738607621,268,0 +170738607670,268,0 +170738607720,268,0 +170738607768,268,0 +170738607817,268,0 +170738607867,268,0 +170738607915,268,0 +170738607964,268,0 +170738608012,268,0 +170738608060,268,0 +170738608108,268,0 +170738608156,268,0 +170738608204,268,0 +170738608252,268,0 +170738608300,268,0 +170738608348,268,0 +170738608398,268,0 +170738608445,268,0 +170738608495,268,0 +170738608543,268,0 +170738608591,268,0 +170738608639,268,0 +170738608687,268,0 +170738608737,268,0 +170738608785,268,0 +170738608834,268,0 +170738608884,268,0 +170738608933,268,0 +170738608981,268,0 +170738609029,268,0 +170738609077,268,0 +170738609125,268,0 +170738609175,268,0 +170738609223,268,0 +170738609271,268,0 +170738609319,268,0 +170738609367,268,0 +170738609416,268,0 +170738609466,268,0 +170738609513,268,0 +170738609561,268,0 +170738609609,268,0 +170738609659,268,0 +170738609707,268,0 +170738609755,268,0 +170738609803,268,0 +170738609851,268,0 +170738609899,268,0 +170738609947,268,0 +170738609995,268,0 +170738610043,268,0 +170738610091,267,0 +170738610140,268,0 +170738610188,268,0 +170738610236,268,0 +170738610284,267,0 +170738610332,268,0 +170738610380,268,0 +170738610428,268,0 +170738610476,268,0 +170738610526,268,0 +170738610574,268,0 +170738610622,268,0 +170738610670,268,0 +170738610719,268,0 +170738610767,268,0 +170738610817,268,0 +170738610865,268,0 +170738610913,268,0 +170738610961,268,0 +170738611008,268,0 +170738611056,268,0 +170738611106,268,0 +170738611154,268,0 +170738611202,268,0 +170738611250,268,0 +170738611298,268,0 +170738611346,268,0 +170738611394,268,0 +170738611442,268,0 +170738611491,268,0 +170738611539,268,0 +170738611587,268,0 +170738611637,268,0 +170738611685,268,0 +170738611734,268,0 +170738611782,268,0 +170738611832,268,0 +170738611880,268,0 +170738611929,268,0 +170738611977,268,0 +170738612025,268,0 +170738612073,268,0 +170738612121,268,0 +170738612169,268,0 +170738612217,268,0 +170738612265,268,0 +170738612314,268,0 +170738612362,268,0 +170738612410,268,0 +170738612458,268,0 +170738612507,268,0 +170738612555,268,0 +170738612603,268,0 +170738612651,268,0 +170738612699,268,0 +170738612746,268,0 +170738612796,268,0 +170738612845,268,0 +170738612893,268,0 +170738612941,268,0 +170738612991,267,0 +170738613039,268,0 +170738613087,268,0 +170738613134,268,0 +170738613182,268,0 +170738613230,268,0 +170738613280,268,0 +170738613328,268,0 +170738613376,268,0 +170738613424,269,0 +170738613473,268,0 +170738613522,268,0 +170738613570,269,0 +170738613618,268,0 +170738613666,268,0 +170738613714,268,0 +170738613762,268,0 +170738613810,268,0 +170738613858,268,0 +170738613906,268,0 +170738613954,268,0 +170738614001,268,0 +170738614049,268,0 +170738614097,268,0 +170738614145,268,0 +170738614193,268,0 +170738614241,268,0 +170738614289,268,0 +170738614336,268,0 +170738614384,268,0 +170738614434,268,0 +170738614482,268,0 +170738614530,268,0 +170738614578,268,0 +170738614627,268,0 +170738614675,268,0 +170738614724,268,0 +170738614772,268,0 +170738614820,268,0 +170738614868,268,0 +170738614918,268,0 +170738614965,268,0 +170738615013,268,0 +170738615061,268,0 +170738615109,268,0 +170738615157,268,0 +170738615205,268,0 +170738615254,268,0 +170738615302,268,0 +170738615350,269,0 +170738615398,268,0 +170738615446,268,0 +170738615494,268,0 +170738615542,268,0 +170738615590,268,0 +170738615637,268,0 +170738615685,268,0 +170738615733,268,0 +170738615781,268,0 +170738615829,268,0 +170738615877,268,0 +170738615925,268,0 +170738615973,268,0 +170738616020,268,0 +170738616068,268,0 +170738616116,268,0 +170738616164,268,0 +170738616212,268,0 +170738616260,268,0 +170738616308,268,0 +170738616356,268,0 +170738616404,269,0 +170738616451,268,0 +170738616499,268,0 +170738616547,269,0 +170738616595,268,0 +170738616643,268,0 +170738616691,268,0 +170738616739,268,0 +170738616787,268,0 +170738616834,268,0 +170738616882,268,0 +170738616930,268,0 +170738616978,268,0 +170738617026,268,0 +170738617075,268,0 +170738617125,268,0 +170738617173,268,0 +170738617222,268,0 +170738617270,268,0 +170738617320,268,0 +170738617369,268,0 +170738617417,268,0 +170738617465,268,0 +170738617513,268,0 +170738617563,268,0 +170738617611,268,0 +170738617659,268,0 +170738617707,268,0 +170738617754,268,0 +170738617804,268,0 +170738617852,268,0 +170738617900,268,0 +170738617947,268,0 +170738617995,268,0 +170738618045,268,0 +170738618093,268,0 +170738618141,268,0 +170738618189,268,0 +170738618237,268,0 +170738618285,268,0 +170738618334,268,0 +170738618382,268,0 +170738618432,268,0 +170738618480,268,0 +170738618528,268,0 +170738618577,268,0 +170738618625,269,0 +170738618675,268,0 +170738618722,268,0 +170738618772,268,0 +170738618821,268,0 +170738618871,268,0 +170738618919,268,0 +170738618967,268,0 +170738619016,268,0 +170738619066,268,0 +170738619114,268,0 +170738619163,268,0 +170738619211,269,0 +170738619259,268,0 +170738619309,269,0 +170738619358,268,0 +170738619406,268,0 +170738619454,268,0 +170738619502,268,0 +170738619550,268,0 +170738619598,268,0 +170738619648,268,0 +170738619696,268,0 +170738619744,268,0 +170738619793,268,0 +170738619841,268,0 +170738619891,268,0 +170738619940,268,0 +170738619990,268,0 +170738620038,268,0 +170738620086,268,0 +170738620134,269,0 +170738620182,268,0 +170738620230,268,0 +170738620278,268,0 +170738620326,268,0 +170738620374,268,0 +170738620423,268,0 +170738620473,268,0 +170738620522,268,0 +170738620570,268,0 +170738620618,269,0 +170738620666,268,0 +170738620714,268,0 +170738620763,268,0 +170738620813,269,0 +170738620861,268,0 +170738620909,268,0 +170738620957,268,0 +170738621005,268,0 +170738621054,268,0 +170738621102,268,0 +170738621150,268,0 +170738621198,268,0 +170738621248,268,0 +170738621296,268,0 +170738621345,269,0 +170738621395,268,0 +170738621443,268,0 +170738621491,268,0 +170738621540,268,0 +170738621590,268,0 +170738621638,268,0 +170738621686,268,0 +170738621734,269,0 +170738621782,269,0 +170738621831,268,0 +170738621879,268,0 +170738621927,269,0 +170738621976,268,0 +170738622026,269,0 +170738622074,268,0 +170738622122,268,0 +170738622170,269,0 +170738622219,268,0 +170738622267,268,0 +170738622317,268,0 +170738622366,268,0 +170738622414,268,0 +170738622462,268,0 +170738622510,268,0 +170738622558,268,0 +170738622608,268,0 +170738622657,269,0 +170738622707,268,0 +170738622756,268,0 +170738622804,268,0 +170738622854,269,0 +170738622902,268,0 +170738622950,268,0 +170738622998,268,0 +170738623046,269,0 +170738623095,268,0 +170738623143,268,0 +170738623191,268,0 +170738623239,269,0 +170738623288,269,0 +170738623336,268,0 +170738623384,269,0 +170738623432,268,0 +170738623480,268,0 +170738623528,268,0 +170738623576,268,0 +170738623624,268,0 +170738623672,269,0 +170738623722,268,0 +170738623770,269,0 +170738623818,268,0 +170738623865,268,0 +170738623913,269,0 +170738623961,268,0 +170738624011,268,0 +170738624059,268,0 +170738624107,268,0 +170738624155,269,0 +170738624203,268,0 +170738624251,268,0 +170738624300,268,0 +170738624348,268,0 +170738624398,269,0 +170738624446,268,0 +170738624494,268,0 +170738624543,268,0 +170738624591,268,0 +170738624639,268,0 +170738624687,268,0 +170738624735,268,0 +170738624783,269,0 +170738624832,269,0 +170738624880,268,0 +170738624928,268,0 +170738624976,268,0 +170738625026,269,0 +170738625074,268,0 +170738625122,268,0 +170738625171,268,0 +170738625219,268,0 +170738625267,268,0 +170738625315,269,0 +170738625365,268,0 +170738625413,268,0 +170738625462,268,0 +170738625512,269,0 +170738625561,268,0 +170738625609,269,0 +170738625657,269,0 +170738625705,268,0 +170738625753,268,0 +170738625801,269,0 +170738625849,269,0 +170738625898,268,0 +170738625946,268,0 +170738625994,268,0 +170738626042,268,0 +170738626092,269,0 +170738626142,268,0 +170738626190,268,0 +170738626237,268,0 +170738626285,269,0 +170738626333,268,0 +170738626381,268,0 +170738626431,268,0 +170738626479,268,0 +170738626528,268,0 +170738626578,268,0 +170738626627,268,0 +170738626675,268,0 +170738626723,268,0 +170738626771,269,0 +170738626819,269,0 +170738626867,268,0 +170738626916,269,0 +170738626964,268,0 +170738627014,269,0 +170738627062,269,0 +170738627110,268,0 +170738627160,268,0 +170738627208,268,0 +170738627255,268,0 +170738627303,269,0 +170738627351,269,0 +170738627399,269,0 +170738627447,269,0 +170738627497,268,0 +170738627545,268,0 +170738627593,268,0 +170738627642,269,0 +170738627690,268,0 +170738627738,268,0 +170738627786,268,0 +170738627834,268,0 +170738627884,269,0 +170738627933,268,0 +170738627981,269,0 +170738628029,268,0 +170738628079,268,0 +170738628127,268,0 +170738628176,268,0 +170738628224,268,0 +170738628272,268,0 +170738628320,268,0 +170738628370,269,0 +170738628418,268,0 +170738628467,268,0 +170738628515,268,0 +170738628563,268,0 +170738628613,269,0 +170738628662,268,0 +170738628710,268,0 +170738628759,268,0 +170738628807,268,0 +170738628855,269,0 +170738628903,268,0 +170738628951,268,0 +170738628999,268,0 +170738629047,268,0 +170738629095,268,0 +170738629145,268,0 +170738629193,268,0 +170738629241,268,0 +170738629290,269,0 +170738629338,268,0 +170738629388,268,0 +170738629437,268,0 +170738629485,268,0 +170738629533,268,0 +170738629581,268,0 +170738629629,269,0 +170738629679,268,0 +170738629727,268,0 +170738629775,268,0 +170738629823,269,0 +170738629871,268,0 +170738629918,268,0 +170738629966,268,0 +170738630016,269,0 +170738630064,269,0 +170738630112,268,0 +170738630161,268,0 +170738630211,269,0 +170738630261,268,0 +170738630308,268,0 +170738630358,269,0 +170738630406,268,0 +170738630454,269,0 +170738630504,269,0 +170738630552,268,0 +170738630600,269,0 +170738630649,268,0 +170738630699,268,0 +170738630746,269,0 +170738630794,269,0 +170738630842,269,0 +170738630890,268,0 +170738630938,268,0 +170738630986,268,0 +170738631034,268,0 +170738631084,268,0 +170738631133,269,0 +170738631183,268,0 +170738631231,269,0 +170738631279,268,0 +170738631327,269,0 +170738631375,268,0 +170738631423,269,0 +170738631471,268,0 +170738631518,268,0 +170738631568,268,0 +170738631616,269,0 +170738631664,268,0 +170738631712,269,0 +170738631762,268,0 +170738631809,268,0 +170738631857,268,0 +170738631905,268,0 +170738631953,268,0 +170738632001,269,0 +170738632051,269,0 +170738632099,268,0 +170738632148,268,0 +170738632196,269,0 +170738632246,268,0 +170738632294,268,0 +170738632342,268,0 +170738632390,268,0 +170738632438,268,0 +170738632487,269,0 +170738632535,268,0 +170738632585,268,0 +170738632634,268,0 +170738632682,268,0 +170738632730,269,0 +170738632778,269,0 +170738632826,268,0 +170738632874,268,0 +170738632922,268,0 +170738632970,269,0 +170738633018,269,0 +170738633065,268,0 +170738633113,268,0 +170738633161,269,0 +170738633209,268,0 +170738633257,268,0 +170738633306,268,0 +170738633354,268,0 +170738633402,268,0 +170738633450,269,0 +170738633498,268,0 +170738633546,268,0 +170738633594,269,0 +170738633642,268,0 +170738633689,268,0 +170738633739,269,0 +170738633787,268,0 +170738633835,269,0 +170738633883,268,0 +170738633931,268,0 +170738633978,268,0 +170738634026,268,0 +170738634074,268,0 +170738634122,268,0 +170738634170,268,0 +170738634218,269,0 +170738634266,268,0 +170738634314,268,0 +170738634361,268,0 +170738634409,269,0 +170738634457,268,0 +170738634505,269,0 +170738634553,268,0 +170738634601,268,0 +170738634650,268,0 +170738634698,269,0 +170738634746,268,0 +170738634794,269,0 +170738634842,269,0 +170738634890,268,0 +170738634939,268,0 +170738634987,268,0 +170738635037,268,0 +170738635085,268,0 +170738635133,268,0 +170738635181,268,0 +170738635229,268,0 +170738635278,268,0 +170738635326,268,0 +170738635374,268,0 +170738635422,268,0 +170738635470,268,0 +170738635518,268,0 +170738635566,268,0 +170738635614,268,0 +170738635662,269,0 +170738635712,268,0 +170738635759,268,0 +170738635807,268,0 +170738635857,268,0 +170738635905,268,0 +170738635953,268,0 +170738636002,268,0 +170738636050,268,0 +170738636098,269,0 +170738636146,268,0 +170738636194,269,0 +170738636242,269,0 +170738636290,268,0 +170738636338,269,0 +170738636386,269,0 +170738636434,268,0 +170738636482,268,0 +170738636532,268,0 +170738636580,269,0 +170738636628,268,0 +170738636676,268,0 +170738636725,268,0 +170738636773,268,0 +170738636821,268,0 +170738636869,269,0 +170738636917,269,0 +170738636965,268,0 +170738637015,268,0 +170738637063,269,0 +170738637111,268,0 +170738637158,269,0 +170738637206,268,0 +170738637256,268,0 +170738637304,268,0 +170738637352,268,0 +170738637400,268,0 +170738637448,269,0 +170738637497,269,0 +170738637545,269,0 +170738637593,268,0 +170738637641,269,0 +170738637689,268,0 +170738637737,269,0 +170738637785,269,0 +170738637833,268,0 +170738637881,269,0 +170738637931,268,0 +170738637979,269,0 +170738638027,269,0 +170738638075,269,0 +170738638123,269,0 +170738638171,268,0 +170738638219,268,0 +170738638266,268,0 +170738638316,269,0 +170738638364,268,0 +170738638412,268,0 +170738638461,268,0 +170738638511,268,0 +170738638561,269,0 +170738638610,269,0 +170738638658,269,0 +170738638706,269,0 +170738638754,268,0 +170738638802,268,0 +170738638850,268,0 +170738638899,268,0 +170738638947,268,0 +170738638997,268,0 +170738639046,269,0 +170738639094,268,0 +170738639142,269,0 +170738639190,268,0 +170738639238,268,0 +170738639288,269,0 +170738639336,268,0 +170738639384,269,0 +170738639432,269,0 +170738639480,269,0 +170738639528,269,0 +170738639576,269,0 +170738639624,269,0 +170738639672,268,0 +170738639720,268,0 +170738639768,269,0 +170738639816,268,0 +170738639863,268,0 +170738639913,269,0 +170738639962,269,0 +170738640010,268,0 diff --git a/laser_value/0208-20.csv b/laser_value/0208-20.csv new file mode 100644 index 0000000..1276c95 --- /dev/null +++ b/laser_value/0208-20.csv @@ -0,0 +1,7442 @@ +timestamp,laser_value,event +170738640060,268,0 +170738640108,268,0 +170738640156,269,0 +170738640204,269,0 +170738640252,268,0 +170738640300,268,0 +170738640348,268,0 +170738640396,268,0 +170738640444,268,0 +170738640492,268,0 +170738640540,268,0 +170738640589,268,0 +170738640637,268,0 +170738640685,268,0 +170738640733,269,0 +170738640781,268,0 +170738640829,268,0 +170738640877,268,0 +170738640927,268,0 +170738640975,268,0 +170738641023,268,0 +170738641071,268,0 +170738641119,268,0 +170738641168,268,0 +170738641216,268,0 +170738641264,268,0 +170738641312,268,0 +170738641362,269,0 +170738641409,269,0 +170738641459,268,0 +170738641507,269,0 +170738641556,269,0 +170738641606,268,0 +170738641654,269,0 +170738641703,269,0 +170738641751,268,0 +170738641799,268,0 +170738641847,268,0 +170738641897,269,0 +170738641945,269,0 +170738641993,268,0 +170738642041,268,0 +170738642089,268,0 +170738642138,268,0 +170738642186,268,0 +170738642236,269,0 +170738642284,268,0 +170738642333,269,0 +170738642381,268,0 +170738642431,268,0 +170738642479,268,0 +170738642527,268,0 +170738642575,268,0 +170738642624,268,0 +170738642674,268,0 +170738642722,268,0 +170738642770,268,0 +170738642818,269,0 +170738642866,269,0 +170738642914,269,0 +170738642962,268,0 +170738643009,268,0 +170738643059,268,0 +170738643108,268,0 +170738643156,268,0 +170738643206,268,0 +170738643254,268,0 +170738643303,268,0 +170738643351,268,0 +170738643401,268,0 +170738643449,268,0 +170738643498,269,0 +170738643546,269,0 +170738643594,269,0 +170738643642,268,0 +170738643690,268,0 +170738643740,269,0 +170738643788,268,0 +170738643835,268,0 +170738643883,269,0 +170738643933,268,0 +170738643982,269,0 +170738644030,268,0 +170738644078,268,0 +170738644126,268,0 +170738644174,269,0 +170738644222,269,0 +170738644270,268,0 +170738644318,268,0 +170738644368,269,0 +170738644415,269,0 +170738644463,269,0 +170738644511,269,0 +170738644561,268,0 +170738644609,269,0 +170738644657,269,0 +170738644706,268,0 +170738644754,268,0 +170738644802,268,0 +170738644850,268,0 +170738644898,268,0 +170738644946,268,0 +170738644996,269,0 +170738645044,269,0 +170738645093,268,0 +170738645143,268,0 +170738645191,268,0 +170738645239,269,0 +170738645286,269,0 +170738645336,269,0 +170738645384,269,0 +170738645434,269,0 +170738645483,269,0 +170738645533,268,0 +170738645581,269,0 +170738645629,269,0 +170738645677,268,0 +170738645726,268,0 +170738645774,268,0 +170738645824,268,0 +170738645871,269,0 +170738645919,269,0 +170738645967,268,0 +170738646017,269,0 +170738646065,268,0 +170738646113,268,0 +170738646162,268,0 +170738646212,268,0 +170738646260,268,0 +170738646308,268,0 +170738646356,268,0 +170738646404,269,0 +170738646453,268,0 +170738646501,268,0 +170738646549,268,0 +170738646597,269,0 +170738646647,269,0 +170738646694,269,0 +170738646742,268,0 +170738646790,268,0 +170738646838,268,0 +170738646888,268,0 +170738646936,269,0 +170738646984,268,0 +170738647032,269,0 +170738647080,269,0 +170738647128,268,0 +170738647175,268,0 +170738647225,269,0 +170738647273,268,0 +170738647321,268,0 +170738647369,268,0 +170738647417,268,0 +170738647465,269,0 +170738647514,268,0 +170738647562,268,0 +170738647610,268,0 +170738647658,268,0 +170738647706,269,0 +170738647754,268,0 +170738647802,268,0 +170738647850,268,0 +170738647898,269,0 +170738647946,268,0 +170738647994,268,0 +170738648042,269,0 +170738648090,269,0 +170738648138,269,0 +170738648186,268,0 +170738648233,268,0 +170738648281,269,0 +170738648329,268,0 +170738648379,268,0 +170738648428,268,0 +170738648478,268,0 +170738648526,268,0 +170738648574,269,0 +170738648622,269,0 +170738648670,269,0 +170738648718,269,0 +170738648767,269,0 +170738648815,268,0 +170738648865,269,0 +170738648913,268,0 +170738648962,268,0 +170738649010,268,0 +170738649058,268,0 +170738649108,269,0 +170738649156,268,0 +170738649203,269,0 +170738649251,269,0 +170738649299,269,0 +170738649349,268,0 +170738649397,269,0 +170738649445,269,0 +170738649493,269,0 +170738649541,268,0 +170738649589,268,0 +170738649638,268,0 +170738649688,268,0 +170738649735,268,0 +170738649783,269,0 +170738649831,268,0 +170738649879,268,0 +170738649927,268,0 +170738649975,269,0 +170738650023,268,0 +170738650071,268,0 +170738650119,268,0 +170738650167,269,0 +170738650217,268,0 +170738650265,268,0 +170738650314,269,0 +170738650362,268,0 +170738650410,268,0 +170738650458,269,0 +170738650508,269,0 +170738650555,269,0 +170738650603,268,0 +170738650653,269,0 +170738650701,269,0 +170738650750,268,0 +170738650800,268,0 +170738650848,269,0 +170738650897,269,0 +170738650947,268,0 +170738650996,269,0 +170738651044,268,0 +170738651092,268,0 +170738651142,269,0 +170738651190,269,0 +170738651238,269,0 +170738651287,268,0 +170738651337,268,0 +170738651385,268,0 +170738651433,269,0 +170738651481,268,0 +170738651529,269,0 +170738651577,268,0 +170738651625,269,0 +170738651672,268,0 +170738651720,268,0 +170738651770,268,0 +170738651819,269,0 +170738651869,268,0 +170738651917,268,0 +170738651965,268,0 +170738652013,268,0 +170738652061,268,0 +170738652110,268,0 +170738652160,269,0 +170738652209,268,0 +170738652257,268,0 +170738652305,268,0 +170738652353,269,0 +170738652401,268,0 +170738652451,268,0 +170738652500,268,0 +170738652550,268,0 +170738652599,268,0 +170738652647,268,0 +170738652695,268,0 +170738652745,269,0 +170738652793,268,0 +170738652841,269,0 +170738652890,268,0 +170738652938,269,0 +170738652986,269,0 +170738653036,269,0 +170738653085,269,0 +170738653135,269,0 +170738653183,268,0 +170738653231,268,0 +170738653280,269,0 +170738653328,268,0 +170738653377,269,0 +170738653427,269,0 +170738653475,268,0 +170738653523,269,0 +170738653572,268,0 +170738653620,268,0 +170738653668,268,0 +170738653716,269,0 +170738653766,269,0 +170738653814,268,0 +170738653863,268,0 +170738653913,269,0 +170738653961,268,0 +170738654009,269,0 +170738654057,269,0 +170738654105,269,0 +170738654154,268,0 +170738654202,269,0 +170738654250,269,0 +170738654298,269,0 +170738654346,268,0 +170738654393,268,0 +170738654441,268,0 +170738654489,269,0 +170738654537,268,0 +170738654586,268,0 +170738654634,268,0 +170738654682,269,0 +170738654732,269,0 +170738654781,268,0 +170738654829,269,0 +170738654877,268,0 +170738654925,268,0 +170738654973,268,0 +170738655023,269,0 +170738655071,269,0 +170738655120,269,0 +170738655170,269,0 +170738655219,269,0 +170738655267,268,0 +170738655315,269,0 +170738655363,268,0 +170738655411,268,0 +170738655461,268,0 +170738655509,269,0 +170738655558,269,0 +170738655606,268,0 +170738655654,269,0 +170738655703,269,0 +170738655751,268,0 +170738655799,268,0 +170738655847,268,0 +170738655895,268,0 +170738655945,269,0 +170738655993,268,0 +170738656041,269,0 +170738656089,268,0 +170738656138,269,0 +170738656186,268,0 +170738656234,268,0 +170738656284,268,0 +170738656332,269,0 +170738656379,268,0 +170738656427,268,0 +170738656477,269,0 +170738656525,269,0 +170738656574,269,0 +170738656622,269,0 +170738656672,268,0 +170738656721,269,0 +170738656771,269,0 +170738656819,269,0 +170738656867,269,0 +170738656915,269,0 +170738656963,268,0 +170738657012,269,0 +170738657060,268,0 +170738657108,268,0 +170738657156,268,0 +170738657206,268,0 +170738657254,269,0 +170738657303,268,0 +170738657353,268,0 +170738657401,269,0 +170738657449,268,0 +170738657498,268,0 +170738657546,269,0 +170738657594,269,0 +170738657643,269,0 +170738657691,269,0 +170738657739,268,0 +170738657787,268,0 +170738657835,269,0 +170738657883,268,0 +170738657931,269,0 +170738657980,268,0 +170738658028,268,0 +170738658078,269,0 +170738658126,268,0 +170738658175,269,0 +170738658223,268,0 +170738658271,268,0 +170738658319,269,0 +170738658369,269,0 +170738658418,268,0 +170738658466,268,0 +170738658516,268,0 +170738658564,268,0 +170738658611,268,0 +170738658659,268,0 +170738658709,268,0 +170738658757,268,0 +170738658805,268,0 +170738658854,269,0 +170738658902,268,0 +170738658952,269,0 +170738659000,269,0 +170738659049,268,0 +170738659097,268,0 +170738659145,269,0 +170738659193,269,0 +170738659241,269,0 +170738659291,268,0 +170738659339,268,0 +170738659388,269,0 +170738659436,268,0 +170738659484,268,0 +170738659532,268,0 +170738659580,268,0 +170738659628,268,0 +170738659675,268,0 +170738659723,269,0 +170738659773,268,0 +170738659821,269,0 +170738659870,268,0 +170738659918,268,0 +170738659968,268,0 +170738660016,268,0 +170738660064,268,0 +170738660112,269,0 +170738660159,268,0 +170738660209,268,0 +170738660257,269,0 +170738660306,269,0 +170738660354,268,0 +170738660404,268,0 +170738660452,268,0 +170738660501,269,0 +170738660549,269,0 +170738660597,269,0 +170738660645,268,0 +170738660693,268,0 +170738660741,268,0 +170738660789,268,0 +170738660837,269,0 +170738660885,269,0 +170738660935,268,0 +170738660984,269,0 +170738661032,269,0 +170738661082,269,0 +170738661130,268,0 +170738661178,269,0 +170738661226,269,0 +170738661274,269,0 +170738661323,268,0 +170738661371,269,0 +170738661419,269,0 +170738661467,268,0 +170738661517,268,0 +170738661564,268,0 +170738661612,268,0 +170738661660,269,0 +170738661710,269,0 +170738661758,269,0 +170738661806,269,0 +170738661854,269,0 +170738661902,268,0 +170738661951,268,0 +170738661999,269,0 +170738662047,268,0 +170738662096,269,0 +170738662144,268,0 +170738662192,268,0 +170738662240,268,0 +170738662288,269,0 +170738662338,269,0 +170738662386,268,0 +170738662434,268,0 +170738662482,269,0 +170738662531,268,0 +170738662579,269,0 +170738662627,269,0 +170738662675,268,0 +170738662723,268,0 +170738662773,268,0 +170738662821,268,0 +170738662868,268,0 +170738662916,269,0 +170738662964,268,0 +170738663012,268,0 +170738663060,269,0 +170738663110,269,0 +170738663158,268,0 +170738663207,268,0 +170738663255,269,0 +170738663303,268,0 +170738663351,268,0 +170738663399,269,0 +170738663447,268,0 +170738663497,268,0 +170738663545,268,0 +170738663593,268,0 +170738663642,269,0 +170738663692,268,0 +170738663740,268,0 +170738663787,268,0 +170738663835,269,0 +170738663883,268,0 +170738663931,269,0 +170738663979,268,0 +170738664027,269,0 +170738664075,269,0 +170738664124,268,0 +170738664172,268,0 +170738664220,268,0 +170738664268,268,0 +170738664316,268,0 +170738664364,268,0 +170738664411,268,0 +170738664459,269,0 +170738664507,269,0 +170738664555,268,0 +170738664603,269,0 +170738664651,268,0 +170738664699,268,0 +170738664747,268,0 +170738664795,269,0 +170738664842,269,0 +170738664890,268,0 +170738664938,269,0 +170738664986,268,0 +170738665034,269,0 +170738665083,268,0 +170738665131,268,0 +170738665179,269,0 +170738665227,268,0 +170738665275,268,0 +170738665323,268,0 +170738665371,268,0 +170738665419,268,0 +170738665468,268,0 +170738665516,269,0 +170738665564,269,0 +170738665612,268,0 +170738665661,269,0 +170738665709,268,0 +170738665757,268,0 +170738665805,269,0 +170738665855,268,0 +170738665904,268,0 +170738665954,268,0 +170738666002,268,0 +170738666051,268,0 +170738666099,269,0 +170738666149,268,0 +170738666198,269,0 +170738666246,269,0 +170738666294,269,0 +170738666342,268,0 +170738666390,268,0 +170738666438,268,0 +170738666488,268,0 +170738666537,268,0 +170738666587,268,0 +170738666634,268,0 +170738666682,269,0 +170738666730,268,0 +170738666778,269,0 +170738666828,268,0 +170738666877,269,0 +170738666925,269,0 +170738666973,268,0 +170738667021,268,0 +170738667071,268,0 +170738667119,268,0 +170738667167,269,0 +170738667216,268,0 +170738667264,269,0 +170738667312,268,0 +170738667362,268,0 +170738667410,269,0 +170738667459,268,0 +170738667509,268,0 +170738667557,268,0 +170738667606,268,0 +170738667654,268,0 +170738667702,269,0 +170738667750,268,0 +170738667798,269,0 +170738667846,269,0 +170738667895,269,0 +170738667943,268,0 +170738667993,268,0 +170738668042,268,0 +170738668090,269,0 +170738668138,269,0 +170738668186,268,0 +170738668236,268,0 +170738668284,268,0 +170738668332,268,0 +170738668380,268,0 +170738668428,268,0 +170738668477,268,0 +170738668527,268,0 +170738668575,269,0 +170738668624,268,0 +170738668672,269,0 +170738668722,268,0 +170738668771,268,0 +170738668819,268,0 +170738668867,268,0 +170738668917,268,0 +170738668965,268,0 +170738669014,268,0 +170738669062,268,0 +170738669112,268,0 +170738669161,269,0 +170738669209,269,0 +170738669259,268,0 +170738669308,269,0 +170738669356,269,0 +170738669404,269,0 +170738669452,268,0 +170738669500,269,0 +170738669548,268,0 +170738669597,268,0 +170738669645,268,0 +170738669693,268,0 +170738669741,268,0 +170738669789,268,0 +170738669839,268,0 +170738669888,268,0 +170738669936,268,0 +170738669986,269,0 +170738670035,269,0 +170738670085,269,0 +170738670133,269,0 +170738670182,268,0 +170738670230,268,0 +170738670280,268,0 +170738670329,269,0 +170738670377,268,0 +170738670425,268,0 +170738670473,268,0 +170738670521,268,0 +170738670569,269,0 +170738670617,269,0 +170738670665,269,0 +170738670713,268,0 +170738670762,268,0 +170738670812,268,0 +170738670860,269,0 +170738670908,269,0 +170738670956,268,0 +170738671004,268,0 +170738671052,268,0 +170738671101,268,0 +170738671149,269,0 +170738671199,268,0 +170738671246,268,0 +170738671294,268,0 +170738671342,268,0 +170738671390,269,0 +170738671440,268,0 +170738671488,268,0 +170738671536,268,0 +170738671584,268,0 +170738671632,268,0 +170738671680,269,0 +170738671728,268,0 +170738671777,268,0 +170738671827,269,0 +170738671876,269,0 +170738671926,269,0 +170738671975,268,0 +170738672023,269,0 +170738672071,269,0 +170738672119,268,0 +170738672167,268,0 +170738672216,268,0 +170738672266,268,0 +170738672314,268,0 +170738672364,269,0 +170738672412,268,0 +170738672460,268,0 +170738672508,268,0 +170738672557,269,0 +170738672605,268,0 +170738672653,268,0 +170738672702,268,0 +170738672750,268,0 +170738672800,268,0 +170738672848,268,0 +170738672897,268,0 +170738672945,268,0 +170738672995,268,0 +170738673043,268,0 +170738673091,268,0 +170738673139,269,0 +170738673188,269,0 +170738673236,268,0 +170738673284,268,0 +170738673334,268,0 +170738673383,268,0 +170738673431,268,0 +170738673479,269,0 +170738673529,268,0 +170738673576,268,0 +170738673624,268,0 +170738673672,268,0 +170738673722,268,0 +170738673770,268,0 +170738673818,268,0 +170738673867,268,0 +170738673915,268,0 +170738673963,268,0 +170738674013,268,0 +170738674061,268,0 +170738674108,268,0 +170738674158,269,0 +170738674208,268,0 +170738674256,268,0 +170738674304,268,0 +170738674353,268,0 +170738674401,268,0 +170738674449,269,0 +170738674497,269,0 +170738674545,268,0 +170738674594,268,0 +170738674642,269,0 +170738674692,268,0 +170738674740,268,0 +170738674788,268,0 +170738674837,269,0 +170738674887,268,0 +170738674935,268,0 +170738674983,268,0 +170738675031,269,0 +170738675080,268,0 +170738675130,269,0 +170738675178,268,0 +170738675227,268,0 +170738675275,268,0 +170738675325,268,0 +170738675373,268,0 +170738675421,268,0 +170738675469,268,0 +170738675517,268,0 +170738675565,268,0 +170738675613,268,0 +170738675661,268,0 +170738675710,269,0 +170738675758,268,0 +170738675808,269,0 +170738675856,268,0 +170738675904,268,0 +170738675951,269,0 +170738675999,269,0 +170738676047,268,0 +170738676095,268,0 +170738676143,269,0 +170738676191,268,0 +170738676241,268,0 +170738676289,268,0 +170738676337,269,0 +170738676386,268,0 +170738676434,269,0 +170738676484,268,0 +170738676532,268,0 +170738676580,268,0 +170738676627,269,0 +170738676677,268,0 +170738676725,269,0 +170738676773,268,0 +170738676821,268,0 +170738676869,269,0 +170738676918,268,0 +170738676968,269,0 +170738677016,269,0 +170738677064,268,0 +170738677113,269,0 +170738677163,268,0 +170738677211,269,0 +170738677259,268,0 +170738677307,269,0 +170738677355,268,0 +170738677403,268,0 +170738677451,269,0 +170738677500,269,0 +170738677548,269,0 +170738677598,268,0 +170738677646,268,0 +170738677695,268,0 +170738677743,268,0 +170738677791,268,0 +170738677839,269,0 +170738677889,269,0 +170738677936,268,0 +170738677986,268,0 +170738678036,268,0 +170738678084,268,0 +170738678133,268,0 +170738678182,268,0 +170738678230,268,0 +170738678278,268,0 +170738678326,268,0 +170738678376,268,0 +170738678425,269,0 +170738678475,268,0 +170738678523,268,0 +170738678572,268,0 +170738678622,268,0 +170738678671,268,0 +170738678721,268,0 +170738678769,269,0 +170738678817,268,0 +170738678866,268,0 +170738678916,268,0 +170738678965,269,0 +170738679013,268,0 +170738679061,268,0 +170738679109,268,0 +170738679159,268,0 +170738679208,268,0 +170738679258,268,0 +170738679306,268,0 +170738679354,268,0 +170738679402,269,0 +170738679451,268,0 +170738679499,268,0 +170738679547,268,0 +170738679595,268,0 +170738679643,269,0 +170738679693,268,0 +170738679741,268,0 +170738679789,268,0 +170738679837,268,0 +170738679885,269,0 +170738679933,268,0 +170738679981,268,0 +170738680029,268,0 +170738680076,268,0 +170738680126,268,0 +170738680174,269,0 +170738680223,268,0 +170738680271,268,0 +170738680319,268,0 +170738680367,268,0 +170738680415,268,0 +170738680465,268,0 +170738680513,268,0 +170738680561,268,0 +170738680610,268,0 +170738680660,268,0 +170738680708,268,0 +170738680756,268,0 +170738680804,268,0 +170738680852,269,0 +170738680900,268,0 +170738680947,268,0 +170738680997,268,0 +170738681046,268,0 +170738681094,268,0 +170738681142,268,0 +170738681192,269,0 +170738681240,268,0 +170738681288,268,0 +170738681336,268,0 +170738681384,268,0 +170738681432,268,0 +170738681480,269,0 +170738681529,269,0 +170738681577,268,0 +170738681627,268,0 +170738681676,268,0 +170738681726,268,0 +170738681774,268,0 +170738681823,268,0 +170738681873,268,0 +170738681921,269,0 +170738681969,268,0 +170738682017,268,0 +170738682064,268,0 +170738682112,268,0 +170738682160,268,0 +170738682208,268,0 +170738682256,268,0 +170738682304,269,0 +170738682352,268,0 +170738682400,268,0 +170738682448,268,0 +170738682497,268,0 +170738682545,268,0 +170738682593,268,0 +170738682641,268,0 +170738682689,268,0 +170738682737,268,0 +170738682786,268,0 +170738682834,268,0 +170738682882,268,0 +170738682930,268,0 +170738682978,269,0 +170738683027,268,0 +170738683077,268,0 +170738683125,268,0 +170738683173,268,0 +170738683221,268,0 +170738683271,268,0 +170738683318,268,0 +170738683367,268,0 +170738683416,268,0 +170738683466,268,0 +170738683514,268,0 +170738683562,268,0 +170738683610,268,0 +170738683658,269,0 +170738683706,268,0 +170738683755,269,0 +170738683805,268,0 +170738683852,268,0 +170738683900,268,0 +170738683948,268,0 +170738683998,268,0 +170738684047,268,0 +170738684097,269,0 +170738684145,268,0 +170738684194,269,0 +170738684242,268,0 +170738684292,268,0 +170738684340,268,0 +170738684389,268,0 +170738684439,268,0 +170738684487,268,0 +170738684535,268,0 +170738684583,269,0 +170738684631,268,0 +170738684680,268,0 +170738684728,268,0 +170738684776,268,0 +170738684824,268,0 +170738684874,268,0 +170738684923,268,0 +170738684971,268,0 +170738685021,268,0 +170738685069,268,0 +170738685117,268,0 +170738685165,268,0 +170738685213,268,0 +170738685261,268,0 +170738685310,268,0 +170738685360,268,0 +170738685408,268,0 +170738685456,268,0 +170738685504,268,0 +170738685552,268,0 +170738685599,268,0 +170738685649,268,0 +170738685698,268,0 +170738685746,268,0 +170738685794,268,0 +170738685842,268,0 +170738685892,268,0 +170738685941,268,0 +170738685989,268,0 +170738686037,268,0 +170738686087,268,0 +170738686136,268,0 +170738686184,268,0 +170738686234,268,0 +170738686283,268,0 +170738686331,268,0 +170738686379,268,0 +170738686427,268,0 +170738686476,268,0 +170738686526,268,0 +170738686574,268,0 +170738686622,268,0 +170738686670,268,0 +170738686719,269,0 +170738686767,268,0 +170738686815,268,0 +170738686863,268,0 +170738686911,268,0 +170738686959,268,0 +170738687007,269,0 +170738687055,268,0 +170738687105,268,0 +170738687153,268,0 +170738687202,268,0 +170738687250,268,0 +170738687298,268,0 +170738687346,268,0 +170738687394,268,0 +170738687442,268,0 +170738687490,268,0 +170738687538,268,0 +170738687586,268,0 +170738687634,268,0 +170738687682,268,0 +170738687731,268,0 +170738687781,268,0 +170738687830,268,0 +170738687878,268,0 +170738687926,268,0 +170738687974,268,0 +170738688022,269,0 +170738688072,268,0 +170738688120,268,0 +170738688168,268,0 +170738688216,268,0 +170738688265,268,0 +170738688315,268,0 +170738688362,268,0 +170738688410,269,0 +170738688458,269,0 +170738688508,268,0 +170738688557,268,0 +170738688605,268,0 +170738688653,268,0 +170738688701,268,0 +170738688749,268,0 +170738688797,268,0 +170738688845,268,0 +170738688895,268,0 +170738688943,268,0 +170738688990,268,0 +170738689040,268,0 +170738689088,268,0 +170738689136,268,0 +170738689184,268,0 +170738689232,268,0 +170738689280,269,0 +170738689328,268,0 +170738689376,268,0 +170738689424,268,0 +170738689473,268,0 +170738689521,268,0 +170738689569,268,0 +170738689619,268,0 +170738689667,268,0 +170738689715,268,0 +170738689763,268,0 +170738689811,268,0 +170738689859,269,0 +170738689907,268,0 +170738689956,268,0 +170738690004,268,0 +170738690052,268,0 +170738690100,268,0 +170738690150,268,0 +170738690197,268,0 +170738690245,268,0 +170738690295,268,0 +170738690343,268,0 +170738690391,268,0 +170738690440,268,0 +170738690490,269,0 +170738690538,268,0 +170738690586,268,0 +170738690635,269,0 +170738690683,268,0 +170738690733,268,0 +170738690781,268,0 +170738690829,268,0 +170738690877,268,0 +170738690925,269,0 +170738690973,268,0 +170738691021,268,0 +170738691069,268,0 +170738691117,268,0 +170738691166,268,0 +170738691214,268,0 +170738691262,268,0 +170738691310,268,0 +170738691358,268,0 +170738691406,268,0 +170738691454,268,0 +170738691503,269,0 +170738691551,268,0 +170738691601,268,0 +170738691650,268,0 +170738691698,268,0 +170738691746,268,0 +170738691794,268,0 +170738691842,269,0 +170738691890,268,0 +170738691938,268,0 +170738691986,268,0 +170738692034,269,0 +170738692082,268,0 +170738692130,268,0 +170738692178,269,0 +170738692226,268,0 +170738692274,268,0 +170738692321,268,0 +170738692369,268,0 +170738692419,268,0 +170738692469,268,0 +170738692516,269,0 +170738692566,268,0 +170738692615,268,0 +170738692663,268,0 +170738692711,268,0 +170738692759,268,0 +170738692807,268,0 +170738692855,268,0 +170738692905,268,0 +170738692954,268,0 +170738693002,268,0 +170738693050,268,0 +170738693098,268,0 +170738693146,269,0 +170738693196,268,0 +170738693245,268,0 +170738693293,268,0 +170738693341,268,0 +170738693391,268,0 +170738693439,268,0 +170738693487,268,0 +170738693535,268,0 +170738693584,268,0 +170738693632,268,0 +170738693682,268,0 +170738693730,268,0 +170738693778,268,0 +170738693826,269,0 +170738693874,268,0 +170738693922,268,0 +170738693971,268,0 +170738694021,268,0 +170738694070,268,0 +170738694118,268,0 +170738694166,268,0 +170738694216,268,0 +170738694264,268,0 +170738694311,269,0 +170738694361,268,0 +170738694409,268,0 +170738694457,268,0 +170738694505,268,0 +170738694553,268,0 +170738694603,268,0 +170738694650,269,0 +170738694700,269,0 +170738694748,269,0 +170738694796,268,0 +170738694844,268,0 +170738694892,269,0 +170738694940,268,0 +170738694988,268,0 +170738695036,268,0 +170738695084,268,0 +170738695133,268,0 +170738695183,268,0 +170738695231,268,0 +170738695279,269,0 +170738695327,268,0 +170738695375,268,0 +170738695424,268,0 +170738695472,268,0 +170738695520,268,0 +170738695570,268,0 +170738695618,269,0 +170738695667,268,0 +170738695715,268,0 +170738695765,268,0 +170738695813,268,0 +170738695862,268,0 +170738695910,268,0 +170738695958,268,0 +170738696008,268,0 +170738696056,268,0 +170738696105,268,0 +170738696155,268,0 +170738696203,268,0 +170738696251,268,0 +170738696299,268,0 +170738696347,268,0 +170738696395,268,0 +170738696444,268,0 +170738696492,269,0 +170738696540,269,0 +170738696588,268,0 +170738696636,268,0 +170738696685,268,0 +170738696735,268,0 +170738696783,268,0 +170738696831,268,0 +170738696879,268,0 +170738696927,268,0 +170738696976,268,0 +170738697026,268,0 +170738697074,268,0 +170738697123,268,0 +170738697173,268,0 +170738697221,268,0 +170738697270,268,0 +170738697318,268,0 +170738697366,268,0 +170738697416,268,0 +170738697465,268,0 +170738697513,268,0 +170738697561,268,0 +170738697609,268,0 +170738697657,268,0 +170738697705,268,0 +170738697755,268,0 +170738697804,269,0 +170738697852,269,0 +170738697902,268,0 +170738697950,268,0 +170738697999,268,0 +170738698047,269,0 +170738698095,269,0 +170738698143,268,0 +170738698193,269,0 +170738698241,268,0 +170738698289,268,0 +170738698337,268,0 +170738698385,268,0 +170738698433,268,0 +170738698480,268,0 +170738698528,268,0 +170738698576,268,0 +170738698626,268,0 +170738698674,268,0 +170738698722,268,0 +170738698771,268,0 +170738698819,268,0 +170738698867,268,0 +170738698915,269,0 +170738698963,268,0 +170738699011,268,0 +170738699059,268,0 +170738699107,268,0 +170738699155,268,0 +170738699205,268,0 +170738699253,268,0 +170738699301,268,0 +170738699350,268,0 +170738699398,268,0 +170738699448,268,0 +170738699496,268,0 +170738699545,268,0 +170738699593,268,0 +170738699641,268,0 +170738699691,268,0 +170738699739,268,0 +170738699786,269,0 +170738699836,268,0 +170738699884,268,0 +170738699932,268,0 +170738699980,268,0 +170738700027,268,0 +170738700075,268,0 +170738700123,268,0 +170738700171,268,0 +170738700221,268,0 +170738700268,268,0 +170738700316,268,0 +170738700364,268,0 +170738700412,268,0 +170738700460,268,0 +170738700508,268,0 +170738700556,268,0 +170738700604,268,0 +170738700651,268,0 +170738700699,268,0 +170738700749,268,0 +170738700798,268,0 +170738700846,269,0 +170738700894,268,0 +170738700942,268,0 +170738700992,268,0 +170738701041,268,0 +170738701091,268,0 +170738701139,268,0 +170738701187,269,0 +170738701235,268,0 +170738701283,269,0 +170738701332,269,0 +170738701380,268,0 +170738701428,268,0 +170738701478,268,0 +170738701526,268,0 +170738701574,268,0 +170738701623,268,0 +170738701673,268,0 +170738701721,268,0 +170738701769,268,0 +170738701817,268,0 +170738701865,268,0 +170738701912,268,0 +170738701962,268,0 +170738702010,268,0 +170738702058,269,0 +170738702107,269,0 +170738702155,268,0 +170738702203,268,0 +170738702251,269,0 +170738702299,268,0 +170738702347,268,0 +170738702395,268,0 +170738702445,268,0 +170738702493,268,0 +170738702542,268,0 +170738702590,268,0 +170738702640,269,0 +170738702689,268,0 +170738702737,268,0 +170738702785,268,0 +170738702833,268,0 +170738702881,269,0 +170738702929,269,0 +170738702977,268,0 +170738703025,268,0 +170738703073,268,0 +170738703122,268,0 +170738703170,268,0 +170738703218,268,0 +170738703266,269,0 +170738703314,269,0 +170738703362,269,0 +170738703412,269,0 +170738703460,269,0 +170738703507,268,0 +170738703557,269,0 +170738703607,268,0 +170738703655,269,0 +170738703704,268,0 +170738703754,268,0 +170738703803,268,0 +170738703851,268,0 +170738703899,268,0 +170738703947,268,0 +170738703997,268,0 +170738704046,268,0 +170738704096,269,0 +170738704145,268,0 +170738704193,268,0 +170738704241,268,0 +170738704289,268,0 +170738704337,268,0 +170738704386,269,0 +170738704436,268,0 +170738704485,268,0 +170738704533,268,0 +170738704581,268,0 +170738704629,268,0 +170738704679,268,0 +170738704727,268,0 +170738704776,268,0 +170738704826,268,0 +170738704874,268,0 +170738704922,268,0 +170738704971,268,0 +170738705021,268,0 +170738705069,268,0 +170738705117,269,0 +170738705166,268,0 +170738705214,269,0 +170738705264,268,0 +170738705312,268,0 +170738705360,268,0 +170738705408,268,0 +170738705457,268,0 +170738705505,269,0 +170738705553,268,0 +170738705601,268,0 +170738705649,268,0 +170738705697,268,0 +170738705747,268,0 +170738705796,268,0 +170738705844,268,0 +170738705892,268,0 +170738705940,268,0 +170738705989,268,0 +170738706039,268,0 +170738706087,268,0 +170738706135,268,0 +170738706183,268,0 +170738706232,268,0 +170738706280,268,0 +170738706328,268,0 +170738706376,268,0 +170738706424,268,0 +170738706472,268,0 +170738706520,268,0 +170738706570,269,0 +170738706618,268,0 +170738706666,268,0 +170738706714,269,0 +170738706762,268,0 +170738706810,268,0 +170738706857,268,0 +170738706905,268,0 +170738706953,268,0 +170738707001,268,0 +170738707049,268,0 +170738707099,268,0 +170738707148,268,0 +170738707196,268,0 +170738707244,268,0 +170738707292,268,0 +170738707342,268,0 +170738707390,268,0 +170738707439,268,0 +170738707487,268,0 +170738707537,269,0 +170738707585,268,0 +170738707634,268,0 +170738707684,269,0 +170738707733,268,0 +170738707783,268,0 +170738707832,268,0 +170738707880,268,0 +170738707928,269,0 +170738707976,268,0 +170738708025,268,0 +170738708075,268,0 +170738708123,268,0 +170738708171,268,0 +170738708219,268,0 +170738708267,268,0 +170738708315,268,0 +170738708363,269,0 +170738708411,268,0 +170738708460,268,0 +170738708508,268,0 +170738708558,268,0 +170738708606,268,0 +170738708654,268,0 +170738708702,268,0 +170738708751,268,0 +170738708799,268,0 +170738708847,268,0 +170738708895,269,0 +170738708943,268,0 +170738708993,268,0 +170738709041,268,0 +170738709088,268,0 +170738709138,268,0 +170738709186,268,0 +170738709234,268,0 +170738709283,268,0 +170738709331,269,0 +170738709379,268,0 +170738709429,268,0 +170738709477,268,0 +170738709525,268,0 +170738709573,268,0 +170738709622,268,0 +170738709670,268,0 +170738709720,268,0 +170738709768,268,0 +170738709816,268,0 +170738709864,268,0 +170738709912,268,0 +170738709960,268,0 +170738710008,268,0 +170738710056,268,0 +170738710103,269,0 +170738710151,268,0 +170738710199,268,0 +170738710247,268,0 +170738710297,268,0 +170738710345,268,0 +170738710394,268,0 +170738710444,268,0 +170738710492,268,0 +170738710540,268,0 +170738710588,269,0 +170738710636,268,0 +170738710684,269,0 +170738710733,268,0 +170738710783,268,0 +170738710831,268,0 +170738710879,268,0 +170738710927,268,0 +170738710975,268,0 +170738711023,268,0 +170738711072,268,0 +170738711122,268,0 +170738711170,268,0 +170738711219,268,0 +170738711267,268,0 +170738711317,268,0 +170738711365,268,0 +170738711412,269,0 +170738711460,268,0 +170738711510,268,0 +170738711558,268,0 +170738711607,268,0 +170738711655,268,0 +170738711703,268,0 +170738711751,268,0 +170738711801,268,0 +170738711850,268,0 +170738711900,268,0 +170738711948,268,0 +170738711996,269,0 +170738712044,269,0 +170738712092,268,0 +170738712141,268,0 +170738712189,268,0 +170738712237,268,0 +170738712285,268,0 +170738712333,268,0 +170738712381,268,0 +170738712429,269,0 +170738712479,269,0 +170738712527,269,0 +170738712575,268,0 +170738712622,268,0 +170738712670,268,0 +170738712720,268,0 +170738712768,268,0 +170738712816,268,0 +170738712864,267,0 +170738712912,268,0 +170738712961,268,0 +170738713011,268,0 +170738713059,268,0 +170738713107,268,0 +170738713155,269,0 +170738713203,268,0 +170738713251,269,0 +170738713299,268,0 +170738713348,268,0 +170738713396,268,0 +170738713446,269,0 +170738713494,268,0 +170738713542,268,0 +170738713590,268,0 +170738713638,268,0 +170738713685,268,0 +170738713735,268,0 +170738713785,268,0 +170738713832,268,0 +170738713880,268,0 +170738713928,268,0 +170738713976,268,0 +170738714024,268,0 +170738714072,268,0 +170738714121,268,0 +170738714169,268,0 +170738714217,268,0 +170738714265,268,0 +170738714313,268,0 +170738714361,268,0 +170738714409,268,0 +170738714457,268,0 +170738714504,268,0 +170738714552,268,0 +170738714600,268,0 +170738714648,268,0 +170738714696,269,0 +170738714744,268,0 +170738714792,268,0 +170738714840,268,0 +170738714888,268,0 +170738714936,268,0 +170738714983,268,0 +170738715031,268,0 +170738715079,268,0 +170738715129,268,0 +170738715177,268,0 +170738715226,268,0 +170738715274,268,0 +170738715322,268,0 +170738715372,268,0 +170738715421,268,0 +170738715471,268,0 +170738715519,268,0 +170738715567,268,0 +170738715616,268,0 +170738715666,268,0 +170738715714,268,0 +170738715762,268,0 +170738715809,268,0 +170738715857,268,0 +170738715905,268,0 +170738715953,268,0 +170738716001,268,0 +170738716049,268,0 +170738716097,268,0 +170738716145,268,0 +170738716192,268,0 +170738716240,268,0 +170738716290,268,0 +170738716338,268,0 +170738716387,268,0 +170738716435,268,0 +170738716483,269,0 +170738716531,268,0 +170738716579,268,0 +170738716627,269,0 +170738716675,268,0 +170738716723,269,0 +170738716771,268,0 +170738716819,268,0 +170738716868,268,0 +170738716916,268,0 +170738716966,268,0 +170738717014,268,0 +170738717061,268,0 +170738717111,268,0 +170738717159,268,0 +170738717207,268,0 +170738717255,268,0 +170738717305,269,0 +170738717352,269,0 +170738717400,269,0 +170738717448,268,0 +170738717496,268,0 +170738717544,268,0 +170738717594,269,0 +170738717642,268,0 +170738717690,268,0 +170738717738,268,0 +170738717786,268,0 +170738717834,268,0 +170738717881,268,0 +170738717931,268,0 +170738717979,268,0 +170738718027,268,0 +170738718075,268,0 +170738718123,268,0 +170738718171,268,0 +170738718219,268,0 +170738718268,268,0 +170738718316,268,0 +170738718366,268,0 +170738718414,268,0 +170738718463,269,0 +170738718511,268,0 +170738718561,268,0 +170738718610,268,0 +170738718658,268,0 +170738718708,268,0 +170738718756,268,0 +170738718805,268,0 +170738718853,268,0 +170738718901,268,0 +170738718949,268,0 +170738718999,268,0 +170738719047,268,0 +170738719095,268,0 +170738719143,267,0 +170738719191,268,0 +170738719240,268,0 +170738719288,269,0 +170738719336,268,0 +170738719384,268,0 +170738719432,268,0 +170738719480,268,0 +170738719528,268,0 +170738719576,268,0 +170738719624,268,0 +170738719673,268,0 +170738719721,268,0 +170738719771,268,0 +170738719819,268,0 +170738719867,268,0 +170738719915,268,0 +170738719963,268,0 +170738720011,268,0 +170738720059,268,0 +170738720108,268,0 +170738720156,268,0 +170738720206,268,0 +170738720254,268,0 +170738720301,268,0 +170738720349,268,0 +170738720397,268,0 +170738720445,268,0 +170738720495,268,0 +170738720543,268,0 +170738720591,268,0 +170738720639,268,0 +170738720687,268,0 +170738720735,268,0 +170738720783,268,0 +170738720830,268,0 +170738720880,268,0 +170738720929,268,0 +170738720979,268,0 +170738721027,268,0 +170738721076,268,0 +170738721124,268,0 +170738721174,268,0 +170738721222,268,0 +170738721270,268,0 +170738721318,268,0 +170738721366,268,0 +170738721414,268,0 +170738721463,268,0 +170738721511,268,0 +170738721561,268,0 +170738721610,268,0 +170738721658,268,0 +170738721706,268,0 +170738721754,268,0 +170738721804,268,0 +170738721853,268,0 +170738721901,268,0 +170738721951,268,0 +170738722000,268,0 +170738722048,268,0 +170738722098,268,0 +170738722147,268,0 +170738722195,268,0 +170738722243,268,0 +170738722293,268,0 +170738722341,268,0 +170738722389,268,0 +170738722437,268,0 +170738722485,268,0 +170738722533,268,0 +170738722580,268,0 +170738722630,268,0 +170738722678,268,0 +170738722726,268,0 +170738722774,269,0 +170738722822,268,0 +170738722871,268,0 +170738722919,268,0 +170738722967,268,0 +170738723017,268,0 +170738723065,268,0 +170738723113,268,0 +170738723161,268,0 +170738723209,268,0 +170738723257,268,0 +170738723306,268,0 +170738723354,268,0 +170738723402,268,0 +170738723452,268,0 +170738723501,268,0 +170738723549,268,0 +170738723599,268,0 +170738723647,268,0 +170738723695,268,0 +170738723744,268,0 +170738723792,268,0 +170738723842,268,0 +170738723890,268,0 +170738723938,268,0 +170738723986,268,0 +170738724035,268,0 +170738724083,268,0 +170738724131,268,0 +170738724180,268,0 +170738724228,268,0 +170738724276,268,0 +170738724324,268,0 +170738724372,268,0 +170738724420,268,0 +170738724468,268,0 +170738724516,268,0 +170738724564,268,0 +170738724612,268,0 +170738724660,267,0 +170738724710,268,0 +170738724758,268,0 +170738724807,268,0 +170738724855,268,0 +170738724903,268,0 +170738724951,268,0 +170738724999,268,0 +170738725047,268,0 +170738725095,268,0 +170738725143,268,0 +170738725191,268,0 +170738725239,268,0 +170738725287,268,0 +170738725335,268,0 +170738725383,268,0 +170738725431,268,0 +170738725479,268,0 +170738725527,268,0 +170738725575,268,0 +170738725623,268,0 +170738725671,268,0 +170738725719,269,0 +170738725767,268,0 +170738725816,268,0 +170738725864,268,0 +170738725913,268,0 +170738725961,268,0 +170738726009,268,0 +170738726057,268,0 +170738726105,268,0 +170738726153,268,0 +170738726201,268,0 +170738726251,268,0 +170738726299,268,0 +170738726347,268,0 +170738726396,268,0 +170738726444,268,0 +170738726492,268,0 +170738726540,268,0 +170738726588,268,0 +170738726637,268,0 +170738726685,268,0 +170738726733,268,0 +170738726781,268,0 +170738726829,268,0 +170738726877,268,0 +170738726927,268,0 +170738726975,268,0 +170738727023,268,0 +170738727071,268,0 +170738727119,268,0 +170738727167,268,0 +170738727216,268,0 +170738727264,268,0 +170738727314,268,0 +170738727362,268,0 +170738727410,268,0 +170738727458,268,0 +170738727506,268,0 +170738727554,268,0 +170738727602,268,0 +170738727650,268,0 +170738727699,268,0 +170738727747,268,0 +170738727795,268,0 +170738727843,268,0 +170738727891,268,0 +170738727940,268,0 +170738727990,268,0 +170738728038,268,0 +170738728086,268,0 +170738728135,268,0 +170738728185,268,0 +170738728233,268,0 +170738728282,268,0 +170738728330,268,0 +170738728378,268,0 +170738728426,268,0 +170738728474,269,0 +170738728522,268,0 +170738728570,268,0 +170738728618,268,0 +170738728666,268,0 +170738728714,268,0 +170738728761,268,0 +170738728809,268,0 +170738728857,268,0 +170738728905,268,0 +170738728953,268,0 +170738729001,268,0 +170738729049,268,0 +170738729097,268,0 +170738729145,268,0 +170738729194,268,0 +170738729244,268,0 +170738729292,268,0 +170738729340,268,0 +170738729389,268,0 +170738729437,268,0 +170738729485,268,0 +170738729533,268,0 +170738729581,268,0 +170738729630,268,0 +170738729678,268,0 +170738729726,268,0 +170738729774,268,0 +170738729822,268,0 +170738729870,268,0 +170738729918,268,0 +170738729965,268,0 +170738730013,268,0 +170738730063,268,0 +170738730111,268,0 +170738730158,268,0 +170738730208,268,0 +170738730256,268,0 +170738730305,268,0 +170738730353,268,0 +170738730403,268,0 +170738730451,268,0 +170738730499,268,0 +170738730547,268,0 +170738730595,268,0 +170738730644,268,0 +170738730694,268,0 +170738730742,268,0 +170738730791,268,0 +170738730839,268,0 +170738730887,268,0 +170738730937,268,0 +170738730985,268,0 +170738731034,268,0 +170738731082,268,0 +170738731130,268,0 +170738731178,268,0 +170738731226,268,0 +170738731274,268,0 +170738731322,268,0 +170738731372,268,0 +170738731420,268,0 +170738731468,268,0 +170738731516,268,0 +170738731565,268,0 +170738731615,268,0 +170738731664,268,0 +170738731714,268,0 +170738731762,268,0 +170738731811,268,0 +170738731861,267,0 +170738731909,268,0 +170738731958,268,0 +170738732006,268,0 +170738732054,268,0 +170738732102,268,0 +170738732150,268,0 +170738732200,268,0 +170738732248,268,0 +170738732296,268,0 +170738732345,267,0 +170738732393,268,0 +170738732443,268,0 +170738732491,268,0 +170738732540,268,0 +170738732588,268,0 +170738732638,268,0 +170738732686,268,0 +170738732734,268,0 +170738732782,268,0 +170738732830,268,0 +170738732879,268,0 +170738732927,268,0 +170738732975,268,0 +170738733023,268,0 +170738733073,267,0 +170738733120,268,0 +170738733168,268,0 +170738733216,268,0 +170738733264,268,0 +170738733312,267,0 +170738733360,268,0 +170738733410,268,0 +170738733458,268,0 +170738733506,268,0 +170738733554,268,0 +170738733602,268,0 +170738733650,268,0 +170738733699,268,0 +170738733747,268,0 +170738733797,268,0 +170738733844,267,0 +170738733892,268,0 +170738733940,267,0 +170738733990,268,0 +170738734038,268,0 +170738734086,268,0 +170738734133,267,0 +170738734181,268,0 +170738734229,268,0 +170738734277,268,0 +170738734325,268,0 +170738734374,268,0 +170738734422,268,0 +170738734470,268,0 +170738734518,267,0 +170738734566,268,0 +170738734614,268,0 +170738734662,268,0 +170738734709,267,0 +170738734757,268,0 +170738734805,268,0 +170738734853,268,0 +170738734901,267,0 +170738734949,267,0 +170738734997,268,0 +170738735045,268,0 +170738735093,267,0 +170738735142,268,0 +170738735190,268,0 +170738735238,267,0 +170738735287,267,0 +170738735335,268,0 +170738735385,268,0 +170738735433,268,0 +170738735481,268,0 +170738735529,267,0 +170738735577,268,0 +170738735625,268,0 +170738735673,268,0 +170738735721,268,0 +170738735769,268,0 +170738735816,268,0 +170738735866,268,0 +170738735914,268,0 +170738735964,268,0 +170738736011,268,0 +170738736061,268,0 +170738736111,268,0 +170738736159,268,0 +170738736207,268,0 +170738736255,267,0 +170738736303,268,0 +170738736351,268,0 +170738736399,268,0 +170738736446,268,0 +170738736494,267,0 +170738736544,267,0 +170738736594,268,0 +170738736641,268,0 +170738736691,268,0 +170738736739,268,0 +170738736787,268,0 +170738736835,268,0 +170738736882,268,0 +170738736930,268,0 +170738736978,268,0 +170738737026,268,0 +170738737074,268,0 +170738737122,268,0 +170738737170,268,0 +170738737218,268,0 +170738737265,267,0 +170738737313,268,0 +170738737363,268,0 +170738737411,268,0 +170738737458,268,0 +170738737506,268,0 +170738737554,268,0 +170738737602,268,0 +170738737652,268,0 +170738737699,268,0 +170738737747,268,0 +170738737795,268,0 +170738737843,268,0 +170738737891,268,0 +170738737939,268,0 +170738737987,268,0 +170738738035,268,0 +170738738083,268,0 +170738738132,268,0 +170738738181,268,0 +170738738229,268,0 +170738738279,268,0 +170738738327,268,0 +170738738376,267,0 +170738738424,268,0 +170738738474,268,0 +170738738522,268,0 +170738738571,268,0 +170738738619,268,0 +170738738669,268,0 +170738738718,268,0 +170738738766,267,0 +170738738814,268,0 +170738738862,267,0 +170738738910,268,0 +170738738958,268,0 +170738739006,268,0 +170738739056,267,0 +170738739105,268,0 +170738739153,267,0 +170738739203,268,0 +170738739251,267,0 +170738739299,268,0 +170738739347,267,0 +170738739395,268,0 +170738739443,268,0 +170738739491,268,0 +170738739539,268,0 +170738739588,268,0 +170738739636,268,0 +170738739684,268,0 +170738739732,268,0 +170738739780,268,0 +170738739828,268,0 +170738739878,268,0 +170738739927,267,0 +170738739975,268,0 +170738740025,267,0 +170738740073,268,0 +170738740122,268,0 +170738740170,268,0 +170738740218,267,0 +170738740267,267,0 +170738740315,268,0 +170738740363,268,0 +170738740411,267,0 +170738740461,268,0 +170738740509,268,0 +170738740557,268,0 +170738740605,267,0 +170738740654,268,0 +170738740704,268,0 +170738740753,268,0 +170738740801,267,0 +170738740851,268,0 +170738740899,268,0 +170738740946,268,0 +170738740994,268,0 +170738741044,268,0 +170738741092,268,0 +170738741140,267,0 +170738741189,268,0 +170738741237,268,0 +170738741285,268,0 +170738741333,267,0 +170738741383,268,0 +170738741431,268,0 +170738741479,267,0 +170738741528,268,0 +170738741576,268,0 +170738741624,268,0 +170738741672,268,0 +170738741720,268,0 +170738741769,268,0 +170738741817,268,0 +170738741865,267,0 +170738741913,268,0 +170738741961,268,0 +170738742009,267,0 +170738742056,268,0 +170738742104,267,0 +170738742152,268,0 +170738742200,268,0 +170738742248,267,0 +170738742296,268,0 +170738742344,268,0 +170738742392,268,0 +170738742439,268,0 +170738742489,267,0 +170738742537,268,0 +170738742585,268,0 +170738742632,267,0 +170738742680,268,0 +170738742728,268,0 +170738742776,267,0 +170738742824,267,0 +170738742872,268,0 +170738742922,268,0 +170738742971,268,0 +170738743019,268,0 +170738743068,268,0 +170738743116,268,0 +170738743164,268,0 +170738743212,268,0 +170738743260,268,0 +170738743308,267,0 +170738743356,268,0 +170738743405,267,0 +170738743453,268,0 +170738743501,268,0 +170738743551,268,0 +170738743600,268,0 +170738743650,268,0 +170738743698,268,0 +170738743745,268,0 +170738743793,268,0 +170738743841,268,0 +170738743889,268,0 +170738743937,268,0 +170738743985,268,0 +170738744033,268,0 +170738744081,267,0 +170738744129,268,0 +170738744178,267,0 +170738744226,268,0 +170738744275,268,0 +170738744323,268,0 +170738744371,268,0 +170738744419,268,0 +170738744467,268,0 +170738744515,268,0 +170738744563,268,0 +170738744612,268,0 +170738744660,268,0 +170738744710,268,0 +170738744759,268,0 +170738744809,268,0 +170738744857,268,0 +170738744905,268,0 +170738744954,268,0 +170738745002,268,0 +170738745050,268,0 +170738745100,268,0 +170738745149,268,0 +170738745197,268,0 +170738745245,268,0 +170738745293,268,0 +170738745343,268,0 +170738745390,268,0 +170738745438,268,0 +170738745486,268,0 +170738745534,268,0 +170738745583,268,0 +170738745631,268,0 +170738745679,268,0 +170738745729,268,0 +170738745778,268,0 +170738745828,268,0 +170738745876,268,0 +170738745925,268,0 +170738745973,268,0 +170738746021,268,0 +170738746069,268,0 +170738746117,268,0 +170738746165,268,0 +170738746215,267,0 +170738746264,268,0 +170738746314,268,0 +170738746362,268,0 +170738746411,268,0 +170738746459,268,0 +170738746507,268,0 +170738746557,268,0 +170738746605,267,0 +170738746652,268,0 +170738746700,268,0 +170738746748,268,0 +170738746798,268,0 +170738746847,268,0 +170738746897,268,0 +170738746947,268,0 +170738746994,268,0 +170738747042,267,0 +170738747090,267,0 +170738747140,267,0 +170738747188,268,0 +170738747236,268,0 +170738747284,268,0 +170738747332,267,0 +170738747380,268,0 +170738747428,268,0 +170738747476,268,0 +170738747524,268,0 +170738747572,268,0 +170738747621,267,0 +170738747669,268,0 +170738747717,268,0 +170738747766,268,0 +170738747816,268,0 +170738747864,268,0 +170738747912,268,0 +170738747960,267,0 +170738748008,267,0 +170738748057,268,0 +170738748107,268,0 +170738748155,267,0 +170738748204,268,0 +170738748252,268,0 +170738748300,268,0 +170738748350,268,0 +170738748398,268,0 +170738748445,268,0 +170738748493,268,0 +170738748543,268,0 +170738748591,268,0 +170738748639,268,0 +170738748687,268,0 +170738748735,268,0 +170738748783,268,0 +170738748832,267,0 +170738748880,268,0 +170738748928,268,0 +170738748976,267,0 +170738749024,268,0 +170738749072,268,0 +170738749121,268,0 +170738749169,268,0 +170738749217,268,0 +170738749265,268,0 +170738749313,268,0 +170738749361,268,0 +170738749411,267,0 +170738749459,268,0 +170738749507,268,0 +170738749555,268,0 +170738749604,267,0 +170738749652,268,0 +170738749700,268,0 +170738749748,268,0 +170738749796,268,0 +170738749846,268,0 +170738749895,268,0 +170738749943,268,0 +170738749993,268,0 +170738750040,268,0 +170738750088,268,0 +170738750136,267,0 +170738750186,268,0 +170738750234,268,0 +170738750284,268,0 +170738750332,268,0 +170738750379,268,0 +170738750427,268,0 +170738750477,267,0 +170738750525,268,0 +170738750573,268,0 +170738750621,268,0 +170738750669,268,0 +170738750717,268,0 +170738750765,268,0 +170738750814,268,0 +170738750864,268,0 +170738750912,268,0 +170738750960,268,0 +170738751008,268,0 +170738751057,268,0 +170738751105,267,0 +170738751153,268,0 +170738751203,267,0 +170738751252,268,0 +170738751300,268,0 +170738751350,268,0 +170738751399,268,0 +170738751447,268,0 +170738751495,268,0 +170738751545,268,0 +170738751593,267,0 +170738751640,268,0 +170738751688,268,0 +170738751736,268,0 +170738751784,268,0 +170738751832,268,0 +170738751880,268,0 +170738751928,268,0 +170738751978,268,0 +170738752027,268,0 +170738752075,268,0 +170738752123,268,0 +170738752171,268,0 +170738752221,267,0 +170738752268,268,0 +170738752318,267,0 +170738752366,268,0 +170738752414,268,0 +170738752462,268,0 +170738752510,268,0 +170738752558,268,0 +170738752607,268,0 +170738752655,268,0 +170738752703,268,0 +170738752753,268,0 +170738752801,268,0 +170738752849,268,0 +170738752897,268,0 +170738752945,268,0 +170738752993,268,0 +170738753041,268,0 +170738753090,268,0 +170738753138,268,0 +170738753186,267,0 +170738753234,268,0 +170738753284,268,0 +170738753333,268,0 +170738753383,268,0 +170738753432,268,0 +170738753480,267,0 +170738753530,268,0 +170738753579,268,0 +170738753629,268,0 +170738753677,268,0 +170738753725,268,0 +170738753773,268,0 +170738753822,268,0 +170738753870,268,0 +170738753918,268,0 +170738753968,268,0 +170738754017,268,0 +170738754065,268,0 +170738754113,268,0 +170738754161,268,0 +170738754209,268,0 +170738754257,268,0 +170738754305,268,0 +170738754355,268,0 +170738754404,268,0 +170738754452,268,0 +170738754502,268,0 +170738754550,268,0 +170738754599,268,0 +170738754647,268,0 +170738754695,268,0 +170738754743,268,0 +170738754791,267,0 +170738754839,268,0 +170738754887,268,0 +170738754935,268,0 +170738754983,268,0 +170738755032,267,0 +170738755080,268,0 +170738755128,268,0 +170738755178,268,0 +170738755227,268,0 +170738755275,268,0 +170738755325,268,0 +170738755374,268,0 +170738755422,268,0 +170738755472,268,0 +170738755520,268,0 +170738755568,268,0 +170738755616,268,0 +170738755665,268,0 +170738755713,268,0 +170738755763,268,0 +170738755812,268,0 +170738755860,268,0 +170738755908,268,0 +170738755956,268,0 +170738756004,268,0 +170738756054,268,0 +170738756101,268,0 +170738756151,267,0 +170738756201,268,0 +170738756249,268,0 +170738756297,268,0 +170738756346,268,0 +170738756394,268,0 +170738756444,268,0 +170738756493,268,0 +170738756541,268,0 +170738756591,268,0 +170738756639,268,0 +170738756687,268,0 +170738756735,268,0 +170738756783,268,0 +170738756832,268,0 +170738756880,268,0 +170738756928,268,0 +170738756977,268,0 +170738757027,268,0 +170738757075,268,0 +170738757123,268,0 +170738757171,268,0 +170738757219,268,0 +170738757268,268,0 +170738757316,268,0 +170738757364,268,0 +170738757414,268,0 +170738757462,268,0 +170738757510,268,0 +170738757559,267,0 +170738757607,268,0 +170738757657,268,0 +170738757705,268,0 +170738757753,267,0 +170738757800,268,0 +170738757850,267,0 +170738757898,268,0 +170738757946,268,0 +170738757995,268,0 +170738758043,268,0 +170738758091,268,0 +170738758141,267,0 +170738758189,268,0 +170738758238,268,0 +170738758286,268,0 +170738758336,268,0 +170738758384,268,0 +170738758432,268,0 +170738758480,268,0 +170738758528,267,0 +170738758577,268,0 +170738758625,268,0 +170738758673,268,0 +170738758722,268,0 +170738758770,268,0 +170738758818,268,0 +170738758868,267,0 +170738758917,268,0 +170738758965,268,0 +170738759015,268,0 +170738759063,268,0 +170738759112,268,0 +170738759162,267,0 +170738759210,268,0 +170738759258,268,0 +170738759307,268,0 +170738759357,268,0 +170738759406,268,0 +170738759454,268,0 +170738759502,267,0 +170738759550,268,0 +170738759598,268,0 +170738759646,268,0 +170738759694,268,0 +170738759742,268,0 +170738759790,268,0 +170738759837,268,0 +170738759885,268,0 +170738759933,268,0 +170738759981,268,0 +170738760029,268,0 +170738760077,267,0 +170738760125,268,0 +170738760173,268,0 +170738760220,268,0 +170738760268,268,0 +170738760316,268,0 +170738760364,268,0 +170738760412,268,0 +170738760460,268,0 +170738760508,268,0 +170738760556,268,0 +170738760603,267,0 +170738760651,268,0 +170738760699,267,0 +170738760749,268,0 +170738760796,268,0 +170738760844,268,0 +170738760892,268,0 +170738760940,268,0 +170738760990,268,0 +170738761038,267,0 +170738761087,268,0 +170738761135,267,0 +170738761185,268,0 +170738761233,268,0 +170738761281,268,0 +170738761329,268,0 +170738761377,267,0 +170738761425,268,0 +170738761474,268,0 +170738761522,268,0 +170738761570,268,0 +170738761618,268,0 +170738761666,268,0 +170738761714,268,0 +170738761762,268,0 +170738761810,267,0 +170738761858,268,0 +170738761906,268,0 +170738761954,268,0 +170738762003,268,0 +170738762051,267,0 +170738762099,268,0 +170738762147,267,0 +170738762195,268,0 +170738762243,268,0 +170738762291,267,0 +170738762339,268,0 +170738762387,267,0 +170738762436,267,0 +170738762485,268,0 +170738762533,267,0 +170738762581,268,0 +170738762629,268,0 +170738762677,267,0 +170738762725,268,0 +170738762773,268,0 +170738762821,268,0 +170738762869,268,0 +170738762916,268,0 +170738762964,268,0 +170738763012,267,0 +170738763060,268,0 +170738763108,267,0 +170738763156,268,0 +170738763205,268,0 +170738763253,268,0 +170738763301,268,0 +170738763349,268,0 +170738763397,268,0 +170738763446,267,0 +170738763494,268,0 +170738763542,268,0 +170738763590,268,0 +170738763638,267,0 +170738763686,267,0 +170738763734,268,0 +170738763781,268,0 +170738763829,268,0 +170738763877,268,0 +170738763925,267,0 +170738763973,267,0 +170738764022,268,0 +170738764070,268,0 +170738764118,268,0 +170738764166,268,0 +170738764214,268,0 +170738764263,267,0 +170738764311,268,0 +170738764359,268,0 +170738764409,268,0 +170738764456,268,0 +170738764504,268,0 +170738764552,268,0 +170738764600,268,0 +170738764648,267,0 +170738764698,267,0 +170738764747,267,0 +170738764795,267,0 +170738764845,267,0 +170738764893,267,0 +170738764940,268,0 +170738764988,268,0 +170738765038,267,0 +170738765086,268,0 +170738765134,268,0 +170738765182,268,0 +170738765230,268,0 +170738765278,268,0 +170738765327,267,0 +170738765375,268,0 +170738765423,268,0 +170738765471,268,0 +170738765519,268,0 +170738765569,268,0 +170738765617,268,0 +170738765665,267,0 +170738765714,268,0 +170738765762,267,0 +170738765810,267,0 +170738765858,267,0 +170738765906,267,0 +170738765954,267,0 +170738766003,267,0 +170738766051,267,0 +170738766099,268,0 +170738766147,268,0 +170738766195,267,0 +170738766242,268,0 +170738766292,267,0 +170738766340,267,0 +170738766388,267,0 +170738766436,267,0 +170738766483,267,0 +170738766533,267,0 +170738766582,268,0 +170738766630,267,0 +170738766678,267,0 +170738766726,267,0 +170738766774,268,0 +170738766822,267,0 +170738766870,268,0 +170738766918,267,0 +170738766965,267,0 +170738767013,267,0 +170738767061,268,0 +170738767109,267,0 +170738767157,268,0 +170738767206,268,0 +170738767254,268,0 +170738767302,267,0 +170738767350,267,0 +170738767398,267,0 +170738767446,268,0 +170738767494,267,0 +170738767542,267,0 +170738767592,268,0 +170738767640,268,0 +170738767688,268,0 +170738767737,267,0 +170738767787,267,0 +170738767835,267,0 +170738767883,268,0 +170738767931,267,0 +170738767979,268,0 +170738768027,268,0 +170738768075,268,0 +170738768122,267,0 +170738768170,268,0 +170738768218,268,0 +170738768266,267,0 +170738768314,267,0 +170738768362,267,0 +170738768410,268,0 +170738768458,267,0 +170738768506,267,0 +170738768555,267,0 +170738768603,267,0 +170738768651,267,0 +170738768699,267,0 +170738768749,267,0 +170738768797,267,0 +170738768845,268,0 +170738768893,267,0 +170738768941,267,0 +170738768989,268,0 +170738769037,268,0 +170738769085,267,0 +170738769132,267,0 +170738769180,268,0 +170738769228,267,0 +170738769276,268,0 +170738769324,268,0 +170738769372,267,0 +170738769420,268,0 +170738769469,268,0 +170738769517,268,0 +170738769565,267,0 +170738769615,267,0 +170738769664,268,0 +170738769712,268,0 +170738769760,267,0 +170738769808,268,0 +170738769856,267,0 +170738769906,267,0 +170738769954,267,0 +170738770002,268,0 +170738770051,268,0 +170738770099,267,0 +170738770147,267,0 +170738770195,268,0 +170738770243,268,0 +170738770291,267,0 +170738770339,268,0 +170738770387,268,0 +170738770434,267,0 +170738770484,267,0 +170738770532,268,0 +170738770580,267,0 +170738770628,268,0 +170738770675,268,0 +170738770725,268,0 +170738770773,267,0 +170738770821,267,0 +170738770868,268,0 +170738770916,268,0 +170738770964,268,0 +170738771014,267,0 +170738771062,268,0 +170738771109,268,0 +170738771157,268,0 +170738771205,267,0 +170738771253,267,0 +170738771301,268,0 +170738771349,268,0 +170738771397,267,0 +170738771445,267,0 +170738771493,268,0 +170738771540,267,0 +170738771588,267,0 +170738771636,267,0 +170738771686,267,0 +170738771735,267,0 +170738771783,267,0 +170738771832,267,0 +170738771880,268,0 +170738771930,267,0 +170738771978,268,0 +170738772027,268,0 +170738772075,267,0 +170738772123,267,0 +170738772171,267,0 +170738772219,268,0 +170738772267,268,0 +170738772317,267,0 +170738772365,267,0 +170738772413,268,0 +170738772461,267,0 +170738772510,267,0 +170738772558,267,0 +170738772608,268,0 +170738772657,268,0 +170738772705,268,0 +170738772753,268,0 +170738772801,268,0 +170738772849,267,0 +170738772897,268,0 +170738772945,268,0 +170738772994,268,0 +170738773044,267,0 +170738773092,268,0 +170738773140,267,0 +170738773189,267,0 +170738773237,267,0 +170738773285,268,0 +170738773335,268,0 +170738773383,268,0 +170738773431,267,0 +170738773480,267,0 +170738773528,268,0 +170738773576,267,0 +170738773624,268,0 +170738773674,268,0 +170738773721,268,0 +170738773769,267,0 +170738773817,268,0 +170738773865,267,0 +170738773913,268,0 +170738773963,267,0 +170738774011,267,0 +170738774059,268,0 +170738774107,268,0 +170738774155,268,0 +170738774203,268,0 +170738774252,268,0 +170738774300,267,0 +170738774348,267,0 +170738774396,268,0 +170738774446,267,0 +170738774494,268,0 +170738774542,267,0 +170738774590,267,0 +170738774638,268,0 +170738774686,267,0 +170738774733,267,0 +170738774781,267,0 +170738774831,268,0 +170738774879,268,0 +170738774927,268,0 +170738774976,268,0 +170738775024,267,0 +170738775074,268,0 +170738775122,267,0 +170738775170,267,0 +170738775219,268,0 +170738775267,268,0 +170738775315,268,0 +170738775363,268,0 +170738775411,267,0 +170738775459,268,0 +170738775507,267,0 +170738775555,268,0 +170738775603,268,0 +170738775653,267,0 +170738775701,268,0 +170738775749,268,0 +170738775797,267,0 +170738775846,268,0 +170738775894,268,0 +170738775942,268,0 +170738775990,267,0 +170738776038,267,0 +170738776086,268,0 +170738776136,268,0 +170738776183,268,0 +170738776231,268,0 +170738776279,268,0 +170738776329,268,0 +170738776378,267,0 +170738776426,267,0 +170738776474,267,0 +170738776522,268,0 +170738776570,268,0 +170738776618,267,0 +170738776666,267,0 +170738776714,267,0 +170738776762,268,0 +170738776810,267,0 +170738776858,267,0 +170738776906,267,0 +170738776955,268,0 +170738777005,267,0 +170738777053,267,0 +170738777101,267,0 +170738777149,268,0 +170738777197,267,0 +170738777245,268,0 +170738777293,268,0 +170738777341,268,0 +170738777390,267,0 +170738777438,267,0 +170738777486,267,0 +170738777534,268,0 +170738777582,268,0 +170738777630,267,0 +170738777679,267,0 +170738777729,267,0 +170738777777,268,0 +170738777825,268,0 +170738777874,267,0 +170738777924,267,0 +170738777972,268,0 +170738778020,268,0 +170738778069,268,0 +170738778117,267,0 +170738778165,268,0 +170738778213,267,0 +170738778261,267,0 +170738778311,268,0 +170738778360,267,0 +170738778410,267,0 +170738778459,268,0 +170738778507,267,0 +170738778557,267,0 +170738778605,267,0 +170738778653,268,0 +170738778702,268,0 +170738778750,268,0 +170738778798,267,0 +170738778847,267,0 +170738778897,268,0 +170738778945,268,0 +170738778994,267,0 +170738779042,267,0 +170738779090,267,0 +170738779138,268,0 +170738779186,268,0 +170738779234,268,0 +170738779284,268,0 +170738779332,267,0 +170738779381,267,0 +170738779431,267,0 +170738779479,267,0 +170738779527,267,0 +170738779575,268,0 +170738779623,267,0 +170738779671,268,0 +170738779719,268,0 +170738779767,267,0 +170738779815,267,0 +170738779864,267,0 +170738779912,267,0 +170738779962,267,0 +170738780011,267,0 +170738780059,267,0 +170738780109,268,0 +170738780157,268,0 +170738780206,267,0 +170738780254,268,0 +170738780302,268,0 +170738780350,268,0 +170738780398,267,0 +170738780446,268,0 +170738780494,268,0 +170738780542,267,0 +170738780590,268,0 +170738780638,267,0 +170738780687,268,0 +170738780737,267,0 +170738780785,268,0 +170738780833,268,0 +170738780881,268,0 +170738780930,268,0 +170738780978,268,0 +170738781026,268,0 +170738781076,268,0 +170738781123,268,0 +170738781171,267,0 +170738781219,267,0 +170738781267,267,0 +170738781315,268,0 +170738781365,268,0 +170738781414,268,0 +170738781462,268,0 +170738781510,268,0 +170738781558,268,0 +170738781606,267,0 +170738781656,268,0 +170738781704,268,0 +170738781752,268,0 +170738781800,267,0 +170738781849,268,0 +170738781899,267,0 +170738781947,268,0 +170738781995,267,0 +170738782043,268,0 +170738782092,268,0 +170738782140,267,0 +170738782188,268,0 +170738782236,268,0 +170738782284,267,0 +170738782332,267,0 +170738782380,267,0 +170738782428,267,0 +170738782476,268,0 +170738782525,268,0 +170738782573,267,0 +170738782621,267,0 +170738782669,267,0 +170738782717,268,0 +170738782766,268,0 +170738782814,268,0 +170738782862,267,0 +170738782910,267,0 +170738782958,268,0 +170738783007,268,0 +170738783055,268,0 +170738783105,268,0 +170738783154,267,0 +170738783202,267,0 +170738783250,267,0 +170738783298,268,0 +170738783348,268,0 +170738783396,268,0 +170738783444,268,0 +170738783492,268,0 +170738783540,268,0 +170738783588,268,0 +170738783635,268,0 +170738783685,268,0 +170738783733,267,0 +170738783782,268,0 +170738783830,267,0 +170738783880,268,0 +170738783930,268,0 +170738783977,268,0 +170738784027,268,0 +170738784075,268,0 +170738784123,268,0 +170738784171,268,0 +170738784219,267,0 +170738784267,268,0 +170738784315,268,0 +170738784363,267,0 +170738784411,268,0 +170738784459,268,0 +170738784508,268,0 +170738784556,268,0 +170738784604,267,0 +170738784652,268,0 +170738784700,267,0 +170738784750,267,0 +170738784798,267,0 +170738784846,267,0 +170738784894,268,0 +170738784941,268,0 +170738784989,267,0 +170738785037,267,0 +170738785085,268,0 +170738785133,268,0 +170738785181,268,0 +170738785229,268,0 +170738785278,267,0 +170738785326,267,0 +170738785374,268,0 +170738785422,267,0 +170738785472,267,0 +170738785519,267,0 +170738785567,267,0 +170738785615,268,0 +170738785663,267,0 +170738785713,267,0 +170738785761,268,0 +170738785809,268,0 +170738785858,267,0 +170738785906,268,0 +170738785956,268,0 +170738786004,268,0 +170738786053,268,0 +170738786103,267,0 +170738786152,267,0 +170738786200,267,0 +170738786248,268,0 +170738786296,268,0 +170738786344,268,0 +170738786392,267,0 +170738786439,267,0 +170738786487,267,0 +170738786535,268,0 +170738786585,267,0 +170738786633,267,0 +170738786682,267,0 +170738786730,268,0 +170738786778,268,0 +170738786826,268,0 +170738786874,268,0 +170738786922,268,0 +170738786970,267,0 +170738787018,268,0 +170738787066,267,0 +170738787115,268,0 +170738787165,268,0 +170738787214,268,0 +170738787264,268,0 +170738787313,268,0 +170738787361,268,0 +170738787409,268,0 +170738787459,268,0 +170738787507,267,0 +170738787556,268,0 +170738787604,267,0 +170738787654,267,0 +170738787702,267,0 +170738787751,267,0 +170738787799,268,0 +170738787847,268,0 +170738787895,268,0 +170738787943,268,0 +170738787992,268,0 +170738788042,267,0 +170738788091,267,0 +170738788139,267,0 +170738788189,268,0 +170738788237,267,0 +170738788285,268,0 +170738788333,267,0 +170738788381,267,0 +170738788429,268,0 +170738788478,268,0 +170738788526,268,0 +170738788574,267,0 +170738788622,267,0 +170738788671,268,0 +170738788719,268,0 +170738788767,268,0 +170738788815,268,0 +170738788863,267,0 +170738788912,267,0 +170738788960,268,0 +170738789008,268,0 +170738789056,268,0 +170738789106,268,0 +170738789154,268,0 +170738789201,268,0 +170738789249,267,0 +170738789299,267,0 +170738789349,268,0 +170738789396,268,0 +170738789444,268,0 +170738789492,268,0 +170738789540,267,0 +170738789588,268,0 +170738789636,268,0 +170738789686,268,0 +170738789734,267,0 +170738789782,267,0 +170738789830,268,0 +170738789879,267,0 +170738789929,267,0 +170738789977,267,0 +170738790025,268,0 +170738790073,268,0 +170738790121,267,0 +170738790169,267,0 +170738790218,267,0 +170738790266,267,0 +170738790316,268,0 +170738790364,267,0 +170738790412,268,0 +170738790460,268,0 +170738790508,268,0 +170738790556,268,0 +170738790604,268,0 +170738790652,267,0 +170738790699,268,0 +170738790747,268,0 +170738790795,268,0 +170738790845,268,0 +170738790895,267,0 +170738790944,268,0 +170738790992,268,0 +170738791040,268,0 +170738791088,267,0 +170738791137,268,0 +170738791185,267,0 +170738791233,268,0 +170738791281,268,0 +170738791329,268,0 +170738791377,268,0 +170738791424,268,0 +170738791472,268,0 +170738791520,268,0 +170738791568,268,0 +170738791618,267,0 +170738791665,267,0 +170738791713,267,0 +170738791761,267,0 +170738791809,267,0 +170738791857,268,0 +170738791905,268,0 +170738791953,267,0 +170738792001,267,0 +170738792048,268,0 +170738792096,268,0 +170738792144,268,0 +170738792192,268,0 +170738792240,267,0 +170738792288,268,0 +170738792336,268,0 +170738792384,268,0 +170738792432,267,0 +170738792480,267,0 +170738792527,268,0 +170738792575,268,0 +170738792623,268,0 +170738792671,267,0 +170738792719,268,0 +170738792767,267,0 +170738792815,268,0 +170738792863,267,0 +170738792911,268,0 +170738792960,268,0 +170738793008,268,0 +170738793056,267,0 +170738793104,267,0 +170738793152,268,0 +170738793200,268,0 +170738793247,267,0 +170738793295,267,0 +170738793343,267,0 +170738793391,267,0 +170738793439,268,0 +170738793488,268,0 +170738793536,268,0 +170738793584,268,0 +170738793634,267,0 +170738793683,267,0 +170738793733,268,0 +170738793782,268,0 +170738793830,268,0 +170738793878,268,0 +170738793926,267,0 +170738793974,268,0 +170738794023,268,0 +170738794071,268,0 +170738794121,268,0 +170738794170,268,0 +170738794220,268,0 +170738794269,267,0 +170738794317,268,0 +170738794365,268,0 +170738794413,268,0 +170738794463,268,0 +170738794513,267,0 +170738794560,267,0 +170738794608,268,0 +170738794658,268,0 +170738794706,268,0 +170738794755,268,0 +170738794803,268,0 +170738794851,267,0 +170738794899,268,0 +170738794947,268,0 +170738794995,268,0 +170738795043,268,0 +170738795093,267,0 +170738795142,268,0 +170738795192,267,0 +170738795240,268,0 +170738795289,267,0 +170738795339,267,0 +170738795387,268,0 +170738795435,268,0 +170738795483,268,0 +170738795531,267,0 +170738795579,268,0 +170738795627,268,0 +170738795675,268,0 +170738795724,268,0 +170738795774,268,0 +170738795822,267,0 +170738795870,267,0 +170738795918,267,0 +170738795966,268,0 +170738796015,268,0 +170738796063,268,0 +170738796112,268,0 +170738796160,268,0 +170738796208,268,0 +170738796256,268,0 +170738796306,267,0 +170738796354,268,0 +170738796402,268,0 +170738796451,268,0 +170738796501,267,0 +170738796549,268,0 +170738796597,267,0 +170738796646,268,0 +170738796696,268,0 +170738796745,268,0 +170738796793,267,0 +170738796841,268,0 +170738796889,268,0 +170738796937,267,0 +170738796985,268,0 +170738797033,268,0 +170738797083,268,0 +170738797131,268,0 +170738797179,268,0 +170738797227,268,0 +170738797276,268,0 +170738797324,268,0 +170738797372,268,0 +170738797422,268,0 +170738797470,268,0 +170738797518,268,0 +170738797567,268,0 +170738797615,268,0 +170738797663,268,0 +170738797711,268,0 +170738797759,268,0 +170738797807,267,0 +170738797855,268,0 +170738797903,267,0 +170738797951,268,0 +170738798000,268,0 +170738798048,268,0 +170738798098,267,0 +170738798146,268,0 +170738798194,268,0 +170738798242,268,0 +170738798290,267,0 +170738798338,267,0 +170738798386,268,0 +170738798434,267,0 +170738798482,267,0 +170738798530,267,0 +170738798578,268,0 +170738798626,267,0 +170738798675,268,0 +170738798723,267,0 +170738798771,268,0 +170738798820,268,0 +170738798868,267,0 +170738798916,267,0 +170738798966,268,0 +170738799016,267,0 +170738799063,267,0 +170738799111,268,0 +170738799161,268,0 +170738799209,267,0 +170738799258,267,0 +170738799308,267,0 +170738799358,267,0 +170738799406,268,0 +170738799454,268,0 +170738799501,268,0 +170738799550,267,0 +170738799597,267,0 +170738799647,267,0 +170738799696,268,0 +170738799744,268,0 +170738799792,268,0 +170738799840,267,0 +170738799888,268,0 +170738799936,267,0 +170738799984,267,0 +170738800032,268,0 +170738800080,268,0 +170738800130,267,0 +170738800179,268,0 +170738800227,268,0 +170738800277,268,0 +170738800325,267,0 +170738800372,267,0 +170738800420,268,0 +170738800468,267,0 +170738800516,267,0 +170738800566,267,0 +170738800613,267,0 +170738800663,268,0 +170738800711,268,0 +170738800760,267,0 +170738800808,267,0 +170738800856,268,0 +170738800904,267,0 +170738800952,267,0 +170738801000,267,0 +170738801049,267,0 +170738801097,268,0 +170738801147,268,0 +170738801195,267,0 +170738801244,267,0 +170738801292,267,0 +170738801340,267,0 +170738801388,267,0 +170738801437,267,0 +170738801485,268,0 +170738801533,267,0 +170738801581,267,0 +170738801631,267,0 +170738801679,267,0 +170738801728,267,0 +170738801776,267,0 +170738801824,268,0 +170738801872,268,0 +170738801920,267,0 +170738801968,267,0 +170738802018,268,0 +170738802066,268,0 +170738802115,268,0 +170738802163,268,0 +170738802211,267,0 +170738802261,268,0 +170738802309,268,0 +170738802357,267,0 +170738802405,267,0 +170738802453,267,0 +170738802501,267,0 +170738802549,267,0 +170738802598,267,0 +170738802648,267,0 +170738802696,267,0 +170738802744,267,0 +170738802791,268,0 +170738802841,267,0 +170738802889,267,0 +170738802937,267,0 +170738802987,267,0 +170738803036,267,0 +170738803084,267,0 +170738803132,268,0 +170738803182,267,0 +170738803230,267,0 +170738803278,268,0 +170738803325,268,0 +170738803375,267,0 +170738803423,267,0 +170738803472,267,0 +170738803520,267,0 +170738803568,267,0 +170738803616,267,0 +170738803666,267,0 +170738803714,268,0 +170738803763,267,0 +170738803811,267,0 +170738803861,267,0 +170738803909,267,0 +170738803957,267,0 +170738804005,267,0 +170738804053,267,0 +170738804101,267,0 +170738804149,267,0 +170738804197,267,0 +170738804245,268,0 +170738804293,267,0 +170738804341,267,0 +170738804389,267,0 +170738804437,268,0 +170738804486,268,0 +170738804534,268,0 +170738804582,267,0 +170738804630,267,0 +170738804678,267,0 +170738804726,268,0 +170738804774,267,0 +170738804822,267,0 +170738804871,267,0 +170738804919,267,0 +170738804967,267,0 +170738805015,267,0 +170738805063,267,0 +170738805111,267,0 +170738805159,267,0 +170738805207,267,0 +170738805255,267,0 +170738805303,267,0 +170738805351,267,0 +170738805399,267,0 +170738805447,267,0 +170738805495,267,0 +170738805543,268,0 +170738805591,267,0 +170738805641,267,0 +170738805690,267,0 +170738805738,268,0 +170738805788,267,0 +170738805837,267,0 +170738805885,267,0 +170738805933,268,0 +170738805983,267,0 +170738806032,268,0 +170738806080,267,0 +170738806128,267,0 +170738806178,267,0 +170738806227,267,0 +170738806277,267,0 +170738806325,267,0 +170738806374,267,0 +170738806422,267,0 +170738806470,267,0 +170738806518,267,0 +170738806566,267,0 +170738806614,267,0 +170738806663,267,0 +170738806713,267,0 +170738806761,266,0 +170738806809,268,0 +170738806857,267,0 +170738806905,267,0 +170738806953,267,0 +170738807002,267,0 +170738807052,267,0 +170738807101,267,0 +170738807149,267,0 +170738807199,267,0 +170738807247,267,0 +170738807295,267,0 +170738807344,267,0 +170738807392,268,0 +170738807440,267,0 +170738807488,267,0 +170738807538,268,0 +170738807587,268,0 +170738807637,267,0 +170738807684,267,0 +170738807732,267,0 +170738807780,267,0 +170738807830,267,0 +170738807879,267,0 +170738807927,267,0 +170738807975,267,0 +170738808023,267,0 +170738808073,267,0 +170738808122,267,0 +170738808170,267,0 +170738808218,266,0 +170738808268,267,0 +170738808316,267,0 +170738808364,268,0 +170738808412,267,0 +170738808460,267,0 +170738808508,268,0 +170738808557,267,0 +170738808605,267,0 +170738808653,268,0 +170738808702,267,0 +170738808750,268,0 +170738808800,268,0 +170738808849,267,0 +170738808899,267,0 +170738808948,267,0 +170738808996,267,0 +170738809044,267,0 +170738809094,267,0 +170738809142,267,0 +170738809190,267,0 +170738809238,268,0 +170738809287,267,0 +170738809337,267,0 +170738809385,267,0 +170738809433,267,0 +170738809481,267,0 +170738809530,268,0 +170738809578,267,0 +170738809628,267,0 +170738809676,267,0 +170738809725,267,0 +170738809773,267,0 +170738809823,267,0 +170738809872,267,0 +170738809920,267,0 +170738809968,267,0 +170738810018,267,0 +170738810066,267,0 +170738810115,267,0 +170738810163,267,0 +170738810211,268,0 +170738810259,268,0 +170738810307,267,0 +170738810355,267,0 +170738810403,268,0 +170738810453,267,0 +170738810502,267,0 +170738810550,267,0 +170738810598,267,0 +170738810648,267,0 +170738810695,267,0 +170738810745,267,0 +170738810793,267,0 +170738810841,267,0 +170738810891,267,0 +170738810939,267,0 +170738810986,267,0 +170738811036,267,0 +170738811084,267,0 +170738811133,267,0 +170738811181,267,0 +170738811229,267,0 +170738811279,267,0 +170738811327,267,0 +170738811375,267,0 +170738811423,267,0 +170738811471,267,0 +170738811519,267,0 +170738811567,268,0 +170738811616,267,0 +170738811664,267,0 +170738811712,267,0 +170738811762,267,0 +170738811810,267,0 +170738811859,267,0 +170738811907,267,0 +170738811955,267,0 +170738812003,267,0 +170738812053,267,0 +170738812101,266,0 +170738812149,267,0 +170738812197,267,0 +170738812244,267,0 +170738812292,267,0 +170738812340,268,0 +170738812388,267,0 +170738812436,267,0 +170738812484,267,0 +170738812532,268,0 +170738812580,267,0 +170738812627,267,0 +170738812675,267,0 +170738812723,267,0 +170738812771,267,0 +170738812819,267,0 +170738812867,267,0 +170738812915,267,0 +170738812963,267,0 +170738813012,267,0 +170738813060,267,0 +170738813108,267,0 +170738813156,267,0 +170738813204,267,0 +170738813252,267,0 +170738813301,267,0 +170738813349,267,0 +170738813397,267,0 +170738813445,267,0 +170738813493,267,0 +170738813541,267,0 +170738813588,267,0 +170738813636,267,0 +170738813684,267,0 +170738813732,268,0 +170738813780,267,0 +170738813828,268,0 +170738813876,267,0 +170738813924,267,0 +170738813972,267,0 +170738814019,267,0 +170738814067,267,0 +170738814115,267,0 +170738814165,267,0 +170738814213,267,0 +170738814262,267,0 +170738814310,267,0 +170738814358,267,0 +170738814406,267,0 +170738814454,267,0 +170738814502,267,0 +170738814550,267,0 +170738814598,267,0 +170738814646,267,0 +170738814694,267,0 +170738814742,267,0 +170738814791,267,0 +170738814839,266,0 +170738814889,267,0 +170738814938,267,0 +170738814986,267,0 +170738815036,267,0 +170738815084,267,0 +170738815132,267,0 +170738815180,267,0 +170738815230,267,0 +170738815278,268,0 +170738815325,267,0 +170738815375,267,0 +170738815423,267,0 +170738815471,267,0 +170738815519,267,0 +170738815568,267,0 +170738815618,266,0 +170738815666,267,0 +170738815713,267,0 +170738815761,267,0 +170738815809,267,0 +170738815857,267,0 +170738815905,267,0 +170738815953,267,0 +170738816001,267,0 +170738816049,267,0 +170738816097,267,0 +170738816144,267,0 +170738816192,268,0 +170738816240,267,0 +170738816290,267,0 +170738816338,267,0 +170738816385,267,0 +170738816433,267,0 +170738816481,267,0 +170738816529,267,0 +170738816577,267,0 +170738816625,267,0 +170738816673,267,0 +170738816721,267,0 +170738816769,267,0 +170738816817,267,0 +170738816865,267,0 +170738816913,268,0 +170738816960,267,0 +170738817008,267,0 +170738817056,267,0 +170738817104,267,0 +170738817152,267,0 +170738817200,267,0 +170738817248,267,0 +170738817296,267,0 +170738817344,267,0 +170738817393,267,0 +170738817441,266,0 +170738817491,267,0 +170738817539,267,0 +170738817586,268,0 +170738817634,267,0 +170738817682,267,0 +170738817732,267,0 +170738817780,267,0 +170738817828,267,0 +170738817876,267,0 +170738817925,267,0 +170738817975,266,0 +170738818023,267,0 +170738818072,267,0 +170738818120,267,0 +170738818168,267,0 +170738818216,267,0 +170738818264,266,0 +170738818312,267,0 +170738818359,267,0 +170738818407,267,0 +170738818455,267,0 +170738818505,267,0 +170738818553,267,0 +170738818601,267,0 +170738818648,267,0 +170738818696,267,0 +170738818744,267,0 +170738818792,267,0 +170738818840,267,0 +170738818888,267,0 +170738818937,267,0 +170738818987,267,0 +170738819035,267,0 +170738819083,267,0 +170738819132,266,0 +170738819180,267,0 +170738819230,267,0 +170738819278,267,0 +170738819326,267,0 +170738819374,267,0 +170738819421,267,0 +170738819469,266,0 +170738819519,267,0 +170738819567,267,0 +170738819615,267,0 +170738819663,267,0 +170738819711,267,0 +170738819759,267,0 +170738819808,267,0 +170738819858,267,0 +170738819906,267,0 +170738819953,267,0 +170738820001,267,0 +170738820049,267,0 +170738820097,267,0 +170738820145,266,0 +170738820193,267,0 +170738820242,267,0 +170738820290,267,0 +170738820340,266,0 +170738820388,267,0 +170738820436,267,0 +170738820484,267,0 +170738820532,266,0 +170738820580,267,0 +170738820629,267,0 +170738820677,267,0 +170738820725,267,0 +170738820775,267,0 +170738820823,267,0 +170738820871,267,0 +170738820919,268,0 +170738820968,267,0 +170738821016,267,0 +170738821064,267,0 +170738821112,267,0 +170738821162,267,0 +170738821210,267,0 +170738821258,267,0 +170738821307,267,0 +170738821355,267,0 +170738821405,267,0 +170738821454,267,0 +170738821502,266,0 +170738821550,267,0 +170738821598,267,0 +170738821646,267,0 +170738821694,267,0 +170738821742,267,0 +170738821791,267,0 +170738821839,267,0 +170738821887,267,0 +170738821935,267,0 +170738821983,267,0 +170738822031,267,0 +170738822079,267,0 +170738822127,267,0 +170738822175,267,0 +170738822224,267,0 +170738822274,267,0 +170738822322,267,0 +170738822370,267,0 +170738822418,267,0 +170738822466,267,0 +170738822514,267,0 +170738822563,267,0 +170738822611,266,0 +170738822659,267,0 +170738822707,267,0 +170738822755,267,0 +170738822803,266,0 +170738822851,267,0 +170738822898,267,0 +170738822946,266,0 +170738822994,267,0 +170738823044,267,0 +170738823092,267,0 +170738823139,267,0 +170738823189,267,0 +170738823238,267,0 +170738823286,267,0 +170738823336,267,0 +170738823384,267,0 +170738823432,267,0 +170738823480,267,0 +170738823529,267,0 +170738823579,267,0 +170738823627,267,0 +170738823675,267,0 +170738823724,267,0 +170738823772,267,0 +170738823820,267,0 +170738823870,267,0 +170738823918,267,0 +170738823966,268,0 +170738824014,267,0 +170738824063,267,0 +170738824111,267,0 +170738824159,267,0 +170738824209,267,0 +170738824257,267,0 +170738824306,267,0 +170738824354,267,0 +170738824402,267,0 +170738824450,267,0 +170738824498,267,0 +170738824546,267,0 +170738824594,267,0 +170738824642,266,0 +170738824692,267,0 +170738824740,267,0 +170738824789,267,0 +170738824837,266,0 +170738824885,267,0 +170738824934,267,0 +170738824984,266,0 +170738825032,267,0 +170738825080,267,0 +170738825128,267,0 +170738825176,267,0 +170738825225,266,0 +170738825273,266,0 +170738825323,267,0 +170738825371,267,0 +170738825419,267,0 +170738825468,267,0 +170738825516,267,0 +170738825564,268,0 +170738825614,267,0 +170738825662,267,0 +170738825711,267,0 +170738825759,267,0 +170738825807,267,0 +170738825857,267,0 +170738825905,267,0 +170738825953,267,0 +170738826001,267,0 +170738826048,267,0 +170738826096,267,0 +170738826146,267,0 +170738826194,266,0 +170738826242,267,0 +170738826291,267,0 +170738826339,267,0 +170738826387,267,0 +170738826437,267,0 +170738826486,267,0 +170738826534,267,0 +170738826582,267,0 +170738826630,266,0 +170738826678,267,0 +170738826726,267,0 +170738826774,267,0 +170738826824,267,0 +170738826872,267,0 +170738826920,267,0 +170738826968,268,0 +170738827016,267,0 +170738827064,267,0 +170738827113,267,0 +170738827161,266,0 +170738827209,267,0 +170738827259,267,0 +170738827307,267,0 +170738827355,267,0 +170738827403,266,0 +170738827451,267,0 +170738827499,267,0 +170738827547,267,0 +170738827597,267,0 +170738827644,268,0 +170738827693,266,0 +170738827740,267,0 +170738827788,267,0 +170738827836,267,0 +170738827884,266,0 +170738827932,267,0 +170738827982,267,0 +170738828031,267,0 +170738828079,266,0 +170738828129,267,0 +170738828177,267,0 +170738828226,267,0 +170738828276,267,0 +170738828324,267,0 +170738828372,266,0 +170738828421,266,0 +170738828469,267,0 +170738828517,267,0 +170738828565,267,0 +170738828613,267,0 +170738828661,266,0 +170738828709,266,0 +170738828757,266,0 +170738828805,267,0 +170738828853,267,0 +170738828902,267,0 +170738828952,267,0 +170738829000,267,0 +170738829049,267,0 +170738829099,267,0 +170738829149,267,0 +170738829196,267,0 +170738829246,267,0 +170738829294,267,0 +170738829342,266,0 +170738829390,267,0 +170738829439,266,0 +170738829487,267,0 +170738829535,267,0 +170738829585,266,0 +170738829633,267,0 +170738829682,267,0 +170738829730,266,0 +170738829778,267,0 +170738829826,266,0 +170738829876,267,0 +170738829924,266,0 +170738829973,266,0 +170738830021,266,0 +170738830069,266,0 +170738830119,267,0 +170738830167,266,0 +170738830215,266,0 +170738830264,266,0 +170738830312,267,0 +170738830360,267,0 +170738830410,267,0 +170738830458,266,0 +170738830506,266,0 +170738830554,266,0 +170738830602,267,0 +170738830651,266,0 +170738830701,266,0 +170738830750,266,0 +170738830798,267,0 +170738830846,267,0 +170738830896,267,0 +170738830944,267,0 +170738830993,266,0 +170738831041,267,0 +170738831089,266,0 +170738831139,266,0 +170738831187,266,0 +170738831236,267,0 +170738831286,266,0 +170738831334,267,0 +170738831382,267,0 +170738831430,266,0 +170738831477,266,0 +170738831527,266,0 +170738831576,266,0 +170738831624,267,0 +170738831672,266,0 +170738831720,266,0 +170738831770,266,0 +170738831818,267,0 +170738831867,267,0 +170738831915,267,0 +170738831963,267,0 +170738832013,266,0 +170738832061,266,0 +170738832110,266,0 +170738832160,267,0 +170738832208,267,0 +170738832256,267,0 +170738832304,266,0 +170738832353,266,0 +170738832403,266,0 +170738832452,266,0 +170738832502,266,0 +170738832550,266,0 +170738832599,267,0 +170738832647,266,0 +170738832695,266,0 +170738832743,266,0 +170738832793,266,0 +170738832841,267,0 +170738832889,267,0 +170738832938,267,0 +170738832988,267,0 +170738833036,266,0 +170738833085,267,0 +170738833133,267,0 +170738833183,267,0 +170738833230,267,0 +170738833280,267,0 +170738833328,266,0 +170738833376,266,0 +170738833423,267,0 +170738833471,266,0 +170738833519,266,0 +170738833567,266,0 +170738833615,266,0 +170738833665,266,0 +170738833713,267,0 +170738833762,266,0 +170738833810,266,0 +170738833858,266,0 +170738833907,266,0 +170738833957,266,0 +170738834005,267,0 +170738834053,267,0 +170738834101,267,0 +170738834149,266,0 +170738834197,266,0 +170738834245,267,0 +170738834293,266,0 +170738834341,266,0 +170738834389,266,0 +170738834437,266,0 +170738834485,267,0 +170738834534,266,0 +170738834584,266,0 +170738834633,266,0 +170738834681,266,0 +170738834731,266,0 +170738834780,266,0 +170738834828,266,0 +170738834876,266,0 +170738834924,267,0 +170738834974,266,0 +170738835022,266,0 +170738835070,267,0 +170738835118,266,0 +170738835167,266,0 +170738835215,266,0 +170738835263,266,0 +170738835311,266,0 +170738835359,266,0 +170738835407,266,0 +170738835455,266,0 +170738835503,266,0 +170738835551,266,0 +170738835601,266,0 +170738835648,266,0 +170738835698,266,0 +170738835746,266,0 +170738835794,267,0 +170738835842,266,0 +170738835890,266,0 +170738835939,266,0 +170738835987,266,0 +170738836035,266,0 +170738836083,266,0 +170738836131,266,0 +170738836179,267,0 +170738836227,267,0 +170738836275,267,0 +170738836325,266,0 +170738836373,267,0 +170738836422,267,0 +170738836470,266,0 +170738836520,266,0 +170738836568,267,0 +170738836617,266,0 +170738836665,267,0 +170738836713,266,0 +170738836763,267,0 +170738836812,267,0 +170738836860,266,0 +170738836908,266,0 +170738836956,266,0 +170738837004,266,0 +170738837052,266,0 +170738837100,266,0 +170738837148,266,0 +170738837196,266,0 +170738837246,267,0 +170738837294,266,0 +170738837342,267,0 +170738837390,266,0 +170738837438,266,0 +170738837487,266,0 +170738837535,267,0 +170738837583,266,0 +170738837633,266,0 +170738837681,267,0 +170738837729,267,0 +170738837777,265,0 +170738837825,266,0 +170738837873,266,0 +170738837920,266,0 +170738837970,267,0 +170738838019,266,0 +170738838067,266,0 +170738838117,266,0 +170738838166,267,0 +170738838214,267,0 +170738838262,266,0 +170738838310,266,0 +170738838360,267,0 +170738838409,266,0 +170738838459,267,0 +170738838507,266,0 +170738838555,265,0 +170738838603,266,0 +170738838652,266,0 +170738838702,267,0 +170738838750,267,0 +170738838798,267,0 +170738838846,266,0 +170738838893,266,0 +170738838941,266,0 +170738838989,267,0 +170738839037,267,0 +170738839085,267,0 +170738839134,266,0 +170738839182,266,0 +170738839230,266,0 +170738839278,266,0 +170738839326,266,0 +170738839374,266,0 +170738839422,266,0 +170738839471,266,0 +170738839519,266,0 +170738839567,266,0 +170738839615,267,0 +170738839664,266,0 +170738839712,266,0 +170738839760,266,0 +170738839808,267,0 +170738839857,266,0 +170738839907,266,0 +170738839955,266,0 +170738840003,266,0 +170738840050,266,0 +170738840098,267,0 +170738840146,266,0 +170738840194,266,0 +170738840242,266,0 +170738840291,266,0 +170738840339,266,0 +170738840387,267,0 +170738840435,267,0 +170738840484,266,0 +170738840532,267,0 +170738840580,267,0 +170738840630,266,0 +170738840678,266,0 +170738840725,266,0 +170738840773,266,0 +170738840821,266,0 +170738840869,266,0 +170738840917,266,0 +170738840965,266,0 +170738841013,267,0 +170738841061,266,0 +170738841109,266,0 +170738841157,267,0 +170738841205,266,0 +170738841254,267,0 +170738841302,266,0 +170738841350,266,0 +170738841399,266,0 +170738841447,266,0 +170738841495,267,0 +170738841543,266,0 +170738841591,266,0 +170738841638,266,0 +170738841688,266,0 +170738841736,266,0 +170738841784,266,0 +170738841832,266,0 +170738841879,266,0 +170738841927,267,0 +170738841975,266,0 +170738842023,266,0 +170738842071,266,0 +170738842119,266,0 +170738842167,266,0 +170738842214,267,0 +170738842262,266,0 +170738842310,267,0 +170738842358,266,0 +170738842406,266,0 +170738842454,266,0 +170738842502,266,0 +170738842550,266,0 +170738842597,266,0 +170738842645,266,0 +170738842693,266,0 +170738842741,267,0 +170738842789,266,0 +170738842838,266,0 +170738842886,267,0 +170738842934,266,0 +170738842982,266,0 +170738843030,267,0 +170738843078,266,0 +170738843126,267,0 +170738843173,266,0 +170738843221,266,0 +170738843271,267,0 +170738843319,267,0 +170738843367,266,0 +170738843414,266,0 +170738843462,266,0 +170738843510,266,0 +170738843558,266,0 +170738843606,266,0 +170738843654,266,0 +170738843703,266,0 +170738843751,266,0 +170738843799,267,0 +170738843847,267,0 +170738843897,266,0 +170738843945,266,0 +170738843993,267,0 +170738844042,267,0 +170738844090,266,0 +170738844138,267,0 +170738844187,266,0 +170738844235,267,0 +170738844283,266,0 +170738844333,267,0 +170738844381,267,0 +170738844429,266,0 +170738844478,266,0 +170738844526,267,0 +170738844576,267,0 +170738844625,267,0 +170738844673,267,0 +170738844721,266,0 +170738844769,266,0 +170738844817,266,0 +170738844865,266,0 +170738844913,266,0 +170738844961,267,0 +170738845009,266,0 +170738845057,266,0 +170738845105,266,0 +170738845153,266,0 +170738845201,266,0 +170738845249,266,0 +170738845299,266,0 +170738845346,266,0 +170738845394,267,0 +170738845444,267,0 +170738845492,266,0 +170738845540,266,0 +170738845588,266,0 +170738845636,266,0 +170738845684,266,0 +170738845732,266,0 +170738845781,266,0 +170738845831,266,0 +170738845879,266,0 +170738845927,266,0 +170738845975,266,0 +170738846023,266,0 +170738846072,266,0 +170738846122,266,0 +170738846171,267,0 +170738846219,266,0 +170738846267,266,0 +170738846317,267,0 +170738846365,266,0 +170738846413,267,0 +170738846461,266,0 +170738846509,266,0 +170738846557,266,0 +170738846605,267,0 +170738846654,266,0 +170738846702,266,0 +170738846752,266,0 +170738846801,267,0 +170738846851,267,0 +170738846900,266,0 +170738846950,267,0 +170738846999,267,0 +170738847047,266,0 +170738847095,267,0 +170738847145,266,0 +170738847193,266,0 +170738847242,266,0 +170738847292,266,0 +170738847340,266,0 +170738847388,266,0 +170738847436,266,0 +170738847484,266,0 +170738847533,266,0 +170738847581,267,0 +170738847629,267,0 +170738847677,266,0 +170738847725,266,0 +170738847773,266,0 +170738847823,267,0 +170738847871,267,0 +170738847919,267,0 +170738847968,267,0 +170738848016,266,0 +170738848064,266,0 +170738848112,266,0 +170738848160,266,0 +170738848208,267,0 +170738848256,267,0 +170738848304,266,0 +170738848353,266,0 +170738848403,266,0 +170738848452,266,0 +170738848500,266,0 +170738848550,266,0 +170738848598,266,0 +170738848646,266,0 +170738848694,266,0 +170738848742,266,0 +170738848789,266,0 +170738848837,267,0 +170738848885,267,0 +170738848933,266,0 +170738848983,266,0 +170738849031,267,0 +170738849079,267,0 +170738849127,266,0 +170738849175,266,0 +170738849223,267,0 +170738849271,266,0 +170738849319,266,0 +170738849368,266,0 +170738849416,267,0 +170738849466,266,0 +170738849514,267,0 +170738849563,267,0 +170738849611,267,0 +170738849661,267,0 +170738849709,266,0 +170738849757,266,0 +170738849806,266,0 +170738849854,266,0 +170738849902,266,0 +170738849950,266,0 +170738849998,266,0 +170738850046,266,0 +170738850094,267,0 +170738850142,267,0 +170738850191,267,0 +170738850239,266,0 +170738850287,267,0 +170738850335,266,0 +170738850384,266,0 +170738850432,266,0 +170738850480,267,0 +170738850530,266,0 +170738850578,266,0 +170738850626,266,0 +170738850674,266,0 +170738850723,267,0 +170738850771,267,0 +170738850819,266,0 +170738850867,266,0 +170738850915,266,0 +170738850963,266,0 +170738851012,267,0 +170738851060,267,0 +170738851108,267,0 +170738851156,267,0 +170738851206,267,0 +170738851254,266,0 +170738851302,266,0 +170738851350,267,0 +170738851398,267,0 +170738851446,267,0 +170738851495,267,0 +170738851544,267,0 +170738851592,266,0 +170738851640,267,0 +170738851688,266,0 +170738851738,266,0 +170738851785,266,0 +170738851833,267,0 +170738851883,267,0 +170738851931,266,0 +170738851979,266,0 +170738852028,266,0 +170738852078,267,0 +170738852125,267,0 +170738852175,267,0 +170738852223,267,0 +170738852271,266,0 +170738852320,267,0 +170738852368,267,0 +170738852416,267,0 +170738852464,266,0 +170738852512,267,0 +170738852560,266,0 +170738852608,267,0 +170738852656,266,0 +170738852704,266,0 +170738852752,266,0 +170738852800,267,0 +170738852848,267,0 +170738852898,267,0 +170738852946,266,0 +170738852994,266,0 +170738853042,267,0 +170738853090,266,0 +170738853138,266,0 +170738853187,266,0 +170738853235,266,0 +170738853283,267,0 +170738853331,266,0 +170738853379,266,0 +170738853427,266,0 +170738853476,266,0 +170738853524,266,0 +170738853574,266,0 +170738853622,267,0 +170738853670,267,0 +170738853718,266,0 +170738853766,266,0 +170738853814,267,0 +170738853862,267,0 +170738853911,266,0 +170738853959,267,0 +170738854007,267,0 +170738854055,266,0 +170738854103,266,0 +170738854151,267,0 +170738854199,266,0 +170738854247,267,0 +170738854295,267,0 +170738854343,266,0 +170738854392,266,0 +170738854440,267,0 +170738854490,266,0 +170738854539,267,0 +170738854589,266,0 +170738854637,267,0 +170738854685,267,0 +170738854734,267,0 +170738854784,266,0 +170738854833,266,0 +170738854883,267,0 +170738854932,267,0 +170738854980,266,0 +170738855028,266,0 +170738855078,267,0 +170738855126,266,0 +170738855174,266,0 +170738855222,267,0 +170738855270,267,0 +170738855319,266,0 +170738855367,266,0 +170738855417,267,0 +170738855464,266,0 +170738855512,266,0 +170738855560,267,0 +170738855608,266,0 +170738855656,267,0 +170738855704,266,0 +170738855752,267,0 +170738855800,266,0 +170738855850,266,0 +170738855898,267,0 +170738855946,267,0 +170738855994,267,0 +170738856042,266,0 +170738856090,267,0 +170738856138,266,0 +170738856187,267,0 +170738856237,266,0 +170738856285,266,0 +170738856334,266,0 +170738856384,267,0 +170738856432,266,0 +170738856481,267,0 +170738856529,267,0 +170738856579,266,0 +170738856627,266,0 +170738856674,267,0 +170738856722,267,0 +170738856770,267,0 +170738856820,266,0 +170738856868,267,0 +170738856916,266,0 +170738856965,267,0 +170738857015,266,0 +170738857064,266,0 +170738857112,266,0 +170738857162,266,0 +170738857210,266,0 +170738857259,267,0 +170738857307,266,0 +170738857355,267,0 +170738857403,266,0 +170738857451,267,0 +170738857501,267,0 +170738857549,266,0 +170738857596,266,0 +170738857644,266,0 +170738857692,267,0 +170738857740,266,0 +170738857788,267,0 +170738857838,267,0 +170738857886,267,0 +170738857935,266,0 +170738857983,266,0 +170738858031,267,0 +170738858081,266,0 +170738858129,266,0 +170738858178,266,0 +170738858226,267,0 +170738858274,266,0 +170738858322,266,0 +170738858372,266,0 +170738858420,266,0 +170738858468,267,0 +170738858516,266,0 +170738858564,266,0 +170738858612,266,0 +170738858660,267,0 +170738858708,266,0 +170738858757,266,0 +170738858805,266,0 +170738858853,266,0 +170738858901,266,0 +170738858950,266,0 +170738858998,267,0 +170738859046,266,0 +170738859094,266,0 +170738859142,267,0 +170738859192,266,0 +170738859240,267,0 +170738859289,267,0 +170738859337,267,0 +170738859385,266,0 +170738859433,266,0 +170738859483,267,0 +170738859531,267,0 +170738859579,266,0 +170738859627,266,0 +170738859676,266,0 +170738859724,267,0 +170738859774,266,0 +170738859823,267,0 +170738859871,267,0 +170738859919,266,0 +170738859967,266,0 +170738860015,266,0 +170738860063,266,0 +170738860112,267,0 +170738860160,266,0 +170738860210,266,0 +170738860258,266,0 +170738860306,267,0 +170738860355,266,0 +170738860403,266,0 +170738860451,266,0 +170738860499,266,0 +170738860547,266,0 +170738860595,267,0 +170738860643,266,0 +170738860691,266,0 +170738860741,267,0 +170738860790,266,0 +170738860838,266,0 +170738860886,266,0 +170738860936,267,0 +170738860984,266,0 +170738861032,266,0 +170738861081,266,0 +170738861129,266,0 +170738861177,266,0 +170738861226,266,0 +170738861276,266,0 +170738861324,266,0 +170738861372,266,0 +170738861421,266,0 +170738861471,266,0 +170738861520,266,0 +170738861568,266,0 +170738861616,266,0 +170738861666,267,0 +170738861714,266,0 +170738861762,266,0 +170738861810,266,0 +170738861858,266,0 +170738861907,266,0 +170738861957,266,0 +170738862005,267,0 +170738862054,266,0 +170738862102,266,0 +170738862152,266,0 +170738862200,266,0 +170738862249,267,0 +170738862297,267,0 +170738862346,266,0 +170738862394,266,0 +170738862442,266,0 +170738862490,266,0 +170738862540,267,0 +170738862589,267,0 +170738862637,267,0 +170738862685,267,0 +170738862735,266,0 +170738862783,266,0 +170738862832,267,0 +170738862882,266,0 +170738862931,267,0 +170738862979,266,0 +170738863027,266,0 +170738863077,266,0 +170738863125,266,0 +170738863173,266,0 +170738863221,267,0 +170738863270,266,0 +170738863318,267,0 +170738863368,266,0 +170738863416,266,0 +170738863464,266,0 +170738863512,267,0 +170738863560,266,0 +170738863607,266,0 +170738863655,267,0 +170738863703,266,0 +170738863751,266,0 +170738863799,266,0 +170738863847,267,0 +170738863895,266,0 +170738863943,266,0 +170738863991,266,0 +170738864040,266,0 +170738864090,266,0 +170738864138,266,0 +170738864186,266,0 +170738864234,266,0 +170738864282,266,0 +170738864330,266,0 +170738864378,266,0 +170738864426,266,0 +170738864475,266,0 +170738864523,266,0 +170738864572,267,0 +170738864620,266,0 +170738864668,266,0 +170738864716,266,0 +170738864764,267,0 +170738864814,266,0 +170738864862,267,0 +170738864911,266,0 +170738864959,266,0 +170738865009,267,0 +170738865057,266,0 +170738865105,266,0 +170738865153,266,0 +170738865201,266,0 +170738865249,266,0 +170738865296,266,0 +170738865346,266,0 +170738865396,267,0 +170738865443,266,0 +170738865493,266,0 +170738865541,266,0 +170738865589,266,0 +170738865639,266,0 +170738865687,266,0 +170738865735,266,0 +170738865783,267,0 +170738865832,266,0 +170738865880,267,0 +170738865928,267,0 +170738865976,266,0 +170738866024,266,0 +170738866073,266,0 +170738866121,266,0 +170738866171,267,0 +170738866221,266,0 +170738866268,266,0 +170738866316,266,0 +170738866364,266,0 +170738866412,266,0 +170738866460,266,0 +170738866508,266,0 +170738866556,267,0 +170738866605,266,0 +170738866655,267,0 +170738866703,266,0 +170738866751,266,0 +170738866801,266,0 +170738866849,266,0 +170738866896,266,0 +170738866944,266,0 +170738866994,266,0 +170738867042,266,0 +170738867090,266,0 +170738867139,265,0 +170738867187,266,0 +170738867235,266,0 +170738867283,266,0 +170738867331,266,0 +170738867379,266,0 +170738867427,266,0 +170738867475,266,0 +170738867524,266,0 +170738867572,266,0 +170738867620,266,0 +170738867670,266,0 +170738867718,266,0 +170738867765,266,0 +170738867815,266,0 +170738867863,266,0 +170738867911,266,0 +170738867959,266,0 +170738868008,266,0 +170738868056,266,0 +170738868104,266,0 +170738868152,266,0 +170738868200,266,0 +170738868248,266,0 +170738868298,266,0 +170738868345,266,0 +170738868395,266,0 +170738868443,266,0 +170738868491,266,0 +170738868539,266,0 +170738868587,266,0 +170738868636,266,0 +170738868686,266,0 +170738868734,266,0 +170738868782,266,0 +170738868830,266,0 +170738868878,266,0 +170738868927,266,0 +170738868975,266,0 +170738869023,266,0 +170738869071,266,0 +170738869121,266,0 +170738869169,266,0 +170738869217,266,0 +170738869265,266,0 +170738869313,266,0 +170738869362,266,0 +170738869410,266,0 +170738869458,266,0 +170738869506,266,0 +170738869554,266,0 +170738869603,266,0 +170738869651,266,0 +170738869699,265,0 +170738869747,266,0 +170738869796,266,0 +170738869844,265,0 +170738869892,265,0 +170738869940,266,0 +170738869988,266,0 +170738870036,266,0 +170738870084,266,0 +170738870132,266,0 +170738870180,266,0 +170738870227,266,0 +170738870275,266,0 +170738870325,265,0 +170738870373,266,0 +170738870421,266,0 +170738870469,266,0 +170738870518,266,0 +170738870566,266,0 +170738870614,266,0 +170738870662,266,0 +170738870710,266,0 +170738870758,266,0 +170738870805,266,0 +170738870853,266,0 +170738870901,266,0 +170738870949,266,0 +170738870999,266,0 +170738871047,266,0 +170738871096,266,0 +170738871144,266,0 +170738871192,266,0 +170738871240,266,0 +170738871288,266,0 +170738871336,266,0 +170738871384,266,0 +170738871433,266,0 +170738871483,266,0 +170738871531,265,0 +170738871579,266,0 +170738871627,266,0 +170738871675,266,0 +170738871723,266,0 +170738871771,266,0 +170738871819,266,0 +170738871868,266,0 +170738871918,266,0 +170738871967,266,0 +170738872017,266,0 +170738872065,266,0 +170738872113,266,0 +170738872160,266,0 +170738872208,265,0 +170738872258,266,0 +170738872306,266,0 +170738872354,266,0 +170738872403,266,0 +170738872453,266,0 +170738872501,266,0 +170738872550,266,0 +170738872598,266,0 +170738872646,266,0 +170738872694,266,0 +170738872742,266,0 +170738872790,266,0 +170738872838,266,0 +170738872886,266,0 +170738872934,266,0 +170738872982,266,0 +170738873029,266,0 +170738873077,266,0 +170738873125,266,0 +170738873173,266,0 +170738873221,266,0 +170738873269,266,0 +170738873319,266,0 +170738873368,266,0 +170738873416,266,0 +170738873464,266,0 +170738873512,266,0 +170738873562,266,0 +170738873611,266,0 +170738873659,266,0 +170738873707,266,0 +170738873757,266,0 +170738873806,266,0 +170738873856,266,0 +170738873904,266,0 +170738873952,266,0 +170738874000,266,0 +170738874048,266,0 +170738874096,266,0 +170738874144,266,0 +170738874192,266,0 +170738874239,266,0 +170738874289,266,0 +170738874337,266,0 +170738874387,266,0 +170738874435,266,0 +170738874483,266,0 +170738874531,266,0 +170738874578,266,0 +170738874628,266,0 +170738874676,266,0 +170738874724,266,0 +170738874772,266,0 +170738874821,266,0 +170738874869,266,0 +170738874919,266,0 +170738874967,266,0 +170738875015,266,0 +170738875063,266,0 +170738875111,266,0 +170738875159,266,0 +170738875207,266,0 +170738875256,266,0 +170738875304,266,0 +170738875352,266,0 +170738875400,266,0 +170738875450,266,0 +170738875499,266,0 +170738875547,266,0 +170738875595,266,0 +170738875643,266,0 +170738875691,266,0 +170738875739,265,0 +170738875787,266,0 +170738875835,266,0 +170738875884,266,0 +170738875934,266,0 +170738875983,266,0 +170738876033,266,0 +170738876082,266,0 +170738876130,266,0 +170738876178,266,0 +170738876226,266,0 +170738876274,266,0 +170738876322,266,0 +170738876370,266,0 +170738876420,266,0 +170738876468,266,0 +170738876516,266,0 +170738876565,265,0 +170738876613,266,0 +170738876661,266,0 +170738876709,266,0 +170738876757,266,0 +170738876805,266,0 +170738876855,266,0 +170738876904,266,0 +170738876952,266,0 +170738877002,266,0 +170738877050,266,0 +170738877099,266,0 +170738877147,266,0 +170738877195,266,0 +170738877245,266,0 +170738877292,266,0 +170738877342,266,0 +170738877390,266,0 +170738877440,265,0 +170738877488,266,0 +170738877536,266,0 +170738877584,266,0 +170738877633,266,0 +170738877683,266,0 +170738877731,266,0 +170738877780,266,0 +170738877830,266,0 +170738877878,266,0 +170738877926,266,0 +170738877975,266,0 +170738878025,266,0 +170738878074,266,0 +170738878122,266,0 +170738878170,266,0 +170738878218,266,0 +170738878266,266,0 +170738878314,266,0 +170738878362,266,0 +170738878410,266,0 +170738878458,266,0 +170738878506,266,0 +170738878554,266,0 +170738878603,266,0 +170738878651,266,0 +170738878699,266,0 +170738878749,266,0 +170738878797,266,0 +170738878845,266,0 +170738878893,266,0 +170738878942,266,0 +170738878990,266,0 +170738879038,266,0 +170738879088,266,0 +170738879136,266,0 +170738879184,266,0 +170738879231,266,0 +170738879279,265,0 +170738879327,266,0 +170738879375,265,0 +170738879424,265,0 +170738879472,266,0 +170738879520,266,0 +170738879570,266,0 +170738879618,266,0 +170738879665,266,0 +170738879713,266,0 +170738879761,266,0 +170738879809,266,0 +170738879857,266,0 +170738879905,265,0 +170738879953,266,0 +170738880001,266,0 +170738880049,266,0 +170738880097,266,0 +170738880145,266,0 +170738880193,265,0 +170738880241,266,0 +170738880289,266,0 +170738880338,266,0 +170738880386,266,0 +170738880434,266,0 +170738880482,266,0 +170738880530,266,0 +170738880578,266,0 +170738880626,265,0 +170738880674,266,0 +170738880722,266,0 +170738880770,266,0 +170738880820,266,0 +170738880869,266,0 +170738880919,265,0 +170738880968,266,0 +170738881016,266,0 +170738881064,265,0 +170738881112,266,0 +170738881162,266,0 +170738881210,266,0 +170738881258,266,0 +170738881306,266,0 +170738881353,266,0 +170738881403,266,0 +170738881452,266,0 +170738881500,266,0 +170738881548,266,0 +170738881596,266,0 +170738881644,266,0 +170738881692,266,0 +170738881740,265,0 +170738881790,266,0 +170738881838,266,0 +170738881887,266,0 +170738881935,266,0 +170738881983,266,0 +170738882033,266,0 +170738882082,266,0 +170738882130,266,0 +170738882180,266,0 +170738882227,266,0 +170738882277,266,0 +170738882325,266,0 +170738882373,266,0 +170738882421,266,0 +170738882470,266,0 +170738882518,266,0 +170738882568,266,0 +170738882616,266,0 +170738882665,266,0 +170738882715,266,0 +170738882765,266,0 +170738882812,266,0 +170738882860,266,0 +170738882908,266,0 +170738882956,265,0 +170738883004,266,0 +170738883052,266,0 +170738883101,266,0 +170738883149,266,0 +170738883197,266,0 +170738883245,266,0 +170738883293,266,0 +170738883342,266,0 +170738883390,266,0 +170738883438,265,0 +170738883486,266,0 +170738883534,265,0 +170738883582,266,0 +170738883630,266,0 +170738883678,266,0 +170738883726,266,0 +170738883776,266,0 +170738883825,266,0 +170738883873,265,0 +170738883922,266,0 +170738883972,266,0 +170738884020,266,0 +170738884070,266,0 +170738884117,265,0 +170738884167,265,0 +170738884215,266,0 +170738884263,266,0 +170738884311,266,0 +170738884359,266,0 +170738884407,266,0 +170738884454,266,0 +170738884502,266,0 +170738884550,266,0 +170738884598,266,0 +170738884646,266,0 +170738884694,266,0 +170738884744,266,0 +170738884793,266,0 +170738884841,266,0 +170738884889,266,0 +170738884939,266,0 +170738884988,266,0 +170738885036,266,0 +170738885084,266,0 +170738885132,266,0 +170738885180,265,0 +170738885228,266,0 +170738885276,266,0 +170738885324,266,0 +170738885372,266,0 +170738885421,266,0 +170738885469,266,0 +170738885519,266,0 +170738885567,266,0 +170738885616,266,0 +170738885664,266,0 +170738885712,266,0 +170738885760,266,0 +170738885810,266,0 +170738885859,266,0 +170738885907,266,0 +170738885955,265,0 +170738886003,266,0 +170738886051,265,0 +170738886098,266,0 +170738886146,266,0 +170738886194,266,0 +170738886242,266,0 +170738886290,266,0 +170738886338,265,0 +170738886386,266,0 +170738886434,266,0 +170738886482,266,0 +170738886530,266,0 +170738886579,266,0 +170738886627,266,0 +170738886675,266,0 +170738886725,266,0 +170738886772,266,0 +170738886822,266,0 +170738886871,266,0 +170738886919,266,0 +170738886967,266,0 +170738887015,265,0 +170738887063,266,0 +170738887111,266,0 +170738887159,266,0 +170738887209,266,0 +170738887257,266,0 +170738887305,266,0 +170738887353,266,0 +170738887402,266,0 +170738887452,266,0 +170738887501,265,0 +170738887549,266,0 +170738887597,266,0 +170738887645,266,0 +170738887693,266,0 +170738887741,266,0 +170738887789,266,0 +170738887837,266,0 +170738887885,265,0 +170738887933,266,0 +170738887982,265,0 +170738888030,266,0 +170738888078,266,0 +170738888126,266,0 +170738888174,266,0 +170738888221,266,0 +170738888269,266,0 +170738888317,266,0 +170738888365,265,0 +170738888413,266,0 +170738888461,266,0 +170738888509,265,0 +170738888557,266,0 +170738888605,266,0 +170738888653,266,0 +170738888700,266,0 +170738888748,266,0 +170738888796,266,0 +170738888844,266,0 +170738888892,266,0 +170738888940,266,0 +170738888988,266,0 +170738889036,266,0 +170738889084,266,0 +170738889132,266,0 +170738889180,266,0 +170738889229,265,0 +170738889277,265,0 +170738889327,266,0 +170738889375,266,0 +170738889423,266,0 +170738889471,266,0 +170738889520,266,0 +170738889570,266,0 +170738889619,266,0 +170738889667,266,0 +170738889715,266,0 +170738889763,266,0 +170738889811,265,0 +170738889859,266,0 +170738889907,266,0 +170738889955,266,0 +170738890004,265,0 +170738890052,266,0 +170738890100,266,0 +170738890148,266,0 +170738890196,266,0 +170738890246,266,0 +170738890295,266,0 +170738890343,266,0 +170738890393,266,0 +170738890441,266,0 +170738890490,266,0 +170738890538,266,0 +170738890586,266,0 +170738890636,266,0 +170738890684,266,0 +170738890732,265,0 +170738890781,266,0 +170738890831,265,0 +170738890879,266,0 +170738890927,266,0 +170738890975,266,0 +170738891023,266,0 +170738891072,266,0 +170738891122,266,0 +170738891170,266,0 +170738891218,266,0 +170738891266,266,0 +170738891314,266,0 +170738891363,266,0 +170738891411,266,0 +170738891461,266,0 +170738891510,265,0 +170738891558,266,0 +170738891606,266,0 +170738891654,266,0 +170738891704,266,0 +170738891751,265,0 +170738891799,266,0 +170738891849,266,0 +170738891898,266,0 +170738891946,266,0 +170738891994,266,0 +170738892044,266,0 +170738892092,266,0 +170738892140,266,0 +170738892188,266,0 +170738892237,266,0 +170738892285,266,0 +170738892333,266,0 +170738892383,266,0 +170738892431,266,0 +170738892480,266,0 +170738892528,266,0 +170738892578,266,0 +170738892625,266,0 +170738892673,266,0 +170738892723,266,0 +170738892771,266,0 +170738892820,266,0 +170738892868,265,0 +170738892918,266,0 +170738892966,266,0 +170738893014,266,0 +170738893062,266,0 +170738893110,266,0 +170738893158,266,0 +170738893207,266,0 +170738893255,266,0 +170738893305,266,0 +170738893353,266,0 +170738893401,266,0 +170738893450,266,0 +170738893498,266,0 +170738893546,266,0 +170738893594,266,0 +170738893642,266,0 +170738893690,265,0 +170738893739,266,0 +170738893787,266,0 +170738893835,266,0 +170738893883,266,0 +170738893931,266,0 +170738893979,266,0 +170738894027,266,0 +170738894075,266,0 +170738894123,266,0 +170738894171,266,0 +170738894219,266,0 +170738894266,266,0 +170738894314,266,0 +170738894362,266,0 +170738894410,266,0 +170738894458,266,0 +170738894506,266,0 +170738894554,266,0 +170738894602,266,0 +170738894651,266,0 +170738894699,266,0 +170738894747,266,0 +170738894795,266,0 +170738894843,266,0 +170738894890,266,0 +170738894940,266,0 +170738894988,266,0 +170738895036,266,0 +170738895084,266,0 +170738895132,266,0 +170738895181,266,0 +170738895229,266,0 +170738895277,266,0 +170738895327,266,0 +170738895375,266,0 +170738895423,266,0 +170738895472,266,0 +170738895520,266,0 +170738895568,266,0 +170738895618,266,0 +170738895667,266,0 +170738895715,266,0 +170738895763,266,0 +170738895812,266,0 +170738895861,266,0 +170738895909,266,0 +170738895959,266,0 +170738896007,266,0 +170738896056,266,0 +170738896104,266,0 +170738896152,266,0 +170738896200,266,0 +170738896249,266,0 +170738896297,266,0 +170738896345,266,0 +170738896393,266,0 +170738896443,265,0 +170738896491,266,0 +170738896539,266,0 +170738896588,266,0 +170738896638,266,0 +170738896688,266,0 +170738896736,266,0 +170738896783,266,0 +170738896831,266,0 +170738896881,266,0 +170738896929,266,0 +170738896978,266,0 +170738897026,266,0 +170738897074,266,0 +170738897122,266,0 +170738897172,266,0 +170738897220,266,0 +170738897269,265,0 +170738897317,266,0 +170738897365,266,0 +170738897413,266,0 +170738897463,266,0 +170738897512,266,0 +170738897560,266,0 +170738897608,266,0 +170738897656,266,0 +170738897706,266,0 +170738897754,266,0 +170738897802,266,0 +170738897850,266,0 +170738897899,266,0 +170738897947,266,0 +170738897995,266,0 +170738898043,266,0 +170738898091,266,0 +170738898139,266,0 +170738898187,266,0 +170738898235,266,0 +170738898283,266,0 +170738898331,266,0 +170738898379,266,0 +170738898428,266,0 +170738898476,265,0 +170738898524,266,0 +170738898572,266,0 +170738898620,266,0 +170738898668,266,0 +170738898716,266,0 +170738898764,266,0 +170738898812,266,0 +170738898862,266,0 +170738898911,266,0 +170738898959,265,0 +170738899007,266,0 +170738899057,266,0 +170738899104,266,0 +170738899152,266,0 +170738899200,266,0 +170738899248,266,0 +170738899296,266,0 +170738899344,266,0 +170738899392,266,0 +170738899440,266,0 +170738899488,266,0 +170738899536,266,0 +170738899584,266,0 +170738899632,266,0 +170738899679,266,0 +170738899727,266,0 +170738899775,266,0 +170738899823,266,0 +170738899871,266,0 +170738899919,266,0 +170738899969,266,0 +170738900017,266,0 +170738900065,266,0 +170738900113,266,0 +170738900162,265,0 +170738900210,266,0 +170738900258,266,0 +170738900308,266,0 +170738900356,266,0 +170738900405,266,0 +170738900455,266,0 +170738900502,265,0 +170738900550,266,0 +170738900598,266,0 +170738900646,266,0 +170738900696,266,0 +170738900744,266,0 +170738900792,266,0 +170738900841,266,0 +170738900889,266,0 +170738900937,266,0 +170738900985,266,0 +170738901033,266,0 +170738901083,266,0 +170738901132,266,0 +170738901180,266,0 +170738901230,266,0 +170738901278,266,0 +170738901326,266,0 +170738901375,266,0 +170738901423,266,0 +170738901471,266,0 +170738901521,266,0 +170738901569,266,0 +170738901617,266,0 +170738901666,266,0 +170738901716,266,0 +170738901764,266,0 +170738901813,266,0 +170738901863,266,0 +170738901912,266,0 +170738901960,266,0 +170738902008,266,0 +170738902056,266,0 +170738902104,266,0 +170738902154,266,0 +170738902202,266,0 +170738902251,266,0 +170738902299,266,0 +170738902347,266,0 +170738902395,266,0 +170738902443,266,0 +170738902493,266,0 +170738902540,266,0 +170738902588,266,0 +170738902636,266,0 +170738902684,266,0 +170738902732,266,0 +170738902780,266,0 +170738902830,266,0 +170738902878,266,0 +170738902927,266,0 +170738902977,266,0 +170738903025,266,0 +170738903073,266,0 +170738903121,266,0 +170738903170,266,0 +170738903218,266,0 +170738903268,266,0 +170738903315,266,0 +170738903365,265,0 +170738903413,266,0 +170738903461,266,0 +170738903509,266,0 +170738903557,266,0 +170738903606,266,0 +170738903654,266,0 +170738903702,266,0 +170738903752,266,0 +170738903800,266,0 +170738903849,266,0 +170738903899,266,0 +170738903946,266,0 +170738903994,266,0 +170738904042,266,0 +170738904092,266,0 +170738904140,266,0 +170738904188,266,0 +170738904237,265,0 +170738904285,266,0 +170738904333,265,0 +170738904381,266,0 +170738904429,266,0 +170738904477,266,0 +170738904525,265,0 +170738904574,266,0 +170738904622,266,0 +170738904670,266,0 +170738904720,266,0 +170738904768,266,0 +170738904816,266,0 +170738904863,266,0 +170738904913,266,0 +170738904963,266,0 +170738905010,266,0 +170738905058,266,0 +170738905106,265,0 +170738905154,265,0 +170738905202,266,0 +170738905250,266,0 +170738905298,265,0 +170738905346,266,0 +170738905394,266,0 +170738905442,266,0 +170738905490,266,0 +170738905538,266,0 +170738905586,266,0 +170738905636,266,0 +170738905684,266,0 +170738905733,265,0 +170738905781,266,0 +170738905829,266,0 +170738905877,266,0 +170738905925,266,0 +170738905973,266,0 +170738906022,265,0 +170738906072,266,0 +170738906120,266,0 +170738906168,266,0 +170738906217,265,0 +170738906267,266,0 +170738906315,266,0 +170738906364,266,0 +170738906412,266,0 +170738906460,266,0 +170738906508,266,0 +170738906556,265,0 +170738906604,266,0 +170738906652,265,0 +170738906700,265,0 +170738906748,266,0 +170738906796,266,0 +170738906844,266,0 +170738906892,266,0 +170738906940,266,0 +170738906990,266,0 +170738907037,265,0 +170738907085,265,0 +170738907135,266,0 +170738907183,266,0 +170738907231,266,0 +170738907279,266,0 +170738907327,265,0 +170738907375,266,0 +170738907423,265,0 +170738907472,266,0 +170738907522,265,0 +170738907570,266,0 +170738907618,266,0 +170738907666,266,0 +170738907713,266,0 +170738907761,266,0 +170738907809,266,0 +170738907857,266,0 +170738907905,266,0 +170738907953,266,0 +170738908001,266,0 +170738908050,266,0 +170738908098,266,0 +170738908148,266,0 +170738908197,266,0 +170738908247,266,0 +170738908295,266,0 +170738908342,266,0 +170738908392,266,0 +170738908440,265,0 +170738908488,266,0 +170738908536,266,0 +170738908585,266,0 +170738908635,266,0 +170738908683,266,0 +170738908732,266,0 +170738908782,266,0 +170738908831,266,0 +170738908879,266,0 +170738908927,266,0 +170738908975,266,0 +170738909023,266,0 +170738909071,266,0 +170738909119,266,0 +170738909167,266,0 +170738909215,266,0 +170738909263,265,0 +170738909311,266,0 +170738909359,266,0 +170738909407,266,0 +170738909456,266,0 +170738909504,266,0 +170738909552,265,0 +170738909600,266,0 +170738909648,266,0 +170738909696,266,0 +170738909745,266,0 +170738909793,266,0 +170738909843,266,0 +170738909891,266,0 +170738909939,266,0 +170738909987,266,0 +170738910034,266,0 +170738910082,265,0 +170738910130,266,0 +170738910178,266,0 +170738910226,266,0 +170738910274,266,0 +170738910322,265,0 +170738910370,266,0 +170738910418,266,0 +170738910465,266,0 +170738910513,265,0 +170738910561,266,0 +170738910609,266,0 +170738910657,266,0 +170738910705,265,0 +170738910753,265,0 +170738910801,266,0 +170738910849,266,0 +170738910897,266,0 +170738910944,265,0 +170738910992,265,0 +170738911040,266,0 +170738911088,266,0 +170738911136,266,0 +170738911184,266,0 +170738911234,266,0 +170738911282,266,0 +170738911330,266,0 +170738911379,265,0 +170738911427,266,0 +170738911477,266,0 +170738911525,265,0 +170738911573,265,0 +170738911621,266,0 +170738911669,265,0 +170738911717,265,0 +170738911765,266,0 +170738911813,265,0 +170738911860,266,0 +170738911910,266,0 +170738911958,266,0 +170738912007,266,0 +170738912057,266,0 +170738912106,266,0 +170738912154,266,0 +170738912202,265,0 +170738912250,266,0 +170738912298,266,0 +170738912346,266,0 +170738912396,266,0 +170738912444,266,0 +170738912492,266,0 +170738912541,266,0 +170738912589,265,0 +170738912637,266,0 +170738912687,265,0 +170738912736,266,0 +170738912784,266,0 +170738912834,266,0 +170738912882,266,0 +170738912931,266,0 +170738912981,266,0 +170738913028,266,0 +170738913076,266,0 +170738913124,265,0 +170738913172,265,0 +170738913220,266,0 +170738913268,266,0 +170738913316,266,0 +170738913365,266,0 +170738913413,266,0 +170738913463,266,0 +170738913511,266,0 +170738913559,265,0 +170738913607,265,0 +170738913655,266,0 +170738913702,266,0 +170738913750,266,0 +170738913798,266,0 +170738913846,266,0 +170738913896,266,0 +170738913944,266,0 +170738913992,266,0 +170738914040,265,0 +170738914089,265,0 +170738914137,266,0 +170738914185,265,0 +170738914233,266,0 +170738914281,265,0 +170738914329,265,0 +170738914377,265,0 +170738914427,266,0 +170738914476,265,0 +170738914524,266,0 +170738914572,266,0 +170738914620,265,0 +170738914668,266,0 +170738914716,265,0 +170738914766,266,0 +170738914814,266,0 +170738914863,266,0 +170738914911,266,0 +170738914959,265,0 +170738915007,266,0 +170738915055,266,0 +170738915103,266,0 +170738915153,265,0 +170738915201,266,0 +170738915250,266,0 +170738915298,266,0 +170738915348,266,0 +170738915397,266,0 +170738915445,266,0 +170738915493,266,0 +170738915541,265,0 +170738915590,265,0 +170738915640,266,0 +170738915688,266,0 +170738915736,266,0 +170738915784,266,0 +170738915832,266,0 +170738915881,265,0 +170738915929,265,0 +170738915977,266,0 +170738916025,266,0 +170738916073,266,0 +170738916121,265,0 +170738916168,266,0 +170738916216,265,0 +170738916264,266,0 +170738916312,266,0 +170738916362,265,0 +170738916410,266,0 +170738916459,266,0 +170738916507,266,0 +170738916555,266,0 +170738916603,266,0 +170738916650,266,0 +170738916698,266,0 +170738916746,266,0 +170738916794,266,0 +170738916842,266,0 +170738916892,266,0 +170738916939,265,0 +170738916987,266,0 +170738917035,266,0 +170738917083,266,0 +170738917133,265,0 +170738917182,266,0 +170738917230,266,0 +170738917278,266,0 +170738917326,266,0 +170738917374,266,0 +170738917422,266,0 +170738917470,266,0 +170738917518,266,0 +170738917566,266,0 +170738917616,266,0 +170738917664,265,0 +170738917713,266,0 +170738917761,266,0 +170738917809,266,0 +170738917857,266,0 +170738917907,266,0 +170738917955,266,0 +170738918003,266,0 +170738918051,266,0 +170738918099,266,0 +170738918148,266,0 +170738918196,266,0 +170738918244,266,0 +170738918292,266,0 +170738918340,266,0 +170738918388,266,0 +170738918436,265,0 +170738918484,266,0 +170738918532,266,0 +170738918580,266,0 +170738918627,266,0 +170738918675,266,0 +170738918725,266,0 +170738918773,266,0 +170738918821,265,0 +170738918869,265,0 +170738918918,266,0 +170738918966,266,0 +170738919014,266,0 +170738919064,266,0 +170738919112,265,0 +170738919160,266,0 +170738919208,266,0 +170738919256,266,0 +170738919303,266,0 +170738919353,266,0 +170738919401,266,0 +170738919449,266,0 +170738919497,266,0 +170738919545,266,0 +170738919593,266,0 +170738919641,265,0 +170738919689,266,0 +170738919736,265,0 +170738919784,266,0 +170738919832,266,0 +170738919880,266,0 +170738919928,266,0 +170738919976,266,0 +170738920024,266,0 +170738920072,266,0 +170738920120,266,0 +170738920167,266,0 +170738920215,266,0 +170738920263,266,0 +170738920311,266,0 +170738920359,265,0 +170738920407,266,0 +170738920455,266,0 +170738920504,266,0 +170738920552,266,0 +170738920600,266,0 +170738920648,266,0 +170738920696,266,0 +170738920745,266,0 +170738920793,266,0 +170738920843,265,0 +170738920891,265,0 +170738920939,266,0 +170738920986,266,0 +170738921036,266,0 +170738921084,266,0 +170738921132,266,0 +170738921180,266,0 +170738921229,266,0 +170738921277,266,0 +170738921327,266,0 +170738921375,266,0 +170738921423,266,0 +170738921471,266,0 +170738921519,265,0 +170738921567,266,0 +170738921616,266,0 +170738921664,266,0 +170738921712,266,0 +170738921760,266,0 +170738921809,266,0 +170738921857,266,0 +170738921907,266,0 +170738921955,266,0 +170738922003,266,0 +170738922051,266,0 +170738922100,266,0 +170738922148,266,0 +170738922198,266,0 +170738922246,266,0 +170738922294,265,0 +170738922342,266,0 +170738922390,266,0 +170738922439,266,0 +170738922487,265,0 +170738922535,266,0 +170738922583,266,0 +170738922631,265,0 +170738922680,266,0 +170738922728,266,0 +170738922776,265,0 +170738922826,266,0 +170738922875,267,0 +170738922923,266,0 +170738922971,266,0 +170738923019,265,0 +170738923067,265,0 +170738923117,266,0 +170738923166,265,0 +170738923214,266,0 +170738923262,266,0 +170738923312,266,0 +170738923361,266,0 +170738923409,266,0 +170738923459,266,0 +170738923507,266,0 +170738923555,266,0 +170738923603,266,0 +170738923651,266,0 +170738923698,266,0 +170738923746,266,0 +170738923794,266,0 +170738923842,266,0 +170738923890,266,0 +170738923938,266,0 +170738923986,265,0 +170738924036,265,0 +170738924085,266,0 +170738924133,266,0 +170738924183,265,0 +170738924232,265,0 +170738924280,266,0 +170738924328,266,0 +170738924376,266,0 +170738924424,266,0 +170738924472,266,0 +170738924520,266,0 +170738924568,266,0 +170738924616,266,0 +170738924664,266,0 +170738924712,266,0 +170738924761,267,0 +170738924809,267,0 +170738924857,266,0 +170738924905,266,0 +170738924953,265,0 +170738925001,266,0 +170738925049,266,0 +170738925097,266,0 +170738925145,266,0 +170738925195,266,0 +170738925243,266,0 +170738925291,266,0 +170738925339,266,0 +170738925387,266,0 +170738925435,266,0 +170738925482,266,0 +170738925532,266,0 +170738925580,266,0 +170738925628,266,0 +170738925676,266,0 +170738925723,266,0 +170738925771,266,0 +170738925819,266,0 +170738925867,266,0 +170738925915,266,0 +170738925965,266,0 +170738926013,266,0 +170738926061,266,0 +170738926110,266,0 +170738926158,266,0 +170738926206,266,0 +170738926255,266,0 +170738926303,266,0 +170738926351,266,0 +170738926401,266,0 +170738926449,266,0 +170738926497,266,0 +170738926546,266,0 +170738926594,266,0 +170738926642,266,0 +170738926692,266,0 +170738926740,266,0 +170738926788,266,0 +170738926836,266,0 +170738926885,266,0 +170738926935,266,0 +170738926983,266,0 +170738927031,266,0 +170738927079,266,0 +170738927127,265,0 +170738927175,266,0 +170738927223,266,0 +170738927272,266,0 +170738927320,266,0 +170738927368,266,0 +170738927416,266,0 +170738927464,266,0 +170738927512,266,0 +170738927560,266,0 +170738927608,266,0 +170738927656,266,0 +170738927704,266,0 +170738927752,266,0 +170738927801,266,0 +170738927849,266,0 +170738927897,266,0 +170738927947,266,0 +170738927996,266,0 +170738928044,266,0 +170738928092,266,0 +170738928140,266,0 +170738928190,266,0 +170738928238,266,0 +170738928286,266,0 +170738928334,266,0 +170738928381,266,0 +170738928431,266,0 +170738928479,266,0 +170738928528,266,0 +170738928576,266,0 +170738928624,266,0 +170738928674,266,0 +170738928722,266,0 +170738928771,266,0 +170738928821,266,0 +170738928869,266,0 +170738928919,266,0 +170738928967,266,0 +170738929014,266,0 +170738929062,266,0 +170738929110,266,0 +170738929158,266,0 +170738929206,266,0 +170738929254,266,0 +170738929304,266,0 +170738929353,266,0 +170738929401,266,0 +170738929449,266,0 +170738929499,266,0 +170738929547,266,0 +170738929596,266,0 +170738929646,266,0 +170738929694,266,0 +170738929742,265,0 +170738929790,266,0 +170738929839,266,0 +170738929887,266,0 +170738929935,266,0 +170738929983,266,0 +170738930031,266,0 +170738930081,266,0 +170738930129,266,0 +170738930178,266,0 +170738930226,266,0 +170738930274,266,0 +170738930322,266,0 +170738930370,266,0 +170738930419,266,0 +170738930467,266,0 +170738930517,266,0 +170738930566,266,0 +170738930616,266,0 +170738930664,266,0 +170738930712,266,0 +170738930760,266,0 +170738930808,266,0 +170738930856,266,0 +170738930905,266,0 +170738930955,266,0 +170738931004,266,0 +170738931052,266,0 +170738931100,266,0 +170738931150,266,0 +170738931198,266,0 +170738931246,266,0 +170738931294,266,0 +170738931343,266,0 +170738931391,266,0 +170738931439,266,0 +170738931487,266,0 +170738931537,266,0 +170738931585,266,0 +170738931633,266,0 +170738931681,266,0 +170738931729,266,0 +170738931777,266,0 +170738931824,266,0 +170738931872,266,0 +170738931922,266,0 +170738931970,266,0 +170738932019,266,0 +170738932067,266,0 +170738932117,266,0 +170738932165,267,0 +170738932213,266,0 +170738932261,266,0 +170738932308,266,0 +170738932358,266,0 +170738932406,266,0 +170738932454,266,0 +170738932501,266,0 +170738932551,266,0 +170738932601,266,0 +170738932650,266,0 +170738932698,266,0 +170738932746,266,0 +170738932796,266,0 +170738932845,266,0 +170738932893,266,0 +170738932941,266,0 +170738932991,266,0 +170738933039,266,0 +170738933088,266,0 +170738933136,266,0 +170738933184,266,0 +170738933233,266,0 +170738933283,266,0 +170738933331,266,0 +170738933379,266,0 +170738933427,266,0 +170738933475,266,0 +170738933523,266,0 +170738933572,266,0 +170738933622,266,0 +170738933671,266,0 +170738933719,266,0 +170738933767,266,0 +170738933815,266,0 +170738933863,266,0 +170738933911,266,0 +170738933961,266,0 +170738934008,266,0 +170738934056,266,0 +170738934104,266,0 +170738934152,266,0 +170738934200,266,0 +170738934250,266,0 +170738934298,266,0 +170738934346,266,0 +170738934394,266,0 +170738934442,266,0 +170738934491,266,0 +170738934539,266,0 +170738934589,266,0 +170738934637,266,0 +170738934685,266,0 +170738934734,266,0 +170738934784,266,0 +170738934832,266,0 +170738934881,266,0 +170738934929,267,0 +170738934977,266,0 +170738935025,266,0 +170738935073,265,0 +170738935121,266,0 +170738935171,266,0 +170738935218,266,0 +170738935266,266,0 +170738935314,266,0 +170738935362,266,0 +170738935410,266,0 +170738935458,266,0 +170738935506,266,0 +170738935555,267,0 +170738935603,266,0 +170738935651,266,0 +170738935699,266,0 +170738935747,266,0 +170738935795,266,0 +170738935844,266,0 +170738935892,266,0 +170738935942,266,0 +170738935989,266,0 +170738936037,266,0 +170738936085,266,0 +170738936135,266,0 +170738936183,266,0 +170738936230,266,0 +170738936278,266,0 +170738936326,266,0 +170738936374,266,0 +170738936422,266,0 +170738936470,266,0 +170738936518,266,0 +170738936566,266,0 +170738936613,266,0 +170738936661,266,0 +170738936709,266,0 +170738936757,266,0 +170738936805,266,0 +170738936853,266,0 +170738936902,266,0 +170738936950,266,0 +170738936998,266,0 +170738937048,266,0 +170738937096,266,0 +170738937145,266,0 +170738937193,266,0 +170738937243,266,0 +170738937292,266,0 +170738937340,266,0 +170738937390,266,0 +170738937439,266,0 +170738937487,266,0 +170738937535,267,0 +170738937583,266,0 +170738937631,266,0 +170738937679,266,0 +170738937726,266,0 +170738937774,266,0 +170738937822,266,0 +170738937872,266,0 +170738937920,266,0 +170738937968,265,0 +170738938015,266,0 +170738938063,266,0 +170738938111,266,0 +170738938159,266,0 +170738938207,266,0 +170738938255,266,0 +170738938303,266,0 +170738938351,266,0 +170738938399,266,0 +170738938446,266,0 +170738938494,266,0 +170738938542,266,0 +170738938590,266,0 +170738938638,266,0 +170738938686,266,0 +170738938734,266,0 +170738938784,266,0 +170738938832,266,0 +170738938881,266,0 +170738938931,266,0 +170738938979,266,0 +170738939028,266,0 +170738939076,266,0 +170738939124,266,0 +170738939174,266,0 +170738939222,266,0 +170738939270,266,0 +170738939319,266,0 +170738939367,266,0 +170738939415,266,0 +170738939465,266,0 +170738939513,266,0 +170738939562,266,0 +170738939610,266,0 +170738939658,266,0 +170738939707,266,0 +170738939755,266,0 +170738939803,266,0 +170738939853,266,0 +170738939902,266,0 +170738939951,266,0 +170738940000,266,0 +170738940048,266,0 +170738940097,266,0 +170738940147,266,0 +170738940195,266,0 +170738940243,266,0 +170738940292,266,0 +170738940340,266,0 +170738940390,266,0 +170738940438,267,0 +170738940486,266,0 +170738940534,266,0 +170738940583,266,0 +170738940631,266,0 +170738940681,266,0 +170738940729,266,0 +170738940778,266,0 +170738940828,266,0 +170738940877,266,0 +170738940925,266,0 +170738940975,266,0 +170738941023,266,0 +170738941071,266,0 +170738941120,266,0 +170738941168,266,0 +170738941218,266,0 +170738941266,266,0 +170738941313,266,0 +170738941363,266,0 +170738941411,266,0 +170738941459,266,0 +170738941507,266,0 +170738941555,266,0 +170738941605,266,0 +170738941653,266,0 +170738941700,266,0 +170738941750,266,0 +170738941800,266,0 +170738941849,266,0 +170738941897,266,0 +170738941945,266,0 +170738941993,266,0 +170738942041,266,0 +170738942089,266,0 +170738942138,266,0 +170738942188,266,0 +170738942236,266,0 +170738942284,266,0 +170738942333,266,0 +170738942381,266,0 +170738942429,266,0 +170738942477,266,0 +170738942527,266,0 +170738942575,266,0 +170738942624,266,0 +170738942672,266,0 +170738942720,266,0 +170738942768,266,0 +170738942816,266,0 +170738942864,266,0 +170738942912,266,0 +170738942960,266,0 +170738943008,266,0 +170738943056,266,0 +170738943104,266,0 +170738943152,265,0 +170738943200,266,0 +170738943248,266,0 +170738943297,266,0 +170738943347,266,0 +170738943396,266,0 +170738943444,266,0 +170738943492,266,0 +170738943540,266,0 +170738943590,266,0 +170738943638,266,0 +170738943686,266,0 +170738943734,266,0 +170738943782,266,0 +170738943831,266,0 +170738943879,266,0 +170738943927,266,0 +170738943975,266,0 +170738944023,266,0 +170738944071,266,0 +170738944119,266,0 +170738944166,266,0 +170738944214,266,0 +170738944262,266,0 +170738944310,266,0 +170738944358,266,0 +170738944406,266,0 +170738944454,266,0 +170738944502,266,0 +170738944550,266,0 +170738944597,266,0 +170738944645,266,0 +170738944695,266,0 +170738944743,266,0 +170738944791,266,0 +170738944840,266,0 +170738944888,266,0 +170738944936,266,0 +170738944984,266,0 +170738945034,266,0 +170738945083,266,0 +170738945131,266,0 +170738945181,266,0 +170738945230,266,0 +170738945278,266,0 +170738945326,266,0 +170738945374,266,0 +170738945422,266,0 +170738945470,266,0 +170738945518,266,0 +170738945568,266,0 +170738945616,266,0 +170738945665,266,0 +170738945713,266,0 +170738945763,266,0 +170738945812,266,0 +170738945860,266,0 +170738945910,266,0 +170738945958,266,0 +170738946006,266,0 +170738946054,266,0 +170738946102,266,0 +170738946150,266,0 +170738946198,266,0 +170738946245,266,0 +170738946295,266,0 +170738946343,266,0 +170738946393,266,0 +170738946440,266,0 +170738946489,266,0 +170738946537,266,0 +170738946584,266,0 +170738946634,266,0 +170738946682,266,0 +170738946730,266,0 +170738946780,266,0 +170738946827,266,0 +170738946875,266,0 +170738946923,267,0 +170738946973,266,0 +170738947023,266,0 +170738947070,266,0 +170738947118,266,0 +170738947166,266,0 +170738947214,266,0 +170738947262,266,0 +170738947310,266,0 +170738947358,266,0 +170738947406,266,0 +170738947456,266,0 +170738947504,266,0 +170738947552,266,0 +170738947599,266,0 +170738947647,266,0 +170738947697,266,0 +170738947745,266,0 +170738947793,266,0 +170738947840,266,0 +170738947888,266,0 +170738947936,266,0 +170738947984,266,0 +170738948032,266,0 +170738948080,266,0 +170738948128,266,0 +170738948176,266,0 +170738948223,266,0 +170738948271,266,0 +170738948319,266,0 +170738948367,266,0 +170738948417,266,0 +170738948465,266,0 +170738948512,266,0 +170738948560,266,0 +170738948608,266,0 +170738948658,266,0 +170738948706,266,0 +170738948753,266,0 +170738948803,266,0 +170738948851,266,0 +170738948899,266,0 +170738948947,266,0 +170738948996,266,0 +170738949044,266,0 +170738949092,266,0 +170738949140,266,0 +170738949189,266,0 +170738949237,266,0 +170738949285,266,0 +170738949333,266,0 +170738949381,266,0 +170738949429,266,0 +170738949477,266,0 +170738949524,266,0 +170738949572,266,0 +170738949620,266,0 +170738949668,266,0 +170738949716,266,0 +170738949765,266,0 +170738949815,266,0 +170738949863,266,0 +170738949912,266,0 +170738949960,266,0 +170738950008,266,0 +170738950056,266,0 +170738950104,266,0 +170738950152,266,0 +170738950200,266,0 +170738950248,266,0 +170738950295,266,0 +170738950343,266,0 +170738950391,266,0 +170738950439,266,0 +170738950487,267,0 +170738950536,266,0 +170738950584,266,0 +170738950632,266,0 +170738950680,266,0 +170738950728,266,0 +170738950776,266,0 +170738950824,266,0 +170738950873,265,0 +170738950921,266,0 +170738950969,266,0 +170738951017,266,0 +170738951065,266,0 +170738951114,266,0 +170738951162,266,0 +170738951210,266,0 +170738951258,266,0 +170738951306,266,0 +170738951356,266,0 +170738951405,266,0 +170738951455,266,0 +170738951503,266,0 +170738951551,266,0 +170738951599,266,0 +170738951648,266,0 +170738951698,266,0 +170738951746,266,0 +170738951794,266,0 +170738951842,265,0 +170738951890,266,0 +170738951938,266,0 +170738951987,266,0 +170738952035,266,0 +170738952083,266,0 +170738952131,266,0 +170738952179,266,0 +170738952227,266,0 +170738952276,266,0 +170738952326,266,0 +170738952374,266,0 +170738952422,266,0 +170738952470,266,0 +170738952519,266,0 +170738952567,266,0 +170738952615,266,0 +170738952665,266,0 +170738952713,266,0 +170738952762,266,0 +170738952810,266,0 +170738952860,266,0 +170738952909,266,0 +170738952959,266,0 +170738953008,266,0 +170738953058,266,0 +170738953106,266,0 +170738953154,266,0 +170738953203,266,0 +170738953253,266,0 +170738953301,266,0 +170738953350,266,0 +170738953400,266,0 +170738953448,266,0 +170738953496,266,0 +170738953544,266,0 +170738953593,266,0 +170738953641,266,0 +170738953689,266,0 +170738953739,266,0 +170738953788,266,0 +170738953836,267,0 +170738953884,266,0 +170738953932,266,0 +170738953982,266,0 +170738954030,266,0 +170738954079,266,0 +170738954129,266,0 +170738954177,266,0 +170738954226,266,0 +170738954274,266,0 +170738954322,266,0 +170738954370,266,0 +170738954418,266,0 +170738954468,266,0 +170738954517,266,0 +170738954565,266,0 +170738954614,266,0 +170738954662,266,0 +170738954710,266,0 +170738954758,266,0 +170738954808,266,0 +170738954856,266,0 +170738954904,266,0 +170738954953,266,0 +170738955001,266,0 +170738955049,266,0 +170738955097,266,0 +170738955145,266,0 +170738955193,266,0 +170738955241,266,0 +170738955291,266,0 +170738955340,266,0 +170738955388,266,0 +170738955436,266,0 +170738955484,266,0 +170738955532,267,0 +170738955580,266,0 +170738955629,266,0 +170738955677,266,0 +170738955727,266,0 +170738955775,266,0 +170738955824,266,0 +170738955872,266,0 +170738955922,266,0 +170738955970,266,0 +170738956019,266,0 +170738956067,266,0 +170738956117,266,0 +170738956165,266,0 +170738956213,266,0 +170738956261,266,0 +170738956309,266,0 +170738956357,266,0 +170738956406,266,0 +170738956454,266,0 +170738956504,266,0 +170738956552,266,0 +170738956600,266,0 +170738956648,266,0 +170738956696,266,0 +170738956744,266,0 +170738956791,266,0 +170738956839,266,0 +170738956889,266,0 +170738956938,266,0 +170738956986,266,0 +170738957034,266,0 +170738957082,266,0 +170738957130,266,0 +170738957180,266,0 +170738957228,266,0 +170738957277,266,0 +170738957327,266,0 +170738957375,266,0 +170738957423,266,0 +170738957472,266,0 +170738957520,266,0 +170738957568,266,0 +170738957616,266,0 +170738957664,266,0 +170738957712,266,0 +170738957761,266,0 +170738957811,266,0 +170738957861,266,0 +170738957910,266,0 +170738957960,266,0 +170738958008,266,0 +170738958055,266,0 +170738958103,266,0 +170738958151,266,0 +170738958201,266,0 +170738958249,266,0 +170738958297,266,0 +170738958345,266,0 +170738958394,265,0 +170738958442,266,0 +170738958490,265,0 +170738958538,266,0 +170738958586,266,0 +170738958634,266,0 +170738958682,266,0 +170738958730,266,0 +170738958778,266,0 +170738958826,266,0 +170738958874,266,0 +170738958924,266,0 +170738958972,267,0 +170738959020,266,0 +170738959069,266,0 +170738959119,266,0 +170738959167,266,0 +170738959215,267,0 +170738959262,266,0 +170738959312,265,0 +170738959360,266,0 +170738959408,266,0 +170738959456,266,0 +170738959504,266,0 +170738959552,266,0 +170738959600,266,0 +170738959648,266,0 +170738959696,266,0 +170738959745,266,0 +170738959793,266,0 +170738959841,266,0 +170738959889,266,0 +170738959937,266,0 +170738959985,266,0 +170738960032,266,0 +170738960080,266,0 +170738960128,266,0 +170738960176,266,0 +170738960224,266,0 +170738960272,266,0 +170738960320,266,0 +170738960368,266,0 +170738960417,266,0 +170738960465,266,0 +170738960513,266,0 +170738960562,266,0 +170738960610,266,0 +170738960658,266,0 +170738960708,266,0 +170738960755,266,0 +170738960803,266,0 +170738960851,266,0 +170738960899,266,0 +170738960947,266,0 +170738960995,266,0 +170738961045,266,0 +170738961094,266,0 +170738961142,266,0 +170738961190,266,0 +170738961240,266,0 +170738961288,266,0 +170738961335,266,0 +170738961385,266,0 +170738961433,266,0 +170738961481,266,0 +170738961530,266,0 +170738961578,266,0 +170738961626,266,0 +170738961676,266,0 +170738961724,266,0 +170738961771,266,0 +170738961821,266,0 +170738961869,266,0 +170738961917,266,0 +170738961965,266,0 +170738962013,266,0 +170738962061,265,0 +170738962109,266,0 +170738962156,266,0 +170738962206,266,0 +170738962254,266,0 +170738962302,266,0 +170738962350,266,0 +170738962398,266,0 +170738962446,266,0 +170738962494,266,0 +170738962542,266,0 +170738962590,266,0 +170738962638,266,0 +170738962686,266,0 +170738962734,266,0 +170738962782,266,0 +170738962831,266,0 +170738962879,266,0 +170738962927,266,0 +170738962975,266,0 +170738963023,266,0 +170738963072,266,0 +170738963120,266,0 +170738963168,266,0 +170738963216,266,0 +170738963264,266,0 +170738963312,266,0 +170738963360,266,0 +170738963410,266,0 +170738963458,266,0 +170738963506,266,0 +170738963553,266,0 +170738963601,266,0 +170738963649,266,0 +170738963697,266,0 +170738963745,266,0 +170738963793,266,0 +170738963841,266,0 +170738963889,266,0 +170738963937,266,0 +170738963985,266,0 +170738964034,266,0 +170738964084,266,0 +170738964132,266,0 +170738964181,266,0 +170738964229,266,0 +170738964277,266,0 +170738964327,266,0 +170738964375,266,0 +170738964423,266,0 +170738964472,266,0 +170738964520,266,0 +170738964568,266,0 +170738964616,265,0 +170738964664,265,0 +170738964712,266,0 +170738964760,266,0 +170738964808,266,0 +170738964856,266,0 +170738964905,267,0 +170738964953,266,0 +170738965001,266,0 +170738965051,266,0 +170738965099,266,0 +170738965147,266,0 +170738965195,266,0 +170738965243,265,0 +170738965291,266,0 +170738965339,266,0 +170738965387,266,0 +170738965435,266,0 +170738965483,266,0 +170738965530,266,0 +170738965578,266,0 +170738965626,266,0 +170738965674,266,0 +170738965722,266,0 +170738965770,266,0 +170738965818,266,0 +170738965866,266,0 +170738965913,266,0 +170738965963,266,0 +170738966012,266,0 +170738966060,266,0 +170738966110,266,0 +170738966159,266,0 +170738966207,266,0 +170738966257,266,0 +170738966306,266,0 +170738966355,266,0 +170738966405,266,0 +170738966453,266,0 +170738966501,266,0 +170738966550,266,0 +170738966598,266,0 +170738966648,266,0 +170738966696,266,0 +170738966744,266,0 +170738966792,266,0 +170738966840,267,0 +170738966888,266,0 +170738966936,266,0 +170738966984,266,0 +170738967033,266,0 +170738967081,266,0 +170738967129,266,0 +170738967177,266,0 +170738967225,266,0 +170738967273,266,0 +170738967323,266,0 +170738967372,266,0 +170738967420,266,0 +170738967470,266,0 +170738967519,266,0 +170738967567,266,0 +170738967615,265,0 +170738967663,266,0 +170738967711,266,0 +170738967759,266,0 +170738967807,266,0 +170738967855,266,0 +170738967903,266,0 +170738967951,266,0 +170738967999,266,0 +170738968047,266,0 +170738968095,266,0 +170738968144,266,0 +170738968192,266,0 +170738968240,266,0 +170738968288,266,0 +170738968336,266,0 +170738968384,266,0 +170738968434,266,0 +170738968483,266,0 +170738968532,266,0 +170738968580,266,0 +170738968628,266,0 +170738968676,266,0 +170738968724,266,0 +170738968772,266,0 +170738968820,266,0 +170738968870,266,0 +170738968918,266,0 +170738968966,266,0 +170738969014,266,0 +170738969063,266,0 +170738969113,266,0 +170738969161,266,0 +170738969209,266,0 +170738969258,266,0 +170738969306,266,0 +170738969354,266,0 +170738969402,266,0 +170738969450,266,0 +170738969498,266,0 +170738969545,266,0 +170738969593,267,0 +170738969641,266,0 +170738969691,266,0 +170738969739,266,0 +170738969788,266,0 +170738969836,266,0 +170738969884,266,0 +170738969934,266,0 +170738969983,266,0 +170738970031,266,0 +170738970079,266,0 +170738970127,266,0 +170738970175,266,0 +170738970223,266,0 +170738970271,266,0 +170738970319,266,0 +170738970368,266,0 +170738970416,266,0 +170738970464,265,0 +170738970512,266,0 +170738970560,266,0 +170738970608,266,0 +170738970658,266,0 +170738970707,266,0 +170738970755,266,0 +170738970803,266,0 +170738970851,266,0 +170738970899,266,0 +170738970949,266,0 +170738970997,266,0 +170738971044,266,0 +170738971092,266,0 +170738971142,266,0 +170738971190,266,0 +170738971238,266,0 +170738971286,266,0 +170738971334,266,0 +170738971382,266,0 +170738971430,266,0 +170738971478,266,0 +170738971527,266,0 +170738971575,266,0 +170738971623,266,0 +170738971671,266,0 +170738971719,266,0 +170738971767,266,0 +170738971815,266,0 +170738971863,266,0 +170738971911,266,0 +170738971959,266,0 +170738972008,266,0 +170738972056,266,0 +170738972104,265,0 +170738972154,265,0 +170738972203,266,0 +170738972251,266,0 +170738972301,266,0 +170738972349,266,0 +170738972398,266,0 +170738972446,266,0 +170738972494,266,0 +170738972542,266,0 +170738972590,266,0 +170738972638,266,0 +170738972686,266,0 +170738972734,266,0 +170738972782,266,0 +170738972830,266,0 +170738972878,266,0 +170738972926,266,0 +170738972974,266,0 +170738973022,266,0 +170738973071,265,0 +170738973119,266,0 +170738973167,266,0 +170738973216,266,0 +170738973266,266,0 +170738973314,266,0 +170738973362,266,0 +170738973410,266,0 +170738973459,266,0 +170738973507,266,0 +170738973555,266,0 +170738973605,266,0 +170738973655,266,0 +170738973703,266,0 +170738973751,266,0 +170738973798,266,0 +170738973846,266,0 +170738973896,266,0 +170738973944,266,0 +170738973994,266,0 +170738974042,266,0 +170738974089,266,0 +170738974137,266,0 +170738974185,266,0 +170738974235,266,0 +170738974283,266,0 +170738974332,266,0 +170738974380,266,0 +170738974430,266,0 +170738974478,266,0 +170738974527,266,0 +170738974575,266,0 +170738974623,266,0 +170738974673,266,0 +170738974721,266,0 +170738974770,266,0 +170738974818,266,0 +170738974868,266,0 +170738974916,266,0 +170738974964,266,0 +170738975012,266,0 +170738975061,266,0 +170738975109,267,0 +170738975159,266,0 +170738975207,266,0 +170738975256,266,0 +170738975306,265,0 +170738975354,266,0 +170738975403,266,0 +170738975453,266,0 +170738975502,266,0 +170738975550,266,0 +170738975600,266,0 +170738975649,266,0 +170738975697,265,0 +170738975745,266,0 +170738975793,266,0 +170738975841,266,0 +170738975889,266,0 +170738975938,266,0 +170738975986,266,0 +170738976034,266,0 +170738976082,266,0 +170738976132,265,0 +170738976181,266,0 +170738976230,266,0 +170738976280,266,0 +170738976329,266,0 +170738976377,266,0 +170738976427,266,0 +170738976475,266,0 +170738976524,266,0 +170738976572,266,0 +170738976622,266,0 +170738976671,266,0 +170738976719,265,0 +170738976767,266,0 +170738976815,266,0 +170738976862,265,0 +170738976910,266,0 +170738976958,266,0 +170738977006,266,0 +170738977054,266,0 +170738977102,265,0 +170738977151,265,0 +170738977199,266,0 +170738977247,266,0 +170738977295,266,0 +170738977343,267,0 +170738977391,265,0 +170738977440,266,0 +170738977488,266,0 +170738977536,266,0 +170738977584,266,0 +170738977634,266,0 +170738977682,266,0 +170738977730,266,0 +170738977778,266,0 +170738977827,266,0 +170738977877,266,0 +170738977926,266,0 +170738977976,266,0 +170738978024,266,0 +170738978073,266,0 +170738978121,266,0 +170738978170,266,0 +170738978220,266,0 +170738978268,266,0 +170738978317,266,0 +170738978365,266,0 +170738978413,266,0 +170738978461,266,0 +170738978511,266,0 +170738978559,266,0 +170738978607,266,0 +170738978655,266,0 +170738978703,265,0 +170738978752,265,0 +170738978800,266,0 +170738978850,266,0 +170738978899,265,0 +170738978947,266,0 +170738978995,266,0 +170738979043,266,0 +170738979093,266,0 +170738979141,266,0 +170738979189,266,0 +170738979238,266,0 +170738979288,266,0 +170738979336,266,0 +170738979384,266,0 +170738979432,266,0 +170738979480,265,0 +170738979528,266,0 +170738979577,266,0 +170738979627,266,0 +170738979675,266,0 +170738979723,266,0 +170738979772,266,0 +170738979822,266,0 +170738979870,266,0 +170738979918,266,0 +170738979966,266,0 +170738980014,266,0 +170738980061,266,0 +170738980109,266,0 +170738980157,266,0 +170738980205,266,0 +170738980253,266,0 +170738980301,266,0 +170738980349,266,0 +170738980399,266,0 +170738980447,266,0 +170738980496,266,0 +170738980545,266,0 +170738980592,266,0 +170738980640,266,0 +170738980688,266,0 +170738980736,266,0 +170738980784,266,0 +170738980832,266,0 +170738980882,266,0 +170738980930,266,0 +170738980978,266,0 +170738981027,266,0 +170738981077,265,0 +170738981126,266,0 +170738981176,266,0 +170738981225,266,0 +170738981275,265,0 +170738981324,266,0 +170738981372,266,0 +170738981422,266,0 +170738981470,266,0 +170738981518,266,0 +170738981566,266,0 +170738981614,266,0 +170738981662,266,0 +170738981710,265,0 +170738981759,266,0 +170738981807,266,0 +170738981855,266,0 +170738981903,266,0 +170738981951,266,0 +170738981999,266,0 +170738982049,266,0 +170738982098,266,0 +170738982146,266,0 +170738982194,266,0 +170738982242,266,0 +170738982290,266,0 +170738982338,266,0 +170738982386,266,0 +170738982434,266,0 +170738982484,266,0 +170738982532,265,0 +170738982580,266,0 +170738982628,266,0 +170738982677,266,0 +170738982727,266,0 +170738982776,266,0 +170738982826,265,0 +170738982874,266,0 +170738982923,266,0 +170738982973,266,0 +170738983021,266,0 +170738983069,266,0 +170738983117,266,0 +170738983165,266,0 +170738983213,266,0 +170738983260,266,0 +170738983308,266,0 +170738983356,266,0 +170738983404,266,0 +170738983454,266,0 +170738983502,266,0 +170738983550,266,0 +170738983598,266,0 +170738983646,266,0 +170738983694,266,0 +170738983742,265,0 +170738983791,266,0 +170738983841,266,0 +170738983889,266,0 +170738983938,266,0 +170738983986,266,0 +170738984036,266,0 +170738984084,266,0 +170738984132,266,0 +170738984180,266,0 +170738984228,266,0 +170738984276,266,0 +170738984325,266,0 +170738984373,266,0 +170738984421,266,0 +170738984470,266,0 +170738984518,266,0 +170738984566,266,0 +170738984614,266,0 +170738984664,266,0 +170738984714,266,0 +170738984763,265,0 +170738984811,266,0 +170738984859,266,0 +170738984909,266,0 +170738984957,266,0 +170738985005,266,0 +170738985054,266,0 +170738985104,265,0 +170738985152,266,0 +170738985201,266,0 +170738985249,266,0 +170738985299,266,0 +170738985347,266,0 +170738985396,266,0 +170738985444,266,0 +170738985492,266,0 +170738985542,266,0 +170738985591,266,0 +170738985639,266,0 +170738985687,265,0 +170738985735,266,0 +170738985785,266,0 +170738985834,266,0 +170738985884,266,0 +170738985932,266,0 +170738985980,266,0 +170738986028,266,0 +170738986077,266,0 +170738986125,266,0 +170738986173,266,0 +170738986221,266,0 +170738986269,266,0 +170738986319,266,0 +170738986367,266,0 +170738986415,266,0 +170738986463,266,0 +170738986510,266,0 +170738986560,266,0 +170738986610,266,0 +170738986658,265,0 +170738986706,265,0 +170738986754,266,0 +170738986803,266,0 +170738986851,266,0 +170738986899,266,0 +170738986947,266,0 +170738986997,266,0 +170738987044,266,0 +170738987092,266,0 +170738987142,265,0 +170738987191,266,0 +170738987239,265,0 +170738987287,266,0 +170738987335,266,0 +170738987383,266,0 +170738987431,266,0 +170738987479,266,0 +170738987529,266,0 +170738987578,266,0 +170738987626,265,0 +170738987674,266,0 +170738987722,266,0 +170738987772,266,0 +170738987821,266,0 +170738987869,266,0 +170738987917,266,0 +170738987965,266,0 +170738988013,266,0 +170738988061,266,0 +170738988111,266,0 +170738988159,265,0 +170738988207,266,0 +170738988254,266,0 +170738988304,266,0 +170738988352,266,0 +170738988400,266,0 +170738988448,266,0 +170738988496,266,0 +170738988545,266,0 +170738988593,266,0 +170738988641,266,0 +170738988689,266,0 +170738988737,266,0 +170738988785,266,0 +170738988833,266,0 +170738988881,266,0 +170738988931,266,0 +170738988980,266,0 +170738989028,266,0 +170738989076,266,0 +170738989126,266,0 +170738989174,266,0 +170738989222,266,0 +170738989270,266,0 +170738989318,266,0 +170738989366,266,0 +170738989415,266,0 +170738989463,266,0 +170738989511,266,0 +170738989561,266,0 +170738989610,266,0 +170738989658,266,0 +170738989706,266,0 +170738989754,266,0 +170738989802,266,0 +170738989850,266,0 +170738989898,266,0 +170738989946,266,0 +170738989994,266,0 +170738990042,266,0 +170738990090,266,0 +170738990138,266,0 +170738990188,266,0 +170738990237,265,0 +170738990285,266,0 +170738990333,266,0 +170738990381,266,0 +170738990429,267,0 +170738990477,266,0 +170738990525,266,0 +170738990573,266,0 +170738990621,266,0 +170738990671,266,0 +170738990719,266,0 +170738990767,266,0 +170738990815,266,0 +170738990863,266,0 +170738990910,267,0 +170738990958,265,0 +170738991006,266,0 +170738991054,265,0 +170738991102,265,0 +170738991152,266,0 +170738991201,266,0 +170738991249,266,0 +170738991297,266,0 +170738991345,266,0 +170738991393,266,0 +170738991441,266,0 +170738991489,266,0 +170738991537,266,0 +170738991587,266,0 +170738991635,266,0 +170738991683,266,0 +170738991731,266,0 +170738991779,266,0 +170738991827,266,0 +170738991876,266,0 +170738991926,266,0 +170738991974,266,0 +170738992023,266,0 +170738992071,266,0 +170738992119,266,0 +170738992167,266,0 +170738992215,266,0 +170738992263,266,0 +170738992311,266,0 +170738992360,266,0 +170738992408,266,0 +170738992456,266,0 +170738992504,266,0 +170738992552,266,0 +170738992600,266,0 +170738992648,266,0 +170738992696,266,0 +170738992744,266,0 +170738992794,266,0 +170738992843,267,0 +170738992893,266,0 +170738992941,266,0 +170738992989,266,0 +170738993038,266,0 +170738993086,266,0 +170738993134,266,0 +170738993182,266,0 +170738993230,266,0 +170738993278,266,0 +170738993326,266,0 +170738993373,266,0 +170738993421,266,0 +170738993469,266,0 +170738993517,266,0 +170738993567,266,0 +170738993615,266,0 +170738993662,266,0 +170738993710,266,0 +170738993758,266,0 +170738993806,266,0 +170738993854,266,0 +170738993902,266,0 +170738993950,266,0 +170738993998,266,0 +170738994045,265,0 +170738994095,266,0 +170738994143,266,0 +170738994191,266,0 +170738994239,266,0 +170738994286,266,0 +170738994336,266,0 +170738994385,266,0 +170738994435,266,0 +170738994483,266,0 +170738994531,266,0 +170738994579,266,0 +170738994627,266,0 +170738994675,266,0 +170738994722,266,0 +170738994770,266,0 +170738994820,266,0 +170738994868,266,0 +170738994916,266,0 +170738994963,266,0 +170738995011,266,0 +170738995059,266,0 +170738995107,266,0 +170738995157,266,0 +170738995204,266,0 +170738995252,266,0 +170738995300,266,0 +170738995348,266,0 +170738995398,266,0 +170738995445,266,0 +170738995493,266,0 +170738995543,266,0 +170738995591,266,0 +170738995639,266,0 +170738995687,266,0 +170738995735,266,0 +170738995783,266,0 +170738995831,266,0 +170738995879,265,0 +170738995927,266,0 +170738995975,266,0 +170738996024,266,0 +170738996072,266,0 +170738996120,266,0 +170738996168,266,0 +170738996218,266,0 +170738996266,266,0 +170738996315,266,0 +170738996363,265,0 +170738996413,266,0 +170738996461,266,0 +170738996510,266,0 +170738996558,266,0 +170738996606,266,0 +170738996654,266,0 +170738996702,266,0 +170738996750,266,0 +170738996800,266,0 +170738996849,266,0 +170738996897,266,0 +170738996945,266,0 +170738996995,266,0 +170738997043,266,0 +170738997092,266,0 +170738997140,266,0 +170738997188,266,0 +170738997236,266,0 +170738997286,266,0 +170738997334,266,0 +170738997383,266,0 +170738997431,266,0 +170738997479,266,0 +170738997529,266,0 +170738997577,266,0 +170738997625,266,0 +170738997673,266,0 +170738997721,266,0 +170738997768,266,0 +170738997818,266,0 +170738997866,266,0 +170738997916,266,0 +170738997965,266,0 +170738998013,266,0 +170738998061,266,0 +170738998109,266,0 +170738998159,266,0 +170738998207,265,0 +170738998256,266,0 +170738998304,266,0 +170738998352,266,0 +170738998402,266,0 +170738998450,266,0 +170738998498,266,0 +170738998546,266,0 +170738998594,266,0 +170738998642,266,0 +170738998691,266,0 +170738998739,266,0 +170738998787,265,0 +170738998837,266,0 +170738998886,266,0 +170738998936,266,0 +170738998984,266,0 +170738999032,266,0 +170738999080,265,0 +170738999128,266,0 +170738999176,266,0 +170738999223,266,0 +170738999273,266,0 +170738999323,266,0 +170738999371,266,0 +170738999419,266,0 +170738999467,266,0 +170738999515,266,0 +170738999564,266,0 +170738999614,266,0 +170738999662,266,0 +170738999710,266,0 +170738999759,265,0 +170738999807,266,0 +170738999855,266,0 +170738999905,266,0 +170738999953,267,0 +170739000001,266,0 diff --git a/laser_value/0208-21.csv b/laser_value/0208-21.csv new file mode 100644 index 0000000..945b51f --- /dev/null +++ b/laser_value/0208-21.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170739000049,266,0 +170739000097,266,0 +170739000145,266,0 +170739000193,266,0 +170739000242,266,0 +170739000292,266,0 +170739000340,266,0 +170739000388,266,0 +170739000436,266,0 +170739000483,266,0 +170739000531,266,0 +170739000579,266,0 +170739000627,265,0 +170739000676,266,0 +170739000724,266,0 +170739000772,266,0 +170739000820,266,0 +170739000868,266,0 +170739000916,265,0 +170739000964,266,0 +170739001012,266,0 +170739001061,266,0 +170739001109,266,0 +170739001159,266,0 +170739001206,266,0 +170739001254,266,0 +170739001302,266,0 +170739001350,266,0 +170739001398,266,0 +170739001446,266,0 +170739001494,266,0 +170739001542,266,0 +170739001589,266,0 +170739001637,266,0 +170739001685,266,0 +170739001733,266,0 +170739001781,266,0 +170739001829,266,0 +170739001877,265,0 +170739001925,266,0 +170739001972,266,0 +170739002020,266,0 +170739002070,266,0 +170739002119,266,0 +170739002167,266,0 +170739002217,266,0 +170739002265,266,0 +170739002314,265,0 +170739002362,266,0 +170739002412,265,0 +170739002461,265,0 +170739002509,266,0 +170739002557,266,0 +170739002605,266,0 +170739002653,266,0 +170739002703,266,0 +170739002751,266,0 +170739002798,265,0 +170739002846,265,0 +170739002896,265,0 +170739002945,266,0 +170739002993,266,0 +170739003041,266,0 +170739003089,266,0 +170739003137,266,0 +170739003185,266,0 +170739003235,266,0 +170739003283,266,0 +170739003332,266,0 +170739003380,266,0 +170739003430,266,0 +170739003479,266,0 +170739003527,266,0 +170739003575,266,0 +170739003623,266,0 +170739003673,266,0 +170739003721,266,0 +170739003770,266,0 +170739003818,266,0 +170739003867,265,0 +170739003915,266,0 +170739003963,266,0 +170739004011,266,0 +170739004059,266,0 +170739004109,266,0 +170739004157,266,0 +170739004205,266,0 +170739004254,266,0 +170739004302,266,0 +170739004350,266,0 +170739004398,266,0 +170739004446,266,0 +170739004494,266,0 +170739004542,266,0 +170739004590,266,0 +170739004638,265,0 +170739004686,266,0 +170739004734,266,0 +170739004782,266,0 +170739004831,266,0 +170739004879,266,0 +170739004929,266,0 +170739004977,266,0 +170739005026,266,0 +170739005074,266,0 +170739005122,266,0 +170739005170,266,0 +170739005218,266,0 +170739005268,265,0 +170739005315,266,0 +170739005363,266,0 +170739005413,266,0 +170739005461,266,0 +170739005509,266,0 +170739005557,265,0 +170739005606,265,0 +170739005654,266,0 +170739005702,266,0 +170739005750,266,0 +170739005798,266,0 +170739005846,266,0 +170739005894,266,0 +170739005942,266,0 +170739005990,265,0 +170739006038,266,0 +170739006086,266,0 +170739006134,266,0 +170739006182,266,0 +170739006230,266,0 +170739006278,266,0 +170739006326,266,0 +170739006374,266,0 +170739006422,266,0 +170739006470,266,0 +170739006518,266,0 +170739006566,266,0 +170739006615,266,0 +170739006663,266,0 +170739006712,266,0 +170739006759,266,0 +170739006807,266,0 +170739006856,266,0 +170739006903,266,0 +170739006951,265,0 +170739007001,266,0 +170739007049,266,0 +170739007097,266,0 +170739007146,266,0 +170739007196,266,0 +170739007244,266,0 +170739007292,266,0 +170739007340,265,0 +170739007388,266,0 +170739007436,266,0 +170739007484,266,0 +170739007532,265,0 +170739007580,266,0 +170739007628,266,0 +170739007677,266,0 +170739007725,266,0 +170739007773,265,0 +170739007823,266,0 +170739007872,266,0 +170739007920,265,0 +170739007970,265,0 +170739008017,266,0 +170739008065,265,0 +170739008113,266,0 +170739008161,266,0 +170739008209,265,0 +170739008257,265,0 +170739008305,266,0 +170739008353,266,0 +170739008401,266,0 +170739008449,266,0 +170739008497,266,0 +170739008546,266,0 +170739008594,266,0 +170739008642,266,0 +170739008690,266,0 +170739008738,266,0 +170739008786,266,0 +170739008834,266,0 +170739008882,265,0 +170739008930,266,0 +170739008977,266,0 +170739009025,266,0 +170739009075,266,0 +170739009123,266,0 +170739009172,266,0 +170739009220,266,0 +170739009268,266,0 +170739009316,266,0 +170739009365,266,0 +170739009413,266,0 +170739009463,266,0 +170739009513,266,0 +170739009562,266,0 +170739009610,266,0 +170739009658,265,0 +170739009706,266,0 +170739009755,265,0 +170739009803,265,0 +170739009853,266,0 +170739009901,267,0 +170739009950,266,0 +170739009998,266,0 +170739010046,265,0 +170739010094,265,0 +170739010144,266,0 +170739010193,265,0 +170739010241,265,0 +170739010289,266,0 +170739010337,266,0 +170739010385,266,0 +170739010433,266,0 +170739010481,266,0 +170739010531,266,0 +170739010579,265,0 +170739010627,266,0 +170739010676,266,0 +170739010724,266,0 +170739010772,266,0 +170739010822,266,0 +170739010870,266,0 +170739010917,266,0 +170739010965,266,0 +170739011013,266,0 +170739011061,266,0 +170739011109,266,0 +170739011159,266,0 +170739011209,266,0 +170739011256,266,0 +170739011306,266,0 +170739011354,266,0 +170739011402,266,0 +170739011451,266,0 +170739011499,266,0 +170739011547,266,0 +170739011597,266,0 +170739011646,266,0 +170739011696,266,0 +170739011744,266,0 +170739011792,266,0 +170739011841,266,0 +170739011889,265,0 +170739011937,266,0 +170739011987,266,0 +170739012035,266,0 +170739012083,266,0 +170739012131,266,0 +170739012179,266,0 +170739012227,265,0 +170739012275,266,0 +170739012323,266,0 +170739012370,266,0 +170739012418,266,0 +170739012468,266,0 +170739012516,266,0 +170739012564,265,0 +170739012614,266,0 +170739012663,265,0 +170739012711,266,0 +170739012761,265,0 +170739012809,265,0 +170739012857,266,0 +170739012906,266,0 +170739012956,266,0 +170739013003,266,0 +170739013053,266,0 +170739013101,266,0 +170739013150,266,0 +170739013200,266,0 +170739013249,266,0 +170739013299,266,0 +170739013347,266,0 +170739013395,266,0 +170739013444,266,0 +170739013492,265,0 +170739013540,266,0 +170739013588,266,0 +170739013636,265,0 +170739013684,266,0 +170739013732,266,0 +170739013780,266,0 +170739013828,265,0 +170739013876,266,0 +170739013926,266,0 +170739013975,266,0 +170739014023,265,0 +170739014071,266,0 +170739014119,266,0 +170739014167,266,0 +170739014215,265,0 +170739014263,266,0 +170739014313,266,0 +170739014360,266,0 +170739014410,266,0 +170739014458,266,0 +170739014507,266,0 +170739014557,266,0 +170739014605,266,0 +170739014654,265,0 +170739014702,266,0 +170739014750,266,0 +170739014798,265,0 +170739014846,266,0 +170739014894,265,0 +170739014942,266,0 +170739014992,266,0 +170739015041,266,0 +170739015089,266,0 +170739015137,265,0 +170739015185,265,0 +170739015235,265,0 +170739015282,265,0 +170739015332,266,0 +170739015380,266,0 +170739015429,266,0 +170739015477,266,0 +170739015525,266,0 +170739015573,265,0 +170739015621,266,0 +170739015669,266,0 +170739015717,266,0 +170739015765,265,0 +170739015813,266,0 +170739015861,266,0 +170739015909,266,0 +170739015959,266,0 +170739016008,266,0 +170739016056,265,0 +170739016104,266,0 +170739016154,266,0 +170739016203,266,0 +170739016252,266,0 +170739016302,266,0 +170739016351,266,0 +170739016401,266,0 +170739016451,266,0 +170739016499,266,0 +170739016548,266,0 +170739016598,266,0 +170739016647,266,0 +170739016697,265,0 +170739016744,265,0 +170739016794,265,0 +170739016842,265,0 +170739016890,266,0 +170739016938,266,0 +170739016986,266,0 +170739017034,266,0 +170739017082,266,0 +170739017130,266,0 +170739017178,265,0 +170739017226,266,0 +170739017275,266,0 +170739017323,266,0 +170739017372,266,0 +170739017420,265,0 +170739017468,266,0 +170739017518,266,0 +170739017566,266,0 +170739017614,266,0 +170739017663,266,0 +170739017713,266,0 +170739017762,266,0 +170739017810,266,0 +170739017858,266,0 +170739017908,266,0 +170739017956,265,0 +170739018004,265,0 +170739018053,265,0 +170739018101,266,0 +170739018151,266,0 +170739018199,266,0 +170739018247,266,0 +170739018295,265,0 +170739018343,266,0 +170739018391,265,0 +170739018439,266,0 +170739018487,266,0 +170739018535,266,0 +170739018583,265,0 +170739018630,265,0 +170739018678,265,0 +170739018726,265,0 +170739018774,266,0 +170739018824,266,0 +170739018872,266,0 +170739018920,265,0 +170739018969,265,0 +170739019017,266,0 +170739019065,266,0 +170739019113,266,0 +170739019161,266,0 +170739019209,266,0 +170739019257,266,0 +170739019305,266,0 +170739019353,265,0 +170739019401,265,0 +170739019449,266,0 +170739019498,266,0 +170739019546,266,0 +170739019596,265,0 +170739019644,265,0 +170739019692,266,0 +170739019740,266,0 +170739019788,266,0 +170739019836,266,0 +170739019884,265,0 +170739019933,266,0 +170739019983,266,0 +170739020031,266,0 +170739020080,266,0 +170739020130,265,0 +170739020178,265,0 +170739020227,265,0 +170739020275,266,0 +170739020323,266,0 +170739020371,266,0 +170739020419,265,0 +170739020467,265,0 +170739020515,265,0 +170739020565,266,0 +170739020613,266,0 +170739020660,266,0 +170739020708,266,0 +170739020756,265,0 +170739020804,266,0 +170739020852,266,0 +170739020900,265,0 +170739020948,266,0 +170739020997,266,0 +170739021045,266,0 +170739021093,266,0 +170739021141,265,0 +170739021189,265,0 +170739021237,265,0 +170739021285,266,0 +170739021335,266,0 +170739021382,266,0 +170739021430,265,0 +170739021478,266,0 +170739021526,266,0 +170739021574,266,0 +170739021622,266,0 +170739021670,266,0 +170739021718,265,0 +170739021766,266,0 +170739021814,265,0 +170739021861,265,0 +170739021909,266,0 +170739021957,266,0 +170739022005,266,0 +170739022055,265,0 +170739022103,265,0 +170739022151,265,0 +170739022198,266,0 +170739022246,266,0 +170739022294,266,0 +170739022344,266,0 +170739022392,265,0 +170739022440,266,0 +170739022488,266,0 +170739022536,266,0 +170739022584,265,0 +170739022632,266,0 +170739022680,266,0 +170739022728,266,0 +170739022776,265,0 +170739022825,266,0 +170739022875,266,0 +170739022923,266,0 +170739022972,266,0 +170739023020,266,0 +170739023068,265,0 +170739023116,265,0 +170739023165,266,0 +170739023215,266,0 +170739023263,266,0 +170739023311,266,0 +170739023359,266,0 +170739023407,266,0 +170739023455,265,0 +170739023503,266,0 +170739023552,266,0 +170739023600,266,0 +170739023648,265,0 +170739023696,265,0 +170739023746,266,0 +170739023794,266,0 +170739023841,265,0 +170739023891,266,0 +170739023939,265,0 +170739023987,266,0 +170739024036,266,0 +170739024084,266,0 +170739024134,265,0 +170739024182,266,0 +170739024230,266,0 +170739024278,266,0 +170739024327,266,0 +170739024377,265,0 +170739024426,265,0 +170739024474,265,0 +170739024522,266,0 +170739024570,266,0 +170739024618,266,0 +170739024666,266,0 +170739024714,266,0 +170739024762,265,0 +170739024810,266,0 +170739024858,266,0 +170739024906,265,0 +170739024954,265,0 +170739025002,265,0 +170739025051,265,0 +170739025101,266,0 +170739025150,266,0 +170739025198,265,0 +170739025246,266,0 +170739025296,266,0 +170739025344,266,0 +170739025392,266,0 +170739025441,266,0 +170739025491,266,0 +170739025539,265,0 +170739025588,266,0 +170739025636,266,0 +170739025684,265,0 +170739025732,265,0 +170739025782,265,0 +170739025830,266,0 +170739025879,266,0 +170739025927,266,0 +170739025975,266,0 +170739026023,265,0 +170739026072,266,0 +170739026120,265,0 +170739026168,265,0 +170739026216,266,0 +170739026264,266,0 +170739026314,266,0 +170739026362,265,0 +170739026410,266,0 +170739026458,266,0 +170739026506,266,0 +170739026554,265,0 +170739026601,265,0 +170739026649,265,0 +170739026697,265,0 +170739026747,266,0 +170739026795,265,0 +170739026843,266,0 +170739026891,266,0 +170739026939,266,0 +170739026987,266,0 +170739027035,266,0 +170739027083,266,0 +170739027132,265,0 +170739027180,265,0 +170739027228,265,0 +170739027276,266,0 +170739027324,265,0 +170739027372,266,0 +170739027420,266,0 +170739027468,266,0 +170739027516,265,0 +170739027564,265,0 +170739027613,266,0 +170739027661,265,0 +170739027711,265,0 +170739027761,265,0 +170739027808,266,0 +170739027858,266,0 +170739027907,266,0 +170739027957,266,0 +170739028005,265,0 +170739028053,265,0 +170739028102,265,0 +170739028150,266,0 +170739028198,265,0 +170739028246,265,0 +170739028294,266,0 +170739028342,266,0 +170739028390,266,0 +170739028438,266,0 +170739028486,266,0 +170739028536,266,0 +170739028585,265,0 +170739028633,266,0 +170739028683,266,0 +170739028731,265,0 +170739028779,266,0 +170739028828,266,0 +170739028876,266,0 +170739028926,265,0 +170739028975,265,0 +170739029025,265,0 +170739029073,266,0 +170739029121,266,0 +170739029169,265,0 +170739029217,265,0 +170739029265,266,0 +170739029314,266,0 +170739029362,266,0 +170739029410,266,0 +170739029458,265,0 +170739029508,265,0 +170739029557,265,0 +170739029607,266,0 +170739029655,265,0 +170739029703,266,0 +170739029752,266,0 +170739029800,265,0 +170739029848,265,0 +170739029896,265,0 +170739029945,265,0 +170739029993,266,0 +170739030041,266,0 +170739030089,266,0 +170739030137,265,0 +170739030185,265,0 +170739030233,265,0 +170739030281,265,0 +170739030329,266,0 +170739030378,266,0 +170739030426,265,0 +170739030474,266,0 +170739030522,266,0 +170739030570,265,0 +170739030620,265,0 +170739030669,265,0 +170739030717,266,0 +170739030765,266,0 +170739030815,265,0 +170739030863,266,0 +170739030911,265,0 +170739030959,266,0 +170739031008,266,0 +170739031058,265,0 +170739031107,266,0 +170739031155,265,0 +170739031205,266,0 +170739031253,266,0 +170739031302,265,0 +170739031350,265,0 +170739031398,265,0 +170739031446,265,0 +170739031496,265,0 +170739031545,265,0 +170739031593,266,0 +170739031643,266,0 +170739031691,266,0 +170739031739,265,0 +170739031787,265,0 +170739031835,266,0 +170739031883,266,0 +170739031932,266,0 +170739031982,266,0 +170739032030,265,0 +170739032079,266,0 +170739032127,265,0 +170739032175,266,0 +170739032225,265,0 +170739032273,266,0 +170739032320,266,0 +170739032368,265,0 +170739032416,265,0 +170739032464,266,0 +170739032514,266,0 +170739032562,266,0 +170739032611,265,0 +170739032661,265,0 +170739032709,265,0 +170739032758,266,0 +170739032806,266,0 +170739032856,266,0 +170739032904,266,0 +170739032952,265,0 +170739033000,266,0 +170739033049,265,0 +170739033097,266,0 +170739033145,265,0 +170739033193,265,0 +170739033243,265,0 +170739033292,266,0 +170739033340,266,0 +170739033390,266,0 +170739033438,265,0 +170739033485,266,0 +170739033533,266,0 +170739033581,265,0 +170739033629,266,0 +170739033677,266,0 +170739033725,266,0 +170739033773,265,0 +170739033822,266,0 +170739033870,266,0 +170739033920,266,0 +170739033969,265,0 +170739034019,265,0 +170739034067,266,0 +170739034115,266,0 +170739034163,266,0 +170739034212,266,0 +170739034260,266,0 +170739034308,266,0 +170739034356,266,0 +170739034404,265,0 +170739034454,265,0 +170739034502,265,0 +170739034551,266,0 +170739034599,266,0 +170739034649,266,0 +170739034697,265,0 +170739034745,266,0 +170739034793,265,0 +170739034841,266,0 +170739034890,266,0 +170739034938,265,0 +170739034986,265,0 +170739035036,265,0 +170739035085,266,0 +170739035135,266,0 +170739035183,266,0 +170739035231,266,0 +170739035279,266,0 +170739035326,265,0 +170739035374,266,0 +170739035422,266,0 +170739035470,266,0 +170739035518,266,0 +170739035567,266,0 +170739035615,265,0 +170739035663,266,0 +170739035711,266,0 +170739035759,266,0 +170739035808,265,0 +170739035856,266,0 +170739035906,266,0 +170739035953,266,0 +170739036001,265,0 +170739036049,265,0 +170739036097,266,0 +170739036145,266,0 +170739036193,266,0 +170739036241,265,0 +170739036289,265,0 +170739036337,265,0 +170739036384,265,0 +170739036432,265,0 +170739036480,265,0 +170739036528,266,0 +170739036576,266,0 +170739036624,266,0 +170739036672,266,0 +170739036719,266,0 +170739036767,266,0 +170739036815,266,0 +170739036865,266,0 +170739036913,266,0 +170739036961,266,0 +170739037010,266,0 +170739037060,265,0 +170739037109,266,0 +170739037157,266,0 +170739037205,266,0 +170739037253,265,0 +170739037303,265,0 +170739037350,265,0 +170739037398,266,0 +170739037446,266,0 +170739037496,265,0 +170739037544,266,0 +170739037592,265,0 +170739037640,265,0 +170739037688,265,0 +170739037737,265,0 +170739037787,266,0 +170739037835,266,0 +170739037883,266,0 +170739037932,266,0 +170739037980,265,0 +170739038030,265,0 +170739038078,265,0 +170739038126,266,0 +170739038175,265,0 +170739038225,266,0 +170739038273,265,0 +170739038321,265,0 +170739038369,265,0 +170739038417,266,0 +170739038466,265,0 +170739038514,265,0 +170739038562,265,0 +170739038610,266,0 +170739038658,266,0 +170739038708,266,0 +170739038757,265,0 +170739038807,266,0 +170739038855,266,0 +170739038903,265,0 +170739038951,265,0 +170739038999,265,0 +170739039047,266,0 +170739039095,266,0 +170739039143,266,0 +170739039192,265,0 +170739039242,266,0 +170739039290,265,0 +170739039337,266,0 +170739039385,265,0 +170739039433,266,0 +170739039481,265,0 +170739039531,266,0 +170739039579,265,0 +170739039627,265,0 +170739039676,265,0 +170739039726,266,0 +170739039775,265,0 +170739039825,265,0 +170739039873,266,0 +170739039922,265,0 +170739039972,265,0 +170739040020,265,0 +170739040069,266,0 +170739040117,266,0 +170739040167,265,0 +170739040215,265,0 +170739040264,266,0 +170739040312,265,0 +170739040362,266,0 +170739040410,266,0 +170739040458,266,0 +170739040506,265,0 +170739040554,266,0 +170739040603,266,0 +170739040651,265,0 +170739040701,265,0 +170739040749,265,0 +170739040798,265,0 +170739040846,265,0 +170739040894,266,0 +170739040944,265,0 +170739040993,266,0 +170739041041,266,0 +170739041089,266,0 +170739041139,265,0 +170739041187,265,0 +170739041235,265,0 +170739041283,266,0 +170739041332,266,0 +170739041382,266,0 +170739041431,265,0 +170739041479,265,0 +170739041527,266,0 +170739041576,265,0 +170739041624,266,0 +170739041672,265,0 +170739041722,265,0 +170739041770,265,0 +170739041818,266,0 +170739041866,266,0 +170739041914,265,0 +170739041963,265,0 +170739042013,265,0 +170739042062,265,0 +170739042110,266,0 +170739042158,266,0 +170739042208,265,0 +170739042257,266,0 +170739042305,265,0 +170739042355,265,0 +170739042403,266,0 +170739042451,265,0 +170739042499,265,0 +170739042547,266,0 +170739042595,266,0 +170739042643,266,0 +170739042692,266,0 +170739042740,266,0 +170739042788,265,0 +170739042838,266,0 +170739042887,266,0 +170739042935,266,0 +170739042985,266,0 +170739043034,266,0 +170739043084,265,0 +170739043132,265,0 +170739043180,265,0 +170739043229,266,0 +170739043277,266,0 +170739043325,266,0 +170739043373,266,0 +170739043421,266,0 +170739043471,266,0 +170739043520,266,0 +170739043568,265,0 +170739043616,266,0 +170739043665,265,0 +170739043713,265,0 +170739043761,266,0 +170739043811,266,0 +170739043859,266,0 +170739043907,266,0 +170739043955,266,0 +170739044003,265,0 +170739044051,265,0 +170739044100,266,0 +170739044149,266,0 +170739044197,266,0 +170739044245,266,0 +170739044295,266,0 +170739044344,266,0 +170739044392,266,0 +170739044440,266,0 +170739044488,266,0 +170739044538,266,0 +170739044586,265,0 +170739044634,266,0 +170739044683,266,0 +170739044731,265,0 +170739044781,265,0 +170739044830,266,0 +170739044880,266,0 +170739044928,266,0 +170739044977,266,0 +170739045027,266,0 +170739045075,266,0 +170739045123,266,0 +170739045172,266,0 +170739045220,265,0 +170739045270,265,0 +170739045318,266,0 +170739045366,266,0 +170739045413,266,0 +170739045461,266,0 +170739045511,266,0 +170739045559,266,0 +170739045607,265,0 +170739045655,266,0 +170739045703,265,0 +170739045752,265,0 +170739045800,265,0 +170739045848,266,0 +170739045896,265,0 +170739045946,265,0 +170739045994,266,0 +170739046042,266,0 +170739046090,266,0 +170739046138,265,0 +170739046187,266,0 +170739046236,265,0 +170739046284,265,0 +170739046332,266,0 +170739046382,266,0 +170739046430,266,0 +170739046480,266,0 +170739046527,266,0 +170739046577,266,0 +170739046626,266,0 +170739046674,266,0 +170739046722,266,0 +170739046772,265,0 +170739046820,265,0 +170739046868,266,0 +170739046916,265,0 +170739046964,266,0 +170739047012,265,0 +170739047061,266,0 +170739047109,266,0 +170739047157,265,0 +170739047207,266,0 +170739047255,266,0 +170739047303,266,0 +170739047352,266,0 +170739047400,266,0 +170739047450,266,0 +170739047498,266,0 +170739047546,266,0 +170739047594,266,0 +170739047642,266,0 +170739047689,266,0 +170739047739,266,0 +170739047789,266,0 +170739047837,266,0 +170739047884,266,0 +170739047934,266,0 +170739047983,266,0 +170739048031,266,0 +170739048081,266,0 +170739048130,265,0 +170739048178,266,0 +170739048226,266,0 +170739048276,266,0 +170739048324,266,0 +170739048372,266,0 +170739048420,266,0 +170739048469,266,0 +170739048517,266,0 +170739048565,265,0 +170739048615,265,0 +170739048664,266,0 +170739048712,265,0 +170739048760,266,0 +170739048808,265,0 +170739048858,266,0 +170739048906,265,0 +170739048954,266,0 +170739049003,265,0 +170739049053,265,0 +170739049101,266,0 +170739049149,266,0 +170739049197,265,0 +170739049245,265,0 +170739049294,265,0 +170739049342,265,0 +170739049392,265,0 +170739049439,265,0 +170739049487,265,0 +170739049535,265,0 +170739049585,265,0 +170739049634,265,0 +170739049682,264,0 +170739049730,265,0 +170739049778,265,0 +170739049826,265,0 +170739049874,265,0 +170739049922,264,0 +170739049970,265,0 +170739050019,265,0 +170739050067,265,0 +170739050117,265,0 +170739050165,265,0 +170739050214,265,0 +170739050264,265,0 +170739050312,265,0 +170739050361,265,0 +170739050409,265,0 +170739050457,265,0 +170739050507,265,0 +170739050556,265,0 +170739050604,265,0 +170739050652,265,0 +170739050700,265,0 +170739050748,265,0 +170739050796,265,0 +170739050845,265,0 +170739050893,265,0 +170739050941,265,0 +170739050990,265,0 +170739051038,265,0 +170739051088,265,0 +170739051136,265,0 +170739051185,265,0 +170739051233,265,0 +170739051281,265,0 +170739051331,265,0 +170739051379,265,0 +170739051427,265,0 +170739051474,265,0 +170739051522,265,0 +170739051572,265,0 +170739051620,265,0 +170739051668,265,0 +170739051716,265,0 +170739051764,265,0 +170739051811,265,0 +170739051859,265,0 +170739051907,265,0 +170739051955,265,0 +170739052003,265,0 +170739052051,265,0 +170739052099,265,0 +170739052147,265,0 +170739052195,265,0 +170739052242,265,0 +170739052290,265,0 +170739052338,265,0 +170739052388,265,0 +170739052436,265,0 +170739052483,265,0 +170739052531,265,0 +170739052579,265,0 +170739052627,265,0 +170739052675,265,0 +170739052723,265,0 +170739052771,265,0 +170739052821,265,0 +170739052868,265,0 +170739052916,265,0 +170739052966,265,0 +170739053014,265,0 +170739053063,265,0 +170739053111,265,0 +170739053159,265,0 +170739053207,265,0 +170739053255,265,0 +170739053303,265,0 +170739053351,265,0 +170739053401,264,0 +170739053450,265,0 +170739053498,265,0 +170739053546,264,0 +170739053594,264,0 +170739053642,264,0 +170739053690,265,0 +170739053739,265,0 +170739053789,265,0 +170739053839,266,0 +170739053887,265,0 +170739053935,267,0 +170739053983,267,0 +170739054031,267,0 +170739054079,266,0 +170739054126,266,0 +170739054174,266,0 +170739054222,266,0 +170739054270,266,0 +170739054318,266,0 +170739054366,266,0 +170739054414,265,0 +170739054462,265,0 +170739054512,266,0 +170739054561,265,0 +170739054609,266,0 +170739054657,266,0 +170739054705,266,0 +170739054753,266,0 +170739054803,266,0 +170739054852,266,0 +170739054902,266,0 +170739054950,265,0 +170739054999,266,0 +170739055047,266,0 +170739055095,265,0 +170739055143,265,0 +170739055193,266,0 +170739055241,265,0 +170739055289,265,0 +170739055338,266,0 +170739055388,266,0 +170739055437,265,0 +170739055485,265,0 +170739055535,266,0 +170739055583,266,0 +170739055632,266,0 +170739055680,266,0 +170739055730,266,0 +170739055778,265,0 +170739055827,266,0 +170739055875,266,0 +170739055923,266,0 +170739055971,266,0 +170739056020,266,0 +170739056068,266,0 +170739056118,266,0 +170739056166,266,0 +170739056215,266,0 +170739056263,266,0 +170739056311,266,0 +170739056361,266,0 +170739056409,266,0 +170739056458,266,0 +170739056508,266,0 +170739056557,266,0 +170739056605,266,0 +170739056653,266,0 +170739056703,266,0 +170739056751,266,0 +170739056799,266,0 +170739056847,266,0 +170739056895,266,0 +170739056943,267,0 +170739056991,266,0 +170739057039,267,0 +170739057087,267,0 +170739057136,266,0 +170739057184,266,0 +170739057232,266,0 +170739057280,266,0 +170739057329,266,0 +170739057377,266,0 +170739057427,266,0 +170739057476,266,0 +170739057524,267,0 +170739057572,266,0 +170739057622,266,0 +170739057670,266,0 +170739057718,266,0 +170739057767,267,0 +170739057815,266,0 +170739057863,267,0 +170739057913,266,0 +170739057961,266,0 +170739058009,266,0 +170739058057,266,0 +170739058106,266,0 +170739058154,266,0 +170739058202,266,0 +170739058250,266,0 +170739058300,266,0 +170739058349,266,0 +170739058399,266,0 +170739058447,266,0 +170739058495,266,0 +170739058544,266,0 +170739058592,266,0 +170739058642,266,0 +170739058690,266,0 +170739058738,266,0 +170739058787,266,0 +170739058835,266,0 +170739058883,266,0 +170739058933,266,0 +170739058981,266,0 +170739059029,266,0 +170739059078,266,0 +170739059126,266,0 +170739059174,266,0 +170739059222,267,0 +170739059269,266,0 +170739059319,266,0 +170739059368,266,0 +170739059416,267,0 +170739059466,267,0 +170739059514,267,0 +170739059561,266,0 +170739059609,266,0 +170739059657,267,0 +170739059707,267,0 +170739059756,266,0 +170739059804,266,0 +170739059852,266,0 +170739059900,266,0 +170739059949,266,0 +170739059997,266,0 +170739060045,266,0 +170739060093,266,0 +170739060141,267,0 +170739060190,266,0 +170739060240,266,0 +170739060289,266,0 +170739060337,267,0 +170739060387,267,0 +170739060435,267,0 +170739060483,267,0 +170739060531,267,0 +170739060580,267,0 +170739060630,267,0 +170739060678,267,0 +170739060726,266,0 +170739060774,267,0 +170739060821,266,0 +170739060869,267,0 +170739060917,267,0 +170739060965,267,0 +170739061015,267,0 +170739061063,267,0 +170739061110,267,0 +170739061158,267,0 +170739061206,267,0 +170739061254,267,0 +170739061302,266,0 +170739061350,267,0 +170739061399,267,0 +170739061447,267,0 +170739061495,266,0 +170739061545,267,0 +170739061593,267,0 +170739061642,267,0 +170739061690,267,0 +170739061738,267,0 +170739061786,267,0 +170739061835,266,0 +170739061883,267,0 +170739061931,267,0 +170739061979,267,0 +170739062026,267,0 +170739062074,266,0 +170739062122,267,0 +170739062170,267,0 +170739062220,267,0 +170739062269,267,0 +170739062317,267,0 +170739062365,267,0 +170739062413,267,0 +170739062461,267,0 +170739062509,267,0 +170739062556,267,0 +170739062604,267,0 +170739062654,267,0 +170739062702,267,0 +170739062749,266,0 +170739062797,267,0 +170739062845,267,0 +170739062893,267,0 +170739062941,267,0 +170739062989,267,0 +170739063037,267,0 +170739063085,267,0 +170739063132,267,0 +170739063180,267,0 +170739063228,267,0 +170739063276,267,0 +170739063324,267,0 +170739063373,267,0 +170739063421,267,0 +170739063469,267,0 +170739063517,266,0 +170739063565,267,0 +170739063613,267,0 +170739063661,267,0 +170739063709,267,0 +170739063757,266,0 +170739063804,267,0 +170739063852,267,0 +170739063900,267,0 +170739063950,267,0 +170739063998,267,0 +170739064046,267,0 +170739064094,267,0 +170739064143,267,0 +170739064191,267,0 +170739064241,267,0 +170739064289,267,0 +170739064337,267,0 +170739064384,267,0 +170739064432,267,0 +170739064480,267,0 +170739064528,267,0 +170739064576,267,0 +170739064624,267,0 +170739064672,267,0 +170739064719,267,0 +170739064767,268,0 +170739064815,268,0 +170739064863,267,0 +170739064911,267,0 +170739064959,267,0 +170739065007,267,0 +170739065055,267,0 +170739065103,267,0 +170739065153,267,0 +170739065202,267,0 +170739065250,267,0 +170739065300,267,0 +170739065349,267,0 +170739065399,267,0 +170739065447,267,0 +170739065495,267,0 +170739065543,267,0 +170739065591,267,0 +170739065639,267,0 +170739065688,267,0 +170739065736,267,0 +170739065784,266,0 +170739065834,267,0 +170739065882,267,0 +170739065930,267,0 +170739065979,267,0 +170739066027,267,0 +170739066075,267,0 +170739066124,267,0 +170739066174,267,0 +170739066221,267,0 +170739066269,267,0 +170739066317,267,0 +170739066365,267,0 +170739066413,267,0 +170739066461,267,0 +170739066510,267,0 +170739066560,267,0 +170739066608,268,0 +170739066656,267,0 +170739066704,267,0 +170739066753,267,0 +170739066801,267,0 +170739066849,267,0 +170739066897,267,0 +170739066945,267,0 +170739066993,267,0 +170739067040,267,0 +170739067088,267,0 +170739067136,267,0 +170739067184,267,0 +170739067232,267,0 +170739067280,267,0 +170739067328,267,0 +170739067376,267,0 +170739067423,267,0 +170739067471,267,0 +170739067519,267,0 +170739067567,267,0 +170739067615,266,0 +170739067665,267,0 +170739067712,267,0 +170739067760,267,0 +170739067808,266,0 +170739067856,267,0 +170739067906,267,0 +170739067954,267,0 +170739068003,266,0 +170739068051,267,0 +170739068101,267,0 +170739068149,267,0 +170739068196,266,0 +170739068244,267,0 +170739068294,267,0 +170739068342,267,0 +170739068391,267,0 +170739068439,267,0 +170739068489,267,0 +170739068538,267,0 +170739068586,267,0 +170739068636,267,0 +170739068684,267,0 +170739068733,267,0 +170739068783,267,0 +170739068831,267,0 +170739068879,267,0 +170739068928,267,0 +170739068976,267,0 +170739069025,267,0 +170739069073,267,0 +170739069123,267,0 +170739069171,267,0 +170739069219,267,0 +170739069268,266,0 +170739069316,267,0 +170739069364,267,0 +170739069412,267,0 +170739069460,267,0 +170739069508,266,0 +170739069556,267,0 +170739069604,267,0 +170739069652,267,0 +170739069701,267,0 +170739069749,267,0 +170739069797,267,0 +170739069845,267,0 +170739069895,267,0 +170739069943,267,0 +170739069991,267,0 +170739070038,267,0 +170739070086,267,0 +170739070134,267,0 +170739070182,267,0 +170739070232,267,0 +170739070280,267,0 +170739070328,267,0 +170739070376,267,0 +170739070425,267,0 +170739070473,267,0 +170739070523,267,0 +170739070571,268,0 +170739070620,268,0 +170739070668,267,0 +170739070718,267,0 +170739070766,267,0 +170739070814,267,0 +170739070862,267,0 +170739070909,267,0 +170739070957,267,0 +170739071005,267,0 +170739071053,267,0 +170739071103,267,0 +170739071151,267,0 +170739071199,267,0 +170739071248,267,0 +170739071296,267,0 +170739071346,267,0 +170739071394,267,0 +170739071442,267,0 +170739071491,267,0 +170739071541,268,0 +170739071589,267,0 +170739071637,267,0 +170739071686,267,0 +170739071734,267,0 +170739071782,267,0 +170739071830,267,0 +170739071880,267,0 +170739071929,267,0 +170739071977,267,0 +170739072025,267,0 +170739072074,267,0 +170739072122,267,0 +170739072172,267,0 +170739072220,267,0 +170739072268,267,0 +170739072317,267,0 +170739072365,267,0 +170739072413,267,0 +170739072463,267,0 +170739072511,267,0 +170739072559,267,0 +170739072607,267,0 +170739072656,267,0 +170739072706,267,0 +170739072755,267,0 +170739072805,267,0 +170739072853,267,0 +170739072901,267,0 +170739072950,267,0 +170739072998,267,0 +170739073046,267,0 +170739073094,267,0 +170739073143,267,0 +170739073191,267,0 +170739073239,267,0 +170739073287,267,0 +170739073335,267,0 +170739073383,267,0 +170739073431,267,0 +170739073479,267,0 +170739073529,267,0 +170739073578,267,0 +170739073626,267,0 +170739073674,267,0 +170739073722,267,0 +170739073770,267,0 +170739073818,267,0 +170739073866,267,0 +170739073915,267,0 +170739073963,267,0 +170739074011,267,0 +170739074059,267,0 +170739074109,267,0 +170739074157,267,0 +170739074206,267,0 +170739074254,267,0 +170739074302,267,0 +170739074351,267,0 +170739074401,267,0 +170739074451,267,0 +170739074498,267,0 +170739074546,267,0 +170739074594,267,0 +170739074642,266,0 +170739074690,267,0 +170739074738,267,0 +170739074786,267,0 +170739074834,267,0 +170739074882,267,0 +170739074932,267,0 +170739074980,267,0 +170739075028,267,0 +170739075076,267,0 +170739075125,267,0 +170739075175,268,0 +170739075224,267,0 +170739075272,267,0 +170739075320,267,0 +170739075368,267,0 +170739075418,267,0 +170739075465,267,0 +170739075515,267,0 +170739075565,267,0 +170739075612,267,0 +170739075660,267,0 +170739075710,266,0 +170739075758,267,0 +170739075807,267,0 +170739075855,267,0 +170739075905,266,0 +170739075953,267,0 +170739076002,267,0 +170739076052,267,0 +170739076101,266,0 +170739076151,267,0 +170739076200,266,0 +170739076248,267,0 +170739076296,267,0 +170739076346,267,0 +170739076394,267,0 +170739076442,267,0 +170739076491,267,0 +170739076539,267,0 +170739076589,267,0 +170739076638,267,0 +170739076686,267,0 +170739076734,267,0 +170739076783,267,0 +170739076831,267,0 +170739076879,267,0 +170739076927,267,0 +170739076975,267,0 +170739077025,267,0 +170739077074,267,0 +170739077122,267,0 +170739077170,267,0 +170739077220,267,0 +170739077268,267,0 +170739077317,267,0 +170739077367,267,0 +170739077415,267,0 +170739077463,267,0 +170739077512,266,0 +170739077560,267,0 +170739077608,267,0 +170739077656,267,0 +170739077704,267,0 +170739077752,266,0 +170739077801,267,0 +170739077849,266,0 +170739077899,267,0 +170739077947,267,0 +170739077995,267,0 +170739078044,267,0 +170739078092,267,0 +170739078141,267,0 +170739078191,267,0 +170739078240,267,0 +170739078288,267,0 +170739078338,267,0 +170739078386,267,0 +170739078434,267,0 +170739078483,267,0 +170739078531,267,0 +170739078579,267,0 +170739078627,267,0 +170739078675,267,0 +170739078723,267,0 +170739078773,267,0 +170739078821,267,0 +170739078869,267,0 +170739078917,267,0 +170739078964,267,0 +170739079012,267,0 +170739079062,267,0 +170739079110,267,0 +170739079158,267,0 +170739079207,267,0 +170739079257,267,0 +170739079305,267,0 +170739079354,267,0 +170739079402,267,0 +170739079450,267,0 +170739079498,267,0 +170739079546,267,0 +170739079594,267,0 +170739079644,267,0 +170739079693,267,0 +170739079741,267,0 +170739079789,267,0 +170739079839,267,0 +170739079887,267,0 +170739079936,267,0 +170739079984,267,0 +170739080032,267,0 +170739080080,267,0 +170739080128,267,0 +170739080176,267,0 +170739080224,267,0 +170739080272,267,0 +170739080319,267,0 +170739080367,267,0 +170739080415,267,0 +170739080463,267,0 +170739080513,267,0 +170739080562,267,0 +170739080610,267,0 +170739080658,267,0 +170739080708,267,0 +170739080757,267,0 +170739080807,267,0 +170739080856,267,0 +170739080904,267,0 +170739080952,267,0 +170739081002,267,0 +170739081050,267,0 +170739081099,267,0 +170739081149,267,0 +170739081197,267,0 +170739081246,267,0 +170739081294,267,0 +170739081342,267,0 +170739081390,267,0 +170739081438,267,0 +170739081486,267,0 +170739081535,267,0 +170739081583,266,0 +170739081633,267,0 +170739081681,267,0 +170739081730,267,0 +170739081778,267,0 +170739081826,267,0 +170739081874,267,0 +170739081922,267,0 +170739081970,267,0 +170739082018,267,0 +170739082067,267,0 +170739082115,267,0 +170739082165,267,0 +170739082213,267,0 +170739082262,267,0 +170739082312,267,0 +170739082361,267,0 +170739082409,267,0 +170739082459,267,0 +170739082507,267,0 +170739082555,266,0 +170739082604,267,0 +170739082652,267,0 +170739082702,267,0 +170739082750,267,0 +170739082798,267,0 +170739082846,267,0 +170739082894,267,0 +170739082943,267,0 +170739082991,267,0 +170739083041,267,0 +170739083089,267,0 +170739083138,268,0 +170739083186,267,0 +170739083234,267,0 +170739083282,267,0 +170739083332,267,0 +170739083380,267,0 +170739083428,267,0 +170739083477,267,0 +170739083527,267,0 +170739083576,267,0 +170739083624,267,0 +170739083672,267,0 +170739083722,267,0 +170739083770,267,0 +170739083818,266,0 +170739083865,267,0 +170739083915,267,0 +170739083963,267,0 +170739084011,267,0 +170739084059,267,0 +170739084106,268,0 +170739084154,267,0 +170739084202,267,0 +170739084250,267,0 +170739084298,267,0 +170739084346,267,0 +170739084395,267,0 +170739084443,267,0 +170739084493,267,0 +170739084541,267,0 +170739084588,266,0 +170739084638,267,0 +170739084686,267,0 +170739084734,267,0 +170739084782,267,0 +170739084829,267,0 +170739084877,267,0 +170739084925,267,0 +170739084973,267,0 +170739085021,267,0 +170739085069,267,0 +170739085117,266,0 +170739085165,267,0 +170739085212,267,0 +170739085260,268,0 +170739085310,267,0 +170739085358,267,0 +170739085405,267,0 +170739085453,267,0 +170739085501,267,0 +170739085551,267,0 +170739085598,267,0 +170739085648,267,0 +170739085696,267,0 +170739085744,267,0 +170739085792,267,0 +170739085840,267,0 +170739085887,267,0 +170739085935,267,0 +170739085983,267,0 +170739086031,267,0 +170739086079,267,0 +170739086127,267,0 +170739086175,267,0 +170739086223,267,0 +170739086270,267,0 +170739086320,267,0 +170739086368,267,0 +170739086416,267,0 +170739086464,267,0 +170739086512,267,0 +170739086560,267,0 +170739086608,267,0 +170739086656,267,0 +170739086705,267,0 +170739086753,267,0 +170739086801,267,0 +170739086849,267,0 +170739086897,267,0 +170739086947,267,0 +170739086995,267,0 +170739087044,267,0 +170739087092,267,0 +170739087142,267,0 +170739087191,267,0 +170739087241,267,0 +170739087289,267,0 +170739087337,267,0 +170739087385,267,0 +170739087433,267,0 +170739087481,267,0 +170739087530,267,0 +170739087578,267,0 +170739087626,267,0 +170739087674,267,0 +170739087724,266,0 +170739087772,267,0 +170739087820,267,0 +170739087869,267,0 +170739087917,267,0 +170739087967,267,0 +170739088016,267,0 +170739088064,267,0 +170739088114,267,0 +170739088163,267,0 +170739088213,267,0 +170739088261,267,0 +170739088309,267,0 +170739088357,267,0 +170739088405,267,0 +170739088453,267,0 +170739088500,267,0 +170739088548,267,0 +170739088598,267,0 +170739088646,267,0 +170739088695,267,0 +170739088743,267,0 +170739088793,267,0 +170739088842,268,0 +170739088892,267,0 +170739088940,267,0 +170739088988,267,0 +170739089036,267,0 +170739089084,267,0 +170739089132,267,0 +170739089180,267,0 +170739089227,267,0 +170739089275,267,0 +170739089325,267,0 +170739089374,267,0 +170739089424,267,0 +170739089472,267,0 +170739089520,267,0 +170739089569,267,0 +170739089617,267,0 +170739089665,267,0 +170739089715,267,0 +170739089764,267,0 +170739089812,267,0 +170739089860,267,0 +170739089910,267,0 +170739089959,267,0 +170739090007,267,0 +170739090055,267,0 +170739090103,267,0 +170739090151,267,0 +170739090201,267,0 +170739090249,267,0 +170739090298,267,0 +170739090346,267,0 +170739090395,267,0 +170739090443,267,0 +170739090491,267,0 +170739090539,267,0 +170739090587,267,0 +170739090635,267,0 +170739090683,267,0 +170739090731,267,0 +170739090779,267,0 +170739090828,267,0 +170739090876,267,0 +170739090924,267,0 +170739090972,267,0 +170739091019,267,0 +170739091067,267,0 +170739091115,267,0 +170739091163,267,0 +170739091211,267,0 +170739091259,266,0 +170739091307,267,0 +170739091357,267,0 +170739091404,267,0 +170739091452,267,0 +170739091502,267,0 +170739091550,267,0 +170739091598,267,0 +170739091647,267,0 +170739091695,267,0 +170739091743,267,0 +170739091791,267,0 +170739091841,267,0 +170739091889,267,0 +170739091938,267,0 +170739091986,267,0 +170739092034,267,0 +170739092082,267,0 +170739092130,267,0 +170739092179,267,0 +170739092227,267,0 +170739092275,267,0 +170739092323,267,0 +170739092373,267,0 +170739092421,267,0 +170739092470,267,0 +170739092518,267,0 +170739092566,267,0 +170739092614,267,0 +170739092662,267,0 +170739092710,267,0 +170739092758,266,0 +170739092807,267,0 +170739092855,267,0 +170739092903,267,0 +170739092951,267,0 +170739092999,267,0 +170739093049,267,0 +170739093097,267,0 +170739093145,267,0 +170739093193,267,0 +170739093241,266,0 +170739093289,267,0 +170739093336,267,0 +170739093384,267,0 +170739093432,267,0 +170739093480,267,0 +170739093528,267,0 +170739093576,266,0 +170739093624,267,0 +170739093672,267,0 +170739093719,267,0 +170739093767,267,0 +170739093815,267,0 +170739093863,267,0 +170739093913,266,0 +170739093960,267,0 +170739094008,267,0 +170739094056,267,0 +170739094104,267,0 +170739094152,267,0 +170739094201,267,0 +170739094249,266,0 +170739094299,267,0 +170739094348,267,0 +170739094396,267,0 +170739094445,267,0 +170739094493,266,0 +170739094541,267,0 +170739094589,267,0 +170739094637,267,0 +170739094687,267,0 +170739094734,266,0 +170739094782,266,0 +170739094830,267,0 +170739094878,267,0 +170739094926,267,0 +170739094974,267,0 +170739095022,267,0 +170739095070,267,0 +170739095118,267,0 +170739095167,267,0 +170739095215,267,0 +170739095263,267,0 +170739095311,267,0 +170739095359,267,0 +170739095406,267,0 +170739095454,267,0 +170739095502,267,0 +170739095550,267,0 +170739095598,267,0 +170739095647,267,0 +170739095695,267,0 +170739095743,267,0 +170739095791,267,0 +170739095839,267,0 +170739095887,267,0 +170739095935,267,0 +170739095983,267,0 +170739096031,267,0 +170739096078,267,0 +170739096126,267,0 +170739096174,267,0 +170739096222,267,0 +170739096271,267,0 +170739096319,267,0 +170739096367,267,0 +170739096415,267,0 +170739096463,267,0 +170739096511,267,0 +170739096559,267,0 +170739096607,267,0 +170739096655,267,0 +170739096705,267,0 +170739096753,267,0 +170739096800,267,0 +170739096848,267,0 +170739096898,267,0 +170739096947,267,0 +170739096995,267,0 +170739097043,267,0 +170739097091,267,0 +170739097141,267,0 +170739097189,267,0 +170739097237,267,0 +170739097285,268,0 +170739097333,267,0 +170739097381,267,0 +170739097429,267,0 +170739097477,267,0 +170739097525,267,0 +170739097574,267,0 +170739097622,267,0 +170739097671,267,0 +170739097719,267,0 +170739097767,267,0 +170739097815,267,0 +170739097863,267,0 +170739097911,267,0 +170739097959,266,0 +170739098007,267,0 +170739098055,267,0 +170739098103,267,0 +170739098150,267,0 +170739098198,267,0 +170739098246,267,0 +170739098294,267,0 +170739098342,267,0 +170739098392,267,0 +170739098441,267,0 +170739098489,266,0 +170739098537,267,0 +170739098585,267,0 +170739098635,267,0 +170739098684,267,0 +170739098732,267,0 +170739098782,267,0 +170739098830,267,0 +170739098878,267,0 +170739098926,267,0 +170739098974,267,0 +170739099021,267,0 +170739099069,267,0 +170739099117,267,0 +170739099167,266,0 +170739099215,267,0 +170739099264,267,0 +170739099312,267,0 +170739099362,267,0 +170739099410,267,0 +170739099458,267,0 +170739099506,267,0 +170739099555,267,0 +170739099603,267,0 +170739099651,267,0 +170739099701,267,0 +170739099749,267,0 +170739099798,267,0 +170739099846,267,0 +170739099894,267,0 +170739099942,267,0 +170739099990,267,0 +170739100038,267,0 +170739100088,267,0 +170739100136,266,0 +170739100185,267,0 +170739100233,267,0 +170739100281,267,0 +170739100330,267,0 +170739100378,267,0 +170739100426,266,0 +170739100474,267,0 +170739100524,267,0 +170739100572,267,0 +170739100620,266,0 +170739100668,267,0 +170739100717,267,0 +170739100767,267,0 +170739100815,267,0 +170739100862,267,0 +170739100910,267,0 +170739100958,266,0 +170739101008,266,0 +170739101057,267,0 +170739101107,267,0 +170739101155,267,0 +170739101203,267,0 +170739101253,266,0 +170739101301,267,0 +170739101350,266,0 +170739101398,267,0 +170739101448,267,0 +170739101496,267,0 +170739101545,266,0 +170739101595,267,0 +170739101643,266,0 +170739101690,267,0 +170739101738,267,0 +170739101788,267,0 +170739101836,267,0 +170739101884,267,0 +170739101933,266,0 +170739101981,267,0 +170739102031,266,0 +170739102079,266,0 +170739102127,266,0 +170739102175,267,0 +170739102223,266,0 +170739102271,267,0 +170739102320,266,0 +170739102370,266,0 +170739102419,267,0 +170739102469,266,0 +170739102517,267,0 +170739102565,267,0 +170739102613,266,0 +170739102662,267,0 +170739102710,267,0 +170739102758,267,0 +170739102806,266,0 +170739102856,266,0 +170739102904,267,0 +170739102953,266,0 +170739103003,266,0 +170739103051,267,0 +170739103100,266,0 +170739103148,267,0 +170739103196,266,0 +170739103244,266,0 +170739103292,266,0 +170739103340,266,0 +170739103388,266,0 +170739103436,267,0 +170739103484,267,0 +170739103532,267,0 +170739103581,267,0 +170739103629,267,0 +170739103677,266,0 +170739103725,267,0 +170739103775,266,0 +170739103823,267,0 +170739103872,266,0 +170739103920,266,0 +170739103970,266,0 +170739104018,267,0 +170739104066,266,0 +170739104115,266,0 +170739104165,267,0 +170739104213,266,0 +170739104261,267,0 +170739104310,267,0 +170739104358,266,0 +170739104407,266,0 +170739104455,266,0 +170739104503,266,0 +170739104553,267,0 +170739104601,266,0 +170739104649,267,0 +170739104698,267,0 +170739104746,267,0 +170739104794,267,0 +170739104842,267,0 +170739104890,266,0 +170739104938,266,0 +170739104986,267,0 +170739105036,266,0 +170739105085,266,0 +170739105133,266,0 +170739105183,266,0 +170739105231,266,0 +170739105279,267,0 +170739105328,266,0 +170739105378,267,0 +170739105426,266,0 +170739105474,266,0 +170739105522,267,0 +170739105571,267,0 +170739105619,266,0 +170739105669,266,0 +170739105717,266,0 +170739105764,267,0 +170739105814,266,0 +170739105862,267,0 +170739105910,267,0 +170739105959,266,0 +170739106009,267,0 +170739106057,266,0 +170739106105,266,0 +170739106153,266,0 +170739106201,267,0 +170739106249,266,0 +170739106297,266,0 +170739106345,267,0 +170739106394,266,0 +170739106444,267,0 +170739106492,266,0 +170739106540,266,0 +170739106588,267,0 +170739106636,267,0 +170739106684,267,0 +170739106732,267,0 +170739106779,267,0 +170739106827,266,0 +170739106875,267,0 +170739106925,267,0 +170739106973,267,0 +170739107021,266,0 +170739107069,266,0 +170739107118,266,0 +170739107166,267,0 +170739107214,266,0 +170739107262,267,0 +170739107312,266,0 +170739107360,267,0 +170739107407,267,0 +170739107457,267,0 +170739107507,266,0 +170739107554,267,0 +170739107604,266,0 +170739107652,267,0 +170739107700,267,0 +170739107748,267,0 +170739107796,267,0 +170739107844,266,0 +170739107893,267,0 +170739107943,267,0 +170739107992,267,0 +170739108040,267,0 +170739108090,267,0 +170739108138,266,0 +170739108186,267,0 +170739108234,267,0 +170739108282,267,0 +170739108331,266,0 +170739108381,266,0 +170739108429,267,0 +170739108478,266,0 +170739108528,266,0 +170739108576,266,0 +170739108624,266,0 +170739108673,266,0 +170739108721,266,0 +170739108769,267,0 +170739108817,266,0 +170739108865,267,0 +170739108914,266,0 +170739108962,267,0 +170739109010,267,0 +170739109060,267,0 +170739109109,266,0 +170739109159,266,0 +170739109207,267,0 +170739109255,266,0 +170739109303,266,0 +170739109351,266,0 +170739109400,266,0 +170739109448,266,0 +170739109498,266,0 +170739109546,266,0 +170739109594,266,0 +170739109642,267,0 +170739109690,267,0 +170739109738,266,0 +170739109786,266,0 +170739109833,267,0 +170739109883,266,0 +170739109931,266,0 +170739109979,267,0 +170739110027,266,0 +170739110076,266,0 +170739110124,267,0 +170739110174,267,0 +170739110223,267,0 +170739110273,267,0 +170739110321,266,0 +170739110369,266,0 +170739110417,266,0 +170739110465,267,0 +170739110513,267,0 +170739110561,266,0 +170739110609,267,0 +170739110657,266,0 +170739110705,267,0 +170739110754,266,0 +170739110802,267,0 +170739110852,266,0 +170739110900,267,0 +170739110948,267,0 +170739110996,266,0 +170739111044,267,0 +170739111091,266,0 +170739111139,267,0 +170739111187,267,0 +170739111235,267,0 +170739111283,267,0 +170739111333,266,0 +170739111381,267,0 +170739111429,267,0 +170739111478,267,0 +170739111528,266,0 +170739111576,266,0 +170739111625,267,0 +170739111675,266,0 +170739111723,266,0 +170739111772,266,0 +170739111820,266,0 +170739111868,266,0 +170739111916,266,0 +170739111964,267,0 +170739112012,266,0 +170739112060,266,0 +170739112110,267,0 +170739112158,267,0 +170739112206,266,0 +170739112253,266,0 +170739112301,267,0 +170739112351,267,0 +170739112399,267,0 +170739112448,266,0 +170739112496,266,0 +170739112544,266,0 +170739112592,266,0 +170739112642,267,0 +170739112690,267,0 +170739112738,266,0 +170739112786,267,0 +170739112834,267,0 +170739112883,267,0 +170739112931,267,0 +170739112981,266,0 +170739113029,266,0 +170739113078,267,0 +170739113126,267,0 +170739113174,267,0 +170739113222,267,0 +170739113270,266,0 +170739113318,267,0 +170739113366,266,0 +170739113414,266,0 +170739113462,267,0 +170739113511,266,0 +170739113559,267,0 +170739113609,266,0 +170739113657,266,0 +170739113706,266,0 +170739113754,267,0 +170739113802,266,0 +170739113850,266,0 +170739113900,266,0 +170739113948,267,0 +170739113997,266,0 +170739114046,266,0 +170739114096,267,0 +170739114144,266,0 +170739114192,266,0 +170739114241,266,0 +170739114291,267,0 +170739114339,266,0 +170739114387,267,0 +170739114435,267,0 +170739114484,267,0 +170739114534,267,0 +170739114582,267,0 +170739114630,266,0 +170739114678,267,0 +170739114726,267,0 +170739114775,266,0 +170739114825,266,0 +170739114873,266,0 +170739114922,266,0 +170739114970,267,0 +170739115018,266,0 +170739115066,267,0 +170739115115,266,0 +170739115163,267,0 +170739115213,266,0 +170739115261,267,0 +170739115309,266,0 +170739115357,267,0 +170739115404,266,0 +170739115452,266,0 +170739115500,266,0 +170739115550,266,0 +170739115599,266,0 +170739115647,266,0 +170739115695,266,0 +170739115743,267,0 +170739115791,267,0 +170739115839,267,0 +170739115887,266,0 +170739115935,266,0 +170739115983,266,0 +170739116030,266,0 +170739116078,267,0 +170739116126,267,0 +170739116174,267,0 +170739116222,267,0 +170739116270,267,0 +170739116318,266,0 +170739116366,267,0 +170739116414,266,0 +170739116461,266,0 +170739116511,267,0 +170739116560,266,0 +170739116610,267,0 +170739116658,267,0 +170739116705,266,0 +170739116753,267,0 +170739116801,267,0 +170739116849,267,0 +170739116897,267,0 +170739116945,266,0 +170739116993,267,0 +170739117043,266,0 +170739117090,266,0 +170739117140,266,0 +170739117189,267,0 +170739117237,266,0 +170739117285,266,0 +170739117335,266,0 +170739117384,267,0 +170739117432,267,0 +170739117480,267,0 +170739117528,266,0 +170739117576,266,0 +170739117624,266,0 +170739117672,266,0 +170739117722,266,0 +170739117771,266,0 +170739117819,267,0 +170739117869,267,0 +170739117918,266,0 +170739117966,266,0 +170739118014,267,0 +170739118062,266,0 +170739118110,266,0 +170739118158,267,0 +170739118206,267,0 +170739118254,267,0 +170739118302,266,0 +170739118350,266,0 +170739118398,266,0 +170739118446,266,0 +170739118494,266,0 +170739118541,266,0 +170739118589,267,0 +170739118639,266,0 +170739118687,266,0 +170739118735,266,0 +170739118783,266,0 +170739118831,267,0 +170739118881,267,0 +170739118929,266,0 +170739118977,267,0 +170739119025,266,0 +170739119074,266,0 +170739119122,266,0 +170739119170,266,0 +170739119218,267,0 +170739119266,266,0 +170739119315,267,0 +170739119363,267,0 +170739119411,266,0 +170739119459,266,0 +170739119507,267,0 +170739119555,267,0 +170739119603,267,0 +170739119652,266,0 +170739119701,266,0 +170739119749,267,0 +170739119797,267,0 +170739119845,267,0 +170739119893,267,0 +170739119941,266,0 +170739119989,267,0 +170739120037,267,0 +170739120085,266,0 +170739120134,267,0 +170739120184,267,0 +170739120233,266,0 +170739120281,267,0 +170739120329,266,0 +170739120377,267,0 +170739120425,267,0 +170739120473,267,0 +170739120521,266,0 +170739120569,266,0 +170739120617,266,0 +170739120665,267,0 +170739120713,267,0 +170739120761,267,0 +170739120809,266,0 +170739120857,266,0 +170739120906,266,0 +170739120954,266,0 +170739121002,266,0 +170739121050,267,0 +170739121099,266,0 +170739121147,267,0 +170739121195,267,0 +170739121243,266,0 +170739121291,266,0 +170739121339,267,0 +170739121389,267,0 +170739121437,267,0 +170739121485,266,0 +170739121533,266,0 +170739121581,266,0 +170739121629,266,0 +170739121678,266,0 +170739121726,266,0 +170739121776,267,0 +170739121824,267,0 +170739121873,266,0 +170739121921,266,0 +170739121969,266,0 +170739122017,266,0 +170739122065,266,0 +170739122114,266,0 +170739122162,266,0 +170739122210,266,0 +170739122258,266,0 +170739122306,266,0 +170739122356,266,0 +170739122405,267,0 +170739122453,266,0 +170739122501,266,0 +170739122551,267,0 +170739122599,266,0 +170739122648,266,0 +170739122696,267,0 +170739122746,266,0 +170739122794,266,0 +170739122843,266,0 +170739122891,266,0 +170739122939,266,0 +170739122987,266,0 +170739123037,266,0 +170739123085,266,0 +170739123133,267,0 +170739123181,266,0 +170739123229,266,0 +170739123276,266,0 +170739123324,266,0 +170739123372,266,0 +170739123420,267,0 +170739123468,266,0 +170739123516,266,0 +170739123564,267,0 +170739123612,266,0 +170739123660,267,0 +170739123708,266,0 +170739123756,266,0 +170739123804,267,0 +170739123851,267,0 +170739123899,266,0 +170739123947,266,0 +170739123995,266,0 +170739124043,266,0 +170739124091,266,0 +170739124139,266,0 +170739124187,266,0 +170739124234,266,0 +170739124282,266,0 +170739124330,266,0 +170739124378,267,0 +170739124426,267,0 +170739124474,267,0 +170739124522,266,0 +170739124571,266,0 +170739124619,266,0 +170739124667,266,0 +170739124717,267,0 +170739124766,266,0 +170739124814,266,0 +170739124862,267,0 +170739124910,266,0 +170739124958,266,0 +170739125006,267,0 +170739125054,266,0 +170739125102,266,0 +170739125150,266,0 +170739125197,267,0 +170739125247,266,0 +170739125295,266,0 +170739125344,266,0 +170739125393,266,0 +170739125441,266,0 +170739125489,266,0 +170739125537,267,0 +170739125587,266,0 +170739125634,267,0 +170739125682,266,0 +170739125730,266,0 +170739125780,266,0 +170739125829,266,0 +170739125877,266,0 +170739125925,266,0 +170739125973,266,0 +170739126021,266,0 +170739126068,267,0 +170739126116,267,0 +170739126164,266,0 +170739126212,266,0 +170739126260,266,0 +170739126308,266,0 +170739126356,267,0 +170739126404,266,0 +170739126453,266,0 +170739126501,266,0 +170739126551,266,0 +170739126599,266,0 +170739126647,267,0 +170739126695,266,0 +170739126744,266,0 +170739126792,266,0 +170739126840,266,0 +170739126889,266,0 +170739126939,266,0 +170739126987,266,0 +170739127035,266,0 +170739127083,266,0 +170739127131,266,0 +170739127180,266,0 +170739127230,266,0 +170739127279,267,0 +170739127327,266,0 +170739127377,266,0 +170739127426,267,0 +170739127474,267,0 +170739127522,267,0 +170739127572,266,0 +170739127620,266,0 +170739127669,266,0 +170739127719,266,0 +170739127768,266,0 +170739127816,266,0 +170739127866,266,0 +170739127913,266,0 +170739127963,266,0 +170739128011,267,0 +170739128061,266,0 +170739128108,267,0 +170739128156,266,0 +170739128204,267,0 +170739128252,266,0 +170739128302,266,0 +170739128350,267,0 +170739128398,266,0 +170739128447,266,0 +170739128495,266,0 +170739128543,266,0 +170739128591,266,0 +170739128639,266,0 +170739128689,266,0 +170739128737,266,0 +170739128786,266,0 +170739128834,266,0 +170739128882,267,0 +170739128930,267,0 +170739128978,266,0 +170739129026,266,0 +170739129074,266,0 +170739129122,266,0 +170739129170,266,0 +170739129219,266,0 +170739129267,266,0 +170739129315,266,0 +170739129363,267,0 +170739129411,267,0 +170739129459,266,0 +170739129507,266,0 +170739129557,266,0 +170739129605,267,0 +170739129653,267,0 +170739129701,267,0 +170739129749,266,0 +170739129797,267,0 +170739129846,267,0 +170739129894,266,0 +170739129942,266,0 +170739129990,266,0 +170739130039,266,0 +170739130087,266,0 +170739130137,266,0 +170739130185,266,0 +170739130233,266,0 +170739130281,266,0 +170739130329,266,0 +170739130377,266,0 +170739130425,266,0 +170739130474,266,0 +170739130522,266,0 +170739130572,266,0 +170739130620,266,0 +170739130669,266,0 +170739130717,267,0 +170739130767,266,0 +170739130815,266,0 +170739130863,266,0 +170739130911,266,0 +170739130959,266,0 +170739131008,266,0 +170739131056,266,0 +170739131104,266,0 +170739131152,266,0 +170739131202,265,0 +170739131251,266,0 +170739131299,266,0 +170739131347,266,0 +170739131397,267,0 +170739131445,266,0 +170739131493,266,0 +170739131542,266,0 +170739131590,266,0 +170739131640,266,0 +170739131688,266,0 +170739131735,266,0 +170739131783,266,0 +170739131831,266,0 +170739131881,267,0 +170739131930,266,0 +170739131978,266,0 +170739132028,266,0 +170739132076,266,0 +170739132125,267,0 +170739132173,266,0 +170739132221,266,0 +170739132270,266,0 +170739132319,266,0 +170739132369,266,0 +170739132418,266,0 +170739132466,267,0 +170739132516,266,0 +170739132564,266,0 +170739132612,266,0 +170739132661,266,0 +170739132709,267,0 +170739132757,266,0 +170739132805,267,0 +170739132855,266,0 +170739132903,266,0 +170739132952,266,0 +170739133000,266,0 +170739133048,266,0 +170739133096,267,0 +170739133144,267,0 +170739133192,266,0 +170739133240,266,0 +170739133288,266,0 +170739133336,267,0 +170739133385,266,0 +170739133433,266,0 +170739133481,267,0 +170739133529,266,0 +170739133579,267,0 +170739133627,266,0 +170739133675,266,0 +170739133723,267,0 +170739133772,266,0 +170739133822,266,0 +170739133871,266,0 +170739133921,266,0 +170739133970,266,0 +170739134020,267,0 +170739134068,267,0 +170739134116,266,0 +170739134164,266,0 +170739134213,266,0 +170739134261,266,0 +170739134309,266,0 +170739134357,266,0 +170739134405,266,0 +170739134453,266,0 +170739134500,266,0 +170739134548,266,0 +170739134596,266,0 +170739134644,266,0 +170739134692,266,0 +170739134740,267,0 +170739134788,266,0 +170739134836,266,0 +170739134883,266,0 +170739134931,266,0 +170739134979,267,0 +170739135027,266,0 +170739135075,266,0 +170739135123,266,0 +170739135171,267,0 +170739135219,266,0 +170739135267,267,0 +170739135315,266,0 +170739135363,266,0 +170739135411,266,0 +170739135458,266,0 +170739135506,266,0 +170739135554,266,0 +170739135604,266,0 +170739135653,266,0 +170739135701,266,0 +170739135751,266,0 +170739135799,266,0 +170739135848,266,0 +170739135896,266,0 +170739135944,266,0 +170739135994,266,0 +170739136042,266,0 +170739136090,266,0 +170739136138,266,0 +170739136187,266,0 +170739136236,266,0 +170739136286,266,0 +170739136334,266,0 +170739136382,266,0 +170739136430,266,0 +170739136477,267,0 +170739136525,266,0 +170739136573,266,0 +170739136623,266,0 +170739136671,266,0 +170739136719,266,0 +170739136767,267,0 +170739136814,266,0 +170739136862,266,0 +170739136910,266,0 +170739136958,266,0 +170739137006,266,0 +170739137054,266,0 +170739137102,266,0 +170739137151,266,0 +170739137201,266,0 +170739137249,266,0 +170739137299,266,0 +170739137347,266,0 +170739137395,266,0 +170739137444,266,0 +170739137492,266,0 +170739137540,266,0 +170739137588,267,0 +170739137637,266,0 +170739137685,266,0 +170739137733,266,0 +170739137783,266,0 +170739137832,266,0 +170739137882,266,0 +170739137931,266,0 +170739137981,266,0 +170739138029,266,0 +170739138077,266,0 +170739138124,267,0 +170739138172,266,0 +170739138220,266,0 +170739138268,266,0 +170739138316,266,0 +170739138364,266,0 +170739138411,266,0 +170739138459,266,0 +170739138509,266,0 +170739138558,266,0 +170739138606,266,0 +170739138656,267,0 +170739138704,266,0 +170739138753,266,0 +170739138801,266,0 +170739138849,266,0 +170739138897,266,0 +170739138947,266,0 +170739138996,266,0 +170739139044,266,0 +170739139092,266,0 +170739139140,266,0 +170739139188,266,0 +170739139236,266,0 +170739139284,266,0 +170739139332,266,0 +170739139380,266,0 +170739139428,266,0 +170739139476,266,0 +170739139524,266,0 +170739139572,266,0 +170739139619,266,0 +170739139667,266,0 +170739139717,266,0 +170739139765,266,0 +170739139813,266,0 +170739139860,267,0 +170739139908,266,0 +170739139956,266,0 +170739140004,266,0 +170739140052,266,0 +170739140100,267,0 +170739140149,266,0 +170739140199,266,0 +170739140247,266,0 +170739140295,266,0 +170739140343,266,0 +170739140391,266,0 +170739140438,266,0 +170739140486,266,0 +170739140534,267,0 +170739140582,266,0 +170739140630,266,0 +170739140680,266,0 +170739140729,266,0 +170739140779,266,0 +170739140828,266,0 +170739140878,266,0 +170739140926,266,0 +170739140974,266,0 +170739141022,266,0 +170739141071,266,0 +170739141121,266,0 +170739141168,266,0 +170739141218,266,0 +170739141268,266,0 +170739141316,266,0 +170739141365,266,0 +170739141413,267,0 +170739141461,266,0 +170739141509,266,0 +170739141557,266,0 +170739141605,266,0 +170739141654,266,0 +170739141702,266,0 +170739141750,266,0 +170739141798,266,0 +170739141846,266,0 +170739141896,267,0 +170739141945,267,0 +170739141993,266,0 +170739142041,266,0 +170739142091,266,0 +170739142138,266,0 +170739142186,266,0 +170739142234,266,0 +170739142282,266,0 +170739142332,266,0 +170739142380,266,0 +170739142429,265,0 +170739142479,266,0 +170739142527,266,0 +170739142575,266,0 +170739142624,266,0 +170739142672,266,0 +170739142722,266,0 +170739142770,266,0 +170739142818,266,0 +170739142866,266,0 +170739142915,266,0 +170739142963,266,0 +170739143011,266,0 +170739143060,266,0 +170739143108,266,0 +170739143158,266,0 +170739143206,267,0 +170739143253,266,0 +170739143301,265,0 +170739143351,266,0 +170739143399,265,0 +170739143447,266,0 +170739143496,266,0 +170739143544,266,0 +170739143592,266,0 +170739143642,266,0 +170739143691,266,0 +170739143739,266,0 +170739143787,266,0 +170739143835,266,0 +170739143883,266,0 +170739143933,266,0 +170739143981,266,0 +170739144030,266,0 +170739144079,266,0 +170739144127,267,0 +170739144175,266,0 +170739144223,267,0 +170739144271,266,0 +170739144319,266,0 +170739144367,266,0 +170739144415,266,0 +170739144463,266,0 +170739144511,266,0 +170739144559,266,0 +170739144607,266,0 +170739144655,266,0 +170739144703,267,0 +170739144751,266,0 +170739144799,266,0 +170739144846,266,0 +170739144894,266,0 +170739144944,266,0 +170739144992,266,0 +170739145039,266,0 +170739145087,266,0 +170739145135,266,0 +170739145183,266,0 +170739145231,266,0 +170739145279,266,0 +170739145327,266,0 +170739145375,266,0 +170739145422,266,0 +170739145470,266,0 +170739145518,266,0 +170739145566,266,0 +170739145614,266,0 +170739145663,266,0 +170739145711,266,0 +170739145761,266,0 +170739145809,266,0 +170739145857,266,0 +170739145905,267,0 +170739145952,266,0 +170739146002,266,0 +170739146051,266,0 +170739146101,266,0 +170739146149,266,0 +170739146199,266,0 +170739146247,266,0 +170739146296,266,0 +170739146344,267,0 +170739146393,266,0 +170739146443,266,0 +170739146492,266,0 +170739146542,266,0 +170739146590,266,0 +170739146638,267,0 +170739146687,266,0 +170739146735,266,0 +170739146783,266,0 +170739146833,266,0 +170739146881,267,0 +170739146929,266,0 +170739146978,266,0 +170739147026,266,0 +170739147074,266,0 +170739147124,266,0 +170739147172,266,0 +170739147221,266,0 +170739147271,266,0 +170739147319,266,0 +170739147367,266,0 +170739147414,266,0 +170739147462,266,0 +170739147510,266,0 +170739147560,266,0 +170739147608,266,0 +170739147657,266,0 +170739147707,266,0 +170739147756,266,0 +170739147804,266,0 +170739147852,266,0 +170739147900,266,0 +170739147948,266,0 +170739147996,266,0 +170739148044,266,0 +170739148093,266,0 +170739148141,266,0 +170739148189,266,0 +170739148237,266,0 +170739148285,266,0 +170739148333,266,0 +170739148382,266,0 +170739148430,266,0 +170739148478,266,0 +170739148526,266,0 +170739148574,266,0 +170739148622,266,0 +170739148672,266,0 +170739148720,266,0 +170739148768,266,0 +170739148816,266,0 +170739148863,266,0 +170739148911,266,0 +170739148959,266,0 +170739149007,266,0 +170739149055,266,0 +170739149104,267,0 +170739149152,266,0 +170739149200,265,0 +170739149248,267,0 +170739149296,267,0 +170739149344,266,0 +170739149392,266,0 +170739149440,266,0 +170739149488,266,0 +170739149536,267,0 +170739149583,266,0 +170739149631,266,0 +170739149679,266,0 +170739149727,266,0 +170739149775,266,0 +170739149823,266,0 +170739149871,266,0 +170739149919,266,0 +170739149966,266,0 +170739150014,266,0 +170739150062,267,0 +170739150110,266,0 +170739150158,266,0 +170739150206,265,0 +170739150254,266,0 +170739150303,266,0 +170739150351,266,0 +170739150401,266,0 +170739150448,266,0 +170739150496,266,0 +170739150544,266,0 +170739150592,266,0 +170739150640,266,0 +170739150688,266,0 +170739150738,266,0 +170739150787,266,0 +170739150835,266,0 +170739150883,266,0 +170739150931,266,0 +170739150979,266,0 +170739151028,266,0 +170739151078,266,0 +170739151126,266,0 +170739151174,266,0 +170739151222,266,0 +170739151271,266,0 +170739151319,267,0 +170739151368,266,0 +170739151416,266,0 +170739151464,266,0 +170739151514,266,0 +170739151563,266,0 +170739151611,266,0 +170739151659,266,0 +170739151709,267,0 +170739151758,266,0 +170739151806,266,0 +170739151854,266,0 +170739151902,266,0 +170739151950,266,0 +170739151998,266,0 +170739152048,266,0 +170739152097,266,0 +170739152147,266,0 +170739152195,266,0 +170739152244,265,0 +170739152292,266,0 +170739152340,266,0 +170739152390,266,0 +170739152439,266,0 +170739152489,266,0 +170739152537,266,0 +170739152585,266,0 +170739152632,266,0 +170739152682,266,0 +170739152732,266,0 +170739152779,266,0 +170739152827,266,0 +170739152877,266,0 +170739152926,266,0 +170739152974,266,0 +170739153024,266,0 +170739153072,266,0 +170739153120,266,0 +170739153168,266,0 +170739153217,266,0 +170739153265,266,0 +170739153315,266,0 +170739153363,266,0 +170739153411,266,0 +170739153459,266,0 +170739153508,266,0 +170739153558,266,0 +170739153606,266,0 +170739153655,266,0 +170739153703,266,0 +170739153751,266,0 +170739153801,266,0 +170739153849,266,0 +170739153897,266,0 +170739153946,266,0 +170739153994,266,0 +170739154042,266,0 +170739154090,266,0 +170739154138,266,0 +170739154188,266,0 +170739154236,266,0 +170739154285,266,0 +170739154333,266,0 +170739154383,265,0 +170739154430,266,0 +170739154478,266,0 +170739154526,266,0 +170739154576,266,0 +170739154624,266,0 +170739154673,266,0 +170739154721,266,0 +170739154769,266,0 +170739154817,266,0 +170739154865,266,0 +170739154913,266,0 +170739154961,266,0 +170739155011,266,0 +170739155059,267,0 +170739155107,266,0 +170739155155,266,0 +170739155202,266,0 +170739155250,266,0 +170739155298,266,0 +170739155346,266,0 +170739155394,266,0 +170739155442,266,0 +170739155491,266,0 +170739155539,267,0 +170739155587,266,0 +170739155635,266,0 +170739155683,266,0 +170739155731,266,0 +170739155778,266,0 +170739155826,266,0 +170739155874,267,0 +170739155922,266,0 +170739155970,266,0 +170739156018,266,0 +170739156066,266,0 +170739156114,266,0 +170739156161,266,0 +170739156209,266,0 +170739156257,266,0 +170739156305,266,0 +170739156353,266,0 +170739156401,266,0 +170739156451,266,0 +170739156498,266,0 +170739156548,266,0 +170739156597,266,0 +170739156645,266,0 +170739156695,266,0 +170739156743,266,0 +170739156791,266,0 +170739156839,265,0 +170739156887,266,0 +170739156935,266,0 +170739156984,266,0 +170739157032,266,0 +170739157080,266,0 +170739157128,266,0 +170739157175,266,0 +170739157223,266,0 +170739157271,266,0 +170739157319,266,0 +170739157367,266,0 +170739157415,266,0 +170739157463,266,0 +170739157511,266,0 +170739157559,266,0 +170739157607,266,0 +170739157654,267,0 +170739157704,266,0 +170739157752,266,0 +170739157800,266,0 +170739157847,266,0 +170739157897,267,0 +170739157945,266,0 +170739157994,266,0 +170739158042,266,0 +170739158090,266,0 +170739158138,266,0 +170739158186,266,0 +170739158234,266,0 +170739158282,266,0 +170739158329,266,0 +170739158379,266,0 +170739158427,267,0 +170739158475,266,0 +170739158523,266,0 +170739158572,265,0 +170739158620,267,0 +170739158668,267,0 +170739158718,266,0 +170739158766,266,0 +170739158815,266,0 +170739158865,266,0 +170739158913,266,0 +170739158961,266,0 +170739159009,266,0 +170739159058,266,0 +170739159106,266,0 +170739159155,266,0 +170739159205,266,0 +170739159254,266,0 +170739159304,266,0 +170739159353,266,0 +170739159403,266,0 +170739159451,266,0 +170739159499,267,0 +170739159547,266,0 +170739159595,266,0 +170739159643,266,0 +170739159691,266,0 +170739159739,266,0 +170739159788,266,0 +170739159836,266,0 +170739159884,266,0 +170739159934,266,0 +170739159983,266,0 +170739160031,266,0 +170739160081,266,0 +170739160129,266,0 +170739160178,266,0 +170739160226,267,0 +170739160274,267,0 +170739160324,266,0 +170739160373,266,0 +170739160421,266,0 +170739160469,266,0 +170739160517,266,0 +170739160565,266,0 +170739160615,266,0 +170739160663,266,0 +170739160712,266,0 +170739160760,266,0 +170739160808,266,0 +170739160856,266,0 +170739160904,266,0 +170739160952,266,0 +170739161000,266,0 +170739161048,266,0 +170739161096,266,0 +170739161145,266,0 +170739161193,266,0 +170739161241,266,0 +170739161289,266,0 +170739161339,267,0 +170739161387,266,0 +170739161436,266,0 +170739161484,266,0 +170739161532,266,0 +170739161580,266,0 +170739161628,266,0 +170739161676,266,0 +170739161726,266,0 +170739161774,266,0 +170739161822,266,0 +170739161870,266,0 +170739161918,267,0 +170739161966,267,0 +170739162013,266,0 +170739162063,266,0 +170739162111,266,0 +170739162161,266,0 +170739162210,266,0 +170739162258,266,0 +170739162308,266,0 +170739162356,266,0 +170739162404,266,0 +170739162453,266,0 +170739162501,266,0 +170739162549,266,0 +170739162599,267,0 +170739162647,266,0 +170739162696,266,0 +170739162746,267,0 +170739162794,266,0 +170739162842,266,0 +170739162890,266,0 +170739162937,266,0 +170739162985,266,0 +170739163033,266,0 +170739163083,266,0 +170739163131,266,0 +170739163179,266,0 +170739163228,267,0 +170739163276,266,0 +170739163326,266,0 +170739163374,266,0 +170739163422,266,0 +170739163470,266,0 +170739163518,267,0 +170739163567,266,0 +170739163615,266,0 +170739163664,266,0 +170739163714,266,0 +170739163762,266,0 +170739163810,267,0 +170739163859,267,0 +170739163907,267,0 +170739163957,266,0 +170739164005,266,0 +170739164053,267,0 +170739164101,266,0 +170739164150,266,0 +170739164198,266,0 +170739164248,266,0 +170739164296,266,0 +170739164344,266,0 +170739164393,267,0 +170739164441,267,0 +170739164491,266,0 +170739164539,267,0 +170739164586,267,0 +170739164634,266,0 +170739164682,266,0 +170739164732,267,0 +170739164781,266,0 +170739164829,266,0 +170739164879,266,0 +170739164927,267,0 +170739164975,267,0 +170739165023,267,0 +170739165071,266,0 +170739165120,267,0 +170739165168,267,0 +170739165218,267,0 +170739165266,267,0 +170739165315,266,0 +170739165363,266,0 +170739165411,266,0 +170739165461,266,0 +170739165509,266,0 +170739165558,267,0 +170739165606,266,0 +170739165654,267,0 +170739165703,267,0 +170739165753,266,0 +170739165801,266,0 +170739165849,267,0 +170739165897,267,0 +170739165946,267,0 +170739165994,266,0 +170739166044,267,0 +170739166092,267,0 +170739166140,267,0 +170739166189,267,0 +170739166239,267,0 +170739166288,267,0 +170739166336,267,0 +170739166384,266,0 +170739166432,267,0 +170739166480,266,0 +170739166528,267,0 +170739166576,267,0 +170739166624,267,0 +170739166671,266,0 +170739166719,267,0 +170739166767,267,0 +170739166815,266,0 +170739166863,267,0 +170739166911,267,0 +170739166959,267,0 +170739167007,266,0 +170739167054,266,0 +170739167102,266,0 +170739167150,266,0 +170739167198,267,0 +170739167246,266,0 +170739167294,266,0 +170739167342,266,0 +170739167390,267,0 +170739167439,266,0 +170739167487,266,0 +170739167536,267,0 +170739167584,267,0 +170739167634,267,0 +170739167683,267,0 +170739167731,267,0 +170739167781,267,0 +170739167830,267,0 +170739167878,267,0 +170739167928,267,0 +170739167976,267,0 +170739168024,266,0 +170739168072,266,0 +170739168120,267,0 +170739168167,266,0 +170739168215,267,0 +170739168263,266,0 +170739168311,266,0 +170739168359,266,0 +170739168407,267,0 +170739168455,267,0 +170739168503,266,0 +170739168552,267,0 +170739168600,267,0 +170739168648,267,0 +170739168696,267,0 +170739168743,267,0 +170739168791,267,0 +170739168841,267,0 +170739168889,267,0 +170739168937,266,0 +170739168984,266,0 +170739169032,267,0 +170739169082,267,0 +170739169130,267,0 +170739169178,267,0 +170739169226,266,0 +170739169274,267,0 +170739169322,267,0 +170739169370,267,0 +170739169418,267,0 +170739169466,267,0 +170739169515,266,0 +170739169565,267,0 +170739169613,266,0 +170739169662,266,0 +170739169712,267,0 +170739169760,267,0 +170739169809,266,0 +170739169857,266,0 +170739169907,267,0 +170739169955,267,0 +170739170002,267,0 +170739170050,267,0 +170739170098,266,0 +170739170148,266,0 +170739170197,267,0 +170739170245,267,0 +170739170293,267,0 +170739170341,266,0 +170739170389,266,0 +170739170437,266,0 +170739170487,267,0 +170739170535,267,0 +170739170582,267,0 +170739170630,266,0 +170739170678,267,0 +170739170726,267,0 +170739170774,267,0 +170739170822,266,0 +170739170870,266,0 +170739170920,267,0 +170739170969,266,0 +170739171017,267,0 +170739171065,267,0 +170739171113,266,0 +170739171161,267,0 +170739171209,267,0 +170739171258,267,0 +170739171308,267,0 +170739171356,267,0 +170739171403,266,0 +170739171451,266,0 +170739171499,267,0 +170739171547,267,0 +170739171595,267,0 +170739171643,267,0 +170739171691,267,0 +170739171739,266,0 +170739171787,267,0 +170739171834,266,0 +170739171882,267,0 +170739171930,267,0 +170739171978,267,0 +170739172026,266,0 +170739172075,267,0 +170739172123,267,0 +170739172171,267,0 +170739172219,267,0 +170739172267,266,0 +170739172315,266,0 +170739172363,267,0 +170739172411,267,0 +170739172459,267,0 +170739172507,266,0 +170739172555,267,0 +170739172602,267,0 +170739172650,267,0 +170739172698,266,0 +170739172748,267,0 +170739172796,267,0 +170739172845,267,0 +170739172893,267,0 +170739172941,266,0 +170739172989,266,0 +170739173037,266,0 +170739173085,267,0 +170739173133,266,0 +170739173181,266,0 +170739173229,267,0 +170739173278,266,0 +170739173326,266,0 +170739173376,267,0 +170739173423,266,0 +170739173471,266,0 +170739173519,267,0 +170739173567,267,0 +170739173617,266,0 +170739173664,266,0 +170739173712,266,0 +170739173760,267,0 +170739173808,267,0 +170739173857,267,0 +170739173905,266,0 +170739173953,266,0 +170739174001,266,0 +170739174049,267,0 +170739174097,266,0 +170739174145,266,0 +170739174193,267,0 +170739174241,267,0 +170739174289,266,0 +170739174337,266,0 +170739174384,266,0 +170739174432,266,0 +170739174480,266,0 +170739174528,266,0 +170739174576,266,0 +170739174624,267,0 +170739174672,267,0 +170739174720,267,0 +170739174768,266,0 +170739174815,267,0 +170739174863,266,0 +170739174913,266,0 +170739174962,266,0 +170739175012,266,0 +170739175060,267,0 +170739175108,266,0 +170739175157,267,0 +170739175205,266,0 +170739175253,266,0 +170739175303,266,0 +170739175351,266,0 +170739175399,266,0 +170739175447,267,0 +170739175495,266,0 +170739175544,266,0 +170739175592,266,0 +170739175640,267,0 +170739175688,267,0 +170739175736,266,0 +170739175784,266,0 +170739175832,266,0 +170739175880,266,0 +170739175929,266,0 +170739175979,266,0 +170739176029,266,0 +170739176078,266,0 +170739176126,266,0 +170739176174,266,0 +170739176222,266,0 +170739176269,266,0 +170739176317,266,0 +170739176365,266,0 +170739176415,266,0 +170739176463,266,0 +170739176511,266,0 +170739176560,266,0 +170739176608,266,0 +170739176656,266,0 +170739176704,266,0 +170739176752,266,0 +170739176800,266,0 +170739176848,266,0 +170739176898,266,0 +170739176947,267,0 +170739176995,267,0 +170739177043,267,0 +170739177091,266,0 +170739177140,266,0 +170739177190,266,0 +170739177240,266,0 +170739177287,266,0 +170739177335,266,0 +170739177383,266,0 +170739177431,266,0 +170739177481,266,0 +170739177530,267,0 +170739177578,267,0 +170739177628,266,0 +170739177677,266,0 +170739177725,266,0 +170739177773,266,0 +170739177821,266,0 +170739177869,266,0 +170739177917,266,0 +170739177965,266,0 +170739178013,266,0 +170739178061,266,0 +170739178109,266,0 +170739178157,266,0 +170739178204,266,0 +170739178252,266,0 +170739178300,267,0 +170739178350,266,0 +170739178398,266,0 +170739178446,266,0 +170739178494,266,0 +170739178543,266,0 +170739178591,267,0 +170739178641,266,0 +170739178689,266,0 +170739178738,266,0 +170739178786,266,0 +170739178834,266,0 +170739178884,266,0 +170739178932,266,0 +170739178981,266,0 +170739179029,266,0 +170739179077,266,0 +170739179127,266,0 +170739179175,266,0 +170739179224,266,0 +170739179272,266,0 +170739179320,267,0 +170739179370,267,0 +170739179419,266,0 +170739179467,266,0 +170739179515,265,0 +170739179565,266,0 +170739179613,266,0 +170739179661,266,0 +170739179710,266,0 +170739179758,266,0 +170739179808,266,0 +170739179856,266,0 +170739179904,266,0 +170739179953,266,0 +170739180001,266,0 +170739180049,266,0 +170739180099,266,0 +170739180148,267,0 +170739180198,266,0 +170739180247,267,0 +170739180295,266,0 +170739180345,266,0 +170739180394,265,0 +170739180442,266,0 +170739180490,267,0 +170739180538,266,0 +170739180586,266,0 +170739180634,266,0 +170739180681,266,0 +170739180729,266,0 +170739180777,266,0 +170739180825,266,0 +170739180873,267,0 +170739180921,266,0 +170739180969,266,0 +170739181017,266,0 +170739181066,266,0 +170739181114,267,0 +170739181162,265,0 +170739181210,266,0 +170739181258,266,0 +170739181306,266,0 +170739181354,267,0 +170739181403,266,0 +170739181453,266,0 +170739181502,266,0 +170739181552,266,0 +170739181601,266,0 +170739181649,266,0 +170739181699,266,0 +170739181747,266,0 +170739181795,266,0 +170739181843,266,0 +170739181892,266,0 +170739181942,266,0 +170739181990,266,0 +170739182038,266,0 +170739182086,267,0 +170739182135,266,0 +170739182183,267,0 +170739182233,267,0 +170739182281,266,0 +170739182329,266,0 +170739182377,266,0 +170739182425,266,0 +170739182472,266,0 +170739182522,266,0 +170739182572,266,0 +170739182621,266,0 +170739182669,266,0 +170739182717,267,0 +170739182765,266,0 +170739182814,266,0 +170739182862,266,0 +170739182910,266,0 +170739182960,266,0 +170739183009,266,0 +170739183057,266,0 +170739183105,266,0 +170739183155,266,0 +170739183203,266,0 +170739183252,266,0 +170739183300,266,0 +170739183348,266,0 +170739183396,266,0 +170739183444,266,0 +170739183494,266,0 +170739183543,266,0 +170739183591,266,0 +170739183639,266,0 +170739183687,266,0 +170739183735,266,0 +170739183784,266,0 +170739183832,266,0 +170739183882,266,0 +170739183931,266,0 +170739183979,266,0 +170739184027,266,0 +170739184075,266,0 +170739184123,266,0 +170739184171,266,0 +170739184219,266,0 +170739184267,266,0 +170739184315,266,0 +170739184365,266,0 +170739184414,266,0 +170739184464,266,0 +170739184512,267,0 +170739184560,266,0 +170739184607,266,0 +170739184655,266,0 +170739184705,266,0 +170739184753,266,0 +170739184802,266,0 +170739184852,266,0 +170739184902,266,0 +170739184950,266,0 +170739184998,266,0 +170739185045,266,0 +170739185093,266,0 +170739185143,266,0 +170739185191,266,0 +170739185239,266,0 +170739185287,266,0 +170739185335,266,0 +170739185382,266,0 +170739185432,265,0 +170739185480,266,0 +170739185528,267,0 +170739185576,266,0 +170739185624,266,0 +170739185671,266,0 +170739185719,265,0 +170739185767,266,0 +170739185817,266,0 +170739185865,266,0 +170739185913,267,0 +170739185960,266,0 +170739186008,267,0 +170739186056,266,0 +170739186106,265,0 +170739186156,266,0 +170739186204,267,0 +170739186253,266,0 +170739186301,266,0 +170739186349,266,0 +170739186397,267,0 +170739186445,266,0 +170739186493,266,0 +170739186541,266,0 +170739186589,267,0 +170739186638,266,0 +170739186688,266,0 +170739186736,265,0 +170739186784,266,0 +170739186832,266,0 +170739186880,267,0 +170739186929,266,0 +170739186977,266,0 +170739187027,265,0 +170739187075,266,0 +170739187123,266,0 +170739187172,267,0 +170739187220,265,0 +170739187268,266,0 +170739187316,265,0 +170739187364,266,0 +170739187413,266,0 +170739187461,266,0 +170739187511,266,0 +170739187560,266,0 +170739187608,266,0 +170739187656,266,0 +170739187706,266,0 +170739187754,266,0 +170739187803,266,0 +170739187853,266,0 +170739187902,266,0 +170739187950,266,0 +170739187998,266,0 +170739188048,266,0 +170739188097,265,0 +170739188147,266,0 +170739188196,266,0 +170739188246,266,0 +170739188295,266,0 +170739188343,266,0 +170739188392,265,0 +170739188440,266,0 +170739188488,266,0 +170739188536,266,0 +170739188584,266,0 +170739188632,266,0 +170739188680,266,0 +170739188728,266,0 +170739188776,266,0 +170739188824,266,0 +170739188872,266,0 +170739188920,266,0 +170739188968,266,0 +170739189016,266,0 +170739189064,266,0 +170739189112,266,0 +170739189162,266,0 +170739189211,266,0 +170739189259,266,0 +170739189309,266,0 +170739189358,266,0 +170739189406,266,0 +170739189454,266,0 +170739189504,265,0 +170739189551,266,0 +170739189599,267,0 +170739189647,266,0 +170739189697,266,0 +170739189746,266,0 +170739189796,266,0 +170739189844,266,0 +170739189893,266,0 +170739189941,266,0 +170739189989,266,0 +170739190037,266,0 +170739190085,266,0 +170739190133,266,0 +170739190181,266,0 +170739190231,266,0 +170739190279,266,0 +170739190327,266,0 +170739190375,266,0 +170739190423,266,0 +170739190472,266,0 +170739190522,266,0 +170739190570,266,0 +170739190618,266,0 +170739190667,267,0 +170739190715,266,0 +170739190763,266,0 +170739190811,266,0 +170739190859,266,0 +170739190907,266,0 +170739190955,266,0 +170739191003,266,0 +170739191052,266,0 +170739191100,266,0 +170739191148,266,0 +170739191196,266,0 +170739191246,266,0 +170739191294,266,0 +170739191342,266,0 +170739191390,266,0 +170739191438,266,0 +170739191486,266,0 +170739191535,266,0 +170739191585,266,0 +170739191633,265,0 +170739191681,265,0 +170739191729,266,0 +170739191777,267,0 +170739191825,267,0 +170739191873,266,0 +170739191921,267,0 +170739191970,266,0 +170739192018,266,0 +170739192068,266,0 +170739192116,266,0 +170739192165,266,0 +170739192213,266,0 +170739192261,266,0 +170739192309,266,0 +170739192357,266,0 +170739192405,266,0 +170739192453,266,0 +170739192502,266,0 +170739192552,266,0 +170739192600,266,0 +170739192648,267,0 +170739192696,266,0 +170739192744,266,0 +170739192792,266,0 +170739192840,267,0 +170739192888,266,0 +170739192937,266,0 +170739192985,266,0 +170739193033,266,0 +170739193081,267,0 +170739193129,266,0 +170739193179,266,0 +170739193227,265,0 +170739193275,266,0 +170739193324,266,0 +170739193374,266,0 +170739193423,266,0 +170739193471,266,0 +170739193521,266,0 +170739193569,266,0 +170739193617,266,0 +170739193665,265,0 +170739193714,266,0 +170739193762,266,0 +170739193810,266,0 +170739193860,266,0 +170739193907,266,0 +170739193957,266,0 +170739194005,266,0 +170739194054,266,0 +170739194104,266,0 +170739194153,266,0 +170739194201,267,0 +170739194249,266,0 +170739194299,266,0 +170739194347,266,0 +170739194396,266,0 +170739194446,266,0 +170739194494,266,0 +170739194542,266,0 +170739194590,266,0 +170739194638,267,0 +170739194686,266,0 +170739194734,267,0 +170739194782,266,0 +170739194830,266,0 +170739194879,266,0 +170739194927,266,0 +170739194975,266,0 +170739195023,266,0 +170739195071,266,0 +170739195119,266,0 +170739195167,266,0 +170739195215,266,0 +170739195264,266,0 +170739195313,267,0 +170739195360,266,0 +170739195410,266,0 +170739195458,266,0 +170739195506,266,0 +170739195554,266,0 +170739195604,266,0 +170739195652,266,0 +170739195699,266,0 +170739195749,266,0 +170739195797,266,0 +170739195846,267,0 +170739195894,266,0 +170739195944,266,0 +170739195992,266,0 +170739196041,266,0 +170739196089,266,0 +170739196137,266,0 +170739196185,266,0 +170739196235,266,0 +170739196284,266,0 +170739196332,267,0 +170739196380,266,0 +170739196428,266,0 +170739196476,266,0 +170739196526,267,0 +170739196573,267,0 +170739196621,266,0 +170739196671,266,0 +170739196719,266,0 +170739196768,266,0 +170739196818,266,0 +170739196868,266,0 +170739196916,266,0 +170739196964,267,0 +170739197011,266,0 +170739197059,266,0 +170739197107,266,0 +170739197157,266,0 +170739197205,267,0 +170739197254,266,0 +170739197304,266,0 +170739197353,266,0 +170739197401,266,0 +170739197451,266,0 +170739197500,266,0 +170739197548,265,0 +170739197598,266,0 +170739197646,266,0 +170739197694,266,0 +170739197743,266,0 +170739197793,267,0 +170739197841,266,0 +170739197889,266,0 +170739197937,266,0 +170739197985,266,0 +170739198033,266,0 +170739198081,266,0 +170739198130,266,0 +170739198178,266,0 +170739198228,266,0 +170739198276,266,0 +170739198323,265,0 +170739198371,266,0 +170739198421,266,0 +170739198469,266,0 +170739198517,267,0 +170739198565,266,0 +170739198613,266,0 +170739198662,266,0 +170739198710,266,0 +170739198758,266,0 +170739198806,266,0 +170739198854,266,0 +170739198904,266,0 +170739198952,266,0 +170739199001,266,0 +170739199049,266,0 +170739199097,266,0 +170739199145,266,0 +170739199193,266,0 +170739199241,266,0 +170739199289,267,0 +170739199338,265,0 +170739199386,266,0 +170739199434,266,0 +170739199482,267,0 +170739199530,266,0 +170739199578,266,0 +170739199626,266,0 +170739199674,266,0 +170739199722,266,0 +170739199770,266,0 +170739199818,266,0 +170739199866,265,0 +170739199914,266,0 +170739199963,266,0 +170739200011,266,0 +170739200059,266,0 +170739200107,266,0 +170739200155,265,0 +170739200204,266,0 +170739200252,266,0 +170739200300,266,0 +170739200348,266,0 +170739200396,266,0 +170739200444,266,0 +170739200492,266,0 +170739200539,266,0 +170739200587,266,0 +170739200635,266,0 +170739200683,266,0 +170739200731,266,0 +170739200779,266,0 +170739200827,266,0 +170739200875,266,0 +170739200923,266,0 +170739200971,266,0 +170739201019,266,0 +170739201067,266,0 +170739201116,266,0 +170739201164,266,0 +170739201212,266,0 +170739201261,266,0 +170739201309,267,0 +170739201357,266,0 +170739201405,266,0 +170739201453,266,0 +170739201501,266,0 +170739201549,266,0 +170739201597,266,0 +170739201645,266,0 +170739201693,266,0 +170739201741,266,0 +170739201788,266,0 +170739201836,266,0 +170739201886,266,0 +170739201934,266,0 +170739201982,266,0 +170739202030,266,0 +170739202078,266,0 +170739202126,266,0 +170739202175,266,0 +170739202225,266,0 +170739202272,266,0 +170739202320,266,0 +170739202370,266,0 +170739202418,266,0 +170739202466,266,0 +170739202514,266,0 +170739202561,266,0 +170739202609,266,0 +170739202659,266,0 +170739202707,266,0 +170739202755,267,0 +170739202804,266,0 +170739202854,266,0 +170739202902,265,0 +170739202951,266,0 +170739202999,266,0 +170739203047,266,0 +170739203095,266,0 +170739203144,266,0 +170739203192,266,0 +170739203240,266,0 +170739203290,266,0 +170739203338,266,0 +170739203387,266,0 +170739203435,266,0 +170739203485,266,0 +170739203533,266,0 +170739203581,266,0 +170739203629,266,0 +170739203678,266,0 +170739203726,266,0 +170739203776,267,0 +170739203824,266,0 +170739203873,266,0 +170739203923,266,0 +170739203972,266,0 +170739204020,266,0 +170739204068,267,0 +170739204117,266,0 +170739204165,266,0 +170739204215,266,0 +170739204263,266,0 +170739204312,266,0 +170739204360,266,0 +170739204408,266,0 +170739204456,266,0 +170739204504,266,0 +170739204552,267,0 +170739204600,266,0 +170739204648,266,0 +170739204696,266,0 +170739204744,267,0 +170739204792,266,0 +170739204840,266,0 +170739204888,266,0 +170739204937,266,0 +170739204985,266,0 +170739205033,267,0 +170739205081,266,0 +170739205129,266,0 +170739205179,266,0 +170739205227,266,0 +170739205274,266,0 +170739205322,266,0 +170739205370,266,0 +170739205418,266,0 +170739205468,266,0 +170739205515,266,0 +170739205563,267,0 +170739205611,266,0 +170739205661,266,0 +170739205709,266,0 +170739205756,266,0 +170739205804,267,0 +170739205852,266,0 +170739205902,266,0 +170739205950,267,0 +170739205998,266,0 +170739206046,266,0 +170739206094,266,0 +170739206142,266,0 +170739206191,266,0 +170739206239,266,0 +170739206289,266,0 +170739206337,266,0 +170739206386,267,0 +170739206434,266,0 +170739206482,267,0 +170739206530,266,0 +170739206578,265,0 +170739206626,266,0 +170739206674,266,0 +170739206722,267,0 +170739206771,267,0 +170739206819,267,0 +170739206867,266,0 +170739206915,266,0 +170739206965,266,0 +170739207013,266,0 +170739207060,266,0 +170739207108,266,0 +170739207156,266,0 +170739207204,266,0 +170739207252,266,0 +170739207300,266,0 +170739207350,266,0 +170739207399,266,0 +170739207449,266,0 +170739207497,267,0 +170739207545,267,0 +170739207594,266,0 +170739207642,266,0 +170739207690,267,0 +170739207740,266,0 +170739207788,266,0 +170739207837,266,0 +170739207885,266,0 +170739207933,266,0 +170739207981,266,0 +170739208029,266,0 +170739208077,266,0 +170739208125,266,0 +170739208174,266,0 +170739208224,266,0 +170739208272,266,0 +170739208320,266,0 +170739208368,266,0 +170739208416,266,0 +170739208464,266,0 +170739208513,267,0 +170739208563,266,0 +170739208611,266,0 +170739208659,266,0 +170739208707,267,0 +170739208755,267,0 +170739208803,266,0 +170739208851,266,0 +170739208899,266,0 +170739208946,267,0 +170739208994,267,0 +170739209042,267,0 +170739209090,266,0 +170739209138,266,0 +170739209186,266,0 +170739209234,266,0 +170739209284,266,0 +170739209332,265,0 +170739209380,266,0 +170739209428,266,0 +170739209476,267,0 +170739209524,266,0 +170739209572,266,0 +170739209619,266,0 +170739209667,266,0 +170739209717,266,0 +170739209765,266,0 +170739209814,266,0 +170739209864,266,0 +170739209913,267,0 +170739209961,266,0 +170739210009,266,0 +170739210057,266,0 +170739210107,266,0 +170739210155,267,0 +170739210204,267,0 +170739210252,267,0 +170739210300,266,0 +170739210348,266,0 +170739210396,266,0 +170739210444,267,0 +170739210492,266,0 +170739210540,266,0 +170739210588,266,0 +170739210636,266,0 +170739210685,267,0 +170739210733,266,0 +170739210781,266,0 +170739210829,266,0 +170739210877,267,0 +170739210927,266,0 +170739210975,266,0 +170739211023,266,0 +170739211072,266,0 +170739211122,266,0 +170739211170,267,0 +170739211219,267,0 +170739211267,266,0 +170739211315,266,0 +170739211363,266,0 +170739211411,266,0 +170739211459,267,0 +170739211507,266,0 +170739211554,267,0 +170739211602,266,0 +170739211650,266,0 +170739211698,266,0 +170739211746,266,0 +170739211794,266,0 +170739211842,266,0 +170739211890,266,0 +170739211939,266,0 +170739211987,266,0 +170739212035,266,0 +170739212083,266,0 +170739212133,266,0 +170739212181,266,0 +170739212229,266,0 +170739212277,266,0 +170739212324,266,0 +170739212374,266,0 +170739212422,266,0 +170739212470,266,0 +170739212518,267,0 +170739212567,266,0 +170739212615,266,0 +170739212663,266,0 +170739212711,266,0 +170739212759,266,0 +170739212807,267,0 +170739212857,266,0 +170739212904,266,0 +170739212952,266,0 +170739213000,266,0 +170739213050,266,0 +170739213098,266,0 +170739213146,266,0 +170739213195,265,0 +170739213243,266,0 +170739213291,266,0 +170739213339,266,0 +170739213387,266,0 +170739213437,266,0 +170739213485,266,0 +170739213533,266,0 +170739213581,265,0 +170739213629,265,0 +170739213677,266,0 +170739213726,266,0 +170739213774,266,0 +170739213822,266,0 +170739213871,265,0 +170739213919,265,0 +170739213969,266,0 +170739214018,266,0 +170739214066,266,0 +170739214116,266,0 +170739214164,266,0 +170739214212,266,0 +170739214260,266,0 +170739214308,266,0 +170739214356,266,0 +170739214403,265,0 +170739214451,266,0 +170739214499,266,0 +170739214549,266,0 +170739214597,266,0 +170739214645,266,0 +170739214694,266,0 +170739214744,266,0 +170739214792,266,0 +170739214841,266,0 +170739214889,265,0 +170739214937,265,0 +170739214985,266,0 +170739215033,266,0 +170739215081,265,0 +170739215129,265,0 +170739215178,266,0 +170739215226,266,0 +170739215274,266,0 +170739215322,266,0 +170739215370,266,0 +170739215420,265,0 +170739215468,266,0 +170739215516,266,0 +170739215564,266,0 +170739215613,265,0 +170739215663,265,0 +170739215711,265,0 +170739215759,266,0 +170739215807,266,0 +170739215855,266,0 +170739215903,265,0 +170739215950,265,0 +170739215998,266,0 +170739216046,266,0 +170739216094,266,0 +170739216142,266,0 +170739216190,266,0 +170739216238,266,0 +170739216286,266,0 +170739216334,265,0 +170739216382,265,0 +170739216430,266,0 +170739216478,266,0 +170739216526,266,0 +170739216574,265,0 +170739216622,265,0 +170739216670,266,0 +170739216717,265,0 +170739216765,266,0 +170739216813,266,0 +170739216861,266,0 +170739216909,266,0 +170739216957,266,0 +170739217005,266,0 +170739217055,266,0 +170739217102,266,0 +170739217150,265,0 +170739217200,266,0 +170739217249,265,0 +170739217297,266,0 +170739217347,266,0 +170739217395,266,0 +170739217444,265,0 +170739217492,266,0 +170739217542,266,0 +170739217590,265,0 +170739217638,266,0 +170739217686,266,0 +170739217735,266,0 +170739217783,266,0 +170739217831,266,0 +170739217879,266,0 +170739217927,266,0 +170739217977,266,0 +170739218024,266,0 +170739218074,265,0 +170739218122,266,0 +170739218170,266,0 +170739218218,266,0 +170739218266,265,0 +170739218314,265,0 +170739218363,265,0 +170739218411,266,0 +170739218461,266,0 +170739218509,265,0 +170739218557,266,0 +170739218606,265,0 +170739218654,266,0 +170739218704,266,0 +170739218752,266,0 +170739218800,265,0 +170739218849,266,0 +170739218899,265,0 +170739218948,266,0 +170739218996,266,0 +170739219044,265,0 +170739219092,265,0 +170739219142,265,0 +170739219190,265,0 +170739219239,265,0 +170739219287,266,0 +170739219336,266,0 +170739219384,266,0 +170739219432,265,0 +170739219480,266,0 +170739219528,266,0 +170739219578,266,0 +170739219626,266,0 +170739219674,265,0 +170739219722,265,0 +170739219770,266,0 +170739219818,265,0 +170739219866,265,0 +170739219914,265,0 +170739219962,265,0 +170739220009,265,0 +170739220059,265,0 +170739220107,265,0 +170739220156,265,0 +170739220204,265,0 +170739220252,265,0 +170739220300,265,0 +170739220348,265,0 +170739220396,265,0 +170739220446,265,0 +170739220494,266,0 +170739220542,266,0 +170739220591,265,0 +170739220639,265,0 +170739220687,265,0 +170739220735,265,0 +170739220785,265,0 +170739220833,265,0 +170739220881,265,0 +170739220929,266,0 +170739220977,266,0 +170739221025,265,0 +170739221072,265,0 +170739221120,265,0 +170739221168,266,0 +170739221216,266,0 +170739221264,265,0 +170739221312,266,0 +170739221360,265,0 +170739221408,265,0 +170739221455,265,0 +170739221503,266,0 +170739221551,266,0 +170739221599,265,0 +170739221647,266,0 +170739221695,266,0 +170739221743,265,0 +170739221791,265,0 +170739221841,265,0 +170739221890,265,0 +170739221940,265,0 +170739221988,265,0 +170739222037,266,0 +170739222085,265,0 +170739222133,265,0 +170739222183,265,0 +170739222231,266,0 +170739222279,265,0 +170739222327,265,0 +170739222375,266,0 +170739222423,265,0 +170739222470,265,0 +170739222518,265,0 +170739222566,265,0 +170739222614,265,0 +170739222662,265,0 +170739222710,265,0 +170739222758,265,0 +170739222807,266,0 +170739222855,266,0 +170739222903,266,0 +170739222953,266,0 +170739223002,266,0 +170739223052,266,0 +170739223099,265,0 +170739223147,265,0 +170739223195,265,0 +170739223243,266,0 +170739223291,265,0 +170739223340,265,0 +170739223388,265,0 +170739223436,265,0 +170739223484,265,0 +170739223532,265,0 +170739223580,265,0 +170739223628,265,0 +170739223678,265,0 +170739223725,265,0 +170739223773,265,0 +170739223821,264,0 +170739223869,265,0 +170739223917,265,0 +170739223967,265,0 +170739224015,265,0 +170739224063,265,0 +170739224110,265,0 +170739224158,265,0 +170739224206,265,0 +170739224256,265,0 +170739224304,265,0 +170739224351,265,0 +170739224399,265,0 +170739224447,264,0 +170739224495,265,0 +170739224543,265,0 +170739224591,265,0 +170739224640,265,0 +170739224690,265,0 +170739224738,265,0 +170739224786,265,0 +170739224833,265,0 +170739224881,265,0 +170739224929,265,0 +170739224977,265,0 +170739225025,265,0 +170739225073,265,0 +170739225121,265,0 +170739225170,265,0 +170739225218,266,0 +170739225266,265,0 +170739225316,265,0 +170739225363,265,0 +170739225411,265,0 +170739225459,265,0 +170739225507,265,0 +170739225555,265,0 +170739225603,265,0 +170739225650,264,0 +170739225698,265,0 +170739225746,264,0 +170739225794,265,0 +170739225842,265,0 +170739225890,265,0 +170739225938,265,0 +170739225986,265,0 +170739226034,265,0 +170739226082,265,0 +170739226131,265,0 +170739226180,265,0 +170739226228,265,0 +170739226278,264,0 +170739226326,265,0 +170739226374,265,0 +170739226422,265,0 +170739226470,265,0 +170739226518,265,0 +170739226566,265,0 +170739226614,265,0 +170739226662,265,0 +170739226710,265,0 +170739226758,264,0 +170739226806,265,0 +170739226853,265,0 +170739226901,265,0 +170739226949,265,0 +170739226997,265,0 +170739227047,264,0 +170739227096,265,0 +170739227144,265,0 +170739227192,265,0 +170739227240,265,0 +170739227290,265,0 +170739227338,265,0 +170739227386,265,0 +170739227434,264,0 +170739227481,264,0 +170739227529,265,0 +170739227579,264,0 +170739227627,265,0 +170739227675,265,0 +170739227723,265,0 +170739227771,264,0 +170739227820,264,0 +170739227868,265,0 +170739227916,264,0 +170739227964,265,0 +170739228012,265,0 +170739228060,264,0 +170739228107,265,0 +170739228155,265,0 +170739228203,265,0 +170739228253,265,0 +170739228302,265,0 +170739228350,265,0 +170739228398,264,0 +170739228446,265,0 +170739228494,264,0 +170739228542,265,0 +170739228589,264,0 +170739228637,265,0 +170739228685,265,0 +170739228733,265,0 +170739228781,264,0 +170739228829,265,0 +170739228877,265,0 +170739228925,265,0 +170739228972,264,0 +170739229020,264,0 +170739229068,265,0 +170739229116,265,0 +170739229164,265,0 +170739229212,265,0 +170739229260,265,0 +170739229308,265,0 +170739229355,265,0 +170739229403,264,0 +170739229451,265,0 +170739229499,265,0 +170739229547,265,0 +170739229595,264,0 +170739229643,264,0 +170739229691,264,0 +170739229738,266,0 +170739229786,265,0 +170739229834,264,0 +170739229882,264,0 +170739229930,265,0 +170739229978,265,0 +170739230026,265,0 +170739230075,264,0 +170739230123,264,0 +170739230173,264,0 +170739230220,265,0 +170739230268,264,0 +170739230316,264,0 +170739230364,264,0 +170739230412,265,0 +170739230460,265,0 +170739230508,264,0 +170739230556,265,0 +170739230604,264,0 +170739230652,266,0 +170739230699,265,0 +170739230747,265,0 +170739230795,265,0 +170739230843,265,0 +170739230891,265,0 +170739230939,265,0 +170739230987,265,0 +170739231035,265,0 +170739231082,265,0 +170739231130,265,0 +170739231178,265,0 +170739231226,265,0 +170739231274,265,0 +170739231322,264,0 +170739231370,265,0 +170739231418,265,0 +170739231467,265,0 +170739231515,265,0 +170739231563,265,0 +170739231613,265,0 +170739231661,265,0 +170739231709,265,0 +170739231756,265,0 +170739231804,265,0 +170739231854,265,0 +170739231902,264,0 +170739231951,264,0 +170739231999,265,0 +170739232047,265,0 +170739232095,265,0 +170739232145,266,0 +170739232193,264,0 +170739232241,265,0 +170739232289,265,0 +170739232337,265,0 +170739232385,265,0 +170739232433,265,0 +170739232481,264,0 +170739232529,264,0 +170739232577,265,0 +170739232625,265,0 +170739232672,264,0 +170739232720,264,0 +170739232768,265,0 +170739232818,265,0 +170739232867,264,0 +170739232915,265,0 +170739232965,265,0 +170739233013,265,0 +170739233061,265,0 +170739233109,265,0 +170739233157,264,0 +170739233206,264,0 +170739233254,265,0 +170739233302,265,0 +170739233350,265,0 +170739233398,265,0 +170739233446,264,0 +170739233494,264,0 +170739233543,265,0 +170739233593,265,0 +170739233642,265,0 +170739233690,264,0 +170739233738,265,0 +170739233788,265,0 +170739233836,264,0 +170739233884,265,0 +170739233933,265,0 +170739233981,264,0 +170739234029,264,0 +170739234077,264,0 +170739234127,264,0 +170739234175,265,0 +170739234223,265,0 +170739234272,265,0 +170739234321,265,0 +170739234371,265,0 +170739234420,264,0 +170739234470,265,0 +170739234519,265,0 +170739234569,265,0 +170739234619,265,0 +170739234668,265,0 +170739234716,265,0 +170739234764,264,0 +170739234812,264,0 +170739234860,264,0 +170739234908,265,0 +170739234956,264,0 +170739235003,264,0 +170739235051,265,0 +170739235099,264,0 +170739235147,265,0 +170739235195,264,0 +170739235243,264,0 +170739235291,265,0 +170739235339,264,0 +170739235386,264,0 +170739235434,265,0 +170739235482,265,0 +170739235530,266,0 +170739235578,265,0 +170739235626,264,0 +170739235674,264,0 +170739235721,264,0 +170739235769,265,0 +170739235819,264,0 +170739235867,265,0 +170739235916,265,0 +170739235966,265,0 +170739236014,264,0 +170739236062,264,0 +170739236110,264,0 +170739236159,265,0 +170739236207,265,0 +170739236257,265,0 +170739236306,264,0 +170739236354,265,0 +170739236402,264,0 +170739236452,265,0 +170739236500,265,0 +170739236547,265,0 +170739236595,264,0 +170739236643,265,0 +170739236691,264,0 +170739236739,265,0 +170739236787,264,0 +170739236837,264,0 +170739236886,264,0 +170739236936,265,0 +170739236984,265,0 +170739237032,264,0 +170739237081,265,0 +170739237129,265,0 +170739237179,264,0 +170739237227,265,0 +170739237276,265,0 +170739237324,264,0 +170739237372,265,0 +170739237422,265,0 +170739237471,265,0 +170739237519,265,0 +170739237567,265,0 +170739237615,264,0 +170739237663,264,0 +170739237711,265,0 +170739237759,264,0 +170739237807,265,0 +170739237855,264,0 +170739237903,265,0 +170739237951,265,0 +170739237998,265,0 +170739238048,264,0 +170739238096,265,0 +170739238144,265,0 +170739238192,265,0 +170739238239,265,0 +170739238287,264,0 +170739238335,264,0 +170739238383,264,0 +170739238431,265,0 +170739238479,265,0 +170739238527,264,0 +170739238575,265,0 +170739238622,265,0 +170739238672,265,0 +170739238720,264,0 +170739238768,264,0 +170739238816,264,0 +170739238863,265,0 +170739238911,264,0 +170739238959,265,0 +170739239007,265,0 +170739239055,265,0 +170739239103,265,0 +170739239151,265,0 +170739239199,265,0 +170739239246,264,0 +170739239294,265,0 +170739239344,265,0 +170739239392,265,0 +170739239440,265,0 +170739239487,264,0 +170739239535,265,0 +170739239583,264,0 +170739239631,264,0 +170739239679,264,0 +170739239727,264,0 +170739239776,264,0 +170739239824,264,0 +170739239872,264,0 +170739239920,264,0 +170739239968,265,0 +170739240016,264,0 +170739240065,264,0 +170739240113,264,0 +170739240161,265,0 +170739240209,264,0 +170739240257,264,0 +170739240304,264,0 +170739240352,264,0 +170739240400,264,0 +170739240448,265,0 +170739240496,264,0 +170739240544,265,0 +170739240592,265,0 +170739240640,265,0 +170739240689,264,0 +170739240737,264,0 +170739240785,264,0 +170739240833,264,0 +170739240881,264,0 +170739240929,264,0 +170739240976,264,0 +170739241026,264,0 +170739241074,265,0 +170739241122,264,0 +170739241169,265,0 +170739241217,264,0 +170739241265,264,0 +170739241313,264,0 +170739241361,265,0 +170739241409,264,0 +170739241457,265,0 +170739241505,265,0 +170739241553,264,0 +170739241602,264,0 +170739241650,264,0 +170739241698,264,0 +170739241746,264,0 +170739241794,264,0 +170739241842,264,0 +170739241889,265,0 +170739241937,265,0 +170739241985,264,0 +170739242033,264,0 +170739242081,264,0 +170739242129,264,0 +170739242177,264,0 +170739242225,264,0 +170739242274,263,0 +170739242324,264,0 +170739242372,264,0 +170739242420,264,0 +170739242468,265,0 +170739242516,265,0 +170739242564,265,0 +170739242613,264,0 +170739242663,265,0 +170739242711,264,0 +170739242759,264,0 +170739242808,264,0 +170739242856,264,0 +170739242904,264,0 +170739242952,264,0 +170739243000,264,0 +170739243048,264,0 +170739243096,264,0 +170739243144,264,0 +170739243194,264,0 +170739243242,264,0 +170739243290,264,0 +170739243338,263,0 +170739243385,264,0 +170739243433,265,0 +170739243481,264,0 +170739243531,264,0 +170739243579,263,0 +170739243628,263,0 +170739243678,264,0 +170739243726,264,0 +170739243775,263,0 +170739243823,264,0 +170739243871,263,0 +170739243921,263,0 +170739243969,264,0 +170739244017,265,0 +170739244065,264,0 +170739244113,264,0 +170739244162,263,0 +170739244210,264,0 +170739244258,264,0 +170739244306,263,0 +170739244354,263,0 +170739244403,264,0 +170739244451,264,0 +170739244499,264,0 +170739244549,263,0 +170739244597,263,0 +170739244646,263,0 +170739244694,263,0 +170739244744,263,0 +170739244792,264,0 +170739244840,263,0 +170739244888,263,0 +170739244937,263,0 +170739244985,263,0 +170739245033,263,0 +170739245081,264,0 +170739245129,263,0 +170739245179,264,0 +170739245228,263,0 +170739245278,263,0 +170739245327,263,0 +170739245375,263,0 +170739245425,263,0 +170739245473,264,0 +170739245521,263,0 +170739245568,264,0 +170739245616,263,0 +170739245664,264,0 +170739245712,263,0 +170739245760,263,0 +170739245808,264,0 +170739245856,264,0 +170739245904,264,0 +170739245951,263,0 +170739245999,263,0 +170739246047,263,0 +170739246095,264,0 +170739246143,264,0 +170739246191,264,0 +170739246239,264,0 +170739246287,263,0 +170739246334,263,0 +170739246382,263,0 +170739246430,263,0 +170739246480,263,0 +170739246529,263,0 +170739246577,263,0 +170739246625,264,0 +170739246673,263,0 +170739246721,263,0 +170739246770,263,0 +170739246818,263,0 +170739246866,263,0 +170739246914,263,0 +170739246962,263,0 +170739247011,263,0 +170739247061,263,0 +170739247110,264,0 +170739247158,263,0 +170739247208,264,0 +170739247256,263,0 +170739247305,264,0 +170739247353,263,0 +170739247401,262,0 +170739247451,263,0 +170739247499,264,0 +170739247547,264,0 +170739247595,264,0 +170739247643,263,0 +170739247690,263,0 +170739247738,263,0 +170739247786,264,0 +170739247834,263,0 +170739247882,264,0 +170739247931,264,0 +170739247979,263,0 +170739248027,264,0 +170739248075,263,0 +170739248123,263,0 +170739248171,264,0 +170739248219,264,0 +170739248266,264,0 +170739248314,264,0 +170739248362,263,0 +170739248410,263,0 +170739248458,263,0 +170739248506,264,0 +170739248554,264,0 +170739248602,263,0 +170739248649,263,0 +170739248697,263,0 +170739248745,264,0 +170739248793,263,0 +170739248841,264,0 +170739248890,263,0 +170739248938,264,0 +170739248986,264,0 +170739249034,263,0 +170739249082,263,0 +170739249130,264,0 +170739249178,264,0 +170739249226,263,0 +170739249274,264,0 +170739249321,263,0 +170739249369,263,0 +170739249417,263,0 +170739249465,264,0 +170739249513,264,0 +170739249561,264,0 +170739249609,264,0 +170739249657,264,0 +170739249705,263,0 +170739249753,264,0 +170739249800,264,0 +170739249848,263,0 +170739249896,263,0 +170739249944,263,0 +170739249992,264,0 +170739250040,264,0 +170739250089,263,0 +170739250137,263,0 +170739250185,263,0 +170739250233,263,0 +170739250281,263,0 +170739250329,264,0 +170739250379,263,0 +170739250427,264,0 +170739250475,263,0 +170739250522,263,0 +170739250570,263,0 +170739250618,263,0 +170739250666,263,0 +170739250714,263,0 +170739250762,263,0 +170739250811,263,0 +170739250859,264,0 +170739250907,264,0 +170739250955,263,0 +170739251004,263,0 +170739251052,263,0 +170739251100,264,0 +170739251148,264,0 +170739251198,263,0 +170739251247,263,0 +170739251297,263,0 +170739251345,263,0 +170739251394,263,0 +170739251442,264,0 +170739251492,263,0 +170739251540,264,0 +170739251589,263,0 +170739251637,263,0 +170739251685,263,0 +170739251735,263,0 +170739251783,263,0 +170739251831,263,0 +170739251879,264,0 +170739251927,263,0 +170739251975,263,0 +170739252023,263,0 +170739252070,263,0 +170739252118,263,0 +170739252166,263,0 +170739252214,263,0 +170739252262,263,0 +170739252310,263,0 +170739252360,263,0 +170739252408,263,0 +170739252456,263,0 +170739252504,263,0 +170739252553,263,0 +170739252601,263,0 +170739252649,263,0 +170739252697,263,0 +170739252747,263,0 +170739252795,263,0 +170739252844,262,0 +170739252894,263,0 +170739252942,264,0 +170739252990,264,0 +170739253038,263,0 +170739253086,263,0 +170739253135,263,0 +170739253183,263,0 +170739253231,263,0 +170739253279,263,0 +170739253327,262,0 +170739253375,263,0 +170739253423,264,0 +170739253471,263,0 +170739253519,263,0 +170739253567,263,0 +170739253615,263,0 +170739253664,263,0 +170739253714,263,0 +170739253762,263,0 +170739253811,263,0 +170739253859,263,0 +170739253907,263,0 +170739253955,263,0 +170739254003,263,0 +170739254051,263,0 +170739254099,263,0 +170739254149,263,0 +170739254196,263,0 +170739254244,263,0 +170739254294,263,0 +170739254342,263,0 +170739254390,263,0 +170739254438,263,0 +170739254486,263,0 +170739254535,263,0 +170739254583,263,0 +170739254632,263,0 +170739254680,263,0 +170739254728,263,0 +170739254776,263,0 +170739254824,263,0 +170739254872,264,0 +170739254920,264,0 +170739254968,263,0 +170739255016,263,0 +170739255065,263,0 +170739255113,263,0 +170739255161,263,0 +170739255209,263,0 +170739255257,263,0 +170739255305,263,0 +170739255353,264,0 +170739255401,263,0 +170739255449,263,0 +170739255497,262,0 +170739255545,263,0 +170739255593,263,0 +170739255643,263,0 +170739255691,263,0 +170739255739,263,0 +170739255788,263,0 +170739255838,263,0 +170739255886,263,0 +170739255934,264,0 +170739255983,263,0 +170739256031,263,0 +170739256081,263,0 +170739256129,263,0 +170739256177,263,0 +170739256225,263,0 +170739256272,263,0 +170739256322,263,0 +170739256370,263,0 +170739256418,263,0 +170739256466,263,0 +170739256514,263,0 +170739256561,263,0 +170739256611,263,0 +170739256659,263,0 +170739256707,262,0 +170739256755,263,0 +170739256802,263,0 +170739256850,263,0 +170739256898,263,0 +170739256946,263,0 +170739256996,263,0 +170739257044,264,0 +170739257091,263,0 +170739257139,263,0 +170739257187,263,0 +170739257237,263,0 +170739257285,263,0 +170739257334,263,0 +170739257382,263,0 +170739257432,263,0 +170739257480,263,0 +170739257528,262,0 +170739257578,262,0 +170739257626,262,0 +170739257673,263,0 +170739257721,263,0 +170739257771,263,0 +170739257819,263,0 +170739257867,263,0 +170739257914,263,0 +170739257962,263,0 +170739258010,263,0 +170739258058,263,0 +170739258106,263,0 +170739258154,263,0 +170739258202,263,0 +170739258250,263,0 +170739258300,263,0 +170739258348,263,0 +170739258397,263,0 +170739258447,263,0 +170739258496,263,0 +170739258544,263,0 +170739258592,263,0 +170739258640,263,0 +170739258688,263,0 +170739258735,262,0 +170739258783,262,0 +170739258831,263,0 +170739258879,263,0 +170739258927,263,0 +170739258977,263,0 +170739259026,263,0 +170739259074,262,0 +170739259122,263,0 +170739259170,263,0 +170739259217,262,0 +170739259265,262,0 +170739259313,263,0 +170739259361,263,0 +170739259409,263,0 +170739259457,263,0 +170739259506,263,0 +170739259554,262,0 +170739259602,263,0 +170739259650,263,0 +170739259698,263,0 +170739259746,262,0 +170739259794,262,0 +170739259842,263,0 +170739259891,262,0 +170739259939,263,0 +170739259987,263,0 +170739260036,263,0 +170739260084,263,0 +170739260132,263,0 +170739260180,262,0 +170739260228,262,0 +170739260276,262,0 +170739260324,263,0 +170739260371,263,0 +170739260421,263,0 +170739260469,263,0 +170739260517,262,0 +170739260564,263,0 +170739260612,263,0 +170739260660,263,0 +170739260709,263,0 +170739260757,263,0 +170739260805,263,0 +170739260853,262,0 +170739260901,263,0 +170739260949,263,0 +170739260997,263,0 +170739261045,262,0 +170739261094,262,0 +170739261142,263,0 +170739261190,263,0 +170739261238,263,0 +170739261285,263,0 +170739261333,262,0 +170739261381,263,0 +170739261431,263,0 +170739261479,262,0 +170739261527,262,0 +170739261575,263,0 +170739261622,263,0 +170739261672,262,0 +170739261721,263,0 +170739261771,263,0 +170739261820,263,0 +170739261868,263,0 +170739261916,263,0 +170739261964,263,0 +170739262012,263,0 +170739262060,263,0 +170739262109,262,0 +170739262157,263,0 +170739262205,262,0 +170739262253,262,0 +170739262301,262,0 +170739262349,262,0 +170739262396,262,0 +170739262444,262,0 +170739262492,262,0 +170739262540,263,0 +170739262588,263,0 +170739262636,262,0 +170739262685,262,0 +170739262733,262,0 +170739262781,262,0 +170739262829,262,0 +170739262877,263,0 +170739262925,262,0 +170739262973,263,0 +170739263021,262,0 +170739263069,262,0 +170739263116,262,0 +170739263164,262,0 +170739263212,262,0 +170739263260,263,0 +170739263309,262,0 +170739263357,262,0 +170739263405,262,0 +170739263453,262,0 +170739263501,262,0 +170739263549,262,0 +170739263597,263,0 +170739263645,263,0 +170739263692,262,0 +170739263740,262,0 +170739263788,262,0 +170739263836,262,0 +170739263884,262,0 +170739263932,262,0 +170739263980,263,0 +170739264029,262,0 +170739264077,262,0 +170739264125,262,0 +170739264173,262,0 +170739264221,262,0 +170739264268,263,0 +170739264316,262,0 +170739264364,262,0 +170739264412,262,0 +170739264462,262,0 +170739264509,262,0 +170739264557,262,0 +170739264605,262,0 +170739264653,262,0 +170739264701,263,0 +170739264749,262,0 +170739264797,262,0 +170739264845,262,0 +170739264894,262,0 +170739264942,262,0 +170739264990,262,0 +170739265038,262,0 +170739265087,262,0 +170739265135,262,0 +170739265183,263,0 +170739265231,263,0 +170739265279,262,0 +170739265327,262,0 +170739265374,262,0 +170739265422,262,0 +170739265470,262,0 +170739265518,262,0 +170739265566,262,0 +170739265614,262,0 +170739265662,262,0 +170739265710,262,0 +170739265757,262,0 +170739265805,262,0 +170739265853,262,0 +170739265901,262,0 +170739265949,262,0 +170739265998,262,0 +170739266048,262,0 +170739266096,262,0 +170739266144,262,0 +170739266192,262,0 +170739266239,262,0 +170739266287,262,0 +170739266335,262,0 +170739266383,262,0 +170739266433,262,0 +170739266483,263,0 +170739266531,263,0 +170739266578,262,0 +170739266628,262,0 +170739266676,262,0 +170739266724,262,0 +170739266772,262,0 +170739266820,262,0 +170739266868,262,0 +170739266917,262,0 +170739266965,263,0 +170739267013,262,0 +170739267061,262,0 +170739267109,262,0 +170739267159,262,0 +170739267207,263,0 +170739267255,262,0 +170739267303,262,0 +170739267352,262,0 +170739267400,262,0 +170739267448,262,0 +170739267496,262,0 +170739267544,262,0 +170739267592,262,0 +170739267640,262,0 +170739267688,262,0 +170739267737,263,0 +170739267785,262,0 +170739267833,263,0 +170739267881,262,0 +170739267929,262,0 +170739267977,262,0 +170739268027,262,0 +170739268075,262,0 +170739268122,262,0 +170739268172,262,0 +170739268222,262,0 +170739268270,263,0 +170739268318,263,0 +170739268366,262,0 +170739268414,262,0 +170739268463,262,0 +170739268511,262,0 +170739268559,263,0 +170739268607,263,0 +170739268655,262,0 +170739268703,263,0 +170739268751,262,0 +170739268799,262,0 +170739268847,262,0 +170739268896,263,0 +170739268944,263,0 +170739268992,262,0 +170739269042,262,0 +170739269090,262,0 +170739269138,262,0 +170739269186,262,0 +170739269234,262,0 +170739269283,263,0 +170739269331,262,0 +170739269379,263,0 +170739269427,262,0 +170739269477,262,0 +170739269525,262,0 +170739269573,262,0 +170739269622,262,0 +170739269670,262,0 +170739269718,263,0 +170739269766,262,0 +170739269814,263,0 +170739269862,263,0 +170739269910,263,0 +170739269958,262,0 +170739270006,262,0 +170739270055,262,0 +170739270103,262,0 +170739270153,263,0 +170739270201,263,0 +170739270250,262,0 +170739270298,262,0 +170739270348,262,0 +170739270397,262,0 +170739270445,262,0 +170739270493,262,0 +170739270541,262,0 +170739270589,262,0 +170739270637,263,0 +170739270687,263,0 +170739270735,263,0 +170739270783,262,0 +170739270831,263,0 +170739270880,263,0 +170739270928,262,0 +170739270976,262,0 +170739271024,262,0 +170739271072,263,0 +170739271121,262,0 +170739271171,262,0 +170739271219,262,0 +170739271267,263,0 +170739271316,263,0 +170739271364,263,0 +170739271412,262,0 +170739271460,263,0 +170739271508,262,0 +170739271558,262,0 +170739271608,262,0 +170739271657,262,0 +170739271707,262,0 +170739271754,263,0 +170739271802,263,0 +170739271852,263,0 +170739271900,262,0 +170739271948,262,0 +170739271997,263,0 +170739272045,262,0 +170739272093,263,0 +170739272141,263,0 +170739272189,262,0 +170739272237,262,0 +170739272287,262,0 +170739272335,262,0 +170739272383,263,0 +170739272431,263,0 +170739272479,262,0 +170739272527,263,0 +170739272575,263,0 +170739272623,262,0 +170739272671,262,0 +170739272720,263,0 +170739272770,262,0 +170739272818,263,0 +170739272867,263,0 +170739272915,263,0 +170739272965,263,0 +170739273013,263,0 +170739273061,263,0 +170739273108,263,0 +170739273156,262,0 +170739273204,262,0 +170739273252,263,0 +170739273300,263,0 +170739273348,262,0 +170739273398,262,0 +170739273447,262,0 +170739273495,263,0 +170739273543,263,0 +170739273591,262,0 +170739273639,262,0 +170739273687,262,0 +170739273735,263,0 +170739273783,262,0 +170739273831,262,0 +170739273879,262,0 +170739273927,262,0 +170739273975,262,0 +170739274023,262,0 +170739274073,262,0 +170739274120,262,0 +170739274168,262,0 +170739274216,262,0 +170739274264,262,0 +170739274314,262,0 +170739274363,262,0 +170739274411,262,0 +170739274459,263,0 +170739274509,262,0 +170739274557,262,0 +170739274606,262,0 +170739274654,262,0 +170739274704,262,0 +170739274753,262,0 +170739274801,262,0 +170739274851,262,0 +170739274899,262,0 +170739274948,262,0 +170739274998,262,0 +170739275046,262,0 +170739275094,262,0 +170739275142,261,0 +170739275190,261,0 +170739275238,262,0 +170739275285,262,0 +170739275333,262,0 +170739275383,262,0 +170739275432,262,0 +170739275480,262,0 +170739275528,262,0 +170739275576,262,0 +170739275624,262,0 +170739275672,262,0 +170739275720,261,0 +170739275769,261,0 +170739275817,262,0 +170739275867,262,0 +170739275916,261,0 +170739275966,261,0 +170739276014,261,0 +170739276062,261,0 +170739276110,262,0 +170739276158,261,0 +170739276206,262,0 +170739276255,262,0 +170739276305,261,0 +170739276354,262,0 +170739276404,261,0 +170739276453,261,0 +170739276503,262,0 +170739276551,261,0 +170739276599,262,0 +170739276647,261,0 +170739276695,262,0 +170739276742,261,0 +170739276792,261,0 +170739276840,261,0 +170739276889,261,0 +170739276937,262,0 +170739276987,262,0 +170739277037,262,0 +170739277084,262,0 +170739277132,261,0 +170739277180,262,0 +170739277228,262,0 +170739277278,262,0 +170739277326,261,0 +170739277374,261,0 +170739277422,262,0 +170739277470,262,0 +170739277519,261,0 +170739277569,261,0 +170739277616,262,0 +170739277664,261,0 +170739277712,261,0 +170739277762,261,0 +170739277810,261,0 +170739277859,261,0 +170739277907,261,0 +170739277955,261,0 +170739278003,261,0 +170739278051,261,0 +170739278099,261,0 +170739278147,261,0 +170739278195,262,0 +170739278245,261,0 +170739278292,261,0 +170739278340,261,0 +170739278388,261,0 +170739278436,261,0 +170739278484,261,0 +170739278532,262,0 +170739278580,261,0 +170739278628,261,0 +170739278678,261,0 +170739278726,261,0 +170739278773,262,0 +170739278821,262,0 +170739278869,262,0 +170739278919,262,0 +170739278967,261,0 +170739279016,262,0 +170739279064,261,0 +170739279114,262,0 +170739279162,261,0 +170739279211,261,0 +170739279259,261,0 +170739279307,261,0 +170739279355,262,0 +170739279403,262,0 +170739279451,262,0 +170739279499,262,0 +170739279547,262,0 +170739279595,262,0 +170739279643,262,0 +170739279691,261,0 +170739279739,262,0 +170739279787,262,0 +170739279835,262,0 +170739279882,261,0 +170739279930,262,0 +170739279978,262,0 +170739280026,262,0 +170739280074,262,0 +170739280122,262,0 +170739280170,262,0 +170739280218,262,0 +170739280266,262,0 +170739280315,262,0 +170739280363,262,0 +170739280412,263,0 +170739280460,262,0 +170739280508,262,0 +170739280556,263,0 +170739280604,262,0 +170739280652,262,0 +170739280702,262,0 +170739280750,262,0 +170739280798,262,0 +170739280847,262,0 +170739280895,262,0 +170739280943,262,0 +170739280991,262,0 +170739281039,262,0 +170739281087,262,0 +170739281135,262,0 +170739281183,262,0 +170739281231,262,0 +170739281279,262,0 +170739281327,262,0 +170739281375,262,0 +170739281423,262,0 +170739281471,262,0 +170739281518,261,0 +170739281568,262,0 +170739281616,262,0 +170739281664,262,0 +170739281712,262,0 +170739281760,262,0 +170739281808,262,0 +170739281856,262,0 +170739281904,262,0 +170739281953,262,0 +170739282001,262,0 +170739282049,263,0 +170739282097,262,0 +170739282147,262,0 +170739282196,262,0 +170739282244,263,0 +170739282292,262,0 +170739282342,262,0 +170739282390,262,0 +170739282439,262,0 +170739282487,262,0 +170739282537,262,0 +170739282585,262,0 +170739282634,262,0 +170739282682,262,0 +170739282730,261,0 +170739282778,261,0 +170739282827,262,0 +170739282877,262,0 +170739282925,262,0 +170739282973,262,0 +170739283021,262,0 +170739283069,262,0 +170739283117,263,0 +170739283165,262,0 +170739283213,262,0 +170739283261,262,0 +170739283309,262,0 +170739283358,262,0 +170739283408,262,0 +170739283457,262,0 +170739283507,262,0 +170739283555,262,0 +170739283603,262,0 +170739283652,262,0 +170739283700,262,0 +170739283750,262,0 +170739283797,262,0 +170739283847,262,0 +170739283895,262,0 +170739283943,262,0 +170739283991,262,0 +170739284039,262,0 +170739284089,262,0 +170739284136,262,0 +170739284184,262,0 +170739284232,262,0 +170739284280,262,0 +170739284330,262,0 +170739284378,262,0 +170739284427,262,0 +170739284477,262,0 +170739284527,262,0 +170739284574,262,0 +170739284622,261,0 +170739284670,262,0 +170739284718,262,0 +170739284766,262,0 +170739284814,262,0 +170739284862,262,0 +170739284910,262,0 +170739284958,262,0 +170739285006,262,0 +170739285056,261,0 +170739285104,262,0 +170739285152,262,0 +170739285201,262,0 +170739285251,262,0 +170739285299,262,0 +170739285347,262,0 +170739285395,262,0 +170739285443,262,0 +170739285491,262,0 +170739285539,262,0 +170739285587,262,0 +170739285635,262,0 +170739285683,263,0 +170739285730,263,0 +170739285778,262,0 +170739285826,262,0 +170739285874,263,0 +170739285922,263,0 +170739285972,262,0 +170739286021,263,0 +170739286071,263,0 +170739286120,263,0 +170739286168,262,0 +170739286218,262,0 +170739286266,262,0 +170739286315,262,0 +170739286363,262,0 +170739286411,263,0 +170739286461,262,0 +170739286510,262,0 +170739286558,263,0 +170739286606,262,0 +170739286656,262,0 +170739286704,263,0 +170739286753,263,0 +170739286801,263,0 +170739286849,262,0 +170739286897,262,0 +170739286945,263,0 +170739286993,263,0 +170739287041,262,0 +170739287091,262,0 +170739287139,262,0 +170739287187,263,0 +170739287235,262,0 +170739287284,262,0 +170739287332,262,0 +170739287382,262,0 +170739287430,262,0 +170739287479,263,0 +170739287527,262,0 +170739287576,262,0 +170739287624,262,0 +170739287672,263,0 +170739287722,263,0 +170739287770,262,0 +170739287818,262,0 +170739287867,262,0 +170739287915,262,0 +170739287965,262,0 +170739288014,262,0 +170739288062,262,0 +170739288110,263,0 +170739288158,262,0 +170739288206,262,0 +170739288254,262,0 +170739288302,262,0 +170739288350,262,0 +170739288398,262,0 +170739288446,262,0 +170739288494,262,0 +170739288542,263,0 +170739288592,262,0 +170739288640,262,0 +170739288688,262,0 +170739288736,262,0 +170739288785,262,0 +170739288833,262,0 +170739288881,262,0 +170739288929,262,0 +170739288978,262,0 +170739289028,262,0 +170739289076,262,0 +170739289124,263,0 +170739289172,262,0 +170739289219,262,0 +170739289267,262,0 +170739289315,262,0 +170739289365,263,0 +170739289413,262,0 +170739289461,262,0 +170739289509,262,0 +170739289556,262,0 +170739289604,262,0 +170739289652,262,0 +170739289700,262,0 +170739289748,262,0 +170739289797,262,0 +170739289847,262,0 +170739289895,262,0 +170739289943,262,0 +170739289992,263,0 +170739290040,263,0 +170739290088,262,0 +170739290136,262,0 +170739290184,262,0 +170739290231,262,0 +170739290281,262,0 +170739290329,262,0 +170739290377,262,0 +170739290426,262,0 +170739290474,262,0 +170739290522,262,0 +170739290570,262,0 +170739290620,262,0 +170739290668,262,0 +170739290716,262,0 +170739290764,262,0 +170739290812,262,0 +170739290859,263,0 +170739290907,262,0 +170739290955,262,0 +170739291003,262,0 +170739291051,262,0 +170739291099,262,0 +170739291147,262,0 +170739291195,262,0 +170739291245,262,0 +170739291293,262,0 +170739291342,262,0 +170739291390,262,0 +170739291438,262,0 +170739291486,262,0 +170739291534,262,0 +170739291582,262,0 +170739291630,262,0 +170739291677,262,0 +170739291727,262,0 +170739291777,262,0 +170739291824,262,0 +170739291874,262,0 +170739291922,262,0 +170739291971,262,0 +170739292021,262,0 +170739292069,262,0 +170739292117,262,0 +170739292165,262,0 +170739292213,262,0 +170739292261,262,0 +170739292309,262,0 +170739292358,262,0 +170739292406,262,0 +170739292454,262,0 +170739292504,261,0 +170739292553,262,0 +170739292603,262,0 +170739292652,262,0 +170739292700,262,0 +170739292748,262,0 +170739292796,262,0 +170739292844,262,0 +170739292892,262,0 +170739292940,262,0 +170739292989,262,0 +170739293037,262,0 +170739293085,261,0 +170739293133,262,0 +170739293181,262,0 +170739293229,262,0 +170739293278,262,0 +170739293328,262,0 +170739293376,262,0 +170739293425,262,0 +170739293473,262,0 +170739293523,262,0 +170739293571,262,0 +170739293620,262,0 +170739293668,261,0 +170739293716,262,0 +170739293764,262,0 +170739293814,262,0 +170739293862,262,0 +170739293909,262,0 +170739293957,262,0 +170739294005,261,0 +170739294053,262,0 +170739294101,261,0 +170739294149,262,0 +170739294196,262,0 +170739294244,261,0 +170739294292,261,0 +170739294340,262,0 +170739294390,262,0 +170739294438,262,0 +170739294485,262,0 +170739294533,261,0 +170739294581,262,0 +170739294629,262,0 +170739294677,262,0 +170739294725,261,0 +170739294774,261,0 +170739294822,262,0 +170739294870,262,0 +170739294918,262,0 +170739294966,262,0 +170739295014,262,0 +170739295062,262,0 +170739295110,262,0 +170739295157,261,0 +170739295205,261,0 +170739295253,261,0 +170739295301,262,0 +170739295349,262,0 +170739295397,261,0 +170739295445,261,0 +170739295494,262,0 +170739295544,262,0 +170739295592,261,0 +170739295640,261,0 +170739295689,261,0 +170739295737,261,0 +170739295785,262,0 +170739295833,262,0 +170739295881,262,0 +170739295929,262,0 +170739295978,262,0 +170739296026,262,0 +170739296074,262,0 +170739296122,261,0 +170739296170,262,0 +170739296220,262,0 +170739296269,262,0 +170739296317,262,0 +170739296365,262,0 +170739296414,262,0 +170739296464,262,0 +170739296512,262,0 +170739296560,261,0 +170739296608,262,0 +170739296656,261,0 +170739296703,262,0 +170739296751,262,0 +170739296799,262,0 +170739296847,262,0 +170739296895,262,0 +170739296943,262,0 +170739296991,262,0 +170739297039,262,0 +170739297088,262,0 +170739297136,262,0 +170739297185,262,0 +170739297233,261,0 +170739297281,261,0 +170739297329,261,0 +170739297377,261,0 +170739297425,262,0 +170739297474,262,0 +170739297522,262,0 +170739297570,262,0 +170739297618,262,0 +170739297668,262,0 +170739297716,262,0 +170739297764,262,0 +170739297811,262,0 +170739297861,261,0 +170739297909,262,0 +170739297957,262,0 +170739298005,262,0 +170739298053,262,0 +170739298100,261,0 +170739298148,262,0 +170739298196,262,0 +170739298244,262,0 +170739298292,262,0 +170739298340,262,0 +170739298389,262,0 +170739298437,262,0 +170739298485,262,0 +170739298533,262,0 +170739298581,262,0 +170739298629,262,0 +170739298677,262,0 +170739298725,262,0 +170739298773,262,0 +170739298821,262,0 +170739298868,261,0 +170739298916,262,0 +170739298964,262,0 +170739299012,262,0 +170739299060,262,0 +170739299109,262,0 +170739299157,262,0 +170739299207,262,0 +170739299255,262,0 +170739299304,262,0 +170739299352,262,0 +170739299402,262,0 +170739299450,262,0 +170739299498,262,0 +170739299546,262,0 +170739299594,262,0 +170739299643,262,0 +170739299693,262,0 +170739299742,262,0 +170739299790,262,0 +170739299840,262,0 +170739299889,262,0 +170739299937,262,0 +170739299985,261,0 +170739300033,262,0 +170739300081,263,0 +170739300129,262,0 +170739300177,262,0 +170739300226,262,0 +170739300274,262,0 +170739300322,261,0 +170739300370,262,0 +170739300418,262,0 +170739300468,262,0 +170739300516,262,0 +170739300565,262,0 +170739300613,262,0 +170739300661,262,0 +170739300709,262,0 +170739300757,262,0 +170739300805,262,0 +170739300855,262,0 +170739300903,262,0 +170739300951,262,0 +170739300999,262,0 +170739301048,262,0 +170739301096,262,0 +170739301146,262,0 +170739301194,262,0 +170739301243,262,0 +170739301291,262,0 +170739301340,262,0 +170739301390,262,0 +170739301438,262,0 +170739301486,262,0 +170739301534,262,0 +170739301583,262,0 +170739301631,263,0 +170739301681,262,0 +170739301729,262,0 +170739301778,262,0 +170739301828,262,0 +170739301876,262,0 +170739301924,262,0 +170739301972,263,0 +170739302021,262,0 +170739302069,262,0 +170739302117,262,0 +170739302165,262,0 +170739302213,263,0 +170739302263,262,0 +170739302311,262,0 +170739302360,262,0 +170739302408,262,0 +170739302456,262,0 +170739302504,262,0 +170739302552,262,0 +170739302600,262,0 +170739302648,262,0 +170739302696,262,0 +170739302744,263,0 +170739302792,262,0 +170739302841,263,0 +170739302889,263,0 +170739302939,263,0 +170739302987,262,0 +170739303035,262,0 +170739303084,263,0 +170739303132,263,0 +170739303180,262,0 +170739303228,261,0 +170739303276,261,0 +170739303324,262,0 +170739303372,262,0 +170739303420,262,0 +170739303470,262,0 +170739303518,262,0 +170739303567,262,0 +170739303617,261,0 +170739303665,262,0 +170739303713,261,0 +170739303760,261,0 +170739303808,261,0 +170739303856,261,0 +170739303904,261,0 +170739303952,261,0 +170739304000,261,0 +170739304048,261,0 +170739304096,261,0 +170739304143,261,0 +170739304191,262,0 +170739304239,261,0 +170739304289,261,0 +170739304337,262,0 +170739304385,261,0 +170739304434,262,0 +170739304482,261,0 +170739304530,262,0 +170739304578,262,0 +170739304628,262,0 +170739304676,262,0 +170739304724,262,0 +170739304772,262,0 +170739304819,262,0 +170739304867,262,0 +170739304915,262,0 +170739304965,262,0 +170739305014,262,0 +170739305064,262,0 +170739305112,262,0 +170739305161,262,0 +170739305209,262,0 +170739305257,261,0 +170739305305,262,0 +170739305353,262,0 +170739305402,262,0 +170739305450,262,0 +170739305499,262,0 +170739305547,262,0 +170739305595,262,0 +170739305643,262,0 +170739305691,262,0 +170739305739,261,0 +170739305787,262,0 +170739305835,262,0 +170739305883,262,0 +170739305931,262,0 +170739305979,262,0 +170739306027,262,0 +170739306074,262,0 +170739306122,262,0 +170739306170,262,0 +170739306218,262,0 +170739306266,262,0 +170739306314,262,0 +170739306364,262,0 +170739306412,262,0 +170739306460,262,0 +170739306508,262,0 +170739306556,263,0 +170739306604,263,0 +170739306653,262,0 +170739306701,262,0 +170739306749,262,0 +170739306797,263,0 +170739306845,262,0 +170739306895,263,0 +170739306943,263,0 +170739306991,263,0 +170739307040,263,0 +170739307088,262,0 +170739307136,262,0 +170739307186,262,0 +170739307234,263,0 +170739307282,262,0 +170739307330,263,0 +170739307378,262,0 +170739307426,262,0 +170739307475,262,0 +170739307525,262,0 +170739307574,262,0 +170739307622,262,0 +170739307672,263,0 +170739307721,262,0 +170739307769,262,0 +170739307817,263,0 +170739307867,263,0 +170739307915,263,0 +170739307963,263,0 +170739308011,262,0 +170739308060,262,0 +170739308108,263,0 +170739308156,262,0 +170739308206,262,0 +170739308254,263,0 +170739308302,262,0 +170739308350,263,0 +170739308399,262,0 +170739308447,262,0 +170739308495,262,0 +170739308545,262,0 +170739308593,263,0 +170739308641,263,0 +170739308690,262,0 +170739308740,262,0 +170739308788,262,0 +170739308836,262,0 +170739308885,262,0 +170739308933,263,0 +170739308983,263,0 +170739309032,263,0 +170739309082,263,0 +170739309129,263,0 +170739309179,263,0 +170739309227,263,0 +170739309277,263,0 +170739309325,263,0 +170739309373,262,0 +170739309421,262,0 +170739309469,262,0 +170739309517,262,0 +170739309565,262,0 +170739309614,262,0 +170739309662,263,0 +170739309712,262,0 +170739309761,262,0 +170739309809,262,0 +170739309857,262,0 +170739309907,261,0 +170739309955,262,0 +170739310002,262,0 +170739310050,262,0 +170739310098,262,0 +170739310148,263,0 +170739310196,262,0 +170739310246,263,0 +170739310294,263,0 +170739310342,264,0 +170739310390,264,0 +170739310437,262,0 +170739310487,262,0 +170739310535,261,0 +170739310584,261,0 +170739310632,261,0 +170739310680,260,0 +170739310728,260,0 +170739310776,260,0 +170739310824,259,0 +170739310872,259,0 +170739310921,259,0 +170739310969,259,0 +170739311017,260,0 +170739311065,261,0 +170739311113,260,0 +170739311161,260,0 +170739311209,261,0 +170739311257,260,0 +170739311305,260,0 +170739311355,260,0 +170739311403,260,0 +170739311452,260,0 +170739311502,260,0 +170739311551,260,0 +170739311599,260,0 +170739311647,259,0 +170739311695,260,0 +170739311743,260,0 +170739311791,260,0 +170739311839,260,0 +170739311887,259,0 +170739311935,260,0 +170739311983,262,0 +170739312031,261,0 +170739312078,262,0 +170739312126,263,0 +170739312176,263,0 +170739312224,263,0 +170739312273,263,0 +170739312321,264,0 +170739312369,264,0 +170739312417,264,0 +170739312467,264,0 +170739312516,264,0 +170739312564,265,0 +170739312612,264,0 +170739312660,264,0 +170739312708,264,0 +170739312756,264,0 +170739312806,264,0 +170739312855,265,0 +170739312903,264,0 +170739312953,264,0 +170739313002,264,0 +170739313050,264,0 +170739313098,264,0 +170739313146,264,0 +170739313194,264,0 +170739313244,264,0 +170739313292,263,0 +170739313341,262,0 +170739313389,262,0 +170739313437,262,0 +170739313485,262,0 +170739313535,260,0 +170739313583,259,0 +170739313632,260,0 +170739313680,259,0 +170739313728,260,0 +170739313776,260,0 +170739313826,260,0 +170739313874,260,0 +170739313923,260,0 +170739313971,260,0 +170739314019,260,0 +170739314067,260,0 +170739314115,260,0 +170739314164,260,0 +170739314212,261,0 +170739314262,261,0 +170739314311,261,0 +170739314361,260,0 +170739314410,261,0 +170739314458,260,0 +170739314506,260,0 +170739314556,261,0 +170739314604,261,0 +170739314653,262,0 +170739314701,262,0 +170739314751,261,0 +170739314799,262,0 +170739314847,262,0 +170739314895,262,0 +170739314943,262,0 +170739314992,261,0 +170739315040,261,0 +170739315090,261,0 +170739315139,260,0 +170739315187,261,0 +170739315235,261,0 +170739315285,260,0 +170739315333,260,0 +170739315382,260,0 +170739315430,261,0 +170739315480,261,0 +170739315529,261,0 +170739315579,261,0 +170739315627,261,0 +170739315676,260,0 +170739315726,261,0 +170739315774,261,0 +170739315822,260,0 +170739315870,260,0 +170739315919,260,0 +170739315967,260,0 +170739316015,259,0 +170739316065,260,0 +170739316113,260,0 +170739316161,260,0 +170739316209,260,0 +170739316258,261,0 +170739316306,261,0 +170739316356,260,0 +170739316404,262,0 +170739316452,262,0 +170739316500,262,0 +170739316548,262,0 +170739316596,262,0 +170739316645,262,0 +170739316695,262,0 +170739316744,262,0 +170739316792,262,0 +170739316840,262,0 +170739316890,262,0 +170739316938,262,0 +170739316986,262,0 +170739317035,262,0 +170739317083,263,0 +170739317131,262,0 +170739317180,262,0 +170739317228,262,0 +170739317276,262,0 +170739317324,262,0 +170739317374,262,0 +170739317422,261,0 +170739317470,261,0 +170739317519,261,0 +170739317567,260,0 +170739317617,259,0 +170739317665,259,0 +170739317713,259,0 +170739317762,259,0 +170739317810,259,0 +170739317858,259,0 +170739317906,259,0 +170739317954,260,0 +170739318003,260,0 +170739318053,260,0 +170739318101,261,0 +170739318149,260,0 +170739318197,260,0 +170739318246,260,0 +170739318294,260,0 +170739318344,260,0 +170739318392,260,0 +170739318441,260,0 +170739318489,260,0 +170739318537,259,0 +170739318585,259,0 +170739318633,259,0 +170739318681,259,0 +170739318729,259,0 +170739318777,258,0 +170739318827,259,0 +170739318875,258,0 +170739318924,259,0 +170739318972,259,0 +170739319022,259,0 +170739319071,259,0 +170739319121,259,0 +170739319170,259,0 +170739319218,259,0 +170739319266,259,0 +170739319314,258,0 +170739319362,258,0 +170739319410,259,0 +170739319458,258,0 +170739319506,258,0 +170739319554,258,0 +170739319602,258,0 +170739319650,257,0 +170739319698,257,0 +170739319748,257,0 +170739319795,257,0 +170739319843,258,0 +170739319891,258,0 +170739319941,257,0 +170739319990,257,0 +170739320038,257,0 +170739320086,257,0 +170739320134,257,0 +170739320184,257,0 +170739320232,257,0 +170739320280,257,0 +170739320329,257,0 +170739320379,257,0 +170739320427,258,0 +170739320475,258,0 +170739320523,258,0 +170739320572,257,0 +170739320620,257,0 +170739320668,258,0 +170739320716,257,0 +170739320764,259,0 +170739320814,259,0 +170739320863,258,0 +170739320911,258,0 +170739320959,258,0 +170739321007,258,0 +170739321055,257,0 +170739321103,258,0 +170739321152,258,0 +170739321200,258,0 +170739321248,257,0 +170739321298,256,0 +170739321347,256,0 +170739321397,257,0 +170739321446,256,0 +170739321494,255,0 +170739321544,255,0 +170739321593,255,0 +170739321643,255,0 +170739321693,255,0 +170739321740,256,0 +170739321789,256,0 +170739321838,257,0 +170739321886,257,0 +170739321934,257,0 +170739321982,258,0 +170739322030,257,0 +170739322079,257,0 +170739322127,257,0 +170739322175,257,0 +170739322223,257,0 +170739322273,257,0 +170739322321,257,0 +170739322370,257,0 +170739322418,257,0 +170739322466,257,0 +170739322514,256,0 +170739322562,256,0 +170739322610,256,0 +170739322658,256,0 +170739322707,256,0 +170739322755,256,0 +170739322803,255,0 +170739322851,255,0 +170739322899,255,0 +170739322949,255,0 +170739322997,255,0 +170739323046,255,0 +170739323096,255,0 +170739323144,255,0 +170739323192,255,0 +170739323240,255,0 +170739323288,254,0 +170739323336,254,0 +170739323384,254,0 +170739323432,255,0 +170739323480,254,0 +170739323528,255,0 +170739323577,254,0 +170739323625,255,0 +170739323673,255,0 +170739323721,256,0 +170739323771,256,0 +170739323819,256,0 +170739323868,256,0 +170739323918,255,0 +170739323966,255,0 +170739324015,255,0 +170739324063,256,0 +170739324112,255,0 +170739324160,256,0 +170739324208,256,0 +170739324256,256,0 +170739324306,256,0 +170739324353,256,0 +170739324401,256,0 +170739324451,255,0 +170739324499,255,0 +170739324547,256,0 +170739324596,255,0 +170739324644,255,0 +170739324692,255,0 +170739324740,255,0 +170739324788,255,0 +170739324836,255,0 +170739324884,255,0 +170739324932,255,0 +170739324980,255,0 +170739325028,255,0 +170739325076,255,0 +170739325124,255,0 +170739325172,255,0 +170739325220,256,0 +170739325268,256,0 +170739325318,256,0 +170739325366,256,0 +170739325413,256,0 +170739325461,257,0 +170739325509,256,0 +170739325559,257,0 +170739325607,256,0 +170739325655,256,0 +170739325703,256,0 +170739325751,256,0 +170739325799,256,0 +170739325848,256,0 +170739325896,256,0 +170739325946,256,0 +170739325994,256,0 +170739326043,256,0 +170739326093,256,0 +170739326141,256,0 +170739326190,256,0 +170739326238,256,0 +170739326286,256,0 +170739326334,256,0 +170739326382,256,0 +170739326430,256,0 +170739326478,256,0 +170739326528,257,0 +170739326576,257,0 +170739326624,257,0 +170739326673,258,0 +170739326723,258,0 +170739326771,257,0 +170739326820,257,0 +170739326868,257,0 +170739326918,256,0 +170739326966,257,0 +170739327014,256,0 +170739327062,257,0 +170739327111,256,0 +170739327159,256,0 +170739327207,256,0 +170739327255,256,0 +170739327305,256,0 +170739327353,256,0 +170739327401,256,0 +170739327449,255,0 +170739327497,255,0 +170739327545,255,0 +170739327593,255,0 +170739327641,255,0 +170739327688,255,0 +170739327738,255,0 +170739327786,255,0 +170739327834,255,0 +170739327884,256,0 +170739327933,256,0 +170739327983,256,0 +170739328031,256,0 +170739328080,256,0 +170739328130,256,0 +170739328178,256,0 +170739328226,255,0 +170739328273,256,0 +170739328321,256,0 +170739328369,256,0 +170739328417,257,0 +170739328467,257,0 +170739328515,257,0 +170739328563,257,0 +170739328611,257,0 +170739328660,256,0 +170739328708,257,0 +170739328756,257,0 +170739328804,256,0 +170739328854,256,0 +170739328902,256,0 +170739328951,255,0 +170739328999,256,0 +170739329047,256,0 +170739329095,256,0 +170739329143,256,0 +170739329191,256,0 +170739329241,256,0 +170739329289,257,0 +170739329338,257,0 +170739329386,257,0 +170739329436,257,0 +170739329484,257,0 +170739329531,256,0 +170739329579,256,0 +170739329629,255,0 +170739329678,255,0 +170739329726,256,0 +170739329776,255,0 +170739329826,256,0 +170739329875,256,0 +170739329923,256,0 +170739329972,255,0 +170739330020,255,0 +170739330068,254,0 +170739330116,254,0 +170739330166,253,0 +170739330214,253,0 +170739330263,252,0 +170739330311,252,0 +170739330359,252,0 +170739330409,253,0 +170739330458,253,0 +170739330506,253,0 +170739330554,253,0 +170739330604,253,0 +170739330652,253,0 +170739330701,253,0 +170739330751,253,0 +170739330800,253,0 +170739330850,253,0 +170739330899,254,0 +170739330947,254,0 +170739330997,254,0 +170739331045,254,0 +170739331093,254,0 +170739331141,255,0 +170739331189,255,0 +170739331237,255,0 +170739331285,255,0 +170739331333,255,0 +170739331381,255,0 +170739331429,255,0 +170739331478,255,0 +170739331526,255,0 +170739331574,255,0 +170739331622,255,0 +170739331671,254,0 +170739331721,255,0 +170739331770,254,0 +170739331818,254,0 +170739331866,254,0 +170739331914,254,0 +170739331964,254,0 +170739332012,253,0 +170739332060,253,0 +170739332108,253,0 +170739332156,253,0 +170739332204,252,0 +170739332253,253,0 +170739332301,253,0 +170739332349,252,0 +170739332397,252,0 +170739332445,252,0 +170739332493,252,0 +170739332541,252,0 +170739332589,252,0 +170739332638,253,0 +170739332686,253,0 +170739332734,253,0 +170739332782,253,0 +170739332832,253,0 +170739332880,253,0 +170739332928,253,0 +170739332976,252,0 +170739333025,252,0 +170739333073,252,0 +170739333121,252,0 +170739333169,252,0 +170739333217,252,0 +170739333265,252,0 +170739333315,251,0 +170739333363,252,0 +170739333411,252,0 +170739333460,253,0 +170739333508,252,0 +170739333558,252,0 +170739333606,252,0 +170739333654,252,0 +170739333703,252,0 +170739333753,252,0 +170739333801,252,0 +170739333850,252,0 +170739333898,252,0 +170739333946,253,0 +170739333996,252,0 +170739334044,252,0 +170739334092,253,0 +170739334140,253,0 +170739334188,254,0 +170739334236,253,0 +170739334283,253,0 +170739334331,253,0 +170739334381,253,0 +170739334429,253,0 +170739334477,253,0 +170739334526,252,0 +170739334574,252,0 +170739334622,252,0 +170739334670,253,0 +170739334720,254,0 +170739334768,254,0 +170739334817,254,0 +170739334865,254,0 +170739334913,253,0 +170739334961,254,0 +170739335010,253,0 +170739335058,253,0 +170739335106,254,0 +170739335154,254,0 +170739335204,254,0 +170739335253,253,0 +170739335301,253,0 +170739335349,253,0 +170739335397,251,0 +170739335445,251,0 +170739335493,251,0 +170739335543,251,0 +170739335592,251,0 +170739335642,250,0 +170739335691,251,0 +170739335739,251,0 +170739335789,251,0 +170739335837,250,0 +170739335886,251,0 +170739335934,252,0 +170739335982,253,0 +170739336032,253,0 +170739336080,253,0 +170739336129,254,0 +170739336177,253,0 +170739336225,253,0 +170739336275,254,0 +170739336322,254,0 +170739336372,254,0 +170739336420,254,0 +170739336468,254,0 +170739336516,254,0 +170739336564,254,0 +170739336612,253,0 +170739336660,253,0 +170739336708,252,0 +170739336756,252,0 +170739336804,253,0 +170739336852,252,0 +170739336900,252,0 +170739336948,251,0 +170739336996,252,0 +170739337044,252,0 +170739337093,252,0 +170739337141,252,0 +170739337189,251,0 +170739337237,251,0 +170739337285,251,0 +170739337333,251,0 +170739337383,251,0 +170739337432,250,0 +170739337482,251,0 +170739337530,250,0 +170739337578,250,0 +170739337625,251,0 +170739337675,252,0 +170739337724,252,0 +170739337772,251,0 +170739337822,251,0 +170739337871,251,0 +170739337919,251,0 +170739337967,251,0 +170739338015,251,0 +170739338065,252,0 +170739338113,252,0 +170739338161,252,0 +170739338209,252,0 +170739338258,250,0 +170739338308,251,0 +170739338356,251,0 +170739338404,251,0 +170739338452,250,0 +170739338500,249,0 +170739338548,251,0 +170739338596,252,0 +170739338644,251,0 +170739338692,251,0 +170739338740,251,0 +170739338789,251,0 +170739338837,251,0 +170739338885,251,0 +170739338933,252,0 +170739338981,252,0 +170739339029,252,0 +170739339077,252,0 +170739339125,252,0 +170739339175,252,0 +170739339222,252,0 +170739339270,252,0 +170739339318,251,0 +170739339366,251,0 +170739339416,251,0 +170739339464,251,0 +170739339512,251,0 +170739339560,251,0 +170739339609,251,0 +170739339657,251,0 +170739339705,251,0 +170739339753,251,0 +170739339803,251,0 +170739339851,251,0 +170739339899,251,0 +170739339947,251,0 +170739339995,250,0 +170739340043,249,0 +170739340091,249,0 +170739340140,249,0 +170739340190,250,0 +170739340238,250,0 +170739340287,250,0 +170739340337,250,0 +170739340386,250,0 +170739340434,250,0 +170739340482,250,0 +170739340532,251,0 +170739340580,250,0 +170739340628,250,0 +170739340676,250,0 +170739340724,250,0 +170739340773,250,0 +170739340821,250,0 +170739340871,250,0 +170739340920,250,0 +170739340970,249,0 +170739341018,250,0 +170739341067,249,0 +170739341117,249,0 +170739341165,249,0 +170739341213,249,0 +170739341262,249,0 +170739341310,249,0 +170739341358,249,0 +170739341408,250,0 +170739341456,251,0 +170739341505,249,0 +170739341553,248,0 +170739341601,248,0 +170739341649,248,0 +170739341697,248,0 +170739341745,248,0 +170739341793,248,0 +170739341840,248,0 +170739341888,248,0 +170739341936,248,0 +170739341984,248,0 +170739342032,248,0 +170739342080,248,0 +170739342128,248,0 +170739342176,248,0 +170739342224,248,0 +170739342272,248,0 +170739342319,248,0 +170739342367,248,0 +170739342415,248,0 +170739342465,248,0 +170739342514,247,0 +170739342562,248,0 +170739342610,248,0 +170739342658,250,0 +170739342708,252,0 +170739342757,252,0 +170739342805,251,0 +170739342855,251,0 +170739342903,251,0 +170739342952,251,0 +170739343002,251,0 +170739343051,251,0 +170739343101,251,0 +170739343149,251,0 +170739343197,250,0 +170739343245,250,0 +170739343294,250,0 +170739343344,250,0 +170739343392,249,0 +170739343440,249,0 +170739343489,249,0 +170739343537,249,0 +170739343585,248,0 +170739343633,249,0 +170739343681,249,0 +170739343729,249,0 +170739343777,248,0 +170739343825,248,0 +170739343873,248,0 +170739343921,249,0 +170739343970,248,0 +170739344018,249,0 +170739344068,249,0 +170739344118,250,0 +170739344165,249,0 +170739344215,249,0 +170739344263,250,0 +170739344311,250,0 +170739344359,250,0 +170739344407,249,0 +170739344455,249,0 +170739344504,249,0 +170739344552,249,0 +170739344600,249,0 +170739344648,249,0 +170739344696,249,0 +170739344744,250,0 +170739344792,250,0 +170739344840,249,0 +170739344889,250,0 +170739344937,251,0 +170739344985,248,0 +170739345033,248,0 +170739345081,249,0 +170739345129,248,0 +170739345179,246,0 +170739345227,247,0 +170739345275,248,0 +170739345323,248,0 +170739345371,248,0 +170739345419,247,0 +170739345468,248,0 +170739345516,248,0 +170739345564,247,0 +170739345612,247,0 +170739345660,247,0 +170739345710,247,0 +170739345759,247,0 +170739345807,247,0 +170739345855,248,0 +170739345903,248,0 +170739345951,248,0 +170739345999,247,0 +170739346047,248,0 +170739346095,248,0 +170739346144,247,0 +170739346192,247,0 +170739346241,247,0 +170739346289,246,0 +170739346337,247,0 +170739346385,247,0 +170739346433,247,0 +170739346483,247,0 +170739346532,248,0 +170739346580,248,0 +170739346628,248,0 +170739346676,247,0 +170739346724,247,0 +170739346774,247,0 +170739346822,248,0 +170739346870,249,0 +170739346918,249,0 +170739346965,249,0 +170739347013,250,0 +170739347061,250,0 +170739347109,249,0 +170739347157,249,0 +170739347205,249,0 +170739347253,249,0 +170739347301,249,0 +170739347349,248,0 +170739347397,250,0 +170739347444,250,0 +170739347494,249,0 +170739347542,249,0 +170739347590,249,0 +170739347639,249,0 +170739347689,250,0 +170739347738,249,0 +170739347786,250,0 +170739347834,250,0 +170739347882,248,0 +170739347930,249,0 +170739347978,248,0 +170739348026,248,0 +170739348075,248,0 +170739348123,248,0 +170739348171,248,0 +170739348221,248,0 +170739348270,247,0 +170739348320,247,0 +170739348368,246,0 +170739348416,247,0 +170739348464,247,0 +170739348512,249,0 +170739348560,248,0 +170739348608,248,0 +170739348655,248,0 +170739348705,248,0 +170739348753,248,0 +170739348801,248,0 +170739348849,248,0 +170739348897,248,0 +170739348946,248,0 +170739348994,248,0 +170739349042,248,0 +170739349090,247,0 +170739349140,247,0 +170739349188,248,0 +170739349236,248,0 +170739349285,247,0 +170739349333,247,0 +170739349381,247,0 +170739349429,247,0 +170739349479,247,0 +170739349528,248,0 +170739349576,248,0 +170739349626,248,0 +170739349674,247,0 +170739349721,247,0 +170739349771,248,0 +170739349821,247,0 +170739349870,248,0 +170739349918,248,0 +170739349966,248,0 +170739350014,247,0 +170739350064,247,0 +170739350113,248,0 +170739350161,248,0 +170739350209,247,0 +170739350257,247,0 +170739350305,247,0 +170739350353,247,0 +170739350401,246,0 +170739350448,247,0 +170739350496,247,0 +170739350544,247,0 +170739350592,247,0 +170739350640,247,0 +170739350688,248,0 +170739350736,248,0 +170739350784,247,0 +170739350833,248,0 +170739350883,248,0 +170739350933,248,0 +170739350982,248,0 +170739351032,247,0 +170739351081,247,0 +170739351129,246,0 +170739351177,246,0 +170739351225,246,0 +170739351273,246,0 +170739351321,246,0 +170739351370,246,0 +170739351418,246,0 +170739351466,246,0 +170739351514,246,0 +170739351562,247,0 +170739351610,247,0 +170739351660,247,0 +170739351708,247,0 +170739351755,247,0 +170739351803,247,0 +170739351851,247,0 +170739351899,246,0 +170739351947,247,0 +170739351995,247,0 +170739352043,246,0 +170739352091,247,0 +170739352139,247,0 +170739352188,247,0 +170739352238,247,0 +170739352286,247,0 +170739352334,247,0 +170739352382,247,0 +170739352429,248,0 +170739352477,249,0 +170739352527,249,0 +170739352576,249,0 +170739352624,249,0 +170739352672,249,0 +170739352720,248,0 +170739352770,248,0 +170739352819,248,0 +170739352869,248,0 +170739352917,248,0 +170739352966,248,0 +170739353014,248,0 +170739353062,248,0 +170739353110,248,0 +170739353158,248,0 +170739353208,248,0 +170739353257,248,0 +170739353305,247,0 +170739353353,247,0 +170739353403,247,0 +170739353450,248,0 +170739353500,248,0 +170739353548,248,0 +170739353596,248,0 +170739353645,248,0 +170739353693,250,0 +170739353743,249,0 +170739353791,249,0 +170739353840,250,0 +170739353888,250,0 +170739353936,248,0 +170739353984,248,0 +170739354034,248,0 +170739354083,248,0 +170739354133,250,0 +170739354181,251,0 +170739354229,250,0 +170739354277,250,0 +170739354326,251,0 +170739354374,250,0 +170739354422,251,0 +170739354470,249,0 +170739354518,249,0 +170739354566,249,0 +170739354616,249,0 +170739354664,249,0 +170739354713,249,0 +170739354761,248,0 +170739354809,248,0 +170739354859,249,0 +170739354906,249,0 +170739354954,247,0 +170739355002,249,0 +170739355052,248,0 +170739355100,248,0 +170739355148,248,0 +170739355197,248,0 +170739355245,249,0 +170739355295,249,0 +170739355343,249,0 +170739355392,249,0 +170739355440,249,0 +170739355488,249,0 +170739355536,249,0 +170739355584,249,0 +170739355634,248,0 +170739355682,247,0 +170739355730,248,0 +170739355778,248,0 +170739355825,248,0 +170739355873,248,0 +170739355921,247,0 +170739355969,248,0 +170739356019,248,0 +170739356068,249,0 +170739356118,249,0 +170739356167,249,0 +170739356215,248,0 +170739356263,249,0 +170739356313,249,0 +170739356361,248,0 +170739356409,248,0 +170739356457,249,0 +170739356505,248,0 +170739356553,249,0 +170739356601,248,0 +170739356649,248,0 +170739356697,248,0 +170739356745,248,0 +170739356793,248,0 +170739356842,248,0 +170739356890,248,0 +170739356938,247,0 +170739356986,247,0 +170739357034,247,0 +170739357082,247,0 +170739357131,246,0 +170739357179,247,0 +170739357227,246,0 +170739357277,246,0 +170739357326,246,0 +170739357376,246,0 +170739357423,246,0 +170739357471,247,0 +170739357519,247,0 +170739357567,247,0 +170739357615,247,0 +170739357665,247,0 +170739357713,248,0 +170739357761,247,0 +170739357810,247,0 +170739357858,247,0 +170739357906,246,0 +170739357954,246,0 +170739358002,246,0 +170739358050,246,0 +170739358098,246,0 +170739358146,246,0 +170739358194,246,0 +170739358244,247,0 +170739358292,246,0 +170739358341,246,0 +170739358391,246,0 +170739358439,245,0 +170739358487,246,0 +170739358535,245,0 +170739358583,245,0 +170739358632,245,0 +170739358680,245,0 +170739358728,245,0 +170739358776,245,0 +170739358824,245,0 +170739358873,246,0 +170739358921,245,0 +170739358971,245,0 +170739359019,246,0 +170739359067,245,0 +170739359115,246,0 +170739359163,245,0 +170739359211,246,0 +170739359259,245,0 +170739359306,245,0 +170739359356,246,0 +170739359404,245,0 +170739359454,245,0 +170739359502,248,0 +170739359550,248,0 +170739359598,247,0 +170739359647,248,0 +170739359697,248,0 +170739359745,248,0 +170739359793,248,0 +170739359841,248,0 +170739359889,248,0 +170739359937,248,0 +170739359984,247,0 diff --git a/laser_value/0208-22.csv b/laser_value/0208-22.csv new file mode 100644 index 0000000..2c55583 --- /dev/null +++ b/laser_value/0208-22.csv @@ -0,0 +1,7437 @@ +timestamp,laser_value,event +170739360033,248,0 +170739360083,248,0 +170739360132,249,0 +170739360180,248,0 +170739360228,248,0 +170739360277,248,0 +170739360325,249,0 +170739360373,249,0 +170739360423,249,0 +170739360471,249,0 +170739360519,249,0 +170739360567,249,0 +170739360615,249,0 +170739360664,249,0 +170739360714,249,0 +170739360762,249,0 +170739360811,249,0 +170739360859,249,0 +170739360907,248,0 +170739360957,249,0 +170739361005,248,0 +170739361053,249,0 +170739361102,249,0 +170739361152,249,0 +170739361200,249,0 +170739361247,249,0 +170739361295,249,0 +170739361345,249,0 +170739361393,249,0 +170739361441,251,0 +170739361489,250,0 +170739361537,250,0 +170739361586,249,0 +170739361636,247,0 +170739361684,247,0 +170739361732,247,0 +170739361781,247,0 +170739361829,247,0 +170739361879,246,0 +170739361927,246,0 +170739361975,246,0 +170739362023,246,0 +170739362072,247,0 +170739362120,247,0 +170739362168,247,0 +170739362216,246,0 +170739362264,246,0 +170739362314,247,0 +170739362362,247,0 +170739362410,247,0 +170739362457,247,0 +170739362507,247,0 +170739362556,247,0 +170739362604,248,0 +170739362652,247,0 +170739362700,248,0 +170739362750,248,0 +170739362799,247,0 +170739362847,248,0 +170739362895,248,0 +170739362943,249,0 +170739362993,249,0 +170739363041,249,0 +170739363089,253,0 +170739363136,254,0 +170739363184,252,0 +170739363232,252,0 +170739363280,253,0 +170739363328,252,0 +170739363376,250,0 +170739363424,250,0 +170739363472,249,0 +170739363520,249,0 +170739363569,248,0 +170739363617,249,0 +170739363665,252,0 +170739363713,252,0 +170739363761,251,0 +170739363810,251,0 +170739363858,251,0 +170739363906,251,0 +170739363954,252,0 +170739364003,252,0 +170739364053,251,0 +170739364101,251,0 +170739364149,251,0 +170739364198,251,0 +170739364246,251,0 +170739364296,251,0 +170739364344,251,0 +170739364392,251,0 +170739364441,251,0 +170739364489,251,0 +170739364537,251,0 +170739364585,251,0 +170739364634,251,0 +170739364684,249,0 +170739364732,249,0 +170739364780,250,0 +170739364828,249,0 +170739364877,249,0 +170739364925,249,0 +170739364973,249,0 +170739365021,249,0 +170739365071,248,0 +170739365119,248,0 +170739365167,247,0 +170739365215,247,0 +170739365263,247,0 +170739365311,248,0 +170739365359,248,0 +170739365407,248,0 +170739365455,248,0 +170739365503,247,0 +170739365551,248,0 +170739365600,248,0 +170739365648,248,0 +170739365696,248,0 +170739365744,248,0 +170739365792,248,0 +170739365840,248,0 +170739365890,248,0 +170739365938,248,0 +170739365985,248,0 +170739366033,248,0 +170739366083,248,0 +170739366132,248,0 +170739366180,248,0 +170739366228,248,0 +170739366278,248,0 +170739366326,248,0 +170739366374,248,0 +170739366421,248,0 +170739366471,248,0 +170739366519,248,0 +170739366567,248,0 +170739366615,248,0 +170739366663,248,0 +170739366711,248,0 +170739366760,248,0 +170739366808,248,0 +170739366856,248,0 +170739366904,248,0 +170739366952,248,0 +170739367000,248,0 +170739367050,248,0 +170739367098,248,0 +170739367146,248,0 +170739367193,248,0 +170739367241,248,0 +170739367289,248,0 +170739367337,248,0 +170739367385,248,0 +170739367433,248,0 +170739367480,248,0 +170739367528,248,0 +170739367576,248,0 +170739367624,248,0 +170739367672,247,0 +170739367720,248,0 +170739367768,248,0 +170739367816,247,0 +170739367864,247,0 +170739367911,247,0 +170739367959,247,0 +170739368007,247,0 +170739368055,248,0 +170739368103,247,0 +170739368151,247,0 +170739368199,247,0 +170739368246,246,0 +170739368294,246,0 +170739368342,246,0 +170739368392,246,0 +170739368439,247,0 +170739368487,247,0 +170739368537,247,0 +170739368585,247,0 +170739368632,247,0 +170739368680,247,0 +170739368728,247,0 +170739368776,247,0 +170739368826,247,0 +170739368874,247,0 +170739368921,247,0 +170739368969,247,0 +170739369019,247,0 +170739369067,247,0 +170739369114,247,0 +170739369162,247,0 +170739369212,248,0 +170739369260,247,0 +170739369308,247,0 +170739369356,247,0 +170739369404,247,0 +170739369452,247,0 +170739369500,247,0 +170739369548,247,0 +170739369596,247,0 +170739369645,247,0 +170739369693,247,0 +170739369741,247,0 +170739369789,247,0 +170739369837,247,0 +170739369885,247,0 +170739369933,246,0 +170739369982,247,0 +170739370030,247,0 +170739370078,246,0 +170739370126,246,0 +170739370175,247,0 +170739370225,247,0 +170739370273,247,0 +170739370322,247,0 +170739370370,247,0 +170739370418,247,0 +170739370466,247,0 +170739370514,246,0 +170739370561,247,0 +170739370609,247,0 +170739370657,248,0 +170739370705,248,0 +170739370753,248,0 +170739370801,248,0 +170739370849,248,0 +170739370897,247,0 +170739370945,248,0 +170739370992,248,0 +170739371040,248,0 +170739371088,248,0 +170739371136,247,0 +170739371184,248,0 +170739371232,248,0 +170739371280,248,0 +170739371328,248,0 +170739371377,247,0 +170739371425,248,0 +170739371475,248,0 +170739371524,248,0 +170739371572,247,0 +170739371620,248,0 +170739371670,248,0 +170739371718,248,0 +170739371766,248,0 +170739371814,248,0 +170739371862,247,0 +170739371910,248,0 +170739371957,248,0 +170739372005,248,0 +170739372053,248,0 +170739372103,248,0 +170739372150,248,0 +170739372198,248,0 +170739372246,248,0 +170739372294,248,0 +170739372342,249,0 +170739372390,248,0 +170739372440,248,0 +170739372489,248,0 +170739372539,248,0 +170739372587,248,0 +170739372635,249,0 +170739372682,247,0 +170739372730,247,0 +170739372780,247,0 +170739372829,247,0 +170739372879,247,0 +170739372927,247,0 +170739372975,247,0 +170739373023,247,0 +170739373072,247,0 +170739373120,247,0 +170739373168,247,0 +170739373216,247,0 +170739373264,247,0 +170739373312,247,0 +170739373360,247,0 +170739373408,247,0 +170739373456,247,0 +170739373504,247,0 +170739373552,247,0 +170739373599,247,0 +170739373647,247,0 +170739373695,247,0 +170739373743,247,0 +170739373791,247,0 +170739373839,246,0 +170739373889,246,0 +170739373937,247,0 +170739373985,247,0 +170739374034,246,0 +170739374082,247,0 +170739374130,246,0 +170739374180,247,0 +170739374228,247,0 +170739374276,246,0 +170739374324,246,0 +170739374372,246,0 +170739374420,247,0 +170739374469,247,0 +170739374517,247,0 +170739374565,247,0 +170739374613,247,0 +170739374662,246,0 +170739374712,247,0 +170739374760,246,0 +170739374808,247,0 +170739374856,247,0 +170739374906,246,0 +170739374953,246,0 +170739375003,246,0 +170739375051,246,0 +170739375099,246,0 +170739375148,246,0 +170739375198,247,0 +170739375246,247,0 +170739375296,247,0 +170739375344,247,0 +170739375391,247,0 +170739375441,246,0 +170739375489,246,0 +170739375537,246,0 +170739375585,246,0 +170739375634,246,0 +170739375682,246,0 +170739375732,246,0 +170739375780,246,0 +170739375829,246,0 +170739375879,246,0 +170739375926,246,0 +170739375974,246,0 +170739376022,246,0 +170739376070,246,0 +170739376118,246,0 +170739376168,247,0 +170739376216,246,0 +170739376265,246,0 +170739376315,247,0 +170739376363,246,0 +170739376411,246,0 +170739376459,246,0 +170739376507,247,0 +170739376555,247,0 +170739376603,246,0 +170739376650,247,0 +170739376698,247,0 +170739376748,247,0 +170739376796,247,0 +170739376844,248,0 +170739376892,247,0 +170739376940,247,0 +170739376988,247,0 +170739377036,248,0 +170739377084,247,0 +170739377132,247,0 +170739377180,247,0 +170739377228,247,0 +170739377277,247,0 +170739377327,248,0 +170739377375,247,0 +170739377424,247,0 +170739377472,247,0 +170739377520,247,0 +170739377568,248,0 +170739377616,248,0 +170739377664,247,0 +170739377712,247,0 +170739377760,248,0 +170739377808,248,0 +170739377856,247,0 +170739377904,248,0 +170739377952,248,0 +170739378000,248,0 +170739378049,248,0 +170739378097,248,0 +170739378145,249,0 +170739378195,248,0 +170739378244,248,0 +170739378294,248,0 +170739378343,248,0 +170739378393,248,0 +170739378441,249,0 +170739378489,248,0 +170739378537,248,0 +170739378585,248,0 +170739378633,248,0 +170739378681,248,0 +170739378728,248,0 +170739378778,248,0 +170739378826,248,0 +170739378875,248,0 +170739378923,248,0 +170739378971,249,0 +170739379019,248,0 +170739379067,248,0 +170739379115,248,0 +170739379163,248,0 +170739379211,248,0 +170739379259,248,0 +170739379307,248,0 +170739379356,247,0 +170739379404,247,0 +170739379454,247,0 +170739379502,247,0 +170739379551,247,0 +170739379601,247,0 +170739379650,247,0 +170739379698,247,0 +170739379748,247,0 +170739379796,247,0 +170739379844,247,0 +170739379892,247,0 +170739379941,247,0 +170739379989,247,0 +170739380037,247,0 +170739380085,247,0 +170739380133,247,0 +170739380181,247,0 +170739380229,247,0 +170739380276,247,0 +170739380326,247,0 +170739380374,247,0 +170739380423,247,0 +170739380473,247,0 +170739380521,247,0 +170739380569,247,0 +170739380617,247,0 +170739380667,247,0 +170739380715,247,0 +170739380764,246,0 +170739380812,246,0 +170739380862,246,0 +170739380910,246,0 +170739380958,246,0 +170739381005,246,0 +170739381053,246,0 +170739381101,246,0 +170739381150,248,0 +170739381197,248,0 +170739381245,249,0 +170739381293,248,0 +170739381341,248,0 +170739381389,248,0 +170739381437,248,0 +170739381487,248,0 +170739381535,248,0 +170739381583,248,0 +170739381631,248,0 +170739381680,249,0 +170739381728,248,0 +170739381776,248,0 +170739381826,248,0 +170739381874,248,0 +170739381921,246,0 +170739381969,246,0 +170739382017,246,0 +170739382065,246,0 +170739382113,246,0 +170739382161,246,0 +170739382209,246,0 +170739382257,246,0 +170739382305,246,0 +170739382352,247,0 +170739382400,247,0 +170739382448,247,0 +170739382496,247,0 +170739382546,247,0 +170739382594,247,0 +170739382643,247,0 +170739382691,247,0 +170739382739,247,0 +170739382787,247,0 +170739382835,247,0 +170739382883,247,0 +170739382931,247,0 +170739382980,246,0 +170739383028,247,0 +170739383076,247,0 +170739383124,247,0 +170739383172,247,0 +170739383219,247,0 +170739383267,246,0 +170739383315,247,0 +170739383363,247,0 +170739383411,247,0 +170739383459,247,0 +170739383507,247,0 +170739383555,247,0 +170739383604,247,0 +170739383652,246,0 +170739383700,247,0 +170739383748,246,0 +170739383796,246,0 +170739383844,246,0 +170739383892,247,0 +170739383939,246,0 +170739383987,246,0 +170739384035,246,0 +170739384083,247,0 +170739384131,246,0 +170739384179,246,0 +170739384227,246,0 +170739384275,246,0 +170739384322,246,0 +170739384370,247,0 +170739384418,246,0 +170739384466,246,0 +170739384514,246,0 +170739384562,246,0 +170739384610,246,0 +170739384658,247,0 +170739384706,246,0 +170739384755,246,0 +170739384803,246,0 +170739384851,246,0 +170739384899,247,0 +170739384947,247,0 +170739384994,247,0 +170739385042,247,0 +170739385090,246,0 +170739385138,247,0 +170739385186,247,0 +170739385234,246,0 +170739385282,246,0 +170739385330,246,0 +170739385378,247,0 +170739385426,246,0 +170739385474,247,0 +170739385521,246,0 +170739385569,247,0 +170739385619,247,0 +170739385668,247,0 +170739385718,246,0 +170739385766,246,0 +170739385814,246,0 +170739385863,246,0 +170739385913,246,0 +170739385961,246,0 +170739386010,246,0 +170739386058,246,0 +170739386106,246,0 +170739386154,246,0 +170739386202,246,0 +170739386252,246,0 +170739386301,246,0 +170739386349,246,0 +170739386397,246,0 +170739386445,246,0 +170739386495,246,0 +170739386543,246,0 +170739386591,246,0 +170739386638,246,0 +170739386688,246,0 +170739386736,246,0 +170739386784,246,0 +170739386832,246,0 +170739386880,246,0 +170739386929,246,0 +170739386977,246,0 +170739387025,246,0 +170739387073,246,0 +170739387121,246,0 +170739387170,246,0 +170739387218,246,0 +170739387266,246,0 +170739387316,246,0 +170739387364,246,0 +170739387412,246,0 +170739387460,246,0 +170739387507,246,0 +170739387557,246,0 +170739387605,246,0 +170739387653,246,0 +170739387702,246,0 +170739387752,246,0 +170739387800,246,0 +170739387848,247,0 +170739387897,246,0 +170739387945,246,0 +170739387995,246,0 +170739388043,246,0 +170739388092,246,0 +170739388140,246,0 +170739388188,246,0 +170739388236,247,0 +170739388284,247,0 +170739388332,246,0 +170739388380,246,0 +170739388428,246,0 +170739388476,246,0 +170739388525,246,0 +170739388573,246,0 +170739388623,246,0 +170739388671,246,0 +170739388720,246,0 +170739388768,247,0 +170739388818,246,0 +170739388865,246,0 +170739388915,246,0 +170739388963,246,0 +170739389011,246,0 +170739389060,246,0 +170739389110,246,0 +170739389158,247,0 +170739389207,247,0 +170739389257,246,0 +170739389306,246,0 +170739389354,246,0 +170739389402,246,0 +170739389450,247,0 +170739389498,246,0 +170739389546,246,0 +170739389596,246,0 +170739389644,246,0 +170739389693,245,0 +170739389741,246,0 +170739389789,246,0 +170739389837,246,0 +170739389885,246,0 +170739389933,246,0 +170739389981,245,0 +170739390028,246,0 +170739390076,246,0 +170739390126,246,0 +170739390174,246,0 +170739390221,246,0 +170739390271,246,0 +170739390319,246,0 +170739390367,246,0 +170739390415,246,0 +170739390463,246,0 +170739390511,246,0 +170739390558,246,0 +170739390606,246,0 +170739390654,246,0 +170739390702,246,0 +170739390750,245,0 +170739390798,246,0 +170739390846,246,0 +170739390894,246,0 +170739390942,246,0 +170739390989,247,0 +170739391037,246,0 +170739391088,246,0 +170739391136,247,0 +170739391183,246,0 +170739391231,246,0 +170739391279,247,0 +170739391327,246,0 +170739391375,246,0 +170739391423,247,0 +170739391471,247,0 +170739391519,247,0 +170739391567,247,0 +170739391615,246,0 +170739391664,247,0 +170739391714,246,0 +170739391762,246,0 +170739391811,247,0 +170739391859,246,0 +170739391907,246,0 +170739391955,247,0 +170739392005,247,0 +170739392053,246,0 +170739392101,247,0 +170739392150,246,0 +170739392200,246,0 +170739392249,247,0 +170739392297,246,0 +170739392347,247,0 +170739392395,247,0 +170739392442,247,0 +170739392490,247,0 +170739392538,247,0 +170739392586,246,0 +170739392634,247,0 +170739392682,246,0 +170739392730,246,0 +170739392778,247,0 +170739392826,247,0 +170739392874,247,0 +170739392923,246,0 +170739392973,247,0 +170739393021,247,0 +170739393070,246,0 +170739393120,246,0 +170739393168,246,0 +170739393216,247,0 +170739393264,247,0 +170739393312,247,0 +170739393360,246,0 +170739393409,247,0 +170739393459,247,0 +170739393507,247,0 +170739393555,247,0 +170739393604,246,0 +170739393654,246,0 +170739393702,247,0 +170739393750,247,0 +170739393798,247,0 +170739393847,247,0 +170739393895,246,0 +170739393945,246,0 +170739393994,247,0 +170739394044,247,0 +170739394092,247,0 +170739394140,246,0 +170739394188,247,0 +170739394236,247,0 +170739394284,247,0 +170739394332,247,0 +170739394380,247,0 +170739394428,246,0 +170739394476,247,0 +170739394524,246,0 +170739394572,246,0 +170739394621,246,0 +170739394669,247,0 +170739394717,246,0 +170739394765,247,0 +170739394813,246,0 +170739394863,246,0 +170739394911,247,0 +170739394959,247,0 +170739395007,247,0 +170739395055,247,0 +170739395103,247,0 +170739395152,246,0 +170739395200,246,0 +170739395248,247,0 +170739395296,246,0 +170739395344,247,0 +170739395391,246,0 +170739395439,247,0 +170739395487,247,0 +170739395535,247,0 +170739395583,246,0 +170739395631,247,0 +170739395680,246,0 +170739395728,247,0 +170739395776,247,0 +170739395824,246,0 +170739395872,246,0 +170739395920,246,0 +170739395968,247,0 +170739396015,246,0 +170739396063,246,0 +170739396111,247,0 +170739396159,247,0 +170739396207,246,0 +170739396255,246,0 +170739396304,246,0 +170739396352,247,0 +170739396400,247,0 +170739396448,246,0 +170739396496,246,0 +170739396545,246,0 +170739396593,246,0 +170739396643,247,0 +170739396691,246,0 +170739396739,246,0 +170739396788,246,0 +170739396836,246,0 +170739396884,246,0 +170739396932,246,0 +170739396980,247,0 +170739397028,246,0 +170739397078,246,0 +170739397126,247,0 +170739397174,246,0 +170739397222,247,0 +170739397271,247,0 +170739397321,247,0 +170739397369,246,0 +170739397417,246,0 +170739397466,246,0 +170739397514,246,0 +170739397562,246,0 +170739397610,247,0 +170739397658,246,0 +170739397706,246,0 +170739397753,246,0 +170739397801,246,0 +170739397849,247,0 +170739397897,246,0 +170739397946,246,0 +170739397994,246,0 +170739398042,246,0 +170739398090,246,0 +170739398140,246,0 +170739398188,247,0 +170739398236,247,0 +170739398284,246,0 +170739398332,247,0 +170739398379,246,0 +170739398427,246,0 +170739398477,246,0 +170739398525,246,0 +170739398573,246,0 +170739398621,246,0 +170739398669,246,0 +170739398717,246,0 +170739398765,246,0 +170739398813,246,0 +170739398862,246,0 +170739398912,246,0 +170739398961,247,0 +170739399009,246,0 +170739399059,246,0 +170739399107,246,0 +170739399155,246,0 +170739399204,247,0 +170739399252,246,0 +170739399300,247,0 +170739399348,246,0 +170739399397,246,0 +170739399445,247,0 +170739399495,247,0 +170739399544,246,0 +170739399592,247,0 +170739399642,247,0 +170739399690,246,0 +170739399739,246,0 +170739399789,246,0 +170739399837,247,0 +170739399885,246,0 +170739399934,246,0 +170739399982,247,0 +170739400032,246,0 +170739400080,246,0 +170739400128,246,0 +170739400177,246,0 +170739400225,246,0 +170739400273,246,0 +170739400321,246,0 +170739400371,246,0 +170739400420,246,0 +170739400468,246,0 +170739400518,246,0 +170739400566,246,0 +170739400614,246,0 +170739400663,247,0 +170739400711,247,0 +170739400761,246,0 +170739400809,246,0 +170739400858,246,0 +170739400906,247,0 +170739400956,246,0 +170739401003,246,0 +170739401051,246,0 +170739401099,247,0 +170739401147,246,0 +170739401197,246,0 +170739401246,246,0 +170739401294,246,0 +170739401342,247,0 +170739401390,247,0 +170739401438,246,0 +170739401488,246,0 +170739401537,246,0 +170739401585,246,0 +170739401633,246,0 +170739401681,246,0 +170739401729,246,0 +170739401777,246,0 +170739401825,246,0 +170739401875,246,0 +170739401924,247,0 +170739401972,247,0 +170739402020,247,0 +170739402068,246,0 +170739402116,246,0 +170739402166,246,0 +170739402214,247,0 +170739402262,246,0 +170739402310,247,0 +170739402358,246,0 +170739402407,247,0 +170739402457,247,0 +170739402506,246,0 +170739402554,247,0 +170739402602,247,0 +170739402650,246,0 +170739402699,246,0 +170739402749,246,0 +170739402798,246,0 +170739402846,247,0 +170739402894,247,0 +170739402942,247,0 +170739402990,246,0 +170739403038,246,0 +170739403088,246,0 +170739403137,247,0 +170739403185,246,0 +170739403235,247,0 +170739403284,246,0 +170739403332,246,0 +170739403380,246,0 +170739403430,246,0 +170739403479,246,0 +170739403529,246,0 +170739403577,246,0 +170739403625,247,0 +170739403674,247,0 +170739403722,247,0 +170739403770,247,0 +170739403820,247,0 +170739403869,247,0 +170739403917,247,0 +170739403965,246,0 +170739404015,247,0 +170739404064,246,0 +170739404112,246,0 +170739404160,247,0 +170739404210,246,0 +170739404258,247,0 +170739404306,247,0 +170739404354,246,0 +170739404402,246,0 +170739404450,246,0 +170739404499,246,0 +170739404547,246,0 +170739404595,247,0 +170739404644,247,0 +170739404692,247,0 +170739404742,247,0 +170739404791,246,0 +170739404839,247,0 +170739404889,246,0 +170739404937,247,0 +170739404985,247,0 +170739405033,246,0 +170739405081,246,0 +170739405129,247,0 +170739405178,246,0 +170739405226,247,0 +170739405276,246,0 +170739405324,246,0 +170739405373,246,0 +170739405421,247,0 +170739405469,246,0 +170739405519,247,0 +170739405568,246,0 +170739405618,246,0 +170739405666,247,0 +170739405715,246,0 +170739405763,246,0 +170739405813,246,0 +170739405861,247,0 +170739405909,246,0 +170739405957,247,0 +170739406005,247,0 +170739406053,247,0 +170739406102,247,0 +170739406150,246,0 +170739406200,247,0 +170739406248,247,0 +170739406296,246,0 +170739406344,247,0 +170739406392,246,0 +170739406440,246,0 +170739406487,247,0 +170739406535,246,0 +170739406583,247,0 +170739406633,247,0 +170739406681,246,0 +170739406729,246,0 +170739406777,246,0 +170739406825,246,0 +170739406873,247,0 +170739406921,247,0 +170739406969,246,0 +170739407018,247,0 +170739407066,246,0 +170739407114,247,0 +170739407162,247,0 +170739407210,246,0 +170739407259,246,0 +170739407309,246,0 +170739407358,246,0 +170739407406,246,0 +170739407454,246,0 +170739407502,246,0 +170739407550,246,0 +170739407598,247,0 +170739407646,246,0 +170739407694,246,0 +170739407742,246,0 +170739407790,246,0 +170739407838,246,0 +170739407886,246,0 +170739407934,246,0 +170739407982,246,0 +170739408030,246,0 +170739408078,247,0 +170739408127,247,0 +170739408177,247,0 +170739408225,247,0 +170739408273,246,0 +170739408321,246,0 +170739408369,247,0 +170739408417,247,0 +170739408464,246,0 +170739408514,247,0 +170739408563,246,0 +170739408611,246,0 +170739408659,247,0 +170739408707,246,0 +170739408757,246,0 +170739408805,247,0 +170739408854,246,0 +170739408902,246,0 +170739408950,246,0 +170739408998,247,0 +170739409046,247,0 +170739409094,246,0 +170739409142,246,0 +170739409192,246,0 +170739409241,246,0 +170739409290,247,0 +170739409340,246,0 +170739409390,247,0 +170739409437,247,0 +170739409485,247,0 +170739409533,246,0 +170739409581,246,0 +170739409629,246,0 +170739409677,246,0 +170739409725,246,0 +170739409773,246,0 +170739409822,247,0 +170739409870,246,0 +170739409918,247,0 +170739409966,246,0 +170739410014,247,0 +170739410062,246,0 +170739410109,247,0 +170739410157,246,0 +170739410205,247,0 +170739410255,246,0 +170739410303,247,0 +170739410352,246,0 +170739410400,246,0 +170739410448,246,0 +170739410496,246,0 +170739410545,246,0 +170739410593,247,0 +170739410641,246,0 +170739410689,246,0 +170739410737,246,0 +170739410786,247,0 +170739410834,246,0 +170739410882,247,0 +170739410930,246,0 +170739410978,246,0 +170739411026,246,0 +170739411073,247,0 +170739411121,246,0 +170739411169,247,0 +170739411217,247,0 +170739411265,247,0 +170739411313,246,0 +170739411361,247,0 +170739411409,247,0 +170739411458,247,0 +170739411506,246,0 +170739411554,246,0 +170739411602,246,0 +170739411650,246,0 +170739411699,246,0 +170739411747,247,0 +170739411795,247,0 +170739411843,246,0 +170739411891,246,0 +170739411940,246,0 +170739411988,246,0 +170739412036,247,0 +170739412084,247,0 +170739412132,247,0 +170739412180,247,0 +170739412228,247,0 +170739412277,247,0 +170739412326,246,0 +170739412374,247,0 +170739412422,246,0 +170739412470,246,0 +170739412518,246,0 +170739412567,247,0 +170739412615,246,0 +170739412663,247,0 +170739412711,246,0 +170739412759,246,0 +170739412807,246,0 +170739412856,246,0 +170739412904,246,0 +170739412952,246,0 +170739413000,246,0 +170739413048,246,0 +170739413097,247,0 +170739413145,246,0 +170739413193,246,0 +170739413242,246,0 +170739413290,246,0 +170739413338,247,0 +170739413386,247,0 +170739413434,246,0 +170739413482,246,0 +170739413530,247,0 +170739413579,246,0 +170739413627,246,0 +170739413675,246,0 +170739413723,246,0 +170739413772,246,0 +170739413820,247,0 +170739413870,246,0 +170739413918,246,0 +170739413965,246,0 +170739414013,246,0 +170739414061,246,0 +170739414109,247,0 +170739414157,246,0 +170739414205,247,0 +170739414254,246,0 +170739414302,246,0 +170739414350,246,0 +170739414399,246,0 +170739414447,246,0 +170739414495,246,0 +170739414543,246,0 +170739414592,246,0 +170739414640,246,0 +170739414688,246,0 +170739414736,246,0 +170739414784,246,0 +170739414832,246,0 +170739414880,246,0 +170739414928,246,0 +170739414975,246,0 +170739415023,247,0 +170739415071,246,0 +170739415119,246,0 +170739415167,246,0 +170739415215,246,0 +170739415263,246,0 +170739415311,246,0 +170739415359,246,0 +170739415407,246,0 +170739415454,246,0 +170739415502,247,0 +170739415552,246,0 +170739415600,246,0 +170739415648,246,0 +170739415695,246,0 +170739415743,246,0 +170739415793,246,0 +170739415841,247,0 +170739415889,246,0 +170739415936,246,0 +170739415984,246,0 +170739416032,246,0 +170739416080,246,0 +170739416128,246,0 +170739416176,246,0 +170739416225,246,0 +170739416273,246,0 +170739416321,246,0 +170739416369,246,0 +170739416417,246,0 +170739416465,246,0 +170739416513,246,0 +170739416561,246,0 +170739416609,246,0 +170739416656,246,0 +170739416704,246,0 +170739416752,246,0 +170739416800,246,0 +170739416848,246,0 +170739416896,246,0 +170739416945,246,0 +170739416993,246,0 +170739417041,246,0 +170739417089,246,0 +170739417137,246,0 +170739417185,246,0 +170739417233,246,0 +170739417281,246,0 +170739417329,246,0 +170739417377,246,0 +170739417424,246,0 +170739417472,246,0 +170739417520,246,0 +170739417568,246,0 +170739417616,246,0 +170739417664,246,0 +170739417712,246,0 +170739417760,246,0 +170739417807,246,0 +170739417855,246,0 +170739417903,246,0 +170739417951,246,0 +170739417999,246,0 +170739418047,246,0 +170739418095,246,0 +170739418143,246,0 +170739418191,246,0 +170739418239,246,0 +170739418289,246,0 +170739418337,246,0 +170739418384,246,0 +170739418434,246,0 +170739418484,246,0 +170739418532,246,0 +170739418580,246,0 +170739418627,246,0 +170739418677,246,0 +170739418725,246,0 +170739418773,246,0 +170739418821,246,0 +170739418870,246,0 +170739418920,246,0 +170739418968,246,0 +170739419015,246,0 +170739419065,246,0 +170739419113,246,0 +170739419161,246,0 +170739419209,246,0 +170739419258,246,0 +170739419306,246,0 +170739419356,246,0 +170739419403,246,0 +170739419451,246,0 +170739419499,246,0 +170739419547,246,0 +170739419595,246,0 +170739419643,246,0 +170739419691,246,0 +170739419739,246,0 +170739419788,246,0 +170739419838,246,0 +170739419887,246,0 +170739419935,246,0 +170739419983,246,0 +170739420031,246,0 +170739420079,246,0 +170739420127,246,0 +170739420175,246,0 +170739420223,246,0 +170739420271,246,0 +170739420318,246,0 +170739420366,246,0 +170739420414,246,0 +170739420462,246,0 +170739420510,246,0 +170739420558,246,0 +170739420606,246,0 +170739420654,246,0 +170739420702,247,0 +170739420749,246,0 +170739420797,246,0 +170739420845,246,0 +170739420893,246,0 +170739420941,246,0 +170739420989,246,0 +170739421037,246,0 +170739421086,246,0 +170739421134,246,0 +170739421182,246,0 +170739421230,246,0 +170739421278,246,0 +170739421326,246,0 +170739421376,246,0 +170739421425,246,0 +170739421473,246,0 +170739421521,246,0 +170739421571,246,0 +170739421619,246,0 +170739421668,246,0 +170739421718,246,0 +170739421766,246,0 +170739421814,246,0 +170739421862,246,0 +170739421910,246,0 +170739421958,246,0 +170739422006,246,0 +170739422054,246,0 +170739422102,246,0 +170739422151,246,0 +170739422199,246,0 +170739422247,246,0 +170739422297,246,0 +170739422346,246,0 +170739422394,246,0 +170739422444,246,0 +170739422492,246,0 +170739422541,246,0 +170739422591,246,0 +170739422639,246,0 +170739422687,246,0 +170739422734,246,0 +170739422784,246,0 +170739422832,246,0 +170739422880,246,0 +170739422930,246,0 +170739422977,246,0 +170739423025,246,0 +170739423073,246,0 +170739423123,246,0 +170739423171,246,0 +170739423220,246,0 +170739423268,246,0 +170739423316,246,0 +170739423364,246,0 +170739423414,246,0 +170739423462,246,0 +170739423510,246,0 +170739423559,246,0 +170739423607,246,0 +170739423655,246,0 +170739423703,246,0 +170739423751,246,0 +170739423799,246,0 +170739423847,247,0 +170739423895,246,0 +170739423945,246,0 +170739423993,246,0 +170739424041,246,0 +170739424090,246,0 +170739424140,246,0 +170739424188,246,0 +170739424236,246,0 +170739424284,246,0 +170739424333,246,0 +170739424383,246,0 +170739424431,246,0 +170739424480,246,0 +170739424528,246,0 +170739424578,246,0 +170739424627,246,0 +170739424675,246,0 +170739424725,246,0 +170739424774,246,0 +170739424824,246,0 +170739424872,246,0 +170739424920,246,0 +170739424969,246,0 +170739425017,246,0 +170739425065,246,0 +170739425113,246,0 +170739425163,246,0 +170739425211,246,0 +170739425258,246,0 +170739425308,246,0 +170739425356,246,0 +170739425404,246,0 +170739425452,246,0 +170739425500,246,0 +170739425549,246,0 +170739425597,246,0 +170739425645,246,0 +170739425695,246,0 +170739425743,246,0 +170739425791,246,0 +170739425839,246,0 +170739425887,247,0 +170739425936,246,0 +170739425984,246,0 +170739426032,246,0 +170739426080,246,0 +170739426130,246,0 +170739426178,246,0 +170739426226,246,0 +170739426274,246,0 +170739426322,246,0 +170739426370,246,0 +170739426418,246,0 +170739426466,246,0 +170739426514,246,0 +170739426563,246,0 +170739426613,246,0 +170739426661,246,0 +170739426709,246,0 +170739426758,246,0 +170739426806,246,0 +170739426854,246,0 +170739426902,246,0 +170739426950,246,0 +170739426998,246,0 +170739427046,246,0 +170739427094,246,0 +170739427142,246,0 +170739427190,246,0 +170739427238,246,0 +170739427286,246,0 +170739427334,246,0 +170739427382,246,0 +170739427429,246,0 +170739427479,246,0 +170739427527,246,0 +170739427575,246,0 +170739427623,246,0 +170739427671,246,0 +170739427720,246,0 +170739427768,246,0 +170739427818,246,0 +170739427866,246,0 +170739427914,246,0 +170739427962,246,0 +170739428010,246,0 +170739428059,246,0 +170739428107,246,0 +170739428155,246,0 +170739428203,246,0 +170739428251,246,0 +170739428299,246,0 +170739428347,246,0 +170739428396,246,0 +170739428446,246,0 +170739428494,246,0 +170739428543,246,0 +170739428591,246,0 +170739428639,246,0 +170739428687,246,0 +170739428735,246,0 +170739428783,246,0 +170739428831,246,0 +170739428880,246,0 +170739428928,246,0 +170739428978,246,0 +170739429026,246,0 +170739429075,246,0 +170739429123,246,0 +170739429171,246,0 +170739429221,246,0 +170739429270,246,0 +170739429318,247,0 +170739429366,246,0 +170739429414,246,0 +170739429462,246,0 +170739429510,246,0 +170739429558,246,0 +170739429606,246,0 +170739429654,246,0 +170739429702,246,0 +170739429751,246,0 +170739429799,246,0 +170739429847,246,0 +170739429897,246,0 +170739429945,247,0 +170739429994,246,0 +170739430044,246,0 +170739430092,246,0 +170739430141,247,0 +170739430191,246,0 +170739430240,246,0 +170739430288,246,0 +170739430336,246,0 +170739430384,246,0 +170739430432,246,0 +170739430480,246,0 +170739430528,246,0 +170739430576,246,0 +170739430624,246,0 +170739430673,246,0 +170739430723,246,0 +170739430771,246,0 +170739430819,246,0 +170739430867,246,0 +170739430915,246,0 +170739430963,246,0 +170739431011,246,0 +170739431058,246,0 +170739431106,246,0 +170739431154,246,0 +170739431204,246,0 +170739431253,246,0 +170739431303,246,0 +170739431352,246,0 +170739431400,246,0 +170739431448,246,0 +170739431496,246,0 +170739431544,246,0 +170739431592,246,0 +170739431640,246,0 +170739431688,246,0 +170739431736,246,0 +170739431783,246,0 +170739431831,246,0 +170739431879,246,0 +170739431927,246,0 +170739431975,246,0 +170739432023,247,0 +170739432071,246,0 +170739432119,246,0 +170739432168,246,0 +170739432216,246,0 +170739432266,246,0 +170739432314,246,0 +170739432362,246,0 +170739432410,246,0 +170739432458,246,0 +170739432506,246,0 +170739432555,246,0 +170739432605,246,0 +170739432653,246,0 +170739432701,246,0 +170739432750,246,0 +170739432800,246,0 +170739432849,246,0 +170739432898,246,0 +170739432948,246,0 +170739432997,246,0 +170739433045,246,0 +170739433095,246,0 +170739433143,246,0 +170739433192,246,0 +170739433242,246,0 +170739433290,246,0 +170739433338,246,0 +170739433386,246,0 +170739433434,246,0 +170739433482,246,0 +170739433531,246,0 +170739433579,246,0 +170739433627,246,0 +170739433675,246,0 +170739433725,246,0 +170739433774,246,0 +170739433822,246,0 +170739433872,246,0 +170739433920,246,0 +170739433968,246,0 +170739434015,247,0 +170739434065,246,0 +170739434113,246,0 +170739434161,246,0 +170739434209,246,0 +170739434258,247,0 +170739434308,246,0 +170739434356,246,0 +170739434404,246,0 +170739434452,246,0 +170739434501,246,0 +170739434551,246,0 +170739434599,246,0 +170739434647,246,0 +170739434695,246,0 +170739434744,246,0 +170739434792,246,0 +170739434842,246,0 +170739434891,246,0 +170739434939,246,0 +170739434987,246,0 +170739435037,246,0 +170739435085,246,0 +170739435134,246,0 +170739435184,246,0 +170739435233,246,0 +170739435281,246,0 +170739435331,246,0 +170739435380,247,0 +170739435428,246,0 +170739435476,246,0 +170739435524,246,0 +170739435573,246,0 +170739435621,246,0 +170739435669,246,0 +170739435717,246,0 +170739435765,246,0 +170739435813,246,0 +170739435860,246,0 +170739435908,246,0 +170739435956,246,0 +170739436004,246,0 +170739436052,246,0 +170739436100,246,0 +170739436148,246,0 +170739436196,246,0 +170739436244,246,0 +170739436293,246,0 +170739436343,246,0 +170739436392,247,0 +170739436440,246,0 +170739436490,246,0 +170739436538,246,0 +170739436586,246,0 +170739436635,246,0 +170739436683,246,0 +170739436731,246,0 +170739436779,246,0 +170739436827,246,0 +170739436875,246,0 +170739436923,246,0 +170739436971,246,0 +170739437019,246,0 +170739437067,246,0 +170739437114,246,0 +170739437162,246,0 +170739437210,246,0 +170739437260,247,0 +170739437309,246,0 +170739437357,246,0 +170739437405,247,0 +170739437455,246,0 +170739437504,246,0 +170739437552,246,0 +170739437600,246,0 +170739437650,246,0 +170739437698,246,0 +170739437746,246,0 +170739437794,246,0 +170739437843,246,0 +170739437891,246,0 +170739437939,246,0 +170739437987,246,0 +170739438036,246,0 +170739438084,246,0 +170739438134,246,0 +170739438182,246,0 +170739438230,246,0 +170739438278,246,0 +170739438326,246,0 +170739438375,246,0 +170739438423,246,0 +170739438473,246,0 +170739438520,246,0 +170739438570,246,0 +170739438618,246,0 +170739438666,246,0 +170739438714,246,0 +170739438762,246,0 +170739438811,246,0 +170739438859,246,0 +170739438907,246,0 +170739438955,246,0 +170739439003,246,0 +170739439051,246,0 +170739439099,246,0 +170739439147,246,0 +170739439195,246,0 +170739439243,246,0 +170739439290,246,0 +170739439338,246,0 +170739439386,246,0 +170739439434,246,0 +170739439482,246,0 +170739439531,246,0 +170739439579,246,0 +170739439627,246,0 +170739439675,246,0 +170739439723,246,0 +170739439771,247,0 +170739439819,246,0 +170739439867,246,0 +170739439915,246,0 +170739439963,246,0 +170739440012,246,0 +170739440060,246,0 +170739440110,246,0 +170739440158,246,0 +170739440207,246,0 +170739440255,246,0 +170739440303,246,0 +170739440351,246,0 +170739440399,246,0 +170739440447,246,0 +170739440495,246,0 +170739440545,246,0 +170739440594,246,0 +170739440642,246,0 +170739440692,246,0 +170739440740,246,0 +170739440789,246,0 +170739440837,246,0 +170739440887,246,0 +170739440935,246,0 +170739440984,246,0 +170739441032,246,0 +170739441080,246,0 +170739441128,246,0 +170739441176,246,0 +170739441223,246,0 +170739441271,246,0 +170739441319,246,0 +170739441367,246,0 +170739441415,246,0 +170739441465,246,0 +170739441512,246,0 +170739441560,246,0 +170739441608,246,0 +170739441656,246,0 +170739441706,246,0 +170739441754,246,0 +170739441801,246,0 +170739441849,246,0 +170739441897,246,0 +170739441947,246,0 +170739441995,246,0 +170739442044,246,0 +170739442092,247,0 +170739442140,246,0 +170739442188,246,0 +170739442236,246,0 +170739442283,246,0 +170739442331,246,0 +170739442381,246,0 +170739442429,246,0 +170739442478,246,0 +170739442526,247,0 +170739442575,246,0 +170739442623,246,0 +170739442673,246,0 +170739442721,246,0 +170739442769,246,0 +170739442818,246,0 +170739442866,246,0 +170739442916,246,0 +170739442964,246,0 +170739443012,246,0 +170739443060,246,0 +170739443108,246,0 +170739443156,246,0 +170739443203,246,0 +170739443253,246,0 +170739443303,246,0 +170739443350,246,0 +170739443398,246,0 +170739443448,246,0 +170739443497,246,0 +170739443545,246,0 +170739443593,246,0 +170739443641,246,0 +170739443689,247,0 +170739443737,246,0 +170739443785,246,0 +170739443833,246,0 +170739443881,246,0 +170739443929,246,0 +170739443977,246,0 +170739444025,246,0 +170739444074,246,0 +170739444124,246,0 +170739444172,246,0 +170739444220,246,0 +170739444268,246,0 +170739444316,246,0 +170739444365,246,0 +170739444415,246,0 +170739444463,246,0 +170739444511,246,0 +170739444559,246,0 +170739444607,246,0 +170739444655,246,0 +170739444703,246,0 +170739444752,246,0 +170739444800,246,0 +170739444848,246,0 +170739444896,247,0 +170739444944,246,0 +170739444991,246,0 +170739445039,246,0 +170739445087,246,0 +170739445137,246,0 +170739445185,246,0 +170739445233,246,0 +170739445282,246,0 +170739445330,246,0 +170739445378,246,0 +170739445428,246,0 +170739445477,246,0 +170739445525,246,0 +170739445573,246,0 +170739445622,246,0 +170739445670,246,0 +170739445720,246,0 +170739445769,246,0 +170739445817,246,0 +170739445865,246,0 +170739445913,246,0 +170739445961,246,0 +170739446009,246,0 +170739446059,246,0 +170739446107,246,0 +170739446155,246,0 +170739446203,246,0 +170739446251,247,0 +170739446299,246,0 +170739446347,246,0 +170739446395,246,0 +170739446442,246,0 +170739446492,246,0 +170739446540,246,0 +170739446588,246,0 +170739446638,246,0 +170739446687,246,0 +170739446737,246,0 +170739446784,246,0 +170739446832,246,0 +170739446880,246,0 +170739446928,246,0 +170739446976,246,0 +170739447024,246,0 +170739447072,246,0 +170739447120,246,0 +170739447168,246,0 +170739447216,246,0 +170739447263,246,0 +170739447311,246,0 +170739447359,246,0 +170739447407,246,0 +170739447455,246,0 +170739447503,246,0 +170739447551,246,0 +170739447599,246,0 +170739447647,246,0 +170739447697,246,0 +170739447746,246,0 +170739447794,246,0 +170739447844,246,0 +170739447893,246,0 +170739447941,246,0 +170739447989,246,0 +170739448037,246,0 +170739448085,246,0 +170739448133,246,0 +170739448182,246,0 +170739448230,246,0 +170739448278,246,0 +170739448326,246,0 +170739448374,246,0 +170739448421,246,0 +170739448469,246,0 +170739448517,246,0 +170739448565,246,0 +170739448615,246,0 +170739448664,246,0 +170739448712,246,0 +170739448762,246,0 +170739448810,246,0 +170739448858,246,0 +170739448906,246,0 +170739448954,246,0 +170739449003,246,0 +170739449051,246,0 +170739449101,246,0 +170739449149,246,0 +170739449197,246,0 +170739449246,246,0 +170739449294,246,0 +170739449344,246,0 +170739449393,246,0 +170739449443,246,0 +170739449492,246,0 +170739449540,246,0 +170739449588,246,0 +170739449636,246,0 +170739449684,246,0 +170739449733,246,0 +170739449781,247,0 +170739449829,246,0 +170739449877,246,0 +170739449926,246,0 +170739449974,246,0 +170739450022,246,0 +170739450070,246,0 +170739450118,246,0 +170739450168,246,0 +170739450216,246,0 +170739450265,246,0 +170739450313,246,0 +170739450361,246,0 +170739450409,246,0 +170739450457,246,0 +170739450506,246,0 +170739450556,246,0 +170739450604,246,0 +170739450652,246,0 +170739450700,246,0 +170739450749,246,0 +170739450797,246,0 +170739450845,246,0 +170739450893,246,0 +170739450941,246,0 +170739450990,246,0 +170739451040,246,0 +170739451088,246,0 +170739451136,246,0 +170739451185,246,0 +170739451233,246,0 +170739451281,246,0 +170739451331,246,0 +170739451380,246,0 +170739451428,246,0 +170739451476,246,0 +170739451526,246,0 +170739451574,246,0 +170739451622,246,0 +170739451671,246,0 +170739451721,246,0 +170739451769,246,0 +170739451817,246,0 +170739451865,246,0 +170739451913,246,0 +170739451960,246,0 +170739452008,246,0 +170739452056,246,0 +170739452104,246,0 +170739452152,246,0 +170739452202,246,0 +170739452250,246,0 +170739452297,246,0 +170739452347,246,0 +170739452395,246,0 +170739452445,246,0 +170739452493,246,0 +170739452540,246,0 +170739452588,246,0 +170739452638,246,0 +170739452687,247,0 +170739452737,246,0 +170739452785,246,0 +170739452833,246,0 +170739452882,246,0 +170739452930,246,0 +170739452980,246,0 +170739453027,246,0 +170739453075,246,0 +170739453125,246,0 +170739453173,246,0 +170739453222,246,0 +170739453270,246,0 +170739453318,246,0 +170739453366,246,0 +170739453414,246,0 +170739453462,246,0 +170739453510,246,0 +170739453557,246,0 +170739453605,246,0 +170739453653,246,0 +170739453701,246,0 +170739453749,246,0 +170739453797,246,0 +170739453845,246,0 +170739453893,246,0 +170739453941,246,0 +170739453988,246,0 +170739454036,246,0 +170739454084,246,0 +170739454132,246,0 +170739454182,246,0 +170739454229,246,0 +170739454277,246,0 +170739454325,246,0 +170739454373,246,0 +170739454421,246,0 +170739454469,246,0 +170739454519,246,0 +170739454568,246,0 +170739454616,246,0 +170739454665,246,0 +170739454715,246,0 +170739454763,246,0 +170739454813,246,0 +170739454861,246,0 +170739454909,246,0 +170739454956,246,0 +170739455004,246,0 +170739455052,246,0 +170739455100,246,0 +170739455148,246,0 +170739455196,246,0 +170739455244,246,0 +170739455291,246,0 +170739455341,246,0 +170739455389,246,0 +170739455437,246,0 +170739455485,246,0 +170739455534,246,0 +170739455582,246,0 +170739455630,246,0 +170739455678,246,0 +170739455726,246,0 +170739455773,246,0 +170739455821,246,0 +170739455869,246,0 +170739455917,246,0 +170739455967,246,0 +170739456014,246,0 +170739456064,246,0 +170739456113,246,0 +170739456161,246,0 +170739456211,246,0 +170739456259,246,0 +170739456307,246,0 +170739456355,246,0 +170739456403,246,0 +170739456451,246,0 +170739456499,246,0 +170739456547,246,0 +170739456595,246,0 +170739456644,246,0 +170739456694,246,0 +170739456742,246,0 +170739456790,246,0 +170739456839,246,0 +170739456889,246,0 +170739456937,246,0 +170739456985,246,0 +170739457033,246,0 +170739457080,246,0 +170739457128,246,0 +170739457176,246,0 +170739457224,246,0 +170739457274,246,0 +170739457321,246,0 +170739457369,246,0 +170739457417,246,0 +170739457465,246,0 +170739457513,246,0 +170739457561,246,0 +170739457609,246,0 +170739457657,246,0 +170739457705,246,0 +170739457752,246,0 +170739457800,246,0 +170739457848,246,0 +170739457896,246,0 +170739457944,246,0 +170739457992,246,0 +170739458041,246,0 +170739458089,246,0 +170739458137,246,0 +170739458187,246,0 +170739458235,247,0 +170739458284,246,0 +170739458332,246,0 +170739458382,246,0 +170739458430,247,0 +170739458478,246,0 +170739458527,246,0 +170739458575,246,0 +170739458625,246,0 +170739458674,246,0 +170739458722,246,0 +170739458772,246,0 +170739458820,246,0 +170739458868,246,0 +170739458916,246,0 +170739458964,246,0 +170739459013,246,0 +170739459061,246,0 +170739459109,246,0 +170739459157,246,0 +170739459207,246,0 +170739459256,246,0 +170739459304,246,0 +170739459352,246,0 +170739459400,246,0 +170739459448,246,0 +170739459496,246,0 +170739459544,246,0 +170739459593,246,0 +170739459641,246,0 +170739459691,246,0 +170739459739,247,0 +170739459788,246,0 +170739459836,246,0 +170739459884,246,0 +170739459932,246,0 +170739459980,246,0 +170739460027,246,0 +170739460075,246,0 +170739460123,246,0 +170739460171,246,0 +170739460221,246,0 +170739460269,246,0 +170739460316,246,0 +170739460364,246,0 +170739460412,246,0 +170739460460,246,0 +170739460508,246,0 +170739460556,246,0 +170739460604,246,0 +170739460652,246,0 +170739460700,246,0 +170739460747,246,0 +170739460795,246,0 +170739460843,246,0 +170739460891,246,0 +170739460939,246,0 +170739460987,246,0 +170739461036,246,0 +170739461084,246,0 +170739461134,246,0 +170739461182,246,0 +170739461231,246,0 +170739461281,246,0 +170739461330,246,0 +170739461378,246,0 +170739461426,246,0 +170739461476,246,0 +170739461524,246,0 +170739461572,246,0 +170739461621,246,0 +170739461671,246,0 +170739461719,246,0 +170739461767,246,0 +170739461815,246,0 +170739461863,246,0 +170739461912,246,0 +170739461960,246,0 +170739462010,246,0 +170739462058,247,0 +170739462106,246,0 +170739462155,246,0 +170739462203,246,0 +170739462253,246,0 +170739462300,246,0 +170739462348,246,0 +170739462396,246,0 +170739462444,246,0 +170739462492,246,0 +170739462540,246,0 +170739462588,246,0 +170739462638,246,0 +170739462686,246,0 +170739462734,246,0 +170739462783,246,0 +170739462831,246,0 +170739462879,246,0 +170739462927,246,0 +170739462975,246,0 +170739463023,246,0 +170739463072,246,0 +170739463120,246,0 +170739463170,246,0 +170739463218,246,0 +170739463267,246,0 +170739463315,246,0 +170739463363,246,0 +170739463411,246,0 +170739463461,246,0 +170739463509,246,0 +170739463557,246,0 +170739463605,246,0 +170739463653,246,0 +170739463702,246,0 +170739463752,246,0 +170739463801,246,0 +170739463849,246,0 +170739463897,246,0 +170739463945,246,0 +170739463993,246,0 +170739464041,246,0 +170739464089,246,0 +170739464137,246,0 +170739464185,246,0 +170739464234,246,0 +170739464282,246,0 +170739464330,246,0 +170739464380,247,0 +170739464428,246,0 +170739464475,246,0 +170739464523,247,0 +170739464571,246,0 +170739464619,246,0 +170739464667,246,0 +170739464715,246,0 +170739464763,246,0 +170739464811,246,0 +170739464861,246,0 +170739464909,246,0 +170739464957,246,0 +170739465005,246,0 +170739465054,246,0 +170739465104,246,0 +170739465152,246,0 +170739465200,246,0 +170739465249,246,0 +170739465297,246,0 +170739465345,246,0 +170739465395,246,0 +170739465443,246,0 +170739465491,246,0 +170739465539,246,0 +170739465588,246,0 +170739465636,246,0 +170739465684,246,0 +170739465732,246,0 +170739465782,246,0 +170739465829,246,0 +170739465877,246,0 +170739465927,246,0 +170739465976,246,0 +170739466026,246,0 +170739466074,246,0 +170739466122,246,0 +170739466170,246,0 +170739466219,246,0 +170739466267,246,0 +170739466317,246,0 +170739466365,246,0 +170739466414,246,0 +170739466462,246,0 +170739466510,246,0 +170739466559,246,0 +170739466609,246,0 +170739466658,246,0 +170739466708,246,0 +170739466756,246,0 +170739466806,246,0 +170739466855,246,0 +170739466903,246,0 +170739466953,246,0 +170739467001,247,0 +170739467049,246,0 +170739467097,246,0 +170739467145,246,0 +170739467192,246,0 +170739467242,246,0 +170739467290,246,0 +170739467338,246,0 +170739467385,246,0 +170739467435,246,0 +170739467484,246,0 +170739467532,246,0 +170739467580,246,0 +170739467628,246,0 +170739467678,246,0 +170739467726,246,0 +170739467774,246,0 +170739467823,246,0 +170739467871,246,0 +170739467919,246,0 +170739467969,246,0 +170739468018,246,0 +170739468068,246,0 +170739468116,246,0 +170739468164,246,0 +170739468212,246,0 +170739468261,246,0 +170739468309,246,0 +170739468359,246,0 +170739468407,246,0 +170739468456,246,0 +170739468504,246,0 +170739468552,246,0 +170739468600,246,0 +170739468647,246,0 +170739468695,246,0 +170739468743,246,0 +170739468791,246,0 +170739468839,246,0 +170739468887,246,0 +170739468935,246,0 +170739468983,246,0 +170739469032,246,0 +170739469080,246,0 +170739469128,246,0 +170739469176,246,0 +170739469225,246,0 +170739469273,246,0 +170739469323,246,0 +170739469371,246,0 +170739469420,246,0 +170739469470,246,0 +170739469518,246,0 +170739469566,246,0 +170739469615,246,0 +170739469665,246,0 +170739469713,246,0 +170739469761,246,0 +170739469809,246,0 +170739469858,246,0 +170739469906,246,0 +170739469956,246,0 +170739470004,246,0 +170739470052,246,0 +170739470101,246,0 +170739470149,246,0 +170739470197,246,0 +170739470245,246,0 +170739470293,246,0 +170739470341,246,0 +170739470389,246,0 +170739470437,246,0 +170739470485,246,0 +170739470532,246,0 +170739470580,246,0 +170739470628,246,0 +170739470676,246,0 +170739470724,246,0 +170739470773,246,0 +170739470821,246,0 +170739470869,246,0 +170739470917,246,0 +170739470965,246,0 +170739471015,246,0 +170739471063,246,0 +170739471111,246,0 +170739471158,246,0 +170739471208,246,0 +170739471256,246,0 +170739471304,246,0 +170739471352,246,0 +170739471399,246,0 +170739471447,246,0 +170739471495,246,0 +170739471543,246,0 +170739471591,246,0 +170739471639,246,0 +170739471687,246,0 +170739471735,246,0 +170739471784,246,0 +170739471832,246,0 +170739471880,246,0 +170739471928,246,0 +170739471978,246,0 +170739472027,246,0 +170739472077,246,0 +170739472126,246,0 +170739472174,246,0 +170739472224,246,0 +170739472273,246,0 +170739472321,246,0 +170739472369,246,0 +170739472419,246,0 +170739472467,246,0 +170739472515,246,0 +170739472564,246,0 +170739472614,246,0 +170739472663,246,0 +170739472711,246,0 +170739472759,246,0 +170739472807,246,0 +170739472855,246,0 +170739472903,246,0 +170739472953,246,0 +170739473001,246,0 +170739473049,246,0 +170739473097,246,0 +170739473144,246,0 +170739473192,246,0 +170739473242,246,0 +170739473290,246,0 +170739473338,246,0 +170739473386,246,0 +170739473434,246,0 +170739473482,246,0 +170739473531,246,0 +170739473579,246,0 +170739473629,246,0 +170739473677,246,0 +170739473725,246,0 +170739473773,246,0 +170739473821,246,0 +170739473869,246,0 +170739473917,246,0 +170739473966,246,0 +170739474016,246,0 +170739474065,246,0 +170739474113,246,0 +170739474161,246,0 +170739474211,246,0 +170739474259,246,0 +170739474306,246,0 +170739474354,246,0 +170739474402,246,0 +170739474450,246,0 +170739474498,246,0 +170739474548,246,0 +170739474596,246,0 +170739474645,246,0 +170739474695,246,0 +170739474743,246,0 +170739474792,246,0 +170739474842,246,0 +170739474890,246,0 +170739474938,246,0 +170739474987,246,0 +170739475035,246,0 +170739475085,246,0 +170739475133,246,0 +170739475181,246,0 +170739475229,246,0 +170739475277,246,0 +170739475325,246,0 +170739475373,246,0 +170739475421,246,0 +170739475470,246,0 +170739475520,246,0 +170739475568,246,0 +170739475616,246,0 +170739475665,246,0 +170739475713,246,0 +170739475763,246,0 +170739475811,246,0 +170739475859,246,0 +170739475907,246,0 +170739475956,246,0 +170739476006,246,0 +170739476055,246,0 +170739476103,246,0 +170739476153,246,0 +170739476201,246,0 +170739476250,246,0 +170739476298,246,0 +170739476346,246,0 +170739476394,246,0 +170739476442,246,0 +170739476492,246,0 +170739476540,246,0 +170739476587,246,0 +170739476635,246,0 +170739476683,246,0 +170739476731,246,0 +170739476779,246,0 +170739476827,246,0 +170739476877,246,0 +170739476925,246,0 +170739476973,246,0 +170739477021,246,0 +170739477069,246,0 +170739477117,246,0 +170739477165,246,0 +170739477212,246,0 +170739477260,246,0 +170739477308,246,0 +170739477356,246,0 +170739477406,246,0 +170739477455,246,0 +170739477503,246,0 +170739477551,246,0 +170739477599,246,0 +170739477647,246,0 +170739477695,246,0 +170739477743,246,0 +170739477791,246,0 +170739477839,246,0 +170739477887,246,0 +170739477935,246,0 +170739477983,246,0 +170739478031,246,0 +170739478081,246,0 +170739478128,246,0 +170739478176,246,0 +170739478224,246,0 +170739478272,246,0 +170739478322,246,0 +170739478371,246,0 +170739478419,246,0 +170739478467,246,0 +170739478517,246,0 +170739478566,246,0 +170739478614,246,0 +170739478664,246,0 +170739478712,246,0 +170739478760,246,0 +170739478808,246,0 +170739478856,246,0 +170739478904,246,0 +170739478953,246,0 +170739479001,246,0 +170739479051,246,0 +170739479100,246,0 +170739479150,246,0 +170739479199,246,0 +170739479247,246,0 +170739479295,246,0 +170739479343,246,0 +170739479391,246,0 +170739479439,246,0 +170739479487,246,0 +170739479536,246,0 +170739479586,246,0 +170739479634,246,0 +170739479682,246,0 +170739479730,246,0 +170739479778,246,0 +170739479826,246,0 +170739479874,246,0 +170739479922,246,0 +170739479970,246,0 +170739480017,246,0 +170739480065,246,0 +170739480113,246,0 +170739480161,246,0 +170739480209,246,0 +170739480257,246,0 +170739480305,246,0 +170739480353,246,0 +170739480401,246,0 +170739480450,246,0 +170739480498,246,0 +170739480546,246,0 +170739480594,246,0 +170739480642,246,0 +170739480692,246,0 +170739480740,246,0 +170739480788,246,0 +170739480835,246,0 +170739480885,246,0 +170739480934,246,0 +170739480982,246,0 +170739481032,246,0 +170739481081,246,0 +170739481131,246,0 +170739481179,246,0 +170739481229,246,0 +170739481276,246,0 +170739481326,246,0 +170739481374,246,0 +170739481422,246,0 +170739481470,246,0 +170739481518,246,0 +170739481566,246,0 +170739481614,246,0 +170739481662,246,0 +170739481710,246,0 +170739481759,246,0 +170739481807,246,0 +170739481857,246,0 +170739481905,246,0 +170739481954,246,0 +170739482002,246,0 +170739482050,246,0 +170739482100,246,0 +170739482148,246,0 +170739482195,246,0 +170739482243,246,0 +170739482291,246,0 +170739482341,246,0 +170739482389,246,0 +170739482437,246,0 +170739482485,246,0 +170739482533,246,0 +170739482580,246,0 +170739482628,246,0 +170739482676,246,0 +170739482724,246,0 +170739482772,246,0 +170739482820,246,0 +170739482869,246,0 +170739482917,246,0 +170739482965,246,0 +170739483014,246,0 +170739483062,246,0 +170739483110,246,0 +170739483158,246,0 +170739483206,246,0 +170739483254,246,0 +170739483302,246,0 +170739483350,246,0 +170739483398,246,0 +170739483445,246,0 +170739483495,246,0 +170739483545,246,0 +170739483594,246,0 +170739483642,246,0 +170739483690,246,0 +170739483738,246,0 +170739483786,246,0 +170739483834,246,0 +170739483882,246,0 +170739483930,246,0 +170739483978,246,0 +170739484026,246,0 +170739484074,246,0 +170739484122,246,0 +170739484170,246,0 +170739484219,246,0 +170739484269,246,0 +170739484317,246,0 +170739484365,246,0 +170739484413,246,0 +170739484461,246,0 +170739484509,246,0 +170739484557,246,0 +170739484606,246,0 +170739484654,246,0 +170739484702,246,0 +170739484752,246,0 +170739484800,246,0 +170739484849,245,0 +170739484897,246,0 +170739484945,245,0 +170739484995,246,0 +170739485043,245,0 +170739485092,245,0 +170739485140,245,0 +170739485190,246,0 +170739485239,245,0 +170739485288,246,0 +170739485338,246,0 +170739485386,245,0 +170739485436,245,0 +170739485484,245,0 +170739485531,245,0 +170739485579,245,0 +170739485627,245,0 +170739485675,245,0 +170739485723,246,0 +170739485771,245,0 +170739485821,246,0 +170739485870,246,0 +170739485918,245,0 +170739485966,245,0 +170739486014,245,0 +170739486064,245,0 +170739486112,246,0 +170739486161,245,0 +170739486209,246,0 +170739486257,245,0 +170739486305,245,0 +170739486353,245,0 +170739486401,245,0 +170739486449,245,0 +170739486499,246,0 +170739486547,246,0 +170739486596,246,0 +170739486644,246,0 +170739486694,246,0 +170739486741,245,0 +170739486789,245,0 +170739486837,245,0 +170739486885,245,0 +170739486933,245,0 +170739486983,246,0 +170739487031,246,0 +170739487079,246,0 +170739487128,246,0 +170739487176,246,0 +170739487224,246,0 +170739487274,246,0 +170739487323,246,0 +170739487373,246,0 +170739487422,246,0 +170739487471,246,0 +170739487520,246,0 +170739487568,246,0 +170739487618,245,0 +170739487667,245,0 +170739487717,245,0 +170739487766,245,0 +170739487816,246,0 +170739487864,246,0 +170739487913,246,0 +170739487961,245,0 +170739488009,246,0 +170739488057,246,0 +170739488107,245,0 +170739488156,246,0 +170739488204,246,0 +170739488252,246,0 +170739488302,246,0 +170739488350,246,0 +170739488398,246,0 +170739488446,246,0 +170739488494,246,0 +170739488542,246,0 +170739488590,246,0 +170739488639,246,0 +170739488687,246,0 +170739488735,246,0 +170739488783,246,0 +170739488831,246,0 +170739488879,246,0 +170739488927,246,0 +170739488976,246,0 +170739489026,246,0 +170739489074,246,0 +170739489123,245,0 +170739489171,246,0 +170739489219,246,0 +170739489267,246,0 +170739489315,246,0 +170739489365,246,0 +170739489414,246,0 +170739489464,246,0 +170739489513,245,0 +170739489563,246,0 +170739489612,246,0 +170739489660,246,0 +170739489710,246,0 +170739489759,246,0 +170739489807,246,0 +170739489857,246,0 +170739489905,246,0 +170739489953,246,0 +170739490001,246,0 +170739490049,246,0 +170739490097,246,0 +170739490145,245,0 +170739490193,246,0 +170739490241,246,0 +170739490289,246,0 +170739490337,246,0 +170739490384,246,0 +170739490432,246,0 +170739490480,246,0 +170739490530,245,0 +170739490578,246,0 +170739490626,246,0 +170739490675,246,0 +170739490723,246,0 +170739490772,246,0 +170739490821,246,0 +170739490871,246,0 +170739490919,246,0 +170739490968,246,0 +170739491016,245,0 +170739491064,246,0 +170739491112,246,0 +170739491160,246,0 +170739491209,246,0 +170739491259,246,0 +170739491307,246,0 +170739491355,246,0 +170739491403,246,0 +170739491451,246,0 +170739491498,246,0 +170739491548,245,0 +170739491596,246,0 +170739491644,246,0 +170739491692,246,0 +170739491740,246,0 +170739491788,245,0 +170739491836,245,0 +170739491884,245,0 +170739491933,246,0 +170739491983,246,0 +170739492031,245,0 +170739492079,246,0 +170739492127,246,0 +170739492175,246,0 +170739492224,246,0 +170739492272,246,0 +170739492321,246,0 +170739492371,246,0 +170739492421,246,0 +170739492469,246,0 +170739492518,246,0 +170739492566,246,0 +170739492614,246,0 +170739492662,246,0 +170739492710,246,0 +170739492758,246,0 +170739492805,245,0 +170739492855,245,0 +170739492903,246,0 +170739492951,246,0 +170739493000,246,0 +170739493048,246,0 +170739493098,246,0 +170739493146,246,0 +170739493194,246,0 +170739493242,246,0 +170739493290,249,0 +170739493338,248,0 +170739493386,248,0 +170739493434,248,0 +170739493483,248,0 +170739493533,248,0 +170739493581,248,0 +170739493630,248,0 +170739493678,248,0 +170739493727,248,0 +170739493775,248,0 +170739493823,248,0 +170739493871,249,0 +170739493919,249,0 +170739493967,249,0 +170739494015,248,0 +170739494064,249,0 +170739494112,249,0 +170739494162,248,0 +170739494211,249,0 +170739494260,248,0 +170739494308,249,0 +170739494356,249,0 +170739494404,249,0 +170739494452,248,0 +170739494500,248,0 +170739494548,248,0 +170739494596,248,0 +170739494644,248,0 +170739494694,247,0 +170739494743,247,0 +170739494793,247,0 +170739494842,248,0 +170739494890,247,0 +170739494940,247,0 +170739494987,247,0 +170739495035,248,0 +170739495083,247,0 +170739495131,247,0 +170739495179,248,0 +170739495229,248,0 +170739495278,247,0 +170739495326,247,0 +170739495374,247,0 +170739495422,248,0 +170739495470,248,0 +170739495517,247,0 +170739495565,248,0 +170739495613,247,0 +170739495663,247,0 +170739495712,248,0 +170739495762,248,0 +170739495811,248,0 +170739495859,248,0 +170739495909,248,0 +170739495958,248,0 +170739496006,248,0 +170739496054,248,0 +170739496104,248,0 +170739496152,248,0 +170739496200,248,0 +170739496249,248,0 +170739496297,248,0 +170739496345,248,0 +170739496393,248,0 +170739496442,248,0 +170739496490,248,0 +170739496538,248,0 +170739496586,248,0 +170739496634,248,0 +170739496682,248,0 +170739496730,248,0 +170739496778,248,0 +170739496825,248,0 +170739496873,248,0 +170739496921,248,0 +170739496969,248,0 +170739497017,248,0 +170739497065,248,0 +170739497113,248,0 +170739497162,248,0 +170739497210,248,0 +170739497258,248,0 +170739497306,248,0 +170739497354,248,0 +170739497401,248,0 +170739497449,248,0 +170739497499,248,0 +170739497547,248,0 +170739497595,248,0 +170739497643,248,0 +170739497691,248,0 +170739497740,248,0 +170739497788,248,0 +170739497838,248,0 +170739497886,248,0 +170739497933,248,0 +170739497983,248,0 +170739498032,248,0 +170739498080,247,0 +170739498128,247,0 +170739498176,247,0 +170739498224,247,0 +170739498272,247,0 +170739498322,247,0 +170739498370,247,0 +170739498419,246,0 +170739498469,247,0 +170739498517,246,0 +170739498566,247,0 +170739498614,247,0 +170739498664,246,0 +170739498712,246,0 +170739498761,247,0 +170739498811,246,0 +170739498860,246,0 +170739498908,247,0 +170739498956,246,0 +170739499004,246,0 +170739499054,246,0 +170739499102,246,0 +170739499149,246,0 +170739499197,246,0 +170739499245,246,0 +170739499295,246,0 +170739499343,246,0 +170739499391,246,0 +170739499439,246,0 +170739499487,246,0 +170739499535,246,0 +170739499583,246,0 +170739499632,246,0 +170739499680,246,0 +170739499728,246,0 +170739499776,246,0 +170739499824,246,0 +170739499872,246,0 +170739499920,246,0 +170739499969,246,0 +170739500019,246,0 +170739500067,246,0 +170739500115,246,0 +170739500163,246,0 +170739500212,246,0 +170739500262,246,0 +170739500310,246,0 +170739500359,246,0 +170739500409,246,0 +170739500457,246,0 +170739500505,246,0 +170739500553,246,0 +170739500602,246,0 +170739500650,246,0 +170739500698,247,0 +170739500748,246,0 +170739500797,246,0 +170739500845,246,0 +170739500893,246,0 +170739500941,246,0 +170739500989,246,0 +170739501037,246,0 +170739501085,246,0 +170739501133,246,0 +170739501181,246,0 +170739501229,246,0 +170739501277,246,0 +170739501326,246,0 +170739501374,246,0 +170739501422,246,0 +170739501470,246,0 +170739501518,246,0 +170739501566,246,0 +170739501614,246,0 +170739501662,246,0 +170739501712,246,0 +170739501760,246,0 +170739501808,246,0 +170739501856,246,0 +170739501904,246,0 +170739501953,246,0 +170739502003,246,0 +170739502051,246,0 +170739502099,246,0 +170739502147,246,0 +170739502195,246,0 +170739502244,245,0 +170739502293,246,0 +170739502343,246,0 +170739502393,246,0 +170739502440,246,0 +170739502488,246,0 +170739502536,247,0 +170739502584,247,0 +170739502632,247,0 +170739502680,245,0 +170739502728,245,0 +170739502778,245,0 +170739502827,246,0 +170739502875,246,0 +170739502925,246,0 +170739502974,246,0 +170739503022,245,0 +170739503070,246,0 +170739503118,245,0 +170739503166,246,0 +170739503214,246,0 +170739503262,246,0 +170739503310,246,0 +170739503358,247,0 +170739503407,247,0 +170739503455,247,0 +170739503503,247,0 +170739503551,247,0 +170739503601,247,0 +170739503649,246,0 +170739503697,247,0 +170739503745,247,0 +170739503793,247,0 +170739503842,247,0 +170739503890,246,0 +170739503938,246,0 +170739503986,246,0 +170739504034,245,0 +170739504084,245,0 +170739504133,245,0 +170739504181,245,0 +170739504231,245,0 +170739504279,245,0 +170739504327,245,0 +170739504375,246,0 +170739504422,245,0 +170739504470,245,0 +170739504518,246,0 +170739504566,245,0 +170739504614,245,0 +170739504664,245,0 +170739504713,245,0 +170739504761,245,0 +170739504811,245,0 +170739504859,245,0 +170739504907,245,0 +170739504955,245,0 +170739505003,246,0 +170739505052,246,0 +170739505102,246,0 +170739505150,246,0 +170739505199,246,0 +170739505247,248,0 +170739505295,249,0 +170739505343,247,0 +170739505392,246,0 +170739505440,246,0 +170739505490,246,0 +170739505538,246,0 +170739505586,244,0 +170739505634,244,0 +170739505683,244,0 +170739505731,244,0 +170739505779,245,0 +170739505827,244,0 +170739505877,243,0 +170739505925,244,0 +170739505973,243,0 +170739506021,244,0 +170739506069,243,0 +170739506117,244,0 +170739506166,244,0 +170739506214,244,0 +170739506262,244,0 +170739506310,243,0 +170739506358,243,0 +170739506407,243,0 +170739506457,244,0 +170739506507,243,0 +170739506555,243,0 +170739506603,243,0 +170739506651,243,0 +170739506699,243,0 +170739506746,243,0 +170739506794,243,0 +170739506842,243,0 +170739506890,245,0 +170739506938,245,0 +170739506986,244,0 +170739507034,244,0 +170739507082,244,0 +170739507132,244,0 +170739507180,244,0 +170739507228,244,0 +170739507276,244,0 +170739507325,244,0 +170739507375,244,0 +170739507423,244,0 +170739507471,244,0 +170739507518,244,0 +170739507566,244,0 +170739507616,244,0 +170739507664,244,0 +170739507712,244,0 +170739507760,244,0 +170739507809,244,0 +170739507859,243,0 +170739507908,243,0 +170739507958,243,0 +170739508006,243,0 +170739508055,244,0 +170739508103,244,0 +170739508151,244,0 +170739508199,244,0 +170739508249,244,0 +170739508298,244,0 +170739508346,244,0 +170739508394,244,0 +170739508442,244,0 +170739508490,244,0 +170739508540,244,0 +170739508588,243,0 +170739508636,243,0 +170739508685,243,0 +170739508733,243,0 +170739508781,242,0 +170739508829,242,0 +170739508877,243,0 +170739508925,244,0 +170739508973,244,0 +170739509022,244,0 +170739509070,243,0 +170739509118,244,0 +170739509166,244,0 +170739509214,244,0 +170739509264,244,0 +170739509312,244,0 +170739509361,244,0 +170739509411,244,0 +170739509459,244,0 +170739509507,244,0 +170739509556,245,0 +170739509606,245,0 +170739509654,245,0 +170739509702,245,0 +170739509750,245,0 +170739509799,245,0 +170739509847,244,0 +170739509897,245,0 +170739509945,245,0 +170739509993,244,0 +170739510041,244,0 +170739510089,244,0 +170739510137,244,0 +170739510185,244,0 +170739510233,244,0 +170739510281,245,0 +170739510329,246,0 +170739510378,245,0 +170739510428,245,0 +170739510477,244,0 +170739510525,244,0 +170739510573,244,0 +170739510621,244,0 +170739510669,245,0 +170739510719,244,0 +170739510767,244,0 +170739510815,244,0 +170739510864,244,0 +170739510914,245,0 +170739510961,245,0 +170739511009,245,0 +170739511057,245,0 +170739511105,244,0 +170739511155,244,0 +170739511204,244,0 +170739511252,244,0 +170739511300,244,0 +170739511350,245,0 +170739511398,244,0 +170739511446,244,0 +170739511495,244,0 +170739511543,245,0 +170739511593,244,0 +170739511641,245,0 +170739511689,245,0 +170739511738,245,0 +170739511786,245,0 +170739511834,245,0 +170739511882,244,0 +170739511930,244,0 +170739511978,244,0 +170739512028,244,0 +170739512076,243,0 +170739512123,244,0 +170739512173,244,0 +170739512223,243,0 +170739512270,243,0 +170739512320,244,0 +170739512368,244,0 +170739512416,244,0 +170739512464,244,0 +170739512512,245,0 +170739512561,245,0 +170739512609,245,0 +170739512657,245,0 +170739512707,245,0 +170739512755,244,0 +170739512804,245,0 +170739512854,245,0 +170739512902,245,0 +170739512950,245,0 +170739512999,245,0 +170739513049,244,0 +170739513098,244,0 +170739513148,244,0 +170739513196,244,0 +170739513245,244,0 +170739513293,244,0 +170739513341,244,0 +170739513391,244,0 +170739513440,244,0 +170739513488,244,0 +170739513538,244,0 +170739513586,244,0 +170739513635,245,0 +170739513683,244,0 +170739513731,245,0 +170739513779,245,0 +170739513829,245,0 +170739513878,245,0 +170739513926,244,0 +170739513974,245,0 +170739514022,245,0 +170739514070,244,0 +170739514118,245,0 +170739514167,245,0 +170739514215,245,0 +170739514263,245,0 +170739514313,245,0 +170739514361,245,0 +170739514409,245,0 +170739514458,246,0 +170739514506,245,0 +170739514556,245,0 +170739514604,245,0 +170739514653,245,0 +170739514701,245,0 +170739514751,245,0 +170739514799,245,0 +170739514847,245,0 +170739514896,245,0 +170739514944,245,0 +170739514992,245,0 +170739515040,244,0 +170739515088,245,0 +170739515136,245,0 +170739515185,244,0 +170739515235,244,0 +170739515284,245,0 +170739515334,245,0 +170739515382,245,0 +170739515431,244,0 +170739515481,245,0 +170739515529,244,0 +170739515577,245,0 +170739515626,245,0 +170739515674,245,0 +170739515722,244,0 +170739515770,245,0 +170739515818,244,0 +170739515866,245,0 +170739515914,245,0 +170739515962,245,0 +170739516010,245,0 +170739516058,245,0 +170739516106,245,0 +170739516155,245,0 +170739516205,245,0 +170739516252,245,0 +170739516300,245,0 +170739516348,245,0 +170739516396,245,0 +170739516444,245,0 +170739516494,245,0 +170739516542,245,0 +170739516590,245,0 +170739516637,245,0 +170739516685,246,0 +170739516733,245,0 +170739516781,246,0 +170739516829,245,0 +170739516878,246,0 +170739516926,246,0 +170739516974,245,0 +170739517022,246,0 +170739517070,245,0 +170739517118,246,0 +170739517166,245,0 +170739517214,245,0 +170739517261,245,0 +170739517309,246,0 +170739517357,246,0 +170739517405,246,0 +170739517455,245,0 +170739517503,245,0 +170739517552,245,0 +170739517600,245,0 +170739517650,246,0 +170739517698,245,0 +170739517747,245,0 +170739517795,246,0 +170739517843,246,0 +170739517891,246,0 +170739517941,247,0 +170739517989,246,0 +170739518037,246,0 +170739518085,247,0 +170739518134,246,0 +170739518182,246,0 +170739518230,246,0 +170739518278,246,0 +170739518326,246,0 +170739518374,246,0 +170739518422,246,0 +170739518470,246,0 +170739518518,246,0 +170739518566,246,0 +170739518614,246,0 +170739518661,246,0 +170739518711,246,0 +170739518759,246,0 +170739518808,245,0 +170739518856,246,0 +170739518904,246,0 +170739518954,246,0 +170739519002,246,0 +170739519051,246,0 +170739519101,246,0 +170739519150,246,0 +170739519198,247,0 +170739519246,246,0 +170739519294,247,0 +170739519342,246,0 +170739519390,246,0 +170739519438,246,0 +170739519486,246,0 +170739519534,246,0 +170739519583,246,0 +170739519631,246,0 +170739519681,246,0 +170739519729,246,0 +170739519778,246,0 +170739519826,246,0 +170739519874,246,0 +170739519922,247,0 +170739519970,246,0 +170739520018,247,0 +170739520066,246,0 +170739520114,247,0 +170739520163,247,0 +170739520213,247,0 +170739520261,247,0 +170739520309,247,0 +170739520357,247,0 +170739520405,247,0 +170739520453,247,0 +170739520501,247,0 +170739520549,247,0 +170739520597,247,0 +170739520645,247,0 +170739520694,247,0 +170739520742,247,0 +170739520790,247,0 +170739520840,247,0 +170739520889,247,0 +170739520937,246,0 +170739520985,246,0 +170739521033,246,0 +170739521082,246,0 +170739521132,246,0 +170739521182,246,0 +170739521229,246,0 +170739521277,246,0 +170739521325,246,0 +170739521373,246,0 +170739521421,246,0 +170739521469,246,0 +170739521517,246,0 +170739521565,246,0 +170739521613,246,0 +170739521662,246,0 +170739521712,246,0 +170739521761,246,0 +170739521809,246,0 +170739521857,246,0 +170739521905,246,0 +170739521955,246,0 +170739522003,246,0 +170739522051,246,0 +170739522100,246,0 +170739522148,246,0 +170739522198,246,0 +170739522246,246,0 +170739522294,246,0 +170739522342,246,0 +170739522390,246,0 +170739522439,246,0 +170739522487,246,0 +170739522535,246,0 +170739522583,246,0 +170739522631,246,0 +170739522680,246,0 +170739522728,246,0 +170739522778,246,0 +170739522826,246,0 +170739522875,246,0 +170739522925,246,0 +170739522974,246,0 +170739523022,246,0 +170739523070,246,0 +170739523120,246,0 +170739523169,246,0 +170739523217,246,0 +170739523265,246,0 +170739523313,246,0 +170739523361,246,0 +170739523409,246,0 +170739523457,246,0 +170739523505,246,0 +170739523553,246,0 +170739523603,246,0 +170739523652,246,0 +170739523700,246,0 +170739523748,246,0 +170739523796,246,0 +170739523844,246,0 +170739523892,246,0 +170739523940,246,0 +170739523988,245,0 +170739524037,246,0 +170739524085,246,0 +170739524133,246,0 +170739524181,245,0 +170739524229,245,0 +170739524277,246,0 +170739524327,246,0 +170739524375,246,0 +170739524422,246,0 +170739524470,245,0 +170739524520,246,0 +170739524569,246,0 +170739524619,246,0 +170739524667,246,0 +170739524716,246,0 +170739524764,246,0 +170739524814,245,0 +170739524862,246,0 +170739524910,246,0 +170739524958,246,0 +170739525007,246,0 +170739525057,246,0 +170739525105,246,0 +170739525154,246,0 +170739525204,246,0 +170739525252,245,0 +170739525301,246,0 +170739525349,246,0 +170739525399,246,0 +170739525448,246,0 +170739525498,246,0 +170739525546,246,0 +170739525595,246,0 +170739525643,246,0 +170739525693,246,0 +170739525741,246,0 +170739525789,246,0 +170739525837,246,0 +170739525886,246,0 +170739525934,246,0 +170739525982,246,0 +170739526030,246,0 +170739526078,246,0 +170739526126,246,0 +170739526174,246,0 +170739526223,244,0 +170739526271,244,0 +170739526321,244,0 +170739526370,244,0 +170739526420,244,0 +170739526468,244,0 +170739526516,244,0 +170739526565,244,0 +170739526613,245,0 +170739526661,245,0 +170739526709,244,0 +170739526757,244,0 +170739526805,245,0 +170739526853,244,0 +170739526902,245,0 +170739526950,245,0 +170739526998,244,0 +170739527048,244,0 +170739527096,245,0 +170739527144,244,0 +170739527193,245,0 +170739527241,244,0 +170739527291,245,0 +170739527339,244,0 +170739527387,244,0 +170739527435,245,0 +170739527483,244,0 +170739527531,245,0 +170739527579,245,0 +170739527628,244,0 +170739527676,244,0 +170739527724,244,0 +170739527772,244,0 +170739527822,244,0 +170739527871,245,0 +170739527919,244,0 +170739527967,244,0 +170739528017,245,0 +170739528065,244,0 +170739528113,244,0 +170739528161,244,0 +170739528209,245,0 +170739528257,244,0 +170739528304,245,0 +170739528352,244,0 +170739528402,244,0 +170739528451,244,0 +170739528501,245,0 +170739528549,244,0 +170739528597,244,0 +170739528645,244,0 +170739528694,245,0 +170739528744,245,0 +170739528792,245,0 +170739528840,244,0 +170739528889,244,0 +170739528939,245,0 +170739528987,244,0 +170739529035,244,0 +170739529083,244,0 +170739529131,244,0 +170739529179,244,0 +170739529228,245,0 +170739529278,245,0 +170739529326,244,0 +170739529373,244,0 +170739529423,245,0 +170739529471,244,0 +170739529519,245,0 +170739529566,244,0 +170739529614,245,0 +170739529662,245,0 +170739529712,245,0 +170739529760,244,0 +170739529808,245,0 +170739529856,245,0 +170739529905,244,0 +170739529955,245,0 +170739530004,244,0 +170739530052,244,0 +170739530102,245,0 +170739530150,244,0 +170739530199,244,0 +170739530249,244,0 +170739530298,245,0 +170739530346,245,0 +170739530394,244,0 +170739530444,244,0 +170739530493,244,0 +170739530541,245,0 +170739530589,245,0 +170739530637,245,0 +170739530685,245,0 +170739530733,245,0 +170739530781,245,0 +170739530829,245,0 +170739530877,245,0 +170739530925,245,0 +170739530974,246,0 +170739531022,245,0 +170739531070,246,0 +170739531118,245,0 +170739531168,246,0 +170739531216,246,0 +170739531265,246,0 +170739531313,246,0 +170739531363,246,0 +170739531411,245,0 +170739531459,246,0 +170739531508,246,0 +170739531556,246,0 +170739531604,246,0 +170739531652,246,0 +170739531700,246,0 +170739531750,246,0 +170739531798,245,0 +170739531846,246,0 +170739531893,246,0 +170739531941,245,0 +170739531989,245,0 +170739532039,245,0 +170739532088,245,0 +170739532136,245,0 +170739532184,245,0 +170739532232,245,0 +170739532282,245,0 +170739532330,244,0 +170739532377,244,0 +170739532425,244,0 +170739532473,245,0 +170739532523,245,0 +170739532573,245,0 +170739532622,245,0 +170739532672,245,0 +170739532721,245,0 +170739532771,245,0 +170739532819,246,0 +170739532867,245,0 +170739532914,245,0 +170739532962,246,0 +170739533010,245,0 +170739533058,246,0 +170739533106,245,0 +170739533154,246,0 +170739533202,246,0 +170739533250,245,0 +170739533297,245,0 +170739533345,245,0 +170739533393,245,0 +170739533443,246,0 +170739533491,245,0 +170739533538,246,0 +170739533586,246,0 +170739533634,246,0 +170739533682,246,0 +170739533730,246,0 +170739533778,246,0 +170739533826,246,0 +170739533874,246,0 +170739533921,246,0 +170739533969,247,0 +170739534019,246,0 +170739534067,246,0 +170739534115,247,0 +170739534163,248,0 +170739534211,247,0 +170739534259,248,0 +170739534307,248,0 +170739534356,247,0 +170739534404,247,0 +170739534452,247,0 +170739534500,247,0 +170739534548,246,0 +170739534595,247,0 +170739534643,247,0 +170739534691,247,0 +170739534739,246,0 +170739534789,245,0 +170739534838,245,0 +170739534888,245,0 +170739534936,245,0 +170739534984,245,0 +170739535032,245,0 +170739535080,245,0 +170739535128,244,0 +170739535177,245,0 +170739535225,244,0 +170739535273,244,0 +170739535323,244,0 +170739535371,244,0 +170739535419,244,0 +170739535468,244,0 +170739535516,244,0 +170739535564,244,0 +170739535612,244,0 +170739535660,243,0 +170739535710,243,0 +170739535759,244,0 +170739535809,244,0 +170739535857,244,0 +170739535906,244,0 +170739535954,243,0 +170739536002,247,0 +170739536051,247,0 +170739536099,247,0 +170739536147,248,0 +170739536197,248,0 +170739536245,248,0 +170739536294,248,0 +170739536342,248,0 +170739536392,248,0 +170739536440,249,0 +170739536488,249,0 +170739536536,249,0 +170739536584,249,0 +170739536632,248,0 +170739536680,248,0 +170739536729,248,0 +170739536777,248,0 +170739536827,248,0 +170739536875,248,0 +170739536924,248,0 +170739536974,248,0 +170739537023,248,0 +170739537071,248,0 +170739537119,248,0 +170739537169,248,0 +170739537217,248,0 +170739537265,248,0 +170739537312,248,0 +170739537360,249,0 +170739537410,249,0 +170739537458,248,0 +170739537506,248,0 +170739537554,248,0 +170739537602,248,0 +170739537650,248,0 +170739537698,248,0 +170739537746,248,0 +170739537794,246,0 +170739537844,246,0 +170739537893,246,0 +170739537941,246,0 +170739537991,246,0 +170739538039,246,0 +170739538088,246,0 +170739538136,247,0 +170739538186,246,0 +170739538235,245,0 +170739538283,246,0 +170739538331,246,0 +170739538379,246,0 +170739538427,245,0 +170739538475,245,0 +170739538524,245,0 +170739538574,245,0 +170739538623,245,0 +170739538673,245,0 +170739538721,245,0 +170739538769,245,0 +170739538818,245,0 +170739538868,245,0 +170739538916,245,0 +170739538964,245,0 +170739539012,245,0 +170739539060,245,0 +170739539109,245,0 +170739539157,245,0 +170739539207,245,0 +170739539255,245,0 +170739539303,245,0 +170739539351,245,0 +170739539399,245,0 +170739539447,245,0 +170739539496,245,0 +170739539544,245,0 +170739539592,245,0 +170739539642,245,0 +170739539691,245,0 +170739539741,245,0 +170739539790,245,0 +170739539840,245,0 +170739539889,245,0 +170739539937,245,0 +170739539985,245,0 +170739540034,245,0 +170739540082,245,0 +170739540130,245,0 +170739540178,245,0 +170739540226,245,0 +170739540274,245,0 +170739540322,245,0 +170739540370,245,0 +170739540418,246,0 +170739540466,245,0 +170739540515,245,0 +170739540563,245,0 +170739540611,245,0 +170739540659,245,0 +170739540709,245,0 +170739540757,245,0 +170739540805,245,0 +170739540853,245,0 +170739540901,245,0 +170739540950,245,0 +170739541000,245,0 +170739541048,245,0 +170739541096,245,0 +170739541144,245,0 +170739541193,245,0 +170739541243,245,0 +170739541292,245,0 +170739541340,245,0 +170739541388,245,0 +170739541436,245,0 +170739541484,245,0 +170739541533,245,0 +170739541581,245,0 +170739541631,245,0 +170739541679,245,0 +170739541727,245,0 +170739541775,245,0 +170739541823,246,0 +170739541871,246,0 +170739541919,246,0 +170739541967,245,0 +170739542016,246,0 +170739542066,246,0 +170739542114,246,0 +170739542163,246,0 +170739542211,245,0 +170739542259,245,0 +170739542307,245,0 +170739542355,246,0 +170739542403,246,0 +170739542451,246,0 +170739542499,246,0 +170739542547,246,0 +170739542595,245,0 +170739542643,245,0 +170739542691,246,0 +170739542740,246,0 +170739542788,246,0 +170739542836,246,0 +170739542886,245,0 +170739542934,245,0 +170739542982,246,0 +170739543030,245,0 +170739543078,245,0 +170739543125,245,0 +170739543173,246,0 +170739543221,246,0 +170739543271,246,0 +170739543319,246,0 +170739543367,246,0 +170739543415,246,0 +170739543463,246,0 +170739543511,246,0 +170739543559,245,0 +170739543607,246,0 +170739543655,246,0 +170739543703,246,0 +170739543752,246,0 +170739543802,246,0 +170739543851,246,0 +170739543901,246,0 +170739543950,245,0 +170739544000,246,0 +170739544048,246,0 +170739544096,246,0 +170739544144,246,0 +170739544192,245,0 +170739544240,245,0 +170739544288,246,0 +170739544337,246,0 +170739544385,246,0 +170739544434,246,0 +170739544484,246,0 +170739544532,246,0 +170739544580,246,0 +170739544629,246,0 +170739544677,246,0 +170739544725,245,0 +170739544773,245,0 +170739544823,245,0 +170739544872,246,0 +170739544920,246,0 +170739544968,245,0 +170739545016,245,0 +170739545064,245,0 +170739545112,245,0 +170739545162,245,0 +170739545211,245,0 +170739545261,245,0 +170739545309,245,0 +170739545358,245,0 +170739545408,246,0 +170739545457,245,0 +170739545505,245,0 +170739545553,245,0 +170739545601,245,0 +170739545651,245,0 +170739545700,246,0 +170739545748,245,0 +170739545796,245,0 +170739545846,245,0 +170739545895,245,0 +170739545943,245,0 +170739545991,245,0 +170739546039,245,0 +170739546087,245,0 +170739546135,245,0 +170739546185,245,0 +170739546233,245,0 +170739546280,245,0 +170739546330,245,0 +170739546380,246,0 +170739546429,245,0 +170739546477,245,0 +170739546525,245,0 +170739546573,245,0 +170739546622,245,0 +170739546672,245,0 +170739546722,245,0 +170739546770,245,0 +170739546817,245,0 +170739546865,245,0 +170739546913,246,0 +170739546963,245,0 +170739547012,246,0 +170739547060,245,0 +170739547108,246,0 +170739547156,245,0 +170739547206,245,0 +170739547254,245,0 +170739547302,245,0 +170739547351,245,0 +170739547399,245,0 +170739547447,246,0 +170739547495,245,0 +170739547543,245,0 +170739547593,245,0 +170739547640,245,0 +170739547688,246,0 +170739547736,246,0 +170739547784,245,0 +170739547832,245,0 +170739547882,245,0 +170739547930,246,0 +170739547978,245,0 +170739548027,246,0 +170739548077,245,0 +170739548126,246,0 +170739548174,246,0 +170739548224,245,0 +170739548272,246,0 +170739548320,246,0 +170739548369,246,0 +170739548419,246,0 +170739548467,245,0 +170739548516,246,0 +170739548564,245,0 +170739548612,246,0 +170739548660,246,0 +170739548708,245,0 +170739548757,246,0 +170739548807,245,0 +170739548856,245,0 +170739548904,245,0 +170739548954,245,0 +170739549002,246,0 +170739549051,245,0 +170739549099,246,0 +170739549147,246,0 +170739549195,245,0 +170739549244,245,0 +170739549292,246,0 +170739549340,246,0 +170739549388,245,0 +170739549435,246,0 +170739549483,246,0 +170739549531,245,0 +170739549581,245,0 +170739549629,245,0 +170739549677,246,0 +170739549726,246,0 +170739549776,246,0 +170739549824,246,0 +170739549872,245,0 +170739549920,246,0 +170739549969,246,0 +170739550017,245,0 +170739550065,246,0 +170739550114,246,0 +170739550164,245,0 +170739550214,245,0 +170739550263,246,0 +170739550311,245,0 +170739550359,245,0 +170739550407,245,0 +170739550455,246,0 +170739550504,245,0 +170739550554,246,0 +170739550602,245,0 +170739550650,246,0 +170739550699,246,0 +170739550749,246,0 +170739550798,245,0 +170739550846,245,0 +170739550896,246,0 +170739550944,246,0 +170739550993,246,0 +170739551041,246,0 +170739551091,245,0 +170739551140,246,0 +170739551188,246,0 +170739551238,245,0 +170739551286,246,0 +170739551334,246,0 +170739551382,246,0 +170739551430,246,0 +170739551478,245,0 +170739551526,245,0 +170739551574,246,0 +170739551622,246,0 +170739551671,246,0 +170739551721,246,0 +170739551769,246,0 +170739551817,246,0 +170739551865,245,0 +170739551914,246,0 +170739551962,246,0 +170739552010,245,0 +170739552060,246,0 +170739552108,246,0 +170739552156,246,0 +170739552205,246,0 +170739552255,245,0 +170739552304,245,0 +170739552354,246,0 +170739552403,246,0 +170739552451,245,0 +170739552499,245,0 +170739552547,246,0 +170739552597,246,0 +170739552645,245,0 +170739552693,246,0 +170739552741,246,0 +170739552789,245,0 +170739552837,246,0 +170739552885,245,0 +170739552933,245,0 +170739552980,245,0 +170739553028,245,0 +170739553076,246,0 +170739553124,246,0 +170739553172,246,0 +170739553220,245,0 +170739553268,245,0 +170739553316,246,0 +170739553364,246,0 +170739553411,246,0 +170739553459,246,0 +170739553507,246,0 +170739553557,246,0 +170739553605,246,0 +170739553652,245,0 +170739553702,246,0 +170739553750,246,0 +170739553798,246,0 +170739553846,245,0 +170739553894,245,0 +170739553941,245,0 +170739553989,246,0 +170739554037,245,0 +170739554085,245,0 +170739554133,245,0 +170739554182,245,0 +170739554230,245,0 +170739554278,246,0 +170739554328,245,0 +170739554376,245,0 +170739554425,246,0 +170739554473,246,0 +170739554521,246,0 +170739554569,245,0 +170739554617,246,0 +170739554667,246,0 +170739554716,245,0 +170739554764,245,0 +170739554812,246,0 +170739554862,246,0 +170739554910,245,0 +170739554958,245,0 +170739555007,245,0 +170739555057,246,0 +170739555106,246,0 +170739555154,246,0 +170739555204,246,0 +170739555253,245,0 +170739555301,246,0 +170739555351,246,0 +170739555400,246,0 +170739555448,245,0 +170739555496,246,0 +170739555544,245,0 +170739555592,246,0 +170739555641,245,0 +170739555689,245,0 +170739555737,245,0 +170739555785,245,0 +170739555833,245,0 +170739555881,245,0 +170739555931,246,0 +170739555980,246,0 +170739556030,246,0 +170739556078,246,0 +170739556127,245,0 +170739556177,246,0 +170739556226,246,0 +170739556274,246,0 +170739556322,246,0 +170739556370,245,0 +170739556418,246,0 +170739556468,246,0 +170739556517,245,0 +170739556565,245,0 +170739556613,246,0 +170739556661,246,0 +170739556709,246,0 +170739556757,245,0 +170739556806,245,0 +170739556856,245,0 +170739556904,246,0 +170739556954,246,0 +170739557002,246,0 +170739557050,246,0 +170739557098,245,0 +170739557146,245,0 +170739557194,245,0 +170739557242,246,0 +170739557290,245,0 +170739557338,245,0 +170739557386,246,0 +170739557433,245,0 +170739557481,246,0 +170739557529,246,0 +170739557577,246,0 +170739557627,245,0 +170739557675,246,0 +170739557723,246,0 +170739557771,245,0 +170739557820,245,0 +170739557868,246,0 +170739557918,246,0 +170739557967,246,0 +170739558017,245,0 +170739558065,245,0 +170739558113,246,0 +170739558162,245,0 +170739558212,246,0 +170739558260,246,0 +170739558308,245,0 +170739558357,246,0 +170739558405,246,0 +170739558455,245,0 +170739558503,246,0 +170739558551,246,0 +170739558599,246,0 +170739558647,246,0 +170739558695,246,0 +170739558744,246,0 +170739558794,246,0 +170739558842,245,0 +170739558890,246,0 +170739558938,246,0 +170739558986,246,0 +170739559033,245,0 +170739559083,246,0 +170739559131,245,0 +170739559179,245,0 +170739559227,245,0 +170739559277,246,0 +170739559325,246,0 +170739559373,246,0 +170739559420,246,0 +170739559468,246,0 +170739559516,246,0 +170739559564,246,0 +170739559612,246,0 +170739559660,245,0 +170739559710,246,0 +170739559758,246,0 +170739559806,246,0 +170739559853,245,0 +170739559901,245,0 +170739559949,245,0 +170739559999,246,0 +170739560047,245,0 +170739560095,245,0 +170739560144,246,0 +170739560194,246,0 +170739560242,245,0 +170739560290,246,0 +170739560339,246,0 +170739560387,245,0 +170739560435,246,0 +170739560483,246,0 +170739560531,245,0 +170739560581,245,0 +170739560629,245,0 +170739560677,246,0 +170739560726,246,0 +170739560774,245,0 +170739560823,245,0 +170739560873,246,0 +170739560923,245,0 +170739560971,245,0 +170739561018,246,0 +170739561066,245,0 +170739561116,246,0 +170739561165,246,0 +170739561213,246,0 +170739561261,245,0 +170739561309,245,0 +170739561359,246,0 +170739561408,246,0 +170739561456,246,0 +170739561504,245,0 +170739561552,246,0 +170739561600,245,0 +170739561648,245,0 +170739561696,245,0 +170739561744,245,0 +170739561794,246,0 +170739561842,246,0 +170739561889,245,0 +170739561937,245,0 +170739561987,245,0 +170739562035,245,0 +170739562084,246,0 +170739562132,246,0 +170739562180,245,0 +170739562230,245,0 +170739562278,246,0 +170739562327,245,0 +170739562375,245,0 +170739562423,246,0 +170739562471,246,0 +170739562519,246,0 +170739562569,245,0 +170739562617,246,0 +170739562665,246,0 +170739562713,245,0 +170739562761,245,0 +170739562810,246,0 +170739562858,245,0 +170739562906,245,0 +170739562954,246,0 +170739563003,245,0 +170739563051,245,0 +170739563101,245,0 +170739563149,246,0 +170739563197,246,0 +170739563247,246,0 +170739563294,246,0 +170739563344,246,0 +170739563393,246,0 +170739563442,246,0 +170739563489,246,0 +170739563537,246,0 +170739563585,246,0 +170739563633,245,0 +170739563683,246,0 +170739563732,246,0 +170739563782,246,0 +170739563830,246,0 +170739563879,245,0 +170739563929,246,0 +170739563978,246,0 +170739564028,246,0 +170739564076,245,0 +170739564124,245,0 +170739564172,246,0 +170739564220,245,0 +170739564269,246,0 +170739564319,246,0 +170739564367,245,0 +170739564416,245,0 +170739564466,245,0 +170739564514,245,0 +170739564563,246,0 +170739564611,245,0 +170739564661,245,0 +170739564709,246,0 +170739564758,246,0 +170739564806,246,0 +170739564854,246,0 +170739564902,246,0 +170739564950,245,0 +170739565000,246,0 +170739565049,245,0 +170739565097,245,0 +170739565147,245,0 +170739565195,246,0 +170739565244,245,0 +170739565294,245,0 +170739565342,246,0 +170739565390,246,0 +170739565439,245,0 +170739565489,246,0 +170739565537,246,0 +170739565585,245,0 +170739565633,245,0 +170739565682,245,0 +170739565730,246,0 +170739565778,245,0 +170739565826,245,0 +170739565874,246,0 +170739565924,245,0 +170739565972,245,0 +170739566020,246,0 +170739566069,245,0 +170739566119,245,0 +170739566167,246,0 +170739566215,246,0 +170739566262,246,0 +170739566310,246,0 +170739566358,245,0 +170739566406,246,0 +170739566454,246,0 +170739566504,245,0 +170739566553,246,0 +170739566601,245,0 +170739566649,245,0 +170739566697,246,0 +170739566745,245,0 +170739566795,246,0 +170739566843,245,0 +170739566892,246,0 +170739566942,246,0 +170739566990,246,0 +170739567038,246,0 +170739567087,245,0 +170739567137,246,0 +170739567185,246,0 +170739567234,246,0 +170739567282,245,0 +170739567330,245,0 +170739567380,246,0 +170739567428,246,0 +170739567476,245,0 +170739567524,246,0 +170739567573,245,0 +170739567621,246,0 +170739567671,245,0 +170739567720,246,0 +170739567770,246,0 +170739567818,245,0 +170739567867,246,0 +170739567915,246,0 +170739567963,245,0 +170739568013,245,0 +170739568062,246,0 +170739568110,245,0 +170739568158,245,0 +170739568206,245,0 +170739568254,245,0 +170739568302,246,0 +170739568350,246,0 +170739568398,245,0 +170739568448,246,0 +170739568496,245,0 +170739568545,246,0 +170739568593,245,0 +170739568641,246,0 +170739568689,246,0 +170739568737,245,0 +170739568786,246,0 +170739568834,246,0 +170739568882,246,0 +170739568930,246,0 +170739568978,246,0 +170739569026,246,0 +170739569076,246,0 +170739569124,246,0 +170739569172,245,0 +170739569221,246,0 +170739569271,246,0 +170739569319,245,0 +170739569367,245,0 +170739569415,245,0 +170739569463,246,0 +170739569511,245,0 +170739569559,246,0 +170739569608,246,0 +170739569656,246,0 +170739569704,245,0 +170739569754,246,0 +170739569801,246,0 +170739569851,246,0 +170739569901,246,0 +170739569949,246,0 +170739569996,246,0 +170739570046,246,0 +170739570096,246,0 +170739570145,245,0 +170739570193,245,0 +170739570243,245,0 +170739570292,246,0 +170739570342,245,0 +170739570390,246,0 +170739570439,245,0 +170739570487,245,0 +170739570537,246,0 +170739570586,245,0 +170739570634,246,0 +170739570682,245,0 +170739570732,246,0 +170739570781,246,0 +170739570831,246,0 +170739570880,246,0 +170739570928,245,0 +170739570978,246,0 +170739571026,245,0 +170739571074,246,0 +170739571123,246,0 +170739571171,246,0 +170739571219,245,0 +170739571267,246,0 +170739571316,245,0 +170739571366,246,0 +170739571414,245,0 +170739571462,246,0 +170739571511,246,0 +170739571561,246,0 +170739571609,246,0 +170739571657,246,0 +170739571706,246,0 +170739571754,245,0 +170739571802,245,0 +170739571850,246,0 +170739571898,245,0 +170739571948,245,0 +170739571997,245,0 +170739572045,245,0 +170739572093,246,0 +170739572141,246,0 +170739572191,245,0 +170739572239,245,0 +170739572286,245,0 +170739572336,246,0 +170739572384,246,0 +170739572432,246,0 +170739572480,245,0 +170739572528,246,0 +170739572577,246,0 +170739572625,246,0 +170739572673,245,0 +170739572723,245,0 +170739572771,245,0 +170739572819,245,0 +170739572867,245,0 +170739572914,246,0 +170739572962,246,0 +170739573010,246,0 +170739573060,245,0 +170739573109,245,0 +170739573157,246,0 +170739573205,246,0 +170739573253,246,0 +170739573302,246,0 +170739573350,246,0 +170739573400,245,0 +170739573448,245,0 +170739573496,246,0 +170739573543,245,0 +170739573591,245,0 +170739573639,245,0 +170739573687,245,0 +170739573735,246,0 +170739573783,245,0 +170739573831,245,0 +170739573881,245,0 +170739573930,245,0 +170739573978,246,0 +170739574026,245,0 +170739574074,245,0 +170739574123,245,0 +170739574171,246,0 +170739574219,245,0 +170739574267,245,0 +170739574315,245,0 +170739574363,246,0 +170739574411,246,0 +170739574459,246,0 +170739574506,245,0 +170739574554,246,0 +170739574602,245,0 +170739574651,245,0 +170739574701,245,0 +170739574749,246,0 +170739574798,245,0 +170739574848,245,0 +170739574896,245,0 +170739574944,245,0 +170739574991,246,0 +170739575039,246,0 +170739575087,246,0 +170739575135,245,0 +170739575183,245,0 +170739575231,245,0 +170739575279,246,0 +170739575326,246,0 +170739575374,246,0 +170739575422,245,0 +170739575470,245,0 +170739575518,245,0 +170739575566,246,0 +170739575614,246,0 +170739575662,245,0 +170739575711,245,0 +170739575761,246,0 +170739575810,245,0 +170739575858,245,0 +170739575906,245,0 +170739575954,245,0 +170739576004,246,0 +170739576053,246,0 +170739576101,246,0 +170739576149,245,0 +170739576197,246,0 +170739576245,245,0 +170739576293,245,0 +170739576341,246,0 +170739576389,246,0 +170739576438,245,0 +170739576488,245,0 +170739576538,246,0 +170739576585,246,0 +170739576633,246,0 +170739576683,246,0 +170739576732,245,0 +170739576782,246,0 +170739576831,246,0 +170739576879,246,0 +170739576927,245,0 +170739576975,245,0 +170739577025,245,0 +170739577072,246,0 +170739577120,245,0 +170739577168,246,0 +170739577216,246,0 +170739577264,245,0 +170739577312,245,0 +170739577360,246,0 +170739577409,245,0 +170739577457,245,0 +170739577505,245,0 +170739577553,245,0 +170739577601,246,0 +170739577649,245,0 +170739577699,245,0 +170739577747,245,0 +170739577795,245,0 +170739577842,245,0 +170739577890,245,0 +170739577938,246,0 +170739577986,245,0 +170739578034,246,0 +170739578082,246,0 +170739578130,245,0 +170739578178,245,0 +170739578226,246,0 +170739578274,246,0 +170739578322,245,0 +170739578370,245,0 +170739578418,246,0 +170739578466,245,0 +170739578514,246,0 +170739578563,245,0 +170739578611,246,0 +170739578659,246,0 +170739578707,245,0 +170739578755,246,0 +170739578803,245,0 +170739578851,246,0 +170739578899,246,0 +170739578947,246,0 +170739578995,245,0 +170739579044,246,0 +170739579092,245,0 +170739579140,245,0 +170739579188,245,0 +170739579238,246,0 +170739579286,245,0 +170739579335,245,0 +170739579383,246,0 +170739579431,246,0 +170739579479,246,0 +170739579527,245,0 +170739579575,246,0 +170739579623,245,0 +170739579671,246,0 +170739579719,246,0 +170739579767,245,0 +170739579817,245,0 +170739579865,245,0 +170739579913,246,0 +170739579961,245,0 +170739580009,246,0 +170739580057,245,0 +170739580106,245,0 +170739580154,246,0 +170739580204,246,0 +170739580252,246,0 +170739580300,245,0 +170739580348,246,0 +170739580397,245,0 +170739580447,245,0 +170739580495,245,0 +170739580543,245,0 +170739580592,245,0 +170739580642,245,0 +170739580690,245,0 +170739580738,246,0 +170739580786,245,0 +170739580835,246,0 +170739580883,245,0 +170739580931,246,0 +170739580981,246,0 +170739581030,245,0 +170739581078,246,0 +170739581126,246,0 +170739581174,245,0 +170739581222,245,0 +170739581271,246,0 +170739581319,245,0 +170739581367,245,0 +170739581417,246,0 +170739581465,245,0 +170739581513,245,0 +170739581561,245,0 +170739581609,245,0 +170739581657,245,0 +170739581705,245,0 +170739581753,245,0 +170739581800,246,0 +170739581848,246,0 +170739581896,246,0 +170739581944,246,0 +170739581992,245,0 +170739582042,245,0 +170739582089,246,0 +170739582137,246,0 +170739582185,246,0 +170739582233,245,0 +170739582281,245,0 +170739582329,246,0 +170739582377,246,0 +170739582425,245,0 +170739582473,245,0 +170739582523,245,0 +170739582571,245,0 +170739582619,245,0 +170739582668,246,0 +170739582716,245,0 +170739582764,245,0 +170739582812,246,0 +170739582860,246,0 +170739582907,245,0 +170739582955,246,0 +170739583005,246,0 +170739583053,245,0 +170739583101,246,0 +170739583148,246,0 +170739583196,245,0 +170739583244,245,0 +170739583292,245,0 +170739583342,245,0 +170739583391,246,0 +170739583441,245,0 +170739583489,246,0 +170739583537,246,0 +170739583586,246,0 +170739583634,246,0 +170739583683,245,0 +170739583731,245,0 +170739583781,245,0 +170739583829,245,0 +170739583878,246,0 +170739583926,246,0 +170739583976,245,0 +170739584025,246,0 +170739584075,245,0 +170739584123,245,0 +170739584171,246,0 +170739584219,245,0 +170739584267,245,0 +170739584314,246,0 +170739584362,246,0 +170739584410,246,0 +170739584458,245,0 +170739584508,245,0 +170739584557,245,0 +170739584607,246,0 +170739584655,245,0 +170739584704,246,0 +170739584754,246,0 +170739584802,246,0 +170739584849,245,0 +170739584897,246,0 +170739584945,245,0 +170739584993,246,0 +170739585041,246,0 +170739585089,246,0 +170739585137,245,0 +170739585185,245,0 +170739585232,246,0 +170739585280,245,0 +170739585328,245,0 +170739585376,245,0 +170739585424,246,0 +170739585472,246,0 +170739585520,245,0 +170739585568,245,0 +170739585616,245,0 +170739585664,245,0 +170739585712,245,0 +170739585761,246,0 +170739585809,246,0 +170739585857,246,0 +170739585905,246,0 +170739585952,246,0 +170739586002,246,0 +170739586050,246,0 +170739586098,246,0 +170739586146,245,0 +170739586194,246,0 +170739586241,245,0 +170739586289,245,0 +170739586337,246,0 +170739586387,245,0 +170739586435,245,0 +170739586483,245,0 +170739586531,245,0 +170739586579,246,0 +170739586628,246,0 +170739586676,245,0 +170739586726,246,0 +170739586774,245,0 +170739586822,246,0 +170739586870,246,0 +170739586917,246,0 +170739586965,245,0 +170739587013,246,0 +170739587061,245,0 +170739587109,245,0 +170739587159,245,0 +170739587207,246,0 +170739587255,246,0 +170739587303,246,0 +170739587351,246,0 +170739587399,245,0 +170739587447,245,0 +170739587495,245,0 +170739587543,245,0 +170739587591,246,0 +170739587639,245,0 +170739587687,246,0 +170739587736,246,0 +170739587784,246,0 +170739587832,245,0 +170739587880,246,0 +170739587928,245,0 +170739587977,246,0 +170739588027,245,0 +170739588076,245,0 +170739588126,245,0 +170739588174,245,0 +170739588223,246,0 +170739588273,246,0 +170739588321,245,0 +170739588369,245,0 +170739588417,246,0 +170739588465,245,0 +170739588514,245,0 +170739588562,245,0 +170739588610,246,0 +170739588659,246,0 +170739588709,245,0 +170739588757,245,0 +170739588805,245,0 +170739588854,245,0 +170739588904,245,0 +170739588952,246,0 +170739589001,246,0 +170739589051,246,0 +170739589100,246,0 +170739589148,245,0 +170739589196,246,0 +170739589244,246,0 +170739589292,246,0 +170739589340,246,0 +170739589389,245,0 +170739589437,246,0 +170739589485,246,0 +170739589534,246,0 +170739589584,246,0 +170739589634,246,0 +170739589681,246,0 +170739589731,245,0 +170739589779,245,0 +170739589827,246,0 +170739589875,246,0 +170739589923,246,0 +170739589971,245,0 +170739590019,246,0 +170739590067,245,0 +170739590115,245,0 +170739590164,246,0 +170739590214,245,0 +170739590263,246,0 +170739590312,246,0 +170739590360,246,0 +170739590410,246,0 +170739590458,245,0 +170739590507,246,0 +170739590555,245,0 +170739590603,245,0 +170739590651,246,0 +170739590699,245,0 +170739590747,246,0 +170739590795,246,0 +170739590843,245,0 +170739590891,246,0 +170739590939,245,0 +170739590987,245,0 +170739591036,246,0 +170739591086,246,0 +170739591134,246,0 +170739591183,246,0 +170739591233,246,0 +170739591282,245,0 +170739591330,246,0 +170739591378,245,0 +170739591428,246,0 +170739591477,246,0 +170739591525,246,0 +170739591573,245,0 +170739591621,246,0 +170739591669,246,0 +170739591717,246,0 +170739591766,245,0 +170739591814,246,0 +170739591862,245,0 +170739591912,246,0 +170739591959,245,0 +170739592009,246,0 +170739592057,245,0 +170739592106,246,0 +170739592154,246,0 +170739592202,246,0 +170739592250,246,0 +170739592299,246,0 +170739592349,245,0 +170739592397,246,0 +170739592445,246,0 +170739592494,245,0 +170739592542,245,0 +170739592591,246,0 +170739592641,245,0 +170739592691,245,0 +170739592739,245,0 +170739592786,245,0 +170739592834,246,0 +170739592884,245,0 +170739592933,246,0 +170739592981,246,0 +170739593031,245,0 +170739593079,246,0 +170739593127,245,0 +170739593176,246,0 +170739593224,245,0 +170739593274,246,0 +170739593322,246,0 +170739593370,246,0 +170739593418,245,0 +170739593466,245,0 +170739593514,245,0 +170739593562,246,0 +170739593611,245,0 +170739593661,245,0 +170739593709,245,0 +170739593757,246,0 +170739593806,246,0 +170739593854,246,0 +170739593902,245,0 +170739593950,245,0 +170739593998,246,0 +170739594047,246,0 +170739594095,245,0 +170739594143,245,0 +170739594191,245,0 +170739594239,246,0 +170739594287,245,0 +170739594337,246,0 +170739594385,245,0 +170739594434,246,0 +170739594482,245,0 +170739594532,245,0 +170739594581,246,0 +170739594629,246,0 +170739594677,246,0 +170739594725,246,0 +170739594775,245,0 +170739594824,245,0 +170739594872,245,0 +170739594920,245,0 +170739594968,245,0 +170739595016,246,0 +170739595066,246,0 +170739595114,246,0 +170739595163,245,0 +170739595211,245,0 +170739595259,246,0 +170739595309,245,0 +170739595357,246,0 +170739595406,245,0 +170739595454,246,0 +170739595502,246,0 +170739595550,246,0 +170739595598,245,0 +170739595646,245,0 +170739595695,246,0 +170739595745,245,0 +170739595794,245,0 +170739595842,246,0 +170739595892,246,0 +170739595940,246,0 +170739595988,246,0 +170739596036,246,0 +170739596084,245,0 +170739596132,245,0 +170739596181,245,0 +170739596229,246,0 +170739596277,246,0 +170739596325,246,0 +170739596375,245,0 +170739596423,245,0 +170739596471,246,0 +170739596520,245,0 +170739596570,246,0 +170739596618,245,0 +170739596666,245,0 +170739596715,245,0 +170739596763,245,0 +170739596811,246,0 +170739596861,245,0 +170739596909,245,0 +170739596956,246,0 +170739597004,246,0 +170739597054,246,0 +170739597102,245,0 +170739597150,245,0 +170739597199,245,0 +170739597249,245,0 +170739597297,245,0 +170739597345,245,0 +170739597393,245,0 +170739597443,245,0 +170739597490,245,0 +170739597540,246,0 +170739597588,246,0 +170739597636,246,0 +170739597684,246,0 +170739597733,246,0 +170739597781,245,0 +170739597831,245,0 +170739597879,245,0 +170739597927,246,0 +170739597974,246,0 +170739598024,245,0 +170739598072,245,0 +170739598120,245,0 +170739598169,245,0 +170739598217,245,0 +170739598267,245,0 +170739598316,246,0 +170739598364,246,0 +170739598412,246,0 +170739598462,246,0 +170739598511,245,0 +170739598561,245,0 +170739598609,245,0 +170739598657,246,0 +170739598705,245,0 +170739598753,245,0 +170739598801,246,0 +170739598849,246,0 +170739598897,245,0 +170739598946,246,0 +170739598994,246,0 +170739599044,246,0 +170739599092,246,0 +170739599141,246,0 +170739599189,245,0 +170739599237,245,0 +170739599285,245,0 +170739599333,245,0 +170739599380,245,0 +170739599428,245,0 +170739599478,245,0 +170739599526,246,0 +170739599575,246,0 +170739599625,245,0 +170739599674,245,0 +170739599722,245,0 +170739599770,245,0 +170739599818,246,0 +170739599866,246,0 +170739599914,246,0 +170739599964,246,0 +170739600013,245,0 +170739600061,245,0 +170739600111,245,0 +170739600160,245,0 +170739600208,246,0 +170739600258,245,0 +170739600307,245,0 +170739600355,246,0 +170739600405,245,0 +170739600453,245,0 +170739600502,245,0 +170739600550,245,0 +170739600600,245,0 +170739600648,245,0 +170739600696,246,0 +170739600744,245,0 +170739600792,246,0 +170739600841,245,0 +170739600889,245,0 +170739600937,245,0 +170739600985,245,0 +170739601033,245,0 +170739601081,245,0 +170739601130,246,0 +170739601178,245,0 +170739601226,245,0 +170739601274,246,0 +170739601322,245,0 +170739601370,245,0 +170739601418,245,0 +170739601466,245,0 +170739601514,245,0 +170739601563,245,0 +170739601613,245,0 +170739601661,245,0 +170739601708,245,0 +170739601756,245,0 +170739601804,245,0 +170739601852,245,0 +170739601900,245,0 +170739601950,246,0 +170739601998,245,0 +170739602046,245,0 +170739602094,245,0 +170739602143,245,0 +170739602191,245,0 +170739602239,245,0 +170739602289,245,0 +170739602337,245,0 +170739602386,246,0 +170739602436,245,0 +170739602484,245,0 +170739602532,245,0 +170739602580,245,0 +170739602628,245,0 +170739602677,245,0 +170739602725,245,0 +170739602773,245,0 +170739602822,245,0 +170739602870,245,0 +170739602918,245,0 +170739602966,245,0 +170739603016,245,0 +170739603064,245,0 +170739603112,245,0 +170739603160,245,0 +170739603207,245,0 +170739603255,245,0 +170739603303,245,0 +170739603351,245,0 +170739603399,245,0 +170739603448,245,0 +170739603496,245,0 +170739603544,246,0 +170739603592,245,0 +170739603640,245,0 +170739603688,246,0 +170739603736,245,0 +170739603785,245,0 +170739603833,245,0 +170739603881,245,0 +170739603929,245,0 +170739603977,246,0 +170739604025,246,0 +170739604073,245,0 +170739604121,245,0 +170739604170,245,0 +170739604220,246,0 +170739604269,245,0 +170739604317,245,0 +170739604365,245,0 +170739604413,246,0 +170739604461,245,0 +170739604509,245,0 +170739604557,245,0 +170739604605,245,0 +170739604653,245,0 +170739604701,246,0 +170739604749,245,0 +170739604797,246,0 +170739604845,245,0 +170739604893,245,0 +170739604941,245,0 +170739604989,245,0 +170739605037,245,0 +170739605084,246,0 +170739605132,246,0 +170739605182,245,0 +170739605230,245,0 +170739605278,246,0 +170739605326,245,0 +170739605375,245,0 +170739605423,245,0 +170739605473,246,0 +170739605521,245,0 +170739605569,245,0 +170739605617,245,0 +170739605666,245,0 +170739605714,245,0 +170739605762,245,0 +170739605812,245,0 +170739605860,245,0 +170739605909,245,0 +170739605959,246,0 +170739606007,246,0 +170739606054,245,0 +170739606104,245,0 +170739606154,245,0 +170739606203,245,0 +170739606251,245,0 +170739606299,245,0 +170739606347,245,0 +170739606395,246,0 +170739606443,245,0 +170739606491,245,0 +170739606539,246,0 +170739606588,245,0 +170739606638,245,0 +170739606686,245,0 +170739606734,245,0 +170739606783,245,0 +170739606831,246,0 +170739606881,245,0 +170739606930,245,0 +170739606978,245,0 +170739607026,245,0 +170739607076,245,0 +170739607124,245,0 +170739607172,246,0 +170739607220,245,0 +170739607268,245,0 +170739607316,245,0 +170739607364,245,0 +170739607411,245,0 +170739607461,245,0 +170739607510,245,0 +170739607560,245,0 +170739607610,245,0 +170739607659,245,0 +170739607707,245,0 +170739607755,245,0 +170739607804,245,0 +170739607852,245,0 +170739607900,245,0 +170739607948,245,0 +170739607996,245,0 +170739608044,245,0 +170739608092,245,0 +170739608140,245,0 +170739608188,245,0 +170739608235,245,0 +170739608283,245,0 +170739608331,245,0 +170739608379,245,0 +170739608427,245,0 +170739608475,245,0 +170739608523,245,0 +170739608571,245,0 +170739608619,245,0 +170739608668,245,0 +170739608718,245,0 +170739608766,245,0 +170739608815,245,0 +170739608863,245,0 +170739608911,245,0 +170739608961,245,0 +170739609009,246,0 +170739609057,245,0 +170739609105,245,0 +170739609153,245,0 +170739609202,245,0 +170739609250,245,0 +170739609298,245,0 +170739609346,246,0 +170739609394,245,0 +170739609442,245,0 +170739609492,245,0 +170739609540,245,0 +170739609588,245,0 +170739609636,246,0 +170739609684,245,0 +170739609732,245,0 +170739609780,245,0 +170739609827,245,0 +170739609877,245,0 +170739609925,245,0 +170739609973,245,0 +170739610023,245,0 +170739610070,245,0 +170739610118,245,0 +170739610166,245,0 +170739610214,245,0 +170739610264,245,0 +170739610312,245,0 +170739610360,245,0 +170739610409,245,0 +170739610457,245,0 +170739610505,245,0 +170739610555,245,0 +170739610603,245,0 +170739610652,245,0 +170739610700,245,0 +170739610750,245,0 +170739610798,245,0 +170739610847,245,0 +170739610895,245,0 +170739610943,245,0 +170739610991,245,0 +170739611039,245,0 +170739611087,245,0 +170739611135,245,0 +170739611183,246,0 +170739611232,245,0 +170739611280,245,0 +170739611328,245,0 +170739611376,246,0 +170739611424,245,0 +170739611472,245,0 +170739611520,245,0 +170739611568,246,0 +170739611617,245,0 +170739611665,245,0 +170739611713,245,0 +170739611761,245,0 +170739611809,245,0 +170739611857,245,0 +170739611904,245,0 +170739611952,246,0 +170739612000,245,0 +170739612050,245,0 +170739612098,245,0 +170739612145,245,0 +170739612193,246,0 +170739612241,245,0 +170739612289,245,0 +170739612337,245,0 +170739612386,245,0 +170739612434,245,0 +170739612482,245,0 +170739612532,245,0 +170739612579,245,0 +170739612629,245,0 +170739612677,245,0 +170739612725,245,0 +170739612773,245,0 +170739612821,245,0 +170739612869,245,0 +170739612917,245,0 +170739612965,245,0 +170739613013,245,0 +170739613062,245,0 +170739613112,245,0 +170739613161,245,0 +170739613209,245,0 +170739613257,245,0 +170739613305,245,0 +170739613355,245,0 +170739613404,245,0 +170739613454,245,0 +170739613503,245,0 +170739613551,245,0 +170739613599,245,0 +170739613647,245,0 +170739613695,245,0 +170739613743,245,0 +170739613791,245,0 +170739613839,245,0 +170739613887,245,0 +170739613936,245,0 +170739613986,245,0 +170739614034,245,0 +170739614082,245,0 +170739614130,245,0 +170739614179,245,0 +170739614227,245,0 +170739614275,245,0 +170739614323,245,0 +170739614371,246,0 +170739614421,245,0 +170739614469,245,0 +170739614518,245,0 +170739614566,245,0 +170739614616,245,0 +170739614665,245,0 +170739614715,245,0 +170739614763,245,0 +170739614812,245,0 +170739614860,245,0 +170739614910,245,0 +170739614958,245,0 +170739615006,245,0 +170739615054,245,0 +170739615102,245,0 +170739615150,245,0 +170739615198,245,0 +170739615247,245,0 +170739615295,245,0 +170739615345,245,0 +170739615393,245,0 +170739615441,245,0 +170739615489,245,0 +170739615538,245,0 +170739615588,245,0 +170739615636,245,0 +170739615684,245,0 +170739615732,245,0 +170739615780,245,0 +170739615828,245,0 +170739615876,245,0 +170739615923,245,0 +170739615971,245,0 +170739616019,245,0 +170739616069,245,0 +170739616118,245,0 +170739616168,245,0 +170739616217,245,0 +170739616267,245,0 +170739616316,245,0 +170739616366,245,0 +170739616414,245,0 +170739616462,245,0 +170739616510,245,0 +170739616559,245,0 +170739616607,245,0 +170739616655,245,0 +170739616705,245,0 +170739616754,245,0 +170739616802,245,0 +170739616850,245,0 +170739616898,245,0 +170739616946,245,0 +170739616996,245,0 +170739617045,245,0 +170739617093,245,0 +170739617143,245,0 +170739617191,245,0 +170739617239,245,0 +170739617288,245,0 +170739617336,245,0 +170739617385,245,0 +170739617433,245,0 +170739617481,245,0 +170739617529,245,0 +170739617579,245,0 +170739617627,245,0 +170739617675,246,0 +170739617723,245,0 +170739617771,245,0 +170739617819,245,0 +170739617868,246,0 +170739617916,246,0 +170739617964,247,0 +170739618012,247,0 +170739618060,246,0 +170739618108,246,0 +170739618156,247,0 +170739618204,246,0 +170739618252,246,0 +170739618301,246,0 +170739618351,245,0 +170739618399,246,0 +170739618447,246,0 +170739618495,246,0 +170739618544,246,0 +170739618594,246,0 +170739618642,246,0 +170739618689,245,0 +170739618739,245,0 +170739618787,246,0 +170739618835,246,0 +170739618884,247,0 +170739618934,245,0 +170739618982,245,0 +170739619030,245,0 +170739619078,246,0 +170739619126,245,0 +170739619174,245,0 +170739619222,245,0 +170739619270,245,0 +170739619319,245,0 +170739619367,245,0 +170739619415,245,0 +170739619463,246,0 +170739619513,246,0 +170739619561,245,0 +170739619610,245,0 +170739619658,245,0 +170739619706,245,0 +170739619755,245,0 +170739619803,246,0 +170739619851,245,0 +170739619901,246,0 +170739619949,245,0 +170739619997,245,0 +170739620046,245,0 +170739620096,245,0 +170739620145,245,0 +170739620193,245,0 +170739620243,246,0 +170739620291,245,0 +170739620339,246,0 +170739620388,245,0 +170739620438,245,0 +170739620486,245,0 +170739620535,245,0 +170739620585,245,0 +170739620633,245,0 +170739620681,246,0 +170739620729,246,0 +170739620777,245,0 +170739620825,245,0 +170739620873,245,0 +170739620921,245,0 +170739620970,245,0 +170739621020,245,0 +170739621068,246,0 +170739621116,246,0 +170739621164,246,0 +170739621213,245,0 +170739621261,245,0 +170739621309,246,0 +170739621358,245,0 +170739621406,246,0 +170739621454,246,0 +170739621502,246,0 +170739621550,245,0 +170739621598,245,0 +170739621648,246,0 +170739621696,245,0 +170739621744,246,0 +170739621792,245,0 +170739621840,245,0 +170739621889,245,0 +170739621937,246,0 +170739621985,245,0 +170739622035,245,0 +170739622084,245,0 +170739622132,246,0 +170739622182,246,0 +170739622231,246,0 +170739622281,246,0 +170739622329,245,0 +170739622377,246,0 +170739622426,246,0 +170739622474,246,0 +170739622522,246,0 +170739622570,246,0 +170739622619,246,0 +170739622669,246,0 +170739622718,245,0 +170739622768,246,0 +170739622816,246,0 +170739622864,245,0 +170739622913,246,0 +170739622961,246,0 +170739623009,246,0 +170739623057,246,0 +170739623105,245,0 +170739623153,245,0 +170739623203,246,0 +170739623252,246,0 +170739623302,246,0 +170739623351,246,0 +170739623401,246,0 +170739623450,245,0 +170739623498,246,0 +170739623548,246,0 +170739623596,245,0 +170739623644,246,0 +170739623693,246,0 +170739623741,245,0 +170739623789,245,0 +170739623837,246,0 +170739623885,245,0 +170739623935,245,0 +170739623984,245,0 +170739624032,246,0 +170739624082,246,0 +170739624130,246,0 +170739624178,245,0 +170739624226,246,0 +170739624273,246,0 +170739624321,245,0 +170739624369,245,0 +170739624419,245,0 +170739624468,245,0 +170739624518,246,0 +170739624566,246,0 +170739624614,245,0 +170739624662,244,0 +170739624710,244,0 +170739624759,244,0 +170739624807,243,0 +170739624855,245,0 +170739624903,244,0 +170739624953,244,0 +170739625002,247,0 +170739625052,241,0 +170739625101,241,0 +170739625149,242,0 +170739625197,243,0 +170739625247,242,0 +170739625295,242,0 +170739625343,242,0 +170739625392,243,0 +170739625442,243,0 +170739625491,243,0 +170739625539,244,0 +170739625587,243,0 +170739625635,244,0 +170739625685,244,0 +170739625733,244,0 +170739625782,243,0 +170739625830,244,0 +170739625878,244,0 +170739625926,244,0 +170739625976,244,0 +170739626024,244,0 +170739626073,244,0 +170739626121,244,0 +170739626169,244,0 +170739626218,244,0 +170739626268,244,0 +170739626316,244,0 +170739626364,244,0 +170739626413,244,0 +170739626461,244,0 +170739626509,244,0 +170739626557,244,0 +170739626607,244,0 +170739626656,244,0 +170739626704,244,0 +170739626754,243,0 +170739626802,244,0 +170739626851,244,0 +170739626901,244,0 +170739626950,244,0 +170739626998,244,0 +170739627046,243,0 +170739627094,243,0 +170739627142,243,0 +170739627190,243,0 +170739627238,243,0 +170739627286,243,0 +170739627334,243,0 +170739627382,243,0 +170739627430,243,0 +170739627478,243,0 +170739627526,243,0 +170739627574,243,0 +170739627623,243,0 +170739627671,243,0 +170739627721,243,0 +170739627770,243,0 +170739627818,243,0 +170739627866,243,0 +170739627914,244,0 +170739627963,243,0 +170739628011,243,0 +170739628059,243,0 +170739628107,243,0 +170739628155,243,0 +170739628203,243,0 +170739628251,243,0 +170739628299,243,0 +170739628349,243,0 +170739628397,243,0 +170739628446,243,0 +170739628496,243,0 +170739628544,243,0 +170739628593,243,0 +170739628641,243,0 +170739628689,244,0 +170739628737,243,0 +170739628785,243,0 +170739628834,243,0 +170739628882,243,0 +170739628932,243,0 +170739628980,244,0 +170739629028,243,0 +170739629076,243,0 +170739629124,244,0 +170739629174,244,0 +170739629222,244,0 +170739629269,244,0 +170739629317,244,0 +170739629367,244,0 +170739629417,244,0 +170739629465,244,0 +170739629513,244,0 +170739629562,244,0 +170739629612,244,0 +170739629659,244,0 +170739629707,244,0 +170739629755,244,0 +170739629805,243,0 +170739629853,244,0 +170739629901,244,0 +170739629950,244,0 +170739629998,244,0 +170739630046,244,0 +170739630096,244,0 +170739630144,244,0 +170739630192,244,0 +170739630240,244,0 +170739630288,244,0 +170739630336,244,0 +170739630384,244,0 +170739630432,244,0 +170739630481,243,0 +170739630529,244,0 +170739630577,244,0 +170739630625,244,0 +170739630675,244,0 +170739630723,244,0 +170739630772,244,0 +170739630820,244,0 +170739630868,244,0 +170739630916,244,0 +170739630964,244,0 +170739631013,244,0 +170739631061,244,0 +170739631109,244,0 +170739631157,244,0 +170739631207,244,0 +170739631255,244,0 +170739631303,244,0 +170739631352,244,0 +170739631402,244,0 +170739631450,244,0 +170739631498,244,0 +170739631545,244,0 +170739631593,243,0 +170739631641,244,0 +170739631689,244,0 +170739631737,244,0 +170739631785,243,0 +170739631833,243,0 +170739631883,243,0 +170739631931,243,0 +170739631979,243,0 +170739632027,243,0 +170739632075,243,0 +170739632123,243,0 +170739632172,244,0 +170739632222,243,0 +170739632271,243,0 +170739632319,243,0 +170739632367,244,0 +170739632415,243,0 +170739632465,243,0 +170739632513,243,0 +170739632560,244,0 +170739632608,243,0 +170739632656,244,0 +170739632704,243,0 +170739632752,243,0 +170739632802,243,0 +170739632850,243,0 +170739632898,243,0 +170739632946,243,0 +170739632994,243,0 +170739633041,243,0 +170739633091,243,0 +170739633141,243,0 +170739633190,243,0 +170739633238,243,0 +170739633286,244,0 +170739633334,243,0 +170739633382,243,0 +170739633432,243,0 +170739633481,243,0 +170739633531,243,0 +170739633580,243,0 +170739633630,243,0 +170739633678,243,0 +170739633726,243,0 +170739633775,243,0 +170739633823,244,0 +170739633871,243,0 +170739633919,243,0 +170739633967,243,0 +170739634015,243,0 +170739634064,243,0 +170739634114,243,0 +170739634163,243,0 +170739634211,243,0 +170739634259,243,0 +170739634307,243,0 +170739634357,243,0 +170739634405,243,0 +170739634454,243,0 +170739634502,243,0 +170739634552,243,0 +170739634600,243,0 +170739634648,243,0 +170739634696,243,0 +170739634744,244,0 +170739634792,244,0 +170739634841,243,0 +170739634891,243,0 +170739634938,243,0 +170739634986,243,0 +170739635034,243,0 +170739635084,244,0 +170739635133,243,0 +170739635181,243,0 +170739635231,243,0 +170739635279,244,0 +170739635328,244,0 +170739635376,243,0 +170739635424,244,0 +170739635474,243,0 +170739635522,243,0 +170739635571,243,0 +170739635619,244,0 +170739635669,243,0 +170739635717,244,0 +170739635765,244,0 +170739635813,244,0 +170739635861,243,0 +170739635910,244,0 +170739635958,244,0 +170739636006,244,0 +170739636054,243,0 +170739636104,244,0 +170739636152,243,0 +170739636199,244,0 +170739636249,244,0 +170739636298,244,0 +170739636346,244,0 +170739636394,244,0 +170739636444,244,0 +170739636493,244,0 +170739636541,244,0 +170739636591,244,0 +170739636639,244,0 +170739636687,244,0 +170739636736,244,0 +170739636784,244,0 +170739636832,244,0 +170739636882,244,0 +170739636930,244,0 +170739636978,244,0 +170739637026,244,0 +170739637074,244,0 +170739637121,244,0 +170739637171,244,0 +170739637219,244,0 +170739637268,244,0 +170739637316,244,0 +170739637366,244,0 +170739637415,244,0 +170739637463,244,0 +170739637511,244,0 +170739637559,244,0 +170739637607,244,0 +170739637655,244,0 +170739637703,244,0 +170739637751,244,0 +170739637799,244,0 +170739637847,243,0 +170739637895,244,0 +170739637943,243,0 +170739637991,243,0 +170739638039,244,0 +170739638087,244,0 +170739638135,244,0 +170739638185,244,0 +170739638234,244,0 +170739638282,244,0 +170739638332,244,0 +170739638379,244,0 +170739638429,244,0 +170739638478,244,0 +170739638526,243,0 +170739638576,244,0 +170739638624,244,0 +170739638672,244,0 +170739638721,244,0 +170739638769,244,0 +170739638819,244,0 +170739638868,244,0 +170739638918,244,0 +170739638968,244,0 +170739639016,244,0 +170739639065,243,0 +170739639113,244,0 +170739639161,243,0 +170739639209,243,0 +170739639257,243,0 +170739639306,244,0 +170739639356,243,0 +170739639404,243,0 +170739639454,243,0 +170739639502,243,0 +170739639551,243,0 +170739639599,243,0 +170739639649,243,0 +170739639697,243,0 +170739639746,243,0 +170739639794,243,0 +170739639842,243,0 +170739639891,243,0 +170739639939,243,0 +170739639987,243,0 +170739640035,243,0 +170739640085,243,0 +170739640134,243,0 +170739640184,243,0 +170739640232,243,0 +170739640281,243,0 +170739640331,243,0 +170739640379,243,0 +170739640428,243,0 +170739640476,243,0 +170739640526,243,0 +170739640574,244,0 +170739640622,243,0 +170739640670,243,0 +170739640718,243,0 +170739640766,244,0 +170739640815,244,0 +170739640865,243,0 +170739640913,243,0 +170739640961,243,0 +170739641009,244,0 +170739641056,244,0 +170739641104,243,0 +170739641154,243,0 +170739641202,243,0 +170739641250,243,0 +170739641298,243,0 +170739641346,244,0 +170739641395,243,0 +170739641445,244,0 +170739641494,243,0 +170739641542,243,0 +170739641590,243,0 +170739641638,243,0 +170739641686,243,0 +170739641734,243,0 +170739641784,243,0 +170739641832,243,0 +170739641880,243,0 +170739641929,243,0 +170739641979,243,0 +170739642027,243,0 +170739642075,243,0 +170739642124,243,0 +170739642174,243,0 +170739642222,244,0 +170739642270,244,0 +170739642318,243,0 +170739642366,244,0 +170739642414,243,0 +170739642463,243,0 +170739642511,243,0 +170739642559,243,0 +170739642607,243,0 +170739642657,243,0 +170739642706,243,0 +170739642754,243,0 +170739642802,243,0 +170739642850,243,0 +170739642899,243,0 +170739642949,243,0 +170739642997,244,0 +170739643046,243,0 +170739643094,243,0 +170739643144,243,0 +170739643192,243,0 +170739643240,243,0 +170739643288,243,0 +170739643336,243,0 +170739643385,243,0 +170739643433,243,0 +170739643483,243,0 +170739643532,243,0 +170739643582,243,0 +170739643630,243,0 +170739643678,243,0 +170739643727,243,0 +170739643777,244,0 +170739643825,243,0 +170739643873,243,0 +170739643921,244,0 +170739643970,243,0 +170739644018,243,0 +170739644066,244,0 +170739644114,243,0 +170739644162,244,0 +170739644210,243,0 +170739644258,244,0 +170739644308,243,0 +170739644355,244,0 +170739644403,243,0 +170739644451,243,0 +170739644501,243,0 +170739644549,243,0 +170739644597,243,0 +170739644646,244,0 +170739644694,243,0 +170739644742,243,0 +170739644790,243,0 +170739644838,243,0 +170739644886,244,0 +170739644936,243,0 +170739644984,243,0 +170739645033,244,0 +170739645081,243,0 +170739645129,243,0 +170739645177,244,0 +170739645227,243,0 +170739645274,244,0 +170739645322,243,0 +170739645370,243,0 +170739645420,244,0 +170739645469,244,0 +170739645517,244,0 +170739645567,243,0 +170739645615,243,0 +170739645664,244,0 +170739645712,244,0 +170739645760,243,0 +170739645808,244,0 +170739645858,243,0 +170739645907,244,0 +170739645957,244,0 +170739646006,243,0 +170739646054,244,0 +170739646102,244,0 +170739646152,244,0 +170739646201,244,0 +170739646251,243,0 +170739646299,244,0 +170739646347,243,0 +170739646395,243,0 +170739646443,243,0 +170739646491,244,0 +170739646539,244,0 +170739646588,243,0 +170739646636,244,0 +170739646684,243,0 +170739646732,244,0 +170739646780,243,0 +170739646828,244,0 +170739646876,244,0 +170739646924,243,0 +170739646972,243,0 +170739647020,243,0 +170739647068,244,0 +170739647116,244,0 +170739647164,244,0 +170739647211,243,0 +170739647259,244,0 +170739647307,244,0 +170739647355,244,0 +170739647403,244,0 +170739647451,243,0 +170739647499,243,0 +170739647547,244,0 +170739647597,243,0 +170739647645,244,0 +170739647694,243,0 +170739647742,243,0 +170739647792,244,0 +170739647840,243,0 +170739647888,243,0 +170739647936,244,0 +170739647984,244,0 +170739648031,243,0 +170739648079,243,0 +170739648127,243,0 +170739648177,243,0 +170739648226,243,0 +170739648274,244,0 +170739648322,243,0 +170739648370,244,0 +170739648418,243,0 +170739648466,244,0 +170739648514,243,0 +170739648562,244,0 +170739648610,244,0 +170739648658,244,0 +170739648706,244,0 +170739648755,244,0 +170739648803,243,0 +170739648853,244,0 +170739648901,243,0 +170739648949,244,0 +170739648997,243,0 +170739649045,244,0 +170739649093,243,0 +170739649142,244,0 +170739649190,243,0 +170739649240,243,0 +170739649288,244,0 +170739649337,244,0 +170739649387,244,0 +170739649435,243,0 +170739649483,243,0 +170739649530,244,0 +170739649578,244,0 +170739649626,244,0 +170739649674,243,0 +170739649722,243,0 +170739649770,244,0 +170739649818,243,0 +170739649866,243,0 +170739649914,244,0 +170739649961,244,0 +170739650009,244,0 +170739650057,243,0 +170739650105,243,0 +170739650153,243,0 +170739650201,243,0 +170739650250,244,0 +170739650300,244,0 +170739650348,243,0 +170739650396,243,0 +170739650443,244,0 +170739650491,244,0 +170739650541,243,0 +170739650589,243,0 +170739650637,244,0 +170739650685,244,0 +170739650732,243,0 +170739650780,243,0 +170739650828,244,0 +170739650878,244,0 +170739650926,243,0 +170739650974,243,0 +170739651022,244,0 +170739651070,244,0 +170739651118,243,0 +170739651167,244,0 +170739651215,243,0 +170739651265,244,0 +170739651314,244,0 +170739651364,244,0 +170739651413,243,0 +170739651463,243,0 +170739651511,244,0 +170739651559,243,0 +170739651608,243,0 +170739651656,244,0 +170739651704,244,0 +170739651752,244,0 +170739651800,243,0 +170739651848,244,0 +170739651896,243,0 +170739651946,244,0 +170739651995,243,0 +170739652045,243,0 +170739652092,243,0 +170739652142,243,0 +170739652192,244,0 +170739652240,243,0 +170739652288,244,0 +170739652337,243,0 +170739652387,243,0 +170739652435,244,0 +170739652482,244,0 +170739652530,243,0 +170739652578,244,0 +170739652626,244,0 +170739652674,244,0 +170739652722,243,0 +170739652770,243,0 +170739652818,243,0 +170739652867,243,0 +170739652915,244,0 +170739652965,243,0 +170739653013,243,0 +170739653062,244,0 +170739653110,244,0 +170739653158,244,0 +170739653206,244,0 +170739653256,243,0 +170739653304,244,0 +170739653353,243,0 +170739653401,244,0 +170739653449,243,0 +170739653497,244,0 +170739653547,244,0 +170739653595,244,0 +170739653644,244,0 +170739653694,243,0 +170739653742,243,0 +170739653790,244,0 +170739653838,243,0 +170739653886,243,0 +170739653934,243,0 +170739653982,243,0 +170739654030,243,0 +170739654079,243,0 +170739654129,243,0 +170739654178,243,0 +170739654228,243,0 +170739654276,243,0 +170739654324,243,0 +170739654373,243,0 +170739654421,243,0 +170739654469,243,0 +170739654517,243,0 +170739654565,243,0 +170739654613,244,0 +170739654663,243,0 +170739654711,243,0 +170739654760,243,0 +170739654808,244,0 +170739654856,243,0 +170739654904,243,0 +170739654954,244,0 +170739655002,243,0 +170739655050,243,0 +170739655098,243,0 +170739655146,243,0 +170739655194,243,0 +170739655242,244,0 +170739655290,244,0 +170739655337,243,0 +170739655385,244,0 +170739655435,243,0 +170739655483,243,0 +170739655531,244,0 +170739655579,243,0 +170739655628,243,0 +170739655676,243,0 +170739655724,244,0 +170739655772,244,0 +170739655820,243,0 +170739655868,243,0 +170739655916,243,0 +170739655964,243,0 +170739656012,244,0 +170739656060,244,0 +170739656109,243,0 +170739656159,243,0 +170739656209,244,0 +170739656257,243,0 +170739656305,243,0 +170739656352,244,0 +170739656402,244,0 +170739656450,243,0 +170739656498,243,0 +170739656546,244,0 +170739656595,243,0 +170739656643,244,0 +170739656691,243,0 +170739656739,243,0 +170739656787,243,0 +170739656835,243,0 +170739656885,243,0 +170739656933,244,0 +170739656981,243,0 +170739657029,243,0 +170739657077,243,0 +170739657126,244,0 +170739657176,243,0 +170739657225,243,0 +170739657273,243,0 +170739657323,243,0 +170739657372,243,0 +170739657420,243,0 +170739657470,243,0 +170739657519,243,0 +170739657567,243,0 +170739657617,243,0 +170739657666,243,0 +170739657714,244,0 +170739657764,244,0 +170739657812,244,0 +170739657861,243,0 +170739657911,244,0 +170739657960,244,0 +170739658010,243,0 +170739658059,243,0 +170739658107,244,0 +170739658155,243,0 +170739658205,243,0 +170739658253,243,0 +170739658301,243,0 +170739658350,243,0 +170739658400,243,0 +170739658448,243,0 +170739658496,244,0 +170739658544,244,0 +170739658592,244,0 +170739658640,244,0 +170739658687,243,0 +170739658737,243,0 +170739658785,244,0 +170739658835,244,0 +170739658884,244,0 +170739658932,243,0 +170739658980,243,0 +170739659029,243,0 +170739659079,243,0 +170739659129,244,0 +170739659178,244,0 +170739659228,243,0 +170739659277,244,0 +170739659325,243,0 +170739659373,243,0 +170739659421,244,0 +170739659471,244,0 +170739659520,243,0 +170739659570,244,0 +170739659618,244,0 +170739659667,244,0 +170739659715,244,0 +170739659763,243,0 +170739659811,244,0 +170739659861,243,0 +170739659909,243,0 +170739659958,243,0 +170739660008,243,0 +170739660056,244,0 +170739660103,243,0 +170739660151,244,0 +170739660199,243,0 +170739660249,243,0 +170739660297,243,0 +170739660345,244,0 +170739660393,244,0 +170739660442,243,0 +170739660492,244,0 +170739660540,244,0 +170739660589,243,0 +170739660639,243,0 +170739660687,243,0 +170739660736,243,0 +170739660784,243,0 +170739660832,244,0 +170739660880,243,0 +170739660930,244,0 +170739660978,243,0 +170739661025,243,0 +170739661075,244,0 +170739661123,244,0 +170739661173,243,0 +170739661221,244,0 +170739661269,243,0 +170739661317,243,0 +170739661365,244,0 +170739661412,243,0 +170739661460,243,0 +170739661510,244,0 +170739661559,244,0 +170739661607,244,0 +170739661657,244,0 +170739661705,243,0 +170739661753,243,0 +170739661800,244,0 +170739661850,243,0 +170739661898,243,0 +170739661948,243,0 +170739661996,243,0 +170739662045,243,0 +170739662093,244,0 +170739662143,244,0 +170739662191,244,0 +170739662240,243,0 +170739662288,244,0 +170739662338,244,0 +170739662385,243,0 +170739662435,244,0 +170739662484,244,0 +170739662532,243,0 +170739662580,244,0 +170739662630,244,0 +170739662678,244,0 +170739662726,243,0 +170739662774,244,0 +170739662823,244,0 +170739662871,243,0 +170739662919,243,0 +170739662969,243,0 +170739663017,244,0 +170739663065,244,0 +170739663113,243,0 +170739663161,243,0 +170739663209,243,0 +170739663258,244,0 +170739663306,243,0 +170739663354,244,0 +170739663402,244,0 +170739663452,243,0 +170739663500,243,0 +170739663548,243,0 +170739663597,243,0 +170739663645,244,0 +170739663695,244,0 +170739663742,244,0 +170739663792,244,0 +170739663840,243,0 +170739663890,244,0 +170739663939,243,0 +170739663989,244,0 +170739664037,243,0 +170739664085,243,0 +170739664134,244,0 +170739664182,244,0 +170739664230,243,0 +170739664278,244,0 +170739664328,244,0 +170739664376,243,0 +170739664424,243,0 +170739664471,244,0 +170739664519,243,0 +170739664567,243,0 +170739664617,244,0 +170739664666,244,0 +170739664714,244,0 +170739664762,244,0 +170739664810,243,0 +170739664858,243,0 +170739664906,244,0 +170739664954,243,0 +170739665004,243,0 +170739665052,244,0 +170739665101,243,0 +170739665151,243,0 +170739665199,244,0 +170739665247,244,0 +170739665295,243,0 +170739665344,243,0 +170739665392,244,0 +170739665442,244,0 +170739665491,244,0 +170739665541,244,0 +170739665590,244,0 +170739665638,243,0 +170739665688,244,0 +170739665736,244,0 +170739665785,243,0 +170739665835,244,0 +170739665883,243,0 +170739665931,243,0 +170739665980,244,0 +170739666028,244,0 +170739666076,244,0 +170739666124,244,0 +170739666172,244,0 +170739666220,244,0 +170739666268,244,0 +170739666317,244,0 +170739666365,243,0 +170739666413,243,0 +170739666461,243,0 +170739666509,243,0 +170739666557,244,0 +170739666605,243,0 +170739666655,244,0 +170739666703,243,0 +170739666753,244,0 +170739666801,244,0 +170739666849,243,0 +170739666897,243,0 +170739666945,244,0 +170739666993,243,0 +170739667041,243,0 +170739667088,243,0 +170739667136,243,0 +170739667184,244,0 +170739667232,243,0 +170739667282,244,0 +170739667330,244,0 +170739667378,244,0 +170739667426,244,0 +170739667474,243,0 +170739667523,244,0 +170739667571,244,0 +170739667621,244,0 +170739667669,243,0 +170739667718,244,0 +170739667766,244,0 +170739667816,244,0 +170739667864,243,0 +170739667911,244,0 +170739667961,243,0 +170739668009,243,0 +170739668057,243,0 +170739668105,244,0 +170739668153,244,0 +170739668202,244,0 +170739668252,244,0 +170739668302,244,0 +170739668349,243,0 +170739668397,243,0 +170739668447,243,0 +170739668496,244,0 +170739668544,243,0 +170739668592,243,0 +170739668642,243,0 +170739668690,244,0 +170739668738,244,0 +170739668786,243,0 +170739668834,244,0 +170739668883,243,0 +170739668931,243,0 +170739668979,243,0 +170739669027,244,0 +170739669075,243,0 +170739669123,243,0 +170739669170,243,0 +170739669218,243,0 +170739669266,243,0 +170739669316,244,0 +170739669364,243,0 +170739669413,243,0 +170739669463,243,0 +170739669511,243,0 +170739669559,243,0 +170739669607,243,0 +170739669656,244,0 +170739669706,243,0 +170739669754,243,0 +170739669802,243,0 +170739669851,243,0 +170739669901,243,0 +170739669949,244,0 +170739669998,244,0 +170739670046,244,0 +170739670094,244,0 +170739670142,243,0 +170739670190,243,0 +170739670238,244,0 +170739670288,243,0 +170739670336,243,0 +170739670384,244,0 +170739670431,244,0 +170739670480,244,0 +170739670527,244,0 +170739670575,243,0 +170739670623,243,0 +170739670671,244,0 +170739670719,244,0 +170739670767,244,0 +170739670815,244,0 +170739670863,243,0 +170739670911,243,0 +170739670959,244,0 +170739671007,244,0 +170739671055,243,0 +170739671105,243,0 +170739671154,244,0 +170739671204,244,0 +170739671253,244,0 +170739671301,244,0 +170739671349,243,0 +170739671399,244,0 +170739671447,244,0 +170739671495,243,0 +170739671543,243,0 +170739671592,243,0 +170739671640,243,0 +170739671688,244,0 +170739671736,244,0 +170739671784,244,0 +170739671834,244,0 +170739671883,244,0 +170739671933,244,0 +170739671982,243,0 +170739672032,243,0 +170739672080,244,0 +170739672128,244,0 +170739672177,244,0 +170739672225,243,0 +170739672273,243,0 +170739672321,244,0 +170739672371,244,0 +170739672419,243,0 +170739672468,244,0 +170739672518,243,0 +170739672567,243,0 +170739672615,244,0 +170739672663,244,0 +170739672711,244,0 +170739672759,243,0 +170739672809,244,0 +170739672857,244,0 +170739672905,244,0 +170739672953,244,0 +170739673001,244,0 +170739673050,243,0 +170739673100,243,0 +170739673148,244,0 +170739673197,244,0 +170739673245,243,0 +170739673293,243,0 +170739673343,244,0 +170739673391,243,0 +170739673440,244,0 +170739673488,244,0 +170739673536,243,0 +170739673584,244,0 +170739673632,244,0 +170739673680,244,0 +170739673728,243,0 +170739673777,244,0 +170739673825,244,0 +170739673873,244,0 +170739673921,244,0 +170739673971,244,0 +170739674019,244,0 +170739674067,244,0 +170739674116,244,0 +170739674164,244,0 +170739674214,244,0 +170739674262,244,0 +170739674311,243,0 +170739674359,243,0 +170739674407,244,0 +170739674455,243,0 +170739674503,243,0 +170739674551,244,0 +170739674599,243,0 +170739674647,243,0 +170739674695,244,0 +170739674745,244,0 +170739674794,243,0 +170739674842,244,0 +170739674890,244,0 +170739674940,244,0 +170739674989,244,0 +170739675039,244,0 +170739675088,244,0 +170739675136,243,0 +170739675186,243,0 +170739675234,244,0 +170739675282,244,0 +170739675330,244,0 +170739675379,244,0 +170739675427,244,0 +170739675475,244,0 +170739675523,243,0 +170739675573,244,0 +170739675621,243,0 +170739675669,244,0 +170739675717,244,0 +170739675765,244,0 +170739675813,244,0 +170739675862,244,0 +170739675910,244,0 +170739675958,244,0 +170739676006,244,0 +170739676054,244,0 +170739676102,244,0 +170739676151,244,0 +170739676201,243,0 +170739676249,243,0 +170739676297,243,0 +170739676345,244,0 +170739676394,244,0 +170739676442,244,0 +170739676492,244,0 +170739676540,243,0 +170739676588,243,0 +170739676636,244,0 +170739676684,244,0 +170739676732,243,0 +170739676779,244,0 +170739676829,244,0 +170739676878,243,0 +170739676928,243,0 +170739676976,243,0 +170739677024,244,0 +170739677074,244,0 +170739677122,244,0 +170739677170,243,0 +170739677218,243,0 +170739677265,243,0 +170739677315,243,0 +170739677364,244,0 +170739677412,244,0 +170739677460,244,0 +170739677508,244,0 +170739677558,244,0 +170739677607,244,0 +170739677655,244,0 +170739677705,244,0 +170739677753,244,0 +170739677801,244,0 +170739677850,243,0 +170739677898,244,0 +170739677946,244,0 +170739677996,243,0 +170739678044,244,0 +170739678092,244,0 +170739678141,244,0 +170739678191,244,0 +170739678240,244,0 +170739678288,243,0 +170739678338,243,0 +170739678386,244,0 +170739678434,243,0 +170739678482,244,0 +170739678531,244,0 +170739678581,243,0 +170739678629,243,0 +170739678678,244,0 +170739678726,244,0 +170739678774,244,0 +170739678822,243,0 +170739678870,244,0 +170739678918,244,0 +170739678966,244,0 +170739679015,243,0 +170739679063,244,0 +170739679113,243,0 +170739679161,244,0 +170739679209,244,0 +170739679257,244,0 +170739679305,243,0 +170739679354,244,0 +170739679402,243,0 +170739679452,244,0 +170739679500,244,0 +170739679548,244,0 +170739679596,243,0 +170739679645,244,0 +170739679695,244,0 +170739679743,243,0 +170739679791,243,0 +170739679839,244,0 +170739679887,244,0 +170739679936,244,0 +170739679986,243,0 +170739680034,244,0 +170739680082,244,0 +170739680130,244,0 +170739680178,244,0 +170739680227,244,0 +170739680277,244,0 +170739680325,244,0 +170739680373,244,0 +170739680420,243,0 +170739680470,243,0 +170739680518,243,0 +170739680566,243,0 +170739680614,243,0 +170739680663,244,0 +170739680711,244,0 +170739680759,244,0 +170739680807,244,0 +170739680855,244,0 +170739680903,243,0 +170739680951,244,0 +170739680999,244,0 +170739681049,244,0 +170739681097,243,0 +170739681145,243,0 +170739681192,244,0 +170739681240,244,0 +170739681290,244,0 +170739681338,244,0 +170739681388,244,0 +170739681436,244,0 +170739681483,243,0 +170739681531,244,0 +170739681581,244,0 +170739681629,243,0 +170739681678,243,0 +170739681726,243,0 +170739681776,243,0 +170739681824,244,0 +170739681873,243,0 +170739681923,243,0 +170739681971,243,0 +170739682020,244,0 +170739682068,243,0 +170739682116,244,0 +170739682166,244,0 +170739682214,244,0 +170739682263,244,0 +170739682311,243,0 +170739682361,243,0 +170739682408,244,0 +170739682458,243,0 +170739682508,244,0 +170739682555,244,0 +170739682605,243,0 +170739682653,243,0 +170739682701,244,0 +170739682749,244,0 +170739682797,243,0 +170739682846,244,0 +170739682894,243,0 +170739682944,243,0 +170739682992,243,0 +170739683040,244,0 +170739683088,244,0 +170739683136,244,0 +170739683183,244,0 +170739683233,244,0 +170739683283,243,0 +170739683331,243,0 +170739683379,243,0 +170739683427,243,0 +170739683476,243,0 +170739683524,243,0 +170739683572,243,0 +170739683622,244,0 +170739683671,243,0 +170739683719,243,0 +170739683769,243,0 +170739683816,244,0 +170739683866,244,0 +170739683916,244,0 +170739683965,244,0 +170739684013,243,0 +170739684063,243,0 +170739684111,243,0 +170739684159,243,0 +170739684206,244,0 +170739684254,243,0 +170739684304,243,0 +170739684352,243,0 +170739684400,244,0 +170739684448,244,0 +170739684497,243,0 +170739684547,244,0 +170739684596,243,0 +170739684644,243,0 +170739684692,243,0 +170739684740,243,0 +170739684788,243,0 +170739684838,243,0 +170739684887,243,0 +170739684935,244,0 +170739684983,243,0 +170739685033,243,0 +170739685081,244,0 +170739685129,243,0 +170739685177,244,0 +170739685224,243,0 +170739685272,243,0 +170739685322,244,0 +170739685372,244,0 +170739685419,243,0 +170739685469,243,0 +170739685519,243,0 +170739685566,243,0 +170739685614,243,0 +170739685662,244,0 +170739685710,243,0 +170739685758,243,0 +170739685808,244,0 +170739685857,243,0 +170739685905,243,0 +170739685955,244,0 +170739686003,243,0 +170739686051,243,0 +170739686099,243,0 +170739686147,243,0 +170739686195,243,0 +170739686243,243,0 +170739686290,244,0 +170739686339,243,0 +170739686388,244,0 +170739686438,243,0 +170739686486,244,0 +170739686534,243,0 +170739686582,244,0 +170739686630,243,0 +170739686679,243,0 +170739686727,244,0 +170739686777,243,0 +170739686825,243,0 +170739686872,243,0 +170739686922,244,0 +170739686970,244,0 +170739687018,243,0 +170739687066,244,0 +170739687115,244,0 +170739687163,243,0 +170739687211,244,0 +170739687259,243,0 +170739687309,243,0 +170739687357,244,0 +170739687406,244,0 +170739687454,243,0 +170739687502,243,0 +170739687550,244,0 +170739687600,243,0 +170739687649,243,0 +170739687699,243,0 +170739687747,243,0 +170739687796,244,0 +170739687844,244,0 +170739687894,243,0 +170739687941,243,0 +170739687991,243,0 +170739688039,244,0 +170739688088,244,0 +170739688137,244,0 +170739688184,243,0 +170739688232,244,0 +170739688280,243,0 +170739688328,244,0 +170739688376,244,0 +170739688424,243,0 +170739688474,243,0 +170739688522,243,0 +170739688571,244,0 +170739688620,244,0 +170739688670,243,0 +170739688718,243,0 +170739688767,244,0 +170739688817,244,0 +170739688865,243,0 +170739688913,243,0 +170739688962,243,0 +170739689010,244,0 +170739689058,244,0 +170739689106,243,0 +170739689156,244,0 +170739689204,243,0 +170739689252,244,0 +170739689301,243,0 +170739689349,243,0 +170739689399,243,0 +170739689447,243,0 +170739689495,244,0 +170739689543,243,0 +170739689592,243,0 +170739689642,243,0 +170739689691,244,0 +170739689741,244,0 +170739689789,243,0 +170739689837,243,0 +170739689885,243,0 +170739689933,244,0 +170739689981,244,0 +170739690029,244,0 +170739690078,243,0 +170739690126,244,0 +170739690174,243,0 +170739690222,243,0 +170739690271,243,0 +170739690321,243,0 +170739690369,243,0 +170739690418,243,0 +170739690466,243,0 +170739690516,244,0 +170739690564,243,0 +170739690612,244,0 +170739690660,244,0 +170739690708,243,0 +170739690756,244,0 +170739690805,243,0 +170739690853,243,0 +170739690903,243,0 +170739690951,244,0 +170739691000,244,0 +170739691050,244,0 +170739691098,244,0 +170739691147,243,0 +170739691197,243,0 +170739691245,243,0 +170739691293,243,0 +170739691341,243,0 +170739691389,244,0 +170739691436,244,0 +170739691484,244,0 +170739691534,243,0 +170739691583,243,0 +170739691633,243,0 +170739691681,244,0 +170739691729,243,0 +170739691777,243,0 +170739691825,243,0 +170739691873,243,0 +170739691921,243,0 +170739691969,243,0 +170739692017,243,0 +170739692066,243,0 +170739692116,243,0 +170739692165,243,0 +170739692215,243,0 +170739692263,243,0 +170739692311,244,0 +170739692358,243,0 +170739692406,244,0 +170739692454,243,0 +170739692502,243,0 +170739692550,244,0 +170739692598,244,0 +170739692646,244,0 +170739692694,243,0 +170739692742,243,0 +170739692790,244,0 +170739692838,244,0 +170739692886,243,0 +170739692935,244,0 +170739692983,243,0 +170739693031,243,0 +170739693081,244,0 +170739693128,244,0 +170739693178,243,0 +170739693226,243,0 +170739693276,244,0 +170739693324,243,0 +170739693373,244,0 +170739693423,244,0 +170739693471,244,0 +170739693519,243,0 +170739693567,244,0 +170739693615,243,0 +170739693663,244,0 +170739693711,243,0 +170739693758,243,0 +170739693806,244,0 +170739693854,243,0 +170739693904,244,0 +170739693953,243,0 +170739694001,243,0 +170739694049,244,0 +170739694098,243,0 +170739694146,244,0 +170739694194,244,0 +170739694244,243,0 +170739694292,244,0 +170739694340,244,0 +170739694388,244,0 +170739694436,243,0 +170739694484,243,0 +170739694532,243,0 +170739694579,243,0 +170739694627,243,0 +170739694677,243,0 +170739694725,243,0 +170739694774,243,0 +170739694824,244,0 +170739694872,243,0 +170739694920,243,0 +170739694969,243,0 +170739695017,243,0 +170739695065,243,0 +170739695113,243,0 +170739695161,243,0 +170739695209,243,0 +170739695257,244,0 +170739695305,244,0 +170739695353,243,0 +170739695401,243,0 +170739695449,243,0 +170739695497,244,0 +170739695545,243,0 +170739695593,244,0 +170739695642,243,0 +170739695690,243,0 +170739695738,243,0 +170739695786,244,0 +170739695835,243,0 +170739695883,244,0 +170739695931,243,0 +170739695981,243,0 +170739696029,243,0 +170739696078,243,0 +170739696126,243,0 +170739696174,243,0 +170739696222,243,0 +170739696270,243,0 +170739696318,243,0 +170739696366,243,0 +170739696416,243,0 +170739696464,243,0 +170739696512,243,0 +170739696560,244,0 +170739696608,243,0 +170739696657,244,0 +170739696705,244,0 +170739696753,244,0 +170739696803,243,0 +170739696851,243,0 +170739696898,243,0 +170739696948,243,0 +170739696998,243,0 +170739697045,243,0 +170739697093,244,0 +170739697141,243,0 +170739697191,243,0 +170739697239,243,0 +170739697288,243,0 +170739697336,243,0 +170739697384,243,0 +170739697432,244,0 +170739697482,244,0 +170739697531,243,0 +170739697581,244,0 +170739697629,243,0 +170739697677,243,0 +170739697725,244,0 +170739697773,243,0 +170739697821,243,0 +170739697869,244,0 +170739697917,243,0 +170739697965,243,0 +170739698013,244,0 +170739698062,243,0 +170739698112,243,0 +170739698160,243,0 +170739698208,244,0 +170739698256,243,0 +170739698304,243,0 +170739698353,244,0 +170739698402,243,0 +170739698452,244,0 +170739698502,244,0 +170739698550,244,0 +170739698598,243,0 +170739698647,244,0 +170739698695,243,0 +170739698743,244,0 +170739698791,244,0 +170739698839,243,0 +170739698888,244,0 +170739698936,244,0 +170739698986,244,0 +170739699034,244,0 +170739699082,243,0 +170739699131,244,0 +170739699179,243,0 +170739699229,243,0 +170739699277,243,0 +170739699326,243,0 +170739699374,243,0 +170739699424,243,0 +170739699472,244,0 +170739699520,243,0 +170739699568,244,0 +170739699616,244,0 +170739699664,244,0 +170739699712,243,0 +170739699760,244,0 +170739699808,244,0 +170739699857,244,0 +170739699905,244,0 +170739699953,244,0 +170739700001,244,0 +170739700050,244,0 +170739700099,244,0 +170739700148,243,0 +170739700198,243,0 +170739700247,244,0 +170739700295,244,0 +170739700343,244,0 +170739700391,244,0 +170739700441,244,0 +170739700489,244,0 +170739700537,244,0 +170739700584,243,0 +170739700632,244,0 +170739700680,244,0 +170739700728,243,0 +170739700776,243,0 +170739700826,244,0 +170739700875,244,0 +170739700925,244,0 +170739700974,244,0 +170739701024,244,0 +170739701072,243,0 +170739701120,244,0 +170739701169,244,0 +170739701217,243,0 +170739701267,244,0 +170739701316,244,0 +170739701364,244,0 +170739701414,243,0 +170739701462,244,0 +170739701511,244,0 +170739701561,244,0 +170739701610,244,0 +170739701658,244,0 +170739701706,243,0 +170739701756,244,0 +170739701805,243,0 +170739701853,244,0 +170739701901,243,0 +170739701949,244,0 +170739701999,244,0 +170739702048,244,0 +170739702096,244,0 +170739702144,244,0 +170739702192,244,0 +170739702242,243,0 +170739702290,244,0 +170739702339,244,0 +170739702387,244,0 +170739702435,244,0 +170739702485,244,0 +170739702534,244,0 +170739702582,244,0 +170739702630,244,0 +170739702678,243,0 +170739702726,244,0 +170739702774,243,0 +170739702821,244,0 +170739702869,244,0 +170739702917,244,0 +170739702965,243,0 +170739703015,244,0 +170739703063,244,0 +170739703110,244,0 +170739703158,244,0 +170739703206,244,0 +170739703254,244,0 +170739703304,244,0 +170739703352,244,0 +170739703399,244,0 +170739703447,244,0 +170739703495,244,0 +170739703545,244,0 +170739703593,244,0 +170739703641,244,0 +170739703688,243,0 +170739703736,244,0 +170739703784,244,0 +170739703832,244,0 +170739703882,244,0 +170739703930,244,0 +170739703978,243,0 +170739704027,244,0 +170739704075,244,0 +170739704123,244,0 +170739704171,243,0 +170739704219,244,0 +170739704267,244,0 +170739704315,243,0 +170739704363,244,0 +170739704411,244,0 +170739704459,243,0 +170739704507,244,0 +170739704555,244,0 +170739704604,244,0 +170739704652,244,0 +170739704700,244,0 +170739704750,244,0 +170739704798,243,0 +170739704846,243,0 +170739704894,244,0 +170739704942,244,0 +170739704991,244,0 +170739705039,244,0 +170739705089,244,0 +170739705137,243,0 +170739705185,244,0 +170739705234,244,0 +170739705282,243,0 +170739705330,244,0 +170739705378,243,0 +170739705428,244,0 +170739705476,244,0 +170739705525,244,0 +170739705573,244,0 +170739705623,244,0 +170739705671,243,0 +170739705719,244,0 +170739705767,244,0 +170739705815,244,0 +170739705862,244,0 +170739705912,244,0 +170739705960,244,0 +170739706010,244,0 +170739706059,243,0 +170739706109,244,0 +170739706157,243,0 +170739706206,244,0 +170739706254,244,0 +170739706302,244,0 +170739706350,244,0 +170739706398,244,0 +170739706446,244,0 +170739706494,244,0 +170739706542,243,0 +170739706590,244,0 +170739706638,244,0 +170739706685,244,0 +170739706733,244,0 +170739706781,243,0 +170739706829,243,0 +170739706877,244,0 +170739706925,244,0 +170739706974,243,0 +170739707022,244,0 +170739707070,243,0 +170739707118,244,0 +170739707166,243,0 +170739707214,244,0 +170739707262,243,0 +170739707310,244,0 +170739707357,244,0 +170739707405,243,0 +170739707453,244,0 +170739707501,244,0 +170739707549,244,0 +170739707597,244,0 +170739707645,243,0 +170739707693,243,0 +170739707741,244,0 +170739707789,244,0 +170739707837,244,0 +170739707886,244,0 +170739707934,243,0 +170739707982,244,0 +170739708030,243,0 +170739708078,244,0 +170739708126,243,0 +170739708173,243,0 +170739708223,244,0 +170739708272,244,0 +170739708320,244,0 +170739708368,244,0 +170739708416,244,0 +170739708464,244,0 +170739708512,243,0 +170739708560,243,0 +170739708608,244,0 +170739708656,243,0 +170739708703,244,0 +170739708751,244,0 +170739708799,244,0 +170739708849,243,0 +170739708898,244,0 +170739708946,244,0 +170739708994,244,0 +170739709042,244,0 +170739709090,244,0 +170739709138,244,0 +170739709186,244,0 +170739709234,244,0 +170739709282,244,0 +170739709329,244,0 +170739709377,243,0 +170739709425,244,0 +170739709475,244,0 +170739709523,244,0 +170739709571,244,0 +170739709620,244,0 +170739709668,244,0 +170739709718,244,0 +170739709766,244,0 +170739709814,244,0 +170739709863,244,0 +170739709911,244,0 +170739709959,244,0 +170739710007,244,0 +170739710057,244,0 +170739710105,244,0 +170739710154,243,0 +170739710202,243,0 +170739710250,244,0 +170739710299,244,0 +170739710349,244,0 +170739710397,243,0 +170739710445,244,0 +170739710493,244,0 +170739710542,244,0 +170739710590,244,0 +170739710638,244,0 +170739710686,244,0 +170739710736,244,0 +170739710785,244,0 +170739710833,244,0 +170739710883,243,0 +170739710931,244,0 +170739710979,244,0 +170739711027,244,0 +170739711076,244,0 +170739711124,244,0 +170739711172,244,0 +170739711220,244,0 +170739711268,243,0 +170739711316,244,0 +170739711364,244,0 +170739711412,244,0 +170739711460,244,0 +170739711509,244,0 +170739711557,244,0 +170739711607,244,0 +170739711655,244,0 +170739711704,244,0 +170739711754,244,0 +170739711802,244,0 +170739711850,244,0 +170739711898,244,0 +170739711946,244,0 +170739711995,244,0 +170739712043,244,0 +170739712091,244,0 +170739712139,244,0 +170739712188,244,0 +170739712238,244,0 +170739712286,244,0 +170739712334,244,0 +170739712383,244,0 +170739712431,244,0 +170739712481,244,0 +170739712529,244,0 +170739712577,243,0 +170739712626,244,0 +170739712674,244,0 +170739712722,244,0 +170739712772,243,0 +170739712820,243,0 +170739712869,244,0 +170739712919,244,0 +170739712967,244,0 +170739713015,244,0 +170739713064,244,0 +170739713114,244,0 +170739713162,244,0 +170739713210,244,0 +170739713258,244,0 +170739713306,244,0 +170739713354,244,0 +170739713403,244,0 +170739713451,244,0 +170739713499,244,0 +170739713549,244,0 +170739713597,244,0 +170739713645,244,0 +170739713693,243,0 +170739713741,244,0 +170739713789,244,0 +170739713837,244,0 +170739713886,244,0 +170739713934,244,0 +170739713982,244,0 +170739714031,244,0 +170739714081,244,0 +170739714131,244,0 +170739714178,244,0 +170739714226,244,0 +170739714274,243,0 +170739714322,244,0 +170739714370,244,0 +170739714420,244,0 +170739714468,244,0 +170739714516,244,0 +170739714565,243,0 +170739714613,244,0 +170739714663,244,0 +170739714712,244,0 +170739714760,244,0 +170739714810,244,0 +170739714858,244,0 +170739714907,244,0 +170739714957,244,0 +170739715006,244,0 +170739715054,244,0 +170739715104,244,0 +170739715153,244,0 +170739715203,244,0 +170739715252,244,0 +170739715300,244,0 +170739715350,244,0 +170739715398,244,0 +170739715446,244,0 +170739715494,244,0 +170739715542,244,0 +170739715591,244,0 +170739715641,244,0 +170739715690,244,0 +170739715738,244,0 +170739715788,244,0 +170739715836,244,0 +170739715883,244,0 +170739715932,244,0 +170739715979,244,0 +170739716027,244,0 +170739716075,244,0 +170739716123,244,0 +170739716171,244,0 +170739716219,244,0 +170739716267,244,0 +170739716317,244,0 +170739716366,244,0 +170739716414,244,0 +170739716464,244,0 +170739716512,244,0 +170739716561,244,0 +170739716611,244,0 +170739716659,244,0 +170739716707,244,0 +170739716755,244,0 +170739716804,244,0 +170739716854,244,0 +170739716902,244,0 +170739716950,244,0 +170739716999,244,0 +170739717047,244,0 +170739717097,244,0 +170739717145,244,0 +170739717193,244,0 +170739717241,244,0 +170739717289,244,0 +170739717337,244,0 +170739717385,244,0 +170739717433,244,0 +170739717481,244,0 +170739717529,244,0 +170739717578,244,0 +170739717626,244,0 +170739717674,244,0 +170739717722,244,0 +170739717771,244,0 +170739717819,244,0 +170739717869,244,0 +170739717917,244,0 +170739717965,244,0 +170739718013,244,0 +170739718061,244,0 +170739718110,244,0 +170739718158,243,0 +170739718206,244,0 +170739718254,244,0 +170739718304,244,0 +170739718352,244,0 +170739718401,244,0 +170739718449,243,0 +170739718497,244,0 +170739718545,243,0 +170739718595,244,0 +170739718643,244,0 +170739718691,243,0 +170739718739,244,0 +170739718787,244,0 +170739718835,244,0 +170739718883,244,0 +170739718932,244,0 +170739718980,244,0 +170739719028,244,0 +170739719076,244,0 +170739719124,244,0 +170739719172,244,0 +170739719220,244,0 +170739719268,244,0 +170739719317,243,0 +170739719365,244,0 +170739719413,244,0 +170739719461,244,0 +170739719511,244,0 +170739719560,244,0 +170739719608,244,0 +170739719656,243,0 +170739719706,244,0 +170739719754,244,0 +170739719802,244,0 +170739719851,244,0 +170739719899,244,0 +170739719947,244,0 +170739719995,244,0 diff --git a/laser_value/0208-23.csv b/laser_value/0208-23.csv new file mode 100644 index 0000000..edef15c --- /dev/null +++ b/laser_value/0208-23.csv @@ -0,0 +1,7443 @@ +timestamp,laser_value,event +170739720044,244,0 +170739720092,244,0 +170739720140,244,0 +170739720189,244,0 +170739720239,243,0 +170739720288,244,0 +170739720338,244,0 +170739720387,244,0 +170739720437,244,0 +170739720486,244,0 +170739720536,244,0 +170739720585,244,0 +170739720633,244,0 +170739720681,244,0 +170739720731,244,0 +170739720779,244,0 +170739720827,243,0 +170739720875,244,0 +170739720923,244,0 +170739720970,244,0 +170739721020,244,0 +170739721068,244,0 +170739721116,244,0 +170739721165,244,0 +170739721215,244,0 +170739721264,244,0 +170739721312,244,0 +170739721362,244,0 +170739721411,244,0 +170739721459,244,0 +170739721509,244,0 +170739721557,244,0 +170739721605,244,0 +170739721654,244,0 +170739721702,244,0 +170739721750,244,0 +170739721798,244,0 +170739721846,244,0 +170739721896,244,0 +170739721944,244,0 +170739721993,244,0 +170739722043,244,0 +170739722091,244,0 +170739722140,244,0 +170739722188,244,0 +170739722236,244,0 +170739722284,244,0 +170739722332,244,0 +170739722382,244,0 +170739722430,244,0 +170739722477,244,0 +170739722527,244,0 +170739722576,244,0 +170739722624,243,0 +170739722674,244,0 +170739722723,244,0 +170739722773,244,0 +170739722821,244,0 +170739722869,244,0 +170739722917,244,0 +170739722965,244,0 +170739723013,244,0 +170739723062,244,0 +170739723112,244,0 +170739723161,244,0 +170739723211,244,0 +170739723259,244,0 +170739723308,244,0 +170739723356,244,0 +170739723406,244,0 +170739723454,244,0 +170739723503,244,0 +170739723553,244,0 +170739723601,244,0 +170739723650,244,0 +170739723698,244,0 +170739723746,244,0 +170739723794,244,0 +170739723844,244,0 +170739723892,244,0 +170739723940,244,0 +170739723989,244,0 +170739724037,244,0 +170739724087,244,0 +170739724135,244,0 +170739724183,244,0 +170739724231,244,0 +170739724279,244,0 +170739724327,244,0 +170739724375,244,0 +170739724422,244,0 +170739724472,244,0 +170739724520,244,0 +170739724568,244,0 +170739724618,244,0 +170739724667,244,0 +170739724715,244,0 +170739724764,244,0 +170739724814,244,0 +170739724864,244,0 +170739724912,244,0 +170739724960,244,0 +170739725007,244,0 +170739725055,244,0 +170739725105,244,0 +170739725153,244,0 +170739725201,244,0 +170739725249,244,0 +170739725296,244,0 +170739725344,244,0 +170739725392,244,0 +170739725442,244,0 +170739725491,244,0 +170739725539,244,0 +170739725589,244,0 +170739725637,244,0 +170739725685,244,0 +170739725733,244,0 +170739725781,244,0 +170739725830,244,0 +170739725878,243,0 +170739725928,244,0 +170739725977,243,0 +170739726025,244,0 +170739726075,244,0 +170739726125,244,0 +170739726173,244,0 +170739726221,244,0 +170739726269,244,0 +170739726316,244,0 +170739726364,244,0 +170739726414,244,0 +170739726462,244,0 +170739726510,244,0 +170739726558,244,0 +170739726606,244,0 +170739726654,244,0 +170739726703,244,0 +170739726751,244,0 +170739726799,244,0 +170739726849,244,0 +170739726897,244,0 +170739726945,244,0 +170739726994,244,0 +170739727042,244,0 +170739727090,244,0 +170739727140,244,0 +170739727188,244,0 +170739727236,244,0 +170739727285,244,0 +170739727333,243,0 +170739727383,244,0 +170739727432,244,0 +170739727482,244,0 +170739727530,244,0 +170739727579,244,0 +170739727627,244,0 +170739727675,244,0 +170739727723,244,0 +170739727771,244,0 +170739727821,244,0 +170739727869,244,0 +170739727917,244,0 +170739727966,244,0 +170739728014,244,0 +170739728064,244,0 +170739728113,244,0 +170739728161,244,0 +170739728210,244,0 +170739728258,244,0 +170739728306,244,0 +170739728354,244,0 +170739728402,244,0 +170739728450,244,0 +170739728500,244,0 +170739728549,244,0 +170739728599,244,0 +170739728648,244,0 +170739728696,244,0 +170739728744,244,0 +170739728792,244,0 +170739728842,244,0 +170739728892,244,0 +170739728941,244,0 +170739728991,244,0 +170739729038,244,0 +170739729088,244,0 +170739729138,244,0 +170739729186,244,0 +170739729233,244,0 +170739729283,244,0 +170739729331,244,0 +170739729380,244,0 +170739729430,244,0 +170739729478,244,0 +170739729526,244,0 +170739729574,244,0 +170739729623,244,0 +170739729671,244,0 +170739729719,244,0 +170739729768,244,0 +170739729816,243,0 +170739729864,244,0 +170739729912,244,0 +170739729960,244,0 +170739730008,244,0 +170739730056,244,0 +170739730104,244,0 +170739730152,244,0 +170739730200,244,0 +170739730247,244,0 +170739730297,244,0 +170739730345,244,0 +170739730393,244,0 +170739730441,244,0 +170739730488,244,0 +170739730538,244,0 +170739730586,244,0 +170739730634,244,0 +170739730682,244,0 +170739730729,244,0 +170739730777,244,0 +170739730825,244,0 +170739730875,244,0 +170739730923,244,0 +170739730970,243,0 +170739731018,244,0 +170739731066,243,0 +170739731114,244,0 +170739731164,244,0 +170739731213,244,0 +170739731263,244,0 +170739731310,244,0 +170739731360,244,0 +170739731408,244,0 +170739731458,244,0 +170739731506,244,0 +170739731554,244,0 +170739731603,244,0 +170739731651,243,0 +170739731699,244,0 +170739731747,244,0 +170739731795,244,0 +170739731844,244,0 +170739731892,244,0 +170739731942,244,0 +170739731991,244,0 +170739732041,244,0 +170739732090,244,0 +170739732138,244,0 +170739732186,244,0 +170739732236,244,0 +170739732284,244,0 +170739732332,244,0 +170739732380,244,0 +170739732429,244,0 +170739732477,244,0 +170739732527,244,0 +170739732575,244,0 +170739732624,244,0 +170739732672,244,0 +170739732720,244,0 +170739732769,244,0 +170739732817,244,0 +170739732867,244,0 +170739732915,244,0 +170739732963,244,0 +170739733011,244,0 +170739733060,244,0 +170739733110,244,0 +170739733158,244,0 +170739733206,244,0 +170739733254,244,0 +170739733303,244,0 +170739733351,244,0 +170739733401,244,0 +170739733449,244,0 +170739733496,244,0 +170739733544,244,0 +170739733592,244,0 +170739733640,243,0 +170739733688,244,0 +170739733736,244,0 +170739733784,244,0 +170739733831,244,0 +170739733879,244,0 +170739733927,244,0 +170739733977,244,0 +170739734024,244,0 +170739734072,244,0 +170739734120,244,0 +170739734170,244,0 +170739734218,244,0 +170739734265,244,0 +170739734313,244,0 +170739734361,244,0 +170739734409,244,0 +170739734457,244,0 +170739734507,244,0 +170739734556,244,0 +170739734606,243,0 +170739734654,244,0 +170739734701,244,0 +170739734749,244,0 +170739734799,244,0 +170739734847,244,0 +170739734895,244,0 +170739734943,244,0 +170739734992,244,0 +170739735040,244,0 +170739735090,244,0 +170739735138,244,0 +170739735187,244,0 +170739735235,244,0 +170739735283,244,0 +170739735331,244,0 +170739735381,244,0 +170739735429,244,0 +170739735478,244,0 +170739735526,244,0 +170739735576,244,0 +170739735624,244,0 +170739735673,244,0 +170739735721,244,0 +170739735769,244,0 +170739735817,244,0 +170739735867,244,0 +170739735914,244,0 +170739735962,244,0 +170739736012,244,0 +170739736060,244,0 +170739736109,244,0 +170739736157,244,0 +170739736205,244,0 +170739736253,244,0 +170739736301,244,0 +170739736349,244,0 +170739736397,244,0 +170739736445,244,0 +170739736493,244,0 +170739736541,244,0 +170739736590,244,0 +170739736638,244,0 +170739736686,244,0 +170739736735,244,0 +170739736783,244,0 +170739736831,244,0 +170739736879,244,0 +170739736927,244,0 +170739736975,244,0 +170739737023,244,0 +170739737071,244,0 +170739737118,244,0 +170739737166,244,0 +170739737214,244,0 +170739737262,244,0 +170739737310,244,0 +170739737358,244,0 +170739737406,244,0 +170739737454,244,0 +170739737501,244,0 +170739737549,244,0 +170739737597,244,0 +170739737645,244,0 +170739737695,244,0 +170739737743,244,0 +170739737791,244,0 +170739737839,244,0 +170739737888,244,0 +170739737936,244,0 +170739737984,244,0 +170739738034,244,0 +170739738081,244,0 +170739738131,244,0 +170739738179,244,0 +170739738227,244,0 +170739738275,244,0 +170739738324,244,0 +170739738374,244,0 +170739738421,244,0 +170739738469,244,0 +170739738519,244,0 +170739738567,244,0 +170739738615,244,0 +170739738664,244,0 +170739738714,244,0 +170739738763,244,0 +170739738811,244,0 +170739738859,244,0 +170739738907,244,0 +170739738957,244,0 +170739739006,244,0 +170739739054,244,0 +170739739102,244,0 +170739739150,244,0 +170739739198,244,0 +170739739245,244,0 +170739739295,244,0 +170739739345,244,0 +170739739393,244,0 +170739739440,244,0 +170739739488,244,0 +170739739538,244,0 +170739739586,244,0 +170739739635,244,0 +170739739683,244,0 +170739739731,244,0 +170739739779,244,0 +170739739829,244,0 +170739739878,244,0 +170739739926,244,0 +170739739976,244,0 +170739740024,244,0 +170739740073,244,0 +170739740121,244,0 +170739740169,244,0 +170739740217,244,0 +170739740265,244,0 +170739740313,244,0 +170739740362,244,0 +170739740410,244,0 +170739740458,244,0 +170739740506,244,0 +170739740554,244,0 +170739740602,244,0 +170739740650,244,0 +170739740698,244,0 +170739740746,244,0 +170739740794,244,0 +170739740843,244,0 +170739740891,244,0 +170739740939,244,0 +170739740987,244,0 +170739741037,244,0 +170739741085,244,0 +170739741133,244,0 +170739741181,244,0 +170739741229,244,0 +170739741277,244,0 +170739741325,244,0 +170739741373,244,0 +170739741422,244,0 +170739741472,244,0 +170739741520,244,0 +170739741569,244,0 +170739741617,244,0 +170739741665,244,0 +170739741713,244,0 +170739741761,244,0 +170739741809,244,0 +170739741858,244,0 +170739741906,244,0 +170739741956,244,0 +170739742004,244,0 +170739742053,244,0 +170739742103,244,0 +170739742151,244,0 +170739742200,244,0 +170739742250,244,0 +170739742298,244,0 +170739742347,244,0 +170739742395,244,0 +170739742443,244,0 +170739742493,244,0 +170739742541,244,0 +170739742590,244,0 +170739742640,244,0 +170739742688,244,0 +170739742737,244,0 +170739742787,244,0 +170739742836,244,0 +170739742884,244,0 +170739742932,244,0 +170739742980,244,0 +170739743030,244,0 +170739743078,244,0 +170739743127,244,0 +170739743175,244,0 +170739743223,244,0 +170739743271,244,0 +170739743321,244,0 +170739743370,244,0 +170739743418,244,0 +170739743468,244,0 +170739743516,244,0 +170739743564,244,0 +170739743612,244,0 +170739743660,244,0 +170739743708,244,0 +170739743756,244,0 +170739743805,244,0 +170739743853,244,0 +170739743901,244,0 +170739743949,245,0 +170739743997,244,0 +170739744046,244,0 +170739744094,244,0 +170739744144,244,0 +170739744192,243,0 +170739744241,244,0 +170739744289,244,0 +170739744337,244,0 +170739744385,244,0 +170739744433,244,0 +170739744483,244,0 +170739744531,244,0 +170739744579,244,0 +170739744627,244,0 +170739744674,244,0 +170739744724,244,0 +170739744772,244,0 +170739744820,244,0 +170739744868,244,0 +170739744915,244,0 +170739744963,244,0 +170739745013,244,0 +170739745062,244,0 +170739745110,244,0 +170739745158,244,0 +170739745206,244,0 +170739745254,244,0 +170739745302,244,0 +170739745350,244,0 +170739745398,244,0 +170739745446,244,0 +170739745495,244,0 +170739745545,244,0 +170739745593,244,0 +170739745641,244,0 +170739745689,244,0 +170739745737,244,0 +170739745784,244,0 +170739745832,244,0 +170739745880,244,0 +170739745928,244,0 +170739745978,244,0 +170739746027,244,0 +170739746075,244,0 +170739746123,244,0 +170739746171,244,0 +170739746219,244,0 +170739746267,244,0 +170739746315,244,0 +170739746365,244,0 +170739746414,244,0 +170739746462,244,0 +170739746510,244,0 +170739746558,244,0 +170739746606,244,0 +170739746654,244,0 +170739746702,244,0 +170739746749,244,0 +170739746797,244,0 +170739746845,244,0 +170739746893,244,0 +170739746941,244,0 +170739746989,244,0 +170739747037,244,0 +170739747085,244,0 +170739747133,244,0 +170739747180,244,0 +170739747228,244,0 +170739747276,244,0 +170739747324,244,0 +170739747372,244,0 +170739747420,244,0 +170739747468,244,0 +170739747516,244,0 +170739747564,244,0 +170739747612,244,0 +170739747661,244,0 +170739747709,244,0 +170739747757,244,0 +170739747805,244,0 +170739747852,244,0 +170739747900,244,0 +170739747948,244,0 +170739747996,244,0 +170739748044,244,0 +170739748092,244,0 +170739748140,244,0 +170739748188,244,0 +170739748235,244,0 +170739748283,244,0 +170739748331,244,0 +170739748379,244,0 +170739748427,244,0 +170739748477,244,0 +170739748524,243,0 +170739748572,244,0 +170739748620,244,0 +170739748668,244,0 +170739748716,244,0 +170739748764,244,0 +170739748812,244,0 +170739748859,244,0 +170739748907,244,0 +170739748955,244,0 +170739749003,244,0 +170739749051,244,0 +170739749099,244,0 +170739749148,244,0 +170739749196,244,0 +170739749244,244,0 +170739749292,244,0 +170739749340,244,0 +170739749388,244,0 +170739749436,244,0 +170739749484,244,0 +170739749531,244,0 +170739749580,244,0 +170739749628,244,0 +170739749677,244,0 +170739749725,244,0 +170739749773,244,0 +170739749821,244,0 +170739749869,244,0 +170739749917,244,0 +170739749966,244,0 +170739750014,244,0 +170739750064,244,0 +170739750113,244,0 +170739750161,244,0 +170739750209,244,0 +170739750259,244,0 +170739750308,244,0 +170739750358,244,0 +170739750407,244,0 +170739750455,244,0 +170739750505,244,0 +170739750553,244,0 +170739750602,244,0 +170739750652,244,0 +170739750700,244,0 +170739750749,244,0 +170739750799,244,0 +170739750848,244,0 +170739750896,244,0 +170739750944,244,0 +170739750994,244,0 +170739751042,244,0 +170739751090,244,0 +170739751139,244,0 +170739751187,244,0 +170739751235,244,0 +170739751283,244,0 +170739751331,244,0 +170739751379,244,0 +170739751427,244,0 +170739751475,244,0 +170739751523,244,0 +170739751571,244,0 +170739751619,244,0 +170739751667,244,0 +170739751715,244,0 +170739751764,244,0 +170739751812,244,0 +170739751860,244,0 +170739751908,244,0 +170739751956,244,0 +170739752004,244,0 +170739752052,244,0 +170739752101,244,0 +170739752151,244,0 +170739752199,244,0 +170739752247,244,0 +170739752295,244,0 +170739752343,244,0 +170739752392,244,0 +170739752442,244,0 +170739752490,244,0 +170739752538,244,0 +170739752587,244,0 +170739752635,244,0 +170739752683,244,0 +170739752731,244,0 +170739752779,244,0 +170739752827,244,0 +170739752877,244,0 +170739752925,244,0 +170739752974,244,0 +170739753024,244,0 +170739753072,244,0 +170739753121,244,0 +170739753171,244,0 +170739753219,244,0 +170739753267,244,0 +170739753315,244,0 +170739753364,244,0 +170739753412,244,0 +170739753461,244,0 +170739753509,244,0 +170739753557,244,0 +170739753605,244,0 +170739753653,244,0 +170739753701,244,0 +170739753749,244,0 +170739753797,244,0 +170739753845,244,0 +170739753893,244,0 +170739753940,244,0 +170739753988,244,0 +170739754036,244,0 +170739754084,244,0 +170739754132,244,0 +170739754182,244,0 +170739754230,244,0 +170739754277,244,0 +170739754327,244,0 +170739754376,244,0 +170739754424,244,0 +170739754474,244,0 +170739754522,244,0 +170739754571,244,0 +170739754621,244,0 +170739754670,244,0 +170739754718,244,0 +170739754766,244,0 +170739754814,244,0 +170739754863,244,0 +170739754911,244,0 +170739754961,244,0 +170739755009,244,0 +170739755057,244,0 +170739755105,244,0 +170739755152,244,0 +170739755202,244,0 +170739755251,243,0 +170739755299,244,0 +170739755347,244,0 +170739755395,244,0 +170739755443,243,0 +170739755493,244,0 +170739755541,244,0 +170739755589,244,0 +170739755638,244,0 +170739755686,244,0 +170739755734,244,0 +170739755784,244,0 +170739755833,244,0 +170739755883,244,0 +170739755932,244,0 +170739755980,244,0 +170739756030,244,0 +170739756078,244,0 +170739756127,244,0 +170739756177,244,0 +170739756227,244,0 +170739756275,244,0 +170739756323,244,0 +170739756372,244,0 +170739756421,244,0 +170739756469,244,0 +170739756517,244,0 +170739756567,244,0 +170739756615,244,0 +170739756663,244,0 +170739756712,244,0 +170739756762,244,0 +170739756810,244,0 +170739756858,244,0 +170739756906,244,0 +170739756955,244,0 +170739757003,244,0 +170739757051,244,0 +170739757101,244,0 +170739757149,243,0 +170739757197,244,0 +170739757245,244,0 +170739757294,244,0 +170739757342,244,0 +170739757390,244,0 +170739757438,244,0 +170739757487,244,0 +170739757535,244,0 +170739757585,244,0 +170739757633,244,0 +170739757681,244,0 +170739757730,244,0 +170739757778,244,0 +170739757826,244,0 +170739757876,244,0 +170739757924,244,0 +170739757973,244,0 +170739758021,244,0 +170739758071,244,0 +170739758120,244,0 +170739758168,244,0 +170739758216,244,0 +170739758264,244,0 +170739758314,244,0 +170739758363,244,0 +170739758413,244,0 +170739758462,244,0 +170739758510,244,0 +170739758558,244,0 +170739758606,244,0 +170739758654,244,0 +170739758702,244,0 +170739758750,244,0 +170739758798,244,0 +170739758846,244,0 +170739758894,244,0 +170739758944,244,0 +170739758991,243,0 +170739759039,244,0 +170739759087,244,0 +170739759137,244,0 +170739759185,244,0 +170739759233,244,0 +170739759281,244,0 +170739759330,244,0 +170739759380,244,0 +170739759428,244,0 +170739759476,244,0 +170739759525,244,0 +170739759575,244,0 +170739759624,244,0 +170739759672,244,0 +170739759722,244,0 +170739759770,244,0 +170739759819,244,0 +170739759867,244,0 +170739759917,244,0 +170739759965,244,0 +170739760013,244,0 +170739760061,244,0 +170739760109,244,0 +170739760157,244,0 +170739760205,244,0 +170739760254,244,0 +170739760302,244,0 +170739760350,244,0 +170739760399,244,0 +170739760449,244,0 +170739760498,244,0 +170739760548,244,0 +170739760596,244,0 +170739760644,244,0 +170739760693,244,0 +170739760741,244,0 +170739760789,244,0 +170739760839,244,0 +170739760887,244,0 +170739760936,244,0 +170739760986,244,0 +170739761034,244,0 +170739761082,244,0 +170739761130,244,0 +170739761178,244,0 +170739761227,244,0 +170739761275,244,0 +170739761323,244,0 +170739761371,244,0 +170739761419,244,0 +170739761467,244,0 +170739761516,244,0 +170739761564,244,0 +170739761612,244,0 +170739761660,244,0 +170739761708,244,0 +170739761756,244,0 +170739761804,244,0 +170739761852,244,0 +170739761900,244,0 +170739761950,244,0 +170739761997,244,0 +170739762045,244,0 +170739762093,244,0 +170739762143,244,0 +170739762191,244,0 +170739762239,244,0 +170739762288,244,0 +170739762336,244,0 +170739762384,244,0 +170739762432,244,0 +170739762480,244,0 +170739762528,244,0 +170739762576,244,0 +170739762626,244,0 +170739762675,244,0 +170739762725,244,0 +170739762773,244,0 +170739762822,244,0 +170739762870,244,0 +170739762918,244,0 +170739762966,244,0 +170739763014,244,0 +170739763062,244,0 +170739763110,244,0 +170739763157,244,0 +170739763205,244,0 +170739763253,244,0 +170739763301,244,0 +170739763349,244,0 +170739763397,244,0 +170739763445,244,0 +170739763493,244,0 +170739763540,244,0 +170739763590,244,0 +170739763638,244,0 +170739763686,244,0 +170739763734,244,0 +170739763783,244,0 +170739763831,244,0 +170739763881,244,0 +170739763930,244,0 +170739763978,244,0 +170739764026,244,0 +170739764076,244,0 +170739764124,244,0 +170739764172,244,0 +170739764219,244,0 +170739764267,244,0 +170739764315,244,0 +170739764363,244,0 +170739764411,244,0 +170739764460,244,0 +170739764508,244,0 +170739764556,244,0 +170739764604,244,0 +170739764654,244,0 +170739764701,244,0 +170739764751,244,0 +170739764800,244,0 +170739764848,244,0 +170739764896,244,0 +170739764944,244,0 +170739764992,244,0 +170739765040,244,0 +170739765088,244,0 +170739765136,244,0 +170739765184,244,0 +170739765232,244,0 +170739765279,244,0 +170739765327,244,0 +170739765375,244,0 +170739765423,244,0 +170739765471,244,0 +170739765519,244,0 +170739765568,244,0 +170739765616,244,0 +170739765664,244,0 +170739765712,244,0 +170739765760,244,0 +170739765808,244,0 +170739765857,244,0 +170739765905,244,0 +170739765953,244,0 +170739766001,244,0 +170739766049,244,0 +170739766097,244,0 +170739766145,244,0 +170739766192,244,0 +170739766240,244,0 +170739766288,244,0 +170739766336,244,0 +170739766384,244,0 +170739766432,244,0 +170739766480,244,0 +170739766528,244,0 +170739766576,244,0 +170739766624,244,0 +170739766671,244,0 +170739766719,244,0 +170739766767,244,0 +170739766817,244,0 +170739766866,244,0 +170739766914,244,0 +170739766964,244,0 +170739767012,244,0 +170739767060,244,0 +170739767109,244,0 +170739767159,244,0 +170739767206,244,0 +170739767254,244,0 +170739767302,244,0 +170739767350,244,0 +170739767400,244,0 +170739767448,244,0 +170739767496,244,0 +170739767545,244,0 +170739767595,244,0 +170739767643,244,0 +170739767692,244,0 +170739767742,244,0 +170739767790,244,0 +170739767838,244,0 +170739767886,244,0 +170739767934,244,0 +170739767982,244,0 +170739768031,244,0 +170739768079,244,0 +170739768129,244,0 +170739768177,244,0 +170739768224,244,0 +170739768272,244,0 +170739768322,244,0 +170739768370,244,0 +170739768418,244,0 +170739768466,244,0 +170739768514,244,0 +170739768562,244,0 +170739768610,244,0 +170739768658,243,0 +170739768706,244,0 +170739768754,244,0 +170739768803,244,0 +170739768851,244,0 +170739768899,244,0 +170739768949,244,0 +170739768997,244,0 +170739769044,244,0 +170739769094,244,0 +170739769142,244,0 +170739769190,244,0 +170739769238,244,0 +170739769285,244,0 +170739769333,244,0 +170739769383,244,0 +170739769432,244,0 +170739769480,244,0 +170739769528,244,0 +170739769576,244,0 +170739769624,244,0 +170739769672,244,0 +170739769720,244,0 +170739769768,244,0 +170739769816,244,0 +170739769864,244,0 +170739769912,244,0 +170739769960,244,0 +170739770008,244,0 +170739770057,244,0 +170739770105,244,0 +170739770153,244,0 +170739770201,244,0 +170739770249,244,0 +170739770297,244,0 +170739770345,244,0 +170739770393,244,0 +170739770441,244,0 +170739770488,244,0 +170739770536,244,0 +170739770584,244,0 +170739770634,244,0 +170739770682,244,0 +170739770730,244,0 +170739770778,244,0 +170739770826,244,0 +170739770874,244,0 +170739770923,244,0 +170739770971,244,0 +170739771019,244,0 +170739771069,244,0 +170739771116,244,0 +170739771164,244,0 +170739771212,244,0 +170739771260,244,0 +170739771308,244,0 +170739771356,244,0 +170739771404,244,0 +170739771454,244,0 +170739771503,244,0 +170739771551,244,0 +170739771599,244,0 +170739771647,244,0 +170739771695,244,0 +170739771743,244,0 +170739771791,244,0 +170739771839,244,0 +170739771887,244,0 +170739771935,244,0 +170739771984,244,0 +170739772032,244,0 +170739772080,244,0 +170739772128,244,0 +170739772178,244,0 +170739772226,244,0 +170739772275,244,0 +170739772323,244,0 +170739772371,244,0 +170739772419,244,0 +170739772469,244,0 +170739772517,244,0 +170739772565,244,0 +170739772613,244,0 +170739772661,244,0 +170739772709,244,0 +170739772757,244,0 +170739772805,244,0 +170739772854,244,0 +170739772904,244,0 +170739772953,244,0 +170739773001,244,0 +170739773049,244,0 +170739773097,244,0 +170739773147,244,0 +170739773195,244,0 +170739773242,244,0 +170739773290,245,0 +170739773340,244,0 +170739773388,244,0 +170739773436,244,0 +170739773485,244,0 +170739773535,244,0 +170739773583,244,0 +170739773631,244,0 +170739773678,244,0 +170739773728,244,0 +170739773776,244,0 +170739773824,244,0 +170739773873,244,0 +170739773923,244,0 +170739773973,244,0 +170739774022,244,0 +170739774071,244,0 +170739774119,244,0 +170739774169,244,0 +170739774219,244,0 +170739774268,244,0 +170739774318,244,0 +170739774366,244,0 +170739774414,244,0 +170739774462,244,0 +170739774509,244,0 +170739774557,244,0 +170739774605,244,0 +170739774653,244,0 +170739774701,244,0 +170739774749,244,0 +170739774797,244,0 +170739774845,244,0 +170739774893,244,0 +170739774941,243,0 +170739774989,244,0 +170739775037,244,0 +170739775085,244,0 +170739775133,244,0 +170739775183,244,0 +170739775232,244,0 +170739775282,244,0 +170739775330,244,0 +170739775378,244,0 +170739775427,244,0 +170739775477,244,0 +170739775525,244,0 +170739775574,244,0 +170739775622,244,0 +170739775670,244,0 +170739775720,244,0 +170739775768,244,0 +170739775816,244,0 +170739775864,244,0 +170739775913,244,0 +170739775961,244,0 +170739776011,244,0 +170739776059,244,0 +170739776108,244,0 +170739776156,244,0 +170739776204,244,0 +170739776252,244,0 +170739776302,244,0 +170739776351,244,0 +170739776399,244,0 +170739776447,244,0 +170739776497,244,0 +170739776546,244,0 +170739776594,244,0 +170739776642,244,0 +170739776692,244,0 +170739776740,244,0 +170739776789,244,0 +170739776837,244,0 +170739776885,244,0 +170739776933,244,0 +170739776981,244,0 +170739777030,244,0 +170739777078,244,0 +170739777126,244,0 +170739777174,244,0 +170739777224,244,0 +170739777272,244,0 +170739777320,244,0 +170739777368,244,0 +170739777416,244,0 +170739777464,244,0 +170739777512,244,0 +170739777560,244,0 +170739777608,244,0 +170739777657,244,0 +170739777705,244,0 +170739777753,244,0 +170739777803,244,0 +170739777851,244,0 +170739777900,244,0 +170739777948,244,0 +170739777996,244,0 +170739778044,244,0 +170739778094,244,0 +170739778142,244,0 +170739778189,244,0 +170739778237,244,0 +170739778285,244,0 +170739778335,244,0 +170739778383,244,0 +170739778431,244,0 +170739778480,244,0 +170739778530,244,0 +170739778578,244,0 +170739778626,244,0 +170739778674,244,0 +170739778722,244,0 +170739778771,244,0 +170739778819,244,0 +170739778869,244,0 +170739778917,244,0 +170739778965,244,0 +170739779013,244,0 +170739779062,244,0 +170739779110,244,0 +170739779158,244,0 +170739779206,244,0 +170739779254,244,0 +170739779302,244,0 +170739779350,244,0 +170739779398,244,0 +170739779448,244,0 +170739779497,244,0 +170739779545,244,0 +170739779595,243,0 +170739779643,244,0 +170739779691,244,0 +170739779739,244,0 +170739779787,243,0 +170739779836,244,0 +170739779886,244,0 +170739779933,244,0 +170739779981,244,0 +170739780030,244,0 +170739780079,244,0 +170739780127,244,0 +170739780175,244,0 +170739780223,244,0 +170739780271,244,0 +170739780319,244,0 +170739780367,244,0 +170739780415,244,0 +170739780464,244,0 +170739780512,244,0 +170739780560,244,0 +170739780608,244,0 +170739780656,244,0 +170739780704,244,0 +170739780752,244,0 +170739780801,243,0 +170739780849,244,0 +170739780897,244,0 +170739780945,244,0 +170739780993,244,0 +170739781041,244,0 +170739781090,244,0 +170739781138,244,0 +170739781187,244,0 +170739781237,244,0 +170739781285,244,0 +170739781333,244,0 +170739781381,244,0 +170739781429,244,0 +170739781477,244,0 +170739781527,244,0 +170739781574,244,0 +170739781622,244,0 +170739781670,244,0 +170739781718,244,0 +170739781766,244,0 +170739781816,244,0 +170739781865,244,0 +170739781913,244,0 +170739781961,244,0 +170739782009,244,0 +170739782057,244,0 +170739782105,244,0 +170739782155,244,0 +170739782203,244,0 +170739782251,244,0 +170739782299,244,0 +170739782348,244,0 +170739782398,244,0 +170739782447,244,0 +170739782497,244,0 +170739782546,244,0 +170739782594,244,0 +170739782642,244,0 +170739782690,244,0 +170739782739,244,0 +170739782787,244,0 +170739782837,244,0 +170739782887,244,0 +170739782934,244,0 +170739782982,244,0 +170739783032,244,0 +170739783081,244,0 +170739783129,244,0 +170739783177,244,0 +170739783225,244,0 +170739783273,244,0 +170739783321,244,0 +170739783370,244,0 +170739783420,244,0 +170739783468,244,0 +170739783517,244,0 +170739783567,244,0 +170739783616,244,0 +170739783664,244,0 +170739783712,244,0 +170739783762,244,0 +170739783810,244,0 +170739783859,244,0 +170739783907,244,0 +170739783955,244,0 +170739784003,244,0 +170739784053,244,0 +170739784102,244,0 +170739784150,244,0 +170739784198,244,0 +170739784246,244,0 +170739784294,244,0 +170739784342,244,0 +170739784390,244,0 +170739784439,244,0 +170739784488,244,0 +170739784537,244,0 +170739784585,245,0 +170739784633,244,0 +170739784681,244,0 +170739784729,244,0 +170739784777,244,0 +170739784826,244,0 +170739784876,244,0 +170739784924,244,0 +170739784972,244,0 +170739785022,244,0 +170739785070,244,0 +170739785117,244,0 +170739785165,244,0 +170739785213,244,0 +170739785261,244,0 +170739785309,244,0 +170739785357,244,0 +170739785405,244,0 +170739785453,244,0 +170739785501,245,0 +170739785549,244,0 +170739785599,244,0 +170739785647,244,0 +170739785695,244,0 +170739785743,244,0 +170739785791,244,0 +170739785839,244,0 +170739785887,244,0 +170739785935,244,0 +170739785983,244,0 +170739786032,244,0 +170739786080,244,0 +170739786130,244,0 +170739786179,244,0 +170739786229,244,0 +170739786278,244,0 +170739786328,244,0 +170739786377,244,0 +170739786425,244,0 +170739786473,244,0 +170739786521,244,0 +170739786571,244,0 +170739786620,244,0 +170739786670,244,0 +170739786718,244,0 +170739786766,244,0 +170739786814,244,0 +170739786862,244,0 +170739786910,244,0 +170739786958,244,0 +170739787005,244,0 +170739787053,244,0 +170739787101,244,0 +170739787149,244,0 +170739787197,244,0 +170739787245,244,0 +170739787293,244,0 +170739787341,244,0 +170739787389,244,0 +170739787436,244,0 +170739787484,244,0 +170739787532,244,0 +170739787580,244,0 +170739787628,244,0 +170739787676,244,0 +170739787724,244,0 +170739787772,244,0 +170739787820,244,0 +170739787869,244,0 +170739787917,244,0 +170739787965,244,0 +170739788013,244,0 +170739788062,244,0 +170739788110,244,0 +170739788158,244,0 +170739788206,244,0 +170739788254,244,0 +170739788302,244,0 +170739788350,244,0 +170739788400,244,0 +170739788449,244,0 +170739788497,244,0 +170739788545,244,0 +170739788595,244,0 +170739788643,244,0 +170739788691,244,0 +170739788740,244,0 +170739788788,244,0 +170739788838,244,0 +170739788886,244,0 +170739788933,244,0 +170739788981,244,0 +170739789029,244,0 +170739789077,244,0 +170739789125,244,0 +170739789175,244,0 +170739789223,244,0 +170739789272,244,0 +170739789320,244,0 +170739789370,244,0 +170739789419,244,0 +170739789467,244,0 +170739789515,244,0 +170739789563,244,0 +170739789611,244,0 +170739789659,244,0 +170739789709,244,0 +170739789757,244,0 +170739789806,244,0 +170739789856,244,0 +170739789904,244,0 +170739789951,244,0 +170739790001,244,0 +170739790049,244,0 +170739790097,244,0 +170739790146,244,0 +170739790196,244,0 +170739790244,245,0 +170739790292,244,0 +170739790340,244,0 +170739790388,244,0 +170739790436,244,0 +170739790485,244,0 +170739790535,244,0 +170739790583,244,0 +170739790631,244,0 +170739790679,244,0 +170739790728,243,0 +170739790776,244,0 +170739790824,244,0 +170739790872,244,0 +170739790920,244,0 +170739790968,244,0 +170739791015,244,0 +170739791063,244,0 +170739791111,244,0 +170739791159,244,0 +170739791207,244,0 +170739791255,244,0 +170739791303,244,0 +170739791351,244,0 +170739791400,244,0 +170739791448,244,0 +170739791496,244,0 +170739791544,244,0 +170739791592,244,0 +170739791641,244,0 +170739791689,244,0 +170739791737,244,0 +170739791785,244,0 +170739791833,244,0 +170739791881,244,0 +170739791929,244,0 +170739791977,244,0 +170739792024,244,0 +170739792072,244,0 +170739792120,244,0 +170739792168,244,0 +170739792216,244,0 +170739792264,244,0 +170739792312,244,0 +170739792360,244,0 +170739792408,244,0 +170739792456,244,0 +170739792505,244,0 +170739792553,244,0 +170739792601,244,0 +170739792649,244,0 +170739792696,244,0 +170739792746,244,0 +170739792794,244,0 +170739792842,244,0 +170739792890,243,0 +170739792938,244,0 +170739792985,244,0 +170739793033,244,0 +170739793081,244,0 +170739793129,244,0 +170739793177,244,0 +170739793227,244,0 +170739793276,244,0 +170739793324,244,0 +170739793372,244,0 +170739793420,244,0 +170739793468,244,0 +170739793518,244,0 +170739793566,244,0 +170739793614,244,0 +170739793663,244,0 +170739793711,244,0 +170739793759,244,0 +170739793807,244,0 +170739793855,244,0 +170739793903,244,0 +170739793951,244,0 +170739793999,244,0 +170739794047,244,0 +170739794095,244,0 +170739794143,244,0 +170739794192,244,0 +170739794240,244,0 +170739794288,244,0 +170739794336,244,0 +170739794384,244,0 +170739794432,244,0 +170739794480,244,0 +170739794528,244,0 +170739794576,244,0 +170739794624,244,0 +170739794672,244,0 +170739794720,244,0 +170739794768,244,0 +170739794815,244,0 +170739794863,244,0 +170739794911,244,0 +170739794959,244,0 +170739795007,244,0 +170739795055,244,0 +170739795103,244,0 +170739795151,244,0 +170739795199,244,0 +170739795247,244,0 +170739795294,244,0 +170739795342,244,0 +170739795390,244,0 +170739795438,244,0 +170739795486,244,0 +170739795534,244,0 +170739795582,244,0 +170739795630,244,0 +170739795677,244,0 +170739795727,244,0 +170739795775,244,0 +170739795823,244,0 +170739795871,244,0 +170739795918,244,0 +170739795966,244,0 +170739796016,244,0 +170739796064,244,0 +170739796112,244,0 +170739796159,244,0 +170739796207,244,0 +170739796255,244,0 +170739796303,244,0 +170739796351,244,0 +170739796399,244,0 +170739796447,244,0 +170739796496,244,0 +170739796546,244,0 +170739796594,244,0 +170739796642,244,0 +170739796691,244,0 +170739796741,244,0 +170739796789,244,0 +170739796838,244,0 +170739796888,244,0 +170739796936,244,0 +170739796984,244,0 +170739797032,244,0 +170739797080,244,0 +170739797129,244,0 +170739797179,244,0 +170739797227,244,0 +170739797275,244,0 +170739797323,244,0 +170739797371,244,0 +170739797419,244,0 +170739797467,244,0 +170739797516,244,0 +170739797566,244,0 +170739797615,244,0 +170739797665,244,0 +170739797714,245,0 +170739797762,244,0 +170739797812,244,0 +170739797860,244,0 +170739797908,244,0 +170739797956,244,0 +170739798004,244,0 +170739798051,244,0 +170739798099,244,0 +170739798149,244,0 +170739798197,244,0 +170739798246,244,0 +170739798296,244,0 +170739798345,244,0 +170739798393,244,0 +170739798443,244,0 +170739798491,244,0 +170739798540,244,0 +170739798589,244,0 +170739798637,244,0 +170739798685,244,0 +170739798733,244,0 +170739798781,244,0 +170739798829,244,0 +170739798877,244,0 +170739798925,244,0 +170739798972,244,0 +170739799020,244,0 +170739799068,244,0 +170739799116,244,0 +170739799164,244,0 +170739799214,244,0 +170739799261,244,0 +170739799309,244,0 +170739799357,244,0 +170739799405,244,0 +170739799453,244,0 +170739799501,244,0 +170739799549,244,0 +170739799597,244,0 +170739799645,244,0 +170739799694,244,0 +170739799742,244,0 +170739799790,244,0 +170739799838,244,0 +170739799886,244,0 +170739799935,244,0 +170739799984,244,0 +170739800032,244,0 +170739800080,244,0 +170739800128,244,0 +170739800176,244,0 +170739800224,244,0 +170739800272,244,0 +170739800320,244,0 +170739800369,244,0 +170739800419,244,0 +170739800467,244,0 +170739800516,244,0 +170739800566,244,0 +170739800614,244,0 +170739800662,244,0 +170739800710,244,0 +170739800759,244,0 +170739800807,244,0 +170739800857,244,0 +170739800905,244,0 +170739800954,244,0 +170739801002,245,0 +170739801052,244,0 +170739801101,244,0 +170739801149,244,0 +170739801199,244,0 +170739801248,244,0 +170739801298,244,0 +170739801347,244,0 +170739801395,244,0 +170739801443,244,0 +170739801491,244,0 +170739801540,244,0 +170739801588,244,0 +170739801636,244,0 +170739801686,244,0 +170739801735,244,0 +170739801783,244,0 +170739801833,244,0 +170739801881,244,0 +170739801929,244,0 +170739801977,244,0 +170739802025,244,0 +170739802072,244,0 +170739802120,244,0 +170739802168,244,0 +170739802216,244,0 +170739802266,245,0 +170739802313,244,0 +170739802361,244,0 +170739802409,244,0 +170739802459,244,0 +170739802507,244,0 +170739802554,244,0 +170739802602,244,0 +170739802650,244,0 +170739802698,244,0 +170739802746,244,0 +170739802795,244,0 +170739802843,244,0 +170739802891,244,0 +170739802939,244,0 +170739802987,244,0 +170739803035,244,0 +170739803083,244,0 +170739803131,244,0 +170739803180,244,0 +170739803228,244,0 +170739803278,244,0 +170739803327,244,0 +170739803375,244,0 +170739803425,244,0 +170739803474,244,0 +170739803522,244,0 +170739803570,244,0 +170739803618,244,0 +170739803668,244,0 +170739803716,244,0 +170739803764,244,0 +170739803813,244,0 +170739803861,244,0 +170739803911,244,0 +170739803959,244,0 +170739804008,244,0 +170739804056,244,0 +170739804104,244,0 +170739804154,244,0 +170739804202,244,0 +170739804250,244,0 +170739804298,244,0 +170739804347,244,0 +170739804395,244,0 +170739804443,244,0 +170739804491,244,0 +170739804540,244,0 +170739804588,244,0 +170739804636,244,0 +170739804684,244,0 +170739804734,244,0 +170739804782,245,0 +170739804831,244,0 +170739804881,244,0 +170739804929,244,0 +170739804978,244,0 +170739805026,244,0 +170739805074,244,0 +170739805122,244,0 +170739805170,244,0 +170739805220,244,0 +170739805269,244,0 +170739805319,244,0 +170739805367,244,0 +170739805415,244,0 +170739805463,244,0 +170739805511,244,0 +170739805558,244,0 +170739805608,244,0 +170739805656,244,0 +170739805704,245,0 +170739805752,244,0 +170739805800,244,0 +170739805848,244,0 +170739805897,244,0 +170739805945,244,0 +170739805993,244,0 +170739806041,244,0 +170739806089,244,0 +170739806136,244,0 +170739806184,243,0 +170739806232,244,0 +170739806280,244,0 +170739806328,244,0 +170739806376,244,0 +170739806424,243,0 +170739806472,244,0 +170739806520,244,0 +170739806568,244,0 +170739806616,244,0 +170739806665,244,0 +170739806715,244,0 +170739806764,244,0 +170739806812,244,0 +170739806860,244,0 +170739806908,244,0 +170739806956,244,0 +170739807004,244,0 +170739807054,244,0 +170739807101,244,0 +170739807149,244,0 +170739807197,244,0 +170739807247,244,0 +170739807296,244,0 +170739807346,244,0 +170739807395,244,0 +170739807443,244,0 +170739807491,244,0 +170739807539,244,0 +170739807587,244,0 +170739807635,244,0 +170739807683,244,0 +170739807731,244,0 +170739807779,244,0 +170739807827,244,0 +170739807877,244,0 +170739807925,244,0 +170739807974,244,0 +170739808024,244,0 +170739808072,244,0 +170739808120,244,0 +170739808168,244,0 +170739808217,244,0 +170739808267,244,0 +170739808317,244,0 +170739808365,244,0 +170739808412,244,0 +170739808460,244,0 +170739808510,244,0 +170739808559,244,0 +170739808607,244,0 +170739808657,244,0 +170739808706,244,0 +170739808754,244,0 +170739808802,244,0 +170739808850,244,0 +170739808900,244,0 +170739808948,244,0 +170739808996,244,0 +170739809044,244,0 +170739809094,244,0 +170739809142,244,0 +170739809190,244,0 +170739809239,244,0 +170739809288,244,0 +170739809338,244,0 +170739809388,244,0 +170739809435,244,0 +170739809483,244,0 +170739809531,244,0 +170739809579,244,0 +170739809629,244,0 +170739809677,244,0 +170739809726,244,0 +170739809774,244,0 +170739809822,244,0 +170739809872,244,0 +170739809920,244,0 +170739809968,244,0 +170739810016,244,0 +170739810063,244,0 +170739810111,244,0 +170739810159,244,0 +170739810207,244,0 +170739810255,244,0 +170739810303,244,0 +170739810351,244,0 +170739810399,244,0 +170739810448,244,0 +170739810496,244,0 +170739810544,244,0 +170739810592,244,0 +170739810640,244,0 +170739810688,244,0 +170739810736,244,0 +170739810784,244,0 +170739810831,244,0 +170739810879,244,0 +170739810929,244,0 +170739810977,244,0 +170739811025,244,0 +170739811075,244,0 +170739811123,244,0 +170739811171,244,0 +170739811218,244,0 +170739811266,244,0 +170739811314,244,0 +170739811362,244,0 +170739811410,244,0 +170739811458,244,0 +170739811506,244,0 +170739811554,244,0 +170739811602,244,0 +170739811650,244,0 +170739811698,244,0 +170739811746,244,0 +170739811794,244,0 +170739811844,244,0 +170739811891,244,0 +170739811939,244,0 +170739811987,244,0 +170739812035,244,0 +170739812083,244,0 +170739812131,244,0 +170739812181,244,0 +170739812229,244,0 +170739812278,244,0 +170739812326,244,0 +170739812376,244,0 +170739812424,244,0 +170739812473,244,0 +170739812521,244,0 +170739812569,244,0 +170739812617,244,0 +170739812665,244,0 +170739812715,244,0 +170739812763,244,0 +170739812810,244,0 +170739812858,244,0 +170739812906,244,0 +170739812954,244,0 +170739813002,244,0 +170739813050,244,0 +170739813098,244,0 +170739813146,244,0 +170739813194,244,0 +170739813243,244,0 +170739813293,244,0 +170739813340,244,0 +170739813388,244,0 +170739813438,244,0 +170739813486,244,0 +170739813534,244,0 +170739813582,244,0 +170739813629,244,0 +170739813677,244,0 +170739813725,244,0 +170739813773,244,0 +170739813821,244,0 +170739813869,244,0 +170739813917,244,0 +170739813965,244,0 +170739814013,244,0 +170739814061,244,0 +170739814108,244,0 +170739814156,244,0 +170739814204,244,0 +170739814252,244,0 +170739814300,244,0 +170739814348,244,0 +170739814396,244,0 +170739814444,244,0 +170739814492,244,0 +170739814540,244,0 +170739814587,244,0 +170739814635,244,0 +170739814683,245,0 +170739814731,244,0 +170739814779,244,0 +170739814827,244,0 +170739814875,244,0 +170739814923,244,0 +170739814971,244,0 +170739815020,244,0 +170739815068,244,0 +170739815116,244,0 +170739815165,244,0 +170739815215,244,0 +170739815262,244,0 +170739815312,244,0 +170739815360,244,0 +170739815408,244,0 +170739815456,244,0 +170739815503,244,0 +170739815551,244,0 +170739815599,244,0 +170739815647,244,0 +170739815695,244,0 +170739815743,244,0 +170739815791,245,0 +170739815839,244,0 +170739815887,244,0 +170739815936,244,0 +170739815984,244,0 +170739816032,244,0 +170739816080,244,0 +170739816128,244,0 +170739816176,244,0 +170739816224,244,0 +170739816271,244,0 +170739816319,244,0 +170739816367,244,0 +170739816415,244,0 +170739816463,244,0 +170739816511,244,0 +170739816560,244,0 +170739816608,244,0 +170739816656,244,0 +170739816704,244,0 +170739816752,244,0 +170739816800,244,0 +170739816848,244,0 +170739816896,244,0 +170739816944,244,0 +170739816992,244,0 +170739817040,244,0 +170739817089,244,0 +170739817137,244,0 +170739817186,243,0 +170739817236,244,0 +170739817284,244,0 +170739817332,244,0 +170739817379,244,0 +170739817427,244,0 +170739817475,243,0 +170739817523,244,0 +170739817571,244,0 +170739817619,244,0 +170739817667,244,0 +170739817715,244,0 +170739817762,244,0 +170739817810,244,0 +170739817858,244,0 +170739817906,244,0 +170739817954,244,0 +170739818002,244,0 +170739818050,244,0 +170739818098,244,0 +170739818146,244,0 +170739818194,244,0 +170739818242,244,0 +170739818289,244,0 +170739818339,244,0 +170739818388,244,0 +170739818436,244,0 +170739818484,244,0 +170739818532,244,0 +170739818580,244,0 +170739818628,244,0 +170739818678,244,0 +170739818727,244,0 +170739818777,244,0 +170739818825,244,0 +170739818873,244,0 +170739818921,244,0 +170739818969,244,0 +170739819017,244,0 +170739819067,244,0 +170739819115,244,0 +170739819163,244,0 +170739819210,244,0 +170739819258,244,0 +170739819306,244,0 +170739819354,244,0 +170739819402,244,0 +170739819450,244,0 +170739819498,244,0 +170739819546,244,0 +170739819594,244,0 +170739819643,244,0 +170739819693,244,0 +170739819740,244,0 +170739819788,244,0 +170739819838,244,0 +170739819887,244,0 +170739819935,244,0 +170739819983,244,0 +170739820031,244,0 +170739820079,244,0 +170739820127,244,0 +170739820174,244,0 +170739820222,244,0 +170739820270,244,0 +170739820318,244,0 +170739820366,244,0 +170739820414,244,0 +170739820462,244,0 +170739820512,244,0 +170739820561,244,0 +170739820609,244,0 +170739820657,244,0 +170739820705,244,0 +170739820754,244,0 +170739820804,244,0 +170739820852,244,0 +170739820899,244,0 +170739820947,244,0 +170739820995,244,0 +170739821045,244,0 +170739821092,244,0 +170739821140,244,0 +170739821188,244,0 +170739821236,244,0 +170739821284,244,0 +170739821332,244,0 +170739821380,244,0 +170739821428,244,0 +170739821475,244,0 +170739821523,244,0 +170739821571,244,0 +170739821619,244,0 +170739821667,244,0 +170739821715,244,0 +170739821763,244,0 +170739821811,244,0 +170739821858,244,0 +170739821906,244,0 +170739821954,244,0 +170739822002,244,0 +170739822050,244,0 +170739822098,244,0 +170739822146,244,0 +170739822194,244,0 +170739822241,244,0 +170739822289,244,0 +170739822339,244,0 +170739822387,244,0 +170739822435,244,0 +170739822482,244,0 +170739822530,244,0 +170739822578,244,0 +170739822626,244,0 +170739822674,244,0 +170739822722,244,0 +170739822770,244,0 +170739822818,244,0 +170739822866,244,0 +170739822914,244,0 +170739822962,244,0 +170739823010,244,0 +170739823058,244,0 +170739823106,244,0 +170739823155,244,0 +170739823203,244,0 +170739823251,244,0 +170739823301,244,0 +170739823349,244,0 +170739823397,244,0 +170739823446,244,0 +170739823494,244,0 +170739823544,244,0 +170739823593,244,0 +170739823641,244,0 +170739823689,244,0 +170739823737,244,0 +170739823785,244,0 +170739823833,244,0 +170739823881,244,0 +170739823929,244,0 +170739823978,244,0 +170739824026,244,0 +170739824074,244,0 +170739824122,244,0 +170739824170,244,0 +170739824218,244,0 +170739824268,244,0 +170739824316,244,0 +170739824363,244,0 +170739824411,244,0 +170739824459,244,0 +170739824509,244,0 +170739824558,244,0 +170739824608,244,0 +170739824656,244,0 +170739824705,244,0 +170739824753,244,0 +170739824801,244,0 +170739824849,244,0 +170739824899,244,0 +170739824947,244,0 +170739824997,244,0 +170739825045,244,0 +170739825093,244,0 +170739825141,244,0 +170739825190,244,0 +170739825240,244,0 +170739825288,244,0 +170739825336,244,0 +170739825384,244,0 +170739825433,244,0 +170739825483,244,0 +170739825531,244,0 +170739825580,244,0 +170739825628,244,0 +170739825676,244,0 +170739825726,244,0 +170739825774,244,0 +170739825823,244,0 +170739825871,244,0 +170739825921,244,0 +170739825970,244,0 +170739826018,244,0 +170739826067,244,0 +170739826115,244,0 +170739826165,244,0 +170739826214,244,0 +170739826264,244,0 +170739826313,244,0 +170739826361,244,0 +170739826411,244,0 +170739826461,244,0 +170739826509,244,0 +170739826556,244,0 +170739826606,244,0 +170739826654,244,0 +170739826702,244,0 +170739826752,244,0 +170739826801,244,0 +170739826849,244,0 +170739826897,244,0 +170739826945,244,0 +170739826993,244,0 +170739827041,244,0 +170739827089,244,0 +170739827137,244,0 +170739827185,244,0 +170739827233,244,0 +170739827281,244,0 +170739827329,244,0 +170739827378,244,0 +170739827428,244,0 +170739827477,244,0 +170739827527,244,0 +170739827575,244,0 +170739827623,243,0 +170739827671,244,0 +170739827720,243,0 +170739827768,244,0 +170739827818,244,0 +170739827867,244,0 +170739827915,244,0 +170739827965,244,0 +170739828014,244,0 +170739828064,244,0 +170739828112,244,0 +170739828161,244,0 +170739828211,244,0 +170739828260,244,0 +170739828308,244,0 +170739828358,244,0 +170739828407,244,0 +170739828455,244,0 +170739828503,244,0 +170739828551,244,0 +170739828601,244,0 +170739828650,244,0 +170739828698,244,0 +170739828746,244,0 +170739828794,244,0 +170739828842,244,0 +170739828890,244,0 +170739828938,244,0 +170739828985,244,0 +170739829035,244,0 +170739829084,244,0 +170739829134,244,0 +170739829183,244,0 +170739829231,244,0 +170739829279,244,0 +170739829327,244,0 +170739829377,244,0 +170739829425,244,0 +170739829473,244,0 +170739829522,244,0 +170739829570,244,0 +170739829618,244,0 +170739829668,244,0 +170739829717,244,0 +170739829765,244,0 +170739829815,244,0 +170739829864,244,0 +170739829914,244,0 +170739829963,244,0 +170739830011,244,0 +170739830059,244,0 +170739830107,244,0 +170739830155,244,0 +170739830205,244,0 +170739830253,244,0 +170739830301,244,0 +170739830348,244,0 +170739830398,244,0 +170739830446,244,0 +170739830494,244,0 +170739830542,244,0 +170739830590,244,0 +170739830637,244,0 +170739830687,244,0 +170739830735,244,0 +170739830783,244,0 +170739830831,244,0 +170739830879,244,0 +170739830926,244,0 +170739830976,244,0 +170739831024,244,0 +170739831072,244,0 +170739831120,244,0 +170739831168,244,0 +170739831217,244,0 +170739831265,244,0 +170739831315,244,0 +170739831363,244,0 +170739831412,244,0 +170739831462,244,0 +170739831510,244,0 +170739831559,244,0 +170739831609,244,0 +170739831658,244,0 +170739831706,244,0 +170739831754,243,0 +170739831802,244,0 +170739831852,244,0 +170739831901,244,0 +170739831949,244,0 +170739831997,244,0 +170739832045,244,0 +170739832093,244,0 +170739832141,244,0 +170739832190,244,0 +170739832238,244,0 +170739832286,244,0 +170739832334,244,0 +170739832382,244,0 +170739832429,244,0 +170739832479,244,0 +170739832527,244,0 +170739832577,244,0 +170739832625,243,0 +170739832673,244,0 +170739832721,244,0 +170739832770,244,0 +170739832818,244,0 +170739832866,244,0 +170739832914,244,0 +170739832962,244,0 +170739833010,244,0 +170739833060,244,0 +170739833109,244,0 +170739833159,244,0 +170739833207,244,0 +170739833254,243,0 +170739833304,244,0 +170739833352,244,0 +170739833401,244,0 +170739833449,244,0 +170739833497,244,0 +170739833547,244,0 +170739833596,244,0 +170739833646,244,0 +170739833694,244,0 +170739833742,244,0 +170739833790,244,0 +170739833839,244,0 +170739833887,244,0 +170739833935,244,0 +170739833985,244,0 +170739834033,244,0 +170739834080,244,0 +170739834130,244,0 +170739834178,244,0 +170739834227,244,0 +170739834277,244,0 +170739834325,244,0 +170739834374,244,0 +170739834424,244,0 +170739834473,244,0 +170739834521,244,0 +170739834571,244,0 +170739834619,244,0 +170739834667,244,0 +170739834715,244,0 +170739834764,244,0 +170739834812,244,0 +170739834862,244,0 +170739834910,244,0 +170739834959,244,0 +170739835009,244,0 +170739835057,244,0 +170739835105,244,0 +170739835153,244,0 +170739835201,244,0 +170739835250,244,0 +170739835298,244,0 +170739835346,244,0 +170739835394,244,0 +170739835444,244,0 +170739835491,244,0 +170739835539,244,0 +170739835589,244,0 +170739835637,244,0 +170739835685,244,0 +170739835733,244,0 +170739835781,244,0 +170739835830,244,0 +170739835880,244,0 +170739835929,244,0 +170739835977,244,0 +170739836027,243,0 +170739836076,243,0 +170739836124,244,0 +170739836174,244,0 +170739836223,244,0 +170739836273,244,0 +170739836321,244,0 +170739836370,244,0 +170739836420,244,0 +170739836469,244,0 +170739836519,244,0 +170739836568,244,0 +170739836618,243,0 +170739836667,244,0 +170739836715,244,0 +170739836765,244,0 +170739836813,244,0 +170739836861,244,0 +170739836910,244,0 +170739836958,244,0 +170739837006,244,0 +170739837056,244,0 +170739837104,244,0 +170739837152,244,0 +170739837200,244,0 +170739837248,244,0 +170739837296,244,0 +170739837344,244,0 +170739837393,244,0 +170739837443,244,0 +170739837491,244,0 +170739837540,244,0 +170739837588,244,0 +170739837638,244,0 +170739837687,244,0 +170739837737,244,0 +170739837785,244,0 +170739837834,244,0 +170739837882,244,0 +170739837932,244,0 +170739837981,244,0 +170739838029,244,0 +170739838077,244,0 +170739838125,244,0 +170739838173,244,0 +170739838222,244,0 +170739838270,244,0 +170739838318,244,0 +170739838368,244,0 +170739838417,244,0 +170739838465,244,0 +170739838513,244,0 +170739838561,244,0 +170739838609,244,0 +170739838657,244,0 +170739838705,244,0 +170739838753,244,0 +170739838803,244,0 +170739838851,244,0 +170739838900,244,0 +170739838948,244,0 +170739838998,244,0 +170739839045,244,0 +170739839093,244,0 +170739839141,244,0 +170739839189,244,0 +170739839239,244,0 +170739839288,244,0 +170739839336,244,0 +170739839386,244,0 +170739839436,244,0 +170739839485,244,0 +170739839533,244,0 +170739839581,244,0 +170739839629,244,0 +170739839677,244,0 +170739839725,244,0 +170739839773,244,0 +170739839822,244,0 +170739839870,244,0 +170739839918,244,0 +170739839966,244,0 +170739840016,244,0 +170739840064,244,0 +170739840113,244,0 +170739840161,244,0 +170739840209,244,0 +170739840257,244,0 +170739840305,244,0 +170739840353,244,0 +170739840403,244,0 +170739840451,244,0 +170739840500,244,0 +170739840550,244,0 +170739840599,244,0 +170739840647,244,0 +170739840695,244,0 +170739840743,244,0 +170739840793,244,0 +170739840841,244,0 +170739840889,244,0 +170739840937,244,0 +170739840985,244,0 +170739841033,244,0 +170739841081,244,0 +170739841129,244,0 +170739841178,244,0 +170739841226,244,0 +170739841274,244,0 +170739841322,244,0 +170739841370,244,0 +170739841419,244,0 +170739841467,244,0 +170739841517,244,0 +170739841565,244,0 +170739841613,244,0 +170739841661,244,0 +170739841711,244,0 +170739841758,244,0 +170739841808,244,0 +170739841856,244,0 +170739841904,244,0 +170739841953,244,0 +170739842001,243,0 +170739842049,244,0 +170739842097,244,0 +170739842145,243,0 +170739842193,244,0 +170739842241,243,0 +170739842289,244,0 +170739842339,243,0 +170739842387,244,0 +170739842435,243,0 +170739842483,244,0 +170739842532,244,0 +170739842580,243,0 +170739842628,244,0 +170739842678,244,0 +170739842726,243,0 +170739842774,244,0 +170739842822,244,0 +170739842871,244,0 +170739842919,243,0 +170739842967,243,0 +170739843017,244,0 +170739843065,244,0 +170739843113,244,0 +170739843162,243,0 +170739843212,243,0 +170739843260,243,0 +170739843308,244,0 +170739843356,244,0 +170739843404,243,0 +170739843452,244,0 +170739843500,243,0 +170739843548,243,0 +170739843597,243,0 +170739843647,244,0 +170739843695,244,0 +170739843743,244,0 +170739843791,243,0 +170739843839,244,0 +170739843886,244,0 +170739843936,243,0 +170739843984,243,0 +170739844032,243,0 +170739844081,244,0 +170739844129,244,0 +170739844177,244,0 +170739844225,244,0 +170739844273,243,0 +170739844323,243,0 +170739844372,244,0 +170739844420,244,0 +170739844470,244,0 +170739844518,243,0 +170739844566,243,0 +170739844614,243,0 +170739844662,244,0 +170739844711,244,0 +170739844759,243,0 +170739844807,244,0 +170739844855,244,0 +170739844903,244,0 +170739844951,244,0 +170739844999,243,0 +170739845048,243,0 +170739845098,244,0 +170739845146,244,0 +170739845194,244,0 +170739845242,244,0 +170739845291,244,0 +170739845339,243,0 +170739845387,243,0 +170739845435,244,0 +170739845483,243,0 +170739845531,244,0 +170739845579,243,0 +170739845627,244,0 +170739845675,244,0 +170739845723,244,0 +170739845772,244,0 +170739845820,244,0 +170739845868,244,0 +170739845916,244,0 +170739845964,244,0 +170739846012,243,0 +170739846060,244,0 +170739846108,243,0 +170739846156,244,0 +170739846206,244,0 +170739846254,244,0 +170739846302,244,0 +170739846351,244,0 +170739846401,244,0 +170739846450,244,0 +170739846500,244,0 +170739846548,244,0 +170739846597,244,0 +170739846647,243,0 +170739846695,244,0 +170739846743,244,0 +170739846792,244,0 +170739846840,244,0 +170739846888,244,0 +170739846936,244,0 +170739846986,244,0 +170739847034,244,0 +170739847083,244,0 +170739847131,244,0 +170739847179,244,0 +170739847227,244,0 +170739847275,244,0 +170739847325,244,0 +170739847373,244,0 +170739847421,244,0 +170739847470,244,0 +170739847518,244,0 +170739847566,243,0 +170739847614,244,0 +170739847664,244,0 +170739847713,244,0 +170739847761,244,0 +170739847809,244,0 +170739847857,244,0 +170739847905,244,0 +170739847952,244,0 +170739848002,244,0 +170739848051,244,0 +170739848099,244,0 +170739848147,244,0 +170739848195,244,0 +170739848243,244,0 +170739848291,244,0 +170739848339,244,0 +170739848386,244,0 +170739848434,244,0 +170739848482,244,0 +170739848530,244,0 +170739848578,244,0 +170739848627,243,0 +170739848675,244,0 +170739848723,244,0 +170739848771,244,0 +170739848819,244,0 +170739848867,244,0 +170739848915,244,0 +170739848963,244,0 +170739849011,244,0 +170739849058,244,0 +170739849106,244,0 +170739849156,244,0 +170739849204,244,0 +170739849253,244,0 +170739849301,244,0 +170739849351,244,0 +170739849399,244,0 +170739849446,244,0 +170739849494,244,0 +170739849542,244,0 +170739849592,244,0 +170739849640,244,0 +170739849688,244,0 +170739849736,244,0 +170739849785,244,0 +170739849833,244,0 +170739849881,244,0 +170739849929,244,0 +170739849977,244,0 +170739850025,244,0 +170739850073,244,0 +170739850122,244,0 +170739850170,244,0 +170739850218,244,0 +170739850266,244,0 +170739850314,244,0 +170739850364,244,0 +170739850413,244,0 +170739850463,244,0 +170739850513,244,0 +170739850562,244,0 +170739850610,244,0 +170739850660,244,0 +170739850708,244,0 +170739850756,244,0 +170739850803,244,0 +170739850853,244,0 +170739850901,244,0 +170739850949,244,0 +170739850997,244,0 +170739851045,244,0 +170739851093,244,0 +170739851142,244,0 +170739851190,244,0 +170739851238,244,0 +170739851286,244,0 +170739851334,244,0 +170739851382,244,0 +170739851430,244,0 +170739851480,244,0 +170739851527,244,0 +170739851575,244,0 +170739851623,244,0 +170739851673,244,0 +170739851721,243,0 +170739851769,244,0 +170739851817,244,0 +170739851865,244,0 +170739851913,244,0 +170739851962,244,0 +170739852010,244,0 +170739852058,244,0 +170739852106,244,0 +170739852156,244,0 +170739852204,244,0 +170739852253,244,0 +170739852301,244,0 +170739852349,244,0 +170739852397,244,0 +170739852447,244,0 +170739852496,244,0 +170739852544,244,0 +170739852592,244,0 +170739852640,244,0 +170739852688,244,0 +170739852736,244,0 +170739852785,244,0 +170739852834,244,0 +170739852881,244,0 +170739852931,244,0 +170739852979,244,0 +170739853027,244,0 +170739853075,244,0 +170739853124,244,0 +170739853172,244,0 +170739853220,244,0 +170739853268,244,0 +170739853316,244,0 +170739853366,244,0 +170739853414,244,0 +170739853462,244,0 +170739853511,244,0 +170739853559,244,0 +170739853607,244,0 +170739853655,244,0 +170739853703,243,0 +170739853751,244,0 +170739853800,244,0 +170739853848,244,0 +170739853898,244,0 +170739853946,244,0 +170739853995,244,0 +170739854045,244,0 +170739854093,244,0 +170739854141,244,0 +170739854189,244,0 +170739854237,244,0 +170739854285,244,0 +170739854333,244,0 +170739854382,244,0 +170739854430,244,0 +170739854478,244,0 +170739854528,244,0 +170739854576,244,0 +170739854624,244,0 +170739854672,244,0 +170739854721,244,0 +170739854769,244,0 +170739854817,244,0 +170739854865,244,0 +170739854913,244,0 +170739854963,244,0 +170739855012,244,0 +170739855060,244,0 +170739855108,244,0 +170739855156,244,0 +170739855204,244,0 +170739855253,244,0 +170739855303,244,0 +170739855351,243,0 +170739855399,244,0 +170739855448,243,0 +170739855498,244,0 +170739855546,244,0 +170739855594,244,0 +170739855641,244,0 +170739855689,244,0 +170739855737,244,0 +170739855785,243,0 +170739855833,244,0 +170739855883,244,0 +170739855931,244,0 +170739855979,244,0 +170739856027,244,0 +170739856075,244,0 +170739856123,244,0 +170739856172,244,0 +170739856220,244,0 +170739856270,244,0 +170739856319,244,0 +170739856367,244,0 +170739856415,244,0 +170739856463,243,0 +170739856511,244,0 +170739856559,244,0 +170739856607,244,0 +170739856657,244,0 +170739856705,244,0 +170739856754,244,0 +170739856802,244,0 +170739856852,244,0 +170739856900,244,0 +170739856948,244,0 +170739856996,244,0 +170739857043,244,0 +170739857093,244,0 +170739857141,244,0 +170739857189,244,0 +170739857237,244,0 +170739857285,244,0 +170739857334,244,0 +170739857382,244,0 +170739857430,244,0 +170739857480,244,0 +170739857528,244,0 +170739857577,243,0 +170739857627,243,0 +170739857675,244,0 +170739857724,244,0 +170739857774,244,0 +170739857823,244,0 +170739857871,244,0 +170739857919,243,0 +170739857969,244,0 +170739858017,244,0 +170739858066,244,0 +170739858114,244,0 +170739858162,244,0 +170739858212,244,0 +170739858260,244,0 +170739858309,244,0 +170739858359,244,0 +170739858407,244,0 +170739858455,244,0 +170739858503,244,0 +170739858551,244,0 +170739858599,243,0 +170739858647,243,0 +170739858696,243,0 +170739858744,243,0 +170739858793,243,0 +170739858841,243,0 +170739858891,243,0 +170739858939,243,0 +170739858987,243,0 +170739859036,243,0 +170739859084,243,0 +170739859132,243,0 +170739859180,243,0 +170739859230,243,0 +170739859278,243,0 +170739859326,243,0 +170739859374,243,0 +170739859423,243,0 +170739859471,243,0 +170739859521,243,0 +170739859570,243,0 +170739859620,243,0 +170739859669,243,0 +170739859717,243,0 +170739859765,243,0 +170739859813,243,0 +170739859861,243,0 +170739859909,243,0 +170739859957,243,0 +170739860005,243,0 +170739860055,243,0 +170739860103,243,0 +170739860151,243,0 +170739860198,243,0 +170739860248,243,0 +170739860296,243,0 +170739860344,243,0 +170739860392,243,0 +170739860440,243,0 +170739860488,243,0 +170739860536,243,0 +170739860584,243,0 +170739860632,243,0 +170739860681,243,0 +170739860729,243,0 +170739860777,243,0 +170739860827,243,0 +170739860876,243,0 +170739860924,243,0 +170739860972,243,0 +170739861020,243,0 +170739861070,243,0 +170739861118,243,0 +170739861166,243,0 +170739861215,243,0 +170739861263,243,0 +170739861311,243,0 +170739861359,243,0 +170739861407,243,0 +170739861455,243,0 +170739861503,243,0 +170739861553,243,0 +170739861601,243,0 +170739861649,243,0 +170739861697,243,0 +170739861745,243,0 +170739861793,243,0 +170739861842,243,0 +170739861890,243,0 +170739861938,243,0 +170739861988,243,0 +170739862037,243,0 +170739862087,243,0 +170739862134,243,0 +170739862182,243,0 +170739862232,243,0 +170739862282,243,0 +170739862330,243,0 +170739862378,243,0 +170739862425,243,0 +170739862473,243,0 +170739862523,243,0 +170739862571,243,0 +170739862619,243,0 +170739862668,243,0 +170739862718,243,0 +170739862766,243,0 +170739862814,243,0 +170739862863,243,0 +170739862911,243,0 +170739862961,243,0 +170739863010,242,0 +170739863058,243,0 +170739863108,243,0 +170739863156,243,0 +170739863204,242,0 +170739863252,243,0 +170739863299,243,0 +170739863347,243,0 +170739863397,243,0 +170739863445,243,0 +170739863493,243,0 +170739863541,243,0 +170739863590,243,0 +170739863638,243,0 +170739863686,243,0 +170739863734,243,0 +170739863782,243,0 +170739863829,243,0 +170739863877,243,0 +170739863925,243,0 +170739863973,243,0 +170739864021,243,0 +170739864069,243,0 +170739864118,243,0 +170739864166,243,0 +170739864214,243,0 +170739864264,243,0 +170739864311,243,0 +170739864359,243,0 +170739864407,243,0 +170739864455,243,0 +170739864505,243,0 +170739864552,243,0 +170739864600,243,0 +170739864648,243,0 +170739864696,243,0 +170739864746,243,0 +170739864794,243,0 +170739864843,243,0 +170739864893,243,0 +170739864941,243,0 +170739864990,243,0 +170739865038,243,0 +170739865088,243,0 +170739865136,243,0 +170739865185,243,0 +170739865233,243,0 +170739865283,243,0 +170739865332,243,0 +170739865380,243,0 +170739865428,243,0 +170739865476,243,0 +170739865525,243,0 +170739865573,243,0 +170739865621,243,0 +170739865669,242,0 +170739865717,243,0 +170739865765,243,0 +170739865814,243,0 +170739865862,243,0 +170739865912,243,0 +170739865961,243,0 +170739866011,243,0 +170739866059,243,0 +170739866108,243,0 +170739866156,243,0 +170739866204,243,0 +170739866254,243,0 +170739866302,243,0 +170739866350,243,0 +170739866398,243,0 +170739866446,243,0 +170739866494,243,0 +170739866542,243,0 +170739866590,243,0 +170739866638,243,0 +170739866686,243,0 +170739866734,243,0 +170739866781,243,0 +170739866831,243,0 +170739866881,243,0 +170739866930,243,0 +170739866978,243,0 +170739867027,243,0 +170739867077,243,0 +170739867127,243,0 +170739867175,243,0 +170739867222,243,0 +170739867270,243,0 +170739867320,243,0 +170739867369,243,0 +170739867418,243,0 +170739867466,243,0 +170739867514,243,0 +170739867564,243,0 +170739867613,243,0 +170739867663,243,0 +170739867712,243,0 +170739867760,242,0 +170739867808,243,0 +170739867856,243,0 +170739867906,243,0 +170739867955,243,0 +170739868005,243,0 +170739868053,243,0 +170739868101,243,0 +170739868149,243,0 +170739868197,243,0 +170739868246,243,0 +170739868294,243,0 +170739868343,243,0 +170739868391,243,0 +170739868439,243,0 +170739868487,243,0 +170739868535,243,0 +170739868583,243,0 +170739868631,243,0 +170739868679,243,0 +170739868727,243,0 +170739868775,243,0 +170739868824,243,0 +170739868872,243,0 +170739868920,243,0 +170739868968,243,0 +170739869016,243,0 +170739869064,243,0 +170739869114,243,0 +170739869163,243,0 +170739869213,243,0 +170739869262,243,0 +170739869310,244,0 +170739869358,243,0 +170739869407,243,0 +170739869457,243,0 +170739869506,243,0 +170739869554,243,0 +170739869604,243,0 +170739869652,243,0 +170739869700,243,0 +170739869749,243,0 +170739869797,243,0 +170739869845,243,0 +170739869895,243,0 +170739869944,243,0 +170739869994,243,0 +170739870042,243,0 +170739870090,243,0 +170739870138,243,0 +170739870186,243,0 +170739870235,243,0 +170739870285,243,0 +170739870333,244,0 +170739870381,244,0 +170739870430,243,0 +170739870478,243,0 +170739870526,243,0 +170739870574,243,0 +170739870624,243,0 +170739870673,243,0 +170739870721,243,0 +170739870771,243,0 +170739870820,243,0 +170739870868,243,0 +170739870916,243,0 +170739870964,243,0 +170739871013,243,0 +170739871061,243,0 +170739871109,243,0 +170739871159,243,0 +170739871207,243,0 +170739871256,243,0 +170739871304,243,0 +170739871352,243,0 +170739871400,243,0 +170739871448,243,0 +170739871496,243,0 +170739871545,243,0 +170739871593,243,0 +170739871641,243,0 +170739871691,243,0 +170739871739,243,0 +170739871788,243,0 +170739871836,243,0 +170739871884,243,0 +170739871932,243,0 +170739871982,243,0 +170739872030,243,0 +170739872079,243,0 +170739872129,243,0 +170739872178,243,0 +170739872226,243,0 +170739872274,243,0 +170739872322,243,0 +170739872370,243,0 +170739872420,243,0 +170739872468,243,0 +170739872516,243,0 +170739872564,243,0 +170739872611,243,0 +170739872661,243,0 +170739872711,243,0 +170739872758,243,0 +170739872806,243,0 +170739872854,243,0 +170739872904,243,0 +170739872954,243,0 +170739873002,243,0 +170739873049,243,0 +170739873099,243,0 +170739873147,243,0 +170739873195,243,0 +170739873243,243,0 +170739873291,243,0 +170739873339,243,0 +170739873387,244,0 +170739873435,243,0 +170739873485,243,0 +170739873534,243,0 +170739873582,243,0 +170739873632,243,0 +170739873680,243,0 +170739873729,243,0 +170739873777,243,0 +170739873825,243,0 +170739873873,243,0 +170739873921,243,0 +170739873970,243,0 +170739874018,243,0 +170739874068,243,0 +170739874117,243,0 +170739874165,243,0 +170739874215,243,0 +170739874264,243,0 +170739874312,243,0 +170739874362,243,0 +170739874410,244,0 +170739874458,243,0 +170739874506,243,0 +170739874554,243,0 +170739874602,243,0 +170739874650,243,0 +170739874698,243,0 +170739874746,243,0 +170739874795,243,0 +170739874843,243,0 +170739874893,243,0 +170739874941,244,0 +170739874989,243,0 +170739875038,243,0 +170739875086,243,0 +170739875136,243,0 +170739875184,243,0 +170739875232,243,0 +170739875281,243,0 +170739875329,243,0 +170739875377,243,0 +170739875425,243,0 +170739875474,243,0 +170739875522,243,0 +170739875570,243,0 +170739875618,243,0 +170739875666,243,0 +170739875714,243,0 +170739875762,243,0 +170739875810,243,0 +170739875857,243,0 +170739875905,243,0 +170739875953,243,0 +170739876001,243,0 +170739876049,243,0 +170739876097,243,0 +170739876145,243,0 +170739876194,243,0 +170739876242,243,0 +170739876290,243,0 +170739876338,243,0 +170739876386,243,0 +170739876434,243,0 +170739876482,243,0 +170739876530,243,0 +170739876578,243,0 +170739876625,243,0 +170739876673,243,0 +170739876721,243,0 +170739876769,243,0 +170739876817,243,0 +170739876865,243,0 +170739876913,243,0 +170739876961,243,0 +170739877009,243,0 +170739877057,243,0 +170739877106,243,0 +170739877155,243,0 +170739877203,243,0 +170739877251,243,0 +170739877299,243,0 +170739877349,243,0 +170739877397,243,0 +170739877445,243,0 +170739877492,243,0 +170739877542,243,0 +170739877592,243,0 +170739877639,243,0 +170739877687,243,0 +170739877735,243,0 +170739877783,243,0 +170739877831,243,0 +170739877879,243,0 +170739877927,243,0 +170739877975,243,0 +170739878023,243,0 +170739878071,243,0 +170739878119,243,0 +170739878167,243,0 +170739878215,243,0 +170739878263,243,0 +170739878312,243,0 +170739878360,243,0 +170739878408,243,0 +170739878456,243,0 +170739878503,243,0 +170739878551,243,0 +170739878601,243,0 +170739878649,243,0 +170739878697,243,0 +170739878745,243,0 +170739878792,243,0 +170739878840,243,0 +170739878890,243,0 +170739878938,243,0 +170739878987,243,0 +170739879035,243,0 +170739879083,243,0 +170739879131,243,0 +170739879179,243,0 +170739879227,243,0 +170739879275,243,0 +170739879322,243,0 +170739879372,243,0 +170739879420,243,0 +170739879468,243,0 +170739879516,243,0 +170739879564,243,0 +170739879612,243,0 +170739879659,243,0 +170739879707,243,0 +170739879755,243,0 +170739879803,243,0 +170739879851,243,0 +170739879899,243,0 +170739879948,243,0 +170739879996,243,0 +170739880046,243,0 +170739880095,243,0 +170739880143,243,0 +170739880193,243,0 +170739880242,243,0 +170739880290,243,0 +170739880338,243,0 +170739880386,243,0 +170739880434,243,0 +170739880482,243,0 +170739880532,243,0 +170739880580,243,0 +170739880629,243,0 +170739880677,243,0 +170739880725,243,0 +170739880775,243,0 +170739880824,243,0 +170739880872,243,0 +170739880922,243,0 +170739880970,243,0 +170739881018,243,0 +170739881066,243,0 +170739881115,243,0 +170739881163,243,0 +170739881211,243,0 +170739881259,243,0 +170739881306,243,0 +170739881354,243,0 +170739881402,243,0 +170739881450,243,0 +170739881498,243,0 +170739881546,243,0 +170739881594,243,0 +170739881642,243,0 +170739881691,243,0 +170739881739,243,0 +170739881787,243,0 +170739881835,243,0 +170739881883,243,0 +170739881932,243,0 +170739881980,243,0 +170739882028,243,0 +170739882076,243,0 +170739882124,243,0 +170739882173,243,0 +170739882221,243,0 +170739882269,243,0 +170739882317,243,0 +170739882366,243,0 +170739882414,243,0 +170739882462,243,0 +170739882510,243,0 +170739882558,243,0 +170739882607,243,0 +170739882655,243,0 +170739882705,243,0 +170739882754,243,0 +170739882802,243,0 +170739882852,243,0 +170739882900,243,0 +170739882949,243,0 +170739882997,243,0 +170739883045,243,0 +170739883093,243,0 +170739883143,243,0 +170739883191,243,0 +170739883238,243,0 +170739883286,243,0 +170739883336,243,0 +170739883384,243,0 +170739883432,243,0 +170739883481,243,0 +170739883529,244,0 +170739883579,243,0 +170739883628,243,0 +170739883676,243,0 +170739883724,243,0 +170739883772,243,0 +170739883820,243,0 +170739883868,243,0 +170739883916,243,0 +170739883964,243,0 +170739884013,243,0 +170739884063,243,0 +170739884112,243,0 +170739884162,243,0 +170739884211,243,0 +170739884259,243,0 +170739884309,243,0 +170739884357,243,0 +170739884405,243,0 +170739884452,243,0 +170739884500,243,0 +170739884548,243,0 +170739884596,243,0 +170739884644,243,0 +170739884692,243,0 +170739884740,243,0 +170739884788,243,0 +170739884835,243,0 +170739884883,243,0 +170739884931,243,0 +170739884979,243,0 +170739885027,243,0 +170739885076,243,0 +170739885124,243,0 +170739885172,243,0 +170739885220,243,0 +170739885268,243,0 +170739885317,243,0 +170739885365,243,0 +170739885413,243,0 +170739885461,243,0 +170739885509,243,0 +170739885557,243,0 +170739885605,243,0 +170739885653,243,0 +170739885700,243,0 +170739885750,243,0 +170739885798,243,0 +170739885846,243,0 +170739885894,243,0 +170739885941,243,0 +170739885991,243,0 +170739886039,243,0 +170739886087,243,0 +170739886135,243,0 +170739886182,243,0 +170739886230,243,0 +170739886278,243,0 +170739886326,243,0 +170739886374,243,0 +170739886424,243,0 +170739886472,243,0 +170739886520,243,0 +170739886569,243,0 +170739886619,243,0 +170739886668,243,0 +170739886716,243,0 +170739886764,243,0 +170739886812,243,0 +170739886860,243,0 +170739886907,243,0 +170739886955,243,0 +170739887003,243,0 +170739887053,243,0 +170739887101,243,0 +170739887149,243,0 +170739887198,243,0 +170739887248,243,0 +170739887297,243,0 +170739887345,243,0 +170739887395,243,0 +170739887444,243,0 +170739887492,243,0 +170739887542,243,0 +170739887591,243,0 +170739887639,243,0 +170739887689,243,0 +170739887738,243,0 +170739887786,243,0 +170739887836,243,0 +170739887884,242,0 +170739887933,243,0 +170739887981,243,0 +170739888029,243,0 +170739888077,243,0 +170739888125,243,0 +170739888175,243,0 +170739888223,243,0 +170739888271,243,0 +170739888319,243,0 +170739888368,243,0 +170739888416,243,0 +170739888465,243,0 +170739888513,243,0 +170739888563,243,0 +170739888611,243,0 +170739888660,242,0 +170739888708,243,0 +170739888756,242,0 +170739888806,243,0 +170739888854,243,0 +170739888902,243,0 +170739888951,243,0 +170739889001,243,0 +170739889049,242,0 +170739889097,243,0 +170739889146,242,0 +170739889194,243,0 +170739889242,243,0 +170739889290,243,0 +170739889340,243,0 +170739889389,243,0 +170739889437,243,0 +170739889487,242,0 +170739889535,242,0 +170739889583,243,0 +170739889632,243,0 +170739889680,243,0 +170739889728,243,0 +170739889778,243,0 +170739889826,242,0 +170739889874,242,0 +170739889923,243,0 +170739889971,243,0 +170739890020,243,0 +170739890070,242,0 +170739890120,242,0 +170739890168,243,0 +170739890217,243,0 +170739890265,243,0 +170739890314,243,0 +170739890362,243,0 +170739890412,242,0 +170739890461,242,0 +170739890509,243,0 +170739890557,243,0 +170739890607,243,0 +170739890655,242,0 +170739890704,243,0 +170739890754,242,0 +170739890802,243,0 +170739890850,243,0 +170739890898,242,0 +170739890946,242,0 +170739890995,243,0 +170739891043,243,0 +170739891093,242,0 +170739891141,243,0 +170739891189,242,0 +170739891238,242,0 +170739891288,243,0 +170739891337,242,0 +170739891385,243,0 +170739891435,243,0 +170739891483,242,0 +170739891531,242,0 +170739891580,243,0 +170739891628,242,0 +170739891678,243,0 +170739891726,242,0 +170739891774,242,0 +170739891822,242,0 +170739891869,242,0 +170739891917,242,0 +170739891965,242,0 +170739892013,242,0 +170739892061,242,0 +170739892109,242,0 +170739892157,242,0 +170739892205,242,0 +170739892253,242,0 +170739892301,242,0 +170739892349,242,0 +170739892397,242,0 +170739892444,242,0 +170739892492,242,0 +170739892540,242,0 +170739892588,242,0 +170739892638,242,0 +170739892686,242,0 +170739892734,242,0 +170739892782,242,0 +170739892830,242,0 +170739892878,242,0 +170739892926,243,0 +170739892974,243,0 +170739893023,242,0 +170739893071,242,0 +170739893119,242,0 +170739893167,242,0 +170739893215,242,0 +170739893263,242,0 +170739893313,243,0 +170739893362,242,0 +170739893412,242,0 +170739893460,242,0 +170739893508,243,0 +170739893556,243,0 +170739893604,242,0 +170739893652,242,0 +170739893699,242,0 +170739893747,242,0 +170739893795,242,0 +170739893845,242,0 +170739893893,242,0 +170739893940,242,0 +170739893988,243,0 +170739894036,242,0 +170739894084,242,0 +170739894132,242,0 +170739894180,242,0 +170739894228,242,0 +170739894277,242,0 +170739894325,243,0 +170739894373,242,0 +170739894421,242,0 +170739894469,242,0 +170739894517,242,0 +170739894564,242,0 +170739894612,242,0 +170739894660,242,0 +170739894708,242,0 +170739894756,242,0 +170739894804,242,0 +170739894853,243,0 +170739894901,242,0 +170739894949,242,0 +170739894997,242,0 +170739895045,242,0 +170739895093,242,0 +170739895141,242,0 +170739895189,243,0 +170739895236,242,0 +170739895286,242,0 +170739895334,242,0 +170739895382,242,0 +170739895430,243,0 +170739895478,243,0 +170739895525,243,0 +170739895573,242,0 +170739895621,242,0 +170739895669,242,0 +170739895717,242,0 +170739895765,242,0 +170739895813,242,0 +170739895861,242,0 +170739895910,242,0 +170739895958,243,0 +170739896007,242,0 +170739896057,242,0 +170739896105,242,0 +170739896154,242,0 +170739896202,242,0 +170739896250,242,0 +170739896298,242,0 +170739896346,243,0 +170739896394,242,0 +170739896442,242,0 +170739896490,242,0 +170739896538,242,0 +170739896586,242,0 +170739896634,242,0 +170739896682,242,0 +170739896731,242,0 +170739896779,242,0 +170739896827,242,0 +170739896875,242,0 +170739896923,242,0 +170739896972,242,0 +170739897020,242,0 +170739897068,242,0 +170739897116,242,0 +170739897164,242,0 +170739897213,242,0 +170739897261,242,0 +170739897309,242,0 +170739897357,242,0 +170739897405,243,0 +170739897453,242,0 +170739897501,242,0 +170739897549,243,0 +170739897596,242,0 +170739897644,242,0 +170739897692,242,0 +170739897740,242,0 +170739897788,242,0 +170739897836,242,0 +170739897884,242,0 +170739897932,242,0 +170739897979,243,0 +170739898027,242,0 +170739898075,242,0 +170739898125,242,0 +170739898172,243,0 +170739898220,242,0 +170739898270,242,0 +170739898318,243,0 +170739898366,242,0 +170739898414,242,0 +170739898461,242,0 +170739898509,242,0 +170739898557,242,0 +170739898605,242,0 +170739898653,243,0 +170739898701,242,0 +170739898749,243,0 +170739898796,243,0 +170739898844,243,0 +170739898892,242,0 +170739898940,243,0 +170739898988,242,0 +170739899036,243,0 +170739899086,243,0 +170739899134,242,0 +170739899183,242,0 +170739899231,242,0 +170739899281,243,0 +170739899331,242,0 +170739899379,242,0 +170739899427,242,0 +170739899475,242,0 +170739899522,242,0 +170739899570,242,0 +170739899620,242,0 +170739899668,242,0 +170739899717,242,0 +170739899767,243,0 +170739899816,243,0 +170739899864,243,0 +170739899912,243,0 +170739899960,242,0 +170739900008,242,0 +170739900058,243,0 +170739900106,242,0 +170739900154,242,0 +170739900202,242,0 +170739900250,242,0 +170739900299,242,0 +170739900347,243,0 +170739900395,242,0 +170739900443,242,0 +170739900491,242,0 +170739900541,242,0 +170739900589,242,0 +170739900637,242,0 +170739900684,242,0 +170739900734,242,0 +170739900782,242,0 +170739900830,242,0 +170739900878,242,0 +170739900926,242,0 +170739900973,242,0 +170739901021,242,0 +170739901069,242,0 +170739901117,243,0 +170739901165,242,0 +170739901213,242,0 +170739901261,242,0 +170739901309,242,0 +170739901357,243,0 +170739901406,242,0 +170739901454,242,0 +170739901502,243,0 +170739901550,243,0 +170739901597,243,0 +170739901645,242,0 +170739901693,242,0 +170739901741,242,0 +170739901791,242,0 +170739901838,242,0 +170739901886,242,0 +170739901934,242,0 +170739901982,243,0 +170739902030,243,0 +170739902079,243,0 +170739902127,243,0 +170739902177,243,0 +170739902225,242,0 +170739902273,242,0 +170739902320,242,0 +170739902368,243,0 +170739902416,242,0 +170739902464,242,0 +170739902512,242,0 +170739902560,242,0 +170739902608,243,0 +170739902657,242,0 +170739902707,242,0 +170739902756,242,0 +170739902806,242,0 +170739902854,242,0 +170739902901,243,0 +170739902949,242,0 +170739902997,242,0 +170739903045,242,0 +170739903093,242,0 +170739903141,242,0 +170739903189,242,0 +170739903237,242,0 +170739903285,243,0 +170739903333,243,0 +170739903382,242,0 +170739903430,242,0 +170739903478,243,0 +170739903526,243,0 +170739903574,243,0 +170739903623,242,0 +170739903673,242,0 +170739903720,242,0 +170739903768,243,0 +170739903816,243,0 +170739903864,243,0 +170739903912,243,0 +170739903961,243,0 +170739904009,242,0 +170739904057,242,0 +170739904105,243,0 +170739904153,242,0 +170739904201,242,0 +170739904249,243,0 +170739904297,243,0 +170739904345,243,0 +170739904394,243,0 +170739904442,242,0 +170739904490,242,0 +170739904538,243,0 +170739904586,243,0 +170739904633,243,0 +170739904681,243,0 +170739904729,243,0 +170739904777,242,0 +170739904825,243,0 +170739904875,243,0 +170739904922,243,0 +170739904972,242,0 +170739905020,243,0 +170739905068,242,0 +170739905115,242,0 +170739905163,242,0 +170739905211,243,0 +170739905259,243,0 +170739905307,242,0 +170739905355,242,0 +170739905403,243,0 +170739905452,242,0 +170739905500,243,0 +170739905548,242,0 +170739905596,242,0 +170739905644,243,0 +170739905692,243,0 +170739905740,243,0 +170739905787,243,0 +170739905835,242,0 +170739905883,243,0 +170739905931,243,0 +170739905979,242,0 +170739906027,243,0 +170739906075,243,0 +170739906123,243,0 +170739906171,242,0 +170739906219,243,0 +170739906266,243,0 +170739906316,243,0 +170739906364,243,0 +170739906411,243,0 +170739906459,243,0 +170739906507,243,0 +170739906557,243,0 +170739906606,242,0 +170739906654,243,0 +170739906702,243,0 +170739906750,243,0 +170739906798,243,0 +170739906846,243,0 +170739906894,242,0 +170739906942,242,0 +170739906989,243,0 +170739907039,243,0 +170739907088,243,0 +170739907136,243,0 +170739907186,243,0 +170739907234,243,0 +170739907283,243,0 +170739907333,243,0 +170739907381,243,0 +170739907429,243,0 +170739907477,242,0 +170739907526,242,0 +170739907576,242,0 +170739907625,243,0 +170739907675,243,0 +170739907723,243,0 +170739907772,243,0 +170739907822,243,0 +170739907871,242,0 +170739907919,242,0 +170739907969,242,0 +170739908018,242,0 +170739908068,242,0 +170739908115,242,0 +170739908165,243,0 +170739908214,243,0 +170739908262,242,0 +170739908310,242,0 +170739908358,242,0 +170739908406,243,0 +170739908454,242,0 +170739908502,242,0 +170739908551,242,0 +170739908599,242,0 +170739908647,242,0 +170739908695,242,0 +170739908743,243,0 +170739908791,242,0 +170739908839,243,0 +170739908886,243,0 +170739908934,242,0 +170739908982,242,0 +170739909030,242,0 +170739909078,242,0 +170739909127,242,0 +170739909175,242,0 +170739909223,243,0 +170739909272,242,0 +170739909320,242,0 +170739909368,242,0 +170739909418,242,0 +170739909467,242,0 +170739909515,243,0 +170739909563,243,0 +170739909611,242,0 +170739909659,242,0 +170739909709,242,0 +170739909757,243,0 +170739909805,242,0 +170739909853,243,0 +170739909901,242,0 +170739909949,242,0 +170739909998,242,0 +170739910046,242,0 +170739910094,242,0 +170739910143,243,0 +170739910191,242,0 +170739910239,242,0 +170739910287,242,0 +170739910335,242,0 +170739910385,242,0 +170739910434,242,0 +170739910484,242,0 +170739910532,242,0 +170739910581,242,0 +170739910629,242,0 +170739910677,242,0 +170739910727,242,0 +170739910775,242,0 +170739910824,242,0 +170739910872,242,0 +170739910922,242,0 +170739910970,242,0 +170739911018,242,0 +170739911066,242,0 +170739911114,242,0 +170739911162,242,0 +170739911210,242,0 +170739911259,242,0 +170739911307,242,0 +170739911355,242,0 +170739911403,242,0 +170739911451,242,0 +170739911500,242,0 +170739911550,242,0 +170739911598,242,0 +170739911646,242,0 +170739911694,242,0 +170739911743,242,0 +170739911791,242,0 +170739911839,242,0 +170739911889,242,0 +170739911937,242,0 +170739911985,241,0 +170739912033,242,0 +170739912082,242,0 +170739912130,242,0 +170739912180,241,0 +170739912228,242,0 +170739912276,242,0 +170739912324,242,0 +170739912371,242,0 +170739912419,242,0 +170739912467,242,0 +170739912515,242,0 +170739912564,242,0 +170739912611,242,0 +170739912659,242,0 +170739912707,242,0 +170739912755,242,0 +170739912803,242,0 +170739912851,242,0 +170739912901,242,0 +170739912950,242,0 +170739912998,242,0 +170739913046,242,0 +170739913096,242,0 +170739913145,242,0 +170739913193,242,0 +170739913243,242,0 +170739913291,242,0 +170739913339,242,0 +170739913386,242,0 +170739913435,242,0 +170739913484,242,0 +170739913532,242,0 +170739913580,242,0 +170739913628,242,0 +170739913678,242,0 +170739913725,242,0 +170739913775,242,0 +170739913824,242,0 +170739913872,243,0 +170739913920,242,0 +170739913968,242,0 +170739914016,242,0 +170739914064,242,0 +170739914112,243,0 +170739914160,242,0 +170739914208,242,0 +170739914256,242,0 +170739914305,242,0 +170739914353,243,0 +170739914401,242,0 +170739914449,242,0 +170739914499,243,0 +170739914546,242,0 +170739914594,243,0 +170739914642,243,0 +170739914690,243,0 +170739914738,243,0 +170739914786,242,0 +170739914835,243,0 +170739914883,242,0 +170739914931,243,0 +170739914979,242,0 +170739915029,242,0 +170739915077,243,0 +170739915125,243,0 +170739915173,243,0 +170739915220,243,0 +170739915268,243,0 +170739915318,242,0 +170739915366,243,0 +170739915414,243,0 +170739915462,243,0 +170739915510,243,0 +170739915557,243,0 +170739915605,243,0 +170739915653,243,0 +170739915701,243,0 +170739915751,243,0 +170739915799,243,0 +170739915848,243,0 +170739915896,243,0 +170739915946,243,0 +170739915994,243,0 +170739916042,243,0 +170739916090,243,0 +170739916138,243,0 +170739916187,243,0 +170739916235,243,0 +170739916285,243,0 +170739916333,243,0 +170739916382,243,0 +170739916430,243,0 +170739916478,243,0 +170739916526,243,0 +170739916576,243,0 +170739916625,243,0 +170739916673,243,0 +170739916721,243,0 +170739916770,243,0 +170739916818,243,0 +170739916866,243,0 +170739916914,243,0 +170739916964,243,0 +170739917013,243,0 +170739917061,243,0 +170739917111,243,0 +170739917159,243,0 +170739917207,243,0 +170739917255,243,0 +170739917303,243,0 +170739917351,243,0 +170739917399,243,0 +170739917447,243,0 +170739917495,243,0 +170739917543,243,0 +170739917592,243,0 +170739917640,243,0 +170739917688,243,0 +170739917738,243,0 +170739917786,243,0 +170739917834,243,0 +170739917883,243,0 +170739917931,243,0 +170739917979,243,0 +170739918027,243,0 +170739918076,243,0 +170739918124,243,0 +170739918174,243,0 +170739918222,243,0 +170739918270,243,0 +170739918318,243,0 +170739918366,243,0 +170739918414,243,0 +170739918462,243,0 +170739918511,243,0 +170739918561,243,0 +170739918609,243,0 +170739918658,243,0 +170739918708,243,0 +170739918756,243,0 +170739918804,243,0 +170739918853,243,0 +170739918903,243,0 +170739918951,243,0 +170739919000,243,0 +170739919048,243,0 +170739919096,243,0 +170739919144,243,0 +170739919194,243,0 +170739919242,243,0 +170739919289,243,0 +170739919339,243,0 +170739919387,243,0 +170739919436,243,0 +170739919484,243,0 +170739919532,243,0 +170739919580,243,0 +170739919630,243,0 +170739919679,243,0 +170739919727,243,0 +170739919775,243,0 +170739919825,244,0 +170739919874,243,0 +170739919924,243,0 +170739919972,243,0 +170739920020,243,0 +170739920068,243,0 +170739920116,243,0 +170739920164,243,0 +170739920211,243,0 +170739920259,243,0 +170739920309,243,0 +170739920359,244,0 +170739920406,243,0 +170739920456,244,0 +170739920505,243,0 +170739920553,243,0 +170739920603,243,0 +170739920652,243,0 +170739920702,243,0 +170739920750,243,0 +170739920799,243,0 +170739920847,243,0 +170739920897,243,0 +170739920947,243,0 +170739920995,243,0 +170739921043,243,0 +170739921091,244,0 +170739921139,243,0 +170739921188,243,0 +170739921236,243,0 +170739921284,243,0 +170739921331,243,0 +170739921379,244,0 +170739921427,243,0 +170739921475,243,0 +170739921525,243,0 +170739921573,243,0 +170739921621,243,0 +170739921669,243,0 +170739921718,243,0 +170739921766,243,0 +170739921814,243,0 +170739921862,243,0 +170739921912,243,0 +170739921960,243,0 +170739922008,243,0 +170739922055,243,0 +170739922105,243,0 +170739922153,243,0 +170739922201,243,0 +170739922249,243,0 +170739922297,243,0 +170739922344,243,0 +170739922394,243,0 +170739922442,243,0 +170739922490,243,0 +170739922539,244,0 +170739922587,243,0 +170739922635,243,0 +170739922683,243,0 +170739922730,243,0 +170739922778,243,0 +170739922826,243,0 +170739922874,243,0 +170739922922,243,0 +170739922970,243,0 +170739923018,243,0 +170739923066,243,0 +170739923115,243,0 +170739923163,243,0 +170739923211,243,0 +170739923259,243,0 +170739923307,243,0 +170739923355,243,0 +170739923404,243,0 +170739923452,243,0 +170739923502,243,0 +170739923550,243,0 +170739923598,243,0 +170739923646,243,0 +170739923695,243,0 +170739923743,243,0 +170739923791,243,0 +170739923841,243,0 +170739923889,243,0 +170739923936,243,0 +170739923984,243,0 +170739924034,243,0 +170739924084,243,0 +170739924132,243,0 +170739924180,243,0 +170739924229,243,0 +170739924277,243,0 +170739924325,243,0 +170739924373,243,0 +170739924421,243,0 +170739924469,243,0 +170739924517,243,0 +170739924566,243,0 +170739924616,243,0 +170739924665,243,0 +170739924713,243,0 +170739924761,243,0 +170739924809,243,0 +170739924857,243,0 +170739924907,243,0 +170739924955,243,0 +170739925003,243,0 +170739925052,243,0 +170739925102,243,0 +170739925151,243,0 +170739925200,243,0 +170739925248,243,0 +170739925296,243,0 +170739925344,243,0 +170739925392,243,0 +170739925442,243,0 +170739925490,243,0 +170739925539,243,0 +170739925589,243,0 +170739925637,243,0 +170739925686,243,0 +170739925734,243,0 +170739925782,243,0 +170739925830,243,0 +170739925878,243,0 +170739925925,243,0 +170739925973,243,0 +170739926021,243,0 +170739926069,243,0 +170739926117,243,0 +170739926165,243,0 +170739926213,243,0 +170739926261,243,0 +170739926309,243,0 +170739926356,243,0 +170739926406,243,0 +170739926454,243,0 +170739926502,243,0 +170739926550,243,0 +170739926597,243,0 +170739926645,243,0 +170739926693,243,0 +170739926741,243,0 +170739926789,243,0 +170739926837,243,0 +170739926885,243,0 +170739926933,243,0 +170739926980,243,0 +170739927028,243,0 +170739927078,243,0 +170739927126,243,0 +170739927175,243,0 +170739927225,243,0 +170739927273,243,0 +170739927321,243,0 +170739927370,243,0 +170739927420,243,0 +170739927469,243,0 +170739927519,243,0 +170739927568,243,0 +170739927618,243,0 +170739927666,243,0 +170739927714,243,0 +170739927763,243,0 +170739927813,243,0 +170739927861,243,0 +170739927909,243,0 +170739927956,243,0 +170739928004,243,0 +170739928052,243,0 +170739928100,243,0 +170739928148,243,0 +170739928198,243,0 +170739928246,243,0 +170739928294,243,0 +170739928343,243,0 +170739928393,243,0 +170739928441,243,0 +170739928489,243,0 +170739928536,243,0 +170739928584,243,0 +170739928634,243,0 +170739928682,243,0 +170739928730,243,0 +170739928778,243,0 +170739928826,243,0 +170739928874,243,0 +170739928923,243,0 +170739928971,243,0 +170739929021,243,0 +170739929070,243,0 +170739929120,243,0 +170739929169,243,0 +170739929219,243,0 +170739929267,243,0 +170739929315,243,0 +170739929362,243,0 +170739929410,243,0 +170739929458,243,0 +170739929506,243,0 +170739929554,243,0 +170739929602,243,0 +170739929652,243,0 +170739929701,243,0 +170739929749,243,0 +170739929797,243,0 +170739929845,243,0 +170739929893,243,0 +170739929940,243,0 +170739929988,243,0 +170739930038,243,0 +170739930086,243,0 +170739930134,243,0 +170739930182,243,0 +170739930231,243,0 +170739930279,243,0 +170739930327,243,0 +170739930374,243,0 +170739930422,243,0 +170739930470,243,0 +170739930518,243,0 +170739930566,244,0 +170739930614,244,0 +170739930662,243,0 +170739930710,243,0 +170739930758,243,0 +170739930805,243,0 +170739930853,243,0 +170739930901,243,0 +170739930949,243,0 +170739930997,243,0 +170739931045,243,0 +170739931093,243,0 +170739931141,243,0 +170739931189,243,0 +170739931236,243,0 +170739931284,243,0 +170739931332,243,0 +170739931380,243,0 +170739931428,243,0 +170739931476,243,0 +170739931525,243,0 +170739931573,243,0 +170739931621,243,0 +170739931669,243,0 +170739931717,243,0 +170739931765,243,0 +170739931813,243,0 +170739931861,243,0 +170739931909,243,0 +170739931956,243,0 +170739932006,243,0 +170739932054,243,0 +170739932102,243,0 +170739932150,243,0 +170739932197,243,0 +170739932245,243,0 +170739932293,243,0 +170739932341,243,0 +170739932389,243,0 +170739932437,243,0 +170739932485,243,0 +170739932534,243,0 +170739932582,243,0 +170739932630,243,0 +170739932678,243,0 +170739932726,244,0 +170739932775,243,0 +170739932825,243,0 +170739932873,243,0 +170739932922,243,0 +170739932970,243,0 +170739933018,243,0 +170739933066,243,0 +170739933114,243,0 +170739933162,243,0 +170739933210,243,0 +170739933257,243,0 +170739933305,243,0 +170739933353,244,0 +170739933401,243,0 +170739933451,243,0 +170739933498,243,0 +170739933548,243,0 +170739933596,243,0 +170739933644,244,0 +170739933691,243,0 +170739933739,243,0 +170739933787,243,0 +170739933835,243,0 +170739933883,243,0 +170739933931,243,0 +170739933979,243,0 +170739934028,243,0 +170739934076,243,0 +170739934124,243,0 +170739934172,243,0 +170739934220,243,0 +170739934268,243,0 +170739934315,243,0 +170739934363,243,0 +170739934411,243,0 +170739934459,243,0 +170739934507,244,0 +170739934555,243,0 +170739934603,243,0 +170739934651,243,0 +170739934698,243,0 +170739934746,243,0 +170739934794,243,0 +170739934842,243,0 +170739934890,243,0 +170739934939,243,0 +170739934987,244,0 +170739935035,244,0 +170739935083,243,0 +170739935131,244,0 +170739935179,243,0 +170739935227,244,0 +170739935275,243,0 +170739935322,244,0 +170739935370,243,0 +170739935418,243,0 +170739935466,244,0 +170739935514,244,0 +170739935562,243,0 +170739935610,244,0 +170739935658,243,0 +170739935707,243,0 +170739935755,243,0 +170739935803,244,0 +170739935851,243,0 +170739935899,244,0 +170739935947,243,0 +170739935994,243,0 +170739936042,244,0 +170739936090,243,0 +170739936138,244,0 +170739936186,243,0 +170739936234,244,0 +170739936282,243,0 +170739936330,244,0 +170739936379,243,0 +170739936427,244,0 +170739936475,243,0 +170739936523,244,0 +170739936571,244,0 +170739936619,244,0 +170739936667,243,0 +170739936716,243,0 +170739936764,244,0 +170739936812,244,0 +170739936860,243,0 +170739936909,244,0 +170739936957,244,0 +170739937005,243,0 +170739937054,244,0 +170739937102,244,0 +170739937150,243,0 +170739937198,243,0 +170739937246,244,0 +170739937294,244,0 +170739937342,244,0 +170739937390,244,0 +170739937438,244,0 +170739937487,243,0 +170739937535,243,0 +170739937583,244,0 +170739937631,243,0 +170739937679,243,0 +170739937726,243,0 +170739937774,243,0 +170739937822,244,0 +170739937870,244,0 +170739937920,244,0 +170739937967,243,0 +170739938015,244,0 +170739938063,243,0 +170739938111,244,0 +170739938161,244,0 +170739938210,244,0 +170739938258,244,0 +170739938306,243,0 +170739938355,244,0 +170739938405,244,0 +170739938454,244,0 +170739938502,243,0 +170739938551,243,0 +170739938599,244,0 +170739938647,243,0 +170739938695,243,0 +170739938745,243,0 +170739938793,243,0 +170739938842,243,0 +170739938892,243,0 +170739938940,243,0 +170739938988,243,0 +170739939036,243,0 +170739939084,244,0 +170739939132,243,0 +170739939179,244,0 +170739939227,244,0 +170739939277,243,0 +170739939325,243,0 +170739939373,243,0 +170739939422,244,0 +170739939470,243,0 +170739939518,243,0 +170739939566,243,0 +170739939614,243,0 +170739939663,243,0 +170739939711,243,0 +170739939759,243,0 +170739939807,243,0 +170739939856,243,0 +170739939906,243,0 +170739939953,243,0 +170739940001,243,0 +170739940049,244,0 +170739940099,243,0 +170739940147,243,0 +170739940195,243,0 +170739940243,243,0 +170739940291,243,0 +170739940340,243,0 +170739940390,243,0 +170739940439,243,0 +170739940487,244,0 +170739940535,244,0 +170739940583,243,0 +170739940631,244,0 +170739940679,244,0 +170739940727,243,0 +170739940775,243,0 +170739940823,243,0 +170739940870,244,0 +170739940918,244,0 +170739940966,243,0 +170739941014,243,0 +170739941064,243,0 +170739941112,244,0 +170739941161,243,0 +170739941209,243,0 +170739941257,244,0 +170739941307,243,0 +170739941355,243,0 +170739941403,243,0 +170739941450,243,0 +170739941498,244,0 +170739941546,243,0 +170739941594,243,0 +170739941642,243,0 +170739941690,244,0 +170739941738,243,0 +170739941786,243,0 +170739941834,244,0 +170739941882,243,0 +170739941931,243,0 +170739941981,243,0 +170739942029,244,0 +170739942077,243,0 +170739942126,243,0 +170739942176,244,0 +170739942224,243,0 +170739942271,243,0 +170739942319,243,0 +170739942367,243,0 +170739942415,243,0 +170739942463,243,0 +170739942511,243,0 +170739942559,243,0 +170739942607,244,0 +170739942655,244,0 +170739942704,243,0 +170739942752,244,0 +170739942800,243,0 +170739942848,243,0 +170739942895,243,0 +170739942945,243,0 +170739942993,243,0 +170739943041,244,0 +170739943089,243,0 +170739943136,244,0 +170739943184,243,0 +170739943232,243,0 +170739943280,243,0 +170739943328,243,0 +170739943376,243,0 +170739943425,244,0 +170739943473,243,0 +170739943521,243,0 +170739943569,243,0 +170739943617,243,0 +170739943665,243,0 +170739943713,244,0 +170739943761,243,0 +170739943809,243,0 +170739943856,243,0 +170739943904,244,0 +170739943952,243,0 +170739944000,243,0 +170739944048,243,0 +170739944096,243,0 +170739944146,243,0 +170739944195,243,0 +170739944243,243,0 +170739944293,243,0 +170739944342,244,0 +170739944392,243,0 +170739944440,243,0 +170739944488,243,0 +170739944536,243,0 +170739944584,243,0 +170739944633,243,0 +170739944681,243,0 +170739944731,243,0 +170739944780,244,0 +170739944830,244,0 +170739944879,244,0 +170739944927,243,0 +170739944975,244,0 +170739945025,243,0 +170739945074,243,0 +170739945124,243,0 +170739945173,243,0 +170739945221,243,0 +170739945271,244,0 +170739945319,243,0 +170739945367,243,0 +170739945414,243,0 +170739945462,243,0 +170739945510,243,0 +170739945560,243,0 +170739945608,244,0 +170739945657,243,0 +170739945705,243,0 +170739945753,243,0 +170739945801,243,0 +170739945849,243,0 +170739945898,243,0 +170739945948,243,0 +170739945996,243,0 +170739946043,243,0 +170739946091,244,0 +170739946139,243,0 +170739946187,243,0 +170739946235,243,0 +170739946283,244,0 +170739946331,243,0 +170739946379,243,0 +170739946427,243,0 +170739946474,243,0 +170739946522,243,0 +170739946570,243,0 +170739946618,243,0 +170739946666,243,0 +170739946714,243,0 +170739946763,243,0 +170739946811,243,0 +170739946859,243,0 +170739946907,244,0 +170739946955,243,0 +170739947003,243,0 +170739947051,243,0 +170739947098,243,0 +170739947146,243,0 +170739947196,243,0 +170739947244,243,0 +170739947292,243,0 +170739947341,243,0 +170739947391,243,0 +170739947440,243,0 +170739947488,243,0 +170739947536,243,0 +170739947586,243,0 +170739947634,243,0 +170739947683,243,0 +170739947731,243,0 +170739947779,243,0 +170739947827,243,0 +170739947875,244,0 +170739947923,243,0 +170739947971,243,0 +170739948019,243,0 +170739948068,243,0 +170739948116,243,0 +170739948164,244,0 +170739948212,243,0 +170739948260,243,0 +170739948308,243,0 +170739948356,244,0 +170739948404,243,0 +170739948452,243,0 +170739948500,243,0 +170739948548,243,0 +170739948596,243,0 +170739948644,243,0 +170739948692,244,0 +170739948740,243,0 +170739948787,243,0 +170739948835,244,0 +170739948883,243,0 +170739948931,244,0 +170739948979,243,0 +170739949027,243,0 +170739949075,243,0 +170739949123,243,0 +170739949170,243,0 +170739949218,243,0 +170739949266,243,0 +170739949316,243,0 +170739949364,243,0 +170739949412,243,0 +170739949460,243,0 +170739949509,243,0 +170739949559,243,0 +170739949607,243,0 +170739949656,243,0 +170739949704,244,0 +170739949754,243,0 +170739949803,243,0 +170739949851,244,0 +170739949899,243,0 +170739949947,243,0 +170739949995,243,0 +170739950043,243,0 +170739950092,243,0 +170739950140,243,0 +170739950188,243,0 +170739950236,243,0 +170739950286,243,0 +170739950334,243,0 +170739950382,243,0 +170739950430,243,0 +170739950478,243,0 +170739950527,243,0 +170739950575,243,0 +170739950623,243,0 +170739950671,243,0 +170739950721,243,0 +170739950769,243,0 +170739950818,243,0 +170739950868,243,0 +170739950916,243,0 +170739950965,243,0 +170739951013,243,0 +170739951063,243,0 +170739951112,243,0 +170739951160,243,0 +170739951210,243,0 +170739951258,243,0 +170739951307,243,0 +170739951355,243,0 +170739951405,243,0 +170739951454,243,0 +170739951504,243,0 +170739951551,243,0 +170739951599,243,0 +170739951649,243,0 +170739951697,243,0 +170739951745,243,0 +170739951794,243,0 +170739951842,243,0 +170739951890,243,0 +170739951938,243,0 +170739951986,243,0 +170739952036,243,0 +170739952085,243,0 +170739952133,243,0 +170739952183,243,0 +170739952232,243,0 +170739952282,243,0 +170739952329,243,0 +170739952377,243,0 +170739952427,243,0 +170739952475,243,0 +170739952523,243,0 +170739952572,243,0 +170739952620,243,0 +170739952670,243,0 +170739952718,243,0 +170739952766,243,0 +170739952814,243,0 +170739952863,243,0 +170739952913,243,0 +170739952961,243,0 +170739953009,243,0 +170739953057,243,0 +170739953105,243,0 +170739953153,243,0 +170739953201,243,0 +170739953249,243,0 +170739953298,243,0 +170739953346,243,0 +170739953396,243,0 +170739953444,243,0 +170739953492,243,0 +170739953541,243,0 +170739953589,243,0 +170739953637,243,0 +170739953685,243,0 +170739953733,243,0 +170739953781,243,0 +170739953830,243,0 +170739953878,243,0 +170739953928,243,0 +170739953977,243,0 +170739954027,243,0 +170739954076,243,0 +170739954126,243,0 +170739954175,243,0 +170739954225,243,0 +170739954273,243,0 +170739954321,243,0 +170739954370,243,0 +170739954420,243,0 +170739954469,243,0 +170739954519,243,0 +170739954567,243,0 +170739954616,243,0 +170739954666,243,0 +170739954714,243,0 +170739954761,243,0 +170739954809,243,0 +170739954857,243,0 +170739954905,243,0 +170739954953,243,0 +170739955001,243,0 +170739955049,243,0 +170739955097,243,0 +170739955146,243,0 +170739955196,243,0 +170739955245,243,0 +170739955293,243,0 +170739955343,243,0 +170739955391,243,0 +170739955439,243,0 +170739955488,243,0 +170739955538,243,0 +170739955587,243,0 +170739955637,243,0 +170739955685,243,0 +170739955733,243,0 +170739955781,243,0 +170739955828,243,0 +170739955876,243,0 +170739955924,243,0 +170739955972,243,0 +170739956020,243,0 +170739956068,243,0 +170739956116,243,0 +170739956164,243,0 +170739956213,243,0 +170739956261,243,0 +170739956311,243,0 +170739956360,243,0 +170739956408,243,0 +170739956456,243,0 +170739956504,243,0 +170739956553,243,0 +170739956603,243,0 +170739956651,243,0 +170739956699,243,0 +170739956747,243,0 +170739956796,243,0 +170739956844,243,0 +170739956892,243,0 +170739956940,243,0 +170739956989,243,0 +170739957037,243,0 +170739957085,242,0 +170739957133,243,0 +170739957181,243,0 +170739957229,243,0 +170739957277,243,0 +170739957325,243,0 +170739957374,243,0 +170739957422,243,0 +170739957470,243,0 +170739957520,243,0 +170739957569,243,0 +170739957617,243,0 +170739957665,243,0 +170739957714,243,0 +170739957762,243,0 +170739957810,243,0 +170739957858,243,0 +170739957906,243,0 +170739957956,243,0 +170739958004,243,0 +170739958053,243,0 +170739958101,243,0 +170739958149,243,0 +170739958197,243,0 +170739958247,243,0 +170739958296,243,0 +170739958344,243,0 +170739958392,243,0 +170739958442,243,0 +170739958490,243,0 +170739958539,243,0 +170739958587,243,0 +170739958637,243,0 +170739958685,243,0 +170739958733,243,0 +170739958782,243,0 +170739958830,243,0 +170739958878,243,0 +170739958926,243,0 +170739958974,243,0 +170739959022,243,0 +170739959071,243,0 +170739959119,243,0 +170739959167,243,0 +170739959215,243,0 +170739959263,243,0 +170739959311,243,0 +170739959359,243,0 +170739959408,243,0 +170739959456,243,0 +170739959504,242,0 +170739959552,243,0 +170739959600,243,0 +170739959648,243,0 +170739959696,243,0 +170739959744,243,0 +170739959792,243,0 +170739959839,243,0 +170739959887,243,0 +170739959935,243,0 +170739959983,243,0 +170739960031,243,0 +170739960079,243,0 +170739960128,243,0 +170739960176,243,0 +170739960224,243,0 +170739960274,243,0 +170739960322,243,0 +170739960370,243,0 +170739960418,243,0 +170739960467,243,0 +170739960517,243,0 +170739960565,242,0 +170739960613,242,0 +170739960662,243,0 +170739960710,243,0 +170739960758,243,0 +170739960808,243,0 +170739960856,243,0 +170739960904,243,0 +170739960953,243,0 +170739961001,243,0 +170739961049,243,0 +170739961098,243,0 +170739961146,243,0 +170739961196,243,0 +170739961244,243,0 +170739961292,243,0 +170739961340,243,0 +170739961389,243,0 +170739961437,243,0 +170739961485,243,0 +170739961535,243,0 +170739961583,243,0 +170739961632,243,0 +170739961680,243,0 +170739961728,243,0 +170739961776,243,0 +170739961824,243,0 +170739961872,243,0 +170739961922,243,0 +170739961970,243,0 +170739962019,243,0 +170739962069,243,0 +170739962118,243,0 +170739962168,243,0 +170739962216,243,0 +170739962265,243,0 +170739962313,243,0 +170739962361,243,0 +170739962409,243,0 +170739962459,243,0 +170739962507,242,0 +170739962555,243,0 +170739962604,243,0 +170739962654,243,0 +170739962703,243,0 +170739962751,243,0 +170739962801,243,0 +170739962850,243,0 +170739962900,243,0 +170739962948,243,0 +170739962996,243,0 +170739963044,243,0 +170739963093,243,0 +170739963141,243,0 +170739963191,242,0 +170739963239,243,0 +170739963287,243,0 +170739963336,243,0 +170739963384,243,0 +170739963432,243,0 +170739963480,243,0 +170739963528,243,0 +170739963576,243,0 +170739963624,242,0 +170739963672,243,0 +170739963720,243,0 +170739963768,242,0 +170739963816,243,0 +170739963865,243,0 +170739963913,243,0 +170739963961,243,0 +170739964011,243,0 +170739964059,243,0 +170739964107,243,0 +170739964155,243,0 +170739964204,243,0 +170739964252,243,0 +170739964300,243,0 +170739964348,242,0 +170739964398,243,0 +170739964445,243,0 +170739964493,243,0 +170739964543,243,0 +170739964591,243,0 +170739964639,243,0 +170739964688,243,0 +170739964736,243,0 +170739964786,243,0 +170739964835,242,0 +170739964883,243,0 +170739964931,242,0 +170739964981,243,0 +170739965030,243,0 +170739965078,243,0 +170739965126,243,0 +170739965176,243,0 +170739965224,243,0 +170739965272,243,0 +170739965321,242,0 +170739965371,243,0 +170739965419,242,0 +170739965467,243,0 +170739965516,243,0 +170739965564,243,0 +170739965612,243,0 +170739965661,243,0 +170739965709,243,0 +170739965759,242,0 +170739965808,242,0 +170739965856,242,0 +170739965906,243,0 +170739965955,243,0 +170739966003,243,0 +170739966053,243,0 +170739966102,243,0 +170739966152,243,0 +170739966201,243,0 +170739966249,243,0 +170739966297,243,0 +170739966347,243,0 +170739966396,243,0 +170739966446,243,0 +170739966494,243,0 +170739966542,243,0 +170739966591,243,0 +170739966641,243,0 +170739966690,243,0 +170739966738,242,0 +170739966788,243,0 +170739966837,242,0 +170739966885,242,0 +170739966933,243,0 +170739966983,243,0 +170739967032,243,0 +170739967080,243,0 +170739967128,242,0 +170739967178,243,0 +170739967226,242,0 +170739967274,243,0 +170739967321,243,0 +170739967369,243,0 +170739967419,242,0 +170739967468,243,0 +170739967516,242,0 +170739967566,243,0 +170739967614,243,0 +170739967663,243,0 +170739967711,243,0 +170739967759,243,0 +170739967807,243,0 +170739967857,243,0 +170739967905,242,0 +170739967953,243,0 +170739968001,243,0 +170739968050,242,0 +170739968100,243,0 +170739968149,243,0 +170739968199,243,0 +170739968248,243,0 +170739968296,242,0 +170739968344,243,0 +170739968394,242,0 +170739968442,243,0 +170739968489,242,0 +170739968537,243,0 +170739968587,242,0 +170739968636,243,0 +170739968684,242,0 +170739968734,243,0 +170739968782,243,0 +170739968830,242,0 +170739968878,243,0 +170739968926,243,0 +170739968973,243,0 +170739969023,242,0 +170739969073,242,0 +170739969122,243,0 +170739969172,243,0 +170739969219,243,0 +170739969267,243,0 +170739969317,243,0 +170739969367,243,0 +170739969414,242,0 +170739969462,243,0 +170739969510,243,0 +170739969558,243,0 +170739969606,243,0 +170739969654,242,0 +170739969702,243,0 +170739969750,242,0 +170739969798,242,0 +170739969845,243,0 +170739969893,242,0 +170739969941,242,0 +170739969989,242,0 +170739970037,243,0 +170739970085,242,0 +170739970133,243,0 +170739970181,242,0 +170739970229,242,0 +170739970277,243,0 +170739970325,243,0 +170739970373,243,0 +170739970421,242,0 +170739970468,242,0 +170739970516,242,0 +170739970564,242,0 +170739970612,243,0 +170739970660,242,0 +170739970708,243,0 +170739970758,242,0 +170739970806,242,0 +170739970853,242,0 +170739970901,243,0 +170739970949,242,0 +170739970997,242,0 +170739971045,242,0 +170739971093,243,0 +170739971141,242,0 +170739971189,243,0 +170739971236,243,0 +170739971284,242,0 +170739971332,243,0 +170739971380,242,0 +170739971428,242,0 +170739971476,243,0 +170739971524,242,0 +170739971571,242,0 +170739971619,242,0 +170739971667,242,0 +170739971715,242,0 +170739971765,242,0 +170739971813,242,0 +170739971861,242,0 +170739971909,242,0 +170739971958,242,0 +170739972006,242,0 +170739972056,242,0 +170739972103,242,0 +170739972151,242,0 +170739972201,242,0 +170739972251,242,0 +170739972299,242,0 +170739972347,242,0 +170739972396,242,0 +170739972444,242,0 +170739972492,242,0 +170739972540,242,0 +170739972589,242,0 +170739972639,242,0 +170739972687,242,0 +170739972734,242,0 +170739972784,242,0 +170739972832,242,0 +170739972880,242,0 +170739972928,242,0 +170739972977,242,0 +170739973026,242,0 +170739973074,242,0 +170739973122,242,0 +170739973170,242,0 +170739973218,242,0 +170739973266,242,0 +170739973314,242,0 +170739973362,242,0 +170739973410,242,0 +170739973458,242,0 +170739973507,242,0 +170739973555,242,0 +170739973603,242,0 +170739973651,242,0 +170739973698,242,0 +170739973746,242,0 +170739973794,242,0 +170739973842,242,0 +170739973890,242,0 +170739973938,242,0 +170739973988,242,0 +170739974037,242,0 +170739974087,242,0 +170739974135,242,0 +170739974182,242,0 +170739974230,242,0 +170739974278,242,0 +170739974326,242,0 +170739974374,242,0 +170739974424,242,0 +170739974473,242,0 +170739974523,242,0 +170739974571,242,0 +170739974619,242,0 +170739974668,242,0 +170739974716,242,0 +170739974764,242,0 +170739974812,242,0 +170739974860,242,0 +170739974908,242,0 +170739974958,242,0 +170739975006,242,0 +170739975055,242,0 +170739975103,242,0 +170739975153,242,0 +170739975201,242,0 +170739975248,243,0 +170739975298,242,0 +170739975346,242,0 +170739975395,242,0 +170739975443,242,0 +170739975491,242,0 +170739975539,242,0 +170739975587,242,0 +170739975634,242,0 +170739975682,242,0 +170739975730,242,0 +170739975778,242,0 +170739975826,242,0 +170739975874,242,0 +170739975922,242,0 +170739975970,242,0 +170739976018,242,0 +170739976065,242,0 +170739976113,242,0 +170739976161,242,0 +170739976209,242,0 +170739976257,242,0 +170739976305,242,0 +170739976353,242,0 +170739976401,242,0 +170739976449,242,0 +170739976497,242,0 +170739976546,242,0 +170739976595,242,0 +170739976643,242,0 +170739976691,242,0 +170739976739,242,0 +170739976787,242,0 +170739976835,242,0 +170739976883,242,0 +170739976931,242,0 +170739976979,242,0 +170739977026,242,0 +170739977074,242,0 +170739977122,242,0 +170739977170,242,0 +170739977218,242,0 +170739977266,242,0 +170739977314,242,0 +170739977362,242,0 +170739977410,242,0 +170739977458,242,0 +170739977505,242,0 +170739977553,242,0 +170739977601,242,0 +170739977651,242,0 +170739977699,242,0 +170739977746,242,0 +170739977794,242,0 +170739977842,242,0 +170739977892,242,0 +170739977940,242,0 +170739977989,242,0 +170739978037,242,0 +170739978085,242,0 +170739978133,242,0 +170739978181,242,0 +170739978228,242,0 +170739978276,242,0 +170739978324,242,0 +170739978372,242,0 +170739978420,242,0 +170739978468,242,0 +170739978516,242,0 +170739978564,242,0 +170739978612,242,0 +170739978660,242,0 +170739978707,243,0 +170739978755,242,0 +170739978803,242,0 +170739978851,243,0 +170739978901,243,0 +170739978950,242,0 +170739979000,242,0 +170739979047,242,0 +170739979095,242,0 +170739979143,242,0 +170739979193,242,0 +170739979241,243,0 +170739979288,243,0 +170739979336,243,0 +170739979384,242,0 +170739979432,243,0 +170739979480,243,0 +170739979528,243,0 +170739979576,243,0 +170739979624,242,0 +170739979672,243,0 +170739979719,243,0 +170739979767,243,0 +170739979815,243,0 +170739979863,243,0 +170739979911,243,0 +170739979960,243,0 +170739980008,243,0 +170739980056,243,0 +170739980104,243,0 +170739980152,243,0 +170739980201,243,0 +170739980249,243,0 +170739980299,243,0 +170739980346,243,0 +170739980394,243,0 +170739980442,243,0 +170739980490,243,0 +170739980538,243,0 +170739980587,243,0 +170739980635,243,0 +170739980685,243,0 +170739980733,243,0 +170739980781,243,0 +170739980830,243,0 +170739980878,243,0 +170739980926,243,0 +170739980974,243,0 +170739981022,243,0 +170739981072,243,0 +170739981120,243,0 +170739981168,243,0 +170739981216,243,0 +170739981263,243,0 +170739981311,243,0 +170739981361,243,0 +170739981410,243,0 +170739981460,243,0 +170739981509,243,0 +170739981557,243,0 +170739981605,243,0 +170739981655,243,0 +170739981703,243,0 +170739981753,243,0 +170739981801,243,0 +170739981849,243,0 +170739981898,243,0 +170739981948,243,0 +170739981996,243,0 +170739982043,243,0 +170739982093,243,0 +170739982141,243,0 +170739982190,243,0 +170739982238,243,0 +170739982288,243,0 +170739982337,243,0 +170739982385,243,0 +170739982433,243,0 +170739982481,243,0 +170739982529,243,0 +170739982577,243,0 +170739982625,243,0 +170739982673,243,0 +170739982723,243,0 +170739982772,243,0 +170739982820,244,0 +170739982868,243,0 +170739982916,243,0 +170739982964,243,0 +170739983012,243,0 +170739983060,243,0 +170739983108,244,0 +170739983156,243,0 +170739983204,243,0 +170739983253,243,0 +170739983301,243,0 +170739983349,243,0 +170739983397,243,0 +170739983445,243,0 +170739983493,243,0 +170739983540,243,0 +170739983588,243,0 +170739983636,243,0 +170739983684,243,0 +170739983734,243,0 +170739983781,243,0 +170739983829,243,0 +170739983877,243,0 +170739983925,243,0 +170739983975,243,0 +170739984022,243,0 +170739984072,243,0 +170739984121,243,0 +170739984169,243,0 +170739984217,243,0 +170739984265,243,0 +170739984313,243,0 +170739984361,243,0 +170739984410,243,0 +170739984458,243,0 +170739984506,243,0 +170739984554,243,0 +170739984603,243,0 +170739984651,243,0 +170739984699,243,0 +170739984747,243,0 +170739984795,243,0 +170739984843,243,0 +170739984891,243,0 +170739984940,243,0 +170739984988,243,0 +170739985036,243,0 +170739985086,243,0 +170739985134,243,0 +170739985182,244,0 +170739985230,243,0 +170739985277,243,0 +170739985325,243,0 +170739985373,243,0 +170739985423,243,0 +170739985472,243,0 +170739985520,243,0 +170739985568,243,0 +170739985618,244,0 +170739985666,243,0 +170739985714,243,0 +170739985762,243,0 +170739985810,244,0 +170739985858,243,0 +170739985906,243,0 +170739985954,243,0 +170739986003,243,0 +170739986051,243,0 +170739986099,243,0 +170739986147,243,0 +170739986197,243,0 +170739986246,243,0 +170739986296,243,0 +170739986343,243,0 +170739986391,243,0 +170739986439,244,0 +170739986487,243,0 +170739986535,243,0 +170739986583,244,0 +170739986631,243,0 +170739986679,243,0 +170739986727,243,0 +170739986777,243,0 +170739986826,243,0 +170739986874,244,0 +170739986924,243,0 +170739986972,243,0 +170739987019,243,0 +170739987067,243,0 +170739987115,244,0 +170739987163,243,0 +170739987211,243,0 +170739987259,244,0 +170739987309,243,0 +170739987358,243,0 +170739987406,243,0 +170739987454,244,0 +170739987504,243,0 +170739987552,244,0 +170739987599,243,0 +170739987647,244,0 +170739987695,244,0 +170739987743,244,0 +170739987791,244,0 +170739987839,243,0 +170739987887,244,0 +170739987935,244,0 +170739987982,243,0 +170739988030,243,0 +170739988078,243,0 +170739988126,243,0 +170739988174,244,0 +170739988222,243,0 +170739988270,243,0 +170739988318,243,0 +170739988366,243,0 +170739988414,243,0 +170739988461,244,0 +170739988511,243,0 +170739988559,243,0 +170739988608,243,0 +170739988656,243,0 +170739988704,244,0 +170739988752,244,0 +170739988800,243,0 +170739988848,243,0 +170739988896,243,0 +170739988943,244,0 +170739988993,243,0 +170739989041,243,0 +170739989089,243,0 +170739989137,243,0 +170739989186,244,0 +170739989234,243,0 +170739989282,243,0 +170739989330,243,0 +170739989378,244,0 +170739989426,244,0 +170739989473,244,0 +170739989521,244,0 +170739989569,243,0 +170739989617,244,0 +170739989665,243,0 +170739989715,243,0 +170739989762,243,0 +170739989810,243,0 +170739989858,244,0 +170739989906,243,0 +170739989954,243,0 +170739990002,243,0 +170739990050,243,0 +170739990098,244,0 +170739990146,244,0 +170739990193,243,0 +170739990241,243,0 +170739990289,244,0 +170739990337,244,0 +170739990387,243,0 +170739990435,243,0 +170739990484,243,0 +170739990532,244,0 +170739990580,243,0 +170739990628,244,0 +170739990678,243,0 +170739990726,243,0 +170739990775,244,0 +170739990823,243,0 +170739990871,243,0 +170739990919,244,0 +170739990967,244,0 +170739991015,243,0 +170739991063,243,0 +170739991112,244,0 +170739991162,243,0 +170739991211,243,0 +170739991261,243,0 +170739991309,244,0 +170739991358,243,0 +170739991408,244,0 +170739991457,243,0 +170739991505,244,0 +170739991555,244,0 +170739991603,244,0 +170739991651,243,0 +170739991699,243,0 +170739991747,243,0 +170739991795,244,0 +170739991843,243,0 +170739991892,243,0 +170739991942,244,0 +170739991990,244,0 +170739992039,244,0 +170739992089,243,0 +170739992137,243,0 +170739992185,244,0 +170739992233,243,0 +170739992282,243,0 +170739992330,243,0 +170739992380,243,0 +170739992428,244,0 +170739992477,243,0 +170739992525,243,0 +170739992573,243,0 +170739992623,243,0 +170739992672,244,0 +170739992721,243,0 +170739992771,243,0 +170739992819,244,0 +170739992868,244,0 +170739992916,243,0 +170739992966,243,0 +170739993014,243,0 +170739993063,243,0 +170739993111,243,0 +170739993159,243,0 +170739993207,243,0 +170739993255,243,0 +170739993303,243,0 +170739993351,243,0 +170739993399,243,0 +170739993449,244,0 +170739993497,243,0 +170739993546,243,0 +170739993594,243,0 +170739993642,244,0 +170739993690,243,0 +170739993738,243,0 +170739993786,244,0 +170739993834,244,0 +170739993882,243,0 +170739993930,243,0 +170739993978,243,0 +170739994026,244,0 +170739994074,244,0 +170739994123,243,0 +170739994171,243,0 +170739994219,243,0 +170739994267,244,0 +170739994315,243,0 +170739994365,243,0 +170739994412,244,0 +170739994460,244,0 +170739994510,244,0 +170739994558,244,0 +170739994607,244,0 +170739994655,243,0 +170739994703,244,0 +170739994751,244,0 +170739994799,243,0 +170739994849,244,0 +170739994897,243,0 +170739994945,244,0 +170739994993,244,0 +170739995041,243,0 +170739995089,244,0 +170739995137,243,0 +170739995185,244,0 +170739995234,244,0 +170739995282,243,0 +170739995330,243,0 +170739995379,244,0 +170739995427,243,0 +170739995475,244,0 +170739995523,244,0 +170739995571,243,0 +170739995619,243,0 +170739995667,243,0 +170739995717,243,0 +170739995765,244,0 +170739995813,243,0 +170739995862,243,0 +170739995912,244,0 +170739995960,243,0 +170739996009,244,0 +170739996059,243,0 +170739996107,243,0 +170739996156,243,0 +170739996204,244,0 +170739996252,244,0 +170739996300,244,0 +170739996350,243,0 +170739996399,243,0 +170739996447,243,0 +170739996497,243,0 +170739996546,243,0 +170739996596,243,0 +170739996644,243,0 +170739996692,243,0 +170739996741,243,0 +170739996791,243,0 +170739996839,243,0 +170739996887,243,0 +170739996935,243,0 +170739996984,243,0 +170739997034,244,0 +170739997082,244,0 +170739997131,244,0 +170739997179,243,0 +170739997229,244,0 +170739997277,244,0 +170739997326,244,0 +170739997376,243,0 +170739997424,243,0 +170739997472,243,0 +170739997520,244,0 +170739997567,243,0 +170739997615,243,0 +170739997664,243,0 +170739997711,244,0 +170739997759,244,0 +170739997809,243,0 +170739997858,244,0 +170739997908,243,0 +170739997958,244,0 +170739998007,243,0 +170739998055,243,0 +170739998105,243,0 +170739998154,244,0 +170739998202,244,0 +170739998251,243,0 +170739998301,243,0 +170739998351,244,0 +170739998398,244,0 +170739998448,243,0 +170739998496,244,0 +170739998544,243,0 +170739998592,243,0 +170739998640,243,0 +170739998688,244,0 +170739998736,243,0 +170739998784,244,0 +170739998833,243,0 +170739998883,243,0 +170739998931,244,0 +170739998980,244,0 +170739999028,243,0 +170739999076,243,0 +170739999126,243,0 +170739999174,243,0 +170739999222,243,0 +170739999271,243,0 +170739999319,243,0 +170739999369,243,0 +170739999418,243,0 +170739999468,244,0 +170739999516,243,0 +170739999564,243,0 +170739999611,244,0 +170739999659,243,0 +170739999707,243,0 +170739999755,244,0 +170739999803,244,0 +170739999851,244,0 +170739999899,243,0 +170739999947,243,0 +170739999995,244,0 +170740000043,244,0 +170740000092,244,0 +170740000140,244,0 +170740000188,243,0 +170740000236,243,0 +170740000284,243,0 +170740000334,243,0 +170740000382,244,0 +170740000431,244,0 +170740000479,244,0 +170740000529,244,0 +170740000577,243,0 +170740000625,243,0 +170740000673,244,0 +170740000722,244,0 +170740000770,244,0 +170740000820,244,0 +170740000868,244,0 +170740000916,243,0 +170740000965,244,0 +170740001015,243,0 +170740001063,243,0 +170740001111,244,0 +170740001160,244,0 +170740001208,243,0 +170740001258,244,0 +170740001307,243,0 +170740001357,243,0 +170740001405,244,0 +170740001453,244,0 +170740001502,243,0 +170740001550,243,0 +170740001598,243,0 +170740001646,243,0 +170740001694,243,0 +170740001742,244,0 +170740001791,243,0 +170740001840,243,0 +170740001890,243,0 +170740001939,243,0 +170740001989,243,0 +170740002038,243,0 +170740002086,244,0 +170740002134,244,0 +170740002182,243,0 +170740002230,244,0 +170740002278,244,0 +170740002326,244,0 +170740002375,244,0 +170740002423,244,0 +170740002471,244,0 +170740002519,243,0 +170740002567,243,0 +170740002615,244,0 +170740002662,243,0 +170740002710,244,0 +170740002758,243,0 +170740002806,244,0 +170740002854,243,0 +170740002902,244,0 +170740002950,243,0 +170740002998,244,0 +170740003046,243,0 +170740003094,244,0 +170740003141,243,0 +170740003189,243,0 +170740003237,244,0 +170740003285,244,0 +170740003335,244,0 +170740003383,244,0 +170740003431,243,0 +170740003480,244,0 +170740003528,244,0 +170740003576,243,0 +170740003626,243,0 +170740003673,244,0 +170740003723,244,0 +170740003772,243,0 +170740003820,244,0 +170740003868,244,0 +170740003916,244,0 +170740003966,243,0 +170740004014,243,0 +170740004063,244,0 +170740004113,244,0 +170740004162,244,0 +170740004210,244,0 +170740004258,244,0 +170740004308,243,0 +170740004356,244,0 +170740004404,244,0 +170740004452,244,0 +170740004500,244,0 +170740004548,244,0 +170740004597,244,0 +170740004645,243,0 +170740004693,243,0 +170740004741,244,0 +170740004791,243,0 +170740004840,244,0 +170740004888,243,0 +170740004937,243,0 +170740004987,243,0 +170740005036,243,0 +170740005084,244,0 +170740005134,244,0 +170740005183,244,0 +170740005231,244,0 +170740005281,244,0 +170740005329,244,0 +170740005377,244,0 +170740005425,243,0 +170740005474,243,0 +170740005524,243,0 +170740005572,244,0 +170740005621,243,0 +170740005669,244,0 +170740005719,244,0 +170740005767,244,0 +170740005815,244,0 +170740005863,243,0 +170740005912,244,0 +170740005960,244,0 +170740006008,244,0 +170740006058,244,0 +170740006106,244,0 +170740006155,244,0 +170740006205,244,0 +170740006253,243,0 +170740006300,244,0 +170740006348,244,0 +170740006398,243,0 +170740006446,243,0 +170740006495,244,0 +170740006543,244,0 +170740006591,244,0 +170740006639,244,0 +170740006687,244,0 +170740006737,243,0 +170740006786,244,0 +170740006834,244,0 +170740006884,244,0 +170740006933,244,0 +170740006983,244,0 +170740007031,244,0 +170740007080,244,0 +170740007128,243,0 +170740007176,243,0 +170740007224,244,0 +170740007272,244,0 +170740007320,244,0 +170740007368,244,0 +170740007416,243,0 +170740007466,243,0 +170740007515,244,0 +170740007563,243,0 +170740007611,244,0 +170740007659,244,0 +170740007707,244,0 +170740007755,243,0 +170740007804,244,0 +170740007852,243,0 +170740007900,244,0 +170740007950,244,0 +170740007998,244,0 +170740008047,243,0 +170740008095,243,0 +170740008143,244,0 +170740008191,243,0 +170740008239,244,0 +170740008289,243,0 +170740008337,244,0 +170740008384,244,0 +170740008432,244,0 +170740008482,243,0 +170740008531,243,0 +170740008581,244,0 +170740008629,244,0 +170740008679,244,0 +170740008728,243,0 +170740008776,244,0 +170740008824,244,0 +170740008872,243,0 +170740008921,243,0 +170740008969,244,0 +170740009017,243,0 +170740009065,243,0 +170740009113,243,0 +170740009161,244,0 +170740009209,243,0 +170740009259,244,0 +170740009307,244,0 +170740009356,244,0 +170740009406,244,0 +170740009455,244,0 +170740009503,244,0 +170740009551,244,0 +170740009599,244,0 +170740009647,244,0 +170740009695,244,0 +170740009743,244,0 +170740009793,243,0 +170740009841,244,0 +170740009890,243,0 +170740009938,243,0 +170740009986,244,0 +170740010034,243,0 +170740010082,243,0 +170740010131,244,0 +170740010179,244,0 +170740010228,244,0 +170740010276,243,0 +170740010324,244,0 +170740010372,244,0 +170740010421,244,0 +170740010469,243,0 +170740010517,243,0 +170740010565,244,0 +170740010615,244,0 +170740010663,244,0 +170740010710,244,0 +170740010758,244,0 +170740010806,243,0 +170740010854,244,0 +170740010902,244,0 +170740010950,244,0 +170740010998,244,0 +170740011046,244,0 +170740011094,244,0 +170740011141,244,0 +170740011189,244,0 +170740011237,244,0 +170740011285,244,0 +170740011333,244,0 +170740011383,244,0 +170740011430,244,0 +170740011478,243,0 +170740011526,244,0 +170740011576,243,0 +170740011624,244,0 +170740011672,244,0 +170740011720,244,0 +170740011769,244,0 +170740011817,244,0 +170740011865,244,0 +170740011913,244,0 +170740011961,244,0 +170740012009,244,0 +170740012056,243,0 +170740012104,244,0 +170740012152,243,0 +170740012200,244,0 +170740012248,244,0 +170740012296,243,0 +170740012344,244,0 +170740012392,244,0 +170740012440,244,0 +170740012488,244,0 +170740012536,243,0 +170740012585,244,0 +170740012635,243,0 +170740012683,244,0 +170740012732,244,0 +170740012781,244,0 +170740012829,244,0 +170740012879,244,0 +170740012927,244,0 +170740012975,244,0 +170740013023,244,0 +170740013071,244,0 +170740013120,244,0 +170740013168,244,0 +170740013218,244,0 +170740013266,244,0 +170740013314,244,0 +170740013363,244,0 +170740013413,244,0 +170740013462,244,0 +170740013512,244,0 +170740013561,244,0 +170740013609,244,0 +170740013657,244,0 +170740013705,244,0 +170740013753,243,0 +170740013803,244,0 +170740013851,244,0 +170740013900,244,0 +170740013950,244,0 +170740013999,244,0 +170740014047,243,0 +170740014097,244,0 +170740014146,244,0 +170740014196,244,0 +170740014244,244,0 +170740014292,244,0 +170740014340,244,0 +170740014389,244,0 +170740014439,244,0 +170740014487,244,0 +170740014535,244,0 +170740014584,244,0 +170740014632,244,0 +170740014680,244,0 +170740014728,244,0 +170740014776,244,0 +170740014824,244,0 +170740014872,244,0 +170740014920,244,0 +170740014968,244,0 +170740015016,243,0 +170740015064,244,0 +170740015112,244,0 +170740015161,244,0 +170740015209,243,0 +170740015257,243,0 +170740015305,244,0 +170740015355,244,0 +170740015403,244,0 +170740015451,244,0 +170740015500,244,0 +170740015550,244,0 +170740015599,244,0 +170740015647,244,0 +170740015695,244,0 +170740015743,244,0 +170740015791,244,0 +170740015841,244,0 +170740015890,244,0 +170740015938,244,0 +170740015986,244,0 +170740016034,244,0 +170740016082,244,0 +170740016130,244,0 +170740016178,244,0 +170740016227,244,0 +170740016275,244,0 +170740016325,244,0 +170740016374,244,0 +170740016422,244,0 +170740016472,244,0 +170740016520,244,0 +170740016568,244,0 +170740016616,244,0 +170740016664,244,0 +170740016712,244,0 +170740016760,244,0 +170740016809,244,0 +170740016857,244,0 +170740016905,244,0 +170740016953,244,0 +170740017001,244,0 +170740017049,244,0 +170740017099,244,0 +170740017148,244,0 +170740017196,244,0 +170740017244,244,0 +170740017292,244,0 +170740017342,244,0 +170740017389,244,0 +170740017439,244,0 +170740017488,244,0 +170740017536,244,0 +170740017584,244,0 +170740017634,244,0 +170740017683,244,0 +170740017731,244,0 +170740017779,244,0 +170740017827,244,0 +170740017875,244,0 +170740017923,244,0 +170740017971,244,0 +170740018019,244,0 +170740018069,244,0 +170740018118,244,0 +170740018166,244,0 +170740018214,244,0 +170740018262,244,0 +170740018310,244,0 +170740018358,244,0 +170740018406,244,0 +170740018454,244,0 +170740018502,244,0 +170740018551,244,0 +170740018601,244,0 +170740018649,244,0 +170740018697,243,0 +170740018746,244,0 +170740018796,244,0 +170740018844,244,0 +170740018892,244,0 +170740018940,244,0 +170740018988,244,0 +170740019037,244,0 +170740019085,244,0 +170740019133,244,0 +170740019181,244,0 +170740019229,244,0 +170740019277,244,0 +170740019327,243,0 +170740019375,244,0 +170740019424,244,0 +170740019472,244,0 +170740019520,244,0 +170740019568,244,0 +170740019618,244,0 +170740019666,244,0 +170740019715,244,0 +170740019763,244,0 +170740019813,244,0 +170740019860,244,0 +170740019910,244,0 +170740019959,244,0 +170740020007,243,0 +170740020055,244,0 +170740020103,244,0 +170740020151,244,0 +170740020199,244,0 +170740020247,244,0 +170740020295,244,0 +170740020343,243,0 +170740020391,244,0 +170740020440,244,0 +170740020488,244,0 +170740020536,244,0 +170740020584,243,0 +170740020632,244,0 +170740020680,244,0 +170740020727,244,0 +170740020775,244,0 +170740020823,244,0 +170740020871,244,0 +170740020919,244,0 +170740020967,244,0 +170740021015,244,0 +170740021063,244,0 +170740021111,244,0 +170740021158,244,0 +170740021206,244,0 +170740021254,244,0 +170740021302,244,0 +170740021350,243,0 +170740021398,244,0 +170740021447,244,0 +170740021495,244,0 +170740021545,244,0 +170740021594,244,0 +170740021644,244,0 +170740021692,244,0 +170740021740,244,0 +170740021788,244,0 +170740021836,244,0 +170740021885,244,0 +170740021933,244,0 +170740021983,244,0 +170740022031,244,0 +170740022079,244,0 +170740022128,244,0 +170740022176,244,0 +170740022224,244,0 +170740022272,244,0 +170740022320,244,0 +170740022368,244,0 +170740022418,244,0 +170740022466,244,0 +170740022515,244,0 +170740022563,244,0 +170740022613,244,0 +170740022661,244,0 +170740022709,244,0 +170740022757,244,0 +170740022805,244,0 +170740022853,244,0 +170740022901,244,0 +170740022949,244,0 +170740022996,244,0 +170740023044,244,0 +170740023092,244,0 +170740023140,244,0 +170740023188,244,0 +170740023236,244,0 +170740023284,244,0 +170740023332,244,0 +170740023380,244,0 +170740023428,244,0 +170740023476,244,0 +170740023524,244,0 +170740023574,244,0 +170740023622,244,0 +170740023671,244,0 +170740023719,244,0 +170740023767,244,0 +170740023815,244,0 +170740023863,244,0 +170740023913,244,0 +170740023961,244,0 +170740024009,244,0 +170740024056,244,0 +170740024104,244,0 +170740024152,244,0 +170740024200,244,0 +170740024248,244,0 +170740024296,244,0 +170740024344,244,0 +170740024392,244,0 +170740024440,244,0 +170740024489,244,0 +170740024537,244,0 +170740024587,244,0 +170740024635,244,0 +170740024683,244,0 +170740024731,244,0 +170740024779,244,0 +170740024827,244,0 +170740024874,244,0 +170740024924,244,0 +170740024972,244,0 +170740025020,244,0 +170740025068,244,0 +170740025116,244,0 +170740025164,244,0 +170740025212,244,0 +170740025260,244,0 +170740025308,244,0 +170740025357,244,0 +170740025405,244,0 +170740025453,244,0 +170740025501,244,0 +170740025549,244,0 +170740025597,244,0 +170740025645,244,0 +170740025693,244,0 +170740025742,244,0 +170740025792,244,0 +170740025840,244,0 +170740025889,244,0 +170740025937,244,0 +170740025985,244,0 +170740026033,244,0 +170740026081,244,0 +170740026129,244,0 +170740026177,244,0 +170740026227,244,0 +170740026275,244,0 +170740026323,244,0 +170740026372,244,0 +170740026420,244,0 +170740026468,244,0 +170740026516,244,0 +170740026564,244,0 +170740026614,244,0 +170740026662,244,0 +170740026711,244,0 +170740026759,244,0 +170740026807,244,0 +170740026856,244,0 +170740026904,244,0 +170740026952,244,0 +170740027002,244,0 +170740027050,244,0 +170740027099,244,0 +170740027147,244,0 +170740027195,244,0 +170740027243,244,0 +170740027291,244,0 +170740027339,244,0 +170740027387,244,0 +170740027435,244,0 +170740027483,244,0 +170740027531,244,0 +170740027580,244,0 +170740027628,244,0 +170740027676,244,0 +170740027724,244,0 +170740027774,244,0 +170740027822,244,0 +170740027871,244,0 +170740027919,244,0 +170740027967,244,0 +170740028015,244,0 +170740028063,244,0 +170740028113,244,0 +170740028161,244,0 +170740028209,244,0 +170740028258,244,0 +170740028306,244,0 +170740028356,244,0 +170740028404,244,0 +170740028452,244,0 +170740028501,244,0 +170740028549,244,0 +170740028597,244,0 +170740028645,244,0 +170740028693,244,0 +170740028741,244,0 +170740028789,244,0 +170740028838,244,0 +170740028886,244,0 +170740028936,244,0 +170740028984,245,0 +170740029032,244,0 +170740029080,244,0 +170740029128,244,0 +170740029177,244,0 +170740029225,244,0 +170740029273,244,0 +170740029321,244,0 +170740029369,244,0 +170740029417,244,0 +170740029465,244,0 +170740029515,244,0 +170740029563,244,0 +170740029610,244,0 +170740029660,244,0 +170740029709,244,0 +170740029759,244,0 +170740029807,244,0 +170740029857,244,0 +170740029906,244,0 +170740029954,244,0 +170740030004,244,0 +170740030052,244,0 +170740030101,244,0 +170740030151,244,0 +170740030199,244,0 +170740030246,244,0 +170740030296,244,0 +170740030345,244,0 +170740030395,244,0 +170740030443,244,0 +170740030492,244,0 +170740030540,244,0 +170740030588,244,0 +170740030636,244,0 +170740030684,244,0 +170740030734,244,0 +170740030782,244,0 +170740030830,244,0 +170740030878,244,0 +170740030925,244,0 +170740030973,244,0 +170740031021,244,0 +170740031069,244,0 +170740031117,244,0 +170740031165,244,0 +170740031213,244,0 +170740031261,244,0 +170740031309,244,0 +170740031356,244,0 +170740031406,244,0 +170740031454,244,0 +170740031503,244,0 +170740031553,244,0 +170740031602,244,0 +170740031650,244,0 +170740031698,244,0 +170740031746,244,0 +170740031794,244,0 +170740031842,244,0 +170740031890,244,0 +170740031938,244,0 +170740031988,244,0 +170740032036,244,0 +170740032084,244,0 +170740032132,244,0 +170740032181,244,0 +170740032231,244,0 +170740032280,244,0 +170740032330,244,0 +170740032379,244,0 +170740032427,244,0 +170740032477,244,0 +170740032525,244,0 +170740032574,244,0 +170740032622,244,0 +170740032670,244,0 +170740032720,244,0 +170740032768,244,0 +170740032815,244,0 +170740032863,244,0 +170740032911,244,0 +170740032961,244,0 +170740033009,244,0 +170740033056,244,0 +170740033104,244,0 +170740033154,244,0 +170740033202,244,0 +170740033250,244,0 +170740033298,244,0 +170740033346,244,0 +170740033395,244,0 +170740033443,244,0 +170740033493,244,0 +170740033542,244,0 +170740033590,244,0 +170740033638,244,0 +170740033686,244,0 +170740033734,244,0 +170740033782,244,0 +170740033829,244,0 +170740033877,244,0 +170740033927,244,0 +170740033975,244,0 +170740034023,244,0 +170740034071,244,0 +170740034118,244,0 +170740034166,244,0 +170740034214,244,0 +170740034262,244,0 +170740034310,244,0 +170740034358,244,0 +170740034406,244,0 +170740034454,244,0 +170740034502,244,0 +170740034549,244,0 +170740034597,244,0 +170740034645,244,0 +170740034693,244,0 +170740034741,244,0 +170740034789,244,0 +170740034837,244,0 +170740034885,244,0 +170740034932,244,0 +170740034980,244,0 +170740035028,245,0 +170740035076,244,0 +170740035124,244,0 +170740035172,244,0 +170740035220,244,0 +170740035270,244,0 +170740035319,244,0 +170740035367,244,0 +170740035415,244,0 +170740035463,244,0 +170740035511,244,0 +170740035559,244,0 +170740035607,244,0 +170740035655,244,0 +170740035702,244,0 +170740035752,244,0 +170740035800,244,0 +170740035848,244,0 +170740035896,244,0 +170740035945,244,0 +170740035993,244,0 +170740036041,244,0 +170740036089,244,0 +170740036137,244,0 +170740036187,244,0 +170740036234,244,0 +170740036282,244,0 +170740036332,243,0 +170740036380,244,0 +170740036428,244,0 +170740036477,244,0 +170740036525,244,0 +170740036573,244,0 +170740036621,244,0 +170740036669,244,0 +170740036717,244,0 +170740036767,244,0 +170740036814,244,0 +170740036862,244,0 +170740036910,244,0 +170740036958,244,0 +170740037006,244,0 +170740037054,244,0 +170740037102,244,0 +170740037152,244,0 +170740037199,244,0 +170740037247,244,0 +170740037295,244,0 +170740037343,244,0 +170740037393,244,0 +170740037441,244,0 +170740037490,244,0 +170740037538,244,0 +170740037588,244,0 +170740037636,244,0 +170740037684,244,0 +170740037733,244,0 +170740037781,244,0 +170740037829,244,0 +170740037877,244,0 +170740037925,244,0 +170740037973,244,0 +170740038021,244,0 +170740038069,244,0 +170740038116,244,0 +170740038164,244,0 +170740038212,244,0 +170740038260,244,0 +170740038308,244,0 +170740038357,244,0 +170740038405,244,0 +170740038453,244,0 +170740038501,244,0 +170740038549,244,0 +170740038597,244,0 +170740038645,244,0 +170740038693,244,0 +170740038741,244,0 +170740038789,244,0 +170740038836,244,0 +170740038886,244,0 +170740038934,244,0 +170740038983,244,0 +170740039033,244,0 +170740039082,244,0 +170740039130,244,0 +170740039178,244,0 +170740039226,244,0 +170740039274,244,0 +170740039322,244,0 +170740039371,244,0 +170740039419,244,0 +170740039467,244,0 +170740039515,244,0 +170740039563,244,0 +170740039611,244,0 +170740039659,244,0 +170740039707,244,0 +170740039755,244,0 +170740039803,244,0 +170740039851,244,0 +170740039899,244,0 +170740039947,244,0 +170740039995,244,0 +170740040043,244,0 +170740040092,244,0 +170740040140,244,0 +170740040188,244,0 +170740040236,244,0 +170740040284,244,0 +170740040332,244,0 +170740040379,244,0 +170740040427,244,0 +170740040475,244,0 +170740040523,244,0 +170740040571,244,0 +170740040619,244,0 +170740040667,244,0 +170740040715,244,0 +170740040763,243,0 +170740040811,244,0 +170740040859,244,0 +170740040907,244,0 +170740040954,244,0 +170740041002,244,0 +170740041050,244,0 +170740041098,244,0 +170740041146,244,0 +170740041194,244,0 +170740041242,244,0 +170740041290,244,0 +170740041338,244,0 +170740041385,244,0 +170740041435,243,0 +170740041483,244,0 +170740041531,244,0 +170740041579,244,0 +170740041626,244,0 +170740041674,244,0 +170740041722,244,0 +170740041770,244,0 +170740041818,244,0 +170740041868,244,0 +170740041916,244,0 +170740041964,244,0 +170740042013,244,0 +170740042061,244,0 +170740042110,244,0 +170740042158,244,0 +170740042206,244,0 +170740042254,244,0 +170740042302,244,0 +170740042352,244,0 +170740042399,244,0 +170740042447,244,0 +170740042495,244,0 +170740042543,244,0 +170740042593,244,0 +170740042640,244,0 +170740042688,244,0 +170740042738,244,0 +170740042787,244,0 +170740042835,244,0 +170740042883,244,0 +170740042933,244,0 +170740042982,244,0 +170740043030,244,0 +170740043078,244,0 +170740043126,244,0 +170740043174,244,0 +170740043222,244,0 +170740043272,244,0 +170740043321,244,0 +170740043371,244,0 +170740043419,244,0 +170740043467,244,0 +170740043515,244,0 +170740043564,244,0 +170740043614,244,0 +170740043663,244,0 +170740043711,244,0 +170740043761,244,0 +170740043809,244,0 +170740043857,244,0 +170740043905,244,0 +170740043953,244,0 +170740044001,244,0 +170740044048,244,0 +170740044096,244,0 +170740044144,244,0 +170740044192,244,0 +170740044240,244,0 +170740044288,244,0 +170740044336,244,0 +170740044384,244,0 +170740044434,244,0 +170740044482,244,0 +170740044530,244,0 +170740044579,244,0 +170740044627,244,0 +170740044675,244,0 +170740044723,244,0 +170740044771,244,0 +170740044819,244,0 +170740044867,244,0 +170740044915,244,0 +170740044963,244,0 +170740045013,244,0 +170740045061,244,0 +170740045109,244,0 +170740045156,244,0 +170740045204,244,0 +170740045252,244,0 +170740045302,244,0 +170740045350,244,0 +170740045398,244,0 +170740045447,244,0 +170740045497,244,0 +170740045545,244,0 +170740045593,244,0 +170740045641,244,0 +170740045689,244,0 +170740045737,244,0 +170740045786,244,0 +170740045834,244,0 +170740045882,244,0 +170740045932,244,0 +170740045981,244,0 +170740046029,244,0 +170740046077,244,0 +170740046127,244,0 +170740046175,244,0 +170740046222,244,0 +170740046270,244,0 +170740046318,244,0 +170740046366,244,0 +170740046414,244,0 +170740046462,244,0 +170740046510,244,0 +170740046558,244,0 +170740046605,244,0 +170740046653,244,0 +170740046701,244,0 +170740046749,244,0 +170740046797,244,0 +170740046846,244,0 +170740046896,244,0 +170740046944,244,0 +170740046992,245,0 +170740047041,244,0 +170740047089,244,0 +170740047139,244,0 +170740047187,244,0 +170740047235,244,0 +170740047283,244,0 +170740047331,244,0 +170740047380,244,0 +170740047429,244,0 +170740047477,244,0 +170740047525,244,0 +170740047573,244,0 +170740047621,244,0 +170740047669,244,0 +170740047718,245,0 +170740047768,244,0 +170740047816,244,0 +170740047865,244,0 +170740047915,244,0 +170740047963,244,0 +170740048011,244,0 +170740048059,244,0 +170740048108,244,0 +170740048156,244,0 +170740048204,244,0 +170740048252,244,0 +170740048301,244,0 +170740048349,244,0 +170740048397,244,0 +170740048445,244,0 +170740048495,245,0 +170740048544,244,0 +170740048594,244,0 +170740048642,244,0 +170740048690,244,0 +170740048739,245,0 +170740048789,244,0 +170740048837,244,0 +170740048886,244,0 +170740048934,244,0 +170740048982,244,0 +170740049030,244,0 +170740049078,244,0 +170740049128,244,0 +170740049177,244,0 +170740049227,244,0 +170740049275,244,0 +170740049323,244,0 +170740049371,244,0 +170740049419,244,0 +170740049467,244,0 +170740049515,244,0 +170740049562,244,0 +170740049612,244,0 +170740049660,244,0 +170740049709,244,0 +170740049757,244,0 +170740049805,244,0 +170740049853,244,0 +170740049901,244,0 +170740049951,244,0 +170740049999,244,0 +170740050047,244,0 +170740050095,244,0 +170740050142,244,0 +170740050192,244,0 +170740050240,244,0 +170740050288,244,0 +170740050336,244,0 +170740050384,244,0 +170740050433,244,0 +170740050481,244,0 +170740050531,244,0 +170740050580,244,0 +170740050628,244,0 +170740050678,244,0 +170740050727,244,0 +170740050775,244,0 +170740050825,244,0 +170740050874,244,0 +170740050922,244,0 +170740050972,244,0 +170740051021,244,0 +170740051071,244,0 +170740051119,244,0 +170740051167,245,0 +170740051215,244,0 +170740051263,244,0 +170740051312,244,0 +170740051360,244,0 +170740051408,244,0 +170740051457,244,0 +170740051505,244,0 +170740051553,244,0 +170740051601,244,0 +170740051649,244,0 +170740051697,244,0 +170740051745,244,0 +170740051793,244,0 +170740051841,244,0 +170740051889,244,0 +170740051939,244,0 +170740051987,244,0 +170740052035,244,0 +170740052084,244,0 +170740052134,244,0 +170740052183,244,0 +170740052233,244,0 +170740052280,244,0 +170740052330,244,0 +170740052378,244,0 +170740052427,244,0 +170740052477,244,0 +170740052525,244,0 +170740052573,244,0 +170740052621,244,0 +170740052669,244,0 +170740052718,244,0 +170740052766,244,0 +170740052816,244,0 +170740052864,244,0 +170740052912,244,0 +170740052960,244,0 +170740053009,244,0 +170740053057,244,0 +170740053105,244,0 +170740053153,244,0 +170740053203,244,0 +170740053252,244,0 +170740053300,244,0 +170740053348,244,0 +170740053396,244,0 +170740053444,244,0 +170740053494,244,0 +170740053542,245,0 +170740053589,244,0 +170740053637,244,0 +170740053687,244,0 +170740053736,244,0 +170740053786,244,0 +170740053834,244,0 +170740053882,244,0 +170740053931,244,0 +170740053979,245,0 +170740054029,244,0 +170740054077,244,0 +170740054125,244,0 +170740054173,244,0 +170740054221,244,0 +170740054269,245,0 +170740054317,244,0 +170740054365,244,0 +170740054413,244,0 +170740054460,244,0 +170740054508,244,0 +170740054558,244,0 +170740054606,244,0 +170740054654,244,0 +170740054702,244,0 +170740054751,244,0 +170740054799,244,0 +170740054849,244,0 +170740054899,244,0 +170740054946,244,0 +170740054994,244,0 +170740055044,245,0 +170740055092,245,0 +170740055140,245,0 +170740055189,244,0 +170740055239,244,0 +170740055287,244,0 +170740055335,244,0 +170740055384,245,0 +170740055432,244,0 +170740055482,244,0 +170740055531,244,0 +170740055579,244,0 +170740055627,244,0 +170740055675,244,0 +170740055723,244,0 +170740055771,245,0 +170740055821,244,0 +170740055869,244,0 +170740055917,244,0 +170740055965,245,0 +170740056013,245,0 +170740056062,244,0 +170740056112,244,0 +170740056161,244,0 +170740056209,244,0 +170740056257,244,0 +170740056305,244,0 +170740056353,244,0 +170740056403,244,0 +170740056451,244,0 +170740056499,244,0 +170740056547,244,0 +170740056595,244,0 +170740056643,244,0 +170740056691,244,0 +170740056740,245,0 +170740056788,244,0 +170740056836,244,0 +170740056884,244,0 +170740056934,244,0 +170740056982,244,0 +170740057030,244,0 +170740057078,245,0 +170740057126,245,0 +170740057174,244,0 +170740057222,244,0 +170740057271,244,0 +170740057319,244,0 +170740057369,244,0 +170740057417,244,0 +170740057465,244,0 +170740057513,245,0 +170740057561,245,0 +170740057610,244,0 +170740057658,244,0 +170740057706,244,0 +170740057754,244,0 +170740057804,244,0 +170740057851,244,0 +170740057901,245,0 +170740057949,244,0 +170740057997,244,0 +170740058046,244,0 +170740058096,244,0 +170740058144,244,0 +170740058192,244,0 +170740058240,244,0 +170740058288,244,0 +170740058337,244,0 +170740058387,244,0 +170740058435,245,0 +170740058484,245,0 +170740058534,245,0 +170740058582,244,0 +170740058631,245,0 +170740058679,244,0 +170740058729,244,0 +170740058777,244,0 +170740058825,244,0 +170740058873,244,0 +170740058921,244,0 +170740058969,244,0 +170740059018,245,0 +170740059066,245,0 +170740059114,244,0 +170740059162,244,0 +170740059210,244,0 +170740059258,244,0 +170740059308,244,0 +170740059357,244,0 +170740059405,244,0 +170740059453,244,0 +170740059503,244,0 +170740059550,244,0 +170740059598,244,0 +170740059646,244,0 +170740059694,245,0 +170740059744,245,0 +170740059793,245,0 +170740059841,245,0 +170740059889,244,0 +170740059939,244,0 +170740059988,245,0 +170740060038,245,0 +170740060086,244,0 +170740060134,244,0 +170740060183,244,0 +170740060233,245,0 +170740060281,244,0 +170740060329,244,0 +170740060378,244,0 +170740060426,244,0 +170740060476,244,0 +170740060524,244,0 +170740060573,244,0 +170740060621,244,0 +170740060669,244,0 +170740060717,245,0 +170740060765,245,0 +170740060813,244,0 +170740060861,244,0 +170740060911,245,0 +170740060959,244,0 +170740061007,244,0 +170740061055,245,0 +170740061103,245,0 +170740061152,244,0 +170740061200,244,0 +170740061248,244,0 +170740061298,244,0 +170740061346,244,0 +170740061395,245,0 +170740061443,244,0 +170740061491,245,0 +170740061540,245,0 +170740061588,244,0 +170740061638,244,0 +170740061686,245,0 +170740061734,244,0 +170740061783,244,0 +170740061831,244,0 +170740061879,244,0 +170740061927,245,0 +170740061975,245,0 +170740062023,245,0 +170740062071,244,0 +170740062119,245,0 +170740062167,245,0 +170740062215,244,0 +170740062263,245,0 +170740062313,245,0 +170740062362,244,0 +170740062412,244,0 +170740062459,245,0 +170740062509,244,0 +170740062557,244,0 +170740062605,245,0 +170740062653,244,0 +170740062701,244,0 +170740062750,244,0 +170740062798,244,0 +170740062846,245,0 +170740062894,244,0 +170740062942,244,0 +170740062991,244,0 +170740063039,244,0 +170740063087,244,0 +170740063135,245,0 +170740063183,245,0 +170740063231,244,0 +170740063278,245,0 +170740063326,245,0 +170740063374,244,0 +170740063422,245,0 +170740063470,245,0 +170740063518,244,0 +170740063566,245,0 +170740063614,244,0 +170740063662,245,0 +170740063709,244,0 +170740063757,244,0 +170740063807,244,0 +170740063855,244,0 +170740063902,245,0 +170740063952,244,0 +170740064000,245,0 +170740064048,245,0 +170740064097,244,0 +170740064145,244,0 +170740064193,245,0 +170740064241,245,0 +170740064289,244,0 +170740064337,244,0 +170740064385,245,0 +170740064433,244,0 +170740064481,245,0 +170740064530,245,0 +170740064578,245,0 +170740064626,244,0 +170740064674,244,0 +170740064722,244,0 +170740064770,244,0 +170740064818,245,0 +170740064865,245,0 +170740064913,245,0 +170740064961,245,0 +170740065009,244,0 +170740065057,245,0 +170740065105,245,0 +170740065153,244,0 +170740065201,245,0 +170740065249,244,0 +170740065296,244,0 +170740065344,244,0 +170740065392,244,0 +170740065440,245,0 +170740065488,244,0 +170740065536,245,0 +170740065585,244,0 +170740065633,245,0 +170740065681,245,0 +170740065729,244,0 +170740065778,244,0 +170740065826,245,0 +170740065874,244,0 +170740065922,244,0 +170740065970,244,0 +170740066018,244,0 +170740066066,244,0 +170740066115,244,0 +170740066163,244,0 +170740066211,244,0 +170740066260,244,0 +170740066308,245,0 +170740066356,245,0 +170740066406,245,0 +170740066454,245,0 +170740066502,245,0 +170740066549,245,0 +170740066599,244,0 +170740066647,244,0 +170740066695,244,0 +170740066743,244,0 +170740066790,245,0 +170740066838,244,0 +170740066886,244,0 +170740066934,245,0 +170740066982,244,0 +170740067030,244,0 +170740067078,245,0 +170740067126,244,0 +170740067174,245,0 +170740067221,244,0 +170740067269,244,0 +170740067317,244,0 +170740067367,244,0 +170740067416,244,0 +170740067464,244,0 +170740067514,245,0 +170740067562,245,0 +170740067610,244,0 +170740067658,245,0 +170740067706,245,0 +170740067754,244,0 +170740067803,245,0 +170740067851,245,0 +170740067901,244,0 +170740067949,244,0 +170740067997,245,0 +170740068046,245,0 +170740068094,244,0 +170740068142,245,0 +170740068191,245,0 +170740068239,244,0 +170740068287,245,0 +170740068335,245,0 +170740068385,244,0 +170740068433,244,0 +170740068481,245,0 +170740068530,244,0 +170740068580,244,0 +170740068628,244,0 +170740068676,244,0 +170740068724,244,0 +170740068772,244,0 +170740068820,244,0 +170740068868,245,0 +170740068916,245,0 +170740068964,244,0 +170740069011,244,0 +170740069059,244,0 +170740069109,244,0 +170740069157,244,0 +170740069205,244,0 +170740069253,244,0 +170740069301,244,0 +170740069349,244,0 +170740069397,244,0 +170740069445,244,0 +170740069493,244,0 +170740069541,244,0 +170740069589,244,0 +170740069637,244,0 +170740069685,245,0 +170740069733,244,0 +170740069782,245,0 +170740069831,244,0 +170740069879,244,0 +170740069927,244,0 +170740069975,244,0 +170740070023,244,0 +170740070073,245,0 +170740070121,244,0 +170740070170,244,0 +170740070218,245,0 +170740070266,244,0 +170740070314,244,0 +170740070362,244,0 +170740070410,244,0 +170740070459,244,0 +170740070507,245,0 +170740070555,244,0 +170740070603,244,0 +170740070653,244,0 +170740070701,244,0 +170740070750,244,0 +170740070798,245,0 +170740070846,244,0 +170740070894,245,0 +170740070944,245,0 +170740070993,244,0 +170740071041,244,0 +170740071091,244,0 +170740071139,245,0 +170740071188,244,0 +170740071238,244,0 +170740071287,244,0 +170740071335,244,0 +170740071383,244,0 +170740071431,244,0 +170740071479,244,0 +170740071529,244,0 +170740071577,244,0 +170740071625,244,0 +170740071673,244,0 +170740071721,245,0 +170740071769,244,0 +170740071817,244,0 +170740071865,244,0 +170740071912,244,0 +170740071962,244,0 +170740072010,244,0 +170740072059,244,0 +170740072108,244,0 +170740072157,244,0 +170740072207,244,0 +170740072255,244,0 +170740072303,244,0 +170740072351,244,0 +170740072400,244,0 +170740072448,244,0 +170740072496,244,0 +170740072544,244,0 +170740072592,244,0 +170740072642,244,0 +170740072690,244,0 +170740072739,244,0 +170740072787,245,0 +170740072835,244,0 +170740072884,244,0 +170740072932,244,0 +170740072980,244,0 +170740073028,244,0 +170740073076,244,0 +170740073124,244,0 +170740073173,244,0 +170740073221,244,0 +170740073269,244,0 +170740073317,244,0 +170740073367,244,0 +170740073415,244,0 +170740073463,244,0 +170740073511,244,0 +170740073559,244,0 +170740073606,244,0 +170740073654,244,0 +170740073703,244,0 +170740073750,244,0 +170740073798,244,0 +170740073846,244,0 +170740073894,244,0 +170740073942,244,0 +170740073990,244,0 +170740074040,244,0 +170740074089,244,0 +170740074137,244,0 +170740074187,244,0 +170740074235,244,0 +170740074283,244,0 +170740074331,244,0 +170740074379,244,0 +170740074427,244,0 +170740074475,244,0 +170740074523,244,0 +170740074571,244,0 +170740074619,244,0 +170740074667,244,0 +170740074716,244,0 +170740074764,244,0 +170740074814,244,0 +170740074863,244,0 +170740074911,244,0 +170740074959,244,0 +170740075009,245,0 +170740075057,245,0 +170740075105,244,0 +170740075153,244,0 +170740075200,244,0 +170740075248,244,0 +170740075298,244,0 +170740075346,244,0 +170740075394,244,0 +170740075442,244,0 +170740075491,244,0 +170740075539,244,0 +170740075589,244,0 +170740075637,244,0 +170740075685,244,0 +170740075734,244,0 +170740075784,244,0 +170740075832,244,0 +170740075880,244,0 +170740075928,244,0 +170740075975,244,0 +170740076025,244,0 +170740076073,244,0 +170740076121,244,0 +170740076169,244,0 +170740076217,244,0 +170740076266,244,0 +170740076316,244,0 +170740076364,244,0 +170740076413,244,0 +170740076461,244,0 +170740076509,244,0 +170740076557,244,0 +170740076605,244,0 +170740076653,244,0 +170740076701,244,0 +170740076749,244,0 +170740076797,244,0 +170740076845,244,0 +170740076893,244,0 +170740076941,244,0 +170740076990,244,0 +170740077038,244,0 +170740077086,244,0 +170740077134,244,0 +170740077182,244,0 +170740077230,244,0 +170740077278,244,0 +170740077326,244,0 +170740077376,244,0 +170740077424,244,0 +170740077473,244,0 +170740077521,244,0 +170740077569,244,0 +170740077617,244,0 +170740077667,244,0 +170740077716,244,0 +170740077764,245,0 +170740077814,244,0 +170740077862,244,0 +170740077910,244,0 +170740077958,244,0 +170740078006,244,0 +170740078054,244,0 +170740078103,244,0 +170740078151,244,0 +170740078199,244,0 +170740078247,244,0 +170740078295,244,0 +170740078343,244,0 +170740078392,244,0 +170740078440,244,0 +170740078488,244,0 +170740078536,244,0 +170740078586,244,0 +170740078634,244,0 +170740078682,244,0 +170740078730,244,0 +170740078778,244,0 +170740078826,244,0 +170740078875,244,0 +170740078923,244,0 +170740078971,244,0 +170740079019,244,0 +170740079069,244,0 +170740079118,244,0 +170740079168,245,0 +170740079216,244,0 +170740079265,244,0 +170740079313,244,0 +170740079361,244,0 +170740079409,244,0 +170740079457,244,0 +170740079505,244,0 +170740079555,244,0 +170740079604,244,0 +170740079652,244,0 +170740079700,245,0 +170740079748,244,0 +170740079796,244,0 +170740079844,245,0 +170740079894,244,0 +170740079942,244,0 +170740079990,244,0 diff --git a/laser_value/0209-00.csv b/laser_value/0209-00.csv new file mode 100644 index 0000000..369d2ec --- /dev/null +++ b/laser_value/0209-00.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170740080040,244,0 +170740080089,244,0 +170740080139,244,0 +170740080187,244,0 +170740080235,244,0 +170740080284,244,0 +170740080332,244,0 +170740080382,244,0 +170740080431,244,0 +170740080481,244,0 +170740080529,244,0 +170740080577,244,0 +170740080625,244,0 +170740080673,244,0 +170740080722,244,0 +170740080770,244,0 +170740080820,244,0 +170740080868,244,0 +170740080917,244,0 +170740080965,244,0 +170740081013,244,0 +170740081061,244,0 +170740081111,244,0 +170740081160,244,0 +170740081208,244,0 +170740081258,244,0 +170740081306,244,0 +170740081354,244,0 +170740081403,244,0 +170740081451,244,0 +170740081499,244,0 +170740081547,244,0 +170740081595,244,0 +170740081644,244,0 +170740081692,244,0 +170740081740,244,0 +170740081788,244,0 +170740081836,244,0 +170740081884,244,0 +170740081933,244,0 +170740081981,244,0 +170740082029,244,0 +170740082077,244,0 +170740082125,244,0 +170740082173,244,0 +170740082221,244,0 +170740082269,244,0 +170740082318,244,0 +170740082366,244,0 +170740082416,244,0 +170740082463,244,0 +170740082511,244,0 +170740082561,244,0 +170740082611,244,0 +170740082658,244,0 +170740082706,244,0 +170740082754,244,0 +170740082802,244,0 +170740082850,244,0 +170740082898,244,0 +170740082946,244,0 +170740082994,244,0 +170740083043,244,0 +170740083091,244,0 +170740083139,244,0 +170740083187,244,0 +170740083236,244,0 +170740083286,244,0 +170740083335,244,0 +170740083383,244,0 +170740083431,244,0 +170740083481,244,0 +170740083530,244,0 +170740083580,244,0 +170740083628,244,0 +170740083677,244,0 +170740083725,244,0 +170740083773,244,0 +170740083821,244,0 +170740083869,244,0 +170740083917,244,0 +170740083967,244,0 +170740084016,244,0 +170740084064,244,0 +170740084112,244,0 +170740084160,244,0 +170740084208,244,0 +170740084256,244,0 +170740084304,244,0 +170740084352,244,0 +170740084402,244,0 +170740084451,244,0 +170740084501,244,0 +170740084548,244,0 +170740084598,244,0 +170740084646,244,0 +170740084694,244,0 +170740084742,244,0 +170740084791,244,0 +170740084841,244,0 +170740084891,244,0 +170740084938,244,0 +170740084986,244,0 +170740085034,244,0 +170740085084,244,0 +170740085133,244,0 +170740085181,244,0 +170740085231,244,0 +170740085279,244,0 +170740085327,244,0 +170740085375,244,0 +170740085424,243,0 +170740085474,244,0 +170740085523,244,0 +170740085571,244,0 +170740085621,244,0 +170740085669,244,0 +170740085716,244,0 +170740085764,244,0 +170740085812,244,0 +170740085862,244,0 +170740085910,244,0 +170740085959,244,0 +170740086007,244,0 +170740086055,244,0 +170740086103,244,0 +170740086153,244,0 +170740086201,244,0 +170740086249,244,0 +170740086297,244,0 +170740086346,244,0 +170740086394,244,0 +170740086442,244,0 +170740086490,244,0 +170740086538,244,0 +170740086586,244,0 +170740086634,244,0 +170740086682,244,0 +170740086730,244,0 +170740086778,244,0 +170740086826,244,0 +170740086874,244,0 +170740086921,244,0 +170740086969,244,0 +170740087017,244,0 +170740087065,244,0 +170740087113,244,0 +170740087161,244,0 +170740087209,244,0 +170740087257,244,0 +170740087306,244,0 +170740087354,244,0 +170740087404,244,0 +170740087452,244,0 +170740087500,244,0 +170740087548,244,0 +170740087596,244,0 +170740087643,244,0 +170740087693,244,0 +170740087743,243,0 +170740087790,244,0 +170740087840,244,0 +170740087888,244,0 +170740087936,244,0 +170740087984,244,0 +170740088032,244,0 +170740088081,244,0 +170740088131,244,0 +170740088180,244,0 +170740088230,244,0 +170740088278,244,0 +170740088326,244,0 +170740088375,244,0 +170740088423,244,0 +170740088473,244,0 +170740088521,244,0 +170740088570,244,0 +170740088620,244,0 +170740088669,244,0 +170740088717,244,0 +170740088765,244,0 +170740088813,244,0 +170740088861,244,0 +170740088909,244,0 +170740088957,244,0 +170740089005,244,0 +170740089054,244,0 +170740089102,244,0 +170740089150,244,0 +170740089198,244,0 +170740089246,244,0 +170740089294,244,0 +170740089342,244,0 +170740089390,244,0 +170740089438,244,0 +170740089486,244,0 +170740089534,244,0 +170740089582,244,0 +170740089630,244,0 +170740089678,244,0 +170740089726,244,0 +170740089774,244,0 +170740089822,244,0 +170740089870,244,0 +170740089919,244,0 +170740089967,244,0 +170740090015,244,0 +170740090065,244,0 +170740090113,244,0 +170740090161,244,0 +170740090209,244,0 +170740090257,244,0 +170740090305,244,0 +170740090353,244,0 +170740090401,244,0 +170740090450,244,0 +170740090500,244,0 +170740090548,244,0 +170740090596,244,0 +170740090643,244,0 +170740090691,244,0 +170740090739,243,0 +170740090787,244,0 +170740090835,244,0 +170740090885,244,0 +170740090934,244,0 +170740090984,244,0 +170740091031,244,0 +170740091079,244,0 +170740091127,244,0 +170740091175,244,0 +170740091223,244,0 +170740091271,244,0 +170740091319,244,0 +170740091367,244,0 +170740091416,244,0 +170740091464,244,0 +170740091512,244,0 +170740091560,244,0 +170740091608,244,0 +170740091656,244,0 +170740091706,244,0 +170740091755,244,0 +170740091803,244,0 +170740091851,244,0 +170740091901,243,0 +170740091950,244,0 +170740091998,244,0 +170740092046,244,0 +170740092094,244,0 +170740092144,244,0 +170740092193,244,0 +170740092243,244,0 +170740092291,244,0 +170740092339,244,0 +170740092387,244,0 +170740092435,244,0 +170740092483,244,0 +170740092532,244,0 +170740092580,244,0 +170740092628,244,0 +170740092677,244,0 +170740092726,244,0 +170740092773,244,0 +170740092821,244,0 +170740092871,244,0 +170740092919,244,0 +170740092967,243,0 +170740093015,244,0 +170740093062,244,0 +170740093110,244,0 +170740093160,244,0 +170740093208,244,0 +170740093257,244,0 +170740093305,244,0 +170740093355,244,0 +170740093403,244,0 +170740093452,244,0 +170740093500,244,0 +170740093548,244,0 +170740093596,244,0 +170740093644,244,0 +170740093694,244,0 +170740093742,244,0 +170740093791,244,0 +170740093839,244,0 +170740093887,244,0 +170740093935,244,0 +170740093985,244,0 +170740094034,244,0 +170740094082,244,0 +170740094132,244,0 +170740094179,244,0 +170740094227,244,0 +170740094275,244,0 +170740094325,244,0 +170740094373,244,0 +170740094421,244,0 +170740094469,244,0 +170740094517,244,0 +170740094565,244,0 +170740094613,244,0 +170740094662,244,0 +170740094710,244,0 +170740094758,244,0 +170740094806,244,0 +170740094854,244,0 +170740094902,244,0 +170740094951,244,0 +170740094999,244,0 +170740095049,244,0 +170740095098,244,0 +170740095146,244,0 +170740095196,244,0 +170740095245,244,0 +170740095295,244,0 +170740095344,244,0 +170740095394,244,0 +170740095443,244,0 +170740095491,244,0 +170740095539,244,0 +170740095589,244,0 +170740095637,244,0 +170740095685,244,0 +170740095733,244,0 +170740095781,244,0 +170740095829,244,0 +170740095877,244,0 +170740095925,244,0 +170740095973,244,0 +170740096022,244,0 +170740096070,244,0 +170740096118,244,0 +170740096166,244,0 +170740096214,244,0 +170740096262,244,0 +170740096311,244,0 +170740096361,244,0 +170740096409,244,0 +170740096457,244,0 +170740096506,244,0 +170740096556,244,0 +170740096604,243,0 +170740096652,244,0 +170740096701,244,0 +170740096749,244,0 +170740096799,244,0 +170740096848,244,0 +170740096898,244,0 +170740096946,244,0 +170740096995,244,0 +170740097045,244,0 +170740097093,244,0 +170740097141,244,0 +170740097189,244,0 +170740097238,244,0 +170740097288,244,0 +170740097338,244,0 +170740097385,244,0 +170740097435,244,0 +170740097483,244,0 +170740097531,244,0 +170740097579,244,0 +170740097627,244,0 +170740097676,244,0 +170740097724,244,0 +170740097772,244,0 +170740097820,244,0 +170740097868,244,0 +170740097916,244,0 +170740097965,244,0 +170740098013,244,0 +170740098061,244,0 +170740098109,244,0 +170740098157,244,0 +170740098205,243,0 +170740098252,244,0 +170740098300,244,0 +170740098348,244,0 +170740098396,244,0 +170740098444,244,0 +170740098492,244,0 +170740098540,244,0 +170740098588,244,0 +170740098636,244,0 +170740098684,244,0 +170740098731,244,0 +170740098779,244,0 +170740098827,244,0 +170740098875,244,0 +170740098923,244,0 +170740098971,244,0 +170740099021,244,0 +170740099069,244,0 +170740099117,244,0 +170740099165,244,0 +170740099214,243,0 +170740099262,244,0 +170740099310,244,0 +170740099358,243,0 +170740099406,243,0 +170740099455,244,0 +170740099505,244,0 +170740099553,244,0 +170740099601,244,0 +170740099649,243,0 +170740099697,244,0 +170740099744,244,0 +170740099792,244,0 +170740099840,244,0 +170740099888,244,0 +170740099936,244,0 +170740099984,244,0 +170740100032,244,0 +170740100080,244,0 +170740100129,244,0 +170740100177,244,0 +170740100225,244,0 +170740100273,244,0 +170740100321,244,0 +170740100370,244,0 +170740100418,244,0 +170740100466,244,0 +170740100514,244,0 +170740100564,244,0 +170740100612,244,0 +170740100660,244,0 +170740100708,244,0 +170740100756,244,0 +170740100804,244,0 +170740100853,243,0 +170740100901,244,0 +170740100949,244,0 +170740100997,244,0 +170740101045,244,0 +170740101094,244,0 +170740101142,244,0 +170740101190,244,0 +170740101240,244,0 +170740101288,244,0 +170740101337,244,0 +170740101385,244,0 +170740101433,244,0 +170740101481,244,0 +170740101529,244,0 +170740101577,244,0 +170740101625,244,0 +170740101673,243,0 +170740101722,243,0 +170740101772,244,0 +170740101820,244,0 +170740101868,244,0 +170740101916,244,0 +170740101964,244,0 +170740102013,244,0 +170740102061,244,0 +170740102109,244,0 +170740102157,244,0 +170740102205,244,0 +170740102253,244,0 +170740102301,244,0 +170740102349,244,0 +170740102397,244,0 +170740102445,244,0 +170740102494,244,0 +170740102544,244,0 +170740102592,244,0 +170740102640,244,0 +170740102687,244,0 +170740102735,244,0 +170740102785,244,0 +170740102833,244,0 +170740102882,244,0 +170740102930,244,0 +170740102978,244,0 +170740103026,244,0 +170740103074,244,0 +170740103124,244,0 +170740103172,244,0 +170740103220,244,0 +170740103269,244,0 +170740103317,244,0 +170740103365,243,0 +170740103414,243,0 +170740103462,243,0 +170740103510,244,0 +170740103560,244,0 +170740103608,244,0 +170740103657,244,0 +170740103707,243,0 +170740103756,244,0 +170740103804,244,0 +170740103854,244,0 +170740103903,244,0 +170740103951,244,0 +170740103999,244,0 +170740104049,244,0 +170740104097,244,0 +170740104145,243,0 +170740104194,244,0 +170740104242,244,0 +170740104291,244,0 +170740104339,244,0 +170740104389,244,0 +170740104437,244,0 +170740104485,244,0 +170740104533,244,0 +170740104581,244,0 +170740104630,244,0 +170740104678,244,0 +170740104728,244,0 +170740104777,244,0 +170740104825,244,0 +170740104873,244,0 +170740104921,244,0 +170740104971,244,0 +170740105019,243,0 +170740105067,244,0 +170740105115,244,0 +170740105164,244,0 +170740105212,244,0 +170740105260,244,0 +170740105308,244,0 +170740105358,244,0 +170740105405,244,0 +170740105455,244,0 +170740105504,244,0 +170740105554,244,0 +170740105602,244,0 +170740105650,244,0 +170740105699,244,0 +170740105747,244,0 +170740105796,243,0 +170740105844,244,0 +170740105893,244,0 +170740105941,244,0 +170740105989,244,0 +170740106037,244,0 +170740106085,244,0 +170740106134,244,0 +170740106182,244,0 +170740106230,244,0 +170740106280,244,0 +170740106329,244,0 +170740106377,243,0 +170740106425,244,0 +170740106473,244,0 +170740106521,244,0 +170740106569,244,0 +170740106617,244,0 +170740106667,244,0 +170740106715,244,0 +170740106764,244,0 +170740106812,244,0 +170740106860,244,0 +170740106908,244,0 +170740106958,244,0 +170740107006,244,0 +170740107055,244,0 +170740107105,244,0 +170740107153,244,0 +170740107201,244,0 +170740107249,244,0 +170740107298,244,0 +170740107346,244,0 +170740107396,244,0 +170740107445,244,0 +170740107495,244,0 +170740107543,244,0 +170740107591,244,0 +170740107639,244,0 +170740107687,244,0 +170740107735,244,0 +170740107784,244,0 +170740107834,243,0 +170740107882,244,0 +170740107930,244,0 +170740107979,244,0 +170740108027,244,0 +170740108075,244,0 +170740108125,244,0 +170740108174,243,0 +170740108222,244,0 +170740108272,243,0 +170740108321,244,0 +170740108369,243,0 +170740108417,244,0 +170740108465,244,0 +170740108513,244,0 +170740108562,244,0 +170740108612,244,0 +170740108661,244,0 +170740108711,244,0 +170740108759,243,0 +170740108807,243,0 +170740108856,244,0 +170740108904,244,0 +170740108954,244,0 +170740109002,244,0 +170740109052,244,0 +170740109100,244,0 +170740109148,243,0 +170740109195,244,0 +170740109245,244,0 +170740109295,244,0 +170740109344,244,0 +170740109392,244,0 +170740109440,243,0 +170740109488,244,0 +170740109536,244,0 +170740109584,244,0 +170740109632,244,0 +170740109681,243,0 +170740109731,244,0 +170740109780,244,0 +170740109828,244,0 +170740109876,244,0 +170740109924,244,0 +170740109972,244,0 +170740110020,244,0 +170740110068,244,0 +170740110118,244,0 +170740110166,244,0 +170740110213,244,0 +170740110263,244,0 +170740110311,244,0 +170740110359,244,0 +170740110407,244,0 +170740110455,244,0 +170740110503,244,0 +170740110552,244,0 +170740110602,244,0 +170740110650,244,0 +170740110698,244,0 +170740110747,244,0 +170740110795,243,0 +170740110845,244,0 +170740110894,244,0 +170740110942,244,0 +170740110992,244,0 +170740111041,244,0 +170740111089,244,0 +170740111139,244,0 +170740111187,244,0 +170740111236,244,0 +170740111286,244,0 +170740111334,244,0 +170740111383,244,0 +170740111433,244,0 +170740111481,244,0 +170740111529,244,0 +170740111577,244,0 +170740111624,244,0 +170740111672,244,0 +170740111720,244,0 +170740111768,244,0 +170740111818,243,0 +170740111866,244,0 +170740111915,244,0 +170740111963,244,0 +170740112013,244,0 +170740112060,244,0 +170740112108,243,0 +170740112156,244,0 +170740112206,243,0 +170740112254,244,0 +170740112303,244,0 +170740112351,244,0 +170740112399,244,0 +170740112447,244,0 +170740112495,243,0 +170740112543,244,0 +170740112591,244,0 +170740112639,244,0 +170740112687,244,0 +170740112735,244,0 +170740112782,244,0 +170740112830,244,0 +170740112880,244,0 +170740112928,244,0 +170740112977,244,0 +170740113025,244,0 +170740113075,244,0 +170740113123,244,0 +170740113171,243,0 +170740113221,244,0 +170740113269,244,0 +170740113317,244,0 +170740113366,243,0 +170740113414,243,0 +170740113462,244,0 +170740113510,244,0 +170740113560,244,0 +170740113609,243,0 +170740113657,244,0 +170740113705,244,0 +170740113755,244,0 +170740113803,244,0 +170740113852,244,0 +170740113900,244,0 +170740113950,244,0 +170740113997,244,0 +170740114045,244,0 +170740114095,244,0 +170740114143,243,0 +170740114192,244,0 +170740114240,244,0 +170740114288,244,0 +170740114336,243,0 +170740114384,244,0 +170740114432,243,0 +170740114480,244,0 +170740114528,244,0 +170740114576,243,0 +170740114623,244,0 +170740114671,244,0 +170740114719,243,0 +170740114767,243,0 +170740114815,244,0 +170740114863,244,0 +170740114911,243,0 +170740114958,244,0 +170740115006,244,0 +170740115056,244,0 +170740115105,244,0 +170740115153,244,0 +170740115201,244,0 +170740115249,244,0 +170740115297,244,0 +170740115345,243,0 +170740115393,244,0 +170740115441,244,0 +170740115488,244,0 +170740115536,244,0 +170740115584,243,0 +170740115632,244,0 +170740115680,244,0 +170740115728,244,0 +170740115776,244,0 +170740115824,244,0 +170740115872,244,0 +170740115919,243,0 +170740115967,243,0 +170740116015,244,0 +170740116065,244,0 +170740116114,244,0 +170740116162,243,0 +170740116210,244,0 +170740116258,244,0 +170740116306,244,0 +170740116354,244,0 +170740116402,244,0 +170740116449,244,0 +170740116497,244,0 +170740116545,244,0 +170740116593,244,0 +170740116641,244,0 +170740116689,244,0 +170740116737,244,0 +170740116785,244,0 +170740116832,244,0 +170740116880,243,0 +170740116928,244,0 +170740116978,244,0 +170740117026,244,0 +170740117073,244,0 +170740117121,244,0 +170740117171,244,0 +170740117219,244,0 +170740117266,244,0 +170740117315,244,0 +170740117363,243,0 +170740117411,244,0 +170740117459,244,0 +170740117507,244,0 +170740117554,244,0 +170740117602,243,0 +170740117650,244,0 +170740117698,244,0 +170740117746,244,0 +170740117795,244,0 +170740117843,244,0 +170740117891,244,0 +170740117939,244,0 +170740117987,244,0 +170740118035,244,0 +170740118083,244,0 +170740118131,244,0 +170740118178,244,0 +170740118228,244,0 +170740118277,244,0 +170740118325,243,0 +170740118373,244,0 +170740118421,243,0 +170740118470,243,0 +170740118520,244,0 +170740118568,244,0 +170740118616,244,0 +170740118663,244,0 +170740118711,244,0 +170740118759,244,0 +170740118807,244,0 +170740118855,244,0 +170740118903,244,0 +170740118951,244,0 +170740119000,244,0 +170740119048,244,0 +170740119096,244,0 +170740119144,244,0 +170740119192,244,0 +170740119240,244,0 +170740119288,244,0 +170740119336,244,0 +170740119383,244,0 +170740119431,244,0 +170740119479,244,0 +170740119527,244,0 +170740119575,244,0 +170740119624,244,0 +170740119672,244,0 +170740119722,244,0 +170740119770,244,0 +170740119818,243,0 +170740119865,244,0 +170740119913,244,0 +170740119961,244,0 +170740120009,244,0 +170740120057,244,0 +170740120107,244,0 +170740120156,244,0 +170740120204,244,0 +170740120252,243,0 +170740120300,244,0 +170740120348,244,0 +170740120395,244,0 +170740120443,244,0 +170740120491,244,0 +170740120539,244,0 +170740120587,244,0 +170740120635,243,0 +170740120683,244,0 +170740120731,244,0 +170740120778,244,0 +170740120826,244,0 +170740120874,244,0 +170740120922,243,0 +170740120970,244,0 +170740121018,244,0 +170740121065,244,0 +170740121113,244,0 +170740121161,244,0 +170740121209,244,0 +170740121257,244,0 +170740121305,244,0 +170740121353,243,0 +170740121401,244,0 +170740121448,244,0 +170740121496,244,0 +170740121544,243,0 +170740121592,243,0 +170740121640,244,0 +170740121690,244,0 +170740121738,244,0 +170740121787,244,0 +170740121837,244,0 +170740121885,244,0 +170740121933,243,0 +170740121981,244,0 +170740122029,244,0 +170740122077,244,0 +170740122125,244,0 +170740122174,244,0 +170740122222,244,0 +170740122270,244,0 +170740122318,244,0 +170740122366,244,0 +170740122413,244,0 +170740122461,243,0 +170740122509,244,0 +170740122559,244,0 +170740122607,244,0 +170740122655,243,0 +170740122703,244,0 +170740122751,244,0 +170740122800,244,0 +170740122848,244,0 +170740122896,244,0 +170740122946,244,0 +170740122995,244,0 +170740123043,244,0 +170740123091,244,0 +170740123139,244,0 +170740123188,244,0 +170740123238,243,0 +170740123286,244,0 +170740123335,244,0 +170740123383,244,0 +170740123433,244,0 +170740123481,244,0 +170740123529,244,0 +170740123578,244,0 +170740123628,244,0 +170740123677,244,0 +170740123725,244,0 +170740123773,244,0 +170740123821,244,0 +170740123871,244,0 +170740123919,243,0 +170740123967,243,0 +170740124015,244,0 +170740124064,244,0 +170740124112,244,0 +170740124160,244,0 +170740124210,244,0 +170740124259,244,0 +170740124307,243,0 +170740124357,244,0 +170740124405,244,0 +170740124452,244,0 +170740124500,244,0 +170740124550,244,0 +170740124600,244,0 +170740124648,244,0 +170740124695,244,0 +170740124743,244,0 +170740124793,244,0 +170740124841,244,0 +170740124890,244,0 +170740124938,244,0 +170740124986,244,0 +170740125034,244,0 +170740125082,244,0 +170740125130,244,0 +170740125180,244,0 +170740125229,243,0 +170740125277,244,0 +170740125325,244,0 +170740125373,244,0 +170740125421,244,0 +170740125471,243,0 +170740125520,243,0 +170740125568,244,0 +170740125617,244,0 +170740125665,244,0 +170740125715,243,0 +170740125763,244,0 +170740125811,244,0 +170740125859,243,0 +170740125907,244,0 +170740125955,244,0 +170740126003,243,0 +170740126051,244,0 +170740126098,243,0 +170740126148,244,0 +170740126196,244,0 +170740126244,244,0 +170740126293,243,0 +170740126341,244,0 +170740126389,244,0 +170740126439,244,0 +170740126487,243,0 +170740126535,244,0 +170740126584,244,0 +170740126632,244,0 +170740126680,244,0 +170740126729,244,0 +170740126777,244,0 +170740126825,244,0 +170740126873,244,0 +170740126921,244,0 +170740126969,244,0 +170740127017,244,0 +170740127067,243,0 +170740127116,244,0 +170740127164,243,0 +170740127212,243,0 +170740127260,243,0 +170740127308,243,0 +170740127356,244,0 +170740127404,244,0 +170740127452,244,0 +170740127501,244,0 +170740127549,244,0 +170740127599,244,0 +170740127648,243,0 +170740127698,244,0 +170740127747,243,0 +170740127795,244,0 +170740127843,244,0 +170740127891,244,0 +170740127939,244,0 +170740127987,244,0 +170740128035,243,0 +170740128083,243,0 +170740128131,244,0 +170740128179,243,0 +170740128227,244,0 +170740128275,243,0 +170740128324,243,0 +170740128374,244,0 +170740128421,244,0 +170740128469,244,0 +170740128517,243,0 +170740128565,243,0 +170740128613,244,0 +170740128661,244,0 +170740128709,244,0 +170740128757,244,0 +170740128805,244,0 +170740128853,244,0 +170740128903,244,0 +170740128950,244,0 +170740128998,243,0 +170740129046,244,0 +170740129094,243,0 +170740129144,244,0 +170740129192,244,0 +170740129240,244,0 +170740129288,244,0 +170740129335,244,0 +170740129383,244,0 +170740129431,244,0 +170740129481,243,0 +170740129531,244,0 +170740129579,244,0 +170740129627,244,0 +170740129675,244,0 +170740129722,243,0 +170740129770,244,0 +170740129820,244,0 +170740129869,244,0 +170740129919,243,0 +170740129967,244,0 +170740130015,244,0 +170740130063,244,0 +170740130111,243,0 +170740130159,243,0 +170740130208,243,0 +170740130256,244,0 +170740130304,244,0 +170740130352,243,0 +170740130402,243,0 +170740130451,244,0 +170740130501,244,0 +170740130550,244,0 +170740130600,243,0 +170740130648,243,0 +170740130697,243,0 +170740130745,244,0 +170740130795,244,0 +170740130844,244,0 +170740130892,244,0 +170740130940,243,0 +170740130990,244,0 +170740131038,244,0 +170740131087,244,0 +170740131135,244,0 +170740131183,244,0 +170740131231,243,0 +170740131279,243,0 +170740131329,244,0 +170740131377,244,0 +170740131426,244,0 +170740131474,244,0 +170740131522,244,0 +170740131570,244,0 +170740131618,244,0 +170740131666,244,0 +170740131714,243,0 +170740131762,244,0 +170740131811,244,0 +170740131859,244,0 +170740131907,243,0 +170740131955,243,0 +170740132005,243,0 +170740132054,244,0 +170740132104,244,0 +170740132152,244,0 +170740132200,243,0 +170740132248,243,0 +170740132296,244,0 +170740132344,244,0 +170740132391,244,0 +170740132439,244,0 +170740132487,244,0 +170740132537,244,0 +170740132586,244,0 +170740132634,244,0 +170740132682,244,0 +170740132730,244,0 +170740132778,244,0 +170740132826,243,0 +170740132876,244,0 +170740132923,243,0 +170740132971,244,0 +170740133021,244,0 +170740133071,244,0 +170740133120,244,0 +170740133170,244,0 +170740133217,243,0 +170740133267,244,0 +170740133315,243,0 +170740133365,244,0 +170740133412,243,0 +170740133462,243,0 +170740133510,244,0 +170740133559,244,0 +170740133607,244,0 +170740133657,244,0 +170740133705,244,0 +170740133754,243,0 +170740133804,244,0 +170740133852,243,0 +170740133900,244,0 +170740133948,244,0 +170740133997,243,0 +170740134045,244,0 +170740134093,244,0 +170740134141,244,0 +170740134190,244,0 +170740134238,243,0 +170740134288,243,0 +170740134337,244,0 +170740134385,243,0 +170740134435,244,0 +170740134484,244,0 +170740134532,244,0 +170740134580,243,0 +170740134628,243,0 +170740134676,244,0 +170740134724,244,0 +170740134774,244,0 +170740134822,244,0 +170740134870,243,0 +170740134917,243,0 +170740134967,243,0 +170740135017,244,0 +170740135065,244,0 +170740135113,244,0 +170740135161,244,0 +170740135209,244,0 +170740135257,244,0 +170740135304,244,0 +170740135352,244,0 +170740135402,244,0 +170740135450,244,0 +170740135498,243,0 +170740135546,243,0 +170740135595,243,0 +170740135643,244,0 +170740135691,244,0 +170740135741,244,0 +170740135790,244,0 +170740135838,243,0 +170740135886,244,0 +170740135936,244,0 +170740135984,243,0 +170740136033,244,0 +170740136081,243,0 +170740136129,244,0 +170740136177,243,0 +170740136225,244,0 +170740136273,244,0 +170740136321,243,0 +170740136370,244,0 +170740136418,243,0 +170740136466,244,0 +170740136514,243,0 +170740136562,243,0 +170740136610,243,0 +170740136658,243,0 +170740136707,244,0 +170740136755,244,0 +170740136803,244,0 +170740136852,244,0 +170740136900,244,0 +170740136948,244,0 +170740136996,244,0 +170740137044,244,0 +170740137092,244,0 +170740137141,244,0 +170740137189,243,0 +170740137237,244,0 +170740137285,244,0 +170740137334,244,0 +170740137382,244,0 +170740137430,244,0 +170740137478,243,0 +170740137526,244,0 +170740137574,244,0 +170740137622,244,0 +170740137670,243,0 +170740137719,244,0 +170740137767,244,0 +170740137817,244,0 +170740137866,244,0 +170740137914,243,0 +170740137962,244,0 +170740138010,243,0 +170740138058,244,0 +170740138106,243,0 +170740138156,244,0 +170740138203,244,0 +170740138253,244,0 +170740138301,244,0 +170740138350,243,0 +170740138400,244,0 +170740138448,243,0 +170740138496,243,0 +170740138543,244,0 +170740138591,244,0 +170740138639,244,0 +170740138687,243,0 +170740138735,244,0 +170740138783,244,0 +170740138831,244,0 +170740138879,244,0 +170740138927,243,0 +170740138975,244,0 +170740139022,244,0 +170740139070,243,0 +170740139118,244,0 +170740139166,244,0 +170740139214,244,0 +170740139262,244,0 +170740139310,244,0 +170740139357,243,0 +170740139405,244,0 +170740139453,244,0 +170740139501,244,0 +170740139549,244,0 +170740139599,244,0 +170740139647,243,0 +170740139696,244,0 +170740139744,243,0 +170740139794,243,0 +170740139842,244,0 +170740139891,244,0 +170740139941,243,0 +170740139990,244,0 +170740140038,243,0 +170740140086,244,0 +170740140134,243,0 +170740140182,244,0 +170740140230,243,0 +170740140278,244,0 +170740140326,243,0 +170740140375,244,0 +170740140425,244,0 +170740140473,244,0 +170740140521,244,0 +170740140569,243,0 +170740140616,244,0 +170740140664,244,0 +170740140712,243,0 +170740140760,243,0 +170740140808,243,0 +170740140856,243,0 +170740140904,244,0 +170740140952,244,0 +170740140999,244,0 +170740141047,244,0 +170740141095,243,0 +170740141143,244,0 +170740141191,244,0 +170740141239,243,0 +170740141287,244,0 +170740141334,244,0 +170740141382,244,0 +170740141430,244,0 +170740141478,244,0 +170740141526,243,0 +170740141574,244,0 +170740141622,243,0 +170740141670,243,0 +170740141718,244,0 +170740141767,243,0 +170740141817,244,0 +170740141865,244,0 +170740141913,244,0 +170740141961,244,0 +170740142009,244,0 +170740142057,244,0 +170740142106,244,0 +170740142154,244,0 +170740142204,244,0 +170740142252,243,0 +170740142299,243,0 +170740142347,244,0 +170740142395,243,0 +170740142443,244,0 +170740142491,244,0 +170740142539,244,0 +170740142587,244,0 +170740142635,243,0 +170740142683,244,0 +170740142730,244,0 +170740142778,244,0 +170740142828,244,0 +170740142876,244,0 +170740142923,244,0 +170740142971,244,0 +170740143021,243,0 +170740143069,244,0 +170740143116,244,0 +170740143164,244,0 +170740143212,244,0 +170740143260,244,0 +170740143308,243,0 +170740143357,244,0 +170740143405,244,0 +170740143455,243,0 +170740143503,244,0 +170740143551,244,0 +170740143598,244,0 +170740143646,244,0 +170740143694,244,0 +170740143742,243,0 +170740143790,244,0 +170740143839,244,0 +170740143887,243,0 +170740143935,244,0 +170740143983,244,0 +170740144031,244,0 +170740144079,243,0 +170740144127,243,0 +170740144175,243,0 +170740144222,243,0 +170740144270,244,0 +170740144320,244,0 +170740144368,244,0 +170740144416,244,0 +170740144463,244,0 +170740144511,243,0 +170740144559,244,0 +170740144607,244,0 +170740144655,244,0 +170740144705,244,0 +170740144752,243,0 +170740144800,244,0 +170740144848,243,0 +170740144898,243,0 +170740144946,244,0 +170740144994,243,0 +170740145043,244,0 +170740145091,244,0 +170740145139,244,0 +170740145187,244,0 +170740145237,244,0 +170740145285,244,0 +170740145334,243,0 +170740145382,244,0 +170740145430,244,0 +170740145480,244,0 +170740145528,243,0 +170740145576,244,0 +170740145624,244,0 +170740145671,243,0 +170740145719,244,0 +170740145767,244,0 +170740145815,244,0 +170740145863,243,0 +170740145911,243,0 +170740145959,244,0 +170740146008,243,0 +170740146058,244,0 +170740146106,244,0 +170740146154,244,0 +170740146203,243,0 +170740146253,244,0 +170740146302,243,0 +170740146350,244,0 +170740146398,244,0 +170740146446,244,0 +170740146496,243,0 +170740146544,244,0 +170740146593,244,0 +170740146641,244,0 +170740146689,244,0 +170740146737,244,0 +170740146787,243,0 +170740146836,244,0 +170740146886,244,0 +170740146934,244,0 +170740146982,243,0 +170740147029,244,0 +170740147077,243,0 +170740147125,244,0 +170740147173,243,0 +170740147221,243,0 +170740147269,244,0 +170740147317,244,0 +170740147365,243,0 +170740147414,244,0 +170740147464,244,0 +170740147512,243,0 +170740147561,244,0 +170740147609,244,0 +170740147657,244,0 +170740147706,244,0 +170740147754,243,0 +170740147802,244,0 +170740147850,243,0 +170740147898,243,0 +170740147946,243,0 +170740147994,244,0 +170740148042,244,0 +170740148089,243,0 +170740148137,244,0 +170740148185,243,0 +170740148233,244,0 +170740148281,244,0 +170740148329,244,0 +170740148377,244,0 +170740148425,244,0 +170740148474,244,0 +170740148524,244,0 +170740148571,244,0 +170740148619,244,0 +170740148667,244,0 +170740148715,244,0 +170740148763,244,0 +170740148811,244,0 +170740148859,244,0 +170740148907,244,0 +170740148955,244,0 +170740149003,244,0 +170740149050,244,0 +170740149098,244,0 +170740149148,243,0 +170740149196,243,0 +170740149244,243,0 +170740149291,244,0 +170740149339,244,0 +170740149387,243,0 +170740149435,244,0 +170740149483,244,0 +170740149531,243,0 +170740149579,243,0 +170740149627,244,0 +170740149675,244,0 +170740149724,244,0 +170740149772,243,0 +170740149820,243,0 +170740149868,244,0 +170740149915,244,0 +170740149965,244,0 +170740150013,244,0 +170740150061,244,0 +170740150109,244,0 +170740150156,243,0 +170740150204,244,0 +170740150252,244,0 +170740150300,244,0 +170740150348,243,0 +170740150396,243,0 +170740150444,244,0 +170740150491,244,0 +170740150541,243,0 +170740150589,244,0 +170740150637,244,0 +170740150684,244,0 +170740150732,244,0 +170740150782,244,0 +170740150830,244,0 +170740150878,243,0 +170740150926,244,0 +170740150975,244,0 +170740151025,243,0 +170740151073,244,0 +170740151122,244,0 +170740151172,244,0 +170740151219,244,0 +170740151267,244,0 +170740151315,244,0 +170740151365,244,0 +170740151413,244,0 +170740151461,244,0 +170740151509,244,0 +170740151557,244,0 +170740151605,244,0 +170740151652,244,0 +170740151700,244,0 +170740151748,244,0 +170740151796,244,0 +170740151844,244,0 +170740151892,243,0 +170740151940,244,0 +170740151989,243,0 +170740152037,244,0 +170740152085,244,0 +170740152135,244,0 +170740152183,244,0 +170740152230,244,0 +170740152278,243,0 +170740152326,243,0 +170740152376,244,0 +170740152424,244,0 +170740152473,243,0 +170740152521,244,0 +170740152571,243,0 +170740152619,244,0 +170740152667,243,0 +170740152714,244,0 +170740152762,244,0 +170740152810,244,0 +170740152858,244,0 +170740152906,244,0 +170740152956,243,0 +170740153005,243,0 +170740153053,244,0 +170740153101,244,0 +170740153149,244,0 +170740153197,244,0 +170740153245,244,0 +170740153294,244,0 +170740153342,244,0 +170740153392,244,0 +170740153440,244,0 +170740153488,244,0 +170740153535,244,0 +170740153585,244,0 +170740153634,244,0 +170740153682,244,0 +170740153730,244,0 +170740153780,244,0 +170740153828,243,0 +170740153877,243,0 +170740153927,243,0 +170740153976,244,0 +170740154024,244,0 +170740154072,244,0 +170740154122,244,0 +170740154170,244,0 +170740154218,244,0 +170740154267,244,0 +170740154315,243,0 +170740154365,243,0 +170740154413,244,0 +170740154462,244,0 +170740154510,244,0 +170740154558,244,0 +170740154606,244,0 +170740154654,244,0 +170740154702,244,0 +170740154751,244,0 +170740154799,244,0 +170740154849,244,0 +170740154897,244,0 +170740154945,244,0 +170740154994,244,0 +170740155044,244,0 +170740155093,244,0 +170740155143,244,0 +170740155191,244,0 +170740155239,244,0 +170740155287,244,0 +170740155335,244,0 +170740155384,244,0 +170740155434,244,0 +170740155483,244,0 +170740155531,244,0 +170740155579,244,0 +170740155627,244,0 +170740155675,244,0 +170740155724,244,0 +170740155772,244,0 +170740155822,244,0 +170740155870,244,0 +170740155919,243,0 +170740155967,243,0 +170740156015,244,0 +170740156063,244,0 +170740156111,244,0 +170740156159,244,0 +170740156208,244,0 +170740156256,244,0 +170740156304,244,0 +170740156352,244,0 +170740156402,243,0 +170740156450,244,0 +170740156498,244,0 +170740156546,244,0 +170740156594,244,0 +170740156642,243,0 +170740156690,244,0 +170740156738,244,0 +170740156786,244,0 +170740156834,244,0 +170740156882,244,0 +170740156930,244,0 +170740156977,243,0 +170740157025,244,0 +170740157073,244,0 +170740157121,244,0 +170740157169,244,0 +170740157217,244,0 +170740157265,244,0 +170740157313,244,0 +170740157361,244,0 +170740157409,244,0 +170740157457,244,0 +170740157507,244,0 +170740157555,244,0 +170740157604,243,0 +170740157652,244,0 +170740157700,244,0 +170740157748,244,0 +170740157796,244,0 +170740157844,244,0 +170740157892,244,0 +170740157940,243,0 +170740157989,244,0 +170740158037,243,0 +170740158085,244,0 +170740158133,244,0 +170740158182,243,0 +170740158230,244,0 +170740158280,244,0 +170740158329,244,0 +170740158379,244,0 +170740158428,244,0 +170740158478,244,0 +170740158526,244,0 +170740158574,244,0 +170740158622,243,0 +170740158670,244,0 +170740158718,243,0 +170740158767,244,0 +170740158815,244,0 +170740158865,244,0 +170740158914,244,0 +170740158962,244,0 +170740159010,244,0 +170740159060,243,0 +170740159109,244,0 +170740159157,244,0 +170740159205,244,0 +170740159253,244,0 +170740159301,244,0 +170740159349,243,0 +170740159397,244,0 +170740159445,243,0 +170740159494,244,0 +170740159542,244,0 +170740159592,244,0 +170740159641,244,0 +170740159691,244,0 +170740159739,244,0 +170740159787,244,0 +170740159836,244,0 +170740159884,244,0 +170740159934,244,0 +170740159982,244,0 +170740160030,244,0 +170740160079,244,0 +170740160127,243,0 +170740160175,244,0 +170740160223,244,0 +170740160271,244,0 +170740160319,243,0 +170740160367,244,0 +170740160415,244,0 +170740160463,244,0 +170740160511,243,0 +170740160561,244,0 +170740160608,244,0 +170740160658,244,0 +170740160706,244,0 +170740160754,243,0 +170740160802,244,0 +170740160851,244,0 +170740160901,244,0 +170740160949,244,0 +170740160997,244,0 +170740161046,244,0 +170740161094,244,0 +170740161142,244,0 +170740161190,243,0 +170740161238,244,0 +170740161286,244,0 +170740161334,244,0 +170740161382,244,0 +170740161430,244,0 +170740161477,243,0 +170740161525,244,0 +170740161575,244,0 +170740161624,243,0 +170740161672,244,0 +170740161720,244,0 +170740161770,243,0 +170740161818,244,0 +170740161867,244,0 +170740161917,244,0 +170740161965,244,0 +170740162013,243,0 +170740162061,244,0 +170740162110,243,0 +170740162158,244,0 +170740162206,244,0 +170740162254,244,0 +170740162302,244,0 +170740162350,244,0 +170740162398,243,0 +170740162446,243,0 +170740162494,244,0 +170740162543,244,0 +170740162593,244,0 +170740162641,244,0 +170740162690,244,0 +170740162740,243,0 +170740162788,244,0 +170740162837,244,0 +170740162887,244,0 +170740162935,243,0 +170740162984,244,0 +170740163032,244,0 +170740163080,244,0 +170740163130,244,0 +170740163179,244,0 +170740163229,244,0 +170740163277,244,0 +170740163325,244,0 +170740163374,243,0 +170740163424,244,0 +170740163472,244,0 +170740163521,244,0 +170740163571,244,0 +170740163620,244,0 +170740163668,244,0 +170740163716,244,0 +170740163764,244,0 +170740163812,244,0 +170740163860,244,0 +170740163910,243,0 +170740163958,244,0 +170740164006,244,0 +170740164054,244,0 +170740164101,244,0 +170740164149,244,0 +170740164199,244,0 +170740164247,244,0 +170740164296,244,0 +170740164346,244,0 +170740164394,244,0 +170740164443,244,0 +170740164493,244,0 +170740164541,244,0 +170740164589,244,0 +170740164637,244,0 +170740164686,244,0 +170740164734,244,0 +170740164782,244,0 +170740164830,244,0 +170740164880,244,0 +170740164928,244,0 +170740164976,244,0 +170740165023,244,0 +170740165071,244,0 +170740165119,244,0 +170740165167,244,0 +170740165215,244,0 +170740165263,244,0 +170740165311,244,0 +170740165359,244,0 +170740165407,244,0 +170740165454,244,0 +170740165504,244,0 +170740165552,244,0 +170740165600,244,0 +170740165649,244,0 +170740165699,244,0 +170740165747,244,0 +170740165795,244,0 +170740165842,244,0 +170740165890,244,0 +170740165938,244,0 +170740165986,244,0 +170740166034,244,0 +170740166082,244,0 +170740166131,244,0 +170740166179,244,0 +170740166229,244,0 +170740166276,244,0 +170740166324,244,0 +170740166372,244,0 +170740166420,244,0 +170740166468,244,0 +170740166517,244,0 +170740166565,244,0 +170740166613,244,0 +170740166663,244,0 +170740166711,244,0 +170740166759,244,0 +170740166806,244,0 +170740166854,244,0 +170740166902,244,0 +170740166950,244,0 +170740166998,244,0 +170740167046,244,0 +170740167094,244,0 +170740167143,244,0 +170740167191,244,0 +170740167239,244,0 +170740167287,244,0 +170740167335,244,0 +170740167383,244,0 +170740167430,244,0 +170740167478,244,0 +170740167528,244,0 +170740167577,244,0 +170740167625,244,0 +170740167673,244,0 +170740167721,244,0 +170740167770,244,0 +170740167818,244,0 +170740167868,244,0 +170740167916,244,0 +170740167964,244,0 +170740168011,244,0 +170740168059,244,0 +170740168107,244,0 +170740168155,244,0 +170740168203,244,0 +170740168251,244,0 +170740168299,244,0 +170740168347,244,0 +170740168396,244,0 +170740168444,244,0 +170740168494,244,0 +170740168541,244,0 +170740168591,244,0 +170740168639,244,0 +170740168687,244,0 +170740168735,244,0 +170740168782,244,0 +170740168830,244,0 +170740168878,243,0 +170740168926,244,0 +170740168974,244,0 +170740169022,244,0 +170740169070,244,0 +170740169118,244,0 +170740169167,244,0 +170740169217,244,0 +170740169265,244,0 +170740169312,244,0 +170740169360,244,0 +170740169408,244,0 +170740169456,244,0 +170740169504,244,0 +170740169552,244,0 +170740169600,244,0 +170740169648,244,0 +170740169696,244,0 +170740169744,243,0 +170740169792,244,0 +170740169840,244,0 +170740169887,244,0 +170740169935,244,0 +170740169983,244,0 +170740170031,244,0 +170740170079,244,0 +170740170127,244,0 +170740170175,244,0 +170740170223,244,0 +170740170270,244,0 +170740170318,244,0 +170740170366,244,0 +170740170414,244,0 +170740170462,244,0 +170740170510,244,0 +170740170558,244,0 +170740170605,244,0 +170740170653,244,0 +170740170701,244,0 +170740170749,244,0 +170740170799,244,0 +170740170847,244,0 +170740170894,244,0 +170740170942,244,0 +170740170990,243,0 +170740171038,244,0 +170740171086,244,0 +170740171134,244,0 +170740171182,244,0 +170740171230,243,0 +170740171278,243,0 +170740171326,244,0 +170740171373,244,0 +170740171421,244,0 +170740171471,244,0 +170740171520,244,0 +170740171568,244,0 +170740171616,244,0 +170740171666,243,0 +170740171715,243,0 +170740171763,244,0 +170740171813,244,0 +170740171861,243,0 +170740171911,244,0 +170740171958,244,0 +170740172006,244,0 +170740172054,244,0 +170740172102,244,0 +170740172150,243,0 +170740172198,243,0 +170740172246,244,0 +170740172294,243,0 +170740172344,244,0 +170740172391,244,0 +170740172439,243,0 +170740172487,244,0 +170740172535,243,0 +170740172583,244,0 +170740172633,244,0 +170740172681,244,0 +170740172729,244,0 +170740172778,244,0 +170740172826,244,0 +170740172874,244,0 +170740172924,244,0 +170740172973,244,0 +170740173021,244,0 +170740173069,244,0 +170740173117,244,0 +170740173165,244,0 +170740173213,244,0 +170740173261,244,0 +170740173309,244,0 +170740173357,244,0 +170740173406,243,0 +170740173456,244,0 +170740173504,244,0 +170740173553,244,0 +170740173603,244,0 +170740173651,244,0 +170740173699,244,0 +170740173747,244,0 +170740173795,244,0 +170740173843,244,0 +170740173891,244,0 +170740173939,244,0 +170740173988,244,0 +170740174036,244,0 +170740174086,243,0 +170740174134,243,0 +170740174183,243,0 +170740174231,244,0 +170740174279,243,0 +170740174327,244,0 +170740174375,244,0 +170740174423,244,0 +170740174471,244,0 +170740174520,244,0 +170740174568,244,0 +170740174616,244,0 +170740174664,244,0 +170740174713,244,0 +170740174761,244,0 +170740174809,244,0 +170740174857,244,0 +170740174905,244,0 +170740174953,244,0 +170740175001,244,0 +170740175049,244,0 +170740175096,244,0 +170740175144,244,0 +170740175192,243,0 +170740175240,244,0 +170740175288,244,0 +170740175336,244,0 +170740175385,244,0 +170740175433,244,0 +170740175483,244,0 +170740175531,244,0 +170740175581,243,0 +170740175630,243,0 +170740175679,244,0 +170740175727,244,0 +170740175777,244,0 +170740175825,244,0 +170740175874,244,0 +170740175922,244,0 +170740175970,244,0 +170740176018,244,0 +170740176066,244,0 +170740176114,244,0 +170740176162,244,0 +170740176210,244,0 +170740176258,244,0 +170740176307,244,0 +170740176355,244,0 +170740176403,244,0 +170740176451,244,0 +170740176499,244,0 +170740176547,244,0 +170740176595,244,0 +170740176645,244,0 +170740176694,244,0 +170740176742,244,0 +170740176792,244,0 +170740176840,244,0 +170740176889,244,0 +170740176939,244,0 +170740176987,244,0 +170740177035,244,0 +170740177083,244,0 +170740177131,243,0 +170740177178,244,0 +170740177226,244,0 +170740177276,244,0 +170740177324,244,0 +170740177372,244,0 +170740177420,244,0 +170740177468,244,0 +170740177516,244,0 +170740177564,244,0 +170740177612,244,0 +170740177660,244,0 +170740177709,244,0 +170740177759,244,0 +170740177807,244,0 +170740177855,244,0 +170740177904,244,0 +170740177954,244,0 +170740178003,244,0 +170740178053,244,0 +170740178101,244,0 +170740178149,244,0 +170740178196,244,0 +170740178244,244,0 +170740178294,244,0 +170740178342,244,0 +170740178390,244,0 +170740178438,244,0 +170740178486,244,0 +170740178535,244,0 +170740178583,244,0 +170740178631,244,0 +170740178679,244,0 +170740178727,244,0 +170740178775,244,0 +170740178823,244,0 +170740178871,244,0 +170740178919,244,0 +170740178969,244,0 +170740179016,244,0 +170740179064,243,0 +170740179114,244,0 +170740179162,243,0 +170740179210,244,0 +170740179259,244,0 +170740179309,244,0 +170740179357,243,0 +170740179405,244,0 +170740179453,244,0 +170740179501,244,0 +170740179549,244,0 +170740179597,244,0 +170740179645,244,0 +170740179692,244,0 +170740179742,244,0 +170740179790,243,0 +170740179839,244,0 +170740179887,244,0 +170740179935,244,0 +170740179985,244,0 +170740180034,244,0 +170740180082,244,0 +170740180130,244,0 +170740180180,244,0 +170740180228,244,0 +170740180276,244,0 +170740180324,244,0 +170740180372,244,0 +170740180420,244,0 +170740180467,244,0 +170740180515,244,0 +170740180563,244,0 +170740180611,244,0 +170740180659,244,0 +170740180707,243,0 +170740180755,244,0 +170740180803,244,0 +170740180851,244,0 +170740180898,244,0 +170740180946,244,0 +170740180994,244,0 +170740181042,244,0 +170740181090,243,0 +170740181138,244,0 +170740181187,244,0 +170740181235,244,0 +170740181283,244,0 +170740181331,244,0 +170740181379,244,0 +170740181427,244,0 +170740181475,244,0 +170740181522,244,0 +170740181570,244,0 +170740181618,244,0 +170740181666,244,0 +170740181714,244,0 +170740181762,244,0 +170740181810,244,0 +170740181858,244,0 +170740181906,244,0 +170740181954,243,0 +170740182001,244,0 +170740182049,244,0 +170740182097,243,0 +170740182145,244,0 +170740182193,244,0 +170740182241,244,0 +170740182289,244,0 +170740182337,244,0 +170740182385,244,0 +170740182432,244,0 +170740182480,244,0 +170740182528,244,0 +170740182576,244,0 +170740182626,244,0 +170740182673,244,0 +170740182721,244,0 +170740182769,244,0 +170740182817,244,0 +170740182865,244,0 +170740182914,244,0 +170740182962,244,0 +170740183010,244,0 +170740183060,244,0 +170740183108,244,0 +170740183155,244,0 +170740183205,244,0 +170740183253,244,0 +170740183301,244,0 +170740183348,244,0 +170740183396,244,0 +170740183444,244,0 +170740183492,244,0 +170740183542,244,0 +170740183590,244,0 +170740183638,244,0 +170740183686,244,0 +170740183734,244,0 +170740183782,244,0 +170740183831,244,0 +170740183879,244,0 +170740183929,244,0 +170740183977,244,0 +170740184025,244,0 +170740184074,244,0 +170740184124,244,0 +170740184174,244,0 +170740184222,243,0 +170740184271,244,0 +170740184320,244,0 +170740184370,244,0 +170740184418,244,0 +170740184466,244,0 +170740184514,244,0 +170740184564,244,0 +170740184613,244,0 +170740184661,244,0 +170740184709,244,0 +170740184758,244,0 +170740184808,244,0 +170740184856,244,0 +170740184905,244,0 +170740184955,244,0 +170740185003,244,0 +170740185051,244,0 +170740185099,244,0 +170740185147,243,0 +170740185195,244,0 +170740185243,243,0 +170740185292,244,0 +170740185340,243,0 +170740185390,244,0 +170740185438,244,0 +170740185486,244,0 +170740185534,244,0 +170740185582,244,0 +170740185631,244,0 +170740185681,244,0 +170740185729,244,0 +170740185778,244,0 +170740185828,244,0 +170740185876,244,0 +170740185925,244,0 +170740185973,243,0 +170740186023,244,0 +170740186071,244,0 +170740186119,244,0 +170740186167,244,0 +170740186215,244,0 +170740186263,244,0 +170740186311,244,0 +170740186358,244,0 +170740186408,244,0 +170740186457,243,0 +170740186507,244,0 +170740186557,244,0 +170740186604,244,0 +170740186654,244,0 +170740186702,244,0 +170740186750,244,0 +170740186798,244,0 +170740186846,244,0 +170740186894,244,0 +170740186942,244,0 +170740186990,244,0 +170740187038,244,0 +170740187086,244,0 +170740187134,244,0 +170740187182,244,0 +170740187230,244,0 +170740187279,244,0 +170740187327,244,0 +170740187375,244,0 +170740187423,244,0 +170740187472,244,0 +170740187522,244,0 +170740187571,244,0 +170740187619,244,0 +170740187669,244,0 +170740187719,244,0 +170740187766,244,0 +170740187814,244,0 +170740187862,244,0 +170740187912,244,0 +170740187960,244,0 +170740188008,244,0 +170740188056,244,0 +170740188104,244,0 +170740188152,244,0 +170740188200,244,0 +170740188248,244,0 +170740188297,244,0 +170740188347,244,0 +170740188395,244,0 +170740188444,244,0 +170740188492,244,0 +170740188540,244,0 +170740188588,244,0 +170740188636,244,0 +170740188684,244,0 +170740188732,244,0 +170740188780,244,0 +170740188828,244,0 +170740188878,244,0 +170740188927,244,0 +170740188975,244,0 +170740189024,244,0 +170740189072,244,0 +170740189120,244,0 +170740189168,244,0 +170740189216,244,0 +170740189266,244,0 +170740189314,244,0 +170740189362,244,0 +170740189411,244,0 +170740189461,244,0 +170740189510,244,0 +170740189558,244,0 +170740189608,244,0 +170740189656,244,0 +170740189705,244,0 +170740189753,244,0 +170740189801,244,0 +170740189851,244,0 +170740189899,244,0 +170740189948,244,0 +170740189996,244,0 +170740190046,244,0 +170740190095,244,0 +170740190143,244,0 +170740190193,243,0 +170740190242,244,0 +170740190290,244,0 +170740190338,244,0 +170740190386,244,0 +170740190434,244,0 +170740190482,244,0 +170740190530,243,0 +170740190578,244,0 +170740190626,244,0 +170740190674,244,0 +170740190722,244,0 +170740190770,244,0 +170740190819,244,0 +170740190869,244,0 +170740190919,244,0 +170740190966,244,0 +170740191014,244,0 +170740191062,244,0 +170740191112,244,0 +170740191160,244,0 +170740191209,244,0 +170740191257,244,0 +170740191307,244,0 +170740191355,244,0 +170740191403,244,0 +170740191451,244,0 +170740191498,244,0 +170740191546,244,0 +170740191594,244,0 +170740191642,243,0 +170740191692,244,0 +170740191740,244,0 +170740191788,244,0 +170740191837,244,0 +170740191885,244,0 +170740191935,244,0 +170740191984,244,0 +170740192032,243,0 +170740192080,244,0 +170740192128,244,0 +170740192176,244,0 +170740192224,244,0 +170740192272,244,0 +170740192322,244,0 +170740192370,244,0 +170740192419,244,0 +170740192467,244,0 +170740192516,244,0 +170740192564,244,0 +170740192612,244,0 +170740192660,244,0 +170740192710,244,0 +170740192759,244,0 +170740192807,244,0 +170740192855,244,0 +170740192903,244,0 +170740192953,244,0 +170740193001,244,0 +170740193050,244,0 +170740193098,244,0 +170740193148,244,0 +170740193196,244,0 +170740193244,244,0 +170740193292,244,0 +170740193340,244,0 +170740193389,244,0 +170740193437,244,0 +170740193485,244,0 +170740193533,244,0 +170740193581,244,0 +170740193630,244,0 +170740193680,243,0 +170740193729,244,0 +170740193777,244,0 +170740193827,244,0 +170740193875,244,0 +170740193923,244,0 +170740193971,244,0 +170740194020,244,0 +170740194070,244,0 +170740194118,244,0 +170740194166,244,0 +170740194214,244,0 +170740194262,244,0 +170740194311,244,0 +170740194359,244,0 +170740194407,244,0 +170740194456,243,0 +170740194506,244,0 +170740194554,244,0 +170740194604,244,0 +170740194651,244,0 +170740194699,244,0 +170740194747,244,0 +170740194795,244,0 +170740194845,244,0 +170740194893,244,0 +170740194941,244,0 +170740194989,244,0 +170740195037,244,0 +170740195084,244,0 +170740195132,244,0 +170740195180,244,0 +170740195228,244,0 +170740195276,244,0 +170740195324,244,0 +170740195373,244,0 +170740195421,244,0 +170740195469,243,0 +170740195517,244,0 +170740195565,244,0 +170740195613,244,0 +170740195661,244,0 +170740195709,244,0 +170740195756,244,0 +170740195804,244,0 +170740195852,244,0 +170740195900,244,0 +170740195948,243,0 +170740195996,244,0 +170740196044,244,0 +170740196092,243,0 +170740196140,243,0 +170740196188,244,0 +170740196235,244,0 +170740196283,244,0 +170740196331,244,0 +170740196379,244,0 +170740196427,244,0 +170740196475,244,0 +170740196523,244,0 +170740196572,244,0 +170740196622,244,0 +170740196670,244,0 +170740196718,243,0 +170740196765,244,0 +170740196815,244,0 +170740196863,244,0 +170740196911,244,0 +170740196959,244,0 +170740197008,244,0 +170740197056,244,0 +170740197104,244,0 +170740197152,244,0 +170740197200,244,0 +170740197249,244,0 +170740197297,244,0 +170740197347,244,0 +170740197396,244,0 +170740197444,243,0 +170740197492,243,0 +170740197540,244,0 +170740197588,244,0 +170740197636,244,0 +170740197686,243,0 +170740197736,244,0 +170740197785,244,0 +170740197833,244,0 +170740197883,244,0 +170740197931,244,0 +170740197979,244,0 +170740198027,244,0 +170740198076,244,0 +170740198124,244,0 +170740198172,244,0 +170740198222,244,0 +170740198269,244,0 +170740198317,244,0 +170740198365,244,0 +170740198413,244,0 +170740198461,244,0 +170740198510,244,0 +170740198558,244,0 +170740198606,244,0 +170740198654,244,0 +170740198702,244,0 +170740198751,244,0 +170740198799,244,0 +170740198847,244,0 +170740198895,244,0 +170740198943,244,0 +170740198992,244,0 +170740199040,244,0 +170740199088,244,0 +170740199136,244,0 +170740199184,244,0 +170740199232,244,0 +170740199280,244,0 +170740199328,244,0 +170740199375,244,0 +170740199423,244,0 +170740199473,244,0 +170740199521,244,0 +170740199569,244,0 +170740199617,244,0 +170740199665,244,0 +170740199712,244,0 +170740199760,244,0 +170740199810,244,0 +170740199858,244,0 +170740199905,244,0 +170740199953,243,0 +170740200001,244,0 +170740200049,244,0 +170740200097,244,0 +170740200147,244,0 +170740200197,244,0 +170740200246,244,0 +170740200294,244,0 +170740200342,244,0 +170740200390,244,0 +170740200438,244,0 +170740200487,244,0 +170740200535,243,0 +170740200585,243,0 +170740200634,244,0 +170740200682,244,0 +170740200730,244,0 +170740200780,244,0 +170740200829,244,0 +170740200879,244,0 +170740200927,244,0 +170740200975,244,0 +170740201023,244,0 +170740201072,244,0 +170740201120,244,0 +170740201168,244,0 +170740201218,244,0 +170740201266,244,0 +170740201315,244,0 +170740201363,244,0 +170740201411,244,0 +170740201459,244,0 +170740201507,244,0 +170740201557,244,0 +170740201606,244,0 +170740201654,244,0 +170740201702,244,0 +170740201750,244,0 +170740201798,244,0 +170740201846,244,0 +170740201896,244,0 +170740201944,243,0 +170740201991,244,0 +170740202041,244,0 +170740202091,244,0 +170740202139,244,0 +170740202186,244,0 +170740202236,243,0 +170740202284,244,0 +170740202334,244,0 +170740202382,244,0 +170740202430,243,0 +170740202478,244,0 +170740202527,244,0 +170740202577,243,0 +170740202624,244,0 +170740202672,244,0 +170740202720,244,0 +170740202768,244,0 +170740202816,244,0 +170740202866,244,0 +170740202915,244,0 +170740202963,244,0 +170740203013,244,0 +170740203061,244,0 +170740203110,244,0 +170740203160,244,0 +170740203208,244,0 +170740203256,244,0 +170740203305,244,0 +170740203353,244,0 +170740203403,244,0 +170740203451,244,0 +170740203500,244,0 +170740203548,244,0 +170740203598,244,0 +170740203646,244,0 +170740203694,244,0 +170740203742,244,0 +170740203790,244,0 +170740203838,244,0 +170740203887,244,0 +170740203935,243,0 +170740203983,244,0 +170740204031,244,0 +170740204079,244,0 +170740204127,244,0 +170740204175,244,0 +170740204223,244,0 +170740204273,244,0 +170740204321,244,0 +170740204368,244,0 +170740204418,244,0 +170740204466,244,0 +170740204515,244,0 +170740204563,244,0 +170740204613,244,0 +170740204663,244,0 +170740204710,244,0 +170740204758,244,0 +170740204808,244,0 +170740204856,244,0 +170740204904,244,0 +170740204952,244,0 +170740205002,244,0 +170740205050,244,0 +170740205097,244,0 +170740205147,244,0 +170740205196,244,0 +170740205246,244,0 +170740205294,244,0 +170740205343,244,0 +170740205391,244,0 +170740205441,244,0 +170740205489,244,0 +170740205537,243,0 +170740205585,244,0 +170740205634,244,0 +170740205684,244,0 +170740205732,244,0 +170740205779,243,0 +170740205829,244,0 +170740205879,244,0 +170740205927,244,0 +170740205975,244,0 +170740206022,244,0 +170740206072,244,0 +170740206120,244,0 +170740206168,244,0 +170740206217,244,0 +170740206266,244,0 +170740206315,244,0 +170740206365,244,0 +170740206413,244,0 +170740206461,244,0 +170740206510,244,0 +170740206558,244,0 +170740206606,244,0 +170740206656,244,0 +170740206705,244,0 +170740206753,244,0 +170740206801,244,0 +170740206851,244,0 +170740206899,244,0 +170740206947,244,0 +170740206996,244,0 +170740207044,244,0 +170740207094,244,0 +170740207142,244,0 +170740207191,244,0 +170740207239,244,0 +170740207287,244,0 +170740207335,244,0 +170740207383,244,0 +170740207431,244,0 +170740207478,244,0 +170740207526,244,0 +170740207574,244,0 +170740207622,244,0 +170740207670,244,0 +170740207718,244,0 +170740207766,244,0 +170740207814,244,0 +170740207862,244,0 +170740207910,244,0 +170740207957,244,0 +170740208007,244,0 +170740208055,244,0 +170740208104,244,0 +170740208152,244,0 +170740208200,243,0 +170740208250,244,0 +170740208298,244,0 +170740208346,244,0 +170740208394,244,0 +170740208442,244,0 +170740208491,244,0 +170740208539,244,0 +170740208589,244,0 +170740208638,244,0 +170740208686,244,0 +170740208734,244,0 +170740208784,244,0 +170740208831,244,0 +170740208879,244,0 +170740208927,244,0 +170740208977,244,0 +170740209026,244,0 +170740209075,244,0 +170740209123,244,0 +170740209171,244,0 +170740209219,244,0 +170740209267,244,0 +170740209315,244,0 +170740209363,244,0 +170740209411,244,0 +170740209459,244,0 +170740209507,244,0 +170740209555,244,0 +170740209603,244,0 +170740209650,244,0 +170740209698,244,0 +170740209746,244,0 +170740209794,244,0 +170740209842,244,0 +170740209890,244,0 +170740209938,244,0 +170740209987,244,0 +170740210035,244,0 +170740210083,244,0 +170740210131,244,0 +170740210179,244,0 +170740210227,244,0 +170740210275,244,0 +170740210323,244,0 +170740210371,244,0 +170740210419,244,0 +170740210468,244,0 +170740210518,244,0 +170740210567,244,0 +170740210615,244,0 +170740210663,244,0 +170740210711,244,0 +170740210759,244,0 +170740210807,244,0 +170740210856,244,0 +170740210904,244,0 +170740210952,244,0 +170740211000,244,0 +170740211048,244,0 +170740211096,244,0 +170740211145,244,0 +170740211193,244,0 +170740211241,244,0 +170740211289,244,0 +170740211337,244,0 +170740211385,244,0 +170740211435,244,0 +170740211484,244,0 +170740211534,244,0 +170740211582,244,0 +170740211630,244,0 +170740211678,244,0 +170740211726,244,0 +170740211774,244,0 +170740211823,244,0 +170740211871,244,0 +170740211921,244,0 +170740211969,244,0 +170740212017,244,0 +170740212065,244,0 +170740212113,244,0 +170740212162,244,0 +170740212210,244,0 +170740212258,244,0 +170740212306,244,0 +170740212354,244,0 +170740212402,244,0 +170740212450,244,0 +170740212498,244,0 +170740212546,244,0 +170740212594,244,0 +170740212642,244,0 +170740212691,244,0 +170740212739,244,0 +170740212789,244,0 +170740212838,244,0 +170740212886,244,0 +170740212934,244,0 +170740212982,244,0 +170740213030,244,0 +170740213080,244,0 +170740213128,244,0 +170740213177,244,0 +170740213225,244,0 +170740213273,244,0 +170740213321,244,0 +170740213369,244,0 +170740213417,244,0 +170740213465,244,0 +170740213514,244,0 +170740213562,245,0 +170740213610,244,0 +170740213659,244,0 +170740213707,244,0 +170740213755,244,0 +170740213803,244,0 +170740213851,244,0 +170740213899,244,0 +170740213947,244,0 +170740213996,244,0 +170740214044,244,0 +170740214092,244,0 +170740214140,244,0 +170740214188,244,0 +170740214235,244,0 +170740214283,244,0 +170740214331,244,0 +170740214379,244,0 +170740214427,244,0 +170740214475,244,0 +170740214523,244,0 +170740214571,244,0 +170740214620,244,0 +170740214668,244,0 +170740214718,244,0 +170740214766,244,0 +170740214814,244,0 +170740214863,244,0 +170740214913,243,0 +170740214961,244,0 +170740215010,244,0 +170740215058,244,0 +170740215106,244,0 +170740215156,244,0 +170740215204,244,0 +170740215252,244,0 +170740215300,244,0 +170740215348,244,0 +170740215396,244,0 +170740215444,244,0 +170740215493,244,0 +170740215542,244,0 +170740215590,244,0 +170740215638,244,0 +170740215686,244,0 +170740215734,244,0 +170740215782,244,0 +170740215830,244,0 +170740215878,244,0 +170740215925,244,0 +170740215973,244,0 +170740216021,244,0 +170740216069,244,0 +170740216117,244,0 +170740216165,244,0 +170740216213,244,0 +170740216261,244,0 +170740216309,244,0 +170740216356,244,0 +170740216404,244,0 +170740216452,244,0 +170740216500,244,0 +170740216550,244,0 +170740216599,244,0 +170740216647,244,0 +170740216697,244,0 +170740216745,244,0 +170740216793,244,0 +170740216842,244,0 +170740216890,244,0 +170740216938,244,0 +170740216986,244,0 +170740217034,244,0 +170740217082,244,0 +170740217130,244,0 +170740217178,244,0 +170740217226,244,0 +170740217275,244,0 +170740217325,244,0 +170740217372,244,0 +170740217420,244,0 +170740217470,244,0 +170740217518,244,0 +170740217567,244,0 +170740217615,244,0 +170740217665,244,0 +170740217713,244,0 +170740217761,244,0 +170740217809,244,0 +170740217857,244,0 +170740217906,244,0 +170740217954,244,0 +170740218004,244,0 +170740218053,244,0 +170740218103,244,0 +170740218152,244,0 +170740218202,244,0 +170740218251,244,0 +170740218299,244,0 +170740218347,244,0 +170740218397,244,0 +170740218445,244,0 +170740218493,244,0 +170740218542,244,0 +170740218590,244,0 +170740218640,244,0 +170740218688,244,0 +170740218735,244,0 +170740218785,244,0 +170740218833,245,0 +170740218881,244,0 +170740218929,244,0 +170740218977,244,0 +170740219024,244,0 +170740219072,244,0 +170740219120,244,0 +170740219170,244,0 +170740219218,244,0 +170740219266,244,0 +170740219313,244,0 +170740219361,244,0 +170740219409,244,0 +170740219457,244,0 +170740219505,244,0 +170740219553,244,0 +170740219601,244,0 +170740219649,244,0 +170740219697,244,0 +170740219744,244,0 +170740219794,244,0 +170740219843,244,0 +170740219893,244,0 +170740219942,244,0 +170740219990,244,0 +170740220038,244,0 +170740220086,244,0 +170740220134,244,0 +170740220184,244,0 +170740220233,244,0 +170740220281,244,0 +170740220329,244,0 +170740220377,244,0 +170740220427,244,0 +170740220476,244,0 +170740220524,244,0 +170740220574,244,0 +170740220623,244,0 +170740220671,244,0 +170740220721,244,0 +170740220769,244,0 +170740220817,244,0 +170740220865,244,0 +170740220914,244,0 +170740220962,244,0 +170740221010,244,0 +170740221060,244,0 +170740221108,244,0 +170740221156,244,0 +170740221205,244,0 +170740221253,244,0 +170740221301,244,0 +170740221349,244,0 +170740221399,244,0 +170740221448,244,0 +170740221498,244,0 +170740221547,244,0 +170740221595,244,0 +170740221645,244,0 +170740221694,244,0 +170740221742,244,0 +170740221790,244,0 +170740221838,244,0 +170740221886,244,0 +170740221934,244,0 +170740221982,244,0 +170740222030,244,0 +170740222078,244,0 +170740222127,244,0 +170740222177,244,0 +170740222225,245,0 +170740222273,244,0 +170740222321,244,0 +170740222370,244,0 +170740222418,244,0 +170740222466,244,0 +170740222514,244,0 +170740222564,244,0 +170740222613,244,0 +170740222661,244,0 +170740222709,244,0 +170740222757,244,0 +170740222807,244,0 +170740222855,244,0 +170740222903,244,0 +170740222952,244,0 +170740223000,244,0 +170740223048,244,0 +170740223096,244,0 +170740223146,244,0 +170740223195,244,0 +170740223245,244,0 +170740223293,244,0 +170740223342,244,0 +170740223390,244,0 +170740223438,244,0 +170740223486,244,0 +170740223534,244,0 +170740223584,244,0 +170740223632,244,0 +170740223681,244,0 +170740223729,244,0 +170740223777,244,0 +170740223827,244,0 +170740223875,244,0 +170740223923,244,0 +170740223972,244,0 +170740224020,244,0 +170740224068,244,0 +170740224116,244,0 +170740224164,244,0 +170740224213,244,0 +170740224261,244,0 +170740224309,244,0 +170740224357,244,0 +170740224405,244,0 +170740224453,244,0 +170740224501,244,0 +170740224549,244,0 +170740224598,244,0 +170740224646,244,0 +170740224694,244,0 +170740224742,244,0 +170740224790,244,0 +170740224838,244,0 +170740224886,244,0 +170740224934,244,0 +170740224982,245,0 +170740225030,244,0 +170740225078,244,0 +170740225127,244,0 +170740225175,244,0 +170740225223,244,0 +170740225271,244,0 +170740225319,244,0 +170740225368,244,0 +170740225418,244,0 +170740225466,244,0 +170740225514,244,0 +170740225562,244,0 +170740225610,244,0 +170740225659,244,0 +170740225707,244,0 +170740225757,244,0 +170740225805,244,0 +170740225853,244,0 +170740225902,244,0 +170740225950,244,0 +170740225998,244,0 +170740226046,244,0 +170740226095,244,0 +170740226143,244,0 +170740226191,244,0 +170740226239,244,0 +170740226289,244,0 +170740226338,244,0 +170740226388,244,0 +170740226436,244,0 +170740226485,245,0 +170740226533,244,0 +170740226581,244,0 +170740226629,244,0 +170740226677,244,0 +170740226725,244,0 +170740226775,244,0 +170740226823,244,0 +170740226871,244,0 +170740226920,244,0 +170740226970,244,0 +170740227018,244,0 +170740227066,244,0 +170740227115,244,0 +170740227163,244,0 +170740227211,244,0 +170740227259,244,0 +170740227307,244,0 +170740227355,244,0 +170740227403,244,0 +170740227450,244,0 +170740227498,244,0 +170740227546,244,0 +170740227594,244,0 +170740227642,244,0 +170740227690,244,0 +170740227738,244,0 +170740227786,244,0 +170740227834,244,0 +170740227882,244,0 +170740227929,244,0 +170740227977,244,0 +170740228027,244,0 +170740228075,244,0 +170740228124,244,0 +170740228172,244,0 +170740228220,244,0 +170740228268,244,0 +170740228318,244,0 +170740228366,244,0 +170740228415,244,0 +170740228463,244,0 +170740228511,244,0 +170740228559,244,0 +170740228607,244,0 +170740228655,244,0 +170740228703,245,0 +170740228753,244,0 +170740228800,244,0 +170740228848,244,0 +170740228898,244,0 +170740228946,244,0 +170740228994,244,0 +170740229042,244,0 +170740229090,244,0 +170740229138,244,0 +170740229187,244,0 +170740229237,244,0 +170740229285,244,0 +170740229334,244,0 +170740229384,244,0 +170740229432,244,0 +170740229481,244,0 +170740229529,244,0 +170740229577,244,0 +170740229625,244,0 +170740229673,244,0 +170740229721,244,0 +170740229769,244,0 +170740229817,244,0 +170740229866,244,0 +170740229914,244,0 +170740229964,244,0 +170740230012,244,0 +170740230061,244,0 +170740230109,244,0 +170740230157,244,0 +170740230207,244,0 +170740230255,244,0 +170740230303,244,0 +170740230352,244,0 +170740230402,244,0 +170740230451,244,0 +170740230499,244,0 +170740230547,244,0 +170740230595,244,0 +170740230643,244,0 +170740230693,244,0 +170740230741,244,0 +170740230788,244,0 +170740230836,244,0 +170740230884,244,0 +170740230932,244,0 +170740230982,244,0 +170740231030,244,0 +170740231078,244,0 +170740231126,244,0 +170740231175,244,0 +170740231223,244,0 +170740231271,244,0 +170740231319,244,0 +170740231367,244,0 +170740231414,244,0 +170740231464,244,0 +170740231513,244,0 +170740231561,244,0 +170740231611,244,0 +170740231659,244,0 +170740231708,244,0 +170740231758,244,0 +170740231806,244,0 +170740231854,244,0 +170740231903,244,0 +170740231951,244,0 +170740232001,244,0 +170740232049,244,0 +170740232098,244,0 +170740232148,244,0 +170740232196,244,0 +170740232244,244,0 +170740232292,244,0 +170740232341,244,0 +170740232391,244,0 +170740232440,245,0 +170740232488,244,0 +170740232536,245,0 +170740232584,244,0 +170740232632,244,0 +170740232680,244,0 +170740232729,245,0 +170740232777,244,0 +170740232827,244,0 +170740232876,244,0 +170740232926,245,0 +170740232974,244,0 +170740233022,244,0 +170740233070,244,0 +170740233119,244,0 +170740233167,244,0 +170740233215,244,0 +170740233263,244,0 +170740233311,244,0 +170740233359,244,0 +170740233407,244,0 +170740233457,244,0 +170740233506,244,0 +170740233554,244,0 +170740233602,244,0 +170740233650,244,0 +170740233698,244,0 +170740233746,244,0 +170740233796,244,0 +170740233844,244,0 +170740233893,244,0 +170740233941,244,0 +170740233989,244,0 +170740234037,244,0 +170740234086,244,0 +170740234136,244,0 +170740234185,244,0 +170740234233,245,0 +170740234281,244,0 +170740234329,244,0 +170740234377,244,0 +170740234425,244,0 +170740234475,245,0 +170740234524,244,0 +170740234572,244,0 +170740234622,245,0 +170740234670,244,0 +170740234718,244,0 +170740234766,244,0 +170740234814,244,0 +170740234862,244,0 +170740234910,244,0 +170740234959,244,0 +170740235007,244,0 +170740235055,244,0 +170740235104,244,0 +170740235152,244,0 +170740235202,244,0 +170740235250,244,0 +170740235298,244,0 +170740235346,244,0 +170740235394,244,0 +170740235443,244,0 +170740235493,244,0 +170740235541,244,0 +170740235589,244,0 +170740235638,244,0 +170740235686,244,0 +170740235734,244,0 +170740235784,244,0 +170740235832,244,0 +170740235880,244,0 +170740235928,244,0 +170740235976,244,0 +170740236024,245,0 +170740236072,244,0 +170740236121,244,0 +170740236169,244,0 +170740236219,244,0 +170740236267,244,0 +170740236316,244,0 +170740236364,244,0 +170740236412,244,0 +170740236460,244,0 +170740236508,244,0 +170740236556,244,0 +170740236604,244,0 +170740236652,244,0 +170740236700,244,0 +170740236749,244,0 +170740236797,244,0 +170740236847,244,0 +170740236896,244,0 +170740236944,244,0 +170740236992,244,0 +170740237040,244,0 +170740237089,244,0 +170740237137,244,0 +170740237185,244,0 +170740237235,244,0 +170740237283,244,0 +170740237332,244,0 +170740237380,244,0 +170740237430,244,0 +170740237478,244,0 +170740237526,244,0 +170740237575,244,0 +170740237623,244,0 +170740237671,244,0 +170740237719,244,0 +170740237767,244,0 +170740237817,245,0 +170740237865,244,0 +170740237912,244,0 +170740237960,244,0 +170740238008,244,0 +170740238058,244,0 +170740238107,244,0 +170740238157,244,0 +170740238207,244,0 +170740238254,244,0 +170740238302,245,0 +170740238350,244,0 +170740238400,244,0 +170740238448,244,0 +170740238496,245,0 +170740238545,244,0 +170740238593,244,0 +170740238641,244,0 +170740238689,244,0 +170740238737,244,0 +170740238785,244,0 +170740238835,244,0 +170740238884,244,0 +170740238932,244,0 +170740238980,244,0 +170740239029,244,0 +170740239077,244,0 +170740239127,244,0 +170740239176,245,0 +170740239226,244,0 +170740239274,244,0 +170740239324,244,0 +170740239371,244,0 +170740239421,244,0 +170740239469,244,0 +170740239517,245,0 +170740239566,244,0 +170740239614,244,0 +170740239662,244,0 +170740239712,244,0 +170740239761,244,0 +170740239809,244,0 +170740239857,244,0 +170740239905,244,0 +170740239953,244,0 +170740240001,244,0 +170740240049,244,0 +170740240099,244,0 +170740240148,244,0 +170740240196,244,0 +170740240246,244,0 +170740240294,244,0 +170740240342,244,0 +170740240390,244,0 +170740240437,244,0 +170740240485,244,0 +170740240535,244,0 +170740240583,244,0 +170740240632,244,0 +170740240680,244,0 +170740240728,244,0 +170740240776,244,0 +170740240824,244,0 +170740240872,244,0 +170740240921,244,0 +170740240969,244,0 +170740241017,244,0 +170740241065,244,0 +170740241113,244,0 +170740241161,244,0 +170740241209,244,0 +170740241257,244,0 +170740241305,244,0 +170740241353,244,0 +170740241401,244,0 +170740241449,244,0 +170740241497,244,0 +170740241544,244,0 +170740241592,244,0 +170740241642,244,0 +170740241692,244,0 +170740241741,244,0 +170740241789,244,0 +170740241837,244,0 +170740241887,244,0 +170740241936,244,0 +170740241984,244,0 +170740242032,244,0 +170740242080,244,0 +170740242128,244,0 +170740242176,244,0 +170740242224,244,0 +170740242272,244,0 +170740242320,244,0 +170740242368,245,0 +170740242418,244,0 +170740242467,244,0 +170740242517,244,0 +170740242565,244,0 +170740242613,244,0 +170740242662,244,0 +170740242710,244,0 +170740242759,244,0 +170740242807,244,0 +170740242855,244,0 +170740242903,244,0 +170740242951,244,0 +170740243001,244,0 +170740243049,244,0 +170740243098,244,0 +170740243146,244,0 +170740243196,244,0 +170740243244,244,0 +170740243292,244,0 +170740243341,244,0 +170740243389,244,0 +170740243439,244,0 +170740243487,244,0 +170740243536,244,0 +170740243584,244,0 +170740243632,245,0 +170740243681,244,0 +170740243731,244,0 +170740243779,244,0 +170740243827,244,0 +170740243874,244,0 +170740243922,244,0 +170740243970,244,0 +170740244018,244,0 +170740244066,244,0 +170740244115,244,0 +170740244165,244,0 +170740244213,244,0 +170740244261,245,0 +170740244309,244,0 +170740244358,244,0 +170740244406,244,0 +170740244456,245,0 +170740244504,244,0 +170740244553,244,0 +170740244601,244,0 +170740244649,244,0 +170740244697,244,0 +170740244745,244,0 +170740244793,244,0 +170740244841,244,0 +170740244890,244,0 +170740244938,244,0 +170740244988,244,0 +170740245036,244,0 +170740245084,245,0 +170740245133,244,0 +170740245181,244,0 +170740245229,244,0 +170740245277,244,0 +170740245327,244,0 +170740245375,244,0 +170740245424,244,0 +170740245474,244,0 +170740245522,244,0 +170740245571,245,0 +170740245619,244,0 +170740245667,244,0 +170740245715,244,0 +170740245763,244,0 +170740245811,244,0 +170740245859,244,0 +170740245907,244,0 +170740245955,244,0 +170740246004,244,0 +170740246054,245,0 +170740246102,244,0 +170740246151,244,0 +170740246199,244,0 +170740246247,244,0 +170740246297,244,0 +170740246346,244,0 +170740246394,244,0 +170740246442,244,0 +170740246490,244,0 +170740246540,244,0 +170740246588,244,0 +170740246636,244,0 +170740246684,244,0 +170740246732,244,0 +170740246780,244,0 +170740246827,244,0 +170740246875,244,0 +170740246923,244,0 +170740246973,244,0 +170740247022,244,0 +170740247070,244,0 +170740247118,244,0 +170740247166,244,0 +170740247214,244,0 +170740247262,244,0 +170740247310,244,0 +170740247358,244,0 +170740247408,244,0 +170740247456,244,0 +170740247504,244,0 +170740247552,244,0 +170740247601,244,0 +170740247651,244,0 +170740247699,244,0 +170740247748,244,0 +170740247798,244,0 +170740247846,245,0 +170740247895,245,0 +170740247943,244,0 +170740247991,244,0 +170740248039,244,0 +170740248089,244,0 +170740248138,244,0 +170740248186,244,0 +170740248234,245,0 +170740248282,244,0 +170740248330,244,0 +170740248378,244,0 +170740248428,244,0 +170740248476,244,0 +170740248525,244,0 +170740248573,244,0 +170740248621,244,0 +170740248669,244,0 +170740248719,244,0 +170740248767,244,0 +170740248816,244,0 +170740248864,245,0 +170740248912,244,0 +170740248962,244,0 +170740249011,244,0 +170740249059,244,0 +170740249109,244,0 +170740249157,244,0 +170740249205,244,0 +170740249252,244,0 +170740249300,244,0 +170740249350,245,0 +170740249398,244,0 +170740249446,244,0 +170740249494,244,0 +170740249542,244,0 +170740249590,244,0 +170740249638,244,0 +170740249686,244,0 +170740249734,244,0 +170740249783,244,0 +170740249831,244,0 +170740249879,244,0 +170740249927,245,0 +170740249977,244,0 +170740250025,244,0 +170740250074,244,0 +170740250122,244,0 +170740250170,244,0 +170740250220,245,0 +170740250269,245,0 +170740250317,244,0 +170740250367,244,0 +170740250415,244,0 +170740250463,244,0 +170740250512,244,0 +170740250560,244,0 +170740250608,245,0 +170740250656,244,0 +170740250704,244,0 +170740250752,244,0 +170740250800,244,0 +170740250850,244,0 +170740250898,244,0 +170740250946,244,0 +170740250995,244,0 +170740251045,245,0 +170740251094,244,0 +170740251144,244,0 +170740251192,244,0 +170740251240,244,0 +170740251288,245,0 +170740251335,244,0 +170740251383,244,0 +170740251433,244,0 +170740251481,244,0 +170740251529,244,0 +170740251578,244,0 +170740251626,244,0 +170740251676,244,0 +170740251724,244,0 +170740251772,244,0 +170740251821,244,0 +170740251871,245,0 +170740251919,244,0 +170740251967,244,0 +170740252015,244,0 +170740252063,244,0 +170740252111,244,0 +170740252159,244,0 +170740252207,244,0 +170740252255,244,0 +170740252303,244,0 +170740252352,244,0 +170740252400,244,0 +170740252450,244,0 +170740252498,245,0 +170740252547,244,0 +170740252597,244,0 +170740252645,244,0 +170740252693,244,0 +170740252741,244,0 +170740252788,245,0 +170740252836,244,0 +170740252884,244,0 +170740252932,244,0 +170740252982,244,0 +170740253030,244,0 +170740253079,244,0 +170740253127,244,0 +170740253175,244,0 +170740253225,244,0 +170740253273,244,0 +170740253321,244,0 +170740253369,244,0 +170740253417,244,0 +170740253466,244,0 +170740253516,244,0 +170740253564,244,0 +170740253612,244,0 +170740253661,244,0 +170740253711,245,0 +170740253760,244,0 +170740253810,244,0 +170740253858,244,0 +170740253906,244,0 +170740253955,244,0 +170740254003,244,0 +170740254051,244,0 +170740254099,244,0 +170740254149,244,0 +170740254198,244,0 +170740254246,244,0 +170740254294,245,0 +170740254344,244,0 +170740254392,244,0 +170740254440,245,0 +170740254489,244,0 +170740254537,244,0 +170740254585,244,0 +170740254633,244,0 +170740254681,244,0 +170740254729,244,0 +170740254777,244,0 +170740254825,244,0 +170740254873,244,0 +170740254921,244,0 +170740254969,244,0 +170740255017,244,0 +170740255065,244,0 +170740255113,244,0 +170740255161,244,0 +170740255208,244,0 +170740255258,244,0 +170740255308,244,0 +170740255356,244,0 +170740255404,245,0 +170740255451,244,0 +170740255499,244,0 +170740255547,244,0 +170740255597,244,0 +170740255645,244,0 +170740255693,244,0 +170740255741,244,0 +170740255790,244,0 +170740255838,244,0 +170740255888,244,0 +170740255936,244,0 +170740255985,245,0 +170740256033,244,0 +170740256083,244,0 +170740256131,244,0 +170740256179,244,0 +170740256228,244,0 +170740256276,244,0 +170740256326,244,0 +170740256374,244,0 +170740256422,245,0 +170740256470,245,0 +170740256518,245,0 +170740256565,245,0 +170740256613,244,0 +170740256663,244,0 +170740256711,244,0 +170740256759,245,0 +170740256807,245,0 +170740256856,244,0 +170740256906,244,0 +170740256955,244,0 +170740257005,244,0 +170740257053,244,0 +170740257101,244,0 +170740257149,244,0 +170740257197,244,0 +170740257245,244,0 +170740257293,244,0 +170740257341,244,0 +170740257389,244,0 +170740257438,244,0 +170740257486,244,0 +170740257536,245,0 +170740257585,245,0 +170740257633,244,0 +170740257681,244,0 +170740257729,244,0 +170740257777,244,0 +170740257827,245,0 +170740257876,244,0 +170740257924,244,0 +170740257974,245,0 +170740258023,244,0 +170740258071,244,0 +170740258121,245,0 +170740258170,244,0 +170740258220,244,0 +170740258268,244,0 +170740258316,244,0 +170740258365,245,0 +170740258413,244,0 +170740258461,244,0 +170740258511,244,0 +170740258559,245,0 +170740258607,244,0 +170740258656,244,0 +170740258706,244,0 +170740258754,245,0 +170740258802,245,0 +170740258851,244,0 +170740258899,245,0 +170740258949,244,0 +170740258997,244,0 +170740259045,244,0 +170740259093,244,0 +170740259140,244,0 +170740259190,244,0 +170740259238,245,0 +170740259286,245,0 +170740259334,245,0 +170740259382,244,0 +170740259431,244,0 +170740259479,244,0 +170740259529,244,0 +170740259577,244,0 +170740259626,244,0 +170740259674,245,0 +170740259722,244,0 +170740259770,244,0 +170740259818,244,0 +170740259866,245,0 +170740259916,244,0 +170740259964,244,0 +170740260013,244,0 +170740260063,244,0 +170740260112,245,0 +170740260160,245,0 +170740260210,244,0 +170740260258,244,0 +170740260308,244,0 +170740260356,244,0 +170740260405,245,0 +170740260453,244,0 +170740260501,245,0 +170740260551,245,0 +170740260598,244,0 +170740260648,244,0 +170740260696,244,0 +170740260744,245,0 +170740260793,245,0 +170740260843,244,0 +170740260892,244,0 +170740260940,244,0 +170740260988,244,0 +170740261036,245,0 +170740261084,244,0 +170740261134,245,0 +170740261182,244,0 +170740261230,244,0 +170740261278,245,0 +170740261326,244,0 +170740261375,244,0 +170740261423,245,0 +170740261471,245,0 +170740261519,244,0 +170740261567,245,0 +170740261615,245,0 +170740261663,245,0 +170740261711,245,0 +170740261759,244,0 +170740261807,244,0 +170740261857,245,0 +170740261905,244,0 +170740261954,244,0 +170740262002,244,0 +170740262051,244,0 +170740262099,245,0 +170740262147,244,0 +170740262195,245,0 +170740262243,245,0 +170740262291,245,0 +170740262339,245,0 +170740262387,245,0 +170740262434,244,0 +170740262482,244,0 +170740262530,244,0 +170740262578,244,0 +170740262628,244,0 +170740262677,244,0 +170740262727,245,0 +170740262775,244,0 +170740262823,245,0 +170740262871,244,0 +170740262919,244,0 +170740262968,244,0 +170740263016,244,0 +170740263064,244,0 +170740263112,244,0 +170740263160,244,0 +170740263208,244,0 +170740263256,244,0 +170740263305,244,0 +170740263353,244,0 +170740263403,245,0 +170740263451,245,0 +170740263499,245,0 +170740263548,245,0 +170740263596,244,0 +170740263644,245,0 +170740263694,244,0 +170740263742,244,0 +170740263791,244,0 +170740263839,244,0 +170740263887,244,0 +170740263935,244,0 +170740263985,245,0 +170740264033,244,0 +170740264081,245,0 +170740264129,244,0 +170740264177,244,0 +170740264225,244,0 +170740264273,244,0 +170740264322,245,0 +170740264370,244,0 +170740264420,244,0 +170740264468,245,0 +170740264515,244,0 +170740264565,244,0 +170740264613,245,0 +170740264663,244,0 +170740264710,245,0 +170740264760,244,0 +170740264808,245,0 +170740264856,244,0 +170740264905,244,0 +170740264953,245,0 +170740265003,245,0 +170740265052,244,0 +170740265102,244,0 +170740265150,244,0 +170740265198,245,0 +170740265246,244,0 +170740265294,244,0 +170740265343,245,0 +170740265391,244,0 +170740265439,244,0 +170740265487,245,0 +170740265535,245,0 +170740265583,245,0 +170740265631,244,0 +170740265679,245,0 +170740265727,245,0 +170740265775,244,0 +170740265824,245,0 +170740265872,245,0 +170740265920,244,0 +170740265970,244,0 +170740266018,244,0 +170740266066,244,0 +170740266114,244,0 +170740266162,244,0 +170740266210,244,0 +170740266259,244,0 +170740266307,245,0 +170740266355,244,0 +170740266403,244,0 +170740266451,245,0 +170740266499,245,0 +170740266547,244,0 +170740266596,244,0 +170740266644,244,0 +170740266694,245,0 +170740266742,245,0 +170740266791,244,0 +170740266839,244,0 +170740266887,245,0 +170740266935,244,0 +170740266983,244,0 +170740267033,244,0 +170740267081,244,0 +170740267129,245,0 +170740267177,245,0 +170740267225,244,0 +170740267274,244,0 +170740267324,245,0 +170740267373,245,0 +170740267421,244,0 +170740267470,244,0 +170740267520,245,0 +170740267568,244,0 +170740267616,245,0 +170740267664,245,0 +170740267712,245,0 +170740267762,245,0 +170740267810,245,0 +170740267857,245,0 +170740267905,244,0 +170740267953,245,0 +170740268001,245,0 +170740268049,244,0 +170740268097,244,0 +170740268145,245,0 +170740268193,245,0 +170740268241,245,0 +170740268288,245,0 +170740268336,245,0 +170740268384,245,0 +170740268432,245,0 +170740268480,244,0 +170740268528,245,0 +170740268576,245,0 +170740268624,244,0 +170740268672,245,0 +170740268719,244,0 +170740268767,244,0 +170740268817,245,0 +170740268866,245,0 +170740268916,245,0 +170740268966,244,0 +170740269014,245,0 +170740269062,244,0 +170740269111,245,0 +170740269159,244,0 +170740269207,244,0 +170740269255,245,0 +170740269303,245,0 +170740269351,245,0 +170740269400,244,0 +170740269448,244,0 +170740269496,245,0 +170740269546,245,0 +170740269595,244,0 +170740269645,245,0 +170740269693,245,0 +170740269741,245,0 +170740269789,245,0 +170740269838,244,0 +170740269886,244,0 +170740269934,244,0 +170740269982,245,0 +170740270032,245,0 +170740270081,245,0 +170740270129,244,0 +170740270177,245,0 +170740270227,244,0 +170740270275,245,0 +170740270324,244,0 +170740270374,245,0 +170740270423,244,0 +170740270473,245,0 +170740270522,245,0 +170740270572,244,0 +170740270620,244,0 +170740270668,244,0 +170740270716,245,0 +170740270765,245,0 +170740270813,245,0 +170740270863,245,0 +170740270912,244,0 +170740270960,244,0 +170740271008,244,0 +170740271056,245,0 +170740271104,245,0 +170740271152,245,0 +170740271202,245,0 +170740271250,245,0 +170740271299,244,0 +170740271347,245,0 +170740271395,244,0 +170740271445,244,0 +170740271493,245,0 +170740271542,245,0 +170740271590,244,0 +170740271640,245,0 +170740271689,245,0 +170740271739,245,0 +170740271788,245,0 +170740271838,244,0 +170740271887,245,0 +170740271935,245,0 +170740271985,245,0 +170740272034,245,0 +170740272082,245,0 +170740272132,245,0 +170740272180,244,0 +170740272228,245,0 +170740272277,245,0 +170740272325,244,0 +170740272373,244,0 +170740272423,245,0 +170740272471,244,0 +170740272520,245,0 +170740272568,244,0 +170740272616,245,0 +170740272666,245,0 +170740272714,245,0 +170740272763,244,0 +170740272811,245,0 +170740272859,245,0 +170740272907,245,0 +170740272955,245,0 +170740273003,244,0 +170740273051,245,0 +170740273099,245,0 +170740273147,244,0 +170740273197,245,0 +170740273244,245,0 +170740273292,245,0 +170740273342,244,0 +170740273390,244,0 +170740273438,245,0 +170740273486,244,0 +170740273534,245,0 +170740273583,245,0 +170740273633,245,0 +170740273681,244,0 +170740273729,245,0 +170740273777,244,0 +170740273825,245,0 +170740273873,245,0 +170740273921,244,0 +170740273970,245,0 +170740274018,245,0 +170740274066,245,0 +170740274116,244,0 +170740274165,244,0 +170740274213,245,0 +170740274261,245,0 +170740274309,244,0 +170740274357,244,0 +170740274406,244,0 +170740274454,245,0 +170740274504,244,0 +170740274552,245,0 +170740274600,245,0 +170740274648,244,0 +170740274697,245,0 +170740274745,244,0 +170740274793,245,0 +170740274841,245,0 +170740274889,245,0 +170740274939,245,0 +170740274988,244,0 +170740275036,244,0 +170740275085,245,0 +170740275133,245,0 +170740275183,245,0 +170740275231,244,0 +170740275280,245,0 +170740275328,245,0 +170740275378,245,0 +170740275426,245,0 +170740275474,245,0 +170740275522,244,0 +170740275570,245,0 +170740275619,245,0 +170740275667,244,0 +170740275715,245,0 +170740275763,245,0 +170740275813,245,0 +170740275862,245,0 +170740275910,245,0 +170740275958,244,0 +170740276006,245,0 +170740276054,245,0 +170740276102,244,0 +170740276152,245,0 +170740276200,245,0 +170740276249,244,0 +170740276299,244,0 +170740276347,245,0 +170740276395,245,0 +170740276443,245,0 +170740276490,244,0 +170740276538,244,0 +170740276586,244,0 +170740276634,245,0 +170740276682,244,0 +170740276730,245,0 +170740276778,245,0 +170740276827,244,0 +170740276875,245,0 +170740276923,245,0 +170740276972,245,0 +170740277022,245,0 +170740277070,245,0 +170740277118,244,0 +170740277166,244,0 +170740277213,244,0 +170740277261,244,0 +170740277309,245,0 +170740277357,245,0 +170740277405,245,0 +170740277454,245,0 +170740277502,245,0 +170740277550,244,0 +170740277598,244,0 +170740277646,245,0 +170740277696,245,0 +170740277745,244,0 +170740277795,245,0 +170740277843,245,0 +170740277891,245,0 +170740277938,245,0 +170740277988,245,0 +170740278036,245,0 +170740278085,245,0 +170740278133,244,0 +170740278181,245,0 +170740278229,244,0 +170740278279,245,0 +170740278327,244,0 +170740278375,244,0 +170740278423,245,0 +170740278471,244,0 +170740278519,244,0 +170740278567,244,0 +170740278616,245,0 +170740278664,245,0 +170740278714,245,0 +170740278762,244,0 +170740278810,244,0 +170740278858,245,0 +170740278907,245,0 +170740278955,245,0 +170740279005,245,0 +170740279053,245,0 +170740279101,244,0 +170740279149,245,0 +170740279197,244,0 +170740279246,244,0 +170740279296,245,0 +170740279344,245,0 +170740279392,244,0 +170740279440,244,0 +170740279488,245,0 +170740279536,245,0 +170740279583,244,0 +170740279631,245,0 +170740279679,245,0 +170740279727,244,0 +170740279777,244,0 +170740279825,245,0 +170740279873,245,0 +170740279921,245,0 +170740279969,244,0 +170740280017,244,0 +170740280065,244,0 +170740280114,244,0 +170740280164,244,0 +170740280213,245,0 +170740280263,245,0 +170740280311,245,0 +170740280359,245,0 +170740280407,244,0 +170740280455,244,0 +170740280503,244,0 +170740280551,245,0 +170740280599,244,0 +170740280647,244,0 +170740280696,244,0 +170740280744,245,0 +170740280794,245,0 +170740280841,244,0 +170740280889,244,0 +170740280939,245,0 +170740280987,245,0 +170740281035,245,0 +170740281085,244,0 +170740281133,244,0 +170740281182,244,0 +170740281230,245,0 +170740281278,244,0 +170740281326,244,0 +170740281374,244,0 +170740281422,244,0 +170740281471,245,0 +170740281519,244,0 +170740281569,244,0 +170740281617,244,0 +170740281665,245,0 +170740281713,244,0 +170740281762,244,0 +170740281810,244,0 +170740281858,244,0 +170740281906,244,0 +170740281954,245,0 +170740282002,244,0 +170740282052,245,0 +170740282101,245,0 +170740282151,245,0 +170740282199,244,0 +170740282248,245,0 +170740282298,244,0 +170740282345,245,0 +170740282395,244,0 +170740282444,245,0 +170740282492,245,0 +170740282540,244,0 +170740282590,244,0 +170740282638,245,0 +170740282686,245,0 +170740282733,244,0 +170740282781,245,0 +170740282829,245,0 +170740282877,245,0 +170740282927,244,0 +170740282975,244,0 +170740283022,245,0 +170740283071,245,0 +170740283120,244,0 +170740283168,244,0 +170740283217,245,0 +170740283265,244,0 +170740283313,245,0 +170740283361,245,0 +170740283411,245,0 +170740283460,245,0 +170740283509,245,0 +170740283559,244,0 +170740283607,245,0 +170740283656,244,0 +170740283704,245,0 +170740283752,244,0 +170740283802,245,0 +170740283851,245,0 +170740283899,244,0 +170740283947,245,0 +170740283997,244,0 +170740284045,245,0 +170740284093,244,0 +170740284141,245,0 +170740284189,245,0 +170740284237,245,0 +170740284285,244,0 +170740284334,245,0 +170740284384,245,0 +170740284432,245,0 +170740284480,245,0 +170740284527,244,0 +170740284575,244,0 +170740284625,245,0 +170740284673,245,0 +170740284722,245,0 +170740284770,245,0 +170740284820,245,0 +170740284868,244,0 +170740284916,245,0 +170740284964,245,0 +170740285012,245,0 +170740285059,245,0 +170740285109,245,0 +170740285157,245,0 +170740285205,245,0 +170740285253,245,0 +170740285300,245,0 +170740285348,245,0 +170740285396,245,0 +170740285444,245,0 +170740285492,244,0 +170740285540,245,0 +170740285588,245,0 +170740285636,245,0 +170740285684,245,0 +170740285731,245,0 +170740285781,245,0 +170740285829,244,0 +170740285877,245,0 +170740285925,244,0 +170740285973,245,0 +170740286020,244,0 +170740286068,245,0 +170740286116,244,0 +170740286166,245,0 +170740286214,245,0 +170740286262,245,0 +170740286309,244,0 +170740286357,244,0 +170740286405,245,0 +170740286453,244,0 +170740286501,244,0 +170740286549,244,0 +170740286597,244,0 +170740286645,245,0 +170740286693,244,0 +170740286740,244,0 +170740286788,245,0 +170740286836,245,0 +170740286884,244,0 +170740286932,245,0 +170740286980,245,0 +170740287028,245,0 +170740287076,244,0 +170740287124,245,0 +170740287173,245,0 +170740287221,244,0 +170740287269,245,0 +170740287317,245,0 +170740287365,245,0 +170740287413,245,0 +170740287463,245,0 +170740287511,245,0 +170740287559,245,0 +170740287607,245,0 +170740287656,244,0 +170740287706,244,0 +170740287754,245,0 +170740287802,245,0 +170740287850,245,0 +170740287898,245,0 +170740287945,245,0 +170740287994,244,0 +170740288041,245,0 +170740288089,245,0 +170740288139,245,0 +170740288187,244,0 +170740288236,245,0 +170740288286,245,0 +170740288334,245,0 +170740288382,245,0 +170740288430,245,0 +170740288478,244,0 +170740288527,245,0 +170740288575,245,0 +170740288623,245,0 +170740288671,245,0 +170740288720,245,0 +170740288768,245,0 +170740288816,244,0 +170740288864,244,0 +170740288912,245,0 +170740288960,245,0 +170740289009,245,0 +170740289057,245,0 +170740289105,245,0 +170740289153,244,0 +170740289201,245,0 +170740289251,245,0 +170740289299,245,0 +170740289347,245,0 +170740289396,245,0 +170740289444,245,0 +170740289492,244,0 +170740289540,244,0 +170740289590,245,0 +170740289637,245,0 +170740289685,245,0 +170740289733,245,0 +170740289781,245,0 +170740289829,244,0 +170740289878,245,0 +170740289926,245,0 +170740289976,245,0 +170740290025,244,0 +170740290073,244,0 +170740290121,245,0 +170740290169,244,0 +170740290217,245,0 +170740290265,245,0 +170740290312,244,0 +170740290360,245,0 +170740290408,245,0 +170740290456,245,0 +170740290504,244,0 +170740290552,244,0 +170740290600,244,0 +170740290648,244,0 +170740290696,244,0 +170740290744,244,0 +170740290792,244,0 +170740290841,244,0 +170740290889,245,0 +170740290937,245,0 +170740290985,245,0 +170740291034,245,0 +170740291083,245,0 +170740291131,245,0 +170740291181,245,0 +170740291230,244,0 +170740291278,245,0 +170740291326,245,0 +170740291376,244,0 +170740291424,245,0 +170740291471,245,0 +170740291519,244,0 +170740291567,245,0 +170740291615,245,0 +170740291663,245,0 +170740291711,244,0 +170740291759,245,0 +170740291808,245,0 +170740291856,244,0 +170740291904,245,0 +170740291952,245,0 +170740292000,244,0 +170740292048,244,0 +170740292096,245,0 +170740292144,245,0 +170740292191,245,0 +170740292239,245,0 +170740292287,245,0 +170740292335,245,0 +170740292384,245,0 +170740292432,245,0 +170740292480,245,0 +170740292528,245,0 +170740292576,244,0 +170740292624,245,0 +170740292672,245,0 +170740292720,245,0 +170740292770,244,0 +170740292817,245,0 +170740292867,245,0 +170740292916,244,0 +170740292966,245,0 +170740293014,245,0 +170740293062,245,0 +170740293110,245,0 +170740293158,244,0 +170740293206,244,0 +170740293254,245,0 +170740293302,245,0 +170740293349,245,0 +170740293399,245,0 +170740293447,245,0 +170740293495,245,0 +170740293543,245,0 +170740293591,245,0 +170740293639,245,0 +170740293687,245,0 +170740293735,245,0 +170740293784,245,0 +170740293832,245,0 +170740293882,244,0 +170740293930,244,0 +170740293978,245,0 +170740294026,245,0 +170740294074,245,0 +170740294122,245,0 +170740294170,244,0 +170740294217,245,0 +170740294265,245,0 +170740294313,245,0 +170740294361,245,0 +170740294411,245,0 +170740294459,245,0 +170740294507,245,0 +170740294555,245,0 +170740294604,245,0 +170740294652,245,0 +170740294702,245,0 +170740294751,245,0 +170740294801,244,0 +170740294849,244,0 +170740294897,245,0 +170740294945,244,0 +170740294993,245,0 +170740295041,245,0 +170740295090,245,0 +170740295138,245,0 +170740295186,245,0 +170740295236,245,0 +170740295284,245,0 +170740295333,244,0 +170740295383,245,0 +170740295432,245,0 +170740295480,245,0 +170740295530,245,0 +170740295578,245,0 +170740295626,245,0 +170740295675,244,0 +170740295723,245,0 +170740295771,245,0 +170740295820,245,0 +170740295868,245,0 +170740295916,245,0 +170740295964,244,0 +170740296012,244,0 +170740296060,245,0 +170740296108,245,0 +170740296158,245,0 +170740296206,245,0 +170740296255,245,0 +170740296305,245,0 +170740296354,244,0 +170740296402,245,0 +170740296450,245,0 +170740296498,245,0 +170740296546,245,0 +170740296594,245,0 +170740296642,245,0 +170740296692,245,0 +170740296741,244,0 +170740296789,245,0 +170740296839,245,0 +170740296887,245,0 +170740296936,245,0 +170740296984,245,0 +170740297032,245,0 +170740297080,245,0 +170740297128,245,0 +170740297177,245,0 +170740297227,245,0 +170740297277,244,0 +170740297326,245,0 +170740297376,245,0 +170740297424,244,0 +170740297473,245,0 +170740297523,245,0 +170740297572,245,0 +170740297620,245,0 +170740297668,245,0 +170740297718,245,0 +170740297767,244,0 +170740297815,245,0 +170740297863,245,0 +170740297912,245,0 +170740297962,245,0 +170740298010,245,0 +170740298059,245,0 +170740298107,245,0 +170740298157,245,0 +170740298205,245,0 +170740298254,245,0 +170740298302,245,0 +170740298350,245,0 +170740298398,245,0 +170740298446,245,0 +170740298494,244,0 +170740298542,245,0 +170740298590,245,0 +170740298638,245,0 +170740298688,245,0 +170740298736,245,0 +170740298784,245,0 +170740298832,244,0 +170740298879,245,0 +170740298927,245,0 +170740298977,245,0 +170740299025,245,0 +170740299073,245,0 +170740299121,245,0 +170740299170,245,0 +170740299218,244,0 +170740299266,245,0 +170740299314,245,0 +170740299362,245,0 +170740299410,245,0 +170740299458,245,0 +170740299506,245,0 +170740299556,245,0 +170740299604,245,0 +170740299651,245,0 +170740299699,245,0 +170740299749,245,0 +170740299797,245,0 +170740299845,245,0 +170740299893,245,0 +170740299941,245,0 +170740299989,245,0 +170740300037,245,0 +170740300085,245,0 +170740300132,245,0 +170740300180,245,0 +170740300228,245,0 +170740300276,245,0 +170740300324,245,0 +170740300372,244,0 +170740300420,245,0 +170740300470,244,0 +170740300518,245,0 +170740300567,244,0 +170740300617,245,0 +170740300665,245,0 +170740300713,245,0 +170740300762,245,0 +170740300812,245,0 +170740300860,245,0 +170740300908,245,0 +170740300956,245,0 +170740301003,245,0 +170740301051,244,0 +170740301099,245,0 +170740301149,245,0 +170740301198,245,0 +170740301246,245,0 +170740301294,245,0 +170740301342,245,0 +170740301392,245,0 +170740301440,245,0 +170740301488,245,0 +170740301537,245,0 +170740301585,244,0 +170740301633,245,0 +170740301681,245,0 +170740301729,245,0 +170740301779,245,0 +170740301827,245,0 +170740301875,245,0 +170740301923,245,0 +170740301971,245,0 +170740302018,245,0 +170740302066,244,0 +170740302114,245,0 +170740302162,245,0 +170740302210,245,0 +170740302260,245,0 +170740302308,244,0 +170740302356,245,0 +170740302404,244,0 +170740302452,245,0 +170740302500,245,0 +170740302549,245,0 +170740302599,245,0 +170740302647,245,0 +170740302696,245,0 +170740302744,244,0 +170740302792,245,0 +170740302840,245,0 +170740302889,245,0 +170740302937,245,0 +170740302987,245,0 +170740303035,245,0 +170740303083,245,0 +170740303131,245,0 +170740303179,245,0 +170740303228,244,0 +170740303276,245,0 +170740303324,245,0 +170740303374,245,0 +170740303422,245,0 +170740303470,245,0 +170740303518,245,0 +170740303566,245,0 +170740303614,245,0 +170740303662,245,0 +170740303710,245,0 +170740303758,245,0 +170740303805,245,0 +170740303853,245,0 +170740303901,245,0 +170740303951,245,0 +170740303999,244,0 +170740304048,245,0 +170740304096,245,0 +170740304144,245,0 +170740304192,245,0 +170740304240,245,0 +170740304288,245,0 +170740304337,245,0 +170740304385,245,0 +170740304435,245,0 +170740304483,245,0 +170740304532,245,0 +170740304580,245,0 +170740304630,244,0 +170740304679,245,0 +170740304727,245,0 +170740304777,244,0 +170740304825,245,0 +170740304872,245,0 +170740304922,245,0 +170740304970,245,0 +170740305019,245,0 +170740305067,245,0 +170740305115,245,0 +170740305163,245,0 +170740305211,245,0 +170740305261,245,0 +170740305309,245,0 +170740305357,245,0 +170740305406,244,0 +170740305454,245,0 +170740305502,245,0 +170740305550,245,0 +170740305598,245,0 +170740305647,245,0 +170740305695,245,0 +170740305743,245,0 +170740305793,245,0 +170740305841,245,0 +170740305889,245,0 +170740305937,245,0 +170740305985,244,0 +170740306033,245,0 +170740306082,245,0 +170740306130,245,0 +170740306178,245,0 +170740306226,245,0 +170740306275,245,0 +170740306325,245,0 +170740306373,245,0 +170740306422,245,0 +170740306470,245,0 +170740306520,245,0 +170740306569,245,0 +170740306617,245,0 +170740306665,245,0 +170740306715,245,0 +170740306763,244,0 +170740306812,244,0 +170740306860,245,0 +170740306910,245,0 +170740306958,245,0 +170740307006,245,0 +170740307055,245,0 +170740307105,245,0 +170740307153,245,0 +170740307201,245,0 +170740307249,244,0 +170740307297,245,0 +170740307345,245,0 +170740307393,245,0 +170740307442,245,0 +170740307492,245,0 +170740307541,245,0 +170740307591,245,0 +170740307640,245,0 +170740307690,245,0 +170740307738,245,0 +170740307787,245,0 +170740307835,245,0 +170740307883,245,0 +170740307931,245,0 +170740307979,245,0 +170740308028,245,0 +170740308078,245,0 +170740308127,245,0 +170740308175,245,0 +170740308223,245,0 +170740308273,244,0 +170740308322,245,0 +170740308370,245,0 +170740308418,245,0 +170740308468,245,0 +170740308516,245,0 +170740308564,245,0 +170740308612,245,0 +170740308661,245,0 +170740308709,245,0 +170740308759,245,0 +170740308807,245,0 +170740308856,245,0 +170740308906,245,0 +170740308955,245,0 +170740309003,245,0 +170740309051,245,0 +170740309101,245,0 +170740309149,244,0 +170740309197,245,0 +170740309245,245,0 +170740309294,245,0 +170740309342,245,0 +170740309390,245,0 +170740309438,245,0 +170740309486,245,0 +170740309534,245,0 +170740309583,245,0 +170740309631,245,0 +170740309679,245,0 +170740309729,245,0 +170740309777,245,0 +170740309826,245,0 +170740309874,245,0 +170740309924,245,0 +170740309973,245,0 +170740310021,245,0 +170740310069,245,0 +170740310117,245,0 +170740310165,244,0 +170740310213,245,0 +170740310261,245,0 +170740310309,245,0 +170740310359,245,0 +170740310407,245,0 +170740310455,245,0 +170740310503,245,0 +170740310552,245,0 +170740310602,245,0 +170740310651,244,0 +170740310699,245,0 +170740310747,244,0 +170740310795,245,0 +170740310845,245,0 +170740310892,245,0 +170740310940,245,0 +170740310990,245,0 +170740311038,245,0 +170740311086,245,0 +170740311134,245,0 +170740311183,245,0 +170740311231,245,0 +170740311281,245,0 +170740311329,245,0 +170740311377,245,0 +170740311426,245,0 +170740311474,245,0 +170740311522,245,0 +170740311570,245,0 +170740311620,245,0 +170740311669,245,0 +170740311719,245,0 +170740311767,245,0 +170740311816,245,0 +170740311866,245,0 +170740311915,245,0 +170740311963,245,0 +170740312011,244,0 +170740312059,244,0 +170740312108,245,0 +170740312156,245,0 +170740312206,245,0 +170740312255,245,0 +170740312303,244,0 +170740312351,245,0 +170740312399,245,0 +170740312447,244,0 +170740312495,244,0 +170740312545,245,0 +170740312593,245,0 +170740312641,245,0 +170740312690,245,0 +170740312738,245,0 +170740312786,245,0 +170740312836,245,0 +170740312884,245,0 +170740312932,244,0 +170740312979,245,0 +170740313029,245,0 +170740313077,245,0 +170740313125,245,0 +170740313174,244,0 +170740313224,245,0 +170740313272,245,0 +170740313321,245,0 +170740313369,245,0 +170740313417,245,0 +170740313465,245,0 +170740313515,245,0 +170740313563,245,0 +170740313611,245,0 +170740313660,245,0 +170740313708,245,0 +170740313758,245,0 +170740313806,245,0 +170740313854,245,0 +170740313902,245,0 +170740313950,245,0 +170740313999,245,0 +170740314049,245,0 +170740314097,245,0 +170740314145,245,0 +170740314192,245,0 +170740314240,245,0 +170740314288,244,0 +170740314336,245,0 +170740314386,245,0 +170740314434,245,0 +170740314482,245,0 +170740314531,245,0 +170740314579,245,0 +170740314629,245,0 +170740314677,245,0 +170740314725,245,0 +170740314773,244,0 +170740314821,245,0 +170740314869,245,0 +170740314916,245,0 +170740314966,245,0 +170740315014,245,0 +170740315062,245,0 +170740315111,245,0 +170740315161,245,0 +170740315209,245,0 +170740315257,245,0 +170740315306,245,0 +170740315356,245,0 +170740315404,245,0 +170740315452,245,0 +170740315501,245,0 +170740315551,245,0 +170740315600,245,0 +170740315650,245,0 +170740315698,245,0 +170740315746,245,0 +170740315794,244,0 +170740315841,245,0 +170740315891,245,0 +170740315939,245,0 +170740315987,245,0 +170740316034,245,0 +170740316082,245,0 +170740316130,245,0 +170740316178,245,0 +170740316226,245,0 +170740316274,245,0 +170740316322,245,0 +170740316370,245,0 +170740316418,244,0 +170740316466,245,0 +170740316513,245,0 +170740316561,245,0 +170740316609,245,0 +170740316657,245,0 +170740316705,245,0 +170740316753,245,0 +170740316801,245,0 +170740316849,244,0 +170740316897,245,0 +170740316944,245,0 +170740316992,245,0 +170740317042,245,0 +170740317090,245,0 +170740317138,245,0 +170740317186,245,0 +170740317234,245,0 +170740317282,245,0 +170740317330,245,0 +170740317379,245,0 +170740317427,245,0 +170740317475,245,0 +170740317525,245,0 +170740317573,245,0 +170740317620,245,0 +170740317668,245,0 +170740317718,245,0 +170740317766,245,0 +170740317814,245,0 +170740317863,245,0 +170740317911,245,0 +170740317959,245,0 +170740318007,245,0 +170740318055,245,0 +170740318105,245,0 +170740318153,245,0 +170740318200,245,0 +170740318248,245,0 +170740318296,245,0 +170740318344,245,0 +170740318392,245,0 +170740318440,245,0 +170740318488,245,0 +170740318538,245,0 +170740318587,245,0 +170740318635,245,0 +170740318683,245,0 +170740318731,245,0 +170740318780,245,0 +170740318828,245,0 +170740318878,245,0 +170740318926,245,0 +170740318974,245,0 +170740319022,245,0 +170740319070,245,0 +170740319119,245,0 +170740319169,245,0 +170740319217,245,0 +170740319266,245,0 +170740319316,245,0 +170740319365,245,0 +170740319415,245,0 +170740319463,245,0 +170740319512,244,0 +170740319560,245,0 +170740319608,245,0 +170740319658,245,0 +170740319707,245,0 +170740319755,245,0 +170740319805,245,0 +170740319853,245,0 +170740319900,245,0 +170740319950,245,0 +170740319999,245,0 +170740320047,245,0 +170740320095,245,0 +170740320143,245,0 +170740320193,245,0 +170740320240,245,0 +170740320288,245,0 +170740320336,245,0 +170740320384,245,0 +170740320432,245,0 +170740320480,245,0 +170740320529,245,0 +170740320579,245,0 +170740320627,245,0 +170740320676,245,0 +170740320724,245,0 +170740320774,245,0 +170740320823,245,0 +170740320871,245,0 +170740320919,245,0 +170740320967,244,0 +170740321015,245,0 +170740321063,245,0 +170740321111,245,0 +170740321159,245,0 +170740321207,245,0 +170740321255,245,0 +170740321304,244,0 +170740321352,245,0 +170740321400,245,0 +170740321450,245,0 +170740321498,245,0 +170740321546,245,0 +170740321594,245,0 +170740321643,245,0 +170740321693,245,0 +170740321741,245,0 +170740321789,245,0 +170740321837,245,0 +170740321885,245,0 +170740321933,245,0 +170740321982,245,0 +170740322032,245,0 +170740322081,245,0 +170740322129,245,0 +170740322177,245,0 +170740322227,245,0 +170740322275,245,0 +170740322323,245,0 +170740322371,245,0 +170740322419,245,0 +170740322467,245,0 +170740322515,245,0 +170740322563,245,0 +170740322612,245,0 +170740322662,245,0 +170740322711,245,0 +170740322759,245,0 +170740322807,245,0 +170740322857,245,0 +170740322905,245,0 +170740322954,245,0 +170740323002,245,0 +170740323050,245,0 +170740323098,245,0 +170740323147,245,0 +170740323195,245,0 +170740323245,245,0 +170740323294,245,0 +170740323344,245,0 +170740323393,245,0 +170740323441,245,0 +170740323491,245,0 +170740323540,245,0 +170740323590,245,0 +170740323638,245,0 +170740323686,245,0 +170740323734,245,0 +170740323782,245,0 +170740323831,245,0 +170740323879,245,0 +170740323927,245,0 +170740323975,245,0 +170740324023,245,0 +170740324071,245,0 +170740324119,245,0 +170740324167,245,0 +170740324215,244,0 +170740324263,245,0 +170740324311,245,0 +170740324360,245,0 +170740324408,245,0 +170740324456,245,0 +170740324504,245,0 +170740324554,245,0 +170740324602,245,0 +170740324650,245,0 +170740324698,245,0 +170740324747,245,0 +170740324797,245,0 +170740324846,245,0 +170740324896,245,0 +170740324944,245,0 +170740324993,245,0 +170740325041,245,0 +170740325089,245,0 +170740325139,245,0 +170740325186,245,0 +170740325234,245,0 +170740325282,245,0 +170740325330,244,0 +170740325378,245,0 +170740325426,245,0 +170740325476,245,0 +170740325525,244,0 +170740325573,245,0 +170740325623,245,0 +170740325671,245,0 +170740325719,245,0 +170740325768,245,0 +170740325816,245,0 +170740325864,245,0 +170740325912,245,0 +170740325960,245,0 +170740326010,245,0 +170740326058,245,0 +170740326107,245,0 +170740326157,245,0 +170740326205,245,0 +170740326252,245,0 +170740326302,245,0 +170740326350,245,0 +170740326398,245,0 +170740326446,245,0 +170740326494,245,0 +170740326543,245,0 +170740326593,245,0 +170740326641,245,0 +170740326689,245,0 +170740326738,245,0 +170740326786,244,0 +170740326834,244,0 +170740326882,245,0 +170740326930,245,0 +170740326980,245,0 +170740327028,245,0 +170740327076,245,0 +170740327124,244,0 +170740327172,245,0 +170740327220,245,0 +170740327269,245,0 +170740327317,244,0 +170740327365,245,0 +170740327413,245,0 +170740327461,245,0 +170740327509,245,0 +170740327557,245,0 +170740327606,245,0 +170740327656,245,0 +170740327704,245,0 +170740327751,245,0 +170740327799,245,0 +170740327849,245,0 +170740327897,245,0 +170740327945,245,0 +170740327993,245,0 +170740328041,245,0 +170740328089,245,0 +170740328138,245,0 +170740328188,245,0 +170740328236,245,0 +170740328284,245,0 +170740328332,245,0 +170740328381,245,0 +170740328429,245,0 +170740328477,245,0 +170740328525,245,0 +170740328575,245,0 +170740328623,245,0 +170740328672,245,0 +170740328722,245,0 +170740328771,245,0 +170740328819,245,0 +170740328869,245,0 +170740328917,245,0 +170740328966,245,0 +170740329014,245,0 +170740329064,245,0 +170740329113,245,0 +170740329161,245,0 +170740329209,245,0 +170740329257,245,0 +170740329305,245,0 +170740329353,245,0 +170740329401,245,0 +170740329448,245,0 +170740329496,245,0 +170740329544,245,0 +170740329592,245,0 +170740329642,245,0 +170740329689,245,0 +170740329739,245,0 +170740329787,245,0 +170740329835,245,0 +170740329883,245,0 +170740329931,245,0 +170740329979,245,0 +170740330028,244,0 +170740330078,244,0 +170740330127,245,0 +170740330177,245,0 +170740330225,245,0 +170740330273,245,0 +170740330321,245,0 +170740330370,245,0 +170740330418,245,0 +170740330466,245,0 +170740330514,245,0 +170740330563,245,0 +170740330611,245,0 +170740330661,245,0 +170740330709,245,0 +170740330756,245,0 +170740330804,245,0 +170740330852,245,0 +170740330900,245,0 +170740330948,245,0 +170740330996,245,0 +170740331045,245,0 +170740331093,245,0 +170740331141,245,0 +170740331189,244,0 +170740331237,245,0 +170740331285,245,0 +170740331333,245,0 +170740331382,245,0 +170740331430,245,0 +170740331478,245,0 +170740331526,245,0 +170740331573,245,0 +170740331621,245,0 +170740331669,245,0 +170740331717,245,0 +170740331765,245,0 +170740331815,245,0 +170740331862,245,0 +170740331910,244,0 +170740331958,245,0 +170740332006,245,0 +170740332056,245,0 +170740332104,244,0 +170740332152,245,0 +170740332200,245,0 +170740332248,245,0 +170740332296,245,0 +170740332344,244,0 +170740332392,245,0 +170740332440,245,0 +170740332488,245,0 +170740332535,245,0 +170740332583,245,0 +170740332631,245,0 +170740332679,245,0 +170740332727,245,0 +170740332777,245,0 +170740332827,245,0 +170740332874,245,0 +170740332922,245,0 +170740332970,245,0 +170740333020,245,0 +170740333069,245,0 +170740333117,245,0 +170740333165,245,0 +170740333213,245,0 +170740333261,245,0 +170740333309,245,0 +170740333356,245,0 +170740333404,244,0 +170740333452,245,0 +170740333500,244,0 +170740333550,245,0 +170740333598,245,0 +170740333646,245,0 +170740333694,245,0 +170740333742,245,0 +170740333791,245,0 +170740333839,245,0 +170740333889,245,0 +170740333936,244,0 +170740333984,245,0 +170740334032,245,0 +170740334080,245,0 +170740334128,245,0 +170740334178,245,0 +170740334226,245,0 +170740334275,245,0 +170740334325,245,0 +170740334373,245,0 +170740334422,245,0 +170740334470,245,0 +170740334518,245,0 +170740334568,245,0 +170740334617,245,0 +170740334667,245,0 +170740334715,245,0 +170740334763,245,0 +170740334812,245,0 +170740334862,244,0 +170740334910,245,0 +170740334959,245,0 +170740335007,245,0 +170740335056,245,0 +170740335104,245,0 +170740335152,245,0 +170740335200,244,0 +170740335250,245,0 +170740335299,245,0 +170740335347,245,0 +170740335395,245,0 +170740335445,245,0 +170740335494,245,0 +170740335544,245,0 +170740335592,245,0 +170740335640,245,0 +170740335688,245,0 +170740335735,245,0 +170740335783,245,0 +170740335833,245,0 +170740335881,245,0 +170740335929,245,0 +170740335978,245,0 +170740336026,245,0 +170740336074,244,0 +170740336122,245,0 +170740336172,245,0 +170740336221,245,0 +170740336269,245,0 +170740336317,245,0 +170740336367,245,0 +170740336415,245,0 +170740336463,245,0 +170740336511,245,0 +170740336558,245,0 +170740336606,245,0 +170740336656,245,0 +170740336704,245,0 +170740336753,245,0 +170740336803,245,0 +170740336851,245,0 +170740336899,245,0 +170740336948,245,0 +170740336998,245,0 +170740337046,244,0 +170740337096,245,0 +170740337143,245,0 +170740337193,245,0 +170740337241,245,0 +170740337289,245,0 +170740337337,245,0 +170740337386,245,0 +170740337436,244,0 +170740337484,245,0 +170740337533,245,0 +170740337583,245,0 +170740337632,245,0 +170740337682,245,0 +170740337730,245,0 +170740337778,244,0 +170740337826,245,0 +170740337874,245,0 +170740337921,245,0 +170740337969,245,0 +170740338019,245,0 +170740338067,245,0 +170740338115,245,0 +170740338163,244,0 +170740338212,245,0 +170740338260,245,0 +170740338308,245,0 +170740338357,245,0 +170740338405,245,0 +170740338453,245,0 +170740338501,245,0 +170740338549,245,0 +170740338598,245,0 +170740338646,245,0 +170740338695,244,0 +170740338745,245,0 +170740338794,245,0 +170740338842,245,0 +170740338890,245,0 +170740338938,245,0 +170740338986,245,0 +170740339034,245,0 +170740339082,244,0 +170740339130,244,0 +170740339178,245,0 +170740339225,245,0 +170740339273,245,0 +170740339323,245,0 +170740339371,245,0 +170740339420,245,0 +170740339468,245,0 +170740339516,245,0 +170740339566,244,0 +170740339614,245,0 +170740339663,244,0 +170740339711,244,0 +170740339759,245,0 +170740339809,245,0 +170740339857,245,0 +170740339904,245,0 +170740339952,245,0 +170740340002,245,0 +170740340050,245,0 +170740340098,244,0 +170740340146,245,0 +170740340194,245,0 +170740340242,245,0 +170740340290,245,0 +170740340337,245,0 +170740340385,245,0 +170740340433,245,0 +170740340481,245,0 +170740340529,245,0 +170740340578,245,0 +170740340626,245,0 +170740340674,245,0 +170740340722,245,0 +170740340770,245,0 +170740340818,245,0 +170740340867,245,0 +170740340915,245,0 +170740340963,245,0 +170740341011,245,0 +170740341059,245,0 +170740341107,245,0 +170740341155,245,0 +170740341203,244,0 +170740341250,245,0 +170740341298,244,0 +170740341346,245,0 +170740341394,244,0 +170740341444,245,0 +170740341491,245,0 +170740341539,245,0 +170740341587,245,0 +170740341635,245,0 +170740341683,245,0 +170740341731,245,0 +170740341779,245,0 +170740341827,245,0 +170740341875,244,0 +170740341922,245,0 +170740341970,245,0 +170740342018,245,0 +170740342066,245,0 +170740342114,245,0 +170740342162,245,0 +170740342210,245,0 +170740342258,245,0 +170740342307,245,0 +170740342355,245,0 +170740342403,245,0 +170740342452,244,0 +170740342500,245,0 +170740342550,245,0 +170740342599,244,0 +170740342647,245,0 +170740342697,245,0 +170740342745,245,0 +170740342794,245,0 +170740342842,245,0 +170740342890,245,0 +170740342938,245,0 +170740342986,245,0 +170740343034,245,0 +170740343083,245,0 +170740343133,245,0 +170740343182,245,0 +170740343232,245,0 +170740343280,245,0 +170740343329,245,0 +170740343377,245,0 +170740343425,244,0 +170740343475,244,0 +170740343523,245,0 +170740343572,245,0 +170740343620,245,0 +170740343670,245,0 +170740343719,245,0 +170740343767,245,0 +170740343817,245,0 +170740343865,245,0 +170740343913,245,0 +170740343961,245,0 +170740344009,245,0 +170740344056,245,0 +170740344106,245,0 +170740344154,245,0 +170740344202,245,0 +170740344250,245,0 +170740344297,245,0 +170740344345,245,0 +170740344393,245,0 +170740344441,245,0 +170740344489,245,0 +170740344537,245,0 +170740344585,245,0 +170740344633,245,0 +170740344682,245,0 +170740344732,245,0 +170740344780,245,0 +170740344828,245,0 +170740344875,245,0 +170740344923,244,0 +170740344971,245,0 +170740345019,245,0 +170740345067,245,0 +170740345115,245,0 +170740345164,245,0 +170740345214,245,0 +170740345262,245,0 +170740345311,245,0 +170740345361,245,0 +170740345410,245,0 +170740345458,245,0 +170740345508,245,0 +170740345556,245,0 +170740345604,245,0 +170740345651,245,0 +170740345701,244,0 +170740345749,245,0 +170740345797,245,0 +170740345844,245,0 +170740345892,244,0 +170740345940,245,0 +170740345988,245,0 +170740346036,245,0 +170740346084,244,0 +170740346133,245,0 +170740346181,245,0 +170740346229,245,0 +170740346277,245,0 +170740346325,245,0 +170740346373,245,0 +170740346421,244,0 +170740346469,245,0 +170740346517,244,0 +170740346565,245,0 +170740346612,245,0 +170740346662,245,0 +170740346710,245,0 +170740346758,245,0 +170740346807,244,0 +170740346857,245,0 +170740346906,244,0 +170740346954,244,0 +170740347002,245,0 +170740347050,245,0 +170740347098,245,0 +170740347146,245,0 +170740347196,245,0 +170740347244,245,0 +170740347292,245,0 +170740347340,245,0 +170740347388,245,0 +170740347436,245,0 +170740347484,245,0 +170740347532,244,0 +170740347581,244,0 +170740347629,245,0 +170740347679,245,0 +170740347727,245,0 +170740347776,244,0 +170740347826,244,0 +170740347875,245,0 +170740347925,245,0 +170740347973,245,0 +170740348021,245,0 +170740348069,245,0 +170740348118,244,0 +170740348166,245,0 +170740348216,245,0 +170740348264,245,0 +170740348312,244,0 +170740348360,245,0 +170740348409,245,0 +170740348457,245,0 +170740348505,245,0 +170740348555,245,0 +170740348602,245,0 +170740348650,245,0 +170740348698,245,0 +170740348746,245,0 +170740348794,244,0 +170740348842,245,0 +170740348890,245,0 +170740348938,245,0 +170740348986,245,0 +170740349036,245,0 +170740349084,245,0 +170740349133,245,0 +170740349181,245,0 +170740349229,245,0 +170740349277,245,0 +170740349327,245,0 +170740349375,244,0 +170740349424,245,0 +170740349472,244,0 +170740349520,244,0 +170740349570,245,0 +170740349618,245,0 +170740349666,245,0 +170740349715,245,0 +170740349763,244,0 +170740349813,245,0 +170740349862,245,0 +170740349910,245,0 +170740349959,245,0 +170740350007,245,0 +170740350055,245,0 +170740350103,245,0 +170740350151,245,0 +170740350199,245,0 +170740350247,244,0 +170740350295,245,0 +170740350342,245,0 +170740350390,245,0 +170740350438,245,0 +170740350488,244,0 +170740350536,244,0 +170740350585,245,0 +170740350633,245,0 +170740350681,245,0 +170740350729,245,0 +170740350777,245,0 +170740350827,244,0 +170740350875,244,0 +170740350923,245,0 +170740350971,244,0 +170740351019,244,0 +170740351067,244,0 +170740351116,245,0 +170740351164,245,0 +170740351214,245,0 +170740351262,245,0 +170740351309,245,0 +170740351357,244,0 +170740351407,245,0 +170740351456,245,0 +170740351504,245,0 +170740351552,245,0 +170740351602,245,0 +170740351650,245,0 +170740351699,245,0 +170740351749,245,0 +170740351797,245,0 +170740351846,245,0 +170740351894,244,0 +170740351944,245,0 +170740351992,245,0 +170740352040,245,0 +170740352088,245,0 +170740352135,245,0 +170740352183,245,0 +170740352233,245,0 +170740352281,245,0 +170740352329,245,0 +170740352378,244,0 +170740352426,245,0 +170740352474,245,0 +170740352524,244,0 +170740352572,244,0 +170740352621,244,0 +170740352671,244,0 +170740352719,245,0 +170740352767,245,0 +170740352816,245,0 +170740352866,245,0 +170740352914,245,0 +170740352962,245,0 +170740353011,245,0 +170740353059,245,0 +170740353107,244,0 +170740353155,245,0 +170740353205,245,0 +170740353253,245,0 +170740353302,245,0 +170740353350,244,0 +170740353398,244,0 +170740353447,245,0 +170740353495,245,0 +170740353543,244,0 +170740353591,245,0 +170740353641,245,0 +170740353690,245,0 +170740353738,245,0 +170740353786,245,0 +170740353834,245,0 +170740353883,245,0 +170740353932,245,0 +170740353980,244,0 +170740354030,245,0 +170740354078,245,0 +170740354127,245,0 +170740354175,245,0 +170740354223,244,0 +170740354271,245,0 +170740354319,245,0 +170740354367,245,0 +170740354416,244,0 +170740354466,245,0 +170740354516,244,0 +170740354564,244,0 +170740354612,245,0 +170740354661,244,0 +170740354709,245,0 +170740354757,245,0 +170740354806,245,0 +170740354854,245,0 +170740354902,245,0 +170740354952,245,0 +170740355000,245,0 +170740355049,245,0 +170740355097,245,0 +170740355145,245,0 +170740355193,245,0 +170740355241,245,0 +170740355289,245,0 +170740355339,245,0 +170740355388,245,0 +170740355438,245,0 +170740355486,245,0 +170740355535,245,0 +170740355585,244,0 +170740355633,245,0 +170740355682,244,0 +170740355730,245,0 +170740355778,245,0 +170740355826,245,0 +170740355874,245,0 +170740355922,245,0 +170740355970,245,0 +170740356018,245,0 +170740356066,245,0 +170740356114,245,0 +170740356163,245,0 +170740356213,244,0 +170740356261,244,0 +170740356309,245,0 +170740356358,244,0 +170740356408,245,0 +170740356456,245,0 +170740356505,245,0 +170740356553,245,0 +170740356603,245,0 +170740356653,244,0 +170740356700,245,0 +170740356748,245,0 +170740356796,245,0 +170740356844,245,0 +170740356892,245,0 +170740356942,245,0 +170740356990,245,0 +170740357038,245,0 +170740357086,245,0 +170740357134,244,0 +170740357183,244,0 +170740357233,244,0 +170740357281,245,0 +170740357330,245,0 +170740357378,245,0 +170740357426,245,0 +170740357474,245,0 +170740357522,245,0 +170740357570,245,0 +170740357618,244,0 +170740357666,244,0 +170740357714,244,0 +170740357761,245,0 +170740357809,245,0 +170740357857,245,0 +170740357905,245,0 +170740357953,245,0 +170740358001,245,0 +170740358049,245,0 +170740358097,244,0 +170740358146,245,0 +170740358194,244,0 +170740358242,244,0 +170740358290,245,0 +170740358338,245,0 +170740358386,245,0 +170740358434,245,0 +170740358481,245,0 +170740358529,244,0 +170740358577,244,0 +170740358625,245,0 +170740358675,245,0 +170740358723,245,0 +170740358770,244,0 +170740358818,245,0 +170740358866,245,0 +170740358914,245,0 +170740358962,245,0 +170740359010,245,0 +170740359058,245,0 +170740359106,245,0 +170740359154,245,0 +170740359201,245,0 +170740359249,245,0 +170740359299,245,0 +170740359348,244,0 +170740359398,245,0 +170740359446,245,0 +170740359494,244,0 +170740359543,245,0 +170740359591,245,0 +170740359639,244,0 +170740359687,244,0 +170740359735,245,0 +170740359784,244,0 +170740359832,245,0 +170740359880,245,0 +170740359928,245,0 +170740359976,245,0 +170740360024,245,0 +170740360072,245,0 +170740360120,244,0 +170740360169,245,0 +170740360217,245,0 +170740360265,245,0 +170740360313,244,0 +170740360361,245,0 +170740360408,245,0 +170740360456,244,0 +170740360504,245,0 +170740360554,245,0 +170740360602,245,0 +170740360650,245,0 +170740360697,245,0 +170740360745,245,0 +170740360793,245,0 +170740360841,245,0 +170740360891,245,0 +170740360940,245,0 +170740360990,244,0 +170740361038,245,0 +170740361087,244,0 +170740361137,245,0 +170740361185,245,0 +170740361233,244,0 +170740361281,245,0 +170740361330,245,0 +170740361378,245,0 +170740361426,245,0 +170740361475,244,0 +170740361525,244,0 +170740361575,245,0 +170740361622,244,0 +170740361670,245,0 +170740361718,244,0 +170740361768,245,0 +170740361817,245,0 +170740361865,244,0 +170740361915,245,0 +170740361964,245,0 +170740362012,245,0 +170740362060,245,0 +170740362110,244,0 +170740362158,245,0 +170740362206,244,0 +170740362254,245,0 +170740362302,245,0 +170740362351,245,0 +170740362401,245,0 +170740362449,245,0 +170740362496,245,0 +170740362544,244,0 +170740362592,245,0 +170740362640,245,0 +170740362688,244,0 +170740362736,245,0 +170740362786,244,0 +170740362834,245,0 +170740362882,245,0 +170740362931,245,0 +170740362981,244,0 +170740363030,245,0 +170740363078,245,0 +170740363126,244,0 +170740363174,244,0 +170740363222,244,0 +170740363270,245,0 +170740363318,245,0 +170740363366,245,0 +170740363414,245,0 +170740363463,245,0 +170740363511,244,0 +170740363561,244,0 +170740363610,244,0 +170740363658,245,0 +170740363708,245,0 +170740363756,244,0 +170740363803,245,0 +170740363851,245,0 +170740363899,244,0 +170740363947,245,0 +170740363995,245,0 +170740364043,245,0 +170740364091,245,0 +170740364139,244,0 +170740364188,244,0 +170740364236,244,0 +170740364284,245,0 +170740364332,245,0 +170740364379,244,0 +170740364427,244,0 +170740364475,244,0 +170740364523,245,0 +170740364571,244,0 +170740364621,245,0 +170740364670,245,0 +170740364718,244,0 +170740364768,245,0 +170740364816,244,0 +170740364864,245,0 +170740364913,244,0 +170740364961,245,0 +170740365011,245,0 +170740365059,245,0 +170740365108,245,0 +170740365156,245,0 +170740365204,245,0 +170740365253,245,0 +170740365301,244,0 +170740365349,244,0 +170740365397,244,0 +170740365447,244,0 +170740365495,245,0 +170740365543,244,0 +170740365591,245,0 +170740365639,245,0 +170740365687,244,0 +170740365734,245,0 +170740365782,245,0 +170740365830,245,0 +170740365878,245,0 +170740365926,245,0 +170740365974,245,0 +170740366022,245,0 +170740366071,245,0 +170740366119,244,0 +170740366167,245,0 +170740366215,244,0 +170740366263,244,0 +170740366311,245,0 +170740366359,244,0 +170740366406,245,0 +170740366454,245,0 +170740366504,245,0 +170740366552,245,0 +170740366600,244,0 +170740366647,245,0 +170740366695,245,0 +170740366743,245,0 +170740366791,245,0 +170740366839,245,0 +170740366887,245,0 +170740366935,245,0 +170740366983,245,0 +170740367030,245,0 +170740367080,245,0 +170740367128,244,0 +170740367176,244,0 +170740367224,245,0 +170740367272,245,0 +170740367319,245,0 +170740367367,245,0 +170740367415,245,0 +170740367463,245,0 +170740367511,245,0 +170740367559,244,0 +170740367607,245,0 +170740367655,245,0 +170740367703,245,0 +170740367750,245,0 +170740367798,245,0 +170740367846,244,0 +170740367894,245,0 +170740367942,245,0 +170740367990,245,0 +170740368038,244,0 +170740368087,245,0 +170740368135,245,0 +170740368183,245,0 +170740368231,245,0 +170740368279,245,0 +170740368328,245,0 +170740368378,245,0 +170740368426,245,0 +170740368475,245,0 +170740368523,245,0 +170740368571,245,0 +170740368619,245,0 +170740368669,245,0 +170740368717,244,0 +170740368766,245,0 +170740368814,245,0 +170740368864,244,0 +170740368911,244,0 +170740368961,244,0 +170740369010,245,0 +170740369060,245,0 +170740369109,245,0 +170740369157,245,0 +170740369207,245,0 +170740369256,244,0 +170740369304,245,0 +170740369352,244,0 +170740369402,245,0 +170740369451,245,0 +170740369498,245,0 +170740369546,245,0 +170740369596,245,0 +170740369644,245,0 +170740369692,245,0 +170740369740,245,0 +170740369788,244,0 +170740369837,245,0 +170740369885,244,0 +170740369935,245,0 +170740369984,245,0 +170740370032,245,0 +170740370082,245,0 +170740370129,245,0 +170740370177,245,0 +170740370225,244,0 +170740370273,245,0 +170740370321,245,0 +170740370371,245,0 +170740370419,245,0 +170740370468,245,0 +170740370518,245,0 +170740370567,245,0 +170740370615,244,0 +170740370663,245,0 +170740370711,245,0 +170740370759,245,0 +170740370809,245,0 +170740370857,245,0 +170740370906,244,0 +170740370954,245,0 +170740371002,245,0 +170740371050,245,0 +170740371098,245,0 +170740371146,245,0 +170740371194,245,0 +170740371242,245,0 +170740371290,245,0 +170740371338,244,0 +170740371386,245,0 +170740371434,245,0 +170740371482,244,0 +170740371532,245,0 +170740371580,244,0 +170740371627,245,0 +170740371677,244,0 +170740371725,244,0 +170740371773,245,0 +170740371822,245,0 +170740371870,245,0 +170740371918,245,0 +170740371966,245,0 +170740372014,245,0 +170740372062,245,0 +170740372111,245,0 +170740372159,245,0 +170740372207,245,0 +170740372255,245,0 +170740372303,245,0 +170740372351,245,0 +170740372399,244,0 +170740372448,245,0 +170740372496,245,0 +170740372544,245,0 +170740372593,245,0 +170740372641,244,0 +170740372691,245,0 +170740372738,245,0 +170740372786,244,0 +170740372834,244,0 +170740372882,244,0 +170740372930,244,0 +170740372978,244,0 +170740373026,244,0 +170740373075,245,0 +170740373123,245,0 +170740373171,245,0 +170740373219,244,0 +170740373267,245,0 +170740373315,245,0 +170740373363,245,0 +170740373411,245,0 +170740373460,245,0 +170740373508,245,0 +170740373556,245,0 +170740373604,244,0 +170740373652,245,0 +170740373700,245,0 +170740373749,245,0 +170740373797,245,0 +170740373845,245,0 +170740373893,245,0 +170740373942,245,0 +170740373990,245,0 +170740374038,245,0 +170740374086,245,0 +170740374136,245,0 +170740374184,245,0 +170740374231,245,0 +170740374281,245,0 +170740374329,245,0 +170740374378,245,0 +170740374426,245,0 +170740374474,245,0 +170740374522,244,0 +170740374570,245,0 +170740374618,245,0 +170740374668,245,0 +170740374716,245,0 +170740374764,245,0 +170740374813,245,0 +170740374863,245,0 +170740374911,245,0 +170740374959,244,0 +170740375007,245,0 +170740375056,245,0 +170740375104,245,0 +170740375153,245,0 +170740375201,245,0 +170740375249,245,0 +170740375297,245,0 +170740375345,245,0 +170740375393,245,0 +170740375442,245,0 +170740375490,245,0 +170740375538,245,0 +170740375586,244,0 +170740375635,244,0 +170740375683,245,0 +170740375731,245,0 +170740375779,245,0 +170740375826,245,0 +170740375874,245,0 +170740375922,244,0 +170740375970,245,0 +170740376018,245,0 +170740376066,244,0 +170740376114,244,0 +170740376163,245,0 +170740376211,244,0 +170740376259,245,0 +170740376307,244,0 +170740376355,245,0 +170740376403,245,0 +170740376450,244,0 +170740376498,244,0 +170740376548,245,0 +170740376596,245,0 +170740376644,245,0 +170740376691,245,0 +170740376739,245,0 +170740376789,244,0 +170740376837,245,0 +170740376884,244,0 +170740376932,245,0 +170740376980,245,0 +170740377028,245,0 +170740377078,245,0 +170740377127,245,0 +170740377175,245,0 +170740377223,245,0 +170740377272,245,0 +170740377320,245,0 +170740377368,245,0 +170740377416,244,0 +170740377464,244,0 +170740377512,244,0 +170740377562,245,0 +170740377611,245,0 +170740377659,244,0 +170740377709,245,0 +170740377757,244,0 +170740377805,245,0 +170740377853,244,0 +170740377901,245,0 +170740377950,245,0 +170740377998,244,0 +170740378046,244,0 +170740378094,245,0 +170740378142,245,0 +170740378192,245,0 +170740378241,245,0 +170740378291,245,0 +170740378340,245,0 +170740378388,245,0 +170740378436,244,0 +170740378484,245,0 +170740378532,245,0 +170740378580,245,0 +170740378628,245,0 +170740378676,245,0 +170740378726,244,0 +170740378774,245,0 +170740378822,244,0 +170740378871,245,0 +170740378919,245,0 +170740378967,245,0 +170740379016,245,0 +170740379064,245,0 +170740379112,245,0 +170740379162,244,0 +170740379210,245,0 +170740379259,245,0 +170740379309,245,0 +170740379358,245,0 +170740379406,244,0 +170740379454,245,0 +170740379502,245,0 +170740379550,245,0 +170740379600,245,0 +170740379649,244,0 +170740379697,245,0 +170740379745,244,0 +170740379793,244,0 +170740379841,244,0 +170740379890,245,0 +170740379938,244,0 +170740379986,245,0 +170740380034,244,0 +170740380084,244,0 +170740380132,244,0 +170740380181,245,0 +170740380229,245,0 +170740380277,245,0 +170740380325,245,0 +170740380375,245,0 +170740380424,245,0 +170740380472,244,0 +170740380520,245,0 +170740380568,245,0 +170740380616,245,0 +170740380663,245,0 +170740380711,244,0 +170740380759,245,0 +170740380807,245,0 +170740380855,244,0 +170740380905,244,0 +170740380952,244,0 +170740381000,245,0 +170740381048,245,0 +170740381096,244,0 +170740381144,244,0 +170740381192,245,0 +170740381240,244,0 +170740381289,245,0 +170740381337,244,0 +170740381387,245,0 +170740381434,244,0 +170740381482,245,0 +170740381530,244,0 +170740381578,244,0 +170740381626,245,0 +170740381674,245,0 +170740381722,244,0 +170740381770,244,0 +170740381818,244,0 +170740381867,244,0 +170740381917,244,0 +170740381965,245,0 +170740382014,244,0 +170740382062,245,0 +170740382112,244,0 +170740382160,244,0 +170740382208,244,0 +170740382256,244,0 +170740382305,244,0 +170740382353,245,0 +170740382403,245,0 +170740382451,244,0 +170740382500,245,0 +170740382548,244,0 +170740382596,244,0 +170740382646,245,0 +170740382694,245,0 +170740382742,245,0 +170740382790,244,0 +170740382839,244,0 +170740382887,244,0 +170740382935,244,0 +170740382983,244,0 +170740383031,244,0 +170740383079,244,0 +170740383127,245,0 +170740383175,245,0 +170740383223,244,0 +170740383271,244,0 +170740383320,244,0 +170740383369,244,0 +170740383419,244,0 +170740383468,245,0 +170740383516,245,0 +170740383566,245,0 +170740383615,244,0 +170740383665,244,0 +170740383713,244,0 +170740383762,244,0 +170740383812,244,0 +170740383861,244,0 +170740383909,245,0 +170740383957,245,0 +170740384005,244,0 +170740384055,244,0 +170740384104,245,0 +170740384154,244,0 +170740384202,244,0 +170740384250,245,0 +170740384299,244,0 +170740384347,244,0 +170740384395,244,0 +170740384445,245,0 +170740384493,244,0 +170740384540,244,0 +170740384588,244,0 +170740384638,244,0 +170740384686,244,0 +170740384734,244,0 +170740384782,244,0 +170740384830,244,0 +170740384878,244,0 +170740384927,245,0 +170740384975,244,0 +170740385023,244,0 +170740385073,244,0 +170740385121,244,0 +170740385170,244,0 +170740385218,244,0 +170740385266,245,0 +170740385314,244,0 +170740385364,244,0 +170740385412,245,0 +170740385460,244,0 +170740385508,244,0 +170740385555,244,0 +170740385603,244,0 +170740385651,244,0 +170740385699,244,0 +170740385747,244,0 +170740385795,244,0 +170740385843,244,0 +170740385891,244,0 +170740385939,245,0 +170740385986,245,0 +170740386034,244,0 +170740386082,244,0 +170740386130,245,0 +170740386178,245,0 +170740386226,244,0 +170740386276,244,0 +170740386324,244,0 +170740386372,244,0 +170740386421,244,0 +170740386469,244,0 +170740386517,244,0 +170740386565,244,0 +170740386613,244,0 +170740386661,245,0 +170740386710,244,0 +170740386758,244,0 +170740386806,245,0 +170740386854,245,0 +170740386902,244,0 +170740386950,244,0 +170740387000,244,0 +170740387049,245,0 +170740387097,245,0 +170740387147,245,0 +170740387195,244,0 +170740387244,244,0 +170740387292,245,0 +170740387340,244,0 +170740387388,244,0 +170740387436,245,0 +170740387484,244,0 +170740387533,244,0 +170740387583,245,0 +170740387631,244,0 +170740387678,245,0 +170740387726,244,0 +170740387774,245,0 +170740387822,245,0 +170740387870,245,0 +170740387918,244,0 +170740387966,245,0 +170740388014,245,0 +170740388062,244,0 +170740388110,244,0 +170740388157,245,0 +170740388205,245,0 +170740388253,245,0 +170740388301,245,0 +170740388349,244,0 +170740388397,245,0 +170740388445,244,0 +170740388493,244,0 +170740388540,245,0 +170740388588,245,0 +170740388638,245,0 +170740388686,244,0 +170740388734,244,0 +170740388781,245,0 +170740388829,244,0 +170740388877,245,0 +170740388925,245,0 +170740388973,244,0 +170740389022,244,0 +170740389070,244,0 +170740389118,244,0 +170740389168,245,0 +170740389216,245,0 +170740389264,244,0 +170740389312,245,0 +170740389360,244,0 +170740389409,244,0 +170740389457,245,0 +170740389507,244,0 +170740389555,244,0 +170740389604,245,0 +170740389654,244,0 +170740389703,244,0 +170740389751,244,0 +170740389801,244,0 +170740389850,245,0 +170740389900,244,0 +170740389948,245,0 +170740389996,244,0 +170740390044,245,0 +170740390092,245,0 +170740390140,244,0 +170740390188,244,0 +170740390236,244,0 +170740390285,245,0 +170740390333,245,0 +170740390381,244,0 +170740390429,244,0 +170740390477,245,0 +170740390525,245,0 +170740390573,244,0 +170740390621,244,0 +170740390669,245,0 +170740390718,244,0 +170740390766,244,0 +170740390814,244,0 +170740390864,244,0 +170740390913,244,0 +170740390961,244,0 +170740391011,244,0 +170740391059,244,0 +170740391107,245,0 +170740391155,244,0 +170740391204,244,0 +170740391252,244,0 +170740391301,244,0 +170740391351,244,0 +170740391400,244,0 +170740391448,244,0 +170740391496,244,0 +170740391544,244,0 +170740391592,244,0 +170740391640,244,0 +170740391688,244,0 +170740391738,244,0 +170740391787,245,0 +170740391835,244,0 +170740391883,244,0 +170740391931,244,0 +170740391981,244,0 +170740392029,244,0 +170740392077,244,0 +170740392125,245,0 +170740392173,244,0 +170740392221,244,0 +170740392270,244,0 +170740392318,244,0 +170740392366,244,0 +170740392416,244,0 +170740392464,244,0 +170740392512,244,0 +170740392559,244,0 +170740392607,244,0 +170740392657,244,0 +170740392705,244,0 +170740392753,244,0 +170740392802,244,0 +170740392850,245,0 +170740392898,244,0 +170740392946,245,0 +170740392996,244,0 +170740393044,244,0 +170740393092,244,0 +170740393141,244,0 +170740393189,245,0 +170740393239,244,0 +170740393288,245,0 +170740393336,244,0 +170740393384,244,0 +170740393434,244,0 +170740393482,245,0 +170740393529,244,0 +170740393577,244,0 +170740393627,245,0 +170740393676,244,0 +170740393726,244,0 +170740393775,245,0 +170740393823,245,0 +170740393873,244,0 +170740393923,244,0 +170740393970,244,0 +170740394018,244,0 +170740394066,244,0 +170740394116,245,0 +170740394165,244,0 +170740394213,245,0 +170740394261,244,0 +170740394311,244,0 +170740394360,245,0 +170740394410,245,0 +170740394459,245,0 +170740394507,244,0 +170740394555,244,0 +170740394605,244,0 +170740394654,244,0 +170740394704,245,0 +170740394752,244,0 +170740394801,245,0 +170740394851,245,0 +170740394900,245,0 +170740394950,244,0 +170740394998,244,0 +170740395046,245,0 +170740395095,244,0 +170740395145,244,0 +170740395193,244,0 +170740395241,244,0 +170740395289,244,0 +170740395338,244,0 +170740395386,245,0 +170740395434,244,0 +170740395483,244,0 +170740395531,244,0 +170740395579,244,0 +170740395627,245,0 +170740395677,244,0 +170740395725,245,0 +170740395773,245,0 +170740395822,244,0 +170740395870,244,0 +170740395920,244,0 +170740395967,244,0 +170740396017,245,0 +170740396065,244,0 +170740396114,245,0 +170740396162,244,0 +170740396212,245,0 +170740396260,244,0 +170740396308,244,0 +170740396357,245,0 +170740396405,245,0 +170740396455,244,0 +170740396504,245,0 +170740396554,245,0 +170740396602,245,0 +170740396650,244,0 +170740396697,244,0 +170740396747,244,0 +170740396795,245,0 +170740396843,244,0 +170740396891,244,0 +170740396939,244,0 +170740396987,244,0 +170740397035,244,0 +170740397083,245,0 +170740397131,244,0 +170740397179,244,0 +170740397228,244,0 +170740397276,244,0 +170740397324,245,0 +170740397372,244,0 +170740397420,244,0 +170740397468,244,0 +170740397518,244,0 +170740397566,244,0 +170740397615,244,0 +170740397663,245,0 +170740397711,244,0 +170740397759,244,0 +170740397807,244,0 +170740397855,244,0 +170740397903,244,0 +170740397952,244,0 +170740398000,245,0 +170740398048,244,0 +170740398096,244,0 +170740398144,244,0 +170740398192,244,0 +170740398240,244,0 +170740398288,244,0 +170740398338,244,0 +170740398387,244,0 +170740398435,244,0 +170740398483,244,0 +170740398531,244,0 +170740398581,244,0 +170740398629,245,0 +170740398677,244,0 +170740398725,244,0 +170740398773,244,0 +170740398821,244,0 +170740398869,244,0 +170740398917,244,0 +170740398966,244,0 +170740399014,244,0 +170740399062,244,0 +170740399111,244,0 +170740399159,244,0 +170740399209,245,0 +170740399257,245,0 +170740399305,244,0 +170740399353,245,0 +170740399401,245,0 +170740399450,244,0 +170740399500,244,0 +170740399549,244,0 +170740399599,245,0 +170740399648,245,0 +170740399696,244,0 +170740399746,245,0 +170740399795,244,0 +170740399845,244,0 +170740399893,245,0 +170740399941,245,0 +170740399989,245,0 +170740400038,244,0 +170740400086,244,0 +170740400134,244,0 +170740400182,244,0 +170740400230,245,0 +170740400280,245,0 +170740400328,245,0 +170740400376,245,0 +170740400423,244,0 +170740400473,244,0 +170740400521,244,0 +170740400569,244,0 +170740400617,244,0 +170740400667,244,0 +170740400714,244,0 +170740400764,244,0 +170740400812,244,0 +170740400861,244,0 +170740400909,245,0 +170740400957,244,0 +170740401007,244,0 +170740401055,244,0 +170740401103,244,0 +170740401152,244,0 +170740401200,245,0 +170740401248,244,0 +170740401298,244,0 +170740401346,244,0 +170740401394,244,0 +170740401443,244,0 +170740401493,245,0 +170740401541,244,0 +170740401589,245,0 +170740401638,244,0 +170740401688,244,0 +170740401737,244,0 +170740401785,245,0 +170740401833,244,0 +170740401881,245,0 +170740401931,244,0 +170740401979,245,0 +170740402027,245,0 +170740402076,244,0 +170740402124,244,0 +170740402172,244,0 +170740402220,245,0 +170740402268,245,0 +170740402315,245,0 +170740402363,244,0 +170740402411,244,0 +170740402459,244,0 +170740402507,244,0 +170740402557,244,0 +170740402605,245,0 +170740402654,244,0 +170740402704,244,0 +170740402752,244,0 +170740402800,245,0 +170740402849,245,0 +170740402897,245,0 +170740402945,245,0 +170740402994,244,0 +170740403044,244,0 +170740403092,245,0 +170740403140,245,0 +170740403188,244,0 +170740403237,245,0 +170740403285,245,0 +170740403333,244,0 +170740403381,244,0 +170740403431,245,0 +170740403480,245,0 +170740403530,245,0 +170740403578,245,0 +170740403626,244,0 +170740403674,245,0 +170740403723,244,0 +170740403773,245,0 +170740403821,245,0 +170740403869,245,0 +170740403918,244,0 +170740403966,244,0 +170740404014,244,0 +170740404062,245,0 +170740404110,245,0 +170740404158,244,0 +170740404206,244,0 +170740404254,244,0 +170740404302,244,0 +170740404350,244,0 +170740404398,244,0 +170740404446,245,0 +170740404495,245,0 +170740404543,245,0 +170740404591,245,0 +170740404639,244,0 +170740404689,244,0 +170740404736,244,0 +170740404784,245,0 +170740404834,244,0 +170740404882,245,0 +170740404931,244,0 +170740404979,245,0 +170740405027,244,0 +170740405077,245,0 +170740405124,244,0 +170740405172,244,0 +170740405220,244,0 +170740405270,245,0 +170740405319,244,0 +170740405369,245,0 +170740405417,245,0 +170740405466,245,0 +170740405516,244,0 +170740405565,244,0 +170740405613,244,0 +170740405663,244,0 +170740405712,244,0 +170740405760,245,0 +170740405808,245,0 +170740405858,245,0 +170740405905,245,0 +170740405953,244,0 +170740406001,245,0 +170740406049,245,0 +170740406097,244,0 +170740406147,245,0 +170740406195,245,0 +170740406242,245,0 +170740406292,245,0 +170740406342,245,0 +170740406391,245,0 +170740406439,245,0 +170740406488,244,0 +170740406536,244,0 +170740406586,245,0 +170740406634,245,0 +170740406682,245,0 +170740406730,244,0 +170740406778,244,0 +170740406827,244,0 +170740406875,245,0 +170740406923,244,0 +170740406971,244,0 +170740407021,244,0 +170740407069,245,0 +170740407117,244,0 +170740407164,244,0 +170740407212,244,0 +170740407260,244,0 +170740407310,244,0 +170740407358,244,0 +170740407405,245,0 +170740407453,244,0 +170740407501,245,0 +170740407549,245,0 +170740407597,245,0 +170740407645,244,0 +170740407693,244,0 +170740407741,244,0 +170740407788,244,0 +170740407836,244,0 +170740407886,244,0 +170740407935,244,0 +170740407983,244,0 +170740408031,244,0 +170740408079,244,0 +170740408127,244,0 +170740408175,244,0 +170740408224,244,0 +170740408272,245,0 +170740408320,244,0 +170740408368,244,0 +170740408417,244,0 +170740408465,245,0 +170740408513,244,0 +170740408561,244,0 +170740408609,244,0 +170740408657,244,0 +170740408705,244,0 +170740408752,244,0 +170740408800,244,0 +170740408850,245,0 +170740408898,244,0 +170740408946,244,0 +170740408993,244,0 +170740409041,245,0 +170740409091,245,0 +170740409139,245,0 +170740409188,244,0 +170740409236,244,0 +170740409284,244,0 +170740409332,245,0 +170740409381,244,0 +170740409429,245,0 +170740409477,245,0 +170740409525,245,0 +170740409573,245,0 +170740409621,244,0 +170740409669,244,0 +170740409717,244,0 +170740409764,245,0 +170740409814,245,0 +170740409862,244,0 +170740409910,245,0 +170740409958,245,0 +170740410007,245,0 +170740410057,245,0 +170740410107,244,0 +170740410154,245,0 +170740410204,244,0 +170740410252,244,0 +170740410301,244,0 +170740410349,244,0 +170740410397,244,0 +170740410445,244,0 +170740410493,244,0 +170740410543,245,0 +170740410592,244,0 +170740410640,244,0 +170740410690,245,0 +170740410739,245,0 +170740410789,244,0 +170740410837,244,0 +170740410885,245,0 +170740410933,244,0 +170740410981,244,0 +170740411029,244,0 +170740411078,245,0 +170740411126,244,0 +170740411176,245,0 +170740411224,244,0 +170740411273,244,0 +170740411321,245,0 +170740411369,244,0 +170740411417,245,0 +170740411465,244,0 +170740411515,245,0 +170740411563,244,0 +170740411611,245,0 +170740411658,244,0 +170740411708,245,0 +170740411758,244,0 +170740411807,244,0 +170740411855,244,0 +170740411903,244,0 +170740411951,245,0 +170740411999,245,0 +170740412047,244,0 +170740412096,244,0 +170740412144,244,0 +170740412194,244,0 +170740412242,245,0 +170740412290,245,0 +170740412339,244,0 +170740412387,244,0 +170740412435,244,0 +170740412483,245,0 +170740412533,244,0 +170740412581,245,0 +170740412630,244,0 +170740412678,245,0 +170740412728,245,0 +170740412776,244,0 +170740412825,245,0 +170740412875,244,0 +170740412923,245,0 +170740412971,244,0 +170740413019,244,0 +170740413067,245,0 +170740413115,245,0 +170740413163,244,0 +170740413211,245,0 +170740413259,244,0 +170740413306,245,0 +170740413356,245,0 +170740413404,245,0 +170740413452,245,0 +170740413500,245,0 +170740413548,245,0 +170740413597,245,0 +170740413647,244,0 +170740413696,245,0 +170740413746,245,0 +170740413794,244,0 +170740413843,245,0 +170740413893,245,0 +170740413941,244,0 +170740413989,245,0 +170740414038,245,0 +170740414086,245,0 +170740414134,244,0 +170740414182,245,0 +170740414230,245,0 +170740414280,245,0 +170740414329,244,0 +170740414377,244,0 +170740414427,244,0 +170740414475,245,0 +170740414523,245,0 +170740414571,245,0 +170740414619,245,0 +170740414668,244,0 +170740414716,245,0 +170740414764,244,0 +170740414813,245,0 +170740414863,244,0 +170740414911,244,0 +170740414960,244,0 +170740415008,245,0 +170740415058,244,0 +170740415107,245,0 +170740415157,244,0 +170740415206,245,0 +170740415254,244,0 +170740415302,245,0 +170740415350,244,0 +170740415398,245,0 +170740415446,245,0 +170740415494,245,0 +170740415543,244,0 +170740415591,244,0 +170740415639,245,0 +170740415687,245,0 +170740415735,245,0 +170740415783,244,0 +170740415831,245,0 +170740415880,245,0 +170740415930,245,0 +170740415978,245,0 +170740416027,245,0 +170740416077,244,0 +170740416125,245,0 +170740416174,244,0 +170740416222,245,0 +170740416270,244,0 +170740416318,245,0 +170740416367,244,0 +170740416416,245,0 +170740416464,244,0 +170740416511,244,0 +170740416561,245,0 +170740416611,245,0 +170740416660,244,0 +170740416708,245,0 +170740416758,244,0 +170740416805,244,0 +170740416855,245,0 +170740416903,244,0 +170740416951,245,0 +170740416999,245,0 +170740417046,245,0 +170740417094,244,0 +170740417142,244,0 +170740417190,245,0 +170740417238,245,0 +170740417286,245,0 +170740417334,244,0 +170740417382,245,0 +170740417430,245,0 +170740417478,244,0 +170740417527,245,0 +170740417575,245,0 +170740417623,245,0 +170740417671,244,0 +170740417719,245,0 +170740417767,244,0 +170740417814,244,0 +170740417862,244,0 +170740417910,245,0 +170740417960,245,0 +170740418008,244,0 +170740418055,245,0 +170740418103,245,0 +170740418151,244,0 +170740418199,244,0 +170740418247,245,0 +170740418295,245,0 +170740418343,244,0 +170740418390,245,0 +170740418438,244,0 +170740418486,245,0 +170740418534,245,0 +170740418582,245,0 +170740418630,244,0 +170740418678,244,0 +170740418727,244,0 +170740418775,245,0 +170740418823,245,0 +170740418871,244,0 +170740418919,244,0 +170740418967,244,0 +170740419014,245,0 +170740419062,245,0 +170740419110,244,0 +170740419158,245,0 +170740419206,244,0 +170740419254,244,0 +170740419303,244,0 +170740419351,245,0 +170740419401,245,0 +170740419450,245,0 +170740419498,245,0 +170740419548,244,0 +170740419595,245,0 +170740419645,245,0 +170740419693,244,0 +170740419741,245,0 +170740419789,245,0 +170740419836,244,0 +170740419884,244,0 +170740419934,245,0 +170740419982,245,0 +170740420031,245,0 +170740420079,244,0 +170740420127,244,0 +170740420175,244,0 +170740420223,245,0 +170740420271,244,0 +170740420320,245,0 +170740420368,245,0 +170740420417,245,0 +170740420467,244,0 +170740420515,245,0 +170740420563,245,0 +170740420611,244,0 +170740420660,244,0 +170740420708,244,0 +170740420756,245,0 +170740420804,245,0 +170740420853,245,0 +170740420901,244,0 +170740420949,245,0 +170740420999,245,0 +170740421047,245,0 +170740421096,245,0 +170740421144,244,0 +170740421192,245,0 +170740421241,245,0 +170740421289,244,0 +170740421339,244,0 +170740421387,244,0 +170740421435,244,0 +170740421484,244,0 +170740421532,244,0 +170740421580,245,0 +170740421628,245,0 +170740421676,245,0 +170740421724,244,0 +170740421772,245,0 +170740421820,245,0 +170740421867,244,0 +170740421915,244,0 +170740421963,244,0 +170740422011,245,0 +170740422061,245,0 +170740422108,244,0 +170740422156,244,0 +170740422204,244,0 +170740422254,244,0 +170740422302,244,0 +170740422349,245,0 +170740422397,245,0 +170740422445,244,0 +170740422493,244,0 +170740422541,244,0 +170740422589,245,0 +170740422637,245,0 +170740422686,245,0 +170740422734,245,0 +170740422784,244,0 +170740422833,244,0 +170740422881,245,0 +170740422929,245,0 +170740422979,244,0 +170740423028,244,0 +170740423078,245,0 +170740423126,244,0 +170740423175,244,0 +170740423225,245,0 +170740423273,244,0 +170740423322,244,0 +170740423370,245,0 +170740423418,245,0 +170740423466,245,0 +170740423514,245,0 +170740423562,244,0 +170740423610,244,0 +170740423658,245,0 +170740423706,245,0 +170740423754,244,0 +170740423803,245,0 +170740423851,245,0 +170740423901,245,0 +170740423949,244,0 +170740423997,245,0 +170740424045,244,0 +170740424094,245,0 +170740424142,244,0 +170740424192,244,0 +170740424240,244,0 +170740424288,245,0 +170740424336,244,0 +170740424383,244,0 +170740424433,244,0 +170740424481,244,0 +170740424529,244,0 +170740424578,244,0 +170740424626,245,0 +170740424674,244,0 +170740424722,244,0 +170740424772,245,0 +170740424820,245,0 +170740424868,244,0 +170740424916,244,0 +170740424964,245,0 +170740425012,244,0 +170740425061,244,0 +170740425109,244,0 +170740425157,244,0 +170740425205,245,0 +170740425253,244,0 +170740425301,245,0 +170740425350,245,0 +170740425398,245,0 +170740425448,245,0 +170740425496,245,0 +170740425544,244,0 +170740425593,245,0 +170740425641,244,0 +170740425691,244,0 +170740425740,244,0 +170740425788,244,0 +170740425836,245,0 +170740425884,245,0 +170740425934,245,0 +170740425982,244,0 +170740426030,244,0 +170740426079,245,0 +170740426127,245,0 +170740426175,244,0 +170740426223,244,0 +170740426271,245,0 +170740426319,244,0 +170740426367,245,0 +170740426416,244,0 +170740426464,245,0 +170740426512,245,0 +170740426562,244,0 +170740426610,244,0 +170740426659,244,0 +170740426709,244,0 +170740426757,244,0 +170740426805,244,0 +170740426853,244,0 +170740426901,245,0 +170740426950,245,0 +170740427000,244,0 +170740427048,244,0 +170740427096,244,0 +170740427144,245,0 +170740427192,245,0 +170740427240,244,0 +170740427287,245,0 +170740427335,244,0 +170740427383,245,0 +170740427431,245,0 +170740427479,245,0 +170740427527,244,0 +170740427575,245,0 +170740427623,245,0 +170740427672,244,0 +170740427720,244,0 +170740427770,244,0 +170740427818,245,0 +170740427866,245,0 +170740427915,244,0 +170740427963,245,0 +170740428013,244,0 +170740428061,245,0 +170740428110,245,0 +170740428158,245,0 +170740428206,245,0 +170740428254,244,0 +170740428302,244,0 +170740428352,245,0 +170740428400,245,0 +170740428448,245,0 +170740428496,244,0 +170740428543,244,0 +170740428593,244,0 +170740428641,244,0 +170740428689,244,0 +170740428738,244,0 +170740428786,245,0 +170740428834,244,0 +170740428883,244,0 +170740428931,245,0 +170740428979,244,0 +170740429027,244,0 +170740429077,245,0 +170740429125,244,0 +170740429172,245,0 +170740429220,244,0 +170740429270,245,0 +170740429318,244,0 +170740429366,245,0 +170740429414,245,0 +170740429462,245,0 +170740429511,245,0 +170740429559,244,0 +170740429607,244,0 +170740429655,244,0 +170740429703,244,0 +170740429751,244,0 +170740429799,245,0 +170740429847,244,0 +170740429897,244,0 +170740429946,245,0 +170740429996,244,0 +170740430045,244,0 +170740430093,245,0 +170740430141,244,0 +170740430189,244,0 +170740430237,245,0 +170740430285,244,0 +170740430334,244,0 +170740430382,244,0 +170740430430,245,0 +170740430478,244,0 +170740430528,244,0 +170740430576,244,0 +170740430624,245,0 +170740430673,244,0 +170740430721,244,0 +170740430769,244,0 +170740430817,245,0 +170740430865,244,0 +170740430915,244,0 +170740430964,245,0 +170740431014,244,0 +170740431062,244,0 +170740431110,244,0 +170740431157,244,0 +170740431205,244,0 +170740431253,245,0 +170740431301,245,0 +170740431349,244,0 +170740431399,244,0 +170740431447,245,0 +170740431495,244,0 +170740431544,244,0 +170740431592,245,0 +170740431642,244,0 +170740431691,244,0 +170740431739,244,0 +170740431789,244,0 +170740431838,244,0 +170740431886,244,0 +170740431936,244,0 +170740431985,244,0 +170740432035,244,0 +170740432084,245,0 +170740432132,244,0 +170740432180,244,0 +170740432228,244,0 +170740432276,244,0 +170740432324,244,0 +170740432372,245,0 +170740432420,244,0 +170740432467,244,0 +170740432517,244,0 +170740432565,244,0 +170740432613,244,0 +170740432662,245,0 +170740432712,245,0 +170740432759,244,0 +170740432807,244,0 +170740432855,244,0 +170740432903,244,0 +170740432951,244,0 +170740432999,244,0 +170740433047,244,0 +170740433095,244,0 +170740433143,244,0 +170740433191,244,0 +170740433238,244,0 +170740433286,245,0 +170740433334,244,0 +170740433382,244,0 +170740433432,244,0 +170740433480,244,0 +170740433528,244,0 +170740433576,245,0 +170740433625,244,0 +170740433673,244,0 +170740433721,244,0 +170740433769,244,0 +170740433819,244,0 +170740433867,244,0 +170740433915,245,0 +170740433963,244,0 +170740434011,244,0 +170740434059,245,0 +170740434107,244,0 +170740434155,244,0 +170740434203,245,0 +170740434251,244,0 +170740434298,244,0 +170740434348,245,0 +170740434397,244,0 +170740434447,244,0 +170740434496,245,0 +170740434546,244,0 +170740434596,244,0 +170740434644,245,0 +170740434692,244,0 +170740434741,244,0 +170740434789,244,0 +170740434837,244,0 +170740434885,244,0 +170740434933,245,0 +170740434982,245,0 +170740435030,244,0 +170740435078,245,0 +170740435128,245,0 +170740435176,244,0 +170740435224,245,0 +170740435273,244,0 +170740435323,244,0 +170740435372,245,0 +170740435422,244,0 +170740435471,244,0 +170740435519,244,0 +170740435569,244,0 +170740435618,244,0 +170740435668,244,0 +170740435717,244,0 +170740435765,244,0 +170740435813,245,0 +170740435861,244,0 +170740435911,244,0 +170740435959,244,0 +170740436007,244,0 +170740436056,244,0 +170740436105,245,0 +170740436153,245,0 +170740436201,244,0 +170740436251,244,0 +170740436299,244,0 +170740436348,244,0 +170740436396,244,0 +170740436446,244,0 +170740436494,244,0 +170740436543,244,0 +170740436591,244,0 +170740436641,244,0 +170740436689,244,0 +170740436737,244,0 +170740436785,244,0 +170740436834,244,0 +170740436882,244,0 +170740436932,244,0 +170740436980,244,0 +170740437028,244,0 +170740437077,244,0 +170740437125,244,0 +170740437175,244,0 +170740437223,244,0 +170740437272,245,0 +170740437320,244,0 +170740437370,244,0 +170740437418,244,0 +170740437466,244,0 +170740437513,244,0 +170740437561,244,0 +170740437609,244,0 +170740437657,244,0 +170740437705,245,0 +170740437753,244,0 +170740437801,244,0 +170740437849,244,0 +170740437897,244,0 +170740437945,244,0 +170740437995,244,0 +170740438043,244,0 +170740438092,244,0 +170740438140,244,0 +170740438188,244,0 +170740438236,244,0 +170740438286,244,0 +170740438333,244,0 +170740438381,244,0 +170740438431,244,0 +170740438480,244,0 +170740438530,244,0 +170740438578,244,0 +170740438626,245,0 +170740438676,244,0 +170740438724,244,0 +170740438771,244,0 +170740438821,244,0 +170740438870,244,0 +170740438918,244,0 +170740438966,244,0 +170740439016,244,0 +170740439064,244,0 +170740439112,244,0 +170740439160,244,0 +170740439207,244,0 +170740439255,244,0 +170740439303,244,0 +170740439351,244,0 +170740439399,244,0 +170740439447,244,0 +170740439495,244,0 +170740439545,244,0 +170740439593,244,0 +170740439642,244,0 +170740439692,244,0 +170740439740,244,0 +170740439788,244,0 +170740439836,244,0 +170740439885,244,0 +170740439933,244,0 +170740439983,244,0 diff --git a/laser_value/0209-01.csv b/laser_value/0209-01.csv new file mode 100644 index 0000000..e15d79d --- /dev/null +++ b/laser_value/0209-01.csv @@ -0,0 +1,7405 @@ +timestamp,laser_value,event +170740441441,244,0 +170740441489,244,0 +170740441537,244,0 +170740441586,245,0 +170740441634,244,0 +170740441682,244,0 +170740441730,244,0 +170740441778,244,0 +170740441826,244,0 +170740441874,245,0 +170740441922,245,0 +170740441971,244,0 +170740442019,244,0 +170740442067,245,0 +170740442115,244,0 +170740442163,244,0 +170740442210,245,0 +170740442258,245,0 +170740442306,245,0 +170740442354,244,0 +170740442402,244,0 +170740442450,244,0 +170740442498,245,0 +170740442546,245,0 +170740442593,244,0 +170740442641,244,0 +170740442689,244,0 +170740442737,245,0 +170740442785,244,0 +170740442833,244,0 +170740442881,244,0 +170740442929,244,0 +170740442977,244,0 +170740443024,244,0 +170740443074,244,0 +170740443122,245,0 +170740443171,245,0 +170740443219,244,0 +170740443267,244,0 +170740443315,245,0 +170740443363,245,0 +170740443411,245,0 +170740443459,244,0 +170740443507,244,0 +170740443555,244,0 +170740443602,245,0 +170740443650,244,0 +170740443698,244,0 +170740443746,244,0 +170740443794,244,0 +170740443842,245,0 +170740443890,244,0 +170740443937,244,0 +170740443985,244,0 +170740444033,244,0 +170740444081,244,0 +170740444129,244,0 +170740444177,244,0 +170740444226,245,0 +170740444276,244,0 +170740444324,245,0 +170740444372,244,0 +170740444420,245,0 +170740444467,244,0 +170740444515,244,0 +170740444563,245,0 +170740444613,244,0 +170740444660,244,0 +170740444708,245,0 +170740444756,244,0 +170740444806,244,0 +170740444854,244,0 +170740444901,244,0 +170740444951,244,0 +170740444999,245,0 +170740445047,245,0 +170740445096,244,0 +170740445144,244,0 +170740445192,244,0 +170740445240,244,0 +170740445288,244,0 +170740445335,244,0 +170740445383,244,0 +170740445433,245,0 +170740445481,244,0 +170740445529,244,0 +170740445578,244,0 +170740445626,244,0 +170740445674,244,0 +170740445722,244,0 +170740445770,244,0 +170740445818,245,0 +170740445865,244,0 +170740445913,244,0 +170740445961,244,0 +170740446009,244,0 +170740446057,244,0 +170740446105,244,0 +170740446153,244,0 +170740446201,245,0 +170740446249,244,0 +170740446296,245,0 +170740446344,245,0 +170740446392,244,0 +170740446440,244,0 +170740446488,244,0 +170740446536,244,0 +170740446584,244,0 +170740446632,244,0 +170740446679,244,0 +170740446729,244,0 +170740446777,244,0 +170740446825,244,0 +170740446873,244,0 +170740446921,245,0 +170740446969,244,0 +170740447016,244,0 +170740447064,244,0 +170740447112,245,0 +170740447160,244,0 +170740447208,244,0 +170740447256,244,0 +170740447304,244,0 +170740447352,244,0 +170740447399,244,0 +170740447447,244,0 +170740447497,244,0 +170740447545,244,0 +170740447592,244,0 +170740447642,244,0 +170740447690,244,0 +170740447738,244,0 +170740447786,244,0 +170740447834,244,0 +170740447882,244,0 +170740447931,244,0 +170740447981,244,0 +170740448029,244,0 +170740448077,244,0 +170740448125,244,0 +170740448173,244,0 +170740448221,245,0 +170740448270,244,0 +170740448320,244,0 +170740448368,244,0 +170740448415,244,0 +170740448465,244,0 +170740448515,244,0 +170740448562,244,0 +170740448612,244,0 +170740448660,244,0 +170740448708,244,0 +170740448756,244,0 +170740448804,244,0 +170740448851,244,0 +170740448899,244,0 +170740448947,244,0 +170740448995,244,0 +170740449044,244,0 +170740449092,244,0 +170740449140,244,0 +170740449188,244,0 +170740449237,244,0 +170740449285,244,0 +170740449333,244,0 +170740449383,244,0 +170740449430,244,0 +170740449478,244,0 +170740449526,244,0 +170740449574,244,0 +170740449622,244,0 +170740449670,244,0 +170740449718,244,0 +170740449766,244,0 +170740449813,244,0 +170740449861,244,0 +170740449909,244,0 +170740449957,244,0 +170740450005,244,0 +170740450053,244,0 +170740450101,244,0 +170740450149,244,0 +170740450197,244,0 +170740450246,244,0 +170740450294,244,0 +170740450342,244,0 +170740450390,244,0 +170740450438,244,0 +170740450485,244,0 +170740450533,244,0 +170740450581,244,0 +170740450629,244,0 +170740450677,244,0 +170740450726,244,0 +170740450776,244,0 +170740450824,244,0 +170740450872,244,0 +170740450921,244,0 +170740450969,244,0 +170740451017,244,0 +170740451065,244,0 +170740451112,244,0 +170740451160,244,0 +170740451208,244,0 +170740451256,244,0 +170740451304,244,0 +170740451352,244,0 +170740451400,244,0 +170740451447,244,0 +170740451495,244,0 +170740451543,244,0 +170740451591,244,0 +170740451640,244,0 +170740451688,244,0 +170740451736,244,0 +170740451784,244,0 +170740451832,244,0 +170740451881,244,0 +170740451929,244,0 +170740451977,245,0 +170740452025,244,0 +170740452073,245,0 +170740452121,244,0 +170740452169,244,0 +170740452217,244,0 +170740452266,244,0 +170740452315,244,0 +170740452363,244,0 +170740452413,244,0 +170740452461,244,0 +170740452509,244,0 +170740452556,244,0 +170740452604,244,0 +170740452652,244,0 +170740452702,244,0 +170740452750,244,0 +170740452797,244,0 +170740452845,244,0 +170740452893,244,0 +170740452941,244,0 +170740452989,244,0 +170740453038,244,0 +170740453086,244,0 +170740453134,245,0 +170740453182,244,0 +170740453230,244,0 +170740453280,244,0 +170740453328,244,0 +170740453377,244,0 +170740453427,244,0 +170740453475,244,0 +170740453524,244,0 +170740453574,244,0 +170740453622,244,0 +170740453670,244,0 +170740453718,244,0 +170740453766,244,0 +170740453814,244,0 +170740453862,244,0 +170740453910,244,0 +170740453957,244,0 +170740454005,244,0 +170740454053,244,0 +170740454101,244,0 +170740454149,244,0 +170740454197,244,0 +170740454245,244,0 +170740454293,244,0 +170740454342,244,0 +170740454390,244,0 +170740454438,244,0 +170740454486,244,0 +170740454534,244,0 +170740454582,244,0 +170740454629,244,0 +170740454677,244,0 +170740454725,244,0 +170740454773,244,0 +170740454821,244,0 +170740454869,244,0 +170740454917,244,0 +170740454965,244,0 +170740455014,244,0 +170740455064,244,0 +170740455112,244,0 +170740455159,244,0 +170740455207,244,0 +170740455255,244,0 +170740455303,244,0 +170740455351,244,0 +170740455399,244,0 +170740455447,244,0 +170740455495,245,0 +170740455542,244,0 +170740455590,244,0 +170740455638,244,0 +170740455686,245,0 +170740455734,244,0 +170740455782,244,0 +170740455830,244,0 +170740455879,244,0 +170740455927,244,0 +170740455975,244,0 +170740456023,244,0 +170740456071,244,0 +170740456119,244,0 +170740456167,244,0 +170740456216,244,0 +170740456264,244,0 +170740456312,244,0 +170740456360,244,0 +170740456408,244,0 +170740456456,244,0 +170740456503,244,0 +170740456551,244,0 +170740456601,244,0 +170740456649,244,0 +170740456697,244,0 +170740456745,244,0 +170740456794,244,0 +170740456842,244,0 +170740456890,244,0 +170740456938,244,0 +170740456986,244,0 +170740457035,244,0 +170740457083,244,0 +170740457133,244,0 +170740457182,244,0 +170740457230,244,0 +170740457280,244,0 +170740457329,244,0 +170740457377,244,0 +170740457427,244,0 +170740457476,244,0 +170740457526,244,0 +170740457574,244,0 +170740457621,245,0 +170740457669,244,0 +170740457719,244,0 +170740457768,244,0 +170740457818,244,0 +170740457866,244,0 +170740457916,244,0 +170740457964,244,0 +170740458011,245,0 +170740458059,244,0 +170740458109,244,0 +170740458157,244,0 +170740458206,244,0 +170740458254,244,0 +170740458302,244,0 +170740458350,244,0 +170740458398,244,0 +170740458446,244,0 +170740458495,244,0 +170740458543,244,0 +170740458591,244,0 +170740458639,244,0 +170740458687,245,0 +170740458735,244,0 +170740458782,244,0 +170740458830,244,0 +170740458880,244,0 +170740458929,244,0 +170740458977,244,0 +170740459025,244,0 +170740459073,244,0 +170740459121,244,0 +170740459169,244,0 +170740459217,244,0 +170740459267,244,0 +170740459315,244,0 +170740459363,244,0 +170740459411,244,0 +170740459459,244,0 +170740459507,244,0 +170740459556,244,0 +170740459604,244,0 +170740459652,244,0 +170740459700,244,0 +170740459748,244,0 +170740459796,244,0 +170740459844,244,0 +170740459892,244,0 +170740459939,244,0 +170740459989,244,0 +170740460037,244,0 +170740460085,244,0 +170740460133,244,0 +170740460182,244,0 +170740460230,245,0 +170740460278,244,0 +170740460328,244,0 +170740460377,244,0 +170740460427,244,0 +170740460475,244,0 +170740460524,245,0 +170740460574,244,0 +170740460624,244,0 +170740460672,244,0 +170740460720,244,0 +170740460767,244,0 +170740460815,245,0 +170740460863,244,0 +170740460911,245,0 +170740460961,244,0 +170740461009,244,0 +170740461058,244,0 +170740461106,244,0 +170740461154,244,0 +170740461204,244,0 +170740461252,244,0 +170740461301,244,0 +170740461351,245,0 +170740461399,244,0 +170740461447,244,0 +170740461495,245,0 +170740461543,244,0 +170740461590,244,0 +170740461640,245,0 +170740461688,244,0 +170740461736,244,0 +170740461784,244,0 +170740461832,244,0 +170740461881,244,0 +170740461931,245,0 +170740461979,245,0 +170740462027,244,0 +170740462076,244,0 +170740462124,244,0 +170740462172,244,0 +170740462220,244,0 +170740462268,244,0 +170740462316,244,0 +170740462364,244,0 +170740462412,244,0 +170740462460,244,0 +170740462508,244,0 +170740462557,244,0 +170740462605,244,0 +170740462655,244,0 +170740462704,244,0 +170740462752,244,0 +170740462800,244,0 +170740462848,244,0 +170740462896,244,0 +170740462944,244,0 +170740462992,244,0 +170740463040,244,0 +170740463088,244,0 +170740463136,244,0 +170740463184,244,0 +170740463232,244,0 +170740463280,244,0 +170740463328,244,0 +170740463375,245,0 +170740463423,244,0 +170740463471,244,0 +170740463519,244,0 +170740463569,245,0 +170740463618,244,0 +170740463668,245,0 +170740463717,245,0 +170740463765,244,0 +170740463813,244,0 +170740463863,244,0 +170740463911,244,0 +170740463960,244,0 +170740464008,244,0 +170740464056,244,0 +170740464104,244,0 +170740464153,244,0 +170740464203,244,0 +170740464251,244,0 +170740464299,244,0 +170740464347,244,0 +170740464395,244,0 +170740464443,245,0 +170740464491,244,0 +170740464539,244,0 +170740464588,244,0 +170740464638,244,0 +170740464686,244,0 +170740464734,244,0 +170740464782,244,0 +170740464829,244,0 +170740464877,244,0 +170740464925,244,0 +170740464973,244,0 +170740465023,244,0 +170740465071,244,0 +170740465120,244,0 +170740465170,244,0 +170740465218,244,0 +170740465266,244,0 +170740465315,244,0 +170740465363,244,0 +170740465411,244,0 +170740465459,244,0 +170740465507,244,0 +170740465555,245,0 +170740465603,244,0 +170740465651,244,0 +170740465699,244,0 +170740465746,244,0 +170740465794,244,0 +170740465842,244,0 +170740465890,244,0 +170740465938,244,0 +170740465988,245,0 +170740466036,244,0 +170740466085,244,0 +170740466133,244,0 +170740466181,244,0 +170740466231,244,0 +170740466280,244,0 +170740466328,244,0 +170740466376,244,0 +170740466424,244,0 +170740466473,244,0 +170740466523,244,0 +170740466572,244,0 +170740466622,244,0 +170740466670,244,0 +170740466718,244,0 +170740466766,244,0 +170740466814,244,0 +170740466863,244,0 +170740466911,244,0 +170740466961,244,0 +170740467010,244,0 +170740467058,244,0 +170740467106,244,0 +170740467156,244,0 +170740467204,244,0 +170740467252,244,0 +170740467301,244,0 +170740467349,244,0 +170740467397,244,0 +170740467445,244,0 +170740467493,244,0 +170740467541,244,0 +170740467591,244,0 +170740467639,244,0 +170740467688,244,0 +170740467736,244,0 +170740467786,244,0 +170740467834,244,0 +170740467882,244,0 +170740467930,244,0 +170740467978,244,0 +170740468027,244,0 +170740468075,244,0 +170740468123,244,0 +170740468172,244,0 +170740468220,244,0 +170740468270,244,0 +170740468319,244,0 +170740468367,244,0 +170740468415,244,0 +170740468463,244,0 +170740468513,244,0 +170740468562,244,0 +170740468610,244,0 +170740468660,244,0 +170740468709,244,0 +170740468757,244,0 +170740468807,244,0 +170740468855,244,0 +170740468904,244,0 +170740468952,244,0 +170740469000,244,0 +170740469048,244,0 +170740469096,244,0 +170740469146,244,0 +170740469194,244,0 +170740469243,244,0 +170740469293,244,0 +170740469342,244,0 +170740469392,244,0 +170740469440,244,0 +170740469489,244,0 +170740469539,244,0 +170740469587,244,0 +170740469636,244,0 +170740469684,244,0 +170740469732,244,0 +170740469780,244,0 +170740469828,244,0 +170740469876,244,0 +170740469924,244,0 +170740469974,244,0 +170740470022,244,0 +170740470071,244,0 +170740470119,244,0 +170740470169,244,0 +170740470217,244,0 +170740470265,244,0 +170740470314,244,0 +170740470364,244,0 +170740470413,244,0 +170740470461,244,0 +170740470511,244,0 +170740470560,244,0 +170740470610,244,0 +170740470658,244,0 +170740470706,244,0 +170740470754,244,0 +170740470802,244,0 +170740470851,244,0 +170740470899,244,0 +170740470947,244,0 +170740470995,244,0 +170740471043,244,0 +170740471091,244,0 +170740471139,244,0 +170740471188,244,0 +170740471238,244,0 +170740471286,244,0 +170740471334,244,0 +170740471384,244,0 +170740471431,244,0 +170740471481,244,0 +170740471529,244,0 +170740471577,244,0 +170740471625,245,0 +170740471673,244,0 +170740471721,244,0 +170740471769,244,0 +170740471818,244,0 +170740471866,244,0 +170740471916,244,0 +170740471964,244,0 +170740472012,244,0 +170740472061,244,0 +170740472109,244,0 +170740472157,244,0 +170740472207,244,0 +170740472255,245,0 +170740472303,244,0 +170740472352,244,0 +170740472402,244,0 +170740472451,244,0 +170740472500,244,0 +170740472548,244,0 +170740472596,244,0 +170740472644,244,0 +170740472692,244,0 +170740472742,244,0 +170740472791,244,0 +170740472839,244,0 +170740472887,244,0 +170740472935,244,0 +170740472983,244,0 +170740473031,244,0 +170740473079,244,0 +170740473127,244,0 +170740473175,244,0 +170740473224,244,0 +170740473274,244,0 +170740473322,244,0 +170740473370,244,0 +170740473418,244,0 +170740473467,244,0 +170740473515,244,0 +170740473563,244,0 +170740473611,244,0 +170740473659,244,0 +170740473707,244,0 +170740473755,244,0 +170740473804,244,0 +170740473852,244,0 +170740473902,244,0 +170740473951,244,0 +170740473999,244,0 +170740474047,244,0 +170740474097,244,0 +170740474145,244,0 +170740474193,244,0 +170740474242,244,0 +170740474292,244,0 +170740474341,244,0 +170740474389,244,0 +170740474437,244,0 +170740474485,244,0 +170740474533,244,0 +170740474581,244,0 +170740474629,244,0 +170740474677,244,0 +170740474726,244,0 +170740474774,244,0 +170740474824,244,0 +170740474873,244,0 +170740474921,244,0 +170740474970,244,0 +170740475020,244,0 +170740475069,244,0 +170740475117,244,0 +170740475165,244,0 +170740475215,244,0 +170740475263,244,0 +170740475311,244,0 +170740475359,244,0 +170740475407,244,0 +170740475456,244,0 +170740475506,244,0 +170740475554,244,0 +170740475602,244,0 +170740475650,244,0 +170740475697,244,0 +170740475745,244,0 +170740475795,244,0 +170740475844,244,0 +170740475892,244,0 +170740475940,244,0 +170740475990,244,0 +170740476038,244,0 +170740476087,244,0 +170740476135,244,0 +170740476183,244,0 +170740476231,244,0 +170740476279,244,0 +170740476329,244,0 +170740476378,245,0 +170740476428,244,0 +170740476476,244,0 +170740476524,244,0 +170740476572,244,0 +170740476619,244,0 +170740476667,244,0 +170740476717,245,0 +170740476767,244,0 +170740476816,244,0 +170740476864,244,0 +170740476912,244,0 +170740476960,244,0 +170740477008,244,0 +170740477056,244,0 +170740477105,244,0 +170740477153,244,0 +170740477201,244,0 +170740477249,244,0 +170740477297,244,0 +170740477345,244,0 +170740477393,244,0 +170740477441,244,0 +170740477489,244,0 +170740477537,244,0 +170740477585,244,0 +170740477633,244,0 +170740477682,244,0 +170740477730,244,0 +170740477780,244,0 +170740477828,244,0 +170740477875,244,0 +170740477925,244,0 +170740477974,244,0 +170740478022,244,0 +170740478072,244,0 +170740478120,244,0 +170740478169,244,0 +170740478217,244,0 +170740478267,244,0 +170740478315,244,0 +170740478364,244,0 +170740478414,244,0 +170740478462,244,0 +170740478510,244,0 +170740478559,244,0 +170740478607,244,0 +170740478655,244,0 +170740478703,244,0 +170740478751,244,0 +170740478799,244,0 +170740478847,244,0 +170740478894,244,0 +170740478942,244,0 +170740478990,244,0 +170740479038,244,0 +170740479086,244,0 +170740479134,244,0 +170740479182,244,0 +170740479231,244,0 +170740479279,244,0 +170740479327,244,0 +170740479375,244,0 +170740479424,244,0 +170740479474,244,0 +170740479524,244,0 +170740479572,244,0 +170740479621,244,0 +170740479669,244,0 +170740479717,244,0 +170740479765,244,0 +170740479813,244,0 +170740479861,244,0 +170740479909,244,0 +170740479956,244,0 +170740480004,244,0 +170740480052,244,0 +170740480100,245,0 +170740480148,244,0 +170740480196,244,0 +170740480245,244,0 +170740480293,244,0 +170740480341,244,0 +170740480389,244,0 +170740480437,244,0 +170740480485,244,0 +170740480533,244,0 +170740480581,244,0 +170740480630,244,0 +170740480678,244,0 +170740480726,244,0 +170740480775,245,0 +170740480823,244,0 +170740480871,244,0 +170740480919,244,0 +170740480967,244,0 +170740481015,244,0 +170740481063,244,0 +170740481110,244,0 +170740481158,244,0 +170740481206,244,0 +170740481256,244,0 +170740481303,244,0 +170740481351,244,0 +170740481399,245,0 +170740481447,244,0 +170740481496,244,0 +170740481544,244,0 +170740481592,244,0 +170740481640,244,0 +170740481688,244,0 +170740481736,244,0 +170740481784,244,0 +170740481833,244,0 +170740481881,244,0 +170740481929,244,0 +170740481977,244,0 +170740482026,244,0 +170740482074,244,0 +170740482122,244,0 +170740482170,244,0 +170740482218,244,0 +170740482266,244,0 +170740482314,244,0 +170740482362,244,0 +170740482409,245,0 +170740482457,245,0 +170740482505,244,0 +170740482553,244,0 +170740482601,244,0 +170740482649,244,0 +170740482697,244,0 +170740482745,244,0 +170740482792,244,0 +170740482840,244,0 +170740482888,244,0 +170740482936,244,0 +170740482984,244,0 +170740483033,244,0 +170740483081,244,0 +170740483131,244,0 +170740483179,244,0 +170740483227,244,0 +170740483274,244,0 +170740483324,245,0 +170740483372,244,0 +170740483420,244,0 +170740483468,244,0 +170740483515,244,0 +170740483563,244,0 +170740483611,244,0 +170740483659,244,0 +170740483707,244,0 +170740483755,244,0 +170740483803,244,0 +170740483851,244,0 +170740483899,244,0 +170740483948,244,0 +170740483998,244,0 +170740484047,244,0 +170740484097,244,0 +170740484145,244,0 +170740484193,244,0 +170740484240,244,0 +170740484288,244,0 +170740484336,244,0 +170740484384,244,0 +170740484432,245,0 +170740484480,244,0 +170740484528,244,0 +170740484577,244,0 +170740484627,244,0 +170740484675,244,0 +170740484723,244,0 +170740484772,244,0 +170740484820,244,0 +170740484868,244,0 +170740484918,244,0 +170740484967,244,0 +170740485017,244,0 +170740485066,244,0 +170740485114,244,0 +170740485162,244,0 +170740485212,244,0 +170740485260,244,0 +170740485308,244,0 +170740485355,244,0 +170740485403,244,0 +170740485451,244,0 +170740485499,244,0 +170740485547,245,0 +170740485595,244,0 +170740485643,244,0 +170740485691,244,0 +170740485739,244,0 +170740485786,244,0 +170740485836,244,0 +170740485885,244,0 +170740485935,244,0 +170740485983,244,0 +170740486032,244,0 +170740486080,244,0 +170740486128,244,0 +170740486178,244,0 +170740486227,244,0 +170740486277,244,0 +170740486326,244,0 +170740486374,244,0 +170740486424,244,0 +170740486473,244,0 +170740486521,244,0 +170740486571,245,0 +170740486620,244,0 +170740486668,244,0 +170740486716,244,0 +170740486766,244,0 +170740486814,244,0 +170740486862,244,0 +170740486910,244,0 +170740486959,244,0 +170740487009,244,0 +170740487058,244,0 +170740487108,244,0 +170740487156,244,0 +170740487203,244,0 +170740487251,244,0 +170740487299,244,0 +170740487347,244,0 +170740487395,245,0 +170740487443,244,0 +170740487492,244,0 +170740487540,244,0 +170740487588,244,0 +170740487636,245,0 +170740487684,244,0 +170740487732,244,0 +170740487780,244,0 +170740487828,244,0 +170740487877,244,0 +170740487925,244,0 +170740487973,245,0 +170740488020,244,0 +170740488068,244,0 +170740488116,244,0 +170740488164,244,0 +170740488212,244,0 +170740488260,244,0 +170740488308,244,0 +170740488356,244,0 +170740488404,244,0 +170740488452,244,0 +170740488499,244,0 +170740488547,244,0 +170740488595,244,0 +170740488643,244,0 +170740488691,244,0 +170740488739,244,0 +170740488787,244,0 +170740488835,244,0 +170740488883,244,0 +170740488931,244,0 +170740488978,244,0 +170740489026,244,0 +170740489076,244,0 +170740489123,244,0 +170740489171,244,0 +170740489219,244,0 +170740489267,244,0 +170740489315,244,0 +170740489363,244,0 +170740489411,244,0 +170740489460,244,0 +170740489508,244,0 +170740489556,244,0 +170740489604,244,0 +170740489652,244,0 +170740489702,244,0 +170740489750,244,0 +170740489798,244,0 +170740489846,244,0 +170740489894,244,0 +170740489943,244,0 +170740489991,245,0 +170740490041,245,0 +170740490089,244,0 +170740490137,244,0 +170740490185,244,0 +170740490233,244,0 +170740490282,244,0 +170740490330,244,0 +170740490380,244,0 +170740490427,244,0 +170740490477,244,0 +170740490525,244,0 +170740490574,244,0 +170740490622,244,0 +170740490672,244,0 +170740490720,244,0 +170740490768,244,0 +170740490817,244,0 +170740490865,244,0 +170740490913,244,0 +170740490961,244,0 +170740491009,244,0 +170740491057,244,0 +170740491105,244,0 +170740491152,244,0 +170740491202,244,0 +170740491250,244,0 +170740491298,244,0 +170740491346,244,0 +170740491395,244,0 +170740491443,244,0 +170740491491,244,0 +170740491539,244,0 +170740491586,244,0 +170740491634,244,0 +170740491682,244,0 +170740491730,244,0 +170740491778,244,0 +170740491826,244,0 +170740491874,244,0 +170740491921,244,0 +170740491971,244,0 +170740492019,244,0 +170740492067,244,0 +170740492115,244,0 +170740492163,244,0 +170740492210,244,0 +170740492258,244,0 +170740492306,244,0 +170740492354,244,0 +170740492402,244,0 +170740492451,244,0 +170740492499,244,0 +170740492547,245,0 +170740492595,244,0 +170740492643,244,0 +170740492692,244,0 +170740492740,244,0 +170740492788,244,0 +170740492836,244,0 +170740492885,244,0 +170740492933,244,0 +170740492981,244,0 +170740493029,244,0 +170740493077,244,0 +170740493125,244,0 +170740493174,244,0 +170740493222,244,0 +170740493270,244,0 +170740493318,244,0 +170740493366,244,0 +170740493415,244,0 +170740493463,244,0 +170740493511,244,0 +170740493561,244,0 +170740493610,244,0 +170740493658,244,0 +170740493706,244,0 +170740493754,244,0 +170740493802,244,0 +170740493849,244,0 +170740493897,244,0 +170740493945,244,0 +170740493993,244,0 +170740494041,244,0 +170740494089,244,0 +170740494137,244,0 +170740494185,245,0 +170740494233,244,0 +170740494281,244,0 +170740494328,244,0 +170740494376,244,0 +170740494424,244,0 +170740494472,244,0 +170740494520,244,0 +170740494568,244,0 +170740494616,244,0 +170740494666,244,0 +170740494714,244,0 +170740494762,244,0 +170740494810,244,0 +170740494858,244,0 +170740494905,244,0 +170740494953,244,0 +170740495001,244,0 +170740495049,244,0 +170740495097,244,0 +170740495145,244,0 +170740495193,244,0 +170740495242,245,0 +170740495290,244,0 +170740495340,244,0 +170740495389,244,0 +170740495439,244,0 +170740495488,244,0 +170740495536,244,0 +170740495584,244,0 +170740495634,244,0 +170740495683,244,0 +170740495731,244,0 +170740495781,244,0 +170740495829,244,0 +170740495877,244,0 +170740495926,244,0 +170740495974,244,0 +170740496022,244,0 +170740496070,244,0 +170740496118,244,0 +170740496166,244,0 +170740496215,244,0 +170740496265,244,0 +170740496313,244,0 +170740496360,245,0 +170740496410,244,0 +170740496458,244,0 +170740496507,244,0 +170740496555,244,0 +170740496603,244,0 +170740496653,244,0 +170740496702,244,0 +170740496750,244,0 +170740496798,244,0 +170740496848,244,0 +170740496897,244,0 +170740496945,244,0 +170740496993,244,0 +170740497043,244,0 +170740497092,244,0 +170740497140,244,0 +170740497188,244,0 +170740497236,244,0 +170740497284,244,0 +170740497332,244,0 +170740497380,244,0 +170740497427,244,0 +170740497475,244,0 +170740497525,244,0 +170740497573,244,0 +170740497622,244,0 +170740497670,244,0 +170740497720,245,0 +170740497768,245,0 +170740497817,244,0 +170740497865,244,0 +170740497915,244,0 +170740497963,244,0 +170740498012,244,0 +170740498060,244,0 +170740498108,244,0 +170740498156,245,0 +170740498204,244,0 +170740498252,245,0 +170740498302,244,0 +170740498350,245,0 +170740498399,244,0 +170740498447,244,0 +170740498495,244,0 +170740498543,244,0 +170740498591,244,0 +170740498639,244,0 +170740498687,244,0 +170740498735,244,0 +170740498783,244,0 +170740498831,244,0 +170740498880,244,0 +170740498928,244,0 +170740498976,244,0 +170740499024,244,0 +170740499074,245,0 +170740499122,244,0 +170740499170,244,0 +170740499218,244,0 +170740499267,244,0 +170740499315,244,0 +170740499365,244,0 +170740499414,245,0 +170740499462,244,0 +170740499512,244,0 +170740499561,244,0 +170740499611,244,0 +170740499660,244,0 +170740499710,245,0 +170740499758,245,0 +170740499807,244,0 +170740499855,244,0 +170740499903,244,0 +170740499951,244,0 +170740500001,244,0 +170740500048,244,0 +170740500096,244,0 +170740500144,244,0 +170740500192,244,0 +170740500240,245,0 +170740500290,244,0 +170740500338,244,0 +170740500386,244,0 +170740500435,244,0 +170740500483,244,0 +170740500531,245,0 +170740500581,244,0 +170740500629,244,0 +170740500677,244,0 +170740500725,244,0 +170740500774,244,0 +170740500822,244,0 +170740500870,244,0 +170740500918,244,0 +170740500966,244,0 +170740501016,244,0 +170740501064,244,0 +170740501112,244,0 +170740501160,244,0 +170740501209,244,0 +170740501257,245,0 +170740501305,244,0 +170740501353,244,0 +170740501401,244,0 +170740501450,244,0 +170740501500,244,0 +170740501550,244,0 +170740501597,245,0 +170740501645,244,0 +170740501693,244,0 +170740501741,245,0 +170740501791,244,0 +170740501839,244,0 +170740501887,244,0 +170740501935,244,0 +170740501983,244,0 +170740502031,244,0 +170740502079,244,0 +170740502126,245,0 +170740502176,245,0 +170740502224,244,0 +170740502272,244,0 +170740502320,245,0 +170740502368,245,0 +170740502417,244,0 +170740502467,244,0 +170740502515,244,0 +170740502562,244,0 +170740502610,245,0 +170740502658,244,0 +170740502706,245,0 +170740502756,244,0 +170740502804,245,0 +170740502853,244,0 +170740502901,244,0 +170740502949,244,0 +170740502997,244,0 +170740503045,244,0 +170740503094,244,0 +170740503142,244,0 +170740503192,244,0 +170740503240,245,0 +170740503288,244,0 +170740503336,244,0 +170740503384,244,0 +170740503433,244,0 +170740503483,244,0 +170740503532,244,0 +170740503580,244,0 +170740503630,245,0 +170740503678,244,0 +170740503727,244,0 +170740503777,244,0 +170740503826,244,0 +170740503876,245,0 +170740503924,244,0 +170740503972,244,0 +170740504020,244,0 +170740504068,245,0 +170740504116,245,0 +170740504166,245,0 +170740504214,244,0 +170740504263,244,0 +170740504313,245,0 +170740504362,244,0 +170740504410,245,0 +170740504458,244,0 +170740504506,245,0 +170740504555,245,0 +170740504605,244,0 +170740504653,245,0 +170740504701,245,0 +170740504749,244,0 +170740504798,245,0 +170740504846,245,0 +170740504896,244,0 +170740504944,245,0 +170740504992,245,0 +170740505039,244,0 +170740505087,244,0 +170740505135,244,0 +170740505185,245,0 +170740505233,245,0 +170740505281,245,0 +170740505329,245,0 +170740505377,244,0 +170740505425,244,0 +170740505473,244,0 +170740505522,245,0 +170740505570,244,0 +170740505620,244,0 +170740505667,244,0 +170740505717,244,0 +170740505765,244,0 +170740505813,245,0 +170740505861,245,0 +170740505910,244,0 +170740505958,244,0 +170740506008,245,0 +170740506056,244,0 +170740506105,244,0 +170740506155,245,0 +170740506203,245,0 +170740506251,245,0 +170740506300,244,0 +170740506350,244,0 +170740506398,244,0 +170740506446,245,0 +170740506494,244,0 +170740506542,244,0 +170740506590,244,0 +170740506638,245,0 +170740506687,244,0 +170740506737,245,0 +170740506786,244,0 +170740506836,244,0 +170740506885,245,0 +170740506935,244,0 +170740506983,244,0 +170740507032,245,0 +170740507080,244,0 +170740507128,244,0 +170740507176,244,0 +170740507224,244,0 +170740507272,245,0 +170740507320,244,0 +170740507368,245,0 +170740507416,245,0 +170740507465,244,0 +170740507513,244,0 +170740507561,244,0 +170740507610,244,0 +170740507658,244,0 +170740507708,244,0 +170740507756,244,0 +170740507805,244,0 +170740507853,245,0 +170740507901,244,0 +170740507949,244,0 +170740507997,244,0 +170740508045,244,0 +170740508093,245,0 +170740508142,244,0 +170740508190,244,0 +170740508240,244,0 +170740508288,244,0 +170740508336,245,0 +170740508384,244,0 +170740508432,244,0 +170740508479,244,0 +170740508529,244,0 +170740508579,244,0 +170740508626,245,0 +170740508674,244,0 +170740508722,244,0 +170740508770,244,0 +170740508818,244,0 +170740508866,245,0 +170740508916,244,0 +170740508964,245,0 +170740509013,244,0 +170740509063,245,0 +170740509111,244,0 +170740509159,245,0 +170740509208,244,0 +170740509256,244,0 +170740509306,244,0 +170740509354,245,0 +170740509403,244,0 +170740509451,244,0 +170740509499,245,0 +170740509547,245,0 +170740509595,245,0 +170740509643,244,0 +170740509692,244,0 +170740509740,245,0 +170740509790,244,0 +170740509838,244,0 +170740509887,244,0 +170740509937,244,0 +170740509986,245,0 +170740510034,245,0 +170740510082,244,0 +170740510132,244,0 +170740510181,244,0 +170740510231,244,0 +170740510280,244,0 +170740510328,244,0 +170740510376,244,0 +170740510424,244,0 +170740510472,245,0 +170740510520,244,0 +170740510568,244,0 +170740510617,244,0 +170740510665,244,0 +170740510713,244,0 +170740510761,244,0 +170740510809,245,0 +170740510858,245,0 +170740510908,244,0 +170740510957,244,0 +170740511005,245,0 +170740511055,244,0 +170740511103,244,0 +170740511151,244,0 +170740511199,244,0 +170740511248,244,0 +170740511298,244,0 +170740511345,244,0 +170740511393,244,0 +170740511441,244,0 +170740511489,245,0 +170740511537,244,0 +170740511585,244,0 +170740511633,245,0 +170740511681,244,0 +170740511730,244,0 +170740511778,244,0 +170740511826,244,0 +170740511874,244,0 +170740511922,244,0 +170740511970,244,0 +170740512018,244,0 +170740512065,244,0 +170740512113,244,0 +170740512163,244,0 +170740512211,244,0 +170740512259,245,0 +170740512307,245,0 +170740512354,244,0 +170740512402,245,0 +170740512450,244,0 +170740512498,244,0 +170740512546,244,0 +170740512596,244,0 +170740512645,244,0 +170740512693,244,0 +170740512743,244,0 +170740512792,244,0 +170740512842,244,0 +170740512891,244,0 +170740512939,244,0 +170740512989,244,0 +170740513037,244,0 +170740513085,244,0 +170740513133,244,0 +170740513182,244,0 +170740513230,245,0 +170740513280,244,0 +170740513328,244,0 +170740513376,244,0 +170740513425,244,0 +170740513473,244,0 +170740513521,244,0 +170740513570,244,0 +170740513618,244,0 +170740513668,245,0 +170740513717,244,0 +170740513765,244,0 +170740513813,244,0 +170740513861,245,0 +170740513911,244,0 +170740513960,245,0 +170740514008,244,0 +170740514058,244,0 +170740514107,244,0 +170740514155,245,0 +170740514205,244,0 +170740514253,245,0 +170740514302,244,0 +170740514352,245,0 +170740514401,245,0 +170740514449,244,0 +170740514498,244,0 +170740514546,245,0 +170740514594,245,0 +170740514644,244,0 +170740514693,244,0 +170740514741,244,0 +170740514789,244,0 +170740514837,244,0 +170740514885,245,0 +170740514935,245,0 +170740514983,245,0 +170740515031,245,0 +170740515079,244,0 +170740515128,244,0 +170740515176,245,0 +170740515224,244,0 +170740515272,244,0 +170740515321,244,0 +170740515369,244,0 +170740515417,245,0 +170740515465,244,0 +170740515515,244,0 +170740515563,245,0 +170740515611,244,0 +170740515659,244,0 +170740515707,244,0 +170740515756,244,0 +170740515804,245,0 +170740515854,245,0 +170740515903,245,0 +170740515951,244,0 +170740516001,245,0 +170740516049,245,0 +170740516097,245,0 +170740516146,244,0 +170740516196,244,0 +170740516243,244,0 +170740516291,245,0 +170740516341,245,0 +170740516389,244,0 +170740516437,244,0 +170740516486,244,0 +170740516534,244,0 +170740516582,244,0 +170740516630,244,0 +170740516678,244,0 +170740516728,244,0 +170740516775,244,0 +170740516823,244,0 +170740516871,244,0 +170740516921,244,0 +170740516970,244,0 +170740517020,245,0 +170740517068,245,0 +170740517117,244,0 +170740517165,244,0 +170740517213,244,0 +170740517261,244,0 +170740517309,244,0 +170740517357,245,0 +170740517405,245,0 +170740517452,245,0 +170740517500,245,0 +170740517550,245,0 +170740517598,244,0 +170740517645,245,0 +170740517693,244,0 +170740517743,245,0 +170740517791,244,0 +170740517839,245,0 +170740517887,244,0 +170740517936,245,0 +170740517984,245,0 +170740518033,244,0 +170740518081,244,0 +170740518131,244,0 +170740518179,244,0 +170740518228,244,0 +170740518278,245,0 +170740518326,244,0 +170740518375,244,0 +170740518423,244,0 +170740518471,245,0 +170740518521,244,0 +170740518569,244,0 +170740518617,244,0 +170740518666,244,0 +170740518714,244,0 +170740518764,244,0 +170740518813,244,0 +170740518863,244,0 +170740518912,245,0 +170740518962,244,0 +170740519011,244,0 +170740519061,244,0 +170740519110,244,0 +170740519160,244,0 +170740519209,244,0 +170740519257,244,0 +170740519307,244,0 +170740519356,244,0 +170740519404,244,0 +170740519454,244,0 +170740519502,244,0 +170740519551,245,0 +170740519601,245,0 +170740519649,244,0 +170740519698,245,0 +170740519748,244,0 +170740519796,245,0 +170740519845,245,0 +170740519893,245,0 +170740519941,244,0 +170740519989,244,0 +170740520037,245,0 +170740520085,244,0 +170740520134,244,0 +170740520182,245,0 +170740520230,245,0 +170740520278,244,0 +170740520328,244,0 +170740520377,244,0 +170740520425,244,0 +170740520473,244,0 +170740520523,244,0 +170740520571,244,0 +170740520619,245,0 +170740520667,244,0 +170740520715,245,0 +170740520763,244,0 +170740520811,245,0 +170740520859,244,0 +170740520907,245,0 +170740520955,244,0 +170740521002,245,0 +170740521052,244,0 +170740521100,244,0 +170740521150,244,0 +170740521197,245,0 +170740521247,244,0 +170740521295,244,0 +170740521343,244,0 +170740521392,245,0 +170740521442,244,0 +170740521490,244,0 +170740521538,245,0 +170740521586,245,0 +170740521635,244,0 +170740521683,244,0 +170740521731,245,0 +170740521781,244,0 +170740521829,244,0 +170740521877,244,0 +170740521926,245,0 +170740521976,244,0 +170740522025,244,0 +170740522073,245,0 +170740522123,244,0 +170740522172,244,0 +170740522222,245,0 +170740522271,245,0 +170740522321,245,0 +170740522370,245,0 +170740522418,244,0 +170740522466,244,0 +170740522516,245,0 +170740522564,244,0 +170740522613,244,0 +170740522661,244,0 +170740522709,244,0 +170740522757,244,0 +170740522805,245,0 +170740522853,244,0 +170740522901,245,0 +170740522948,244,0 +170740522996,245,0 +170740523044,244,0 +170740523094,244,0 +170740523143,244,0 +170740523191,244,0 +170740523241,244,0 +170740523289,244,0 +170740523337,244,0 +170740523386,244,0 +170740523434,244,0 +170740523482,245,0 +170740523530,244,0 +170740523579,244,0 +170740523627,245,0 +170740523675,244,0 +170740523725,244,0 +170740523773,244,0 +170740523821,244,0 +170740523869,244,0 +170740523916,244,0 +170740523964,244,0 +170740524012,244,0 +170740524060,244,0 +170740524108,244,0 +170740524156,244,0 +170740524205,244,0 +170740524255,244,0 +170740524303,244,0 +170740524351,245,0 +170740524398,244,0 +170740524446,244,0 +170740524496,244,0 +170740524545,244,0 +170740524593,244,0 +170740524641,244,0 +170740524689,244,0 +170740524737,244,0 +170740524785,244,0 +170740524832,244,0 +170740524880,244,0 +170740524928,244,0 +170740524976,244,0 +170740525024,244,0 +170740525072,244,0 +170740525120,245,0 +170740525168,244,0 +170740525216,244,0 +170740525263,244,0 +170740525311,244,0 +170740525359,244,0 +170740525407,245,0 +170740525455,245,0 +170740525503,244,0 +170740525551,245,0 +170740525599,245,0 +170740525647,244,0 +170740525694,245,0 +170740525742,245,0 +170740525790,244,0 +170740525838,244,0 +170740525886,244,0 +170740525934,244,0 +170740525982,244,0 +170740526030,244,0 +170740526078,245,0 +170740526125,244,0 +170740526173,244,0 +170740526221,244,0 +170740526269,244,0 +170740526317,244,0 +170740526365,244,0 +170740526413,244,0 +170740526461,244,0 +170740526509,244,0 +170740526556,244,0 +170740526606,245,0 +170740526654,244,0 +170740526702,244,0 +170740526750,245,0 +170740526797,244,0 +170740526845,245,0 +170740526893,244,0 +170740526941,244,0 +170740526989,245,0 +170740527037,245,0 +170740527085,245,0 +170740527134,245,0 +170740527182,244,0 +170740527230,244,0 +170740527278,245,0 +170740527326,244,0 +170740527375,245,0 +170740527425,245,0 +170740527473,245,0 +170740527522,245,0 +170740527572,244,0 +170740527620,244,0 +170740527668,244,0 +170740527716,244,0 +170740527765,245,0 +170740527813,244,0 +170740527863,244,0 +170740527911,245,0 +170740527960,244,0 +170740528010,244,0 +170740528059,245,0 +170740528107,245,0 +170740528155,245,0 +170740528203,245,0 +170740528253,244,0 +170740528301,245,0 +170740528350,245,0 +170740528398,245,0 +170740528446,245,0 +170740528494,245,0 +170740528542,245,0 +170740528591,245,0 +170740528639,245,0 +170740528687,245,0 +170740528735,245,0 +170740528785,245,0 +170740528833,244,0 +170740528881,245,0 +170740528928,245,0 +170740528976,244,0 +170740529024,245,0 +170740529072,244,0 +170740529120,244,0 +170740529168,244,0 +170740529216,245,0 +170740529265,245,0 +170740529313,245,0 +170740529361,245,0 +170740529410,245,0 +170740529458,245,0 +170740529506,244,0 +170740529554,245,0 +170740529602,245,0 +170740529652,245,0 +170740529701,245,0 +170740529751,244,0 +170740529799,245,0 +170740529848,244,0 +170740529896,245,0 +170740529944,245,0 +170740529992,245,0 +170740530040,245,0 +170740530090,245,0 +170740530138,245,0 +170740530185,245,0 +170740530233,245,0 +170740530281,245,0 +170740530329,245,0 +170740530377,245,0 +170740530425,245,0 +170740530475,245,0 +170740530523,244,0 +170740530571,244,0 +170740530619,245,0 +170740530667,244,0 +170740530715,244,0 +170740530763,245,0 +170740530811,245,0 +170740530859,245,0 +170740530907,245,0 +170740530955,245,0 +170740531002,245,0 +170740531050,245,0 +170740531098,244,0 +170740531146,245,0 +170740531194,245,0 +170740531242,244,0 +170740531292,245,0 +170740531341,244,0 +170740531391,245,0 +170740531439,245,0 +170740531487,244,0 +170740531534,244,0 +170740531582,244,0 +170740531630,245,0 +170740531678,245,0 +170740531726,244,0 +170740531776,245,0 +170740531824,245,0 +170740531872,244,0 +170740531921,245,0 +170740531969,245,0 +170740532019,244,0 +170740532068,244,0 +170740532116,245,0 +170740532164,244,0 +170740532212,244,0 +170740532260,245,0 +170740532308,244,0 +170740532356,245,0 +170740532404,245,0 +170740532452,244,0 +170740532501,245,0 +170740532549,245,0 +170740532599,245,0 +170740532646,245,0 +170740532696,244,0 +170740532746,245,0 +170740532793,244,0 +170740532841,245,0 +170740532889,245,0 +170740532939,244,0 +170740532987,244,0 +170740533035,245,0 +170740533084,245,0 +170740533132,245,0 +170740533180,245,0 +170740533228,244,0 +170740533278,245,0 +170740533325,244,0 +170740533375,245,0 +170740533425,245,0 +170740533473,244,0 +170740533522,245,0 +170740533570,244,0 +170740533618,245,0 +170740533666,245,0 +170740533714,245,0 +170740533762,245,0 +170740533809,245,0 +170740533857,244,0 +170740533905,244,0 +170740533955,245,0 +170740534003,244,0 +170740534051,245,0 +170740534099,244,0 +170740534147,245,0 +170740534196,245,0 +170740534244,245,0 +170740534292,245,0 +170740534340,245,0 +170740534388,245,0 +170740534436,244,0 +170740534484,244,0 +170740534531,245,0 +170740534579,244,0 +170740534627,245,0 +170740534675,244,0 +170740534725,245,0 +170740534772,244,0 +170740534820,244,0 +170740534868,244,0 +170740534916,244,0 +170740534964,245,0 +170740535012,245,0 +170740535060,245,0 +170740535108,245,0 +170740535156,245,0 +170740535205,244,0 +170740535253,244,0 +170740535301,245,0 +170740535350,244,0 +170740535400,244,0 +170740535449,245,0 +170740535497,245,0 +170740535545,244,0 +170740535595,245,0 +170740535644,245,0 +170740535692,245,0 +170740535740,245,0 +170740535788,244,0 +170740535836,245,0 +170740535884,245,0 +170740535932,244,0 +170740535980,245,0 +170740536029,245,0 +170740536077,244,0 +170740536127,245,0 +170740536176,244,0 +170740536224,245,0 +170740536272,244,0 +170740536320,244,0 +170740536368,244,0 +170740536416,244,0 +170740536464,245,0 +170740536512,245,0 +170740536560,245,0 +170740536608,244,0 +170740536657,245,0 +170740536705,245,0 +170740536753,245,0 +170740536803,244,0 +170740536852,244,0 +170740536900,244,0 +170740536948,244,0 +170740536996,244,0 +170740537044,245,0 +170740537093,245,0 +170740537141,245,0 +170740537191,245,0 +170740537241,244,0 +170740537288,244,0 +170740537336,245,0 +170740537384,245,0 +170740537434,245,0 +170740537483,245,0 +170740537533,245,0 +170740537582,245,0 +170740537632,244,0 +170740537680,244,0 +170740537729,245,0 +170740537777,244,0 +170740537825,244,0 +170740537873,245,0 +170740537923,245,0 +170740537972,245,0 +170740538020,244,0 +170740538068,245,0 +170740538116,244,0 +170740538164,244,0 +170740538214,245,0 +170740538263,244,0 +170740538311,244,0 +170740538359,245,0 +170740538409,244,0 +170740538457,245,0 +170740538505,244,0 +170740538554,245,0 +170740538602,245,0 +170740538652,244,0 +170740538701,244,0 +170740538749,244,0 +170740538799,245,0 +170740538847,244,0 +170740538895,244,0 +170740538942,245,0 +170740538990,245,0 +170740539040,245,0 +170740539088,245,0 +170740539137,244,0 +170740539187,244,0 +170740539235,245,0 +170740539283,245,0 +170740539331,244,0 +170740539380,245,0 +170740539428,245,0 +170740539478,245,0 +170740539527,245,0 +170740539577,245,0 +170740539625,245,0 +170740539674,244,0 +170740539724,245,0 +170740539772,245,0 +170740539820,245,0 +170740539869,245,0 +170740539919,245,0 +170740539967,244,0 +170740540015,244,0 +170740540063,245,0 +170740540111,244,0 +170740540160,245,0 +170740540208,245,0 +170740540256,245,0 +170740540304,245,0 +170740540352,245,0 +170740540401,244,0 +170740540449,245,0 +170740540497,245,0 +170740540545,245,0 +170740540595,244,0 +170740540644,245,0 +170740540692,245,0 +170740540740,245,0 +170740540788,245,0 +170740540836,244,0 +170740540884,245,0 +170740540934,245,0 +170740540983,244,0 +170740541031,244,0 +170740541079,244,0 +170740541127,244,0 +170740541175,244,0 +170740541223,244,0 +170740541271,244,0 +170740541319,245,0 +170740541367,244,0 +170740541416,245,0 +170740541464,244,0 +170740541514,245,0 +170740541562,245,0 +170740541611,245,0 +170740541659,244,0 +170740541707,244,0 +170740541755,244,0 +170740541805,245,0 +170740541853,244,0 +170740541901,244,0 +170740541949,245,0 +170740541998,244,0 +170740542046,245,0 +170740542094,245,0 +170740542144,245,0 +170740542193,245,0 +170740542241,244,0 +170740542291,245,0 +170740542339,245,0 +170740542386,245,0 +170740542436,245,0 +170740542486,245,0 +170740542534,244,0 +170740542581,244,0 +170740542629,244,0 +170740542677,244,0 +170740542725,244,0 +170740542775,245,0 +170740542823,244,0 +170740542871,245,0 +170740542920,245,0 +170740542968,245,0 +170740543017,244,0 +170740543067,244,0 +170740543115,244,0 +170740543163,244,0 +170740543213,245,0 +170740543260,244,0 +170740543308,245,0 +170740543356,244,0 +170740543406,245,0 +170740543454,245,0 +170740543503,244,0 +170740543551,245,0 +170740543599,245,0 +170740543647,244,0 +170740543697,245,0 +170740543746,244,0 +170740543794,244,0 +170740543844,245,0 +170740543892,245,0 +170740543940,245,0 +170740543988,245,0 +170740544037,245,0 +170740544087,245,0 +170740544135,244,0 +170740544183,245,0 +170740544231,245,0 +170740544279,245,0 +170740544327,244,0 +170740544376,245,0 +170740544424,245,0 +170740544473,245,0 +170740544523,245,0 +170740544571,244,0 +170740544619,245,0 +170740544668,245,0 +170740544716,245,0 +170740544764,245,0 +170740544812,245,0 +170740544860,245,0 +170740544909,245,0 +170740544957,245,0 +170740545005,244,0 +170740545053,245,0 +170740545101,245,0 +170740545151,245,0 +170740545199,245,0 +170740545247,245,0 +170740545295,244,0 +170740545343,244,0 +170740545391,245,0 +170740545439,245,0 +170740545488,244,0 +170740545538,245,0 +170740545587,245,0 +170740545635,245,0 +170740545683,244,0 +170740545732,245,0 +170740545782,244,0 +170740545830,245,0 +170740545879,245,0 +170740545927,244,0 +170740545975,245,0 +170740546023,245,0 +170740546071,245,0 +170740546119,245,0 +170740546167,245,0 +170740546216,245,0 +170740546264,245,0 +170740546312,245,0 +170740546360,245,0 +170740546408,245,0 +170740546456,244,0 +170740546504,244,0 +170740546552,244,0 +170740546600,245,0 +170740546648,245,0 +170740546696,245,0 +170740546744,245,0 +170740546792,244,0 +170740546840,245,0 +170740546887,245,0 +170740546937,245,0 +170740546986,245,0 +170740547036,245,0 +170740547084,245,0 +170740547132,244,0 +170740547180,245,0 +170740547228,245,0 +170740547276,245,0 +170740547324,245,0 +170740547372,245,0 +170740547420,245,0 +170740547468,245,0 +170740547516,245,0 +170740547564,245,0 +170740547612,245,0 +170740547661,245,0 +170740547709,245,0 +170740547757,245,0 +170740547806,245,0 +170740547856,245,0 +170740547904,245,0 +170740547952,245,0 +170740548000,245,0 +170740548049,244,0 +170740548097,245,0 +170740548147,245,0 +170740548195,244,0 +170740548242,245,0 +170740548290,245,0 +170740548338,245,0 +170740548386,245,0 +170740548434,245,0 +170740548482,245,0 +170740548530,244,0 +170740548580,245,0 +170740548629,245,0 +170740548677,245,0 +170740548727,245,0 +170740548774,245,0 +170740548822,245,0 +170740548872,245,0 +170740548921,245,0 +170740548969,245,0 +170740549017,245,0 +170740549065,245,0 +170740549113,244,0 +170740549161,245,0 +170740549209,245,0 +170740549257,245,0 +170740549305,245,0 +170740549355,245,0 +170740549403,245,0 +170740549451,245,0 +170740549500,245,0 +170740549548,245,0 +170740549598,245,0 +170740549647,245,0 +170740549695,245,0 +170740549745,245,0 +170740549794,245,0 +170740549843,245,0 +170740549891,245,0 +170740549941,245,0 +170740549989,245,0 +170740550037,245,0 +170740550085,245,0 +170740550133,245,0 +170740550181,245,0 +170740550230,245,0 +170740550280,245,0 +170740550329,245,0 +170740550379,245,0 +170740550428,245,0 +170740550478,245,0 +170740550527,245,0 +170740550577,245,0 +170740550625,245,0 +170740550674,245,0 +170740550722,245,0 +170740550772,245,0 +170740550820,245,0 +170740550869,245,0 +170740550917,245,0 +170740550965,245,0 +170740551013,245,0 +170740551061,245,0 +170740551109,245,0 +170740551158,245,0 +170740551208,245,0 +170740551257,245,0 +170740551307,245,0 +170740551355,245,0 +170740551403,245,0 +170740551451,245,0 +170740551499,245,0 +170740551547,245,0 +170740551596,245,0 +170740551646,245,0 +170740551694,245,0 +170740551742,245,0 +170740551790,245,0 +170740551839,245,0 +170740551887,245,0 +170740551935,245,0 +170740551985,245,0 +170740552033,245,0 +170740552082,245,0 +170740552130,245,0 +170740552180,245,0 +170740552229,245,0 +170740552279,245,0 +170740552327,245,0 +170740552375,245,0 +170740552423,245,0 +170740552471,245,0 +170740552520,245,0 +170740552568,245,0 +170740552616,245,0 +170740552665,245,0 +170740552713,245,0 +170740552763,245,0 +170740552811,245,0 +170740552860,245,0 +170740552908,245,0 +170740552956,245,0 +170740553006,245,0 +170740553054,245,0 +170740553102,245,0 +170740553150,245,0 +170740553198,245,0 +170740553245,245,0 +170740553293,245,0 +170740553343,245,0 +170740553392,245,0 +170740553440,245,0 +170740553490,245,0 +170740553538,245,0 +170740553586,245,0 +170740553635,245,0 +170740553685,245,0 +170740553733,245,0 +170740553781,245,0 +170740553830,245,0 +170740553880,245,0 +170740553928,245,0 +170740553977,245,0 +170740554027,245,0 +170740554076,245,0 +170740554124,245,0 +170740554174,245,0 +170740554222,245,0 +170740554270,245,0 +170740554318,245,0 +170740554366,245,0 +170740554414,245,0 +170740554463,245,0 +170740554513,245,0 +170740554561,245,0 +170740554610,245,0 +170740554658,245,0 +170740554708,244,0 +170740554755,245,0 +170740554803,245,0 +170740554851,245,0 +170740554901,245,0 +170740554950,245,0 +170740554998,245,0 +170740555046,245,0 +170740555094,245,0 +170740555142,245,0 +170740555190,245,0 +170740555238,245,0 +170740555286,245,0 +170740555334,245,0 +170740555384,245,0 +170740555433,245,0 +170740555481,245,0 +170740555531,245,0 +170740555580,245,0 +170740555628,245,0 +170740555676,245,0 +170740555724,245,0 +170740555772,245,0 +170740555821,245,0 +170740555869,245,0 +170740555917,245,0 +170740555965,245,0 +170740556013,245,0 +170740556061,245,0 +170740556109,245,0 +170740556158,245,0 +170740556206,245,0 +170740556254,245,0 +170740556304,245,0 +170740556351,245,0 +170740556399,245,0 +170740556447,245,0 +170740556495,245,0 +170740556543,245,0 +170740556593,245,0 +170740556641,245,0 +170740556688,245,0 +170740556736,245,0 +170740556784,244,0 +170740556834,245,0 +170740556882,244,0 +170740556931,245,0 +170740556981,245,0 +170740557029,245,0 +170740557077,245,0 +170740557125,245,0 +170740557172,245,0 +170740557220,245,0 +170740557270,245,0 +170740557319,245,0 +170740557369,245,0 +170740557418,245,0 +170740557468,245,0 +170740557517,245,0 +170740557565,245,0 +170740557615,245,0 +170740557664,245,0 +170740557712,245,0 +170740557761,245,0 +170740557810,245,0 +170740557858,245,0 +170740557906,245,0 +170740557953,245,0 +170740558001,244,0 +170740558049,245,0 +170740558097,245,0 +170740558147,245,0 +170740558196,245,0 +170740558246,245,0 +170740558294,245,0 +170740558342,245,0 +170740558390,245,0 +170740558438,245,0 +170740558487,245,0 +170740558535,245,0 +170740558583,245,0 +170740558632,245,0 +170740558680,244,0 +170740558728,245,0 +170740558776,245,0 +170740558824,245,0 +170740558872,245,0 +170740558920,244,0 +170740558969,245,0 +170740559017,245,0 +170740559067,245,0 +170740559115,245,0 +170740559163,245,0 +170740559211,245,0 +170740559259,245,0 +170740559306,245,0 +170740559354,245,0 +170740559402,245,0 +170740559450,245,0 +170740559500,245,0 +170740559549,245,0 +170740559597,245,0 +170740559645,245,0 +170740559693,245,0 +170740559743,245,0 +170740559792,245,0 +170740559840,245,0 +170740559890,245,0 +170740559938,245,0 +170740559986,245,0 +170740560035,245,0 +170740560083,245,0 +170740560133,245,0 +170740560181,245,0 +170740560229,245,0 +170740560277,245,0 +170740560325,245,0 +170740560373,245,0 +170740560421,245,0 +170740560468,245,0 +170740560516,245,0 +170740560564,245,0 +170740560614,245,0 +170740560662,245,0 +170740560710,245,0 +170740560758,245,0 +170740560807,244,0 +170740560855,245,0 +170740560903,245,0 +170740560951,245,0 +170740560999,245,0 +170740561049,244,0 +170740561098,245,0 +170740561146,245,0 +170740561194,245,0 +170740561242,245,0 +170740561290,245,0 +170740561340,245,0 +170740561388,245,0 +170740561436,245,0 +170740561484,245,0 +170740561533,245,0 +170740561581,245,0 +170740561630,245,0 +170740561680,245,0 +170740561728,245,0 +170740561777,245,0 +170740561827,245,0 +170740561876,245,0 +170740561924,245,0 +170740561972,245,0 +170740562022,245,0 +170740562070,245,0 +170740562118,245,0 +170740562167,245,0 +170740562215,245,0 +170740562263,245,0 +170740562311,245,0 +170740562360,245,0 +170740562408,245,0 +170740562458,245,0 +170740562507,244,0 +170740562555,245,0 +170740562603,245,0 +170740562651,245,0 +170740562699,245,0 +170740562746,245,0 +170740562794,245,0 +170740562842,245,0 +170740562890,245,0 +170740562938,245,0 +170740562986,245,0 +170740563034,245,0 +170740563082,245,0 +170740563130,245,0 +170740563177,245,0 +170740563225,245,0 +170740563273,245,0 +170740563321,245,0 +170740563369,245,0 +170740563418,245,0 +170740563466,245,0 +170740563514,245,0 +170740563564,245,0 +170740563612,245,0 +170740563660,245,0 +170740563707,245,0 +170740563755,245,0 +170740563805,245,0 +170740563853,245,0 +170740563902,245,0 +170740563950,245,0 +170740563998,245,0 +170740564046,245,0 +170740564093,244,0 +170740564141,245,0 +170740564191,245,0 +170740564239,245,0 +170740564287,245,0 +170740564335,245,0 +170740564382,245,0 +170740564430,245,0 +170740564478,245,0 +170740564526,244,0 +170740564574,245,0 +170740564622,245,0 +170740564669,245,0 +170740564717,245,0 +170740564765,245,0 +170740564813,245,0 +170740564861,245,0 +170740564909,245,0 +170740564957,244,0 +170740565005,245,0 +170740565054,245,0 +170740565102,245,0 +170740565150,244,0 +170740565198,245,0 +170740565247,245,0 +170740565295,244,0 +170740565343,245,0 +170740565391,245,0 +170740565439,245,0 +170740565487,245,0 +170740565535,245,0 +170740565584,245,0 +170740565632,245,0 +170740565681,245,0 +170740565729,245,0 +170740565777,245,0 +170740565827,245,0 +170740565875,245,0 +170740565922,245,0 +170740565972,245,0 +170740566020,245,0 +170740566068,245,0 +170740566115,244,0 +170740566163,245,0 +170740566211,245,0 +170740566259,245,0 +170740566307,245,0 +170740566355,245,0 +170740566404,245,0 +170740566452,245,0 +170740566500,245,0 +170740566548,245,0 +170740566596,245,0 +170740566644,245,0 +170740566692,245,0 +170740566740,245,0 +170740566787,244,0 +170740566837,245,0 +170740566886,245,0 +170740566934,245,0 +170740566984,245,0 +170740567032,244,0 +170740567079,245,0 +170740567127,245,0 +170740567175,244,0 +170740567223,245,0 +170740567271,245,0 +170740567319,244,0 +170740567367,244,0 +170740567415,245,0 +170740567462,245,0 +170740567510,245,0 +170740567558,245,0 +170740567606,244,0 +170740567654,245,0 +170740567702,245,0 +170740567750,244,0 +170740567798,245,0 +170740567845,245,0 +170740567893,245,0 +170740567941,245,0 +170740567989,245,0 +170740568037,245,0 +170740568085,244,0 +170740568133,245,0 +170740568181,245,0 +170740568228,245,0 +170740568276,245,0 +170740568324,245,0 +170740568374,245,0 +170740568421,244,0 +170740568471,245,0 +170740568519,245,0 +170740568568,245,0 +170740568616,245,0 +170740568664,245,0 +170740568712,244,0 +170740568760,244,0 +170740568808,244,0 +170740568857,245,0 +170740568905,245,0 +170740568953,245,0 +170740569001,245,0 +170740569050,244,0 +170740569098,245,0 +170740569146,245,0 +170740569195,245,0 +170740569243,245,0 +170740569291,244,0 +170740569339,245,0 +170740569387,245,0 +170740569435,245,0 +170740569483,245,0 +170740569530,245,0 +170740569580,244,0 +170740569628,245,0 +170740569676,245,0 +170740569724,245,0 +170740569772,244,0 +170740569820,245,0 +170740569868,245,0 +170740569916,244,0 +170740569965,245,0 +170740570013,244,0 +170740570061,245,0 +170740570110,244,0 +170740570160,245,0 +170740570208,245,0 +170740570256,245,0 +170740570305,244,0 +170740570355,245,0 +170740570404,244,0 +170740570452,245,0 +170740570502,245,0 +170740570551,245,0 +170740570599,244,0 +170740570647,245,0 +170740570695,244,0 +170740570743,245,0 +170740570793,245,0 +170740570842,245,0 +170740570892,244,0 +170740570940,245,0 +170740570988,244,0 +170740571036,245,0 +170740571083,245,0 +170740571131,245,0 +170740571179,245,0 +170740571227,245,0 +170740571275,245,0 +170740571323,245,0 +170740571373,245,0 +170740571421,244,0 +170740571469,244,0 +170740571517,245,0 +170740571565,244,0 +170740571614,245,0 +170740571662,244,0 +170740571710,245,0 +170740571758,245,0 +170740571806,245,0 +170740571854,245,0 +170740571902,245,0 +170740571950,245,0 +170740572000,245,0 +170740572048,245,0 +170740572097,245,0 +170740572145,245,0 +170740572193,244,0 +170740572241,245,0 +170740572290,245,0 +170740572338,244,0 +170740572386,245,0 +170740572434,244,0 +170740572484,245,0 +170740572533,245,0 +170740572583,245,0 +170740572631,244,0 +170740572679,244,0 +170740572727,245,0 +170740572775,245,0 +170740572823,245,0 +170740572871,245,0 +170740572920,244,0 +170740572968,245,0 +170740573018,244,0 +170740573065,245,0 +170740573113,245,0 +170740573161,245,0 +170740573211,244,0 +170740573259,245,0 +170740573308,245,0 +170740573358,245,0 +170740573406,245,0 +170740573454,245,0 +170740573502,245,0 +170740573550,245,0 +170740573598,244,0 +170740573646,245,0 +170740573694,245,0 +170740573742,245,0 +170740573790,245,0 +170740573839,244,0 +170740573887,245,0 +170740573935,245,0 +170740573983,245,0 +170740574031,244,0 +170740574079,245,0 +170740574129,245,0 +170740574177,245,0 +170740574226,245,0 +170740574274,245,0 +170740574322,245,0 +170740574370,245,0 +170740574418,245,0 +170740574467,245,0 +170740574517,245,0 +170740574565,245,0 +170740574613,245,0 +170740574661,245,0 +170740574710,245,0 +170740574758,245,0 +170740574806,245,0 +170740574854,245,0 +170740574902,244,0 +170740574951,245,0 +170740574999,245,0 +170740575047,245,0 +170740575097,245,0 +170740575145,245,0 +170740575194,245,0 +170740575244,245,0 +170740575291,245,0 +170740575339,245,0 +170740575389,245,0 +170740575437,245,0 +170740575485,245,0 +170740575534,245,0 +170740575584,245,0 +170740575632,244,0 +170740575681,245,0 +170740575731,245,0 +170740575779,245,0 +170740575827,245,0 +170740575875,245,0 +170740575923,245,0 +170740575972,244,0 +170740576022,245,0 +170740576071,245,0 +170740576119,245,0 +170740576167,245,0 +170740576215,245,0 +170740576264,245,0 +170740576314,245,0 +170740576362,245,0 +170740576410,245,0 +170740576458,245,0 +170740576507,245,0 +170740576555,245,0 +170740576603,244,0 +170740576653,245,0 +170740576700,245,0 +170740576748,245,0 +170740576798,245,0 +170740576846,245,0 +170740576895,245,0 +170740576945,245,0 +170740576994,245,0 +170740577042,245,0 +170740577090,245,0 +170740577138,244,0 +170740577186,245,0 +170740577236,245,0 +170740577283,245,0 +170740577333,245,0 +170740577381,245,0 +170740577431,245,0 +170740577480,245,0 +170740577530,245,0 +170740577579,245,0 +170740577627,245,0 +170740577675,245,0 +170740577723,245,0 +170740577771,245,0 +170740577819,245,0 +170740577867,245,0 +170740577916,245,0 +170740577964,245,0 +170740578014,245,0 +170740578062,245,0 +170740578110,245,0 +170740578158,245,0 +170740578206,244,0 +170740578253,244,0 +170740578301,245,0 +170740578349,245,0 +170740578399,245,0 +170740578447,245,0 +170740578495,245,0 +170740578544,245,0 +170740578594,245,0 +170740578642,245,0 +170740578691,245,0 +170740578741,245,0 +170740578789,245,0 +170740578837,245,0 +170740578884,245,0 +170740578932,245,0 +170740578980,245,0 +170740579030,245,0 +170740579078,245,0 +170740579125,245,0 +170740579173,245,0 +170740579221,245,0 +170740579269,245,0 +170740579317,245,0 +170740579365,245,0 +170740579413,245,0 +170740579461,245,0 +170740579508,245,0 +170740579556,245,0 +170740579604,245,0 +170740579652,245,0 +170740579700,245,0 +170740579748,245,0 +170740579796,245,0 +170740579845,245,0 +170740579893,245,0 +170740579941,245,0 +170740579990,245,0 +170740580038,245,0 +170740580086,245,0 +170740580136,245,0 +170740580185,245,0 +170740580235,245,0 +170740580282,245,0 +170740580330,245,0 +170740580380,245,0 +170740580428,245,0 +170740580476,245,0 +170740580524,245,0 +170740580572,245,0 +170740580620,245,0 +170740580669,245,0 +170740580717,245,0 +170740580767,245,0 +170740580815,245,0 +170740580863,245,0 +170740580911,245,0 +170740580960,245,0 +170740581008,245,0 +170740581056,245,0 +170740581104,245,0 +170740581154,245,0 +170740581203,245,0 +170740581253,245,0 +170740581302,245,0 +170740581352,245,0 +170740581401,245,0 +170740581451,245,0 +170740581499,245,0 +170740581547,245,0 +170740581596,245,0 +170740581646,245,0 +170740581695,245,0 +170740581743,245,0 +170740581793,245,0 +170740581841,245,0 +170740581889,245,0 +170740581938,245,0 +170740581988,245,0 +170740582037,245,0 +170740582085,245,0 +170740582135,245,0 +170740582184,245,0 +170740582234,245,0 +170740582283,245,0 +170740582331,245,0 +170740582381,245,0 +170740582429,245,0 +170740582477,245,0 +170740582526,245,0 +170740582576,245,0 +170740582624,245,0 +170740582673,245,0 +170740582721,245,0 +170740582771,245,0 +170740582818,245,0 +170740582866,245,0 +170740582916,245,0 +170740582964,245,0 +170740583012,245,0 +170740583060,245,0 +170740583109,245,0 +170740583159,245,0 +170740583208,245,0 +170740583256,245,0 +170740583304,245,0 +170740583352,245,0 +170740583402,245,0 +170740583451,245,0 +170740583499,245,0 +170740583547,245,0 +170740583595,245,0 +170740583643,245,0 +170740583691,245,0 +170740583739,245,0 +170740583787,245,0 +170740583835,245,0 +170740583883,245,0 +170740583931,245,0 +170740583979,245,0 +170740584027,245,0 +170740584076,245,0 +170740584124,245,0 +170740584174,245,0 +170740584223,245,0 +170740584271,245,0 +170740584319,245,0 +170740584367,245,0 +170740584415,245,0 +170740584464,245,0 +170740584514,245,0 +170740584562,245,0 +170740584611,245,0 +170740584659,245,0 +170740584707,245,0 +170740584757,245,0 +170740584805,245,0 +170740584854,245,0 +170740584904,245,0 +170740584952,245,0 +170740585000,245,0 +170740585048,245,0 +170740585097,245,0 +170740585145,245,0 +170740585193,245,0 +170740585243,245,0 +170740585291,245,0 +170740585339,245,0 +170740585388,245,0 +170740585438,245,0 +170740585486,245,0 +170740585535,245,0 +170740585583,245,0 +170740585631,245,0 +170740585681,245,0 +170740585729,245,0 +170740585778,245,0 +170740585826,245,0 +170740585876,245,0 +170740585925,245,0 +170740585973,245,0 +170740586021,245,0 +170740586069,245,0 +170740586117,245,0 +170740586165,245,0 +170740586214,245,0 +170740586264,245,0 +170740586313,245,0 +170740586361,245,0 +170740586409,245,0 +170740586459,245,0 +170740586508,245,0 +170740586558,245,0 +170740586606,245,0 +170740586654,245,0 +170740586703,245,0 +170740586753,245,0 +170740586801,245,0 +170740586849,245,0 +170740586898,245,0 +170740586946,245,0 +170740586994,245,0 +170740587043,245,0 +170740587093,245,0 +170740587141,245,0 +170740587190,245,0 +170740587240,245,0 +170740587289,245,0 +170740587337,245,0 +170740587385,245,0 +170740587435,245,0 +170740587484,245,0 +170740587534,245,0 +170740587582,245,0 +170740587631,245,0 +170740587679,245,0 +170740587727,245,0 +170740587775,245,0 +170740587823,245,0 +170740587873,245,0 +170740587921,245,0 +170740587969,245,0 +170740588016,245,0 +170740588066,245,0 +170740588115,245,0 +170740588163,245,0 +170740588211,245,0 +170740588259,245,0 +170740588309,245,0 +170740588357,245,0 +170740588405,245,0 +170740588452,245,0 +170740588500,245,0 +170740588548,245,0 +170740588598,245,0 +170740588645,245,0 +170740588693,245,0 +170740588743,245,0 +170740588792,245,0 +170740588840,245,0 +170740588888,245,0 +170740588936,245,0 +170740588984,245,0 +170740589032,245,0 +170740589080,245,0 +170740589130,245,0 +170740589179,245,0 +170740589227,245,0 +170740589275,245,0 +170740589323,245,0 +170740589371,245,0 +170740589419,245,0 +170740589467,245,0 +170740589515,245,0 +170740589564,245,0 +170740589612,245,0 +170740589660,245,0 +170740589710,245,0 +170740589759,245,0 +170740589807,245,0 +170740589855,245,0 +170740589903,245,0 +170740589951,245,0 +170740590000,245,0 +170740590048,245,0 +170740590096,245,0 +170740590144,245,0 +170740590192,245,0 +170740590241,245,0 +170740590289,245,0 +170740590337,245,0 +170740590387,245,0 +170740590435,245,0 +170740590483,245,0 +170740590531,245,0 +170740590579,245,0 +170740590627,245,0 +170740590676,245,0 +170740590724,245,0 +170740590774,245,0 +170740590823,245,0 +170740590871,245,0 +170740590921,245,0 +170740590968,245,0 +170740591018,245,0 +170740591067,245,0 +170740591115,245,0 +170740591163,245,0 +170740591211,245,0 +170740591259,245,0 +170740591309,245,0 +170740591357,245,0 +170740591405,245,0 +170740591453,245,0 +170740591501,245,0 +170740591548,245,0 +170740591596,245,0 +170740591644,245,0 +170740591692,245,0 +170740591742,245,0 +170740591789,245,0 +170740591837,245,0 +170740591887,245,0 +170740591935,245,0 +170740591983,245,0 +170740592031,245,0 +170740592079,245,0 +170740592127,245,0 +170740592175,245,0 +170740592224,245,0 +170740592272,245,0 +170740592320,245,0 +170740592370,245,0 +170740592419,245,0 +170740592467,245,0 +170740592515,245,0 +170740592563,245,0 +170740592612,245,0 +170740592660,245,0 +170740592708,245,0 +170740592756,245,0 +170740592806,245,0 +170740592854,245,0 +170740592903,245,0 +170740592953,245,0 +170740593002,245,0 +170740593050,245,0 +170740593098,245,0 +170740593146,245,0 +170740593194,245,0 +170740593241,245,0 +170740593289,245,0 +170740593337,245,0 +170740593385,245,0 +170740593435,245,0 +170740593484,245,0 +170740593532,245,0 +170740593580,245,0 +170740593628,245,0 +170740593676,245,0 +170740593726,245,0 +170740593775,245,0 +170740593823,245,0 +170740593871,245,0 +170740593919,245,0 +170740593967,245,0 +170740594015,245,0 +170740594065,245,0 +170740594113,245,0 +170740594160,245,0 +170740594210,245,0 +170740594260,245,0 +170740594307,245,0 +170740594357,245,0 +170740594405,245,0 +170740594453,245,0 +170740594501,245,0 +170740594550,245,0 +170740594600,245,0 +170740594648,245,0 +170740594697,245,0 +170740594745,245,0 +170740594795,245,0 +170740594844,245,0 +170740594892,245,0 +170740594940,245,0 +170740594988,245,0 +170740595038,245,0 +170740595086,245,0 +170740595135,245,0 +170740595183,245,0 +170740595231,245,0 +170740595280,245,0 +170740595328,245,0 +170740595378,245,0 +170740595426,245,0 +170740595474,245,0 +170740595522,245,0 +170740595571,245,0 +170740595619,245,0 +170740595669,245,0 +170740595718,245,0 +170740595768,245,0 +170740595817,245,0 +170740595867,245,0 +170740595915,245,0 +170740595963,245,0 +170740596011,245,0 +170740596059,245,0 +170740596108,245,0 +170740596156,245,0 +170740596206,245,0 +170740596254,245,0 +170740596302,245,0 +170740596351,245,0 +170740596400,245,0 +170740596448,245,0 +170740596496,245,0 +170740596546,245,0 +170740596595,245,0 +170740596643,245,0 +170740596691,245,0 +170740596739,245,0 +170740596787,245,0 +170740596835,245,0 +170740596885,245,0 +170740596934,245,0 +170740596982,245,0 +170740597030,245,0 +170740597080,245,0 +170740597128,245,0 +170740597178,245,0 +170740597226,245,0 +170740597275,245,0 +170740597323,245,0 +170740597373,245,0 +170740597422,245,0 +170740597472,245,0 +170740597520,245,0 +170740597568,245,0 +170740597616,245,0 +170740597663,245,0 +170740597713,245,0 +170740597761,245,0 +170740597810,245,0 +170740597858,245,0 +170740597906,245,0 +170740597956,245,0 +170740598005,245,0 +170740598055,245,0 +170740598103,245,0 +170740598151,245,0 +170740598200,245,0 +170740598250,245,0 +170740598299,245,0 +170740598349,245,0 +170740598397,245,0 +170740598446,245,0 +170740598496,245,0 +170740598545,245,0 +170740598593,245,0 +170740598641,245,0 +170740598689,245,0 +170740598737,245,0 +170740598785,245,0 +170740598835,245,0 +170740598883,245,0 +170740598931,245,0 +170740598980,245,0 +170740599030,245,0 +170740599079,245,0 +170740599129,245,0 +170740599177,245,0 +170740599225,245,0 +170740599274,245,0 +170740599322,245,0 +170740599370,245,0 +170740599418,245,0 +170740599466,245,0 +170740599516,245,0 +170740599565,245,0 +170740599613,245,0 +170740599661,245,0 +170740599710,245,0 +170740599758,245,0 +170740599806,245,0 +170740599856,245,0 +170740599905,245,0 +170740599953,245,0 +170740600003,245,0 +170740600051,245,0 +170740600099,245,0 +170740600147,245,0 +170740600195,245,0 +170740600244,245,0 +170740600292,245,0 +170740600342,245,0 +170740600391,245,0 +170740600439,245,0 +170740600487,245,0 +170740600537,245,0 +170740600584,245,0 +170740600634,245,0 +170740600683,245,0 +170740600731,245,0 +170740600781,245,0 +170740600829,245,0 +170740600877,245,0 +170740600925,245,0 +170740600973,245,0 +170740601021,245,0 +170740601070,245,0 +170740601118,245,0 +170740601168,245,0 +170740601216,244,0 +170740601264,245,0 +170740601312,245,0 +170740601360,245,0 +170740601408,245,0 +170740601456,245,0 +170740601505,245,0 +170740601553,245,0 +170740601601,245,0 +170740601651,245,0 +170740601700,245,0 +170740601748,245,0 +170740601796,245,0 +170740601844,244,0 +170740601892,245,0 +170740601940,245,0 +170740601988,245,0 +170740602037,245,0 +170740602085,245,0 +170740602135,245,0 +170740602183,245,0 +170740602231,245,0 +170740602280,245,0 +170740602328,245,0 +170740602378,245,0 +170740602427,245,0 +170740602475,245,0 +170740602523,245,0 +170740602573,245,0 +170740602621,245,0 +170740602670,244,0 +170740602720,245,0 +170740602769,245,0 +170740602817,245,0 +170740602865,245,0 +170740602913,245,0 +170740602961,245,0 +170740603010,245,0 +170740603058,245,0 +170740603108,245,0 +170740603157,245,0 +170740603205,245,0 +170740603255,245,0 +170740603303,245,0 +170740603352,244,0 +170740603400,244,0 +170740603448,245,0 +170740603496,245,0 +170740603546,245,0 +170740603595,245,0 +170740603645,245,0 +170740603694,245,0 +170740603744,245,0 +170740603792,245,0 +170740603841,245,0 +170740603889,245,0 +170740603937,245,0 +170740603985,245,0 +170740604033,245,0 +170740604082,245,0 +170740604130,245,0 +170740604178,245,0 +170740604226,245,0 +170740604274,245,0 +170740604324,245,0 +170740604372,245,0 +170740604419,245,0 +170740604467,245,0 +170740604515,245,0 +170740604563,245,0 +170740604613,245,0 +170740604662,245,0 +170740604712,245,0 +170740604760,245,0 +170740604810,245,0 +170740604857,245,0 +170740604905,245,0 +170740604953,245,0 +170740605003,245,0 +170740605051,245,0 +170740605101,245,0 +170740605149,245,0 +170740605198,245,0 +170740605246,245,0 +170740605294,245,0 +170740605342,245,0 +170740605392,245,0 +170740605440,245,0 +170740605489,244,0 +170740605537,245,0 +170740605587,245,0 +170740605636,244,0 +170740605684,244,0 +170740605734,245,0 +170740605783,245,0 +170740605831,244,0 +170740605879,245,0 +170740605927,245,0 +170740605977,245,0 +170740606026,245,0 +170740606074,245,0 +170740606122,245,0 +170740606170,245,0 +170740606220,245,0 +170740606268,245,0 +170740606316,245,0 +170740606363,245,0 +170740606413,245,0 +170740606461,245,0 +170740606509,245,0 +170740606558,245,0 +170740606608,245,0 +170740606656,245,0 +170740606705,245,0 +170740606755,245,0 +170740606804,245,0 +170740606852,245,0 +170740606902,245,0 +170740606951,245,0 +170740607001,245,0 +170740607051,245,0 +170740607100,245,0 +170740607150,245,0 +170740607198,245,0 +170740607247,245,0 +170740607295,245,0 +170740607343,245,0 +170740607391,245,0 +170740607439,245,0 +170740607488,245,0 +170740607536,245,0 +170740607584,245,0 +170740607634,245,0 +170740607683,245,0 +170740607733,245,0 +170740607782,244,0 +170740607830,245,0 +170740607878,244,0 +170740607928,245,0 +170740607977,245,0 +170740608025,245,0 +170740608073,245,0 +170740608121,244,0 +170740608169,245,0 +170740608219,244,0 +170740608267,245,0 +170740608315,245,0 +170740608363,245,0 +170740608411,245,0 +170740608459,245,0 +170740608506,245,0 +170740608554,245,0 +170740608604,245,0 +170740608652,245,0 +170740608700,245,0 +170740608748,245,0 +170740608797,245,0 +170740608845,245,0 +170740608893,245,0 +170740608943,245,0 +170740608991,245,0 +170740609040,245,0 +170740609088,245,0 +170740609136,245,0 +170740609186,245,0 +170740609235,244,0 +170740609283,244,0 +170740609331,245,0 +170740609381,245,0 +170740609429,245,0 +170740609477,245,0 +170740609526,245,0 +170740609574,245,0 +170740609622,245,0 +170740609672,245,0 +170740609721,245,0 +170740609769,245,0 +170740609817,245,0 +170740609865,245,0 +170740609913,245,0 +170740609961,245,0 +170740610010,245,0 +170740610058,245,0 +170740610108,245,0 +170740610156,245,0 +170740610204,245,0 +170740610253,245,0 +170740610303,245,0 +170740610352,245,0 +170740610402,245,0 +170740610451,245,0 +170740610499,245,0 +170740610547,245,0 +170740610595,245,0 +170740610643,245,0 +170740610691,245,0 +170740610741,245,0 +170740610789,245,0 +170740610837,245,0 +170740610885,245,0 +170740610933,245,0 +170740610981,245,0 +170740611029,245,0 +170740611077,245,0 +170740611126,245,0 +170740611174,245,0 +170740611224,245,0 +170740611273,245,0 +170740611321,245,0 +170740611371,245,0 +170740611419,245,0 +170740611468,244,0 +170740611516,245,0 +170740611564,245,0 +170740611612,245,0 +170740611660,245,0 +170740611708,245,0 +170740611756,245,0 +170740611804,245,0 +170740611853,245,0 +170740611901,245,0 +170740611951,245,0 +170740611998,245,0 +170740612048,245,0 +170740612096,245,0 +170740612144,245,0 +170740612192,245,0 +170740612240,245,0 +170740612289,245,0 +170740612339,245,0 +170740612387,245,0 +170740612435,245,0 +170740612484,245,0 +170740612532,245,0 +170740612580,245,0 +170740612628,245,0 +170740612676,245,0 +170740612724,245,0 +170740612772,245,0 +170740612820,245,0 +170740612868,245,0 +170740612915,245,0 +170740612963,245,0 +170740613013,245,0 +170740613061,245,0 +170740613109,245,0 +170740613157,245,0 +170740613206,245,0 +170740613254,245,0 +170740613302,245,0 +170740613350,245,0 +170740613399,245,0 +170740613447,245,0 +170740613497,245,0 +170740613545,245,0 +170740613593,245,0 +170740613642,245,0 +170740613690,245,0 +170740613738,245,0 +170740613788,245,0 +170740613835,245,0 +170740613883,245,0 +170740613931,245,0 +170740613979,245,0 +170740614029,245,0 +170740614077,245,0 +170740614125,245,0 +170740614173,245,0 +170740614221,245,0 +170740614270,245,0 +170740614318,245,0 +170740614366,245,0 +170740614415,245,0 +170740614465,245,0 +170740614513,245,0 +170740614561,245,0 +170740614609,245,0 +170740614657,245,0 +170740614705,245,0 +170740614753,245,0 +170740614802,245,0 +170740614852,245,0 +170740614900,245,0 +170740614948,245,0 +170740614996,245,0 +170740615045,245,0 +170740615093,245,0 +170740615143,245,0 +170740615191,245,0 +170740615238,245,0 +170740615288,245,0 +170740615337,245,0 +170740615387,245,0 +170740615435,245,0 +170740615484,245,0 +170740615532,245,0 +170740615582,245,0 +170740615630,245,0 +170740615679,245,0 +170740615727,245,0 +170740615777,245,0 +170740615826,245,0 +170740615874,245,0 +170740615924,245,0 +170740615973,245,0 +170740616023,245,0 +170740616072,245,0 +170740616122,245,0 +170740616170,245,0 +170740616219,245,0 +170740616269,245,0 +170740616317,245,0 +170740616364,245,0 +170740616414,245,0 +170740616463,245,0 +170740616511,245,0 +170740616559,245,0 +170740616609,245,0 +170740616657,245,0 +170740616705,245,0 +170740616754,245,0 +170740616802,245,0 +170740616850,245,0 +170740616900,245,0 +170740616948,245,0 +170740616996,245,0 +170740617045,245,0 +170740617093,245,0 +170740617143,245,0 +170740617192,245,0 +170740617240,245,0 +170740617288,245,0 +170740617337,245,0 +170740617385,245,0 +170740617433,245,0 +170740617483,245,0 +170740617531,245,0 +170740617579,245,0 +170740617626,245,0 +170740617674,245,0 +170740617722,245,0 +170740617770,245,0 +170740617820,245,0 +170740617867,245,0 +170740617915,245,0 +170740617963,245,0 +170740618011,245,0 +170740618059,245,0 +170740618107,245,0 +170740618155,245,0 +170740618203,245,0 +170740618251,245,0 +170740618300,245,0 +170740618348,245,0 +170740618396,245,0 +170740618443,245,0 +170740618491,245,0 +170740618539,245,0 +170740618589,245,0 +170740618638,245,0 +170740618688,245,0 +170740618736,245,0 +170740618785,245,0 +170740618833,245,0 +170740618881,245,0 +170740618929,245,0 +170740618978,245,0 +170740619026,245,0 +170740619074,245,0 +170740619122,245,0 +170740619170,245,0 +170740619220,245,0 +170740619268,245,0 +170740619316,245,0 +170740619363,245,0 +170740619411,245,0 +170740619461,245,0 +170740619509,245,0 +170740619558,245,0 +170740619606,245,0 +170740619656,245,0 +170740619704,245,0 +170740619752,245,0 +170740619800,245,0 +170740619849,245,0 +170740619899,245,0 +170740619948,245,0 +170740619996,245,0 +170740620046,245,0 +170740620095,245,0 +170740620143,245,0 +170740620191,245,0 +170740620239,245,0 +170740620287,245,0 +170740620335,245,0 +170740620383,245,0 +170740620432,245,0 +170740620480,245,0 +170740620528,245,0 +170740620576,245,0 +170740620624,245,0 +170740620672,245,0 +170740620721,245,0 +170740620769,245,0 +170740620817,245,0 +170740620865,245,0 +170740620913,245,0 +170740620961,245,0 +170740621009,245,0 +170740621056,245,0 +170740621104,245,0 +170740621152,245,0 +170740621200,245,0 +170740621250,245,0 +170740621299,245,0 +170740621347,245,0 +170740621397,245,0 +170740621445,245,0 +170740621494,245,0 +170740621542,245,0 +170740621590,245,0 +170740621638,245,0 +170740621686,245,0 +170740621734,245,0 +170740621781,245,0 +170740621829,245,0 +170740621877,245,0 +170740621925,245,0 +170740621973,245,0 +170740622021,245,0 +170740622069,245,0 +170740622116,245,0 +170740622164,245,0 +170740622212,245,0 +170740622260,245,0 +170740622308,245,0 +170740622356,245,0 +170740622404,245,0 +170740622454,245,0 +170740622502,245,0 +170740622550,245,0 +170740622598,245,0 +170740622646,245,0 +170740622695,245,0 +170740622743,245,0 +170740622793,245,0 +170740622840,245,0 +170740622890,245,0 +170740622938,245,0 +170740622988,245,0 +170740623035,245,0 +170740623083,245,0 +170740623131,245,0 +170740623179,245,0 +170740623227,244,0 +170740623275,245,0 +170740623325,245,0 +170740623373,245,0 +170740623421,245,0 +170740623470,245,0 +170740623520,245,0 +170740623568,245,0 +170740623616,245,0 +170740623665,245,0 +170740623713,245,0 +170740623763,245,0 +170740623812,245,0 +170740623862,245,0 +170740623909,245,0 +170740623959,245,0 +170740624007,245,0 +170740624055,245,0 +170740624103,245,0 +170740624152,245,0 +170740624202,245,0 +170740624251,245,0 +170740624301,245,0 +170740624350,245,0 +170740624400,245,0 +170740624448,245,0 +170740624496,245,0 +170740624545,245,0 +170740624593,245,0 +170740624641,245,0 +170740624689,245,0 +170740624737,245,0 +170740624785,245,0 +170740624833,245,0 +170740624880,245,0 +170740624928,245,0 +170740624976,245,0 +170740625024,245,0 +170740625072,245,0 +170740625121,245,0 +170740625169,245,0 +170740625217,244,0 +170740625265,245,0 +170740625313,245,0 +170740625361,245,0 +170740625409,245,0 +170740625458,245,0 +170740625506,245,0 +170740625554,245,0 +170740625602,245,0 +170740625650,245,0 +170740625698,245,0 +170740625746,245,0 +170740625795,245,0 +170740625843,245,0 +170740625891,245,0 +170740625939,245,0 +170740625987,245,0 +170740626034,245,0 +170740626082,245,0 +170740626132,245,0 +170740626180,245,0 +170740626228,245,0 +170740626276,245,0 +170740626323,245,0 +170740626371,245,0 +170740626419,245,0 +170740626467,245,0 +170740626515,245,0 +170740626563,245,0 +170740626611,245,0 +170740626659,245,0 +170740626707,245,0 +170740626755,245,0 +170740626803,245,0 +170740626851,245,0 +170740626898,245,0 +170740626946,245,0 +170740626994,245,0 +170740627044,245,0 +170740627093,245,0 +170740627141,245,0 +170740627191,245,0 +170740627239,245,0 +170740627288,245,0 +170740627338,245,0 +170740627387,245,0 +170740627435,245,0 +170740627483,245,0 +170740627533,245,0 +170740627582,245,0 +170740627632,245,0 +170740627681,245,0 +170740627731,245,0 +170740627780,245,0 +170740627830,245,0 +170740627879,245,0 +170740627927,245,0 +170740627975,245,0 +170740628023,245,0 +170740628071,245,0 +170740628119,245,0 +170740628168,245,0 +170740628216,244,0 +170740628264,245,0 +170740628312,245,0 +170740628362,245,0 +170740628410,245,0 +170740628458,245,0 +170740628506,245,0 +170740628554,245,0 +170740628602,245,0 +170740628650,245,0 +170740628698,245,0 +170740628747,245,0 +170740628795,245,0 +170740628843,245,0 +170740628891,245,0 +170740628939,245,0 +170740628989,245,0 +170740629038,245,0 +170740629086,245,0 +170740629134,245,0 +170740629182,245,0 +170740629230,245,0 +170740629278,245,0 +170740629325,244,0 +170740629375,245,0 +170740629423,245,0 +170740629471,245,0 +170740629518,245,0 +170740629566,245,0 +170740629614,245,0 +170740629664,245,0 +170740629712,245,0 +170740629760,245,0 +170740629808,245,0 +170740629856,245,0 +170740629904,245,0 +170740629953,245,0 +170740630003,245,0 +170740630051,245,0 +170740630099,245,0 +170740630146,245,0 +170740630194,245,0 +170740630242,245,0 +170740630290,245,0 +170740630338,245,0 +170740630388,245,0 +170740630437,245,0 +170740630485,245,0 +170740630533,245,0 +170740630581,245,0 +170740630631,245,0 +170740630680,245,0 +170740630728,245,0 +170740630776,245,0 +170740630825,245,0 +170740630873,245,0 +170740630923,245,0 +170740630971,245,0 +170740631019,245,0 +170740631067,245,0 +170740631117,245,0 +170740631165,245,0 +170740631212,245,0 +170740631262,245,0 +170740631310,245,0 +170740631358,245,0 +170740631407,245,0 +170740631457,245,0 +170740631506,245,0 +170740631556,245,0 +170740631605,245,0 +170740631653,245,0 +170740631701,245,0 +170740631749,245,0 +170740631799,245,0 +170740631848,245,0 +170740631896,245,0 +170740631944,245,0 +170740631992,245,0 +170740632040,245,0 +170740632088,245,0 +170740632136,245,0 +170740632186,245,0 +170740632234,245,0 +170740632282,245,0 +170740632330,245,0 +170740632378,245,0 +170740632427,245,0 +170740632475,245,0 +170740632523,245,0 +170740632571,245,0 +170740632621,245,0 +170740632669,245,0 +170740632718,245,0 +170740632768,245,0 +170740632816,245,0 +170740632865,245,0 +170740632915,245,0 +170740632964,245,0 +170740633012,245,0 +170740633062,245,0 +170740633111,245,0 +170740633161,245,0 +170740633208,245,0 +170740633256,245,0 +170740633304,245,0 +170740633354,245,0 +170740633403,245,0 +170740633453,245,0 +170740633502,245,0 +170740633550,245,0 +170740633598,245,0 +170740633646,245,0 +170740633694,245,0 +170740633743,245,0 +170740633793,245,0 +170740633841,245,0 +170740633890,245,0 +170740633940,245,0 +170740633989,245,0 +170740634039,245,0 +170740634087,245,0 +170740634135,245,0 +170740634183,245,0 +170740634231,245,0 +170740634279,245,0 +170740634327,245,0 +170740634375,245,0 +170740634423,245,0 +170740634471,245,0 +170740634519,245,0 +170740634568,245,0 +170740634618,245,0 +170740634665,245,0 +170740634715,245,0 +170740634763,245,0 +170740634811,245,0 +170740634860,245,0 +170740634910,245,0 +170740634959,245,0 +170740635007,245,0 +170740635055,245,0 +170740635103,245,0 +170740635151,245,0 +170740635199,245,0 +170740635247,245,0 +170740635295,245,0 +170740635345,245,0 +170740635394,245,0 +170740635444,245,0 +170740635492,245,0 +170740635540,245,0 +170740635588,245,0 +170740635636,245,0 +170740635683,245,0 +170740635733,245,0 +170740635781,245,0 +170740635830,245,0 +170740635878,245,0 +170740635926,245,0 +170740635974,245,0 +170740636024,245,0 +170740636072,245,0 +170740636120,245,0 +170740636169,245,0 +170740636217,245,0 +170740636265,245,0 +170740636313,245,0 +170740636362,245,0 +170740636410,245,0 +170740636460,245,0 +170740636509,245,0 +170740636559,245,0 +170740636607,245,0 +170740636656,245,0 +170740636706,245,0 +170740636754,245,0 +170740636803,245,0 +170740636851,245,0 +170740636899,245,0 +170740636947,245,0 +170740636997,245,0 +170740637045,245,0 +170740637094,245,0 +170740637142,245,0 +170740637192,245,0 +170740637240,245,0 +170740637289,245,0 +170740637337,245,0 +170740637387,245,0 +170740637436,245,0 +170740637484,245,0 +170740637534,245,0 +170740637582,245,0 +170740637631,245,0 +170740637679,245,0 +170740637727,245,0 +170740637777,245,0 +170740637826,245,0 +170740637876,245,0 +170740637924,245,0 +170740637973,245,0 +170740638023,245,0 +170740638071,245,0 +170740638119,245,0 +170740638167,245,0 +170740638215,245,0 +170740638263,245,0 +170740638311,245,0 +170740638360,245,0 +170740638408,245,0 +170740638456,245,0 +170740638504,245,0 +170740638554,245,0 +170740638601,245,0 +170740638649,245,0 +170740638697,245,0 +170740638745,245,0 +170740638793,245,0 +170740638841,245,0 +170740638891,245,0 +170740638939,245,0 +170740638988,245,0 +170740639036,245,0 +170740639084,245,0 +170740639134,245,0 +170740639182,245,0 +170740639230,245,0 +170740639278,245,0 +170740639326,245,0 +170740639374,245,0 +170740639423,245,0 +170740639471,245,0 +170740639519,245,0 +170740639569,245,0 +170740639618,245,0 +170740639666,245,0 +170740639715,245,0 +170740639763,245,0 +170740639811,245,0 +170740639859,245,0 +170740639907,245,0 +170740639955,245,0 +170740640003,245,0 +170740640051,245,0 +170740640099,245,0 +170740640147,245,0 +170740640197,245,0 +170740640244,245,0 +170740640294,245,0 +170740640342,245,0 +170740640390,245,0 +170740640438,245,0 +170740640487,245,0 +170740640535,244,0 +170740640583,245,0 +170740640631,245,0 +170740640679,245,0 +170740640729,245,0 +170740640777,244,0 +170740640825,245,0 +170740640874,245,0 +170740640924,245,0 +170740640972,245,0 +170740641021,245,0 +170740641071,245,0 +170740641119,245,0 +170740641167,245,0 +170740641216,245,0 +170740641264,245,0 +170740641312,245,0 +170740641360,245,0 +170740641408,245,0 +170740641458,245,0 +170740641507,245,0 +170740641555,245,0 +170740641603,245,0 +170740641653,245,0 +170740641701,245,0 +170740641749,245,0 +170740641798,245,0 +170740641846,245,0 +170740641896,245,0 +170740641944,245,0 +170740641993,245,0 +170740642043,245,0 +170740642092,245,0 +170740642140,245,0 +170740642188,245,0 +170740642237,245,0 +170740642285,245,0 +170740642335,245,0 +170740642384,245,0 +170740642434,244,0 +170740642483,245,0 +170740642531,245,0 +170740642579,245,0 +170740642627,245,0 +170740642677,245,0 +170740642726,245,0 +170740642774,245,0 +170740642824,245,0 +170740642872,245,0 +170740642920,245,0 +170740642968,245,0 +170740643016,245,0 +170740643064,245,0 +170740643113,245,0 +170740643161,245,0 +170740643209,245,0 +170740643257,245,0 +170740643305,245,0 +170740643355,245,0 +170740643403,245,0 +170740643452,245,0 +170740643500,245,0 +170740643550,245,0 +170740643598,245,0 +170740643646,245,0 +170740643694,245,0 +170740643743,245,0 +170740643791,245,0 +170740643839,245,0 +170740643887,245,0 +170740643937,245,0 +170740643984,244,0 +170740644034,245,0 +170740644083,245,0 +170740644133,245,0 +170740644181,245,0 +170740644229,245,0 +170740644278,245,0 +170740644328,245,0 +170740644377,245,0 +170740644425,245,0 +170740644473,245,0 +170740644523,245,0 +170740644572,245,0 +170740644620,245,0 +170740644670,245,0 +170740644718,245,0 +170740644766,245,0 +170740644814,245,0 +170740644863,245,0 +170740644911,245,0 +170740644959,245,0 +170740645007,245,0 +170740645055,245,0 +170740645105,245,0 +170740645154,245,0 +170740645204,245,0 +170740645252,245,0 +170740645301,245,0 +170740645349,245,0 +170740645397,245,0 +170740645445,245,0 +170740645493,245,0 +170740645543,245,0 +170740645591,245,0 +170740645639,245,0 +170740645687,245,0 +170740645736,245,0 +170740645784,245,0 +170740645834,245,0 +170740645883,245,0 +170740645933,245,0 +170740645981,245,0 +170740646030,245,0 +170740646078,245,0 +170740646127,245,0 +170740646176,245,0 +170740646223,245,0 +170740646273,245,0 +170740646321,245,0 +170740646369,245,0 +170740646417,245,0 +170740646465,245,0 +170740646514,245,0 +170740646562,245,0 +170740646612,245,0 +170740646661,245,0 +170740646709,245,0 +170740646757,245,0 +170740646807,245,0 +170740646855,245,0 +170740646903,245,0 +170740646951,245,0 +170740646999,245,0 +170740647048,245,0 +170740647098,245,0 +170740647147,245,0 +170740647197,245,0 +170740647245,245,0 +170740647294,245,0 +170740647342,245,0 +170740647390,245,0 +170740647438,245,0 +170740647486,245,0 +170740647536,245,0 +170740647584,245,0 +170740647632,245,0 +170740647679,245,0 +170740647727,245,0 +170740647775,245,0 +170740647823,245,0 +170740647871,245,0 +170740647920,245,0 +170740647968,245,0 +170740648016,245,0 +170740648064,245,0 +170740648114,245,0 +170740648163,245,0 +170740648213,245,0 +170740648261,245,0 +170740648309,245,0 +170740648357,245,0 +170740648405,245,0 +170740648453,245,0 +170740648502,245,0 +170740648550,245,0 +170740648600,245,0 +170740648648,245,0 +170740648696,245,0 +170740648745,245,0 +170740648793,245,0 +170740648841,245,0 +170740648889,245,0 +170740648939,245,0 +170740648987,245,0 +170740649035,245,0 +170740649083,245,0 +170740649130,245,0 +170740649178,245,0 +170740649228,245,0 +170740649276,245,0 +170740649324,245,0 +170740649373,245,0 +170740649421,245,0 +170740649469,245,0 +170740649519,245,0 +170740649567,245,0 +170740649615,245,0 +170740649663,245,0 +170740649711,245,0 +170740649759,245,0 +170740649808,245,0 +170740649856,245,0 +170740649904,245,0 +170740649952,245,0 +170740650000,245,0 +170740650048,245,0 +170740650096,245,0 +170740650144,244,0 +170740650192,245,0 +170740650240,245,0 +170740650289,245,0 +170740650339,245,0 +170740650388,245,0 +170740650436,245,0 +170740650484,245,0 +170740650532,245,0 +170740650580,245,0 +170740650628,245,0 +170740650678,245,0 +170740650726,245,0 +170740650774,245,0 +170740650823,245,0 +170740650871,245,0 +170740650919,245,0 +170740650967,245,0 +170740651015,245,0 +170740651063,245,0 +170740651111,245,0 +170740651159,245,0 +170740651207,245,0 +170740651255,245,0 +170740651304,245,0 +170740651352,245,0 +170740651402,245,0 +170740651450,245,0 +170740651498,245,0 +170740651546,245,0 +170740651595,245,0 +170740651645,245,0 +170740651694,245,0 +170740651744,245,0 +170740651793,245,0 +170740651843,245,0 +170740651890,245,0 +170740651940,245,0 +170740651988,245,0 +170740652037,245,0 +170740652087,245,0 +170740652135,245,0 +170740652184,245,0 +170740652232,245,0 +170740652280,245,0 +170740652328,245,0 +170740652376,245,0 +170740652424,245,0 +170740652472,245,0 +170740652521,245,0 +170740652569,245,0 +170740652617,245,0 +170740652666,245,0 +170740652714,245,0 +170740652762,245,0 +170740652810,245,0 +170740652858,245,0 +170740652908,245,0 +170740652956,245,0 +170740653004,245,0 +170740653053,245,0 +170740653101,245,0 +170740653150,245,0 +170740653198,245,0 +170740653248,245,0 +170740653296,245,0 +170740653345,245,0 +170740653393,245,0 +170740653441,245,0 +170740653489,245,0 +170740653539,244,0 +170740653588,245,0 +170740653636,245,0 +170740653684,245,0 +170740653732,245,0 +170740653780,245,0 +170740653828,245,0 +170740653876,245,0 +170740653924,245,0 +170740653972,245,0 +170740654020,245,0 +170740654068,245,0 +170740654118,245,0 +170740654165,245,0 +170740654215,245,0 +170740654265,245,0 +170740654313,245,0 +170740654361,245,0 +170740654409,245,0 +170740654458,245,0 +170740654506,245,0 +170740654554,245,0 +170740654603,245,0 +170740654651,245,0 +170740654701,244,0 +170740654749,245,0 +170740654797,245,0 +170740654845,245,0 +170740654893,245,0 +170740654942,245,0 +170740654990,245,0 +170740655038,245,0 +170740655086,245,0 +170740655134,245,0 +170740655182,245,0 +170740655232,245,0 +170740655280,245,0 +170740655329,245,0 +170740655377,245,0 +170740655425,245,0 +170740655475,245,0 +170740655523,245,0 +170740655571,245,0 +170740655620,245,0 +170740655668,245,0 +170740655716,245,0 +170740655764,245,0 +170740655812,245,0 +170740655860,245,0 +170740655909,245,0 +170740655957,245,0 +170740656005,245,0 +170740656053,245,0 +170740656103,244,0 +170740656151,245,0 +170740656200,245,0 +170740656248,245,0 +170740656296,245,0 +170740656346,245,0 +170740656394,245,0 +170740656443,245,0 +170740656491,245,0 +170740656539,245,0 +170740656587,245,0 +170740656635,245,0 +170740656683,245,0 +170740656732,245,0 +170740656781,245,0 +170740656828,245,0 +170740656878,245,0 +170740656926,245,0 +170740656974,245,0 +170740657023,244,0 +170740657073,245,0 +170740657121,245,0 +170740657170,245,0 +170740657218,245,0 +170740657268,245,0 +170740657316,245,0 +170740657366,245,0 +170740657413,245,0 +170740657461,245,0 +170740657511,245,0 +170740657560,245,0 +170740657610,245,0 +170740657658,245,0 +170740657707,245,0 +170740657755,245,0 +170740657805,245,0 +170740657853,245,0 +170740657902,245,0 +170740657950,245,0 +170740658000,245,0 +170740658048,245,0 +170740658096,244,0 +170740658145,245,0 +170740658193,245,0 +170740658243,245,0 +170740658291,245,0 +170740658339,245,0 +170740658388,245,0 +170740658436,244,0 +170740658484,245,0 +170740658534,245,0 +170740658582,245,0 +170740658631,245,0 +170740658681,245,0 +170740658730,244,0 +170740658780,245,0 +170740658829,245,0 +170740658879,245,0 +170740658927,245,0 +170740658976,245,0 +170740659024,245,0 +170740659072,245,0 +170740659120,245,0 +170740659168,245,0 +170740659218,245,0 +170740659266,245,0 +170740659314,245,0 +170740659363,245,0 +170740659413,245,0 +170740659462,244,0 +170740659510,245,0 +170740659560,244,0 +170740659608,244,0 +170740659656,245,0 +170740659704,245,0 +170740659752,245,0 +170740659800,245,0 +170740659849,245,0 +170740659897,245,0 +170740659945,245,0 +170740659993,245,0 +170740660041,244,0 +170740660089,245,0 +170740660137,245,0 +170740660186,245,0 +170740660236,245,0 +170740660284,245,0 +170740660332,245,0 +170740660382,245,0 +170740660430,245,0 +170740660478,245,0 +170740660526,245,0 +170740660574,244,0 +170740660622,245,0 +170740660671,245,0 +170740660719,245,0 +170740660769,245,0 +170740660817,245,0 +170740660866,245,0 +170740660914,244,0 +170740660962,245,0 +170740661010,244,0 +170740661058,245,0 +170740661106,245,0 +170740661155,245,0 +170740661203,245,0 +170740661253,245,0 +170740661301,245,0 +170740661351,245,0 +170740661398,244,0 +170740661446,245,0 +170740661494,245,0 +170740661542,244,0 +170740661592,245,0 +170740661641,245,0 +170740661691,244,0 +170740661739,245,0 +170740661788,245,0 +170740661838,245,0 +170740661886,245,0 +170740661934,245,0 +170740661982,244,0 +170740662030,245,0 +170740662079,245,0 +170740662127,245,0 +170740662175,245,0 +170740662223,245,0 +170740662271,245,0 +170740662319,245,0 +170740662367,245,0 +170740662415,244,0 +170740662463,244,0 +170740662512,245,0 +170740662560,245,0 +170740662608,244,0 +170740662656,245,0 +170740662704,245,0 +170740662752,245,0 +170740662802,245,0 +170740662850,245,0 +170740662898,245,0 +170740662947,245,0 +170740662997,245,0 +170740663045,245,0 +170740663093,245,0 +170740663142,245,0 +170740663190,245,0 +170740663240,245,0 +170740663289,244,0 +170740663337,245,0 +170740663385,245,0 +170740663435,245,0 +170740663483,245,0 +170740663532,245,0 +170740663580,245,0 +170740663630,245,0 +170740663678,245,0 +170740663727,244,0 +170740663775,244,0 +170740663823,244,0 +170740663871,245,0 +170740663921,245,0 +170740663968,245,0 +170740664018,245,0 +170740664066,245,0 +170740664116,245,0 +170740664163,245,0 +170740664213,245,0 +170740664261,245,0 +170740664310,245,0 +170740664358,244,0 +170740664408,245,0 +170740664456,245,0 +170740664505,245,0 +170740664553,245,0 +170740664603,245,0 +170740664652,245,0 +170740664700,245,0 +170740664748,245,0 +170740664796,245,0 +170740664844,245,0 +170740664892,245,0 +170740664940,245,0 +170740664989,245,0 +170740665039,245,0 +170740665086,245,0 +170740665134,245,0 +170740665184,245,0 +170740665233,245,0 +170740665283,245,0 +170740665332,245,0 +170740665380,245,0 +170740665428,245,0 +170740665476,245,0 +170740665524,245,0 +170740665573,245,0 +170740665621,245,0 +170740665669,245,0 +170740665717,245,0 +170740665765,245,0 +170740665813,245,0 +170740665861,245,0 +170740665909,245,0 +170740665958,245,0 +170740666006,245,0 +170740666054,245,0 +170740666102,244,0 +170740666150,245,0 +170740666200,245,0 +170740666248,245,0 +170740666297,245,0 +170740666347,245,0 +170740666395,245,0 +170740666442,245,0 +170740666492,245,0 +170740666540,245,0 +170740666588,245,0 +170740666638,244,0 +170740666686,244,0 +170740666734,245,0 +170740666781,245,0 +170740666829,245,0 +170740666877,245,0 +170740666925,245,0 +170740666973,244,0 +170740667023,244,0 +170740667071,244,0 +170740667120,244,0 +170740667168,244,0 +170740667218,245,0 +170740667267,245,0 +170740667317,245,0 +170740667366,245,0 +170740667414,244,0 +170740667462,245,0 +170740667510,245,0 +170740667559,245,0 +170740667607,244,0 +170740667655,245,0 +170740667705,244,0 +170740667753,245,0 +170740667801,245,0 +170740667848,245,0 +170740667896,245,0 +170740667946,245,0 +170740667994,245,0 +170740668043,245,0 +170740668091,244,0 +170740668141,244,0 +170740668189,245,0 +170740668237,245,0 +170740668286,245,0 +170740668336,244,0 +170740668385,245,0 +170740668433,245,0 +170740668483,245,0 +170740668531,245,0 +170740668579,245,0 +170740668627,245,0 +170740668676,245,0 +170740668724,245,0 +170740668774,245,0 +170740668822,245,0 +170740668869,244,0 +170740668917,244,0 +170740668965,245,0 +170740669013,245,0 +170740669061,245,0 +170740669109,245,0 +170740669159,244,0 +170740669207,245,0 +170740669256,245,0 +170740669304,245,0 +170740669352,245,0 +170740669400,245,0 +170740669449,245,0 +170740669497,245,0 +170740669545,245,0 +170740669593,245,0 +170740669641,245,0 +170740669689,244,0 +170740669737,244,0 +170740669785,245,0 +170740669833,245,0 +170740669882,245,0 +170740669932,244,0 +170740669981,245,0 +170740670031,245,0 +170740670079,245,0 +170740670128,245,0 +170740670178,245,0 +170740670226,245,0 +170740670274,245,0 +170740670322,245,0 +170740670370,245,0 +170740670419,245,0 +170740670469,245,0 +170740670518,245,0 +170740670566,245,0 +170740670614,245,0 +170740670664,244,0 +170740670712,244,0 +170740670759,245,0 +170740670808,245,0 +170740670857,245,0 +170740670905,245,0 +170740670955,245,0 +170740671003,244,0 +170740671051,245,0 +170740671098,245,0 +170740671146,245,0 +170740671194,245,0 +170740671242,245,0 +170740671292,245,0 +170740671340,244,0 +170740671389,245,0 +170740671439,245,0 +170740671487,245,0 +170740671535,245,0 +170740671583,245,0 +170740671631,245,0 +170740671680,245,0 +170740671728,245,0 +170740671776,245,0 +170740671824,245,0 +170740671872,245,0 +170740671920,245,0 +170740671968,245,0 +170740672018,245,0 +170740672066,245,0 +170740672114,245,0 +170740672162,245,0 +170740672211,245,0 +170740672259,245,0 +170740672307,245,0 +170740672357,245,0 +170740672405,245,0 +170740672454,245,0 +170740672502,245,0 +170740672552,245,0 +170740672600,245,0 +170740672649,245,0 +170740672697,245,0 +170740672745,245,0 +170740672793,245,0 +170740672841,245,0 +170740672889,245,0 +170740672937,245,0 +170740672984,244,0 +170740673034,245,0 +170740673082,245,0 +170740673131,245,0 +170740673179,245,0 +170740673227,244,0 +170740673275,244,0 +170740673323,245,0 +170740673371,244,0 +170740673419,245,0 +170740673467,245,0 +170740673514,245,0 +170740673562,245,0 +170740673610,245,0 +170740673658,245,0 +170740673706,245,0 +170740673754,244,0 +170740673802,245,0 +170740673850,245,0 +170740673897,245,0 +170740673947,245,0 +170740673995,245,0 +170740674044,245,0 +170740674092,245,0 +170740674140,245,0 +170740674188,244,0 +170740674236,245,0 +170740674284,245,0 +170740674333,245,0 +170740674381,244,0 +170740674429,245,0 +170740674477,245,0 +170740674525,245,0 +170740674574,245,0 +170740674622,244,0 +170740674670,245,0 +170740674718,245,0 +170740674768,245,0 +170740674816,245,0 +170740674865,244,0 +170740674915,244,0 +170740674964,245,0 +170740675014,245,0 +170740675062,244,0 +170740675110,245,0 +170740675159,245,0 +170740675207,245,0 +170740675257,244,0 +170740675306,245,0 +170740675354,245,0 +170740675402,245,0 +170740675452,245,0 +170740675500,245,0 +170740675549,245,0 +170740675599,244,0 +170740675646,245,0 +170740675696,244,0 +170740675744,244,0 +170740675792,244,0 +170740675841,245,0 +170740675889,245,0 +170740675937,245,0 +170740675987,245,0 +170740676036,245,0 +170740676084,245,0 +170740676132,245,0 +170740676180,245,0 +170740676228,245,0 +170740676277,245,0 +170740676325,245,0 +170740676373,245,0 +170740676423,245,0 +170740676472,244,0 +170740676520,245,0 +170740676570,245,0 +170740676618,245,0 +170740676666,245,0 +170740676714,245,0 +170740676762,245,0 +170740676811,245,0 +170740676859,245,0 +170740676909,245,0 +170740676957,245,0 +170740677005,245,0 +170740677054,244,0 +170740677102,245,0 +170740677150,245,0 +170740677200,245,0 +170740677248,245,0 +170740677297,245,0 +170740677345,245,0 +170740677393,245,0 +170740677441,245,0 +170740677490,245,0 +170740677538,245,0 +170740677588,245,0 +170740677637,244,0 +170740677685,245,0 +170740677733,244,0 +170740677783,245,0 +170740677831,245,0 +170740677880,244,0 +170740677928,245,0 +170740677976,245,0 +170740678024,245,0 +170740678074,245,0 +170740678122,245,0 +170740678170,245,0 +170740678218,245,0 +170740678267,245,0 +170740678317,245,0 +170740678366,245,0 +170740678414,245,0 +170740678464,245,0 +170740678512,244,0 +170740678561,245,0 +170740678609,245,0 +170740678657,245,0 +170740678707,245,0 +170740678754,245,0 +170740678804,245,0 +170740678852,245,0 +170740678900,245,0 +170740678950,245,0 +170740678997,245,0 +170740679045,245,0 +170740679093,245,0 +170740679143,245,0 +170740679191,245,0 +170740679240,245,0 +170740679288,245,0 +170740679338,245,0 +170740679386,245,0 +170740679434,245,0 +170740679482,245,0 +170740679531,245,0 +170740679579,245,0 +170740679627,245,0 +170740679675,245,0 +170740679725,245,0 +170740679773,245,0 +170740679821,245,0 +170740679869,245,0 +170740679918,245,0 +170740679966,245,0 +170740680015,245,0 +170740680065,245,0 +170740680113,245,0 +170740680162,245,0 +170740680212,245,0 +170740680260,245,0 +170740680308,245,0 +170740680356,245,0 +170740680405,245,0 +170740680455,245,0 +170740680504,245,0 +170740680552,245,0 +170740680600,245,0 +170740680648,245,0 +170740680696,244,0 +170740680746,245,0 +170740680795,245,0 +170740680843,245,0 +170740680891,245,0 +170740680941,245,0 +170740680990,245,0 +170740681038,245,0 +170740681086,245,0 +170740681134,245,0 +170740681182,245,0 +170740681230,245,0 +170740681279,245,0 +170740681327,245,0 +170740681375,245,0 +170740681425,245,0 +170740681473,245,0 +170740681521,245,0 +170740681569,245,0 +170740681617,244,0 +170740681666,245,0 +170740681714,245,0 +170740681762,245,0 +170740681812,245,0 +170740681860,245,0 +170740681909,245,0 +170740681957,245,0 +170740682005,245,0 +170740682053,245,0 +170740682101,245,0 +170740682149,244,0 +170740682197,245,0 +170740682245,245,0 +170740682293,245,0 +170740682341,245,0 +170740682389,245,0 +170740682437,245,0 +170740682485,245,0 +170740682533,245,0 +170740682581,245,0 +170740682630,244,0 +170740682678,245,0 +170740682726,244,0 +170740682774,245,0 +170740682822,244,0 +170740682870,244,0 +170740682918,245,0 +170740682966,245,0 +170740683015,245,0 +170740683065,245,0 +170740683113,245,0 +170740683161,245,0 +170740683209,245,0 +170740683258,245,0 +170740683306,245,0 +170740683354,245,0 +170740683403,245,0 +170740683451,245,0 +170740683501,245,0 +170740683550,245,0 +170740683600,245,0 +170740683648,245,0 +170740683696,245,0 +170740683744,244,0 +170740683791,245,0 +170740683839,245,0 +170740683887,244,0 +170740683935,245,0 +170740683983,245,0 +170740684031,245,0 +170740684079,245,0 +170740684127,244,0 +170740684175,245,0 +170740684222,245,0 +170740684270,245,0 +170740684318,245,0 +170740684366,245,0 +170740684414,245,0 +170740684462,245,0 +170740684510,245,0 +170740684558,245,0 +170740684605,245,0 +170740684653,245,0 +170740684701,245,0 +170740684749,245,0 +170740684797,245,0 +170740684845,245,0 +170740684893,245,0 +170740684941,245,0 +170740684990,245,0 +170740685038,245,0 +170740685086,245,0 +170740685134,245,0 +170740685182,245,0 +170740685231,245,0 +170740685279,244,0 +170740685327,245,0 +170740685375,245,0 +170740685423,245,0 +170740685471,245,0 +170740685520,244,0 +170740685568,245,0 +170740685616,244,0 +170740685664,245,0 +170740685714,244,0 +170740685762,245,0 +170740685810,245,0 +170740685858,244,0 +170740685906,245,0 +170740685955,245,0 +170740686003,245,0 +170740686051,245,0 +170740686099,245,0 +170740686147,245,0 +170740686195,244,0 +170740686243,245,0 +170740686290,245,0 +170740686338,244,0 +170740686386,244,0 +170740686434,245,0 +170740686484,245,0 +170740686532,245,0 +170740686580,245,0 +170740686629,245,0 +170740686677,245,0 +170740686725,244,0 +170740686773,244,0 +170740686821,245,0 +170740686869,244,0 +170740686918,245,0 +170740686966,245,0 +170740687014,245,0 +170740687062,245,0 +170740687110,245,0 +170740687158,245,0 +170740687207,244,0 +170740687255,245,0 +170740687305,245,0 +170740687353,245,0 +170740687401,244,0 +170740687449,245,0 +170740687497,245,0 +170740687545,245,0 +170740687593,245,0 +170740687641,245,0 +170740687690,245,0 +170740687740,245,0 +170740687788,244,0 +170740687836,245,0 +170740687883,245,0 +170740687931,245,0 +170740687979,245,0 +170740688029,245,0 +170740688077,245,0 +170740688125,245,0 +170740688173,245,0 +170740688222,245,0 +170740688270,245,0 +170740688318,244,0 +170740688366,244,0 +170740688413,245,0 +170740688461,245,0 +170740688509,245,0 +170740688557,245,0 +170740688605,245,0 +170740688653,244,0 +170740688701,245,0 +170740688748,245,0 +170740688796,245,0 +170740688844,245,0 +170740688892,245,0 +170740688940,245,0 +170740688988,245,0 +170740689036,244,0 +170740689086,245,0 +170740689133,244,0 +170740689183,245,0 +170740689231,245,0 +170740689279,245,0 +170740689329,245,0 +170740689376,245,0 +170740689424,244,0 +170740689472,245,0 +170740689520,244,0 +170740689568,245,0 +170740689618,244,0 +170740689667,245,0 +170740689717,245,0 +170740689765,245,0 +170740689813,245,0 +170740689861,245,0 +170740689909,245,0 +170740689956,245,0 +170740690006,245,0 +170740690054,245,0 +170740690102,245,0 +170740690151,245,0 +170740690199,245,0 +170740690247,245,0 +170740690295,245,0 +170740690343,245,0 +170740690391,244,0 +170740690440,245,0 +170740690488,245,0 +170740690536,245,0 +170740690586,245,0 +170740690634,245,0 +170740690683,244,0 +170740690733,245,0 +170740690781,245,0 +170740690829,245,0 +170740690878,245,0 +170740690928,245,0 +170740690977,245,0 +170740691027,245,0 +170740691076,245,0 +170740691126,245,0 +170740691174,245,0 +170740691222,245,0 +170740691271,245,0 +170740691319,245,0 +170740691367,245,0 +170740691417,245,0 +170740691465,245,0 +170740691513,245,0 +170740691561,245,0 +170740691609,245,0 +170740691657,245,0 +170740691705,244,0 +170740691753,245,0 +170740691802,245,0 +170740691852,244,0 +170740691899,245,0 +170740691947,245,0 +170740691997,245,0 +170740692045,245,0 +170740692093,245,0 +170740692142,245,0 +170740692190,245,0 +170740692238,245,0 +170740692288,245,0 +170740692337,245,0 +170740692385,245,0 +170740692433,245,0 +170740692483,245,0 +170740692531,245,0 +170740692580,245,0 +170740692628,245,0 +170740692676,245,0 +170740692726,245,0 +170740692774,244,0 +170740692823,245,0 +170740692873,245,0 +170740692922,245,0 +170740692970,244,0 +170740693018,245,0 +170740693066,244,0 +170740693114,244,0 +170740693162,245,0 +170740693210,245,0 +170740693258,245,0 +170740693306,245,0 +170740693354,245,0 +170740693402,245,0 +170740693450,245,0 +170740693498,244,0 +170740693547,245,0 +170740693595,245,0 +170740693645,245,0 +170740693693,245,0 +170740693741,245,0 +170740693790,245,0 +170740693838,245,0 +170740693888,244,0 +170740693936,245,0 +170740693985,245,0 +170740694035,245,0 +170740694083,245,0 +170740694132,244,0 +170740694182,245,0 +170740694230,245,0 +170740694278,245,0 +170740694326,245,0 +170740694374,245,0 +170740694421,245,0 +170740694471,245,0 +170740694521,245,0 +170740694570,245,0 +170740694618,245,0 +170740694667,245,0 +170740694715,245,0 +170740694763,245,0 +170740694813,245,0 +170740694862,245,0 +170740694910,245,0 +170740694960,245,0 +170740695009,245,0 +170740695057,245,0 +170740695107,245,0 +170740695155,245,0 +170740695203,245,0 +170740695251,245,0 +170740695299,245,0 +170740695347,245,0 +170740695395,245,0 +170740695443,244,0 +170740695492,245,0 +170740695540,245,0 +170740695588,245,0 +170740695636,245,0 +170740695686,245,0 +170740695735,245,0 +170740695783,244,0 +170740695831,245,0 +170740695879,245,0 +170740695927,245,0 +170740695975,245,0 +170740696023,245,0 +170740696071,245,0 +170740696120,245,0 +170740696168,245,0 +170740696218,245,0 +170740696266,245,0 +170740696315,245,0 +170740696363,245,0 +170740696413,245,0 +170740696461,245,0 +170740696509,245,0 +170740696557,245,0 +170740696604,245,0 +170740696652,245,0 +170740696700,245,0 +170740696748,245,0 +170740696796,245,0 +170740696845,245,0 +170740696893,245,0 +170740696941,245,0 +170740696989,245,0 +170740697038,245,0 +170740697086,245,0 +170740697136,245,0 +170740697184,245,0 +170740697232,245,0 +170740697281,245,0 +170740697329,245,0 +170740697379,245,0 +170740697428,245,0 +170740697478,245,0 +170740697525,245,0 +170740697575,245,0 +170740697623,245,0 +170740697672,245,0 +170740697720,245,0 +170740697768,245,0 +170740697816,245,0 +170740697866,244,0 +170740697914,245,0 +170740697962,245,0 +170740698011,245,0 +170740698061,245,0 +170740698109,244,0 +170740698157,245,0 +170740698206,245,0 +170740698254,245,0 +170740698304,245,0 +170740698352,245,0 +170740698400,245,0 +170740698448,245,0 +170740698497,245,0 +170740698545,245,0 +170740698595,245,0 +170740698643,245,0 +170740698691,245,0 +170740698739,245,0 +170740698786,245,0 +170740698836,245,0 +170740698884,245,0 +170740698932,245,0 +170740698981,245,0 +170740699029,245,0 +170740699077,245,0 +170740699125,245,0 +170740699173,245,0 +170740699221,245,0 +170740699271,245,0 +170740699319,245,0 +170740699367,245,0 +170740699416,245,0 +170740699466,245,0 +170740699515,245,0 +170740699565,245,0 +170740699613,245,0 +170740699662,245,0 +170740699710,245,0 +170740699758,245,0 +170740699806,245,0 +170740699854,245,0 +170740699903,245,0 +170740699953,245,0 +170740700001,245,0 +170740700049,245,0 +170740700098,245,0 +170740700148,245,0 +170740700197,245,0 +170740700247,245,0 +170740700295,245,0 +170740700343,245,0 +170740700392,245,0 +170740700440,245,0 +170740700488,245,0 +170740700536,245,0 +170740700584,245,0 +170740700632,245,0 +170740700682,245,0 +170740700731,245,0 +170740700781,245,0 +170740700830,245,0 +170740700880,245,0 +170740700928,245,0 +170740700977,245,0 +170740701025,245,0 +170740701074,245,0 +170740701124,245,0 +170740701172,245,0 +170740701220,245,0 +170740701268,245,0 +170740701316,245,0 +170740701365,245,0 +170740701413,245,0 +170740701463,245,0 +170740701511,245,0 +170740701560,245,0 +170740701608,245,0 +170740701658,245,0 +170740701707,245,0 +170740701755,245,0 +170740701803,245,0 +170740701851,245,0 +170740701899,245,0 +170740701949,245,0 +170740701998,245,0 +170740702046,245,0 +170740702095,245,0 +170740702145,245,0 +170740702193,245,0 +170740702241,245,0 +170740702289,245,0 +170740702337,245,0 +170740702386,245,0 +170740702436,245,0 +170740702484,245,0 +170740702533,245,0 +170740702583,245,0 +170740702631,245,0 +170740702679,245,0 +170740702727,245,0 +170740702775,245,0 +170740702822,245,0 +170740702872,245,0 +170740702921,245,0 +170740702969,245,0 +170740703017,245,0 +170740703065,245,0 +170740703115,245,0 +170740703163,245,0 +170740703211,245,0 +170740703259,245,0 +170740703307,245,0 +170740703355,245,0 +170740703403,245,0 +170740703452,244,0 +170740703502,245,0 +170740703550,245,0 +170740703598,245,0 +170740703646,245,0 +170740703694,245,0 +170740703742,245,0 +170740703791,245,0 +170740703839,245,0 +170740703887,245,0 +170740703935,245,0 +170740703983,245,0 +170740704032,245,0 +170740704080,245,0 +170740704128,245,0 +170740704176,245,0 +170740704224,245,0 +170740704272,245,0 +170740704321,244,0 +170740704369,245,0 +170740704417,245,0 +170740704467,245,0 +170740704516,245,0 +170740704564,245,0 +170740704612,245,0 +170740704660,245,0 +170740704710,245,0 +170740704759,245,0 +170740704809,245,0 +170740704858,245,0 +170740704908,245,0 +170740704957,245,0 +170740705005,245,0 +170740705055,245,0 +170740705103,245,0 +170740705151,245,0 +170740705200,245,0 +170740705248,245,0 +170740705296,245,0 +170740705344,245,0 +170740705394,245,0 +170740705441,245,0 +170740705491,245,0 +170740705541,245,0 +170740705590,245,0 +170740705638,245,0 +170740705686,245,0 +170740705735,245,0 +170740705783,244,0 +170740705831,245,0 +170740705879,245,0 +170740705927,245,0 +170740705975,245,0 +170740706025,245,0 +170740706073,245,0 +170740706122,245,0 +170740706170,245,0 +170740706220,245,0 +170740706269,245,0 +170740706319,245,0 +170740706367,245,0 +170740706415,245,0 +170740706463,245,0 +170740706511,245,0 +170740706560,245,0 +170740706610,245,0 +170740706659,245,0 +170740706707,245,0 +170740706755,245,0 +170740706803,245,0 +170740706851,245,0 +170740706899,245,0 +170740706947,245,0 +170740706996,245,0 +170740707046,245,0 +170740707095,245,0 +170740707145,245,0 +170740707194,245,0 +170740707242,244,0 +170740707290,244,0 +170740707338,245,0 +170740707386,245,0 +170740707434,245,0 +170740707482,245,0 +170740707530,245,0 +170740707578,245,0 +170740707628,245,0 +170740707676,245,0 +170740707725,245,0 +170740707773,245,0 +170740707822,245,0 +170740707870,245,0 +170740707920,245,0 +170740707969,245,0 +170740708019,245,0 +170740708067,245,0 +170740708116,245,0 +170740708164,245,0 +170740708212,245,0 +170740708260,245,0 +170740708308,245,0 +170740708356,245,0 +170740708404,245,0 +170740708452,245,0 +170740708500,245,0 +170740708548,245,0 +170740708596,245,0 +170740708644,245,0 +170740708691,245,0 +170740708739,245,0 +170740708787,245,0 +170740708835,245,0 +170740708883,245,0 +170740708931,245,0 +170740708979,245,0 +170740709026,245,0 +170740709074,245,0 +170740709122,245,0 +170740709170,245,0 +170740709218,245,0 +170740709266,245,0 +170740709314,245,0 +170740709362,245,0 +170740709409,245,0 +170740709457,245,0 +170740709505,245,0 +170740709553,245,0 +170740709601,245,0 +170740709649,245,0 +170740709698,245,0 +170740709746,245,0 +170740709794,245,0 +170740709842,245,0 +170740709890,245,0 +170740709937,245,0 +170740709985,245,0 +170740710033,245,0 +170740710081,245,0 +170740710129,245,0 +170740710179,245,0 +170740710228,245,0 +170740710276,245,0 +170740710325,245,0 +170740710373,245,0 +170740710423,245,0 +170740710471,245,0 +170740710520,245,0 +170740710568,245,0 +170740710618,245,0 +170740710666,245,0 +170740710714,245,0 +170740710762,245,0 +170740710811,245,0 +170740710859,245,0 +170740710909,245,0 +170740710958,245,0 +170740711006,245,0 +170740711056,245,0 +170740711104,245,0 +170740711153,245,0 +170740711201,245,0 +170740711249,245,0 +170740711297,245,0 +170740711345,245,0 +170740711393,245,0 +170740711442,245,0 +170740711490,245,0 +170740711540,245,0 +170740711588,245,0 +170740711636,245,0 +170740711685,245,0 +170740711733,245,0 +170740711783,245,0 +170740711831,245,0 +170740711879,245,0 +170740711928,245,0 +170740711978,245,0 +170740712027,245,0 +170740712075,245,0 +170740712123,245,0 +170740712173,244,0 +170740712222,245,0 +170740712272,245,0 +170740712321,245,0 +170740712369,245,0 +170740712417,245,0 +170740712465,245,0 +170740712513,245,0 +170740712563,245,0 +170740712612,245,0 +170740712660,245,0 +170740712708,245,0 +170740712756,245,0 +170740712804,245,0 +170740712852,245,0 +170740712900,245,0 +170740712948,245,0 +170740712996,245,0 +170740713044,245,0 +170740713092,245,0 +170740713140,245,0 +170740713189,245,0 +170740713239,245,0 +170740713287,245,0 +170740713335,245,0 +170740713383,245,0 +170740713432,245,0 +170740713480,244,0 +170740713529,245,0 +170740713577,245,0 +170740713625,245,0 +170740713675,245,0 +170740713723,245,0 +170740713771,245,0 +170740713820,245,0 +170740713868,245,0 +170740713916,245,0 +170740713966,245,0 +170740714014,245,0 +170740714063,245,0 +170740714113,245,0 +170740714161,245,0 +170740714209,245,0 +170740714257,245,0 +170740714305,245,0 +170740714354,245,0 +170740714403,245,0 +170740714451,245,0 +170740714501,245,0 +170740714550,245,0 +170740714598,245,0 +170740714646,245,0 +170740714694,245,0 +170740714744,245,0 +170740714793,245,0 +170740714841,245,0 +170740714891,245,0 +170740714939,245,0 +170740714988,245,0 +170740715036,245,0 +170740715086,245,0 +170740715134,245,0 +170740715182,245,0 +170740715230,245,0 +170740715278,245,0 +170740715326,245,0 +170740715374,245,0 +170740715422,245,0 +170740715471,245,0 +170740715519,245,0 +170740715567,245,0 +170740715615,245,0 +170740715663,245,0 +170740715713,245,0 +170740715761,245,0 +170740715808,245,0 +170740715856,245,0 +170740715904,245,0 +170740715954,245,0 +170740716003,245,0 +170740716051,245,0 +170740716101,245,0 +170740716149,245,0 +170740716197,245,0 +170740716246,245,0 +170740716296,245,0 +170740716344,245,0 +170740716392,245,0 +170740716440,245,0 +170740716488,245,0 +170740716536,245,0 +170740716585,245,0 +170740716635,245,0 +170740716684,245,0 +170740716732,245,0 +170740716780,245,0 +170740716828,245,0 +170740716876,245,0 +170740716924,244,0 +170740716971,244,0 +170740717019,245,0 +170740717067,245,0 +170740717115,244,0 +170740717165,245,0 +170740717214,245,0 +170740717262,245,0 +170740717310,245,0 +170740717358,245,0 +170740717405,245,0 +170740717453,245,0 +170740717501,245,0 +170740717551,245,0 +170740717600,245,0 +170740717648,245,0 +170740717696,245,0 +170740717744,245,0 +170740717794,245,0 +170740717843,245,0 +170740717893,245,0 +170740717942,245,0 +170740717992,245,0 +170740718040,245,0 +170740718088,245,0 +170740718135,245,0 +170740718183,245,0 +170740718231,245,0 +170740718279,245,0 +170740718327,245,0 +170740718375,245,0 +170740718423,245,0 +170740718472,245,0 +170740718522,245,0 +170740718571,245,0 +170740718619,245,0 +170740718668,245,0 +170740718716,245,0 +170740718763,245,0 +170740718811,245,0 +170740718859,245,0 +170740718909,244,0 +170740718958,245,0 +170740719006,245,0 +170740719056,245,0 +170740719104,245,0 +170740719153,245,0 +170740719203,244,0 +170740719252,244,0 +170740719302,245,0 +170740719350,245,0 +170740719397,245,0 +170740719447,245,0 +170740719497,245,0 +170740719546,245,0 +170740719594,245,0 +170740719642,245,0 +170740719690,245,0 +170740719738,245,0 +170740719786,245,0 +170740719834,245,0 +170740719883,245,0 +170740719931,245,0 +170740719981,245,0 +170740720028,245,0 +170740720076,244,0 +170740720126,245,0 +170740720175,245,0 +170740720225,245,0 +170740720274,245,0 +170740720324,245,0 +170740720373,245,0 +170740720421,245,0 +170740720469,245,0 +170740720519,245,0 +170740720568,245,0 +170740720618,245,0 +170740720666,245,0 +170740720714,245,0 +170740720762,245,0 +170740720810,245,0 +170740720858,245,0 +170740720906,245,0 +170740720955,245,0 +170740721003,245,0 +170740721051,245,0 +170740721099,245,0 +170740721148,245,0 +170740721198,245,0 +170740721246,245,0 +170740721294,245,0 +170740721342,245,0 +170740721391,245,0 +170740721439,245,0 +170740721487,245,0 +170740721537,245,0 +170740721584,245,0 +170740721634,245,0 +170740721684,245,0 +170740721732,245,0 +170740721781,245,0 +170740721829,245,0 +170740721877,245,0 +170740721925,245,0 +170740721974,245,0 +170740722022,245,0 +170740722070,245,0 +170740722120,245,0 +170740722168,245,0 +170740722216,245,0 +170740722265,245,0 +170740722313,245,0 +170740722363,245,0 +170740722412,245,0 +170740722462,245,0 +170740722510,245,0 +170740722559,245,0 +170740722609,245,0 +170740722658,245,0 +170740722706,245,0 +170740722754,245,0 +170740722803,245,0 +170740722853,245,0 +170740722902,245,0 +170740722950,245,0 +170740722998,245,0 +170740723046,245,0 +170740723094,245,0 +170740723144,245,0 +170740723192,245,0 +170740723240,245,0 +170740723288,245,0 +170740723337,245,0 +170740723385,245,0 +170740723433,245,0 +170740723482,245,0 +170740723530,245,0 +170740723580,245,0 +170740723629,245,0 +170740723677,245,0 +170740723725,245,0 +170740723773,245,0 +170740723823,245,0 +170740723871,245,0 +170740723920,245,0 +170740723968,245,0 +170740724016,245,0 +170740724064,245,0 +170740724114,245,0 +170740724162,245,0 +170740724211,245,0 +170740724259,245,0 +170740724307,245,0 +170740724355,245,0 +170740724403,245,0 +170740724451,245,0 +170740724499,245,0 +170740724548,245,0 +170740724596,245,0 +170740724644,245,0 +170740724692,245,0 +170740724740,245,0 +170740724788,245,0 +170740724838,245,0 +170740724886,245,0 +170740724934,245,0 +170740724982,245,0 +170740725030,245,0 +170740725078,245,0 +170740725126,245,0 +170740725175,245,0 +170740725225,245,0 +170740725273,245,0 +170740725321,245,0 +170740725369,245,0 +170740725418,245,0 +170740725468,245,0 +170740725517,245,0 +170740725567,245,0 +170740725615,245,0 +170740725663,245,0 +170740725712,245,0 +170740725760,245,0 +170740725810,245,0 +170740725858,245,0 +170740725906,245,0 +170740725954,245,0 +170740726002,245,0 +170740726051,245,0 +170740726099,245,0 +170740726147,245,0 +170740726195,245,0 +170740726243,245,0 +170740726291,245,0 +170740726339,245,0 +170740726386,245,0 +170740726434,245,0 +170740726482,245,0 +170740726530,245,0 +170740726580,245,0 +170740726628,245,0 +170740726677,245,0 +170740726725,245,0 +170740726773,245,0 +170740726823,245,0 +170740726871,245,0 +170740726919,245,0 +170740726967,245,0 +170740727016,244,0 +170740727064,245,0 +170740727112,245,0 +170740727162,244,0 +170740727211,245,0 +170740727259,245,0 +170740727307,245,0 +170740727355,245,0 +170740727405,245,0 +170740727452,245,0 +170740727500,245,0 +170740727548,245,0 +170740727596,244,0 +170740727644,245,0 +170740727692,245,0 +170740727740,245,0 +170740727790,245,0 +170740727839,245,0 +170740727889,245,0 +170740727937,245,0 +170740727985,245,0 +170740728034,244,0 +170740728084,245,0 +170740728132,245,0 +170740728180,245,0 +170740728227,245,0 +170740728277,245,0 +170740728326,245,0 +170740728376,245,0 +170740728424,245,0 +170740728472,244,0 +170740728521,245,0 +170740728569,245,0 +170740728619,245,0 +170740728667,244,0 +170740728715,245,0 +170740728764,245,0 +170740728812,245,0 +170740728861,245,0 +170740728911,244,0 +170740728961,245,0 +170740729008,245,0 +170740729056,245,0 +170740729104,245,0 +170740729154,245,0 +170740729203,245,0 +170740729253,245,0 +170740729302,244,0 +170740729352,245,0 +170740729400,245,0 +170740729448,244,0 +170740729496,245,0 +170740729544,245,0 +170740729593,245,0 +170740729643,245,0 +170740729692,245,0 +170740729740,245,0 +170740729788,244,0 +170740729836,245,0 +170740729886,244,0 +170740729935,245,0 +170740729983,245,0 +170740730033,245,0 +170740730081,245,0 +170740730130,245,0 +170740730178,244,0 +170740730226,245,0 +170740730274,245,0 +170740730324,245,0 +170740730371,245,0 +170740730421,244,0 +170740730470,245,0 +170740730520,245,0 +170740730568,245,0 +170740730617,245,0 +170740730665,244,0 +170740730713,245,0 +170740730763,245,0 +170740730811,245,0 +170740730860,245,0 +170740730908,244,0 +170740730958,245,0 +170740731006,245,0 +170740731055,245,0 +170740731103,245,0 +170740731153,245,0 +170740731201,245,0 +170740731249,245,0 +170740731298,245,0 +170740731346,245,0 +170740731396,245,0 +170740731444,245,0 +170740731492,245,0 +170740731540,245,0 +170740731589,245,0 +170740731639,245,0 +170740731687,245,0 +170740731736,245,0 +170740731784,245,0 +170740731832,245,0 +170740731881,245,0 +170740731929,245,0 +170740731979,245,0 +170740732027,245,0 +170740732075,245,0 +170740732123,245,0 +170740732171,245,0 +170740732219,245,0 +170740732268,245,0 +170740732318,245,0 +170740732366,245,0 +170740732414,245,0 +170740732462,244,0 +170740732511,244,0 +170740732559,245,0 +170740732608,245,0 +170740732658,245,0 +170740732708,245,0 +170740732757,245,0 +170740732807,245,0 +170740732855,245,0 +170740732903,245,0 +170740732951,245,0 +170740732998,245,0 +170740733048,245,0 +170740733097,245,0 +170740733145,244,0 +170740733195,245,0 +170740733243,244,0 +170740733291,245,0 +170740733338,244,0 +170740733386,245,0 +170740733434,245,0 +170740733482,245,0 +170740733530,244,0 +170740733580,245,0 +170740733629,245,0 +170740733677,245,0 +170740733727,245,0 +170740733776,245,0 +170740733824,245,0 +170740733874,245,0 +170740733921,245,0 +170740733969,245,0 +170740734017,245,0 +170740734065,245,0 +170740734113,245,0 +170740734161,245,0 +170740734209,245,0 +170740734257,245,0 +170740734305,245,0 +170740734352,245,0 +170740734400,244,0 +170740734448,245,0 +170740734496,245,0 +170740734544,245,0 +170740734592,245,0 +170740734640,245,0 +170740734688,244,0 +170740734736,245,0 +170740734783,245,0 +170740734831,245,0 +170740734881,245,0 +170740734929,244,0 +170740734977,245,0 +170740735025,245,0 +170740735072,245,0 +170740735122,245,0 +170740735170,244,0 +170740735218,245,0 +170740735266,245,0 +170740735315,245,0 +170740735363,245,0 +170740735411,245,0 +170740735461,245,0 +170740735510,245,0 +170740735560,245,0 +170740735608,245,0 +170740735656,244,0 +170740735703,245,0 +170740735751,245,0 +170740735799,245,0 +170740735847,244,0 +170740735897,245,0 +170740735946,244,0 +170740735996,245,0 +170740736044,245,0 +170740736092,245,0 +170740736139,245,0 +170740736187,245,0 +170740736235,245,0 +170740736283,245,0 +170740736331,245,0 +170740736379,244,0 +170740736427,244,0 +170740736475,245,0 +170740736523,245,0 +170740736571,244,0 +170740736618,245,0 +170740736666,245,0 +170740736714,245,0 +170740736762,245,0 +170740736810,245,0 +170740736858,244,0 +170740736906,245,0 +170740736954,245,0 +170740737002,244,0 +170740737050,245,0 +170740737099,245,0 +170740737147,245,0 +170740737195,245,0 +170740737244,244,0 +170740737292,245,0 +170740737340,245,0 +170740737388,245,0 +170740737436,245,0 +170740737486,245,0 +170740737535,245,0 +170740737585,245,0 +170740737635,245,0 +170740737683,245,0 +170740737732,245,0 +170740737780,245,0 +170740737828,245,0 +170740737878,245,0 +170740737926,245,0 +170740737974,245,0 +170740738022,245,0 +170740738071,245,0 +170740738121,245,0 +170740738169,245,0 +170740738216,245,0 +170740738264,245,0 +170740738312,245,0 +170740738360,245,0 +170740738408,245,0 +170740738458,244,0 +170740738507,244,0 +170740738555,245,0 +170740738603,245,0 +170740738651,245,0 +170740738699,245,0 +170740738747,244,0 +170740738795,245,0 +170740738843,245,0 +170740738893,245,0 +170740738942,244,0 +170740738992,245,0 +170740739039,245,0 +170740739087,245,0 +170740739135,245,0 +170740739183,245,0 +170740739231,245,0 +170740739279,245,0 +170740739327,245,0 +170740739375,245,0 +170740739423,244,0 +170740739470,245,0 +170740739518,245,0 +170740739566,245,0 +170740739614,245,0 +170740739662,245,0 +170740739711,245,0 +170740739759,244,0 +170740739809,245,0 +170740739857,245,0 +170740739905,245,0 +170740739954,245,0 +170740740002,245,0 +170740740052,245,0 +170740740100,245,0 +170740740149,245,0 +170740740197,245,0 +170740740245,245,0 +170740740293,244,0 +170740740341,245,0 +170740740389,245,0 +170740740437,245,0 +170740740487,245,0 +170740740536,245,0 +170740740584,244,0 +170740740634,245,0 +170740740682,245,0 +170740740730,244,0 +170740740779,245,0 +170740740827,245,0 +170740740877,245,0 +170740740924,245,0 +170740740974,245,0 +170740741022,245,0 +170740741070,245,0 +170740741118,245,0 +170740741166,245,0 +170740741214,245,0 +170740741263,244,0 +170740741311,245,0 +170740741361,245,0 +170740741410,245,0 +170740741458,245,0 +170740741506,245,0 +170740741556,245,0 +170740741604,245,0 +170740741652,245,0 +170740741701,245,0 +170740741751,245,0 +170740741800,245,0 +170740741848,245,0 +170740741896,245,0 +170740741945,245,0 +170740741993,245,0 +170740742041,245,0 +170740742089,245,0 +170740742137,244,0 +170740742185,245,0 +170740742233,245,0 +170740742281,245,0 +170740742328,245,0 +170740742376,245,0 +170740742424,245,0 +170740742472,245,0 +170740742520,245,0 +170740742568,245,0 +170740742616,245,0 +170740742664,245,0 +170740742713,245,0 +170740742761,244,0 +170740742809,245,0 +170740742857,245,0 +170740742906,245,0 +170740742954,245,0 +170740743002,245,0 +170740743051,245,0 +170740743101,245,0 +170740743149,245,0 +170740743199,245,0 +170740743248,245,0 +170740743296,245,0 +170740743344,245,0 +170740743392,245,0 +170740743440,245,0 +170740743488,245,0 +170740743536,244,0 +170740743584,245,0 +170740743633,245,0 +170740743683,245,0 +170740743731,245,0 +170740743779,245,0 +170740743826,245,0 +170740743874,244,0 +170740743922,245,0 +170740743972,245,0 +170740744020,245,0 +170740744069,245,0 +170740744117,245,0 +170740744167,245,0 +170740744215,245,0 +170740744264,245,0 +170740744312,245,0 +170740744360,245,0 +170740744410,244,0 +170740744459,245,0 +170740744507,245,0 +170740744557,245,0 +170740744605,245,0 +170740744653,245,0 +170740744701,244,0 +170740744749,245,0 +170740744797,245,0 +170740744844,245,0 +170740744892,245,0 +170740744940,245,0 +170740744990,245,0 +170740745038,245,0 +170740745087,245,0 +170740745135,245,0 +170740745185,245,0 +170740745233,245,0 +170740745281,245,0 +170740745329,245,0 +170740745377,245,0 +170740745426,245,0 +170740745474,245,0 +170740745522,245,0 +170740745570,245,0 +170740745618,245,0 +170740745666,245,0 +170740745714,245,0 +170740745762,245,0 +170740745811,245,0 +170740745859,245,0 +170740745909,245,0 +170740745957,244,0 +170740746006,245,0 +170740746054,245,0 +170740746102,245,0 +170740746150,245,0 +170740746198,245,0 +170740746246,245,0 +170740746295,244,0 +170740746343,245,0 +170740746391,245,0 +170740746439,245,0 +170740746488,245,0 +170740746536,245,0 +170740746585,245,0 +170740746633,245,0 +170740746681,245,0 +170740746729,245,0 +170740746777,245,0 +170740746825,245,0 +170740746873,245,0 +170740746923,245,0 +170740746972,244,0 +170740747022,245,0 +170740747070,245,0 +170740747119,245,0 +170740747169,245,0 +170740747218,245,0 +170740747268,245,0 +170740747316,244,0 +170740747364,245,0 +170740747412,245,0 +170740747459,245,0 +170740747507,245,0 +170740747555,245,0 +170740747603,245,0 +170740747653,245,0 +170740747701,245,0 +170740747750,245,0 +170740747800,245,0 +170740747848,245,0 +170740747897,244,0 +170740747945,244,0 +170740747993,245,0 +170740748041,245,0 +170740748091,245,0 +170740748139,245,0 +170740748188,244,0 +170740748238,245,0 +170740748287,245,0 +170740748337,245,0 +170740748386,245,0 +170740748436,245,0 +170740748484,245,0 +170740748532,245,0 +170740748580,245,0 +170740748629,245,0 +170740748677,245,0 +170740748725,244,0 +170740748773,245,0 +170740748822,244,0 +170740748870,245,0 +170740748920,245,0 +170740748968,245,0 +170740749015,245,0 +170740749063,245,0 +170740749111,245,0 +170740749159,245,0 +170740749207,245,0 +170740749255,245,0 +170740749303,245,0 +170740749353,245,0 +170740749402,245,0 +170740749452,245,0 +170740749500,245,0 +170740749548,245,0 +170740749597,245,0 +170740749645,245,0 +170740749693,245,0 +170740749741,245,0 +170740749791,244,0 +170740749840,245,0 +170740749888,245,0 +170740749936,245,0 +170740749986,245,0 +170740750034,245,0 +170740750081,245,0 +170740750129,244,0 +170740750177,245,0 +170740750227,245,0 +170740750275,245,0 +170740750323,244,0 +170740750372,245,0 +170740750422,245,0 +170740750471,245,0 +170740750519,245,0 +170740750567,244,0 +170740750617,245,0 +170740750664,245,0 +170740750712,245,0 +170740750760,245,0 +170740750808,244,0 +170740750856,245,0 +170740750904,245,0 +170740750952,245,0 +170740751000,245,0 +170740751048,245,0 +170740751096,245,0 +170740751145,245,0 +170740751193,245,0 +170740751241,244,0 +170740751289,245,0 +170740751338,245,0 +170740751386,245,0 +170740751434,245,0 +170740751482,244,0 +170740751531,245,0 +170740751581,245,0 +170740751630,245,0 +170740751678,245,0 +170740751726,245,0 +170740751776,245,0 +170740751824,245,0 +170740751872,245,0 +170740751919,244,0 +170740751967,245,0 +170740752015,245,0 +170740752063,245,0 +170740752111,245,0 +170740752159,245,0 +170740752207,245,0 +170740752255,245,0 +170740752303,245,0 +170740752352,245,0 +170740752401,244,0 +170740752449,245,0 +170740752497,245,0 +170740752545,245,0 +170740752593,245,0 +170740752643,245,0 +170740752692,245,0 +170740752742,245,0 +170740752790,245,0 +170740752838,245,0 +170740752886,245,0 +170740752934,245,0 +170740752981,245,0 +170740753029,245,0 +170740753077,245,0 +170740753125,244,0 +170740753173,245,0 +170740753222,245,0 +170740753270,245,0 +170740753318,245,0 +170740753368,245,0 +170740753416,245,0 +170740753465,245,0 +170740753513,245,0 +170740753561,245,0 +170740753610,245,0 +170740753658,245,0 +170740753706,245,0 +170740753754,245,0 +170740753802,245,0 +170740753850,245,0 +170740753898,245,0 +170740753947,245,0 +170740753995,245,0 +170740754043,245,0 +170740754091,245,0 +170740754139,245,0 +170740754187,245,0 +170740754235,245,0 +170740754284,245,0 +170740754334,245,0 +170740754382,245,0 +170740754430,245,0 +170740754478,245,0 +170740754525,245,0 +170740754573,245,0 +170740754621,245,0 +170740754669,245,0 +170740754717,245,0 +170740754767,245,0 +170740754815,245,0 +170740754863,245,0 +170740754912,245,0 +170740754962,245,0 +170740755010,245,0 +170740755058,245,0 +170740755107,245,0 +170740755155,245,0 +170740755203,245,0 +170740755251,245,0 +170740755299,245,0 +170740755348,245,0 +170740755396,245,0 +170740755444,245,0 +170740755494,245,0 +170740755543,245,0 +170740755593,245,0 +170740755642,245,0 +170740755692,245,0 +170740755740,245,0 +170740755789,245,0 +170740755837,245,0 +170740755887,245,0 +170740755935,245,0 +170740755983,245,0 +170740756031,245,0 +170740756080,245,0 +170740756128,245,0 +170740756176,245,0 +170740756225,245,0 +170740756273,245,0 +170740756323,245,0 +170740756371,245,0 +170740756419,245,0 +170740756467,245,0 +170740756515,245,0 +170740756564,245,0 +170740756612,245,0 +170740756660,245,0 +170740756708,245,0 +170740756756,245,0 +170740756804,245,0 +170740756853,245,0 +170740756903,245,0 +170740756952,245,0 +170740757002,245,0 +170740757050,245,0 +170740757099,245,0 +170740757147,245,0 +170740757195,245,0 +170740757243,245,0 +170740757291,245,0 +170740757341,245,0 +170740757390,245,0 +170740757438,245,0 +170740757488,245,0 +170740757536,245,0 +170740757583,245,0 +170740757633,245,0 +170740757682,245,0 +170740757732,245,0 +170740757780,245,0 +170740757829,245,0 +170740757877,245,0 +170740757925,245,0 +170740757973,245,0 +170740758021,245,0 +170740758069,245,0 +170740758117,245,0 +170740758165,245,0 +170740758213,245,0 +170740758261,245,0 +170740758310,245,0 +170740758358,245,0 +170740758406,245,0 +170740758454,245,0 +170740758502,245,0 +170740758552,245,0 +170740758600,245,0 +170740758648,245,0 +170740758696,245,0 +170740758744,245,0 +170740758792,245,0 +170740758840,245,0 +170740758888,245,0 +170740758936,245,0 +170740758984,245,0 +170740759031,245,0 +170740759081,245,0 +170740759129,245,0 +170740759177,245,0 +170740759225,245,0 +170740759272,245,0 +170740759320,245,0 +170740759370,245,0 +170740759418,245,0 +170740759466,245,0 +170740759515,245,0 +170740759563,245,0 +170740759613,245,0 +170740759661,245,0 +170740759708,245,0 +170740759756,245,0 +170740759804,245,0 +170740759852,245,0 +170740759900,245,0 +170740759948,245,0 +170740759998,245,0 +170740760047,245,0 +170740760095,245,0 +170740760145,245,0 +170740760194,245,0 +170740760242,245,0 +170740760292,245,0 +170740760340,245,0 +170740760388,244,0 +170740760437,245,0 +170740760485,245,0 +170740760533,245,0 +170740760581,245,0 +170740760629,245,0 +170740760677,245,0 +170740760725,245,0 +170740760773,245,0 +170740760821,245,0 +170740760870,245,0 +170740760920,245,0 +170740760968,245,0 +170740761016,245,0 +170740761064,245,0 +170740761112,245,0 +170740761160,245,0 +170740761208,245,0 +170740761255,245,0 +170740761305,245,0 +170740761355,245,0 +170740761403,245,0 +170740761452,245,0 +170740761500,245,0 +170740761548,245,0 +170740761596,245,0 +170740761644,245,0 +170740761693,245,0 +170740761743,245,0 +170740761792,245,0 +170740761842,245,0 +170740761891,245,0 +170740761939,245,0 +170740761989,245,0 +170740762038,245,0 +170740762088,245,0 +170740762136,245,0 +170740762184,245,0 +170740762232,245,0 +170740762280,245,0 +170740762328,245,0 +170740762377,245,0 +170740762427,245,0 +170740762475,245,0 +170740762523,245,0 +170740762572,245,0 +170740762622,245,0 +170740762671,245,0 +170740762721,245,0 +170740762769,245,0 +170740762817,245,0 +170740762866,245,0 +170740762915,245,0 +170740762965,245,0 +170740763013,244,0 +170740763062,245,0 +170740763110,245,0 +170740763158,245,0 +170740763208,245,0 +170740763257,245,0 +170740763307,245,0 +170740763355,245,0 +170740763403,245,0 +170740763452,245,0 +170740763500,245,0 +170740763550,245,0 +170740763598,245,0 +170740763646,245,0 +170740763693,245,0 +170740763741,245,0 +170740763789,245,0 +170740763837,245,0 +170740763885,245,0 +170740763933,245,0 +170740763981,245,0 +170740764031,245,0 +170740764079,245,0 +170740764128,245,0 +170740764178,245,0 +170740764226,245,0 +170740764273,245,0 +170740764323,245,0 +170740764371,245,0 +170740764420,245,0 +170740764470,245,0 +170740764519,245,0 +170740764567,245,0 +170740764617,245,0 +170740764666,245,0 +170740764714,245,0 +170740764762,245,0 +170740764812,245,0 +170740764861,245,0 +170740764911,245,0 +170740764959,245,0 +170740765007,245,0 +170740765056,245,0 +170740765104,245,0 +170740765152,245,0 +170740765202,245,0 +170740765250,245,0 +170740765297,245,0 +170740765345,245,0 +170740765395,245,0 +170740765443,245,0 +170740765492,245,0 +170740765541,245,0 +170740765590,245,0 +170740765640,244,0 +170740765688,245,0 +170740765735,245,0 +170740765783,245,0 +170740765833,245,0 +170740765881,245,0 +170740765930,245,0 +170740765978,245,0 +170740766028,245,0 +170740766077,244,0 +170740766125,245,0 +170740766175,245,0 +170740766223,245,0 +170740766271,245,0 +170740766320,245,0 +170740766370,245,0 +170740766418,245,0 +170740766466,245,0 +170740766514,245,0 +170740766562,245,0 +170740766610,245,0 +170740766659,245,0 +170740766707,245,0 +170740766755,245,0 +170740766803,245,0 +170740766851,245,0 +170740766900,245,0 +170740766950,245,0 +170740766998,245,0 +170740767046,245,0 +170740767095,245,0 +170740767145,245,0 +170740767193,245,0 +170740767241,245,0 +170740767290,245,0 +170740767338,245,0 +170740767388,245,0 +170740767436,245,0 +170740767484,245,0 +170740767532,245,0 +170740767581,245,0 +170740767629,245,0 +170740767677,245,0 +170740767727,245,0 +170740767776,245,0 +170740767824,245,0 +170740767872,245,0 +170740767920,245,0 +170740767968,245,0 +170740768016,245,0 +170740768065,245,0 +170740768113,245,0 +170740768161,245,0 +170740768211,245,0 +170740768258,245,0 +170740768308,245,0 +170740768358,245,0 +170740768405,245,0 +170740768453,245,0 +170740768501,245,0 +170740768551,245,0 +170740768600,245,0 +170740768648,245,0 +170740768698,245,0 +170740768746,245,0 +170740768794,245,0 +170740768843,245,0 +170740768891,245,0 +170740768941,245,0 +170740768989,245,0 +170740769036,245,0 +170740769084,245,0 +170740769132,245,0 +170740769180,245,0 +170740769228,245,0 +170740769278,245,0 +170740769326,245,0 +170740769375,245,0 +170740769423,245,0 +170740769471,245,0 +170740769519,245,0 +170740769569,245,0 +170740769618,245,0 +170740769666,245,0 +170740769714,245,0 +170740769762,245,0 +170740769810,245,0 +170740769860,245,0 +170740769908,245,0 +170740769957,245,0 +170740770007,245,0 +170740770056,245,0 +170740770105,245,0 +170740770155,245,0 +170740770204,245,0 +170740770252,245,0 +170740770300,245,0 +170740770348,245,0 +170740770398,245,0 +170740770446,245,0 +170740770494,245,0 +170740770542,245,0 +170740770590,245,0 +170740770638,245,0 +170740770686,245,0 +170740770733,245,0 +170740770781,245,0 +170740770829,245,0 +170740770877,245,0 +170740770925,245,0 +170740770973,245,0 +170740771023,245,0 +170740771071,245,0 +170740771119,245,0 +170740771167,245,0 +170740771215,245,0 +170740771262,245,0 +170740771310,245,0 +170740771358,245,0 +170740771408,245,0 +170740771457,245,0 +170740771505,245,0 +170740771555,245,0 +170740771603,245,0 +170740771652,245,0 +170740771700,245,0 +170740771750,245,0 +170740771799,245,0 +170740771849,245,0 +170740771897,245,0 +170740771946,245,0 +170740771994,245,0 +170740772042,245,0 +170740772092,245,0 +170740772140,245,0 +170740772188,245,0 +170740772237,245,0 +170740772285,245,0 +170740772333,245,0 +170740772381,245,0 +170740772429,245,0 +170740772476,245,0 +170740772524,245,0 +170740772574,245,0 +170740772622,245,0 +170740772670,245,0 +170740772718,245,0 +170740772766,245,0 +170740772813,245,0 +170740772861,245,0 +170740772909,245,0 +170740772957,245,0 +170740773005,245,0 +170740773053,245,0 +170740773101,245,0 +170740773149,245,0 +170740773197,245,0 +170740773245,245,0 +170740773292,245,0 +170740773340,245,0 +170740773388,245,0 +170740773436,245,0 +170740773484,245,0 +170740773532,245,0 +170740773580,245,0 +170740773628,245,0 +170740773675,245,0 +170740773723,245,0 +170740773771,245,0 +170740773819,245,0 +170740773867,245,0 +170740773916,245,0 +170740773964,245,0 +170740774012,245,0 +170740774060,245,0 +170740774108,245,0 +170740774156,245,0 +170740774204,245,0 +170740774252,245,0 +170740774300,245,0 +170740774349,245,0 +170740774399,245,0 +170740774447,245,0 +170740774496,245,0 +170740774544,245,0 +170740774594,245,0 +170740774642,245,0 +170740774690,245,0 +170740774738,245,0 +170740774787,245,0 +170740774835,245,0 +170740774885,245,0 +170740774934,245,0 +170740774982,245,0 +170740775030,245,0 +170740775079,245,0 +170740775127,245,0 +170740775175,245,0 +170740775223,245,0 +170740775271,245,0 +170740775319,245,0 +170740775367,245,0 +170740775415,245,0 +170740775462,245,0 +170740775510,245,0 +170740775558,245,0 +170740775606,245,0 +170740775656,245,0 +170740775703,245,0 +170740775753,245,0 +170740775801,245,0 +170740775849,245,0 +170740775898,245,0 +170740775946,245,0 +170740775994,245,0 +170740776042,245,0 +170740776090,245,0 +170740776138,245,0 +170740776187,245,0 +170740776235,245,0 +170740776284,245,0 +170740776332,245,0 +170740776380,245,0 +170740776428,245,0 +170740776476,245,0 +170740776526,245,0 +170740776574,245,0 +170740776621,244,0 +170740776671,245,0 +170740776719,245,0 +170740776768,245,0 +170740776818,245,0 +170740776866,245,0 +170740776915,245,0 +170740776963,245,0 +170740777011,245,0 +170740777061,245,0 +170740777110,245,0 +170740777158,245,0 +170740777206,245,0 +170740777256,245,0 +170740777305,245,0 +170740777355,245,0 +170740777403,245,0 +170740777451,245,0 +170740777499,245,0 +170740777548,245,0 +170740777596,245,0 +170740777646,245,0 +170740777695,245,0 +170740777745,245,0 +170740777792,245,0 +170740777840,245,0 +170740777890,245,0 +170740777939,245,0 +170740777987,245,0 +170740778037,245,0 +170740778086,245,0 +170740778134,245,0 +170740778184,245,0 +170740778233,245,0 +170740778283,245,0 +170740778331,245,0 +170740778380,245,0 +170740778430,245,0 +170740778479,245,0 +170740778529,245,0 +170740778579,245,0 +170740778626,245,0 +170740778674,245,0 +170740778724,245,0 +170740778772,245,0 +170740778820,245,0 +170740778868,245,0 +170740778916,245,0 +170740778963,245,0 +170740779011,245,0 +170740779059,245,0 +170740779107,245,0 +170740779155,245,0 +170740779203,245,0 +170740779251,245,0 +170740779299,245,0 +170740779347,245,0 +170740779395,245,0 +170740779442,245,0 +170740779492,245,0 +170740779540,245,0 +170740779588,245,0 +170740779636,245,0 +170740779684,245,0 +170740779732,245,0 +170740779780,245,0 +170740779828,245,0 +170740779875,245,0 +170740779923,245,0 +170740779971,245,0 +170740780019,245,0 +170740780067,245,0 +170740780115,245,0 +170740780165,245,0 +170740780214,245,0 +170740780264,245,0 +170740780312,245,0 +170740780361,245,0 +170740780411,245,0 +170740780459,245,0 +170740780507,245,0 +170740780555,245,0 +170740780603,245,0 +170740780651,245,0 +170740780700,244,0 +170740780750,245,0 +170740780799,245,0 +170740780847,245,0 +170740780895,245,0 +170740780945,245,0 +170740780992,245,0 +170740781040,245,0 +170740781090,245,0 +170740781139,245,0 +170740781189,245,0 +170740781237,245,0 +170740781285,245,0 +170740781333,245,0 +170740781381,245,0 +170740781429,245,0 +170740781478,245,0 +170740781526,245,0 +170740781575,245,0 +170740781623,245,0 +170740781671,245,0 +170740781719,245,0 +170740781768,245,0 +170740781816,245,0 +170740781864,245,0 +170740781912,245,0 +170740781960,245,0 +170740782008,245,0 +170740782056,245,0 +170740782104,245,0 +170740782152,245,0 +170740782199,245,0 +170740782247,245,0 +170740782295,245,0 +170740782345,245,0 +170740782393,245,0 +170740782441,245,0 +170740782489,245,0 +170740782538,245,0 +170740782588,245,0 +170740782636,245,0 +170740782684,245,0 +170740782732,245,0 +170740782780,245,0 +170740782827,245,0 +170740782877,245,0 +170740782925,245,0 +170740782973,244,0 +170740783021,245,0 +170740783069,245,0 +170740783117,245,0 +170740783166,245,0 +170740783214,245,0 +170740783262,245,0 +170740783310,245,0 +170740783358,245,0 +170740783406,245,0 +170740783454,245,0 +170740783503,245,0 +170740783551,245,0 +170740783601,245,0 +170740783649,245,0 +170740783697,245,0 +170740783746,245,0 +170740783796,245,0 +170740783844,245,0 +170740783892,245,0 +170740783941,245,0 +170740783989,245,0 +170740784037,245,0 +170740784085,245,0 +170740784133,245,0 +170740784181,245,0 +170740784229,245,0 +170740784278,245,0 +170740784328,245,0 +170740784376,245,0 +170740784424,245,0 +170740784473,245,0 +170740784521,245,0 +170740784569,245,0 +170740784617,245,0 +170740784665,245,0 +170740784713,245,0 +170740784761,245,0 +170740784810,245,0 +170740784858,245,0 +170740784908,245,0 +170740784956,245,0 +170740785004,245,0 +170740785053,245,0 +170740785103,245,0 +170740785151,245,0 +170740785200,245,0 +170740785250,245,0 +170740785298,245,0 +170740785346,245,0 +170740785393,245,0 +170740785443,245,0 +170740785491,245,0 +170740785539,245,0 +170740785588,245,0 +170740785636,245,0 +170740785686,245,0 +170740785735,245,0 +170740785783,245,0 +170740785831,245,0 +170740785879,245,0 +170740785927,245,0 +170740785975,245,0 +170740786022,245,0 +170740786070,245,0 +170740786118,245,0 +170740786166,245,0 +170740786216,245,0 +170740786263,245,0 +170740786311,245,0 +170740786359,245,0 +170740786407,245,0 +170740786455,245,0 +170740786503,245,0 +170740786551,245,0 +170740786599,245,0 +170740786646,245,0 +170740786694,245,0 +170740786742,245,0 +170740786790,245,0 +170740786838,245,0 +170740786886,245,0 +170740786934,245,0 +170740786981,244,0 +170740787029,245,0 +170740787077,245,0 +170740787125,245,0 +170740787175,245,0 +170740787223,245,0 +170740787270,245,0 +170740787318,245,0 +170740787368,245,0 +170740787416,245,0 +170740787464,245,0 +170740787512,245,0 +170740787560,245,0 +170740787609,245,0 +170740787657,244,0 +170740787707,245,0 +170740787756,245,0 +170740787806,245,0 +170740787854,245,0 +170740787902,245,0 +170740787951,245,0 +170740787999,244,0 +170740788049,245,0 +170740788097,245,0 +170740788146,245,0 +170740788194,245,0 +170740788244,245,0 +170740788292,245,0 +170740788339,245,0 +170740788389,245,0 +170740788437,245,0 +170740788485,245,0 +170740788533,245,0 +170740788581,245,0 +170740788629,245,0 +170740788677,245,0 +170740788725,245,0 +170740788772,245,0 +170740788820,245,0 +170740788868,245,0 +170740788916,245,0 +170740788964,245,0 +170740789012,245,0 +170740789060,245,0 +170740789108,245,0 +170740789156,245,0 +170740789203,245,0 +170740789251,245,0 +170740789299,245,0 +170740789347,245,0 +170740789395,245,0 +170740789443,245,0 +170740789491,245,0 +170740789539,245,0 +170740789586,245,0 +170740789634,245,0 +170740789682,245,0 +170740789730,245,0 +170740789778,245,0 +170740789827,245,0 +170740789875,245,0 +170740789923,245,0 +170740789971,245,0 +170740790019,245,0 +170740790067,245,0 +170740790115,245,0 +170740790162,245,0 +170740790210,245,0 +170740790260,245,0 +170740790308,245,0 +170740790356,245,0 +170740790404,245,0 +170740790453,245,0 +170740790501,245,0 +170740790549,245,0 +170740790597,245,0 +170740790645,245,0 +170740790695,245,0 +170740790744,245,0 +170740790792,245,0 +170740790842,245,0 +170740790891,245,0 +170740790941,245,0 +170740790990,245,0 +170740791040,245,0 +170740791088,245,0 +170740791137,245,0 +170740791185,245,0 +170740791233,245,0 +170740791283,245,0 +170740791331,245,0 +170740791379,245,0 +170740791427,245,0 +170740791475,245,0 +170740791524,245,0 +170740791574,245,0 +170740791622,245,0 +170740791670,245,0 +170740791718,245,0 +170740791765,245,0 +170740791813,245,0 +170740791861,245,0 +170740791909,245,0 +170740791957,245,0 +170740792005,245,0 +170740792053,245,0 +170740792101,245,0 +170740792148,245,0 +170740792196,245,0 +170740792244,245,0 +170740792292,245,0 +170740792340,245,0 +170740792388,245,0 +170740792436,245,0 +170740792483,245,0 +170740792531,245,0 +170740792579,245,0 +170740792627,245,0 +170740792675,245,0 +170740792723,245,0 +170740792771,245,0 +170740792820,245,0 +170740792868,245,0 +170740792917,245,0 +170740792965,245,0 +170740793015,245,0 +170740793063,245,0 +170740793111,245,0 +170740793160,245,0 +170740793208,245,0 +170740793256,245,0 +170740793305,245,0 +170740793353,245,0 +170740793403,245,0 +170740793451,245,0 +170740793500,245,0 +170740793548,244,0 +170740793597,244,0 +170740793645,244,0 +170740793693,245,0 +170740793743,245,0 +170740793791,245,0 +170740793839,245,0 +170740793887,245,0 +170740793935,245,0 +170740793983,245,0 +170740794031,245,0 +170740794079,245,0 +170740794128,245,0 +170740794176,245,0 +170740794226,245,0 +170740794275,245,0 +170740794325,245,0 +170740794372,245,0 +170740794422,245,0 +170740794470,245,0 +170740794519,245,0 +170740794569,245,0 +170740794618,245,0 +170740794666,245,0 +170740794716,245,0 +170740794765,245,0 +170740794813,245,0 +170740794861,245,0 +170740794911,245,0 +170740794960,245,0 +170740795010,245,0 +170740795059,245,0 +170740795107,245,0 +170740795155,245,0 +170740795203,245,0 +170740795251,245,0 +170740795299,245,0 +170740795349,245,0 +170740795398,245,0 +170740795446,245,0 +170740795494,245,0 +170740795542,245,0 +170740795590,245,0 +170740795638,245,0 +170740795686,245,0 +170740795734,245,0 +170740795782,245,0 +170740795830,245,0 +170740795878,245,0 +170740795925,245,0 +170740795973,245,0 +170740796023,245,0 +170740796071,245,0 +170740796119,245,0 +170740796167,245,0 +170740796214,245,0 +170740796262,245,0 +170740796310,245,0 +170740796358,245,0 +170740796406,245,0 +170740796455,245,0 +170740796505,245,0 +170740796554,245,0 +170740796602,245,0 +170740796650,245,0 +170740796698,245,0 +170740796746,245,0 +170740796796,245,0 +170740796844,245,0 +170740796891,245,0 +170740796939,245,0 +170740796987,245,0 +170740797035,245,0 +170740797083,245,0 +170740797133,245,0 +170740797182,245,0 +170740797230,245,0 +170740797278,245,0 +170740797328,245,0 +170740797377,245,0 +170740797427,245,0 +170740797474,245,0 +170740797522,245,0 +170740797570,245,0 +170740797620,245,0 +170740797668,245,0 +170740797716,245,0 +170740797764,245,0 +170740797813,245,0 +170740797863,245,0 +170740797912,245,0 +170740797960,245,0 +170740798008,244,0 +170740798058,245,0 +170740798106,245,0 +170740798154,245,0 +170740798202,245,0 +170740798250,245,0 +170740798299,245,0 +170740798347,244,0 +170740798395,245,0 +170740798445,245,0 +170740798494,245,0 +170740798542,245,0 +170740798590,245,0 +170740798638,244,0 +170740798686,245,0 +170740798736,245,0 +170740798784,245,0 +170740798833,245,0 +170740798883,245,0 +170740798930,245,0 +170740798978,245,0 +170740799026,245,0 +170740799074,245,0 +170740799122,245,0 +170740799172,245,0 +170740799220,245,0 +170740799268,245,0 +170740799316,245,0 +170740799364,245,0 +170740799413,245,0 +170740799461,245,0 +170740799511,245,0 +170740799559,245,0 +170740799608,245,0 +170740799658,245,0 +170740799706,245,0 +170740799754,245,0 +170740799803,245,0 +170740799851,245,0 +170740799901,245,0 +170740799949,245,0 +170740799997,245,0 diff --git a/laser_value/0209-02.csv b/laser_value/0209-02.csv new file mode 100644 index 0000000..cd6f634 --- /dev/null +++ b/laser_value/0209-02.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170740800045,245,0 +170740800095,245,0 +170740800143,245,0 +170740800191,245,0 +170740800239,245,0 +170740800287,245,0 +170740800336,245,0 +170740800384,245,0 +170740800432,245,0 +170740800482,245,0 +170740800530,245,0 +170740800578,245,0 +170740800627,245,0 +170740800677,245,0 +170740800725,245,0 +170740800774,245,0 +170740800822,245,0 +170740800871,245,0 +170740800919,245,0 +170740800969,245,0 +170740801018,245,0 +170740801066,245,0 +170740801114,245,0 +170740801162,245,0 +170740801212,245,0 +170740801261,245,0 +170740801309,245,0 +170740801357,245,0 +170740801405,245,0 +170740801453,245,0 +170740801501,245,0 +170740801549,245,0 +170740801596,245,0 +170740801644,245,0 +170740801692,245,0 +170740801740,245,0 +170740801790,245,0 +170740801838,245,0 +170740801885,245,0 +170740801933,245,0 +170740801981,245,0 +170740802029,245,0 +170740802077,245,0 +170740802125,245,0 +170740802174,245,0 +170740802222,245,0 +170740802270,245,0 +170740802318,245,0 +170740802367,245,0 +170740802415,245,0 +170740802465,245,0 +170740802513,245,0 +170740802562,245,0 +170740802612,245,0 +170740802661,245,0 +170740802710,245,0 +170740802758,245,0 +170740802808,245,0 +170740802857,245,0 +170740802907,245,0 +170740802955,245,0 +170740803003,245,0 +170740803051,245,0 +170740803099,245,0 +170740803147,245,0 +170740803195,245,0 +170740803243,245,0 +170740803290,245,0 +170740803338,245,0 +170740803386,245,0 +170740803434,245,0 +170740803484,245,0 +170740803533,245,0 +170740803583,245,0 +170740803632,245,0 +170740803682,245,0 +170740803731,245,0 +170740803779,245,0 +170740803829,245,0 +170740803878,245,0 +170740803926,245,0 +170740803974,245,0 +170740804023,245,0 +170740804071,245,0 +170740804119,245,0 +170740804167,245,0 +170740804216,245,0 +170740804264,245,0 +170740804312,245,0 +170740804360,245,0 +170740804408,245,0 +170740804456,245,0 +170740804504,245,0 +170740804552,245,0 +170740804599,245,0 +170740804647,245,0 +170740804695,245,0 +170740804743,245,0 +170740804792,245,0 +170740804840,245,0 +170740804888,245,0 +170740804936,245,0 +170740804984,244,0 +170740805033,245,0 +170740805081,245,0 +170740805131,245,0 +170740805178,245,0 +170740805226,245,0 +170740805274,245,0 +170740805322,245,0 +170740805372,245,0 +170740805419,245,0 +170740805467,245,0 +170740805515,245,0 +170740805563,245,0 +170740805613,245,0 +170740805661,245,0 +170740805708,245,0 +170740805756,245,0 +170740805806,245,0 +170740805855,244,0 +170740805905,245,0 +170740805952,245,0 +170740806000,245,0 +170740806048,245,0 +170740806096,245,0 +170740806144,245,0 +170740806192,245,0 +170740806241,245,0 +170740806291,245,0 +170740806339,245,0 +170740806387,245,0 +170740806435,245,0 +170740806483,245,0 +170740806532,245,0 +170740806580,245,0 +170740806628,245,0 +170740806676,245,0 +170740806724,245,0 +170740806774,245,0 +170740806822,245,0 +170740806871,245,0 +170740806919,245,0 +170740806969,245,0 +170740807017,245,0 +170740807065,245,0 +170740807114,245,0 +170740807162,245,0 +170740807210,245,0 +170740807258,244,0 +170740807306,245,0 +170740807353,244,0 +170740807401,245,0 +170740807449,245,0 +170740807497,245,0 +170740807545,245,0 +170740807593,244,0 +170740807641,245,0 +170740807688,245,0 +170740807736,244,0 +170740807784,245,0 +170740807832,245,0 +170740807880,245,0 +170740807928,245,0 +170740807976,245,0 +170740808023,245,0 +170740808071,245,0 +170740808119,245,0 +170740808169,245,0 +170740808217,245,0 +170740808265,245,0 +170740808312,245,0 +170740808360,245,0 +170740808408,245,0 +170740808456,245,0 +170740808504,244,0 +170740808552,245,0 +170740808600,245,0 +170740808647,245,0 +170740808695,245,0 +170740808743,245,0 +170740808791,245,0 +170740808839,245,0 +170740808887,245,0 +170740808935,245,0 +170740808983,245,0 +170740809032,245,0 +170740809080,245,0 +170740809128,245,0 +170740809178,244,0 +170740809226,245,0 +170740809274,245,0 +170740809323,245,0 +170740809371,245,0 +170740809419,245,0 +170740809467,245,0 +170740809515,245,0 +170740809563,244,0 +170740809611,245,0 +170740809659,245,0 +170740809708,245,0 +170740809756,245,0 +170740809804,245,0 +170740809852,245,0 +170740809899,245,0 +170740809947,245,0 +170740809995,245,0 +170740810043,245,0 +170740810091,245,0 +170740810139,245,0 +170740810188,245,0 +170740810236,245,0 +170740810284,245,0 +170740810332,245,0 +170740810380,245,0 +170740810428,245,0 +170740810476,245,0 +170740810523,245,0 +170740810571,245,0 +170740810619,245,0 +170740810667,245,0 +170740810717,245,0 +170740810766,245,0 +170740810814,245,0 +170740810864,245,0 +170740810912,245,0 +170740810959,245,0 +170740811007,245,0 +170740811057,245,0 +170740811106,245,0 +170740811154,245,0 +170740811202,245,0 +170740811250,245,0 +170740811298,245,0 +170740811348,245,0 +170740811396,245,0 +170740811445,245,0 +170740811493,245,0 +170740811543,245,0 +170740811592,245,0 +170740811640,245,0 +170740811688,245,0 +170740811738,245,0 +170740811786,245,0 +170740811835,245,0 +170740811883,245,0 +170740811933,245,0 +170740811981,245,0 +170740812030,245,0 +170740812078,245,0 +170740812128,245,0 +170740812176,245,0 +170740812224,245,0 +170740812271,245,0 +170740812319,245,0 +170740812367,245,0 +170740812415,245,0 +170740812463,245,0 +170740812511,245,0 +170740812559,245,0 +170740812607,245,0 +170740812654,245,0 +170740812702,245,0 +170740812750,245,0 +170740812798,245,0 +170740812846,245,0 +170740812894,245,0 +170740812942,245,0 +170740812990,245,0 +170740813038,245,0 +170740813086,245,0 +170740813134,245,0 +170740813181,245,0 +170740813229,245,0 +170740813277,245,0 +170740813325,245,0 +170740813373,245,0 +170740813421,245,0 +170740813470,245,0 +170740813519,245,0 +170740813567,245,0 +170740813615,245,0 +170740813663,245,0 +170740813711,245,0 +170740813759,245,0 +170740813807,245,0 +170740813855,245,0 +170740813902,245,0 +170740813950,245,0 +170740813998,245,0 +170740814046,245,0 +170740814094,245,0 +170740814142,245,0 +170740814190,245,0 +170740814237,245,0 +170740814285,245,0 +170740814333,245,0 +170740814381,245,0 +170740814431,245,0 +170740814479,245,0 +170740814528,245,0 +170740814578,245,0 +170740814627,245,0 +170740814675,245,0 +170740814725,245,0 +170740814773,245,0 +170740814821,245,0 +170740814868,245,0 +170740814916,245,0 +170740814964,245,0 +170740815012,245,0 +170740815060,245,0 +170740815109,245,0 +170740815157,245,0 +170740815207,245,0 +170740815256,245,0 +170740815304,245,0 +170740815352,245,0 +170740815400,245,0 +170740815450,245,0 +170740815498,245,0 +170740815546,245,0 +170740815594,245,0 +170740815642,245,0 +170740815690,245,0 +170740815738,245,0 +170740815786,245,0 +170740815834,245,0 +170740815882,245,0 +170740815931,245,0 +170740815979,245,0 +170740816027,245,0 +170740816075,245,0 +170740816123,245,0 +170740816173,245,0 +170740816221,245,0 +170740816270,245,0 +170740816318,245,0 +170740816366,245,0 +170740816415,245,0 +170740816463,245,0 +170740816511,245,0 +170740816559,245,0 +170740816607,245,0 +170740816655,245,0 +170740816702,245,0 +170740816750,245,0 +170740816798,245,0 +170740816846,245,0 +170740816894,245,0 +170740816942,245,0 +170740816991,245,0 +170740817039,245,0 +170740817087,245,0 +170740817137,245,0 +170740817186,245,0 +170740817236,245,0 +170740817284,245,0 +170740817332,245,0 +170740817381,245,0 +170740817429,245,0 +170740817479,245,0 +170740817527,245,0 +170740817576,245,0 +170740817624,245,0 +170740817672,245,0 +170740817720,245,0 +170740817770,245,0 +170740817819,245,0 +170740817867,245,0 +170740817915,245,0 +170740817964,245,0 +170740818012,245,0 +170740818060,245,0 +170740818108,245,0 +170740818158,245,0 +170740818206,245,0 +170740818254,245,0 +170740818301,245,0 +170740818349,245,0 +170740818397,245,0 +170740818445,245,0 +170740818495,245,0 +170740818542,245,0 +170740818592,245,0 +170740818641,245,0 +170740818691,245,0 +170740818740,245,0 +170740818788,245,0 +170740818836,245,0 +170740818884,245,0 +170740818933,245,0 +170740818981,245,0 +170740819029,245,0 +170740819077,245,0 +170740819125,245,0 +170740819173,245,0 +170740819221,245,0 +170740819269,245,0 +170740819316,245,0 +170740819364,245,0 +170740819412,245,0 +170740819460,245,0 +170740819510,245,0 +170740819557,245,0 +170740819605,245,0 +170740819653,245,0 +170740819701,245,0 +170740819749,245,0 +170740819797,245,0 +170740819845,245,0 +170740819893,245,0 +170740819940,245,0 +170740819988,245,0 +170740820036,245,0 +170740820085,245,0 +170740820133,245,0 +170740820181,245,0 +170740820229,245,0 +170740820277,245,0 +170740820325,245,0 +170740820373,245,0 +170740820421,245,0 +170740820468,245,0 +170740820518,245,0 +170740820566,245,0 +170740820614,245,0 +170740820661,245,0 +170740820711,245,0 +170740820759,245,0 +170740820807,245,0 +170740820855,245,0 +170740820902,245,0 +170740820950,245,0 +170740820998,245,0 +170740821046,245,0 +170740821094,245,0 +170740821144,245,0 +170740821192,245,0 +170740821240,245,0 +170740821289,245,0 +170740821337,245,0 +170740821385,245,0 +170740821433,245,0 +170740821481,245,0 +170740821529,245,0 +170740821579,245,0 +170740821628,245,0 +170740821676,245,0 +170740821724,245,0 +170740821772,245,0 +170740821820,245,0 +170740821868,245,0 +170740821915,245,0 +170740821963,245,0 +170740822013,245,0 +170740822062,245,0 +170740822112,245,0 +170740822161,245,0 +170740822209,245,0 +170740822259,245,0 +170740822308,245,0 +170740822356,245,0 +170740822404,245,0 +170740822452,245,0 +170740822500,245,0 +170740822548,245,0 +170740822596,245,0 +170740822645,245,0 +170740822693,245,0 +170740822741,245,0 +170740822789,245,0 +170740822836,245,0 +170740822884,245,0 +170740822932,245,0 +170740822980,245,0 +170740823028,245,0 +170740823076,245,0 +170740823125,245,0 +170740823175,245,0 +170740823224,245,0 +170740823272,245,0 +170740823322,245,0 +170740823371,245,0 +170740823421,245,0 +170740823469,245,0 +170740823517,245,0 +170740823564,245,0 +170740823612,245,0 +170740823660,245,0 +170740823708,245,0 +170740823758,245,0 +170740823805,245,0 +170740823853,245,0 +170740823901,245,0 +170740823949,245,0 +170740823997,245,0 +170740824045,245,0 +170740824093,245,0 +170740824141,245,0 +170740824189,245,0 +170740824237,245,0 +170740824286,245,0 +170740824334,245,0 +170740824384,245,0 +170740824433,245,0 +170740824481,245,0 +170740824531,245,0 +170740824579,245,0 +170740824627,245,0 +170740824676,245,0 +170740824724,245,0 +170740824774,245,0 +170740824822,245,0 +170740824870,245,0 +170740824918,245,0 +170740824966,245,0 +170740825015,245,0 +170740825064,245,0 +170740825112,245,0 +170740825162,245,0 +170740825211,245,0 +170740825261,245,0 +170740825309,245,0 +170740825357,245,0 +170740825405,245,0 +170740825453,245,0 +170740825501,245,0 +170740825549,245,0 +170740825596,245,0 +170740825644,245,0 +170740825692,245,0 +170740825740,245,0 +170740825788,245,0 +170740825836,245,0 +170740825884,245,0 +170740825931,245,0 +170740825979,245,0 +170740826027,245,0 +170740826077,245,0 +170740826125,245,0 +170740826174,245,0 +170740826224,245,0 +170740826273,245,0 +170740826321,245,0 +170740826369,245,0 +170740826419,245,0 +170740826467,245,0 +170740826515,245,0 +170740826564,245,0 +170740826614,245,0 +170740826661,245,0 +170740826709,245,0 +170740826757,245,0 +170740826805,245,0 +170740826853,245,0 +170740826901,245,0 +170740826949,244,0 +170740826998,245,0 +170740827048,245,0 +170740827096,245,0 +170740827145,245,0 +170740827193,245,0 +170740827243,245,0 +170740827292,245,0 +170740827340,245,0 +170740827388,245,0 +170740827438,245,0 +170740827487,245,0 +170740827535,245,0 +170740827583,245,0 +170740827631,245,0 +170740827679,245,0 +170740827728,245,0 +170740827776,245,0 +170740827824,245,0 +170740827872,245,0 +170740827920,245,0 +170740827970,245,0 +170740828018,245,0 +170740828066,245,0 +170740828114,245,0 +170740828162,245,0 +170740828210,245,0 +170740828257,245,0 +170740828305,244,0 +170740828353,245,0 +170740828401,245,0 +170740828451,245,0 +170740828499,245,0 +170740828547,245,0 +170740828596,245,0 +170740828644,245,0 +170740828692,245,0 +170740828740,245,0 +170740828788,245,0 +170740828836,244,0 +170740828884,245,0 +170740828933,245,0 +170740828981,245,0 +170740829029,245,0 +170740829077,245,0 +170740829125,245,0 +170740829173,245,0 +170740829221,245,0 +170740829269,245,0 +170740829318,245,0 +170740829366,245,0 +170740829416,244,0 +170740829465,245,0 +170740829515,245,0 +170740829564,244,0 +170740829612,245,0 +170740829662,245,0 +170740829710,245,0 +170740829758,245,0 +170740829806,245,0 +170740829854,245,0 +170740829902,245,0 +170740829949,245,0 +170740829997,245,0 +170740830047,245,0 +170740830095,245,0 +170740830143,245,0 +170740830192,245,0 +170740830242,244,0 +170740830291,245,0 +170740830339,245,0 +170740830387,245,0 +170740830437,245,0 +170740830485,244,0 +170740830534,245,0 +170740830584,245,0 +170740830633,244,0 +170740830681,245,0 +170740830729,244,0 +170740830777,245,0 +170740830825,244,0 +170740830872,245,0 +170740830922,245,0 +170740830971,245,0 +170740831019,245,0 +170740831067,245,0 +170740831116,244,0 +170740831164,245,0 +170740831212,244,0 +170740831260,245,0 +170740831308,245,0 +170740831356,244,0 +170740831404,244,0 +170740831452,245,0 +170740831499,245,0 +170740831547,245,0 +170740831595,245,0 +170740831643,245,0 +170740831691,245,0 +170740831739,245,0 +170740831787,245,0 +170740831835,244,0 +170740831883,244,0 +170740831931,244,0 +170740831978,245,0 +170740832026,245,0 +170740832074,245,0 +170740832122,245,0 +170740832170,245,0 +170740832218,245,0 +170740832266,245,0 +170740832314,245,0 +170740832361,245,0 +170740832409,245,0 +170740832457,245,0 +170740832505,245,0 +170740832553,245,0 +170740832602,245,0 +170740832650,245,0 +170740832698,245,0 +170740832746,245,0 +170740832794,245,0 +170740832843,245,0 +170740832891,245,0 +170740832941,245,0 +170740832990,244,0 +170740833038,245,0 +170740833086,245,0 +170740833134,245,0 +170740833182,245,0 +170740833230,245,0 +170740833278,245,0 +170740833326,245,0 +170740833374,245,0 +170740833424,245,0 +170740833472,245,0 +170740833519,245,0 +170740833567,245,0 +170740833617,245,0 +170740833665,245,0 +170740833714,245,0 +170740833762,245,0 +170740833810,245,0 +170740833860,244,0 +170740833908,245,0 +170740833956,244,0 +170740834004,244,0 +170740834052,244,0 +170740834100,245,0 +170740834147,245,0 +170740834197,244,0 +170740834245,245,0 +170740834293,245,0 +170740834341,245,0 +170740834389,244,0 +170740834437,245,0 +170740834486,244,0 +170740834534,245,0 +170740834582,245,0 +170740834630,245,0 +170740834678,244,0 +170740834726,245,0 +170740834774,245,0 +170740834824,245,0 +170740834872,245,0 +170740834921,244,0 +170740834969,245,0 +170740835017,245,0 +170740835065,245,0 +170740835114,244,0 +170740835162,245,0 +170740835212,244,0 +170740835260,244,0 +170740835308,245,0 +170740835356,244,0 +170740835405,244,0 +170740835453,245,0 +170740835501,245,0 +170740835549,245,0 +170740835599,245,0 +170740835648,245,0 +170740835696,245,0 +170740835744,244,0 +170740835792,244,0 +170740835842,244,0 +170740835889,245,0 +170740835937,245,0 +170740835985,245,0 +170740836033,245,0 +170740836081,245,0 +170740836129,245,0 +170740836177,244,0 +170740836225,245,0 +170740836273,244,0 +170740836321,245,0 +170740836371,244,0 +170740836418,245,0 +170740836466,245,0 +170740836514,245,0 +170740836562,245,0 +170740836610,245,0 +170740836659,245,0 +170740836707,245,0 +170740836755,245,0 +170740836803,245,0 +170740836851,245,0 +170740836899,245,0 +170740836947,245,0 +170740836994,245,0 +170740837042,245,0 +170740837092,245,0 +170740837140,245,0 +170740837188,245,0 +170740837235,245,0 +170740837283,245,0 +170740837331,245,0 +170740837379,245,0 +170740837427,245,0 +170740837475,245,0 +170740837522,245,0 +170740837570,245,0 +170740837618,245,0 +170740837666,245,0 +170740837714,245,0 +170740837762,245,0 +170740837810,245,0 +170740837858,245,0 +170740837906,245,0 +170740837953,245,0 +170740838001,245,0 +170740838049,245,0 +170740838097,245,0 +170740838145,245,0 +170740838193,245,0 +170740838241,245,0 +170740838289,245,0 +170740838337,245,0 +170740838384,245,0 +170740838432,245,0 +170740838480,245,0 +170740838528,245,0 +170740838576,245,0 +170740838624,245,0 +170740838673,245,0 +170740838721,245,0 +170740838769,245,0 +170740838819,245,0 +170740838867,245,0 +170740838916,245,0 +170740838966,245,0 +170740839015,245,0 +170740839063,245,0 +170740839111,245,0 +170740839159,245,0 +170740839207,245,0 +170740839257,245,0 +170740839305,245,0 +170740839354,245,0 +170740839402,245,0 +170740839452,245,0 +170740839500,245,0 +170740839549,245,0 +170740839599,245,0 +170740839646,245,0 +170740839694,245,0 +170740839744,245,0 +170740839792,245,0 +170740839840,245,0 +170740839888,245,0 +170740839936,245,0 +170740839984,245,0 +170740840031,245,0 +170740840079,245,0 +170740840127,245,0 +170740840175,245,0 +170740840223,245,0 +170740840273,245,0 +170740840322,245,0 +170740840370,245,0 +170740840419,245,0 +170740840469,245,0 +170740840517,245,0 +170740840565,245,0 +170740840614,245,0 +170740840662,245,0 +170740840710,245,0 +170740840758,245,0 +170740840808,245,0 +170740840856,245,0 +170740840905,245,0 +170740840953,245,0 +170740841001,245,0 +170740841049,245,0 +170740841097,245,0 +170740841145,245,0 +170740841193,245,0 +170740841240,245,0 +170740841288,245,0 +170740841336,245,0 +170740841384,245,0 +170740841432,245,0 +170740841480,245,0 +170740841528,245,0 +170740841576,245,0 +170740841624,245,0 +170740841671,245,0 +170740841719,245,0 +170740841767,245,0 +170740841815,244,0 +170740841863,245,0 +170740841912,245,0 +170740841960,245,0 +170740842008,245,0 +170740842056,245,0 +170740842104,245,0 +170740842152,245,0 +170740842202,245,0 +170740842251,245,0 +170740842299,245,0 +170740842347,245,0 +170740842395,245,0 +170740842445,245,0 +170740842493,245,0 +170740842540,245,0 +170740842588,245,0 +170740842636,245,0 +170740842686,244,0 +170740842734,245,0 +170740842782,245,0 +170740842830,245,0 +170740842878,245,0 +170740842926,245,0 +170740842974,245,0 +170740843023,245,0 +170740843071,245,0 +170740843119,245,0 +170740843167,245,0 +170740843215,245,0 +170740843263,245,0 +170740843311,245,0 +170740843359,244,0 +170740843407,245,0 +170740843454,245,0 +170740843502,245,0 +170740843550,245,0 +170740843598,244,0 +170740843646,245,0 +170740843696,245,0 +170740843745,245,0 +170740843795,245,0 +170740843843,245,0 +170740843891,245,0 +170740843939,244,0 +170740843987,245,0 +170740844036,245,0 +170740844084,245,0 +170740844132,245,0 +170740844182,245,0 +170740844230,245,0 +170740844277,245,0 +170740844327,245,0 +170740844375,245,0 +170740844423,245,0 +170740844471,245,0 +170740844520,245,0 +170740844568,244,0 +170740844616,245,0 +170740844664,245,0 +170740844712,245,0 +170740844760,245,0 +170740844809,244,0 +170740844857,244,0 +170740844907,245,0 +170740844955,244,0 +170740845002,245,0 +170740845050,245,0 +170740845098,245,0 +170740845146,245,0 +170740845194,245,0 +170740845242,245,0 +170740845290,244,0 +170740845337,245,0 +170740845385,245,0 +170740845433,245,0 +170740845483,245,0 +170740845530,244,0 +170740845578,245,0 +170740845626,244,0 +170740845674,244,0 +170740845722,245,0 +170740845770,245,0 +170740845818,245,0 +170740845867,245,0 +170740845915,245,0 +170740845965,245,0 +170740846012,245,0 +170740846060,245,0 +170740846108,245,0 +170740846156,245,0 +170740846204,245,0 +170740846252,245,0 +170740846300,245,0 +170740846348,244,0 +170740846396,245,0 +170740846445,245,0 +170740846495,245,0 +170740846544,245,0 +170740846592,245,0 +170740846640,245,0 +170740846690,245,0 +170740846737,244,0 +170740846785,245,0 +170740846833,245,0 +170740846883,244,0 +170740846932,245,0 +170740846980,245,0 +170740847028,245,0 +170740847076,245,0 +170740847126,245,0 +170740847174,245,0 +170740847221,245,0 +170740847271,245,0 +170740847319,245,0 +170740847368,245,0 +170740847416,245,0 +170740847464,245,0 +170740847514,245,0 +170740847562,245,0 +170740847610,245,0 +170740847658,245,0 +170740847707,245,0 +170740847755,245,0 +170740847803,245,0 +170740847851,245,0 +170740847899,245,0 +170740847947,245,0 +170740847995,245,0 +170740848045,245,0 +170740848093,245,0 +170740848141,245,0 +170740848190,245,0 +170740848240,245,0 +170740848289,245,0 +170740848339,245,0 +170740848388,245,0 +170740848436,245,0 +170740848484,245,0 +170740848532,245,0 +170740848580,245,0 +170740848628,245,0 +170740848676,245,0 +170740848724,245,0 +170740848772,245,0 +170740848820,245,0 +170740848869,245,0 +170740848919,244,0 +170740848967,245,0 +170740849016,245,0 +170740849066,245,0 +170740849114,245,0 +170740849162,245,0 +170740849210,245,0 +170740849259,245,0 +170740849307,245,0 +170740849355,245,0 +170740849403,245,0 +170740849451,245,0 +170740849499,245,0 +170740849547,245,0 +170740849597,245,0 +170740849645,245,0 +170740849693,245,0 +170740849742,245,0 +170740849790,245,0 +170740849840,245,0 +170740849889,245,0 +170740849937,245,0 +170740849987,245,0 +170740850035,245,0 +170740850083,245,0 +170740850131,245,0 +170740850180,245,0 +170740850228,245,0 +170740850276,245,0 +170740850324,245,0 +170740850372,245,0 +170740850420,244,0 +170740850468,245,0 +170740850516,245,0 +170740850564,245,0 +170740850612,245,0 +170740850660,245,0 +170740850708,245,0 +170740850756,245,0 +170740850803,245,0 +170740850851,245,0 +170740850899,245,0 +170740850947,245,0 +170740850995,245,0 +170740851043,245,0 +170740851091,245,0 +170740851139,245,0 +170740851186,245,0 +170740851234,245,0 +170740851282,244,0 +170740851332,245,0 +170740851380,245,0 +170740851427,244,0 +170740851477,245,0 +170740851525,245,0 +170740851574,245,0 +170740851624,244,0 +170740851673,245,0 +170740851723,245,0 +170740851772,244,0 +170740851820,245,0 +170740851870,245,0 +170740851919,245,0 +170740851967,245,0 +170740852015,245,0 +170740852063,245,0 +170740852111,245,0 +170740852160,245,0 +170740852208,245,0 +170740852256,245,0 +170740852304,245,0 +170740852352,245,0 +170740852401,245,0 +170740852449,245,0 +170740852499,244,0 +170740852547,245,0 +170740852595,244,0 +170740852643,244,0 +170740852691,245,0 +170740852739,245,0 +170740852787,245,0 +170740852835,245,0 +170740852882,245,0 +170740852930,245,0 +170740852978,245,0 +170740853026,245,0 +170740853074,245,0 +170740853122,245,0 +170740853170,245,0 +170740853218,245,0 +170740853266,245,0 +170740853314,245,0 +170740853361,245,0 +170740853409,245,0 +170740853459,245,0 +170740853507,245,0 +170740853555,245,0 +170740853604,245,0 +170740853654,245,0 +170740853703,245,0 +170740853751,245,0 +170740853799,245,0 +170740853849,245,0 +170740853898,245,0 +170740853946,245,0 +170740853996,245,0 +170740854043,245,0 +170740854091,245,0 +170740854141,245,0 +170740854189,245,0 +170740854237,245,0 +170740854286,245,0 +170740854334,245,0 +170740854382,244,0 +170740854430,245,0 +170740854478,245,0 +170740854526,245,0 +170740854576,245,0 +170740854624,245,0 +170740854673,245,0 +170740854721,245,0 +170740854769,245,0 +170740854819,245,0 +170740854867,245,0 +170740854916,245,0 +170740854964,245,0 +170740855014,245,0 +170740855063,245,0 +170740855111,245,0 +170740855159,245,0 +170740855207,245,0 +170740855255,245,0 +170740855303,245,0 +170740855351,245,0 +170740855400,245,0 +170740855450,245,0 +170740855498,245,0 +170740855546,245,0 +170740855595,245,0 +170740855643,245,0 +170740855693,245,0 +170740855742,245,0 +170740855790,245,0 +170740855840,245,0 +170740855887,245,0 +170740855935,245,0 +170740855983,245,0 +170740856031,245,0 +170740856079,245,0 +170740856127,245,0 +170740856175,245,0 +170740856225,245,0 +170740856272,245,0 +170740856320,245,0 +170740856370,245,0 +170740856418,245,0 +170740856467,245,0 +170740856515,245,0 +170740856565,245,0 +170740856614,245,0 +170740856662,245,0 +170740856710,245,0 +170740856758,245,0 +170740856808,245,0 +170740856857,245,0 +170740856905,245,0 +170740856953,245,0 +170740857001,245,0 +170740857051,245,0 +170740857100,245,0 +170740857150,245,0 +170740857198,245,0 +170740857246,245,0 +170740857294,245,0 +170740857342,245,0 +170740857391,245,0 +170740857439,245,0 +170740857487,245,0 +170740857535,245,0 +170740857583,245,0 +170740857632,245,0 +170740857680,245,0 +170740857730,245,0 +170740857778,245,0 +170740857827,245,0 +170740857877,245,0 +170740857925,245,0 +170740857974,245,0 +170740858022,245,0 +170740858070,245,0 +170740858120,245,0 +170740858168,245,0 +170740858216,245,0 +170740858264,245,0 +170740858313,245,0 +170740858361,245,0 +170740858411,245,0 +170740858460,245,0 +170740858510,245,0 +170740858558,245,0 +170740858606,245,0 +170740858655,245,0 +170740858705,245,0 +170740858753,245,0 +170740858800,245,0 +170740858848,245,0 +170740858896,244,0 +170740858944,245,0 +170740858992,245,0 +170740859042,245,0 +170740859091,245,0 +170740859141,245,0 +170740859189,245,0 +170740859237,245,0 +170740859286,245,0 +170740859336,245,0 +170740859384,245,0 +170740859433,245,0 +170740859481,245,0 +170740859531,245,0 +170740859579,245,0 +170740859628,245,0 +170740859676,245,0 +170740859726,245,0 +170740859775,245,0 +170740859823,245,0 +170740859872,245,0 +170740859920,244,0 +170740859968,245,0 +170740860016,245,0 +170740860064,245,0 +170740860114,245,0 +170740860162,245,0 +170740860210,245,0 +170740860258,245,0 +170740860307,245,0 +170740860355,245,0 +170740860405,245,0 +170740860454,245,0 +170740860504,244,0 +170740860553,245,0 +170740860601,245,0 +170740860649,245,0 +170740860697,245,0 +170740860745,245,0 +170740860795,245,0 +170740860842,245,0 +170740860890,245,0 +170740860938,245,0 +170740860986,245,0 +170740861034,245,0 +170740861084,245,0 +170740861133,245,0 +170740861183,245,0 +170740861232,245,0 +170740861280,245,0 +170740861328,244,0 +170740861376,244,0 +170740861424,245,0 +170740861474,245,0 +170740861522,245,0 +170740861569,245,0 +170740861617,244,0 +170740861665,245,0 +170740861715,245,0 +170740861763,245,0 +170740861811,245,0 +170740861860,245,0 +170740861910,244,0 +170740861958,245,0 +170740862007,244,0 +170740862057,245,0 +170740862105,245,0 +170740862153,245,0 +170740862202,245,0 +170740862252,245,0 +170740862301,245,0 +170740862349,245,0 +170740862397,245,0 +170740862447,245,0 +170740862494,245,0 +170740862542,245,0 +170740862592,245,0 +170740862640,245,0 +170740862689,245,0 +170740862739,245,0 +170740862787,245,0 +170740862835,245,0 +170740862884,245,0 +170740862934,245,0 +170740862982,245,0 +170740863030,245,0 +170740863078,245,0 +170740863126,245,0 +170740863174,245,0 +170740863223,245,0 +170740863273,245,0 +170740863321,245,0 +170740863368,245,0 +170740863418,245,0 +170740863466,245,0 +170740863514,245,0 +170740863562,245,0 +170740863610,245,0 +170740863658,245,0 +170740863707,245,0 +170740863755,245,0 +170740863805,245,0 +170740863853,245,0 +170740863902,245,0 +170740863952,245,0 +170740864001,245,0 +170740864049,245,0 +170740864097,245,0 +170740864147,245,0 +170740864195,245,0 +170740864243,245,0 +170740864291,245,0 +170740864338,245,0 +170740864386,245,0 +170740864434,245,0 +170740864482,245,0 +170740864532,245,0 +170740864580,245,0 +170740864628,245,0 +170740864675,245,0 +170740864723,245,0 +170740864771,245,0 +170740864821,245,0 +170740864869,245,0 +170740864917,245,0 +170740864965,245,0 +170740865013,245,0 +170740865061,245,0 +170740865110,245,0 +170740865160,245,0 +170740865208,245,0 +170740865257,245,0 +170740865307,245,0 +170740865356,245,0 +170740865404,245,0 +170740865452,245,0 +170740865500,245,0 +170740865550,245,0 +170740865598,245,0 +170740865646,245,0 +170740865694,245,0 +170740865742,245,0 +170740865789,245,0 +170740865839,245,0 +170740865887,245,0 +170740865935,245,0 +170740865983,245,0 +170740866031,245,0 +170740866079,245,0 +170740866127,245,0 +170740866176,245,0 +170740866224,245,0 +170740866272,245,0 +170740866320,245,0 +170740866368,245,0 +170740866416,245,0 +170740866466,245,0 +170740866514,245,0 +170740866562,245,0 +170740866611,245,0 +170740866661,245,0 +170740866709,245,0 +170740866758,245,0 +170740866808,245,0 +170740866856,245,0 +170740866904,245,0 +170740866953,245,0 +170740867001,245,0 +170740867049,245,0 +170740867097,245,0 +170740867145,245,0 +170740867194,245,0 +170740867242,245,0 +170740867290,245,0 +170740867340,245,0 +170740867388,245,0 +170740867436,245,0 +170740867484,245,0 +170740867533,245,0 +170740867583,245,0 +170740867631,245,0 +170740867680,245,0 +170740867730,245,0 +170740867778,245,0 +170740867827,245,0 +170740867875,245,0 +170740867923,245,0 +170740867971,245,0 +170740868019,245,0 +170740868067,245,0 +170740868115,245,0 +170740868163,245,0 +170740868211,245,0 +170740868260,245,0 +170740868308,245,0 +170740868356,245,0 +170740868404,245,0 +170740868452,245,0 +170740868499,245,0 +170740868547,245,0 +170740868595,245,0 +170740868643,245,0 +170740868691,245,0 +170740868741,245,0 +170740868789,245,0 +170740868837,245,0 +170740868885,245,0 +170740868933,245,0 +170740868982,245,0 +170740869030,245,0 +170740869078,245,0 +170740869126,245,0 +170740869174,245,0 +170740869222,245,0 +170740869270,244,0 +170740869318,245,0 +170740869366,245,0 +170740869414,245,0 +170740869462,245,0 +170740869510,245,0 +170740869558,245,0 +170740869606,244,0 +170740869654,245,0 +170740869702,244,0 +170740869749,245,0 +170740869797,245,0 +170740869847,245,0 +170740869895,244,0 +170740869943,245,0 +170740869991,245,0 +170740870039,245,0 +170740870088,245,0 +170740870136,245,0 +170740870186,245,0 +170740870234,245,0 +170740870282,245,0 +170740870330,245,0 +170740870378,245,0 +170740870427,245,0 +170740870477,245,0 +170740870526,245,0 +170740870574,245,0 +170740870624,245,0 +170740870673,245,0 +170740870721,245,0 +170740870769,244,0 +170740870817,245,0 +170740870865,245,0 +170740870913,245,0 +170740870961,245,0 +170740871009,245,0 +170740871057,245,0 +170740871106,245,0 +170740871156,245,0 +170740871204,245,0 +170740871252,245,0 +170740871300,245,0 +170740871349,245,0 +170740871397,245,0 +170740871445,245,0 +170740871493,244,0 +170740871541,245,0 +170740871590,245,0 +170740871638,245,0 +170740871686,245,0 +170740871734,245,0 +170740871782,244,0 +170740871830,245,0 +170740871878,245,0 +170740871926,244,0 +170740871974,245,0 +170740872022,245,0 +170740872072,245,0 +170740872120,245,0 +170740872167,245,0 +170740872217,245,0 +170740872266,245,0 +170740872314,245,0 +170740872362,245,0 +170740872410,245,0 +170740872458,245,0 +170740872508,245,0 +170740872556,244,0 +170740872604,245,0 +170740872652,245,0 +170740872701,245,0 +170740872751,245,0 +170740872799,245,0 +170740872846,245,0 +170740872894,245,0 +170740872942,245,0 +170740872990,245,0 +170740873038,245,0 +170740873086,245,0 +170740873134,245,0 +170740873182,245,0 +170740873232,245,0 +170740873280,245,0 +170740873328,245,0 +170740873377,245,0 +170740873427,245,0 +170740873475,245,0 +170740873524,245,0 +170740873572,245,0 +170740873622,245,0 +170740873670,245,0 +170740873717,245,0 +170740873765,245,0 +170740873813,245,0 +170740873861,245,0 +170740873909,245,0 +170740873959,245,0 +170740874007,245,0 +170740874056,245,0 +170740874106,245,0 +170740874155,245,0 +170740874205,245,0 +170740874253,245,0 +170740874302,245,0 +170740874350,245,0 +170740874399,245,0 +170740874447,245,0 +170740874495,245,0 +170740874543,245,0 +170740874593,244,0 +170740874642,245,0 +170740874690,245,0 +170740874740,245,0 +170740874788,245,0 +170740874836,245,0 +170740874884,245,0 +170740874931,245,0 +170740874979,245,0 +170740875029,245,0 +170740875077,245,0 +170740875125,245,0 +170740875173,245,0 +170740875221,245,0 +170740875270,245,0 +170740875320,245,0 +170740875369,245,0 +170740875417,245,0 +170740875465,245,0 +170740875513,245,0 +170740875561,245,0 +170740875611,245,0 +170740875659,245,0 +170740875707,245,0 +170740875755,244,0 +170740875803,245,0 +170740875851,245,0 +170740875899,245,0 +170740875946,245,0 +170740875996,245,0 +170740876044,245,0 +170740876092,245,0 +170740876140,245,0 +170740876188,245,0 +170740876237,245,0 +170740876285,245,0 +170740876333,245,0 +170740876381,245,0 +170740876429,245,0 +170740876477,245,0 +170740876525,245,0 +170740876573,245,0 +170740876622,245,0 +170740876672,245,0 +170740876722,245,0 +170740876769,245,0 +170740876819,245,0 +170740876867,245,0 +170740876915,245,0 +170740876963,245,0 +170740877011,245,0 +170740877059,245,0 +170740877108,245,0 +170740877158,245,0 +170740877206,245,0 +170740877254,245,0 +170740877302,245,0 +170740877350,245,0 +170740877398,245,0 +170740877446,245,0 +170740877493,245,0 +170740877541,245,0 +170740877589,245,0 +170740877637,245,0 +170740877685,245,0 +170740877733,245,0 +170740877782,245,0 +170740877830,245,0 +170740877878,245,0 +170740877926,245,0 +170740877974,245,0 +170740878022,245,0 +170740878070,245,0 +170740878117,245,0 +170740878165,245,0 +170740878213,245,0 +170740878261,245,0 +170740878309,245,0 +170740878357,245,0 +170740878405,245,0 +170740878454,245,0 +170740878502,245,0 +170740878552,245,0 +170740878600,245,0 +170740878649,245,0 +170740878697,245,0 +170740878745,245,0 +170740878795,245,0 +170740878844,245,0 +170740878892,245,0 +170740878940,245,0 +170740878988,245,0 +170740879037,245,0 +170740879085,245,0 +170740879133,245,0 +170740879181,245,0 +170740879229,245,0 +170740879277,245,0 +170740879325,245,0 +170740879373,245,0 +170740879420,245,0 +170740879470,245,0 +170740879518,245,0 +170740879567,245,0 +170740879615,245,0 +170740879663,245,0 +170740879713,245,0 +170740879760,245,0 +170740879808,245,0 +170740879856,245,0 +170740879904,245,0 +170740879952,245,0 +170740880000,245,0 +170740880048,245,0 +170740880097,245,0 +170740880145,245,0 +170740880193,245,0 +170740880241,245,0 +170740880289,245,0 +170740880337,245,0 +170740880384,245,0 +170740880432,245,0 +170740880480,245,0 +170740880528,245,0 +170740880576,245,0 +170740880624,245,0 +170740880672,245,0 +170740880720,245,0 +170740880768,245,0 +170740880818,245,0 +170740880866,245,0 +170740880914,245,0 +170740880962,245,0 +170740881010,245,0 +170740881058,245,0 +170740881106,245,0 +170740881154,245,0 +170740881203,245,0 +170740881251,245,0 +170740881299,245,0 +170740881347,245,0 +170740881395,245,0 +170740881443,245,0 +170740881492,245,0 +170740881540,245,0 +170740881588,245,0 +170740881636,245,0 +170740881684,245,0 +170740881733,245,0 +170740881781,245,0 +170740881831,245,0 +170740881880,245,0 +170740881930,245,0 +170740881978,245,0 +170740882027,245,0 +170740882075,245,0 +170740882123,245,0 +170740882173,245,0 +170740882221,245,0 +170740882270,245,0 +170740882320,245,0 +170740882368,245,0 +170740882415,245,0 +170740882463,245,0 +170740882511,245,0 +170740882561,245,0 +170740882610,245,0 +170740882658,245,0 +170740882706,245,0 +170740882754,245,0 +170740882802,245,0 +170740882850,245,0 +170740882898,245,0 +170740882946,245,0 +170740882994,245,0 +170740883042,245,0 +170740883090,245,0 +170740883139,245,0 +170740883189,245,0 +170740883238,245,0 +170740883288,245,0 +170740883336,245,0 +170740883384,245,0 +170740883432,245,0 +170740883480,245,0 +170740883528,245,0 +170740883576,245,0 +170740883624,245,0 +170740883672,245,0 +170740883720,245,0 +170740883769,245,0 +170740883819,245,0 +170740883868,245,0 +170740883918,245,0 +170740883967,245,0 +170740884015,245,0 +170740884063,245,0 +170740884113,245,0 +170740884161,245,0 +170740884208,245,0 +170740884256,245,0 +170740884306,245,0 +170740884354,245,0 +170740884403,245,0 +170740884453,245,0 +170740884502,245,0 +170740884550,245,0 +170740884598,245,0 +170740884648,245,0 +170740884696,245,0 +170740884744,245,0 +170740884791,245,0 +170740884841,245,0 +170740884890,245,0 +170740884938,245,0 +170740884986,245,0 +170740885034,245,0 +170740885082,245,0 +170740885130,245,0 +170740885179,245,0 +170740885227,245,0 +170740885275,245,0 +170740885324,245,0 +170740885372,245,0 +170740885420,245,0 +170740885468,245,0 +170740885517,245,0 +170740885565,245,0 +170740885613,245,0 +170740885661,245,0 +170740885709,245,0 +170740885757,245,0 +170740885805,245,0 +170740885853,245,0 +170740885901,245,0 +170740885948,245,0 +170740885996,245,0 +170740886044,245,0 +170740886092,245,0 +170740886140,245,0 +170740886188,245,0 +170740886237,245,0 +170740886285,245,0 +170740886333,245,0 +170740886381,245,0 +170740886429,245,0 +170740886477,245,0 +170740886525,245,0 +170740886573,245,0 +170740886622,245,0 +170740886670,245,0 +170740886718,245,0 +170740886767,245,0 +170740886815,245,0 +170740886863,245,0 +170740886913,245,0 +170740886962,245,0 +170740887010,245,0 +170740887058,245,0 +170740887108,245,0 +170740887157,245,0 +170740887205,245,0 +170740887253,245,0 +170740887303,245,0 +170740887350,245,0 +170740887400,245,0 +170740887448,245,0 +170740887496,245,0 +170740887545,245,0 +170740887595,245,0 +170740887642,245,0 +170740887690,245,0 +170740887738,245,0 +170740887786,245,0 +170740887834,245,0 +170740887882,245,0 +170740887930,245,0 +170740887979,245,0 +170740888027,245,0 +170740888077,245,0 +170740888125,245,0 +170740888172,245,0 +170740888220,245,0 +170740888268,245,0 +170740888316,245,0 +170740888364,245,0 +170740888412,245,0 +170740888460,245,0 +170740888510,245,0 +170740888558,245,0 +170740888606,245,0 +170740888654,245,0 +170740888702,245,0 +170740888749,245,0 +170740888797,245,0 +170740888845,245,0 +170740888893,245,0 +170740888941,244,0 +170740888989,245,0 +170740889037,245,0 +170740889085,245,0 +170740889133,245,0 +170740889181,245,0 +170740889229,245,0 +170740889278,245,0 +170740889326,245,0 +170740889376,245,0 +170740889425,245,0 +170740889475,245,0 +170740889523,245,0 +170740889571,245,0 +170740889620,245,0 +170740889668,245,0 +170740889718,245,0 +170740889765,245,0 +170740889815,245,0 +170740889864,245,0 +170740889912,245,0 +170740889960,245,0 +170740890010,245,0 +170740890058,245,0 +170740890105,245,0 +170740890153,245,0 +170740890203,245,0 +170740890251,245,0 +170740890300,245,0 +170740890348,245,0 +170740890396,245,0 +170740890444,245,0 +170740890492,245,0 +170740890542,245,0 +170740890590,245,0 +170740890639,245,0 +170740890688,245,0 +170740890736,245,0 +170740890784,245,0 +170740890834,245,0 +170740890882,245,0 +170740890931,245,0 +170740890981,245,0 +170740891030,245,0 +170740891078,245,0 +170740891126,245,0 +170740891174,245,0 +170740891222,245,0 +170740891272,245,0 +170740891321,245,0 +170740891369,245,0 +170740891417,245,0 +170740891465,245,0 +170740891513,245,0 +170740891563,245,0 +170740891612,245,0 +170740891662,245,0 +170740891709,245,0 +170740891757,245,0 +170740891805,245,0 +170740891853,245,0 +170740891903,245,0 +170740891952,245,0 +170740892000,245,0 +170740892048,245,0 +170740892096,245,0 +170740892145,245,0 +170740892195,245,0 +170740892243,245,0 +170740892290,245,0 +170740892338,245,0 +170740892386,245,0 +170740892434,245,0 +170740892482,245,0 +170740892530,245,0 +170740892578,245,0 +170740892626,245,0 +170740892673,245,0 +170740892721,245,0 +170740892769,245,0 +170740892817,245,0 +170740892865,245,0 +170740892914,245,0 +170740892962,245,0 +170740893010,245,0 +170740893058,245,0 +170740893106,245,0 +170740893154,245,0 +170740893203,245,0 +170740893251,245,0 +170740893299,245,0 +170740893347,245,0 +170740893395,245,0 +170740893444,245,0 +170740893494,245,0 +170740893543,245,0 +170740893591,245,0 +170740893641,245,0 +170740893689,245,0 +170740893737,245,0 +170740893785,245,0 +170740893833,245,0 +170740893881,245,0 +170740893929,245,0 +170740893976,245,0 +170740894024,245,0 +170740894074,245,0 +170740894123,245,0 +170740894171,245,0 +170740894221,245,0 +170740894269,245,0 +170740894318,245,0 +170740894368,245,0 +170740894416,245,0 +170740894464,245,0 +170740894513,245,0 +170740894563,245,0 +170740894611,245,0 +170740894659,245,0 +170740894708,245,0 +170740894756,245,0 +170740894804,245,0 +170740894852,245,0 +170740894902,245,0 +170740894949,245,0 +170740894997,245,0 +170740895045,245,0 +170740895095,245,0 +170740895143,245,0 +170740895192,245,0 +170740895240,245,0 +170740895290,244,0 +170740895339,245,0 +170740895387,245,0 +170740895437,245,0 +170740895485,245,0 +170740895533,245,0 +170740895582,245,0 +170740895632,245,0 +170740895679,244,0 +170740895729,245,0 +170740895777,245,0 +170740895825,245,0 +170740895873,245,0 +170740895922,245,0 +170740895972,245,0 +170740896020,245,0 +170740896069,245,0 +170740896117,245,0 +170740896165,245,0 +170740896213,245,0 +170740896263,245,0 +170740896312,245,0 +170740896360,245,0 +170740896408,245,0 +170740896456,245,0 +170740896506,245,0 +170740896554,245,0 +170740896602,245,0 +170740896650,245,0 +170740896699,245,0 +170740896747,245,0 +170740896797,245,0 +170740896846,245,0 +170740896896,245,0 +170740896944,245,0 +170740896993,245,0 +170740897043,245,0 +170740897092,245,0 +170740897140,245,0 +170740897188,245,0 +170740897236,245,0 +170740897284,245,0 +170740897332,245,0 +170740897380,245,0 +170740897428,244,0 +170740897476,245,0 +170740897525,245,0 +170740897573,245,0 +170740897623,245,0 +170740897672,245,0 +170740897722,245,0 +170740897770,244,0 +170740897819,245,0 +170740897869,245,0 +170740897918,245,0 +170740897966,245,0 +170740898014,245,0 +170740898062,245,0 +170740898110,245,0 +170740898160,245,0 +170740898209,245,0 +170740898257,245,0 +170740898305,245,0 +170740898353,244,0 +170740898403,245,0 +170740898451,245,0 +170740898500,245,0 +170740898549,245,0 +170740898597,245,0 +170740898645,245,0 +170740898693,245,0 +170740898743,245,0 +170740898791,245,0 +170740898840,244,0 +170740898888,245,0 +170740898936,245,0 +170740898986,244,0 +170740899034,245,0 +170740899083,245,0 +170740899131,245,0 +170740899181,245,0 +170740899229,244,0 +170740899277,245,0 +170740899326,245,0 +170740899376,245,0 +170740899425,245,0 +170740899475,245,0 +170740899523,245,0 +170740899571,244,0 +170740899619,245,0 +170740899668,245,0 +170740899716,245,0 +170740899764,245,0 +170740899813,244,0 +170740899861,245,0 +170740899909,245,0 +170740899957,245,0 +170740900005,245,0 +170740900053,245,0 +170740900101,244,0 +170740900149,244,0 +170740900196,245,0 +170740900246,245,0 +170740900294,244,0 +170740900343,245,0 +170740900391,245,0 +170740900439,245,0 +170740900487,245,0 +170740900535,245,0 +170740900583,245,0 +170740900633,245,0 +170740900681,245,0 +170740900730,245,0 +170740900778,245,0 +170740900826,245,0 +170740900876,245,0 +170740900923,244,0 +170740900971,245,0 +170740901019,244,0 +170740901067,245,0 +170740901115,245,0 +170740901165,244,0 +170740901213,245,0 +170740901261,244,0 +170740901309,244,0 +170740901357,244,0 +170740901406,245,0 +170740901454,245,0 +170740901504,245,0 +170740901552,245,0 +170740901600,245,0 +170740901649,245,0 +170740901697,245,0 +170740901745,245,0 +170740901793,245,0 +170740901841,245,0 +170740901891,245,0 +170740901940,245,0 +170740901988,245,0 +170740902036,244,0 +170740902086,245,0 +170740902134,245,0 +170740902182,245,0 +170740902231,245,0 +170740902279,245,0 +170740902327,245,0 +170740902377,245,0 +170740902426,245,0 +170740902476,245,0 +170740902524,245,0 +170740902572,245,0 +170740902619,245,0 +170740902667,244,0 +170740902715,245,0 +170740902763,245,0 +170740902813,245,0 +170740902862,244,0 +170740902910,245,0 +170740902958,245,0 +170740903006,245,0 +170740903054,245,0 +170740903104,245,0 +170740903152,245,0 +170740903200,245,0 +170740903248,245,0 +170740903296,245,0 +170740903345,245,0 +170740903393,245,0 +170740903441,245,0 +170740903489,245,0 +170740903537,245,0 +170740903585,245,0 +170740903634,245,0 +170740903684,244,0 +170740903732,245,0 +170740903780,245,0 +170740903829,244,0 +170740903877,245,0 +170740903925,245,0 +170740903975,245,0 +170740904024,245,0 +170740904072,245,0 +170740904120,244,0 +170740904170,245,0 +170740904218,244,0 +170740904267,245,0 +170740904315,245,0 +170740904363,245,0 +170740904411,245,0 +170740904459,245,0 +170740904509,245,0 +170740904556,245,0 +170740904604,245,0 +170740904652,244,0 +170740904700,245,0 +170740904748,245,0 +170740904798,245,0 +170740904846,245,0 +170740904894,245,0 +170740904942,244,0 +170740904990,245,0 +170740905038,245,0 +170740905086,245,0 +170740905134,245,0 +170740905183,245,0 +170740905231,244,0 +170740905279,245,0 +170740905327,245,0 +170740905375,245,0 +170740905423,245,0 +170740905472,245,0 +170740905520,245,0 +170740905568,245,0 +170740905616,245,0 +170740905664,245,0 +170740905712,245,0 +170740905762,245,0 +170740905810,245,0 +170740905858,245,0 +170740905906,245,0 +170740905954,245,0 +170740906001,245,0 +170740906049,245,0 +170740906097,245,0 +170740906145,244,0 +170740906193,245,0 +170740906241,245,0 +170740906289,245,0 +170740906337,245,0 +170740906384,245,0 +170740906432,245,0 +170740906480,245,0 +170740906528,245,0 +170740906576,245,0 +170740906624,245,0 +170740906672,245,0 +170740906720,245,0 +170740906767,245,0 +170740906815,245,0 +170740906863,245,0 +170740906911,245,0 +170740906961,245,0 +170740907008,245,0 +170740907058,245,0 +170740907107,245,0 +170740907157,245,0 +170740907206,245,0 +170740907256,245,0 +170740907304,245,0 +170740907352,245,0 +170740907401,245,0 +170740907451,245,0 +170740907499,245,0 +170740907547,245,0 +170740907595,245,0 +170740907643,245,0 +170740907692,245,0 +170740907740,245,0 +170740907790,245,0 +170740907838,245,0 +170740907886,245,0 +170740907934,245,0 +170740907982,245,0 +170740908030,245,0 +170740908079,245,0 +170740908127,245,0 +170740908175,245,0 +170740908225,245,0 +170740908274,245,0 +170740908322,245,0 +170740908370,245,0 +170740908418,245,0 +170740908466,245,0 +170740908514,245,0 +170740908562,245,0 +170740908610,245,0 +170740908659,245,0 +170740908709,245,0 +170740908757,245,0 +170740908805,245,0 +170740908853,245,0 +170740908901,245,0 +170740908949,245,0 +170740908998,245,0 +170740909046,245,0 +170740909094,245,0 +170740909142,245,0 +170740909190,245,0 +170740909240,245,0 +170740909287,245,0 +170740909335,245,0 +170740909385,245,0 +170740909433,245,0 +170740909482,245,0 +170740909532,245,0 +170740909580,245,0 +170740909629,245,0 +170740909677,245,0 +170740909725,245,0 +170740909773,245,0 +170740909823,245,0 +170740909872,245,0 +170740909922,245,0 +170740909971,245,0 +170740910021,245,0 +170740910070,245,0 +170740910118,245,0 +170740910166,245,0 +170740910214,245,0 +170740910262,245,0 +170740910310,245,0 +170740910358,245,0 +170740910408,245,0 +170740910456,245,0 +170740910504,245,0 +170740910551,245,0 +170740910601,245,0 +170740910650,245,0 +170740910698,245,0 +170740910746,245,0 +170740910794,245,0 +170740910842,245,0 +170740910890,245,0 +170740910939,245,0 +170740910987,245,0 +170740911035,245,0 +170740911083,245,0 +170740911133,245,0 +170740911181,245,0 +170740911228,245,0 +170740911276,245,0 +170740911324,245,0 +170740911372,245,0 +170740911420,245,0 +170740911468,245,0 +170740911516,245,0 +170740911565,245,0 +170740911615,245,0 +170740911663,245,0 +170740911711,245,0 +170740911758,245,0 +170740911808,245,0 +170740911856,245,0 +170740911904,245,0 +170740911952,245,0 +170740912000,245,0 +170740912049,245,0 +170740912097,245,0 +170740912145,245,0 +170740912193,245,0 +170740912243,245,0 +170740912291,245,0 +170740912340,245,0 +170740912390,245,0 +170740912438,245,0 +170740912486,245,0 +170740912533,245,0 +170740912581,245,0 +170740912631,245,0 +170740912680,245,0 +170740912728,245,0 +170740912778,245,0 +170740912826,245,0 +170740912874,245,0 +170740912922,245,0 +170740912970,245,0 +170740913019,245,0 +170740913067,246,0 +170740913115,245,0 +170740913163,245,0 +170740913213,245,0 +170740913260,245,0 +170740913310,245,0 +170740913358,245,0 +170740913406,245,0 +170740913454,245,0 +170740913502,245,0 +170740913551,245,0 +170740913601,245,0 +170740913649,245,0 +170740913697,245,0 +170740913745,245,0 +170740913793,245,0 +170740913842,245,0 +170740913890,245,0 +170740913938,245,0 +170740913986,245,0 +170740914034,245,0 +170740914082,245,0 +170740914130,245,0 +170740914179,245,0 +170740914227,245,0 +170740914275,245,0 +170740914323,245,0 +170740914372,245,0 +170740914422,245,0 +170740914470,245,0 +170740914518,245,0 +170740914567,245,0 +170740914615,245,0 +170740914663,245,0 +170740914711,245,0 +170740914759,245,0 +170740914807,245,0 +170740914855,245,0 +170740914903,245,0 +170740914951,245,0 +170740914999,245,0 +170740915049,245,0 +170740915097,245,0 +170740915146,245,0 +170740915194,245,0 +170740915242,245,0 +170740915290,245,0 +170740915338,245,0 +170740915386,245,0 +170740915434,245,0 +170740915482,245,0 +170740915530,245,0 +170740915577,245,0 +170740915625,245,0 +170740915673,245,0 +170740915721,245,0 +170740915769,245,0 +170740915818,245,0 +170740915866,245,0 +170740915914,245,0 +170740915962,245,0 +170740916010,245,0 +170740916060,245,0 +170740916109,245,0 +170740916158,245,0 +170740916208,245,0 +170740916256,245,0 +170740916304,245,0 +170740916352,245,0 +170740916401,245,0 +170740916451,245,0 +170740916499,245,0 +170740916547,245,0 +170740916595,245,0 +170740916643,245,0 +170740916692,245,0 +170740916740,245,0 +170740916788,245,0 +170740916838,245,0 +170740916887,245,0 +170740916937,245,0 +170740916986,245,0 +170740917034,245,0 +170740917082,245,0 +170740917130,245,0 +170740917178,245,0 +170740917226,245,0 +170740917274,245,0 +170740917323,245,0 +170740917373,245,0 +170740917421,245,0 +170740917469,245,0 +170740917518,245,0 +170740917568,245,0 +170740917617,245,0 +170740917665,245,0 +170740917713,245,0 +170740917761,245,0 +170740917809,245,0 +170740917857,245,0 +170740917905,245,0 +170740917955,245,0 +170740918003,245,0 +170740918051,245,0 +170740918099,245,0 +170740918147,245,0 +170740918194,245,0 +170740918242,245,0 +170740918290,245,0 +170740918338,245,0 +170740918386,245,0 +170740918434,245,0 +170740918484,245,0 +170740918532,245,0 +170740918580,245,0 +170740918628,245,0 +170740918677,245,0 +170740918725,245,0 +170740918773,245,0 +170740918823,245,0 +170740918871,245,0 +170740918920,245,0 +170740918970,245,0 +170740919017,245,0 +170740919065,245,0 +170740919115,245,0 +170740919164,245,0 +170740919214,245,0 +170740919264,245,0 +170740919313,245,0 +170740919361,245,0 +170740919409,245,0 +170740919457,245,0 +170740919507,245,0 +170740919556,245,0 +170740919604,245,0 +170740919652,245,0 +170740919700,245,0 +170740919749,245,0 +170740919799,245,0 +170740919847,245,0 +170740919895,245,0 +170740919943,245,0 +170740919991,245,0 +170740920039,245,0 +170740920087,245,0 +170740920134,245,0 +170740920182,245,0 +170740920230,245,0 +170740920278,245,0 +170740920326,245,0 +170740920375,245,0 +170740920425,245,0 +170740920473,245,0 +170740920522,245,0 +170740920570,245,0 +170740920618,245,0 +170740920666,245,0 +170740920715,245,0 +170740920763,245,0 +170740920813,245,0 +170740920861,245,0 +170740920908,245,0 +170740920958,245,0 +170740921006,245,0 +170740921054,245,0 +170740921102,245,0 +170740921150,245,0 +170740921197,245,0 +170740921245,245,0 +170740921293,245,0 +170740921341,245,0 +170740921389,245,0 +170740921437,245,0 +170740921485,245,0 +170740921533,245,0 +170740921581,245,0 +170740921628,245,0 +170740921676,245,0 +170740921724,245,0 +170740921772,245,0 +170740921820,245,0 +170740921868,245,0 +170740921916,245,0 +170740921965,245,0 +170740922013,245,0 +170740922061,245,0 +170740922109,245,0 +170740922157,245,0 +170740922205,245,0 +170740922254,245,0 +170740922302,245,0 +170740922352,245,0 +170740922400,245,0 +170740922448,245,0 +170740922495,245,0 +170740922543,245,0 +170740922591,245,0 +170740922639,245,0 +170740922687,245,0 +170740922735,245,0 +170740922783,245,0 +170740922831,245,0 +170740922878,245,0 +170740922926,245,0 +170740922974,245,0 +170740923022,245,0 +170740923070,245,0 +170740923118,245,0 +170740923166,245,0 +170740923214,245,0 +170740923261,245,0 +170740923309,245,0 +170740923357,245,0 +170740923405,245,0 +170740923453,245,0 +170740923501,245,0 +170740923550,245,0 +170740923598,245,0 +170740923648,245,0 +170740923696,245,0 +170740923744,245,0 +170740923792,245,0 +170740923839,245,0 +170740923889,245,0 +170740923937,245,0 +170740923985,245,0 +170740924033,245,0 +170740924081,245,0 +170740924129,245,0 +170740924177,245,0 +170740924226,245,0 +170740924274,245,0 +170740924322,245,0 +170740924370,245,0 +170740924418,245,0 +170740924466,245,0 +170740924515,245,0 +170740924563,245,0 +170740924613,245,0 +170740924662,245,0 +170740924710,245,0 +170740924758,245,0 +170740924808,245,0 +170740924856,245,0 +170740924905,245,0 +170740924953,245,0 +170740925001,245,0 +170740925049,245,0 +170740925097,245,0 +170740925147,245,0 +170740925194,245,0 +170740925242,244,0 +170740925290,245,0 +170740925338,245,0 +170740925388,245,0 +170740925436,245,0 +170740925484,245,0 +170740925532,245,0 +170740925581,245,0 +170740925629,245,0 +170740925679,245,0 +170740925727,245,0 +170740925774,245,0 +170740925822,245,0 +170740925870,245,0 +170740925920,245,0 +170740925968,245,0 +170740926017,245,0 +170740926067,244,0 +170740926115,245,0 +170740926163,245,0 +170740926212,245,0 +170740926260,245,0 +170740926310,245,0 +170740926358,245,0 +170740926407,245,0 +170740926455,245,0 +170740926503,245,0 +170740926553,245,0 +170740926602,245,0 +170740926650,245,0 +170740926698,245,0 +170740926748,245,0 +170740926797,245,0 +170740926847,245,0 +170740926894,245,0 +170740926942,245,0 +170740926990,244,0 +170740927038,245,0 +170740927086,245,0 +170740927134,244,0 +170740927184,245,0 +170740927232,245,0 +170740927281,245,0 +170740927329,245,0 +170740927379,245,0 +170740927427,245,0 +170740927475,245,0 +170740927522,245,0 +170740927572,245,0 +170740927621,245,0 +170740927669,245,0 +170740927717,245,0 +170740927767,245,0 +170740927815,245,0 +170740927863,245,0 +170740927911,245,0 +170740927959,245,0 +170740928008,245,0 +170740928056,245,0 +170740928106,244,0 +170740928153,245,0 +170740928203,244,0 +170740928252,245,0 +170740928302,245,0 +170740928350,245,0 +170740928399,245,0 +170740928449,245,0 +170740928498,245,0 +170740928546,244,0 +170740928596,244,0 +170740928644,244,0 +170740928692,245,0 +170740928741,245,0 +170740928791,245,0 +170740928840,245,0 +170740928888,245,0 +170740928936,245,0 +170740928986,245,0 +170740929035,245,0 +170740929085,245,0 +170740929133,244,0 +170740929181,245,0 +170740929230,245,0 +170740929278,245,0 +170740929327,245,0 +170740929375,245,0 +170740929423,245,0 +170740929473,244,0 +170740929521,245,0 +170740929570,245,0 +170740929618,245,0 +170740929666,245,0 +170740929714,245,0 +170740929762,245,0 +170740929812,245,0 +170740929860,245,0 +170740929908,245,0 +170740929957,245,0 +170740930005,245,0 +170740930053,245,0 +170740930101,245,0 +170740930149,245,0 +170740930197,245,0 +170740930245,245,0 +170740930294,245,0 +170740930344,245,0 +170740930392,245,0 +170740930440,245,0 +170740930488,245,0 +170740930536,245,0 +170740930584,244,0 +170740930632,245,0 +170740930680,245,0 +170740930728,245,0 +170740930776,245,0 +170740930825,245,0 +170740930873,245,0 +170740930921,245,0 +170740930969,245,0 +170740931017,245,0 +170740931065,245,0 +170740931113,245,0 +170740931163,244,0 +170740931211,245,0 +170740931260,245,0 +170740931310,245,0 +170740931358,245,0 +170740931407,245,0 +170740931455,245,0 +170740931505,245,0 +170740931554,245,0 +170740931602,245,0 +170740931650,245,0 +170740931698,245,0 +170740931747,245,0 +170740931797,245,0 +170740931845,245,0 +170740931894,245,0 +170740931942,245,0 +170740931992,245,0 +170740932041,244,0 +170740932089,245,0 +170740932139,244,0 +170740932188,245,0 +170740932238,245,0 +170740932286,245,0 +170740932335,245,0 +170740932385,245,0 +170740932433,244,0 +170740932480,245,0 +170740932528,244,0 +170740932578,245,0 +170740932626,245,0 +170740932674,245,0 +170740932721,245,0 +170740932769,245,0 +170740932819,245,0 +170740932867,245,0 +170740932915,245,0 +170740932963,245,0 +170740933011,245,0 +170740933059,245,0 +170740933106,245,0 +170740933154,245,0 +170740933202,244,0 +170740933250,245,0 +170740933298,245,0 +170740933347,244,0 +170740933395,245,0 +170740933445,245,0 +170740933494,245,0 +170740933542,245,0 +170740933590,245,0 +170740933638,245,0 +170740933688,245,0 +170740933736,245,0 +170740933784,245,0 +170740933832,244,0 +170740933881,245,0 +170740933929,245,0 +170740933977,245,0 +170740934026,244,0 +170740934074,245,0 +170740934124,245,0 +170740934172,245,0 +170740934221,245,0 +170740934269,245,0 +170740934317,245,0 +170740934365,245,0 +170740934415,244,0 +170740934463,245,0 +170740934511,245,0 +170740934558,245,0 +170740934606,244,0 +170740934654,245,0 +170740934702,245,0 +170740934750,245,0 +170740934798,245,0 +170740934846,245,0 +170740934895,245,0 +170740934943,245,0 +170740934993,245,0 +170740935040,244,0 +170740935090,245,0 +170740935138,245,0 +170740935186,244,0 +170740935235,245,0 +170740935285,245,0 +170740935333,245,0 +170740935381,245,0 +170740935430,245,0 +170740935479,244,0 +170740935527,245,0 +170740935575,245,0 +170740935624,244,0 +170740935672,245,0 +170740935720,245,0 +170740935768,244,0 +170740935816,245,0 +170740935865,244,0 +170740935913,245,0 +170740935961,245,0 +170740936009,245,0 +170740936057,245,0 +170740936105,245,0 +170740936153,245,0 +170740936201,244,0 +170740936248,245,0 +170740936298,245,0 +170740936348,245,0 +170740936396,245,0 +170740936445,245,0 +170740936495,245,0 +170740936544,244,0 +170740936594,245,0 +170740936642,245,0 +170740936691,244,0 +170740936739,245,0 +170740936787,244,0 +170740936837,245,0 +170740936886,245,0 +170740936934,245,0 +170740936982,245,0 +170740937032,245,0 +170740937080,245,0 +170740937128,244,0 +170740937175,245,0 +170740937225,245,0 +170740937273,245,0 +170740937321,245,0 +170740937369,245,0 +170740937417,245,0 +170740937466,245,0 +170740937514,245,0 +170740937564,245,0 +170740937612,245,0 +170740937661,245,0 +170740937709,245,0 +170740937757,245,0 +170740937807,245,0 +170740937856,244,0 +170740937906,245,0 +170740937954,245,0 +170740938003,244,0 +170740938051,245,0 +170740938099,244,0 +170740938147,245,0 +170740938195,245,0 +170740938245,245,0 +170740938293,245,0 +170740938341,245,0 +170740938389,245,0 +170740938436,244,0 +170740938484,245,0 +170740938532,244,0 +170740938580,245,0 +170740938628,245,0 +170740938676,245,0 +170740938724,245,0 +170740938772,245,0 +170740938819,245,0 +170740938867,245,0 +170740938917,245,0 +170740938965,245,0 +170740939012,245,0 +170740939060,245,0 +170740939110,245,0 +170740939158,245,0 +170740939206,245,0 +170740939254,245,0 +170740939301,244,0 +170740939349,245,0 +170740939397,245,0 +170740939445,245,0 +170740939493,245,0 +170740939541,245,0 +170740939589,245,0 +170740939637,245,0 +170740939685,245,0 +170740939733,245,0 +170740939780,245,0 +170740939828,245,0 +170740939876,245,0 +170740939924,245,0 +170740939972,245,0 +170740940021,245,0 +170740940069,245,0 +170740940117,245,0 +170740940165,245,0 +170740940213,245,0 +170740940261,245,0 +170740940309,245,0 +170740940358,245,0 +170740940408,245,0 +170740940456,245,0 +170740940503,245,0 +170740940551,245,0 +170740940601,245,0 +170740940650,245,0 +170740940698,245,0 +170740940746,245,0 +170740940794,245,0 +170740940842,245,0 +170740940890,245,0 +170740940938,245,0 +170740940986,245,0 +170740941035,245,0 +170740941085,245,0 +170740941134,245,0 +170740941184,245,0 +170740941232,245,0 +170740941281,245,0 +170740941329,245,0 +170740941377,245,0 +170740941425,245,0 +170740941473,245,0 +170740941523,244,0 +170740941571,245,0 +170740941620,245,0 +170740941668,244,0 +170740941716,245,0 +170740941764,245,0 +170740941812,245,0 +170740941860,244,0 +170740941907,245,0 +170740941957,245,0 +170740942005,245,0 +170740942053,245,0 +170740942102,245,0 +170740942150,245,0 +170740942198,245,0 +170740942246,244,0 +170740942294,245,0 +170740942342,245,0 +170740942390,245,0 +170740942439,244,0 +170740942487,245,0 +170740942536,245,0 +170740942584,245,0 +170740942632,245,0 +170740942682,245,0 +170740942730,245,0 +170740942779,245,0 +170740942827,244,0 +170740942877,245,0 +170740942925,245,0 +170740942972,245,0 +170740943022,245,0 +170740943070,245,0 +170740943120,245,0 +170740943167,245,0 +170740943217,245,0 +170740943267,245,0 +170740943315,245,0 +170740943363,245,0 +170740943410,245,0 +170740943460,244,0 +170740943510,245,0 +170740943559,245,0 +170740943607,245,0 +170740943655,245,0 +170740943703,245,0 +170740943751,245,0 +170740943800,245,0 +170740943848,245,0 +170740943896,245,0 +170740943944,245,0 +170740943992,245,0 +170740944039,245,0 +170740944087,245,0 +170740944135,245,0 +170740944183,245,0 +170740944233,245,0 +170740944281,245,0 +170740944328,245,0 +170740944376,245,0 +170740944426,245,0 +170740944474,245,0 +170740944523,245,0 +170740944573,245,0 +170740944622,245,0 +170740944672,245,0 +170740944720,245,0 +170740944769,245,0 +170740944817,245,0 +170740944865,245,0 +170740944913,245,0 +170740944963,245,0 +170740945011,245,0 +170740945058,245,0 +170740945106,245,0 +170740945154,245,0 +170740945202,245,0 +170740945250,245,0 +170740945298,245,0 +170740945346,245,0 +170740945394,245,0 +170740945442,244,0 +170740945490,245,0 +170740945539,245,0 +170740945589,245,0 +170740945637,245,0 +170740945686,245,0 +170740945734,245,0 +170740945784,245,0 +170740945832,245,0 +170740945880,245,0 +170740945927,245,0 +170740945975,245,0 +170740946025,245,0 +170740946073,245,0 +170740946122,245,0 +170740946170,245,0 +170740946218,245,0 +170740946266,245,0 +170740946314,245,0 +170740946362,245,0 +170740946409,245,0 +170740946457,245,0 +170740946505,245,0 +170740946553,245,0 +170740946603,246,0 +170740946650,245,0 +170740946698,245,0 +170740946746,245,0 +170740946794,245,0 +170740946842,245,0 +170740946892,245,0 +170740946941,245,0 +170740946989,245,0 +170740947037,245,0 +170740947085,245,0 +170740947135,245,0 +170740947183,245,0 +170740947232,245,0 +170740947280,245,0 +170740947330,245,0 +170740947379,245,0 +170740947427,245,0 +170740947477,245,0 +170740947525,245,0 +170740947574,245,0 +170740947622,245,0 +170740947670,245,0 +170740947718,245,0 +170740947767,245,0 +170740947817,245,0 +170740947865,245,0 +170740947913,245,0 +170740947961,245,0 +170740948010,245,0 +170740948060,245,0 +170740948108,245,0 +170740948156,245,0 +170740948205,245,0 +170740948253,245,0 +170740948301,245,0 +170740948351,245,0 +170740948400,245,0 +170740948448,245,0 +170740948496,245,0 +170740948544,245,0 +170740948592,245,0 +170740948642,245,0 +170740948690,245,0 +170740948737,245,0 +170740948785,245,0 +170740948833,245,0 +170740948881,245,0 +170740948929,245,0 +170740948977,245,0 +170740949025,245,0 +170740949074,245,0 +170740949122,245,0 +170740949170,245,0 +170740949218,245,0 +170740949267,245,0 +170740949317,245,0 +170740949365,245,0 +170740949413,245,0 +170740949461,245,0 +170740949509,245,0 +170740949558,245,0 +170740949606,245,0 +170740949654,245,0 +170740949703,245,0 +170740949753,245,0 +170740949801,245,0 +170740949849,245,0 +170740949898,245,0 +170740949948,245,0 +170740949996,245,0 +170740950045,245,0 +170740950095,245,0 +170740950143,245,0 +170740950192,245,0 +170740950240,245,0 +170740950288,245,0 +170740950336,245,0 +170740950384,245,0 +170740950432,245,0 +170740950480,245,0 +170740950528,245,0 +170740950576,245,0 +170740950623,245,0 +170740950671,245,0 +170740950719,245,0 +170740950767,245,0 +170740950815,245,0 +170740950863,245,0 +170740950911,245,0 +170740950959,245,0 +170740951007,245,0 +170740951055,245,0 +170740951102,245,0 +170740951150,245,0 +170740951198,245,0 +170740951248,245,0 +170740951296,245,0 +170740951343,245,0 +170740951393,245,0 +170740951441,245,0 +170740951489,245,0 +170740951537,245,0 +170740951586,245,0 +170740951636,245,0 +170740951684,245,0 +170740951732,245,0 +170740951781,245,0 +170740951829,245,0 +170740951879,245,0 +170740951927,245,0 +170740951976,245,0 +170740952026,245,0 +170740952075,245,0 +170740952123,245,0 +170740952171,245,0 +170740952219,245,0 +170740952267,245,0 +170740952317,245,0 +170740952364,245,0 +170740952412,245,0 +170740952460,245,0 +170740952508,245,0 +170740952556,245,0 +170740952604,245,0 +170740952652,245,0 +170740952700,245,0 +170740952747,245,0 +170740952795,245,0 +170740952845,245,0 +170740952893,245,0 +170740952941,245,0 +170740952990,245,0 +170740953038,245,0 +170740953086,245,0 +170740953134,245,0 +170740953182,245,0 +170740953230,245,0 +170740953279,245,0 +170740953327,245,0 +170740953375,245,0 +170740953425,245,0 +170740953474,245,0 +170740953524,245,0 +170740953572,245,0 +170740953621,245,0 +170740953671,245,0 +170740953719,245,0 +170740953767,245,0 +170740953815,245,0 +170740953863,245,0 +170740953911,245,0 +170740953960,245,0 +170740954008,245,0 +170740954056,245,0 +170740954104,245,0 +170740954152,245,0 +170740954200,245,0 +170740954250,245,0 +170740954298,245,0 +170740954347,245,0 +170740954395,245,0 +170740954443,245,0 +170740954491,245,0 +170740954541,245,0 +170740954590,245,0 +170740954640,245,0 +170740954689,245,0 +170740954737,245,0 +170740954785,245,0 +170740954833,245,0 +170740954881,245,0 +170740954929,245,0 +170740954977,245,0 +170740955026,245,0 +170740955076,245,0 +170740955125,245,0 +170740955173,245,0 +170740955223,245,0 +170740955271,245,0 +170740955319,245,0 +170740955367,245,0 +170740955416,245,0 +170740955466,245,0 +170740955514,245,0 +170740955562,245,0 +170740955610,245,0 +170740955659,245,0 +170740955709,245,0 +170740955757,245,0 +170740955806,245,0 +170740955854,245,0 +170740955902,245,0 +170740955952,245,0 +170740956001,245,0 +170740956049,245,0 +170740956099,245,0 +170740956148,245,0 +170740956196,244,0 +170740956244,245,0 +170740956292,245,0 +170740956342,245,0 +170740956391,245,0 +170740956441,245,0 +170740956489,245,0 +170740956538,245,0 +170740956588,245,0 +170740956637,245,0 +170740956687,245,0 +170740956735,245,0 +170740956783,245,0 +170740956832,245,0 +170740956880,245,0 +170740956928,245,0 +170740956978,245,0 +170740957026,245,0 +170740957075,245,0 +170740957123,244,0 +170740957171,245,0 +170740957219,245,0 +170740957267,245,0 +170740957315,245,0 +170740957365,245,0 +170740957413,245,0 +170740957461,244,0 +170740957508,245,0 +170740957557,245,0 +170740957605,245,0 +170740957652,244,0 +170740957700,245,0 +170740957750,245,0 +170740957798,245,0 +170740957846,245,0 +170740957894,245,0 +170740957942,245,0 +170740957990,245,0 +170740958039,245,0 +170740958087,245,0 +170740958135,245,0 +170740958183,245,0 +170740958233,245,0 +170740958281,245,0 +170740958328,245,0 +170740958378,245,0 +170740958426,245,0 +170740958474,245,0 +170740958522,245,0 +170740958570,245,0 +170740958618,245,0 +170740958667,245,0 +170740958717,245,0 +170740958765,245,0 +170740958813,245,0 +170740958862,245,0 +170740958910,245,0 +170740958958,245,0 +170740959006,245,0 +170740959054,244,0 +170740959102,245,0 +170740959150,245,0 +170740959200,245,0 +170740959248,245,0 +170740959296,245,0 +170740959344,245,0 +170740959392,245,0 +170740959441,244,0 +170740959489,244,0 +170740959537,245,0 +170740959587,245,0 +170740959635,245,0 +170740959683,245,0 +170740959731,245,0 +170740959780,244,0 +170740959828,244,0 +170740959878,244,0 +170740959926,245,0 +170740959974,244,0 +170740960022,245,0 +170740960071,245,0 +170740960121,245,0 +170740960170,245,0 +170740960218,244,0 +170740960268,245,0 +170740960316,245,0 +170740960364,245,0 +170740960413,245,0 +170740960461,245,0 +170740960509,245,0 +170740960557,245,0 +170740960605,245,0 +170740960653,245,0 +170740960701,245,0 +170740960749,245,0 +170740960797,244,0 +170740960845,245,0 +170740960893,244,0 +170740960941,244,0 +170740960989,245,0 +170740961037,245,0 +170740961085,245,0 +170740961134,245,0 +170740961182,245,0 +170740961230,245,0 +170740961278,245,0 +170740961326,245,0 +170740961376,245,0 +170740961424,245,0 +170740961473,245,0 +170740961521,245,0 +170740961570,245,0 +170740961620,245,0 +170740961668,245,0 +170740961716,244,0 +170740961764,245,0 +170740961813,245,0 +170740961861,245,0 +170740961909,245,0 +170740961959,245,0 +170740962007,245,0 +170740962055,245,0 +170740962104,245,0 +170740962154,245,0 +170740962202,245,0 +170740962251,244,0 +170740962299,245,0 +170740962349,245,0 +170740962397,245,0 +170740962446,245,0 +170740962494,245,0 +170740962542,245,0 +170740962592,245,0 +170740962639,245,0 +170740962687,245,0 +170740962737,245,0 +170740962785,245,0 +170740962834,245,0 +170740962884,245,0 +170740962932,244,0 +170740962980,245,0 +170740963029,244,0 +170740963079,245,0 +170740963128,245,0 +170740963176,245,0 +170740963224,245,0 +170740963274,245,0 +170740963323,245,0 +170740963371,245,0 +170740963419,245,0 +170740963467,244,0 +170740963517,245,0 +170740963565,245,0 +170740963613,245,0 +170740963661,245,0 +170740963709,245,0 +170740963756,245,0 +170740963804,245,0 +170740963854,245,0 +170740963902,245,0 +170740963950,245,0 +170740963998,245,0 +170740964047,245,0 +170740964095,245,0 +170740964143,245,0 +170740964191,245,0 +170740964240,245,0 +170740964288,245,0 +170740964336,245,0 +170740964384,244,0 +170740964432,245,0 +170740964480,245,0 +170740964528,245,0 +170740964578,245,0 +170740964625,245,0 +170740964673,245,0 +170740964723,245,0 +170740964771,245,0 +170740964819,245,0 +170740964867,245,0 +170740964915,245,0 +170740964963,245,0 +170740965012,245,0 +170740965060,245,0 +170740965108,245,0 +170740965156,245,0 +170740965204,245,0 +170740965251,245,0 +170740965299,245,0 +170740965349,245,0 +170740965397,245,0 +170740965445,245,0 +170740965493,245,0 +170740965542,245,0 +170740965592,245,0 +170740965641,245,0 +170740965689,245,0 +170740965739,245,0 +170740965788,245,0 +170740965836,245,0 +170740965884,245,0 +170740965932,245,0 +170740965980,245,0 +170740966028,245,0 +170740966076,245,0 +170740966126,245,0 +170740966174,245,0 +170740966221,245,0 +170740966269,245,0 +170740966319,245,0 +170740966367,245,0 +170740966416,245,0 +170740966466,245,0 +170740966514,245,0 +170740966562,245,0 +170740966609,245,0 +170740966657,245,0 +170740966705,245,0 +170740966753,245,0 +170740966801,245,0 +170740966849,245,0 +170740966897,245,0 +170740966945,245,0 +170740966992,245,0 +170740967040,245,0 +170740967090,245,0 +170740967139,245,0 +170740967187,245,0 +170740967235,245,0 +170740967283,245,0 +170740967331,245,0 +170740967381,245,0 +170740967429,245,0 +170740967478,245,0 +170740967526,245,0 +170740967574,245,0 +170740967622,245,0 +170740967672,245,0 +170740967721,245,0 +170740967770,245,0 +170740967818,245,0 +170740967866,245,0 +170740967916,245,0 +170740967965,245,0 +170740968015,245,0 +170740968064,245,0 +170740968112,245,0 +170740968160,245,0 +170740968210,245,0 +170740968258,245,0 +170740968306,245,0 +170740968354,245,0 +170740968403,245,0 +170740968453,245,0 +170740968500,245,0 +170740968548,245,0 +170740968596,245,0 +170740968644,245,0 +170740968694,245,0 +170740968743,245,0 +170740968793,245,0 +170740968842,245,0 +170740968890,245,0 +170740968938,245,0 +170740968986,245,0 +170740969034,245,0 +170740969082,245,0 +170740969130,245,0 +170740969179,245,0 +170740969227,245,0 +170740969275,245,0 +170740969323,245,0 +170740969372,245,0 +170740969420,245,0 +170740969469,245,0 +170740969517,245,0 +170740969565,245,0 +170740969613,245,0 +170740969661,245,0 +170740969709,245,0 +170740969758,245,0 +170740969806,245,0 +170740969854,245,0 +170740969902,245,0 +170740969950,245,0 +170740969998,245,0 +170740970046,245,0 +170740970095,245,0 +170740970143,245,0 +170740970191,245,0 +170740970239,245,0 +170740970287,245,0 +170740970336,245,0 +170740970386,245,0 +170740970434,245,0 +170740970481,245,0 +170740970529,245,0 +170740970577,245,0 +170740970625,245,0 +170740970675,245,0 +170740970722,245,0 +170740970770,245,0 +170740970818,245,0 +170740970866,245,0 +170740970914,245,0 +170740970962,245,0 +170740971010,245,0 +170740971058,245,0 +170740971106,245,0 +170740971154,245,0 +170740971201,245,0 +170740971249,245,0 +170740971297,245,0 +170740971345,245,0 +170740971393,246,0 +170740971441,245,0 +170740971489,245,0 +170740971537,245,0 +170740971585,245,0 +170740971633,245,0 +170740971680,245,0 +170740971728,245,0 +170740971776,245,0 +170740971824,245,0 +170740971872,245,0 +170740971920,245,0 +170740971969,245,0 +170740972017,245,0 +170740972067,245,0 +170740972115,245,0 +170740972163,245,0 +170740972211,245,0 +170740972260,245,0 +170740972308,245,0 +170740972356,245,0 +170740972404,245,0 +170740972452,245,0 +170740972500,245,0 +170740972548,245,0 +170740972596,245,0 +170740972644,245,0 +170740972692,245,0 +170740972739,245,0 +170740972789,245,0 +170740972837,245,0 +170740972885,245,0 +170740972933,245,0 +170740972980,245,0 +170740973028,245,0 +170740973076,245,0 +170740973124,245,0 +170740973172,245,0 +170740973220,245,0 +170740973268,245,0 +170740973317,245,0 +170740973365,245,0 +170740973415,245,0 +170740973462,245,0 +170740973510,245,0 +170740973558,245,0 +170740973608,245,0 +170740973656,245,0 +170740973704,245,0 +170740973752,245,0 +170740973800,245,0 +170740973848,245,0 +170740973897,245,0 +170740973947,245,0 +170740973995,245,0 +170740974043,245,0 +170740974091,245,0 +170740974139,245,0 +170740974186,245,0 +170740974234,245,0 +170740974284,245,0 +170740974332,245,0 +170740974380,245,0 +170740974429,245,0 +170740974479,245,0 +170740974527,245,0 +170740974575,245,0 +170740974623,245,0 +170740974671,245,0 +170740974718,245,0 +170740974766,245,0 +170740974814,245,0 +170740974862,245,0 +170740974910,245,0 +170740974958,245,0 +170740975006,245,0 +170740975053,245,0 +170740975101,245,0 +170740975149,245,0 +170740975199,245,0 +170740975247,245,0 +170740975295,245,0 +170740975343,245,0 +170740975391,245,0 +170740975439,245,0 +170740975487,245,0 +170740975536,245,0 +170740975584,245,0 +170740975634,245,0 +170740975682,245,0 +170740975730,245,0 +170740975778,245,0 +170740975826,245,0 +170740975875,245,0 +170740975925,245,0 +170740975974,245,0 +170740976024,245,0 +170740976073,245,0 +170740976123,245,0 +170740976172,245,0 +170740976220,245,0 +170740976268,245,0 +170740976316,245,0 +170740976364,245,0 +170740976412,245,0 +170740976461,245,0 +170740976509,245,0 +170740976559,245,0 +170740976607,245,0 +170740976655,245,0 +170740976703,245,0 +170740976751,245,0 +170740976798,245,0 +170740976846,245,0 +170740976896,245,0 +170740976944,245,0 +170740976992,245,0 +170740977040,245,0 +170740977088,245,0 +170740977137,245,0 +170740977185,245,0 +170740977233,245,0 +170740977281,245,0 +170740977329,245,0 +170740977377,245,0 +170740977425,245,0 +170740977473,245,0 +170740977521,245,0 +170740977570,245,0 +170740977618,245,0 +170740977668,245,0 +170740977716,245,0 +170740977764,245,0 +170740977812,245,0 +170740977860,245,0 +170740977909,245,0 +170740977959,245,0 +170740978007,245,0 +170740978056,245,0 +170740978104,245,0 +170740978154,245,0 +170740978202,245,0 +170740978251,245,0 +170740978299,245,0 +170740978347,245,0 +170740978395,245,0 +170740978443,245,0 +170740978491,245,0 +170740978539,245,0 +170740978589,245,0 +170740978638,245,0 +170740978686,245,0 +170740978736,245,0 +170740978783,245,0 +170740978831,245,0 +170740978881,245,0 +170740978929,245,0 +170740978977,245,0 +170740979025,245,0 +170740979074,245,0 +170740979124,245,0 +170740979173,245,0 +170740979223,245,0 +170740979271,245,0 +170740979320,245,0 +170740979368,245,0 +170740979418,245,0 +170740979466,245,0 +170740979515,245,0 +170740979563,245,0 +170740979611,245,0 +170740979659,245,0 +170740979707,245,0 +170740979755,245,0 +170740979804,245,0 +170740979852,245,0 +170740979900,245,0 +170740979948,245,0 +170740979996,245,0 +170740980044,245,0 +170740980092,245,0 +170740980142,245,0 +170740980190,245,0 +170740980239,245,0 +170740980287,245,0 +170740980335,245,0 +170740980384,245,0 +170740980432,245,0 +170740980482,245,0 +170740980530,245,0 +170740980578,245,0 +170740980627,245,0 +170740980675,245,0 +170740980723,245,0 +170740980773,245,0 +170740980822,245,0 +170740980870,245,0 +170740980920,245,0 +170740980968,245,0 +170740981016,245,0 +170740981065,245,0 +170740981114,245,0 +170740981162,245,0 +170740981210,245,0 +170740981258,245,0 +170740981306,245,0 +170740981356,245,0 +170740981405,245,0 +170740981453,245,0 +170740981503,245,0 +170740981551,245,0 +170740981599,245,0 +170740981648,245,0 +170740981696,245,0 +170740981746,245,0 +170740981794,245,0 +170740981842,245,0 +170740981890,245,0 +170740981938,245,0 +170740981985,245,0 +170740982033,245,0 +170740982083,245,0 +170740982131,245,0 +170740982179,245,0 +170740982228,245,0 +170740982276,245,0 +170740982324,245,0 +170740982374,245,0 +170740982422,245,0 +170740982471,245,0 +170740982521,245,0 +170740982570,245,0 +170740982618,245,0 +170740982668,245,0 +170740982716,245,0 +170740982764,245,0 +170740982812,245,0 +170740982860,245,0 +170740982908,245,0 +170740982956,245,0 +170740983003,245,0 +170740983053,245,0 +170740983101,245,0 +170740983149,245,0 +170740983197,245,0 +170740983246,245,0 +170740983296,245,0 +170740983345,245,0 +170740983393,245,0 +170740983441,245,0 +170740983489,245,0 +170740983537,245,0 +170740983587,245,0 +170740983635,245,0 +170740983683,245,0 +170740983731,245,0 +170740983779,245,0 +170740983826,245,0 +170740983874,245,0 +170740983922,245,0 +170740983970,245,0 +170740984018,245,0 +170740984068,245,0 +170740984116,245,0 +170740984165,245,0 +170740984215,245,0 +170740984263,245,0 +170740984311,245,0 +170740984359,245,0 +170740984408,245,0 +170740984458,245,0 +170740984506,245,0 +170740984555,245,0 +170740984603,245,0 +170740984651,245,0 +170740984699,245,0 +170740984749,245,0 +170740984798,245,0 +170740984846,245,0 +170740984894,245,0 +170740984943,245,0 +170740984991,245,0 +170740985039,245,0 +170740985087,245,0 +170740985135,245,0 +170740985183,245,0 +170740985231,245,0 +170740985279,245,0 +170740985327,245,0 +170740985375,245,0 +170740985423,245,0 +170740985473,245,0 +170740985521,245,0 +170740985569,245,0 +170740985616,245,0 +170740985664,245,0 +170740985712,245,0 +170740985760,245,0 +170740985808,245,0 +170740985856,245,0 +170740985904,245,0 +170740985954,245,0 +170740986002,245,0 +170740986050,245,0 +170740986098,245,0 +170740986147,245,0 +170740986195,245,0 +170740986243,245,0 +170740986291,245,0 +170740986339,245,0 +170740986387,245,0 +170740986435,245,0 +170740986483,245,0 +170740986531,245,0 +170740986579,245,0 +170740986627,245,0 +170740986675,245,0 +170740986723,245,0 +170740986771,245,0 +170740986820,245,0 +170740986870,245,0 +170740986919,245,0 +170740986967,245,0 +170740987017,245,0 +170740987065,245,0 +170740987113,245,0 +170740987162,245,0 +170740987212,245,0 +170740987260,245,0 +170740987308,245,0 +170740987357,245,0 +170740987405,245,0 +170740987455,245,0 +170740987503,245,0 +170740987551,245,0 +170740987598,245,0 +170740987648,245,0 +170740987696,245,0 +170740987745,245,0 +170740987795,245,0 +170740987844,245,0 +170740987892,245,0 +170740987942,245,0 +170740987990,245,0 +170740988038,245,0 +170740988086,245,0 +170740988135,245,0 +170740988183,245,0 +170740988231,245,0 +170740988279,245,0 +170740988327,245,0 +170740988377,245,0 +170740988426,245,0 +170740988476,245,0 +170740988524,245,0 +170740988572,245,0 +170740988619,245,0 +170740988669,245,0 +170740988717,245,0 +170740988766,245,0 +170740988816,245,0 +170740988865,245,0 +170740988913,245,0 +170740988961,245,0 +170740989009,245,0 +170740989057,245,0 +170740989105,245,0 +170740989153,245,0 +170740989202,245,0 +170740989250,245,0 +170740989298,245,0 +170740989346,245,0 +170740989394,245,0 +170740989442,245,0 +170740989490,245,0 +170740989538,245,0 +170740989586,245,0 +170740989635,245,0 +170740989683,245,0 +170740989731,245,0 +170740989780,245,0 +170740989828,245,0 +170740989876,245,0 +170740989924,245,0 +170740989972,245,0 +170740990020,245,0 +170740990068,245,0 +170740990116,245,0 +170740990166,245,0 +170740990214,245,0 +170740990262,245,0 +170740990311,245,0 +170740990359,245,0 +170740990407,245,0 +170740990457,245,0 +170740990506,245,0 +170740990554,245,0 +170740990603,245,0 +170740990651,245,0 +170740990699,245,0 +170740990747,245,0 +170740990795,245,0 +170740990843,245,0 +170740990891,245,0 +170740990939,245,0 +170740990988,245,0 +170740991038,245,0 +170740991087,245,0 +170740991135,245,0 +170740991183,245,0 +170740991233,245,0 +170740991281,245,0 +170740991329,245,0 +170740991377,245,0 +170740991425,245,0 +170740991474,245,0 +170740991524,245,0 +170740991573,245,0 +170740991621,245,0 +170740991669,245,0 +170740991717,245,0 +170740991765,245,0 +170740991813,245,0 +170740991862,245,0 +170740991910,245,0 +170740991958,245,0 +170740992006,245,0 +170740992056,245,0 +170740992105,245,0 +170740992153,245,0 +170740992201,245,0 +170740992249,245,0 +170740992299,245,0 +170740992347,245,0 +170740992395,245,0 +170740992444,245,0 +170740992494,245,0 +170740992542,245,0 +170740992590,245,0 +170740992638,245,0 +170740992686,245,0 +170740992734,245,0 +170740992783,245,0 +170740992833,245,0 +170740992882,245,0 +170740992930,245,0 +170740992980,245,0 +170740993027,245,0 +170740993075,245,0 +170740993123,245,0 +170740993173,245,0 +170740993221,245,0 +170740993269,245,0 +170740993317,245,0 +170740993365,245,0 +170740993413,245,0 +170740993461,245,0 +170740993509,245,0 +170740993557,245,0 +170740993605,245,0 +170740993653,245,0 +170740993702,245,0 +170740993750,245,0 +170740993800,245,0 +170740993847,245,0 +170740993897,245,0 +170740993947,245,0 +170740993995,245,0 +170740994042,245,0 +170740994092,245,0 +170740994142,245,0 +170740994190,245,0 +170740994238,245,0 +170740994285,245,0 +170740994333,245,0 +170740994381,245,0 +170740994429,245,0 +170740994479,245,0 +170740994528,245,0 +170740994576,245,0 +170740994624,245,0 +170740994674,245,0 +170740994722,245,0 +170740994770,245,0 +170740994819,245,0 +170740994867,245,0 +170740994915,245,0 +170740994963,245,0 +170740995011,245,0 +170740995061,245,0 +170740995109,245,0 +170740995156,245,0 +170740995204,245,0 +170740995252,245,0 +170740995302,245,0 +170740995350,245,0 +170740995398,245,0 +170740995446,245,0 +170740995494,245,0 +170740995542,245,0 +170740995591,245,0 +170740995639,245,0 +170740995688,245,0 +170740995736,245,0 +170740995784,245,0 +170740995832,245,0 +170740995881,245,0 +170740995929,245,0 +170740995979,245,0 +170740996028,245,0 +170740996076,245,0 +170740996124,245,0 +170740996172,245,0 +170740996222,245,0 +170740996271,245,0 +170740996321,245,0 +170740996369,245,0 +170740996417,245,0 +170740996465,245,0 +170740996513,245,0 +170740996561,245,0 +170740996609,245,0 +170740996657,245,0 +170740996705,245,0 +170740996753,245,0 +170740996802,245,0 +170740996850,245,0 +170740996898,245,0 +170740996947,245,0 +170740996995,245,0 +170740997045,245,0 +170740997093,245,0 +170740997142,245,0 +170740997190,245,0 +170740997238,245,0 +170740997288,245,0 +170740997337,245,0 +170740997385,245,0 +170740997433,245,0 +170740997481,245,0 +170740997531,245,0 +170740997579,245,0 +170740997628,245,0 +170740997676,245,0 +170740997726,245,0 +170740997774,245,0 +170740997822,245,0 +170740997870,245,0 +170740997918,245,0 +170740997966,245,0 +170740998014,245,0 +170740998061,245,0 +170740998111,245,0 +170740998159,245,0 +170740998207,245,0 +170740998255,245,0 +170740998303,245,0 +170740998351,245,0 +170740998399,245,0 +170740998448,245,0 +170740998498,245,0 +170740998547,245,0 +170740998595,245,0 +170740998643,245,0 +170740998691,245,0 +170740998739,245,0 +170740998787,245,0 +170740998835,245,0 +170740998883,245,0 +170740998931,245,0 +170740998979,245,0 +170740999027,245,0 +170740999075,245,0 +170740999124,245,0 +170740999172,245,0 +170740999220,245,0 +170740999268,245,0 +170740999318,245,0 +170740999367,245,0 +170740999415,245,0 +170740999463,245,0 +170740999511,245,0 +170740999559,245,0 +170740999607,245,0 +170740999655,245,0 +170740999703,245,0 +170740999752,245,0 +170740999800,245,0 +170740999848,245,0 +170740999896,245,0 +170740999944,245,0 +170740999992,245,0 +170741000041,245,0 +170741000091,245,0 +170741000139,245,0 +170741000187,245,0 +170741000235,245,0 +170741000284,245,0 +170741000332,245,0 +170741000382,245,0 +170741000431,245,0 +170741000479,245,0 +170741000529,245,0 +170741000577,245,0 +170741000625,245,0 +170741000674,245,0 +170741000724,245,0 +170741000772,245,0 +170741000820,245,0 +170741000868,245,0 +170741000916,245,0 +170741000966,245,0 +170741001014,245,0 +170741001063,245,0 +170741001111,245,0 +170741001159,245,0 +170741001207,245,0 +170741001256,245,0 +170741001304,245,0 +170741001352,245,0 +170741001402,245,0 +170741001450,245,0 +170741001498,245,0 +170741001547,245,0 +170741001597,245,0 +170741001646,245,0 +170741001694,245,0 +170741001742,245,0 +170741001790,245,0 +170741001840,245,0 +170741001889,245,0 +170741001937,245,0 +170741001985,245,0 +170741002033,245,0 +170741002083,245,0 +170741002131,245,0 +170741002179,245,0 +170741002226,245,0 +170741002274,245,0 +170741002322,245,0 +170741002370,245,0 +170741002418,245,0 +170741002466,245,0 +170741002514,245,0 +170741002563,245,0 +170741002611,245,0 +170741002659,245,0 +170741002709,245,0 +170741002757,245,0 +170741002805,245,0 +170741002853,245,0 +170741002901,245,0 +170741002949,245,0 +170741002998,245,0 +170741003048,245,0 +170741003096,245,0 +170741003143,245,0 +170741003193,245,0 +170741003241,245,0 +170741003289,245,0 +170741003337,245,0 +170741003385,245,0 +170741003433,245,0 +170741003481,245,0 +170741003530,245,0 +170741003578,245,0 +170741003626,245,0 +170741003674,245,0 +170741003724,245,0 +170741003772,245,0 +170741003820,245,0 +170741003868,245,0 +170741003916,245,0 +170741003964,245,0 +170741004012,245,0 +170741004059,245,0 +170741004107,245,0 +170741004155,245,0 +170741004205,245,0 +170741004255,245,0 +170741004302,245,0 +170741004350,245,0 +170741004400,245,0 +170741004448,245,0 +170741004496,245,0 +170741004545,245,0 +170741004593,245,0 +170741004643,245,0 +170741004692,245,0 +170741004740,245,0 +170741004788,245,0 +170741004836,245,0 +170741004884,245,0 +170741004932,245,0 +170741004982,245,0 +170741005030,245,0 +170741005078,245,0 +170741005127,245,0 +170741005175,245,0 +170741005223,245,0 +170741005271,245,0 +170741005319,245,0 +170741005367,245,0 +170741005416,245,0 +170741005464,245,0 +170741005512,245,0 +170741005560,245,0 +170741005610,245,0 +170741005658,245,0 +170741005706,245,0 +170741005755,245,0 +170741005804,245,0 +170741005852,245,0 +170741005900,245,0 +170741005950,245,0 +170741005999,245,0 +170741006047,245,0 +170741006095,245,0 +170741006143,245,0 +170741006191,245,0 +170741006239,245,0 +170741006287,245,0 +170741006335,245,0 +170741006383,245,0 +170741006433,245,0 +170741006481,245,0 +170741006530,245,0 +170741006578,245,0 +170741006626,245,0 +170741006674,245,0 +170741006724,245,0 +170741006772,245,0 +170741006821,245,0 +170741006869,245,0 +170741006917,245,0 +170741006967,245,0 +170741007016,245,0 +170741007064,245,0 +170741007114,245,0 +170741007162,245,0 +170741007210,245,0 +170741007258,245,0 +170741007306,245,0 +170741007353,245,0 +170741007403,245,0 +170741007451,245,0 +170741007501,245,0 +170741007548,245,0 +170741007598,245,0 +170741007646,245,0 +170741007694,245,0 +170741007742,245,0 +170741007790,245,0 +170741007838,245,0 +170741007886,245,0 +170741007935,245,0 +170741007983,245,0 +170741008031,245,0 +170741008079,245,0 +170741008129,245,0 +170741008178,245,0 +170741008226,245,0 +170741008274,245,0 +170741008324,245,0 +170741008373,245,0 +170741008421,245,0 +170741008471,245,0 +170741008520,245,0 +170741008568,245,0 +170741008618,245,0 +170741008666,245,0 +170741008713,245,0 +170741008763,245,0 +170741008811,245,0 +170741008859,245,0 +170741008907,245,0 +170741008955,245,0 +170741009003,245,0 +170741009052,245,0 +170741009100,245,0 +170741009150,245,0 +170741009198,245,0 +170741009247,245,0 +170741009295,245,0 +170741009343,245,0 +170741009391,245,0 +170741009439,245,0 +170741009487,245,0 +170741009535,245,0 +170741009584,245,0 +170741009634,245,0 +170741009682,245,0 +170741009730,245,0 +170741009778,245,0 +170741009826,245,0 +170741009874,245,0 +170741009922,245,0 +170741009971,245,0 +170741010019,245,0 +170741010068,245,0 +170741010116,245,0 +170741010166,245,0 +170741010214,245,0 +170741010262,245,0 +170741010310,245,0 +170741010358,245,0 +170741010407,245,0 +170741010457,245,0 +170741010505,245,0 +170741010553,245,0 +170741010601,245,0 +170741010650,245,0 +170741010700,245,0 +170741010748,245,0 +170741010796,245,0 +170741010844,245,0 +170741010892,245,0 +170741010941,245,0 +170741010989,245,0 +170741011037,245,0 +170741011087,245,0 +170741011134,245,0 +170741011182,245,0 +170741011232,245,0 +170741011280,245,0 +170741011329,245,0 +170741011377,245,0 +170741011425,245,0 +170741011473,245,0 +170741011523,245,0 +170741011571,245,0 +170741011619,245,0 +170741011667,245,0 +170741011716,245,0 +170741011764,245,0 +170741011812,245,0 +170741011860,245,0 +170741011908,245,0 +170741011956,245,0 +170741012004,245,0 +170741012052,245,0 +170741012100,245,0 +170741012148,245,0 +170741012196,245,0 +170741012244,245,0 +170741012293,245,0 +170741012341,245,0 +170741012389,245,0 +170741012437,245,0 +170741012487,245,0 +170741012535,245,0 +170741012583,245,0 +170741012631,245,0 +170741012679,245,0 +170741012728,245,0 +170741012776,245,0 +170741012824,245,0 +170741012872,245,0 +170741012921,245,0 +170741012969,245,0 +170741013017,245,0 +170741013067,245,0 +170741013116,245,0 +170741013164,245,0 +170741013212,245,0 +170741013260,245,0 +170741013308,245,0 +170741013356,245,0 +170741013404,245,0 +170741013452,245,0 +170741013502,245,0 +170741013550,245,0 +170741013599,245,0 +170741013647,245,0 +170741013695,245,0 +170741013745,245,0 +170741013794,245,0 +170741013844,245,0 +170741013893,245,0 +170741013941,245,0 +170741013989,245,0 +170741014037,245,0 +170741014085,245,0 +170741014134,245,0 +170741014182,245,0 +170741014230,245,0 +170741014280,245,0 +170741014328,245,0 +170741014376,245,0 +170741014424,245,0 +170741014472,245,0 +170741014520,245,0 +170741014568,245,0 +170741014616,245,0 +170741014663,245,0 +170741014713,245,0 +170741014761,245,0 +170741014809,245,0 +170741014859,245,0 +170741014907,245,0 +170741014956,245,0 +170741015006,245,0 +170741015054,245,0 +170741015103,245,0 +170741015153,245,0 +170741015202,245,0 +170741015250,245,0 +170741015298,245,0 +170741015346,245,0 +170741015394,245,0 +170741015442,245,0 +170741015491,245,0 +170741015539,245,0 +170741015587,245,0 +170741015635,245,0 +170741015683,245,0 +170741015731,245,0 +170741015779,245,0 +170741015827,245,0 +170741015876,245,0 +170741015924,245,0 +170741015974,245,0 +170741016022,245,0 +170741016071,245,0 +170741016119,245,0 +170741016169,245,0 +170741016217,245,0 +170741016265,245,0 +170741016313,245,0 +170741016361,245,0 +170741016409,245,0 +170741016457,245,0 +170741016505,245,0 +170741016553,245,0 +170741016601,245,0 +170741016649,245,0 +170741016698,245,0 +170741016746,245,0 +170741016796,245,0 +170741016843,245,0 +170741016891,245,0 +170741016941,245,0 +170741016990,245,0 +170741017038,245,0 +170741017086,245,0 +170741017134,245,0 +170741017182,245,0 +170741017230,245,0 +170741017280,245,0 +170741017328,245,0 +170741017376,245,0 +170741017423,245,0 +170741017471,245,0 +170741017521,245,0 +170741017569,245,0 +170741017617,245,0 +170741017664,245,0 +170741017712,245,0 +170741017760,245,0 +170741017808,245,0 +170741017856,245,0 +170741017904,245,0 +170741017954,245,0 +170741018002,245,0 +170741018050,245,0 +170741018098,245,0 +170741018147,245,0 +170741018197,245,0 +170741018245,245,0 +170741018293,245,0 +170741018341,245,0 +170741018390,245,0 +170741018438,245,0 +170741018486,245,0 +170741018534,245,0 +170741018583,245,0 +170741018631,245,0 +170741018679,245,0 +170741018727,245,0 +170741018775,245,0 +170741018823,245,0 +170741018871,245,0 +170741018919,245,0 +170741018968,245,0 +170741019016,245,0 +170741019064,245,0 +170741019112,245,0 +170741019160,245,0 +170741019208,245,0 +170741019256,245,0 +170741019303,245,0 +170741019351,245,0 +170741019399,245,0 +170741019447,245,0 +170741019495,245,0 +170741019545,245,0 +170741019592,245,0 +170741019640,245,0 +170741019690,245,0 +170741019737,245,0 +170741019785,245,0 +170741019833,245,0 +170741019881,245,0 +170741019929,245,0 +170741019977,245,0 +170741020025,245,0 +170741020073,245,0 +170741020121,245,0 +170741020168,245,0 +170741020216,245,0 +170741020266,245,0 +170741020315,245,0 +170741020363,245,0 +170741020411,245,0 +170741020459,245,0 +170741020507,245,0 +170741020555,246,0 +170741020603,245,0 +170741020652,245,0 +170741020700,245,0 +170741020748,245,0 +170741020796,245,0 +170741020846,245,0 +170741020894,245,0 +170741020942,245,0 +170741020991,245,0 +170741021039,245,0 +170741021089,245,0 +170741021137,245,0 +170741021185,245,0 +170741021233,245,0 +170741021282,245,0 +170741021332,245,0 +170741021380,245,0 +170741021428,245,0 +170741021475,245,0 +170741021523,245,0 +170741021573,245,0 +170741021621,245,0 +170741021669,245,0 +170741021717,245,0 +170741021765,245,0 +170741021814,245,0 +170741021864,245,0 +170741021912,245,0 +170741021962,245,0 +170741022010,245,0 +170741022058,245,0 +170741022106,245,0 +170741022153,245,0 +170741022203,245,0 +170741022251,245,0 +170741022299,245,0 +170741022347,245,0 +170741022396,245,0 +170741022444,245,0 +170741022492,245,0 +170741022540,245,0 +170741022588,245,0 +170741022638,245,0 +170741022686,245,0 +170741022733,245,0 +170741022781,245,0 +170741022829,245,0 +170741022877,245,0 +170741022925,245,0 +170741022973,245,0 +170741023023,245,0 +170741023072,245,0 +170741023120,245,0 +170741023168,245,0 +170741023218,245,0 +170741023266,245,0 +170741023314,245,0 +170741023363,245,0 +170741023411,245,0 +170741023459,245,0 +170741023509,245,0 +170741023558,245,0 +170741023606,245,0 +170741023654,245,0 +170741023702,245,0 +170741023750,245,0 +170741023798,245,0 +170741023846,245,0 +170741023893,245,0 +170741023941,245,0 +170741023989,245,0 +170741024037,245,0 +170741024087,245,0 +170741024135,245,0 +170741024183,245,0 +170741024230,245,0 +170741024278,245,0 +170741024326,245,0 +170741024374,245,0 +170741024422,245,0 +170741024470,245,0 +170741024518,245,0 +170741024566,245,0 +170741024614,245,0 +170741024661,245,0 +170741024711,245,0 +170741024759,245,0 +170741024807,245,0 +170741024856,245,0 +170741024904,245,0 +170741024952,245,0 +170741025001,245,0 +170741025049,245,0 +170741025097,245,0 +170741025145,245,0 +170741025193,245,0 +170741025241,245,0 +170741025289,245,0 +170741025337,245,0 +170741025384,245,0 +170741025432,245,0 +170741025480,245,0 +170741025528,245,0 +170741025576,245,0 +170741025624,245,0 +170741025672,245,0 +170741025720,245,0 +170741025767,245,0 +170741025815,245,0 +170741025863,245,0 +170741025911,245,0 +170741025959,245,0 +170741026007,245,0 +170741026055,245,0 +170741026103,245,0 +170741026151,245,0 +170741026199,245,0 +170741026247,245,0 +170741026295,245,0 +170741026343,245,0 +170741026391,245,0 +170741026439,245,0 +170741026488,245,0 +170741026536,245,0 +170741026584,245,0 +170741026634,245,0 +170741026681,245,0 +170741026729,245,0 +170741026777,245,0 +170741026825,245,0 +170741026873,245,0 +170741026921,245,0 +170741026971,245,0 +170741027019,245,0 +170741027067,245,0 +170741027115,245,0 +170741027164,245,0 +170741027214,245,0 +170741027262,245,0 +170741027310,245,0 +170741027358,245,0 +170741027406,245,0 +170741027455,245,0 +170741027503,245,0 +170741027551,245,0 +170741027600,245,0 +170741027648,245,0 +170741027696,245,0 +170741027746,245,0 +170741027794,245,0 +170741027843,245,0 +170741027891,245,0 +170741027939,245,0 +170741027987,245,0 +170741028037,245,0 +170741028085,245,0 +170741028133,245,0 +170741028181,245,0 +170741028229,245,0 +170741028277,245,0 +170741028324,245,0 +170741028372,245,0 +170741028420,245,0 +170741028468,245,0 +170741028516,245,0 +170741028564,245,0 +170741028614,245,0 +170741028662,245,0 +170741028710,245,0 +170741028758,245,0 +170741028807,245,0 +170741028855,245,0 +170741028903,245,0 +170741028951,245,0 +170741029000,245,0 +170741029048,245,0 +170741029096,245,0 +170741029146,245,0 +170741029195,245,0 +170741029245,245,0 +170741029293,245,0 +170741029341,245,0 +170741029389,245,0 +170741029438,245,0 +170741029486,245,0 +170741029536,245,0 +170741029583,245,0 +170741029633,245,0 +170741029683,245,0 +170741029732,245,0 +170741029781,245,0 +170741029829,245,0 +170741029879,245,0 +170741029928,245,0 +170741029978,245,0 +170741030026,245,0 +170741030075,245,0 +170741030123,245,0 +170741030173,245,0 +170741030222,245,0 +170741030270,245,0 +170741030318,245,0 +170741030366,245,0 +170741030414,245,0 +170741030462,245,0 +170741030510,245,0 +170741030560,245,0 +170741030608,245,0 +170741030655,245,0 +170741030703,245,0 +170741030751,245,0 +170741030799,245,0 +170741030847,245,0 +170741030895,245,0 +170741030943,245,0 +170741030991,245,0 +170741031039,245,0 +170741031086,245,0 +170741031134,245,0 +170741031182,245,0 +170741031230,245,0 +170741031278,245,0 +170741031326,245,0 +170741031375,245,0 +170741031423,245,0 +170741031473,245,0 +170741031521,245,0 +170741031570,245,0 +170741031618,245,0 +170741031666,245,0 +170741031716,245,0 +170741031765,245,0 +170741031815,245,0 +170741031864,245,0 +170741031912,245,0 +170741031960,245,0 +170741032008,245,0 +170741032056,245,0 +170741032104,245,0 +170741032152,245,0 +170741032200,245,0 +170741032248,245,0 +170741032295,245,0 +170741032343,245,0 +170741032391,245,0 +170741032439,245,0 +170741032487,245,0 +170741032535,245,0 +170741032583,245,0 +170741032631,245,0 +170741032679,245,0 +170741032726,245,0 +170741032774,245,0 +170741032822,245,0 +170741032872,245,0 +170741032920,245,0 +170741032967,245,0 +170741033015,245,0 +170741033063,245,0 +170741033111,245,0 +170741033159,245,0 +170741033207,245,0 +170741033255,245,0 +170741033303,245,0 +170741033353,245,0 +170741033400,245,0 +170741033448,245,0 +170741033498,245,0 +170741033548,245,0 +170741033595,245,0 +170741033644,245,0 +170741033693,245,0 +170741033741,245,0 +170741033791,245,0 +170741033840,245,0 +170741033888,245,0 +170741033936,245,0 +170741033984,245,0 +170741034033,245,0 +170741034081,245,0 +170741034129,245,0 +170741034179,245,0 +170741034227,245,0 +170741034276,245,0 +170741034324,245,0 +170741034374,245,0 +170741034422,245,0 +170741034471,245,0 +170741034521,245,0 +170741034569,245,0 +170741034618,245,0 +170741034666,245,0 +170741034716,245,0 +170741034765,245,0 +170741034813,245,0 +170741034861,245,0 +170741034909,245,0 +170741034957,245,0 +170741035005,245,0 +170741035053,245,0 +170741035101,245,0 +170741035149,245,0 +170741035197,245,0 +170741035245,245,0 +170741035293,245,0 +170741035341,245,0 +170741035389,245,0 +170741035437,245,0 +170741035485,245,0 +170741035533,245,0 +170741035581,245,0 +170741035629,245,0 +170741035677,245,0 +170741035724,245,0 +170741035774,245,0 +170741035822,245,0 +170741035870,245,0 +170741035919,245,0 +170741035968,245,0 +170741036016,245,0 +170741036066,245,0 +170741036114,245,0 +170741036161,245,0 +170741036209,245,0 +170741036259,245,0 +170741036307,245,0 +170741036355,245,0 +170741036403,245,0 +170741036451,245,0 +170741036500,245,0 +170741036548,245,0 +170741036596,245,0 +170741036644,245,0 +170741036693,245,0 +170741036741,245,0 +170741036789,245,0 +170741036837,245,0 +170741036885,245,0 +170741036933,245,0 +170741036981,245,0 +170741037029,245,0 +170741037077,245,0 +170741037126,245,0 +170741037174,245,0 +170741037222,245,0 +170741037270,245,0 +170741037318,245,0 +170741037366,245,0 +170741037414,245,0 +170741037462,245,0 +170741037510,245,0 +170741037560,245,0 +170741037607,245,0 +170741037655,245,0 +170741037703,245,0 +170741037751,245,0 +170741037799,245,0 +170741037847,245,0 +170741037895,245,0 +170741037944,245,0 +170741037992,245,0 +170741038042,245,0 +170741038091,245,0 +170741038139,245,0 +170741038189,245,0 +170741038238,245,0 +170741038286,245,0 +170741038336,245,0 +170741038384,245,0 +170741038432,245,0 +170741038480,245,0 +170741038529,245,0 +170741038577,245,0 +170741038627,245,0 +170741038675,245,0 +170741038724,245,0 +170741038774,245,0 +170741038823,245,0 +170741038871,245,0 +170741038921,245,0 +170741038970,245,0 +170741039018,245,0 +170741039066,245,0 +170741039116,245,0 +170741039164,245,0 +170741039212,245,0 +170741039261,245,0 +170741039309,245,0 +170741039359,245,0 +170741039407,245,0 +170741039455,245,0 +170741039503,245,0 +170741039550,245,0 +170741039600,245,0 +170741039648,245,0 +170741039696,245,0 +170741039744,245,0 +170741039792,245,0 +170741039841,245,0 +170741039889,245,0 +170741039937,246,0 +170741039987,245,0 +170741040035,245,0 +170741040082,245,0 +170741040132,245,0 +170741040180,245,0 +170741040229,245,0 +170741040279,245,0 +170741040329,245,0 +170741040378,245,0 +170741040426,245,0 +170741040474,245,0 +170741040524,245,0 +170741040572,245,0 +170741040620,245,0 +170741040669,245,0 +170741040717,245,0 +170741040765,245,0 +170741040813,245,0 +170741040861,245,0 +170741040910,245,0 +170741040958,245,0 +170741041006,245,0 +170741041056,245,0 +170741041105,245,0 +170741041153,245,0 +170741041201,245,0 +170741041249,245,0 +170741041297,245,0 +170741041345,245,0 +170741041395,245,0 +170741041444,245,0 +170741041492,245,0 +170741041542,245,0 +170741041589,245,0 +170741041637,245,0 +170741041685,245,0 +170741041735,245,0 +170741041783,245,0 +170741041832,245,0 +170741041880,245,0 +170741041928,245,0 +170741041976,245,0 +170741042024,245,0 +170741042072,245,0 +170741042120,245,0 +170741042168,245,0 +170741042216,245,0 +170741042266,245,0 +170741042314,245,0 +170741042362,245,0 +170741042410,245,0 +170741042459,245,0 +170741042507,245,0 +170741042557,245,0 +170741042605,245,0 +170741042653,245,0 +170741042701,245,0 +170741042750,245,0 +170741042798,245,0 +170741042846,245,0 +170741042895,245,0 +170741042945,245,0 +170741042995,245,0 +170741043044,245,0 +170741043094,245,0 +170741043143,245,0 +170741043191,245,0 +170741043239,245,0 +170741043287,245,0 +170741043335,245,0 +170741043384,245,0 +170741043432,245,0 +170741043480,245,0 +170741043528,245,0 +170741043578,245,0 +170741043626,245,0 +170741043674,245,0 +170741043722,245,0 +170741043771,245,0 +170741043819,245,0 +170741043867,245,0 +170741043917,245,0 +170741043965,245,0 +170741044013,245,0 +170741044061,245,0 +170741044110,245,0 +170741044158,245,0 +170741044206,245,0 +170741044254,245,0 +170741044302,245,0 +170741044352,245,0 +170741044399,245,0 +170741044447,245,0 +170741044495,245,0 +170741044543,245,0 +170741044591,245,0 +170741044641,245,0 +170741044690,245,0 +170741044738,245,0 +170741044786,245,0 +170741044836,245,0 +170741044885,245,0 +170741044933,245,0 +170741044983,245,0 +170741045032,245,0 +170741045082,245,0 +170741045131,245,0 +170741045179,245,0 +170741045227,245,0 +170741045275,245,0 +170741045323,245,0 +170741045373,245,0 +170741045421,245,0 +170741045469,245,0 +170741045517,245,0 +170741045566,245,0 +170741045614,245,0 +170741045664,245,0 +170741045713,245,0 +170741045761,245,0 +170741045809,245,0 +170741045857,245,0 +170741045905,245,0 +170741045953,245,0 +170741046003,245,0 +170741046050,245,0 +170741046098,245,0 +170741046146,245,0 +170741046194,245,0 +170741046244,245,0 +170741046292,245,0 +170741046340,245,0 +170741046388,245,0 +170741046437,245,0 +170741046485,245,0 +170741046533,245,0 +170741046581,245,0 +170741046629,245,0 +170741046677,245,0 +170741046725,245,0 +170741046774,245,0 +170741046822,245,0 +170741046872,245,0 +170741046920,245,0 +170741046969,245,0 +170741047019,245,0 +170741047067,245,0 +170741047115,245,0 +170741047163,245,0 +170741047211,245,0 +170741047259,245,0 +170741047306,245,0 +170741047354,245,0 +170741047402,245,0 +170741047452,245,0 +170741047500,245,0 +170741047549,245,0 +170741047597,245,0 +170741047645,245,0 +170741047693,245,0 +170741047741,245,0 +170741047791,245,0 +170741047839,245,0 +170741047888,245,0 +170741047938,245,0 +170741047986,245,0 +170741048033,245,0 +170741048083,245,0 +170741048132,245,0 +170741048182,245,0 +170741048230,245,0 +170741048278,245,0 +170741048327,245,0 +170741048377,245,0 +170741048425,245,0 +170741048474,245,0 +170741048522,245,0 +170741048572,245,0 +170741048620,245,0 +170741048669,245,0 +170741048719,245,0 +170741048767,245,0 +170741048815,245,0 +170741048862,245,0 +170741048910,245,0 +170741048958,245,0 +170741049006,245,0 +170741049054,245,0 +170741049103,245,0 +170741049151,246,0 +170741049199,245,0 +170741049247,245,0 +170741049295,245,0 +170741049345,245,0 +170741049393,245,0 +170741049442,245,0 +170741049490,245,0 +170741049538,245,0 +170741049586,245,0 +170741049634,245,0 +170741049683,245,0 +170741049733,245,0 +170741049781,245,0 +170741049829,245,0 +170741049877,245,0 +170741049926,245,0 +170741049974,245,0 +170741050022,245,0 +170741050070,245,0 +170741050118,245,0 +170741050165,245,0 +170741050213,245,0 +170741050263,245,0 +170741050311,245,0 +170741050359,245,0 +170741050406,245,0 +170741050456,245,0 +170741050504,245,0 +170741050552,245,0 +170741050600,245,0 +170741050647,245,0 +170741050695,245,0 +170741050745,245,0 +170741050793,245,0 +170741050841,245,0 +170741050890,245,0 +170741050938,245,0 +170741050988,245,0 +170741051037,245,0 +170741051085,245,0 +170741051133,245,0 +170741051183,245,0 +170741051232,245,0 +170741051282,245,0 +170741051330,245,0 +170741051379,245,0 +170741051429,245,0 +170741051478,245,0 +170741051528,245,0 +170741051576,245,0 +170741051625,245,0 +170741051673,245,0 +170741051721,245,0 +170741051769,245,0 +170741051819,245,0 +170741051868,245,0 +170741051916,245,0 +170741051964,245,0 +170741052012,245,0 +170741052060,245,0 +170741052108,245,0 +170741052158,245,0 +170741052206,245,0 +170741052254,245,0 +170741052301,245,0 +170741052351,245,0 +170741052400,245,0 +170741052448,245,0 +170741052498,245,0 +170741052546,245,0 +170741052594,245,0 +170741052642,245,0 +170741052690,245,0 +170741052738,245,0 +170741052786,245,0 +170741052834,245,0 +170741052883,245,0 +170741052931,245,0 +170741052979,245,0 +170741053027,245,0 +170741053075,245,0 +170741053123,245,0 +170741053171,245,0 +170741053219,245,0 +170741053268,245,0 +170741053316,245,0 +170741053364,245,0 +170741053412,245,0 +170741053460,245,0 +170741053508,245,0 +170741053556,245,0 +170741053604,245,0 +170741053653,245,0 +170741053701,245,0 +170741053749,245,0 +170741053797,245,0 +170741053847,245,0 +170741053896,245,0 +170741053944,245,0 +170741053992,245,0 +170741054040,245,0 +170741054088,245,0 +170741054138,245,0 +170741054186,245,0 +170741054233,245,0 +170741054283,245,0 +170741054332,245,0 +170741054382,245,0 +170741054430,245,0 +170741054478,245,0 +170741054527,245,0 +170741054575,245,0 +170741054625,245,0 +170741054674,245,0 +170741054724,245,0 +170741054772,245,0 +170741054821,245,0 +170741054869,245,0 +170741054917,245,0 +170741054967,245,0 +170741055015,245,0 +170741055064,245,0 +170741055112,245,0 +170741055162,245,0 +170741055210,245,0 +170741055258,245,0 +170741055306,245,0 +170741055354,245,0 +170741055403,245,0 +170741055451,245,0 +170741055499,245,0 +170741055549,245,0 +170741055596,245,0 +170741055644,245,0 +170741055692,245,0 +170741055740,245,0 +170741055788,245,0 +170741055836,245,0 +170741055884,245,0 +170741055934,245,0 +170741055982,245,0 +170741056030,245,0 +170741056079,245,0 +170741056129,245,0 +170741056177,245,0 +170741056225,245,0 +170741056274,245,0 +170741056324,245,0 +170741056373,245,0 +170741056423,245,0 +170741056471,245,0 +170741056518,245,0 +170741056568,245,0 +170741056617,245,0 +170741056666,245,0 +170741056713,245,0 +170741056761,245,0 +170741056809,245,0 +170741056857,245,0 +170741056905,245,0 +170741056955,245,0 +170741057003,245,0 +170741057051,245,0 +170741057099,245,0 +170741057147,245,0 +170741057195,245,0 +170741057244,245,0 +170741057292,245,0 +170741057340,245,0 +170741057388,245,0 +170741057436,245,0 +170741057484,245,0 +170741057533,245,0 +170741057583,245,0 +170741057632,245,0 +170741057682,245,0 +170741057730,245,0 +170741057778,245,0 +170741057826,245,0 +170741057874,245,0 +170741057923,245,0 +170741057971,245,0 +170741058021,245,0 +170741058069,245,0 +170741058118,245,0 +170741058166,245,0 +170741058216,245,0 +170741058264,245,0 +170741058312,245,0 +170741058360,245,0 +170741058408,245,0 +170741058456,245,0 +170741058504,245,0 +170741058553,245,0 +170741058601,245,0 +170741058649,245,0 +170741058698,245,0 +170741058748,245,0 +170741058796,245,0 +170741058844,245,0 +170741058892,245,0 +170741058941,245,0 +170741058989,245,0 +170741059037,245,0 +170741059085,245,0 +170741059133,245,0 +170741059181,245,0 +170741059229,245,0 +170741059279,245,0 +170741059327,245,0 +170741059376,245,0 +170741059424,245,0 +170741059474,245,0 +170741059523,245,0 +170741059573,245,0 +170741059621,245,0 +170741059669,245,0 +170741059717,245,0 +170741059765,245,0 +170741059814,245,0 +170741059862,245,0 +170741059912,245,0 +170741059961,245,0 +170741060009,245,0 +170741060059,245,0 +170741060107,245,0 +170741060156,245,0 +170741060206,245,0 +170741060253,245,0 +170741060301,245,0 +170741060351,245,0 +170741060399,245,0 +170741060449,245,0 +170741060496,245,0 +170741060546,245,0 +170741060596,245,0 +170741060644,245,0 +170741060693,245,0 +170741060743,245,0 +170741060791,245,0 +170741060840,245,0 +170741060888,245,0 +170741060938,245,0 +170741060986,245,0 +170741061033,245,0 +170741061081,245,0 +170741061129,245,0 +170741061177,245,0 +170741061225,245,0 +170741061275,245,0 +170741061324,245,0 +170741061372,245,0 +170741061420,245,0 +170741061468,245,0 +170741061516,244,0 +170741061564,245,0 +170741061614,245,0 +170741061663,245,0 +170741061713,245,0 +170741061762,245,0 +170741061812,245,0 +170741061860,245,0 +170741061909,245,0 +170741061957,245,0 +170741062005,245,0 +170741062055,245,0 +170741062102,245,0 +170741062150,245,0 +170741062198,245,0 +170741062246,245,0 +170741062294,245,0 +170741062342,245,0 +170741062390,245,0 +170741062440,245,0 +170741062488,245,0 +170741062536,245,0 +170741062584,245,0 +170741062633,245,0 +170741062683,245,0 +170741062732,245,0 +170741062780,245,0 +170741062828,245,0 +170741062878,245,0 +170741062926,245,0 +170741062973,245,0 +170741063021,245,0 +170741063071,245,0 +170741063119,245,0 +170741063167,245,0 +170741063215,245,0 +170741063263,245,0 +170741063311,244,0 +170741063359,245,0 +170741063408,245,0 +170741063456,245,0 +170741063504,245,0 +170741063552,245,0 +170741063600,244,0 +170741063648,244,0 +170741063696,245,0 +170741063746,245,0 +170741063794,245,0 +170741063842,245,0 +170741063889,245,0 +170741063937,245,0 +170741063985,245,0 +170741064035,245,0 +170741064084,245,0 +170741064132,245,0 +170741064180,245,0 +170741064230,245,0 +170741064278,245,0 +170741064327,245,0 +170741064377,245,0 +170741064425,244,0 +170741064473,245,0 +170741064521,245,0 +170741064569,245,0 +170741064617,245,0 +170741064666,245,0 +170741064714,245,0 +170741064764,245,0 +170741064812,245,0 +170741064861,245,0 +170741064909,245,0 +170741064957,245,0 +170741065007,245,0 +170741065055,245,0 +170741065104,245,0 +170741065152,245,0 +170741065200,245,0 +170741065248,245,0 +170741065296,245,0 +170741065346,245,0 +170741065394,245,0 +170741065442,245,0 +170741065490,245,0 +170741065538,245,0 +170741065586,245,0 +170741065634,245,0 +170741065682,245,0 +170741065730,245,0 +170741065778,245,0 +170741065826,245,0 +170741065873,245,0 +170741065921,245,0 +170741065969,245,0 +170741066017,245,0 +170741066065,245,0 +170741066113,245,0 +170741066163,245,0 +170741066211,245,0 +170741066259,245,0 +170741066307,245,0 +170741066356,245,0 +170741066404,245,0 +170741066454,245,0 +170741066501,245,0 +170741066549,245,0 +170741066599,245,0 +170741066649,245,0 +170741066698,245,0 +170741066748,245,0 +170741066797,245,0 +170741066845,245,0 +170741066893,245,0 +170741066941,245,0 +170741066991,245,0 +170741067039,245,0 +170741067088,245,0 +170741067136,245,0 +170741067184,245,0 +170741067234,245,0 +170741067281,245,0 +170741067329,245,0 +170741067377,245,0 +170741067425,245,0 +170741067475,245,0 +170741067523,245,0 +170741067571,245,0 +170741067620,245,0 +170741067668,245,0 +170741067718,245,0 +170741067766,245,0 +170741067815,245,0 +170741067863,245,0 +170741067913,245,0 +170741067961,245,0 +170741068010,245,0 +170741068058,245,0 +170741068106,245,0 +170741068155,245,0 +170741068205,245,0 +170741068255,245,0 +170741068303,245,0 +170741068351,245,0 +170741068398,245,0 +170741068446,245,0 +170741068494,245,0 +170741068542,245,0 +170741068590,245,0 +170741068640,245,0 +170741068688,245,0 +170741068737,245,0 +170741068785,245,0 +170741068835,245,0 +170741068883,245,0 +170741068932,245,0 +170741068980,245,0 +170741069030,245,0 +170741069078,245,0 +170741069126,245,0 +170741069174,245,0 +170741069223,245,0 +170741069273,245,0 +170741069321,245,0 +170741069369,245,0 +170741069417,245,0 +170741069465,245,0 +170741069514,245,0 +170741069562,245,0 +170741069610,245,0 +170741069658,245,0 +170741069706,245,0 +170741069754,245,0 +170741069802,245,0 +170741069850,245,0 +170741069898,245,0 +170741069946,245,0 +170741069994,245,0 +170741070043,245,0 +170741070091,245,0 +170741070139,245,0 +170741070187,245,0 +170741070237,245,0 +170741070286,245,0 +170741070334,245,0 +170741070382,245,0 +170741070432,245,0 +170741070480,245,0 +170741070528,245,0 +170741070577,245,0 +170741070625,245,0 +170741070675,245,0 +170741070723,245,0 +170741070771,245,0 +170741070819,245,0 +170741070867,245,0 +170741070915,245,0 +170741070963,245,0 +170741071010,245,0 +170741071058,245,0 +170741071108,245,0 +170741071157,245,0 +170741071205,245,0 +170741071253,245,0 +170741071301,245,0 +170741071349,245,0 +170741071397,245,0 +170741071447,245,0 +170741071496,245,0 +170741071546,245,0 +170741071594,245,0 +170741071642,245,0 +170741071691,245,0 +170741071741,245,0 +170741071790,245,0 +170741071840,245,0 +170741071888,245,0 +170741071936,245,0 +170741071985,245,0 +170741072033,245,0 +170741072081,245,0 +170741072129,245,0 +170741072177,245,0 +170741072225,245,0 +170741072273,245,0 +170741072321,245,0 +170741072371,245,0 +170741072419,245,0 +170741072467,245,0 +170741072516,245,0 +170741072564,245,0 +170741072612,245,0 +170741072660,245,0 +170741072708,245,0 +170741072756,245,0 +170741072804,245,0 +170741072852,245,0 +170741072901,245,0 +170741072949,245,0 +170741072997,245,0 +170741073045,245,0 +170741073093,245,0 +170741073141,245,0 +170741073191,245,0 +170741073239,245,0 +170741073287,245,0 +170741073335,245,0 +170741073383,245,0 +170741073432,245,0 +170741073480,245,0 +170741073528,245,0 +170741073576,245,0 +170741073624,245,0 +170741073672,245,0 +170741073720,245,0 +170741073770,245,0 +170741073818,245,0 +170741073866,245,0 +170741073913,245,0 +170741073963,245,0 +170741074011,245,0 +170741074059,245,0 +170741074108,245,0 +170741074158,245,0 +170741074207,245,0 +170741074257,245,0 +170741074305,245,0 +170741074353,245,0 +170741074401,245,0 +170741074450,245,0 +170741074498,245,0 +170741074546,245,0 +170741074594,245,0 +170741074642,245,0 +170741074692,245,0 +170741074740,245,0 +170741074788,245,0 +170741074835,245,0 +170741074883,245,0 +170741074933,245,0 +170741074981,245,0 +170741075030,245,0 +170741075078,245,0 +170741075126,245,0 +170741075174,245,0 +170741075222,245,0 +170741075270,245,0 +170741075318,245,0 +170741075366,245,0 +170741075414,245,0 +170741075462,245,0 +170741075510,245,0 +170741075560,245,0 +170741075608,245,0 +170741075655,245,0 +170741075703,245,0 +170741075752,245,0 +170741075800,245,0 +170741075848,245,0 +170741075895,245,0 +170741075945,245,0 +170741075995,245,0 +170741076043,245,0 +170741076092,245,0 +170741076142,245,0 +170741076191,245,0 +170741076239,245,0 +170741076287,245,0 +170741076336,245,0 +170741076384,245,0 +170741076434,245,0 +170741076482,245,0 +170741076530,245,0 +170741076578,245,0 +170741076626,245,0 +170741076675,245,0 +170741076723,245,0 +170741076771,245,0 +170741076819,245,0 +170741076869,245,0 +170741076918,245,0 +170741076966,245,0 +170741077014,245,0 +170741077063,245,0 +170741077111,245,0 +170741077159,245,0 +170741077209,245,0 +170741077257,245,0 +170741077305,245,0 +170741077353,245,0 +170741077401,245,0 +170741077449,245,0 +170741077497,245,0 +170741077545,245,0 +170741077593,245,0 +170741077640,245,0 +170741077690,245,0 +170741077738,245,0 +170741077786,245,0 +170741077834,245,0 +170741077884,245,0 +170741077932,245,0 +170741077980,245,0 +170741078027,245,0 +170741078075,245,0 +170741078123,245,0 +170741078171,245,0 +170741078221,245,0 +170741078269,245,0 +170741078318,245,0 +170741078368,245,0 +170741078416,245,0 +170741078465,245,0 +170741078513,245,0 +170741078561,245,0 +170741078609,245,0 +170741078657,245,0 +170741078705,245,0 +170741078754,245,0 +170741078804,245,0 +170741078853,245,0 +170741078901,245,0 +170741078949,245,0 +170741078999,245,0 +170741079047,245,0 +170741079096,245,0 +170741079146,245,0 +170741079194,245,0 +170741079243,245,0 +170741079291,245,0 +170741079339,245,0 +170741079387,245,0 +170741079437,245,0 +170741079485,245,0 +170741079533,245,0 +170741079581,245,0 +170741079629,245,0 +170741079677,245,0 +170741079725,245,0 +170741079773,245,0 +170741079821,245,0 +170741079868,245,0 +170741079916,245,0 +170741079966,245,0 +170741080015,245,0 +170741080063,245,0 +170741080113,245,0 +170741080163,245,0 +170741080211,245,0 +170741080258,245,0 +170741080306,245,0 +170741080356,245,0 +170741080404,245,0 +170741080452,245,0 +170741080501,245,0 +170741080549,245,0 +170741080597,245,0 +170741080647,245,0 +170741080695,245,0 +170741080744,245,0 +170741080794,245,0 +170741080843,245,0 +170741080891,245,0 +170741080939,245,0 +170741080987,245,0 +170741081035,245,0 +170741081084,245,0 +170741081132,245,0 +170741081180,245,0 +170741081228,245,0 +170741081276,245,0 +170741081324,245,0 +170741081372,245,0 +170741081420,245,0 +170741081468,245,0 +170741081516,245,0 +170741081564,245,0 +170741081614,245,0 +170741081662,245,0 +170741081710,245,0 +170741081759,245,0 +170741081807,245,0 +170741081857,245,0 +170741081905,245,0 +170741081953,245,0 +170741082000,245,0 +170741082050,245,0 +170741082098,245,0 +170741082146,245,0 +170741082194,245,0 +170741082243,245,0 +170741082291,245,0 +170741082339,245,0 +170741082389,245,0 +170741082437,245,0 +170741082485,245,0 +170741082533,245,0 +170741082581,245,0 +170741082628,245,0 +170741082678,245,0 +170741082726,245,0 +170741082775,245,0 +170741082825,245,0 +170741082874,245,0 +170741082922,245,0 +170741082970,245,0 +170741083018,245,0 +170741083068,245,0 +170741083117,245,0 +170741083165,245,0 +170741083213,245,0 +170741083261,245,0 +170741083309,245,0 +170741083357,245,0 +170741083405,245,0 +170741083453,245,0 +170741083500,245,0 +170741083548,245,0 +170741083596,245,0 +170741083646,245,0 +170741083695,245,0 +170741083743,245,0 +170741083791,245,0 +170741083839,245,0 +170741083889,245,0 +170741083939,245,0 +170741083987,245,0 +170741084035,245,0 +170741084083,245,0 +170741084131,245,0 +170741084179,245,0 +170741084227,245,0 +170741084276,245,0 +170741084326,245,0 +170741084374,245,0 +170741084423,245,0 +170741084471,245,0 +170741084521,245,0 +170741084569,245,0 +170741084618,245,0 +170741084666,245,0 +170741084714,245,0 +170741084762,245,0 +170741084810,245,0 +170741084858,245,0 +170741084907,245,0 +170741084957,245,0 +170741085005,245,0 +170741085053,245,0 +170741085102,245,0 +170741085152,246,0 +170741085200,245,0 +170741085249,245,0 +170741085297,245,0 +170741085347,245,0 +170741085396,245,0 +170741085446,245,0 +170741085494,245,0 +170741085544,245,0 +170741085592,245,0 +170741085640,245,0 +170741085687,245,0 +170741085735,245,0 +170741085783,245,0 +170741085831,245,0 +170741085879,245,0 +170741085927,245,0 +170741085977,245,0 +170741086025,245,0 +170741086073,245,0 +170741086122,245,0 +170741086170,245,0 +170741086220,245,0 +170741086268,245,0 +170741086317,245,0 +170741086367,245,0 +170741086415,245,0 +170741086463,245,0 +170741086512,245,0 +170741086560,245,0 +170741086608,245,0 +170741086658,245,0 +170741086706,245,0 +170741086755,245,0 +170741086803,245,0 +170741086853,245,0 +170741086901,245,0 +170741086948,245,0 +170741086996,245,0 +170741087046,245,0 +170741087095,245,0 +170741087143,245,0 +170741087191,245,0 +170741087239,245,0 +170741087287,245,0 +170741087335,245,0 +170741087385,245,0 +170741087434,245,0 +170741087484,245,0 +170741087534,245,0 +170741087581,245,0 +170741087631,245,0 +170741087679,245,0 +170741087729,245,0 +170741087778,245,0 +170741087828,245,0 +170741087877,245,0 +170741087925,245,0 +170741087975,245,0 +170741088024,245,0 +170741088072,245,0 +170741088122,245,0 +170741088171,245,0 +170741088219,245,0 +170741088267,245,0 +170741088315,245,0 +170741088365,245,0 +170741088412,245,0 +170741088462,245,0 +170741088510,245,0 +170741088558,245,0 +170741088606,245,0 +170741088654,245,0 +170741088702,245,0 +170741088751,245,0 +170741088799,245,0 +170741088847,245,0 +170741088897,245,0 +170741088945,245,0 +170741088993,245,0 +170741089041,245,0 +170741089090,245,0 +170741089138,245,0 +170741089186,245,0 +170741089234,245,0 +170741089283,245,0 +170741089333,245,0 +170741089381,245,0 +170741089429,245,0 +170741089477,245,0 +170741089525,245,0 +170741089573,245,0 +170741089621,245,0 +170741089669,245,0 +170741089718,245,0 +170741089766,245,0 +170741089814,245,0 +170741089862,245,0 +170741089910,245,0 +170741089958,245,0 +170741090006,245,0 +170741090056,245,0 +170741090103,245,0 +170741090151,245,0 +170741090199,245,0 +170741090247,245,0 +170741090295,245,0 +170741090343,245,0 +170741090391,245,0 +170741090439,245,0 +170741090488,245,0 +170741090538,245,0 +170741090587,245,0 +170741090637,245,0 +170741090685,245,0 +170741090733,245,0 +170741090781,245,0 +170741090829,245,0 +170741090877,245,0 +170741090925,245,0 +170741090974,245,0 +170741091022,245,0 +170741091070,245,0 +170741091118,245,0 +170741091168,245,0 +170741091216,245,0 +170741091264,245,0 +170741091312,245,0 +170741091361,245,0 +170741091409,245,0 +170741091457,245,0 +170741091507,245,0 +170741091555,245,0 +170741091603,245,0 +170741091652,245,0 +170741091700,245,0 +170741091748,245,0 +170741091796,245,0 +170741091844,245,0 +170741091892,245,0 +170741091940,245,0 +170741091989,245,0 +170741092037,245,0 +170741092085,245,0 +170741092133,245,0 +170741092181,245,0 +170741092229,245,0 +170741092277,245,0 +170741092325,245,0 +170741092373,245,0 +170741092421,245,0 +170741092471,245,0 +170741092519,245,0 +170741092566,245,0 +170741092614,245,0 +170741092662,245,0 +170741092710,245,0 +170741092758,245,0 +170741092808,245,0 +170741092856,245,0 +170741092904,245,0 +170741092953,245,0 +170741093001,245,0 +170741093051,245,0 +170741093100,245,0 +170741093148,245,0 +170741093198,245,0 +170741093246,245,0 +170741093294,245,0 +170741093342,245,0 +170741093391,245,0 +170741093439,245,0 +170741093487,245,0 +170741093535,245,0 +170741093583,245,0 +170741093631,245,0 +170741093679,245,0 +170741093727,245,0 +170741093775,245,0 +170741093823,245,0 +170741093871,245,0 +170741093919,245,0 +170741093967,245,0 +170741094015,245,0 +170741094064,245,0 +170741094112,245,0 +170741094162,245,0 +170741094211,245,0 +170741094261,245,0 +170741094309,245,0 +170741094357,245,0 +170741094406,245,0 +170741094454,245,0 +170741094502,245,0 +170741094550,245,0 +170741094600,245,0 +170741094649,245,0 +170741094697,245,0 +170741094747,245,0 +170741094795,245,0 +170741094844,245,0 +170741094892,245,0 +170741094940,245,0 +170741094988,245,0 +170741095036,245,0 +170741095086,245,0 +170741095133,245,0 +170741095183,245,0 +170741095233,245,0 +170741095280,245,0 +170741095330,245,0 +170741095378,245,0 +170741095427,245,0 +170741095475,245,0 +170741095525,245,0 +170741095573,245,0 +170741095621,245,0 +170741095670,245,0 +170741095718,245,0 +170741095766,245,0 +170741095814,245,0 +170741095864,245,0 +170741095912,245,0 +170741095960,245,0 +170741096009,245,0 +170741096057,245,0 +170741096105,245,0 +170741096153,245,0 +170741096201,245,0 +170741096249,245,0 +170741096297,245,0 +170741096345,245,0 +170741096393,245,0 +170741096442,245,0 +170741096490,245,0 +170741096538,245,0 +170741096586,245,0 +170741096636,245,0 +170741096684,245,0 +170741096733,245,0 +170741096781,245,0 +170741096829,245,0 +170741096877,245,0 +170741096925,245,0 +170741096973,245,0 +170741097021,245,0 +170741097071,245,0 +170741097120,245,0 +170741097170,245,0 +170741097218,245,0 +170741097267,245,0 +170741097315,245,0 +170741097365,245,0 +170741097413,245,0 +170741097462,245,0 +170741097510,245,0 +170741097560,245,0 +170741097609,245,0 +170741097657,245,0 +170741097707,245,0 +170741097755,245,0 +170741097804,245,0 +170741097852,245,0 +170741097902,245,0 +170741097951,245,0 +170741097999,245,0 +170741098047,245,0 +170741098095,245,0 +170741098144,245,0 +170741098192,245,0 +170741098240,245,0 +170741098290,245,0 +170741098338,245,0 +170741098386,245,0 +170741098433,245,0 +170741098481,245,0 +170741098531,245,0 +170741098580,245,0 +170741098630,245,0 +170741098678,245,0 +170741098727,245,0 +170741098775,245,0 +170741098823,245,0 +170741098873,245,0 +170741098921,245,0 +170741098968,245,0 +170741099018,245,0 +170741099068,245,0 +170741099116,245,0 +170741099163,245,0 +170741099211,245,0 +170741099259,245,0 +170741099309,245,0 +170741099357,245,0 +170741099406,245,0 +170741099454,245,0 +170741099502,245,0 +170741099550,246,0 +170741099598,245,0 +170741099648,245,0 +170741099697,245,0 +170741099745,245,0 +170741099793,245,0 +170741099841,245,0 +170741099891,245,0 +170741099939,245,0 +170741099987,245,0 +170741100034,245,0 +170741100082,245,0 +170741100130,245,0 +170741100178,245,0 +170741100226,245,0 +170741100274,245,0 +170741100322,245,0 +170741100370,245,0 +170741100418,245,0 +170741100466,245,0 +170741100516,245,0 +170741100565,245,0 +170741100613,245,0 +170741100661,245,0 +170741100710,245,0 +170741100760,245,0 +170741100808,245,0 +170741100857,245,0 +170741100905,245,0 +170741100955,245,0 +170741101005,245,0 +170741101053,245,0 +170741101100,245,0 +170741101148,245,0 +170741101196,245,0 +170741101246,245,0 +170741101295,245,0 +170741101345,245,0 +170741101394,245,0 +170741101444,245,0 +170741101493,245,0 +170741101543,245,0 +170741101591,245,0 +170741101640,245,0 +170741101688,245,0 +170741101736,245,0 +170741101784,245,0 +170741101834,245,0 +170741101882,245,0 +170741101929,245,0 +170741101977,245,0 +170741102025,245,0 +170741102073,245,0 +170741102121,245,0 +170741102169,245,0 +170741102217,245,0 +170741102265,245,0 +170741102313,245,0 +170741102363,245,0 +170741102411,245,0 +170741102459,245,0 +170741102507,245,0 +170741102555,245,0 +170741102604,245,0 +170741102652,245,0 +170741102702,245,0 +170741102750,245,0 +170741102799,245,0 +170741102849,245,0 +170741102897,245,0 +170741102945,245,0 +170741102993,245,0 +170741103042,245,0 +170741103092,245,0 +170741103139,245,0 +170741103187,245,0 +170741103237,245,0 +170741103285,245,0 +170741103333,245,0 +170741103380,245,0 +170741103428,245,0 +170741103476,245,0 +170741103524,245,0 +170741103572,245,0 +170741103620,245,0 +170741103668,245,0 +170741103716,245,0 +170741103764,245,0 +170741103811,245,0 +170741103859,245,0 +170741103907,245,0 +170741103955,245,0 +170741104004,245,0 +170741104052,245,0 +170741104102,245,0 +170741104151,245,0 +170741104201,245,0 +170741104249,245,0 +170741104298,244,0 +170741104346,245,0 +170741104394,245,0 +170741104442,245,0 +170741104490,245,0 +170741104538,245,0 +170741104586,245,0 +170741104634,245,0 +170741104684,245,0 +170741104732,245,0 +170741104780,245,0 +170741104829,245,0 +170741104877,245,0 +170741104925,245,0 +170741104975,245,0 +170741105023,245,0 +170741105071,245,0 +170741105120,245,0 +170741105170,245,0 +170741105219,245,0 +170741105267,245,0 +170741105315,245,0 +170741105363,245,0 +170741105411,245,0 +170741105459,245,0 +170741105508,245,0 +170741105558,245,0 +170741105606,245,0 +170741105654,245,0 +170741105703,245,0 +170741105751,245,0 +170741105799,245,0 +170741105847,245,0 +170741105897,245,0 +170741105945,245,0 +170741105994,245,0 +170741106042,245,0 +170741106092,245,0 +170741106140,245,0 +170741106189,245,0 +170741106237,245,0 +170741106285,245,0 +170741106334,245,0 +170741106382,245,0 +170741106430,245,0 +170741106480,244,0 +170741106529,245,0 +170741106577,245,0 +170741106625,245,0 +170741106673,245,0 +170741106721,245,0 +170741106769,245,0 +170741106817,245,0 +170741106866,245,0 +170741106914,244,0 +170741106962,245,0 +170741107012,245,0 +170741107060,245,0 +170741107109,245,0 +170741107157,245,0 +170741107205,245,0 +170741107253,245,0 +170741107303,245,0 +170741107351,245,0 +170741107399,245,0 +170741107447,245,0 +170741107496,245,0 +170741107544,245,0 +170741107592,244,0 +170741107642,245,0 +170741107689,245,0 +170741107739,245,0 +170741107787,245,0 +170741107835,245,0 +170741107883,245,0 +170741107932,245,0 +170741107982,245,0 +170741108031,245,0 +170741108079,245,0 +170741108127,245,0 +170741108175,245,0 +170741108225,245,0 +170741108273,245,0 +170741108321,245,0 +170741108370,245,0 +170741108418,245,0 +170741108466,245,0 +170741108514,245,0 +170741108562,245,0 +170741108610,245,0 +170741108660,245,0 +170741108707,245,0 +170741108757,245,0 +170741108806,245,0 +170741108854,245,0 +170741108902,245,0 +170741108952,245,0 +170741109000,245,0 +170741109049,245,0 +170741109097,245,0 +170741109145,245,0 +170741109195,245,0 +170741109244,245,0 +170741109292,245,0 +170741109340,245,0 +170741109388,244,0 +170741109438,245,0 +170741109487,245,0 +170741109535,245,0 +170741109585,245,0 +170741109633,245,0 +170741109681,245,0 +170741109730,245,0 +170741109778,245,0 +170741109826,245,0 +170741109874,245,0 +170741109924,245,0 +170741109971,245,0 +170741110019,245,0 +170741110069,245,0 +170741110117,245,0 +170741110165,245,0 +170741110213,245,0 +170741110261,245,0 +170741110311,245,0 +170741110360,245,0 +170741110408,245,0 +170741110456,245,0 +170741110506,245,0 +170741110554,245,0 +170741110603,245,0 +170741110653,245,0 +170741110701,245,0 +170741110750,245,0 +170741110798,245,0 +170741110846,245,0 +170741110894,245,0 +170741110943,245,0 +170741110991,245,0 +170741111041,245,0 +170741111089,245,0 +170741111138,245,0 +170741111188,245,0 +170741111236,245,0 +170741111284,245,0 +170741111332,245,0 +170741111380,245,0 +170741111428,245,0 +170741111477,245,0 +170741111525,245,0 +170741111574,245,0 +170741111622,245,0 +170741111670,245,0 +170741111718,245,0 +170741111768,245,0 +170741111816,245,0 +170741111864,245,0 +170741111913,245,0 +170741111961,245,0 +170741112009,245,0 +170741112057,245,0 +170741112105,245,0 +170741112153,245,0 +170741112201,245,0 +170741112249,245,0 +170741112298,245,0 +170741112348,245,0 +170741112396,245,0 +170741112444,245,0 +170741112493,245,0 +170741112541,245,0 +170741112589,245,0 +170741112639,245,0 +170741112687,245,0 +170741112735,245,0 +170741112783,245,0 +170741112831,245,0 +170741112879,244,0 +170741112927,244,0 +170741112976,245,0 +170741113024,245,0 +170741113072,245,0 +170741113120,245,0 +170741113168,245,0 +170741113216,245,0 +170741113263,245,0 +170741113311,245,0 +170741113359,245,0 +170741113407,245,0 +170741113455,245,0 +170741113503,245,0 +170741113551,245,0 +170741113599,245,0 +170741113647,245,0 +170741113695,245,0 +170741113744,245,0 +170741113792,245,0 +170741113840,245,0 +170741113888,245,0 +170741113936,245,0 +170741113985,245,0 +170741114033,245,0 +170741114081,245,0 +170741114129,245,0 +170741114177,245,0 +170741114224,245,0 +170741114273,245,0 +170741114321,245,0 +170741114370,245,0 +170741114418,245,0 +170741114466,245,0 +170741114514,245,0 +170741114562,245,0 +170741114610,245,0 +170741114658,245,0 +170741114707,245,0 +170741114755,245,0 +170741114805,245,0 +170741114853,245,0 +170741114901,245,0 +170741114950,245,0 +170741114998,245,0 +170741115046,245,0 +170741115096,245,0 +170741115144,245,0 +170741115192,245,0 +170741115241,245,0 +170741115289,245,0 +170741115339,245,0 +170741115388,245,0 +170741115436,245,0 +170741115484,245,0 +170741115534,245,0 +170741115582,245,0 +170741115631,245,0 +170741115681,245,0 +170741115729,245,0 +170741115778,245,0 +170741115828,245,0 +170741115876,245,0 +170741115924,245,0 +170741115972,245,0 +170741116020,245,0 +170741116068,245,0 +170741116116,245,0 +170741116163,245,0 +170741116211,245,0 +170741116259,245,0 +170741116309,245,0 +170741116357,245,0 +170741116405,245,0 +170741116453,245,0 +170741116501,245,0 +170741116549,245,0 +170741116597,245,0 +170741116645,245,0 +170741116693,245,0 +170741116742,245,0 +170741116790,245,0 +170741116839,245,0 +170741116889,245,0 +170741116937,245,0 +170741116985,245,0 +170741117035,245,0 +170741117082,245,0 +170741117132,245,0 +170741117180,245,0 +170741117228,245,0 +170741117276,245,0 +170741117325,245,0 +170741117373,245,0 +170741117423,245,0 +170741117472,245,0 +170741117522,245,0 +170741117571,245,0 +170741117619,245,0 +170741117667,245,0 +170741117717,245,0 +170741117765,245,0 +170741117813,245,0 +170741117861,245,0 +170741117909,245,0 +170741117956,245,0 +170741118006,245,0 +170741118054,245,0 +170741118102,245,0 +170741118151,245,0 +170741118199,245,0 +170741118247,245,0 +170741118295,245,0 +170741118343,245,0 +170741118391,245,0 +170741118439,245,0 +170741118487,245,0 +170741118535,245,0 +170741118582,245,0 +170741118630,245,0 +170741118680,245,0 +170741118728,245,0 +170741118777,245,0 +170741118825,245,0 +170741118873,245,0 +170741118922,245,0 +170741118970,245,0 +170741119020,245,0 +170741119069,245,0 +170741119117,245,0 +170741119165,245,0 +170741119215,245,0 +170741119264,245,0 +170741119312,245,0 +170741119360,245,0 +170741119408,245,0 +170741119458,245,0 +170741119507,245,0 +170741119557,245,0 +170741119605,245,0 +170741119653,245,0 +170741119700,245,0 +170741119748,245,0 +170741119798,245,0 +170741119846,245,0 +170741119895,245,0 +170741119943,245,0 +170741119993,245,0 +170741120041,245,0 +170741120090,245,0 +170741120138,245,0 +170741120186,245,0 +170741120234,245,0 +170741120282,245,0 +170741120330,245,0 +170741120379,245,0 +170741120429,245,0 +170741120476,245,0 +170741120524,245,0 +170741120574,244,0 +170741120622,245,0 +170741120671,245,0 +170741120719,245,0 +170741120767,245,0 +170741120815,245,0 +170741120863,245,0 +170741120911,245,0 +170741120959,245,0 +170741121007,245,0 +170741121055,245,0 +170741121102,245,0 +170741121150,245,0 +170741121198,245,0 +170741121246,245,0 +170741121294,245,0 +170741121342,245,0 +170741121392,245,0 +170741121441,245,0 +170741121489,245,0 +170741121537,245,0 +170741121587,245,0 +170741121634,245,0 +170741121684,245,0 +170741121733,245,0 +170741121781,245,0 +170741121829,245,0 +170741121877,245,0 +170741121927,245,0 +170741121976,245,0 +170741122026,245,0 +170741122074,245,0 +170741122122,245,0 +170741122170,245,0 +170741122218,245,0 +170741122266,245,0 +170741122314,245,0 +170741122362,245,0 +170741122409,245,0 +170741122457,245,0 +170741122505,245,0 +170741122553,245,0 +170741122601,245,0 +170741122651,245,0 +170741122699,245,0 +170741122747,245,0 +170741122796,245,0 +170741122844,245,0 +170741122892,245,0 +170741122940,245,0 +170741122988,245,0 +170741123037,245,0 +170741123085,245,0 +170741123133,245,0 +170741123181,245,0 +170741123228,245,0 +170741123276,245,0 +170741123324,245,0 +170741123372,245,0 +170741123420,245,0 +170741123468,245,0 +170741123516,245,0 +170741123564,245,0 +170741123612,245,0 +170741123661,245,0 +170741123709,245,0 +170741123757,245,0 +170741123805,245,0 +170741123852,245,0 +170741123900,245,0 +170741123948,245,0 +170741123996,245,0 +170741124046,245,0 +170741124093,245,0 +170741124143,245,0 +170741124191,245,0 +170741124239,245,0 +170741124288,245,0 +170741124336,245,0 +170741124384,245,0 +170741124432,245,0 +170741124482,245,0 +170741124531,245,0 +170741124581,245,0 +170741124629,245,0 +170741124676,245,0 +170741124724,245,0 +170741124772,245,0 +170741124820,245,0 +170741124868,245,0 +170741124918,245,0 +170741124966,245,0 +170741125014,245,0 +170741125062,245,0 +170741125110,245,0 +170741125157,245,0 +170741125205,245,0 +170741125253,245,0 +170741125303,245,0 +170741125352,245,0 +170741125402,245,0 +170741125450,245,0 +170741125498,245,0 +170741125546,245,0 +170741125594,245,0 +170741125641,245,0 +170741125691,245,0 +170741125739,245,0 +170741125787,244,0 +170741125836,245,0 +170741125884,245,0 +170741125932,245,0 +170741125980,245,0 +170741126028,245,0 +170741126076,245,0 +170741126124,245,0 +170741126172,245,0 +170741126220,245,0 +170741126269,245,0 +170741126317,245,0 +170741126367,245,0 +170741126415,245,0 +170741126464,245,0 +170741126512,245,0 +170741126560,245,0 +170741126608,245,0 +170741126656,245,0 +170741126704,245,0 +170741126754,245,0 +170741126802,245,0 +170741126850,245,0 +170741126898,245,0 +170741126945,245,0 +170741126993,245,0 +170741127043,245,0 +170741127092,245,0 +170741127140,245,0 +170741127188,245,0 +170741127236,245,0 +170741127284,245,0 +170741127332,245,0 +170741127380,245,0 +170741127428,245,0 +170741127475,245,0 +170741127523,245,0 +170741127571,245,0 +170741127621,245,0 +170741127668,245,0 +170741127716,245,0 +170741127764,245,0 +170741127812,245,0 +170741127860,245,0 +170741127908,244,0 +170741127956,245,0 +170741128005,245,0 +170741128053,245,0 +170741128101,245,0 +170741128150,245,0 +170741128198,245,0 +170741128246,245,0 +170741128294,245,0 +170741128344,245,0 +170741128392,245,0 +170741128440,245,0 +170741128488,245,0 +170741128536,245,0 +170741128583,245,0 +170741128633,245,0 +170741128681,245,0 +170741128729,245,0 +170741128777,245,0 +170741128826,245,0 +170741128874,245,0 +170741128922,245,0 +170741128972,245,0 +170741129020,245,0 +170741129068,245,0 +170741129115,245,0 +170741129163,245,0 +170741129211,245,0 +170741129259,245,0 +170741129307,245,0 +170741129355,245,0 +170741129403,245,0 +170741129451,245,0 +170741129498,245,0 +170741129546,245,0 +170741129594,245,0 +170741129642,245,0 +170741129690,245,0 +170741129738,245,0 +170741129786,245,0 +170741129834,245,0 +170741129883,245,0 +170741129931,245,0 +170741129979,245,0 +170741130027,245,0 +170741130075,245,0 +170741130123,245,0 +170741130171,245,0 +170741130218,245,0 +170741130266,245,0 +170741130314,245,0 +170741130362,245,0 +170741130412,245,0 +170741130461,245,0 +170741130509,245,0 +170741130557,245,0 +170741130605,245,0 +170741130655,245,0 +170741130704,245,0 +170741130752,245,0 +170741130800,245,0 +170741130848,245,0 +170741130896,245,0 +170741130944,245,0 +170741130993,245,0 +170741131041,245,0 +170741131089,245,0 +170741131137,245,0 +170741131185,245,0 +170741131233,245,0 +170741131281,245,0 +170741131329,245,0 +170741131376,245,0 +170741131424,245,0 +170741131474,245,0 +170741131522,245,0 +170741131569,245,0 +170741131617,245,0 +170741131665,245,0 +170741131713,245,0 +170741131761,245,0 +170741131809,245,0 +170741131857,245,0 +170741131905,245,0 +170741131952,245,0 +170741132000,245,0 +170741132048,245,0 +170741132096,245,0 +170741132144,245,0 +170741132192,245,0 +170741132240,245,0 +170741132288,245,0 +170741132336,245,0 +170741132384,245,0 +170741132431,245,0 +170741132479,245,0 +170741132529,245,0 +170741132577,245,0 +170741132625,245,0 +170741132673,245,0 +170741132720,245,0 +170741132768,245,0 +170741132816,245,0 +170741132864,245,0 +170741132912,245,0 +170741132960,245,0 +170741133008,245,0 +170741133056,244,0 +170741133104,245,0 +170741133153,245,0 +170741133201,245,0 +170741133249,245,0 +170741133297,245,0 +170741133346,245,0 +170741133394,245,0 +170741133442,245,0 +170741133490,245,0 +170741133538,245,0 +170741133586,245,0 +170741133634,245,0 +170741133682,245,0 +170741133732,245,0 +170741133780,245,0 +170741133828,245,0 +170741133877,245,0 +170741133925,245,0 +170741133975,245,0 +170741134023,245,0 +170741134070,245,0 +170741134118,245,0 +170741134168,245,0 +170741134216,245,0 +170741134265,245,0 +170741134313,245,0 +170741134361,245,0 +170741134411,245,0 +170741134460,245,0 +170741134508,245,0 +170741134558,245,0 +170741134606,245,0 +170741134655,245,0 +170741134705,245,0 +170741134754,245,0 +170741134804,245,0 +170741134853,245,0 +170741134901,245,0 +170741134949,245,0 +170741134998,245,0 +170741135048,245,0 +170741135096,245,0 +170741135144,245,0 +170741135193,245,0 +170741135241,245,0 +170741135289,245,0 +170741135339,245,0 +170741135387,245,0 +170741135436,245,0 +170741135484,245,0 +170741135532,245,0 +170741135582,245,0 +170741135631,245,0 +170741135681,245,0 +170741135729,245,0 +170741135776,245,0 +170741135824,245,0 +170741135872,245,0 +170741135922,245,0 +170741135971,245,0 +170741136019,245,0 +170741136067,245,0 +170741136115,245,0 +170741136163,245,0 +170741136211,245,0 +170741136260,245,0 +170741136310,245,0 +170741136359,245,0 +170741136407,245,0 +170741136457,245,0 +170741136506,245,0 +170741136554,245,0 +170741136602,245,0 +170741136650,245,0 +170741136700,244,0 +170741136749,245,0 +170741136797,245,0 +170741136845,245,0 +170741136895,245,0 +170741136943,245,0 +170741136991,245,0 +170741137040,245,0 +170741137090,244,0 +170741137139,245,0 +170741137187,245,0 +170741137236,245,0 +170741137284,245,0 +170741137332,245,0 +170741137380,245,0 +170741137428,245,0 +170741137476,245,0 +170741137524,245,0 +170741137573,245,0 +170741137623,245,0 +170741137672,245,0 +170741137720,245,0 +170741137768,245,0 +170741137816,245,0 +170741137864,245,0 +170741137912,245,0 +170741137960,245,0 +170741138008,245,0 +170741138056,245,0 +170741138105,245,0 +170741138153,245,0 +170741138203,245,0 +170741138251,245,0 +170741138300,245,0 +170741138348,245,0 +170741138396,245,0 +170741138444,245,0 +170741138492,245,0 +170741138542,245,0 +170741138590,245,0 +170741138638,245,0 +170741138686,245,0 +170741138734,245,0 +170741138781,245,0 +170741138829,245,0 +170741138879,245,0 +170741138927,245,0 +170741138975,245,0 +170741139023,245,0 +170741139072,245,0 +170741139120,245,0 +170741139168,245,0 +170741139216,245,0 +170741139266,245,0 +170741139315,245,0 +170741139365,245,0 +170741139414,245,0 +170741139462,245,0 +170741139510,245,0 +170741139560,245,0 +170741139607,245,0 +170741139657,245,0 +170741139705,245,0 +170741139753,245,0 +170741139801,245,0 +170741139850,245,0 +170741139898,245,0 +170741139946,245,0 +170741139996,245,0 +170741140045,245,0 +170741140095,245,0 +170741140143,245,0 +170741140192,245,0 +170741140242,245,0 +170741140291,245,0 +170741140339,245,0 +170741140387,245,0 +170741140437,245,0 +170741140485,245,0 +170741140533,245,0 +170741140580,245,0 +170741140630,245,0 +170741140678,245,0 +170741140726,245,0 +170741140775,245,0 +170741140823,245,0 +170741140873,245,0 +170741140922,245,0 +170741140970,245,0 +170741141020,245,0 +170741141068,245,0 +170741141117,245,0 +170741141165,245,0 +170741141213,245,0 +170741141261,245,0 +170741141311,245,0 +170741141359,245,0 +170741141407,245,0 +170741141455,245,0 +170741141503,245,0 +170741141550,245,0 +170741141598,245,0 +170741141648,245,0 +170741141696,245,0 +170741141744,245,0 +170741141792,245,0 +170741141840,245,0 +170741141887,245,0 +170741141935,245,0 +170741141983,245,0 +170741142031,245,0 +170741142079,245,0 +170741142127,245,0 +170741142175,245,0 +170741142223,245,0 +170741142272,245,0 +170741142320,245,0 +170741142368,245,0 +170741142416,245,0 +170741142465,245,0 +170741142515,245,0 +170741142563,245,0 +170741142612,245,0 +170741142660,245,0 +170741142710,245,0 +170741142758,245,0 +170741142806,245,0 +170741142854,245,0 +170741142902,245,0 +170741142951,245,0 +170741142999,245,0 +170741143047,245,0 +170741143095,245,0 +170741143142,245,0 +170741143190,245,0 +170741143238,245,0 +170741143288,245,0 +170741143336,245,0 +170741143384,245,0 +170741143431,245,0 +170741143479,245,0 +170741143527,245,0 +170741143575,245,0 +170741143623,245,0 +170741143671,245,0 +170741143720,245,0 +170741143770,245,0 +170741143819,244,0 +170741143867,245,0 +170741143917,245,0 +170741143966,244,0 +170741144016,245,0 +170741144064,245,0 +170741144112,245,0 +170741144160,245,0 +170741144209,245,0 +170741144259,245,0 +170741144307,245,0 +170741144355,245,0 +170741144404,245,0 +170741144452,244,0 +170741144502,245,0 +170741144551,245,0 +170741144599,245,0 +170741144648,245,0 +170741144696,245,0 +170741144746,245,0 +170741144795,245,0 +170741144845,245,0 +170741144893,245,0 +170741144941,245,0 +170741144989,245,0 +170741145038,245,0 +170741145086,245,0 +170741145136,245,0 +170741145184,245,0 +170741145233,245,0 +170741145281,245,0 +170741145331,245,0 +170741145379,245,0 +170741145427,245,0 +170741145476,244,0 +170741145524,245,0 +170741145572,245,0 +170741145622,245,0 +170741145670,245,0 +170741145719,245,0 +170741145767,245,0 +170741145815,245,0 +170741145863,245,0 +170741145911,245,0 +170741145960,245,0 +170741146008,245,0 +170741146056,245,0 +170741146104,245,0 +170741146152,245,0 +170741146202,245,0 +170741146250,245,0 +170741146299,245,0 +170741146349,245,0 +170741146398,245,0 +170741146446,245,0 +170741146496,245,0 +170741146544,245,0 +170741146592,245,0 +170741146639,245,0 +170741146687,245,0 +170741146735,245,0 +170741146783,245,0 +170741146831,245,0 +170741146879,244,0 +170741146927,245,0 +170741146975,245,0 +170741147024,245,0 +170741147074,245,0 +170741147123,245,0 +170741147173,245,0 +170741147221,245,0 +170741147269,245,0 +170741147318,244,0 +170741147366,245,0 +170741147416,245,0 +170741147465,245,0 +170741147515,245,0 +170741147563,245,0 +170741147612,245,0 +170741147660,245,0 +170741147708,245,0 +170741147756,245,0 +170741147804,245,0 +170741147853,245,0 +170741147901,245,0 +170741147951,245,0 +170741147999,245,0 +170741148047,245,0 +170741148095,245,0 +170741148143,245,0 +170741148192,245,0 +170741148242,245,0 +170741148291,244,0 +170741148341,245,0 +170741148390,245,0 +170741148440,245,0 +170741148488,245,0 +170741148536,245,0 +170741148585,244,0 +170741148635,245,0 +170741148684,245,0 +170741148732,245,0 +170741148780,245,0 +170741148829,245,0 +170741148877,245,0 +170741148925,245,0 +170741148973,245,0 +170741149023,245,0 +170741149072,245,0 +170741149120,245,0 +170741149170,245,0 +170741149218,244,0 +170741149267,245,0 +170741149315,245,0 +170741149363,245,0 +170741149411,245,0 +170741149459,245,0 +170741149507,245,0 +170741149555,245,0 +170741149603,245,0 +170741149652,244,0 +170741149700,245,0 +170741149750,245,0 +170741149798,245,0 +170741149846,245,0 +170741149894,245,0 +170741149942,245,0 +170741149989,245,0 +170741150037,245,0 +170741150087,245,0 +170741150136,245,0 +170741150184,245,0 +170741150234,245,0 +170741150282,245,0 +170741150330,245,0 +170741150378,245,0 +170741150427,245,0 +170741150475,245,0 +170741150523,245,0 +170741150571,245,0 +170741150619,245,0 +170741150667,245,0 +170741150715,245,0 +170741150763,245,0 +170741150811,245,0 +170741150859,245,0 +170741150909,245,0 +170741150958,245,0 +170741151006,245,0 +170741151054,244,0 +170741151102,245,0 +170741151151,245,0 +170741151199,244,0 +170741151249,245,0 +170741151297,245,0 +170741151345,245,0 +170741151393,245,0 +170741151441,244,0 +170741151490,245,0 +170741151538,245,0 +170741151586,245,0 +170741151634,245,0 +170741151682,245,0 +170741151732,245,0 +170741151780,245,0 +170741151829,245,0 +170741151877,245,0 +170741151927,245,0 +170741151975,245,0 +170741152023,245,0 +170741152071,245,0 +170741152119,245,0 +170741152168,245,0 +170741152216,245,0 +170741152266,245,0 +170741152314,245,0 +170741152363,245,0 +170741152411,245,0 +170741152459,245,0 +170741152508,245,0 +170741152558,245,0 +170741152607,245,0 +170741152657,245,0 +170741152706,244,0 +170741152754,245,0 +170741152804,245,0 +170741152852,245,0 +170741152900,245,0 +170741152948,245,0 +170741152997,245,0 +170741153047,245,0 +170741153095,245,0 +170741153144,244,0 +170741153192,245,0 +170741153240,245,0 +170741153290,245,0 +170741153339,244,0 +170741153387,245,0 +170741153435,245,0 +170741153483,245,0 +170741153531,245,0 +170741153579,245,0 +170741153627,245,0 +170741153675,244,0 +170741153723,245,0 +170741153771,244,0 +170741153819,245,0 +170741153867,245,0 +170741153914,245,0 +170741153962,245,0 +170741154010,245,0 +170741154058,244,0 +170741154108,245,0 +170741154157,245,0 +170741154205,245,0 +170741154255,245,0 +170741154304,245,0 +170741154352,245,0 +170741154402,245,0 +170741154450,245,0 +170741154498,245,0 +170741154546,245,0 +170741154593,245,0 +170741154641,244,0 +170741154689,245,0 +170741154737,245,0 +170741154786,245,0 +170741154836,245,0 +170741154885,245,0 +170741154933,245,0 +170741154981,245,0 +170741155029,245,0 +170741155079,245,0 +170741155127,245,0 +170741155175,245,0 +170741155224,245,0 +170741155272,245,0 +170741155320,245,0 +170741155369,245,0 +170741155419,245,0 +170741155468,245,0 +170741155516,245,0 +170741155564,245,0 +170741155614,245,0 +170741155662,245,0 +170741155710,245,0 +170741155758,245,0 +170741155806,245,0 +170741155854,245,0 +170741155903,245,0 +170741155951,245,0 +170741155999,245,0 +170741156047,245,0 +170741156095,245,0 +170741156143,245,0 +170741156191,245,0 +170741156239,245,0 +170741156287,245,0 +170741156336,245,0 +170741156384,245,0 +170741156432,245,0 +170741156480,245,0 +170741156528,245,0 +170741156576,245,0 +170741156624,245,0 +170741156672,245,0 +170741156720,245,0 +170741156768,245,0 +170741156818,245,0 +170741156866,245,0 +170741156914,245,0 +170741156963,245,0 +170741157013,245,0 +170741157061,245,0 +170741157110,245,0 +170741157158,245,0 +170741157206,245,0 +170741157254,245,0 +170741157304,244,0 +170741157352,245,0 +170741157401,245,0 +170741157449,245,0 +170741157497,245,0 +170741157545,245,0 +170741157593,245,0 +170741157641,245,0 +170741157689,245,0 +170741157737,245,0 +170741157786,245,0 +170741157836,245,0 +170741157885,245,0 +170741157933,245,0 +170741157983,245,0 +170741158031,245,0 +170741158080,245,0 +170741158128,245,0 +170741158178,245,0 +170741158225,245,0 +170741158273,245,0 +170741158321,245,0 +170741158369,245,0 +170741158417,245,0 +170741158465,245,0 +170741158513,245,0 +170741158561,245,0 +170741158608,245,0 +170741158658,245,0 +170741158707,245,0 +170741158757,245,0 +170741158805,245,0 +170741158853,245,0 +170741158901,245,0 +170741158949,245,0 +170741158997,245,0 +170741159046,245,0 +170741159094,245,0 +170741159142,245,0 +170741159192,245,0 +170741159241,245,0 +170741159291,245,0 +170741159339,245,0 +170741159387,245,0 +170741159435,245,0 +170741159484,245,0 +170741159534,245,0 +170741159582,245,0 +170741159630,245,0 +170741159678,245,0 +170741159725,245,0 +170741159773,245,0 +170741159821,245,0 +170741159871,245,0 +170741159919,245,0 +170741159967,245,0 +170741160015,245,0 diff --git a/laser_value/0209-03.csv b/laser_value/0209-03.csv new file mode 100644 index 0000000..88d6725 --- /dev/null +++ b/laser_value/0209-03.csv @@ -0,0 +1,7436 @@ +timestamp,laser_value,event +170741160065,245,0 +170741160113,245,0 +170741160162,245,0 +170741160212,245,0 +170741160260,245,0 +170741160308,245,0 +170741160356,245,0 +170741160405,245,0 +170741160453,245,0 +170741160501,245,0 +170741160549,245,0 +170741160597,245,0 +170741160645,244,0 +170741160695,245,0 +170741160744,245,0 +170741160792,245,0 +170741160842,245,0 +170741160890,245,0 +170741160937,245,0 +170741160987,245,0 +170741161035,245,0 +170741161083,245,0 +170741161131,245,0 +170741161179,245,0 +170741161228,245,0 +170741161276,245,0 +170741161326,245,0 +170741161375,245,0 +170741161423,245,0 +170741161471,245,0 +170741161519,245,0 +170741161568,245,0 +170741161616,245,0 +170741161664,245,0 +170741161714,245,0 +170741161763,245,0 +170741161811,245,0 +170741161859,245,0 +170741161907,245,0 +170741161955,245,0 +170741162003,245,0 +170741162051,245,0 +170741162099,245,0 +170741162147,245,0 +170741162195,245,0 +170741162243,245,0 +170741162292,245,0 +170741162340,245,0 +170741162390,245,0 +170741162439,245,0 +170741162487,245,0 +170741162535,245,0 +170741162585,245,0 +170741162634,245,0 +170741162684,244,0 +170741162732,245,0 +170741162780,245,0 +170741162828,245,0 +170741162876,245,0 +170741162924,245,0 +170741162973,245,0 +170741163023,245,0 +170741163072,245,0 +170741163120,245,0 +170741163170,245,0 +170741163219,245,0 +170741163269,245,0 +170741163318,245,0 +170741163366,245,0 +170741163414,245,0 +170741163462,245,0 +170741163511,245,0 +170741163561,245,0 +170741163609,245,0 +170741163658,245,0 +170741163706,245,0 +170741163756,245,0 +170741163804,245,0 +170741163851,245,0 +170741163901,245,0 +170741163949,245,0 +170741163998,245,0 +170741164048,245,0 +170741164098,245,0 +170741164145,245,0 +170741164193,245,0 +170741164243,246,0 +170741164292,245,0 +170741164340,245,0 +170741164388,245,0 +170741164436,245,0 +170741164484,245,0 +170741164534,245,0 +170741164583,245,0 +170741164633,245,0 +170741164681,245,0 +170741164729,245,0 +170741164777,245,0 +170741164824,245,0 +170741164872,245,0 +170741164922,245,0 +170741164971,245,0 +170741165019,245,0 +170741165067,245,0 +170741165117,245,0 +170741165165,245,0 +170741165213,245,0 +170741165262,245,0 +170741165312,245,0 +170741165360,245,0 +170741165409,245,0 +170741165457,245,0 +170741165507,245,0 +170741165555,245,0 +170741165603,245,0 +170741165651,245,0 +170741165700,245,0 +170741165748,245,0 +170741165796,245,0 +170741165844,245,0 +170741165892,245,0 +170741165941,245,0 +170741165989,245,0 +170741166037,245,0 +170741166085,245,0 +170741166135,245,0 +170741166184,245,0 +170741166234,245,0 +170741166281,245,0 +170741166329,245,0 +170741166377,245,0 +170741166427,245,0 +170741166477,245,0 +170741166525,245,0 +170741166574,245,0 +170741166622,245,0 +170741166670,245,0 +170741166718,245,0 +170741166767,245,0 +170741166815,245,0 +170741166863,245,0 +170741166913,245,0 +170741166961,245,0 +170741167010,245,0 +170741167058,245,0 +170741167108,245,0 +170741167156,245,0 +170741167205,244,0 +170741167255,245,0 +170741167304,245,0 +170741167352,245,0 +170741167402,245,0 +170741167451,245,0 +170741167499,245,0 +170741167547,245,0 +170741167597,245,0 +170741167645,244,0 +170741167693,245,0 +170741167742,245,0 +170741167790,245,0 +170741167838,245,0 +170741167886,245,0 +170741167934,245,0 +170741167982,245,0 +170741168030,245,0 +170741168079,245,0 +170741168127,245,0 +170741168175,245,0 +170741168225,245,0 +170741168273,245,0 +170741168322,245,0 +170741168372,245,0 +170741168421,245,0 +170741168471,245,0 +170741168519,245,0 +170741168568,245,0 +170741168618,245,0 +170741168666,245,0 +170741168714,245,0 +170741168763,245,0 +170741168811,245,0 +170741168861,245,0 +170741168909,245,0 +170741168957,245,0 +170741169005,245,0 +170741169054,245,0 +170741169104,245,0 +170741169153,245,0 +170741169201,245,0 +170741169251,245,0 +170741169298,245,0 +170741169346,245,0 +170741169394,245,0 +170741169442,245,0 +170741169490,245,0 +170741169538,245,0 +170741169586,245,0 +170741169636,245,0 +170741169684,245,0 +170741169732,245,0 +170741169780,245,0 +170741169828,245,0 +170741169876,245,0 +170741169925,245,0 +170741169973,245,0 +170741170021,245,0 +170741170070,245,0 +170741170118,245,0 +170741170168,245,0 +170741170216,245,0 +170741170264,245,0 +170741170313,245,0 +170741170361,245,0 +170741170409,245,0 +170741170458,245,0 +170741170506,245,0 +170741170554,245,0 +170741170602,245,0 +170741170650,245,0 +170741170698,245,0 +170741170746,245,0 +170741170794,245,0 +170741170842,245,0 +170741170890,245,0 +170741170938,245,0 +170741170986,245,0 +170741171033,245,0 +170741171081,245,0 +170741171131,245,0 +170741171180,245,0 +170741171228,245,0 +170741171276,245,0 +170741171326,245,0 +170741171374,245,0 +170741171423,245,0 +170741171471,245,0 +170741171519,245,0 +170741171568,245,0 +170741171616,245,0 +170741171666,245,0 +170741171714,245,0 +170741171763,245,0 +170741171811,245,0 +170741171859,245,0 +170741171907,245,0 +170741171957,245,0 +170741172005,245,0 +170741172054,244,0 +170741172102,245,0 +170741172150,245,0 +170741172198,245,0 +170741172246,245,0 +170741172294,245,0 +170741172342,245,0 +170741172390,245,0 +170741172439,245,0 +170741172487,245,0 +170741172537,245,0 +170741172585,245,0 +170741172633,245,0 +170741172681,245,0 +170741172729,245,0 +170741172778,245,0 +170741172826,245,0 +170741172874,245,0 +170741172922,245,0 +170741172970,245,0 +170741173019,245,0 +170741173067,245,0 +170741173115,245,0 +170741173165,245,0 +170741173214,245,0 +170741173264,245,0 +170741173312,245,0 +170741173360,245,0 +170741173408,245,0 +170741173456,245,0 +170741173506,245,0 +170741173553,245,0 +170741173601,245,0 +170741173649,245,0 +170741173697,245,0 +170741173747,245,0 +170741173796,245,0 +170741173844,245,0 +170741173892,245,0 +170741173940,245,0 +170741173988,245,0 +170741174038,245,0 +170741174086,245,0 +170741174135,245,0 +170741174185,245,0 +170741174233,245,0 +170741174282,245,0 +170741174332,245,0 +170741174380,245,0 +170741174429,245,0 +170741174479,245,0 +170741174527,245,0 +170741174576,245,0 +170741174624,245,0 +170741174672,245,0 +170741174720,245,0 +170741174768,245,0 +170741174816,245,0 +170741174865,245,0 +170741174913,245,0 +170741174961,245,0 +170741175009,245,0 +170741175059,245,0 +170741175107,245,0 +170741175156,245,0 +170741175204,245,0 +170741175252,245,0 +170741175302,245,0 +170741175350,245,0 +170741175397,245,0 +170741175447,245,0 +170741175496,245,0 +170741175546,245,0 +170741175596,245,0 +170741175644,245,0 +170741175693,245,0 +170741175741,245,0 +170741175789,245,0 +170741175837,245,0 +170741175885,245,0 +170741175933,245,0 +170741175983,245,0 +170741176032,245,0 +170741176080,245,0 +170741176128,245,0 +170741176176,245,0 +170741176224,245,0 +170741176274,245,0 +170741176323,245,0 +170741176371,245,0 +170741176419,245,0 +170741176467,245,0 +170741176517,245,0 +170741176566,245,0 +170741176616,245,0 +170741176664,245,0 +170741176711,245,0 +170741176761,245,0 +170741176810,245,0 +170741176858,245,0 +170741176908,245,0 +170741176957,245,0 +170741177005,245,0 +170741177055,245,0 +170741177103,245,0 +170741177151,245,0 +170741177199,245,0 +170741177247,245,0 +170741177295,245,0 +170741177344,245,0 +170741177394,245,0 +170741177443,245,0 +170741177491,245,0 +170741177539,245,0 +170741177587,245,0 +170741177635,245,0 +170741177683,245,0 +170741177731,245,0 +170741177779,245,0 +170741177827,245,0 +170741177876,245,0 +170741177926,245,0 +170741177974,245,0 +170741178023,245,0 +170741178073,245,0 +170741178121,245,0 +170741178169,245,0 +170741178218,245,0 +170741178266,245,0 +170741178314,245,0 +170741178362,245,0 +170741178410,245,0 +170741178458,245,0 +170741178506,245,0 +170741178554,245,0 +170741178603,245,0 +170741178653,245,0 +170741178702,245,0 +170741178750,245,0 +170741178800,245,0 +170741178848,245,0 +170741178896,245,0 +170741178945,245,0 +170741178995,245,0 +170741179044,245,0 +170741179092,245,0 +170741179140,245,0 +170741179188,245,0 +170741179238,245,0 +170741179286,245,0 +170741179335,245,0 +170741179383,245,0 +170741179433,245,0 +170741179482,245,0 +170741179532,245,0 +170741179579,245,0 +170741179627,245,0 +170741179675,245,0 +170741179723,245,0 +170741179773,245,0 +170741179821,245,0 +170741179869,245,0 +170741179917,245,0 +170741179965,245,0 +170741180014,245,0 +170741180064,245,0 +170741180112,245,0 +170741180161,245,0 +170741180209,245,0 +170741180259,245,0 +170741180307,245,0 +170741180355,245,0 +170741180402,245,0 +170741180450,245,0 +170741180498,245,0 +170741180546,245,0 +170741180594,245,0 +170741180644,245,0 +170741180692,245,0 +170741180741,245,0 +170741180789,245,0 +170741180837,245,0 +170741180885,245,0 +170741180933,245,0 +170741180981,245,0 +170741181028,245,0 +170741181078,245,0 +170741181126,245,0 +170741181174,245,0 +170741181221,245,0 +170741181269,245,0 +170741181317,245,0 +170741181365,245,0 +170741181413,245,0 +170741181461,245,0 +170741181509,245,0 +170741181557,245,0 +170741181606,245,0 +170741181656,245,0 +170741181705,245,0 +170741181753,245,0 +170741181801,245,0 +170741181849,245,0 +170741181897,245,0 +170741181945,245,0 +170741181992,245,0 +170741182040,245,0 +170741182088,245,0 +170741182136,245,0 +170741182185,245,0 +170741182233,245,0 +170741182281,245,0 +170741182331,245,0 +170741182379,245,0 +170741182428,245,0 +170741182477,245,0 +170741182527,245,0 +170741182575,245,0 +170741182623,244,0 +170741182671,245,0 +170741182718,245,0 +170741182766,245,0 +170741182816,245,0 +170741182864,245,0 +170741182912,245,0 +170741182959,245,0 +170741183007,245,0 +170741183055,245,0 +170741183103,245,0 +170741183151,245,0 +170741183199,245,0 +170741183248,245,0 +170741183296,245,0 +170741183344,245,0 +170741183392,245,0 +170741183440,245,0 +170741183488,244,0 +170741183536,245,0 +170741183583,245,0 +170741183631,245,0 +170741183679,245,0 +170741183727,245,0 +170741183775,245,0 +170741183823,245,0 +170741183871,245,0 +170741183919,245,0 +170741183967,245,0 +170741184014,245,0 +170741184062,245,0 +170741184110,245,0 +170741184158,245,0 +170741184208,245,0 +170741184255,245,0 +170741184303,245,0 +170741184351,245,0 +170741184401,245,0 +170741184448,245,0 +170741184496,245,0 +170741184546,245,0 +170741184594,245,0 +170741184641,245,0 +170741184689,245,0 +170741184737,245,0 +170741184787,245,0 +170741184835,245,0 +170741184882,245,0 +170741184930,245,0 +170741184978,245,0 +170741185026,245,0 +170741185074,245,0 +170741185122,245,0 +170741185170,245,0 +170741185218,245,0 +170741185266,245,0 +170741185314,245,0 +170741185361,245,0 +170741185409,245,0 +170741185457,245,0 +170741185507,245,0 +170741185555,245,0 +170741185604,245,0 +170741185652,245,0 +170741185702,244,0 +170741185751,245,0 +170741185799,245,0 +170741185847,245,0 +170741185895,245,0 +170741185944,245,0 +170741185992,244,0 +170741186040,245,0 +170741186088,245,0 +170741186136,245,0 +170741186184,245,0 +170741186232,245,0 +170741186279,245,0 +170741186327,245,0 +170741186375,245,0 +170741186425,245,0 +170741186472,245,0 +170741186522,245,0 +170741186570,245,0 +170741186618,245,0 +170741186665,245,0 +170741186713,245,0 +170741186761,245,0 +170741186809,245,0 +170741186859,245,0 +170741186907,245,0 +170741186955,245,0 +170741187003,245,0 +170741187051,245,0 +170741187098,245,0 +170741187148,245,0 +170741187198,245,0 +170741187247,245,0 +170741187295,245,0 +170741187343,245,0 +170741187392,245,0 +170741187442,245,0 +170741187490,245,0 +170741187539,245,0 +170741187587,245,0 +170741187635,245,0 +170741187685,245,0 +170741187734,245,0 +170741187784,245,0 +170741187833,245,0 +170741187881,245,0 +170741187929,245,0 +170741187977,245,0 +170741188027,245,0 +170741188076,245,0 +170741188124,245,0 +170741188172,245,0 +170741188220,245,0 +170741188269,245,0 +170741188317,245,0 +170741188365,245,0 +170741188413,245,0 +170741188461,245,0 +170741188511,245,0 +170741188559,245,0 +170741188607,245,0 +170741188656,245,0 +170741188704,245,0 +170741188752,245,0 +170741188800,245,0 +170741188849,245,0 +170741188899,245,0 +170741188947,245,0 +170741188995,245,0 +170741189043,245,0 +170741189092,244,0 +170741189142,245,0 +170741189190,245,0 +170741189238,245,0 +170741189286,245,0 +170741189335,245,0 +170741189383,245,0 +170741189431,245,0 +170741189479,245,0 +170741189528,245,0 +170741189578,245,0 +170741189626,245,0 +170741189675,245,0 +170741189723,245,0 +170741189773,245,0 +170741189821,245,0 +170741189869,245,0 +170741189917,245,0 +170741189966,245,0 +170741190014,245,0 +170741190063,244,0 +170741190111,245,0 +170741190161,245,0 +170741190209,245,0 +170741190258,245,0 +170741190306,245,0 +170741190354,245,0 +170741190404,245,0 +170741190452,245,0 +170741190500,245,0 +170741190549,244,0 +170741190599,244,0 +170741190648,245,0 +170741190698,245,0 +170741190746,245,0 +170741190794,245,0 +170741190842,245,0 +170741190891,245,0 +170741190939,245,0 +170741190987,245,0 +170741191037,245,0 +170741191086,245,0 +170741191134,245,0 +170741191183,245,0 +170741191231,245,0 +170741191279,245,0 +170741191329,245,0 +170741191376,245,0 +170741191424,245,0 +170741191472,244,0 +170741191522,245,0 +170741191569,245,0 +170741191617,245,0 +170741191665,245,0 +170741191713,245,0 +170741191761,244,0 +170741191809,245,0 +170741191857,245,0 +170741191905,245,0 +170741191953,245,0 +170741192001,245,0 +170741192050,245,0 +170741192100,245,0 +170741192149,245,0 +170741192197,245,0 +170741192245,244,0 +170741192293,245,0 +170741192341,245,0 +170741192389,245,0 +170741192439,245,0 +170741192488,245,0 +170741192536,245,0 +170741192585,245,0 +170741192633,245,0 +170741192681,245,0 +170741192729,245,0 +170741192779,244,0 +170741192827,245,0 +170741192875,245,0 +170741192924,245,0 +170741192974,245,0 +170741193023,245,0 +170741193071,245,0 +170741193119,245,0 +170741193167,245,0 +170741193215,245,0 +170741193263,245,0 +170741193311,245,0 +170741193359,245,0 +170741193409,245,0 +170741193456,245,0 +170741193504,244,0 +170741193554,245,0 +170741193602,245,0 +170741193650,245,0 +170741193698,245,0 +170741193747,245,0 +170741193797,245,0 +170741193845,245,0 +170741193893,245,0 +170741193941,245,0 +170741193989,245,0 +170741194038,245,0 +170741194088,245,0 +170741194137,245,0 +170741194187,245,0 +170741194236,245,0 +170741194284,245,0 +170741194332,245,0 +170741194380,245,0 +170741194428,244,0 +170741194476,245,0 +170741194524,245,0 +170741194574,245,0 +170741194623,245,0 +170741194671,245,0 +170741194719,245,0 +170741194767,245,0 +170741194815,245,0 +170741194863,245,0 +170741194911,245,0 +170741194960,245,0 +170741195008,245,0 +170741195056,245,0 +170741195106,245,0 +170741195154,245,0 +170741195202,245,0 +170741195251,245,0 +170741195301,245,0 +170741195349,245,0 +170741195397,245,0 +170741195446,245,0 +170741195494,245,0 +170741195542,245,0 +170741195592,245,0 +170741195640,245,0 +170741195689,245,0 +170741195738,245,0 +170741195788,245,0 +170741195838,245,0 +170741195887,245,0 +170741195935,245,0 +170741195985,245,0 +170741196032,245,0 +170741196082,245,0 +170741196130,245,0 +170741196179,245,0 +170741196227,245,0 +170741196275,245,0 +170741196323,245,0 +170741196373,245,0 +170741196421,245,0 +170741196470,245,0 +170741196518,245,0 +170741196566,245,0 +170741196616,245,0 +170741196664,245,0 +170741196712,245,0 +170741196761,245,0 +170741196809,245,0 +170741196859,245,0 +170741196908,245,0 +170741196956,245,0 +170741197005,245,0 +170741197053,245,0 +170741197101,245,0 +170741197149,245,0 +170741197199,245,0 +170741197247,245,0 +170741197295,245,0 +170741197343,245,0 +170741197391,245,0 +170741197438,245,0 +170741197488,245,0 +170741197537,245,0 +170741197585,245,0 +170741197635,245,0 +170741197683,245,0 +170741197732,245,0 +170741197780,245,0 +170741197828,245,0 +170741197878,245,0 +170741197926,245,0 +170741197974,245,0 +170741198022,245,0 +170741198070,245,0 +170741198119,244,0 +170741198167,245,0 +170741198217,245,0 +170741198265,245,0 +170741198313,245,0 +170741198361,245,0 +170741198410,245,0 +170741198460,245,0 +170741198508,245,0 +170741198556,245,0 +170741198603,245,0 +170741198651,245,0 +170741198699,245,0 +170741198749,245,0 +170741198797,245,0 +170741198845,245,0 +170741198893,245,0 +170741198941,245,0 +170741198989,245,0 +170741199037,245,0 +170741199085,245,0 +170741199134,245,0 +170741199184,245,0 +170741199232,245,0 +170741199281,245,0 +170741199331,245,0 +170741199379,245,0 +170741199427,245,0 +170741199475,245,0 +170741199523,244,0 +170741199572,245,0 +170741199620,245,0 +170741199670,245,0 +170741199718,245,0 +170741199767,245,0 +170741199817,245,0 +170741199865,244,0 +170741199913,245,0 +170741199961,245,0 +170741200009,245,0 +170741200056,245,0 +170741200104,245,0 +170741200152,245,0 +170741200200,245,0 +170741200248,245,0 +170741200296,245,0 +170741200344,245,0 +170741200392,245,0 +170741200440,245,0 +170741200490,245,0 +170741200538,245,0 +170741200586,245,0 +170741200635,245,0 +170741200683,245,0 +170741200732,245,0 +170741200782,245,0 +170741200830,245,0 +170741200878,245,0 +170741200926,245,0 +170741200974,245,0 +170741201023,245,0 +170741201073,245,0 +170741201121,245,0 +170741201170,245,0 +170741201220,245,0 +170741201269,245,0 +170741201317,245,0 +170741201365,245,0 +170741201413,245,0 +170741201461,245,0 +170741201509,245,0 +170741201556,245,0 +170741201604,245,0 +170741201652,245,0 +170741201702,245,0 +170741201749,245,0 +170741201797,245,0 +170741201845,245,0 +170741201893,245,0 +170741201941,245,0 +170741201989,245,0 +170741202037,245,0 +170741202085,245,0 +170741202133,245,0 +170741202181,245,0 +170741202228,245,0 +170741202276,245,0 +170741202324,245,0 +170741202373,245,0 +170741202421,245,0 +170741202469,245,0 +170741202517,245,0 +170741202565,245,0 +170741202615,245,0 +170741202663,245,0 +170741202711,245,0 +170741202758,245,0 +170741202808,245,0 +170741202857,245,0 +170741202907,245,0 +170741202955,245,0 +170741203004,245,0 +170741203052,245,0 +170741203100,245,0 +170741203150,245,0 +170741203199,245,0 +170741203247,245,0 +170741203295,245,0 +170741203343,245,0 +170741203391,245,0 +170741203439,245,0 +170741203487,245,0 +170741203535,245,0 +170741203584,245,0 +170741203632,245,0 +170741203680,245,0 +170741203730,245,0 +170741203778,245,0 +170741203827,245,0 +170741203875,245,0 +170741203925,245,0 +170741203974,245,0 +170741204023,245,0 +170741204073,245,0 +170741204122,245,0 +170741204170,245,0 +170741204218,245,0 +170741204268,245,0 +170741204317,245,0 +170741204367,245,0 +170741204416,245,0 +170741204464,245,0 +170741204512,245,0 +170741204562,245,0 +170741204610,245,0 +170741204659,245,0 +170741204707,245,0 +170741204755,245,0 +170741204803,245,0 +170741204851,245,0 +170741204900,245,0 +170741204948,245,0 +170741204998,245,0 +170741205046,245,0 +170741205095,245,0 +170741205145,245,0 +170741205194,245,0 +170741205242,245,0 +170741205292,245,0 +170741205341,245,0 +170741205389,245,0 +170741205439,245,0 +170741205487,245,0 +170741205536,245,0 +170741205584,245,0 +170741205632,245,0 +170741205681,245,0 +170741205731,245,0 +170741205779,245,0 +170741205827,245,0 +170741205875,245,0 +170741205922,245,0 +170741205972,245,0 +170741206021,245,0 +170741206071,245,0 +170741206120,245,0 +170741206168,245,0 +170741206216,245,0 +170741206266,245,0 +170741206314,245,0 +170741206362,245,0 +170741206411,245,0 +170741206459,245,0 +170741206509,245,0 +170741206556,245,0 +170741206604,245,0 +170741206654,245,0 +170741206701,245,0 +170741206751,245,0 +170741206799,245,0 +170741206847,245,0 +170741206895,245,0 +170741206943,245,0 +170741206991,245,0 +170741207039,245,0 +170741207088,245,0 +170741207136,245,0 +170741207184,245,0 +170741207232,245,0 +170741207282,245,0 +170741207331,245,0 +170741207379,245,0 +170741207428,245,0 +170741207476,245,0 +170741207526,245,0 +170741207575,245,0 +170741207623,245,0 +170741207673,245,0 +170741207721,245,0 +170741207768,245,0 +170741207816,245,0 +170741207864,245,0 +170741207912,245,0 +170741207962,244,0 +170741208010,245,0 +170741208058,245,0 +170741208106,245,0 +170741208155,245,0 +170741208203,245,0 +170741208253,245,0 +170741208302,245,0 +170741208350,245,0 +170741208398,245,0 +170741208448,245,0 +170741208496,245,0 +170741208545,245,0 +170741208595,245,0 +170741208643,245,0 +170741208691,245,0 +170741208740,245,0 +170741208788,245,0 +170741208836,245,0 +170741208884,245,0 +170741208932,245,0 +170741208980,245,0 +170741209029,245,0 +170741209079,245,0 +170741209128,245,0 +170741209176,245,0 +170741209224,245,0 +170741209272,245,0 +170741209322,245,0 +170741209369,245,0 +170741209419,245,0 +170741209468,245,0 +170741209516,245,0 +170741209564,245,0 +170741209612,245,0 +170741209662,245,0 +170741209710,245,0 +170741209758,245,0 +170741209806,245,0 +170741209854,245,0 +170741209902,245,0 +170741209951,245,0 +170741209999,245,0 +170741210047,245,0 +170741210095,245,0 +170741210144,245,0 +170741210193,245,0 +170741210243,245,0 +170741210292,245,0 +170741210342,245,0 +170741210390,245,0 +170741210437,245,0 +170741210485,245,0 +170741210533,245,0 +170741210581,244,0 +170741210629,245,0 +170741210677,245,0 +170741210725,245,0 +170741210772,245,0 +170741210820,245,0 +170741210868,245,0 +170741210916,245,0 +170741210964,245,0 +170741211012,245,0 +170741211060,245,0 +170741211108,245,0 +170741211156,245,0 +170741211205,245,0 +170741211253,245,0 +170741211302,245,0 +170741211350,245,0 +170741211398,245,0 +170741211448,245,0 +170741211497,245,0 +170741211545,245,0 +170741211593,245,0 +170741211641,245,0 +170741211689,245,0 +170741211737,245,0 +170741211785,245,0 +170741211834,245,0 +170741211882,245,0 +170741211932,245,0 +170741211981,245,0 +170741212029,245,0 +170741212077,245,0 +170741212125,245,0 +170741212173,245,0 +170741212221,245,0 +170741212271,245,0 +170741212319,245,0 +170741212366,245,0 +170741212416,245,0 +170741212464,245,0 +170741212512,245,0 +170741212561,245,0 +170741212609,245,0 +170741212657,245,0 +170741212705,245,0 +170741212753,245,0 +170741212801,245,0 +170741212849,245,0 +170741212897,245,0 +170741212945,245,0 +170741212993,245,0 +170741213041,245,0 +170741213089,245,0 +170741213137,245,0 +170741213185,245,0 +170741213233,245,0 +170741213282,245,0 +170741213332,245,0 +170741213381,245,0 +170741213429,245,0 +170741213477,245,0 +170741213525,245,0 +170741213573,245,0 +170741213621,245,0 +170741213670,245,0 +170741213718,245,0 +170741213768,245,0 +170741213816,245,0 +170741213865,245,0 +170741213913,245,0 +170741213963,245,0 +170741214011,245,0 +170741214060,245,0 +170741214108,245,0 +170741214158,245,0 +170741214207,245,0 +170741214257,245,0 +170741214305,245,0 +170741214353,245,0 +170741214401,245,0 +170741214449,245,0 +170741214496,245,0 +170741214546,245,0 +170741214595,245,0 +170741214643,245,0 +170741214693,245,0 +170741214742,245,0 +170741214792,245,0 +170741214841,245,0 +170741214891,245,0 +170741214939,245,0 +170741214987,245,0 +170741215035,245,0 +170741215083,245,0 +170741215132,245,0 +170741215182,245,0 +170741215231,245,0 +170741215279,245,0 +170741215329,245,0 +170741215377,245,0 +170741215425,245,0 +170741215474,245,0 +170741215522,245,0 +170741215570,245,0 +170741215620,245,0 +170741215667,245,0 +170741215715,245,0 +170741215763,245,0 +170741215813,245,0 +170741215862,245,0 +170741215910,245,0 +170741215960,245,0 +170741216008,245,0 +170741216055,245,0 +170741216103,245,0 +170741216151,245,0 +170741216199,245,0 +170741216247,245,0 +170741216295,245,0 +170741216343,245,0 +170741216391,245,0 +170741216439,245,0 +170741216487,245,0 +170741216535,245,0 +170741216583,245,0 +170741216630,245,0 +170741216678,245,0 +170741216726,245,0 +170741216776,245,0 +170741216824,245,0 +170741216872,245,0 +170741216921,245,0 +170741216969,245,0 +170741217019,245,0 +170741217068,245,0 +170741217116,245,0 +170741217164,245,0 +170741217214,245,0 +170741217263,245,0 +170741217313,245,0 +170741217361,245,0 +170741217409,245,0 +170741217458,245,0 +170741217506,245,0 +170741217554,245,0 +170741217604,245,0 +170741217653,245,0 +170741217703,245,0 +170741217752,245,0 +170741217800,245,0 +170741217848,245,0 +170741217898,245,0 +170741217947,245,0 +170741217995,245,0 +170741218045,245,0 +170741218094,245,0 +170741218144,245,0 +170741218191,245,0 +170741218241,245,0 +170741218289,245,0 +170741218337,245,0 +170741218386,245,0 +170741218434,245,0 +170741218482,245,0 +170741218530,245,0 +170741218578,245,0 +170741218628,244,0 +170741218677,245,0 +170741218727,245,0 +170741218775,245,0 +170741218824,245,0 +170741218872,245,0 +170741218922,245,0 +170741218970,245,0 +170741219018,245,0 +170741219066,245,0 +170741219115,245,0 +170741219165,245,0 +170741219213,245,0 +170741219260,245,0 +170741219310,245,0 +170741219358,245,0 +170741219406,245,0 +170741219454,245,0 +170741219503,245,0 +170741219551,245,0 +170741219599,245,0 +170741219649,245,0 +170741219697,245,0 +170741219745,245,0 +170741219793,245,0 +170741219842,245,0 +170741219890,245,0 +170741219940,245,0 +170741219987,245,0 +170741220037,245,0 +170741220086,245,0 +170741220134,245,0 +170741220182,245,0 +170741220232,245,0 +170741220281,245,0 +170741220329,245,0 +170741220377,245,0 +170741220425,245,0 +170741220473,245,0 +170741220521,245,0 +170741220569,245,0 +170741220618,245,0 +170741220666,245,0 +170741220716,245,0 +170741220765,245,0 +170741220815,245,0 +170741220864,245,0 +170741220912,245,0 +170741220962,245,0 +170741221011,245,0 +170741221061,245,0 +170741221110,245,0 +170741221160,245,0 +170741221208,245,0 +170741221256,245,0 +170741221305,245,0 +170741221353,245,0 +170741221401,245,0 +170741221450,245,0 +170741221500,245,0 +170741221548,245,0 +170741221596,245,0 +170741221645,245,0 +170741221693,245,0 +170741221743,245,0 +170741221792,245,0 +170741221840,245,0 +170741221888,245,0 +170741221938,245,0 +170741221987,245,0 +170741222035,245,0 +170741222083,245,0 +170741222133,245,0 +170741222181,245,0 +170741222229,245,0 +170741222278,245,0 +170741222328,245,0 +170741222376,245,0 +170741222423,245,0 +170741222471,245,0 +170741222519,245,0 +170741222569,245,0 +170741222617,245,0 +170741222665,245,0 +170741222713,245,0 +170741222761,245,0 +170741222810,245,0 +170741222858,245,0 +170741222906,245,0 +170741222954,245,0 +170741223003,245,0 +170741223053,245,0 +170741223102,245,0 +170741223152,245,0 +170741223200,245,0 +170741223249,245,0 +170741223299,245,0 +170741223347,245,0 +170741223395,245,0 +170741223443,245,0 +170741223492,245,0 +170741223540,245,0 +170741223590,245,0 +170741223638,245,0 +170741223687,245,0 +170741223735,245,0 +170741223783,245,0 +170741223831,245,0 +170741223879,245,0 +170741223927,245,0 +170741223975,245,0 +170741224025,245,0 +170741224072,245,0 +170741224122,245,0 +170741224171,245,0 +170741224219,245,0 +170741224269,245,0 +170741224318,245,0 +170741224368,245,0 +170741224416,245,0 +170741224464,245,0 +170741224512,245,0 +170741224560,245,0 +170741224609,245,0 +170741224657,245,0 +170741224705,245,0 +170741224753,245,0 +170741224801,245,0 +170741224851,245,0 +170741224900,245,0 +170741224948,245,0 +170741224996,245,0 +170741225045,245,0 +170741225095,245,0 +170741225144,245,0 +170741225192,245,0 +170741225240,245,0 +170741225288,245,0 +170741225336,245,0 +170741225384,245,0 +170741225434,245,0 +170741225482,245,0 +170741225531,245,0 +170741225581,245,0 +170741225629,245,0 +170741225677,245,0 +170741225725,245,0 +170741225773,245,0 +170741225821,245,0 +170741225869,245,0 +170741225917,245,0 +170741225965,245,0 +170741226013,245,0 +170741226061,245,0 +170741226109,245,0 +170741226157,245,0 +170741226205,245,0 +170741226253,245,0 +170741226301,245,0 +170741226349,245,0 +170741226396,245,0 +170741226444,245,0 +170741226494,245,0 +170741226543,245,0 +170741226591,245,0 +170741226641,245,0 +170741226690,245,0 +170741226740,245,0 +170741226788,245,0 +170741226836,245,0 +170741226884,245,0 +170741226932,245,0 +170741226981,245,0 +170741227029,245,0 +170741227077,245,0 +170741227125,245,0 +170741227172,245,0 +170741227222,245,0 +170741227270,245,0 +170741227318,245,0 +170741227366,245,0 +170741227414,245,0 +170741227461,245,0 +170741227509,245,0 +170741227557,245,0 +170741227605,245,0 +170741227654,245,0 +170741227702,245,0 +170741227752,245,0 +170741227800,245,0 +170741227848,245,0 +170741227896,245,0 +170741227944,245,0 +170741227992,245,0 +170741228040,245,0 +170741228089,245,0 +170741228138,245,0 +170741228186,245,0 +170741228234,245,0 +170741228282,245,0 +170741228330,245,0 +170741228378,245,0 +170741228426,245,0 +170741228476,245,0 +170741228524,245,0 +170741228573,245,0 +170741228621,245,0 +170741228670,245,0 +170741228718,245,0 +170741228766,245,0 +170741228814,245,0 +170741228862,245,0 +170741228910,245,0 +170741228960,245,0 +170741229009,245,0 +170741229057,245,0 +170741229105,245,0 +170741229153,245,0 +170741229203,245,0 +170741229252,245,0 +170741229300,245,0 +170741229350,245,0 +170741229399,245,0 +170741229447,245,0 +170741229495,245,0 +170741229543,245,0 +170741229593,245,0 +170741229642,245,0 +170741229690,245,0 +170741229738,245,0 +170741229786,245,0 +170741229836,245,0 +170741229883,245,0 +170741229931,245,0 +170741229981,245,0 +170741230030,245,0 +170741230080,245,0 +170741230128,245,0 +170741230177,245,0 +170741230225,245,0 +170741230273,245,0 +170741230323,245,0 +170741230372,245,0 +170741230420,245,0 +170741230468,245,0 +170741230516,245,0 +170741230566,245,0 +170741230614,245,0 +170741230663,245,0 +170741230711,245,0 +170741230759,245,0 +170741230807,245,0 +170741230857,245,0 +170741230904,245,0 +170741230954,245,0 +170741231002,245,0 +170741231051,245,0 +170741231101,245,0 +170741231150,245,0 +170741231198,245,0 +170741231248,245,0 +170741231297,245,0 +170741231347,245,0 +170741231396,245,0 +170741231446,245,0 +170741231494,245,0 +170741231542,245,0 +170741231591,245,0 +170741231639,245,0 +170741231687,245,0 +170741231737,245,0 +170741231785,245,0 +170741231834,245,0 +170741231884,245,0 +170741231932,245,0 +170741231980,245,0 +170741232028,245,0 +170741232077,245,0 +170741232125,245,0 +170741232175,245,0 +170741232223,245,0 +170741232272,245,0 +170741232320,245,0 +170741232368,245,0 +170741232416,245,0 +170741232464,245,0 +170741232512,245,0 +170741232560,245,0 +170741232610,245,0 +170741232659,245,0 +170741232707,245,0 +170741232755,245,0 +170741232803,245,0 +170741232851,245,0 +170741232899,245,0 +170741232947,245,0 +170741232995,245,0 +170741233044,245,0 +170741233092,245,0 +170741233140,245,0 +170741233188,245,0 +170741233236,245,0 +170741233284,245,0 +170741233334,245,0 +170741233383,245,0 +170741233431,245,0 +170741233479,245,0 +170741233527,245,0 +170741233575,245,0 +170741233623,245,0 +170741233670,245,0 +170741233718,245,0 +170741233766,245,0 +170741233814,245,0 +170741233862,245,0 +170741233910,245,0 +170741233958,245,0 +170741234005,245,0 +170741234053,245,0 +170741234101,245,0 +170741234149,245,0 +170741234197,245,0 +170741234245,245,0 +170741234293,245,0 +170741234342,245,0 +170741234390,245,0 +170741234438,245,0 +170741234487,245,0 +170741234535,245,0 +170741234583,245,0 +170741234631,245,0 +170741234679,245,0 +170741234728,245,0 +170741234776,245,0 +170741234824,245,0 +170741234872,245,0 +170741234920,245,0 +170741234968,245,0 +170741235015,245,0 +170741235063,245,0 +170741235113,245,0 +170741235161,245,0 +170741235208,245,0 +170741235256,245,0 +170741235304,245,0 +170741235352,245,0 +170741235400,245,0 +170741235448,245,0 +170741235496,245,0 +170741235544,245,0 +170741235593,245,0 +170741235641,245,0 +170741235689,245,0 +170741235737,245,0 +170741235785,245,0 +170741235835,245,0 +170741235882,245,0 +170741235930,245,0 +170741235978,245,0 +170741236026,245,0 +170741236074,245,0 +170741236122,245,0 +170741236170,245,0 +170741236218,245,0 +170741236266,245,0 +170741236313,245,0 +170741236363,245,0 +170741236411,245,0 +170741236459,245,0 +170741236507,245,0 +170741236555,245,0 +170741236602,245,0 +170741236650,245,0 +170741236698,245,0 +170741236746,245,0 +170741236794,245,0 +170741236842,245,0 +170741236890,245,0 +170741236938,245,0 +170741236987,245,0 +170741237035,245,0 +170741237083,245,0 +170741237133,245,0 +170741237182,245,0 +170741237230,245,0 +170741237278,245,0 +170741237326,245,0 +170741237376,245,0 +170741237425,245,0 +170741237475,245,0 +170741237523,245,0 +170741237571,245,0 +170741237619,245,0 +170741237668,245,0 +170741237718,245,0 +170741237767,245,0 +170741237815,245,0 +170741237863,245,0 +170741237911,245,0 +170741237961,245,0 +170741238009,245,0 +170741238057,245,0 +170741238104,245,0 +170741238152,245,0 +170741238202,245,0 +170741238250,245,0 +170741238298,245,0 +170741238345,245,0 +170741238393,245,0 +170741238441,245,0 +170741238489,245,0 +170741238537,245,0 +170741238585,245,0 +170741238633,245,0 +170741238681,245,0 +170741238729,245,0 +170741238776,245,0 +170741238826,245,0 +170741238874,245,0 +170741238922,245,0 +170741238969,245,0 +170741239017,245,0 +170741239065,245,0 +170741239113,245,0 +170741239161,245,0 +170741239209,245,0 +170741239257,245,0 +170741239305,245,0 +170741239353,245,0 +170741239401,245,0 +170741239448,245,0 +170741239498,245,0 +170741239547,245,0 +170741239595,245,0 +170741239643,245,0 +170741239691,245,0 +170741239741,245,0 +170741239789,245,0 +170741239836,245,0 +170741239884,245,0 +170741239934,245,0 +170741239983,245,0 +170741240031,245,0 +170741240079,245,0 +170741240129,245,0 +170741240178,245,0 +170741240226,245,0 +170741240276,245,0 +170741240324,245,0 +170741240373,245,0 +170741240423,245,0 +170741240471,245,0 +170741240518,245,0 +170741240568,245,0 +170741240616,245,0 +170741240664,245,0 +170741240712,245,0 +170741240761,245,0 +170741240809,245,0 +170741240857,245,0 +170741240907,245,0 +170741240955,245,0 +170741241002,245,0 +170741241050,245,0 +170741241098,245,0 +170741241146,245,0 +170741241194,245,0 +170741241244,245,0 +170741241291,245,0 +170741241339,245,0 +170741241387,245,0 +170741241435,245,0 +170741241483,245,0 +170741241531,245,0 +170741241579,245,0 +170741241626,245,0 +170741241674,245,0 +170741241722,245,0 +170741241770,245,0 +170741241818,245,0 +170741241866,245,0 +170741241914,245,0 +170741241961,245,0 +170741242009,245,0 +170741242057,245,0 +170741242105,245,0 +170741242153,245,0 +170741242201,245,0 +170741242250,245,0 +170741242298,245,0 +170741242346,245,0 +170741242394,245,0 +170741242442,245,0 +170741242490,245,0 +170741242538,245,0 +170741242587,245,0 +170741242635,245,0 +170741242683,245,0 +170741242733,245,0 +170741242782,245,0 +170741242832,245,0 +170741242881,245,0 +170741242929,245,0 +170741242979,245,0 +170741243028,245,0 +170741243076,245,0 +170741243124,245,0 +170741243172,244,0 +170741243220,245,0 +170741243268,245,0 +170741243316,245,0 +170741243365,245,0 +170741243413,245,0 +170741243461,245,0 +170741243509,245,0 +170741243557,245,0 +170741243605,245,0 +170741243653,245,0 +170741243701,245,0 +170741243748,245,0 +170741243796,245,0 +170741243844,245,0 +170741243892,245,0 +170741243940,245,0 +170741243988,245,0 +170741244036,245,0 +170741244084,245,0 +170741244133,245,0 +170741244181,245,0 +170741244229,245,0 +170741244277,245,0 +170741244325,245,0 +170741244372,245,0 +170741244420,245,0 +170741244470,245,0 +170741244519,245,0 +170741244569,245,0 +170741244617,245,0 +170741244665,245,0 +170741244712,245,0 +170741244760,245,0 +170741244808,245,0 +170741244856,245,0 +170741244904,245,0 +170741244952,245,0 +170741245000,245,0 +170741245048,245,0 +170741245095,245,0 +170741245143,245,0 +170741245191,245,0 +170741245239,245,0 +170741245287,245,0 +170741245336,245,0 +170741245384,245,0 +170741245432,245,0 +170741245480,244,0 +170741245528,245,0 +170741245577,245,0 +170741245625,245,0 +170741245673,245,0 +170741245721,245,0 +170741245771,245,0 +170741245818,245,0 +170741245866,245,0 +170741245914,245,0 +170741245962,245,0 +170741246010,245,0 +170741246058,245,0 +170741246106,245,0 +170741246154,245,0 +170741246202,245,0 +170741246251,245,0 +170741246299,245,0 +170741246347,245,0 +170741246395,245,0 +170741246444,245,0 +170741246492,245,0 +170741246540,245,0 +170741246588,245,0 +170741246636,245,0 +170741246684,245,0 +170741246732,245,0 +170741246779,245,0 +170741246827,245,0 +170741246875,245,0 +170741246923,245,0 +170741246971,245,0 +170741247019,245,0 +170741247067,245,0 +170741247115,245,0 +170741247163,245,0 +170741247210,245,0 +170741247258,245,0 +170741247306,245,0 +170741247354,245,0 +170741247402,245,0 +170741247450,245,0 +170741247498,245,0 +170741247546,245,0 +170741247594,245,0 +170741247643,245,0 +170741247691,245,0 +170741247740,245,0 +170741247788,245,0 +170741247836,245,0 +170741247884,245,0 +170741247932,245,0 +170741247982,245,0 +170741248030,245,0 +170741248079,245,0 +170741248127,245,0 +170741248177,245,0 +170741248226,245,0 +170741248274,245,0 +170741248322,245,0 +170741248372,245,0 +170741248420,245,0 +170741248468,245,0 +170741248517,245,0 +170741248565,245,0 +170741248613,245,0 +170741248661,245,0 +170741248709,245,0 +170741248757,245,0 +170741248805,245,0 +170741248853,245,0 +170741248901,245,0 +170741248950,245,0 +170741248998,245,0 +170741249046,245,0 +170741249094,245,0 +170741249144,245,0 +170741249193,245,0 +170741249243,245,0 +170741249291,245,0 +170741249340,245,0 +170741249388,245,0 +170741249438,245,0 +170741249485,244,0 +170741249533,245,0 +170741249581,245,0 +170741249631,245,0 +170741249679,245,0 +170741249728,245,0 +170741249778,245,0 +170741249826,245,0 +170741249874,245,0 +170741249922,245,0 +170741249970,245,0 +170741250018,245,0 +170741250068,244,0 +170741250115,245,0 +170741250163,244,0 +170741250211,245,0 +170741250259,245,0 +170741250307,245,0 +170741250355,245,0 +170741250403,245,0 +170741250453,245,0 +170741250501,245,0 +170741250549,245,0 +170741250597,245,0 +170741250645,245,0 +170741250692,245,0 +170741250742,245,0 +170741250790,245,0 +170741250838,245,0 +170741250887,245,0 +170741250935,245,0 +170741250983,245,0 +170741251033,245,0 +170741251081,245,0 +170741251129,245,0 +170741251177,245,0 +170741251225,245,0 +170741251273,245,0 +170741251320,245,0 +170741251370,245,0 +170741251418,245,0 +170741251466,245,0 +170741251514,245,0 +170741251562,245,0 +170741251611,245,0 +170741251659,245,0 +170741251707,245,0 +170741251755,245,0 +170741251805,245,0 +170741251853,245,0 +170741251902,245,0 +170741251950,245,0 +170741251998,245,0 +170741252046,245,0 +170741252096,245,0 +170741252143,245,0 +170741252191,245,0 +170741252239,245,0 +170741252287,245,0 +170741252335,245,0 +170741252383,245,0 +170741252431,245,0 +170741252479,244,0 +170741252527,245,0 +170741252575,245,0 +170741252623,245,0 +170741252671,245,0 +170741252719,245,0 +170741252767,245,0 +170741252816,245,0 +170741252864,245,0 +170741252914,245,0 +170741252962,245,0 +170741253011,245,0 +170741253059,245,0 +170741253107,245,0 +170741253157,245,0 +170741253205,245,0 +170741253254,245,0 +170741253304,244,0 +170741253353,245,0 +170741253401,245,0 +170741253449,245,0 +170741253497,245,0 +170741253545,245,0 +170741253593,245,0 +170741253642,245,0 +170741253690,245,0 +170741253738,245,0 +170741253786,245,0 +170741253834,244,0 +170741253882,245,0 +170741253931,245,0 +170741253979,245,0 +170741254027,245,0 +170741254075,245,0 +170741254123,245,0 +170741254173,245,0 +170741254221,245,0 +170741254270,245,0 +170741254318,245,0 +170741254368,245,0 +170741254416,245,0 +170741254465,245,0 +170741254513,245,0 +170741254561,245,0 +170741254611,245,0 +170741254659,245,0 +170741254707,245,0 +170741254756,245,0 +170741254806,245,0 +170741254855,245,0 +170741254903,245,0 +170741254953,245,0 +170741255002,245,0 +170741255050,245,0 +170741255099,245,0 +170741255149,245,0 +170741255197,245,0 +170741255246,245,0 +170741255296,245,0 +170741255345,245,0 +170741255393,245,0 +170741255441,245,0 +170741255489,245,0 +170741255539,245,0 +170741255587,245,0 +170741255635,245,0 +170741255684,245,0 +170741255732,245,0 +170741255780,245,0 +170741255830,245,0 +170741255878,245,0 +170741255927,245,0 +170741255977,245,0 +170741256025,245,0 +170741256074,245,0 +170741256122,245,0 +170741256170,245,0 +170741256218,245,0 +170741256266,245,0 +170741256315,245,0 +170741256363,245,0 +170741256413,245,0 +170741256462,245,0 +170741256510,245,0 +170741256560,245,0 +170741256608,245,0 +170741256656,245,0 +170741256704,245,0 +170741256752,245,0 +170741256801,245,0 +170741256849,245,0 +170741256897,245,0 +170741256945,245,0 +170741256994,245,0 +170741257044,245,0 +170741257092,245,0 +170741257140,245,0 +170741257189,245,0 +170741257237,245,0 +170741257285,244,0 +170741257333,244,0 +170741257381,245,0 +170741257429,245,0 +170741257477,245,0 +170741257525,245,0 +170741257575,245,0 +170741257622,245,0 +170741257670,245,0 +170741257718,245,0 +170741257768,245,0 +170741257817,245,0 +170741257867,245,0 +170741257916,245,0 +170741257964,245,0 +170741258012,245,0 +170741258060,245,0 +170741258110,245,0 +170741258158,245,0 +170741258206,245,0 +170741258254,245,0 +170741258302,245,0 +170741258350,245,0 +170741258398,245,0 +170741258446,245,0 +170741258495,245,0 +170741258543,245,0 +170741258591,245,0 +170741258639,245,0 +170741258689,245,0 +170741258737,245,0 +170741258784,245,0 +170741258834,245,0 +170741258882,245,0 +170741258930,245,0 +170741258978,245,0 +170741259027,245,0 +170741259077,245,0 +170741259125,245,0 +170741259173,245,0 +170741259221,245,0 +170741259269,245,0 +170741259317,245,0 +170741259365,245,0 +170741259413,245,0 +170741259461,245,0 +170741259508,245,0 +170741259558,245,0 +170741259607,245,0 +170741259657,245,0 +170741259705,245,0 +170741259753,245,0 +170741259801,245,0 +170741259850,245,0 +170741259898,245,0 +170741259946,245,0 +170741259994,245,0 +170741260044,245,0 +170741260092,245,0 +170741260141,245,0 +170741260191,245,0 +170741260239,245,0 +170741260287,245,0 +170741260334,245,0 +170741260382,245,0 +170741260430,245,0 +170741260478,245,0 +170741260526,245,0 +170741260574,245,0 +170741260622,245,0 +170741260672,245,0 +170741260720,245,0 +170741260768,245,0 +170741260817,245,0 +170741260867,245,0 +170741260915,245,0 +170741260963,245,0 +170741261012,245,0 +170741261062,245,0 +170741261109,245,0 +170741261157,245,0 +170741261205,245,0 +170741261253,245,0 +170741261301,245,0 +170741261351,245,0 +170741261400,245,0 +170741261448,245,0 +170741261496,245,0 +170741261544,245,0 +170741261594,245,0 +170741261642,245,0 +170741261690,245,0 +170741261739,245,0 +170741261787,245,0 +170741261835,245,0 +170741261883,245,0 +170741261931,245,0 +170741261979,245,0 +170741262027,245,0 +170741262074,245,0 +170741262122,245,0 +170741262170,245,0 +170741262218,245,0 +170741262266,245,0 +170741262315,245,0 +170741262363,245,0 +170741262411,245,0 +170741262459,245,0 +170741262507,245,0 +170741262555,245,0 +170741262603,245,0 +170741262651,245,0 +170741262699,245,0 +170741262746,245,0 +170741262794,245,0 +170741262842,245,0 +170741262890,245,0 +170741262938,245,0 +170741262986,245,0 +170741263034,245,0 +170741263082,245,0 +170741263131,245,0 +170741263179,245,0 +170741263227,245,0 +170741263275,245,0 +170741263323,245,0 +170741263372,245,0 +170741263420,245,0 +170741263468,245,0 +170741263516,245,0 +170741263565,245,0 +170741263613,245,0 +170741263661,245,0 +170741263711,245,0 +170741263759,245,0 +170741263808,245,0 +170741263856,245,0 +170741263904,245,0 +170741263953,245,0 +170741264001,245,0 +170741264049,245,0 +170741264097,245,0 +170741264147,245,0 +170741264195,245,0 +170741264243,245,0 +170741264291,244,0 +170741264340,245,0 +170741264390,245,0 +170741264438,245,0 +170741264486,245,0 +170741264535,245,0 +170741264583,245,0 +170741264631,245,0 +170741264679,245,0 +170741264727,245,0 +170741264775,245,0 +170741264823,245,0 +170741264871,245,0 +170741264919,245,0 +170741264967,245,0 +170741265015,245,0 +170741265063,245,0 +170741265111,245,0 +170741265159,245,0 +170741265207,245,0 +170741265255,245,0 +170741265303,245,0 +170741265351,245,0 +170741265400,245,0 +170741265448,245,0 +170741265496,245,0 +170741265544,245,0 +170741265592,245,0 +170741265641,245,0 +170741265689,245,0 +170741265737,245,0 +170741265787,245,0 +170741265836,245,0 +170741265886,245,0 +170741265934,245,0 +170741265983,245,0 +170741266031,245,0 +170741266081,245,0 +170741266129,245,0 +170741266177,245,0 +170741266225,245,0 +170741266273,245,0 +170741266322,245,0 +170741266372,245,0 +170741266420,245,0 +170741266468,245,0 +170741266516,245,0 +170741266563,245,0 +170741266611,245,0 +170741266659,245,0 +170741266707,245,0 +170741266755,245,0 +170741266803,245,0 +170741266853,245,0 +170741266901,245,0 +170741266949,245,0 +170741266997,245,0 +170741267046,245,0 +170741267096,245,0 +170741267144,245,0 +170741267193,245,0 +170741267241,245,0 +170741267289,245,0 +170741267337,245,0 +170741267385,245,0 +170741267432,245,0 +170741267480,245,0 +170741267528,244,0 +170741267576,245,0 +170741267624,245,0 +170741267673,245,0 +170741267721,245,0 +170741267769,245,0 +170741267817,245,0 +170741267865,245,0 +170741267913,245,0 +170741267961,245,0 +170741268009,245,0 +170741268057,245,0 +170741268105,245,0 +170741268153,245,0 +170741268202,245,0 +170741268250,245,0 +170741268298,245,0 +170741268346,245,0 +170741268393,245,0 +170741268443,245,0 +170741268492,245,0 +170741268540,245,0 +170741268588,245,0 +170741268638,245,0 +170741268686,245,0 +170741268735,245,0 +170741268785,245,0 +170741268833,245,0 +170741268881,245,0 +170741268930,245,0 +170741268980,245,0 +170741269029,245,0 +170741269077,245,0 +170741269125,245,0 +170741269173,245,0 +170741269221,245,0 +170741269270,245,0 +170741269320,245,0 +170741269368,245,0 +170741269416,245,0 +170741269464,245,0 +170741269513,245,0 +170741269561,245,0 +170741269611,245,0 +170741269659,245,0 +170741269708,245,0 +170741269758,245,0 +170741269806,245,0 +170741269854,245,0 +170741269902,245,0 +170741269950,245,0 +170741269999,245,0 +170741270049,245,0 +170741270098,245,0 +170741270146,245,0 +170741270194,245,0 +170741270242,245,0 +170741270291,245,0 +170741270339,245,0 +170741270388,245,0 +170741270436,245,0 +170741270484,245,0 +170741270532,245,0 +170741270580,245,0 +170741270628,245,0 +170741270676,245,0 +170741270724,245,0 +170741270772,245,0 +170741270820,245,0 +170741270868,245,0 +170741270916,245,0 +170741270963,245,0 +170741271011,245,0 +170741271059,245,0 +170741271107,245,0 +170741271157,245,0 +170741271205,245,0 +170741271253,245,0 +170741271301,245,0 +170741271350,245,0 +170741271398,245,0 +170741271446,245,0 +170741271494,245,0 +170741271541,245,0 +170741271591,245,0 +170741271639,245,0 +170741271688,245,0 +170741271736,245,0 +170741271784,245,0 +170741271832,245,0 +170741271880,245,0 +170741271928,245,0 +170741271978,245,0 +170741272025,245,0 +170741272073,245,0 +170741272123,245,0 +170741272171,245,0 +170741272219,245,0 +170741272267,245,0 +170741272315,245,0 +170741272364,245,0 +170741272412,245,0 +170741272460,245,0 +170741272508,245,0 +170741272556,245,0 +170741272604,245,0 +170741272652,245,0 +170741272700,245,0 +170741272748,245,0 +170741272796,245,0 +170741272844,245,0 +170741272892,245,0 +170741272940,245,0 +170741272989,245,0 +170741273039,245,0 +170741273088,245,0 +170741273136,245,0 +170741273184,245,0 +170741273232,245,0 +170741273280,245,0 +170741273330,245,0 +170741273379,245,0 +170741273427,245,0 +170741273477,245,0 +170741273526,245,0 +170741273576,245,0 +170741273624,245,0 +170741273673,245,0 +170741273721,245,0 +170741273769,245,0 +170741273817,245,0 +170741273866,245,0 +170741273916,245,0 +170741273964,245,0 +170741274013,245,0 +170741274063,245,0 +170741274111,245,0 +170741274160,245,0 +170741274210,245,0 +170741274258,245,0 +170741274307,245,0 +170741274357,245,0 +170741274405,245,0 +170741274453,245,0 +170741274501,245,0 +170741274549,245,0 +170741274597,245,0 +170741274645,245,0 +170741274693,244,0 +170741274741,244,0 +170741274788,245,0 +170741274838,245,0 +170741274886,245,0 +170741274934,245,0 +170741274982,245,0 +170741275031,245,0 +170741275079,245,0 +170741275127,245,0 +170741275175,245,0 +170741275223,245,0 +170741275273,245,0 +170741275322,245,0 +170741275370,245,0 +170741275418,245,0 +170741275468,245,0 +170741275516,245,0 +170741275563,245,0 +170741275613,245,0 +170741275663,245,0 +170741275710,245,0 +170741275760,245,0 +170741275810,245,0 +170741275858,245,0 +170741275906,245,0 +170741275955,245,0 +170741276003,245,0 +170741276053,245,0 +170741276100,245,0 +170741276148,245,0 +170741276196,244,0 +170741276244,245,0 +170741276294,245,0 +170741276342,245,0 +170741276390,245,0 +170741276438,245,0 +170741276486,244,0 +170741276534,245,0 +170741276583,245,0 +170741276631,245,0 +170741276679,245,0 +170741276727,245,0 +170741276776,245,0 +170741276824,245,0 +170741276872,245,0 +170741276920,245,0 +170741276968,245,0 +170741277018,245,0 +170741277067,245,0 +170741277117,245,0 +170741277164,245,0 +170741277212,245,0 +170741277260,245,0 +170741277310,245,0 +170741277358,245,0 +170741277405,245,0 +170741277453,245,0 +170741277501,245,0 +170741277549,245,0 +170741277597,245,0 +170741277647,245,0 +170741277695,245,0 +170741277744,245,0 +170741277794,245,0 +170741277843,245,0 +170741277891,245,0 +170741277939,245,0 +170741277987,244,0 +170741278035,245,0 +170741278084,245,0 +170741278132,245,0 +170741278180,245,0 +170741278228,245,0 +170741278276,245,0 +170741278324,245,0 +170741278372,245,0 +170741278422,245,0 +170741278470,245,0 +170741278519,245,0 +170741278567,245,0 +170741278615,245,0 +170741278663,245,0 +170741278711,245,0 +170741278761,245,0 +170741278809,245,0 +170741278858,245,0 +170741278906,244,0 +170741278954,245,0 +170741279002,245,0 +170741279050,244,0 +170741279099,245,0 +170741279147,245,0 +170741279195,245,0 +170741279245,245,0 +170741279293,245,0 +170741279341,245,0 +170741279390,245,0 +170741279438,245,0 +170741279486,245,0 +170741279534,245,0 +170741279584,245,0 +170741279632,245,0 +170741279681,245,0 +170741279731,245,0 +170741279779,245,0 +170741279827,245,0 +170741279875,245,0 +170741279922,245,0 +170741279970,244,0 +170741280018,245,0 +170741280068,245,0 +170741280116,245,0 +170741280164,245,0 +170741280213,245,0 +170741280261,245,0 +170741280309,245,0 +170741280357,245,0 +170741280405,245,0 +170741280455,245,0 +170741280502,245,0 +170741280552,245,0 +170741280600,245,0 +170741280648,245,0 +170741280697,245,0 +170741280747,245,0 +170741280795,245,0 +170741280843,245,0 +170741280891,245,0 +170741280939,245,0 +170741280987,245,0 +170741281035,245,0 +170741281083,245,0 +170741281131,245,0 +170741281179,245,0 +170741281228,245,0 +170741281278,245,0 +170741281327,245,0 +170741281375,245,0 +170741281423,245,0 +170741281473,245,0 +170741281521,245,0 +170741281569,245,0 +170741281618,245,0 +170741281666,245,0 +170741281716,245,0 +170741281765,245,0 +170741281815,245,0 +170741281862,245,0 +170741281910,245,0 +170741281958,245,0 +170741282006,245,0 +170741282056,245,0 +170741282104,245,0 +170741282152,245,0 +170741282201,245,0 +170741282251,245,0 +170741282299,245,0 +170741282347,245,0 +170741282395,245,0 +170741282443,245,0 +170741282492,245,0 +170741282540,245,0 +170741282590,245,0 +170741282639,245,0 +170741282687,245,0 +170741282735,245,0 +170741282783,245,0 +170741282831,245,0 +170741282879,245,0 +170741282927,245,0 +170741282975,245,0 +170741283022,245,0 +170741283070,245,0 +170741283118,245,0 +170741283166,245,0 +170741283214,245,0 +170741283262,245,0 +170741283310,245,0 +170741283358,245,0 +170741283406,245,0 +170741283455,245,0 +170741283503,245,0 +170741283551,245,0 +170741283599,245,0 +170741283647,245,0 +170741283694,245,0 +170741283742,245,0 +170741283790,245,0 +170741283838,245,0 +170741283886,245,0 +170741283934,245,0 +170741283982,245,0 +170741284030,245,0 +170741284078,245,0 +170741284125,245,0 +170741284173,245,0 +170741284221,245,0 +170741284269,245,0 +170741284318,245,0 +170741284366,245,0 +170741284414,245,0 +170741284462,245,0 +170741284510,245,0 +170741284558,245,0 +170741284606,245,0 +170741284654,245,0 +170741284702,245,0 +170741284749,245,0 +170741284797,245,0 +170741284847,245,0 +170741284896,245,0 +170741284944,245,0 +170741284992,245,0 +170741285040,245,0 +170741285088,245,0 +170741285136,244,0 +170741285184,245,0 +170741285231,245,0 +170741285281,245,0 +170741285329,245,0 +170741285377,245,0 +170741285424,245,0 +170741285472,245,0 +170741285522,245,0 +170741285571,245,0 +170741285619,245,0 +170741285669,245,0 +170741285718,245,0 +170741285766,245,0 +170741285814,245,0 +170741285862,245,0 +170741285910,245,0 +170741285958,245,0 +170741286005,245,0 +170741286053,245,0 +170741286101,245,0 +170741286149,245,0 +170741286198,245,0 +170741286246,245,0 +170741286294,245,0 +170741286342,245,0 +170741286390,245,0 +170741286438,245,0 +170741286486,245,0 +170741286534,245,0 +170741286581,245,0 +170741286629,245,0 +170741286677,245,0 +170741286725,245,0 +170741286773,245,0 +170741286822,245,0 +170741286870,245,0 +170741286918,245,0 +170741286966,245,0 +170741287014,245,0 +170741287062,245,0 +170741287110,245,0 +170741287158,245,0 +170741287207,245,0 +170741287255,245,0 +170741287303,245,0 +170741287351,245,0 +170741287399,245,0 +170741287447,245,0 +170741287494,245,0 +170741287542,245,0 +170741287590,245,0 +170741287638,245,0 +170741287686,245,0 +170741287734,245,0 +170741287782,245,0 +170741287830,245,0 +170741287877,245,0 +170741287925,245,0 +170741287973,245,0 +170741288021,245,0 +170741288070,245,0 +170741288118,245,0 +170741288166,245,0 +170741288214,245,0 +170741288262,245,0 +170741288310,245,0 +170741288358,245,0 +170741288406,245,0 +170741288453,245,0 +170741288501,245,0 +170741288549,245,0 +170741288597,245,0 +170741288645,245,0 +170741288693,245,0 +170741288742,245,0 +170741288790,245,0 +170741288838,245,0 +170741288887,245,0 +170741288935,245,0 +170741288983,245,0 +170741289031,245,0 +170741289079,245,0 +170741289127,245,0 +170741289175,245,0 +170741289223,245,0 +170741289272,245,0 +170741289320,245,0 +170741289370,245,0 +170741289417,245,0 +170741289465,245,0 +170741289515,245,0 +170741289563,245,0 +170741289611,244,0 +170741289658,245,0 +170741289706,245,0 +170741289754,245,0 +170741289802,245,0 +170741289850,245,0 +170741289898,245,0 +170741289946,244,0 +170741289994,245,0 +170741290042,245,0 +170741290090,245,0 +170741290137,245,0 +170741290185,245,0 +170741290235,245,0 +170741290284,245,0 +170741290332,245,0 +170741290380,245,0 +170741290429,245,0 +170741290477,245,0 +170741290525,245,0 +170741290573,245,0 +170741290621,245,0 +170741290669,245,0 +170741290717,245,0 +170741290765,245,0 +170741290812,244,0 +170741290860,245,0 +170741290908,244,0 +170741290956,245,0 +170741291004,245,0 +170741291053,245,0 +170741291101,245,0 +170741291149,245,0 +170741291197,245,0 +170741291245,245,0 +170741291293,245,0 +170741291341,245,0 +170741291390,245,0 +170741291438,245,0 +170741291486,245,0 +170741291534,245,0 +170741291582,245,0 +170741291630,245,0 +170741291678,245,0 +170741291726,245,0 +170741291773,245,0 +170741291821,245,0 +170741291869,245,0 +170741291917,245,0 +170741291965,245,0 +170741292013,245,0 +170741292061,245,0 +170741292111,245,0 +170741292159,245,0 +170741292207,245,0 +170741292256,245,0 +170741292304,245,0 +170741292354,245,0 +170741292402,244,0 +170741292451,244,0 +170741292499,244,0 +170741292547,245,0 +170741292595,245,0 +170741292643,245,0 +170741292693,245,0 +170741292742,245,0 +170741292792,245,0 +170741292839,245,0 +170741292887,245,0 +170741292935,245,0 +170741292983,245,0 +170741293031,245,0 +170741293079,245,0 +170741293127,245,0 +170741293175,245,0 +170741293222,245,0 +170741293270,245,0 +170741293318,245,0 +170741293366,245,0 +170741293414,245,0 +170741293462,245,0 +170741293510,245,0 +170741293558,245,0 +170741293605,245,0 +170741293653,245,0 +170741293701,245,0 +170741293749,245,0 +170741293797,245,0 +170741293845,245,0 +170741293893,245,0 +170741293941,245,0 +170741293989,245,0 +170741294038,245,0 +170741294088,245,0 +170741294136,245,0 +170741294183,245,0 +170741294233,245,0 +170741294282,245,0 +170741294332,245,0 +170741294380,245,0 +170741294428,245,0 +170741294476,245,0 +170741294524,245,0 +170741294572,245,0 +170741294620,245,0 +170741294668,245,0 +170741294715,245,0 +170741294765,245,0 +170741294813,245,0 +170741294861,245,0 +170741294909,245,0 +170741294956,245,0 +170741295004,245,0 +170741295052,245,0 +170741295100,245,0 +170741295148,245,0 +170741295196,245,0 +170741295246,245,0 +170741295294,245,0 +170741295343,245,0 +170741295393,245,0 +170741295440,245,0 +170741295488,245,0 +170741295536,245,0 +170741295586,245,0 +170741295635,245,0 +170741295683,245,0 +170741295733,245,0 +170741295782,245,0 +170741295830,245,0 +170741295878,244,0 +170741295928,245,0 +170741295977,245,0 +170741296027,245,0 +170741296074,245,0 +170741296122,245,0 +170741296170,245,0 +170741296218,245,0 +170741296266,245,0 +170741296314,244,0 +170741296362,245,0 +170741296410,245,0 +170741296458,245,0 +170741296506,245,0 +170741296554,245,0 +170741296602,245,0 +170741296651,245,0 +170741296699,245,0 +170741296747,245,0 +170741296797,245,0 +170741296845,245,0 +170741296893,245,0 +170741296941,245,0 +170741296989,245,0 +170741297037,245,0 +170741297085,245,0 +170741297133,245,0 +170741297181,245,0 +170741297228,245,0 +170741297276,245,0 +170741297324,245,0 +170741297372,245,0 +170741297422,245,0 +170741297471,245,0 +170741297519,245,0 +170741297567,245,0 +170741297617,245,0 +170741297665,245,0 +170741297713,245,0 +170741297761,244,0 +170741297809,245,0 +170741297858,245,0 +170741297906,245,0 +170741297954,245,0 +170741298002,245,0 +170741298050,245,0 +170741298099,245,0 +170741298147,245,0 +170741298197,245,0 +170741298245,244,0 +170741298293,245,0 +170741298342,245,0 +170741298390,244,0 +170741298440,245,0 +170741298489,245,0 +170741298539,245,0 +170741298587,245,0 +170741298635,245,0 +170741298683,245,0 +170741298731,245,0 +170741298780,245,0 +170741298828,245,0 +170741298878,244,0 +170741298925,245,0 +170741298973,245,0 +170741299023,245,0 +170741299071,245,0 +170741299120,245,0 +170741299170,245,0 +170741299219,245,0 +170741299267,245,0 +170741299317,244,0 +170741299366,245,0 +170741299414,245,0 +170741299462,245,0 +170741299512,245,0 +170741299560,245,0 +170741299608,245,0 +170741299657,245,0 +170741299707,245,0 +170741299756,245,0 +170741299804,245,0 +170741299852,245,0 +170741299901,244,0 +170741299949,245,0 +170741299999,244,0 +170741300048,245,0 +170741300097,245,0 +170741300146,245,0 +170741300194,245,0 +170741300242,245,0 +170741300290,245,0 +170741300338,245,0 +170741300386,245,0 +170741300434,245,0 +170741300482,244,0 +170741300531,245,0 +170741300579,245,0 +170741300627,244,0 +170741300677,245,0 +170741300726,245,0 +170741300774,245,0 +170741300824,245,0 +170741300872,245,0 +170741300920,244,0 +170741300969,245,0 +170741301017,245,0 +170741301067,245,0 +170741301115,245,0 +170741301163,245,0 +170741301212,245,0 +170741301262,245,0 +170741301311,245,0 +170741301361,245,0 +170741301409,245,0 +170741301458,245,0 +170741301506,245,0 +170741301554,245,0 +170741301604,245,0 +170741301652,245,0 +170741301700,245,0 +170741301750,245,0 +170741301798,245,0 +170741301846,245,0 +170741301894,244,0 +170741301942,245,0 +170741301990,245,0 +170741302039,245,0 +170741302087,245,0 +170741302137,245,0 +170741302185,245,0 +170741302233,245,0 +170741302280,244,0 +170741302328,245,0 +170741302376,245,0 +170741302424,244,0 +170741302472,245,0 +170741302520,245,0 +170741302570,245,0 +170741302618,245,0 +170741302666,245,0 +170741302714,245,0 +170741302762,245,0 +170741302811,245,0 +170741302859,245,0 +170741302909,245,0 +170741302958,245,0 +170741303006,245,0 +170741303056,245,0 +170741303105,245,0 +170741303155,245,0 +170741303204,245,0 +170741303254,245,0 +170741303302,245,0 +170741303351,245,0 +170741303399,245,0 +170741303447,245,0 +170741303495,245,0 +170741303543,245,0 +170741303591,245,0 +170741303639,245,0 +170741303687,245,0 +170741303735,245,0 +170741303783,245,0 +170741303831,245,0 +170741303879,245,0 +170741303928,245,0 +170741303978,245,0 +170741304026,245,0 +170741304074,245,0 +170741304123,245,0 +170741304171,245,0 +170741304219,245,0 +170741304268,245,0 +170741304316,245,0 +170741304364,245,0 +170741304412,245,0 +170741304460,245,0 +170741304510,245,0 +170741304558,245,0 +170741304606,245,0 +170741304655,245,0 +170741304703,245,0 +170741304753,245,0 +170741304802,245,0 +170741304850,244,0 +170741304898,245,0 +170741304948,245,0 +170741304996,245,0 +170741305044,245,0 +170741305091,245,0 +170741305139,245,0 +170741305187,245,0 +170741305235,245,0 +170741305285,245,0 +170741305333,244,0 +170741305381,245,0 +170741305430,245,0 +170741305478,245,0 +170741305528,245,0 +170741305576,245,0 +170741305624,245,0 +170741305672,245,0 +170741305720,245,0 +170741305769,245,0 +170741305817,245,0 +170741305865,245,0 +170741305913,245,0 +170741305961,245,0 +170741306009,244,0 +170741306057,245,0 +170741306106,245,0 +170741306156,245,0 +170741306204,245,0 +170741306252,245,0 +170741306301,245,0 +170741306351,245,0 +170741306399,245,0 +170741306447,245,0 +170741306495,245,0 +170741306544,245,0 +170741306592,245,0 +170741306642,245,0 +170741306691,245,0 +170741306739,245,0 +170741306787,245,0 +170741306835,245,0 +170741306883,245,0 +170741306931,245,0 +170741306979,245,0 +170741307027,245,0 +170741307075,245,0 +170741307122,245,0 +170741307170,245,0 +170741307220,245,0 +170741307269,245,0 +170741307319,245,0 +170741307368,245,0 +170741307416,244,0 +170741307464,245,0 +170741307514,245,0 +170741307562,245,0 +170741307611,245,0 +170741307659,245,0 +170741307709,245,0 +170741307756,245,0 +170741307806,245,0 +170741307854,245,0 +170741307903,245,0 +170741307953,244,0 +170741308001,245,0 +170741308049,245,0 +170741308098,245,0 +170741308146,245,0 +170741308196,245,0 +170741308244,245,0 +170741308292,245,0 +170741308340,245,0 +170741308389,245,0 +170741308439,244,0 +170741308487,245,0 +170741308536,244,0 +170741308584,245,0 +170741308632,245,0 +170741308680,245,0 +170741308728,245,0 +170741308778,245,0 +170741308826,244,0 +170741308873,245,0 +170741308921,245,0 +170741308969,245,0 +170741309017,245,0 +170741309065,244,0 +170741309113,245,0 +170741309161,245,0 +170741309209,245,0 +170741309257,245,0 +170741309305,245,0 +170741309353,245,0 +170741309401,245,0 +170741309449,245,0 +170741309498,245,0 +170741309546,245,0 +170741309594,245,0 +170741309644,245,0 +170741309692,245,0 +170741309740,245,0 +170741309788,245,0 +170741309838,245,0 +170741309887,245,0 +170741309937,245,0 +170741309984,245,0 +170741310034,245,0 +170741310084,245,0 +170741310132,245,0 +170741310179,245,0 +170741310227,245,0 +170741310277,245,0 +170741310325,245,0 +170741310373,245,0 +170741310421,245,0 +170741310469,245,0 +170741310518,245,0 +170741310566,245,0 +170741310614,245,0 +170741310664,245,0 +170741310712,245,0 +170741310761,245,0 +170741310811,245,0 +170741310860,245,0 +170741310908,245,0 +170741310956,245,0 +170741311004,245,0 +170741311053,245,0 +170741311101,245,0 +170741311149,245,0 +170741311197,245,0 +170741311245,245,0 +170741311293,245,0 +170741311341,245,0 +170741311389,244,0 +170741311437,244,0 +170741311486,245,0 +170741311536,245,0 +170741311585,245,0 +170741311635,245,0 +170741311683,245,0 +170741311731,245,0 +170741311779,245,0 +170741311828,245,0 +170741311876,245,0 +170741311926,245,0 +170741311974,245,0 +170741312023,245,0 +170741312071,245,0 +170741312119,245,0 +170741312167,245,0 +170741312217,245,0 +170741312266,245,0 +170741312314,245,0 +170741312362,245,0 +170741312412,245,0 +170741312460,245,0 +170741312508,245,0 +170741312556,245,0 +170741312605,245,0 +170741312655,245,0 +170741312704,245,0 +170741312754,245,0 +170741312802,245,0 +170741312851,245,0 +170741312899,245,0 +170741312947,245,0 +170741312995,245,0 +170741313043,245,0 +170741313093,244,0 +170741313141,245,0 +170741313189,245,0 +170741313237,245,0 +170741313286,245,0 +170741313334,245,0 +170741313382,245,0 +170741313430,245,0 +170741313480,245,0 +170741313529,245,0 +170741313577,245,0 +170741313626,245,0 +170741313676,245,0 +170741313725,245,0 +170741313775,245,0 +170741313825,245,0 +170741313873,245,0 +170741313922,245,0 +170741313972,245,0 +170741314021,245,0 +170741314069,245,0 +170741314117,244,0 +170741314165,245,0 +170741314213,245,0 +170741314261,245,0 +170741314309,245,0 +170741314357,245,0 +170741314406,245,0 +170741314454,245,0 +170741314502,245,0 +170741314550,245,0 +170741314600,245,0 +170741314648,245,0 +170741314696,245,0 +170741314745,245,0 +170741314793,245,0 +170741314841,244,0 +170741314889,244,0 +170741314939,245,0 +170741314987,245,0 +170741315035,245,0 +170741315083,245,0 +170741315131,245,0 +170741315179,244,0 +170741315227,245,0 +170741315275,245,0 +170741315324,245,0 +170741315372,245,0 +170741315420,245,0 +170741315468,245,0 +170741315517,244,0 +170741315567,245,0 +170741315615,245,0 +170741315663,245,0 +170741315712,245,0 +170741315760,245,0 +170741315810,245,0 +170741315858,245,0 +170741315907,245,0 +170741315955,245,0 +170741316003,245,0 +170741316051,245,0 +170741316099,245,0 +170741316147,245,0 +170741316195,245,0 +170741316245,245,0 +170741316293,245,0 +170741316341,245,0 +170741316390,245,0 +170741316438,245,0 +170741316486,245,0 +170741316534,244,0 +170741316584,245,0 +170741316633,244,0 +170741316682,245,0 +170741316732,245,0 +170741316780,245,0 +170741316829,245,0 +170741316877,245,0 +170741316925,245,0 +170741316975,245,0 +170741317023,245,0 +170741317071,244,0 +170741317119,245,0 +170741317167,245,0 +170741317215,245,0 +170741317263,245,0 +170741317312,245,0 +170741317362,245,0 +170741317410,245,0 +170741317458,245,0 +170741317506,245,0 +170741317554,245,0 +170741317602,245,0 +170741317651,245,0 +170741317699,245,0 +170741317747,245,0 +170741317795,245,0 +170741317843,245,0 +170741317891,245,0 +170741317940,245,0 +170741317988,245,0 +170741318038,245,0 +170741318086,245,0 +170741318134,244,0 +170741318182,245,0 +170741318230,244,0 +170741318279,245,0 +170741318327,245,0 +170741318375,245,0 +170741318423,244,0 +170741318473,245,0 +170741318521,245,0 +170741318570,245,0 +170741318620,245,0 +170741318667,245,0 +170741318715,245,0 +170741318765,245,0 +170741318814,245,0 +170741318862,245,0 +170741318910,245,0 +170741318960,245,0 +170741319009,245,0 +170741319057,245,0 +170741319105,245,0 +170741319155,245,0 +170741319204,245,0 +170741319252,245,0 +170741319300,245,0 +170741319348,244,0 +170741319396,245,0 +170741319446,245,0 +170741319494,245,0 +170741319543,245,0 +170741319591,245,0 +170741319639,245,0 +170741319689,245,0 +170741319737,245,0 +170741319785,245,0 +170741319833,245,0 +170741319882,244,0 +170741319930,244,0 +170741319978,245,0 +170741320026,245,0 +170741320074,245,0 +170741320123,245,0 +170741320171,245,0 +170741320219,245,0 +170741320269,245,0 +170741320317,245,0 +170741320365,245,0 +170741320413,245,0 +170741320461,244,0 +170741320509,245,0 +170741320558,244,0 +170741320606,245,0 +170741320654,244,0 +170741320702,245,0 +170741320750,245,0 +170741320798,245,0 +170741320846,245,0 +170741320894,245,0 +170741320942,245,0 +170741320990,245,0 +170741321038,244,0 +170741321087,245,0 +170741321135,245,0 +170741321183,245,0 +170741321231,245,0 +170741321279,245,0 +170741321328,245,0 +170741321376,245,0 +170741321426,244,0 +170741321474,245,0 +170741321523,245,0 +170741321573,245,0 +170741321622,245,0 +170741321672,245,0 +170741321721,245,0 +170741321771,245,0 +170741321819,245,0 +170741321868,245,0 +170741321916,245,0 +170741321966,244,0 +170741322014,245,0 +170741322063,245,0 +170741322111,245,0 +170741322159,245,0 +170741322207,245,0 +170741322255,245,0 +170741322303,245,0 +170741322351,244,0 +170741322401,245,0 +170741322449,245,0 +170741322498,245,0 +170741322548,245,0 +170741322597,245,0 +170741322645,245,0 +170741322695,245,0 +170741322742,245,0 +170741322792,245,0 +170741322840,245,0 +170741322889,244,0 +170741322937,245,0 +170741322987,245,0 +170741323035,245,0 +170741323083,245,0 +170741323131,245,0 +170741323179,245,0 +170741323227,245,0 +170741323275,245,0 +170741323323,245,0 +170741323372,245,0 +170741323420,245,0 +170741323469,245,0 +170741323519,245,0 +170741323567,245,0 +170741323615,245,0 +170741323663,245,0 +170741323712,245,0 +170741323760,245,0 +170741323808,245,0 +170741323856,245,0 +170741323906,245,0 +170741323955,245,0 +170741324003,245,0 +170741324051,244,0 +170741324099,244,0 +170741324147,245,0 +170741324195,245,0 +170741324243,245,0 +170741324292,245,0 +170741324340,245,0 +170741324388,245,0 +170741324436,245,0 +170741324486,245,0 +170741324535,245,0 +170741324585,244,0 +170741324633,244,0 +170741324682,244,0 +170741324730,245,0 +170741324778,245,0 +170741324826,244,0 +170741324874,245,0 +170741324923,245,0 +170741324971,245,0 +170741325021,245,0 +170741325070,245,0 +170741325118,245,0 +170741325166,245,0 +170741325214,245,0 +170741325264,245,0 +170741325312,245,0 +170741325361,245,0 +170741325411,245,0 +170741325460,245,0 +170741325508,245,0 +170741325556,245,0 +170741325604,245,0 +170741325654,245,0 +170741325702,245,0 +170741325751,245,0 +170741325800,245,0 +170741325848,245,0 +170741325896,245,0 +170741325944,245,0 +170741325992,244,0 +170741326040,244,0 +170741326090,245,0 +170741326139,245,0 +170741326187,245,0 +170741326235,245,0 +170741326283,244,0 +170741326333,245,0 +170741326382,245,0 +170741326430,245,0 +170741326478,245,0 +170741326527,245,0 +170741326577,245,0 +170741326626,245,0 +170741326674,245,0 +170741326722,245,0 +170741326772,245,0 +170741326821,245,0 +170741326871,245,0 +170741326921,245,0 +170741326969,245,0 +170741327016,244,0 +170741327064,245,0 +170741327114,245,0 +170741327163,245,0 +170741327211,245,0 +170741327261,245,0 +170741327310,245,0 +170741327358,245,0 +170741327406,245,0 +170741327454,244,0 +170741327504,245,0 +170741327552,245,0 +170741327600,245,0 +170741327648,245,0 +170741327696,244,0 +170741327744,245,0 +170741327792,245,0 +170741327840,245,0 +170741327888,245,0 +170741327936,245,0 +170741327985,245,0 +170741328033,245,0 +170741328081,245,0 +170741328129,245,0 +170741328177,245,0 +170741328225,245,0 +170741328273,245,0 +170741328321,245,0 +170741328371,244,0 +170741328420,245,0 +170741328468,245,0 +170741328516,245,0 +170741328565,245,0 +170741328615,244,0 +170741328663,245,0 +170741328711,244,0 +170741328760,245,0 +170741328808,245,0 +170741328856,245,0 +170741328906,245,0 +170741328954,245,0 +170741329003,245,0 +170741329051,245,0 +170741329099,245,0 +170741329147,245,0 +170741329197,245,0 +170741329246,245,0 +170741329294,245,0 +170741329342,245,0 +170741329390,245,0 +170741329438,245,0 +170741329487,245,0 +170741329535,245,0 +170741329583,245,0 +170741329631,245,0 +170741329679,245,0 +170741329727,245,0 +170741329775,245,0 +170741329823,245,0 +170741329872,245,0 +170741329920,245,0 +170741329968,245,0 +170741330016,245,0 +170741330064,245,0 +170741330112,244,0 +170741330161,245,0 +170741330209,245,0 +170741330257,245,0 +170741330305,245,0 +170741330354,245,0 +170741330402,244,0 +170741330450,245,0 +170741330500,245,0 +170741330548,245,0 +170741330596,244,0 +170741330643,244,0 +170741330691,245,0 +170741330739,245,0 +170741330787,245,0 +170741330835,245,0 +170741330883,245,0 +170741330931,245,0 +170741330979,245,0 +170741331028,245,0 +170741331078,245,0 +170741331127,245,0 +170741331175,245,0 +170741331223,245,0 +170741331273,245,0 +170741331321,245,0 +170741331369,245,0 +170741331418,245,0 +170741331466,245,0 +170741331514,245,0 +170741331564,245,0 +170741331612,245,0 +170741331660,245,0 +170741331708,245,0 +170741331755,245,0 +170741331805,245,0 +170741331853,245,0 +170741331901,245,0 +170741331949,245,0 +170741331997,245,0 +170741332046,244,0 +170741332096,245,0 +170741332144,245,0 +170741332193,245,0 +170741332241,245,0 +170741332289,245,0 +170741332337,245,0 +170741332385,245,0 +170741332435,245,0 +170741332482,245,0 +170741332530,245,0 +170741332578,245,0 +170741332626,245,0 +170741332674,245,0 +170741332722,245,0 +170741332770,245,0 +170741332818,245,0 +170741332866,245,0 +170741332916,245,0 +170741332963,245,0 +170741333011,245,0 +170741333061,245,0 +170741333109,245,0 +170741333157,245,0 +170741333206,244,0 +170741333254,245,0 +170741333302,245,0 +170741333350,244,0 +170741333398,245,0 +170741333446,245,0 +170741333494,245,0 +170741333544,245,0 +170741333593,245,0 +170741333641,245,0 +170741333691,245,0 +170741333739,245,0 +170741333787,245,0 +170741333834,245,0 +170741333882,245,0 +170741333932,245,0 +170741333981,245,0 +170741334031,245,0 +170741334079,245,0 +170741334128,245,0 +170741334178,245,0 +170741334226,244,0 +170741334274,245,0 +170741334322,245,0 +170741334370,245,0 +170741334418,245,0 +170741334466,245,0 +170741334515,245,0 +170741334565,244,0 +170741334613,245,0 +170741334661,245,0 +170741334710,245,0 +170741334758,245,0 +170741334806,245,0 +170741334854,245,0 +170741334902,244,0 +170741334950,245,0 +170741335000,245,0 +170741335049,245,0 +170741335097,245,0 +170741335145,245,0 +170741335193,245,0 +170741335243,245,0 +170741335292,245,0 +170741335342,245,0 +170741335390,245,0 +170741335438,245,0 +170741335486,245,0 +170741335535,245,0 +170741335583,245,0 +170741335633,245,0 +170741335682,245,0 +170741335730,245,0 +170741335778,245,0 +170741335828,245,0 +170741335876,245,0 +170741335923,245,0 +170741335971,245,0 +170741336019,245,0 +170741336067,245,0 +170741336117,245,0 +170741336166,245,0 +170741336214,245,0 +170741336263,245,0 +170741336312,245,0 +170741336362,245,0 +170741336411,245,0 +170741336459,245,0 +170741336507,245,0 +170741336557,244,0 +170741336605,245,0 +170741336653,245,0 +170741336702,245,0 +170741336750,245,0 +170741336800,245,0 +170741336849,245,0 +170741336897,245,0 +170741336945,245,0 +170741336993,245,0 +170741337042,245,0 +170741337092,245,0 +170741337141,245,0 +170741337191,244,0 +170741337240,245,0 +170741337288,245,0 +170741337336,245,0 +170741337386,245,0 +170741337434,244,0 +170741337482,245,0 +170741337531,245,0 +170741337579,245,0 +170741337629,245,0 +170741337678,245,0 +170741337727,245,0 +170741337777,245,0 +170741337826,245,0 +170741337874,244,0 +170741337922,245,0 +170741337972,244,0 +170741338020,245,0 +170741338068,245,0 +170741338117,245,0 +170741338165,245,0 +170741338213,245,0 +170741338261,244,0 +170741338309,244,0 +170741338357,245,0 +170741338405,245,0 +170741338453,245,0 +170741338501,245,0 +170741338549,245,0 +170741338597,245,0 +170741338645,245,0 +170741338694,245,0 +170741338742,245,0 +170741338792,245,0 +170741338841,245,0 +170741338889,245,0 +170741338937,245,0 +170741338985,245,0 +170741339033,245,0 +170741339081,245,0 +170741339130,245,0 +170741339178,245,0 +170741339226,245,0 +170741339274,245,0 +170741339324,245,0 +170741339372,245,0 +170741339420,245,0 +170741339468,245,0 +170741339517,245,0 +170741339565,245,0 +170741339613,245,0 +170741339663,245,0 +170741339711,245,0 +170741339760,244,0 +170741339808,245,0 +170741339856,245,0 +170741339905,245,0 +170741339955,245,0 +170741340004,245,0 +170741340054,245,0 +170741340102,245,0 +170741340150,245,0 +170741340198,245,0 +170741340247,244,0 +170741340297,245,0 +170741340345,245,0 +170741340393,245,0 +170741340442,245,0 +170741340490,245,0 +170741340540,244,0 +170741340588,245,0 +170741340636,245,0 +170741340684,245,0 +170741340732,245,0 +170741340780,245,0 +170741340829,245,0 +170741340877,245,0 +170741340927,245,0 +170741340975,245,0 +170741341023,244,0 +170741341072,245,0 +170741341120,245,0 +170741341168,245,0 +170741341216,245,0 +170741341264,244,0 +170741341313,245,0 +170741341363,245,0 +170741341412,245,0 +170741341462,245,0 +170741341510,245,0 +170741341558,245,0 +170741341606,245,0 +170741341654,245,0 +170741341702,245,0 +170741341751,245,0 +170741341799,245,0 +170741341849,245,0 +170741341898,245,0 +170741341946,245,0 +170741341994,245,0 +170741342042,245,0 +170741342090,245,0 +170741342138,245,0 +170741342187,245,0 +170741342235,245,0 +170741342283,245,0 +170741342331,244,0 +170741342379,245,0 +170741342427,245,0 +170741342477,245,0 +170741342524,245,0 +170741342572,245,0 +170741342622,244,0 +170741342671,245,0 +170741342719,245,0 +170741342767,245,0 +170741342816,244,0 +170741342864,245,0 +170741342912,245,0 +170741342960,245,0 +170741343008,245,0 +170741343056,245,0 +170741343104,245,0 +170741343153,245,0 +170741343201,245,0 +170741343249,245,0 +170741343297,245,0 +170741343345,245,0 +170741343395,245,0 +170741343443,245,0 +170741343492,245,0 +170741343540,245,0 +170741343588,245,0 +170741343636,245,0 +170741343684,245,0 +170741343732,245,0 +170741343780,245,0 +170741343827,245,0 +170741343877,245,0 +170741343925,245,0 +170741343973,245,0 +170741344021,245,0 +170741344068,245,0 +170741344116,244,0 +170741344164,244,0 +170741344212,245,0 +170741344260,245,0 +170741344308,245,0 +170741344357,245,0 +170741344405,245,0 +170741344453,245,0 +170741344501,245,0 +170741344549,245,0 +170741344597,244,0 +170741344645,245,0 +170741344693,245,0 +170741344740,245,0 +170741344788,245,0 +170741344836,245,0 +170741344886,245,0 +170741344934,245,0 +170741344983,245,0 +170741345031,245,0 +170741345079,245,0 +170741345127,245,0 +170741345175,244,0 +170741345223,245,0 +170741345272,245,0 +170741345320,245,0 +170741345368,245,0 +170741345416,244,0 +170741345464,245,0 +170741345511,245,0 +170741345559,244,0 +170741345607,245,0 +170741345655,245,0 +170741345703,245,0 +170741345751,245,0 +170741345799,245,0 +170741345847,245,0 +170741345895,245,0 +170741345943,245,0 +170741345991,245,0 +170741346039,245,0 +170741346087,245,0 +170741346134,245,0 +170741346184,244,0 +170741346232,245,0 +170741346280,244,0 +170741346330,245,0 +170741346377,245,0 +170741346425,245,0 +170741346475,245,0 +170741346523,245,0 +170741346571,245,0 +170741346619,245,0 +170741346668,245,0 +170741346716,245,0 +170741346766,245,0 +170741346814,245,0 +170741346863,245,0 +170741346913,245,0 +170741346962,245,0 +170741347012,245,0 +170741347060,245,0 +170741347109,245,0 +170741347159,245,0 +170741347207,245,0 +170741347256,245,0 +170741347304,245,0 +170741347354,245,0 +170741347402,245,0 +170741347450,245,0 +170741347499,245,0 +170741347547,245,0 +170741347596,244,0 +170741347644,244,0 +170741347694,244,0 +170741347742,245,0 +170741347790,245,0 +170741347838,244,0 +170741347886,245,0 +170741347934,245,0 +170741347983,245,0 +170741348031,245,0 +170741348079,245,0 +170741348129,245,0 +170741348176,245,0 +170741348224,245,0 +170741348272,245,0 +170741348320,245,0 +170741348370,245,0 +170741348418,245,0 +170741348465,245,0 +170741348513,245,0 +170741348563,245,0 +170741348611,245,0 +170741348660,245,0 +170741348708,245,0 +170741348758,245,0 +170741348808,245,0 +170741348857,244,0 +170741348907,245,0 +170741348955,244,0 +170741349004,245,0 +170741349052,245,0 +170741349102,244,0 +170741349151,245,0 +170741349199,245,0 +170741349247,245,0 +170741349296,245,0 +170741349344,245,0 +170741349392,245,0 +170741349442,245,0 +170741349490,245,0 +170741349538,245,0 +170741349586,245,0 +170741349635,245,0 +170741349683,245,0 +170741349731,244,0 +170741349780,244,0 +170741349828,245,0 +170741349876,245,0 +170741349926,245,0 +170741349974,245,0 +170741350021,245,0 +170741350069,245,0 +170741350117,245,0 +170741350165,244,0 +170741350213,245,0 +170741350261,245,0 +170741350309,244,0 +170741350359,244,0 +170741350406,245,0 +170741350454,245,0 +170741350504,244,0 +170741350552,244,0 +170741350600,245,0 +170741350649,245,0 +170741350697,244,0 +170741350747,244,0 +170741350794,245,0 +170741350844,245,0 +170741350893,245,0 +170741350941,245,0 +170741350991,245,0 +170741351040,245,0 +170741351090,244,0 +170741351139,245,0 +170741351189,245,0 +170741351237,245,0 +170741351285,245,0 +170741351334,245,0 +170741351382,245,0 +170741351430,245,0 +170741351480,245,0 +170741351529,245,0 +170741351577,245,0 +170741351627,244,0 +170741351675,245,0 +170741351723,245,0 +170741351772,245,0 +170741351820,245,0 +170741351868,244,0 +170741351916,245,0 +170741351966,245,0 +170741352015,245,0 +170741352063,245,0 +170741352111,245,0 +170741352159,244,0 +170741352207,245,0 +170741352255,245,0 +170741352304,245,0 +170741352352,245,0 +170741352400,245,0 +170741352448,245,0 +170741352496,245,0 +170741352544,245,0 +170741352592,245,0 +170741352640,245,0 +170741352688,245,0 +170741352737,244,0 +170741352787,245,0 +170741352836,245,0 +170741352884,245,0 +170741352932,245,0 +170741352980,245,0 +170741353030,245,0 +170741353078,245,0 +170741353125,245,0 +170741353173,245,0 +170741353221,245,0 +170741353269,245,0 +170741353317,244,0 +170741353365,245,0 +170741353413,245,0 +170741353462,244,0 +170741353510,245,0 +170741353560,245,0 +170741353608,245,0 +170741353655,244,0 +170741353703,245,0 +170741353751,245,0 +170741353799,245,0 +170741353847,245,0 +170741353895,245,0 +170741353943,245,0 +170741353991,245,0 +170741354038,245,0 +170741354086,245,0 +170741354134,245,0 +170741354182,245,0 +170741354230,245,0 +170741354278,244,0 +170741354327,245,0 +170741354375,245,0 +170741354423,244,0 +170741354471,245,0 +170741354519,245,0 +170741354567,245,0 +170741354615,245,0 +170741354664,245,0 +170741354712,245,0 +170741354762,245,0 +170741354810,245,0 +170741354858,245,0 +170741354906,245,0 +170741354955,245,0 +170741355005,245,0 +170741355053,245,0 +170741355102,245,0 +170741355150,245,0 +170741355200,245,0 +170741355248,245,0 +170741355295,245,0 +170741355343,245,0 +170741355391,245,0 +170741355439,244,0 +170741355487,245,0 +170741355535,245,0 +170741355583,244,0 +170741355631,244,0 +170741355679,245,0 +170741355727,244,0 +170741355775,245,0 +170741355824,245,0 +170741355872,245,0 +170741355920,245,0 +170741355968,245,0 +170741356018,245,0 +170741356065,245,0 +170741356115,245,0 +170741356164,245,0 +170741356212,244,0 +170741356260,245,0 +170741356310,245,0 +170741356358,245,0 +170741356406,245,0 +170741356454,244,0 +170741356503,245,0 +170741356551,245,0 +170741356601,244,0 +170741356649,245,0 +170741356698,245,0 +170741356748,245,0 +170741356797,244,0 +170741356847,245,0 +170741356895,245,0 +170741356943,245,0 +170741356992,244,0 +170741357040,245,0 +170741357090,244,0 +170741357138,245,0 +170741357185,245,0 +170741357235,245,0 +170741357283,245,0 +170741357331,245,0 +170741357379,244,0 +170741357427,245,0 +170741357475,245,0 +170741357522,245,0 +170741357570,245,0 +170741357620,245,0 +170741357669,245,0 +170741357719,245,0 +170741357768,245,0 +170741357818,245,0 +170741357866,244,0 +170741357915,245,0 +170741357963,244,0 +170741358011,245,0 +170741358059,245,0 +170741358107,245,0 +170741358155,245,0 +170741358204,245,0 +170741358252,245,0 +170741358300,245,0 +170741358350,244,0 +170741358398,244,0 +170741358446,245,0 +170741358494,245,0 +170741358542,244,0 +170741358591,245,0 +170741358639,244,0 +170741358689,245,0 +170741358737,244,0 +170741358785,245,0 +170741358833,245,0 +170741358882,244,0 +170741358932,245,0 +170741358981,245,0 +170741359031,245,0 +170741359079,245,0 +170741359126,245,0 +170741359174,245,0 +170741359224,245,0 +170741359273,245,0 +170741359321,245,0 +170741359369,245,0 +170741359417,245,0 +170741359465,245,0 +170741359515,245,0 +170741359564,245,0 +170741359612,245,0 +170741359660,244,0 +170741359710,245,0 +170741359758,245,0 +170741359806,244,0 +170741359855,245,0 +170741359905,245,0 +170741359953,244,0 +170741360001,245,0 +170741360049,245,0 +170741360097,244,0 +170741360145,245,0 +170741360193,245,0 +170741360241,245,0 +170741360289,245,0 +170741360336,244,0 +170741360384,245,0 +170741360434,245,0 +170741360483,245,0 +170741360531,245,0 +170741360581,245,0 +170741360629,245,0 +170741360678,245,0 +170741360726,245,0 +170741360774,245,0 +170741360824,245,0 +170741360872,245,0 +170741360921,245,0 +170741360969,244,0 +170741361017,245,0 +170741361067,245,0 +170741361115,245,0 +170741361164,245,0 +170741361214,245,0 +170741361262,245,0 +170741361311,245,0 +170741361359,245,0 +170741361407,245,0 +170741361456,245,0 +170741361506,245,0 +170741361554,245,0 +170741361602,245,0 +170741361650,245,0 +170741361698,245,0 +170741361746,245,0 +170741361793,245,0 +170741361841,245,0 +170741361889,245,0 +170741361937,245,0 +170741361985,245,0 +170741362033,245,0 +170741362081,245,0 +170741362129,245,0 +170741362178,245,0 +170741362226,244,0 +170741362276,245,0 +170741362324,245,0 +170741362371,244,0 +170741362419,245,0 +170741362467,244,0 +170741362515,245,0 +170741362563,245,0 +170741362611,245,0 +170741362661,245,0 +170741362709,245,0 +170741362757,245,0 +170741362804,245,0 +170741362852,245,0 +170741362900,245,0 +170741362948,245,0 +170741362996,245,0 +170741363044,245,0 +170741363092,245,0 +170741363140,245,0 +170741363187,245,0 +170741363235,245,0 +170741363283,245,0 +170741363331,245,0 +170741363381,245,0 +170741363430,245,0 +170741363478,245,0 +170741363526,245,0 +170741363574,245,0 +170741363622,245,0 +170741363670,245,0 +170741363718,245,0 +170741363768,245,0 +170741363816,245,0 +170741363864,244,0 +170741363912,245,0 +170741363959,245,0 +170741364007,245,0 +170741364055,245,0 +170741364103,245,0 +170741364153,245,0 +170741364202,245,0 +170741364250,244,0 +170741364298,245,0 +170741364346,244,0 +170741364396,244,0 +170741364443,245,0 +170741364491,245,0 +170741364541,245,0 +170741364590,245,0 +170741364638,244,0 +170741364686,244,0 +170741364734,245,0 +170741364782,244,0 +170741364832,245,0 +170741364880,245,0 +170741364928,245,0 +170741364976,245,0 +170741365024,245,0 +170741365072,245,0 +170741365120,245,0 +170741365169,245,0 +170741365217,245,0 +170741365265,245,0 +170741365315,245,0 +170741365363,245,0 +170741365412,244,0 +170741365462,245,0 +170741365510,244,0 +170741365558,244,0 +170741365607,244,0 +170741365655,245,0 +170741365703,245,0 +170741365751,245,0 +170741365801,244,0 +170741365848,245,0 +170741365896,245,0 +170741365944,244,0 +170741365992,245,0 +170741366042,245,0 +170741366091,245,0 +170741366141,245,0 +170741366189,245,0 +170741366238,245,0 +170741366286,245,0 +170741366334,245,0 +170741366382,245,0 +170741366430,245,0 +170741366479,245,0 +170741366527,245,0 +170741366575,245,0 +170741366623,245,0 +170741366673,245,0 +170741366722,244,0 +170741366772,245,0 +170741366820,245,0 +170741366869,245,0 +170741366917,245,0 +170741366967,245,0 +170741367014,245,0 +170741367062,245,0 +170741367110,245,0 +170741367158,245,0 +170741367208,245,0 +170741367256,245,0 +170741367305,245,0 +170741367353,245,0 +170741367401,244,0 +170741367449,245,0 +170741367499,245,0 +170741367547,245,0 +170741367596,245,0 +170741367646,245,0 +170741367694,245,0 +170741367743,245,0 +170741367791,245,0 +170741367839,245,0 +170741367889,245,0 +170741367937,245,0 +170741367984,245,0 +170741368032,245,0 +170741368080,245,0 +170741368130,245,0 +170741368178,244,0 +170741368226,245,0 +170741368275,245,0 +170741368323,245,0 +170741368371,245,0 +170741368419,245,0 +170741368467,245,0 +170741368515,245,0 +170741368565,245,0 +170741368613,245,0 +170741368661,245,0 +170741368708,245,0 +170741368758,245,0 +170741368806,245,0 +170741368854,245,0 +170741368902,245,0 +170741368950,245,0 +170741368998,245,0 +170741369046,245,0 +170741369094,245,0 +170741369142,245,0 +170741369191,245,0 +170741369239,245,0 +170741369287,245,0 +170741369336,245,0 +170741369384,245,0 +170741369432,245,0 +170741369480,245,0 +170741369530,245,0 +170741369578,245,0 +170741369627,245,0 +170741369677,245,0 +170741369725,245,0 +170741369773,245,0 +170741369821,245,0 +170741369870,245,0 +170741369918,244,0 +170741369966,245,0 +170741370014,245,0 +170741370062,244,0 +170741370110,245,0 +170741370158,245,0 +170741370205,245,0 +170741370253,245,0 +170741370301,245,0 +170741370349,245,0 +170741370399,245,0 +170741370448,245,0 +170741370498,245,0 +170741370547,245,0 +170741370595,244,0 +170741370643,245,0 +170741370691,245,0 +170741370741,245,0 +170741370790,245,0 +170741370838,244,0 +170741370888,245,0 +170741370937,245,0 +170741370987,245,0 +170741371036,245,0 +170741371084,245,0 +170741371132,245,0 +170741371180,245,0 +170741371230,245,0 +170741371279,245,0 +170741371327,245,0 +170741371377,245,0 +170741371425,245,0 +170741371474,245,0 +170741371522,245,0 +170741371570,245,0 +170741371620,245,0 +170741371668,245,0 +170741371717,244,0 +170741371767,244,0 +170741371816,245,0 +170741371864,245,0 +170741371914,245,0 +170741371962,245,0 +170741372011,245,0 +170741372061,245,0 +170741372109,245,0 +170741372156,245,0 +170741372204,245,0 +170741372252,245,0 +170741372302,245,0 +170741372351,245,0 +170741372401,245,0 +170741372449,245,0 +170741372497,244,0 +170741372545,245,0 +170741372593,244,0 +170741372642,245,0 +170741372692,245,0 +170741372740,245,0 +170741372788,245,0 +170741372837,245,0 +170741372885,245,0 +170741372933,245,0 +170741372981,245,0 +170741373029,245,0 +170741373077,245,0 +170741373127,245,0 +170741373174,245,0 +170741373222,245,0 +170741373270,245,0 +170741373318,244,0 +170741373366,245,0 +170741373414,245,0 +170741373462,244,0 +170741373512,245,0 +170741373560,244,0 +170741373608,245,0 +170741373656,245,0 +170741373703,245,0 +170741373751,245,0 +170741373799,245,0 +170741373847,245,0 +170741373895,245,0 +170741373943,245,0 +170741373991,245,0 +170741374038,245,0 +170741374086,245,0 +170741374134,244,0 +170741374182,245,0 +170741374230,245,0 +170741374280,245,0 +170741374329,245,0 +170741374379,245,0 +170741374427,245,0 +170741374475,245,0 +170741374522,245,0 +170741374570,244,0 +170741374618,245,0 +170741374666,244,0 +170741374714,245,0 +170741374762,245,0 +170741374811,245,0 +170741374861,245,0 +170741374909,245,0 +170741374957,245,0 +170741375005,245,0 +170741375054,245,0 +170741375104,245,0 +170741375152,245,0 +170741375199,245,0 +170741375249,245,0 +170741375297,245,0 +170741375346,245,0 +170741375394,245,0 +170741375442,245,0 +170741375490,245,0 +170741375538,245,0 +170741375586,245,0 +170741375634,245,0 +170741375682,245,0 +170741375730,245,0 +170741375778,245,0 +170741375826,245,0 +170741375876,245,0 +170741375923,245,0 +170741375973,245,0 +170741376021,245,0 +170741376069,245,0 +170741376117,245,0 +170741376165,245,0 +170741376214,245,0 +170741376262,245,0 +170741376310,245,0 +170741376360,245,0 +170741376408,244,0 +170741376456,245,0 +170741376504,245,0 +170741376552,245,0 +170741376601,244,0 +170741376649,245,0 +170741376697,245,0 +170741376745,245,0 +170741376795,245,0 +170741376844,245,0 +170741376894,245,0 +170741376943,245,0 +170741376993,245,0 +170741377041,245,0 +170741377090,245,0 +170741377138,245,0 +170741377187,245,0 +170741377235,244,0 +170741377283,244,0 +170741377331,245,0 +170741377379,245,0 +170741377429,245,0 +170741377478,245,0 +170741377526,245,0 +170741377574,245,0 +170741377624,245,0 +170741377673,245,0 +170741377721,245,0 +170741377769,245,0 +170741377817,245,0 +170741377865,245,0 +170741377913,245,0 +170741377961,245,0 +170741378008,245,0 +170741378056,245,0 +170741378104,245,0 +170741378154,245,0 +170741378201,245,0 +170741378249,245,0 +170741378297,244,0 +170741378345,244,0 +170741378393,245,0 +170741378443,245,0 +170741378491,245,0 +170741378538,245,0 +170741378586,245,0 +170741378634,245,0 +170741378682,245,0 +170741378730,245,0 +170741378778,245,0 +170741378826,245,0 +170741378875,245,0 +170741378923,245,0 +170741378971,245,0 +170741379019,245,0 +170741379067,244,0 +170741379115,245,0 +170741379163,245,0 +170741379211,245,0 +170741379258,245,0 +170741379306,245,0 +170741379354,245,0 +170741379402,245,0 +170741379450,245,0 +170741379498,245,0 +170741379546,245,0 +170741379594,245,0 +170741379641,245,0 +170741379689,245,0 +170741379737,245,0 +170741379785,245,0 +170741379833,245,0 +170741379881,245,0 +170741379929,245,0 +170741379978,245,0 +170741380026,245,0 +170741380074,245,0 +170741380122,245,0 +170741380170,245,0 +170741380217,245,0 +170741380265,245,0 +170741380313,245,0 +170741380361,245,0 +170741380411,245,0 +170741380459,245,0 +170741380508,245,0 +170741380556,245,0 +170741380604,245,0 +170741380652,245,0 +170741380701,245,0 +170741380749,244,0 +170741380797,245,0 +170741380845,245,0 +170741380893,245,0 +170741380941,245,0 +170741380989,244,0 +170741381039,245,0 +170741381087,245,0 +170741381136,245,0 +170741381184,245,0 +170741381232,245,0 +170741381280,245,0 +170741381328,245,0 +170741381376,245,0 +170741381424,245,0 +170741381474,245,0 +170741381523,245,0 +170741381571,245,0 +170741381619,245,0 +170741381667,245,0 +170741381716,245,0 +170741381766,245,0 +170741381814,245,0 +170741381863,245,0 +170741381913,245,0 +170741381962,245,0 +170741382010,245,0 +170741382058,245,0 +170741382106,244,0 +170741382154,245,0 +170741382202,245,0 +170741382250,245,0 +170741382298,245,0 +170741382346,245,0 +170741382394,245,0 +170741382441,245,0 +170741382491,245,0 +170741382539,245,0 +170741382587,245,0 +170741382634,245,0 +170741382682,245,0 +170741382730,245,0 +170741382778,245,0 +170741382826,245,0 +170741382874,245,0 +170741382922,245,0 +170741382971,245,0 +170741383019,245,0 +170741383067,245,0 +170741383115,245,0 +170741383163,245,0 +170741383211,245,0 +170741383259,245,0 +170741383308,245,0 +170741383358,245,0 +170741383406,245,0 +170741383454,245,0 +170741383503,245,0 +170741383551,245,0 +170741383601,245,0 +170741383650,245,0 +170741383698,245,0 +170741383746,245,0 +170741383794,245,0 +170741383842,245,0 +170741383891,245,0 +170741383941,245,0 +170741383990,245,0 +170741384038,245,0 +170741384088,245,0 +170741384137,245,0 +170741384185,245,0 +170741384235,245,0 +170741384283,245,0 +170741384331,245,0 +170741384379,245,0 +170741384428,245,0 +170741384478,245,0 +170741384526,245,0 +170741384574,245,0 +170741384622,245,0 +170741384669,245,0 +170741384717,245,0 +170741384767,245,0 +170741384815,245,0 +170741384863,245,0 +170741384911,245,0 +170741384959,245,0 +170741385007,245,0 +170741385055,244,0 +170741385103,245,0 +170741385152,244,0 +170741385202,245,0 +170741385250,245,0 +170741385298,245,0 +170741385346,245,0 +170741385394,245,0 +170741385443,245,0 +170741385491,245,0 +170741385541,245,0 +170741385589,245,0 +170741385637,244,0 +170741385686,245,0 +170741385734,245,0 +170741385782,245,0 +170741385830,245,0 +170741385878,245,0 +170741385926,245,0 +170741385974,245,0 +170741386024,245,0 +170741386072,245,0 +170741386120,244,0 +170741386168,245,0 +170741386216,245,0 +170741386265,245,0 +170741386315,245,0 +170741386364,245,0 +170741386412,244,0 +170741386460,245,0 +170741386508,245,0 +170741386558,245,0 +170741386606,245,0 +170741386654,244,0 +170741386703,245,0 +170741386751,245,0 +170741386799,244,0 +170741386847,245,0 +170741386897,244,0 +170741386945,245,0 +170741386993,245,0 +170741387040,245,0 +170741387088,245,0 +170741387136,245,0 +170741387184,245,0 +170741387232,245,0 +170741387282,245,0 +170741387330,245,0 +170741387379,245,0 +170741387427,245,0 +170741387475,245,0 +170741387523,245,0 +170741387573,245,0 +170741387622,245,0 +170741387670,245,0 +170741387718,245,0 +170741387766,245,0 +170741387816,245,0 +170741387864,244,0 +170741387912,245,0 +170741387961,245,0 +170741388009,245,0 +170741388057,245,0 +170741388105,245,0 +170741388153,245,0 +170741388201,245,0 +170741388249,245,0 +170741388297,245,0 +170741388346,245,0 +170741388396,245,0 +170741388444,244,0 +170741388493,245,0 +170741388541,245,0 +170741388589,245,0 +170741388637,245,0 +170741388687,245,0 +170741388735,245,0 +170741388783,245,0 +170741388832,245,0 +170741388880,245,0 +170741388928,245,0 +170741388976,245,0 +170741389025,245,0 +170741389073,245,0 +170741389121,245,0 +170741389171,245,0 +170741389219,245,0 +170741389267,245,0 +170741389315,245,0 +170741389364,245,0 +170741389412,245,0 +170741389460,245,0 +170741389510,245,0 +170741389559,245,0 +170741389607,245,0 +170741389657,245,0 +170741389705,245,0 +170741389753,245,0 +170741389801,245,0 +170741389849,245,0 +170741389897,245,0 +170741389945,245,0 +170741389994,245,0 +170741390044,245,0 +170741390091,245,0 +170741390141,245,0 +170741390189,245,0 +170741390238,245,0 +170741390286,245,0 +170741390336,245,0 +170741390384,245,0 +170741390434,245,0 +170741390483,245,0 +170741390531,245,0 +170741390579,245,0 +170741390629,245,0 +170741390678,245,0 +170741390728,245,0 +170741390776,245,0 +170741390825,245,0 +170741390875,245,0 +170741390923,245,0 +170741390972,245,0 +170741391022,245,0 +170741391070,245,0 +170741391119,245,0 +170741391169,245,0 +170741391217,245,0 +170741391265,245,0 +170741391313,244,0 +170741391361,245,0 +170741391409,245,0 +170741391457,245,0 +170741391505,245,0 +170741391554,245,0 +170741391604,245,0 +170741391653,245,0 +170741391701,245,0 +170741391751,245,0 +170741391800,245,0 +170741391848,245,0 +170741391896,245,0 +170741391944,245,0 +170741391992,245,0 +170741392040,245,0 +170741392088,245,0 +170741392137,245,0 +170741392185,245,0 +170741392235,245,0 +170741392284,245,0 +170741392334,245,0 +170741392382,245,0 +170741392431,245,0 +170741392481,245,0 +170741392529,245,0 +170741392577,245,0 +170741392625,245,0 +170741392673,245,0 +170741392721,245,0 +170741392770,245,0 +170741392818,245,0 +170741392866,245,0 +170741392915,245,0 +170741392965,245,0 +170741393014,245,0 +170741393062,245,0 +170741393110,245,0 +170741393160,245,0 +170741393208,245,0 +170741393256,245,0 +170741393304,245,0 +170741393352,245,0 +170741393401,245,0 +170741393451,245,0 +170741393499,245,0 +170741393548,245,0 +170741393596,245,0 +170741393644,244,0 +170741393692,245,0 +170741393740,245,0 +170741393788,245,0 +170741393838,245,0 +170741393886,245,0 +170741393934,245,0 +170741393982,245,0 +170741394030,245,0 +170741394078,245,0 +170741394127,245,0 +170741394177,245,0 +170741394226,244,0 +170741394274,245,0 +170741394322,245,0 +170741394372,245,0 +170741394420,245,0 +170741394467,245,0 +170741394515,245,0 +170741394565,245,0 +170741394613,245,0 +170741394662,245,0 +170741394710,245,0 +170741394758,245,0 +170741394806,245,0 +170741394856,245,0 +170741394904,245,0 +170741394952,245,0 +170741395000,245,0 +170741395049,245,0 +170741395099,245,0 +170741395147,245,0 +170741395195,245,0 +170741395244,245,0 +170741395292,244,0 +170741395340,245,0 +170741395390,244,0 +170741395439,245,0 +170741395487,244,0 +170741395535,245,0 +170741395584,245,0 +170741395634,245,0 +170741395682,245,0 +170741395730,245,0 +170741395779,245,0 +170741395827,245,0 +170741395875,245,0 +170741395923,245,0 +170741395971,245,0 +170741396021,245,0 +170741396070,245,0 +170741396118,245,0 +170741396166,245,0 +170741396216,245,0 +170741396263,245,0 +170741396311,245,0 +170741396361,245,0 +170741396410,245,0 +170741396458,245,0 +170741396508,245,0 +170741396556,245,0 +170741396604,244,0 +170741396652,245,0 +170741396701,244,0 +170741396749,245,0 +170741396797,245,0 +170741396847,245,0 +170741396895,245,0 +170741396944,245,0 +170741396992,245,0 +170741397040,245,0 +170741397090,245,0 +170741397138,245,0 +170741397185,245,0 +170741397233,245,0 +170741397283,245,0 +170741397331,245,0 +170741397379,245,0 +170741397427,245,0 +170741397476,245,0 +170741397524,245,0 +170741397574,245,0 +170741397622,245,0 +170741397671,245,0 +170741397719,245,0 +170741397767,245,0 +170741397817,245,0 +170741397865,245,0 +170741397914,244,0 +170741397962,245,0 +170741398010,245,0 +170741398058,245,0 +170741398107,244,0 +170741398155,245,0 +170741398205,245,0 +170741398253,245,0 +170741398302,245,0 +170741398350,245,0 +170741398398,245,0 +170741398446,245,0 +170741398494,245,0 +170741398544,245,0 +170741398593,245,0 +170741398641,245,0 +170741398691,245,0 +170741398739,244,0 +170741398788,245,0 +170741398836,245,0 +170741398884,245,0 +170741398934,245,0 +170741398982,245,0 +170741399030,245,0 +170741399077,245,0 +170741399125,245,0 +170741399173,245,0 +170741399221,245,0 +170741399269,245,0 +170741399317,245,0 +170741399367,245,0 +170741399415,245,0 +170741399463,245,0 +170741399511,245,0 +170741399559,245,0 +170741399607,245,0 +170741399654,245,0 +170741399702,245,0 +170741399750,245,0 +170741399798,245,0 +170741399846,245,0 +170741399894,244,0 +170741399944,245,0 +170741399993,245,0 +170741400043,245,0 +170741400091,245,0 +170741400139,245,0 +170741400187,245,0 +170741400235,245,0 +170741400283,245,0 +170741400331,245,0 +170741400379,245,0 +170741400427,245,0 +170741400474,245,0 +170741400522,245,0 +170741400572,245,0 +170741400620,245,0 +170741400668,245,0 +170741400717,245,0 +170741400767,245,0 +170741400815,245,0 +170741400863,245,0 +170741400910,245,0 +170741400960,245,0 +170741401008,245,0 +170741401056,245,0 +170741401104,245,0 +170741401152,245,0 +170741401199,245,0 +170741401247,245,0 +170741401295,245,0 +170741401343,245,0 +170741401391,245,0 +170741401439,245,0 +170741401487,245,0 +170741401535,245,0 +170741401582,245,0 +170741401630,245,0 +170741401678,245,0 +170741401726,244,0 +170741401774,245,0 +170741401822,245,0 +170741401870,244,0 +170741401918,245,0 +170741401965,245,0 +170741402013,245,0 +170741402061,245,0 +170741402111,245,0 +170741402159,245,0 +170741402208,245,0 +170741402256,245,0 +170741402304,245,0 +170741402353,245,0 +170741402401,245,0 +170741402449,245,0 +170741402497,245,0 +170741402545,245,0 +170741402593,245,0 +170741402642,245,0 +170741402692,245,0 +170741402740,245,0 +170741402789,244,0 +170741402837,245,0 +170741402885,245,0 +170741402933,245,0 +170741402980,245,0 +170741403030,245,0 +170741403078,245,0 +170741403126,245,0 +170741403174,245,0 +170741403222,245,0 +170741403269,245,0 +170741403317,245,0 +170741403365,245,0 +170741403413,245,0 +170741403461,245,0 +170741403509,245,0 +170741403557,245,0 +170741403605,245,0 +170741403653,245,0 +170741403700,245,0 +170741403748,245,0 +170741403796,245,0 +170741403844,245,0 +170741403892,244,0 +170741403940,245,0 +170741403988,245,0 +170741404036,245,0 +170741404085,245,0 +170741404133,244,0 +170741404183,245,0 +170741404231,244,0 +170741404280,245,0 +170741404330,245,0 +170741404379,245,0 +170741404429,245,0 +170741404477,245,0 +170741404526,245,0 +170741404576,245,0 +170741404624,245,0 +170741404672,245,0 +170741404720,244,0 +170741404768,245,0 +170741404817,245,0 +170741404865,245,0 +170741404913,245,0 +170741404961,245,0 +170741405010,245,0 +170741405060,245,0 +170741405108,245,0 +170741405157,245,0 +170741405205,245,0 +170741405253,245,0 +170741405301,245,0 +170741405349,245,0 +170741405399,245,0 +170741405447,245,0 +170741405495,244,0 +170741405543,245,0 +170741405590,245,0 +170741405638,245,0 +170741405688,245,0 +170741405737,245,0 +170741405785,245,0 +170741405835,245,0 +170741405883,245,0 +170741405931,245,0 +170741405979,245,0 +170741406028,245,0 +170741406078,245,0 +170741406126,245,0 +170741406174,245,0 +170741406222,245,0 +170741406270,245,0 +170741406318,245,0 +170741406366,245,0 +170741406414,245,0 +170741406463,244,0 +170741406511,245,0 +170741406559,245,0 +170741406609,245,0 +170741406658,245,0 +170741406708,245,0 +170741406756,245,0 +170741406804,245,0 +170741406852,245,0 +170741406901,245,0 +170741406949,245,0 +170741406998,245,0 +170741407048,245,0 +170741407098,245,0 +170741407147,245,0 +170741407195,245,0 +170741407245,245,0 +170741407294,245,0 +170741407343,245,0 +170741407391,245,0 +170741407441,245,0 +170741407490,245,0 +170741407538,245,0 +170741407588,245,0 +170741407636,245,0 +170741407684,245,0 +170741407732,245,0 +170741407780,245,0 +170741407828,245,0 +170741407876,245,0 +170741407924,245,0 +170741407973,245,0 +170741408021,245,0 +170741408070,245,0 +170741408118,245,0 +170741408168,245,0 +170741408217,244,0 +170741408265,245,0 +170741408313,245,0 +170741408363,245,0 +170741408411,245,0 +170741408460,245,0 +170741408508,245,0 +170741408556,245,0 +170741408604,245,0 +170741408653,245,0 +170741408703,245,0 +170741408751,245,0 +170741408799,245,0 +170741408847,245,0 +170741408896,245,0 +170741408946,245,0 +170741408994,245,0 +170741409043,245,0 +170741409091,245,0 +170741409141,245,0 +170741409189,245,0 +170741409238,245,0 +170741409288,245,0 +170741409336,245,0 +170741409385,245,0 +170741409433,245,0 +170741409483,244,0 +170741409532,245,0 +170741409582,245,0 +170741409631,245,0 +170741409679,245,0 +170741409727,245,0 +170741409775,245,0 +170741409825,245,0 +170741409873,244,0 +170741409921,245,0 +170741409968,245,0 +170741410018,245,0 +170741410067,245,0 +170741410115,245,0 +170741410163,245,0 +170741410211,245,0 +170741410259,245,0 +170741410309,245,0 +170741410357,245,0 +170741410406,245,0 +170741410456,245,0 +170741410504,245,0 +170741410552,245,0 +170741410600,245,0 +170741410649,245,0 +170741410697,245,0 +170741410745,245,0 +170741410793,245,0 +170741410841,245,0 +170741410889,245,0 +170741410937,245,0 +170741410985,245,0 +170741411033,245,0 +170741411081,245,0 +170741411130,245,0 +170741411178,245,0 +170741411226,245,0 +170741411274,245,0 +170741411322,245,0 +170741411370,245,0 +170741411418,245,0 +170741411466,245,0 +170741411514,245,0 +170741411562,245,0 +170741411611,245,0 +170741411659,245,0 +170741411707,245,0 +170741411755,245,0 +170741411805,245,0 +170741411854,245,0 +170741411902,245,0 +170741411950,245,0 +170741411998,245,0 +170741412046,245,0 +170741412096,245,0 +170741412144,245,0 +170741412192,245,0 +170741412239,245,0 +170741412287,245,0 +170741412335,245,0 +170741412383,245,0 +170741412431,245,0 +170741412479,245,0 +170741412527,245,0 +170741412574,245,0 +170741412622,245,0 +170741412672,245,0 +170741412720,245,0 +170741412768,245,0 +170741412815,245,0 +170741412865,245,0 +170741412913,245,0 +170741412961,245,0 +170741413009,245,0 +170741413056,245,0 +170741413104,245,0 +170741413152,245,0 +170741413200,245,0 +170741413248,245,0 +170741413296,245,0 +170741413344,245,0 +170741413392,245,0 +170741413440,245,0 +170741413487,245,0 +170741413535,245,0 +170741413583,245,0 +170741413631,245,0 +170741413680,244,0 +170741413728,245,0 +170741413776,245,0 +170741413824,245,0 +170741413872,245,0 +170741413920,245,0 +170741413968,245,0 +170741414016,245,0 +170741414063,245,0 +170741414111,245,0 +170741414159,245,0 +170741414207,245,0 +170741414256,245,0 +170741414304,245,0 +170741414352,245,0 +170741414400,245,0 +170741414448,245,0 +170741414496,245,0 +170741414545,245,0 +170741414593,245,0 +170741414641,245,0 +170741414690,245,0 +170741414738,245,0 +170741414786,245,0 +170741414836,245,0 +170741414884,245,0 +170741414931,245,0 +170741414979,245,0 +170741415027,245,0 +170741415075,244,0 +170741415123,245,0 +170741415171,245,0 +170741415219,245,0 +170741415266,244,0 +170741415314,245,0 +170741415362,245,0 +170741415410,245,0 +170741415460,245,0 +170741415509,245,0 +170741415557,245,0 +170741415607,245,0 +170741415655,245,0 +170741415703,245,0 +170741415751,245,0 +170741415799,245,0 +170741415847,245,0 +170741415896,245,0 +170741415945,245,0 +170741415993,245,0 +170741416041,245,0 +170741416089,245,0 +170741416137,245,0 +170741416185,245,0 +170741416233,245,0 +170741416281,245,0 +170741416329,245,0 +170741416377,245,0 +170741416424,245,0 +170741416472,245,0 +170741416522,245,0 +170741416570,245,0 +170741416618,245,0 +170741416665,245,0 +170741416713,245,0 +170741416761,245,0 +170741416809,245,0 +170741416857,245,0 +170741416905,245,0 +170741416953,245,0 +170741417001,245,0 +170741417049,245,0 +170741417098,245,0 +170741417146,245,0 +170741417194,245,0 +170741417242,245,0 +170741417290,245,0 +170741417337,245,0 +170741417385,245,0 +170741417433,245,0 +170741417481,245,0 +170741417529,245,0 +170741417577,245,0 +170741417625,245,0 +170741417673,245,0 +170741417721,244,0 +170741417769,245,0 +170741417818,245,0 +170741417866,245,0 +170741417914,245,0 +170741417964,245,0 +170741418012,245,0 +170741418061,245,0 +170741418109,245,0 +170741418159,245,0 +170741418207,245,0 +170741418254,245,0 +170741418302,245,0 +170741418350,245,0 +170741418400,245,0 +170741418448,245,0 +170741418497,245,0 +170741418545,245,0 +170741418593,245,0 +170741418643,245,0 +170741418691,245,0 +170741418740,245,0 +170741418788,245,0 +170741418836,245,0 +170741418884,245,0 +170741418934,245,0 +170741418981,245,0 +170741419029,245,0 +170741419077,245,0 +170741419127,245,0 +170741419175,245,0 +170741419224,245,0 +170741419272,245,0 +170741419321,245,0 +170741419369,245,0 +170741419417,245,0 +170741419465,245,0 +170741419513,245,0 +170741419561,245,0 +170741419609,245,0 +170741419656,245,0 +170741419704,245,0 +170741419754,245,0 +170741419802,245,0 +170741419849,245,0 +170741419897,245,0 +170741419945,245,0 +170741419993,245,0 +170741420043,245,0 +170741420091,245,0 +170741420140,245,0 +170741420190,245,0 +170741420238,245,0 +170741420286,245,0 +170741420333,245,0 +170741420383,245,0 +170741420433,245,0 +170741420482,245,0 +170741420532,245,0 +170741420579,244,0 +170741420629,245,0 +170741420677,245,0 +170741420727,245,0 +170741420776,245,0 +170741420824,245,0 +170741420873,245,0 +170741420923,245,0 +170741420971,245,0 +170741421019,245,0 +170741421068,245,0 +170741421116,245,0 +170741421166,245,0 +170741421215,245,0 +170741421263,245,0 +170741421313,245,0 +170741421361,245,0 +170741421410,245,0 +170741421458,245,0 +170741421508,245,0 +170741421556,245,0 +170741421604,245,0 +170741421652,245,0 +170741421701,245,0 +170741421751,245,0 +170741421799,245,0 +170741421848,245,0 +170741421896,245,0 +170741421944,245,0 +170741421992,245,0 +170741422040,245,0 +170741422088,245,0 +170741422138,245,0 +170741422186,245,0 +170741422234,245,0 +170741422281,245,0 +170741422329,245,0 +170741422379,245,0 +170741422428,245,0 +170741422478,245,0 +170741422527,245,0 +170741422575,245,0 +170741422625,245,0 +170741422673,245,0 +170741422721,245,0 +170741422769,245,0 +170741422816,245,0 +170741422864,245,0 +170741422912,245,0 +170741422960,245,0 +170741423008,245,0 +170741423056,245,0 +170741423104,245,0 +170741423153,245,0 +170741423203,245,0 +170741423251,245,0 +170741423299,245,0 +170741423348,245,0 +170741423396,245,0 +170741423444,245,0 +170741423492,245,0 +170741423542,245,0 +170741423590,245,0 +170741423638,245,0 +170741423687,245,0 +170741423737,245,0 +170741423784,245,0 +170741423834,245,0 +170741423882,245,0 +170741423930,245,0 +170741423978,245,0 +170741424026,245,0 +170741424074,245,0 +170741424123,245,0 +170741424171,245,0 +170741424219,245,0 +170741424269,245,0 +170741424317,245,0 +170741424365,245,0 +170741424414,245,0 +170741424464,245,0 +170741424512,245,0 +170741424560,245,0 +170741424608,245,0 +170741424657,245,0 +170741424707,245,0 +170741424755,245,0 +170741424804,245,0 +170741424852,245,0 +170741424900,245,0 +170741424948,245,0 +170741424998,245,0 +170741425046,245,0 +170741425093,245,0 +170741425143,245,0 +170741425192,245,0 +170741425240,245,0 +170741425288,245,0 +170741425338,245,0 +170741425386,245,0 +170741425435,245,0 +170741425483,245,0 +170741425531,245,0 +170741425579,245,0 +170741425627,245,0 +170741425675,245,0 +170741425723,245,0 +170741425771,246,0 +170741425818,245,0 +170741425866,245,0 +170741425914,245,0 +170741425962,245,0 +170741426010,245,0 +170741426058,245,0 +170741426107,245,0 +170741426155,245,0 +170741426203,245,0 +170741426251,245,0 +170741426299,245,0 +170741426348,245,0 +170741426396,245,0 +170741426444,245,0 +170741426494,245,0 +170741426542,245,0 +170741426589,245,0 +170741426637,245,0 +170741426685,244,0 +170741426733,245,0 +170741426781,245,0 +170741426829,245,0 +170741426879,245,0 +170741426928,245,0 +170741426978,245,0 +170741427026,245,0 +170741427075,245,0 +170741427125,245,0 +170741427174,245,0 +170741427222,245,0 +170741427270,245,0 +170741427319,245,0 +170741427367,245,0 +170741427415,245,0 +170741427465,245,0 +170741427514,245,0 +170741427562,245,0 +170741427610,245,0 +170741427658,245,0 +170741427706,245,0 +170741427754,245,0 +170741427803,245,0 +170741427851,245,0 +170741427901,245,0 +170741427950,245,0 +170741427998,245,0 +170741428046,245,0 +170741428096,245,0 +170741428145,245,0 +170741428193,245,0 +170741428241,245,0 +170741428289,245,0 +170741428337,245,0 +170741428385,245,0 +170741428435,245,0 +170741428482,245,0 +170741428532,245,0 +170741428580,245,0 +170741428628,245,0 +170741428678,245,0 +170741428725,245,0 +170741428775,245,0 +170741428823,245,0 +170741428871,245,0 +170741428919,245,0 +170741428967,245,0 +170741429015,245,0 +170741429063,245,0 +170741429112,245,0 +170741429160,245,0 +170741429208,245,0 +170741429256,245,0 +170741429304,245,0 +170741429352,245,0 +170741429400,245,0 +170741429450,245,0 +170741429498,245,0 +170741429547,245,0 +170741429597,245,0 +170741429645,245,0 +170741429693,245,0 +170741429741,245,0 +170741429789,245,0 +170741429837,245,0 +170741429885,245,0 +170741429932,245,0 +170741429980,245,0 +170741430030,245,0 +170741430078,245,0 +170741430128,245,0 +170741430176,245,0 +170741430224,245,0 +170741430272,245,0 +170741430320,245,0 +170741430369,245,0 +170741430417,245,0 +170741430465,245,0 +170741430515,245,0 +170741430564,244,0 +170741430612,245,0 +170741430662,244,0 +170741430710,245,0 +170741430757,245,0 +170741430805,245,0 +170741430853,245,0 +170741430903,245,0 +170741430951,245,0 +170741430999,245,0 +170741431048,245,0 +170741431098,245,0 +170741431146,245,0 +170741431194,245,0 +170741431242,245,0 +170741431291,245,0 +170741431339,245,0 +170741431389,245,0 +170741431438,244,0 +170741431488,245,0 +170741431536,244,0 +170741431583,245,0 +170741431631,245,0 +170741431679,245,0 +170741431727,245,0 +170741431775,245,0 +170741431823,245,0 +170741431871,245,0 +170741431919,245,0 +170741431966,245,0 +170741432014,245,0 +170741432062,245,0 +170741432110,245,0 +170741432158,245,0 +170741432206,245,0 +170741432255,245,0 +170741432303,245,0 +170741432351,245,0 +170741432399,245,0 +170741432447,245,0 +170741432495,245,0 +170741432543,245,0 +170741432591,245,0 +170741432638,245,0 +170741432686,244,0 +170741432734,245,0 +170741432782,245,0 +170741432830,245,0 +170741432878,245,0 +170741432926,245,0 +170741432974,245,0 +170741433021,245,0 +170741433069,245,0 +170741433117,245,0 +170741433165,245,0 +170741433213,245,0 +170741433261,244,0 +170741433309,245,0 +170741433357,245,0 +170741433405,245,0 +170741433452,245,0 +170741433500,245,0 +170741433548,245,0 +170741433596,245,0 +170741433644,245,0 +170741433692,245,0 +170741433741,245,0 +170741433789,245,0 +170741433837,245,0 +170741433885,245,0 +170741433935,245,0 +170741433984,245,0 +170741434032,245,0 +170741434080,245,0 +170741434130,245,0 +170741434179,245,0 +170741434229,245,0 +170741434278,245,0 +170741434328,245,0 +170741434376,245,0 +170741434424,245,0 +170741434472,245,0 +170741434521,244,0 +170741434571,245,0 +170741434620,245,0 +170741434670,245,0 +170741434718,245,0 +170741434767,245,0 +170741434815,245,0 +170741434865,245,0 +170741434913,245,0 +170741434961,245,0 +170741435009,245,0 +170741435057,245,0 +170741435106,245,0 +170741435154,245,0 +170741435204,245,0 +170741435252,245,0 +170741435300,245,0 +170741435347,245,0 +170741435395,245,0 +170741435443,245,0 +170741435493,245,0 +170741435541,245,0 +170741435589,245,0 +170741435637,245,0 +170741435686,245,0 +170741435734,245,0 +170741435782,245,0 +170741435832,245,0 +170741435880,245,0 +170741435929,245,0 +170741435977,245,0 +170741436026,245,0 +170741436074,245,0 +170741436122,245,0 +170741436172,245,0 +170741436220,245,0 +170741436267,245,0 +170741436317,245,0 +170741436365,245,0 +170741436413,245,0 +170741436460,245,0 +170741436508,245,0 +170741436556,245,0 +170741436605,245,0 +170741436653,245,0 +170741436701,245,0 +170741436749,245,0 +170741436799,245,0 +170741436846,245,0 +170741436894,245,0 +170741436942,245,0 +170741436990,245,0 +170741437038,245,0 +170741437086,245,0 +170741437134,245,0 +170741437182,245,0 +170741437230,245,0 +170741437278,245,0 +170741437326,245,0 +170741437374,245,0 +170741437421,245,0 +170741437469,245,0 +170741437517,245,0 +170741437565,245,0 +170741437613,245,0 +170741437661,245,0 +170741437709,245,0 +170741437757,245,0 +170741437806,244,0 +170741437854,245,0 +170741437902,245,0 +170741437950,245,0 +170741437998,245,0 +170741438046,245,0 +170741438093,245,0 +170741438141,245,0 +170741438189,245,0 +170741438237,245,0 +170741438285,245,0 +170741438333,245,0 +170741438381,245,0 +170741438429,245,0 +170741438477,245,0 +170741438526,245,0 +170741438574,245,0 +170741438622,245,0 +170741438670,245,0 +170741438719,245,0 +170741438769,245,0 +170741438817,245,0 +170741438865,245,0 +170741438913,245,0 +170741438961,245,0 +170741439008,245,0 +170741439058,245,0 +170741439106,245,0 +170741439155,245,0 +170741439205,245,0 +170741439253,244,0 +170741439301,245,0 +170741439349,245,0 +170741439397,245,0 +170741439445,245,0 +170741439494,245,0 +170741439542,245,0 +170741439590,245,0 +170741439638,245,0 +170741439686,245,0 +170741439734,245,0 +170741439782,245,0 +170741439830,245,0 +170741439878,245,0 +170741439926,245,0 +170741439974,245,0 +170741440022,245,0 +170741440070,245,0 +170741440119,245,0 +170741440167,244,0 +170741440215,245,0 +170741440263,245,0 +170741440313,245,0 +170741440361,245,0 +170741440409,245,0 +170741440457,245,0 +170741440505,245,0 +170741440554,245,0 +170741440604,245,0 +170741440653,245,0 +170741440701,245,0 +170741440749,245,0 +170741440797,245,0 +170741440845,245,0 +170741440895,245,0 +170741440944,245,0 +170741440992,245,0 +170741441040,245,0 +170741441090,245,0 +170741441138,245,0 +170741441185,245,0 +170741441235,245,0 +170741441283,245,0 +170741441331,245,0 +170741441379,245,0 +170741441427,245,0 +170741441476,245,0 +170741441524,245,0 +170741441572,245,0 +170741441622,245,0 +170741441670,245,0 +170741441718,245,0 +170741441766,245,0 +170741441815,245,0 +170741441865,245,0 +170741441913,245,0 +170741441962,245,0 +170741442012,245,0 +170741442060,245,0 +170741442109,245,0 +170741442157,245,0 +170741442205,245,0 +170741442253,245,0 +170741442303,244,0 +170741442350,245,0 +170741442398,245,0 +170741442446,245,0 +170741442496,245,0 +170741442545,245,0 +170741442593,245,0 +170741442643,245,0 +170741442692,245,0 +170741442740,245,0 +170741442790,245,0 +170741442838,245,0 +170741442886,245,0 +170741442934,245,0 +170741442982,245,0 +170741443030,245,0 +170741443078,245,0 +170741443127,245,0 +170741443175,245,0 +170741443225,245,0 +170741443273,245,0 +170741443320,245,0 +170741443368,245,0 +170741443418,245,0 +170741443466,245,0 +170741443514,245,0 +170741443563,245,0 +170741443613,245,0 +170741443662,245,0 +170741443712,245,0 +170741443761,245,0 +170741443809,245,0 +170741443857,245,0 +170741443905,245,0 +170741443953,245,0 +170741444001,245,0 +170741444049,245,0 +170741444097,245,0 +170741444145,245,0 +170741444193,245,0 +170741444241,245,0 +170741444290,245,0 +170741444338,245,0 +170741444386,245,0 +170741444434,245,0 +170741444484,245,0 +170741444533,245,0 +170741444583,245,0 +170741444632,245,0 +170741444682,245,0 +170741444730,245,0 +170741444779,245,0 +170741444829,245,0 +170741444877,245,0 +170741444925,245,0 +170741444973,245,0 +170741445022,245,0 +170741445070,245,0 +170741445118,245,0 +170741445167,245,0 +170741445215,245,0 +170741445263,245,0 +170741445311,245,0 +170741445359,244,0 +170741445407,245,0 +170741445455,245,0 +170741445503,245,0 +170741445551,245,0 +170741445599,245,0 +170741445648,245,0 +170741445696,245,0 +170741445744,245,0 +170741445792,245,0 +170741445842,245,0 +170741445890,245,0 +170741445939,245,0 +170741445987,245,0 +170741446035,245,0 +170741446083,245,0 +170741446131,245,0 +170741446179,245,0 +170741446227,245,0 +170741446275,245,0 +170741446323,245,0 +170741446372,245,0 +170741446420,245,0 +170741446468,245,0 +170741446517,245,0 +170741446565,245,0 +170741446613,245,0 +170741446661,245,0 +170741446709,245,0 +170741446757,245,0 +170741446805,245,0 +170741446853,245,0 +170741446900,245,0 +170741446948,245,0 +170741446996,245,0 +170741447046,245,0 +170741447094,245,0 +170741447143,245,0 +170741447191,245,0 +170741447239,245,0 +170741447287,245,0 +170741447335,245,0 +170741447383,245,0 +170741447433,245,0 +170741447480,245,0 +170741447530,245,0 +170741447580,245,0 +170741447629,245,0 +170741447677,245,0 +170741447726,245,0 +170741447774,245,0 +170741447824,245,0 +170741447873,245,0 +170741447923,245,0 +170741447971,245,0 +170741448019,245,0 +170741448068,245,0 +170741448116,245,0 +170741448164,245,0 +170741448212,245,0 +170741448262,245,0 +170741448310,245,0 +170741448358,245,0 +170741448406,245,0 +170741448453,245,0 +170741448503,245,0 +170741448551,245,0 +170741448599,245,0 +170741448647,245,0 +170741448696,245,0 +170741448744,245,0 +170741448794,245,0 +170741448843,245,0 +170741448891,245,0 +170741448939,245,0 +170741448987,245,0 +170741449035,245,0 +170741449083,245,0 +170741449133,245,0 +170741449181,245,0 +170741449229,245,0 +170741449277,244,0 +170741449324,245,0 +170741449372,245,0 +170741449422,245,0 +170741449470,245,0 +170741449518,245,0 +170741449566,245,0 +170741449614,245,0 +170741449663,245,0 +170741449711,245,0 +170741449761,245,0 +170741449809,245,0 +170741449857,245,0 +170741449906,245,0 +170741449954,245,0 +170741450004,245,0 +170741450052,245,0 +170741450100,245,0 +170741450149,245,0 +170741450199,245,0 +170741450248,245,0 +170741450296,245,0 +170741450344,245,0 +170741450392,245,0 +170741450440,245,0 +170741450488,245,0 +170741450537,245,0 +170741450587,245,0 +170741450635,245,0 +170741450683,245,0 +170741450731,245,0 +170741450780,245,0 +170741450830,244,0 +170741450879,245,0 +170741450927,245,0 +170741450975,245,0 +170741451023,245,0 +170741451071,245,0 +170741451119,245,0 +170741451168,245,0 +170741451216,245,0 +170741451264,245,0 +170741451314,245,0 +170741451362,245,0 +170741451410,245,0 +170741451459,245,0 +170741451507,245,0 +170741451557,245,0 +170741451605,245,0 +170741451654,245,0 +170741451702,245,0 +170741451750,245,0 +170741451798,245,0 +170741451846,245,0 +170741451894,245,0 +170741451941,245,0 +170741451989,245,0 +170741452037,245,0 +170741452085,245,0 +170741452133,245,0 +170741452181,245,0 +170741452229,245,0 +170741452277,245,0 +170741452326,245,0 +170741452374,245,0 +170741452422,245,0 +170741452470,245,0 +170741452518,245,0 +170741452566,245,0 +170741452614,245,0 +170741452662,245,0 +170741452709,245,0 +170741452759,245,0 +170741452807,245,0 +170741452855,245,0 +170741452903,245,0 +170741452952,245,0 +170741453000,245,0 +170741453048,245,0 +170741453097,245,0 +170741453145,245,0 +170741453193,245,0 +170741453241,245,0 +170741453289,245,0 +170741453337,245,0 +170741453386,245,0 +170741453434,245,0 +170741453482,245,0 +170741453530,245,0 +170741453578,245,0 +170741453625,245,0 +170741453673,245,0 +170741453721,245,0 +170741453769,245,0 +170741453817,245,0 +170741453865,245,0 +170741453913,245,0 +170741453961,245,0 +170741454009,245,0 +170741454056,245,0 +170741454104,245,0 +170741454152,245,0 +170741454200,245,0 +170741454248,245,0 +170741454296,245,0 +170741454344,245,0 +170741454392,245,0 +170741454440,245,0 +170741454487,245,0 +170741454535,245,0 +170741454583,245,0 +170741454633,245,0 +170741454682,245,0 +170741454730,245,0 +170741454778,245,0 +170741454826,245,0 +170741454874,245,0 +170741454923,245,0 +170741454971,245,0 +170741455019,245,0 +170741455067,245,0 +170741455116,245,0 +170741455164,245,0 +170741455212,245,0 +170741455260,244,0 +170741455308,245,0 +170741455356,245,0 +170741455403,245,0 +170741455451,245,0 +170741455499,245,0 +170741455547,245,0 +170741455595,245,0 +170741455643,245,0 +170741455691,245,0 +170741455739,245,0 +170741455787,245,0 +170741455834,245,0 +170741455882,245,0 +170741455930,245,0 +170741455978,245,0 +170741456026,245,0 +170741456075,245,0 +170741456123,245,0 +170741456171,245,0 +170741456221,245,0 +170741456270,245,0 +170741456318,245,0 +170741456366,245,0 +170741456414,245,0 +170741456462,245,0 +170741456510,245,0 +170741456559,245,0 +170741456607,245,0 +170741456655,245,0 +170741456703,245,0 +170741456751,245,0 +170741456799,245,0 +170741456847,245,0 +170741456895,245,0 +170741456944,245,0 +170741456992,245,0 +170741457042,245,0 +170741457090,245,0 +170741457139,245,0 +170741457187,245,0 +170741457235,245,0 +170741457283,245,0 +170741457332,245,0 +170741457380,245,0 +170741457428,245,0 +170741457478,245,0 +170741457526,245,0 +170741457574,245,0 +170741457622,245,0 +170741457670,245,0 +170741457718,245,0 +170741457767,245,0 +170741457817,245,0 +170741457865,245,0 +170741457913,245,0 +170741457961,245,0 +170741458010,245,0 +170741458058,245,0 +170741458108,245,0 +170741458156,245,0 +170741458205,245,0 +170741458253,245,0 +170741458301,245,0 +170741458351,245,0 +170741458400,245,0 +170741458448,245,0 +170741458498,245,0 +170741458546,245,0 +170741458595,245,0 +170741458645,245,0 +170741458693,245,0 +170741458741,245,0 +170741458789,245,0 +170741458838,245,0 +170741458888,245,0 +170741458937,245,0 +170741458987,245,0 +170741459035,245,0 +170741459083,245,0 +170741459131,245,0 +170741459179,245,0 +170741459227,245,0 +170741459275,245,0 +170741459324,245,0 +170741459372,245,0 +170741459420,245,0 +170741459469,245,0 +170741459517,245,0 +170741459565,245,0 +170741459613,245,0 +170741459661,245,0 +170741459709,245,0 +170741459759,245,0 +170741459808,245,0 +170741459858,245,0 +170741459906,245,0 +170741459955,245,0 +170741460005,245,0 +170741460053,245,0 +170741460102,245,0 +170741460150,245,0 +170741460198,244,0 +170741460248,245,0 +170741460296,245,0 +170741460344,245,0 +170741460392,245,0 +170741460440,245,0 +170741460487,245,0 +170741460535,245,0 +170741460583,245,0 +170741460631,245,0 +170741460679,245,0 +170741460727,245,0 +170741460775,245,0 +170741460825,245,0 +170741460874,245,0 +170741460924,245,0 +170741460973,245,0 +170741461023,245,0 +170741461071,245,0 +170741461119,245,0 +170741461167,245,0 +170741461215,245,0 +170741461263,245,0 +170741461311,245,0 +170741461359,245,0 +170741461408,245,0 +170741461456,245,0 +170741461504,245,0 +170741461552,245,0 +170741461602,245,0 +170741461650,245,0 +170741461698,245,0 +170741461747,245,0 +170741461797,245,0 +170741461845,245,0 +170741461893,245,0 +170741461941,244,0 +170741461989,245,0 +170741462036,245,0 +170741462084,245,0 +170741462132,245,0 +170741462182,245,0 +170741462230,245,0 +170741462278,245,0 +170741462326,245,0 +170741462375,245,0 +170741462423,245,0 +170741462471,245,0 +170741462521,245,0 +170741462569,245,0 +170741462618,245,0 +170741462666,245,0 +170741462714,245,0 +170741462764,245,0 +170741462813,245,0 +170741462863,245,0 +170741462912,245,0 +170741462962,245,0 +170741463011,245,0 +170741463059,245,0 +170741463109,245,0 +170741463157,245,0 +170741463206,245,0 +170741463254,245,0 +170741463302,245,0 +170741463350,245,0 +170741463400,245,0 +170741463448,245,0 +170741463496,245,0 +170741463544,245,0 +170741463592,245,0 +170741463640,245,0 +170741463689,244,0 +170741463739,245,0 +170741463787,245,0 +170741463836,245,0 +170741463886,245,0 +170741463934,245,0 +170741463982,245,0 +170741464031,245,0 +170741464081,245,0 +170741464129,245,0 +170741464178,245,0 +170741464226,245,0 +170741464276,245,0 +170741464324,245,0 +170741464372,245,0 +170741464420,245,0 +170741464468,245,0 +170741464515,245,0 +170741464565,245,0 +170741464613,245,0 +170741464661,245,0 +170741464711,245,0 +170741464758,245,0 +170741464808,245,0 +170741464856,245,0 +170741464904,245,0 +170741464952,245,0 +170741465000,245,0 +170741465048,245,0 +170741465097,245,0 +170741465145,245,0 +170741465195,245,0 +170741465243,245,0 +170741465291,245,0 +170741465340,245,0 +170741465390,245,0 +170741465439,245,0 +170741465487,245,0 +170741465537,245,0 +170741465586,245,0 +170741465634,245,0 +170741465684,245,0 +170741465733,245,0 +170741465781,245,0 +170741465829,245,0 +170741465877,245,0 +170741465927,245,0 +170741465976,245,0 +170741466026,245,0 +170741466074,245,0 +170741466122,245,0 +170741466171,245,0 +170741466220,245,0 +170741466268,245,0 +170741466316,245,0 +170741466364,245,0 +170741466412,245,0 +170741466460,245,0 +170741466510,245,0 +170741466558,245,0 +170741466606,245,0 +170741466655,245,0 +170741466703,245,0 +170741466753,245,0 +170741466802,245,0 +170741466852,245,0 +170741466901,245,0 +170741466949,245,0 +170741466997,245,0 +170741467045,245,0 +170741467093,245,0 +170741467141,245,0 +170741467189,245,0 +170741467237,245,0 +170741467285,245,0 +170741467333,245,0 +170741467381,245,0 +170741467430,245,0 +170741467478,245,0 +170741467528,245,0 +170741467576,245,0 +170741467625,245,0 +170741467675,244,0 +170741467723,245,0 +170741467772,245,0 +170741467820,245,0 +170741467870,245,0 +170741467918,245,0 +170741467966,245,0 +170741468014,245,0 +170741468062,245,0 +170741468110,245,0 +170741468159,245,0 +170741468207,245,0 +170741468255,245,0 +170741468303,245,0 +170741468353,245,0 +170741468401,245,0 +170741468450,244,0 +170741468498,245,0 +170741468546,245,0 +170741468596,245,0 +170741468645,245,0 +170741468695,245,0 +170741468743,245,0 +170741468791,244,0 +170741468839,245,0 +170741468887,245,0 +170741468936,245,0 +170741468984,245,0 +170741469032,245,0 +170741469080,245,0 +170741469128,245,0 +170741469177,245,0 +170741469225,245,0 +170741469273,245,0 +170741469323,245,0 +170741469372,245,0 +170741469420,245,0 +170741469468,245,0 +170741469516,245,0 +170741469564,245,0 +170741469612,245,0 +170741469660,245,0 +170741469708,245,0 +170741469756,245,0 +170741469804,245,0 +170741469852,245,0 +170741469900,245,0 +170741469950,245,0 +170741469998,245,0 +170741470046,245,0 +170741470093,244,0 +170741470143,244,0 +170741470192,245,0 +170741470240,245,0 +170741470288,244,0 +170741470336,245,0 +170741470384,245,0 +170741470434,245,0 +170741470482,245,0 +170741470532,245,0 +170741470579,245,0 +170741470627,245,0 +170741470677,245,0 +170741470725,245,0 +170741470772,245,0 +170741470820,245,0 +170741470868,245,0 +170741470916,245,0 +170741470966,245,0 +170741471013,245,0 +170741471061,245,0 +170741471109,244,0 +170741471157,245,0 +170741471205,245,0 +170741471255,245,0 +170741471304,245,0 +170741471352,245,0 +170741471400,245,0 +170741471448,244,0 +170741471496,245,0 +170741471544,245,0 +170741471592,245,0 +170741471640,245,0 +170741471688,245,0 +170741471738,245,0 +170741471787,245,0 +170741471835,245,0 +170741471885,245,0 +170741471934,244,0 +170741471982,245,0 +170741472030,245,0 +170741472078,245,0 +170741472127,245,0 +170741472177,245,0 +170741472225,245,0 +170741472273,245,0 +170741472321,245,0 +170741472369,245,0 +170741472417,245,0 +170741472465,245,0 +170741472513,245,0 +170741472561,245,0 +170741472609,245,0 +170741472657,245,0 +170741472706,245,0 +170741472754,245,0 +170741472804,245,0 +170741472852,245,0 +170741472900,245,0 +170741472948,245,0 +170741472996,245,0 +170741473044,245,0 +170741473091,245,0 +170741473141,245,0 +170741473189,245,0 +170741473238,245,0 +170741473288,245,0 +170741473337,245,0 +170741473387,245,0 +170741473435,245,0 +170741473483,245,0 +170741473531,245,0 +170741473579,245,0 +170741473627,245,0 +170741473675,245,0 +170741473724,245,0 +170741473774,244,0 +170741473822,245,0 +170741473871,245,0 +170741473921,244,0 +170741473969,245,0 +170741474018,245,0 +170741474068,245,0 +170741474116,245,0 +170741474165,245,0 +170741474213,245,0 +170741474261,245,0 +170741474309,245,0 +170741474357,245,0 +170741474407,245,0 +170741474455,245,0 +170741474504,245,0 +170741474552,245,0 +170741474602,245,0 +170741474650,245,0 +170741474699,245,0 +170741474747,245,0 +170741474797,245,0 +170741474845,245,0 +170741474893,245,0 +170741474941,245,0 +170741474988,245,0 +170741475036,245,0 +170741475084,245,0 +170741475132,245,0 +170741475180,245,0 +170741475228,245,0 +170741475278,245,0 +170741475326,245,0 +170741475374,245,0 +170741475422,245,0 +170741475471,245,0 +170741475519,245,0 +170741475569,245,0 +170741475617,245,0 +170741475666,245,0 +170741475714,245,0 +170741475762,245,0 +170741475810,245,0 +170741475860,245,0 +170741475908,245,0 +170741475956,245,0 +170741476004,245,0 +170741476052,245,0 +170741476100,245,0 +170741476148,245,0 +170741476196,245,0 +170741476244,245,0 +170741476293,245,0 +170741476341,245,0 +170741476391,245,0 +170741476439,245,0 +170741476487,245,0 +170741476534,245,0 +170741476584,245,0 +170741476632,245,0 +170741476680,245,0 +170741476729,245,0 +170741476777,245,0 +170741476825,245,0 +170741476873,245,0 +170741476923,245,0 +170741476971,244,0 +170741477019,245,0 +170741477067,245,0 +170741477116,245,0 +170741477166,245,0 +170741477215,245,0 +170741477263,245,0 +170741477313,245,0 +170741477361,245,0 +170741477409,245,0 +170741477457,245,0 +170741477505,245,0 +170741477552,245,0 +170741477600,245,0 +170741477650,245,0 +170741477698,245,0 +170741477747,244,0 +170741477797,245,0 +170741477847,245,0 +170741477895,245,0 +170741477942,245,0 +170741477992,245,0 +170741478041,245,0 +170741478091,245,0 +170741478141,245,0 +170741478189,245,0 +170741478236,245,0 +170741478284,245,0 +170741478332,245,0 +170741478382,245,0 +170741478430,245,0 +170741478479,245,0 +170741478529,245,0 +170741478577,245,0 +170741478625,245,0 +170741478674,245,0 +170741478722,245,0 +170741478772,245,0 +170741478820,245,0 +170741478869,245,0 +170741478917,245,0 +170741478967,245,0 +170741479015,245,0 +170741479063,245,0 +170741479112,245,0 +170741479162,245,0 +170741479211,245,0 +170741479261,245,0 +170741479309,244,0 +170741479357,245,0 +170741479405,245,0 +170741479454,245,0 +170741479502,244,0 +170741479550,245,0 +170741479598,245,0 +170741479646,245,0 +170741479694,245,0 +170741479744,245,0 +170741479793,245,0 +170741479841,245,0 +170741479889,245,0 +170741479939,245,0 +170741479987,245,0 +170741480034,245,0 +170741480084,245,0 +170741480132,245,0 +170741480181,245,0 +170741480231,245,0 +170741480279,245,0 +170741480327,245,0 +170741480375,245,0 +170741480424,245,0 +170741480472,245,0 +170741480520,245,0 +170741480568,245,0 +170741480616,245,0 +170741480666,245,0 +170741480715,245,0 +170741480763,245,0 +170741480811,245,0 +170741480859,245,0 +170741480907,245,0 +170741480955,245,0 +170741481004,245,0 +170741481052,245,0 +170741481100,244,0 +170741481148,245,0 +170741481196,245,0 +170741481246,245,0 +170741481294,245,0 +170741481342,244,0 +170741481391,245,0 +170741481441,245,0 +170741481490,245,0 +170741481540,245,0 +170741481588,245,0 +170741481636,245,0 +170741481684,245,0 +170741481732,245,0 +170741481780,245,0 +170741481828,245,0 +170741481877,245,0 +170741481925,245,0 +170741481973,245,0 +170741482021,245,0 +170741482069,244,0 +170741482117,245,0 +170741482165,245,0 +170741482212,245,0 +170741482260,245,0 +170741482308,245,0 +170741482358,245,0 +170741482406,245,0 +170741482453,245,0 +170741482503,245,0 +170741482552,245,0 +170741482600,245,0 +170741482648,245,0 +170741482696,245,0 +170741482744,245,0 +170741482792,245,0 +170741482840,245,0 +170741482890,245,0 +170741482938,245,0 +170741482987,245,0 +170741483037,245,0 +170741483085,245,0 +170741483133,245,0 +170741483181,245,0 +170741483229,245,0 +170741483278,245,0 +170741483326,245,0 +170741483374,245,0 +170741483422,245,0 +170741483470,245,0 +170741483519,245,0 +170741483567,245,0 +170741483615,245,0 +170741483663,245,0 +170741483711,245,0 +170741483758,244,0 +170741483806,245,0 +170741483854,245,0 +170741483902,244,0 +170741483950,245,0 +170741483998,245,0 +170741484047,245,0 +170741484095,245,0 +170741484145,245,0 +170741484193,245,0 +170741484240,245,0 +170741484288,245,0 +170741484336,245,0 +170741484384,245,0 +170741484434,245,0 +170741484482,245,0 +170741484530,245,0 +170741484577,245,0 +170741484625,245,0 +170741484673,245,0 +170741484721,245,0 +170741484771,245,0 +170741484819,245,0 +170741484867,245,0 +170741484916,245,0 +170741484964,245,0 +170741485012,245,0 +170741485060,245,0 +170741485110,245,0 +170741485158,245,0 +170741485206,245,0 +170741485254,245,0 +170741485302,245,0 +170741485350,245,0 +170741485399,245,0 +170741485447,245,0 +170741485495,245,0 +170741485543,245,0 +170741485591,245,0 +170741485639,245,0 +170741485687,245,0 +170741485735,245,0 +170741485783,245,0 +170741485831,245,0 +170741485880,245,0 +170741485928,245,0 +170741485976,245,0 +170741486025,245,0 +170741486073,245,0 +170741486121,245,0 +170741486171,245,0 +170741486220,245,0 +170741486268,245,0 +170741486318,245,0 +170741486367,245,0 +170741486415,245,0 +170741486463,245,0 +170741486513,245,0 +170741486561,245,0 +170741486609,245,0 +170741486658,245,0 +170741486708,245,0 +170741486756,245,0 +170741486804,245,0 +170741486852,245,0 +170741486900,245,0 +170741486948,244,0 +170741486996,245,0 +170741487044,245,0 +170741487091,245,0 +170741487139,245,0 +170741487187,245,0 +170741487235,245,0 +170741487283,244,0 +170741487332,245,0 +170741487380,245,0 +170741487430,245,0 +170741487478,245,0 +170741487525,245,0 +170741487573,245,0 +170741487621,245,0 +170741487669,245,0 +170741487717,245,0 +170741487765,245,0 +170741487813,245,0 +170741487861,245,0 +170741487909,245,0 +170741487958,245,0 +170741488006,245,0 +170741488056,244,0 +170741488104,245,0 +170741488152,245,0 +170741488200,245,0 +170741488249,245,0 +170741488297,245,0 +170741488345,245,0 +170741488393,245,0 +170741488441,245,0 +170741488489,245,0 +170741488537,245,0 +170741488585,245,0 +170741488633,245,0 +170741488681,245,0 +170741488729,245,0 +170741488777,245,0 +170741488826,245,0 +170741488875,245,0 +170741488922,245,0 +170741488970,245,0 +170741489018,244,0 +170741489066,245,0 +170741489114,244,0 +170741489162,245,0 +170741489210,245,0 +170741489258,244,0 +170741489306,245,0 +170741489354,245,0 +170741489404,245,0 +170741489452,245,0 +170741489499,245,0 +170741489547,245,0 +170741489595,245,0 +170741489645,245,0 +170741489692,245,0 +170741489742,245,0 +170741489790,245,0 +170741489838,244,0 +170741489886,245,0 +170741489933,245,0 +170741489981,245,0 +170741490029,245,0 +170741490077,245,0 +170741490127,245,0 +170741490175,245,0 +170741490223,245,0 +170741490271,245,0 +170741490319,245,0 +170741490367,245,0 +170741490415,245,0 +170741490464,245,0 +170741490512,245,0 +170741490560,245,0 +170741490608,245,0 +170741490656,245,0 +170741490704,245,0 +170741490754,245,0 +170741490803,245,0 +170741490851,244,0 +170741490899,245,0 +170741490947,245,0 +170741490995,245,0 +170741491043,245,0 +170741491091,245,0 +170741491140,245,0 +170741491188,245,0 +170741491236,245,0 +170741491286,245,0 +170741491335,245,0 +170741491385,245,0 +170741491433,245,0 +170741491481,245,0 +170741491529,245,0 +170741491578,245,0 +170741491628,244,0 +170741491677,245,0 +170741491727,245,0 +170741491775,245,0 +170741491823,245,0 +170741491871,245,0 +170741491919,245,0 +170741491968,245,0 +170741492018,245,0 +170741492066,245,0 +170741492115,245,0 +170741492163,245,0 +170741492211,245,0 +170741492261,245,0 +170741492310,245,0 +170741492358,245,0 +170741492408,245,0 +170741492457,245,0 +170741492505,245,0 +170741492553,245,0 +170741492601,245,0 +170741492649,245,0 +170741492697,245,0 +170741492745,245,0 +170741492794,245,0 +170741492842,245,0 +170741492892,245,0 +170741492940,245,0 +170741492989,245,0 +170741493037,245,0 +170741493085,245,0 +170741493135,245,0 +170741493184,245,0 +170741493234,245,0 +170741493282,245,0 +170741493330,244,0 +170741493378,245,0 +170741493426,245,0 +170741493475,244,0 +170741493523,245,0 +170741493573,245,0 +170741493621,245,0 +170741493669,245,0 +170741493717,245,0 +170741493765,245,0 +170741493813,245,0 +170741493861,245,0 +170741493909,245,0 +170741493958,245,0 +170741494006,245,0 +170741494054,245,0 +170741494104,245,0 +170741494153,245,0 +170741494203,245,0 +170741494251,245,0 +170741494300,245,0 +170741494348,245,0 +170741494398,245,0 +170741494447,245,0 +170741494495,245,0 +170741494543,245,0 +170741494593,245,0 +170741494641,245,0 +170741494690,245,0 +170741494738,245,0 +170741494786,245,0 +170741494836,245,0 +170741494885,245,0 +170741494933,245,0 +170741494981,245,0 +170741495029,245,0 +170741495077,245,0 +170741495127,245,0 +170741495175,245,0 +170741495223,245,0 +170741495271,245,0 +170741495319,245,0 +170741495366,245,0 +170741495414,245,0 +170741495464,245,0 +170741495513,245,0 +170741495561,245,0 +170741495609,245,0 +170741495659,245,0 +170741495707,245,0 +170741495755,245,0 +170741495803,245,0 +170741495852,245,0 +170741495902,245,0 +170741495951,245,0 +170741495999,245,0 +170741496047,244,0 +170741496095,245,0 +170741496143,245,0 +170741496191,245,0 +170741496239,245,0 +170741496289,245,0 +170741496338,245,0 +170741496386,245,0 +170741496434,245,0 +170741496484,245,0 +170741496533,245,0 +170741496581,245,0 +170741496629,245,0 +170741496677,245,0 +170741496725,245,0 +170741496773,245,0 +170741496821,245,0 +170741496869,245,0 +170741496917,245,0 +170741496965,245,0 +170741497013,245,0 +170741497061,245,0 +170741497109,245,0 +170741497158,245,0 +170741497208,245,0 +170741497256,245,0 +170741497304,245,0 +170741497352,245,0 +170741497400,245,0 +170741497448,245,0 +170741497496,244,0 +170741497545,245,0 +170741497593,245,0 +170741497641,245,0 +170741497689,244,0 +170741497737,245,0 +170741497786,245,0 +170741497834,245,0 +170741497884,245,0 +170741497933,245,0 +170741497983,245,0 +170741498032,245,0 +170741498080,245,0 +170741498128,245,0 +170741498178,245,0 +170741498226,245,0 +170741498274,245,0 +170741498322,245,0 +170741498370,245,0 +170741498418,245,0 +170741498466,245,0 +170741498514,245,0 +170741498562,245,0 +170741498610,245,0 +170741498659,244,0 +170741498707,245,0 +170741498755,245,0 +170741498803,245,0 +170741498853,245,0 +170741498901,245,0 +170741498950,245,0 +170741498998,245,0 +170741499048,245,0 +170741499097,245,0 +170741499145,245,0 +170741499195,245,0 +170741499243,245,0 +170741499291,245,0 +170741499340,245,0 +170741499390,245,0 +170741499439,245,0 +170741499487,244,0 +170741499535,245,0 +170741499583,245,0 +170741499633,245,0 +170741499681,245,0 +170741499730,245,0 +170741499778,245,0 +170741499826,245,0 +170741499874,245,0 +170741499922,245,0 +170741499971,245,0 +170741500021,244,0 +170741500070,245,0 +170741500118,245,0 +170741500166,245,0 +170741500214,245,0 +170741500264,245,0 +170741500313,245,0 +170741500363,245,0 +170741500411,245,0 +170741500459,245,0 +170741500507,245,0 +170741500556,245,0 +170741500604,244,0 +170741500652,245,0 +170741500702,245,0 +170741500750,245,0 +170741500799,245,0 +170741500849,245,0 +170741500898,245,0 +170741500948,245,0 +170741500996,245,0 +170741501045,245,0 +170741501093,244,0 +170741501143,245,0 +170741501191,245,0 +170741501239,245,0 +170741501287,245,0 +170741501335,244,0 +170741501383,245,0 +170741501432,245,0 +170741501480,245,0 +170741501528,245,0 +170741501576,245,0 +170741501624,245,0 +170741501672,245,0 +170741501720,245,0 +170741501768,245,0 +170741501816,245,0 +170741501864,245,0 +170741501913,245,0 +170741501961,245,0 +170741502009,245,0 +170741502057,245,0 +170741502105,245,0 +170741502155,244,0 +170741502203,245,0 +170741502251,245,0 +170741502300,245,0 +170741502348,245,0 +170741502396,245,0 +170741502444,245,0 +170741502492,245,0 +170741502540,245,0 +170741502590,245,0 +170741502638,245,0 +170741502685,245,0 +170741502735,245,0 +170741502783,245,0 +170741502833,245,0 +170741502881,245,0 +170741502929,245,0 +170741502976,245,0 +170741503026,245,0 +170741503074,245,0 +170741503122,245,0 +170741503170,245,0 +170741503218,245,0 +170741503266,245,0 +170741503316,245,0 +170741503365,245,0 +170741503413,245,0 +170741503461,245,0 +170741503509,245,0 +170741503558,245,0 +170741503606,245,0 +170741503654,245,0 +170741503704,245,0 +170741503752,245,0 +170741503800,245,0 +170741503848,244,0 +170741503896,245,0 +170741503944,245,0 +170741503993,245,0 +170741504043,244,0 +170741504092,245,0 +170741504142,245,0 +170741504191,245,0 +170741504241,245,0 +170741504289,245,0 +170741504337,245,0 +170741504384,244,0 +170741504434,245,0 +170741504483,245,0 +170741504533,245,0 +170741504581,245,0 +170741504629,245,0 +170741504677,245,0 +170741504725,245,0 +170741504773,245,0 +170741504822,245,0 +170741504870,244,0 +170741504918,245,0 +170741504966,245,0 +170741505016,245,0 +170741505065,245,0 +170741505113,245,0 +170741505163,245,0 +170741505211,245,0 +170741505259,245,0 +170741505307,245,0 +170741505356,245,0 +170741505404,245,0 +170741505452,245,0 +170741505502,245,0 +170741505550,245,0 +170741505599,245,0 +170741505647,244,0 +170741505695,245,0 +170741505743,245,0 +170741505791,245,0 +170741505839,245,0 +170741505888,245,0 +170741505938,245,0 +170741505987,245,0 +170741506035,245,0 +170741506083,245,0 +170741506133,245,0 +170741506182,245,0 +170741506232,245,0 +170741506280,245,0 +170741506328,245,0 +170741506376,245,0 +170741506425,245,0 +170741506473,245,0 +170741506521,245,0 +170741506571,245,0 +170741506620,245,0 +170741506668,245,0 +170741506716,245,0 +170741506766,245,0 +170741506814,244,0 +170741506862,245,0 +170741506910,245,0 +170741506958,245,0 +170741507006,245,0 +170741507055,245,0 +170741507105,245,0 +170741507153,245,0 +170741507201,245,0 +170741507250,245,0 +170741507298,245,0 +170741507346,244,0 +170741507394,245,0 +170741507444,245,0 +170741507492,245,0 +170741507540,245,0 +170741507588,245,0 +170741507637,245,0 +170741507687,245,0 +170741507736,245,0 +170741507786,245,0 +170741507834,245,0 +170741507882,245,0 +170741507930,245,0 +170741507977,245,0 +170741508025,245,0 +170741508075,245,0 +170741508123,245,0 +170741508171,245,0 +170741508220,245,0 +170741508270,245,0 +170741508319,245,0 +170741508369,245,0 +170741508418,245,0 +170741508466,245,0 +170741508515,245,0 +170741508564,245,0 +170741508614,245,0 +170741508663,245,0 +170741508713,245,0 +170741508761,245,0 +170741508809,245,0 +170741508857,245,0 +170741508905,245,0 +170741508954,245,0 +170741509004,245,0 +170741509052,245,0 +170741509101,245,0 +170741509151,245,0 +170741509200,245,0 +170741509250,245,0 +170741509299,245,0 +170741509349,245,0 +170741509397,245,0 +170741509445,245,0 +170741509493,245,0 +170741509541,245,0 +170741509588,245,0 +170741509636,245,0 +170741509684,245,0 +170741509732,244,0 +170741509780,245,0 +170741509828,245,0 +170741509876,245,0 +170741509924,245,0 +170741509972,245,0 +170741510020,245,0 +170741510068,245,0 +170741510118,245,0 +170741510166,245,0 +170741510214,245,0 +170741510263,245,0 +170741510311,245,0 +170741510359,245,0 +170741510409,245,0 +170741510456,245,0 +170741510504,245,0 +170741510554,245,0 +170741510602,245,0 +170741510650,245,0 +170741510699,245,0 +170741510749,245,0 +170741510797,245,0 +170741510845,245,0 +170741510893,245,0 +170741510942,245,0 +170741510990,245,0 +170741511038,245,0 +170741511088,245,0 +170741511136,245,0 +170741511184,245,0 +170741511233,245,0 +170741511283,245,0 +170741511331,245,0 +170741511379,245,0 +170741511427,245,0 +170741511475,245,0 +170741511523,245,0 +170741511572,245,0 +170741511620,245,0 +170741511668,245,0 +170741511716,245,0 +170741511764,245,0 +170741511812,245,0 +170741511860,245,0 +170741511909,245,0 +170741511957,245,0 +170741512005,245,0 +170741512053,245,0 +170741512103,245,0 +170741512151,245,0 +170741512200,245,0 +170741512248,245,0 +170741512296,245,0 +170741512344,245,0 +170741512392,245,0 +170741512440,245,0 +170741512488,245,0 +170741512538,245,0 +170741512586,245,0 +170741512634,245,0 +170741512682,245,0 +170741512731,245,0 +170741512781,245,0 +170741512829,245,0 +170741512878,245,0 +170741512926,245,0 +170741512974,245,0 +170741513022,245,0 +170741513070,245,0 +170741513118,245,0 +170741513166,245,0 +170741513214,245,0 +170741513261,245,0 +170741513309,245,0 +170741513357,245,0 +170741513405,245,0 +170741513453,245,0 +170741513502,245,0 +170741513550,245,0 +170741513600,245,0 +170741513648,245,0 +170741513696,245,0 +170741513745,245,0 +170741513795,245,0 +170741513844,245,0 +170741513892,245,0 +170741513940,245,0 +170741513990,245,0 +170741514039,245,0 +170741514089,244,0 +170741514137,245,0 +170741514185,245,0 +170741514233,244,0 +170741514282,245,0 +170741514330,244,0 +170741514378,245,0 +170741514426,245,0 +170741514476,245,0 +170741514525,245,0 +170741514573,245,0 +170741514623,245,0 +170741514671,245,0 +170741514719,245,0 +170741514767,245,0 +170741514816,245,0 +170741514864,245,0 +170741514912,245,0 +170741514962,245,0 +170741515011,245,0 +170741515059,245,0 +170741515109,245,0 +170741515158,245,0 +170741515206,245,0 +170741515254,245,0 +170741515303,245,0 +170741515353,245,0 +170741515402,245,0 +170741515450,245,0 +170741515500,245,0 +170741515549,245,0 +170741515597,245,0 +170741515645,245,0 +170741515695,245,0 +170741515743,245,0 +170741515791,245,0 +170741515839,245,0 +170741515887,245,0 +170741515935,245,0 +170741515983,245,0 +170741516030,245,0 +170741516080,245,0 +170741516130,245,0 +170741516179,245,0 +170741516227,245,0 +170741516275,245,0 +170741516323,245,0 +170741516371,245,0 +170741516419,245,0 +170741516467,244,0 +170741516515,245,0 +170741516563,245,0 +170741516612,245,0 +170741516660,245,0 +170741516708,245,0 +170741516756,245,0 +170741516804,245,0 +170741516852,245,0 +170741516900,245,0 +170741516948,245,0 +170741516997,245,0 +170741517045,245,0 +170741517093,245,0 +170741517141,245,0 +170741517191,245,0 +170741517239,245,0 +170741517287,245,0 +170741517336,245,0 +170741517384,245,0 +170741517432,245,0 +170741517482,244,0 +170741517530,245,0 +170741517577,245,0 +170741517625,245,0 +170741517673,245,0 +170741517721,245,0 +170741517769,244,0 +170741517819,245,0 +170741517867,245,0 +170741517916,245,0 +170741517964,245,0 +170741518012,245,0 +170741518063,245,0 +170741518111,245,0 +170741518158,245,0 +170741518206,245,0 +170741518256,245,0 +170741518304,245,0 +170741518352,245,0 +170741518401,245,0 +170741518451,245,0 +170741518499,245,0 +170741518547,245,0 +170741518596,245,0 +170741518644,245,0 +170741518694,245,0 +170741518742,245,0 +170741518790,245,0 +170741518838,245,0 +170741518887,245,0 +170741518937,245,0 +170741518985,245,0 +170741519034,244,0 +170741519082,245,0 +170741519130,245,0 +170741519178,245,0 +170741519226,245,0 +170741519274,245,0 +170741519324,245,0 +170741519372,245,0 +170741519421,245,0 +170741519471,244,0 +170741519520,245,0 +170741519568,245,0 +170741519616,245,0 +170741519664,245,0 +170741519712,245,0 +170741519762,245,0 +170741519810,245,0 +170741519859,245,0 +170741519907,245,0 +170741519957,245,0 +170741520005,245,0 diff --git a/laser_value/0209-04.csv b/laser_value/0209-04.csv new file mode 100644 index 0000000..a9c5525 --- /dev/null +++ b/laser_value/0209-04.csv @@ -0,0 +1,7439 @@ +timestamp,laser_value,event +170741520055,245,0 +170741520103,245,0 +170741520151,245,0 +170741520199,245,0 +170741520247,245,0 +170741520296,245,0 +170741520346,245,0 +170741520395,245,0 +170741520443,245,0 +170741520491,245,0 +170741520539,245,0 +170741520587,245,0 +170741520635,245,0 +170741520683,245,0 +170741520731,245,0 +170741520779,245,0 +170741520828,245,0 +170741520876,245,0 +170741520926,245,0 +170741520975,245,0 +170741521025,245,0 +170741521073,245,0 +170741521121,245,0 +170741521169,245,0 +170741521218,245,0 +170741521266,245,0 +170741521315,245,0 +170741521363,245,0 +170741521413,245,0 +170741521461,245,0 +170741521510,245,0 +170741521558,244,0 +170741521606,245,0 +170741521656,245,0 +170741521704,245,0 +170741521753,245,0 +170741521803,245,0 +170741521851,245,0 +170741521898,245,0 +170741521948,245,0 +170741521996,245,0 +170741522044,245,0 +170741522092,245,0 +170741522140,245,0 +170741522188,245,0 +170741522235,245,0 +170741522283,245,0 +170741522331,245,0 +170741522381,245,0 +170741522429,245,0 +170741522477,245,0 +170741522525,244,0 +170741522572,245,0 +170741522620,245,0 +170741522668,245,0 +170741522716,245,0 +170741522764,244,0 +170741522812,245,0 +170741522860,245,0 +170741522908,244,0 +170741522956,245,0 +170741523004,245,0 +170741523051,245,0 +170741523099,245,0 +170741523147,245,0 +170741523195,244,0 +170741523243,245,0 +170741523291,245,0 +170741523339,245,0 +170741523387,245,0 +170741523435,245,0 +170741523483,245,0 +170741523531,245,0 +170741523578,245,0 +170741523628,245,0 +170741523676,245,0 +170741523724,245,0 +170741523772,245,0 +170741523820,245,0 +170741523868,245,0 +170741523916,245,0 +170741523964,245,0 +170741524013,245,0 +170741524061,245,0 +170741524109,245,0 +170741524157,245,0 +170741524205,245,0 +170741524254,245,0 +170741524304,245,0 +170741524352,245,0 +170741524400,245,0 +170741524449,245,0 +170741524499,245,0 +170741524547,245,0 +170741524595,245,0 +170741524643,245,0 +170741524692,245,0 +170741524742,245,0 +170741524791,245,0 +170741524841,245,0 +170741524889,245,0 +170741524937,245,0 +170741524986,245,0 +170741525034,245,0 +170741525084,245,0 +170741525132,245,0 +170741525181,245,0 +170741525229,244,0 +170741525277,245,0 +170741525325,245,0 +170741525375,245,0 +170741525423,245,0 +170741525472,245,0 +170741525522,245,0 +170741525571,245,0 +170741525621,245,0 +170741525670,245,0 +170741525720,245,0 +170741525768,245,0 +170741525815,245,0 +170741525863,245,0 +170741525911,245,0 +170741525961,245,0 +170741526010,245,0 +170741526058,245,0 +170741526106,245,0 +170741526154,245,0 +170741526202,245,0 +170741526250,245,0 +170741526298,245,0 +170741526348,245,0 +170741526396,245,0 +170741526444,245,0 +170741526492,245,0 +170741526541,245,0 +170741526589,245,0 +170741526639,245,0 +170741526687,245,0 +170741526735,245,0 +170741526783,245,0 +170741526831,245,0 +170741526879,245,0 +170741526926,245,0 +170741526976,245,0 +170741527024,245,0 +170741527072,245,0 +170741527120,245,0 +170741527168,245,0 +170741527217,245,0 +170741527267,245,0 +170741527315,245,0 +170741527363,245,0 +170741527411,245,0 +170741527460,244,0 +170741527510,245,0 +170741527559,245,0 +170741527609,245,0 +170741527657,245,0 +170741527705,245,0 +170741527754,245,0 +170741527802,245,0 +170741527850,245,0 +170741527898,245,0 +170741527948,245,0 +170741527996,245,0 +170741528045,245,0 +170741528095,245,0 +170741528143,245,0 +170741528191,245,0 +170741528240,245,0 +170741528288,245,0 +170741528338,245,0 +170741528386,245,0 +170741528435,245,0 +170741528483,245,0 +170741528532,245,0 +170741528580,245,0 +170741528630,245,0 +170741528678,245,0 +170741528726,245,0 +170741528775,245,0 +170741528825,245,0 +170741528873,245,0 +170741528922,245,0 +170741528970,245,0 +170741529018,245,0 +170741529068,245,0 +170741529117,245,0 +170741529165,245,0 +170741529213,245,0 +170741529261,245,0 +170741529309,244,0 +170741529358,245,0 +170741529406,245,0 +170741529456,244,0 +170741529505,245,0 +170741529555,245,0 +170741529603,245,0 +170741529652,245,0 +170741529702,245,0 +170741529751,245,0 +170741529799,245,0 +170741529849,245,0 +170741529898,245,0 +170741529946,245,0 +170741529996,245,0 +170741530044,245,0 +170741530093,245,0 +170741530141,245,0 +170741530189,244,0 +170741530239,244,0 +170741530287,245,0 +170741530335,245,0 +170741530384,245,0 +170741530432,245,0 +170741530480,245,0 +170741530528,245,0 +170741530576,245,0 +170741530624,245,0 +170741530672,245,0 +170741530720,245,0 +170741530769,245,0 +170741530817,245,0 +170741530865,245,0 +170741530913,245,0 +170741530961,245,0 +170741531009,245,0 +170741531059,245,0 +170741531107,245,0 +170741531155,245,0 +170741531204,245,0 +170741531252,245,0 +170741531300,245,0 +170741531348,245,0 +170741531396,245,0 +170741531444,245,0 +170741531493,245,0 +170741531543,245,0 +170741531591,245,0 +170741531639,245,0 +170741531688,245,0 +170741531736,245,0 +170741531784,245,0 +170741531832,245,0 +170741531880,245,0 +170741531928,245,0 +170741531976,245,0 +170741532025,245,0 +170741532075,245,0 +170741532123,245,0 +170741532172,245,0 +170741532220,245,0 +170741532270,245,0 +170741532318,245,0 +170741532367,245,0 +170741532415,245,0 +170741532463,245,0 +170741532511,245,0 +170741532560,245,0 +170741532608,245,0 +170741532656,245,0 +170741532704,245,0 +170741532752,245,0 +170741532800,245,0 +170741532847,245,0 +170741532895,245,0 +170741532943,245,0 +170741532991,245,0 +170741533039,245,0 +170741533087,245,0 +170741533135,245,0 +170741533183,245,0 +170741533231,245,0 +170741533278,245,0 +170741533326,245,0 +170741533374,245,0 +170741533422,244,0 +170741533472,245,0 +170741533520,244,0 +170741533568,245,0 +170741533616,245,0 +170741533664,245,0 +170741533712,245,0 +170741533761,245,0 +170741533811,245,0 +170741533860,245,0 +170741533908,245,0 +170741533956,245,0 +170741534004,245,0 +170741534053,245,0 +170741534103,245,0 +170741534151,245,0 +170741534199,245,0 +170741534247,245,0 +170741534295,245,0 +170741534343,245,0 +170741534391,245,0 +170741534438,245,0 +170741534486,245,0 +170741534534,245,0 +170741534582,245,0 +170741534632,245,0 +170741534681,245,0 +170741534729,245,0 +170741534777,245,0 +170741534827,245,0 +170741534876,245,0 +170741534924,245,0 +170741534974,245,0 +170741535023,245,0 +170741535071,245,0 +170741535121,245,0 +170741535170,245,0 +170741535218,245,0 +170741535266,245,0 +170741535314,245,0 +170741535362,245,0 +170741535410,245,0 +170741535459,245,0 +170741535507,245,0 +170741535555,245,0 +170741535603,245,0 +170741535651,245,0 +170741535699,245,0 +170741535747,245,0 +170741535795,245,0 +170741535843,245,0 +170741535891,245,0 +170741535941,245,0 +170741535989,245,0 +170741536036,245,0 +170741536086,245,0 +170741536134,245,0 +170741536183,245,0 +170741536233,245,0 +170741536282,245,0 +170741536332,245,0 +170741536380,245,0 +170741536429,245,0 +170741536477,245,0 +170741536527,245,0 +170741536575,245,0 +170741536624,245,0 +170741536674,245,0 +170741536722,245,0 +170741536770,245,0 +170741536818,245,0 +170741536866,245,0 +170741536915,245,0 +170741536963,245,0 +170741537013,245,0 +170741537060,245,0 +170741537110,245,0 +170741537158,245,0 +170741537207,245,0 +170741537257,245,0 +170741537306,245,0 +170741537354,245,0 +170741537402,245,0 +170741537452,245,0 +170741537500,245,0 +170741537548,245,0 +170741537596,245,0 +170741537644,245,0 +170741537692,244,0 +170741537740,245,0 +170741537789,245,0 +170741537837,245,0 +170741537885,245,0 +170741537935,245,0 +170741537983,245,0 +170741538030,245,0 +170741538078,245,0 +170741538128,245,0 +170741538176,245,0 +170741538224,245,0 +170741538272,245,0 +170741538321,245,0 +170741538369,245,0 +170741538419,245,0 +170741538467,245,0 +170741538516,245,0 +170741538564,245,0 +170741538614,245,0 +170741538663,245,0 +170741538711,245,0 +170741538759,245,0 +170741538809,245,0 +170741538857,245,0 +170741538906,245,0 +170741538954,245,0 +170741539002,245,0 +170741539050,245,0 +170741539098,245,0 +170741539146,245,0 +170741539194,245,0 +170741539242,245,0 +170741539290,245,0 +170741539339,245,0 +170741539389,245,0 +170741539437,245,0 +170741539486,245,0 +170741539536,245,0 +170741539584,245,0 +170741539632,245,0 +170741539681,244,0 +170741539729,245,0 +170741539779,245,0 +170741539827,245,0 +170741539875,245,0 +170741539924,245,0 +170741539972,245,0 +170741540022,245,0 +170741540070,245,0 +170741540118,245,0 +170741540167,245,0 +170741540215,245,0 +170741540263,245,0 +170741540311,244,0 +170741540359,245,0 +170741540407,245,0 +170741540456,245,0 +170741540504,245,0 +170741540552,245,0 +170741540600,245,0 +170741540648,245,0 +170741540696,245,0 +170741540744,245,0 +170741540792,245,0 +170741540840,245,0 +170741540888,245,0 +170741540936,245,0 +170741540984,245,0 +170741541033,244,0 +170741541081,245,0 +170741541129,245,0 +170741541177,245,0 +170741541225,245,0 +170741541275,245,0 +170741541323,245,0 +170741541372,245,0 +170741541420,245,0 +170741541468,245,0 +170741541516,245,0 +170741541564,245,0 +170741541613,245,0 +170741541661,245,0 +170741541709,245,0 +170741541757,245,0 +170741541805,245,0 +170741541853,245,0 +170741541900,245,0 +170741541950,245,0 +170741541998,245,0 +170741542047,245,0 +170741542096,245,0 +170741542144,245,0 +170741542192,245,0 +170741542242,245,0 +170741542291,245,0 +170741542341,245,0 +170741542389,245,0 +170741542436,245,0 +170741542484,245,0 +170741542532,245,0 +170741542580,245,0 +170741542630,245,0 +170741542677,245,0 +170741542725,245,0 +170741542773,245,0 +170741542821,245,0 +170741542869,245,0 +170741542917,245,0 +170741542965,245,0 +170741543013,245,0 +170741543060,245,0 +170741543108,244,0 +170741543156,245,0 +170741543204,245,0 +170741543252,245,0 +170741543301,245,0 +170741543349,245,0 +170741543397,245,0 +170741543445,245,0 +170741543493,245,0 +170741543541,245,0 +170741543589,245,0 +170741543637,245,0 +170741543684,245,0 +170741543732,245,0 +170741543780,245,0 +170741543828,245,0 +170741543876,245,0 +170741543924,245,0 +170741543973,245,0 +170741544021,244,0 +170741544069,245,0 +170741544117,245,0 +170741544165,245,0 +170741544213,245,0 +170741544263,245,0 +170741544311,245,0 +170741544359,245,0 +170741544408,245,0 +170741544456,245,0 +170741544506,245,0 +170741544554,245,0 +170741544602,245,0 +170741544649,245,0 +170741544699,245,0 +170741544747,245,0 +170741544797,245,0 +170741544845,245,0 +170741544892,245,0 +170741544942,245,0 +170741544990,245,0 +170741545038,245,0 +170741545087,245,0 +170741545135,245,0 +170741545183,245,0 +170741545233,245,0 +170741545281,245,0 +170741545329,245,0 +170741545377,245,0 +170741545424,245,0 +170741545472,245,0 +170741545520,245,0 +170741545568,245,0 +170741545616,245,0 +170741545664,245,0 +170741545713,245,0 +170741545761,245,0 +170741545809,245,0 +170741545857,245,0 +170741545905,245,0 +170741545953,245,0 +170741546001,245,0 +170741546049,245,0 +170741546098,245,0 +170741546146,245,0 +170741546194,245,0 +170741546242,245,0 +170741546290,245,0 +170741546340,245,0 +170741546388,245,0 +170741546436,245,0 +170741546483,245,0 +170741546531,245,0 +170741546579,245,0 +170741546627,245,0 +170741546675,245,0 +170741546723,244,0 +170741546771,245,0 +170741546821,245,0 +170741546870,245,0 +170741546918,245,0 +170741546966,245,0 +170741547016,245,0 +170741547065,245,0 +170741547115,245,0 +170741547164,245,0 +170741547214,245,0 +170741547263,245,0 +170741547311,245,0 +170741547359,245,0 +170741547407,245,0 +170741547455,245,0 +170741547503,244,0 +170741547551,245,0 +170741547600,245,0 +170741547648,245,0 +170741547696,245,0 +170741547744,244,0 +170741547792,245,0 +170741547840,245,0 +170741547887,245,0 +170741547935,245,0 +170741547983,245,0 +170741548031,245,0 +170741548079,245,0 +170741548127,245,0 +170741548175,245,0 +170741548223,245,0 +170741548272,245,0 +170741548322,245,0 +170741548370,245,0 +170741548419,245,0 +170741548467,245,0 +170741548517,245,0 +170741548565,245,0 +170741548613,245,0 +170741548661,245,0 +170741548709,245,0 +170741548758,245,0 +170741548806,245,0 +170741548856,245,0 +170741548905,245,0 +170741548953,245,0 +170741549003,245,0 +170741549052,245,0 +170741549102,245,0 +170741549151,245,0 +170741549199,245,0 +170741549247,245,0 +170741549295,245,0 +170741549343,245,0 +170741549391,245,0 +170741549439,245,0 +170741549488,245,0 +170741549538,245,0 +170741549587,245,0 +170741549635,245,0 +170741549685,245,0 +170741549734,245,0 +170741549782,245,0 +170741549830,245,0 +170741549880,245,0 +170741549928,245,0 +170741549977,245,0 +170741550025,245,0 +170741550075,245,0 +170741550124,245,0 +170741550172,245,0 +170741550220,245,0 +170741550268,245,0 +170741550318,245,0 +170741550366,245,0 +170741550414,245,0 +170741550463,245,0 +170741550513,245,0 +170741550561,245,0 +170741550608,245,0 +170741550656,245,0 +170741550704,245,0 +170741550752,245,0 +170741550802,245,0 +170741550850,245,0 +170741550898,245,0 +170741550946,245,0 +170741550993,245,0 +170741551043,245,0 +170741551091,245,0 +170741551139,245,0 +170741551189,245,0 +170741551236,244,0 +170741551284,245,0 +170741551334,245,0 +170741551382,245,0 +170741551431,245,0 +170741551479,245,0 +170741551529,245,0 +170741551578,245,0 +170741551626,245,0 +170741551674,245,0 +170741551724,245,0 +170741551772,245,0 +170741551821,245,0 +170741551869,244,0 +170741551917,245,0 +170741551965,245,0 +170741552013,245,0 +170741552061,245,0 +170741552109,245,0 +170741552156,245,0 +170741552204,245,0 +170741552252,245,0 +170741552300,245,0 +170741552348,245,0 +170741552396,245,0 +170741552445,245,0 +170741552493,245,0 +170741552543,245,0 +170741552591,245,0 +170741552639,245,0 +170741552687,245,0 +170741552735,245,0 +170741552782,245,0 +170741552832,245,0 +170741552881,245,0 +170741552931,245,0 +170741552979,245,0 +170741553027,245,0 +170741553075,245,0 +170741553123,245,0 +170741553171,245,0 +170741553219,245,0 +170741553267,245,0 +170741553314,245,0 +170741553362,245,0 +170741553410,245,0 +170741553460,245,0 +170741553509,245,0 +170741553557,245,0 +170741553605,245,0 +170741553655,245,0 +170741553703,245,0 +170741553752,245,0 +170741553800,245,0 +170741553848,245,0 +170741553896,245,0 +170741553944,245,0 +170741553992,245,0 +170741554042,245,0 +170741554090,245,0 +170741554139,245,0 +170741554187,245,0 +170741554235,245,0 +170741554283,245,0 +170741554331,245,0 +170741554379,245,0 +170741554428,245,0 +170741554476,245,0 +170741554526,245,0 +170741554574,245,0 +170741554623,245,0 +170741554671,245,0 +170741554721,245,0 +170741554770,245,0 +170741554820,245,0 +170741554869,245,0 +170741554919,244,0 +170741554968,245,0 +170741555016,245,0 +170741555066,245,0 +170741555115,245,0 +170741555163,245,0 +170741555212,245,0 +170741555260,245,0 +170741555310,245,0 +170741555358,245,0 +170741555406,245,0 +170741555454,245,0 +170741555502,245,0 +170741555550,245,0 +170741555599,245,0 +170741555647,245,0 +170741555695,245,0 +170741555745,245,0 +170741555794,245,0 +170741555842,245,0 +170741555892,245,0 +170741555941,245,0 +170741555989,245,0 +170741556039,245,0 +170741556088,245,0 +170741556136,245,0 +170741556184,245,0 +170741556233,245,0 +170741556281,245,0 +170741556331,245,0 +170741556380,245,0 +170741556428,245,0 +170741556478,245,0 +170741556526,245,0 +170741556575,245,0 +170741556625,244,0 +170741556674,245,0 +170741556724,245,0 +170741556772,245,0 +170741556820,245,0 +170741556869,245,0 +170741556917,245,0 +170741556965,245,0 +170741557013,245,0 +170741557063,245,0 +170741557112,245,0 +170741557160,245,0 +170741557210,245,0 +170741557258,245,0 +170741557307,245,0 +170741557357,245,0 +170741557405,245,0 +170741557453,245,0 +170741557500,245,0 +170741557550,245,0 +170741557598,245,0 +170741557646,245,0 +170741557695,245,0 +170741557743,245,0 +170741557793,245,0 +170741557841,245,0 +170741557890,245,0 +170741557938,245,0 +170741557986,245,0 +170741558036,245,0 +170741558084,245,0 +170741558132,245,0 +170741558181,245,0 +170741558229,245,0 +170741558278,245,0 +170741558326,245,0 +170741558374,245,0 +170741558422,245,0 +170741558470,245,0 +170741558518,245,0 +170741558568,245,0 +170741558616,245,0 +170741558665,245,0 +170741558713,245,0 +170741558763,245,0 +170741558811,245,0 +170741558859,245,0 +170741558907,245,0 +170741558954,245,0 +170741559002,245,0 +170741559050,245,0 +170741559100,245,0 +170741559149,245,0 +170741559199,245,0 +170741559247,245,0 +170741559295,245,0 +170741559343,245,0 +170741559391,245,0 +170741559439,245,0 +170741559487,245,0 +170741559536,245,0 +170741559584,245,0 +170741559634,245,0 +170741559681,245,0 +170741559729,245,0 +170741559777,245,0 +170741559825,245,0 +170741559873,245,0 +170741559921,245,0 +170741559969,245,0 +170741560016,245,0 +170741560064,245,0 +170741560112,245,0 +170741560162,246,0 +170741560210,245,0 +170741560258,245,0 +170741560305,245,0 +170741560353,245,0 +170741560401,245,0 +170741560449,245,0 +170741560497,245,0 +170741560546,245,0 +170741560596,245,0 +170741560644,245,0 +170741560692,245,0 +170741560739,245,0 +170741560787,245,0 +170741560835,245,0 +170741560885,245,0 +170741560933,245,0 +170741560981,245,0 +170741561028,245,0 +170741561076,245,0 +170741561124,245,0 +170741561172,245,0 +170741561221,245,0 +170741561271,245,0 +170741561319,245,0 +170741561368,245,0 +170741561416,245,0 +170741561464,245,0 +170741561512,245,0 +170741561560,245,0 +170741561608,245,0 +170741561655,244,0 +170741561703,245,0 +170741561751,245,0 +170741561799,245,0 +170741561849,245,0 +170741561896,245,0 +170741561944,245,0 +170741561994,245,0 +170741562042,245,0 +170741562089,245,0 +170741562137,245,0 +170741562185,245,0 +170741562233,245,0 +170741562281,245,0 +170741562329,245,0 +170741562377,245,0 +170741562425,245,0 +170741562473,245,0 +170741562520,245,0 +170741562568,245,0 +170741562616,245,0 +170741562666,245,0 +170741562713,245,0 +170741562761,245,0 +170741562809,245,0 +170741562857,245,0 +170741562905,245,0 +170741562953,245,0 +170741563001,245,0 +170741563049,245,0 +170741563096,245,0 +170741563146,245,0 +170741563194,245,0 +170741563242,245,0 +170741563291,245,0 +170741563341,245,0 +170741563389,245,0 +170741563438,245,0 +170741563486,245,0 +170741563534,245,0 +170741563582,245,0 +170741563630,245,0 +170741563677,245,0 +170741563725,245,0 +170741563773,245,0 +170741563821,245,0 +170741563869,245,0 +170741563917,244,0 +170741563965,245,0 +170741564013,245,0 +170741564061,245,0 +170741564108,245,0 +170741564156,245,0 +170741564204,245,0 +170741564252,245,0 +170741564300,245,0 +170741564348,245,0 +170741564396,245,0 +170741564444,245,0 +170741564491,245,0 +170741564539,245,0 +170741564587,245,0 +170741564635,245,0 +170741564683,245,0 +170741564731,245,0 +170741564779,245,0 +170741564828,245,0 +170741564876,245,0 +170741564924,245,0 +170741564972,245,0 +170741565020,245,0 +170741565068,245,0 +170741565116,245,0 +170741565165,245,0 +170741565213,245,0 +170741565263,245,0 +170741565312,245,0 +170741565362,245,0 +170741565410,245,0 +170741565458,245,0 +170741565506,245,0 +170741565555,245,0 +170741565605,245,0 +170741565653,245,0 +170741565701,245,0 +170741565748,245,0 +170741565798,245,0 +170741565846,245,0 +170741565895,245,0 +170741565945,246,0 +170741565994,245,0 +170741566042,245,0 +170741566092,245,0 +170741566140,245,0 +170741566188,245,0 +170741566236,245,0 +170741566285,245,0 +170741566333,245,0 +170741566381,244,0 +170741566431,245,0 +170741566480,245,0 +170741566530,245,0 +170741566579,245,0 +170741566627,245,0 +170741566675,245,0 +170741566723,245,0 +170741566771,245,0 +170741566819,245,0 +170741566868,245,0 +170741566918,245,0 +170741566966,245,0 +170741567013,245,0 +170741567063,245,0 +170741567111,245,0 +170741567159,245,0 +170741567208,245,0 +170741567256,245,0 +170741567304,245,0 +170741567352,245,0 +170741567401,245,0 +170741567449,245,0 +170741567497,245,0 +170741567546,245,0 +170741567594,245,0 +170741567642,245,0 +170741567690,245,0 +170741567740,245,0 +170741567789,245,0 +170741567837,245,0 +170741567885,245,0 +170741567933,245,0 +170741567983,245,0 +170741568031,244,0 +170741568078,245,0 +170741568126,245,0 +170741568174,245,0 +170741568222,245,0 +170741568270,245,0 +170741568318,245,0 +170741568366,245,0 +170741568414,245,0 +170741568462,245,0 +170741568510,245,0 +170741568558,245,0 +170741568607,245,0 +170741568655,245,0 +170741568703,245,0 +170741568751,245,0 +170741568799,245,0 +170741568846,245,0 +170741568894,245,0 +170741568942,245,0 +170741568990,245,0 +170741569038,245,0 +170741569086,245,0 +170741569134,245,0 +170741569182,245,0 +170741569231,245,0 +170741569280,245,0 +170741569328,245,0 +170741569378,245,0 +170741569426,245,0 +170741569474,245,0 +170741569523,245,0 +170741569571,245,0 +170741569619,245,0 +170741569667,245,0 +170741569715,245,0 +170741569764,245,0 +170741569812,245,0 +170741569861,245,0 +170741569911,245,0 +170741569959,245,0 +170741570008,245,0 +170741570056,245,0 +170741570105,245,0 +170741570153,245,0 +170741570201,245,0 +170741570249,245,0 +170741570297,245,0 +170741570345,245,0 +170741570393,245,0 +170741570442,245,0 +170741570490,245,0 +170741570538,245,0 +170741570586,245,0 +170741570634,245,0 +170741570683,245,0 +170741570733,245,0 +170741570781,245,0 +170741570829,245,0 +170741570878,245,0 +170741570926,245,0 +170741570974,245,0 +170741571022,245,0 +170741571070,245,0 +170741571120,245,0 +170741571168,245,0 +170741571216,245,0 +170741571265,245,0 +170741571315,245,0 +170741571363,245,0 +170741571411,245,0 +170741571460,245,0 +170741571508,245,0 +170741571558,245,0 +170741571606,245,0 +170741571655,245,0 +170741571703,245,0 +170741571751,245,0 +170741571799,245,0 +170741571849,245,0 +170741571898,245,0 +170741571946,245,0 +170741571994,245,0 +170741572044,245,0 +170741572091,245,0 +170741572139,245,0 +170741572187,245,0 +170741572237,245,0 +170741572285,245,0 +170741572333,245,0 +170741572381,245,0 +170741572430,245,0 +170741572480,245,0 +170741572529,245,0 +170741572577,245,0 +170741572625,245,0 +170741572675,245,0 +170741572724,245,0 +170741572772,245,0 +170741572820,245,0 +170741572868,245,0 +170741572916,245,0 +170741572965,245,0 +170741573015,245,0 +170741573064,245,0 +170741573112,245,0 +170741573162,244,0 +170741573210,245,0 +170741573258,245,0 +170741573306,245,0 +170741573354,245,0 +170741573402,245,0 +170741573450,245,0 +170741573498,245,0 +170741573546,245,0 +170741573595,245,0 +170741573643,245,0 +170741573693,245,0 +170741573740,245,0 +170741573790,245,0 +170741573838,245,0 +170741573886,245,0 +170741573935,245,0 +170741573983,245,0 +170741574031,245,0 +170741574079,245,0 +170741574127,245,0 +170741574175,245,0 +170741574223,245,0 +170741574271,245,0 +170741574319,245,0 +170741574367,245,0 +170741574415,245,0 +170741574465,245,0 +170741574512,245,0 +170741574560,245,0 +170741574608,245,0 +170741574656,245,0 +170741574706,245,0 +170741574754,246,0 +170741574803,245,0 +170741574853,245,0 +170741574901,245,0 +170741574949,245,0 +170741574997,245,0 +170741575046,245,0 +170741575096,245,0 +170741575144,245,0 +170741575192,245,0 +170741575239,245,0 +170741575289,245,0 +170741575337,245,0 +170741575385,245,0 +170741575434,245,0 +170741575482,245,0 +170741575530,245,0 +170741575578,245,0 +170741575626,245,0 +170741575674,245,0 +170741575723,245,0 +170741575771,245,0 +170741575819,245,0 +170741575869,245,0 +170741575917,245,0 +170741575966,245,0 +170741576014,245,0 +170741576064,245,0 +170741576112,245,0 +170741576159,245,0 +170741576209,245,0 +170741576258,245,0 +170741576308,245,0 +170741576357,245,0 +170741576407,245,0 +170741576455,245,0 +170741576503,245,0 +170741576551,245,0 +170741576599,245,0 +170741576647,245,0 +170741576695,245,0 +170741576743,245,0 +170741576790,245,0 +170741576838,245,0 +170741576886,245,0 +170741576934,245,0 +170741576982,245,0 +170741577030,245,0 +170741577078,245,0 +170741577126,245,0 +170741577174,245,0 +170741577224,245,0 +170741577272,245,0 +170741577320,245,0 +170741577368,245,0 +170741577417,245,0 +170741577467,245,0 +170741577516,245,0 +170741577564,245,0 +170741577612,245,0 +170741577660,245,0 +170741577708,245,0 +170741577757,245,0 +170741577805,245,0 +170741577853,245,0 +170741577901,245,0 +170741577949,245,0 +170741577999,245,0 +170741578047,245,0 +170741578096,245,0 +170741578144,245,0 +170741578192,245,0 +170741578240,245,0 +170741578289,245,0 +170741578337,245,0 +170741578387,245,0 +170741578435,245,0 +170741578483,245,0 +170741578532,245,0 +170741578580,245,0 +170741578628,245,0 +170741578676,245,0 +170741578724,245,0 +170741578774,245,0 +170741578823,245,0 +170741578871,245,0 +170741578919,245,0 +170741578968,245,0 +170741579016,245,0 +170741579066,245,0 +170741579115,245,0 +170741579163,245,0 +170741579213,245,0 +170741579262,245,0 +170741579310,245,0 +170741579358,245,0 +170741579406,246,0 +170741579454,245,0 +170741579502,245,0 +170741579550,245,0 +170741579600,245,0 +170741579648,245,0 +170741579695,245,0 +170741579745,245,0 +170741579793,245,0 +170741579841,245,0 +170741579889,245,0 +170741579938,245,0 +170741579988,245,0 +170741580037,245,0 +170741580085,245,0 +170741580133,245,0 +170741580181,245,0 +170741580231,245,0 +170741580279,245,0 +170741580328,245,0 +170741580376,245,0 +170741580426,245,0 +170741580474,245,0 +170741580522,245,0 +170741580570,245,0 +170741580618,245,0 +170741580665,245,0 +170741580715,245,0 +170741580765,245,0 +170741580812,245,0 +170741580862,245,0 +170741580910,245,0 +170741580959,245,0 +170741581007,245,0 +170741581055,245,0 +170741581103,245,0 +170741581151,245,0 +170741581199,245,0 +170741581247,245,0 +170741581295,245,0 +170741581345,245,0 +170741581393,245,0 +170741581442,245,0 +170741581490,245,0 +170741581538,245,0 +170741581586,245,0 +170741581634,245,0 +170741581682,245,0 +170741581731,245,0 +170741581779,245,0 +170741581829,245,0 +170741581878,245,0 +170741581928,245,0 +170741581977,245,0 +170741582027,245,0 +170741582075,245,0 +170741582124,245,0 +170741582172,245,0 +170741582222,245,0 +170741582270,245,0 +170741582319,245,0 +170741582369,245,0 +170741582417,245,0 +170741582466,245,0 +170741582514,245,0 +170741582562,245,0 +170741582612,245,0 +170741582661,245,0 +170741582709,245,0 +170741582757,245,0 +170741582805,246,0 +170741582853,245,0 +170741582902,245,0 +170741582950,245,0 +170741582998,245,0 +170741583048,245,0 +170741583096,245,0 +170741583145,245,0 +170741583193,245,0 +170741583243,245,0 +170741583290,245,0 +170741583340,245,0 +170741583388,245,0 +170741583437,245,0 +170741583485,245,0 +170741583535,245,0 +170741583583,245,0 +170741583632,245,0 +170741583680,245,0 +170741583728,245,0 +170741583776,245,0 +170741583824,245,0 +170741583872,245,0 +170741583920,245,0 +170741583969,245,0 +170741584017,245,0 +170741584067,245,0 +170741584116,245,0 +170741584164,245,0 +170741584212,245,0 +170741584260,245,0 +170741584308,246,0 +170741584356,245,0 +170741584406,245,0 +170741584455,245,0 +170741584503,245,0 +170741584551,245,0 +170741584600,245,0 +170741584648,245,0 +170741584696,245,0 +170741584744,245,0 +170741584792,245,0 +170741584840,245,0 +170741584890,245,0 +170741584938,245,0 +170741584985,245,0 +170741585033,245,0 +170741585083,245,0 +170741585131,245,0 +170741585179,245,0 +170741585227,245,0 +170741585275,245,0 +170741585324,245,0 +170741585373,245,0 +170741585421,245,0 +170741585469,245,0 +170741585517,245,0 +170741585565,245,0 +170741585613,245,0 +170741585661,245,0 +170741585709,245,0 +170741585757,245,0 +170741585807,245,0 +170741585855,245,0 +170741585903,245,0 +170741585950,245,0 +170741585998,245,0 +170741586046,245,0 +170741586094,245,0 +170741586142,245,0 +170741586190,245,0 +170741586238,245,0 +170741586288,245,0 +170741586336,245,0 +170741586384,245,0 +170741586432,245,0 +170741586479,245,0 +170741586527,245,0 +170741586575,245,0 +170741586625,245,0 +170741586674,245,0 +170741586724,244,0 +170741586772,245,0 +170741586820,245,0 +170741586868,244,0 +170741586917,245,0 +170741586967,245,0 +170741587015,245,0 +170741587063,245,0 +170741587112,245,0 +170741587160,245,0 +170741587208,245,0 +170741587258,245,0 +170741587306,245,0 +170741587353,245,0 +170741587403,245,0 +170741587451,245,0 +170741587499,245,0 +170741587548,245,0 +170741587596,245,0 +170741587646,245,0 +170741587694,245,0 +170741587742,245,0 +170741587791,245,0 +170741587839,245,0 +170741587887,245,0 +170741587937,245,0 +170741587985,246,0 +170741588034,245,0 +170741588082,245,0 +170741588130,245,0 +170741588178,245,0 +170741588227,245,0 +170741588275,245,0 +170741588325,245,0 +170741588373,245,0 +170741588421,245,0 +170741588469,245,0 +170741588517,245,0 +170741588566,245,0 +170741588616,245,0 +170741588663,245,0 +170741588713,245,0 +170741588761,245,0 +170741588810,245,0 +170741588860,245,0 +170741588908,245,0 +170741588956,245,0 +170741589004,245,0 +170741589052,245,0 +170741589100,245,0 +170741589149,245,0 +170741589197,245,0 +170741589245,246,0 +170741589293,245,0 +170741589341,245,0 +170741589389,245,0 +170741589438,245,0 +170741589486,245,0 +170741589534,245,0 +170741589582,245,0 +170741589630,245,0 +170741589678,245,0 +170741589726,245,0 +170741589776,245,0 +170741589824,245,0 +170741589872,245,0 +170741589919,245,0 +170741589967,245,0 +170741590017,245,0 +170741590066,245,0 +170741590116,245,0 +170741590164,245,0 +170741590213,245,0 +170741590263,245,0 +170741590311,245,0 +170741590359,245,0 +170741590407,245,0 +170741590456,245,0 +170741590504,245,0 +170741590552,245,0 +170741590601,245,0 +170741590651,245,0 +170741590699,245,0 +170741590747,245,0 +170741590795,245,0 +170741590843,245,0 +170741590891,245,0 +170741590940,245,0 +170741590988,245,0 +170741591037,245,0 +170741591087,245,0 +170741591135,245,0 +170741591183,245,0 +170741591231,245,0 +170741591279,245,0 +170741591328,245,0 +170741591376,245,0 +170741591424,245,0 +170741591472,245,0 +170741591520,245,0 +170741591568,245,0 +170741591617,245,0 +170741591667,245,0 +170741591716,245,0 +170741591764,245,0 +170741591812,245,0 +170741591860,245,0 +170741591908,245,0 +170741591956,245,0 +170741592004,245,0 +170741592051,245,0 +170741592099,245,0 +170741592147,245,0 +170741592195,245,0 +170741592243,245,0 +170741592291,245,0 +170741592339,245,0 +170741592387,245,0 +170741592435,245,0 +170741592483,245,0 +170741592530,245,0 +170741592578,245,0 +170741592626,245,0 +170741592674,245,0 +170741592724,245,0 +170741592771,245,0 +170741592819,245,0 +170741592867,245,0 +170741592915,245,0 +170741592963,245,0 +170741593011,245,0 +170741593059,245,0 +170741593107,245,0 +170741593155,245,0 +170741593203,245,0 +170741593251,245,0 +170741593299,245,0 +170741593348,245,0 +170741593398,245,0 +170741593446,245,0 +170741593495,245,0 +170741593543,245,0 +170741593591,245,0 +170741593641,245,0 +170741593689,245,0 +170741593737,245,0 +170741593786,245,0 +170741593834,245,0 +170741593882,245,0 +170741593932,245,0 +170741593979,245,0 +170741594029,245,0 +170741594077,245,0 +170741594127,245,0 +170741594175,245,0 +170741594222,245,0 +170741594270,245,0 +170741594318,245,0 +170741594366,245,0 +170741594414,245,0 +170741594462,245,0 +170741594510,245,0 +170741594558,245,0 +170741594605,245,0 +170741594653,245,0 +170741594701,245,0 +170741594749,245,0 +170741594797,245,0 +170741594845,245,0 +170741594893,245,0 +170741594943,245,0 +170741594991,245,0 +170741595040,245,0 +170741595088,245,0 +170741595136,245,0 +170741595184,245,0 +170741595232,245,0 +170741595282,245,0 +170741595331,245,0 +170741595379,245,0 +170741595427,245,0 +170741595475,245,0 +170741595523,245,0 +170741595571,245,0 +170741595619,245,0 +170741595668,245,0 +170741595716,245,0 +170741595764,245,0 +170741595814,245,0 +170741595863,245,0 +170741595911,245,0 +170741595960,245,0 +170741596010,245,0 +170741596059,245,0 +170741596107,245,0 +170741596155,245,0 +170741596203,245,0 +170741596251,245,0 +170741596301,245,0 +170741596349,245,0 +170741596398,245,0 +170741596446,244,0 +170741596494,245,0 +170741596543,245,0 +170741596591,245,0 +170741596639,245,0 +170741596687,245,0 +170741596735,245,0 +170741596783,245,0 +170741596831,245,0 +170741596879,245,0 +170741596929,245,0 +170741596977,245,0 +170741597025,245,0 +170741597073,245,0 +170741597121,245,0 +170741597168,245,0 +170741597216,245,0 +170741597264,245,0 +170741597312,245,0 +170741597362,245,0 +170741597410,245,0 +170741597457,245,0 +170741597507,245,0 +170741597555,245,0 +170741597605,245,0 +170741597654,245,0 +170741597702,245,0 +170741597750,245,0 +170741597800,245,0 +170741597848,245,0 +170741597897,245,0 +170741597945,245,0 +170741597993,245,0 +170741598041,245,0 +170741598089,245,0 +170741598138,245,0 +170741598188,245,0 +170741598236,245,0 +170741598284,245,0 +170741598332,245,0 +170741598380,245,0 +170741598428,245,0 +170741598477,245,0 +170741598527,245,0 +170741598575,245,0 +170741598623,245,0 +170741598672,245,0 +170741598720,245,0 +170741598768,245,0 +170741598818,245,0 +170741598866,245,0 +170741598913,246,0 +170741598963,245,0 +170741599012,245,0 +170741599060,245,0 +170741599108,245,0 +170741599156,245,0 +170741599204,245,0 +170741599254,245,0 +170741599303,245,0 +170741599351,245,0 +170741599399,245,0 +170741599447,245,0 +170741599495,245,0 +170741599543,245,0 +170741599591,245,0 +170741599639,245,0 +170741599686,245,0 +170741599734,245,0 +170741599784,245,0 +170741599832,245,0 +170741599880,245,0 +170741599927,245,0 +170741599975,245,0 +170741600023,245,0 +170741600071,245,0 +170741600119,245,0 +170741600167,245,0 +170741600215,245,0 +170741600263,245,0 +170741600311,245,0 +170741600360,245,0 +170741600408,245,0 +170741600458,245,0 +170741600507,245,0 +170741600557,245,0 +170741600604,245,0 +170741600654,245,0 +170741600702,245,0 +170741600750,245,0 +170741600798,245,0 +170741600846,245,0 +170741600894,245,0 +170741600942,245,0 +170741600990,245,0 +170741601038,245,0 +170741601086,245,0 +170741601135,245,0 +170741601185,245,0 +170741601234,245,0 +170741601282,245,0 +170741601332,245,0 +170741601380,245,0 +170741601427,245,0 +170741601475,245,0 +170741601523,245,0 +170741601571,245,0 +170741601621,245,0 +170741601669,245,0 +170741601717,245,0 +170741601765,245,0 +170741601814,245,0 +170741601862,245,0 +170741601910,245,0 +170741601958,245,0 +170741602006,245,0 +170741602054,245,0 +170741602102,245,0 +170741602150,246,0 +170741602199,245,0 +170741602247,245,0 +170741602295,245,0 +170741602343,244,0 +170741602393,245,0 +170741602442,245,0 +170741602490,245,0 +170741602538,245,0 +170741602588,245,0 +170741602636,245,0 +170741602684,245,0 +170741602732,245,0 +170741602780,245,0 +170741602829,245,0 +170741602877,245,0 +170741602925,245,0 +170741602973,245,0 +170741603021,245,0 +170741603068,245,0 +170741603118,245,0 +170741603166,245,0 +170741603214,245,0 +170741603261,245,0 +170741603309,245,0 +170741603357,245,0 +170741603407,245,0 +170741603455,245,0 +170741603504,245,0 +170741603554,245,0 +170741603602,245,0 +170741603650,245,0 +170741603698,245,0 +170741603746,245,0 +170741603794,245,0 +170741603843,245,0 +170741603891,245,0 +170741603939,245,0 +170741603987,245,0 +170741604036,245,0 +170741604084,245,0 +170741604132,245,0 +170741604180,245,0 +170741604230,245,0 +170741604279,245,0 +170741604327,245,0 +170741604375,245,0 +170741604423,245,0 +170741604471,245,0 +170741604520,245,0 +170741604570,245,0 +170741604618,245,0 +170741604666,245,0 +170741604714,245,0 +170741604763,245,0 +170741604811,245,0 +170741604861,245,0 +170741604909,245,0 +170741604957,245,0 +170741605005,245,0 +170741605052,245,0 +170741605100,245,0 +170741605148,245,0 +170741605196,245,0 +170741605244,245,0 +170741605292,245,0 +170741605340,245,0 +170741605388,245,0 +170741605436,245,0 +170741605484,245,0 +170741605532,245,0 +170741605580,245,0 +170741605628,245,0 +170741605676,245,0 +170741605724,245,0 +170741605772,245,0 +170741605821,245,0 +170741605871,245,0 +170741605918,246,0 +170741605968,245,0 +170741606017,245,0 +170741606065,245,0 +170741606113,245,0 +170741606161,245,0 +170741606209,245,0 +170741606257,245,0 +170741606305,245,0 +170741606353,245,0 +170741606401,245,0 +170741606451,245,0 +170741606499,245,0 +170741606547,245,0 +170741606595,245,0 +170741606643,245,0 +170741606692,245,0 +170741606740,245,0 +170741606788,245,0 +170741606837,245,0 +170741606885,245,0 +170741606933,245,0 +170741606981,245,0 +170741607029,245,0 +170741607077,245,0 +170741607127,245,0 +170741607175,245,0 +170741607223,245,0 +170741607272,245,0 +170741607322,245,0 +170741607371,245,0 +170741607421,245,0 +170741607469,245,0 +170741607518,245,0 +170741607566,245,0 +170741607614,245,0 +170741607664,245,0 +170741607712,245,0 +170741607760,245,0 +170741607808,245,0 +170741607857,245,0 +170741607907,245,0 +170741607956,245,0 +170741608004,245,0 +170741608052,245,0 +170741608102,245,0 +170741608150,245,0 +170741608198,245,0 +170741608247,245,0 +170741608295,245,0 +170741608343,245,0 +170741608392,246,0 +170741608440,245,0 +170741608488,245,0 +170741608538,245,0 +170741608586,245,0 +170741608635,245,0 +170741608683,245,0 +170741608733,245,0 +170741608781,245,0 +170741608830,245,0 +170741608878,245,0 +170741608928,245,0 +170741608976,245,0 +170741609024,245,0 +170741609073,245,0 +170741609121,245,0 +170741609171,245,0 +170741609219,245,0 +170741609267,245,0 +170741609316,245,0 +170741609366,245,0 +170741609415,245,0 +170741609463,245,0 +170741609511,245,0 +170741609561,245,0 +170741609609,245,0 +170741609658,245,0 +170741609706,245,0 +170741609754,245,0 +170741609802,245,0 +170741609850,245,0 +170741609898,245,0 +170741609948,245,0 +170741609997,245,0 +170741610045,245,0 +170741610093,245,0 +170741610142,245,0 +170741610190,245,0 +170741610238,245,0 +170741610288,245,0 +170741610336,245,0 +170741610384,245,0 +170741610432,245,0 +170741610480,245,0 +170741610528,245,0 +170741610576,245,0 +170741610625,245,0 +170741610673,245,0 +170741610723,245,0 +170741610772,245,0 +170741610822,245,0 +170741610871,245,0 +170741610919,245,0 +170741610967,245,0 +170741611015,245,0 +170741611063,245,0 +170741611111,245,0 +170741611161,245,0 +170741611208,245,0 +170741611256,245,0 +170741611304,245,0 +170741611352,245,0 +170741611400,245,0 +170741611448,245,0 +170741611496,245,0 +170741611543,245,0 +170741611591,245,0 +170741611639,245,0 +170741611687,245,0 +170741611735,245,0 +170741611783,245,0 +170741611831,245,0 +170741611879,245,0 +170741611927,245,0 +170741611976,245,0 +170741612024,245,0 +170741612073,245,0 +170741612123,246,0 +170741612170,245,0 +170741612218,245,0 +170741612266,245,0 +170741612314,245,0 +170741612364,245,0 +170741612412,245,0 +170741612460,245,0 +170741612508,245,0 +170741612556,245,0 +170741612604,245,0 +170741612651,245,0 +170741612701,245,0 +170741612751,245,0 +170741612800,245,0 +170741612848,245,0 +170741612896,245,0 +170741612944,245,0 +170741612992,246,0 +170741613040,246,0 +170741613089,245,0 +170741613137,245,0 +170741613185,245,0 +170741613235,245,0 +170741613283,245,0 +170741613332,245,0 +170741613380,245,0 +170741613430,245,0 +170741613478,245,0 +170741613526,245,0 +170741613575,245,0 +170741613625,245,0 +170741613673,245,0 +170741613721,245,0 +170741613768,245,0 +170741613816,245,0 +170741613864,245,0 +170741613912,245,0 +170741613962,245,0 +170741614010,245,0 +170741614058,245,0 +170741614106,245,0 +170741614155,245,0 +170741614205,245,0 +170741614254,245,0 +170741614304,245,0 +170741614353,245,0 +170741614403,245,0 +170741614452,245,0 +170741614502,245,0 +170741614550,245,0 +170741614598,245,0 +170741614647,245,0 +170741614695,245,0 +170741614743,245,0 +170741614791,245,0 +170741614840,245,0 +170741614888,245,0 +170741614936,245,0 +170741614986,245,0 +170741615034,245,0 +170741615082,245,0 +170741615131,245,0 +170741615179,245,0 +170741615227,245,0 +170741615275,245,0 +170741615323,245,0 +170741615373,245,0 +170741615421,245,0 +170741615470,245,0 +170741615518,245,0 +170741615566,246,0 +170741615614,245,0 +170741615662,245,0 +170741615710,245,0 +170741615758,245,0 +170741615806,245,0 +170741615853,245,0 +170741615901,245,0 +170741615949,245,0 +170741615997,245,0 +170741616047,245,0 +170741616095,245,0 +170741616143,245,0 +170741616192,245,0 +170741616240,245,0 +170741616288,245,0 +170741616336,245,0 +170741616384,245,0 +170741616434,245,0 +170741616483,245,0 +170741616533,245,0 +170741616582,245,0 +170741616630,245,0 +170741616678,245,0 +170741616726,245,0 +170741616774,245,0 +170741616822,245,0 +170741616870,245,0 +170741616918,246,0 +170741616966,245,0 +170741617014,245,0 +170741617063,245,0 +170741617113,245,0 +170741617161,245,0 +170741617208,245,0 +170741617256,245,0 +170741617304,245,0 +170741617354,245,0 +170741617402,245,0 +170741617451,245,0 +170741617501,245,0 +170741617550,245,0 +170741617598,245,0 +170741617648,245,0 +170741617696,245,0 +170741617744,245,0 +170741617793,245,0 +170741617841,245,0 +170741617889,245,0 +170741617937,245,0 +170741617985,245,0 +170741618032,245,0 +170741618080,245,0 +170741618130,246,0 +170741618178,245,0 +170741618226,245,0 +170741618273,245,0 +170741618321,245,0 +170741618371,245,0 +170741618420,245,0 +170741618468,245,0 +170741618516,245,0 +170741618564,245,0 +170741618612,245,0 +170741618660,245,0 +170741618707,245,0 +170741618755,245,0 +170741618803,245,0 +170741618851,245,0 +170741618901,245,0 +170741618948,246,0 +170741618996,245,0 +170741619044,246,0 +170741619092,245,0 +170741619140,245,0 +170741619188,245,0 +170741619236,245,0 +170741619284,245,0 +170741619331,245,0 +170741619379,245,0 +170741619427,245,0 +170741619475,245,0 +170741619523,245,0 +170741619573,245,0 +170741619622,245,0 +170741619670,245,0 +170741619718,245,0 +170741619766,245,0 +170741619814,245,0 +170741619862,245,0 +170741619910,245,0 +170741619959,245,0 +170741620009,245,0 +170741620057,245,0 +170741620105,246,0 +170741620154,245,0 +170741620202,245,0 +170741620252,245,0 +170741620301,246,0 +170741620351,245,0 +170741620400,245,0 +170741620450,245,0 +170741620498,245,0 +170741620546,245,0 +170741620594,245,0 +170741620643,245,0 +170741620691,245,0 +170741620741,245,0 +170741620788,245,0 +170741620838,245,0 +170741620886,245,0 +170741620934,245,0 +170741620983,245,0 +170741621031,245,0 +170741621079,245,0 +170741621127,245,0 +170741621177,245,0 +170741621225,245,0 +170741621273,245,0 +170741621322,245,0 +170741621370,245,0 +170741621420,245,0 +170741621468,245,0 +170741621515,245,0 +170741621565,245,0 +170741621613,245,0 +170741621662,245,0 +170741621712,245,0 +170741621760,245,0 +170741621808,245,0 +170741621855,245,0 +170741621903,245,0 +170741621951,245,0 +170741621999,245,0 +170741622047,245,0 +170741622095,245,0 +170741622142,245,0 +170741622190,245,0 +170741622240,245,0 +170741622289,245,0 +170741622337,245,0 +170741622385,245,0 +170741622433,245,0 +170741622481,245,0 +170741622529,245,0 +170741622579,245,0 +170741622628,245,0 +170741622676,245,0 +170741622724,245,0 +170741622772,245,0 +170741622820,245,0 +170741622868,245,0 +170741622917,245,0 +170741622965,245,0 +170741623013,245,0 +170741623061,245,0 +170741623109,245,0 +170741623157,245,0 +170741623205,245,0 +170741623255,245,0 +170741623302,245,0 +170741623350,245,0 +170741623398,245,0 +170741623446,245,0 +170741623494,245,0 +170741623542,245,0 +170741623592,245,0 +170741623640,245,0 +170741623688,245,0 +170741623736,245,0 +170741623783,245,0 +170741623831,245,0 +170741623879,245,0 +170741623927,245,0 +170741623976,245,0 +170741624026,245,0 +170741624075,245,0 +170741624123,245,0 +170741624173,245,0 +170741624221,245,0 +170741624269,245,0 +170741624318,245,0 +170741624366,245,0 +170741624414,245,0 +170741624464,246,0 +170741624513,245,0 +170741624563,245,0 +170741624611,245,0 +170741624659,245,0 +170741624708,245,0 +170741624758,245,0 +170741624806,245,0 +170741624853,245,0 +170741624903,245,0 +170741624951,246,0 +170741625001,245,0 +170741625048,245,0 +170741625096,245,0 +170741625146,245,0 +170741625194,245,0 +170741625242,245,0 +170741625290,245,0 +170741625338,245,0 +170741625387,245,0 +170741625437,245,0 +170741625485,245,0 +170741625533,245,0 +170741625581,245,0 +170741625630,245,0 +170741625678,245,0 +170741625726,245,0 +170741625776,245,0 +170741625824,245,0 +170741625873,245,0 +170741625923,245,0 +170741625971,245,0 +170741626020,245,0 +170741626069,245,0 +170741626119,246,0 +170741626169,245,0 +170741626217,245,0 +170741626264,245,0 +170741626314,246,0 +170741626362,245,0 +170741626411,245,0 +170741626459,245,0 +170741626507,245,0 +170741626555,245,0 +170741626603,245,0 +170741626653,245,0 +170741626701,245,0 +170741626749,245,0 +170741626798,245,0 +170741626848,245,0 +170741626896,245,0 +170741626944,245,0 +170741626992,245,0 +170741627041,245,0 +170741627089,245,0 +170741627137,245,0 +170741627185,245,0 +170741627233,245,0 +170741627281,245,0 +170741627329,245,0 +170741627377,245,0 +170741627426,245,0 +170741627474,245,0 +170741627522,245,0 +170741627570,245,0 +170741627618,245,0 +170741627668,245,0 +170741627716,245,0 +170741627765,245,0 +170741627813,245,0 +170741627861,245,0 +170741627909,245,0 +170741627959,245,0 +170741628007,245,0 +170741628056,245,0 +170741628104,245,0 +170741628152,245,0 +170741628200,245,0 +170741628250,245,0 +170741628298,245,0 +170741628346,245,0 +170741628395,245,0 +170741628443,245,0 +170741628491,245,0 +170741628539,245,0 +170741628587,245,0 +170741628636,245,0 +170741628684,245,0 +170741628732,245,0 +170741628780,245,0 +170741628828,245,0 +170741628876,245,0 +170741628924,245,0 +170741628972,245,0 +170741629020,245,0 +170741629070,245,0 +170741629118,245,0 +170741629166,245,0 +170741629213,245,0 +170741629261,245,0 +170741629311,245,0 +170741629360,245,0 +170741629410,245,0 +170741629458,245,0 +170741629506,245,0 +170741629555,245,0 +170741629605,245,0 +170741629653,245,0 +170741629701,245,0 +170741629750,245,0 +170741629798,245,0 +170741629848,245,0 +170741629896,245,0 +170741629944,245,0 +170741629992,245,0 +170741630040,245,0 +170741630088,245,0 +170741630136,245,0 +170741630183,245,0 +170741630233,245,0 +170741630281,245,0 +170741630329,245,0 +170741630377,245,0 +170741630426,245,0 +170741630476,245,0 +170741630524,245,0 +170741630572,245,0 +170741630620,245,0 +170741630669,245,0 +170741630719,245,0 +170741630767,245,0 +170741630816,245,0 +170741630864,245,0 +170741630912,245,0 +170741630962,244,0 +170741631010,245,0 +170741631059,245,0 +170741631107,245,0 +170741631155,245,0 +170741631203,245,0 +170741631251,245,0 +170741631301,245,0 +170741631349,245,0 +170741631398,246,0 +170741631446,245,0 +170741631496,245,0 +170741631544,245,0 +170741631593,245,0 +170741631643,245,0 +170741631691,245,0 +170741631739,245,0 +170741631787,245,0 +170741631835,245,0 +170741631882,245,0 +170741631930,245,0 +170741631978,245,0 +170741632028,245,0 +170741632076,245,0 +170741632124,245,0 +170741632173,245,0 +170741632221,245,0 +170741632269,245,0 +170741632319,245,0 +170741632367,245,0 +170741632416,245,0 +170741632466,245,0 +170741632514,245,0 +170741632563,245,0 +170741632613,245,0 +170741632662,245,0 +170741632710,245,0 +170741632760,245,0 +170741632808,245,0 +170741632855,245,0 +170741632903,245,0 +170741632953,245,0 +170741633001,245,0 +170741633050,245,0 +170741633098,245,0 +170741633148,245,0 +170741633197,245,0 +170741633245,245,0 +170741633293,245,0 +170741633343,246,0 +170741633392,245,0 +170741633440,245,0 +170741633490,245,0 +170741633538,246,0 +170741633586,245,0 +170741633634,245,0 +170741633683,245,0 +170741633731,245,0 +170741633780,245,0 +170741633830,245,0 +170741633878,246,0 +170741633927,245,0 +170741633975,245,0 +170741634023,245,0 +170741634071,245,0 +170741634119,245,0 +170741634169,245,0 +170741634217,245,0 +170741634266,245,0 +170741634314,245,0 +170741634364,246,0 +170741634412,245,0 +170741634461,245,0 +170741634509,245,0 +170741634557,245,0 +170741634605,246,0 +170741634653,245,0 +170741634701,245,0 +170741634749,245,0 +170741634797,245,0 +170741634845,245,0 +170741634895,245,0 +170741634943,245,0 +170741634992,245,0 +170741635040,245,0 +170741635090,245,0 +170741635138,245,0 +170741635187,245,0 +170741635235,245,0 +170741635283,245,0 +170741635331,245,0 +170741635379,245,0 +170741635427,245,0 +170741635476,245,0 +170741635524,245,0 +170741635572,245,0 +170741635622,245,0 +170741635670,245,0 +170741635719,245,0 +170741635767,245,0 +170741635815,245,0 +170741635865,245,0 +170741635913,245,0 +170741635961,245,0 +170741636008,245,0 +170741636056,245,0 +170741636104,245,0 +170741636152,245,0 +170741636202,245,0 +170741636249,245,0 +170741636297,245,0 +170741636345,245,0 +170741636393,245,0 +170741636441,245,0 +170741636489,245,0 +170741636537,245,0 +170741636585,245,0 +170741636633,245,0 +170741636680,245,0 +170741636728,245,0 +170741636776,245,0 +170741636824,245,0 +170741636873,245,0 +170741636921,245,0 +170741636969,245,0 +170741637019,245,0 +170741637067,245,0 +170741637114,245,0 +170741637162,245,0 +170741637210,245,0 +170741637258,245,0 +170741637307,245,0 +170741637355,245,0 +170741637403,245,0 +170741637451,245,0 +170741637499,245,0 +170741637548,245,0 +170741637596,245,0 +170741637644,245,0 +170741637692,245,0 +170741637740,245,0 +170741637788,245,0 +170741637836,245,0 +170741637883,245,0 +170741637931,245,0 +170741637979,245,0 +170741638027,245,0 +170741638075,245,0 +170741638123,246,0 +170741638171,245,0 +170741638219,245,0 +170741638267,245,0 +170741638316,245,0 +170741638364,245,0 +170741638412,245,0 +170741638460,245,0 +170741638508,245,0 +170741638557,245,0 +170741638606,245,0 +170741638654,245,0 +170741638702,245,0 +170741638750,245,0 +170741638799,245,0 +170741638847,245,0 +170741638897,245,0 +170741638945,245,0 +170741638992,245,0 +170741639040,245,0 +170741639088,245,0 +170741639138,245,0 +170741639186,245,0 +170741639233,245,0 +170741639281,245,0 +170741639329,245,0 +170741639377,245,0 +170741639425,245,0 +170741639473,245,0 +170741639521,245,0 +170741639569,245,0 +170741639617,245,0 +170741639665,245,0 +170741639712,245,0 +170741639760,245,0 +170741639808,245,0 +170741639856,245,0 +170741639904,245,0 +170741639952,245,0 +170741640000,245,0 +170741640049,245,0 +170741640097,245,0 +170741640145,245,0 +170741640193,245,0 +170741640241,245,0 +170741640290,245,0 +170741640338,245,0 +170741640386,245,0 +170741640434,245,0 +170741640482,245,0 +170741640530,245,0 +170741640577,245,0 +170741640625,245,0 +170741640673,245,0 +170741640721,245,0 +170741640769,245,0 +170741640817,245,0 +170741640865,245,0 +170741640913,245,0 +170741640961,245,0 +170741641009,245,0 +170741641057,245,0 +170741641106,245,0 +170741641154,245,0 +170741641202,245,0 +170741641250,245,0 +170741641298,245,0 +170741641346,245,0 +170741641394,245,0 +170741641442,245,0 +170741641490,246,0 +170741641538,245,0 +170741641586,246,0 +170741641633,245,0 +170741641683,245,0 +170741641731,245,0 +170741641779,245,0 +170741641827,245,0 +170741641875,245,0 +170741641923,245,0 +170741641972,245,0 +170741642020,245,0 +170741642068,245,0 +170741642118,245,0 +170741642166,245,0 +170741642214,245,0 +170741642261,245,0 +170741642309,245,0 +170741642357,245,0 +170741642407,245,0 +170741642456,245,0 +170741642506,245,0 +170741642554,245,0 +170741642602,245,0 +170741642649,245,0 +170741642697,245,0 +170741642745,245,0 +170741642793,245,0 +170741642841,245,0 +170741642889,245,0 +170741642937,245,0 +170741642984,245,0 +170741643032,245,0 +170741643080,245,0 +170741643128,245,0 +170741643176,245,0 +170741643224,245,0 +170741643273,245,0 +170741643321,245,0 +170741643369,245,0 +170741643417,245,0 +170741643466,245,0 +170741643514,245,0 +170741643562,245,0 +170741643610,245,0 +170741643658,245,0 +170741643706,245,0 +170741643754,245,0 +170741643802,245,0 +170741643851,245,0 +170741643901,244,0 +170741643949,245,0 +170741643998,245,0 +170741644048,246,0 +170741644096,245,0 +170741644144,245,0 +170741644192,245,0 +170741644240,245,0 +170741644288,245,0 +170741644336,245,0 +170741644385,245,0 +170741644435,245,0 +170741644483,245,0 +170741644531,245,0 +170741644579,245,0 +170741644628,245,0 +170741644678,246,0 +170741644725,245,0 +170741644775,245,0 +170741644824,245,0 +170741644872,245,0 +170741644920,245,0 +170741644968,245,0 +170741645016,245,0 +170741645064,245,0 +170741645112,245,0 +170741645160,245,0 +170741645209,245,0 +170741645257,245,0 +170741645305,245,0 +170741645353,245,0 +170741645401,245,0 +170741645449,245,0 +170741645497,245,0 +170741645545,245,0 +170741645593,245,0 +170741645640,245,0 +170741645688,245,0 +170741645736,245,0 +170741645784,245,0 +170741645832,245,0 +170741645882,245,0 +170741645929,245,0 +170741645977,245,0 +170741646025,245,0 +170741646073,245,0 +170741646121,245,0 +170741646169,245,0 +170741646217,245,0 +170741646266,245,0 +170741646314,245,0 +170741646362,245,0 +170741646410,245,0 +170741646458,245,0 +170741646506,245,0 +170741646553,245,0 +170741646601,245,0 +170741646649,245,0 +170741646699,245,0 +170741646747,245,0 +170741646795,245,0 +170741646843,245,0 +170741646892,245,0 +170741646940,245,0 +170741646988,245,0 +170741647037,245,0 +170741647087,245,0 +170741647135,245,0 +170741647183,245,0 +170741647231,245,0 +170741647279,245,0 +170741647327,245,0 +170741647375,245,0 +170741647424,245,0 +170741647472,245,0 +170741647522,245,0 +170741647571,245,0 +170741647621,245,0 +170741647669,245,0 +170741647717,245,0 +170741647764,245,0 +170741647812,245,0 +170741647862,245,0 +170741647910,245,0 +170741647958,245,0 +170741648007,245,0 +170741648057,245,0 +170741648106,245,0 +170741648156,245,0 +170741648205,245,0 +170741648253,245,0 +170741648303,245,0 +170741648351,245,0 +170741648399,245,0 +170741648447,245,0 +170741648495,245,0 +170741648542,245,0 +170741648590,245,0 +170741648640,245,0 +170741648688,245,0 +170741648736,245,0 +170741648785,245,0 +170741648833,245,0 +170741648883,245,0 +170741648932,245,0 +170741648980,245,0 +170741649028,245,0 +170741649076,245,0 +170741649124,245,0 +170741649172,245,0 +170741649220,245,0 +170741649268,245,0 +170741649316,245,0 +170741649364,244,0 +170741649413,245,0 +170741649461,245,0 +170741649511,245,0 +170741649559,245,0 +170741649607,245,0 +170741649656,245,0 +170741649704,245,0 +170741649752,245,0 +170741649800,245,0 +170741649850,245,0 +170741649899,245,0 +170741649949,246,0 +170741649997,245,0 +170741650045,245,0 +170741650094,245,0 +170741650142,245,0 +170741650192,245,0 +170741650241,245,0 +170741650289,245,0 +170741650339,245,0 +170741650387,245,0 +170741650435,245,0 +170741650483,245,0 +170741650531,245,0 +170741650578,245,0 +170741650626,245,0 +170741650676,244,0 +170741650724,245,0 +170741650772,245,0 +170741650820,245,0 +170741650868,245,0 +170741650917,245,0 +170741650967,245,0 +170741651015,245,0 +170741651064,245,0 +170741651112,245,0 +170741651160,245,0 +170741651210,245,0 +170741651259,245,0 +170741651309,245,0 +170741651357,245,0 +170741651405,245,0 +170741651453,245,0 +170741651501,245,0 +170741651548,246,0 +170741651596,245,0 +170741651644,245,0 +170741651694,245,0 +170741651743,245,0 +170741651793,245,0 +170741651841,245,0 +170741651889,245,0 +170741651937,245,0 +170741651985,245,0 +170741652033,245,0 +170741652081,245,0 +170741652129,245,0 +170741652178,245,0 +170741652226,245,0 +170741652276,245,0 +170741652325,245,0 +170741652373,245,0 +170741652421,245,0 +170741652469,245,0 +170741652517,245,0 +170741652565,245,0 +170741652613,245,0 +170741652662,245,0 +170741652710,245,0 +170741652758,245,0 +170741652806,245,0 +170741652854,245,0 +170741652902,245,0 +170741652952,246,0 +170741653001,245,0 +170741653051,245,0 +170741653100,245,0 +170741653150,245,0 +170741653198,245,0 +170741653247,245,0 +170741653295,245,0 +170741653343,245,0 +170741653391,245,0 +170741653439,245,0 +170741653489,245,0 +170741653536,245,0 +170741653584,245,0 +170741653632,245,0 +170741653682,245,0 +170741653730,245,0 +170741653778,245,0 +170741653826,245,0 +170741653874,245,0 +170741653922,245,0 +170741653970,245,0 +170741654018,245,0 +170741654067,245,0 +170741654117,245,0 +170741654166,245,0 +170741654216,245,0 +170741654264,245,0 +170741654313,245,0 +170741654361,245,0 +170741654409,245,0 +170741654459,245,0 +170741654507,245,0 +170741654555,245,0 +170741654602,245,0 +170741654650,245,0 +170741654700,245,0 +170741654748,245,0 +170741654797,245,0 +170741654845,245,0 +170741654893,245,0 +170741654941,245,0 +170741654989,245,0 +170741655039,245,0 +170741655088,245,0 +170741655138,245,0 +170741655186,245,0 +170741655234,245,0 +170741655282,245,0 +170741655330,245,0 +170741655379,245,0 +170741655427,245,0 +170741655477,245,0 +170741655525,245,0 +170741655573,245,0 +170741655620,245,0 +170741655670,245,0 +170741655719,245,0 +170741655767,245,0 +170741655815,245,0 +170741655863,246,0 +170741655911,245,0 +170741655959,245,0 +170741656009,245,0 +170741656057,245,0 +170741656106,245,0 +170741656156,245,0 +170741656205,245,0 +170741656255,245,0 +170741656303,245,0 +170741656351,245,0 +170741656400,245,0 +170741656450,245,0 +170741656499,245,0 +170741656547,246,0 +170741656595,245,0 +170741656645,245,0 +170741656693,246,0 +170741656741,245,0 +170741656789,245,0 +170741656837,245,0 +170741656884,245,0 +170741656932,245,0 +170741656982,245,0 +170741657030,246,0 +170741657078,245,0 +170741657126,245,0 +170741657175,245,0 +170741657225,245,0 +170741657273,245,0 +170741657322,245,0 +170741657372,245,0 +170741657420,245,0 +170741657469,245,0 +170741657517,245,0 +170741657565,245,0 +170741657613,245,0 +170741657661,245,0 +170741657710,245,0 +170741657758,245,0 +170741657806,245,0 +170741657854,246,0 +170741657902,245,0 +170741657950,245,0 +170741657998,245,0 +170741658046,245,0 +170741658094,245,0 +170741658143,245,0 +170741658191,245,0 +170741658239,245,0 +170741658289,245,0 +170741658336,246,0 +170741658384,245,0 +170741658432,245,0 +170741658480,245,0 +170741658530,245,0 +170741658580,245,0 +170741658629,245,0 +170741658679,245,0 +170741658727,245,0 +170741658774,245,0 +170741658824,245,0 +170741658872,245,0 +170741658920,245,0 +170741658967,245,0 +170741659017,245,0 +170741659065,245,0 +170741659113,245,0 +170741659161,245,0 +170741659208,245,0 +170741659256,245,0 +170741659304,245,0 +170741659352,245,0 +170741659400,245,0 +170741659448,245,0 +170741659496,245,0 +170741659543,245,0 +170741659591,245,0 +170741659639,245,0 +170741659687,245,0 +170741659735,245,0 +170741659783,245,0 +170741659831,245,0 +170741659878,245,0 +170741659926,245,0 +170741659974,245,0 +170741660022,245,0 +170741660070,245,0 +170741660119,245,0 +170741660169,245,0 +170741660217,246,0 +170741660265,245,0 +170741660313,245,0 +170741660360,245,0 +170741660408,245,0 +170741660458,245,0 +170741660506,245,0 +170741660554,245,0 +170741660602,245,0 +170741660651,245,0 +170741660699,245,0 +170741660747,245,0 +170741660795,245,0 +170741660842,245,0 +170741660890,245,0 +170741660938,245,0 +170741660988,245,0 +170741661036,245,0 +170741661084,245,0 +170741661131,245,0 +170741661179,245,0 +170741661227,245,0 +170741661275,245,0 +170741661323,245,0 +170741661371,245,0 +170741661419,245,0 +170741661467,245,0 +170741661514,245,0 +170741661562,246,0 +170741661610,245,0 +170741661658,245,0 +170741661706,245,0 +170741661754,245,0 +170741661803,245,0 +170741661851,245,0 +170741661899,245,0 +170741661947,245,0 +170741661995,245,0 +170741662043,245,0 +170741662091,245,0 +170741662138,245,0 +170741662186,245,0 +170741662234,245,0 +170741662282,245,0 +170741662332,245,0 +170741662381,245,0 +170741662429,245,0 +170741662477,245,0 +170741662525,245,0 +170741662573,245,0 +170741662620,245,0 +170741662668,245,0 +170741662718,245,0 +170741662766,245,0 +170741662815,245,0 +170741662863,245,0 +170741662913,245,0 +170741662962,245,0 +170741663010,245,0 +170741663058,245,0 +170741663107,245,0 +170741663157,245,0 +170741663206,245,0 +170741663254,246,0 +170741663304,245,0 +170741663352,245,0 +170741663400,245,0 +170741663448,245,0 +170741663497,245,0 +170741663547,245,0 +170741663595,245,0 +170741663643,245,0 +170741663692,245,0 +170741663740,245,0 +170741663790,245,0 +170741663839,245,0 +170741663887,245,0 +170741663935,245,0 +170741663983,245,0 +170741664032,246,0 +170741664080,245,0 +170741664128,246,0 +170741664176,245,0 +170741664224,245,0 +170741664274,245,0 +170741664322,245,0 +170741664370,246,0 +170741664417,245,0 +170741664467,245,0 +170741664515,245,0 +170741664564,245,0 +170741664612,245,0 +170741664662,245,0 +170741664710,245,0 +170741664758,245,0 +170741664806,245,0 +170741664854,245,0 +170741664902,245,0 +170741664951,245,0 +170741665001,245,0 +170741665049,245,0 +170741665097,245,0 +170741665145,245,0 +170741665192,245,0 +170741665240,245,0 +170741665290,245,0 +170741665339,246,0 +170741665387,245,0 +170741665435,245,0 +170741665483,245,0 +170741665531,245,0 +170741665579,245,0 +170741665627,245,0 +170741665676,245,0 +170741665724,245,0 +170741665772,246,0 +170741665820,245,0 +170741665868,245,0 +170741665917,245,0 +170741665965,245,0 +170741666013,245,0 +170741666063,246,0 +170741666111,245,0 +170741666158,245,0 +170741666206,245,0 +170741666254,245,0 +170741666302,245,0 +170741666350,245,0 +170741666398,245,0 +170741666446,245,0 +170741666494,245,0 +170741666541,245,0 +170741666589,245,0 +170741666637,245,0 +170741666685,245,0 +170741666733,245,0 +170741666781,245,0 +170741666829,245,0 +170741666877,245,0 +170741666925,245,0 +170741666972,245,0 +170741667020,246,0 +170741667068,245,0 +170741667116,245,0 +170741667164,245,0 +170741667212,245,0 +170741667260,245,0 +170741667308,245,0 +170741667356,245,0 +170741667403,245,0 +170741667451,245,0 +170741667499,245,0 +170741667549,245,0 +170741667597,245,0 +170741667646,245,0 +170741667696,246,0 +170741667744,245,0 +170741667792,245,0 +170741667840,245,0 +170741667888,246,0 +170741667937,245,0 +170741667985,245,0 +170741668035,245,0 +170741668083,245,0 +170741668130,245,0 +170741668178,245,0 +170741668228,245,0 +170741668276,245,0 +170741668324,245,0 +170741668372,245,0 +170741668419,245,0 +170741668467,245,0 +170741668515,245,0 +170741668563,245,0 +170741668611,245,0 +170741668659,245,0 +170741668707,245,0 +170741668755,245,0 +170741668803,245,0 +170741668851,245,0 +170741668899,245,0 +170741668947,245,0 +170741668994,245,0 +170741669042,245,0 +170741669090,245,0 +170741669138,245,0 +170741669186,245,0 +170741669234,245,0 +170741669282,245,0 +170741669330,245,0 +170741669377,245,0 +170741669425,245,0 +170741669473,245,0 +170741669521,245,0 +170741669569,245,0 +170741669617,245,0 +170741669665,245,0 +170741669715,245,0 +170741669764,245,0 +170741669814,245,0 +170741669863,245,0 +170741669911,245,0 +170741669959,245,0 +170741670008,245,0 +170741670058,245,0 +170741670106,245,0 +170741670154,245,0 +170741670203,245,0 +170741670253,245,0 +170741670301,245,0 +170741670349,245,0 +170741670397,245,0 +170741670446,245,0 +170741670494,245,0 +170741670544,245,0 +170741670593,245,0 +170741670641,245,0 +170741670689,245,0 +170741670738,245,0 +170741670788,245,0 +170741670836,245,0 +170741670884,245,0 +170741670932,245,0 +170741670981,245,0 +170741671031,245,0 +170741671079,246,0 +170741671128,245,0 +170741671178,245,0 +170741671226,245,0 +170741671274,245,0 +170741671323,245,0 +170741671371,245,0 +170741671420,245,0 +170741671468,245,0 +170741671516,245,0 +170741671564,245,0 +170741671612,245,0 +170741671660,245,0 +170741671708,245,0 +170741671756,245,0 +170741671806,245,0 +170741671855,245,0 +170741671903,245,0 +170741671952,245,0 +170741672002,245,0 +170741672050,246,0 +170741672098,246,0 +170741672147,245,0 +170741672195,245,0 +170741672243,245,0 +170741672291,245,0 +170741672339,245,0 +170741672387,245,0 +170741672435,245,0 +170741672483,245,0 +170741672533,245,0 +170741672580,245,0 +170741672630,245,0 +170741672678,245,0 +170741672726,245,0 +170741672775,245,0 +170741672825,245,0 +170741672873,245,0 +170741672921,245,0 +170741672969,245,0 +170741673017,245,0 +170741673064,245,0 +170741673114,245,0 +170741673162,245,0 +170741673210,245,0 +170741673258,245,0 +170741673305,245,0 +170741673353,245,0 +170741673401,245,0 +170741673449,245,0 +170741673497,245,0 +170741673547,245,0 +170741673596,245,0 +170741673644,245,0 +170741673692,245,0 +170741673740,245,0 +170741673788,245,0 +170741673836,245,0 +170741673884,245,0 +170741673932,245,0 +170741673981,245,0 +170741674031,245,0 +170741674078,245,0 +170741674126,245,0 +170741674174,245,0 +170741674222,245,0 +170741674270,245,0 +170741674318,245,0 +170741674366,245,0 +170741674414,245,0 +170741674461,245,0 +170741674509,245,0 +170741674557,245,0 +170741674605,245,0 +170741674653,245,0 +170741674701,245,0 +170741674749,245,0 +170741674797,245,0 +170741674845,245,0 +170741674892,246,0 +170741674940,245,0 +170741674988,245,0 +170741675036,245,0 +170741675084,245,0 +170741675132,245,0 +170741675181,245,0 +170741675229,245,0 +170741675277,245,0 +170741675327,245,0 +170741675375,245,0 +170741675424,245,0 +170741675472,245,0 +170741675522,245,0 +170741675571,245,0 +170741675619,246,0 +170741675667,245,0 +170741675715,245,0 +170741675764,245,0 +170741675812,245,0 +170741675860,245,0 +170741675910,245,0 +170741675958,244,0 +170741676007,245,0 +170741676055,245,0 +170741676105,245,0 +170741676153,245,0 +170741676200,245,0 +170741676250,245,0 +170741676298,245,0 +170741676347,245,0 +170741676397,245,0 +170741676445,245,0 +170741676493,245,0 +170741676541,245,0 +170741676589,245,0 +170741676638,245,0 +170741676686,245,0 +170741676736,245,0 +170741676784,245,0 +170741676833,245,0 +170741676881,245,0 +170741676929,245,0 +170741676977,245,0 +170741677025,245,0 +170741677073,245,0 +170741677121,245,0 +170741677171,245,0 +170741677219,245,0 +170741677266,245,0 +170741677316,245,0 +170741677364,245,0 +170741677413,245,0 +170741677463,245,0 +170741677513,245,0 +170741677560,245,0 +170741677608,245,0 +170741677656,245,0 +170741677704,245,0 +170741677752,245,0 +170741677800,245,0 +170741677848,245,0 +170741677896,245,0 +170741677945,245,0 +170741677993,245,0 +170741678043,245,0 +170741678092,245,0 +170741678140,245,0 +170741678188,245,0 +170741678236,245,0 +170741678284,245,0 +170741678332,245,0 +170741678379,245,0 +170741678427,245,0 +170741678475,245,0 +170741678523,245,0 +170741678571,245,0 +170741678619,245,0 +170741678667,245,0 +170741678715,245,0 +170741678763,245,0 +170741678812,245,0 +170741678862,245,0 +170741678912,245,0 +170741678959,245,0 +170741679009,245,0 +170741679058,245,0 +170741679106,246,0 +170741679154,245,0 +170741679204,245,0 +170741679252,246,0 +170741679300,245,0 +170741679349,245,0 +170741679397,245,0 +170741679445,245,0 +170741679493,245,0 +170741679541,245,0 +170741679589,245,0 +170741679638,245,0 +170741679688,245,0 +170741679736,245,0 +170741679785,245,0 +170741679835,245,0 +170741679885,245,0 +170741679934,245,0 +170741679982,246,0 +170741680030,246,0 +170741680078,245,0 +170741680126,245,0 +170741680174,246,0 +170741680222,245,0 +170741680270,245,0 +170741680318,245,0 +170741680366,245,0 +170741680414,245,0 +170741680463,245,0 +170741680511,245,0 +170741680559,245,0 +170741680607,245,0 +170741680655,245,0 +170741680703,245,0 +170741680751,245,0 +170741680799,245,0 +170741680849,245,0 +170741680898,245,0 +170741680946,245,0 +170741680996,245,0 +170741681043,245,0 +170741681091,245,0 +170741681139,245,0 +170741681187,245,0 +170741681235,245,0 +170741681285,245,0 +170741681333,245,0 +170741681381,245,0 +170741681429,245,0 +170741681477,245,0 +170741681525,245,0 +170741681574,245,0 +170741681622,245,0 +170741681670,246,0 +170741681720,245,0 +170741681768,245,0 +170741681816,246,0 +170741681865,246,0 +170741681913,245,0 +170741681961,245,0 +170741682009,245,0 +170741682057,245,0 +170741682105,245,0 +170741682154,246,0 +170741682202,245,0 +170741682250,245,0 +170741682298,246,0 +170741682346,245,0 +170741682394,245,0 +170741682442,245,0 +170741682490,245,0 +170741682538,245,0 +170741682586,245,0 +170741682634,245,0 +170741682681,245,0 +170741682729,246,0 +170741682777,245,0 +170741682825,246,0 +170741682875,245,0 +170741682923,245,0 +170741682970,245,0 +170741683018,245,0 +170741683066,245,0 +170741683114,245,0 +170741683162,245,0 +170741683210,245,0 +170741683258,245,0 +170741683308,245,0 +170741683356,245,0 +170741683404,245,0 +170741683453,245,0 +170741683501,245,0 +170741683549,245,0 +170741683597,245,0 +170741683645,245,0 +170741683693,245,0 +170741683743,245,0 +170741683792,245,0 +170741683840,245,0 +170741683888,245,0 +170741683936,245,0 +170741683984,245,0 +170741684032,245,0 +170741684080,245,0 +170741684129,245,0 +170741684177,245,0 +170741684225,245,0 +170741684273,245,0 +170741684321,245,0 +170741684369,245,0 +170741684417,245,0 +170741684465,245,0 +170741684514,245,0 +170741684564,245,0 +170741684612,245,0 +170741684660,245,0 +170741684709,245,0 +170741684757,245,0 +170741684805,245,0 +170741684853,245,0 +170741684901,245,0 +170741684949,245,0 +170741684999,245,0 +170741685048,245,0 +170741685096,245,0 +170741685144,245,0 +170741685192,245,0 +170741685242,245,0 +170741685291,245,0 +170741685341,245,0 +170741685390,245,0 +170741685440,245,0 +170741685488,245,0 +170741685536,246,0 +170741685584,245,0 +170741685632,245,0 +170741685680,245,0 +170741685728,245,0 +170741685777,245,0 +170741685825,245,0 +170741685875,246,0 +170741685923,245,0 +170741685971,245,0 +170741686018,245,0 +170741686066,245,0 +170741686116,245,0 +170741686164,245,0 +170741686212,245,0 +170741686260,245,0 +170741686308,245,0 +170741686356,245,0 +170741686405,245,0 +170741686453,245,0 +170741686501,245,0 +170741686549,245,0 +170741686597,245,0 +170741686645,245,0 +170741686693,245,0 +170741686741,245,0 +170741686789,245,0 +170741686838,245,0 +170741686888,245,0 +170741686936,245,0 +170741686984,245,0 +170741687033,246,0 +170741687083,245,0 +170741687131,245,0 +170741687179,245,0 +170741687227,245,0 +170741687275,245,0 +170741687323,245,0 +170741687371,245,0 +170741687419,245,0 +170741687468,245,0 +170741687516,245,0 +170741687564,245,0 +170741687612,245,0 +170741687660,245,0 +170741687709,245,0 +170741687759,244,0 +170741687807,245,0 +170741687855,245,0 +170741687904,245,0 +170741687954,245,0 +170741688002,245,0 +170741688050,245,0 +170741688098,245,0 +170741688145,245,0 +170741688193,245,0 +170741688243,245,0 +170741688291,245,0 +170741688340,245,0 +170741688388,245,0 +170741688438,245,0 +170741688486,245,0 +170741688534,245,0 +170741688582,245,0 +170741688630,245,0 +170741688678,245,0 +170741688727,245,0 +170741688775,245,0 +170741688825,245,0 +170741688874,245,0 +170741688922,245,0 +170741688970,245,0 +170741689019,246,0 +170741689067,245,0 +170741689115,245,0 +170741689163,245,0 +170741689211,245,0 +170741689259,245,0 +170741689309,245,0 +170741689357,245,0 +170741689405,245,0 +170741689453,245,0 +170741689501,245,0 +170741689549,245,0 +170741689596,245,0 +170741689644,245,0 +170741689692,245,0 +170741689742,245,0 +170741689791,245,0 +170741689841,245,0 +170741689889,245,0 +170741689938,245,0 +170741689988,245,0 +170741690037,245,0 +170741690085,245,0 +170741690135,245,0 +170741690183,245,0 +170741690231,245,0 +170741690279,245,0 +170741690327,245,0 +170741690376,245,0 +170741690424,246,0 +170741690474,245,0 +170741690522,245,0 +170741690570,245,0 +170741690619,245,0 +170741690667,246,0 +170741690717,245,0 +170741690765,245,0 +170741690813,245,0 +170741690862,245,0 +170741690910,245,0 +170741690960,245,0 +170741691009,245,0 +170741691057,245,0 +170741691105,245,0 +170741691153,245,0 +170741691203,245,0 +170741691251,245,0 +170741691300,245,0 +170741691348,246,0 +170741691397,245,0 +170741691445,245,0 +170741691495,245,0 +170741691543,245,0 +170741691592,245,0 +170741691640,245,0 +170741691690,245,0 +170741691738,245,0 +170741691787,245,0 +170741691837,245,0 +170741691885,245,0 +170741691933,245,0 +170741691981,245,0 +170741692030,245,0 +170741692078,245,0 +170741692126,245,0 +170741692176,245,0 +170741692224,245,0 +170741692273,245,0 +170741692321,245,0 +170741692371,245,0 +170741692419,245,0 +170741692466,245,0 +170741692516,245,0 +170741692564,246,0 +170741692612,245,0 +170741692660,245,0 +170741692708,245,0 +170741692757,245,0 +170741692805,245,0 +170741692853,245,0 +170741692901,245,0 +170741692949,245,0 +170741692997,245,0 +170741693047,245,0 +170741693096,245,0 +170741693144,246,0 +170741693192,245,0 +170741693240,245,0 +170741693290,246,0 +170741693337,245,0 +170741693385,245,0 +170741693433,245,0 +170741693481,245,0 +170741693529,245,0 +170741693578,245,0 +170741693628,245,0 +170741693678,245,0 +170741693726,245,0 +170741693775,245,0 +170741693825,245,0 +170741693873,245,0 +170741693921,245,0 +170741693970,245,0 +170741694018,245,0 +170741694067,245,0 +170741694115,245,0 +170741694163,245,0 +170741694213,245,0 +170741694262,245,0 +170741694310,245,0 +170741694358,245,0 +170741694408,245,0 +170741694456,246,0 +170741694504,245,0 +170741694553,245,0 +170741694603,245,0 +170741694651,245,0 +170741694698,245,0 +170741694748,245,0 +170741694797,245,0 +170741694847,245,0 +170741694895,245,0 +170741694943,245,0 +170741694991,245,0 +170741695039,245,0 +170741695087,245,0 +170741695135,245,0 +170741695183,245,0 +170741695231,245,0 +170741695278,245,0 +170741695326,245,0 +170741695376,245,0 +170741695424,245,0 +170741695473,245,0 +170741695521,245,0 +170741695569,246,0 +170741695617,245,0 +170741695667,246,0 +170741695715,245,0 +170741695763,245,0 +170741695810,245,0 +170741695858,246,0 +170741695906,245,0 +170741695954,245,0 +170741696002,246,0 +170741696052,245,0 +170741696099,245,0 +170741696149,245,0 +170741696197,245,0 +170741696245,245,0 +170741696293,245,0 +170741696341,245,0 +170741696389,245,0 +170741696437,245,0 +170741696485,245,0 +170741696533,245,0 +170741696581,245,0 +170741696629,245,0 +170741696677,245,0 +170741696726,245,0 +170741696774,246,0 +170741696822,245,0 +170741696870,245,0 +170741696918,245,0 +170741696966,245,0 +170741697014,245,0 +170741697063,245,0 +170741697111,246,0 +170741697159,245,0 +170741697209,245,0 +170741697257,245,0 +170741697305,245,0 +170741697353,245,0 +170741697400,245,0 +170741697448,245,0 +170741697498,245,0 +170741697547,245,0 +170741697595,245,0 +170741697643,245,0 +170741697691,245,0 +170741697739,245,0 +170741697789,245,0 +170741697837,245,0 +170741697885,245,0 +170741697933,245,0 +170741697981,245,0 +170741698029,245,0 +170741698076,245,0 +170741698124,245,0 +170741698174,245,0 +170741698222,245,0 +170741698270,245,0 +170741698318,245,0 +170741698366,246,0 +170741698414,245,0 +170741698463,245,0 +170741698513,245,0 +170741698561,245,0 +170741698610,245,0 +170741698660,245,0 +170741698708,245,0 +170741698757,245,0 +170741698806,245,0 +170741698854,245,0 +170741698902,245,0 +170741698950,245,0 +170741698998,245,0 +170741699046,245,0 +170741699094,246,0 +170741699142,245,0 +170741699190,246,0 +170741699239,245,0 +170741699287,245,0 +170741699335,245,0 +170741699383,245,0 +170741699433,245,0 +170741699481,245,0 +170741699529,245,0 +170741699576,245,0 +170741699624,245,0 +170741699672,245,0 +170741699720,245,0 +170741699770,245,0 +170741699818,245,0 +170741699866,245,0 +170741699915,245,0 +170741699965,245,0 +170741700013,245,0 +170741700062,245,0 +170741700111,245,0 +170741700159,245,0 +170741700207,245,0 +170741700255,245,0 +170741700305,245,0 +170741700353,245,0 +170741700401,245,0 +170741700449,245,0 +170741700496,245,0 +170741700544,245,0 +170741700592,245,0 +170741700642,245,0 +170741700690,245,0 +170741700738,245,0 +170741700787,245,0 +170741700835,245,0 +170741700883,245,0 +170741700931,245,0 +170741700979,245,0 +170741701027,245,0 +170741701075,245,0 +170741701123,245,0 +170741701170,245,0 +170741701218,245,0 +170741701268,245,0 +170741701316,245,0 +170741701365,245,0 +170741701413,245,0 +170741701461,245,0 +170741701509,245,0 +170741701557,245,0 +170741701605,245,0 +170741701655,245,0 +170741701703,245,0 +170741701752,245,0 +170741701800,245,0 +170741701848,245,0 +170741701896,245,0 +170741701944,245,0 +170741701992,245,0 +170741702042,245,0 +170741702091,245,0 +170741702141,245,0 +170741702190,245,0 +170741702238,245,0 +170741702286,245,0 +170741702334,245,0 +170741702382,245,0 +170741702431,245,0 +170741702481,245,0 +170741702530,245,0 +170741702580,245,0 +170741702628,245,0 +170741702676,245,0 +170741702725,245,0 +170741702773,245,0 +170741702821,245,0 +170741702869,245,0 +170741702917,245,0 +170741702967,245,0 +170741703016,245,0 +170741703066,245,0 +170741703114,245,0 +170741703162,245,0 +170741703209,245,0 +170741703259,245,0 +170741703307,245,0 +170741703356,245,0 +170741703404,245,0 +170741703454,245,0 +170741703502,245,0 +170741703550,246,0 +170741703599,245,0 +170741703647,245,0 +170741703695,246,0 +170741703745,245,0 +170741703793,245,0 +170741703842,245,0 +170741703892,245,0 +170741703940,245,0 +170741703988,245,0 +170741704036,245,0 +170741704085,245,0 +170741704134,245,0 +170741704182,245,0 +170741704232,245,0 +170741704280,245,0 +170741704328,245,0 +170741704377,245,0 +170741704425,245,0 +170741704473,245,0 +170741704523,245,0 +170741704571,245,0 +170741704620,245,0 +170741704668,245,0 +170741704716,245,0 +170741704764,245,0 +170741704814,245,0 +170741704861,245,0 +170741704909,245,0 +170741704957,245,0 +170741705005,245,0 +170741705053,245,0 +170741705101,245,0 +170741705149,245,0 +170741705197,245,0 +170741705245,245,0 +170741705293,245,0 +170741705341,245,0 +170741705389,245,0 +170741705437,245,0 +170741705484,246,0 +170741705534,245,0 +170741705582,245,0 +170741705630,245,0 +170741705678,245,0 +170741705726,245,0 +170741705774,245,0 +170741705823,245,0 +170741705871,245,0 +170741705919,245,0 +170741705967,245,0 +170741706015,246,0 +170741706063,245,0 +170741706111,245,0 +170741706159,245,0 +170741706207,245,0 +170741706255,245,0 +170741706304,245,0 +170741706352,245,0 +170741706400,245,0 +170741706448,245,0 +170741706496,245,0 +170741706546,245,0 +170741706595,245,0 +170741706643,245,0 +170741706691,245,0 +170741706739,245,0 +170741706789,245,0 +170741706836,245,0 +170741706884,245,0 +170741706934,246,0 +170741706982,245,0 +170741707030,245,0 +170741707078,245,0 +170741707127,245,0 +170741707175,245,0 +170741707225,245,0 +170741707274,245,0 +170741707322,245,0 +170741707370,245,0 +170741707418,245,0 +170741707466,245,0 +170741707514,245,0 +170741707562,245,0 +170741707610,245,0 +170741707659,245,0 +170741707707,245,0 +170741707757,245,0 +170741707805,245,0 +170741707854,245,0 +170741707902,245,0 +170741707950,246,0 +170741708000,245,0 +170741708048,246,0 +170741708096,245,0 +170741708144,245,0 +170741708192,245,0 +170741708239,245,0 +170741708287,245,0 +170741708335,245,0 +170741708383,245,0 +170741708431,245,0 +170741708479,245,0 +170741708529,245,0 +170741708577,245,0 +170741708626,245,0 +170741708674,245,0 +170741708722,246,0 +170741708770,245,0 +170741708818,245,0 +170741708866,245,0 +170741708915,245,0 +170741708963,245,0 +170741709013,245,0 +170741709061,245,0 +170741709109,245,0 +170741709157,245,0 +170741709206,245,0 +170741709254,245,0 +170741709302,246,0 +170741709350,245,0 +170741709398,245,0 +170741709447,245,0 +170741709495,245,0 +170741709543,245,0 +170741709591,245,0 +170741709639,246,0 +170741709689,245,0 +170741709737,245,0 +170741709785,245,0 +170741709834,245,0 +170741709882,245,0 +170741709930,245,0 +170741709978,245,0 +170741710028,245,0 +170741710075,245,0 +170741710125,245,0 +170741710175,245,0 +170741710224,245,0 +170741710272,245,0 +170741710320,245,0 +170741710368,245,0 +170741710416,245,0 +170741710464,245,0 +170741710512,245,0 +170741710560,245,0 +170741710609,245,0 +170741710657,245,0 +170741710705,245,0 +170741710753,245,0 +170741710801,245,0 +170741710849,245,0 +170741710897,245,0 +170741710947,245,0 +170741710995,245,0 +170741711044,245,0 +170741711092,245,0 +170741711140,245,0 +170741711188,245,0 +170741711236,245,0 +170741711284,245,0 +170741711333,245,0 +170741711381,245,0 +170741711429,245,0 +170741711477,245,0 +170741711525,245,0 +170741711573,245,0 +170741711621,245,0 +170741711671,245,0 +170741711719,245,0 +170741711768,245,0 +170741711816,245,0 +170741711864,245,0 +170741711914,245,0 +170741711962,245,0 +170741712010,245,0 +170741712058,245,0 +170741712106,245,0 +170741712155,245,0 +170741712203,245,0 +170741712251,245,0 +170741712299,245,0 +170741712347,245,0 +170741712395,245,0 +170741712443,245,0 +170741712491,245,0 +170741712539,245,0 +170741712586,245,0 +170741712634,245,0 +170741712682,245,0 +170741712730,245,0 +170741712778,245,0 +170741712828,245,0 +170741712875,245,0 +170741712925,245,0 +170741712973,245,0 +170741713021,245,0 +170741713068,245,0 +170741713116,245,0 +170741713166,245,0 +170741713214,245,0 +170741713262,245,0 +170741713310,245,0 +170741713359,246,0 +170741713409,245,0 +170741713456,245,0 +170741713504,245,0 +170741713552,246,0 +170741713600,245,0 +170741713648,246,0 +170741713696,245,0 +170741713744,245,0 +170741713793,245,0 +170741713841,245,0 +170741713889,245,0 +170741713937,245,0 +170741713985,245,0 +170741714033,245,0 +170741714081,245,0 +170741714128,245,0 +170741714176,245,0 +170741714226,245,0 +170741714274,245,0 +170741714322,245,0 +170741714369,245,0 +170741714417,245,0 +170741714465,245,0 +170741714513,245,0 +170741714561,245,0 +170741714609,245,0 +170741714657,245,0 +170741714705,245,0 +170741714753,245,0 +170741714800,245,0 +170741714850,245,0 +170741714898,245,0 +170741714947,245,0 +170741714995,245,0 +170741715043,245,0 +170741715092,245,0 +170741715140,245,0 +170741715188,245,0 +170741715238,245,0 +170741715286,245,0 +170741715335,245,0 +170741715383,245,0 +170741715431,245,0 +170741715481,245,0 +170741715529,245,0 +170741715577,245,0 +170741715626,245,0 +170741715674,245,0 +170741715724,245,0 +170741715772,245,0 +170741715820,245,0 +170741715868,245,0 +170741715916,245,0 +170741715965,245,0 +170741716015,245,0 +170741716063,245,0 +170741716111,246,0 +170741716159,245,0 +170741716207,245,0 +170741716256,245,0 +170741716304,245,0 +170741716352,245,0 +170741716400,245,0 +170741716448,245,0 +170741716496,245,0 +170741716544,245,0 +170741716592,245,0 +170741716641,245,0 +170741716689,245,0 +170741716739,245,0 +170741716787,245,0 +170741716835,245,0 +170741716883,245,0 +170741716931,245,0 +170741716979,245,0 +170741717028,245,0 +170741717078,245,0 +170741717127,245,0 +170741717175,245,0 +170741717225,245,0 +170741717273,245,0 +170741717322,245,0 +170741717370,245,0 +170741717418,245,0 +170741717466,245,0 +170741717516,245,0 +170741717564,245,0 +170741717612,245,0 +170741717661,245,0 +170741717709,245,0 +170741717757,245,0 +170741717805,245,0 +170741717855,246,0 +170741717903,245,0 +170741717951,245,0 +170741717999,245,0 +170741718047,245,0 +170741718095,245,0 +170741718143,245,0 +170741718192,245,0 +170741718240,245,0 +170741718290,245,0 +170741718339,245,0 +170741718387,245,0 +170741718435,245,0 +170741718483,245,0 +170741718533,245,0 +170741718581,246,0 +170741718628,245,0 +170741718676,245,0 +170741718724,246,0 +170741718772,245,0 +170741718820,245,0 +170741718868,245,0 +170741718916,245,0 +170741718964,245,0 +170741719011,246,0 +170741719059,245,0 +170741719107,245,0 +170741719155,245,0 +170741719203,245,0 +170741719251,245,0 +170741719299,245,0 +170741719347,245,0 +170741719395,246,0 +170741719444,245,0 +170741719493,245,0 +170741719541,245,0 +170741719589,245,0 +170741719639,245,0 +170741719687,245,0 +170741719735,245,0 +170741719782,245,0 +170741719830,245,0 +170741719880,245,0 +170741719928,246,0 +170741719975,246,0 +170741720023,245,0 +170741720071,246,0 +170741720119,245,0 +170741720167,245,0 +170741720217,246,0 +170741720266,245,0 +170741720314,245,0 +170741720362,245,0 +170741720410,245,0 +170741720458,245,0 +170741720506,245,0 +170741720554,245,0 +170741720602,246,0 +170741720650,245,0 +170741720699,245,0 +170741720747,245,0 +170741720795,246,0 +170741720842,245,0 +170741720892,245,0 +170741720940,246,0 +170741720988,245,0 +170741721035,245,0 +170741721083,245,0 +170741721131,245,0 +170741721179,245,0 +170741721227,245,0 +170741721275,245,0 +170741721323,245,0 +170741721371,245,0 +170741721419,245,0 +170741721468,245,0 +170741721516,245,0 +170741721564,245,0 +170741721612,245,0 +170741721660,245,0 +170741721709,245,0 +170741721757,245,0 +170741721805,245,0 +170741721853,245,0 +170741721901,245,0 +170741721949,246,0 +170741721998,245,0 +170741722046,245,0 +170741722096,245,0 +170741722144,245,0 +170741722192,245,0 +170741722240,245,0 +170741722288,245,0 +170741722337,245,0 +170741722385,245,0 +170741722433,245,0 +170741722481,245,0 +170741722529,245,0 +170741722577,245,0 +170741722626,245,0 +170741722674,245,0 +170741722722,245,0 +170741722770,245,0 +170741722818,245,0 +170741722866,245,0 +170741722915,246,0 +170741722963,245,0 +170741723011,245,0 +170741723059,245,0 +170741723107,245,0 +170741723155,245,0 +170741723203,245,0 +170741723252,245,0 +170741723300,245,0 +170741723348,245,0 +170741723396,245,0 +170741723444,246,0 +170741723492,245,0 +170741723542,245,0 +170741723591,245,0 +170741723639,245,0 +170741723687,246,0 +170741723735,245,0 +170741723783,246,0 +170741723832,245,0 +170741723880,245,0 +170741723928,245,0 +170741723976,246,0 +170741724024,245,0 +170741724074,245,0 +170741724123,245,0 +170741724173,245,0 +170741724220,246,0 +170741724268,246,0 +170741724318,245,0 +170741724366,246,0 +170741724414,245,0 +170741724462,245,0 +170741724510,245,0 +170741724558,245,0 +170741724605,245,0 +170741724653,245,0 +170741724701,245,0 +170741724749,245,0 +170741724797,245,0 +170741724845,245,0 +170741724893,245,0 +170741724941,245,0 +170741724988,245,0 +170741725036,245,0 +170741725084,245,0 +170741725134,245,0 +170741725183,245,0 +170741725233,245,0 +170741725281,245,0 +170741725329,245,0 +170741725378,245,0 +170741725428,245,0 +170741725477,245,0 +170741725527,245,0 +170741725576,245,0 +170741725624,245,0 +170741725672,245,0 +170741725720,245,0 +170741725768,245,0 +170741725817,245,0 +170741725865,245,0 +170741725913,245,0 +170741725961,245,0 +170741726009,245,0 +170741726057,245,0 +170741726105,245,0 +170741726153,245,0 +170741726201,246,0 +170741726248,245,0 +170741726298,245,0 +170741726346,245,0 +170741726394,245,0 +170741726443,245,0 +170741726493,245,0 +170741726541,245,0 +170741726589,245,0 +170741726637,245,0 +170741726685,245,0 +170741726733,245,0 +170741726782,245,0 +170741726832,245,0 +170741726880,246,0 +170741726928,245,0 +170741726976,245,0 +170741727023,245,0 +170741727073,245,0 +170741727122,245,0 +170741727170,245,0 +170741727218,245,0 +170741727266,245,0 +170741727314,245,0 +170741727362,245,0 +170741727410,246,0 +170741727458,245,0 +170741727506,245,0 +170741727554,245,0 +170741727602,245,0 +170741727651,245,0 +170741727699,245,0 +170741727749,245,0 +170741727797,245,0 +170741727844,245,0 +170741727894,245,0 +170741727942,245,0 +170741727990,245,0 +170741728039,245,0 +170741728087,245,0 +170741728135,245,0 +170741728183,245,0 +170741728231,245,0 +170741728281,245,0 +170741728329,245,0 +170741728377,245,0 +170741728425,245,0 +170741728473,245,0 +170741728521,245,0 +170741728570,245,0 +170741728618,245,0 +170741728666,245,0 +170741728714,245,0 +170741728763,245,0 +170741728811,245,0 +170741728861,245,0 +170741728910,245,0 +170741728960,245,0 +170741729008,246,0 +170741729056,245,0 +170741729104,245,0 +170741729152,245,0 +170741729201,245,0 +170741729251,245,0 +170741729300,245,0 +170741729348,245,0 +170741729398,245,0 +170741729446,245,0 +170741729494,245,0 +170741729542,245,0 +170741729590,245,0 +170741729638,246,0 +170741729685,245,0 +170741729733,245,0 +170741729781,245,0 +170741729829,245,0 +170741729879,245,0 +170741729928,245,0 +170741729978,245,0 +170741730027,245,0 +170741730075,245,0 +170741730123,245,0 +170741730171,245,0 +170741730219,245,0 +170741730269,245,0 +170741730317,245,0 +170741730365,246,0 +170741730413,245,0 +170741730462,245,0 +170741730512,245,0 +170741730561,245,0 +170741730609,245,0 +170741730657,245,0 +170741730705,245,0 +170741730753,245,0 +170741730801,245,0 +170741730849,245,0 +170741730899,245,0 +170741730947,245,0 +170741730995,245,0 +170741731044,245,0 +170741731092,245,0 +170741731142,245,0 +170741731191,245,0 +170741731239,245,0 +170741731287,245,0 +170741731335,245,0 +170741731383,245,0 +170741731431,245,0 +170741731479,245,0 +170741731527,245,0 +170741731575,245,0 +170741731624,245,0 +170741731674,245,0 +170741731722,245,0 +170741731770,245,0 +170741731818,245,0 +170741731866,245,0 +170741731914,245,0 +170741731963,245,0 +170741732011,245,0 +170741732059,245,0 +170741732109,245,0 +170741732157,245,0 +170741732206,245,0 +170741732256,246,0 +170741732304,245,0 +170741732353,245,0 +170741732401,245,0 +170741732449,245,0 +170741732497,245,0 +170741732545,245,0 +170741732593,245,0 +170741732641,245,0 +170741732689,245,0 +170741732737,245,0 +170741732785,245,0 +170741732833,245,0 +170741732881,245,0 +170741732929,245,0 +170741732977,245,0 +170741733025,245,0 +170741733073,245,0 +170741733122,245,0 +170741733170,245,0 +170741733218,245,0 +170741733266,245,0 +170741733314,245,0 +170741733362,245,0 +170741733410,245,0 +170741733458,245,0 +170741733506,245,0 +170741733554,245,0 +170741733603,245,0 +170741733651,245,0 +170741733699,245,0 +170741733747,245,0 +170741733795,245,0 +170741733843,245,0 +170741733891,245,0 +170741733939,245,0 +170741733987,245,0 +170741734035,245,0 +170741734083,245,0 +170741734131,245,0 +170741734179,245,0 +170741734227,245,0 +170741734277,245,0 +170741734324,245,0 +170741734372,245,0 +170741734420,245,0 +170741734470,245,0 +170741734518,245,0 +170741734566,245,0 +170741734614,245,0 +170741734664,245,0 +170741734712,245,0 +170741734760,245,0 +170741734808,245,0 +170741734856,245,0 +170741734903,245,0 +170741734951,245,0 +170741735001,245,0 +170741735050,245,0 +170741735100,245,0 +170741735149,245,0 +170741735199,245,0 +170741735247,245,0 +170741735295,245,0 +170741735343,245,0 +170741735391,245,0 +170741735439,245,0 +170741735488,245,0 +170741735536,245,0 +170741735584,245,0 +170741735634,245,0 +170741735683,245,0 +170741735731,245,0 +170741735779,245,0 +170741735829,246,0 +170741735878,245,0 +170741735926,245,0 +170741735974,245,0 +170741736022,245,0 +170741736070,245,0 +170741736119,245,0 +170741736169,245,0 +170741736217,245,0 +170741736265,245,0 +170741736314,245,0 +170741736362,245,0 +170741736410,245,0 +170741736458,245,0 +170741736506,245,0 +170741736554,245,0 +170741736602,245,0 +170741736651,245,0 +170741736701,245,0 +170741736749,245,0 +170741736797,245,0 +170741736846,245,0 +170741736896,245,0 +170741736944,245,0 +170741736992,245,0 +170741737040,246,0 +170741737089,245,0 +170741737139,245,0 +170741737187,245,0 +170741737235,245,0 +170741737283,245,0 +170741737331,245,0 +170741737379,245,0 +170741737427,245,0 +170741737475,245,0 +170741737523,245,0 +170741737572,245,0 +170741737620,245,0 +170741737670,245,0 +170741737718,245,0 +170741737767,245,0 +170741737815,245,0 +170741737865,245,0 +170741737913,246,0 +170741737962,245,0 +170741738010,245,0 +170741738060,245,0 +170741738107,245,0 +170741738155,245,0 +170741738203,245,0 +170741738251,245,0 +170741738301,245,0 +170741738350,245,0 +170741738398,245,0 +170741738446,245,0 +170741738496,245,0 +170741738545,245,0 +170741738593,245,0 +170741738643,245,0 +170741738691,245,0 +170741738739,245,0 +170741738787,245,0 +170741738836,245,0 +170741738884,245,0 +170741738934,245,0 +170741738982,245,0 +170741739030,245,0 +170741739078,245,0 +170741739126,245,0 +170741739174,245,0 +170741739223,245,0 +170741739271,246,0 +170741739319,245,0 +170741739367,245,0 +170741739415,245,0 +170741739463,245,0 +170741739511,245,0 +170741739560,246,0 +170741739610,245,0 +170741739658,245,0 +170741739706,245,0 +170741739755,245,0 +170741739805,245,0 +170741739854,245,0 +170741739904,245,0 +170741739953,245,0 +170741740001,245,0 +170741740049,245,0 +170741740097,245,0 +170741740145,245,0 +170741740193,245,0 +170741740243,245,0 +170741740291,245,0 +170741740339,245,0 +170741740387,245,0 +170741740435,245,0 +170741740483,245,0 +170741740531,246,0 +170741740578,245,0 +170741740626,245,0 +170741740674,245,0 +170741740722,245,0 +170741740772,245,0 +170741740820,245,0 +170741740870,245,0 +170741740919,245,0 +170741740969,245,0 +170741741017,245,0 +170741741065,245,0 +170741741112,245,0 +170741741160,245,0 +170741741208,245,0 +170741741256,245,0 +170741741304,245,0 +170741741354,245,0 +170741741402,245,0 +170741741450,245,0 +170741741499,245,0 +170741741547,245,0 +170741741595,245,0 +170741741643,245,0 +170741741691,245,0 +170741741739,245,0 +170741741787,245,0 +170741741835,245,0 +170741741883,245,0 +170741741933,245,0 +170741741980,245,0 +170741742028,245,0 +170741742078,245,0 +170741742126,245,0 +170741742174,245,0 +170741742222,245,0 +170741742271,244,0 +170741742319,245,0 +170741742367,245,0 +170741742415,245,0 +170741742463,245,0 +170741742513,245,0 +170741742561,245,0 +170741742609,245,0 +170741742657,245,0 +170741742705,245,0 +170741742754,245,0 +170741742802,245,0 +170741742850,245,0 +170741742898,245,0 +170741742946,245,0 +170741742996,245,0 +170741743044,245,0 +170741743092,245,0 +170741743140,245,0 +170741743189,245,0 +170741743239,245,0 +170741743288,246,0 +170741743336,245,0 +170741743384,245,0 +170741743433,245,0 +170741743481,245,0 +170741743531,245,0 +170741743579,245,0 +170741743628,245,0 +170741743678,245,0 +170741743726,245,0 +170741743774,245,0 +170741743822,245,0 +170741743871,245,0 +170741743919,245,0 +170741743969,245,0 +170741744018,245,0 +170741744066,245,0 +170741744116,245,0 +170741744165,245,0 +170741744213,246,0 +170741744261,245,0 +170741744309,245,0 +170741744357,245,0 +170741744405,245,0 +170741744455,245,0 +170741744504,245,0 +170741744552,245,0 +170741744602,245,0 +170741744650,245,0 +170741744699,246,0 +170741744749,245,0 +170741744797,245,0 +170741744845,245,0 +170741744893,245,0 +170741744940,245,0 +170741744990,246,0 +170741745038,245,0 +170741745086,245,0 +170741745134,246,0 +170741745183,245,0 +170741745231,246,0 +170741745279,245,0 +170741745329,245,0 +170741745378,245,0 +170741745426,245,0 +170741745474,245,0 +170741745524,245,0 +170741745572,245,0 +170741745620,245,0 +170741745668,246,0 +170741745716,245,0 +170741745765,245,0 +170741745813,245,0 +170741745861,245,0 +170741745909,245,0 +170741745957,245,0 +170741746005,245,0 +170741746053,245,0 +170741746101,245,0 +170741746149,245,0 +170741746198,245,0 +170741746246,245,0 +170741746296,245,0 +170741746344,245,0 +170741746392,245,0 +170741746440,245,0 +170741746489,245,0 +170741746539,245,0 +170741746587,245,0 +170741746636,245,0 +170741746684,246,0 +170741746732,245,0 +170741746780,245,0 +170741746828,245,0 +170741746878,245,0 +170741746927,245,0 +170741746977,245,0 +170741747025,245,0 +170741747073,245,0 +170741747122,245,0 +170741747170,245,0 +170741747218,245,0 +170741747266,245,0 +170741747316,245,0 +170741747365,246,0 +170741747413,245,0 +170741747461,245,0 +170741747509,246,0 +170741747558,245,0 +170741747606,245,0 +170741747654,245,0 +170741747702,245,0 +170741747750,245,0 +170741747798,246,0 +170741747846,245,0 +170741747894,245,0 +170741747942,245,0 +170741747990,245,0 +170741748039,245,0 +170741748087,246,0 +170741748135,245,0 +170741748183,245,0 +170741748231,245,0 +170741748279,245,0 +170741748327,245,0 +170741748375,245,0 +170741748425,245,0 +170741748473,245,0 +170741748521,245,0 +170741748569,245,0 +170741748617,245,0 +170741748665,246,0 +170741748714,245,0 +170741748764,245,0 +170741748812,245,0 +170741748860,245,0 +170741748907,245,0 +170741748955,245,0 +170741749003,245,0 +170741749051,245,0 +170741749099,245,0 +170741749147,245,0 +170741749195,245,0 +170741749243,245,0 +170741749290,245,0 +170741749338,245,0 +170741749386,245,0 +170741749434,245,0 +170741749484,245,0 +170741749531,245,0 +170741749579,245,0 +170741749629,245,0 +170741749677,245,0 +170741749725,245,0 +170741749774,245,0 +170741749824,245,0 +170741749872,246,0 +170741749921,245,0 +170741749969,245,0 +170741750017,245,0 +170741750065,245,0 +170741750115,245,0 +170741750163,245,0 +170741750212,245,0 +170741750262,245,0 +170741750311,245,0 +170741750359,245,0 +170741750409,245,0 +170741750458,245,0 +170741750508,245,0 +170741750555,245,0 +170741750603,245,0 +170741750653,245,0 +170741750702,245,0 +170741750750,245,0 +170741750798,245,0 +170741750846,245,0 +170741750894,245,0 +170741750944,245,0 +170741750992,245,0 +170741751040,245,0 +170741751088,245,0 +170741751136,245,0 +170741751184,245,0 +170741751232,245,0 +170741751280,245,0 +170741751328,245,0 +170741751377,245,0 +170741751425,245,0 +170741751475,246,0 +170741751523,245,0 +170741751570,245,0 +170741751618,245,0 +170741751666,245,0 +170741751714,245,0 +170741751764,246,0 +170741751812,245,0 +170741751860,245,0 +170741751909,245,0 +170741751957,245,0 +170741752005,245,0 +170741752053,245,0 +170741752101,245,0 +170741752149,245,0 +170741752197,245,0 +170741752245,245,0 +170741752293,245,0 +170741752341,245,0 +170741752389,245,0 +170741752438,245,0 +170741752486,245,0 +170741752534,245,0 +170741752584,245,0 +170741752632,245,0 +170741752682,245,0 +170741752730,245,0 +170741752779,245,0 +170741752827,245,0 +170741752876,245,0 +170741752924,245,0 +170741752972,245,0 +170741753022,245,0 +170741753070,245,0 +170741753118,245,0 +170741753167,245,0 +170741753215,245,0 +170741753263,245,0 +170741753311,245,0 +170741753361,245,0 +170741753410,245,0 +170741753458,245,0 +170741753506,245,0 +170741753554,245,0 +170741753602,245,0 +170741753650,245,0 +170741753698,245,0 +170741753746,245,0 +170741753796,245,0 +170741753844,245,0 +170741753893,245,0 +170741753941,245,0 +170741753989,245,0 +170741754037,245,0 +170741754085,245,0 +170741754133,245,0 +170741754181,245,0 +170741754229,245,0 +170741754277,245,0 +170741754324,245,0 +170741754372,245,0 +170741754420,245,0 +170741754468,245,0 +170741754516,245,0 +170741754564,245,0 +170741754613,245,0 +170741754661,246,0 +170741754709,245,0 +170741754759,245,0 +170741754806,245,0 +170741754854,245,0 +170741754902,245,0 +170741754950,245,0 +170741754998,245,0 +170741755046,245,0 +170741755094,245,0 +170741755142,245,0 +170741755191,245,0 +170741755239,245,0 +170741755287,245,0 +170741755337,245,0 +170741755385,245,0 +170741755433,246,0 +170741755481,245,0 +170741755528,245,0 +170741755578,245,0 +170741755626,245,0 +170741755674,245,0 +170741755722,245,0 +170741755770,245,0 +170741755818,245,0 +170741755867,245,0 +170741755915,245,0 +170741755963,245,0 +170741756013,245,0 +170741756062,245,0 +170741756112,245,0 +170741756160,245,0 +170741756208,245,0 +170741756256,245,0 +170741756304,246,0 +170741756352,245,0 +170741756400,245,0 +170741756448,245,0 +170741756496,245,0 +170741756543,245,0 +170741756591,245,0 +170741756639,245,0 +170741756687,245,0 +170741756735,246,0 +170741756783,245,0 +170741756833,245,0 +170741756881,245,0 +170741756929,245,0 +170741756977,245,0 +170741757025,245,0 +170741757073,245,0 +170741757120,245,0 +170741757168,245,0 +170741757216,245,0 +170741757264,245,0 +170741757312,245,0 +170741757360,245,0 +170741757409,245,0 +170741757459,245,0 +170741757507,245,0 +170741757556,245,0 +170741757604,245,0 +170741757652,245,0 +170741757700,245,0 +170741757748,245,0 +170741757796,246,0 +170741757845,245,0 +170741757895,245,0 +170741757944,245,0 +170741757992,245,0 +170741758040,245,0 +170741758090,245,0 +170741758139,245,0 +170741758187,246,0 +170741758237,245,0 +170741758286,245,0 +170741758336,245,0 +170741758384,245,0 +170741758433,245,0 +170741758483,245,0 +170741758532,245,0 +170741758582,245,0 +170741758630,245,0 +170741758678,245,0 +170741758726,245,0 +170741758773,245,0 +170741758821,245,0 +170741758869,245,0 +170741758919,245,0 +170741758967,245,0 +170741759016,245,0 +170741759064,245,0 +170741759112,245,0 +170741759160,245,0 +170741759208,245,0 +170741759256,245,0 +170741759304,245,0 +170741759352,245,0 +170741759402,245,0 +170741759449,245,0 +170741759497,245,0 +170741759545,245,0 +170741759595,245,0 +170741759643,245,0 +170741759691,245,0 +170741759740,245,0 +170741759788,245,0 +170741759836,245,0 +170741759886,245,0 +170741759935,245,0 +170741759983,245,0 +170741760031,245,0 +170741760079,245,0 +170741760127,245,0 +170741760175,245,0 +170741760225,245,0 +170741760274,245,0 +170741760324,245,0 +170741760373,245,0 +170741760421,245,0 +170741760469,245,0 +170741760517,245,0 +170741760566,245,0 +170741760616,245,0 +170741760665,245,0 +170741760713,245,0 +170741760761,245,0 +170741760809,245,0 +170741760859,245,0 +170741760907,245,0 +170741760956,245,0 +170741761004,245,0 +170741761054,245,0 +170741761102,245,0 +170741761151,245,0 +170741761201,245,0 +170741761250,245,0 +170741761300,245,0 +170741761348,246,0 +170741761396,245,0 +170741761445,245,0 +170741761495,245,0 +170741761542,245,0 +170741761592,245,0 +170741761640,245,0 +170741761688,245,0 +170741761736,245,0 +170741761784,245,0 +170741761832,245,0 +170741761880,245,0 +170741761928,245,0 +170741761976,245,0 +170741762024,245,0 +170741762072,245,0 +170741762120,245,0 +170741762168,245,0 +170741762216,245,0 +170741762265,245,0 +170741762315,245,0 +170741762363,245,0 +170741762410,245,0 +170741762460,245,0 +170741762508,245,0 +170741762556,245,0 +170741762605,245,0 +170741762655,245,0 +170741762703,245,0 +170741762750,245,0 +170741762798,245,0 +170741762846,245,0 +170741762894,245,0 +170741762942,245,0 +170741762992,245,0 +170741763041,246,0 +170741763091,245,0 +170741763140,245,0 +170741763190,245,0 +170741763238,245,0 +170741763286,245,0 +170741763334,245,0 +170741763382,245,0 +170741763430,245,0 +170741763478,245,0 +170741763526,245,0 +170741763574,245,0 +170741763622,246,0 +170741763671,245,0 +170741763719,245,0 +170741763767,245,0 +170741763815,245,0 +170741763865,245,0 +170741763913,245,0 +170741763962,245,0 +170741764010,245,0 +170741764058,245,0 +170741764106,246,0 +170741764155,245,0 +170741764205,245,0 +170741764254,245,0 +170741764304,245,0 +170741764353,245,0 +170741764403,245,0 +170741764451,245,0 +170741764500,245,0 +170741764548,245,0 +170741764596,245,0 +170741764644,245,0 +170741764692,245,0 +170741764742,245,0 +170741764791,245,0 +170741764839,245,0 +170741764889,245,0 +170741764938,245,0 +170741764986,245,0 +170741765035,245,0 +170741765085,245,0 +170741765133,245,0 +170741765182,245,0 +170741765232,245,0 +170741765280,245,0 +170741765328,245,0 +170741765377,245,0 +170741765427,245,0 +170741765475,245,0 +170741765524,245,0 +170741765572,245,0 +170741765622,245,0 +170741765670,245,0 +170741765718,245,0 +170741765766,245,0 +170741765814,245,0 +170741765863,245,0 +170741765911,246,0 +170741765959,245,0 +170741766009,245,0 +170741766058,246,0 +170741766108,245,0 +170741766157,245,0 +170741766207,245,0 +170741766256,245,0 +170741766304,245,0 +170741766352,245,0 +170741766402,245,0 +170741766450,245,0 +170741766497,245,0 +170741766547,245,0 +170741766595,246,0 +170741766645,245,0 +170741766692,246,0 +170741766742,245,0 +170741766790,245,0 +170741766838,245,0 +170741766886,245,0 +170741766934,245,0 +170741766982,245,0 +170741767030,245,0 +170741767078,245,0 +170741767126,245,0 +170741767174,245,0 +170741767222,246,0 +170741767270,246,0 +170741767318,245,0 +170741767367,245,0 +170741767415,245,0 +170741767463,245,0 +170741767511,245,0 +170741767559,245,0 +170741767609,245,0 +170741767658,245,0 +170741767708,245,0 +170741767756,245,0 +170741767805,245,0 +170741767853,245,0 +170741767902,246,0 +170741767950,245,0 +170741768000,245,0 +170741768048,245,0 +170741768097,245,0 +170741768147,245,0 +170741768195,245,0 +170741768243,245,0 +170741768291,245,0 +170741768339,245,0 +170741768388,245,0 +170741768436,245,0 +170741768484,245,0 +170741768532,245,0 +170741768582,245,0 +170741768630,245,0 +170741768679,245,0 +170741768727,245,0 +170741768777,245,0 +170741768826,245,0 +170741768874,245,0 +170741768922,245,0 +170741768971,246,0 +170741769019,245,0 +170741769069,245,0 +170741769118,245,0 +170741769168,245,0 +170741769216,246,0 +170741769264,245,0 +170741769312,245,0 +170741769360,245,0 +170741769409,245,0 +170741769457,245,0 +170741769505,245,0 +170741769553,245,0 +170741769601,245,0 +170741769649,245,0 +170741769697,245,0 +170741769745,245,0 +170741769793,245,0 +170741769841,245,0 +170741769890,245,0 +170741769938,245,0 +170741769986,245,0 +170741770036,245,0 +170741770085,245,0 +170741770133,245,0 +170741770183,245,0 +170741770231,245,0 +170741770279,245,0 +170741770327,245,0 +170741770374,245,0 +170741770424,245,0 +170741770472,246,0 +170741770520,245,0 +170741770568,245,0 +170741770615,246,0 +170741770663,245,0 +170741770711,245,0 +170741770759,245,0 +170741770809,245,0 +170741770857,245,0 +170741770905,245,0 +170741770952,245,0 +170741771000,245,0 +170741771048,245,0 +170741771098,245,0 +170741771147,245,0 +170741771195,245,0 +170741771243,245,0 +170741771291,245,0 +170741771339,245,0 +170741771387,245,0 +170741771435,245,0 +170741771485,245,0 +170741771532,245,0 +170741771580,245,0 +170741771628,245,0 +170741771676,245,0 +170741771724,245,0 +170741771772,245,0 +170741771820,245,0 +170741771868,245,0 +170741771918,245,0 +170741771966,245,0 +170741772014,245,0 +170741772063,245,0 +170741772113,245,0 +170741772161,245,0 +170741772210,245,0 +170741772258,245,0 +170741772306,245,0 +170741772356,245,0 +170741772405,245,0 +170741772453,246,0 +170741772501,245,0 +170741772549,245,0 +170741772597,245,0 +170741772645,245,0 +170741772693,245,0 +170741772743,245,0 +170741772792,245,0 +170741772840,245,0 +170741772888,245,0 +170741772936,245,0 +170741772984,245,0 +170741773032,245,0 +170741773080,245,0 +170741773128,245,0 +170741773176,245,0 +170741773224,245,0 +170741773272,245,0 +170741773320,245,0 +170741773368,245,0 +170741773416,245,0 +170741773464,245,0 +170741773513,245,0 +170741773563,245,0 +170741773611,245,0 +170741773659,245,0 +170741773708,245,0 +170741773758,245,0 +170741773805,245,0 +170741773853,245,0 +170741773903,245,0 +170741773951,245,0 +170741773999,245,0 +170741774047,245,0 +170741774095,245,0 +170741774143,245,0 +170741774191,245,0 +170741774240,245,0 +170741774288,245,0 +170741774336,245,0 +170741774386,245,0 +170741774435,245,0 +170741774485,245,0 +170741774533,245,0 +170741774581,245,0 +170741774629,245,0 +170741774677,245,0 +170741774724,245,0 +170741774772,245,0 +170741774822,245,0 +170741774870,245,0 +170741774919,245,0 +170741774967,245,0 +170741775015,246,0 +170741775063,245,0 +170741775111,245,0 +170741775161,245,0 +170741775209,245,0 +170741775257,245,0 +170741775305,245,0 +170741775354,245,0 +170741775404,245,0 +170741775452,245,0 +170741775500,245,0 +170741775549,245,0 +170741775597,245,0 +170741775645,245,0 +170741775693,245,0 +170741775741,245,0 +170741775789,245,0 +170741775837,245,0 +170741775885,245,0 +170741775934,245,0 +170741775984,245,0 +170741776033,245,0 +170741776081,245,0 +170741776129,245,0 +170741776179,245,0 +170741776228,245,0 +170741776276,245,0 +170741776326,245,0 +170741776374,245,0 +170741776423,245,0 +170741776471,245,0 +170741776519,245,0 +170741776567,245,0 +170741776615,245,0 +170741776663,245,0 +170741776713,245,0 +170741776762,245,0 +170741776812,245,0 +170741776861,245,0 +170741776911,245,0 +170741776959,245,0 +170741777007,245,0 +170741777055,245,0 +170741777104,245,0 +170741777152,245,0 +170741777200,245,0 +170741777248,245,0 +170741777296,245,0 +170741777346,245,0 +170741777394,245,0 +170741777442,245,0 +170741777490,245,0 +170741777538,245,0 +170741777587,245,0 +170741777635,245,0 +170741777685,245,0 +170741777734,245,0 +170741777784,245,0 +170741777831,245,0 +170741777881,245,0 +170741777929,245,0 +170741777977,245,0 +170741778025,245,0 +170741778073,245,0 +170741778121,245,0 +170741778169,245,0 +170741778217,245,0 +170741778265,245,0 +170741778313,245,0 +170741778361,245,0 +170741778408,245,0 +170741778456,245,0 +170741778504,245,0 +170741778554,246,0 +170741778603,246,0 +170741778651,245,0 +170741778699,245,0 +170741778747,245,0 +170741778795,245,0 +170741778843,245,0 +170741778891,245,0 +170741778941,245,0 +170741778989,245,0 +170741779038,245,0 +170741779086,245,0 +170741779134,245,0 +170741779184,245,0 +170741779232,245,0 +170741779280,245,0 +170741779329,245,0 +170741779377,245,0 +170741779425,245,0 +170741779473,245,0 +170741779521,245,0 +170741779571,245,0 +170741779620,245,0 +170741779668,245,0 +170741779716,245,0 +170741779764,245,0 +170741779812,245,0 +170741779861,245,0 +170741779909,245,0 +170741779957,245,0 +170741780007,245,0 +170741780055,245,0 +170741780104,245,0 +170741780154,245,0 +170741780202,245,0 +170741780250,245,0 +170741780299,245,0 +170741780348,245,0 +170741780395,245,0 +170741780445,245,0 +170741780493,245,0 +170741780542,245,0 +170741780590,245,0 +170741780638,245,0 +170741780686,245,0 +170741780734,245,0 +170741780782,245,0 +170741780830,245,0 +170741780878,245,0 +170741780926,245,0 +170741780974,245,0 +170741781024,245,0 +170741781072,246,0 +170741781120,245,0 +170741781168,245,0 +170741781216,245,0 +170741781264,245,0 +170741781313,245,0 +170741781361,245,0 +170741781411,245,0 +170741781459,245,0 +170741781508,245,0 +170741781557,245,0 +170741781605,245,0 +170741781653,245,0 +170741781701,245,0 +170741781749,245,0 +170741781799,245,0 +170741781848,245,0 +170741781896,245,0 +170741781944,245,0 +170741781992,245,0 +170741782040,246,0 +170741782088,245,0 +170741782138,245,0 +170741782186,245,0 +170741782234,245,0 +170741782283,245,0 +170741782333,245,0 +170741782381,245,0 +170741782429,245,0 +170741782477,245,0 +170741782525,245,0 +170741782573,245,0 +170741782621,245,0 +170741782670,245,0 +170741782718,245,0 +170741782766,245,0 +170741782816,245,0 +170741782865,245,0 +170741782913,245,0 +170741782963,245,0 +170741783010,245,0 +170741783058,245,0 +170741783108,245,0 +170741783156,245,0 +170741783205,245,0 +170741783255,245,0 +170741783305,246,0 +170741783354,245,0 +170741783402,245,0 +170741783452,245,0 +170741783500,245,0 +170741783548,245,0 +170741783596,245,0 +170741783644,245,0 +170741783692,245,0 +170741783741,245,0 +170741783789,245,0 +170741783837,245,0 +170741783886,245,0 +170741783934,245,0 +170741783982,246,0 +170741784030,245,0 +170741784080,245,0 +170741784128,245,0 +170741784176,245,0 +170741784224,245,0 +170741784272,245,0 +170741784320,245,0 +170741784368,245,0 +170741784416,245,0 +170741784464,245,0 +170741784513,245,0 +170741784561,245,0 +170741784609,246,0 +170741784657,245,0 +170741784705,245,0 +170741784752,245,0 +170741784800,245,0 +170741784848,245,0 +170741784898,245,0 +170741784947,245,0 +170741784995,245,0 +170741785045,245,0 +170741785093,245,0 +170741785141,245,0 +170741785190,245,0 +170741785238,245,0 +170741785286,245,0 +170741785334,245,0 +170741785382,245,0 +170741785430,245,0 +170741785478,245,0 +170741785526,245,0 +170741785575,245,0 +170741785623,245,0 +170741785671,245,0 +170741785719,245,0 +170741785769,245,0 +170741785817,245,0 +170741785866,245,0 +170741785914,245,0 +170741785964,245,0 +170741786012,245,0 +170741786060,245,0 +170741786108,245,0 +170741786156,245,0 +170741786204,245,0 +170741786252,245,0 +170741786300,245,0 +170741786348,245,0 +170741786396,245,0 +170741786444,245,0 +170741786492,245,0 +170741786541,245,0 +170741786589,245,0 +170741786639,245,0 +170741786688,245,0 +170741786736,245,0 +170741786786,245,0 +170741786835,245,0 +170741786883,245,0 +170741786931,245,0 +170741786979,245,0 +170741787029,245,0 +170741787076,245,0 +170741787126,245,0 +170741787174,245,0 +170741787222,245,0 +170741787270,245,0 +170741787318,245,0 +170741787366,245,0 +170741787415,245,0 +170741787463,245,0 +170741787513,245,0 +170741787561,245,0 +170741787610,245,0 +170741787658,245,0 +170741787706,245,0 +170741787754,245,0 +170741787802,245,0 +170741787850,245,0 +170741787900,245,0 +170741787948,245,0 +170741787996,245,0 +170741788044,245,0 +170741788093,245,0 +170741788141,245,0 +170741788189,246,0 +170741788237,245,0 +170741788285,245,0 +170741788333,245,0 +170741788381,245,0 +170741788429,245,0 +170741788478,245,0 +170741788526,245,0 +170741788576,245,0 +170741788624,245,0 +170741788672,245,0 +170741788720,245,0 +170741788768,245,0 +170741788817,245,0 +170741788865,245,0 +170741788913,245,0 +170741788961,245,0 +170741789010,245,0 +170741789058,245,0 +170741789106,245,0 +170741789154,245,0 +170741789204,245,0 +170741789252,245,0 +170741789300,245,0 +170741789349,245,0 +170741789397,245,0 +170741789445,245,0 +170741789493,245,0 +170741789541,245,0 +170741789591,245,0 +170741789640,245,0 +170741789688,245,0 +170741789738,245,0 +170741789786,245,0 +170741789834,245,0 +170741789883,245,0 +170741789931,245,0 +170741789979,245,0 +170741790028,245,0 +170741790078,245,0 +170741790126,245,0 +170741790174,245,0 +170741790222,245,0 +170741790270,245,0 +170741790319,245,0 +170741790369,245,0 +170741790417,245,0 +170741790465,245,0 +170741790513,245,0 +170741790561,245,0 +170741790609,245,0 +170741790658,245,0 +170741790706,245,0 +170741790754,245,0 +170741790804,245,0 +170741790853,245,0 +170741790901,245,0 +170741790951,245,0 +170741790999,245,0 +170741791047,245,0 +170741791095,245,0 +170741791144,245,0 +170741791192,245,0 +170741791240,245,0 +170741791288,245,0 +170741791336,245,0 +170741791385,245,0 +170741791433,245,0 +170741791481,245,0 +170741791529,245,0 +170741791577,245,0 +170741791625,245,0 +170741791673,245,0 +170741791723,245,0 +170741791772,245,0 +170741791820,245,0 +170741791868,245,0 +170741791918,245,0 +170741791966,245,0 +170741792014,245,0 +170741792062,246,0 +170741792111,245,0 +170741792159,245,0 +170741792209,245,0 +170741792257,245,0 +170741792305,245,0 +170741792353,245,0 +170741792401,245,0 +170741792450,245,0 +170741792500,245,0 +170741792549,245,0 +170741792599,245,0 +170741792647,245,0 +170741792694,245,0 +170741792744,245,0 +170741792792,245,0 +170741792840,245,0 +170741792889,245,0 +170741792937,245,0 +170741792985,245,0 +170741793035,245,0 +170741793083,245,0 +170741793131,245,0 +170741793180,245,0 +170741793228,245,0 +170741793276,245,0 +170741793326,245,0 +170741793375,245,0 +170741793423,245,0 +170741793471,245,0 +170741793520,245,0 +170741793568,245,0 +170741793618,245,0 +170741793667,245,0 +170741793715,245,0 +170741793765,245,0 +170741793814,245,0 +170741793862,245,0 +170741793910,245,0 +170741793958,245,0 +170741794006,245,0 +170741794054,245,0 +170741794102,245,0 +170741794150,245,0 +170741794198,245,0 +170741794245,245,0 +170741794293,245,0 +170741794341,245,0 +170741794389,245,0 +170741794439,245,0 +170741794488,245,0 +170741794538,245,0 +170741794586,245,0 +170741794635,245,0 +170741794683,246,0 +170741794731,245,0 +170741794781,245,0 +170741794829,245,0 +170741794877,245,0 +170741794926,245,0 +170741794974,245,0 +170741795024,245,0 +170741795073,246,0 +170741795121,245,0 +170741795169,245,0 +170741795219,245,0 +170741795267,245,0 +170741795315,245,0 +170741795364,245,0 +170741795414,245,0 +170741795463,245,0 +170741795513,245,0 +170741795561,245,0 +170741795610,245,0 +170741795658,245,0 +170741795706,245,0 +170741795754,245,0 +170741795802,245,0 +170741795851,245,0 +170741795899,245,0 +170741795947,245,0 +170741795995,245,0 +170741796043,245,0 +170741796091,245,0 +170741796141,245,0 +170741796189,245,0 +170741796238,245,0 +170741796286,245,0 +170741796336,245,0 +170741796385,245,0 +170741796433,245,0 +170741796481,245,0 +170741796529,245,0 +170741796577,245,0 +170741796625,245,0 +170741796673,245,0 +170741796721,245,0 +170741796768,245,0 +170741796818,245,0 +170741796866,245,0 +170741796914,245,0 +170741796962,245,0 +170741797011,245,0 +170741797059,245,0 +170741797107,245,0 +170741797155,245,0 +170741797203,245,0 +170741797251,245,0 +170741797299,245,0 +170741797347,245,0 +170741797394,245,0 +170741797442,245,0 +170741797492,245,0 +170741797540,245,0 +170741797588,245,0 +170741797637,245,0 +170741797685,245,0 +170741797733,245,0 +170741797781,245,0 +170741797831,245,0 +170741797879,245,0 +170741797927,245,0 +170741797974,245,0 +170741798024,245,0 +170741798074,245,0 +170741798123,245,0 +170741798173,245,0 +170741798221,245,0 +170741798270,245,0 +170741798320,245,0 +170741798369,245,0 +170741798417,245,0 +170741798465,245,0 +170741798513,245,0 +170741798562,245,0 +170741798610,245,0 +170741798660,245,0 +170741798709,245,0 +170741798759,245,0 +170741798808,245,0 +170741798858,245,0 +170741798906,245,0 +170741798956,245,0 +170741799005,245,0 +170741799053,245,0 +170741799101,245,0 +170741799149,245,0 +170741799197,245,0 +170741799245,245,0 +170741799294,245,0 +170741799342,245,0 +170741799390,245,0 +170741799438,245,0 +170741799486,245,0 +170741799536,245,0 +170741799584,245,0 +170741799632,245,0 +170741799680,245,0 +170741799728,245,0 +170741799777,245,0 +170741799825,245,0 +170741799873,245,0 +170741799923,245,0 +170741799971,245,0 +170741800019,245,0 +170741800067,245,0 +170741800115,245,0 +170741800163,245,0 +170741800210,245,0 +170741800258,245,0 +170741800306,245,0 +170741800356,245,0 +170741800404,245,0 +170741800452,245,0 +170741800500,245,0 +170741800548,245,0 +170741800597,245,0 +170741800645,245,0 +170741800693,245,0 +170741800743,245,0 +170741800791,245,0 +170741800838,245,0 +170741800886,245,0 +170741800934,245,0 +170741800984,245,0 +170741801032,245,0 +170741801081,245,0 +170741801129,245,0 +170741801177,245,0 +170741801225,245,0 +170741801273,245,0 +170741801321,245,0 +170741801371,245,0 +170741801419,245,0 +170741801467,245,0 +170741801515,245,0 +170741801562,245,0 +170741801612,245,0 +170741801661,245,0 +170741801709,245,0 +170741801757,245,0 +170741801807,245,0 +170741801855,245,0 +170741801904,245,0 +170741801952,245,0 +170741802002,245,0 +170741802051,245,0 +170741802099,246,0 +170741802147,245,0 +170741802195,245,0 +170741802243,245,0 +170741802291,245,0 +170741802339,245,0 +170741802387,245,0 +170741802437,245,0 +170741802484,245,0 +170741802534,245,0 +170741802582,245,0 +170741802630,245,0 +170741802679,245,0 +170741802727,245,0 +170741802775,245,0 +170741802823,245,0 +170741802873,245,0 +170741802921,245,0 +170741802969,245,0 +170741803017,245,0 +170741803064,245,0 +170741803112,245,0 +170741803160,245,0 +170741803208,245,0 +170741803258,245,0 +170741803306,245,0 +170741803354,246,0 +170741803402,245,0 +170741803450,245,0 +170741803498,245,0 +170741803546,245,0 +170741803593,245,0 +170741803641,245,0 +170741803689,245,0 +170741803737,245,0 +170741803787,245,0 +170741803835,245,0 +170741803884,245,0 +170741803932,245,0 +170741803982,245,0 +170741804030,245,0 +170741804078,245,0 +170741804126,245,0 +170741804174,245,0 +170741804222,245,0 +170741804271,245,0 +170741804321,245,0 +170741804368,245,0 +170741804416,245,0 +170741804466,245,0 +170741804516,245,0 +170741804565,245,0 +170741804613,245,0 +170741804661,245,0 +170741804709,245,0 +170741804757,245,0 +170741804805,245,0 +170741804853,245,0 +170741804901,245,0 +170741804950,245,0 +170741804998,245,0 +170741805048,245,0 +170741805097,245,0 +170741805147,245,0 +170741805195,245,0 +170741805244,245,0 +170741805294,245,0 +170741805343,245,0 +170741805391,245,0 +170741805439,245,0 +170741805487,245,0 +170741805535,245,0 +170741805585,245,0 +170741805634,245,0 +170741805684,245,0 +170741805732,245,0 +170741805780,245,0 +170741805829,245,0 +170741805877,245,0 +170741805925,245,0 +170741805973,245,0 +170741806021,245,0 +170741806069,245,0 +170741806117,245,0 +170741806165,245,0 +170741806213,245,0 +170741806260,245,0 +170741806310,245,0 +170741806358,245,0 +170741806407,245,0 +170741806455,245,0 +170741806505,245,0 +170741806554,245,0 +170741806602,245,0 +170741806652,245,0 +170741806700,246,0 +170741806749,245,0 +170741806797,245,0 +170741806847,245,0 +170741806896,245,0 +170741806944,245,0 +170741806992,245,0 +170741807040,245,0 +170741807088,245,0 +170741807138,245,0 +170741807186,245,0 +170741807235,245,0 +170741807283,246,0 +170741807333,245,0 +170741807382,245,0 +170741807430,245,0 +170741807478,245,0 +170741807526,245,0 +170741807576,245,0 +170741807624,245,0 +170741807672,245,0 +170741807721,245,0 +170741807771,245,0 +170741807820,245,0 +170741807870,245,0 +170741807919,245,0 +170741807967,245,0 +170741808015,245,0 +170741808063,245,0 +170741808113,245,0 +170741808161,245,0 +170741808209,245,0 +170741808257,245,0 +170741808304,245,0 +170741808354,245,0 +170741808402,245,0 +170741808450,245,0 +170741808498,245,0 +170741808546,245,0 +170741808595,245,0 +170741808643,245,0 +170741808693,245,0 +170741808741,245,0 +170741808790,245,0 +170741808840,245,0 +170741808888,246,0 +170741808935,245,0 +170741808985,245,0 +170741809033,245,0 +170741809082,245,0 +170741809132,245,0 +170741809180,245,0 +170741809229,245,0 +170741809279,245,0 +170741809327,245,0 +170741809376,245,0 +170741809426,245,0 +170741809475,245,0 +170741809523,245,0 +170741809573,245,0 +170741809621,245,0 +170741809670,245,0 +170741809718,245,0 +170741809766,245,0 +170741809816,245,0 +170741809864,245,0 +170741809913,245,0 +170741809961,245,0 +170741810011,245,0 +170741810059,245,0 +170741810108,245,0 +170741810156,245,0 +170741810204,245,0 +170741810252,245,0 +170741810300,245,0 +170741810348,245,0 +170741810398,245,0 +170741810446,245,0 +170741810494,245,0 +170741810543,245,0 +170741810593,245,0 +170741810641,245,0 +170741810689,245,0 +170741810737,244,0 +170741810786,245,0 +170741810836,245,0 +170741810885,245,0 +170741810935,245,0 +170741810983,245,0 +170741811031,245,0 +170741811079,245,0 +170741811127,245,0 +170741811174,245,0 +170741811224,245,0 +170741811272,245,0 +170741811321,245,0 +170741811369,245,0 +170741811417,245,0 +170741811467,245,0 +170741811516,245,0 +170741811566,245,0 +170741811614,245,0 +170741811662,245,0 +170741811710,245,0 +170741811758,245,0 +170741811807,245,0 +170741811855,245,0 +170741811903,245,0 +170741811951,245,0 +170741811999,245,0 +170741812047,245,0 +170741812096,245,0 +170741812144,245,0 +170741812192,245,0 +170741812240,245,0 +170741812288,245,0 +170741812336,245,0 +170741812385,245,0 +170741812433,245,0 +170741812481,245,0 +170741812531,245,0 +170741812579,245,0 +170741812626,245,0 +170741812674,245,0 +170741812724,245,0 +170741812772,245,0 +170741812820,245,0 +170741812868,245,0 +170741812916,245,0 +170741812966,245,0 +170741813014,245,0 +170741813062,245,0 +170741813111,245,0 +170741813159,245,0 +170741813207,245,0 +170741813255,245,0 +170741813303,245,0 +170741813353,245,0 +170741813402,245,0 +170741813450,245,0 +170741813498,245,0 +170741813546,245,0 +170741813594,245,0 +170741813642,245,0 +170741813691,245,0 +170741813741,245,0 +170741813790,245,0 +170741813840,245,0 +170741813888,245,0 +170741813936,245,0 +170741813984,245,0 +170741814032,245,0 +170741814080,245,0 +170741814128,245,0 +170741814177,245,0 +170741814227,245,0 +170741814276,245,0 +170741814324,245,0 +170741814372,245,0 +170741814420,245,0 +170741814470,245,0 +170741814518,245,0 +170741814566,245,0 +170741814615,245,0 +170741814663,245,0 +170741814711,245,0 +170741814759,245,0 +170741814807,245,0 +170741814857,245,0 +170741814906,245,0 +170741814954,245,0 +170741815002,245,0 +170741815051,245,0 +170741815099,245,0 +170741815147,245,0 +170741815195,245,0 +170741815245,245,0 +170741815294,245,0 +170741815342,245,0 +170741815390,245,0 +170741815440,245,0 +170741815488,245,0 +170741815536,245,0 +170741815584,245,0 +170741815633,245,0 +170741815683,245,0 +170741815731,245,0 +170741815780,245,0 +170741815828,245,0 +170741815876,245,0 +170741815924,245,0 +170741815972,245,0 +170741816020,245,0 +170741816068,245,0 +170741816116,245,0 +170741816164,245,0 +170741816214,245,0 +170741816263,245,0 +170741816311,245,0 +170741816361,245,0 +170741816410,245,0 +170741816460,245,0 +170741816508,245,0 +170741816557,245,0 +170741816605,245,0 +170741816653,245,0 +170741816703,245,0 +170741816752,245,0 +170741816800,245,0 +170741816850,245,0 +170741816899,245,0 +170741816949,245,0 +170741816998,245,0 +170741817046,245,0 +170741817096,245,0 +170741817145,245,0 +170741817193,245,0 +170741817243,245,0 +170741817291,245,0 +170741817339,245,0 +170741817386,245,0 +170741817434,245,0 +170741817482,245,0 +170741817530,245,0 +170741817580,245,0 +170741817628,244,0 +170741817676,245,0 +170741817724,245,0 +170741817771,245,0 +170741817819,245,0 +170741817867,245,0 +170741817915,245,0 +170741817963,245,0 +170741818011,245,0 +170741818059,245,0 +170741818106,245,0 +170741818154,246,0 +170741818204,245,0 +170741818252,245,0 +170741818300,245,0 +170741818348,244,0 +170741818395,245,0 +170741818443,245,0 +170741818491,244,0 +170741818541,245,0 +170741818589,245,0 +170741818637,245,0 +170741818685,245,0 +170741818734,245,0 +170741818782,246,0 +170741818830,245,0 +170741818878,245,0 +170741818926,245,0 +170741818976,245,0 +170741819025,245,0 +170741819073,245,0 +170741819121,245,0 +170741819171,245,0 +170741819219,245,0 +170741819267,245,0 +170741819315,245,0 +170741819363,245,0 +170741819413,245,0 +170741819461,245,0 +170741819510,245,0 +170741819558,245,0 +170741819606,245,0 +170741819654,245,0 +170741819702,245,0 +170741819750,245,0 +170741819800,245,0 +170741819848,245,0 +170741819896,244,0 +170741819945,245,0 +170741819993,245,0 +170741820043,245,0 +170741820091,245,0 +170741820140,244,0 +170741820188,245,0 +170741820238,245,0 +170741820287,245,0 +170741820335,245,0 +170741820383,245,0 +170741820431,245,0 +170741820479,245,0 +170741820527,245,0 +170741820575,245,0 +170741820623,245,0 +170741820672,245,0 +170741820720,245,0 +170741820768,245,0 +170741820816,245,0 +170741820866,245,0 +170741820914,245,0 +170741820962,245,0 +170741821011,245,0 +170741821059,245,0 +170741821109,245,0 +170741821158,245,0 +170741821206,245,0 +170741821255,245,0 +170741821303,245,0 +170741821351,245,0 +170741821399,246,0 +170741821449,245,0 +170741821498,245,0 +170741821546,245,0 +170741821594,245,0 +170741821642,245,0 +170741821690,245,0 +170741821740,245,0 +170741821788,245,0 +170741821836,245,0 +170741821884,245,0 +170741821932,245,0 +170741821981,245,0 +170741822029,245,0 +170741822077,245,0 +170741822125,245,0 +170741822175,245,0 +170741822223,245,0 +170741822271,245,0 +170741822319,245,0 +170741822368,245,0 +170741822418,245,0 +170741822466,245,0 +170741822515,245,0 +170741822563,245,0 +170741822611,246,0 +170741822659,245,0 +170741822707,245,0 +170741822757,245,0 +170741822806,245,0 +170741822856,245,0 +170741822905,245,0 +170741822953,245,0 +170741823003,245,0 +170741823051,245,0 +170741823100,245,0 +170741823148,245,0 +170741823196,245,0 +170741823245,245,0 +170741823295,245,0 +170741823343,245,0 +170741823391,245,0 +170741823439,245,0 +170741823488,245,0 +170741823536,245,0 +170741823586,245,0 +170741823634,245,0 +170741823682,245,0 +170741823730,245,0 +170741823778,245,0 +170741823826,245,0 +170741823874,245,0 +170741823923,245,0 +170741823971,245,0 +170741824021,245,0 +170741824068,245,0 +170741824116,245,0 +170741824166,245,0 +170741824215,245,0 +170741824265,245,0 +170741824313,245,0 +170741824362,245,0 +170741824410,245,0 +170741824458,245,0 +170741824506,245,0 +170741824554,245,0 +170741824602,245,0 +170741824650,245,0 +170741824698,245,0 +170741824746,245,0 +170741824794,245,0 +170741824842,245,0 +170741824892,245,0 +170741824940,245,0 +170741824990,245,0 +170741825038,245,0 +170741825087,245,0 +170741825137,244,0 +170741825187,245,0 +170741825234,245,0 +170741825282,245,0 +170741825330,245,0 +170741825378,245,0 +170741825426,245,0 +170741825474,245,0 +170741825522,245,0 +170741825570,245,0 +170741825620,245,0 +170741825668,245,0 +170741825715,245,0 +170741825763,245,0 +170741825813,245,0 +170741825861,245,0 +170741825909,245,0 +170741825958,245,0 +170741826006,245,0 +170741826056,245,0 +170741826104,245,0 +170741826153,245,0 +170741826203,245,0 +170741826251,245,0 +170741826299,245,0 +170741826348,245,0 +170741826396,245,0 +170741826446,245,0 +170741826494,245,0 +170741826542,245,0 +170741826591,245,0 +170741826641,245,0 +170741826689,245,0 +170741826737,245,0 +170741826786,245,0 +170741826834,245,0 +170741826882,245,0 +170741826932,245,0 +170741826981,245,0 +170741827029,245,0 +170741827077,245,0 +170741827127,245,0 +170741827176,245,0 +170741827224,245,0 +170741827274,245,0 +170741827323,245,0 +170741827373,245,0 +170741827420,245,0 +170741827470,245,0 +170741827520,245,0 +170741827568,245,0 +170741827617,245,0 +170741827665,245,0 +170741827713,245,0 +170741827762,245,0 +170741827810,245,0 +170741827858,245,0 +170741827906,245,0 +170741827954,245,0 +170741828002,245,0 +170741828052,245,0 +170741828100,245,0 +170741828149,245,0 +170741828197,245,0 +170741828245,245,0 +170741828293,245,0 +170741828341,245,0 +170741828389,245,0 +170741828436,245,0 +170741828484,245,0 +170741828534,245,0 +170741828582,245,0 +170741828630,245,0 +170741828678,245,0 +170741828726,245,0 +170741828773,245,0 +170741828821,245,0 +170741828869,245,0 +170741828917,245,0 +170741828965,245,0 +170741829013,245,0 +170741829061,245,0 +170741829109,245,0 +170741829157,245,0 +170741829204,245,0 +170741829252,245,0 +170741829300,245,0 +170741829350,245,0 +170741829398,244,0 +170741829445,245,0 +170741829493,245,0 +170741829541,245,0 +170741829591,245,0 +170741829639,245,0 +170741829687,245,0 +170741829735,245,0 +170741829783,245,0 +170741829831,245,0 +170741829879,245,0 +170741829927,245,0 +170741829976,245,0 +170741830024,245,0 +170741830072,245,0 +170741830120,245,0 +170741830168,245,0 +170741830216,245,0 +170741830266,245,0 +170741830314,245,0 +170741830362,246,0 +170741830410,245,0 +170741830458,245,0 +170741830507,245,0 +170741830557,245,0 +170741830605,245,0 +170741830653,245,0 +170741830701,245,0 +170741830748,245,0 +170741830796,245,0 +170741830844,245,0 +170741830894,245,0 +170741830942,245,0 +170741830989,245,0 +170741831037,245,0 +170741831085,245,0 +170741831133,245,0 +170741831181,245,0 +170741831231,245,0 +170741831279,245,0 +170741831327,245,0 +170741831375,245,0 +170741831422,245,0 +170741831470,245,0 +170741831518,245,0 +170741831566,245,0 +170741831614,245,0 +170741831662,245,0 +170741831710,245,0 +170741831758,245,0 +170741831806,245,0 +170741831854,245,0 +170741831901,245,0 +170741831949,245,0 +170741831997,245,0 +170741832045,245,0 +170741832093,245,0 +170741832141,245,0 +170741832189,245,0 +170741832237,245,0 +170741832286,245,0 +170741832334,245,0 +170741832384,245,0 +170741832434,245,0 +170741832481,245,0 +170741832529,244,0 +170741832577,245,0 +170741832627,245,0 +170741832675,245,0 +170741832724,245,0 +170741832774,245,0 +170741832822,245,0 +170741832869,245,0 +170741832917,245,0 +170741832965,245,0 +170741833013,245,0 +170741833061,245,0 +170741833109,245,0 +170741833157,245,0 +170741833205,245,0 +170741833253,245,0 +170741833301,245,0 +170741833348,245,0 +170741833396,245,0 +170741833444,245,0 +170741833492,245,0 +170741833541,245,0 +170741833591,245,0 +170741833640,245,0 +170741833690,245,0 +170741833738,245,0 +170741833786,245,0 +170741833834,245,0 +170741833882,245,0 +170741833930,245,0 +170741833979,245,0 +170741834027,245,0 +170741834075,245,0 +170741834123,245,0 +170741834171,245,0 +170741834219,245,0 +170741834267,245,0 +170741834316,245,0 +170741834364,245,0 +170741834412,245,0 +170741834462,245,0 +170741834511,245,0 +170741834561,245,0 +170741834611,245,0 +170741834660,245,0 +170741834708,245,0 +170741834757,245,0 +170741834805,245,0 +170741834855,245,0 +170741834905,245,0 +170741834954,245,0 +170741835002,245,0 +170741835050,245,0 +170741835098,245,0 +170741835147,245,0 +170741835195,245,0 +170741835245,245,0 +170741835293,245,0 +170741835341,245,0 +170741835389,245,0 +170741835436,245,0 +170741835484,245,0 +170741835532,245,0 +170741835580,245,0 +170741835628,245,0 +170741835677,244,0 +170741835725,245,0 +170741835773,245,0 +170741835821,245,0 +170741835869,245,0 +170741835917,245,0 +170741835965,245,0 +170741836014,245,0 +170741836062,245,0 +170741836110,245,0 +170741836158,246,0 +170741836206,245,0 +170741836253,246,0 +170741836301,245,0 +170741836349,245,0 +170741836397,245,0 +170741836445,245,0 +170741836494,245,0 +170741836542,245,0 +170741836590,245,0 +170741836638,245,0 +170741836686,246,0 +170741836734,245,0 +170741836782,245,0 +170741836830,245,0 +170741836878,245,0 +170741836925,245,0 +170741836975,245,0 +170741837024,245,0 +170741837072,246,0 +170741837120,245,0 +170741837168,245,0 +170741837218,245,0 +170741837265,245,0 +170741837313,245,0 +170741837361,245,0 +170741837409,245,0 +170741837457,245,0 +170741837505,245,0 +170741837553,245,0 +170741837601,245,0 +170741837649,245,0 +170741837696,245,0 +170741837744,245,0 +170741837792,245,0 +170741837840,245,0 +170741837888,245,0 +170741837936,244,0 +170741837984,245,0 +170741838032,245,0 +170741838080,245,0 +170741838129,245,0 +170741838177,245,0 +170741838226,245,0 +170741838274,245,0 +170741838322,245,0 +170741838370,245,0 +170741838418,245,0 +170741838467,245,0 +170741838515,245,0 +170741838563,245,0 +170741838611,245,0 +170741838659,245,0 +170741838707,245,0 +170741838755,245,0 +170741838803,245,0 +170741838851,245,0 +170741838898,245,0 +170741838946,245,0 +170741838994,245,0 +170741839044,245,0 +170741839092,245,0 +170741839140,245,0 +170741839187,245,0 +170741839235,245,0 +170741839283,245,0 +170741839331,245,0 +170741839379,245,0 +170741839427,245,0 +170741839476,245,0 +170741839524,245,0 +170741839572,245,0 +170741839622,245,0 +170741839670,245,0 +170741839718,245,0 +170741839766,245,0 +170741839813,245,0 +170741839861,245,0 +170741839909,245,0 +170741839957,245,0 +170741840005,245,0 +170741840055,245,0 +170741840104,245,0 +170741840152,244,0 +170741840200,245,0 +170741840250,245,0 +170741840298,245,0 +170741840346,245,0 +170741840393,245,0 +170741840441,246,0 +170741840491,245,0 +170741840539,245,0 +170741840587,245,0 +170741840635,245,0 +170741840684,245,0 +170741840732,245,0 +170741840782,245,0 +170741840831,245,0 +170741840881,245,0 +170741840929,245,0 +170741840979,245,0 +170741841027,245,0 +170741841075,245,0 +170741841124,245,0 +170741841172,245,0 +170741841221,245,0 +170741841269,245,0 +170741841317,245,0 +170741841365,245,0 +170741841413,245,0 +170741841462,245,0 +170741841512,245,0 +170741841562,245,0 +170741841611,245,0 +170741841659,245,0 +170741841709,245,0 +170741841756,246,0 +170741841806,245,0 +170741841855,245,0 +170741841903,245,0 +170741841951,245,0 +170741842001,245,0 +170741842050,245,0 +170741842100,246,0 +170741842148,245,0 +170741842196,245,0 +170741842244,245,0 +170741842292,245,0 +170741842340,245,0 +170741842388,245,0 +170741842436,245,0 +170741842485,245,0 +170741842535,245,0 +170741842584,245,0 +170741842634,246,0 +170741842682,245,0 +170741842730,245,0 +170741842778,245,0 +170741842827,245,0 +170741842875,245,0 +170741842925,245,0 +170741842973,245,0 +170741843021,245,0 +170741843069,245,0 +170741843117,246,0 +170741843165,245,0 +170741843214,245,0 +170741843262,245,0 +170741843310,245,0 +170741843358,245,0 +170741843406,246,0 +170741843454,245,0 +170741843502,245,0 +170741843550,245,0 +170741843598,245,0 +170741843646,246,0 +170741843694,245,0 +170741843742,245,0 +170741843790,245,0 +170741843839,246,0 +170741843889,245,0 +170741843938,245,0 +170741843986,245,0 +170741844034,245,0 +170741844082,245,0 +170741844132,245,0 +170741844180,245,0 +170741844229,245,0 +170741844277,245,0 +170741844325,245,0 +170741844373,245,0 +170741844421,245,0 +170741844471,245,0 +170741844519,245,0 +170741844567,245,0 +170741844615,245,0 +170741844663,245,0 +170741844712,245,0 +170741844760,246,0 +170741844810,245,0 +170741844858,245,0 +170741844906,245,0 +170741844954,245,0 +170741845003,245,0 +170741845053,245,0 +170741845101,245,0 +170741845149,245,0 +170741845198,245,0 +170741845246,245,0 +170741845294,245,0 +170741845342,245,0 +170741845391,245,0 +170741845439,245,0 +170741845489,244,0 +170741845537,245,0 +170741845586,245,0 +170741845636,245,0 +170741845685,245,0 +170741845733,245,0 +170741845781,245,0 +170741845831,245,0 +170741845879,245,0 +170741845927,245,0 +170741845974,245,0 +170741846022,245,0 +170741846070,245,0 +170741846118,245,0 +170741846166,245,0 +170741846214,245,0 +170741846262,245,0 +170741846312,245,0 +170741846360,245,0 +170741846409,245,0 +170741846459,245,0 +170741846507,245,0 +170741846555,245,0 +170741846602,245,0 +170741846652,245,0 +170741846700,245,0 +170741846750,245,0 +170741846797,245,0 +170741846847,245,0 +170741846895,245,0 +170741846945,245,0 +170741846994,245,0 +170741847044,245,0 +170741847093,245,0 +170741847141,245,0 +170741847189,245,0 +170741847237,245,0 +170741847285,245,0 +170741847333,245,0 +170741847382,245,0 +170741847430,245,0 +170741847480,245,0 +170741847528,245,0 +170741847577,245,0 +170741847625,245,0 +170741847673,245,0 +170741847721,245,0 +170741847769,245,0 +170741847819,245,0 +170741847867,245,0 +170741847916,245,0 +170741847964,245,0 +170741848012,245,0 +170741848060,245,0 +170741848108,245,0 +170741848156,245,0 +170741848205,245,0 +170741848253,245,0 +170741848301,245,0 +170741848349,245,0 +170741848397,245,0 +170741848445,245,0 +170741848495,245,0 +170741848543,245,0 +170741848591,245,0 +170741848639,245,0 +170741848687,245,0 +170741848736,245,0 +170741848786,245,0 +170741848834,245,0 +170741848882,245,0 +170741848930,245,0 +170741848978,245,0 +170741849027,246,0 +170741849075,245,0 +170741849123,245,0 +170741849171,245,0 +170741849220,245,0 +170741849268,245,0 +170741849316,245,0 +170741849364,245,0 +170741849412,245,0 +170741849460,245,0 +170741849508,245,0 +170741849556,245,0 +170741849604,245,0 +170741849652,244,0 +170741849700,245,0 +170741849748,245,0 +170741849796,245,0 +170741849844,245,0 +170741849892,245,0 +170741849940,245,0 +170741849989,245,0 +170741850037,245,0 +170741850085,245,0 +170741850133,245,0 +170741850182,245,0 +170741850230,245,0 +170741850278,245,0 +170741850326,245,0 +170741850374,245,0 +170741850424,245,0 +170741850473,245,0 +170741850521,245,0 +170741850569,245,0 +170741850617,245,0 +170741850665,245,0 +170741850715,245,0 +170741850763,245,0 +170741850812,246,0 +170741850860,245,0 +170741850908,245,0 +170741850956,245,0 +170741851006,246,0 +170741851054,245,0 +170741851103,245,0 +170741851151,245,0 +170741851199,245,0 +170741851247,245,0 +170741851297,245,0 +170741851346,245,0 +170741851394,245,0 +170741851442,245,0 +170741851491,245,0 +170741851539,245,0 +170741851587,245,0 +170741851635,245,0 +170741851683,245,0 +170741851733,245,0 +170741851781,245,0 +170741851829,245,0 +170741851878,245,0 +170741851926,245,0 +170741851974,245,0 +170741852022,245,0 +170741852070,245,0 +170741852118,245,0 +170741852166,245,0 +170741852214,245,0 +170741852262,245,0 +170741852311,245,0 +170741852359,245,0 +170741852407,245,0 +170741852455,244,0 +170741852503,245,0 +170741852551,245,0 +170741852599,245,0 +170741852647,245,0 +170741852695,245,0 +170741852745,245,0 +170741852793,245,0 +170741852841,245,0 +170741852890,245,0 +170741852938,245,0 +170741852986,245,0 +170741853034,245,0 +170741853082,245,0 +170741853130,245,0 +170741853179,245,0 +170741853227,245,0 +170741853275,245,0 +170741853323,245,0 +170741853371,245,0 +170741853421,245,0 +170741853470,245,0 +170741853520,244,0 +170741853568,245,0 +170741853616,245,0 +170741853665,245,0 +170741853715,245,0 +170741853763,245,0 +170741853811,245,0 +170741853859,245,0 +170741853907,245,0 +170741853954,245,0 +170741854002,245,0 +170741854050,245,0 +170741854098,245,0 +170741854146,245,0 +170741854196,245,0 +170741854243,245,0 +170741854293,245,0 +170741854341,245,0 +170741854389,245,0 +170741854437,245,0 +170741854485,245,0 +170741854533,245,0 +170741854580,245,0 +170741854628,246,0 +170741854676,245,0 +170741854726,245,0 +170741854775,245,0 +170741854825,245,0 +170741854873,245,0 +170741854921,245,0 +170741854969,245,0 +170741855017,245,0 +170741855065,245,0 +170741855113,245,0 +170741855160,245,0 +170741855210,245,0 +170741855259,245,0 +170741855307,245,0 +170741855357,245,0 +170741855405,245,0 +170741855453,245,0 +170741855502,245,0 +170741855550,245,0 +170741855598,245,0 +170741855646,245,0 +170741855696,245,0 +170741855745,245,0 +170741855793,245,0 +170741855843,245,0 +170741855891,245,0 +170741855939,245,0 +170741855988,245,0 +170741856036,245,0 +170741856084,245,0 +170741856132,245,0 +170741856182,245,0 +170741856229,246,0 +170741856277,245,0 +170741856325,245,0 +170741856373,246,0 +170741856421,244,0 +170741856469,245,0 +170741856517,245,0 +170741856565,245,0 +170741856613,245,0 +170741856662,245,0 +170741856710,245,0 +170741856759,245,0 +170741856807,245,0 +170741856855,245,0 +170741856903,245,0 +170741856951,245,0 +170741856999,246,0 +170741857047,245,0 +170741857095,245,0 +170741857144,245,0 +170741857194,245,0 +170741857242,245,0 +170741857290,245,0 +170741857338,245,0 +170741857386,245,0 +170741857435,245,0 +170741857485,245,0 +170741857534,245,0 +170741857582,245,0 +170741857630,245,0 +170741857678,245,0 +170741857726,245,0 +170741857774,245,0 +170741857822,245,0 +170741857870,245,0 +170741857919,245,0 +170741857967,245,0 +170741858015,245,0 +170741858065,245,0 +170741858113,245,0 +170741858162,245,0 +170741858210,245,0 +170741858258,245,0 +170741858306,245,0 +170741858354,245,0 +170741858402,245,0 +170741858452,245,0 +170741858501,245,0 +170741858551,245,0 +170741858599,245,0 +170741858646,245,0 +170741858696,245,0 +170741858745,245,0 +170741858795,246,0 +170741858843,246,0 +170741858891,245,0 +170741858939,245,0 +170741858988,245,0 +170741859036,245,0 +170741859086,245,0 +170741859134,245,0 +170741859184,245,0 +170741859233,245,0 +170741859281,245,0 +170741859329,245,0 +170741859379,245,0 +170741859427,246,0 +170741859476,245,0 +170741859524,245,0 +170741859574,245,0 +170741859622,245,0 +170741859670,245,0 +170741859718,245,0 +170741859766,245,0 +170741859814,245,0 +170741859862,245,0 +170741859911,245,0 +170741859959,245,0 +170741860008,245,0 +170741860058,245,0 +170741860106,245,0 +170741860154,245,0 +170741860203,245,0 +170741860253,245,0 +170741860302,245,0 +170741860350,245,0 +170741860398,245,0 +170741860446,245,0 +170741860494,245,0 +170741860544,245,0 +170741860592,245,0 +170741860641,245,0 +170741860689,245,0 +170741860737,245,0 +170741860787,245,0 +170741860835,245,0 +170741860884,245,0 +170741860934,245,0 +170741860982,245,0 +170741861030,245,0 +170741861078,245,0 +170741861127,245,0 +170741861175,245,0 +170741861223,245,0 +170741861271,245,0 +170741861321,245,0 +170741861368,245,0 +170741861416,245,0 +170741861464,245,0 +170741861512,245,0 +170741861560,245,0 +170741861608,245,0 +170741861656,245,0 +170741861704,245,0 +170741861752,245,0 +170741861801,245,0 +170741861849,245,0 +170741861897,245,0 +170741861945,245,0 +170741861993,245,0 +170741862041,245,0 +170741862089,245,0 +170741862137,245,0 +170741862186,245,0 +170741862236,245,0 +170741862284,245,0 +170741862333,245,0 +170741862383,245,0 +170741862432,245,0 +170741862480,245,0 +170741862530,245,0 +170741862578,245,0 +170741862626,245,0 +170741862674,245,0 +170741862723,245,0 +170741862773,245,0 +170741862821,245,0 +170741862870,245,0 +170741862918,245,0 +170741862966,245,0 +170741863014,245,0 +170741863062,245,0 +170741863110,245,0 +170741863158,245,0 +170741863206,245,0 +170741863254,245,0 +170741863302,245,0 +170741863350,245,0 +170741863399,245,0 +170741863449,245,0 +170741863497,245,0 +170741863546,245,0 +170741863594,245,0 +170741863642,245,0 +170741863692,245,0 +170741863740,245,0 +170741863789,245,0 +170741863837,245,0 +170741863885,245,0 +170741863933,245,0 +170741863981,245,0 +170741864029,245,0 +170741864079,245,0 +170741864128,245,0 +170741864178,245,0 +170741864226,245,0 +170741864275,245,0 +170741864323,246,0 +170741864371,245,0 +170741864419,245,0 +170741864468,245,0 +170741864516,245,0 +170741864564,245,0 +170741864612,245,0 +170741864662,245,0 +170741864710,245,0 +170741864758,245,0 +170741864805,245,0 +170741864855,245,0 +170741864903,245,0 +170741864953,245,0 +170741865000,245,0 +170741865048,245,0 +170741865096,245,0 +170741865144,245,0 +170741865192,245,0 +170741865240,245,0 +170741865290,245,0 +170741865339,245,0 +170741865387,245,0 +170741865435,245,0 +170741865483,245,0 +170741865533,245,0 +170741865582,245,0 +170741865632,245,0 +170741865680,245,0 +170741865729,245,0 +170741865777,245,0 +170741865825,245,0 +170741865873,245,0 +170741865923,245,0 +170741865971,245,0 +170741866020,245,0 +170741866068,245,0 +170741866116,245,0 +170741866164,245,0 +170741866212,245,0 +170741866260,245,0 +170741866308,245,0 +170741866356,244,0 +170741866406,245,0 +170741866453,245,0 +170741866501,245,0 +170741866549,245,0 +170741866599,244,0 +170741866647,245,0 +170741866695,245,0 +170741866743,245,0 +170741866792,245,0 +170741866842,245,0 +170741866890,245,0 +170741866937,245,0 +170741866985,245,0 +170741867033,244,0 +170741867081,245,0 +170741867129,245,0 +170741867177,245,0 +170741867225,245,0 +170741867273,245,0 +170741867322,245,0 +170741867370,245,0 +170741867420,245,0 +170741867469,245,0 +170741867517,245,0 +170741867565,245,0 +170741867613,244,0 +170741867661,245,0 +170741867708,245,0 +170741867756,245,0 +170741867804,245,0 +170741867852,245,0 +170741867900,245,0 +170741867949,245,0 +170741867997,245,0 +170741868045,245,0 +170741868093,245,0 +170741868141,245,0 +170741868189,245,0 +170741868239,245,0 +170741868288,245,0 +170741868336,245,0 +170741868384,245,0 +170741868432,245,0 +170741868480,245,0 +170741868528,245,0 +170741868577,246,0 +170741868627,245,0 +170741868675,245,0 +170741868723,245,0 +170741868771,245,0 +170741868820,245,0 +170741868868,245,0 +170741868916,245,0 +170741868964,245,0 +170741869013,245,0 +170741869061,245,0 +170741869111,245,0 +170741869158,245,0 +170741869206,245,0 +170741869254,245,0 +170741869302,245,0 +170741869350,245,0 +170741869398,245,0 +170741869448,245,0 +170741869496,245,0 +170741869543,245,0 +170741869591,246,0 +170741869641,245,0 +170741869690,245,0 +170741869738,245,0 +170741869786,245,0 +170741869834,245,0 +170741869882,245,0 +170741869930,245,0 +170741869978,245,0 +170741870026,245,0 +170741870074,245,0 +170741870122,245,0 +170741870170,245,0 +170741870218,245,0 +170741870266,245,0 +170741870314,245,0 +170741870361,245,0 +170741870409,245,0 +170741870457,245,0 +170741870505,245,0 +170741870555,245,0 +170741870602,245,0 +170741870652,245,0 +170741870702,245,0 +170741870750,245,0 +170741870798,245,0 +170741870846,245,0 +170741870893,245,0 +170741870942,245,0 +170741870990,245,0 +170741871037,245,0 +170741871085,245,0 +170741871133,245,0 +170741871181,245,0 +170741871231,245,0 +170741871280,245,0 +170741871328,245,0 +170741871376,245,0 +170741871426,245,0 +170741871474,245,0 +170741871522,245,0 +170741871570,245,0 +170741871619,245,0 +170741871667,245,0 +170741871715,245,0 +170741871763,245,0 +170741871812,245,0 +170741871860,245,0 +170741871910,245,0 +170741871958,245,0 +170741872007,245,0 +170741872055,245,0 +170741872105,245,0 +170741872153,245,0 +170741872201,245,0 +170741872250,245,0 +170741872298,245,0 +170741872348,245,0 +170741872396,246,0 +170741872444,245,0 +170741872492,245,0 +170741872540,245,0 +170741872588,245,0 +170741872637,245,0 +170741872685,245,0 +170741872735,245,0 +170741872783,245,0 +170741872831,245,0 +170741872880,245,0 +170741872928,245,0 +170741872978,246,0 +170741873026,245,0 +170741873074,245,0 +170741873123,245,0 +170741873173,245,0 +170741873221,245,0 +170741873269,245,0 +170741873317,245,0 +170741873366,246,0 +170741873414,245,0 +170741873464,245,0 +170741873512,245,0 +170741873560,245,0 +170741873609,245,0 +170741873657,245,0 +170741873705,245,0 +170741873753,245,0 +170741873801,245,0 +170741873849,246,0 +170741873899,245,0 +170741873947,245,0 +170741873996,245,0 +170741874046,245,0 +170741874095,245,0 +170741874143,245,0 +170741874192,245,0 +170741874240,245,0 +170741874288,245,0 +170741874338,245,0 +170741874386,245,0 +170741874434,245,0 +170741874482,245,0 +170741874531,245,0 +170741874579,245,0 +170741874627,245,0 +170741874675,245,0 +170741874725,245,0 +170741874773,245,0 +170741874821,245,0 +170741874869,245,0 +170741874917,245,0 +170741874966,245,0 +170741875014,245,0 +170741875062,245,0 +170741875112,246,0 +170741875161,245,0 +170741875209,245,0 +170741875257,244,0 +170741875305,245,0 +170741875353,246,0 +170741875401,245,0 +170741875449,245,0 +170741875498,245,0 +170741875548,245,0 +170741875596,245,0 +170741875645,245,0 +170741875693,245,0 +170741875743,245,0 +170741875792,245,0 +170741875840,245,0 +170741875890,245,0 +170741875938,245,0 +170741875987,245,0 +170741876037,245,0 +170741876086,245,0 +170741876134,245,0 +170741876182,246,0 +170741876230,245,0 +170741876278,245,0 +170741876328,245,0 +170741876376,245,0 +170741876424,245,0 +170741876473,245,0 +170741876523,245,0 +170741876571,245,0 +170741876619,245,0 +170741876666,245,0 +170741876714,245,0 +170741876764,245,0 +170741876812,245,0 +170741876860,245,0 +170741876908,245,0 +170741876957,245,0 +170741877007,246,0 +170741877055,245,0 +170741877103,245,0 +170741877151,245,0 +170741877200,245,0 +170741877248,245,0 +170741877296,245,0 +170741877346,245,0 +170741877394,245,0 +170741877443,245,0 +170741877491,245,0 +170741877539,245,0 +170741877588,245,0 +170741877636,245,0 +170741877684,245,0 +170741877734,245,0 +170741877783,245,0 +170741877831,245,0 +170741877881,245,0 +170741877930,245,0 +170741877978,245,0 +170741878028,245,0 +170741878077,245,0 +170741878125,246,0 +170741878173,245,0 +170741878223,245,0 +170741878271,245,0 +170741878318,245,0 +170741878366,245,0 +170741878414,245,0 +170741878464,245,0 +170741878513,245,0 +170741878563,245,0 +170741878611,245,0 +170741878660,245,0 +170741878710,245,0 +170741878758,245,0 +170741878806,245,0 +170741878855,245,0 +170741878903,245,0 +170741878951,245,0 +170741878999,245,0 +170741879047,245,0 +170741879097,245,0 +170741879145,245,0 +170741879193,245,0 +170741879241,245,0 +170741879290,245,0 +170741879338,245,0 +170741879386,245,0 +170741879436,245,0 +170741879484,245,0 +170741879531,245,0 +170741879579,245,0 +170741879629,245,0 +170741879677,245,0 +170741879725,245,0 +170741879774,245,0 +170741879822,245,0 +170741879872,245,0 +170741879920,245,0 +170741879968,245,0 +170741880017,245,0 diff --git a/laser_value/0209-05.csv b/laser_value/0209-05.csv new file mode 100644 index 0000000..be9e8df --- /dev/null +++ b/laser_value/0209-05.csv @@ -0,0 +1,7436 @@ +timestamp,laser_value,event +170741880066,245,0 +170741880115,245,0 +170741880163,245,0 +170741880211,245,0 +170741880259,245,0 +170741880307,245,0 +170741880355,245,0 +170741880405,245,0 +170741880453,245,0 +170741880501,245,0 +170741880550,245,0 +170741880599,245,0 +170741880647,245,0 +170741880695,245,0 +170741880745,245,0 +170741880793,245,0 +170741880841,245,0 +170741880890,245,0 +170741880938,245,0 +170741880986,245,0 +170741881036,245,0 +170741881084,245,0 +170741881132,245,0 +170741881180,245,0 +170741881229,245,0 +170741881277,245,0 +170741881325,245,0 +170741881373,245,0 +170741881421,245,0 +170741881469,245,0 +170741881517,245,0 +170741881565,244,0 +170741881613,245,0 +170741881660,245,0 +170741881708,245,0 +170741881756,245,0 +170741881804,245,0 +170741881852,245,0 +170741881900,245,0 +170741881948,245,0 +170741881995,245,0 +170741882043,245,0 +170741882091,245,0 +170741882141,245,0 +170741882189,245,0 +170741882238,245,0 +170741882286,245,0 +170741882336,245,0 +170741882384,245,0 +170741882432,245,0 +170741882480,245,0 +170741882528,245,0 +170741882576,245,0 +170741882624,245,0 +170741882673,245,0 +170741882721,245,0 +170741882769,245,0 +170741882817,245,0 +170741882865,245,0 +170741882914,245,0 +170741882962,245,0 +170741883012,245,0 +170741883061,246,0 +170741883109,245,0 +170741883159,245,0 +170741883208,245,0 +170741883258,245,0 +170741883306,245,0 +170741883354,245,0 +170741883402,245,0 +170741883451,245,0 +170741883501,245,0 +170741883549,246,0 +170741883597,245,0 +170741883646,245,0 +170741883694,245,0 +170741883744,245,0 +170741883792,245,0 +170741883840,245,0 +170741883889,245,0 +170741883937,245,0 +170741883985,245,0 +170741884033,245,0 +170741884081,245,0 +170741884129,245,0 +170741884177,245,0 +170741884225,246,0 +170741884273,245,0 +170741884322,245,0 +170741884370,245,0 +170741884418,245,0 +170741884466,245,0 +170741884514,245,0 +170741884563,245,0 +170741884611,245,0 +170741884661,245,0 +170741884709,245,0 +170741884757,245,0 +170741884804,245,0 +170741884852,245,0 +170741884900,245,0 +170741884948,245,0 +170741884997,245,0 +170741885045,246,0 +170741885093,245,0 +170741885141,245,0 +170741885189,245,0 +170741885237,245,0 +170741885285,245,0 +170741885333,245,0 +170741885381,245,0 +170741885428,245,0 +170741885478,245,0 +170741885526,245,0 +170741885575,245,0 +170741885623,245,0 +170741885671,245,0 +170741885719,245,0 +170741885767,245,0 +170741885815,245,0 +170741885863,245,0 +170741885911,245,0 +170741885959,245,0 +170741886007,245,0 +170741886056,245,0 +170741886104,245,0 +170741886152,245,0 +170741886200,245,0 +170741886249,245,0 +170741886297,245,0 +170741886347,245,0 +170741886396,245,0 +170741886446,245,0 +170741886494,245,0 +170741886542,245,0 +170741886591,245,0 +170741886639,245,0 +170741886689,245,0 +170741886737,245,0 +170741886785,245,0 +170741886833,245,0 +170741886882,245,0 +170741886932,245,0 +170741886981,245,0 +170741887031,245,0 +170741887079,245,0 +170741887127,245,0 +170741887176,245,0 +170741887226,245,0 +170741887275,245,0 +170741887325,245,0 +170741887373,245,0 +170741887421,245,0 +170741887470,245,0 +170741887518,245,0 +170741887568,245,0 +170741887616,245,0 +170741887664,245,0 +170741887712,245,0 +170741887760,245,0 +170741887809,245,0 +170741887857,245,0 +170741887905,245,0 +170741887953,245,0 +170741888001,245,0 +170741888049,245,0 +170741888098,245,0 +170741888146,245,0 +170741888194,245,0 +170741888244,245,0 +170741888293,245,0 +170741888341,245,0 +170741888389,245,0 +170741888439,245,0 +170741888488,245,0 +170741888536,245,0 +170741888586,245,0 +170741888633,245,0 +170741888681,245,0 +170741888729,245,0 +170741888779,245,0 +170741888827,245,0 +170741888876,245,0 +170741888926,245,0 +170741888974,245,0 +170741889023,245,0 +170741889071,245,0 +170741889119,245,0 +170741889167,244,0 +170741889217,245,0 +170741889266,245,0 +170741889316,245,0 +170741889364,245,0 +170741889413,245,0 +170741889461,245,0 +170741889509,245,0 +170741889557,245,0 +170741889605,245,0 +170741889654,245,0 +170741889702,245,0 +170741889752,245,0 +170741889801,245,0 +170741889849,245,0 +170741889897,245,0 +170741889945,245,0 +170741889993,245,0 +170741890041,245,0 +170741890089,245,0 +170741890139,245,0 +170741890187,245,0 +170741890235,245,0 +170741890283,245,0 +170741890331,245,0 +170741890380,245,0 +170741890428,245,0 +170741890476,245,0 +170741890524,245,0 +170741890573,245,0 +170741890621,245,0 +170741890669,245,0 +170741890719,245,0 +170741890768,245,0 +170741890816,245,0 +170741890864,245,0 +170741890912,245,0 +170741890962,245,0 +170741891010,245,0 +170741891059,245,0 +170741891108,245,0 +170741891158,245,0 +170741891208,245,0 +170741891256,245,0 +170741891304,245,0 +170741891352,245,0 +170741891401,245,0 +170741891451,245,0 +170741891498,245,0 +170741891546,245,0 +170741891596,245,0 +170741891644,245,0 +170741891693,245,0 +170741891741,245,0 +170741891791,245,0 +170741891840,245,0 +170741891888,245,0 +170741891936,245,0 +170741891984,245,0 +170741892032,245,0 +170741892082,245,0 +170741892129,245,0 +170741892177,245,0 +170741892225,245,0 +170741892275,245,0 +170741892323,246,0 +170741892372,245,0 +170741892422,245,0 +170741892470,245,0 +170741892518,245,0 +170741892567,245,0 +170741892615,245,0 +170741892663,245,0 +170741892711,245,0 +170741892759,245,0 +170741892807,245,0 +170741892857,245,0 +170741892905,245,0 +170741892954,245,0 +170741893002,245,0 +170741893050,245,0 +170741893098,245,0 +170741893147,245,0 +170741893195,245,0 +170741893243,245,0 +170741893291,245,0 +170741893339,245,0 +170741893387,245,0 +170741893436,245,0 +170741893484,245,0 +170741893534,245,0 +170741893582,245,0 +170741893630,245,0 +170741893678,245,0 +170741893727,245,0 +170741893777,245,0 +170741893826,245,0 +170741893874,245,0 +170741893922,245,0 +170741893970,245,0 +170741894020,245,0 +170741894069,245,0 +170741894117,245,0 +170741894167,245,0 +170741894215,245,0 +170741894263,245,0 +170741894311,245,0 +170741894360,245,0 +170741894408,244,0 +170741894456,245,0 +170741894505,245,0 +170741894555,245,0 +170741894604,245,0 +170741894652,245,0 +170741894700,245,0 +170741894750,245,0 +170741894799,245,0 +170741894847,245,0 +170741894895,245,0 +170741894943,245,0 +170741894991,245,0 +170741895040,245,0 +170741895088,245,0 +170741895138,245,0 +170741895186,245,0 +170741895235,245,0 +170741895283,245,0 +170741895331,245,0 +170741895379,245,0 +170741895429,245,0 +170741895476,245,0 +170741895524,245,0 +170741895572,245,0 +170741895620,245,0 +170741895668,245,0 +170741895716,245,0 +170741895764,245,0 +170741895812,245,0 +170741895859,245,0 +170741895907,245,0 +170741895955,245,0 +170741896003,245,0 +170741896051,245,0 +170741896101,245,0 +170741896148,245,0 +170741896196,245,0 +170741896244,245,0 +170741896292,245,0 +170741896342,245,0 +170741896391,245,0 +170741896439,245,0 +170741896487,245,0 +170741896535,245,0 +170741896584,245,0 +170741896632,245,0 +170741896682,245,0 +170741896730,245,0 +170741896778,245,0 +170741896826,245,0 +170741896874,245,0 +170741896922,245,0 +170741896970,245,0 +170741897018,245,0 +170741897067,245,0 +170741897115,245,0 +170741897165,245,0 +170741897214,245,0 +170741897262,245,0 +170741897312,245,0 +170741897361,245,0 +170741897411,245,0 +170741897460,245,0 +170741897510,245,0 +170741897558,245,0 +170741897607,245,0 +170741897655,245,0 +170741897703,245,0 +170741897753,245,0 +170741897801,245,0 +170741897848,245,0 +170741897896,245,0 +170741897944,245,0 +170741897994,245,0 +170741898043,245,0 +170741898091,245,0 +170741898139,245,0 +170741898189,245,0 +170741898237,245,0 +170741898285,245,0 +170741898333,245,0 +170741898381,245,0 +170741898429,245,0 +170741898476,245,0 +170741898526,245,0 +170741898574,245,0 +170741898622,245,0 +170741898671,245,0 +170741898721,245,0 +170741898769,245,0 +170741898817,245,0 +170741898866,245,0 +170741898916,245,0 +170741898964,245,0 +170741899012,245,0 +170741899061,245,0 +170741899109,245,0 +170741899157,245,0 +170741899205,245,0 +170741899255,245,0 +170741899304,245,0 +170741899352,245,0 +170741899402,245,0 +170741899451,245,0 +170741899499,245,0 +170741899547,245,0 +170741899597,245,0 +170741899646,245,0 +170741899696,245,0 +170741899745,245,0 +170741899793,245,0 +170741899841,245,0 +170741899889,246,0 +170741899939,245,0 +170741899987,245,0 +170741900035,245,0 +170741900084,245,0 +170741900132,245,0 +170741900182,245,0 +170741900229,245,0 +170741900277,245,0 +170741900327,245,0 +170741900376,245,0 +170741900424,245,0 +170741900472,245,0 +170741900522,245,0 +170741900570,245,0 +170741900618,245,0 +170741900667,245,0 +170741900715,245,0 +170741900763,245,0 +170741900811,245,0 +170741900859,245,0 +170741900909,245,0 +170741900957,245,0 +170741901006,245,0 +170741901054,245,0 +170741901104,245,0 +170741901153,245,0 +170741901201,245,0 +170741901251,245,0 +170741901299,245,0 +170741901347,245,0 +170741901395,245,0 +170741901443,245,0 +170741901492,245,0 +170741901542,245,0 +170741901590,245,0 +170741901638,245,0 +170741901685,245,0 +170741901735,245,0 +170741901784,245,0 +170741901834,245,0 +170741901883,245,0 +170741901933,245,0 +170741901981,244,0 +170741902029,245,0 +170741902077,245,0 +170741902125,245,0 +170741902173,245,0 +170741902222,245,0 +170741902270,245,0 +170741902318,245,0 +170741902366,245,0 +170741902415,245,0 +170741902465,245,0 +170741902513,245,0 +170741902562,245,0 +170741902610,245,0 +170741902660,245,0 +170741902708,245,0 +170741902757,245,0 +170741902807,245,0 +170741902855,245,0 +170741902903,245,0 +170741902951,245,0 +170741902999,245,0 +170741903048,245,0 +170741903098,245,0 +170741903145,245,0 +170741903193,245,0 +170741903241,245,0 +170741903291,245,0 +170741903339,245,0 +170741903388,245,0 +170741903436,245,0 +170741903484,245,0 +170741903534,245,0 +170741903582,245,0 +170741903630,245,0 +170741903679,245,0 +170741903727,245,0 +170741903775,245,0 +170741903825,245,0 +170741903873,245,0 +170741903921,245,0 +170741903969,245,0 +170741904016,245,0 +170741904064,245,0 +170741904112,245,0 +170741904160,245,0 +170741904208,245,0 +170741904257,245,0 +170741904305,245,0 +170741904353,245,0 +170741904403,245,0 +170741904451,245,0 +170741904499,245,0 +170741904548,245,0 +170741904596,245,0 +170741904646,245,0 +170741904695,245,0 +170741904745,245,0 +170741904793,245,0 +170741904842,245,0 +170741904891,245,0 +170741904941,245,0 +170741904989,245,0 +170741905037,245,0 +170741905085,245,0 +170741905134,245,0 +170741905182,245,0 +170741905230,245,0 +170741905278,245,0 +170741905326,245,0 +170741905374,245,0 +170741905422,245,0 +170741905470,245,0 +170741905518,245,0 +170741905565,245,0 +170741905613,245,0 +170741905661,245,0 +170741905709,245,0 +170741905757,245,0 +170741905805,245,0 +170741905853,245,0 +170741905901,245,0 +170741905949,245,0 +170741905997,245,0 +170741906044,245,0 +170741906092,245,0 +170741906140,245,0 +170741906190,245,0 +170741906238,245,0 +170741906286,245,0 +170741906334,245,0 +170741906382,245,0 +170741906431,245,0 +170741906479,245,0 +170741906527,245,0 +170741906575,245,0 +170741906625,245,0 +170741906673,245,0 +170741906722,245,0 +170741906770,245,0 +170741906820,245,0 +170741906868,245,0 +170741906916,245,0 +170741906964,245,0 +170741907013,245,0 +170741907063,245,0 +170741907110,245,0 +170741907160,245,0 +170741907208,245,0 +170741907257,245,0 +170741907305,245,0 +170741907355,245,0 +170741907403,245,0 +170741907451,245,0 +170741907499,245,0 +170741907547,245,0 +170741907596,245,0 +170741907644,245,0 +170741907692,245,0 +170741907742,245,0 +170741907791,245,0 +170741907839,246,0 +170741907887,245,0 +170741907935,246,0 +170741907983,245,0 +170741908031,245,0 +170741908079,245,0 +170741908129,245,0 +170741908177,245,0 +170741908226,245,0 +170741908276,245,0 +170741908324,245,0 +170741908371,245,0 +170741908419,245,0 +170741908467,245,0 +170741908515,245,0 +170741908565,246,0 +170741908613,245,0 +170741908661,245,0 +170741908709,245,0 +170741908758,246,0 +170741908806,245,0 +170741908856,245,0 +170741908904,245,0 +170741908953,245,0 +170741909001,245,0 +170741909049,245,0 +170741909097,245,0 +170741909145,245,0 +170741909193,245,0 +170741909241,245,0 +170741909289,245,0 +170741909337,245,0 +170741909387,245,0 +170741909435,245,0 +170741909484,245,0 +170741909534,245,0 +170741909583,245,0 +170741909631,245,0 +170741909679,245,0 +170741909729,245,0 +170741909777,245,0 +170741909824,245,0 +170741909872,245,0 +170741909920,245,0 +170741909968,245,0 +170741910018,245,0 +170741910067,245,0 +170741910115,245,0 +170741910165,245,0 +170741910213,245,0 +170741910262,245,0 +170741910312,245,0 +170741910361,245,0 +170741910411,245,0 +170741910459,245,0 +170741910507,246,0 +170741910555,245,0 +170741910604,245,0 +170741910652,245,0 +170741910700,245,0 +170741910748,245,0 +170741910796,245,0 +170741910843,245,0 +170741910891,245,0 +170741910939,245,0 +170741910987,245,0 +170741911035,245,0 +170741911083,245,0 +170741911131,245,0 +170741911179,245,0 +170741911226,245,0 +170741911274,245,0 +170741911322,245,0 +170741911372,245,0 +170741911420,245,0 +170741911469,245,0 +170741911517,245,0 +170741911565,245,0 +170741911613,245,0 +170741911661,245,0 +170741911710,245,0 +170741911758,245,0 +170741911808,245,0 +170741911857,245,0 +170741911905,245,0 +170741911955,245,0 +170741912003,245,0 +170741912051,245,0 +170741912099,245,0 +170741912146,245,0 +170741912194,245,0 +170741912244,245,0 +170741912292,245,0 +170741912341,245,0 +170741912391,245,0 +170741912439,245,0 +170741912487,245,0 +170741912535,245,0 +170741912583,245,0 +170741912632,245,0 +170741912680,245,0 +170741912730,245,0 +170741912778,245,0 +170741912826,245,0 +170741912875,245,0 +170741912924,245,0 +170741912972,245,0 +170741913020,245,0 +170741913068,245,0 +170741913118,245,0 +170741913167,245,0 +170741913217,245,0 +170741913265,245,0 +170741913314,245,0 +170741913362,246,0 +170741913410,245,0 +170741913460,246,0 +170741913508,245,0 +170741913557,246,0 +170741913607,245,0 +170741913655,245,0 +170741913703,245,0 +170741913751,245,0 +170741913799,245,0 +170741913847,245,0 +170741913895,246,0 +170741913944,245,0 +170741913992,245,0 +170741914042,245,0 +170741914090,245,0 +170741914138,245,0 +170741914186,245,0 +170741914235,245,0 +170741914285,245,0 +170741914332,245,0 +170741914380,245,0 +170741914428,245,0 +170741914476,245,0 +170741914524,245,0 +170741914574,245,0 +170741914622,245,0 +170741914671,245,0 +170741914721,245,0 +170741914769,245,0 +170741914818,245,0 +170741914866,245,0 +170741914914,245,0 +170741914962,245,0 +170741915010,245,0 +170741915058,245,0 +170741915108,245,0 +170741915156,245,0 +170741915205,245,0 +170741915253,245,0 +170741915301,245,0 +170741915349,245,0 +170741915398,245,0 +170741915448,245,0 +170741915496,245,0 +170741915544,245,0 +170741915592,245,0 +170741915640,245,0 +170741915688,245,0 +170741915737,245,0 +170741915785,245,0 +170741915833,245,0 +170741915881,245,0 +170741915929,245,0 +170741915979,245,0 +170741916027,245,0 +170741916075,245,0 +170741916123,245,0 +170741916171,245,0 +170741916219,245,0 +170741916268,245,0 +170741916316,245,0 +170741916364,245,0 +170741916412,245,0 +170741916460,245,0 +170741916508,245,0 +170741916556,245,0 +170741916605,245,0 +170741916653,245,0 +170741916701,245,0 +170741916751,245,0 +170741916800,245,0 +170741916850,245,0 +170741916899,245,0 +170741916949,245,0 +170741916997,245,0 +170741917045,245,0 +170741917093,245,0 +170741917141,245,0 +170741917189,245,0 +170741917237,245,0 +170741917285,245,0 +170741917333,245,0 +170741917381,245,0 +170741917430,245,0 +170741917478,245,0 +170741917526,245,0 +170741917576,245,0 +170741917625,245,0 +170741917675,245,0 +170741917724,246,0 +170741917772,245,0 +170741917820,245,0 +170741917870,245,0 +170741917919,245,0 +170741917967,245,0 +170741918016,245,0 +170741918064,245,0 +170741918112,245,0 +170741918162,245,0 +170741918210,245,0 +170741918258,245,0 +170741918307,245,0 +170741918355,245,0 +170741918403,245,0 +170741918453,245,0 +170741918501,245,0 +170741918549,245,0 +170741918597,245,0 +170741918646,245,0 +170741918694,245,0 +170741918744,245,0 +170741918792,245,0 +170741918840,245,0 +170741918888,245,0 +170741918936,245,0 +170741918984,245,0 +170741919031,245,0 +170741919079,245,0 +170741919129,245,0 +170741919178,245,0 +170741919226,246,0 +170741919274,245,0 +170741919324,245,0 +170741919372,245,0 +170741919420,245,0 +170741919468,245,0 +170741919516,245,0 +170741919564,245,0 +170741919613,245,0 +170741919663,245,0 +170741919712,245,0 +170741919760,245,0 +170741919808,245,0 +170741919856,245,0 +170741919904,245,0 +170741919954,245,0 +170741920003,245,0 +170741920053,245,0 +170741920102,245,0 +170741920150,245,0 +170741920198,245,0 +170741920246,246,0 +170741920295,245,0 +170741920343,245,0 +170741920391,245,0 +170741920439,245,0 +170741920487,245,0 +170741920535,245,0 +170741920583,245,0 +170741920633,245,0 +170741920680,246,0 +170741920730,245,0 +170741920778,245,0 +170741920826,245,0 +170741920876,245,0 +170741920924,245,0 +170741920973,244,0 +170741921021,245,0 +170741921069,246,0 +170741921117,245,0 +170741921165,245,0 +170741921213,245,0 +170741921261,245,0 +170741921310,245,0 +170741921358,246,0 +170741921406,245,0 +170741921454,245,0 +170741921502,245,0 +170741921551,245,0 +170741921599,245,0 +170741921647,245,0 +170741921695,245,0 +170741921743,245,0 +170741921791,245,0 +170741921839,245,0 +170741921887,245,0 +170741921936,245,0 +170741921984,245,0 +170741922032,245,0 +170741922080,245,0 +170741922128,245,0 +170741922176,245,0 +170741922224,245,0 +170741922273,245,0 +170741922322,245,0 +170741922370,245,0 +170741922418,245,0 +170741922468,245,0 +170741922516,245,0 +170741922563,245,0 +170741922613,245,0 +170741922661,245,0 +170741922709,245,0 +170741922756,245,0 +170741922804,245,0 +170741922852,245,0 +170741922900,245,0 +170741922948,245,0 +170741922996,245,0 +170741923044,245,0 +170741923092,245,0 +170741923140,245,0 +170741923187,245,0 +170741923235,245,0 +170741923283,245,0 +170741923331,245,0 +170741923381,245,0 +170741923429,245,0 +170741923477,245,0 +170741923525,245,0 +170741923574,245,0 +170741923622,245,0 +170741923672,245,0 +170741923720,245,0 +170741923768,245,0 +170741923817,245,0 +170741923866,245,0 +170741923914,245,0 +170741923964,245,0 +170741924012,245,0 +170741924060,245,0 +170741924109,245,0 +170741924159,245,0 +170741924208,245,0 +170741924256,245,0 +170741924306,245,0 +170741924354,245,0 +170741924402,245,0 +170741924451,245,0 +170741924501,245,0 +170741924550,245,0 +170741924598,245,0 +170741924648,245,0 +170741924697,245,0 +170741924745,245,0 +170741924795,245,0 +170741924843,245,0 +170741924891,245,0 +170741924939,245,0 +170741924988,245,0 +170741925038,245,0 +170741925086,245,0 +170741925133,245,0 +170741925181,245,0 +170741925229,245,0 +170741925277,246,0 +170741925327,245,0 +170741925375,245,0 +170741925422,246,0 +170741925470,245,0 +170741925518,245,0 +170741925566,245,0 +170741925616,245,0 +170741925664,245,0 +170741925712,245,0 +170741925761,245,0 +170741925809,245,0 +170741925857,245,0 +170741925905,245,0 +170741925953,245,0 +170741926001,246,0 +170741926049,245,0 +170741926097,245,0 +170741926145,245,0 +170741926194,245,0 +170741926242,245,0 +170741926290,245,0 +170741926338,245,0 +170741926388,245,0 +170741926437,245,0 +170741926485,245,0 +170741926533,245,0 +170741926581,245,0 +170741926629,245,0 +170741926679,245,0 +170741926728,245,0 +170741926776,245,0 +170741926824,245,0 +170741926874,245,0 +170741926922,245,0 +170741926969,245,0 +170741927017,245,0 +170741927065,245,0 +170741927113,245,0 +170741927161,245,0 +170741927209,245,0 +170741927257,245,0 +170741927305,245,0 +170741927353,245,0 +170741927403,245,0 +170741927452,245,0 +170741927502,245,0 +170741927550,245,0 +170741927598,245,0 +170741927647,245,0 +170741927697,245,0 +170741927746,245,0 +170741927794,245,0 +170741927842,245,0 +170741927892,245,0 +170741927941,245,0 +170741927989,245,0 +170741928039,245,0 +170741928087,245,0 +170741928136,245,0 +170741928184,245,0 +170741928232,246,0 +170741928280,245,0 +170741928330,245,0 +170741928379,245,0 +170741928427,245,0 +170741928477,245,0 +170741928525,245,0 +170741928573,245,0 +170741928620,245,0 +170741928668,245,0 +170741928716,245,0 +170741928764,245,0 +170741928812,245,0 +170741928860,245,0 +170741928910,245,0 +170741928958,245,0 +170741929006,245,0 +170741929055,246,0 +170741929105,245,0 +170741929153,245,0 +170741929201,245,0 +170741929248,245,0 +170741929298,245,0 +170741929346,245,0 +170741929395,245,0 +170741929443,245,0 +170741929491,245,0 +170741929541,245,0 +170741929590,245,0 +170741929640,245,0 +170741929688,245,0 +170741929737,245,0 +170741929785,245,0 +170741929833,245,0 +170741929881,245,0 +170741929931,245,0 +170741929979,245,0 +170741930027,245,0 +170741930076,245,0 +170741930126,245,0 +170741930175,245,0 +170741930223,245,0 +170741930271,245,0 +170741930320,245,0 +170741930370,245,0 +170741930418,245,0 +170741930467,245,0 +170741930517,245,0 +170741930565,245,0 +170741930614,246,0 +170741930664,245,0 +170741930712,245,0 +170741930760,245,0 +170741930808,245,0 +170741930856,245,0 +170741930904,245,0 +170741930952,245,0 +170741931000,245,0 +170741931048,245,0 +170741931096,245,0 +170741931144,245,0 +170741931193,246,0 +170741931243,245,0 +170741931291,245,0 +170741931340,245,0 +170741931388,245,0 +170741931438,246,0 +170741931486,245,0 +170741931533,245,0 +170741931583,246,0 +170741931631,245,0 +170741931679,245,0 +170741931727,245,0 +170741931776,245,0 +170741931826,245,0 +170741931874,245,0 +170741931923,245,0 +170741931971,245,0 +170741932021,245,0 +170741932070,245,0 +170741932118,245,0 +170741932168,245,0 +170741932217,245,0 +170741932267,245,0 +170741932315,245,0 +170741932363,245,0 +170741932411,245,0 +170741932459,245,0 +170741932507,245,0 +170741932556,245,0 +170741932604,245,0 +170741932652,245,0 +170741932702,245,0 +170741932750,245,0 +170741932799,245,0 +170741932849,245,0 +170741932898,245,0 +170741932946,245,0 +170741932994,245,0 +170741933042,245,0 +170741933090,245,0 +170741933138,245,0 +170741933186,245,0 +170741933236,245,0 +170741933284,246,0 +170741933332,245,0 +170741933379,245,0 +170741933429,245,0 +170741933478,246,0 +170741933528,245,0 +170741933577,245,0 +170741933625,245,0 +170741933675,245,0 +170741933723,245,0 +170741933771,245,0 +170741933819,245,0 +170741933867,245,0 +170741933915,245,0 +170741933963,245,0 +170741934012,245,0 +170741934060,245,0 +170741934109,245,0 +170741934157,245,0 +170741934205,245,0 +170741934253,245,0 +170741934301,245,0 +170741934351,245,0 +170741934400,245,0 +170741934448,245,0 +170741934496,245,0 +170741934546,245,0 +170741934594,245,0 +170741934642,245,0 +170741934691,245,0 +170741934739,246,0 +170741934787,245,0 +170741934835,245,0 +170741934883,245,0 +170741934932,245,0 +170741934980,245,0 +170741935028,246,0 +170741935078,246,0 +170741935128,245,0 +170741935177,245,0 +170741935225,245,0 +170741935273,246,0 +170741935321,245,0 +170741935369,245,0 +170741935418,245,0 +170741935466,245,0 +170741935514,245,0 +170741935564,245,0 +170741935613,245,0 +170741935663,245,0 +170741935712,245,0 +170741935760,245,0 +170741935810,246,0 +170741935858,245,0 +170741935907,245,0 +170741935957,246,0 +170741936005,245,0 +170741936054,245,0 +170741936102,245,0 +170741936152,245,0 +170741936200,245,0 +170741936249,245,0 +170741936297,245,0 +170741936345,245,0 +170741936395,245,0 +170741936443,245,0 +170741936491,246,0 +170741936539,245,0 +170741936588,245,0 +170741936636,245,0 +170741936684,245,0 +170741936732,246,0 +170741936781,245,0 +170741936831,245,0 +170741936880,245,0 +170741936928,245,0 +170741936976,245,0 +170741937024,245,0 +170741937072,245,0 +170741937120,245,0 +170741937170,245,0 +170741937219,245,0 +170741937269,245,0 +170741937317,246,0 +170741937365,245,0 +170741937414,245,0 +170741937462,245,0 +170741937510,245,0 +170741937560,245,0 +170741937609,245,0 +170741937657,245,0 +170741937707,245,0 +170741937755,245,0 +170741937803,245,0 +170741937852,245,0 +170741937900,245,0 +170741937948,246,0 +170741937998,245,0 +170741938046,245,0 +170741938095,245,0 +170741938143,245,0 +170741938191,246,0 +170741938241,245,0 +170741938288,245,0 +170741938338,245,0 +170741938386,246,0 +170741938434,245,0 +170741938482,245,0 +170741938531,245,0 +170741938581,245,0 +170741938629,245,0 +170741938677,246,0 +170741938726,245,0 +170741938774,245,0 +170741938822,245,0 +170741938872,245,0 +170741938920,246,0 +170741938969,245,0 +170741939019,245,0 +170741939067,245,0 +170741939115,245,0 +170741939164,246,0 +170741939212,245,0 +170741939260,245,0 +170741939308,245,0 +170741939356,245,0 +170741939404,245,0 +170741939454,245,0 +170741939501,245,0 +170741939549,245,0 +170741939599,245,0 +170741939647,245,0 +170741939695,245,0 +170741939743,245,0 +170741939791,245,0 +170741939839,245,0 +170741939888,245,0 +170741939938,246,0 +170741939986,245,0 +170741940033,245,0 +170741940081,246,0 +170741940129,245,0 +170741940179,245,0 +170741940227,245,0 +170741940276,245,0 +170741940324,245,0 +170741940372,246,0 +170741940422,245,0 +170741940470,245,0 +170741940518,245,0 +170741940566,245,0 +170741940614,246,0 +170741940662,245,0 +170741940710,245,0 +170741940758,246,0 +170741940806,245,0 +170741940855,245,0 +170741940903,245,0 +170741940953,245,0 +170741941001,245,0 +170741941049,246,0 +170741941098,245,0 +170741941148,246,0 +170741941196,245,0 +170741941243,245,0 +170741941293,245,0 +170741941341,245,0 +170741941389,246,0 +170741941438,245,0 +170741941488,245,0 +170741941536,245,0 +170741941584,245,0 +170741941632,245,0 +170741941681,245,0 +170741941729,245,0 +170741941779,245,0 +170741941828,246,0 +170741941876,245,0 +170741941924,245,0 +170741941974,245,0 +170741942023,245,0 +170741942073,245,0 +170741942122,246,0 +170741942172,245,0 +170741942220,245,0 +170741942268,246,0 +170741942316,245,0 +170741942365,245,0 +170741942413,245,0 +170741942463,246,0 +170741942511,245,0 +170741942560,245,0 +170741942608,245,0 +170741942657,245,0 +170741942705,246,0 +170741942753,245,0 +170741942803,245,0 +170741942852,246,0 +170741942900,246,0 +170741942948,245,0 +170741942996,245,0 +170741943046,245,0 +170741943094,245,0 +170741943142,245,0 +170741943189,245,0 +170741943239,245,0 +170741943287,245,0 +170741943335,245,0 +170741943384,245,0 +170741943434,245,0 +170741943482,246,0 +170741943530,245,0 +170741943578,245,0 +170741943626,246,0 +170741943675,246,0 +170741943723,245,0 +170741943773,246,0 +170741943821,245,0 +170741943870,246,0 +170741943920,245,0 +170741943968,245,0 +170741944016,245,0 +170741944065,245,0 +170741944113,245,0 +170741944163,245,0 +170741944211,245,0 +170741944259,245,0 +170741944308,245,0 +170741944356,245,0 +170741944404,246,0 +170741944454,246,0 +170741944503,245,0 +170741944551,245,0 +170741944599,245,0 +170741944647,245,0 +170741944695,245,0 +170741944744,245,0 +170741944794,245,0 +170741944843,246,0 +170741944893,246,0 +170741944943,246,0 +170741944992,246,0 +170741945040,245,0 +170741945088,245,0 +170741945137,245,0 +170741945185,246,0 +170741945233,245,0 +170741945283,245,0 +170741945332,245,0 +170741945380,245,0 +170741945428,245,0 +170741945478,245,0 +170741945526,245,0 +170741945574,245,0 +170741945623,246,0 +170741945673,245,0 +170741945721,245,0 +170741945769,245,0 +170741945818,246,0 +170741945868,245,0 +170741945916,245,0 +170741945965,245,0 +170741946013,245,0 +170741946063,245,0 +170741946112,245,0 +170741946160,246,0 +170741946208,245,0 +170741946256,245,0 +170741946304,246,0 +170741946353,246,0 +170741946403,245,0 +170741946452,245,0 +170741946502,245,0 +170741946551,245,0 +170741946601,245,0 +170741946649,246,0 +170741946697,246,0 +170741946746,245,0 +170741946796,246,0 +170741946845,245,0 +170741946893,245,0 +170741946941,245,0 +170741946991,245,0 +170741947039,246,0 +170741947087,245,0 +170741947135,245,0 +170741947183,245,0 +170741947230,245,0 +170741947280,245,0 +170741947328,246,0 +170741947376,245,0 +170741947425,246,0 +170741947473,245,0 +170741947523,245,0 +170741947572,245,0 +170741947622,245,0 +170741947671,245,0 +170741947719,245,0 +170741947767,246,0 +170741947815,245,0 +170741947863,245,0 +170741947913,245,0 +170741947961,246,0 +170741948009,246,0 +170741948058,245,0 +170741948107,245,0 +170741948155,245,0 +170741948205,245,0 +170741948254,246,0 +170741948302,245,0 +170741948350,245,0 +170741948400,245,0 +170741948449,245,0 +170741948499,245,0 +170741948547,245,0 +170741948595,245,0 +170741948643,245,0 +170741948691,246,0 +170741948740,245,0 +170741948788,245,0 +170741948838,245,0 +170741948886,246,0 +170741948933,245,0 +170741948981,246,0 +170741949031,246,0 +170741949079,245,0 +170741949127,245,0 +170741949175,245,0 +170741949223,245,0 +170741949271,245,0 +170741949319,245,0 +170741949367,246,0 +170741949415,246,0 +170741949463,246,0 +170741949512,245,0 +170741949562,245,0 +170741949611,245,0 +170741949661,245,0 +170741949709,246,0 +170741949757,245,0 +170741949805,245,0 +170741949854,245,0 +170741949902,245,0 +170741949950,245,0 +170741949998,245,0 +170741950046,246,0 +170741950096,245,0 +170741950144,246,0 +170741950193,245,0 +170741950241,246,0 +170741950289,245,0 +170741950337,246,0 +170741950387,245,0 +170741950435,245,0 +170741950483,246,0 +170741950530,246,0 +170741950578,246,0 +170741950628,245,0 +170741950677,245,0 +170741950725,245,0 +170741950773,245,0 +170741950823,245,0 +170741950872,246,0 +170741950920,246,0 +170741950968,246,0 +170741951016,245,0 +170741951064,246,0 +170741951112,245,0 +170741951160,245,0 +170741951208,245,0 +170741951256,245,0 +170741951304,246,0 +170741951352,246,0 +170741951400,245,0 +170741951448,246,0 +170741951495,246,0 +170741951543,245,0 +170741951591,245,0 +170741951639,245,0 +170741951689,245,0 +170741951736,246,0 +170741951784,246,0 +170741951832,245,0 +170741951880,246,0 +170741951928,245,0 +170741951976,245,0 +170741952025,246,0 +170741952073,245,0 +170741952121,246,0 +170741952169,245,0 +170741952217,245,0 +170741952265,245,0 +170741952315,245,0 +170741952363,246,0 +170741952411,245,0 +170741952458,246,0 +170741952508,246,0 +170741952558,245,0 +170741952605,246,0 +170741952655,245,0 +170741952704,245,0 +170741952752,245,0 +170741952800,245,0 +170741952850,245,0 +170741952898,246,0 +170741952946,246,0 +170741952994,246,0 +170741953042,245,0 +170741953091,246,0 +170741953141,245,0 +170741953190,245,0 +170741953240,246,0 +170741953288,245,0 +170741953336,245,0 +170741953385,246,0 +170741953433,245,0 +170741953483,246,0 +170741953531,246,0 +170741953580,245,0 +170741953628,245,0 +170741953676,245,0 +170741953726,245,0 +170741953774,246,0 +170741953823,246,0 +170741953871,245,0 +170741953919,245,0 +170741953968,245,0 +170741954018,245,0 +170741954067,246,0 +170741954115,245,0 +170741954163,245,0 +170741954211,246,0 +170741954261,246,0 +170741954309,245,0 +170741954358,245,0 +170741954408,245,0 +170741954456,246,0 +170741954505,245,0 +170741954553,245,0 +170741954601,245,0 +170741954649,246,0 +170741954697,245,0 +170741954745,245,0 +170741954795,245,0 +170741954843,245,0 +170741954891,245,0 +170741954939,245,0 +170741954988,245,0 +170741955036,245,0 +170741955086,245,0 +170741955134,246,0 +170741955183,245,0 +170741955231,246,0 +170741955281,245,0 +170741955328,246,0 +170741955376,245,0 +170741955424,246,0 +170741955472,245,0 +170741955520,245,0 +170741955568,245,0 +170741955616,246,0 +170741955664,245,0 +170741955712,245,0 +170741955760,245,0 +170741955808,246,0 +170741955858,246,0 +170741955905,245,0 +170741955953,245,0 +170741956001,245,0 +170741956049,245,0 +170741956097,245,0 +170741956147,246,0 +170741956194,246,0 +170741956242,246,0 +170741956290,245,0 +170741956338,246,0 +170741956386,245,0 +170741956436,246,0 +170741956483,245,0 +170741956533,245,0 +170741956581,245,0 +170741956629,246,0 +170741956677,246,0 +170741956724,245,0 +170741956772,245,0 +170741956820,246,0 +170741956868,245,0 +170741956916,246,0 +170741956964,245,0 +170741957012,246,0 +170741957060,245,0 +170741957108,245,0 +170741957155,246,0 +170741957203,245,0 +170741957251,245,0 +170741957299,245,0 +170741957347,245,0 +170741957395,245,0 +170741957443,246,0 +170741957491,245,0 +170741957539,245,0 +170741957586,245,0 +170741957636,246,0 +170741957684,245,0 +170741957732,246,0 +170741957781,245,0 +170741957829,245,0 +170741957877,246,0 +170741957925,246,0 +170741957973,246,0 +170741958021,245,0 +170741958071,245,0 +170741958119,245,0 +170741958168,245,0 +170741958216,245,0 +170741958264,246,0 +170741958312,245,0 +170741958362,245,0 +170741958411,246,0 +170741958461,246,0 +170741958509,246,0 +170741958558,245,0 +170741958606,246,0 +170741958654,245,0 +170741958702,246,0 +170741958750,245,0 +170741958799,245,0 +170741958847,245,0 +170741958897,245,0 +170741958945,246,0 +170741958994,245,0 +170741959044,246,0 +170741959092,245,0 +170741959140,246,0 +170741959189,245,0 +170741959239,245,0 +170741959287,246,0 +170741959335,245,0 +170741959383,245,0 +170741959431,246,0 +170741959479,246,0 +170741959527,245,0 +170741959576,246,0 +170741959624,245,0 +170741959672,246,0 +170741959720,245,0 +170741959768,246,0 +170741959818,245,0 +170741959867,246,0 +170741959915,246,0 +170741959963,245,0 +170741960011,245,0 +170741960060,245,0 +170741960108,246,0 +170741960156,246,0 +170741960206,246,0 +170741960254,245,0 +170741960302,246,0 +170741960350,245,0 +170741960399,246,0 +170741960449,245,0 +170741960497,245,0 +170741960545,245,0 +170741960593,245,0 +170741960642,245,0 +170741960692,246,0 +170741960740,245,0 +170741960788,245,0 +170741960836,245,0 +170741960884,245,0 +170741960933,246,0 +170741960981,245,0 +170741961030,245,0 +170741961078,245,0 +170741961126,245,0 +170741961174,246,0 +170741961224,246,0 +170741961272,245,0 +170741961320,245,0 +170741961368,245,0 +170741961416,246,0 +170741961465,246,0 +170741961513,245,0 +170741961562,246,0 +170741961610,246,0 +170741961658,246,0 +170741961708,245,0 +170741961756,246,0 +170741961804,245,0 +170741961853,246,0 +170741961903,246,0 +170741961951,245,0 +170741961999,245,0 +170741962047,246,0 +170741962095,246,0 +170741962144,245,0 +170741962192,245,0 +170741962240,245,0 +170741962290,246,0 +170741962338,246,0 +170741962386,245,0 +170741962434,246,0 +170741962482,245,0 +170741962530,246,0 +170741962577,245,0 +170741962625,246,0 +170741962675,245,0 +170741962723,246,0 +170741962772,245,0 +170741962822,245,0 +170741962871,245,0 +170741962919,245,0 +170741962967,246,0 +170741963017,245,0 +170741963065,246,0 +170741963113,245,0 +170741963162,245,0 +170741963212,245,0 +170741963260,245,0 +170741963308,246,0 +170741963356,245,0 +170741963403,246,0 +170741963451,245,0 +170741963499,245,0 +170741963547,246,0 +170741963595,245,0 +170741963643,246,0 +170741963691,245,0 +170741963739,246,0 +170741963787,246,0 +170741963835,245,0 +170741963883,245,0 +170741963930,245,0 +170741963978,245,0 +170741964026,246,0 +170741964074,246,0 +170741964122,245,0 +170741964170,246,0 +170741964218,245,0 +170741964266,245,0 +170741964315,246,0 +170741964363,246,0 +170741964411,246,0 +170741964459,245,0 +170741964509,245,0 +170741964558,245,0 +170741964608,245,0 +170741964657,245,0 +170741964705,246,0 +170741964755,246,0 +170741964804,245,0 +170741964852,245,0 +170741964902,246,0 +170741964950,245,0 +170741964998,246,0 +170741965045,246,0 +170741965095,246,0 +170741965143,246,0 +170741965192,246,0 +170741965242,245,0 +170741965291,246,0 +170741965341,245,0 +170741965389,246,0 +170741965438,245,0 +170741965486,246,0 +170741965536,246,0 +170741965584,245,0 +170741965632,245,0 +170741965680,245,0 +170741965728,245,0 +170741965777,245,0 +170741965825,245,0 +170741965875,245,0 +170741965923,245,0 +170741965972,246,0 +170741966020,245,0 +170741966068,246,0 +170741966116,245,0 +170741966164,245,0 +170741966212,245,0 +170741966260,245,0 +170741966308,245,0 +170741966358,245,0 +170741966406,245,0 +170741966453,246,0 +170741966501,245,0 +170741966551,246,0 +170741966599,245,0 +170741966647,246,0 +170741966697,245,0 +170741966746,245,0 +170741966794,246,0 +170741966842,246,0 +170741966890,245,0 +170741966938,245,0 +170741966986,245,0 +170741967035,246,0 +170741967085,245,0 +170741967133,245,0 +170741967181,246,0 +170741967230,245,0 +170741967280,245,0 +170741967329,246,0 +170741967377,245,0 +170741967425,245,0 +170741967475,246,0 +170741967523,245,0 +170741967572,246,0 +170741967620,246,0 +170741967668,245,0 +170741967716,246,0 +170741967764,245,0 +170741967812,246,0 +170741967862,245,0 +170741967911,245,0 +170741967959,245,0 +170741968007,246,0 +170741968055,245,0 +170741968103,245,0 +170741968152,246,0 +170741968200,245,0 +170741968248,245,0 +170741968298,246,0 +170741968347,246,0 +170741968395,245,0 +170741968443,246,0 +170741968493,246,0 +170741968542,246,0 +170741968592,245,0 +170741968641,245,0 +170741968691,245,0 +170741968739,245,0 +170741968788,246,0 +170741968836,245,0 +170741968886,246,0 +170741968934,245,0 +170741968983,246,0 +170741969031,245,0 +170741969081,246,0 +170741969130,246,0 +170741969180,245,0 +170741969228,246,0 +170741969276,246,0 +170741969324,245,0 +170741969372,246,0 +170741969420,246,0 +170741969468,245,0 +170741969516,245,0 +170741969564,246,0 +170741969612,245,0 +170741969661,245,0 +170741969709,245,0 +170741969759,245,0 +170741969808,245,0 +170741969856,245,0 +170741969904,246,0 +170741969952,245,0 +170741970000,246,0 +170741970048,245,0 +170741970097,245,0 +170741970145,245,0 +170741970193,245,0 +170741970241,246,0 +170741970289,245,0 +170741970337,245,0 +170741970385,245,0 +170741970434,245,0 +170741970482,245,0 +170741970531,245,0 +170741970579,246,0 +170741970627,246,0 +170741970677,246,0 +170741970724,245,0 +170741970772,245,0 +170741970820,246,0 +170741970868,246,0 +170741970916,246,0 +170741970964,246,0 +170741971012,245,0 +170741971061,246,0 +170741971109,246,0 +170741971157,246,0 +170741971205,245,0 +170741971253,245,0 +170741971301,245,0 +170741971350,246,0 +170741971400,246,0 +170741971448,245,0 +170741971495,245,0 +170741971545,246,0 +170741971593,245,0 +170741971641,245,0 +170741971689,246,0 +170741971736,245,0 +170741971784,245,0 +170741971832,245,0 +170741971880,246,0 +170741971928,246,0 +170741971976,245,0 +170741972024,246,0 +170741972071,246,0 +170741972119,245,0 +170741972167,245,0 +170741972215,246,0 +170741972265,245,0 +170741972313,246,0 +170741972360,245,0 +170741972408,246,0 +170741972456,245,0 +170741972506,246,0 +170741972554,246,0 +170741972601,245,0 +170741972649,246,0 +170741972697,246,0 +170741972747,246,0 +170741972795,246,0 +170741972842,245,0 +170741972890,246,0 +170741972938,246,0 +170741972986,246,0 +170741973034,245,0 +170741973082,245,0 +170741973130,245,0 +170741973178,246,0 +170741973226,246,0 +170741973273,246,0 +170741973321,245,0 +170741973371,245,0 +170741973419,245,0 +170741973467,246,0 +170741973514,245,0 +170741973562,245,0 +170741973612,246,0 +170741973660,245,0 +170741973707,245,0 +170741973755,245,0 +170741973803,246,0 +170741973851,246,0 +170741973899,246,0 +170741973947,245,0 +170741973995,246,0 +170741974043,245,0 +170741974090,245,0 +170741974138,246,0 +170741974186,246,0 +170741974234,245,0 +170741974282,245,0 +170741974330,246,0 +170741974378,245,0 +170741974426,246,0 +170741974474,246,0 +170741974521,246,0 +170741974569,246,0 +170741974617,245,0 +170741974665,245,0 +170741974713,245,0 +170741974761,246,0 +170741974809,245,0 +170741974856,245,0 +170741974906,245,0 +170741974954,245,0 +170741975002,245,0 +170741975051,245,0 +170741975099,245,0 +170741975147,245,0 +170741975195,246,0 +170741975243,246,0 +170741975293,246,0 +170741975342,245,0 +170741975391,246,0 +170741975439,246,0 +170741975487,246,0 +170741975535,246,0 +170741975585,246,0 +170741975633,246,0 +170741975682,246,0 +170741975730,246,0 +170741975780,246,0 +170741975828,246,0 +170741975877,246,0 +170741975927,245,0 +170741975975,245,0 +170741976023,245,0 +170741976071,246,0 +170741976119,246,0 +170741976166,246,0 +170741976216,246,0 +170741976264,245,0 +170741976312,245,0 +170741976362,246,0 +170741976410,246,0 +170741976459,245,0 +170741976507,245,0 +170741976557,245,0 +170741976604,245,0 +170741976652,245,0 +170741976702,245,0 +170741976750,246,0 +170741976799,245,0 +170741976847,246,0 +170741976895,245,0 +170741976943,245,0 +170741976991,246,0 +170741977039,245,0 +170741977087,246,0 +170741977135,246,0 +170741977185,246,0 +170741977234,245,0 +170741977282,246,0 +170741977330,245,0 +170741977378,246,0 +170741977426,245,0 +170741977474,245,0 +170741977523,246,0 +170741977571,245,0 +170741977619,246,0 +170741977667,245,0 +170741977717,245,0 +170741977765,245,0 +170741977813,245,0 +170741977861,246,0 +170741977910,245,0 +170741977958,245,0 +170741978006,245,0 +170741978054,245,0 +170741978102,246,0 +170741978150,245,0 +170741978199,246,0 +170741978247,246,0 +170741978297,245,0 +170741978346,245,0 +170741978394,246,0 +170741978444,246,0 +170741978492,246,0 +170741978541,246,0 +170741978589,245,0 +170741978637,245,0 +170741978687,245,0 +170741978736,246,0 +170741978784,245,0 +170741978832,245,0 +170741978880,246,0 +170741978930,246,0 +170741978979,245,0 +170741979027,246,0 +170741979075,245,0 +170741979123,245,0 +170741979171,245,0 +170741979219,245,0 +170741979269,245,0 +170741979316,245,0 +170741979364,245,0 +170741979412,246,0 +170741979462,245,0 +170741979510,246,0 +170741979558,245,0 +170741979607,245,0 +170741979655,246,0 +170741979703,246,0 +170741979753,245,0 +170741979801,246,0 +170741979850,246,0 +170741979900,245,0 +170741979947,245,0 +170741979995,245,0 +170741980043,246,0 +170741980093,245,0 +170741980141,246,0 +170741980189,246,0 +170741980237,246,0 +170741980285,246,0 +170741980333,245,0 +170741980381,246,0 +170741980429,245,0 +170741980477,246,0 +170741980525,246,0 +170741980572,246,0 +170741980620,245,0 +170741980670,245,0 +170741980718,245,0 +170741980766,246,0 +170741980814,245,0 +170741980863,245,0 +170741980913,245,0 +170741980961,245,0 +170741981009,246,0 +170741981057,246,0 +170741981106,245,0 +170741981154,246,0 +170741981202,245,0 +170741981250,245,0 +170741981298,246,0 +170741981348,246,0 +170741981396,246,0 +170741981444,245,0 +170741981493,245,0 +170741981543,245,0 +170741981592,246,0 +170741981640,246,0 +170741981688,246,0 +170741981738,245,0 +170741981786,246,0 +170741981835,246,0 +170741981883,245,0 +170741981931,245,0 +170741981979,245,0 +170741982027,246,0 +170741982077,246,0 +170741982127,246,0 +170741982175,245,0 +170741982224,245,0 +170741982272,246,0 +170741982322,245,0 +170741982371,246,0 +170741982419,246,0 +170741982467,245,0 +170741982517,246,0 +170741982565,245,0 +170741982613,246,0 +170741982662,245,0 +170741982710,246,0 +170741982760,245,0 +170741982809,246,0 +170741982857,246,0 +170741982905,245,0 +170741982953,246,0 +170741983001,246,0 +170741983049,246,0 +170741983097,245,0 +170741983145,245,0 +170741983193,246,0 +170741983242,246,0 +170741983290,246,0 +170741983338,245,0 +170741983386,246,0 +170741983434,245,0 +170741983482,246,0 +170741983532,246,0 +170741983581,245,0 +170741983629,245,0 +170741983677,246,0 +170741983725,246,0 +170741983773,246,0 +170741983821,245,0 +170741983871,245,0 +170741983920,246,0 +170741983968,246,0 +170741984017,246,0 +170741984067,245,0 +170741984115,246,0 +170741984163,246,0 +170741984211,245,0 +170741984259,245,0 +170741984307,246,0 +170741984356,246,0 +170741984404,246,0 +170741984454,246,0 +170741984503,246,0 +170741984553,246,0 +170741984601,245,0 +170741984649,246,0 +170741984697,245,0 +170741984746,245,0 +170741984796,245,0 +170741984845,246,0 +170741984893,245,0 +170741984941,246,0 +170741984991,246,0 +170741985039,245,0 +170741985087,245,0 +170741985135,245,0 +170741985183,246,0 +170741985231,245,0 +170741985280,246,0 +170741985330,245,0 +170741985378,246,0 +170741985425,246,0 +170741985474,245,0 +170741985523,246,0 +170741985571,245,0 +170741985621,246,0 +170741985668,245,0 +170741985716,245,0 +170741985766,246,0 +170741985814,245,0 +170741985863,246,0 +170741985913,245,0 +170741985961,246,0 +170741986009,246,0 +170741986058,245,0 +170741986106,246,0 +170741986154,246,0 +170741986204,246,0 +170741986253,246,0 +170741986301,246,0 +170741986349,245,0 +170741986397,246,0 +170741986445,246,0 +170741986495,245,0 +170741986543,246,0 +170741986592,246,0 +170741986640,246,0 +170741986690,246,0 +170741986738,246,0 +170741986787,245,0 +170741986837,246,0 +170741986884,246,0 +170741986934,245,0 +170741986982,246,0 +170741987030,245,0 +170741987078,245,0 +170741987128,246,0 +170741987177,246,0 +170741987225,245,0 +170741987273,245,0 +170741987321,246,0 +170741987369,245,0 +170741987418,245,0 +170741987466,245,0 +170741987514,245,0 +170741987562,245,0 +170741987610,246,0 +170741987660,245,0 +170741987708,245,0 +170741987756,246,0 +170741987804,245,0 +170741987852,246,0 +170741987901,245,0 +170741987949,246,0 +170741987997,246,0 +170741988045,245,0 +170741988095,245,0 +170741988143,245,0 +170741988191,246,0 +170741988238,246,0 +170741988286,246,0 +170741988334,246,0 +170741988382,246,0 +170741988432,246,0 +170741988481,245,0 +170741988531,246,0 +170741988579,245,0 +170741988628,246,0 +170741988676,246,0 +170741988724,245,0 +170741988772,246,0 +170741988820,246,0 +170741988868,246,0 +170741988918,246,0 +170741988966,245,0 +170741989014,246,0 +170741989062,245,0 +170741989110,246,0 +170741989158,246,0 +170741989206,246,0 +170741989254,246,0 +170741989301,245,0 +170741989349,246,0 +170741989399,245,0 +170741989447,246,0 +170741989496,246,0 +170741989544,246,0 +170741989592,245,0 +170741989640,246,0 +170741989688,246,0 +170741989736,245,0 +170741989784,246,0 +170741989832,246,0 +170741989880,246,0 +170741989928,246,0 +170741989978,245,0 +170741990027,246,0 +170741990075,245,0 +170741990123,245,0 +170741990173,245,0 +170741990221,245,0 +170741990269,246,0 +170741990317,246,0 +170741990365,246,0 +170741990414,245,0 +170741990464,246,0 +170741990511,246,0 +170741990559,245,0 +170741990607,246,0 +170741990657,246,0 +170741990707,245,0 +170741990755,245,0 +170741990802,245,0 +170741990850,245,0 +170741990898,246,0 +170741990946,245,0 +170741990995,246,0 +170741991043,245,0 +170741991091,246,0 +170741991139,246,0 +170741991187,246,0 +170741991235,246,0 +170741991283,246,0 +170741991331,246,0 +170741991380,246,0 +170741991428,245,0 +170741991478,245,0 +170741991525,246,0 +170741991575,246,0 +170741991623,246,0 +170741991671,246,0 +170741991719,246,0 +170741991768,246,0 +170741991816,246,0 +170741991864,246,0 +170741991914,245,0 +170741991962,245,0 +170741992010,246,0 +170741992057,246,0 +170741992107,245,0 +170741992155,246,0 +170741992205,245,0 +170741992252,246,0 +170741992300,246,0 +170741992348,246,0 +170741992396,245,0 +170741992444,246,0 +170741992492,246,0 +170741992540,246,0 +170741992590,246,0 +170741992638,246,0 +170741992687,245,0 +170741992735,246,0 +170741992783,246,0 +170741992831,246,0 +170741992880,246,0 +170741992930,245,0 +170741992978,246,0 +170741993026,245,0 +170741993073,246,0 +170741993121,246,0 +170741993170,246,0 +170741993218,246,0 +170741993266,246,0 +170741993313,245,0 +170741993361,245,0 +170741993409,246,0 +170741993459,246,0 +170741993507,246,0 +170741993555,246,0 +170741993602,246,0 +170741993652,246,0 +170741993700,245,0 +170741993748,245,0 +170741993797,246,0 +170741993845,246,0 +170741993895,246,0 +170741993944,245,0 +170741993994,245,0 +170741994043,246,0 +170741994093,246,0 +170741994142,246,0 +170741994190,246,0 +170741994238,246,0 +170741994286,246,0 +170741994334,246,0 +170741994382,245,0 +170741994430,246,0 +170741994478,246,0 +170741994528,245,0 +170741994577,245,0 +170741994625,246,0 +170741994673,246,0 +170741994722,246,0 +170741994772,246,0 +170741994820,245,0 +170741994869,246,0 +170741994919,246,0 +170741994968,245,0 +170741995016,246,0 +170741995064,246,0 +170741995114,246,0 +170741995162,245,0 +170741995211,246,0 +170741995261,246,0 +170741995309,246,0 +170741995357,245,0 +170741995406,246,0 +170741995454,246,0 +170741995502,246,0 +170741995550,246,0 +170741995599,245,0 +170741995647,246,0 +170741995695,246,0 +170741995745,246,0 +170741995793,246,0 +170741995841,246,0 +170741995890,246,0 +170741995938,245,0 +170741995988,245,0 +170741996037,245,0 +170741996085,246,0 +170741996133,245,0 +170741996183,246,0 +170741996232,245,0 +170741996282,245,0 +170741996330,246,0 +170741996378,246,0 +170741996426,246,0 +170741996474,246,0 +170741996523,246,0 +170741996571,246,0 +170741996619,246,0 +170741996668,245,0 +170741996716,246,0 +170741996766,246,0 +170741996814,245,0 +170741996863,246,0 +170741996913,246,0 +170741996961,246,0 +170741997009,246,0 +170741997058,246,0 +170741997108,246,0 +170741997156,245,0 +170741997204,246,0 +170741997252,246,0 +170741997300,246,0 +170741997348,245,0 +170741997397,246,0 +170741997445,245,0 +170741997493,245,0 +170741997543,245,0 +170741997591,245,0 +170741997639,246,0 +170741997687,246,0 +170741997735,246,0 +170741997783,246,0 +170741997831,246,0 +170741997880,246,0 +170741997928,246,0 +170741997976,245,0 +170741998024,246,0 +170741998073,245,0 +170741998121,246,0 +170741998169,246,0 +170741998217,246,0 +170741998266,246,0 +170741998314,246,0 +170741998362,245,0 +170741998410,246,0 +170741998458,246,0 +170741998506,246,0 +170741998554,245,0 +170741998602,245,0 +170741998650,246,0 +170741998698,246,0 +170741998746,246,0 +170741998793,246,0 +170741998841,245,0 +170741998889,246,0 +170741998937,246,0 +170741998987,246,0 +170741999036,246,0 +170741999084,246,0 +170741999132,245,0 +170741999182,246,0 +170741999230,245,0 +170741999278,246,0 +170741999327,246,0 +170741999375,246,0 +170741999423,245,0 +170741999471,245,0 +170741999519,246,0 +170741999567,245,0 +170741999615,246,0 +170741999662,245,0 +170741999710,245,0 +170741999758,246,0 +170741999806,245,0 +170741999854,245,0 +170741999902,246,0 +170741999952,246,0 +170742000001,246,0 +170742000049,246,0 +170742000099,246,0 +170742000148,246,0 +170742000196,245,0 +170742000244,245,0 +170742000293,246,0 +170742000343,246,0 +170742000391,246,0 +170742000439,246,0 +170742000488,245,0 +170742000536,246,0 +170742000586,246,0 +170742000635,246,0 +170742000683,246,0 +170742000731,245,0 +170742000779,245,0 +170742000829,245,0 +170742000878,246,0 +170742000926,245,0 +170742000974,246,0 +170742001022,245,0 +170742001070,246,0 +170742001118,246,0 +170742001168,246,0 +170742001217,246,0 +170742001265,245,0 +170742001313,246,0 +170742001363,245,0 +170742001412,246,0 +170742001460,245,0 +170742001508,246,0 +170742001556,246,0 +170742001605,246,0 +170742001653,246,0 +170742001703,245,0 +170742001751,245,0 +170742001799,246,0 +170742001847,246,0 +170742001894,246,0 +170742001942,246,0 +170742001990,246,0 +170742002040,246,0 +170742002088,246,0 +170742002135,246,0 +170742002183,246,0 +170742002231,246,0 +170742002279,245,0 +170742002327,246,0 +170742002376,245,0 +170742002424,246,0 +170742002472,245,0 +170742002520,245,0 +170742002568,245,0 +170742002616,245,0 +170742002664,246,0 +170742002712,245,0 +170742002760,245,0 +170742002808,246,0 +170742002856,245,0 +170742002904,246,0 +170742002953,246,0 +170742003001,246,0 +170742003049,246,0 +170742003097,246,0 +170742003145,245,0 +170742003192,246,0 +170742003242,246,0 +170742003290,245,0 +170742003339,246,0 +170742003389,246,0 +170742003437,246,0 +170742003484,246,0 +170742003532,246,0 +170742003580,246,0 +170742003628,245,0 +170742003676,246,0 +170742003724,245,0 +170742003772,246,0 +170742003820,245,0 +170742003868,246,0 +170742003915,246,0 +170742003963,246,0 +170742004011,246,0 +170742004059,246,0 +170742004109,246,0 +170742004158,246,0 +170742004208,246,0 +170742004256,245,0 +170742004303,246,0 +170742004351,245,0 +170742004399,246,0 +170742004447,246,0 +170742004497,245,0 +170742004545,246,0 +170742004593,245,0 +170742004642,246,0 +170742004690,246,0 +170742004740,246,0 +170742004788,246,0 +170742004836,246,0 +170742004884,246,0 +170742004931,245,0 +170742004979,246,0 +170742005027,246,0 +170742005075,246,0 +170742005123,246,0 +170742005171,246,0 +170742005219,246,0 +170742005267,245,0 +170742005314,246,0 +170742005362,246,0 +170742005410,245,0 +170742005458,246,0 +170742005506,246,0 +170742005556,245,0 +170742005603,246,0 +170742005651,246,0 +170742005699,245,0 +170742005747,246,0 +170742005795,246,0 +170742005843,246,0 +170742005891,245,0 +170742005939,245,0 +170742005987,246,0 +170742006034,246,0 +170742006082,245,0 +170742006130,246,0 +170742006178,246,0 +170742006226,246,0 +170742006274,245,0 +170742006322,246,0 +170742006370,246,0 +170742006418,246,0 +170742006466,246,0 +170742006515,246,0 +170742006563,246,0 +170742006611,246,0 +170742006659,245,0 +170742006708,246,0 +170742006756,246,0 +170742006804,245,0 +170742006852,246,0 +170742006900,246,0 +170742006948,246,0 +170742006996,246,0 +170742007043,246,0 +170742007091,246,0 +170742007139,246,0 +170742007187,246,0 +170742007235,245,0 +170742007283,246,0 +170742007331,246,0 +170742007379,246,0 +170742007427,245,0 +170742007476,246,0 +170742007524,246,0 +170742007572,246,0 +170742007622,246,0 +170742007670,245,0 +170742007718,246,0 +170742007767,245,0 +170742007815,246,0 +170742007865,246,0 +170742007912,246,0 +170742007962,246,0 +170742008011,245,0 +170742008061,246,0 +170742008109,246,0 +170742008158,246,0 +170742008206,245,0 +170742008254,245,0 +170742008304,246,0 +170742008352,246,0 +170742008400,246,0 +170742008448,246,0 +170742008496,246,0 +170742008544,245,0 +170742008592,246,0 +170742008640,246,0 +170742008688,246,0 +170742008737,245,0 +170742008785,246,0 +170742008833,246,0 +170742008882,246,0 +170742008930,246,0 +170742008980,246,0 +170742009028,245,0 +170742009076,246,0 +170742009125,246,0 +170742009173,246,0 +170742009223,246,0 +170742009271,246,0 +170742009319,246,0 +170742009366,246,0 +170742009414,246,0 +170742009462,246,0 +170742009510,246,0 +170742009558,246,0 +170742009608,246,0 +170742009656,245,0 +170742009703,245,0 +170742009751,246,0 +170742009801,246,0 +170742009850,246,0 +170742009898,245,0 +170742009948,245,0 +170742009996,246,0 +170742010044,246,0 +170742010093,246,0 +170742010143,246,0 +170742010191,246,0 +170742010239,246,0 +170742010287,246,0 +170742010336,245,0 +170742010386,245,0 +170742010434,245,0 +170742010483,246,0 +170742010533,246,0 +170742010581,246,0 +170742010629,246,0 +170742010677,246,0 +170742010725,246,0 +170742010773,246,0 +170742010820,246,0 +170742010868,246,0 +170742010916,245,0 +170742010966,246,0 +170742011014,245,0 +170742011063,245,0 +170742011111,246,0 +170742011159,246,0 +170742011209,246,0 +170742011257,246,0 +170742011305,246,0 +170742011353,246,0 +170742011401,246,0 +170742011449,246,0 +170742011497,246,0 +170742011546,246,0 +170742011594,245,0 +170742011642,246,0 +170742011690,246,0 +170742011738,246,0 +170742011786,246,0 +170742011835,246,0 +170742011883,246,0 +170742011931,246,0 +170742011979,246,0 +170742012027,246,0 +170742012075,246,0 +170742012123,246,0 +170742012171,246,0 +170742012219,246,0 +170742012267,246,0 +170742012316,245,0 +170742012364,246,0 +170742012414,246,0 +170742012463,246,0 +170742012511,246,0 +170742012559,246,0 +170742012609,246,0 +170742012657,246,0 +170742012705,246,0 +170742012753,246,0 +170742012800,246,0 +170742012850,246,0 +170742012898,246,0 +170742012946,246,0 +170742012994,246,0 +170742013042,246,0 +170742013091,246,0 +170742013139,246,0 +170742013189,246,0 +170742013238,246,0 +170742013286,246,0 +170742013336,246,0 +170742013385,246,0 +170742013435,246,0 +170742013483,246,0 +170742013532,246,0 +170742013580,246,0 +170742013630,246,0 +170742013679,246,0 +170742013729,246,0 +170742013777,246,0 +170742013825,246,0 +170742013874,246,0 +170742013922,246,0 +170742013972,246,0 +170742014021,246,0 +170742014071,246,0 +170742014120,246,0 +170742014168,246,0 +170742014218,246,0 +170742014266,246,0 +170742014314,246,0 +170742014361,246,0 +170742014409,246,0 +170742014459,246,0 +170742014507,246,0 +170742014556,246,0 +170742014604,245,0 +170742014654,246,0 +170742014702,246,0 +170742014750,246,0 +170742014798,246,0 +170742014846,246,0 +170742014894,246,0 +170742014943,246,0 +170742014991,246,0 +170742015039,246,0 +170742015088,246,0 +170742015136,246,0 +170742015184,246,0 +170742015232,246,0 +170742015282,246,0 +170742015330,246,0 +170742015378,246,0 +170742015426,246,0 +170742015474,246,0 +170742015522,246,0 +170742015570,246,0 +170742015618,246,0 +170742015667,246,0 +170742015715,246,0 +170742015763,246,0 +170742015811,246,0 +170742015861,246,0 +170742015909,246,0 +170742015958,246,0 +170742016006,246,0 +170742016056,246,0 +170742016105,246,0 +170742016153,246,0 +170742016201,246,0 +170742016249,246,0 +170742016299,246,0 +170742016348,246,0 +170742016396,246,0 +170742016445,246,0 +170742016493,246,0 +170742016541,246,0 +170742016589,246,0 +170742016637,246,0 +170742016685,246,0 +170742016733,246,0 +170742016783,246,0 +170742016831,246,0 +170742016879,246,0 +170742016928,246,0 +170742016976,246,0 +170742017024,246,0 +170742017074,246,0 +170742017123,246,0 +170742017171,246,0 +170742017219,246,0 +170742017267,246,0 +170742017316,245,0 +170742017364,245,0 +170742017412,246,0 +170742017460,246,0 +170742017510,246,0 +170742017559,246,0 +170742017607,246,0 +170742017655,246,0 +170742017703,246,0 +170742017751,246,0 +170742017801,245,0 +170742017849,246,0 +170742017897,246,0 +170742017945,246,0 +170742017993,246,0 +170742018041,246,0 +170742018090,246,0 +170742018138,246,0 +170742018188,246,0 +170742018236,246,0 +170742018285,246,0 +170742018333,246,0 +170742018383,246,0 +170742018430,246,0 +170742018478,246,0 +170742018526,246,0 +170742018574,246,0 +170742018622,246,0 +170742018670,245,0 +170742018720,246,0 +170742018769,246,0 +170742018819,246,0 +170742018867,246,0 +170742018916,246,0 +170742018966,246,0 +170742019014,246,0 +170742019063,246,0 +170742019111,246,0 +170742019159,246,0 +170742019209,246,0 +170742019258,246,0 +170742019306,246,0 +170742019354,245,0 +170742019402,246,0 +170742019452,246,0 +170742019501,246,0 +170742019549,246,0 +170742019597,246,0 +170742019645,246,0 +170742019693,246,0 +170742019741,246,0 +170742019790,246,0 +170742019838,246,0 +170742019886,246,0 +170742019934,246,0 +170742019982,246,0 +170742020031,246,0 +170742020079,246,0 +170742020127,246,0 +170742020175,246,0 +170742020223,246,0 +170742020271,245,0 +170742020319,246,0 +170742020368,246,0 +170742020416,246,0 +170742020464,246,0 +170742020514,246,0 +170742020562,246,0 +170742020611,246,0 +170742020659,246,0 +170742020707,246,0 +170742020755,246,0 +170742020805,246,0 +170742020853,246,0 +170742020900,246,0 +170742020948,246,0 +170742020996,246,0 +170742021044,246,0 +170742021092,246,0 +170742021140,246,0 +170742021188,246,0 +170742021236,246,0 +170742021284,246,0 +170742021332,246,0 +170742021380,246,0 +170742021429,246,0 +170742021477,246,0 +170742021527,246,0 +170742021575,246,0 +170742021623,246,0 +170742021670,246,0 +170742021720,246,0 +170742021768,246,0 +170742021816,246,0 +170742021864,246,0 +170742021912,246,0 +170742021960,246,0 +170742022008,246,0 +170742022055,246,0 +170742022103,246,0 +170742022151,246,0 +170742022199,246,0 +170742022247,246,0 +170742022295,246,0 +170742022343,246,0 +170742022391,245,0 +170742022440,246,0 +170742022488,246,0 +170742022536,246,0 +170742022584,246,0 +170742022632,246,0 +170742022680,246,0 +170742022730,246,0 +170742022778,246,0 +170742022826,246,0 +170742022874,246,0 +170742022922,246,0 +170742022969,246,0 +170742023019,246,0 +170742023067,246,0 +170742023115,246,0 +170742023165,246,0 +170742023212,246,0 +170742023262,246,0 +170742023312,246,0 +170742023360,246,0 +170742023408,246,0 +170742023455,246,0 +170742023505,246,0 +170742023553,246,0 +170742023601,246,0 +170742023649,246,0 +170742023698,246,0 +170742023746,246,0 +170742023796,246,0 +170742023844,245,0 +170742023893,246,0 +170742023941,246,0 +170742023989,246,0 +170742024037,246,0 +170742024085,246,0 +170742024133,246,0 +170742024181,246,0 +170742024229,246,0 +170742024277,246,0 +170742024325,246,0 +170742024373,246,0 +170742024421,246,0 +170742024469,246,0 +170742024517,246,0 +170742024565,246,0 +170742024614,246,0 +170742024662,246,0 +170742024711,246,0 +170742024761,246,0 +170742024809,246,0 +170742024857,246,0 +170742024904,246,0 +170742024952,246,0 +170742025000,246,0 +170742025048,246,0 +170742025096,246,0 +170742025144,246,0 +170742025192,246,0 +170742025240,246,0 +170742025288,246,0 +170742025335,246,0 +170742025383,246,0 +170742025431,245,0 +170742025479,246,0 +170742025527,246,0 +170742025575,246,0 +170742025623,246,0 +170742025671,246,0 +170742025718,246,0 +170742025768,246,0 +170742025816,246,0 +170742025864,246,0 +170742025913,246,0 +170742025961,246,0 +170742026009,246,0 +170742026057,246,0 +170742026105,246,0 +170742026153,246,0 +170742026201,246,0 +170742026248,246,0 +170742026296,246,0 +170742026344,246,0 +170742026392,246,0 +170742026440,245,0 +170742026488,246,0 +170742026536,246,0 +170742026584,246,0 +170742026632,246,0 +170742026679,246,0 +170742026727,246,0 +170742026775,246,0 +170742026823,246,0 +170742026871,246,0 +170742026920,246,0 +170742026970,246,0 +170742027018,246,0 +170742027065,246,0 +170742027113,246,0 +170742027161,246,0 +170742027209,246,0 +170742027257,246,0 +170742027305,246,0 +170742027353,246,0 +170742027401,246,0 +170742027449,246,0 +170742027496,246,0 +170742027544,246,0 +170742027592,246,0 +170742027640,246,0 +170742027688,246,0 +170742027736,246,0 +170742027784,246,0 +170742027833,246,0 +170742027881,246,0 +170742027929,245,0 +170742027977,246,0 +170742028027,246,0 +170742028075,246,0 +170742028123,246,0 +170742028172,246,0 +170742028220,246,0 +170742028268,246,0 +170742028316,246,0 +170742028364,246,0 +170742028412,246,0 +170742028460,246,0 +170742028508,246,0 +170742028557,246,0 +170742028605,246,0 +170742028653,246,0 +170742028703,246,0 +170742028751,246,0 +170742028799,245,0 +170742028847,246,0 +170742028895,246,0 +170742028943,246,0 +170742028991,246,0 +170742029038,246,0 +170742029086,246,0 +170742029134,246,0 +170742029182,246,0 +170742029230,246,0 +170742029280,246,0 +170742029329,246,0 +170742029377,246,0 +170742029427,246,0 +170742029475,246,0 +170742029524,246,0 +170742029572,246,0 +170742029620,246,0 +170742029670,246,0 +170742029719,245,0 +170742029769,246,0 +170742029817,246,0 +170742029866,246,0 +170742029914,246,0 +170742029964,246,0 +170742030012,246,0 +170742030060,246,0 +170742030109,246,0 +170742030157,246,0 +170742030205,246,0 +170742030254,246,0 +170742030302,246,0 +170742030350,246,0 +170742030398,246,0 +170742030446,246,0 +170742030494,245,0 +170742030542,246,0 +170742030591,246,0 +170742030639,246,0 +170742030687,246,0 +170742030735,246,0 +170742030783,246,0 +170742030831,246,0 +170742030878,246,0 +170742030926,246,0 +170742030976,245,0 +170742031025,246,0 +170742031075,246,0 +170742031124,245,0 +170742031174,246,0 +170742031223,246,0 +170742031271,246,0 +170742031319,246,0 +170742031367,246,0 +170742031416,246,0 +170742031464,246,0 +170742031514,246,0 +170742031562,246,0 +170742031610,246,0 +170742031658,246,0 +170742031706,246,0 +170742031754,246,0 +170742031801,246,0 +170742031849,246,0 +170742031899,246,0 +170742031947,246,0 +170742031995,246,0 +170742032043,246,0 +170742032091,246,0 +170742032139,246,0 +170742032187,246,0 +170742032234,246,0 +170742032284,246,0 +170742032334,246,0 +170742032382,246,0 +170742032431,246,0 +170742032479,246,0 +170742032529,246,0 +170742032576,246,0 +170742032626,246,0 +170742032674,246,0 +170742032722,246,0 +170742032770,246,0 +170742032818,246,0 +170742032867,246,0 +170742032915,245,0 +170742032963,246,0 +170742033013,246,0 +170742033061,246,0 +170742033110,246,0 +170742033158,246,0 +170742033208,246,0 +170742033257,246,0 +170742033305,246,0 +170742033354,246,0 +170742033401,246,0 +170742033449,246,0 +170742033497,246,0 +170742033547,246,0 +170742033595,246,0 +170742033643,246,0 +170742033691,246,0 +170742033740,246,0 +170742033788,246,0 +170742033836,246,0 +170742033884,246,0 +170742033934,246,0 +170742033982,246,0 +170742034030,246,0 +170742034079,246,0 +170742034127,246,0 +170742034177,246,0 +170742034225,246,0 +170742034272,246,0 +170742034320,246,0 +170742034370,246,0 +170742034418,246,0 +170742034466,246,0 +170742034513,246,0 +170742034561,246,0 +170742034609,246,0 +170742034657,246,0 +170742034705,246,0 +170742034753,246,0 +170742034801,246,0 +170742034850,246,0 +170742034898,246,0 +170742034946,246,0 +170742034994,246,0 +170742035042,245,0 +170742035090,246,0 +170742035138,246,0 +170742035186,246,0 +170742035233,246,0 +170742035283,246,0 +170742035331,246,0 +170742035379,246,0 +170742035427,246,0 +170742035476,246,0 +170742035524,246,0 +170742035572,246,0 +170742035620,246,0 +170742035667,246,0 +170742035717,246,0 +170742035765,246,0 +170742035813,246,0 +170742035862,246,0 +170742035910,245,0 +170742035958,246,0 +170742036006,246,0 +170742036054,246,0 +170742036101,246,0 +170742036149,246,0 +170742036197,246,0 +170742036245,246,0 +170742036293,246,0 +170742036343,246,0 +170742036391,246,0 +170742036440,246,0 +170742036490,246,0 +170742036538,246,0 +170742036587,245,0 +170742036635,246,0 +170742036685,246,0 +170742036733,246,0 +170742036780,246,0 +170742036828,245,0 +170742036876,246,0 +170742036924,245,0 +170742036972,246,0 +170742037020,246,0 +170742037068,246,0 +170742037115,246,0 +170742037163,246,0 +170742037211,246,0 +170742037259,246,0 +170742037307,246,0 +170742037355,246,0 +170742037405,246,0 +170742037453,246,0 +170742037501,246,0 +170742037549,246,0 +170742037597,246,0 +170742037646,246,0 +170742037696,246,0 +170742037744,246,0 +170742037793,246,0 +170742037843,246,0 +170742037892,246,0 +170742037942,246,0 +170742037990,246,0 +170742038038,246,0 +170742038087,246,0 +170742038135,246,0 +170742038183,246,0 +170742038233,245,0 +170742038281,246,0 +170742038330,246,0 +170742038378,246,0 +170742038426,246,0 +170742038476,246,0 +170742038524,246,0 +170742038573,246,0 +170742038623,246,0 +170742038671,246,0 +170742038719,246,0 +170742038767,246,0 +170742038815,246,0 +170742038863,246,0 +170742038911,246,0 +170742038959,246,0 +170742039008,246,0 +170742039058,246,0 +170742039107,245,0 +170742039155,246,0 +170742039203,246,0 +170742039251,246,0 +170742039299,246,0 +170742039347,246,0 +170742039395,246,0 +170742039443,246,0 +170742039492,246,0 +170742039540,246,0 +170742039588,246,0 +170742039638,246,0 +170742039686,246,0 +170742039734,246,0 +170742039782,246,0 +170742039830,246,0 +170742039878,246,0 +170742039926,246,0 +170742039975,246,0 +170742040023,246,0 +170742040071,246,0 +170742040120,246,0 +170742040168,246,0 +170742040218,246,0 +170742040268,246,0 +170742040316,246,0 +170742040365,246,0 +170742040413,245,0 +170742040463,246,0 +170742040511,246,0 +170742040560,246,0 +170742040610,246,0 +170742040658,246,0 +170742040706,246,0 +170742040754,246,0 +170742040802,246,0 +170742040851,246,0 +170742040899,246,0 +170742040947,246,0 +170742040995,245,0 +170742041043,246,0 +170742041091,246,0 +170742041139,246,0 +170742041188,246,0 +170742041238,246,0 +170742041286,246,0 +170742041334,246,0 +170742041382,246,0 +170742041432,246,0 +170742041481,246,0 +170742041531,246,0 +170742041579,246,0 +170742041627,246,0 +170742041675,246,0 +170742041722,246,0 +170742041770,246,0 +170742041818,246,0 +170742041868,246,0 +170742041918,246,0 +170742041967,246,0 +170742042017,246,0 +170742042066,246,0 +170742042116,246,0 +170742042165,246,0 +170742042213,246,0 +170742042263,246,0 +170742042311,246,0 +170742042359,246,0 +170742042408,246,0 +170742042456,246,0 +170742042504,245,0 +170742042552,246,0 +170742042600,246,0 +170742042648,246,0 +170742042697,246,0 +170742042745,246,0 +170742042793,246,0 +170742042843,246,0 +170742042891,246,0 +170742042940,246,0 +170742042988,246,0 +170742043036,246,0 +170742043086,246,0 +170742043134,246,0 +170742043182,246,0 +170742043231,246,0 +170742043279,246,0 +170742043328,246,0 +170742043376,246,0 +170742043424,246,0 +170742043472,246,0 +170742043520,246,0 +170742043568,246,0 +170742043618,246,0 +170742043667,246,0 +170742043715,246,0 +170742043763,246,0 +170742043811,246,0 +170742043859,246,0 +170742043907,246,0 +170742043955,246,0 +170742044004,246,0 +170742044052,246,0 +170742044100,246,0 +170742044148,246,0 +170742044196,246,0 +170742044244,246,0 +170742044293,246,0 +170742044341,246,0 +170742044389,246,0 +170742044437,246,0 +170742044487,246,0 +170742044535,246,0 +170742044583,246,0 +170742044631,246,0 +170742044678,246,0 +170742044726,246,0 +170742044776,246,0 +170742044824,246,0 +170742044871,246,0 +170742044919,246,0 +170742044967,246,0 +170742045015,246,0 +170742045063,246,0 +170742045111,246,0 +170742045159,246,0 +170742045207,246,0 +170742045256,246,0 +170742045304,246,0 +170742045352,246,0 +170742045400,246,0 +170742045449,246,0 +170742045497,246,0 +170742045547,246,0 +170742045595,246,0 +170742045644,245,0 +170742045692,246,0 +170742045740,246,0 +170742045788,246,0 +170742045836,246,0 +170742045886,246,0 +170742045934,246,0 +170742045981,246,0 +170742046029,246,0 +170742046079,246,0 +170742046127,246,0 +170742046174,246,0 +170742046222,246,0 +170742046272,246,0 +170742046321,246,0 +170742046369,245,0 +170742046417,246,0 +170742046465,246,0 +170742046513,246,0 +170742046563,246,0 +170742046611,246,0 +170742046659,246,0 +170742046707,246,0 +170742046755,246,0 +170742046803,246,0 +170742046851,246,0 +170742046900,246,0 +170742046950,246,0 +170742046998,246,0 +170742047046,246,0 +170742047094,246,0 +170742047142,246,0 +170742047189,246,0 +170742047237,246,0 +170742047285,246,0 +170742047333,246,0 +170742047381,246,0 +170742047429,246,0 +170742047477,246,0 +170742047525,246,0 +170742047573,246,0 +170742047621,246,0 +170742047668,246,0 +170742047716,246,0 +170742047766,246,0 +170742047814,246,0 +170742047862,246,0 +170742047909,246,0 +170742047957,246,0 +170742048005,246,0 +170742048053,246,0 +170742048101,246,0 +170742048151,245,0 +170742048199,246,0 +170742048247,246,0 +170742048294,246,0 +170742048342,246,0 +170742048390,246,0 +170742048438,246,0 +170742048486,245,0 +170742048536,246,0 +170742048583,246,0 +170742048631,246,0 +170742048679,246,0 +170742048727,246,0 +170742048775,246,0 +170742048823,246,0 +170742048871,246,0 +170742048919,246,0 +170742048967,246,0 +170742049014,246,0 +170742049062,246,0 +170742049110,245,0 +170742049158,246,0 +170742049206,245,0 +170742049254,246,0 +170742049302,246,0 +170742049350,246,0 +170742049398,246,0 +170742049445,246,0 +170742049493,245,0 +170742049541,246,0 +170742049589,246,0 +170742049637,246,0 +170742049685,246,0 +170742049733,246,0 +170742049782,246,0 +170742049832,246,0 +170742049880,246,0 +170742049928,246,0 +170742049976,246,0 +170742050024,246,0 +170742050072,246,0 +170742050120,246,0 +170742050169,246,0 +170742050217,246,0 +170742050265,246,0 +170742050313,246,0 +170742050361,246,0 +170742050409,246,0 +170742050456,246,0 +170742050504,246,0 +170742050552,246,0 +170742050600,246,0 +170742050648,246,0 +170742050696,246,0 +170742050744,246,0 +170742050792,246,0 +170742050840,246,0 +170742050887,246,0 +170742050935,246,0 +170742050983,246,0 +170742051031,246,0 +170742051081,246,0 +170742051129,246,0 +170742051178,246,0 +170742051226,246,0 +170742051274,246,0 +170742051324,246,0 +170742051372,246,0 +170742051420,246,0 +170742051468,246,0 +170742051517,246,0 +170742051565,246,0 +170742051613,246,0 +170742051661,246,0 +170742051709,246,0 +170742051758,246,0 +170742051808,246,0 +170742051856,246,0 +170742051904,246,0 +170742051952,246,0 +170742052000,246,0 +170742052048,246,0 +170742052096,246,0 +170742052143,246,0 +170742052191,246,0 +170742052239,246,0 +170742052287,246,0 +170742052335,245,0 +170742052383,246,0 +170742052431,246,0 +170742052480,246,0 +170742052528,246,0 +170742052576,246,0 +170742052624,246,0 +170742052672,246,0 +170742052720,246,0 +170742052768,246,0 +170742052815,245,0 +170742052863,246,0 +170742052913,246,0 +170742052961,246,0 +170742053009,246,0 +170742053056,246,0 +170742053104,246,0 +170742053152,246,0 +170742053202,245,0 +170742053251,246,0 +170742053301,246,0 +170742053349,246,0 +170742053397,246,0 +170742053446,246,0 +170742053494,246,0 +170742053544,246,0 +170742053592,245,0 +170742053639,246,0 +170742053689,246,0 +170742053737,246,0 +170742053785,246,0 +170742053834,246,0 +170742053882,246,0 +170742053930,246,0 +170742053978,246,0 +170742054026,246,0 +170742054074,246,0 +170742054121,246,0 +170742054169,246,0 +170742054217,246,0 +170742054265,246,0 +170742054313,246,0 +170742054361,246,0 +170742054409,246,0 +170742054457,246,0 +170742054504,246,0 +170742054552,246,0 +170742054600,246,0 +170742054648,246,0 +170742054696,246,0 +170742054744,246,0 +170742054794,246,0 +170742054843,246,0 +170742054893,246,0 +170742054940,246,0 +170742054988,246,0 +170742055036,246,0 +170742055084,246,0 +170742055132,246,0 +170742055180,246,0 +170742055228,246,0 +170742055276,246,0 +170742055324,246,0 +170742055372,246,0 +170742055420,246,0 +170742055469,246,0 +170742055517,246,0 +170742055565,246,0 +170742055615,246,0 +170742055663,246,0 +170742055712,246,0 +170742055760,246,0 +170742055810,246,0 +170742055859,246,0 +170742055909,246,0 +170742055959,246,0 +170742056008,246,0 +170742056056,246,0 +170742056104,246,0 +170742056152,245,0 +170742056202,246,0 +170742056250,246,0 +170742056299,246,0 +170742056347,246,0 +170742056395,246,0 +170742056445,246,0 +170742056493,246,0 +170742056542,246,0 +170742056590,246,0 +170742056640,246,0 +170742056688,246,0 +170742056736,245,0 +170742056785,246,0 +170742056833,246,0 +170742056881,246,0 +170742056929,246,0 +170742056977,246,0 +170742057025,246,0 +170742057074,246,0 +170742057122,246,0 +170742057172,246,0 +170742057220,246,0 +170742057269,246,0 +170742057319,246,0 +170742057367,246,0 +170742057416,246,0 +170742057467,246,0 +170742057515,246,0 +170742057564,246,0 +170742057612,246,0 +170742057660,246,0 +170742057708,246,0 +170742057758,245,0 +170742057806,246,0 +170742057854,246,0 +170742057902,246,0 +170742057950,246,0 +170742057998,246,0 +170742058046,246,0 +170742058094,246,0 +170742058142,246,0 +170742058191,246,0 +170742058241,246,0 +170742058289,246,0 +170742058336,246,0 +170742058386,246,0 +170742058434,246,0 +170742058484,246,0 +170742058533,246,0 +170742058581,246,0 +170742058631,246,0 +170742058679,246,0 +170742058728,246,0 +170742058778,246,0 +170742058826,246,0 +170742058875,245,0 +170742058925,245,0 +170742058974,246,0 +170742059024,246,0 +170742059073,246,0 +170742059121,246,0 +170742059169,246,0 +170742059219,246,0 +170742059268,246,0 +170742059316,246,0 +170742059364,246,0 +170742059414,246,0 +170742059462,246,0 +170742059511,246,0 +170742059561,246,0 +170742059609,246,0 +170742059657,246,0 +170742059705,246,0 +170742059754,246,0 +170742059802,246,0 +170742059850,246,0 +170742059898,246,0 +170742059946,246,0 +170742059994,246,0 +170742060044,246,0 +170742060091,246,0 +170742060141,246,0 +170742060191,246,0 +170742060240,245,0 +170742060288,246,0 +170742060338,246,0 +170742060386,246,0 +170742060435,246,0 +170742060483,246,0 +170742060531,246,0 +170742060581,246,0 +170742060630,246,0 +170742060680,246,0 +170742060729,246,0 +170742060777,246,0 +170742060825,246,0 +170742060873,246,0 +170742060921,246,0 +170742060969,246,0 +170742061017,246,0 +170742061065,246,0 +170742061115,246,0 +170742061163,246,0 +170742061211,246,0 +170742061260,246,0 +170742061308,246,0 +170742061356,246,0 +170742061404,246,0 +170742061452,246,0 +170742061500,246,0 +170742061549,246,0 +170742061597,246,0 +170742061645,246,0 +170742061693,246,0 +170742061741,246,0 +170742061788,246,0 +170742061836,246,0 +170742061884,246,0 +170742061934,246,0 +170742061982,246,0 +170742062029,246,0 +170742062077,246,0 +170742062125,246,0 +170742062173,246,0 +170742062221,246,0 +170742062269,246,0 +170742062317,246,0 +170742062365,246,0 +170742062413,246,0 +170742062460,246,0 +170742062508,245,0 +170742062556,246,0 +170742062604,246,0 +170742062652,246,0 +170742062700,246,0 +170742062748,246,0 +170742062796,246,0 +170742062844,246,0 +170742062891,246,0 +170742062939,246,0 +170742062987,246,0 +170742063035,246,0 +170742063083,246,0 +170742063131,246,0 +170742063179,246,0 +170742063227,246,0 +170742063275,246,0 +170742063323,246,0 +170742063370,246,0 +170742063418,246,0 +170742063466,246,0 +170742063514,246,0 +170742063564,246,0 +170742063612,246,0 +170742063659,245,0 +170742063707,246,0 +170742063755,246,0 +170742063803,246,0 +170742063851,246,0 +170742063899,246,0 +170742063947,246,0 +170742063996,246,0 +170742064044,246,0 +170742064092,246,0 +170742064140,246,0 +170742064188,246,0 +170742064237,246,0 +170742064285,246,0 +170742064333,246,0 +170742064382,246,0 +170742064430,246,0 +170742064478,246,0 +170742064526,246,0 +170742064574,246,0 +170742064624,246,0 +170742064671,246,0 +170742064719,246,0 +170742064767,245,0 +170742064815,246,0 +170742064865,246,0 +170742064913,246,0 +170742064961,245,0 +170742065010,246,0 +170742065058,246,0 +170742065106,245,0 +170742065154,246,0 +170742065202,246,0 +170742065250,245,0 +170742065298,246,0 +170742065346,246,0 +170742065396,245,0 +170742065445,246,0 +170742065493,246,0 +170742065541,246,0 +170742065589,246,0 +170742065637,246,0 +170742065687,246,0 +170742065735,245,0 +170742065783,246,0 +170742065831,246,0 +170742065880,246,0 +170742065930,246,0 +170742065978,246,0 +170742066026,246,0 +170742066074,246,0 +170742066121,246,0 +170742066169,246,0 +170742066217,246,0 +170742066265,246,0 +170742066313,246,0 +170742066361,246,0 +170742066410,246,0 +170742066458,246,0 +170742066506,246,0 +170742066556,246,0 +170742066604,246,0 +170742066651,246,0 +170742066701,246,0 +170742066751,246,0 +170742066798,246,0 +170742066846,246,0 +170742066896,246,0 +170742066944,246,0 +170742066992,246,0 +170742067041,246,0 +170742067089,246,0 +170742067137,246,0 +170742067187,246,0 +170742067236,246,0 +170742067284,246,0 +170742067332,246,0 +170742067380,246,0 +170742067428,246,0 +170742067478,246,0 +170742067527,246,0 +170742067575,245,0 +170742067623,246,0 +170742067671,246,0 +170742067719,246,0 +170742067767,246,0 +170742067816,246,0 +170742067866,245,0 +170742067914,246,0 +170742067962,246,0 +170742068011,246,0 +170742068059,246,0 +170742068109,246,0 +170742068158,245,0 +170742068206,246,0 +170742068254,246,0 +170742068302,246,0 +170742068352,246,0 +170742068400,246,0 +170742068449,246,0 +170742068497,246,0 +170742068547,246,0 +170742068595,246,0 +170742068643,246,0 +170742068691,245,0 +170742068740,245,0 +170742068788,246,0 +170742068836,246,0 +170742068884,246,0 +170742068932,246,0 +170742068980,246,0 +170742069030,246,0 +170742069079,246,0 +170742069127,246,0 +170742069175,246,0 +170742069223,246,0 +170742069272,246,0 +170742069320,246,0 +170742069368,246,0 +170742069416,246,0 +170742069466,246,0 +170742069514,246,0 +170742069563,245,0 +170742069611,246,0 +170742069659,246,0 +170742069707,246,0 +170742069755,246,0 +170742069803,246,0 +170742069851,246,0 +170742069901,246,0 +170742069949,246,0 +170742069997,246,0 +170742070045,246,0 +170742070094,246,0 +170742070144,246,0 +170742070192,246,0 +170742070240,246,0 +170742070289,246,0 +170742070339,246,0 +170742070387,246,0 +170742070435,246,0 +170742070482,246,0 +170742070532,245,0 +170742070580,245,0 +170742070628,246,0 +170742070676,246,0 +170742070724,246,0 +170742070772,246,0 +170742070821,246,0 +170742070869,246,0 +170742070919,246,0 +170742070967,246,0 +170742071014,246,0 +170742071062,246,0 +170742071110,246,0 +170742071158,246,0 +170742071206,246,0 +170742071254,246,0 +170742071302,246,0 +170742071350,246,0 +170742071399,246,0 +170742071447,246,0 +170742071495,246,0 +170742071545,246,0 +170742071593,245,0 +170742071641,246,0 +170742071689,246,0 +170742071737,246,0 +170742071785,246,0 +170742071833,246,0 +170742071881,246,0 +170742071930,246,0 +170742071980,246,0 +170742072028,246,0 +170742072076,245,0 +170742072124,246,0 +170742072172,246,0 +170742072220,246,0 +170742072269,246,0 +170742072317,245,0 +170742072365,246,0 +170742072413,246,0 +170742072461,246,0 +170742072509,246,0 +170742072557,246,0 +170742072605,246,0 +170742072655,245,0 +170742072704,246,0 +170742072752,246,0 +170742072800,246,0 +170742072848,246,0 +170742072898,246,0 +170742072946,246,0 +170742072994,246,0 +170742073042,246,0 +170742073090,246,0 +170742073137,246,0 +170742073185,246,0 +170742073233,246,0 +170742073281,246,0 +170742073329,246,0 +170742073377,246,0 +170742073425,246,0 +170742073473,246,0 +170742073521,246,0 +170742073569,246,0 +170742073618,246,0 +170742073668,246,0 +170742073716,246,0 +170742073765,245,0 +170742073813,246,0 +170742073863,246,0 +170742073911,246,0 +170742073960,246,0 +170742074010,246,0 +170742074058,246,0 +170742074107,246,0 +170742074157,246,0 +170742074205,246,0 +170742074254,246,0 +170742074304,246,0 +170742074353,246,0 +170742074401,246,0 +170742074449,246,0 +170742074497,246,0 +170742074545,246,0 +170742074595,246,0 +170742074644,246,0 +170742074692,246,0 +170742074740,246,0 +170742074788,246,0 +170742074836,246,0 +170742074885,246,0 +170742074933,246,0 +170742074981,246,0 +170742075029,246,0 +170742075077,246,0 +170742075125,246,0 +170742075173,246,0 +170742075221,246,0 +170742075269,246,0 +170742075317,246,0 +170742075367,245,0 +170742075415,246,0 +170742075463,246,0 +170742075510,246,0 +170742075560,246,0 +170742075608,246,0 +170742075656,246,0 +170742075706,246,0 +170742075753,246,0 +170742075801,246,0 +170742075851,246,0 +170742075899,246,0 +170742075947,246,0 +170742075995,246,0 +170742076043,246,0 +170742076091,246,0 +170742076139,246,0 +170742076187,246,0 +170742076235,246,0 +170742076284,246,0 +170742076334,246,0 +170742076382,246,0 +170742076430,246,0 +170742076477,246,0 +170742076527,246,0 +170742076575,246,0 +170742076623,246,0 +170742076671,246,0 +170742076719,246,0 +170742076767,246,0 +170742076815,246,0 +170742076864,246,0 +170742076912,246,0 +170742076962,246,0 +170742077010,246,0 +170742077058,246,0 +170742077106,246,0 +170742077155,246,0 +170742077203,246,0 +170742077251,245,0 +170742077299,246,0 +170742077347,246,0 +170742077395,246,0 +170742077445,246,0 +170742077494,246,0 +170742077542,246,0 +170742077590,246,0 +170742077638,246,0 +170742077688,246,0 +170742077735,246,0 +170742077783,246,0 +170742077833,246,0 +170742077882,245,0 +170742077930,246,0 +170742077980,246,0 +170742078028,246,0 +170742078076,246,0 +170742078124,246,0 +170742078172,246,0 +170742078221,246,0 +170742078269,246,0 +170742078317,246,0 +170742078365,246,0 +170742078413,246,0 +170742078461,246,0 +170742078511,246,0 +170742078560,246,0 +170742078610,246,0 +170742078658,246,0 +170742078706,246,0 +170742078754,246,0 +170742078801,246,0 +170742078849,246,0 +170742078897,246,0 +170742078947,245,0 +170742078996,246,0 +170742079046,246,0 +170742079095,246,0 +170742079145,246,0 +170742079194,246,0 +170742079244,246,0 +170742079292,246,0 +170742079340,246,0 +170742079388,246,0 +170742079436,246,0 +170742079483,246,0 +170742079531,246,0 +170742079579,246,0 +170742079627,246,0 +170742079677,246,0 +170742079724,246,0 +170742079774,246,0 +170742079822,246,0 +170742079870,246,0 +170742079917,246,0 +170742079965,246,0 +170742080015,246,0 +170742080063,246,0 +170742080111,245,0 +170742080159,246,0 +170742080207,246,0 +170742080256,246,0 +170742080306,246,0 +170742080355,246,0 +170742080403,245,0 +170742080451,246,0 +170742080501,246,0 +170742080549,246,0 +170742080598,245,0 +170742080646,246,0 +170742080694,246,0 +170742080744,246,0 +170742080793,246,0 +170742080841,246,0 +170742080889,246,0 +170742080939,246,0 +170742080987,246,0 +170742081036,246,0 +170742081085,246,0 +170742081133,246,0 +170742081181,246,0 +170742081231,246,0 +170742081280,246,0 +170742081328,246,0 +170742081376,246,0 +170742081426,246,0 +170742081475,246,0 +170742081523,245,0 +170742081571,246,0 +170742081619,246,0 +170742081669,246,0 +170742081717,246,0 +170742081765,246,0 +170742081814,246,0 +170742081862,246,0 +170742081912,246,0 +170742081960,246,0 +170742082009,246,0 +170742082057,246,0 +170742082105,246,0 +170742082155,246,0 +170742082204,246,0 +170742082252,246,0 +170742082300,246,0 +170742082348,246,0 +170742082396,246,0 +170742082446,246,0 +170742082495,246,0 +170742082545,246,0 +170742082592,245,0 +170742082640,246,0 +170742082688,246,0 +170742082736,246,0 +170742082786,245,0 +170742082835,246,0 +170742082883,246,0 +170742082931,246,0 +170742082979,246,0 +170742083027,246,0 +170742083075,246,0 +170742083124,246,0 +170742083172,246,0 +170742083220,246,0 +170742083268,246,0 +170742083316,246,0 +170742083364,246,0 +170742083412,246,0 +170742083462,246,0 +170742083511,246,0 +170742083561,246,0 +170742083609,246,0 +170742083658,246,0 +170742083706,246,0 +170742083754,246,0 +170742083804,246,0 +170742083853,246,0 +170742083903,246,0 +170742083952,246,0 +170742084002,246,0 +170742084050,246,0 +170742084098,246,0 +170742084145,246,0 +170742084193,246,0 +170742084243,246,0 +170742084293,246,0 +170742084342,245,0 +170742084392,246,0 +170742084440,246,0 +170742084488,246,0 +170742084535,246,0 +170742084583,246,0 +170742084631,245,0 +170742084679,246,0 +170742084729,245,0 +170742084778,246,0 +170742084826,246,0 +170742084874,246,0 +170742084922,246,0 +170742084970,245,0 +170742085018,245,0 +170742085066,246,0 +170742085116,246,0 +170742085163,246,0 +170742085211,246,0 +170742085259,246,0 +170742085309,246,0 +170742085357,246,0 +170742085407,246,0 +170742085456,246,0 +170742085504,246,0 +170742085552,246,0 +170742085600,245,0 +170742085648,246,0 +170742085696,246,0 +170742085745,246,0 +170742085793,246,0 +170742085841,246,0 +170742085889,246,0 +170742085939,246,0 +170742085987,246,0 +170742086035,246,0 +170742086083,246,0 +170742086131,246,0 +170742086179,246,0 +170742086227,246,0 +170742086276,246,0 +170742086324,246,0 +170742086372,246,0 +170742086421,246,0 +170742086471,245,0 +170742086519,246,0 +170742086567,246,0 +170742086615,246,0 +170742086663,246,0 +170742086712,246,0 +170742086760,245,0 +170742086808,246,0 +170742086856,246,0 +170742086904,246,0 +170742086952,246,0 +170742087000,245,0 +170742087048,245,0 +170742087096,245,0 +170742087145,246,0 +170742087193,245,0 +170742087241,246,0 +170742087289,246,0 +170742087337,246,0 +170742087385,246,0 +170742087433,246,0 +170742087481,246,0 +170742087531,246,0 +170742087578,246,0 +170742087626,246,0 +170742087676,246,0 +170742087724,246,0 +170742087772,246,0 +170742087820,246,0 +170742087868,246,0 +170742087917,246,0 +170742087967,246,0 +170742088016,246,0 +170742088064,246,0 +170742088114,246,0 +170742088163,246,0 +170742088213,246,0 +170742088261,246,0 +170742088310,246,0 +170742088358,246,0 +170742088406,246,0 +170742088454,246,0 +170742088502,246,0 +170742088552,246,0 +170742088601,246,0 +170742088649,246,0 +170742088697,246,0 +170742088747,246,0 +170742088796,246,0 +170742088846,246,0 +170742088895,246,0 +170742088943,246,0 +170742088993,246,0 +170742089041,246,0 +170742089089,246,0 +170742089137,245,0 +170742089185,245,0 +170742089234,245,0 +170742089282,246,0 +170742089330,245,0 +170742089378,245,0 +170742089428,246,0 +170742089476,246,0 +170742089524,246,0 +170742089573,246,0 +170742089621,246,0 +170742089669,246,0 +170742089719,246,0 +170742089768,246,0 +170742089818,246,0 +170742089866,246,0 +170742089915,246,0 +170742089965,246,0 +170742090014,246,0 +170742090064,246,0 +170742090112,246,0 +170742090159,246,0 +170742090207,246,0 +170742090255,246,0 +170742090303,246,0 +170742090351,246,0 +170742090399,246,0 +170742090447,246,0 +170742090496,246,0 +170742090544,246,0 +170742090594,246,0 +170742090641,246,0 +170742090689,246,0 +170742090737,246,0 +170742090785,246,0 +170742090835,246,0 +170742090882,246,0 +170742090930,246,0 +170742090980,245,0 +170742091028,246,0 +170742091076,246,0 +170742091124,245,0 +170742091173,246,0 +170742091221,246,0 +170742091269,246,0 +170742091317,246,0 +170742091365,246,0 +170742091413,246,0 +170742091461,246,0 +170742091510,246,0 +170742091558,246,0 +170742091606,245,0 +170742091654,246,0 +170742091702,245,0 +170742091750,246,0 +170742091797,246,0 +170742091845,246,0 +170742091893,246,0 +170742091941,246,0 +170742091989,246,0 +170742092037,246,0 +170742092085,246,0 +170742092133,246,0 +170742092181,246,0 +170742092228,246,0 +170742092276,246,0 +170742092326,246,0 +170742092374,246,0 +170742092422,246,0 +170742092471,246,0 +170742092519,246,0 +170742092569,246,0 +170742092618,246,0 +170742092666,246,0 +170742092714,246,0 +170742092764,246,0 +170742092812,246,0 +170742092861,246,0 +170742092911,245,0 +170742092960,246,0 +170742093008,246,0 +170742093058,246,0 +170742093107,246,0 +170742093155,246,0 +170742093203,246,0 +170742093252,246,0 +170742093300,246,0 +170742093348,246,0 +170742093396,246,0 +170742093444,245,0 +170742093492,245,0 +170742093542,246,0 +170742093591,246,0 +170742093639,246,0 +170742093687,246,0 +170742093735,246,0 +170742093783,246,0 +170742093833,246,0 +170742093881,246,0 +170742093929,246,0 +170742093977,246,0 +170742094025,246,0 +170742094073,246,0 +170742094122,246,0 +170742094170,246,0 +170742094218,246,0 +170742094266,246,0 +170742094314,246,0 +170742094362,246,0 +170742094410,246,0 +170742094459,246,0 +170742094509,246,0 +170742094557,246,0 +170742094605,246,0 +170742094654,246,0 +170742094702,246,0 +170742094752,246,0 +170742094800,246,0 +170742094848,246,0 +170742094896,246,0 +170742094944,246,0 +170742094992,246,0 +170742095040,246,0 +170742095088,246,0 +170742095137,246,0 +170742095185,246,0 +170742095233,246,0 +170742095283,246,0 +170742095331,246,0 +170742095380,246,0 +170742095430,246,0 +170742095478,245,0 +170742095526,246,0 +170742095574,245,0 +170742095623,246,0 +170742095671,246,0 +170742095721,246,0 +170742095769,246,0 +170742095817,246,0 +170742095865,246,0 +170742095914,245,0 +170742095962,246,0 +170742096012,246,0 +170742096060,246,0 +170742096108,246,0 +170742096156,246,0 +170742096204,246,0 +170742096252,246,0 +170742096300,245,0 +170742096349,246,0 +170742096397,245,0 +170742096447,246,0 +170742096496,246,0 +170742096544,245,0 +170742096594,246,0 +170742096642,246,0 +170742096690,246,0 +170742096738,246,0 +170742096786,246,0 +170742096833,246,0 +170742096881,246,0 +170742096929,246,0 +170742096977,246,0 +170742097025,246,0 +170742097073,246,0 +170742097121,246,0 +170742097169,246,0 +170742097218,246,0 +170742097266,246,0 +170742097314,246,0 +170742097362,246,0 +170742097410,246,0 +170742097457,246,0 +170742097507,246,0 +170742097555,246,0 +170742097604,246,0 +170742097654,246,0 +170742097703,246,0 +170742097753,246,0 +170742097801,246,0 +170742097849,246,0 +170742097898,246,0 +170742097948,246,0 +170742097996,246,0 +170742098044,246,0 +170742098093,246,0 +170742098141,246,0 +170742098189,246,0 +170742098237,246,0 +170742098287,246,0 +170742098335,245,0 +170742098382,246,0 +170742098432,246,0 +170742098480,246,0 +170742098529,245,0 +170742098577,246,0 +170742098625,246,0 +170742098673,246,0 +170742098721,246,0 +170742098771,246,0 +170742098819,246,0 +170742098867,246,0 +170742098916,246,0 +170742098964,246,0 +170742099014,246,0 +170742099062,246,0 +170742099110,246,0 +170742099158,246,0 +170742099206,246,0 +170742099254,246,0 +170742099302,245,0 +170742099350,246,0 +170742099398,246,0 +170742099446,246,0 +170742099495,246,0 +170742099543,246,0 +170742099593,245,0 +170742099641,246,0 +170742099689,246,0 +170742099738,246,0 +170742099786,246,0 +170742099836,246,0 +170742099883,246,0 +170742099933,246,0 +170742099981,246,0 +170742100030,246,0 +170742100080,246,0 +170742100129,246,0 +170742100177,246,0 +170742100227,246,0 +170742100275,246,0 +170742100324,246,0 +170742100372,246,0 +170742100420,246,0 +170742100468,245,0 +170742100516,246,0 +170742100566,246,0 +170742100614,246,0 +170742100662,246,0 +170742100711,246,0 +170742100761,245,0 +170742100809,246,0 +170742100857,246,0 +170742100906,246,0 +170742100954,246,0 +170742101002,245,0 +170742101050,246,0 +170742101100,246,0 +170742101148,246,0 +170742101196,246,0 +170742101245,246,0 +170742101293,246,0 +170742101341,245,0 +170742101389,246,0 +170742101437,246,0 +170742101485,246,0 +170742101533,246,0 +170742101581,245,0 +170742101630,246,0 +170742101678,246,0 +170742101728,246,0 +170742101776,246,0 +170742101823,246,0 +170742101871,246,0 +170742101919,246,0 +170742101967,246,0 +170742102017,246,0 +170742102065,246,0 +170742102113,246,0 +170742102162,246,0 +170742102212,246,0 +170742102260,245,0 +170742102308,246,0 +170742102356,246,0 +170742102404,245,0 +170742102452,246,0 +170742102500,245,0 +170742102548,246,0 +170742102597,246,0 +170742102645,246,0 +170742102693,246,0 +170742102743,246,0 +170742102791,246,0 +170742102839,246,0 +170742102888,245,0 +170742102936,246,0 +170742102984,246,0 +170742103032,246,0 +170742103080,246,0 +170742103130,246,0 +170742103178,246,0 +170742103225,246,0 +170742103275,246,0 +170742103323,246,0 +170742103371,246,0 +170742103419,245,0 +170742103469,246,0 +170742103518,245,0 +170742103566,246,0 +170742103614,246,0 +170742103662,246,0 +170742103710,245,0 +170742103758,246,0 +170742103806,246,0 +170742103854,246,0 +170742103903,246,0 +170742103951,246,0 +170742103999,246,0 +170742104047,246,0 +170742104097,246,0 +170742104145,246,0 +170742104194,246,0 +170742104242,246,0 +170742104290,246,0 +170742104340,246,0 +170742104389,246,0 +170742104439,246,0 +170742104487,246,0 +170742104535,246,0 +170742104583,246,0 +170742104632,246,0 +170742104682,246,0 +170742104730,246,0 +170742104778,246,0 +170742104826,246,0 +170742104874,246,0 +170742104923,245,0 +170742104971,246,0 +170742105019,246,0 +170742105069,246,0 +170742105117,246,0 +170742105165,246,0 +170742105213,246,0 +170742105261,246,0 +170742105309,246,0 +170742105357,246,0 +170742105406,246,0 +170742105454,246,0 +170742105502,246,0 +170742105552,245,0 +170742105600,246,0 +170742105649,246,0 +170742105697,246,0 +170742105745,246,0 +170742105793,246,0 +170742105841,246,0 +170742105889,245,0 +170742105938,246,0 +170742105986,246,0 +170742106034,245,0 +170742106082,246,0 +170742106132,246,0 +170742106180,246,0 +170742106228,246,0 +170742106276,246,0 +170742106324,246,0 +170742106372,246,0 +170742106420,246,0 +170742106468,246,0 +170742106515,246,0 +170742106563,246,0 +170742106611,245,0 +170742106661,246,0 +170742106709,246,0 +170742106757,246,0 +170742106806,246,0 +170742106854,245,0 +170742106902,246,0 +170742106950,246,0 +170742106998,246,0 +170742107046,246,0 +170742107094,246,0 +170742107142,246,0 +170742107190,245,0 +170742107237,246,0 +170742107285,246,0 +170742107333,246,0 +170742107381,246,0 +170742107429,245,0 +170742107477,245,0 +170742107525,246,0 +170742107574,246,0 +170742107622,246,0 +170742107670,246,0 +170742107718,246,0 +170742107767,246,0 +170742107815,246,0 +170742107863,246,0 +170742107911,246,0 +170742107959,246,0 +170742108007,246,0 +170742108055,246,0 +170742108103,246,0 +170742108151,246,0 +170742108198,246,0 +170742108246,246,0 +170742108294,246,0 +170742108342,246,0 +170742108390,246,0 +170742108438,246,0 +170742108486,246,0 +170742108534,246,0 +170742108582,246,0 +170742108631,246,0 +170742108679,246,0 +170742108727,246,0 +170742108775,246,0 +170742108823,245,0 +170742108870,245,0 +170742108920,246,0 +170742108968,246,0 +170742109016,246,0 +170742109063,245,0 +170742109111,246,0 +170742109159,246,0 +170742109209,245,0 +170742109257,245,0 +170742109305,245,0 +170742109353,245,0 +170742109402,246,0 +170742109450,245,0 +170742109498,245,0 +170742109546,246,0 +170742109594,246,0 +170742109642,245,0 +170742109690,245,0 +170742109740,246,0 +170742109788,245,0 +170742109836,246,0 +170742109884,246,0 +170742109932,246,0 +170742109980,246,0 +170742110027,246,0 +170742110077,246,0 +170742110125,246,0 +170742110173,246,0 +170742110221,245,0 +170742110270,245,0 +170742110318,245,0 +170742110366,246,0 +170742110416,246,0 +170742110464,245,0 +170742110512,245,0 +170742110561,246,0 +170742110609,246,0 +170742110659,246,0 +170742110708,246,0 +170742110758,246,0 +170742110807,246,0 +170742110855,246,0 +170742110903,245,0 +170742110951,246,0 +170742110999,246,0 +170742111047,245,0 +170742111095,246,0 +170742111143,245,0 +170742111191,246,0 +170742111239,246,0 +170742111287,246,0 +170742111335,246,0 +170742111383,246,0 +170742111430,246,0 +170742111478,246,0 +170742111526,246,0 +170742111574,246,0 +170742111622,246,0 +170742111670,246,0 +170742111718,246,0 +170742111767,246,0 +170742111817,245,0 +170742111865,246,0 +170742111913,246,0 +170742111961,245,0 +170742112009,246,0 +170742112058,245,0 +170742112106,246,0 +170742112154,245,0 +170742112202,246,0 +170742112250,245,0 +170742112300,246,0 +170742112348,246,0 +170742112397,246,0 +170742112447,246,0 +170742112495,246,0 +170742112542,246,0 +170742112592,245,0 +170742112640,246,0 +170742112688,246,0 +170742112736,246,0 +170742112785,245,0 +170742112833,246,0 +170742112881,246,0 +170742112931,246,0 +170742112980,246,0 +170742113028,245,0 +170742113078,245,0 +170742113126,246,0 +170742113175,245,0 +170742113223,245,0 +170742113273,246,0 +170742113321,246,0 +170742113369,246,0 +170742113417,245,0 +170742113466,246,0 +170742113516,246,0 +170742113564,246,0 +170742113612,246,0 +170742113661,246,0 +170742113709,245,0 +170742113757,246,0 +170742113805,246,0 +170742113853,246,0 +170742113901,246,0 +170742113949,245,0 +170742113997,246,0 +170742114046,245,0 +170742114096,246,0 +170742114145,246,0 +170742114193,245,0 +170742114241,246,0 +170742114289,246,0 +170742114337,246,0 +170742114385,246,0 +170742114433,245,0 +170742114483,245,0 +170742114531,246,0 +170742114580,246,0 +170742114628,246,0 +170742114676,246,0 +170742114724,245,0 +170742114772,246,0 +170742114820,246,0 +170742114868,246,0 +170742114916,246,0 +170742114966,246,0 +170742115015,246,0 +170742115063,246,0 +170742115111,246,0 +170742115160,246,0 +170742115210,246,0 +170742115258,246,0 +170742115306,246,0 +170742115354,246,0 +170742115403,246,0 +170742115453,246,0 +170742115501,246,0 +170742115549,245,0 +170742115598,246,0 +170742115646,246,0 +170742115694,246,0 +170742115744,246,0 +170742115793,246,0 +170742115841,245,0 +170742115891,245,0 +170742115940,246,0 +170742115990,246,0 +170742116039,246,0 +170742116087,246,0 +170742116137,245,0 +170742116186,245,0 +170742116234,245,0 +170742116282,245,0 +170742116330,246,0 +170742116380,246,0 +170742116428,246,0 +170742116475,246,0 +170742116523,246,0 +170742116571,245,0 +170742116619,245,0 +170742116667,246,0 +170742116715,245,0 +170742116763,245,0 +170742116811,246,0 +170742116859,246,0 +170742116907,246,0 +170742116954,245,0 +170742117002,245,0 +170742117050,246,0 +170742117098,246,0 +170742117146,246,0 +170742117194,246,0 +170742117242,245,0 +170742117290,245,0 +170742117338,246,0 +170742117386,246,0 +170742117434,246,0 +170742117481,246,0 +170742117529,246,0 +170742117577,246,0 +170742117625,246,0 +170742117673,245,0 +170742117721,246,0 +170742117769,246,0 +170742117817,246,0 +170742117865,246,0 +170742117912,246,0 +170742117960,246,0 +170742118008,246,0 +170742118056,246,0 +170742118104,246,0 +170742118152,246,0 +170742118200,245,0 +170742118248,246,0 +170742118296,246,0 +170742118343,246,0 +170742118391,245,0 +170742118439,246,0 +170742118487,246,0 +170742118535,246,0 +170742118583,246,0 +170742118631,246,0 +170742118679,245,0 +170742118728,246,0 +170742118776,246,0 +170742118824,246,0 +170742118872,246,0 +170742118920,246,0 +170742118967,246,0 +170742119015,246,0 +170742119065,246,0 +170742119113,245,0 +170742119161,245,0 +170742119209,246,0 +170742119256,245,0 +170742119304,246,0 +170742119352,246,0 +170742119400,245,0 +170742119448,246,0 +170742119496,246,0 +170742119544,246,0 +170742119591,245,0 +170742119639,246,0 +170742119687,246,0 +170742119735,246,0 +170742119783,246,0 +170742119831,246,0 +170742119879,245,0 +170742119927,245,0 +170742119975,245,0 +170742120024,246,0 +170742120072,246,0 +170742120120,246,0 +170742120168,245,0 +170742120216,246,0 +170742120264,246,0 +170742120311,246,0 +170742120359,246,0 +170742120407,245,0 +170742120455,246,0 +170742120503,245,0 +170742120552,245,0 +170742120600,246,0 +170742120648,246,0 +170742120698,246,0 +170742120746,246,0 +170742120793,246,0 +170742120841,246,0 +170742120889,246,0 +170742120937,246,0 +170742120985,245,0 +170742121033,246,0 +170742121082,245,0 +170742121130,246,0 +170742121178,246,0 +170742121226,246,0 +170742121274,246,0 +170742121323,246,0 +170742121371,246,0 +170742121419,246,0 +170742121467,246,0 +170742121515,246,0 +170742121563,245,0 +170742121610,246,0 +170742121658,246,0 +170742121706,246,0 +170742121754,246,0 +170742121802,246,0 +170742121850,246,0 +170742121899,246,0 +170742121949,245,0 +170742121997,245,0 +170742122046,246,0 +170742122094,246,0 +170742122144,245,0 +170742122193,245,0 +170742122241,245,0 +170742122289,246,0 +170742122337,245,0 +170742122385,245,0 +170742122433,245,0 +170742122481,246,0 +170742122530,245,0 +170742122578,246,0 +170742122626,246,0 +170742122674,246,0 +170742122722,246,0 +170742122770,245,0 +170742122818,245,0 +170742122865,246,0 +170742122915,246,0 +170742122963,245,0 +170742123011,246,0 +170742123059,245,0 +170742123107,245,0 +170742123155,246,0 +170742123205,246,0 +170742123254,246,0 +170742123302,246,0 +170742123351,245,0 +170742123399,245,0 +170742123449,246,0 +170742123497,246,0 +170742123545,246,0 +170742123594,246,0 +170742123644,246,0 +170742123692,246,0 +170742123740,245,0 +170742123789,246,0 +170742123839,246,0 +170742123887,245,0 +170742123935,246,0 +170742123984,246,0 +170742124034,245,0 +170742124082,245,0 +170742124130,246,0 +170742124178,245,0 +170742124226,245,0 +170742124275,245,0 +170742124323,246,0 +170742124372,245,0 +170742124420,246,0 +170742124470,246,0 +170742124518,246,0 +170742124567,246,0 +170742124617,246,0 +170742124665,246,0 +170742124713,246,0 +170742124761,246,0 +170742124809,246,0 +170742124858,246,0 +170742124906,246,0 +170742124954,246,0 +170742125004,246,0 +170742125053,246,0 +170742125101,245,0 +170742125149,246,0 +170742125197,245,0 +170742125245,246,0 +170742125295,245,0 +170742125343,246,0 +170742125391,246,0 +170742125439,246,0 +170742125487,246,0 +170742125536,246,0 +170742125584,246,0 +170742125634,246,0 +170742125682,245,0 +170742125730,246,0 +170742125778,246,0 +170742125826,246,0 +170742125874,245,0 +170742125922,245,0 +170742125969,245,0 +170742126017,246,0 +170742126067,246,0 +170742126117,245,0 +170742126164,246,0 +170742126212,246,0 +170742126262,246,0 +170742126311,246,0 +170742126361,245,0 +170742126409,245,0 +170742126458,245,0 +170742126508,246,0 +170742126556,245,0 +170742126605,246,0 +170742126655,246,0 +170742126703,246,0 +170742126752,246,0 +170742126802,245,0 +170742126851,246,0 +170742126899,246,0 +170742126949,246,0 +170742126998,246,0 +170742127048,245,0 +170742127097,245,0 +170742127147,245,0 +170742127196,245,0 +170742127246,245,0 +170742127294,246,0 +170742127342,246,0 +170742127390,245,0 +170742127439,246,0 +170742127489,245,0 +170742127538,246,0 +170742127586,245,0 +170742127634,246,0 +170742127684,245,0 +170742127733,245,0 +170742127783,246,0 +170742127832,246,0 +170742127882,246,0 +170742127931,245,0 +170742127979,245,0 +170742128027,245,0 +170742128075,245,0 +170742128125,245,0 +170742128173,246,0 +170742128221,245,0 +170742128269,246,0 +170742128318,246,0 +170742128366,245,0 +170742128416,245,0 +170742128465,245,0 +170742128513,245,0 +170742128561,246,0 +170742128609,246,0 +170742128657,245,0 +170742128705,246,0 +170742128753,246,0 +170742128801,246,0 +170742128849,245,0 +170742128897,246,0 +170742128945,246,0 +170742128993,246,0 +170742129041,246,0 +170742129089,245,0 +170742129137,245,0 +170742129187,246,0 +170742129235,246,0 +170742129283,246,0 +170742129332,246,0 +170742129380,246,0 +170742129430,245,0 +170742129479,245,0 +170742129527,246,0 +170742129577,245,0 +170742129625,246,0 +170742129673,245,0 +170742129720,246,0 +170742129770,246,0 +170742129818,246,0 +170742129866,245,0 +170742129916,245,0 +170742129965,245,0 +170742130015,245,0 +170742130064,246,0 +170742130112,245,0 +170742130160,245,0 +170742130208,246,0 +170742130256,246,0 +170742130304,245,0 +170742130352,246,0 +170742130400,245,0 +170742130448,245,0 +170742130496,245,0 +170742130544,246,0 +170742130592,246,0 +170742130640,245,0 +170742130688,246,0 +170742130737,245,0 +170742130785,245,0 +170742130833,246,0 +170742130881,245,0 +170742130930,246,0 +170742130978,246,0 +170742131026,246,0 +170742131076,246,0 +170742131125,245,0 +170742131173,246,0 +170742131221,246,0 +170742131271,246,0 +170742131320,245,0 +170742131370,245,0 +170742131419,245,0 +170742131467,246,0 +170742131515,246,0 +170742131565,245,0 +170742131613,246,0 +170742131661,246,0 +170742131710,245,0 +170742131758,246,0 +170742131806,246,0 +170742131854,246,0 +170742131902,246,0 +170742131952,246,0 +170742131999,246,0 +170742132047,246,0 +170742132095,245,0 +170742132143,245,0 +170742132193,245,0 +170742132241,245,0 +170742132289,246,0 +170742132336,246,0 +170742132384,245,0 +170742132432,245,0 +170742132480,246,0 +170742132528,246,0 +170742132576,245,0 +170742132624,245,0 +170742132671,245,0 +170742132719,246,0 +170742132767,245,0 +170742132815,245,0 +170742132863,245,0 +170742132912,246,0 +170742132962,246,0 +170742133011,245,0 +170742133061,246,0 +170742133109,245,0 +170742133157,246,0 +170742133205,245,0 +170742133253,245,0 +170742133301,245,0 +170742133350,246,0 +170742133398,245,0 +170742133446,245,0 +170742133496,245,0 +170742133544,245,0 +170742133593,246,0 +170742133641,246,0 +170742133689,245,0 +170742133737,245,0 +170742133785,245,0 +170742133835,246,0 +170742133883,246,0 +170742133931,245,0 +170742133979,245,0 +170742134027,246,0 +170742134074,245,0 +170742134124,246,0 +170742134172,246,0 +170742134221,245,0 +170742134269,246,0 +170742134317,245,0 +170742134365,246,0 +170742134413,246,0 +170742134461,245,0 +170742134511,246,0 +170742134560,245,0 +170742134608,246,0 +170742134658,245,0 +170742134707,245,0 +170742134755,245,0 +170742134803,245,0 +170742134851,246,0 +170742134899,245,0 +170742134947,246,0 +170742134995,245,0 +170742135043,246,0 +170742135091,246,0 +170742135139,246,0 +170742135187,245,0 +170742135235,246,0 +170742135284,245,0 +170742135334,245,0 +170742135382,245,0 +170742135432,245,0 +170742135480,245,0 +170742135528,246,0 +170742135575,246,0 +170742135623,246,0 +170742135671,246,0 +170742135719,245,0 +170742135769,245,0 +170742135817,246,0 +170742135865,246,0 +170742135914,245,0 +170742135962,246,0 +170742136010,246,0 +170742136058,245,0 +170742136106,246,0 +170742136154,245,0 +170742136204,245,0 +170742136252,245,0 +170742136301,245,0 +170742136349,246,0 +170742136399,246,0 +170742136447,246,0 +170742136496,246,0 +170742136544,246,0 +170742136594,245,0 +170742136642,245,0 +170742136690,246,0 +170742136738,246,0 +170742136786,245,0 +170742136834,245,0 +170742136883,245,0 +170742136931,245,0 +170742136979,246,0 +170742137027,246,0 +170742137075,246,0 +170742137123,246,0 +170742137171,246,0 +170742137219,245,0 +170742137267,246,0 +170742137317,245,0 +170742137365,245,0 +170742137414,246,0 +170742137462,246,0 +170742137510,245,0 +170742137558,245,0 +170742137606,245,0 +170742137655,246,0 +170742137703,246,0 +170742137751,246,0 +170742137799,245,0 +170742137849,246,0 +170742137897,246,0 +170742137946,245,0 +170742137994,246,0 +170742138044,245,0 +170742138092,245,0 +170742138140,245,0 +170742138188,246,0 +170742138236,245,0 +170742138284,245,0 +170742138331,246,0 +170742138381,246,0 +170742138430,245,0 +170742138480,245,0 +170742138528,245,0 +170742138576,245,0 +170742138624,246,0 +170742138673,246,0 +170742138721,246,0 +170742138771,245,0 +170742138820,245,0 +170742138868,245,0 +170742138916,245,0 +170742138964,245,0 +170742139012,246,0 +170742139062,246,0 +170742139110,246,0 +170742139158,246,0 +170742139207,245,0 +170742139255,246,0 +170742139305,245,0 +170742139354,246,0 +170742139402,246,0 +170742139452,246,0 +170742139501,245,0 +170742139549,245,0 +170742139597,246,0 +170742139645,246,0 +170742139695,245,0 +170742139743,245,0 +170742139791,246,0 +170742139838,246,0 +170742139886,245,0 +170742139936,246,0 +170742139986,245,0 +170742140034,246,0 +170742140082,245,0 +170742140131,245,0 +170742140179,246,0 +170742140227,246,0 +170742140276,245,0 +170742140324,245,0 +170742140374,246,0 +170742140423,246,0 +170742140471,246,0 +170742140519,245,0 +170742140567,246,0 +170742140615,246,0 +170742140665,245,0 +170742140714,245,0 +170742140764,245,0 +170742140813,246,0 +170742140861,245,0 +170742140909,245,0 +170742140957,245,0 +170742141005,245,0 +170742141053,246,0 +170742141101,246,0 +170742141151,246,0 +170742141199,246,0 +170742141247,245,0 +170742141296,246,0 +170742141344,246,0 +170742141392,245,0 +170742141441,246,0 +170742141489,245,0 +170742141539,245,0 +170742141589,245,0 +170742141636,245,0 +170742141684,245,0 +170742141734,246,0 +170742141783,246,0 +170742141831,246,0 +170742141879,245,0 +170742141929,246,0 +170742141977,246,0 +170742142025,246,0 +170742142074,246,0 +170742142122,245,0 +170742142170,245,0 +170742142218,245,0 +170742142266,246,0 +170742142314,246,0 +170742142362,245,0 +170742142411,245,0 +170742142459,245,0 +170742142507,245,0 +170742142557,245,0 +170742142605,246,0 +170742142654,246,0 +170742142704,245,0 +170742142751,246,0 +170742142801,245,0 +170742142851,245,0 +170742142898,246,0 +170742142948,245,0 +170742142996,246,0 +170742143045,245,0 +170742143093,245,0 +170742143143,246,0 +170742143192,245,0 +170742143242,246,0 +170742143290,245,0 +170742143338,245,0 +170742143386,245,0 +170742143434,245,0 +170742143482,245,0 +170742143529,245,0 +170742143577,245,0 +170742143625,245,0 +170742143673,246,0 +170742143723,245,0 +170742143770,245,0 +170742143820,246,0 +170742143868,245,0 +170742143916,245,0 +170742143964,246,0 +170742144012,245,0 +170742144059,245,0 +170742144107,245,0 +170742144155,245,0 +170742144203,246,0 +170742144253,246,0 +170742144300,246,0 +170742144348,246,0 +170742144396,245,0 +170742144444,246,0 +170742144492,245,0 +170742144540,246,0 +170742144590,245,0 +170742144638,245,0 +170742144686,245,0 +170742144734,245,0 +170742144783,245,0 +170742144833,245,0 +170742144881,246,0 +170742144929,246,0 +170742144978,246,0 +170742145028,245,0 +170742145076,245,0 +170742145124,245,0 +170742145173,245,0 +170742145221,245,0 +170742145271,245,0 +170742145320,246,0 +170742145368,246,0 +170742145418,245,0 +170742145466,246,0 +170742145514,245,0 +170742145562,245,0 +170742145611,245,0 +170742145661,246,0 +170742145710,245,0 +170742145760,246,0 +170742145808,246,0 +170742145857,246,0 +170742145907,246,0 +170742145956,246,0 +170742146004,246,0 +170742146052,246,0 +170742146100,245,0 +170742146148,246,0 +170742146196,246,0 +170742146244,246,0 +170742146292,246,0 +170742146341,245,0 +170742146389,246,0 +170742146437,246,0 +170742146485,246,0 +170742146533,246,0 +170742146583,245,0 +170742146632,246,0 +170742146682,246,0 +170742146731,246,0 +170742146779,245,0 +170742146827,246,0 +170742146875,246,0 +170742146923,245,0 +170742146971,246,0 +170742147019,245,0 +170742147067,245,0 +170742147115,245,0 +170742147163,245,0 +170742147211,245,0 +170742147259,246,0 +170742147309,245,0 +170742147357,245,0 +170742147406,245,0 +170742147454,246,0 +170742147502,245,0 +170742147550,246,0 +170742147598,245,0 +170742147646,245,0 +170742147694,246,0 +170742147742,245,0 +170742147792,246,0 +170742147841,246,0 +170742147889,246,0 +170742147937,246,0 +170742147985,246,0 +170742148033,246,0 +170742148081,246,0 +170742148129,245,0 +170742148177,245,0 +170742148226,246,0 +170742148276,245,0 +170742148324,246,0 +170742148372,246,0 +170742148420,246,0 +170742148469,245,0 +170742148519,246,0 +170742148567,245,0 +170742148615,245,0 +170742148662,246,0 +170742148710,246,0 +170742148758,245,0 +170742148806,246,0 +170742148856,245,0 +170742148904,246,0 +170742148953,245,0 +170742149001,246,0 +170742149049,245,0 +170742149099,246,0 +170742149147,246,0 +170742149195,246,0 +170742149243,246,0 +170742149290,245,0 +170742149340,245,0 +170742149388,246,0 +170742149436,245,0 +170742149484,245,0 +170742149532,246,0 +170742149580,246,0 +170742149629,245,0 +170742149677,245,0 +170742149725,246,0 +170742149773,245,0 +170742149821,246,0 +170742149869,246,0 +170742149919,246,0 +170742149968,246,0 +170742150016,245,0 +170742150066,246,0 +170742150114,245,0 +170742150162,245,0 +170742150210,246,0 +170742150258,245,0 +170742150306,245,0 +170742150354,246,0 +170742150402,245,0 +170742150451,245,0 +170742150499,246,0 +170742150547,246,0 +170742150597,245,0 +170742150645,246,0 +170742150694,245,0 +170742150742,245,0 +170742150790,245,0 +170742150838,246,0 +170742150888,246,0 +170742150936,245,0 +170742150984,246,0 +170742151033,246,0 +170742151081,245,0 +170742151129,246,0 +170742151177,245,0 +170742151225,246,0 +170742151273,245,0 +170742151320,245,0 +170742151368,246,0 +170742151416,246,0 +170742151464,245,0 +170742151512,245,0 +170742151560,246,0 +170742151608,245,0 +170742151658,246,0 +170742151707,245,0 +170742151757,245,0 +170742151805,245,0 +170742151854,246,0 +170742151902,245,0 +170742151952,245,0 +170742152000,245,0 +170742152048,246,0 +170742152096,245,0 +170742152144,245,0 +170742152192,245,0 +170742152240,246,0 +170742152287,246,0 +170742152337,245,0 +170742152385,245,0 +170742152433,245,0 +170742152481,246,0 +170742152530,246,0 +170742152578,246,0 +170742152626,246,0 +170742152676,246,0 +170742152724,245,0 +170742152772,246,0 +170742152820,246,0 +170742152869,245,0 +170742152919,245,0 +170742152967,246,0 +170742153015,246,0 +170742153063,245,0 +170742153112,246,0 +170742153160,246,0 +170742153209,246,0 +170742153259,245,0 +170742153309,245,0 +170742153357,245,0 +170742153405,245,0 +170742153453,245,0 +170742153501,246,0 +170742153548,245,0 +170742153596,245,0 +170742153644,246,0 +170742153692,246,0 +170742153740,246,0 +170742153790,245,0 +170742153838,245,0 +170742153886,246,0 +170742153935,246,0 +170742153983,245,0 +170742154031,245,0 +170742154079,245,0 +170742154127,245,0 +170742154175,245,0 +170742154223,245,0 +170742154271,246,0 +170742154319,246,0 +170742154369,245,0 +170742154419,246,0 +170742154466,245,0 +170742154514,246,0 +170742154564,246,0 +170742154613,246,0 +170742154663,246,0 +170742154713,246,0 +170742154761,245,0 +170742154809,246,0 +170742154857,245,0 +170742154905,245,0 +170742154953,245,0 +170742155000,246,0 +170742155048,246,0 +170742155096,245,0 +170742155144,245,0 +170742155194,245,0 +170742155243,246,0 +170742155293,246,0 +170742155341,246,0 +170742155389,246,0 +170742155437,246,0 +170742155485,245,0 +170742155533,245,0 +170742155581,245,0 +170742155629,246,0 +170742155677,245,0 +170742155725,245,0 +170742155774,245,0 +170742155822,245,0 +170742155872,245,0 +170742155921,245,0 +170742155969,245,0 +170742156017,246,0 +170742156067,246,0 +170742156116,245,0 +170742156164,245,0 +170742156214,246,0 +170742156262,245,0 +170742156310,245,0 +170742156358,245,0 +170742156406,245,0 +170742156454,245,0 +170742156502,245,0 +170742156549,245,0 +170742156597,245,0 +170742156647,246,0 +170742156695,246,0 +170742156744,245,0 +170742156792,246,0 +170742156842,245,0 +170742156890,245,0 +170742156939,246,0 +170742156989,246,0 +170742157037,246,0 +170742157085,246,0 +170742157133,245,0 +170742157181,245,0 +170742157231,245,0 +170742157280,246,0 +170742157330,245,0 +170742157378,245,0 +170742157426,246,0 +170742157473,245,0 +170742157523,246,0 +170742157572,246,0 +170742157620,246,0 +170742157670,246,0 +170742157718,246,0 +170742157766,245,0 +170742157814,245,0 +170742157863,245,0 +170742157911,246,0 +170742157959,245,0 +170742158007,246,0 +170742158055,245,0 +170742158103,245,0 +170742158152,246,0 +170742158200,245,0 +170742158250,245,0 +170742158297,246,0 +170742158347,245,0 +170742158395,245,0 +170742158443,245,0 +170742158492,246,0 +170742158540,245,0 +170742158590,245,0 +170742158638,245,0 +170742158688,245,0 +170742158736,245,0 +170742158785,245,0 +170742158833,245,0 +170742158881,245,0 +170742158929,245,0 +170742158979,245,0 +170742159027,245,0 +170742159075,245,0 +170742159123,245,0 +170742159171,246,0 +170742159219,245,0 +170742159268,245,0 +170742159316,245,0 +170742159366,245,0 +170742159414,246,0 +170742159463,246,0 +170742159513,245,0 +170742159561,246,0 +170742159609,246,0 +170742159658,246,0 +170742159706,246,0 +170742159754,245,0 +170742159804,246,0 +170742159852,245,0 +170742159900,246,0 +170742159949,246,0 +170742159997,245,0 +170742160045,246,0 +170742160094,246,0 +170742160144,245,0 +170742160192,245,0 +170742160240,245,0 +170742160287,246,0 +170742160335,245,0 +170742160383,245,0 +170742160433,246,0 +170742160481,246,0 +170742160529,246,0 +170742160578,246,0 +170742160626,245,0 +170742160674,246,0 +170742160722,245,0 +170742160772,245,0 +170742160820,245,0 +170742160869,245,0 +170742160917,246,0 +170742160965,245,0 +170742161013,245,0 +170742161061,246,0 +170742161109,246,0 +170742161157,246,0 +170742161207,245,0 +170742161255,245,0 +170742161303,245,0 +170742161351,245,0 +170742161399,246,0 +170742161446,245,0 +170742161496,245,0 +170742161545,245,0 +170742161595,245,0 +170742161644,246,0 +170742161692,245,0 +170742161742,245,0 +170742161790,246,0 +170742161838,246,0 +170742161887,245,0 +170742161935,245,0 +170742161985,245,0 +170742162033,245,0 +170742162082,245,0 +170742162132,246,0 +170742162182,245,0 +170742162229,246,0 +170742162279,245,0 +170742162328,246,0 +170742162376,245,0 +170742162424,245,0 +170742162472,245,0 +170742162520,245,0 +170742162568,245,0 +170742162618,246,0 +170742162666,246,0 +170742162714,246,0 +170742162763,245,0 +170742162813,245,0 +170742162862,246,0 +170742162912,246,0 +170742162961,245,0 +170742163011,245,0 +170742163059,245,0 +170742163107,245,0 +170742163155,246,0 +170742163204,246,0 +170742163254,245,0 +170742163302,246,0 +170742163350,245,0 +170742163398,245,0 +170742163446,245,0 +170742163494,246,0 +170742163542,246,0 +170742163590,246,0 +170742163639,245,0 +170742163689,245,0 +170742163737,246,0 +170742163786,245,0 +170742163836,245,0 +170742163883,245,0 +170742163931,245,0 +170742163981,246,0 +170742164029,246,0 +170742164077,246,0 +170742164124,245,0 +170742164172,246,0 +170742164220,246,0 +170742164268,246,0 +170742164316,245,0 +170742164364,246,0 +170742164412,245,0 +170742164460,245,0 +170742164508,245,0 +170742164556,245,0 +170742164604,245,0 +170742164653,245,0 +170742164701,245,0 +170742164749,245,0 +170742164797,246,0 +170742164845,246,0 +170742164892,245,0 +170742164940,245,0 +170742164988,245,0 +170742165036,245,0 +170742165084,245,0 +170742165134,245,0 +170742165182,245,0 +170742165231,245,0 +170742165281,246,0 +170742165329,245,0 +170742165377,245,0 +170742165425,245,0 +170742165473,245,0 +170742165521,245,0 +170742165569,245,0 +170742165617,246,0 +170742165665,245,0 +170742165714,245,0 +170742165762,245,0 +170742165812,245,0 +170742165861,245,0 +170742165909,245,0 +170742165957,245,0 +170742166005,246,0 +170742166053,245,0 +170742166100,245,0 +170742166148,246,0 +170742166196,245,0 +170742166244,246,0 +170742166292,246,0 +170742166340,246,0 +170742166390,245,0 +170742166438,245,0 +170742166486,245,0 +170742166535,245,0 +170742166585,246,0 +170742166634,245,0 +170742166684,246,0 +170742166732,246,0 +170742166780,245,0 +170742166828,245,0 +170742166877,246,0 +170742166927,246,0 +170742166975,246,0 +170742167023,246,0 +170742167071,245,0 +170742167120,245,0 +170742167168,245,0 +170742167216,245,0 +170742167264,245,0 +170742167312,245,0 +170742167360,245,0 +170742167408,245,0 +170742167456,245,0 +170742167503,246,0 +170742167551,246,0 +170742167601,246,0 +170742167649,246,0 +170742167697,245,0 +170742167745,245,0 +170742167792,245,0 +170742167842,245,0 +170742167890,245,0 +170742167938,245,0 +170742167986,245,0 +170742168034,245,0 +170742168083,245,0 +170742168131,245,0 +170742168179,245,0 +170742168228,245,0 +170742168278,245,0 +170742168326,245,0 +170742168375,245,0 +170742168423,245,0 +170742168471,245,0 +170742168519,245,0 +170742168567,245,0 +170742168615,245,0 +170742168665,246,0 +170742168714,245,0 +170742168762,246,0 +170742168812,245,0 +170742168860,246,0 +170742168909,246,0 +170742168959,245,0 +170742169007,246,0 +170742169055,246,0 +170742169102,246,0 +170742169150,246,0 +170742169200,245,0 +170742169248,245,0 +170742169296,245,0 +170742169344,245,0 +170742169392,245,0 +170742169440,245,0 +170742169489,245,0 +170742169537,245,0 +170742169585,245,0 +170742169633,245,0 +170742169683,245,0 +170742169731,245,0 +170742169778,246,0 +170742169826,245,0 +170742169874,245,0 +170742169922,245,0 +170742169970,246,0 +170742170018,245,0 +170742170066,245,0 +170742170115,245,0 +170742170163,245,0 +170742170211,245,0 +170742170261,245,0 +170742170310,245,0 +170742170358,245,0 +170742170408,245,0 +170742170457,245,0 +170742170507,245,0 +170742170555,245,0 +170742170603,245,0 +170742170651,245,0 +170742170700,246,0 +170742170748,246,0 +170742170796,245,0 +170742170844,246,0 +170742170892,245,0 +170742170940,245,0 +170742170988,245,0 +170742171036,245,0 +170742171084,245,0 +170742171132,245,0 +170742171180,245,0 +170742171228,245,0 +170742171275,245,0 +170742171323,245,0 +170742171371,245,0 +170742171419,245,0 +170742171467,245,0 +170742171517,245,0 +170742171565,245,0 +170742171614,245,0 +170742171664,245,0 +170742171713,245,0 +170742171761,245,0 +170742171811,245,0 +170742171859,245,0 +170742171907,245,0 +170742171955,245,0 +170742172003,245,0 +170742172051,245,0 +170742172099,246,0 +170742172148,245,0 +170742172196,245,0 +170742172244,245,0 +170742172294,245,0 +170742172343,245,0 +170742172391,245,0 +170742172439,245,0 +170742172487,245,0 +170742172535,245,0 +170742172583,245,0 +170742172632,245,0 +170742172680,245,0 +170742172728,245,0 +170742172776,245,0 +170742172824,245,0 +170742172872,245,0 +170742172922,245,0 +170742172969,245,0 +170742173019,245,0 +170742173067,245,0 +170742173115,245,0 +170742173163,245,0 +170742173211,245,0 +170742173260,245,0 +170742173310,246,0 +170742173358,245,0 +170742173406,246,0 +170742173455,245,0 +170742173505,245,0 +170742173554,245,0 +170742173602,245,0 +170742173650,245,0 +170742173700,245,0 +170742173749,245,0 +170742173799,245,0 +170742173847,245,0 +170742173896,245,0 +170742173944,245,0 +170742173992,245,0 +170742174042,245,0 +170742174090,245,0 +170742174138,245,0 +170742174187,245,0 +170742174237,245,0 +170742174285,245,0 +170742174333,245,0 +170742174381,245,0 +170742174429,245,0 +170742174476,246,0 +170742174524,245,0 +170742174572,245,0 +170742174622,246,0 +170742174670,245,0 +170742174719,246,0 +170742174767,245,0 +170742174817,245,0 +170742174865,246,0 +170742174914,246,0 +170742174964,246,0 +170742175012,246,0 +170742175061,245,0 +170742175111,245,0 +170742175159,246,0 +170742175207,245,0 +170742175255,245,0 +170742175303,245,0 +170742175352,245,0 +170742175402,245,0 +170742175451,245,0 +170742175499,245,0 +170742175549,246,0 +170742175597,245,0 +170742175645,245,0 +170742175693,245,0 +170742175742,245,0 +170742175790,245,0 +170742175840,245,0 +170742175888,245,0 +170742175937,245,0 +170742175987,245,0 +170742176035,245,0 +170742176083,245,0 +170742176131,245,0 +170742176179,245,0 +170742176228,245,0 +170742176276,245,0 +170742176326,245,0 +170742176374,245,0 +170742176423,245,0 +170742176473,245,0 +170742176522,245,0 +170742176570,245,0 +170742176620,245,0 +170742176668,245,0 +170742176715,245,0 +170742176765,245,0 +170742176815,245,0 +170742176863,245,0 +170742176910,245,0 +170742176960,245,0 +170742177008,246,0 +170742177056,245,0 +170742177104,245,0 +170742177153,245,0 +170742177203,246,0 +170742177251,246,0 +170742177299,245,0 +170742177347,245,0 +170742177395,245,0 +170742177443,245,0 +170742177491,245,0 +170742177539,245,0 +170742177587,245,0 +170742177636,245,0 +170742177686,245,0 +170742177734,245,0 +170742177782,245,0 +170742177830,245,0 +170742177878,246,0 +170742177926,245,0 +170742177973,245,0 +170742178021,245,0 +170742178071,245,0 +170742178119,245,0 +170742178167,245,0 +170742178216,245,0 +170742178264,245,0 +170742178312,245,0 +170742178362,245,0 +170742178410,245,0 +170742178458,245,0 +170742178506,245,0 +170742178554,245,0 +170742178602,245,0 +170742178650,245,0 +170742178699,245,0 +170742178747,246,0 +170742178795,245,0 +170742178843,245,0 +170742178891,245,0 +170742178939,245,0 +170742178986,245,0 +170742179034,245,0 +170742179082,245,0 +170742179130,245,0 +170742179178,245,0 +170742179226,245,0 +170742179275,245,0 +170742179323,246,0 +170742179373,245,0 +170742179421,245,0 +170742179470,245,0 +170742179519,246,0 +170742179568,245,0 +170742179617,245,0 +170742179667,245,0 +170742179715,245,0 +170742179765,245,0 +170742179812,245,0 +170742179860,245,0 +170742179910,245,0 +170742179958,245,0 +170742180007,245,0 +170742180055,245,0 +170742180105,245,0 +170742180153,245,0 +170742180201,245,0 +170742180250,245,0 +170742180300,245,0 +170742180349,245,0 +170742180397,245,0 +170742180447,245,0 +170742180495,245,0 +170742180544,245,0 +170742180592,245,0 +170742180640,245,0 +170742180688,245,0 +170742180736,245,0 +170742180784,245,0 +170742180832,245,0 +170742180880,245,0 +170742180929,245,0 +170742180977,245,0 +170742181025,245,0 +170742181075,245,0 +170742181124,245,0 +170742181174,245,0 +170742181223,245,0 +170742181273,245,0 +170742181321,245,0 +170742181369,245,0 +170742181418,245,0 +170742181466,245,0 +170742181514,246,0 +170742181564,245,0 +170742181612,245,0 +170742181660,245,0 +170742181707,245,0 +170742181755,245,0 +170742181803,245,0 +170742181851,245,0 +170742181901,245,0 +170742181949,245,0 +170742181999,245,0 +170742182049,245,0 +170742182098,245,0 +170742182146,246,0 +170742182194,245,0 +170742182244,245,0 +170742182293,245,0 +170742182343,245,0 +170742182391,245,0 +170742182438,245,0 +170742182486,245,0 +170742182534,245,0 +170742182582,245,0 +170742182630,245,0 +170742182678,245,0 +170742182726,245,0 +170742182774,246,0 +170742182822,245,0 +170742182870,245,0 +170742182918,246,0 +170742182966,246,0 +170742183013,245,0 +170742183061,245,0 +170742183109,245,0 +170742183157,245,0 +170742183205,245,0 +170742183253,245,0 +170742183301,245,0 +170742183350,245,0 +170742183398,245,0 +170742183446,245,0 +170742183494,245,0 +170742183542,245,0 +170742183590,245,0 +170742183640,245,0 +170742183688,245,0 +170742183736,245,0 +170742183785,245,0 +170742183833,245,0 +170742183881,245,0 +170742183931,246,0 +170742183979,245,0 +170742184028,245,0 +170742184076,245,0 +170742184126,245,0 +170742184174,246,0 +170742184222,245,0 +170742184270,246,0 +170742184319,245,0 +170742184367,245,0 +170742184415,245,0 +170742184463,245,0 +170742184511,245,0 +170742184559,245,0 +170742184607,245,0 +170742184655,245,0 +170742184703,245,0 +170742184751,245,0 +170742184799,245,0 +170742184847,245,0 +170742184896,245,0 +170742184944,245,0 +170742184994,245,0 +170742185042,245,0 +170742185090,245,0 +170742185138,245,0 +170742185186,245,0 +170742185235,246,0 +170742185283,245,0 +170742185331,245,0 +170742185379,245,0 +170742185429,245,0 +170742185478,245,0 +170742185526,245,0 +170742185574,245,0 +170742185624,245,0 +170742185673,245,0 +170742185721,245,0 +170742185769,245,0 +170742185819,245,0 +170742185866,245,0 +170742185914,245,0 +170742185962,245,0 +170742186010,245,0 +170742186058,245,0 +170742186106,245,0 +170742186154,245,0 +170742186202,245,0 +170742186250,245,0 +170742186298,245,0 +170742186347,245,0 +170742186395,245,0 +170742186443,245,0 +170742186491,245,0 +170742186539,245,0 +170742186586,245,0 +170742186634,245,0 +170742186682,245,0 +170742186730,245,0 +170742186778,245,0 +170742186826,245,0 +170742186874,246,0 +170742186922,245,0 +170742186970,245,0 +170742187018,245,0 +170742187065,245,0 +170742187113,245,0 +170742187163,245,0 +170742187211,245,0 +170742187260,245,0 +170742187308,245,0 +170742187356,245,0 +170742187404,245,0 +170742187452,245,0 +170742187500,245,0 +170742187548,245,0 +170742187596,245,0 +170742187644,245,0 +170742187694,245,0 +170742187743,245,0 +170742187791,245,0 +170742187841,245,0 +170742187889,246,0 +170742187936,245,0 +170742187986,245,0 +170742188034,245,0 +170742188082,245,0 +170742188132,245,0 +170742188179,245,0 +170742188229,245,0 +170742188277,245,0 +170742188325,245,0 +170742188373,245,0 +170742188421,246,0 +170742188468,245,0 +170742188516,245,0 +170742188564,246,0 +170742188612,245,0 +170742188660,245,0 +170742188708,245,0 +170742188758,245,0 +170742188805,245,0 +170742188853,245,0 +170742188901,245,0 +170742188951,245,0 +170742188999,245,0 +170742189048,245,0 +170742189098,245,0 +170742189146,245,0 +170742189195,245,0 +170742189243,245,0 +170742189293,245,0 +170742189341,245,0 +170742189389,245,0 +170742189437,245,0 +170742189485,245,0 +170742189533,245,0 +170742189581,245,0 +170742189628,245,0 +170742189676,245,0 +170742189724,245,0 +170742189772,245,0 +170742189820,245,0 +170742189868,245,0 +170742189918,245,0 +170742189965,245,0 +170742190013,245,0 +170742190061,245,0 +170742190111,245,0 +170742190158,245,0 +170742190206,245,0 +170742190254,245,0 +170742190302,245,0 +170742190350,245,0 +170742190400,245,0 +170742190448,245,0 +170742190497,245,0 +170742190545,245,0 +170742190595,245,0 +170742190643,245,0 +170742190691,245,0 +170742190739,245,0 +170742190788,245,0 +170742190836,245,0 +170742190884,245,0 +170742190932,245,0 +170742190980,245,0 +170742191028,245,0 +170742191076,245,0 +170742191124,245,0 +170742191172,245,0 +170742191220,245,0 +170742191268,245,0 +170742191316,245,0 +170742191364,245,0 +170742191413,245,0 +170742191461,245,0 +170742191509,245,0 +170742191558,245,0 +170742191608,245,0 +170742191657,245,0 +170742191705,245,0 +170742191755,245,0 +170742191803,245,0 +170742191852,245,0 +170742191902,245,0 +170742191951,245,0 +170742192001,245,0 +170742192049,245,0 +170742192097,245,0 +170742192145,245,0 +170742192193,245,0 +170742192242,245,0 +170742192290,245,0 +170742192338,245,0 +170742192386,245,0 +170742192434,245,0 +170742192482,245,0 +170742192532,245,0 +170742192579,245,0 +170742192627,245,0 +170742192677,245,0 +170742192725,245,0 +170742192773,245,0 +170742192821,245,0 +170742192869,245,0 +170742192917,245,0 +170742192965,245,0 +170742193013,246,0 +170742193061,245,0 +170742193110,245,0 +170742193160,245,0 +170742193209,245,0 +170742193259,245,0 +170742193307,245,0 +170742193355,245,0 +170742193403,245,0 +170742193451,245,0 +170742193499,245,0 +170742193548,245,0 +170742193596,245,0 +170742193644,245,0 +170742193692,246,0 +170742193742,245,0 +170742193790,245,0 +170742193838,245,0 +170742193885,245,0 +170742193933,245,0 +170742193983,245,0 +170742194032,245,0 +170742194082,245,0 +170742194130,245,0 +170742194179,245,0 +170742194227,245,0 +170742194277,245,0 +170742194326,245,0 +170742194374,245,0 +170742194422,245,0 +170742194470,245,0 +170742194518,245,0 +170742194568,245,0 +170742194617,245,0 +170742194665,245,0 +170742194713,245,0 +170742194761,245,0 +170742194809,245,0 +170742194857,245,0 +170742194905,245,0 +170742194953,245,0 +170742195001,245,0 +170742195049,245,0 +170742195096,245,0 +170742195144,245,0 +170742195194,245,0 +170742195242,245,0 +170742195291,245,0 +170742195339,245,0 +170742195387,245,0 +170742195435,245,0 +170742195483,245,0 +170742195531,245,0 +170742195580,245,0 +170742195628,245,0 +170742195676,245,0 +170742195724,245,0 +170742195772,245,0 +170742195820,245,0 +170742195868,245,0 +170742195916,245,0 +170742195964,245,0 +170742196011,245,0 +170742196059,245,0 +170742196107,245,0 +170742196155,245,0 +170742196203,245,0 +170742196251,245,0 +170742196299,245,0 +170742196348,245,0 +170742196396,245,0 +170742196444,245,0 +170742196492,245,0 +170742196540,245,0 +170742196588,245,0 +170742196636,245,0 +170742196683,245,0 +170742196731,245,0 +170742196779,246,0 +170742196827,245,0 +170742196877,245,0 +170742196924,245,0 +170742196972,245,0 +170742197020,245,0 +170742197068,245,0 +170742197118,245,0 +170742197166,245,0 +170742197213,245,0 +170742197263,245,0 +170742197311,245,0 +170742197359,245,0 +170742197407,245,0 +170742197456,245,0 +170742197504,245,0 +170742197554,245,0 +170742197603,245,0 +170742197651,245,0 +170742197699,245,0 +170742197747,245,0 +170742197797,245,0 +170742197845,245,0 +170742197893,245,0 +170742197942,245,0 +170742197990,245,0 +170742198038,245,0 +170742198088,245,0 +170742198137,245,0 +170742198187,245,0 +170742198235,245,0 +170742198283,245,0 +170742198331,245,0 +170742198379,245,0 +170742198428,245,0 +170742198478,245,0 +170742198527,245,0 +170742198575,246,0 +170742198623,245,0 +170742198671,245,0 +170742198721,245,0 +170742198769,245,0 +170742198818,245,0 +170742198866,245,0 +170742198916,245,0 +170742198965,245,0 +170742199013,245,0 +170742199061,245,0 +170742199109,245,0 +170742199157,245,0 +170742199205,245,0 +170742199253,245,0 +170742199300,245,0 +170742199350,245,0 +170742199399,245,0 +170742199447,245,0 +170742199497,245,0 +170742199545,245,0 +170742199594,245,0 +170742199642,245,0 +170742199692,245,0 +170742199740,245,0 +170742199789,245,0 +170742199839,245,0 +170742199887,245,0 +170742199936,245,0 +170742199984,245,0 +170742200032,245,0 +170742200082,245,0 +170742200130,245,0 +170742200179,245,0 +170742200227,245,0 +170742200277,245,0 +170742200325,245,0 +170742200373,245,0 +170742200421,245,0 +170742200469,245,0 +170742200517,245,0 +170742200565,245,0 +170742200613,245,0 +170742200662,245,0 +170742200712,245,0 +170742200761,245,0 +170742200809,245,0 +170742200859,245,0 +170742200908,245,0 +170742200958,245,0 +170742201006,245,0 +170742201054,245,0 +170742201102,245,0 +170742201150,245,0 +170742201199,245,0 +170742201247,245,0 +170742201297,245,0 +170742201346,245,0 +170742201396,245,0 +170742201445,245,0 +170742201493,246,0 +170742201541,246,0 +170742201590,245,0 +170742201638,245,0 +170742201686,245,0 +170742201734,245,0 +170742201784,245,0 +170742201832,245,0 +170742201880,245,0 +170742201928,246,0 +170742201976,245,0 +170742202025,246,0 +170742202075,246,0 +170742202124,245,0 +170742202172,245,0 +170742202222,245,0 +170742202271,245,0 +170742202321,245,0 +170742202368,245,0 +170742202418,245,0 +170742202466,245,0 +170742202514,245,0 +170742202562,245,0 +170742202611,245,0 +170742202659,245,0 +170742202707,245,0 +170742202755,245,0 +170742202805,245,0 +170742202853,246,0 +170742202902,245,0 +170742202952,245,0 +170742203000,245,0 +170742203048,245,0 +170742203096,245,0 +170742203144,245,0 +170742203192,245,0 +170742203240,245,0 +170742203288,245,0 +170742203336,245,0 +170742203383,245,0 +170742203431,245,0 +170742203479,245,0 +170742203529,245,0 +170742203577,245,0 +170742203625,245,0 +170742203673,245,0 +170742203722,245,0 +170742203770,245,0 +170742203820,245,0 +170742203868,246,0 +170742203916,245,0 +170742203964,245,0 +170742204012,245,0 +170742204060,245,0 +170742204108,245,0 +170742204157,245,0 +170742204205,245,0 +170742204253,245,0 +170742204301,245,0 +170742204349,245,0 +170742204397,245,0 +170742204445,245,0 +170742204493,245,0 +170742204541,245,0 +170742204589,245,0 +170742204637,245,0 +170742204685,245,0 +170742204733,245,0 +170742204781,245,0 +170742204829,245,0 +170742204877,245,0 +170742204926,245,0 +170742204976,245,0 +170742205024,245,0 +170742205072,245,0 +170742205120,245,0 +170742205168,245,0 +170742205216,245,0 +170742205264,245,0 +170742205312,245,0 +170742205361,245,0 +170742205409,245,0 +170742205457,245,0 +170742205507,245,0 +170742205555,245,0 +170742205603,245,0 +170742205652,245,0 +170742205702,245,0 +170742205751,245,0 +170742205800,245,0 +170742205848,245,0 +170742205896,245,0 +170742205944,245,0 +170742205994,245,0 +170742206044,245,0 +170742206093,245,0 +170742206143,245,0 +170742206192,245,0 +170742206240,245,0 +170742206288,245,0 +170742206338,245,0 +170742206387,245,0 +170742206435,245,0 +170742206483,245,0 +170742206533,245,0 +170742206581,245,0 +170742206628,245,0 +170742206677,245,0 +170742206724,245,0 +170742206772,245,0 +170742206820,245,0 +170742206868,245,0 +170742206918,245,0 +170742206966,245,0 +170742207015,245,0 +170742207063,245,0 +170742207113,245,0 +170742207163,245,0 +170742207211,245,0 +170742207260,246,0 +170742207308,245,0 +170742207356,245,0 +170742207405,245,0 +170742207455,245,0 +170742207503,245,0 +170742207551,245,0 +170742207599,245,0 +170742207647,245,0 +170742207695,245,0 +170742207744,245,0 +170742207794,245,0 +170742207843,245,0 +170742207893,245,0 +170742207941,245,0 +170742207989,245,0 +170742208038,245,0 +170742208086,245,0 +170742208136,245,0 +170742208184,245,0 +170742208232,245,0 +170742208280,245,0 +170742208328,245,0 +170742208376,245,0 +170742208424,245,0 +170742208473,245,0 +170742208521,246,0 +170742208569,245,0 +170742208617,245,0 +170742208665,245,0 +170742208713,245,0 +170742208761,245,0 +170742208809,245,0 +170742208857,245,0 +170742208905,245,0 +170742208953,245,0 +170742209001,245,0 +170742209049,245,0 +170742209098,245,0 +170742209146,245,0 +170742209194,245,0 +170742209242,245,0 +170742209290,245,0 +170742209340,245,0 +170742209389,245,0 +170742209437,245,0 +170742209487,245,0 +170742209535,245,0 +170742209584,245,0 +170742209632,245,0 +170742209680,246,0 +170742209728,245,0 +170742209776,245,0 +170742209826,245,0 +170742209874,245,0 +170742209923,245,0 +170742209973,245,0 +170742210022,245,0 +170742210072,245,0 +170742210120,245,0 +170742210169,245,0 +170742210217,245,0 +170742210265,245,0 +170742210315,245,0 +170742210364,245,0 +170742210412,245,0 +170742210462,245,0 +170742210510,244,0 +170742210559,245,0 +170742210609,245,0 +170742210658,245,0 +170742210706,245,0 +170742210754,245,0 +170742210802,245,0 +170742210850,245,0 +170742210898,245,0 +170742210948,245,0 +170742210996,245,0 +170742211044,245,0 +170742211093,245,0 +170742211141,245,0 +170742211189,245,0 +170742211237,245,0 +170742211285,245,0 +170742211333,245,0 +170742211381,245,0 +170742211429,245,0 +170742211478,245,0 +170742211528,245,0 +170742211576,245,0 +170742211624,245,0 +170742211673,245,0 +170742211721,245,0 +170742211769,244,0 +170742211817,245,0 +170742211865,245,0 +170742211913,245,0 +170742211961,245,0 +170742212009,245,0 +170742212059,245,0 +170742212107,245,0 +170742212156,245,0 +170742212206,245,0 +170742212255,245,0 +170742212303,245,0 +170742212353,245,0 +170742212402,245,0 +170742212450,245,0 +170742212498,245,0 +170742212546,245,0 +170742212596,245,0 +170742212645,245,0 +170742212695,245,0 +170742212743,245,0 +170742212791,245,0 +170742212840,245,0 +170742212890,245,0 +170742212939,245,0 +170742212987,245,0 +170742213035,245,0 +170742213083,245,0 +170742213131,245,0 +170742213179,245,0 +170742213227,245,0 +170742213275,245,0 +170742213323,245,0 +170742213371,245,0 +170742213419,245,0 +170742213468,245,0 +170742213518,245,0 +170742213567,245,0 +170742213615,245,0 +170742213665,245,0 +170742213713,245,0 +170742213761,245,0 +170742213809,245,0 +170742213857,246,0 +170742213905,245,0 +170742213955,246,0 +170742214005,245,0 +170742214052,245,0 +170742214100,245,0 +170742214148,245,0 +170742214196,245,0 +170742214244,245,0 +170742214292,245,0 +170742214340,245,0 +170742214388,245,0 +170742214436,245,0 +170742214484,245,0 +170742214532,245,0 +170742214580,245,0 +170742214628,245,0 +170742214676,245,0 +170742214724,245,0 +170742214772,245,0 +170742214820,246,0 +170742214868,245,0 +170742214917,245,0 +170742214965,245,0 +170742215013,245,0 +170742215061,245,0 +170742215109,245,0 +170742215159,245,0 +170742215207,245,0 +170742215256,245,0 +170742215306,245,0 +170742215354,245,0 +170742215402,245,0 +170742215450,245,0 +170742215498,245,0 +170742215546,245,0 +170742215594,245,0 +170742215643,245,0 +170742215691,245,0 +170742215739,245,0 +170742215789,245,0 +170742215837,245,0 +170742215886,245,0 +170742215934,245,0 +170742215984,245,0 +170742216033,245,0 +170742216083,245,0 +170742216131,245,0 +170742216180,245,0 +170742216230,245,0 +170742216279,245,0 +170742216329,245,0 +170742216377,245,0 +170742216426,245,0 +170742216476,245,0 +170742216524,245,0 +170742216573,245,0 +170742216621,245,0 +170742216669,245,0 +170742216717,245,0 +170742216765,245,0 +170742216815,245,0 +170742216863,245,0 +170742216911,245,0 +170742216960,245,0 +170742217008,245,0 +170742217056,245,0 +170742217106,245,0 +170742217155,245,0 +170742217203,245,0 +170742217251,245,0 +170742217299,245,0 +170742217347,245,0 +170742217395,245,0 +170742217443,245,0 +170742217491,245,0 +170742217539,245,0 +170742217587,245,0 +170742217637,245,0 +170742217685,245,0 +170742217733,245,0 +170742217782,245,0 +170742217830,245,0 +170742217880,245,0 +170742217928,245,0 +170742217976,245,0 +170742218024,245,0 +170742218072,245,0 +170742218121,245,0 +170742218169,245,0 +170742218219,245,0 +170742218268,245,0 +170742218316,246,0 +170742218366,245,0 +170742218414,245,0 +170742218462,245,0 +170742218510,245,0 +170742218558,245,0 +170742218606,245,0 +170742218655,245,0 +170742218705,245,0 +170742218753,245,0 +170742218802,245,0 +170742218850,245,0 +170742218898,245,0 +170742218946,245,0 +170742218995,245,0 +170742219045,245,0 +170742219093,245,0 +170742219141,245,0 +170742219189,245,0 +170742219238,245,0 +170742219288,245,0 +170742219336,245,0 +170742219384,245,0 +170742219433,245,0 +170742219481,245,0 +170742219529,245,0 +170742219577,245,0 +170742219625,245,0 +170742219675,245,0 +170742219723,245,0 +170742219771,245,0 +170742219819,245,0 +170742219868,245,0 +170742219916,245,0 +170742219964,245,0 +170742220012,245,0 +170742220060,245,0 +170742220110,245,0 +170742220159,245,0 +170742220207,245,0 +170742220257,245,0 +170742220306,245,0 +170742220354,245,0 +170742220402,245,0 +170742220450,245,0 +170742220500,245,0 +170742220548,245,0 +170742220596,245,0 +170742220644,244,0 +170742220693,245,0 +170742220741,245,0 +170742220789,245,0 +170742220837,245,0 +170742220885,245,0 +170742220935,245,0 +170742220983,245,0 +170742221032,245,0 +170742221080,245,0 +170742221128,245,0 +170742221178,245,0 +170742221226,245,0 +170742221274,245,0 +170742221323,245,0 +170742221371,246,0 +170742221421,245,0 +170742221470,245,0 +170742221518,245,0 +170742221566,245,0 +170742221614,245,0 +170742221662,245,0 +170742221710,245,0 +170742221758,245,0 +170742221806,245,0 +170742221854,246,0 +170742221902,245,0 +170742221950,245,0 +170742221998,245,0 +170742222046,245,0 +170742222096,245,0 +170742222143,245,0 +170742222193,245,0 +170742222241,245,0 +170742222291,245,0 +170742222338,245,0 +170742222388,245,0 +170742222438,245,0 +170742222485,245,0 +170742222533,245,0 +170742222583,245,0 +170742222632,244,0 +170742222680,245,0 +170742222728,245,0 +170742222776,245,0 +170742222824,245,0 +170742222872,245,0 +170742222922,245,0 +170742222970,245,0 +170742223018,245,0 +170742223067,245,0 +170742223117,245,0 +170742223166,245,0 +170742223214,245,0 +170742223264,245,0 +170742223312,245,0 +170742223361,245,0 +170742223409,245,0 +170742223459,245,0 +170742223508,245,0 +170742223556,245,0 +170742223604,245,0 +170742223652,245,0 +170742223700,245,0 +170742223750,245,0 +170742223798,245,0 +170742223846,245,0 +170742223895,245,0 +170742223945,245,0 +170742223994,245,0 +170742224042,245,0 +170742224092,244,0 +170742224141,245,0 +170742224189,245,0 +170742224239,245,0 +170742224287,245,0 +170742224335,245,0 +170742224383,245,0 +170742224431,245,0 +170742224479,245,0 +170742224527,245,0 +170742224575,245,0 +170742224624,245,0 +170742224674,245,0 +170742224722,245,0 +170742224769,245,0 +170742224819,245,0 +170742224867,245,0 +170742224916,245,0 +170742224964,245,0 +170742225012,245,0 +170742225060,245,0 +170742225108,245,0 +170742225156,245,0 +170742225204,245,0 +170742225254,245,0 +170742225303,245,0 +170742225351,245,0 +170742225399,245,0 +170742225447,245,0 +170742225495,245,0 +170742225543,245,0 +170742225591,245,0 +170742225641,245,0 +170742225689,245,0 +170742225738,245,0 +170742225786,245,0 +170742225834,245,0 +170742225882,245,0 +170742225930,245,0 +170742225978,245,0 +170742226027,245,0 +170742226075,245,0 +170742226123,245,0 +170742226171,245,0 +170742226219,245,0 +170742226269,245,0 +170742226317,245,0 +170742226366,245,0 +170742226414,245,0 +170742226462,245,0 +170742226510,245,0 +170742226558,245,0 +170742226606,245,0 +170742226654,245,0 +170742226702,245,0 +170742226750,245,0 +170742226798,245,0 +170742226846,245,0 +170742226894,245,0 +170742226942,245,0 +170742226990,245,0 +170742227038,245,0 +170742227086,245,0 +170742227135,245,0 +170742227185,245,0 +170742227233,245,0 +170742227282,245,0 +170742227332,245,0 +170742227381,245,0 +170742227429,245,0 +170742227477,245,0 +170742227525,245,0 +170742227573,245,0 +170742227621,245,0 +170742227669,245,0 +170742227719,245,0 +170742227767,245,0 +170742227815,245,0 +170742227863,245,0 +170742227912,245,0 +170742227961,245,0 +170742228011,245,0 +170742228059,245,0 +170742228107,245,0 +170742228155,245,0 +170742228204,245,0 +170742228252,245,0 +170742228300,245,0 +170742228348,245,0 +170742228398,245,0 +170742228447,245,0 +170742228495,245,0 +170742228545,245,0 +170742228593,245,0 +170742228641,245,0 +170742228690,245,0 +170742228738,245,0 +170742228786,245,0 +170742228834,245,0 +170742228882,245,0 +170742228932,245,0 +170742228980,245,0 +170742229027,245,0 +170742229075,245,0 +170742229125,245,0 +170742229173,245,0 +170742229221,245,0 +170742229269,245,0 +170742229317,245,0 +170742229365,245,0 +170742229413,245,0 +170742229461,245,0 +170742229509,245,0 +170742229558,245,0 +170742229608,245,0 +170742229657,245,0 +170742229705,245,0 +170742229755,245,0 +170742229803,245,0 +170742229851,245,0 +170742229899,245,0 +170742229948,245,0 +170742229996,245,0 +170742230044,245,0 +170742230094,245,0 +170742230143,245,0 +170742230191,245,0 +170742230241,245,0 +170742230290,245,0 +170742230340,245,0 +170742230388,245,0 +170742230437,245,0 +170742230485,244,0 +170742230533,245,0 +170742230581,245,0 +170742230629,245,0 +170742230679,245,0 +170742230728,245,0 +170742230778,245,0 +170742230827,245,0 +170742230877,245,0 +170742230925,245,0 +170742230973,245,0 +170742231022,245,0 +170742231072,245,0 +170742231121,245,0 +170742231169,244,0 +170742231217,245,0 +170742231265,245,0 +170742231313,245,0 +170742231363,245,0 +170742231411,244,0 +170742231460,245,0 +170742231510,245,0 +170742231559,245,0 +170742231609,245,0 +170742231657,245,0 +170742231705,244,0 +170742231753,245,0 +170742231801,244,0 +170742231850,245,0 +170742231898,245,0 +170742231946,245,0 +170742231996,245,0 +170742232044,245,0 +170742232092,245,0 +170742232140,245,0 +170742232189,245,0 +170742232237,245,0 +170742232285,245,0 +170742232333,245,0 +170742232381,245,0 +170742232429,245,0 +170742232477,245,0 +170742232525,245,0 +170742232573,244,0 +170742232621,245,0 +170742232669,245,0 +170742232718,245,0 +170742232766,245,0 +170742232816,245,0 +170742232864,245,0 +170742232912,245,0 +170742232960,245,0 +170742233008,245,0 +170742233056,245,0 +170742233105,245,0 +170742233153,245,0 +170742233201,245,0 +170742233251,245,0 +170742233299,245,0 +170742233348,245,0 +170742233396,244,0 +170742233444,245,0 +170742233494,245,0 +170742233543,245,0 +170742233591,245,0 +170742233639,245,0 +170742233687,245,0 +170742233735,245,0 +170742233784,245,0 +170742233832,245,0 +170742233880,245,0 +170742233928,245,0 +170742233976,245,0 +170742234026,245,0 +170742234075,245,0 +170742234123,245,0 +170742234173,245,0 +170742234221,245,0 +170742234269,245,0 +170742234318,245,0 +170742234368,245,0 +170742234417,245,0 +170742234465,245,0 +170742234513,245,0 +170742234561,245,0 +170742234609,245,0 +170742234657,245,0 +170742234705,245,0 +170742234753,245,0 +170742234801,245,0 +170742234850,245,0 +170742234900,245,0 +170742234950,245,0 +170742234999,245,0 +170742235047,245,0 +170742235095,245,0 +170742235143,245,0 +170742235191,245,0 +170742235239,245,0 +170742235287,245,0 +170742235336,245,0 +170742235384,245,0 +170742235434,245,0 +170742235482,245,0 +170742235530,245,0 +170742235578,245,0 +170742235626,245,0 +170742235675,245,0 +170742235725,245,0 +170742235772,245,0 +170742235820,245,0 +170742235868,245,0 +170742235916,245,0 +170742235964,245,0 +170742236012,245,0 +170742236060,245,0 +170742236108,245,0 +170742236157,245,0 +170742236205,245,0 +170742236255,245,0 +170742236304,245,0 +170742236352,245,0 +170742236400,245,0 +170742236450,245,0 +170742236497,245,0 +170742236545,245,0 +170742236593,245,0 +170742236641,245,0 +170742236689,245,0 +170742236737,245,0 +170742236785,245,0 +170742236835,245,0 +170742236884,245,0 +170742236934,245,0 +170742236983,245,0 +170742237031,245,0 +170742237081,245,0 +170742237130,245,0 +170742237178,245,0 +170742237226,245,0 +170742237274,245,0 +170742237323,245,0 +170742237371,245,0 +170742237419,245,0 +170742237467,245,0 +170742237517,245,0 +170742237564,245,0 +170742237612,245,0 +170742237662,244,0 +170742237710,245,0 +170742237758,245,0 +170742237807,245,0 +170742237855,245,0 +170742237903,245,0 +170742237951,245,0 +170742237999,245,0 +170742238047,245,0 +170742238095,245,0 +170742238144,245,0 +170742238194,245,0 +170742238242,245,0 +170742238290,245,0 +170742238338,245,0 +170742238386,244,0 +170742238434,245,0 +170742238482,245,0 +170742238531,245,0 +170742238579,245,0 +170742238627,245,0 +170742238675,245,0 +170742238723,245,0 +170742238771,245,0 +170742238819,245,0 +170742238867,245,0 +170742238915,245,0 +170742238963,245,0 +170742239012,245,0 +170742239060,245,0 +170742239108,245,0 +170742239156,245,0 +170742239204,245,0 +170742239253,245,0 +170742239303,245,0 +170742239351,245,0 +170742239399,245,0 +170742239448,245,0 +170742239496,245,0 +170742239544,245,0 +170742239592,245,0 +170742239640,245,0 +170742239688,245,0 +170742239736,245,0 +170742239784,245,0 +170742239834,245,0 +170742239881,245,0 +170742239929,245,0 +170742239977,245,0 +170742240025,245,0 diff --git a/laser_value/0209-06.csv b/laser_value/0209-06.csv new file mode 100644 index 0000000..665b97f --- /dev/null +++ b/laser_value/0209-06.csv @@ -0,0 +1,7434 @@ +timestamp,laser_value,event +170742240074,245,0 +170742240122,245,0 +170742240170,245,0 +170742240219,245,0 +170742240269,245,0 +170742240317,245,0 +170742240365,245,0 +170742240413,245,0 +170742240461,245,0 +170742240509,245,0 +170742240557,245,0 +170742240605,245,0 +170742240653,245,0 +170742240701,245,0 +170742240750,245,0 +170742240798,245,0 +170742240848,245,0 +170742240896,245,0 +170742240944,245,0 +170742240993,245,0 +170742241041,245,0 +170742241089,245,0 +170742241138,245,0 +170742241186,245,0 +170742241234,244,0 +170742241282,245,0 +170742241332,245,0 +170742241379,245,0 +170742241427,245,0 +170742241475,245,0 +170742241523,245,0 +170742241571,245,0 +170742241619,245,0 +170742241667,245,0 +170742241715,245,0 +170742241763,245,0 +170742241810,245,0 +170742241858,245,0 +170742241906,245,0 +170742241954,245,0 +170742242002,245,0 +170742242050,245,0 +170742242098,245,0 +170742242146,245,0 +170742242194,245,0 +170742242241,245,0 +170742242289,245,0 +170742242337,245,0 +170742242387,245,0 +170742242435,245,0 +170742242482,245,0 +170742242530,245,0 +170742242580,245,0 +170742242628,245,0 +170742242676,245,0 +170742242725,245,0 +170742242773,245,0 +170742242821,245,0 +170742242869,245,0 +170742242917,245,0 +170742242965,245,0 +170742243013,244,0 +170742243061,245,0 +170742243108,245,0 +170742243156,245,0 +170742243206,245,0 +170742243254,245,0 +170742243302,245,0 +170742243351,244,0 +170742243399,245,0 +170742243447,245,0 +170742243495,245,0 +170742243543,245,0 +170742243591,245,0 +170742243638,244,0 +170742243686,245,0 +170742243736,245,0 +170742243784,245,0 +170742243833,244,0 +170742243881,245,0 +170742243929,245,0 +170742243977,245,0 +170742244027,245,0 +170742244075,245,0 +170742244124,245,0 +170742244174,245,0 +170742244222,245,0 +170742244269,245,0 +170742244319,244,0 +170742244369,244,0 +170742244418,245,0 +170742244466,245,0 +170742244514,245,0 +170742244564,245,0 +170742244613,245,0 +170742244663,245,0 +170742244712,245,0 +170742244760,245,0 +170742244808,245,0 +170742244856,245,0 +170742244905,245,0 +170742244955,245,0 +170742245005,245,0 +170742245054,245,0 +170742245102,245,0 +170742245150,245,0 +170742245198,245,0 +170742245246,245,0 +170742245294,245,0 +170742245342,245,0 +170742245391,245,0 +170742245439,245,0 +170742245487,245,0 +170742245535,245,0 +170742245585,245,0 +170742245633,245,0 +170742245681,245,0 +170742245730,245,0 +170742245778,245,0 +170742245826,245,0 +170742245875,245,0 +170742245923,245,0 +170742245973,245,0 +170742246022,245,0 +170742246072,245,0 +170742246120,245,0 +170742246168,245,0 +170742246216,244,0 +170742246264,245,0 +170742246312,245,0 +170742246360,245,0 +170742246409,245,0 +170742246459,245,0 +170742246508,245,0 +170742246556,244,0 +170742246606,245,0 +170742246654,245,0 +170742246703,245,0 +170742246751,245,0 +170742246801,245,0 +170742246849,245,0 +170742246897,245,0 +170742246945,245,0 +170742246993,245,0 +170742247041,245,0 +170742247089,245,0 +170742247137,245,0 +170742247184,245,0 +170742247232,245,0 +170742247282,244,0 +170742247330,245,0 +170742247379,245,0 +170742247427,245,0 +170742247477,245,0 +170742247525,244,0 +170742247574,245,0 +170742247622,245,0 +170742247670,245,0 +170742247720,245,0 +170742247768,245,0 +170742247817,245,0 +170742247865,245,0 +170742247915,245,0 +170742247964,245,0 +170742248012,245,0 +170742248062,245,0 +170742248111,245,0 +170742248161,245,0 +170742248210,245,0 +170742248258,245,0 +170742248308,245,0 +170742248356,245,0 +170742248404,245,0 +170742248452,245,0 +170742248501,245,0 +170742248551,245,0 +170742248599,245,0 +170742248648,245,0 +170742248696,245,0 +170742248744,245,0 +170742248794,245,0 +170742248841,245,0 +170742248889,245,0 +170742248939,245,0 +170742248988,245,0 +170742249036,245,0 +170742249084,245,0 +170742249132,245,0 +170742249180,245,0 +170742249230,245,0 +170742249279,245,0 +170742249329,245,0 +170742249378,245,0 +170742249426,245,0 +170742249474,245,0 +170742249522,245,0 +170742249572,245,0 +170742249621,245,0 +170742249669,245,0 +170742249717,245,0 +170742249765,244,0 +170742249813,245,0 +170742249861,245,0 +170742249911,245,0 +170742249959,245,0 +170742250006,245,0 +170742250056,245,0 +170742250106,245,0 +170742250153,245,0 +170742250203,245,0 +170742250253,245,0 +170742250302,245,0 +170742250350,245,0 +170742250398,245,0 +170742250446,245,0 +170742250494,245,0 +170742250542,245,0 +170742250590,245,0 +170742250639,245,0 +170742250687,245,0 +170742250735,245,0 +170742250785,245,0 +170742250833,245,0 +170742250881,245,0 +170742250929,245,0 +170742250977,245,0 +170742251025,245,0 +170742251074,245,0 +170742251122,245,0 +170742251170,245,0 +170742251218,245,0 +170742251266,245,0 +170742251314,245,0 +170742251362,245,0 +170742251411,245,0 +170742251461,245,0 +170742251509,245,0 +170742251557,245,0 +170742251606,245,0 +170742251654,245,0 +170742251702,245,0 +170742251750,245,0 +170742251798,244,0 +170742251846,245,0 +170742251895,245,0 +170742251945,245,0 +170742251994,245,0 +170742252044,245,0 +170742252092,245,0 +170742252140,245,0 +170742252188,245,0 +170742252236,245,0 +170742252284,245,0 +170742252332,245,0 +170742252382,245,0 +170742252429,245,0 +170742252477,245,0 +170742252525,245,0 +170742252573,245,0 +170742252621,245,0 +170742252669,245,0 +170742252719,245,0 +170742252767,245,0 +170742252815,245,0 +170742252864,245,0 +170742252912,244,0 +170742252960,245,0 +170742253008,245,0 +170742253056,245,0 +170742253104,245,0 +170742253152,245,0 +170742253200,245,0 +170742253248,245,0 +170742253297,244,0 +170742253345,245,0 +170742253393,245,0 +170742253441,245,0 +170742253489,245,0 +170742253537,245,0 +170742253586,245,0 +170742253634,245,0 +170742253682,245,0 +170742253730,245,0 +170742253778,245,0 +170742253828,245,0 +170742253876,245,0 +170742253925,245,0 +170742253975,245,0 +170742254023,245,0 +170742254072,245,0 +170742254122,244,0 +170742254171,245,0 +170742254219,245,0 +170742254269,245,0 +170742254318,245,0 +170742254366,245,0 +170742254414,245,0 +170742254464,245,0 +170742254511,245,0 +170742254559,245,0 +170742254609,245,0 +170742254658,245,0 +170742254706,245,0 +170742254754,245,0 +170742254802,245,0 +170742254850,245,0 +170742254900,245,0 +170742254949,245,0 +170742254999,245,0 +170742255047,245,0 +170742255095,245,0 +170742255143,245,0 +170742255191,245,0 +170742255239,245,0 +170742255287,245,0 +170742255335,245,0 +170742255383,245,0 +170742255431,245,0 +170742255480,244,0 +170742255529,245,0 +170742255578,244,0 +170742255626,244,0 +170742255673,245,0 +170742255721,244,0 +170742255769,245,0 +170742255817,245,0 +170742255865,245,0 +170742255913,245,0 +170742255961,244,0 +170742256009,245,0 +170742256057,245,0 +170742256107,245,0 +170742256155,245,0 +170742256202,245,0 +170742256250,245,0 +170742256298,245,0 +170742256346,245,0 +170742256394,245,0 +170742256442,245,0 +170742256490,245,0 +170742256538,245,0 +170742256586,245,0 +170742256633,245,0 +170742256682,245,0 +170742256731,245,0 +170742256779,245,0 +170742256827,245,0 +170742256876,245,0 +170742256924,245,0 +170742256972,245,0 +170742257020,245,0 +170742257070,245,0 +170742257118,245,0 +170742257167,245,0 +170742257215,245,0 +170742257265,245,0 +170742257314,245,0 +170742257362,244,0 +170742257412,245,0 +170742257461,245,0 +170742257509,245,0 +170742257557,245,0 +170742257605,245,0 +170742257655,245,0 +170742257703,245,0 +170742257751,245,0 +170742257800,245,0 +170742257848,245,0 +170742257896,245,0 +170742257944,245,0 +170742257992,245,0 +170742258040,245,0 +170742258088,245,0 +170742258137,245,0 +170742258185,245,0 +170742258233,245,0 +170742258281,245,0 +170742258329,245,0 +170742258377,245,0 +170742258425,245,0 +170742258473,245,0 +170742258520,245,0 +170742258568,245,0 +170742258616,245,0 +170742258664,245,0 +170742258712,245,0 +170742258760,245,0 +170742258808,245,0 +170742258856,245,0 +170742258904,245,0 +170742258951,244,0 +170742258999,245,0 +170742259047,245,0 +170742259097,244,0 +170742259145,244,0 +170742259193,245,0 +170742259242,245,0 +170742259292,245,0 +170742259340,245,0 +170742259388,244,0 +170742259436,245,0 +170742259483,245,0 +170742259533,245,0 +170742259581,245,0 +170742259629,245,0 +170742259679,245,0 +170742259728,245,0 +170742259778,244,0 +170742259826,245,0 +170742259875,245,0 +170742259923,244,0 +170742259971,245,0 +170742260019,245,0 +170742260068,245,0 +170742260118,245,0 +170742260167,245,0 +170742260215,245,0 +170742260263,245,0 +170742260311,245,0 +170742260359,245,0 +170742260407,245,0 +170742260455,245,0 +170742260505,245,0 +170742260553,245,0 +170742260602,245,0 +170742260652,245,0 +170742260700,245,0 +170742260748,245,0 +170742260796,245,0 +170742260845,245,0 +170742260893,245,0 +170742260943,245,0 +170742260991,245,0 +170742261039,245,0 +170742261088,245,0 +170742261138,245,0 +170742261186,245,0 +170742261235,245,0 +170742261283,245,0 +170742261331,245,0 +170742261379,245,0 +170742261427,244,0 +170742261477,245,0 +170742261525,245,0 +170742261574,245,0 +170742261622,244,0 +170742261672,245,0 +170742261719,245,0 +170742261767,245,0 +170742261815,245,0 +170742261865,245,0 +170742261913,245,0 +170742261961,245,0 +170742262009,245,0 +170742262058,245,0 +170742262108,245,0 +170742262156,245,0 +170742262204,245,0 +170742262252,245,0 +170742262299,245,0 +170742262349,245,0 +170742262397,245,0 +170742262446,245,0 +170742262494,245,0 +170742262544,244,0 +170742262592,245,0 +170742262640,244,0 +170742262688,245,0 +170742262737,245,0 +170742262787,245,0 +170742262835,244,0 +170742262883,244,0 +170742262931,245,0 +170742262979,244,0 +170742263027,245,0 +170742263075,244,0 +170742263123,244,0 +170742263171,245,0 +170742263219,245,0 +170742263267,244,0 +170742263315,245,0 +170742263363,245,0 +170742263411,245,0 +170742263459,245,0 +170742263506,245,0 +170742263554,245,0 +170742263602,245,0 +170742263650,245,0 +170742263698,245,0 +170742263746,245,0 +170742263794,245,0 +170742263842,245,0 +170742263890,245,0 +170742263938,245,0 +170742263986,245,0 +170742264036,245,0 +170742264084,245,0 +170742264133,245,0 +170742264181,245,0 +170742264231,245,0 +170742264279,245,0 +170742264326,245,0 +170742264374,245,0 +170742264424,245,0 +170742264474,245,0 +170742264523,245,0 +170742264573,245,0 +170742264621,245,0 +170742264668,245,0 +170742264718,245,0 +170742264766,245,0 +170742264814,245,0 +170742264863,245,0 +170742264911,245,0 +170742264959,244,0 +170742265007,245,0 +170742265055,245,0 +170742265105,245,0 +170742265152,245,0 +170742265200,245,0 +170742265248,245,0 +170742265296,244,0 +170742265346,245,0 +170742265395,245,0 +170742265445,245,0 +170742265495,245,0 +170742265543,245,0 +170742265590,245,0 +170742265638,245,0 +170742265686,245,0 +170742265736,245,0 +170742265785,245,0 +170742265833,245,0 +170742265881,245,0 +170742265929,245,0 +170742265979,245,0 +170742266027,245,0 +170742266076,245,0 +170742266124,245,0 +170742266172,245,0 +170742266222,245,0 +170742266270,245,0 +170742266318,245,0 +170742266367,245,0 +170742266417,245,0 +170742266465,245,0 +170742266513,245,0 +170742266562,245,0 +170742266610,245,0 +170742266660,245,0 +170742266708,245,0 +170742266755,245,0 +170742266803,245,0 +170742266851,245,0 +170742266899,245,0 +170742266949,245,0 +170742266997,244,0 +170742267045,245,0 +170742267093,245,0 +170742267141,245,0 +170742267189,244,0 +170742267238,245,0 +170742267288,245,0 +170742267336,245,0 +170742267384,244,0 +170742267432,245,0 +170742267481,245,0 +170742267529,245,0 +170742267577,245,0 +170742267627,244,0 +170742267675,245,0 +170742267723,245,0 +170742267771,244,0 +170742267819,245,0 +170742267868,245,0 +170742267916,245,0 +170742267964,245,0 +170742268012,245,0 +170742268060,245,0 +170742268109,245,0 +170742268159,245,0 +170742268209,245,0 +170742268258,245,0 +170742268306,245,0 +170742268354,245,0 +170742268404,245,0 +170742268453,245,0 +170742268503,245,0 +170742268550,245,0 +170742268598,245,0 +170742268646,244,0 +170742268694,245,0 +170742268742,245,0 +170742268790,245,0 +170742268838,245,0 +170742268886,245,0 +170742268933,245,0 +170742268981,245,0 +170742269029,245,0 +170742269077,245,0 +170742269127,245,0 +170742269175,245,0 +170742269223,245,0 +170742269271,245,0 +170742269319,245,0 +170742269367,245,0 +170742269415,245,0 +170742269463,245,0 +170742269512,245,0 +170742269560,245,0 +170742269608,245,0 +170742269657,245,0 +170742269705,245,0 +170742269755,245,0 +170742269803,244,0 +170742269852,245,0 +170742269900,245,0 +170742269950,244,0 +170742269998,245,0 +170742270047,245,0 +170742270095,245,0 +170742270143,244,0 +170742270191,244,0 +170742270241,244,0 +170742270289,244,0 +170742270338,245,0 +170742270388,245,0 +170742270436,245,0 +170742270484,245,0 +170742270533,245,0 +170742270581,245,0 +170742270631,245,0 +170742270680,244,0 +170742270728,245,0 +170742270778,245,0 +170742270827,245,0 +170742270875,245,0 +170742270923,245,0 +170742270973,244,0 +170742271021,245,0 +170742271069,245,0 +170742271117,244,0 +170742271165,245,0 +170742271213,245,0 +170742271261,245,0 +170742271309,245,0 +170742271357,244,0 +170742271405,244,0 +170742271454,245,0 +170742271502,245,0 +170742271552,245,0 +170742271600,245,0 +170742271648,245,0 +170742271697,245,0 +170742271747,245,0 +170742271795,245,0 +170742271844,245,0 +170742271892,245,0 +170742271942,245,0 +170742271990,245,0 +170742272039,245,0 +170742272087,244,0 +170742272135,245,0 +170742272183,245,0 +170742272231,245,0 +170742272279,245,0 +170742272329,245,0 +170742272377,245,0 +170742272425,245,0 +170742272473,245,0 +170742272521,245,0 +170742272569,244,0 +170742272618,245,0 +170742272666,245,0 +170742272714,245,0 +170742272763,245,0 +170742272813,245,0 +170742272861,245,0 +170742272910,245,0 +170742272960,245,0 +170742273008,245,0 +170742273056,246,0 +170742273104,245,0 +170742273153,245,0 +170742273201,245,0 +170742273249,245,0 +170742273297,245,0 +170742273345,245,0 +170742273395,245,0 +170742273443,245,0 +170742273491,245,0 +170742273540,245,0 +170742273588,245,0 +170742273636,245,0 +170742273686,245,0 +170742273734,245,0 +170742273783,245,0 +170742273831,244,0 +170742273881,245,0 +170742273929,245,0 +170742273978,245,0 +170742274026,245,0 +170742274074,245,0 +170742274123,245,0 +170742274173,245,0 +170742274222,245,0 +170742274272,245,0 +170742274322,245,0 +170742274370,245,0 +170742274418,245,0 +170742274465,245,0 +170742274513,245,0 +170742274561,245,0 +170742274609,244,0 +170742274657,245,0 +170742274705,245,0 +170742274753,245,0 +170742274801,244,0 +170742274849,245,0 +170742274896,245,0 +170742274944,245,0 +170742274992,245,0 +170742275040,245,0 +170742275088,244,0 +170742275136,244,0 +170742275184,245,0 +170742275232,244,0 +170742275280,245,0 +170742275328,245,0 +170742275375,245,0 +170742275423,245,0 +170742275471,245,0 +170742275519,245,0 +170742275567,245,0 +170742275617,245,0 +170742275665,245,0 +170742275714,245,0 +170742275762,245,0 +170742275810,244,0 +170742275858,245,0 +170742275908,245,0 +170742275956,245,0 +170742276005,245,0 +170742276053,245,0 +170742276101,245,0 +170742276149,245,0 +170742276197,245,0 +170742276245,245,0 +170742276294,245,0 +170742276342,245,0 +170742276390,245,0 +170742276440,245,0 +170742276489,245,0 +170742276537,245,0 +170742276585,245,0 +170742276633,244,0 +170742276682,245,0 +170742276730,245,0 +170742276778,245,0 +170742276826,245,0 +170742276874,245,0 +170742276922,245,0 +170742276970,245,0 +170742277020,244,0 +170742277067,245,0 +170742277117,245,0 +170742277165,244,0 +170742277215,245,0 +170742277263,244,0 +170742277312,245,0 +170742277362,245,0 +170742277411,245,0 +170742277459,244,0 +170742277507,245,0 +170742277555,245,0 +170742277603,245,0 +170742277651,245,0 +170742277699,245,0 +170742277747,245,0 +170742277795,245,0 +170742277845,245,0 +170742277893,245,0 +170742277942,244,0 +170742277990,245,0 +170742278040,245,0 +170742278088,245,0 +170742278137,245,0 +170742278187,244,0 +170742278235,245,0 +170742278283,245,0 +170742278331,245,0 +170742278379,245,0 +170742278428,245,0 +170742278478,245,0 +170742278526,245,0 +170742278575,245,0 +170742278625,245,0 +170742278673,245,0 +170742278722,245,0 +170742278770,245,0 +170742278818,245,0 +170742278867,245,0 +170742278915,245,0 +170742278965,245,0 +170742279015,245,0 +170742279063,245,0 +170742279110,245,0 +170742279158,245,0 +170742279208,245,0 +170742279257,244,0 +170742279305,245,0 +170742279353,245,0 +170742279401,245,0 +170742279449,245,0 +170742279499,245,0 +170742279548,245,0 +170742279598,245,0 +170742279646,245,0 +170742279694,245,0 +170742279743,245,0 +170742279793,245,0 +170742279842,245,0 +170742279890,245,0 +170742279938,245,0 +170742279986,244,0 +170742280036,244,0 +170742280085,244,0 +170742280133,244,0 +170742280183,244,0 +170742280232,245,0 +170742280280,245,0 +170742280330,245,0 +170742280378,245,0 +170742280426,245,0 +170742280475,245,0 +170742280523,245,0 +170742280571,245,0 +170742280619,245,0 +170742280667,245,0 +170742280717,245,0 +170742280764,244,0 +170742280812,245,0 +170742280862,245,0 +170742280910,245,0 +170742280958,245,0 +170742281005,245,0 +170742281053,244,0 +170742281101,245,0 +170742281149,244,0 +170742281197,244,0 +170742281245,244,0 +170742281295,245,0 +170742281342,245,0 +170742281390,245,0 +170742281438,244,0 +170742281486,245,0 +170742281534,245,0 +170742281582,245,0 +170742281630,245,0 +170742281678,245,0 +170742281727,245,0 +170742281777,245,0 +170742281825,245,0 +170742281873,245,0 +170742281920,245,0 +170742281968,245,0 +170742282016,245,0 +170742282064,245,0 +170742282112,245,0 +170742282162,245,0 +170742282209,245,0 +170742282259,245,0 +170742282309,245,0 +170742282358,244,0 +170742282406,245,0 +170742282454,244,0 +170742282502,245,0 +170742282550,244,0 +170742282598,245,0 +170742282646,244,0 +170742282694,244,0 +170742282742,244,0 +170742282791,244,0 +170742282839,244,0 +170742282889,244,0 +170742282938,244,0 +170742282988,245,0 +170742283037,245,0 +170742283085,245,0 +170742283135,244,0 +170742283183,245,0 +170742283232,245,0 +170742283280,245,0 +170742283328,245,0 +170742283378,245,0 +170742283427,245,0 +170742283477,245,0 +170742283525,245,0 +170742283574,244,0 +170742283622,245,0 +170742283670,245,0 +170742283720,245,0 +170742283768,245,0 +170742283817,245,0 +170742283867,245,0 +170742283915,245,0 +170742283963,245,0 +170742284011,245,0 +170742284060,244,0 +170742284110,245,0 +170742284158,245,0 +170742284206,245,0 +170742284254,245,0 +170742284302,244,0 +170742284349,245,0 +170742284397,244,0 +170742284445,245,0 +170742284493,245,0 +170742284543,245,0 +170742284591,245,0 +170742284640,245,0 +170742284688,244,0 +170742284738,245,0 +170742284786,245,0 +170742284835,244,0 +170742284883,245,0 +170742284931,244,0 +170742284979,245,0 +170742285027,244,0 +170742285077,245,0 +170742285125,245,0 +170742285174,245,0 +170742285222,245,0 +170742285272,245,0 +170742285320,245,0 +170742285369,245,0 +170742285417,245,0 +170742285465,245,0 +170742285515,245,0 +170742285563,245,0 +170742285611,245,0 +170742285659,245,0 +170742285708,244,0 +170742285756,245,0 +170742285804,244,0 +170742285853,244,0 +170742285903,245,0 +170742285951,245,0 +170742286001,245,0 +170742286050,245,0 +170742286100,245,0 +170742286148,245,0 +170742286196,245,0 +170742286244,244,0 +170742286292,245,0 +170742286341,245,0 +170742286389,245,0 +170742286437,245,0 +170742286485,245,0 +170742286534,245,0 +170742286582,245,0 +170742286632,245,0 +170742286680,245,0 +170742286729,245,0 +170742286777,245,0 +170742286825,245,0 +170742286873,244,0 +170742286923,244,0 +170742286972,245,0 +170742287020,244,0 +170742287068,245,0 +170742287118,244,0 +170742287167,245,0 +170742287215,245,0 +170742287263,245,0 +170742287313,245,0 +170742287361,244,0 +170742287410,245,0 +170742287458,245,0 +170742287506,245,0 +170742287554,245,0 +170742287602,245,0 +170742287650,245,0 +170742287698,244,0 +170742287747,245,0 +170742287795,244,0 +170742287843,245,0 +170742287891,245,0 +170742287940,245,0 +170742287988,245,0 +170742288036,245,0 +170742288084,245,0 +170742288132,245,0 +170742288180,244,0 +170742288228,244,0 +170742288275,245,0 +170742288323,245,0 +170742288371,245,0 +170742288419,245,0 +170742288467,245,0 +170742288515,244,0 +170742288563,245,0 +170742288613,245,0 +170742288661,245,0 +170742288709,245,0 +170742288757,245,0 +170742288805,245,0 +170742288854,245,0 +170742288902,245,0 +170742288950,244,0 +170742288998,245,0 +170742289046,245,0 +170742289094,245,0 +170742289142,244,0 +170742289189,245,0 +170742289237,245,0 +170742289285,245,0 +170742289333,245,0 +170742289381,245,0 +170742289430,245,0 +170742289478,245,0 +170742289526,245,0 +170742289574,245,0 +170742289622,245,0 +170742289670,245,0 +170742289718,245,0 +170742289767,245,0 +170742289817,245,0 +170742289864,245,0 +170742289912,245,0 +170742289960,245,0 +170742290008,244,0 +170742290056,245,0 +170742290105,244,0 +170742290153,245,0 +170742290203,244,0 +170742290251,245,0 +170742290300,244,0 +170742290350,245,0 +170742290399,245,0 +170742290447,245,0 +170742290495,245,0 +170742290545,244,0 +170742290593,245,0 +170742290641,244,0 +170742290690,245,0 +170742290740,245,0 +170742290789,245,0 +170742290839,245,0 +170742290888,244,0 +170742290936,245,0 +170742290984,245,0 +170742291032,245,0 +170742291080,244,0 +170742291128,245,0 +170742291176,244,0 +170742291226,245,0 +170742291274,245,0 +170742291322,245,0 +170742291370,245,0 +170742291418,245,0 +170742291466,244,0 +170742291514,244,0 +170742291563,245,0 +170742291611,244,0 +170742291661,245,0 +170742291709,244,0 +170742291756,245,0 +170742291804,244,0 +170742291852,244,0 +170742291900,244,0 +170742291950,245,0 +170742291998,244,0 +170742292046,244,0 +170742292094,244,0 +170742292142,244,0 +170742292190,245,0 +170742292238,245,0 +170742292286,245,0 +170742292334,245,0 +170742292383,245,0 +170742292431,245,0 +170742292481,244,0 +170742292529,245,0 +170742292578,244,0 +170742292626,245,0 +170742292674,245,0 +170742292724,244,0 +170742292773,245,0 +170742292821,245,0 +170742292871,245,0 +170742292919,244,0 +170742292967,245,0 +170742293016,245,0 +170742293064,245,0 +170742293112,244,0 +170742293160,245,0 +170742293208,245,0 +170742293258,245,0 +170742293306,244,0 +170742293354,244,0 +170742293403,245,0 +170742293451,244,0 +170742293499,245,0 +170742293548,244,0 +170742293598,245,0 +170742293648,244,0 +170742293696,244,0 +170742293745,245,0 +170742293794,245,0 +170742293842,245,0 +170742293892,245,0 +170742293942,244,0 +170742293990,245,0 +170742294038,244,0 +170742294086,245,0 +170742294135,244,0 +170742294183,245,0 +170742294231,245,0 +170742294279,245,0 +170742294327,244,0 +170742294375,245,0 +170742294423,244,0 +170742294473,245,0 +170742294522,244,0 +170742294570,245,0 +170742294618,245,0 +170742294666,244,0 +170742294715,245,0 +170742294763,245,0 +170742294811,245,0 +170742294859,245,0 +170742294907,245,0 +170742294955,245,0 +170742295005,245,0 +170742295053,244,0 +170742295101,245,0 +170742295149,245,0 +170742295197,244,0 +170742295245,244,0 +170742295293,245,0 +170742295341,245,0 +170742295390,245,0 +170742295438,245,0 +170742295486,245,0 +170742295535,244,0 +170742295583,245,0 +170742295633,244,0 +170742295681,245,0 +170742295729,244,0 +170742295777,245,0 +170742295826,245,0 +170742295874,245,0 +170742295922,244,0 +170742295970,245,0 +170742296018,245,0 +170742296066,245,0 +170742296116,245,0 +170742296164,245,0 +170742296212,245,0 +170742296260,245,0 +170742296308,245,0 +170742296356,245,0 +170742296404,244,0 +170742296452,245,0 +170742296500,245,0 +170742296548,245,0 +170742296595,245,0 +170742296643,245,0 +170742296691,245,0 +170742296741,245,0 +170742296790,245,0 +170742296838,245,0 +170742296886,245,0 +170742296934,245,0 +170742296982,245,0 +170742297030,245,0 +170742297078,245,0 +170742297126,245,0 +170742297174,245,0 +170742297224,245,0 +170742297272,245,0 +170742297320,245,0 +170742297368,245,0 +170742297417,245,0 +170742297465,245,0 +170742297514,245,0 +170742297562,245,0 +170742297612,245,0 +170742297662,244,0 +170742297710,245,0 +170742297758,245,0 +170742297806,244,0 +170742297854,245,0 +170742297902,245,0 +170742297950,245,0 +170742297998,245,0 +170742298047,245,0 +170742298095,245,0 +170742298145,245,0 +170742298193,245,0 +170742298240,245,0 +170742298288,245,0 +170742298336,245,0 +170742298384,245,0 +170742298432,245,0 +170742298482,244,0 +170742298530,245,0 +170742298579,245,0 +170742298627,245,0 +170742298675,244,0 +170742298725,245,0 +170742298773,245,0 +170742298822,244,0 +170742298870,244,0 +170742298918,244,0 +170742298968,245,0 +170742299017,244,0 +170742299065,244,0 +170742299113,244,0 +170742299161,245,0 +170742299209,244,0 +170742299257,245,0 +170742299305,244,0 +170742299353,245,0 +170742299401,244,0 +170742299449,245,0 +170742299499,245,0 +170742299547,245,0 +170742299594,245,0 +170742299644,245,0 +170742299694,245,0 +170742299743,245,0 +170742299793,244,0 +170742299842,245,0 +170742299892,245,0 +170742299940,245,0 +170742299989,244,0 +170742300039,244,0 +170742300087,245,0 +170742300135,244,0 +170742300183,245,0 +170742300231,244,0 +170742300279,245,0 +170742300327,245,0 +170742300375,245,0 +170742300424,245,0 +170742300472,245,0 +170742300520,245,0 +170742300570,245,0 +170742300618,244,0 +170742300667,244,0 +170742300717,245,0 +170742300766,245,0 +170742300816,244,0 +170742300864,244,0 +170742300913,244,0 +170742300961,245,0 +170742301009,244,0 +170742301057,245,0 +170742301105,244,0 +170742301153,244,0 +170742301203,245,0 +170742301252,244,0 +170742301300,244,0 +170742301348,245,0 +170742301396,245,0 +170742301444,245,0 +170742301491,244,0 +170742301539,245,0 +170742301587,245,0 +170742301635,245,0 +170742301683,245,0 +170742301731,245,0 +170742301779,244,0 +170742301827,245,0 +170742301877,245,0 +170742301925,245,0 +170742301973,244,0 +170742302022,245,0 +170742302070,245,0 +170742302120,245,0 +170742302168,245,0 +170742302216,244,0 +170742302264,245,0 +170742302312,245,0 +170742302361,245,0 +170742302409,245,0 +170742302457,245,0 +170742302505,245,0 +170742302555,245,0 +170742302603,245,0 +170742302651,245,0 +170742302698,244,0 +170742302746,245,0 +170742302794,244,0 +170742302844,244,0 +170742302894,245,0 +170742302942,244,0 +170742302990,245,0 +170742303039,245,0 +170742303087,245,0 +170742303137,245,0 +170742303185,244,0 +170742303233,244,0 +170742303280,244,0 +170742303328,245,0 +170742303376,244,0 +170742303424,244,0 +170742303474,244,0 +170742303522,245,0 +170742303570,245,0 +170742303619,244,0 +170742303667,244,0 +170742303715,245,0 +170742303765,244,0 +170742303813,245,0 +170742303861,244,0 +170742303909,245,0 +170742303957,244,0 +170742304005,244,0 +170742304053,244,0 +170742304102,245,0 +170742304150,244,0 +170742304198,245,0 +170742304246,244,0 +170742304294,245,0 +170742304341,244,0 +170742304389,244,0 +170742304437,244,0 +170742304485,245,0 +170742304533,244,0 +170742304581,245,0 +170742304629,244,0 +170742304677,245,0 +170742304725,245,0 +170742304772,245,0 +170742304820,244,0 +170742304868,245,0 +170742304916,245,0 +170742304964,245,0 +170742305013,245,0 +170742305061,245,0 +170742305111,245,0 +170742305160,245,0 +170742305208,245,0 +170742305258,244,0 +170742305305,245,0 +170742305353,245,0 +170742305401,244,0 +170742305449,244,0 +170742305497,244,0 +170742305545,244,0 +170742305594,245,0 +170742305642,245,0 +170742305692,244,0 +170742305741,245,0 +170742305791,245,0 +170742305839,244,0 +170742305887,245,0 +170742305936,244,0 +170742305984,245,0 +170742306032,244,0 +170742306082,244,0 +170742306130,245,0 +170742306178,245,0 +170742306227,245,0 +170742306275,245,0 +170742306325,245,0 +170742306373,245,0 +170742306422,245,0 +170742306472,245,0 +170742306521,245,0 +170742306571,244,0 +170742306619,244,0 +170742306668,245,0 +170742306716,244,0 +170742306766,245,0 +170742306815,244,0 +170742306863,244,0 +170742306911,245,0 +170742306961,244,0 +170742307009,244,0 +170742307057,244,0 +170742307105,245,0 +170742307153,244,0 +170742307201,244,0 +170742307249,245,0 +170742307297,244,0 +170742307346,245,0 +170742307396,244,0 +170742307444,245,0 +170742307492,245,0 +170742307539,245,0 +170742307587,244,0 +170742307635,244,0 +170742307683,245,0 +170742307731,244,0 +170742307779,244,0 +170742307827,245,0 +170742307875,245,0 +170742307922,244,0 +170742307972,244,0 +170742308020,245,0 +170742308069,244,0 +170742308117,245,0 +170742308165,244,0 +170742308213,244,0 +170742308261,245,0 +170742308309,245,0 +170742308357,244,0 +170742308405,245,0 +170742308454,244,0 +170742308504,245,0 +170742308552,244,0 +170742308601,245,0 +170742308649,245,0 +170742308697,244,0 +170742308745,244,0 +170742308793,245,0 +170742308841,245,0 +170742308891,245,0 +170742308939,245,0 +170742308988,245,0 +170742309036,245,0 +170742309086,244,0 +170742309134,245,0 +170742309183,244,0 +170742309231,244,0 +170742309279,245,0 +170742309329,245,0 +170742309378,245,0 +170742309426,245,0 +170742309475,245,0 +170742309523,245,0 +170742309571,244,0 +170742309619,244,0 +170742309667,244,0 +170742309715,244,0 +170742309763,244,0 +170742309813,245,0 +170742309862,244,0 +170742309910,245,0 +170742309958,245,0 +170742310008,244,0 +170742310056,245,0 +170742310105,244,0 +170742310153,244,0 +170742310201,245,0 +170742310249,244,0 +170742310297,245,0 +170742310345,244,0 +170742310394,245,0 +170742310444,244,0 +170742310493,244,0 +170742310541,245,0 +170742310589,245,0 +170742310639,244,0 +170742310687,245,0 +170742310735,245,0 +170742310783,245,0 +170742310831,245,0 +170742310879,245,0 +170742310927,244,0 +170742310975,245,0 +170742311023,244,0 +170742311072,244,0 +170742311120,245,0 +170742311168,244,0 +170742311218,245,0 +170742311267,244,0 +170742311315,245,0 +170742311365,244,0 +170742311414,245,0 +170742311464,245,0 +170742311512,244,0 +170742311561,245,0 +170742311609,245,0 +170742311657,244,0 +170742311707,245,0 +170742311755,245,0 +170742311803,245,0 +170742311851,245,0 +170742311900,245,0 +170742311948,245,0 +170742311998,245,0 +170742312047,245,0 +170742312097,244,0 +170742312145,245,0 +170742312194,245,0 +170742312242,245,0 +170742312290,244,0 +170742312338,244,0 +170742312386,244,0 +170742312434,244,0 +170742312482,245,0 +170742312529,244,0 +170742312579,244,0 +170742312627,245,0 +170742312675,244,0 +170742312723,245,0 +170742312771,244,0 +170742312819,245,0 +170742312867,244,0 +170742312915,245,0 +170742312962,244,0 +170742313012,245,0 +170742313060,245,0 +170742313110,245,0 +170742313157,245,0 +170742313205,245,0 +170742313255,244,0 +170742313304,245,0 +170742313352,245,0 +170742313402,245,0 +170742313452,245,0 +170742313500,245,0 +170742313548,245,0 +170742313595,245,0 +170742313643,244,0 +170742313691,245,0 +170742313739,244,0 +170742313787,245,0 +170742313835,244,0 +170742313885,244,0 +170742313934,245,0 +170742313982,244,0 +170742314032,244,0 +170742314080,244,0 +170742314129,244,0 +170742314177,244,0 +170742314225,245,0 +170742314275,245,0 +170742314323,245,0 +170742314371,245,0 +170742314419,245,0 +170742314468,245,0 +170742314516,244,0 +170742314564,245,0 +170742314612,245,0 +170742314660,245,0 +170742314710,244,0 +170742314759,245,0 +170742314807,244,0 +170742314855,245,0 +170742314905,244,0 +170742314953,245,0 +170742315001,244,0 +170742315049,245,0 +170742315097,245,0 +170742315145,245,0 +170742315193,244,0 +170742315241,244,0 +170742315290,245,0 +170742315340,245,0 +170742315388,245,0 +170742315436,244,0 +170742315485,245,0 +170742315535,245,0 +170742315583,245,0 +170742315631,244,0 +170742315679,245,0 +170742315727,245,0 +170742315776,244,0 +170742315826,245,0 +170742315874,244,0 +170742315923,244,0 +170742315971,245,0 +170742316019,244,0 +170742316069,245,0 +170742316117,245,0 +170742316165,245,0 +170742316213,244,0 +170742316262,245,0 +170742316310,245,0 +170742316358,245,0 +170742316406,245,0 +170742316454,245,0 +170742316503,244,0 +170742316551,244,0 +170742316601,244,0 +170742316649,244,0 +170742316697,245,0 +170742316745,244,0 +170742316794,244,0 +170742316842,244,0 +170742316890,245,0 +170742316938,244,0 +170742316986,244,0 +170742317034,244,0 +170742317082,245,0 +170742317130,244,0 +170742317178,245,0 +170742317226,244,0 +170742317274,244,0 +170742317322,244,0 +170742317370,244,0 +170742317418,244,0 +170742317466,245,0 +170742317515,244,0 +170742317563,245,0 +170742317613,244,0 +170742317660,245,0 +170742317710,245,0 +170742317759,245,0 +170742317809,245,0 +170742317857,244,0 +170742317905,245,0 +170742317953,244,0 +170742318001,244,0 +170742318049,244,0 +170742318097,244,0 +170742318145,244,0 +170742318193,244,0 +170742318241,245,0 +170742318289,244,0 +170742318337,245,0 +170742318385,245,0 +170742318434,245,0 +170742318482,244,0 +170742318532,244,0 +170742318580,244,0 +170742318628,244,0 +170742318677,245,0 +170742318727,245,0 +170742318776,244,0 +170742318824,245,0 +170742318872,244,0 +170742318920,245,0 +170742318970,245,0 +170742319017,245,0 +170742319067,245,0 +170742319115,245,0 +170742319165,245,0 +170742319213,244,0 +170742319262,245,0 +170742319312,244,0 +170742319361,244,0 +170742319411,245,0 +170742319459,245,0 +170742319508,244,0 +170742319558,244,0 +170742319606,244,0 +170742319654,245,0 +170742319702,244,0 +170742319751,245,0 +170742319799,244,0 +170742319849,244,0 +170742319896,244,0 +170742319944,245,0 +170742319992,245,0 +170742320042,245,0 +170742320090,245,0 +170742320138,244,0 +170742320186,245,0 +170742320235,245,0 +170742320283,245,0 +170742320331,244,0 +170742320381,245,0 +170742320430,245,0 +170742320478,245,0 +170742320526,244,0 +170742320574,245,0 +170742320622,244,0 +170742320670,245,0 +170742320718,244,0 +170742320767,244,0 +170742320815,244,0 +170742320863,244,0 +170742320911,245,0 +170742320959,245,0 +170742321007,244,0 +170742321055,245,0 +170742321102,245,0 +170742321150,244,0 +170742321198,245,0 +170742321246,244,0 +170742321294,244,0 +170742321342,245,0 +170742321390,244,0 +170742321438,244,0 +170742321487,245,0 +170742321537,245,0 +170742321586,245,0 +170742321636,244,0 +170742321684,245,0 +170742321733,245,0 +170742321783,245,0 +170742321831,244,0 +170742321880,245,0 +170742321928,245,0 +170742321977,244,0 +170742322027,245,0 +170742322076,245,0 +170742322124,245,0 +170742322172,245,0 +170742322220,245,0 +170742322269,245,0 +170742322317,245,0 +170742322365,245,0 +170742322413,244,0 +170742322461,244,0 +170742322509,245,0 +170742322557,244,0 +170742322605,244,0 +170742322652,245,0 +170742322700,244,0 +170742322750,245,0 +170742322798,245,0 +170742322846,244,0 +170742322895,245,0 +170742322943,244,0 +170742322991,245,0 +170742323040,245,0 +170742323088,245,0 +170742323136,244,0 +170742323184,245,0 +170742323232,245,0 +170742323280,245,0 +170742323328,244,0 +170742323376,244,0 +170742323424,245,0 +170742323471,245,0 +170742323521,245,0 +170742323571,244,0 +170742323618,245,0 +170742323666,244,0 +170742323716,245,0 +170742323764,245,0 +170742323812,244,0 +170742323862,245,0 +170742323910,245,0 +170742323959,245,0 +170742324007,244,0 +170742324055,245,0 +170742324103,244,0 +170742324152,245,0 +170742324202,244,0 +170742324252,245,0 +170742324301,245,0 +170742324351,244,0 +170742324400,245,0 +170742324449,245,0 +170742324499,245,0 +170742324547,245,0 +170742324596,245,0 +170742324646,244,0 +170742324695,245,0 +170742324743,244,0 +170742324791,245,0 +170742324841,244,0 +170742324889,244,0 +170742324936,245,0 +170742324984,245,0 +170742325032,244,0 +170742325080,244,0 +170742325128,244,0 +170742325176,244,0 +170742325224,245,0 +170742325273,244,0 +170742325321,245,0 +170742325369,244,0 +170742325417,245,0 +170742325465,245,0 +170742325513,244,0 +170742325562,245,0 +170742325610,244,0 +170742325660,245,0 +170742325707,245,0 +170742325755,244,0 +170742325803,245,0 +170742325851,244,0 +170742325899,244,0 +170742325947,245,0 +170742325995,245,0 +170742326044,244,0 +170742326092,244,0 +170742326140,244,0 +170742326188,245,0 +170742326236,244,0 +170742326284,245,0 +170742326332,245,0 +170742326380,245,0 +170742326428,244,0 +170742326475,244,0 +170742326523,245,0 +170742326571,245,0 +170742326619,245,0 +170742326667,244,0 +170742326717,245,0 +170742326766,245,0 +170742326816,244,0 +170742326864,245,0 +170742326911,245,0 +170742326959,245,0 +170742327009,244,0 +170742327059,244,0 +170742327107,245,0 +170742327154,244,0 +170742327202,244,0 +170742327250,245,0 +170742327298,244,0 +170742327346,245,0 +170742327394,244,0 +170742327443,245,0 +170742327491,244,0 +170742327539,244,0 +170742327587,245,0 +170742327635,244,0 +170742327684,244,0 +170742327732,245,0 +170742327780,244,0 +170742327828,244,0 +170742327876,245,0 +170742327924,244,0 +170742327972,245,0 +170742328020,245,0 +170742328069,244,0 +170742328119,244,0 +170742328167,244,0 +170742328216,245,0 +170742328264,244,0 +170742328312,244,0 +170742328362,244,0 +170742328410,245,0 +170742328459,244,0 +170742328507,244,0 +170742328557,244,0 +170742328605,245,0 +170742328654,245,0 +170742328702,244,0 +170742328750,244,0 +170742328800,245,0 +170742328848,244,0 +170742328897,245,0 +170742328945,244,0 +170742328995,245,0 +170742329043,244,0 +170742329092,245,0 +170742329140,244,0 +170742329188,245,0 +170742329236,244,0 +170742329284,245,0 +170742329333,245,0 +170742329381,244,0 +170742329429,244,0 +170742329477,244,0 +170742329525,245,0 +170742329573,244,0 +170742329621,245,0 +170742329671,245,0 +170742329719,245,0 +170742329767,245,0 +170742329815,245,0 +170742329863,244,0 +170742329911,245,0 +170742329960,245,0 +170742330008,245,0 +170742330058,245,0 +170742330106,244,0 +170742330155,245,0 +170742330203,245,0 +170742330251,245,0 +170742330299,245,0 +170742330349,244,0 +170742330398,245,0 +170742330448,245,0 +170742330496,245,0 +170742330545,244,0 +170742330595,245,0 +170742330643,245,0 +170742330691,245,0 +170742330739,245,0 +170742330787,244,0 +170742330835,245,0 +170742330883,245,0 +170742330931,245,0 +170742330978,244,0 +170742331026,244,0 +170742331076,245,0 +170742331125,244,0 +170742331173,244,0 +170742331221,244,0 +170742331269,245,0 +170742331319,244,0 +170742331367,244,0 +170742331415,244,0 +170742331463,245,0 +170742331511,245,0 +170742331559,244,0 +170742331608,245,0 +170742331656,245,0 +170742331704,245,0 +170742331752,245,0 +170742331800,245,0 +170742331848,244,0 +170742331897,245,0 +170742331945,245,0 +170742331995,244,0 +170742332043,245,0 +170742332091,244,0 +170742332139,244,0 +170742332187,245,0 +170742332235,244,0 +170742332282,245,0 +170742332330,245,0 +170742332378,245,0 +170742332426,244,0 +170742332474,245,0 +170742332522,244,0 +170742332570,245,0 +170742332618,245,0 +170742332665,244,0 +170742332713,244,0 +170742332763,245,0 +170742332811,244,0 +170742332860,245,0 +170742332908,244,0 +170742332956,245,0 +170742333004,244,0 +170742333052,245,0 +170742333102,245,0 +170742333149,245,0 +170742333197,245,0 +170742333245,244,0 +170742333293,244,0 +170742333343,244,0 +170742333391,245,0 +170742333439,244,0 +170742333488,245,0 +170742333536,245,0 +170742333584,244,0 +170742333632,245,0 +170742333680,244,0 +170742333728,245,0 +170742333776,245,0 +170742333826,245,0 +170742333874,245,0 +170742333923,245,0 +170742333971,245,0 +170742334019,245,0 +170742334067,244,0 +170742334115,245,0 +170742334164,244,0 +170742334212,245,0 +170742334262,244,0 +170742334310,245,0 +170742334358,245,0 +170742334406,245,0 +170742334454,245,0 +170742334503,244,0 +170742334551,245,0 +170742334599,244,0 +170742334647,245,0 +170742334696,244,0 +170742334746,244,0 +170742334794,244,0 +170742334842,245,0 +170742334890,245,0 +170742334938,245,0 +170742334986,245,0 +170742335034,245,0 +170742335082,244,0 +170742335131,244,0 +170742335179,245,0 +170742335227,244,0 +170742335277,245,0 +170742335325,244,0 +170742335373,245,0 +170742335422,244,0 +170742335470,245,0 +170742335518,244,0 +170742335568,245,0 +170742335616,244,0 +170742335665,245,0 +170742335713,244,0 +170742335762,244,0 +170742335810,245,0 +170742335860,244,0 +170742335908,245,0 +170742335956,244,0 +170742336003,244,0 +170742336051,245,0 +170742336099,245,0 +170742336149,245,0 +170742336197,244,0 +170742336245,245,0 +170742336293,244,0 +170742336342,245,0 +170742336392,245,0 +170742336440,245,0 +170742336488,245,0 +170742336536,245,0 +170742336585,244,0 +170742336633,245,0 +170742336681,245,0 +170742336729,244,0 +170742336777,245,0 +170742336825,244,0 +170742336873,244,0 +170742336923,244,0 +170742336971,245,0 +170742337019,244,0 +170742337067,245,0 +170742337115,244,0 +170742337164,245,0 +170742337214,244,0 +170742337263,245,0 +170742337311,244,0 +170742337359,245,0 +170742337407,244,0 +170742337455,245,0 +170742337504,244,0 +170742337554,244,0 +170742337602,245,0 +170742337650,244,0 +170742337698,245,0 +170742337746,244,0 +170742337793,245,0 +170742337841,245,0 +170742337891,244,0 +170742337939,245,0 +170742337987,244,0 +170742338035,245,0 +170742338084,244,0 +170742338132,245,0 +170742338180,245,0 +170742338230,245,0 +170742338278,245,0 +170742338326,245,0 +170742338374,244,0 +170742338423,244,0 +170742338473,245,0 +170742338521,244,0 +170742338570,244,0 +170742338620,245,0 +170742338668,245,0 +170742338716,245,0 +170742338764,244,0 +170742338812,245,0 +170742338861,244,0 +170742338909,245,0 +170742338957,244,0 +170742339005,245,0 +170742339053,245,0 +170742339101,245,0 +170742339149,244,0 +170742339196,245,0 +170742339244,244,0 +170742339294,245,0 +170742339342,245,0 +170742339390,244,0 +170742339438,245,0 +170742339486,244,0 +170742339535,245,0 +170742339583,245,0 +170742339631,244,0 +170742339681,244,0 +170742339729,244,0 +170742339778,245,0 +170742339828,245,0 +170742339877,244,0 +170742339925,245,0 +170742339973,244,0 +170742340021,245,0 +170742340069,245,0 +170742340117,245,0 +170742340165,244,0 +170742340212,245,0 +170742340262,245,0 +170742340310,245,0 +170742340358,245,0 +170742340406,244,0 +170742340453,245,0 +170742340501,244,0 +170742340551,245,0 +170742340599,245,0 +170742340647,245,0 +170742340694,244,0 +170742340742,245,0 +170742340790,244,0 +170742340838,245,0 +170742340888,245,0 +170742340937,245,0 +170742340985,244,0 +170742341033,244,0 +170742341081,245,0 +170742341129,244,0 +170742341177,245,0 +170742341225,244,0 +170742341275,244,0 +170742341323,244,0 +170742341371,244,0 +170742341419,245,0 +170742341466,244,0 +170742341516,245,0 +170742341564,244,0 +170742341613,244,0 +170742341661,245,0 +170742341711,244,0 +170742341761,244,0 +170742341810,245,0 +170742341858,245,0 +170742341906,244,0 +170742341954,245,0 +170742342003,244,0 +170742342051,245,0 +170742342099,244,0 +170742342147,244,0 +170742342195,244,0 +170742342243,244,0 +170742342290,245,0 +170742342340,245,0 +170742342388,245,0 +170742342436,245,0 +170742342485,245,0 +170742342533,245,0 +170742342581,245,0 +170742342629,245,0 +170742342677,244,0 +170742342725,245,0 +170742342774,244,0 +170742342822,245,0 +170742342870,244,0 +170742342918,244,0 +170742342966,244,0 +170742343015,245,0 +170742343065,244,0 +170742343112,245,0 +170742343160,244,0 +170742343210,244,0 +170742343259,244,0 +170742343309,244,0 +170742343356,244,0 +170742343404,245,0 +170742343452,245,0 +170742343502,245,0 +170742343550,244,0 +170742343598,245,0 +170742343645,245,0 +170742343693,244,0 +170742343741,244,0 +170742343789,245,0 +170742343837,244,0 +170742343885,244,0 +170742343935,244,0 +170742343982,245,0 +170742344030,244,0 +170742344078,245,0 +170742344126,244,0 +170742344176,245,0 +170742344224,244,0 +170742344272,245,0 +170742344321,244,0 +170742344369,245,0 +170742344417,245,0 +170742344465,245,0 +170742344513,245,0 +170742344561,244,0 +170742344609,245,0 +170742344657,244,0 +170742344705,244,0 +170742344753,245,0 +170742344801,245,0 +170742344849,245,0 +170742344898,244,0 +170742344946,244,0 +170742344994,244,0 +170742345042,244,0 +170742345090,245,0 +170742345138,244,0 +170742345186,245,0 +170742345236,244,0 +170742345283,245,0 +170742345333,245,0 +170742345381,244,0 +170742345429,245,0 +170742345477,245,0 +170742345525,245,0 +170742345573,244,0 +170742345620,244,0 +170742345668,244,0 +170742345716,245,0 +170742345764,245,0 +170742345812,244,0 +170742345860,245,0 +170742345908,245,0 +170742345956,245,0 +170742346004,245,0 +170742346052,244,0 +170742346100,245,0 +170742346149,245,0 +170742346197,245,0 +170742346245,245,0 +170742346293,245,0 +170742346341,245,0 +170742346389,245,0 +170742346439,245,0 +170742346487,245,0 +170742346535,245,0 +170742346584,244,0 +170742346633,245,0 +170742346683,244,0 +170742346731,244,0 +170742346780,245,0 +170742346828,244,0 +170742346876,245,0 +170742346924,244,0 +170742346972,245,0 +170742347022,244,0 +170742347070,244,0 +170742347119,244,0 +170742347167,245,0 +170742347217,245,0 +170742347265,245,0 +170742347313,244,0 +170742347361,245,0 +170742347410,245,0 +170742347458,245,0 +170742347506,244,0 +170742347554,244,0 +170742347602,245,0 +170742347652,245,0 +170742347700,245,0 +170742347748,244,0 +170742347796,245,0 +170742347845,244,0 +170742347893,245,0 +170742347941,245,0 +170742347989,245,0 +170742348037,244,0 +170742348084,244,0 +170742348134,245,0 +170742348182,244,0 +170742348230,244,0 +170742348279,244,0 +170742348327,244,0 +170742348375,244,0 +170742348425,245,0 +170742348474,244,0 +170742348522,245,0 +170742348572,245,0 +170742348620,244,0 +170742348669,245,0 +170742348717,244,0 +170742348765,245,0 +170742348815,244,0 +170742348864,245,0 +170742348912,244,0 +170742348960,245,0 +170742349010,245,0 +170742349059,244,0 +170742349107,244,0 +170742349155,245,0 +170742349205,244,0 +170742349253,245,0 +170742349300,244,0 +170742349348,245,0 +170742349398,245,0 +170742349447,245,0 +170742349497,245,0 +170742349546,244,0 +170742349596,244,0 +170742349644,244,0 +170742349694,245,0 +170742349743,244,0 +170742349791,244,0 +170742349840,244,0 +170742349888,245,0 +170742349936,244,0 +170742349984,245,0 +170742350034,245,0 +170742350082,244,0 +170742350130,244,0 +170742350178,245,0 +170742350226,244,0 +170742350274,245,0 +170742350322,244,0 +170742350371,245,0 +170742350419,244,0 +170742350467,245,0 +170742350515,244,0 +170742350565,244,0 +170742350613,245,0 +170742350662,244,0 +170742350710,244,0 +170742350760,244,0 +170742350809,244,0 +170742350859,244,0 +170742350907,244,0 +170742350955,244,0 +170742351003,244,0 +170742351052,244,0 +170742351100,245,0 +170742351148,245,0 +170742351196,244,0 +170742351244,244,0 +170742351292,244,0 +170742351340,245,0 +170742351387,245,0 +170742351435,245,0 +170742351483,244,0 +170742351531,244,0 +170742351579,244,0 +170742351627,244,0 +170742351675,244,0 +170742351724,245,0 +170742351772,245,0 +170742351820,245,0 +170742351870,244,0 +170742351917,245,0 +170742351965,244,0 +170742352013,245,0 +170742352063,245,0 +170742352112,244,0 +170742352160,244,0 +170742352209,245,0 +170742352257,244,0 +170742352305,244,0 +170742352353,244,0 +170742352401,244,0 +170742352450,244,0 +170742352500,244,0 +170742352548,244,0 +170742352596,244,0 +170742352644,244,0 +170742352692,244,0 +170742352739,244,0 +170742352787,245,0 +170742352837,244,0 +170742352885,244,0 +170742352933,245,0 +170742352980,244,0 +170742353028,244,0 +170742353078,244,0 +170742353126,245,0 +170742353175,244,0 +170742353223,244,0 +170742353271,244,0 +170742353319,244,0 +170742353369,244,0 +170742353417,244,0 +170742353465,244,0 +170742353513,244,0 +170742353561,245,0 +170742353609,244,0 +170742353657,245,0 +170742353705,245,0 +170742353753,244,0 +170742353801,245,0 +170742353849,245,0 +170742353898,244,0 +170742353946,244,0 +170742353996,244,0 +170742354044,245,0 +170742354092,245,0 +170742354140,245,0 +170742354188,245,0 +170742354236,244,0 +170742354285,245,0 +170742354335,244,0 +170742354383,245,0 +170742354431,245,0 +170742354479,244,0 +170742354527,245,0 +170742354575,244,0 +170742354623,245,0 +170742354671,244,0 +170742354720,245,0 +170742354768,245,0 +170742354816,244,0 +170742354865,245,0 +170742354913,245,0 +170742354961,245,0 +170742355009,245,0 +170742355059,245,0 +170742355107,245,0 +170742355155,244,0 +170742355203,245,0 +170742355252,245,0 +170742355300,244,0 +170742355348,245,0 +170742355396,245,0 +170742355444,245,0 +170742355492,244,0 +170742355540,245,0 +170742355590,245,0 +170742355638,244,0 +170742355688,245,0 +170742355736,244,0 +170742355784,244,0 +170742355832,245,0 +170742355880,245,0 +170742355928,244,0 +170742355975,245,0 +170742356025,244,0 +170742356073,245,0 +170742356122,244,0 +170742356172,245,0 +170742356221,244,0 +170742356269,245,0 +170742356317,245,0 +170742356365,245,0 +170742356415,245,0 +170742356463,244,0 +170742356511,244,0 +170742356559,244,0 +170742356608,245,0 +170742356656,245,0 +170742356704,245,0 +170742356752,245,0 +170742356800,245,0 +170742356850,245,0 +170742356898,245,0 +170742356946,244,0 +170742356994,245,0 +170742357042,244,0 +170742357090,245,0 +170742357138,244,0 +170742357185,245,0 +170742357233,244,0 +170742357281,244,0 +170742357329,245,0 +170742357377,244,0 +170742357425,245,0 +170742357473,244,0 +170742357521,244,0 +170742357569,245,0 +170742357616,244,0 +170742357664,244,0 +170742357712,245,0 +170742357760,244,0 +170742357808,245,0 +170742357856,245,0 +170742357904,245,0 +170742357952,244,0 +170742358000,245,0 +170742358048,245,0 +170742358096,245,0 +170742358144,245,0 +170742358194,244,0 +170742358242,244,0 +170742358290,244,0 +170742358339,245,0 +170742358387,245,0 +170742358437,245,0 +170742358485,245,0 +170742358533,245,0 +170742358581,245,0 +170742358630,244,0 +170742358678,245,0 +170742358726,244,0 +170742358774,245,0 +170742358822,245,0 +170742358869,244,0 +170742358917,245,0 +170742358965,245,0 +170742359013,245,0 +170742359061,244,0 +170742359109,245,0 +170742359157,245,0 +170742359205,244,0 +170742359253,245,0 +170742359300,244,0 +170742359348,244,0 +170742359398,245,0 +170742359446,244,0 +170742359495,244,0 +170742359543,245,0 +170742359591,244,0 +170742359639,244,0 +170742359687,245,0 +170742359735,245,0 +170742359785,244,0 +170742359833,245,0 +170742359881,244,0 +170742359930,245,0 +170742359980,244,0 +170742360028,244,0 +170742360077,245,0 +170742360125,244,0 +170742360173,244,0 +170742360221,244,0 +170742360269,245,0 +170742360317,245,0 +170742360365,245,0 +170742360415,245,0 +170742360463,245,0 +170742360512,244,0 +170742360561,245,0 +170742360610,245,0 +170742360659,244,0 +170742360709,245,0 +170742360757,245,0 +170742360805,245,0 +170742360854,244,0 +170742360902,245,0 +170742360950,245,0 +170742361000,245,0 +170742361049,245,0 +170742361097,245,0 +170742361147,244,0 +170742361195,245,0 +170742361243,244,0 +170742361291,244,0 +170742361339,245,0 +170742361388,244,0 +170742361436,244,0 +170742361484,244,0 +170742361534,244,0 +170742361582,244,0 +170742361631,245,0 +170742361679,245,0 +170742361729,245,0 +170742361777,244,0 +170742361825,245,0 +170742361873,245,0 +170742361921,244,0 +170742361968,245,0 +170742362016,244,0 +170742362066,244,0 +170742362114,244,0 +170742362162,244,0 +170742362210,244,0 +170742362258,245,0 +170742362307,245,0 +170742362355,245,0 +170742362403,244,0 +170742362451,244,0 +170742362499,245,0 +170742362549,245,0 +170742362597,245,0 +170742362646,245,0 +170742362694,245,0 +170742362742,245,0 +170742362790,244,0 +170742362840,244,0 +170742362887,245,0 +170742362935,244,0 +170742362983,244,0 +170742363033,244,0 +170742363081,244,0 +170742363129,245,0 +170742363178,244,0 +170742363226,244,0 +170742363274,244,0 +170742363324,244,0 +170742363373,244,0 +170742363421,244,0 +170742363471,244,0 +170742363519,244,0 +170742363567,245,0 +170742363615,244,0 +170742363664,245,0 +170742363712,244,0 +170742363760,245,0 +170742363808,245,0 +170742363858,245,0 +170742363906,244,0 +170742363955,244,0 +170742364003,245,0 +170742364051,245,0 +170742364099,245,0 +170742364149,245,0 +170742364197,244,0 +170742364246,245,0 +170742364294,244,0 +170742364344,245,0 +170742364392,244,0 +170742364440,245,0 +170742364488,244,0 +170742364537,245,0 +170742364585,244,0 +170742364635,244,0 +170742364683,244,0 +170742364731,244,0 +170742364779,245,0 +170742364828,244,0 +170742364876,245,0 +170742364924,245,0 +170742364972,244,0 +170742365021,244,0 +170742365069,244,0 +170742365119,245,0 +170742365167,244,0 +170742365216,245,0 +170742365264,244,0 +170742365314,244,0 +170742365362,245,0 +170742365410,244,0 +170742365459,245,0 +170742365507,244,0 +170742365555,245,0 +170742365603,244,0 +170742365653,245,0 +170742365700,244,0 +170742365750,244,0 +170742365800,245,0 +170742365849,245,0 +170742365897,244,0 +170742365945,244,0 +170742365993,244,0 +170742366041,245,0 +170742366089,244,0 +170742366137,245,0 +170742366185,244,0 +170742366234,244,0 +170742366282,245,0 +170742366330,244,0 +170742366378,245,0 +170742366426,245,0 +170742366475,245,0 +170742366525,244,0 +170742366573,245,0 +170742366622,244,0 +170742366670,245,0 +170742366718,244,0 +170742366766,245,0 +170742366816,244,0 +170742366865,244,0 +170742366915,245,0 +170742366963,244,0 +170742367012,244,0 +170742367060,244,0 +170742367108,245,0 +170742367156,245,0 +170742367204,245,0 +170742367252,245,0 +170742367300,244,0 +170742367349,245,0 +170742367397,245,0 +170742367445,245,0 +170742367495,244,0 +170742367543,244,0 +170742367591,244,0 +170742367640,245,0 +170742367690,245,0 +170742367738,245,0 +170742367785,244,0 +170742367835,244,0 +170742367883,244,0 +170742367931,245,0 +170742367980,244,0 +170742368028,245,0 +170742368076,244,0 +170742368124,245,0 +170742368172,244,0 +170742368220,245,0 +170742368268,245,0 +170742368317,244,0 +170742368365,244,0 +170742368413,244,0 +170742368461,245,0 +170742368509,244,0 +170742368557,244,0 +170742368605,245,0 +170742368653,245,0 +170742368701,245,0 +170742368750,245,0 +170742368798,245,0 +170742368846,245,0 +170742368896,244,0 +170742368945,244,0 +170742368995,245,0 +170742369043,245,0 +170742369091,245,0 +170742369139,244,0 +170742369187,244,0 +170742369235,245,0 +170742369284,245,0 +170742369334,245,0 +170742369382,244,0 +170742369430,245,0 +170742369479,245,0 +170742369527,245,0 +170742369575,244,0 +170742369623,244,0 +170742369671,245,0 +170742369720,244,0 +170742369768,245,0 +170742369818,245,0 +170742369867,245,0 +170742369915,244,0 +170742369963,245,0 +170742370013,244,0 +170742370061,245,0 +170742370110,245,0 +170742370158,245,0 +170742370208,245,0 +170742370257,244,0 +170742370305,244,0 +170742370353,244,0 +170742370401,245,0 +170742370449,244,0 +170742370497,245,0 +170742370545,244,0 +170742370593,245,0 +170742370641,244,0 +170742370689,244,0 +170742370737,245,0 +170742370786,244,0 +170742370836,244,0 +170742370884,244,0 +170742370932,245,0 +170742370980,244,0 +170742371028,244,0 +170742371077,245,0 +170742371125,244,0 +170742371173,245,0 +170742371221,244,0 +170742371271,244,0 +170742371319,245,0 +170742371366,245,0 +170742371414,245,0 +170742371464,244,0 +170742371512,245,0 +170742371560,245,0 +170742371608,245,0 +170742371656,245,0 +170742371704,245,0 +170742371752,245,0 +170742371801,244,0 +170742371851,245,0 +170742371898,244,0 +170742371948,245,0 +170742371996,244,0 +170742372044,245,0 +170742372092,245,0 +170742372140,245,0 +170742372188,245,0 +170742372236,245,0 +170742372284,245,0 +170742372333,245,0 +170742372381,245,0 +170742372429,245,0 +170742372477,244,0 +170742372525,245,0 +170742372575,244,0 +170742372624,245,0 +170742372674,244,0 +170742372723,245,0 +170742372771,244,0 +170742372819,244,0 +170742372867,245,0 +170742372917,244,0 +170742372966,245,0 +170742373014,244,0 +170742373062,244,0 +170742373111,244,0 +170742373159,244,0 +170742373209,245,0 +170742373257,245,0 +170742373305,245,0 +170742373353,244,0 +170742373402,245,0 +170742373450,244,0 +170742373498,245,0 +170742373548,244,0 +170742373596,245,0 +170742373644,244,0 +170742373692,245,0 +170742373741,245,0 +170742373789,244,0 +170742373837,245,0 +170742373885,245,0 +170742373935,244,0 +170742373982,245,0 +170742374030,245,0 +170742374078,245,0 +170742374126,245,0 +170742374174,245,0 +170742374222,245,0 +170742374271,245,0 +170742374321,244,0 +170742374370,244,0 +170742374418,245,0 +170742374466,244,0 +170742374514,244,0 +170742374562,244,0 +170742374610,244,0 +170742374658,244,0 +170742374706,244,0 +170742374754,245,0 +170742374802,245,0 +170742374851,245,0 +170742374899,244,0 +170742374947,245,0 +170742374997,244,0 +170742375045,245,0 +170742375093,244,0 +170742375141,245,0 +170742375190,245,0 +170742375239,245,0 +170742375289,244,0 +170742375339,245,0 +170742375386,244,0 +170742375434,245,0 +170742375482,244,0 +170742375532,244,0 +170742375580,244,0 +170742375628,245,0 +170742375677,244,0 +170742375727,245,0 +170742375775,245,0 +170742375824,244,0 +170742375872,244,0 +170742375922,245,0 +170742375970,245,0 +170742376018,245,0 +170742376066,245,0 +170742376114,244,0 +170742376162,244,0 +170742376211,245,0 +170742376261,245,0 +170742376310,245,0 +170742376360,245,0 +170742376408,245,0 +170742376457,244,0 +170742376505,245,0 +170742376555,244,0 +170742376604,244,0 +170742376654,245,0 +170742376702,244,0 +170742376750,245,0 +170742376798,245,0 +170742376847,245,0 +170742376895,244,0 +170742376943,244,0 +170742376991,244,0 +170742377039,245,0 +170742377088,244,0 +170742377138,245,0 +170742377186,245,0 +170742377235,245,0 +170742377283,244,0 +170742377331,245,0 +170742377381,244,0 +170742377429,244,0 +170742377478,244,0 +170742377528,245,0 +170742377577,245,0 +170742377625,245,0 +170742377675,245,0 +170742377724,245,0 +170742377772,245,0 +170742377820,245,0 +170742377868,245,0 +170742377917,245,0 +170742377965,245,0 +170742378015,245,0 +170742378063,245,0 +170742378112,244,0 +170742378160,245,0 +170742378208,244,0 +170742378256,244,0 +170742378306,244,0 +170742378355,245,0 +170742378405,244,0 +170742378454,244,0 +170742378504,245,0 +170742378553,245,0 +170742378601,244,0 +170742378651,245,0 +170742378699,244,0 +170742378747,245,0 +170742378796,244,0 +170742378844,245,0 +170742378892,244,0 +170742378942,244,0 +170742378991,245,0 +170742379041,244,0 +170742379090,245,0 +170742379138,245,0 +170742379186,245,0 +170742379236,244,0 +170742379283,245,0 +170742379331,244,0 +170742379381,244,0 +170742379429,244,0 +170742379478,244,0 +170742379528,245,0 +170742379576,244,0 +170742379624,245,0 +170742379673,244,0 +170742379721,245,0 +170742379771,245,0 +170742379819,245,0 +170742379868,245,0 +170742379916,245,0 +170742379964,245,0 +170742380013,245,0 +170742380063,244,0 +170742380111,244,0 +170742380159,245,0 +170742380208,244,0 +170742380258,244,0 +170742380306,244,0 +170742380354,244,0 +170742380402,245,0 +170742380451,244,0 +170742380501,245,0 +170742380550,245,0 +170742380598,245,0 +170742380648,244,0 +170742380696,245,0 +170742380745,245,0 +170742380793,245,0 +170742380841,244,0 +170742380889,244,0 +170742380939,244,0 +170742380987,245,0 +170742381034,244,0 +170742381084,245,0 +170742381134,244,0 +170742381181,245,0 +170742381231,245,0 +170742381279,244,0 +170742381327,244,0 +170742381375,245,0 +170742381423,245,0 +170742381472,245,0 +170742381522,245,0 +170742381571,244,0 +170742381621,244,0 +170742381669,244,0 +170742381717,244,0 +170742381765,245,0 +170742381813,245,0 +170742381860,244,0 +170742381908,245,0 +170742381956,245,0 +170742382004,244,0 +170742382052,245,0 +170742382100,245,0 +170742382150,244,0 +170742382198,244,0 +170742382245,245,0 +170742382293,244,0 +170742382341,245,0 +170742382391,244,0 +170742382439,245,0 +170742382487,245,0 +170742382536,245,0 +170742382584,245,0 +170742382634,244,0 +170742382682,245,0 +170742382730,244,0 +170742382778,245,0 +170742382827,244,0 +170742382877,244,0 +170742382925,245,0 +170742382974,245,0 +170742383024,245,0 +170742383073,244,0 +170742383121,245,0 +170742383171,245,0 +170742383220,245,0 +170742383270,244,0 +170742383318,245,0 +170742383366,245,0 +170742383415,244,0 +170742383463,245,0 +170742383511,244,0 +170742383561,245,0 +170742383610,244,0 +170742383658,245,0 +170742383706,244,0 +170742383754,244,0 +170742383802,245,0 +170742383850,244,0 +170742383898,244,0 +170742383947,245,0 +170742383995,245,0 +170742384045,244,0 +170742384094,245,0 +170742384142,245,0 +170742384192,245,0 +170742384240,245,0 +170742384289,244,0 +170742384339,245,0 +170742384387,245,0 +170742384435,245,0 +170742384483,245,0 +170742384530,244,0 +170742384580,245,0 +170742384629,245,0 +170742384679,245,0 +170742384728,244,0 +170742384776,245,0 +170742384824,245,0 +170742384874,245,0 +170742384922,245,0 +170742384971,245,0 +170742385019,245,0 +170742385067,244,0 +170742385115,245,0 +170742385165,245,0 +170742385213,245,0 +170742385261,245,0 +170742385310,244,0 +170742385360,244,0 +170742385409,244,0 +170742385459,245,0 +170742385508,245,0 +170742385558,245,0 +170742385606,244,0 +170742385655,245,0 +170742385705,245,0 +170742385753,245,0 +170742385802,244,0 +170742385850,245,0 +170742385898,245,0 +170742385948,244,0 +170742385996,245,0 +170742386045,245,0 +170742386093,245,0 +170742386141,245,0 +170742386189,245,0 +170742386237,244,0 +170742386285,246,0 +170742386333,245,0 +170742386381,245,0 +170742386429,244,0 +170742386478,245,0 +170742386526,245,0 +170742386574,245,0 +170742386622,244,0 +170742386672,245,0 +170742386720,245,0 +170742386768,245,0 +170742386816,244,0 +170742386863,245,0 +170742386913,245,0 +170742386963,245,0 +170742387011,245,0 +170742387060,245,0 +170742387108,245,0 +170742387158,245,0 +170742387206,245,0 +170742387253,245,0 +170742387301,245,0 +170742387351,245,0 +170742387399,245,0 +170742387447,245,0 +170742387496,245,0 +170742387544,245,0 +170742387594,245,0 +170742387643,245,0 +170742387693,245,0 +170742387742,244,0 +170742387790,245,0 +170742387838,245,0 +170742387888,245,0 +170742387937,244,0 +170742387985,245,0 +170742388033,244,0 +170742388081,244,0 +170742388131,245,0 +170742388180,244,0 +170742388230,245,0 +170742388279,245,0 +170742388329,245,0 +170742388377,245,0 +170742388425,245,0 +170742388472,245,0 +170742388520,245,0 +170742388568,245,0 +170742388616,245,0 +170742388664,245,0 +170742388712,245,0 +170742388762,245,0 +170742388810,244,0 +170742388858,245,0 +170742388906,245,0 +170742388955,244,0 +170742389003,245,0 +170742389051,245,0 +170742389099,245,0 +170742389148,245,0 +170742389196,245,0 +170742389244,244,0 +170742389292,244,0 +170742389340,244,0 +170742389389,245,0 +170742389437,245,0 +170742389485,245,0 +170742389533,245,0 +170742389580,245,0 +170742389628,245,0 +170742389676,245,0 +170742389724,245,0 +170742389774,245,0 +170742389821,244,0 +170742389869,245,0 +170742389917,245,0 +170742389965,245,0 +170742390013,245,0 +170742390061,245,0 +170742390109,245,0 +170742390157,245,0 +170742390205,244,0 +170742390253,245,0 +170742390300,245,0 +170742390348,244,0 +170742390398,245,0 +170742390447,245,0 +170742390497,245,0 +170742390545,245,0 +170742390594,245,0 +170742390644,245,0 +170742390692,245,0 +170742390740,245,0 +170742390788,245,0 +170742390836,245,0 +170742390884,245,0 +170742390933,246,0 +170742390981,244,0 +170742391031,245,0 +170742391079,245,0 +170742391127,245,0 +170742391175,245,0 +170742391224,245,0 +170742391274,245,0 +170742391323,245,0 +170742391373,245,0 +170742391422,244,0 +170742391472,244,0 +170742391520,245,0 +170742391569,245,0 +170742391619,245,0 +170742391667,244,0 +170742391715,244,0 +170742391763,244,0 +170742391810,245,0 +170742391858,245,0 +170742391906,244,0 +170742391956,245,0 +170742392005,245,0 +170742392055,244,0 +170742392104,244,0 +170742392152,244,0 +170742392200,245,0 +170742392250,245,0 +170742392299,244,0 +170742392349,245,0 +170742392397,245,0 +170742392445,245,0 +170742392493,245,0 +170742392541,244,0 +170742392590,244,0 +170742392638,245,0 +170742392688,245,0 +170742392737,244,0 +170742392785,244,0 +170742392835,245,0 +170742392883,245,0 +170742392931,245,0 +170742392979,245,0 +170742393027,245,0 +170742393076,245,0 +170742393126,244,0 +170742393174,245,0 +170742393223,244,0 +170742393271,245,0 +170742393319,244,0 +170742393369,245,0 +170742393418,244,0 +170742393468,244,0 +170742393516,245,0 +170742393564,244,0 +170742393613,245,0 +170742393661,244,0 +170742393709,245,0 +170742393757,245,0 +170742393805,244,0 +170742393855,245,0 +170742393904,245,0 +170742393953,244,0 +170742394001,244,0 +170742394049,244,0 +170742394099,244,0 +170742394148,244,0 +170742394198,245,0 +170742394248,245,0 +170742394295,245,0 +170742394343,245,0 +170742394393,245,0 +170742394441,245,0 +170742394490,245,0 +170742394540,245,0 +170742394588,245,0 +170742394636,244,0 +170742394684,245,0 +170742394731,244,0 +170742394781,245,0 +170742394830,245,0 +170742394878,245,0 +170742394926,244,0 +170742394976,245,0 +170742395024,245,0 +170742395072,245,0 +170742395120,244,0 +170742395169,245,0 +170742395217,245,0 +170742395267,245,0 +170742395315,245,0 +170742395363,245,0 +170742395411,245,0 +170742395459,245,0 +170742395508,245,0 +170742395556,245,0 +170742395606,245,0 +170742395654,245,0 +170742395702,245,0 +170742395749,245,0 +170742395799,245,0 +170742395847,245,0 +170742395895,245,0 +170742395943,245,0 +170742395992,244,0 +170742396040,245,0 +170742396090,245,0 +170742396139,244,0 +170742396187,245,0 +170742396235,244,0 +170742396285,245,0 +170742396333,245,0 +170742396381,245,0 +170742396429,245,0 +170742396478,245,0 +170742396526,244,0 +170742396574,245,0 +170742396624,244,0 +170742396672,244,0 +170742396721,245,0 +170742396769,245,0 +170742396817,245,0 +170742396865,244,0 +170742396913,245,0 +170742396961,245,0 +170742397010,245,0 +170742397058,245,0 +170742397108,244,0 +170742397156,245,0 +170742397204,244,0 +170742397253,245,0 +170742397301,245,0 +170742397349,245,0 +170742397397,245,0 +170742397445,244,0 +170742397493,244,0 +170742397541,245,0 +170742397589,244,0 +170742397637,245,0 +170742397685,245,0 +170742397734,245,0 +170742397782,245,0 +170742397830,245,0 +170742397878,245,0 +170742397926,244,0 +170742397974,244,0 +170742398022,245,0 +170742398070,244,0 +170742398118,244,0 +170742398167,244,0 +170742398215,244,0 +170742398263,244,0 +170742398311,244,0 +170742398361,245,0 +170742398410,245,0 +170742398460,244,0 +170742398508,245,0 +170742398555,245,0 +170742398603,245,0 +170742398651,244,0 +170742398699,245,0 +170742398747,244,0 +170742398795,245,0 +170742398843,245,0 +170742398891,245,0 +170742398938,245,0 +170742398986,244,0 +170742399036,245,0 +170742399084,245,0 +170742399132,244,0 +170742399179,245,0 +170742399227,245,0 +170742399275,245,0 +170742399323,244,0 +170742399371,245,0 +170742399421,244,0 +170742399468,245,0 +170742399518,244,0 +170742399566,245,0 +170742399615,244,0 +170742399663,245,0 +170742399713,245,0 +170742399761,245,0 +170742399810,244,0 +170742399858,245,0 +170742399908,245,0 +170742399955,245,0 +170742400003,245,0 +170742400053,245,0 +170742400101,245,0 +170742400148,245,0 +170742400196,245,0 +170742400244,245,0 +170742400292,245,0 +170742400342,245,0 +170742400390,245,0 +170742400437,245,0 +170742400485,245,0 +170742400533,245,0 +170742400583,244,0 +170742400631,244,0 +170742400680,245,0 +170742400728,244,0 +170742400776,245,0 +170742400824,245,0 +170742400874,245,0 +170742400923,245,0 +170742400971,245,0 +170742401019,245,0 +170742401069,245,0 +170742401118,245,0 +170742401166,245,0 +170742401214,245,0 +170742401262,245,0 +170742401310,245,0 +170742401359,245,0 +170742401407,245,0 +170742401455,244,0 +170742401505,245,0 +170742401553,244,0 +170742401601,245,0 +170742401650,244,0 +170742401700,245,0 +170742401748,245,0 +170742401796,245,0 +170742401845,245,0 +170742401893,245,0 +170742401943,244,0 +170742401992,244,0 +170742402042,244,0 +170742402091,245,0 +170742402139,245,0 +170742402189,245,0 +170742402238,245,0 +170742402286,245,0 +170742402334,245,0 +170742402382,245,0 +170742402432,245,0 +170742402481,245,0 +170742402531,245,0 +170742402579,245,0 +170742402628,245,0 +170742402676,245,0 +170742402726,245,0 +170742402774,244,0 +170742402822,245,0 +170742402869,245,0 +170742402917,245,0 +170742402965,245,0 +170742403013,245,0 +170742403061,244,0 +170742403109,245,0 +170742403157,245,0 +170742403205,245,0 +170742403253,244,0 +170742403300,245,0 +170742403348,245,0 +170742403396,245,0 +170742403444,245,0 +170742403492,245,0 +170742403540,245,0 +170742403588,244,0 +170742403636,245,0 +170742403684,244,0 +170742403732,245,0 +170742403779,244,0 +170742403827,245,0 +170742403875,245,0 +170742403923,245,0 +170742403971,245,0 +170742404019,245,0 +170742404068,245,0 +170742404116,245,0 +170742404164,245,0 +170742404212,244,0 +170742404260,245,0 +170742404308,245,0 +170742404357,245,0 +170742404407,245,0 +170742404455,244,0 +170742404503,245,0 +170742404551,245,0 +170742404599,245,0 +170742404646,245,0 +170742404694,244,0 +170742404742,245,0 +170742404790,245,0 +170742404838,244,0 +170742404886,245,0 +170742404935,245,0 +170742404985,245,0 +170742405033,245,0 +170742405081,244,0 +170742405129,245,0 +170742405178,245,0 +170742405226,245,0 +170742405274,244,0 +170742405324,245,0 +170742405373,245,0 +170742405421,245,0 +170742405469,245,0 +170742405519,245,0 +170742405567,245,0 +170742405616,245,0 +170742405664,245,0 +170742405712,245,0 +170742405761,245,0 +170742405809,245,0 +170742405857,245,0 +170742405905,245,0 +170742405953,245,0 +170742406001,245,0 +170742406049,245,0 +170742406097,245,0 +170742406145,245,0 +170742406192,245,0 +170742406240,245,0 +170742406288,244,0 +170742406336,244,0 +170742406384,244,0 +170742406432,244,0 +170742406480,244,0 +170742406528,245,0 +170742406576,244,0 +170742406624,245,0 +170742406671,245,0 +170742406719,245,0 +170742406767,245,0 +170742406815,245,0 +170742406863,245,0 +170742406911,245,0 +170742406959,245,0 +170742407007,245,0 +170742407054,245,0 +170742407102,245,0 +170742407150,245,0 +170742407198,244,0 +170742407246,245,0 +170742407294,245,0 +170742407342,245,0 +170742407390,245,0 +170742407437,245,0 +170742407485,245,0 +170742407533,245,0 +170742407581,245,0 +170742407629,245,0 +170742407678,245,0 +170742407726,245,0 +170742407776,245,0 +170742407825,244,0 +170742407873,244,0 +170742407921,244,0 +170742407971,245,0 +170742408020,244,0 +170742408068,244,0 +170742408118,245,0 +170742408166,244,0 +170742408214,245,0 +170742408263,244,0 +170742408313,245,0 +170742408362,245,0 +170742408410,245,0 +170742408460,245,0 +170742408508,245,0 +170742408555,245,0 +170742408605,245,0 +170742408654,244,0 +170742408702,244,0 +170742408750,245,0 +170742408798,244,0 +170742408848,244,0 +170742408896,244,0 +170742408945,245,0 +170742408993,244,0 +170742409041,244,0 +170742409091,245,0 +170742409139,244,0 +170742409187,245,0 +170742409236,244,0 +170742409286,245,0 +170742409334,244,0 +170742409383,245,0 +170742409431,244,0 +170742409479,245,0 +170742409527,244,0 +170742409575,245,0 +170742409622,245,0 +170742409670,244,0 +170742409718,245,0 +170742409766,244,0 +170742409814,245,0 +170742409862,245,0 +170742409910,245,0 +170742409958,244,0 +170742410005,245,0 +170742410053,245,0 +170742410101,245,0 +170742410149,245,0 +170742410197,245,0 +170742410245,244,0 +170742410293,245,0 +170742410342,245,0 +170742410390,245,0 +170742410438,245,0 +170742410486,245,0 +170742410536,245,0 +170742410583,245,0 +170742410631,245,0 +170742410681,245,0 +170742410730,245,0 +170742410780,245,0 +170742410829,245,0 +170742410877,245,0 +170742410925,245,0 +170742410973,244,0 +170742411021,245,0 +170742411071,245,0 +170742411120,245,0 +170742411168,244,0 +170742411216,244,0 +170742411264,245,0 +170742411312,245,0 +170742411360,244,0 +170742411407,244,0 +170742411457,245,0 +170742411505,244,0 +170742411553,245,0 +170742411601,244,0 +170742411648,245,0 +170742411696,245,0 +170742411744,245,0 +170742411792,244,0 +170742411841,245,0 +170742411889,245,0 +170742411937,245,0 +170742411985,245,0 +170742412033,245,0 +170742412081,245,0 +170742412130,245,0 +170742412178,245,0 +170742412226,245,0 +170742412274,244,0 +170742412322,245,0 +170742412370,245,0 +170742412420,245,0 +170742412469,245,0 +170742412519,244,0 +170742412568,245,0 +170742412616,245,0 +170742412666,245,0 +170742412714,245,0 +170742412763,244,0 +170742412811,245,0 +170742412861,244,0 +170742412910,245,0 +170742412958,245,0 +170742413008,244,0 +170742413057,245,0 +170742413105,245,0 +170742413153,245,0 +170742413201,245,0 +170742413249,245,0 +170742413298,245,0 +170742413346,245,0 +170742413396,245,0 +170742413444,245,0 +170742413493,245,0 +170742413541,245,0 +170742413589,245,0 +170742413637,244,0 +170742413685,245,0 +170742413733,245,0 +170742413782,245,0 +170742413830,245,0 +170742413880,245,0 +170742413929,245,0 +170742413979,245,0 +170742414027,245,0 +170742414075,245,0 +170742414123,244,0 +170742414171,245,0 +170742414219,244,0 +170742414267,245,0 +170742414316,245,0 +170742414364,245,0 +170742414413,244,0 +170742414461,245,0 +170742414509,245,0 +170742414557,245,0 +170742414605,245,0 +170742414653,245,0 +170742414703,245,0 +170742414751,244,0 +170742414799,245,0 +170742414847,244,0 +170742414896,244,0 +170742414946,245,0 +170742414994,245,0 +170742415043,245,0 +170742415091,245,0 +170742415139,245,0 +170742415187,245,0 +170742415235,245,0 +170742415284,245,0 +170742415334,245,0 +170742415382,245,0 +170742415432,245,0 +170742415479,244,0 +170742415527,245,0 +170742415577,245,0 +170742415625,245,0 +170742415674,245,0 +170742415722,245,0 +170742415772,245,0 +170742415822,245,0 +170742415871,245,0 +170742415919,245,0 +170742415967,245,0 +170742416017,245,0 +170742416066,245,0 +170742416116,245,0 +170742416164,245,0 +170742416213,245,0 +170742416261,244,0 +170742416309,245,0 +170742416357,245,0 +170742416405,245,0 +170742416453,245,0 +170742416502,245,0 +170742416550,245,0 +170742416598,244,0 +170742416646,245,0 +170742416694,244,0 +170742416742,245,0 +170742416790,245,0 +170742416840,244,0 +170742416888,245,0 +170742416936,245,0 +170742416985,245,0 +170742417035,245,0 +170742417083,245,0 +170742417132,245,0 +170742417180,245,0 +170742417230,245,0 +170742417278,245,0 +170742417327,245,0 +170742417375,245,0 +170742417423,245,0 +170742417472,245,0 +170742417522,245,0 +170742417572,245,0 +170742417621,244,0 +170742417671,244,0 +170742417719,245,0 +170742417768,245,0 +170742417816,245,0 +170742417864,245,0 +170742417912,245,0 +170742417960,245,0 +170742418009,245,0 +170742418057,245,0 +170742418105,245,0 +170742418155,245,0 +170742418203,245,0 +170742418252,245,0 +170742418300,245,0 +170742418350,245,0 +170742418399,245,0 +170742418447,245,0 +170742418497,245,0 +170742418545,245,0 +170742418594,245,0 +170742418644,245,0 +170742418692,245,0 +170742418740,245,0 +170742418788,245,0 +170742418836,245,0 +170742418885,245,0 +170742418933,245,0 +170742418981,245,0 +170742419030,245,0 +170742419078,245,0 +170742419126,245,0 +170742419176,245,0 +170742419224,245,0 +170742419272,245,0 +170742419320,245,0 +170742419367,245,0 +170742419415,245,0 +170742419463,245,0 +170742419511,244,0 +170742419559,245,0 +170742419609,244,0 +170742419657,245,0 +170742419706,245,0 +170742419756,245,0 +170742419805,244,0 +170742419853,245,0 +170742419903,245,0 +170742419951,245,0 +170742419999,245,0 +170742420047,245,0 +170742420095,245,0 +170742420144,245,0 +170742420192,245,0 +170742420242,244,0 +170742420290,245,0 +170742420339,244,0 +170742420389,245,0 +170742420437,244,0 +170742420485,245,0 +170742420534,245,0 +170742420582,245,0 +170742420630,244,0 +170742420678,245,0 +170742420728,244,0 +170742420775,245,0 +170742420823,244,0 +170742420873,245,0 +170742420921,245,0 +170742420969,245,0 +170742421017,245,0 +170742421066,245,0 +170742421114,245,0 +170742421162,245,0 +170742421210,245,0 +170742421258,245,0 +170742421306,245,0 +170742421356,245,0 +170742421403,245,0 +170742421451,245,0 +170742421499,244,0 +170742421547,245,0 +170742421595,245,0 +170742421645,245,0 +170742421694,245,0 +170742421742,245,0 +170742421792,245,0 +170742421840,245,0 +170742421889,245,0 +170742421937,244,0 +170742421987,245,0 +170742422035,245,0 +170742422083,245,0 +170742422131,245,0 +170742422179,245,0 +170742422228,244,0 +170742422276,245,0 +170742422326,245,0 +170742422374,244,0 +170742422423,245,0 +170742422471,244,0 +170742422519,245,0 +170742422567,245,0 +170742422615,245,0 +170742422663,244,0 +170742422711,245,0 +170742422759,245,0 +170742422807,245,0 +170742422855,245,0 +170742422902,245,0 +170742422950,245,0 +170742422998,245,0 +170742423046,245,0 +170742423094,245,0 +170742423142,245,0 +170742423190,245,0 +170742423238,245,0 +170742423286,245,0 +170742423334,245,0 +170742423381,245,0 +170742423429,245,0 +170742423477,245,0 +170742423525,245,0 +170742423573,244,0 +170742423621,245,0 +170742423669,245,0 +170742423717,245,0 +170742423764,245,0 +170742423812,245,0 +170742423860,245,0 +170742423908,245,0 +170742423956,245,0 +170742424004,244,0 +170742424052,245,0 +170742424100,245,0 +170742424148,245,0 +170742424197,245,0 +170742424245,245,0 +170742424293,245,0 +170742424342,245,0 +170742424390,245,0 +170742424440,245,0 +170742424487,244,0 +170742424535,244,0 +170742424583,245,0 +170742424631,245,0 +170742424679,245,0 +170742424727,245,0 +170742424775,245,0 +170742424823,245,0 +170742424871,245,0 +170742424918,245,0 +170742424966,245,0 +170742425014,245,0 +170742425062,245,0 +170742425110,245,0 +170742425158,244,0 +170742425206,245,0 +170742425254,245,0 +170742425302,245,0 +170742425350,245,0 +170742425397,245,0 +170742425445,245,0 +170742425493,244,0 +170742425541,245,0 +170742425589,245,0 +170742425637,245,0 +170742425684,245,0 +170742425732,245,0 +170742425780,245,0 +170742425828,245,0 +170742425876,245,0 +170742425924,245,0 +170742425972,245,0 +170742426020,245,0 +170742426068,245,0 +170742426115,245,0 +170742426163,245,0 +170742426211,244,0 +170742426259,245,0 +170742426307,245,0 +170742426355,245,0 +170742426403,245,0 +170742426451,245,0 +170742426500,245,0 +170742426548,245,0 +170742426596,245,0 +170742426644,245,0 +170742426691,245,0 +170742426739,245,0 +170742426787,244,0 +170742426835,244,0 +170742426883,245,0 +170742426931,245,0 +170742426979,245,0 +170742427027,245,0 +170742427075,245,0 +170742427122,244,0 +170742427170,245,0 +170742427218,245,0 +170742427266,245,0 +170742427314,244,0 +170742427362,245,0 +170742427410,244,0 +170742427458,245,0 +170742427505,245,0 +170742427553,245,0 +170742427601,245,0 +170742427649,245,0 +170742427697,245,0 +170742427745,245,0 +170742427793,245,0 +170742427841,245,0 +170742427889,245,0 +170742427936,245,0 +170742427984,245,0 +170742428032,245,0 +170742428080,245,0 +170742428128,245,0 +170742428176,245,0 +170742428224,244,0 +170742428272,245,0 +170742428320,245,0 +170742428369,245,0 +170742428417,245,0 +170742428465,245,0 +170742428513,245,0 +170742428561,245,0 +170742428609,245,0 +170742428658,245,0 +170742428706,245,0 +170742428756,245,0 +170742428805,245,0 +170742428855,245,0 +170742428904,245,0 +170742428954,245,0 +170742429002,245,0 +170742429051,245,0 +170742429099,245,0 +170742429147,245,0 +170742429195,245,0 +170742429243,245,0 +170742429291,245,0 +170742429341,245,0 +170742429389,245,0 +170742429437,245,0 +170742429485,245,0 +170742429534,245,0 +170742429582,245,0 +170742429632,245,0 +170742429681,245,0 +170742429731,245,0 +170742429778,245,0 +170742429826,245,0 +170742429876,245,0 +170742429925,245,0 +170742429973,245,0 +170742430021,245,0 +170742430069,245,0 +170742430117,245,0 +170742430165,245,0 +170742430213,245,0 +170742430261,245,0 +170742430309,245,0 +170742430356,245,0 +170742430404,244,0 +170742430452,245,0 +170742430500,245,0 +170742430550,245,0 +170742430598,245,0 +170742430646,245,0 +170742430695,245,0 +170742430743,244,0 +170742430793,245,0 +170742430841,245,0 +170742430888,245,0 +170742430936,245,0 +170742430986,245,0 +170742431035,245,0 +170742431083,245,0 +170742431131,245,0 +170742431181,245,0 +170742431230,245,0 +170742431278,245,0 +170742431328,245,0 +170742431376,245,0 +170742431425,245,0 +170742431473,245,0 +170742431521,244,0 +170742431569,245,0 +170742431619,244,0 +170742431667,245,0 +170742431716,245,0 +170742431766,245,0 +170742431813,245,0 +170742431861,245,0 +170742431911,244,0 +170742431960,245,0 +170742432010,245,0 +170742432058,245,0 +170742432106,244,0 +170742432155,245,0 +170742432203,245,0 +170742432253,245,0 +170742432301,245,0 +170742432350,245,0 +170742432398,245,0 +170742432446,245,0 +170742432494,245,0 +170742432544,245,0 +170742432593,244,0 +170742432641,245,0 +170742432691,244,0 +170742432739,245,0 +170742432788,245,0 +170742432837,245,0 +170742432887,245,0 +170742432935,245,0 +170742432985,245,0 +170742433033,245,0 +170742433081,245,0 +170742433129,245,0 +170742433177,245,0 +170742433224,245,0 +170742433274,245,0 +170742433322,245,0 +170742433371,245,0 +170742433421,245,0 +170742433470,245,0 +170742433518,245,0 +170742433568,245,0 +170742433616,245,0 +170742433664,245,0 +170742433713,245,0 +170742433761,245,0 +170742433809,245,0 +170742433859,245,0 +170742433907,245,0 +170742433955,245,0 +170742434004,245,0 +170742434052,245,0 +170742434100,245,0 +170742434148,245,0 +170742434197,245,0 +170742434245,245,0 +170742434295,245,0 +170742434343,245,0 +170742434391,244,0 +170742434439,245,0 +170742434488,245,0 +170742434536,245,0 +170742434586,245,0 +170742434634,245,0 +170742434682,245,0 +170742434731,245,0 +170742434779,245,0 +170742434827,245,0 +170742434875,244,0 +170742434923,245,0 +170742434972,245,0 +170742435020,245,0 +170742435070,245,0 +170742435119,245,0 +170742435167,245,0 +170742435215,245,0 +170742435265,245,0 +170742435314,245,0 +170742435362,245,0 +170742435410,245,0 +170742435460,245,0 +170742435508,245,0 +170742435556,245,0 +170742435604,245,0 +170742435653,245,0 +170742435703,245,0 +170742435751,245,0 +170742435799,245,0 +170742435847,245,0 +170742435895,245,0 +170742435944,244,0 +170742435994,245,0 +170742436043,245,0 +170742436091,245,0 +170742436139,245,0 +170742436189,245,0 +170742436237,245,0 +170742436284,245,0 +170742436333,245,0 +170742436380,245,0 +170742436430,245,0 +170742436478,245,0 +170742436528,245,0 +170742436576,244,0 +170742436623,245,0 +170742436671,244,0 +170742436719,245,0 +170742436767,245,0 +170742436815,245,0 +170742436863,245,0 +170742436913,245,0 +170742436960,245,0 +170742437010,245,0 +170742437059,245,0 +170742437107,245,0 +170742437155,245,0 +170742437205,245,0 +170742437254,245,0 +170742437304,245,0 +170742437352,245,0 +170742437401,245,0 +170742437449,244,0 +170742437497,245,0 +170742437545,244,0 +170742437593,245,0 +170742437641,244,0 +170742437689,245,0 +170742437737,244,0 +170742437785,245,0 +170742437833,244,0 +170742437881,245,0 +170742437930,244,0 +170742437978,245,0 +170742438026,245,0 +170742438074,244,0 +170742438122,244,0 +170742438172,245,0 +170742438220,245,0 +170742438267,245,0 +170742438317,245,0 +170742438365,245,0 +170742438413,245,0 +170742438461,245,0 +170742438509,245,0 +170742438557,245,0 +170742438605,245,0 +170742438653,245,0 +170742438701,245,0 +170742438749,245,0 +170742438798,245,0 +170742438846,245,0 +170742438894,245,0 +170742438942,245,0 +170742438990,245,0 +170742439040,245,0 +170742439089,245,0 +170742439139,245,0 +170742439188,245,0 +170742439236,245,0 +170742439284,245,0 +170742439332,245,0 +170742439381,245,0 +170742439429,245,0 +170742439477,245,0 +170742439525,245,0 +170742439575,245,0 +170742439623,245,0 +170742439671,245,0 +170742439719,245,0 +170742439767,245,0 +170742439816,245,0 +170742439866,245,0 +170742439915,245,0 +170742439965,245,0 +170742440014,245,0 +170742440062,245,0 +170742440110,245,0 +170742440158,245,0 +170742440206,245,0 +170742440256,245,0 +170742440305,244,0 +170742440353,245,0 +170742440401,245,0 +170742440449,245,0 +170742440497,245,0 +170742440545,245,0 +170742440593,245,0 +170742440641,245,0 +170742440689,244,0 +170742440738,245,0 +170742440788,245,0 +170742440837,245,0 +170742440885,245,0 +170742440933,245,0 +170742440983,245,0 +170742441032,245,0 +170742441080,245,0 +170742441130,245,0 +170742441178,245,0 +170742441226,245,0 +170742441273,245,0 +170742441323,245,0 +170742441371,245,0 +170742441419,245,0 +170742441467,245,0 +170742441515,245,0 +170742441563,245,0 +170742441612,244,0 +170742441660,245,0 +170742441708,245,0 +170742441756,245,0 +170742441804,245,0 +170742441852,245,0 +170742441900,245,0 +170742441950,245,0 +170742441998,245,0 +170742442047,245,0 +170742442095,245,0 +170742442143,245,0 +170742442193,245,0 +170742442242,245,0 +170742442290,245,0 +170742442338,245,0 +170742442386,245,0 +170742442435,245,0 +170742442485,245,0 +170742442533,245,0 +170742442582,245,0 +170742442630,245,0 +170742442678,245,0 +170742442726,245,0 +170742442776,245,0 +170742442826,244,0 +170742442874,245,0 +170742442923,245,0 +170742442973,244,0 +170742443021,245,0 +170742443070,245,0 +170742443118,245,0 +170742443166,245,0 +170742443214,245,0 +170742443262,245,0 +170742443310,245,0 +170742443357,245,0 +170742443405,245,0 +170742443453,245,0 +170742443501,245,0 +170742443550,245,0 +170742443598,245,0 +170742443648,245,0 +170742443697,245,0 +170742443745,245,0 +170742443793,245,0 +170742443841,245,0 +170742443889,245,0 +170742443937,245,0 +170742443986,245,0 +170742444035,245,0 +170742444083,245,0 +170742444131,245,0 +170742444179,244,0 +170742444227,245,0 +170742444276,245,0 +170742444324,244,0 +170742444372,245,0 +170742444422,245,0 +170742444471,245,0 +170742444519,245,0 +170742444569,245,0 +170742444617,245,0 +170742444665,245,0 +170742444713,245,0 +170742444762,245,0 +170742444810,245,0 +170742444860,245,0 +170742444908,245,0 +170742444956,245,0 +170742445005,245,0 +170742445055,245,0 +170742445103,245,0 +170742445151,245,0 +170742445199,245,0 +170742445247,244,0 +170742445296,245,0 +170742445346,245,0 +170742445394,245,0 +170742445442,245,0 +170742445491,245,0 +170742445539,245,0 +170742445587,245,0 +170742445635,245,0 +170742445685,245,0 +170742445732,245,0 +170742445780,245,0 +170742445828,245,0 +170742445876,245,0 +170742445926,245,0 +170742445974,245,0 +170742446023,245,0 +170742446073,245,0 +170742446121,244,0 +170742446170,245,0 +170742446220,245,0 +170742446268,245,0 +170742446316,245,0 +170742446364,245,0 +170742446413,245,0 +170742446461,245,0 +170742446509,245,0 +170742446557,245,0 +170742446605,245,0 +170742446653,245,0 +170742446702,245,0 +170742446750,245,0 +170742446800,245,0 +170742446848,245,0 +170742446897,245,0 +170742446945,245,0 +170742446995,245,0 +170742447043,245,0 +170742447091,245,0 +170742447140,245,0 +170742447188,245,0 +170742447236,245,0 +170742447286,245,0 +170742447333,245,0 +170742447383,245,0 +170742447431,245,0 +170742447480,245,0 +170742447528,245,0 +170742447576,245,0 +170742447626,245,0 +170742447674,245,0 +170742447723,245,0 +170742447773,244,0 +170742447821,245,0 +170742447869,244,0 +170742447917,245,0 +170742447965,245,0 +170742448014,245,0 +170742448064,245,0 +170742448112,245,0 +170742448160,245,0 +170742448208,245,0 +170742448256,245,0 +170742448304,245,0 +170742448353,245,0 +170742448401,245,0 +170742448450,245,0 +170742448498,245,0 +170742448546,245,0 +170742448596,245,0 +170742448645,245,0 +170742448693,245,0 +170742448741,245,0 +170742448791,245,0 +170742448839,245,0 +170742448887,245,0 +170742448936,245,0 +170742448986,245,0 +170742449034,245,0 +170742449083,245,0 +170742449131,245,0 +170742449179,245,0 +170742449229,245,0 +170742449278,244,0 +170742449326,245,0 +170742449374,244,0 +170742449422,245,0 +170742449472,245,0 +170742449521,244,0 +170742449569,245,0 +170742449618,244,0 +170742449666,245,0 +170742449714,245,0 +170742449762,244,0 +170742449810,245,0 +170742449858,245,0 +170742449906,245,0 +170742449956,244,0 +170742450004,245,0 +170742450052,245,0 +170742450101,245,0 +170742450149,245,0 +170742450197,244,0 +170742450247,245,0 +170742450295,245,0 +170742450344,245,0 +170742450394,245,0 +170742450443,245,0 +170742450493,245,0 +170742450542,245,0 +170742450590,245,0 +170742450638,245,0 +170742450688,245,0 +170742450736,245,0 +170742450784,245,0 +170742450832,245,0 +170742450881,245,0 +170742450929,245,0 +170742450977,245,0 +170742451026,245,0 +170742451076,245,0 +170742451123,245,0 +170742451173,245,0 +170742451221,245,0 +170742451269,245,0 +170742451317,245,0 +170742451365,245,0 +170742451414,245,0 +170742451462,245,0 +170742451510,245,0 +170742451558,245,0 +170742451605,245,0 +170742451653,245,0 +170742451701,245,0 +170742451749,245,0 +170742451797,245,0 +170742451847,245,0 +170742451896,245,0 +170742451944,245,0 +170742451994,245,0 +170742452041,245,0 +170742452089,244,0 +170742452137,244,0 +170742452185,245,0 +170742452233,245,0 +170742452281,245,0 +170742452329,244,0 +170742452378,245,0 +170742452428,244,0 +170742452476,245,0 +170742452524,245,0 +170742452572,245,0 +170742452621,245,0 +170742452671,245,0 +170742452720,245,0 +170742452768,245,0 +170742452816,245,0 +170742452864,245,0 +170742452914,245,0 +170742452963,245,0 +170742453013,245,0 +170742453062,245,0 +170742453110,244,0 +170742453158,245,0 +170742453208,245,0 +170742453257,245,0 +170742453305,245,0 +170742453353,245,0 +170742453402,245,0 +170742453450,245,0 +170742453498,245,0 +170742453546,245,0 +170742453594,245,0 +170742453643,245,0 +170742453693,245,0 +170742453741,244,0 +170742453789,245,0 +170742453836,245,0 +170742453884,245,0 +170742453932,245,0 +170742453980,245,0 +170742454028,245,0 +170742454076,245,0 +170742454124,245,0 +170742454172,245,0 +170742454219,245,0 +170742454269,245,0 +170742454317,245,0 +170742454365,245,0 +170742454413,244,0 +170742454461,245,0 +170742454509,244,0 +170742454556,245,0 +170742454604,245,0 +170742454652,245,0 +170742454700,245,0 +170742454748,245,0 +170742454796,244,0 +170742454844,245,0 +170742454892,245,0 +170742454940,245,0 +170742454987,245,0 +170742455037,245,0 +170742455085,245,0 +170742455134,245,0 +170742455184,245,0 +170742455233,245,0 +170742455281,245,0 +170742455329,245,0 +170742455377,245,0 +170742455425,245,0 +170742455473,245,0 +170742455521,245,0 +170742455569,245,0 +170742455618,245,0 +170742455666,245,0 +170742455714,245,0 +170742455762,245,0 +170742455810,245,0 +170742455860,245,0 +170742455908,244,0 +170742455957,245,0 +170742456007,245,0 +170742456055,245,0 +170742456103,244,0 +170742456151,245,0 +170742456199,245,0 +170742456247,245,0 +170742456296,245,0 +170742456346,245,0 +170742456394,245,0 +170742456441,245,0 +170742456489,245,0 +170742456539,245,0 +170742456587,245,0 +170742456636,245,0 +170742456686,245,0 +170742456734,244,0 +170742456782,245,0 +170742456830,245,0 +170742456879,245,0 +170742456929,245,0 +170742456977,245,0 +170742457025,245,0 +170742457074,245,0 +170742457122,245,0 +170742457170,245,0 +170742457218,245,0 +170742457266,245,0 +170742457314,245,0 +170742457364,245,0 +170742457413,245,0 +170742457461,245,0 +170742457509,245,0 +170742457559,245,0 +170742457607,245,0 +170742457655,245,0 +170742457703,245,0 +170742457752,245,0 +170742457800,245,0 +170742457848,245,0 +170742457896,245,0 +170742457946,245,0 +170742457994,245,0 +170742458043,245,0 +170742458093,245,0 +170742458141,245,0 +170742458189,245,0 +170742458237,245,0 +170742458286,245,0 +170742458334,245,0 +170742458382,245,0 +170742458430,245,0 +170742458480,245,0 +170742458527,245,0 +170742458575,245,0 +170742458623,245,0 +170742458671,245,0 +170742458719,245,0 +170742458767,245,0 +170742458815,245,0 +170742458863,245,0 +170742458913,245,0 +170742458961,245,0 +170742459009,245,0 +170742459057,245,0 +170742459105,245,0 +170742459153,245,0 +170742459202,245,0 +170742459250,245,0 +170742459299,244,0 +170742459349,245,0 +170742459398,245,0 +170742459446,245,0 +170742459494,245,0 +170742459542,245,0 +170742459590,245,0 +170742459638,245,0 +170742459688,245,0 +170742459737,245,0 +170742459785,245,0 +170742459833,245,0 +170742459883,245,0 +170742459931,245,0 +170742459979,245,0 +170742460027,245,0 +170742460076,245,0 +170742460124,245,0 +170742460172,245,0 +170742460220,245,0 +170742460270,245,0 +170742460318,244,0 +170742460367,244,0 +170742460415,245,0 +170742460463,245,0 +170742460511,245,0 +170742460559,245,0 +170742460608,245,0 +170742460656,245,0 +170742460706,245,0 +170742460755,245,0 +170742460803,245,0 +170742460853,245,0 +170742460901,245,0 +170742460949,245,0 +170742460997,245,0 +170742461045,245,0 +170742461093,245,0 +170742461142,245,0 +170742461190,245,0 +170742461240,245,0 +170742461289,245,0 +170742461337,245,0 +170742461387,245,0 +170742461435,245,0 +170742461483,245,0 +170742461531,245,0 +170742461578,245,0 +170742461626,245,0 +170742461674,245,0 +170742461722,245,0 +170742461772,245,0 +170742461820,245,0 +170742461868,245,0 +170742461916,245,0 +170742461964,245,0 +170742462012,245,0 +170742462060,245,0 +170742462108,245,0 +170742462157,245,0 +170742462205,245,0 +170742462255,245,0 +170742462303,244,0 +170742462351,245,0 +170742462399,245,0 +170742462448,245,0 +170742462498,245,0 +170742462546,245,0 +170742462595,245,0 +170742462645,245,0 +170742462693,245,0 +170742462741,245,0 +170742462790,245,0 +170742462838,245,0 +170742462886,245,0 +170742462934,245,0 +170742462982,245,0 +170742463031,245,0 +170742463081,245,0 +170742463129,244,0 +170742463177,245,0 +170742463225,245,0 +170742463274,245,0 +170742463322,245,0 +170742463370,245,0 +170742463418,245,0 +170742463468,245,0 +170742463516,245,0 +170742463564,245,0 +170742463612,244,0 +170742463659,245,0 +170742463707,245,0 +170742463755,244,0 +170742463805,245,0 +170742463854,245,0 +170742463904,245,0 +170742463952,245,0 +170742464001,245,0 +170742464051,245,0 +170742464100,245,0 +170742464150,245,0 +170742464199,245,0 +170742464247,245,0 +170742464295,245,0 +170742464345,245,0 +170742464393,245,0 +170742464442,245,0 +170742464490,245,0 +170742464538,245,0 +170742464586,245,0 +170742464634,245,0 +170742464683,245,0 +170742464731,245,0 +170742464781,245,0 +170742464829,245,0 +170742464877,245,0 +170742464924,245,0 +170742464974,245,0 +170742465022,245,0 +170742465070,245,0 +170742465118,245,0 +170742465166,245,0 +170742465215,245,0 +170742465263,244,0 +170742465313,244,0 +170742465361,245,0 +170742465410,245,0 +170742465458,245,0 +170742465506,245,0 +170742465554,245,0 +170742465602,245,0 +170742465650,245,0 +170742465697,245,0 +170742465745,245,0 +170742465793,245,0 +170742465841,245,0 +170742465889,245,0 +170742465937,244,0 +170742465986,245,0 +170742466034,245,0 +170742466082,245,0 +170742466131,245,0 +170742466181,245,0 +170742466229,245,0 +170742466277,245,0 +170742466325,245,0 +170742466372,245,0 +170742466422,245,0 +170742466471,245,0 +170742466519,245,0 +170742466567,245,0 +170742466615,245,0 +170742466665,245,0 +170742466713,245,0 +170742466762,245,0 +170742466810,245,0 +170742466859,245,0 +170742466909,245,0 +170742466958,245,0 +170742467006,245,0 +170742467054,245,0 +170742467102,245,0 +170742467150,245,0 +170742467198,245,0 +170742467246,245,0 +170742467294,245,0 +170742467344,245,0 +170742467392,245,0 +170742467441,245,0 +170742467489,245,0 +170742467539,245,0 +170742467587,245,0 +170742467636,245,0 +170742467686,245,0 +170742467734,245,0 +170742467782,245,0 +170742467830,245,0 +170742467878,245,0 +170742467927,245,0 +170742467975,245,0 +170742468023,245,0 +170742468071,245,0 +170742468119,245,0 +170742468167,245,0 +170742468215,245,0 +170742468263,245,0 +170742468312,245,0 +170742468360,245,0 +170742468408,245,0 +170742468458,245,0 +170742468506,245,0 +170742468553,245,0 +170742468601,245,0 +170742468649,245,0 +170742468699,245,0 +170742468747,245,0 +170742468796,245,0 +170742468844,245,0 +170742468892,245,0 +170742468942,245,0 +170742468990,245,0 +170742469039,245,0 +170742469089,245,0 +170742469137,245,0 +170742469185,245,0 +170742469234,245,0 +170742469282,245,0 +170742469332,245,0 +170742469380,245,0 +170742469428,245,0 +170742469477,245,0 +170742469527,245,0 +170742469574,245,0 +170742469622,245,0 +170742469670,245,0 +170742469720,245,0 +170742469768,245,0 +170742469816,245,0 +170742469863,245,0 +170742469913,245,0 +170742469961,245,0 +170742470010,245,0 +170742470058,245,0 +170742470106,245,0 +170742470156,245,0 +170742470205,245,0 +170742470253,245,0 +170742470301,245,0 +170742470350,245,0 +170742470398,245,0 +170742470446,245,0 +170742470494,245,0 +170742470542,245,0 +170742470592,245,0 +170742470641,245,0 +170742470690,245,0 +170742470740,245,0 +170742470788,245,0 +170742470836,245,0 +170742470885,245,0 +170742470935,245,0 +170742470983,245,0 +170742471032,245,0 +170742471080,245,0 +170742471128,245,0 +170742471178,245,0 +170742471226,245,0 +170742471275,245,0 +170742471323,245,0 +170742471373,245,0 +170742471422,245,0 +170742471470,245,0 +170742471520,245,0 +170742471568,245,0 +170742471617,245,0 +170742471667,245,0 +170742471715,245,0 +170742471763,245,0 +170742471812,245,0 +170742471860,245,0 +170742471908,245,0 +170742471958,245,0 +170742472006,245,0 +170742472054,245,0 +170742472101,245,0 +170742472151,245,0 +170742472201,245,0 +170742472249,245,0 +170742472297,245,0 +170742472346,245,0 +170742472395,245,0 +170742472443,245,0 +170742472491,245,0 +170742472539,245,0 +170742472587,245,0 +170742472635,245,0 +170742472683,245,0 +170742472731,245,0 +170742472779,245,0 +170742472826,245,0 +170742472874,245,0 +170742472924,245,0 +170742472972,245,0 +170742473020,245,0 +170742473067,245,0 +170742473115,245,0 +170742473163,245,0 +170742473213,245,0 +170742473261,245,0 +170742473310,245,0 +170742473358,245,0 +170742473406,245,0 +170742473456,245,0 +170742473503,245,0 +170742473553,245,0 +170742473601,245,0 +170742473649,245,0 +170742473698,245,0 +170742473746,245,0 +170742473794,245,0 +170742473842,245,0 +170742473890,245,0 +170742473939,245,0 +170742473987,245,0 +170742474037,245,0 +170742474085,245,0 +170742474133,245,0 +170742474180,245,0 +170742474230,245,0 +170742474278,245,0 +170742474326,245,0 +170742474375,245,0 +170742474423,245,0 +170742474473,245,0 +170742474521,245,0 +170742474570,245,0 +170742474618,245,0 +170742474666,245,0 +170742474716,245,0 +170742474764,245,0 +170742474813,245,0 +170742474861,245,0 +170742474909,245,0 +170742474957,245,0 +170742475005,245,0 +170742475053,245,0 +170742475101,245,0 +170742475149,245,0 +170742475198,245,0 +170742475248,245,0 +170742475296,245,0 +170742475344,245,0 +170742475393,245,0 +170742475443,245,0 +170742475492,245,0 +170742475540,245,0 +170742475588,245,0 +170742475636,245,0 +170742475684,245,0 +170742475732,245,0 +170742475782,245,0 +170742475830,245,0 +170742475878,245,0 +170742475926,245,0 +170742475974,245,0 +170742476021,245,0 +170742476069,245,0 +170742476119,245,0 +170742476167,245,0 +170742476214,245,0 +170742476262,245,0 +170742476310,245,0 +170742476358,245,0 +170742476406,245,0 +170742476454,245,0 +170742476502,245,0 +170742476550,245,0 +170742476598,245,0 +170742476646,245,0 +170742476694,245,0 +170742476743,245,0 +170742476793,245,0 +170742476842,245,0 +170742476890,245,0 +170742476938,245,0 +170742476988,245,0 +170742477037,245,0 +170742477085,245,0 +170742477133,245,0 +170742477183,245,0 +170742477232,245,0 +170742477282,245,0 +170742477330,245,0 +170742477378,245,0 +170742477426,245,0 +170742477475,245,0 +170742477523,245,0 +170742477573,245,0 +170742477621,245,0 +170742477669,245,0 +170742477718,245,0 +170742477768,245,0 +170742477816,245,0 +170742477865,245,0 +170742477913,245,0 +170742477963,245,0 +170742478011,245,0 +170742478059,245,0 +170742478108,245,0 +170742478156,245,0 +170742478206,245,0 +170742478255,245,0 +170742478303,245,0 +170742478351,245,0 +170742478399,245,0 +170742478448,245,0 +170742478498,245,0 +170742478546,245,0 +170742478594,245,0 +170742478642,245,0 +170742478690,245,0 +170742478738,245,0 +170742478786,245,0 +170742478834,245,0 +170742478883,245,0 +170742478933,245,0 +170742478982,245,0 +170742479032,245,0 +170742479081,245,0 +170742479129,245,0 +170742479177,245,0 +170742479227,245,0 +170742479276,245,0 +170742479326,245,0 +170742479375,245,0 +170742479423,245,0 +170742479473,245,0 +170742479521,245,0 +170742479569,245,0 +170742479617,245,0 +170742479665,245,0 +170742479713,245,0 +170742479762,245,0 +170742479810,245,0 +170742479860,245,0 +170742479908,245,0 +170742479957,245,0 +170742480005,245,0 +170742480053,245,0 +170742480103,245,0 +170742480152,245,0 +170742480202,245,0 +170742480251,245,0 +170742480301,245,0 +170742480349,245,0 +170742480399,245,0 +170742480446,245,0 +170742480496,245,0 +170742480544,245,0 +170742480592,245,0 +170742480640,245,0 +170742480688,245,0 +170742480736,245,0 +170742480784,245,0 +170742480833,245,0 +170742480881,245,0 +170742480929,245,0 +170742480978,245,0 +170742481026,245,0 +170742481074,245,0 +170742481122,245,0 +170742481170,245,0 +170742481218,245,0 +170742481266,245,0 +170742481314,245,0 +170742481363,245,0 +170742481411,245,0 +170742481459,245,0 +170742481507,245,0 +170742481556,245,0 +170742481604,245,0 +170742481652,245,0 +170742481700,245,0 +170742481748,245,0 +170742481796,245,0 +170742481846,245,0 +170742481894,245,0 +170742481942,245,0 +170742481989,245,0 +170742482037,245,0 +170742482085,245,0 +170742482133,245,0 +170742482181,245,0 +170742482229,245,0 +170742482277,245,0 +170742482325,245,0 +170742482374,245,0 +170742482424,245,0 +170742482472,245,0 +170742482520,245,0 +170742482568,245,0 +170742482617,245,0 +170742482665,245,0 +170742482713,245,0 +170742482763,245,0 +170742482812,245,0 +170742482860,245,0 +170742482908,245,0 +170742482956,245,0 +170742483006,245,0 +170742483054,245,0 +170742483102,245,0 +170742483150,245,0 +170742483199,245,0 +170742483247,245,0 +170742483295,245,0 +170742483343,245,0 +170742483391,245,0 +170742483439,245,0 +170742483487,245,0 +170742483534,245,0 +170742483582,245,0 +170742483630,245,0 +170742483678,245,0 +170742483726,245,0 +170742483774,245,0 +170742483822,245,0 +170742483870,245,0 +170742483918,245,0 +170742483965,245,0 +170742484015,245,0 +170742484063,245,0 +170742484111,245,0 +170742484159,245,0 +170742484206,245,0 +170742484254,245,0 +170742484302,245,0 +170742484350,245,0 +170742484398,245,0 +170742484446,245,0 +170742484494,245,0 +170742484543,245,0 +170742484591,245,0 +170742484639,245,0 +170742484687,245,0 +170742484735,245,0 +170742484783,245,0 +170742484833,245,0 +170742484881,245,0 +170742484929,245,0 +170742484978,245,0 +170742485026,245,0 +170742485074,246,0 +170742485123,245,0 +170742485171,245,0 +170742485219,245,0 +170742485269,245,0 +170742485317,245,0 +170742485365,245,0 +170742485414,245,0 +170742485462,245,0 +170742485510,245,0 +170742485560,245,0 +170742485608,245,0 +170742485657,245,0 +170742485705,245,0 +170742485753,245,0 +170742485803,245,0 +170742485852,245,0 +170742485902,245,0 +170742485951,245,0 +170742486001,245,0 +170742486049,245,0 +170742486097,245,0 +170742486145,245,0 +170742486193,245,0 +170742486241,245,0 +170742486290,245,0 +170742486340,245,0 +170742486388,245,0 +170742486435,245,0 +170742486485,245,0 +170742486535,245,0 +170742486583,245,0 +170742486632,245,0 +170742486680,245,0 +170742486729,245,0 +170742486779,245,0 +170742486828,245,0 +170742486876,245,0 +170742486924,245,0 +170742486972,245,0 +170742487020,245,0 +170742487068,245,0 +170742487116,245,0 +170742487166,245,0 +170742487215,245,0 +170742487263,245,0 +170742487311,245,0 +170742487359,245,0 +170742487407,245,0 +170742487455,245,0 +170742487503,245,0 +170742487553,245,0 +170742487601,245,0 +170742487649,245,0 +170742487697,245,0 +170742487745,245,0 +170742487794,245,0 +170742487842,245,0 +170742487890,245,0 +170742487940,245,0 +170742487987,245,0 +170742488035,245,0 +170742488083,245,0 +170742488131,245,0 +170742488179,245,0 +170742488227,245,0 +170742488275,245,0 +170742488323,245,0 +170742488370,245,0 +170742488418,245,0 +170742488466,245,0 +170742488514,245,0 +170742488562,245,0 +170742488610,245,0 +170742488658,245,0 +170742488706,245,0 +170742488755,245,0 +170742488803,244,0 +170742488851,245,0 +170742488901,245,0 +170742488949,245,0 +170742488997,245,0 +170742489045,245,0 +170742489094,245,0 +170742489142,245,0 +170742489190,245,0 +170742489238,245,0 +170742489287,245,0 +170742489337,245,0 +170742489385,245,0 +170742489433,245,0 +170742489481,245,0 +170742489530,245,0 +170742489578,245,0 +170742489626,245,0 +170742489674,245,0 +170742489722,245,0 +170742489770,245,0 +170742489818,245,0 +170742489868,245,0 +170742489916,245,0 +170742489963,245,0 +170742490011,245,0 +170742490059,245,0 +170742490107,245,0 +170742490155,245,0 +170742490203,245,0 +170742490251,245,0 +170742490299,245,0 +170742490347,245,0 +170742490395,245,0 +170742490442,245,0 +170742490490,245,0 +170742490540,245,0 +170742490588,245,0 +170742490636,245,0 +170742490684,245,0 +170742490733,245,0 +170742490781,245,0 +170742490831,245,0 +170742490879,245,0 +170742490927,245,0 +170742490975,245,0 +170742491023,245,0 +170742491070,245,0 +170742491118,245,0 +170742491168,245,0 +170742491216,245,0 +170742491263,245,0 +170742491313,245,0 +170742491361,245,0 +170742491409,245,0 +170742491457,245,0 +170742491505,245,0 +170742491554,245,0 +170742491602,245,0 +170742491650,245,0 +170742491700,245,0 +170742491749,245,0 +170742491797,245,0 +170742491847,245,0 +170742491896,245,0 +170742491946,245,0 +170742491995,245,0 +170742492043,245,0 +170742492093,245,0 +170742492142,245,0 +170742492190,245,0 +170742492238,245,0 +170742492286,245,0 +170742492334,245,0 +170742492382,245,0 +170742492429,245,0 +170742492477,245,0 +170742492525,245,0 +170742492573,245,0 +170742492621,245,0 +170742492669,245,0 +170742492717,245,0 +170742492765,245,0 +170742492812,245,0 +170742492860,245,0 +170742492908,245,0 +170742492956,245,0 +170742493004,245,0 +170742493054,245,0 +170742493102,245,0 +170742493150,245,0 +170742493198,245,0 +170742493247,245,0 +170742493295,245,0 +170742493343,245,0 +170742493391,245,0 +170742493439,245,0 +170742493487,245,0 +170742493536,245,0 +170742493584,245,0 +170742493632,245,0 +170742493680,245,0 +170742493730,245,0 +170742493778,245,0 +170742493826,245,0 +170742493875,245,0 +170742493923,245,0 +170742493971,245,0 +170742494019,245,0 +170742494067,245,0 +170742494115,245,0 +170742494163,245,0 +170742494211,245,0 +170742494258,245,0 +170742494306,245,0 +170742494354,245,0 +170742494402,245,0 +170742494450,245,0 +170742494498,245,0 +170742494547,245,0 +170742494595,245,0 +170742494645,245,0 +170742494693,245,0 +170742494742,245,0 +170742494790,245,0 +170742494838,245,0 +170742494886,245,0 +170742494934,245,0 +170742494984,245,0 +170742495033,245,0 +170742495081,245,0 +170742495129,245,0 +170742495177,245,0 +170742495225,245,0 +170742495274,245,0 +170742495322,245,0 +170742495372,245,0 +170742495420,245,0 +170742495468,245,0 +170742495516,245,0 +170742495565,245,0 +170742495613,245,0 +170742495661,245,0 +170742495711,245,0 +170742495759,245,0 +170742495808,245,0 +170742495858,245,0 +170742495906,245,0 +170742495954,245,0 +170742496001,245,0 +170742496049,245,0 +170742496097,245,0 +170742496145,245,0 +170742496193,245,0 +170742496241,245,0 +170742496289,245,0 +170742496338,245,0 +170742496386,245,0 +170742496434,245,0 +170742496484,245,0 +170742496533,245,0 +170742496581,245,0 +170742496629,245,0 +170742496677,245,0 +170742496725,245,0 +170742496774,245,0 +170742496824,245,0 +170742496872,245,0 +170742496920,245,0 +170742496968,245,0 +170742497016,245,0 +170742497064,245,0 +170742497111,245,0 +170742497159,245,0 +170742497207,245,0 +170742497255,245,0 +170742497303,245,0 +170742497351,245,0 +170742497399,245,0 +170742497447,245,0 +170742497494,245,0 +170742497542,245,0 +170742497590,245,0 +170742497638,245,0 +170742497688,245,0 +170742497737,245,0 +170742497785,245,0 +170742497833,245,0 +170742497881,245,0 +170742497929,245,0 +170742497977,245,0 +170742498025,245,0 +170742498073,245,0 +170742498122,245,0 +170742498170,245,0 +170742498218,245,0 +170742498266,245,0 +170742498314,245,0 +170742498361,245,0 +170742498409,245,0 +170742498459,245,0 +170742498507,245,0 +170742498556,245,0 +170742498606,245,0 +170742498655,245,0 +170742498703,245,0 +170742498751,245,0 +170742498799,245,0 +170742498847,245,0 +170742498897,245,0 +170742498945,245,0 +170742498993,245,0 +170742499042,245,0 +170742499092,245,0 +170742499141,245,0 +170742499189,245,0 +170742499237,245,0 +170742499285,245,0 +170742499333,245,0 +170742499381,245,0 +170742499428,245,0 +170742499476,245,0 +170742499524,245,0 +170742499572,245,0 +170742499620,245,0 +170742499668,245,0 +170742499718,245,0 +170742499766,245,0 +170742499814,245,0 +170742499862,245,0 +170742499909,245,0 +170742499957,245,0 +170742500005,245,0 +170742500055,245,0 +170742500104,245,0 +170742500152,245,0 +170742500202,245,0 +170742500250,245,0 +170742500299,245,0 +170742500347,245,0 +170742500395,245,0 +170742500443,245,0 +170742500491,245,0 +170742500539,245,0 +170742500588,245,0 +170742500636,245,0 +170742500684,245,0 +170742500732,245,0 +170742500780,245,0 +170742500828,245,0 +170742500876,245,0 +170742500924,245,0 +170742500972,245,0 +170742501020,245,0 +170742501068,245,0 +170742501117,245,0 +170742501165,245,0 +170742501213,245,0 +170742501261,245,0 +170742501309,245,0 +170742501357,245,0 +170742501405,245,0 +170742501453,245,0 +170742501501,245,0 +170742501549,245,0 +170742501597,245,0 +170742501646,245,0 +170742501696,245,0 +170742501745,245,0 +170742501793,245,0 +170742501841,245,0 +170742501889,245,0 +170742501937,245,0 +170742501985,245,0 +170742502034,245,0 +170742502082,245,0 +170742502130,245,0 +170742502178,245,0 +170742502227,245,0 +170742502275,245,0 +170742502325,245,0 +170742502373,245,0 +170742502422,245,0 +170742502472,245,0 +170742502520,245,0 +170742502568,245,0 +170742502617,245,0 +170742502665,245,0 +170742502715,245,0 +170742502764,245,0 +170742502812,245,0 +170742502860,245,0 +170742502908,245,0 +170742502956,245,0 +170742503004,245,0 +170742503054,245,0 +170742503103,245,0 +170742503151,245,0 +170742503201,245,0 +170742503249,245,0 +170742503298,245,0 +170742503348,245,0 +170742503397,245,0 +170742503445,245,0 +170742503493,245,0 +170742503542,245,0 +170742503592,245,0 +170742503640,245,0 +170742503688,245,0 +170742503736,245,0 +170742503784,245,0 +170742503832,245,0 +170742503881,245,0 +170742503929,245,0 +170742503977,245,0 +170742504025,245,0 +170742504073,245,0 +170742504121,245,0 +170742504170,245,0 +170742504220,245,0 +170742504269,245,0 +170742504319,245,0 +170742504368,245,0 +170742504416,245,0 +170742504466,245,0 +170742504513,245,0 +170742504561,245,0 +170742504609,245,0 +170742504657,245,0 +170742504705,245,0 +170742504755,245,0 +170742504803,245,0 +170742504850,245,0 +170742504898,245,0 +170742504948,245,0 +170742504996,245,0 +170742505044,245,0 +170742505092,245,0 +170742505140,245,0 +170742505189,245,0 +170742505237,245,0 +170742505287,245,0 +170742505336,245,0 +170742505384,245,0 +170742505432,245,0 +170742505480,245,0 +170742505528,245,0 +170742505577,245,0 +170742505627,245,0 +170742505676,245,0 +170742505726,245,0 +170742505774,245,0 +170742505822,245,0 +170742505870,245,0 +170742505919,245,0 +170742505967,245,0 +170742506017,245,0 +170742506065,245,0 +170742506113,245,0 +170742506161,245,0 +170742506210,245,0 +170742506258,245,0 +170742506308,245,0 +170742506356,245,0 +170742506405,245,0 +170742506453,245,0 +170742506501,245,0 +170742506549,245,0 +170742506597,245,0 +170742506646,245,0 +170742506694,245,0 +170742506742,245,0 +170742506790,245,0 +170742506838,245,0 +170742506886,245,0 +170742506934,245,0 +170742506984,245,0 +170742507032,245,0 +170742507081,245,0 +170742507129,245,0 +170742507177,245,0 +170742507225,245,0 +170742507275,245,0 +170742507323,245,0 +170742507371,245,0 +170742507420,245,0 +170742507468,245,0 +170742507518,245,0 +170742507566,245,0 +170742507615,245,0 +170742507663,245,0 +170742507713,245,0 +170742507762,245,0 +170742507810,245,0 +170742507858,245,0 +170742507908,245,0 +170742507957,245,0 +170742508005,245,0 +170742508054,245,0 +170742508104,245,0 +170742508152,245,0 +170742508200,245,0 +170742508249,245,0 +170742508297,245,0 +170742508347,245,0 +170742508395,245,0 +170742508443,246,0 +170742508492,245,0 +170742508542,245,0 +170742508591,245,0 +170742508639,245,0 +170742508689,245,0 +170742508737,245,0 +170742508785,245,0 +170742508834,245,0 +170742508884,245,0 +170742508933,245,0 +170742508981,245,0 +170742509029,245,0 +170742509077,245,0 +170742509125,245,0 +170742509173,245,0 +170742509221,245,0 +170742509270,245,0 +170742509318,245,0 +170742509366,245,0 +170742509416,245,0 +170742509465,245,0 +170742509513,245,0 +170742509561,245,0 +170742509611,245,0 +170742509660,245,0 +170742509708,245,0 +170742509758,245,0 +170742509808,245,0 +170742509857,245,0 +170742509907,245,0 +170742509956,245,0 +170742510004,245,0 +170742510052,245,0 +170742510100,245,0 +170742510149,245,0 +170742510197,245,0 +170742510245,245,0 +170742510295,245,0 +170742510343,245,0 +170742510391,245,0 +170742510439,245,0 +170742510488,245,0 +170742510536,245,0 +170742510584,245,0 +170742510632,245,0 +170742510682,245,0 +170742510730,245,0 +170742510778,245,0 +170742510826,245,0 +170742510874,245,0 +170742510922,245,0 +170742510970,245,0 +170742511018,245,0 +170742511066,245,0 +170742511115,245,0 +170742511163,245,0 +170742511211,245,0 +170742511259,245,0 +170742511307,245,0 +170742511355,245,0 +170742511405,245,0 +170742511453,245,0 +170742511500,245,0 +170742511550,245,0 +170742511599,245,0 +170742511647,245,0 +170742511695,245,0 +170742511743,245,0 +170742511791,245,0 +170742511839,245,0 +170742511889,245,0 +170742511937,245,0 +170742511985,245,0 +170742512034,245,0 +170742512082,245,0 +170742512130,245,0 +170742512178,245,0 +170742512226,245,0 +170742512274,245,0 +170742512322,245,0 +170742512370,245,0 +170742512418,245,0 +170742512466,245,0 +170742512514,245,0 +170742512562,245,0 +170742512610,245,0 +170742512659,245,0 +170742512707,245,0 +170742512757,245,0 +170742512805,245,0 +170742512853,245,0 +170742512902,244,0 +170742512950,245,0 +170742512998,245,0 +170742513048,245,0 +170742513096,245,0 +170742513145,245,0 +170742513195,245,0 +170742513243,245,0 +170742513292,245,0 +170742513340,245,0 +170742513390,245,0 +170742513439,245,0 +170742513487,245,0 +170742513535,245,0 +170742513583,245,0 +170742513633,245,0 +170742513681,245,0 +170742513729,245,0 +170742513777,245,0 +170742513825,245,0 +170742513873,245,0 +170742513920,245,0 +170742513968,245,0 +170742514016,245,0 +170742514066,245,0 +170742514116,245,0 +170742514163,245,0 +170742514211,245,0 +170742514261,245,0 +170742514309,245,0 +170742514358,245,0 +170742514406,245,0 +170742514454,245,0 +170742514504,245,0 +170742514553,245,0 +170742514601,245,0 +170742514651,245,0 +170742514700,245,0 +170742514748,245,0 +170742514798,245,0 +170742514847,245,0 +170742514895,245,0 +170742514943,245,0 +170742514991,245,0 +170742515039,245,0 +170742515089,245,0 +170742515137,245,0 +170742515185,245,0 +170742515234,245,0 +170742515282,245,0 +170742515332,245,0 +170742515380,245,0 +170742515428,245,0 +170742515476,245,0 +170742515524,245,0 +170742515573,245,0 +170742515622,245,0 +170742515670,245,0 +170742515720,245,0 +170742515769,245,0 +170742515817,245,0 +170742515865,245,0 +170742515913,245,0 +170742515963,245,0 +170742516011,245,0 +170742516059,245,0 +170742516107,245,0 +170742516155,245,0 +170742516203,245,0 +170742516251,245,0 +170742516300,245,0 +170742516348,245,0 +170742516396,245,0 +170742516444,245,0 +170742516494,245,0 +170742516543,245,0 +170742516591,245,0 +170742516641,245,0 +170742516689,245,0 +170742516737,245,0 +170742516785,245,0 +170742516833,245,0 +170742516882,245,0 +170742516932,245,0 +170742516981,245,0 +170742517029,245,0 +170742517077,245,0 +170742517125,245,0 +170742517175,245,0 +170742517223,245,0 +170742517272,245,0 +170742517321,245,0 +170742517371,245,0 +170742517419,245,0 +170742517467,245,0 +170742517515,245,0 +170742517563,245,0 +170742517611,245,0 +170742517659,245,0 +170742517707,245,0 +170742517755,245,0 +170742517803,245,0 +170742517851,245,0 +170742517900,245,0 +170742517950,245,0 +170742517999,245,0 +170742518047,245,0 +170742518095,245,0 +170742518143,245,0 +170742518191,245,0 +170742518240,245,0 +170742518290,245,0 +170742518338,245,0 +170742518386,245,0 +170742518434,245,0 +170742518483,245,0 +170742518531,245,0 +170742518579,245,0 +170742518629,245,0 +170742518676,245,0 +170742518726,245,0 +170742518774,245,0 +170742518822,245,0 +170742518871,245,0 +170742518919,245,0 +170742518967,245,0 +170742519015,245,0 +170742519062,245,0 +170742519110,245,0 +170742519158,245,0 +170742519206,245,0 +170742519256,245,0 +170742519304,245,0 +170742519352,245,0 +170742519400,245,0 +170742519448,245,0 +170742519497,245,0 +170742519547,245,0 +170742519596,245,0 +170742519644,245,0 +170742519692,245,0 +170742519740,245,0 +170742519788,245,0 +170742519836,245,0 +170742519884,245,0 +170742519932,245,0 +170742519980,245,0 +170742520028,245,0 +170742520075,245,0 +170742520125,245,0 +170742520173,245,0 +170742520221,245,0 +170742520268,245,0 +170742520316,245,0 +170742520364,245,0 +170742520412,245,0 +170742520460,245,0 +170742520508,245,0 +170742520556,245,0 +170742520604,245,0 +170742520652,245,0 +170742520701,245,0 +170742520749,245,0 +170742520799,245,0 +170742520848,245,0 +170742520898,245,0 +170742520947,245,0 +170742520997,245,0 +170742521045,245,0 +170742521093,245,0 +170742521141,245,0 +170742521189,245,0 +170742521236,245,0 +170742521284,245,0 +170742521332,245,0 +170742521380,245,0 +170742521430,245,0 +170742521478,245,0 +170742521526,245,0 +170742521575,245,0 +170742521625,245,0 +170742521674,245,0 +170742521722,245,0 +170742521770,245,0 +170742521818,245,0 +170742521866,245,0 +170742521916,245,0 +170742521964,245,0 +170742522011,245,0 +170742522059,245,0 +170742522109,245,0 +170742522158,245,0 +170742522206,245,0 +170742522256,245,0 +170742522304,245,0 +170742522352,245,0 +170742522400,245,0 +170742522448,245,0 +170742522497,245,0 +170742522545,245,0 +170742522593,245,0 +170742522641,245,0 +170742522689,245,0 +170742522737,245,0 +170742522785,245,0 +170742522833,245,0 +170742522881,245,0 +170742522930,245,0 +170742522978,245,0 +170742523026,245,0 +170742523074,245,0 +170742523124,245,0 +170742523171,245,0 +170742523219,245,0 +170742523267,245,0 +170742523315,245,0 +170742523363,245,0 +170742523411,245,0 +170742523460,245,0 +170742523508,245,0 +170742523556,245,0 +170742523604,245,0 +170742523652,245,0 +170742523702,245,0 +170742523750,245,0 +170742523798,245,0 +170742523847,245,0 +170742523897,245,0 +170742523946,245,0 +170742523994,245,0 +170742524042,245,0 +170742524090,245,0 +170742524140,245,0 +170742524188,245,0 +170742524236,245,0 +170742524284,245,0 +170742524332,245,0 +170742524381,245,0 +170742524431,245,0 +170742524479,245,0 +170742524527,245,0 +170742524576,245,0 +170742524624,245,0 +170742524673,245,0 +170742524722,245,0 +170742524771,245,0 +170742524821,245,0 +170742524870,245,0 +170742524920,245,0 +170742524968,245,0 +170742525017,245,0 +170742525067,245,0 +170742525115,245,0 +170742525163,245,0 +170742525211,245,0 +170742525259,245,0 +170742525307,245,0 +170742525356,245,0 +170742525406,245,0 +170742525455,245,0 +170742525503,245,0 +170742525553,245,0 +170742525600,245,0 +170742525650,245,0 +170742525700,245,0 +170742525749,245,0 +170742525797,245,0 +170742525845,245,0 +170742525893,245,0 +170742525941,245,0 +170742525990,245,0 +170742526040,245,0 +170742526088,245,0 +170742526136,245,0 +170742526185,245,0 +170742526235,245,0 +170742526283,245,0 +170742526332,245,0 +170742526382,245,0 +170742526430,245,0 +170742526478,245,0 +170742526526,245,0 +170742526575,245,0 +170742526623,245,0 +170742526671,245,0 +170742526719,245,0 +170742526767,245,0 +170742526815,245,0 +170742526863,245,0 +170742526913,245,0 +170742526962,244,0 +170742527010,245,0 +170742527060,245,0 +170742527109,245,0 +170742527159,245,0 +170742527208,245,0 +170742527256,245,0 +170742527304,245,0 +170742527354,245,0 +170742527403,245,0 +170742527453,245,0 +170742527501,245,0 +170742527548,245,0 +170742527598,245,0 +170742527646,245,0 +170742527694,245,0 +170742527743,245,0 +170742527793,245,0 +170742527841,245,0 +170742527889,245,0 +170742527938,245,0 +170742527988,245,0 +170742528037,245,0 +170742528087,245,0 +170742528136,245,0 +170742528184,245,0 +170742528234,245,0 +170742528283,245,0 +170742528331,245,0 +170742528379,245,0 +170742528429,245,0 +170742528477,245,0 +170742528526,245,0 +170742528574,245,0 +170742528622,245,0 +170742528672,245,0 +170742528721,245,0 +170742528769,245,0 +170742528817,245,0 +170742528865,245,0 +170742528913,245,0 +170742528961,245,0 +170742529009,245,0 +170742529058,245,0 +170742529106,245,0 +170742529155,245,0 +170742529204,245,0 +170742529252,245,0 +170742529302,245,0 +170742529351,245,0 +170742529401,245,0 +170742529449,245,0 +170742529498,245,0 +170742529548,245,0 +170742529597,245,0 +170742529645,245,0 +170742529693,245,0 +170742529743,245,0 +170742529791,245,0 +170742529840,245,0 +170742529890,245,0 +170742529939,245,0 +170742529987,245,0 +170742530037,245,0 +170742530086,245,0 +170742530134,245,0 +170742530182,245,0 +170742530231,245,0 +170742530279,245,0 +170742530329,245,0 +170742530377,245,0 +170742530425,244,0 +170742530473,245,0 +170742530521,245,0 +170742530569,245,0 +170742530618,245,0 +170742530666,245,0 +170742530716,245,0 +170742530764,245,0 +170742530812,245,0 +170742530860,245,0 +170742530908,245,0 +170742530957,245,0 +170742531005,245,0 +170742531053,245,0 +170742531101,245,0 +170742531149,245,0 +170742531197,245,0 +170742531245,245,0 +170742531293,245,0 +170742531341,245,0 +170742531390,245,0 +170742531440,245,0 +170742531488,245,0 +170742531536,245,0 +170742531584,245,0 +170742531633,245,0 +170742531683,245,0 +170742531731,245,0 +170742531779,245,0 +170742531827,245,0 +170742531876,245,0 +170742531924,245,0 +170742531973,245,0 +170742532021,245,0 +170742532069,245,0 +170742532119,245,0 +170742532168,245,0 +170742532218,245,0 +170742532266,245,0 +170742532315,245,0 +170742532365,245,0 +170742532413,245,0 +170742532461,245,0 +170742532509,245,0 +170742532557,245,0 +170742532606,245,0 +170742532654,245,0 +170742532702,245,0 +170742532750,245,0 +170742532798,245,0 +170742532846,245,0 +170742532894,245,0 +170742532944,245,0 +170742532992,245,0 +170742533040,245,0 +170742533089,245,0 +170742533137,245,0 +170742533187,245,0 +170742533236,245,0 +170742533284,245,0 +170742533332,245,0 +170742533380,245,0 +170742533428,245,0 +170742533476,245,0 +170742533525,245,0 +170742533573,245,0 +170742533621,245,0 +170742533669,245,0 +170742533719,245,0 +170742533768,245,0 +170742533816,245,0 +170742533864,245,0 +170742533914,245,0 +170742533962,245,0 +170742534010,245,0 +170742534058,245,0 +170742534106,245,0 +170742534155,245,0 +170742534203,245,0 +170742534251,245,0 +170742534299,245,0 +170742534347,245,0 +170742534395,245,0 +170742534443,245,0 +170742534492,245,0 +170742534542,245,0 +170742534591,245,0 +170742534641,245,0 +170742534689,245,0 +170742534737,245,0 +170742534786,245,0 +170742534834,245,0 +170742534882,245,0 +170742534931,245,0 +170742534979,245,0 +170742535027,245,0 +170742535075,245,0 +170742535123,245,0 +170742535173,245,0 +170742535221,245,0 +170742535270,245,0 +170742535320,245,0 +170742535368,245,0 +170742535416,245,0 +170742535464,245,0 +170742535513,245,0 +170742535563,245,0 +170742535611,245,0 +170742535658,245,0 +170742535706,245,0 +170742535754,245,0 +170742535802,245,0 +170742535852,245,0 +170742535900,245,0 +170742535948,245,0 +170742535996,245,0 +170742536045,245,0 +170742536093,245,0 +170742536141,245,0 +170742536189,245,0 +170742536239,245,0 +170742536287,245,0 +170742536336,245,0 +170742536386,245,0 +170742536435,245,0 +170742536483,245,0 +170742536531,245,0 +170742536579,245,0 +170742536627,245,0 +170742536675,245,0 +170742536723,245,0 +170742536771,245,0 +170742536819,245,0 +170742536868,245,0 +170742536918,245,0 +170742536966,245,0 +170742537014,245,0 +170742537062,245,0 +170742537110,245,0 +170742537158,245,0 +170742537207,245,0 +170742537257,245,0 +170742537305,245,0 +170742537353,245,0 +170742537401,245,0 +170742537448,245,0 +170742537496,245,0 +170742537544,245,0 +170742537592,245,0 +170742537640,245,0 +170742537688,245,0 +170742537737,245,0 +170742537785,245,0 +170742537833,245,0 +170742537881,245,0 +170742537929,245,0 +170742537977,245,0 +170742538025,245,0 +170742538073,245,0 +170742538120,245,0 +170742538168,245,0 +170742538216,245,0 +170742538264,245,0 +170742538312,245,0 +170742538360,245,0 +170742538408,245,0 +170742538456,245,0 +170742538504,245,0 +170742538552,245,0 +170742538601,245,0 +170742538649,246,0 +170742538697,245,0 +170742538747,245,0 +170742538795,245,0 +170742538843,245,0 +170742538891,245,0 +170742538939,245,0 +170742538987,245,0 +170742539035,245,0 +170742539083,245,0 +170742539133,245,0 +170742539182,245,0 +170742539230,245,0 +170742539278,245,0 +170742539326,245,0 +170742539375,245,0 +170742539423,245,0 +170742539471,245,0 +170742539519,245,0 +170742539567,245,0 +170742539615,245,0 +170742539663,245,0 +170742539711,245,0 +170742539759,245,0 +170742539807,245,0 +170742539855,245,0 +170742539902,245,0 +170742539952,245,0 +170742540000,245,0 +170742540050,246,0 +170742540098,245,0 +170742540146,245,0 +170742540194,245,0 +170742540241,245,0 +170742540289,245,0 +170742540339,245,0 +170742540387,245,0 +170742540435,245,0 +170742540483,245,0 +170742540532,245,0 +170742540580,245,0 +170742540630,245,0 +170742540678,245,0 +170742540726,245,0 +170742540774,245,0 +170742540822,245,0 +170742540871,245,0 +170742540919,245,0 +170742540967,245,0 +170742541017,245,0 +170742541065,245,0 +170742541114,245,0 +170742541164,245,0 +170742541213,245,0 +170742541261,245,0 +170742541309,245,0 +170742541358,245,0 +170742541406,245,0 +170742541454,245,0 +170742541502,245,0 +170742541550,245,0 +170742541598,245,0 +170742541646,245,0 +170742541694,245,0 +170742541742,245,0 +170742541790,245,0 +170742541840,245,0 +170742541888,245,0 +170742541937,245,0 +170742541987,245,0 +170742542035,245,0 +170742542084,245,0 +170742542134,245,0 +170742542183,245,0 +170742542233,245,0 +170742542281,245,0 +170742542330,245,0 +170742542378,245,0 +170742542428,245,0 +170742542477,245,0 +170742542525,245,0 +170742542573,245,0 +170742542623,245,0 +170742542671,245,0 +170742542719,245,0 +170742542768,245,0 +170742542818,245,0 +170742542866,245,0 +170742542914,245,0 +170742542963,245,0 +170742543011,245,0 +170742543059,245,0 +170742543108,245,0 +170742543158,245,0 +170742543206,245,0 +170742543254,245,0 +170742543302,245,0 +170742543351,245,0 +170742543399,245,0 +170742543449,245,0 +170742543497,245,0 +170742543545,245,0 +170742543593,245,0 +170742543641,245,0 +170742543688,245,0 +170742543738,245,0 +170742543788,245,0 +170742543836,245,0 +170742543884,245,0 +170742543932,245,0 +170742543979,245,0 +170742544027,245,0 +170742544077,245,0 +170742544125,245,0 +170742544173,245,0 +170742544221,245,0 +170742544269,245,0 +170742544318,245,0 +170742544366,245,0 +170742544414,245,0 +170742544462,245,0 +170742544512,245,0 +170742544560,245,0 +170742544608,245,0 +170742544657,245,0 +170742544707,245,0 +170742544755,245,0 +170742544803,245,0 +170742544852,245,0 +170742544900,245,0 +170742544948,245,0 +170742544996,245,0 +170742545044,245,0 +170742545094,245,0 +170742545141,245,0 +170742545191,245,0 +170742545239,245,0 +170742545287,245,0 +170742545336,245,0 +170742545384,245,0 +170742545434,245,0 +170742545482,245,0 +170742545530,245,0 +170742545578,245,0 +170742545626,245,0 +170742545674,245,0 +170742545723,245,0 +170742545773,245,0 +170742545821,245,0 +170742545870,245,0 +170742545918,245,0 +170742545966,245,0 +170742546014,245,0 +170742546064,245,0 +170742546112,245,0 +170742546160,245,0 +170742546209,245,0 +170742546257,245,0 +170742546305,245,0 +170742546353,245,0 +170742546401,245,0 +170742546449,245,0 +170742546497,245,0 +170742546545,245,0 +170742546593,245,0 +170742546642,245,0 +170742546690,245,0 +170742546738,245,0 +170742546786,245,0 +170742546836,245,0 +170742546884,245,0 +170742546932,245,0 +170742546980,245,0 +170742547028,245,0 +170742547077,245,0 +170742547127,245,0 +170742547175,245,0 +170742547223,245,0 +170742547271,245,0 +170742547318,245,0 +170742547366,245,0 +170742547416,245,0 +170742547465,245,0 +170742547515,245,0 +170742547563,245,0 +170742547612,245,0 +170742547662,245,0 +170742547710,245,0 +170742547758,245,0 +170742547806,245,0 +170742547854,245,0 +170742547902,245,0 +170742547950,245,0 +170742547998,245,0 +170742548046,245,0 +170742548094,245,0 +170742548143,245,0 +170742548191,245,0 +170742548239,245,0 +170742548289,245,0 +170742548337,245,0 +170742548386,245,0 +170742548436,245,0 +170742548484,245,0 +170742548533,245,0 +170742548581,245,0 +170742548629,245,0 +170742548677,245,0 +170742548725,245,0 +170742548774,245,0 +170742548822,245,0 +170742548870,245,0 +170742548918,245,0 +170742548966,245,0 +170742549016,245,0 +170742549064,245,0 +170742549112,245,0 +170742549160,245,0 +170742549209,245,0 +170742549257,245,0 +170742549305,245,0 +170742549355,245,0 +170742549402,245,0 +170742549450,245,0 +170742549498,245,0 +170742549546,245,0 +170742549594,245,0 +170742549642,245,0 +170742549692,245,0 +170742549741,245,0 +170742549789,245,0 +170742549839,245,0 +170742549888,245,0 +170742549938,245,0 +170742549986,245,0 +170742550034,245,0 +170742550082,245,0 +170742550130,245,0 +170742550178,245,0 +170742550226,245,0 +170742550274,245,0 +170742550322,245,0 +170742550370,245,0 +170742550417,245,0 +170742550467,245,0 +170742550515,245,0 +170742550563,245,0 +170742550612,245,0 +170742550660,245,0 +170742550708,245,0 +170742550756,245,0 +170742550804,245,0 +170742550852,245,0 +170742550900,245,0 +170742550948,245,0 +170742550996,245,0 +170742551045,245,0 +170742551095,245,0 +170742551143,245,0 +170742551192,245,0 +170742551240,245,0 +170742551288,245,0 +170742551336,245,0 +170742551384,245,0 +170742551434,245,0 +170742551481,245,0 +170742551529,245,0 +170742551577,245,0 +170742551627,245,0 +170742551675,245,0 +170742551723,245,0 +170742551772,245,0 +170742551820,245,0 +170742551868,245,0 +170742551916,245,0 +170742551964,245,0 +170742552012,245,0 +170742552060,245,0 +170742552108,245,0 +170742552156,245,0 +170742552203,245,0 +170742552253,245,0 +170742552301,245,0 +170742552349,245,0 +170742552397,245,0 +170742552444,245,0 +170742552492,245,0 +170742552540,245,0 +170742552588,245,0 +170742552636,245,0 +170742552684,245,0 +170742552732,245,0 +170742552780,245,0 +170742552827,245,0 +170742552877,245,0 +170742552925,245,0 +170742552974,245,0 +170742553022,245,0 +170742553070,245,0 +170742553118,245,0 +170742553166,245,0 +170742553214,245,0 +170742553264,245,0 +170742553312,245,0 +170742553361,245,0 +170742553409,245,0 +170742553457,245,0 +170742553506,245,0 +170742553554,245,0 +170742553604,245,0 +170742553654,245,0 +170742553702,245,0 +170742553749,245,0 +170742553799,245,0 +170742553847,245,0 +170742553895,245,0 +170742553944,245,0 +170742553992,245,0 +170742554040,245,0 +170742554088,245,0 +170742554136,245,0 +170742554184,245,0 +170742554232,245,0 +170742554279,245,0 +170742554327,245,0 +170742554375,245,0 +170742554423,245,0 +170742554472,245,0 +170742554520,244,0 +170742554570,245,0 +170742554618,245,0 +170742554666,245,0 +170742554715,245,0 +170742554765,245,0 +170742554814,245,0 +170742554862,245,0 +170742554910,245,0 +170742554958,245,0 +170742555006,245,0 +170742555054,245,0 +170742555104,245,0 +170742555152,245,0 +170742555200,245,0 +170742555248,245,0 +170742555297,245,0 +170742555345,245,0 +170742555393,245,0 +170742555441,245,0 +170742555489,245,0 +170742555538,245,0 +170742555586,245,0 +170742555636,245,0 +170742555684,245,0 +170742555732,245,0 +170742555780,245,0 +170742555828,245,0 +170742555876,245,0 +170742555924,245,0 +170742555973,245,0 +170742556021,245,0 +170742556069,245,0 +170742556119,245,0 +170742556166,245,0 +170742556215,245,0 +170742556264,245,0 +170742556312,245,0 +170742556360,245,0 +170742556408,245,0 +170742556456,245,0 +170742556504,245,0 +170742556553,245,0 +170742556603,245,0 +170742556652,245,0 +170742556700,245,0 +170742556748,245,0 +170742556798,245,0 +170742556846,245,0 +170742556894,245,0 +170742556942,245,0 +170742556989,245,0 +170742557037,245,0 +170742557085,245,0 +170742557133,245,0 +170742557181,245,0 +170742557229,245,0 +170742557277,245,0 +170742557325,245,0 +170742557373,245,0 +170742557422,245,0 +170742557470,245,0 +170742557518,245,0 +170742557567,245,0 +170742557615,245,0 +170742557663,245,0 +170742557711,245,0 +170742557759,245,0 +170742557807,245,0 +170742557855,245,0 +170742557902,245,0 +170742557950,245,0 +170742557998,245,0 +170742558046,245,0 +170742558094,244,0 +170742558142,245,0 +170742558190,245,0 +170742558238,245,0 +170742558287,245,0 +170742558335,245,0 +170742558383,245,0 +170742558431,245,0 +170742558478,245,0 +170742558526,245,0 +170742558576,245,0 +170742558625,245,0 +170742558673,245,0 +170742558721,245,0 +170742558769,245,0 +170742558817,245,0 +170742558865,245,0 +170742558913,245,0 +170742558963,245,0 +170742559012,245,0 +170742559062,245,0 +170742559111,245,0 +170742559159,245,0 +170742559209,245,0 +170742559257,245,0 +170742559306,245,0 +170742559354,245,0 +170742559402,245,0 +170742559450,245,0 +170742559498,245,0 +170742559546,245,0 +170742559594,245,0 +170742559642,245,0 +170742559690,245,0 +170742559738,245,0 +170742559786,245,0 +170742559835,245,0 +170742559885,245,0 +170742559933,245,0 +170742559981,245,0 +170742560029,245,0 +170742560077,245,0 +170742560125,245,0 +170742560174,245,0 +170742560222,245,0 +170742560270,245,0 +170742560320,245,0 +170742560369,245,0 +170742560419,245,0 +170742560467,245,0 +170742560515,245,0 +170742560563,245,0 +170742560611,245,0 +170742560658,245,0 +170742560706,245,0 +170742560756,245,0 +170742560805,245,0 +170742560855,245,0 +170742560903,245,0 +170742560951,245,0 +170742560999,245,0 +170742561047,245,0 +170742561095,245,0 +170742561143,245,0 +170742561191,245,0 +170742561240,245,0 +170742561288,245,0 +170742561336,245,0 +170742561384,245,0 +170742561432,245,0 +170742561482,245,0 +170742561530,245,0 +170742561577,245,0 +170742561627,245,0 +170742561675,245,0 +170742561723,245,0 +170742561771,245,0 +170742561819,245,0 +170742561867,245,0 +170742561916,245,0 +170742561964,245,0 +170742562012,245,0 +170742562062,245,0 +170742562111,245,0 +170742562161,245,0 +170742562210,245,0 +170742562258,245,0 +170742562306,245,0 +170742562356,245,0 +170742562403,245,0 +170742562451,245,0 +170742562499,245,0 +170742562547,245,0 +170742562595,245,0 +170742562645,245,0 +170742562694,245,0 +170742562742,245,0 +170742562790,245,0 +170742562838,245,0 +170742562886,245,0 +170742562934,245,0 +170742562982,245,0 +170742563030,245,0 +170742563078,245,0 +170742563126,245,0 +170742563174,245,0 +170742563222,245,0 +170742563270,245,0 +170742563318,245,0 +170742563366,245,0 +170742563416,245,0 +170742563464,245,0 +170742563512,245,0 +170742563560,245,0 +170742563609,245,0 +170742563659,245,0 +170742563707,245,0 +170742563755,245,0 +170742563803,245,0 +170742563851,245,0 +170742563899,245,0 +170742563947,245,0 +170742563995,245,0 +170742564044,245,0 +170742564092,245,0 +170742564141,245,0 +170742564189,245,0 +170742564239,245,0 +170742564288,245,0 +170742564338,245,0 +170742564386,245,0 +170742564435,245,0 +170742564483,245,0 +170742564531,245,0 +170742564579,245,0 +170742564629,245,0 +170742564678,245,0 +170742564728,245,0 +170742564776,245,0 +170742564824,245,0 +170742564872,245,0 +170742564920,245,0 +170742564967,245,0 +170742565015,245,0 +170742565063,245,0 +170742565113,245,0 +170742565162,245,0 +170742565210,245,0 +170742565260,245,0 +170742565310,245,0 +170742565358,245,0 +170742565407,245,0 +170742565455,245,0 +170742565503,245,0 +170742565551,245,0 +170742565600,245,0 +170742565648,245,0 +170742565696,245,0 +170742565744,245,0 +170742565792,245,0 +170742565842,245,0 +170742565891,245,0 +170742565941,245,0 +170742565990,245,0 +170742566038,245,0 +170742566088,245,0 +170742566136,245,0 +170742566185,245,0 +170742566233,245,0 +170742566283,245,0 +170742566331,245,0 +170742566379,245,0 +170742566427,245,0 +170742566475,245,0 +170742566523,245,0 +170742566571,245,0 +170742566620,245,0 +170742566668,245,0 +170742566718,245,0 +170742566766,245,0 +170742566815,245,0 +170742566865,245,0 +170742566913,245,0 +170742566961,245,0 +170742567009,245,0 +170742567057,245,0 +170742567105,245,0 +170742567153,245,0 +170742567202,245,0 +170742567252,245,0 +170742567300,245,0 +170742567348,245,0 +170742567397,245,0 +170742567447,245,0 +170742567496,245,0 +170742567546,245,0 +170742567595,245,0 +170742567643,245,0 +170742567691,245,0 +170742567739,245,0 +170742567787,245,0 +170742567835,245,0 +170742567883,245,0 +170742567931,245,0 +170742567980,245,0 +170742568028,245,0 +170742568078,245,0 +170742568127,245,0 +170742568175,245,0 +170742568225,245,0 +170742568273,245,0 +170742568322,245,0 +170742568370,245,0 +170742568420,245,0 +170742568469,245,0 +170742568517,245,0 +170742568565,245,0 +170742568613,245,0 +170742568661,245,0 +170742568710,245,0 +170742568758,245,0 +170742568806,245,0 +170742568854,245,0 +170742568903,245,0 +170742568953,245,0 +170742569001,245,0 +170742569049,245,0 +170742569097,245,0 +170742569145,245,0 +170742569195,245,0 +170742569243,245,0 +170742569290,245,0 +170742569338,245,0 +170742569388,245,0 +170742569436,245,0 +170742569484,245,0 +170742569532,245,0 +170742569580,245,0 +170742569629,245,0 +170742569679,245,0 +170742569727,245,0 +170742569775,245,0 +170742569823,245,0 +170742569871,245,0 +170742569919,245,0 +170742569968,245,0 +170742570016,245,0 +170742570064,245,0 +170742570112,245,0 +170742570162,245,0 +170742570210,245,0 +170742570258,245,0 +170742570307,245,0 +170742570355,245,0 +170742570404,245,0 +170742570452,245,0 +170742570500,245,0 +170742570550,245,0 +170742570599,245,0 +170742570647,245,0 +170742570695,245,0 +170742570743,245,0 +170742570791,245,0 +170742570839,245,0 +170742570889,245,0 +170742570938,245,0 +170742570988,245,0 +170742571036,245,0 +170742571084,245,0 +170742571132,245,0 +170742571180,245,0 +170742571228,245,0 +170742571276,245,0 +170742571324,245,0 +170742571372,245,0 +170742571421,245,0 +170742571471,245,0 +170742571519,245,0 +170742571567,245,0 +170742571616,245,0 +170742571664,245,0 +170742571714,245,0 +170742571763,245,0 +170742571811,245,0 +170742571859,245,0 +170742571908,245,0 +170742571956,245,0 +170742572004,245,0 +170742572052,245,0 +170742572100,245,0 +170742572148,245,0 +170742572196,245,0 +170742572244,245,0 +170742572294,245,0 +170742572343,245,0 +170742572391,245,0 +170742572441,245,0 +170742572489,245,0 +170742572537,245,0 +170742572586,245,0 +170742572636,245,0 +170742572685,245,0 +170742572733,245,0 +170742572781,245,0 +170742572831,245,0 +170742572880,245,0 +170742572930,245,0 +170742572978,245,0 +170742573027,245,0 +170742573075,245,0 +170742573123,245,0 +170742573171,245,0 +170742573219,245,0 +170742573268,245,0 +170742573316,245,0 +170742573366,245,0 +170742573414,245,0 +170742573463,245,0 +170742573513,245,0 +170742573561,245,0 +170742573610,245,0 +170742573658,245,0 +170742573708,245,0 +170742573757,245,0 +170742573807,245,0 +170742573856,245,0 +170742573904,245,0 +170742573952,245,0 +170742574002,245,0 +170742574050,245,0 +170742574099,245,0 +170742574149,245,0 +170742574197,245,0 +170742574245,245,0 +170742574294,245,0 +170742574342,245,0 +170742574390,245,0 +170742574438,245,0 +170742574486,245,0 +170742574534,245,0 +170742574582,245,0 +170742574631,245,0 +170742574679,245,0 +170742574728,245,0 +170742574778,245,0 +170742574827,245,0 +170742574875,245,0 +170742574923,245,0 +170742574973,245,0 +170742575021,245,0 +170742575070,245,0 +170742575118,245,0 +170742575166,245,0 +170742575216,245,0 +170742575264,245,0 +170742575313,245,0 +170742575361,245,0 +170742575411,245,0 +170742575459,245,0 +170742575508,245,0 +170742575556,245,0 +170742575606,245,0 +170742575653,245,0 +170742575702,245,0 +170742575750,245,0 +170742575797,245,0 +170742575845,245,0 +170742575893,245,0 +170742575941,245,0 +170742575989,245,0 +170742576037,245,0 +170742576085,245,0 +170742576133,245,0 +170742576181,245,0 +170742576229,245,0 +170742576277,245,0 +170742576325,245,0 +170742576375,245,0 +170742576424,245,0 +170742576474,245,0 +170742576522,245,0 +170742576569,245,0 +170742576617,245,0 +170742576665,245,0 +170742576713,245,0 +170742576761,245,0 +170742576809,245,0 +170742576857,245,0 +170742576907,245,0 +170742576955,245,0 +170742577003,245,0 +170742577051,245,0 +170742577099,245,0 +170742577147,245,0 +170742577194,245,0 +170742577244,245,0 +170742577294,245,0 +170742577341,245,0 +170742577389,245,0 +170742577437,245,0 +170742577485,245,0 +170742577533,245,0 +170742577583,245,0 +170742577633,245,0 +170742577682,245,0 +170742577730,245,0 +170742577779,245,0 +170742577827,245,0 +170742577875,245,0 +170742577923,245,0 +170742577971,245,0 +170742578021,245,0 +170742578069,245,0 +170742578117,245,0 +170742578166,245,0 +170742578214,245,0 +170742578264,245,0 +170742578312,245,0 +170742578361,245,0 +170742578409,245,0 +170742578459,245,0 +170742578508,245,0 +170742578556,245,0 +170742578606,245,0 +170742578654,245,0 +170742578703,245,0 +170742578752,245,0 +170742578800,245,0 +170742578850,245,0 +170742578899,245,0 +170742578949,245,0 +170742578997,245,0 +170742579046,245,0 +170742579094,245,0 +170742579142,245,0 +170742579190,245,0 +170742579238,245,0 +170742579286,245,0 +170742579335,245,0 +170742579385,246,0 +170742579433,245,0 +170742579481,245,0 +170742579530,245,0 +170742579578,245,0 +170742579626,245,0 +170742579674,245,0 +170742579724,245,0 +170742579772,245,0 +170742579820,245,0 +170742579869,245,0 +170742579917,245,0 +170742579965,245,0 +170742580013,245,0 +170742580061,245,0 +170742580111,245,0 +170742580159,245,0 +170742580208,245,0 +170742580256,245,0 +170742580305,245,0 +170742580355,245,0 +170742580405,245,0 +170742580453,245,0 +170742580502,245,0 +170742580550,245,0 +170742580598,245,0 +170742580646,245,0 +170742580695,245,0 +170742580743,245,0 +170742580793,245,0 +170742580841,246,0 +170742580890,245,0 +170742580938,245,0 +170742580986,245,0 +170742581034,245,0 +170742581082,245,0 +170742581131,245,0 +170742581179,245,0 +170742581227,245,0 +170742581275,245,0 +170742581325,245,0 +170742581373,245,0 +170742581421,245,0 +170742581470,245,0 +170742581518,245,0 +170742581566,245,0 +170742581614,245,0 +170742581664,245,0 +170742581712,245,0 +170742581760,245,0 +170742581808,245,0 +170742581857,245,0 +170742581905,245,0 +170742581953,245,0 +170742582001,246,0 +170742582049,245,0 +170742582097,245,0 +170742582145,245,0 +170742582193,245,0 +170742582241,245,0 +170742582289,245,0 +170742582337,245,0 +170742582384,245,0 +170742582432,245,0 +170742582480,245,0 +170742582528,245,0 +170742582576,245,0 +170742582624,245,0 +170742582672,245,0 +170742582720,245,0 +170742582767,245,0 +170742582815,245,0 +170742582863,245,0 +170742582913,245,0 +170742582961,245,0 +170742583010,245,0 +170742583058,245,0 +170742583108,245,0 +170742583157,245,0 +170742583205,245,0 +170742583253,245,0 +170742583301,245,0 +170742583349,245,0 +170742583397,245,0 +170742583445,245,0 +170742583493,245,0 +170742583541,245,0 +170742583589,245,0 +170742583637,245,0 +170742583685,245,0 +170742583733,245,0 +170742583781,245,0 +170742583830,245,0 +170742583878,245,0 +170742583926,245,0 +170742583976,245,0 +170742584024,245,0 +170742584072,245,0 +170742584120,245,0 +170742584168,245,0 +170742584215,245,0 +170742584265,245,0 +170742584315,245,0 +170742584362,245,0 +170742584412,245,0 +170742584461,245,0 +170742584511,245,0 +170742584559,245,0 +170742584607,245,0 +170742584656,245,0 +170742584706,245,0 +170742584754,245,0 +170742584802,245,0 +170742584851,245,0 +170742584899,245,0 +170742584947,245,0 +170742584997,245,0 +170742585046,245,0 +170742585094,245,0 +170742585142,245,0 +170742585190,245,0 +170742585238,245,0 +170742585286,245,0 +170742585336,245,0 +170742585383,245,0 +170742585431,245,0 +170742585479,245,0 +170742585527,245,0 +170742585575,245,0 +170742585623,245,0 +170742585671,245,0 +170742585721,245,0 +170742585770,245,0 +170742585818,245,0 +170742585866,245,0 +170742585914,245,0 +170742585964,245,0 +170742586013,245,0 +170742586061,245,0 +170742586111,245,0 +170742586159,245,0 +170742586208,245,0 +170742586256,245,0 +170742586304,245,0 +170742586354,245,0 +170742586403,245,0 +170742586453,245,0 +170742586502,245,0 +170742586550,245,0 +170742586598,245,0 +170742586646,245,0 +170742586696,245,0 +170742586744,245,0 +170742586792,245,0 +170742586839,245,0 +170742586887,245,0 +170742586937,245,0 +170742586985,245,0 +170742587033,245,0 +170742587081,245,0 +170742587129,245,0 +170742587177,245,0 +170742587225,245,0 +170742587273,245,0 +170742587321,245,0 +170742587369,245,0 +170742587417,245,0 +170742587465,245,0 +170742587514,245,0 +170742587562,245,0 +170742587610,245,0 +170742587658,245,0 +170742587706,245,0 +170742587756,245,0 +170742587805,245,0 +170742587853,245,0 +170742587901,245,0 +170742587949,245,0 +170742587998,245,0 +170742588048,245,0 +170742588096,245,0 +170742588145,245,0 +170742588195,245,0 +170742588243,245,0 +170742588292,245,0 +170742588342,245,0 +170742588391,245,0 +170742588439,245,0 +170742588489,245,0 +170742588537,245,0 +170742588586,245,0 +170742588634,245,0 +170742588684,245,0 +170742588733,245,0 +170742588783,245,0 +170742588831,245,0 +170742588880,245,0 +170742588930,245,0 +170742588978,245,0 +170742589026,245,0 +170742589073,245,0 +170742589121,245,0 +170742589169,245,0 +170742589217,245,0 +170742589265,245,0 +170742589313,245,0 +170742589361,245,0 +170742589410,245,0 +170742589460,245,0 +170742589509,245,0 +170742589557,245,0 +170742589607,245,0 +170742589655,245,0 +170742589703,245,0 +170742589751,245,0 +170742589799,245,0 +170742589848,245,0 +170742589896,245,0 +170742589944,245,0 +170742589992,245,0 +170742590041,245,0 +170742590089,245,0 +170742590137,245,0 +170742590185,245,0 +170742590235,245,0 +170742590283,245,0 +170742590331,245,0 +170742590379,245,0 +170742590427,245,0 +170742590475,245,0 +170742590524,245,0 +170742590573,245,0 +170742590621,245,0 +170742590669,245,0 +170742590719,245,0 +170742590768,245,0 +170742590816,245,0 +170742590866,245,0 +170742590914,245,0 +170742590962,245,0 +170742591010,245,0 +170742591058,245,0 +170742591106,245,0 +170742591154,245,0 +170742591201,245,0 +170742591249,245,0 +170742591297,245,0 +170742591345,245,0 +170742591393,245,0 +170742591443,245,0 +170742591492,245,0 +170742591540,245,0 +170742591590,245,0 +170742591638,245,0 +170742591685,245,0 +170742591733,245,0 +170742591783,245,0 +170742591831,245,0 +170742591879,245,0 +170742591927,245,0 +170742591976,245,0 +170742592026,245,0 +170742592074,245,0 +170742592121,245,0 +170742592171,245,0 +170742592219,245,0 +170742592267,245,0 +170742592316,245,0 +170742592366,245,0 +170742592415,245,0 +170742592463,245,0 +170742592511,245,0 +170742592559,245,0 +170742592607,245,0 +170742592655,245,0 +170742592705,245,0 +170742592754,245,0 +170742592804,245,0 +170742592853,245,0 +170742592903,245,0 +170742592951,245,0 +170742592998,245,0 +170742593046,245,0 +170742593096,245,0 +170742593145,245,0 +170742593195,245,0 +170742593244,245,0 +170742593292,246,0 +170742593340,245,0 +170742593388,245,0 +170742593438,245,0 +170742593486,245,0 +170742593535,245,0 +170742593583,245,0 +170742593631,245,0 +170742593679,245,0 +170742593729,245,0 +170742593777,245,0 +170742593825,246,0 +170742593872,245,0 +170742593920,245,0 +170742593968,245,0 +170742594018,246,0 +170742594066,245,0 +170742594115,245,0 +170742594165,245,0 +170742594213,245,0 +170742594263,245,0 +170742594310,245,0 +170742594360,245,0 +170742594408,245,0 +170742594456,245,0 +170742594504,245,0 +170742594553,245,0 +170742594601,245,0 +170742594649,245,0 +170742594699,245,0 +170742594747,245,0 +170742594795,245,0 +170742594843,245,0 +170742594891,245,0 +170742594939,245,0 +170742594987,245,0 +170742595035,245,0 +170742595083,245,0 +170742595131,245,0 +170742595180,245,0 +170742595228,245,0 +170742595276,245,0 +170742595326,245,0 +170742595374,245,0 +170742595422,245,0 +170742595470,245,0 +170742595518,245,0 +170742595566,245,0 +170742595614,245,0 +170742595662,245,0 +170742595710,245,0 +170742595757,245,0 +170742595805,245,0 +170742595853,245,0 +170742595901,245,0 +170742595949,245,0 +170742595997,245,0 +170742596045,245,0 +170742596093,245,0 +170742596141,245,0 +170742596189,245,0 +170742596236,245,0 +170742596284,245,0 +170742596332,245,0 +170742596382,245,0 +170742596431,245,0 +170742596479,245,0 +170742596527,245,0 +170742596575,245,0 +170742596623,245,0 +170742596671,245,0 +170742596720,245,0 +170742596768,245,0 +170742596816,245,0 +170742596864,245,0 +170742596912,245,0 +170742596960,245,0 +170742597008,245,0 +170742597056,245,0 +170742597104,245,0 +170742597152,245,0 +170742597200,245,0 +170742597249,245,0 +170742597297,245,0 +170742597345,245,0 +170742597393,245,0 +170742597443,245,0 +170742597491,245,0 +170742597540,245,0 +170742597588,245,0 +170742597638,245,0 +170742597687,245,0 +170742597735,245,0 +170742597783,245,0 +170742597832,245,0 +170742597880,245,0 +170742597928,245,0 +170742597978,245,0 +170742598028,245,0 +170742598077,245,0 +170742598125,245,0 +170742598175,245,0 +170742598222,245,0 +170742598270,245,0 +170742598320,245,0 +170742598368,245,0 +170742598417,245,0 +170742598467,245,0 +170742598515,245,0 +170742598563,245,0 +170742598612,245,0 +170742598660,245,0 +170742598708,245,0 +170742598756,245,0 +170742598806,245,0 +170742598854,245,0 +170742598902,245,0 +170742598950,245,0 +170742598997,245,0 +170742599045,245,0 +170742599093,245,0 +170742599141,245,0 +170742599191,245,0 +170742599240,245,0 +170742599290,245,0 +170742599338,245,0 +170742599387,245,0 +170742599435,245,0 +170742599483,245,0 +170742599531,245,0 +170742599579,245,0 +170742599627,245,0 +170742599675,245,0 +170742599725,245,0 +170742599773,245,0 +170742599821,245,0 +170742599870,245,0 +170742599918,245,0 +170742599966,245,0 +170742600014,245,0 diff --git a/laser_value/0209-07.csv b/laser_value/0209-07.csv new file mode 100644 index 0000000..fa94308 --- /dev/null +++ b/laser_value/0209-07.csv @@ -0,0 +1,7436 @@ +timestamp,laser_value,event +170742600063,245,0 +170742600111,245,0 +170742600160,245,0 +170742600208,245,0 +170742600256,245,0 +170742600304,245,0 +170742600352,245,0 +170742600400,245,0 +170742600448,245,0 +170742600496,245,0 +170742600546,245,0 +170742600595,245,0 +170742600643,245,0 +170742600691,245,0 +170742600740,245,0 +170742600788,245,0 +170742600836,245,0 +170742600886,245,0 +170742600934,245,0 +170742600983,245,0 +170742601031,245,0 +170742601079,245,0 +170742601127,245,0 +170742601175,245,0 +170742601225,245,0 +170742601273,245,0 +170742601323,245,0 +170742601372,245,0 +170742601422,245,0 +170742601471,245,0 +170742601521,245,0 +170742601570,245,0 +170742601618,246,0 +170742601666,245,0 +170742601715,245,0 +170742601763,245,0 +170742601811,245,0 +170742601861,245,0 +170742601910,245,0 +170742601958,245,0 +170742602006,245,0 +170742602054,245,0 +170742602102,245,0 +170742602150,245,0 +170742602198,245,0 +170742602248,245,0 +170742602297,245,0 +170742602345,245,0 +170742602393,245,0 +170742602443,245,0 +170742602491,245,0 +170742602539,245,0 +170742602587,245,0 +170742602635,245,0 +170742602683,245,0 +170742602731,245,0 +170742602779,245,0 +170742602826,245,0 +170742602874,245,0 +170742602924,245,0 +170742602972,245,0 +170742603020,245,0 +170742603068,245,0 +170742603116,245,0 +170742603164,245,0 +170742603212,245,0 +170742603260,245,0 +170742603308,245,0 +170742603356,245,0 +170742603404,245,0 +170742603453,245,0 +170742603501,245,0 +170742603549,245,0 +170742603598,245,0 +170742603646,245,0 +170742603694,245,0 +170742603744,245,0 +170742603793,245,0 +170742603841,245,0 +170742603889,245,0 +170742603937,245,0 +170742603985,245,0 +170742604035,245,0 +170742604084,245,0 +170742604132,245,0 +170742604182,245,0 +170742604230,245,0 +170742604279,245,0 +170742604327,245,0 +170742604375,245,0 +170742604423,245,0 +170742604473,245,0 +170742604522,245,0 +170742604572,245,0 +170742604621,245,0 +170742604671,245,0 +170742604718,245,0 +170742604768,245,0 +170742604816,245,0 +170742604865,245,0 +170742604915,245,0 +170742604963,245,0 +170742605011,245,0 +170742605060,245,0 +170742605110,245,0 +170742605158,245,0 +170742605207,245,0 +170742605257,245,0 +170742605305,245,0 +170742605354,245,0 +170742605404,245,0 +170742605453,245,0 +170742605501,245,0 +170742605551,245,0 +170742605599,245,0 +170742605648,245,0 +170742605698,245,0 +170742605746,245,0 +170742605795,245,0 +170742605845,245,0 +170742605893,245,0 +170742605942,245,0 +170742605990,245,0 +170742606040,245,0 +170742606088,245,0 +170742606136,245,0 +170742606183,245,0 +170742606231,245,0 +170742606279,245,0 +170742606327,245,0 +170742606375,245,0 +170742606423,245,0 +170742606471,245,0 +170742606518,245,0 +170742606566,245,0 +170742606616,245,0 +170742606665,245,0 +170742606713,245,0 +170742606761,245,0 +170742606809,245,0 +170742606857,245,0 +170742606905,245,0 +170742606953,245,0 +170742607001,245,0 +170742607048,245,0 +170742607096,245,0 +170742607144,245,0 +170742607192,245,0 +170742607240,245,0 +170742607288,245,0 +170742607336,245,0 +170742607383,245,0 +170742607431,245,0 +170742607479,245,0 +170742607527,245,0 +170742607575,245,0 +170742607623,245,0 +170742607672,245,0 +170742607720,245,0 +170742607768,245,0 +170742607816,245,0 +170742607864,245,0 +170742607912,245,0 +170742607960,245,0 +170742608008,245,0 +170742608055,245,0 +170742608103,245,0 +170742608153,245,0 +170742608201,245,0 +170742608250,245,0 +170742608298,245,0 +170742608346,245,0 +170742608396,245,0 +170742608445,245,0 +170742608493,245,0 +170742608543,245,0 +170742608592,245,0 +170742608640,245,0 +170742608690,245,0 +170742608738,245,0 +170742608787,245,0 +170742608835,245,0 +170742608885,245,0 +170742608933,245,0 +170742608981,245,0 +170742609030,245,0 +170742609078,245,0 +170742609126,245,0 +170742609174,245,0 +170742609222,245,0 +170742609270,245,0 +170742609318,245,0 +170742609367,245,0 +170742609415,245,0 +170742609463,245,0 +170742609511,245,0 +170742609559,245,0 +170742609607,245,0 +170742609655,245,0 +170742609702,245,0 +170742609750,245,0 +170742609798,245,0 +170742609846,245,0 +170742609894,245,0 +170742609942,245,0 +170742609990,245,0 +170742610038,245,0 +170742610085,245,0 +170742610135,245,0 +170742610183,245,0 +170742610232,245,0 +170742610280,245,0 +170742610330,245,0 +170742610378,245,0 +170742610426,245,0 +170742610475,245,0 +170742610523,245,0 +170742610573,245,0 +170742610621,245,0 +170742610669,245,0 +170742610717,245,0 +170742610764,245,0 +170742610812,245,0 +170742610860,245,0 +170742610908,246,0 +170742610956,245,0 +170742611006,245,0 +170742611055,245,0 +170742611103,245,0 +170742611153,245,0 +170742611202,245,0 +170742611250,245,0 +170742611298,245,0 +170742611346,244,0 +170742611394,245,0 +170742611442,245,0 +170742611490,245,0 +170742611538,245,0 +170742611585,245,0 +170742611633,245,0 +170742611681,245,0 +170742611731,245,0 +170742611779,245,0 +170742611828,245,0 +170742611876,245,0 +170742611925,245,0 +170742611973,245,0 +170742612021,245,0 +170742612069,245,0 +170742612117,245,0 +170742612166,245,0 +170742612214,245,0 +170742612262,245,0 +170742612310,245,0 +170742612358,245,0 +170742612406,245,0 +170742612454,245,0 +170742612501,245,0 +170742612549,245,0 +170742612597,245,0 +170742612645,245,0 +170742612693,245,0 +170742612741,245,0 +170742612789,245,0 +170742612838,245,0 +170742612886,245,0 +170742612934,245,0 +170742612982,245,0 +170742613030,246,0 +170742613078,245,0 +170742613126,245,0 +170742613175,245,0 +170742613225,245,0 +170742613272,245,0 +170742613320,245,0 +170742613368,245,0 +170742613416,245,0 +170742613464,245,0 +170742613512,245,0 +170742613562,245,0 +170742613610,245,0 +170742613659,245,0 +170742613707,245,0 +170742613755,245,0 +170742613805,245,0 +170742613854,245,0 +170742613902,245,0 +170742613951,245,0 +170742613999,245,0 +170742614049,245,0 +170742614098,245,0 +170742614148,245,0 +170742614197,245,0 +170742614247,244,0 +170742614295,245,0 +170742614343,245,0 +170742614392,245,0 +170742614440,245,0 +170742614488,245,0 +170742614538,245,0 +170742614587,245,0 +170742614635,245,0 +170742614683,245,0 +170742614733,245,0 +170742614781,245,0 +170742614829,245,0 +170742614876,245,0 +170742614924,245,0 +170742614974,245,0 +170742615022,245,0 +170742615071,245,0 +170742615119,245,0 +170742615169,245,0 +170742615216,245,0 +170742615264,245,0 +170742615312,245,0 +170742615360,245,0 +170742615408,245,0 +170742615456,245,0 +170742615504,245,0 +170742615553,245,0 +170742615601,245,0 +170742615649,245,0 +170742615697,245,0 +170742615745,245,0 +170742615793,245,0 +170742615841,245,0 +170742615889,245,0 +170742615936,245,0 +170742615986,245,0 +170742616034,245,0 +170742616082,245,0 +170742616130,245,0 +170742616178,245,0 +170742616227,245,0 +170742616275,245,0 +170742616323,245,0 +170742616370,245,0 +170742616418,245,0 +170742616466,245,0 +170742616514,245,0 +170742616562,245,0 +170742616610,245,0 +170742616658,245,0 +170742616706,245,0 +170742616753,245,0 +170742616801,245,0 +170742616849,245,0 +170742616897,245,0 +170742616945,245,0 +170742616994,245,0 +170742617042,245,0 +170742617090,245,0 +170742617138,245,0 +170742617186,245,0 +170742617234,245,0 +170742617282,245,0 +170742617330,245,0 +170742617377,245,0 +170742617427,245,0 +170742617475,245,0 +170742617523,245,0 +170742617570,245,0 +170742617618,245,0 +170742617666,245,0 +170742617714,245,0 +170742617764,245,0 +170742617811,245,0 +170742617859,245,0 +170742617907,245,0 +170742617957,245,0 +170742618005,245,0 +170742618053,245,0 +170742618102,245,0 +170742618150,245,0 +170742618198,245,0 +170742618248,245,0 +170742618296,245,0 +170742618344,245,0 +170742618393,245,0 +170742618441,245,0 +170742618489,245,0 +170742618538,245,0 +170742618586,245,0 +170742618636,245,0 +170742618684,245,0 +170742618732,245,0 +170742618780,245,0 +170742618828,245,0 +170742618877,245,0 +170742618925,245,0 +170742618975,245,0 +170742619023,246,0 +170742619072,245,0 +170742619122,245,0 +170742619170,245,0 +170742619218,245,0 +170742619267,245,0 +170742619317,245,0 +170742619364,245,0 +170742619412,245,0 +170742619460,245,0 +170742619510,245,0 +170742619558,245,0 +170742619606,245,0 +170742619653,245,0 +170742619701,245,0 +170742619749,245,0 +170742619797,245,0 +170742619847,245,0 +170742619895,245,0 +170742619944,245,0 +170742619992,245,0 +170742620040,245,0 +170742620088,245,0 +170742620138,245,0 +170742620187,245,0 +170742620236,245,0 +170742620284,245,0 +170742620334,245,0 +170742620383,245,0 +170742620431,245,0 +170742620481,245,0 +170742620529,245,0 +170742620578,245,0 +170742620626,245,0 +170742620674,245,0 +170742620724,245,0 +170742620772,245,0 +170742620821,245,0 +170742620871,245,0 +170742620919,245,0 +170742620967,245,0 +170742621015,245,0 +170742621064,245,0 +170742621112,245,0 +170742621160,245,0 +170742621208,245,0 +170742621256,245,0 +170742621304,245,0 +170742621353,245,0 +170742621401,245,0 +170742621449,245,0 +170742621497,245,0 +170742621545,245,0 +170742621593,245,0 +170742621641,245,0 +170742621688,245,0 +170742621736,245,0 +170742621784,245,0 +170742621832,245,0 +170742621880,245,0 +170742621928,245,0 +170742621976,245,0 +170742622024,245,0 +170742622072,245,0 +170742622120,245,0 +170742622169,245,0 +170742622217,245,0 +170742622265,245,0 +170742622313,245,0 +170742622360,245,0 +170742622408,245,0 +170742622456,245,0 +170742622504,245,0 +170742622552,245,0 +170742622600,245,0 +170742622648,245,0 +170742622696,245,0 +170742622744,245,0 +170742622793,245,0 +170742622843,245,0 +170742622891,245,0 +170742622938,245,0 +170742622986,245,0 +170742623034,245,0 +170742623082,245,0 +170742623130,245,0 +170742623180,245,0 +170742623228,245,0 +170742623276,245,0 +170742623325,245,0 +170742623373,245,0 +170742623421,245,0 +170742623469,245,0 +170742623517,245,0 +170742623565,245,0 +170742623613,245,0 +170742623662,245,0 +170742623710,245,0 +170742623759,245,0 +170742623807,245,0 +170742623855,245,0 +170742623903,245,0 +170742623951,245,0 +170742623999,245,0 +170742624047,245,0 +170742624095,245,0 +170742624142,245,0 +170742624190,245,0 +170742624238,245,0 +170742624286,245,0 +170742624334,245,0 +170742624382,245,0 +170742624430,245,0 +170742624479,245,0 +170742624527,245,0 +170742624575,245,0 +170742624623,245,0 +170742624671,245,0 +170742624719,245,0 +170742624767,245,0 +170742624814,245,0 +170742624862,245,0 +170742624910,245,0 +170742624958,245,0 +170742625006,245,0 +170742625054,245,0 +170742625102,245,0 +170742625150,245,0 +170742625198,245,0 +170742625245,245,0 +170742625293,245,0 +170742625341,245,0 +170742625389,245,0 +170742625437,245,0 +170742625485,245,0 +170742625535,245,0 +170742625583,245,0 +170742625632,245,0 +170742625682,245,0 +170742625731,245,0 +170742625779,245,0 +170742625829,245,0 +170742625877,245,0 +170742625925,245,0 +170742625973,245,0 +170742626021,245,0 +170742626070,245,0 +170742626118,245,0 +170742626168,245,0 +170742626216,245,0 +170742626263,245,0 +170742626311,245,0 +170742626359,245,0 +170742626407,245,0 +170742626456,245,0 +170742626504,245,0 +170742626554,245,0 +170742626602,245,0 +170742626650,245,0 +170742626699,245,0 +170742626747,245,0 +170742626795,245,0 +170742626843,245,0 +170742626891,245,0 +170742626939,245,0 +170742626987,245,0 +170742627035,245,0 +170742627083,245,0 +170742627131,245,0 +170742627179,245,0 +170742627228,245,0 +170742627276,245,0 +170742627324,245,0 +170742627372,245,0 +170742627420,245,0 +170742627468,245,0 +170742627517,245,0 +170742627565,245,0 +170742627613,245,0 +170742627661,245,0 +170742627709,245,0 +170742627757,245,0 +170742627805,245,0 +170742627853,245,0 +170742627901,245,0 +170742627950,245,0 +170742627998,245,0 +170742628048,245,0 +170742628097,245,0 +170742628147,245,0 +170742628195,245,0 +170742628244,245,0 +170742628292,245,0 +170742628342,245,0 +170742628390,245,0 +170742628438,245,0 +170742628487,245,0 +170742628535,245,0 +170742628583,245,0 +170742628633,245,0 +170742628681,245,0 +170742628729,245,0 +170742628776,245,0 +170742628824,245,0 +170742628872,245,0 +170742628920,245,0 +170742628970,245,0 +170742629019,245,0 +170742629069,245,0 +170742629117,245,0 +170742629166,245,0 +170742629216,245,0 +170742629264,245,0 +170742629312,245,0 +170742629361,245,0 +170742629409,245,0 +170742629459,245,0 +170742629507,245,0 +170742629555,245,0 +170742629603,245,0 +170742629651,245,0 +170742629700,245,0 +170742629748,245,0 +170742629796,245,0 +170742629844,245,0 +170742629892,245,0 +170742629940,245,0 +170742629988,245,0 +170742630037,245,0 +170742630085,245,0 +170742630135,245,0 +170742630183,245,0 +170742630230,245,0 +170742630278,245,0 +170742630328,245,0 +170742630376,245,0 +170742630424,245,0 +170742630472,245,0 +170742630520,245,0 +170742630569,245,0 +170742630619,245,0 +170742630668,245,0 +170742630716,245,0 +170742630764,245,0 +170742630812,245,0 +170742630860,245,0 +170742630910,245,0 +170742630958,245,0 +170742631006,245,0 +170742631055,245,0 +170742631103,245,0 +170742631153,245,0 +170742631201,245,0 +170742631249,245,0 +170742631297,245,0 +170742631345,245,0 +170742631393,245,0 +170742631441,244,0 +170742631489,245,0 +170742631537,245,0 +170742631584,245,0 +170742631634,245,0 +170742631682,245,0 +170742631730,245,0 +170742631779,245,0 +170742631829,245,0 +170742631877,245,0 +170742631926,245,0 +170742631976,245,0 +170742632024,245,0 +170742632073,245,0 +170742632121,245,0 +170742632169,245,0 +170742632219,245,0 +170742632267,245,0 +170742632315,245,0 +170742632363,245,0 +170742632411,245,0 +170742632458,245,0 +170742632506,245,0 +170742632556,245,0 +170742632606,245,0 +170742632654,245,0 +170742632702,245,0 +170742632751,245,0 +170742632799,245,0 +170742632847,245,0 +170742632895,245,0 +170742632943,245,0 +170742632991,245,0 +170742633040,245,0 +170742633090,245,0 +170742633138,245,0 +170742633187,245,0 +170742633235,245,0 +170742633283,245,0 +170742633333,245,0 +170742633381,245,0 +170742633430,245,0 +170742633480,245,0 +170742633527,245,0 +170742633577,245,0 +170742633625,245,0 +170742633673,245,0 +170742633722,245,0 +170742633772,245,0 +170742633820,245,0 +170742633868,245,0 +170742633916,245,0 +170742633965,245,0 +170742634013,245,0 +170742634062,245,0 +170742634111,245,0 +170742634158,245,0 +170742634206,245,0 +170742634256,245,0 +170742634304,245,0 +170742634352,245,0 +170742634399,245,0 +170742634447,245,0 +170742634495,245,0 +170742634543,245,0 +170742634591,246,0 +170742634639,245,0 +170742634689,245,0 +170742634738,245,0 +170742634786,245,0 +170742634834,245,0 +170742634884,245,0 +170742634932,245,0 +170742634980,245,0 +170742635029,245,0 +170742635077,245,0 +170742635125,245,0 +170742635173,245,0 +170742635221,245,0 +170742635269,245,0 +170742635318,245,0 +170742635366,245,0 +170742635414,245,0 +170742635462,245,0 +170742635510,245,0 +170742635558,245,0 +170742635605,245,0 +170742635653,245,0 +170742635701,245,0 +170742635749,244,0 +170742635797,245,0 +170742635846,245,0 +170742635894,245,0 +170742635944,245,0 +170742635992,245,0 +170742636040,245,0 +170742636088,245,0 +170742636137,245,0 +170742636185,245,0 +170742636233,245,0 +170742636281,245,0 +170742636331,245,0 +170742636379,245,0 +170742636428,245,0 +170742636476,245,0 +170742636524,245,0 +170742636572,245,0 +170742636621,245,0 +170742636671,245,0 +170742636720,245,0 +170742636768,245,0 +170742636816,245,0 +170742636864,245,0 +170742636912,245,0 +170742636960,245,0 +170742637008,245,0 +170742637056,245,0 +170742637106,245,0 +170742637154,245,0 +170742637202,245,0 +170742637251,245,0 +170742637299,245,0 +170742637347,245,0 +170742637397,245,0 +170742637446,245,0 +170742637496,245,0 +170742637544,245,0 +170742637593,245,0 +170742637641,245,0 +170742637689,245,0 +170742637737,245,0 +170742637785,245,0 +170742637833,245,0 +170742637881,245,0 +170742637929,245,0 +170742637977,245,0 +170742638025,245,0 +170742638074,245,0 +170742638124,245,0 +170742638173,245,0 +170742638223,245,0 +170742638272,245,0 +170742638320,245,0 +170742638370,245,0 +170742638419,245,0 +170742638469,245,0 +170742638518,245,0 +170742638566,245,0 +170742638616,245,0 +170742638665,245,0 +170742638713,245,0 +170742638763,245,0 +170742638811,245,0 +170742638860,245,0 +170742638910,245,0 +170742638959,245,0 +170742639007,245,0 +170742639055,245,0 +170742639103,245,0 +170742639153,245,0 +170742639201,245,0 +170742639249,245,0 +170742639298,245,0 +170742639346,245,0 +170742639396,245,0 +170742639444,245,0 +170742639492,245,0 +170742639540,245,0 +170742639589,245,0 +170742639637,245,0 +170742639685,245,0 +170742639735,245,0 +170742639782,245,0 +170742639832,245,0 +170742639880,245,0 +170742639928,245,0 +170742639976,245,0 +170742640024,245,0 +170742640073,245,0 +170742640121,245,0 +170742640169,245,0 +170742640217,245,0 +170742640265,245,0 +170742640313,245,0 +170742640363,245,0 +170742640411,245,0 +170742640459,245,0 +170742640507,245,0 +170742640556,245,0 +170742640604,245,0 +170742640652,245,0 +170742640700,245,0 +170742640748,245,0 +170742640797,245,0 +170742640845,245,0 +170742640893,245,0 +170742640941,245,0 +170742640989,245,0 +170742641037,245,0 +170742641085,245,0 +170742641133,245,0 +170742641183,246,0 +170742641231,245,0 +170742641279,245,0 +170742641328,245,0 +170742641376,245,0 +170742641424,245,0 +170742641472,245,0 +170742641520,245,0 +170742641569,245,0 +170742641617,245,0 +170742641665,245,0 +170742641713,245,0 +170742641763,245,0 +170742641812,245,0 +170742641862,245,0 +170742641910,245,0 +170742641958,245,0 +170742642006,245,0 +170742642054,245,0 +170742642102,245,0 +170742642150,245,0 +170742642198,245,0 +170742642247,245,0 +170742642295,245,0 +170742642343,245,0 +170742642391,245,0 +170742642440,245,0 +170742642490,245,0 +170742642539,245,0 +170742642589,245,0 +170742642637,245,0 +170742642687,245,0 +170742642735,245,0 +170742642783,245,0 +170742642831,245,0 +170742642879,245,0 +170742642928,245,0 +170742642977,245,0 +170742643025,245,0 +170742643075,246,0 +170742643124,245,0 +170742643172,245,0 +170742643222,245,0 +170742643270,245,0 +170742643319,245,0 +170742643369,245,0 +170742643418,245,0 +170742643468,245,0 +170742643516,245,0 +170742643564,245,0 +170742643612,245,0 +170742643660,245,0 +170742643708,245,0 +170742643756,245,0 +170742643804,245,0 +170742643852,245,0 +170742643901,245,0 +170742643949,245,0 +170742643997,245,0 +170742644045,245,0 +170742644094,245,0 +170742644142,245,0 +170742644190,245,0 +170742644238,245,0 +170742644288,245,0 +170742644337,245,0 +170742644385,245,0 +170742644433,245,0 +170742644481,245,0 +170742644531,245,0 +170742644579,245,0 +170742644628,245,0 +170742644678,245,0 +170742644726,245,0 +170742644774,245,0 +170742644823,245,0 +170742644871,245,0 +170742644919,245,0 +170742644967,245,0 +170742645015,245,0 +170742645063,245,0 +170742645113,245,0 +170742645161,245,0 +170742645209,245,0 +170742645258,245,0 +170742645306,245,0 +170742645354,245,0 +170742645402,245,0 +170742645452,245,0 +170742645501,245,0 +170742645549,245,0 +170742645597,245,0 +170742645645,245,0 +170742645695,245,0 +170742645742,245,0 +170742645790,245,0 +170742645840,245,0 +170742645888,245,0 +170742645937,245,0 +170742645985,245,0 +170742646033,245,0 +170742646081,245,0 +170742646129,245,0 +170742646177,245,0 +170742646225,245,0 +170742646273,245,0 +170742646323,245,0 +170742646371,245,0 +170742646419,244,0 +170742646467,245,0 +170742646514,245,0 +170742646564,245,0 +170742646612,245,0 +170742646660,245,0 +170742646709,245,0 +170742646757,245,0 +170742646805,245,0 +170742646855,244,0 +170742646903,245,0 +170742646952,245,0 +170742647000,245,0 +170742647048,245,0 +170742647096,245,0 +170742647146,245,0 +170742647194,245,0 +170742647242,245,0 +170742647290,244,0 +170742647338,245,0 +170742647386,245,0 +170742647434,245,0 +170742647482,245,0 +170742647530,245,0 +170742647579,245,0 +170742647629,245,0 +170742647677,245,0 +170742647725,245,0 +170742647773,245,0 +170742647822,245,0 +170742647872,245,0 +170742647920,245,0 +170742647969,245,0 +170742648017,245,0 +170742648065,245,0 +170742648114,245,0 +170742648162,245,0 +170742648212,245,0 +170742648260,245,0 +170742648309,245,0 +170742648357,245,0 +170742648407,245,0 +170742648456,245,0 +170742648504,245,0 +170742648554,245,0 +170742648603,245,0 +170742648653,245,0 +170742648701,245,0 +170742648749,245,0 +170742648797,245,0 +170742648845,245,0 +170742648894,245,0 +170742648942,245,0 +170742648990,245,0 +170742649040,245,0 +170742649089,245,0 +170742649139,245,0 +170742649187,245,0 +170742649235,245,0 +170742649284,245,0 +170742649332,244,0 +170742649380,244,0 +170742649430,245,0 +170742649478,245,0 +170742649527,245,0 +170742649575,245,0 +170742649623,245,0 +170742649671,245,0 +170742649720,244,0 +170742649770,245,0 +170742649818,244,0 +170742649866,245,0 +170742649914,245,0 +170742649963,245,0 +170742650011,245,0 +170742650059,244,0 +170742650109,245,0 +170742650158,244,0 +170742650208,245,0 +170742650256,244,0 +170742650305,245,0 +170742650353,245,0 +170742650401,246,0 +170742650449,245,0 +170742650497,245,0 +170742650547,245,0 +170742650595,245,0 +170742650644,245,0 +170742650692,245,0 +170742650740,244,0 +170742650788,244,0 +170742650836,245,0 +170742650885,245,0 +170742650933,245,0 +170742650983,244,0 +170742651031,245,0 +170742651079,245,0 +170742651127,245,0 +170742651175,245,0 +170742651223,245,0 +170742651272,245,0 +170742651320,244,0 +170742651370,245,0 +170742651419,245,0 +170742651467,245,0 +170742651515,245,0 +170742651565,245,0 +170742651612,245,0 +170742651662,245,0 +170742651712,245,0 +170742651761,245,0 +170742651811,245,0 +170742651860,245,0 +170742651908,246,0 +170742651956,244,0 +170742652004,245,0 +170742652052,245,0 +170742652100,245,0 +170742652149,245,0 +170742652197,244,0 +170742652245,245,0 +170742652295,245,0 +170742652343,245,0 +170742652392,245,0 +170742652440,245,0 +170742652490,245,0 +170742652538,245,0 +170742652586,246,0 +170742652634,244,0 +170742652683,246,0 +170742652731,245,0 +170742652779,244,0 +170742652827,245,0 +170742652877,245,0 +170742652924,245,0 +170742652972,245,0 +170742653020,245,0 +170742653068,245,0 +170742653118,245,0 +170742653166,245,0 +170742653214,245,0 +170742653262,245,0 +170742653310,245,0 +170742653358,244,0 +170742653406,244,0 +170742653454,245,0 +170742653502,244,0 +170742653549,245,0 +170742653597,244,0 +170742653645,245,0 +170742653693,245,0 +170742653741,245,0 +170742653789,245,0 +170742653837,245,0 +170742653887,245,0 +170742653934,245,0 +170742653982,244,0 +170742654032,244,0 +170742654080,245,0 +170742654128,245,0 +170742654177,244,0 +170742654225,245,0 +170742654275,245,0 +170742654324,245,0 +170742654374,245,0 +170742654422,244,0 +170742654470,245,0 +170742654518,245,0 +170742654567,245,0 +170742654615,245,0 +170742654663,245,0 +170742654713,245,0 +170742654761,245,0 +170742654809,245,0 +170742654857,245,0 +170742654905,245,0 +170742654953,244,0 +170742655002,245,0 +170742655050,245,0 +170742655098,245,0 +170742655148,245,0 +170742655197,244,0 +170742655247,246,0 +170742655296,244,0 +170742655344,246,0 +170742655392,245,0 +170742655442,245,0 +170742655490,245,0 +170742655538,245,0 +170742655587,245,0 +170742655635,245,0 +170742655683,245,0 +170742655733,245,0 +170742655782,245,0 +170742655830,245,0 +170742655878,245,0 +170742655928,244,0 +170742655976,245,0 +170742656024,244,0 +170742656072,245,0 +170742656120,245,0 +170742656168,245,0 +170742656217,245,0 +170742656265,245,0 +170742656313,245,0 +170742656361,245,0 +170742656409,244,0 +170742656457,245,0 +170742656505,244,0 +170742656555,245,0 +170742656603,244,0 +170742656652,244,0 +170742656701,245,0 +170742656749,244,0 +170742656797,245,0 +170742656847,245,0 +170742656895,244,0 +170742656943,245,0 +170742656991,245,0 +170742657040,245,0 +170742657088,245,0 +170742657138,245,0 +170742657187,245,0 +170742657235,245,0 +170742657283,246,0 +170742657331,245,0 +170742657379,245,0 +170742657429,245,0 +170742657478,245,0 +170742657526,245,0 +170742657576,245,0 +170742657624,245,0 +170742657673,245,0 +170742657721,245,0 +170742657769,245,0 +170742657817,245,0 +170742657865,245,0 +170742657915,245,0 +170742657963,244,0 +170742658012,245,0 +170742658062,245,0 +170742658110,245,0 +170742658158,244,0 +170742658206,245,0 +170742658255,244,0 +170742658305,245,0 +170742658354,245,0 +170742658404,245,0 +170742658452,245,0 +170742658500,245,0 +170742658548,245,0 +170742658597,245,0 +170742658647,245,0 +170742658695,244,0 +170742658743,245,0 +170742658791,245,0 +170742658839,245,0 +170742658887,245,0 +170742658936,245,0 +170742658985,244,0 +170742659035,246,0 +170742659083,244,0 +170742659132,246,0 +170742659182,244,0 +170742659230,245,0 +170742659279,245,0 +170742659327,244,0 +170742659377,245,0 +170742659427,244,0 +170742659475,244,0 +170742659522,245,0 +170742659570,245,0 +170742659618,245,0 +170742659666,244,0 +170742659714,244,0 +170742659762,245,0 +170742659810,244,0 +170742659858,245,0 +170742659906,245,0 +170742659954,245,0 +170742660002,245,0 +170742660050,244,0 +170742660097,246,0 +170742660147,245,0 +170742660195,245,0 +170742660243,245,0 +170742660290,245,0 +170742660338,245,0 +170742660386,245,0 +170742660434,245,0 +170742660482,244,0 +170742660531,244,0 +170742660579,244,0 +170742660627,244,0 +170742660675,245,0 +170742660724,244,0 +170742660772,244,0 +170742660820,245,0 +170742660868,245,0 +170742660916,245,0 +170742660964,245,0 +170742661012,245,0 +170742661060,244,0 +170742661109,245,0 +170742661159,245,0 +170742661208,245,0 +170742661258,245,0 +170742661307,244,0 +170742661357,245,0 +170742661406,245,0 +170742661456,245,0 +170742661505,245,0 +170742661553,245,0 +170742661603,245,0 +170742661651,245,0 +170742661699,245,0 +170742661746,245,0 +170742661794,245,0 +170742661842,245,0 +170742661892,245,0 +170742661940,245,0 +170742661988,245,0 +170742662036,242,0 +170742662083,243,0 +170742662131,245,0 +170742662179,247,0 +170742662227,246,0 +170742662275,221,0 +170742662323,223,0 +170742662371,219,0 +170742662419,218,0 +170742662466,218,0 +170742662514,218,0 +170742662562,218,0 +170742662612,218,0 +170742662659,218,0 +170742662709,218,0 +170742662757,218,0 +170742662807,217,0 +170742662854,218,0 +170742662904,217,0 +170742662952,217,0 +170742663000,217,0 +170742663048,218,0 +170742663096,218,0 +170742663145,218,0 +170742663193,218,0 +170742663241,217,0 +170742663291,218,0 +170742663340,218,0 +170742663388,217,0 +170742663436,217,0 +170742663486,217,0 +170742663535,218,0 +170742663583,218,0 +170742663631,218,0 +170742663681,218,0 +170742663729,218,0 +170742663777,217,0 +170742663825,218,0 +170742663874,218,0 +170742663922,218,0 +170742663971,218,0 +170742664019,218,0 +170742664069,217,0 +170742664118,217,0 +170742664166,218,0 +170742664216,218,0 +170742664264,217,0 +170742664313,218,0 +170742664363,218,0 +170742664412,217,0 +170742664460,218,0 +170742664510,218,0 +170742664558,218,0 +170742664607,218,0 +170742664657,218,0 +170742664706,218,0 +170742664754,218,0 +170742664802,218,0 +170742664850,218,0 +170742664900,218,0 +170742664948,218,0 +170742664996,218,0 +170742665045,218,0 +170742665093,218,0 +170742665143,218,0 +170742665191,218,0 +170742665239,218,0 +170742665287,218,0 +170742665336,219,0 +170742665384,219,0 +170742665434,219,0 +170742665483,224,0 +170742665533,241,0 +170742665580,242,0 +170742665628,242,0 +170742665676,244,0 +170742665726,247,0 +170742665774,246,0 +170742665822,252,0 +170742665870,268,0 +170742665918,263,0 +170742665966,231,0 +170742666014,227,0 +170742666061,230,0 +170742666109,228,0 +170742666157,222,0 +170742666205,219,0 +170742666253,218,0 +170742666301,218,0 +170742666349,217,0 +170742666398,218,0 +170742666446,217,0 +170742666494,217,0 +170742666542,217,0 +170742666590,217,0 +170742666638,217,0 +170742666686,217,0 +170742666733,217,0 +170742666781,218,0 +170742666829,217,0 +170742666877,217,0 +170742666925,217,0 +170742666974,217,0 +170742667022,217,0 +170742667070,217,0 +170742667118,217,0 +170742667166,217,0 +170742667214,217,0 +170742667262,217,0 +170742667309,217,0 +170742667359,217,0 +170742667407,217,0 +170742667455,217,0 +170742667503,217,0 +170742667550,217,0 +170742667598,217,0 +170742667646,217,0 +170742667694,217,0 +170742667742,217,0 +170742667790,218,0 +170742667838,217,0 +170742667886,217,0 +170742667935,217,0 +170742667983,217,0 +170742668031,217,0 +170742668080,217,0 +170742668130,217,0 +170742668179,217,0 +170742668229,217,0 +170742668277,217,0 +170742668326,217,0 +170742668376,217,0 +170742668424,217,0 +170742668472,217,0 +170742668520,217,0 +170742668568,217,0 +170742668616,217,0 +170742668664,217,0 +170742668711,217,0 +170742668761,217,0 +170742668810,217,0 +170742668858,217,0 +170742668906,217,0 +170742668956,217,0 +170742669003,217,0 +170742669051,217,0 +170742669099,217,0 +170742669147,217,0 +170742669195,217,0 +170742669243,217,0 +170742669291,218,0 +170742669339,217,0 +170742669388,217,0 +170742669436,218,0 +170742669484,217,0 +170742669532,218,0 +170742669580,217,0 +170742669628,218,0 +170742669676,217,0 +170742669724,218,0 +170742669772,217,0 +170742669820,218,0 +170742669869,218,0 +170742669919,217,0 +170742669968,217,0 +170742670018,218,0 +170742670066,217,0 +170742670115,217,0 +170742670163,217,0 +170742670213,217,0 +170742670261,218,0 +170742670309,218,0 +170742670357,217,0 +170742670406,217,0 +170742670454,218,0 +170742670502,218,0 +170742670552,219,0 +170742670599,219,0 +170742670647,220,0 +170742670695,221,0 +170742670743,222,0 +170742670792,223,0 +170742670840,229,0 +170742670888,265,0 +170742670936,267,0 +170742670986,265,0 +170742671034,269,0 +170742671083,275,1 +170742671189,285,1 +170742671267,286,1 +170742671343,231,0 +170742671391,234,0 +170742671438,233,0 +170742671486,227,0 +170742671534,222,0 +170742671584,219,0 +170742671632,218,0 +170742671680,218,0 +170742671728,218,0 +170742671776,218,0 +170742671825,218,0 +170742671873,218,0 +170742671923,218,0 +170742671971,218,0 +170742672020,218,0 +170742672068,218,0 +170742672116,218,0 +170742672164,218,0 +170742672212,218,0 +170742672260,218,0 +170742672308,218,0 +170742672356,218,0 +170742672405,218,0 +170742672453,218,0 +170742672501,218,0 +170742672551,218,0 +170742672600,218,0 +170742672648,218,0 +170742672696,218,0 +170742672744,218,0 +170742672792,218,0 +170742672840,218,0 +170742672889,218,0 +170742672939,218,0 +170742672988,218,0 +170742673038,218,0 +170742673086,218,0 +170742673134,218,0 +170742673183,218,0 +170742673231,218,0 +170742673281,218,0 +170742673329,218,0 +170742673377,218,0 +170742673426,218,0 +170742673474,218,0 +170742673524,218,0 +170742673572,218,0 +170742673621,218,0 +170742673671,218,0 +170742673719,218,0 +170742673767,218,0 +170742673816,218,0 +170742673864,218,0 +170742673914,218,0 +170742673962,218,0 +170742674010,218,0 +170742674059,218,0 +170742674107,218,0 +170742674155,218,0 +170742674203,218,0 +170742674252,218,0 +170742674300,218,0 +170742674348,218,0 +170742674396,218,0 +170742674444,218,0 +170742674492,218,0 +170742674540,218,0 +170742674588,218,0 +170742674636,218,0 +170742674684,218,0 +170742674732,218,0 +170742674781,218,0 +170742674829,219,0 +170742674877,219,0 +170742674927,218,0 +170742674975,219,0 +170742675023,219,0 +170742675072,219,0 +170742675120,219,0 +170742675170,220,0 +170742675218,219,0 +170742675266,220,0 +170742675315,220,0 +170742675363,219,0 +170742675411,219,0 +170742675459,219,0 +170742675507,220,0 +170742675555,222,0 +170742675604,222,0 +170742675654,222,0 +170742675702,223,0 +170742675752,223,0 +170742675802,224,0 +170742675850,225,0 +170742675898,226,0 +170742675946,226,0 +170742675994,228,0 +170742676042,228,0 +170742676090,229,0 +170742676137,229,0 +170742676187,242,0 +170742676235,240,0 +170742676284,243,0 +170742676334,241,0 +170742676382,244,0 +170742676432,243,0 +170742676480,243,0 +170742676527,244,0 +170742676575,244,0 +170742676623,235,0 +170742676673,220,0 +170742676721,223,0 +170742676769,223,0 +170742676818,220,0 +170742676866,219,0 +170742676914,218,0 +170742676964,218,0 +170742677011,218,0 +170742677059,218,0 +170742677107,218,0 +170742677155,218,0 +170742677203,217,0 +170742677251,217,0 +170742677299,218,0 +170742677347,218,0 +170742677395,218,0 +170742677443,217,0 +170742677490,218,0 +170742677538,218,0 +170742677588,217,0 +170742677636,217,0 +170742677684,218,0 +170742677732,218,0 +170742677780,218,0 +170742677829,217,0 +170742677877,218,0 +170742677925,218,0 +170742677973,217,0 +170742678021,218,0 +170742678068,218,0 +170742678116,217,0 +170742678164,217,0 +170742678212,218,0 +170742678260,218,0 +170742678308,218,0 +170742678356,217,0 +170742678405,218,0 +170742678453,217,0 +170742678502,217,0 +170742678550,218,0 +170742678598,217,0 +170742678646,218,0 +170742678694,217,0 +170742678742,218,0 +170742678790,218,0 +170742678839,217,0 +170742678889,218,0 +170742678937,218,0 +170742678985,218,0 +170742679034,218,0 +170742679084,218,0 +170742679133,218,0 +170742679181,218,0 +170742679229,218,0 +170742679277,218,0 +170742679325,218,0 +170742679374,218,0 +170742679422,219,0 +170742679470,219,0 +170742679518,219,0 +170742679566,219,0 +170742679616,220,0 +170742679664,219,0 +170742679712,219,0 +170742679760,219,0 +170742679808,220,0 +170742679855,220,0 +170742679903,221,0 +170742679953,220,0 +170742680001,221,0 +170742680049,220,0 +170742680097,222,0 +170742680146,222,0 +170742680194,221,0 +170742680242,222,0 +170742680290,222,0 +170742680338,222,0 +170742680388,223,0 +170742680436,223,0 +170742680483,223,0 +170742680531,224,0 +170742680579,224,0 +170742680629,224,0 +170742680678,226,0 +170742680726,226,0 +170742680774,226,0 +170742680823,227,0 +170742680871,228,0 +170742680919,228,0 +170742680969,229,0 +170742681018,229,0 +170742681066,230,0 +170742681115,231,0 +170742681163,231,0 +170742681211,232,0 +170742681261,232,0 +170742681308,232,0 +170742681358,233,0 +170742681407,235,0 +170742681455,235,0 +170742681505,231,0 +170742681554,241,0 +170742681602,241,0 +170742681650,241,0 +170742681698,242,0 +170742681746,242,0 +170742681794,243,0 +170742681844,244,0 +170742681892,243,0 +170742681940,244,0 +170742681987,228,0 +170742682035,220,0 +170742682085,224,0 +170742682134,223,0 +170742682182,221,0 +170742682230,219,0 +170742682278,219,0 +170742682326,219,0 +170742682375,218,0 +170742682423,218,0 +170742682473,218,0 +170742682521,218,0 +170742682569,219,0 +170742682618,218,0 +170742682668,218,0 +170742682715,218,0 +170742682763,218,0 +170742682811,218,0 +170742682859,218,0 +170742682909,218,0 +170742682957,218,0 +170742683006,218,0 +170742683056,218,0 +170742683104,218,0 +170742683152,218,0 +170742683201,218,0 +170742683249,218,0 +170742683297,218,0 +170742683345,218,0 +170742683393,218,0 +170742683441,218,0 +170742683491,218,0 +170742683539,219,0 +170742683588,218,0 +170742683636,218,0 +170742683684,218,0 +170742683733,218,0 +170742683781,218,0 +170742683829,218,0 +170742683877,218,0 +170742683925,218,0 +170742683973,218,0 +170742684021,218,0 +170742684069,218,0 +170742684117,218,0 +170742684165,218,0 +170742684215,218,0 +170742684264,218,0 +170742684312,218,0 +170742684360,218,0 +170742684408,218,0 +170742684456,218,0 +170742684505,218,0 +170742684553,218,0 +170742684603,218,0 +170742684652,218,0 +170742684700,218,0 +170742684748,218,0 +170742684796,218,0 +170742684844,218,0 +170742684892,218,0 +170742684940,218,0 +170742684988,218,0 +170742685036,218,0 +170742685086,218,0 +170742685133,218,0 +170742685183,218,0 +170742685231,218,0 +170742685281,218,0 +170742685328,218,0 +170742685378,218,0 +170742685428,218,0 +170742685477,218,0 +170742685527,218,0 +170742685576,218,0 +170742685624,218,0 +170742685672,218,0 +170742685722,218,0 +170742685770,219,0 +170742685818,218,0 +170742685865,219,0 +170742685915,218,0 +170742685963,218,0 +170742686012,218,0 +170742686062,219,0 +170742686110,219,0 +170742686158,219,0 +170742686207,219,0 +170742686255,219,0 +170742686303,220,0 +170742686351,220,0 +170742686399,222,0 +170742686447,222,0 +170742686497,223,0 +170742686544,223,0 +170742686592,225,0 +170742686642,224,0 +170742686691,225,0 +170742686739,225,0 +170742686787,227,0 +170742686835,241,0 +170742686885,243,0 +170742686933,241,0 +170742686982,242,0 +170742687032,239,0 +170742687081,243,0 +170742687129,239,0 +170742687177,244,0 +170742687225,244,0 +170742687274,245,0 +170742687322,256,0 +170742687370,232,0 +170742687418,220,0 +170742687466,225,0 +170742687515,225,0 +170742687563,223,0 +170742687611,220,0 +170742687659,219,0 +170742687707,218,0 +170742687755,218,0 +170742687805,218,0 +170742687854,218,0 +170742687904,218,0 +170742687953,218,0 +170742688003,218,0 +170742688050,218,0 +170742688098,218,0 +170742688148,218,0 +170742688197,218,0 +170742688245,218,0 +170742688295,218,0 +170742688343,218,0 +170742688392,218,0 +170742688440,218,0 +170742688490,218,0 +170742688538,218,0 +170742688586,218,0 +170742688634,218,0 +170742688683,218,0 +170742688733,218,0 +170742688781,217,0 +170742688830,217,0 +170742688878,218,0 +170742688926,218,0 +170742688974,217,0 +170742689023,217,0 +170742689071,218,0 +170742689119,218,0 +170742689169,217,0 +170742689217,218,0 +170742689265,218,0 +170742689312,218,0 +170742689362,217,0 +170742689410,218,0 +170742689458,217,0 +170742689507,218,0 +170742689555,218,0 +170742689605,217,0 +170742689654,218,0 +170742689702,217,0 +170742689752,218,0 +170742689800,218,0 +170742689848,218,0 +170742689897,218,0 +170742689945,218,0 +170742689995,217,0 +170742690044,218,0 +170742690092,218,0 +170742690142,218,0 +170742690190,218,0 +170742690238,218,0 +170742690286,218,0 +170742690335,218,0 +170742690383,219,0 +170742690431,219,0 +170742690478,218,0 +170742690526,219,0 +170742690576,220,0 +170742690624,220,0 +170742690672,220,0 +170742690720,220,0 +170742690768,219,0 +170742690815,220,0 +170742690863,220,0 +170742690913,221,0 +170742690962,222,0 +170742691012,223,0 +170742691060,223,0 +170742691109,223,0 +170742691157,225,0 +170742691207,225,0 +170742691255,225,0 +170742691303,225,0 +170742691352,226,0 +170742691400,226,0 +170742691448,227,0 +170742691496,228,0 +170742691544,228,0 +170742691592,228,0 +170742691642,229,0 +170742691689,229,0 +170742691738,229,0 +170742691786,231,0 +170742691833,231,0 +170742691883,232,0 +170742691933,232,0 +170742691980,232,0 +170742692030,234,0 +170742692079,232,0 +170742692129,233,0 +170742692177,235,0 +170742692225,256,0 +170742692275,243,0 +170742692324,242,0 +170742692372,242,0 +170742692420,241,0 +170742692469,243,0 +170742692517,246,0 +170742692565,244,0 +170742692613,246,0 +170742692663,253,0 +170742692712,226,0 +170742692760,223,0 +170742692808,225,0 +170742692856,223,0 +170742692906,221,0 +170742692954,220,0 +170742693003,218,0 +170742693051,218,0 +170742693099,218,0 +170742693147,218,0 +170742693195,218,0 +170742693245,218,0 +170742693294,218,0 +170742693342,218,0 +170742693392,218,0 +170742693440,218,0 +170742693488,218,0 +170742693535,218,0 +170742693583,218,0 +170742693631,218,0 +170742693679,218,0 +170742693727,218,0 +170742693777,218,0 +170742693826,218,0 +170742693876,218,0 +170742693924,218,0 +170742693972,218,0 +170742694020,218,0 +170742694068,218,0 +170742694116,218,0 +170742694164,218,0 +170742694212,218,0 +170742694261,218,0 +170742694309,218,0 +170742694357,218,0 +170742694405,218,0 +170742694453,218,0 +170742694503,218,0 +170742694552,218,0 +170742694600,218,0 +170742694648,218,0 +170742694698,218,0 +170742694747,218,0 +170742694797,218,0 +170742694845,218,0 +170742694893,218,0 +170742694941,218,0 +170742694990,218,0 +170742695040,218,0 +170742695088,218,0 +170742695136,219,0 +170742695184,219,0 +170742695232,219,0 +170742695280,219,0 +170742695329,219,0 +170742695377,220,0 +170742695425,219,0 +170742695473,220,0 +170742695521,220,0 +170742695570,220,0 +170742695618,220,0 +170742695668,220,0 +170742695716,221,0 +170742695764,221,0 +170742695812,222,0 +170742695861,221,0 +170742695909,221,0 +170742695957,222,0 +170742696007,223,0 +170742696056,222,0 +170742696104,224,0 +170742696154,224,0 +170742696202,224,0 +170742696250,225,0 +170742696298,227,0 +170742696346,227,0 +170742696395,227,0 +170742696443,227,0 +170742696491,229,0 +170742696541,228,0 +170742696589,229,0 +170742696638,229,0 +170742696688,229,0 +170742696736,231,0 +170742696784,232,0 +170742696833,233,0 +170742696881,232,0 +170742696929,234,0 +170742696977,234,0 +170742697025,234,0 +170742697075,235,0 +170742697123,235,0 +170742697171,233,0 +170742697219,234,0 +170742697266,233,0 +170742697314,233,0 +170742697364,234,0 +170742697412,234,0 +170742697462,234,0 +170742697511,236,0 +170742697559,241,0 +170742697609,242,0 +170742697657,237,0 +170742697706,240,0 +170742697756,243,0 +170742697805,244,0 +170742697855,242,0 +170742697902,246,0 +170742697950,244,0 +170742698000,244,0 +170742698050,240,0 +170742698099,220,0 +170742698147,224,0 +170742698197,223,0 +170742698245,221,0 +170742698293,219,0 +170742698342,218,0 +170742698390,218,0 +170742698438,218,0 +170742698486,218,0 +170742698534,218,0 +170742698582,218,0 +170742698630,218,0 +170742698677,218,0 +170742698725,218,0 +170742698773,217,0 +170742698821,218,0 +170742698869,218,0 +170742698917,217,0 +170742698965,218,0 +170742699013,218,0 +170742699061,218,0 +170742699109,217,0 +170742699156,218,0 +170742699204,218,0 +170742699252,218,0 +170742699300,218,0 +170742699348,218,0 +170742699396,218,0 +170742699444,218,0 +170742699492,218,0 +170742699541,218,0 +170742699589,218,0 +170742699637,218,0 +170742699685,218,0 +170742699733,218,0 +170742699781,218,0 +170742699829,218,0 +170742699876,218,0 +170742699924,218,0 +170742699972,218,0 +170742700020,218,0 +170742700068,218,0 +170742700116,218,0 +170742700164,218,0 +170742700212,218,0 +170742700260,218,0 +170742700308,218,0 +170742700355,218,0 +170742700403,218,0 +170742700451,218,0 +170742700499,218,0 +170742700547,218,0 +170742700595,218,0 +170742700643,218,0 +170742700691,218,0 +170742700739,218,0 +170742700786,218,0 +170742700834,218,0 +170742700882,218,0 +170742700930,218,0 +170742700978,219,0 +170742701026,219,0 +170742701074,219,0 +170742701122,219,0 +170742701170,220,0 +170742701217,221,0 +170742701265,220,0 +170742701313,219,0 +170742701361,220,0 +170742701409,220,0 +170742701457,220,0 +170742701505,221,0 +170742701553,221,0 +170742701601,220,0 +170742701649,221,0 +170742701696,222,0 +170742701744,223,0 +170742701792,223,0 +170742701840,224,0 +170742701888,223,0 +170742701936,225,0 +170742701984,226,0 +170742702032,226,0 +170742702080,225,0 +170742702129,227,0 +170742702177,228,0 +170742702225,228,0 +170742702274,228,0 +170742702322,228,0 +170742702370,228,0 +170742702418,232,0 +170742702466,230,0 +170742702514,233,0 +170742702562,232,0 +170742702609,232,0 +170742702657,231,0 +170742702707,233,0 +170742702756,232,0 +170742702804,233,0 +170742702852,234,0 +170742702900,233,0 +170742702950,234,0 +170742702999,250,0 +170742703047,247,0 +170742703095,243,0 +170742703143,243,0 +170742703193,244,0 +170742703241,244,0 +170742703289,244,0 +170742703338,245,0 +170742703388,248,0 +170742703436,246,0 +170742703485,221,0 +170742703535,225,0 +170742703584,225,0 +170742703632,223,0 +170742703680,221,0 +170742703728,219,0 +170742703778,218,0 +170742703826,218,0 +170742703875,218,0 +170742703923,218,0 +170742703971,217,0 +170742704019,218,0 +170742704067,218,0 +170742704114,218,0 +170742704162,218,0 +170742704210,218,0 +170742704258,218,0 +170742704305,217,0 +170742704353,218,0 +170742704401,217,0 +170742704449,218,0 +170742704497,218,0 +170742704545,218,0 +170742704592,218,0 +170742704640,218,0 +170742704688,218,0 +170742704736,218,0 +170742704784,218,0 +170742704832,217,0 +170742704880,218,0 +170742704928,218,0 +170742704976,218,0 +170742705024,218,0 +170742705073,218,0 +170742705121,218,0 +170742705169,218,0 +170742705217,217,0 +170742705265,218,0 +170742705312,218,0 +170742705362,217,0 +170742705410,217,0 +170742705458,218,0 +170742705507,217,0 +170742705557,217,0 +170742705605,217,0 +170742705653,218,0 +170742705702,217,0 +170742705750,218,0 +170742705798,217,0 +170742705846,218,0 +170742705896,217,0 +170742705945,217,0 +170742705993,218,0 +170742706041,218,0 +170742706089,218,0 +170742706137,218,0 +170742706184,218,0 +170742706232,218,0 +170742706280,218,0 +170742706328,217,0 +170742706376,218,0 +170742706426,218,0 +170742706474,218,0 +170742706523,218,0 +170742706571,218,0 +170742706621,217,0 +170742706670,219,0 +170742706720,218,0 +170742706768,218,0 +170742706816,218,0 +170742706863,219,0 +170742706911,218,0 +170742706961,220,0 +170742707009,219,0 +170742707057,219,0 +170742707104,220,0 +170742707152,220,0 +170742707200,220,0 +170742707248,220,0 +170742707296,221,0 +170742707344,221,0 +170742707392,221,0 +170742707441,221,0 +170742707489,222,0 +170742707537,223,0 +170742707585,223,0 +170742707633,224,0 +170742707681,224,0 +170742707729,225,0 +170742707778,226,0 +170742707826,226,0 +170742707876,227,0 +170742707925,228,0 +170742707973,229,0 +170742708021,231,0 +170742708069,230,0 +170742708117,230,0 +170742708167,231,0 +170742708215,230,0 +170742708264,233,0 +170742708314,232,0 +170742708363,246,0 +170742708411,241,0 +170742708460,243,0 +170742708508,242,0 +170742708558,242,0 +170742708606,242,0 +170742708654,245,0 +170742708703,244,0 +170742708751,267,0 +170742708801,222,0 +170742708849,224,0 +170742708897,226,0 +170742708945,225,0 +170742708994,223,0 +170742709044,220,0 +170742709092,218,0 +170742709141,219,0 +170742709189,218,0 +170742709239,218,0 +170742709287,218,0 +170742709335,218,0 +170742709384,218,0 +170742709434,218,0 +170742709482,218,0 +170742709530,218,0 +170742709578,218,0 +170742709627,218,0 +170742709677,218,0 +170742709726,218,0 +170742709774,218,0 +170742709822,218,0 +170742709870,218,0 +170742709918,218,0 +170742709966,218,0 +170742710014,218,0 +170742710062,218,0 +170742710110,218,0 +170742710158,218,0 +170742710206,218,0 +170742710254,218,0 +170742710303,218,0 +170742710351,218,0 +170742710401,218,0 +170742710449,219,0 +170742710497,218,0 +170742710546,218,0 +170742710594,218,0 +170742710642,218,0 +170742710690,218,0 +170742710738,218,0 +170742710786,218,0 +170742710834,219,0 +170742710882,218,0 +170742710930,218,0 +170742710978,218,0 +170742711026,218,0 +170742711074,218,0 +170742711122,218,0 +170742711169,218,0 +170742711217,218,0 +170742711265,218,0 +170742711313,218,0 +170742711361,218,0 +170742711411,218,0 +170742711458,218,0 +170742711506,218,0 +170742711554,218,0 +170742711604,218,0 +170742711653,218,0 +170742711701,218,0 +170742711749,218,0 +170742711797,219,0 +170742711845,218,0 +170742711893,218,0 +170742711943,218,0 +170742711991,218,0 +170742712039,218,0 +170742712087,218,0 +170742712136,219,0 +170742712184,219,0 +170742712232,220,0 +170742712280,220,0 +170742712328,220,0 +170742712376,220,0 +170742712426,220,0 +170742712475,220,0 +170742712523,220,0 +170742712573,220,0 +170742712621,222,0 +170742712668,222,0 +170742712716,221,0 +170742712766,222,0 +170742712815,223,0 +170742712863,223,0 +170742712913,224,0 +170742712962,223,0 +170742713010,225,0 +170742713060,225,0 +170742713108,226,0 +170742713156,226,0 +170742713204,228,0 +170742713251,227,0 +170742713299,228,0 +170742713347,228,0 +170742713395,229,0 +170742713443,229,0 +170742713491,230,0 +170742713540,231,0 +170742713588,230,0 +170742713636,229,0 +170742713684,242,0 +170742713732,239,0 +170742713780,239,0 +170742713829,242,0 +170742713877,241,0 +170742713925,243,0 +170742713973,241,0 +170742714021,242,0 +170742714069,241,0 +170742714117,256,0 +170742714165,221,0 +170742714213,223,0 +170742714260,223,0 +170742714310,222,0 +170742714359,220,0 +170742714407,218,0 +170742714455,217,0 +170742714503,218,0 +170742714553,218,0 +170742714601,217,0 +170742714650,217,0 +170742714698,217,0 +170742714746,218,0 +170742714794,218,0 +170742714842,218,0 +170742714889,217,0 +170742714937,217,0 +170742714985,217,0 +170742715035,218,0 +170742715083,218,0 +170742715131,217,0 +170742715179,218,0 +170742715228,218,0 +170742715276,217,0 +170742715324,217,0 +170742715374,218,0 +170742715423,217,0 +170742715471,217,0 +170742715521,218,0 +170742715569,217,0 +170742715618,218,0 +170742715666,218,0 +170742715714,218,0 +170742715762,217,0 +170742715811,218,0 +170742715861,218,0 +170742715909,218,0 +170742715957,217,0 +170742716006,218,0 +170742716054,218,0 +170742716102,218,0 +170742716150,217,0 +170742716198,218,0 +170742716246,218,0 +170742716293,217,0 +170742716341,218,0 +170742716389,218,0 +170742716437,218,0 +170742716485,217,0 +170742716533,217,0 +170742716581,217,0 +170742716629,218,0 +170742716677,218,0 +170742716725,217,0 +170742716772,217,0 +170742716820,217,0 +170742716868,217,0 +170742716916,217,0 +170742716964,217,0 +170742717012,217,0 +170742717060,217,0 +170742717108,217,0 +170742717156,217,0 +170742717204,217,0 +170742717253,217,0 +170742717301,217,0 +170742717349,217,0 +170742717397,217,0 +170742717445,217,0 +170742717493,217,0 +170742717541,217,0 +170742717589,218,0 +170742717637,217,0 +170742717686,218,0 +170742717736,218,0 +170742717783,218,0 +170742717831,218,0 +170742717879,219,0 +170742717927,218,0 +170742717975,219,0 +170742718023,219,0 +170742718071,219,0 +170742718119,219,0 +170742718167,220,0 +170742718215,220,0 +170742718262,221,0 +170742718310,222,0 +170742718358,222,0 +170742718406,223,0 +170742718454,224,0 +170742718502,225,0 +170742718550,225,0 +170742718598,225,0 +170742718646,226,0 +170742718693,227,0 +170742718741,226,0 +170742718789,228,0 +170742718837,228,0 +170742718885,228,0 +170742718933,229,0 +170742718981,230,0 +170742719029,245,0 +170742719076,243,0 +170742719124,242,0 +170742719172,241,0 +170742719220,243,0 +170742719268,245,0 +170742719316,244,0 +170742719364,244,0 +170742719411,242,0 +170742719459,244,0 +170742719507,220,0 +170742719555,225,0 +170742719603,225,0 +170742719651,222,0 +170742719699,221,0 +170742719748,219,0 +170742719796,218,0 +170742719845,218,0 +170742719893,219,0 +170742719943,218,0 +170742719991,218,0 +170742720039,218,0 +170742720087,219,0 +170742720135,218,0 +170742720183,218,0 +170742720230,218,0 +170742720280,218,0 +170742720328,219,0 +170742720376,218,0 +170742720425,218,0 +170742720473,218,0 +170742720521,218,0 +170742720569,218,0 +170742720617,218,0 +170742720665,218,0 +170742720715,219,0 +170742720763,218,0 +170742720811,218,0 +170742720860,218,0 +170742720908,218,0 +170742720956,218,0 +170742721004,218,0 +170742721054,218,0 +170742721101,218,0 +170742721149,218,0 +170742721197,218,0 +170742721245,218,0 +170742721293,218,0 +170742721342,218,0 +170742721392,218,0 +170742721440,218,0 +170742721488,218,0 +170742721536,218,0 +170742721583,218,0 +170742721631,218,0 +170742721679,218,0 +170742721729,218,0 +170742721778,218,0 +170742721828,218,0 +170742721877,218,0 +170742721925,218,0 +170742721973,218,0 +170742722023,218,0 +170742722072,218,0 +170742722120,218,0 +170742722170,218,0 +170742722219,218,0 +170742722269,218,0 +170742722318,218,0 +170742722366,218,0 +170742722414,218,0 +170742722462,218,0 +170742722512,218,0 +170742722560,218,0 +170742722609,218,0 +170742722659,218,0 +170742722708,218,0 +170742722756,218,0 +170742722804,218,0 +170742722852,218,0 +170742722900,218,0 +170742722948,218,0 +170742722995,218,0 +170742723043,218,0 +170742723093,218,0 +170742723141,218,0 +170742723189,218,0 +170742723237,218,0 +170742723284,218,0 +170742723332,218,0 +170742723380,218,0 +170742723428,219,0 +170742723476,218,0 +170742723524,218,0 +170742723572,218,0 +170742723619,219,0 +170742723669,219,0 +170742723717,219,0 +170742723765,220,0 +170742723813,221,0 +170742723861,222,0 +170742723910,222,0 +170742723960,223,0 +170742724008,222,0 +170742724056,223,0 +170742724105,225,0 +170742724155,226,0 +170742724203,227,0 +170742724251,228,0 +170742724300,229,0 +170742724348,228,0 +170742724396,250,0 +170742724444,242,0 +170742724492,244,0 +170742724539,242,0 +170742724587,244,0 +170742724635,244,0 +170742724683,245,0 +170742724733,244,0 +170742724781,246,0 +170742724830,245,0 +170742724878,239,0 +170742724928,220,0 +170742724976,224,0 +170742725024,224,0 +170742725073,222,0 +170742725123,220,0 +170742725171,218,0 +170742725219,218,0 +170742725267,218,0 +170742725315,218,0 +170742725364,218,0 +170742725412,218,0 +170742725460,218,0 +170742725509,218,0 +170742725557,218,0 +170742725605,218,0 +170742725653,218,0 +170742725701,218,0 +170742725749,218,0 +170742725797,218,0 +170742725845,218,0 +170742725895,218,0 +170742725943,218,0 +170742725991,218,0 +170742726039,218,0 +170742726087,218,0 +170742726135,218,0 +170742726183,218,0 +170742726232,217,0 +170742726280,218,0 +170742726328,218,0 +170742726376,218,0 +170742726426,218,0 +170742726474,218,0 +170742726522,218,0 +170742726571,218,0 +170742726619,218,0 +170742726667,218,0 +170742726715,218,0 +170742726763,218,0 +170742726811,218,0 +170742726860,218,0 +170742726908,218,0 +170742726956,218,0 +170742727006,218,0 +170742727054,218,0 +170742727102,218,0 +170742727151,218,0 +170742727199,218,0 +170742727247,218,0 +170742727295,218,0 +170742727345,218,0 +170742727393,218,0 +170742727442,218,0 +170742727490,218,0 +170742727538,218,0 +170742727586,218,0 +170742727634,218,0 +170742727682,218,0 +170742727732,218,0 +170742727781,218,0 +170742727829,218,0 +170742727879,218,0 +170742727927,218,0 +170742727975,219,0 +170742728023,219,0 +170742728071,219,0 +170742728120,219,0 +170742728168,219,0 +170742728216,220,0 +170742728266,219,0 +170742728314,220,0 +170742728362,220,0 +170742728409,221,0 +170742728459,220,0 +170742728507,220,0 +170742728555,220,0 +170742728603,221,0 +170742728651,220,0 +170742728700,220,0 +170742728748,221,0 +170742728796,223,0 +170742728844,223,0 +170742728894,223,0 +170742728942,224,0 +170742728990,225,0 +170742729039,225,0 +170742729087,225,0 +170742729135,225,0 +170742729183,226,0 +170742729231,226,0 +170742729278,227,0 +170742729326,227,0 +170742729374,228,0 +170742729422,228,0 +170742729470,230,0 +170742729518,230,0 +170742729568,230,0 +170742729616,231,0 +170742729664,232,0 +170742729713,242,0 +170742729761,241,0 +170742729811,242,0 +170742729858,241,0 +170742729906,241,0 +170742729954,241,0 +170742730002,243,0 +170742730050,243,0 +170742730098,244,0 +170742730146,247,0 +170742730194,227,0 +170742730242,221,0 +170742730290,224,0 +170742730338,224,0 +170742730386,222,0 +170742730433,220,0 +170742730483,219,0 +170742730533,219,0 +170742730581,218,0 +170742730628,219,0 +170742730678,219,0 +170742730728,218,0 +170742730776,219,0 +170742730824,219,0 +170742730871,219,0 +170742730921,218,0 +170742730969,218,0 +170742731017,218,0 +170742731065,218,0 +170742731113,218,0 +170742731161,218,0 +170742731209,218,0 +170742731257,218,0 +170742731305,218,0 +170742731353,218,0 +170742731402,218,0 +170742731450,218,0 +170742731498,218,0 +170742731548,218,0 +170742731596,218,0 +170742731645,218,0 +170742731695,218,0 +170742731743,218,0 +170742731791,218,0 +170742731840,218,0 +170742731888,218,0 +170742731936,218,0 +170742731986,218,0 +170742732035,218,0 +170742732083,218,0 +170742732131,218,0 +170742732179,218,0 +170742732227,218,0 +170742732275,218,0 +170742732323,218,0 +170742732371,218,0 +170742732421,218,0 +170742732469,218,0 +170742732518,218,0 +170742732566,218,0 +170742732614,218,0 +170742732663,218,0 +170742732711,218,0 +170742732759,218,0 +170742732809,218,0 +170742732858,218,0 +170742732906,218,0 +170742732954,218,0 +170742733002,218,0 +170742733050,218,0 +170742733098,218,0 +170742733148,218,0 +170742733195,218,0 +170742733243,218,0 +170742733293,218,0 +170742733341,218,0 +170742733390,218,0 +170742733438,219,0 +170742733488,219,0 +170742733536,218,0 +170742733585,218,0 +170742733633,219,0 +170742733681,219,0 +170742733729,219,0 +170742733779,219,0 +170742733827,219,0 +170742733875,220,0 +170742733923,220,0 +170742733972,220,0 +170742734020,220,0 +170742734068,220,0 +170742734118,220,0 +170742734166,221,0 +170742734214,222,0 +170742734263,222,0 +170742734311,222,0 +170742734359,224,0 +170742734407,224,0 +170742734455,225,0 +170742734503,225,0 +170742734552,225,0 +170742734600,225,0 +170742734648,225,0 +170742734698,227,0 +170742734746,227,0 +170742734794,228,0 +170742734842,228,0 +170742734890,227,0 +170742734938,227,0 +170742734986,227,0 +170742735034,227,0 +170742735081,229,0 +170742735129,242,0 +170742735177,239,0 +170742735225,241,0 +170742735273,240,0 +170742735323,239,0 +170742735372,240,0 +170742735422,241,0 +170742735471,242,0 +170742735521,253,0 +170742735569,237,0 +170742735617,220,0 +170742735665,223,0 +170742735713,222,0 +170742735762,220,0 +170742735810,218,0 +170742735858,218,0 +170742735906,217,0 +170742735954,217,0 +170742736002,217,0 +170742736050,217,0 +170742736098,217,0 +170742736146,217,0 +170742736194,217,0 +170742736243,217,0 +170742736291,217,0 +170742736339,217,0 +170742736387,218,0 +170742736437,217,0 +170742736484,217,0 +170742736534,217,0 +170742736584,217,0 +170742736631,217,0 +170742736681,217,0 +170742736729,217,0 +170742736777,217,0 +170742736825,217,0 +170742736873,217,0 +170742736921,218,0 +170742736969,218,0 +170742737017,219,0 +170742737065,219,0 +170742737113,219,0 +170742737160,219,0 +170742737208,219,0 +170742737256,219,0 +170742737304,219,0 +170742737352,219,0 +170742737400,219,0 +170742737448,220,0 +170742737496,219,0 +170742737543,219,0 +170742737591,218,0 +170742737639,219,0 +170742737687,220,0 +170742737735,220,0 +170742737784,221,0 +170742737832,220,0 +170742737880,220,0 +170742737928,221,0 +170742737976,220,0 +170742738024,221,0 +170742738072,221,0 +170742738120,222,0 +170742738169,221,0 +170742738219,222,0 +170742738266,221,0 +170742738314,222,0 +170742738362,223,0 +170742738410,222,0 +170742738458,222,0 +170742738506,223,0 +170742738554,222,0 +170742738602,223,0 +170742738650,223,0 +170742738698,223,0 +170742738746,224,0 +170742738794,224,0 +170742738842,224,0 +170742738890,224,0 +170742738938,225,0 +170742738986,226,0 +170742739034,227,0 +170742739083,227,0 +170742739133,228,0 +170742739182,229,0 +170742739230,230,0 +170742739278,230,0 +170742739328,230,0 +170742739377,231,0 +170742739425,231,0 +170742739473,232,0 +170742739523,231,0 +170742739571,232,0 +170742739619,233,0 +170742739668,233,0 +170742739716,232,0 +170742739764,233,0 +170742739812,233,0 +170742739860,235,0 +170742739908,234,0 +170742739956,234,0 +170742740004,236,0 +170742740051,235,0 +170742740101,235,0 +170742740149,236,0 +170742740197,234,0 +170742740245,235,0 +170742740292,234,0 +170742740340,234,0 +170742740388,234,0 +170742740436,237,0 +170742740484,238,0 +170742740532,242,0 +170742740580,240,0 +170742740628,243,0 +170742740676,241,0 +170742740724,244,0 +170742740773,245,0 +170742740823,244,0 +170742740871,242,0 +170742740919,236,0 +170742740968,219,0 +170742741018,223,0 +170742741066,222,0 +170742741114,221,0 +170742741163,219,0 +170742741211,218,0 +170742741259,218,0 +170742741307,217,0 +170742741357,217,0 +170742741405,217,0 +170742741454,217,0 +170742741502,217,0 +170742741550,217,0 +170742741598,217,0 +170742741646,217,0 +170742741694,217,0 +170742741742,217,0 +170742741790,217,0 +170742741838,217,0 +170742741886,217,0 +170742741934,217,0 +170742741983,217,0 +170742742031,217,0 +170742742079,217,0 +170742742127,217,0 +170742742175,218,0 +170742742223,217,0 +170742742271,217,0 +170742742319,217,0 +170742742369,217,0 +170742742418,217,0 +170742742466,217,0 +170742742514,217,0 +170742742562,217,0 +170742742610,217,0 +170742742658,217,0 +170742742706,217,0 +170742742754,218,0 +170742742802,217,0 +170742742850,217,0 +170742742899,217,0 +170742742947,217,0 +170742742995,217,0 +170742743043,217,0 +170742743093,217,0 +170742743141,217,0 +170742743189,217,0 +170742743237,217,0 +170742743285,217,0 +170742743332,217,0 +170742743380,217,0 +170742743428,217,0 +170742743476,217,0 +170742743524,217,0 +170742743572,217,0 +170742743620,217,0 +170742743669,217,0 +170742743718,217,0 +170742743766,217,0 +170742743816,217,0 +170742743864,217,0 +170742743912,217,0 +170742743959,217,0 +170742744007,218,0 +170742744055,217,0 +170742744103,217,0 +170742744151,217,0 +170742744199,217,0 +170742744247,217,0 +170742744295,217,0 +170742744344,217,0 +170742744392,217,0 +170742744440,217,0 +170742744489,217,0 +170742744537,217,0 +170742744585,217,0 +170742744634,218,0 +170742744682,218,0 +170742744730,219,0 +170742744778,219,0 +170742744826,219,0 +170742744874,221,0 +170742744922,220,0 +170742744970,221,0 +170742745017,221,0 +170742745065,222,0 +170742745113,222,0 +170742745161,223,0 +170742745209,223,0 +170742745257,224,0 +170742745305,225,0 +170742745354,226,0 +170742745402,226,0 +170742745450,226,0 +170742745500,228,0 +170742745547,228,0 +170742745595,229,0 +170742745643,230,0 +170742745691,230,0 +170742745741,231,0 +170742745788,231,0 +170742745836,248,0 +170742745884,242,0 +170742745934,242,0 +170742745983,244,0 +170742746031,243,0 +170742746079,241,0 +170742746127,245,0 +170742746175,244,0 +170742746223,255,0 +170742746273,236,0 +170742746322,222,0 +170742746370,228,0 +170742746418,228,0 +170742746468,225,0 +170742746517,222,0 +170742746565,219,0 +170742746613,219,0 +170742746661,219,0 +170742746709,218,0 +170742746759,219,0 +170742746807,219,0 +170742746856,218,0 +170742746906,218,0 +170742746954,218,0 +170742747002,219,0 +170742747050,218,0 +170742747099,218,0 +170742747149,218,0 +170742747198,218,0 +170742747248,219,0 +170742747296,219,0 +170742747346,219,0 +170742747393,218,0 +170742747441,218,0 +170742747489,218,0 +170742747537,218,0 +170742747585,218,0 +170742747633,219,0 +170742747681,218,0 +170742747729,218,0 +170742747779,218,0 +170742747827,218,0 +170742747875,218,0 +170742747924,218,0 +170742747972,218,0 +170742748022,218,0 +170742748070,218,0 +170742748118,218,0 +170742748166,219,0 +170742748214,218,0 +170742748262,218,0 +170742748310,219,0 +170742748358,219,0 +170742748406,219,0 +170742748454,219,0 +170742748503,219,0 +170742748551,219,0 +170742748601,219,0 +170742748649,219,0 +170742748698,220,0 +170742748746,219,0 +170742748796,220,0 +170742748844,220,0 +170742748892,220,0 +170742748940,220,0 +170742748988,220,0 +170742749037,221,0 +170742749087,222,0 +170742749135,221,0 +170742749183,222,0 +170742749231,222,0 +170742749278,222,0 +170742749326,222,0 +170742749374,222,0 +170742749422,223,0 +170742749470,222,0 +170742749520,222,0 +170742749569,223,0 +170742749617,224,0 +170742749667,224,0 +170742749715,226,0 +170742749763,226,0 +170742749812,226,0 +170742749860,226,0 +170742749910,229,0 +170742749958,228,0 +170742750006,230,0 +170742750054,230,0 +170742750102,230,0 +170742750150,230,0 +170742750199,231,0 +170742750249,230,0 +170742750297,231,0 +170742750345,233,0 +170742750393,233,0 +170742750442,233,0 +170742750492,233,0 +170742750540,233,0 +170742750588,234,0 +170742750637,234,0 +170742750685,235,0 +170742750733,235,0 +170742750783,235,0 +170742750831,236,0 +170742750880,235,0 +170742750928,237,0 +170742750976,236,0 +170742751026,237,0 +170742751075,238,0 +170742751123,232,0 +170742751173,256,0 +170742751221,252,0 +170742751269,245,0 +170742751318,242,0 +170742751366,246,0 +170742751416,244,0 +170742751465,244,0 +170742751515,247,0 +170742751563,247,0 +170742751611,238,0 +170742751658,221,0 +170742751708,227,0 +170742751758,227,0 +170742751805,224,0 +170742751855,220,0 +170742751904,219,0 +170742751952,219,0 +170742752000,219,0 +170742752048,219,0 +170742752096,219,0 +170742752144,219,0 +170742752192,219,0 +170742752240,219,0 +170742752290,219,0 +170742752339,219,0 +170742752387,218,0 +170742752435,219,0 +170742752485,219,0 +170742752533,219,0 +170742752581,219,0 +170742752630,219,0 +170742752680,219,0 +170742752729,219,0 +170742752779,219,0 +170742752827,219,0 +170742752875,219,0 +170742752923,219,0 +170742752971,219,0 +170742753019,219,0 +170742753067,219,0 +170742753115,219,0 +170742753163,219,0 +170742753211,218,0 +170742753260,219,0 +170742753308,219,0 +170742753356,218,0 +170742753406,219,0 +170742753454,219,0 +170742753502,219,0 +170742753551,218,0 +170742753599,219,0 +170742753649,219,0 +170742753698,219,0 +170742753748,219,0 +170742753797,219,0 +170742753845,219,0 +170742753893,219,0 +170742753943,219,0 +170742753991,219,0 +170742754039,219,0 +170742754087,220,0 +170742754136,220,0 +170742754184,219,0 +170742754234,220,0 +170742754282,220,0 +170742754330,220,0 +170742754379,220,0 +170742754427,221,0 +170742754475,221,0 +170742754523,222,0 +170742754571,221,0 +170742754619,221,0 +170742754667,221,0 +170742754717,221,0 +170742754766,222,0 +170742754814,222,0 +170742754864,222,0 +170742754912,222,0 +170742754960,222,0 +170742755009,222,0 +170742755057,224,0 +170742755105,225,0 +170742755153,225,0 +170742755203,225,0 +170742755252,225,0 +170742755300,226,0 +170742755348,227,0 +170742755396,228,0 +170742755446,228,0 +170742755494,228,0 +170742755542,229,0 +170742755589,230,0 +170742755638,229,0 +170742755685,230,0 +170742755733,231,0 +170742755783,231,0 +170742755833,232,0 +170742755881,232,0 +170742755928,232,0 +170742755976,233,0 +170742756024,232,0 +170742756074,234,0 +170742756123,232,0 +170742756171,233,0 +170742756219,233,0 +170742756267,234,0 +170742756315,233,0 +170742756365,233,0 +170742756414,232,0 +170742756464,232,0 +170742756513,251,0 +170742756561,244,0 +170742756609,243,0 +170742756657,240,0 +170742756705,245,0 +170742756755,242,0 +170742756804,244,0 +170742756852,244,0 +170742756901,244,0 +170742756949,249,0 +170742756997,222,0 +170742757046,224,0 +170742757094,224,0 +170742757144,223,0 +170742757192,221,0 +170742757241,219,0 +170742757289,218,0 +170742757337,218,0 +170742757385,218,0 +170742757433,218,0 +170742757482,218,0 +170742757530,218,0 +170742757580,218,0 +170742757629,218,0 +170742757677,218,0 +170742757725,218,0 +170742757773,218,0 +170742757821,219,0 +170742757869,218,0 +170742757917,219,0 +170742757965,219,0 +170742758013,219,0 +170742758061,218,0 +170742758109,219,0 +170742758157,218,0 +170742758205,219,0 +170742758254,219,0 +170742758304,218,0 +170742758352,219,0 +170742758401,218,0 +170742758451,218,0 +170742758500,219,0 +170742758550,218,0 +170742758598,218,0 +170742758646,219,0 +170742758694,218,0 +170742758742,219,0 +170742758790,219,0 +170742758839,219,0 +170742758889,219,0 +170742758938,219,0 +170742758988,218,0 +170742759037,219,0 +170742759087,219,0 +170742759135,219,0 +170742759183,218,0 +170742759231,218,0 +170742759280,218,0 +170742759328,218,0 +170742759376,218,0 +170742759424,218,0 +170742759474,218,0 +170742759522,218,0 +170742759570,218,0 +170742759619,219,0 +170742759667,218,0 +170742759717,219,0 +170742759765,219,0 +170742759813,219,0 +170742759861,219,0 +170742759910,220,0 +170742759958,220,0 +170742760006,220,0 +170742760054,220,0 +170742760102,220,0 +170742760150,220,0 +170742760198,220,0 +170742760248,220,0 +170742760296,221,0 +170742760343,222,0 +170742760393,221,0 +170742760443,221,0 +170742760492,221,0 +170742760542,221,0 +170742760590,223,0 +170742760639,223,0 +170742760687,224,0 +170742760735,225,0 +170742760783,225,0 +170742760831,226,0 +170742760879,227,0 +170742760927,227,0 +170742760977,229,0 +170742761025,229,0 +170742761074,228,0 +170742761122,229,0 +170742761170,231,0 +170742761219,230,0 +170742761267,230,0 +170742761317,231,0 +170742761365,231,0 +170742761414,231,0 +170742761462,231,0 +170742761510,232,0 +170742761558,232,0 +170742761606,232,0 +170742761654,230,0 +170742761702,232,0 +170742761751,231,0 +170742761801,234,0 +170742761851,231,0 +170742761898,258,0 +170742761948,243,0 +170742761996,242,0 +170742762044,243,0 +170742762093,243,0 +170742762141,243,0 +170742762191,243,0 +170742762239,245,0 +170742762287,259,0 +170742762335,232,0 +170742762385,221,0 +170742762433,226,0 +170742762480,225,0 +170742762530,223,0 +170742762578,221,0 +170742762626,218,0 +170742762674,218,0 +170742762723,218,0 +170742762773,218,0 +170742762821,218,0 +170742762870,217,0 +170742762920,217,0 +170742762968,217,0 +170742763017,218,0 +170742763065,218,0 +170742763115,218,0 +170742763164,218,0 +170742763212,217,0 +170742763260,218,0 +170742763308,218,0 +170742763356,218,0 +170742763404,218,0 +170742763454,218,0 +170742763502,218,0 +170742763551,218,0 +170742763601,218,0 +170742763650,218,0 +170742763700,217,0 +170742763748,218,0 +170742763796,218,0 +170742763844,218,0 +170742763892,217,0 +170742763940,218,0 +170742763988,218,0 +170742764037,218,0 +170742764085,217,0 +170742764135,218,0 +170742764184,218,0 +170742764232,217,0 +170742764280,218,0 +170742764328,218,0 +170742764376,218,0 +170742764425,218,0 +170742764473,218,0 +170742764523,218,0 +170742764571,218,0 +170742764619,218,0 +170742764668,217,0 +170742764716,218,0 +170742764764,217,0 +170742764812,218,0 +170742764860,217,0 +170742764908,218,0 +170742764958,218,0 +170742765007,218,0 +170742765057,218,0 +170742765105,218,0 +170742765154,219,0 +170742765204,219,0 +170742765252,219,0 +170742765301,219,0 +170742765351,219,0 +170742765400,220,0 +170742765448,220,0 +170742765496,219,0 +170742765544,220,0 +170742765592,220,0 +170742765642,220,0 +170742765690,221,0 +170742765738,221,0 +170742765786,221,0 +170742765834,221,0 +170742765882,220,0 +170742765930,222,0 +170742765979,223,0 +170742766027,223,0 +170742766075,224,0 +170742766123,224,0 +170742766171,224,0 +170742766219,225,0 +170742766267,225,0 +170742766317,226,0 +170742766365,226,0 +170742766413,226,0 +170742766461,227,0 +170742766508,229,0 +170742766558,229,0 +170742766606,230,0 +170742766654,229,0 +170742766702,230,0 +170742766750,231,0 +170742766798,231,0 +170742766846,231,0 +170742766894,231,0 +170742766942,231,0 +170742766991,231,0 +170742767039,230,0 +170742767087,232,0 +170742767135,233,0 +170742767183,233,0 +170742767231,247,0 +170742767280,244,0 +170742767328,245,0 +170742767376,243,0 +170742767424,245,0 +170742767472,246,0 +170742767520,245,0 +170742767568,245,0 +170742767616,254,0 +170742767665,246,0 +170742767715,220,0 +170742767764,225,0 +170742767814,226,0 +170742767863,223,0 +170742767911,220,0 +170742767959,219,0 +170742768007,218,0 +170742768055,218,0 +170742768103,218,0 +170742768151,217,0 +170742768201,218,0 +170742768250,218,0 +170742768298,217,0 +170742768346,217,0 +170742768394,217,0 +170742768442,218,0 +170742768490,218,0 +170742768540,218,0 +170742768588,217,0 +170742768636,217,0 +170742768685,218,0 +170742768733,217,0 +170742768783,217,0 +170742768831,218,0 +170742768880,217,0 +170742768928,218,0 +170742768976,217,0 +170742769024,217,0 +170742769072,218,0 +170742769122,217,0 +170742769171,217,0 +170742769219,217,0 +170742769269,218,0 +170742769317,217,0 +170742769364,217,0 +170742769412,217,0 +170742769462,218,0 +170742769510,217,0 +170742769558,218,0 +170742769606,217,0 +170742769654,218,0 +170742769702,217,0 +170742769750,218,0 +170742769797,217,0 +170742769845,217,0 +170742769893,218,0 +170742769943,218,0 +170742769993,218,0 +170742770042,217,0 +170742770090,217,0 +170742770138,217,0 +170742770186,217,0 +170742770234,218,0 +170742770282,217,0 +170742770331,217,0 +170742770381,217,0 +170742770429,217,0 +170742770478,218,0 +170742770528,217,0 +170742770578,217,0 +170742770625,218,0 +170742770673,217,0 +170742770723,218,0 +170742770771,217,0 +170742770819,217,0 +170742770868,218,0 +170742770916,218,0 +170742770964,218,0 +170742771014,219,0 +170742771062,218,0 +170742771110,218,0 +170742771159,219,0 +170742771209,219,0 +170742771258,219,0 +170742771306,219,0 +170742771354,219,0 +170742771402,220,0 +170742771450,220,0 +170742771500,220,0 +170742771548,220,0 +170742771597,220,0 +170742771647,221,0 +170742771696,221,0 +170742771744,222,0 +170742771792,223,0 +170742771842,223,0 +170742771891,224,0 +170742771939,224,0 +170742771987,225,0 +170742772035,225,0 +170742772083,226,0 +170742772133,228,0 +170742772181,227,0 +170742772228,227,0 +170742772276,230,0 +170742772324,229,0 +170742772372,230,0 +170742772422,230,0 +170742772470,230,0 +170742772519,230,0 +170742772567,242,0 +170742772617,242,0 +170742772665,240,0 +170742772713,242,0 +170742772761,243,0 +170742772809,240,0 +170742772857,243,0 +170742772905,245,0 +170742772953,243,0 +170742773001,242,0 +170742773048,229,0 +170742773096,222,0 +170742773144,223,0 +170742773192,222,0 +170742773240,220,0 +170742773290,219,0 +170742773338,218,0 +170742773387,218,0 +170742773435,218,0 +170742773483,217,0 +170742773531,217,0 +170742773579,218,0 +170742773627,217,0 +170742773675,217,0 +170742773723,217,0 +170742773772,218,0 +170742773820,218,0 +170742773868,218,0 +170742773916,218,0 +170742773966,217,0 +170742774014,217,0 +170742774062,217,0 +170742774110,217,0 +170742774158,218,0 +170742774206,217,0 +170742774254,218,0 +170742774301,217,0 +170742774349,218,0 +170742774397,218,0 +170742774447,217,0 +170742774495,218,0 +170742774543,217,0 +170742774592,217,0 +170742774640,217,0 +170742774688,218,0 +170742774736,217,0 +170742774786,218,0 +170742774834,217,0 +170742774882,217,0 +170742774930,217,0 +170742774978,218,0 +170742775026,218,0 +170742775074,217,0 +170742775122,217,0 +170742775170,217,0 +170742775218,218,0 +170742775266,217,0 +170742775315,217,0 +170742775363,217,0 +170742775412,217,0 +170742775460,217,0 +170742775508,217,0 +170742775558,217,0 +170742775606,217,0 +170742775654,218,0 +170742775702,217,0 +170742775750,217,0 +170742775798,217,0 +170742775847,217,0 +170742775895,217,0 +170742775943,217,0 +170742775991,217,0 +170742776041,217,0 +170742776089,217,0 +170742776137,217,0 +170742776185,217,0 +170742776233,217,0 +170742776281,217,0 +170742776329,217,0 +170742776377,217,0 +170742776425,217,0 +170742776474,217,0 +170742776524,217,0 +170742776572,217,0 +170742776620,218,0 +170742776668,218,0 +170742776716,218,0 +170742776764,218,0 +170742776813,218,0 +170742776861,218,0 +170742776909,218,0 +170742776957,218,0 +170742777005,219,0 +170742777054,219,0 +170742777102,218,0 +170742777150,219,0 +170742777198,220,0 +170742777246,220,0 +170742777294,221,0 +170742777344,221,0 +170742777392,222,0 +170742777440,222,0 +170742777489,223,0 +170742777537,223,0 +170742777585,225,0 +170742777633,225,0 +170742777683,225,0 +170742777731,226,0 +170742777779,227,0 +170742777828,228,0 +170742777876,228,0 +170742777926,229,0 +170742777975,240,0 +170742778023,240,0 +170742778071,239,0 +170742778119,240,0 +170742778167,242,0 +170742778215,242,0 +170742778263,244,0 +170742778311,243,0 +170742778358,244,0 +170742778408,241,0 +170742778456,221,0 +170742778506,224,0 +170742778553,224,0 +170742778601,222,0 +170742778649,221,0 +170742778697,220,0 +170742778745,219,0 +170742778793,219,0 +170742778841,219,0 +170742778890,219,0 +170742778940,219,0 +170742778988,219,0 +170742779036,219,0 +170742779085,219,0 +170742779133,219,0 +170742779181,219,0 +170742779229,219,0 +170742779276,219,0 +170742779324,219,0 +170742779372,219,0 +170742779420,219,0 +170742779468,219,0 +170742779516,219,0 +170742779564,219,0 +170742779612,219,0 +170742779661,219,0 +170742779709,218,0 +170742779757,219,0 +170742779805,219,0 +170742779853,219,0 +170742779901,218,0 +170742779949,219,0 +170742779997,219,0 +170742780045,219,0 +170742780093,219,0 +170742780141,219,0 +170742780188,219,0 +170742780236,219,0 +170742780286,218,0 +170742780334,219,0 +170742780383,218,0 +170742780431,218,0 +170742780479,218,0 +170742780527,218,0 +170742780575,219,0 +170742780623,218,0 +170742780673,219,0 +170742780721,218,0 +170742780769,218,0 +170742780817,219,0 +170742780865,219,0 +170742780913,219,0 +170742780961,219,0 +170742781008,219,0 +170742781056,219,0 +170742781106,219,0 +170742781155,218,0 +170742781203,218,0 +170742781253,219,0 +170742781301,219,0 +170742781349,218,0 +170742781397,219,0 +170742781446,219,0 +170742781494,219,0 +170742781544,219,0 +170742781592,219,0 +170742781640,219,0 +170742781688,219,0 +170742781737,219,0 +170742781787,219,0 +170742781836,219,0 +170742781884,219,0 +170742781932,219,0 +170742781980,219,0 +170742782028,219,0 +170742782078,219,0 +170742782126,219,0 +170742782174,220,0 +170742782221,220,0 +170742782269,222,0 +170742782319,221,0 +170742782367,221,0 +170742782416,221,0 +170742782466,221,0 +170742782514,221,0 +170742782562,221,0 +170742782610,222,0 +170742782658,222,0 +170742782706,223,0 +170742782755,224,0 +170742782803,224,0 +170742782853,225,0 +170742782901,226,0 +170742782950,227,0 +170742782998,227,0 +170742783046,229,0 +170742783096,228,0 +170742783144,227,0 +170742783191,227,0 +170742783241,226,0 +170742783289,229,0 +170742783337,241,0 +170742783385,239,0 +170742783433,242,0 +170742783481,244,0 +170742783530,245,0 +170742783580,244,0 +170742783628,243,0 +170742783677,243,0 +170742783727,245,0 +170742783775,241,0 +170742783823,220,0 +170742783872,224,0 +170742783922,223,0 +170742783970,221,0 +170742784018,220,0 +170742784066,219,0 +170742784114,218,0 +170742784163,218,0 +170742784211,218,0 +170742784259,218,0 +170742784307,218,0 +170742784355,218,0 +170742784405,218,0 +170742784453,218,0 +170742784501,218,0 +170742784549,218,0 +170742784597,218,0 +170742784646,218,0 +170742784696,217,0 +170742784744,218,0 +170742784792,218,0 +170742784840,218,0 +170742784888,218,0 +170742784935,218,0 +170742784983,218,0 +170742785031,218,0 +170742785079,218,0 +170742785127,218,0 +170742785177,218,0 +170742785225,217,0 +170742785274,218,0 +170742785324,218,0 +170742785372,218,0 +170742785420,217,0 +170742785469,218,0 +170742785517,218,0 +170742785565,218,0 +170742785613,218,0 +170742785661,218,0 +170742785709,218,0 +170742785757,218,0 +170742785805,218,0 +170742785853,218,0 +170742785901,218,0 +170742785949,218,0 +170742785998,218,0 +170742786046,218,0 +170742786094,218,0 +170742786142,218,0 +170742786192,218,0 +170742786240,218,0 +170742786289,218,0 +170742786339,218,0 +170742786387,218,0 +170742786435,218,0 +170742786483,217,0 +170742786532,218,0 +170742786582,218,0 +170742786630,218,0 +170742786679,218,0 +170742786727,218,0 +170742786775,218,0 +170742786823,218,0 +170742786871,218,0 +170742786919,218,0 +170742786967,218,0 +170742787016,218,0 +170742787066,218,0 +170742787114,217,0 +170742787162,218,0 +170742787210,218,0 +170742787258,218,0 +170742787307,217,0 +170742787355,218,0 +170742787405,218,0 +170742787453,218,0 +170742787502,218,0 +170742787552,218,0 +170742787601,218,0 +170742787651,218,0 +170742787699,217,0 +170742787747,218,0 +170742787796,218,0 +170742787844,218,0 +170742787892,218,0 +170742787942,218,0 +170742787990,218,0 +170742788038,217,0 +170742788086,218,0 +170742788135,218,0 +170742788183,218,0 +170742788231,217,0 +170742788279,218,0 +170742788329,218,0 +170742788378,218,0 +170742788426,218,0 +170742788474,218,0 +170742788522,218,0 +170742788572,219,0 +170742788620,221,0 +170742788669,237,0 +170742788717,240,0 +170742788767,239,0 +170742788816,244,0 +170742788864,243,0 +170742788912,244,0 +170742788962,244,0 +170742789010,243,0 +170742789058,243,0 +170742789106,242,0 +170742789155,221,0 +170742789205,224,0 +170742789253,224,0 +170742789301,222,0 +170742789350,220,0 +170742789400,219,0 +170742789448,219,0 +170742789497,219,0 +170742789545,219,0 +170742789593,219,0 +170742789641,219,0 +170742789689,218,0 +170742789737,218,0 +170742789785,218,0 +170742789832,218,0 +170742789880,218,0 +170742789928,218,0 +170742789976,218,0 +170742790024,219,0 +170742790072,218,0 +170742790121,218,0 +170742790169,218,0 +170742790217,218,0 +170742790265,218,0 +170742790313,219,0 +170742790363,218,0 +170742790411,218,0 +170742790459,218,0 +170742790507,218,0 +170742790556,218,0 +170742790606,218,0 +170742790655,218,0 +170742790705,218,0 +170742790754,218,0 +170742790802,218,0 +170742790852,219,0 +170742790900,218,0 +170742790948,218,0 +170742790996,218,0 +170742791044,219,0 +170742791093,218,0 +170742791141,218,0 +170742791189,218,0 +170742791237,218,0 +170742791285,218,0 +170742791333,218,0 +170742791382,218,0 +170742791432,218,0 +170742791480,218,0 +170742791528,218,0 +170742791576,218,0 +170742791624,218,0 +170742791673,218,0 +170742791721,218,0 +170742791769,218,0 +170742791817,218,0 +170742791867,218,0 +170742791915,218,0 +170742791964,218,0 +170742792014,218,0 +170742792063,218,0 +170742792113,218,0 +170742792161,218,0 +170742792209,218,0 +170742792258,218,0 +170742792306,218,0 +170742792354,218,0 +170742792404,218,0 +170742792453,219,0 +170742792501,218,0 +170742792549,219,0 +170742792597,219,0 +170742792647,219,0 +170742792696,219,0 +170742792744,220,0 +170742792792,220,0 +170742792842,220,0 +170742792891,220,0 +170742792939,221,0 +170742792987,222,0 +170742793035,222,0 +170742793083,222,0 +170742793131,224,0 +170742793179,224,0 +170742793228,225,0 +170742793276,225,0 +170742793324,226,0 +170742793372,228,0 +170742793420,227,0 +170742793468,227,0 +170742793516,228,0 +170742793564,230,0 +170742793611,229,0 +170742793659,231,0 +170742793707,229,0 +170742793757,231,0 +170742793806,230,0 +170742793854,232,0 +170742793904,234,0 +170742793952,235,0 +170742794001,232,0 +170742794049,243,0 +170742794097,243,0 +170742794147,242,0 +170742794195,243,0 +170742794244,243,0 +170742794294,244,0 +170742794342,245,0 +170742794390,245,0 +170742794439,241,0 +170742794487,226,0 +170742794535,222,0 +170742794583,223,0 +170742794631,222,0 +170742794679,220,0 +170742794727,219,0 +170742794777,218,0 +170742794826,218,0 +170742794874,218,0 +170742794922,218,0 +170742794970,218,0 +170742795018,218,0 +170742795066,217,0 +170742795114,218,0 +170742795162,218,0 +170742795210,218,0 +170742795259,218,0 +170742795309,218,0 +170742795357,218,0 +170742795405,218,0 +170742795453,218,0 +170742795502,218,0 +170742795550,218,0 +170742795600,218,0 +170742795648,218,0 +170742795696,218,0 +170742795745,218,0 +170742795793,218,0 +170742795841,219,0 +170742795889,219,0 +170742795937,219,0 +170742795985,219,0 +170742796033,219,0 +170742796081,219,0 +170742796131,220,0 +170742796178,220,0 +170742796226,219,0 +170742796274,219,0 +170742796322,220,0 +170742796372,220,0 +170742796420,220,0 +170742796468,220,0 +170742796516,220,0 +170742796564,221,0 +170742796613,221,0 +170742796663,221,0 +170742796711,221,0 +170742796759,222,0 +170742796808,221,0 +170742796856,222,0 +170742796904,221,0 +170742796954,221,0 +170742797002,220,0 +170742797051,222,0 +170742797099,222,0 +170742797147,222,0 +170742797197,221,0 +170742797245,223,0 +170742797293,224,0 +170742797341,223,0 +170742797389,223,0 +170742797438,224,0 +170742797486,223,0 +170742797536,223,0 +170742797584,224,0 +170742797632,224,0 +170742797680,225,0 +170742797728,226,0 +170742797777,226,0 +170742797825,226,0 +170742797875,227,0 +170742797924,228,0 +170742797972,228,0 +170742798022,230,0 +170742798070,229,0 +170742798119,230,0 +170742798167,230,0 +170742798217,231,0 +170742798266,231,0 +170742798314,232,0 +170742798362,232,0 +170742798410,232,0 +170742798458,232,0 +170742798507,232,0 +170742798555,234,0 +170742798603,234,0 +170742798651,235,0 +170742798699,235,0 +170742798747,235,0 +170742798797,235,0 +170742798846,235,0 +170742798894,236,0 +170742798942,237,0 +170742798990,237,0 +170742799039,236,0 +170742799087,238,0 +170742799135,237,0 +170742799183,238,0 +170742799233,239,0 +170742799281,237,0 +170742799329,239,0 +170742799377,234,0 +170742799426,242,0 +170742799476,243,0 +170742799525,242,0 +170742799573,243,0 +170742799621,240,0 +170742799669,244,0 +170742799717,245,0 +170742799765,245,0 +170742799813,244,0 +170742799861,244,0 +170742799911,220,0 +170742799958,223,0 +170742800006,222,0 +170742800054,221,0 +170742800102,219,0 +170742800152,218,0 +170742800201,217,0 +170742800249,218,0 +170742800299,217,0 +170742800347,217,0 +170742800395,217,0 +170742800443,217,0 +170742800492,217,0 +170742800540,217,0 +170742800588,217,0 +170742800638,218,0 +170742800686,217,0 +170742800734,217,0 +170742800782,217,0 +170742800830,217,0 +170742800878,216,0 +170742800926,217,0 +170742800974,217,0 +170742801022,217,0 +170742801071,217,0 +170742801119,217,0 +170742801167,217,0 +170742801217,217,0 +170742801265,217,0 +170742801313,217,0 +170742801361,217,0 +170742801410,217,0 +170742801458,217,0 +170742801506,217,0 +170742801556,217,0 +170742801605,217,0 +170742801653,217,0 +170742801703,217,0 +170742801752,218,0 +170742801800,217,0 +170742801848,217,0 +170742801896,217,0 +170742801944,217,0 +170742801992,217,0 +170742802040,217,0 +170742802088,217,0 +170742802137,217,0 +170742802185,217,0 +170742802235,217,0 +170742802282,218,0 +170742802330,217,0 +170742802378,218,0 +170742802428,218,0 +170742802476,219,0 +170742802524,219,0 +170742802573,219,0 +170742802621,219,0 +170742802669,219,0 +170742802717,219,0 +170742802765,219,0 +170742802815,220,0 +170742802863,220,0 +170742802910,220,0 +170742802960,220,0 +170742803010,222,0 +170742803058,222,0 +170742803105,223,0 +170742803153,222,0 +170742803201,222,0 +170742803249,223,0 +170742803297,223,0 +170742803345,223,0 +170742803395,223,0 +170742803443,222,0 +170742803491,223,0 +170742803539,224,0 +170742803587,224,0 +170742803636,226,0 +170742803684,225,0 +170742803733,227,0 +170742803783,228,0 +170742803831,228,0 +170742803879,228,0 +170742803927,228,0 +170742803975,229,0 +170742804023,229,0 +170742804071,231,0 +170742804120,231,0 +170742804168,232,0 +170742804216,231,0 +170742804266,232,0 +170742804314,233,0 +170742804363,233,0 +170742804411,233,0 +170742804459,234,0 +170742804507,234,0 +170742804555,235,0 +170742804605,233,0 +170742804653,232,0 +170742804701,240,0 +170742804750,239,0 +170742804800,241,0 +170742804849,240,0 +170742804897,245,0 +170742804945,243,0 +170742804993,242,0 +170742805041,243,0 +170742805091,243,0 +170742805140,240,0 +170742805190,220,0 +170742805238,223,0 +170742805286,222,0 +170742805335,221,0 +170742805385,219,0 +170742805433,218,0 +170742805482,217,0 +170742805530,217,0 +170742805578,217,0 +170742805628,217,0 +170742805676,217,0 +170742805724,217,0 +170742805772,217,0 +170742805819,217,0 +170742805867,217,0 +170742805917,217,0 +170742805966,217,0 +170742806016,217,0 +170742806065,217,0 +170742806115,217,0 +170742806163,217,0 +170742806211,217,0 +170742806261,217,0 +170742806309,217,0 +170742806358,217,0 +170742806406,217,0 +170742806454,216,0 +170742806503,217,0 +170742806551,217,0 +170742806601,217,0 +170742806649,217,0 +170742806697,217,0 +170742806746,217,0 +170742806794,217,0 +170742806842,216,0 +170742806892,217,0 +170742806940,217,0 +170742806989,217,0 +170742807037,217,0 +170742807085,217,0 +170742807133,217,0 +170742807183,217,0 +170742807231,217,0 +170742807280,217,0 +170742807328,217,0 +170742807376,217,0 +170742807424,217,0 +170742807472,217,0 +170742807520,216,0 +170742807570,217,0 +170742807617,216,0 +170742807667,217,0 +170742807715,217,0 +170742807763,217,0 +170742807812,217,0 +170742807860,217,0 +170742807908,217,0 +170742807956,217,0 +170742808006,217,0 +170742808055,218,0 +170742808105,218,0 +170742808154,218,0 +170742808202,218,0 +170742808250,218,0 +170742808298,218,0 +170742808346,219,0 +170742808394,219,0 +170742808442,220,0 +170742808490,220,0 +170742808538,220,0 +170742808586,220,0 +170742808634,220,0 +170742808682,221,0 +170742808730,222,0 +170742808780,222,0 +170742808828,223,0 +170742808876,224,0 +170742808923,224,0 +170742808973,226,0 +170742809021,227,0 +170742809070,227,0 +170742809120,227,0 +170742809168,227,0 +170742809216,228,0 +170742809266,227,0 +170742809315,228,0 +170742809365,229,0 +170742809414,228,0 +170742809464,230,0 +170742809513,229,0 +170742809561,230,0 +170742809609,230,0 +170742809659,231,0 +170742809707,231,0 +170742809755,232,0 +170742809803,232,0 +170742809851,232,0 +170742809899,232,0 +170742809947,234,0 +170742809996,235,0 +170742810044,240,0 +170742810092,241,0 +170742810140,240,0 +170742810188,241,0 +170742810236,240,0 +170742810283,242,0 +170742810331,243,0 +170742810379,242,0 +170742810427,242,0 +170742810475,244,0 +170742810523,232,0 +170742810571,220,0 +170742810620,224,0 +170742810668,222,0 +170742810716,221,0 +170742810764,219,0 +170742810812,219,0 +170742810861,218,0 +170742810909,218,0 +170742810957,218,0 +170742811005,218,0 +170742811053,218,0 +170742811103,218,0 +170742811151,218,0 +170742811198,218,0 +170742811246,218,0 +170742811294,218,0 +170742811342,218,0 +170742811390,218,0 +170742811438,218,0 +170742811486,218,0 +170742811534,218,0 +170742811584,218,0 +170742811632,218,0 +170742811681,218,0 +170742811729,218,0 +170742811779,218,0 +170742811827,218,0 +170742811875,218,0 +170742811923,218,0 +170742811971,218,0 +170742812019,218,0 +170742812067,218,0 +170742812116,218,0 +170742812164,218,0 +170742812214,218,0 +170742812263,218,0 +170742812311,218,0 +170742812361,218,0 +170742812410,218,0 +170742812458,218,0 +170742812506,218,0 +170742812556,218,0 +170742812604,218,0 +170742812653,218,0 +170742812701,218,0 +170742812749,218,0 +170742812797,218,0 +170742812845,218,0 +170742812893,218,0 +170742812942,218,0 +170742812992,218,0 +170742813040,218,0 +170742813090,219,0 +170742813139,219,0 +170742813187,219,0 +170742813237,220,0 +170742813285,220,0 +170742813333,219,0 +170742813380,220,0 +170742813428,220,0 +170742813478,219,0 +170742813526,220,0 +170742813574,220,0 +170742813623,220,0 +170742813673,220,0 +170742813723,221,0 +170742813771,221,0 +170742813820,221,0 +170742813870,221,0 +170742813917,221,0 +170742813965,220,0 +170742814015,223,0 +170742814063,223,0 +170742814111,223,0 +170742814159,224,0 +170742814207,225,0 +170742814255,225,0 +170742814303,225,0 +170742814351,227,0 +170742814400,227,0 +170742814448,228,0 +170742814496,229,0 +170742814544,229,0 +170742814592,227,0 +170742814640,229,0 +170742814688,229,0 +170742814736,230,0 +170742814784,231,0 +170742814834,232,0 +170742814881,232,0 +170742814929,233,0 +170742814979,233,0 +170742815027,232,0 +170742815076,233,0 +170742815126,234,0 +170742815175,234,0 +170742815223,234,0 +170742815272,235,0 +170742815320,235,0 +170742815370,237,0 +170742815418,235,0 +170742815466,247,0 +170742815514,242,0 +170742815562,240,0 +170742815610,244,0 +170742815658,242,0 +170742815706,243,0 +170742815755,246,0 +170742815803,245,0 +170742815852,250,0 +170742815902,230,0 +170742815950,220,0 +170742815998,225,0 +170742816048,224,0 +170742816096,222,0 +170742816145,220,0 +170742816193,219,0 +170742816241,218,0 +170742816290,218,0 +170742816338,218,0 +170742816388,219,0 +170742816436,219,0 +170742816484,218,0 +170742816532,218,0 +170742816580,218,0 +170742816628,218,0 +170742816677,218,0 +170742816727,218,0 +170742816775,218,0 +170742816824,218,0 +170742816872,218,0 +170742816920,218,0 +170742816968,218,0 +170742817016,218,0 +170742817064,218,0 +170742817112,218,0 +170742817162,218,0 +170742817210,218,0 +170742817259,218,0 +170742817307,218,0 +170742817355,218,0 +170742817405,218,0 +170742817454,218,0 +170742817502,218,0 +170742817552,218,0 +170742817600,218,0 +170742817648,218,0 +170742817696,218,0 +170742817744,218,0 +170742817792,218,0 +170742817840,218,0 +170742817889,218,0 +170742817937,218,0 +170742817985,218,0 +170742818033,218,0 +170742818082,218,0 +170742818130,218,0 +170742818178,218,0 +170742818226,218,0 +170742818274,218,0 +170742818322,218,0 +170742818372,218,0 +170742818420,218,0 +170742818468,218,0 +170742818517,218,0 +170742818565,218,0 +170742818615,218,0 +170742818663,218,0 +170742818711,218,0 +170742818760,218,0 +170742818808,218,0 +170742818856,218,0 +170742818904,218,0 +170742818952,218,0 +170742819000,218,0 +170742819048,219,0 +170742819097,219,0 +170742819145,218,0 +170742819193,218,0 +170742819241,218,0 +170742819290,219,0 +170742819338,219,0 +170742819386,219,0 +170742819434,219,0 +170742819483,220,0 +170742819531,219,0 +170742819579,220,0 +170742819629,220,0 +170742819678,220,0 +170742819726,221,0 +170742819776,221,0 +170742819824,222,0 +170742819872,222,0 +170742819920,222,0 +170742819969,224,0 +170742820019,223,0 +170742820067,223,0 +170742820115,224,0 +170742820163,225,0 +170742820212,225,0 +170742820260,225,0 +170742820310,226,0 +170742820359,227,0 +170742820407,229,0 +170742820457,227,0 +170742820505,230,0 +170742820554,230,0 +170742820602,230,0 +170742820651,232,0 +170742820699,232,0 +170742820749,232,0 +170742820798,241,0 +170742820846,241,0 +170742820894,242,0 +170742820944,241,0 +170742820993,244,0 +170742821041,242,0 +170742821089,244,0 +170742821137,244,0 +170742821185,243,0 +170742821234,238,0 +170742821282,220,0 +170742821332,224,0 +170742821380,224,0 +170742821428,222,0 +170742821476,220,0 +170742821525,219,0 +170742821575,219,0 +170742821623,219,0 +170742821672,218,0 +170742821720,218,0 +170742821770,218,0 +170742821818,219,0 +170742821867,219,0 +170742821915,218,0 +170742821963,218,0 +170742822011,218,0 +170742822061,218,0 +170742822109,219,0 +170742822157,218,0 +170742822205,218,0 +170742822253,218,0 +170742822301,218,0 +170742822350,218,0 +170742822398,218,0 +170742822448,219,0 +170742822495,218,0 +170742822545,218,0 +170742822593,218,0 +170742822641,218,0 +170742822689,218,0 +170742822737,218,0 +170742822785,219,0 +170742822833,218,0 +170742822881,218,0 +170742822929,218,0 +170742822978,218,0 +170742823026,218,0 +170742823074,218,0 +170742823122,218,0 +170742823170,218,0 +170742823218,218,0 +170742823266,218,0 +170742823314,218,0 +170742823364,218,0 +170742823412,218,0 +170742823461,218,0 +170742823511,218,0 +170742823559,218,0 +170742823607,218,0 +170742823655,219,0 +170742823703,219,0 +170742823751,218,0 +170742823800,218,0 +170742823848,218,0 +170742823896,220,0 +170742823945,221,0 +170742823993,219,0 +170742824041,219,0 +170742824090,219,0 +170742824137,219,0 +170742824185,219,0 +170742824233,220,0 +170742824283,220,0 +170742824331,220,0 +170742824379,220,0 +170742824427,221,0 +170742824475,222,0 +170742824524,221,0 +170742824572,221,0 +170742824622,221,0 +170742824671,221,0 +170742824719,221,0 +170742824769,222,0 +170742824817,222,0 +170742824865,223,0 +170742824914,224,0 +170742824964,224,0 +170742825012,224,0 +170742825060,226,0 +170742825108,226,0 +170742825157,227,0 +170742825207,227,0 +170742825255,227,0 +170742825303,228,0 +170742825352,228,0 +170742825400,228,0 +170742825450,229,0 +170742825498,230,0 +170742825546,229,0 +170742825594,231,0 +170742825643,231,0 +170742825691,232,0 +170742825741,232,0 +170742825788,234,0 +170742825838,232,0 +170742825886,233,0 +170742825935,233,0 +170742825983,234,0 +170742826031,235,0 +170742826081,235,0 +170742826129,236,0 +170742826178,234,0 +170742826226,242,0 +170742826276,243,0 +170742826324,243,0 +170742826372,243,0 +170742826420,243,0 +170742826468,243,0 +170742826517,243,0 +170742826567,245,0 +170742826615,244,0 +170742826663,221,0 +170742826711,224,0 +170742826759,222,0 +170742826807,221,0 +170742826856,219,0 +170742826904,218,0 +170742826952,218,0 +170742827002,218,0 +170742827050,218,0 +170742827099,218,0 +170742827147,217,0 +170742827195,218,0 +170742827244,218,0 +170742827292,218,0 +170742827342,218,0 +170742827389,218,0 +170742827438,218,0 +170742827486,218,0 +170742827533,218,0 +170742827583,218,0 +170742827631,217,0 +170742827679,217,0 +170742827728,218,0 +170742827778,217,0 +170742827827,218,0 +170742827875,218,0 +170742827923,217,0 +170742827971,218,0 +170742828019,218,0 +170742828068,218,0 +170742828116,218,0 +170742828164,218,0 +170742828214,218,0 +170742828263,217,0 +170742828311,218,0 +170742828361,217,0 +170742828409,218,0 +170742828458,218,0 +170742828508,218,0 +170742828556,218,0 +170742828604,217,0 +170742828652,218,0 +170742828699,218,0 +170742828747,218,0 +170742828795,218,0 +170742828843,218,0 +170742828891,218,0 +170742828941,218,0 +170742828989,218,0 +170742829037,217,0 +170742829086,218,0 +170742829134,217,0 +170742829184,218,0 +170742829232,218,0 +170742829280,218,0 +170742829328,217,0 +170742829377,218,0 +170742829425,218,0 +170742829475,218,0 +170742829522,218,0 +170742829570,218,0 +170742829620,218,0 +170742829670,219,0 +170742829718,219,0 +170742829765,219,0 +170742829813,219,0 +170742829861,220,0 +170742829911,220,0 +170742829959,220,0 +170742830007,220,0 +170742830055,220,0 +170742830103,221,0 +170742830152,220,0 +170742830200,220,0 +170742830248,220,0 +170742830296,221,0 +170742830344,222,0 +170742830392,222,0 +170742830440,223,0 +170742830488,224,0 +170742830536,225,0 +170742830584,225,0 +170742830632,226,0 +170742830680,226,0 +170742830729,226,0 +170742830777,226,0 +170742830825,227,0 +170742830873,228,0 +170742830921,228,0 +170742830969,229,0 +170742831017,229,0 +170742831066,231,0 +170742831114,232,0 +170742831162,230,0 +170742831212,231,0 +170742831260,229,0 +170742831308,230,0 +170742831356,231,0 +170742831405,233,0 +170742831453,234,0 +170742831501,240,0 +170742831549,243,0 +170742831597,242,0 +170742831645,244,0 +170742831693,243,0 +170742831743,244,0 +170742831791,246,0 +170742831839,245,0 +170742831888,244,0 +170742831936,244,0 +170742831984,220,0 +170742832032,225,0 +170742832080,224,0 +170742832128,222,0 +170742832176,220,0 +170742832226,219,0 +170742832274,219,0 +170742832323,219,0 +170742832373,219,0 +170742832422,219,0 +170742832472,219,0 +170742832520,219,0 +170742832568,219,0 +170742832617,219,0 +170742832665,219,0 +170742832713,218,0 +170742832761,218,0 +170742832809,219,0 +170742832859,219,0 +170742832907,218,0 +170742832956,219,0 +170742833004,218,0 +170742833054,219,0 +170742833102,219,0 +170742833150,218,0 +170742833197,218,0 +170742833245,218,0 +170742833295,218,0 +170742833343,219,0 +170742833392,219,0 +170742833440,219,0 +170742833490,219,0 +170742833538,219,0 +170742833586,219,0 +170742833634,219,0 +170742833682,219,0 +170742833730,219,0 +170742833778,219,0 +170742833827,218,0 +170742833875,219,0 +170742833923,219,0 +170742833971,219,0 +170742834019,218,0 +170742834069,219,0 +170742834118,219,0 +170742834166,219,0 +170742834214,219,0 +170742834264,219,0 +170742834312,218,0 +170742834360,218,0 +170742834407,219,0 +170742834455,218,0 +170742834503,219,0 +170742834551,218,0 +170742834599,219,0 +170742834649,219,0 +170742834697,219,0 +170742834745,218,0 +170742834793,218,0 +170742834841,219,0 +170742834890,218,0 +170742834938,219,0 +170742834988,219,0 +170742835036,218,0 +170742835083,219,0 +170742835133,218,0 +170742835183,219,0 +170742835230,218,0 +170742835278,219,0 +170742835328,219,0 +170742835376,218,0 +170742835426,218,0 +170742835475,219,0 +170742835523,218,0 +170742835573,218,0 +170742835622,218,0 +170742835670,218,0 +170742835720,219,0 +170742835768,219,0 +170742835816,219,0 +170742835865,219,0 +170742835915,219,0 +170742835964,218,0 +170742836012,219,0 +170742836062,219,0 +170742836111,219,0 +170742836159,219,0 +170742836207,219,0 +170742836255,219,0 +170742836305,219,0 +170742836353,218,0 +170742836402,219,0 +170742836452,219,0 +170742836500,218,0 +170742836548,219,0 +170742836596,219,0 +170742836645,220,0 +170742836693,220,0 +170742836741,222,0 +170742836791,223,0 +170742836839,239,0 +170742836888,240,0 +170742836937,240,0 +170742836986,243,0 +170742837034,243,0 +170742837083,243,0 +170742837131,245,0 +170742837180,245,0 +170742837230,245,0 +170742837278,243,0 +170742837326,228,0 +170742837374,221,0 +170742837422,225,0 +170742837471,224,0 +170742837519,222,0 +170742837569,221,0 +170742837617,220,0 +170742837665,220,0 +170742837713,220,0 +170742837761,220,0 +170742837810,220,0 +170742837858,220,0 +170742837908,220,0 +170742837956,219,0 +170742838004,219,0 +170742838053,219,0 +170742838101,219,0 +170742838149,219,0 +170742838199,220,0 +170742838248,220,0 +170742838296,220,0 +170742838346,219,0 +170742838395,220,0 +170742838445,220,0 +170742838493,220,0 +170742838541,220,0 +170742838589,219,0 +170742838638,220,0 +170742838688,219,0 +170742838736,219,0 +170742838784,220,0 +170742838833,219,0 +170742838881,219,0 +170742838929,220,0 +170742838977,220,0 +170742839025,219,0 +170742839073,220,0 +170742839121,219,0 +170742839169,220,0 +170742839217,219,0 +170742839265,220,0 +170742839313,219,0 +170742839361,219,0 +170742839409,220,0 +170742839458,219,0 +170742839508,219,0 +170742839556,219,0 +170742839605,219,0 +170742839653,220,0 +170742839703,220,0 +170742839752,219,0 +170742839800,219,0 +170742839848,220,0 +170742839898,220,0 +170742839946,219,0 +170742839995,219,0 +170742840045,220,0 +170742840093,219,0 +170742840143,220,0 +170742840191,219,0 +170742840240,219,0 +170742840288,219,0 +170742840336,220,0 +170742840384,219,0 +170742840432,219,0 +170742840479,220,0 +170742840527,220,0 +170742840577,219,0 +170742840625,220,0 +170742840672,219,0 +170742840720,219,0 +170742840768,220,0 +170742840816,219,0 +170742840864,220,0 +170742840912,220,0 +170742840960,219,0 +170742841008,220,0 +170742841056,220,0 +170742841104,219,0 +170742841151,220,0 +170742841199,219,0 +170742841247,220,0 +170742841295,220,0 +170742841343,219,0 +170742841391,220,0 +170742841439,221,0 +170742841488,221,0 +170742841536,221,0 +170742841584,222,0 +170742841632,223,0 +170742841680,223,0 +170742841729,223,0 +170742841777,223,0 +170742841825,225,0 +170742841873,225,0 +170742841920,225,0 +170742841970,227,0 +170742842018,228,0 +170742842066,229,0 +170742842113,231,0 +170742842161,239,0 +170742842209,244,0 +170742842257,241,0 +170742842305,243,0 +170742842353,243,0 +170742842401,245,0 +170742842449,245,0 +170742842497,244,0 +170742842544,242,0 +170742842592,242,0 +170742842640,229,0 +170742842688,220,0 +170742842736,224,0 +170742842786,223,0 +170742842833,222,0 +170742842881,220,0 +170742842929,219,0 +170742842977,219,0 +170742843025,219,0 +170742843073,219,0 +170742843121,219,0 +170742843169,219,0 +170742843216,219,0 +170742843264,219,0 +170742843312,219,0 +170742843360,219,0 +170742843408,219,0 +170742843458,219,0 +170742843505,219,0 +170742843553,219,0 +170742843601,219,0 +170742843649,219,0 +170742843697,219,0 +170742843745,218,0 +170742843794,219,0 +170742843844,218,0 +170742843893,218,0 +170742843941,219,0 +170742843989,219,0 +170742844039,219,0 +170742844087,218,0 +170742844135,219,0 +170742844184,219,0 +170742844234,219,0 +170742844283,219,0 +170742844331,219,0 +170742844381,219,0 +170742844429,219,0 +170742844477,218,0 +170742844524,219,0 +170742844572,218,0 +170742844622,218,0 +170742844670,218,0 +170742844717,218,0 +170742844765,218,0 +170742844815,219,0 +170742844863,219,0 +170742844911,219,0 +170742844959,218,0 +170742845007,219,0 +170742845055,218,0 +170742845104,219,0 +170742845152,219,0 +170742845200,219,0 +170742845248,219,0 +170742845296,218,0 +170742845346,219,0 +170742845393,219,0 +170742845443,219,0 +170742845491,219,0 +170742845539,219,0 +170742845588,220,0 +170742845636,219,0 +170742845684,219,0 +170742845734,219,0 +170742845782,219,0 +170742845830,219,0 +170742845878,220,0 +170742845926,220,0 +170742845975,220,0 +170742846023,220,0 +170742846073,221,0 +170742846122,220,0 +170742846172,221,0 +170742846221,221,0 +170742846271,221,0 +170742846319,222,0 +170742846367,221,0 +170742846416,222,0 +170742846464,223,0 +170742846512,223,0 +170742846560,224,0 +170742846610,225,0 +170742846658,225,0 +170742846707,226,0 +170742846757,226,0 +170742846805,228,0 +170742846853,228,0 +170742846901,228,0 +170742846950,228,0 +170742846998,229,0 +170742847046,229,0 +170742847094,229,0 +170742847142,227,0 +170742847190,228,0 +170742847238,230,0 +170742847286,230,0 +170742847334,230,0 +170742847382,230,0 +170742847431,232,0 +170742847479,229,0 +170742847529,241,0 +170742847577,242,0 +170742847625,241,0 +170742847674,243,0 +170742847724,243,0 +170742847772,245,0 +170742847820,260,0 +170742847869,244,0 +170742847917,243,0 +170742847965,238,0 +170742848013,220,0 +170742848062,224,0 +170742848112,223,0 +170742848160,221,0 +170742848209,219,0 +170742848257,218,0 +170742848305,219,0 +170742848355,218,0 +170742848403,218,0 +170742848451,218,0 +170742848499,218,0 +170742848547,218,0 +170742848595,218,0 +170742848644,218,0 +170742848692,218,0 +170742848742,218,0 +170742848791,218,0 +170742848841,218,0 +170742848890,218,0 +170742848940,218,0 +170742848988,218,0 +170742849037,218,0 +170742849085,218,0 +170742849133,218,0 +170742849183,218,0 +170742849231,218,0 +170742849280,218,0 +170742849328,218,0 +170742849376,218,0 +170742849424,218,0 +170742849474,218,0 +170742849522,218,0 +170742849570,218,0 +170742849618,218,0 +170742849666,218,0 +170742849714,218,0 +170742849762,218,0 +170742849810,218,0 +170742849857,218,0 +170742849907,218,0 +170742849955,218,0 +170742850005,218,0 +170742850052,218,0 +170742850102,218,0 +170742850150,218,0 +170742850198,218,0 +170742850246,218,0 +170742850295,218,0 +170742850343,219,0 +170742850391,218,0 +170742850439,218,0 +170742850487,218,0 +170742850537,218,0 +170742850586,218,0 +170742850634,218,0 +170742850682,218,0 +170742850730,218,0 +170742850780,218,0 +170742850828,219,0 +170742850877,219,0 +170742850925,219,0 +170742850975,219,0 +170742851023,219,0 +170742851072,219,0 +170742851120,219,0 +170742851168,220,0 +170742851217,220,0 +170742851265,220,0 +170742851315,220,0 +170742851363,220,0 +170742851411,220,0 +170742851459,220,0 +170742851508,221,0 +170742851556,221,0 +170742851604,220,0 +170742851654,221,0 +170742851703,222,0 +170742851751,222,0 +170742851799,223,0 +170742851849,223,0 +170742851897,224,0 +170742851945,225,0 +170742851993,226,0 +170742852040,226,0 +170742852090,226,0 +170742852138,228,0 +170742852186,228,0 +170742852234,228,0 +170742852283,229,0 +170742852333,229,0 +170742852382,231,0 +170742852430,231,0 +170742852478,233,0 +170742852526,231,0 +170742852574,233,0 +170742852622,232,0 +170742852670,232,0 +170742852718,233,0 +170742852768,234,0 +170742852815,236,0 +170742852863,237,0 +170742852911,234,0 +170742852961,243,0 +170742853010,242,0 +170742853058,242,0 +170742853108,243,0 +170742853158,244,0 +170742853206,245,0 +170742853253,243,0 +170742853301,243,0 +170742853351,243,0 +170742853399,230,0 +170742853448,220,0 +170742853496,224,0 +170742853544,223,0 +170742853594,221,0 +170742853642,220,0 +170742853690,219,0 +170742853738,219,0 +170742853787,218,0 +170742853837,218,0 +170742853885,218,0 +170742853933,218,0 +170742853981,218,0 +170742854029,219,0 +170742854077,219,0 +170742854126,218,0 +170742854176,218,0 +170742854224,218,0 +170742854271,219,0 +170742854319,218,0 +170742854367,218,0 +170742854415,218,0 +170742854463,219,0 +170742854511,218,0 +170742854559,219,0 +170742854607,218,0 +170742854655,218,0 +170742854703,218,0 +170742854751,219,0 +170742854800,218,0 +170742854850,218,0 +170742854898,218,0 +170742854946,218,0 +170742854994,218,0 +170742855043,218,0 +170742855091,218,0 +170742855139,218,0 +170742855187,218,0 +170742855237,218,0 +170742855285,218,0 +170742855333,218,0 +170742855381,218,0 +170742855430,218,0 +170742855480,218,0 +170742855528,218,0 +170742855576,219,0 +170742855624,218,0 +170742855673,219,0 +170742855721,219,0 +170742855771,219,0 +170742855819,219,0 +170742855867,219,0 +170742855916,219,0 +170742855964,219,0 +170742856012,219,0 +170742856060,219,0 +170742856110,220,0 +170742856158,221,0 +170742856207,220,0 +170742856255,221,0 +170742856303,220,0 +170742856351,221,0 +170742856399,221,0 +170742856448,222,0 +170742856498,222,0 +170742856547,222,0 +170742856597,222,0 +170742856645,222,0 +170742856693,222,0 +170742856741,222,0 +170742856790,223,0 +170742856838,223,0 +170742856886,224,0 +170742856934,225,0 +170742856984,226,0 +170742857032,226,0 +170742857080,227,0 +170742857129,228,0 +170742857177,228,0 +170742857227,228,0 +170742857275,230,0 +170742857323,228,0 +170742857371,230,0 +170742857419,231,0 +170742857467,231,0 +170742857515,232,0 +170742857563,234,0 +170742857612,234,0 +170742857662,235,0 +170742857710,236,0 +170742857758,234,0 +170742857806,236,0 +170742857854,235,0 +170742857903,236,0 +170742857951,235,0 +170742857999,238,0 +170742858047,234,0 +170742858095,236,0 +170742858143,234,0 +170742858191,236,0 +170742858240,236,0 +170742858288,240,0 +170742858336,242,0 +170742858384,239,0 +170742858432,241,0 +170742858480,242,0 +170742858528,241,0 +170742858576,244,0 +170742858624,244,0 +170742858672,243,0 +170742858720,244,0 +170742858768,224,0 +170742858816,223,0 +170742858864,224,0 +170742858912,223,0 +170742858960,221,0 +170742859009,219,0 +170742859057,219,0 +170742859107,218,0 +170742859155,219,0 +170742859203,218,0 +170742859251,218,0 +170742859299,218,0 +170742859347,218,0 +170742859395,218,0 +170742859443,218,0 +170742859492,218,0 +170742859540,218,0 +170742859588,218,0 +170742859636,218,0 +170742859684,218,0 +170742859732,219,0 +170742859780,218,0 +170742859828,218,0 +170742859878,218,0 +170742859926,218,0 +170742859975,218,0 +170742860023,218,0 +170742860073,218,0 +170742860122,218,0 +170742860170,218,0 +170742860218,218,0 +170742860266,218,0 +170742860316,218,0 +170742860364,218,0 +170742860412,218,0 +170742860461,218,0 +170742860511,218,0 +170742860560,218,0 +170742860608,218,0 +170742860656,218,0 +170742860704,218,0 +170742860752,218,0 +170742860800,218,0 +170742860850,218,0 +170742860898,218,0 +170742860947,218,0 +170742860995,218,0 +170742861045,218,0 +170742861093,218,0 +170742861142,218,0 +170742861192,218,0 +170742861241,218,0 +170742861289,219,0 +170742861339,218,0 +170742861388,218,0 +170742861436,218,0 +170742861486,219,0 +170742861534,219,0 +170742861582,219,0 +170742861630,218,0 +170742861678,218,0 +170742861728,219,0 +170742861777,219,0 +170742861825,218,0 +170742861873,219,0 +170742861921,219,0 +170742861969,219,0 +170742862017,220,0 +170742862065,220,0 +170742862113,220,0 +170742862161,220,0 +170742862211,220,0 +170742862259,220,0 +170742862308,221,0 +170742862356,221,0 +170742862405,221,0 +170742862455,221,0 +170742862503,222,0 +170742862551,223,0 +170742862600,224,0 +170742862648,225,0 +170742862696,226,0 +170742862744,227,0 +170742862792,227,0 +170742862840,228,0 +170742862890,228,0 +170742862939,229,0 +170742862987,228,0 +170742863035,228,0 +170742863083,228,0 +170742863131,228,0 +170742863179,227,0 +170742863227,222,0 +170742863275,222,0 +170742863323,225,0 +170742863371,225,0 +170742863419,223,0 +170742863469,224,0 +170742863517,223,0 +170742863565,224,0 +170742863612,242,0 +170742863662,241,0 +170742863710,240,0 +170742863760,241,0 +170742863807,240,0 +170742863855,245,0 +170742863903,243,0 +170742863951,243,0 +170742864001,244,0 +170742864049,245,0 +170742864097,226,0 +170742864146,221,0 +170742864194,225,0 +170742864242,223,0 +170742864292,221,0 +170742864340,219,0 +170742864389,219,0 +170742864439,218,0 +170742864487,218,0 +170742864536,218,0 +170742864584,218,0 +170742864632,218,0 +170742864680,218,0 +170742864728,219,0 +170742864776,218,0 +170742864824,218,0 +170742864874,218,0 +170742864923,218,0 +170742864973,218,0 +170742865022,218,0 +170742865072,218,0 +170742865120,218,0 +170742865169,218,0 +170742865217,218,0 +170742865265,218,0 +170742865315,218,0 +170742865363,218,0 +170742865411,218,0 +170742865460,219,0 +170742865508,219,0 +170742865558,219,0 +170742865606,219,0 +170742865654,218,0 +170742865701,219,0 +170742865751,219,0 +170742865799,219,0 +170742865849,219,0 +170742865896,219,0 +170742865946,219,0 +170742865994,219,0 +170742866043,219,0 +170742866091,218,0 +170742866139,219,0 +170742866187,220,0 +170742866237,220,0 +170742866286,220,0 +170742866336,220,0 +170742866384,221,0 +170742866433,221,0 +170742866481,220,0 +170742866529,220,0 +170742866579,220,0 +170742866626,221,0 +170742866676,221,0 +170742866724,222,0 +170742866772,222,0 +170742866820,221,0 +170742866867,222,0 +170742866915,222,0 +170742866963,222,0 +170742867013,223,0 +170742867061,222,0 +170742867108,222,0 +170742867156,223,0 +170742867204,222,0 +170742867252,223,0 +170742867300,224,0 +170742867348,225,0 +170742867396,226,0 +170742867444,226,0 +170742867492,227,0 +170742867539,228,0 +170742867587,228,0 +170742867635,228,0 +170742867683,228,0 +170742867731,232,0 +170742867780,229,0 +170742867828,229,0 +170742867876,229,0 +170742867924,231,0 +170742867972,231,0 +170742868020,232,0 +170742868069,232,0 +170742868117,233,0 +170742868165,234,0 +170742868213,234,0 +170742868261,234,0 +170742868309,233,0 +170742868358,234,0 +170742868406,234,0 +170742868454,235,0 +170742868502,234,0 +170742868550,236,0 +170742868597,234,0 +170742868645,236,0 +170742868693,236,0 +170742868741,236,0 +170742868789,236,0 +170742868837,235,0 +170742868885,237,0 +170742868934,237,0 +170742868982,241,0 +170742869030,243,0 +170742869079,243,0 +170742869127,242,0 +170742869175,242,0 +170742869223,244,0 +170742869271,242,0 +170742869321,244,0 +170742869369,242,0 +170742869418,245,0 +170742869468,220,0 +170742869516,225,0 +170742869564,224,0 +170742869612,223,0 +170742869660,221,0 +170742869708,220,0 +170742869757,221,0 +170742869805,220,0 +170742869853,220,0 +170742869903,220,0 +170742869951,219,0 +170742870000,219,0 +170742870050,220,0 +170742870098,219,0 +170742870147,219,0 +170742870195,220,0 +170742870243,220,0 +170742870291,219,0 +170742870339,220,0 +170742870387,220,0 +170742870436,220,0 +170742870484,220,0 +170742870532,219,0 +170742870580,219,0 +170742870628,220,0 +170742870676,219,0 +170742870724,220,0 +170742870772,219,0 +170742870820,219,0 +170742870870,220,0 +170742870918,219,0 +170742870966,219,0 +170742871014,219,0 +170742871062,220,0 +170742871110,220,0 +170742871158,220,0 +170742871206,220,0 +170742871253,220,0 +170742871301,220,0 +170742871351,220,0 +170742871399,220,0 +170742871447,220,0 +170742871495,221,0 +170742871544,221,0 +170742871594,220,0 +170742871642,221,0 +170742871690,221,0 +170742871738,222,0 +170742871786,222,0 +170742871834,222,0 +170742871881,222,0 +170742871929,222,0 +170742871977,221,0 +170742872025,222,0 +170742872075,224,0 +170742872123,224,0 +170742872170,223,0 +170742872218,223,0 +170742872266,224,0 +170742872314,223,0 +170742872362,223,0 +170742872410,224,0 +170742872460,223,0 +170742872508,224,0 +170742872556,224,0 +170742872605,223,0 +170742872653,224,0 +170742872703,225,0 +170742872752,226,0 +170742872800,226,0 +170742872848,227,0 +170742872896,227,0 +170742872946,229,0 +170742872995,228,0 +170742873045,229,0 +170742873093,229,0 +170742873141,230,0 +170742873190,230,0 +170742873238,232,0 +170742873286,232,0 +170742873336,232,0 +170742873384,233,0 +170742873432,234,0 +170742873480,234,0 +170742873529,233,0 +170742873579,233,0 +170742873627,234,0 +170742873674,233,0 +170742873724,234,0 +170742873772,234,0 +170742873820,234,0 +170742873868,235,0 +170742873916,235,0 +170742873964,236,0 +170742874012,236,0 +170742874060,235,0 +170742874107,235,0 +170742874155,237,0 +170742874203,238,0 +170742874251,236,0 +170742874299,237,0 +170742874347,233,0 +170742874394,238,0 +170742874442,242,0 +170742874490,240,0 +170742874540,243,0 +170742874588,245,0 +170742874636,243,0 +170742874684,242,0 +170742874732,242,0 +170742874779,233,0 +170742874827,230,0 +170742874875,220,0 +170742874923,222,0 +170742874971,221,0 +170742875019,219,0 +170742875067,218,0 +170742875115,218,0 +170742875163,217,0 +170742875211,217,0 +170742875259,217,0 +170742875306,217,0 +170742875354,217,0 +170742875402,217,0 +170742875450,217,0 +170742875498,217,0 +170742875546,217,0 +170742875595,217,0 +170742875643,217,0 +170742875691,217,0 +170742875739,216,0 +170742875787,217,0 +170742875835,216,0 +170742875883,217,0 +170742875932,217,0 +170742875980,217,0 +170742876028,217,0 +170742876076,217,0 +170742876124,217,0 +170742876172,217,0 +170742876220,217,0 +170742876270,217,0 +170742876319,217,0 +170742876367,217,0 +170742876417,216,0 +170742876465,217,0 +170742876514,217,0 +170742876562,217,0 +170742876610,217,0 +170742876658,217,0 +170742876707,216,0 +170742876757,217,0 +170742876805,217,0 +170742876854,217,0 +170742876902,217,0 +170742876950,217,0 +170742876998,217,0 +170742877048,217,0 +170742877097,217,0 +170742877147,217,0 +170742877196,217,0 +170742877244,217,0 +170742877292,218,0 +170742877342,218,0 +170742877390,219,0 +170742877439,218,0 +170742877487,218,0 +170742877535,220,0 +170742877585,220,0 +170742877634,220,0 +170742877682,221,0 +170742877732,221,0 +170742877779,221,0 +170742877827,221,0 +170742877875,221,0 +170742877925,222,0 +170742877974,222,0 +170742878024,222,0 +170742878072,222,0 +170742878120,222,0 +170742878169,223,0 +170742878217,222,0 +170742878265,222,0 +170742878315,224,0 +170742878363,224,0 +170742878411,225,0 +170742878459,225,0 +170742878507,227,0 +170742878555,227,0 +170742878603,226,0 +170742878652,228,0 +170742878700,229,0 +170742878748,229,0 +170742878797,230,0 +170742878845,230,0 +170742878895,230,0 +170742878943,230,0 +170742878991,230,0 +170742879039,231,0 +170742879087,233,0 +170742879135,233,0 +170742879184,232,0 +170742879234,232,0 +170742879283,233,0 +170742879331,233,0 +170742879379,233,0 +170742879429,234,0 +170742879477,232,0 +170742879525,234,0 +170742879573,234,0 +170742879621,234,0 +170742879670,247,0 +170742879718,243,0 +170742879766,241,0 +170742879814,243,0 +170742879862,241,0 +170742879910,242,0 +170742879958,246,0 +170742880006,243,0 +170742880055,242,0 +170742880103,246,0 +170742880153,236,0 +170742880201,220,0 +170742880250,224,0 +170742880298,222,0 +170742880346,221,0 +170742880394,219,0 +170742880442,218,0 +170742880490,218,0 +170742880538,218,0 +170742880586,218,0 +170742880634,218,0 +170742880682,218,0 +170742880730,218,0 +170742880780,218,0 +170742880828,218,0 +170742880877,218,0 +170742880925,218,0 +170742880973,218,0 +170742881021,218,0 +170742881069,218,0 +170742881119,218,0 +170742881167,218,0 +170742881216,217,0 +170742881264,218,0 +170742881314,218,0 +170742881363,218,0 +170742881413,218,0 +170742881461,218,0 +170742881509,218,0 +170742881557,218,0 +170742881605,218,0 +170742881653,218,0 +170742881701,218,0 +170742881750,218,0 +170742881798,218,0 +170742881848,219,0 +170742881896,218,0 +170742881945,219,0 +170742881993,219,0 +170742882041,219,0 +170742882089,219,0 +170742882137,219,0 +170742882186,220,0 +170742882234,219,0 +170742882282,220,0 +170742882330,220,0 +170742882380,220,0 +170742882428,220,0 +170742882476,221,0 +170742882524,221,0 +170742882572,221,0 +170742882621,221,0 +170742882669,220,0 +170742882717,221,0 +170742882765,222,0 +170742882813,222,0 +170742882861,221,0 +170742882909,222,0 +170742882959,222,0 +170742883007,221,0 +170742883054,222,0 +170742883102,222,0 +170742883150,222,0 +170742883198,222,0 +170742883246,223,0 +170742883294,224,0 +170742883342,224,0 +170742883390,225,0 +170742883437,226,0 +170742883485,225,0 +170742883533,228,0 +170742883581,227,0 +170742883630,227,0 +170742883678,228,0 +170742883726,231,0 +170742883776,229,0 +170742883824,230,0 +170742883871,231,0 +170742883921,231,0 +170742883970,232,0 +170742884018,232,0 +170742884066,233,0 +170742884116,231,0 +170742884164,233,0 +170742884213,234,0 +170742884261,235,0 +170742884309,232,0 +170742884359,233,0 +170742884407,234,0 +170742884455,235,0 +170742884503,234,0 +170742884552,236,0 +170742884600,233,0 +170742884650,235,0 +170742884697,236,0 +170742884745,238,0 +170742884795,236,0 +170742884843,238,0 +170742884893,238,0 +170742884941,238,0 +170742884988,236,0 +170742885036,243,0 +170742885086,243,0 +170742885135,243,0 +170742885183,242,0 +170742885233,244,0 +170742885281,243,0 +170742885329,244,0 +170742885378,244,0 +170742885426,244,0 +170742885476,249,0 +170742885524,225,0 +170742885572,224,0 +170742885620,224,0 +170742885669,222,0 +170742885717,220,0 +170742885765,219,0 +170742885813,218,0 +170742885863,219,0 +170742885911,219,0 +170742885959,219,0 +170742886007,219,0 +170742886055,218,0 +170742886103,218,0 +170742886152,219,0 +170742886202,219,0 +170742886250,218,0 +170742886298,218,0 +170742886346,218,0 +170742886394,218,0 +170742886441,218,0 +170742886491,218,0 +170742886539,219,0 +170742886587,218,0 +170742886636,218,0 +170742886684,218,0 +170742886734,218,0 +170742886782,219,0 +170742886830,218,0 +170742886878,218,0 +170742886926,218,0 +170742886974,218,0 +170742887022,219,0 +170742887070,218,0 +170742887118,218,0 +170742887167,219,0 +170742887215,218,0 +170742887263,218,0 +170742887311,218,0 +170742887359,218,0 +170742887407,218,0 +170742887455,218,0 +170742887503,218,0 +170742887551,218,0 +170742887599,218,0 +170742887647,218,0 +170742887695,218,0 +170742887744,218,0 +170742887792,219,0 +170742887840,218,0 +170742887888,218,0 +170742887936,218,0 +170742887983,218,0 +170742888031,218,0 +170742888079,218,0 +170742888127,218,0 +170742888175,218,0 +170742888224,218,0 +170742888272,218,0 +170742888320,218,0 +170742888368,218,0 +170742888416,218,0 +170742888464,218,0 +170742888512,218,0 +170742888561,218,0 +170742888609,219,0 +170742888657,219,0 +170742888705,219,0 +170742888753,220,0 +170742888801,220,0 +170742888848,220,0 +170742888896,220,0 +170742888944,220,0 +170742888992,221,0 +170742889040,221,0 +170742889088,221,0 +170742889138,221,0 +170742889186,221,0 +170742889235,221,0 +170742889283,222,0 +170742889331,222,0 +170742889379,223,0 +170742889429,224,0 +170742889478,224,0 +170742889526,224,0 +170742889574,225,0 +170742889622,226,0 +170742889671,227,0 +170742889719,227,0 +170742889769,227,0 +170742889818,228,0 +170742889868,227,0 +170742889916,228,0 +170742889964,230,0 +170742890012,231,0 +170742890061,231,0 +170742890109,231,0 +170742890159,232,0 +170742890208,233,0 +170742890256,231,0 +170742890304,233,0 +170742890352,233,0 +170742890400,233,0 +170742890450,242,0 +170742890498,244,0 +170742890546,243,0 +170742890594,243,0 +170742890643,247,0 +170742890691,244,0 +170742890739,245,0 +170742890788,244,0 +170742890836,245,0 +170742890884,238,0 +170742890934,220,0 +170742890982,224,0 +170742891030,223,0 +170742891078,222,0 +170742891126,220,0 +170742891174,219,0 +170742891223,219,0 +170742891271,218,0 +170742891321,218,0 +170742891369,218,0 +170742891416,218,0 +170742891466,218,0 +170742891516,218,0 +170742891563,218,0 +170742891611,218,0 +170742891659,218,0 +170742891707,218,0 +170742891755,218,0 +170742891803,218,0 +170742891851,218,0 +170742891899,218,0 +170742891947,218,0 +170742891995,219,0 +170742892044,218,0 +170742892094,218,0 +170742892142,218,0 +170742892190,218,0 +170742892238,218,0 +170742892287,218,0 +170742892337,218,0 +170742892385,218,0 +170742892433,218,0 +170742892481,218,0 +170742892529,218,0 +170742892577,218,0 +170742892625,218,0 +170742892674,218,0 +170742892722,218,0 +170742892770,218,0 +170742892818,218,0 +170742892866,218,0 +170742892915,218,0 +170742892963,218,0 +170742893011,218,0 +170742893059,218,0 +170742893107,219,0 +170742893155,218,0 +170742893203,218,0 +170742893251,218,0 +170742893299,218,0 +170742893347,218,0 +170742893394,218,0 +170742893442,218,0 +170742893490,218,0 +170742893538,218,0 +170742893586,218,0 +170742893634,218,0 +170742893682,218,0 +170742893730,218,0 +170742893779,218,0 +170742893827,218,0 +170742893877,218,0 +170742893925,218,0 +170742893972,218,0 +170742894022,218,0 +170742894070,218,0 +170742894118,218,0 +170742894166,218,0 +170742894214,218,0 +170742894262,219,0 +170742894309,218,0 +170742894357,219,0 +170742894405,219,0 +170742894453,220,0 +170742894501,220,0 +170742894549,220,0 +170742894598,220,0 +170742894646,220,0 +170742894696,221,0 +170742894745,222,0 +170742894795,223,0 +170742894843,225,0 +170742894891,224,0 +170742894939,225,0 +170742894987,225,0 +170742895036,225,0 +170742895084,226,0 +170742895132,227,0 +170742895180,226,0 +170742895228,227,0 +170742895276,228,0 +170742895324,227,0 +170742895372,227,0 +170742895419,226,0 +170742895467,226,0 +170742895515,226,0 +170742895563,226,0 +170742895611,226,0 +170742895659,226,0 +170742895707,226,0 +170742895755,226,0 +170742895803,240,0 +170742895850,241,0 +170742895898,241,0 +170742895946,243,0 +170742895996,243,0 +170742896044,245,0 +170742896091,245,0 +170742896139,245,0 +170742896187,243,0 +170742896237,244,0 +170742896286,224,0 +170742896334,222,0 +170742896382,224,0 +170742896430,223,0 +170742896478,221,0 +170742896527,220,0 +170742896577,219,0 +170742896624,219,0 +170742896672,218,0 +170742896720,218,0 +170742896768,218,0 +170742896816,218,0 +170742896864,218,0 +170742896913,218,0 +170742896963,218,0 +170742897011,218,0 +170742897059,218,0 +170742897106,219,0 +170742897154,218,0 +170742897202,218,0 +170742897250,219,0 +170742897298,218,0 +170742897346,218,0 +170742897394,218,0 +170742897441,218,0 +170742897489,218,0 +170742897537,218,0 +170742897585,218,0 +170742897635,218,0 +170742897684,218,0 +170742897734,218,0 +170742897782,218,0 +170742897830,218,0 +170742897878,218,0 +170742897927,219,0 +170742897975,218,0 +170742898023,218,0 +170742898073,218,0 +170742898121,218,0 +170742898169,218,0 +170742898217,218,0 +170742898266,218,0 +170742898316,219,0 +170742898364,219,0 +170742898413,220,0 +170742898461,219,0 +170742898511,219,0 +170742898560,219,0 +170742898608,218,0 +170742898658,219,0 +170742898706,219,0 +170742898754,220,0 +170742898802,220,0 +170742898850,220,0 +170742898898,220,0 +170742898945,221,0 +170742898995,221,0 +170742899043,221,0 +170742899091,221,0 +170742899140,222,0 +170742899188,221,0 +170742899238,221,0 +170742899286,222,0 +170742899334,222,0 +170742899382,222,0 +170742899430,222,0 +170742899478,223,0 +170742899526,227,0 +170742899575,223,0 +170742899623,224,0 +170742899673,225,0 +170742899721,225,0 +170742899769,225,0 +170742899818,225,0 +170742899866,225,0 +170742899914,226,0 +170742899962,227,0 +170742900012,226,0 +170742900060,228,0 +170742900108,228,0 +170742900157,228,0 +170742900205,230,0 +170742900253,230,0 +170742900301,230,0 +170742900349,231,0 +170742900397,232,0 +170742900445,233,0 +170742900492,233,0 +170742900540,231,0 +170742900590,232,0 +170742900638,232,0 +170742900686,233,0 +170742900733,234,0 +170742900781,234,0 +170742900829,232,0 +170742900877,233,0 +170742900925,235,0 +170742900973,235,0 +170742901021,234,0 +170742901069,234,0 +170742901118,236,0 +170742901166,242,0 +170742901216,242,0 +170742901265,244,0 +170742901313,245,0 +170742901361,245,0 +170742901411,245,0 +170742901459,245,0 +170742901507,244,0 +170742901555,246,0 +170742901603,231,0 +170742901651,221,0 +170742901699,224,0 +170742901747,222,0 +170742901795,220,0 +170742901843,219,0 +170742901891,219,0 +170742901940,219,0 +170742901988,218,0 +170742902036,218,0 +170742902086,218,0 +170742902135,218,0 +170742902183,218,0 +170742902233,218,0 +170742902281,218,0 +170742902329,218,0 +170742902377,218,0 +170742902425,218,0 +170742902473,218,0 +170742902520,218,0 +170742902568,218,0 +170742902616,218,0 +170742902664,218,0 +170742902714,218,0 +170742902762,218,0 +170742902810,218,0 +170742902858,218,0 +170742902906,218,0 +170742902954,218,0 +170742903003,218,0 +170742903051,218,0 +170742903099,217,0 +170742903147,218,0 +170742903195,218,0 +170742903245,218,0 +170742903292,218,0 +170742903340,218,0 +170742903388,218,0 +170742903436,218,0 +170742903484,218,0 +170742903532,218,0 +170742903580,218,0 +170742903628,218,0 +170742903677,218,0 +170742903727,218,0 +170742903774,218,0 +170742903822,218,0 +170742903870,218,0 +170742903918,218,0 +170742903968,218,0 +170742904015,217,0 +170742904063,218,0 +170742904111,217,0 +170742904159,218,0 +170742904207,218,0 +170742904257,218,0 +170742904305,218,0 +170742904353,218,0 +170742904402,218,0 +170742904452,218,0 +170742904499,218,0 +170742904549,218,0 +170742904597,218,0 +170742904646,218,0 +170742904694,218,0 +170742904742,218,0 +170742904791,219,0 +170742904839,219,0 +170742904887,219,0 +170742904937,218,0 +170742904985,219,0 +170742905032,220,0 +170742905080,220,0 +170742905128,220,0 +170742905176,221,0 +170742905224,220,0 +170742905274,220,0 +170742905323,221,0 +170742905371,221,0 +170742905421,221,0 +170742905469,222,0 +170742905517,222,0 +170742905566,223,0 +170742905616,224,0 +170742905664,225,0 +170742905713,224,0 +170742905763,225,0 +170742905811,226,0 +170742905859,226,0 +170742905907,227,0 +170742905956,228,0 +170742906004,229,0 +170742906052,228,0 +170742906102,228,0 +170742906150,229,0 +170742906198,229,0 +170742906245,231,0 +170742906293,232,0 +170742906341,232,0 +170742906389,233,0 +170742906437,233,0 +170742906485,234,0 +170742906533,241,0 +170742906581,241,0 +170742906629,235,0 +170742906677,241,0 +170742906727,239,0 +170742906775,233,0 +170742906824,242,0 +170742906874,245,0 +170742906922,241,0 +170742906970,222,0 +170742907019,222,0 +170742907069,223,0 +170742907117,222,0 +170742907166,220,0 +170742907214,219,0 +170742907264,219,0 +170742907312,218,0 +170742907360,218,0 +170742907408,218,0 +170742907457,218,0 +170742907505,218,0 +170742907555,218,0 +170742907603,218,0 +170742907652,218,0 +170742907700,218,0 +170742907750,218,0 +170742907799,218,0 +170742907847,218,0 +170742907895,218,0 +170742907943,218,0 +170742907991,218,0 +170742908039,218,0 +170742908088,218,0 +170742908136,217,0 +170742908186,218,0 +170742908235,218,0 +170742908285,218,0 +170742908333,218,0 +170742908381,218,0 +170742908430,217,0 +170742908478,218,0 +170742908526,217,0 +170742908574,218,0 +170742908622,218,0 +170742908670,218,0 +170742908718,218,0 +170742908766,218,0 +170742908816,218,0 +170742908864,218,0 +170742908912,218,0 +170742908961,218,0 +170742909009,218,0 +170742909059,218,0 +170742909107,218,0 +170742909154,218,0 +170742909204,218,0 +170742909252,218,0 +170742909300,218,0 +170742909348,218,0 +170742909397,218,0 +170742909445,218,0 +170742909493,218,0 +170742909541,218,0 +170742909589,218,0 +170742909639,218,0 +170742909687,218,0 +170742909735,217,0 +170742909783,218,0 +170742909831,218,0 +170742909879,218,0 +170742909927,218,0 +170742909975,218,0 +170742910024,218,0 +170742910072,218,0 +170742910120,218,0 +170742910168,218,0 +170742910217,218,0 +170742910267,219,0 +170742910317,219,0 +170742910365,219,0 +170742910412,219,0 +170742910460,219,0 +170742910510,220,0 +170742910558,220,0 +170742910606,220,0 +170742910655,220,0 +170742910703,220,0 +170742910753,220,0 +170742910801,221,0 +170742910850,221,0 +170742910898,221,0 +170742910946,222,0 +170742910994,223,0 +170742911042,224,0 +170742911090,224,0 +170742911140,225,0 +170742911188,225,0 +170742911237,225,0 +170742911285,225,0 +170742911335,226,0 +170742911383,225,0 +170742911431,226,0 +170742911480,228,0 +170742911528,228,0 +170742911576,228,0 +170742911624,229,0 +170742911674,231,0 +170742911722,232,0 +170742911770,229,0 +170742911818,233,0 +170742911867,236,0 +170742911915,242,0 +170742911965,247,0 +170742912014,243,0 +170742912062,243,0 +170742912111,244,0 +170742912159,244,0 +170742912209,242,0 +170742912258,245,0 +170742912306,241,0 +170742912354,241,0 +170742912402,220,0 +170742912450,224,0 +170742912498,223,0 +170742912547,221,0 +170742912595,219,0 +170742912643,219,0 +170742912691,218,0 +170742912739,218,0 +170742912787,219,0 +170742912835,218,0 +170742912882,218,0 +170742912932,218,0 +170742912980,218,0 +170742913028,218,0 +170742913076,218,0 +170742913125,218,0 +170742913173,218,0 +170742913221,218,0 +170742913270,218,0 +170742913318,218,0 +170742913366,218,0 +170742913414,218,0 +170742913462,218,0 +170742913510,218,0 +170742913558,218,0 +170742913606,218,0 +170742913655,218,0 +170742913705,218,0 +170742913752,218,0 +170742913800,218,0 +170742913848,218,0 +170742913898,218,0 +170742913947,218,0 +170742913995,218,0 +170742914043,218,0 +170742914091,218,0 +170742914139,218,0 +170742914187,218,0 +170742914235,218,0 +170742914282,218,0 +170742914330,218,0 +170742914378,218,0 +170742914426,218,0 +170742914474,218,0 +170742914522,218,0 +170742914571,218,0 +170742914619,218,0 +170742914667,218,0 +170742914715,218,0 +170742914764,218,0 +170742914812,218,0 +170742914860,218,0 +170742914908,219,0 +170742914956,218,0 +170742915004,218,0 +170742915052,218,0 +170742915100,218,0 +170742915147,218,0 +170742915195,218,0 +170742915243,218,0 +170742915291,218,0 +170742915339,218,0 +170742915389,218,0 +170742915437,218,0 +170742915485,219,0 +170742915534,219,0 +170742915582,219,0 +170742915630,219,0 +170742915680,219,0 +170742915729,219,0 +170742915777,219,0 +170742915825,220,0 +170742915873,220,0 +170742915922,220,0 +170742915970,220,0 +170742916018,220,0 +170742916068,222,0 +170742916116,222,0 +170742916164,222,0 +170742916213,222,0 +170742916261,223,0 +170742916309,224,0 +170742916357,225,0 +170742916407,225,0 +170742916455,225,0 +170742916503,226,0 +170742916552,226,0 +170742916602,227,0 +170742916650,227,0 +170742916698,227,0 +170742916747,229,0 +170742916797,229,0 +170742916845,230,0 +170742916894,230,0 +170742916942,229,0 +170742916992,232,0 +170742917041,231,0 +170742917091,232,0 +170742917139,233,0 +170742917188,235,0 +170742917236,242,0 +170742917284,241,0 +170742917332,240,0 +170742917380,242,0 +170742917428,245,0 +170742917476,244,0 +170742917525,244,0 +170742917573,243,0 +170742917621,243,0 +170742917669,244,0 +170742917717,221,0 +170742917765,225,0 +170742917813,225,0 +170742917861,223,0 +170742917909,222,0 +170742917956,221,0 +170742918004,220,0 +170742918052,220,0 +170742918100,220,0 +170742918149,220,0 +170742918197,220,0 +170742918245,220,0 +170742918293,219,0 +170742918341,220,0 +170742918389,220,0 +170742918439,220,0 +170742918487,219,0 +170742918535,219,0 +170742918584,220,0 +170742918632,219,0 +170742918681,219,0 +170742918729,219,0 +170742918779,219,0 +170742918827,219,0 +170742918875,219,0 +170742918923,220,0 +170742918971,220,0 +170742919021,220,0 +170742919069,219,0 +170742919116,219,0 +170742919164,220,0 +170742919212,220,0 +170742919260,220,0 +170742919310,220,0 +170742919359,220,0 +170742919409,220,0 +170742919457,220,0 +170742919506,220,0 +170742919556,220,0 +170742919604,220,0 +170742919653,220,0 +170742919701,220,0 +170742919751,220,0 +170742919799,220,0 +170742919848,221,0 +170742919896,221,0 +170742919944,220,0 +170742919994,221,0 +170742920042,221,0 +170742920090,221,0 +170742920139,222,0 +170742920187,222,0 +170742920235,222,0 +170742920283,222,0 +170742920333,223,0 +170742920381,222,0 +170742920429,222,0 +170742920477,224,0 +170742920525,223,0 +170742920573,223,0 +170742920622,224,0 +170742920670,225,0 +170742920718,224,0 +170742920766,225,0 +170742920814,226,0 +170742920863,225,0 +170742920911,226,0 +170742920961,227,0 +170742921010,228,0 +170742921058,228,0 +170742921108,229,0 +170742921156,230,0 +170742921204,230,0 +170742921252,231,0 +170742921300,232,0 +170742921349,232,0 +170742921399,233,0 +170742921448,232,0 +170742921496,232,0 +170742921544,234,0 +170742921592,233,0 +170742921640,237,0 +170742921688,235,0 +170742921738,235,0 +170742921786,233,0 +170742921834,233,0 +170742921882,232,0 +170742921929,234,0 +170742921977,234,0 +170742922025,233,0 +170742922073,235,0 +170742922121,234,0 +170742922171,234,0 +170742922219,236,0 +170742922268,237,0 +170742922316,235,0 +170742922366,238,0 +170742922414,238,0 +170742922462,238,0 +170742922510,238,0 +170742922558,233,0 +170742922606,243,0 +170742922654,242,0 +170742922703,243,0 +170742922751,242,0 +170742922799,239,0 +170742922847,242,0 +170742922897,243,0 +170742922946,240,0 +170742922994,243,0 +170742923044,222,0 +170742923092,224,0 +170742923141,224,0 +170742923191,222,0 +170742923238,220,0 +170742923288,219,0 +170742923336,219,0 +170742923384,219,0 +170742923432,218,0 +170742923480,219,0 +170742923527,218,0 +170742923575,218,0 +170742923623,218,0 +170742923673,218,0 +170742923721,219,0 +170742923770,218,0 +170742923820,219,0 +170742923869,218,0 +170742923919,218,0 +170742923967,219,0 +170742924015,218,0 +170742924063,218,0 +170742924112,219,0 +170742924160,218,0 +170742924208,218,0 +170742924256,218,0 +170742924304,218,0 +170742924352,219,0 +170742924401,218,0 +170742924451,218,0 +170742924499,218,0 +170742924547,218,0 +170742924594,219,0 +170742924642,219,0 +170742924690,218,0 +170742924738,219,0 +170742924786,219,0 +170742924834,219,0 +170742924882,219,0 +170742924929,220,0 +170742924977,219,0 +170742925025,219,0 +170742925073,220,0 +170742925121,220,0 +170742925169,220,0 +170742925217,220,0 +170742925265,220,0 +170742925313,220,0 +170742925360,221,0 +170742925408,221,0 +170742925456,221,0 +170742925504,221,0 +170742925552,222,0 +170742925600,222,0 +170742925648,222,0 +170742925696,223,0 +170742925744,223,0 +170742925792,221,0 +170742925839,222,0 +170742925887,223,0 +170742925935,222,0 +170742925983,223,0 +170742926031,223,0 +170742926080,223,0 +170742926128,223,0 +170742926176,223,0 +170742926224,225,0 +170742926272,226,0 +170742926320,226,0 +170742926368,226,0 +170742926416,227,0 +170742926464,228,0 +170742926512,229,0 +170742926560,229,0 +170742926607,230,0 +170742926655,229,0 +170742926703,230,0 +170742926751,232,0 +170742926799,232,0 +170742926848,233,0 +170742926896,233,0 +170742926944,234,0 +170742926992,234,0 +170742927040,234,0 +170742927088,234,0 +170742927136,235,0 +170742927184,235,0 +170742927232,236,0 +170742927280,236,0 +170742927328,236,0 +170742927375,236,0 +170742927423,237,0 +170742927473,237,0 +170742927521,237,0 +170742927569,237,0 +170742927618,236,0 +170742927666,237,0 +170742927714,237,0 +170742927764,238,0 +170742927812,239,0 +170742927861,240,0 +170742927909,239,0 +170742927957,236,0 +170742928005,244,0 +170742928053,242,0 +170742928101,244,0 +170742928149,242,0 +170742928197,243,0 +170742928245,242,0 +170742928293,246,0 +170742928340,243,0 +170742928388,245,0 +170742928436,237,0 +170742928484,220,0 +170742928532,224,0 +170742928582,223,0 +170742928630,222,0 +170742928679,220,0 +170742928729,219,0 +170742928777,218,0 +170742928824,218,0 +170742928872,218,0 +170742928922,218,0 +170742928971,218,0 +170742929019,218,0 +170742929069,217,0 +170742929117,218,0 +170742929166,218,0 +170742929216,218,0 +170742929264,218,0 +170742929312,218,0 +170742929360,217,0 +170742929409,218,0 +170742929459,218,0 +170742929507,218,0 +170742929555,218,0 +170742929603,218,0 +170742929651,218,0 +170742929699,219,0 +170742929747,219,0 +170742929794,219,0 +170742929842,219,0 +170742929890,219,0 +170742929938,219,0 +170742929986,219,0 +170742930036,220,0 +170742930084,220,0 +170742930132,220,0 +170742930180,220,0 +170742930228,220,0 +170742930277,220,0 +170742930325,220,0 +170742930373,221,0 +170742930422,220,0 +170742930470,221,0 +170742930518,220,0 +170742930566,221,0 +170742930614,221,0 +170742930664,221,0 +170742930712,221,0 +170742930761,221,0 +170742930809,222,0 +170742930859,221,0 +170742930907,222,0 +170742930956,223,0 +170742931004,222,0 +170742931052,222,0 +170742931102,222,0 +170742931150,222,0 +170742931198,224,0 +170742931246,223,0 +170742931295,223,0 +170742931343,224,0 +170742931393,224,0 +170742931442,225,0 +170742931490,225,0 +170742931538,226,0 +170742931586,226,0 +170742931636,227,0 +170742931684,228,0 +170742931732,228,0 +170742931780,228,0 +170742931828,227,0 +170742931876,229,0 +170742931924,230,0 +170742931973,230,0 +170742932021,231,0 +170742932071,231,0 +170742932120,231,0 +170742932168,232,0 +170742932216,233,0 +170742932264,233,0 +170742932314,234,0 +170742932362,235,0 +170742932411,234,0 +170742932461,235,0 +170742932509,235,0 +170742932558,234,0 +170742932606,235,0 +170742932654,235,0 +170742932704,235,0 +170742932752,236,0 +170742932801,236,0 +170742932851,238,0 +170742932900,238,0 +170742932948,238,0 +170742932996,236,0 +170742933044,237,0 +170742933094,239,0 +170742933142,238,0 +170742933191,238,0 +170742933239,238,0 +170742933289,240,0 +170742933337,240,0 +170742933384,243,0 +170742933434,243,0 +170742933483,243,0 +170742933532,242,0 +170742933579,244,0 +170742933627,244,0 +170742933675,244,0 +170742933725,244,0 +170742933773,245,0 +170742933821,222,0 +170742933870,223,0 +170742933918,223,0 +170742933966,222,0 +170742934014,219,0 +170742934064,218,0 +170742934112,218,0 +170742934160,218,0 +170742934208,218,0 +170742934256,218,0 +170742934304,217,0 +170742934353,218,0 +170742934401,217,0 +170742934451,218,0 +170742934500,217,0 +170742934548,217,0 +170742934598,217,0 +170742934646,218,0 +170742934694,217,0 +170742934742,217,0 +170742934789,217,0 +170742934837,217,0 +170742934887,218,0 +170742934935,217,0 +170742934983,218,0 +170742935032,218,0 +170742935082,218,0 +170742935132,218,0 +170742935180,217,0 +170742935229,218,0 +170742935277,218,0 +170742935325,218,0 +170742935373,218,0 +170742935421,218,0 +170742935469,218,0 +170742935517,218,0 +170742935565,218,0 +170742935613,218,0 +170742935662,218,0 +170742935710,218,0 +170742935760,218,0 +170742935808,219,0 +170742935857,219,0 +170742935907,219,0 +170742935955,219,0 +170742936003,219,0 +170742936051,219,0 +170742936099,220,0 +170742936147,220,0 +170742936195,220,0 +170742936243,220,0 +170742936291,220,0 +170742936339,221,0 +170742936386,221,0 +170742936436,221,0 +170742936484,220,0 +170742936532,221,0 +170742936581,221,0 +170742936629,221,0 +170742936679,222,0 +170742936727,222,0 +170742936775,223,0 +170742936823,223,0 +170742936872,224,0 +170742936920,224,0 +170742936968,224,0 +170742937016,224,0 +170742937064,226,0 +170742937114,226,0 +170742937162,224,0 +170742937210,226,0 +170742937258,226,0 +170742937307,226,0 +170742937357,227,0 +170742937406,227,0 +170742937456,228,0 +170742937504,228,0 +170742937553,229,0 +170742937601,230,0 +170742937649,230,0 +170742937697,231,0 +170742937745,232,0 +170742937793,233,0 +170742937841,232,0 +170742937889,233,0 +170742937937,234,0 +170742937985,233,0 +170742938034,235,0 +170742938084,235,0 +170742938132,235,0 +170742938180,237,0 +170742938228,235,0 +170742938276,236,0 +170742938326,235,0 +170742938374,236,0 +170742938422,236,0 +170742938469,235,0 +170742938517,235,0 +170742938567,237,0 +170742938616,237,0 +170742938664,231,0 +170742938712,242,0 +170742938762,244,0 +170742938810,242,0 +170742938858,241,0 +170742938907,243,0 +170742938955,246,0 +170742939005,244,0 +170742939053,245,0 +170742939102,244,0 +170742939150,230,0 +170742939198,248,0 +170742939248,423,0 +170742939297,429,0 +170742939347,434,0 +170742939396,434,0 +170742939444,433,0 +170742939492,434,0 +170742939540,435,0 +170742939588,436,0 +170742939636,433,0 +170742939684,433,0 +170742939732,436,0 +170742939780,433,0 +170742939828,436,0 +170742939876,435,0 +170742939924,433,0 +170742939973,433,0 +170742940021,434,0 +170742940071,435,0 +170742940119,433,0 +170742940167,433,0 +170742940215,434,0 +170742940264,434,0 +170742940312,433,0 +170742940360,433,0 +170742940408,434,0 +170742940458,434,0 +170742940506,433,0 +170742940555,435,0 +170742940605,433,0 +170742940653,433,0 +170742940701,434,0 +170742940749,433,0 +170742940798,435,0 +170742940848,433,0 +170742940897,433,0 +170742940945,435,0 +170742940993,434,0 +170742941041,434,0 +170742941090,435,0 +170742941140,434,0 +170742941188,434,0 +170742941236,435,0 +170742941284,433,0 +170742941334,435,0 +170742941382,433,0 +170742941431,434,0 +170742941479,434,0 +170742941527,433,0 +170742941575,434,0 +170742941624,434,0 +170742941672,433,0 +170742941722,1010100,0 +170742941779,219,0 +170742941829,218,0 +170742941878,218,0 +170742941928,217,0 +170742941976,218,0 +170742942024,217,0 +170742942072,218,0 +170742942121,219,0 +170742942169,218,0 +170742942218,219,0 +170742942266,219,0 +170742942314,219,0 +170742942362,219,0 +170742942410,219,0 +170742942458,220,0 +170742942506,220,0 +170742942554,220,0 +170742942603,221,0 +170742942653,222,0 +170742942701,223,0 +170742942750,224,0 +170742942798,223,0 +170742942846,225,0 +170742942896,225,0 +170742942946,226,0 +170742942994,227,0 +170742943042,228,0 +170742943090,227,0 +170742943138,228,0 +170742943187,228,0 +170742943235,228,0 +170742943283,230,0 +170742943331,229,0 +170742943379,230,0 +170742943427,231,0 +170742943476,229,0 +170742943524,231,0 +170742943573,231,0 +170742943621,231,0 +170742943669,232,0 +170742943717,231,0 +170742943765,232,0 +170742943813,233,0 +170742943861,233,0 +170742943909,234,0 +170742943957,234,0 +170742944005,237,0 +170742944053,242,0 +170742944100,241,0 +170742944148,241,0 +170742944196,243,0 +170742944244,245,0 +170742944294,246,0 +170742944341,245,0 +170742944389,245,0 +170742944437,245,0 +170742944485,242,0 +170742944533,220,0 +170742944581,224,0 +170742944629,223,0 +170742944677,222,0 +170742944726,220,0 +170742944774,219,0 +170742944822,219,0 +170742944872,218,0 +170742944921,218,0 +170742944971,218,0 +170742945018,218,0 +170742945066,218,0 +170742945114,218,0 +170742945162,217,0 +170742945212,218,0 +170742945260,218,0 +170742945308,218,0 +170742945356,218,0 +170742945405,218,0 +170742945455,218,0 +170742945503,218,0 +170742945551,217,0 +170742945599,218,0 +170742945648,218,0 +170742945696,218,0 +170742945744,218,0 +170742945792,218,0 +170742945840,218,0 +170742945890,218,0 +170742945937,218,0 +170742945985,218,0 +170742946033,218,0 +170742946083,218,0 +170742946131,218,0 +170742946179,218,0 +170742946228,218,0 +170742946278,218,0 +170742946326,218,0 +170742946375,218,0 +170742946423,218,0 +170742946471,218,0 +170742946519,218,0 +170742946567,218,0 +170742946617,219,0 +170742946665,218,0 +170742946714,219,0 +170742946762,219,0 +170742946810,219,0 +170742946858,220,0 +170742946906,220,0 +170742946954,220,0 +170742947002,220,0 +170742947051,220,0 +170742947099,220,0 +170742947147,220,0 +170742947195,221,0 +170742947243,221,0 +170742947291,221,0 +170742947339,221,0 +170742947387,221,0 +170742947435,221,0 +170742947483,222,0 +170742947530,221,0 +170742947578,221,0 +170742947628,222,0 +170742947676,223,0 +170742947724,223,0 +170742947772,223,0 +170742947819,222,0 +170742947867,225,0 +170742947915,225,0 +170742947963,226,0 +170742948011,226,0 +170742948059,225,0 +170742948107,226,0 +170742948155,227,0 +170742948203,227,0 +170742948251,227,0 +170742948300,227,0 +170742948350,228,0 +170742948399,229,0 +170742948449,229,0 +170742948497,230,0 +170742948545,231,0 +170742948594,231,0 +170742948642,232,0 +170742948691,232,0 +170742948739,232,0 +170742948787,234,0 +170742948835,233,0 +170742948885,234,0 +170742948933,235,0 +170742948981,235,0 +170742949030,235,0 +170742949078,236,0 +170742949126,235,0 +170742949174,234,0 +170742949224,234,0 +170742949272,235,0 +170742949320,235,0 +170742949369,236,0 +170742949417,244,0 +170742949465,242,0 +170742949515,243,0 +170742949564,243,0 +170742949612,243,0 +170742949660,245,0 +170742949708,245,0 +170742949756,240,0 +170742949804,243,0 +170742949854,244,0 +170742949902,228,0 +170742949951,223,0 +170742950000,225,0 +170742950050,225,0 +170742950098,223,0 +170742950148,221,0 +170742950197,220,0 +170742950245,220,0 +170742950293,220,0 +170742950341,220,0 +170742950389,220,0 +170742950437,220,0 +170742950486,220,0 +170742950534,219,0 +170742950582,220,0 +170742950630,220,0 +170742950678,220,0 +170742950726,220,0 +170742950774,220,0 +170742950822,220,0 +170742950870,220,0 +170742950918,220,0 +170742950966,220,0 +170742951016,219,0 +170742951064,219,0 +170742951112,220,0 +170742951160,219,0 +170742951208,219,0 +170742951256,220,0 +170742951304,220,0 +170742951352,220,0 +170742951399,220,0 +170742951449,219,0 +170742951497,220,0 +170742951545,219,0 +170742951593,219,0 +170742951642,220,0 +170742951690,220,0 +170742951738,220,0 +170742951786,220,0 +170742951834,219,0 +170742951882,219,0 +170742951930,220,0 +170742951980,220,0 +170742952028,220,0 +170742952077,220,0 +170742952125,220,0 +170742952173,220,0 +170742952221,220,0 +170742952271,220,0 +170742952319,220,0 +170742952367,219,0 +170742952416,219,0 +170742952464,220,0 +170742952514,220,0 +170742952563,220,0 +170742952613,220,0 +170742952662,220,0 +170742952710,220,0 +170742952758,221,0 +170742952806,220,0 +170742952854,220,0 +170742952904,221,0 +170742952952,221,0 +170742953000,222,0 +170742953049,221,0 +170742953097,222,0 +170742953145,221,0 +170742953193,222,0 +170742953242,223,0 +170742953292,222,0 +170742953340,223,0 +170742953388,224,0 +170742953436,224,0 +170742953484,225,0 +170742953532,229,0 +170742953580,227,0 +170742953629,227,0 +170742953677,227,0 +170742953727,228,0 +170742953775,228,0 +170742953823,230,0 +170742953872,228,0 +170742953922,229,0 +170742953971,229,0 +170742954019,230,0 +170742954069,230,0 +170742954117,231,0 +170742954165,231,0 +170742954213,230,0 +170742954262,232,0 +170742954310,231,0 +170742954358,233,0 +170742954406,233,0 +170742954455,233,0 +170742954503,235,0 +170742954551,233,0 +170742954601,235,0 +170742954649,237,0 +170742954697,237,0 +170742954745,234,0 +170742954793,242,0 +170742954841,242,0 +170742954889,243,0 +170742954937,243,0 +170742954985,243,0 +170742955034,244,0 +170742955082,245,0 +170742955130,246,0 +170742955178,243,0 +170742955226,227,0 +170742955276,223,0 +170742955325,224,0 +170742955373,222,0 +170742955423,220,0 +170742955472,219,0 +170742955520,218,0 +170742955570,218,0 +170742955619,218,0 +170742955667,218,0 +170742955717,218,0 +170742955765,218,0 +170742955814,218,0 +170742955862,218,0 +170742955912,218,0 +170742955960,218,0 +170742956009,218,0 +170742956057,219,0 +170742956105,218,0 +170742956153,219,0 +170742956201,218,0 +170742956249,218,0 +170742956297,218,0 +170742956346,218,0 +170742956396,218,0 +170742956444,218,0 +170742956494,218,0 +170742956542,218,0 +170742956589,218,0 +170742956637,219,0 +170742956685,219,0 +170742956733,219,0 +170742956781,220,0 +170742956829,219,0 +170742956877,219,0 +170742956926,219,0 +170742956974,219,0 +170742957022,220,0 +170742957070,220,0 +170742957118,220,0 +170742957166,220,0 +170742957214,220,0 +170742957261,221,0 +170742957309,220,0 +170742957357,221,0 +170742957405,221,0 +170742957453,221,0 +170742957501,221,0 +170742957549,221,0 +170742957598,222,0 +170742957648,222,0 +170742957698,222,0 +170742957746,222,0 +170742957794,222,0 +170742957842,222,0 +170742957891,223,0 +170742957941,223,0 +170742957989,223,0 +170742958037,224,0 +170742958086,224,0 +170742958134,224,0 +170742958184,224,0 +170742958232,224,0 +170742958280,224,0 +170742958328,225,0 +170742958377,225,0 +170742958427,227,0 +170742958475,227,0 +170742958523,228,0 +170742958571,228,0 +170742958620,230,0 +170742958670,231,0 +170742958718,231,0 +170742958766,231,0 +170742958815,231,0 +170742958863,232,0 +170742958911,236,0 +170742958961,233,0 +170742959010,234,0 +170742959059,233,0 +170742959109,233,0 +170742959159,233,0 +170742959207,236,0 +170742959256,235,0 +170742959304,235,0 +170742959352,234,0 +170742959400,236,0 +170742959448,236,0 +170742959498,237,0 +170742959545,236,0 +170742959593,236,0 +170742959643,236,0 +170742959691,237,0 +170742959739,238,0 +170742959787,238,0 +170742959835,237,0 +170742959884,237,0 +170742959932,236,0 +170742959980,237,0 diff --git a/laser_value/0209-08.csv b/laser_value/0209-08.csv new file mode 100644 index 0000000..68d08c1 --- /dev/null +++ b/laser_value/0209-08.csv @@ -0,0 +1,7434 @@ +timestamp,laser_value,event +170742960030,237,0 +170742960078,234,0 +170742960126,241,0 +170742960174,241,0 +170742960222,241,0 +170742960270,242,0 +170742960318,244,0 +170742960366,244,0 +170742960414,244,0 +170742960462,242,0 +170742960510,245,0 +170742960558,244,0 +170742960608,220,0 +170742960656,224,0 +170742960703,224,0 +170742960751,222,0 +170742960799,220,0 +170742960847,219,0 +170742960895,219,0 +170742960943,219,0 +170742960991,219,0 +170742961039,218,0 +170742961087,219,0 +170742961135,219,0 +170742961183,218,0 +170742961233,219,0 +170742961281,218,0 +170742961328,218,0 +170742961378,218,0 +170742961426,219,0 +170742961475,218,0 +170742961523,218,0 +170742961573,219,0 +170742961621,219,0 +170742961669,218,0 +170742961717,219,0 +170742961766,218,0 +170742961814,219,0 +170742961862,218,0 +170742961912,218,0 +170742961960,219,0 +170742962008,219,0 +170742962057,218,0 +170742962107,219,0 +170742962156,218,0 +170742962204,219,0 +170742962252,218,0 +170742962302,219,0 +170742962350,219,0 +170742962399,218,0 +170742962447,218,0 +170742962495,218,0 +170742962543,218,0 +170742962591,218,0 +170742962639,218,0 +170742962689,218,0 +170742962737,218,0 +170742962785,218,0 +170742962834,218,0 +170742962882,218,0 +170742962930,218,0 +170742962980,218,0 +170742963029,219,0 +170742963077,218,0 +170742963127,218,0 +170742963175,218,0 +170742963223,218,0 +170742963271,218,0 +170742963320,218,0 +170742963368,218,0 +170742963416,218,0 +170742963464,218,0 +170742963512,218,0 +170742963561,218,0 +170742963609,218,0 +170742963657,218,0 +170742963707,218,0 +170742963756,219,0 +170742963804,218,0 +170742963852,218,0 +170742963900,218,0 +170742963950,218,0 +170742963998,218,0 +170742964046,219,0 +170742964094,218,0 +170742964142,218,0 +170742964191,218,0 +170742964241,218,0 +170742964290,218,0 +170742964338,218,0 +170742964386,218,0 +170742964436,218,0 +170742964484,218,0 +170742964533,218,0 +170742964581,218,0 +170742964629,218,0 +170742964679,218,0 +170742964728,218,0 +170742964778,218,0 +170742964826,218,0 +170742964874,218,0 +170742964922,218,0 +170742964970,218,0 +170742965018,218,0 +170742965067,219,0 +170742965115,219,0 +170742965163,219,0 +170742965211,218,0 +170742965261,219,0 +170742965309,220,0 +170742965357,220,0 +170742965405,221,0 +170742965454,223,0 +170742965502,237,0 +170742965550,241,0 +170742965600,242,0 +170742965648,242,0 +170742965696,242,0 +170742965744,244,0 +170742965793,245,0 +170742965841,245,0 +170742965889,242,0 +170742965939,241,0 +170742965988,223,0 +170742966038,224,0 +170742966086,224,0 +170742966134,222,0 +170742966182,221,0 +170742966230,219,0 +170742966278,219,0 +170742966326,218,0 +170742966374,219,0 +170742966423,219,0 +170742966473,219,0 +170742966522,219,0 +170742966572,218,0 +170742966620,219,0 +170742966669,218,0 +170742966719,218,0 +170742966767,219,0 +170742966815,218,0 +170742966863,218,0 +170742966912,219,0 +170742966960,218,0 +170742967008,218,0 +170742967056,219,0 +170742967104,219,0 +170742967152,219,0 +170742967201,219,0 +170742967251,218,0 +170742967299,218,0 +170742967347,218,0 +170742967394,219,0 +170742967444,218,0 +170742967492,219,0 +170742967541,218,0 +170742967589,218,0 +170742967639,218,0 +170742967688,218,0 +170742967738,218,0 +170742967788,218,0 +170742967837,218,0 +170742967885,218,0 +170742967935,218,0 +170742967982,218,0 +170742968030,218,0 +170742968080,218,0 +170742968129,218,0 +170742968179,218,0 +170742968227,218,0 +170742968277,218,0 +170742968324,218,0 +170742968374,218,0 +170742968424,219,0 +170742968472,218,0 +170742968520,219,0 +170742968568,219,0 +170742968617,218,0 +170742968665,219,0 +170742968713,219,0 +170742968763,219,0 +170742968810,219,0 +170742968858,219,0 +170742968906,219,0 +170742968954,219,0 +170742969002,220,0 +170742969050,220,0 +170742969098,220,0 +170742969148,220,0 +170742969196,220,0 +170742969245,220,0 +170742969293,221,0 +170742969341,220,0 +170742969389,221,0 +170742969437,221,0 +170742969485,221,0 +170742969533,221,0 +170742969581,222,0 +170742969630,222,0 +170742969680,223,0 +170742969728,223,0 +170742969776,223,0 +170742969824,225,0 +170742969874,225,0 +170742969921,227,0 +170742969971,227,0 +170742970019,226,0 +170742970069,228,0 +170742970117,228,0 +170742970165,230,0 +170742970214,229,0 +170742970262,230,0 +170742970311,230,0 +170742970361,232,0 +170742970409,232,0 +170742970457,232,0 +170742970506,233,0 +170742970554,233,0 +170742970604,233,0 +170742970653,232,0 +170742970701,235,0 +170742970749,233,0 +170742970797,233,0 +170742970847,231,0 +170742970897,242,0 +170742970945,241,0 +170742970992,240,0 +170742971040,241,0 +170742971088,241,0 +170742971136,243,0 +170742971186,242,0 +170742971234,241,0 +170742971281,243,0 +170742971331,244,0 +170742971379,220,0 +170742971427,224,0 +170742971475,224,0 +170742971522,221,0 +170742971570,219,0 +170742971618,219,0 +170742971666,218,0 +170742971714,218,0 +170742971762,218,0 +170742971810,218,0 +170742971858,218,0 +170742971905,219,0 +170742971953,218,0 +170742972001,218,0 +170742972049,218,0 +170742972097,218,0 +170742972145,218,0 +170742972193,218,0 +170742972243,218,0 +170742972291,218,0 +170742972339,218,0 +170742972387,218,0 +170742972435,218,0 +170742972483,218,0 +170742972530,218,0 +170742972578,218,0 +170742972626,218,0 +170742972674,218,0 +170742972722,218,0 +170742972770,218,0 +170742972820,218,0 +170742972869,218,0 +170742972917,218,0 +170742972967,218,0 +170742973015,218,0 +170742973063,218,0 +170742973112,218,0 +170742973162,218,0 +170742973209,218,0 +170742973259,218,0 +170742973307,218,0 +170742973356,218,0 +170742973406,218,0 +170742973454,218,0 +170742973502,218,0 +170742973551,218,0 +170742973599,218,0 +170742973649,218,0 +170742973698,219,0 +170742973746,218,0 +170742973794,218,0 +170742973842,218,0 +170742973890,219,0 +170742973938,219,0 +170742973986,219,0 +170742974034,219,0 +170742974084,219,0 +170742974132,219,0 +170742974179,220,0 +170742974229,220,0 +170742974277,220,0 +170742974325,220,0 +170742974373,221,0 +170742974420,221,0 +170742974468,222,0 +170742974516,221,0 +170742974564,222,0 +170742974612,222,0 +170742974660,223,0 +170742974708,223,0 +170742974756,224,0 +170742974805,223,0 +170742974853,223,0 +170742974901,224,0 +170742974949,225,0 +170742974999,227,0 +170742975047,224,0 +170742975095,225,0 +170742975143,225,0 +170742975191,227,0 +170742975239,228,0 +170742975287,228,0 +170742975337,228,0 +170742975387,229,0 +170742975436,230,0 +170742975484,230,0 +170742975532,232,0 +170742975582,231,0 +170742975629,232,0 +170742975677,231,0 +170742975725,231,0 +170742975775,231,0 +170742975822,231,0 +170742975870,232,0 +170742975918,229,0 +170742975966,231,0 +170742976014,234,0 +170742976062,232,0 +170742976112,232,0 +170742976161,227,0 +170742976209,239,0 +170742976257,241,0 +170742976305,239,0 +170742976353,241,0 +170742976401,242,0 +170742976450,251,0 +170742976498,242,0 +170742976546,244,0 +170742976594,242,0 +170742976642,242,0 +170742976690,220,0 +170742976738,225,0 +170742976787,223,0 +170742976835,220,0 +170742976883,218,0 +170742976931,217,0 +170742976980,217,0 +170742977028,217,0 +170742977076,217,0 +170742977124,217,0 +170742977172,217,0 +170742977221,217,0 +170742977269,217,0 +170742977317,217,0 +170742977365,217,0 +170742977415,217,0 +170742977462,217,0 +170742977510,217,0 +170742977558,217,0 +170742977606,217,0 +170742977654,217,0 +170742977702,217,0 +170742977750,217,0 +170742977800,217,0 +170742977848,217,0 +170742977897,217,0 +170742977945,217,0 +170742977993,217,0 +170742978043,217,0 +170742978091,217,0 +170742978139,217,0 +170742978186,217,0 +170742978234,217,0 +170742978282,217,0 +170742978330,217,0 +170742978380,217,0 +170742978429,216,0 +170742978479,217,0 +170742978528,217,0 +170742978578,217,0 +170742978626,217,0 +170742978674,217,0 +170742978723,217,0 +170742978771,217,0 +170742978819,217,0 +170742978867,217,0 +170742978917,217,0 +170742978966,217,0 +170742979014,217,0 +170742979064,217,0 +170742979112,217,0 +170742979159,217,0 +170742979209,217,0 +170742979257,217,0 +170742979306,216,0 +170742979354,216,0 +170742979402,217,0 +170742979452,216,0 +170742979501,217,0 +170742979549,217,0 +170742979597,217,0 +170742979647,217,0 +170742979695,217,0 +170742979743,217,0 +170742979792,218,0 +170742979840,218,0 +170742979890,217,0 +170742979939,217,0 +170742979987,218,0 +170742980036,218,0 +170742980084,218,0 +170742980132,219,0 +170742980180,219,0 +170742980228,220,0 +170742980276,220,0 +170742980326,221,0 +170742980374,220,0 +170742980423,220,0 +170742980471,220,0 +170742980521,221,0 +170742980568,223,0 +170742980619,222,0 +170742980668,222,0 +170742980718,223,0 +170742980766,224,0 +170742980814,224,0 +170742980862,225,0 +170742980911,226,0 +170742980959,226,0 +170742981007,226,0 +170742981057,228,0 +170742981106,228,0 +170742981156,229,0 +170742981204,230,0 +170742981251,231,0 +170742981299,230,0 +170742981347,232,0 +170742981395,232,0 +170742981443,232,0 +170742981491,233,0 +170742981539,233,0 +170742981587,239,0 +170742981635,240,0 +170742981683,241,0 +170742981730,242,0 +170742981778,242,0 +170742981828,242,0 +170742981876,245,0 +170742981924,244,0 +170742981972,243,0 +170742982020,240,0 +170742982069,220,0 +170742982117,224,0 +170742982167,224,0 +170742982216,223,0 +170742982264,220,0 +170742982314,220,0 +170742982362,219,0 +170742982410,219,0 +170742982459,219,0 +170742982507,219,0 +170742982556,219,0 +170742982606,219,0 +170742982655,219,0 +170742982703,219,0 +170742982753,219,0 +170742982802,219,0 +170742982850,219,0 +170742982898,219,0 +170742982946,219,0 +170742982996,219,0 +170742983044,219,0 +170742983092,219,0 +170742983141,219,0 +170742983191,219,0 +170742983239,219,0 +170742983287,218,0 +170742983335,218,0 +170742983383,219,0 +170742983432,218,0 +170742983482,218,0 +170742983530,219,0 +170742983578,219,0 +170742983626,218,0 +170742983675,219,0 +170742983723,219,0 +170742983771,219,0 +170742983819,219,0 +170742983869,220,0 +170742983917,219,0 +170742983966,220,0 +170742984016,220,0 +170742984064,220,0 +170742984111,220,0 +170742984161,220,0 +170742984210,220,0 +170742984258,221,0 +170742984306,220,0 +170742984354,220,0 +170742984402,221,0 +170742984450,221,0 +170742984498,221,0 +170742984546,222,0 +170742984594,222,0 +170742984642,222,0 +170742984691,222,0 +170742984739,222,0 +170742984787,221,0 +170742984837,221,0 +170742984886,222,0 +170742984934,222,0 +170742984984,222,0 +170742985032,222,0 +170742985080,222,0 +170742985128,222,0 +170742985177,222,0 +170742985227,222,0 +170742985275,222,0 +170742985324,224,0 +170742985372,224,0 +170742985422,225,0 +170742985471,225,0 +170742985521,226,0 +170742985569,225,0 +170742985618,225,0 +170742985666,226,0 +170742985716,228,0 +170742985765,227,0 +170742985813,229,0 +170742985863,229,0 +170742985911,229,0 +170742985959,230,0 +170742986007,231,0 +170742986056,232,0 +170742986104,232,0 +170742986152,233,0 +170742986200,233,0 +170742986250,233,0 +170742986298,234,0 +170742986346,234,0 +170742986394,235,0 +170742986442,236,0 +170742986491,235,0 +170742986539,235,0 +170742986587,237,0 +170742986637,237,0 +170742986685,237,0 +170742986733,237,0 +170742986782,237,0 +170742986830,238,0 +170742986878,237,0 +170742986926,243,0 +170742986976,242,0 +170742987025,243,0 +170742987075,243,0 +170742987124,241,0 +170742987172,245,0 +170742987220,245,0 +170742987269,244,0 +170742987319,244,0 +170742987367,243,0 +170742987415,229,0 +170742987464,220,0 +170742987512,224,0 +170742987560,223,0 +170742987608,222,0 +170742987656,220,0 +170742987706,219,0 +170742987754,219,0 +170742987802,219,0 +170742987850,219,0 +170742987898,219,0 +170742987947,218,0 +170742987995,219,0 +170742988043,218,0 +170742988093,218,0 +170742988142,218,0 +170742988190,219,0 +170742988240,218,0 +170742988289,219,0 +170742988337,218,0 +170742988385,218,0 +170742988435,218,0 +170742988483,218,0 +170742988532,219,0 +170742988580,218,0 +170742988628,218,0 +170742988678,218,0 +170742988726,218,0 +170742988774,219,0 +170742988822,218,0 +170742988870,218,0 +170742988919,219,0 +170742988967,219,0 +170742989015,218,0 +170742989063,219,0 +170742989111,219,0 +170742989161,219,0 +170742989210,218,0 +170742989258,218,0 +170742989306,219,0 +170742989354,219,0 +170742989403,219,0 +170742989451,219,0 +170742989499,219,0 +170742989547,219,0 +170742989595,219,0 +170742989643,219,0 +170742989691,219,0 +170742989741,220,0 +170742989789,220,0 +170742989837,220,0 +170742989885,220,0 +170742989933,221,0 +170742989981,221,0 +170742990030,220,0 +170742990080,220,0 +170742990129,219,0 +170742990177,220,0 +170742990227,220,0 +170742990275,223,0 +170742990324,222,0 +170742990372,222,0 +170742990422,222,0 +170742990470,222,0 +170742990518,223,0 +170742990567,224,0 +170742990617,224,0 +170742990667,224,0 +170742990715,225,0 +170742990763,227,0 +170742990811,228,0 +170742990860,228,0 +170742990910,229,0 +170742990959,229,0 +170742991009,229,0 +170742991057,230,0 +170742991105,231,0 +170742991153,233,0 +170742991201,232,0 +170742991249,233,0 +170742991297,233,0 +170742991346,233,0 +170742991394,234,0 +170742991442,234,0 +170742991490,235,0 +170742991538,236,0 +170742991586,235,0 +170742991634,236,0 +170742991682,236,0 +170742991730,236,0 +170742991778,236,0 +170742991826,237,0 +170742991874,237,0 +170742991922,237,0 +170742991970,236,0 +170742992018,236,0 +170742992066,237,0 +170742992114,238,0 +170742992163,238,0 +170742992213,237,0 +170742992262,239,0 +170742992310,238,0 +170742992358,243,0 +170742992406,242,0 +170742992454,240,0 +170742992504,243,0 +170742992553,247,0 +170742992601,245,0 +170742992651,246,0 +170742992699,243,0 +170742992748,235,0 +170742992796,220,0 +170742992844,224,0 +170742992892,224,0 +170742992940,222,0 +170742992988,220,0 +170742993036,219,0 +170742993084,219,0 +170742993133,219,0 +170742993181,219,0 +170742993229,219,0 +170742993277,219,0 +170742993325,218,0 +170742993373,219,0 +170742993423,219,0 +170742993472,219,0 +170742993522,219,0 +170742993570,219,0 +170742993618,218,0 +170742993667,218,0 +170742993715,218,0 +170742993765,218,0 +170742993813,218,0 +170742993860,218,0 +170742993908,218,0 +170742993956,218,0 +170742994004,219,0 +170742994052,219,0 +170742994102,219,0 +170742994151,219,0 +170742994199,219,0 +170742994247,218,0 +170742994297,219,0 +170742994345,218,0 +170742994393,219,0 +170742994441,219,0 +170742994489,219,0 +170742994538,220,0 +170742994588,219,0 +170742994636,220,0 +170742994684,219,0 +170742994733,220,0 +170742994781,220,0 +170742994831,220,0 +170742994879,220,0 +170742994928,221,0 +170742994978,220,0 +170742995026,221,0 +170742995074,220,0 +170742995123,221,0 +170742995173,221,0 +170742995221,221,0 +170742995270,221,0 +170742995318,221,0 +170742995368,221,0 +170742995417,221,0 +170742995465,222,0 +170742995513,221,0 +170742995561,221,0 +170742995609,221,0 +170742995657,222,0 +170742995705,221,0 +170742995753,223,0 +170742995801,222,0 +170742995849,224,0 +170742995899,224,0 +170742995947,224,0 +170742995995,224,0 +170742996044,226,0 +170742996094,227,0 +170742996142,227,0 +170742996191,227,0 +170742996239,227,0 +170742996289,228,0 +170742996336,228,0 +170742996384,229,0 +170742996432,230,0 +170742996480,232,0 +170742996528,232,0 +170742996576,233,0 +170742996624,233,0 +170742996674,234,0 +170742996723,232,0 +170742996771,233,0 +170742996819,234,0 +170742996867,233,0 +170742996917,235,0 +170742996965,235,0 +170742997013,233,0 +170742997061,236,0 +170742997109,234,0 +170742997157,235,0 +170742997205,234,0 +170742997254,236,0 +170742997302,236,0 +170742997350,235,0 +170742997398,236,0 +170742997448,237,0 +170742997496,237,0 +170742997544,239,0 +170742997592,236,0 +170742997640,242,0 +170742997687,241,0 +170742997737,240,0 +170742997785,245,0 +170742997833,243,0 +170742997881,245,0 +170742997930,244,0 +170742997980,243,0 +170742998029,244,0 +170742998079,244,0 +170742998128,220,0 +170742998176,224,0 +170742998224,224,0 +170742998274,222,0 +170742998322,220,0 +170742998371,219,0 +170742998419,219,0 +170742998469,219,0 +170742998517,218,0 +170742998566,218,0 +170742998616,219,0 +170742998665,219,0 +170742998713,219,0 +170742998761,219,0 +170742998809,219,0 +170742998857,218,0 +170742998905,218,0 +170742998953,218,0 +170742999001,218,0 +170742999051,218,0 +170742999099,218,0 +170742999147,219,0 +170742999196,218,0 +170742999244,218,0 +170742999294,218,0 +170742999342,218,0 +170742999391,218,0 +170742999439,218,0 +170742999487,218,0 +170742999536,218,0 +170742999584,218,0 +170742999632,218,0 +170742999680,218,0 +170742999730,218,0 +170742999778,218,0 +170742999826,218,0 +170742999875,218,0 +170742999923,218,0 +170742999973,218,0 +170743000021,218,0 +170743000069,218,0 +170743000117,218,0 +170743000165,218,0 +170743000213,218,0 +170743000260,218,0 +170743000308,218,0 +170743000356,219,0 +170743000404,218,0 +170743000454,218,0 +170743000502,218,0 +170743000550,218,0 +170743000598,218,0 +170743000647,218,0 +170743000695,219,0 +170743000743,218,0 +170743000793,219,0 +170743000841,219,0 +170743000889,219,0 +170743000937,219,0 +170743000985,219,0 +170743001033,219,0 +170743001081,219,0 +170743001129,220,0 +170743001177,219,0 +170743001225,220,0 +170743001274,220,0 +170743001322,220,0 +170743001372,220,0 +170743001420,220,0 +170743001469,221,0 +170743001517,221,0 +170743001566,221,0 +170743001614,222,0 +170743001662,222,0 +170743001710,223,0 +170743001758,224,0 +170743001808,224,0 +170743001856,225,0 +170743001905,226,0 +170743001953,227,0 +170743002001,227,0 +170743002051,227,0 +170743002100,229,0 +170743002148,229,0 +170743002196,228,0 +170743002244,229,0 +170743002292,229,0 +170743002341,229,0 +170743002391,231,0 +170743002439,232,0 +170743002487,232,0 +170743002536,232,0 +170743002586,232,0 +170743002635,233,0 +170743002685,234,0 +170743002734,233,0 +170743002782,234,0 +170743002830,234,0 +170743002878,235,0 +170743002928,236,0 +170743002977,236,0 +170743003025,230,0 +170743003073,242,0 +170743003121,242,0 +170743003171,242,0 +170743003219,244,0 +170743003267,245,0 +170743003315,244,0 +170743003363,245,0 +170743003412,244,0 +170743003462,246,0 +170743003511,225,0 +170743003561,222,0 +170743003609,225,0 +170743003658,224,0 +170743003708,221,0 +170743003756,220,0 +170743003804,219,0 +170743003853,219,0 +170743003903,219,0 +170743003951,219,0 +170743004000,219,0 +170743004050,219,0 +170743004099,219,0 +170743004147,218,0 +170743004195,219,0 +170743004243,219,0 +170743004291,219,0 +170743004340,219,0 +170743004388,219,0 +170743004438,219,0 +170743004486,219,0 +170743004535,219,0 +170743004583,219,0 +170743004631,219,0 +170743004679,219,0 +170743004727,219,0 +170743004775,219,0 +170743004823,219,0 +170743004871,219,0 +170743004921,218,0 +170743004970,219,0 +170743005018,219,0 +170743005068,219,0 +170743005116,219,0 +170743005165,218,0 +170743005215,218,0 +170743005264,219,0 +170743005314,219,0 +170743005362,219,0 +170743005411,219,0 +170743005459,219,0 +170743005507,220,0 +170743005556,220,0 +170743005604,220,0 +170743005654,220,0 +170743005703,221,0 +170743005751,221,0 +170743005799,221,0 +170743005847,220,0 +170743005897,221,0 +170743005945,221,0 +170743005993,221,0 +170743006042,221,0 +170743006090,222,0 +170743006138,222,0 +170743006186,221,0 +170743006234,223,0 +170743006282,223,0 +170743006330,222,0 +170743006378,222,0 +170743006428,223,0 +170743006476,223,0 +170743006525,223,0 +170743006575,225,0 +170743006624,224,0 +170743006674,225,0 +170743006723,226,0 +170743006771,226,0 +170743006821,227,0 +170743006870,226,0 +170743006918,227,0 +170743006966,228,0 +170743007014,227,0 +170743007062,228,0 +170743007110,230,0 +170743007158,229,0 +170743007206,231,0 +170743007253,231,0 +170743007303,231,0 +170743007351,232,0 +170743007399,232,0 +170743007448,234,0 +170743007498,233,0 +170743007546,234,0 +170743007594,234,0 +170743007642,236,0 +170743007691,237,0 +170743007739,236,0 +170743007789,237,0 +170743007838,235,0 +170743007886,236,0 +170743007936,237,0 +170743007984,236,0 +170743008033,236,0 +170743008083,237,0 +170743008131,236,0 +170743008179,234,0 +170743008227,234,0 +170743008275,236,0 +170743008323,238,0 +170743008371,236,0 +170743008420,242,0 +170743008470,239,0 +170743008518,245,0 +170743008566,242,0 +170743008615,244,0 +170743008665,245,0 +170743008713,243,0 +170743008761,244,0 +170743008809,243,0 +170743008857,231,0 +170743008905,222,0 +170743008954,224,0 +170743009002,223,0 +170743009050,221,0 +170743009100,219,0 +170743009148,219,0 +170743009197,218,0 +170743009246,218,0 +170743009294,219,0 +170743009342,218,0 +170743009390,219,0 +170743009440,218,0 +170743009488,218,0 +170743009537,218,0 +170743009585,218,0 +170743009635,218,0 +170743009683,218,0 +170743009732,218,0 +170743009782,218,0 +170743009831,218,0 +170743009881,218,0 +170743009929,218,0 +170743009978,218,0 +170743010026,218,0 +170743010074,218,0 +170743010124,218,0 +170743010173,218,0 +170743010221,218,0 +170743010269,218,0 +170743010317,218,0 +170743010367,218,0 +170743010415,218,0 +170743010464,218,0 +170743010512,218,0 +170743010560,218,0 +170743010608,218,0 +170743010656,218,0 +170743010704,218,0 +170743010754,218,0 +170743010801,218,0 +170743010849,218,0 +170743010899,219,0 +170743010947,218,0 +170743010995,219,0 +170743011044,219,0 +170743011094,219,0 +170743011142,219,0 +170743011190,219,0 +170743011239,219,0 +170743011289,220,0 +170743011337,220,0 +170743011386,219,0 +170743011434,220,0 +170743011482,219,0 +170743011532,219,0 +170743011580,220,0 +170743011628,220,0 +170743011675,219,0 +170743011725,221,0 +170743011773,221,0 +170743011821,221,0 +170743011870,221,0 +170743011918,221,0 +170743011968,221,0 +170743012017,221,0 +170743012065,221,0 +170743012113,222,0 +170743012163,222,0 +170743012212,224,0 +170743012260,224,0 +170743012308,226,0 +170743012358,225,0 +170743012406,226,0 +170743012455,225,0 +170743012503,227,0 +170743012551,227,0 +170743012599,227,0 +170743012649,229,0 +170743012697,229,0 +170743012746,229,0 +170743012794,231,0 +170743012843,231,0 +170743012893,231,0 +170743012941,231,0 +170743012991,232,0 +170743013040,233,0 +170743013088,236,0 +170743013136,235,0 +170743013184,235,0 +170743013232,234,0 +170743013281,235,0 +170743013329,237,0 +170743013377,237,0 +170743013427,237,0 +170743013475,236,0 +170743013523,237,0 +170743013572,237,0 +170743013620,236,0 +170743013668,237,0 +170743013718,236,0 +170743013767,243,0 +170743013817,243,0 +170743013865,243,0 +170743013914,245,0 +170743013964,247,0 +170743014012,245,0 +170743014060,245,0 +170743014109,243,0 +170743014157,246,0 +170743014205,237,0 +170743014254,220,0 +170743014302,224,0 +170743014350,223,0 +170743014398,221,0 +170743014448,219,0 +170743014497,218,0 +170743014545,218,0 +170743014593,218,0 +170743014641,218,0 +170743014689,218,0 +170743014739,218,0 +170743014787,218,0 +170743014835,218,0 +170743014883,218,0 +170743014931,218,0 +170743014980,218,0 +170743015030,218,0 +170743015078,218,0 +170743015126,218,0 +170743015175,218,0 +170743015223,218,0 +170743015273,218,0 +170743015321,218,0 +170743015370,218,0 +170743015420,218,0 +170743015469,218,0 +170743015519,218,0 +170743015567,218,0 +170743015616,218,0 +170743015666,218,0 +170743015715,218,0 +170743015764,218,0 +170743015812,218,0 +170743015862,218,0 +170743015911,218,0 +170743015959,218,0 +170743016007,218,0 +170743016055,218,0 +170743016105,218,0 +170743016153,218,0 +170743016201,218,0 +170743016250,218,0 +170743016298,218,0 +170743016346,219,0 +170743016394,219,0 +170743016442,219,0 +170743016490,219,0 +170743016538,219,0 +170743016586,219,0 +170743016636,219,0 +170743016685,219,0 +170743016733,220,0 +170743016783,220,0 +170743016831,220,0 +170743016880,220,0 +170743016928,220,0 +170743016978,221,0 +170743017027,221,0 +170743017075,221,0 +170743017123,220,0 +170743017171,221,0 +170743017219,220,0 +170743017267,222,0 +170743017315,221,0 +170743017365,222,0 +170743017413,222,0 +170743017461,222,0 +170743017510,222,0 +170743017558,223,0 +170743017606,223,0 +170743017656,225,0 +170743017704,224,0 +170743017753,225,0 +170743017801,224,0 +170743017851,227,0 +170743017900,227,0 +170743017948,228,0 +170743017996,228,0 +170743018044,229,0 +170743018092,228,0 +170743018140,230,0 +170743018190,231,0 +170743018238,230,0 +170743018285,231,0 +170743018335,232,0 +170743018383,232,0 +170743018431,233,0 +170743018480,233,0 +170743018530,235,0 +170743018579,234,0 +170743018627,235,0 +170743018677,236,0 +170743018725,236,0 +170743018774,238,0 +170743018822,237,0 +170743018870,237,0 +170743018918,239,0 +170743018968,237,0 +170743019016,237,0 +170743019064,237,0 +170743019113,243,0 +170743019161,244,0 +170743019209,241,0 +170743019259,245,0 +170743019307,244,0 +170743019355,246,0 +170743019404,246,0 +170743019452,245,0 +170743019500,244,0 +170743019548,241,0 +170743019597,221,0 +170743019647,226,0 +170743019697,225,0 +170743019746,223,0 +170743019794,221,0 +170743019844,220,0 +170743019891,220,0 +170743019941,219,0 +170743019989,220,0 +170743020038,220,0 +170743020086,220,0 +170743020136,220,0 +170743020184,220,0 +170743020232,219,0 +170743020280,220,0 +170743020328,219,0 +170743020376,219,0 +170743020424,219,0 +170743020472,220,0 +170743020521,219,0 +170743020569,219,0 +170743020617,219,0 +170743020665,219,0 +170743020715,220,0 +170743020763,220,0 +170743020812,219,0 +170743020862,219,0 +170743020911,220,0 +170743020961,220,0 +170743021010,220,0 +170743021058,220,0 +170743021106,219,0 +170743021154,220,0 +170743021204,219,0 +170743021252,219,0 +170743021300,220,0 +170743021347,220,0 +170743021395,220,0 +170743021443,219,0 +170743021491,220,0 +170743021539,219,0 +170743021587,220,0 +170743021635,220,0 +170743021684,220,0 +170743021734,221,0 +170743021782,219,0 +170743021832,220,0 +170743021880,221,0 +170743021927,221,0 +170743021977,221,0 +170743022025,222,0 +170743022075,222,0 +170743022122,222,0 +170743022171,222,0 +170743022218,221,0 +170743022268,223,0 +170743022318,223,0 +170743022366,223,0 +170743022413,223,0 +170743022461,223,0 +170743022509,222,0 +170743022557,223,0 +170743022605,223,0 +170743022655,224,0 +170743022703,223,0 +170743022752,225,0 +170743022800,225,0 +170743022848,226,0 +170743022898,228,0 +170743022946,228,0 +170743022995,228,0 +170743023043,229,0 +170743023091,230,0 +170743023141,231,0 +170743023189,231,0 +170743023237,230,0 +170743023285,232,0 +170743023333,232,0 +170743023381,233,0 +170743023430,231,0 +170743023478,235,0 +170743023526,235,0 +170743023574,235,0 +170743023624,235,0 +170743023672,235,0 +170743023720,235,0 +170743023769,235,0 +170743023819,236,0 +170743023867,236,0 +170743023914,236,0 +170743023962,236,0 +170743024010,236,0 +170743024058,237,0 +170743024108,238,0 +170743024156,238,0 +170743024205,237,0 +170743024255,238,0 +170743024303,238,0 +170743024351,238,0 +170743024400,239,0 +170743024450,237,0 +170743024498,241,0 +170743024547,242,0 +170743024595,242,0 +170743024645,244,0 +170743024694,245,0 +170743024742,246,0 +170743024792,245,0 +170743024840,245,0 +170743024887,246,0 +170743024935,244,0 +170743024983,224,0 +170743025031,223,0 +170743025079,223,0 +170743025127,221,0 +170743025176,219,0 +170743025224,218,0 +170743025272,218,0 +170743025320,217,0 +170743025368,218,0 +170743025416,218,0 +170743025464,217,0 +170743025512,218,0 +170743025559,217,0 +170743025609,217,0 +170743025657,217,0 +170743025705,217,0 +170743025753,218,0 +170743025800,218,0 +170743025848,217,0 +170743025896,218,0 +170743025944,218,0 +170743025992,217,0 +170743026040,218,0 +170743026088,217,0 +170743026136,217,0 +170743026184,218,0 +170743026233,217,0 +170743026281,218,0 +170743026329,218,0 +170743026377,218,0 +170743026426,218,0 +170743026474,218,0 +170743026522,218,0 +170743026570,218,0 +170743026618,217,0 +170743026665,218,0 +170743026715,217,0 +170743026763,217,0 +170743026812,218,0 +170743026860,217,0 +170743026908,217,0 +170743026957,217,0 +170743027005,217,0 +170743027055,217,0 +170743027103,218,0 +170743027151,218,0 +170743027199,217,0 +170743027246,218,0 +170743027294,218,0 +170743027342,217,0 +170743027390,218,0 +170743027439,217,0 +170743027487,217,0 +170743027535,217,0 +170743027583,217,0 +170743027631,217,0 +170743027679,217,0 +170743027727,217,0 +170743027776,217,0 +170743027824,218,0 +170743027872,218,0 +170743027920,217,0 +170743027968,218,0 +170743028016,218,0 +170743028064,218,0 +170743028111,218,0 +170743028159,218,0 +170743028207,219,0 +170743028257,219,0 +170743028306,220,0 +170743028354,220,0 +170743028402,220,0 +170743028450,220,0 +170743028498,220,0 +170743028547,220,0 +170743028595,220,0 +170743028643,221,0 +170743028691,221,0 +170743028740,220,0 +170743028788,222,0 +170743028836,222,0 +170743028884,223,0 +170743028932,223,0 +170743028979,224,0 +170743029027,224,0 +170743029075,226,0 +170743029125,225,0 +170743029173,226,0 +170743029220,226,0 +170743029268,227,0 +170743029316,228,0 +170743029364,230,0 +170743029412,231,0 +170743029460,231,0 +170743029509,232,0 +170743029557,231,0 +170743029605,233,0 +170743029653,233,0 +170743029701,233,0 +170743029749,232,0 +170743029797,239,0 +170743029845,241,0 +170743029893,241,0 +170743029940,243,0 +170743029988,244,0 +170743030036,246,0 +170743030084,243,0 +170743030134,243,0 +170743030181,245,0 +170743030231,244,0 +170743030280,235,0 +170743030330,220,0 +170743030378,225,0 +170743030426,224,0 +170743030473,222,0 +170743030521,221,0 +170743030569,220,0 +170743030617,219,0 +170743030665,219,0 +170743030713,219,0 +170743030761,219,0 +170743030809,219,0 +170743030857,219,0 +170743030904,219,0 +170743030952,219,0 +170743031000,219,0 +170743031048,219,0 +170743031096,219,0 +170743031144,219,0 +170743031194,219,0 +170743031242,219,0 +170743031290,219,0 +170743031338,219,0 +170743031387,219,0 +170743031437,219,0 +170743031485,219,0 +170743031533,219,0 +170743031581,219,0 +170743031630,219,0 +170743031678,219,0 +170743031728,219,0 +170743031777,219,0 +170743031825,218,0 +170743031875,219,0 +170743031923,219,0 +170743031972,219,0 +170743032022,219,0 +170743032071,219,0 +170743032121,219,0 +170743032169,219,0 +170743032217,219,0 +170743032266,219,0 +170743032316,219,0 +170743032364,219,0 +170743032412,219,0 +170743032460,219,0 +170743032509,219,0 +170743032559,219,0 +170743032606,219,0 +170743032656,219,0 +170743032706,219,0 +170743032754,219,0 +170743032801,219,0 +170743032851,219,0 +170743032899,219,0 +170743032947,219,0 +170743032995,219,0 +170743033043,219,0 +170743033092,219,0 +170743033140,219,0 +170743033190,219,0 +170743033239,219,0 +170743033289,220,0 +170743033337,219,0 +170743033386,220,0 +170743033436,220,0 +170743033485,220,0 +170743033535,221,0 +170743033583,221,0 +170743033631,221,0 +170743033679,222,0 +170743033728,222,0 +170743033778,222,0 +170743033827,222,0 +170743033875,222,0 +170743033923,222,0 +170743033971,222,0 +170743034021,221,0 +170743034069,223,0 +170743034117,225,0 +170743034164,226,0 +170743034212,226,0 +170743034260,226,0 +170743034308,227,0 +170743034356,226,0 +170743034404,227,0 +170743034452,228,0 +170743034500,228,0 +170743034548,228,0 +170743034596,229,0 +170743034644,229,0 +170743034692,231,0 +170743034741,230,0 +170743034789,232,0 +170743034837,232,0 +170743034885,233,0 +170743034933,233,0 +170743034980,234,0 +170743035028,235,0 +170743035078,236,0 +170743035126,236,0 +170743035174,234,0 +170743035222,240,0 +170743035269,242,0 +170743035317,240,0 +170743035367,243,0 +170743035415,242,0 +170743035463,243,0 +170743035513,241,0 +170743035560,241,0 +170743035608,241,0 +170743035656,234,0 +170743035704,219,0 +170743035754,223,0 +170743035802,222,0 +170743035850,220,0 +170743035899,219,0 +170743035949,218,0 +170743035997,219,0 +170743036045,218,0 +170743036094,218,0 +170743036142,218,0 +170743036192,218,0 +170743036241,218,0 +170743036289,218,0 +170743036339,218,0 +170743036388,218,0 +170743036436,218,0 +170743036484,218,0 +170743036532,218,0 +170743036580,218,0 +170743036628,218,0 +170743036677,218,0 +170743036725,218,0 +170743036773,218,0 +170743036821,218,0 +170743036869,218,0 +170743036917,218,0 +170743036965,218,0 +170743037013,218,0 +170743037061,218,0 +170743037108,218,0 +170743037156,218,0 +170743037204,218,0 +170743037252,218,0 +170743037300,218,0 +170743037348,218,0 +170743037396,218,0 +170743037445,218,0 +170743037493,218,0 +170743037541,218,0 +170743037589,218,0 +170743037637,218,0 +170743037685,218,0 +170743037733,218,0 +170743037780,218,0 +170743037828,218,0 +170743037876,218,0 +170743037924,218,0 +170743037974,218,0 +170743038022,219,0 +170743038071,219,0 +170743038119,219,0 +170743038167,219,0 +170743038217,219,0 +170743038265,219,0 +170743038313,220,0 +170743038360,219,0 +170743038408,220,0 +170743038456,220,0 +170743038504,221,0 +170743038552,220,0 +170743038602,221,0 +170743038651,221,0 +170743038699,221,0 +170743038747,221,0 +170743038795,221,0 +170743038843,222,0 +170743038891,222,0 +170743038939,222,0 +170743038989,221,0 +170743039037,222,0 +170743039085,223,0 +170743039133,223,0 +170743039181,223,0 +170743039230,224,0 +170743039280,225,0 +170743039328,226,0 +170743039377,227,0 +170743039425,227,0 +170743039473,227,0 +170743039523,228,0 +170743039571,229,0 +170743039619,229,0 +170743039667,230,0 +170743039716,231,0 +170743039766,232,0 +170743039813,231,0 +170743039863,231,0 +170743039911,231,0 +170743039959,233,0 +170743040009,233,0 +170743040058,232,0 +170743040108,233,0 +170743040156,235,0 +170743040205,234,0 +170743040255,234,0 +170743040304,236,0 +170743040354,233,0 +170743040403,235,0 +170743040451,234,0 +170743040499,235,0 +170743040547,234,0 +170743040595,241,0 +170743040643,243,0 +170743040692,241,0 +170743040740,241,0 +170743040790,245,0 +170743040838,243,0 +170743040886,243,0 +170743040935,243,0 +170743040983,242,0 +170743041031,239,0 +170743041081,220,0 +170743041129,224,0 +170743041177,224,0 +170743041225,222,0 +170743041273,220,0 +170743041321,219,0 +170743041369,219,0 +170743041417,219,0 +170743041465,219,0 +170743041513,219,0 +170743041562,218,0 +170743041610,219,0 +170743041660,219,0 +170743041708,218,0 +170743041757,219,0 +170743041805,218,0 +170743041853,218,0 +170743041901,219,0 +170743041949,219,0 +170743041999,219,0 +170743042047,218,0 +170743042094,219,0 +170743042142,218,0 +170743042190,219,0 +170743042240,219,0 +170743042289,219,0 +170743042339,219,0 +170743042387,219,0 +170743042436,219,0 +170743042484,219,0 +170743042534,219,0 +170743042582,219,0 +170743042631,219,0 +170743042681,219,0 +170743042729,218,0 +170743042777,219,0 +170743042826,218,0 +170743042874,218,0 +170743042922,219,0 +170743042970,218,0 +170743043018,219,0 +170743043066,218,0 +170743043114,219,0 +170743043162,219,0 +170743043210,219,0 +170743043258,219,0 +170743043306,219,0 +170743043354,220,0 +170743043402,220,0 +170743043450,219,0 +170743043497,220,0 +170743043545,220,0 +170743043593,220,0 +170743043641,221,0 +170743043689,220,0 +170743043737,221,0 +170743043785,221,0 +170743043833,221,0 +170743043880,221,0 +170743043928,221,0 +170743043976,222,0 +170743044026,222,0 +170743044074,222,0 +170743044121,222,0 +170743044169,223,0 +170743044217,223,0 +170743044265,223,0 +170743044313,223,0 +170743044361,224,0 +170743044409,225,0 +170743044459,224,0 +170743044506,225,0 +170743044554,226,0 +170743044604,227,0 +170743044652,228,0 +170743044700,228,0 +170743044748,228,0 +170743044797,229,0 +170743044847,229,0 +170743044896,229,0 +170743044944,230,0 +170743044994,230,0 +170743045043,231,0 +170743045091,232,0 +170743045139,231,0 +170743045189,231,0 +170743045238,233,0 +170743045286,232,0 +170743045336,233,0 +170743045385,234,0 +170743045433,234,0 +170743045481,235,0 +170743045529,234,0 +170743045577,235,0 +170743045625,235,0 +170743045673,235,0 +170743045721,235,0 +170743045769,236,0 +170743045818,235,0 +170743045866,236,0 +170743045914,233,0 +170743045962,244,0 +170743046010,241,0 +170743046058,243,0 +170743046106,243,0 +170743046156,237,0 +170743046205,246,0 +170743046253,245,0 +170743046301,244,0 +170743046349,245,0 +170743046397,229,0 +170743046447,224,0 +170743046495,225,0 +170743046543,223,0 +170743046591,221,0 +170743046639,220,0 +170743046687,219,0 +170743046736,219,0 +170743046784,219,0 +170743046832,219,0 +170743046882,219,0 +170743046929,218,0 +170743046977,218,0 +170743047025,218,0 +170743047073,218,0 +170743047121,219,0 +170743047169,218,0 +170743047217,218,0 +170743047267,218,0 +170743047316,219,0 +170743047366,218,0 +170743047415,219,0 +170743047465,218,0 +170743047513,218,0 +170743047561,219,0 +170743047609,219,0 +170743047657,219,0 +170743047705,218,0 +170743047753,218,0 +170743047802,219,0 +170743047850,219,0 +170743047900,218,0 +170743047949,219,0 +170743047997,219,0 +170743048045,220,0 +170743048094,219,0 +170743048144,219,0 +170743048192,219,0 +170743048242,220,0 +170743048291,220,0 +170743048339,221,0 +170743048389,221,0 +170743048437,220,0 +170743048484,220,0 +170743048532,221,0 +170743048580,221,0 +170743048628,222,0 +170743048678,222,0 +170743048726,221,0 +170743048774,221,0 +170743048823,222,0 +170743048871,222,0 +170743048921,222,0 +170743048969,222,0 +170743049017,221,0 +170743049065,223,0 +170743049113,222,0 +170743049162,222,0 +170743049212,222,0 +170743049260,223,0 +170743049308,224,0 +170743049356,223,0 +170743049404,224,0 +170743049452,224,0 +170743049501,225,0 +170743049549,226,0 +170743049599,226,0 +170743049647,227,0 +170743049696,230,0 +170743049744,229,0 +170743049792,229,0 +170743049840,231,0 +170743049888,232,0 +170743049936,230,0 +170743049984,231,0 +170743050033,232,0 +170743050081,231,0 +170743050129,232,0 +170743050177,233,0 +170743050227,232,0 +170743050275,233,0 +170743050324,233,0 +170743050372,234,0 +170743050420,235,0 +170743050468,236,0 +170743050516,237,0 +170743050564,238,0 +170743050612,236,0 +170743050660,237,0 +170743050708,237,0 +170743050757,236,0 +170743050805,238,0 +170743050855,237,0 +170743050903,239,0 +170743050951,238,0 +170743050999,239,0 +170743051048,238,0 +170743051096,238,0 +170743051144,238,0 +170743051192,240,0 +170743051240,236,0 +170743051290,244,0 +170743051338,246,0 +170743051388,244,0 +170743051436,245,0 +170743051484,245,0 +170743051533,246,0 +170743051581,247,0 +170743051629,245,0 +170743051678,242,0 +170743051726,242,0 +170743051774,220,0 +170743051824,224,0 +170743051872,223,0 +170743051921,221,0 +170743051969,219,0 +170743052017,219,0 +170743052065,219,0 +170743052113,218,0 +170743052161,218,0 +170743052209,218,0 +170743052257,218,0 +170743052305,218,0 +170743052352,218,0 +170743052400,218,0 +170743052448,218,0 +170743052496,218,0 +170743052544,218,0 +170743052592,218,0 +170743052640,218,0 +170743052688,218,0 +170743052737,218,0 +170743052785,218,0 +170743052833,219,0 +170743052881,218,0 +170743052929,218,0 +170743052977,219,0 +170743053025,219,0 +170743053072,219,0 +170743053122,219,0 +170743053171,219,0 +170743053221,219,0 +170743053269,220,0 +170743053317,219,0 +170743053365,220,0 +170743053412,220,0 +170743053460,219,0 +170743053508,220,0 +170743053556,220,0 +170743053604,220,0 +170743053652,221,0 +170743053700,221,0 +170743053748,221,0 +170743053796,221,0 +170743053844,222,0 +170743053891,220,0 +170743053939,221,0 +170743053989,221,0 +170743054037,222,0 +170743054085,223,0 +170743054133,222,0 +170743054181,224,0 +170743054230,221,0 +170743054280,223,0 +170743054328,223,0 +170743054376,222,0 +170743054424,223,0 +170743054473,223,0 +170743054521,223,0 +170743054569,224,0 +170743054619,223,0 +170743054667,223,0 +170743054716,224,0 +170743054764,224,0 +170743054812,225,0 +170743054860,226,0 +170743054908,227,0 +170743054956,228,0 +170743055004,229,0 +170743055053,229,0 +170743055101,230,0 +170743055149,233,0 +170743055197,230,0 +170743055246,230,0 +170743055294,230,0 +170743055342,230,0 +170743055390,233,0 +170743055438,232,0 +170743055486,234,0 +170743055534,233,0 +170743055582,232,0 +170743055630,232,0 +170743055678,233,0 +170743055725,234,0 +170743055773,234,0 +170743055821,235,0 +170743055869,236,0 +170743055917,236,0 +170743055965,236,0 +170743056013,237,0 +170743056061,238,0 +170743056109,237,0 +170743056157,238,0 +170743056204,238,0 +170743056252,237,0 +170743056300,237,0 +170743056348,237,0 +170743056396,237,0 +170743056444,236,0 +170743056492,236,0 +170743056542,237,0 +170743056589,238,0 +170743056637,233,0 +170743056685,241,0 +170743056735,243,0 +170743056783,243,0 +170743056831,245,0 +170743056879,245,0 +170743056929,246,0 +170743056977,246,0 +170743057026,247,0 +170743057074,245,0 +170743057122,222,0 +170743057171,223,0 +170743057219,224,0 +170743057267,222,0 +170743057315,220,0 +170743057363,219,0 +170743057411,218,0 +170743057461,218,0 +170743057509,218,0 +170743057557,218,0 +170743057605,217,0 +170743057653,217,0 +170743057702,217,0 +170743057752,217,0 +170743057800,217,0 +170743057848,217,0 +170743057896,218,0 +170743057944,218,0 +170743057993,218,0 +170743058041,218,0 +170743058089,218,0 +170743058138,218,0 +170743058188,218,0 +170743058238,218,0 +170743058286,217,0 +170743058335,217,0 +170743058383,218,0 +170743058433,218,0 +170743058481,218,0 +170743058529,219,0 +170743058577,219,0 +170743058624,218,0 +170743058672,219,0 +170743058720,219,0 +170743058770,219,0 +170743058818,219,0 +170743058867,219,0 +170743058917,219,0 +170743058965,219,0 +170743059013,219,0 +170743059061,220,0 +170743059109,220,0 +170743059157,220,0 +170743059205,220,0 +170743059253,220,0 +170743059301,220,0 +170743059349,221,0 +170743059398,221,0 +170743059446,221,0 +170743059496,221,0 +170743059545,220,0 +170743059593,221,0 +170743059641,221,0 +170743059691,221,0 +170743059739,221,0 +170743059786,221,0 +170743059836,222,0 +170743059884,222,0 +170743059934,221,0 +170743059982,222,0 +170743060030,222,0 +170743060079,222,0 +170743060127,222,0 +170743060175,223,0 +170743060224,225,0 +170743060274,224,0 +170743060322,224,0 +170743060370,226,0 +170743060418,228,0 +170743060466,227,0 +170743060514,227,0 +170743060564,228,0 +170743060612,229,0 +170743060660,230,0 +170743060708,231,0 +170743060755,231,0 +170743060803,230,0 +170743060851,231,0 +170743060899,233,0 +170743060947,233,0 +170743060995,233,0 +170743061043,234,0 +170743061091,234,0 +170743061139,234,0 +170743061189,236,0 +170743061237,236,0 +170743061285,235,0 +170743061334,238,0 +170743061382,237,0 +170743061430,237,0 +170743061480,237,0 +170743061528,237,0 +170743061576,238,0 +170743061624,237,0 +170743061672,238,0 +170743061720,237,0 +170743061768,239,0 +170743061817,239,0 +170743061865,239,0 +170743061913,240,0 +170743061963,240,0 +170743062011,242,0 +170743062060,243,0 +170743062108,243,0 +170743062156,243,0 +170743062204,241,0 +170743062252,245,0 +170743062302,245,0 +170743062351,245,0 +170743062399,244,0 +170743062449,243,0 +170743062497,227,0 +170743062545,224,0 +170743062594,225,0 +170743062644,223,0 +170743062692,221,0 +170743062741,220,0 +170743062789,219,0 +170743062837,219,0 +170743062887,219,0 +170743062936,219,0 +170743062984,219,0 +170743063032,218,0 +170743063081,219,0 +170743063129,219,0 +170743063177,219,0 +170743063225,220,0 +170743063275,220,0 +170743063323,219,0 +170743063372,220,0 +170743063420,220,0 +170743063468,220,0 +170743063516,221,0 +170743063564,221,0 +170743063614,220,0 +170743063662,222,0 +170743063710,221,0 +170743063759,221,0 +170743063807,222,0 +170743063855,221,0 +170743063905,221,0 +170743063953,222,0 +170743064002,222,0 +170743064050,223,0 +170743064098,222,0 +170743064148,222,0 +170743064196,223,0 +170743064244,222,0 +170743064292,223,0 +170743064341,223,0 +170743064389,223,0 +170743064437,223,0 +170743064487,223,0 +170743064535,223,0 +170743064584,223,0 +170743064632,223,0 +170743064681,224,0 +170743064729,224,0 +170743064778,223,0 +170743064826,225,0 +170743064873,224,0 +170743064923,224,0 +170743064971,224,0 +170743065020,224,0 +170743065068,224,0 +170743065118,225,0 +170743065166,225,0 +170743065214,224,0 +170743065262,224,0 +170743065310,224,0 +170743065359,225,0 +170743065407,226,0 +170743065455,225,0 +170743065503,226,0 +170743065551,227,0 +170743065600,227,0 +170743065648,229,0 +170743065698,229,0 +170743065746,228,0 +170743065794,230,0 +170743065843,232,0 +170743065891,231,0 +170743065939,232,0 +170743065987,232,0 +170743066037,231,0 +170743066085,232,0 +170743066134,233,0 +170743066182,233,0 +170743066232,233,0 +170743066280,236,0 +170743066328,234,0 +170743066377,234,0 +170743066427,233,0 +170743066476,236,0 +170743066524,236,0 +170743066572,236,0 +170743066622,236,0 +170743066670,237,0 +170743066719,237,0 +170743066767,237,0 +170743066815,237,0 +170743066863,238,0 +170743066911,238,0 +170743066959,237,0 +170743067008,238,0 +170743067058,239,0 +170743067107,236,0 +170743067157,223,0 +170743067205,239,0 +170743067253,239,0 +170743067301,233,0 +170743067349,242,0 +170743067398,243,0 +170743067446,242,0 +170743067494,244,0 +170743067544,245,0 +170743067592,246,0 +170743067639,244,0 +170743067687,245,0 +170743067737,244,0 +170743067785,245,0 +170743067833,223,0 +170743067882,224,0 +170743067932,225,0 +170743067980,223,0 +170743068029,221,0 +170743068077,220,0 +170743068125,220,0 +170743068173,220,0 +170743068221,219,0 +170743068269,219,0 +170743068317,220,0 +170743068365,220,0 +170743068413,219,0 +170743068461,217,0 +170743068509,217,0 +170743068558,216,0 +170743068606,219,0 +170743068654,219,0 +170743068704,219,0 +170743068753,219,0 +170743068801,219,0 +170743068849,219,0 +170743068897,219,0 +170743068945,219,0 +170743068993,219,0 +170743069043,219,0 +170743069091,219,0 +170743069140,220,0 +170743069188,220,0 +170743069236,219,0 +170743069284,220,0 +170743069332,220,0 +170743069380,220,0 +170743069428,219,0 +170743069476,220,0 +170743069524,219,0 +170743069572,219,0 +170743069621,219,0 +170743069669,219,0 +170743069717,219,0 +170743069767,219,0 +170743069815,219,0 +170743069863,220,0 +170743069912,220,0 +170743069960,220,0 +170743070010,220,0 +170743070058,220,0 +170743070107,220,0 +170743070157,220,0 +170743070205,220,0 +170743070253,220,0 +170743070301,220,0 +170743070349,220,0 +170743070397,220,0 +170743070445,220,0 +170743070493,221,0 +170743070542,221,0 +170743070590,221,0 +170743070640,221,0 +170743070689,222,0 +170743070737,222,0 +170743070785,222,0 +170743070833,222,0 +170743070882,222,0 +170743070930,222,0 +170743070978,222,0 +170743071028,222,0 +170743071076,223,0 +170743071125,224,0 +170743071175,224,0 +170743071224,225,0 +170743071272,226,0 +170743071320,227,0 +170743071368,226,0 +170743071418,227,0 +170743071466,228,0 +170743071514,228,0 +170743071562,229,0 +170743071610,230,0 +170743071658,231,0 +170743071706,230,0 +170743071755,231,0 +170743071803,231,0 +170743071851,232,0 +170743071901,232,0 +170743071950,232,0 +170743071998,233,0 +170743072048,232,0 +170743072096,232,0 +170743072145,233,0 +170743072195,234,0 +170743072244,234,0 +170743072294,235,0 +170743072342,232,0 +170743072391,234,0 +170743072439,235,0 +170743072487,236,0 +170743072537,236,0 +170743072585,237,0 +170743072632,237,0 +170743072680,242,0 +170743072728,242,0 +170743072778,243,0 +170743072827,242,0 +170743072875,246,0 +170743072923,244,0 +170743072973,244,0 +170743073021,245,0 +170743073069,245,0 +170743073117,244,0 +170743073165,221,0 +170743073214,225,0 +170743073264,224,0 +170743073313,222,0 +170743073361,220,0 +170743073409,220,0 +170743073457,219,0 +170743073505,219,0 +170743073553,218,0 +170743073601,219,0 +170743073651,218,0 +170743073700,219,0 +170743073748,219,0 +170743073798,219,0 +170743073848,218,0 +170743073896,218,0 +170743073945,218,0 +170743073995,218,0 +170743074043,218,0 +170743074091,218,0 +170743074139,218,0 +170743074188,218,0 +170743074236,218,0 +170743074284,218,0 +170743074332,218,0 +170743074382,218,0 +170743074430,218,0 +170743074478,218,0 +170743074525,218,0 +170743074575,219,0 +170743074623,218,0 +170743074671,218,0 +170743074720,218,0 +170743074770,218,0 +170743074819,218,0 +170743074867,218,0 +170743074915,219,0 +170743074965,218,0 +170743075014,218,0 +170743075062,218,0 +170743075110,218,0 +170743075158,218,0 +170743075206,218,0 +170743075254,219,0 +170743075304,219,0 +170743075353,219,0 +170743075401,219,0 +170743075449,219,0 +170743075499,218,0 +170743075547,219,0 +170743075596,219,0 +170743075644,218,0 +170743075692,219,0 +170743075740,219,0 +170743075788,219,0 +170743075838,219,0 +170743075886,219,0 +170743075934,219,0 +170743075982,219,0 +170743076030,221,0 +170743076079,220,0 +170743076129,221,0 +170743076177,221,0 +170743076226,221,0 +170743076274,221,0 +170743076324,221,0 +170743076372,221,0 +170743076421,221,0 +170743076469,221,0 +170743076517,222,0 +170743076565,222,0 +170743076613,223,0 +170743076662,223,0 +170743076710,223,0 +170743076758,224,0 +170743076806,225,0 +170743076856,225,0 +170743076904,226,0 +170743076952,226,0 +170743077000,227,0 +170743077049,228,0 +170743077097,228,0 +170743077145,228,0 +170743077193,229,0 +170743077241,229,0 +170743077291,230,0 +170743077339,229,0 +170743077388,230,0 +170743077436,231,0 +170743077484,232,0 +170743077532,232,0 +170743077580,232,0 +170743077628,232,0 +170743077676,233,0 +170743077724,234,0 +170743077772,234,0 +170743077820,234,0 +170743077868,234,0 +170743077916,234,0 +170743077964,234,0 +170743078011,237,0 +170743078059,233,0 +170743078107,242,0 +170743078155,240,0 +170743078205,242,0 +170743078254,243,0 +170743078302,245,0 +170743078350,246,0 +170743078398,245,0 +170743078446,245,0 +170743078494,245,0 +170743078543,244,0 +170743078592,225,0 +170743078641,222,0 +170743078689,222,0 +170743078737,220,0 +170743078785,219,0 +170743078834,217,0 +170743078882,217,0 +170743078932,216,0 +170743078980,216,0 +170743079029,216,0 +170743079079,216,0 +170743079127,216,0 +170743079175,216,0 +170743079223,216,0 +170743079271,216,0 +170743079320,217,0 +170743079368,216,0 +170743079418,216,0 +170743079466,216,0 +170743079514,216,0 +170743079563,216,0 +170743079611,216,0 +170743079661,216,0 +170743079710,216,0 +170743079760,216,0 +170743079808,216,0 +170743079857,216,0 +170743079907,217,0 +170743079955,216,0 +170743080003,216,0 +170743080051,216,0 +170743080099,216,0 +170743080148,216,0 +170743080196,216,0 +170743080244,216,0 +170743080292,217,0 +170743080340,217,0 +170743080388,217,0 +170743080437,217,0 +170743080487,217,0 +170743080535,218,0 +170743080584,218,0 +170743080632,218,0 +170743080682,218,0 +170743080730,219,0 +170743080778,219,0 +170743080826,219,0 +170743080874,219,0 +170743080922,220,0 +170743080970,220,0 +170743081018,220,0 +170743081066,221,0 +170743081114,221,0 +170743081162,221,0 +170743081210,221,0 +170743081258,221,0 +170743081307,221,0 +170743081357,221,0 +170743081406,222,0 +170743081456,222,0 +170743081504,222,0 +170743081553,222,0 +170743081601,222,0 +170743081649,223,0 +170743081697,222,0 +170743081747,223,0 +170743081794,224,0 +170743081842,224,0 +170743081890,225,0 +170743081940,225,0 +170743081988,226,0 +170743082036,226,0 +170743082085,227,0 +170743082133,228,0 +170743082181,229,0 +170743082229,229,0 +170743082279,230,0 +170743082327,232,0 +170743082375,232,0 +170743082424,234,0 +170743082472,235,0 +170743082522,233,0 +170743082570,232,0 +170743082619,235,0 +170743082667,236,0 +170743082715,233,0 +170743082765,234,0 +170743082813,235,0 +170743082861,235,0 +170743082910,235,0 +170743082958,236,0 +170743083007,237,0 +170743083055,236,0 +170743083105,236,0 +170743083154,238,0 +170743083202,238,0 +170743083250,239,0 +170743083298,238,0 +170743083346,241,0 +170743083394,238,0 +170743083442,242,0 +170743083490,243,0 +170743083538,244,0 +170743083588,242,0 +170743083636,244,0 +170743083684,244,0 +170743083732,245,0 +170743083780,244,0 +170743083828,245,0 +170743083877,231,0 +170743083927,220,0 +170743083975,224,0 +170743084023,223,0 +170743084072,222,0 +170743084120,219,0 +170743084168,219,0 +170743084216,219,0 +170743084264,219,0 +170743084312,219,0 +170743084360,219,0 +170743084410,219,0 +170743084459,219,0 +170743084509,219,0 +170743084557,219,0 +170743084605,218,0 +170743084654,218,0 +170743084704,219,0 +170743084751,219,0 +170743084799,219,0 +170743084847,218,0 +170743084895,219,0 +170743084943,218,0 +170743084991,218,0 +170743085039,218,0 +170743085087,219,0 +170743085135,218,0 +170743085182,218,0 +170743085230,218,0 +170743085278,219,0 +170743085326,218,0 +170743085374,218,0 +170743085422,218,0 +170743085470,219,0 +170743085518,219,0 +170743085566,219,0 +170743085614,219,0 +170743085661,219,0 +170743085709,219,0 +170743085757,219,0 +170743085807,220,0 +170743085855,220,0 +170743085903,220,0 +170743085952,221,0 +170743086002,221,0 +170743086050,220,0 +170743086098,220,0 +170743086145,221,0 +170743086195,221,0 +170743086245,221,0 +170743086294,221,0 +170743086342,221,0 +170743086390,221,0 +170743086440,221,0 +170743086488,221,0 +170743086536,221,0 +170743086585,221,0 +170743086633,221,0 +170743086682,222,0 +170743086730,222,0 +170743086778,224,0 +170743086826,223,0 +170743086874,223,0 +170743086922,224,0 +170743086970,224,0 +170743087018,223,0 +170743087066,223,0 +170743087113,223,0 +170743087161,223,0 +170743087211,224,0 +170743087259,224,0 +170743087307,225,0 +170743087354,225,0 +170743087402,227,0 +170743087450,227,0 +170743087498,228,0 +170743087546,229,0 +170743087594,229,0 +170743087644,230,0 +170743087692,230,0 +170743087741,230,0 +170743087791,231,0 +170743087840,231,0 +170743087888,233,0 +170743087938,234,0 +170743087986,233,0 +170743088035,233,0 +170743088083,234,0 +170743088133,235,0 +170743088181,235,0 +170743088230,236,0 +170743088278,234,0 +170743088326,236,0 +170743088376,236,0 +170743088425,237,0 +170743088475,236,0 +170743088523,235,0 +170743088571,236,0 +170743088619,237,0 +170743088668,237,0 +170743088716,238,0 +170743088764,237,0 +170743088814,244,0 +170743088863,244,0 +170743088911,241,0 +170743088959,243,0 +170743089007,245,0 +170743089055,244,0 +170743089103,245,0 +170743089151,243,0 +170743089199,243,0 +170743089248,222,0 +170743089296,222,0 +170743089344,222,0 +170743089394,221,0 +170743089442,219,0 +170743089491,217,0 +170743089541,217,0 +170743089589,216,0 +170743089637,216,0 +170743089685,217,0 +170743089734,217,0 +170743089782,216,0 +170743089830,216,0 +170743089878,216,0 +170743089928,216,0 +170743089976,216,0 +170743090024,216,0 +170743090072,216,0 +170743090120,216,0 +170743090168,216,0 +170743090217,216,0 +170743090265,216,0 +170743090313,217,0 +170743090361,217,0 +170743090410,217,0 +170743090460,217,0 +170743090508,217,0 +170743090556,216,0 +170743090604,217,0 +170743090654,216,0 +170743090703,217,0 +170743090751,216,0 +170743090799,216,0 +170743090847,216,0 +170743090896,216,0 +170743090944,216,0 +170743090992,216,0 +170743091042,216,0 +170743091090,216,0 +170743091139,216,0 +170743091187,216,0 +170743091235,217,0 +170743091283,216,0 +170743091331,217,0 +170743091381,216,0 +170743091430,216,0 +170743091478,216,0 +170743091526,216,0 +170743091576,217,0 +170743091624,216,0 +170743091673,216,0 +170743091721,217,0 +170743091769,216,0 +170743091817,216,0 +170743091867,217,0 +170743091915,216,0 +170743091963,216,0 +170743092011,216,0 +170743092059,216,0 +170743092107,216,0 +170743092156,216,0 +170743092204,216,0 +170743092252,216,0 +170743092300,216,0 +170743092348,217,0 +170743092398,217,0 +170743092447,217,0 +170743092495,217,0 +170743092544,218,0 +170743092594,218,0 +170743092642,218,0 +170743092690,219,0 +170743092738,219,0 +170743092786,219,0 +170743092834,219,0 +170743092882,219,0 +170743092930,219,0 +170743092979,219,0 +170743093027,220,0 +170743093075,219,0 +170743093123,221,0 +170743093171,221,0 +170743093219,221,0 +170743093268,222,0 +170743093318,222,0 +170743093366,223,0 +170743093414,223,0 +170743093462,224,0 +170743093510,223,0 +170743093558,226,0 +170743093607,225,0 +170743093655,227,0 +170743093703,227,0 +170743093751,228,0 +170743093799,230,0 +170743093847,231,0 +170743093895,232,0 +170743093943,232,0 +170743093991,232,0 +170743094040,232,0 +170743094088,234,0 +170743094136,241,0 +170743094184,241,0 +170743094232,241,0 +170743094280,244,0 +170743094330,242,0 +170743094378,242,0 +170743094427,242,0 +170743094475,243,0 +170743094523,243,0 +170743094572,239,0 +170743094620,219,0 +170743094668,223,0 +170743094718,223,0 +170743094766,220,0 +170743094814,219,0 +170743094862,218,0 +170743094910,218,0 +170743094958,218,0 +170743095006,218,0 +170743095054,218,0 +170743095103,218,0 +170743095151,218,0 +170743095201,218,0 +170743095249,218,0 +170743095297,218,0 +170743095346,218,0 +170743095396,218,0 +170743095444,218,0 +170743095492,218,0 +170743095541,218,0 +170743095589,218,0 +170743095639,218,0 +170743095687,218,0 +170743095736,218,0 +170743095786,218,0 +170743095834,218,0 +170743095882,218,0 +170743095930,218,0 +170743095978,218,0 +170743096026,218,0 +170743096074,218,0 +170743096122,218,0 +170743096170,218,0 +170743096218,217,0 +170743096266,218,0 +170743096315,218,0 +170743096363,217,0 +170743096411,218,0 +170743096461,217,0 +170743096510,218,0 +170743096558,218,0 +170743096606,218,0 +170743096654,218,0 +170743096703,217,0 +170743096753,218,0 +170743096801,218,0 +170743096849,218,0 +170743096898,218,0 +170743096948,218,0 +170743096996,218,0 +170743097045,217,0 +170743097093,218,0 +170743097141,218,0 +170743097191,218,0 +170743097239,218,0 +170743097287,218,0 +170743097335,218,0 +170743097383,218,0 +170743097431,218,0 +170743097479,218,0 +170743097528,219,0 +170743097576,219,0 +170743097624,219,0 +170743097674,219,0 +170743097722,219,0 +170743097770,219,0 +170743097819,220,0 +170743097869,220,0 +170743097917,219,0 +170743097965,220,0 +170743098014,220,0 +170743098062,220,0 +170743098110,220,0 +170743098158,220,0 +170743098208,220,0 +170743098256,220,0 +170743098305,221,0 +170743098353,221,0 +170743098403,221,0 +170743098451,221,0 +170743098500,222,0 +170743098550,222,0 +170743098598,223,0 +170743098646,224,0 +170743098694,225,0 +170743098742,226,0 +170743098790,226,0 +170743098838,225,0 +170743098886,225,0 +170743098935,226,0 +170743098985,228,0 +170743099033,227,0 +170743099081,228,0 +170743099129,230,0 +170743099178,231,0 +170743099226,231,0 +170743099276,232,0 +170743099325,232,0 +170743099373,233,0 +170743099421,232,0 +170743099471,232,0 +170743099519,240,0 +170743099568,241,0 +170743099616,239,0 +170743099666,236,0 +170743099714,239,0 +170743099762,241,0 +170743099811,241,0 +170743099859,243,0 +170743099907,241,0 +170743099957,245,0 +170743100006,224,0 +170743100054,224,0 +170743100104,227,0 +170743100152,225,0 +170743100200,222,0 +170743100248,221,0 +170743100296,220,0 +170743100345,220,0 +170743100393,219,0 +170743100441,220,0 +170743100489,220,0 +170743100537,219,0 +170743100585,219,0 +170743100634,219,0 +170743100682,219,0 +170743100730,219,0 +170743100778,219,0 +170743100826,219,0 +170743100874,219,0 +170743100922,219,0 +170743100970,219,0 +170743101019,219,0 +170743101067,219,0 +170743101115,219,0 +170743101163,219,0 +170743101211,219,0 +170743101259,219,0 +170743101307,219,0 +170743101355,219,0 +170743101403,219,0 +170743101451,219,0 +170743101499,219,0 +170743101547,219,0 +170743101595,219,0 +170743101643,219,0 +170743101691,219,0 +170743101738,219,0 +170743101786,219,0 +170743101836,219,0 +170743101885,219,0 +170743101933,219,0 +170743101981,218,0 +170743102031,219,0 +170743102080,219,0 +170743102128,219,0 +170743102178,219,0 +170743102227,219,0 +170743102277,219,0 +170743102326,219,0 +170743102374,219,0 +170743102424,219,0 +170743102473,220,0 +170743102523,220,0 +170743102571,219,0 +170743102619,220,0 +170743102667,221,0 +170743102716,221,0 +170743102764,220,0 +170743102812,221,0 +170743102860,220,0 +170743102910,221,0 +170743102958,222,0 +170743103006,221,0 +170743103054,221,0 +170743103103,222,0 +170743103151,221,0 +170743103201,222,0 +170743103249,222,0 +170743103297,221,0 +170743103345,221,0 +170743103394,221,0 +170743103442,223,0 +170743103492,224,0 +170743103540,224,0 +170743103588,224,0 +170743103636,226,0 +170743103685,226,0 +170743103733,226,0 +170743103781,227,0 +170743103829,228,0 +170743103877,228,0 +170743103925,227,0 +170743103973,230,0 +170743104021,229,0 +170743104069,229,0 +170743104118,230,0 +170743104166,230,0 +170743104214,231,0 +170743104262,231,0 +170743104311,232,0 +170743104359,232,0 +170743104407,233,0 +170743104455,232,0 +170743104503,233,0 +170743104551,232,0 +170743104599,232,0 +170743104647,233,0 +170743104694,232,0 +170743104742,233,0 +170743104790,233,0 +170743104838,240,0 +170743104886,242,0 +170743104934,241,0 +170743104983,241,0 +170743105033,241,0 +170743105082,242,0 +170743105130,241,0 +170743105178,242,0 +170743105226,243,0 +170743105274,242,0 +170743105322,227,0 +170743105370,222,0 +170743105417,224,0 +170743105465,223,0 +170743105513,221,0 +170743105561,219,0 +170743105609,218,0 +170743105658,219,0 +170743105706,219,0 +170743105754,218,0 +170743105802,218,0 +170743105850,219,0 +170743105898,219,0 +170743105947,219,0 +170743105995,219,0 +170743106043,220,0 +170743106091,221,0 +170743106139,221,0 +170743106187,220,0 +170743106235,220,0 +170743106283,220,0 +170743106330,220,0 +170743106378,220,0 +170743106426,220,0 +170743106474,220,0 +170743106524,220,0 +170743106571,220,0 +170743106619,221,0 +170743106667,221,0 +170743106717,222,0 +170743106765,220,0 +170743106813,220,0 +170743106860,221,0 +170743106908,222,0 +170743106956,221,0 +170743107004,221,0 +170743107052,222,0 +170743107100,221,0 +170743107149,221,0 +170743107197,222,0 +170743107247,221,0 +170743107295,221,0 +170743107343,222,0 +170743107390,222,0 +170743107438,222,0 +170743107486,223,0 +170743107536,222,0 +170743107584,222,0 +170743107634,223,0 +170743107681,223,0 +170743107729,224,0 +170743107777,225,0 +170743107825,225,0 +170743107873,225,0 +170743107921,226,0 +170743107971,226,0 +170743108020,226,0 +170743108068,226,0 +170743108118,226,0 +170743108166,225,0 +170743108214,227,0 +170743108262,227,0 +170743108310,227,0 +170743108358,226,0 +170743108407,224,0 +170743108455,226,0 +170743108503,229,0 +170743108551,227,0 +170743108599,227,0 +170743108648,229,0 +170743108696,229,0 +170743108744,230,0 +170743108794,232,0 +170743108843,232,0 +170743108891,232,0 +170743108939,232,0 +170743108987,232,0 +170743109037,231,0 +170743109086,231,0 +170743109134,233,0 +170743109182,232,0 +170743109232,233,0 +170743109281,233,0 +170743109329,234,0 +170743109379,233,0 +170743109427,233,0 +170743109475,234,0 +170743109523,235,0 +170743109571,238,0 +170743109618,237,0 +170743109666,236,0 +170743109716,236,0 +170743109764,236,0 +170743109811,236,0 +170743109859,236,0 +170743109909,235,0 +170743109957,235,0 +170743110005,235,0 +170743110052,236,0 +170743110100,235,0 +170743110148,232,0 +170743110196,239,0 +170743110244,242,0 +170743110292,241,0 +170743110340,240,0 +170743110388,243,0 +170743110436,242,0 +170743110483,244,0 +170743110531,244,0 +170743110581,244,0 +170743110630,246,0 +170743110678,222,0 +170743110726,223,0 +170743110774,222,0 +170743110822,221,0 +170743110872,219,0 +170743110921,217,0 +170743110969,217,0 +170743111017,217,0 +170743111065,217,0 +170743111113,216,0 +170743111163,217,0 +170743111212,217,0 +170743111262,217,0 +170743111311,217,0 +170743111361,216,0 +170743111411,217,0 +170743111459,217,0 +170743111507,216,0 +170743111555,217,0 +170743111603,217,0 +170743111651,217,0 +170743111700,217,0 +170743111750,217,0 +170743111798,217,0 +170743111847,217,0 +170743111897,217,0 +170743111945,217,0 +170743111993,218,0 +170743112041,218,0 +170743112090,218,0 +170743112138,219,0 +170743112186,219,0 +170743112234,219,0 +170743112284,219,0 +170743112332,219,0 +170743112381,220,0 +170743112431,219,0 +170743112479,219,0 +170743112526,220,0 +170743112574,220,0 +170743112624,220,0 +170743112673,221,0 +170743112721,220,0 +170743112771,221,0 +170743112819,221,0 +170743112866,221,0 +170743112914,221,0 +170743112962,221,0 +170743113012,222,0 +170743113060,221,0 +170743113108,221,0 +170743113155,222,0 +170743113203,223,0 +170743113251,223,0 +170743113299,223,0 +170743113347,223,0 +170743113395,223,0 +170743113443,225,0 +170743113491,223,0 +170743113539,225,0 +170743113586,225,0 +170743113634,224,0 +170743113682,223,0 +170743113730,225,0 +170743113778,226,0 +170743113826,226,0 +170743113874,227,0 +170743113923,228,0 +170743113971,229,0 +170743114019,229,0 +170743114067,230,0 +170743114115,229,0 +170743114163,229,0 +170743114211,230,0 +170743114259,232,0 +170743114308,231,0 +170743114357,232,0 +170743114405,232,0 +170743114453,232,0 +170743114501,231,0 +170743114549,233,0 +170743114598,233,0 +170743114646,234,0 +170743114694,234,0 +170743114742,235,0 +170743114790,235,0 +170743114838,236,0 +170743114886,236,0 +170743114934,235,0 +170743114982,235,0 +170743115030,235,0 +170743115078,234,0 +170743115127,235,0 +170743115175,234,0 +170743115223,234,0 +170743115271,234,0 +170743115319,233,0 +170743115369,233,0 +170743115418,235,0 +170743115468,234,0 +170743115516,235,0 +170743115565,228,0 +170743115613,240,0 +170743115661,243,0 +170743115709,243,0 +170743115759,244,0 +170743115807,244,0 +170743115855,246,0 +170743115904,244,0 +170743115954,243,0 +170743116003,245,0 +170743116051,241,0 +170743116099,220,0 +170743116148,224,0 +170743116195,223,0 +170743116243,221,0 +170743116291,220,0 +170743116339,219,0 +170743116387,218,0 +170743116435,218,0 +170743116483,218,0 +170743116531,218,0 +170743116579,218,0 +170743116626,218,0 +170743116674,218,0 +170743116722,218,0 +170743116770,218,0 +170743116818,218,0 +170743116866,218,0 +170743116916,218,0 +170743116965,218,0 +170743117013,218,0 +170743117061,218,0 +170743117109,218,0 +170743117157,218,0 +170743117205,218,0 +170743117255,218,0 +170743117303,218,0 +170743117351,218,0 +170743117399,218,0 +170743117447,218,0 +170743117495,218,0 +170743117544,218,0 +170743117592,218,0 +170743117640,218,0 +170743117688,218,0 +170743117736,218,0 +170743117784,218,0 +170743117833,218,0 +170743117881,218,0 +170743117929,218,0 +170743117977,218,0 +170743118026,218,0 +170743118074,218,0 +170743118121,217,0 +170743118169,218,0 +170743118217,218,0 +170743118267,218,0 +170743118314,218,0 +170743118364,218,0 +170743118412,217,0 +170743118461,217,0 +170743118509,217,0 +170743118557,218,0 +170743118605,217,0 +170743118653,218,0 +170743118701,218,0 +170743118749,218,0 +170743118797,218,0 +170743118845,219,0 +170743118893,219,0 +170743118940,219,0 +170743118990,219,0 +170743119038,219,0 +170743119086,219,0 +170743119134,220,0 +170743119182,218,0 +170743119230,219,0 +170743119278,219,0 +170743119326,219,0 +170743119374,219,0 +170743119422,219,0 +170743119470,220,0 +170743119519,221,0 +170743119567,221,0 +170743119617,222,0 +170743119666,222,0 +170743119714,223,0 +170743119762,224,0 +170743119812,225,0 +170743119859,225,0 +170743119907,225,0 +170743119955,226,0 +170743120003,227,0 +170743120051,227,0 +170743120101,228,0 +170743120148,230,0 +170743120196,229,0 +170743120246,229,0 +170743120294,230,0 +170743120343,230,0 +170743120391,230,0 +170743120439,231,0 +170743120487,231,0 +170743120537,231,0 +170743120584,233,0 +170743120632,233,0 +170743120680,233,0 +170743120730,234,0 +170743120778,234,0 +170743120826,234,0 +170743120874,236,0 +170743120923,233,0 +170743120973,243,0 +170743121021,241,0 +170743121070,242,0 +170743121118,243,0 +170743121166,243,0 +170743121214,245,0 +170743121262,245,0 +170743121310,244,0 +170743121358,244,0 +170743121405,234,0 +170743121453,220,0 +170743121501,225,0 +170743121549,224,0 +170743121597,223,0 +170743121645,221,0 +170743121693,221,0 +170743121740,221,0 +170743121788,220,0 +170743121836,220,0 +170743121886,220,0 +170743121934,221,0 +170743121983,221,0 +170743122032,221,0 +170743122080,222,0 +170743122128,222,0 +170743122176,222,0 +170743122224,223,0 +170743122272,223,0 +170743122321,222,0 +170743122369,222,0 +170743122419,223,0 +170743122467,223,0 +170743122517,223,0 +170743122565,223,0 +170743122614,223,0 +170743122662,223,0 +170743122710,223,0 +170743122758,223,0 +170743122806,223,0 +170743122854,223,0 +170743122901,224,0 +170743122949,223,0 +170743122997,224,0 +170743123045,224,0 +170743123093,224,0 +170743123141,225,0 +170743123190,224,0 +170743123240,225,0 +170743123288,226,0 +170743123335,224,0 +170743123383,225,0 +170743123431,225,0 +170743123479,225,0 +170743123527,225,0 +170743123575,224,0 +170743123623,225,0 +170743123671,226,0 +170743123718,225,0 +170743123766,226,0 +170743123814,225,0 +170743123862,226,0 +170743123912,226,0 +170743123960,227,0 +170743124007,226,0 +170743124055,225,0 +170743124105,227,0 +170743124153,226,0 +170743124202,227,0 +170743124250,228,0 +170743124298,227,0 +170743124346,229,0 +170743124394,230,0 +170743124442,230,0 +170743124490,231,0 +170743124537,231,0 +170743124585,231,0 +170743124633,232,0 +170743124681,232,0 +170743124729,233,0 +170743124777,234,0 +170743124825,235,0 +170743124874,234,0 +170743124922,233,0 +170743124970,235,0 +170743125018,235,0 +170743125066,236,0 +170743125114,237,0 +170743125162,236,0 +170743125210,237,0 +170743125257,238,0 +170743125305,235,0 +170743125355,235,0 +170743125403,243,0 +170743125452,238,0 +170743125500,237,0 +170743125550,237,0 +170743125598,239,0 +170743125647,237,0 +170743125695,239,0 +170743125743,239,0 +170743125791,239,0 +170743125839,238,0 +170743125887,236,0 +170743125935,238,0 +170743125983,238,0 +170743126031,237,0 +170743126079,244,0 +170743126127,235,0 +170743126175,238,0 +170743126223,236,0 +170743126271,244,0 +170743126319,241,0 +170743126367,240,0 +170743126415,243,0 +170743126463,246,0 +170743126511,248,0 +170743126559,247,0 +170743126608,245,0 +170743126658,244,0 +170743126706,244,0 +170743126755,228,0 +170743126803,224,0 +170743126853,225,0 +170743126901,223,0 +170743126950,221,0 +170743127000,220,0 +170743127048,219,0 +170743127096,219,0 +170743127145,219,0 +170743127193,219,0 +170743127241,219,0 +170743127291,219,0 +170743127339,219,0 +170743127388,219,0 +170743127436,219,0 +170743127484,219,0 +170743127534,219,0 +170743127582,218,0 +170743127630,219,0 +170743127678,219,0 +170743127726,219,0 +170743127774,219,0 +170743127823,219,0 +170743127871,219,0 +170743127919,219,0 +170743127969,219,0 +170743128017,219,0 +170743128065,219,0 +170743128114,219,0 +170743128164,219,0 +170743128212,219,0 +170743128261,219,0 +170743128311,219,0 +170743128359,219,0 +170743128407,220,0 +170743128455,220,0 +170743128504,219,0 +170743128552,219,0 +170743128600,219,0 +170743128648,220,0 +170743128696,219,0 +170743128744,220,0 +170743128794,220,0 +170743128843,219,0 +170743128893,219,0 +170743128941,220,0 +170743128990,221,0 +170743129040,220,0 +170743129088,221,0 +170743129136,221,0 +170743129184,221,0 +170743129232,221,0 +170743129281,222,0 +170743129329,222,0 +170743129379,221,0 +170743129427,222,0 +170743129475,222,0 +170743129523,222,0 +170743129571,222,0 +170743129619,222,0 +170743129668,222,0 +170743129716,227,0 +170743129764,223,0 +170743129812,223,0 +170743129860,223,0 +170743129908,225,0 +170743129956,225,0 +170743130004,226,0 +170743130054,226,0 +170743130102,227,0 +170743130151,228,0 +170743130199,227,0 +170743130247,228,0 +170743130295,229,0 +170743130343,229,0 +170743130391,230,0 +170743130439,230,0 +170743130487,231,0 +170743130535,230,0 +170743130583,231,0 +170743130631,232,0 +170743130679,233,0 +170743130727,233,0 +170743130776,234,0 +170743130826,234,0 +170743130874,235,0 +170743130922,236,0 +170743130970,237,0 +170743131019,236,0 +170743131067,237,0 +170743131115,237,0 +170743131165,237,0 +170743131213,239,0 +170743131261,238,0 +170743131310,238,0 +170743131358,239,0 +170743131406,238,0 +170743131456,237,0 +170743131504,237,0 +170743131553,236,0 +170743131601,238,0 +170743131649,237,0 +170743131697,243,0 +170743131747,242,0 +170743131795,243,0 +170743131843,245,0 +170743131892,245,0 +170743131940,245,0 +170743131988,245,0 +170743132038,246,0 +170743132086,244,0 +170743132135,223,0 +170743132183,224,0 +170743132233,223,0 +170743132281,221,0 +170743132330,220,0 +170743132380,218,0 +170743132429,218,0 +170743132477,218,0 +170743132525,218,0 +170743132575,218,0 +170743132624,218,0 +170743132672,218,0 +170743132720,218,0 +170743132768,218,0 +170743132816,217,0 +170743132866,218,0 +170743132914,218,0 +170743132962,218,0 +170743133011,217,0 +170743133061,217,0 +170743133110,217,0 +170743133158,218,0 +170743133206,218,0 +170743133254,217,0 +170743133302,217,0 +170743133350,218,0 +170743133400,218,0 +170743133449,218,0 +170743133499,218,0 +170743133547,218,0 +170743133596,218,0 +170743133646,218,0 +170743133694,218,0 +170743133742,218,0 +170743133790,218,0 +170743133838,218,0 +170743133888,218,0 +170743133936,218,0 +170743133983,218,0 +170743134031,219,0 +170743134081,219,0 +170743134129,219,0 +170743134177,219,0 +170743134225,220,0 +170743134273,219,0 +170743134321,220,0 +170743134370,220,0 +170743134418,220,0 +170743134466,219,0 +170743134514,221,0 +170743134562,220,0 +170743134610,220,0 +170743134658,220,0 +170743134706,221,0 +170743134756,221,0 +170743134805,221,0 +170743134855,221,0 +170743134902,221,0 +170743134950,222,0 +170743134998,222,0 +170743135046,223,0 +170743135094,223,0 +170743135142,223,0 +170743135190,223,0 +170743135238,222,0 +170743135286,223,0 +170743135336,224,0 +170743135384,224,0 +170743135433,224,0 +170743135481,225,0 +170743135529,226,0 +170743135577,227,0 +170743135625,227,0 +170743135673,228,0 +170743135721,229,0 +170743135771,230,0 +170743135819,229,0 +170743135867,231,0 +170743135916,231,0 +170743135966,231,0 +170743136014,231,0 +170743136062,234,0 +170743136111,234,0 +170743136159,233,0 +170743136207,233,0 +170743136255,234,0 +170743136304,234,0 +170743136352,236,0 +170743136400,236,0 +170743136448,235,0 +170743136496,235,0 +170743136544,238,0 +170743136594,237,0 +170743136642,237,0 +170743136690,238,0 +170743136739,235,0 +170743136789,238,0 +170743136837,238,0 +170743136885,236,0 +170743136933,240,0 +170743136981,238,0 +170743137030,241,0 +170743137080,242,0 +170743137129,242,0 +170743137179,244,0 +170743137227,244,0 +170743137275,244,0 +170743137323,244,0 +170743137371,244,0 +170743137419,245,0 +170743137467,245,0 +170743137516,222,0 +170743137566,224,0 +170743137614,225,0 +170743137663,223,0 +170743137711,221,0 +170743137759,220,0 +170743137807,219,0 +170743137857,219,0 +170743137906,219,0 +170743137954,219,0 +170743138002,219,0 +170743138050,218,0 +170743138098,219,0 +170743138147,219,0 +170743138195,219,0 +170743138243,219,0 +170743138291,219,0 +170743138339,219,0 +170743138387,219,0 +170743138435,219,0 +170743138483,219,0 +170743138533,219,0 +170743138582,218,0 +170743138630,218,0 +170743138678,219,0 +170743138726,219,0 +170743138776,218,0 +170743138825,219,0 +170743138875,218,0 +170743138924,218,0 +170743138972,218,0 +170743139020,219,0 +170743139070,219,0 +170743139118,218,0 +170743139167,218,0 +170743139215,218,0 +170743139265,218,0 +170743139314,219,0 +170743139362,219,0 +170743139410,219,0 +170743139460,219,0 +170743139509,219,0 +170743139559,219,0 +170743139608,220,0 +170743139658,219,0 +170743139708,220,0 +170743139756,220,0 +170743139804,221,0 +170743139853,221,0 +170743139903,220,0 +170743139952,221,0 +170743140002,221,0 +170743140050,221,0 +170743140098,221,0 +170743140145,222,0 +170743140193,221,0 +170743140241,221,0 +170743140289,221,0 +170743140337,221,0 +170743140385,221,0 +170743140435,221,0 +170743140483,222,0 +170743140533,223,0 +170743140582,222,0 +170743140632,223,0 +170743140680,223,0 +170743140728,224,0 +170743140777,224,0 +170743140825,225,0 +170743140873,225,0 +170743140923,226,0 +170743140972,227,0 +170743141020,227,0 +170743141068,229,0 +170743141116,228,0 +170743141165,227,0 +170743141215,229,0 +170743141263,227,0 +170743141311,229,0 +170743141359,229,0 +170743141407,230,0 +170743141455,230,0 +170743141503,234,0 +170743141551,232,0 +170743141599,234,0 +170743141647,233,0 +170743141696,233,0 +170743141744,234,0 +170743141793,237,0 +170743141843,235,0 +170743141891,235,0 +170743141940,237,0 +170743141988,235,0 +170743142036,236,0 +170743142084,235,0 +170743142132,236,0 +170743142181,237,0 +170743142229,237,0 +170743142277,237,0 +170743142325,230,0 +170743142375,241,0 +170743142424,240,0 +170743142474,243,0 +170743142522,245,0 +170743142570,245,0 +170743142618,243,0 +170743142666,244,0 +170743142713,245,0 +170743142763,245,0 +170743142811,245,0 +170743142859,225,0 +170743142907,221,0 +170743142956,223,0 +170743143004,222,0 +170743143052,220,0 +170743143100,218,0 +170743143148,218,0 +170743143196,218,0 +170743143244,218,0 +170743143293,218,0 +170743143342,218,0 +170743143389,218,0 +170743143437,218,0 +170743143487,217,0 +170743143535,218,0 +170743143584,217,0 +170743143632,218,0 +170743143680,218,0 +170743143730,217,0 +170743143778,217,0 +170743143827,217,0 +170743143877,217,0 +170743143926,218,0 +170743143974,217,0 +170743144022,217,0 +170743144070,218,0 +170743144118,218,0 +170743144166,218,0 +170743144214,217,0 +170743144262,217,0 +170743144310,217,0 +170743144359,217,0 +170743144407,218,0 +170743144455,217,0 +170743144503,217,0 +170743144551,218,0 +170743144599,218,0 +170743144648,217,0 +170743144696,218,0 +170743144745,217,0 +170743144795,218,0 +170743144843,217,0 +170743144891,217,0 +170743144939,218,0 +170743144988,217,0 +170743145036,217,0 +170743145086,218,0 +170743145134,218,0 +170743145182,217,0 +170743145230,217,0 +170743145278,217,0 +170743145326,217,0 +170743145374,217,0 +170743145422,217,0 +170743145469,218,0 +170743145519,217,0 +170743145567,218,0 +170743145615,218,0 +170743145663,218,0 +170743145711,218,0 +170743145759,219,0 +170743145807,219,0 +170743145856,219,0 +170743145906,219,0 +170743145954,219,0 +170743146004,219,0 +170743146052,219,0 +170743146101,220,0 +170743146149,220,0 +170743146197,220,0 +170743146245,220,0 +170743146293,221,0 +170743146341,221,0 +170743146390,220,0 +170743146438,221,0 +170743146486,221,0 +170743146534,222,0 +170743146582,222,0 +170743146630,223,0 +170743146680,224,0 +170743146728,225,0 +170743146777,225,0 +170743146827,225,0 +170743146876,226,0 +170743146924,226,0 +170743146974,226,0 +170743147022,227,0 +170743147071,227,0 +170743147119,228,0 +170743147169,229,0 +170743147217,229,0 +170743147265,230,0 +170743147312,230,0 +170743147360,231,0 +170743147408,232,0 +170743147456,231,0 +170743147504,231,0 +170743147552,232,0 +170743147600,234,0 +170743147648,233,0 +170743147696,230,0 +170743147744,242,0 +170743147792,242,0 +170743147839,247,0 +170743147887,243,0 +170743147935,243,0 +170743147983,246,0 +170743148031,245,0 +170743148079,245,0 +170743148127,242,0 +170743148175,239,0 +170743148223,220,0 +170743148271,224,0 +170743148319,223,0 +170743148366,221,0 +170743148414,219,0 +170743148464,219,0 +170743148512,219,0 +170743148560,218,0 +170743148609,218,0 +170743148657,218,0 +170743148707,218,0 +170743148755,218,0 +170743148803,218,0 +170743148851,218,0 +170743148899,218,0 +170743148947,218,0 +170743148995,218,0 +170743149044,218,0 +170743149094,218,0 +170743149142,218,0 +170743149190,218,0 +170743149237,218,0 +170743149287,218,0 +170743149335,218,0 +170743149384,218,0 +170743149434,218,0 +170743149482,218,0 +170743149530,218,0 +170743149578,219,0 +170743149627,219,0 +170743149677,219,0 +170743149726,219,0 +170743149774,219,0 +170743149822,219,0 +170743149870,218,0 +170743149918,218,0 +170743149966,218,0 +170743150014,218,0 +170743150064,218,0 +170743150112,219,0 +170743150160,218,0 +170743150209,218,0 +170743150259,218,0 +170743150307,219,0 +170743150355,219,0 +170743150404,218,0 +170743150452,218,0 +170743150500,219,0 +170743150550,219,0 +170743150598,218,0 +170743150646,218,0 +170743150693,219,0 +170743150743,219,0 +170743150791,219,0 +170743150839,219,0 +170743150887,218,0 +170743150935,218,0 +170743150982,218,0 +170743151030,218,0 +170743151078,218,0 +170743151126,218,0 +170743151174,218,0 +170743151222,219,0 +170743151271,218,0 +170743151319,219,0 +170743151367,219,0 +170743151415,219,0 +170743151463,220,0 +170743151513,219,0 +170743151561,220,0 +170743151609,220,0 +170743151658,220,0 +170743151708,220,0 +170743151756,221,0 +170743151805,220,0 +170743151853,220,0 +170743151903,221,0 +170743151951,221,0 +170743151999,220,0 +170743152048,221,0 +170743152096,222,0 +170743152144,222,0 +170743152194,223,0 +170743152242,223,0 +170743152290,223,0 +170743152338,224,0 +170743152386,225,0 +170743152435,226,0 +170743152483,226,0 +170743152531,227,0 +170743152579,228,0 +170743152629,228,0 +170743152677,229,0 +170743152725,230,0 +170743152773,232,0 +170743152822,231,0 +170743152870,233,0 +170743152918,231,0 +170743152966,231,0 +170743153014,234,0 +170743153062,233,0 +170743153111,233,0 +170743153161,241,0 +170743153209,240,0 +170743153257,241,0 +170743153305,243,0 +170743153353,245,0 +170743153401,245,0 +170743153449,244,0 +170743153497,245,0 +170743153545,245,0 +170743153593,238,0 +170743153642,221,0 +170743153690,224,0 +170743153740,223,0 +170743153789,221,0 +170743153839,219,0 +170743153888,218,0 +170743153936,218,0 +170743153986,218,0 +170743154035,218,0 +170743154085,218,0 +170743154133,218,0 +170743154181,218,0 +170743154229,218,0 +170743154277,218,0 +170743154325,218,0 +170743154373,218,0 +170743154422,218,0 +170743154470,218,0 +170743154520,218,0 +170743154568,218,0 +170743154616,217,0 +170743154664,217,0 +170743154713,218,0 +170743154761,218,0 +170743154809,217,0 +170743154857,217,0 +170743154905,218,0 +170743154953,217,0 +170743155003,217,0 +170743155050,218,0 +170743155100,218,0 +170743155148,218,0 +170743155196,218,0 +170743155244,218,0 +170743155292,217,0 +170743155340,218,0 +170743155387,218,0 +170743155435,218,0 +170743155483,218,0 +170743155533,218,0 +170743155581,218,0 +170743155629,218,0 +170743155676,218,0 +170743155724,218,0 +170743155774,217,0 +170743155822,218,0 +170743155870,218,0 +170743155918,218,0 +170743155967,217,0 +170743156017,218,0 +170743156065,218,0 +170743156113,218,0 +170743156161,218,0 +170743156209,218,0 +170743156258,218,0 +170743156306,218,0 +170743156356,218,0 +170743156404,218,0 +170743156453,218,0 +170743156501,218,0 +170743156549,218,0 +170743156597,217,0 +170743156645,218,0 +170743156693,218,0 +170743156741,218,0 +170743156790,218,0 +170743156838,218,0 +170743156888,218,0 +170743156937,218,0 +170743156987,217,0 +170743157036,218,0 +170743157084,219,0 +170743157134,219,0 +170743157184,219,0 +170743157232,219,0 +170743157279,219,0 +170743157328,219,0 +170743157377,220,0 +170743157427,219,0 +170743157476,220,0 +170743157526,220,0 +170743157575,220,0 +170743157623,221,0 +170743157671,222,0 +170743157719,222,0 +170743157767,221,0 +170743157815,223,0 +170743157863,222,0 +170743157911,222,0 +170743157959,225,0 +170743158006,225,0 +170743158054,225,0 +170743158102,226,0 +170743158150,228,0 +170743158198,228,0 +170743158246,229,0 +170743158295,230,0 +170743158343,229,0 +170743158393,231,0 +170743158441,230,0 +170743158490,244,0 +170743158538,239,0 +170743158586,241,0 +170743158634,239,0 +170743158682,240,0 +170743158730,240,0 +170743158777,243,0 +170743158825,243,0 +170743158875,242,0 +170743158923,241,0 +170743158972,220,0 +170743159020,223,0 +170743159068,223,0 +170743159116,221,0 +170743159164,220,0 +170743159211,219,0 +170743159259,218,0 +170743159307,218,0 +170743159355,218,0 +170743159403,218,0 +170743159451,218,0 +170743159499,218,0 +170743159547,218,0 +170743159596,218,0 +170743159646,218,0 +170743159694,218,0 +170743159741,218,0 +170743159789,218,0 +170743159837,218,0 +170743159887,218,0 +170743159935,218,0 +170743159983,218,0 +170743160031,218,0 +170743160079,218,0 +170743160128,218,0 +170743160176,218,0 +170743160224,218,0 +170743160272,218,0 +170743160320,218,0 +170743160368,218,0 +170743160416,218,0 +170743160463,218,0 +170743160511,219,0 +170743160559,219,0 +170743160607,219,0 +170743160655,219,0 +170743160703,219,0 +170743160751,219,0 +170743160799,219,0 +170743160847,220,0 +170743160896,219,0 +170743160944,220,0 +170743160992,220,0 +170743161040,221,0 +170743161090,220,0 +170743161138,221,0 +170743161186,221,0 +170743161234,221,0 +170743161282,221,0 +170743161330,221,0 +170743161378,221,0 +170743161425,222,0 +170743161475,222,0 +170743161524,222,0 +170743161572,222,0 +170743161622,222,0 +170743161671,222,0 +170743161719,223,0 +170743161767,223,0 +170743161815,224,0 +170743161864,223,0 +170743161912,224,0 +170743161962,225,0 +170743162010,224,0 +170743162058,224,0 +170743162105,226,0 +170743162153,225,0 +170743162201,226,0 +170743162249,227,0 +170743162299,227,0 +170743162348,225,0 +170743162396,227,0 +170743162446,228,0 +170743162495,226,0 +170743162543,228,0 +170743162593,229,0 +170743162641,230,0 +170743162689,230,0 +170743162738,231,0 +170743162786,232,0 +170743162836,233,0 +170743162885,234,0 +170743162933,233,0 +170743162981,233,0 +170743163029,234,0 +170743163077,234,0 +170743163125,236,0 +170743163175,236,0 +170743163223,235,0 +170743163272,235,0 +170743163320,234,0 +170743163368,234,0 +170743163416,234,0 +170743163464,233,0 +170743163514,233,0 +170743163563,232,0 +170743163611,232,0 +170743163659,231,0 +170743163708,226,0 +170743163758,226,0 +170743163806,227,0 +170743163854,243,0 +170743163902,242,0 +170743163950,240,0 +170743163999,243,0 +170743164049,246,0 +170743164097,245,0 +170743164145,245,0 +170743164193,244,0 +170743164242,243,0 +170743164290,238,0 +170743164340,220,0 +170743164388,223,0 +170743164437,222,0 +170743164485,220,0 +170743164535,218,0 +170743164583,217,0 +170743164631,217,0 +170743164680,217,0 +170743164728,217,0 +170743164776,216,0 +170743164826,217,0 +170743164874,217,0 +170743164922,216,0 +170743164970,217,0 +170743165019,217,0 +170743165069,217,0 +170743165118,216,0 +170743165168,217,0 +170743165217,217,0 +170743165265,217,0 +170743165313,217,0 +170743165361,216,0 +170743165409,216,0 +170743165459,216,0 +170743165507,217,0 +170743165555,217,0 +170743165603,216,0 +170743165651,216,0 +170743165700,216,0 +170743165750,216,0 +170743165797,216,0 +170743165847,217,0 +170743165895,216,0 +170743165943,216,0 +170743165991,217,0 +170743166039,216,0 +170743166089,217,0 +170743166136,216,0 +170743166184,216,0 +170743166232,216,0 +170743166280,217,0 +170743166328,216,0 +170743166376,216,0 +170743166426,216,0 +170743166474,216,0 +170743166523,216,0 +170743166571,217,0 +170743166621,217,0 +170743166669,216,0 +170743166718,216,0 +170743166766,216,0 +170743166814,217,0 +170743166862,217,0 +170743166912,217,0 +170743166960,217,0 +170743167008,217,0 +170743167056,217,0 +170743167104,217,0 +170743167152,218,0 +170743167200,218,0 +170743167249,218,0 +170743167297,219,0 +170743167347,219,0 +170743167395,219,0 +170743167443,219,0 +170743167491,219,0 +170743167539,220,0 +170743167587,220,0 +170743167635,219,0 +170743167683,220,0 +170743167731,220,0 +170743167779,219,0 +170743167827,220,0 +170743167875,220,0 +170743167924,222,0 +170743167974,222,0 +170743168022,223,0 +170743168071,223,0 +170743168121,223,0 +170743168169,225,0 +170743168217,225,0 +170743168266,226,0 +170743168314,227,0 +170743168362,227,0 +170743168412,227,0 +170743168459,227,0 +170743168507,227,0 +170743168555,229,0 +170743168603,228,0 +170743168653,230,0 +170743168702,231,0 +170743168752,231,0 +170743168800,231,0 +170743168848,233,0 +170743168897,233,0 +170743168945,234,0 +170743168995,234,0 +170743169044,235,0 +170743169092,235,0 +170743169142,237,0 +170743169190,240,0 +170743169238,242,0 +170743169286,243,0 +170743169335,243,0 +170743169383,244,0 +170743169431,245,0 +170743169479,244,0 +170743169527,245,0 +170743169575,244,0 +170743169623,232,0 +170743169671,221,0 +170743169721,225,0 +170743169769,224,0 +170743169817,221,0 +170743169865,220,0 +170743169913,219,0 +170743169961,220,0 +170743170009,219,0 +170743170057,219,0 +170743170107,219,0 +170743170156,219,0 +170743170204,219,0 +170743170254,219,0 +170743170302,219,0 +170743170350,219,0 +170743170398,219,0 +170743170446,219,0 +170743170494,219,0 +170743170542,219,0 +170743170591,220,0 +170743170641,219,0 +170743170689,219,0 +170743170737,220,0 +170743170786,219,0 +170743170834,220,0 +170743170884,220,0 +170743170932,220,0 +170743170981,220,0 +170743171029,220,0 +170743171077,221,0 +170743171127,221,0 +170743171176,220,0 +170743171224,220,0 +170743171274,221,0 +170743171323,221,0 +170743171373,221,0 +170743171421,221,0 +170743171470,222,0 +170743171520,222,0 +170743171568,221,0 +170743171616,222,0 +170743171664,222,0 +170743171713,222,0 +170743171763,223,0 +170743171812,222,0 +170743171860,223,0 +170743171908,222,0 +170743171956,223,0 +170743172006,223,0 +170743172054,222,0 +170743172102,223,0 +170743172151,223,0 +170743172201,223,0 +170743172249,223,0 +170743172297,223,0 +170743172345,224,0 +170743172394,224,0 +170743172444,224,0 +170743172492,224,0 +170743172540,224,0 +170743172588,225,0 +170743172636,224,0 +170743172685,224,0 +170743172735,224,0 +170743172784,226,0 +170743172832,225,0 +170743172880,227,0 +170743172928,227,0 +170743172976,227,0 +170743173024,228,0 +170743173071,228,0 +170743173119,230,0 +170743173167,230,0 +170743173215,231,0 +170743173263,231,0 +170743173311,232,0 +170743173359,231,0 +170743173407,232,0 +170743173455,233,0 +170743173503,233,0 +170743173551,234,0 +170743173598,235,0 +170743173648,236,0 +170743173696,235,0 +170743173744,235,0 +170743173792,236,0 +170743173840,237,0 +170743173888,237,0 +170743173936,238,0 +170743173984,237,0 +170743174032,238,0 +170743174081,238,0 +170743174129,238,0 +170743174177,239,0 +170743174225,237,0 +170743174275,236,0 +170743174323,238,0 +170743174372,238,0 +170743174420,239,0 +170743174468,238,0 +170743174516,239,0 +170743174564,243,0 +170743174612,244,0 +170743174660,243,0 +170743174708,242,0 +170743174756,243,0 +170743174804,245,0 +170743174853,246,0 +170743174901,243,0 +170743174951,244,0 +170743174999,245,0 +170743175048,226,0 +170743175096,223,0 +170743175144,224,0 +170743175192,223,0 +170743175240,221,0 +170743175288,220,0 +170743175337,219,0 +170743175385,219,0 +170743175433,219,0 +170743175481,219,0 +170743175529,219,0 +170743175577,219,0 +170743175625,219,0 +170743175674,218,0 +170743175722,219,0 +170743175770,218,0 +170743175820,219,0 +170743175868,219,0 +170743175917,219,0 +170743175965,219,0 +170743176013,219,0 +170743176061,219,0 +170743176109,219,0 +170743176157,219,0 +170743176205,219,0 +170743176253,219,0 +170743176303,219,0 +170743176351,219,0 +170743176400,219,0 +170743176450,219,0 +170743176498,221,0 +170743176547,220,0 +170743176595,222,0 +170743176643,221,0 +170743176691,222,0 +170743176739,223,0 +170743176787,223,0 +170743176836,226,0 +170743176884,229,0 +170743176934,231,0 +170743176983,233,0 +170743177031,234,0 +170743177079,236,0 +170743177127,236,0 +170743177175,243,0 +170743177225,242,0 +170743177273,221,0 +170743177321,217,0 +170743177369,218,0 +170743177418,217,0 +170743177466,217,0 +170743177514,218,0 +170743177564,220,0 +170743177612,220,0 +170743177660,221,0 +170743177709,222,0 +170743177757,223,0 +170743177805,224,0 +170743177853,224,0 +170743177901,227,0 +170743177951,228,0 +170743177999,232,0 +170743178047,233,0 +170743178095,235,0 +170743178143,237,0 +170743178191,238,0 +170743178239,240,0 +170743178286,243,0 +170743178334,243,0 +170743178382,224,0 +170743178430,219,0 +170743178480,219,0 +170743178528,219,0 +170743178577,219,0 +170743178627,220,0 +170743178675,221,0 +170743178723,220,0 +170743178771,221,0 +170743178820,223,0 +170743178868,223,0 +170743178916,223,0 +170743178964,225,0 +170743179014,229,0 +170743179062,230,0 +170743179111,231,0 +170743179159,232,0 +170743179209,236,0 +170743179257,237,0 +170743179305,236,0 +170743179354,243,0 +170743179402,241,0 +170743179451,243,0 +170743179499,224,0 +170743179547,219,0 +170743179595,219,0 +170743179643,219,0 +170743179693,219,0 +170743179741,219,0 +170743179789,220,0 +170743179837,220,0 +170743179885,221,0 +170743179933,222,0 +170743179981,222,0 +170743180029,223,0 +170743180077,224,0 +170743180125,225,0 +170743180174,228,0 +170743180222,230,0 +170743180270,231,0 +170743180318,232,0 +170743180366,234,0 +170743180414,237,0 +170743180464,239,0 +170743180512,243,0 +170743180561,244,0 +170743180609,223,0 +170743180657,220,0 +170743180705,219,0 +170743180753,219,0 +170743180801,219,0 +170743180851,219,0 +170743180900,219,0 +170743180948,219,0 +170743180996,219,0 +170743181044,220,0 +170743181092,220,0 +170743181140,221,0 +170743181188,222,0 +170743181236,222,0 +170743181284,223,0 +170743181332,225,0 +170743181380,226,0 +170743181429,230,0 +170743181477,232,0 +170743181525,233,0 +170743181573,237,0 +170743181621,243,0 +170743181669,244,0 +170743181717,223,0 +170743181765,220,0 +170743181813,219,0 +170743181861,219,0 +170743181909,218,0 +170743181958,219,0 +170743182006,219,0 +170743182054,219,0 +170743182102,219,0 +170743182152,218,0 +170743182200,219,0 +170743182248,219,0 +170743182297,219,0 +170743182345,219,0 +170743182393,221,0 +170743182443,222,0 +170743182491,225,0 +170743182539,227,0 +170743182587,231,0 +170743182636,233,0 +170743182686,235,0 +170743182735,238,0 +170743182783,246,0 +170743182831,243,0 +170743182879,220,0 +170743182927,219,0 +170743182975,219,0 +170743183023,219,0 +170743183071,219,0 +170743183119,219,0 +170743183167,218,0 +170743183215,219,0 +170743183263,218,0 +170743183311,219,0 +170743183359,219,0 +170743183407,219,0 +170743183455,220,0 +170743183503,221,0 +170743183552,222,0 +170743183600,224,0 +170743183648,227,0 +170743183696,228,0 +170743183744,231,0 +170743183792,234,0 +170743183840,236,0 +170743183888,244,0 +170743183938,245,0 +170743183986,224,0 +170743184034,219,0 +170743184082,218,0 +170743184130,219,0 +170743184177,218,0 +170743184225,218,0 +170743184273,219,0 +170743184323,219,0 +170743184371,218,0 +170743184419,219,0 +170743184467,219,0 +170743184516,219,0 +170743184566,219,0 +170743184614,219,0 +170743184663,219,0 +170743184713,219,0 +170743184761,219,0 +170743184810,219,0 +170743184860,219,0 +170743184908,218,0 +170743184958,223,0 +170743185005,242,0 +170743185055,245,0 +170743185103,223,0 +170743185151,219,0 +170743185201,219,0 +170743185248,219,0 +170743185296,219,0 +170743185344,219,0 +170743185394,219,0 +170743185442,219,0 +170743185491,219,0 +170743185539,219,0 +170743185588,219,0 +170743185635,220,0 +170743185683,219,0 +170743185731,219,0 +170743185779,219,0 +170743185829,219,0 +170743185877,219,0 +170743185925,219,0 +170743185974,220,0 +170743186022,219,0 +170743186070,222,0 +170743186118,240,0 +170743186166,242,0 +170743186214,223,0 +170743186262,219,0 +170743186310,219,0 +170743186360,219,0 +170743186408,219,0 +170743186457,220,0 +170743186505,219,0 +170743186555,219,0 +170743186603,219,0 +170743186651,219,0 +170743186699,220,0 +170743186747,221,0 +170743186795,221,0 +170743186843,222,0 +170743186890,222,0 +170743186938,226,0 +170743186986,227,0 +170743187034,230,0 +170743187082,232,0 +170743187130,234,0 +170743187180,237,0 +170743187228,237,0 +170743187276,239,0 +170743187324,219,0 +170743187372,217,0 +170743187421,217,0 +170743187471,216,0 +170743187519,216,0 +170743187568,216,0 +170743187616,217,0 +170743187666,216,0 +170743187714,216,0 +170743187762,216,0 +170743187811,216,0 +170743187861,217,0 +170743187909,218,0 +170743187957,218,0 +170743188004,220,0 +170743188052,221,0 +170743188102,223,0 +170743188151,226,0 +170743188201,227,0 +170743188249,229,0 +170743188297,228,0 +170743188345,241,0 +170743188394,244,0 +170743188444,221,0 +170743188492,218,0 +170743188540,217,0 +170743188588,218,0 +170743188636,217,0 +170743188684,217,0 +170743188731,218,0 +170743188781,217,0 +170743188830,217,0 +170743188878,218,0 +170743188926,217,0 +170743188974,217,0 +170743189022,217,0 +170743189070,217,0 +170743189118,217,0 +170743189166,217,0 +170743189214,218,0 +170743189262,217,0 +170743189310,218,0 +170743189358,217,0 +170743189407,218,0 +170743189457,241,0 +170743189504,246,0 +170743189554,220,0 +170743189602,219,0 +170743189650,218,0 +170743189698,218,0 +170743189747,218,0 +170743189795,218,0 +170743189845,218,0 +170743189893,218,0 +170743189941,217,0 +170743189989,218,0 +170743190036,218,0 +170743190084,217,0 +170743190132,217,0 +170743190180,217,0 +170743190230,218,0 +170743190277,218,0 +170743190327,218,0 +170743190375,221,0 +170743190423,221,0 +170743190471,223,0 +170743190520,225,0 +170743190568,242,0 +170743190616,244,0 +170743190665,221,0 +170743190715,220,0 +170743190764,220,0 +170743190812,220,0 +170743190862,220,0 +170743190910,220,0 +170743190958,220,0 +170743191006,220,0 +170743191054,220,0 +170743191102,220,0 +170743191150,220,0 +170743191198,220,0 +170743191247,220,0 +170743191295,220,0 +170743191343,220,0 +170743191393,220,0 +170743191441,220,0 +170743191489,220,0 +170743191538,220,0 +170743191586,220,0 +170743191634,220,0 +170743191682,223,0 +170743191732,243,0 +170743191781,245,0 +170743191829,222,0 +170743191879,220,0 +170743191927,220,0 +170743191975,220,0 +170743192024,220,0 +170743192074,219,0 +170743192123,220,0 +170743192171,220,0 +170743192219,220,0 +170743192267,220,0 +170743192315,220,0 +170743192363,220,0 +170743192412,220,0 +170743192460,219,0 +170743192508,220,0 +170743192556,220,0 +170743192603,220,0 +170743192651,220,0 +170743192699,220,0 +170743192747,222,0 +170743192797,242,0 +170743192844,244,0 +170743192892,243,0 +170743192942,219,0 +170743192991,218,0 +170743193041,217,0 +170743193089,217,0 +170743193138,217,0 +170743193186,217,0 +170743193236,217,0 +170743193283,217,0 +170743193331,217,0 +170743193379,217,0 +170743193427,217,0 +170743193476,217,0 +170743193524,217,0 +170743193572,217,0 +170743193622,217,0 +170743193671,217,0 +170743193719,218,0 +170743193769,219,0 +170743193817,221,0 +170743193865,224,0 +170743193913,233,0 +170743193962,243,0 +170743194012,244,0 +170743194061,221,0 +170743194109,219,0 +170743194157,219,0 +170743194207,219,0 +170743194256,219,0 +170743194304,219,0 +170743194352,219,0 +170743194400,219,0 +170743194448,219,0 +170743194496,219,0 +170743194544,219,0 +170743194592,219,0 +170743194640,219,0 +170743194688,219,0 +170743194736,219,0 +170743194785,219,0 +170743194835,219,0 +170743194884,220,0 +170743194932,223,0 +170743194982,227,0 +170743195030,221,0 +170743195078,242,0 +170743195127,244,0 +170743195175,222,0 +170743195223,218,0 +170743195271,218,0 +170743195319,218,0 +170743195369,218,0 +170743195417,217,0 +170743195465,218,0 +170743195514,218,0 +170743195562,218,0 +170743195612,218,0 +170743195660,218,0 +170743195708,218,0 +170743195756,219,0 +170743195805,220,0 +170743195855,221,0 +170743195904,223,0 +170743195954,226,0 +170743196002,229,0 +170743196050,231,0 +170743196099,233,0 +170743196147,234,0 +170743196197,243,0 +170743196246,245,0 +170743196296,223,0 +170743196344,219,0 +170743196393,219,0 +170743196443,219,0 +170743196490,218,0 +170743196538,218,0 +170743196588,219,0 +170743196636,218,0 +170743196684,218,0 +170743196732,219,0 +170743196780,218,0 +170743196829,219,0 +170743196877,218,0 +170743196925,218,0 +170743196975,218,0 +170743197023,218,0 +170743197071,218,0 +170743197119,219,0 +170743197167,218,0 +170743197215,219,0 +170743197263,220,0 +170743197311,243,0 +170743197360,245,0 +170743197408,222,0 +170743197456,219,0 +170743197504,219,0 +170743197552,219,0 +170743197600,219,0 +170743197648,219,0 +170743197697,219,0 +170743197745,219,0 +170743197795,218,0 +170743197844,219,0 +170743197892,219,0 +170743197940,219,0 +170743197988,219,0 +170743198036,219,0 +170743198084,221,0 +170743198132,221,0 +170743198182,224,0 +170743198230,227,0 +170743198277,231,0 +170743198325,232,0 +170743198373,230,0 +170743198421,242,0 +170743198471,246,0 +170743198520,225,0 +170743198568,219,0 +170743198618,219,0 +170743198666,219,0 +170743198715,219,0 +170743198765,219,0 +170743198813,219,0 +170743198861,219,0 +170743198910,219,0 +170743198958,219,0 +170743199006,219,0 +170743199054,219,0 +170743199102,219,0 +170743199150,219,0 +170743199197,219,0 +170743199245,219,0 +170743199293,220,0 +170743199341,222,0 +170743199389,226,0 +170743199437,229,0 +170743199485,232,0 +170743199533,243,0 +170743199581,246,0 +170743199629,221,0 +170743199678,218,0 +170743199726,218,0 +170743199776,218,0 +170743199824,218,0 +170743199872,218,0 +170743199919,218,0 +170743199967,218,0 +170743200015,218,0 +170743200063,218,0 +170743200111,218,0 +170743200159,218,0 +170743200207,218,0 +170743200257,218,0 +170743200306,220,0 +170743200354,220,0 +170743200404,221,0 +170743200452,223,0 +170743200500,225,0 +170743200548,229,0 +170743200596,232,0 +170743200645,242,0 +170743200693,245,0 +170743200741,221,0 +170743200789,219,0 +170743200837,218,0 +170743200885,218,0 +170743200934,218,0 +170743200982,217,0 +170743201030,218,0 +170743201080,218,0 +170743201129,218,0 +170743201179,218,0 +170743201227,219,0 +170743201275,218,0 +170743201323,218,0 +170743201372,218,0 +170743201420,219,0 +170743201468,220,0 +170743201518,221,0 +170743201565,222,0 +170743201613,225,0 +170743201661,228,0 +170743201709,231,0 +170743201759,243,0 +170743201807,244,0 +170743201855,221,0 +170743201903,219,0 +170743201951,218,0 +170743201999,218,0 +170743202047,218,0 +170743202095,218,0 +170743202144,218,0 +170743202192,218,0 +170743202240,218,0 +170743202289,218,0 +170743202339,218,0 +170743202389,218,0 +170743202437,218,0 +170743202485,219,0 +170743202532,220,0 +170743202580,220,0 +170743202630,221,0 +170743202678,223,0 +170743202726,226,0 +170743202774,229,0 +170743202823,232,0 +170743202871,234,0 +170743202919,242,0 +170743202967,247,0 +170743203015,222,0 +170743203063,218,0 +170743203111,218,0 +170743203158,218,0 +170743203206,218,0 +170743203254,218,0 +170743203302,218,0 +170743203350,217,0 +170743203398,218,0 +170743203446,218,0 +170743203494,218,0 +170743203541,218,0 +170743203591,218,0 +170743203639,218,0 +170743203687,219,0 +170743203735,220,0 +170743203783,220,0 +170743203830,223,0 +170743203878,226,0 +170743203926,229,0 +170743203974,232,0 +170743204022,242,0 +170743204070,245,0 +170743204118,224,0 +170743204166,219,0 +170743204215,218,0 +170743204265,218,0 +170743204313,218,0 +170743204362,218,0 +170743204410,219,0 +170743204458,218,0 +170743204506,218,0 +170743204553,218,0 +170743204603,218,0 +170743204651,218,0 +170743204700,218,0 +170743204750,218,0 +170743204799,218,0 +170743204849,218,0 +170743204897,218,0 +170743204945,218,0 +170743204993,218,0 +170743205041,218,0 +170743205089,219,0 +170743205137,241,0 +170743205184,246,0 +170743205234,224,0 +170743205282,218,0 +170743205331,218,0 +170743205379,218,0 +170743205427,218,0 +170743205475,218,0 +170743205523,218,0 +170743205571,218,0 +170743205619,218,0 +170743205669,218,0 +170743205717,218,0 +170743205765,218,0 +170743205814,218,0 +170743205862,218,0 +170743205910,218,0 +170743205958,218,0 +170743206006,218,0 +170743206054,218,0 +170743206102,218,0 +170743206150,218,0 +170743206198,219,0 +170743206247,242,0 +170743206295,246,0 +170743206343,223,0 +170743206391,219,0 +170743206439,218,0 +170743206489,218,0 +170743206538,218,0 +170743206586,218,0 +170743206634,218,0 +170743206682,218,0 +170743206730,218,0 +170743206778,218,0 +170743206827,218,0 +170743206877,218,0 +170743206925,218,0 +170743206973,218,0 +170743207022,218,0 +170743207070,218,0 +170743207120,217,0 +170743207168,218,0 +170743207217,218,0 +170743207265,218,0 +170743207313,218,0 +170743207363,239,0 +170743207411,242,0 +170743207459,231,0 +170743207507,219,0 +170743207556,218,0 +170743207604,218,0 +170743207653,218,0 +170743207703,218,0 +170743207751,218,0 +170743207799,218,0 +170743207848,218,0 +170743207896,218,0 +170743207944,218,0 +170743207992,218,0 +170743208040,218,0 +170743208088,217,0 +170743208136,218,0 +170743208186,219,0 +170743208235,219,0 +170743208283,221,0 +170743208333,222,0 +170743208381,225,0 +170743208429,229,0 +170743208478,242,0 +170743208526,245,0 +170743208574,221,0 +170743208622,219,0 +170743208671,218,0 +170743208721,218,0 +170743208769,218,0 +170743208818,218,0 +170743208866,218,0 +170743208914,218,0 +170743208962,218,0 +170743209012,218,0 +170743209061,218,0 +170743209109,218,0 +170743209157,218,0 +170743209205,218,0 +170743209253,218,0 +170743209303,219,0 +170743209352,219,0 +170743209402,219,0 +170743209450,221,0 +170743209498,223,0 +170743209545,226,0 +170743209593,242,0 +170743209641,246,0 +170743209689,222,0 +170743209739,218,0 +170743209787,217,0 +170743209836,217,0 +170743209884,217,0 +170743209932,217,0 +170743209980,217,0 +170743210028,216,0 +170743210076,216,0 +170743210124,217,0 +170743210172,217,0 +170743210220,217,0 +170743210268,217,0 +170743210315,217,0 +170743210363,217,0 +170743210411,217,0 +170743210459,217,0 +170743210507,217,0 +170743210555,217,0 +170743210605,217,0 +170743210654,217,0 +170743210704,223,0 +170743210752,243,0 +170743210800,266,0 +170743210848,224,0 +170743210896,220,0 +170743210944,220,0 +170743210991,220,0 +170743211039,219,0 +170743211087,219,0 +170743211135,219,0 +170743211183,219,0 +170743211231,219,0 +170743211279,220,0 +170743211327,220,0 +170743211375,219,0 +170743211424,219,0 +170743211474,220,0 +170743211521,220,0 +170743211569,222,0 +170743211617,223,0 +170743211667,226,0 +170743211715,229,0 +170743211763,233,0 +170743211811,231,0 +170743211858,243,0 +170743211906,245,0 +170743211954,224,0 +170743212004,218,0 +170743212052,218,0 +170743212100,218,0 +170743212148,218,0 +170743212196,218,0 +170743212244,218,0 +170743212292,218,0 +170743212339,218,0 +170743212389,220,0 +170743212438,221,0 +170743212488,222,0 +170743212538,222,0 +170743212586,224,0 +170743212634,225,0 +170743212683,227,0 +170743212731,229,0 +170743212779,233,0 +170743212828,235,0 +170743212878,234,0 +170743212926,233,0 +170743212976,242,0 +170743213024,245,0 +170743213072,224,0 +170743213121,219,0 +170743213169,219,0 +170743213217,219,0 +170743213265,218,0 +170743213313,219,0 +170743213361,218,0 +170743213409,218,0 +170743213458,219,0 +170743213506,218,0 +170743213554,218,0 +170743213602,218,0 +170743213652,218,0 +170743213700,218,0 +170743213748,218,0 +170743213797,219,0 +170743213847,219,0 +170743213896,221,0 +170743213944,224,0 +170743213993,227,0 +170743214041,229,0 +170743214089,242,0 +170743214137,244,0 +170743214187,224,0 +170743214235,219,0 +170743214284,219,0 +170743214332,219,0 +170743214380,219,0 +170743214430,218,0 +170743214479,218,0 +170743214527,219,0 +170743214575,219,0 +170743214623,221,0 +170743214671,220,0 +170743214719,222,0 +170743214768,224,0 +170743214818,225,0 +170743214866,227,0 +170743214914,229,0 +170743214962,230,0 +170743215011,232,0 +170743215059,233,0 +170743215107,232,0 +170743215155,235,0 +170743215203,242,0 +170743215253,245,0 +170743215301,222,0 +170743215349,216,0 +170743215397,216,0 +170743215445,216,0 +170743215493,216,0 +170743215541,216,0 +170743215589,216,0 +170743215638,216,0 +170743215688,216,0 +170743215737,216,0 +170743215785,216,0 +170743215833,216,0 +170743215881,216,0 +170743215929,216,0 +170743215977,216,0 +170743216025,216,0 +170743216073,216,0 +170743216121,216,0 +170743216169,216,0 +170743216217,216,0 +170743216266,217,0 +170743216316,239,0 +170743216365,245,0 +170743216413,222,0 +170743216461,217,0 +170743216509,216,0 +170743216559,216,0 +170743216607,216,0 +170743216656,216,0 +170743216704,216,0 +170743216754,216,0 +170743216802,216,0 +170743216851,216,0 +170743216899,216,0 +170743216949,216,0 +170743216997,216,0 +170743217045,216,0 +170743217093,216,0 +170743217141,216,0 +170743217189,217,0 +170743217237,218,0 +170743217286,220,0 +170743217334,223,0 +170743217384,226,0 +170743217432,242,0 +170743217480,246,0 +170743217528,224,0 +170743217576,218,0 +170743217625,218,0 +170743217673,218,0 +170743217723,218,0 +170743217770,218,0 +170743217818,218,0 +170743217868,218,0 +170743217916,218,0 +170743217964,218,0 +170743218013,218,0 +170743218061,218,0 +170743218109,218,0 +170743218157,219,0 +170743218205,219,0 +170743218254,219,0 +170743218302,221,0 +170743218352,222,0 +170743218400,225,0 +170743218447,227,0 +170743218495,229,0 +170743218543,238,0 +170743218591,242,0 +170743218639,241,0 +170743218687,221,0 +170743218735,219,0 +170743218783,219,0 +170743218831,219,0 +170743218878,219,0 +170743218926,219,0 +170743218974,219,0 +170743219022,219,0 +170743219070,219,0 +170743219118,219,0 +170743219167,219,0 +170743219215,219,0 +170743219263,219,0 +170743219311,219,0 +170743219359,220,0 +170743219407,222,0 +170743219455,224,0 +170743219502,226,0 +170743219550,228,0 +170743219598,229,0 +170743219646,232,0 +170743219694,243,0 +170743219742,243,0 +170743219790,222,0 +170743219838,218,0 +170743219886,218,0 +170743219936,218,0 +170743219984,218,0 +170743220033,217,0 +170743220081,218,0 +170743220129,218,0 +170743220177,218,0 +170743220225,217,0 +170743220273,218,0 +170743220321,219,0 +170743220371,220,0 +170743220418,220,0 +170743220468,221,0 +170743220518,221,0 +170743220567,225,0 +170743220615,228,0 +170743220665,232,0 +170743220712,232,0 +170743220762,234,0 +170743220810,242,0 +170743220859,244,0 +170743220909,222,0 +170743220957,218,0 +170743221006,217,0 +170743221054,217,0 +170743221102,217,0 +170743221150,217,0 +170743221198,217,0 +170743221246,217,0 +170743221296,217,0 +170743221344,217,0 +170743221393,217,0 +170743221441,218,0 +170743221491,217,0 +170743221539,217,0 +170743221587,217,0 +170743221635,217,0 +170743221683,217,0 +170743221732,217,0 +170743221782,218,0 +170743221830,221,0 +170743221878,225,0 +170743221926,243,0 +170743221973,244,0 +170743222021,222,0 +170743222069,218,0 +170743222117,218,0 +170743222165,218,0 +170743222215,218,0 +170743222264,218,0 +170743222312,218,0 +170743222362,217,0 +170743222411,218,0 +170743222461,218,0 +170743222509,218,0 +170743222557,218,0 +170743222605,220,0 +170743222653,220,0 +170743222700,221,0 +170743222750,223,0 +170743222798,225,0 +170743222847,228,0 +170743222895,231,0 +170743222945,231,0 +170743222993,235,0 +170743223041,241,0 +170743223090,244,0 +170743223138,224,0 +170743223188,218,0 +170743223236,219,0 +170743223284,218,0 +170743223332,218,0 +170743223381,219,0 +170743223429,218,0 +170743223479,218,0 +170743223527,218,0 +170743223575,218,0 +170743223623,218,0 +170743223671,218,0 +170743223719,218,0 +170743223768,218,0 +170743223816,218,0 +170743223866,219,0 +170743223913,218,0 +170743223961,220,0 +170743224009,223,0 +170743224059,225,0 +170743224107,228,0 +170743224155,241,0 +170743224203,243,0 +170743224251,223,0 +170743224298,219,0 +170743224347,218,0 +170743224394,218,0 +170743224442,218,0 +170743224490,218,0 +170743224538,218,0 +170743224586,218,0 +170743224636,218,0 +170743224684,218,0 +170743224732,218,0 +170743224780,218,0 +170743224828,218,0 +170743224877,218,0 +170743224925,219,0 +170743224975,220,0 +170743225022,221,0 +170743225072,223,0 +170743225120,227,0 +170743225168,230,0 +170743225216,232,0 +170743225264,241,0 +170743225312,244,0 +170743225360,224,0 +170743225409,219,0 +170743225459,218,0 +170743225507,218,0 +170743225555,218,0 +170743225604,218,0 +170743225654,218,0 +170743225703,218,0 +170743225751,218,0 +170743225801,218,0 +170743225850,218,0 +170743225900,218,0 +170743225948,218,0 +170743225997,218,0 +170743226045,218,0 +170743226095,218,0 +170743226144,218,0 +170743226192,218,0 +170743226240,218,0 +170743226290,218,0 +170743226339,220,0 +170743226387,239,0 +170743226435,245,0 +170743226485,224,0 +170743226533,218,0 +170743226582,218,0 +170743226630,218,0 +170743226678,218,0 +170743226726,219,0 +170743226774,219,0 +170743226822,218,0 +170743226870,218,0 +170743226918,219,0 +170743226967,218,0 +170743227017,218,0 +170743227065,218,0 +170743227114,219,0 +170743227164,220,0 +170743227213,220,0 +170743227263,222,0 +170743227312,225,0 +170743227362,227,0 +170743227411,231,0 +170743227459,232,0 +170743227507,243,0 +170743227555,245,0 +170743227603,220,0 +170743227651,220,0 +170743227699,219,0 +170743227747,219,0 +170743227795,219,0 +170743227843,219,0 +170743227891,218,0 +170743227940,219,0 +170743227990,219,0 +170743228039,219,0 +170743228089,219,0 +170743228137,219,0 +170743228186,220,0 +170743228234,221,0 +170743228282,222,0 +170743228330,222,0 +170743228378,224,0 +170743228426,228,0 +170743228474,229,0 +170743228522,232,0 +170743228571,233,0 +170743228621,241,0 +170743228671,245,0 +170743228718,224,0 +170743228767,219,0 +170743228814,219,0 +170743228862,218,0 +170743228910,218,0 +170743228958,218,0 +170743229008,218,0 +170743229056,218,0 +170743229104,218,0 +170743229152,219,0 +170743229199,218,0 +170743229248,218,0 +170743229296,219,0 +170743229344,219,0 +170743229393,219,0 +170743229441,218,0 +170743229489,218,0 +170743229537,219,0 +170743229584,222,0 +170743229632,225,0 +170743229680,227,0 +170743229730,241,0 +170743229777,245,0 +170743229825,220,0 +170743229875,219,0 +170743229924,219,0 +170743229972,218,0 +170743230020,218,0 +170743230070,218,0 +170743230118,218,0 +170743230165,218,0 +170743230213,218,0 +170743230261,218,0 +170743230309,218,0 +170743230357,218,0 +170743230406,218,0 +170743230454,218,0 +170743230502,218,0 +170743230550,219,0 +170743230598,219,0 +170743230646,220,0 +170743230694,221,0 +170743230742,224,0 +170743230790,228,0 +170743230838,231,0 +170743230885,243,0 +170743230933,242,0 +170743230981,221,0 +170743231029,218,0 +170743231077,218,0 +170743231125,218,0 +170743231173,218,0 +170743231221,218,0 +170743231269,218,0 +170743231317,217,0 +170743231364,218,0 +170743231412,218,0 +170743231460,218,0 +170743231508,218,0 +170743231556,218,0 +170743231604,218,0 +170743231652,218,0 +170743231701,219,0 +170743231749,220,0 +170743231797,220,0 +170743231845,223,0 +170743231893,226,0 +170743231941,229,0 +170743231989,241,0 +170743232038,244,0 +170743232086,223,0 +170743232134,218,0 +170743232182,218,0 +170743232230,217,0 +170743232277,218,0 +170743232325,217,0 +170743232373,217,0 +170743232421,217,0 +170743232469,218,0 +170743232517,217,0 +170743232566,217,0 +170743232614,217,0 +170743232662,217,0 +170743232710,218,0 +170743232758,219,0 +170743232807,219,0 +170743232855,221,0 +170743232903,222,0 +170743232951,226,0 +170743232999,231,0 +170743233047,232,0 +170743233094,240,0 +170743233142,245,0 +170743233190,224,0 +170743233238,219,0 +170743233286,218,0 +170743233334,219,0 +170743233382,219,0 +170743233430,219,0 +170743233478,219,0 +170743233525,219,0 +170743233575,218,0 +170743233624,218,0 +170743233672,219,0 +170743233720,219,0 +170743233768,220,0 +170743233816,222,0 +170743233864,223,0 +170743233912,223,0 +170743233961,226,0 +170743234009,228,0 +170743234058,229,0 +170743234108,229,0 +170743234156,232,0 +170743234204,241,0 +170743234251,246,0 +170743234299,225,0 +170743234347,218,0 +170743234395,217,0 +170743234443,217,0 +170743234491,216,0 +170743234539,216,0 +170743234587,217,0 +170743234635,217,0 +170743234682,216,0 +170743234730,216,0 +170743234778,217,0 +170743234826,217,0 +170743234874,216,0 +170743234923,216,0 +170743234971,217,0 +170743235019,217,0 +170743235067,216,0 +170743235115,217,0 +170743235163,217,0 +170743235211,219,0 +170743235259,222,0 +170743235306,227,0 +170743235354,242,0 +170743235402,244,0 +170743235450,223,0 +170743235498,218,0 +170743235546,218,0 +170743235594,218,0 +170743235643,218,0 +170743235691,218,0 +170743235739,217,0 +170743235787,218,0 +170743235835,218,0 +170743235883,218,0 +170743235931,218,0 +170743235978,218,0 +170743236028,218,0 +170743236076,218,0 +170743236124,218,0 +170743236172,218,0 +170743236219,218,0 +170743236267,219,0 +170743236315,221,0 +170743236363,225,0 +170743236411,228,0 +170743236459,240,0 +170743236507,245,0 +170743236555,224,0 +170743236603,219,0 +170743236650,218,0 +170743236698,219,0 +170743236746,219,0 +170743236794,219,0 +170743236844,219,0 +170743236892,219,0 +170743236939,219,0 +170743236987,219,0 +170743237037,219,0 +170743237085,219,0 +170743237133,219,0 +170743237180,219,0 +170743237228,220,0 +170743237276,220,0 +170743237324,222,0 +170743237372,225,0 +170743237420,227,0 +170743237468,231,0 +170743237516,233,0 +170743237564,240,0 +170743237611,245,0 +170743237661,224,0 +170743237709,219,0 +170743237757,219,0 +170743237804,219,0 +170743237852,219,0 +170743237900,219,0 +170743237948,219,0 +170743237996,218,0 +170743238044,218,0 +170743238092,218,0 +170743238140,218,0 +170743238187,219,0 +170743238237,219,0 +170743238286,219,0 +170743238334,219,0 +170743238382,219,0 +170743238431,221,0 +170743238479,222,0 +170743238527,223,0 +170743238577,227,0 +170743238625,229,0 +170743238674,230,0 +170743238722,241,0 +170743238770,236,0 +170743238818,220,0 +170743238866,218,0 +170743238914,218,0 +170743238962,218,0 +170743239009,219,0 +170743239057,218,0 +170743239105,218,0 +170743239153,218,0 +170743239201,218,0 +170743239249,218,0 +170743239297,218,0 +170743239345,218,0 +170743239394,218,0 +170743239442,218,0 +170743239490,218,0 +170743239538,219,0 +170743239586,220,0 +170743239633,223,0 +170743239683,225,0 +170743239731,227,0 +170743239780,232,0 +170743239828,244,0 +170743239876,257,0 +170743239924,222,0 +170743239973,218,0 +170743240023,217,0 +170743240071,217,0 +170743240119,218,0 +170743240167,217,0 +170743240214,217,0 +170743240262,217,0 +170743240310,217,0 +170743240360,217,0 +170743240408,217,0 +170743240456,217,0 +170743240503,217,0 +170743240551,217,0 +170743240599,217,0 +170743240647,217,0 +170743240695,217,0 +170743240743,218,0 +170743240791,218,0 +170743240839,220,0 +170743240887,224,0 +170743240936,245,0 +170743240984,242,0 +170743241032,224,0 +170743241081,219,0 +170743241129,219,0 +170743241177,220,0 +170743241225,219,0 +170743241273,219,0 +170743241321,219,0 +170743241370,218,0 +170743241418,218,0 +170743241466,219,0 +170743241514,218,0 +170743241562,218,0 +170743241610,219,0 +170743241657,220,0 +170743241705,220,0 +170743241753,222,0 +170743241801,223,0 +170743241849,226,0 +170743241897,227,0 +170743241945,231,0 +170743241993,234,0 +170743242041,241,0 +170743242090,243,0 +170743242140,224,0 +170743242189,218,0 +170743242239,219,0 +170743242287,218,0 +170743242336,218,0 +170743242385,218,0 +170743242435,218,0 +170743242483,218,0 +170743242531,218,0 +170743242579,219,0 +170743242626,218,0 +170743242674,218,0 +170743242722,218,0 +170743242772,218,0 +170743242820,218,0 +170743242867,218,0 +170743242917,218,0 +170743242967,218,0 +170743243016,219,0 +170743243064,221,0 +170743243112,224,0 +170743243160,272,1 +170743243258,220,0 +170743243308,219,0 +170743243358,218,0 +170743243405,218,0 +170743243455,218,0 +170743243505,218,0 +170743243554,218,0 +170743243602,218,0 +170743243650,218,0 +170743243698,218,0 +170743243746,218,0 +170743243795,218,0 +170743243845,218,0 +170743243894,218,0 +170743243944,218,0 +170743243993,218,0 +170743244043,218,0 +170743244092,218,0 +170743244140,219,0 +170743244190,219,0 +170743244238,222,0 +170743244287,240,0 +170743244335,245,0 +170743244385,224,0 +170743244433,218,0 +170743244482,218,0 +170743244530,218,0 +170743244578,218,0 +170743244628,218,0 +170743244676,218,0 +170743244725,218,0 +170743244775,218,0 +170743244823,219,0 +170743244872,219,0 +170743244920,218,0 +170743244969,218,0 +170743245017,218,0 +170743245065,220,0 +170743245115,220,0 +170743245164,222,0 +170743245214,225,0 +170743245262,225,0 +170743245310,228,0 +170743245358,232,0 +170743245406,244,0 +170743245455,246,0 +170743245503,224,0 +170743245551,218,0 +170743245599,218,0 +170743245649,218,0 +170743245697,218,0 +170743245745,218,0 +170743245793,218,0 +170743245841,217,0 +170743245889,218,0 +170743245938,218,0 +170743245988,218,0 +170743246036,218,0 +170743246085,218,0 +170743246133,218,0 +170743246181,218,0 +170743246229,218,0 +170743246278,218,0 +170743246326,218,0 +170743246376,220,0 +170743246424,223,0 +170743246472,226,0 +170743246521,243,0 +170743246571,244,0 +170743246619,225,0 +170743246668,218,0 +170743246716,218,0 +170743246764,218,0 +170743246814,218,0 +170743246862,218,0 +170743246910,218,0 +170743246959,217,0 +170743247007,218,0 +170743247055,217,0 +170743247105,217,0 +170743247153,218,0 +170743247201,218,0 +170743247248,218,0 +170743247296,218,0 +170743247346,218,0 +170743247394,218,0 +170743247442,218,0 +170743247490,219,0 +170743247537,222,0 +170743247585,226,0 +170743247633,241,0 +170743247681,244,0 +170743247729,224,0 +170743247778,218,0 +170743247828,218,0 +170743247876,218,0 +170743247924,218,0 +170743247973,218,0 +170743248023,218,0 +170743248072,218,0 +170743248122,218,0 +170743248172,218,0 +170743248219,218,0 +170743248267,218,0 +170743248315,218,0 +170743248363,218,0 +170743248411,218,0 +170743248459,218,0 +170743248507,218,0 +170743248555,218,0 +170743248603,218,0 +170743248650,220,0 +170743248698,223,0 +170743248746,242,0 +170743248794,245,0 +170743248844,224,0 +170743248892,219,0 +170743248940,218,0 +170743248988,218,0 +170743249035,218,0 +170743249085,218,0 +170743249133,218,0 +170743249183,218,0 +170743249232,218,0 +170743249282,218,0 +170743249330,218,0 +170743249379,218,0 +170743249427,218,0 +170743249475,218,0 +170743249524,218,0 +170743249572,218,0 +170743249622,218,0 +170743249671,218,0 +170743249721,218,0 +170743249770,218,0 +170743249820,219,0 +170743249870,241,0 +170743249917,245,0 +170743249967,221,0 +170743250015,219,0 +170743250063,218,0 +170743250111,218,0 +170743250159,218,0 +170743250208,218,0 +170743250256,218,0 +170743250304,218,0 +170743250354,218,0 +170743250403,218,0 +170743250453,218,0 +170743250502,218,0 +170743250550,218,0 +170743250600,218,0 +170743250648,218,0 +170743250697,218,0 +170743250745,218,0 +170743250793,218,0 +170743250841,218,0 +170743250889,218,0 +170743250937,218,0 +170743250987,218,0 +170743251036,218,0 +170743251086,218,0 +170743251134,218,0 +170743251183,218,0 +170743251233,218,0 +170743251281,219,0 +170743251330,219,0 +170743251380,221,0 +170743251429,223,0 +170743251477,225,0 +170743251525,229,0 +170743251573,243,0 +170743251621,243,0 +170743251669,222,0 +170743251717,219,0 +170743251765,219,0 +170743251814,218,0 +170743251862,218,0 +170743251910,218,0 +170743251958,218,0 +170743252006,218,0 +170743252053,219,0 +170743252101,218,0 +170743252149,218,0 +170743252199,218,0 +170743252247,218,0 +170743252294,219,0 +170743252342,219,0 +170743252390,219,0 +170743252438,219,0 +170743252488,220,0 +170743252536,224,0 +170743252584,225,0 +170743252633,228,0 +170743252681,242,0 +170743252731,246,0 +170743252779,223,0 +170743252828,218,0 +170743252878,218,0 +170743252926,218,0 +170743252974,218,0 +170743253022,218,0 +170743253071,218,0 +170743253121,218,0 +170743253169,218,0 +170743253218,218,0 +170743253266,218,0 +170743253314,218,0 +170743253362,218,0 +170743253411,219,0 +170743253461,219,0 +170743253509,221,0 +170743253557,223,0 +170743253606,227,0 +170743253654,229,0 +170743253704,232,0 +170743253753,234,0 +170743253801,245,0 +170743253849,245,0 +170743253897,222,0 +170743253945,219,0 +170743253993,219,0 +170743254042,218,0 +170743254092,219,0 +170743254140,219,0 +170743254188,218,0 +170743254236,218,0 +170743254284,218,0 +170743254332,218,0 +170743254380,218,0 +170743254428,218,0 +170743254476,218,0 +170743254525,218,0 +170743254575,218,0 +170743254624,220,0 +170743254674,220,0 +170743254723,222,0 +170743254771,225,0 +170743254821,228,0 +170743254869,230,0 +170743254918,243,0 +170743254966,246,0 +170743255016,224,0 +170743255065,218,0 +170743255113,218,0 +170743255161,218,0 +170743255211,218,0 +170743255259,218,0 +170743255308,218,0 +170743255357,218,0 +170743255405,218,0 +170743255453,218,0 +170743255503,218,0 +170743255551,218,0 +170743255599,218,0 +170743255647,218,0 +170743255695,218,0 +170743255744,217,0 +170743255794,218,0 +170743255842,218,0 +170743255890,218,0 +170743255939,218,0 +170743255987,220,0 +170743256035,242,0 +170743256083,245,0 +170743256131,224,0 +170743256179,219,0 +170743256227,219,0 +170743256275,219,0 +170743256323,219,0 +170743256371,219,0 +170743256418,220,0 +170743256466,220,0 +170743256514,220,0 +170743256562,219,0 +170743256610,220,0 +170743256658,219,0 +170743256706,219,0 +170743256754,219,0 +170743256801,221,0 +170743256849,221,0 +170743256897,223,0 +170743256945,226,0 +170743256995,228,0 +170743257044,231,0 +170743257092,233,0 +170743257142,242,0 +170743257189,246,0 +170743257237,224,0 +170743257287,219,0 +170743257335,219,0 +170743257383,219,0 +170743257432,218,0 +170743257480,219,0 +170743257530,219,0 +170743257578,219,0 +170743257627,219,0 +170743257675,219,0 +170743257723,219,0 +170743257771,219,0 +170743257819,219,0 +170743257867,219,0 +170743257915,219,0 +170743257962,219,0 +170743258010,219,0 +170743258058,220,0 +170743258106,223,0 +170743258154,224,0 +170743258202,229,0 +170743258250,229,0 +170743258298,244,0 +170743258345,243,0 +170743258393,221,0 +170743258441,218,0 +170743258489,219,0 +170743258537,218,0 +170743258585,218,0 +170743258633,218,0 +170743258682,218,0 +170743258730,218,0 +170743258778,218,0 +170743258826,218,0 +170743258874,218,0 +170743258922,218,0 +170743258971,218,0 +170743259021,218,0 +170743259069,218,0 +170743259117,219,0 +170743259165,219,0 +170743259214,222,0 +170743259264,224,0 +170743259312,228,0 +170743259360,226,0 +170743259408,243,0 +170743259456,244,0 +170743259504,223,0 +170743259553,218,0 +170743259601,219,0 +170743259651,218,0 +170743259699,218,0 +170743259748,219,0 +170743259796,218,0 +170743259846,218,0 +170743259894,218,0 +170743259942,218,0 +170743259990,218,0 +170743260038,218,0 +170743260086,218,0 +170743260135,219,0 +170743260183,218,0 +170743260233,218,0 +170743260281,218,0 +170743260330,219,0 +170743260378,219,0 +170743260426,219,0 +170743260476,220,0 +170743260524,247,0 +170743260572,245,0 +170743260621,222,0 +170743260671,218,0 +170743260719,218,0 +170743260767,218,0 +170743260815,218,0 +170743260862,219,0 +170743260910,219,0 +170743260958,218,0 +170743261006,219,0 +170743261054,219,0 +170743261104,219,0 +170743261153,219,0 +170743261203,218,0 +170743261251,219,0 +170743261298,218,0 +170743261346,218,0 +170743261395,218,0 +170743261443,218,0 +170743261492,219,0 +170743261540,219,0 +170743261589,220,0 +170743261637,242,0 +170743261685,245,0 +170743261735,222,0 +170743261784,219,0 +170743261834,218,0 +170743261882,218,0 +170743261931,218,0 +170743261981,218,0 +170743262030,218,0 +170743262078,218,0 +170743262126,218,0 +170743262174,219,0 +170743262224,218,0 +170743262272,218,0 +170743262319,218,0 +170743262369,218,0 +170743262417,218,0 +170743262466,220,0 +170743262516,220,0 +170743262564,221,0 +170743262613,224,0 +170743262661,227,0 +170743262709,230,0 +170743262757,243,0 +170743262805,245,0 +170743262855,224,0 +170743262903,219,0 +170743262951,219,0 +170743262999,218,0 +170743263048,219,0 +170743263096,219,0 +170743263146,219,0 +170743263194,218,0 +170743263243,219,0 +170743263293,220,0 +170743263341,220,0 +170743263390,221,0 +170743263438,221,0 +170743263486,223,0 +170743263536,223,0 +170743263584,225,0 +170743263632,227,0 +170743263681,230,0 +170743263729,232,0 +170743263779,236,0 +170743263828,236,0 +170743263876,244,0 +170743263924,243,0 +170743263974,225,0 +170743264023,219,0 +170743264071,219,0 +170743264119,219,0 +170743264167,219,0 +170743264215,219,0 +170743264263,219,0 +170743264312,219,0 +170743264360,220,0 +170743264410,219,0 +170743264458,220,0 +170743264506,219,0 +170743264554,220,0 +170743264602,219,0 +170743264651,220,0 +170743264701,219,0 +170743264751,220,0 +170743264798,219,0 +170743264848,220,0 +170743264898,220,0 +170743264946,222,0 +170743264993,244,0 +170743265041,244,0 +170743265091,224,0 +170743265139,219,0 +170743265187,219,0 +170743265235,219,0 +170743265283,219,0 +170743265331,219,0 +170743265379,219,0 +170743265428,219,0 +170743265476,219,0 +170743265526,219,0 +170743265574,219,0 +170743265622,219,0 +170743265670,219,0 +170743265717,219,0 +170743265765,219,0 +170743265813,219,0 +170743265863,219,0 +170743265911,219,0 +170743265959,220,0 +170743266008,223,0 +170743266058,226,0 +170743266107,242,0 +170743266157,246,0 +170743266205,225,0 +170743266253,219,0 +170743266301,219,0 +170743266350,218,0 +170743266398,218,0 +170743266446,218,0 +170743266496,218,0 +170743266545,218,0 +170743266595,218,0 +170743266643,219,0 +170743266691,218,0 +170743266740,218,0 +170743266788,219,0 +170743266836,219,0 +170743266886,219,0 +170743266934,219,0 +170743266982,220,0 +170743267031,222,0 +170743267079,224,0 +170743267127,226,0 +170743267175,232,0 +170743267225,241,0 +170743267274,244,0 +170743267322,224,0 +170743267370,218,0 +170743267418,218,0 +170743267466,218,0 +170743267515,218,0 +170743267563,218,0 +170743267613,218,0 +170743267662,218,0 +170743267710,218,0 +170743267758,218,0 +170743267808,218,0 +170743267856,218,0 +170743267904,218,0 +170743267953,218,0 +170743268001,218,0 +170743268049,220,0 +170743268099,221,0 +170743268147,223,0 +170743268195,224,0 +170743268244,225,0 +170743268292,216,0 +170743268342,243,0 +170743268391,245,0 +170743268441,223,0 +170743268490,217,0 +170743268538,217,0 +170743268588,217,0 +170743268636,217,0 +170743268685,217,0 +170743268734,217,0 +170743268784,217,0 +170743268832,217,0 +170743268881,217,0 +170743268931,217,0 +170743268979,217,0 +170743269029,217,0 +170743269077,217,0 +170743269126,217,0 +170743269174,217,0 +170743269222,217,0 +170743269270,218,0 +170743269318,219,0 +170743269368,222,0 +170743269416,224,0 +170743269465,242,0 +170743269513,244,0 +170743269563,223,0 +170743269611,219,0 +170743269660,219,0 +170743269708,218,0 +170743269756,218,0 +170743269804,218,0 +170743269854,218,0 +170743269901,218,0 +170743269951,218,0 +170743270001,218,0 +170743270049,218,0 +170743270097,218,0 +170743270145,218,0 +170743270194,218,0 +170743270244,218,0 +170743270293,219,0 +170743270342,220,0 +170743270390,220,0 +170743270440,223,0 +170743270488,226,0 +170743270537,229,0 +170743270585,240,0 +170743270633,244,0 +170743270683,225,0 +170743270731,219,0 +170743270779,219,0 +170743270827,219,0 +170743270876,219,0 +170743270924,219,0 +170743270972,219,0 +170743271020,219,0 +170743271068,219,0 +170743271116,219,0 +170743271164,219,0 +170743271212,219,0 +170743271261,218,0 +170743271309,219,0 +170743271359,219,0 +170743271408,220,0 +170743271458,221,0 +170743271506,225,0 +170743271556,227,0 +170743271603,230,0 +170743271653,230,0 +170743271701,244,0 +170743271749,244,0 +170743271798,223,0 +170743271846,218,0 +170743271894,217,0 +170743271944,217,0 +170743271992,217,0 +170743272040,217,0 +170743272089,217,0 +170743272137,217,0 +170743272185,217,0 +170743272233,217,0 +170743272281,217,0 +170743272331,217,0 +170743272379,217,0 +170743272427,217,0 +170743272475,217,0 +170743272523,217,0 +170743272571,217,0 +170743272618,217,0 +170743272666,217,0 +170743272714,218,0 +170743272762,219,0 +170743272812,240,0 +170743272860,247,0 +170743272908,224,0 +170743272957,219,0 +170743273007,218,0 +170743273055,219,0 +170743273103,218,0 +170743273151,218,0 +170743273200,219,0 +170743273248,219,0 +170743273296,219,0 +170743273346,219,0 +170743273393,219,0 +170743273441,218,0 +170743273491,218,0 +170743273539,219,0 +170743273587,219,0 +170743273636,219,0 +170743273684,220,0 +170743273732,222,0 +170743273782,224,0 +170743273831,226,0 +170743273879,230,0 +170743273927,239,0 +170743273975,245,0 +170743274023,220,0 +170743274072,219,0 +170743274122,218,0 +170743274171,218,0 +170743274221,218,0 +170743274270,218,0 +170743274320,218,0 +170743274369,218,0 +170743274417,218,0 +170743274467,218,0 +170743274515,218,0 +170743274563,218,0 +170743274612,218,0 +170743274662,218,0 +170743274710,218,0 +170743274758,218,0 +170743274807,219,0 +170743274857,221,0 +170743274905,223,0 +170743274954,226,0 +170743275004,229,0 +170743275052,241,0 +170743275100,244,0 +170743275148,223,0 +170743275196,219,0 +170743275244,218,0 +170743275293,218,0 +170743275343,218,0 +170743275392,218,0 +170743275442,219,0 +170743275490,218,0 +170743275538,218,0 +170743275587,218,0 +170743275637,218,0 +170743275686,218,0 +170743275736,218,0 +170743275785,218,0 +170743275835,220,0 +170743275883,220,0 +170743275932,221,0 +170743275980,224,0 +170743276030,226,0 +170743276079,230,0 +170743276127,232,0 +170743276175,243,0 +170743276224,244,0 +170743276272,224,0 +170743276322,219,0 +170743276370,219,0 +170743276418,218,0 +170743276467,219,0 +170743276515,219,0 +170743276565,218,0 +170743276614,219,0 +170743276662,219,0 +170743276710,218,0 +170743276758,218,0 +170743276806,219,0 +170743276855,220,0 +170743276905,221,0 +170743276953,223,0 +170743277003,224,0 +170743277052,226,0 +170743277100,229,0 +170743277148,230,0 +170743277196,233,0 +170743277245,234,0 +170743277293,242,0 +170743277343,245,0 +170743277391,224,0 +170743277440,218,0 +170743277488,218,0 +170743277536,218,0 +170743277586,218,0 +170743277634,218,0 +170743277682,218,0 +170743277731,218,0 +170743277779,218,0 +170743277827,218,0 +170743277875,218,0 +170743277923,218,0 +170743277971,218,0 +170743278019,218,0 +170743278067,218,0 +170743278115,217,0 +170743278163,218,0 +170743278211,219,0 +170743278259,220,0 +170743278308,221,0 +170743278358,227,0 +170743278407,241,0 +170743278455,245,0 +170743278503,222,0 +170743278553,219,0 +170743278602,219,0 +170743278650,218,0 +170743278698,218,0 +170743278746,218,0 +170743278796,218,0 +170743278844,219,0 +170743278893,218,0 +170743278943,219,0 +170743278992,218,0 +170743279040,218,0 +170743279090,219,0 +170743279139,218,0 +170743279189,220,0 +170743279238,220,0 +170743279286,222,0 +170743279334,224,0 +170743279382,227,0 +170743279430,229,0 +170743279478,232,0 +170743279526,242,0 +170743279574,244,0 +170743279622,224,0 +170743279670,219,0 +170743279718,219,0 +170743279766,218,0 +170743279815,219,0 +170743279863,219,0 +170743279913,219,0 +170743279961,219,0 +170743280010,219,0 +170743280058,218,0 +170743280106,219,0 +170743280156,219,0 +170743280204,219,0 +170743280253,221,0 +170743280303,222,0 +170743280351,223,0 +170743280399,224,0 +170743280447,225,0 +170743280496,230,0 +170743280544,231,0 +170743280592,234,0 +170743280642,240,0 +170743280691,243,0 +170743280739,223,0 +170743280789,219,0 +170743280837,219,0 +170743280885,219,0 +170743280934,218,0 +170743280984,218,0 +170743281033,218,0 +170743281081,218,0 +170743281129,218,0 +170743281177,218,0 +170743281226,218,0 +170743281274,218,0 +170743281324,219,0 +170743281373,219,0 +170743281421,220,0 +170743281471,220,0 +170743281519,222,0 +170743281567,225,0 +170743281615,226,0 +170743281664,227,0 +170743281712,231,0 +170743281760,239,0 +170743281810,243,0 +170743281859,221,0 +170743281909,219,0 +170743281957,217,0 +170743282005,218,0 +170743282054,218,0 +170743282104,218,0 +170743282153,218,0 +170743282201,218,0 +170743282251,218,0 +170743282298,218,0 +170743282346,218,0 +170743282396,218,0 +170743282445,218,0 +170743282495,218,0 +170743282544,218,0 +170743282592,218,0 +170743282640,218,0 +170743282688,220,0 +170743282736,222,0 +170743282784,225,0 +170743282834,228,0 +170743282883,243,0 +170743282933,245,0 +170743282981,220,0 +170743283029,219,0 +170743283077,218,0 +170743283124,218,0 +170743283174,218,0 +170743283222,218,0 +170743283271,218,0 +170743283319,218,0 +170743283367,218,0 +170743283415,218,0 +170743283463,218,0 +170743283511,218,0 +170743283559,218,0 +170743283607,218,0 +170743283657,219,0 +170743283706,220,0 +170743283754,220,0 +170743283804,223,0 +170743283852,225,0 +170743283900,228,0 +170743283949,231,0 +170743283999,242,0 +170743284047,244,0 +170743284095,223,0 +170743284143,219,0 +170743284191,217,0 +170743284240,218,0 +170743284288,218,0 +170743284336,218,0 +170743284384,217,0 +170743284432,218,0 +170743284480,217,0 +170743284528,217,0 +170743284576,217,0 +170743284624,217,0 +170743284672,217,0 +170743284720,218,0 +170743284769,219,0 +170743284817,220,0 +170743284865,220,0 +170743284913,224,0 +170743284961,226,0 +170743285010,227,0 +170743285058,231,0 +170743285106,237,0 +170743285154,243,0 +170743285204,224,0 +170743285253,220,0 +170743285301,218,0 +170743285349,218,0 +170743285397,218,0 +170743285447,218,0 +170743285495,218,0 +170743285544,218,0 +170743285592,218,0 +170743285640,218,0 +170743285688,218,0 +170743285736,218,0 +170743285784,218,0 +170743285832,219,0 +170743285880,218,0 +170743285927,218,0 +170743285975,218,0 +170743286023,219,0 +170743286071,220,0 +170743286119,224,0 +170743286168,227,0 +170743286216,230,0 +170743286264,242,0 +170743286314,243,0 +170743286362,224,0 +170743286410,218,0 +170743286458,218,0 +170743286507,218,0 +170743286555,218,0 +170743286603,218,0 +170743286651,218,0 +170743286699,218,0 +170743286748,218,0 +170743286796,218,0 +170743286846,218,0 +170743286894,219,0 +170743286942,219,0 +170743286990,220,0 +170743287038,220,0 +170743287086,221,0 +170743287134,224,0 +170743287183,228,0 +170743287233,230,0 +170743287281,232,0 +170743287328,233,0 +170743287378,242,0 +170743287426,243,0 +170743287475,221,0 +170743287523,218,0 +170743287573,218,0 +170743287621,218,0 +170743287669,218,0 +170743287717,218,0 +170743287765,218,0 +170743287814,218,0 +170743287864,218,0 +170743287912,218,0 +170743287961,218,0 +170743288011,218,0 +170743288060,218,0 +170743288108,218,0 +170743288158,218,0 +170743288207,218,0 +170743288255,219,0 +170743288303,220,0 +170743288351,223,0 +170743288399,226,0 +170743288447,229,0 +170743288496,240,0 +170743288544,242,0 +170743288594,222,0 +170743288643,218,0 +170743288693,217,0 +170743288743,218,0 +170743288790,217,0 +170743288840,218,0 +170743288890,217,0 +170743288939,217,0 +170743288987,218,0 +170743289035,218,0 +170743289083,218,0 +170743289132,217,0 +170743289180,218,0 +170743289228,218,0 +170743289276,219,0 +170743289324,220,0 +170743289372,221,0 +170743289420,224,0 +170743289468,226,0 +170743289516,229,0 +170743289563,231,0 +170743289611,240,0 +170743289659,244,0 +170743289707,225,0 +170743289755,218,0 +170743289803,217,0 +170743289851,217,0 +170743289899,217,0 +170743289948,217,0 +170743289998,217,0 +170743290047,217,0 +170743290097,217,0 +170743290147,217,0 +170743290195,217,0 +170743290242,218,0 +170743290292,218,0 +170743290340,218,0 +170743290388,219,0 +170743290437,221,0 +170743290485,222,0 +170743290533,227,0 +170743290583,228,0 +170743290631,230,0 +170743290679,233,0 +170743290727,240,0 +170743290775,242,0 +170743290823,225,0 +170743290871,219,0 +170743290920,219,0 +170743290968,219,0 +170743291016,219,0 +170743291064,218,0 +170743291112,219,0 +170743291161,219,0 +170743291211,219,0 +170743291260,218,0 +170743291310,218,0 +170743291358,218,0 +170743291406,218,0 +170743291454,218,0 +170743291503,218,0 +170743291553,219,0 +170743291602,220,0 +170743291650,222,0 +170743291700,224,0 +170743291748,227,0 +170743291798,231,0 +170743291845,242,0 +170743291893,243,0 +170743291941,223,0 +170743291989,218,0 +170743292037,218,0 +170743292085,218,0 +170743292135,218,0 +170743292184,217,0 +170743292232,218,0 +170743292280,219,0 +170743292330,218,0 +170743292379,219,0 +170743292427,218,0 +170743292475,218,0 +170743292523,219,0 +170743292571,218,0 +170743292619,218,0 +170743292669,219,0 +170743292718,219,0 +170743292768,221,0 +170743292817,224,0 +170743292865,227,0 +170743292915,229,0 +170743292963,242,0 +170743293011,243,0 +170743293058,223,0 +170743293106,218,0 +170743293154,218,0 +170743293202,218,0 +170743293250,218,0 +170743293300,218,0 +170743293348,218,0 +170743293395,218,0 +170743293443,218,0 +170743293491,218,0 +170743293539,218,0 +170743293589,219,0 +170743293636,220,0 +170743293684,220,0 +170743293734,221,0 +170743293783,223,0 +170743293831,225,0 +170743293879,227,0 +170743293927,231,0 +170743293975,232,0 +170743294023,233,0 +170743294071,238,0 +170743294119,241,0 +170743294167,223,0 +170743294216,219,0 +170743294264,218,0 +170743294312,218,0 +170743294362,218,0 +170743294409,218,0 +170743294459,218,0 +170743294508,218,0 +170743294558,218,0 +170743294606,218,0 +170743294654,218,0 +170743294702,218,0 +170743294750,218,0 +170743294797,218,0 +170743294845,218,0 +170743294895,218,0 +170743294945,219,0 +170743294994,221,0 +170743295044,221,0 +170743295092,225,0 +170743295140,228,0 +170743295189,242,0 +170743295237,244,0 +170743295287,224,0 +170743295334,219,0 +170743295382,219,0 +170743295430,218,0 +170743295478,219,0 +170743295528,218,0 +170743295576,218,0 +170743295624,218,0 +170743295673,219,0 +170743295721,218,0 +170743295771,218,0 +170743295819,218,0 +170743295868,218,0 +170743295918,218,0 +170743295966,219,0 +170743296015,220,0 +170743296065,221,0 +170743296113,222,0 +170743296162,225,0 +170743296210,227,0 +170743296260,229,0 +170743296308,239,0 +170743296356,242,0 +170743296404,220,0 +170743296452,218,0 +170743296500,218,0 +170743296549,218,0 +170743296599,218,0 +170743296647,218,0 +170743296695,218,0 +170743296743,218,0 +170743296790,218,0 +170743296838,218,0 +170743296888,218,0 +170743296937,218,0 +170743296985,218,0 +170743297033,217,0 +170743297081,218,0 +170743297129,218,0 +170743297177,219,0 +170743297225,220,0 +170743297275,222,0 +170743297323,225,0 +170743297371,228,0 +170743297419,231,0 +170743297468,243,0 +170743297518,243,0 +170743297567,221,0 +170743297615,218,0 +170743297665,218,0 +170743297713,218,0 +170743297761,218,0 +170743297809,218,0 +170743297858,218,0 +170743297906,218,0 +170743297954,218,0 +170743298003,217,0 +170743298051,218,0 +170743298099,218,0 +170743298147,218,0 +170743298195,219,0 +170743298245,219,0 +170743298293,220,0 +170743298342,222,0 +170743298390,225,0 +170743298438,226,0 +170743298488,230,0 +170743298535,232,0 +170743298585,241,0 +170743298633,245,0 +170743298681,222,0 +170743298729,218,0 +170743298777,218,0 +170743298825,218,0 +170743298873,218,0 +170743298922,218,0 +170743298970,218,0 +170743299018,218,0 +170743299066,218,0 +170743299116,218,0 +170743299164,218,0 +170743299212,218,0 +170743299260,218,0 +170743299308,218,0 +170743299356,218,0 +170743299404,219,0 +170743299452,220,0 +170743299501,221,0 +170743299549,224,0 +170743299599,228,0 +170743299646,230,0 +170743299694,242,0 +170743299742,242,0 +170743299790,221,0 +170743299838,217,0 +170743299886,218,0 +170743299934,218,0 +170743299982,218,0 +170743300030,218,0 +170743300078,218,0 +170743300126,218,0 +170743300176,218,0 +170743300225,217,0 +170743300273,218,0 +170743300321,218,0 +170743300369,217,0 +170743300419,217,0 +170743300466,219,0 +170743300516,220,0 +170743300565,221,0 +170743300615,223,0 +170743300663,227,0 +170743300711,228,0 +170743300760,233,0 +170743300808,242,0 +170743300858,244,0 +170743300906,222,0 +170743300954,218,0 +170743301003,218,0 +170743301051,218,0 +170743301101,218,0 +170743301150,218,0 +170743301200,218,0 +170743301248,218,0 +170743301296,218,0 +170743301343,218,0 +170743301391,218,0 +170743301439,218,0 +170743301487,218,0 +170743301537,218,0 +170743301585,218,0 +170743301633,218,0 +170743301682,218,0 +170743301730,218,0 +170743301780,219,0 +170743301828,221,0 +170743301876,225,0 +170743301924,240,0 +170743301973,242,0 +170743302021,223,0 +170743302071,218,0 +170743302120,218,0 +170743302170,218,0 +170743302218,217,0 +170743302267,218,0 +170743302317,218,0 +170743302366,217,0 +170743302414,217,0 +170743302462,217,0 +170743302510,217,0 +170743302558,217,0 +170743302606,218,0 +170743302656,218,0 +170743302703,220,0 +170743302751,220,0 +170743302799,222,0 +170743302847,225,0 +170743302897,227,0 +170743302946,229,0 +170743302994,231,0 +170743303044,240,0 +170743303093,245,0 +170743303141,223,0 +170743303189,217,0 +170743303239,217,0 +170743303287,217,0 +170743303335,217,0 +170743303382,217,0 +170743303432,217,0 +170743303480,217,0 +170743303529,217,0 +170743303577,217,0 +170743303627,217,0 +170743303675,217,0 +170743303723,218,0 +170743303771,218,0 +170743303819,217,0 +170743303867,218,0 +170743303916,217,0 +170743303966,217,0 +170743304014,217,0 +170743304062,221,0 +170743304111,224,0 +170743304159,238,0 +170743304207,243,0 +170743304256,224,0 +170743304306,219,0 +170743304355,218,0 +170743304403,218,0 +170743304451,218,0 +170743304499,218,0 +170743304547,218,0 +170743304595,218,0 +170743304643,218,0 +170743304691,218,0 +170743304739,218,0 +170743304787,218,0 +170743304835,218,0 +170743304884,218,0 +170743304934,218,0 +170743304982,219,0 +170743305031,221,0 +170743305079,221,0 +170743305129,222,0 +170743305177,224,0 +170743305226,227,0 +170743305274,241,0 +170743305324,240,0 +170743305372,220,0 +170743305420,219,0 +170743305469,218,0 +170743305519,218,0 +170743305568,218,0 +170743305616,218,0 +170743305664,218,0 +170743305712,218,0 +170743305762,218,0 +170743305810,218,0 +170743305857,218,0 +170743305905,217,0 +170743305953,218,0 +170743306001,218,0 +170743306051,218,0 +170743306099,218,0 +170743306146,218,0 +170743306194,219,0 +170743306242,219,0 +170743306290,221,0 +170743306338,225,0 +170743306386,248,0 +170743306435,242,0 +170743306483,231,0 +170743306531,220,0 +170743306579,218,0 +170743306627,218,0 +170743306675,218,0 +170743306723,218,0 +170743306770,218,0 +170743306818,218,0 +170743306866,218,0 +170743306914,218,0 +170743306962,218,0 +170743307010,218,0 +170743307058,218,0 +170743307107,218,0 +170743307155,218,0 +170743307203,218,0 +170743307251,218,0 +170743307299,218,0 +170743307349,219,0 +170743307397,222,0 +170743307446,225,0 +170743307494,229,0 +170743307544,244,0 +170743307593,247,0 +170743307641,220,0 +170743307689,217,0 +170743307739,217,0 +170743307788,217,0 +170743307836,217,0 +170743307884,217,0 +170743307932,217,0 +170743307980,217,0 +170743308029,217,0 +170743308077,217,0 +170743308125,217,0 +170743308175,218,0 +170743308224,217,0 +170743308272,217,0 +170743308320,217,0 +170743308368,217,0 +170743308416,218,0 +170743308465,218,0 +170743308513,220,0 +170743308561,223,0 +170743308611,228,0 +170743308660,248,0 +170743308708,264,0 +170743308756,223,0 +170743308804,218,0 +170743308852,218,0 +170743308900,218,0 +170743308948,218,0 +170743308997,218,0 +170743309047,218,0 +170743309095,218,0 +170743309144,218,0 +170743309192,218,0 +170743309240,218,0 +170743309288,217,0 +170743309336,218,0 +170743309386,218,0 +170743309433,217,0 +170743309483,217,0 +170743309532,218,0 +170743309582,218,0 +170743309630,218,0 +170743309678,219,0 +170743309726,224,0 +170743309774,245,0 +170743309823,246,0 +170743309871,226,0 +170743309921,218,0 +170743309969,218,0 +170743310017,218,0 +170743310065,218,0 +170743310113,218,0 +170743310161,218,0 +170743310210,218,0 +170743310258,218,0 +170743310308,218,0 +170743310356,218,0 +170743310405,218,0 +170743310453,218,0 +170743310501,218,0 +170743310550,218,0 +170743310598,218,0 +170743310648,219,0 +170743310696,220,0 +170743310745,222,0 +170743310793,226,0 +170743310841,231,0 +170743310891,244,0 +170743310939,244,0 +170743310987,226,0 +170743311035,219,0 +170743311084,219,0 +170743311132,219,0 +170743311182,219,0 +170743311231,219,0 +170743311279,219,0 +170743311327,219,0 +170743311375,219,0 +170743311424,218,0 +170743311474,218,0 +170743311522,219,0 +170743311570,218,0 +170743311619,219,0 +170743311669,219,0 +170743311717,219,0 +170743311765,219,0 +170743311814,220,0 +170743311862,222,0 +170743311910,225,0 +170743311958,228,0 +170743312007,249,0 +170743312055,250,0 +170743312103,224,0 +170743312151,218,0 +170743312199,217,0 +170743312247,217,0 +170743312295,217,0 +170743312343,217,0 +170743312393,218,0 +170743312442,217,0 +170743312490,218,0 +170743312539,217,0 +170743312587,217,0 +170743312637,218,0 +170743312685,218,0 +170743312734,217,0 +170743312782,217,0 +170743312830,218,0 +170743312878,219,0 +170743312928,220,0 +170743312976,221,0 +170743313024,224,0 +170743313073,228,0 +170743313123,243,0 +170743313171,244,0 +170743313219,221,0 +170743313268,218,0 +170743313318,218,0 +170743313366,218,0 +170743313414,217,0 +170743313463,217,0 +170743313511,218,0 +170743313559,218,0 +170743313607,217,0 +170743313656,217,0 +170743313704,217,0 +170743313752,217,0 +170743313802,217,0 +170743313850,218,0 +170743313898,217,0 +170743313947,218,0 +170743313997,219,0 +170743314045,220,0 +170743314093,222,0 +170743314142,225,0 +170743314190,228,0 +170743314240,242,0 +170743314288,245,0 +170743314337,221,0 +170743314385,218,0 +170743314433,217,0 +170743314483,218,0 +170743314531,218,0 +170743314580,218,0 +170743314630,218,0 +170743314678,217,0 +170743314727,217,0 +170743314777,218,0 +170743314825,217,0 +170743314874,218,0 +170743314922,217,0 +170743314972,218,0 +170743315021,217,0 +170743315069,218,0 +170743315117,218,0 +170743315167,219,0 +170743315216,222,0 +170743315266,224,0 +170743315314,228,0 +170743315363,243,0 +170743315411,243,0 +170743315459,224,0 +170743315507,218,0 +170743315555,218,0 +170743315603,217,0 +170743315653,217,0 +170743315701,218,0 +170743315748,217,0 +170743315796,217,0 +170743315844,217,0 +170743315892,217,0 +170743315940,217,0 +170743315988,217,0 +170743316036,217,0 +170743316084,218,0 +170743316132,218,0 +170743316180,218,0 +170743316229,217,0 +170743316277,219,0 +170743316325,219,0 +170743316373,222,0 +170743316421,225,0 +170743316469,229,0 +170743316517,244,0 +170743316565,237,0 +170743316613,220,0 +170743316660,219,0 +170743316708,218,0 +170743316756,218,0 +170743316804,218,0 +170743316852,218,0 +170743316900,218,0 +170743316948,218,0 +170743316996,218,0 +170743317044,218,0 +170743317092,218,0 +170743317141,218,0 +170743317189,218,0 +170743317237,218,0 +170743317286,218,0 +170743317334,219,0 +170743317384,218,0 +170743317433,218,0 +170743317481,218,0 +170743317529,219,0 +170743317577,220,0 +170743317625,245,0 +170743317675,245,0 +170743317723,223,0 +170743317771,218,0 +170743317819,218,0 +170743317868,218,0 +170743317918,218,0 +170743317966,218,0 +170743318014,218,0 +170743318062,218,0 +170743318111,218,0 +170743318159,218,0 +170743318207,219,0 +170743318255,218,0 +170743318305,218,0 +170743318354,219,0 +170743318402,218,0 +170743318450,219,0 +170743318500,218,0 +170743318549,218,0 +170743318599,218,0 +170743318647,219,0 +170743318695,222,0 +170743318742,242,0 +170743318790,243,0 +170743318840,221,0 +170743318888,218,0 +170743318936,218,0 +170743318984,218,0 +170743319032,219,0 +170743319080,218,0 +170743319128,218,0 +170743319177,219,0 +170743319225,218,0 +170743319274,218,0 +170743319322,218,0 +170743319370,218,0 +170743319418,218,0 +170743319466,218,0 +170743319514,219,0 +170743319562,220,0 +170743319610,222,0 +170743319658,224,0 +170743319706,227,0 +170743319753,230,0 +170743319801,234,0 +170743319849,240,0 +170743319897,245,0 +170743319945,225,0 +170743319993,219,0 diff --git a/laser_value/0209-09.csv b/laser_value/0209-09.csv new file mode 100644 index 0000000..213f3f2 --- /dev/null +++ b/laser_value/0209-09.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170743320042,218,0 +170743320090,218,0 +170743320138,218,0 +170743320187,218,0 +170743320235,218,0 +170743320283,218,0 +170743320333,218,0 +170743320381,218,0 +170743320430,218,0 +170743320480,218,0 +170743320529,218,0 +170743320579,218,0 +170743320627,218,0 +170743320675,218,0 +170743320724,218,0 +170743320774,218,0 +170743320822,218,0 +170743320871,218,0 +170743320921,219,0 +170743320970,241,0 +170743321018,245,0 +170743321067,222,0 +170743321117,219,0 +170743321165,218,0 +170743321213,218,0 +170743321261,218,0 +170743321309,218,0 +170743321358,218,0 +170743321406,218,0 +170743321454,218,0 +170743321502,218,0 +170743321552,218,0 +170743321601,218,0 +170743321651,218,0 +170743321699,218,0 +170743321747,219,0 +170743321796,219,0 +170743321844,221,0 +170743321892,221,0 +170743321940,223,0 +170743321989,226,0 +170743322039,229,0 +170743322088,249,0 +170743322138,245,0 +170743322186,224,0 +170743322235,218,0 +170743322285,219,0 +170743322332,218,0 +170743322380,218,0 +170743322428,218,0 +170743322478,218,0 +170743322526,219,0 +170743322574,219,0 +170743322622,218,0 +170743322671,218,0 +170743322719,219,0 +170743322767,218,0 +170743322815,219,0 +170743322863,219,0 +170743322913,220,0 +170743322962,220,0 +170743323010,224,0 +170743323058,228,0 +170743323106,229,0 +170743323154,232,0 +170743323202,239,0 +170743323251,245,0 +170743323301,224,0 +170743323350,218,0 +170743323398,218,0 +170743323448,218,0 +170743323497,218,0 +170743323545,218,0 +170743323593,219,0 +170743323643,219,0 +170743323691,218,0 +170743323739,219,0 +170743323787,219,0 +170743323834,218,0 +170743323882,219,0 +170743323930,219,0 +170743323978,218,0 +170743324026,219,0 +170743324076,219,0 +170743324124,221,0 +170743324172,223,0 +170743324219,226,0 +170743324267,229,0 +170743324315,242,0 +170743324363,245,0 +170743324411,221,0 +170743324461,220,0 +170743324510,219,0 +170743324558,219,0 +170743324606,219,0 +170743324654,219,0 +170743324702,219,0 +170743324750,219,0 +170743324798,219,0 +170743324845,218,0 +170743324893,219,0 +170743324941,219,0 +170743324991,218,0 +170743325039,219,0 +170743325087,219,0 +170743325135,219,0 +170743325183,220,0 +170743325231,220,0 +170743325280,222,0 +170743325328,225,0 +170743325376,226,0 +170743325424,231,0 +170743325472,244,0 +170743325520,245,0 +170743325568,223,0 +170743325616,219,0 +170743325664,218,0 +170743325712,218,0 +170743325759,218,0 +170743325807,218,0 +170743325855,218,0 +170743325903,219,0 +170743325951,219,0 +170743325999,219,0 +170743326047,219,0 +170743326095,219,0 +170743326143,219,0 +170743326192,220,0 +170743326240,222,0 +170743326288,222,0 +170743326337,223,0 +170743326385,227,0 +170743326433,229,0 +170743326481,230,0 +170743326529,233,0 +170743326577,244,0 +170743326625,244,0 +170743326673,224,0 +170743326720,220,0 +170743326770,220,0 +170743326819,220,0 +170743326867,220,0 +170743326915,220,0 +170743326963,220,0 +170743327011,219,0 +170743327060,219,0 +170743327108,219,0 +170743327156,219,0 +170743327204,220,0 +170743327252,219,0 +170743327300,219,0 +170743327347,219,0 +170743327397,219,0 +170743327446,220,0 +170743327494,220,0 +170743327542,223,0 +170743327591,226,0 +170743327639,228,0 +170743327687,242,0 +170743327735,245,0 +170743327783,224,0 +170743327831,218,0 +170743327879,218,0 +170743327926,218,0 +170743327974,218,0 +170743328022,218,0 +170743328072,218,0 +170743328120,218,0 +170743328169,218,0 +170743328217,218,0 +170743328265,218,0 +170743328313,218,0 +170743328362,218,0 +170743328412,218,0 +170743328460,218,0 +170743328508,218,0 +170743328557,218,0 +170743328605,218,0 +170743328653,218,0 +170743328702,218,0 +170743328750,222,0 +170743328798,233,0 +170743328846,245,0 +170743328894,245,0 +170743328944,220,0 +170743328992,218,0 +170743329041,218,0 +170743329089,218,0 +170743329137,218,0 +170743329185,218,0 +170743329233,217,0 +170743329281,218,0 +170743329330,218,0 +170743329380,218,0 +170743329428,218,0 +170743329476,218,0 +170743329524,218,0 +170743329572,218,0 +170743329620,218,0 +170743329668,218,0 +170743329715,219,0 +170743329763,221,0 +170743329811,223,0 +170743329859,227,0 +170743329909,234,0 +170743329958,244,0 +170743330008,236,0 +170743330055,220,0 +170743330105,219,0 +170743330153,219,0 +170743330201,219,0 +170743330249,219,0 +170743330298,218,0 +170743330346,219,0 +170743330394,219,0 +170743330444,219,0 +170743330492,219,0 +170743330539,219,0 +170743330587,219,0 +170743330635,220,0 +170743330683,221,0 +170743330731,222,0 +170743330779,223,0 +170743330827,224,0 +170743330875,226,0 +170743330923,228,0 +170743330971,231,0 +170743331019,233,0 +170743331066,242,0 +170743331114,243,0 +170743331162,223,0 +170743331210,219,0 +170743331259,219,0 +170743331307,218,0 +170743331357,218,0 +170743331405,219,0 +170743331453,218,0 +170743331501,219,0 +170743331550,219,0 +170743331600,219,0 +170743331648,219,0 +170743331696,219,0 +170743331744,219,0 +170743331791,219,0 +170743331839,219,0 +170743331889,219,0 +170743331937,219,0 +170743331985,219,0 +170743332034,219,0 +170743332084,221,0 +170743332132,224,0 +170743332180,242,0 +170743332229,244,0 +170743332277,223,0 +170743332327,218,0 +170743332375,218,0 +170743332423,218,0 +170743332471,218,0 +170743332519,218,0 +170743332566,218,0 +170743332614,218,0 +170743332662,218,0 +170743332710,218,0 +170743332758,218,0 +170743332808,218,0 +170743332856,218,0 +170743332904,218,0 +170743332953,219,0 +170743333001,218,0 +170743333049,218,0 +170743333097,220,0 +170743333147,220,0 +170743333195,222,0 +170743333244,225,0 +170743333292,241,0 +170743333340,245,0 +170743333389,223,0 +170743333439,220,0 +170743333489,219,0 +170743333538,219,0 +170743333586,219,0 +170743333634,219,0 +170743333682,219,0 +170743333731,219,0 +170743333779,219,0 +170743333827,219,0 +170743333875,219,0 +170743333923,219,0 +170743333971,219,0 +170743334019,219,0 +170743334067,219,0 +170743334117,219,0 +170743334166,220,0 +170743334216,221,0 +170743334264,223,0 +170743334313,229,0 +170743334363,231,0 +170743334411,242,0 +170743334458,245,0 +170743334506,223,0 +170743334556,218,0 +170743334604,218,0 +170743334652,218,0 +170743334700,218,0 +170743334748,218,0 +170743334796,218,0 +170743334845,218,0 +170743334893,218,0 +170743334941,218,0 +170743334991,218,0 +170743335039,218,0 +170743335088,218,0 +170743335136,219,0 +170743335184,218,0 +170743335234,221,0 +170743335283,220,0 +170743335333,224,0 +170743335381,227,0 +170743335429,229,0 +170743335477,231,0 +170743335524,242,0 +170743335572,244,0 +170743335620,221,0 +170743335668,219,0 +170743335716,219,0 +170743335765,219,0 +170743335815,219,0 +170743335863,219,0 +170743335911,219,0 +170743335959,219,0 +170743336008,219,0 +170743336056,219,0 +170743336104,219,0 +170743336154,219,0 +170743336202,219,0 +170743336249,218,0 +170743336297,218,0 +170743336345,218,0 +170743336393,219,0 +170743336441,219,0 +170743336491,221,0 +170743336540,224,0 +170743336588,226,0 +170743336636,229,0 +170743336684,246,0 +170743336732,244,0 +170743336780,223,0 +170743336828,219,0 +170743336876,219,0 +170743336925,219,0 +170743336973,218,0 +170743337021,219,0 +170743337070,218,0 +170743337118,219,0 +170743337166,219,0 +170743337214,219,0 +170743337264,219,0 +170743337313,221,0 +170743337363,221,0 +170743337411,221,0 +170743337460,223,0 +170743337510,226,0 +170743337558,228,0 +170743337605,231,0 +170743337655,233,0 +170743337703,233,0 +170743337752,232,0 +170743337800,243,0 +170743337848,243,0 +170743337896,222,0 +170743337944,218,0 +170743337992,218,0 +170743338040,218,0 +170743338088,218,0 +170743338136,218,0 +170743338184,218,0 +170743338232,218,0 +170743338279,218,0 +170743338327,218,0 +170743338377,218,0 +170743338425,218,0 +170743338472,218,0 +170743338520,220,0 +170743338568,219,0 +170743338618,220,0 +170743338667,223,0 +170743338715,225,0 +170743338763,227,0 +170743338811,229,0 +170743338859,231,0 +170743338909,243,0 +170743338957,245,0 +170743339006,224,0 +170743339054,220,0 +170743339102,220,0 +170743339152,219,0 +170743339201,219,0 +170743339249,219,0 +170743339297,219,0 +170743339345,220,0 +170743339393,220,0 +170743339442,219,0 +170743339490,219,0 +170743339540,220,0 +170743339588,220,0 +170743339637,220,0 +170743339687,220,0 +170743339735,220,0 +170743339784,222,0 +170743339834,222,0 +170743339882,222,0 +170743339930,225,0 +170743339978,230,0 +170743340026,242,0 +170743340074,244,0 +170743340122,222,0 +170743340170,217,0 +170743340218,217,0 +170743340267,217,0 +170743340315,217,0 +170743340365,216,0 +170743340413,217,0 +170743340462,216,0 +170743340510,216,0 +170743340559,217,0 +170743340607,217,0 +170743340655,217,0 +170743340703,217,0 +170743340751,216,0 +170743340801,217,0 +170743340849,217,0 +170743340897,221,0 +170743340945,223,0 +170743340993,227,0 +170743341041,229,0 +170743341089,231,0 +170743341138,242,0 +170743341188,245,0 +170743341237,224,0 +170743341285,219,0 +170743341333,218,0 +170743341383,218,0 +170743341431,218,0 +170743341478,218,0 +170743341526,218,0 +170743341574,218,0 +170743341624,218,0 +170743341672,218,0 +170743341720,218,0 +170743341768,218,0 +170743341817,218,0 +170743341867,218,0 +170743341915,219,0 +170743341963,220,0 +170743342011,221,0 +170743342059,224,0 +170743342108,227,0 +170743342156,228,0 +170743342204,229,0 +170743342252,242,0 +170743342302,245,0 +170743342351,223,0 +170743342400,218,0 +170743342448,218,0 +170743342496,217,0 +170743342544,218,0 +170743342592,218,0 +170743342640,218,0 +170743342688,218,0 +170743342736,218,0 +170743342786,218,0 +170743342834,218,0 +170743342882,218,0 +170743342930,218,0 +170743342978,218,0 +170743343026,218,0 +170743343075,220,0 +170743343123,221,0 +170743343171,223,0 +170743343221,226,0 +170743343270,228,0 +170743343320,232,0 +170743343368,237,0 +170743343416,239,0 +170743343464,223,0 +170743343513,218,0 +170743343563,218,0 +170743343611,218,0 +170743343659,218,0 +170743343707,218,0 +170743343755,218,0 +170743343803,219,0 +170743343852,218,0 +170743343902,219,0 +170743343951,218,0 +170743344001,218,0 +170743344050,219,0 +170743344098,219,0 +170743344147,219,0 +170743344195,220,0 +170743344243,221,0 +170743344293,221,0 +170743344341,224,0 +170743344390,227,0 +170743344440,231,0 +170743344488,242,0 +170743344537,245,0 +170743344585,221,0 +170743344633,219,0 +170743344682,218,0 +170743344730,218,0 +170743344778,218,0 +170743344826,218,0 +170743344874,218,0 +170743344924,218,0 +170743344973,218,0 +170743345023,218,0 +170743345072,218,0 +170743345120,218,0 +170743345168,218,0 +170743345216,218,0 +170743345264,219,0 +170743345312,220,0 +170743345360,221,0 +170743345408,223,0 +170743345457,226,0 +170743345505,228,0 +170743345553,233,0 +170743345601,242,0 +170743345649,244,0 +170743345698,221,0 +170743345746,218,0 +170743345794,218,0 +170743345842,218,0 +170743345890,218,0 +170743345938,218,0 +170743345986,218,0 +170743346035,218,0 +170743346083,218,0 +170743346131,218,0 +170743346180,218,0 +170743346228,217,0 +170743346276,217,0 +170743346324,218,0 +170743346372,218,0 +170743346420,218,0 +170743346468,218,0 +170743346517,218,0 +170743346567,218,0 +170743346616,221,0 +170743346666,224,0 +170743346714,242,0 +170743346763,245,0 +170743346813,221,0 +170743346862,219,0 +170743346911,218,0 +170743346958,218,0 +170743347008,219,0 +170743347056,218,0 +170743347104,218,0 +170743347152,219,0 +170743347200,219,0 +170743347248,218,0 +170743347296,218,0 +170743347344,218,0 +170743347392,219,0 +170743347440,218,0 +170743347489,220,0 +170743347539,221,0 +170743347588,222,0 +170743347636,224,0 +170743347684,226,0 +170743347732,230,0 +170743347780,231,0 +170743347828,234,0 +170743347876,241,0 +170743347923,243,0 +170743347971,221,0 +170743348019,219,0 +170743348067,218,0 +170743348115,218,0 +170743348164,219,0 +170743348212,218,0 +170743348260,218,0 +170743348308,218,0 +170743348356,219,0 +170743348404,219,0 +170743348452,220,0 +170743348501,221,0 +170743348549,221,0 +170743348599,222,0 +170743348647,221,0 +170743348696,226,0 +170743348744,228,0 +170743348792,230,0 +170743348840,232,0 +170743348890,232,0 +170743348937,235,0 +170743348985,243,0 +170743349033,243,0 +170743349081,224,0 +170743349129,218,0 +170743349177,219,0 +170743349225,218,0 +170743349275,219,0 +170743349324,218,0 +170743349374,218,0 +170743349423,218,0 +170743349472,219,0 +170743349522,218,0 +170743349570,218,0 +170743349618,218,0 +170743349667,218,0 +170743349715,218,0 +170743349763,220,0 +170743349811,220,0 +170743349859,223,0 +170743349907,225,0 +170743349955,227,0 +170743350004,230,0 +170743350054,235,0 +170743350103,241,0 +170743350153,242,0 +170743350201,221,0 +170743350250,218,0 +170743350298,218,0 +170743350348,218,0 +170743350396,218,0 +170743350445,218,0 +170743350493,218,0 +170743350543,218,0 +170743350591,218,0 +170743350640,218,0 +170743350688,218,0 +170743350736,218,0 +170743350784,218,0 +170743350832,218,0 +170743350881,220,0 +170743350929,220,0 +170743350979,222,0 +170743351028,224,0 +170743351076,227,0 +170743351124,229,0 +170743351172,232,0 +170743351222,240,0 +170743351271,244,0 +170743351319,223,0 +170743351367,218,0 +170743351415,218,0 +170743351463,218,0 +170743351511,218,0 +170743351559,218,0 +170743351607,218,0 +170743351655,218,0 +170743351703,218,0 +170743351752,218,0 +170743351800,218,0 +170743351850,218,0 +170743351898,218,0 +170743351946,218,0 +170743351995,219,0 +170743352043,220,0 +170743352091,222,0 +170743352141,225,0 +170743352189,226,0 +170743352238,230,0 +170743352288,229,0 +170743352336,240,0 +170743352385,245,0 +170743352435,223,0 +170743352483,218,0 +170743352531,217,0 +170743352579,217,0 +170743352628,217,0 +170743352676,218,0 +170743352724,217,0 +170743352772,218,0 +170743352820,217,0 +170743352868,218,0 +170743352916,217,0 +170743352966,218,0 +170743353015,217,0 +170743353065,218,0 +170743353114,219,0 +170743353162,219,0 +170743353212,219,0 +170743353259,222,0 +170743353309,224,0 +170743353357,229,0 +170743353407,233,0 +170743353454,242,0 +170743353502,245,0 +170743353550,222,0 +170743353598,218,0 +170743353646,218,0 +170743353696,218,0 +170743353744,217,0 +170743353792,218,0 +170743353840,218,0 +170743353889,218,0 +170743353937,218,0 +170743353985,217,0 +170743354033,217,0 +170743354081,217,0 +170743354129,218,0 +170743354177,217,0 +170743354225,218,0 +170743354273,219,0 +170743354321,220,0 +170743354369,222,0 +170743354418,224,0 +170743354468,226,0 +170743354516,230,0 +170743354565,241,0 +170743354614,245,0 +170743354661,220,0 +170743354711,217,0 +170743354759,217,0 +170743354809,217,0 +170743354858,217,0 +170743354906,217,0 +170743354955,217,0 +170743355005,217,0 +170743355053,217,0 +170743355102,217,0 +170743355150,217,0 +170743355198,217,0 +170743355248,217,0 +170743355298,218,0 +170743355345,219,0 +170743355395,220,0 +170743355443,222,0 +170743355492,223,0 +170743355540,227,0 +170743355588,230,0 +170743355638,231,0 +170743355686,242,0 +170743355735,245,0 +170743355784,221,0 +170743355832,218,0 +170743355879,218,0 +170743355929,218,0 +170743355977,217,0 +170743356026,218,0 +170743356076,218,0 +170743356124,218,0 +170743356173,218,0 +170743356221,218,0 +170743356271,218,0 +170743356320,218,0 +170743356368,218,0 +170743356416,218,0 +170743356466,219,0 +170743356515,220,0 +170743356563,221,0 +170743356613,224,0 +170743356662,227,0 +170743356710,231,0 +170743356758,233,0 +170743356806,241,0 +170743356854,245,0 +170743356902,224,0 +170743356950,219,0 +170743356998,218,0 +170743357048,218,0 +170743357097,218,0 +170743357147,218,0 +170743357195,218,0 +170743357243,218,0 +170743357292,218,0 +170743357342,218,0 +170743357390,218,0 +170743357439,218,0 +170743357489,218,0 +170743357537,219,0 +170743357585,219,0 +170743357634,219,0 +170743357684,220,0 +170743357732,221,0 +170743357780,224,0 +170743357827,225,0 +170743357875,229,0 +170743357925,242,0 +170743357973,244,0 +170743358021,220,0 +170743358069,218,0 +170743358117,218,0 +170743358165,218,0 +170743358214,217,0 +170743358262,218,0 +170743358310,218,0 +170743358358,217,0 +170743358406,218,0 +170743358455,218,0 +170743358505,218,0 +170743358555,218,0 +170743358604,218,0 +170743358652,218,0 +170743358701,217,0 +170743358751,217,0 +170743358801,217,0 +170743358850,217,0 +170743358898,218,0 +170743358946,217,0 +170743358994,218,0 +170743359042,239,0 +170743359092,243,0 +170743359139,220,0 +170743359187,219,0 +170743359235,218,0 +170743359283,218,0 +170743359333,218,0 +170743359382,218,0 +170743359430,219,0 +170743359478,218,0 +170743359526,218,0 +170743359576,218,0 +170743359624,218,0 +170743359673,218,0 +170743359721,218,0 +170743359769,219,0 +170743359817,219,0 +170743359867,219,0 +170743359915,219,0 +170743359963,221,0 +170743360011,224,0 +170743360060,226,0 +170743360108,229,0 +170743360156,235,0 +170743360204,240,0 +170743360254,244,0 +170743360303,223,0 +170743360351,218,0 +170743360401,218,0 +170743360449,218,0 +170743360497,218,0 +170743360545,218,0 +170743360592,218,0 +170743360640,218,0 +170743360690,218,0 +170743360738,218,0 +170743360786,218,0 +170743360835,218,0 +170743360883,218,0 +170743360933,218,0 +170743360981,219,0 +170743361029,220,0 +170743361078,221,0 +170743361126,223,0 +170743361174,228,0 +170743361222,230,0 +170743361270,233,0 +170743361318,241,0 +170743361366,245,0 +170743361414,224,0 +170743361462,219,0 +170743361510,218,0 +170743361559,218,0 +170743361607,218,0 +170743361657,219,0 +170743361705,218,0 +170743361753,219,0 +170743361801,218,0 +170743361850,219,0 +170743361900,219,0 +170743361948,218,0 +170743361995,218,0 +170743362045,218,0 +170743362094,220,0 +170743362144,221,0 +170743362193,222,0 +170743362241,225,0 +170743362289,228,0 +170743362337,229,0 +170743362387,233,0 +170743362435,242,0 +170743362483,243,0 +170743362532,221,0 +170743362582,218,0 +170743362630,218,0 +170743362679,218,0 +170743362727,218,0 +170743362777,218,0 +170743362825,218,0 +170743362874,218,0 +170743362922,218,0 +170743362972,218,0 +170743363019,218,0 +170743363067,218,0 +170743363115,218,0 +170743363165,218,0 +170743363212,219,0 +170743363260,219,0 +170743363308,223,0 +170743363356,224,0 +170743363404,228,0 +170743363452,232,0 +170743363500,232,0 +170743363548,242,0 +170743363597,244,0 +170743363647,223,0 +170743363695,219,0 +170743363743,219,0 +170743363791,218,0 +170743363840,218,0 +170743363888,218,0 +170743363938,218,0 +170743363986,218,0 +170743364033,218,0 +170743364083,218,0 +170743364133,218,0 +170743364181,218,0 +170743364230,218,0 +170743364278,218,0 +170743364326,218,0 +170743364374,219,0 +170743364422,220,0 +170743364471,221,0 +170743364519,223,0 +170743364569,225,0 +170743364618,230,0 +170743364666,242,0 +170743364714,245,0 +170743364762,222,0 +170743364812,219,0 +170743364860,219,0 +170743364909,219,0 +170743364957,219,0 +170743365005,219,0 +170743365053,219,0 +170743365103,219,0 +170743365151,219,0 +170743365199,219,0 +170743365247,220,0 +170743365296,219,0 +170743365344,219,0 +170743365394,220,0 +170743365442,220,0 +170743365491,222,0 +170743365539,223,0 +170743365588,227,0 +170743365638,228,0 +170743365686,232,0 +170743365735,232,0 +170743365783,242,0 +170743365831,244,0 +170743365879,224,0 +170743365927,219,0 +170743365975,219,0 +170743366023,219,0 +170743366071,219,0 +170743366121,219,0 +170743366169,219,0 +170743366218,219,0 +170743366266,219,0 +170743366314,219,0 +170743366362,219,0 +170743366410,219,0 +170743366458,219,0 +170743366508,219,0 +170743366556,218,0 +170743366603,219,0 +170743366651,219,0 +170743366699,219,0 +170743366749,219,0 +170743366798,222,0 +170743366848,225,0 +170743366897,240,0 +170743366947,243,0 +170743366996,223,0 +170743367046,218,0 +170743367095,218,0 +170743367143,218,0 +170743367193,218,0 +170743367241,218,0 +170743367289,218,0 +170743367338,218,0 +170743367386,218,0 +170743367434,218,0 +170743367482,218,0 +170743367532,218,0 +170743367581,218,0 +170743367629,218,0 +170743367679,219,0 +170743367727,220,0 +170743367775,221,0 +170743367823,220,0 +170743367871,223,0 +170743367919,224,0 +170743367968,229,0 +170743368016,250,0 +170743368064,244,0 +170743368114,227,0 +170743368163,221,0 +170743368213,220,0 +170743368261,220,0 +170743368308,219,0 +170743368357,220,0 +170743368404,219,0 +170743368452,219,0 +170743368500,219,0 +170743368548,219,0 +170743368596,219,0 +170743368646,219,0 +170743368694,219,0 +170743368742,220,0 +170743368790,219,0 +170743368838,219,0 +170743368885,219,0 +170743368933,219,0 +170743368983,219,0 +170743369031,219,0 +170743369079,219,0 +170743369127,223,0 +170743369175,243,0 +170743369224,245,0 +170743369274,222,0 +170743369322,219,0 +170743369371,219,0 +170743369419,219,0 +170743369467,219,0 +170743369515,219,0 +170743369565,219,0 +170743369614,218,0 +170743369664,219,0 +170743369712,219,0 +170743369760,219,0 +170743369808,219,0 +170743369856,219,0 +170743369904,219,0 +170743369951,220,0 +170743369999,220,0 +170743370047,222,0 +170743370095,224,0 +170743370145,226,0 +170743370194,230,0 +170743370242,242,0 +170743370292,244,0 +170743370340,242,0 +170743370388,220,0 +170743370436,218,0 +170743370484,218,0 +170743370533,218,0 +170743370583,218,0 +170743370631,218,0 +170743370679,218,0 +170743370728,218,0 +170743370776,218,0 +170743370826,218,0 +170743370874,218,0 +170743370923,218,0 +170743370971,218,0 +170743371021,219,0 +170743371069,218,0 +170743371118,220,0 +170743371166,222,0 +170743371214,224,0 +170743371262,226,0 +170743371310,228,0 +170743371358,231,0 +170743371406,240,0 +170743371454,258,0 +170743371502,223,0 +170743371551,218,0 +170743371599,218,0 +170743371649,218,0 +170743371697,218,0 +170743371745,218,0 +170743371793,218,0 +170743371841,218,0 +170743371889,218,0 +170743371938,218,0 +170743371988,218,0 +170743372036,218,0 +170743372085,218,0 +170743372133,218,0 +170743372181,218,0 +170743372229,218,0 +170743372277,218,0 +170743372325,219,0 +170743372373,222,0 +170743372422,224,0 +170743372472,227,0 +170743372520,242,0 +170743372568,240,0 +170743372616,228,0 +170743372664,219,0 +170743372713,219,0 +170743372763,219,0 +170743372811,219,0 +170743372860,219,0 +170743372910,219,0 +170743372958,219,0 +170743373006,219,0 +170743373054,219,0 +170743373102,219,0 +170743373150,219,0 +170743373198,219,0 +170743373247,219,0 +170743373297,219,0 +170743373346,219,0 +170743373394,219,0 +170743373444,221,0 +170743373492,224,0 +170743373540,226,0 +170743373589,230,0 +170743373639,239,0 +170743373688,239,0 +170743373738,222,0 +170743373786,219,0 +170743373834,218,0 +170743373882,218,0 +170743373930,219,0 +170743373978,218,0 +170743374026,218,0 +170743374075,218,0 +170743374123,218,0 +170743374171,218,0 +170743374221,219,0 +170743374269,218,0 +170743374317,218,0 +170743374365,219,0 +170743374414,218,0 +170743374462,218,0 +170743374510,218,0 +170743374558,219,0 +170743374606,222,0 +170743374654,223,0 +170743374701,225,0 +170743374749,239,0 +170743374797,243,0 +170743374847,223,0 +170743374896,217,0 +170743374944,217,0 +170743374992,217,0 +170743375040,217,0 +170743375090,217,0 +170743375139,217,0 +170743375187,217,0 +170743375235,217,0 +170743375283,217,0 +170743375331,217,0 +170743375379,217,0 +170743375426,216,0 +170743375474,217,0 +170743375524,217,0 +170743375572,217,0 +170743375620,217,0 +170743375667,217,0 +170743375717,217,0 +170743375765,217,0 +170743375813,217,0 +170743375862,233,0 +170743375912,243,0 +170743375959,242,0 +170743376009,224,0 +170743376058,222,0 +170743376106,219,0 +170743376156,219,0 +170743376204,219,0 +170743376252,219,0 +170743376300,219,0 +170743376349,219,0 +170743376399,219,0 +170743376448,219,0 +170743376496,219,0 +170743376544,219,0 +170743376592,219,0 +170743376640,220,0 +170743376690,218,0 +170743376738,220,0 +170743376787,219,0 +170743376837,222,0 +170743376885,226,0 +170743376934,228,0 +170743376982,239,0 +170743377030,245,0 +170743377078,233,0 +170743377126,219,0 +170743377174,218,0 +170743377222,217,0 +170743377270,218,0 +170743377318,218,0 +170743377368,217,0 +170743377415,218,0 +170743377463,218,0 +170743377511,218,0 +170743377559,218,0 +170743377607,218,0 +170743377655,217,0 +170743377703,218,0 +170743377751,219,0 +170743377801,219,0 +170743377850,220,0 +170743377898,223,0 +170743377948,226,0 +170743377997,228,0 +170743378047,232,0 +170743378095,240,0 +170743378143,244,0 +170743378192,237,0 +170743378240,219,0 +170743378288,218,0 +170743378338,217,0 +170743378387,218,0 +170743378437,218,0 +170743378484,218,0 +170743378534,217,0 +170743378582,218,0 +170743378630,218,0 +170743378679,218,0 +170743378729,217,0 +170743378777,217,0 +170743378825,217,0 +170743378873,218,0 +170743378922,218,0 +170743378972,217,0 +170743379021,218,0 +170743379069,218,0 +170743379117,220,0 +170743379165,222,0 +170743379213,230,0 +170743379261,246,0 +170743379309,242,0 +170743379357,219,0 +170743379405,218,0 +170743379453,217,0 +170743379503,217,0 +170743379551,218,0 +170743379599,218,0 +170743379647,218,0 +170743379695,218,0 +170743379743,218,0 +170743379791,218,0 +170743379839,218,0 +170743379887,218,0 +170743379936,218,0 +170743379984,217,0 +170743380032,218,0 +170743380081,217,0 +170743380129,218,0 +170743380177,219,0 +170743380225,221,0 +170743380273,224,0 +170743380321,228,0 +170743380369,240,0 +170743380419,244,0 +170743380468,223,0 +170743380516,218,0 +170743380564,219,0 +170743380612,218,0 +170743380660,218,0 +170743380708,218,0 +170743380756,218,0 +170743380804,219,0 +170743380851,219,0 +170743380899,220,0 +170743380947,220,0 +170743380995,221,0 +170743381043,222,0 +170743381091,222,0 +170743381139,225,0 +170743381186,225,0 +170743381236,227,0 +170743381284,229,0 +170743381332,233,0 +170743381380,229,0 +170743381429,229,0 +170743381479,243,0 +170743381527,242,0 +170743381576,221,0 +170743381624,217,0 +170743381674,217,0 +170743381722,216,0 +170743381770,216,0 +170743381817,217,0 +170743381865,216,0 +170743381913,216,0 +170743381961,216,0 +170743382009,216,0 +170743382059,216,0 +170743382108,216,0 +170743382158,216,0 +170743382206,217,0 +170743382254,217,0 +170743382302,216,0 +170743382351,217,0 +170743382401,217,0 +170743382449,217,0 +170743382497,217,0 +170743382545,219,0 +170743382593,241,0 +170743382641,245,0 +170743382689,224,0 +170743382738,219,0 +170743382786,218,0 +170743382836,218,0 +170743382884,218,0 +170743382932,218,0 +170743382980,218,0 +170743383028,218,0 +170743383076,218,0 +170743383124,218,0 +170743383173,218,0 +170743383223,218,0 +170743383271,218,0 +170743383319,218,0 +170743383367,218,0 +170743383415,218,0 +170743383464,218,0 +170743383512,218,0 +170743383560,218,0 +170743383609,218,0 +170743383659,219,0 +170743383707,240,0 +170743383755,245,0 +170743383803,243,0 +170743383851,220,0 +170743383899,218,0 +170743383948,219,0 +170743383998,218,0 +170743384047,218,0 +170743384095,218,0 +170743384143,218,0 +170743384193,219,0 +170743384242,218,0 +170743384290,219,0 +170743384340,218,0 +170743384388,219,0 +170743384437,218,0 +170743384485,219,0 +170743384533,219,0 +170743384581,218,0 +170743384631,218,0 +170743384679,219,0 +170743384728,218,0 +170743384776,219,0 +170743384824,240,0 +170743384874,246,0 +170743384923,220,0 +170743384973,220,0 +170743385022,218,0 +170743385072,218,0 +170743385120,218,0 +170743385168,218,0 +170743385216,218,0 +170743385265,219,0 +170743385313,218,0 +170743385361,218,0 +170743385411,218,0 +170743385459,218,0 +170743385508,218,0 +170743385556,218,0 +170743385604,218,0 +170743385654,219,0 +170743385701,218,0 +170743385749,218,0 +170743385797,218,0 +170743385845,219,0 +170743385893,220,0 +170743385941,241,0 +170743385989,244,0 +170743386037,225,0 +170743386085,221,0 +170743386133,220,0 +170743386181,220,0 +170743386229,219,0 +170743386279,219,0 +170743386327,219,0 +170743386376,219,0 +170743386426,219,0 +170743386474,219,0 +170743386522,219,0 +170743386571,219,0 +170743386619,219,0 +170743386669,219,0 +170743386716,219,0 +170743386764,220,0 +170743386812,221,0 +170743386862,222,0 +170743386911,222,0 +170743386959,226,0 +170743387007,229,0 +170743387057,230,0 +170743387106,242,0 +170743387156,243,0 +170743387206,219,0 +170743387253,217,0 +170743387301,217,0 +170743387349,217,0 +170743387397,216,0 +170743387445,217,0 +170743387495,217,0 +170743387543,217,0 +170743387592,216,0 +170743387640,217,0 +170743387690,217,0 +170743387739,216,0 +170743387789,217,0 +170743387837,217,0 +170743387886,216,0 +170743387934,217,0 +170743387984,216,0 +170743388032,217,0 +170743388081,217,0 +170743388131,219,0 +170743388180,234,0 +170743388228,243,0 +170743388276,243,0 +170743388326,219,0 +170743388375,217,0 +170743388423,216,0 +170743388471,216,0 +170743388520,217,0 +170743388568,217,0 +170743388616,216,0 +170743388664,217,0 +170743388712,217,0 +170743388760,217,0 +170743388808,217,0 +170743388856,217,0 +170743388904,217,0 +170743388952,217,0 +170743389000,217,0 +170743389048,218,0 +170743389097,218,0 +170743389147,220,0 +170743389195,224,0 +170743389243,226,0 +170743389291,229,0 +170743389339,243,0 +170743389386,245,0 +170743389434,221,0 +170743389482,218,0 +170743389532,218,0 +170743389580,217,0 +170743389628,217,0 +170743389677,218,0 +170743389727,218,0 +170743389776,218,0 +170743389824,217,0 +170743389874,217,0 +170743389923,218,0 +170743389973,217,0 +170743390022,218,0 +170743390072,217,0 +170743390121,218,0 +170743390169,218,0 +170743390219,219,0 +170743390267,222,0 +170743390315,224,0 +170743390362,228,0 +170743390410,230,0 +170743390458,245,0 +170743390506,244,0 +170743390556,221,0 +170743390604,219,0 +170743390653,218,0 +170743390703,218,0 +170743390751,218,0 +170743390799,218,0 +170743390847,218,0 +170743390895,218,0 +170743390943,219,0 +170743390991,218,0 +170743391040,218,0 +170743391088,218,0 +170743391138,218,0 +170743391186,218,0 +170743391234,218,0 +170743391282,220,0 +170743391330,220,0 +170743391378,222,0 +170743391427,225,0 +170743391475,227,0 +170743391523,229,0 +170743391573,243,0 +170743391622,246,0 +170743391670,225,0 +170743391719,218,0 +170743391769,218,0 +170743391817,218,0 +170743391867,217,0 +170743391914,218,0 +170743391962,218,0 +170743392010,218,0 +170743392058,218,0 +170743392106,218,0 +170743392154,218,0 +170743392204,218,0 +170743392252,218,0 +170743392300,218,0 +170743392347,219,0 +170743392395,220,0 +170743392443,220,0 +170743392491,222,0 +170743392539,225,0 +170743392587,229,0 +170743392635,232,0 +170743392685,243,0 +170743392733,244,0 +170743392782,224,0 +170743392832,218,0 +170743392880,219,0 +170743392928,218,0 +170743392976,218,0 +170743393024,218,0 +170743393072,218,0 +170743393121,218,0 +170743393169,218,0 +170743393217,218,0 +170743393265,218,0 +170743393313,218,0 +170743393363,218,0 +170743393411,218,0 +170743393459,218,0 +170743393508,219,0 +170743393556,220,0 +170743393604,223,0 +170743393652,224,0 +170743393701,227,0 +170743393749,230,0 +170743393797,240,0 +170743393847,242,0 +170743393895,225,0 +170743393943,220,0 +170743393992,219,0 +170743394040,220,0 +170743394088,220,0 +170743394136,219,0 +170743394184,220,0 +170743394232,220,0 +170743394280,219,0 +170743394329,220,0 +170743394377,219,0 +170743394425,220,0 +170743394473,220,0 +170743394521,219,0 +170743394569,220,0 +170743394619,220,0 +170743394668,222,0 +170743394718,224,0 +170743394766,226,0 +170743394814,227,0 +170743394863,229,0 +170743394911,240,0 +170743394961,243,0 +170743395009,221,0 +170743395057,218,0 +170743395105,219,0 +170743395154,218,0 +170743395202,218,0 +170743395252,218,0 +170743395300,218,0 +170743395349,218,0 +170743395397,218,0 +170743395445,218,0 +170743395493,219,0 +170743395541,218,0 +170743395590,218,0 +170743395640,219,0 +170743395688,220,0 +170743395736,220,0 +170743395784,223,0 +170743395832,225,0 +170743395881,228,0 +170743395929,231,0 +170743395977,231,0 +170743396027,242,0 +170743396075,243,0 +170743396123,236,0 +170743396170,220,0 +170743396220,219,0 +170743396269,219,0 +170743396317,219,0 +170743396367,219,0 +170743396416,219,0 +170743396466,219,0 +170743396515,219,0 +170743396563,219,0 +170743396611,219,0 +170743396659,218,0 +170743396709,219,0 +170743396758,219,0 +170743396806,219,0 +170743396856,220,0 +170743396905,221,0 +170743396955,222,0 +170743397003,226,0 +170743397051,227,0 +170743397099,227,0 +170743397148,240,0 +170743397196,244,0 +170743397244,222,0 +170743397292,219,0 +170743397340,219,0 +170743397389,219,0 +170743397437,219,0 +170743397485,219,0 +170743397533,219,0 +170743397581,219,0 +170743397629,219,0 +170743397677,219,0 +170743397725,219,0 +170743397775,219,0 +170743397824,219,0 +170743397874,219,0 +170743397923,219,0 +170743397971,219,0 +170743398021,220,0 +170743398070,222,0 +170743398118,224,0 +170743398168,226,0 +170743398217,229,0 +170743398265,241,0 +170743398313,244,0 +170743398361,221,0 +170743398410,219,0 +170743398460,219,0 +170743398510,218,0 +170743398560,218,0 +170743398609,218,0 +170743398657,219,0 +170743398705,218,0 +170743398753,219,0 +170743398801,218,0 +170743398849,219,0 +170743398897,218,0 +170743398945,220,0 +170743398993,221,0 +170743399041,222,0 +170743399089,223,0 +170743399137,226,0 +170743399184,228,0 +170743399232,230,0 +170743399282,231,0 +170743399330,232,0 +170743399378,233,0 +170743399426,243,0 +170743399474,243,0 +170743399523,223,0 +170743399573,219,0 +170743399622,219,0 +170743399670,219,0 +170743399720,219,0 +170743399769,219,0 +170743399819,219,0 +170743399867,218,0 +170743399915,219,0 +170743399964,218,0 +170743400012,219,0 +170743400060,219,0 +170743400110,220,0 +170743400158,221,0 +170743400206,222,0 +170743400254,224,0 +170743400303,227,0 +170743400351,228,0 +170743400401,230,0 +170743400449,233,0 +170743400498,231,0 +170743400548,245,0 +170743400597,261,0 +170743400647,221,0 +170743400695,218,0 +170743400744,217,0 +170743400794,217,0 +170743400842,217,0 +170743400890,217,0 +170743400938,218,0 +170743400986,218,0 +170743401034,217,0 +170743401081,217,0 +170743401129,217,0 +170743401177,218,0 +170743401225,219,0 +170743401275,220,0 +170743401324,221,0 +170743401372,222,0 +170743401420,225,0 +170743401470,228,0 +170743401519,230,0 +170743401567,232,0 +170743401617,237,0 +170743401665,244,0 +170743401713,241,0 +170743401762,219,0 +170743401810,218,0 +170743401860,218,0 +170743401908,218,0 +170743401956,218,0 +170743402004,218,0 +170743402052,218,0 +170743402100,218,0 +170743402148,218,0 +170743402196,218,0 +170743402244,218,0 +170743402291,218,0 +170743402339,219,0 +170743402389,219,0 +170743402437,220,0 +170743402484,222,0 +170743402532,225,0 +170743402580,228,0 +170743402628,231,0 +170743402676,230,0 +170743402725,230,0 +170743402773,241,0 +170743402821,243,0 +170743402869,223,0 +170743402917,219,0 +170743402965,219,0 +170743403013,219,0 +170743403062,218,0 +170743403110,219,0 +170743403158,219,0 +170743403206,218,0 +170743403256,218,0 +170743403304,218,0 +170743403352,218,0 +170743403400,218,0 +170743403448,219,0 +170743403495,219,0 +170743403543,219,0 +170743403591,221,0 +170743403641,221,0 +170743403689,223,0 +170743403737,226,0 +170743403786,229,0 +170743403834,233,0 +170743403882,240,0 +170743403930,244,0 +170743403980,224,0 +170743404029,219,0 +170743404077,219,0 +170743404125,218,0 +170743404173,218,0 +170743404223,218,0 +170743404271,218,0 +170743404319,218,0 +170743404368,218,0 +170743404418,218,0 +170743404466,218,0 +170743404514,219,0 +170743404563,220,0 +170743404611,221,0 +170743404659,221,0 +170743404707,224,0 +170743404756,227,0 +170743404806,228,0 +170743404855,230,0 +170743404903,233,0 +170743404951,234,0 +170743405001,241,0 +170743405050,244,0 +170743405100,224,0 +170743405148,219,0 +170743405196,218,0 +170743405244,218,0 +170743405292,218,0 +170743405340,218,0 +170743405388,218,0 +170743405436,218,0 +170743405483,218,0 +170743405533,218,0 +170743405582,218,0 +170743405630,218,0 +170743405678,219,0 +170743405726,219,0 +170743405774,219,0 +170743405822,220,0 +170743405870,220,0 +170743405920,222,0 +170743405969,224,0 +170743406017,227,0 +170743406067,231,0 +170743406115,242,0 +170743406163,243,0 +170743406212,224,0 +170743406262,218,0 +170743406311,218,0 +170743406361,218,0 +170743406409,218,0 +170743406457,218,0 +170743406504,218,0 +170743406552,218,0 +170743406602,217,0 +170743406650,218,0 +170743406698,218,0 +170743406746,219,0 +170743406794,220,0 +170743406843,220,0 +170743406891,221,0 +170743406941,223,0 +170743406989,227,0 +170743407037,229,0 +170743407085,230,0 +170743407133,233,0 +170743407181,236,0 +170743407229,235,0 +170743407277,242,0 +170743407325,241,0 +170743407373,221,0 +170743407421,218,0 +170743407469,219,0 +170743407516,219,0 +170743407564,218,0 +170743407612,219,0 +170743407660,218,0 +170743407708,218,0 +170743407756,219,0 +170743407804,218,0 +170743407852,218,0 +170743407900,218,0 +170743407949,218,0 +170743407997,218,0 +170743408047,219,0 +170743408096,220,0 +170743408144,222,0 +170743408193,224,0 +170743408241,227,0 +170743408289,228,0 +170743408337,231,0 +170743408387,239,0 +170743408436,240,0 +170743408484,220,0 +170743408532,218,0 +170743408582,218,0 +170743408630,218,0 +170743408678,218,0 +170743408725,218,0 +170743408773,218,0 +170743408821,218,0 +170743408871,218,0 +170743408918,218,0 +170743408968,218,0 +170743409018,218,0 +170743409067,219,0 +170743409115,220,0 +170743409163,221,0 +170743409211,222,0 +170743409259,225,0 +170743409307,227,0 +170743409355,230,0 +170743409402,232,0 +170743409450,232,0 +170743409498,239,0 +170743409548,242,0 +170743409596,223,0 +170743409645,220,0 +170743409693,219,0 +170743409741,219,0 +170743409789,219,0 +170743409837,219,0 +170743409884,219,0 +170743409932,219,0 +170743409982,218,0 +170743410030,219,0 +170743410077,219,0 +170743410125,219,0 +170743410175,219,0 +170743410223,218,0 +170743410272,219,0 +170743410322,220,0 +170743410371,223,0 +170743410419,224,0 +170743410467,227,0 +170743410515,230,0 +170743410563,231,0 +170743410613,242,0 +170743410661,245,0 +170743410710,220,0 +170743410760,218,0 +170743410809,217,0 +170743410859,217,0 +170743410906,217,0 +170743410954,218,0 +170743411002,218,0 +170743411050,218,0 +170743411098,218,0 +170743411148,218,0 +170743411195,218,0 +170743411245,218,0 +170743411295,218,0 +170743411343,219,0 +170743411392,220,0 +170743411441,221,0 +170743411491,222,0 +170743411541,226,0 +170743411589,228,0 +170743411638,231,0 +170743411686,233,0 +170743411734,243,0 +170743411782,244,0 +170743411830,222,0 +170743411878,217,0 +170743411927,217,0 +170743411975,217,0 +170743412023,217,0 +170743412071,217,0 +170743412119,217,0 +170743412167,218,0 +170743412215,217,0 +170743412263,217,0 +170743412311,217,0 +170743412361,218,0 +170743412409,219,0 +170743412457,220,0 +170743412506,221,0 +170743412554,221,0 +170743412604,223,0 +170743412652,224,0 +170743412700,228,0 +170743412748,230,0 +170743412796,232,0 +170743412843,239,0 +170743412893,243,0 +170743412941,222,0 +170743412989,218,0 +170743413037,217,0 +170743413086,217,0 +170743413134,218,0 +170743413184,218,0 +170743413232,218,0 +170743413280,218,0 +170743413328,218,0 +170743413376,218,0 +170743413425,217,0 +170743413475,217,0 +170743413522,218,0 +170743413570,218,0 +170743413618,218,0 +170743413666,218,0 +170743413714,219,0 +170743413762,220,0 +170743413810,223,0 +170743413858,225,0 +170743413905,229,0 +170743413953,241,0 +170743414001,246,0 +170743414049,224,0 +170743414097,218,0 +170743414145,218,0 +170743414193,218,0 +170743414241,218,0 +170743414289,218,0 +170743414336,218,0 +170743414384,218,0 +170743414432,218,0 +170743414480,218,0 +170743414530,218,0 +170743414578,218,0 +170743414626,218,0 +170743414676,219,0 +170743414725,219,0 +170743414775,220,0 +170743414823,222,0 +170743414872,224,0 +170743414920,228,0 +170743414968,229,0 +170743415018,232,0 +170743415067,243,0 +170743415115,246,0 +170743415163,238,0 +170743415211,221,0 +170743415261,218,0 +170743415308,218,0 +170743415358,218,0 +170743415406,218,0 +170743415454,219,0 +170743415503,218,0 +170743415551,218,0 +170743415599,218,0 +170743415649,219,0 +170743415697,219,0 +170743415745,219,0 +170743415794,218,0 +170743415842,219,0 +170743415890,219,0 +170743415938,221,0 +170743415986,221,0 +170743416034,224,0 +170743416082,226,0 +170743416129,229,0 +170743416177,232,0 +170743416225,241,0 +170743416273,243,0 +170743416321,221,0 +170743416369,218,0 +170743416417,218,0 +170743416465,218,0 +170743416513,221,0 +170743416562,219,0 +170743416610,219,0 +170743416660,219,0 +170743416708,219,0 +170743416757,219,0 +170743416805,219,0 +170743416855,219,0 +170743416903,219,0 +170743416951,218,0 +170743417000,220,0 +170743417048,221,0 +170743417096,223,0 +170743417146,226,0 +170743417193,230,0 +170743417243,231,0 +170743417291,234,0 +170743417340,239,0 +170743417388,251,0 +170743417436,221,0 +170743417484,218,0 +170743417534,218,0 +170743417583,218,0 +170743417631,218,0 +170743417681,217,0 +170743417729,218,0 +170743417778,218,0 +170743417826,218,0 +170743417876,218,0 +170743417924,218,0 +170743417972,218,0 +170743418020,218,0 +170743418068,218,0 +170743418115,218,0 +170743418163,218,0 +170743418211,218,0 +170743418261,218,0 +170743418308,218,0 +170743418358,218,0 +170743418406,220,0 +170743418454,242,0 +170743418503,252,0 +170743418551,223,0 +170743418599,218,0 +170743418647,218,0 +170743418695,218,0 +170743418744,217,0 +170743418792,218,0 +170743418840,218,0 +170743418888,218,0 +170743418936,218,0 +170743418984,218,0 +170743419032,218,0 +170743419080,218,0 +170743419128,217,0 +170743419176,217,0 +170743419224,218,0 +170743419272,219,0 +170743419320,220,0 +170743419367,221,0 +170743419415,224,0 +170743419463,227,0 +170743419511,230,0 +170743419559,242,0 +170743419607,246,0 +170743419655,224,0 +170743419703,219,0 +170743419751,218,0 +170743419798,218,0 +170743419848,218,0 +170743419896,218,0 +170743419944,218,0 +170743419993,218,0 +170743420041,218,0 +170743420089,218,0 +170743420139,218,0 +170743420187,218,0 +170743420235,218,0 +170743420282,218,0 +170743420330,218,0 +170743420380,219,0 +170743420429,220,0 +170743420477,222,0 +170743420527,224,0 +170743420575,227,0 +170743420623,232,0 +170743420673,242,0 +170743420721,245,0 +170743420770,225,0 +170743420820,220,0 +170743420868,219,0 +170743420915,219,0 +170743420965,219,0 +170743421013,219,0 +170743421061,219,0 +170743421109,219,0 +170743421158,219,0 +170743421206,220,0 +170743421254,219,0 +170743421302,220,0 +170743421350,220,0 +170743421398,221,0 +170743421448,222,0 +170743421496,224,0 +170743421544,227,0 +170743421592,229,0 +170743421639,230,0 +170743421687,232,0 +170743421735,234,0 +170743421783,240,0 +170743421832,242,0 +170743421880,220,0 +170743421928,219,0 +170743421976,219,0 +170743422026,219,0 +170743422073,218,0 +170743422121,219,0 +170743422169,218,0 +170743422217,219,0 +170743422265,218,0 +170743422313,219,0 +170743422361,219,0 +170743422410,219,0 +170743422458,219,0 +170743422506,218,0 +170743422554,218,0 +170743422602,219,0 +170743422650,219,0 +170743422698,219,0 +170743422745,219,0 +170743422793,221,0 +170743422843,225,0 +170743422891,228,0 +170743422938,239,0 +170743422986,241,0 +170743423034,223,0 +170743423084,219,0 +170743423134,218,0 +170743423181,218,0 +170743423229,218,0 +170743423277,218,0 +170743423325,218,0 +170743423375,218,0 +170743423423,219,0 +170743423471,218,0 +170743423519,218,0 +170743423568,218,0 +170743423616,219,0 +170743423664,218,0 +170743423712,219,0 +170743423762,220,0 +170743423810,221,0 +170743423859,223,0 +170743423909,225,0 +170743423957,227,0 +170743424006,229,0 +170743424056,240,0 +170743424105,240,0 +170743424155,221,0 +170743424203,218,0 +170743424252,218,0 +170743424300,218,0 +170743424350,218,0 +170743424399,218,0 +170743424447,218,0 +170743424495,218,0 +170743424545,218,0 +170743424593,218,0 +170743424641,218,0 +170743424689,218,0 +170743424737,218,0 +170743424786,219,0 +170743424834,220,0 +170743424882,220,0 +170743424931,222,0 +170743424979,225,0 +170743425029,228,0 +170743425077,231,0 +170743425125,233,0 +170743425174,241,0 +170743425222,242,0 +170743425272,221,0 +170743425320,219,0 +170743425369,219,0 +170743425417,218,0 +170743425465,219,0 +170743425515,218,0 +170743425563,218,0 +170743425611,218,0 +170743425660,219,0 +170743425708,218,0 +170743425758,219,0 +170743425806,219,0 +170743425854,219,0 +170743425902,220,0 +170743425950,220,0 +170743425999,222,0 +170743426049,223,0 +170743426098,227,0 +170743426146,230,0 +170743426194,230,0 +170743426244,233,0 +170743426291,242,0 +170743426339,243,0 +170743426387,221,0 +170743426437,218,0 +170743426486,217,0 +170743426536,217,0 +170743426585,217,0 +170743426633,218,0 +170743426681,217,0 +170743426729,217,0 +170743426779,218,0 +170743426828,218,0 +170743426876,218,0 +170743426924,218,0 +170743426972,218,0 +170743427020,218,0 +170743427068,218,0 +170743427116,218,0 +170743427164,218,0 +170743427211,218,0 +170743427261,218,0 +170743427309,218,0 +170743427357,221,0 +170743427405,241,0 +170743427454,244,0 +170743427502,223,0 +170743427550,218,0 +170743427600,218,0 +170743427648,218,0 +170743427697,218,0 +170743427745,218,0 +170743427793,218,0 +170743427842,218,0 +170743427890,218,0 +170743427938,217,0 +170743427988,218,0 +170743428037,218,0 +170743428085,218,0 +170743428133,218,0 +170743428181,219,0 +170743428231,220,0 +170743428279,221,0 +170743428327,223,0 +170743428376,227,0 +170743428424,228,0 +170743428474,232,0 +170743428522,241,0 +170743428570,244,0 +170743428618,224,0 +170743428667,219,0 +170743428715,218,0 +170743428765,219,0 +170743428814,218,0 +170743428862,219,0 +170743428911,218,0 +170743428959,218,0 +170743429007,218,0 +170743429055,218,0 +170743429105,218,0 +170743429152,219,0 +170743429200,218,0 +170743429248,219,0 +170743429296,220,0 +170743429344,221,0 +170743429392,224,0 +170743429440,227,0 +170743429488,227,0 +170743429536,229,0 +170743429584,230,0 +170743429633,241,0 +170743429683,241,0 +170743429731,223,0 +170743429780,217,0 +170743429830,216,0 +170743429879,217,0 +170743429927,216,0 +170743429975,217,0 +170743430023,216,0 +170743430071,217,0 +170743430119,216,0 +170743430166,217,0 +170743430216,216,0 +170743430264,216,0 +170743430312,216,0 +170743430360,216,0 +170743430407,217,0 +170743430455,216,0 +170743430503,216,0 +170743430551,216,0 +170743430599,217,0 +170743430647,217,0 +170743430697,220,0 +170743430744,248,0 +170743430792,246,0 +170743430842,224,0 +170743430891,220,0 +170743430939,219,0 +170743430987,219,0 +170743431037,218,0 +170743431085,218,0 +170743431133,218,0 +170743431181,218,0 +170743431230,218,0 +170743431278,218,0 +170743431326,218,0 +170743431376,219,0 +170743431424,220,0 +170743431473,220,0 +170743431523,221,0 +170743431571,223,0 +170743431619,225,0 +170743431667,227,0 +170743431715,230,0 +170743431764,232,0 +170743431814,233,0 +170743431861,264,0 +170743431911,241,0 +170743431959,220,0 +170743432007,218,0 +170743432056,218,0 +170743432104,218,0 +170743432152,218,0 +170743432200,217,0 +170743432248,217,0 +170743432296,218,0 +170743432346,218,0 +170743432395,217,0 +170743432443,218,0 +170743432491,217,0 +170743432539,217,0 +170743432587,218,0 +170743432635,217,0 +170743432682,218,0 +170743432730,218,0 +170743432778,218,0 +170743432828,218,0 +170743432877,218,0 +170743432925,220,0 +170743432973,245,0 +170743433021,243,0 +170743433069,224,0 +170743433117,220,0 +170743433165,218,0 +170743433212,218,0 +170743433260,218,0 +170743433308,218,0 +170743433356,218,0 +170743433404,218,0 +170743433452,218,0 +170743433500,218,0 +170743433549,218,0 +170743433597,218,0 +170743433645,218,0 +170743433693,218,0 +170743433741,218,0 +170743433789,218,0 +170743433837,219,0 +170743433884,221,0 +170743433932,224,0 +170743433982,226,0 +170743434030,228,0 +170743434078,230,0 +170743434125,240,0 +170743434173,247,0 +170743434221,222,0 +170743434269,218,0 +170743434317,218,0 +170743434365,218,0 +170743434413,217,0 +170743434461,217,0 +170743434508,217,0 +170743434556,217,0 +170743434604,217,0 +170743434652,217,0 +170743434700,217,0 +170743434748,217,0 +170743434796,217,0 +170743434845,217,0 +170743434895,218,0 +170743434942,218,0 +170743434990,219,0 +170743435038,221,0 +170743435086,224,0 +170743435134,227,0 +170743435182,228,0 +170743435230,243,0 +170743435278,243,0 +170743435326,225,0 +170743435374,219,0 +170743435423,218,0 +170743435473,218,0 +170743435520,218,0 +170743435568,218,0 +170743435616,218,0 +170743435664,218,0 +170743435714,218,0 +170743435762,218,0 +170743435809,218,0 +170743435857,218,0 +170743435905,218,0 +170743435953,218,0 +170743436002,218,0 +170743436050,218,0 +170743436098,217,0 +170743436146,218,0 +170743436194,218,0 +170743436242,218,0 +170743436290,219,0 +170743436338,246,0 +170743436386,244,0 +170743436433,223,0 +170743436481,219,0 +170743436529,218,0 +170743436577,218,0 +170743436625,218,0 +170743436673,218,0 +170743436721,218,0 +170743436770,218,0 +170743436818,218,0 +170743436866,218,0 +170743436914,218,0 +170743436962,218,0 +170743437011,218,0 +170743437059,218,0 +170743437107,218,0 +170743437157,218,0 +170743437205,218,0 +170743437252,218,0 +170743437300,218,0 +170743437350,218,0 +170743437399,218,0 +170743437449,218,0 +170743437498,218,0 +170743437548,218,0 +170743437596,218,0 +170743437645,219,0 +170743437695,220,0 +170743437745,221,0 +170743437793,225,0 +170743437840,226,0 +170743437888,228,0 +170743437936,229,0 +170743437984,232,0 +170743438032,241,0 +170743438082,245,0 +170743438130,225,0 +170743438178,219,0 +170743438227,218,0 +170743438277,218,0 +170743438325,218,0 +170743438373,218,0 +170743438422,218,0 +170743438472,218,0 +170743438520,218,0 +170743438568,218,0 +170743438615,218,0 +170743438665,218,0 +170743438713,218,0 +170743438761,218,0 +170743438809,218,0 +170743438857,219,0 +170743438905,219,0 +170743438954,221,0 +170743439002,223,0 +170743439050,226,0 +170743439098,228,0 +170743439146,238,0 +170743439194,243,0 +170743439242,222,0 +170743439289,218,0 +170743439337,218,0 +170743439385,218,0 +170743439433,218,0 +170743439482,218,0 +170743439530,218,0 +170743439578,218,0 +170743439626,218,0 +170743439674,218,0 +170743439722,218,0 +170743439770,218,0 +170743439818,218,0 +170743439867,218,0 +170743439915,218,0 +170743439963,218,0 +170743440011,219,0 +170743440058,220,0 +170743440106,223,0 +170743440154,226,0 +170743440204,229,0 +170743440252,241,0 +170743440300,243,0 +170743440349,226,0 +170743440399,219,0 +170743440447,218,0 +170743440496,218,0 +170743440544,218,0 +170743440594,218,0 +170743440642,218,0 +170743440689,217,0 +170743440739,217,0 +170743440787,218,0 +170743440835,218,0 +170743440883,218,0 +170743440933,218,0 +170743440981,218,0 +170743441029,218,0 +170743441076,218,0 +170743441126,219,0 +170743441175,222,0 +170743441225,224,0 +170743441273,228,0 +170743441322,228,0 +170743441372,259,0 +170743441420,244,0 +170743441469,220,0 +170743441519,218,0 +170743441567,218,0 +170743441614,217,0 +170743441662,217,0 +170743441710,217,0 +170743441758,217,0 +170743441806,217,0 +170743441854,217,0 +170743441902,218,0 +170743441950,217,0 +170743441998,217,0 +170743442045,218,0 +170743442095,218,0 +170743442143,218,0 +170743442191,219,0 +170743442238,223,0 +170743442286,222,0 +170743442334,223,0 +170743442382,222,0 +170743442430,222,0 +170743442478,219,0 +170743442526,240,0 +170743442574,244,0 +170743442622,221,0 +170743442669,217,0 +170743442717,217,0 +170743442765,217,0 +170743442813,217,0 +170743442861,216,0 +170743442909,217,0 +170743442957,217,0 +170743443005,217,0 +170743443053,216,0 +170743443102,216,0 +170743443151,216,0 +170743443199,217,0 +170743443247,216,0 +170743443295,216,0 +170743443343,216,0 +170743443391,217,0 +170743443439,217,0 +170743443487,217,0 +170743443535,219,0 +170743443583,223,0 +170743443631,240,0 +170743443679,244,0 +170743443727,224,0 +170743443774,218,0 +170743443822,218,0 +170743443870,218,0 +170743443918,218,0 +170743443966,218,0 +170743444014,218,0 +170743444062,218,0 +170743444110,218,0 +170743444159,219,0 +170743444207,218,0 +170743444255,218,0 +170743444303,218,0 +170743444351,218,0 +170743444399,218,0 +170743444447,218,0 +170743444496,220,0 +170743444546,219,0 +170743444594,222,0 +170743444642,224,0 +170743444690,228,0 +170743444739,243,0 +170743444787,244,0 +170743444835,223,0 +170743444883,219,0 +170743444931,219,0 +170743444979,219,0 +170743445029,219,0 +170743445078,218,0 +170743445128,219,0 +170743445177,218,0 +170743445225,219,0 +170743445273,218,0 +170743445321,218,0 +170743445369,218,0 +170743445417,218,0 +170743445465,218,0 +170743445513,219,0 +170743445560,219,0 +170743445608,219,0 +170743445656,219,0 +170743445704,219,0 +170743445752,219,0 +170743445800,219,0 +170743445848,237,0 +170743445896,245,0 +170743445945,226,0 +170743445993,220,0 +170743446041,218,0 +170743446089,218,0 +170743446137,218,0 +170743446185,218,0 +170743446232,218,0 +170743446280,218,0 +170743446328,218,0 +170743446376,218,0 +170743446425,219,0 +170743446475,218,0 +170743446523,219,0 +170743446571,218,0 +170743446619,218,0 +170743446666,218,0 +170743446714,218,0 +170743446762,218,0 +170743446810,219,0 +170743446858,219,0 +170743446906,219,0 +170743446955,220,0 +170743447003,241,0 +170743447051,245,0 +170743447099,224,0 +170743447147,219,0 +170743447196,219,0 +170743447244,219,0 +170743447294,219,0 +170743447342,219,0 +170743447389,219,0 +170743447437,219,0 +170743447487,219,0 +170743447536,219,0 +170743447586,219,0 +170743447634,218,0 +170743447683,219,0 +170743447731,219,0 +170743447781,219,0 +170743447830,219,0 +170743447878,219,0 +170743447926,218,0 +170743447974,218,0 +170743448024,218,0 +170743448072,223,0 +170743448121,243,0 +170743448171,244,0 +170743448220,220,0 +170743448268,219,0 +170743448316,218,0 +170743448366,218,0 +170743448414,218,0 +170743448463,219,0 +170743448511,219,0 +170743448559,220,0 +170743448607,221,0 +170743448656,220,0 +170743448706,221,0 +170743448754,221,0 +170743448802,223,0 +170743448851,223,0 +170743448901,225,0 +170743448950,229,0 +170743448998,230,0 +170743449046,231,0 +170743449094,233,0 +170743449142,232,0 +170743449189,236,0 +170743449237,242,0 +170743449285,244,0 +170743449333,224,0 +170743449381,219,0 +170743449429,219,0 +170743449478,219,0 +170743449526,218,0 +170743449574,218,0 +170743449622,218,0 +170743449670,219,0 +170743449718,218,0 +170743449767,218,0 +170743449815,218,0 +170743449863,218,0 +170743449911,218,0 +170743449959,218,0 +170743450008,218,0 +170743450056,218,0 +170743450104,219,0 +170743450154,219,0 +170743450202,221,0 +170743450251,223,0 +170743450301,228,0 +170743450350,241,0 +170743450400,244,0 +170743450448,224,0 +170743450496,218,0 +170743450544,218,0 +170743450593,218,0 +170743450643,218,0 +170743450691,218,0 +170743450739,218,0 +170743450787,218,0 +170743450835,218,0 +170743450883,218,0 +170743450931,218,0 +170743450979,218,0 +170743451027,219,0 +170743451076,220,0 +170743451124,221,0 +170743451174,222,0 +170743451222,223,0 +170743451271,224,0 +170743451319,228,0 +170743451367,230,0 +170743451417,231,0 +170743451466,243,0 +170743451516,244,0 +170743451563,224,0 +170743451611,218,0 +170743451661,218,0 +170743451709,218,0 +170743451757,218,0 +170743451805,218,0 +170743451853,218,0 +170743451901,218,0 +170743451949,218,0 +170743451997,218,0 +170743452045,218,0 +170743452093,218,0 +170743452142,218,0 +170743452190,218,0 +170743452238,218,0 +170743452286,218,0 +170743452334,219,0 +170743452383,220,0 +170743452431,223,0 +170743452479,226,0 +170743452529,228,0 +170743452577,243,0 +170743452625,242,0 +170743452673,225,0 +170743452722,218,0 +170743452770,218,0 +170743452818,218,0 +170743452866,218,0 +170743452914,218,0 +170743452963,218,0 +170743453011,218,0 +170743453059,217,0 +170743453109,218,0 +170743453157,218,0 +170743453205,218,0 +170743453254,218,0 +170743453304,219,0 +170743453352,220,0 +170743453400,221,0 +170743453449,223,0 +170743453497,225,0 +170743453547,229,0 +170743453595,230,0 +170743453643,233,0 +170743453691,245,0 +170743453739,240,0 +170743453787,234,0 +170743453835,221,0 +170743453884,219,0 +170743453934,219,0 +170743453982,219,0 +170743454031,219,0 +170743454079,219,0 +170743454129,219,0 +170743454177,219,0 +170743454225,219,0 +170743454273,219,0 +170743454322,219,0 +170743454370,219,0 +170743454418,219,0 +170743454466,219,0 +170743454514,219,0 +170743454562,221,0 +170743454610,222,0 +170743454658,225,0 +170743454706,228,0 +170743454755,230,0 +170743454805,232,0 +170743454853,243,0 +170743454901,243,0 +170743454949,222,0 +170743454998,218,0 +170743455046,219,0 +170743455094,219,0 +170743455144,219,0 +170743455192,218,0 +170743455240,218,0 +170743455288,219,0 +170743455337,218,0 +170743455385,219,0 +170743455433,219,0 +170743455481,218,0 +170743455529,218,0 +170743455577,218,0 +170743455627,219,0 +170743455675,219,0 +170743455723,218,0 +170743455772,218,0 +170743455820,219,0 +170743455870,219,0 +170743455918,222,0 +170743455967,244,0 +170743456015,244,0 +170743456063,221,0 +170743456111,218,0 +170743456161,219,0 +170743456210,218,0 +170743456258,219,0 +170743456307,218,0 +170743456355,219,0 +170743456403,219,0 +170743456451,218,0 +170743456501,219,0 +170743456549,219,0 +170743456598,220,0 +170743456646,221,0 +170743456696,220,0 +170743456744,224,0 +170743456792,228,0 +170743456840,228,0 +170743456888,230,0 +170743456937,232,0 +170743456987,233,0 +170743457035,232,0 +170743457083,243,0 +170743457131,244,0 +170743457179,221,0 +170743457228,218,0 +170743457276,218,0 +170743457324,219,0 +170743457374,218,0 +170743457423,219,0 +170743457471,219,0 +170743457519,219,0 +170743457567,220,0 +170743457615,221,0 +170743457663,222,0 +170743457713,223,0 +170743457761,224,0 +170743457809,225,0 +170743457858,226,0 +170743457908,229,0 +170743457957,230,0 +170743458007,232,0 +170743458056,235,0 +170743458104,236,0 +170743458154,238,0 +170743458202,240,0 +170743458250,244,0 +170743458299,224,0 +170743458349,218,0 +170743458398,218,0 +170743458446,218,0 +170743458494,218,0 +170743458544,218,0 +170743458592,218,0 +170743458641,218,0 +170743458689,218,0 +170743458739,218,0 +170743458786,218,0 +170743458834,220,0 +170743458884,219,0 +170743458932,221,0 +170743458980,222,0 +170743459028,222,0 +170743459077,224,0 +170743459125,227,0 +170743459173,230,0 +170743459221,232,0 +170743459271,233,0 +170743459319,243,0 +170743459367,243,0 +170743459416,222,0 +170743459464,218,0 +170743459514,217,0 +170743459562,217,0 +170743459610,217,0 +170743459659,217,0 +170743459709,217,0 +170743459757,217,0 +170743459805,217,0 +170743459854,217,0 +170743459902,218,0 +170743459950,217,0 +170743459998,217,0 +170743460046,218,0 +170743460094,219,0 +170743460144,220,0 +170743460193,221,0 +170743460243,222,0 +170743460292,224,0 +170743460342,229,0 +170743460390,229,0 +170743460438,243,0 +170743460487,243,0 +170743460535,223,0 +170743460585,219,0 +170743460633,218,0 +170743460681,218,0 +170743460729,218,0 +170743460777,218,0 +170743460826,218,0 +170743460874,218,0 +170743460924,218,0 +170743460973,218,0 +170743461023,218,0 +170743461072,218,0 +170743461120,219,0 +170743461170,219,0 +170743461218,220,0 +170743461266,221,0 +170743461313,223,0 +170743461361,225,0 +170743461411,228,0 +170743461459,227,0 +170743461507,226,0 +170743461555,242,0 +170743461604,243,0 +170743461654,224,0 +170743461702,219,0 +170743461751,219,0 +170743461801,219,0 +170743461849,219,0 +170743461898,219,0 +170743461948,219,0 +170743461996,219,0 +170743462045,219,0 +170743462093,219,0 +170743462141,219,0 +170743462191,219,0 +170743462240,219,0 +170743462290,220,0 +170743462338,220,0 +170743462386,220,0 +170743462434,222,0 +170743462483,223,0 +170743462531,225,0 +170743462579,228,0 +170743462627,230,0 +170743462677,241,0 +170743462725,244,0 +170743462773,224,0 +170743462821,219,0 +170743462870,219,0 +170743462918,219,0 +170743462968,219,0 +170743463017,219,0 +170743463065,219,0 +170743463115,218,0 +170743463164,219,0 +170743463214,219,0 +170743463262,218,0 +170743463312,219,0 +170743463359,220,0 +170743463407,221,0 +170743463457,222,0 +170743463507,225,0 +170743463554,228,0 +170743463602,229,0 +170743463650,231,0 +170743463700,232,0 +170743463748,234,0 +170743463796,243,0 +170743463844,243,0 +170743463893,223,0 +170743463943,218,0 +170743463991,219,0 +170743464039,218,0 +170743464087,218,0 +170743464135,219,0 +170743464183,218,0 +170743464232,219,0 +170743464280,219,0 +170743464328,219,0 +170743464378,221,0 +170743464426,221,0 +170743464475,221,0 +170743464523,222,0 +170743464571,223,0 +170743464619,225,0 +170743464667,227,0 +170743464715,230,0 +170743464765,232,0 +170743464813,234,0 +170743464861,237,0 +170743464909,241,0 +170743464958,245,0 +170743465008,225,0 +170743465056,220,0 +170743465104,220,0 +170743465153,220,0 +170743465201,219,0 +170743465249,220,0 +170743465298,219,0 +170743465348,219,0 +170743465397,220,0 +170743465445,220,0 +170743465493,220,0 +170743465543,219,0 +170743465592,220,0 +170743465640,221,0 +170743465688,222,0 +170743465736,222,0 +170743465784,225,0 +170743465832,226,0 +170743465880,228,0 +170743465928,231,0 +170743465976,233,0 +170743466026,242,0 +170743466075,244,0 +170743466125,221,0 +170743466174,215,0 +170743466222,215,0 +170743466272,215,0 +170743466320,215,0 +170743466369,215,0 +170743466417,215,0 +170743466465,215,0 +170743466515,215,0 +170743466563,215,0 +170743466611,215,0 +170743466659,215,0 +170743466706,215,0 +170743466754,219,0 +170743466804,220,0 +170743466853,222,0 +170743466901,225,0 +170743466949,228,0 +170743466997,234,0 +170743467045,232,0 +170743467093,233,0 +170743467143,240,0 +170743467191,244,0 +170743467239,224,0 +170743467287,219,0 +170743467335,219,0 +170743467384,219,0 +170743467434,219,0 +170743467483,219,0 +170743467533,219,0 +170743467581,219,0 +170743467630,219,0 +170743467678,219,0 +170743467726,219,0 +170743467776,219,0 +170743467824,219,0 +170743467873,219,0 +170743467921,219,0 +170743467969,220,0 +170743468019,221,0 +170743468067,222,0 +170743468115,226,0 +170743468163,228,0 +170743468212,231,0 +170743468260,241,0 +170743468308,244,0 +170743468356,224,0 +170743468405,220,0 +170743468453,219,0 +170743468501,219,0 +170743468549,220,0 +170743468597,219,0 +170743468647,219,0 +170743468696,219,0 +170743468744,219,0 +170743468792,219,0 +170743468840,219,0 +170743468888,219,0 +170743468936,220,0 +170743468986,221,0 +170743469034,221,0 +170743469082,223,0 +170743469130,224,0 +170743469178,228,0 +170743469226,230,0 +170743469274,230,0 +170743469321,232,0 +170743469369,233,0 +170743469419,245,0 +170743469469,235,0 +170743469516,221,0 +170743469564,219,0 +170743469612,219,0 +170743469662,219,0 +170743469710,219,0 +170743469759,218,0 +170743469809,219,0 +170743469857,219,0 +170743469906,219,0 +170743469954,219,0 +170743470004,218,0 +170743470052,218,0 +170743470101,219,0 +170743470149,219,0 +170743470197,219,0 +170743470245,220,0 +170743470293,222,0 +170743470341,223,0 +170743470391,227,0 +170743470439,229,0 +170743470487,229,0 +170743470536,243,0 +170743470584,243,0 +170743470632,220,0 +170743470680,217,0 +170743470730,217,0 +170743470777,216,0 +170743470825,216,0 +170743470873,217,0 +170743470921,217,0 +170743470971,217,0 +170743471019,217,0 +170743471067,217,0 +170743471116,218,0 +170743471164,219,0 +170743471214,220,0 +170743471263,221,0 +170743471311,224,0 +170743471359,225,0 +170743471407,229,0 +170743471455,229,0 +170743471503,234,0 +170743471551,234,0 +170743471599,232,0 +170743471649,239,0 +170743471697,241,0 +170743471746,220,0 +170743471796,218,0 +170743471844,218,0 +170743471893,218,0 +170743471941,218,0 +170743471991,218,0 +170743472040,218,0 +170743472088,218,0 +170743472136,218,0 +170743472184,218,0 +170743472232,218,0 +170743472282,219,0 +170743472330,220,0 +170743472379,221,0 +170743472429,222,0 +170743472478,223,0 +170743472526,225,0 +170743472574,227,0 +170743472624,230,0 +170743472672,231,0 +170743472720,233,0 +170743472769,242,0 +170743472819,243,0 +170743472866,221,0 +170743472914,219,0 +170743472962,218,0 +170743473010,218,0 +170743473058,218,0 +170743473106,218,0 +170743473154,218,0 +170743473204,219,0 +170743473252,219,0 +170743473300,219,0 +170743473348,218,0 +170743473396,218,0 +170743473444,218,0 +170743473492,219,0 +170743473539,220,0 +170743473587,220,0 +170743473635,222,0 +170743473685,224,0 +170743473732,227,0 +170743473780,229,0 +170743473828,231,0 +170743473876,239,0 +170743473924,243,0 +170743473972,224,0 +170743474020,220,0 +170743474068,219,0 +170743474116,219,0 +170743474165,219,0 +170743474213,219,0 +170743474261,219,0 +170743474311,219,0 +170743474360,218,0 +170743474410,219,0 +170743474458,219,0 +170743474507,219,0 +170743474555,219,0 +170743474603,219,0 +170743474651,220,0 +170743474699,222,0 +170743474747,223,0 +170743474795,225,0 +170743474843,228,0 +170743474892,230,0 +170743474940,232,0 +170743474988,242,0 +170743475036,244,0 +170743475085,224,0 +170743475133,218,0 +170743475181,218,0 +170743475229,218,0 +170743475277,218,0 +170743475324,218,0 +170743475372,218,0 +170743475420,217,0 +170743475468,218,0 +170743475518,218,0 +170743475567,218,0 +170743475617,218,0 +170743475666,218,0 +170743475716,218,0 +170743475765,219,0 +170743475815,220,0 +170743475864,223,0 +170743475914,226,0 +170743475962,229,0 +170743476010,231,0 +170743476058,233,0 +170743476107,241,0 +170743476157,243,0 +170743476205,223,0 +170743476253,219,0 +170743476301,219,0 +170743476349,219,0 +170743476397,219,0 +170743476444,219,0 +170743476492,219,0 +170743476542,219,0 +170743476590,219,0 +170743476639,219,0 +170743476687,219,0 +170743476737,218,0 +170743476785,219,0 +170743476833,221,0 +170743476881,222,0 +170743476930,222,0 +170743476978,225,0 +170743477026,226,0 +170743477074,230,0 +170743477122,232,0 +170743477169,232,0 +170743477217,241,0 +170743477265,245,0 +170743477313,220,0 +170743477363,219,0 +170743477410,219,0 +170743477458,219,0 +170743477506,218,0 +170743477554,219,0 +170743477602,219,0 +170743477650,219,0 +170743477698,218,0 +170743477747,219,0 +170743477795,218,0 +170743477843,218,0 +170743477893,218,0 +170743477942,219,0 +170743477990,220,0 +170743478040,220,0 +170743478088,220,0 +170743478136,223,0 +170743478184,226,0 +170743478233,229,0 +170743478283,233,0 +170743478331,275,1 +170743478421,246,0 +170743478469,223,0 +170743478517,219,0 +170743478565,218,0 +170743478615,219,0 +170743478664,218,0 +170743478714,218,0 +170743478762,218,0 +170743478810,218,0 +170743478858,218,0 +170743478906,218,0 +170743478955,218,0 +170743479003,218,0 +170743479053,218,0 +170743479102,219,0 +170743479150,219,0 +170743479198,221,0 +170743479248,223,0 +170743479297,225,0 +170743479345,228,0 +170743479393,230,0 +170743479441,241,0 +170743479491,245,0 +170743479539,225,0 +170743479588,219,0 +170743479638,218,0 +170743479686,218,0 +170743479735,218,0 +170743479785,218,0 +170743479833,218,0 +170743479881,218,0 +170743479929,218,0 +170743479976,218,0 +170743480024,218,0 +170743480072,218,0 +170743480120,218,0 +170743480168,218,0 +170743480216,218,0 +170743480264,218,0 +170743480312,218,0 +170743480359,219,0 +170743480407,221,0 +170743480457,223,0 +170743480505,226,0 +170743480554,231,0 +170743480602,242,0 +170743480652,243,0 +170743480700,223,0 +170743480748,219,0 +170743480796,219,0 +170743480844,219,0 +170743480892,218,0 +170743480941,218,0 +170743480989,218,0 +170743481038,219,0 +170743481086,219,0 +170743481134,219,0 +170743481184,219,0 +170743481233,219,0 +170743481281,220,0 +170743481329,221,0 +170743481377,221,0 +170743481427,224,0 +170743481475,226,0 +170743481523,229,0 +170743481572,230,0 +170743481620,234,0 +170743481670,236,0 +170743481718,238,0 +170743481765,242,0 +170743481813,223,0 +170743481861,219,0 +170743481909,219,0 +170743481957,219,0 +170743482007,219,0 +170743482055,219,0 +170743482103,219,0 +170743482151,219,0 +170743482199,219,0 +170743482246,219,0 +170743482294,219,0 +170743482342,219,0 +170743482390,219,0 +170743482439,219,0 +170743482487,220,0 +170743482535,220,0 +170743482585,223,0 +170743482633,225,0 +170743482680,228,0 +170743482728,230,0 +170743482776,231,0 +170743482824,242,0 +170743482872,243,0 +170743482920,224,0 +170743482969,219,0 +170743483017,218,0 +170743483067,218,0 +170743483115,218,0 +170743483163,218,0 +170743483211,218,0 +170743483260,218,0 +170743483310,218,0 +170743483358,218,0 +170743483407,219,0 +170743483457,219,0 +170743483505,219,0 +170743483552,219,0 +170743483600,219,0 +170743483648,220,0 +170743483696,221,0 +170743483744,222,0 +170743483792,226,0 +170743483841,228,0 +170743483889,231,0 +170743483937,240,0 +170743483985,242,0 +170743484034,224,0 +170743484082,218,0 +170743484130,218,0 +170743484178,218,0 +170743484228,218,0 +170743484277,218,0 +170743484327,218,0 +170743484375,218,0 +170743484424,218,0 +170743484472,218,0 +170743484520,218,0 +170743484568,218,0 +170743484616,218,0 +170743484664,219,0 +170743484712,220,0 +170743484761,220,0 +170743484809,223,0 +170743484857,225,0 +170743484906,226,0 +170743484956,229,0 +170743485004,234,0 +170743485052,241,0 +170743485100,242,0 +170743485148,223,0 +170743485196,219,0 +170743485244,217,0 +170743485293,218,0 +170743485343,217,0 +170743485391,217,0 +170743485440,218,0 +170743485488,217,0 +170743485536,217,0 +170743485584,218,0 +170743485632,218,0 +170743485680,218,0 +170743485728,217,0 +170743485776,218,0 +170743485824,219,0 +170743485872,220,0 +170743485920,221,0 +170743485968,222,0 +170743486017,224,0 +170743486065,226,0 +170743486113,230,0 +170743486161,231,0 +170743486208,239,0 +170743486256,244,0 +170743486304,220,0 +170743486352,218,0 +170743486400,218,0 +170743486448,218,0 +170743486496,218,0 +170743486544,218,0 +170743486591,218,0 +170743486639,219,0 +170743486689,218,0 +170743486736,218,0 +170743486784,218,0 +170743486832,218,0 +170743486880,218,0 +170743486928,218,0 +170743486976,219,0 +170743487024,220,0 +170743487073,222,0 +170743487121,224,0 +170743487169,227,0 +170743487217,228,0 +170743487265,232,0 +170743487313,241,0 +170743487360,244,0 +170743487408,224,0 +170743487456,218,0 +170743487504,218,0 +170743487552,218,0 +170743487602,218,0 +170743487649,218,0 +170743487699,218,0 +170743487747,218,0 +170743487795,218,0 +170743487843,218,0 +170743487890,218,0 +170743487938,218,0 +170743487986,218,0 +170743488034,218,0 +170743488082,219,0 +170743488130,221,0 +170743488178,220,0 +170743488226,224,0 +170743488274,226,0 +170743488322,229,0 +170743488369,231,0 +170743488417,242,0 +170743488465,244,0 +170743488513,223,0 +170743488561,219,0 +170743488609,218,0 +170743488657,218,0 +170743488705,218,0 +170743488754,218,0 +170743488802,218,0 +170743488852,218,0 +170743488901,218,0 +170743488949,218,0 +170743488999,218,0 +170743489048,218,0 +170743489096,218,0 +170743489146,218,0 +170743489194,218,0 +170743489242,218,0 +170743489290,219,0 +170743489338,220,0 +170743489387,222,0 +170743489435,226,0 +170743489483,229,0 +170743489531,240,0 +170743489579,244,0 +170743489627,232,0 +170743489675,219,0 +170743489723,218,0 +170743489771,218,0 +170743489819,218,0 +170743489867,218,0 +170743489915,218,0 +170743489962,218,0 +170743490010,218,0 +170743490058,218,0 +170743490106,218,0 +170743490156,218,0 +170743490204,218,0 +170743490252,218,0 +170743490301,220,0 +170743490351,223,0 +170743490401,227,0 +170743490450,230,0 +170743490500,241,0 +170743490549,242,0 +170743490599,221,0 +170743490647,218,0 +170743490695,218,0 +170743490743,218,0 +170743490792,218,0 +170743490840,218,0 +170743490888,218,0 +170743490936,218,0 +170743490984,217,0 +170743491032,218,0 +170743491080,218,0 +170743491129,218,0 +170743491177,219,0 +170743491225,220,0 +170743491273,222,0 +170743491321,225,0 +170743491369,229,0 +170743491416,242,0 +170743491464,244,0 +170743491512,224,0 +170743491560,218,0 +170743491608,217,0 +170743491656,218,0 +170743491704,218,0 +170743491752,218,0 +170743491801,218,0 +170743491851,218,0 +170743491899,218,0 +170743491948,218,0 +170743491998,218,0 +170743492046,218,0 +170743492094,218,0 +170743492142,217,0 +170743492190,218,0 +170743492239,218,0 +170743492289,218,0 +170743492338,249,0 +170743492388,243,0 +170743492436,222,0 +170743492484,217,0 +170743492532,218,0 +170743492579,218,0 +170743492629,217,0 +170743492677,217,0 +170743492725,218,0 +170743492773,217,0 +170743492821,218,0 +170743492869,218,0 +170743492918,219,0 +170743492966,220,0 +170743493014,222,0 +170743493063,224,0 +170743493111,228,0 +170743493161,231,0 +170743493209,233,0 +170743493258,254,0 +170743493306,242,0 +170743493356,224,0 +170743493404,218,0 +170743493452,217,0 +170743493500,217,0 +170743493548,218,0 +170743493595,217,0 +170743493643,218,0 +170743493691,218,0 +170743493741,217,0 +170743493789,217,0 +170743493837,218,0 +170743493885,220,0 +170743493933,221,0 +170743493982,224,0 +170743494032,226,0 +170743494081,230,0 +170743494129,233,0 +170743494177,242,0 +170743494227,243,0 +170743494275,222,0 +170743494323,218,0 +170743494372,218,0 +170743494420,217,0 +170743494470,218,0 +170743494518,217,0 +170743494566,218,0 +170743494614,217,0 +170743494661,218,0 +170743494709,218,0 +170743494759,219,0 +170743494807,220,0 +170743494855,222,0 +170743494904,224,0 +170743494952,226,0 +170743495002,230,0 +170743495050,232,0 +170743495099,241,0 +170743495147,243,0 +170743495197,223,0 +170743495245,218,0 +170743495293,218,0 +170743495341,218,0 +170743495390,218,0 +170743495438,218,0 +170743495486,218,0 +170743495534,218,0 +170743495583,218,0 +170743495633,218,0 +170743495682,218,0 +170743495731,218,0 +170743495780,218,0 +170743495828,218,0 +170743495876,219,0 +170743495924,219,0 +170743495972,223,0 +170743496020,256,0 +170743496068,245,0 +170743496117,223,0 +170743496167,219,0 +170743496215,220,0 +170743496263,220,0 +170743496312,220,0 +170743496360,220,0 +170743496408,219,0 +170743496458,219,0 +170743496506,219,0 +170743496554,219,0 +170743496602,219,0 +170743496650,220,0 +170743496698,220,0 +170743496745,224,0 +170743496793,226,0 +170743496843,228,0 +170743496891,231,0 +170743496939,239,0 +170743496987,242,0 +170743497035,222,0 +170743497082,219,0 +170743497130,218,0 +170743497178,218,0 +170743497226,218,0 +170743497274,218,0 +170743497322,219,0 +170743497370,218,0 +170743497418,218,0 +170743497466,218,0 +170743497514,219,0 +170743497561,220,0 +170743497609,222,0 +170743497657,224,0 +170743497705,225,0 +170743497753,228,0 +170743497801,230,0 +170743497849,238,0 +170743497899,242,0 +170743497947,222,0 +170743497995,218,0 +170743498043,218,0 +170743498091,218,0 +170743498139,218,0 +170743498188,218,0 +170743498236,218,0 +170743498286,218,0 +170743498334,217,0 +170743498382,217,0 +170743498430,218,0 +170743498478,218,0 +170743498527,220,0 +170743498575,221,0 +170743498625,223,0 +170743498672,227,0 +170743498722,229,0 +170743498770,243,0 +170743498818,244,0 +170743498866,222,0 +170743498914,218,0 +170743498961,218,0 +170743499009,217,0 +170743499057,218,0 +170743499107,218,0 +170743499155,218,0 +170743499202,218,0 +170743499250,218,0 +170743499298,219,0 +170743499346,221,0 +170743499394,222,0 +170743499442,227,0 +170743499490,230,0 +170743499538,232,0 +170743499585,234,0 +170743499633,233,0 +170743499683,236,0 +170743499730,244,0 +170743499778,224,0 +170743499826,218,0 +170743499874,218,0 +170743499922,220,0 +170743499970,220,0 +170743500018,221,0 +170743500067,222,0 +170743500115,223,0 +170743500163,224,0 +170743500213,224,0 +170743500261,228,0 +170743500309,232,0 +170743500358,234,0 +170743500406,236,0 +170743500454,237,0 +170743500504,241,0 +170743500553,241,0 +170743500603,242,0 +170743500651,243,0 +170743500700,224,0 +170743500748,219,0 +170743500796,219,0 +170743500844,219,0 +170743500892,220,0 +170743500940,220,0 +170743500988,222,0 +170743501036,222,0 +170743501084,223,0 +170743501133,224,0 +170743501181,225,0 +170743501229,229,0 +170743501277,231,0 +170743501325,234,0 +170743501373,237,0 +170743501421,238,0 +170743501470,237,0 +170743501518,241,0 +170743501566,244,0 +170743501614,225,0 +170743501662,219,0 +170743501710,219,0 +170743501758,219,0 +170743501805,219,0 +170743501853,219,0 +170743501901,219,0 +170743501949,219,0 +170743501997,219,0 +170743502045,219,0 +170743502093,219,0 +170743502141,221,0 +170743502189,223,0 +170743502238,225,0 +170743502286,228,0 +170743502336,229,0 +170743502384,232,0 +170743502432,235,0 +170743502479,243,0 +170743502527,257,0 +170743502577,218,0 +170743502625,219,0 +170743502673,220,0 +170743502721,220,0 +170743502769,222,0 +170743502818,225,0 +170743502866,225,0 +170743502916,224,0 +170743502964,225,0 +170743503012,229,0 +170743503061,232,0 +170743503109,237,0 +170743503157,238,0 +170743503205,240,0 +170743503255,241,0 +170743503303,241,0 +170743503351,240,0 +170743503400,241,0 +170743503448,224,0 +170743503498,219,0 +170743503546,219,0 +170743503595,220,0 +170743503643,220,0 +170743503693,220,0 +170743503741,219,0 +170743503789,219,0 +170743503836,219,0 +170743503886,219,0 +170743503934,220,0 +170743503982,220,0 +170743504030,219,0 +170743504078,219,0 +170743504126,220,0 +170743504174,220,0 +170743504222,222,0 +170743504270,227,0 +170743504318,245,0 +170743504366,222,0 +170743504415,219,0 +170743504463,220,0 +170743504511,219,0 +170743504561,220,0 +170743504610,219,0 +170743504658,219,0 +170743504708,219,0 +170743504757,219,0 +170743504805,218,0 +170743504853,219,0 +170743504902,220,0 +170743504952,221,0 +170743505000,223,0 +170743505048,228,0 +170743505096,229,0 +170743505145,231,0 +170743505195,239,0 +170743505243,245,0 +170743505291,225,0 +170743505339,220,0 +170743505388,220,0 +170743505436,219,0 +170743505484,219,0 +170743505532,220,0 +170743505580,220,0 +170743505628,220,0 +170743505676,221,0 +170743505724,222,0 +170743505772,224,0 +170743505820,224,0 +170743505868,228,0 +170743505916,230,0 +170743505965,233,0 +170743506013,236,0 +170743506061,236,0 +170743506109,238,0 +170743506159,244,0 +170743506207,221,0 +170743506256,220,0 +170743506304,219,0 +170743506354,219,0 +170743506403,220,0 +170743506451,221,0 +170743506499,221,0 +170743506548,223,0 +170743506596,223,0 +170743506644,224,0 +170743506692,225,0 +170743506740,229,0 +170743506788,230,0 +170743506838,233,0 +170743506887,234,0 +170743506935,235,0 +170743506985,236,0 +170743507034,240,0 +170743507084,244,0 +170743507133,223,0 +170743507183,218,0 +170743507231,218,0 +170743507279,219,0 +170743507327,219,0 +170743507375,219,0 +170743507424,220,0 +170743507474,221,0 +170743507522,222,0 +170743507570,223,0 +170743507617,225,0 +170743507667,228,0 +170743507715,231,0 +170743507763,234,0 +170743507812,236,0 +170743507860,237,0 +170743507908,239,0 +170743507958,244,0 +170743508006,244,0 +170743508055,224,0 +170743508105,219,0 +170743508154,219,0 +170743508204,219,0 +170743508252,219,0 +170743508300,219,0 +170743508348,219,0 +170743508395,219,0 +170743508443,220,0 +170743508491,221,0 +170743508539,223,0 +170743508587,224,0 +170743508635,229,0 +170743508685,231,0 +170743508734,233,0 +170743508784,235,0 +170743508832,237,0 +170743508881,242,0 +170743508931,242,0 +170743508979,221,0 +170743509027,219,0 +170743509075,219,0 +170743509123,218,0 +170743509172,219,0 +170743509220,219,0 +170743509268,220,0 +170743509318,221,0 +170743509367,222,0 +170743509417,222,0 +170743509466,224,0 +170743509514,227,0 +170743509562,230,0 +170743509610,233,0 +170743509658,236,0 +170743509707,238,0 +170743509755,238,0 +170743509805,242,0 +170743509853,244,0 +170743509902,221,0 +170743509950,219,0 +170743509998,219,0 +170743510048,219,0 +170743510096,219,0 +170743510144,219,0 +170743510192,219,0 +170743510240,219,0 +170743510288,219,0 +170743510337,219,0 +170743510387,221,0 +170743510435,223,0 +170743510484,227,0 +170743510532,229,0 +170743510580,231,0 +170743510630,233,0 +170743510678,235,0 +170743510726,242,0 +170743510775,241,0 +170743510823,218,0 +170743510872,217,0 +170743510922,217,0 +170743510972,217,0 +170743511020,217,0 +170743511068,217,0 +170743511115,218,0 +170743511165,219,0 +170743511213,220,0 +170743511263,220,0 +170743511310,222,0 +170743511360,227,0 +170743511410,230,0 +170743511459,232,0 +170743511507,235,0 +170743511555,234,0 +170743511603,238,0 +170743511652,242,0 +170743511702,241,0 +170743511751,219,0 +170743511801,218,0 +170743511849,219,0 +170743511897,218,0 +170743511945,218,0 +170743511993,218,0 +170743512042,219,0 +170743512090,220,0 +170743512138,221,0 +170743512188,222,0 +170743512236,223,0 +170743512284,225,0 +170743512333,229,0 +170743512381,232,0 +170743512429,234,0 +170743512478,235,0 +170743512526,235,0 +170743512574,242,0 +170743512622,243,0 +170743512670,218,0 +170743512718,218,0 +170743512766,218,0 +170743512814,217,0 +170743512862,218,0 +170743512911,218,0 +170743512961,218,0 +170743513009,217,0 +170743513058,218,0 +170743513106,217,0 +170743513154,218,0 +170743513202,220,0 +170743513250,222,0 +170743513298,225,0 +170743513347,228,0 +170743513395,232,0 +170743513443,233,0 +170743513491,242,0 +170743513541,244,0 +170743513589,219,0 +170743513636,218,0 +170743513686,218,0 +170743513736,218,0 +170743513783,218,0 +170743513831,218,0 +170743513879,218,0 +170743513927,219,0 +170743513975,220,0 +170743514023,221,0 +170743514071,222,0 +170743514119,225,0 +170743514168,227,0 +170743514216,230,0 +170743514266,233,0 +170743514314,233,0 +170743514363,235,0 +170743514413,242,0 +170743514461,240,0 +170743514510,219,0 +170743514558,218,0 +170743514606,219,0 +170743514654,218,0 +170743514703,218,0 +170743514751,218,0 +170743514799,218,0 +170743514847,218,0 +170743514895,218,0 +170743514943,219,0 +170743514992,220,0 +170743515040,221,0 +170743515088,224,0 +170743515137,227,0 +170743515185,230,0 +170743515235,231,0 +170743515284,234,0 +170743515332,238,0 +170743515380,240,0 +170743515428,217,0 +170743515477,216,0 +170743515525,216,0 +170743515574,217,0 +170743515624,216,0 +170743515672,216,0 +170743515721,216,0 +170743515769,216,0 +170743515817,217,0 +170743515865,217,0 +170743515913,219,0 +170743515961,220,0 +170743516008,222,0 +170743516056,225,0 +170743516104,227,0 +170743516154,230,0 +170743516202,234,0 +170743516250,241,0 +170743516299,240,0 +170743516347,218,0 +170743516395,218,0 +170743516443,218,0 +170743516491,217,0 +170743516541,218,0 +170743516590,217,0 +170743516638,218,0 +170743516686,218,0 +170743516736,218,0 +170743516783,219,0 +170743516833,221,0 +170743516881,223,0 +170743516930,224,0 +170743516980,227,0 +170743517028,231,0 +170743517077,231,0 +170743517127,230,0 +170743517175,243,0 +170743517223,225,0 +170743517271,219,0 +170743517319,218,0 +170743517367,219,0 +170743517416,218,0 +170743517464,219,0 +170743517512,218,0 +170743517560,218,0 +170743517609,218,0 +170743517659,218,0 +170743517709,219,0 +170743517756,221,0 +170743517804,221,0 +170743517852,224,0 +170743517902,227,0 +170743517950,230,0 +170743517998,232,0 +170743518046,236,0 +170743518095,246,0 +170743518143,221,0 +170743518191,218,0 +170743518239,217,0 +170743518287,218,0 +170743518337,218,0 +170743518385,219,0 +170743518434,219,0 +170743518484,220,0 +170743518533,222,0 +170743518581,222,0 +170743518629,223,0 +170743518677,224,0 +170743518725,227,0 +170743518773,230,0 +170743518821,233,0 +170743518871,236,0 +170743518919,237,0 +170743518967,238,0 +170743519016,242,0 +170743519066,234,0 +170743519114,219,0 +170743519162,218,0 +170743519210,218,0 +170743519257,219,0 +170743519307,220,0 +170743519355,221,0 +170743519403,220,0 +170743519451,221,0 +170743519499,222,0 +170743519549,225,0 +170743519597,229,0 +170743519644,231,0 +170743519692,234,0 +170743519740,236,0 +170743519788,240,0 +170743519836,241,0 +170743519884,241,0 +170743519932,244,0 +170743519980,226,0 +170743520028,220,0 +170743520077,220,0 +170743520125,222,0 +170743520174,222,0 +170743520222,224,0 +170743520272,224,0 +170743520320,225,0 +170743520367,226,0 +170743520415,226,0 +170743520465,230,0 +170743520514,232,0 +170743520562,235,0 +170743520610,238,0 +170743520658,239,0 +170743520707,239,0 +170743520755,241,0 +170743520805,241,0 +170743520854,245,0 +170743520904,221,0 +170743520952,219,0 +170743521000,219,0 +170743521048,219,0 +170743521097,218,0 +170743521145,219,0 +170743521193,219,0 +170743521241,220,0 +170743521289,220,0 +170743521337,221,0 +170743521386,222,0 +170743521434,224,0 +170743521482,229,0 +170743521532,233,0 +170743521580,236,0 +170743521629,234,0 +170743521679,238,0 +170743521727,239,0 +170743521775,245,0 +170743521823,221,0 +170743521872,219,0 +170743521922,218,0 +170743521970,218,0 +170743522018,218,0 +170743522066,218,0 +170743522115,219,0 +170743522165,220,0 +170743522214,222,0 +170743522262,223,0 +170743522310,223,0 +170743522359,225,0 +170743522407,227,0 +170743522455,231,0 +170743522505,234,0 +170743522554,236,0 +170743522602,237,0 +170743522650,236,0 +170743522700,244,0 +170743522748,223,0 +170743522796,218,0 +170743522844,218,0 +170743522892,218,0 +170743522940,218,0 +170743522988,218,0 +170743523037,218,0 +170743523085,219,0 +170743523135,219,0 +170743523183,220,0 +170743523231,222,0 +170743523280,223,0 +170743523328,227,0 +170743523378,231,0 +170743523427,232,0 +170743523477,235,0 +170743523526,236,0 +170743523574,243,0 +170743523624,245,0 +170743523673,223,0 +170743523721,220,0 +170743523769,220,0 +170743523817,220,0 +170743523865,219,0 +170743523915,221,0 +170743523964,220,0 +170743524014,220,0 +170743524062,222,0 +170743524110,223,0 +170743524159,224,0 +170743524209,226,0 +170743524257,227,0 +170743524305,231,0 +170743524353,233,0 +170743524401,236,0 +170743524448,237,0 +170743524496,243,0 +170743524546,244,0 +170743524594,222,0 +170743524642,217,0 +170743524691,217,0 +170743524739,217,0 +170743524787,218,0 +170743524835,219,0 +170743524883,221,0 +170743524931,221,0 +170743524979,222,0 +170743525027,223,0 +170743525075,224,0 +170743525123,228,0 +170743525171,230,0 +170743525220,233,0 +170743525268,236,0 +170743525316,237,0 +170743525364,237,0 +170743525414,237,0 +170743525461,243,0 +170743525509,224,0 +170743525557,219,0 +170743525605,218,0 +170743525653,218,0 +170743525701,218,0 +170743525749,218,0 +170743525797,218,0 +170743525845,218,0 +170743525893,219,0 +170743525941,219,0 +170743525988,219,0 +170743526036,220,0 +170743526084,223,0 +170743526134,226,0 +170743526182,229,0 +170743526231,231,0 +170743526279,233,0 +170743526327,237,0 +170743526375,245,0 +170743526423,224,0 +170743526471,219,0 +170743526519,219,0 +170743526567,219,0 +170743526615,219,0 +170743526664,219,0 +170743526712,220,0 +170743526762,221,0 +170743526810,222,0 +170743526858,223,0 +170743526906,223,0 +170743526954,227,0 +170743527002,230,0 +170743527049,233,0 +170743527099,236,0 +170743527147,236,0 +170743527195,237,0 +170743527243,235,0 +170743527292,242,0 +170743527340,223,0 +170743527388,218,0 +170743527436,219,0 +170743527484,219,0 +170743527532,220,0 +170743527581,220,0 +170743527629,221,0 +170743527677,222,0 +170743527725,223,0 +170743527773,224,0 +170743527822,226,0 +170743527870,229,0 +170743527918,230,0 +170743527966,234,0 +170743528014,236,0 +170743528063,237,0 +170743528111,237,0 +170743528159,237,0 +170743528209,243,0 +170743528258,220,0 +170743528308,218,0 +170743528357,218,0 +170743528405,218,0 +170743528453,218,0 +170743528501,218,0 +170743528549,218,0 +170743528599,219,0 +170743528647,220,0 +170743528695,221,0 +170743528743,221,0 +170743528790,224,0 +170743528840,227,0 +170743528888,231,0 +170743528936,233,0 +170743528984,235,0 +170743529033,235,0 +170743529083,240,0 +170743529131,244,0 +170743529180,224,0 +170743529228,219,0 +170743529276,219,0 +170743529324,219,0 +170743529372,218,0 +170743529420,219,0 +170743529470,219,0 +170743529518,219,0 +170743529566,220,0 +170743529614,220,0 +170743529661,221,0 +170743529709,223,0 +170743529757,226,0 +170743529805,229,0 +170743529853,232,0 +170743529902,233,0 +170743529952,236,0 +170743530000,241,0 +170743530048,242,0 +170743530097,223,0 +170743530145,219,0 +170743530193,218,0 +170743530241,218,0 +170743530289,218,0 +170743530339,218,0 +170743530387,219,0 +170743530435,220,0 +170743530484,221,0 +170743530532,221,0 +170743530580,222,0 +170743530628,223,0 +170743530678,227,0 +170743530726,230,0 +170743530774,233,0 +170743530822,240,0 +170743530870,235,0 +170743530919,236,0 +170743530967,243,0 +170743531017,224,0 +170743531065,219,0 +170743531114,219,0 +170743531162,218,0 +170743531212,219,0 +170743531261,218,0 +170743531309,218,0 +170743531359,219,0 +170743531408,219,0 +170743531456,220,0 +170743531506,221,0 +170743531555,222,0 +170743531605,226,0 +170743531653,228,0 +170743531701,231,0 +170743531749,233,0 +170743531797,235,0 +170743531845,236,0 +170743531893,244,0 +170743531940,223,0 +170743531988,218,0 +170743532036,218,0 +170743532084,218,0 +170743532132,218,0 +170743532180,218,0 +170743532228,218,0 +170743532276,218,0 +170743532324,218,0 +170743532372,218,0 +170743532419,219,0 +170743532467,220,0 +170743532515,221,0 +170743532563,223,0 +170743532611,227,0 +170743532659,230,0 +170743532707,233,0 +170743532756,241,0 +170743532804,244,0 +170743532852,223,0 +170743532900,218,0 +170743532948,218,0 +170743532996,218,0 +170743533044,217,0 +170743533092,218,0 +170743533139,218,0 +170743533187,218,0 +170743533235,218,0 +170743533283,218,0 +170743533331,218,0 +170743533379,220,0 +170743533427,221,0 +170743533475,223,0 +170743533523,226,0 +170743533571,229,0 +170743533619,232,0 +170743533668,232,0 +170743533718,238,0 +170743533766,222,0 +170743533816,219,0 +170743533865,218,0 +170743533915,218,0 +170743533962,218,0 +170743534012,219,0 +170743534060,218,0 +170743534109,218,0 +170743534157,218,0 +170743534205,218,0 +170743534255,218,0 +170743534303,218,0 +170743534351,219,0 +170743534399,220,0 +170743534447,222,0 +170743534496,225,0 +170743534544,228,0 +170743534594,232,0 +170743534642,241,0 +170743534690,222,0 +170743534738,218,0 +170743534786,218,0 +170743534835,218,0 +170743534883,218,0 +170743534931,218,0 +170743534979,218,0 +170743535027,218,0 +170743535076,218,0 +170743535126,220,0 +170743535175,221,0 +170743535223,222,0 +170743535271,223,0 +170743535321,226,0 +170743535370,230,0 +170743535418,234,0 +170743535466,237,0 +170743535514,240,0 +170743535564,244,0 +170743535612,223,0 +170743535660,218,0 +170743535709,218,0 +170743535757,218,0 +170743535807,218,0 +170743535855,218,0 +170743535904,219,0 +170743535952,218,0 +170743536002,218,0 +170743536049,219,0 +170743536097,219,0 +170743536145,221,0 +170743536193,225,0 +170743536241,226,0 +170743536289,229,0 +170743536337,232,0 +170743536385,236,0 +170743536433,242,0 +170743536481,242,0 +170743536531,222,0 +170743536578,218,0 +170743536626,218,0 +170743536676,218,0 +170743536724,218,0 +170743536773,218,0 +170743536821,218,0 +170743536869,218,0 +170743536917,219,0 +170743536965,219,0 +170743537013,220,0 +170743537060,222,0 +170743537108,226,0 +170743537158,230,0 +170743537207,233,0 +170743537257,235,0 +170743537306,237,0 +170743537356,240,0 +170743537404,244,0 +170743537452,223,0 +170743537500,218,0 +170743537549,217,0 +170743537597,217,0 +170743537645,217,0 +170743537693,218,0 +170743537741,218,0 +170743537789,220,0 +170743537839,220,0 +170743537888,222,0 +170743537936,223,0 +170743537984,227,0 +170743538032,230,0 +170743538080,233,0 +170743538130,236,0 +170743538179,239,0 +170743538227,240,0 +170743538275,240,0 +170743538323,241,0 +170743538371,224,0 +170743538419,219,0 +170743538468,219,0 +170743538518,221,0 +170743538568,221,0 +170743538616,223,0 +170743538664,224,0 +170743538712,223,0 +170743538761,226,0 +170743538809,228,0 +170743538859,233,0 +170743538907,234,0 +170743538956,237,0 +170743539004,238,0 +170743539054,242,0 +170743539102,243,0 +170743539149,241,0 +170743539197,244,0 +170743539245,243,0 +170743539295,222,0 +170743539345,218,0 +170743539394,220,0 +170743539444,220,0 +170743539493,220,0 +170743539541,221,0 +170743539591,223,0 +170743539639,224,0 +170743539687,224,0 +170743539736,226,0 +170743539784,230,0 +170743539832,232,0 +170743539880,234,0 +170743539930,236,0 +170743539977,238,0 +170743540027,240,0 +170743540077,240,0 +170743540124,243,0 +170743540172,243,0 +170743540220,221,0 +170743540270,219,0 +170743540318,219,0 +170743540367,218,0 +170743540415,219,0 +170743540463,220,0 +170743540513,220,0 +170743540561,221,0 +170743540610,222,0 +170743540658,223,0 +170743540706,224,0 +170743540754,228,0 +170743540802,230,0 +170743540850,233,0 +170743540898,234,0 +170743540946,238,0 +170743540995,238,0 +170743541043,242,0 +170743541093,243,0 +170743541141,223,0 +170743541189,219,0 +170743541238,219,0 +170743541286,219,0 +170743541336,219,0 +170743541384,220,0 +170743541432,222,0 +170743541480,222,0 +170743541528,223,0 +170743541576,223,0 +170743541625,227,0 +170743541675,230,0 +170743541723,235,0 +170743541772,237,0 +170743541820,239,0 +170743541868,242,0 +170743541916,240,0 +170743541966,244,0 +170743542015,244,0 +170743542063,220,0 +170743542113,220,0 +170743542161,219,0 +170743542210,219,0 +170743542260,219,0 +170743542307,219,0 +170743542357,220,0 +170743542405,222,0 +170743542455,222,0 +170743542503,223,0 +170743542552,223,0 +170743542600,226,0 +170743542650,228,0 +170743542699,232,0 +170743542747,233,0 +170743542795,232,0 +170743542843,233,0 +170743542893,240,0 +170743542942,227,0 +170743542990,219,0 +170743543038,218,0 +170743543086,218,0 +170743543134,218,0 +170743543182,219,0 +170743543230,219,0 +170743543278,221,0 +170743543328,221,0 +170743543376,222,0 +170743543425,224,0 +170743543473,226,0 +170743543523,229,0 +170743543571,231,0 +170743543618,235,0 +170743543668,237,0 +170743543716,239,0 +170743543764,240,0 +170743543812,245,0 +170743543860,238,0 +170743543909,220,0 +170743543957,220,0 +170743544006,219,0 +170743544055,219,0 +170743544103,219,0 +170743544151,219,0 +170743544199,221,0 +170743544247,221,0 +170743544295,223,0 +170743544343,224,0 +170743544390,225,0 +170743544438,228,0 +170743544486,231,0 +170743544534,233,0 +170743544582,236,0 +170743544632,235,0 +170743544680,241,0 +170743544729,243,0 +170743544778,242,0 +170743544826,221,0 +170743544874,219,0 +170743544924,218,0 +170743544972,218,0 +170743545020,218,0 +170743545069,218,0 +170743545119,220,0 +170743545168,220,0 +170743545216,221,0 +170743545266,223,0 +170743545314,224,0 +170743545363,228,0 +170743545413,230,0 +170743545461,233,0 +170743545509,235,0 +170743545558,236,0 +170743545606,238,0 +170743545654,244,0 +170743545702,225,0 +170743545751,219,0 +170743545799,218,0 +170743545849,219,0 +170743545898,219,0 +170743545946,219,0 +170743545994,219,0 +170743546042,220,0 +170743546090,221,0 +170743546138,222,0 +170743546186,223,0 +170743546234,226,0 +170743546281,229,0 +170743546331,231,0 +170743546379,233,0 +170743546427,235,0 +170743546475,237,0 +170743546523,237,0 +170743546570,240,0 +170743546618,243,0 +170743546666,219,0 +170743546714,218,0 +170743546762,218,0 +170743546811,218,0 +170743546859,219,0 +170743546907,219,0 +170743546955,220,0 +170743547003,221,0 +170743547051,221,0 +170743547099,223,0 +170743547148,225,0 +170743547198,229,0 +170743547246,232,0 +170743547295,233,0 +170743547343,236,0 +170743547391,238,0 +170743547439,237,0 +170743547487,242,0 +170743547535,243,0 +170743547582,221,0 +170743547630,219,0 +170743547678,219,0 +170743547726,219,0 +170743547775,219,0 +170743547823,219,0 +170743547871,219,0 +170743547919,219,0 +170743547967,219,0 +170743548015,220,0 +170743548063,222,0 +170743548111,222,0 +170743548160,227,0 +170743548208,230,0 +170743548256,232,0 +170743548306,234,0 +170743548354,238,0 +170743548403,242,0 +170743548451,242,0 +170743548499,221,0 +170743548547,219,0 +170743548595,218,0 +170743548643,218,0 +170743548691,218,0 +170743548739,218,0 +170743548787,218,0 +170743548836,219,0 +170743548886,219,0 +170743548934,221,0 +170743548983,222,0 +170743549031,224,0 +170743549079,227,0 +170743549129,230,0 +170743549177,232,0 +170743549225,235,0 +170743549273,236,0 +170743549321,243,0 +170743549369,240,0 +170743549417,220,0 +170743549466,219,0 +170743549514,219,0 +170743549562,219,0 +170743549610,220,0 +170743549658,219,0 +170743549706,220,0 +170743549754,221,0 +170743549802,222,0 +170743549850,222,0 +170743549898,223,0 +170743549946,228,0 +170743549994,231,0 +170743550042,233,0 +170743550091,235,0 +170743550139,235,0 +170743550187,238,0 +170743550235,242,0 +170743550285,244,0 +170743550333,222,0 +170743550382,219,0 +170743550432,219,0 +170743550480,219,0 +170743550529,219,0 +170743550577,219,0 +170743550626,219,0 +170743550676,219,0 +170743550724,218,0 +170743550772,218,0 +170743550820,219,0 +170743550868,219,0 +170743550916,219,0 +170743550964,222,0 +170743551012,224,0 +170743551060,227,0 +170743551108,230,0 +170743551156,241,0 +170743551204,243,0 +170743551252,222,0 +170743551301,220,0 +170743551349,219,0 +170743551397,219,0 +170743551445,219,0 +170743551493,219,0 +170743551541,220,0 +170743551589,221,0 +170743551637,223,0 +170743551684,223,0 +170743551732,223,0 +170743551780,227,0 +170743551830,230,0 +170743551879,232,0 +170743551929,233,0 +170743551978,235,0 +170743552026,236,0 +170743552074,242,0 +170743552122,243,0 +170743552170,220,0 +170743552218,218,0 +170743552265,219,0 +170743552313,219,0 +170743552361,218,0 +170743552409,219,0 +170743552457,219,0 +170743552505,219,0 +170743552553,219,0 +170743552600,220,0 +170743552648,220,0 +170743552696,221,0 +170743552744,224,0 +170743552792,227,0 +170743552840,230,0 +170743552888,232,0 +170743552936,237,0 +170743552983,245,0 +170743553031,243,0 +170743553079,221,0 +170743553127,218,0 +170743553175,218,0 +170743553224,218,0 +170743553272,218,0 +170743553320,218,0 +170743553370,218,0 +170743553417,218,0 +170743553465,218,0 +170743553513,219,0 +170743553561,220,0 +170743553609,221,0 +170743553657,223,0 +170743553705,227,0 +170743553753,230,0 +170743553801,232,0 +170743553848,237,0 +170743553896,242,0 +170743553944,245,0 +170743553992,224,0 +170743554040,218,0 +170743554088,218,0 +170743554136,219,0 +170743554184,219,0 +170743554232,220,0 +170743554280,220,0 +170743554328,221,0 +170743554376,222,0 +170743554424,223,0 +170743554471,223,0 +170743554521,225,0 +170743554570,227,0 +170743554618,230,0 +170743554666,230,0 +170743554714,235,0 +170743554762,234,0 +170743554810,241,0 +170743554858,244,0 +170743554907,224,0 +170743554955,218,0 +170743555003,218,0 +170743555051,218,0 +170743555099,218,0 +170743555147,218,0 +170743555194,219,0 +170743555242,218,0 +170743555290,218,0 +170743555338,219,0 +170743555388,219,0 +170743555436,221,0 +170743555485,221,0 +170743555533,224,0 +170743555581,229,0 +170743555629,231,0 +170743555677,234,0 +170743555724,244,0 +170743555772,243,0 +170743555820,224,0 +170743555868,219,0 +170743555916,219,0 +170743555964,219,0 +170743556012,218,0 +170743556060,219,0 +170743556108,220,0 +170743556155,220,0 +170743556203,220,0 +170743556251,223,0 +170743556299,223,0 +170743556347,225,0 +170743556395,230,0 +170743556443,232,0 +170743556491,235,0 +170743556539,236,0 +170743556587,239,0 +170743556635,241,0 +170743556683,243,0 +170743556732,222,0 +170743556782,218,0 +170743556830,218,0 +170743556879,219,0 +170743556927,220,0 +170743556975,221,0 +170743557023,220,0 +170743557071,221,0 +170743557119,221,0 +170743557167,223,0 +170743557215,225,0 +170743557264,228,0 +170743557312,232,0 +170743557360,235,0 +170743557410,237,0 +170743557458,240,0 +170743557508,241,0 +170743557555,242,0 +170743557603,244,0 +170743557651,238,0 +170743557699,217,0 +170743557749,216,0 +170743557797,218,0 +170743557845,219,0 +170743557894,221,0 +170743557942,221,0 +170743557992,221,0 +170743558040,224,0 +170743558089,224,0 +170743558137,228,0 +170743558185,233,0 +170743558233,235,0 +170743558281,239,0 +170743558329,238,0 +170743558377,240,0 +170743558425,241,0 +170743558473,240,0 +170743558520,243,0 +170743558570,223,0 +170743558619,219,0 +170743558667,219,0 +170743558715,220,0 +170743558763,222,0 +170743558811,222,0 +170743558859,224,0 +170743558907,225,0 +170743558955,225,0 +170743559003,227,0 +170743559050,229,0 +170743559098,230,0 +170743559146,234,0 +170743559194,235,0 +170743559242,237,0 +170743559290,238,0 +170743559338,242,0 +170743559386,244,0 +170743559434,248,0 +170743559482,236,0 +170743559531,220,0 +170743559579,219,0 +170743559628,219,0 +170743559676,219,0 +170743559724,219,0 +170743559774,219,0 +170743559822,219,0 +170743559870,219,0 +170743559918,219,0 +170743559965,220,0 +170743560013,222,0 +170743560061,222,0 +170743560109,223,0 +170743560158,227,0 +170743560206,231,0 +170743560254,233,0 +170743560302,235,0 +170743560350,244,0 +170743560398,239,0 +170743560446,220,0 +170743560494,219,0 +170743560541,220,0 +170743560589,220,0 +170743560637,220,0 +170743560685,222,0 +170743560733,222,0 +170743560781,223,0 +170743560829,223,0 +170743560877,224,0 +170743560925,227,0 +170743560972,231,0 +170743561020,233,0 +170743561068,235,0 +170743561116,237,0 +170743561164,239,0 +170743561214,241,0 +170743561262,241,0 +170743561310,243,0 +170743561358,221,0 +170743561406,220,0 +170743561454,220,0 +170743561502,220,0 +170743561551,220,0 +170743561601,221,0 +170743561649,223,0 +170743561696,223,0 +170743561744,224,0 +170743561792,224,0 +170743561842,227,0 +170743561890,231,0 +170743561937,235,0 +170743561985,237,0 +170743562033,237,0 +170743562081,236,0 +170743562129,235,0 +170743562177,243,0 +170743562225,243,0 +170743562272,220,0 +170743562320,219,0 +170743562368,219,0 +170743562416,219,0 +170743562464,219,0 +170743562512,219,0 +170743562560,220,0 +170743562608,220,0 +170743562656,221,0 +170743562705,223,0 +170743562754,223,0 +170743562804,226,0 +170743562852,229,0 +170743562900,233,0 +170743562948,234,0 +170743562996,237,0 +170743563045,238,0 +170743563095,243,0 +170743563143,243,0 +170743563191,221,0 +170743563239,219,0 +170743563287,218,0 +170743563335,219,0 +170743563383,219,0 +170743563431,219,0 +170743563480,219,0 +170743563528,220,0 +170743563576,221,0 +170743563626,222,0 +170743563674,223,0 +170743563722,224,0 +170743563771,226,0 +170743563819,231,0 +170743563867,231,0 +170743563915,234,0 +170743563964,235,0 +170743564012,242,0 +170743564060,242,0 +170743564108,222,0 +170743564156,218,0 +170743564204,219,0 +170743564252,219,0 +170743564300,220,0 +170743564348,221,0 +170743564395,221,0 +170743564443,223,0 +170743564491,223,0 +170743564539,224,0 +170743564587,225,0 +170743564635,227,0 +170743564683,232,0 +170743564731,235,0 +170743564778,236,0 +170743564826,239,0 +170743564874,256,0 +170743564922,243,0 +170743564970,242,0 +170743565018,222,0 +170743565066,219,0 +170743565114,219,0 +170743565162,218,0 +170743565210,218,0 +170743565257,219,0 +170743565305,217,0 +170743565353,220,0 +170743565401,221,0 +170743565449,222,0 +170743565498,222,0 +170743565546,227,0 +170743565594,230,0 +170743565642,231,0 +170743565690,235,0 +170743565738,237,0 +170743565786,239,0 +170743565834,243,0 +170743565882,244,0 +170743565930,222,0 +170743565978,218,0 +170743566026,218,0 +170743566074,218,0 +170743566122,218,0 +170743566172,220,0 +170743566220,220,0 +170743566269,221,0 +170743566317,222,0 +170743566365,223,0 +170743566413,224,0 +170743566463,227,0 +170743566511,229,0 +170743566560,230,0 +170743566608,233,0 +170743566658,234,0 +170743566706,237,0 +170743566755,242,0 +170743566803,244,0 +170743566853,224,0 +170743566901,219,0 +170743566948,219,0 +170743566996,218,0 +170743567044,218,0 +170743567092,218,0 +170743567142,219,0 +170743567190,219,0 +170743567238,220,0 +170743567287,221,0 +170743567335,222,0 +170743567383,222,0 +170743567431,227,0 +170743567479,230,0 +170743567529,234,0 +170743567577,236,0 +170743567625,237,0 +170743567673,242,0 +170743567722,244,0 +170743567770,221,0 +170743567820,218,0 +170743567868,218,0 +170743567917,218,0 +170743567965,218,0 +170743568013,218,0 +170743568063,218,0 +170743568112,218,0 +170743568160,218,0 +170743568208,218,0 +170743568256,218,0 +170743568304,220,0 +170743568354,221,0 +170743568402,224,0 +170743568451,228,0 +170743568499,232,0 +170743568547,235,0 +170743568595,242,0 +170743568643,242,0 +170743568693,219,0 +170743568741,218,0 +170743568789,218,0 +170743568837,218,0 +170743568884,218,0 +170743568932,219,0 +170743568980,220,0 +170743569028,221,0 +170743569076,221,0 +170743569124,222,0 +170743569172,222,0 +170743569220,225,0 +170743569269,228,0 +170743569317,231,0 +170743569365,234,0 +170743569415,237,0 +170743569463,239,0 +170743569511,242,0 +170743569559,244,0 +170743569606,222,0 +170743569656,220,0 +170743569704,219,0 +170743569753,221,0 +170743569801,222,0 +170743569849,222,0 +170743569899,222,0 +170743569948,224,0 +170743569996,224,0 +170743570044,224,0 +170743570092,226,0 +170743570140,231,0 +170743570188,233,0 +170743570238,233,0 +170743570286,237,0 +170743570335,236,0 +170743570383,238,0 +170743570431,241,0 +170743570479,242,0 +170743570527,223,0 +170743570575,218,0 +170743570623,218,0 +170743570671,218,0 +170743570719,218,0 +170743570768,218,0 +170743570816,218,0 +170743570864,218,0 +170743570912,218,0 +170743570960,218,0 +170743571008,219,0 +170743571056,220,0 +170743571104,220,0 +170743571154,223,0 +170743571203,227,0 +170743571251,231,0 +170743571301,234,0 +170743571349,243,0 +170743571397,243,0 +170743571444,222,0 +170743571494,219,0 +170743571542,219,0 +170743571590,218,0 +170743571638,219,0 +170743571687,219,0 +170743571735,219,0 +170743571783,218,0 +170743571831,219,0 +170743571879,220,0 +170743571927,221,0 +170743571975,221,0 +170743572023,226,0 +170743572071,229,0 +170743572119,232,0 +170743572167,235,0 +170743572215,238,0 +170743572262,243,0 +170743572310,245,0 +170743572358,223,0 +170743572406,219,0 +170743572454,219,0 +170743572504,219,0 +170743572553,219,0 +170743572603,220,0 +170743572651,219,0 +170743572700,219,0 +170743572749,219,0 +170743572797,219,0 +170743572845,219,0 +170743572893,220,0 +170743572943,220,0 +170743572991,221,0 +170743573040,225,0 +170743573090,229,0 +170743573138,234,0 +170743573186,243,0 +170743573235,246,0 +170743573283,223,0 +170743573331,219,0 +170743573381,219,0 +170743573429,218,0 +170743573478,219,0 +170743573526,220,0 +170743573576,221,0 +170743573625,222,0 +170743573675,223,0 +170743573724,223,0 +170743573772,224,0 +170743573820,225,0 +170743573868,230,0 +170743573916,233,0 +170743573964,235,0 +170743574014,238,0 +170743574062,241,0 +170743574111,246,0 +170743574161,245,0 +170743574209,222,0 +170743574257,221,0 +170743574305,221,0 +170743574353,223,0 +170743574401,224,0 +170743574449,225,0 +170743574497,225,0 +170743574546,226,0 +170743574596,225,0 +170743574645,229,0 +170743574693,230,0 +170743574743,234,0 +170743574791,237,0 +170743574838,238,0 +170743574886,240,0 +170743574934,239,0 +170743574984,242,0 +170743575032,245,0 +170743575080,243,0 +170743575128,219,0 +170743575176,218,0 +170743575224,218,0 +170743575273,219,0 +170743575321,220,0 +170743575369,220,0 +170743575417,221,0 +170743575467,222,0 +170743575514,224,0 +170743575562,226,0 +170743575610,231,0 +170743575658,235,0 +170743575708,236,0 +170743575756,239,0 +170743575805,239,0 +170743575855,241,0 +170743575903,244,0 +170743575952,245,0 +170743576000,243,0 +170743576050,222,0 +170743576099,222,0 +170743576147,221,0 +170743576195,223,0 +170743576243,223,0 +170743576291,226,0 +170743576339,226,0 +170743576388,229,0 +170743576436,232,0 +170743576484,234,0 +170743576532,237,0 +170743576582,239,0 +170743576630,239,0 +170743576678,242,0 +170743576726,243,0 +170743576774,243,0 +170743576822,245,0 +170743576870,243,0 +170743576918,250,0 +170743576966,221,0 +170743577014,221,0 +170743577063,220,0 +170743577111,221,0 +170743577159,222,0 +170743577209,223,0 +170743577256,225,0 +170743577306,228,0 +170743577354,230,0 +170743577402,233,0 +170743577451,237,0 +170743577499,238,0 +170743577547,241,0 +170743577597,242,0 +170743577645,244,0 +170743577694,244,0 +170743577742,244,0 +170743577790,243,0 +170743577838,237,0 +170743577888,219,0 +170743577937,218,0 +170743577985,220,0 +170743578035,221,0 +170743578084,220,0 +170743578134,221,0 +170743578181,222,0 +170743578229,225,0 +170743578277,225,0 +170743578325,226,0 +170743578373,230,0 +170743578421,234,0 +170743578469,236,0 +170743578517,238,0 +170743578565,238,0 +170743578612,243,0 +170743578660,242,0 +170743578708,245,0 +170743578756,241,0 +170743578804,220,0 +170743578852,219,0 +170743578900,219,0 +170743578948,220,0 +170743578996,221,0 +170743579044,222,0 +170743579091,222,0 +170743579139,223,0 +170743579187,223,0 +170743579235,223,0 +170743579283,226,0 +170743579332,229,0 +170743579380,232,0 +170743579428,235,0 +170743579476,236,0 +170743579524,237,0 +170743579572,238,0 +170743579620,242,0 +170743579669,242,0 +170743579717,221,0 +170743579765,219,0 +170743579813,220,0 +170743579861,221,0 +170743579909,223,0 +170743579957,222,0 +170743580005,224,0 +170743580053,223,0 +170743580102,225,0 +170743580150,227,0 +170743580198,229,0 +170743580248,233,0 +170743580297,235,0 +170743580347,237,0 +170743580395,239,0 +170743580444,239,0 +170743580494,241,0 +170743580541,241,0 +170743580589,234,0 +170743580639,218,0 +170743580687,218,0 +170743580735,218,0 +170743580783,218,0 +170743580832,218,0 +170743580882,218,0 +170743580930,218,0 +170743580979,218,0 +170743581027,218,0 +170743581075,218,0 +170743581123,218,0 +170743581172,218,0 +170743581220,218,0 +170743581270,218,0 +170743581318,222,0 +170743581365,224,0 +170743581413,228,0 +170743581463,242,0 +170743581511,228,0 +170743581559,220,0 +170743581608,220,0 +170743581656,221,0 +170743581704,222,0 +170743581754,222,0 +170743581802,223,0 +170743581850,223,0 +170743581898,226,0 +170743581946,226,0 +170743581994,226,0 +170743582042,227,0 +170743582090,231,0 +170743582138,233,0 +170743582186,235,0 +170743582235,238,0 +170743582285,239,0 +170743582333,242,0 +170743582381,244,0 +170743582429,232,0 +170743582478,220,0 +170743582526,220,0 +170743582574,220,0 +170743582622,221,0 +170743582670,221,0 +170743582720,223,0 +170743582768,224,0 +170743582817,225,0 +170743582867,224,0 +170743582915,226,0 +170743582963,228,0 +170743583012,230,0 +170743583060,234,0 +170743583110,236,0 +170743583159,238,0 +170743583207,239,0 +170743583257,239,0 +170743583306,244,0 +170743583356,234,0 +170743583405,220,0 +170743583453,221,0 +170743583503,222,0 +170743583551,222,0 +170743583600,221,0 +170743583648,222,0 +170743583698,225,0 +170743583746,225,0 +170743583794,227,0 +170743583842,231,0 +170743583890,233,0 +170743583939,236,0 +170743583989,238,0 +170743584037,242,0 +170743584085,242,0 +170743584134,244,0 +170743584182,241,0 +170743584230,245,0 +170743584278,226,0 +170743584328,220,0 +170743584376,220,0 +170743584425,221,0 +170743584473,221,0 +170743584521,222,0 +170743584571,222,0 +170743584620,225,0 +170743584668,224,0 +170743584716,224,0 +170743584764,226,0 +170743584814,229,0 +170743584863,234,0 +170743584911,237,0 +170743584959,238,0 +170743585007,238,0 +170743585055,240,0 +170743585103,243,0 +170743585151,246,0 +170743585199,225,0 +170743585246,220,0 +170743585294,219,0 +170743585342,219,0 +170743585390,219,0 +170743585438,219,0 +170743585488,220,0 +170743585535,220,0 +170743585583,221,0 +170743585631,223,0 +170743585679,223,0 +170743585727,225,0 +170743585775,229,0 +170743585823,232,0 +170743585871,234,0 +170743585918,235,0 +170743585966,236,0 +170743586014,235,0 +170743586062,243,0 +170743586110,224,0 +170743586158,219,0 +170743586206,219,0 +170743586254,219,0 +170743586302,219,0 +170743586350,219,0 +170743586397,219,0 +170743586445,219,0 +170743586493,219,0 +170743586541,219,0 +170743586589,219,0 +170743586637,219,0 +170743586685,219,0 +170743586734,220,0 +170743586784,220,0 +170743586832,219,0 +170743586880,219,0 +170743586928,221,0 +170743586975,242,0 +170743587023,228,0 +170743587071,219,0 +170743587119,219,0 +170743587167,219,0 +170743587215,219,0 +170743587263,219,0 +170743587311,221,0 +170743587359,221,0 +170743587406,223,0 +170743587456,223,0 +170743587504,223,0 +170743587552,226,0 +170743587600,229,0 +170743587649,234,0 +170743587697,233,0 +170743587745,237,0 +170743587793,237,0 +170743587841,240,0 +170743587889,242,0 +170743587938,220,0 +170743587986,220,0 +170743588034,220,0 +170743588082,220,0 +170743588131,220,0 +170743588181,221,0 +170743588229,225,0 +170743588277,221,0 +170743588325,223,0 +170743588373,225,0 +170743588423,225,0 +170743588471,228,0 +170743588520,231,0 +170743588568,234,0 +170743588616,238,0 +170743588666,240,0 +170743588715,240,0 +170743588764,235,0 +170743588812,245,0 +170743588860,225,0 +170743588908,220,0 +170743588958,220,0 +170743589006,220,0 +170743589054,220,0 +170743589102,220,0 +170743589150,220,0 +170743589199,220,0 +170743589247,220,0 +170743589295,221,0 +170743589344,222,0 +170743589392,224,0 +170743589440,228,0 +170743589488,231,0 +170743589536,233,0 +170743589584,235,0 +170743589632,233,0 +170743589680,231,0 +170743589727,245,0 +170743589775,227,0 +170743589823,224,0 +170743589873,222,0 +170743589921,224,0 +170743589969,225,0 +170743590016,227,0 +170743590064,228,0 +170743590112,228,0 +170743590160,229,0 +170743590208,231,0 +170743590256,234,0 +170743590304,236,0 +170743590351,238,0 +170743590399,243,0 +170743590447,244,0 +170743590495,246,0 +170743590543,245,0 +170743590591,242,0 +170743590639,243,0 +170743590687,226,0 +170743590735,222,0 +170743590782,223,0 +170743590830,223,0 +170743590880,224,0 +170743590928,226,0 +170743590976,226,0 +170743591023,227,0 +170743591071,227,0 +170743591119,230,0 +170743591167,232,0 +170743591215,236,0 +170743591263,240,0 +170743591311,239,0 +170743591359,242,0 +170743591407,243,0 +170743591454,243,0 +170743591502,242,0 +170743591550,243,0 +170743591600,231,0 +170743591648,221,0 +170743591695,221,0 +170743591743,221,0 +170743591793,222,0 +170743591841,224,0 +170743591889,223,0 +170743591937,225,0 +170743591985,225,0 +170743592033,225,0 +170743592081,228,0 +170743592128,232,0 +170743592176,235,0 +170743592224,238,0 +170743592272,241,0 +170743592320,240,0 +170743592368,244,0 +170743592416,243,0 +170743592464,244,0 +170743592512,244,0 +170743592560,220,0 +170743592607,218,0 +170743592655,218,0 +170743592703,218,0 +170743592751,218,0 +170743592799,218,0 +170743592847,218,0 +170743592896,218,0 +170743592944,220,0 +170743592992,221,0 +170743593040,221,0 +170743593088,224,0 +170743593136,229,0 +170743593184,232,0 +170743593232,236,0 +170743593280,235,0 +170743593328,233,0 +170743593377,244,0 +170743593425,246,0 +170743593473,219,0 +170743593521,217,0 +170743593569,217,0 +170743593617,217,0 +170743593665,217,0 +170743593713,217,0 +170743593761,217,0 +170743593809,219,0 +170743593856,221,0 +170743593906,222,0 +170743593956,225,0 +170743594004,228,0 +170743594051,256,0 +170743594101,236,0 +170743594149,238,0 +170743594197,240,0 +170743594245,242,0 +170743594293,244,0 +170743594342,244,0 +170743594390,221,0 +170743594438,219,0 +170743594486,222,0 +170743594534,223,0 +170743594583,225,0 +170743594631,225,0 +170743594679,225,0 +170743594727,225,0 +170743594775,229,0 +170743594823,234,0 +170743594871,237,0 +170743594919,240,0 +170743594967,241,0 +170743595016,242,0 +170743595064,244,0 +170743595112,246,0 +170743595161,246,0 +170743595209,244,0 +170743595257,246,0 +170743595305,224,0 +170743595353,222,0 +170743595401,222,0 +170743595449,221,0 +170743595496,224,0 +170743595544,225,0 +170743595592,228,0 +170743595640,226,0 +170743595688,228,0 +170743595736,231,0 +170743595784,233,0 +170743595833,237,0 +170743595881,239,0 +170743595929,242,0 +170743595977,242,0 +170743596025,244,0 +170743596075,245,0 +170743596123,244,0 +170743596171,243,0 +170743596219,226,0 +170743596268,223,0 +170743596316,225,0 +170743596364,225,0 +170743596412,226,0 +170743596460,228,0 +170743596508,228,0 +170743596557,231,0 +170743596605,233,0 +170743596653,237,0 +170743596703,239,0 +170743596751,242,0 +170743596799,242,0 +170743596847,248,0 +170743596895,246,0 +170743596942,247,0 +170743596990,246,0 +170743597038,243,0 +170743597086,245,0 +170743597136,224,0 +170743597185,224,0 +170743597233,224,0 +170743597281,229,0 +170743597329,225,0 +170743597377,227,0 +170743597425,229,0 +170743597475,231,0 +170743597524,236,0 +170743597572,238,0 +170743597620,239,0 +170743597668,242,0 +170743597718,243,0 +170743597766,246,0 +170743597814,245,0 +170743597861,247,0 +170743597909,247,0 +170743597959,246,0 +170743598009,243,0 +170743598057,222,0 +170743598105,220,0 +170743598154,220,0 +170743598202,223,0 +170743598252,224,0 +170743598300,223,0 +170743598349,224,0 +170743598399,225,0 +170743598447,227,0 +170743598496,227,0 +170743598544,231,0 +170743598592,235,0 +170743598640,240,0 +170743598688,240,0 +170743598736,242,0 +170743598783,244,0 +170743598831,243,0 +170743598879,244,0 +170743598927,245,0 +170743598975,222,0 +170743599023,220,0 +170743599072,220,0 +170743599120,220,0 +170743599168,220,0 +170743599216,220,0 +170743599264,220,0 +170743599313,220,0 +170743599361,220,0 +170743599409,220,0 +170743599457,220,0 +170743599506,220,0 +170743599554,222,0 +170743599602,223,0 +170743599650,223,0 +170743599698,222,0 +170743599747,224,0 +170743599797,226,0 +170743599845,227,0 +170743599893,231,0 +170743599941,235,0 +170743599989,238,0 +170743600038,238,0 +170743600086,244,0 +170743600134,243,0 +170743600182,245,0 +170743600230,240,0 +170743600278,246,0 +170743600326,225,0 +170743600375,221,0 +170743600423,219,0 +170743600473,221,0 +170743600521,223,0 +170743600570,224,0 +170743600618,225,0 +170743600666,226,0 +170743600715,226,0 +170743600763,227,0 +170743600811,232,0 +170743600859,235,0 +170743600909,237,0 +170743600956,241,0 +170743601004,240,0 +170743601054,244,0 +170743601103,246,0 +170743601151,245,0 +170743601199,245,0 +170743601247,225,0 +170743601295,220,0 +170743601343,221,0 +170743601391,221,0 +170743601438,221,0 +170743601486,222,0 +170743601534,224,0 +170743601582,225,0 +170743601632,228,0 +170743601679,231,0 +170743601729,233,0 +170743601778,237,0 +170743601828,239,0 +170743601876,243,0 +170743601926,243,0 +170743601974,243,0 +170743602023,247,0 +170743602071,246,0 +170743602119,244,0 +170743602167,226,0 +170743602215,220,0 +170743602264,220,0 +170743602312,220,0 +170743602360,220,0 +170743602408,220,0 +170743602456,222,0 +170743602504,223,0 +170743602551,223,0 +170743602601,223,0 +170743602649,223,0 +170743602697,228,0 +170743602746,233,0 +170743602794,236,0 +170743602842,239,0 +170743602890,242,0 +170743602937,243,0 +170743602987,243,0 +170743603035,246,0 +170743603083,224,0 +170743603131,220,0 +170743603178,220,0 +170743603226,220,0 +170743603274,221,0 +170743603322,223,0 +170743603370,223,0 +170743603418,223,0 +170743603466,224,0 +170743603514,226,0 +170743603562,226,0 +170743603609,229,0 +170743603657,232,0 +170743603705,236,0 +170743603755,241,0 +170743603803,240,0 +170743603850,241,0 +170743603898,242,0 +170743603946,244,0 +170743603994,222,0 +170743604042,221,0 +170743604090,225,0 +170743604139,223,0 +170743604187,224,0 +170743604235,225,0 +170743604283,226,0 +170743604331,226,0 +170743604379,227,0 +170743604427,229,0 +170743604474,232,0 +170743604522,235,0 +170743604570,238,0 +170743604618,240,0 +170743604666,241,0 +170743604714,241,0 +170743604762,244,0 +170743604810,243,0 +170743604859,244,0 +170743604907,221,0 +170743604955,217,0 +170743605003,217,0 +170743605051,216,0 +170743605099,216,0 +170743605147,216,0 +170743605194,216,0 +170743605242,217,0 +170743605290,216,0 +170743605340,217,0 +170743605388,217,0 +170743605435,216,0 +170743605483,218,0 +170743605531,218,0 +170743605579,218,0 +170743605627,219,0 +170743605675,220,0 +170743605723,222,0 +170743605771,242,0 +170743605818,239,0 +170743605866,225,0 +170743605914,225,0 +170743605962,225,0 +170743606010,226,0 +170743606058,226,0 +170743606106,227,0 +170743606154,226,0 +170743606202,226,0 +170743606249,229,0 +170743606297,232,0 +170743606345,236,0 +170743606393,237,0 +170743606441,240,0 +170743606491,239,0 +170743606540,241,0 +170743606588,242,0 +170743606636,243,0 +170743606684,247,0 +170743606732,242,0 +170743606781,223,0 +170743606829,224,0 +170743606877,224,0 +170743606926,224,0 +170743606975,224,0 +170743607023,224,0 +170743607071,225,0 +170743607121,229,0 +170743607169,232,0 +170743607217,235,0 +170743607266,238,0 +170743607314,241,0 +170743607362,242,0 +170743607410,244,0 +170743607460,244,0 +170743607508,247,0 +170743607556,245,0 +170743607604,246,0 +170743607652,236,0 +170743607700,222,0 +170743607748,221,0 +170743607797,222,0 +170743607845,222,0 +170743607893,224,0 +170743607941,224,0 +170743607991,224,0 +170743608040,225,0 +170743608088,230,0 +170743608136,233,0 +170743608184,237,0 +170743608234,239,0 +170743608282,243,0 +170743608329,243,0 +170743608379,244,0 +170743608427,249,0 +170743608475,245,0 +170743608524,247,0 +170743608572,239,0 +170743608622,220,0 +170743608671,222,0 +170743608721,224,0 +170743608770,222,0 +170743608818,224,0 +170743608866,224,0 +170743608914,225,0 +170743608962,226,0 +170743609012,227,0 +170743609061,229,0 +170743609109,231,0 +170743609157,234,0 +170743609205,238,0 +170743609253,242,0 +170743609301,244,0 +170743609349,241,0 +170743609397,232,0 +170743609445,243,0 +170743609493,241,0 +170743609541,220,0 +170743609589,219,0 +170743609638,219,0 +170743609686,219,0 +170743609734,219,0 +170743609782,219,0 +170743609831,219,0 +170743609881,219,0 +170743609929,220,0 +170743609977,221,0 +170743610026,223,0 +170743610075,224,0 +170743610123,228,0 +170743610171,230,0 +170743610219,235,0 +170743610267,236,0 +170743610315,237,0 +170743610363,244,0 +170743610412,222,0 +170743610460,220,0 +170743610508,220,0 +170743610556,220,0 +170743610604,220,0 +170743610654,220,0 +170743610703,221,0 +170743610753,221,0 +170743610801,222,0 +170743610849,223,0 +170743610897,223,0 +170743610946,225,0 +170743610994,227,0 +170743611042,231,0 +170743611090,233,0 +170743611139,237,0 +170743611189,239,0 +170743611238,240,0 +170743611286,247,0 +170743611336,224,0 +170743611384,220,0 +170743611433,220,0 +170743611483,221,0 +170743611531,221,0 +170743611579,223,0 +170743611627,223,0 +170743611675,224,0 +170743611723,225,0 +170743611771,226,0 +170743611818,226,0 +170743611866,227,0 +170743611916,230,0 +170743611964,235,0 +170743612012,239,0 +170743612059,243,0 +170743612107,243,0 +170743612155,236,0 +170743612203,247,0 +170743612251,222,0 +170743612299,223,0 +170743612347,224,0 +170743612395,224,0 +170743612442,225,0 +170743612490,227,0 +170743612538,227,0 +170743612586,227,0 +170743612634,229,0 +170743612682,230,0 +170743612730,233,0 +170743612778,237,0 +170743612826,239,0 +170743612874,243,0 +170743612921,244,0 +170743612969,244,0 +170743613017,246,0 +170743613065,247,0 +170743613113,247,0 +170743613161,231,0 +170743613211,222,0 +170743613259,235,0 +170743613308,221,0 +170743613358,222,0 +170743613406,224,0 +170743613455,225,0 +170743613503,226,0 +170743613551,230,0 +170743613601,232,0 +170743613649,236,0 +170743613697,239,0 +170743613746,242,0 +170743613796,244,0 +170743613845,243,0 +170743613893,247,0 +170743613941,247,0 +170743613989,248,0 +170743614037,245,0 +170743614085,226,0 +170743614133,221,0 +170743614182,220,0 +170743614230,220,0 +170743614280,220,0 +170743614328,220,0 +170743614376,221,0 +170743614425,222,0 +170743614473,224,0 +170743614521,224,0 +170743614569,224,0 +170743614617,228,0 +170743614665,233,0 +170743614713,236,0 +170743614761,239,0 +170743614809,240,0 +170743614857,243,0 +170743614904,242,0 +170743614952,245,0 +170743615000,223,0 +170743615048,226,0 +170743615096,227,0 +170743615144,227,0 +170743615192,227,0 +170743615241,229,0 +170743615289,229,0 +170743615337,230,0 +170743615385,232,0 +170743615433,236,0 +170743615481,238,0 +170743615529,241,0 +170743615577,243,0 +170743615626,245,0 +170743615674,247,0 +170743615722,246,0 +170743615770,246,0 +170743615818,247,0 +170743615867,247,0 +170743615915,240,0 +170743615963,223,0 +170743616011,226,0 +170743616059,227,0 +170743616108,231,0 +170743616156,229,0 +170743616204,229,0 +170743616252,231,0 +170743616300,233,0 +170743616348,238,0 +170743616396,239,0 +170743616444,241,0 +170743616494,241,0 +170743616543,245,0 +170743616591,245,0 +170743616641,245,0 +170743616690,246,0 +170743616738,246,0 +170743616786,246,0 +170743616834,222,0 +170743616882,217,0 +170743616930,219,0 +170743616978,220,0 +170743617028,221,0 +170743617077,223,0 +170743617127,223,0 +170743617175,224,0 +170743617223,226,0 +170743617271,226,0 +170743617319,230,0 +170743617367,232,0 +170743617414,238,0 +170743617462,239,0 +170743617510,242,0 +170743617560,243,0 +170743617609,243,0 +170743617657,241,0 +170743617707,245,0 +170743617755,223,0 +170743617804,221,0 +170743617852,220,0 +170743617900,220,0 +170743617950,221,0 +170743617998,221,0 +170743618046,221,0 +170743618094,221,0 +170743618142,222,0 +170743618190,223,0 +170743618238,224,0 +170743618286,224,0 +170743618334,226,0 +170743618383,229,0 +170743618431,232,0 +170743618479,236,0 +170743618527,238,0 +170743618575,234,0 +170743618623,250,0 +170743618671,226,0 +170743618719,224,0 +170743618766,226,0 +170743618814,226,0 +170743618862,226,0 +170743618910,226,0 +170743618960,228,0 +170743619008,227,0 +170743619056,233,0 +170743619105,229,0 +170743619153,234,0 +170743619201,236,0 +170743619249,238,0 +170743619297,241,0 +170743619347,242,0 +170743619395,243,0 +170743619442,243,0 +170743619490,239,0 +170743619538,245,0 +170743619586,222,0 +170743619634,223,0 +170743619682,225,0 +170743619730,225,0 +170743619778,225,0 +170743619826,226,0 +170743619874,227,0 +170743619922,228,0 +170743619970,231,0 +170743620020,235,0 +170743620068,236,0 +170743620117,239,0 +170743620165,242,0 +170743620213,245,0 +170743620261,243,0 +170743620311,243,0 +170743620359,246,0 +170743620408,246,0 +170743620456,244,0 +170743620506,226,0 +170743620554,222,0 +170743620603,223,0 +170743620651,224,0 +170743620701,224,0 +170743620749,226,0 +170743620797,225,0 +170743620845,226,0 +170743620894,227,0 +170743620944,231,0 +170743620993,236,0 +170743621041,241,0 +170743621090,240,0 +170743621138,241,0 +170743621186,240,0 +170743621236,238,0 +170743621286,237,0 +170743621335,242,0 +170743621385,244,0 +170743621434,225,0 +170743621484,220,0 +170743621531,220,0 +170743621579,220,0 +170743621627,219,0 +170743621675,219,0 +170743621723,220,0 +170743621771,220,0 +170743621820,221,0 +170743621870,222,0 +170743621918,223,0 +170743621966,224,0 +170743622015,225,0 +170743622065,228,0 +170743622113,230,0 +170743622161,235,0 +170743622211,236,0 +170743622259,242,0 +170743622307,246,0 +170743622356,226,0 +170743622406,221,0 +170743622454,221,0 +170743622501,223,0 +170743622549,225,0 +170743622597,225,0 +170743622645,227,0 +170743622693,229,0 +170743622741,229,0 +170743622789,233,0 +170743622839,235,0 +170743622887,238,0 +170743622936,239,0 +170743622984,241,0 +170743623032,243,0 +170743623080,241,0 +170743623128,241,0 +170743623176,244,0 +170743623224,245,0 +170743623274,226,0 +170743623322,220,0 +170743623371,221,0 +170743623419,220,0 +170743623467,219,0 +170743623515,220,0 +170743623564,219,0 +170743623612,219,0 +170743623662,221,0 +170743623712,221,0 +170743623760,222,0 +170743623807,223,0 +170743623857,225,0 +170743623905,225,0 +170743623955,229,0 +170743624003,231,0 +170743624050,234,0 +170743624100,244,0 +170743624148,246,0 +170743624197,230,0 +170743624245,224,0 +170743624293,226,0 +170743624341,227,0 +170743624389,227,0 +170743624439,229,0 +170743624487,228,0 +170743624536,232,0 +170743624586,232,0 +170743624634,232,0 +170743624682,236,0 +170743624730,238,0 +170743624778,239,0 +170743624828,242,0 +170743624875,244,0 +170743624923,244,0 +170743624971,244,0 +170743625019,245,0 +170743625067,245,0 +170743625117,225,0 +170743625165,222,0 +170743625214,223,0 +170743625264,223,0 +170743625312,226,0 +170743625360,226,0 +170743625408,226,0 +170743625456,227,0 +170743625504,230,0 +170743625551,232,0 +170743625599,237,0 +170743625649,238,0 +170743625697,240,0 +170743625746,242,0 +170743625794,243,0 +170743625844,246,0 +170743625892,246,0 +170743625940,246,0 +170743625988,244,0 +170743626037,224,0 +170743626087,223,0 +170743626135,223,0 +170743626184,222,0 +170743626234,223,0 +170743626282,225,0 +170743626330,226,0 +170743626379,227,0 +170743626429,229,0 +170743626478,232,0 +170743626528,234,0 +170743626578,237,0 +170743626625,239,0 +170743626673,240,0 +170743626721,242,0 +170743626771,249,0 +170743626819,244,0 +170743626867,245,0 +170743626915,243,0 +170743626963,220,0 +170743627011,220,0 +170743627058,220,0 +170743627106,221,0 +170743627154,221,0 +170743627202,222,0 +170743627250,226,0 +170743627298,224,0 +170743627347,226,0 +170743627395,227,0 +170743627443,231,0 +170743627491,235,0 +170743627539,237,0 +170743627587,240,0 +170743627636,242,0 +170743627684,244,0 +170743627732,245,0 +170743627782,245,0 +170743627830,245,0 +170743627879,223,0 +170743627928,223,0 +170743627976,223,0 +170743628026,223,0 +170743628074,224,0 +170743628123,224,0 +170743628171,224,0 +170743628221,226,0 +170743628269,226,0 +170743628317,231,0 +170743628365,234,0 +170743628413,238,0 +170743628462,238,0 +170743628512,242,0 +170743628561,244,0 +170743628609,244,0 +170743628657,244,0 +170743628705,245,0 +170743628753,241,0 +170743628801,221,0 +170743628848,220,0 +170743628896,220,0 +170743628944,220,0 +170743628992,222,0 +170743629040,223,0 +170743629088,224,0 +170743629136,224,0 +170743629184,224,0 +170743629234,224,0 +170743629282,225,0 +170743629330,230,0 +170743629378,234,0 +170743629425,236,0 +170743629475,239,0 +170743629523,241,0 +170743629571,241,0 +170743629619,245,0 +170743629668,241,0 +170743629716,220,0 +170743629764,219,0 +170743629813,219,0 +170743629861,219,0 +170743629911,220,0 +170743629959,221,0 +170743630008,222,0 +170743630058,222,0 +170743630107,223,0 +170743630155,223,0 +170743630203,227,0 +170743630252,231,0 +170743630302,233,0 +170743630352,237,0 +170743630400,239,0 +170743630448,239,0 +170743630497,243,0 +170743630545,245,0 +170743630593,220,0 +170743630641,220,0 +170743630689,220,0 +170743630737,221,0 +170743630784,222,0 +170743630832,223,0 +170743630880,223,0 +170743630928,223,0 +170743630977,225,0 +170743631025,224,0 +170743631073,226,0 +170743631121,231,0 +170743631169,240,0 +170743631219,239,0 +170743631268,239,0 +170743631316,241,0 +170743631364,243,0 +170743631413,244,0 +170743631461,244,0 +170743631509,245,0 +170743631557,222,0 +170743631605,222,0 +170743631655,222,0 +170743631702,223,0 +170743631750,224,0 +170743631798,226,0 +170743631846,225,0 +170743631894,228,0 +170743631942,231,0 +170743631990,234,0 +170743632038,237,0 +170743632086,242,0 +170743632133,240,0 +170743632181,241,0 +170743632229,242,0 +170743632277,245,0 +170743632325,244,0 +170743632373,245,0 +170743632421,240,0 +170743632469,221,0 +170743632516,222,0 +170743632564,224,0 +170743632612,223,0 +170743632660,225,0 +170743632710,225,0 +170743632758,230,0 +170743632807,233,0 +170743632855,235,0 +170743632903,238,0 +170743632951,238,0 +170743632999,241,0 +170743633047,245,0 +170743633095,243,0 +170743633143,244,0 +170743633191,247,0 +170743633240,246,0 +170743633288,245,0 +170743633338,239,0 +170743633386,224,0 +170743633434,225,0 +170743633483,226,0 +170743633531,224,0 +170743633579,226,0 +170743633627,228,0 +170743633674,231,0 +170743633724,233,0 +170743633772,236,0 +170743633820,238,0 +170743633868,240,0 +170743633915,241,0 +170743633963,245,0 +170743634013,247,0 +170743634061,243,0 +170743634109,244,0 +170743634158,241,0 +170743634206,243,0 +170743634254,243,0 +170743634302,222,0 +170743634352,222,0 +170743634399,222,0 +170743634449,223,0 +170743634498,225,0 +170743634546,224,0 +170743634594,228,0 +170743634642,231,0 +170743634690,233,0 +170743634738,236,0 +170743634788,237,0 +170743634837,241,0 +170743634885,242,0 +170743634933,245,0 +170743634981,246,0 +170743635029,248,0 +170743635077,246,0 +170743635125,247,0 +170743635173,242,0 +170743635220,220,0 +170743635268,220,0 +170743635316,220,0 +170743635364,220,0 +170743635412,221,0 +170743635460,222,0 +170743635508,222,0 +170743635556,224,0 +170743635603,226,0 +170743635651,230,0 +170743635699,233,0 +170743635747,236,0 +170743635795,237,0 +170743635843,238,0 +170743635891,243,0 +170743635939,244,0 +170743635987,244,0 +170743636035,246,0 +170743636085,241,0 +170743636133,221,0 +170743636181,220,0 +170743636228,220,0 +170743636276,220,0 +170743636326,221,0 +170743636374,221,0 +170743636422,222,0 +170743636470,224,0 +170743636519,225,0 +170743636567,226,0 +170743636616,225,0 +170743636664,229,0 +170743636712,232,0 +170743636760,236,0 +170743636810,238,0 +170743636859,241,0 +170743636907,242,0 +170743636957,244,0 +170743637005,240,0 +170743637054,226,0 +170743637102,225,0 +170743637152,227,0 +170743637200,227,0 +170743637249,228,0 +170743637297,229,0 +170743637345,228,0 +170743637393,233,0 +170743637442,236,0 +170743637490,238,0 +170743637538,240,0 +170743637586,242,0 +170743637634,243,0 +170743637682,245,0 +170743637730,244,0 +170743637778,246,0 +170743637828,245,0 +170743637876,247,0 +170743637924,242,0 +170743637972,223,0 +170743638021,223,0 +170743638069,224,0 +170743638117,224,0 +170743638165,226,0 +170743638215,225,0 +170743638263,226,0 +170743638312,229,0 +170743638362,233,0 +170743638411,235,0 +170743638459,238,0 +170743638509,241,0 +170743638558,241,0 +170743638606,243,0 +170743638654,246,0 +170743638702,244,0 +170743638750,243,0 +170743638798,247,0 +170743638846,221,0 +170743638894,221,0 +170743638942,222,0 +170743638990,223,0 +170743639038,224,0 +170743639088,226,0 +170743639135,226,0 +170743639183,227,0 +170743639231,228,0 +170743639281,230,0 +170743639329,235,0 +170743639377,238,0 +170743639426,238,0 +170743639476,241,0 +170743639524,243,0 +170743639572,240,0 +170743639621,245,0 +170743639669,244,0 +170743639717,246,0 +170743639765,221,0 +170743639813,222,0 +170743639861,222,0 +170743639909,222,0 +170743639959,223,0 +170743640007,224,0 +170743640055,225,0 +170743640103,226,0 +170743640151,227,0 +170743640199,230,0 +170743640246,234,0 +170743640294,236,0 +170743640342,239,0 +170743640390,240,0 +170743640438,242,0 +170743640486,243,0 +170743640534,245,0 +170743640582,245,0 +170743640629,246,0 +170743640677,245,0 +170743640725,221,0 +170743640773,221,0 +170743640821,222,0 +170743640869,223,0 +170743640917,222,0 +170743640965,225,0 +170743641013,225,0 +170743641060,226,0 +170743641108,227,0 +170743641156,230,0 +170743641204,232,0 +170743641252,238,0 +170743641300,238,0 +170743641348,241,0 +170743641396,242,0 +170743641444,243,0 +170743641491,243,0 +170743641539,244,0 +170743641587,243,0 +170743641635,223,0 +170743641683,223,0 +170743641731,224,0 +170743641780,224,0 +170743641828,224,0 +170743641876,225,0 +170743641924,226,0 +170743641973,225,0 +170743642021,230,0 +170743642071,233,0 +170743642119,237,0 +170743642168,239,0 +170743642216,240,0 +170743642264,244,0 +170743642312,242,0 +170743642362,245,0 +170743642411,245,0 +170743642459,246,0 +170743642507,244,0 +170743642555,220,0 +170743642603,219,0 +170743642651,219,0 +170743642698,219,0 +170743642746,220,0 +170743642794,220,0 +170743642842,222,0 +170743642890,221,0 +170743642938,222,0 +170743642986,223,0 +170743643033,226,0 +170743643081,231,0 +170743643129,233,0 +170743643177,237,0 +170743643225,237,0 +170743643273,239,0 +170743643321,242,0 +170743643369,242,0 +170743643417,244,0 +170743643465,224,0 +170743643512,221,0 +170743643560,222,0 +170743643608,223,0 +170743643656,224,0 +170743643706,225,0 +170743643753,225,0 +170743643803,228,0 +170743643852,226,0 +170743643900,226,0 +170743643948,229,0 +170743643996,234,0 +170743644045,236,0 +170743644093,238,0 +170743644141,239,0 +170743644189,242,0 +170743644237,244,0 +170743644285,244,0 +170743644333,245,0 +170743644381,221,0 +170743644428,220,0 +170743644476,221,0 +170743644524,222,0 +170743644572,221,0 +170743644620,223,0 +170743644668,223,0 +170743644716,224,0 +170743644764,225,0 +170743644811,225,0 +170743644859,230,0 +170743644907,233,0 +170743644957,235,0 +170743645005,239,0 +170743645053,240,0 +170743645100,240,0 +170743645148,242,0 +170743645196,244,0 +170743645244,244,0 +170743645292,222,0 +170743645340,220,0 +170743645388,220,0 +170743645436,220,0 +170743645483,221,0 +170743645531,220,0 +170743645579,221,0 +170743645627,222,0 +170743645675,223,0 +170743645723,225,0 +170743645771,225,0 +170743645819,225,0 +170743645867,227,0 +170743645914,231,0 +170743645962,234,0 +170743646010,237,0 +170743646060,239,0 +170743646108,239,0 +170743646156,244,0 +170743646204,225,0 +170743646252,221,0 +170743646300,221,0 +170743646347,222,0 +170743646397,223,0 +170743646446,225,0 +170743646496,225,0 +170743646544,225,0 +170743646593,227,0 +170743646641,230,0 +170743646689,235,0 +170743646737,236,0 +170743646787,238,0 +170743646835,241,0 +170743646883,242,0 +170743646932,243,0 +170743646980,249,0 +170743647028,244,0 +170743647076,244,0 +170743647124,225,0 +170743647174,221,0 +170743647222,221,0 +170743647271,223,0 +170743647321,223,0 +170743647370,222,0 +170743647420,221,0 +170743647468,225,0 +170743647515,223,0 +170743647565,230,0 +170743647613,234,0 +170743647661,236,0 +170743647710,238,0 +170743647758,240,0 +170743647806,242,0 +170743647854,244,0 +170743647902,258,0 +170743647950,244,0 +170743647998,245,0 +170743648046,225,0 +170743648094,222,0 +170743648142,223,0 +170743648190,223,0 +170743648238,225,0 +170743648285,226,0 +170743648333,226,0 +170743648381,227,0 +170743648429,226,0 +170743648477,229,0 +170743648525,234,0 +170743648573,236,0 +170743648621,239,0 +170743648669,242,0 +170743648717,242,0 +170743648765,243,0 +170743648813,245,0 +170743648860,241,0 +170743648910,245,0 +170743648959,224,0 +170743649009,221,0 +170743649057,222,0 +170743649106,222,0 +170743649154,224,0 +170743649204,224,0 +170743649252,227,0 +170743649300,227,0 +170743649348,225,0 +170743649397,230,0 +170743649445,230,0 +170743649495,237,0 +170743649543,239,0 +170743649591,238,0 +170743649639,241,0 +170743649688,241,0 +170743649738,245,0 +170743649786,245,0 +170743649834,245,0 +170743649882,226,0 +170743649931,222,0 +170743649979,222,0 +170743650027,232,0 +170743650077,224,0 +170743650125,224,0 +170743650173,231,0 +170743650221,227,0 +170743650268,232,0 +170743650318,233,0 +170743650366,237,0 +170743650414,240,0 +170743650464,241,0 +170743650511,244,0 +170743650561,245,0 +170743650609,247,0 +170743650657,246,0 +170743650705,247,0 +170743650753,245,0 +170743650801,223,0 +170743650849,222,0 +170743650897,222,0 +170743650946,222,0 +170743650994,224,0 +170743651044,224,0 +170743651092,226,0 +170743651140,231,0 +170743651187,231,0 +170743651237,237,0 +170743651285,238,0 +170743651333,241,0 +170743651382,245,0 +170743651430,243,0 +170743651478,246,0 +170743651528,247,0 +170743651576,246,0 +170743651624,247,0 +170743651672,244,0 +170743651721,222,0 +170743651769,223,0 +170743651817,223,0 +170743651865,222,0 +170743651913,225,0 +170743651961,227,0 +170743652009,226,0 +170743652058,228,0 +170743652106,235,0 +170743652154,236,0 +170743652202,239,0 +170743652252,240,0 +170743652299,242,0 +170743652347,244,0 +170743652395,245,0 +170743652443,246,0 +170743652491,246,0 +170743652539,243,0 +170743652587,246,0 +170743652634,224,0 +170743652682,222,0 +170743652730,222,0 +170743652778,223,0 +170743652826,223,0 +170743652874,227,0 +170743652922,231,0 +170743652971,232,0 +170743653021,235,0 +170743653070,239,0 +170743653120,240,0 +170743653168,241,0 +170743653217,244,0 +170743653265,244,0 +170743653313,244,0 +170743653363,246,0 +170743653411,245,0 +170743653459,247,0 +170743653508,246,0 +170743653556,225,0 +170743653604,220,0 +170743653654,222,0 +170743653701,223,0 +170743653751,228,0 +170743653799,230,0 +170743653848,234,0 +170743653896,238,0 +170743653944,239,0 +170743653994,241,0 +170743654042,243,0 +170743654090,244,0 +170743654138,244,0 +170743654186,244,0 +170743654235,247,0 +170743654283,244,0 +170743654333,245,0 +170743654381,246,0 +170743654429,245,0 +170743654477,222,0 +170743654526,221,0 +170743654574,221,0 +170743654622,222,0 +170743654670,222,0 +170743654718,223,0 +170743654766,223,0 +170743654814,224,0 +170743654862,224,0 +170743654910,232,0 +170743654959,235,0 +170743655007,238,0 +170743655055,239,0 +170743655105,243,0 +170743655153,243,0 +170743655201,242,0 +170743655250,247,0 +170743655298,245,0 +170743655346,245,0 +170743655394,225,0 +170743655442,223,0 +170743655490,224,0 +170743655538,225,0 +170743655586,224,0 +170743655633,225,0 +170743655683,226,0 +170743655731,228,0 +170743655779,249,0 +170743655827,235,0 +170743655874,236,0 +170743655922,240,0 +170743655970,242,0 +170743656018,242,0 +170743656066,245,0 +170743656114,247,0 +170743656163,248,0 +170743656213,245,0 +170743656261,244,0 +170743656310,223,0 +170743656358,220,0 +170743656408,221,0 +170743656456,221,0 +170743656504,223,0 +170743656552,223,0 +170743656600,224,0 +170743656648,225,0 +170743656697,225,0 +170743656745,227,0 +170743656793,230,0 +170743656841,235,0 +170743656889,237,0 +170743656937,241,0 +170743656985,242,0 +170743657033,244,0 +170743657080,244,0 +170743657130,245,0 +170743657179,245,0 +170743657227,222,0 +170743657277,221,0 +170743657325,222,0 +170743657373,222,0 +170743657421,224,0 +170743657469,225,0 +170743657517,226,0 +170743657565,227,0 +170743657613,228,0 +170743657661,231,0 +170743657708,235,0 +170743657758,236,0 +170743657806,240,0 +170743657854,243,0 +170743657901,243,0 +170743657949,243,0 +170743657997,243,0 +170743658045,245,0 +170743658093,244,0 +170743658141,221,0 +170743658189,221,0 +170743658237,221,0 +170743658285,222,0 +170743658333,224,0 +170743658380,225,0 +170743658428,225,0 +170743658476,226,0 +170743658524,224,0 +170743658572,229,0 +170743658620,233,0 +170743658668,237,0 +170743658716,238,0 +170743658763,240,0 +170743658813,241,0 +170743658861,242,0 +170743658909,245,0 +170743658956,246,0 +170743659004,245,0 +170743659052,224,0 +170743659102,218,0 +170743659150,223,0 +170743659197,220,0 +170743659245,221,0 +170743659293,222,0 +170743659341,223,0 +170743659389,224,0 +170743659437,223,0 +170743659485,226,0 +170743659533,231,0 +170743659581,234,0 +170743659629,235,0 +170743659676,238,0 +170743659724,241,0 +170743659772,242,0 +170743659820,245,0 +170743659868,237,0 +170743659916,245,0 +170743659964,222,0 +170743660012,220,0 +170743660061,221,0 +170743660109,221,0 +170743660157,221,0 +170743660205,222,0 +170743660253,222,0 +170743660303,223,0 +170743660350,223,0 +170743660398,226,0 +170743660448,230,0 +170743660496,234,0 +170743660545,237,0 +170743660593,238,0 +170743660641,241,0 +170743660689,242,0 +170743660736,243,0 +170743660784,239,0 +170743660832,245,0 +170743660880,224,0 +170743660928,218,0 +170743660976,218,0 +170743661024,219,0 +170743661072,220,0 +170743661119,221,0 +170743661167,221,0 +170743661215,220,0 +170743661265,222,0 +170743661314,222,0 +170743661362,225,0 +170743661410,227,0 +170743661458,231,0 +170743661506,234,0 +170743661554,237,0 +170743661604,238,0 +170743661652,241,0 +170743661699,243,0 +170743661749,244,0 +170743661798,225,0 +170743661846,221,0 +170743661894,220,0 +170743661942,220,0 +170743661990,222,0 +170743662038,223,0 +170743662086,224,0 +170743662134,225,0 +170743662181,225,0 +170743662229,226,0 +170743662277,225,0 +170743662325,227,0 +170743662373,232,0 +170743662421,235,0 +170743662469,236,0 +170743662517,238,0 +170743662566,239,0 +170743662615,239,0 +170743662663,243,0 +170743662711,227,0 +170743662759,220,0 +170743662807,220,0 +170743662857,220,0 +170743662905,221,0 +170743662954,221,0 +170743663003,221,0 +170743663053,223,0 +170743663101,224,0 +170743663149,224,0 +170743663197,224,0 +170743663244,228,0 +170743663292,232,0 +170743663340,235,0 +170743663388,238,0 +170743663438,240,0 +170743663486,242,0 +170743663535,239,0 +170743663585,245,0 +170743663633,225,0 +170743663681,222,0 +170743663729,222,0 +170743663778,223,0 +170743663826,223,0 +170743663874,224,0 +170743663922,225,0 +170743663970,226,0 +170743664018,227,0 +170743664066,230,0 +170743664113,231,0 +170743664161,234,0 +170743664211,237,0 +170743664260,237,0 +170743664310,241,0 +170743664360,243,0 +170743664407,243,0 +170743664455,244,0 +170743664503,247,0 +170743664551,225,0 +170743664599,221,0 +170743664647,221,0 +170743664695,223,0 +170743664743,222,0 +170743664793,223,0 +170743664840,224,0 +170743664888,225,0 +170743664936,229,0 +170743664984,231,0 +170743665032,234,0 +170743665081,237,0 +170743665129,238,0 +170743665177,245,0 +170743665225,241,0 +170743665273,245,0 +170743665321,243,0 +170743665369,247,0 +170743665417,245,0 +170743665464,222,0 +170743665512,221,0 +170743665560,221,0 +170743665608,222,0 +170743665656,222,0 +170743665704,222,0 +170743665752,222,0 +170743665800,223,0 +170743665848,225,0 +170743665896,228,0 +170743665943,233,0 +170743665991,236,0 +170743666039,236,0 +170743666087,239,0 +170743666135,240,0 +170743666183,242,0 +170743666231,243,0 +170743666280,243,0 +170743666328,245,0 +170743666376,243,0 +170743666424,222,0 +170743666472,222,0 +170743666520,223,0 +170743666568,221,0 +170743666615,223,0 +170743666663,224,0 +170743666711,225,0 +170743666759,227,0 +170743666807,227,0 +170743666855,230,0 +170743666903,236,0 +170743666951,239,0 +170743666999,241,0 +170743667046,241,0 +170743667094,244,0 +170743667142,253,0 +170743667190,245,0 +170743667238,245,0 +170743667287,244,0 +170743667335,220,0 +170743667383,220,0 +170743667433,222,0 +170743667483,222,0 +170743667530,223,0 +170743667578,223,0 +170743667626,224,0 +170743667674,225,0 +170743667722,227,0 +170743667771,230,0 +170743667819,235,0 +170743667867,237,0 +170743667915,239,0 +170743667963,237,0 +170743668011,242,0 +170743668059,246,0 +170743668108,247,0 +170743668156,245,0 +170743668204,245,0 +170743668254,221,0 +170743668302,221,0 +170743668351,221,0 +170743668401,221,0 +170743668449,223,0 +170743668497,223,0 +170743668545,224,0 +170743668593,225,0 +170743668641,226,0 +170743668689,229,0 +170743668738,234,0 +170743668786,236,0 +170743668834,240,0 +170743668883,240,0 +170743668931,243,0 +170743668981,245,0 +170743669029,245,0 +170743669077,247,0 +170743669126,243,0 +170743669176,221,0 +170743669224,222,0 +170743669272,221,0 +170743669320,223,0 +170743669368,223,0 +170743669416,224,0 +170743669464,225,0 +170743669512,227,0 +170743669560,226,0 +170743669609,230,0 +170743669657,235,0 +170743669707,238,0 +170743669756,238,0 +170743669804,242,0 +170743669852,244,0 +170743669900,243,0 +170743669948,245,0 +170743669996,248,0 +170743670044,239,0 +170743670092,222,0 +170743670141,222,0 +170743670189,223,0 +170743670237,224,0 +170743670285,223,0 +170743670334,223,0 +170743670382,224,0 +170743670430,226,0 +170743670478,230,0 +170743670526,234,0 +170743670574,254,0 +170743670623,240,0 +170743670671,241,0 +170743670719,244,0 +170743670767,245,0 +170743670815,245,0 +170743670863,244,0 +170743670911,246,0 +170743670959,231,0 +170743671006,222,0 +170743671054,223,0 +170743671102,223,0 +170743671150,223,0 +170743671198,224,0 +170743671246,225,0 +170743671296,229,0 +170743671344,232,0 +170743671392,237,0 +170743671440,237,0 +170743671488,239,0 +170743671536,242,0 +170743671584,243,0 +170743671632,244,0 +170743671680,246,0 +170743671727,246,0 +170743671777,247,0 +170743671825,246,0 +170743671873,238,0 +170743671921,221,0 +170743671969,222,0 +170743672016,223,0 +170743672064,222,0 +170743672114,223,0 +170743672162,225,0 +170743672210,230,0 +170743672259,233,0 +170743672307,236,0 +170743672355,236,0 +170743672405,240,0 +170743672453,242,0 +170743672502,243,0 +170743672550,243,0 +170743672598,245,0 +170743672648,245,0 +170743672696,247,0 +170743672744,247,0 +170743672792,246,0 +170743672840,222,0 +170743672887,222,0 +170743672935,221,0 +170743672983,223,0 +170743673031,224,0 +170743673079,224,0 +170743673127,226,0 +170743673175,229,0 +170743673223,233,0 +170743673270,235,0 +170743673318,239,0 +170743673366,239,0 +170743673416,241,0 +170743673464,242,0 +170743673511,244,0 +170743673559,243,0 +170743673607,245,0 +170743673655,245,0 +170743673703,245,0 +170743673751,223,0 +170743673799,222,0 +170743673847,224,0 +170743673894,224,0 +170743673942,226,0 +170743673990,229,0 +170743674038,231,0 +170743674086,233,0 +170743674134,236,0 +170743674182,238,0 +170743674230,240,0 +170743674278,242,0 +170743674326,243,0 +170743674373,244,0 +170743674421,245,0 +170743674469,244,0 +170743674517,245,0 +170743674565,243,0 +170743674613,246,0 +170743674661,222,0 +170743674709,220,0 +170743674757,221,0 +170743674806,222,0 +170743674856,226,0 +170743674904,226,0 +170743674951,228,0 +170743674999,233,0 +170743675049,234,0 +170743675097,238,0 +170743675146,239,0 +170743675194,241,0 +170743675242,240,0 +170743675290,245,0 +170743675337,245,0 +170743675385,245,0 +170743675433,247,0 +170743675481,245,0 +170743675529,243,0 +170743675578,220,0 +170743675626,220,0 +170743675674,220,0 +170743675722,220,0 +170743675770,222,0 +170743675818,223,0 +170743675866,222,0 +170743675913,224,0 +170743675961,228,0 +170743676009,230,0 +170743676057,235,0 +170743676105,238,0 +170743676153,239,0 +170743676202,239,0 +170743676250,245,0 +170743676298,244,0 +170743676346,246,0 +170743676394,245,0 +170743676442,243,0 +170743676490,222,0 +170743676537,221,0 +170743676585,223,0 +170743676633,222,0 +170743676681,223,0 +170743676729,223,0 +170743676777,224,0 +170743676825,224,0 +170743676873,225,0 +170743676920,226,0 +170743676968,231,0 +170743677016,233,0 +170743677064,236,0 +170743677114,238,0 +170743677162,243,0 +170743677210,243,0 +170743677259,243,0 +170743677307,244,0 +170743677357,245,0 +170743677405,224,0 +170743677453,222,0 +170743677503,223,0 +170743677550,224,0 +170743677598,224,0 +170743677646,224,0 +170743677694,226,0 +170743677742,228,0 +170743677790,229,0 +170743677838,233,0 +170743677886,236,0 +170743677934,238,0 +170743677982,240,0 +170743678030,244,0 +170743678078,243,0 +170743678126,242,0 +170743678174,243,0 +170743678222,247,0 +170743678270,247,0 +170743678318,223,0 +170743678367,218,0 +170743678415,219,0 +170743678463,218,0 +170743678511,219,0 +170743678559,220,0 +170743678609,220,0 +170743678657,222,0 +170743678706,221,0 +170743678756,222,0 +170743678804,222,0 +170743678852,225,0 +170743678899,232,0 +170743678947,233,0 +170743678997,250,0 +170743679046,239,0 +170743679094,239,0 +170743679144,245,0 +170743679192,245,0 +170743679241,225,0 +170743679289,219,0 +170743679339,219,0 +170743679388,219,0 +170743679436,220,0 +170743679484,221,0 +170743679532,222,0 +170743679580,223,0 +170743679628,224,0 +170743679676,224,0 +170743679724,226,0 +170743679774,227,0 +170743679822,230,0 +170743679870,234,0 +170743679918,237,0 +170743679966,239,0 +170743680014,238,0 diff --git a/laser_value/0209-10.csv b/laser_value/0209-10.csv new file mode 100644 index 0000000..a8ad5ea --- /dev/null +++ b/laser_value/0209-10.csv @@ -0,0 +1,7442 @@ +timestamp,laser_value,event +170743680062,243,0 +170743680112,244,0 +170743680160,225,0 +170743680208,223,0 +170743680256,224,0 +170743680304,225,0 +170743680352,229,0 +170743680401,230,0 +170743680449,234,0 +170743680499,236,0 +170743680546,238,0 +170743680596,239,0 +170743680644,242,0 +170743680693,243,0 +170743680741,242,0 +170743680789,245,0 +170743680837,244,0 +170743680885,246,0 +170743680933,246,0 +170743680983,245,0 +170743681031,244,0 +170743681079,223,0 +170743681128,223,0 +170743681176,223,0 +170743681224,223,0 +170743681272,225,0 +170743681320,227,0 +170743681370,227,0 +170743681418,231,0 +170743681466,233,0 +170743681514,235,0 +170743681563,239,0 +170743681611,239,0 +170743681661,241,0 +170743681710,243,0 +170743681758,245,0 +170743681806,243,0 +170743681854,244,0 +170743681902,243,0 +170743681952,244,0 +170743682000,221,0 +170743682048,220,0 +170743682096,221,0 +170743682145,220,0 +170743682193,223,0 +170743682243,223,0 +170743682291,223,0 +170743682340,225,0 +170743682390,224,0 +170743682439,228,0 +170743682487,231,0 +170743682535,235,0 +170743682583,235,0 +170743682631,238,0 +170743682679,240,0 +170743682729,242,0 +170743682776,242,0 +170743682826,243,0 +170743682874,244,0 +170743682922,221,0 +170743682970,221,0 +170743683019,221,0 +170743683067,221,0 +170743683115,221,0 +170743683163,223,0 +170743683211,223,0 +170743683259,224,0 +170743683307,225,0 +170743683355,230,0 +170743683403,232,0 +170743683453,235,0 +170743683501,237,0 +170743683549,239,0 +170743683596,243,0 +170743683646,244,0 +170743683694,242,0 +170743683742,246,0 +170743683790,232,0 +170743683838,219,0 +170743683886,219,0 +170743683934,218,0 +170743683982,220,0 +170743684030,220,0 +170743684078,221,0 +170743684127,221,0 +170743684177,220,0 +170743684225,222,0 +170743684272,223,0 +170743684322,224,0 +170743684372,228,0 +170743684420,230,0 +170743684468,233,0 +170743684515,235,0 +170743684563,239,0 +170743684613,240,0 +170743684661,242,0 +170743684710,243,0 +170743684758,220,0 +170743684806,221,0 +170743684856,221,0 +170743684904,222,0 +170743684953,222,0 +170743685001,223,0 +170743685049,222,0 +170743685097,224,0 +170743685145,228,0 +170743685193,230,0 +170743685241,233,0 +170743685289,235,0 +170743685337,235,0 +170743685387,239,0 +170743685435,242,0 +170743685484,243,0 +170743685532,245,0 +170743685582,244,0 +170743685630,243,0 +170743685678,222,0 +170743685727,222,0 +170743685775,222,0 +170743685825,224,0 +170743685874,224,0 +170743685924,223,0 +170743685973,224,0 +170743686021,227,0 +170743686071,231,0 +170743686119,233,0 +170743686166,236,0 +170743686214,236,0 +170743686262,240,0 +170743686310,241,0 +170743686360,244,0 +170743686408,244,0 +170743686456,269,0 +170743686504,246,0 +170743686552,224,0 +170743686600,222,0 +170743686648,222,0 +170743686697,221,0 +170743686745,223,0 +170743686793,223,0 +170743686842,224,0 +170743686890,224,0 +170743686938,224,0 +170743686988,227,0 +170743687036,230,0 +170743687084,235,0 +170743687132,236,0 +170743687180,239,0 +170743687228,240,0 +170743687276,241,0 +170743687324,245,0 +170743687372,244,0 +170743687421,245,0 +170743687469,221,0 +170743687519,222,0 +170743687568,221,0 +170743687618,222,0 +170743687666,221,0 +170743687714,222,0 +170743687762,224,0 +170743687810,224,0 +170743687858,225,0 +170743687906,225,0 +170743687953,227,0 +170743688001,231,0 +170743688049,235,0 +170743688099,238,0 +170743688147,239,0 +170743688196,242,0 +170743688244,241,0 +170743688292,243,0 +170743688340,245,0 +170743688388,236,0 +170743688436,221,0 +170743688484,221,0 +170743688533,221,0 +170743688583,223,0 +170743688631,223,0 +170743688679,223,0 +170743688727,223,0 +170743688776,226,0 +170743688824,230,0 +170743688872,232,0 +170743688920,236,0 +170743688969,238,0 +170743689017,241,0 +170743689065,241,0 +170743689114,244,0 +170743689162,247,0 +170743689212,246,0 +170743689260,245,0 +170743689308,223,0 +170743689357,221,0 +170743689405,221,0 +170743689453,222,0 +170743689503,222,0 +170743689551,223,0 +170743689599,224,0 +170743689647,225,0 +170743689695,226,0 +170743689743,225,0 +170743689792,232,0 +170743689840,233,0 +170743689888,235,0 +170743689936,239,0 +170743689986,239,0 +170743690035,241,0 +170743690083,243,0 +170743690131,242,0 +170743690181,244,0 +170743690229,225,0 +170743690278,224,0 +170743690326,226,0 +170743690376,228,0 +170743690424,228,0 +170743690472,228,0 +170743690520,229,0 +170743690569,231,0 +170743690619,233,0 +170743690668,236,0 +170743690716,238,0 +170743690766,239,0 +170743690814,244,0 +170743690863,243,0 +170743690911,246,0 +170743690960,246,0 +170743691008,246,0 +170743691056,247,0 +170743691104,246,0 +170743691152,225,0 +170743691200,222,0 +170743691250,224,0 +170743691299,223,0 +170743691347,225,0 +170743691395,229,0 +170743691444,232,0 +170743691494,236,0 +170743691542,236,0 +170743691590,239,0 +170743691640,240,0 +170743691687,241,0 +170743691737,245,0 +170743691787,242,0 +170743691835,244,0 +170743691884,247,0 +170743691934,246,0 +170743691981,246,0 +170743692029,245,0 +170743692077,233,0 +170743692125,220,0 +170743692173,220,0 +170743692223,222,0 +170743692272,224,0 +170743692322,231,0 +170743692370,233,0 +170743692418,234,0 +170743692466,237,0 +170743692515,238,0 +170743692563,242,0 +170743692611,240,0 +170743692659,240,0 +170743692707,241,0 +170743692755,244,0 +170743692805,244,0 +170743692853,245,0 +170743692902,245,0 +170743692950,243,0 +170743692999,223,0 +170743693047,223,0 +170743693095,220,0 +170743693143,221,0 +170743693193,222,0 +170743693242,222,0 +170743693290,224,0 +170743693338,225,0 +170743693386,227,0 +170743693434,230,0 +170743693484,234,0 +170743693533,238,0 +170743693581,240,0 +170743693629,240,0 +170743693677,241,0 +170743693727,242,0 +170743693776,243,0 +170743693826,246,0 +170743693874,242,0 +170743693922,221,0 +170743693971,221,0 +170743694021,221,0 +170743694069,221,0 +170743694117,223,0 +170743694165,224,0 +170743694214,226,0 +170743694264,229,0 +170743694312,232,0 +170743694360,235,0 +170743694408,237,0 +170743694457,239,0 +170743694505,242,0 +170743694553,242,0 +170743694601,243,0 +170743694649,243,0 +170743694697,245,0 +170743694744,243,0 +170743694792,242,0 +170743694840,221,0 +170743694888,220,0 +170743694936,220,0 +170743694984,222,0 +170743695032,222,0 +170743695080,222,0 +170743695128,224,0 +170743695175,223,0 +170743695223,228,0 +170743695273,232,0 +170743695321,235,0 +170743695369,237,0 +170743695416,238,0 +170743695464,241,0 +170743695512,244,0 +170743695560,245,0 +170743695608,247,0 +170743695656,244,0 +170743695704,245,0 +170743695752,222,0 +170743695800,221,0 +170743695847,222,0 +170743695895,222,0 +170743695945,224,0 +170743695993,224,0 +170743696041,227,0 +170743696090,231,0 +170743696140,233,0 +170743696188,235,0 +170743696237,238,0 +170743696285,240,0 +170743696333,243,0 +170743696381,244,0 +170743696429,244,0 +170743696479,246,0 +170743696527,245,0 +170743696575,245,0 +170743696623,246,0 +170743696671,220,0 +170743696720,220,0 +170743696770,221,0 +170743696819,221,0 +170743696869,223,0 +170743696917,225,0 +170743696965,228,0 +170743697013,230,0 +170743697061,233,0 +170743697109,235,0 +170743697157,239,0 +170743697206,241,0 +170743697256,241,0 +170743697304,242,0 +170743697351,244,0 +170743697401,244,0 +170743697449,246,0 +170743697498,240,0 +170743697546,243,0 +170743697596,222,0 +170743697646,221,0 +170743697694,223,0 +170743697742,222,0 +170743697790,226,0 +170743697839,230,0 +170743697889,234,0 +170743697937,236,0 +170743697984,238,0 +170743698032,240,0 +170743698082,243,0 +170743698130,243,0 +170743698177,240,0 +170743698225,244,0 +170743698273,244,0 +170743698321,243,0 +170743698371,245,0 +170743698418,248,0 +170743698466,243,0 +170743698514,222,0 +170743698562,220,0 +170743698610,221,0 +170743698660,220,0 +170743698708,223,0 +170743698756,222,0 +170743698804,226,0 +170743698852,230,0 +170743698900,234,0 +170743698948,236,0 +170743698995,237,0 +170743699045,241,0 +170743699095,241,0 +170743699143,242,0 +170743699192,244,0 +170743699240,246,0 +170743699290,246,0 +170743699338,247,0 +170743699387,244,0 +170743699435,221,0 +170743699484,220,0 +170743699532,220,0 +170743699580,221,0 +170743699630,221,0 +170743699678,223,0 +170743699727,225,0 +170743699775,225,0 +170743699825,226,0 +170743699873,234,0 +170743699921,234,0 +170743699969,238,0 +170743700017,239,0 +170743700065,242,0 +170743700114,243,0 +170743700164,245,0 +170743700212,243,0 +170743700260,247,0 +170743700308,226,0 +170743700356,219,0 +170743700404,218,0 +170743700452,218,0 +170743700500,218,0 +170743700548,218,0 +170743700597,219,0 +170743700645,219,0 +170743700693,220,0 +170743700741,220,0 +170743700789,221,0 +170743700837,222,0 +170743700885,224,0 +170743700933,228,0 +170743700983,232,0 +170743701031,234,0 +170743701078,236,0 +170743701126,241,0 +170743701176,243,0 +170743701225,244,0 +170743701273,221,0 +170743701323,221,0 +170743701372,222,0 +170743701420,222,0 +170743701470,224,0 +170743701518,226,0 +170743701566,226,0 +170743701614,227,0 +170743701663,229,0 +170743701711,235,0 +170743701759,244,0 +170743701809,239,0 +170743701857,239,0 +170743701906,242,0 +170743701954,244,0 +170743702002,245,0 +170743702050,245,0 +170743702098,245,0 +170743702147,224,0 +170743702195,222,0 +170743702243,223,0 +170743702291,222,0 +170743702339,224,0 +170743702387,223,0 +170743702435,223,0 +170743702483,225,0 +170743702530,228,0 +170743702580,231,0 +170743702628,235,0 +170743702676,235,0 +170743702724,238,0 +170743702771,241,0 +170743702819,244,0 +170743702868,242,0 +170743702916,242,0 +170743702963,245,0 +170743703011,244,0 +170743703059,224,0 +170743703107,227,0 +170743703157,222,0 +170743703205,223,0 +170743703252,222,0 +170743703300,223,0 +170743703348,225,0 +170743703398,230,0 +170743703446,232,0 +170743703493,236,0 +170743703541,239,0 +170743703589,240,0 +170743703637,242,0 +170743703687,241,0 +170743703735,243,0 +170743703783,243,0 +170743703832,246,0 +170743703880,246,0 +170743703928,246,0 +170743703976,236,0 +170743704024,220,0 +170743704074,220,0 +170743704123,220,0 +170743704171,220,0 +170743704219,224,0 +170743704267,223,0 +170743704315,223,0 +170743704364,227,0 +170743704412,231,0 +170743704461,233,0 +170743704509,236,0 +170743704557,238,0 +170743704605,241,0 +170743704653,243,0 +170743704701,244,0 +170743704749,246,0 +170743704798,246,0 +170743704846,245,0 +170743704894,241,0 +170743704942,220,0 +170743704990,219,0 +170743705038,221,0 +170743705086,221,0 +170743705134,222,0 +170743705182,222,0 +170743705231,223,0 +170743705281,224,0 +170743705330,224,0 +170743705380,227,0 +170743705429,232,0 +170743705477,235,0 +170743705525,236,0 +170743705573,240,0 +170743705623,242,0 +170743705672,242,0 +170743705720,245,0 +170743705768,245,0 +170743705816,230,0 +170743705864,220,0 +170743705912,221,0 +170743705962,222,0 +170743706010,223,0 +170743706058,223,0 +170743706105,224,0 +170743706153,225,0 +170743706201,227,0 +170743706249,228,0 +170743706299,233,0 +170743706347,237,0 +170743706395,239,0 +170743706443,242,0 +170743706491,240,0 +170743706538,244,0 +170743706588,244,0 +170743706636,246,0 +170743706683,244,0 +170743706731,222,0 +170743706781,221,0 +170743706829,220,0 +170743706878,220,0 +170743706926,222,0 +170743706976,223,0 +170743707024,224,0 +170743707073,225,0 +170743707123,229,0 +170743707171,232,0 +170743707219,234,0 +170743707269,238,0 +170743707316,240,0 +170743707366,245,0 +170743707414,242,0 +170743707463,243,0 +170743707513,246,0 +170743707561,243,0 +170743707609,245,0 +170743707657,223,0 +170743707705,219,0 +170743707753,219,0 +170743707802,219,0 +170743707850,219,0 +170743707900,220,0 +170743707948,220,0 +170743707996,222,0 +170743708044,222,0 +170743708092,224,0 +170743708139,227,0 +170743708187,231,0 +170743708235,234,0 +170743708283,236,0 +170743708331,236,0 +170743708379,239,0 +170743708428,242,0 +170743708476,243,0 +170743708526,242,0 +170743708574,221,0 +170743708623,219,0 +170743708673,220,0 +170743708721,220,0 +170743708769,220,0 +170743708818,222,0 +170743708866,223,0 +170743708916,222,0 +170743708964,225,0 +170743709013,228,0 +170743709063,231,0 +170743709113,234,0 +170743709162,237,0 +170743709212,240,0 +170743709260,240,0 +170743709308,241,0 +170743709356,245,0 +170743709404,242,0 +170743709452,242,0 +170743709499,222,0 +170743709549,219,0 +170743709599,220,0 +170743709647,220,0 +170743709695,221,0 +170743709743,222,0 +170743709792,224,0 +170743709840,228,0 +170743709888,232,0 +170743709938,234,0 +170743709987,237,0 +170743710035,239,0 +170743710083,240,0 +170743710131,243,0 +170743710179,244,0 +170743710227,246,0 +170743710275,245,0 +170743710323,242,0 +170743710371,242,0 +170743710419,223,0 +170743710467,220,0 +170743710515,223,0 +170743710564,227,0 +170743710612,231,0 +170743710662,233,0 +170743710709,235,0 +170743710759,237,0 +170743710807,239,0 +170743710856,240,0 +170743710904,244,0 +170743710952,245,0 +170743711000,244,0 +170743711048,245,0 +170743711096,245,0 +170743711144,247,0 +170743711193,245,0 +170743711243,245,0 +170743711291,244,0 +170743711339,224,0 +170743711388,222,0 +170743711436,225,0 +170743711484,228,0 +170743711532,232,0 +170743711580,234,0 +170743711628,236,0 +170743711676,237,0 +170743711725,239,0 +170743711773,240,0 +170743711821,241,0 +170743711869,244,0 +170743711919,244,0 +170743711968,243,0 +170743712016,245,0 +170743712066,245,0 +170743712113,249,0 +170743712161,247,0 +170743712209,245,0 +170743712257,223,0 +170743712305,219,0 +170743712355,220,0 +170743712403,220,0 +170743712452,224,0 +170743712500,227,0 +170743712548,231,0 +170743712596,234,0 +170743712646,237,0 +170743712694,236,0 +170743712742,239,0 +170743712790,241,0 +170743712838,242,0 +170743712886,243,0 +170743712934,245,0 +170743712983,244,0 +170743713031,247,0 +170743713081,246,0 +170743713129,242,0 +170743713177,221,0 +170743713225,220,0 +170743713273,219,0 +170743713321,219,0 +170743713370,221,0 +170743713420,222,0 +170743713469,224,0 +170743713517,228,0 +170743713565,232,0 +170743713613,233,0 +170743713661,239,0 +170743713711,239,0 +170743713759,238,0 +170743713807,239,0 +170743713856,242,0 +170743713904,243,0 +170743713952,246,0 +170743714000,244,0 +170743714050,242,0 +170743714098,221,0 +170743714146,219,0 +170743714194,219,0 +170743714243,221,0 +170743714293,221,0 +170743714342,222,0 +170743714390,223,0 +170743714438,222,0 +170743714486,224,0 +170743714534,224,0 +170743714583,232,0 +170743714631,234,0 +170743714679,235,0 +170743714727,239,0 +170743714775,240,0 +170743714825,244,0 +170743714873,241,0 +170743714922,244,0 +170743714972,243,0 +170743715020,221,0 +170743715068,220,0 +170743715116,220,0 +170743715164,222,0 +170743715212,222,0 +170743715260,225,0 +170743715308,228,0 +170743715357,231,0 +170743715405,234,0 +170743715455,239,0 +170743715504,238,0 +170743715552,240,0 +170743715600,242,0 +170743715650,242,0 +170743715698,244,0 +170743715746,246,0 +170743715794,245,0 +170743715842,246,0 +170743715890,243,0 +170743715938,219,0 +170743715987,218,0 +170743716037,221,0 +170743716085,221,0 +170743716133,222,0 +170743716181,226,0 +170743716229,229,0 +170743716277,229,0 +170743716325,233,0 +170743716372,237,0 +170743716422,239,0 +170743716470,241,0 +170743716518,243,0 +170743716567,243,0 +170743716617,243,0 +170743716665,243,0 +170743716713,244,0 +170743716762,246,0 +170743716812,235,0 +170743716860,220,0 +170743716908,220,0 +170743716957,220,0 +170743717005,220,0 +170743717053,222,0 +170743717101,225,0 +170743717149,228,0 +170743717197,230,0 +170743717245,233,0 +170743717293,237,0 +170743717341,238,0 +170743717389,240,0 +170743717439,243,0 +170743717487,243,0 +170743717535,246,0 +170743717583,246,0 +170743717632,246,0 +170743717680,246,0 +170743717728,243,0 +170743717776,220,0 +170743717826,220,0 +170743717874,219,0 +170743717921,221,0 +170743717969,222,0 +170743718017,223,0 +170743718065,226,0 +170743718113,229,0 +170743718163,232,0 +170743718211,236,0 +170743718259,239,0 +170743718308,239,0 +170743718356,241,0 +170743718404,240,0 +170743718454,242,0 +170743718502,244,0 +170743718551,242,0 +170743718601,245,0 +170743718650,237,0 +170743718698,219,0 +170743718746,219,0 +170743718794,219,0 +170743718842,221,0 +170743718890,221,0 +170743718937,223,0 +170743718987,225,0 +170743719035,236,0 +170743719083,233,0 +170743719131,235,0 +170743719179,237,0 +170743719226,240,0 +170743719274,240,0 +170743719322,241,0 +170743719370,242,0 +170743719419,245,0 +170743719467,244,0 +170743719515,245,0 +170743719563,225,0 +170743719612,217,0 +170743719660,217,0 +170743719708,217,0 +170743719758,217,0 +170743719806,218,0 +170743719854,219,0 +170743719901,220,0 +170743719949,220,0 +170743719997,219,0 +170743720045,221,0 +170743720093,225,0 +170743720141,230,0 +170743720189,234,0 +170743720237,235,0 +170743720284,239,0 +170743720332,241,0 +170743720382,241,0 +170743720430,244,0 +170743720478,229,0 +170743720525,219,0 +170743720573,219,0 +170743720623,220,0 +170743720671,222,0 +170743720718,222,0 +170743720766,223,0 +170743720814,223,0 +170743720862,226,0 +170743720910,229,0 +170743720958,233,0 +170743721006,236,0 +170743721054,239,0 +170743721101,242,0 +170743721151,242,0 +170743721199,244,0 +170743721247,245,0 +170743721295,243,0 +170743721343,246,0 +170743721391,243,0 +170743721439,220,0 +170743721487,219,0 +170743721535,220,0 +170743721582,221,0 +170743721630,223,0 +170743721678,223,0 +170743721726,226,0 +170743721774,229,0 +170743721822,234,0 +170743721872,236,0 +170743721921,238,0 +170743721969,242,0 +170743722017,241,0 +170743722065,242,0 +170743722115,245,0 +170743722163,245,0 +170743722211,247,0 +170743722260,247,0 +170743722308,244,0 +170743722356,220,0 +170743722404,219,0 +170743722452,219,0 +170743722500,220,0 +170743722548,222,0 +170743722597,222,0 +170743722645,225,0 +170743722693,229,0 +170743722743,232,0 +170743722791,235,0 +170743722838,238,0 +170743722888,238,0 +170743722936,242,0 +170743722986,242,0 +170743723033,246,0 +170743723081,246,0 +170743723129,244,0 +170743723179,244,0 +170743723227,235,0 +170743723276,222,0 +170743723324,222,0 +170743723372,222,0 +170743723420,223,0 +170743723468,223,0 +170743723516,223,0 +170743723566,224,0 +170743723614,225,0 +170743723662,225,0 +170743723711,229,0 +170743723759,232,0 +170743723807,235,0 +170743723855,239,0 +170743723905,243,0 +170743723953,242,0 +170743724002,246,0 +170743724050,245,0 +170743724100,246,0 +170743724148,235,0 +170743724196,219,0 +170743724245,220,0 +170743724293,219,0 +170743724341,221,0 +170743724389,221,0 +170743724437,222,0 +170743724485,223,0 +170743724533,223,0 +170743724582,227,0 +170743724630,229,0 +170743724680,235,0 +170743724728,236,0 +170743724776,241,0 +170743724824,242,0 +170743724872,243,0 +170743724921,243,0 +170743724969,246,0 +170743725017,244,0 +170743725067,231,0 +170743725116,220,0 +170743725166,220,0 +170743725215,220,0 +170743725263,222,0 +170743725311,222,0 +170743725359,223,0 +170743725407,224,0 +170743725456,223,0 +170743725504,226,0 +170743725552,229,0 +170743725600,232,0 +170743725648,237,0 +170743725696,237,0 +170743725744,240,0 +170743725792,240,0 +170743725841,244,0 +170743725891,246,0 +170743725940,246,0 +170743725990,222,0 +170743726038,221,0 +170743726087,221,0 +170743726135,222,0 +170743726183,223,0 +170743726231,225,0 +170743726279,228,0 +170743726329,234,0 +170743726376,233,0 +170743726426,233,0 +170743726475,236,0 +170743726523,238,0 +170743726571,239,0 +170743726619,240,0 +170743726669,243,0 +170743726717,242,0 +170743726765,245,0 +170743726813,242,0 +170743726862,245,0 +170743726910,224,0 +170743726958,222,0 +170743727008,222,0 +170743727057,228,0 +170743727105,232,0 +170743727155,232,0 +170743727202,234,0 +170743727250,236,0 +170743727298,238,0 +170743727346,241,0 +170743727394,241,0 +170743727442,243,0 +170743727490,244,0 +170743727540,245,0 +170743727588,245,0 +170743727638,245,0 +170743727685,248,0 +170743727733,247,0 +170743727781,245,0 +170743727831,225,0 +170743727880,222,0 +170743727928,223,0 +170743727976,226,0 +170743728024,228,0 +170743728074,232,0 +170743728122,234,0 +170743728170,238,0 +170743728218,239,0 +170743728266,241,0 +170743728314,242,0 +170743728362,244,0 +170743728410,245,0 +170743728457,246,0 +170743728507,245,0 +170743728556,246,0 +170743728606,247,0 +170743728654,246,0 +170743728702,245,0 +170743728751,224,0 +170743728801,220,0 +170743728849,221,0 +170743728897,224,0 +170743728945,228,0 +170743728993,232,0 +170743729041,235,0 +170743729089,238,0 +170743729138,236,0 +170743729186,241,0 +170743729236,244,0 +170743729284,242,0 +170743729332,243,0 +170743729380,246,0 +170743729428,245,0 +170743729475,245,0 +170743729523,246,0 +170743729573,247,0 +170743729621,246,0 +170743729669,224,0 +170743729717,221,0 +170743729765,221,0 +170743729813,224,0 +170743729861,228,0 +170743729910,231,0 +170743729958,234,0 +170743730006,236,0 +170743730054,241,0 +170743730102,238,0 +170743730152,241,0 +170743730201,244,0 +170743730249,246,0 +170743730299,245,0 +170743730347,243,0 +170743730396,247,0 +170743730444,246,0 +170743730492,246,0 +170743730542,246,0 +170743730590,224,0 +170743730638,220,0 +170743730686,222,0 +170743730734,224,0 +170743730782,228,0 +170743730830,232,0 +170743730879,234,0 +170743730927,236,0 +170743730975,238,0 +170743731023,240,0 +170743731071,239,0 +170743731119,243,0 +170743731167,242,0 +170743731216,244,0 +170743731266,244,0 +170743731315,246,0 +170743731363,244,0 +170743731411,246,0 +170743731459,243,0 +170743731507,222,0 +170743731555,218,0 +170743731603,219,0 +170743731651,220,0 +170743731698,221,0 +170743731746,222,0 +170743731794,223,0 +170743731842,224,0 +170743731890,228,0 +170743731938,231,0 +170743731986,240,0 +170743732034,236,0 +170743732084,237,0 +170743732133,239,0 +170743732181,241,0 +170743732229,238,0 +170743732279,241,0 +170743732327,243,0 +170743732375,243,0 +170743732424,221,0 +170743732472,217,0 +170743732520,218,0 +170743732568,218,0 +170743732616,219,0 +170743732663,220,0 +170743732711,219,0 +170743732759,221,0 +170743732807,226,0 +170743732855,223,0 +170743732903,227,0 +170743732951,231,0 +170743732999,233,0 +170743733047,236,0 +170743733096,237,0 +170743733144,238,0 +170743733192,237,0 +170743733242,242,0 +170743733290,243,0 +170743733338,223,0 +170743733387,218,0 +170743733435,219,0 +170743733485,220,0 +170743733533,221,0 +170743733581,222,0 +170743733629,225,0 +170743733677,228,0 +170743733726,231,0 +170743733774,236,0 +170743733822,236,0 +170743733870,236,0 +170743733918,238,0 +170743733966,240,0 +170743734015,244,0 +170743734063,243,0 +170743734111,244,0 +170743734159,244,0 +170743734209,245,0 +170743734257,222,0 +170743734306,218,0 +170743734356,219,0 +170743734405,220,0 +170743734453,220,0 +170743734503,221,0 +170743734551,221,0 +170743734599,225,0 +170743734647,229,0 +170743734695,231,0 +170743734743,233,0 +170743734790,239,0 +170743734838,239,0 +170743734888,241,0 +170743734936,242,0 +170743734984,242,0 +170743735032,244,0 +170743735080,245,0 +170743735128,244,0 +170743735176,221,0 +170743735225,218,0 +170743735273,220,0 +170743735321,221,0 +170743735369,221,0 +170743735417,222,0 +170743735466,223,0 +170743735516,226,0 +170743735564,228,0 +170743735614,233,0 +170743735663,235,0 +170743735713,240,0 +170743735762,240,0 +170743735812,242,0 +170743735860,244,0 +170743735908,245,0 +170743735957,246,0 +170743736005,246,0 +170743736053,244,0 +170743736101,220,0 +170743736149,219,0 +170743736197,219,0 +170743736245,219,0 +170743736293,219,0 +170743736342,220,0 +170743736390,221,0 +170743736438,223,0 +170743736486,223,0 +170743736536,229,0 +170743736584,232,0 +170743736633,235,0 +170743736681,237,0 +170743736729,241,0 +170743736777,242,0 +170743736825,245,0 +170743736874,245,0 +170743736924,245,0 +170743736973,244,0 +170743737021,220,0 +170743737069,219,0 +170743737117,220,0 +170743737167,220,0 +170743737215,221,0 +170743737264,222,0 +170743737312,229,0 +170743737362,232,0 +170743737410,233,0 +170743737457,235,0 +170743737505,238,0 +170743737553,241,0 +170743737601,240,0 +170743737649,241,0 +170743737697,241,0 +170743737745,247,0 +170743737792,245,0 +170743737840,246,0 +170743737888,244,0 +170743737936,219,0 +170743737984,219,0 +170743738032,219,0 +170743738081,220,0 +170743738129,222,0 +170743738177,223,0 +170743738225,227,0 +170743738273,230,0 +170743738321,235,0 +170743738369,237,0 +170743738416,239,0 +170743738464,239,0 +170743738512,241,0 +170743738562,242,0 +170743738610,248,0 +170743738657,245,0 +170743738705,246,0 +170743738753,246,0 +170743738801,245,0 +170743738849,219,0 +170743738897,219,0 +170743738945,219,0 +170743738993,220,0 +170743739041,222,0 +170743739088,221,0 +170743739136,222,0 +170743739184,226,0 +170743739232,229,0 +170743739282,231,0 +170743739330,236,0 +170743739379,238,0 +170743739429,240,0 +170743739478,241,0 +170743739526,243,0 +170743739574,243,0 +170743739622,244,0 +170743739670,245,0 +170743739720,244,0 +170743739769,221,0 +170743739817,219,0 +170743739865,220,0 +170743739914,220,0 +170743739962,221,0 +170743740010,222,0 +170743740058,223,0 +170743740106,227,0 +170743740154,230,0 +170743740202,233,0 +170743740250,236,0 +170743740298,237,0 +170743740346,240,0 +170743740394,242,0 +170743740442,247,0 +170743740492,246,0 +170743740540,245,0 +170743740589,246,0 +170743740637,241,0 +170743740685,218,0 +170743740734,218,0 +170743740782,218,0 +170743740830,219,0 +170743740880,221,0 +170743740928,222,0 +170743740977,222,0 +170743741025,224,0 +170743741075,228,0 +170743741123,232,0 +170743741171,236,0 +170743741219,236,0 +170743741267,239,0 +170743741315,243,0 +170743741364,242,0 +170743741414,247,0 +170743741463,244,0 +170743741511,247,0 +170743741561,222,0 +170743741610,219,0 +170743741658,219,0 +170743741708,220,0 +170743741757,222,0 +170743741805,221,0 +170743741853,223,0 +170743741902,227,0 +170743741952,231,0 +170743742000,234,0 +170743742049,236,0 +170743742099,238,0 +170743742148,244,0 +170743742196,241,0 +170743742244,243,0 +170743742292,245,0 +170743742340,245,0 +170743742388,246,0 +170743742438,244,0 +170743742486,221,0 +170743742535,219,0 +170743742585,220,0 +170743742633,221,0 +170743742681,222,0 +170743742730,225,0 +170743742778,229,0 +170743742826,231,0 +170743742876,232,0 +170743742924,234,0 +170743742972,236,0 +170743743020,240,0 +170743743068,241,0 +170743743117,243,0 +170743743165,243,0 +170743743213,245,0 +170743743263,245,0 +170743743310,245,0 +170743743358,245,0 +170743743406,224,0 +170743743456,221,0 +170743743504,221,0 +170743743552,222,0 +170743743600,225,0 +170743743649,228,0 +170743743699,231,0 +170743743748,232,0 +170743743798,236,0 +170743743846,237,0 +170743743894,240,0 +170743743942,241,0 +170743743991,243,0 +170743744039,245,0 +170743744089,246,0 +170743744138,247,0 +170743744186,247,0 +170743744234,247,0 +170743744282,245,0 +170743744332,224,0 +170743744380,220,0 +170743744428,220,0 +170743744477,221,0 +170743744525,223,0 +170743744573,229,0 +170743744621,232,0 +170743744671,232,0 +170743744719,231,0 +170743744768,234,0 +170743744818,238,0 +170743744866,239,0 +170743744914,242,0 +170743744962,244,0 +170743745010,242,0 +170743745058,244,0 +170743745106,245,0 +170743745155,246,0 +170743745203,245,0 +170743745253,223,0 +170743745301,221,0 +170743745350,221,0 +170743745398,222,0 +170743745448,225,0 +170743745497,230,0 +170743745545,233,0 +170743745593,235,0 +170743745641,236,0 +170743745689,237,0 +170743745738,239,0 +170743745786,242,0 +170743745836,242,0 +170743745884,244,0 +170743745933,246,0 +170743745981,245,0 +170743746029,246,0 +170743746077,247,0 +170743746127,243,0 +170743746175,221,0 +170743746223,219,0 +170743746272,219,0 +170743746321,221,0 +170743746369,221,0 +170743746419,226,0 +170743746467,226,0 +170743746515,231,0 +170743746563,234,0 +170743746610,235,0 +170743746658,238,0 +170743746706,241,0 +170743746754,243,0 +170743746802,243,0 +170743746850,244,0 +170743746898,243,0 +170743746946,247,0 +170743746994,247,0 +170743747041,245,0 +170743747089,221,0 +170743747137,219,0 +170743747185,220,0 +170743747235,220,0 +170743747283,222,0 +170743747332,226,0 +170743747382,228,0 +170743747431,229,0 +170743747479,231,0 +170743747529,234,0 +170743747577,239,0 +170743747626,239,0 +170743747676,243,0 +170743747725,244,0 +170743747775,244,0 +170743747824,245,0 +170743747872,246,0 +170743747920,246,0 +170743747968,237,0 +170743748016,220,0 +170743748064,220,0 +170743748112,221,0 +170743748159,223,0 +170743748207,228,0 +170743748255,228,0 +170743748303,234,0 +170743748351,235,0 +170743748399,240,0 +170743748447,239,0 +170743748495,243,0 +170743748543,241,0 +170743748591,244,0 +170743748640,245,0 +170743748688,244,0 +170743748738,246,0 +170743748786,246,0 +170743748834,247,0 +170743748883,245,0 +170743748931,219,0 +170743748981,219,0 +170743749029,221,0 +170743749078,224,0 +170743749126,228,0 +170743749174,233,0 +170743749222,234,0 +170743749270,238,0 +170743749320,240,0 +170743749368,240,0 +170743749416,243,0 +170743749465,242,0 +170743749513,242,0 +170743749561,242,0 +170743749609,242,0 +170743749657,244,0 +170743749707,247,0 +170743749754,247,0 +170743749804,242,0 +170743749852,219,0 +170743749900,219,0 +170743749948,220,0 +170743749996,220,0 +170743750044,222,0 +170743750092,223,0 +170743750139,226,0 +170743750187,230,0 +170743750235,232,0 +170743750285,237,0 +170743750332,239,0 +170743750380,238,0 +170743750428,239,0 +170743750476,243,0 +170743750524,243,0 +170743750572,243,0 +170743750620,243,0 +170743750668,245,0 +170743750716,244,0 +170743750764,222,0 +170743750812,220,0 +170743750860,217,0 +170743750908,217,0 +170743750956,218,0 +170743751004,219,0 +170743751053,220,0 +170743751101,221,0 +170743751151,221,0 +170743751199,224,0 +170743751247,228,0 +170743751295,232,0 +170743751344,236,0 +170743751392,238,0 +170743751440,240,0 +170743751488,242,0 +170743751536,244,0 +170743751584,243,0 +170743751632,243,0 +170743751680,221,0 +170743751729,220,0 +170743751777,220,0 +170743751825,220,0 +170743751873,222,0 +170743751921,222,0 +170743751969,223,0 +170743752017,224,0 +170743752065,226,0 +170743752113,224,0 +170743752161,235,0 +170743752210,233,0 +170743752260,236,0 +170743752309,236,0 +170743752359,239,0 +170743752407,239,0 +170743752455,241,0 +170743752503,254,0 +170743752551,241,0 +170743752600,244,0 +170743752648,245,0 +170743752696,246,0 +170743752744,245,0 +170743752792,246,0 +170743752840,245,0 +170743752889,247,0 +170743752939,247,0 +170743752989,244,0 +170743753037,223,0 +170743753086,220,0 +170743753134,220,0 +170743753182,221,0 +170743753232,225,0 +170743753279,228,0 +170743753328,231,0 +170743753376,234,0 +170743753423,236,0 +170743753472,237,0 +170743753519,238,0 +170743753567,240,0 +170743753617,243,0 +170743753665,243,0 +170743753713,244,0 +170743753762,245,0 +170743753810,245,0 +170743753858,246,0 +170743753906,243,0 +170743753956,221,0 +170743754004,219,0 +170743754053,220,0 +170743754103,221,0 +170743754151,221,0 +170743754199,221,0 +170743754247,225,0 +170743754296,229,0 +170743754344,232,0 +170743754392,231,0 +170743754440,236,0 +170743754489,239,0 +170743754537,241,0 +170743754587,243,0 +170743754635,244,0 +170743754683,247,0 +170743754731,247,0 +170743754779,246,0 +170743754827,244,0 +170743754875,221,0 +170743754924,218,0 +170743754972,219,0 +170743755022,221,0 +170743755070,231,0 +170743755119,221,0 +170743755167,222,0 +170743755217,225,0 +170743755265,228,0 +170743755314,232,0 +170743755362,237,0 +170743755410,236,0 +170743755460,237,0 +170743755509,242,0 +170743755559,241,0 +170743755606,243,0 +170743755654,244,0 +170743755704,244,0 +170743755752,244,0 +170743755800,223,0 +170743755849,219,0 +170743755897,219,0 +170743755945,220,0 +170743755995,221,0 +170743756044,226,0 +170743756092,225,0 +170743756140,231,0 +170743756190,233,0 +170743756238,234,0 +170743756286,237,0 +170743756335,237,0 +170743756383,240,0 +170743756431,241,0 +170743756481,243,0 +170743756530,244,0 +170743756580,244,0 +170743756628,243,0 +170743756675,242,0 +170743756725,218,0 +170743756773,218,0 +170743756822,219,0 +170743756870,219,0 +170743756918,220,0 +170743756968,221,0 +170743757016,225,0 +170743757064,228,0 +170743757113,228,0 +170743757161,230,0 +170743757209,233,0 +170743757259,235,0 +170743757308,239,0 +170743757356,239,0 +170743757404,242,0 +170743757452,241,0 +170743757500,242,0 +170743757550,243,0 +170743757599,223,0 +170743757647,217,0 +170743757695,217,0 +170743757743,218,0 +170743757793,219,0 +170743757842,220,0 +170743757892,221,0 +170743757940,221,0 +170743757988,223,0 +170743758037,226,0 +170743758085,230,0 +170743758133,233,0 +170743758181,236,0 +170743758229,238,0 +170743758279,240,0 +170743758327,241,0 +170743758374,243,0 +170743758424,243,0 +170743758472,243,0 +170743758520,221,0 +170743758569,219,0 +170743758617,219,0 +170743758665,220,0 +170743758715,221,0 +170743758763,221,0 +170743758811,225,0 +170743758859,229,0 +170743758907,232,0 +170743758955,234,0 +170743759004,234,0 +170743759052,237,0 +170743759100,240,0 +170743759148,244,0 +170743759196,243,0 +170743759244,243,0 +170743759293,245,0 +170743759341,247,0 +170743759389,245,0 +170743759437,222,0 +170743759485,219,0 +170743759533,220,0 +170743759581,221,0 +170743759631,220,0 +170743759679,222,0 +170743759728,225,0 +170743759776,227,0 +170743759825,231,0 +170743759875,239,0 +170743759923,235,0 +170743759973,236,0 +170743760021,239,0 +170743760069,241,0 +170743760118,246,0 +170743760166,243,0 +170743760214,244,0 +170743760262,245,0 +170743760310,240,0 +170743760359,224,0 +170743760407,220,0 +170743760457,220,0 +170743760505,221,0 +170743760554,222,0 +170743760602,223,0 +170743760652,224,0 +170743760700,225,0 +170743760748,228,0 +170743760796,231,0 +170743760845,234,0 +170743760895,243,0 +170743760943,237,0 +170743760991,239,0 +170743761040,242,0 +170743761088,245,0 +170743761138,247,0 +170743761186,245,0 +170743761234,246,0 +170743761282,223,0 +170743761331,218,0 +170743761379,220,0 +170743761427,219,0 +170743761477,220,0 +170743761526,222,0 +170743761574,222,0 +170743761622,223,0 +170743761670,223,0 +170743761718,224,0 +170743761766,225,0 +170743761814,228,0 +170743761862,229,0 +170743761910,235,0 +170743761958,237,0 +170743762007,239,0 +170743762057,239,0 +170743762105,242,0 +170743762154,246,0 +170743762202,225,0 +170743762250,220,0 +170743762298,222,0 +170743762348,222,0 +170743762396,224,0 +170743762445,228,0 +170743762493,231,0 +170743762543,232,0 +170743762592,233,0 +170743762640,235,0 +170743762688,235,0 +170743762738,239,0 +170743762787,241,0 +170743762835,244,0 +170743762883,247,0 +170743762931,244,0 +170743762979,245,0 +170743763028,245,0 +170743763078,244,0 +170743763126,223,0 +170743763176,220,0 +170743763224,221,0 +170743763271,223,0 +170743763319,226,0 +170743763367,228,0 +170743763417,230,0 +170743763465,232,0 +170743763514,236,0 +170743763564,240,0 +170743763613,240,0 +170743763661,241,0 +170743763711,241,0 +170743763759,244,0 +170743763807,245,0 +170743763855,245,0 +170743763903,246,0 +170743763952,246,0 +170743764000,245,0 +170743764048,220,0 +170743764096,220,0 +170743764144,225,0 +170743764192,227,0 +170743764240,232,0 +170743764288,233,0 +170743764336,233,0 +170743764386,233,0 +170743764435,236,0 +170743764483,238,0 +170743764533,240,0 +170743764581,241,0 +170743764629,242,0 +170743764677,242,0 +170743764725,244,0 +170743764774,244,0 +170743764824,245,0 +170743764872,246,0 +170743764920,243,0 +170743764969,222,0 +170743765017,219,0 +170743765065,224,0 +170743765115,227,0 +170743765162,230,0 +170743765210,232,0 +170743765258,235,0 +170743765306,236,0 +170743765354,237,0 +170743765404,241,0 +170743765452,242,0 +170743765501,244,0 +170743765549,244,0 +170743765599,245,0 +170743765647,245,0 +170743765695,247,0 +170743765743,244,0 +170743765791,244,0 +170743765839,243,0 +170743765886,221,0 +170743765934,221,0 +170743765984,224,0 +170743766032,229,0 +170743766081,231,0 +170743766129,234,0 +170743766177,236,0 +170743766225,239,0 +170743766273,239,0 +170743766321,241,0 +170743766369,242,0 +170743766417,243,0 +170743766465,244,0 +170743766512,245,0 +170743766560,244,0 +170743766608,245,0 +170743766656,245,0 +170743766704,244,0 +170743766752,243,0 +170743766802,219,0 +170743766850,219,0 +170743766898,220,0 +170743766948,221,0 +170743766997,226,0 +170743767045,230,0 +170743767093,231,0 +170743767141,235,0 +170743767189,238,0 +170743767237,238,0 +170743767285,244,0 +170743767333,242,0 +170743767381,242,0 +170743767429,244,0 +170743767478,243,0 +170743767526,246,0 +170743767574,246,0 +170743767622,246,0 +170743767670,237,0 +170743767718,218,0 +170743767766,217,0 +170743767814,218,0 +170743767861,219,0 +170743767909,221,0 +170743767957,221,0 +170743768005,222,0 +170743768055,226,0 +170743768102,229,0 +170743768150,234,0 +170743768198,236,0 +170743768246,237,0 +170743768294,240,0 +170743768342,241,0 +170743768390,244,0 +170743768438,245,0 +170743768486,243,0 +170743768534,243,0 +170743768581,245,0 +170743768629,224,0 +170743768679,223,0 +170743768726,224,0 +170743768776,230,0 +170743768824,232,0 +170743768873,235,0 +170743768921,237,0 +170743768969,238,0 +170743769017,240,0 +170743769065,241,0 +170743769113,240,0 +170743769163,241,0 +170743769211,241,0 +170743769259,242,0 +170743769307,244,0 +170743769355,247,0 +170743769404,246,0 +170743769452,247,0 +170743769502,243,0 +170743769549,221,0 +170743769597,220,0 +170743769645,220,0 +170743769693,221,0 +170743769741,221,0 +170743769789,224,0 +170743769838,228,0 +170743769888,228,0 +170743769936,231,0 +170743769984,234,0 +170743770031,237,0 +170743770079,236,0 +170743770127,238,0 +170743770175,241,0 +170743770223,241,0 +170743770271,244,0 +170743770319,244,0 +170743770367,245,0 +170743770415,246,0 +170743770462,221,0 +170743770512,219,0 +170743770560,220,0 +170743770609,222,0 +170743770657,223,0 +170743770707,222,0 +170743770755,225,0 +170743770803,229,0 +170743770851,229,0 +170743770900,233,0 +170743770948,237,0 +170743770998,238,0 +170743771046,240,0 +170743771094,242,0 +170743771142,242,0 +170743771191,244,0 +170743771239,245,0 +170743771287,245,0 +170743771335,245,0 +170743771383,221,0 +170743771433,219,0 +170743771480,219,0 +170743771528,221,0 +170743771576,222,0 +170743771624,222,0 +170743771675,222,0 +170743771724,227,0 +170743771772,233,0 +170743771822,232,0 +170743771871,236,0 +170743771919,237,0 +170743771969,239,0 +170743772017,243,0 +170743772065,241,0 +170743772113,243,0 +170743772160,245,0 +170743772208,246,0 +170743772256,244,0 +170743772304,219,0 +170743772352,217,0 +170743772400,218,0 +170743772448,219,0 +170743772498,219,0 +170743772547,220,0 +170743772597,222,0 +170743772645,222,0 +170743772694,224,0 +170743772742,234,0 +170743772790,234,0 +170743772838,234,0 +170743772886,239,0 +170743772934,238,0 +170743772982,239,0 +170743773030,239,0 +170743773078,241,0 +170743773126,244,0 +170743773176,225,0 +170743773225,219,0 +170743773273,221,0 +170743773321,221,0 +170743773369,225,0 +170743773417,228,0 +170743773465,229,0 +170743773513,232,0 +170743773561,235,0 +170743773609,235,0 +170743773657,239,0 +170743773705,242,0 +170743773754,242,0 +170743773804,244,0 +170743773853,245,0 +170743773901,245,0 +170743773949,244,0 +170743773997,246,0 +170743774047,247,0 +170743774095,230,0 +170743774143,219,0 +170743774191,219,0 +170743774239,222,0 +170743774287,226,0 +170743774335,229,0 +170743774383,231,0 +170743774431,233,0 +170743774479,236,0 +170743774527,236,0 +170743774576,239,0 +170743774626,241,0 +170743774674,242,0 +170743774723,244,0 +170743774771,245,0 +170743774819,246,0 +170743774867,246,0 +170743774917,247,0 +170743774964,247,0 +170743775012,243,0 +170743775062,221,0 +170743775111,220,0 +170743775159,221,0 +170743775209,224,0 +170743775257,228,0 +170743775305,229,0 +170743775355,233,0 +170743775404,236,0 +170743775452,238,0 +170743775500,240,0 +170743775549,242,0 +170743775599,244,0 +170743775647,244,0 +170743775696,246,0 +170743775744,248,0 +170743775794,244,0 +170743775842,246,0 +170743775890,245,0 +170743775938,221,0 +170743775987,220,0 +170743776035,220,0 +170743776085,220,0 +170743776133,223,0 +170743776181,224,0 +170743776229,227,0 +170743776278,230,0 +170743776326,232,0 +170743776376,235,0 +170743776426,237,0 +170743776473,242,0 +170743776522,243,0 +170743776569,243,0 +170743776619,245,0 +170743776667,245,0 +170743776716,246,0 +170743776766,251,0 +170743776816,246,0 +170743776863,224,0 +170743776911,219,0 +170743776961,219,0 +170743777010,220,0 +170743777058,221,0 +170743777106,222,0 +170743777154,224,0 +170743777202,223,0 +170743777250,226,0 +170743777298,230,0 +170743777346,232,0 +170743777394,236,0 +170743777444,238,0 +170743777492,240,0 +170743777540,241,0 +170743777588,242,0 +170743777636,243,0 +170743777684,239,0 +170743777732,245,0 +170743777781,224,0 +170743777831,219,0 +170743777879,220,0 +170743777927,221,0 +170743777974,224,0 +170743778022,229,0 +170743778070,231,0 +170743778118,233,0 +170743778166,234,0 +170743778215,239,0 +170743778263,237,0 +170743778311,239,0 +170743778361,244,0 +170743778409,242,0 +170743778457,241,0 +170743778505,246,0 +170743778553,246,0 +170743778601,257,0 +170743778649,243,0 +170743778697,224,0 +170743778745,219,0 +170743778793,219,0 +170743778842,221,0 +170743778890,225,0 +170743778939,227,0 +170743778989,231,0 +170743779037,234,0 +170743779085,235,0 +170743779134,235,0 +170743779182,238,0 +170743779232,241,0 +170743779280,238,0 +170743779329,242,0 +170743779377,243,0 +170743779427,241,0 +170743779475,244,0 +170743779523,246,0 +170743779571,245,0 +170743779619,223,0 +170743779668,218,0 +170743779716,218,0 +170743779766,219,0 +170743779815,221,0 +170743779863,221,0 +170743779911,226,0 +170743779959,229,0 +170743780007,230,0 +170743780057,233,0 +170743780106,237,0 +170743780154,238,0 +170743780202,239,0 +170743780250,240,0 +170743780298,242,0 +170743780346,242,0 +170743780396,244,0 +170743780443,243,0 +170743780493,242,0 +170743780541,221,0 +170743780589,219,0 +170743780637,220,0 +170743780685,220,0 +170743780734,221,0 +170743780782,221,0 +170743780830,223,0 +170743780878,226,0 +170743780926,228,0 +170743780974,231,0 +170743781024,232,0 +170743781071,234,0 +170743781119,237,0 +170743781167,239,0 +170743781216,240,0 +170743781265,242,0 +170743781313,244,0 +170743781361,244,0 +170743781409,243,0 +170743781459,222,0 +170743781507,218,0 +170743781555,218,0 +170743781604,219,0 +170743781652,220,0 +170743781700,220,0 +170743781750,222,0 +170743781798,224,0 +170743781846,227,0 +170743781894,230,0 +170743781942,233,0 +170743781990,236,0 +170743782038,237,0 +170743782087,240,0 +170743782137,240,0 +170743782185,242,0 +170743782233,242,0 +170743782281,244,0 +170743782330,242,0 +170743782380,220,0 +170743782429,217,0 +170743782477,217,0 +170743782525,218,0 +170743782575,219,0 +170743782623,220,0 +170743782672,223,0 +170743782720,221,0 +170743782770,222,0 +170743782818,224,0 +170743782867,228,0 +170743782915,230,0 +170743782963,233,0 +170743783011,237,0 +170743783059,236,0 +170743783107,238,0 +170743783155,239,0 +170743783204,244,0 +170743783254,244,0 +170743783302,218,0 +170743783351,218,0 +170743783401,219,0 +170743783449,220,0 +170743783497,221,0 +170743783546,221,0 +170743783594,224,0 +170743783642,227,0 +170743783691,231,0 +170743783741,235,0 +170743783789,236,0 +170743783839,240,0 +170743783887,240,0 +170743783934,242,0 +170743783982,242,0 +170743784032,244,0 +170743784080,246,0 +170743784128,245,0 +170743784176,244,0 +170743784226,220,0 +170743784274,219,0 +170743784323,219,0 +170743784372,221,0 +170743784420,221,0 +170743784470,227,0 +170743784519,228,0 +170743784569,229,0 +170743784618,229,0 +170743784666,235,0 +170743784714,235,0 +170743784764,238,0 +170743784812,241,0 +170743784860,242,0 +170743784908,242,0 +170743784956,242,0 +170743785004,245,0 +170743785052,246,0 +170743785100,239,0 +170743785149,220,0 +170743785197,219,0 +170743785246,220,0 +170743785296,223,0 +170743785344,228,0 +170743785392,230,0 +170743785440,230,0 +170743785488,233,0 +170743785536,236,0 +170743785584,239,0 +170743785633,241,0 +170743785681,243,0 +170743785729,242,0 +170743785779,244,0 +170743785828,245,0 +170743785876,245,0 +170743785924,248,0 +170743785972,242,0 +170743786022,223,0 +170743786070,218,0 +170743786118,219,0 +170743786166,223,0 +170743786215,219,0 +170743786263,222,0 +170743786313,223,0 +170743786361,226,0 +170743786409,230,0 +170743786457,232,0 +170743786505,235,0 +170743786553,238,0 +170743786601,244,0 +170743786649,240,0 +170743786698,243,0 +170743786748,243,0 +170743786797,243,0 +170743786847,244,0 +170743786895,245,0 +170743786943,223,0 +170743786991,220,0 +170743787039,220,0 +170743787087,223,0 +170743787135,227,0 +170743787183,230,0 +170743787231,233,0 +170743787280,236,0 +170743787328,237,0 +170743787378,240,0 +170743787425,240,0 +170743787473,242,0 +170743787521,242,0 +170743787569,242,0 +170743787619,243,0 +170743787667,247,0 +170743787715,242,0 +170743787763,245,0 +170743787811,244,0 +170743787859,221,0 +170743787907,222,0 +170743787956,226,0 +170743788005,228,0 +170743788053,234,0 +170743788101,236,0 +170743788151,238,0 +170743788199,234,0 +170743788247,239,0 +170743788296,241,0 +170743788344,239,0 +170743788392,242,0 +170743788440,242,0 +170743788488,243,0 +170743788536,243,0 +170743788586,244,0 +170743788634,246,0 +170743788683,245,0 +170743788731,244,0 +170743788779,223,0 +170743788829,219,0 +170743788878,222,0 +170743788928,227,0 +170743788977,237,0 +170743789027,231,0 +170743789076,231,0 +170743789124,233,0 +170743789172,236,0 +170743789222,237,0 +170743789269,238,0 +170743789317,240,0 +170743789367,243,0 +170743789415,244,0 +170743789463,243,0 +170743789511,244,0 +170743789558,244,0 +170743789606,247,0 +170743789656,244,0 +170743789704,223,0 +170743789752,220,0 +170743789801,221,0 +170743789849,227,0 +170743789897,230,0 +170743789945,230,0 +170743789993,233,0 +170743790041,235,0 +170743790089,235,0 +170743790137,238,0 +170743790186,238,0 +170743790234,240,0 +170743790282,242,0 +170743790330,243,0 +170743790378,244,0 +170743790426,246,0 +170743790474,243,0 +170743790522,244,0 +170743790570,246,0 +170743790619,225,0 +170743790667,221,0 +170743790715,222,0 +170743790763,225,0 +170743790811,229,0 +170743790859,231,0 +170743790907,233,0 +170743790955,236,0 +170743791003,238,0 +170743791052,240,0 +170743791100,242,0 +170743791148,244,0 +170743791196,241,0 +170743791244,245,0 +170743791294,245,0 +170743791342,245,0 +170743791390,247,0 +170743791438,247,0 +170743791486,243,0 +170743791534,224,0 +170743791582,220,0 +170743791631,221,0 +170743791679,223,0 +170743791727,228,0 +170743791775,229,0 +170743791825,233,0 +170743791874,233,0 +170743791924,236,0 +170743791971,238,0 +170743792019,241,0 +170743792067,243,0 +170743792115,243,0 +170743792163,244,0 +170743792211,252,0 +170743792259,245,0 +170743792307,250,0 +170743792355,246,0 +170743792403,245,0 +170743792451,222,0 +170743792499,218,0 +170743792547,219,0 +170743792595,221,0 +170743792643,224,0 +170743792692,226,0 +170743792742,229,0 +170743792790,231,0 +170743792838,233,0 +170743792886,236,0 +170743792934,238,0 +170743792982,238,0 +170743793030,242,0 +170743793078,244,0 +170743793126,248,0 +170743793174,244,0 +170743793222,246,0 +170743793271,247,0 +170743793319,244,0 +170743793367,223,0 +170743793415,219,0 +170743793465,219,0 +170743793513,221,0 +170743793561,223,0 +170743793609,225,0 +170743793657,229,0 +170743793705,230,0 +170743793754,232,0 +170743793804,234,0 +170743793852,237,0 +170743793899,239,0 +170743793947,239,0 +170743793995,241,0 +170743794045,240,0 +170743794094,243,0 +170743794142,244,0 +170743794190,246,0 +170743794238,245,0 +170743794288,223,0 +170743794336,219,0 +170743794385,219,0 +170743794433,220,0 +170743794481,222,0 +170743794529,225,0 +170743794577,228,0 +170743794625,232,0 +170743794673,233,0 +170743794721,234,0 +170743794771,238,0 +170743794820,239,0 +170743794868,242,0 +170743794916,241,0 +170743794966,241,0 +170743795013,243,0 +170743795061,243,0 +170743795109,244,0 +170743795157,243,0 +170743795207,222,0 +170743795255,217,0 +170743795303,218,0 +170743795351,219,0 +170743795399,220,0 +170743795448,221,0 +170743795498,223,0 +170743795546,223,0 +170743795595,228,0 +170743795645,230,0 +170743795693,232,0 +170743795741,237,0 +170743795790,238,0 +170743795840,239,0 +170743795888,239,0 +170743795936,240,0 +170743795985,244,0 +170743796033,244,0 +170743796081,244,0 +170743796129,221,0 +170743796179,219,0 +170743796227,219,0 +170743796275,221,0 +170743796324,222,0 +170743796372,224,0 +170743796420,225,0 +170743796470,228,0 +170743796517,230,0 +170743796565,234,0 +170743796613,238,0 +170743796661,239,0 +170743796709,239,0 +170743796757,241,0 +170743796805,244,0 +170743796853,244,0 +170743796901,243,0 +170743796950,245,0 +170743796998,245,0 +170743797046,220,0 +170743797094,219,0 +170743797142,219,0 +170743797190,221,0 +170743797238,222,0 +170743797287,222,0 +170743797335,222,0 +170743797383,226,0 +170743797431,230,0 +170743797479,233,0 +170743797529,235,0 +170743797577,238,0 +170743797625,238,0 +170743797674,242,0 +170743797722,242,0 +170743797770,257,0 +170743797820,246,0 +170743797868,243,0 +170743797917,245,0 +170743797965,222,0 +170743798015,218,0 +170743798063,219,0 +170743798112,220,0 +170743798160,221,0 +170743798208,222,0 +170743798256,222,0 +170743798306,224,0 +170743798354,229,0 +170743798402,233,0 +170743798451,234,0 +170743798499,240,0 +170743798547,239,0 +170743798595,242,0 +170743798645,243,0 +170743798693,245,0 +170743798740,245,0 +170743798788,245,0 +170743798838,245,0 +170743798888,220,0 +170743798936,220,0 +170743798985,221,0 +170743799033,221,0 +170743799081,222,0 +170743799129,224,0 +170743799178,227,0 +170743799228,230,0 +170743799276,233,0 +170743799325,237,0 +170743799373,239,0 +170743799421,239,0 +170743799471,242,0 +170743799520,243,0 +170743799568,245,0 +170743799618,246,0 +170743799667,245,0 +170743799715,245,0 +170743799765,227,0 +170743799813,219,0 +170743799862,219,0 +170743799910,220,0 +170743799960,220,0 +170743800008,222,0 +170743800057,224,0 +170743800105,228,0 +170743800153,231,0 +170743800201,233,0 +170743800249,236,0 +170743800297,240,0 +170743800346,238,0 +170743800396,242,0 +170743800444,241,0 +170743800492,245,0 +170743800540,246,0 +170743800588,246,0 +170743800637,246,0 +170743800685,242,0 +170743800735,219,0 +170743800783,218,0 +170743800832,219,0 +170743800882,219,0 +170743800930,221,0 +170743800979,222,0 +170743801027,222,0 +170743801075,224,0 +170743801123,226,0 +170743801171,230,0 +170743801219,233,0 +170743801269,236,0 +170743801317,240,0 +170743801366,240,0 +170743801414,245,0 +170743801464,243,0 +170743801512,245,0 +170743801560,245,0 +170743801608,221,0 +170743801657,217,0 +170743801705,217,0 +170743801753,217,0 +170743801801,217,0 +170743801851,217,0 +170743801900,218,0 +170743801948,218,0 +170743801996,219,0 +170743802044,220,0 +170743802092,220,0 +170743802140,221,0 +170743802190,224,0 +170743802238,228,0 +170743802286,232,0 +170743802334,235,0 +170743802381,236,0 +170743802429,236,0 +170743802478,244,0 +170743802525,223,0 +170743802573,220,0 +170743802623,221,0 +170743802671,223,0 +170743802719,224,0 +170743802768,227,0 +170743802818,228,0 +170743802868,230,0 +170743802916,231,0 +170743802964,237,0 +170743803012,237,0 +170743803061,241,0 +170743803109,241,0 +170743803159,244,0 +170743803207,244,0 +170743803255,244,0 +170743803303,248,0 +170743803351,245,0 +170743803399,246,0 +170743803448,223,0 +170743803496,219,0 +170743803546,221,0 +170743803594,224,0 +170743803642,229,0 +170743803691,231,0 +170743803739,232,0 +170743803789,233,0 +170743803837,236,0 +170743803886,237,0 +170743803934,239,0 +170743803982,242,0 +170743804030,244,0 +170743804079,245,0 +170743804127,245,0 +170743804177,244,0 +170743804225,246,0 +170743804273,248,0 +170743804323,245,0 +170743804370,224,0 +170743804418,220,0 +170743804466,223,0 +170743804514,227,0 +170743804564,229,0 +170743804612,231,0 +170743804660,231,0 +170743804709,234,0 +170743804759,235,0 +170743804807,238,0 +170743804855,240,0 +170743804903,242,0 +170743804952,242,0 +170743805000,242,0 +170743805048,242,0 +170743805098,245,0 +170743805146,244,0 +170743805195,246,0 +170743805243,241,0 +170743805291,222,0 +170743805341,219,0 +170743805390,220,0 +170743805440,225,0 +170743805488,227,0 +170743805536,228,0 +170743805584,229,0 +170743805632,233,0 +170743805680,235,0 +170743805728,237,0 +170743805776,245,0 +170743805825,241,0 +170743805875,241,0 +170743805923,241,0 +170743805972,242,0 +170743806020,243,0 +170743806068,241,0 +170743806116,244,0 +170743806164,241,0 +170743806214,222,0 +170743806261,221,0 +170743806309,224,0 +170743806357,228,0 +170743806405,229,0 +170743806453,234,0 +170743806503,235,0 +170743806553,239,0 +170743806600,239,0 +170743806648,239,0 +170743806696,239,0 +170743806744,241,0 +170743806792,242,0 +170743806840,244,0 +170743806888,243,0 +170743806936,243,0 +170743806986,244,0 +170743807035,247,0 +170743807083,242,0 +170743807131,226,0 +170743807179,223,0 +170743807227,224,0 +170743807275,227,0 +170743807323,230,0 +170743807373,233,0 +170743807422,236,0 +170743807470,237,0 +170743807518,238,0 +170743807568,241,0 +170743807617,239,0 +170743807665,242,0 +170743807713,242,0 +170743807763,243,0 +170743807812,244,0 +170743807860,242,0 +170743807910,245,0 +170743807959,245,0 +170743808009,244,0 +170743808058,222,0 +170743808106,221,0 +170743808154,221,0 +170743808202,223,0 +170743808250,227,0 +170743808299,228,0 +170743808347,232,0 +170743808397,233,0 +170743808445,235,0 +170743808494,236,0 +170743808544,238,0 +170743808592,239,0 +170743808640,240,0 +170743808688,241,0 +170743808736,244,0 +170743808785,246,0 +170743808835,246,0 +170743808884,246,0 +170743808932,245,0 +170743808980,221,0 +170743809028,219,0 +170743809078,220,0 +170743809126,221,0 +170743809174,222,0 +170743809223,225,0 +170743809271,308,1 +170743809370,235,0 +170743809419,236,0 +170743809468,238,0 +170743809517,240,0 +170743809565,241,0 +170743809613,241,0 +170743809661,241,0 +170743809711,242,0 +170743809759,243,0 +170743809808,244,0 +170743809856,240,0 +170743809904,219,0 +170743809953,219,0 +170743810003,219,0 +170743810051,219,0 +170743810099,220,0 +170743810147,221,0 +170743810195,223,0 +170743810243,223,0 +170743810291,224,0 +170743810340,229,0 +170743810388,234,0 +170743810436,236,0 +170743810486,238,0 +170743810534,239,0 +170743810582,236,0 +170743810630,239,0 +170743810678,239,0 +170743810726,244,0 +170743810773,245,0 +170743810821,219,0 +170743810869,219,0 +170743810917,220,0 +170743810965,220,0 +170743811013,225,0 +170743811061,226,0 +170743811110,231,0 +170743811158,230,0 +170743811206,233,0 +170743811254,236,0 +170743811302,237,0 +170743811350,240,0 +170743811398,237,0 +170743811445,243,0 +170743811493,242,0 +170743811541,245,0 +170743811589,245,0 +170743811639,245,0 +170743811687,236,0 +170743811735,218,0 +170743811783,218,0 +170743811832,219,0 +170743811880,221,0 +170743811929,221,0 +170743811979,224,0 +170743812027,227,0 +170743812075,229,0 +170743812123,230,0 +170743812170,234,0 +170743812218,237,0 +170743812266,239,0 +170743812316,240,0 +170743812364,240,0 +170743812411,240,0 +170743812459,245,0 +170743812509,242,0 +170743812557,245,0 +170743812605,241,0 +170743812653,220,0 +170743812701,220,0 +170743812749,224,0 +170743812797,226,0 +170743812846,228,0 +170743812894,232,0 +170743812942,232,0 +170743812991,237,0 +170743813041,237,0 +170743813089,237,0 +170743813139,242,0 +170743813186,243,0 +170743813236,242,0 +170743813284,243,0 +170743813334,243,0 +170743813382,242,0 +170743813431,243,0 +170743813479,244,0 +170743813527,241,0 +170743813576,219,0 +170743813624,220,0 +170743813672,221,0 +170743813722,226,0 +170743813770,229,0 +170743813819,233,0 +170743813869,231,0 +170743813918,232,0 +170743813966,235,0 +170743814016,239,0 +170743814064,237,0 +170743814113,240,0 +170743814161,241,0 +170743814211,243,0 +170743814260,243,0 +170743814310,243,0 +170743814358,249,0 +170743814406,245,0 +170743814454,222,0 +170743814502,218,0 +170743814550,219,0 +170743814598,221,0 +170743814646,223,0 +170743814694,225,0 +170743814743,230,0 +170743814791,231,0 +170743814839,233,0 +170743814887,234,0 +170743814935,237,0 +170743814983,240,0 +170743815031,240,0 +170743815079,243,0 +170743815127,241,0 +170743815175,241,0 +170743815224,244,0 +170743815272,246,0 +170743815320,244,0 +170743815368,221,0 +170743815418,218,0 +170743815466,218,0 +170743815515,219,0 +170743815563,221,0 +170743815611,221,0 +170743815659,224,0 +170743815709,227,0 +170743815757,231,0 +170743815806,235,0 +170743815854,236,0 +170743815904,237,0 +170743815952,240,0 +170743816000,241,0 +170743816048,242,0 +170743816096,243,0 +170743816144,244,0 +170743816192,244,0 +170743816240,244,0 +170743816288,226,0 +170743816337,218,0 +170743816385,218,0 +170743816433,219,0 +170743816481,220,0 +170743816529,221,0 +170743816577,221,0 +170743816625,222,0 +170743816673,225,0 +170743816722,231,0 +170743816770,233,0 +170743816818,235,0 +170743816868,236,0 +170743816916,239,0 +170743816965,240,0 +170743817013,242,0 +170743817061,242,0 +170743817111,243,0 +170743817159,245,0 +170743817207,224,0 +170743817254,218,0 +170743817304,219,0 +170743817352,218,0 +170743817400,220,0 +170743817449,222,0 +170743817499,222,0 +170743817547,223,0 +170743817596,226,0 +170743817646,230,0 +170743817694,232,0 +170743817742,235,0 +170743817790,239,0 +170743817839,240,0 +170743817887,242,0 +170743817935,242,0 +170743817983,245,0 +170743818031,245,0 +170743818079,244,0 +170743818127,221,0 +170743818177,218,0 +170743818225,218,0 +170743818274,219,0 +170743818323,219,0 +170743818371,219,0 +170743818419,221,0 +170743818467,220,0 +170743818515,223,0 +170743818563,227,0 +170743818611,231,0 +170743818659,235,0 +170743818707,236,0 +170743818755,238,0 +170743818802,239,0 +170743818850,241,0 +170743818898,246,0 +170743818946,242,0 +170743818994,245,0 +170743819042,222,0 +170743819090,218,0 +170743819139,217,0 +170743819189,218,0 +170743819237,218,0 +170743819286,219,0 +170743819334,220,0 +170743819384,221,0 +170743819432,222,0 +170743819480,223,0 +170743819528,223,0 +170743819575,226,0 +170743819623,230,0 +170743819671,234,0 +170743819721,232,0 +170743819769,238,0 +170743819817,241,0 +170743819865,241,0 +170743819913,244,0 +170743819962,222,0 +170743820010,220,0 +170743820058,220,0 +170743820106,222,0 +170743820154,223,0 +170743820204,223,0 +170743820252,226,0 +170743820300,231,0 +170743820348,231,0 +170743820397,232,0 +170743820445,234,0 +170743820493,238,0 +170743820541,241,0 +170743820589,241,0 +170743820637,242,0 +170743820685,245,0 +170743820733,244,0 +170743820781,244,0 +170743820829,245,0 +170743820877,237,0 +170743820926,219,0 +170743820974,219,0 +170743821022,220,0 +170743821070,224,0 +170743821118,228,0 +170743821168,229,0 +170743821217,232,0 +170743821267,233,0 +170743821315,234,0 +170743821363,240,0 +170743821411,241,0 +170743821460,241,0 +170743821508,242,0 +170743821556,243,0 +170743821604,244,0 +170743821654,245,0 +170743821703,245,0 +170743821751,243,0 +170743821799,221,0 +170743821847,221,0 +170743821895,223,0 +170743821943,226,0 +170743821991,228,0 +170743822039,231,0 +170743822087,231,0 +170743822135,237,0 +170743822185,238,0 +170743822232,240,0 +170743822280,242,0 +170743822328,242,0 +170743822376,244,0 +170743822424,243,0 +170743822474,245,0 +170743822522,245,0 +170743822570,245,0 +170743822618,244,0 +170743822667,243,0 +170743822717,222,0 +170743822765,223,0 +170743822814,226,0 +170743822864,229,0 +170743822913,233,0 +170743822961,236,0 +170743823009,236,0 +170743823057,239,0 +170743823105,237,0 +170743823153,241,0 +170743823201,241,0 +170743823249,242,0 +170743823299,245,0 +170743823348,243,0 +170743823396,244,0 +170743823446,245,0 +170743823494,242,0 +170743823542,248,0 +170743823590,244,0 +170743823638,223,0 +170743823686,221,0 +170743823734,222,0 +170743823782,226,0 +170743823830,228,0 +170743823878,231,0 +170743823927,233,0 +170743823975,237,0 +170743824025,237,0 +170743824074,238,0 +170743824124,239,0 +170743824172,241,0 +170743824220,242,0 +170743824268,244,0 +170743824316,245,0 +170743824364,245,0 +170743824413,246,0 +170743824463,245,0 +170743824511,245,0 +170743824559,223,0 +170743824608,220,0 +170743824656,220,0 +170743824704,223,0 +170743824752,228,0 +170743824800,232,0 +170743824850,234,0 +170743824897,236,0 +170743824947,237,0 +170743824995,242,0 +170743825044,240,0 +170743825092,244,0 +170743825140,241,0 +170743825188,244,0 +170743825236,243,0 +170743825284,245,0 +170743825334,245,0 +170743825382,246,0 +170743825430,243,0 +170743825479,223,0 +170743825527,220,0 +170743825577,222,0 +170743825625,228,0 +170743825674,230,0 +170743825722,233,0 +170743825770,235,0 +170743825820,238,0 +170743825868,237,0 +170743825917,241,0 +170743825965,242,0 +170743826013,242,0 +170743826061,242,0 +170743826109,244,0 +170743826157,242,0 +170743826206,243,0 +170743826254,244,0 +170743826302,247,0 +170743826351,245,0 +170743826399,223,0 +170743826447,220,0 +170743826495,222,0 +170743826543,228,0 +170743826591,231,0 +170743826639,234,0 +170743826687,237,0 +170743826735,238,0 +170743826782,236,0 +170743826830,239,0 +170743826878,241,0 +170743826926,241,0 +170743826974,241,0 +170743827022,243,0 +170743827070,244,0 +170743827120,245,0 +170743827169,246,0 +170743827217,247,0 +170743827265,245,0 +170743827313,222,0 +170743827362,219,0 +170743827412,220,0 +170743827461,220,0 +170743827509,225,0 +170743827559,228,0 +170743827607,230,0 +170743827656,233,0 +170743827704,235,0 +170743827754,236,0 +170743827802,237,0 +170743827850,241,0 +170743827898,241,0 +170743827946,243,0 +170743827994,241,0 +170743828042,245,0 +170743828091,247,0 +170743828139,244,0 +170743828187,242,0 +170743828235,220,0 +170743828283,217,0 +170743828331,218,0 +170743828379,219,0 +170743828427,220,0 +170743828475,221,0 +170743828523,223,0 +170743828571,226,0 +170743828619,228,0 +170743828668,231,0 +170743828716,234,0 +170743828764,237,0 +170743828814,238,0 +170743828862,237,0 +170743828911,240,0 +170743828959,240,0 +170743829007,241,0 +170743829055,242,0 +170743829103,243,0 +170743829151,220,0 +170743829199,218,0 +170743829248,218,0 +170743829298,219,0 +170743829346,220,0 +170743829394,220,0 +170743829442,222,0 +170743829489,225,0 +170743829537,228,0 +170743829585,231,0 +170743829633,234,0 +170743829681,235,0 +170743829729,238,0 +170743829778,240,0 +170743829826,238,0 +170743829874,240,0 +170743829922,241,0 +170743829970,242,0 +170743830018,242,0 +170743830068,220,0 +170743830117,219,0 +170743830165,219,0 +170743830215,220,0 +170743830264,221,0 +170743830312,222,0 +170743830360,224,0 +170743830408,228,0 +170743830458,230,0 +170743830506,234,0 +170743830553,235,0 +170743830601,235,0 +170743830649,240,0 +170743830697,239,0 +170743830745,241,0 +170743830795,243,0 +170743830843,242,0 +170743830892,243,0 +170743830942,243,0 +170743830990,220,0 +170743831038,218,0 +170743831086,219,0 +170743831133,220,0 +170743831181,221,0 +170743831229,221,0 +170743831277,222,0 +170743831327,222,0 +170743831374,227,0 +170743831422,231,0 +170743831470,232,0 +170743831518,235,0 +170743831568,236,0 +170743831616,238,0 +170743831664,240,0 +170743831714,241,0 +170743831763,242,0 +170743831811,243,0 +170743831861,243,0 +170743831910,218,0 +170743831958,218,0 +170743832008,219,0 +170743832057,221,0 +170743832105,221,0 +170743832153,223,0 +170743832201,222,0 +170743832250,226,0 +170743832298,230,0 +170743832346,234,0 +170743832394,235,0 +170743832444,239,0 +170743832492,241,0 +170743832541,241,0 +170743832589,242,0 +170743832637,244,0 +170743832685,242,0 +170743832733,245,0 +170743832781,243,0 +170743832829,423,0 +170743832879,217,0 +170743832927,219,0 +170743832976,219,0 +170743833024,220,0 +170743833074,221,0 +170743833122,223,0 +170743833170,227,0 +170743833218,231,0 +170743833266,234,0 +170743833315,234,0 +170743833365,236,0 +170743833413,239,0 +170743833461,241,0 +170743833509,242,0 +170743833557,241,0 +170743833605,243,0 +170743833654,243,0 +170743833702,241,0 +170743833750,218,0 +170743833798,218,0 +170743833846,220,0 +170743833895,219,0 +170743833945,222,0 +170743833994,221,0 +170743834042,222,0 +170743834092,222,0 +170743834140,225,0 +170743834188,227,0 +170743834236,231,0 +170743834286,234,0 +170743834333,238,0 +170743834381,236,0 +170743834429,239,0 +170743834477,242,0 +170743834525,242,0 +170743834575,245,0 +170743834623,235,0 +170743834671,219,0 +170743834719,219,0 +170743834767,221,0 +170743834816,221,0 +170743834864,225,0 +170743834912,227,0 +170743834960,229,0 +170743835008,232,0 +170743835056,236,0 +170743835106,237,0 +170743835154,238,0 +170743835202,239,0 +170743835250,240,0 +170743835299,243,0 +170743835347,244,0 +170743835395,243,0 +170743835443,244,0 +170743835491,244,0 +170743835539,224,0 +170743835587,221,0 +170743835635,220,0 +170743835683,223,0 +170743835731,238,0 +170743835779,229,0 +170743835826,231,0 +170743835874,233,0 +170743835924,235,0 +170743835974,236,0 +170743836022,238,0 +170743836069,242,0 +170743836118,241,0 +170743836166,242,0 +170743836213,243,0 +170743836261,241,0 +170743836311,243,0 +170743836360,245,0 +170743836410,243,0 +170743836458,233,0 +170743836507,220,0 +170743836555,223,0 +170743836603,227,0 +170743836651,230,0 +170743836699,232,0 +170743836747,235,0 +170743836795,237,0 +170743836843,236,0 +170743836893,240,0 +170743836941,242,0 +170743836988,241,0 +170743837036,241,0 +170743837086,241,0 +170743837134,245,0 +170743837182,245,0 +170743837229,245,0 +170743837277,245,0 +170743837325,244,0 +170743837373,224,0 +170743837421,220,0 +170743837469,224,0 +170743837517,228,0 +170743837565,232,0 +170743837613,232,0 +170743837661,240,0 +170743837709,237,0 +170743837757,238,0 +170743837805,240,0 +170743837852,241,0 +170743837902,243,0 +170743837950,243,0 +170743837999,244,0 +170743838047,242,0 +170743838095,245,0 +170743838143,243,0 +170743838191,245,0 +170743838239,243,0 +170743838287,240,0 +170743838335,221,0 +170743838384,222,0 +170743838432,225,0 +170743838480,229,0 +170743838528,231,0 +170743838576,232,0 +170743838624,235,0 +170743838672,235,0 +170743838720,236,0 +170743838768,238,0 +170743838816,241,0 +170743838864,241,0 +170743838914,243,0 +170743838963,244,0 +170743839013,243,0 +170743839062,244,0 +170743839110,244,0 +170743839160,242,0 +170743839207,241,0 +170743839257,220,0 +170743839307,221,0 +170743839355,222,0 +170743839403,225,0 +170743839452,229,0 +170743839500,231,0 +170743839548,233,0 +170743839598,233,0 +170743839646,235,0 +170743839694,238,0 +170743839741,240,0 +170743839789,241,0 +170743839837,243,0 +170743839885,245,0 +170743839933,244,0 +170743839981,243,0 +170743840029,236,0 +170743840077,243,0 +170743840125,243,0 +170743840173,219,0 +170743840221,219,0 +170743840269,220,0 +170743840317,223,0 +170743840365,227,0 +170743840413,229,0 +170743840460,230,0 +170743840508,233,0 +170743840556,234,0 +170743840604,238,0 +170743840652,241,0 +170743840700,241,0 +170743840749,242,0 +170743840797,243,0 +170743840845,243,0 +170743840895,244,0 +170743840943,244,0 +170743840993,243,0 +170743841041,242,0 +170743841089,218,0 +170743841137,220,0 +170743841186,258,0 +170743841234,224,0 +170743841282,227,0 +170743841332,228,0 +170743841379,230,0 +170743841429,232,0 +170743841478,234,0 +170743841526,240,0 +170743841576,239,0 +170743841624,241,0 +170743841672,243,0 +170743841720,242,0 +170743841768,244,0 +170743841816,244,0 +170743841864,245,0 +170743841912,243,0 +170743841960,244,0 +170743842008,220,0 +170743842056,220,0 +170743842105,221,0 +170743842155,225,0 +170743842203,229,0 +170743842251,230,0 +170743842299,231,0 +170743842347,232,0 +170743842395,236,0 +170743842443,238,0 +170743842491,239,0 +170743842538,242,0 +170743842586,243,0 +170743842634,244,0 +170743842684,243,0 +170743842733,245,0 +170743842781,245,0 +170743842829,243,0 +170743842879,242,0 +170743842928,220,0 +170743842976,220,0 +170743843026,223,0 +170743843074,227,0 +170743843121,228,0 +170743843171,234,0 +170743843219,236,0 +170743843268,237,0 +170743843318,239,0 +170743843366,239,0 +170743843414,241,0 +170743843461,243,0 +170743843511,244,0 +170743843559,243,0 +170743843607,245,0 +170743843655,245,0 +170743843702,244,0 +170743843750,245,0 +170743843798,229,0 +170743843846,218,0 +170743843894,220,0 +170743843942,222,0 +170743843990,225,0 +170743844038,229,0 +170743844086,232,0 +170743844133,233,0 +170743844181,234,0 +170743844229,238,0 +170743844277,239,0 +170743844325,243,0 +170743844373,242,0 +170743844421,242,0 +170743844470,244,0 +170743844518,242,0 +170743844566,244,0 +170743844614,245,0 +170743844662,245,0 +170743844711,241,0 +170743844761,220,0 +170743844809,221,0 +170743844857,227,0 +170743844906,228,0 +170743844954,232,0 +170743845002,234,0 +170743845050,235,0 +170743845100,237,0 +170743845148,238,0 +170743845195,240,0 +170743845244,240,0 +170743845291,244,0 +170743845341,243,0 +170743845389,244,0 +170743845437,243,0 +170743845485,244,0 +170743845534,243,0 +170743845582,244,0 +170743845632,243,0 +170743845681,219,0 +170743845729,219,0 +170743845777,221,0 +170743845825,224,0 +170743845873,228,0 +170743845921,229,0 +170743845971,232,0 +170743846020,236,0 +170743846070,235,0 +170743846119,237,0 +170743846169,239,0 +170743846217,239,0 +170743846265,243,0 +170743846313,240,0 +170743846361,242,0 +170743846409,251,0 +170743846457,242,0 +170743846504,245,0 +170743846552,238,0 +170743846600,218,0 +170743846648,218,0 +170743846698,218,0 +170743846746,221,0 +170743846795,225,0 +170743846843,229,0 +170743846891,231,0 +170743846939,234,0 +170743846987,234,0 +170743847035,240,0 +170743847083,238,0 +170743847133,241,0 +170743847181,241,0 +170743847229,242,0 +170743847277,242,0 +170743847325,242,0 +170743847374,244,0 +170743847422,245,0 +170743847472,222,0 +170743847520,217,0 +170743847569,216,0 +170743847617,217,0 +170743847665,218,0 +170743847713,219,0 +170743847763,219,0 +170743847811,220,0 +170743847858,223,0 +170743847906,227,0 +170743847954,232,0 +170743848002,233,0 +170743848050,234,0 +170743848098,238,0 +170743848146,237,0 +170743848194,237,0 +170743848242,240,0 +170743848292,241,0 +170743848340,242,0 +170743848388,239,0 +170743848436,220,0 +170743848484,220,0 +170743848533,221,0 +170743848583,224,0 +170743848631,226,0 +170743848679,230,0 +170743848728,233,0 +170743848776,234,0 +170743848824,235,0 +170743848872,239,0 +170743848920,239,0 +170743848968,241,0 +170743849016,242,0 +170743849064,240,0 +170743849114,243,0 +170743849162,242,0 +170743849210,243,0 +170743849259,244,0 +170743849307,233,0 +170743849357,218,0 +170743849405,218,0 +170743849453,218,0 +170743849501,220,0 +170743849549,221,0 +170743849597,225,0 +170743849645,229,0 +170743849693,232,0 +170743849741,231,0 +170743849789,234,0 +170743849837,238,0 +170743849885,239,0 +170743849933,239,0 +170743849981,240,0 +170743850030,242,0 +170743850078,242,0 +170743850126,243,0 +170743850174,245,0 +170743850222,221,0 +170743850270,219,0 +170743850320,219,0 +170743850368,217,0 +170743850416,217,0 +170743850464,218,0 +170743850513,219,0 +170743850561,220,0 +170743850609,220,0 +170743850659,225,0 +170743850707,228,0 +170743850755,231,0 +170743850803,231,0 +170743850851,233,0 +170743850899,236,0 +170743850948,240,0 +170743850998,240,0 +170743851046,241,0 +170743851094,244,0 +170743851142,226,0 +170743851191,219,0 +170743851239,220,0 +170743851287,222,0 +170743851335,221,0 +170743851385,223,0 +170743851433,226,0 +170743851481,228,0 +170743851529,231,0 +170743851577,233,0 +170743851625,233,0 +170743851673,235,0 +170743851721,236,0 +170743851770,243,0 +170743851818,242,0 +170743851866,244,0 +170743851914,244,0 +170743851962,244,0 +170743852010,246,0 +170743852058,241,0 +170743852106,219,0 +170743852155,219,0 +170743852205,220,0 +170743852253,221,0 +170743852301,226,0 +170743852350,225,0 +170743852400,229,0 +170743852448,228,0 +170743852496,231,0 +170743852545,236,0 +170743852595,237,0 +170743852643,238,0 +170743852691,240,0 +170743852739,241,0 +170743852788,242,0 +170743852838,242,0 +170743852886,242,0 +170743852935,245,0 +170743852983,223,0 +170743853031,219,0 +170743853079,219,0 +170743853127,221,0 +170743853175,224,0 +170743853223,226,0 +170743853271,226,0 +170743853319,228,0 +170743853369,232,0 +170743853417,234,0 +170743853464,235,0 +170743853512,239,0 +170743853562,239,0 +170743853611,241,0 +170743853659,240,0 +170743853707,240,0 +170743853757,239,0 +170743853805,240,0 +170743853854,244,0 +170743853902,223,0 +170743853950,219,0 +170743853998,222,0 +170743854046,225,0 +170743854096,227,0 +170743854145,230,0 +170743854195,231,0 +170743854244,234,0 +170743854292,234,0 +170743854340,238,0 +170743854390,239,0 +170743854438,239,0 +170743854486,239,0 +170743854535,240,0 +170743854583,242,0 +170743854631,241,0 +170743854681,243,0 +170743854729,243,0 +170743854776,241,0 +170743854824,221,0 +170743854872,220,0 +170743854922,221,0 +170743854970,224,0 +170743855019,228,0 +170743855067,230,0 +170743855115,230,0 +170743855163,233,0 +170743855211,234,0 +170743855259,236,0 +170743855307,238,0 +170743855355,239,0 +170743855403,242,0 +170743855451,241,0 +170743855500,241,0 +170743855548,244,0 +170743855598,242,0 +170743855648,244,0 +170743855695,241,0 +170743855743,223,0 +170743855791,219,0 +170743855839,219,0 +170743855887,221,0 +170743855935,224,0 +170743855983,227,0 +170743856031,228,0 +170743856079,229,0 +170743856127,231,0 +170743856177,234,0 +170743856226,238,0 +170743856274,239,0 +170743856322,240,0 +170743856370,241,0 +170743856418,242,0 +170743856466,242,0 +170743856513,241,0 +170743856561,244,0 +170743856609,243,0 +170743856659,223,0 +170743856707,218,0 +170743856755,219,0 +170743856803,220,0 +170743856852,222,0 +170743856900,223,0 +170743856948,226,0 +170743856998,229,0 +170743857046,232,0 +170743857093,234,0 +170743857141,236,0 +170743857189,239,0 +170743857239,241,0 +170743857287,241,0 +170743857334,241,0 +170743857382,244,0 +170743857430,242,0 +170743857478,244,0 +170743857526,242,0 +170743857574,223,0 +170743857622,218,0 +170743857670,219,0 +170743857719,220,0 +170743857767,220,0 +170743857815,223,0 +170743857863,225,0 +170743857912,229,0 +170743857962,232,0 +170743858011,235,0 +170743858059,236,0 +170743858107,238,0 +170743858155,240,0 +170743858203,238,0 +170743858251,240,0 +170743858299,242,0 +170743858347,242,0 +170743858395,246,0 +170743858443,242,0 +170743858493,222,0 +170743858541,218,0 +170743858590,219,0 +170743858640,220,0 +170743858687,221,0 +170743858735,222,0 +170743858783,224,0 +170743858831,226,0 +170743858879,230,0 +170743858929,232,0 +170743858978,228,0 +170743859026,238,0 +170743859074,239,0 +170743859122,241,0 +170743859170,240,0 +170743859220,242,0 +170743859267,243,0 +170743859315,245,0 +170743859363,244,0 +170743859413,223,0 +170743859461,219,0 +170743859510,219,0 +170743859558,221,0 +170743859606,225,0 +170743859654,227,0 +170743859702,229,0 +170743859752,230,0 +170743859800,231,0 +170743859848,234,0 +170743859896,235,0 +170743859944,241,0 +170743859992,241,0 +170743860040,242,0 +170743860088,242,0 +170743860136,244,0 +170743860185,244,0 +170743860233,245,0 +170743860281,243,0 +170743860331,222,0 +170743860380,218,0 +170743860428,220,0 +170743860476,223,0 +170743860526,227,0 +170743860574,229,0 +170743860622,228,0 +170743860669,230,0 +170743860717,234,0 +170743860765,235,0 +170743860813,238,0 +170743860861,239,0 +170743860909,239,0 +170743860957,240,0 +170743861005,243,0 +170743861053,242,0 +170743861102,244,0 +170743861152,244,0 +170743861201,239,0 +170743861249,223,0 +170743861297,219,0 +170743861345,220,0 +170743861393,224,0 +170743861443,227,0 +170743861491,229,0 +170743861539,230,0 +170743861587,232,0 +170743861635,238,0 +170743861683,239,0 +170743861731,241,0 +170743861779,240,0 +170743861828,242,0 +170743861876,241,0 +170743861924,242,0 +170743861972,244,0 +170743862021,245,0 +170743862069,246,0 +170743862117,243,0 +170743862165,223,0 +170743862213,220,0 +170743862261,221,0 +170743862309,222,0 +170743862357,225,0 +170743862405,226,0 +170743862452,230,0 +170743862500,232,0 +170743862550,237,0 +170743862598,237,0 +170743862646,238,0 +170743862694,240,0 +170743862743,242,0 +170743862791,241,0 +170743862839,242,0 +170743862887,245,0 +170743862936,246,0 +170743862984,244,0 +170743863032,242,0 +170743863082,223,0 +170743863130,222,0 +170743863178,223,0 +170743863227,227,0 +170743863275,230,0 +170743863323,231,0 +170743863373,237,0 +170743863421,236,0 +170743863469,238,0 +170743863517,240,0 +170743863565,244,0 +170743863614,242,0 +170743863662,242,0 +170743863710,244,0 +170743863758,243,0 +170743863806,242,0 +170743863854,245,0 +170743863904,242,0 +170743863951,241,0 +170743863999,223,0 +170743864047,219,0 +170743864095,221,0 +170743864143,226,0 +170743864193,232,0 +170743864241,231,0 +170743864289,233,0 +170743864337,236,0 +170743864385,238,0 +170743864433,245,0 +170743864481,238,0 +170743864529,240,0 +170743864577,240,0 +170743864626,242,0 +170743864674,243,0 +170743864722,249,0 +170743864772,244,0 +170743864820,245,0 +170743864869,244,0 +170743864917,222,0 +170743864965,217,0 +170743865013,218,0 +170743865061,219,0 +170743865109,219,0 +170743865158,220,0 +170743865208,221,0 +170743865258,225,0 +170743865305,229,0 +170743865353,231,0 +170743865401,233,0 +170743865449,236,0 +170743865497,240,0 +170743865547,240,0 +170743865595,240,0 +170743865644,242,0 +170743865692,245,0 +170743865740,242,0 +170743865788,243,0 +170743865836,223,0 +170743865884,219,0 +170743865932,220,0 +170743865980,221,0 +170743866028,221,0 +170743866078,224,0 +170743866127,225,0 +170743866175,228,0 +170743866223,231,0 +170743866271,234,0 +170743866319,236,0 +170743866367,237,0 +170743866415,240,0 +170743866464,242,0 +170743866514,243,0 +170743866562,243,0 +170743866610,243,0 +170743866658,245,0 +170743866706,243,0 +170743866754,224,0 +170743866802,221,0 +170743866850,221,0 +170743866899,225,0 +170743866949,228,0 +170743866998,229,0 +170743867046,232,0 +170743867094,229,0 +170743867144,233,0 +170743867192,234,0 +170743867240,237,0 +170743867289,237,0 +170743867339,239,0 +170743867386,241,0 +170743867434,240,0 +170743867482,242,0 +170743867530,243,0 +170743867578,244,0 +170743867626,243,0 +170743867674,224,0 +170743867722,220,0 +170743867772,222,0 +170743867820,231,0 +170743867868,229,0 +170743867916,231,0 +170743867964,233,0 +170743868012,235,0 +170743868061,233,0 +170743868109,238,0 +170743868159,237,0 +170743868207,238,0 +170743868256,252,0 +170743868306,239,0 +170743868354,242,0 +170743868403,244,0 +170743868451,244,0 +170743868499,243,0 +170743868548,242,0 +170743868596,221,0 +170743868644,222,0 +170743868694,225,0 +170743868742,228,0 +170743868790,230,0 +170743868838,232,0 +170743868886,234,0 +170743868934,233,0 +170743868982,235,0 +170743869030,236,0 +170743869078,239,0 +170743869126,243,0 +170743869173,242,0 +170743869223,244,0 +170743869271,243,0 +170743869320,243,0 +170743869368,244,0 +170743869416,243,0 +170743869466,242,0 +170743869516,221,0 +170743869563,221,0 +170743869611,225,0 +170743869661,229,0 +170743869709,231,0 +170743869757,231,0 +170743869806,231,0 +170743869856,235,0 +170743869904,235,0 +170743869953,237,0 +170743870001,241,0 +170743870049,242,0 +170743870099,238,0 +170743870147,242,0 +170743870195,242,0 +170743870244,245,0 +170743870292,243,0 +170743870340,244,0 +170743870388,243,0 +170743870436,220,0 +170743870484,220,0 +170743870532,223,0 +170743870582,227,0 +170743870630,229,0 +170743870678,229,0 +170743870727,229,0 +170743870775,230,0 +170743870825,234,0 +170743870874,235,0 +170743870924,237,0 +170743870973,240,0 +170743871023,241,0 +170743871071,241,0 +170743871119,242,0 +170743871168,244,0 +170743871216,245,0 +170743871266,244,0 +170743871314,242,0 +170743871363,218,0 +170743871411,219,0 +170743871459,220,0 +170743871509,224,0 +170743871558,227,0 +170743871606,228,0 +170743871654,231,0 +170743871702,234,0 +170743871750,235,0 +170743871798,239,0 +170743871846,238,0 +170743871894,240,0 +170743871942,242,0 +170743871990,241,0 +170743872039,244,0 +170743872087,243,0 +170743872137,247,0 +170743872186,243,0 +170743872234,222,0 +170743872282,217,0 +170743872330,218,0 +170743872380,219,0 +170743872428,220,0 +170743872476,223,0 +170743872524,225,0 +170743872572,228,0 +170743872620,228,0 +170743872669,232,0 +170743872717,234,0 +170743872765,238,0 +170743872813,238,0 +170743872861,239,0 +170743872909,240,0 +170743872957,241,0 +170743873005,242,0 +170743873055,243,0 +170743873103,243,0 +170743873150,230,0 +170743873198,220,0 +170743873246,220,0 +170743873296,221,0 +170743873344,221,0 +170743873392,224,0 +170743873440,227,0 +170743873490,230,0 +170743873537,231,0 +170743873585,232,0 +170743873633,234,0 +170743873683,237,0 +170743873731,236,0 +170743873779,237,0 +170743873829,239,0 +170743873878,241,0 +170743873928,243,0 +170743873977,243,0 +170743874027,243,0 +170743874076,223,0 +170743874124,219,0 +170743874174,219,0 +170743874223,220,0 +170743874271,221,0 +170743874319,225,0 +170743874367,228,0 +170743874415,231,0 +170743874463,229,0 +170743874513,232,0 +170743874561,235,0 +170743874608,236,0 +170743874656,238,0 +170743874704,241,0 +170743874752,241,0 +170743874802,242,0 +170743874850,244,0 +170743874898,246,0 +170743874946,244,0 +170743874994,220,0 +170743875042,218,0 +170743875090,218,0 +170743875140,219,0 +170743875189,220,0 +170743875237,221,0 +170743875285,224,0 +170743875335,227,0 +170743875383,229,0 +170743875431,232,0 +170743875480,234,0 +170743875530,237,0 +170743875578,239,0 +170743875628,240,0 +170743875677,242,0 +170743875725,243,0 +170743875773,244,0 +170743875821,245,0 +170743875869,244,0 +170743875919,223,0 +170743875968,218,0 +170743876016,219,0 +170743876066,219,0 +170743876115,220,0 +170743876163,220,0 +170743876211,221,0 +170743876259,223,0 +170743876309,226,0 +170743876357,230,0 +170743876406,232,0 +170743876454,233,0 +170743876502,237,0 +170743876550,238,0 +170743876598,239,0 +170743876646,239,0 +170743876694,240,0 +170743876742,241,0 +170743876790,242,0 +170743876838,222,0 +170743876886,218,0 +170743876934,219,0 +170743876982,220,0 +170743877031,221,0 +170743877079,221,0 +170743877127,221,0 +170743877175,223,0 +170743877223,226,0 +170743877271,228,0 +170743877319,232,0 +170743877367,236,0 +170743877415,235,0 +170743877463,236,0 +170743877511,238,0 +170743877559,237,0 +170743877608,240,0 +170743877656,241,0 +170743877704,240,0 +170743877754,222,0 +170743877802,217,0 +170743877850,217,0 +170743877898,219,0 +170743877945,220,0 +170743877993,220,0 +170743878043,222,0 +170743878093,224,0 +170743878141,226,0 +170743878190,228,0 +170743878238,233,0 +170743878286,233,0 +170743878336,236,0 +170743878383,237,0 +170743878431,239,0 +170743878479,241,0 +170743878527,242,0 +170743878575,242,0 +170743878625,241,0 +170743878673,221,0 +170743878721,217,0 +170743878769,218,0 +170743878818,222,0 +170743878868,220,0 +170743878916,221,0 +170743878964,221,0 +170743879012,222,0 +170743879061,226,0 +170743879111,229,0 +170743879159,235,0 +170743879207,233,0 +170743879255,235,0 +170743879303,238,0 +170743879351,237,0 +170743879399,237,0 +170743879447,241,0 +170743879495,241,0 +170743879544,241,0 +170743879594,220,0 +170743879643,218,0 +170743879691,218,0 +170743879739,220,0 +170743879787,223,0 +170743879835,225,0 +170743879883,227,0 +170743879931,228,0 +170743879979,231,0 +170743880027,234,0 +170743880076,236,0 +170743880124,238,0 +170743880172,240,0 +170743880220,241,0 +170743880270,241,0 +170743880319,243,0 +170743880367,243,0 +170743880415,246,0 +170743880463,243,0 +170743880511,221,0 +170743880559,217,0 +170743880607,218,0 +170743880657,219,0 +170743880706,220,0 +170743880754,222,0 +170743880802,225,0 +170743880850,229,0 +170743880900,230,0 +170743880949,232,0 +170743880997,235,0 +170743881045,235,0 +170743881095,246,0 +170743881143,240,0 +170743881191,240,0 +170743881240,242,0 +170743881290,243,0 +170743881338,245,0 +170743881386,242,0 +170743881434,221,0 +170743881483,219,0 +170743881531,219,0 +170743881579,220,0 +170743881629,221,0 +170743881677,222,0 +170743881725,226,0 +170743881773,229,0 +170743881821,232,0 +170743881869,232,0 +170743881918,237,0 +170743881966,239,0 +170743882014,240,0 +170743882062,240,0 +170743882110,243,0 +170743882158,243,0 +170743882207,244,0 +170743882255,244,0 +170743882303,240,0 +170743882353,219,0 +170743882402,219,0 +170743882450,225,0 +170743882498,226,0 +170743882546,229,0 +170743882594,232,0 +170743882642,232,0 +170743882692,235,0 +170743882740,238,0 +170743882788,238,0 +170743882837,240,0 +170743882885,242,0 +170743882934,241,0 +170743882982,240,0 +170743883030,244,0 +170743883078,246,0 +170743883128,244,0 +170743883176,242,0 +170743883224,233,0 +170743883272,221,0 +170743883320,225,0 +170743883368,228,0 +170743883417,231,0 +170743883467,234,0 +170743883515,235,0 +170743883563,236,0 +170743883611,237,0 +170743883659,236,0 +170743883707,239,0 +170743883755,240,0 +170743883803,241,0 +170743883852,243,0 +170743883900,242,0 +170743883948,241,0 +170743883996,243,0 +170743884046,244,0 +170743884094,245,0 +170743884142,243,0 +170743884190,228,0 +170743884239,229,0 +170743884287,231,0 +170743884335,233,0 +170743884383,235,0 +170743884431,237,0 +170743884479,239,0 +170743884528,239,0 +170743884576,239,0 +170743884624,241,0 +170743884672,242,0 +170743884720,242,0 +170743884768,242,0 +170743884816,244,0 +170743884864,243,0 +170743884914,243,0 +170743884962,244,0 +170743885010,243,0 +170743885058,241,0 +170743885106,226,0 +170743885154,228,0 +170743885202,232,0 +170743885250,235,0 +170743885298,235,0 +170743885346,238,0 +170743885393,240,0 +170743885443,241,0 +170743885491,239,0 +170743885539,240,0 +170743885587,240,0 +170743885636,240,0 +170743885684,239,0 +170743885732,237,0 +170743885780,244,0 +170743885828,243,0 +170743885876,245,0 +170743885926,243,0 +170743885974,242,0 +170743886022,223,0 +170743886070,224,0 +170743886118,226,0 +170743886167,230,0 +170743886215,232,0 +170743886265,236,0 +170743886313,236,0 +170743886361,239,0 +170743886409,239,0 +170743886457,239,0 +170743886506,242,0 +170743886554,240,0 +170743886602,244,0 +170743886650,243,0 +170743886698,244,0 +170743886748,244,0 +170743886796,243,0 +170743886844,244,0 +170743886893,241,0 +170743886943,220,0 +170743886992,220,0 +170743887040,223,0 +170743887090,227,0 +170743887138,230,0 +170743887187,233,0 +170743887235,232,0 +170743887285,235,0 +170743887333,238,0 +170743887381,238,0 +170743887430,238,0 +170743887478,240,0 +170743887528,241,0 +170743887576,243,0 +170743887624,243,0 +170743887673,243,0 +170743887721,245,0 +170743887769,243,0 +170743887819,227,0 +170743887867,218,0 +170743887916,218,0 +170743887966,220,0 +170743888014,221,0 +170743888063,223,0 +170743888111,227,0 +170743888159,227,0 +170743888207,230,0 +170743888255,232,0 +170743888304,237,0 +170743888352,238,0 +170743888400,241,0 +170743888448,241,0 +170743888496,240,0 +170743888544,240,0 +170743888593,244,0 +170743888641,243,0 +170743888689,244,0 +170743888737,221,0 +170743888785,219,0 +170743888835,219,0 +170743888883,220,0 +170743888931,221,0 +170743888980,224,0 +170743889028,228,0 +170743889076,229,0 +170743889124,231,0 +170743889172,234,0 +170743889220,237,0 +170743889268,239,0 +170743889316,238,0 +170743889365,240,0 +170743889413,243,0 +170743889461,244,0 +170743889509,242,0 +170743889557,240,0 +170743889605,243,0 +170743889653,221,0 +170743889701,220,0 +170743889751,220,0 +170743889799,221,0 +170743889848,226,0 +170743889898,229,0 +170743889947,231,0 +170743889997,233,0 +170743890045,235,0 +170743890094,236,0 +170743890142,238,0 +170743890192,239,0 +170743890240,239,0 +170743890288,240,0 +170743890336,241,0 +170743890385,240,0 +170743890433,242,0 +170743890481,242,0 +170743890531,243,0 +170743890579,223,0 +170743890626,218,0 +170743890676,219,0 +170743890724,221,0 +170743890772,224,0 +170743890820,227,0 +170743890868,230,0 +170743890916,233,0 +170743890964,232,0 +170743891012,234,0 +170743891060,234,0 +170743891108,238,0 +170743891157,238,0 +170743891207,238,0 +170743891255,240,0 +170743891303,243,0 +170743891352,241,0 +170743891400,243,0 +170743891448,244,0 +170743891496,222,0 +170743891544,217,0 +170743891592,218,0 +170743891640,219,0 +170743891687,220,0 +170743891735,223,0 +170743891783,226,0 +170743891833,229,0 +170743891882,230,0 +170743891932,232,0 +170743891979,233,0 +170743892027,235,0 +170743892077,237,0 +170743892125,239,0 +170743892173,240,0 +170743892222,240,0 +170743892270,242,0 +170743892318,246,0 +170743892366,243,0 +170743892414,223,0 +170743892462,218,0 +170743892509,219,0 +170743892557,220,0 +170743892605,220,0 +170743892653,223,0 +170743892701,223,0 +170743892749,227,0 +170743892797,230,0 +170743892845,232,0 +170743892893,235,0 +170743892940,237,0 +170743892988,238,0 +170743893038,239,0 +170743893087,237,0 +170743893137,239,0 +170743893185,242,0 +170743893233,242,0 +170743893281,242,0 +170743893329,222,0 +170743893377,216,0 +170743893425,217,0 +170743893473,218,0 +170743893521,218,0 +170743893569,219,0 +170743893616,220,0 +170743893664,221,0 +170743893714,226,0 +170743893762,227,0 +170743893810,230,0 +170743893859,234,0 +170743893907,237,0 +170743893955,235,0 +170743894003,238,0 +170743894051,237,0 +170743894101,240,0 +170743894149,238,0 +170743894197,243,0 +170743894245,222,0 +170743894293,218,0 +170743894342,219,0 +170743894390,220,0 +170743894438,227,0 +170743894486,222,0 +170743894534,224,0 +170743894582,226,0 +170743894630,230,0 +170743894678,230,0 +170743894726,232,0 +170743894776,235,0 +170743894823,239,0 +170743894873,240,0 +170743894921,239,0 +170743894969,240,0 +170743895017,242,0 +170743895067,243,0 +170743895114,242,0 +170743895162,222,0 +170743895210,217,0 +170743895258,217,0 +170743895306,218,0 +170743895354,219,0 +170743895402,219,0 +170743895450,219,0 +170743895498,220,0 +170743895545,221,0 +170743895595,221,0 +170743895644,225,0 +170743895692,228,0 +170743895740,231,0 +170743895788,234,0 +170743895836,235,0 +170743895884,237,0 +170743895932,239,0 +170743895980,243,0 +170743896027,243,0 +170743896075,223,0 +170743896125,219,0 +170743896173,220,0 +170743896221,220,0 +170743896269,221,0 +170743896317,222,0 +170743896365,225,0 +170743896413,224,0 +170743896461,230,0 +170743896510,232,0 +170743896558,233,0 +170743896606,236,0 +170743896654,239,0 +170743896702,238,0 +170743896752,241,0 +170743896800,242,0 +170743896848,241,0 +170743896897,244,0 +170743896947,243,0 +170743896995,223,0 +170743897044,219,0 +170743897092,220,0 +170743897140,222,0 +170743897190,222,0 +170743897238,224,0 +170743897285,228,0 +170743897333,228,0 +170743897381,228,0 +170743897429,231,0 +170743897477,233,0 +170743897525,237,0 +170743897574,245,0 +170743897622,240,0 +170743897670,239,0 +170743897718,241,0 +170743897767,242,0 +170743897815,244,0 +170743897865,244,0 +170743897914,223,0 +170743897962,218,0 +170743898010,219,0 +170743898060,220,0 +170743898109,222,0 +170743898157,225,0 +170743898207,227,0 +170743898256,228,0 +170743898306,230,0 +170743898354,233,0 +170743898402,230,0 +170743898450,234,0 +170743898499,238,0 +170743898547,236,0 +170743898595,239,0 +170743898643,241,0 +170743898693,241,0 +170743898742,242,0 +170743898790,241,0 +170743898840,221,0 +170743898889,219,0 +170743898937,222,0 +170743898985,225,0 +170743899033,230,0 +170743899081,229,0 +170743899129,230,0 +170743899177,231,0 +170743899227,236,0 +170743899276,238,0 +170743899324,237,0 +170743899372,240,0 +170743899422,241,0 +170743899469,241,0 +170743899517,240,0 +170743899565,242,0 +170743899615,243,0 +170743899663,244,0 +170743899712,242,0 +170743899760,221,0 +170743899808,219,0 +170743899856,221,0 +170743899904,225,0 +170743899952,229,0 +170743900002,230,0 +170743900051,231,0 +170743900099,231,0 +170743900147,235,0 +170743900197,237,0 +170743900245,237,0 +170743900293,237,0 +170743900342,240,0 +170743900390,242,0 +170743900440,243,0 +170743900488,245,0 +170743900536,244,0 +170743900585,245,0 +170743900633,243,0 +170743900681,220,0 +170743900729,218,0 +170743900777,219,0 +170743900825,220,0 +170743900873,221,0 +170743900921,223,0 +170743900969,224,0 +170743901017,227,0 +170743901065,229,0 +170743901113,233,0 +170743901162,235,0 +170743901210,236,0 +170743901258,237,0 +170743901308,239,0 +170743901356,240,0 +170743901404,241,0 +170743901452,243,0 +170743901500,244,0 +170743901549,240,0 +170743901599,220,0 +170743901647,223,0 +170743901696,226,0 +170743901746,229,0 +170743901795,231,0 +170743901843,232,0 +170743901891,233,0 +170743901939,233,0 +170743901987,238,0 +170743902037,239,0 +170743902086,239,0 +170743902134,239,0 +170743902182,239,0 +170743902232,242,0 +170743902280,241,0 +170743902328,242,0 +170743902377,241,0 +170743902425,240,0 +170743902473,231,0 +170743902523,219,0 +170743902571,224,0 +170743902619,227,0 +170743902667,229,0 +170743902716,232,0 +170743902764,233,0 +170743902812,233,0 +170743902860,236,0 +170743902910,235,0 +170743902958,237,0 +170743903006,241,0 +170743903055,241,0 +170743903103,240,0 +170743903151,240,0 +170743903199,241,0 +170743903248,242,0 +170743903296,242,0 +170743903346,241,0 +170743903394,221,0 +170743903442,218,0 +170743903490,219,0 +170743903538,220,0 +170743903587,224,0 +170743903635,225,0 +170743903683,229,0 +170743903731,229,0 +170743903779,232,0 +170743903827,235,0 +170743903877,238,0 +170743903926,239,0 +170743903976,240,0 +170743904024,239,0 +170743904073,239,0 +170743904121,241,0 +170743904169,242,0 +170743904217,245,0 +170743904265,242,0 +170743904315,230,0 +170743904363,217,0 +170743904412,216,0 +170743904460,216,0 +170743904508,216,0 +170743904556,217,0 +170743904604,218,0 +170743904652,219,0 +170743904701,219,0 +170743904749,219,0 +170743904799,221,0 +170743904847,222,0 +170743904896,224,0 +170743904944,227,0 +170743904992,231,0 +170743905040,230,0 +170743905088,233,0 +170743905138,235,0 +170743905186,236,0 +170743905235,237,0 +170743905283,238,0 +170743905331,239,0 +170743905379,241,0 +170743905427,241,0 +170743905477,242,0 +170743905525,242,0 +170743905573,243,0 +170743905621,241,0 +170743905669,242,0 +170743905716,221,0 +170743905764,220,0 +170743905812,222,0 +170743905860,225,0 +170743905908,227,0 +170743905956,230,0 +170743906004,231,0 +170743906052,232,0 +170743906102,236,0 +170743906150,236,0 +170743906198,239,0 +170743906245,239,0 +170743906295,240,0 +170743906343,250,0 +170743906391,241,0 +170743906439,242,0 +170743906486,241,0 +170743906534,243,0 +170743906582,242,0 +170743906632,220,0 +170743906681,219,0 +170743906729,220,0 +170743906779,223,0 +170743906827,225,0 +170743906875,232,0 +170743906924,232,0 +170743906974,234,0 +170743907021,234,0 +170743907069,236,0 +170743907117,237,0 +170743907165,237,0 +170743907213,238,0 +170743907263,239,0 +170743907311,242,0 +170743907358,242,0 +170743907408,241,0 +170743907456,244,0 +170743907504,242,0 +170743907552,221,0 +170743907601,221,0 +170743907649,222,0 +170743907697,225,0 +170743907745,228,0 +170743907793,231,0 +170743907841,233,0 +170743907889,233,0 +170743907937,233,0 +170743907985,234,0 +170743908033,235,0 +170743908080,238,0 +170743908128,238,0 +170743908176,241,0 +170743908224,240,0 +170743908272,242,0 +170743908320,241,0 +170743908368,244,0 +170743908416,242,0 +170743908464,220,0 +170743908512,231,0 +170743908559,223,0 +170743908607,228,0 +170743908655,227,0 +170743908703,228,0 +170743908751,228,0 +170743908799,232,0 +170743908847,235,0 +170743908895,238,0 +170743908943,239,0 +170743908991,239,0 +170743909038,239,0 +170743909086,238,0 +170743909134,243,0 +170743909182,239,0 +170743909230,241,0 +170743909278,243,0 +170743909326,241,0 +170743909376,222,0 +170743909424,220,0 +170743909472,223,0 +170743909521,226,0 +170743909569,230,0 +170743909617,231,0 +170743909665,233,0 +170743909713,235,0 +170743909761,238,0 +170743909809,237,0 +170743909857,242,0 +170743909905,238,0 +170743909954,241,0 +170743910002,241,0 +170743910050,241,0 +170743910098,242,0 +170743910148,241,0 +170743910196,243,0 +170743910244,241,0 +170743910293,221,0 +170743910343,219,0 +170743910391,222,0 +170743910439,225,0 +170743910487,228,0 +170743910535,230,0 +170743910583,231,0 +170743910631,233,0 +170743910679,234,0 +170743910727,235,0 +170743910775,235,0 +170743910823,236,0 +170743910872,240,0 +170743910920,240,0 +170743910970,241,0 +170743911018,242,0 +170743911065,244,0 +170743911115,243,0 +170743911163,243,0 +170743911212,220,0 +170743911260,217,0 +170743911310,219,0 +170743911359,219,0 +170743911409,222,0 +170743911458,226,0 +170743911506,227,0 +170743911554,230,0 +170743911602,233,0 +170743911650,235,0 +170743911698,234,0 +170743911746,237,0 +170743911796,236,0 +170743911844,236,0 +170743911892,237,0 +170743911941,239,0 +170743911991,240,0 +170743912039,243,0 +170743912087,245,0 +170743912135,219,0 +170743912184,217,0 +170743912232,218,0 +170743912280,219,0 +170743912328,220,0 +170743912376,220,0 +170743912424,224,0 +170743912471,226,0 +170743912521,229,0 +170743912569,231,0 +170743912617,233,0 +170743912664,231,0 +170743912712,232,0 +170743912760,236,0 +170743912808,237,0 +170743912856,239,0 +170743912906,240,0 +170743912954,243,0 +170743913001,242,0 +170743913049,218,0 +170743913097,218,0 +170743913145,219,0 +170743913193,219,0 +170743913241,219,0 +170743913290,222,0 +170743913338,225,0 +170743913386,227,0 +170743913434,229,0 +170743913482,232,0 +170743913530,233,0 +170743913578,237,0 +170743913625,238,0 +170743913673,237,0 +170743913721,238,0 +170743913769,240,0 +170743913817,239,0 +170743913865,243,0 +170743913913,241,0 +170743913961,220,0 +170743914010,218,0 +170743914058,220,0 +170743914108,221,0 +170743914156,223,0 +170743914204,226,0 +170743914252,229,0 +170743914301,229,0 +170743914349,237,0 +170743914399,232,0 +170743914447,233,0 +170743914494,235,0 +170743914542,237,0 +170743914590,235,0 +170743914638,239,0 +170743914686,238,0 +170743914734,243,0 +170743914782,243,0 +170743914830,240,0 +170743914878,219,0 +170743914926,219,0 +170743914976,220,0 +170743915023,226,0 +170743915071,227,0 +170743915121,229,0 +170743915169,228,0 +170743915217,229,0 +170743915266,231,0 +170743915314,235,0 +170743915364,237,0 +170743915412,236,0 +170743915461,241,0 +170743915509,241,0 +170743915557,239,0 +170743915607,243,0 +170743915656,244,0 +170743915704,243,0 +170743915754,242,0 +170743915802,220,0 +170743915850,220,0 +170743915897,223,0 +170743915945,226,0 +170743915993,229,0 +170743916043,228,0 +170743916092,230,0 +170743916140,233,0 +170743916188,235,0 +170743916236,237,0 +170743916284,244,0 +170743916332,239,0 +170743916380,244,0 +170743916430,243,0 +170743916478,241,0 +170743916526,244,0 +170743916574,242,0 +170743916622,241,0 +170743916670,241,0 +170743916718,222,0 +170743916766,220,0 +170743916815,223,0 +170743916865,226,0 +170743916913,229,0 +170743916961,227,0 +170743917010,229,0 +170743917058,232,0 +170743917106,235,0 +170743917154,237,0 +170743917202,238,0 +170743917250,239,0 +170743917298,238,0 +170743917346,242,0 +170743917394,241,0 +170743917442,242,0 +170743917490,244,0 +170743917539,243,0 +170743917587,243,0 +170743917635,222,0 +170743917683,221,0 +170743917731,224,0 +170743917779,229,0 +170743917827,229,0 +170743917875,229,0 +170743917923,230,0 +170743917971,233,0 +170743918020,234,0 +170743918068,237,0 +170743918116,240,0 +170743918164,238,0 +170743918212,240,0 +170743918262,240,0 +170743918310,241,0 +170743918358,241,0 +170743918407,242,0 +170743918455,243,0 +170743918503,241,0 +170743918551,222,0 +170743918599,223,0 +170743918649,226,0 +170743918697,229,0 +170743918745,230,0 +170743918793,231,0 +170743918841,234,0 +170743918889,235,0 +170743918938,236,0 +170743918988,238,0 +170743919036,240,0 +170743919084,241,0 +170743919132,241,0 +170743919179,241,0 +170743919229,242,0 +170743919277,240,0 +170743919326,244,0 +170743919374,243,0 +170743919422,241,0 +170743919470,219,0 +170743919518,219,0 +170743919568,224,0 +170743919616,228,0 +170743919665,227,0 +170743919715,228,0 +170743919763,232,0 +170743919811,234,0 +170743919860,235,0 +170743919908,239,0 +170743919956,242,0 +170743920004,241,0 +170743920052,241,0 +170743920100,242,0 +170743920150,242,0 +170743920198,243,0 +170743920246,243,0 +170743920294,243,0 +170743920342,239,0 +170743920390,218,0 +170743920437,219,0 +170743920485,220,0 +170743920535,223,0 +170743920584,228,0 +170743920634,230,0 +170743920682,230,0 +170743920730,234,0 +170743920778,237,0 +170743920828,239,0 +170743920877,241,0 +170743920925,241,0 +170743920975,241,0 +170743921022,243,0 +170743921070,244,0 +170743921120,243,0 +170743921168,245,0 +170743921216,243,0 +170743921264,221,0 +170743921312,218,0 +170743921361,220,0 +170743921409,224,0 +170743921457,227,0 +170743921505,231,0 +170743921553,234,0 +170743921601,237,0 +170743921649,238,0 +170743921697,239,0 +170743921745,239,0 +170743921793,238,0 +170743921842,250,0 +170743921890,240,0 +170743921938,240,0 +170743921986,241,0 +170743922036,240,0 +170743922084,243,0 +170743922132,244,0 +170743922179,224,0 +170743922227,218,0 +170743922277,219,0 +170743922325,220,0 +170743922373,224,0 +170743922421,227,0 +170743922469,230,0 +170743922518,230,0 +170743922566,233,0 +170743922614,235,0 +170743922662,236,0 +170743922712,237,0 +170743922761,239,0 +170743922811,241,0 +170743922859,240,0 +170743922907,240,0 +170743922955,241,0 +170743923003,242,0 +170743923051,244,0 +170743923099,225,0 +170743923147,218,0 +170743923195,219,0 +170743923243,219,0 +170743923291,223,0 +170743923339,227,0 +170743923387,229,0 +170743923435,230,0 +170743923483,232,0 +170743923532,232,0 +170743923582,236,0 +170743923630,237,0 +170743923679,238,0 +170743923727,239,0 +170743923775,240,0 +170743923823,241,0 +170743923871,242,0 +170743923919,243,0 +170743923967,244,0 +170743924015,240,0 +170743924063,219,0 +170743924111,219,0 +170743924159,221,0 +170743924208,221,0 +170743924258,223,0 +170743924306,226,0 +170743924354,230,0 +170743924402,233,0 +170743924450,233,0 +170743924498,236,0 +170743924546,234,0 +170743924594,237,0 +170743924642,239,0 +170743924690,241,0 +170743924738,244,0 +170743924786,243,0 +170743924834,242,0 +170743924882,242,0 +170743924930,227,0 +170743924978,217,0 +170743925026,217,0 +170743925075,217,0 +170743925123,218,0 +170743925173,219,0 +170743925221,220,0 +170743925268,219,0 +170743925318,221,0 +170743925366,225,0 +170743925414,226,0 +170743925463,228,0 +170743925511,230,0 +170743925561,232,0 +170743925609,236,0 +170743925657,238,0 +170743925705,237,0 +170743925753,234,0 +170743925801,240,0 +170743925848,220,0 +170743925898,218,0 +170743925946,217,0 +170743925994,218,0 +170743926042,220,0 +170743926091,220,0 +170743926139,221,0 +170743926187,223,0 +170743926235,225,0 +170743926283,229,0 +170743926331,231,0 +170743926381,234,0 +170743926429,235,0 +170743926477,236,0 +170743926525,239,0 +170743926574,238,0 +170743926624,239,0 +170743926672,240,0 +170743926720,240,0 +170743926768,221,0 +170743926815,218,0 +170743926865,218,0 +170743926913,219,0 +170743926963,220,0 +170743927010,220,0 +170743927060,221,0 +170743927110,222,0 +170743927158,225,0 +170743927206,226,0 +170743927254,231,0 +170743927301,234,0 +170743927351,234,0 +170743927401,236,0 +170743927449,236,0 +170743927497,236,0 +170743927544,237,0 +170743927592,236,0 +170743927640,226,0 +170743927688,222,0 +170743927738,218,0 +170743927786,218,0 +170743927834,219,0 +170743927883,220,0 +170743927931,220,0 +170743927979,221,0 +170743928027,223,0 +170743928075,227,0 +170743928125,228,0 +170743928173,231,0 +170743928222,232,0 +170743928270,233,0 +170743928318,235,0 +170743928368,236,0 +170743928417,235,0 +170743928465,237,0 +170743928515,240,0 +170743928563,242,0 +170743928611,223,0 +170743928659,218,0 +170743928708,219,0 +170743928756,220,0 +170743928804,222,0 +170743928852,224,0 +170743928902,227,0 +170743928951,229,0 +170743928999,230,0 +170743929049,233,0 +170743929097,233,0 +170743929146,237,0 +170743929194,237,0 +170743929242,238,0 +170743929290,239,0 +170743929338,240,0 +170743929386,242,0 +170743929434,244,0 +170743929482,241,0 +170743929530,222,0 +170743929578,217,0 +170743929627,218,0 +170743929675,218,0 +170743929723,219,0 +170743929771,220,0 +170743929819,220,0 +170743929867,222,0 +170743929915,225,0 +170743929963,229,0 +170743930013,230,0 +170743930061,234,0 +170743930110,241,0 +170743930158,237,0 +170743930206,238,0 +170743930254,236,0 +170743930302,236,0 +170743930350,237,0 +170743930398,242,0 +170743930447,223,0 +170743930497,219,0 +170743930545,220,0 +170743930593,221,0 +170743930641,224,0 +170743930689,225,0 +170743930737,229,0 +170743930785,231,0 +170743930833,255,0 +170743930881,229,0 +170743930929,232,0 +170743930978,237,0 +170743931026,235,0 +170743931074,237,0 +170743931122,238,0 +170743931171,239,0 +170743931219,240,0 +170743931267,245,0 +170743931317,243,0 +170743931365,223,0 +170743931413,220,0 +170743931462,219,0 +170743931510,220,0 +170743931558,222,0 +170743931608,225,0 +170743931657,229,0 +170743931705,229,0 +170743931753,232,0 +170743931801,234,0 +170743931849,236,0 +170743931897,237,0 +170743931945,236,0 +170743931992,238,0 +170743932040,241,0 +170743932088,239,0 +170743932136,243,0 +170743932184,243,0 +170743932232,243,0 +170743932280,224,0 +170743932330,218,0 +170743932378,220,0 +170743932425,220,0 +170743932475,222,0 +170743932523,225,0 +170743932571,225,0 +170743932619,231,0 +170743932668,232,0 +170743932718,236,0 +170743932765,237,0 +170743932815,238,0 +170743932863,238,0 +170743932911,240,0 +170743932958,241,0 +170743933006,241,0 +170743933056,242,0 +170743933104,243,0 +170743933152,240,0 +170743933201,222,0 +170743933249,219,0 +170743933297,220,0 +170743933345,220,0 +170743933393,222,0 +170743933440,222,0 +170743933488,226,0 +170743933536,228,0 +170743933584,228,0 +170743933632,230,0 +170743933680,234,0 +170743933728,234,0 +170743933776,238,0 +170743933825,238,0 +170743933873,237,0 +170743933921,239,0 +170743933970,241,0 +170743934018,241,0 +170743934066,244,0 +170743934116,223,0 +170743934164,219,0 +170743934212,220,0 +170743934260,221,0 +170743934309,226,0 +170743934357,229,0 +170743934407,230,0 +170743934456,229,0 +170743934504,232,0 +170743934552,233,0 +170743934602,235,0 +170743934650,236,0 +170743934697,238,0 +170743934747,239,0 +170743934796,240,0 +170743934844,242,0 +170743934892,243,0 +170743934940,245,0 +170743934988,241,0 +170743935037,223,0 +170743935084,220,0 +170743935134,220,0 +170743935182,223,0 +170743935230,225,0 +170743935278,229,0 +170743935327,230,0 +170743935375,230,0 +170743935423,229,0 +170743935471,232,0 +170743935519,235,0 +170743935567,237,0 +170743935615,238,0 +170743935663,239,0 +170743935713,240,0 +170743935761,240,0 +170743935809,243,0 +170743935858,243,0 +170743935906,243,0 +170743935954,224,0 +170743936004,222,0 +170743936053,221,0 +170743936101,224,0 +170743936149,229,0 +170743936197,229,0 +170743936245,229,0 +170743936295,230,0 +170743936343,233,0 +170743936391,234,0 +170743936439,237,0 +170743936488,237,0 +170743936538,240,0 +170743936586,239,0 +170743936633,242,0 +170743936681,243,0 +170743936729,243,0 +170743936777,242,0 +170743936827,241,0 +170743936874,223,0 +170743936922,220,0 +170743936970,223,0 +170743937020,225,0 +170743937068,228,0 +170743937115,230,0 +170743937165,230,0 +170743937213,231,0 +170743937261,235,0 +170743937309,236,0 +170743937358,238,0 +170743937406,237,0 +170743937454,238,0 +170743937502,238,0 +170743937550,240,0 +170743937599,242,0 +170743937649,241,0 +170743937698,244,0 +170743937746,241,0 +170743937794,222,0 +170743937842,224,0 +170743937890,225,0 +170743937938,227,0 +170743937987,230,0 +170743938035,233,0 +170743938083,234,0 +170743938130,236,0 +170743938178,235,0 +170743938228,238,0 +170743938276,239,0 +170743938324,241,0 +170743938372,241,0 +170743938419,241,0 +170743938467,241,0 +170743938515,241,0 +170743938563,242,0 +170743938612,241,0 +170743938660,243,0 +170743938708,220,0 +170743938758,220,0 +170743938806,221,0 +170743938853,223,0 +170743938901,225,0 +170743938949,227,0 +170743938999,230,0 +170743939048,234,0 +170743939096,235,0 +170743939146,237,0 +170743939194,238,0 +170743939243,240,0 +170743939291,240,0 +170743939339,240,0 +170743939387,243,0 +170743939435,244,0 +170743939483,245,0 +170743939531,243,0 +170743939579,241,0 +170743939627,219,0 +170743939675,218,0 +170743939723,221,0 +170743939771,221,0 +170743939819,223,0 +170743939867,226,0 +170743939916,228,0 +170743939966,230,0 +170743940014,231,0 +170743940062,233,0 +170743940110,237,0 +170743940157,237,0 +170743940205,238,0 +170743940253,239,0 +170743940303,240,0 +170743940351,243,0 +170743940399,241,0 +170743940446,246,0 +170743940494,242,0 +170743940542,224,0 +170743940590,226,0 +170743940638,229,0 +170743940687,232,0 +170743940735,234,0 +170743940783,233,0 +170743940831,238,0 +170743940881,238,0 +170743940930,238,0 +170743940978,241,0 +170743941026,241,0 +170743941074,243,0 +170743941122,242,0 +170743941171,239,0 +170743941219,242,0 +170743941267,241,0 +170743941315,243,0 +170743941363,244,0 +170743941413,243,0 +170743941462,222,0 +170743941510,224,0 +170743941558,229,0 +170743941606,232,0 +170743941654,233,0 +170743941702,236,0 +170743941750,234,0 +170743941798,236,0 +170743941846,237,0 +170743941894,241,0 +170743941942,242,0 +170743941990,241,0 +170743942039,243,0 +170743942087,242,0 +170743942137,241,0 +170743942185,242,0 +170743942233,242,0 +170743942281,243,0 +170743942329,242,0 +170743942377,220,0 +170743942424,220,0 +170743942472,221,0 +170743942520,225,0 +170743942568,229,0 +170743942616,230,0 +170743942664,233,0 +170743942714,234,0 +170743942762,234,0 +170743942811,238,0 +170743942859,237,0 +170743942909,241,0 +170743942958,240,0 +170743943006,239,0 +170743943054,241,0 +170743943102,240,0 +170743943150,242,0 +170743943198,244,0 +170743943246,243,0 +170743943296,220,0 +170743943345,218,0 +170743943393,219,0 +170743943441,223,0 +170743943489,226,0 +170743943537,229,0 +170743943585,230,0 +170743943633,231,0 +170743943681,234,0 +170743943729,234,0 +170743943777,236,0 +170743943825,237,0 +170743943874,238,0 +170743943922,239,0 +170743943970,239,0 +170743944018,241,0 +170743944066,243,0 +170743944116,243,0 +170743944165,241,0 +170743944213,219,0 +170743944261,218,0 +170743944309,220,0 +170743944357,222,0 +170743944405,226,0 +170743944455,227,0 +170743944504,231,0 +170743944552,231,0 +170743944600,232,0 +170743944648,234,0 +170743944698,238,0 +170743944746,238,0 +170743944794,240,0 +170743944842,242,0 +170743944890,238,0 +170743944939,244,0 +170743944987,244,0 +170743945035,244,0 +170743945085,240,0 +170743945133,218,0 +170743945181,218,0 +170743945229,219,0 +170743945277,219,0 +170743945325,222,0 +170743945373,224,0 +170743945421,224,0 +170743945469,228,0 +170743945516,229,0 +170743945564,233,0 +170743945612,235,0 +170743945660,236,0 +170743945708,238,0 +170743945758,237,0 +170743945806,238,0 +170743945854,239,0 +170743945902,239,0 +170743945950,243,0 +170743945998,241,0 +170743946045,218,0 +170743946093,218,0 +170743946143,218,0 +170743946191,220,0 +170743946239,220,0 +170743946287,223,0 +170743946336,226,0 +170743946386,227,0 +170743946436,229,0 +170743946484,232,0 +170743946533,233,0 +170743946581,234,0 +170743946631,236,0 +170743946679,238,0 +170743946727,239,0 +170743946776,239,0 +170743946824,240,0 +170743946872,243,0 +170743946920,228,0 +170743946968,219,0 +170743947017,219,0 +170743947065,221,0 +170743947115,227,0 +170743947163,228,0 +170743947211,230,0 +170743947259,230,0 +170743947307,236,0 +170743947355,233,0 +170743947403,236,0 +170743947450,237,0 +170743947500,239,0 +170743947550,240,0 +170743947599,242,0 +170743947647,241,0 +170743947697,242,0 +170743947745,243,0 +170743947793,244,0 +170743947842,236,0 +170743947890,218,0 +170743947939,219,0 +170743947987,220,0 +170743948035,224,0 +170743948083,227,0 +170743948133,230,0 +170743948181,232,0 +170743948230,232,0 +170743948278,232,0 +170743948326,235,0 +170743948374,238,0 +170743948424,239,0 +170743948472,241,0 +170743948520,241,0 +170743948569,242,0 +170743948619,242,0 +170743948667,241,0 +170743948716,243,0 +170743948764,234,0 +170743948812,218,0 +170743948862,219,0 +170743948911,220,0 +170743948961,222,0 +170743949009,225,0 +170743949057,227,0 +170743949104,228,0 +170743949154,240,0 +170743949202,233,0 +170743949252,233,0 +170743949301,236,0 +170743949349,238,0 +170743949397,240,0 +170743949445,241,0 +170743949495,242,0 +170743949543,242,0 +170743949592,243,0 +170743949640,241,0 +170743949688,223,0 +170743949736,219,0 +170743949784,220,0 +170743949834,220,0 +170743949882,221,0 +170743949930,222,0 +170743949979,224,0 +170743950027,226,0 +170743950075,230,0 +170743950123,229,0 +170743950172,232,0 +170743950220,235,0 +170743950268,236,0 +170743950318,237,0 +170743950368,240,0 +170743950417,240,0 +170743950467,241,0 +170743950515,242,0 +170743950563,241,0 +170743950610,222,0 +170743950658,217,0 +170743950706,217,0 +170743950756,217,0 +170743950806,218,0 +170743950853,219,0 +170743950901,219,0 +170743950951,219,0 +170743950999,220,0 +170743951047,221,0 +170743951096,224,0 +170743951146,228,0 +170743951194,230,0 +170743951242,233,0 +170743951290,235,0 +170743951338,235,0 +170743951387,238,0 +170743951435,240,0 +170743951483,240,0 +170743951533,222,0 +170743951581,219,0 +170743951629,219,0 +170743951677,220,0 +170743951724,221,0 +170743951772,221,0 +170743951822,222,0 +170743951870,224,0 +170743951918,224,0 +170743951965,225,0 +170743952015,228,0 +170743952063,231,0 +170743952111,234,0 +170743952160,234,0 +170743952208,234,0 +170743952256,234,0 +170743952304,235,0 +170743952352,241,0 +170743952400,240,0 +170743952447,224,0 +170743952495,221,0 +170743952543,225,0 +170743952591,228,0 +170743952640,231,0 +170743952688,232,0 +170743952736,231,0 +170743952786,237,0 +170743952834,234,0 +170743952882,253,0 +170743952930,236,0 +170743952978,238,0 +170743953026,237,0 +170743953074,240,0 +170743953122,241,0 +170743953170,240,0 +170743953218,244,0 +170743953266,242,0 +170743953314,241,0 +170743953363,223,0 +170743953411,220,0 +170743953459,222,0 +170743953507,225,0 +170743953555,229,0 +170743953603,230,0 +170743953652,229,0 +170743953700,230,0 +170743953748,235,0 +170743953796,233,0 +170743953844,239,0 +170743953892,239,0 +170743953939,237,0 +170743953987,239,0 +170743954035,241,0 +170743954083,241,0 +170743954131,243,0 +170743954179,242,0 +170743954227,241,0 +170743954275,220,0 +170743954323,219,0 +170743954370,220,0 +170743954418,222,0 +170743954466,225,0 +170743954516,227,0 +170743954565,229,0 +170743954615,229,0 +170743954662,231,0 +170743954710,232,0 +170743954758,234,0 +170743954808,237,0 +170743954857,238,0 +170743954905,240,0 +170743954953,240,0 +170743955001,240,0 +170743955051,243,0 +170743955100,243,0 +170743955150,242,0 +170743955199,223,0 +170743955247,218,0 +170743955297,219,0 +170743955345,220,0 +170743955393,222,0 +170743955442,226,0 +170743955490,227,0 +170743955538,228,0 +170743955586,231,0 +170743955634,232,0 +170743955682,234,0 +170743955730,237,0 +170743955777,237,0 +170743955825,239,0 +170743955875,242,0 +170743955923,241,0 +170743955971,243,0 +170743956018,243,0 +170743956066,244,0 +170743956116,224,0 +170743956165,220,0 +170743956215,223,0 +170743956263,225,0 +170743956310,227,0 +170743956358,230,0 +170743956406,230,0 +170743956456,232,0 +170743956504,234,0 +170743956552,237,0 +170743956599,236,0 +170743956647,237,0 +170743956695,240,0 +170743956743,240,0 +170743956791,240,0 +170743956839,241,0 +170743956887,240,0 +170743956935,243,0 +170743956983,243,0 +170743957030,223,0 +170743957078,221,0 +170743957128,224,0 +170743957176,228,0 +170743957224,229,0 +170743957271,233,0 +170743957319,233,0 +170743957367,234,0 +170743957415,236,0 +170743957463,237,0 +170743957511,238,0 +170743957559,239,0 +170743957607,240,0 +170743957655,241,0 +170743957705,242,0 +170743957754,243,0 +170743957804,243,0 +170743957852,242,0 +170743957899,242,0 +170743957947,223,0 +170743957995,219,0 +170743958043,221,0 +170743958091,224,0 +170743958141,227,0 +170743958189,231,0 +170743958237,234,0 +170743958285,236,0 +170743958333,239,0 +170743958381,237,0 +170743958430,240,0 +170743958480,241,0 +170743958528,241,0 +170743958576,242,0 +170743958624,243,0 +170743958672,243,0 +170743958721,242,0 +170743958769,243,0 +170743958817,242,0 +170743958865,222,0 +170743958913,220,0 +170743958963,224,0 +170743959012,227,0 +170743959060,230,0 +170743959108,233,0 +170743959156,234,0 +170743959206,236,0 +170743959254,238,0 +170743959302,238,0 +170743959349,238,0 +170743959398,240,0 +170743959445,242,0 +170743959493,242,0 +170743959541,242,0 +170743959589,242,0 +170743959637,246,0 +170743959687,241,0 +170743959736,241,0 +170743959784,222,0 +170743959832,218,0 +170743959880,222,0 +170743959928,225,0 +170743959978,229,0 +170743960026,230,0 +170743960075,233,0 +170743960123,236,0 +170743960171,237,0 +170743960219,240,0 +170743960267,239,0 +170743960315,239,0 +170743960363,239,0 +170743960413,241,0 +170743960461,241,0 +170743960510,241,0 +170743960560,241,0 +170743960609,245,0 +170743960657,243,0 +170743960707,223,0 +170743960755,220,0 +170743960803,221,0 +170743960850,223,0 +170743960898,227,0 +170743960946,229,0 +170743960994,231,0 +170743961042,234,0 +170743961091,233,0 +170743961139,236,0 +170743961189,237,0 +170743961237,238,0 +170743961285,241,0 +170743961333,239,0 +170743961381,242,0 +170743961429,241,0 +170743961477,241,0 +170743961526,243,0 +170743961576,243,0 +170743961623,223,0 +170743961671,218,0 +170743961721,219,0 +170743961771,220,0 +170743961818,223,0 +170743961866,225,0 +170743961914,228,0 +170743961962,231,0 +170743962012,231,0 +170743962061,234,0 +170743962111,236,0 +170743962159,235,0 +170743962207,238,0 +170743962255,239,0 +170743962303,240,0 +170743962351,241,0 +170743962400,241,0 +170743962448,243,0 +170743962498,241,0 +170743962547,219,0 +170743962595,218,0 +170743962643,219,0 +170743962691,220,0 +170743962739,221,0 +170743962788,223,0 +170743962836,226,0 +170743962884,230,0 +170743962932,229,0 +170743962980,234,0 +170743963028,235,0 +170743963076,236,0 +170743963125,238,0 +170743963175,243,0 +170743963223,240,0 +170743963271,241,0 +170743963319,239,0 +170743963368,244,0 +170743963416,242,0 +170743963464,221,0 +170743963512,221,0 +170743963560,224,0 +170743963609,227,0 +170743963657,233,0 +170743963707,231,0 +170743963755,229,0 +170743963805,233,0 +170743963854,233,0 +170743963902,238,0 +170743963950,237,0 +170743963998,238,0 +170743964046,239,0 +170743964094,239,0 +170743964142,241,0 +170743964191,242,0 +170743964241,241,0 +170743964290,241,0 +170743964338,241,0 +170743964386,220,0 +170743964436,220,0 +170743964484,223,0 +170743964532,227,0 +170743964580,231,0 +170743964629,228,0 +170743964677,234,0 +170743964725,233,0 +170743964775,236,0 +170743964823,237,0 +170743964871,238,0 +170743964920,239,0 +170743964968,242,0 +170743965016,241,0 +170743965064,243,0 +170743965112,241,0 +170743965159,243,0 +170743965209,243,0 +170743965257,242,0 +170743965305,221,0 +170743965353,220,0 +170743965400,220,0 +170743965448,223,0 +170743965496,228,0 +170743965546,230,0 +170743965594,230,0 +170743965641,232,0 +170743965689,233,0 +170743965737,242,0 +170743965785,236,0 +170743965833,237,0 +170743965882,237,0 +170743965930,244,0 +170743965978,239,0 +170743966026,241,0 +170743966074,244,0 +170743966122,244,0 +170743966170,241,0 +170743966218,218,0 +170743966266,218,0 +170743966313,219,0 +170743966361,220,0 +170743966409,220,0 +170743966457,222,0 +170743966505,227,0 +170743966553,230,0 +170743966601,231,0 +170743966650,238,0 +170743966698,234,0 +170743966747,237,0 +170743966795,240,0 +170743966843,241,0 +170743966891,240,0 +170743966939,240,0 +170743966988,242,0 +170743967036,243,0 +170743967084,241,0 +170743967132,221,0 +170743967180,219,0 +170743967228,220,0 +170743967276,220,0 +170743967324,221,0 +170743967373,223,0 +170743967423,223,0 +170743967471,224,0 +170743967519,225,0 +170743967566,229,0 +170743967614,232,0 +170743967662,231,0 +170743967710,234,0 +170743967758,236,0 +170743967808,238,0 +170743967857,238,0 +170743967905,239,0 +170743967953,242,0 +170743968001,242,0 +170743968049,222,0 +170743968097,221,0 +170743968145,220,0 +170743968194,225,0 +170743968242,228,0 +170743968290,230,0 +170743968338,229,0 +170743968388,230,0 +170743968436,235,0 +170743968484,236,0 +170743968532,238,0 +170743968580,239,0 +170743968628,239,0 +170743968676,239,0 +170743968725,241,0 +170743968773,240,0 +170743968821,244,0 +170743968869,244,0 +170743968917,241,0 +170743968967,221,0 +170743969015,219,0 +170743969063,220,0 +170743969111,223,0 +170743969160,238,0 +170743969210,230,0 +170743969258,231,0 +170743969306,231,0 +170743969354,234,0 +170743969401,237,0 +170743969449,239,0 +170743969497,240,0 +170743969545,239,0 +170743969593,240,0 +170743969642,243,0 +170743969692,242,0 +170743969741,242,0 +170743969789,244,0 +170743969837,242,0 +170743969885,219,0 +170743969933,219,0 +170743969983,219,0 +170743970032,222,0 +170743970080,225,0 +170743970128,230,0 +170743970178,230,0 +170743970226,230,0 +170743970274,232,0 +170743970322,236,0 +170743970370,237,0 +170743970419,238,0 +170743970469,241,0 +170743970516,239,0 +170743970566,241,0 +170743970615,239,0 +170743970663,243,0 +170743970711,244,0 +170743970759,242,0 +170743970809,219,0 +170743970858,218,0 +170743970908,218,0 +170743970957,219,0 +170743971005,220,0 +170743971053,222,0 +170743971101,225,0 +170743971149,229,0 +170743971197,231,0 +170743971245,230,0 +170743971293,234,0 +170743971341,235,0 +170743971391,237,0 +170743971439,240,0 +170743971488,240,0 +170743971536,241,0 +170743971584,241,0 +170743971632,245,0 +170743971680,245,0 +170743971728,217,0 +170743971778,225,0 +170743971826,219,0 +170743971874,219,0 +170743971922,220,0 +170743971970,221,0 +170743972019,225,0 +170743972067,228,0 +170743972115,230,0 +170743972165,233,0 +170743972213,235,0 +170743972261,237,0 +170743972308,239,0 +170743972358,238,0 +170743972406,240,0 +170743972454,243,0 +170743972502,241,0 +170743972550,243,0 +170743972599,230,0 +170743972647,219,0 +170743972697,222,0 +170743972745,221,0 +170743972794,221,0 +170743972842,224,0 +170743972890,225,0 +170743972938,226,0 +170743972986,229,0 +170743973034,231,0 +170743973082,234,0 +170743973130,235,0 +170743973178,238,0 +170743973226,253,0 +170743973276,239,0 +170743973324,240,0 +170743973372,241,0 +170743973420,241,0 +170743973469,241,0 +170743973517,240,0 +170743973565,218,0 +170743973613,219,0 +170743973661,220,0 +170743973709,219,0 +170743973757,226,0 +170743973805,225,0 +170743973853,226,0 +170743973901,226,0 +170743973949,229,0 +170743973997,231,0 +170743974045,233,0 +170743974094,245,0 +170743974142,240,0 +170743974192,238,0 +170743974240,239,0 +170743974288,242,0 +170743974336,241,0 +170743974384,241,0 +170743974432,240,0 +170743974479,218,0 +170743974527,218,0 +170743974577,218,0 +170743974626,219,0 +170743974674,220,0 +170743974722,221,0 +170743974770,224,0 +170743974818,225,0 +170743974866,227,0 +170743974914,230,0 +170743974964,232,0 +170743975012,235,0 +170743975060,235,0 +170743975108,237,0 +170743975156,238,0 +170743975205,239,0 +170743975255,240,0 +170743975303,240,0 +170743975351,238,0 +170743975400,218,0 +170743975448,218,0 +170743975496,220,0 +170743975546,220,0 +170743975595,223,0 +170743975643,224,0 +170743975691,225,0 +170743975739,227,0 +170743975787,229,0 +170743975837,233,0 +170743975886,235,0 +170743975936,235,0 +170743975984,238,0 +170743976033,240,0 +170743976083,242,0 +170743976131,241,0 +170743976178,240,0 +170743976228,240,0 +170743976276,220,0 +170743976324,218,0 +170743976372,217,0 +170743976420,218,0 +170743976468,219,0 +170743976515,220,0 +170743976563,222,0 +170743976611,223,0 +170743976659,227,0 +170743976707,229,0 +170743976755,231,0 +170743976803,233,0 +170743976851,237,0 +170743976899,237,0 +170743976947,239,0 +170743976995,241,0 +170743977043,240,0 +170743977090,242,0 +170743977140,241,0 +170743977188,236,0 +170743977236,218,0 +170743977284,218,0 +170743977332,218,0 +170743977380,219,0 +170743977428,220,0 +170743977476,221,0 +170743977525,225,0 +170743977573,228,0 +170743977623,230,0 +170743977671,231,0 +170743977719,234,0 +170743977767,237,0 +170743977815,237,0 +170743977863,240,0 +170743977912,243,0 +170743977960,242,0 +170743978008,241,0 +170743978056,242,0 +170743978104,224,0 +170743978152,222,0 +170743978200,222,0 +170743978248,224,0 +170743978296,227,0 +170743978344,230,0 +170743978393,232,0 +170743978443,234,0 +170743978491,235,0 +170743978539,238,0 +170743978587,239,0 +170743978635,240,0 +170743978683,239,0 +170743978731,241,0 +170743978779,241,0 +170743978826,244,0 +170743978876,244,0 +170743978924,241,0 +170743978974,241,0 +170743979023,221,0 +170743979071,222,0 +170743979119,224,0 +170743979167,227,0 +170743979216,230,0 +170743979264,231,0 +170743979312,234,0 +170743979360,235,0 +170743979408,236,0 +170743979458,236,0 +170743979506,238,0 +170743979554,240,0 +170743979602,239,0 +170743979651,241,0 +170743979699,242,0 +170743979747,243,0 +170743979797,243,0 +170743979845,243,0 +170743979892,242,0 +170743979940,223,0 +170743979988,218,0 +170743980036,220,0 +170743980084,222,0 +170743980132,226,0 +170743980180,229,0 +170743980228,231,0 +170743980276,232,0 +170743980326,234,0 +170743980374,235,0 +170743980423,236,0 +170743980473,239,0 +170743980522,239,0 +170743980570,238,0 +170743980618,239,0 +170743980666,237,0 +170743980714,242,0 +170743980762,243,0 +170743980810,242,0 +170743980858,224,0 +170743980906,218,0 +170743980954,219,0 +170743981003,221,0 +170743981053,223,0 +170743981101,226,0 +170743981149,228,0 +170743981197,232,0 +170743981247,231,0 +170743981294,233,0 +170743981344,233,0 +170743981392,235,0 +170743981440,239,0 +170743981489,239,0 +170743981538,241,0 +170743981585,241,0 +170743981633,242,0 +170743981681,242,0 +170743981729,242,0 +170743981777,220,0 +170743981827,219,0 +170743981875,219,0 +170743981923,220,0 +170743981971,224,0 +170743982020,227,0 +170743982068,229,0 +170743982118,227,0 +170743982166,230,0 +170743982214,234,0 +170743982261,230,0 +170743982309,238,0 +170743982357,238,0 +170743982405,238,0 +170743982455,242,0 +170743982504,240,0 +170743982552,242,0 +170743982600,242,0 +170743982650,243,0 +170743982698,223,0 +170743982746,219,0 +170743982794,220,0 +170743982842,223,0 +170743982890,225,0 +170743982938,226,0 +170743982986,231,0 +170743983035,233,0 +170743983083,236,0 +170743983131,236,0 +170743983179,238,0 +170743983227,238,0 +170743983275,244,0 +170743983323,241,0 +170743983371,239,0 +170743983419,243,0 +170743983467,239,0 +170743983515,241,0 +170743983565,243,0 +170743983613,224,0 +170743983661,221,0 +170743983709,224,0 +170743983758,228,0 +170743983806,230,0 +170743983854,233,0 +170743983902,234,0 +170743983950,237,0 +170743984000,236,0 +170743984048,236,0 +170743984096,236,0 +170743984144,237,0 +170743984193,238,0 +170743984241,240,0 +170743984289,241,0 +170743984337,242,0 +170743984387,243,0 +170743984434,243,0 +170743984482,242,0 +170743984530,222,0 +170743984578,220,0 +170743984628,225,0 +170743984676,228,0 +170743984724,231,0 +170743984772,231,0 +170743984820,229,0 +170743984869,230,0 +170743984917,233,0 +170743984965,235,0 +170743985015,240,0 +170743985064,237,0 +170743985112,240,0 +170743985160,240,0 +170743985210,240,0 +170743985258,246,0 +170743985306,243,0 +170743985354,243,0 +170743985402,243,0 +170743985451,223,0 +170743985499,219,0 +170743985547,222,0 +170743985595,226,0 +170743985644,228,0 +170743985692,228,0 +170743985740,232,0 +170743985788,234,0 +170743985836,234,0 +170743985884,236,0 +170743985932,239,0 +170743985980,238,0 +170743986028,239,0 +170743986077,241,0 +170743986127,242,0 +170743986175,242,0 +170743986222,243,0 +170743986270,243,0 +170743986318,241,0 +170743986368,223,0 +170743986416,219,0 +170743986464,219,0 +170743986512,221,0 +170743986559,225,0 +170743986607,226,0 +170743986655,229,0 +170743986703,228,0 +170743986751,230,0 +170743986799,231,0 +170743986847,234,0 +170743986895,234,0 +170743986942,239,0 +170743986990,238,0 +170743987038,240,0 +170743987086,239,0 +170743987134,242,0 +170743987182,244,0 +170743987230,241,0 +170743987278,221,0 +170743987327,218,0 +170743987377,218,0 +170743987425,219,0 +170743987473,220,0 +170743987521,221,0 +170743987569,221,0 +170743987617,224,0 +170743987666,226,0 +170743987714,229,0 +170743987764,232,0 +170743987812,234,0 +170743987860,237,0 +170743987907,238,0 +170743987957,236,0 +170743988005,240,0 +170743988053,239,0 +170743988101,237,0 +170743988149,243,0 +170743988197,223,0 +170743988245,218,0 +170743988293,219,0 +170743988341,221,0 +170743988389,221,0 +170743988437,223,0 +170743988485,227,0 +170743988532,229,0 +170743988580,231,0 +170743988628,261,0 +170743988678,233,0 +170743988726,236,0 +170743988774,236,0 +170743988822,236,0 +170743988871,238,0 +170743988921,241,0 +170743988969,241,0 +170743989017,243,0 +170743989065,241,0 +170743989113,221,0 +170743989161,218,0 +170743989209,218,0 +170743989257,219,0 +170743989305,219,0 +170743989352,221,0 +170743989402,224,0 +170743989450,227,0 +170743989498,228,0 +170743989546,229,0 +170743989594,233,0 +170743989643,237,0 +170743989691,239,0 +170743989739,241,0 +170743989787,240,0 +170743989835,238,0 +170743989883,240,0 +170743989931,238,0 +170743989979,242,0 +170743990029,222,0 +170743990077,218,0 +170743990125,218,0 +170743990174,220,0 +170743990222,224,0 +170743990270,225,0 +170743990318,229,0 +170743990366,229,0 +170743990414,230,0 +170743990462,233,0 +170743990511,235,0 +170743990561,237,0 +170743990609,238,0 +170743990657,239,0 +170743990704,245,0 +170743990752,241,0 +170743990800,244,0 +170743990848,243,0 +170743990896,242,0 +170743990944,221,0 +170743990992,218,0 +170743991041,218,0 +170743991089,221,0 +170743991137,222,0 +170743991186,225,0 +170743991234,227,0 +170743991282,230,0 +170743991332,229,0 +170743991381,238,0 +170743991429,233,0 +170743991477,238,0 +170743991525,239,0 +170743991573,240,0 +170743991620,241,0 +170743991668,241,0 +170743991716,243,0 +170743991764,243,0 +170743991812,242,0 +170743991860,222,0 +170743991909,219,0 +170743991957,219,0 +170743992005,222,0 +170743992053,225,0 +170743992101,228,0 +170743992149,229,0 +170743992199,229,0 +170743992247,234,0 +170743992295,234,0 +170743992343,234,0 +170743992391,236,0 +170743992439,238,0 +170743992487,240,0 +170743992535,244,0 +170743992584,243,0 +170743992632,242,0 +170743992680,243,0 +170743992728,242,0 +170743992776,221,0 +170743992824,218,0 +170743992872,219,0 +170743992920,220,0 +170743992968,222,0 +170743993016,225,0 +170743993065,227,0 +170743993115,229,0 +170743993164,229,0 +170743993212,232,0 +170743993260,234,0 +170743993308,236,0 +170743993356,239,0 +170743993406,240,0 +170743993454,241,0 +170743993503,241,0 +170743993551,241,0 +170743993599,242,0 +170743993647,242,0 +170743993697,223,0 +170743993746,219,0 +170743993794,219,0 +170743993844,222,0 +170743993893,225,0 +170743993941,227,0 +170743993989,229,0 +170743994037,232,0 +170743994085,233,0 +170743994133,236,0 +170743994181,236,0 +170743994231,239,0 +170743994279,241,0 +170743994328,241,0 +170743994376,243,0 +170743994425,242,0 +170743994475,242,0 +170743994523,241,0 +170743994571,241,0 +170743994618,221,0 +170743994666,220,0 +170743994714,223,0 +170743994762,225,0 +170743994810,228,0 +170743994858,229,0 +170743994907,231,0 +170743994955,234,0 +170743995003,237,0 +170743995053,235,0 +170743995101,240,0 +170743995148,239,0 +170743995196,249,0 +170743995244,241,0 +170743995292,240,0 +170743995342,243,0 +170743995390,244,0 +170743995439,244,0 +170743995489,242,0 +170743995537,222,0 +170743995585,220,0 +170743995634,223,0 +170743995682,226,0 +170743995730,230,0 +170743995778,232,0 +170743995828,235,0 +170743995876,235,0 +170743995924,236,0 +170743995972,241,0 +170743996019,239,0 +170743996067,239,0 +170743996117,240,0 +170743996167,241,0 +170743996216,242,0 +170743996264,252,0 +170743996314,242,0 +170743996362,242,0 +170743996410,241,0 +170743996458,223,0 +170743996507,218,0 +170743996557,219,0 +170743996605,221,0 +170743996653,225,0 +170743996702,227,0 +170743996752,227,0 +170743996800,233,0 +170743996848,235,0 +170743996897,238,0 +170743996945,239,0 +170743996995,240,0 +170743997044,241,0 +170743997092,243,0 +170743997142,243,0 +170743997190,242,0 +170743997238,242,0 +170743997286,244,0 +170743997335,241,0 +170743997383,221,0 +170743997431,218,0 +170743997479,220,0 +170743997527,221,0 +170743997576,225,0 +170743997624,228,0 +170743997672,229,0 +170743997720,231,0 +170743997770,233,0 +170743997818,237,0 +170743997867,235,0 +170743997915,238,0 +170743997965,239,0 +170743998014,243,0 +170743998062,239,0 +170743998110,241,0 +170743998158,241,0 +170743998206,241,0 +170743998254,239,0 +170743998304,222,0 +170743998353,222,0 +170743998403,224,0 +170743998452,228,0 +170743998502,230,0 +170743998551,232,0 +170743998599,233,0 +170743998647,233,0 +170743998695,235,0 +170743998743,240,0 +170743998793,236,0 +170743998841,238,0 +170743998889,238,0 +170743998937,240,0 +170743998985,241,0 +170743999033,243,0 +170743999082,242,0 +170743999130,240,0 +170743999178,237,0 +170743999228,220,0 +170743999276,219,0 +170743999324,219,0 +170743999372,222,0 +170743999420,225,0 +170743999467,227,0 +170743999517,229,0 +170743999565,229,0 +170743999614,229,0 +170743999664,231,0 +170743999713,233,0 +170743999761,236,0 +170743999811,238,0 +170743999859,238,0 +170743999907,239,0 +170743999956,242,0 +170744000004,241,0 +170744000054,241,0 +170744000102,239,0 +170744000150,218,0 +170744000199,218,0 +170744000249,219,0 +170744000298,221,0 +170744000348,221,0 +170744000396,224,0 +170744000444,242,0 +170744000492,228,0 +170744000541,230,0 +170744000589,233,0 +170744000639,236,0 +170744000688,238,0 +170744000736,237,0 +170744000784,239,0 +170744000832,241,0 +170744000880,242,0 +170744000928,241,0 +170744000976,242,0 +170744001024,240,0 +170744001073,219,0 +170744001121,218,0 +170744001171,218,0 +170744001220,219,0 +170744001268,220,0 +170744001318,220,0 +170744001367,222,0 +170744001415,226,0 +170744001463,233,0 +170744001511,232,0 +170744001561,234,0 +170744001609,236,0 +170744001657,237,0 +170744001705,236,0 +170744001753,240,0 +170744001800,241,0 +170744001848,239,0 +170744001896,243,0 +170744001944,238,0 +170744001992,219,0 +170744002040,219,0 +170744002090,219,0 +170744002139,221,0 +170744002189,222,0 +170744002237,225,0 +170744002285,228,0 +170744002333,228,0 +170744002382,232,0 +170744002430,234,0 +170744002478,236,0 +170744002526,238,0 +170744002574,239,0 +170744002622,239,0 +170744002670,240,0 +170744002718,240,0 +170744002766,241,0 +170744002814,243,0 +170744002864,236,0 +170744002912,218,0 +170744002961,218,0 +170744003011,219,0 +170744003060,220,0 +170744003108,223,0 +170744003156,225,0 +170744003204,227,0 +170744003252,230,0 +170744003300,232,0 +170744003348,234,0 +170744003396,234,0 +170744003443,237,0 +170744003491,237,0 +170744003541,241,0 +170744003589,243,0 +170744003637,242,0 +170744003685,244,0 +170744003733,242,0 +170744003780,231,0 +170744003830,220,0 +170744003878,221,0 +170744003926,221,0 +170744003974,222,0 +170744004021,226,0 +170744004069,233,0 +170744004117,235,0 +170744004165,229,0 +170744004213,231,0 +170744004261,232,0 +170744004309,235,0 +170744004357,238,0 +170744004404,241,0 +170744004452,240,0 +170744004500,239,0 +170744004548,241,0 +170744004596,243,0 +170744004644,243,0 +170744004692,233,0 +170744004740,220,0 +170744004789,221,0 +170744004837,224,0 +170744004885,227,0 +170744004933,229,0 +170744004981,230,0 +170744005031,232,0 +170744005080,234,0 +170744005130,235,0 +170744005179,236,0 +170744005229,239,0 +170744005277,262,0 +170744005325,242,0 +170744005373,238,0 +170744005422,238,0 +170744005470,240,0 +170744005520,245,0 +170744005568,242,0 +170744005616,237,0 +170744005664,219,0 +170744005712,220,0 +170744005761,224,0 +170744005809,227,0 +170744005859,230,0 +170744005908,231,0 +170744005956,236,0 +170744006006,233,0 +170744006054,236,0 +170744006102,234,0 +170744006151,239,0 +170744006199,241,0 +170744006247,242,0 +170744006297,241,0 +170744006345,242,0 +170744006393,242,0 +170744006442,244,0 +170744006492,240,0 +170744006541,220,0 +170744006589,219,0 +170744006637,221,0 +170744006685,224,0 +170744006735,227,0 +170744006784,228,0 +170744006832,232,0 +170744006880,231,0 +170744006928,232,0 +170744006977,235,0 +170744007027,236,0 +170744007076,240,0 +170744007124,240,0 +170744007172,242,0 +170744007220,240,0 +170744007268,244,0 +170744007316,242,0 +170744007364,245,0 +170744007412,242,0 +170744007461,220,0 +170744007509,219,0 +170744007557,220,0 +170744007605,221,0 +170744007653,225,0 +170744007701,228,0 +170744007749,231,0 +170744007796,233,0 +170744007844,232,0 +170744007894,233,0 +170744007944,235,0 +170744007992,237,0 +170744008040,238,0 +170744008089,238,0 +170744008137,241,0 +170744008187,241,0 +170744008236,242,0 +170744008284,241,0 +170744008332,240,0 +170744008382,221,0 +170744008431,217,0 +170744008481,217,0 +170744008529,218,0 +170744008578,220,0 +170744008628,223,0 +170744008676,225,0 +170744008725,228,0 +170744008775,230,0 +170744008823,232,0 +170744008872,235,0 +170744008920,237,0 +170744008968,239,0 +170744009018,239,0 +170744009066,240,0 +170744009114,241,0 +170744009162,242,0 +170744009210,244,0 +170744009258,241,0 +170744009307,221,0 +170744009355,218,0 +170744009403,218,0 +170744009453,219,0 +170744009501,220,0 +170744009549,221,0 +170744009596,225,0 +170744009644,228,0 +170744009692,230,0 +170744009740,231,0 +170744009790,235,0 +170744009839,235,0 +170744009889,237,0 +170744009938,241,0 +170744009988,241,0 +170744010036,240,0 +170744010084,242,0 +170744010132,244,0 +170744010180,242,0 +170744010230,221,0 +170744010277,218,0 +170744010327,219,0 +170744010376,221,0 +170744010424,223,0 +170744010474,227,0 +170744010523,228,0 +170744010571,228,0 +170744010621,230,0 +170744010669,234,0 +170744010717,235,0 +170744010766,238,0 +170744010814,239,0 +170744010862,239,0 +170744010910,241,0 +170744010958,242,0 +170744011006,243,0 +170744011054,246,0 +170744011102,242,0 +170744011150,221,0 +170744011198,220,0 +170744011246,220,0 +170744011295,227,0 +170744011343,227,0 +170744011393,254,0 +170744011441,230,0 +170744011489,230,0 +170744011537,233,0 +170744011585,236,0 +170744011633,237,0 +170744011681,241,0 +170744011730,240,0 +170744011778,241,0 +170744011828,242,0 +170744011875,242,0 +170744011925,243,0 +170744011974,243,0 +170744012024,241,0 +170744012072,219,0 +170744012120,220,0 +170744012168,220,0 +170744012216,223,0 +170744012264,225,0 +170744012312,227,0 +170744012360,227,0 +170744012407,232,0 +170744012455,235,0 +170744012503,236,0 +170744012553,238,0 +170744012602,239,0 +170744012652,245,0 +170744012700,243,0 +170744012749,242,0 +170744012797,242,0 +170744012847,242,0 +170744012895,243,0 +170744012943,241,0 +170744012992,219,0 +170744013040,218,0 +170744013088,220,0 +170744013136,221,0 +170744013184,224,0 +170744013232,226,0 +170744013280,228,0 +170744013328,230,0 +170744013378,233,0 +170744013426,236,0 +170744013474,239,0 +170744013522,239,0 +170744013571,240,0 +170744013619,241,0 +170744013667,242,0 +170744013715,242,0 +170744013763,243,0 +170744013811,244,0 +170744013859,241,0 +170744013908,219,0 +170744013956,218,0 +170744014004,218,0 +170744014052,219,0 +170744014101,220,0 +170744014149,221,0 +170744014199,223,0 +170744014247,225,0 +170744014295,229,0 +170744014343,228,0 +170744014391,233,0 +170744014439,233,0 +170744014486,236,0 +170744014534,238,0 +170744014582,238,0 +170744014630,241,0 +170744014678,241,0 +170744014727,241,0 +170744014775,241,0 +170744014823,221,0 +170744014871,220,0 +170744014919,221,0 +170744014967,225,0 +170744015017,226,0 +170744015066,226,0 +170744015116,229,0 +170744015165,233,0 +170744015215,235,0 +170744015263,236,0 +170744015311,238,0 +170744015359,238,0 +170744015407,241,0 +170744015455,242,0 +170744015504,241,0 +170744015552,241,0 +170744015600,244,0 +170744015648,242,0 +170744015696,240,0 +170744015744,220,0 +170744015792,219,0 +170744015840,224,0 +170744015888,227,0 +170744015936,230,0 +170744015984,231,0 +170744016031,234,0 +170744016079,236,0 +170744016127,236,0 +170744016175,238,0 +170744016223,239,0 +170744016271,242,0 +170744016319,241,0 +170744016367,244,0 +170744016414,241,0 +170744016462,242,0 +170744016510,241,0 +170744016558,242,0 +170744016608,240,0 +170744016655,221,0 +170744016705,224,0 +170744016753,226,0 +170744016801,230,0 +170744016850,232,0 +170744016898,234,0 +170744016946,236,0 +170744016996,239,0 +170744017043,241,0 +170744017093,241,0 +170744017142,242,0 +170744017190,242,0 +170744017240,243,0 +170744017288,243,0 +170744017336,243,0 +170744017384,243,0 +170744017432,244,0 +170744017480,243,0 +170744017529,239,0 +170744017577,224,0 +170744017625,227,0 +170744017675,229,0 +170744017723,233,0 +170744017771,233,0 +170744017819,234,0 +170744017867,236,0 +170744017915,238,0 +170744017963,248,0 +170744018011,240,0 +170744018059,242,0 +170744018108,242,0 +170744018156,240,0 +170744018206,247,0 +170744018254,241,0 +170744018302,243,0 +170744018349,242,0 +170744018397,243,0 +170744018447,239,0 +170744018495,220,0 +170744018543,220,0 +170744018592,223,0 +170744018640,227,0 +170744018690,230,0 +170744018738,232,0 +170744018786,233,0 +170744018834,233,0 +170744018882,236,0 +170744018931,237,0 +170744018979,239,0 +170744019029,239,0 +170744019078,239,0 +170744019128,241,0 +170744019176,242,0 +170744019225,243,0 +170744019273,244,0 +170744019321,242,0 +170744019371,228,0 +170744019420,218,0 +170744019470,218,0 +170744019518,220,0 +170744019566,221,0 +170744019615,224,0 +170744019663,227,0 +170744019711,229,0 +170744019759,231,0 +170744019807,232,0 +170744019855,235,0 +170744019903,235,0 +170744019951,237,0 +170744020001,238,0 +170744020049,241,0 +170744020097,245,0 +170744020145,243,0 +170744020193,242,0 +170744020241,243,0 +170744020290,225,0 +170744020338,219,0 +170744020386,218,0 +170744020434,219,0 +170744020482,221,0 +170744020530,222,0 +170744020578,223,0 +170744020627,225,0 +170744020675,228,0 +170744020723,231,0 +170744020771,236,0 +170744020819,242,0 +170744020867,236,0 +170744020915,239,0 +170744020963,239,0 +170744021011,241,0 +170744021059,241,0 +170744021107,242,0 +170744021155,243,0 +170744021205,229,0 +170744021253,219,0 +170744021302,220,0 +170744021352,221,0 +170744021401,224,0 +170744021449,226,0 +170744021497,228,0 +170744021545,230,0 +170744021595,232,0 +170744021643,236,0 +170744021691,236,0 +170744021740,238,0 +170744021790,240,0 +170744021838,241,0 +170744021886,240,0 +170744021934,242,0 +170744021982,242,0 +170744022030,242,0 +170744022077,240,0 +170744022125,221,0 +170744022173,218,0 +170744022223,219,0 +170744022271,220,0 +170744022320,223,0 +170744022368,225,0 +170744022418,227,0 +170744022468,229,0 +170744022516,230,0 +170744022564,232,0 +170744022612,233,0 +170744022659,246,0 +170744022707,240,0 +170744022755,238,0 +170744022803,238,0 +170744022851,252,0 +170744022901,240,0 +170744022950,241,0 +170744023000,240,0 +170744023048,221,0 +170744023098,217,0 +170744023146,218,0 +170744023195,218,0 +170744023245,220,0 +170744023293,223,0 +170744023342,226,0 +170744023390,229,0 +170744023438,230,0 +170744023486,231,0 +170744023534,233,0 +170744023582,234,0 +170744023630,237,0 +170744023680,237,0 +170744023728,239,0 +170744023776,244,0 +170744023824,239,0 +170744023872,240,0 +170744023919,240,0 +170744023967,221,0 +170744024015,216,0 +170744024065,217,0 +170744024115,217,0 +170744024162,218,0 +170744024210,219,0 +170744024258,219,0 +170744024306,222,0 +170744024356,224,0 +170744024405,227,0 +170744024453,230,0 +170744024501,234,0 +170744024549,235,0 +170744024597,235,0 +170744024645,236,0 +170744024693,240,0 +170744024741,238,0 +170744024789,240,0 +170744024837,241,0 +170744024885,222,0 +170744024933,219,0 +170744024983,220,0 +170744025032,222,0 +170744025080,224,0 +170744025130,227,0 +170744025179,234,0 +170744025227,232,0 +170744025276,231,0 +170744025324,234,0 +170744025372,239,0 +170744025422,239,0 +170744025470,240,0 +170744025519,242,0 +170744025569,242,0 +170744025617,243,0 +170744025666,243,0 +170744025716,243,0 +170744025765,241,0 +170744025815,221,0 +170744025863,219,0 +170744025911,220,0 +170744025960,224,0 +170744026010,227,0 +170744026058,229,0 +170744026107,230,0 +170744026157,231,0 +170744026207,235,0 +170744026256,236,0 +170744026304,237,0 +170744026354,239,0 +170744026402,239,0 +170744026450,242,0 +170744026498,241,0 +170744026547,244,0 +170744026597,243,0 +170744026644,243,0 +170744026692,241,0 +170744026740,219,0 +170744026788,219,0 +170744026838,219,0 +170744026886,222,0 +170744026935,226,0 +170744026983,227,0 +170744027031,229,0 +170744027079,232,0 +170744027129,232,0 +170744027177,235,0 +170744027225,235,0 +170744027274,239,0 +170744027322,241,0 +170744027370,241,0 +170744027418,240,0 +170744027467,245,0 +170744027517,243,0 +170744027567,242,0 +170744027615,240,0 +170744027664,218,0 +170744027712,219,0 +170744027760,219,0 +170744027808,220,0 +170744027858,222,0 +170744027906,225,0 +170744027953,227,0 +170744028003,229,0 +170744028053,245,0 +170744028101,233,0 +170744028149,235,0 +170744028197,237,0 +170744028245,238,0 +170744028293,241,0 +170744028341,239,0 +170744028390,240,0 +170744028438,240,0 +170744028488,243,0 +170744028537,222,0 +170744028587,219,0 +170744028635,219,0 +170744028683,223,0 +170744028731,225,0 +170744028779,227,0 +170744028828,229,0 +170744028876,233,0 +170744028924,233,0 +170744028972,236,0 +170744029020,238,0 +170744029068,240,0 +170744029117,240,0 +170744029165,241,0 +170744029215,243,0 +170744029263,242,0 +170744029311,242,0 +170744029359,243,0 +170744029407,240,0 +170744029455,222,0 +170744029503,219,0 +170744029551,221,0 +170744029599,225,0 +170744029647,230,0 +170744029696,231,0 +170744029746,229,0 +170744029794,232,0 +170744029842,236,0 +170744029891,237,0 +170744029941,239,0 +170744029989,240,0 +170744030036,241,0 +170744030084,240,0 +170744030132,242,0 +170744030180,242,0 +170744030228,243,0 +170744030276,243,0 +170744030324,242,0 +170744030372,221,0 +170744030420,218,0 +170744030468,219,0 +170744030517,222,0 +170744030567,224,0 +170744030615,227,0 +170744030663,231,0 +170744030711,233,0 +170744030759,234,0 +170744030808,235,0 +170744030856,238,0 +170744030904,239,0 +170744030952,241,0 +170744031000,245,0 +170744031049,244,0 +170744031097,242,0 +170744031147,243,0 +170744031196,243,0 +170744031244,243,0 +170744031294,220,0 +170744031342,219,0 +170744031390,219,0 +170744031438,222,0 +170744031486,225,0 +170744031535,227,0 +170744031583,228,0 +170744031631,233,0 +170744031679,234,0 +170744031727,234,0 +170744031775,238,0 +170744031825,239,0 +170744031872,241,0 +170744031920,241,0 +170744031968,242,0 +170744032016,243,0 +170744032066,241,0 +170744032113,242,0 +170744032161,241,0 +170744032209,221,0 +170744032257,219,0 +170744032305,219,0 +170744032355,222,0 +170744032402,226,0 +170744032452,228,0 +170744032500,229,0 +170744032548,232,0 +170744032595,233,0 +170744032643,235,0 +170744032691,239,0 +170744032739,239,0 +170744032787,240,0 +170744032835,240,0 +170744032883,241,0 +170744032932,243,0 +170744032980,243,0 +170744033030,242,0 +170744033078,240,0 +170744033125,221,0 +170744033173,218,0 +170744033221,219,0 +170744033271,222,0 +170744033319,225,0 +170744033367,227,0 +170744033415,229,0 +170744033463,231,0 +170744033511,232,0 +170744033559,236,0 +170744033606,237,0 +170744033654,239,0 +170744033702,240,0 +170744033750,240,0 +170744033798,240,0 +170744033846,242,0 +170744033894,241,0 +170744033942,242,0 +170744033990,241,0 +170744034038,226,0 +170744034085,219,0 +170744034135,218,0 +170744034183,220,0 +170744034232,222,0 +170744034280,225,0 +170744034328,228,0 +170744034376,230,0 +170744034424,234,0 +170744034472,234,0 +170744034519,236,0 +170744034567,238,0 +170744034617,239,0 +170744034665,241,0 +170744034713,242,0 +170744034761,245,0 +170744034809,244,0 +170744034856,243,0 +170744034904,241,0 +170744034952,221,0 +170744035000,219,0 +170744035048,219,0 +170744035096,220,0 +170744035144,222,0 +170744035192,224,0 +170744035240,226,0 +170744035288,229,0 +170744035336,231,0 +170744035384,232,0 +170744035431,235,0 +170744035479,238,0 +170744035529,240,0 +170744035577,239,0 +170744035625,242,0 +170744035673,242,0 +170744035722,242,0 +170744035770,241,0 +170744035818,240,0 +170744035868,223,0 +170744035916,226,0 +170744035964,236,0 +170744036013,233,0 +170744036061,233,0 +170744036109,234,0 +170744036157,238,0 +170744036205,238,0 +170744036253,241,0 +170744036301,241,0 +170744036349,240,0 +170744036397,241,0 +170744036445,242,0 +170744036493,244,0 +170744036543,242,0 +170744036590,241,0 +170744036638,242,0 +170744036688,242,0 +170744036736,241,0 +170744036784,224,0 +170744036832,220,0 +170744036880,224,0 +170744036928,228,0 +170744036976,228,0 +170744037024,231,0 +170744037071,235,0 +170744037119,233,0 +170744037167,234,0 +170744037215,235,0 +170744037263,237,0 +170744037311,248,0 +170744037359,240,0 +170744037407,241,0 +170744037454,242,0 +170744037502,242,0 +170744037550,247,0 +170744037598,243,0 +170744037646,241,0 +170744037694,238,0 +170744037743,218,0 +170744037791,220,0 +170744037839,223,0 +170744037887,225,0 +170744037935,228,0 +170744037983,231,0 +170744038032,232,0 +170744038080,233,0 +170744038128,236,0 +170744038176,238,0 +170744038224,238,0 +170744038273,240,0 +170744038321,241,0 +170744038369,242,0 +170744038419,244,0 +170744038468,242,0 +170744038516,243,0 +170744038564,242,0 +170744038612,240,0 +170744038660,219,0 +170744038708,219,0 +170744038756,220,0 +170744038804,223,0 +170744038853,226,0 +170744038901,228,0 +170744038949,229,0 +170744038997,234,0 +170744039045,234,0 +170744039093,237,0 +170744039141,240,0 +170744039189,240,0 +170744039237,241,0 +170744039285,241,0 +170744039334,239,0 +170744039382,241,0 +170744039430,243,0 +170744039479,242,0 +170744039527,240,0 +170744039575,219,0 +170744039623,218,0 +170744039671,221,0 +170744039719,224,0 +170744039767,227,0 +170744039815,228,0 +170744039863,230,0 +170744039913,232,0 +170744039961,234,0 +170744040009,236,0 diff --git a/laser_value/0209-11.csv b/laser_value/0209-11.csv new file mode 100644 index 0000000..47581ce --- /dev/null +++ b/laser_value/0209-11.csv @@ -0,0 +1,7447 @@ +timestamp,laser_value,event +170744040057,237,0 +170744040107,239,0 +170744040156,240,0 +170744040204,240,0 +170744040253,242,0 +170744040301,242,0 +170744040349,243,0 +170744040399,241,0 +170744040447,229,0 +170744040495,219,0 +170744040543,221,0 +170744040591,225,0 +170744040639,227,0 +170744040688,230,0 +170744040736,231,0 +170744040786,232,0 +170744040833,234,0 +170744040881,237,0 +170744040929,238,0 +170744040977,239,0 +170744041025,241,0 +170744041073,241,0 +170744041123,241,0 +170744041171,241,0 +170744041220,243,0 +170744041268,243,0 +170744041317,243,0 +170744041367,239,0 +170744041415,219,0 +170744041464,222,0 +170744041514,229,0 +170744041562,229,0 +170744041611,230,0 +170744041659,237,0 +170744041707,234,0 +170744041755,236,0 +170744041803,241,0 +170744041851,237,0 +170744041899,241,0 +170744041947,239,0 +170744041995,243,0 +170744042043,242,0 +170744042092,242,0 +170744042142,243,0 +170744042191,242,0 +170744042239,240,0 +170744042289,222,0 +170744042337,217,0 +170744042384,218,0 +170744042432,222,0 +170744042480,224,0 +170744042530,230,0 +170744042579,232,0 +170744042627,231,0 +170744042675,230,0 +170744042723,234,0 +170744042771,235,0 +170744042819,238,0 +170744042869,239,0 +170744042918,241,0 +170744042966,241,0 +170744043014,243,0 +170744043062,242,0 +170744043112,244,0 +170744043160,242,0 +170744043207,223,0 +170744043255,219,0 +170744043303,219,0 +170744043351,225,0 +170744043399,228,0 +170744043449,229,0 +170744043497,231,0 +170744043545,234,0 +170744043594,237,0 +170744043644,237,0 +170744043692,237,0 +170744043739,240,0 +170744043787,241,0 +170744043835,241,0 +170744043884,242,0 +170744043931,243,0 +170744043979,245,0 +170744044027,243,0 +170744044075,241,0 +170744044123,221,0 +170744044171,219,0 +170744044220,219,0 +170744044268,220,0 +170744044316,224,0 +170744044364,226,0 +170744044412,228,0 +170744044460,232,0 +170744044508,234,0 +170744044555,236,0 +170744044603,237,0 +170744044651,236,0 +170744044699,238,0 +170744044749,240,0 +170744044798,243,0 +170744044848,243,0 +170744044896,243,0 +170744044944,245,0 +170744044991,241,0 +170744045039,222,0 +170744045087,218,0 +170744045135,218,0 +170744045183,220,0 +170744045233,222,0 +170744045281,225,0 +170744045330,228,0 +170744045378,228,0 +170744045426,239,0 +170744045474,234,0 +170744045524,236,0 +170744045572,239,0 +170744045621,240,0 +170744045670,243,0 +170744045720,241,0 +170744045768,241,0 +170744045817,243,0 +170744045865,242,0 +170744045915,239,0 +170744045963,222,0 +170744046011,218,0 +170744046059,219,0 +170744046107,219,0 +170744046155,220,0 +170744046204,223,0 +170744046254,224,0 +170744046302,227,0 +170744046350,230,0 +170744046397,232,0 +170744046445,234,0 +170744046493,236,0 +170744046541,235,0 +170744046591,236,0 +170744046639,238,0 +170744046686,239,0 +170744046734,240,0 +170744046782,241,0 +170744046830,238,0 +170744046878,221,0 +170744046926,217,0 +170744046974,218,0 +170744047022,218,0 +170744047069,219,0 +170744047117,220,0 +170744047165,220,0 +170744047213,222,0 +170744047263,225,0 +170744047312,227,0 +170744047362,230,0 +170744047411,234,0 +170744047459,235,0 +170744047509,236,0 +170744047556,239,0 +170744047604,237,0 +170744047652,239,0 +170744047700,239,0 +170744047748,239,0 +170744047797,220,0 +170744047845,216,0 +170744047893,216,0 +170744047941,216,0 +170744047991,216,0 +170744048039,216,0 +170744048088,216,0 +170744048136,216,0 +170744048186,216,0 +170744048234,217,0 +170744048282,218,0 +170744048330,219,0 +170744048378,221,0 +170744048427,224,0 +170744048477,227,0 +170744048526,229,0 +170744048576,232,0 +170744048624,238,0 +170744048671,238,0 +170744048719,220,0 +170744048767,220,0 +170744048817,219,0 +170744048866,221,0 +170744048914,222,0 +170744048962,224,0 +170744049010,228,0 +170744049058,228,0 +170744049106,229,0 +170744049154,231,0 +170744049202,233,0 +170744049251,235,0 +170744049299,237,0 +170744049349,239,0 +170744049397,241,0 +170744049445,242,0 +170744049493,242,0 +170744049541,243,0 +170744049589,241,0 +170744049638,220,0 +170744049686,219,0 +170744049734,220,0 +170744049784,221,0 +170744049831,225,0 +170744049879,227,0 +170744049927,227,0 +170744049975,230,0 +170744050023,231,0 +170744050071,234,0 +170744050119,237,0 +170744050167,245,0 +170744050217,240,0 +170744050266,241,0 +170744050314,240,0 +170744050362,241,0 +170744050410,242,0 +170744050460,241,0 +170744050508,240,0 +170744050556,221,0 +170744050604,218,0 +170744050651,219,0 +170744050699,220,0 +170744050747,223,0 +170744050795,226,0 +170744050845,228,0 +170744050894,229,0 +170744050944,229,0 +170744050992,234,0 +170744051040,235,0 +170744051088,238,0 +170744051136,238,0 +170744051184,240,0 +170744051231,242,0 +170744051281,242,0 +170744051330,242,0 +170744051378,243,0 +170744051426,240,0 +170744051474,220,0 +170744051524,218,0 +170744051572,219,0 +170744051620,220,0 +170744051668,220,0 +170744051716,223,0 +170744051764,225,0 +170744051812,228,0 +170744051860,229,0 +170744051909,230,0 +170744051957,232,0 +170744052005,235,0 +170744052053,237,0 +170744052101,239,0 +170744052150,238,0 +170744052198,240,0 +170744052246,240,0 +170744052296,242,0 +170744052345,241,0 +170744052393,221,0 +170744052441,220,0 +170744052489,221,0 +170744052539,225,0 +170744052587,228,0 +170744052636,229,0 +170744052684,231,0 +170744052732,231,0 +170744052780,234,0 +170744052828,235,0 +170744052876,238,0 +170744052924,239,0 +170744052973,239,0 +170744053021,240,0 +170744053069,245,0 +170744053117,241,0 +170744053165,242,0 +170744053213,245,0 +170744053263,240,0 +170744053311,221,0 +170744053359,219,0 +170744053407,223,0 +170744053455,225,0 +170744053503,228,0 +170744053551,231,0 +170744053600,235,0 +170744053648,236,0 +170744053696,237,0 +170744053744,245,0 +170744053792,239,0 +170744053841,240,0 +170744053889,240,0 +170744053937,241,0 +170744053985,242,0 +170744054035,242,0 +170744054083,242,0 +170744054132,241,0 +170744054182,238,0 +170744054230,220,0 +170744054278,221,0 +170744054326,226,0 +170744054375,229,0 +170744054423,233,0 +170744054473,232,0 +170744054520,235,0 +170744054568,237,0 +170744054616,239,0 +170744054664,238,0 +170744054712,240,0 +170744054760,241,0 +170744054808,243,0 +170744054858,241,0 +170744054906,241,0 +170744054954,241,0 +170744055001,242,0 +170744055049,240,0 +170744055097,240,0 +170744055145,226,0 +170744055193,227,0 +170744055241,229,0 +170744055289,232,0 +170744055337,233,0 +170744055385,236,0 +170744055432,236,0 +170744055480,238,0 +170744055528,239,0 +170744055576,240,0 +170744055624,247,0 +170744055672,242,0 +170744055720,242,0 +170744055768,241,0 +170744055816,242,0 +170744055864,242,0 +170744055912,241,0 +170744055961,241,0 +170744056009,241,0 +170744056057,221,0 +170744056105,222,0 +170744056153,223,0 +170744056201,226,0 +170744056249,228,0 +170744056299,231,0 +170744056347,233,0 +170744056395,235,0 +170744056444,237,0 +170744056494,238,0 +170744056542,239,0 +170744056589,240,0 +170744056637,242,0 +170744056685,242,0 +170744056733,244,0 +170744056781,241,0 +170744056829,243,0 +170744056877,242,0 +170744056925,240,0 +170744056975,218,0 +170744057024,217,0 +170744057072,218,0 +170744057120,219,0 +170744057170,220,0 +170744057219,220,0 +170744057269,222,0 +170744057317,222,0 +170744057364,222,0 +170744057412,226,0 +170744057462,230,0 +170744057510,232,0 +170744057559,234,0 +170744057607,235,0 +170744057655,236,0 +170744057703,237,0 +170744057751,239,0 +170744057801,241,0 +170744057849,242,0 +170744057897,241,0 +170744057946,241,0 +170744057994,242,0 +170744058044,241,0 +170744058092,241,0 +170744058141,242,0 +170744058191,241,0 +170744058239,241,0 +170744058287,239,0 +170744058334,223,0 +170744058384,222,0 +170744058432,225,0 +170744058480,227,0 +170744058528,231,0 +170744058576,233,0 +170744058624,233,0 +170744058672,235,0 +170744058721,238,0 +170744058769,238,0 +170744058817,238,0 +170744058866,238,0 +170744058914,241,0 +170744058962,241,0 +170744059010,241,0 +170744059058,242,0 +170744059108,242,0 +170744059156,241,0 +170744059205,240,0 +170744059255,222,0 +170744059303,222,0 +170744059351,224,0 +170744059399,227,0 +170744059447,230,0 +170744059496,232,0 +170744059544,232,0 +170744059593,235,0 +170744059641,234,0 +170744059689,240,0 +170744059739,237,0 +170744059787,239,0 +170744059835,240,0 +170744059883,240,0 +170744059931,241,0 +170744059979,241,0 +170744060027,243,0 +170744060074,242,0 +170744060122,239,0 +170744060170,223,0 +170744060220,223,0 +170744060269,226,0 +170744060317,229,0 +170744060367,232,0 +170744060416,231,0 +170744060466,232,0 +170744060514,234,0 +170744060562,238,0 +170744060610,239,0 +170744060658,238,0 +170744060706,241,0 +170744060754,252,0 +170744060801,242,0 +170744060849,242,0 +170744060899,241,0 +170744060948,243,0 +170744060998,240,0 +170744061046,240,0 +170744061095,219,0 +170744061145,224,0 +170744061194,226,0 +170744061242,227,0 +170744061292,229,0 +170744061340,229,0 +170744061388,232,0 +170744061436,235,0 +170744061484,236,0 +170744061532,237,0 +170744061580,238,0 +170744061627,243,0 +170744061675,240,0 +170744061723,244,0 +170744061771,243,0 +170744061819,246,0 +170744061867,244,0 +170744061915,241,0 +170744061965,237,0 +170744062014,219,0 +170744062062,218,0 +170744062110,222,0 +170744062158,225,0 +170744062206,228,0 +170744062254,230,0 +170744062302,233,0 +170744062351,233,0 +170744062401,236,0 +170744062450,236,0 +170744062500,238,0 +170744062548,237,0 +170744062596,240,0 +170744062645,240,0 +170744062693,242,0 +170744062741,242,0 +170744062789,244,0 +170744062837,243,0 +170744062885,235,0 +170744062933,218,0 +170744062981,219,0 +170744063030,219,0 +170744063080,222,0 +170744063128,225,0 +170744063176,228,0 +170744063224,229,0 +170744063271,236,0 +170744063321,232,0 +170744063369,236,0 +170744063417,237,0 +170744063465,239,0 +170744063513,240,0 +170744063561,240,0 +170744063610,241,0 +170744063660,238,0 +170744063709,235,0 +170744063757,242,0 +170744063805,239,0 +170744063853,216,0 +170744063903,216,0 +170744063950,215,0 +170744063998,215,0 +170744064046,216,0 +170744064094,217,0 +170744064144,218,0 +170744064193,220,0 +170744064241,224,0 +170744064289,227,0 +170744064337,230,0 +170744064387,232,0 +170744064435,234,0 +170744064483,238,0 +170744064532,237,0 +170744064580,239,0 +170744064630,238,0 +170744064678,243,0 +170744064727,221,0 +170744064775,218,0 +170744064825,218,0 +170744064874,220,0 +170744064922,221,0 +170744064970,224,0 +170744065018,226,0 +170744065065,227,0 +170744065113,232,0 +170744065163,233,0 +170744065211,235,0 +170744065259,238,0 +170744065307,237,0 +170744065356,240,0 +170744065404,241,0 +170744065452,241,0 +170744065500,242,0 +170744065549,243,0 +170744065599,239,0 +170744065648,221,0 +170744065698,217,0 +170744065746,219,0 +170744065794,219,0 +170744065842,220,0 +170744065891,220,0 +170744065939,222,0 +170744065987,226,0 +170744066035,229,0 +170744066083,230,0 +170744066131,233,0 +170744066179,236,0 +170744066227,239,0 +170744066275,238,0 +170744066323,240,0 +170744066372,241,0 +170744066422,241,0 +170744066470,242,0 +170744066519,246,0 +170744066567,221,0 +170744066617,219,0 +170744066665,219,0 +170744066713,220,0 +170744066761,221,0 +170744066810,223,0 +170744066858,226,0 +170744066907,230,0 +170744066957,230,0 +170744067005,233,0 +170744067053,235,0 +170744067101,236,0 +170744067150,238,0 +170744067198,240,0 +170744067246,239,0 +170744067294,244,0 +170744067342,242,0 +170744067390,241,0 +170744067438,239,0 +170744067488,222,0 +170744067536,218,0 +170744067584,218,0 +170744067631,219,0 +170744067679,220,0 +170744067727,221,0 +170744067775,222,0 +170744067825,225,0 +170744067873,227,0 +170744067921,231,0 +170744067969,233,0 +170744068018,234,0 +170744068066,238,0 +170744068114,240,0 +170744068163,239,0 +170744068213,237,0 +170744068262,241,0 +170744068312,241,0 +170744068360,241,0 +170744068408,221,0 +170744068456,218,0 +170744068504,218,0 +170744068553,221,0 +170744068601,223,0 +170744068649,225,0 +170744068697,227,0 +170744068745,231,0 +170744068793,234,0 +170744068843,235,0 +170744068891,237,0 +170744068940,239,0 +170744068990,240,0 +170744069038,239,0 +170744069086,240,0 +170744069134,241,0 +170744069182,241,0 +170744069229,243,0 +170744069279,240,0 +170744069327,221,0 +170744069375,217,0 +170744069424,218,0 +170744069472,219,0 +170744069522,220,0 +170744069570,223,0 +170744069619,226,0 +170744069667,228,0 +170744069715,229,0 +170744069763,230,0 +170744069811,235,0 +170744069859,238,0 +170744069907,238,0 +170744069957,239,0 +170744070004,239,0 +170744070052,239,0 +170744070102,241,0 +170744070150,243,0 +170744070198,242,0 +170744070247,219,0 +170744070295,216,0 +170744070343,217,0 +170744070391,218,0 +170744070439,219,0 +170744070487,220,0 +170744070536,222,0 +170744070584,223,0 +170744070634,225,0 +170744070683,227,0 +170744070731,230,0 +170744070779,232,0 +170744070827,234,0 +170744070876,236,0 +170744070926,234,0 +170744070973,237,0 +170744071021,240,0 +170744071069,239,0 +170744071117,239,0 +170744071165,221,0 +170744071213,218,0 +170744071261,219,0 +170744071309,221,0 +170744071358,223,0 +170744071408,224,0 +170744071456,231,0 +170744071505,228,0 +170744071555,231,0 +170744071603,233,0 +170744071651,234,0 +170744071699,240,0 +170744071747,237,0 +170744071794,238,0 +170744071842,239,0 +170744071892,240,0 +170744071940,240,0 +170744071988,240,0 +170744072037,237,0 +170744072085,219,0 +170744072135,218,0 +170744072184,219,0 +170744072232,221,0 +170744072280,222,0 +170744072328,225,0 +170744072376,227,0 +170744072424,230,0 +170744072472,232,0 +170744072520,233,0 +170744072568,234,0 +170744072617,237,0 +170744072665,237,0 +170744072713,237,0 +170744072761,240,0 +170744072811,240,0 +170744072859,241,0 +170744072907,241,0 +170744072955,238,0 +170744073003,220,0 +170744073052,220,0 +170744073100,223,0 +170744073148,226,0 +170744073196,229,0 +170744073244,231,0 +170744073293,233,0 +170744073341,237,0 +170744073389,236,0 +170744073437,237,0 +170744073485,238,0 +170744073535,240,0 +170744073583,241,0 +170744073632,241,0 +170744073680,241,0 +170744073728,242,0 +170744073776,240,0 +170744073824,240,0 +170744073873,239,0 +170744073921,226,0 +170744073969,228,0 +170744074017,229,0 +170744074065,229,0 +170744074113,232,0 +170744074162,237,0 +170744074210,237,0 +170744074258,239,0 +170744074306,240,0 +170744074354,240,0 +170744074402,240,0 +170744074450,241,0 +170744074498,242,0 +170744074545,243,0 +170744074593,241,0 +170744074641,243,0 +170744074689,241,0 +170744074737,241,0 +170744074787,239,0 +170744074835,225,0 +170744074883,227,0 +170744074931,229,0 +170744074978,232,0 +170744075026,233,0 +170744075074,235,0 +170744075124,235,0 +170744075172,237,0 +170744075220,238,0 +170744075268,239,0 +170744075316,237,0 +170744075365,241,0 +170744075413,239,0 +170744075461,240,0 +170744075511,241,0 +170744075560,242,0 +170744075608,243,0 +170744075658,239,0 +170744075706,239,0 +170744075754,220,0 +170744075802,220,0 +170744075851,223,0 +170744075901,227,0 +170744075950,229,0 +170744075998,231,0 +170744076046,232,0 +170744076094,234,0 +170744076142,237,0 +170744076190,236,0 +170744076238,236,0 +170744076288,238,0 +170744076336,240,0 +170744076383,241,0 +170744076431,241,0 +170744076479,243,0 +170744076527,240,0 +170744076575,241,0 +170744076623,238,0 +170744076671,220,0 +170744076719,220,0 +170744076767,223,0 +170744076815,225,0 +170744076863,228,0 +170744076911,231,0 +170744076959,233,0 +170744077009,232,0 +170744077058,234,0 +170744077106,234,0 +170744077154,236,0 +170744077202,238,0 +170744077250,238,0 +170744077298,240,0 +170744077346,241,0 +170744077394,242,0 +170744077443,243,0 +170744077491,241,0 +170744077539,239,0 +170744077587,221,0 +170744077635,222,0 +170744077684,226,0 +170744077732,227,0 +170744077780,231,0 +170744077828,231,0 +170744077877,233,0 +170744077925,235,0 +170744077973,236,0 +170744078023,237,0 +170744078072,237,0 +170744078120,240,0 +170744078170,240,0 +170744078219,241,0 +170744078267,241,0 +170744078315,242,0 +170744078365,242,0 +170744078413,241,0 +170744078462,238,0 +170744078510,221,0 +170744078560,221,0 +170744078608,224,0 +170744078656,230,0 +170744078705,231,0 +170744078753,231,0 +170744078801,233,0 +170744078849,234,0 +170744078898,235,0 +170744078946,239,0 +170744078994,239,0 +170744079042,243,0 +170744079090,241,0 +170744079138,240,0 +170744079186,242,0 +170744079234,242,0 +170744079282,240,0 +170744079330,240,0 +170744079380,238,0 +170744079429,218,0 +170744079477,219,0 +170744079525,223,0 +170744079573,226,0 +170744079623,228,0 +170744079672,230,0 +170744079722,232,0 +170744079771,241,0 +170744079819,235,0 +170744079869,237,0 +170744079916,239,0 +170744079964,240,0 +170744080014,241,0 +170744080062,241,0 +170744080110,242,0 +170744080159,241,0 +170744080207,241,0 +170744080257,239,0 +170744080305,228,0 +170744080353,218,0 +170744080402,221,0 +170744080451,223,0 +170744080501,228,0 +170744080549,227,0 +170744080599,231,0 +170744080646,232,0 +170744080696,240,0 +170744080744,237,0 +170744080792,237,0 +170744080840,239,0 +170744080888,240,0 +170744080935,240,0 +170744080983,242,0 +170744081031,242,0 +170744081079,242,0 +170744081127,239,0 +170744081177,239,0 +170744081224,220,0 +170744081272,219,0 +170744081320,220,0 +170744081368,222,0 +170744081416,225,0 +170744081464,228,0 +170744081512,231,0 +170744081562,231,0 +170744081610,232,0 +170744081658,239,0 +170744081707,235,0 +170744081755,238,0 +170744081803,238,0 +170744081851,240,0 +170744081899,242,0 +170744081947,242,0 +170744081995,242,0 +170744082044,242,0 +170744082092,240,0 +170744082142,220,0 +170744082190,217,0 +170744082238,219,0 +170744082286,219,0 +170744082334,220,0 +170744082383,223,0 +170744082431,226,0 +170744082479,225,0 +170744082527,229,0 +170744082577,234,0 +170744082625,231,0 +170744082673,238,0 +170744082721,237,0 +170744082769,240,0 +170744082817,238,0 +170744082865,242,0 +170744082914,241,0 +170744082962,246,0 +170744083010,241,0 +170744083058,220,0 +170744083106,217,0 +170744083154,219,0 +170744083202,218,0 +170744083250,219,0 +170744083298,220,0 +170744083346,223,0 +170744083394,226,0 +170744083443,229,0 +170744083491,230,0 +170744083539,233,0 +170744083589,234,0 +170744083636,235,0 +170744083684,238,0 +170744083732,240,0 +170744083780,246,0 +170744083828,238,0 +170744083878,240,0 +170744083927,243,0 +170744083977,220,0 +170744084025,218,0 +170744084074,219,0 +170744084122,221,0 +170744084170,224,0 +170744084218,227,0 +170744084266,228,0 +170744084314,231,0 +170744084364,234,0 +170744084412,236,0 +170744084459,236,0 +170744084507,238,0 +170744084555,239,0 +170744084605,238,0 +170744084653,242,0 +170744084701,242,0 +170744084749,243,0 +170744084797,242,0 +170744084844,240,0 +170744084892,221,0 +170744084940,218,0 +170744084990,218,0 +170744085038,219,0 +170744085086,223,0 +170744085134,230,0 +170744085182,228,0 +170744085230,230,0 +170744085279,232,0 +170744085327,239,0 +170744085375,236,0 +170744085423,239,0 +170744085473,239,0 +170744085521,240,0 +170744085569,240,0 +170744085617,242,0 +170744085664,239,0 +170744085714,243,0 +170744085762,240,0 +170744085811,220,0 +170744085859,216,0 +170744085907,215,0 +170744085955,215,0 +170744086005,216,0 +170744086054,217,0 +170744086102,217,0 +170744086152,219,0 +170744086201,222,0 +170744086251,225,0 +170744086299,230,0 +170744086347,231,0 +170744086396,234,0 +170744086444,237,0 +170744086494,238,0 +170744086543,239,0 +170744086593,241,0 +170744086641,241,0 +170744086689,240,0 +170744086737,221,0 +170744086785,217,0 +170744086833,218,0 +170744086882,220,0 +170744086930,221,0 +170744086978,221,0 +170744087028,222,0 +170744087075,225,0 +170744087123,227,0 +170744087171,229,0 +170744087219,232,0 +170744087267,233,0 +170744087315,237,0 +170744087365,236,0 +170744087413,239,0 +170744087461,239,0 +170744087509,241,0 +170744087557,240,0 +170744087605,250,0 +170744087653,222,0 +170744087700,219,0 +170744087748,220,0 +170744087798,223,0 +170744087846,227,0 +170744087894,227,0 +170744087943,229,0 +170744087991,232,0 +170744088039,234,0 +170744088087,236,0 +170744088135,238,0 +170744088183,239,0 +170744088233,240,0 +170744088282,242,0 +170744088330,241,0 +170744088378,242,0 +170744088426,241,0 +170744088474,242,0 +170744088523,240,0 +170744088572,222,0 +170744088622,219,0 +170744088671,222,0 +170744088719,225,0 +170744088767,228,0 +170744088815,230,0 +170744088865,230,0 +170744088914,235,0 +170744088964,235,0 +170744089012,237,0 +170744089060,238,0 +170744089108,242,0 +170744089155,241,0 +170744089203,240,0 +170744089251,241,0 +170744089301,240,0 +170744089349,242,0 +170744089398,241,0 +170744089448,241,0 +170744089496,223,0 +170744089545,223,0 +170744089593,226,0 +170744089641,226,0 +170744089691,230,0 +170744089739,232,0 +170744089788,234,0 +170744089838,235,0 +170744089886,238,0 +170744089935,241,0 +170744089983,241,0 +170744090033,240,0 +170744090081,242,0 +170744090129,240,0 +170744090177,242,0 +170744090226,239,0 +170744090274,241,0 +170744090322,240,0 +170744090370,238,0 +170744090418,219,0 +170744090467,222,0 +170744090515,223,0 +170744090563,228,0 +170744090611,228,0 +170744090659,230,0 +170744090707,233,0 +170744090755,235,0 +170744090803,236,0 +170744090853,237,0 +170744090900,236,0 +170744090948,240,0 +170744090998,241,0 +170744091047,239,0 +170744091095,240,0 +170744091143,242,0 +170744091191,242,0 +170744091241,240,0 +170744091289,240,0 +170744091337,219,0 +170744091386,218,0 +170744091434,222,0 +170744091482,225,0 +170744091532,228,0 +170744091580,230,0 +170744091629,232,0 +170744091677,234,0 +170744091725,237,0 +170744091773,237,0 +170744091821,238,0 +170744091870,243,0 +170744091918,238,0 +170744091968,241,0 +170744092017,242,0 +170744092065,243,0 +170744092113,240,0 +170744092161,240,0 +170744092209,229,0 +170744092257,219,0 +170744092305,220,0 +170744092353,224,0 +170744092402,226,0 +170744092452,230,0 +170744092501,231,0 +170744092549,234,0 +170744092597,236,0 +170744092645,237,0 +170744092693,239,0 +170744092741,238,0 +170744092789,240,0 +170744092839,240,0 +170744092888,241,0 +170744092938,242,0 +170744092985,242,0 +170744093035,240,0 +170744093084,240,0 +170744093132,220,0 +170744093180,220,0 +170744093228,224,0 +170744093276,227,0 +170744093324,230,0 +170744093372,233,0 +170744093420,234,0 +170744093468,235,0 +170744093516,238,0 +170744093564,237,0 +170744093612,240,0 +170744093662,241,0 +170744093711,241,0 +170744093759,242,0 +170744093807,243,0 +170744093855,240,0 +170744093903,241,0 +170744093951,242,0 +170744093999,241,0 +170744094047,221,0 +170744094095,221,0 +170744094143,223,0 +170744094191,227,0 +170744094240,229,0 +170744094288,231,0 +170744094336,232,0 +170744094384,233,0 +170744094432,236,0 +170744094481,235,0 +170744094529,238,0 +170744094579,239,0 +170744094627,240,0 +170744094675,241,0 +170744094723,240,0 +170744094772,242,0 +170744094820,240,0 +170744094868,240,0 +170744094916,240,0 +170744094964,220,0 +170744095012,218,0 +170744095062,220,0 +170744095110,223,0 +170744095158,226,0 +170744095207,228,0 +170744095255,230,0 +170744095303,231,0 +170744095351,231,0 +170744095399,234,0 +170744095447,235,0 +170744095496,237,0 +170744095544,239,0 +170744095594,238,0 +170744095643,239,0 +170744095691,239,0 +170744095739,241,0 +170744095787,238,0 +170744095837,238,0 +170744095885,220,0 +170744095933,218,0 +170744095981,218,0 +170744096028,221,0 +170744096076,224,0 +170744096124,226,0 +170744096174,227,0 +170744096222,230,0 +170744096270,230,0 +170744096318,232,0 +170744096366,237,0 +170744096413,237,0 +170744096461,239,0 +170744096509,239,0 +170744096557,238,0 +170744096605,237,0 +170744096655,240,0 +170744096703,241,0 +170744096752,239,0 +170744096800,220,0 +170744096848,217,0 +170744096896,217,0 +170744096944,220,0 +170744096992,222,0 +170744097041,225,0 +170744097089,226,0 +170744097139,226,0 +170744097187,229,0 +170744097235,231,0 +170744097283,234,0 +170744097331,236,0 +170744097380,237,0 +170744097430,238,0 +170744097478,241,0 +170744097525,240,0 +170744097573,239,0 +170744097621,239,0 +170744097669,238,0 +170744097717,221,0 +170744097767,217,0 +170744097815,218,0 +170744097863,219,0 +170744097911,221,0 +170744097960,224,0 +170744098008,224,0 +170744098056,228,0 +170744098104,231,0 +170744098152,232,0 +170744098200,235,0 +170744098248,237,0 +170744098296,238,0 +170744098345,240,0 +170744098393,241,0 +170744098441,240,0 +170744098489,241,0 +170744098537,242,0 +170744098585,240,0 +170744098635,225,0 +170744098682,217,0 +170744098730,217,0 +170744098780,216,0 +170744098828,217,0 +170744098876,217,0 +170744098923,219,0 +170744098973,221,0 +170744099023,225,0 +170744099070,226,0 +170744099120,231,0 +170744099168,233,0 +170744099216,235,0 +170744099265,237,0 +170744099313,236,0 +170744099361,237,0 +170744099409,240,0 +170744099459,239,0 +170744099507,241,0 +170744099555,221,0 +170744099603,217,0 +170744099651,217,0 +170744099699,219,0 +170744099747,220,0 +170744099795,222,0 +170744099844,224,0 +170744099892,228,0 +170744099940,230,0 +170744099988,232,0 +170744100037,235,0 +170744100085,233,0 +170744100133,235,0 +170744100181,238,0 +170744100229,239,0 +170744100277,240,0 +170744100325,242,0 +170744100373,241,0 +170744100422,239,0 +170744100470,221,0 +170744100520,216,0 +170744100569,216,0 +170744100617,217,0 +170744100665,218,0 +170744100713,218,0 +170744100761,223,0 +170744100809,221,0 +170744100859,224,0 +170744100907,227,0 +170744100956,230,0 +170744101004,232,0 +170744101052,234,0 +170744101100,237,0 +170744101148,237,0 +170744101197,239,0 +170744101245,240,0 +170744101293,237,0 +170744101341,239,0 +170744101389,222,0 +170744101437,218,0 +170744101485,219,0 +170744101533,219,0 +170744101581,222,0 +170744101631,228,0 +170744101680,225,0 +170744101730,228,0 +170744101779,232,0 +170744101829,233,0 +170744101878,236,0 +170744101928,238,0 +170744101977,239,0 +170744102025,239,0 +170744102073,239,0 +170744102121,242,0 +170744102168,242,0 +170744102216,229,0 +170744102266,238,0 +170744102314,221,0 +170744102362,217,0 +170744102409,218,0 +170744102457,218,0 +170744102505,221,0 +170744102555,226,0 +170744102604,227,0 +170744102652,230,0 +170744102700,231,0 +170744102750,233,0 +170744102798,235,0 +170744102847,236,0 +170744102895,240,0 +170744102945,238,0 +170744102993,238,0 +170744103041,239,0 +170744103089,240,0 +170744103137,242,0 +170744103185,239,0 +170744103233,221,0 +170744103281,222,0 +170744103329,224,0 +170744103377,227,0 +170744103424,229,0 +170744103472,231,0 +170744103520,233,0 +170744103568,234,0 +170744103616,237,0 +170744103667,240,0 +170744103716,239,0 +170744103766,242,0 +170744103814,240,0 +170744103862,240,0 +170744103909,241,0 +170744103957,241,0 +170744104005,241,0 +170744104053,240,0 +170744104101,239,0 +170744104149,224,0 +170744104199,223,0 +170744104247,226,0 +170744104295,231,0 +170744104343,232,0 +170744104390,233,0 +170744104438,233,0 +170744104486,240,0 +170744104534,238,0 +170744104582,237,0 +170744104630,239,0 +170744104678,244,0 +170744104728,240,0 +170744104776,240,0 +170744104825,240,0 +170744104873,240,0 +170744104922,242,0 +170744104970,239,0 +170744105018,240,0 +170744105068,224,0 +170744105116,224,0 +170744105164,227,0 +170744105212,229,0 +170744105260,231,0 +170744105308,233,0 +170744105355,234,0 +170744105403,235,0 +170744105451,237,0 +170744105499,238,0 +170744105547,240,0 +170744105595,239,0 +170744105644,240,0 +170744105692,240,0 +170744105740,240,0 +170744105788,241,0 +170744105837,239,0 +170744105885,240,0 +170744105935,239,0 +170744105983,222,0 +170744106031,219,0 +170744106079,222,0 +170744106127,225,0 +170744106175,226,0 +170744106223,229,0 +170744106270,233,0 +170744106318,233,0 +170744106366,235,0 +170744106414,236,0 +170744106462,239,0 +170744106510,239,0 +170744106558,242,0 +170744106605,240,0 +170744106653,242,0 +170744106703,241,0 +170744106751,241,0 +170744106798,240,0 +170744106846,239,0 +170744106894,221,0 +170744106942,218,0 +170744106990,220,0 +170744107038,222,0 +170744107086,227,0 +170744107134,226,0 +170744107181,228,0 +170744107229,230,0 +170744107277,233,0 +170744107325,233,0 +170744107373,236,0 +170744107421,238,0 +170744107469,239,0 +170744107517,240,0 +170744107566,241,0 +170744107616,241,0 +170744107664,241,0 +170744107712,240,0 +170744107760,239,0 +170744107807,222,0 +170744107855,217,0 +170744107905,218,0 +170744107953,220,0 +170744108001,223,0 +170744108048,226,0 +170744108096,227,0 +170744108144,229,0 +170744108192,230,0 +170744108240,233,0 +170744108288,236,0 +170744108336,238,0 +170744108384,239,0 +170744108431,239,0 +170744108479,242,0 +170744108527,241,0 +170744108575,241,0 +170744108623,240,0 +170744108671,238,0 +170744108719,228,0 +170744108767,218,0 +170744108815,218,0 +170744108862,221,0 +170744108910,223,0 +170744108958,227,0 +170744109008,227,0 +170744109056,229,0 +170744109103,230,0 +170744109151,234,0 +170744109199,234,0 +170744109247,236,0 +170744109295,236,0 +170744109345,239,0 +170744109394,238,0 +170744109442,240,0 +170744109490,241,0 +170744109538,242,0 +170744109586,241,0 +170744109634,222,0 +170744109682,218,0 +170744109730,225,0 +170744109778,223,0 +170744109826,225,0 +170744109873,226,0 +170744109921,229,0 +170744109969,232,0 +170744110017,233,0 +170744110067,237,0 +170744110115,236,0 +170744110163,238,0 +170744110211,239,0 +170744110259,238,0 +170744110307,241,0 +170744110356,240,0 +170744110404,241,0 +170744110452,241,0 +170744110500,240,0 +170744110548,220,0 +170744110596,218,0 +170744110644,218,0 +170744110692,221,0 +170744110741,223,0 +170744110789,226,0 +170744110837,228,0 +170744110885,232,0 +170744110933,234,0 +170744110981,235,0 +170744111031,237,0 +170744111079,238,0 +170744111127,238,0 +170744111174,239,0 +170744111222,240,0 +170744111270,240,0 +170744111318,241,0 +170744111366,240,0 +170744111414,239,0 +170744111462,238,0 +170744111512,219,0 +170744111561,219,0 +170744111609,223,0 +170744111657,227,0 +170744111707,229,0 +170744111755,232,0 +170744111803,232,0 +170744111851,235,0 +170744111899,235,0 +170744111947,235,0 +170744111995,239,0 +170744112044,240,0 +170744112094,240,0 +170744112143,240,0 +170744112193,241,0 +170744112241,240,0 +170744112289,240,0 +170744112337,238,0 +170744112386,221,0 +170744112434,220,0 +170744112482,221,0 +170744112530,224,0 +170744112578,227,0 +170744112626,230,0 +170744112674,232,0 +170744112722,233,0 +170744112771,235,0 +170744112819,237,0 +170744112867,236,0 +170744112915,239,0 +170744112963,240,0 +170744113011,240,0 +170744113059,241,0 +170744113108,239,0 +170744113156,242,0 +170744113204,241,0 +170744113252,240,0 +170744113300,222,0 +170744113349,221,0 +170744113397,223,0 +170744113445,226,0 +170744113493,230,0 +170744113541,232,0 +170744113588,232,0 +170744113636,234,0 +170744113686,238,0 +170744113734,237,0 +170744113782,239,0 +170744113829,239,0 +170744113877,240,0 +170744113927,240,0 +170744113975,239,0 +170744114023,243,0 +170744114070,242,0 +170744114118,241,0 +170744114168,240,0 +170744114216,230,0 +170744114265,218,0 +170744114313,218,0 +170744114361,221,0 +170744114409,225,0 +170744114457,227,0 +170744114505,228,0 +170744114553,232,0 +170744114601,233,0 +170744114649,235,0 +170744114697,236,0 +170744114745,237,0 +170744114793,238,0 +170744114842,241,0 +170744114891,240,0 +170744114939,242,0 +170744114987,241,0 +170744115035,240,0 +170744115083,240,0 +170744115131,238,0 +170744115179,217,0 +170744115227,217,0 +170744115275,217,0 +170744115323,221,0 +170744115371,220,0 +170744115419,222,0 +170744115467,225,0 +170744115515,228,0 +170744115563,231,0 +170744115612,232,0 +170744115660,234,0 +170744115709,238,0 +170744115757,238,0 +170744115805,240,0 +170744115855,240,0 +170744115903,241,0 +170744115952,241,0 +170744116000,240,0 +170744116050,221,0 +170744116098,217,0 +170744116147,218,0 +170744116195,219,0 +170744116243,220,0 +170744116293,223,0 +170744116341,226,0 +170744116389,228,0 +170744116437,230,0 +170744116485,232,0 +170744116534,234,0 +170744116582,237,0 +170744116630,238,0 +170744116678,239,0 +170744116726,240,0 +170744116774,240,0 +170744116822,241,0 +170744116869,241,0 +170744116917,240,0 +170744116967,220,0 +170744117015,218,0 +170744117062,218,0 +170744117110,219,0 +170744117158,220,0 +170744117206,222,0 +170744117254,226,0 +170744117302,227,0 +170744117350,229,0 +170744117398,232,0 +170744117447,235,0 +170744117497,238,0 +170744117544,239,0 +170744117592,261,0 +170744117640,239,0 +170744117688,240,0 +170744117736,241,0 +170744117784,245,0 +170744117832,241,0 +170744117880,239,0 +170744117930,218,0 +170744117978,218,0 +170744118025,218,0 +170744118075,220,0 +170744118123,221,0 +170744118171,224,0 +170744118220,227,0 +170744118268,229,0 +170744118316,230,0 +170744118364,235,0 +170744118412,235,0 +170744118460,236,0 +170744118508,235,0 +170744118558,238,0 +170744118606,239,0 +170744118654,240,0 +170744118702,246,0 +170744118750,241,0 +170744118798,236,0 +170744118846,218,0 +170744118894,218,0 +170744118942,219,0 +170744118989,219,0 +170744119037,223,0 +170744119085,226,0 +170744119133,228,0 +170744119183,228,0 +170744119232,230,0 +170744119282,232,0 +170744119330,232,0 +170744119378,234,0 +170744119426,235,0 +170744119474,236,0 +170744119522,238,0 +170744119570,238,0 +170744119617,237,0 +170744119667,239,0 +170744119715,228,0 +170744119763,218,0 +170744119811,218,0 +170744119860,221,0 +170744119908,224,0 +170744119956,225,0 +170744120004,225,0 +170744120052,229,0 +170744120100,231,0 +170744120148,234,0 +170744120196,235,0 +170744120244,236,0 +170744120292,236,0 +170744120341,240,0 +170744120389,238,0 +170744120437,239,0 +170744120485,239,0 +170744120533,240,0 +170744120581,239,0 +170744120631,235,0 +170744120680,218,0 +170744120728,218,0 +170744120776,220,0 +170744120824,222,0 +170744120872,225,0 +170744120920,227,0 +170744120968,230,0 +170744121018,232,0 +170744121065,234,0 +170744121113,235,0 +170744121161,237,0 +170744121209,237,0 +170744121257,239,0 +170744121305,240,0 +170744121355,240,0 +170744121403,240,0 +170744121451,240,0 +170744121499,249,0 +170744121548,237,0 +170744121596,218,0 +170744121646,219,0 +170744121694,220,0 +170744121742,223,0 +170744121790,225,0 +170744121837,227,0 +170744121885,230,0 +170744121935,231,0 +170744121984,235,0 +170744122034,234,0 +170744122082,235,0 +170744122130,236,0 +170744122178,240,0 +170744122226,240,0 +170744122274,240,0 +170744122322,241,0 +170744122369,239,0 +170744122417,240,0 +170744122465,235,0 +170744122513,218,0 +170744122561,218,0 +170744122611,219,0 +170744122659,219,0 +170744122707,222,0 +170744122756,225,0 +170744122804,227,0 +170744122852,229,0 +170744122900,232,0 +170744122948,234,0 +170744122996,237,0 +170744123044,237,0 +170744123092,239,0 +170744123140,240,0 +170744123189,240,0 +170744123237,240,0 +170744123287,239,0 +170744123336,240,0 +170744123386,224,0 +170744123434,218,0 +170744123482,217,0 +170744123530,218,0 +170744123579,220,0 +170744123627,221,0 +170744123675,222,0 +170744123723,226,0 +170744123771,226,0 +170744123820,229,0 +170744123870,229,0 +170744123918,234,0 +170744123967,236,0 +170744124015,238,0 +170744124063,239,0 +170744124111,240,0 +170744124159,240,0 +170744124208,240,0 +170744124256,239,0 +170744124304,229,0 +170744124352,217,0 +170744124400,218,0 +170744124448,219,0 +170744124496,221,0 +170744124544,222,0 +170744124592,224,0 +170744124640,226,0 +170744124688,229,0 +170744124736,232,0 +170744124783,231,0 +170744124833,236,0 +170744124881,237,0 +170744124929,239,0 +170744124977,243,0 +170744125025,240,0 +170744125073,240,0 +170744125121,241,0 +170744125169,241,0 +170744125216,228,0 +170744125264,217,0 +170744125312,218,0 +170744125360,218,0 +170744125408,221,0 +170744125458,224,0 +170744125507,227,0 +170744125555,227,0 +170744125605,230,0 +170744125653,232,0 +170744125701,234,0 +170744125749,236,0 +170744125796,237,0 +170744125844,239,0 +170744125894,240,0 +170744125942,239,0 +170744125989,241,0 +170744126037,240,0 +170744126085,240,0 +170744126133,237,0 +170744126181,219,0 +170744126229,218,0 +170744126279,220,0 +170744126327,225,0 +170744126375,225,0 +170744126422,225,0 +170744126472,228,0 +170744126521,231,0 +170744126569,234,0 +170744126617,236,0 +170744126665,237,0 +170744126715,239,0 +170744126763,238,0 +170744126811,239,0 +170744126859,239,0 +170744126907,239,0 +170744126955,242,0 +170744127003,240,0 +170744127052,227,0 +170744127102,220,0 +170744127150,222,0 +170744127199,225,0 +170744127249,228,0 +170744127296,230,0 +170744127344,238,0 +170744127392,233,0 +170744127440,232,0 +170744127488,234,0 +170744127536,235,0 +170744127584,236,0 +170744127634,238,0 +170744127682,236,0 +170744127731,237,0 +170744127779,239,0 +170744127827,241,0 +170744127875,240,0 +170744127923,239,0 +170744127971,227,0 +170744128019,219,0 +170744128067,221,0 +170744128115,224,0 +170744128163,226,0 +170744128211,229,0 +170744128260,231,0 +170744128308,232,0 +170744128356,233,0 +170744128404,234,0 +170744128452,234,0 +170744128500,238,0 +170744128548,238,0 +170744128596,238,0 +170744128644,240,0 +170744128692,240,0 +170744128740,241,0 +170744128788,240,0 +170744128837,240,0 +170744128885,236,0 +170744128933,218,0 +170744128981,218,0 +170744129029,220,0 +170744129079,222,0 +170744129127,225,0 +170744129174,226,0 +170744129224,228,0 +170744129272,230,0 +170744129320,233,0 +170744129368,234,0 +170744129417,234,0 +170744129465,237,0 +170744129513,239,0 +170744129561,239,0 +170744129609,240,0 +170744129657,239,0 +170744129705,243,0 +170744129753,239,0 +170744129802,229,0 +170744129850,218,0 +170744129898,218,0 +170744129946,219,0 +170744129994,220,0 +170744130042,223,0 +170744130092,225,0 +170744130140,226,0 +170744130188,230,0 +170744130235,231,0 +170744130283,235,0 +170744130331,235,0 +170744130379,239,0 +170744130427,239,0 +170744130475,240,0 +170744130525,240,0 +170744130573,240,0 +170744130621,240,0 +170744130670,240,0 +170744130720,226,0 +170744130769,220,0 +170744130819,222,0 +170744130866,225,0 +170744130914,229,0 +170744130964,231,0 +170744131012,232,0 +170744131060,234,0 +170744131108,235,0 +170744131157,237,0 +170744131205,245,0 +170744131253,238,0 +170744131301,241,0 +170744131349,239,0 +170744131397,240,0 +170744131447,241,0 +170744131496,241,0 +170744131544,240,0 +170744131592,240,0 +170744131641,221,0 +170744131689,223,0 +170744131737,226,0 +170744131787,229,0 +170744131835,230,0 +170744131883,233,0 +170744131932,235,0 +170744131980,236,0 +170744132028,237,0 +170744132076,238,0 +170744132125,237,0 +170744132173,240,0 +170744132221,243,0 +170744132271,242,0 +170744132319,240,0 +170744132367,241,0 +170744132415,242,0 +170744132462,239,0 +170744132510,239,0 +170744132558,220,0 +170744132606,217,0 +170744132654,219,0 +170744132704,223,0 +170744132752,226,0 +170744132800,227,0 +170744132848,231,0 +170744132897,233,0 +170744132945,232,0 +170744132995,235,0 +170744133043,236,0 +170744133091,237,0 +170744133138,237,0 +170744133186,239,0 +170744133236,242,0 +170744133284,240,0 +170744133333,241,0 +170744133381,241,0 +170744133429,239,0 +170744133477,220,0 +170744133525,218,0 +170744133573,218,0 +170744133623,220,0 +170744133671,223,0 +170744133718,226,0 +170744133766,227,0 +170744133814,229,0 +170744133864,231,0 +170744133912,232,0 +170744133960,233,0 +170744134009,235,0 +170744134057,238,0 +170744134105,238,0 +170744134153,238,0 +170744134201,241,0 +170744134249,239,0 +170744134297,240,0 +170744134345,238,0 +170744134393,221,0 +170744134441,217,0 +170744134489,222,0 +170744134538,225,0 +170744134586,227,0 +170744134634,229,0 +170744134682,233,0 +170744134730,232,0 +170744134778,234,0 +170744134826,236,0 +170744134874,235,0 +170744134922,239,0 +170744134970,238,0 +170744135018,239,0 +170744135066,239,0 +170744135114,242,0 +170744135163,241,0 +170744135213,241,0 +170744135261,240,0 +170744135309,220,0 +170744135356,222,0 +170744135404,226,0 +170744135452,227,0 +170744135500,229,0 +170744135548,232,0 +170744135596,234,0 +170744135644,235,0 +170744135694,235,0 +170744135742,237,0 +170744135790,238,0 +170744135838,239,0 +170744135885,240,0 +170744135933,239,0 +170744135981,241,0 +170744136031,241,0 +170744136079,241,0 +170744136128,241,0 +170744136176,238,0 +170744136224,221,0 +170744136272,220,0 +170744136320,220,0 +170744136368,225,0 +170744136416,229,0 +170744136465,229,0 +170744136513,231,0 +170744136561,232,0 +170744136609,233,0 +170744136657,236,0 +170744136705,234,0 +170744136755,237,0 +170744136802,238,0 +170744136850,239,0 +170744136898,242,0 +170744136946,240,0 +170744136994,243,0 +170744137042,240,0 +170744137090,238,0 +170744137138,223,0 +170744137186,219,0 +170744137234,221,0 +170744137282,225,0 +170744137330,227,0 +170744137378,229,0 +170744137426,233,0 +170744137474,231,0 +170744137522,231,0 +170744137571,233,0 +170744137619,236,0 +170744137667,239,0 +170744137715,240,0 +170744137763,239,0 +170744137811,237,0 +170744137860,240,0 +170744137910,240,0 +170744137958,241,0 +170744138006,238,0 +170744138054,219,0 +170744138102,218,0 +170744138151,220,0 +170744138199,224,0 +170744138247,227,0 +170744138295,231,0 +170744138343,230,0 +170744138391,232,0 +170744138439,233,0 +170744138487,235,0 +170744138535,238,0 +170744138583,238,0 +170744138630,238,0 +170744138678,240,0 +170744138726,240,0 +170744138774,241,0 +170744138822,242,0 +170744138870,241,0 +170744138918,239,0 +170744138966,220,0 +170744139014,219,0 +170744139063,219,0 +170744139111,221,0 +170744139159,224,0 +170744139207,227,0 +170744139255,230,0 +170744139303,233,0 +170744139351,233,0 +170744139401,234,0 +170744139449,237,0 +170744139497,239,0 +170744139545,238,0 +170744139594,240,0 +170744139642,240,0 +170744139692,241,0 +170744139741,241,0 +170744139789,241,0 +170744139838,239,0 +170744139888,220,0 +170744139937,217,0 +170744139985,217,0 +170744140035,218,0 +170744140083,222,0 +170744140131,225,0 +170744140180,228,0 +170744140230,229,0 +170744140278,231,0 +170744140326,234,0 +170744140374,237,0 +170744140422,235,0 +170744140471,237,0 +170744140519,241,0 +170744140569,240,0 +170744140617,239,0 +170744140666,241,0 +170744140716,243,0 +170744140764,239,0 +170744140813,222,0 +170744140861,218,0 +170744140909,219,0 +170744140957,219,0 +170744141006,223,0 +170744141054,225,0 +170744141102,228,0 +170744141150,229,0 +170744141198,229,0 +170744141246,232,0 +170744141294,234,0 +170744141342,236,0 +170744141390,237,0 +170744141438,238,0 +170744141486,240,0 +170744141534,240,0 +170744141582,242,0 +170744141630,240,0 +170744141678,239,0 +170744141726,221,0 +170744141774,217,0 +170744141822,218,0 +170744141870,219,0 +170744141919,221,0 +170744141967,222,0 +170744142015,226,0 +170744142063,229,0 +170744142111,231,0 +170744142159,233,0 +170744142208,234,0 +170744142256,237,0 +170744142304,237,0 +170744142354,238,0 +170744142402,238,0 +170744142450,239,0 +170744142497,240,0 +170744142545,241,0 +170744142593,241,0 +170744142643,219,0 +170744142691,216,0 +170744142739,217,0 +170744142787,217,0 +170744142836,218,0 +170744142884,219,0 +170744142932,221,0 +170744142982,222,0 +170744143030,225,0 +170744143078,234,0 +170744143126,230,0 +170744143175,232,0 +170744143225,235,0 +170744143273,236,0 +170744143322,237,0 +170744143372,247,0 +170744143419,237,0 +170744143467,239,0 +170744143515,239,0 +170744143563,220,0 +170744143613,217,0 +170744143662,218,0 +170744143710,218,0 +170744143758,220,0 +170744143806,221,0 +170744143854,222,0 +170744143901,224,0 +170744143949,225,0 +170744143997,229,0 +170744144045,231,0 +170744144095,234,0 +170744144144,236,0 +170744144194,239,0 +170744144242,238,0 +170744144289,239,0 +170744144337,239,0 +170744144387,239,0 +170744144435,238,0 +170744144483,221,0 +170744144532,217,0 +170744144580,217,0 +170744144628,218,0 +170744144676,219,0 +170744144726,220,0 +170744144774,224,0 +170744144822,225,0 +170744144870,227,0 +170744144919,230,0 +170744144967,232,0 +170744145015,235,0 +170744145063,236,0 +170744145112,238,0 +170744145162,238,0 +170744145210,239,0 +170744145258,238,0 +170744145306,240,0 +170744145354,242,0 +170744145402,222,0 +170744145450,217,0 +170744145498,218,0 +170744145546,219,0 +170744145594,220,0 +170744145642,221,0 +170744145691,222,0 +170744145739,224,0 +170744145789,227,0 +170744145838,228,0 +170744145886,232,0 +170744145936,234,0 +170744145984,235,0 +170744146032,238,0 +170744146081,240,0 +170744146129,239,0 +170744146177,239,0 +170744146225,246,0 +170744146273,239,0 +170744146321,222,0 +170744146369,218,0 +170744146418,219,0 +170744146466,219,0 +170744146514,219,0 +170744146562,222,0 +170744146610,224,0 +170744146658,226,0 +170744146706,229,0 +170744146754,231,0 +170744146803,232,0 +170744146851,235,0 +170744146901,236,0 +170744146949,237,0 +170744146997,239,0 +170744147045,250,0 +170744147093,246,0 +170744147141,240,0 +170744147189,239,0 +170744147237,221,0 +170744147285,217,0 +170744147333,217,0 +170744147380,218,0 +170744147428,219,0 +170744147476,221,0 +170744147524,223,0 +170744147572,225,0 +170744147622,227,0 +170744147670,230,0 +170744147719,232,0 +170744147767,236,0 +170744147817,235,0 +170744147865,239,0 +170744147914,239,0 +170744147962,240,0 +170744148012,242,0 +170744148060,242,0 +170744148108,239,0 +170744148156,221,0 +170744148204,219,0 +170744148251,222,0 +170744148299,221,0 +170744148349,224,0 +170744148397,225,0 +170744148445,226,0 +170744148493,230,0 +170744148541,234,0 +170744148589,236,0 +170744148637,235,0 +170744148685,238,0 +170744148734,238,0 +170744148784,242,0 +170744148832,239,0 +170744148880,239,0 +170744148928,241,0 +170744148976,240,0 +170744149024,238,0 +170744149073,223,0 +170744149123,219,0 +170744149171,220,0 +170744149220,223,0 +170744149268,224,0 +170744149316,226,0 +170744149366,228,0 +170744149415,228,0 +170744149463,231,0 +170744149513,235,0 +170744149560,237,0 +170744149610,239,0 +170744149658,239,0 +170744149706,239,0 +170744149754,245,0 +170744149802,241,0 +170744149850,242,0 +170744149899,239,0 +170744149947,239,0 +170744149995,225,0 +170744150043,227,0 +170744150091,228,0 +170744150139,231,0 +170744150187,231,0 +170744150235,237,0 +170744150283,235,0 +170744150331,237,0 +170744150379,238,0 +170744150427,239,0 +170744150475,239,0 +170744150523,240,0 +170744150572,241,0 +170744150620,241,0 +170744150668,240,0 +170744150716,240,0 +170744150766,240,0 +170744150814,240,0 +170744150862,238,0 +170744150910,231,0 +170744150958,230,0 +170744151006,235,0 +170744151054,235,0 +170744151102,236,0 +170744151151,238,0 +170744151199,239,0 +170744151247,239,0 +170744151297,240,0 +170744151345,240,0 +170744151393,241,0 +170744151441,240,0 +170744151490,239,0 +170744151538,240,0 +170744151588,242,0 +170744151636,242,0 +170744151684,239,0 +170744151732,240,0 +170744151780,238,0 +170744151828,228,0 +170744151876,229,0 +170744151923,231,0 +170744151971,233,0 +170744152019,234,0 +170744152067,236,0 +170744152115,238,0 +170744152163,237,0 +170744152211,238,0 +170744152259,239,0 +170744152306,240,0 +170744152354,235,0 +170744152402,242,0 +170744152450,240,0 +170744152498,240,0 +170744152546,240,0 +170744152594,239,0 +170744152642,239,0 +170744152690,239,0 +170744152739,221,0 +170744152787,220,0 +170744152835,226,0 +170744152883,226,0 +170744152931,230,0 +170744152979,232,0 +170744153026,231,0 +170744153074,235,0 +170744153124,236,0 +170744153172,239,0 +170744153220,238,0 +170744153268,239,0 +170744153317,240,0 +170744153365,240,0 +170744153413,241,0 +170744153461,242,0 +170744153509,241,0 +170744153557,240,0 +170744153606,238,0 +170744153654,220,0 +170744153702,222,0 +170744153750,219,0 +170744153799,221,0 +170744153847,225,0 +170744153895,227,0 +170744153943,229,0 +170744153991,231,0 +170744154041,232,0 +170744154089,234,0 +170744154138,237,0 +170744154186,237,0 +170744154234,238,0 +170744154282,239,0 +170744154332,239,0 +170744154380,240,0 +170744154428,240,0 +170744154477,241,0 +170744154525,239,0 +170744154573,221,0 +170744154623,218,0 +170744154672,219,0 +170744154720,221,0 +170744154768,223,0 +170744154816,226,0 +170744154864,227,0 +170744154912,229,0 +170744154960,231,0 +170744155008,234,0 +170744155056,237,0 +170744155104,236,0 +170744155152,238,0 +170744155200,239,0 +170744155248,240,0 +170744155296,240,0 +170744155344,241,0 +170744155392,240,0 +170744155440,239,0 +170744155488,221,0 +170744155535,218,0 +170744155585,219,0 +170744155633,221,0 +170744155682,224,0 +170744155732,227,0 +170744155780,228,0 +170744155828,230,0 +170744155876,233,0 +170744155924,232,0 +170744155972,236,0 +170744156020,238,0 +170744156068,238,0 +170744156117,239,0 +170744156167,240,0 +170744156216,241,0 +170744156264,242,0 +170744156313,240,0 +170744156361,239,0 +170744156411,221,0 +170744156459,217,0 +170744156507,219,0 +170744156556,219,0 +170744156604,221,0 +170744156652,223,0 +170744156700,225,0 +170744156750,227,0 +170744156798,230,0 +170744156846,230,0 +170744156894,232,0 +170744156941,236,0 +170744156989,237,0 +170744157037,237,0 +170744157085,238,0 +170744157133,238,0 +170744157183,238,0 +170744157232,241,0 +170744157280,239,0 +170744157328,221,0 +170744157378,218,0 +170744157426,219,0 +170744157474,221,0 +170744157522,224,0 +170744157570,227,0 +170744157618,229,0 +170744157667,231,0 +170744157715,234,0 +170744157763,234,0 +170744157811,236,0 +170744157859,237,0 +170744157907,239,0 +170744157955,240,0 +170744158002,240,0 +170744158052,240,0 +170744158100,240,0 +170744158148,242,0 +170744158196,239,0 +170744158244,221,0 +170744158293,219,0 +170744158343,219,0 +170744158391,222,0 +170744158440,227,0 +170744158488,228,0 +170744158536,230,0 +170744158585,233,0 +170744158633,234,0 +170744158681,235,0 +170744158729,237,0 +170744158779,239,0 +170744158827,238,0 +170744158876,242,0 +170744158926,239,0 +170744158974,241,0 +170744159023,240,0 +170744159073,241,0 +170744159121,240,0 +170744159169,221,0 +170744159217,218,0 +170744159264,220,0 +170744159312,222,0 +170744159362,227,0 +170744159410,229,0 +170744159458,231,0 +170744159506,232,0 +170744159554,233,0 +170744159602,235,0 +170744159650,237,0 +170744159699,236,0 +170744159747,237,0 +170744159795,241,0 +170744159843,240,0 +170744159891,241,0 +170744159939,240,0 +170744159989,241,0 +170744160037,238,0 +170744160086,219,0 +170744160134,217,0 +170744160182,218,0 +170744160230,220,0 +170744160279,222,0 +170744160327,229,0 +170744160375,227,0 +170744160425,229,0 +170744160473,230,0 +170744160522,233,0 +170744160570,236,0 +170744160618,236,0 +170744160668,237,0 +170744160716,238,0 +170744160764,240,0 +170744160813,240,0 +170744160861,241,0 +170744160909,241,0 +170744160959,238,0 +170744161007,219,0 +170744161054,217,0 +170744161102,217,0 +170744161150,218,0 +170744161198,219,0 +170744161246,219,0 +170744161294,222,0 +170744161342,225,0 +170744161390,228,0 +170744161438,229,0 +170744161487,232,0 +170744161535,234,0 +170744161583,234,0 +170744161633,237,0 +170744161681,239,0 +170744161729,238,0 +170744161777,240,0 +170744161825,240,0 +170744161873,239,0 +170744161921,220,0 +170744161970,218,0 +170744162018,218,0 +170744162066,219,0 +170744162114,219,0 +170744162162,222,0 +170744162210,225,0 +170744162258,226,0 +170744162307,230,0 +170744162355,234,0 +170744162403,234,0 +170744162451,235,0 +170744162499,238,0 +170744162547,238,0 +170744162595,239,0 +170744162643,239,0 +170744162691,241,0 +170744162740,240,0 +170744162788,239,0 +170744162836,218,0 +170744162884,216,0 +170744162932,216,0 +170744162980,216,0 +170744163029,217,0 +170744163077,218,0 +170744163125,220,0 +170744163173,221,0 +170744163221,222,0 +170744163269,226,0 +170744163317,227,0 +170744163365,231,0 +170744163413,233,0 +170744163461,234,0 +170744163509,235,0 +170744163558,239,0 +170744163608,238,0 +170744163657,239,0 +170744163705,240,0 +170744163753,219,0 +170744163801,218,0 +170744163849,218,0 +170744163897,220,0 +170744163945,219,0 +170744163993,222,0 +170744164041,222,0 +170744164090,227,0 +170744164138,228,0 +170744164188,230,0 +170744164236,234,0 +170744164284,237,0 +170744164332,236,0 +170744164379,238,0 +170744164427,239,0 +170744164475,240,0 +170744164523,238,0 +170744164571,241,0 +170744164619,239,0 +170744164667,223,0 +170744164715,217,0 +170744164763,219,0 +170744164811,219,0 +170744164860,220,0 +170744164908,220,0 +170744164956,223,0 +170744165006,227,0 +170744165054,228,0 +170744165102,231,0 +170744165150,233,0 +170744165198,235,0 +170744165246,240,0 +170744165295,238,0 +170744165343,238,0 +170744165392,240,0 +170744165442,241,0 +170744165491,240,0 +170744165541,240,0 +170744165589,220,0 +170744165637,220,0 +170744165686,222,0 +170744165734,225,0 +170744165782,227,0 +170744165830,229,0 +170744165878,230,0 +170744165928,233,0 +170744165975,235,0 +170744166025,235,0 +170744166073,237,0 +170744166121,238,0 +170744166169,240,0 +170744166217,241,0 +170744166265,240,0 +170744166313,240,0 +170744166360,240,0 +170744166408,241,0 +170744166456,239,0 +170744166506,224,0 +170744166554,224,0 +170744166601,226,0 +170744166651,228,0 +170744166699,233,0 +170744166747,231,0 +170744166795,233,0 +170744166842,236,0 +170744166892,236,0 +170744166940,237,0 +170744166988,239,0 +170744167036,238,0 +170744167083,238,0 +170744167131,241,0 +170744167179,239,0 +170744167227,241,0 +170744167275,239,0 +170744167323,238,0 +170744167370,238,0 +170744167418,222,0 +170744167466,221,0 +170744167514,224,0 +170744167562,226,0 +170744167610,229,0 +170744167658,231,0 +170744167706,233,0 +170744167754,234,0 +170744167802,236,0 +170744167850,237,0 +170744167898,238,0 +170744167946,238,0 +170744167994,239,0 +170744168043,239,0 +170744168091,238,0 +170744168139,238,0 +170744168187,239,0 +170744168235,239,0 +170744168283,238,0 +170744168332,222,0 +170744168380,219,0 +170744168428,223,0 +170744168476,226,0 +170744168526,228,0 +170744168573,229,0 +170744168621,233,0 +170744168671,233,0 +170744168719,235,0 +170744168768,238,0 +170744168816,239,0 +170744168864,238,0 +170744168914,237,0 +170744168962,239,0 +170744169010,239,0 +170744169058,240,0 +170744169107,238,0 +170744169155,238,0 +170744169203,239,0 +170744169251,222,0 +170744169299,221,0 +170744169348,225,0 +170744169396,227,0 +170744169444,229,0 +170744169494,231,0 +170744169542,232,0 +170744169590,235,0 +170744169638,236,0 +170744169686,237,0 +170744169733,239,0 +170744169781,261,0 +170744169829,239,0 +170744169877,239,0 +170744169927,239,0 +170744169975,241,0 +170744170023,241,0 +170744170071,240,0 +170744170118,238,0 +170744170168,221,0 +170744170216,220,0 +170744170264,223,0 +170744170312,227,0 +170744170360,230,0 +170744170408,230,0 +170744170456,232,0 +170744170503,233,0 +170744170551,236,0 +170744170601,237,0 +170744170649,235,0 +170744170697,240,0 +170744170746,239,0 +170744170794,241,0 +170744170842,241,0 +170744170890,240,0 +170744170940,240,0 +170744170988,239,0 +170744171035,237,0 +170744171083,221,0 +170744171131,218,0 +170744171179,219,0 +170744171227,220,0 +170744171275,225,0 +170744171323,226,0 +170744171370,229,0 +170744171418,231,0 +170744171466,233,0 +170744171514,233,0 +170744171562,236,0 +170744171610,238,0 +170744171658,238,0 +170744171706,239,0 +170744171754,240,0 +170744171802,241,0 +170744171850,240,0 +170744171898,240,0 +170744171946,238,0 +170744171995,222,0 +170744172043,216,0 +170744172091,218,0 +170744172139,219,0 +170744172187,219,0 +170744172235,222,0 +170744172283,224,0 +170744172331,226,0 +170744172379,229,0 +170744172427,232,0 +170744172475,235,0 +170744172523,235,0 +170744172571,237,0 +170744172620,237,0 +170744172668,239,0 +170744172716,240,0 +170744172764,239,0 +170744172812,240,0 +170744172860,238,0 +170744172908,221,0 +170744172956,219,0 +170744173004,219,0 +170744173052,221,0 +170744173100,223,0 +170744173148,226,0 +170744173196,229,0 +170744173244,231,0 +170744173293,232,0 +170744173342,234,0 +170744173390,236,0 +170744173438,236,0 +170744173486,238,0 +170744173534,239,0 +170744173582,239,0 +170744173630,241,0 +170744173678,240,0 +170744173726,240,0 +170744173774,238,0 +170744173822,220,0 +170744173870,219,0 +170744173919,219,0 +170744173969,223,0 +170744174017,225,0 +170744174065,227,0 +170744174114,228,0 +170744174162,232,0 +170744174210,233,0 +170744174258,235,0 +170744174306,236,0 +170744174356,237,0 +170744174403,238,0 +170744174453,239,0 +170744174502,241,0 +170744174550,240,0 +170744174598,240,0 +170744174646,239,0 +170744174694,238,0 +170744174744,222,0 +170744174792,218,0 +170744174840,222,0 +170744174888,223,0 +170744174936,226,0 +170744174984,229,0 +170744175032,230,0 +170744175080,234,0 +170744175127,236,0 +170744175175,236,0 +170744175225,238,0 +170744175273,238,0 +170744175321,239,0 +170744175370,238,0 +170744175420,240,0 +170744175468,239,0 +170744175516,239,0 +170744175564,238,0 +170744175613,238,0 +170744175663,222,0 +170744175711,220,0 +170744175759,224,0 +170744175808,225,0 +170744175856,228,0 +170744175904,229,0 +170744175952,232,0 +170744176000,233,0 +170744176048,236,0 +170744176096,236,0 +170744176145,237,0 +170744176193,239,0 +170744176242,239,0 +170744176290,239,0 +170744176338,241,0 +170744176386,239,0 +170744176434,241,0 +170744176482,239,0 +170744176532,238,0 +170744176580,221,0 +170744176629,218,0 +170744176677,221,0 +170744176725,224,0 +170744176773,227,0 +170744176822,228,0 +170744176870,229,0 +170744176918,235,0 +170744176966,235,0 +170744177016,235,0 +170744177064,235,0 +170744177113,238,0 +170744177161,240,0 +170744177209,239,0 +170744177257,240,0 +170744177305,240,0 +170744177353,240,0 +170744177401,242,0 +170744177450,240,0 +170744177498,237,0 +170744177547,220,0 +170744177595,218,0 +170744177643,219,0 +170744177691,220,0 +170744177739,222,0 +170744177787,225,0 +170744177834,227,0 +170744177882,229,0 +170744177930,228,0 +170744177978,233,0 +170744178026,234,0 +170744178075,236,0 +170744178123,238,0 +170744178171,240,0 +170744178219,239,0 +170744178267,239,0 +170744178317,240,0 +170744178365,242,0 +170744178413,240,0 +170744178461,239,0 +170744178509,238,0 +170744178558,220,0 +170744178606,217,0 +170744178654,218,0 +170744178703,219,0 +170744178751,220,0 +170744178799,221,0 +170744178849,222,0 +170744178898,225,0 +170744178948,230,0 +170744178996,230,0 +170744179045,232,0 +170744179093,234,0 +170744179143,235,0 +170744179191,235,0 +170744179239,236,0 +170744179288,238,0 +170744179338,238,0 +170744179386,238,0 +170744179434,240,0 +170744179482,240,0 +170744179530,239,0 +170744179579,221,0 +170744179629,218,0 +170744179676,218,0 +170744179726,219,0 +170744179775,219,0 +170744179823,221,0 +170744179871,223,0 +170744179919,225,0 +170744179967,228,0 +170744180015,230,0 +170744180065,231,0 +170744180112,230,0 +170744180160,234,0 +170744180208,237,0 +170744180258,237,0 +170744180305,238,0 +170744180353,240,0 +170744180403,239,0 +170744180451,240,0 +170744180498,241,0 +170744180546,241,0 +170744180594,220,0 +170744180642,217,0 +170744180690,217,0 +170744180738,218,0 +170744180786,219,0 +170744180834,220,0 +170744180881,223,0 +170744180929,224,0 +170744180979,226,0 +170744181027,226,0 +170744181076,230,0 +170744181124,231,0 +170744181172,234,0 +170744181220,235,0 +170744181268,238,0 +170744181316,238,0 +170744181364,238,0 +170744181412,240,0 +170744181460,240,0 +170744181508,242,0 +170744181555,241,0 +170744181603,238,0 +170744181651,221,0 +170744181699,217,0 +170744181747,218,0 +170744181797,219,0 +170744181846,219,0 +170744181894,220,0 +170744181942,221,0 +170744181990,224,0 +170744182038,225,0 +170744182086,229,0 +170744182134,230,0 +170744182183,232,0 +170744182233,234,0 +170744182281,237,0 +170744182329,238,0 +170744182377,237,0 +170744182424,239,0 +170744182474,239,0 +170744182522,240,0 +170744182571,240,0 +170744182619,239,0 +170744182667,222,0 +170744182717,218,0 +170744182764,218,0 +170744182812,220,0 +170744182860,222,0 +170744182910,224,0 +170744182958,225,0 +170744183007,228,0 +170744183057,241,0 +170744183105,231,0 +170744183154,234,0 +170744183202,236,0 +170744183250,236,0 +170744183298,239,0 +170744183346,239,0 +170744183394,239,0 +170744183442,239,0 +170744183492,242,0 +170744183540,240,0 +170744183589,241,0 +170744183639,239,0 +170744183687,221,0 +170744183734,219,0 +170744183782,219,0 +170744183830,221,0 +170744183880,224,0 +170744183928,225,0 +170744183976,226,0 +170744184024,228,0 +170744184072,231,0 +170744184121,234,0 +170744184169,235,0 +170744184219,236,0 +170744184267,237,0 +170744184314,238,0 +170744184362,239,0 +170744184412,240,0 +170744184460,241,0 +170744184508,241,0 +170744184557,241,0 +170744184605,238,0 +170744184653,240,0 +170744184703,236,0 +170744184751,218,0 +170744184799,218,0 +170744184848,221,0 +170744184897,223,0 +170744184947,225,0 +170744184995,226,0 +170744185043,228,0 +170744185091,228,0 +170744185139,231,0 +170744185187,232,0 +170744185235,236,0 +170744185283,243,0 +170744185331,234,0 +170744185379,236,0 +170744185427,239,0 +170744185474,240,0 +170744185522,243,0 +170744185570,242,0 +170744185618,241,0 +170744185666,240,0 +170744185714,239,0 +170744185762,221,0 +170744185810,218,0 +170744185858,218,0 +170744185905,220,0 +170744185953,223,0 +170744186001,225,0 +170744186049,225,0 +170744186097,230,0 +170744186145,229,0 +170744186193,232,0 +170744186240,234,0 +170744186288,235,0 +170744186336,236,0 +170744186384,238,0 +170744186434,238,0 +170744186482,241,0 +170744186529,239,0 +170744186579,239,0 +170744186627,240,0 +170744186675,239,0 +170744186723,238,0 +170744186771,219,0 +170744186819,218,0 +170744186867,217,0 +170744186916,220,0 +170744186964,223,0 +170744187012,225,0 +170744187060,226,0 +170744187108,225,0 +170744187156,228,0 +170744187204,233,0 +170744187252,232,0 +170744187300,235,0 +170744187349,235,0 +170744187399,238,0 +170744187447,239,0 +170744187495,240,0 +170744187543,241,0 +170744187591,240,0 +170744187639,241,0 +170744187687,239,0 +170744187735,239,0 +170744187784,238,0 +170744187832,219,0 +170744187882,218,0 +170744187930,218,0 +170744187979,221,0 +170744188027,225,0 +170744188075,225,0 +170744188123,227,0 +170744188171,230,0 +170744188219,232,0 +170744188268,232,0 +170744188316,235,0 +170744188364,236,0 +170744188412,238,0 +170744188460,237,0 +170744188508,239,0 +170744188558,241,0 +170744188606,242,0 +170744188655,242,0 +170744188703,240,0 +170744188751,242,0 +170744188799,240,0 +170744188847,222,0 +170744188897,217,0 +170744188945,218,0 +170744188993,220,0 +170744189040,221,0 +170744189090,222,0 +170744189139,223,0 +170744189187,227,0 +170744189235,229,0 +170744189285,230,0 +170744189333,233,0 +170744189381,236,0 +170744189429,236,0 +170744189477,239,0 +170744189525,237,0 +170744189573,239,0 +170744189621,241,0 +170744189668,242,0 +170744189716,241,0 +170744189764,241,0 +170744189812,239,0 +170744189860,220,0 +170744189908,218,0 +170744189956,219,0 +170744190004,219,0 +170744190052,220,0 +170744190100,221,0 +170744190148,220,0 +170744190196,223,0 +170744190244,226,0 +170744190292,229,0 +170744190340,232,0 +170744190388,232,0 +170744190436,235,0 +170744190484,238,0 +170744190532,236,0 +170744190580,238,0 +170744190628,240,0 +170744190677,242,0 +170744190725,240,0 +170744190773,240,0 +170744190823,240,0 +170744190872,236,0 +170744190920,217,0 +170744190968,217,0 +170744191016,218,0 +170744191064,219,0 +170744191112,219,0 +170744191160,221,0 +170744191208,220,0 +170744191257,220,0 +170744191305,225,0 +170744191353,225,0 +170744191401,228,0 +170744191449,230,0 +170744191498,231,0 +170744191548,235,0 +170744191597,236,0 +170744191645,236,0 +170744191693,237,0 +170744191741,239,0 +170744191789,240,0 +170744191837,240,0 +170744191887,239,0 +170744191936,219,0 +170744191984,216,0 +170744192032,217,0 +170744192080,217,0 +170744192128,219,0 +170744192176,219,0 +170744192224,220,0 +170744192273,221,0 +170744192321,224,0 +170744192369,226,0 +170744192417,228,0 +170744192467,230,0 +170744192514,233,0 +170744192562,234,0 +170744192612,237,0 +170744192660,239,0 +170744192708,239,0 +170744192756,239,0 +170744192804,240,0 +170744192852,240,0 +170744192900,239,0 +170744192948,221,0 +170744192996,218,0 +170744193044,217,0 +170744193092,219,0 +170744193140,219,0 +170744193189,220,0 +170744193237,221,0 +170744193287,223,0 +170744193334,225,0 +170744193382,227,0 +170744193430,230,0 +170744193478,231,0 +170744193526,232,0 +170744193574,236,0 +170744193622,237,0 +170744193670,238,0 +170744193718,239,0 +170744193766,239,0 +170744193814,240,0 +170744193864,241,0 +170744193912,240,0 +170744193961,224,0 +170744194009,217,0 +170744194057,217,0 +170744194107,218,0 +170744194154,219,0 +170744194202,220,0 +170744194250,224,0 +170744194300,226,0 +170744194348,229,0 +170744194396,230,0 +170744194445,232,0 +170744194493,234,0 +170744194541,235,0 +170744194589,237,0 +170744194637,238,0 +170744194685,238,0 +170744194733,240,0 +170744194781,239,0 +170744194829,241,0 +170744194877,241,0 +170744194926,240,0 +170744194976,239,0 +170744195024,219,0 +170744195072,217,0 +170744195120,219,0 +170744195169,220,0 +170744195217,221,0 +170744195265,224,0 +170744195313,226,0 +170744195361,229,0 +170744195409,230,0 +170744195457,231,0 +170744195505,234,0 +170744195553,239,0 +170744195602,236,0 +170744195650,236,0 +170744195698,238,0 +170744195748,239,0 +170744195796,241,0 +170744195844,240,0 +170744195891,241,0 +170744195939,241,0 +170744195987,239,0 +170744196037,221,0 +170744196085,219,0 +170744196133,219,0 +170744196180,221,0 +170744196228,222,0 +170744196276,226,0 +170744196324,227,0 +170744196372,230,0 +170744196420,231,0 +170744196468,234,0 +170744196516,240,0 +170744196563,236,0 +170744196611,237,0 +170744196661,239,0 +170744196709,239,0 +170744196757,240,0 +170744196804,239,0 +170744196852,239,0 +170744196902,242,0 +170744196950,242,0 +170744196999,240,0 +170744197047,220,0 +170744197095,216,0 +170744197143,215,0 +170744197191,215,0 +170744197241,217,0 +170744197289,217,0 +170744197337,219,0 +170744197386,219,0 +170744197434,220,0 +170744197482,222,0 +170744197530,225,0 +170744197578,227,0 +170744197628,230,0 +170744197676,232,0 +170744197724,234,0 +170744197771,235,0 +170744197819,237,0 +170744197867,238,0 +170744197915,239,0 +170744197963,240,0 +170744198011,240,0 +170744198059,239,0 +170744198109,219,0 +170744198158,218,0 +170744198206,218,0 +170744198254,219,0 +170744198304,220,0 +170744198351,221,0 +170744198399,222,0 +170744198447,225,0 +170744198495,227,0 +170744198543,229,0 +170744198591,231,0 +170744198639,233,0 +170744198687,234,0 +170744198735,236,0 +170744198783,237,0 +170744198831,238,0 +170744198880,239,0 +170744198928,240,0 +170744198978,240,0 +170744199026,239,0 +170744199074,237,0 +170744199123,220,0 +170744199173,216,0 +170744199221,217,0 +170744199269,218,0 +170744199317,218,0 +170744199366,218,0 +170744199414,219,0 +170744199462,219,0 +170744199510,221,0 +170744199559,223,0 +170744199609,226,0 +170744199658,230,0 +170744199706,231,0 +170744199754,231,0 +170744199804,234,0 +170744199852,236,0 +170744199900,235,0 +170744199947,240,0 +170744199995,238,0 +170744200043,237,0 +170744200091,238,0 +170744200139,221,0 +170744200187,216,0 +170744200235,216,0 +170744200283,217,0 +170744200331,218,0 +170744200379,218,0 +170744200427,219,0 +170744200477,221,0 +170744200524,223,0 +170744200572,225,0 +170744200620,228,0 +170744200670,230,0 +170744200718,232,0 +170744200766,234,0 +170744200814,235,0 +170744200863,236,0 +170744200911,238,0 +170744200959,238,0 +170744201007,239,0 +170744201057,239,0 +170744201105,238,0 +170744201153,220,0 +170744201200,218,0 +170744201248,217,0 +170744201296,218,0 +170744201344,220,0 +170744201392,220,0 +170744201440,221,0 +170744201488,223,0 +170744201536,225,0 +170744201584,227,0 +170744201632,229,0 +170744201680,232,0 +170744201728,233,0 +170744201778,235,0 +170744201825,236,0 +170744201875,238,0 +170744201923,241,0 +170744201971,239,0 +170744202019,240,0 +170744202068,238,0 +170744202118,239,0 +170744202166,224,0 +170744202214,220,0 +170744202263,220,0 +170744202311,221,0 +170744202359,223,0 +170744202409,226,0 +170744202457,226,0 +170744202505,228,0 +170744202553,231,0 +170744202601,232,0 +170744202649,234,0 +170744202698,236,0 +170744202746,238,0 +170744202794,238,0 +170744202842,238,0 +170744202890,239,0 +170744202938,240,0 +170744202986,241,0 +170744203034,240,0 +170744203082,240,0 +170744203131,239,0 +170744203179,238,0 +170744203229,219,0 +170744203277,219,0 +170744203324,219,0 +170744203372,221,0 +170744203420,224,0 +170744203468,226,0 +170744203516,229,0 +170744203564,228,0 +170744203614,231,0 +170744203662,232,0 +170744203710,234,0 +170744203759,236,0 +170744203807,238,0 +170744203857,238,0 +170744203905,239,0 +170744203954,240,0 +170744204002,241,0 +170744204052,239,0 +170744204100,241,0 +170744204149,239,0 +170744204198,234,0 +170744204246,218,0 +170744204294,218,0 +170744204344,219,0 +170744204393,219,0 +170744204441,221,0 +170744204491,224,0 +170744204540,226,0 +170744204588,235,0 +170744204636,230,0 +170744204684,232,0 +170744204732,234,0 +170744204780,233,0 +170744204830,236,0 +170744204879,238,0 +170744204927,239,0 +170744204975,241,0 +170744205025,242,0 +170744205073,241,0 +170744205121,240,0 +170744205169,240,0 +170744205217,237,0 +170744205265,219,0 +170744205313,219,0 +170744205360,219,0 +170744205410,220,0 +170744205458,221,0 +170744205506,225,0 +170744205554,226,0 +170744205603,229,0 +170744205653,231,0 +170744205701,234,0 +170744205749,234,0 +170744205798,234,0 +170744205846,238,0 +170744205894,238,0 +170744205942,238,0 +170744205990,239,0 +170744206040,240,0 +170744206089,241,0 +170744206137,242,0 +170744206187,239,0 +170744206235,238,0 +170744206282,218,0 +170744206330,217,0 +170744206378,218,0 +170744206426,219,0 +170744206476,219,0 +170744206524,222,0 +170744206572,224,0 +170744206621,225,0 +170744206669,227,0 +170744206719,230,0 +170744206767,233,0 +170744206815,234,0 +170744206863,236,0 +170744206911,236,0 +170744206959,237,0 +170744207006,240,0 +170744207056,239,0 +170744207104,240,0 +170744207152,242,0 +170744207201,238,0 +170744207249,237,0 +170744207297,219,0 +170744207347,216,0 +170744207395,216,0 +170744207444,217,0 +170744207494,217,0 +170744207542,218,0 +170744207590,219,0 +170744207638,220,0 +170744207686,221,0 +170744207734,223,0 +170744207782,226,0 +170744207830,229,0 +170744207877,230,0 +170744207925,232,0 +170744207973,232,0 +170744208021,236,0 +170744208071,236,0 +170744208120,237,0 +170744208168,240,0 +170744208216,240,0 +170744208264,239,0 +170744208312,222,0 +170744208360,218,0 +170744208408,218,0 +170744208456,219,0 +170744208504,220,0 +170744208552,221,0 +170744208600,223,0 +170744208648,225,0 +170744208696,226,0 +170744208745,228,0 +170744208795,230,0 +170744208843,232,0 +170744208891,234,0 +170744208940,238,0 +170744208988,238,0 +170744209036,237,0 +170744209084,237,0 +170744209132,238,0 +170744209180,240,0 +170744209228,240,0 +170744209276,239,0 +170744209324,221,0 +170744209372,216,0 +170744209420,217,0 +170744209469,217,0 +170744209517,218,0 +170744209566,218,0 +170744209614,220,0 +170744209662,220,0 +170744209712,221,0 +170744209761,224,0 +170744209809,226,0 +170744209857,229,0 +170744209905,231,0 +170744209953,234,0 +170744210001,234,0 +170744210049,235,0 +170744210097,237,0 +170744210145,239,0 +170744210194,238,0 +170744210242,236,0 +170744210290,239,0 +170744210338,219,0 +170744210386,217,0 +170744210434,217,0 +170744210482,217,0 +170744210530,218,0 +170744210578,219,0 +170744210626,220,0 +170744210674,220,0 +170744210722,222,0 +170744210770,224,0 +170744210818,226,0 +170744210867,230,0 +170744210915,230,0 +170744210963,234,0 +170744211013,234,0 +170744211061,235,0 +170744211109,235,0 +170744211157,238,0 +170744211205,238,0 +170744211253,239,0 +170744211301,239,0 +170744211348,230,0 +170744211396,216,0 +170744211446,215,0 +170744211494,217,0 +170744211542,217,0 +170744211590,218,0 +170744211639,218,0 +170744211687,219,0 +170744211737,221,0 +170744211785,222,0 +170744211833,225,0 +170744211881,228,0 +170744211929,230,0 +170744211978,231,0 +170744212026,234,0 +170744212074,237,0 +170744212122,237,0 +170744212170,238,0 +170744212220,238,0 +170744212267,241,0 +170744212317,239,0 +170744212365,239,0 +170744212414,218,0 +170744212464,217,0 +170744212512,217,0 +170744212560,217,0 +170744212608,218,0 +170744212656,220,0 +170744212704,220,0 +170744212752,220,0 +170744212801,223,0 +170744212849,226,0 +170744212897,228,0 +170744212945,230,0 +170744212993,231,0 +170744213041,232,0 +170744213090,236,0 +170744213138,244,0 +170744213188,239,0 +170744213236,240,0 +170744213284,238,0 +170744213333,240,0 +170744213381,238,0 +170744213429,219,0 +170744213479,217,0 +170744213527,217,0 +170744213576,217,0 +170744213624,217,0 +170744213672,216,0 +170744213720,217,0 +170744213768,217,0 +170744213817,217,0 +170744213867,215,0 +170744213916,216,0 +170744213964,217,0 +170744214012,218,0 +170744214060,219,0 +170744214108,219,0 +170744214156,221,0 +170744214204,222,0 +170744214252,223,0 +170744214302,225,0 +170744214351,229,0 +170744214399,230,0 +170744214447,233,0 +170744214497,234,0 +170744214544,237,0 +170744214592,237,0 +170744214640,239,0 +170744214688,240,0 +170744214738,240,0 +170744214786,241,0 +170744214835,240,0 +170744214883,238,0 +170744214931,221,0 +170744214979,216,0 +170744215027,216,0 +170744215075,217,0 +170744215123,217,0 +170744215171,217,0 +170744215219,218,0 +170744215267,219,0 +170744215315,220,0 +170744215363,220,0 +170744215411,221,0 +170744215459,224,0 +170744215507,226,0 +170744215556,228,0 +170744215606,230,0 +170744215654,232,0 +170744215702,234,0 +170744215749,236,0 +170744215799,235,0 +170744215849,234,0 +170744215897,239,0 +170744215944,221,0 +170744215994,217,0 +170744216044,219,0 +170744216093,219,0 +170744216141,218,0 +170744216189,219,0 +170744216237,220,0 +170744216285,221,0 +170744216332,222,0 +170744216380,225,0 +170744216428,229,0 +170744216476,229,0 +170744216526,234,0 +170744216573,236,0 +170744216621,235,0 +170744216669,238,0 +170744216719,239,0 +170744216766,239,0 +170744216814,240,0 +170744216862,240,0 +170744216910,243,0 +170744216958,238,0 +170744217006,218,0 +170744217054,216,0 +170744217102,215,0 +170744217150,216,0 +170744217198,216,0 +170744217246,217,0 +170744217295,217,0 +170744217345,217,0 +170744217393,218,0 +170744217442,219,0 +170744217490,221,0 +170744217538,222,0 +170744217586,227,0 +170744217634,230,0 +170744217682,232,0 +170744217730,232,0 +170744217778,236,0 +170744217826,237,0 +170744217874,238,0 +170744217922,237,0 +170744217970,239,0 +170744218018,219,0 +170744218066,217,0 +170744218114,218,0 +170744218161,219,0 +170744218211,219,0 +170744218259,220,0 +170744218307,221,0 +170744218355,224,0 +170744218403,224,0 +170744218452,227,0 +170744218500,228,0 +170744218550,231,0 +170744218598,235,0 +170744218646,235,0 +170744218694,235,0 +170744218743,237,0 +170744218791,239,0 +170744218841,238,0 +170744218890,240,0 +170744218938,240,0 +170744218988,237,0 +170744219036,220,0 +170744219083,217,0 +170744219133,218,0 +170744219181,220,0 +170744219229,221,0 +170744219277,226,0 +170744219325,225,0 +170744219374,225,0 +170744219422,227,0 +170744219470,229,0 +170744219518,230,0 +170744219566,234,0 +170744219614,233,0 +170744219662,238,0 +170744219710,238,0 +170744219758,239,0 +170744219806,240,0 +170744219854,241,0 +170744219902,240,0 +170744219950,241,0 +170744219998,238,0 +170744220046,221,0 +170744220094,217,0 +170744220142,218,0 +170744220189,219,0 +170744220239,219,0 +170744220287,221,0 +170744220335,223,0 +170744220383,224,0 +170744220431,225,0 +170744220479,227,0 +170744220527,230,0 +170744220575,234,0 +170744220623,234,0 +170744220672,237,0 +170744220720,237,0 +170744220768,238,0 +170744220816,240,0 +170744220864,241,0 +170744220912,240,0 +170744220961,240,0 +170744221009,238,0 +170744221059,220,0 +170744221107,216,0 +170744221155,216,0 +170744221204,216,0 +170744221252,217,0 +170744221300,218,0 +170744221348,219,0 +170744221398,219,0 +170744221445,221,0 +170744221493,228,0 +170744221541,227,0 +170744221591,229,0 +170744221639,233,0 +170744221687,232,0 +170744221735,236,0 +170744221784,237,0 +170744221832,238,0 +170744221880,240,0 +170744221928,243,0 +170744221976,239,0 +170744222024,238,0 +170744222072,224,0 +170744222120,217,0 +170744222168,216,0 +170744222216,217,0 +170744222263,218,0 +170744222311,219,0 +170744222359,221,0 +170744222407,220,0 +170744222455,221,0 +170744222503,223,0 +170744222551,232,0 +170744222599,228,0 +170744222647,229,0 +170744222695,232,0 +170744222742,235,0 +170744222790,235,0 +170744222840,236,0 +170744222888,237,0 +170744222937,239,0 +170744222985,239,0 +170744223033,239,0 +170744223083,239,0 +170744223131,219,0 +170744223179,217,0 +170744223227,217,0 +170744223276,218,0 +170744223324,219,0 +170744223372,220,0 +170744223420,220,0 +170744223468,221,0 +170744223518,223,0 +170744223566,224,0 +170744223614,227,0 +170744223662,229,0 +170744223711,232,0 +170744223759,234,0 +170744223807,237,0 +170744223855,237,0 +170744223903,238,0 +170744223951,241,0 +170744223999,241,0 +170744224047,238,0 +170744224095,240,0 +170744224143,221,0 +170744224191,216,0 +170744224240,216,0 +170744224288,216,0 +170744224336,216,0 +170744224384,216,0 +170744224432,216,0 +170744224480,217,0 +170744224528,218,0 +170744224578,219,0 +170744224625,220,0 +170744224675,222,0 +170744224725,225,0 +170744224774,227,0 +170744224822,231,0 +170744224870,232,0 +170744224918,235,0 +170744224966,235,0 +170744225016,238,0 +170744225063,239,0 +170744225111,237,0 +170744225159,221,0 +170744225207,216,0 +170744225255,215,0 +170744225303,215,0 +170744225353,216,0 +170744225401,217,0 +170744225449,217,0 +170744225497,219,0 +170744225545,219,0 +170744225594,220,0 +170744225642,222,0 +170744225691,224,0 +170744225739,228,0 +170744225787,229,0 +170744225835,232,0 +170744225885,233,0 +170744225933,236,0 +170744225981,238,0 +170744226029,237,0 +170744226077,240,0 +170744226125,240,0 +170744226174,220,0 +170744226222,218,0 +170744226270,218,0 +170744226318,219,0 +170744226366,220,0 +170744226414,222,0 +170744226463,225,0 +170744226511,227,0 +170744226559,229,0 +170744226607,230,0 +170744226655,232,0 +170744226703,234,0 +170744226751,236,0 +170744226799,238,0 +170744226849,238,0 +170744226898,239,0 +170744226948,240,0 +170744226996,241,0 +170744227043,239,0 +170744227091,241,0 +170744227139,239,0 +170744227187,220,0 +170744227237,218,0 +170744227285,219,0 +170744227333,221,0 +170744227381,224,0 +170744227429,226,0 +170744227477,227,0 +170744227526,230,0 +170744227574,232,0 +170744227622,234,0 +170744227670,235,0 +170744227718,236,0 +170744227766,235,0 +170744227814,238,0 +170744227862,240,0 +170744227910,239,0 +170744227958,240,0 +170744228006,237,0 +170744228055,239,0 +170744228103,242,0 +170744228151,239,0 +170744228199,227,0 +170744228247,218,0 +170744228295,219,0 +170744228343,219,0 +170744228391,221,0 +170744228441,228,0 +170744228489,227,0 +170744228536,231,0 +170744228586,230,0 +170744228634,232,0 +170744228682,233,0 +170744228731,233,0 +170744228779,236,0 +170744228827,239,0 +170744228875,241,0 +170744228925,240,0 +170744228974,240,0 +170744229022,241,0 +170744229072,240,0 +170744229121,241,0 +170744229169,239,0 +170744229217,238,0 +170744229265,219,0 +170744229313,218,0 +170744229363,219,0 +170744229410,220,0 +170744229458,223,0 +170744229506,225,0 +170744229554,227,0 +170744229602,229,0 +170744229650,230,0 +170744229698,232,0 +170744229748,233,0 +170744229796,234,0 +170744229844,238,0 +170744229892,238,0 +170744229941,238,0 +170744229989,239,0 +170744230037,240,0 +170744230085,243,0 +170744230134,242,0 +170744230182,241,0 +170744230230,238,0 +170744230278,221,0 +170744230326,218,0 +170744230374,220,0 +170744230421,219,0 +170744230469,221,0 +170744230517,223,0 +170744230565,225,0 +170744230613,228,0 +170744230661,229,0 +170744230709,231,0 +170744230757,233,0 +170744230805,235,0 +170744230854,236,0 +170744230904,238,0 +170744230952,239,0 +170744231000,239,0 +170744231048,239,0 +170744231096,240,0 +170744231144,241,0 +170744231192,241,0 +170744231240,239,0 +170744231288,221,0 +170744231337,216,0 +170744231385,216,0 +170744231433,216,0 +170744231481,217,0 +170744231529,218,0 +170744231577,218,0 +170744231625,218,0 +170744231673,222,0 +170744231721,224,0 +170744231769,227,0 +170744231818,229,0 +170744231866,235,0 +170744231916,233,0 +170744231964,235,0 +170744232013,236,0 +170744232061,238,0 +170744232109,241,0 +170744232157,240,0 +170744232205,235,0 +170744232253,239,0 +170744232302,221,0 +170744232350,216,0 +170744232398,216,0 +170744232446,217,0 +170744232494,218,0 +170744232542,219,0 +170744232590,220,0 +170744232638,220,0 +170744232686,221,0 +170744232735,223,0 +170744232783,225,0 +170744232833,229,0 +170744232881,230,0 +170744232930,232,0 +170744232978,234,0 +170744233026,236,0 +170744233074,237,0 +170744233122,238,0 +170744233170,239,0 +170744233219,239,0 +170744233267,240,0 +170744233315,238,0 +170744233363,218,0 +170744233411,217,0 +170744233459,218,0 +170744233507,218,0 +170744233557,220,0 +170744233605,220,0 +170744233653,221,0 +170744233701,223,0 +170744233749,227,0 +170744233797,229,0 +170744233845,231,0 +170744233894,232,0 +170744233942,235,0 +170744233990,237,0 +170744234039,238,0 +170744234087,241,0 +170744234135,239,0 +170744234183,239,0 +170744234231,240,0 +170744234279,241,0 +170744234327,239,0 +170744234375,220,0 +170744234423,216,0 +170744234471,217,0 +170744234519,218,0 +170744234567,218,0 +170744234616,219,0 +170744234664,221,0 +170744234712,221,0 +170744234760,223,0 +170744234809,226,0 +170744234857,227,0 +170744234905,230,0 +170744234953,232,0 +170744235001,236,0 +170744235049,236,0 +170744235097,237,0 +170744235145,238,0 +170744235193,239,0 +170744235243,239,0 +170744235291,240,0 +170744235339,239,0 +170744235386,221,0 +170744235434,217,0 +170744235482,217,0 +170744235530,218,0 +170744235578,219,0 +170744235628,220,0 +170744235677,221,0 +170744235725,221,0 +170744235773,224,0 +170744235821,226,0 +170744235871,230,0 +170744235920,231,0 +170744235968,232,0 +170744236016,234,0 +170744236064,236,0 +170744236112,237,0 +170744236160,238,0 +170744236208,240,0 +170744236258,239,0 +170744236307,239,0 +170744236357,238,0 +170744236404,219,0 +170744236452,216,0 +170744236502,216,0 +170744236550,216,0 +170744236599,216,0 +170744236647,216,0 +170744236695,216,0 +170744236743,216,0 +170744236793,216,0 +170744236841,217,0 +170744236889,217,0 +170744236937,218,0 +170744236986,219,0 +170744237034,221,0 +170744237084,223,0 +170744237133,226,0 +170744237181,229,0 +170744237229,229,0 +170744237277,231,0 +170744237325,233,0 +170744237373,237,0 +170744237421,223,0 +170744237470,217,0 +170744237520,217,0 +170744237568,218,0 +170744237617,218,0 +170744237665,218,0 +170744237713,219,0 +170744237761,220,0 +170744237811,221,0 +170744237859,223,0 +170744237906,225,0 +170744237954,228,0 +170744238004,230,0 +170744238052,232,0 +170744238102,234,0 +170744238149,235,0 +170744238197,238,0 +170744238245,239,0 +170744238293,238,0 +170744238341,239,0 +170744238391,238,0 +170744238439,236,0 +170744238486,217,0 +170744238534,217,0 +170744238582,217,0 +170744238630,218,0 +170744238678,218,0 +170744238728,219,0 +170744238776,220,0 +170744238825,221,0 +170744238875,221,0 +170744238922,225,0 +170744238972,225,0 +170744239020,229,0 +170744239069,234,0 +170744239117,233,0 +170744239165,234,0 +170744239213,235,0 +170744239261,236,0 +170744239309,238,0 +170744239357,240,0 +170744239405,240,0 +170744239453,238,0 +170744239501,220,0 +170744239549,217,0 +170744239598,218,0 +170744239646,218,0 +170744239696,219,0 +170744239745,220,0 +170744239793,220,0 +170744239843,224,0 +170744239891,225,0 +170744239939,229,0 +170744239986,229,0 +170744240034,230,0 +170744240082,232,0 +170744240132,235,0 +170744240180,235,0 +170744240228,236,0 +170744240276,239,0 +170744240324,239,0 +170744240371,238,0 +170744240419,239,0 +170744240467,238,0 +170744240515,221,0 +170744240563,218,0 +170744240611,218,0 +170744240659,219,0 +170744240709,219,0 +170744240757,220,0 +170744240804,222,0 +170744240854,225,0 +170744240904,229,0 +170744240951,228,0 +170744240999,232,0 +170744241049,233,0 +170744241097,235,0 +170744241145,236,0 +170744241193,238,0 +170744241242,238,0 +170744241290,238,0 +170744241338,242,0 +170744241388,239,0 +170744241436,240,0 +170744241484,239,0 +170744241532,221,0 +170744241580,216,0 +170744241628,217,0 +170744241676,221,0 +170744241724,219,0 +170744241772,220,0 +170744241820,220,0 +170744241867,221,0 +170744241915,223,0 +170744241963,227,0 +170744242013,229,0 +170744242061,231,0 +170744242110,232,0 +170744242160,234,0 +170744242208,236,0 +170744242256,238,0 +170744242304,238,0 +170744242352,240,0 +170744242399,240,0 +170744242449,239,0 +170744242497,239,0 +170744242545,219,0 +170744242593,217,0 +170744242642,219,0 +170744242690,220,0 +170744242738,220,0 +170744242788,223,0 +170744242836,225,0 +170744242884,227,0 +170744242932,228,0 +170744242980,228,0 +170744243029,232,0 +170744243077,233,0 +170744243125,235,0 +170744243173,233,0 +170744243221,238,0 +170744243269,241,0 +170744243317,238,0 +170744243365,240,0 +170744243413,239,0 +170744243462,240,0 +170744243510,237,0 +170744243558,237,0 +170744243606,218,0 +170744243654,218,0 +170744243702,218,0 +170744243750,219,0 +170744243798,225,0 +170744243846,224,0 +170744243896,227,0 +170744243944,229,0 +170744243992,230,0 +170744244040,231,0 +170744244088,232,0 +170744244136,231,0 +170744244185,234,0 +170744244235,237,0 +170744244283,237,0 +170744244331,238,0 +170744244379,240,0 +170744244428,240,0 +170744244478,239,0 +170744244526,239,0 +170744244573,239,0 +170744244623,219,0 +170744244671,215,0 +170744244719,216,0 +170744244767,217,0 +170744244815,217,0 +170744244863,218,0 +170744244911,219,0 +170744244959,221,0 +170744245007,222,0 +170744245056,225,0 +170744245104,228,0 +170744245152,231,0 +170744245200,229,0 +170744245250,234,0 +170744245298,234,0 +170744245346,236,0 +170744245393,235,0 +170744245441,239,0 +170744245491,239,0 +170744245539,239,0 +170744245587,239,0 +170744245635,221,0 +170744245683,216,0 +170744245730,216,0 +170744245780,216,0 +170744245829,217,0 +170744245877,218,0 +170744245925,218,0 +170744245973,220,0 +170744246021,221,0 +170744246069,222,0 +170744246117,223,0 +170744246165,228,0 +170744246213,229,0 +170744246263,230,0 +170744246311,234,0 +170744246358,235,0 +170744246408,235,0 +170744246456,237,0 +170744246505,240,0 +170744246553,238,0 +170744246601,239,0 +170744246649,221,0 +170744246697,217,0 +170744246745,217,0 +170744246793,218,0 +170744246841,218,0 +170744246891,219,0 +170744246939,220,0 +170744246988,221,0 +170744247036,221,0 +170744247086,223,0 +170744247134,227,0 +170744247181,228,0 +170744247231,232,0 +170744247279,234,0 +170744247327,235,0 +170744247376,237,0 +170744247426,238,0 +170744247475,238,0 +170744247523,236,0 +170744247571,241,0 +170744247619,241,0 +170744247667,229,0 +170744247717,216,0 +170744247765,216,0 +170744247813,216,0 +170744247861,216,0 +170744247909,217,0 +170744247958,218,0 +170744248008,218,0 +170744248056,218,0 +170744248103,219,0 +170744248151,221,0 +170744248199,225,0 +170744248247,227,0 +170744248295,229,0 +170744248343,231,0 +170744248391,233,0 +170744248439,235,0 +170744248487,235,0 +170744248535,236,0 +170744248583,238,0 +170744248632,241,0 +170744248680,237,0 +170744248728,218,0 +170744248778,216,0 +170744248826,216,0 +170744248874,217,0 +170744248923,218,0 +170744248971,218,0 +170744249021,219,0 +170744249069,220,0 +170744249117,220,0 +170744249166,222,0 +170744249216,225,0 +170744249264,227,0 +170744249312,229,0 +170744249362,232,0 +170744249410,233,0 +170744249458,234,0 +170744249506,236,0 +170744249555,238,0 +170744249603,239,0 +170744249651,240,0 +170744249701,239,0 +170744249749,221,0 +170744249797,216,0 +170744249846,215,0 +170744249894,216,0 +170744249943,216,0 +170744249991,216,0 +170744250041,218,0 +170744250089,217,0 +170744250136,217,0 +170744250184,219,0 +170744250232,219,0 +170744250280,221,0 +170744250328,223,0 +170744250376,227,0 +170744250424,229,0 +170744250472,233,0 +170744250519,232,0 +170744250567,232,0 +170744250615,236,0 +170744250663,237,0 +170744250711,240,0 +170744250759,220,0 +170744250808,219,0 +170744250856,218,0 +170744250904,219,0 +170744250952,219,0 +170744251001,220,0 +170744251051,222,0 +170744251099,222,0 +170744251147,223,0 +170744251195,226,0 +170744251242,230,0 +170744251290,230,0 +170744251338,234,0 +170744251386,235,0 +170744251434,237,0 +170744251482,238,0 +170744251530,240,0 +170744251578,240,0 +170744251625,241,0 +170744251673,241,0 +170744251721,240,0 +170744251769,237,0 +170744251817,218,0 +170744251865,217,0 +170744251913,218,0 +170744251960,218,0 +170744252008,219,0 +170744252056,220,0 +170744252104,221,0 +170744252152,222,0 +170744252200,224,0 +170744252248,226,0 +170744252295,229,0 +170744252345,232,0 +170744252394,233,0 +170744252442,238,0 +170744252490,236,0 +170744252538,236,0 +170744252586,239,0 +170744252634,239,0 +170744252682,240,0 +170744252730,241,0 +170744252777,240,0 +170744252825,221,0 +170744252873,218,0 +170744252921,218,0 +170744252969,219,0 +170744253017,220,0 +170744253065,220,0 +170744253112,222,0 +170744253162,223,0 +170744253210,226,0 +170744253258,228,0 +170744253307,230,0 +170744253357,232,0 +170744253405,234,0 +170744253453,244,0 +170744253502,237,0 +170744253550,238,0 +170744253598,239,0 +170744253646,241,0 +170744253694,242,0 +170744253742,241,0 +170744253790,240,0 +170744253838,220,0 +170744253886,218,0 +170744253934,218,0 +170744253982,219,0 +170744254030,220,0 +170744254079,220,0 +170744254127,221,0 +170744254175,221,0 +170744254223,224,0 +170744254271,226,0 +170744254319,228,0 +170744254368,231,0 +170744254416,232,0 +170744254464,235,0 +170744254512,237,0 +170744254560,239,0 +170744254608,237,0 +170744254656,240,0 +170744254704,240,0 +170744254752,241,0 +170744254800,239,0 +170744254849,235,0 +170744254899,218,0 +170744254947,218,0 +170744254994,219,0 +170744255042,219,0 +170744255092,220,0 +170744255140,220,0 +170744255188,221,0 +170744255237,222,0 +170744255285,222,0 +170744255333,225,0 +170744255381,228,0 +170744255429,231,0 +170744255477,233,0 +170744255525,235,0 +170744255573,241,0 +170744255621,238,0 +170744255669,238,0 +170744255717,239,0 +170744255765,239,0 +170744255813,243,0 +170744255861,239,0 +170744255909,220,0 +170744255957,218,0 +170744256005,218,0 +170744256053,218,0 +170744256102,219,0 +170744256150,219,0 +170744256198,220,0 +170744256246,221,0 +170744256294,223,0 +170744256343,226,0 +170744256391,228,0 +170744256441,230,0 +170744256489,234,0 +170744256537,233,0 +170744256585,235,0 +170744256633,237,0 +170744256681,237,0 +170744256730,239,0 +170744256780,240,0 +170744256828,240,0 +170744256876,238,0 +170744256923,220,0 +170744256971,216,0 +170744257019,216,0 +170744257067,217,0 +170744257115,218,0 +170744257163,218,0 +170744257212,219,0 +170744257262,220,0 +170744257310,220,0 +170744257358,221,0 +170744257405,225,0 +170744257453,227,0 +170744257503,230,0 +170744257551,231,0 +170744257599,234,0 +170744257648,235,0 +170744257696,235,0 +170744257744,237,0 +170744257794,237,0 +170744257842,238,0 +170744257891,240,0 +170744257939,239,0 +170744257987,220,0 +170744258035,219,0 +170744258084,220,0 +170744258132,222,0 +170744258180,225,0 +170744258228,227,0 +170744258276,230,0 +170744258324,231,0 +170744258372,232,0 +170744258420,236,0 +170744258468,236,0 +170744258518,238,0 +170744258565,239,0 +170744258613,239,0 +170744258661,240,0 +170744258709,240,0 +170744258757,241,0 +170744258805,240,0 +170744258853,239,0 +170744258901,242,0 +170744258949,238,0 +170744258997,222,0 +170744259045,218,0 +170744259093,218,0 +170744259141,221,0 +170744259189,223,0 +170744259238,225,0 +170744259286,229,0 +170744259336,230,0 +170744259385,239,0 +170744259433,235,0 +170744259481,237,0 +170744259529,236,0 +170744259577,239,0 +170744259625,238,0 +170744259673,239,0 +170744259722,239,0 +170744259770,240,0 +170744259818,241,0 +170744259866,240,0 +170744259914,241,0 +170744259961,240,0 +170744260009,239,0 +170744260057,219,0 +170744260105,218,0 +170744260155,219,0 +170744260203,220,0 +170744260252,221,0 +170744260300,223,0 +170744260350,226,0 +170744260397,228,0 +170744260445,230,0 +170744260493,230,0 +170744260541,232,0 +170744260589,234,0 +170744260637,235,0 +170744260685,235,0 +170744260733,236,0 +170744260781,237,0 +170744260830,240,0 +170744260880,239,0 +170744260928,239,0 +170744260976,240,0 +170744261024,240,0 +170744261072,219,0 +170744261120,218,0 +170744261169,218,0 +170744261217,219,0 +170744261265,220,0 +170744261313,221,0 +170744261362,224,0 +170744261410,225,0 +170744261458,232,0 +170744261506,230,0 +170744261554,231,0 +170744261602,232,0 +170744261650,234,0 +170744261698,236,0 +170744261746,237,0 +170744261795,237,0 +170744261843,240,0 +170744261891,240,0 +170744261939,241,0 +170744261987,242,0 +170744262035,240,0 +170744262083,220,0 +170744262132,216,0 +170744262180,216,0 +170744262228,216,0 +170744262276,216,0 +170744262324,217,0 +170744262372,218,0 +170744262420,219,0 +170744262468,219,0 +170744262516,220,0 +170744262564,223,0 +170744262612,225,0 +170744262661,228,0 +170744262711,230,0 +170744262760,233,0 +170744262808,232,0 +170744262856,235,0 +170744262904,237,0 +170744262952,237,0 +170744263000,238,0 +170744263050,239,0 +170744263098,233,0 +170744263146,217,0 +170744263194,217,0 +170744263242,218,0 +170744263290,218,0 +170744263339,219,0 +170744263387,220,0 +170744263435,221,0 +170744263485,221,0 +170744263532,225,0 +170744263582,228,0 +170744263630,228,0 +170744263678,230,0 +170744263727,233,0 +170744263777,234,0 +170744263825,236,0 +170744263873,236,0 +170744263922,237,0 +170744263970,239,0 +170744264018,240,0 +170744264066,239,0 +170744264116,238,0 +170744264164,219,0 +170744264213,218,0 +170744264263,218,0 +170744264311,220,0 +170744264359,220,0 +170744264408,221,0 +170744264456,222,0 +170744264506,224,0 +170744264554,226,0 +170744264602,229,0 +170744264650,230,0 +170744264698,232,0 +170744264747,234,0 +170744264795,236,0 +170744264843,236,0 +170744264891,238,0 +170744264939,238,0 +170744264988,238,0 +170744265036,241,0 +170744265086,240,0 +170744265134,239,0 +170744265183,221,0 +170744265233,217,0 +170744265281,217,0 +170744265329,219,0 +170744265377,218,0 +170744265425,220,0 +170744265473,221,0 +170744265522,221,0 +170744265570,223,0 +170744265618,225,0 +170744265666,226,0 +170744265714,230,0 +170744265763,232,0 +170744265811,235,0 +170744265859,235,0 +170744265909,237,0 +170744265957,238,0 +170744266004,238,0 +170744266054,240,0 +170744266102,239,0 +170744266150,240,0 +170744266198,240,0 +170744266245,218,0 +170744266293,216,0 +170744266341,216,0 +170744266389,215,0 +170744266437,216,0 +170744266485,216,0 +170744266533,217,0 +170744266582,217,0 +170744266630,218,0 +170744266678,219,0 +170744266726,221,0 +170744266775,225,0 +170744266823,226,0 +170744266871,228,0 +170744266919,231,0 +170744266967,233,0 +170744267016,234,0 +170744267066,236,0 +170744267114,236,0 +170744267162,238,0 +170744267210,239,0 +170744267257,221,0 +170744267305,217,0 +170744267353,217,0 +170744267401,218,0 +170744267449,219,0 +170744267498,220,0 +170744267548,220,0 +170744267597,221,0 +170744267645,221,0 +170744267693,224,0 +170744267741,226,0 +170744267791,228,0 +170744267840,231,0 +170744267888,233,0 +170744267938,235,0 +170744267985,236,0 +170744268033,237,0 +170744268083,238,0 +170744268133,239,0 +170744268181,240,0 +170744268228,239,0 +170744268278,219,0 +170744268326,218,0 +170744268375,219,0 +170744268423,218,0 +170744268471,219,0 +170744268519,220,0 +170744268569,221,0 +170744268617,223,0 +170744268666,223,0 +170744268716,227,0 +170744268765,227,0 +170744268813,230,0 +170744268861,231,0 +170744268911,234,0 +170744268959,234,0 +170744269007,237,0 +170744269056,237,0 +170744269104,240,0 +170744269152,238,0 +170744269200,239,0 +170744269248,240,0 +170744269298,238,0 +170744269346,219,0 +170744269394,216,0 +170744269442,216,0 +170744269491,217,0 +170744269541,218,0 +170744269590,218,0 +170744269638,219,0 +170744269688,220,0 +170744269736,221,0 +170744269785,224,0 +170744269833,226,0 +170744269883,229,0 +170744269932,231,0 +170744269980,232,0 +170744270030,233,0 +170744270078,235,0 +170744270126,237,0 +170744270174,237,0 +170744270222,240,0 +170744270269,240,0 +170744270317,238,0 +170744270365,221,0 +170744270415,216,0 +170744270464,216,0 +170744270512,216,0 +170744270560,217,0 +170744270608,218,0 +170744270656,218,0 +170744270706,218,0 +170744270755,219,0 +170744270803,222,0 +170744270853,224,0 +170744270901,227,0 +170744270950,231,0 +170744270998,232,0 +170744271047,233,0 +170744271095,235,0 +170744271143,237,0 +170744271193,237,0 +170744271241,238,0 +170744271289,239,0 +170744271337,239,0 +170744271386,221,0 +170744271434,216,0 +170744271482,216,0 +170744271530,216,0 +170744271578,215,0 +170744271626,216,0 +170744271674,216,0 +170744271722,216,0 +170744271771,216,0 +170744271821,216,0 +170744271869,217,0 +170744271917,218,0 +170744271966,219,0 +170744272014,221,0 +170744272062,225,0 +170744272112,226,0 +170744272160,228,0 +170744272208,230,0 +170744272256,232,0 +170744272305,233,0 +170744272353,237,0 +170744272401,238,0 +170744272450,218,0 +170744272498,218,0 +170744272546,218,0 +170744272594,219,0 +170744272642,219,0 +170744272690,220,0 +170744272738,221,0 +170744272786,221,0 +170744272834,223,0 +170744272882,226,0 +170744272931,230,0 +170744272979,231,0 +170744273027,233,0 +170744273075,233,0 +170744273125,237,0 +170744273173,238,0 +170744273221,239,0 +170744273270,239,0 +170744273320,240,0 +170744273367,240,0 +170744273417,238,0 +170744273465,222,0 +170744273513,218,0 +170744273562,218,0 +170744273612,219,0 +170744273661,220,0 +170744273709,221,0 +170744273758,222,0 +170744273808,221,0 +170744273856,223,0 +170744273904,225,0 +170744273952,228,0 +170744274000,230,0 +170744274047,232,0 +170744274095,234,0 +170744274143,235,0 +170744274191,235,0 +170744274239,237,0 +170744274287,239,0 +170744274335,240,0 +170744274383,238,0 +170744274432,240,0 +170744274480,238,0 +170744274528,218,0 +170744274576,216,0 +170744274624,216,0 +170744274672,216,0 +170744274721,216,0 +170744274769,217,0 +170744274817,218,0 +170744274866,218,0 +170744274914,219,0 +170744274964,219,0 +170744275012,221,0 +170744275060,224,0 +170744275108,227,0 +170744275156,229,0 +170744275204,233,0 +170744275252,233,0 +170744275301,234,0 +170744275349,233,0 +170744275397,238,0 +170744275446,237,0 +170744275494,237,0 +170744275542,220,0 +170744275590,216,0 +170744275638,216,0 +170744275686,216,0 +170744275736,216,0 +170744275783,216,0 +170744275833,218,0 +170744275883,217,0 +170744275931,217,0 +170744275980,218,0 +170744276028,219,0 +170744276078,219,0 +170744276126,222,0 +170744276173,224,0 +170744276221,227,0 +170744276269,229,0 +170744276319,232,0 +170744276367,233,0 +170744276415,234,0 +170744276463,235,0 +170744276512,241,0 +170744276562,238,0 +170744276609,218,0 +170744276657,218,0 +170744276705,218,0 +170744276755,219,0 +170744276803,219,0 +170744276850,220,0 +170744276898,221,0 +170744276946,221,0 +170744276994,222,0 +170744277042,224,0 +170744277090,227,0 +170744277138,229,0 +170744277187,230,0 +170744277235,231,0 +170744277283,234,0 +170744277333,235,0 +170744277381,236,0 +170744277430,237,0 +170744277480,239,0 +170744277529,237,0 +170744277577,239,0 +170744277626,219,0 +170744277674,216,0 +170744277722,217,0 +170744277770,217,0 +170744277818,217,0 +170744277866,218,0 +170744277915,218,0 +170744277963,220,0 +170744278013,223,0 +170744278061,222,0 +170744278108,224,0 +170744278158,227,0 +170744278207,229,0 +170744278255,232,0 +170744278303,234,0 +170744278351,235,0 +170744278399,235,0 +170744278447,238,0 +170744278494,238,0 +170744278542,237,0 +170744278590,238,0 +170744278640,220,0 +170744278688,216,0 +170744278735,216,0 +170744278783,216,0 +170744278831,216,0 +170744278879,216,0 +170744278928,216,0 +170744278976,216,0 +170744279024,216,0 +170744279072,216,0 +170744279120,217,0 +170744279168,218,0 +170744279216,220,0 +170744279265,223,0 +170744279313,226,0 +170744279361,228,0 +170744279409,231,0 +170744279457,231,0 +170744279504,234,0 +170744279552,235,0 +170744279602,238,0 +170744279650,238,0 +170744279699,218,0 +170744279749,217,0 +170744279797,217,0 +170744279846,218,0 +170744279894,219,0 +170744279943,220,0 +170744279991,220,0 +170744280039,221,0 +170744280086,222,0 +170744280134,223,0 +170744280182,225,0 +170744280232,229,0 +170744280280,232,0 +170744280328,233,0 +170744280376,234,0 +170744280424,235,0 +170744280472,235,0 +170744280520,238,0 +170744280569,238,0 +170744280619,239,0 +170744280667,238,0 +170744280716,221,0 +170744280764,217,0 +170744280814,217,0 +170744280863,218,0 +170744280913,224,0 +170744280962,220,0 +170744281012,220,0 +170744281061,223,0 +170744281111,223,0 +170744281159,228,0 +170744281208,229,0 +170744281256,232,0 +170744281304,240,0 +170744281352,235,0 +170744281400,236,0 +170744281448,237,0 +170744281496,240,0 +170744281545,240,0 +170744281593,245,0 +170744281641,240,0 +170744281689,239,0 +170744281737,223,0 +170744281787,217,0 +170744281836,217,0 +170744281884,218,0 +170744281932,219,0 +170744281980,219,0 +170744282028,219,0 +170744282076,220,0 +170744282124,222,0 +170744282172,223,0 +170744282220,226,0 +170744282269,227,0 +170744282317,230,0 +170744282365,232,0 +170744282413,233,0 +170744282461,236,0 +170744282509,239,0 +170744282557,240,0 +170744282605,241,0 +170744282653,240,0 +170744282701,238,0 +170744282749,238,0 +170744282797,220,0 +170744282845,217,0 +170744282894,217,0 +170744282942,218,0 +170744282990,219,0 +170744283038,220,0 +170744283086,220,0 +170744283134,221,0 +170744283182,224,0 +170744283231,227,0 +170744283281,233,0 +170744283329,230,0 +170744283377,231,0 +170744283426,235,0 +170744283476,236,0 +170744283524,236,0 +170744283572,237,0 +170744283620,239,0 +170744283668,239,0 +170744283716,239,0 +170744283765,240,0 +170744283813,236,0 +170744283861,217,0 +170744283909,217,0 +170744283959,217,0 +170744284007,218,0 +170744284055,219,0 +170744284102,219,0 +170744284152,223,0 +170744284202,223,0 +170744284249,226,0 +170744284297,227,0 +170744284345,231,0 +170744284395,233,0 +170744284443,233,0 +170744284492,234,0 +170744284540,238,0 +170744284588,238,0 +170744284638,239,0 +170744284686,243,0 +170744284734,240,0 +170744284782,240,0 +170744284830,239,0 +170744284877,221,0 +170744284925,216,0 +170744284973,217,0 +170744285023,217,0 +170744285071,218,0 +170744285119,219,0 +170744285167,219,0 +170744285215,221,0 +170744285263,223,0 +170744285311,225,0 +170744285360,227,0 +170744285408,230,0 +170744285458,232,0 +170744285506,233,0 +170744285555,234,0 +170744285603,237,0 +170744285653,239,0 +170744285702,240,0 +170744285750,240,0 +170744285798,242,0 +170744285846,239,0 +170744285894,220,0 +170744285942,217,0 +170744285990,217,0 +170744286038,218,0 +170744286086,218,0 +170744286134,219,0 +170744286182,220,0 +170744286230,222,0 +170744286279,222,0 +170744286327,224,0 +170744286375,226,0 +170744286423,227,0 +170744286471,229,0 +170744286519,232,0 +170744286569,235,0 +170744286616,235,0 +170744286666,238,0 +170744286715,237,0 +170744286765,240,0 +170744286813,239,0 +170744286861,240,0 +170744286909,239,0 +170744286957,221,0 +170744287005,220,0 +170744287053,221,0 +170744287101,222,0 +170744287149,225,0 +170744287198,226,0 +170744287246,226,0 +170744287294,230,0 +170744287342,231,0 +170744287390,233,0 +170744287438,235,0 +170744287486,237,0 +170744287534,238,0 +170744287582,239,0 +170744287630,238,0 +170744287679,239,0 +170744287727,241,0 +170744287775,240,0 +170744287823,241,0 +170744287871,240,0 +170744287919,238,0 +170744287967,226,0 +170744288016,219,0 +170744288064,220,0 +170744288112,219,0 +170744288160,222,0 +170744288208,225,0 +170744288257,226,0 +170744288307,228,0 +170744288355,230,0 +170744288403,230,0 +170744288451,233,0 +170744288500,234,0 +170744288549,235,0 +170744288599,238,0 +170744288647,238,0 +170744288695,240,0 +170744288743,240,0 +170744288792,241,0 +170744288842,241,0 +170744288891,241,0 +170744288939,239,0 +170744288987,238,0 +170744289035,220,0 +170744289083,218,0 +170744289130,219,0 +170744289180,219,0 +170744289229,221,0 +170744289277,223,0 +170744289325,225,0 +170744289373,226,0 +170744289423,227,0 +170744289471,229,0 +170744289519,232,0 +170744289567,233,0 +170744289616,235,0 +170744289664,237,0 +170744289712,237,0 +170744289760,239,0 +170744289808,239,0 +170744289858,241,0 +170744289906,238,0 +170744289954,238,0 +170744290003,238,0 +170744290051,222,0 +170744290101,217,0 +170744290150,218,0 +170744290200,218,0 +170744290248,219,0 +170744290295,220,0 +170744290343,220,0 +170744290391,220,0 +170744290441,222,0 +170744290488,224,0 +170744290536,227,0 +170744290584,230,0 +170744290632,230,0 +170744290680,233,0 +170744290728,235,0 +170744290776,236,0 +170744290826,237,0 +170744290875,239,0 +170744290923,237,0 +170744290971,240,0 +170744291019,239,0 +170744291067,237,0 +170744291115,217,0 +170744291163,217,0 +170744291211,217,0 +170744291259,219,0 +170744291307,219,0 +170744291355,220,0 +170744291403,220,0 +170744291451,223,0 +170744291500,225,0 +170744291548,228,0 +170744291596,231,0 +170744291646,232,0 +170744291694,235,0 +170744291743,237,0 +170744291791,237,0 +170744291839,238,0 +170744291887,240,0 +170744291935,240,0 +170744291983,241,0 +170744292031,241,0 +170744292079,240,0 +170744292127,222,0 +170744292175,218,0 +170744292223,218,0 +170744292271,218,0 +170744292320,219,0 +170744292368,220,0 +170744292416,223,0 +170744292464,227,0 +170744292512,226,0 +170744292562,231,0 +170744292610,231,0 +170744292658,233,0 +170744292707,235,0 +170744292755,236,0 +170744292803,238,0 +170744292851,238,0 +170744292899,239,0 +170744292947,240,0 +170744292995,240,0 +170744293043,240,0 +170744293093,240,0 +170744293141,238,0 +170744293189,217,0 +170744293237,218,0 +170744293285,219,0 +170744293333,220,0 +170744293381,226,0 +170744293429,226,0 +170744293477,227,0 +170744293525,229,0 +170744293574,231,0 +170744293622,232,0 +170744293670,234,0 +170744293720,236,0 +170744293769,235,0 +170744293819,237,0 +170744293867,237,0 +170744293915,239,0 +170744293964,238,0 +170744294012,240,0 +170744294060,242,0 +170744294109,241,0 +170744294157,239,0 +170744294207,221,0 +170744294255,216,0 +170744294303,215,0 +170744294352,216,0 +170744294400,217,0 +170744294448,217,0 +170744294496,218,0 +170744294544,219,0 +170744294592,220,0 +170744294640,222,0 +170744294688,224,0 +170744294738,228,0 +170744294786,230,0 +170744294835,229,0 +170744294885,232,0 +170744294933,235,0 +170744294980,235,0 +170744295028,237,0 +170744295078,238,0 +170744295128,240,0 +170744295177,239,0 +170744295225,238,0 +170744295274,218,0 +170744295322,216,0 +170744295370,216,0 +170744295418,217,0 +170744295466,217,0 +170744295514,218,0 +170744295562,219,0 +170744295610,221,0 +170744295658,222,0 +170744295706,224,0 +170744295754,225,0 +170744295802,228,0 +170744295850,230,0 +170744295898,232,0 +170744295946,234,0 +170744295995,235,0 +170744296045,236,0 +170744296093,238,0 +170744296142,237,0 +170744296190,239,0 +170744296238,240,0 +170744296288,221,0 +170744296336,217,0 +170744296384,217,0 +170744296432,218,0 +170744296480,219,0 +170744296528,220,0 +170744296576,220,0 +170744296625,221,0 +170744296673,222,0 +170744296721,224,0 +170744296771,227,0 +170744296820,229,0 +170744296868,231,0 +170744296918,233,0 +170744296966,235,0 +170744297014,236,0 +170744297062,237,0 +170744297110,238,0 +170744297158,238,0 +170744297206,239,0 +170744297254,239,0 +170744297301,238,0 +170744297351,217,0 +170744297399,217,0 +170744297448,218,0 +170744297496,219,0 +170744297546,220,0 +170744297594,221,0 +170744297642,222,0 +170744297690,224,0 +170744297738,226,0 +170744297786,228,0 +170744297834,230,0 +170744297882,231,0 +170744297931,233,0 +170744297981,235,0 +170744298030,238,0 +170744298078,243,0 +170744298126,241,0 +170744298174,241,0 +170744298222,239,0 +170744298271,240,0 +170744298321,240,0 +170744298369,238,0 +170744298417,217,0 +170744298465,215,0 +170744298514,215,0 +170744298562,215,0 +170744298610,216,0 +170744298658,217,0 +170744298706,217,0 +170744298754,219,0 +170744298802,219,0 +170744298850,220,0 +170744298899,222,0 +170744298947,225,0 +170744298995,228,0 +170744299043,230,0 +170744299091,232,0 +170744299141,235,0 +170744299190,236,0 +170744299238,235,0 +170744299286,237,0 +170744299334,238,0 +170744299382,240,0 +170744299431,240,0 +170744299479,220,0 +170744299528,218,0 +170744299576,218,0 +170744299624,219,0 +170744299674,220,0 +170744299721,221,0 +170744299771,221,0 +170744299820,222,0 +170744299868,224,0 +170744299918,226,0 +170744299966,226,0 +170744300014,230,0 +170744300063,231,0 +170744300113,234,0 +170744300162,236,0 +170744300210,236,0 +170744300258,238,0 +170744300306,239,0 +170744300354,241,0 +170744300404,240,0 +170744300451,239,0 +170744300499,239,0 +170744300547,220,0 +170744300597,216,0 +170744300645,216,0 +170744300693,217,0 +170744300742,217,0 +170744300792,218,0 +170744300840,218,0 +170744300889,219,0 +170744300937,220,0 +170744300987,220,0 +170744301035,222,0 +170744301082,225,0 +170744301130,229,0 +170744301178,229,0 +170744301226,232,0 +170744301274,232,0 +170744301323,234,0 +170744301371,236,0 +170744301419,236,0 +170744301467,239,0 +170744301515,235,0 +170744301563,241,0 +170744301612,228,0 +170744301660,218,0 +170744301708,217,0 +170744301758,217,0 +170744301807,218,0 +170744301855,220,0 +170744301903,220,0 +170744301951,220,0 +170744302000,220,0 +170744302048,221,0 +170744302096,223,0 +170744302145,226,0 +170744302193,230,0 +170744302241,231,0 +170744302289,232,0 +170744302337,232,0 +170744302385,235,0 +170744302433,234,0 +170744302481,238,0 +170744302528,238,0 +170744302576,239,0 +170744302624,243,0 +170744302674,239,0 +170744302722,220,0 +170744302770,216,0 +170744302819,217,0 +170744302867,218,0 +170744302917,219,0 +170744302966,219,0 +170744303014,220,0 +170744303064,221,0 +170744303112,221,0 +170744303159,223,0 +170744303209,226,0 +170744303257,228,0 +170744303307,230,0 +170744303354,233,0 +170744303404,234,0 +170744303452,236,0 +170744303500,236,0 +170744303549,237,0 +170744303599,238,0 +170744303647,238,0 +170744303696,240,0 +170744303744,238,0 +170744303792,220,0 +170744303840,215,0 +170744303890,216,0 +170744303938,216,0 +170744303987,217,0 +170744304037,218,0 +170744304085,219,0 +170744304133,219,0 +170744304181,219,0 +170744304229,222,0 +170744304278,223,0 +170744304326,225,0 +170744304374,228,0 +170744304422,231,0 +170744304470,233,0 +170744304518,234,0 +170744304566,235,0 +170744304615,236,0 +170744304663,237,0 +170744304713,239,0 +170744304762,238,0 +170744304810,238,0 +170744304858,221,0 +170744304906,216,0 +170744304954,216,0 +170744305002,216,0 +170744305050,218,0 +170744305098,217,0 +170744305146,219,0 +170744305196,219,0 +170744305243,220,0 +170744305291,221,0 +170744305339,224,0 +170744305387,226,0 +170744305435,229,0 +170744305483,230,0 +170744305531,231,0 +170744305579,233,0 +170744305627,235,0 +170744305675,237,0 +170744305723,238,0 +170744305772,239,0 +170744305821,239,0 +170744305869,240,0 +170744305917,238,0 +170744305965,218,0 +170744306013,216,0 +170744306063,216,0 +170744306110,217,0 +170744306160,218,0 +170744306208,218,0 +170744306256,219,0 +170744306304,220,0 +170744306352,221,0 +170744306399,223,0 +170744306449,226,0 +170744306497,227,0 +170744306545,229,0 +170744306593,232,0 +170744306642,233,0 +170744306690,236,0 +170744306738,238,0 +170744306788,238,0 +170744306836,237,0 +170744306885,239,0 +170744306933,239,0 +170744306983,238,0 +170744307031,219,0 +170744307079,216,0 +170744307128,215,0 +170744307176,216,0 +170744307224,216,0 +170744307272,215,0 +170744307320,216,0 +170744307368,217,0 +170744307416,218,0 +170744307465,219,0 +170744307513,221,0 +170744307561,224,0 +170744307609,227,0 +170744307659,229,0 +170744307708,232,0 +170744307758,233,0 +170744307806,234,0 +170744307854,236,0 +170744307902,237,0 +170744307951,237,0 +170744308001,239,0 +170744308049,239,0 +170744308097,220,0 +170744308146,216,0 +170744308194,215,0 +170744308242,216,0 +170744308292,216,0 +170744308341,217,0 +170744308389,218,0 +170744308437,219,0 +170744308485,220,0 +170744308533,220,0 +170744308581,223,0 +170744308630,226,0 +170744308680,228,0 +170744308729,231,0 +170744308779,232,0 +170744308828,234,0 +170744308876,236,0 +170744308924,236,0 +170744308972,237,0 +170744309020,237,0 +170744309070,238,0 +170744309118,239,0 +170744309165,219,0 +170744309213,216,0 +170744309261,215,0 +170744309309,216,0 +170744309359,216,0 +170744309407,216,0 +170744309456,217,0 +170744309504,218,0 +170744309552,219,0 +170744309602,219,0 +170744309650,220,0 +170744309698,222,0 +170744309747,225,0 +170744309795,227,0 +170744309843,229,0 +170744309893,232,0 +170744309941,234,0 +170744309989,235,0 +170744310036,236,0 +170744310084,236,0 +170744310134,239,0 +170744310183,240,0 +170744310231,238,0 +170744310281,218,0 +170744310330,216,0 +170744310378,216,0 +170744310426,215,0 +170744310474,215,0 +170744310524,215,0 +170744310572,215,0 +170744310620,215,0 +170744310668,215,0 +170744310716,215,0 +170744310765,215,0 +170744310815,216,0 +170744310863,217,0 +170744310912,217,0 +170744310962,219,0 +170744311011,223,0 +170744311059,224,0 +170744311107,227,0 +170744311155,229,0 +170744311205,231,0 +170744311253,238,0 +170744311301,239,0 +170744311350,219,0 +170744311398,216,0 +170744311446,216,0 +170744311495,216,0 +170744311543,217,0 +170744311591,217,0 +170744311639,218,0 +170744311689,218,0 +170744311737,219,0 +170744311785,220,0 +170744311833,220,0 +170744311881,223,0 +170744311929,226,0 +170744311976,228,0 +170744312024,231,0 +170744312072,233,0 +170744312122,234,0 +170744312170,235,0 +170744312218,237,0 +170744312266,238,0 +170744312315,237,0 +170744312363,238,0 +170744312411,219,0 +170744312459,216,0 +170744312507,217,0 +170744312555,218,0 +170744312605,218,0 +170744312653,219,0 +170744312702,219,0 +170744312750,220,0 +170744312799,221,0 +170744312847,221,0 +170744312897,224,0 +170744312947,226,0 +170744312996,227,0 +170744313044,230,0 +170744313092,234,0 +170744313140,234,0 +170744313188,236,0 +170744313237,236,0 +170744313285,238,0 +170744313335,241,0 +170744313384,240,0 +170744313432,239,0 +170744313480,239,0 +170744313528,217,0 +170744313578,216,0 +170744313627,215,0 +170744313675,215,0 +170744313723,215,0 +170744313771,217,0 +170744313819,217,0 +170744313867,218,0 +170744313915,219,0 +170744313963,219,0 +170744314011,222,0 +170744314059,224,0 +170744314108,228,0 +170744314158,229,0 +170744314206,230,0 +170744314254,233,0 +170744314303,233,0 +170744314351,237,0 +170744314399,236,0 +170744314449,239,0 +170744314497,238,0 +170744314545,239,0 +170744314593,217,0 +170744314641,216,0 +170744314688,217,0 +170744314736,218,0 +170744314784,219,0 +170744314834,219,0 +170744314883,222,0 +170744314931,221,0 +170744314979,222,0 +170744315029,225,0 +170744315077,227,0 +170744315125,229,0 +170744315172,230,0 +170744315220,234,0 +170744315270,235,0 +170744315318,237,0 +170744315368,238,0 +170744315415,238,0 +170744315463,239,0 +170744315513,241,0 +170744315562,240,0 +170744315610,238,0 +170744315660,219,0 +170744315708,216,0 +170744315756,217,0 +170744315805,218,0 +170744315853,218,0 +170744315901,219,0 +170744315949,220,0 +170744315997,220,0 +170744316045,221,0 +170744316093,224,0 +170744316141,226,0 +170744316190,227,0 +170744316238,231,0 +170744316286,230,0 +170744316336,234,0 +170744316384,236,0 +170744316431,236,0 +170744316481,239,0 +170744316529,238,0 +170744316577,240,0 +170744316625,240,0 +170744316674,239,0 +170744316722,221,0 +170744316770,216,0 +170744316818,216,0 +170744316866,217,0 +170744316913,218,0 +170744316961,218,0 +170744317009,219,0 +170744317057,220,0 +170744317106,220,0 +170744317154,223,0 +170744317202,226,0 +170744317250,227,0 +170744317298,229,0 +170744317346,232,0 +170744317394,234,0 +170744317442,236,0 +170744317489,236,0 +170744317539,237,0 +170744317587,238,0 +170744317635,238,0 +170744317683,238,0 +170744317730,241,0 +170744317778,238,0 +170744317828,219,0 +170744317876,217,0 +170744317924,218,0 +170744317971,218,0 +170744318019,219,0 +170744318067,219,0 +170744318115,220,0 +170744318163,221,0 +170744318212,222,0 +170744318260,224,0 +170744318310,228,0 +170744318358,229,0 +170744318406,232,0 +170744318454,234,0 +170744318503,235,0 +170744318551,237,0 +170744318599,238,0 +170744318647,238,0 +170744318697,239,0 +170744318744,241,0 +170744318792,240,0 +170744318840,238,0 +170744318888,221,0 +170744318936,216,0 +170744318984,216,0 +170744319034,217,0 +170744319082,217,0 +170744319131,218,0 +170744319179,219,0 +170744319229,219,0 +170744319278,220,0 +170744319328,228,0 +170744319377,223,0 +170744319427,225,0 +170744319475,228,0 +170744319523,230,0 +170744319572,232,0 +170744319622,234,0 +170744319671,235,0 +170744319721,237,0 +170744319769,238,0 +170744319817,237,0 +170744319866,238,0 +170744319915,238,0 +170744319963,221,0 +170744320011,216,0 +170744320059,215,0 +170744320109,216,0 +170744320158,217,0 +170744320206,217,0 +170744320256,218,0 +170744320304,219,0 +170744320352,220,0 +170744320400,221,0 +170744320448,222,0 +170744320495,225,0 +170744320543,227,0 +170744320593,229,0 +170744320642,231,0 +170744320690,232,0 +170744320740,234,0 +170744320788,237,0 +170744320837,239,0 +170744320887,242,0 +170744320935,238,0 +170744320983,242,0 +170744321032,238,0 +170744321082,217,0 +170744321130,216,0 +170744321178,216,0 +170744321226,216,0 +170744321274,217,0 +170744321323,217,0 +170744321371,218,0 +170744321419,219,0 +170744321467,219,0 +170744321515,220,0 +170744321563,223,0 +170744321611,224,0 +170744321659,229,0 +170744321707,228,0 +170744321755,230,0 +170744321803,232,0 +170744321852,234,0 +170744321900,238,0 +170744321948,237,0 +170744321996,238,0 +170744322044,238,0 +170744322092,238,0 +170744322140,220,0 +170744322188,218,0 +170744322236,218,0 +170744322285,218,0 +170744322333,219,0 +170744322381,220,0 +170744322429,221,0 +170744322477,223,0 +170744322525,225,0 +170744322573,227,0 +170744322621,228,0 +170744322669,230,0 +170744322718,238,0 +170744322766,233,0 +170744322816,237,0 +170744322864,238,0 +170744322913,237,0 +170744322961,238,0 +170744323009,240,0 +170744323059,241,0 +170744323107,240,0 +170744323155,238,0 +170744323203,220,0 +170744323252,217,0 +170744323302,217,0 +170744323350,218,0 +170744323398,218,0 +170744323447,219,0 +170744323495,219,0 +170744323543,220,0 +170744323591,222,0 +170744323639,226,0 +170744323687,225,0 +170744323736,236,0 +170744323784,230,0 +170744323834,231,0 +170744323882,234,0 +170744323930,234,0 +170744323978,254,0 +170744324027,239,0 +170744324077,239,0 +170744324125,239,0 +170744324173,240,0 +170744324222,240,0 +170744324272,238,0 +170744324320,218,0 +170744324368,217,0 +170744324416,217,0 +170744324464,218,0 +170744324513,219,0 +170744324563,220,0 +170744324611,220,0 +170744324660,222,0 +170744324708,223,0 +170744324756,225,0 +170744324806,228,0 +170744324854,230,0 +170744324903,232,0 +170744324951,235,0 +170744324999,236,0 +170744325047,247,0 +170744325097,239,0 +170744325146,240,0 +170744325194,240,0 +170744325244,240,0 +170744325293,240,0 +170744325343,238,0 +170744325392,224,0 +170744325440,217,0 +170744325490,217,0 +170744325538,218,0 +170744325586,218,0 +170744325635,219,0 +170744325683,219,0 +170744325731,220,0 +170744325779,220,0 +170744325828,222,0 +170744325876,226,0 +170744325924,227,0 +170744325974,229,0 +170744326023,232,0 +170744326073,234,0 +170744326121,235,0 +170744326169,236,0 +170744326217,239,0 +170744326266,240,0 +170744326314,241,0 +170744326362,240,0 +170744326412,240,0 +170744326460,239,0 +170744326508,218,0 +170744326557,216,0 +170744326607,217,0 +170744326655,216,0 +170744326703,217,0 +170744326752,220,0 +170744326800,218,0 +170744326848,219,0 +170744326897,220,0 +170744326947,222,0 +170744326997,224,0 +170744327046,226,0 +170744327094,229,0 +170744327142,232,0 +170744327192,232,0 +170744327240,235,0 +170744327288,235,0 +170744327335,238,0 +170744327385,239,0 +170744327435,239,0 +170744327482,240,0 +170744327530,239,0 +170744327578,222,0 +170744327628,216,0 +170744327678,217,0 +170744327725,217,0 +170744327773,218,0 +170744327821,219,0 +170744327869,219,0 +170744327917,220,0 +170744327965,220,0 +170744328013,222,0 +170744328061,225,0 +170744328108,223,0 +170744328156,225,0 +170744328204,228,0 +170744328252,231,0 +170744328300,233,0 +170744328348,235,0 +170744328397,236,0 +170744328445,235,0 +170744328493,237,0 +170744328541,239,0 +170744328589,243,0 +170744328637,241,0 +170744328685,221,0 +170744328733,216,0 +170744328781,215,0 +170744328830,215,0 +170744328878,215,0 +170744328928,215,0 +170744328976,215,0 +170744329025,216,0 +170744329073,216,0 +170744329121,218,0 +170744329169,218,0 +170744329217,218,0 +170744329266,219,0 +170744329314,221,0 +170744329362,224,0 +170744329410,227,0 +170744329458,229,0 +170744329508,230,0 +170744329557,232,0 +170744329607,233,0 +170744329655,237,0 +170744329703,238,0 +170744329751,239,0 +170744329799,222,0 +170744329846,216,0 +170744329894,217,0 +170744329944,216,0 +170744329994,217,0 +170744330042,217,0 +170744330091,217,0 +170744330139,218,0 +170744330187,218,0 +170744330235,219,0 +170744330283,220,0 +170744330331,356,0 +170744330379,223,0 +170744330427,226,0 +170744330475,228,0 +170744330524,230,0 +170744330574,232,0 +170744330621,234,0 +170744330671,235,0 +170744330721,238,0 +170744330769,238,0 +170744330817,238,0 +170744330864,239,0 +170744330912,220,0 +170744330960,216,0 +170744331010,216,0 +170744331057,216,0 +170744331105,216,0 +170744331153,217,0 +170744331203,218,0 +170744331252,218,0 +170744331302,219,0 +170744331349,219,0 +170744331397,220,0 +170744331445,221,0 +170744331493,222,0 +170744331541,226,0 +170744331589,228,0 +170744331637,230,0 +170744331685,234,0 +170744331733,235,0 +170744331780,239,0 +170744331830,237,0 +170744331878,238,0 +170744331926,236,0 +170744331974,240,0 +170744332021,226,0 +170744332069,216,0 +170744332117,216,0 +170744332165,215,0 +170744332213,216,0 +170744332261,215,0 +170744332310,215,0 +170744332358,216,0 +170744332406,215,0 +170744332454,215,0 +170744332502,215,0 +170744332550,215,0 +170744332597,216,0 +170744332645,215,0 +170744332693,216,0 +170744332741,215,0 +170744332789,215,0 +170744332837,215,0 +170744332885,216,0 +170744332933,216,0 +170744332980,215,0 +170744333028,216,0 +170744333078,236,0 +170744333126,240,0 +170744333174,220,0 +170744333222,217,0 +170744333270,217,0 +170744333317,218,0 +170744333365,218,0 +170744333413,219,0 +170744333463,219,0 +170744333512,220,0 +170744333560,221,0 +170744333608,221,0 +170744333656,222,0 +170744333704,224,0 +170744333752,226,0 +170744333801,229,0 +170744333849,230,0 +170744333898,233,0 +170744333946,234,0 +170744333994,235,0 +170744334042,237,0 +170744334092,237,0 +170744334140,240,0 +170744334188,240,0 +170744334235,238,0 +170744334283,221,0 +170744334333,216,0 +170744334381,216,0 +170744334429,216,0 +170744334478,216,0 +170744334526,216,0 +170744334574,216,0 +170744334622,217,0 +170744334670,217,0 +170744334717,218,0 +170744334765,220,0 +170744334813,219,0 +170744334863,221,0 +170744334911,223,0 +170744334959,225,0 +170744335007,227,0 +170744335056,229,0 +170744335106,231,0 +170744335154,234,0 +170744335203,233,0 +170744335251,235,0 +170744335299,237,0 +170744335347,238,0 +170744335397,221,0 +170744335445,217,0 +170744335494,217,0 +170744335542,218,0 +170744335592,218,0 +170744335641,230,0 +170744335689,220,0 +170744335737,222,0 +170744335785,222,0 +170744335833,224,0 +170744335881,226,0 +170744335931,229,0 +170744335978,230,0 +170744336026,232,0 +170744336074,234,0 +170744336122,236,0 +170744336170,236,0 +170744336220,238,0 +170744336269,238,0 +170744336319,240,0 +170744336367,241,0 +170744336416,240,0 +170744336466,239,0 +170744336514,222,0 +170744336562,217,0 +170744336610,218,0 +170744336658,218,0 +170744336706,219,0 +170744336755,219,0 +170744336805,221,0 +170744336854,221,0 +170744336904,225,0 +170744336953,226,0 +170744337001,228,0 +170744337049,230,0 +170744337097,233,0 +170744337145,235,0 +170744337193,235,0 +170744337241,237,0 +170744337289,237,0 +170744337339,240,0 +170744337387,240,0 +170744337434,238,0 +170744337482,241,0 +170744337532,239,0 +170744337582,238,0 +170744337631,220,0 +170744337681,215,0 +170744337729,215,0 +170744337778,216,0 +170744337826,217,0 +170744337874,217,0 +170744337922,218,0 +170744337970,219,0 +170744338019,221,0 +170744338069,223,0 +170744338117,226,0 +170744338165,228,0 +170744338213,229,0 +170744338261,231,0 +170744338310,233,0 +170744338358,235,0 +170744338406,237,0 +170744338456,238,0 +170744338504,239,0 +170744338551,239,0 +170744338599,238,0 +170744338647,239,0 +170744338695,240,0 +170744338743,221,0 +170744338791,216,0 +170744338839,215,0 +170744338888,216,0 +170744338936,216,0 +170744338984,216,0 +170744339032,218,0 +170744339080,219,0 +170744339128,220,0 +170744339176,221,0 +170744339225,223,0 +170744339273,229,0 +170744339321,228,0 +170744339369,230,0 +170744339417,232,0 +170744339465,234,0 +170744339512,235,0 +170744339560,236,0 +170744339610,237,0 +170744339658,238,0 +170744339706,240,0 +170744339755,239,0 +170744339803,239,0 +170744339851,219,0 +170744339899,216,0 +170744339947,215,0 +170744339995,215,0 +170744340043,215,0 +170744340091,215,0 +170744340139,216,0 +170744340188,216,0 +170744340236,216,0 +170744340286,217,0 +170744340334,218,0 +170744340382,219,0 +170744340430,226,0 +170744340478,223,0 +170744340526,226,0 +170744340574,229,0 +170744340621,230,0 +170744340671,232,0 +170744340719,234,0 +170744340768,234,0 +170744340816,235,0 +170744340864,236,0 +170744340912,240,0 +170744340962,237,0 +170744341010,218,0 +170744341058,215,0 +170744341105,215,0 +170744341155,216,0 +170744341203,216,0 +170744341251,217,0 +170744341298,218,0 +170744341346,219,0 +170744341396,220,0 +170744341445,219,0 +170744341493,223,0 +170744341541,223,0 +170744341589,227,0 +170744341637,229,0 +170744341685,232,0 +170744341733,233,0 +170744341781,235,0 +170744341828,237,0 +170744341876,238,0 +170744341924,238,0 +170744341972,238,0 +170744342020,239,0 +170744342069,238,0 +170744342119,220,0 +170744342167,216,0 +170744342215,215,0 +170744342263,216,0 +170744342311,216,0 +170744342358,215,0 +170744342408,216,0 +170744342456,217,0 +170744342504,218,0 +170744342552,219,0 +170744342600,220,0 +170744342649,220,0 +170744342697,222,0 +170744342745,225,0 +170744342793,227,0 +170744342842,229,0 +170744342892,233,0 +170744342940,232,0 +170744342989,235,0 +170744343037,236,0 +170744343085,238,0 +170744343133,239,0 +170744343181,239,0 +170744343231,220,0 +170744343280,216,0 +170744343328,216,0 +170744343376,216,0 +170744343424,215,0 +170744343472,215,0 +170744343520,216,0 +170744343567,215,0 +170744343615,216,0 +170744343663,216,0 +170744343711,218,0 +170744343759,218,0 +170744343807,220,0 +170744343855,223,0 +170744343902,225,0 +170744343952,227,0 +170744344000,229,0 +170744344048,230,0 +170744344097,232,0 +170744344147,234,0 +170744344194,236,0 +170744344242,238,0 +170744344290,239,0 +170744344338,222,0 +170744344386,216,0 +170744344434,216,0 +170744344482,217,0 +170744344530,217,0 +170744344578,217,0 +170744344626,218,0 +170744344673,219,0 +170744344723,220,0 +170744344771,220,0 +170744344820,220,0 +170744344870,223,0 +170744344918,224,0 +170744344965,227,0 +170744345015,230,0 +170744345063,231,0 +170744345112,234,0 +170744345160,234,0 +170744345208,236,0 +170744345258,236,0 +170744345307,239,0 +170744345355,239,0 +170744345403,240,0 +170744345451,219,0 +170744345499,216,0 +170744345547,216,0 +170744345594,215,0 +170744345642,216,0 +170744345690,216,0 +170744345738,217,0 +170744345786,219,0 +170744345834,218,0 +170744345882,218,0 +170744345930,219,0 +170744345978,221,0 +170744346026,224,0 +170744346074,226,0 +170744346122,230,0 +170744346170,231,0 +170744346218,233,0 +170744346266,233,0 +170744346313,235,0 +170744346361,235,0 +170744346411,236,0 +170744346461,238,0 +170744346510,239,0 +170744346559,219,0 +170744346607,215,0 +170744346657,215,0 +170744346705,215,0 +170744346753,215,0 +170744346801,215,0 +170744346849,215,0 +170744346897,216,0 +170744346945,217,0 +170744346993,218,0 +170744347042,218,0 +170744347090,220,0 +170744347138,222,0 +170744347188,224,0 +170744347235,228,0 +170744347285,228,0 +170744347335,232,0 +170744347382,232,0 +170744347430,233,0 +170744347478,232,0 +170744347526,237,0 +170744347574,233,0 +170744347624,239,0 +170744347673,226,0 +170744347723,216,0 +170744347772,215,0 +170744347820,215,0 +170744347870,215,0 +170744347918,215,0 +170744347967,215,0 +170744348015,215,0 +170744348065,215,0 +170744348113,215,0 +170744348162,216,0 +170744348210,216,0 +170744348260,217,0 +170744348308,218,0 +170744348357,220,0 +170744348407,223,0 +170744348455,226,0 +170744348503,227,0 +170744348552,229,0 +170744348600,232,0 +170744348650,237,0 +170744348699,230,0 +170744348747,239,0 +170744348795,238,0 +170744348843,218,0 +170744348891,216,0 +170744348939,215,0 +170744348987,215,0 +170744349035,216,0 +170744349083,215,0 +170744349131,216,0 +170744349180,216,0 +170744349228,218,0 +170744349276,219,0 +170744349326,221,0 +170744349374,219,0 +170744349422,222,0 +170744349471,225,0 +170744349519,226,0 +170744349569,229,0 +170744349617,232,0 +170744349666,233,0 +170744349716,250,0 +170744349764,235,0 +170744349812,230,0 +170744349860,240,0 +170744349907,238,0 +170744349957,217,0 +170744350005,215,0 +170744350053,215,0 +170744350101,215,0 +170744350149,215,0 +170744350197,215,0 +170744350245,215,0 +170744350293,215,0 +170744350341,216,0 +170744350389,217,0 +170744350438,218,0 +170744350488,219,0 +170744350535,221,0 +170744350585,224,0 +170744350633,227,0 +170744350682,228,0 +170744350730,230,0 +170744350778,241,0 +170744350826,234,0 +170744350876,236,0 +170744350924,237,0 +170744350972,241,0 +170744351021,225,0 +170744351071,217,0 +170744351120,216,0 +170744351168,215,0 +170744351218,215,0 +170744351266,216,0 +170744351314,216,0 +170744351363,217,0 +170744351411,218,0 +170744351459,218,0 +170744351509,219,0 +170744351557,221,0 +170744351605,222,0 +170744351654,223,0 +170744351702,226,0 +170744351750,229,0 +170744351798,231,0 +170744351847,233,0 +170744351895,234,0 +170744351943,234,0 +170744351993,237,0 +170744352042,233,0 +170744352090,238,0 +170744352138,224,0 +170744352186,217,0 +170744352236,216,0 +170744352285,216,0 +170744352333,216,0 +170744352383,216,0 +170744352431,216,0 +170744352480,216,0 +170744352528,217,0 +170744352576,217,0 +170744352624,218,0 +170744352674,218,0 +170744352723,219,0 +170744352773,222,0 +170744352821,225,0 +170744352869,227,0 +170744352917,229,0 +170744352965,232,0 +170744353013,232,0 +170744353062,237,0 +170744353110,236,0 +170744353158,239,0 +170744353206,240,0 +170744353256,219,0 +170744353305,216,0 +170744353353,215,0 +170744353401,215,0 +170744353450,216,0 +170744353498,215,0 +170744353546,215,0 +170744353594,216,0 +170744353642,217,0 +170744353690,217,0 +170744353738,218,0 +170744353786,219,0 +170744353834,220,0 +170744353882,223,0 +170744353930,226,0 +170744353980,228,0 +170744354027,230,0 +170744354075,231,0 +170744354123,234,0 +170744354171,236,0 +170744354221,237,0 +170744354269,238,0 +170744354318,241,0 +170744354366,220,0 +170744354414,216,0 +170744354462,216,0 +170744354510,215,0 +170744354560,215,0 +170744354609,216,0 +170744354657,217,0 +170744354705,217,0 +170744354754,218,0 +170744354802,218,0 +170744354850,219,0 +170744354898,220,0 +170744354946,222,0 +170744354995,224,0 +170744355043,227,0 +170744355091,229,0 +170744355139,232,0 +170744355187,234,0 +170744355237,233,0 +170744355284,235,0 +170744355332,237,0 +170744355382,234,0 +170744355430,240,0 +170744355477,233,0 +170744355525,217,0 +170744355573,215,0 +170744355621,215,0 +170744355669,220,0 +170744355718,217,0 +170744355766,217,0 +170744355814,218,0 +170744355862,219,0 +170744355910,220,0 +170744355958,220,0 +170744356006,222,0 +170744356054,224,0 +170744356103,226,0 +170744356151,229,0 +170744356199,230,0 +170744356249,233,0 +170744356297,236,0 +170744356345,235,0 +170744356393,236,0 +170744356441,237,0 +170744356490,238,0 +170744356538,239,0 +170744356586,239,0 +170744356634,220,0 +170744356682,215,0 +170744356730,215,0 +170744356777,215,0 +170744356825,215,0 +170744356875,215,0 +170744356924,215,0 +170744356974,215,0 +170744357023,215,0 +170744357073,215,0 +170744357122,215,0 +170744357170,215,0 +170744357218,215,0 +170744357266,216,0 +170744357314,217,0 +170744357362,218,0 +170744357410,220,0 +170744357458,221,0 +170744357506,223,0 +170744357554,226,0 +170744357604,228,0 +170744357653,238,0 +170744357703,239,0 +170744357751,221,0 +170744357798,218,0 +170744357848,218,0 +170744357897,219,0 +170744357945,219,0 +170744357993,220,0 +170744358041,221,0 +170744358089,222,0 +170744358137,221,0 +170744358185,224,0 +170744358234,225,0 +170744358282,228,0 +170744358330,230,0 +170744358378,232,0 +170744358426,233,0 +170744358475,234,0 +170744358523,237,0 +170744358572,237,0 +170744358620,237,0 +170744358670,240,0 +170744358718,240,0 +170744358765,240,0 +170744358815,238,0 +170744358863,218,0 +170744358911,216,0 +170744358959,216,0 +170744359008,216,0 +170744359058,218,0 +170744359106,218,0 +170744359155,219,0 +170744359203,219,0 +170744359253,220,0 +170744359302,221,0 +170744359352,224,0 +170744359400,226,0 +170744359447,228,0 +170744359495,231,0 +170744359543,232,0 +170744359591,235,0 +170744359639,235,0 +170744359687,236,0 +170744359737,235,0 +170744359786,237,0 +170744359834,238,0 +170744359882,238,0 +170744359930,238,0 +170744359978,220,0 +170744360026,216,0 +170744360074,216,0 +170744360123,216,0 +170744360173,216,0 +170744360221,216,0 +170744360271,217,0 +170744360320,218,0 +170744360370,219,0 +170744360418,219,0 +170744360465,220,0 +170744360513,220,0 +170744360563,223,0 +170744360612,226,0 +170744360662,228,0 +170744360712,232,0 +170744360760,232,0 +170744360808,233,0 +170744360857,236,0 +170744360905,237,0 +170744360953,238,0 +170744361002,238,0 +170744361050,238,0 +170744361098,219,0 +170744361148,216,0 +170744361197,215,0 +170744361247,216,0 +170744361295,217,0 +170744361343,217,0 +170744361391,218,0 +170744361439,219,0 +170744361486,220,0 +170744361534,220,0 +170744361582,222,0 +170744361632,225,0 +170744361680,229,0 +170744361728,229,0 +170744361776,231,0 +170744361824,232,0 +170744361873,234,0 +170744361923,236,0 +170744361971,235,0 +170744362019,236,0 +170744362067,240,0 +170744362116,239,0 +170744362166,238,0 +170744362215,218,0 +170744362263,215,0 +170744362313,215,0 +170744362361,215,0 +170744362408,215,0 +170744362456,215,0 +170744362504,215,0 +170744362552,216,0 +170744362600,216,0 +170744362648,217,0 +170744362696,219,0 +170744362743,220,0 +170744362791,223,0 +170744362839,225,0 +170744362887,227,0 +170744362937,229,0 +170744362986,232,0 +170744363034,233,0 +170744363084,234,0 +170744363133,236,0 +170744363181,236,0 +170744363229,238,0 +170744363279,239,0 +170744363328,220,0 +170744363378,216,0 +170744363427,215,0 +170744363475,215,0 +170744363523,215,0 +170744363571,215,0 +170744363619,216,0 +170744363667,217,0 +170744363715,218,0 +170744363763,218,0 +170744363811,219,0 +170744363860,219,0 +170744363908,223,0 +170744363956,225,0 +170744364006,227,0 +170744364055,230,0 +170744364103,231,0 +170744364151,232,0 +170744364199,234,0 +170744364247,237,0 +170744364295,237,0 +170744364343,238,0 +170744364391,239,0 +170744364439,219,0 +170744364487,217,0 +170744364535,216,0 +170744364583,215,0 +170744364632,215,0 +170744364680,216,0 +170744364730,216,0 +170744364779,215,0 +170744364827,216,0 +170744364875,217,0 +170744364923,218,0 +170744364971,218,0 +170744365019,218,0 +170744365068,221,0 +170744365118,224,0 +170744365167,227,0 +170744365217,228,0 +170744365266,230,0 +170744365316,232,0 +170744365365,238,0 +170744365415,235,0 +170744365464,237,0 +170744365512,238,0 +170744365560,221,0 +170744365608,216,0 +170744365658,215,0 +170744365706,215,0 +170744365754,215,0 +170744365803,216,0 +170744365851,215,0 +170744365901,215,0 +170744365950,215,0 +170744365998,215,0 +170744366048,216,0 +170744366097,216,0 +170744366145,216,0 +170744366193,253,0 +170744366241,219,0 +170744366289,221,0 +170744366337,223,0 +170744366385,226,0 +170744366433,227,0 +170744366481,231,0 +170744366529,231,0 +170744366577,238,0 +170744366625,239,0 +170744366674,220,0 +170744366724,216,0 +170744366772,215,0 +170744366819,216,0 +170744366869,217,0 +170744366917,217,0 +170744366965,217,0 +170744367013,218,0 +170744367060,218,0 +170744367110,219,0 +170744367159,220,0 +170744367207,221,0 +170744367255,221,0 +170744367305,222,0 +170744367353,224,0 +170744367401,227,0 +170744367449,229,0 +170744367497,230,0 +170744367545,233,0 +170744367593,234,0 +170744367642,236,0 +170744367692,237,0 +170744367740,239,0 +170744367787,219,0 +170744367837,216,0 +170744367885,216,0 +170744367935,215,0 +170744367982,215,0 +170744368032,215,0 +170744368082,215,0 +170744368130,216,0 +170744368179,217,0 +170744368227,217,0 +170744368275,218,0 +170744368325,219,0 +170744368373,220,0 +170744368422,223,0 +170744368470,225,0 +170744368520,228,0 +170744368568,230,0 +170744368615,233,0 +170744368665,240,0 +170744368713,234,0 +170744368763,239,0 +170744368812,239,0 +170744368862,239,0 +170744368911,221,0 +170744368959,216,0 +170744369007,215,0 +170744369055,215,0 +170744369103,215,0 +170744369152,215,0 +170744369202,216,0 +170744369250,216,0 +170744369299,215,0 +170744369347,216,0 +170744369395,217,0 +170744369443,218,0 +170744369493,218,0 +170744369541,219,0 +170744369589,223,0 +170744369637,225,0 +170744369685,227,0 +170744369734,230,0 +170744369784,231,0 +170744369832,233,0 +170744369881,234,0 +170744369931,236,0 +170744369979,238,0 +170744370028,220,0 +170744370076,215,0 +170744370126,215,0 +170744370175,215,0 +170744370223,215,0 +170744370271,215,0 +170744370321,215,0 +170744370370,216,0 +170744370420,215,0 +170744370469,215,0 +170744370517,215,0 +170744370565,215,0 +170744370613,215,0 +170744370662,216,0 +170744370710,217,0 +170744370758,218,0 +170744370806,219,0 +170744370854,222,0 +170744370902,223,0 +170744370951,224,0 +170744371001,228,0 +170744371050,237,0 +170744371098,239,0 +170744371146,221,0 +170744371194,216,0 +170744371243,216,0 +170744371293,217,0 +170744371342,217,0 +170744371390,217,0 +170744371440,218,0 +170744371489,219,0 +170744371537,219,0 +170744371585,220,0 +170744371633,220,0 +170744371681,229,0 +170744371729,223,0 +170744371777,226,0 +170744371825,228,0 +170744371873,230,0 +170744371921,231,0 +170744371969,234,0 +170744372017,235,0 +170744372065,235,0 +170744372113,237,0 +170744372161,235,0 +170744372210,241,0 +170744372258,229,0 +170744372306,217,0 +170744372354,216,0 +170744372402,215,0 +170744372450,216,0 +170744372498,216,0 +170744372546,217,0 +170744372593,217,0 +170744372641,218,0 +170744372689,219,0 +170744372737,220,0 +170744372785,221,0 +170744372833,221,0 +170744372881,223,0 +170744372929,226,0 +170744372977,228,0 +170744373025,231,0 +170744373073,232,0 +170744373121,234,0 +170744373169,235,0 +170744373217,237,0 +170744373265,232,0 +170744373313,239,0 +170744373362,237,0 +170744373412,218,0 +170744373461,216,0 +170744373509,216,0 +170744373557,216,0 +170744373607,216,0 +170744373655,216,0 +170744373702,216,0 +170744373752,216,0 +170744373801,216,0 +170744373851,216,0 +170744373898,216,0 +170744373946,216,0 +170744373994,217,0 +170744374044,218,0 +170744374092,219,0 +170744374141,221,0 +170744374189,224,0 +170744374237,226,0 +170744374285,228,0 +170744374332,230,0 +170744374382,234,0 +170744374431,240,0 +170744374481,224,0 +170744374529,216,0 +170744374577,217,0 +170744374624,217,0 +170744374672,218,0 +170744374720,218,0 +170744374768,219,0 +170744374816,220,0 +170744374865,220,0 +170744374913,222,0 +170744374963,223,0 +170744375012,223,0 +170744375060,223,0 +170744375108,226,0 +170744375157,229,0 +170744375205,230,0 +170744375255,232,0 +170744375304,233,0 +170744375354,235,0 +170744375402,235,0 +170744375450,236,0 +170744375499,236,0 +170744375547,239,0 +170744375595,236,0 +170744375643,217,0 +170744375692,215,0 +170744375740,215,0 +170744375788,215,0 +170744375838,215,0 +170744375886,215,0 +170744375934,215,0 +170744375982,216,0 +170744376030,216,0 +170744376078,217,0 +170744376127,218,0 +170744376175,218,0 +170744376223,221,0 +170744376271,223,0 +170744376319,226,0 +170744376367,228,0 +170744376414,231,0 +170744376462,234,0 +170744376510,234,0 +170744376560,235,0 +170744376608,236,0 +170744376655,239,0 +170744376703,239,0 +170744376751,219,0 +170744376799,215,0 +170744376849,215,0 +170744376897,215,0 +170744376946,216,0 +170744376996,217,0 +170744377044,218,0 +170744377093,218,0 +170744377143,221,0 +170744377192,220,0 +170744377242,221,0 +170744377290,223,0 +170744377338,226,0 +170744377386,229,0 +170744377433,229,0 +170744377481,232,0 +170744377529,233,0 +170744377579,235,0 +170744377627,236,0 +170744377674,235,0 +170744377722,235,0 +170744377772,239,0 +170744377820,236,0 +170744377868,217,0 +170744377917,215,0 +170744377965,215,0 +170744378013,215,0 +170744378061,216,0 +170744378109,216,0 +170744378158,217,0 +170744378206,217,0 +170744378254,218,0 +170744378302,219,0 +170744378351,219,0 +170744378401,221,0 +170744378448,224,0 +170744378496,226,0 +170744378544,228,0 +170744378592,230,0 +170744378640,232,0 +170744378688,234,0 +170744378736,235,0 +170744378785,236,0 +170744378835,237,0 +170744378883,237,0 +170744378932,238,0 +170744378980,220,0 +170744379029,216,0 +170744379077,216,0 +170744379125,215,0 +170744379173,216,0 +170744379223,215,0 +170744379272,216,0 +170744379322,216,0 +170744379370,216,0 +170744379418,216,0 +170744379466,217,0 +170744379514,218,0 +170744379562,219,0 +170744379609,222,0 +170744379657,224,0 +170744379705,226,0 +170744379755,230,0 +170744379804,232,0 +170744379852,232,0 +170744379902,233,0 +170744379951,235,0 +170744379999,240,0 +170744380049,238,0 +170744380097,221,0 +170744380145,216,0 +170744380193,216,0 +170744380241,216,0 +170744380290,217,0 +170744380338,218,0 +170744380386,218,0 +170744380436,219,0 +170744380484,219,0 +170744380533,220,0 +170744380581,222,0 +170744380629,223,0 +170744380678,224,0 +170744380728,227,0 +170744380776,229,0 +170744380826,233,0 +170744380873,234,0 +170744380921,234,0 +170744380969,238,0 +170744381017,237,0 +170744381067,241,0 +170744381115,238,0 +170744381163,238,0 +170744381211,221,0 +170744381259,216,0 +170744381307,215,0 +170744381356,216,0 +170744381404,215,0 +170744381453,216,0 +170744381503,216,0 +170744381553,217,0 +170744381601,217,0 +170744381650,217,0 +170744381700,218,0 +170744381748,219,0 +170744381795,220,0 +170744381843,223,0 +170744381893,226,0 +170744381943,229,0 +170744381990,230,0 +170744382038,232,0 +170744382086,234,0 +170744382136,236,0 +170744382185,236,0 +170744382233,238,0 +170744382283,238,0 +170744382332,219,0 +170744382382,217,0 +170744382430,218,0 +170744382478,218,0 +170744382527,219,0 +170744382577,219,0 +170744382625,220,0 +170744382673,220,0 +170744382721,221,0 +170744382770,222,0 +170744382820,223,0 +170744382869,226,0 +170744382917,229,0 +170744382967,231,0 +170744383015,233,0 +170744383064,234,0 +170744383112,235,0 +170744383160,238,0 +170744383208,238,0 +170744383256,238,0 +170744383304,239,0 +170744383352,240,0 +170744383401,239,0 +170744383451,220,0 +170744383500,216,0 +170744383550,216,0 +170744383599,215,0 +170744383649,215,0 +170744383697,215,0 +170744383745,215,0 +170744383793,216,0 +170744383842,217,0 +170744383890,217,0 +170744383938,218,0 +170744383986,218,0 +170744384034,220,0 +170744384083,222,0 +170744384133,224,0 +170744384182,227,0 +170744384230,229,0 +170744384280,231,0 +170744384328,231,0 +170744384376,236,0 +170744384425,245,0 +170744384473,238,0 +170744384521,238,0 +170744384569,220,0 +170744384617,217,0 +170744384665,218,0 +170744384714,218,0 +170744384762,219,0 +170744384810,220,0 +170744384858,220,0 +170744384908,220,0 +170744384956,223,0 +170744385004,224,0 +170744385052,226,0 +170744385100,228,0 +170744385148,230,0 +170744385196,233,0 +170744385245,234,0 +170744385295,234,0 +170744385343,236,0 +170744385390,241,0 +170744385438,236,0 +170744385486,240,0 +170744385536,240,0 +170744385584,239,0 +170744385633,237,0 +170744385681,219,0 +170744385729,215,0 +170744385777,216,0 +170744385827,215,0 +170744385876,215,0 +170744385926,215,0 +170744385974,216,0 +170744386023,216,0 +170744386071,217,0 +170744386119,218,0 +170744386167,218,0 +170744386215,219,0 +170744386263,220,0 +170744386313,222,0 +170744386361,225,0 +170744386409,227,0 +170744386457,229,0 +170744386506,233,0 +170744386554,231,0 +170744386602,233,0 +170744386650,235,0 +170744386698,238,0 +170744386746,238,0 +170744386795,221,0 +170744386843,216,0 +170744386891,215,0 +170744386939,215,0 +170744386989,215,0 +170744387038,215,0 +170744387088,216,0 +170744387136,217,0 +170744387185,217,0 +170744387233,218,0 +170744387283,220,0 +170744387332,222,0 +170744387380,222,0 +170744387428,224,0 +170744387478,225,0 +170744387527,229,0 +170744387575,230,0 +170744387623,232,0 +170744387672,234,0 +170744387722,238,0 +170744387772,237,0 +170744387821,239,0 +170744387869,240,0 +170744387918,222,0 +170744387966,216,0 +170744388016,216,0 +170744388065,216,0 +170744388115,216,0 +170744388163,216,0 +170744388211,216,0 +170744388260,216,0 +170744388308,217,0 +170744388356,217,0 +170744388404,218,0 +170744388452,219,0 +170744388500,220,0 +170744388550,223,0 +170744388599,225,0 +170744388649,228,0 +170744388697,230,0 +170744388745,232,0 +170744388792,233,0 +170744388840,235,0 +170744388890,237,0 +170744388938,239,0 +170744388987,240,0 +170744389037,219,0 +170744389086,215,0 +170744389136,215,0 +170744389184,215,0 +170744389233,215,0 +170744389283,216,0 +170744389331,217,0 +170744389379,218,0 +170744389427,219,0 +170744389475,219,0 +170744389523,220,0 +170744389571,221,0 +170744389620,223,0 +170744389668,224,0 +170744389716,228,0 +170744389766,234,0 +170744389815,230,0 +170744389863,233,0 +170744389912,234,0 +170744389960,237,0 +170744390008,238,0 +170744390056,240,0 +170744390104,239,0 +170744390152,221,0 +170744390200,215,0 +170744390248,215,0 +170744390296,215,0 +170744390346,215,0 +170744390395,215,0 +170744390443,215,0 +170744390491,216,0 +170744390539,216,0 +170744390587,217,0 +170744390635,217,0 +170744390683,218,0 +170744390731,219,0 +170744390779,221,0 +170744390828,223,0 +170744390876,227,0 +170744390924,230,0 +170744390972,230,0 +170744391022,232,0 +170744391070,233,0 +170744391118,234,0 +170744391167,239,0 +170744391217,240,0 +170744391266,221,0 +170744391316,216,0 +170744391364,215,0 +170744391412,215,0 +170744391460,215,0 +170744391508,215,0 +170744391556,215,0 +170744391603,215,0 +170744391651,215,0 +170744391699,215,0 +170744391747,215,0 +170744391795,215,0 +170744391843,215,0 +170744391891,215,0 +170744391939,215,0 +170744391989,216,0 +170744392037,215,0 +170744392085,215,0 +170744392133,215,0 +170744392182,215,0 +170744392232,215,0 +170744392281,216,0 +170744392329,216,0 +170744392379,218,0 +170744392428,218,0 +170744392476,220,0 +170744392524,222,0 +170744392572,224,0 +170744392622,227,0 +170744392670,229,0 +170744392718,230,0 +170744392765,232,0 +170744392813,238,0 +170744392861,238,0 +170744392909,222,0 +170744392957,217,0 +170744393007,216,0 +170744393055,216,0 +170744393103,216,0 +170744393151,215,0 +170744393199,215,0 +170744393248,215,0 +170744393296,215,0 +170744393346,216,0 +170744393393,216,0 +170744393443,217,0 +170744393491,219,0 +170744393540,222,0 +170744393590,225,0 +170744393639,227,0 +170744393687,229,0 +170744393737,231,0 +170744393786,232,0 +170744393834,233,0 +170744393882,236,0 +170744393932,238,0 +170744393980,240,0 +170744394028,221,0 +170744394076,217,0 +170744394124,216,0 +170744394172,217,0 +170744394221,216,0 +170744394269,218,0 +170744394319,218,0 +170744394366,219,0 +170744394414,219,0 +170744394462,220,0 +170744394510,221,0 +170744394558,221,0 +170744394606,222,0 +170744394655,225,0 +170744394703,225,0 +170744394753,227,0 +170744394800,229,0 +170744394848,232,0 +170744394896,233,0 +170744394946,229,0 +170744394995,236,0 +170744395043,240,0 +170744395091,237,0 +170744395141,238,0 +170744395190,219,0 +170744395238,216,0 +170744395288,216,0 +170744395336,216,0 +170744395385,216,0 +170744395433,216,0 +170744395481,216,0 +170744395529,216,0 +170744395577,216,0 +170744395625,217,0 +170744395673,218,0 +170744395723,218,0 +170744395772,219,0 +170744395822,220,0 +170744395870,222,0 +170744395918,224,0 +170744395965,227,0 +170744396015,229,0 +170744396063,232,0 +170744396113,233,0 +170744396162,233,0 +170744396210,239,0 +170744396258,239,0 +170744396306,218,0 +170744396354,215,0 +170744396403,215,0 +170744396453,215,0 +170744396501,215,0 +170744396549,215,0 +170744396598,215,0 +170744396648,215,0 +170744396697,216,0 +170744396745,216,0 +170744396793,216,0 +170744396841,216,0 +170744396889,216,0 +170744396937,217,0 +170744396987,218,0 +170744397035,219,0 +170744397083,221,0 +170744397131,223,0 +170744397179,225,0 +170744397226,227,0 +170744397274,229,0 +170744397322,238,0 +170744397372,234,0 +170744397421,219,0 +170744397469,218,0 +170744397517,219,0 +170744397565,219,0 +170744397613,220,0 +170744397663,220,0 +170744397712,222,0 +170744397760,224,0 +170744397808,225,0 +170744397856,227,0 +170744397904,230,0 +170744397952,231,0 +170744398000,234,0 +170744398048,235,0 +170744398096,236,0 +170744398144,235,0 +170744398193,236,0 +170744398243,238,0 +170744398291,239,0 +170744398339,239,0 +170744398387,239,0 +170744398435,240,0 +170744398483,237,0 +170744398531,219,0 +170744398581,215,0 +170744398630,215,0 +170744398680,218,0 +170744398728,217,0 +170744398776,217,0 +170744398824,218,0 +170744398872,218,0 +170744398920,219,0 +170744398969,220,0 +170744399017,222,0 +170744399065,224,0 +170744399113,228,0 +170744399162,231,0 +170744399212,233,0 +170744399260,236,0 +170744399308,234,0 +170744399357,236,0 +170744399407,240,0 +170744399455,237,0 +170744399503,239,0 +170744399551,238,0 +170744399600,239,0 +170744399648,219,0 +170744399696,216,0 +170744399746,215,0 +170744399794,215,0 +170744399842,215,0 +170744399890,216,0 +170744399938,217,0 +170744399985,218,0 diff --git a/laser_value/0209-12.csv b/laser_value/0209-12.csv new file mode 100644 index 0000000..5abd0db --- /dev/null +++ b/laser_value/0209-12.csv @@ -0,0 +1,7420 @@ +timestamp,laser_value,event +170744400034,218,0 +170744400082,218,0 +170744400130,222,0 +170744400178,224,0 +170744400226,226,0 +170744400274,229,0 +170744400322,230,0 +170744400371,233,0 +170744400419,234,0 +170744400469,235,0 +170744400517,236,0 +170744400565,238,0 +170744400612,236,0 +170744400662,238,0 +170744400711,238,0 +170744400761,219,0 +170744400809,216,0 +170744400857,215,0 +170744400906,215,0 +170744400954,215,0 +170744401002,216,0 +170744401050,217,0 +170744401100,217,0 +170744401149,218,0 +170744401199,218,0 +170744401248,220,0 +170744401298,222,0 +170744401347,225,0 +170744401397,227,0 +170744401446,229,0 +170744401494,230,0 +170744401544,233,0 +170744401592,233,0 +170744401640,236,0 +170744401688,236,0 +170744401736,235,0 +170744401783,238,0 +170744401833,239,0 +170744401881,218,0 +170744401929,216,0 +170744401977,216,0 +170744402025,216,0 +170744402073,216,0 +170744402121,217,0 +170744402169,217,0 +170744402218,219,0 +170744402266,219,0 +170744402314,220,0 +170744402362,222,0 +170744402410,225,0 +170744402459,228,0 +170744402507,229,0 +170744402557,232,0 +170744402606,235,0 +170744402656,235,0 +170744402704,238,0 +170744402753,238,0 +170744402801,238,0 +170744402849,238,0 +170744402897,238,0 +170744402945,239,0 +170744402994,220,0 +170744403044,215,0 +170744403091,216,0 +170744403141,215,0 +170744403190,215,0 +170744403240,215,0 +170744403288,216,0 +170744403337,217,0 +170744403387,217,0 +170744403435,218,0 +170744403485,219,0 +170744403532,219,0 +170744403580,223,0 +170744403628,224,0 +170744403676,226,0 +170744403724,230,0 +170744403772,231,0 +170744403820,233,0 +170744403868,233,0 +170744403916,237,0 +170744403964,236,0 +170744404012,238,0 +170744404060,238,0 +170744404108,220,0 +170744404156,216,0 +170744404205,216,0 +170744404253,216,0 +170744404301,216,0 +170744404349,215,0 +170744404397,216,0 +170744404447,216,0 +170744404495,216,0 +170744404543,221,0 +170744404590,218,0 +170744404638,219,0 +170744404686,220,0 +170744404734,223,0 +170744404782,226,0 +170744404830,228,0 +170744404878,230,0 +170744404928,233,0 +170744404976,235,0 +170744405025,235,0 +170744405075,237,0 +170744405123,239,0 +170744405172,239,0 +170744405220,221,0 +170744405268,216,0 +170744405316,215,0 +170744405364,216,0 +170744405412,215,0 +170744405460,216,0 +170744405508,216,0 +170744405556,217,0 +170744405604,218,0 +170744405653,219,0 +170744405703,220,0 +170744405751,222,0 +170744405800,224,0 +170744405848,226,0 +170744405896,229,0 +170744405944,231,0 +170744405993,233,0 +170744406043,234,0 +170744406091,234,0 +170744406140,238,0 +170744406188,236,0 +170744406236,239,0 +170744406286,239,0 +170744406334,222,0 +170744406382,216,0 +170744406431,216,0 +170744406481,216,0 +170744406531,216,0 +170744406580,216,0 +170744406628,216,0 +170744406676,216,0 +170744406724,218,0 +170744406773,218,0 +170744406823,220,0 +170744406871,222,0 +170744406920,221,0 +170744406968,225,0 +170744407016,226,0 +170744407064,229,0 +170744407112,230,0 +170744407161,231,0 +170744407209,233,0 +170744407257,235,0 +170744407305,236,0 +170744407353,238,0 +170744407402,240,0 +170744407452,222,0 +170744407500,217,0 +170744407548,217,0 +170744407597,217,0 +170744407645,217,0 +170744407694,217,0 +170744407742,217,0 +170744407790,217,0 +170744407838,215,0 +170744407886,216,0 +170744407934,217,0 +170744407982,218,0 +170744408030,218,0 +170744408077,220,0 +170744408127,224,0 +170744408175,226,0 +170744408223,228,0 +170744408271,229,0 +170744408320,231,0 +170744408370,234,0 +170744408420,234,0 +170744408467,238,0 +170744408515,237,0 +170744408563,220,0 +170744408613,216,0 +170744408661,216,0 +170744408710,215,0 +170744408758,215,0 +170744408806,215,0 +170744408856,216,0 +170744408905,216,0 +170744408955,215,0 +170744409003,216,0 +170744409051,217,0 +170744409099,217,0 +170744409147,218,0 +170744409195,220,0 +170744409243,223,0 +170744409292,226,0 +170744409340,228,0 +170744409389,229,0 +170744409437,232,0 +170744409485,232,0 +170744409533,233,0 +170744409583,239,0 +170744409632,240,0 +170744409682,221,0 +170744409731,216,0 +170744409779,216,0 +170744409827,215,0 +170744409877,216,0 +170744409925,216,0 +170744409974,217,0 +170744410022,218,0 +170744410070,219,0 +170744410120,218,0 +170744410168,219,0 +170744410216,220,0 +170744410264,222,0 +170744410313,225,0 +170744410363,228,0 +170744410411,229,0 +170744410459,231,0 +170744410507,233,0 +170744410555,234,0 +170744410603,236,0 +170744410652,236,0 +170744410702,238,0 +170744410750,240,0 +170744410798,219,0 +170744410846,217,0 +170744410895,215,0 +170744410943,215,0 +170744410993,216,0 +170744411042,216,0 +170744411090,216,0 +170744411140,216,0 +170744411187,216,0 +170744411237,217,0 +170744411285,217,0 +170744411334,218,0 +170744411382,219,0 +170744411432,222,0 +170744411480,224,0 +170744411528,227,0 +170744411576,229,0 +170744411623,230,0 +170744411673,232,0 +170744411721,234,0 +170744411771,235,0 +170744411818,237,0 +170744411866,240,0 +170744411914,219,0 +170744411964,216,0 +170744412012,216,0 +170744412060,215,0 +170744412109,215,0 +170744412157,216,0 +170744412205,215,0 +170744412253,216,0 +170744412301,216,0 +170744412351,216,0 +170744412399,217,0 +170744412447,218,0 +170744412496,218,0 +170744412544,221,0 +170744412592,225,0 +170744412640,226,0 +170744412689,228,0 +170744412737,230,0 +170744412785,232,0 +170744412833,235,0 +170744412881,235,0 +170744412931,238,0 +170744412980,238,0 +170744413028,220,0 +170744413078,216,0 +170744413127,216,0 +170744413175,216,0 +170744413223,216,0 +170744413271,216,0 +170744413321,215,0 +170744413369,218,0 +170744413417,217,0 +170744413464,218,0 +170744413512,218,0 +170744413560,219,0 +170744413610,220,0 +170744413658,222,0 +170744413707,224,0 +170744413757,227,0 +170744413805,229,0 +170744413854,230,0 +170744413902,232,0 +170744413952,236,0 +170744414000,236,0 +170744414048,232,0 +170744414097,239,0 +170744414145,235,0 +170744414193,217,0 +170744414241,215,0 +170744414289,215,0 +170744414337,215,0 +170744414387,215,0 +170744414435,215,0 +170744414483,215,0 +170744414531,215,0 +170744414580,216,0 +170744414628,216,0 +170744414676,217,0 +170744414724,218,0 +170744414774,219,0 +170744414823,221,0 +170744414871,224,0 +170744414919,226,0 +170744414967,228,0 +170744415016,229,0 +170744415066,232,0 +170744415116,237,0 +170744415163,233,0 +170744415213,239,0 +170744415262,236,0 +170744415310,217,0 +170744415358,216,0 +170744415408,216,0 +170744415457,215,0 +170744415507,215,0 +170744415556,216,0 +170744415604,217,0 +170744415652,217,0 +170744415700,218,0 +170744415748,218,0 +170744415796,220,0 +170744415844,221,0 +170744415894,222,0 +170744415942,226,0 +170744415991,228,0 +170744416041,231,0 +170744416090,232,0 +170744416138,232,0 +170744416188,236,0 +170744416236,237,0 +170744416284,239,0 +170744416332,240,0 +170744416380,222,0 +170744416428,217,0 +170744416477,216,0 +170744416525,216,0 +170744416573,216,0 +170744416621,216,0 +170744416670,216,0 +170744416718,217,0 +170744416766,217,0 +170744416814,218,0 +170744416864,219,0 +170744416912,219,0 +170744416961,220,0 +170744417009,223,0 +170744417057,226,0 +170744417105,228,0 +170744417155,230,0 +170744417203,232,0 +170744417252,233,0 +170744417302,235,0 +170744417350,236,0 +170744417399,235,0 +170744417449,239,0 +170744417497,225,0 +170744417545,217,0 +170744417593,216,0 +170744417641,216,0 +170744417688,215,0 +170744417738,217,0 +170744417786,217,0 +170744417834,217,0 +170744417882,218,0 +170744417930,219,0 +170744417978,219,0 +170744418026,221,0 +170744418074,221,0 +170744418122,224,0 +170744418170,228,0 +170744418217,229,0 +170744418265,231,0 +170744418313,232,0 +170744418363,233,0 +170744418411,235,0 +170744418459,236,0 +170744418507,235,0 +170744418556,239,0 +170744418604,238,0 +170744418654,220,0 +170744418703,216,0 +170744418751,215,0 +170744418799,216,0 +170744418847,215,0 +170744418896,216,0 +170744418944,217,0 +170744418994,217,0 +170744419043,218,0 +170744419091,219,0 +170744419141,220,0 +170744419191,222,0 +170744419238,225,0 +170744419288,227,0 +170744419336,231,0 +170744419384,232,0 +170744419432,233,0 +170744419481,236,0 +170744419529,237,0 +170744419577,237,0 +170744419625,238,0 +170744419673,239,0 +170744419723,237,0 +170744419771,219,0 +170744419819,215,0 +170744419868,215,0 +170744419916,216,0 +170744419966,216,0 +170744420014,217,0 +170744420061,218,0 +170744420109,218,0 +170744420157,219,0 +170744420205,220,0 +170744420253,221,0 +170744420301,222,0 +170744420350,224,0 +170744420400,228,0 +170744420448,229,0 +170744420497,233,0 +170744420545,235,0 +170744420593,235,0 +170744420643,236,0 +170744420691,237,0 +170744420739,238,0 +170744420788,239,0 +170744420836,241,0 +170744420886,220,0 +170744420934,216,0 +170744420982,216,0 +170744421031,216,0 +170744421079,216,0 +170744421129,216,0 +170744421177,217,0 +170744421226,218,0 +170744421275,218,0 +170744421323,219,0 +170744421371,219,0 +170744421419,222,0 +170744421467,224,0 +170744421515,225,0 +170744421563,228,0 +170744421611,230,0 +170744421661,233,0 +170744421710,233,0 +170744421760,235,0 +170744421808,237,0 +170744421856,238,0 +170744421905,239,0 +170744421955,239,0 +170744422004,221,0 +170744422054,217,0 +170744422102,218,0 +170744422150,218,0 +170744422198,219,0 +170744422247,220,0 +170744422297,220,0 +170744422345,221,0 +170744422392,221,0 +170744422440,222,0 +170744422490,223,0 +170744422538,225,0 +170744422586,226,0 +170744422634,229,0 +170744422683,230,0 +170744422731,233,0 +170744422779,233,0 +170744422829,235,0 +170744422878,246,0 +170744422928,237,0 +170744422976,241,0 +170744423024,239,0 +170744423072,241,0 +170744423119,221,0 +170744423169,216,0 +170744423219,216,0 +170744423267,216,0 +170744423314,215,0 +170744423364,216,0 +170744423412,216,0 +170744423460,217,0 +170744423509,218,0 +170744423557,218,0 +170744423607,218,0 +170744423655,219,0 +170744423703,221,0 +170744423750,223,0 +170744423798,226,0 +170744423846,229,0 +170744423896,230,0 +170744423944,232,0 +170744423993,233,0 +170744424043,233,0 +170744424093,234,0 +170744424142,238,0 +170744424190,240,0 +170744424239,220,0 +170744424287,216,0 +170744424335,216,0 +170744424383,216,0 +170744424431,217,0 +170744424479,217,0 +170744424529,218,0 +170744424576,219,0 +170744424626,219,0 +170744424674,220,0 +170744424722,221,0 +170744424770,221,0 +170744424818,223,0 +170744424866,226,0 +170744424914,228,0 +170744424962,229,0 +170744425011,232,0 +170744425061,234,0 +170744425109,235,0 +170744425158,237,0 +170744425208,237,0 +170744425255,240,0 +170744425303,239,0 +170744425353,221,0 +170744425401,216,0 +170744425450,215,0 +170744425498,216,0 +170744425546,215,0 +170744425594,215,0 +170744425642,215,0 +170744425691,216,0 +170744425741,217,0 +170744425789,217,0 +170744425837,218,0 +170744425886,219,0 +170744425936,223,0 +170744425986,224,0 +170744426033,225,0 +170744426081,228,0 +170744426131,230,0 +170744426181,233,0 +170744426230,233,0 +170744426278,235,0 +170744426327,236,0 +170744426375,238,0 +170744426423,239,0 +170744426473,221,0 +170744426520,216,0 +170744426570,216,0 +170744426618,215,0 +170744426666,215,0 +170744426714,215,0 +170744426763,215,0 +170744426811,215,0 +170744426859,215,0 +170744426908,215,0 +170744426958,215,0 +170744427008,215,0 +170744427055,215,0 +170744427103,215,0 +170744427151,216,0 +170744427199,217,0 +170744427247,219,0 +170744427295,221,0 +170744427343,224,0 +170744427393,225,0 +170744427441,226,0 +170744427490,236,0 +170744427538,238,0 +170744427588,221,0 +170744427636,217,0 +170744427684,217,0 +170744427733,218,0 +170744427781,218,0 +170744427831,218,0 +170744427879,219,0 +170744427928,220,0 +170744427978,220,0 +170744428027,223,0 +170744428077,222,0 +170744428125,222,0 +170744428173,224,0 +170744428221,226,0 +170744428269,229,0 +170744428318,231,0 +170744428368,231,0 +170744428416,234,0 +170744428465,237,0 +170744428513,236,0 +170744428561,237,0 +170744428610,238,0 +170744428660,239,0 +170744428708,221,0 +170744428756,216,0 +170744428805,216,0 +170744428855,216,0 +170744428904,215,0 +170744428952,215,0 +170744429000,216,0 +170744429048,216,0 +170744429098,216,0 +170744429147,215,0 +170744429197,216,0 +170744429246,216,0 +170744429294,216,0 +170744429342,216,0 +170744429390,217,0 +170744429438,218,0 +170744429488,220,0 +170744429536,222,0 +170744429584,225,0 +170744429633,226,0 +170744429683,229,0 +170744429731,237,0 +170744429778,238,0 +170744429826,221,0 +170744429876,217,0 +170744429924,216,0 +170744429973,216,0 +170744430023,216,0 +170744430071,216,0 +170744430120,217,0 +170744430170,218,0 +170744430218,218,0 +170744430266,219,0 +170744430315,220,0 +170744430363,221,0 +170744430411,221,0 +170744430461,222,0 +170744430509,225,0 +170744430558,227,0 +170744430606,229,0 +170744430656,230,0 +170744430704,233,0 +170744430753,233,0 +170744430801,234,0 +170744430849,239,0 +170744430899,239,0 +170744430946,219,0 +170744430996,216,0 +170744431044,216,0 +170744431092,216,0 +170744431140,216,0 +170744431189,217,0 +170744431237,217,0 +170744431285,218,0 +170744431333,218,0 +170744431381,219,0 +170744431429,220,0 +170744431479,221,0 +170744431527,224,0 +170744431575,231,0 +170744431623,230,0 +170744431671,232,0 +170744431720,233,0 +170744431768,234,0 +170744431818,236,0 +170744431867,237,0 +170744431917,237,0 +170744431966,237,0 +170744432016,238,0 +170744432065,220,0 +170744432113,216,0 +170744432161,216,0 +170744432209,216,0 +170744432259,216,0 +170744432307,215,0 +170744432355,215,0 +170744432402,216,0 +170744432450,215,0 +170744432498,217,0 +170744432546,217,0 +170744432595,218,0 +170744432643,219,0 +170744432693,220,0 +170744432741,221,0 +170744432789,225,0 +170744432838,227,0 +170744432886,229,0 +170744432934,231,0 +170744432984,232,0 +170744433032,234,0 +170744433080,236,0 +170744433127,239,0 +170744433175,220,0 +170744433223,216,0 +170744433273,215,0 +170744433322,216,0 +170744433370,215,0 +170744433418,215,0 +170744433468,215,0 +170744433517,215,0 +170744433567,215,0 +170744433615,215,0 +170744433663,217,0 +170744433711,217,0 +170744433760,218,0 +170744433808,219,0 +170744433858,220,0 +170744433906,223,0 +170744433955,225,0 +170744434005,226,0 +170744434053,230,0 +170744434101,232,0 +170744434149,232,0 +170744434197,238,0 +170744434246,239,0 +170744434296,221,0 +170744434345,216,0 +170744434395,216,0 +170744434444,216,0 +170744434492,217,0 +170744434540,217,0 +170744434590,218,0 +170744434637,219,0 +170744434685,219,0 +170744434735,219,0 +170744434783,220,0 +170744434832,221,0 +170744434882,223,0 +170744434932,227,0 +170744434980,228,0 +170744435027,231,0 +170744435075,231,0 +170744435123,239,0 +170744435171,234,0 +170744435221,236,0 +170744435269,236,0 +170744435318,239,0 +170744435368,238,0 +170744435417,221,0 +170744435465,216,0 +170744435515,216,0 +170744435563,216,0 +170744435611,215,0 +170744435659,216,0 +170744435707,216,0 +170744435756,216,0 +170744435806,216,0 +170744435854,217,0 +170744435902,218,0 +170744435949,218,0 +170744435997,221,0 +170744436045,220,0 +170744436093,223,0 +170744436141,224,0 +170744436189,232,0 +170744436237,231,0 +170744436285,231,0 +170744436333,233,0 +170744436382,235,0 +170744436430,237,0 +170744436478,240,0 +170744436526,219,0 +170744436575,216,0 +170744436623,216,0 +170744436671,215,0 +170744436719,216,0 +170744436767,217,0 +170744436817,217,0 +170744436864,217,0 +170744436912,218,0 +170744436960,219,0 +170744437010,220,0 +170744437059,221,0 +170744437107,224,0 +170744437155,226,0 +170744437204,229,0 +170744437252,231,0 +170744437300,232,0 +170744437348,235,0 +170744437396,236,0 +170744437444,236,0 +170744437493,237,0 +170744437541,239,0 +170744437589,240,0 +170744437637,220,0 +170744437686,217,0 +170744437736,216,0 +170744437785,216,0 +170744437833,216,0 +170744437881,215,0 +170744437930,216,0 +170744437978,217,0 +170744438028,218,0 +170744438076,218,0 +170744438124,219,0 +170744438171,219,0 +170744438221,221,0 +170744438270,221,0 +170744438318,225,0 +170744438366,227,0 +170744438414,230,0 +170744438462,232,0 +170744438510,233,0 +170744438558,234,0 +170744438606,237,0 +170744438655,235,0 +170744438703,238,0 +170744438751,236,0 +170744438801,217,0 +170744438850,215,0 +170744438898,215,0 +170744438948,215,0 +170744438996,215,0 +170744439044,215,0 +170744439092,215,0 +170744439141,216,0 +170744439189,216,0 +170744439237,217,0 +170744439285,218,0 +170744439335,219,0 +170744439384,221,0 +170744439432,225,0 +170744439480,227,0 +170744439530,230,0 +170744439578,231,0 +170744439627,232,0 +170744439675,234,0 +170744439724,235,0 +170744439772,236,0 +170744439822,238,0 +170744439870,223,0 +170744439918,217,0 +170744439966,215,0 +170744440014,216,0 +170744440061,215,0 +170744440109,216,0 +170744440159,217,0 +170744440207,217,0 +170744440255,218,0 +170744440303,219,0 +170744440351,219,0 +170744440399,220,0 +170744440447,222,0 +170744440496,222,0 +170744440546,226,0 +170744440595,229,0 +170744440643,230,0 +170744440693,232,0 +170744440743,235,0 +170744440792,242,0 +170744440840,236,0 +170744440888,236,0 +170744440936,240,0 +170744440984,229,0 +170744441032,216,0 +170744441080,215,0 +170744441129,215,0 +170744441177,215,0 +170744441227,215,0 +170744441275,216,0 +170744441322,217,0 +170744441372,217,0 +170744441421,218,0 +170744441469,218,0 +170744441517,219,0 +170744441567,222,0 +170744441615,224,0 +170744441664,227,0 +170744441714,230,0 +170744441761,231,0 +170744441811,232,0 +170744441860,234,0 +170744441908,235,0 +170744441956,238,0 +170744442004,236,0 +170744442052,238,0 +170744442100,239,0 +170744442149,223,0 +170744442197,219,0 +170744442245,219,0 +170744442294,220,0 +170744442342,220,0 +170744442390,216,0 +170744442440,216,0 +170744442488,217,0 +170744442537,217,0 +170744442585,218,0 +170744442634,219,0 +170744442684,220,0 +170744442732,222,0 +170744442780,225,0 +170744442828,227,0 +170744442877,229,0 +170744442925,232,0 +170744442974,232,0 +170744443022,233,0 +170744443070,236,0 +170744443118,236,0 +170744443166,237,0 +170744443214,238,0 +170744443263,219,0 +170744443311,216,0 +170744443359,217,0 +170744443408,217,0 +170744443458,217,0 +170744443506,218,0 +170744443553,220,0 +170744443603,220,0 +170744443651,220,0 +170744443699,220,0 +170744443747,222,0 +170744443796,224,0 +170744443844,226,0 +170744443892,229,0 +170744443940,235,0 +170744443988,234,0 +170744444037,234,0 +170744444085,236,0 +170744444133,236,0 +170744444181,238,0 +170744444229,240,0 +170744444276,248,0 +170744444324,238,0 +170744444372,220,0 +170744444422,216,0 +170744444471,215,0 +170744444519,215,0 +170744444567,215,0 +170744444615,215,0 +170744444663,216,0 +170744444711,216,0 +170744444759,217,0 +170744444808,218,0 +170744444856,218,0 +170744444904,219,0 +170744444953,220,0 +170744445001,223,0 +170744445049,226,0 +170744445097,228,0 +170744445145,230,0 +170744445193,233,0 +170744445241,237,0 +170744445288,235,0 +170744445336,238,0 +170744445384,239,0 +170744445434,239,0 +170744445482,221,0 +170744445531,216,0 +170744445581,215,0 +170744445628,216,0 +170744445676,215,0 +170744445724,216,0 +170744445772,217,0 +170744445820,217,0 +170744445868,218,0 +170744445916,219,0 +170744445964,219,0 +170744446012,220,0 +170744446059,222,0 +170744446107,225,0 +170744446157,227,0 +170744446205,231,0 +170744446253,232,0 +170744446301,233,0 +170744446348,235,0 +170744446398,236,0 +170744446446,236,0 +170744446494,238,0 +170744446542,241,0 +170744446591,221,0 +170744446640,217,0 +170744446688,217,0 +170744446736,217,0 +170744446786,218,0 +170744446834,218,0 +170744446881,219,0 +170744446931,220,0 +170744446980,220,0 +170744447030,220,0 +170744447078,222,0 +170744447127,224,0 +170744447175,227,0 +170744447223,229,0 +170744447272,231,0 +170744447320,232,0 +170744447368,235,0 +170744447418,235,0 +170744447467,239,0 +170744447515,238,0 +170744447565,239,0 +170744447613,239,0 +170744447661,240,0 +170744447709,223,0 +170744447758,217,0 +170744447806,216,0 +170744447854,217,0 +170744447902,218,0 +170744447950,218,0 +170744447998,219,0 +170744448046,220,0 +170744448094,221,0 +170744448141,221,0 +170744448189,222,0 +170744448239,223,0 +170744448287,224,0 +170744448336,227,0 +170744448384,229,0 +170744448432,231,0 +170744448480,233,0 +170744448528,234,0 +170744448576,236,0 +170744448624,237,0 +170744448672,237,0 +170744448719,235,0 +170744448769,239,0 +170744448818,231,0 +170744448868,217,0 +170744448917,215,0 +170744448967,215,0 +170744449016,215,0 +170744449064,215,0 +170744449112,215,0 +170744449162,215,0 +170744449210,215,0 +170744449258,215,0 +170744449307,215,0 +170744449355,215,0 +170744449403,216,0 +170744449451,217,0 +170744449501,217,0 +170744449550,218,0 +170744449598,220,0 +170744449648,222,0 +170744449696,225,0 +170744449744,226,0 +170744449793,228,0 +170744449841,231,0 +170744449891,239,0 +170744449938,238,0 +170744449988,218,0 +170744450038,215,0 +170744450086,216,0 +170744450135,216,0 +170744450184,216,0 +170744450232,216,0 +170744450280,217,0 +170744450330,217,0 +170744450378,218,0 +170744450425,219,0 +170744450473,219,0 +170744450523,221,0 +170744450571,222,0 +170744450620,225,0 +170744450668,226,0 +170744450718,229,0 +170744450765,232,0 +170744450815,233,0 +170744450863,235,0 +170744450911,235,0 +170744450960,236,0 +170744451008,240,0 +170744451056,239,0 +170744451104,218,0 +170744451152,215,0 +170744451201,215,0 +170744451251,215,0 +170744451298,215,0 +170744451348,216,0 +170744451396,216,0 +170744451444,217,0 +170744451492,218,0 +170744451540,218,0 +170744451587,220,0 +170744451635,220,0 +170744451683,225,0 +170744451731,221,0 +170744451779,225,0 +170744451827,228,0 +170744451875,231,0 +170744451923,232,0 +170744451971,233,0 +170744452020,234,0 +170744452068,236,0 +170744452117,238,0 +170744452165,239,0 +170744452213,219,0 +170744452261,216,0 +170744452309,215,0 +170744452357,215,0 +170744452405,215,0 +170744452454,215,0 +170744452502,216,0 +170744452550,217,0 +170744452600,218,0 +170744452647,218,0 +170744452695,219,0 +170744452743,219,0 +170744452791,221,0 +170744452839,223,0 +170744452888,226,0 +170744452938,228,0 +170744452986,230,0 +170744453034,233,0 +170744453081,235,0 +170744453131,235,0 +170744453179,237,0 +170744453227,238,0 +170744453275,240,0 +170744453322,221,0 +170744453370,215,0 +170744453418,215,0 +170744453466,215,0 +170744453514,215,0 +170744453562,215,0 +170744453611,216,0 +170744453659,216,0 +170744453707,217,0 +170744453755,218,0 +170744453803,219,0 +170744453852,220,0 +170744453902,220,0 +170744453950,223,0 +170744453998,224,0 +170744454046,228,0 +170744454095,229,0 +170744454143,232,0 +170744454191,235,0 +170744454239,234,0 +170744454287,236,0 +170744454335,239,0 +170744454383,239,0 +170744454432,224,0 +170744454480,216,0 +170744454528,215,0 +170744454576,216,0 +170744454625,215,0 +170744454673,215,0 +170744454721,215,0 +170744454769,215,0 +170744454817,215,0 +170744454866,215,0 +170744454914,216,0 +170744454962,215,0 +170744455010,215,0 +170744455058,215,0 +170744455107,216,0 +170744455157,217,0 +170744455205,219,0 +170744455253,219,0 +170744455301,221,0 +170744455349,224,0 +170744455398,227,0 +170744455446,236,0 +170744455494,240,0 +170744455542,222,0 +170744455590,216,0 +170744455639,215,0 +170744455687,215,0 +170744455735,215,0 +170744455783,218,0 +170744455833,217,0 +170744455880,217,0 +170744455928,218,0 +170744455978,218,0 +170744456026,219,0 +170744456074,220,0 +170744456123,222,0 +170744456173,222,0 +170744456221,226,0 +170744456269,230,0 +170744456317,229,0 +170744456365,232,0 +170744456413,232,0 +170744456462,234,0 +170744456512,236,0 +170744456560,237,0 +170744456608,241,0 +170744456655,240,0 +170744456705,217,0 +170744456753,215,0 +170744456803,215,0 +170744456850,215,0 +170744456900,216,0 +170744456948,216,0 +170744456996,216,0 +170744457044,217,0 +170744457092,218,0 +170744457140,219,0 +170744457188,218,0 +170744457236,219,0 +170744457284,221,0 +170744457332,225,0 +170744457380,225,0 +170744457428,231,0 +170744457476,231,0 +170744457525,233,0 +170744457575,234,0 +170744457624,235,0 +170744457672,237,0 +170744457720,239,0 +170744457768,241,0 +170744457816,219,0 +170744457864,216,0 +170744457912,216,0 +170744457960,215,0 +170744458008,215,0 +170744458057,215,0 +170744458107,216,0 +170744458157,217,0 +170744458206,217,0 +170744458254,218,0 +170744458304,219,0 +170744458352,219,0 +170744458400,220,0 +170744458448,221,0 +170744458495,224,0 +170744458543,226,0 +170744458593,228,0 +170744458641,231,0 +170744458690,232,0 +170744458740,234,0 +170744458790,236,0 +170744458837,237,0 +170744458887,239,0 +170744458935,220,0 +170744458984,216,0 +170744459032,215,0 +170744459082,215,0 +170744459130,215,0 +170744459178,215,0 +170744459227,215,0 +170744459275,216,0 +170744459323,215,0 +170744459371,215,0 +170744459419,216,0 +170744459467,216,0 +170744459515,217,0 +170744459563,218,0 +170744459611,220,0 +170744459659,224,0 +170744459707,226,0 +170744459755,227,0 +170744459803,228,0 +170744459851,231,0 +170744459899,232,0 +170744459947,237,0 +170744459995,238,0 +170744460043,221,0 +170744460092,216,0 +170744460140,216,0 +170744460188,217,0 +170744460236,218,0 +170744460284,218,0 +170744460332,219,0 +170744460380,219,0 +170744460427,220,0 +170744460475,221,0 +170744460525,223,0 +170744460573,225,0 +170744460621,227,0 +170744460670,229,0 +170744460720,232,0 +170744460769,235,0 +170744460819,236,0 +170744460868,235,0 +170744460916,237,0 +170744460966,237,0 +170744461014,239,0 +170744461062,238,0 +170744461110,238,0 +170744461158,221,0 +170744461206,216,0 +170744461254,215,0 +170744461303,216,0 +170744461351,217,0 +170744461399,218,0 +170744461449,218,0 +170744461498,218,0 +170744461546,219,0 +170744461596,220,0 +170744461645,223,0 +170744461695,225,0 +170744461743,227,0 +170744461790,230,0 +170744461838,232,0 +170744461886,232,0 +170744461934,234,0 +170744461982,236,0 +170744462032,237,0 +170744462081,237,0 +170744462131,240,0 +170744462180,240,0 +170744462230,239,0 +170744462279,221,0 +170744462327,216,0 +170744462377,215,0 +170744462426,215,0 +170744462476,215,0 +170744462524,215,0 +170744462572,215,0 +170744462620,216,0 +170744462668,217,0 +170744462715,218,0 +170744462765,218,0 +170744462814,219,0 +170744462862,221,0 +170744462910,223,0 +170744462958,227,0 +170744463006,229,0 +170744463055,229,0 +170744463105,233,0 +170744463153,232,0 +170744463201,235,0 +170744463248,236,0 +170744463296,238,0 +170744463344,239,0 +170744463394,221,0 +170744463443,216,0 +170744463491,216,0 +170744463541,216,0 +170744463590,215,0 +170744463638,216,0 +170744463686,216,0 +170744463734,218,0 +170744463784,218,0 +170744463832,219,0 +170744463880,219,0 +170744463928,220,0 +170744463977,223,0 +170744464025,226,0 +170744464073,228,0 +170744464123,230,0 +170744464171,233,0 +170744464220,240,0 +170744464268,235,0 +170744464318,236,0 +170744464366,237,0 +170744464415,239,0 +170744464465,240,0 +170744464513,221,0 +170744464561,215,0 +170744464610,215,0 +170744464660,215,0 +170744464708,215,0 +170744464756,216,0 +170744464805,217,0 +170744464853,217,0 +170744464901,217,0 +170744464949,219,0 +170744464998,219,0 +170744465046,221,0 +170744465094,225,0 +170744465142,227,0 +170744465192,229,0 +170744465240,231,0 +170744465288,233,0 +170744465336,234,0 +170744465385,235,0 +170744465435,236,0 +170744465483,239,0 +170744465531,233,0 +170744465579,238,0 +170744465628,222,0 +170744465676,217,0 +170744465726,216,0 +170744465775,216,0 +170744465823,215,0 +170744465873,216,0 +170744465921,216,0 +170744465969,217,0 +170744466018,218,0 +170744466066,219,0 +170744466114,218,0 +170744466162,219,0 +170744466210,220,0 +170744466258,222,0 +170744466306,226,0 +170744466354,228,0 +170744466402,231,0 +170744466451,232,0 +170744466499,234,0 +170744466547,236,0 +170744466595,237,0 +170744466643,234,0 +170744466690,238,0 +170744466738,226,0 +170744466786,217,0 +170744466834,216,0 +170744466884,215,0 +170744466932,216,0 +170744466981,216,0 +170744467029,217,0 +170744467077,218,0 +170744467125,218,0 +170744467173,219,0 +170744467223,219,0 +170744467272,220,0 +170744467322,221,0 +170744467370,224,0 +170744467418,232,0 +170744467466,229,0 +170744467515,231,0 +170744467563,232,0 +170744467611,235,0 +170744467661,236,0 +170744467710,236,0 +170744467758,235,0 +170744467806,239,0 +170744467854,237,0 +170744467903,217,0 +170744467953,216,0 +170744468001,216,0 +170744468049,215,0 +170744468097,215,0 +170744468146,216,0 +170744468194,216,0 +170744468244,217,0 +170744468292,218,0 +170744468340,218,0 +170744468389,219,0 +170744468439,221,0 +170744468487,224,0 +170744468536,226,0 +170744468584,227,0 +170744468633,230,0 +170744468681,233,0 +170744468731,234,0 +170744468781,234,0 +170744468829,235,0 +170744468878,235,0 +170744468928,238,0 +170744468975,237,0 +170744469023,217,0 +170744469071,215,0 +170744469119,215,0 +170744469167,215,0 +170744469217,215,0 +170744469266,215,0 +170744469316,215,0 +170744469365,215,0 +170744469413,216,0 +170744469463,216,0 +170744469513,216,0 +170744469562,217,0 +170744469612,217,0 +170744469660,219,0 +170744469708,220,0 +170744469756,224,0 +170744469803,226,0 +170744469851,227,0 +170744469901,229,0 +170744469950,235,0 +170744470000,234,0 +170744470048,238,0 +170744470096,238,0 +170744470144,219,0 +170744470192,216,0 +170744470240,215,0 +170744470288,216,0 +170744470336,216,0 +170744470384,215,0 +170744470432,215,0 +170744470479,216,0 +170744470527,217,0 +170744470575,217,0 +170744470623,218,0 +170744470671,219,0 +170744470721,218,0 +170744470769,221,0 +170744470818,224,0 +170744470866,227,0 +170744470916,229,0 +170744470965,230,0 +170744471015,233,0 +170744471063,234,0 +170744471111,232,0 +170744471160,239,0 +170744471208,237,0 +170744471258,218,0 +170744471307,216,0 +170744471357,216,0 +170744471406,216,0 +170744471456,216,0 +170744471505,216,0 +170744471553,216,0 +170744471601,217,0 +170744471649,217,0 +170744471697,218,0 +170744471745,219,0 +170744471793,219,0 +170744471841,222,0 +170744471889,224,0 +170744471937,226,0 +170744471985,229,0 +170744472033,230,0 +170744472081,231,0 +170744472131,233,0 +170744472180,235,0 +170744472230,236,0 +170744472278,239,0 +170744472326,237,0 +170744472375,218,0 +170744472425,216,0 +170744472473,215,0 +170744472521,215,0 +170744472569,216,0 +170744472617,217,0 +170744472665,217,0 +170744472713,218,0 +170744472761,218,0 +170744472809,218,0 +170744472856,220,0 +170744472904,221,0 +170744472954,224,0 +170744473002,226,0 +170744473050,236,0 +170744473099,230,0 +170744473147,231,0 +170744473195,233,0 +170744473245,234,0 +170744473293,236,0 +170744473341,236,0 +170744473389,237,0 +170744473438,237,0 +170744473488,220,0 +170744473537,215,0 +170744473585,216,0 +170744473635,215,0 +170744473682,216,0 +170744473730,215,0 +170744473780,215,0 +170744473828,215,0 +170744473876,216,0 +170744473924,217,0 +170744473972,218,0 +170744474020,219,0 +170744474068,220,0 +170744474116,222,0 +170744474164,223,0 +170744474212,228,0 +170744474260,228,0 +170744474308,229,0 +170744474357,231,0 +170744474405,233,0 +170744474453,235,0 +170744474503,237,0 +170744474552,239,0 +170744474600,221,0 +170744474648,216,0 +170744474696,215,0 +170744474744,215,0 +170744474792,216,0 +170744474840,216,0 +170744474888,217,0 +170744474937,217,0 +170744474987,218,0 +170744475035,218,0 +170744475084,219,0 +170744475132,220,0 +170744475182,222,0 +170744475230,224,0 +170744475278,226,0 +170744475326,229,0 +170744475374,231,0 +170744475421,232,0 +170744475469,234,0 +170744475519,236,0 +170744475567,235,0 +170744475615,238,0 +170744475663,239,0 +170744475712,221,0 +170744475760,216,0 +170744475808,215,0 +170744475856,215,0 +170744475904,215,0 +170744475952,215,0 +170744476000,215,0 +170744476047,216,0 +170744476095,217,0 +170744476143,217,0 +170744476191,217,0 +170744476239,219,0 +170744476287,220,0 +170744476335,221,0 +170744476383,224,0 +170744476432,227,0 +170744476480,229,0 +170744476528,231,0 +170744476577,232,0 +170744476625,237,0 +170744476673,235,0 +170744476721,237,0 +170744476769,240,0 +170744476819,219,0 +170744476866,216,0 +170744476916,215,0 +170744476965,215,0 +170744477013,215,0 +170744477061,215,0 +170744477109,216,0 +170744477157,215,0 +170744477206,217,0 +170744477254,217,0 +170744477302,218,0 +170744477350,220,0 +170744477398,219,0 +170744477446,222,0 +170744477493,225,0 +170744477541,226,0 +170744477591,229,0 +170744477640,230,0 +170744477690,232,0 +170744477738,233,0 +170744477786,235,0 +170744477835,231,0 +170744477885,238,0 +170744477933,232,0 +170744477982,216,0 +170744478032,215,0 +170744478080,215,0 +170744478129,215,0 +170744478179,216,0 +170744478229,216,0 +170744478277,216,0 +170744478326,217,0 +170744478374,218,0 +170744478422,219,0 +170744478470,220,0 +170744478519,221,0 +170744478567,224,0 +170744478615,226,0 +170744478665,228,0 +170744478713,232,0 +170744478760,234,0 +170744478808,233,0 +170744478858,235,0 +170744478906,236,0 +170744478954,239,0 +170744479002,239,0 +170744479051,219,0 +170744479101,216,0 +170744479149,216,0 +170744479198,215,0 +170744479246,215,0 +170744479296,215,0 +170744479345,216,0 +170744479395,217,0 +170744479443,217,0 +170744479491,218,0 +170744479540,219,0 +170744479588,220,0 +170744479636,222,0 +170744479684,225,0 +170744479732,227,0 +170744479782,230,0 +170744479830,231,0 +170744479879,233,0 +170744479927,236,0 +170744479977,234,0 +170744480024,237,0 +170744480072,240,0 +170744480120,238,0 +170744480169,220,0 +170744480217,216,0 +170744480266,215,0 +170744480314,215,0 +170744480362,215,0 +170744480412,216,0 +170744480460,217,0 +170744480508,217,0 +170744480557,218,0 +170744480607,219,0 +170744480655,219,0 +170744480704,220,0 +170744480753,222,0 +170744480801,224,0 +170744480851,228,0 +170744480899,230,0 +170744480947,230,0 +170744480996,234,0 +170744481045,234,0 +170744481093,235,0 +170744481141,236,0 +170744481189,238,0 +170744481237,240,0 +170744481285,222,0 +170744481335,216,0 +170744481383,215,0 +170744481431,215,0 +170744481480,216,0 +170744481528,216,0 +170744481576,217,0 +170744481624,217,0 +170744481674,218,0 +170744481722,219,0 +170744481770,219,0 +170744481817,221,0 +170744481865,224,0 +170744481913,226,0 +170744481963,228,0 +170744482011,230,0 +170744482059,232,0 +170744482107,235,0 +170744482155,235,0 +170744482203,237,0 +170744482251,238,0 +170744482300,239,0 +170744482348,239,0 +170744482396,219,0 +170744482444,217,0 +170744482492,218,0 +170744482540,218,0 +170744482588,218,0 +170744482635,220,0 +170744482683,220,0 +170744482731,220,0 +170744482779,222,0 +170744482827,224,0 +170744482875,225,0 +170744482923,228,0 +170744482971,228,0 +170744483019,231,0 +170744483067,234,0 +170744483115,238,0 +170744483164,234,0 +170744483212,236,0 +170744483262,236,0 +170744483310,239,0 +170744483358,240,0 +170744483407,237,0 +170744483457,240,0 +170744483505,219,0 +170744483554,216,0 +170744483602,215,0 +170744483650,215,0 +170744483700,215,0 +170744483748,216,0 +170744483796,215,0 +170744483845,216,0 +170744483893,216,0 +170744483941,218,0 +170744483989,219,0 +170744484038,219,0 +170744484086,222,0 +170744484134,225,0 +170744484182,229,0 +170744484230,229,0 +170744484278,232,0 +170744484326,234,0 +170744484374,234,0 +170744484424,236,0 +170744484473,237,0 +170744484523,248,0 +170744484571,239,0 +170744484620,219,0 +170744484670,216,0 +170744484719,216,0 +170744484769,215,0 +170744484818,215,0 +170744484866,215,0 +170744484914,215,0 +170744484964,216,0 +170744485012,217,0 +170744485060,217,0 +170744485107,218,0 +170744485155,218,0 +170744485205,219,0 +170744485255,222,0 +170744485303,224,0 +170744485352,227,0 +170744485402,229,0 +170744485450,230,0 +170744485498,232,0 +170744485547,233,0 +170744485597,236,0 +170744485645,237,0 +170744485692,240,0 +170744485740,219,0 +170744485788,216,0 +170744485836,216,0 +170744485886,215,0 +170744485935,215,0 +170744485983,215,0 +170744486033,216,0 +170744486081,217,0 +170744486129,218,0 +170744486178,218,0 +170744486226,219,0 +170744486274,221,0 +170744486322,222,0 +170744486370,226,0 +170744486418,228,0 +170744486466,229,0 +170744486514,231,0 +170744486562,233,0 +170744486611,235,0 +170744486661,237,0 +170744486710,236,0 +170744486758,238,0 +170744486806,237,0 +170744486856,221,0 +170744486903,216,0 +170744486951,216,0 +170744486999,216,0 +170744487047,215,0 +170744487095,216,0 +170744487143,217,0 +170744487191,217,0 +170744487241,218,0 +170744487290,218,0 +170744487340,219,0 +170744487389,220,0 +170744487437,222,0 +170744487485,225,0 +170744487535,227,0 +170744487583,230,0 +170744487632,231,0 +170744487680,232,0 +170744487728,236,0 +170744487776,236,0 +170744487826,237,0 +170744487874,238,0 +170744487923,238,0 +170744487973,221,0 +170744488022,216,0 +170744488070,215,0 +170744488120,215,0 +170744488168,216,0 +170744488217,215,0 +170744488267,215,0 +170744488316,216,0 +170744488364,216,0 +170744488412,217,0 +170744488460,217,0 +170744488508,219,0 +170744488556,220,0 +170744488604,221,0 +170744488651,224,0 +170744488699,227,0 +170744488747,228,0 +170744488795,230,0 +170744488843,233,0 +170744488891,235,0 +170744488939,235,0 +170744488987,237,0 +170744489035,239,0 +170744489082,219,0 +170744489130,216,0 +170744489180,216,0 +170744489228,215,0 +170744489275,215,0 +170744489325,215,0 +170744489373,216,0 +170744489422,217,0 +170744489472,218,0 +170744489520,218,0 +170744489568,218,0 +170744489616,219,0 +170744489664,220,0 +170744489713,222,0 +170744489763,226,0 +170744489812,231,0 +170744489862,231,0 +170744489910,291,1 +170744490004,235,0 +170744490052,236,0 +170744490101,238,0 +170744490149,238,0 +170744490199,222,0 +170744490248,217,0 +170744490298,216,0 +170744490347,216,0 +170744490395,216,0 +170744490443,215,0 +170744490491,216,0 +170744490541,217,0 +170744490589,218,0 +170744490637,218,0 +170744490686,219,0 +170744490734,220,0 +170744490784,222,0 +170744490832,225,0 +170744490880,227,0 +170744490929,230,0 +170744490977,232,0 +170744491025,233,0 +170744491073,233,0 +170744491121,235,0 +170744491169,237,0 +170744491217,238,0 +170744491265,237,0 +170744491313,221,0 +170744491361,216,0 +170744491410,216,0 +170744491458,216,0 +170744491508,217,0 +170744491556,217,0 +170744491605,215,0 +170744491655,217,0 +170744491702,217,0 +170744491750,218,0 +170744491798,218,0 +170744491848,220,0 +170744491897,221,0 +170744491947,224,0 +170744491995,226,0 +170744492043,228,0 +170744492091,230,0 +170744492140,232,0 +170744492190,233,0 +170744492238,235,0 +170744492286,237,0 +170744492335,238,0 +170744492383,238,0 +170744492433,220,0 +170744492482,215,0 +170744492532,215,0 +170744492580,215,0 +170744492627,215,0 +170744492675,215,0 +170744492723,215,0 +170744492773,215,0 +170744492822,215,0 +170744492872,216,0 +170744492920,217,0 +170744492968,217,0 +170744493016,218,0 +170744493064,220,0 +170744493112,223,0 +170744493160,225,0 +170744493208,228,0 +170744493257,229,0 +170744493307,231,0 +170744493355,233,0 +170744493403,235,0 +170744493451,238,0 +170744493500,237,0 +170744493548,220,0 +170744493596,215,0 +170744493644,215,0 +170744493692,215,0 +170744493740,215,0 +170744493788,215,0 +170744493836,215,0 +170744493884,216,0 +170744493931,216,0 +170744493979,217,0 +170744494027,218,0 +170744494075,218,0 +170744494123,219,0 +170744494171,221,0 +170744494219,231,0 +170744494267,226,0 +170744494316,229,0 +170744494366,232,0 +170744494414,233,0 +170744494462,233,0 +170744494511,235,0 +170744494561,237,0 +170744494609,238,0 +170744494658,221,0 +170744494708,216,0 +170744494757,215,0 +170744494805,216,0 +170744494855,216,0 +170744494903,216,0 +170744494952,217,0 +170744495002,217,0 +170744495050,219,0 +170744495098,218,0 +170744495145,219,0 +170744495193,221,0 +170744495243,224,0 +170744495291,226,0 +170744495339,228,0 +170744495387,231,0 +170744495435,231,0 +170744495483,232,0 +170744495532,235,0 +170744495580,235,0 +170744495628,238,0 +170744495678,238,0 +170744495727,238,0 +170744495777,221,0 +170744495826,216,0 +170744495876,216,0 +170744495924,215,0 +170744495973,215,0 +170744496023,216,0 +170744496072,216,0 +170744496120,216,0 +170744496168,215,0 +170744496216,216,0 +170744496266,215,0 +170744496315,216,0 +170744496365,217,0 +170744496414,218,0 +170744496462,221,0 +170744496512,222,0 +170744496560,224,0 +170744496608,226,0 +170744496656,229,0 +170744496705,230,0 +170744496753,233,0 +170744496801,237,0 +170744496849,238,0 +170744496899,220,0 +170744496947,216,0 +170744496995,215,0 +170744497043,215,0 +170744497092,215,0 +170744497140,215,0 +170744497188,215,0 +170744497238,215,0 +170744497285,215,0 +170744497333,215,0 +170744497383,216,0 +170744497431,217,0 +170744497481,218,0 +170744497530,219,0 +170744497578,220,0 +170744497628,223,0 +170744497676,226,0 +170744497723,228,0 +170744497771,228,0 +170744497821,232,0 +170744497869,233,0 +170744497917,237,0 +170744497965,239,0 +170744498013,221,0 +170744498061,216,0 +170744498109,216,0 +170744498158,215,0 +170744498206,216,0 +170744498254,217,0 +170744498302,218,0 +170744498350,218,0 +170744498398,219,0 +170744498448,220,0 +170744498496,220,0 +170744498545,220,0 +170744498593,222,0 +170744498641,225,0 +170744498689,228,0 +170744498737,230,0 +170744498786,232,0 +170744498836,234,0 +170744498886,233,0 +170744498935,236,0 +170744498983,237,0 +170744499031,237,0 +170744499081,239,0 +170744499130,221,0 +170744499180,215,0 +170744499228,215,0 +170744499276,215,0 +170744499325,215,0 +170744499375,215,0 +170744499422,215,0 +170744499472,215,0 +170744499520,215,0 +170744499568,215,0 +170744499616,215,0 +170744499664,216,0 +170744499712,217,0 +170744499761,218,0 +170744499811,218,0 +170744499859,221,0 +170744499907,223,0 +170744499956,225,0 +170744500004,227,0 +170744500054,232,0 +170744500103,231,0 +170744500153,237,0 +170744500202,237,0 +170744500250,219,0 +170744500300,215,0 +170744500348,215,0 +170744500395,215,0 +170744500443,216,0 +170744500491,216,0 +170744500541,217,0 +170744500591,218,0 +170744500639,219,0 +170744500686,219,0 +170744500734,220,0 +170744500782,220,0 +170744500830,222,0 +170744500878,226,0 +170744500926,228,0 +170744500974,230,0 +170744501022,231,0 +170744501070,233,0 +170744501118,233,0 +170744501166,235,0 +170744501214,236,0 +170744501264,238,0 +170744501312,239,0 +170744501361,223,0 +170744501411,219,0 +170744501460,219,0 +170744501508,216,0 +170744501558,216,0 +170744501607,216,0 +170744501657,216,0 +170744501704,216,0 +170744501754,217,0 +170744501804,217,0 +170744501853,217,0 +170744501901,219,0 +170744501951,220,0 +170744501999,223,0 +170744502048,226,0 +170744502098,228,0 +170744502146,230,0 +170744502194,232,0 +170744502242,233,0 +170744502291,233,0 +170744502339,237,0 +170744502387,239,0 +170744502435,237,0 +170744502484,219,0 +170744502532,216,0 +170744502580,216,0 +170744502630,215,0 +170744502678,215,0 +170744502726,217,0 +170744502774,217,0 +170744502823,217,0 +170744502873,219,0 +170744502921,219,0 +170744502969,219,0 +170744503017,220,0 +170744503065,223,0 +170744503113,226,0 +170744503162,228,0 +170744503210,230,0 +170744503258,232,0 +170744503306,234,0 +170744503353,234,0 +170744503403,237,0 +170744503451,238,0 +170744503499,236,0 +170744503547,237,0 +170744503594,221,0 +170744503642,216,0 +170744503690,216,0 +170744503738,215,0 +170744503786,216,0 +170744503834,217,0 +170744503882,217,0 +170744503930,218,0 +170744503978,219,0 +170744504025,219,0 +170744504075,220,0 +170744504123,221,0 +170744504171,223,0 +170744504219,225,0 +170744504266,227,0 +170744504314,231,0 +170744504362,233,0 +170744504410,233,0 +170744504459,235,0 +170744504509,236,0 +170744504558,238,0 +170744504606,237,0 +170744504654,239,0 +170744504702,220,0 +170744504750,216,0 +170744504798,216,0 +170744504846,217,0 +170744504894,218,0 +170744504941,218,0 +170744504989,220,0 +170744505037,220,0 +170744505087,220,0 +170744505135,221,0 +170744505183,223,0 +170744505231,224,0 +170744505280,226,0 +170744505330,228,0 +170744505378,231,0 +170744505427,232,0 +170744505477,233,0 +170744505525,235,0 +170744505572,237,0 +170744505620,238,0 +170744505670,238,0 +170744505719,237,0 +170744505767,238,0 +170744505815,233,0 +170744505863,217,0 +170744505911,216,0 +170744505959,216,0 +170744506009,217,0 +170744506057,217,0 +170744506105,218,0 +170744506152,218,0 +170744506200,220,0 +170744506248,221,0 +170744506296,222,0 +170744506344,223,0 +170744506392,227,0 +170744506440,229,0 +170744506488,230,0 +170744506536,232,0 +170744506585,232,0 +170744506633,234,0 +170744506681,237,0 +170744506731,238,0 +170744506779,238,0 +170744506828,240,0 +170744506876,240,0 +170744506924,239,0 +170744506972,218,0 +170744507021,217,0 +170744507069,218,0 +170744507117,218,0 +170744507165,218,0 +170744507213,220,0 +170744507261,219,0 +170744507310,220,0 +170744507358,222,0 +170744507407,222,0 +170744507455,225,0 +170744507505,227,0 +170744507554,230,0 +170744507604,233,0 +170744507653,234,0 +170744507703,235,0 +170744507751,237,0 +170744507799,238,0 +170744507848,239,0 +170744507896,242,0 +170744507946,238,0 +170744507994,240,0 +170744508042,238,0 +170744508091,217,0 +170744508139,216,0 +170744508187,216,0 +170744508235,217,0 +170744508285,218,0 +170744508334,218,0 +170744508383,219,0 +170744508431,220,0 +170744508481,221,0 +170744508529,223,0 +170744508577,223,0 +170744508625,224,0 +170744508674,227,0 +170744508722,228,0 +170744508772,231,0 +170744508820,234,0 +170744508868,235,0 +170744508916,235,0 +170744508964,237,0 +170744509013,239,0 +170744509061,240,0 +170744509109,240,0 +170744509157,238,0 +170744509205,219,0 +170744509253,215,0 +170744509301,215,0 +170744509348,215,0 +170744509396,215,0 +170744509444,215,0 +170744509492,215,0 +170744509541,216,0 +170744509589,216,0 +170744509637,217,0 +170744509685,218,0 +170744509733,220,0 +170744509781,219,0 +170744509830,222,0 +170744509878,225,0 +170744509926,228,0 +170744509976,229,0 +170744510024,232,0 +170744510073,233,0 +170744510121,235,0 +170744510171,237,0 +170744510219,239,0 +170744510268,240,0 +170744510316,220,0 +170744510364,215,0 +170744510412,216,0 +170744510460,216,0 +170744510508,216,0 +170744510556,216,0 +170744510604,216,0 +170744510653,217,0 +170744510701,217,0 +170744510749,218,0 +170744510799,219,0 +170744510848,219,0 +170744510896,220,0 +170744510946,223,0 +170744510995,227,0 +170744511043,227,0 +170744511093,230,0 +170744511140,231,0 +170744511188,243,0 +170744511236,239,0 +170744511284,236,0 +170744511333,237,0 +170744511381,240,0 +170744511429,220,0 +170744511477,216,0 +170744511525,215,0 +170744511573,215,0 +170744511621,215,0 +170744511669,216,0 +170744511717,218,0 +170744511764,218,0 +170744511812,218,0 +170744511860,219,0 +170744511908,219,0 +170744511956,220,0 +170744512004,223,0 +170744512053,224,0 +170744512101,229,0 +170744512151,229,0 +170744512200,231,0 +170744512248,238,0 +170744512296,235,0 +170744512345,237,0 +170744512395,237,0 +170744512445,239,0 +170744512492,239,0 +170744512540,220,0 +170744512588,216,0 +170744512636,216,0 +170744512684,215,0 +170744512732,215,0 +170744512780,215,0 +170744512828,216,0 +170744512876,216,0 +170744512924,216,0 +170744512972,215,0 +170744513020,216,0 +170744513067,215,0 +170744513117,215,0 +170744513165,216,0 +170744513213,217,0 +170744513261,218,0 +170744513308,219,0 +170744513356,222,0 +170744513406,224,0 +170744513455,226,0 +170744513503,231,0 +170744513551,237,0 +170744513601,240,0 +170744513650,220,0 +170744513698,216,0 +170744513746,216,0 +170744513796,215,0 +170744513844,216,0 +170744513893,215,0 +170744513941,215,0 +170744513991,216,0 +170744514039,216,0 +170744514087,217,0 +170744514135,218,0 +170744514182,219,0 +170744514230,220,0 +170744514280,220,0 +170744514328,222,0 +170744514376,225,0 +170744514424,227,0 +170744514472,230,0 +170744514520,231,0 +170744514569,232,0 +170744514617,236,0 +170744514665,236,0 +170744514713,239,0 +170744514761,230,0 +170744514810,217,0 +170744514860,216,0 +170744514909,216,0 +170744514959,216,0 +170744515008,216,0 +170744515058,216,0 +170744515108,216,0 +170744515156,217,0 +170744515203,218,0 +170744515253,218,0 +170744515303,219,0 +170744515352,220,0 +170744515402,222,0 +170744515451,223,0 +170744515501,227,0 +170744515550,230,0 +170744515598,231,0 +170744515646,234,0 +170744515694,233,0 +170744515744,236,0 +170744515793,240,0 +170744515841,240,0 +170744515891,222,0 +170744515939,217,0 +170744515988,216,0 +170744516036,216,0 +170744516084,216,0 +170744516132,216,0 +170744516182,217,0 +170744516230,217,0 +170744516278,218,0 +170744516327,219,0 +170744516377,219,0 +170744516425,221,0 +170744516474,222,0 +170744516522,224,0 +170744516572,229,0 +170744516621,229,0 +170744516669,232,0 +170744516719,232,0 +170744516766,235,0 +170744516815,234,0 +170744516864,236,0 +170744516914,239,0 +170744516962,238,0 +170744517010,219,0 +170744517057,216,0 +170744517107,216,0 +170744517155,216,0 +170744517205,215,0 +170744517254,218,0 +170744517302,217,0 +170744517350,217,0 +170744517398,218,0 +170744517446,219,0 +170744517494,220,0 +170744517543,220,0 +170744517592,222,0 +170744517642,223,0 +170744517690,226,0 +170744517738,229,0 +170744517787,230,0 +170744517837,232,0 +170744517885,233,0 +170744517933,234,0 +170744517981,236,0 +170744518029,239,0 +170744518077,239,0 +170744518126,219,0 +170744518174,219,0 +170744518222,218,0 +170744518270,219,0 +170744518318,220,0 +170744518367,222,0 +170744518417,215,0 +170744518467,216,0 +170744518516,217,0 +170744518566,217,0 +170744518615,217,0 +170744518665,219,0 +170744518713,219,0 +170744518762,221,0 +170744518812,225,0 +170744518860,227,0 +170744518908,230,0 +170744518956,230,0 +170744519005,233,0 +170744519053,235,0 +170744519101,234,0 +170744519149,238,0 +170744519199,240,0 +170744519247,220,0 +170744519294,216,0 +170744519342,216,0 +170744519390,215,0 +170744519438,216,0 +170744519486,215,0 +170744519534,216,0 +170744519582,217,0 +170744519630,217,0 +170744519678,217,0 +170744519726,219,0 +170744519776,219,0 +170744519825,222,0 +170744519875,224,0 +170744519924,227,0 +170744519972,228,0 +170744520022,231,0 +170744520070,233,0 +170744520118,234,0 +170744520166,236,0 +170744520215,238,0 +170744520265,237,0 +170744520313,237,0 +170744520361,219,0 +170744520409,216,0 +170744520457,215,0 +170744520506,215,0 +170744520556,216,0 +170744520605,217,0 +170744520655,217,0 +170744520704,218,0 +170744520752,218,0 +170744520802,221,0 +170744520850,222,0 +170744520898,224,0 +170744520946,226,0 +170744520995,229,0 +170744521043,231,0 +170744521091,234,0 +170744521141,235,0 +170744521189,235,0 +170744521237,236,0 +170744521286,237,0 +170744521334,239,0 +170744521382,236,0 +170744521432,238,0 +170744521480,222,0 +170744521528,217,0 +170744521575,215,0 +170744521623,215,0 +170744521673,215,0 +170744521723,216,0 +170744521772,216,0 +170744521820,217,0 +170744521869,218,0 +170744521919,219,0 +170744521967,221,0 +170744522015,224,0 +170744522064,227,0 +170744522112,228,0 +170744522162,230,0 +170744522210,233,0 +170744522258,234,0 +170744522307,234,0 +170744522355,237,0 +170744522403,237,0 +170744522451,237,0 +170744522499,238,0 +170744522549,239,0 +170744522597,223,0 +170744522645,216,0 +170744522692,215,0 +170744522742,215,0 +170744522792,216,0 +170744522839,217,0 +170744522888,217,0 +170744522937,218,0 +170744522987,218,0 +170744523035,222,0 +170744523083,224,0 +170744523132,225,0 +170744523182,227,0 +170744523231,230,0 +170744523281,233,0 +170744523329,233,0 +170744523378,234,0 +170744523428,235,0 +170744523476,237,0 +170744523525,240,0 +170744523573,239,0 +170744523621,238,0 +170744523669,240,0 +170744523718,219,0 +170744523766,216,0 +170744523814,216,0 +170744523862,216,0 +170744523910,216,0 +170744523960,215,0 +170744524007,215,0 +170744524055,216,0 +170744524103,217,0 +170744524153,218,0 +170744524201,220,0 +170744524249,222,0 +170744524297,224,0 +170744524346,227,0 +170744524396,229,0 +170744524444,232,0 +170744524492,231,0 +170744524540,233,0 +170744524588,233,0 +170744524636,234,0 +170744524685,234,0 +170744524735,231,0 +170744524784,239,0 +170744524832,227,0 +170744524880,217,0 +170744524928,216,0 +170744524976,216,0 +170744525024,216,0 +170744525073,216,0 +170744525121,215,0 +170744525169,216,0 +170744525217,217,0 +170744525267,217,0 +170744525315,218,0 +170744525364,221,0 +170744525412,224,0 +170744525460,225,0 +170744525508,228,0 +170744525558,232,0 +170744525606,232,0 +170744525655,233,0 +170744525705,234,0 +170744525753,235,0 +170744525802,236,0 +170744525852,232,0 +170744525900,239,0 +170744525948,239,0 +170744525996,219,0 +170744526044,217,0 +170744526092,217,0 +170744526139,217,0 +170744526189,217,0 +170744526237,217,0 +170744526285,217,0 +170744526334,217,0 +170744526384,217,0 +170744526434,216,0 +170744526483,216,0 +170744526531,217,0 +170744526579,217,0 +170744526629,217,0 +170744526678,217,0 +170744526728,216,0 +170744526777,216,0 +170744526827,218,0 +170744526876,221,0 +170744526926,224,0 +170744526975,237,0 +170744527025,239,0 +170744527073,219,0 +170744527121,216,0 +170744527169,216,0 +170744527217,217,0 +170744527265,217,0 +170744527313,218,0 +170744527361,219,0 +170744527408,220,0 +170744527456,220,0 +170744527504,220,0 +170744527552,221,0 +170744527602,223,0 +170744527651,225,0 +170744527701,228,0 +170744527750,229,0 +170744527798,231,0 +170744527848,232,0 +170744527897,235,0 +170744527945,236,0 +170744527993,234,0 +170744528041,238,0 +170744528089,236,0 +170744528139,239,0 +170744528187,233,0 +170744528235,218,0 +170744528283,216,0 +170744528332,216,0 +170744528382,216,0 +170744528431,216,0 +170744528479,216,0 +170744528527,216,0 +170744528577,216,0 +170744528626,217,0 +170744528674,218,0 +170744528722,218,0 +170744528770,219,0 +170744528820,219,0 +170744528869,222,0 +170744528919,226,0 +170744528968,228,0 +170744529018,229,0 +170744529066,233,0 +170744529114,233,0 +170744529162,235,0 +170744529210,232,0 +170744529258,240,0 +170744529306,231,0 +170744529354,217,0 +170744529403,216,0 +170744529451,216,0 +170744529499,216,0 +170744529549,215,0 +170744529597,215,0 +170744529645,216,0 +170744529692,217,0 +170744529740,217,0 +170744529788,218,0 +170744529838,220,0 +170744529886,219,0 +170744529934,222,0 +170744529982,224,0 +170744530030,227,0 +170744530078,228,0 +170744530126,230,0 +170744530175,232,0 +170744530223,234,0 +170744530271,235,0 +170744530319,231,0 +170744530369,238,0 +170744530418,235,0 +170744530466,216,0 +170744530514,216,0 +170744530562,215,0 +170744530610,215,0 +170744530658,216,0 +170744530707,216,0 +170744530755,218,0 +170744530805,218,0 +170744530853,219,0 +170744530902,224,0 +170744530950,220,0 +170744531000,222,0 +170744531048,225,0 +170744531096,227,0 +170744531145,229,0 +170744531195,231,0 +170744531244,234,0 +170744531294,235,0 +170744531342,239,0 +170744531390,236,0 +170744531438,237,0 +170744531485,239,0 +170744531535,234,0 +170744531583,217,0 +170744531631,215,0 +170744531680,215,0 +170744531730,215,0 +170744531778,215,0 +170744531828,215,0 +170744531877,216,0 +170744531927,217,0 +170744531975,218,0 +170744532023,218,0 +170744532072,219,0 +170744532122,220,0 +170744532170,222,0 +170744532218,224,0 +170744532265,228,0 +170744532313,228,0 +170744532361,231,0 +170744532411,231,0 +170744532460,235,0 +170744532508,237,0 +170744532558,237,0 +170744532606,237,0 +170744532655,237,0 +170744532705,219,0 +170744532753,216,0 +170744532802,215,0 +170744532850,216,0 +170744532898,215,0 +170744532948,215,0 +170744532996,217,0 +170744533045,218,0 +170744533095,218,0 +170744533143,219,0 +170744533191,220,0 +170744533240,220,0 +170744533288,223,0 +170744533336,226,0 +170744533384,228,0 +170744533432,231,0 +170744533480,232,0 +170744533528,233,0 +170744533575,235,0 +170744533623,236,0 +170744533673,234,0 +170744533722,239,0 +170744533770,236,0 +170744533820,217,0 +170744533868,216,0 +170744533917,215,0 +170744533965,215,0 +170744534015,215,0 +170744534063,215,0 +170744534111,216,0 +170744534159,215,0 +170744534207,216,0 +170744534256,217,0 +170744534304,217,0 +170744534352,218,0 +170744534400,221,0 +170744534448,223,0 +170744534497,225,0 +170744534545,229,0 +170744534595,231,0 +170744534644,231,0 +170744534692,233,0 +170744534740,235,0 +170744534788,235,0 +170744534838,238,0 +170744534887,237,0 +170744534935,217,0 +170744534985,215,0 +170744535034,216,0 +170744535082,216,0 +170744535132,215,0 +170744535181,215,0 +170744535229,216,0 +170744535277,215,0 +170744535325,216,0 +170744535375,217,0 +170744535424,217,0 +170744535472,218,0 +170744535522,219,0 +170744535571,222,0 +170744535621,224,0 +170744535669,226,0 +170744535716,228,0 +170744535764,230,0 +170744535812,234,0 +170744535860,234,0 +170744535908,235,0 +170744535956,237,0 +170744536004,238,0 +170744536052,220,0 +170744536102,215,0 +170744536150,215,0 +170744536199,215,0 +170744536247,215,0 +170744536295,215,0 +170744536343,216,0 +170744536391,217,0 +170744536439,217,0 +170744536489,219,0 +170744536538,219,0 +170744536586,220,0 +170744536634,222,0 +170744536682,224,0 +170744536730,226,0 +170744536779,229,0 +170744536827,230,0 +170744536875,232,0 +170744536923,235,0 +170744536973,235,0 +170744537020,236,0 +170744537068,238,0 +170744537116,238,0 +170744537166,221,0 +170744537214,216,0 +170744537263,216,0 +170744537311,216,0 +170744537359,216,0 +170744537409,215,0 +170744537457,215,0 +170744537506,216,0 +170744537554,216,0 +170744537602,216,0 +170744537650,217,0 +170744537700,218,0 +170744537748,219,0 +170744537796,224,0 +170744537845,225,0 +170744537895,225,0 +170744537943,230,0 +170744537992,230,0 +170744538040,231,0 +170744538088,234,0 +170744538138,236,0 +170744538186,237,0 +170744538235,238,0 +170744538283,218,0 +170744538332,215,0 +170744538382,215,0 +170744538430,215,0 +170744538478,215,0 +170744538526,216,0 +170744538573,216,0 +170744538621,217,0 +170744538669,218,0 +170744538717,218,0 +170744538767,219,0 +170744538814,220,0 +170744538864,222,0 +170744538912,225,0 +170744538960,228,0 +170744539009,228,0 +170744539059,230,0 +170744539107,233,0 +170744539155,233,0 +170744539203,235,0 +170744539252,236,0 +170744539302,238,0 +170744539350,239,0 +170744539398,220,0 +170744539446,215,0 +170744539493,215,0 +170744539541,215,0 +170744539589,215,0 +170744539637,215,0 +170744539687,215,0 +170744539735,215,0 +170744539783,217,0 +170744539832,217,0 +170744539880,217,0 +170744539928,219,0 +170744539978,219,0 +170744540026,221,0 +170744540073,224,0 +170744540122,226,0 +170744540171,229,0 +170744540221,231,0 +170744540270,234,0 +170744540318,234,0 +170744540366,236,0 +170744540416,237,0 +170744540464,239,0 +170744540512,221,0 +170744540559,216,0 +170744540607,215,0 +170744540655,215,0 +170744540705,216,0 +170744540753,216,0 +170744540802,217,0 +170744540850,217,0 +170744540900,218,0 +170744540949,219,0 +170744540997,220,0 +170744541045,221,0 +170744541093,223,0 +170744541141,225,0 +170744541191,229,0 +170744541239,230,0 +170744541288,232,0 +170744541338,234,0 +170744541386,236,0 +170744541435,237,0 +170744541483,238,0 +170744541531,239,0 +170744541579,239,0 +170744541627,221,0 +170744541675,216,0 +170744541723,215,0 +170744541771,216,0 +170744541819,217,0 +170744541869,218,0 +170744541916,218,0 +170744541966,219,0 +170744542015,220,0 +170744542063,221,0 +170744542113,220,0 +170744542162,223,0 +170744542212,226,0 +170744542260,229,0 +170744542308,231,0 +170744542356,232,0 +170744542404,234,0 +170744542452,234,0 +170744542500,232,0 +170744542548,236,0 +170744542595,238,0 +170744542643,238,0 +170744542693,239,0 +170744542741,221,0 +170744542790,216,0 +170744542838,215,0 +170744542886,216,0 +170744542934,215,0 +170744542982,216,0 +170744543032,217,0 +170744543080,217,0 +170744543129,218,0 +170744543179,219,0 +170744543228,219,0 +170744543276,222,0 +170744543324,223,0 +170744543372,226,0 +170744543420,229,0 +170744543468,231,0 +170744543516,231,0 +170744543564,233,0 +170744543614,236,0 +170744543663,235,0 +170744543711,237,0 +170744543760,233,0 +170744543810,240,0 +170744543858,229,0 +170744543906,217,0 +170744543954,215,0 +170744544002,216,0 +170744544050,215,0 +170744544099,216,0 +170744544147,216,0 +170744544197,218,0 +170744544246,217,0 +170744544294,218,0 +170744544342,219,0 +170744544390,219,0 +170744544438,220,0 +170744544487,224,0 +170744544537,227,0 +170744544585,231,0 +170744544633,232,0 +170744544682,232,0 +170744544732,235,0 +170744544781,234,0 +170744544829,236,0 +170744544877,237,0 +170744544925,239,0 +170744544973,221,0 +170744545021,216,0 +170744545069,215,0 +170744545119,215,0 +170744545168,216,0 +170744545216,217,0 +170744545264,217,0 +170744545314,218,0 +170744545363,219,0 +170744545411,219,0 +170744545459,220,0 +170744545507,222,0 +170744545557,226,0 +170744545605,226,0 +170744545652,228,0 +170744545700,232,0 +170744545750,234,0 +170744545798,233,0 +170744545846,237,0 +170744545894,239,0 +170744545942,237,0 +170744545991,234,0 +170744546039,240,0 +170744546089,229,0 +170744546137,217,0 +170744546185,216,0 +170744546233,216,0 +170744546282,216,0 +170744546332,216,0 +170744546380,217,0 +170744546429,217,0 +170744546477,218,0 +170744546527,219,0 +170744546576,220,0 +170744546624,219,0 +170744546672,223,0 +170744546722,225,0 +170744546770,227,0 +170744546818,244,0 +170744546866,230,0 +170744546914,233,0 +170744546963,234,0 +170744547013,235,0 +170744547061,237,0 +170744547109,236,0 +170744547158,239,0 +170744547206,226,0 +170744547256,216,0 +170744547303,215,0 +170744547353,215,0 +170744547403,216,0 +170744547451,216,0 +170744547499,217,0 +170744547547,218,0 +170744547596,218,0 +170744547644,220,0 +170744547692,220,0 +170744547740,221,0 +170744547788,224,0 +170744547836,225,0 +170744547884,228,0 +170744547933,231,0 +170744547981,232,0 +170744548031,233,0 +170744548080,234,0 +170744548128,236,0 +170744548178,237,0 +170744548226,234,0 +170744548275,239,0 +170744548323,236,0 +170744548373,217,0 +170744548421,215,0 +170744548470,215,0 +170744548518,215,0 +170744548566,215,0 +170744548616,215,0 +170744548664,215,0 +170744548713,215,0 +170744548761,215,0 +170744548811,215,0 +170744548860,215,0 +170744548908,216,0 +170744548956,217,0 +170744549006,220,0 +170744549055,223,0 +170744549105,225,0 +170744549152,227,0 +170744549200,229,0 +170744549248,230,0 +170744549298,232,0 +170744549346,235,0 +170744549394,239,0 +170744549442,222,0 +170744549491,216,0 +170744549539,215,0 +170744549587,215,0 +170744549637,215,0 +170744549685,216,0 +170744549734,216,0 +170744549782,217,0 +170744549830,217,0 +170744549880,218,0 +170744549928,219,0 +170744549975,220,0 +170744550025,222,0 +170744550073,224,0 +170744550122,227,0 +170744550170,229,0 +170744550218,231,0 +170744550266,232,0 +170744550316,233,0 +170744550365,235,0 +170744550413,236,0 +170744550461,232,0 +170744550511,239,0 +170744550559,230,0 +170744550607,217,0 +170744550655,215,0 +170744550705,215,0 +170744550753,215,0 +170744550802,215,0 +170744550850,215,0 +170744550898,216,0 +170744550946,215,0 +170744550994,216,0 +170744551042,217,0 +170744551090,217,0 +170744551139,218,0 +170744551187,219,0 +170744551235,220,0 +170744551283,222,0 +170744551330,227,0 +170744551380,226,0 +170744551428,229,0 +170744551476,232,0 +170744551524,232,0 +170744551572,234,0 +170744551621,239,0 +170744551671,238,0 +170744551720,218,0 +170744551768,215,0 +170744551816,215,0 +170744551866,215,0 +170744551914,215,0 +170744551962,216,0 +170744552010,216,0 +170744552058,217,0 +170744552107,218,0 +170744552155,219,0 +170744552203,220,0 +170744552251,220,0 +170744552299,223,0 +170744552347,230,0 +170744552395,228,0 +170744552443,229,0 +170744552491,231,0 +170744552540,232,0 +170744552590,233,0 +170744552638,235,0 +170744552686,236,0 +170744552735,238,0 +170744552785,239,0 +170744552834,218,0 +170744552882,215,0 +170744552932,215,0 +170744552981,215,0 +170744553029,215,0 +170744553079,215,0 +170744553127,215,0 +170744553176,215,0 +170744553224,216,0 +170744553272,216,0 +170744553320,220,0 +170744553368,218,0 +170744553416,219,0 +170744553464,222,0 +170744553512,222,0 +170744553560,226,0 +170744553607,227,0 +170744553657,229,0 +170744553705,231,0 +170744553753,232,0 +170744553801,235,0 +170744553849,237,0 +170744553898,238,0 +170744553946,219,0 +170744553994,215,0 +170744554042,215,0 +170744554091,215,0 +170744554139,215,0 +170744554189,215,0 +170744554236,215,0 +170744554284,215,0 +170744554332,216,0 +170744554380,216,0 +170744554430,217,0 +170744554478,218,0 +170744554526,221,0 +170744554574,224,0 +170744554622,225,0 +170744554671,227,0 +170744554719,230,0 +170744554767,231,0 +170744554815,234,0 +170744554863,233,0 +170744554913,233,0 +170744554961,237,0 +170744555009,238,0 +170744555057,223,0 +170744555104,218,0 +170744555152,218,0 +170744555200,218,0 +170744555248,217,0 +170744555298,218,0 +170744555346,218,0 +170744555394,218,0 +170744555443,216,0 +170744555493,217,0 +170744555542,217,0 +170744555590,219,0 +170744555638,220,0 +170744555686,222,0 +170744555736,225,0 +170744555784,227,0 +170744555833,230,0 +170744555883,232,0 +170744555932,233,0 +170744555982,239,0 +170744556031,235,0 +170744556079,238,0 +170744556127,239,0 +170744556175,221,0 +170744556223,216,0 +170744556273,215,0 +170744556322,216,0 +170744556372,216,0 +170744556419,216,0 +170744556467,216,0 +170744556517,216,0 +170744556565,215,0 +170744556613,215,0 +170744556661,216,0 +170744556709,216,0 +170744556758,218,0 +170744556806,218,0 +170744556854,220,0 +170744556902,223,0 +170744556950,225,0 +170744556998,227,0 +170744557048,228,0 +170744557097,231,0 +170744557147,233,0 +170744557196,236,0 +170744557244,237,0 +170744557292,223,0 +170744557340,220,0 +170744557388,219,0 +170744557436,218,0 +170744557484,219,0 +170744557531,218,0 +170744557579,217,0 +170744557627,216,0 +170744557675,217,0 +170744557723,216,0 +170744557771,216,0 +170744557819,217,0 +170744557867,218,0 +170744557917,219,0 +170744557966,222,0 +170744558016,226,0 +170744558064,227,0 +170744558111,228,0 +170744558159,231,0 +170744558207,231,0 +170744558255,233,0 +170744558305,238,0 +170744558353,238,0 +170744558402,219,0 +170744558452,216,0 +170744558501,215,0 +170744558549,215,0 +170744558597,215,0 +170744558647,215,0 +170744558696,215,0 +170744558744,215,0 +170744558794,216,0 +170744558843,217,0 +170744558893,218,0 +170744558941,218,0 +170744558989,220,0 +170744559037,220,0 +170744559086,222,0 +170744559134,224,0 +170744559184,227,0 +170744559232,229,0 +170744559281,230,0 +170744559329,232,0 +170744559377,234,0 +170744559425,235,0 +170744559473,239,0 +170744559521,226,0 +170744559570,216,0 +170744559620,215,0 +170744559668,215,0 +170744559717,215,0 +170744559765,215,0 +170744559815,215,0 +170744559863,215,0 +170744559912,215,0 +170744559960,215,0 +170744560010,216,0 +170744560058,218,0 +170744560107,218,0 +170744560157,219,0 +170744560205,222,0 +170744560253,225,0 +170744560302,228,0 +170744560350,229,0 +170744560398,230,0 +170744560448,231,0 +170744560496,233,0 +170744560543,238,0 +170744560591,239,0 +170744560641,219,0 +170744560689,216,0 +170744560737,215,0 +170744560785,216,0 +170744560834,217,0 +170744560882,218,0 +170744560930,220,0 +170744560978,219,0 +170744561026,220,0 +170744561074,221,0 +170744561124,222,0 +170744561172,221,0 +170744561220,223,0 +170744561269,226,0 +170744561317,229,0 +170744561367,231,0 +170744561415,233,0 +170744561463,233,0 +170744561511,235,0 +170744561559,236,0 +170744561607,237,0 +170744561656,237,0 +170744561704,239,0 +170744561754,219,0 +170744561803,216,0 +170744561851,215,0 +170744561899,215,0 +170744561947,215,0 +170744561996,215,0 +170744562044,215,0 +170744562092,215,0 +170744562142,215,0 +170744562190,215,0 +170744562237,216,0 +170744562287,217,0 +170744562335,217,0 +170744562383,218,0 +170744562431,220,0 +170744562479,222,0 +170744562528,224,0 +170744562576,227,0 +170744562625,229,0 +170744562675,231,0 +170744562723,232,0 +170744562772,232,0 +170744562822,240,0 +170744562870,230,0 +170744562918,217,0 +170744562966,216,0 +170744563015,215,0 +170744563065,215,0 +170744563113,215,0 +170744563162,215,0 +170744563212,215,0 +170744563260,215,0 +170744563309,216,0 +170744563357,217,0 +170744563405,218,0 +170744563453,218,0 +170744563503,220,0 +170744563552,222,0 +170744563600,225,0 +170744563650,227,0 +170744563699,228,0 +170744563747,231,0 +170744563795,230,0 +170744563845,233,0 +170744563894,233,0 +170744563942,238,0 +170744563991,230,0 +170744564039,217,0 +170744564087,215,0 +170744564135,215,0 +170744564183,215,0 +170744564231,215,0 +170744564279,216,0 +170744564327,216,0 +170744564375,217,0 +170744564423,218,0 +170744564470,219,0 +170744564518,219,0 +170744564566,221,0 +170744564614,223,0 +170744564662,227,0 +170744564710,229,0 +170744564759,232,0 +170744564807,232,0 +170744564857,233,0 +170744564904,234,0 +170744564952,235,0 +170744565000,236,0 +170744565048,240,0 +170744565096,239,0 +170744565144,218,0 +170744565192,216,0 +170744565240,216,0 +170744565289,216,0 +170744565337,216,0 +170744565387,216,0 +170744565434,217,0 +170744565482,217,0 +170744565530,218,0 +170744565578,219,0 +170744565626,219,0 +170744565674,221,0 +170744565723,222,0 +170744565771,225,0 +170744565819,228,0 +170744565867,228,0 +170744565915,232,0 +170744565964,233,0 +170744566012,235,0 +170744566062,236,0 +170744566110,238,0 +170744566158,238,0 +170744566207,237,0 +170744566255,220,0 +170744566303,216,0 +170744566352,216,0 +170744566400,216,0 +170744566448,217,0 +170744566496,218,0 +170744566544,219,0 +170744566592,219,0 +170744566640,221,0 +170744566689,220,0 +170744566737,222,0 +170744566785,225,0 +170744566833,226,0 +170744566881,229,0 +170744566929,231,0 +170744566977,231,0 +170744567025,236,0 +170744567073,236,0 +170744567122,237,0 +170744567172,236,0 +170744567219,239,0 +170744567267,238,0 +170744567315,239,0 +170744567363,222,0 +170744567413,216,0 +170744567460,216,0 +170744567508,216,0 +170744567556,216,0 +170744567604,217,0 +170744567652,217,0 +170744567700,218,0 +170744567748,219,0 +170744567796,221,0 +170744567843,220,0 +170744567891,222,0 +170744567939,224,0 +170744567987,227,0 +170744568035,230,0 +170744568083,235,0 +170744568131,233,0 +170744568179,234,0 +170744568227,235,0 +170744568275,236,0 +170744568323,237,0 +170744568371,234,0 +170744568418,238,0 +170744568466,224,0 +170744568514,217,0 +170744568564,217,0 +170744568612,217,0 +170744568659,219,0 +170744568707,219,0 +170744568755,219,0 +170744568803,220,0 +170744568851,221,0 +170744568899,224,0 +170744568947,225,0 +170744568994,227,0 +170744569042,228,0 +170744569090,229,0 +170744569138,233,0 +170744569186,236,0 +170744569234,235,0 +170744569282,236,0 +170744569329,238,0 +170744569379,237,0 +170744569427,240,0 +170744569475,239,0 +170744569522,240,0 +170744569570,239,0 +170744569618,218,0 +170744569668,216,0 +170744569717,216,0 +170744569765,217,0 +170744569813,218,0 +170744569861,218,0 +170744569909,218,0 +170744569957,220,0 +170744570004,220,0 +170744570052,221,0 +170744570100,223,0 +170744570150,225,0 +170744570198,227,0 +170744570245,231,0 +170744570293,232,0 +170744570341,235,0 +170744570389,235,0 +170744570437,237,0 +170744570485,237,0 +170744570533,241,0 +170744570581,239,0 +170744570629,241,0 +170744570677,240,0 +170744570724,221,0 +170744570774,216,0 +170744570822,216,0 +170744570870,217,0 +170744570919,217,0 +170744570969,218,0 +170744571017,218,0 +170744571064,220,0 +170744571112,220,0 +170744571160,221,0 +170744571210,222,0 +170744571258,223,0 +170744571306,231,0 +170744571354,229,0 +170744571402,232,0 +170744571451,233,0 +170744571499,235,0 +170744571547,237,0 +170744571595,237,0 +170744571643,237,0 +170744571692,239,0 +170744571740,239,0 +170744571790,239,0 +170744571838,221,0 +170744571886,215,0 +170744571933,215,0 +170744571983,215,0 +170744572031,215,0 +170744572080,216,0 +170744572128,217,0 +170744572176,217,0 +170744572224,218,0 +170744572272,218,0 +170744572321,220,0 +170744572369,220,0 +170744572417,222,0 +170744572465,224,0 +170744572513,228,0 +170744572561,230,0 +170744572608,232,0 +170744572656,233,0 +170744572704,235,0 +170744572752,237,0 +170744572802,239,0 +170744572851,240,0 +170744572899,240,0 +170744572947,221,0 +170744572997,217,0 +170744573045,216,0 +170744573093,216,0 +170744573140,216,0 +170744573188,216,0 +170744573236,216,0 +170744573284,217,0 +170744573334,218,0 +170744573382,218,0 +170744573430,219,0 +170744573479,218,0 +170744573527,220,0 +170744573575,223,0 +170744573623,224,0 +170744573671,227,0 +170744573721,229,0 +170744573769,232,0 +170744573817,232,0 +170744573865,234,0 +170744573913,234,0 +170744573962,239,0 +170744574012,240,0 +170744574059,219,0 +170744574107,216,0 +170744574155,215,0 +170744574203,215,0 +170744574251,216,0 +170744574299,215,0 +170744574349,215,0 +170744574397,215,0 +170744574445,215,0 +170744574493,215,0 +170744574541,216,0 +170744574589,229,0 +170744574638,217,0 +170744574688,218,0 +170744574735,219,0 +170744574785,221,0 +170744574833,223,0 +170744574881,225,0 +170744574929,228,0 +170744574978,230,0 +170744575026,232,0 +170744575076,233,0 +170744575125,238,0 +170744575175,234,0 +170744575223,217,0 +170744575271,216,0 +170744575319,216,0 +170744575367,216,0 +170744575415,217,0 +170744575463,217,0 +170744575513,218,0 +170744575561,219,0 +170744575610,220,0 +170744575658,221,0 +170744575706,221,0 +170744575756,222,0 +170744575805,225,0 +170744575853,227,0 +170744575903,230,0 +170744575951,231,0 +170744576000,236,0 +170744576048,235,0 +170744576098,236,0 +170744576146,237,0 +170744576194,234,0 +170744576243,240,0 +170744576293,226,0 +170744576341,217,0 +170744576389,215,0 +170744576438,215,0 +170744576486,215,0 +170744576534,215,0 +170744576583,215,0 +170744576633,215,0 +170744576683,216,0 +170744576732,215,0 +170744576780,215,0 +170744576828,215,0 +170744576876,215,0 +170744576924,216,0 +170744576973,218,0 +170744577023,218,0 +170744577073,219,0 +170744577120,223,0 +170744577170,226,0 +170744577218,229,0 +170744577266,230,0 +170744577315,230,0 +170744577365,239,0 +170744577413,237,0 +170744577462,225,0 +170744577510,225,0 +170744577560,227,0 +170744577608,229,0 +170744577657,226,0 +170744577707,224,0 +170744577755,223,0 +170744577802,223,0 +170744577850,223,0 +170744577898,224,0 +170744577946,223,0 +170744577996,222,0 +170744578044,222,0 +170744578093,222,0 +170744578142,216,0 +170744578190,216,0 +170744578238,217,0 +170744578286,218,0 +170744578334,218,0 +170744578382,220,0 +170744578430,220,0 +170744578480,220,0 +170744578528,222,0 +170744578576,223,0 +170744578625,226,0 +170744578673,228,0 +170744578721,231,0 +170744578769,231,0 +170744578819,234,0 +170744578868,233,0 +170744578916,236,0 +170744578964,238,0 +170744579012,238,0 +170744579060,239,0 +170744579108,221,0 +170744579156,216,0 +170744579204,216,0 +170744579253,216,0 +170744579301,216,0 +170744579351,216,0 +170744579399,216,0 +170744579448,215,0 +170744579498,216,0 +170744579546,216,0 +170744579594,217,0 +170744579642,218,0 +170744579691,218,0 +170744579739,219,0 +170744579787,222,0 +170744579835,223,0 +170744579883,225,0 +170744579933,227,0 +170744579981,232,0 +170744580029,233,0 +170744580078,235,0 +170744580126,240,0 +170744580176,242,0 +170744580225,222,0 +170744580273,216,0 +170744580321,216,0 +170744580371,216,0 +170744580420,216,0 +170744580468,216,0 +170744580518,217,0 +170744580567,217,0 +170744580617,217,0 +170744580665,218,0 +170744580713,219,0 +170744580762,220,0 +170744580812,222,0 +170744580860,223,0 +170744580909,228,0 +170744580957,229,0 +170744581005,229,0 +170744581055,233,0 +170744581103,233,0 +170744581151,236,0 +170744581200,237,0 +170744581250,238,0 +170744581298,238,0 +170744581347,220,0 +170744581397,215,0 +170744581445,215,0 +170744581494,215,0 +170744581542,215,0 +170744581590,215,0 +170744581640,216,0 +170744581688,216,0 +170744581737,217,0 +170744581785,217,0 +170744581835,218,0 +170744581884,219,0 +170744581934,222,0 +170744581982,224,0 +170744582030,226,0 +170744582079,229,0 +170744582129,231,0 +170744582177,233,0 +170744582226,234,0 +170744582274,236,0 +170744582322,236,0 +170744582370,238,0 +170744582418,241,0 +170744582467,220,0 +170744582515,216,0 +170744582565,215,0 +170744582613,216,0 +170744582662,217,0 +170744582712,217,0 +170744582761,218,0 +170744582811,218,0 +170744582860,219,0 +170744582908,220,0 +170744582958,222,0 +170744583007,227,0 +170744583057,228,0 +170744583105,229,0 +170744583153,232,0 +170744583202,233,0 +170744583252,236,0 +170744583302,235,0 +170744583350,239,0 +170744583399,238,0 +170744583447,239,0 +170744583497,239,0 +170744583544,238,0 +170744583594,220,0 +170744583643,216,0 +170744583693,215,0 +170744583741,216,0 +170744583789,216,0 +170744583838,217,0 +170744583886,218,0 +170744583936,217,0 +170744583984,219,0 +170744584032,222,0 +170744584081,223,0 +170744584129,225,0 +170744584177,228,0 +170744584225,230,0 +170744584273,232,0 +170744584321,235,0 +170744584370,236,0 +170744584418,236,0 +170744584468,236,0 +170744584517,238,0 +170744584565,239,0 +170744584613,238,0 +170744584663,238,0 +170744584711,221,0 +170744584760,216,0 +170744584808,215,0 +170744584856,216,0 +170744584904,216,0 +170744584954,217,0 +170744585001,217,0 +170744585051,218,0 +170744585100,219,0 +170744585148,220,0 +170744585198,223,0 +170744585247,225,0 +170744585295,227,0 +170744585345,229,0 +170744585393,232,0 +170744585441,232,0 +170744585489,235,0 +170744585537,237,0 +170744585585,237,0 +170744585633,238,0 +170744585681,237,0 +170744585729,238,0 +170744585778,240,0 +170744585826,219,0 +170744585876,215,0 +170744585925,215,0 +170744585975,215,0 +170744586024,215,0 +170744586072,215,0 +170744586122,216,0 +170744586170,217,0 +170744586219,217,0 +170744586267,218,0 +170744586317,219,0 +170744586365,221,0 +170744586413,223,0 +170744586460,226,0 +170744586508,228,0 +170744586558,230,0 +170744586606,233,0 +170744586654,234,0 +170744586703,234,0 +170744586751,235,0 +170744586801,236,0 +170744586849,239,0 +170744586897,239,0 +170744586945,221,0 +170744586993,215,0 +170744587040,216,0 +170744587088,216,0 +170744587136,216,0 +170744587184,216,0 +170744587232,216,0 +170744587280,217,0 +170744587329,217,0 +170744587377,218,0 +170744587425,220,0 +170744587473,221,0 +170744587522,222,0 +170744587570,226,0 +170744587618,228,0 +170744587666,229,0 +170744587714,232,0 +170744587763,233,0 +170744587811,233,0 +170744587861,235,0 +170744587909,238,0 +170744587957,237,0 +170744588005,243,0 +170744588054,221,0 +170744588102,215,0 +170744588150,215,0 +170744588200,215,0 +170744588249,215,0 +170744588297,216,0 +170744588345,224,0 +170744588395,217,0 +170744588444,217,0 +170744588492,218,0 +170744588540,219,0 +170744588588,220,0 +170744588638,222,0 +170744588686,225,0 +170744588734,228,0 +170744588781,230,0 +170744588831,232,0 +170744588881,234,0 +170744588930,235,0 +170744588980,236,0 +170744589029,237,0 +170744589077,238,0 +170744589127,237,0 +170744589176,220,0 +170744589224,216,0 +170744589272,215,0 +170744589320,215,0 +170744589370,215,0 +170744589419,215,0 +170744589469,216,0 +170744589517,215,0 +170744589565,215,0 +170744589613,216,0 +170744589660,216,0 +170744589710,218,0 +170744589759,218,0 +170744589807,219,0 +170744589857,223,0 +170744589905,224,0 +170744589953,227,0 +170744590002,230,0 +170744590051,232,0 +170744590099,231,0 +170744590147,233,0 +170744590195,239,0 +170744590243,239,0 +170744590291,221,0 +170744590339,216,0 +170744590387,215,0 +170744590435,216,0 +170744590483,215,0 +170744590531,215,0 +170744590579,216,0 +170744590626,216,0 +170744590676,215,0 +170744590724,216,0 +170744590772,216,0 +170744590821,217,0 +170744590869,217,0 +170744590917,218,0 +170744590965,221,0 +170744591013,223,0 +170744591060,224,0 +170744591108,229,0 +170744591156,231,0 +170744591206,232,0 +170744591254,234,0 +170744591302,232,0 +170744591351,239,0 +170744591399,234,0 +170744591447,217,0 +170744591495,216,0 +170744591542,216,0 +170744591590,215,0 +170744591638,216,0 +170744591686,216,0 +170744591734,217,0 +170744591782,218,0 +170744591830,218,0 +170744591878,219,0 +170744591925,221,0 +170744591973,221,0 +170744592021,223,0 +170744592069,226,0 +170744592117,228,0 +170744592165,232,0 +170744592214,233,0 +170744592262,233,0 +170744592310,235,0 +170744592358,237,0 +170744592406,239,0 +170744592454,239,0 +170744592502,238,0 +170744592550,219,0 +170744592599,215,0 +170744592647,215,0 +170744592695,215,0 +170744592743,216,0 +170744592791,217,0 +170744592841,217,0 +170744592890,218,0 +170744592938,219,0 +170744592986,219,0 +170744593034,221,0 +170744593082,223,0 +170744593130,226,0 +170744593177,227,0 +170744593225,230,0 +170744593273,232,0 +170744593321,233,0 +170744593371,236,0 +170744593418,236,0 +170744593466,237,0 +170744593514,238,0 +170744593562,239,0 +170744593610,239,0 +170744593660,220,0 +170744593708,215,0 +170744593757,215,0 +170744593805,215,0 +170744593853,215,0 +170744593901,215,0 +170744593950,215,0 +170744594000,216,0 +170744594048,216,0 +170744594097,217,0 +170744594145,218,0 +170744594195,218,0 +170744594243,219,0 +170744594290,222,0 +170744594340,225,0 +170744594389,227,0 +170744594437,229,0 +170744594487,231,0 +170744594537,233,0 +170744594586,234,0 +170744594634,235,0 +170744594682,238,0 +170744594730,239,0 +170744594778,220,0 +170744594826,216,0 +170744594875,216,0 +170744594923,215,0 +170744594971,215,0 +170744595019,215,0 +170744595067,215,0 +170744595115,215,0 +170744595165,216,0 +170744595213,217,0 +170744595261,218,0 +170744595309,218,0 +170744595358,219,0 +170744595408,221,0 +170744595456,223,0 +170744595504,226,0 +170744595553,228,0 +170744595603,230,0 +170744595652,233,0 +170744595702,234,0 +170744595751,235,0 +170744595799,238,0 +170744595847,239,0 +170744595895,221,0 +170744595943,216,0 +170744595991,215,0 +170744596039,216,0 +170744596086,217,0 +170744596134,217,0 +170744596182,217,0 +170744596232,218,0 +170744596280,218,0 +170744596329,220,0 +170744596377,220,0 +170744596427,222,0 +170744596475,224,0 +170744596523,226,0 +170744596571,228,0 +170744596619,230,0 +170744596667,232,0 +170744596716,234,0 +170744596766,235,0 +170744596815,237,0 +170744596865,238,0 +170744596914,239,0 +170744596962,237,0 +170744597010,220,0 +170744597058,216,0 +170744597106,216,0 +170744597156,216,0 +170744597204,216,0 +170744597253,216,0 +170744597303,216,0 +170744597352,215,0 +170744597400,216,0 +170744597448,217,0 +170744597496,218,0 +170744597545,218,0 +170744597593,221,0 +170744597643,223,0 +170744597691,226,0 +170744597739,228,0 +170744597788,234,0 +170744597836,231,0 +170744597884,232,0 +170744597932,231,0 +170744597979,236,0 +170744598027,238,0 +170744598077,238,0 +170744598125,221,0 +170744598172,215,0 +170744598220,215,0 +170744598270,216,0 +170744598318,215,0 +170744598366,215,0 +170744598414,215,0 +170744598462,215,0 +170744598509,216,0 +170744598557,217,0 +170744598605,217,0 +170744598655,219,0 +170744598702,219,0 +170744598750,221,0 +170744598798,224,0 +170744598846,227,0 +170744598894,229,0 +170744598942,230,0 +170744598991,232,0 +170744599039,233,0 +170744599087,234,0 +170744599135,231,0 +170744599183,239,0 +170744599231,237,0 +170744599279,217,0 +170744599327,215,0 +170744599376,215,0 +170744599424,215,0 +170744599472,215,0 +170744599520,216,0 +170744599568,217,0 +170744599615,218,0 +170744599663,218,0 +170744599713,219,0 +170744599762,220,0 +170744599810,222,0 +170744599858,226,0 +170744599908,235,0 +170744599956,229,0 +170744600004,231,0 +170744600052,233,0 +170744600100,234,0 +170744600148,235,0 +170744600197,236,0 +170744600245,238,0 +170744600293,238,0 +170744600341,237,0 +170744600391,219,0 +170744600439,215,0 +170744600487,215,0 +170744600535,215,0 +170744600582,215,0 +170744600632,215,0 +170744600682,215,0 +170744600730,215,0 +170744600779,216,0 +170744600829,216,0 +170744600878,217,0 +170744600928,219,0 +170744600976,221,0 +170744601023,223,0 +170744601071,226,0 +170744601119,228,0 +170744601167,229,0 +170744601216,232,0 +170744601264,233,0 +170744601312,235,0 +170744601360,233,0 +170744601408,238,0 +170744601456,239,0 +170744601504,218,0 +170744601552,215,0 +170744601600,215,0 +170744601648,215,0 +170744601697,215,0 +170744601745,215,0 +170744601794,216,0 +170744601842,217,0 +170744601892,218,0 +170744601940,221,0 +170744601989,221,0 +170744602037,223,0 +170744602085,226,0 +170744602133,228,0 +170744602181,230,0 +170744602231,231,0 +170744602279,234,0 +170744602328,235,0 +170744602376,235,0 +170744602425,236,0 +170744602473,238,0 +170744602521,239,0 +170744602569,238,0 +170744602619,219,0 +170744602667,215,0 +170744602715,215,0 +170744602764,215,0 +170744602812,215,0 +170744602860,215,0 +170744602910,215,0 +170744602959,215,0 +170744603007,215,0 +170744603055,215,0 +170744603103,216,0 +170744603151,216,0 +170744603201,217,0 +170744603250,219,0 +170744603300,221,0 +170744603348,224,0 +170744603397,226,0 +170744603445,229,0 +170744603495,229,0 +170744603543,233,0 +170744603592,234,0 +170744603640,238,0 +170744603689,238,0 +170744603737,219,0 +170744603785,216,0 +170744603835,215,0 +170744603884,216,0 +170744603932,217,0 +170744603980,217,0 +170744604028,218,0 +170744604078,219,0 +170744604127,219,0 +170744604177,219,0 +170744604226,221,0 +170744604276,222,0 +170744604324,226,0 +170744604374,228,0 +170744604423,230,0 +170744604471,232,0 +170744604521,234,0 +170744604569,236,0 +170744604618,235,0 +170744604666,238,0 +170744604714,237,0 +170744604762,239,0 +170744604812,240,0 +170744604859,218,0 +170744604909,215,0 +170744604958,216,0 +170744605008,216,0 +170744605058,217,0 +170744605107,217,0 +170744605155,219,0 +170744605205,218,0 +170744605254,220,0 +170744605302,222,0 +170744605352,224,0 +170744605400,227,0 +170744605448,228,0 +170744605497,230,0 +170744605545,232,0 +170744605593,234,0 +170744605643,236,0 +170744605690,237,0 +170744605738,236,0 +170744605786,238,0 +170744605836,236,0 +170744605884,238,0 +170744605932,239,0 +170744605980,219,0 +170744606029,216,0 +170744606077,215,0 +170744606125,215,0 +170744606175,217,0 +170744606224,218,0 +170744606272,218,0 +170744606322,219,0 +170744606370,219,0 +170744606419,219,0 +170744606467,222,0 +170744606517,223,0 +170744606567,224,0 +170744606616,227,0 +170744606666,230,0 +170744606715,232,0 +170744606765,234,0 +170744606813,233,0 +170744606861,236,0 +170744606909,238,0 +170744606956,238,0 +170744607006,240,0 +170744607056,238,0 +170744607104,219,0 +170744607153,215,0 +170744607203,215,0 +170744607252,215,0 +170744607300,215,0 +170744607348,216,0 +170744607397,217,0 +170744607447,217,0 +170744607497,218,0 +170744607545,219,0 +170744607594,221,0 +170744607642,223,0 +170744607690,225,0 +170744607738,228,0 +170744607786,229,0 +170744607835,233,0 +170744607883,233,0 +170744607931,234,0 +170744607979,240,0 +170744608029,237,0 +170744608078,235,0 +170744608126,238,0 +170744608174,238,0 +170744608223,218,0 +170744608273,216,0 +170744608321,215,0 +170744608369,215,0 +170744608418,215,0 +170744608466,215,0 +170744608514,215,0 +170744608562,215,0 +170744608610,215,0 +170744608659,215,0 +170744608707,215,0 +170744608755,216,0 +170744608803,218,0 +170744608853,218,0 +170744608902,221,0 +170744608952,223,0 +170744609001,225,0 +170744609051,226,0 +170744609099,229,0 +170744609147,231,0 +170744609196,231,0 +170744609246,239,0 +170744609295,235,0 +170744609345,217,0 +170744609393,215,0 +170744609441,215,0 +170744609489,215,0 +170744609538,215,0 +170744609588,215,0 +170744609637,216,0 +170744609687,216,0 +170744609736,218,0 +170744609786,218,0 +170744609835,220,0 +170744609883,222,0 +170744609933,224,0 +170744609981,227,0 +170744610029,228,0 +170744610077,230,0 +170744610126,234,0 +170744610176,235,0 +170744610225,236,0 +170744610275,237,0 +170744610323,235,0 +170744610372,239,0 +170744610422,234,0 +170744610470,218,0 +170744610518,217,0 +170744610567,217,0 +170744610615,218,0 +170744610663,218,0 +170744610711,219,0 +170744610759,220,0 +170744610808,221,0 +170744610858,221,0 +170744610908,222,0 +170744610956,223,0 +170744611003,224,0 +170744611053,228,0 +170744611101,230,0 +170744611149,231,0 +170744611198,232,0 +170744611248,236,0 +170744611297,236,0 +170744611345,237,0 +170744611395,236,0 +170744611445,233,0 +170744611492,237,0 +170744611540,235,0 +170744611590,217,0 +170744611638,215,0 +170744611687,216,0 +170744611735,216,0 +170744611783,216,0 +170744611833,217,0 +170744611881,218,0 +170744611929,218,0 +170744611977,219,0 +170744612025,220,0 +170744612075,219,0 +170744612123,221,0 +170744612172,224,0 +170744612222,226,0 +170744612271,228,0 +170744612321,230,0 +170744612369,231,0 +170744612417,232,0 +170744612466,233,0 +170744612516,235,0 +170744612564,239,0 +170744612612,240,0 +170744612661,220,0 +170744612711,216,0 +170744612759,215,0 +170744612808,215,0 +170744612858,215,0 +170744612907,215,0 +170744612955,216,0 +170744613005,215,0 +170744613053,216,0 +170744613102,217,0 +170744613152,218,0 +170744613200,218,0 +170744613248,219,0 +170744613297,221,0 +170744613345,224,0 +170744613395,225,0 +170744613443,228,0 +170744613491,230,0 +170744613539,234,0 +170744613586,232,0 +170744613634,232,0 +170744613682,231,0 +170744613732,240,0 +170744613780,225,0 +170744613828,216,0 +170744613877,215,0 +170744613927,215,0 +170744613976,215,0 +170744614024,215,0 +170744614074,215,0 +170744614123,215,0 +170744614171,216,0 +170744614221,217,0 +170744614269,217,0 +170744614318,219,0 +170744614368,220,0 +170744614416,221,0 +170744614465,224,0 +170744614515,226,0 +170744614563,228,0 +170744614612,230,0 +170744614662,232,0 +170744614710,233,0 +170744614758,234,0 +170744614806,235,0 +170744614855,238,0 +170744614905,223,0 +170744614953,216,0 +170744615001,215,0 +170744615050,215,0 +170744615100,215,0 +170744615148,215,0 +170744615196,215,0 +170744615244,215,0 +170744615293,215,0 +170744615343,215,0 +170744615393,215,0 +170744615440,215,0 +170744615490,216,0 +170744615538,217,0 +170744615588,218,0 +170744615635,218,0 +170744615684,220,0 +170744615733,222,0 +170744615783,225,0 +170744615831,227,0 +170744615879,230,0 +170744615928,238,0 +170744615976,240,0 +170744616024,220,0 +170744616072,216,0 +170744616122,216,0 +170744616170,215,0 +170744616218,215,0 +170744616265,215,0 +170744616315,215,0 +170744616363,216,0 +170744616412,217,0 +170744616462,217,0 +170744616511,218,0 +170744616561,220,0 +170744616611,221,0 +170744616659,223,0 +170744616706,226,0 +170744616756,228,0 +170744616806,231,0 +170744616854,233,0 +170744616901,235,0 +170744616949,235,0 +170744616999,236,0 +170744617047,231,0 +170744617095,239,0 +170744617144,230,0 +170744617192,217,0 +170744617242,215,0 +170744617290,216,0 +170744617339,215,0 +170744617389,215,0 +170744617438,215,0 +170744617488,215,0 +170744617536,216,0 +170744617585,217,0 +170744617635,217,0 +170744617683,218,0 +170744617731,220,0 +170744617779,222,0 +170744617826,224,0 +170744617874,227,0 +170744617922,229,0 +170744617970,231,0 +170744618018,231,0 +170744618066,232,0 +170744618114,235,0 +170744618162,231,0 +170744618211,239,0 +170744618261,225,0 +170744618310,217,0 +170744618358,216,0 +170744618406,216,0 +170744618454,216,0 +170744618503,216,0 +170744618551,216,0 +170744618599,215,0 +170744618647,216,0 +170744618695,216,0 +170744618743,217,0 +170744618791,218,0 +170744618841,218,0 +170744618890,220,0 +170744618938,223,0 +170744618986,226,0 +170744619034,228,0 +170744619084,228,0 +170744619132,232,0 +170744619181,233,0 +170744619229,236,0 +170744619277,237,0 +170744619327,239,0 +170744619375,219,0 +170744619424,217,0 +170744619472,216,0 +170744619520,216,0 +170744619568,216,0 +170744619617,216,0 +170744619665,216,0 +170744619713,216,0 +170744619763,216,0 +170744619812,217,0 +170744619860,217,0 +170744619908,218,0 +170744619956,219,0 +170744620004,220,0 +170744620052,222,0 +170744620100,225,0 +170744620148,230,0 +170744620198,230,0 +170744620245,230,0 +170744620293,234,0 +170744620343,234,0 +170744620393,236,0 +170744620442,248,0 +170744620491,219,0 +170744620539,216,0 +170744620587,216,0 +170744620635,215,0 +170744620683,216,0 +170744620731,215,0 +170744620781,215,0 +170744620829,216,0 +170744620877,217,0 +170744620925,217,0 +170744620973,218,0 +170744621020,220,0 +170744621070,220,0 +170744621119,221,0 +170744621167,223,0 +170744621215,225,0 +170744621263,228,0 +170744621311,231,0 +170744621359,232,0 +170744621407,233,0 +170744621455,235,0 +170744621503,235,0 +170744621551,238,0 +170744621599,238,0 +170744621648,218,0 +170744621696,215,0 +170744621746,215,0 +170744621794,215,0 +170744621842,215,0 +170744621891,216,0 +170744621939,216,0 +170744621987,216,0 +170744622035,217,0 +170744622085,218,0 +170744622132,218,0 +170744622180,220,0 +170744622230,221,0 +170744622278,223,0 +170744622327,225,0 +170744622375,228,0 +170744622423,230,0 +170744622473,231,0 +170744622521,233,0 +170744622569,236,0 +170744622617,236,0 +170744622666,237,0 +170744622716,238,0 +170744622764,218,0 +170744622813,215,0 +170744622863,216,0 +170744622912,215,0 +170744622960,215,0 +170744623008,215,0 +170744623058,215,0 +170744623106,216,0 +170744623155,217,0 +170744623203,218,0 +170744623251,218,0 +170744623301,219,0 +170744623350,221,0 +170744623398,222,0 +170744623446,224,0 +170744623494,228,0 +170744623544,230,0 +170744623592,231,0 +170744623640,232,0 +170744623688,233,0 +170744623736,234,0 +170744623785,237,0 +170744623835,238,0 +170744623884,217,0 +170744623932,215,0 +170744623980,215,0 +170744624030,215,0 +170744624079,215,0 +170744624129,215,0 +170744624176,215,0 +170744624224,215,0 +170744624274,215,0 +170744624323,215,0 +170744624373,215,0 +170744624421,215,0 +170744624471,215,0 +170744624518,215,0 +170744624566,215,0 +170744624616,215,0 +170744624665,215,0 +170744624715,215,0 +170744624763,215,0 +170744624811,216,0 +170744624859,219,0 +170744624908,237,0 +170744624956,238,0 +170744625004,219,0 +170744625052,216,0 +170744625100,216,0 +170744625148,217,0 +170744625197,218,0 +170744625245,217,0 +170744625293,219,0 +170744625341,219,0 +170744625389,219,0 +170744625437,220,0 +170744625485,221,0 +170744625533,226,0 +170744625583,223,0 +170744625631,226,0 +170744625679,230,0 +170744625728,230,0 +170744625776,231,0 +170744625824,232,0 +170744625874,234,0 +170744625921,235,0 +170744625969,237,0 +170744626019,238,0 +170744626067,238,0 +170744626115,220,0 +170744626162,215,0 +170744626210,215,0 +170744626258,215,0 +170744626306,216,0 +170744626354,217,0 +170744626402,217,0 +170744626450,218,0 +170744626498,218,0 +170744626546,230,0 +170744626595,220,0 +170744626645,223,0 +170744626693,225,0 +170744626742,228,0 +170744626792,229,0 +170744626840,232,0 +170744626889,234,0 +170744626937,233,0 +170744626985,235,0 +170744627033,235,0 +170744627083,239,0 +170744627132,238,0 +170744627180,239,0 +170744627230,220,0 +170744627278,216,0 +170744627325,215,0 +170744627375,216,0 +170744627423,217,0 +170744627471,216,0 +170744627519,218,0 +170744627568,219,0 +170744627616,219,0 +170744627664,219,0 +170744627714,221,0 +170744627762,223,0 +170744627810,226,0 +170744627859,228,0 +170744627907,232,0 +170744627957,232,0 +170744628006,233,0 +170744628054,234,0 +170744628104,236,0 +170744628153,236,0 +170744628201,239,0 +170744628251,239,0 +170744628299,238,0 +170744628348,220,0 +170744628396,215,0 +170744628444,215,0 +170744628494,215,0 +170744628543,215,0 +170744628591,215,0 +170744628639,215,0 +170744628689,215,0 +170744628737,218,0 +170744628785,217,0 +170744628833,217,0 +170744628881,218,0 +170744628929,220,0 +170744628977,222,0 +170744629025,225,0 +170744629072,228,0 +170744629120,229,0 +170744629168,229,0 +170744629216,234,0 +170744629264,235,0 +170744629314,237,0 +170744629363,239,0 +170744629411,237,0 +170744629459,221,0 +170744629509,215,0 +170744629558,215,0 +170744629608,216,0 +170744629656,216,0 +170744629704,217,0 +170744629753,218,0 +170744629803,219,0 +170744629851,220,0 +170744629899,221,0 +170744629947,221,0 +170744629995,222,0 +170744630043,224,0 +170744630091,227,0 +170744630140,229,0 +170744630188,232,0 +170744630237,232,0 +170744630285,233,0 +170744630333,236,0 +170744630381,238,0 +170744630431,238,0 +170744630479,239,0 +170744630527,238,0 +170744630575,219,0 +170744630623,216,0 +170744630671,215,0 +170744630719,215,0 +170744630766,216,0 +170744630814,216,0 +170744630864,216,0 +170744630912,217,0 +170744630960,218,0 +170744631008,219,0 +170744631056,219,0 +170744631104,220,0 +170744631152,223,0 +170744631200,226,0 +170744631248,229,0 +170744631297,230,0 +170744631347,231,0 +170744631396,233,0 +170744631446,235,0 +170744631495,237,0 +170744631543,241,0 +170744631591,238,0 +170744631641,239,0 +170744631690,219,0 +170744631738,217,0 +170744631788,217,0 +170744631836,217,0 +170744631885,218,0 +170744631935,218,0 +170744631983,219,0 +170744632031,224,0 +170744632080,220,0 +170744632128,221,0 +170744632176,222,0 +170744632225,224,0 +170744632273,227,0 +170744632321,230,0 +170744632369,231,0 +170744632417,233,0 +170744632467,234,0 +170744632516,236,0 +170744632564,237,0 +170744632612,238,0 +170744632660,239,0 +170744632708,238,0 +170744632757,239,0 +170744632807,220,0 +170744632855,216,0 +170744632903,215,0 +170744632952,216,0 +170744633000,217,0 +170744633048,217,0 +170744633097,218,0 +170744633145,218,0 +170744633193,219,0 +170744633241,220,0 +170744633289,220,0 +170744633337,222,0 +170744633386,224,0 +170744633434,227,0 +170744633482,228,0 +170744633530,232,0 +170744633578,232,0 +170744633626,234,0 +170744633674,235,0 +170744633722,238,0 +170744633770,238,0 +170744633817,236,0 +170744633865,240,0 +170744633913,238,0 +170744633961,218,0 +170744634009,217,0 +170744634057,217,0 +170744634105,217,0 +170744634154,218,0 +170744634202,219,0 +170744634250,220,0 +170744634298,221,0 +170744634347,223,0 +170744634395,222,0 +170744634443,224,0 +170744634491,226,0 +170744634539,227,0 +170744634587,228,0 +170744634636,232,0 +170744634684,234,0 +170744634732,237,0 +170744634780,237,0 +170744634828,237,0 +170744634876,239,0 +170744634924,240,0 +170744634973,240,0 +170744635021,239,0 +170744635069,220,0 +170744635117,215,0 +170744635167,215,0 +170744635215,215,0 +170744635264,215,0 +170744635312,215,0 +170744635362,215,0 +170744635411,215,0 +170744635459,215,0 +170744635507,216,0 +170744635557,216,0 +170744635606,216,0 +170744635656,218,0 +170744635704,219,0 +170744635752,221,0 +170744635801,224,0 +170744635851,225,0 +170744635900,228,0 +170744635950,230,0 +170744635998,232,0 +170744636046,234,0 +170744636095,238,0 +170744636145,240,0 +170744636194,218,0 +170744636244,215,0 +170744636293,215,0 +170744636341,215,0 +170744636391,215,0 +170744636439,216,0 +170744636488,216,0 +170744636536,217,0 +170744636584,217,0 +170744636632,218,0 +170744636682,219,0 +170744636731,219,0 +170744636781,221,0 +170744636829,223,0 +170744636878,225,0 +170744636928,228,0 +170744636977,230,0 +170744637027,231,0 +170744637075,234,0 +170744637123,236,0 +170744637171,236,0 +170744637219,240,0 +170744637268,239,0 +170744637318,217,0 +170744637366,215,0 +170744637413,216,0 +170744637461,217,0 +170744637509,217,0 +170744637557,218,0 +170744637607,219,0 +170744637657,220,0 +170744637706,220,0 +170744637756,220,0 +170744637803,221,0 +170744637851,223,0 +170744637899,225,0 +170744637947,241,0 +170744637997,230,0 +170744638046,232,0 +170744638096,235,0 +170744638146,234,0 +170744638194,236,0 +170744638242,236,0 +170744638289,238,0 +170744638339,240,0 +170744638387,241,0 +170744638437,220,0 +170744638486,215,0 +170744638534,215,0 +170744638584,215,0 +170744638631,215,0 +170744638681,215,0 +170744638730,216,0 +170744638778,216,0 +170744638826,217,0 +170744638876,218,0 +170744638925,219,0 +170744638973,219,0 +170744639021,225,0 +170744639071,222,0 +170744639120,227,0 +170744639170,227,0 +170744639218,230,0 +170744639267,230,0 +170744639317,233,0 +170744639365,234,0 +170744639413,235,0 +170744639462,239,0 +170744639512,240,0 +170744639561,218,0 +170744639609,216,0 +170744639659,216,0 +170744639708,215,0 +170744639758,216,0 +170744639806,216,0 +170744639854,215,0 +170744639903,215,0 +170744639953,217,0 +170744640002,217,0 +170744640052,217,0 +170744640100,219,0 +170744640150,219,0 +170744640198,223,0 +170744640245,226,0 +170744640293,228,0 +170744640341,230,0 +170744640389,231,0 +170744640437,232,0 +170744640487,235,0 +170744640536,236,0 +170744640586,239,0 +170744640634,239,0 +170744640682,219,0 +170744640731,216,0 +170744640781,216,0 +170744640829,216,0 +170744640877,215,0 +170744640925,215,0 +170744640974,215,0 +170744641024,215,0 +170744641073,215,0 +170744641123,215,0 +170744641171,216,0 +170744641220,215,0 +170744641270,215,0 +170744641318,215,0 +170744641366,215,0 +170744641416,216,0 +170744641464,217,0 +170744641513,218,0 +170744641561,220,0 +170744641611,224,0 +170744641660,230,0 +170744641710,239,0 +170744641758,233,0 +170744641806,217,0 +170744641855,216,0 +170744641903,216,0 +170744641953,216,0 +170744642001,217,0 +170744642050,217,0 +170744642100,218,0 +170744642148,219,0 +170744642196,220,0 +170744642245,220,0 +170744642295,221,0 +170744642344,222,0 +170744642394,223,0 +170744642442,226,0 +170744642490,229,0 +170744642538,232,0 +170744642586,233,0 +170744642634,234,0 +170744642683,235,0 +170744642733,237,0 +170744642780,232,0 +170744642828,237,0 +170744642876,232,0 +170744642924,216,0 +170744642972,215,0 +170744643020,215,0 +170744643068,215,0 +170744643116,215,0 +170744643164,215,0 +170744643212,216,0 +170744643262,216,0 +170744643311,218,0 +170744643359,218,0 +170744643407,219,0 +170744643455,220,0 +170744643503,221,0 +170744643551,224,0 +170744643601,227,0 +170744643650,228,0 +170744643700,230,0 +170744643747,232,0 +170744643795,234,0 +170744643843,236,0 +170744643891,234,0 +170744643939,238,0 +170744643987,240,0 +170744644035,218,0 +170744644085,216,0 +170744644134,215,0 +170744644182,216,0 +170744644230,216,0 +170744644280,215,0 +170744644329,216,0 +170744644379,216,0 +170744644427,217,0 +170744644475,218,0 +170744644523,218,0 +170744644571,218,0 +170744644619,221,0 +170744644668,223,0 +170744644716,226,0 +170744644766,229,0 +170744644815,232,0 +170744644863,231,0 +170744644911,233,0 +170744644959,236,0 +170744645007,237,0 +170744645057,238,0 +170744645104,238,0 +170744645152,219,0 +170744645200,216,0 +170744645248,216,0 +170744645296,215,0 +170744645346,216,0 +170744645394,216,0 +170744645443,216,0 +170744645491,215,0 +170744645539,216,0 +170744645589,217,0 +170744645638,218,0 +170744645688,218,0 +170744645735,219,0 +170744645783,222,0 +170744645831,225,0 +170744645879,226,0 +170744645927,228,0 +170744645976,232,0 +170744646024,231,0 +170744646072,234,0 +170744646120,235,0 +170744646168,238,0 +170744646217,238,0 +170744646265,220,0 +170744646313,217,0 +170744646361,217,0 +170744646411,218,0 +170744646460,218,0 +170744646510,220,0 +170744646558,220,0 +170744646607,221,0 +170744646655,222,0 +170744646703,225,0 +170744646753,227,0 +170744646802,229,0 +170744646852,230,0 +170744646901,233,0 +170744646951,234,0 +170744646999,234,0 +170744647048,236,0 +170744647098,238,0 +170744647146,239,0 +170744647195,240,0 +170744647245,240,0 +170744647293,239,0 +170744647342,239,0 +170744647390,220,0 +170744647438,215,0 +170744647486,215,0 +170744647534,215,0 +170744647582,215,0 +170744647632,216,0 +170744647680,216,0 +170744647728,217,0 +170744647775,217,0 +170744647823,218,0 +170744647871,218,0 +170744647919,221,0 +170744647967,224,0 +170744648015,227,0 +170744648065,230,0 +170744648113,306,1 +170744648209,233,0 +170744648257,234,0 +170744648305,235,0 +170744648353,235,0 +170744648401,239,0 +170744648449,240,0 +170744648499,221,0 +170744648548,215,0 +170744648596,215,0 +170744648646,215,0 +170744648695,216,0 +170744648745,217,0 +170744648793,217,0 +170744648841,218,0 +170744648890,219,0 +170744648938,220,0 +170744648988,222,0 +170744649036,224,0 +170744649085,226,0 +170744649133,229,0 +170744649181,230,0 +170744649231,233,0 +170744649279,233,0 +170744649327,233,0 +170744649375,235,0 +170744649424,235,0 +170744649474,237,0 +170744649522,239,0 +170744649570,237,0 +170744649617,221,0 +170744649667,216,0 +170744649715,215,0 +170744649764,215,0 +170744649814,217,0 +170744649863,217,0 +170744649913,218,0 +170744649963,218,0 +170744650012,220,0 +170744650060,220,0 +170744650108,222,0 +170744650158,225,0 +170744650207,227,0 +170744650257,229,0 +170744650306,234,0 +170744650354,231,0 +170744650402,236,0 +170744650450,235,0 +170744650498,237,0 +170744650546,238,0 +170744650594,237,0 +170744650642,240,0 +170744650690,238,0 +170744650738,221,0 +170744650786,216,0 +170744650834,216,0 +170744650882,216,0 +170744650930,216,0 +170744650979,216,0 +170744651029,217,0 +170744651077,217,0 +170744651126,217,0 +170744651174,218,0 +170744651222,219,0 +170744651270,220,0 +170744651318,223,0 +170744651367,225,0 +170744651417,228,0 +170744651465,231,0 +170744651515,231,0 +170744651563,233,0 +170744651610,234,0 +170744651658,235,0 +170744651708,237,0 +170744651757,238,0 +170744651807,238,0 +170744651856,220,0 +170744651904,215,0 +170744651952,215,0 +170744652002,215,0 +170744652050,215,0 +170744652098,215,0 +170744652147,215,0 +170744652197,215,0 +170744652246,215,0 +170744652296,216,0 +170744652346,217,0 +170744652395,218,0 +170744652445,219,0 +170744652493,221,0 +170744652542,224,0 +170744652590,227,0 +170744652638,228,0 +170744652687,230,0 +170744652735,232,0 +170744652783,234,0 +170744652831,235,0 +170744652881,236,0 +170744652929,239,0 +170744652977,219,0 +170744653025,215,0 +170744653074,215,0 +170744653124,215,0 +170744653172,215,0 +170744653220,215,0 +170744653269,216,0 +170744653317,217,0 +170744653365,217,0 +170744653413,218,0 +170744653461,219,0 +170744653511,219,0 +170744653560,222,0 +170744653608,225,0 +170744653656,227,0 +170744653704,229,0 +170744653752,232,0 +170744653800,235,0 +170744653848,234,0 +170744653898,236,0 +170744653946,237,0 +170744653994,238,0 +170744654041,239,0 +170744654089,219,0 +170744654137,216,0 +170744654185,215,0 +170744654235,215,0 +170744654283,215,0 +170744654331,216,0 +170744654379,215,0 +170744654428,216,0 +170744654478,215,0 +170744654527,217,0 +170744654577,217,0 +170744654625,218,0 +170744654674,220,0 +170744654722,221,0 +170744654770,223,0 +170744654818,226,0 +170744654866,227,0 +170744654914,230,0 +170744654964,230,0 +170744655013,234,0 +170744655061,235,0 +170744655109,238,0 +170744655159,239,0 +170744655208,219,0 +170744655258,215,0 +170744655307,215,0 +170744655355,215,0 +170744655405,215,0 +170744655455,215,0 +170744655504,215,0 +170744655552,215,0 +170744655600,215,0 +170744655648,216,0 +170744655697,217,0 +170744655745,217,0 +170744655793,218,0 +170744655841,219,0 +170744655889,222,0 +170744655937,225,0 +170744655987,227,0 +170744656036,228,0 +170744656086,231,0 +170744656134,233,0 +170744656183,234,0 +170744656231,237,0 +170744656281,238,0 +170744656329,220,0 +170744656377,216,0 +170744656425,215,0 +170744656473,215,0 +170744656521,216,0 +170744656569,215,0 +170744656617,216,0 +170744656666,217,0 +170744656714,217,0 +170744656762,218,0 +170744656810,219,0 +170744656860,220,0 +170744656908,221,0 +170744656957,224,0 +170744657005,226,0 +170744657055,228,0 +170744657104,230,0 +170744657154,233,0 +170744657203,234,0 +170744657251,237,0 +170744657299,239,0 +170744657349,237,0 +170744657398,239,0 +170744657446,220,0 +170744657496,216,0 +170744657544,215,0 +170744657593,215,0 +170744657641,215,0 +170744657689,215,0 +170744657737,215,0 +170744657786,216,0 +170744657836,216,0 +170744657884,217,0 +170744657932,218,0 +170744657981,218,0 +170744658031,220,0 +170744658079,222,0 +170744658127,225,0 +170744658176,228,0 +170744658226,229,0 +170744658276,231,0 +170744658325,235,0 +170744658373,235,0 +170744658423,236,0 +170744658471,239,0 +170744658519,240,0 +170744658567,219,0 +170744658615,216,0 +170744658662,216,0 +170744658710,215,0 +170744658760,215,0 +170744658809,215,0 +170744658857,215,0 +170744658907,215,0 +170744658955,215,0 +170744659004,215,0 +170744659052,216,0 +170744659100,217,0 +170744659148,223,0 +170744659196,219,0 +170744659244,221,0 +170744659294,224,0 +170744659343,226,0 +170744659391,228,0 +170744659439,230,0 +170744659489,231,0 +170744659537,233,0 +170744659586,237,0 +170744659634,239,0 +170744659682,220,0 +170744659730,216,0 +170744659778,215,0 +170744659827,215,0 +170744659875,215,0 +170744659923,216,0 +170744659973,216,0 +170744660022,217,0 +170744660072,218,0 +170744660121,218,0 +170744660169,219,0 +170744660217,220,0 +170744660265,222,0 +170744660315,228,0 +170744660364,228,0 +170744660414,229,0 +170744660463,233,0 +170744660511,233,0 +170744660559,233,0 +170744660607,236,0 +170744660657,237,0 +170744660705,238,0 +170744660752,239,0 +170744660800,220,0 +170744660850,217,0 +170744660899,216,0 +170744660949,215,0 +170744660999,216,0 +170744661046,216,0 +170744661096,216,0 +170744661144,216,0 +170744661192,215,0 +170744661242,216,0 +170744661290,216,0 +170744661338,217,0 +170744661385,218,0 +170744661435,219,0 +170744661484,222,0 +170744661532,224,0 +170744661581,226,0 +170744661630,228,0 +170744661678,229,0 +170744661726,230,0 +170744661775,234,0 +170744661825,230,0 +170744661873,239,0 +170744661921,237,0 +170744661969,217,0 +170744662017,215,0 +170744662066,215,0 +170744662114,215,0 +170744662164,215,0 +170744662213,215,0 +170744662263,215,0 +170744662312,216,0 +170744662360,216,0 +170744662408,217,0 +170744662456,218,0 +170744662504,218,0 +170744662552,220,0 +170744662600,223,0 +170744662648,225,0 +170744662696,227,0 +170744662744,229,0 +170744662791,231,0 +170744662839,232,0 +170744662887,234,0 +170744662937,232,0 +170744662985,238,0 +170744663032,238,0 +170744663082,217,0 +170744663130,215,0 +170744663178,215,0 +170744663227,215,0 +170744663277,215,0 +170744663326,215,0 +170744663376,216,0 +170744663425,216,0 +170744663473,217,0 +170744663521,218,0 +170744663569,218,0 +170744663617,220,0 +170744663665,222,0 +170744663713,224,0 +170744663763,226,0 +170744663810,228,0 +170744663858,231,0 +170744663906,233,0 +170744663954,234,0 +170744664002,236,0 +170744664051,231,0 +170744664099,238,0 +170744664147,232,0 +170744664197,217,0 +170744664246,215,0 +170744664296,216,0 +170744664345,217,0 +170744664393,217,0 +170744664441,218,0 +170744664489,219,0 +170744664537,219,0 +170744664585,219,0 +170744664633,221,0 +170744664682,222,0 +170744664730,224,0 +170744664778,225,0 +170744664828,228,0 +170744664877,230,0 +170744664925,231,0 +170744664973,234,0 +170744665021,238,0 +170744665070,237,0 +170744665120,236,0 +170744665168,238,0 +170744665217,239,0 +170744665265,238,0 +170744665315,218,0 +170744665364,215,0 +170744665412,215,0 +170744665462,215,0 +170744665510,215,0 +170744665559,215,0 +170744665607,215,0 +170744665657,215,0 +170744665706,216,0 +170744665754,216,0 +170744665804,218,0 +170744665852,219,0 +170744665901,221,0 +170744665949,223,0 +170744665997,226,0 +170744666047,228,0 +170744666096,229,0 +170744666144,233,0 +170744666194,234,0 +170744666242,235,0 +170744666291,231,0 +170744666341,239,0 +170744666390,226,0 +170744666438,217,0 +170744666488,215,0 +170744666537,215,0 +170744666587,215,0 +170744666637,215,0 +170744666686,216,0 +170744666734,217,0 +170744666784,217,0 +170744666833,218,0 +170744666881,218,0 +170744666931,220,0 +170744666979,221,0 +170744667027,223,0 +170744667076,227,0 +170744667124,229,0 +170744667172,232,0 +170744667220,235,0 +170744667270,235,0 +170744667317,237,0 +170744667367,238,0 +170744667415,235,0 +170744667463,238,0 +170744667511,225,0 +170744667560,216,0 +170744667610,215,0 +170744667658,215,0 +170744667707,216,0 +170744667755,216,0 +170744667803,216,0 +170744667851,217,0 +170744667899,217,0 +170744667949,218,0 +170744667998,219,0 +170744668048,220,0 +170744668096,222,0 +170744668145,225,0 +170744668195,227,0 +170744668244,230,0 +170744668292,232,0 +170744668340,232,0 +170744668390,236,0 +170744668439,236,0 +170744668487,236,0 +170744668535,231,0 +170744668585,241,0 +170744668634,224,0 +170744668682,219,0 +170744668732,217,0 +170744668781,218,0 +170744668829,219,0 +170744668879,219,0 +170744668927,220,0 +170744668976,221,0 +170744669026,225,0 +170744669075,223,0 +170744669123,223,0 +170744669171,224,0 +170744669221,226,0 +170744669271,229,0 +170744669319,231,0 +170744669368,232,0 +170744669418,235,0 +170744669467,236,0 +170744669515,237,0 +170744669563,237,0 +170744669611,239,0 +170744669661,233,0 +170744669710,239,0 +170744669758,235,0 +170744669806,217,0 +170744669856,215,0 +170744669905,215,0 +170744669953,215,0 +170744670001,216,0 +170744670051,217,0 +170744670100,217,0 +170744670148,219,0 +170744670197,218,0 +170744670245,219,0 +170744670293,221,0 +170744670342,223,0 +170744670390,226,0 +170744670440,227,0 +170744670489,230,0 +170744670539,231,0 +170744670587,233,0 +170744670634,235,0 +170744670682,237,0 +170744670730,236,0 +170744670778,238,0 +170744670826,240,0 +170744670876,219,0 +170744670925,216,0 +170744670973,216,0 +170744671021,216,0 +170744671068,217,0 +170744671116,217,0 +170744671166,218,0 +170744671214,219,0 +170744671263,219,0 +170744671311,223,0 +170744671360,221,0 +170744671408,223,0 +170744671458,225,0 +170744671508,226,0 +170744671557,230,0 +170744671605,231,0 +170744671655,232,0 +170744671703,232,0 +170744671752,237,0 +170744671800,237,0 +170744671848,238,0 +170744671896,235,0 +170744671944,239,0 +170744671993,222,0 +170744672043,216,0 +170744672091,215,0 +170744672139,215,0 +170744672187,215,0 +170744672236,215,0 +170744672284,215,0 +170744672334,215,0 +170744672383,215,0 +170744672431,215,0 +170744672479,215,0 +170744672529,215,0 +170744672577,216,0 +170744672624,216,0 +170744672672,218,0 +170744672720,219,0 +170744672768,221,0 +170744672816,224,0 +170744672864,226,0 +170744672912,228,0 +170744672960,230,0 +170744673008,229,0 +170744673056,239,0 +170744673104,238,0 +170744673152,220,0 +170744673199,217,0 +170744673249,218,0 +170744673298,217,0 +170744673348,218,0 +170744673397,216,0 +170744673447,216,0 +170744673496,217,0 +170744673544,217,0 +170744673592,219,0 +170744673640,219,0 +170744673688,220,0 +170744673736,222,0 +170744673784,224,0 +170744673832,227,0 +170744673879,229,0 +170744673929,231,0 +170744673978,234,0 +170744674026,233,0 +170744674074,236,0 +170744674122,234,0 +170744674170,239,0 +170744674218,237,0 +170744674266,218,0 +170744674313,216,0 +170744674361,216,0 +170744674409,216,0 +170744674457,216,0 +170744674506,215,0 +170744674556,216,0 +170744674605,216,0 +170744674653,216,0 +170744674701,216,0 +170744674749,217,0 +170744674798,218,0 +170744674848,218,0 +170744674896,219,0 +170744674944,221,0 +170744674992,223,0 +170744675039,226,0 +170744675087,227,0 +170744675135,229,0 +170744675183,232,0 +170744675231,232,0 +170744675280,238,0 +170744675328,238,0 +170744675376,219,0 +170744675424,215,0 +170744675472,216,0 +170744675520,217,0 +170744675568,218,0 +170744675616,218,0 +170744675665,219,0 +170744675715,220,0 +170744675763,220,0 +170744675811,221,0 +170744675859,221,0 +170744675908,222,0 +170744675958,224,0 +170744676007,225,0 +170744676055,228,0 +170744676103,231,0 +170744676153,232,0 +170744676201,232,0 +170744676250,235,0 +170744676300,235,0 +170744676348,236,0 +170744676396,238,0 +170744676443,239,0 +170744676491,220,0 +170744676539,215,0 +170744676587,215,0 +170744676635,215,0 +170744676684,215,0 +170744676732,215,0 +170744676780,215,0 +170744676828,215,0 +170744676876,216,0 +170744676924,217,0 +170744676972,218,0 +170744677020,218,0 +170744677068,219,0 +170744677115,220,0 +170744677163,222,0 +170744677213,224,0 +170744677261,226,0 +170744677310,228,0 +170744677358,230,0 +170744677406,232,0 +170744677454,234,0 +170744677502,236,0 +170744677550,238,0 +170744677597,219,0 +170744677645,216,0 +170744677693,215,0 +170744677741,215,0 +170744677789,215,0 +170744677837,216,0 +170744677886,216,0 +170744677934,217,0 +170744677984,217,0 +170744678032,218,0 +170744678080,219,0 +170744678128,222,0 +170744678175,222,0 +170744678223,226,0 +170744678271,228,0 +170744678319,229,0 +170744678367,230,0 +170744678415,235,0 +170744678464,235,0 +170744678512,235,0 +170744678560,236,0 +170744678608,235,0 +170744678656,239,0 +170744678704,238,0 +170744678753,218,0 +170744678801,215,0 +170744678851,215,0 +170744678900,215,0 +170744678948,215,0 +170744678996,215,0 +170744679044,215,0 +170744679092,215,0 +170744679140,216,0 +170744679188,216,0 +170744679236,217,0 +170744679286,218,0 +170744679333,218,0 +170744679383,222,0 +170744679431,226,0 +170744679481,226,0 +170744679530,230,0 +170744679578,232,0 +170744679626,232,0 +170744679676,232,0 +170744679723,236,0 +170744679773,239,0 +170744679821,232,0 +170744679869,217,0 +170744679917,215,0 +170744679965,215,0 +170744680013,215,0 +170744680061,215,0 +170744680109,215,0 +170744680157,216,0 +170744680206,217,0 +170744680256,218,0 +170744680305,218,0 +170744680353,218,0 +170744680401,219,0 +170744680449,221,0 +170744680497,224,0 +170744680545,226,0 +170744680595,230,0 +170744680643,231,0 +170744680690,234,0 +170744680740,233,0 +170744680789,235,0 +170744680837,236,0 +170744680885,238,0 +170744680933,238,0 +170744680983,222,0 +170744681032,219,0 +170744681082,219,0 +170744681131,218,0 +170744681181,217,0 +170744681231,217,0 +170744681280,215,0 +170744681328,216,0 +170744681378,217,0 +170744681426,218,0 +170744681473,218,0 +170744681521,219,0 +170744681569,222,0 +170744681619,224,0 +170744681668,226,0 +170744681718,229,0 +170744681767,229,0 +170744681815,233,0 +170744681863,233,0 +170744681911,235,0 +170744681961,235,0 +170744682009,239,0 +170744682057,238,0 +170744682105,218,0 +170744682153,215,0 +170744682201,215,0 +170744682249,215,0 +170744682296,215,0 +170744682344,215,0 +170744682392,215,0 +170744682440,215,0 +170744682490,216,0 +170744682539,215,0 +170744682587,216,0 +170744682635,217,0 +170744682683,218,0 +170744682731,218,0 +170744682779,221,0 +170744682829,223,0 +170744682877,226,0 +170744682924,230,0 +170744682972,229,0 +170744683020,233,0 +170744683068,232,0 +170744683116,238,0 +170744683164,239,0 +170744683212,219,0 +170744683260,215,0 +170744683310,215,0 +170744683358,215,0 +170744683406,215,0 +170744683454,216,0 +170744683502,215,0 +170744683550,215,0 +170744683598,215,0 +170744683646,215,0 +170744683695,215,0 +170744683745,216,0 +170744683792,217,0 +170744683840,218,0 +170744683888,220,0 +170744683936,222,0 +170744683986,225,0 +170744684035,227,0 +170744684085,228,0 +170744684133,230,0 +170744684182,232,0 +170744684230,236,0 +170744684280,238,0 +170744684328,220,0 +170744684377,215,0 +170744684425,216,0 +170744684475,215,0 +170744684523,216,0 +170744684572,216,0 +170744684620,217,0 +170744684668,217,0 +170744684718,217,0 +170744684765,218,0 +170744684813,219,0 +170744684861,220,0 +170744684909,220,0 +170744684957,223,0 +170744685005,226,0 +170744685053,228,0 +170744685103,230,0 +170744685152,233,0 +170744685200,232,0 +170744685250,234,0 +170744685298,235,0 +170744685346,239,0 +170744685394,238,0 +170744685442,219,0 +170744685491,215,0 +170744685539,215,0 +170744685587,215,0 +170744685635,215,0 +170744685683,215,0 +170744685733,216,0 +170744685781,216,0 +170744685830,217,0 +170744685878,218,0 +170744685928,219,0 +170744685976,220,0 +170744686024,220,0 +170744686071,222,0 +170744686119,226,0 +170744686169,228,0 +170744686217,231,0 +170744686265,232,0 +170744686314,233,0 +170744686362,235,0 +170744686412,236,0 +170744686461,238,0 +170744686511,240,0 +170744686559,219,0 +170744686608,216,0 +170744686656,215,0 +170744686704,215,0 +170744686752,216,0 +170744686802,215,0 +170744686850,216,0 +170744686898,217,0 +170744686945,218,0 +170744686993,218,0 +170744687041,219,0 +170744687089,219,0 +170744687137,221,0 +170744687187,223,0 +170744687235,227,0 +170744687283,228,0 +170744687331,231,0 +170744687379,231,0 +170744687427,232,0 +170744687475,233,0 +170744687524,234,0 +170744687572,238,0 +170744687622,239,0 +170744687671,219,0 +170744687719,216,0 +170744687767,215,0 +170744687815,215,0 +170744687864,215,0 +170744687912,215,0 +170744687962,215,0 +170744688010,215,0 +170744688059,215,0 +170744688107,215,0 +170744688155,215,0 +170744688203,215,0 +170744688251,215,0 +170744688299,216,0 +170744688349,217,0 +170744688396,218,0 +170744688444,221,0 +170744688494,224,0 +170744688544,226,0 +170744688593,226,0 +170744688643,229,0 +170744688691,228,0 +170744688739,238,0 +170744688787,225,0 +170744688835,216,0 +170744688883,215,0 +170744688930,215,0 +170744688978,215,0 +170744689028,215,0 +170744689078,216,0 +170744689126,216,0 +170744689175,217,0 +170744689223,218,0 +170744689271,219,0 +170744689320,219,0 +170744689368,220,0 +170744689418,222,0 +170744689466,224,0 +170744689514,227,0 +170744689563,229,0 +170744689613,230,0 +170744689662,232,0 +170744689710,233,0 +170744689758,235,0 +170744689808,236,0 +170744689856,239,0 +170744689904,240,0 +170744689953,218,0 +170744690003,215,0 +170744690052,215,0 +170744690100,216,0 +170744690148,216,0 +170744690196,216,0 +170744690246,217,0 +170744690295,218,0 +170744690343,219,0 +170744690391,220,0 +170744690439,220,0 +170744690487,221,0 +170744690536,224,0 +170744690584,226,0 +170744690632,229,0 +170744690682,232,0 +170744690731,231,0 +170744690781,238,0 +170744690830,235,0 +170744690880,237,0 +170744690929,236,0 +170744690977,238,0 +170744691025,220,0 +170744691073,216,0 +170744691121,215,0 +170744691169,216,0 +170744691217,216,0 +170744691265,217,0 +170744691313,218,0 +170744691361,218,0 +170744691411,219,0 +170744691459,221,0 +170744691508,221,0 +170744691558,222,0 +170744691607,225,0 +170744691655,227,0 +170744691705,229,0 +170744691753,231,0 +170744691802,233,0 +170744691850,234,0 +170744691900,236,0 +170744691948,237,0 +170744691997,241,0 +170744692045,237,0 +170744692093,240,0 +170744692141,239,0 +170744692191,216,0 +170744692240,215,0 +170744692288,215,0 +170744692338,215,0 +170744692387,215,0 +170744692437,216,0 +170744692486,216,0 +170744692536,217,0 +170744692585,218,0 +170744692635,218,0 +170744692684,219,0 +170744692732,222,0 +170744692782,224,0 +170744692831,225,0 +170744692881,229,0 +170744692931,231,0 +170744692980,233,0 +170744693028,234,0 +170744693078,236,0 +170744693126,237,0 +170744693174,237,0 +170744693223,238,0 +170744693271,239,0 +170744693321,218,0 +170744693369,217,0 +170744693416,217,0 +170744693464,217,0 +170744693514,218,0 +170744693562,219,0 +170744693610,220,0 +170744693660,221,0 +170744693709,224,0 +170744693757,223,0 +170744693805,225,0 +170744693853,226,0 +170744693902,229,0 +170744693950,231,0 +170744693998,232,0 +170744694048,235,0 +170744694096,236,0 +170744694144,237,0 +170744694192,238,0 +170744694240,238,0 +170744694287,237,0 +170744694335,239,0 +170744694384,237,0 +170744694433,217,0 +170744694483,215,0 +170744694532,216,0 +170744694582,217,0 +170744694630,217,0 +170744694678,218,0 +170744694726,219,0 +170744694775,220,0 +170744694823,220,0 +170744694871,226,0 +170744694919,224,0 +170744694967,226,0 +170744695016,228,0 +170744695066,231,0 +170744695114,231,0 +170744695163,233,0 +170744695213,238,0 +170744695261,239,0 +170744695309,242,0 +170744695357,239,0 +170744695405,235,0 +170744695452,238,0 +170744695500,239,0 +170744695548,217,0 +170744695596,215,0 +170744695644,215,0 +170744695693,215,0 +170744695741,219,0 +170744695789,216,0 +170744695839,217,0 +170744695888,217,0 +170744695936,219,0 +170744695984,219,0 +170744696032,220,0 +170744696081,220,0 +170744696129,224,0 +170744696177,227,0 +170744696225,230,0 +170744696273,230,0 +170744696321,235,0 +170744696369,234,0 +170744696417,234,0 +170744696466,237,0 +170744696514,236,0 +170744696562,239,0 +170744696610,237,0 +170744696658,219,0 +170744696706,216,0 +170744696756,215,0 +170744696804,215,0 +170744696852,217,0 +170744696900,216,0 +170744696949,217,0 +170744696999,217,0 +170744697048,218,0 +170744697098,219,0 +170744697147,220,0 +170744697197,224,0 +170744697246,222,0 +170744697296,225,0 +170744697344,228,0 +170744697392,230,0 +170744697440,233,0 +170744697487,234,0 +170744697535,237,0 +170744697583,236,0 +170744697631,237,0 +170744697679,238,0 +170744697729,237,0 +170744697778,225,0 +170744697826,219,0 +170744697876,219,0 +170744697925,219,0 +170744697973,216,0 +170744698021,216,0 +170744698071,216,0 +170744698120,217,0 +170744698168,218,0 +170744698216,219,0 +170744698266,219,0 +170744698315,220,0 +170744698363,221,0 +170744698413,225,0 +170744698461,226,0 +170744698509,229,0 +170744698557,231,0 +170744698606,233,0 +170744698656,234,0 +170744698704,235,0 +170744698753,241,0 +170744698803,239,0 +170744698851,238,0 +170744698899,219,0 +170744698949,216,0 +170744698997,216,0 +170744699046,216,0 +170744699096,216,0 +170744699145,216,0 +170744699193,216,0 +170744699243,216,0 +170744699292,217,0 +170744699340,218,0 +170744699390,218,0 +170744699438,220,0 +170744699486,220,0 +170744699534,223,0 +170744699581,226,0 +170744699631,229,0 +170744699679,229,0 +170744699729,232,0 +170744699777,233,0 +170744699825,234,0 +170744699874,235,0 +170744699922,238,0 +170744699970,239,0 +170744700018,218,0 +170744700068,215,0 +170744700116,215,0 +170744700164,215,0 +170744700211,215,0 +170744700259,215,0 +170744700307,215,0 +170744700357,215,0 +170744700405,215,0 +170744700453,216,0 +170744700502,216,0 +170744700552,217,0 +170744700601,218,0 +170744700649,218,0 +170744700697,220,0 +170744700745,223,0 +170744700793,224,0 +170744700843,228,0 +170744700890,229,0 +170744700938,231,0 +170744700986,232,0 +170744701034,238,0 +170744701082,239,0 +170744701132,220,0 +170744701180,216,0 +170744701228,215,0 +170744701277,215,0 +170744701325,215,0 +170744701375,215,0 +170744701423,215,0 +170744701471,215,0 +170744701519,216,0 +170744701567,217,0 +170744701615,218,0 +170744701663,218,0 +170744701712,219,0 +170744701760,221,0 +170744701808,222,0 +170744701858,225,0 +170744701907,227,0 +170744701957,228,0 +170744702006,230,0 +170744702054,233,0 +170744702102,235,0 +170744702150,238,0 +170744702198,240,0 +170744702248,405,0 +170744702297,408,0 +170744702345,418,0 +170744702393,428,0 +170744702441,383,0 +170744702490,216,0 +170744702538,216,0 +170744702586,217,0 +170744702636,217,0 +170744702685,218,0 +170744702733,219,0 +170744702783,220,0 +170744702831,221,0 +170744702880,224,0 +170744702930,225,0 +170744702978,229,0 +170744703027,230,0 +170744703077,233,0 +170744703125,232,0 +170744703173,234,0 +170744703221,236,0 +170744703270,240,0 +170744703320,239,0 +170744703369,221,0 +170744703419,217,0 +170744703468,217,0 +170744703516,217,0 +170744703564,215,0 +170744703614,216,0 +170744703662,217,0 +170744703710,217,0 +170744703758,218,0 +170744703807,219,0 +170744703857,220,0 +170744703906,221,0 +170744703954,225,0 +170744704004,226,0 +170744704053,230,0 +170744704101,231,0 +170744704149,233,0 +170744704197,236,0 +170744704245,237,0 +170744704295,237,0 +170744704342,238,0 +170744704390,239,0 +170744704438,240,0 +170744704486,221,0 +170744704536,215,0 +170744704585,215,0 +170744704635,215,0 +170744704685,215,0 +170744704733,215,0 +170744704782,215,0 +170744704830,215,0 +170744704880,215,0 +170744704927,215,0 +170744704975,216,0 +170744705023,216,0 +170744705073,217,0 +170744705121,218,0 +170744705169,220,0 +170744705217,222,0 +170744705266,224,0 +170744705316,225,0 +170744705364,228,0 +170744705413,230,0 +170744705461,232,0 +170744705511,237,0 +170744705560,242,0 +170744705610,221,0 +170744705658,216,0 +170744705707,215,0 +170744705755,215,0 +170744705803,215,0 +170744705851,215,0 +170744705899,215,0 +170744705947,217,0 +170744705997,217,0 +170744706046,217,0 +170744706096,218,0 +170744706145,219,0 +170744706193,220,0 +170744706243,221,0 +170744706291,225,0 +170744706340,228,0 +170744706390,229,0 +170744706439,232,0 +170744706487,232,0 +170744706535,235,0 +170744706583,236,0 +170744706633,238,0 +170744706681,239,0 +170744706730,220,0 +170744706778,216,0 +170744706826,215,0 +170744706874,215,0 +170744706924,216,0 +170744706973,217,0 +170744707021,217,0 +170744707069,218,0 +170744707119,218,0 +170744707167,219,0 +170744707216,220,0 +170744707264,223,0 +170744707312,225,0 +170744707360,227,0 +170744707409,230,0 +170744707457,231,0 +170744707505,232,0 +170744707553,235,0 +170744707602,235,0 +170744707650,238,0 +170744707698,239,0 +170744707746,239,0 +170744707794,238,0 +170744707843,220,0 +170744707891,215,0 +170744707939,215,0 +170744707987,215,0 +170744708035,215,0 +170744708083,216,0 +170744708131,216,0 +170744708179,217,0 +170744708228,217,0 +170744708278,217,0 +170744708325,219,0 +170744708373,222,0 +170744708421,223,0 +170744708471,226,0 +170744708519,227,0 +170744708567,229,0 +170744708616,231,0 +170744708666,233,0 +170744708714,235,0 +170744708762,237,0 +170744708811,237,0 +170744708859,233,0 +170744708907,239,0 +170744708955,230,0 +170744709003,217,0 +170744709051,215,0 +170744709099,217,0 +170744709148,217,0 +170744709198,218,0 +170744709246,218,0 +170744709296,219,0 +170744709345,220,0 +170744709395,220,0 +170744709442,223,0 +170744709490,225,0 +170744709538,227,0 +170744709586,229,0 +170744709634,235,0 +170744709682,234,0 +170744709731,234,0 +170744709781,235,0 +170744709829,236,0 +170744709878,237,0 +170744709926,236,0 +170744709974,234,0 +170744710022,239,0 +170744710070,226,0 +170744710119,216,0 +170744710167,216,0 +170744710215,215,0 +170744710263,216,0 +170744710313,216,0 +170744710362,217,0 +170744710410,218,0 +170744710458,219,0 +170744710506,220,0 +170744710553,221,0 +170744710603,223,0 +170744710652,226,0 +170744710700,228,0 +170744710750,230,0 +170744710798,233,0 +170744710847,235,0 +170744710897,234,0 +170744710944,234,0 +170744710992,237,0 +170744711042,238,0 +170744711091,238,0 +170744711141,238,0 +170744711189,219,0 +170744711237,216,0 +170744711284,215,0 +170744711332,216,0 +170744711380,215,0 +170744711428,215,0 +170744711478,215,0 +170744711526,216,0 +170744711573,217,0 +170744711623,218,0 +170744711671,218,0 +170744711720,220,0 +170744711768,222,0 +170744711816,226,0 +170744711864,228,0 +170744711913,231,0 +170744711961,232,0 +170744712009,233,0 +170744712057,234,0 +170744712105,235,0 +170744712153,237,0 +170744712201,237,0 +170744712249,238,0 +170744712298,239,0 +170744712346,218,0 +170744712394,216,0 +170744712442,216,0 +170744712490,216,0 +170744712538,216,0 +170744712586,216,0 +170744712634,216,0 +170744712682,216,0 +170744712729,216,0 +170744712777,217,0 +170744712825,217,0 +170744712875,218,0 +170744712923,219,0 +170744712970,220,0 +170744713018,222,0 +170744713068,224,0 +170744713116,226,0 +170744713165,229,0 +170744713215,231,0 +170744713262,233,0 +170744713310,233,0 +170744713358,238,0 +170744713408,238,0 +170744713456,220,0 +170744713504,216,0 +170744713551,216,0 +170744713599,216,0 +170744713647,216,0 +170744713695,217,0 +170744713743,218,0 +170744713792,218,0 +170744713842,219,0 +170744713890,219,0 +170744713938,220,0 +170744713986,221,0 +170744714033,224,0 +170744714081,227,0 +170744714129,229,0 +170744714179,230,0 +170744714227,233,0 +170744714274,234,0 +170744714322,236,0 +170744714370,236,0 +170744714418,238,0 +170744714466,239,0 +170744714514,238,0 +170744714562,226,0 +170744714610,221,0 +170744714658,220,0 +170744714705,221,0 +170744714753,221,0 +170744714803,220,0 +170744714851,215,0 +170744714898,216,0 +170744714946,216,0 +170744714994,217,0 +170744715042,218,0 +170744715090,219,0 +170744715138,219,0 +170744715186,221,0 +170744715234,225,0 +170744715282,226,0 +170744715330,229,0 +170744715377,232,0 +170744715425,232,0 +170744715475,233,0 +170744715523,236,0 +170744715572,237,0 +170744715620,240,0 +170744715668,221,0 +170744715716,216,0 +170744715765,215,0 +170744715813,215,0 +170744715861,215,0 +170744715909,215,0 +170744715957,216,0 +170744716005,216,0 +170744716053,216,0 +170744716102,217,0 +170744716150,218,0 +170744716198,219,0 +170744716246,220,0 +170744716294,222,0 +170744716342,225,0 +170744716390,226,0 +170744716439,229,0 +170744716487,230,0 +170744716535,232,0 +170744716583,234,0 +170744716631,236,0 +170744716679,236,0 +170744716728,239,0 +170744716776,239,0 +170744716824,219,0 +170744716873,216,0 +170744716921,215,0 +170744716969,215,0 +170744717019,215,0 +170744717067,215,0 +170744717116,215,0 +170744717164,216,0 +170744717212,217,0 +170744717260,218,0 +170744717310,218,0 +170744717358,218,0 +170744717407,220,0 +170744717457,223,0 +170744717505,227,0 +170744717554,229,0 +170744717602,230,0 +170744717652,232,0 +170744717700,234,0 +170744717748,235,0 +170744717796,235,0 +170744717845,238,0 +170744717893,239,0 +170744717941,218,0 +170744717989,216,0 +170744718037,216,0 +170744718087,215,0 +170744718135,216,0 +170744718184,215,0 +170744718232,216,0 +170744718282,217,0 +170744718330,218,0 +170744718378,218,0 +170744718426,219,0 +170744718475,220,0 +170744718523,222,0 +170744718573,225,0 +170744718621,227,0 +170744718670,229,0 +170744718718,231,0 +170744718768,233,0 +170744718816,233,0 +170744718864,235,0 +170744718911,238,0 +170744718961,237,0 +170744719009,237,0 +170744719059,217,0 +170744719108,216,0 +170744719158,215,0 +170744719207,215,0 +170744719255,216,0 +170744719305,217,0 +170744719353,217,0 +170744719401,218,0 +170744719450,219,0 +170744719500,220,0 +170744719548,219,0 +170744719597,221,0 +170744719645,224,0 +170744719693,226,0 +170744719741,230,0 +170744719791,230,0 +170744719839,234,0 +170744719886,232,0 +170744719934,235,0 +170744719982,237,0 +170744720030,238,0 +170744720078,239,0 +170744720126,239,0 +170744720174,220,0 +170744720223,216,0 +170744720271,215,0 +170744720319,215,0 +170744720367,215,0 +170744720415,215,0 +170744720463,215,0 +170744720511,215,0 +170744720559,216,0 +170744720606,216,0 +170744720654,217,0 +170744720702,218,0 +170744720750,220,0 +170744720799,221,0 +170744720847,223,0 +170744720895,226,0 +170744720943,229,0 +170744720991,231,0 +170744721039,231,0 +170744721087,234,0 +170744721137,235,0 +170744721185,238,0 +170744721233,238,0 +170744721282,220,0 +170744721332,215,0 +170744721381,215,0 +170744721431,215,0 +170744721479,215,0 +170744721527,215,0 +170744721575,215,0 +170744721622,215,0 +170744721672,216,0 +170744721720,216,0 +170744721768,217,0 +170744721817,218,0 +170744721865,218,0 +170744721913,222,0 +170744721961,224,0 +170744722009,227,0 +170744722057,230,0 +170744722107,230,0 +170744722155,231,0 +170744722202,232,0 +170744722250,235,0 +170744722300,238,0 +170744722348,238,0 +170744722397,220,0 +170744722445,215,0 +170744722493,215,0 +170744722541,215,0 +170744722589,215,0 +170744722639,215,0 +170744722688,216,0 +170744722736,216,0 +170744722786,217,0 +170744722834,218,0 +170744722882,218,0 +170744722929,220,0 +170744722978,221,0 +170744723027,222,0 +170744723077,227,0 +170744723125,228,0 +170744723174,228,0 +170744723224,231,0 +170744723272,233,0 +170744723321,235,0 +170744723371,235,0 +170744723419,238,0 +170744723468,240,0 +170744723518,220,0 +170744723566,216,0 +170744723614,215,0 +170744723663,215,0 +170744723713,215,0 +170744723761,215,0 +170744723809,215,0 +170744723858,215,0 +170744723906,216,0 +170744723954,217,0 +170744724002,217,0 +170744724052,218,0 +170744724101,219,0 +170744724151,222,0 +170744724199,224,0 +170744724247,227,0 +170744724296,229,0 +170744724346,231,0 +170744724394,232,0 +170744724441,234,0 +170744724489,235,0 +170744724537,238,0 +170744724585,240,0 +170744724633,219,0 +170744724683,216,0 +170744724731,215,0 +170744724780,215,0 +170744724828,215,0 +170744724878,215,0 +170744724926,215,0 +170744724974,215,0 +170744725024,216,0 +170744725072,216,0 +170744725121,217,0 +170744725169,218,0 +170744725217,218,0 +170744725265,221,0 +170744725315,224,0 +170744725363,226,0 +170744725410,228,0 +170744725458,231,0 +170744725508,231,0 +170744725558,234,0 +170744725607,235,0 +170744725655,240,0 +170744725704,239,0 +170744725752,221,0 +170744725800,216,0 +170744725848,215,0 +170744725896,216,0 +170744725946,215,0 +170744725995,215,0 +170744726043,215,0 +170744726091,216,0 +170744726139,216,0 +170744726187,218,0 +170744726235,218,0 +170744726283,219,0 +170744726331,220,0 +170744726381,223,0 +170744726430,224,0 +170744726480,227,0 +170744726528,230,0 +170744726577,233,0 +170744726625,232,0 +170744726673,235,0 +170744726723,236,0 +170744726772,238,0 +170744726820,239,0 +170744726870,219,0 +170744726918,216,0 +170744726966,215,0 +170744727014,215,0 +170744727063,215,0 +170744727111,215,0 +170744727159,216,0 +170744727208,216,0 +170744727256,217,0 +170744727304,217,0 +170744727352,218,0 +170744727400,219,0 +170744727448,220,0 +170744727496,224,0 +170744727545,227,0 +170744727595,228,0 +170744727645,232,0 +170744727694,231,0 +170744727742,233,0 +170744727792,235,0 +170744727840,235,0 +170744727888,238,0 +170744727936,238,0 +170744727985,219,0 +170744728035,217,0 +170744728084,216,0 +170744728134,217,0 +170744728182,216,0 +170744728230,216,0 +170744728278,217,0 +170744728325,218,0 +170744728373,218,0 +170744728423,220,0 +170744728472,221,0 +170744728522,222,0 +170744728570,226,0 +170744728619,226,0 +170744728669,231,0 +170744728717,231,0 +170744728765,233,0 +170744728813,234,0 +170744728861,235,0 +170744728910,238,0 +170744728960,238,0 +170744729008,239,0 +170744729058,239,0 +170744729107,219,0 +170744729155,216,0 +170744729203,215,0 +170744729251,215,0 +170744729299,216,0 +170744729346,217,0 +170744729394,217,0 +170744729442,218,0 +170744729492,219,0 +170744729540,219,0 +170744729588,220,0 +170744729636,223,0 +170744729685,225,0 +170744729733,228,0 +170744729781,229,0 +170744729829,231,0 +170744729879,235,0 +170744729928,234,0 +170744729976,235,0 +170744730024,238,0 +170744730072,237,0 +170744730122,237,0 +170744730169,239,0 +170744730217,221,0 +170744730265,216,0 +170744730313,215,0 +170744730363,215,0 +170744730412,215,0 +170744730462,216,0 +170744730510,217,0 +170744730558,217,0 +170744730606,217,0 +170744730654,219,0 +170744730702,219,0 +170744730751,221,0 +170744730801,225,0 +170744730850,227,0 +170744730900,230,0 +170744730948,230,0 +170744730997,231,0 +170744731047,233,0 +170744731095,236,0 +170744731143,237,0 +170744731192,238,0 +170744731240,238,0 +170744731288,238,0 +170744731336,225,0 +170744731386,216,0 +170744731434,215,0 +170744731482,215,0 +170744731530,215,0 +170744731578,215,0 +170744731625,215,0 +170744731673,216,0 +170744731721,217,0 +170744731771,217,0 +170744731821,218,0 +170744731868,218,0 +170744731916,219,0 +170744731966,223,0 +170744732016,226,0 +170744732065,228,0 +170744732115,230,0 +170744732164,230,0 +170744732212,233,0 +170744732260,234,0 +170744732308,236,0 +170744732356,234,0 +170744732404,239,0 +170744732454,236,0 +170744732503,217,0 +170744732551,216,0 +170744732599,215,0 +170744732647,216,0 +170744732695,217,0 +170744732745,217,0 +170744732794,218,0 +170744732842,219,0 +170744732890,219,0 +170744732938,221,0 +170744732988,221,0 +170744733037,221,0 +170744733085,226,0 +170744733135,228,0 +170744733184,231,0 +170744733234,232,0 +170744733283,233,0 +170744733331,233,0 +170744733381,236,0 +170744733429,237,0 +170744733477,232,0 +170744733526,239,0 +170744733576,224,0 +170744733624,216,0 +170744733672,215,0 +170744733721,215,0 +170744733771,216,0 +170744733820,216,0 +170744733868,217,0 +170744733916,218,0 +170744733964,218,0 +170744734012,220,0 +170744734062,222,0 +170744734111,222,0 +170744734159,224,0 +170744734207,227,0 +170744734255,227,0 +170744734303,230,0 +170744734351,231,0 +170744734399,232,0 +170744734448,234,0 +170744734496,234,0 +170744734544,237,0 +170744734592,230,0 +170744734640,238,0 +170744734688,237,0 +170744734736,217,0 +170744734784,215,0 +170744734834,215,0 +170744734882,215,0 +170744734931,215,0 +170744734979,215,0 +170744735027,215,0 +170744735075,215,0 +170744735125,215,0 +170744735173,216,0 +170744735222,216,0 +170744735272,218,0 +170744735321,220,0 +170744735369,223,0 +170744735417,226,0 +170744735467,229,0 +170744735516,230,0 +170744735564,230,0 +170744735614,234,0 +170744735662,235,0 +170744735710,231,0 +170744735759,238,0 +170744735809,225,0 +170744735857,216,0 +170744735905,215,0 +170744735953,215,0 +170744736001,215,0 +170744736048,215,0 +170744736098,216,0 +170744736148,216,0 +170744736195,217,0 +170744736245,217,0 +170744736293,219,0 +170744736341,220,0 +170744736389,220,0 +170744736438,223,0 +170744736488,226,0 +170744736538,229,0 +170744736587,230,0 +170744736637,232,0 +170744736685,234,0 +170744736734,235,0 +170744736784,235,0 +170744736833,235,0 +170744736881,239,0 +170744736931,223,0 +170744736980,216,0 +170744737030,216,0 +170744737079,215,0 +170744737129,215,0 +170744737178,215,0 +170744737226,215,0 +170744737276,215,0 +170744737324,216,0 +170744737373,217,0 +170744737421,218,0 +170744737469,219,0 +170744737517,220,0 +170744737570,221,0 +170744737618,224,0 +170744737666,226,0 +170744737714,230,0 +170744737762,231,0 +170744737811,232,0 +170744737859,232,0 +170744737907,234,0 +170744737955,238,0 +170744738003,239,0 +170744738051,219,0 +170744738101,215,0 +170744738150,215,0 +170744738198,215,0 +170744738246,215,0 +170744738296,215,0 +170744738344,216,0 +170744738393,217,0 +170744738443,217,0 +170744738491,218,0 +170744738539,219,0 +170744738588,220,0 +170744738636,219,0 +170744738684,225,0 +170744738732,226,0 +170744738780,229,0 +170744738828,230,0 +170744738876,231,0 +170744738925,233,0 +170744738973,233,0 +170744739021,236,0 +170744739069,233,0 +170744739119,238,0 +170744739168,224,0 +170744739218,217,0 +170744739266,216,0 +170744739315,216,0 +170744739365,215,0 +170744739415,216,0 +170744739464,216,0 +170744739514,216,0 +170744739562,215,0 +170744739610,215,0 +170744739659,216,0 +170744739707,218,0 +170744739755,220,0 +170744739805,220,0 +170744739853,222,0 +170744739902,225,0 +170744739950,227,0 +170744739999,229,0 +170744740047,231,0 +170744740097,232,0 +170744740147,234,0 +170744740194,234,0 +170744740244,237,0 +170744740292,220,0 +170744740340,216,0 +170744740388,215,0 +170744740436,215,0 +170744740484,215,0 +170744740534,215,0 +170744740583,215,0 +170744740631,215,0 +170744740679,215,0 +170744740727,215,0 +170744740777,216,0 +170744740826,217,0 +170744740876,218,0 +170744740925,220,0 +170744740975,223,0 +170744741024,227,0 +170744741074,229,0 +170744741122,230,0 +170744741170,234,0 +170744741218,233,0 +170744741267,236,0 +170744741317,233,0 +170744741366,239,0 +170744741416,219,0 +170744741465,215,0 +170744741513,215,0 +170744741561,215,0 +170744741611,215,0 +170744741659,215,0 +170744741708,214,0 +170744741758,215,0 +170744741806,215,0 +170744741855,216,0 +170744741903,217,0 +170744741951,217,0 +170744742001,218,0 +170744742050,220,0 +170744742098,224,0 +170744742148,225,0 +170744742196,227,0 +170744742244,230,0 +170744742292,231,0 +170744742340,234,0 +170744742389,234,0 +170744742437,237,0 +170744742485,239,0 +170744742533,220,0 +170744742583,217,0 +170744742632,217,0 +170744742682,217,0 +170744742730,217,0 +170744742779,217,0 +170744742827,217,0 +170744742875,216,0 +170744742923,215,0 +170744742973,216,0 +170744743021,217,0 +170744743070,218,0 +170744743120,219,0 +170744743168,219,0 +170744743216,222,0 +170744743264,224,0 +170744743313,228,0 +170744743361,231,0 +170744743411,231,0 +170744743460,233,0 +170744743508,234,0 +170744743556,237,0 +170744743604,239,0 +170744743652,220,0 +170744743700,216,0 +170744743748,216,0 +170744743796,217,0 +170744743846,216,0 +170744743893,215,0 +170744743943,215,0 +170744743991,216,0 +170744744039,217,0 +170744744087,217,0 +170744744135,218,0 +170744744183,219,0 +170744744232,219,0 +170744744282,221,0 +170744744330,225,0 +170744744378,227,0 +170744744426,228,0 +170744744474,229,0 +170744744522,231,0 +170744744570,233,0 +170744744618,234,0 +170744744665,231,0 +170744744715,238,0 +170744744763,225,0 +170744744811,216,0 +170744744860,215,0 +170744744908,215,0 +170744744958,215,0 +170744745006,215,0 +170744745055,215,0 +170744745103,215,0 +170744745151,215,0 +170744745201,216,0 +170744745249,217,0 +170744745298,218,0 +170744745348,219,0 +170744745398,222,0 +170744745446,225,0 +170744745493,230,0 +170744745543,229,0 +170744745592,231,0 +170744745642,230,0 +170744745690,234,0 +170744745738,234,0 +170744745787,235,0 +170744745835,240,0 +170744745883,221,0 +170744745933,216,0 +170744745983,215,0 +170744746032,215,0 +170744746080,215,0 +170744746128,215,0 +170744746178,215,0 +170744746226,215,0 +170744746275,215,0 +170744746323,215,0 +170744746372,215,0 +170744746422,215,0 +170744746470,216,0 +170744746518,217,0 +170744746567,218,0 +170744746617,218,0 +170744746667,221,0 +170744746714,223,0 +170744746764,226,0 +170744746814,227,0 +170744746861,230,0 +170744746911,235,0 +170744746959,239,0 +170744747008,221,0 +170744747058,216,0 +170744747108,216,0 +170744747157,217,0 +170744747205,218,0 +170744747253,218,0 +170744747301,219,0 +170744747351,220,0 +170744747400,221,0 +170744747450,220,0 +170744747498,223,0 +170744747546,223,0 +170744747595,226,0 +170744747645,227,0 +170744747694,229,0 +170744747744,233,0 +170744747793,233,0 +170744747841,234,0 +170744747889,233,0 +170744747937,235,0 +170744747985,236,0 +170744748033,238,0 +170744748082,239,0 +170744748132,220,0 +170744748180,215,0 +170744748227,215,0 +170744748275,215,0 +170744748323,215,0 +170744748371,215,0 +170744748419,215,0 +170744748467,215,0 +170744748515,215,0 +170744748563,215,0 +170744748611,215,0 +170744748659,215,0 +170744748707,215,0 +170744748754,216,0 +170744748802,216,0 +170744748850,218,0 +170744748898,220,0 +170744748946,223,0 +170744748996,224,0 +170744749044,227,0 +170744749091,229,0 +170744749139,229,0 +170744749187,239,0 +170744749235,238,0 +170744749283,218,0 +170744749331,216,0 +170744749380,215,0 +170744749428,215,0 +170744749476,215,0 +170744749524,216,0 +170744749572,217,0 +170744749620,216,0 +170744749668,218,0 +170744749717,218,0 +170744749765,219,0 +170744749813,221,0 +170744749861,222,0 +170744749909,224,0 +170744749957,228,0 +170744750005,229,0 +170744750053,231,0 +170744750101,232,0 +170744750150,233,0 +170744750198,236,0 +170744750246,235,0 +170744750294,238,0 +170744750342,238,0 +170744750390,219,0 +170744750437,215,0 +170744750485,215,0 +170744750535,215,0 +170744750583,215,0 +170744750632,215,0 +170744750680,215,0 +170744750728,215,0 +170744750776,215,0 +170744750824,215,0 +170744750872,216,0 +170744750920,216,0 +170744750968,217,0 +170744751017,218,0 +170744751067,220,0 +170744751115,223,0 +170744751163,225,0 +170744751211,227,0 +170744751259,228,0 +170744751307,231,0 +170744751356,233,0 +170744751406,237,0 +170744751455,238,0 +170744751503,219,0 +170744751551,215,0 +170744751599,215,0 +170744751647,215,0 +170744751695,215,0 +170744751743,215,0 +170744751791,216,0 +170744751841,216,0 +170744751890,217,0 +170744751938,217,0 +170744751986,218,0 +170744752036,220,0 +170744752084,220,0 +170744752132,222,0 +170744752179,226,0 +170744752227,228,0 +170744752277,230,0 +170744752326,231,0 +170744752376,232,0 +170744752424,232,0 +170744752472,236,0 +170744752521,238,0 +170744752569,237,0 +170744752617,219,0 +170744752665,215,0 +170744752713,215,0 +170744752761,215,0 +170744752809,216,0 +170744752856,216,0 +170744752904,217,0 +170744752952,217,0 +170744753000,218,0 +170744753050,219,0 +170744753098,221,0 +170744753147,224,0 +170744753197,231,0 +170744753246,226,0 +170744753294,229,0 +170744753342,230,0 +170744753390,232,0 +170744753438,234,0 +170744753486,236,0 +170744753536,241,0 +170744753583,238,0 +170744753633,238,0 +170744753683,237,0 +170744753730,220,0 +170744753778,215,0 +170744753826,214,0 +170744753874,215,0 +170744753924,215,0 +170744753973,215,0 +170744754023,215,0 +170744754072,216,0 +170744754122,216,0 +170744754172,217,0 +170744754221,218,0 +170744754269,219,0 +170744754317,220,0 +170744754365,223,0 +170744754413,226,0 +170744754461,228,0 +170744754510,229,0 +170744754558,231,0 +170744754608,232,0 +170744754656,234,0 +170744754705,236,0 +170744754753,238,0 +170744754803,238,0 +170744754851,220,0 +170744754899,215,0 +170744754947,216,0 +170744754996,216,0 +170744755044,218,0 +170744755094,218,0 +170744755143,219,0 +170744755193,219,0 +170744755242,220,0 +170744755292,221,0 +170744755341,223,0 +170744755391,225,0 +170744755440,228,0 +170744755488,231,0 +170744755538,231,0 +170744755587,234,0 +170744755635,234,0 +170744755685,235,0 +170744755735,236,0 +170744755784,239,0 +170744755834,239,0 +170744755882,238,0 +170744755930,238,0 +170744755978,219,0 +170744756027,216,0 +170744756075,216,0 +170744756123,217,0 +170744756171,217,0 +170744756221,218,0 +170744756270,219,0 +170744756318,219,0 +170744756366,220,0 +170744756416,222,0 +170744756464,223,0 +170744756513,225,0 +170744756563,229,0 +170744756612,231,0 +170744756660,231,0 +170744756708,234,0 +170744756756,235,0 +170744756806,236,0 +170744756854,239,0 +170744756903,237,0 +170744756951,239,0 +170744757001,238,0 +170744757050,238,0 +170744757100,220,0 +170744757149,216,0 +170744757197,216,0 +170744757245,217,0 +170744757295,218,0 +170744757343,219,0 +170744757391,220,0 +170744757440,223,0 +170744757490,220,0 +170744757538,222,0 +170744757586,224,0 +170744757634,226,0 +170744757682,230,0 +170744757730,230,0 +170744757778,235,0 +170744757827,234,0 +170744757877,238,0 +170744757926,236,0 +170744757976,239,0 +170744758024,239,0 +170744758073,238,0 +170744758123,239,0 +170744758172,239,0 +170744758222,217,0 +170744758270,215,0 +170744758318,215,0 +170744758366,216,0 +170744758414,217,0 +170744758462,217,0 +170744758510,218,0 +170744758558,219,0 +170744758607,221,0 +170744758657,221,0 +170744758706,223,0 +170744758754,224,0 +170744758804,227,0 +170744758852,230,0 +170744758901,231,0 +170744758951,233,0 +170744758999,234,0 +170744759048,236,0 +170744759098,239,0 +170744759146,240,0 +170744759195,234,0 +170744759243,239,0 +170744759293,239,0 +170744759342,217,0 +170744759390,215,0 +170744759438,215,0 +170744759488,215,0 +170744759537,215,0 +170744759585,216,0 +170744759633,217,0 +170744759683,217,0 +170744759732,217,0 +170744759782,219,0 +170744759830,226,0 +170744759878,222,0 +170744759927,224,0 +170744759977,226,0 +170744760026,227,0 diff --git a/laser_value/0209-13.csv b/laser_value/0209-13.csv new file mode 100644 index 0000000..c666f1c --- /dev/null +++ b/laser_value/0209-13.csv @@ -0,0 +1,7417 @@ +timestamp,laser_value,event +170744760075,230,0 +170744760123,233,0 +170744760171,234,0 +170744760219,234,0 +170744760268,234,0 +170744760318,239,0 +170744760366,240,0 +170744760414,239,0 +170744760462,218,0 +170744760511,215,0 +170744760559,215,0 +170744760607,215,0 +170744760657,215,0 +170744760705,215,0 +170744760754,215,0 +170744760802,216,0 +170744760850,216,0 +170744760900,217,0 +170744760948,218,0 +170744760996,219,0 +170744761044,219,0 +170744761092,222,0 +170744761141,225,0 +170744761189,226,0 +170744761239,230,0 +170744761287,232,0 +170744761336,234,0 +170744761386,236,0 +170744761435,233,0 +170744761485,238,0 +170744761533,235,0 +170744761581,217,0 +170744761630,216,0 +170744761678,215,0 +170744761726,216,0 +170744761774,216,0 +170744761822,217,0 +170744761870,217,0 +170744761918,218,0 +170744761966,219,0 +170744762014,220,0 +170744762061,220,0 +170744762111,221,0 +170744762159,223,0 +170744762207,226,0 +170744762255,229,0 +170744762304,229,0 +170744762354,233,0 +170744762403,235,0 +170744762451,235,0 +170744762499,235,0 +170744762549,233,0 +170744762597,240,0 +170744762645,241,0 +170744762694,219,0 +170744762744,216,0 +170744762793,215,0 +170744762843,216,0 +170744762891,216,0 +170744762939,216,0 +170744762988,215,0 +170744763036,215,0 +170744763084,215,0 +170744763134,215,0 +170744763181,216,0 +170744763231,216,0 +170744763279,218,0 +170744763327,219,0 +170744763376,220,0 +170744763426,222,0 +170744763475,226,0 +170744763523,226,0 +170744763571,229,0 +170744763619,230,0 +170744763669,234,0 +170744763716,238,0 +170744763764,239,0 +170744763812,220,0 +170744763860,215,0 +170744763908,215,0 +170744763957,215,0 +170744764005,215,0 +170744764053,215,0 +170744764103,214,0 +170744764151,215,0 +170744764200,215,0 +170744764248,215,0 +170744764297,215,0 +170744764345,215,0 +170744764393,215,0 +170744764441,215,0 +170744764489,215,0 +170744764538,215,0 +170744764586,215,0 +170744764634,216,0 +170744764682,217,0 +170744764730,217,0 +170744764778,217,0 +170744764826,219,0 +170744764874,219,0 +170744764922,220,0 +170744764969,223,0 +170744765017,225,0 +170744765065,231,0 +170744765113,233,0 +170744765163,232,0 +170744765212,234,0 +170744765260,237,0 +170744765308,237,0 +170744765358,234,0 +170744765407,238,0 +170744765455,239,0 +170744765505,217,0 +170744765553,215,0 +170744765600,215,0 +170744765650,215,0 +170744765698,215,0 +170744765747,216,0 +170744765797,217,0 +170744765845,217,0 +170744765893,217,0 +170744765941,218,0 +170744765989,219,0 +170744766037,220,0 +170744766085,221,0 +170744766133,223,0 +170744766182,226,0 +170744766232,229,0 +170744766280,232,0 +170744766329,233,0 +170744766377,234,0 +170744766427,236,0 +170744766475,239,0 +170744766523,240,0 +170744766571,227,0 +170744766620,216,0 +170744766668,215,0 +170744766717,216,0 +170744766767,215,0 +170744766817,216,0 +170744766866,215,0 +170744766914,215,0 +170744766962,222,0 +170744767010,217,0 +170744767060,218,0 +170744767107,218,0 +170744767155,219,0 +170744767203,219,0 +170744767251,221,0 +170744767301,223,0 +170744767349,227,0 +170744767397,229,0 +170744767445,231,0 +170744767494,233,0 +170744767542,234,0 +170744767590,235,0 +170744767638,255,0 +170744767686,238,0 +170744767734,218,0 +170744767782,216,0 +170744767832,215,0 +170744767881,215,0 +170744767931,215,0 +170744767980,215,0 +170744768030,215,0 +170744768078,215,0 +170744768126,215,0 +170744768174,216,0 +170744768223,217,0 +170744768271,218,0 +170744768320,218,0 +170744768368,219,0 +170744768416,222,0 +170744768464,224,0 +170744768512,227,0 +170744768560,229,0 +170744768608,231,0 +170744768656,233,0 +170744768704,234,0 +170744768751,238,0 +170744768799,238,0 +170744768847,221,0 +170744768897,216,0 +170744768946,217,0 +170744768994,217,0 +170744769044,218,0 +170744769092,218,0 +170744769140,219,0 +170744769189,220,0 +170744769239,220,0 +170744769287,223,0 +170744769335,223,0 +170744769383,225,0 +170744769431,228,0 +170744769480,230,0 +170744769528,231,0 +170744769576,234,0 +170744769624,234,0 +170744769672,237,0 +170744769720,245,0 +170744769768,240,0 +170744769816,251,0 +170744769864,240,0 +170744769913,238,0 +170744769963,218,0 +170744770012,215,0 +170744770062,216,0 +170744770110,216,0 +170744770158,217,0 +170744770206,217,0 +170744770253,218,0 +170744770303,219,0 +170744770351,220,0 +170744770399,222,0 +170744770448,224,0 +170744770496,226,0 +170744770544,229,0 +170744770592,231,0 +170744770640,232,0 +170744770689,234,0 +170744770739,235,0 +170744770788,237,0 +170744770836,237,0 +170744770886,239,0 +170744770935,237,0 +170744770983,238,0 +170744771033,238,0 +170744771081,218,0 +170744771129,215,0 +170744771177,215,0 +170744771225,216,0 +170744771272,216,0 +170744771322,217,0 +170744771372,218,0 +170744771420,218,0 +170744771468,218,0 +170744771515,221,0 +170744771565,223,0 +170744771615,226,0 +170744771664,228,0 +170744771712,230,0 +170744771760,233,0 +170744771808,238,0 +170744771857,234,0 +170744771905,235,0 +170744771955,237,0 +170744772003,237,0 +170744772050,238,0 +170744772098,239,0 +170744772148,238,0 +170744772196,220,0 +170744772245,215,0 +170744772295,215,0 +170744772342,215,0 +170744772390,215,0 +170744772440,215,0 +170744772488,215,0 +170744772536,216,0 +170744772584,217,0 +170744772633,218,0 +170744772683,219,0 +170744772731,221,0 +170744772779,224,0 +170744772827,227,0 +170744772876,229,0 +170744772926,231,0 +170744772975,232,0 +170744773023,235,0 +170744773073,236,0 +170744773121,238,0 +170744773169,236,0 +170744773218,238,0 +170744773266,240,0 +170744773314,220,0 +170744773362,215,0 +170744773412,215,0 +170744773460,215,0 +170744773508,215,0 +170744773555,216,0 +170744773605,217,0 +170744773653,217,0 +170744773701,219,0 +170744773749,218,0 +170744773797,220,0 +170744773845,223,0 +170744773893,225,0 +170744773942,227,0 +170744773990,233,0 +170744774040,236,0 +170744774087,233,0 +170744774135,233,0 +170744774185,239,0 +170744774233,235,0 +170744774282,237,0 +170744774332,238,0 +170744774380,239,0 +170744774427,220,0 +170744774475,215,0 +170744774523,215,0 +170744774571,215,0 +170744774621,215,0 +170744774670,215,0 +170744774718,217,0 +170744774766,218,0 +170744774814,218,0 +170744774864,218,0 +170744774912,219,0 +170744774961,221,0 +170744775009,225,0 +170744775057,226,0 +170744775105,230,0 +170744775152,231,0 +170744775202,232,0 +170744775250,233,0 +170744775298,236,0 +170744775345,238,0 +170744775393,237,0 +170744775441,237,0 +170744775491,238,0 +170744775539,218,0 +170744775587,216,0 +170744775636,215,0 +170744775686,215,0 +170744775735,215,0 +170744775783,215,0 +170744775831,215,0 +170744775879,215,0 +170744775929,215,0 +170744775977,216,0 +170744776025,217,0 +170744776073,218,0 +170744776120,219,0 +170744776168,221,0 +170744776216,223,0 +170744776264,225,0 +170744776314,230,0 +170744776362,232,0 +170744776410,232,0 +170744776458,233,0 +170744776506,235,0 +170744776554,238,0 +170744776602,239,0 +170744776651,227,0 +170744776701,217,0 +170744776750,216,0 +170744776800,215,0 +170744776849,215,0 +170744776899,215,0 +170744776947,215,0 +170744776995,215,0 +170744777043,215,0 +170744777090,215,0 +170744777138,215,0 +170744777186,216,0 +170744777234,218,0 +170744777282,218,0 +170744777332,220,0 +170744777379,223,0 +170744777429,226,0 +170744777477,230,0 +170744777526,229,0 +170744777574,231,0 +170744777624,233,0 +170744777672,237,0 +170744777720,240,0 +170744777768,219,0 +170744777816,217,0 +170744777865,217,0 +170744777913,215,0 +170744777961,216,0 +170744778010,216,0 +170744778058,218,0 +170744778106,218,0 +170744778156,219,0 +170744778205,219,0 +170744778253,220,0 +170744778303,222,0 +170744778352,225,0 +170744778402,227,0 +170744778451,230,0 +170744778501,232,0 +170744778550,234,0 +170744778600,235,0 +170744778648,234,0 +170744778696,237,0 +170744778745,236,0 +170744778795,238,0 +170744778843,238,0 +170744778891,220,0 +170744778939,216,0 +170744778988,215,0 +170744779036,215,0 +170744779086,215,0 +170744779136,215,0 +170744779185,216,0 +170744779235,216,0 +170744779283,217,0 +170744779332,218,0 +170744779382,219,0 +170744779430,219,0 +170744779478,221,0 +170744779526,223,0 +170744779574,225,0 +170744779623,228,0 +170744779673,229,0 +170744779722,234,0 +170744779772,233,0 +170744779821,234,0 +170744779869,236,0 +170744779917,238,0 +170744779966,238,0 +170744780016,221,0 +170744780064,216,0 +170744780114,216,0 +170744780163,216,0 +170744780213,216,0 +170744780262,216,0 +170744780310,215,0 +170744780358,215,0 +170744780408,216,0 +170744780456,217,0 +170744780505,217,0 +170744780553,219,0 +170744780601,219,0 +170744780651,222,0 +170744780700,225,0 +170744780748,229,0 +170744780797,229,0 +170744780847,231,0 +170744780895,231,0 +170744780942,233,0 +170744780990,234,0 +170744781038,238,0 +170744781086,239,0 +170744781134,219,0 +170744781182,215,0 +170744781231,215,0 +170744781281,215,0 +170744781330,214,0 +170744781380,214,0 +170744781428,216,0 +170744781475,216,0 +170744781523,217,0 +170744781571,218,0 +170744781621,218,0 +170744781668,220,0 +170744781716,221,0 +170744781764,223,0 +170744781814,227,0 +170744781862,228,0 +170744781910,230,0 +170744781957,233,0 +170744782005,233,0 +170744782053,235,0 +170744782101,235,0 +170744782149,237,0 +170744782197,240,0 +170744782245,220,0 +170744782294,216,0 +170744782343,215,0 +170744782393,215,0 +170744782441,215,0 +170744782489,215,0 +170744782536,215,0 +170744782584,216,0 +170744782632,217,0 +170744782680,217,0 +170744782728,218,0 +170744782776,219,0 +170744782824,220,0 +170744782873,223,0 +170744782921,226,0 +170744782969,228,0 +170744783017,229,0 +170744783065,232,0 +170744783113,234,0 +170744783161,235,0 +170744783208,236,0 +170744783256,232,0 +170744783304,238,0 +170744783352,239,0 +170744783402,218,0 +170744783451,216,0 +170744783501,215,0 +170744783549,215,0 +170744783598,215,0 +170744783646,214,0 +170744783696,215,0 +170744783745,215,0 +170744783793,215,0 +170744783843,215,0 +170744783892,215,0 +170744783942,216,0 +170744783990,217,0 +170744784039,218,0 +170744784087,218,0 +170744784135,221,0 +170744784183,223,0 +170744784231,227,0 +170744784279,227,0 +170744784327,231,0 +170744784375,228,0 +170744784422,238,0 +170744784470,238,0 +170744784518,217,0 +170744784566,215,0 +170744784614,215,0 +170744784662,215,0 +170744784710,215,0 +170744784758,215,0 +170744784806,217,0 +170744784855,217,0 +170744784905,217,0 +170744784954,218,0 +170744785004,219,0 +170744785053,221,0 +170744785101,223,0 +170744785149,228,0 +170744785197,227,0 +170744785246,231,0 +170744785296,233,0 +170744785344,233,0 +170744785393,235,0 +170744785441,257,0 +170744785489,232,0 +170744785537,239,0 +170744785587,233,0 +170744785636,216,0 +170744785684,215,0 +170744785732,215,0 +170744785780,215,0 +170744785830,215,0 +170744785879,215,0 +170744785927,216,0 +170744785977,216,0 +170744786025,219,0 +170744786073,218,0 +170744786123,218,0 +170744786171,218,0 +170744786219,221,0 +170744786268,224,0 +170744786318,226,0 +170744786366,228,0 +170744786414,230,0 +170744786463,232,0 +170744786511,234,0 +170744786559,235,0 +170744786607,235,0 +170744786655,236,0 +170744786703,237,0 +170744786752,219,0 +170744786800,216,0 +170744786848,215,0 +170744786898,215,0 +170744786946,215,0 +170744786994,215,0 +170744787042,215,0 +170744787092,215,0 +170744787141,215,0 +170744787191,216,0 +170744787239,217,0 +170744787288,217,0 +170744787338,219,0 +170744787387,222,0 +170744787435,224,0 +170744787483,226,0 +170744787533,228,0 +170744787581,229,0 +170744787629,232,0 +170744787678,235,0 +170744787726,234,0 +170744787774,237,0 +170744787822,237,0 +170744787872,220,0 +170744787920,215,0 +170744787967,215,0 +170744788015,215,0 +170744788063,215,0 +170744788111,215,0 +170744788161,215,0 +170744788209,216,0 +170744788257,217,0 +170744788305,218,0 +170744788353,218,0 +170744788402,218,0 +170744788450,220,0 +170744788500,223,0 +170744788549,225,0 +170744788599,227,0 +170744788647,229,0 +170744788695,232,0 +170744788744,233,0 +170744788794,235,0 +170744788843,237,0 +170744788891,238,0 +170744788939,237,0 +170744788989,218,0 +170744789037,215,0 +170744789086,215,0 +170744789136,215,0 +170744789184,215,0 +170744789232,215,0 +170744789281,216,0 +170744789331,217,0 +170744789380,217,0 +170744789428,219,0 +170744789476,219,0 +170744789526,219,0 +170744789575,222,0 +170744789623,225,0 +170744789671,228,0 +170744789719,229,0 +170744789768,231,0 +170744789818,232,0 +170744789867,234,0 +170744789915,236,0 +170744789963,234,0 +170744790011,238,0 +170744790059,238,0 +170744790107,218,0 +170744790157,215,0 +170744790205,215,0 +170744790253,215,0 +170744790302,215,0 +170744790352,215,0 +170744790399,215,0 +170744790447,215,0 +170744790495,216,0 +170744790543,217,0 +170744790591,218,0 +170744790639,218,0 +170744790687,220,0 +170744790736,224,0 +170744790784,226,0 +170744790832,228,0 +170744790880,229,0 +170744790928,231,0 +170744790976,232,0 +170744791025,234,0 +170744791073,236,0 +170744791121,236,0 +170744791169,238,0 +170744791218,220,0 +170744791266,216,0 +170744791314,218,0 +170744791363,217,0 +170744791411,218,0 +170744791459,218,0 +170744791507,220,0 +170744791557,222,0 +170744791606,221,0 +170744791654,224,0 +170744791702,226,0 +170744791750,227,0 +170744791798,227,0 +170744791848,230,0 +170744791896,233,0 +170744791945,235,0 +170744791995,236,0 +170744792044,237,0 +170744792094,238,0 +170744792142,237,0 +170744792191,240,0 +170744792239,239,0 +170744792289,238,0 +170744792338,220,0 +170744792388,215,0 +170744792436,215,0 +170744792485,215,0 +170744792533,215,0 +170744792581,215,0 +170744792629,215,0 +170744792677,215,0 +170744792727,216,0 +170744792776,217,0 +170744792826,217,0 +170744792875,219,0 +170744792923,220,0 +170744792973,223,0 +170744793022,227,0 +170744793070,229,0 +170744793120,231,0 +170744793169,231,0 +170744793219,232,0 +170744793268,236,0 +170744793318,233,0 +170744793366,238,0 +170744793416,236,0 +170744793463,219,0 +170744793511,219,0 +170744793559,217,0 +170744793607,218,0 +170744793655,219,0 +170744793705,221,0 +170744793753,221,0 +170744793801,221,0 +170744793849,222,0 +170744793898,224,0 +170744793946,226,0 +170744793996,229,0 +170744794045,230,0 +170744794093,232,0 +170744794143,233,0 +170744794191,235,0 +170744794239,235,0 +170744794286,237,0 +170744794335,238,0 +170744794382,238,0 +170744794432,240,0 +170744794480,241,0 +170744794528,238,0 +170744794576,220,0 +170744794624,215,0 +170744794672,215,0 +170744794720,215,0 +170744794769,215,0 +170744794817,215,0 +170744794867,215,0 +170744794916,215,0 +170744794966,215,0 +170744795015,215,0 +170744795065,215,0 +170744795114,215,0 +170744795164,216,0 +170744795212,217,0 +170744795261,219,0 +170744795311,221,0 +170744795359,224,0 +170744795407,225,0 +170744795455,227,0 +170744795503,230,0 +170744795551,232,0 +170744795600,237,0 +170744795648,238,0 +170744795696,220,0 +170744795746,216,0 +170744795794,217,0 +170744795842,217,0 +170744795891,218,0 +170744795941,219,0 +170744795990,220,0 +170744796038,220,0 +170744796088,221,0 +170744796137,222,0 +170744796185,224,0 +170744796233,225,0 +170744796281,230,0 +170744796329,230,0 +170744796379,232,0 +170744796428,234,0 +170744796476,235,0 +170744796526,238,0 +170744796575,239,0 +170744796625,238,0 +170744796673,242,0 +170744796722,240,0 +170744796770,239,0 +170744796818,219,0 +170744796868,216,0 +170744796916,216,0 +170744796964,217,0 +170744797011,217,0 +170744797061,219,0 +170744797109,219,0 +170744797159,220,0 +170744797208,222,0 +170744797258,222,0 +170744797307,224,0 +170744797357,227,0 +170744797405,228,0 +170744797453,230,0 +170744797501,232,0 +170744797550,234,0 +170744797600,234,0 +170744797647,235,0 +170744797697,238,0 +170744797745,238,0 +170744797795,238,0 +170744797842,239,0 +170744797892,238,0 +170744797940,219,0 +170744797988,215,0 +170744798036,215,0 +170744798084,215,0 +170744798132,215,0 +170744798180,215,0 +170744798228,215,0 +170744798276,215,0 +170744798324,216,0 +170744798374,217,0 +170744798423,217,0 +170744798471,219,0 +170744798519,220,0 +170744798569,223,0 +170744798618,226,0 +170744798666,228,0 +170744798714,230,0 +170744798764,231,0 +170744798813,231,0 +170744798863,234,0 +170744798911,235,0 +170744798960,239,0 +170744799008,237,0 +170744799056,219,0 +170744799104,215,0 +170744799152,215,0 +170744799200,215,0 +170744799250,215,0 +170744799299,215,0 +170744799349,215,0 +170744799397,215,0 +170744799446,215,0 +170744799496,215,0 +170744799544,216,0 +170744799592,217,0 +170744799640,218,0 +170744799689,219,0 +170744799739,223,0 +170744799787,225,0 +170744799835,227,0 +170744799883,229,0 +170744799932,231,0 +170744799982,232,0 +170744800031,234,0 +170744800079,238,0 +170744800129,237,0 +170744800178,218,0 +170744800228,215,0 +170744800277,215,0 +170744800325,215,0 +170744800375,215,0 +170744800424,215,0 +170744800472,216,0 +170744800522,216,0 +170744800570,218,0 +170744800618,218,0 +170744800666,218,0 +170744800715,219,0 +170744800765,221,0 +170744800813,224,0 +170744800862,226,0 +170744800910,228,0 +170744800958,231,0 +170744801006,232,0 +170744801055,232,0 +170744801105,233,0 +170744801153,237,0 +170744801201,237,0 +170744801251,236,0 +170744801300,218,0 +170744801350,216,0 +170744801399,215,0 +170744801447,215,0 +170744801497,215,0 +170744801546,215,0 +170744801594,215,0 +170744801642,215,0 +170744801692,215,0 +170744801741,215,0 +170744801789,219,0 +170744801837,217,0 +170744801887,217,0 +170744801936,218,0 +170744801984,221,0 +170744802034,222,0 +170744802082,226,0 +170744802131,226,0 +170744802181,229,0 +170744802230,232,0 +170744802278,232,0 +170744802328,239,0 +170744802376,243,0 +170744802424,218,0 +170744802472,215,0 +170744802521,215,0 +170744802569,215,0 +170744802619,215,0 +170744802668,215,0 +170744802718,215,0 +170744802768,216,0 +170744802817,216,0 +170744802866,217,0 +170744802916,217,0 +170744802964,218,0 +170744803012,219,0 +170744803060,221,0 +170744803107,224,0 +170744803157,226,0 +170744803207,229,0 +170744803256,230,0 +170744803304,231,0 +170744803352,233,0 +170744803400,235,0 +170744803448,237,0 +170744803496,238,0 +170744803544,219,0 +170744803593,215,0 +170744803643,215,0 +170744803692,215,0 +170744803740,215,0 +170744803788,215,0 +170744803838,215,0 +170744803887,216,0 +170744803937,218,0 +170744803986,218,0 +170744804034,218,0 +170744804084,219,0 +170744804132,220,0 +170744804181,221,0 +170744804231,224,0 +170744804280,226,0 +170744804328,229,0 +170744804376,231,0 +170744804426,230,0 +170744804474,234,0 +170744804522,231,0 +170744804570,239,0 +170744804618,236,0 +170744804665,217,0 +170744804713,215,0 +170744804761,215,0 +170744804809,215,0 +170744804857,215,0 +170744804905,216,0 +170744804954,217,0 +170744805002,218,0 +170744805050,218,0 +170744805098,219,0 +170744805146,220,0 +170744805194,222,0 +170744805242,225,0 +170744805290,227,0 +170744805338,229,0 +170744805387,231,0 +170744805435,234,0 +170744805485,235,0 +170744805533,236,0 +170744805581,236,0 +170744805630,234,0 +170744805680,239,0 +170744805728,238,0 +170744805777,218,0 +170744805827,216,0 +170744805875,215,0 +170744805923,216,0 +170744805971,215,0 +170744806020,215,0 +170744806070,215,0 +170744806119,215,0 +170744806169,216,0 +170744806218,217,0 +170744806268,218,0 +170744806316,218,0 +170744806365,219,0 +170744806413,221,0 +170744806463,224,0 +170744806513,227,0 +170744806562,228,0 +170744806610,231,0 +170744806658,239,0 +170744806706,234,0 +170744806755,233,0 +170744806803,238,0 +170744806853,220,0 +170744806901,216,0 +170744806949,215,0 +170744806998,215,0 +170744807048,215,0 +170744807097,215,0 +170744807145,215,0 +170744807193,215,0 +170744807243,216,0 +170744807292,216,0 +170744807342,217,0 +170744807390,218,0 +170744807439,219,0 +170744807489,220,0 +170744807537,223,0 +170744807587,226,0 +170744807634,228,0 +170744807682,229,0 +170744807732,232,0 +170744807780,233,0 +170744807829,234,0 +170744807877,230,0 +170744807927,238,0 +170744807976,235,0 +170744808024,217,0 +170744808074,215,0 +170744808122,215,0 +170744808171,215,0 +170744808219,215,0 +170744808267,215,0 +170744808317,215,0 +170744808366,216,0 +170744808416,217,0 +170744808464,218,0 +170744808512,218,0 +170744808561,219,0 +170744808609,222,0 +170744808659,225,0 +170744808707,229,0 +170744808756,229,0 +170744808806,230,0 +170744808854,232,0 +170744808902,234,0 +170744808950,237,0 +170744808999,238,0 +170744809049,238,0 +170744809097,219,0 +170744809145,216,0 +170744809194,215,0 +170744809242,215,0 +170744809292,215,0 +170744809341,215,0 +170744809391,215,0 +170744809440,215,0 +170744809488,216,0 +170744809538,216,0 +170744809586,217,0 +170744809634,217,0 +170744809683,219,0 +170744809731,220,0 +170744809781,223,0 +170744809829,225,0 +170744809879,227,0 +170744809926,229,0 +170744809974,231,0 +170744810024,233,0 +170744810072,235,0 +170744810121,237,0 +170744810171,238,0 +170744810221,219,0 +170744810270,216,0 +170744810320,215,0 +170744810367,215,0 +170744810415,215,0 +170744810465,216,0 +170744810513,216,0 +170744810562,217,0 +170744810610,218,0 +170744810658,217,0 +170744810708,219,0 +170744810756,220,0 +170744810804,222,0 +170744810853,224,0 +170744810903,227,0 +170744810952,228,0 +170744811000,232,0 +170744811048,233,0 +170744811096,233,0 +170744811146,234,0 +170744811194,235,0 +170744811242,234,0 +170744811291,239,0 +170744811339,225,0 +170744811387,217,0 +170744811435,215,0 +170744811483,215,0 +170744811533,215,0 +170744811581,215,0 +170744811630,215,0 +170744811678,215,0 +170744811728,215,0 +170744811777,215,0 +170744811827,215,0 +170744811876,215,0 +170744811926,216,0 +170744811974,216,0 +170744812022,218,0 +170744812071,220,0 +170744812119,222,0 +170744812169,225,0 +170744812217,227,0 +170744812266,229,0 +170744812314,230,0 +170744812364,236,0 +170744812412,238,0 +170744812460,219,0 +170744812509,215,0 +170744812559,215,0 +170744812607,215,0 +170744812655,215,0 +170744812704,215,0 +170744812754,215,0 +170744812802,215,0 +170744812851,216,0 +170744812901,216,0 +170744812949,217,0 +170744812998,218,0 +170744813046,219,0 +170744813096,223,0 +170744813145,223,0 +170744813193,227,0 +170744813241,227,0 +170744813289,229,0 +170744813339,232,0 +170744813388,233,0 +170744813436,234,0 +170744813484,237,0 +170744813532,239,0 +170744813582,226,0 +170744813631,220,0 +170744813681,220,0 +170744813729,220,0 +170744813778,219,0 +170744813828,219,0 +170744813878,219,0 +170744813927,219,0 +170744813977,215,0 +170744814026,216,0 +170744814074,217,0 +170744814122,217,0 +170744814172,219,0 +170744814220,220,0 +170744814269,223,0 +170744814317,226,0 +170744814367,229,0 +170744814416,229,0 +170744814466,233,0 +170744814515,234,0 +170744814565,236,0 +170744814614,237,0 +170744814662,239,0 +170744814710,220,0 +170744814758,215,0 +170744814806,215,0 +170744814855,215,0 +170744814905,215,0 +170744814953,215,0 +170744815001,216,0 +170744815049,217,0 +170744815097,217,0 +170744815146,218,0 +170744815196,219,0 +170744815244,220,0 +170744815292,220,0 +170744815341,223,0 +170744815391,225,0 +170744815440,227,0 +170744815488,229,0 +170744815538,231,0 +170744815586,234,0 +170744815634,235,0 +170744815681,236,0 +170744815731,238,0 +170744815779,238,0 +170744815828,221,0 +170744815876,215,0 +170744815924,215,0 +170744815974,215,0 +170744816022,215,0 +170744816070,215,0 +170744816119,215,0 +170744816167,216,0 +170744816215,217,0 +170744816263,217,0 +170744816313,218,0 +170744816361,219,0 +170744816410,221,0 +170744816460,223,0 +170744816508,226,0 +170744816555,227,0 +170744816603,233,0 +170744816651,232,0 +170744816699,239,0 +170744816749,235,0 +170744816798,236,0 +170744816848,237,0 +170744816897,239,0 +170744816947,220,0 +170744816996,216,0 +170744817046,215,0 +170744817096,215,0 +170744817143,215,0 +170744817191,215,0 +170744817241,215,0 +170744817289,215,0 +170744817338,216,0 +170744817386,217,0 +170744817434,219,0 +170744817482,218,0 +170744817532,219,0 +170744817581,222,0 +170744817629,225,0 +170744817677,225,0 +170744817725,229,0 +170744817773,229,0 +170744817823,231,0 +170744817870,234,0 +170744817918,235,0 +170744817968,236,0 +170744818017,237,0 +170744818067,221,0 +170744818117,216,0 +170744818166,215,0 +170744818216,216,0 +170744818265,217,0 +170744818313,217,0 +170744818363,218,0 +170744818411,219,0 +170744818459,220,0 +170744818507,220,0 +170744818556,221,0 +170744818606,222,0 +170744818654,225,0 +170744818703,226,0 +170744818751,229,0 +170744818801,230,0 +170744818850,233,0 +170744818900,235,0 +170744818949,240,0 +170744818999,237,0 +170744819047,239,0 +170744819095,238,0 +170744819143,238,0 +170744819191,222,0 +170744819239,217,0 +170744819288,217,0 +170744819336,218,0 +170744819384,218,0 +170744819434,219,0 +170744819482,220,0 +170744819531,221,0 +170744819581,221,0 +170744819629,223,0 +170744819678,224,0 +170744819726,225,0 +170744819774,227,0 +170744819822,231,0 +170744819872,232,0 +170744819920,233,0 +170744819968,235,0 +170744820016,236,0 +170744820065,239,0 +170744820115,240,0 +170744820163,239,0 +170744820212,239,0 +170744820260,239,0 +170744820310,221,0 +170744820358,217,0 +170744820407,217,0 +170744820455,218,0 +170744820503,219,0 +170744820553,220,0 +170744820601,221,0 +170744820649,221,0 +170744820698,223,0 +170744820746,228,0 +170744820796,228,0 +170744820845,230,0 +170744820895,231,0 +170744820943,233,0 +170744820992,236,0 +170744821040,237,0 +170744821090,240,0 +170744821139,240,0 +170744821187,237,0 +170744821235,241,0 +170744821285,242,0 +170744821334,239,0 +170744821382,238,0 +170744821430,221,0 +170744821480,215,0 +170744821528,215,0 +170744821576,215,0 +170744821623,215,0 +170744821671,215,0 +170744821719,215,0 +170744821767,216,0 +170744821817,217,0 +170744821867,219,0 +170744821916,219,0 +170744821964,220,0 +170744822014,221,0 +170744822062,223,0 +170744822109,225,0 +170744822157,228,0 +170744822207,230,0 +170744822255,231,0 +170744822303,233,0 +170744822351,235,0 +170744822399,236,0 +170744822448,238,0 +170744822496,240,0 +170744822544,221,0 +170744822592,216,0 +170744822642,215,0 +170744822690,215,0 +170744822739,215,0 +170744822787,217,0 +170744822835,217,0 +170744822883,217,0 +170744822932,218,0 +170744822980,219,0 +170744823028,220,0 +170744823076,223,0 +170744823124,223,0 +170744823172,226,0 +170744823220,228,0 +170744823267,232,0 +170744823315,233,0 +170744823363,235,0 +170744823411,236,0 +170744823459,237,0 +170744823507,239,0 +170744823556,238,0 +170744823604,240,0 +170744823654,221,0 +170744823702,216,0 +170744823750,216,0 +170744823799,217,0 +170744823849,217,0 +170744823897,218,0 +170744823945,218,0 +170744823993,219,0 +170744824041,220,0 +170744824089,221,0 +170744824137,222,0 +170744824186,223,0 +170744824234,226,0 +170744824284,225,0 +170744824332,228,0 +170744824381,229,0 +170744824431,232,0 +170744824480,234,0 +170744824528,233,0 +170744824578,240,0 +170744824625,236,0 +170744824673,241,0 +170744824721,241,0 +170744824769,222,0 +170744824817,217,0 +170744824865,215,0 +170744824913,215,0 +170744824961,215,0 +170744825010,216,0 +170744825058,215,0 +170744825106,215,0 +170744825154,215,0 +170744825202,215,0 +170744825250,217,0 +170744825297,218,0 +170744825345,219,0 +170744825393,220,0 +170744825441,221,0 +170744825489,222,0 +170744825537,225,0 +170744825585,228,0 +170744825633,230,0 +170744825681,232,0 +170744825729,233,0 +170744825777,235,0 +170744825824,239,0 +170744825872,239,0 +170744825920,219,0 +170744825968,215,0 +170744826016,215,0 +170744826064,215,0 +170744826112,215,0 +170744826161,215,0 +170744826209,216,0 +170744826257,216,0 +170744826305,217,0 +170744826353,217,0 +170744826401,218,0 +170744826451,220,0 +170744826500,220,0 +170744826550,223,0 +170744826598,225,0 +170744826647,227,0 +170744826695,228,0 +170744826743,229,0 +170744826791,231,0 +170744826839,234,0 +170744826887,237,0 +170744826935,239,0 +170744826984,239,0 +170744827032,221,0 +170744827080,215,0 +170744827128,215,0 +170744827178,215,0 +170744827227,215,0 +170744827275,215,0 +170744827323,215,0 +170744827373,215,0 +170744827422,215,0 +170744827470,215,0 +170744827520,215,0 +170744827568,215,0 +170744827617,215,0 +170744827665,215,0 +170744827715,215,0 +170744827764,216,0 +170744827814,217,0 +170744827862,220,0 +170744827910,221,0 +170744827958,223,0 +170744828007,227,0 +170744828057,237,0 +170744828105,239,0 +170744828154,220,0 +170744828204,216,0 +170744828253,216,0 +170744828301,216,0 +170744828349,217,0 +170744828397,217,0 +170744828445,218,0 +170744828493,218,0 +170744828543,219,0 +170744828592,221,0 +170744828642,221,0 +170744828690,221,0 +170744828738,224,0 +170744828787,227,0 +170744828837,229,0 +170744828886,230,0 +170744828934,233,0 +170744828984,233,0 +170744829033,237,0 +170744829081,237,0 +170744829131,236,0 +170744829179,239,0 +170744829227,240,0 +170744829276,220,0 +170744829324,215,0 +170744829374,215,0 +170744829423,215,0 +170744829473,215,0 +170744829523,215,0 +170744829570,215,0 +170744829618,216,0 +170744829666,217,0 +170744829714,218,0 +170744829763,219,0 +170744829812,219,0 +170744829862,221,0 +170744829911,223,0 +170744829959,225,0 +170744830007,267,0 +170744830057,230,0 +170744830106,231,0 +170744830154,232,0 +170744830204,235,0 +170744830252,236,0 +170744830301,238,0 +170744830351,238,0 +170744830400,219,0 +170744830448,215,0 +170744830496,215,0 +170744830544,215,0 +170744830594,215,0 +170744830643,215,0 +170744830693,215,0 +170744830742,215,0 +170744830790,215,0 +170744830840,215,0 +170744830888,215,0 +170744830936,215,0 +170744830985,216,0 +170744831035,217,0 +170744831083,218,0 +170744831132,222,0 +170744831182,223,0 +170744831231,225,0 +170744831279,227,0 +170744831327,229,0 +170744831377,232,0 +170744831426,238,0 +170744831474,239,0 +170744831524,219,0 +170744831573,216,0 +170744831623,216,0 +170744831672,216,0 +170744831722,216,0 +170744831771,215,0 +170744831819,216,0 +170744831867,217,0 +170744831917,218,0 +170744831965,218,0 +170744832013,219,0 +170744832062,220,0 +170744832110,222,0 +170744832160,224,0 +170744832209,226,0 +170744832257,228,0 +170744832307,231,0 +170744832355,233,0 +170744832404,234,0 +170744832452,237,0 +170744832500,234,0 +170744832550,238,0 +170744832598,239,0 +170744832646,219,0 +170744832693,217,0 +170744832743,218,0 +170744832791,218,0 +170744832840,221,0 +170744832890,220,0 +170744832939,220,0 +170744832987,220,0 +170744833035,222,0 +170744833085,224,0 +170744833133,226,0 +170744833180,228,0 +170744833228,230,0 +170744833276,233,0 +170744833324,233,0 +170744833374,235,0 +170744833423,236,0 +170744833473,237,0 +170744833522,238,0 +170744833570,238,0 +170744833618,240,0 +170744833666,240,0 +170744833714,237,0 +170744833764,218,0 +170744833813,215,0 +170744833863,215,0 +170744833912,216,0 +170744833962,217,0 +170744834010,217,0 +170744834058,217,0 +170744834107,219,0 +170744834155,220,0 +170744834203,221,0 +170744834251,223,0 +170744834299,225,0 +170744834347,228,0 +170744834396,231,0 +170744834446,232,0 +170744834494,233,0 +170744834542,235,0 +170744834590,244,0 +170744834638,238,0 +170744834686,237,0 +170744834735,238,0 +170744834783,238,0 +170744834833,239,0 +170744834881,219,0 +170744834930,215,0 +170744834978,215,0 +170744835028,215,0 +170744835076,216,0 +170744835125,216,0 +170744835175,217,0 +170744835224,217,0 +170744835272,219,0 +170744835320,218,0 +170744835368,220,0 +170744835416,223,0 +170744835466,225,0 +170744835515,229,0 +170744835563,230,0 +170744835613,233,0 +170744835662,232,0 +170744835710,234,0 +170744835758,236,0 +170744835806,236,0 +170744835856,237,0 +170744835904,237,0 +170744835952,238,0 +170744836001,218,0 +170744836051,215,0 +170744836100,215,0 +170744836150,216,0 +170744836198,216,0 +170744836246,217,0 +170744836294,218,0 +170744836341,219,0 +170744836389,219,0 +170744836439,221,0 +170744836487,222,0 +170744836535,225,0 +170744836583,227,0 +170744836631,230,0 +170744836680,231,0 +170744836728,233,0 +170744836776,233,0 +170744836824,236,0 +170744836872,236,0 +170744836919,239,0 +170744836967,238,0 +170744837017,239,0 +170744837065,240,0 +170744837112,225,0 +170744837160,220,0 +170744837208,219,0 +170744837256,219,0 +170744837304,215,0 +170744837352,216,0 +170744837402,217,0 +170744837449,218,0 +170744837497,219,0 +170744837547,219,0 +170744837595,221,0 +170744837643,223,0 +170744837692,225,0 +170744837742,228,0 +170744837790,231,0 +170744837838,231,0 +170744837887,233,0 +170744837937,234,0 +170744837986,239,0 +170744838036,238,0 +170744838084,238,0 +170744838132,239,0 +170744838180,239,0 +170744838228,220,0 +170744838276,215,0 +170744838325,216,0 +170744838373,215,0 +170744838421,215,0 +170744838469,215,0 +170744838517,215,0 +170744838565,215,0 +170744838613,215,0 +170744838663,215,0 +170744838710,216,0 +170744838758,217,0 +170744838806,218,0 +170744838854,220,0 +170744838902,223,0 +170744838950,225,0 +170744839000,228,0 +170744839048,229,0 +170744839096,230,0 +170744839144,232,0 +170744839193,234,0 +170744839243,236,0 +170744839291,238,0 +170744839339,220,0 +170744839387,216,0 +170744839435,216,0 +170744839483,215,0 +170744839531,215,0 +170744839579,215,0 +170744839627,216,0 +170744839675,216,0 +170744839723,216,0 +170744839771,220,0 +170744839820,218,0 +170744839868,219,0 +170744839918,221,0 +170744839967,223,0 +170744840017,226,0 +170744840065,227,0 +170744840113,230,0 +170744840160,232,0 +170744840208,232,0 +170744840256,235,0 +170744840306,236,0 +170744840354,240,0 +170744840402,238,0 +170744840451,219,0 +170744840499,216,0 +170744840549,215,0 +170744840598,215,0 +170744840646,215,0 +170744840694,215,0 +170744840744,216,0 +170744840793,216,0 +170744840843,217,0 +170744840891,217,0 +170744840939,218,0 +170744840987,218,0 +170744841036,219,0 +170744841084,220,0 +170744841132,224,0 +170744841180,226,0 +170744841228,229,0 +170744841276,229,0 +170744841325,233,0 +170744841375,233,0 +170744841423,236,0 +170744841471,235,0 +170744841519,238,0 +170744841567,234,0 +170744841615,217,0 +170744841663,215,0 +170744841712,215,0 +170744841760,215,0 +170744841810,215,0 +170744841858,215,0 +170744841905,215,0 +170744841953,216,0 +170744842001,215,0 +170744842049,215,0 +170744842099,215,0 +170744842149,217,0 +170744842197,217,0 +170744842246,218,0 +170744842294,220,0 +170744842342,222,0 +170744842392,224,0 +170744842440,228,0 +170744842487,231,0 +170744842535,233,0 +170744842583,233,0 +170744842633,239,0 +170744842681,237,0 +170744842729,217,0 +170744842777,216,0 +170744842826,215,0 +170744842876,215,0 +170744842924,215,0 +170744842973,216,0 +170744843023,217,0 +170744843071,218,0 +170744843119,218,0 +170744843168,218,0 +170744843216,219,0 +170744843264,222,0 +170744843314,223,0 +170744843363,226,0 +170744843413,229,0 +170744843462,231,0 +170744843512,233,0 +170744843560,233,0 +170744843609,235,0 +170744843659,235,0 +170744843708,231,0 +170744843756,240,0 +170744843806,229,0 +170744843854,216,0 +170744843903,215,0 +170744843953,216,0 +170744844001,216,0 +170744844051,216,0 +170744844099,215,0 +170744844147,216,0 +170744844194,216,0 +170744844242,217,0 +170744844292,217,0 +170744844341,219,0 +170744844391,220,0 +170744844439,221,0 +170744844488,224,0 +170744844536,226,0 +170744844586,228,0 +170744844635,231,0 +170744844685,233,0 +170744844733,235,0 +170744844782,233,0 +170744844832,236,0 +170744844881,240,0 +170744844929,224,0 +170744844979,216,0 +170744845028,216,0 +170744845078,215,0 +170744845128,215,0 +170744845177,215,0 +170744845225,215,0 +170744845275,216,0 +170744845324,216,0 +170744845372,217,0 +170744845420,218,0 +170744845470,219,0 +170744845518,220,0 +170744845565,221,0 +170744845615,224,0 +170744845665,228,0 +170744845714,229,0 +170744845762,231,0 +170744845810,232,0 +170744845858,234,0 +170744845906,235,0 +170744845955,238,0 +170744846005,240,0 +170744846053,219,0 +170744846101,215,0 +170744846149,216,0 +170744846198,216,0 +170744846246,215,0 +170744846294,215,0 +170744846344,215,0 +170744846393,216,0 +170744846443,217,0 +170744846492,217,0 +170744846542,218,0 +170744846590,219,0 +170744846638,220,0 +170744846687,222,0 +170744846735,224,0 +170744846783,227,0 +170744846831,230,0 +170744846881,232,0 +170744846930,235,0 +170744846978,234,0 +170744847026,235,0 +170744847076,237,0 +170744847124,241,0 +170744847173,219,0 +170744847223,216,0 +170744847271,216,0 +170744847319,216,0 +170744847367,216,0 +170744847415,216,0 +170744847464,216,0 +170744847512,216,0 +170744847560,216,0 +170744847608,217,0 +170744847658,217,0 +170744847707,218,0 +170744847755,221,0 +170744847803,220,0 +170744847853,222,0 +170744847902,225,0 +170744847952,228,0 +170744848000,228,0 +170744848048,232,0 +170744848096,232,0 +170744848143,234,0 +170744848191,237,0 +170744848239,238,0 +170744848287,223,0 +170744848337,216,0 +170744848386,216,0 +170744848436,215,0 +170744848485,216,0 +170744848533,215,0 +170744848583,216,0 +170744848632,215,0 +170744848680,216,0 +170744848728,216,0 +170744848776,217,0 +170744848824,218,0 +170744848872,218,0 +170744848920,221,0 +170744848969,224,0 +170744849017,225,0 +170744849065,227,0 +170744849113,229,0 +170744849161,231,0 +170744849209,233,0 +170744849257,235,0 +170744849305,230,0 +170744849353,238,0 +170744849400,239,0 +170744849450,217,0 +170744849498,215,0 +170744849546,215,0 +170744849594,215,0 +170744849643,215,0 +170744849691,215,0 +170744849739,215,0 +170744849787,215,0 +170744849836,215,0 +170744849884,216,0 +170744849934,217,0 +170744849983,218,0 +170744850031,218,0 +170744850079,220,0 +170744850129,221,0 +170744850177,225,0 +170744850225,228,0 +170744850272,229,0 +170744850322,231,0 +170744850370,232,0 +170744850418,234,0 +170744850466,237,0 +170744850514,237,0 +170744850563,218,0 +170744850611,215,0 +170744850659,215,0 +170744850709,216,0 +170744850758,217,0 +170744850808,217,0 +170744850856,218,0 +170744850905,219,0 +170744850953,220,0 +170744851003,221,0 +170744851051,222,0 +170744851100,224,0 +170744851148,226,0 +170744851198,228,0 +170744851247,231,0 +170744851297,232,0 +170744851346,234,0 +170744851394,235,0 +170744851442,235,0 +170744851492,236,0 +170744851540,239,0 +170744851589,238,0 +170744851639,236,0 +170744851687,217,0 +170744851736,215,0 +170744851784,215,0 +170744851832,215,0 +170744851880,215,0 +170744851928,215,0 +170744851978,215,0 +170744852027,215,0 +170744852075,215,0 +170744852123,216,0 +170744852173,216,0 +170744852221,217,0 +170744852269,218,0 +170744852317,221,0 +170744852366,223,0 +170744852414,226,0 +170744852464,231,0 +170744852512,231,0 +170744852560,233,0 +170744852609,233,0 +170744852657,232,0 +170744852705,239,0 +170744852753,237,0 +170744852802,218,0 +170744852850,216,0 +170744852898,216,0 +170744852946,216,0 +170744852994,216,0 +170744853042,216,0 +170744853092,216,0 +170744853139,217,0 +170744853187,217,0 +170744853235,218,0 +170744853283,219,0 +170744853331,220,0 +170744853379,224,0 +170744853427,224,0 +170744853475,227,0 +170744853523,228,0 +170744853570,231,0 +170744853620,233,0 +170744853668,234,0 +170744853717,237,0 +170744853765,236,0 +170744853813,238,0 +170744853861,237,0 +170744853909,219,0 +170744853957,216,0 +170744854005,215,0 +170744854055,216,0 +170744854104,215,0 +170744854154,215,0 +170744854202,216,0 +170744854250,216,0 +170744854299,217,0 +170744854347,218,0 +170744854397,218,0 +170744854446,219,0 +170744854494,221,0 +170744854544,224,0 +170744854593,226,0 +170744854641,228,0 +170744854689,230,0 +170744854737,232,0 +170744854785,233,0 +170744854833,234,0 +170744854881,236,0 +170744854929,238,0 +170744854977,237,0 +170744855024,220,0 +170744855074,216,0 +170744855122,217,0 +170744855170,217,0 +170744855218,218,0 +170744855265,219,0 +170744855315,219,0 +170744855363,220,0 +170744855411,221,0 +170744855458,222,0 +170744855506,223,0 +170744855554,225,0 +170744855602,227,0 +170744855652,230,0 +170744855700,232,0 +170744855748,232,0 +170744855795,234,0 +170744855843,237,0 +170744855891,237,0 +170744855939,239,0 +170744855987,238,0 +170744856035,238,0 +170744856083,238,0 +170744856132,221,0 +170744856180,215,0 +170744856230,215,0 +170744856279,216,0 +170744856329,217,0 +170744856377,217,0 +170744856425,218,0 +170744856473,219,0 +170744856522,219,0 +170744856570,221,0 +170744856618,222,0 +170744856666,224,0 +170744856714,227,0 +170744856762,229,0 +170744856812,230,0 +170744856861,233,0 +170744856909,234,0 +170744856959,235,0 +170744857007,236,0 +170744857056,237,0 +170744857104,239,0 +170744857152,237,0 +170744857200,238,0 +170744857250,219,0 +170744857298,216,0 +170744857346,216,0 +170744857395,215,0 +170744857445,215,0 +170744857494,216,0 +170744857542,216,0 +170744857590,219,0 +170744857638,218,0 +170744857686,218,0 +170744857734,219,0 +170744857784,220,0 +170744857832,222,0 +170744857880,224,0 +170744857929,227,0 +170744857977,228,0 +170744858027,231,0 +170744858076,233,0 +170744858126,235,0 +170744858174,235,0 +170744858223,236,0 +170744858273,238,0 +170744858322,239,0 +170744858372,219,0 +170744858420,216,0 +170744858469,216,0 +170744858517,216,0 +170744858567,215,0 +170744858616,216,0 +170744858664,216,0 +170744858712,217,0 +170744858762,218,0 +170744858811,218,0 +170744858861,219,0 +170744858910,221,0 +170744858960,223,0 +170744859008,225,0 +170744859057,229,0 +170744859105,230,0 +170744859153,232,0 +170744859203,234,0 +170744859252,234,0 +170744859302,237,0 +170744859350,238,0 +170744859398,239,0 +170744859447,239,0 +170744859495,225,0 +170744859543,220,0 +170744859593,219,0 +170744859641,218,0 +170744859690,215,0 +170744859738,216,0 +170744859788,217,0 +170744859836,217,0 +170744859885,218,0 +170744859935,219,0 +170744859983,220,0 +170744860031,220,0 +170744860080,222,0 +170744860130,225,0 +170744860179,228,0 +170744860227,229,0 +170744860277,230,0 +170744860325,233,0 +170744860374,234,0 +170744860422,236,0 +170744860470,236,0 +170744860518,238,0 +170744860568,238,0 +170744860617,220,0 +170744860665,215,0 +170744860713,215,0 +170744860761,215,0 +170744860810,215,0 +170744860860,215,0 +170744860908,215,0 +170744860956,217,0 +170744861004,216,0 +170744861052,218,0 +170744861100,218,0 +170744861148,219,0 +170744861197,221,0 +170744861245,224,0 +170744861293,227,0 +170744861341,228,0 +170744861389,231,0 +170744861438,232,0 +170744861486,234,0 +170744861534,234,0 +170744861582,236,0 +170744861630,237,0 +170744861678,238,0 +170744861728,220,0 +170744861777,216,0 +170744861827,215,0 +170744861875,215,0 +170744861923,215,0 +170744861972,215,0 +170744862022,216,0 +170744862071,217,0 +170744862119,217,0 +170744862169,218,0 +170744862218,219,0 +170744862268,219,0 +170744862317,221,0 +170744862367,221,0 +170744862415,225,0 +170744862464,228,0 +170744862512,229,0 +170744862560,231,0 +170744862610,233,0 +170744862657,235,0 +170744862705,235,0 +170744862753,238,0 +170744862803,239,0 +170744862852,221,0 +170744862902,216,0 +170744862951,216,0 +170744863001,216,0 +170744863049,216,0 +170744863097,216,0 +170744863145,216,0 +170744863194,216,0 +170744863242,216,0 +170744863290,216,0 +170744863338,216,0 +170744863386,216,0 +170744863436,216,0 +170744863484,216,0 +170744863533,216,0 +170744863583,216,0 +170744863631,216,0 +170744863680,216,0 +170744863730,218,0 +170744863779,219,0 +170744863827,222,0 +170744863875,236,0 +170744863925,238,0 +170744863972,220,0 +170744864022,216,0 +170744864070,218,0 +170744864119,218,0 +170744864169,218,0 +170744864218,219,0 +170744864268,220,0 +170744864316,221,0 +170744864364,220,0 +170744864413,221,0 +170744864461,222,0 +170744864511,223,0 +170744864560,225,0 +170744864608,226,0 +170744864658,229,0 +170744864706,231,0 +170744864754,233,0 +170744864802,233,0 +170744864850,234,0 +170744864898,236,0 +170744864946,237,0 +170744864993,238,0 +170744865043,239,0 +170744865091,220,0 +170744865140,216,0 +170744865190,215,0 +170744865238,215,0 +170744865286,215,0 +170744865335,216,0 +170744865385,216,0 +170744865434,217,0 +170744865482,218,0 +170744865530,219,0 +170744865580,219,0 +170744865628,220,0 +170744865677,222,0 +170744865727,224,0 +170744865775,228,0 +170744865822,229,0 +170744865870,230,0 +170744865920,232,0 +170744865968,235,0 +170744866017,235,0 +170744866067,236,0 +170744866116,236,0 +170744866166,238,0 +170744866215,220,0 +170744866263,216,0 +170744866311,215,0 +170744866361,215,0 +170744866409,216,0 +170744866458,216,0 +170744866508,217,0 +170744866556,217,0 +170744866604,218,0 +170744866653,219,0 +170744866701,220,0 +170744866749,221,0 +170744866797,223,0 +170744866845,226,0 +170744866895,229,0 +170744866944,233,0 +170744866992,232,0 +170744867040,235,0 +170744867088,235,0 +170744867136,236,0 +170744867185,238,0 +170744867233,237,0 +170744867283,240,0 +170744867331,220,0 +170744867380,215,0 +170744867430,215,0 +170744867479,215,0 +170744867527,215,0 +170744867575,215,0 +170744867623,215,0 +170744867673,215,0 +170744867722,215,0 +170744867772,216,0 +170744867821,217,0 +170744867869,218,0 +170744867919,219,0 +170744867967,221,0 +170744868016,223,0 +170744868066,226,0 +170744868114,228,0 +170744868163,229,0 +170744868213,232,0 +170744868261,234,0 +170744868308,234,0 +170744868358,237,0 +170744868406,238,0 +170744868455,219,0 +170744868503,216,0 +170744868551,215,0 +170744868599,215,0 +170744868649,215,0 +170744868697,216,0 +170744868746,215,0 +170744868796,215,0 +170744868844,216,0 +170744868893,216,0 +170744868941,217,0 +170744868989,218,0 +170744869039,218,0 +170744869087,220,0 +170744869136,223,0 +170744869186,225,0 +170744869235,228,0 +170744869283,229,0 +170744869331,231,0 +170744869379,232,0 +170744869428,236,0 +170744869476,238,0 +170744869526,238,0 +170744869574,220,0 +170744869624,216,0 +170744869673,216,0 +170744869723,215,0 +170744869771,215,0 +170744869819,215,0 +170744869868,215,0 +170744869918,215,0 +170744869967,216,0 +170744870015,215,0 +170744870063,216,0 +170744870113,217,0 +170744870161,217,0 +170744870210,219,0 +170744870258,220,0 +170744870306,222,0 +170744870356,224,0 +170744870404,228,0 +170744870452,230,0 +170744870501,231,0 +170744870549,233,0 +170744870597,238,0 +170744870647,238,0 +170744870695,220,0 +170744870743,216,0 +170744870792,216,0 +170744870840,215,0 +170744870889,216,0 +170744870937,216,0 +170744870985,217,0 +170744871033,218,0 +170744871083,218,0 +170744871131,219,0 +170744871180,220,0 +170744871228,220,0 +170744871276,221,0 +170744871326,224,0 +170744871375,226,0 +170744871425,229,0 +170744871473,231,0 +170744871521,232,0 +170744871570,234,0 +170744871618,236,0 +170744871666,236,0 +170744871715,238,0 +170744871765,237,0 +170744871815,219,0 +170744871864,216,0 +170744871912,215,0 +170744871962,215,0 +170744872011,215,0 +170744872059,215,0 +170744872109,216,0 +170744872157,216,0 +170744872204,215,0 +170744872254,216,0 +170744872302,217,0 +170744872350,218,0 +170744872398,219,0 +170744872447,221,0 +170744872497,222,0 +170744872546,224,0 +170744872596,229,0 +170744872644,229,0 +170744872692,231,0 +170744872741,231,0 +170744872789,235,0 +170744872837,238,0 +170744872887,238,0 +170744872936,220,0 +170744872984,215,0 +170744873032,215,0 +170744873082,215,0 +170744873130,216,0 +170744873178,217,0 +170744873227,217,0 +170744873277,219,0 +170744873325,218,0 +170744873373,220,0 +170744873422,221,0 +170744873470,222,0 +170744873518,225,0 +170744873566,226,0 +170744873614,229,0 +170744873662,230,0 +170744873711,229,0 +170744873759,232,0 +170744873807,234,0 +170744873855,237,0 +170744873903,238,0 +170744873951,238,0 +170744873999,238,0 +170744874046,221,0 +170744874094,215,0 +170744874142,215,0 +170744874190,215,0 +170744874240,215,0 +170744874289,215,0 +170744874337,215,0 +170744874387,215,0 +170744874434,215,0 +170744874482,215,0 +170744874532,215,0 +170744874580,215,0 +170744874628,215,0 +170744874677,215,0 +170744874725,215,0 +170744874773,215,0 +170744874821,216,0 +170744874869,218,0 +170744874919,220,0 +170744874967,222,0 +170744875016,225,0 +170744875066,234,0 +170744875115,238,0 +170744875165,221,0 +170744875213,216,0 +170744875260,216,0 +170744875308,216,0 +170744875356,216,0 +170744875406,216,0 +170744875454,216,0 +170744875502,216,0 +170744875550,217,0 +170744875599,217,0 +170744875647,219,0 +170744875697,219,0 +170744875746,220,0 +170744875794,222,0 +170744875844,224,0 +170744875893,226,0 +170744875941,229,0 +170744875989,230,0 +170744876037,232,0 +170744876087,235,0 +170744876135,235,0 +170744876183,238,0 +170744876231,238,0 +170744876280,219,0 +170744876328,216,0 +170744876376,216,0 +170744876424,216,0 +170744876472,215,0 +170744876520,215,0 +170744876569,215,0 +170744876617,216,0 +170744876665,217,0 +170744876713,217,0 +170744876763,218,0 +170744876812,219,0 +170744876860,220,0 +170744876908,222,0 +170744876956,224,0 +170744877004,226,0 +170744877053,230,0 +170744877103,231,0 +170744877151,233,0 +170744877200,233,0 +170744877248,236,0 +170744877298,234,0 +170744877346,245,0 +170744877395,219,0 +170744877443,216,0 +170744877493,215,0 +170744877542,215,0 +170744877590,216,0 +170744877638,216,0 +170744877688,218,0 +170744877735,218,0 +170744877783,219,0 +170744877831,220,0 +170744877881,220,0 +170744877929,221,0 +170744877978,223,0 +170744878028,227,0 +170744878076,228,0 +170744878124,231,0 +170744878172,232,0 +170744878220,233,0 +170744878268,235,0 +170744878316,235,0 +170744878364,239,0 +170744878413,234,0 +170744878462,239,0 +170744878512,226,0 +170744878560,217,0 +170744878610,215,0 +170744878658,215,0 +170744878705,215,0 +170744878753,215,0 +170744878803,215,0 +170744878853,216,0 +170744878900,216,0 +170744878948,217,0 +170744878996,217,0 +170744879044,218,0 +170744879092,219,0 +170744879140,221,0 +170744879188,223,0 +170744879236,227,0 +170744879284,231,0 +170744879333,230,0 +170744879383,232,0 +170744879433,233,0 +170744879482,236,0 +170744879530,232,0 +170744879580,238,0 +170744879629,234,0 +170744879677,219,0 +170744879726,217,0 +170744879776,215,0 +170744879824,216,0 +170744879873,216,0 +170744879921,217,0 +170744879971,218,0 +170744880019,219,0 +170744880068,219,0 +170744880118,221,0 +170744880167,222,0 +170744880215,224,0 +170744880263,226,0 +170744880311,230,0 +170744880359,232,0 +170744880407,232,0 +170744880455,234,0 +170744880503,235,0 +170744880551,235,0 +170744880601,239,0 +170744880649,235,0 +170744880698,239,0 +170744880748,220,0 +170744880796,217,0 +170744880844,216,0 +170744880891,216,0 +170744880939,216,0 +170744880989,217,0 +170744881037,218,0 +170744881086,219,0 +170744881136,219,0 +170744881185,220,0 +170744881233,221,0 +170744881283,222,0 +170744881331,224,0 +170744881379,227,0 +170744881427,230,0 +170744881475,230,0 +170744881523,232,0 +170744881571,234,0 +170744881620,235,0 +170744881668,238,0 +170744881718,239,0 +170744881765,240,0 +170744881815,239,0 +170744881863,238,0 +170744881911,218,0 +170744881959,216,0 +170744882007,217,0 +170744882055,217,0 +170744882104,218,0 +170744882152,218,0 +170744882200,218,0 +170744882248,219,0 +170744882298,221,0 +170744882346,223,0 +170744882393,224,0 +170744882443,226,0 +170744882493,229,0 +170744882541,232,0 +170744882588,233,0 +170744882636,232,0 +170744882686,233,0 +170744882735,236,0 +170744882783,239,0 +170744882831,238,0 +170744882881,239,0 +170744882930,239,0 +170744882980,238,0 +170744883028,218,0 +170744883076,216,0 +170744883125,217,0 +170744883175,217,0 +170744883223,218,0 +170744883272,224,0 +170744883322,219,0 +170744883371,219,0 +170744883421,221,0 +170744883469,222,0 +170744883517,223,0 +170744883566,226,0 +170744883616,228,0 +170744883665,231,0 +170744883713,233,0 +170744883763,232,0 +170744883811,233,0 +170744883859,236,0 +170744883907,242,0 +170744883956,238,0 +170744884004,247,0 +170744884054,240,0 +170744884102,239,0 +170744884151,217,0 +170744884201,215,0 +170744884250,216,0 +170744884300,217,0 +170744884348,217,0 +170744884396,218,0 +170744884444,218,0 +170744884493,219,0 +170744884543,220,0 +170744884592,220,0 +170744884640,222,0 +170744884688,225,0 +170744884738,228,0 +170744884787,230,0 +170744884835,232,0 +170744884883,234,0 +170744884931,235,0 +170744884979,236,0 +170744885029,240,0 +170744885076,239,0 +170744885126,239,0 +170744885174,239,0 +170744885222,237,0 +170744885271,217,0 +170744885319,215,0 +170744885367,215,0 +170744885415,215,0 +170744885465,215,0 +170744885513,217,0 +170744885561,216,0 +170744885609,217,0 +170744885658,218,0 +170744885708,219,0 +170744885757,220,0 +170744885807,220,0 +170744885855,221,0 +170744885903,223,0 +170744885951,225,0 +170744885999,228,0 +170744886048,230,0 +170744886098,232,0 +170744886146,234,0 +170744886194,236,0 +170744886242,236,0 +170744886291,242,0 +170744886339,239,0 +170744886387,220,0 +170744886435,216,0 +170744886483,215,0 +170744886531,216,0 +170744886579,216,0 +170744886628,216,0 +170744886678,216,0 +170744886728,216,0 +170744886776,217,0 +170744886824,218,0 +170744886871,218,0 +170744886919,219,0 +170744886967,220,0 +170744887017,223,0 +170744887066,227,0 +170744887116,227,0 +170744887165,230,0 +170744887215,231,0 +170744887264,233,0 +170744887314,235,0 +170744887363,231,0 +170744887411,239,0 +170744887459,235,0 +170744887509,216,0 +170744887557,215,0 +170744887605,215,0 +170744887654,215,0 +170744887702,215,0 +170744887752,215,0 +170744887800,215,0 +170744887848,216,0 +170744887896,217,0 +170744887945,218,0 +170744887993,220,0 +170744888041,219,0 +170744888091,220,0 +170744888138,222,0 +170744888188,225,0 +170744888236,229,0 +170744888285,230,0 +170744888335,232,0 +170744888383,234,0 +170744888431,235,0 +170744888480,237,0 +170744888528,238,0 +170744888576,238,0 +170744888624,219,0 +170744888672,215,0 +170744888720,215,0 +170744888768,215,0 +170744888816,215,0 +170744888864,215,0 +170744888913,215,0 +170744888961,215,0 +170744889011,216,0 +170744889061,217,0 +170744889109,218,0 +170744889156,219,0 +170744889204,220,0 +170744889252,220,0 +170744889302,223,0 +170744889351,226,0 +170744889399,227,0 +170744889447,230,0 +170744889495,230,0 +170744889543,234,0 +170744889593,236,0 +170744889641,239,0 +170744889689,239,0 +170744889737,221,0 +170744889787,216,0 +170744889836,216,0 +170744889884,216,0 +170744889933,216,0 +170744889983,217,0 +170744890031,217,0 +170744890079,218,0 +170744890127,218,0 +170744890175,220,0 +170744890223,221,0 +170744890272,222,0 +170744890320,222,0 +170744890368,224,0 +170744890418,227,0 +170744890467,228,0 +170744890515,231,0 +170744890563,234,0 +170744890611,234,0 +170744890659,235,0 +170744890707,236,0 +170744890755,237,0 +170744890804,238,0 +170744890852,221,0 +170744890900,216,0 +170744890948,215,0 +170744890996,215,0 +170744891045,215,0 +170744891093,215,0 +170744891141,215,0 +170744891189,216,0 +170744891237,216,0 +170744891285,216,0 +170744891333,217,0 +170744891380,218,0 +170744891428,218,0 +170744891476,221,0 +170744891524,221,0 +170744891572,225,0 +170744891620,227,0 +170744891668,228,0 +170744891716,231,0 +170744891765,232,0 +170744891815,235,0 +170744891864,238,0 +170744891912,238,0 +170744891960,221,0 +170744892009,216,0 +170744892059,215,0 +170744892107,215,0 +170744892156,215,0 +170744892204,215,0 +170744892252,215,0 +170744892300,215,0 +170744892348,216,0 +170744892396,216,0 +170744892444,217,0 +170744892492,218,0 +170744892540,218,0 +170744892588,220,0 +170744892637,222,0 +170744892687,226,0 +170744892736,227,0 +170744892784,228,0 +170744892832,230,0 +170744892880,235,0 +170744892928,235,0 +170744892976,238,0 +170744893024,237,0 +170744893073,219,0 +170744893121,216,0 +170744893169,216,0 +170744893217,216,0 +170744893265,217,0 +170744893312,217,0 +170744893360,218,0 +170744893408,218,0 +170744893456,220,0 +170744893504,221,0 +170744893552,221,0 +170744893600,223,0 +170744893648,223,0 +170744893696,226,0 +170744893743,229,0 +170744893791,231,0 +170744893839,233,0 +170744893887,236,0 +170744893935,233,0 +170744893983,237,0 +170744894031,245,0 +170744894078,239,0 +170744894128,239,0 +170744894177,238,0 +170744894225,218,0 +170744894273,215,0 +170744894321,215,0 +170744894369,215,0 +170744894417,215,0 +170744894465,216,0 +170744894515,217,0 +170744894562,217,0 +170744894610,218,0 +170744894658,220,0 +170744894708,220,0 +170744894756,223,0 +170744894805,226,0 +170744894853,228,0 +170744894903,229,0 +170744894951,230,0 +170744895000,233,0 +170744895048,234,0 +170744895096,237,0 +170744895144,238,0 +170744895192,237,0 +170744895242,238,0 +170744895290,238,0 +170744895339,218,0 +170744895387,216,0 +170744895436,216,0 +170744895486,216,0 +170744895534,216,0 +170744895582,216,0 +170744895631,215,0 +170744895679,215,0 +170744895729,216,0 +170744895777,217,0 +170744895825,218,0 +170744895872,218,0 +170744895922,222,0 +170744895970,224,0 +170744896019,228,0 +170744896067,230,0 +170744896115,230,0 +170744896163,233,0 +170744896211,234,0 +170744896260,234,0 +170744896310,235,0 +170744896358,239,0 +170744896405,238,0 +170744896453,220,0 +170744896501,217,0 +170744896549,218,0 +170744896597,218,0 +170744896645,219,0 +170744896693,220,0 +170744896741,220,0 +170744896789,222,0 +170744896838,224,0 +170744896888,225,0 +170744896937,228,0 +170744896987,229,0 +170744897036,233,0 +170744897086,233,0 +170744897135,234,0 +170744897185,235,0 +170744897233,236,0 +170744897281,236,0 +170744897329,241,0 +170744897378,239,0 +170744897426,239,0 +170744897476,238,0 +170744897525,239,0 +170744897573,220,0 +170744897623,215,0 +170744897672,215,0 +170744897720,215,0 +170744897768,215,0 +170744897816,216,0 +170744897864,217,0 +170744897912,218,0 +170744897961,219,0 +170744898011,221,0 +170744898059,224,0 +170744898107,226,0 +170744898155,228,0 +170744898204,229,0 +170744898252,232,0 +170744898300,238,0 +170744898348,236,0 +170744898398,236,0 +170744898447,236,0 +170744898497,236,0 +170744898546,238,0 +170744898596,238,0 +170744898645,238,0 +170744898693,219,0 +170744898743,215,0 +170744898791,215,0 +170744898839,215,0 +170744898887,215,0 +170744898935,215,0 +170744898982,215,0 +170744899032,215,0 +170744899081,215,0 +170744899129,215,0 +170744899179,216,0 +170744899228,217,0 +170744899278,219,0 +170744899326,221,0 +170744899374,225,0 +170744899422,226,0 +170744899470,228,0 +170744899518,230,0 +170744899566,232,0 +170744899614,233,0 +170744899661,234,0 +170744899709,237,0 +170744899759,236,0 +170744899809,220,0 +170744899858,215,0 +170744899908,216,0 +170744899956,216,0 +170744900005,216,0 +170744900053,215,0 +170744900101,216,0 +170744900149,216,0 +170744900197,217,0 +170744900247,217,0 +170744900296,218,0 +170744900344,220,0 +170744900392,222,0 +170744900440,227,0 +170744900488,227,0 +170744900536,230,0 +170744900585,233,0 +170744900633,233,0 +170744900683,236,0 +170744900733,234,0 +170744900780,237,0 +170744900830,237,0 +170744900878,238,0 +170744900926,220,0 +170744900974,216,0 +170744901022,215,0 +170744901071,215,0 +170744901119,215,0 +170744901167,215,0 +170744901214,215,0 +170744901262,216,0 +170744901310,215,0 +170744901358,216,0 +170744901406,216,0 +170744901454,217,0 +170744901502,218,0 +170744901550,220,0 +170744901598,224,0 +170744901647,224,0 +170744901695,227,0 +170744901744,228,0 +170744901792,230,0 +170744901840,233,0 +170744901890,234,0 +170744901937,237,0 +170744901987,239,0 +170744902035,219,0 +170744902084,216,0 +170744902134,216,0 +170744902183,215,0 +170744902231,215,0 +170744902279,215,0 +170744902327,215,0 +170744902375,216,0 +170744902422,217,0 +170744902470,217,0 +170744902518,219,0 +170744902566,219,0 +170744902614,219,0 +170744902664,221,0 +170744902712,225,0 +170744902760,227,0 +170744902808,229,0 +170744902857,231,0 +170744902905,234,0 +170744902953,234,0 +170744903001,235,0 +170744903050,237,0 +170744903100,238,0 +170744903149,220,0 +170744903199,216,0 +170744903247,216,0 +170744903296,216,0 +170744903344,216,0 +170744903392,216,0 +170744903442,217,0 +170744903490,218,0 +170744903539,218,0 +170744903589,223,0 +170744903637,220,0 +170744903685,221,0 +170744903733,223,0 +170744903782,225,0 +170744903832,229,0 +170744903881,229,0 +170744903929,232,0 +170744903977,233,0 +170744904027,239,0 +170744904075,236,0 +170744904122,238,0 +170744904170,235,0 +170744904218,239,0 +170744904268,221,0 +170744904317,216,0 +170744904365,216,0 +170744904415,215,0 +170744904465,215,0 +170744904514,215,0 +170744904562,216,0 +170744904611,216,0 +170744904659,217,0 +170744904707,218,0 +170744904755,218,0 +170744904803,219,0 +170744904853,220,0 +170744904901,223,0 +170744904949,225,0 +170744904998,227,0 +170744905046,229,0 +170744905096,230,0 +170744905144,232,0 +170744905193,233,0 +170744905241,235,0 +170744905291,231,0 +170744905340,237,0 +170744905388,229,0 +170744905438,217,0 +170744905486,216,0 +170744905535,215,0 +170744905583,215,0 +170744905633,215,0 +170744905682,215,0 +170744905732,216,0 +170744905780,216,0 +170744905829,218,0 +170744905879,218,0 +170744905927,218,0 +170744905976,220,0 +170744906024,225,0 +170744906074,224,0 +170744906122,226,0 +170744906171,227,0 +170744906219,234,0 +170744906269,232,0 +170744906317,232,0 +170744906366,235,0 +170744906415,237,0 +170744906463,239,0 +170744906511,220,0 +170744906561,217,0 +170744906610,217,0 +170744906658,217,0 +170744906706,218,0 +170744906756,217,0 +170744906805,216,0 +170744906855,216,0 +170744906904,216,0 +170744906954,217,0 +170744907002,218,0 +170744907050,220,0 +170744907098,221,0 +170744907147,225,0 +170744907197,228,0 +170744907246,229,0 +170744907294,230,0 +170744907344,235,0 +170744907392,234,0 +170744907441,235,0 +170744907489,236,0 +170744907537,239,0 +170744907587,238,0 +170744907635,220,0 +170744907684,215,0 +170744907732,215,0 +170744907780,215,0 +170744907828,215,0 +170744907878,215,0 +170744907926,215,0 +170744907973,215,0 +170744908023,215,0 +170744908071,216,0 +170744908121,217,0 +170744908170,218,0 +170744908220,219,0 +170744908267,221,0 +170744908315,224,0 +170744908363,225,0 +170744908413,227,0 +170744908463,230,0 +170744908512,230,0 +170744908560,233,0 +170744908608,235,0 +170744908656,237,0 +170744908704,238,0 +170744908752,219,0 +170744908800,216,0 +170744908848,215,0 +170744908896,215,0 +170744908944,215,0 +170744908993,215,0 +170744909041,216,0 +170744909089,215,0 +170744909137,216,0 +170744909185,216,0 +170744909234,217,0 +170744909282,219,0 +170744909330,222,0 +170744909378,223,0 +170744909426,225,0 +170744909474,227,0 +170744909521,229,0 +170744909569,231,0 +170744909617,232,0 +170744909665,234,0 +170744909713,235,0 +170744909763,238,0 +170744909811,238,0 +170744909859,226,0 +170744909907,216,0 +170744909956,215,0 +170744910004,215,0 +170744910054,215,0 +170744910102,215,0 +170744910149,215,0 +170744910197,215,0 +170744910245,215,0 +170744910293,216,0 +170744910341,217,0 +170744910389,217,0 +170744910437,218,0 +170744910486,221,0 +170744910536,222,0 +170744910584,224,0 +170744910631,228,0 +170744910681,230,0 +170744910729,231,0 +170744910777,232,0 +170744910825,233,0 +170744910873,235,0 +170744910921,239,0 +170744910970,227,0 +170744911018,217,0 +170744911066,215,0 +170744911114,215,0 +170744911162,215,0 +170744911210,215,0 +170744911258,215,0 +170744911306,215,0 +170744911354,215,0 +170744911402,215,0 +170744911450,221,0 +170744911499,217,0 +170744911549,218,0 +170744911597,218,0 +170744911645,222,0 +170744911694,225,0 +170744911744,228,0 +170744911793,229,0 +170744911841,232,0 +170744911889,234,0 +170744911937,234,0 +170744911987,235,0 +170744912035,239,0 +170744912084,238,0 +170744912132,219,0 +170744912182,216,0 +170744912230,216,0 +170744912278,215,0 +170744912327,215,0 +170744912375,215,0 +170744912423,216,0 +170744912471,216,0 +170744912521,217,0 +170744912569,217,0 +170744912616,218,0 +170744912664,219,0 +170744912714,221,0 +170744912763,223,0 +170744912811,226,0 +170744912859,228,0 +170744912909,230,0 +170744912957,231,0 +170744913005,233,0 +170744913053,235,0 +170744913102,235,0 +170744913152,236,0 +170744913200,238,0 +170744913248,220,0 +170744913296,216,0 +170744913344,215,0 +170744913393,215,0 +170744913441,215,0 +170744913491,215,0 +170744913539,215,0 +170744913588,215,0 +170744913638,215,0 +170744913686,216,0 +170744913734,217,0 +170744913783,217,0 +170744913833,218,0 +170744913880,220,0 +170744913928,222,0 +170744913978,224,0 +170744914026,227,0 +170744914074,228,0 +170744914122,230,0 +170744914171,231,0 +170744914219,233,0 +170744914269,237,0 +170744914317,238,0 +170744914366,220,0 +170744914414,217,0 +170744914464,215,0 +170744914513,216,0 +170744914561,217,0 +170744914609,217,0 +170744914659,218,0 +170744914707,218,0 +170744914755,219,0 +170744914804,220,0 +170744914854,222,0 +170744914902,224,0 +170744914950,227,0 +170744914998,229,0 +170744915045,230,0 +170744915095,233,0 +170744915143,234,0 +170744915192,234,0 +170744915242,235,0 +170744915290,236,0 +170744915338,238,0 +170744915386,238,0 +170744915434,239,0 +170744915482,220,0 +170744915530,215,0 +170744915578,215,0 +170744915626,215,0 +170744915675,215,0 +170744915723,215,0 +170744915773,216,0 +170744915821,217,0 +170744915870,217,0 +170744915918,218,0 +170744915966,219,0 +170744916014,219,0 +170744916063,222,0 +170744916111,224,0 +170744916159,227,0 +170744916207,229,0 +170744916255,231,0 +170744916303,232,0 +170744916352,235,0 +170744916400,235,0 +170744916448,236,0 +170744916496,237,0 +170744916545,239,0 +170744916593,220,0 +170744916641,215,0 +170744916689,215,0 +170744916737,215,0 +170744916785,215,0 +170744916833,216,0 +170744916880,216,0 +170744916928,217,0 +170744916976,219,0 +170744917024,218,0 +170744917073,220,0 +170744917121,222,0 +170744917169,224,0 +170744917218,227,0 +170744917266,230,0 +170744917314,230,0 +170744917362,234,0 +170744917410,234,0 +170744917458,236,0 +170744917507,235,0 +170744917555,238,0 +170744917605,237,0 +170744917653,238,0 +170744917701,222,0 +170744917748,216,0 +170744917796,215,0 +170744917844,215,0 +170744917892,215,0 +170744917940,217,0 +170744917990,217,0 +170744918038,218,0 +170744918086,219,0 +170744918134,219,0 +170744918182,220,0 +170744918229,222,0 +170744918277,226,0 +170744918325,228,0 +170744918375,231,0 +170744918423,232,0 +170744918471,233,0 +170744918520,234,0 +170744918568,235,0 +170744918616,237,0 +170744918666,237,0 +170744918714,238,0 +170744918762,239,0 +170744918809,220,0 +170744918857,216,0 +170744918905,215,0 +170744918953,215,0 +170744919001,215,0 +170744919049,216,0 +170744919097,216,0 +170744919145,217,0 +170744919193,217,0 +170744919241,218,0 +170744919289,219,0 +170744919337,219,0 +170744919386,222,0 +170744919434,224,0 +170744919482,225,0 +170744919530,229,0 +170744919579,231,0 +170744919629,233,0 +170744919677,233,0 +170744919726,236,0 +170744919774,236,0 +170744919822,238,0 +170744919870,239,0 +170744919918,238,0 +170744919966,220,0 +170744920014,216,0 +170744920063,215,0 +170744920113,216,0 +170744920161,217,0 +170744920210,217,0 +170744920258,218,0 +170744920306,218,0 +170744920354,220,0 +170744920402,221,0 +170744920451,222,0 +170744920501,223,0 +170744920549,226,0 +170744920598,229,0 +170744920646,231,0 +170744920696,231,0 +170744920745,233,0 +170744920793,235,0 +170744920841,234,0 +170744920889,233,0 +170744920939,238,0 +170744920988,238,0 +170744921036,238,0 +170744921086,219,0 +170744921134,215,0 +170744921183,215,0 +170744921231,215,0 +170744921279,214,0 +170744921328,215,0 +170744921376,215,0 +170744921424,215,0 +170744921472,215,0 +170744921521,216,0 +170744921571,217,0 +170744921620,220,0 +170744921668,224,0 +170744921718,225,0 +170744921766,228,0 +170744921814,230,0 +170744921862,230,0 +170744921911,232,0 +170744921961,234,0 +170744922009,237,0 +170744922057,237,0 +170744922106,237,0 +170744922154,238,0 +170744922202,219,0 +170744922250,215,0 +170744922300,215,0 +170744922348,216,0 +170744922395,217,0 +170744922445,217,0 +170744922493,218,0 +170744922541,219,0 +170744922589,219,0 +170744922638,221,0 +170744922686,222,0 +170744922734,224,0 +170744922782,226,0 +170744922830,227,0 +170744922878,230,0 +170744922926,232,0 +170744922976,232,0 +170744923023,234,0 +170744923071,236,0 +170744923119,235,0 +170744923169,238,0 +170744923217,238,0 +170744923267,238,0 +170744923314,220,0 +170744923364,215,0 +170744923412,215,0 +170744923460,215,0 +170744923508,215,0 +170744923556,215,0 +170744923604,215,0 +170744923653,215,0 +170744923703,215,0 +170744923752,215,0 +170744923802,216,0 +170744923851,217,0 +170744923901,217,0 +170744923950,219,0 +170744923998,222,0 +170744924048,224,0 +170744924096,227,0 +170744924144,230,0 +170744924193,230,0 +170744924241,231,0 +170744924291,234,0 +170744924340,237,0 +170744924388,238,0 +170744924438,219,0 +170744924486,215,0 +170744924533,215,0 +170744924581,215,0 +170744924629,217,0 +170744924677,216,0 +170744924725,217,0 +170744924773,217,0 +170744924822,218,0 +170744924870,219,0 +170744924918,219,0 +170744924966,219,0 +170744925014,220,0 +170744925063,224,0 +170744925111,225,0 +170744925159,228,0 +170744925207,232,0 +170744925255,231,0 +170744925303,235,0 +170744925351,235,0 +170744925399,236,0 +170744925447,238,0 +170744925495,238,0 +170744925542,221,0 +170744925590,216,0 +170744925638,215,0 +170744925688,215,0 +170744925737,215,0 +170744925787,215,0 +170744925834,215,0 +170744925882,215,0 +170744925930,216,0 +170744925980,217,0 +170744926028,217,0 +170744926077,218,0 +170744926127,221,0 +170744926175,221,0 +170744926224,224,0 +170744926274,226,0 +170744926323,229,0 +170744926373,229,0 +170744926422,232,0 +170744926472,233,0 +170744926520,234,0 +170744926569,237,0 +170744926617,238,0 +170744926667,219,0 +170744926716,215,0 +170744926766,215,0 +170744926814,215,0 +170744926862,215,0 +170744926911,215,0 +170744926959,215,0 +170744927009,215,0 +170744927057,215,0 +170744927105,215,0 +170744927153,217,0 +170744927202,217,0 +170744927252,218,0 +170744927301,219,0 +170744927349,222,0 +170744927399,224,0 +170744927447,227,0 +170744927495,229,0 +170744927543,229,0 +170744927591,232,0 +170744927640,234,0 +170744927690,239,0 +170744927739,239,0 +170744927787,220,0 +170744927837,215,0 +170744927885,215,0 +170744927934,215,0 +170744927982,215,0 +170744928030,215,0 +170744928080,215,0 +170744928128,215,0 +170744928176,216,0 +170744928223,216,0 +170744928271,217,0 +170744928319,218,0 +170744928367,219,0 +170744928415,222,0 +170744928463,223,0 +170744928513,227,0 +170744928561,229,0 +170744928609,229,0 +170744928658,231,0 +170744928706,234,0 +170744928754,234,0 +170744928802,236,0 +170744928852,238,0 +170744928900,219,0 +170744928947,216,0 +170744928995,215,0 +170744929043,215,0 +170744929091,215,0 +170744929139,215,0 +170744929187,215,0 +170744929235,215,0 +170744929283,215,0 +170744929331,216,0 +170744929379,217,0 +170744929427,217,0 +170744929475,218,0 +170744929523,219,0 +170744929571,221,0 +170744929619,224,0 +170744929669,226,0 +170744929717,231,0 +170744929764,230,0 +170744929814,232,0 +170744929864,234,0 +170744929913,237,0 +170744929963,238,0 +170744930011,219,0 +170744930058,216,0 +170744930108,215,0 +170744930156,215,0 +170744930204,215,0 +170744930252,215,0 +170744930300,216,0 +170744930348,216,0 +170744930396,217,0 +170744930444,218,0 +170744930493,218,0 +170744930543,219,0 +170744930592,220,0 +170744930642,222,0 +170744930690,225,0 +170744930739,227,0 +170744930787,229,0 +170744930835,230,0 +170744930883,232,0 +170744930931,233,0 +170744930981,235,0 +170744931029,232,0 +170744931077,238,0 +170744931124,233,0 +170744931172,217,0 +170744931222,216,0 +170744931271,215,0 +170744931319,215,0 +170744931367,215,0 +170744931415,215,0 +170744931465,215,0 +170744931513,217,0 +170744931561,217,0 +170744931609,218,0 +170744931657,219,0 +170744931705,220,0 +170744931753,221,0 +170744931801,224,0 +170744931848,225,0 +170744931898,229,0 +170744931948,232,0 +170744931995,231,0 +170744932045,234,0 +170744932093,235,0 +170744932142,235,0 +170744932192,238,0 +170744932240,220,0 +170744932288,216,0 +170744932337,215,0 +170744932385,215,0 +170744932433,215,0 +170744932481,215,0 +170744932529,215,0 +170744932577,215,0 +170744932627,215,0 +170744932675,215,0 +170744932722,215,0 +170744932770,215,0 +170744932820,215,0 +170744932868,216,0 +170744932916,217,0 +170744932964,218,0 +170744933013,219,0 +170744933061,222,0 +170744933109,223,0 +170744933159,226,0 +170744933208,228,0 +170744933258,230,0 +170744933306,238,0 +170744933354,235,0 +170744933401,217,0 +170744933449,216,0 +170744933497,216,0 +170744933545,218,0 +170744933594,218,0 +170744933644,219,0 +170744933692,219,0 +170744933740,220,0 +170744933788,220,0 +170744933838,222,0 +170744933887,223,0 +170744933935,224,0 +170744933983,225,0 +170744934033,230,0 +170744934080,231,0 +170744934130,232,0 +170744934178,233,0 +170744934228,236,0 +170744934277,234,0 +170744934327,235,0 +170744934376,231,0 +170744934426,238,0 +170744934475,227,0 +170744934523,217,0 +170744934571,215,0 +170744934619,215,0 +170744934667,215,0 +170744934715,215,0 +170744934764,215,0 +170744934814,215,0 +170744934862,215,0 +170744934910,215,0 +170744934958,215,0 +170744935007,216,0 +170744935057,216,0 +170744935106,218,0 +170744935156,220,0 +170744935205,223,0 +170744935255,226,0 +170744935303,227,0 +170744935352,230,0 +170744935400,231,0 +170744935448,233,0 +170744935496,231,0 +170744935544,237,0 +170744935594,230,0 +170744935642,217,0 +170744935690,215,0 +170744935738,215,0 +170744935787,215,0 +170744935837,215,0 +170744935886,215,0 +170744935934,215,0 +170744935984,216,0 +170744936033,216,0 +170744936083,217,0 +170744936131,218,0 +170744936179,219,0 +170744936228,219,0 +170744936278,221,0 +170744936326,225,0 +170744936374,227,0 +170744936422,229,0 +170744936470,230,0 +170744936518,232,0 +170744936566,234,0 +170744936615,233,0 +170744936663,237,0 +170744936711,236,0 +170744936759,218,0 +170744936807,216,0 +170744936855,217,0 +170744936902,217,0 +170744936950,217,0 +170744937000,216,0 +170744937048,217,0 +170744937097,216,0 +170744937145,217,0 +170744937193,217,0 +170744937243,218,0 +170744937291,219,0 +170744937339,219,0 +170744937387,222,0 +170744937435,224,0 +170744937482,227,0 +170744937532,229,0 +170744937580,230,0 +170744937628,232,0 +170744937676,234,0 +170744937725,235,0 +170744937775,237,0 +170744937824,240,0 +170744937874,217,0 +170744937922,215,0 +170744937971,215,0 +170744938019,215,0 +170744938067,215,0 +170744938117,215,0 +170744938166,215,0 +170744938214,216,0 +170744938264,216,0 +170744938312,217,0 +170744938360,218,0 +170744938409,219,0 +170744938457,220,0 +170744938507,222,0 +170744938556,224,0 +170744938604,227,0 +170744938654,229,0 +170744938702,231,0 +170744938750,233,0 +170744938798,234,0 +170744938846,235,0 +170744938895,239,0 +170744938943,236,0 +170744938991,216,0 +170744939039,215,0 +170744939089,215,0 +170744939138,215,0 +170744939186,215,0 +170744939234,215,0 +170744939284,216,0 +170744939332,216,0 +170744939380,217,0 +170744939428,217,0 +170744939475,219,0 +170744939523,220,0 +170744939571,220,0 +170744939621,222,0 +170744939670,225,0 +170744939718,228,0 +170744939766,230,0 +170744939814,232,0 +170744939864,232,0 +170744939913,235,0 +170744939961,236,0 +170744940009,239,0 +170744940057,239,0 +170744940107,218,0 +170744940156,215,0 +170744940204,215,0 +170744940252,215,0 +170744940300,215,0 +170744940349,214,0 +170744940397,215,0 +170744940445,215,0 +170744940493,216,0 +170744940542,216,0 +170744940590,217,0 +170744940638,219,0 +170744940686,218,0 +170744940734,221,0 +170744940782,224,0 +170744940830,226,0 +170744940878,228,0 +170744940927,229,0 +170744940975,231,0 +170744941023,233,0 +170744941071,234,0 +170744941119,237,0 +170744941168,238,0 +170744941216,220,0 +170744941266,215,0 +170744941314,215,0 +170744941362,217,0 +170744941409,217,0 +170744941457,217,0 +170744941505,219,0 +170744941555,219,0 +170744941603,220,0 +170744941651,221,0 +170744941700,221,0 +170744941748,223,0 +170744941796,225,0 +170744941844,228,0 +170744941892,228,0 +170744941940,230,0 +170744941990,232,0 +170744942038,235,0 +170744942086,235,0 +170744942135,236,0 +170744942183,239,0 +170744942233,240,0 +170744942282,239,0 +170744942332,220,0 +170744942380,215,0 +170744942428,215,0 +170744942475,215,0 +170744942525,216,0 +170744942573,217,0 +170744942623,217,0 +170744942671,218,0 +170744942719,220,0 +170744942768,219,0 +170744942818,221,0 +170744942867,222,0 +170744942915,223,0 +170744942963,228,0 +170744943012,229,0 +170744943060,231,0 +170744943108,233,0 +170744943158,234,0 +170744943207,237,0 +170744943255,238,0 +170744943303,239,0 +170744943351,241,0 +170744943401,239,0 +170744943450,220,0 +170744943498,215,0 +170744943546,215,0 +170744943596,216,0 +170744943644,217,0 +170744943693,218,0 +170744943741,218,0 +170744943789,219,0 +170744943837,219,0 +170744943886,220,0 +170744943934,222,0 +170744943984,225,0 +170744944033,227,0 +170744944083,230,0 +170744944131,233,0 +170744944179,234,0 +170744944229,237,0 +170744944277,236,0 +170744944326,238,0 +170744944374,239,0 +170744944422,240,0 +170744944471,240,0 +170744944519,238,0 +170744944569,220,0 +170744944617,216,0 +170744944665,215,0 +170744944713,216,0 +170744944762,217,0 +170744944812,218,0 +170744944860,218,0 +170744944908,218,0 +170744944956,218,0 +170744945004,220,0 +170744945052,222,0 +170744945101,225,0 +170744945149,226,0 +170744945199,229,0 +170744945248,231,0 +170744945298,232,0 +170744945345,235,0 +170744945395,237,0 +170744945445,237,0 +170744945492,238,0 +170744945540,238,0 +170744945588,239,0 +170744945636,239,0 +170744945686,220,0 +170744945734,216,0 +170744945782,216,0 +170744945831,216,0 +170744945879,216,0 +170744945929,219,0 +170744945978,218,0 +170744946026,218,0 +170744946074,219,0 +170744946124,220,0 +170744946172,221,0 +170744946221,223,0 +170744946271,225,0 +170744946320,228,0 +170744946368,231,0 +170744946418,233,0 +170744946466,235,0 +170744946514,237,0 +170744946563,236,0 +170744946611,243,0 +170744946661,239,0 +170744946710,239,0 +170744946758,238,0 +170744946808,225,0 +170744946856,219,0 +170744946904,216,0 +170744946952,216,0 +170744947001,217,0 +170744947049,217,0 +170744947099,218,0 +170744947148,219,0 +170744947196,219,0 +170744947244,220,0 +170744947292,221,0 +170744947340,222,0 +170744947388,224,0 +170744947438,227,0 +170744947485,230,0 +170744947533,231,0 +170744947581,232,0 +170744947631,233,0 +170744947679,235,0 +170744947727,236,0 +170744947776,237,0 +170744947826,238,0 +170744947874,239,0 +170744947922,228,0 +170744947970,216,0 +170744948018,216,0 +170744948067,218,0 +170744948116,218,0 +170744948164,219,0 +170744948212,220,0 +170744948260,219,0 +170744948308,221,0 +170744948356,222,0 +170744948406,231,0 +170744948454,224,0 +170744948502,227,0 +170744948550,230,0 +170744948598,230,0 +170744948647,237,0 +170744948697,235,0 +170744948746,234,0 +170744948794,238,0 +170744948844,237,0 +170744948892,238,0 +170744948940,237,0 +170744948988,240,0 +170744949036,221,0 +170744949083,215,0 +170744949131,215,0 +170744949179,215,0 +170744949229,215,0 +170744949277,215,0 +170744949325,215,0 +170744949374,215,0 +170744949422,215,0 +170744949470,215,0 +170744949518,215,0 +170744949566,216,0 +170744949614,217,0 +170744949662,218,0 +170744949712,219,0 +170744949761,223,0 +170744949809,224,0 +170744949859,226,0 +170744949907,228,0 +170744949955,232,0 +170744950004,235,0 +170744950054,238,0 +170744950102,238,0 +170744950150,221,0 +170744950198,216,0 +170744950247,215,0 +170744950295,215,0 +170744950343,215,0 +170744950391,215,0 +170744950440,215,0 +170744950488,215,0 +170744950536,215,0 +170744950584,215,0 +170744950632,215,0 +170744950682,215,0 +170744950731,215,0 +170744950779,215,0 +170744950827,215,0 +170744950876,215,0 +170744950924,215,0 +170744950974,215,0 +170744951023,215,0 +170744951071,215,0 +170744951121,215,0 +170744951169,216,0 +170744951217,216,0 +170744951265,218,0 +170744951313,219,0 +170744951361,221,0 +170744951410,224,0 +170744951460,226,0 +170744951508,229,0 +170744951556,230,0 +170744951604,231,0 +170744951652,234,0 +170744951700,236,0 +170744951749,238,0 +170744951797,238,0 +170744951845,228,0 +170744951893,222,0 +170744951941,222,0 +170744951989,222,0 +170744952037,216,0 +170744952086,216,0 +170744952134,216,0 +170744952182,217,0 +170744952232,218,0 +170744952280,219,0 +170744952328,220,0 +170744952376,220,0 +170744952424,221,0 +170744952472,222,0 +170744952520,224,0 +170744952569,227,0 +170744952617,230,0 +170744952665,231,0 +170744952713,233,0 +170744952762,238,0 +170744952812,236,0 +170744952862,238,0 +170744952911,237,0 +170744952959,220,0 +170744953007,215,0 +170744953056,215,0 +170744953104,215,0 +170744953152,215,0 +170744953202,216,0 +170744953250,217,0 +170744953299,218,0 +170744953347,218,0 +170744953395,219,0 +170744953445,220,0 +170744953493,220,0 +170744953541,220,0 +170744953590,224,0 +170744953638,226,0 +170744953688,228,0 +170744953737,232,0 +170744953785,232,0 +170744953835,235,0 +170744953884,236,0 +170744953932,236,0 +170744953982,239,0 +170744954031,240,0 +170744954079,220,0 +170744954127,215,0 +170744954175,215,0 +170744954223,215,0 +170744954271,215,0 +170744954319,215,0 +170744954367,215,0 +170744954415,216,0 +170744954464,217,0 +170744954512,217,0 +170744954560,218,0 +170744954608,218,0 +170744954656,219,0 +170744954704,221,0 +170744954752,223,0 +170744954799,226,0 +170744954847,229,0 +170744954895,230,0 +170744954943,233,0 +170744954991,237,0 +170744955039,236,0 +170744955088,240,0 +170744955136,239,0 +170744955184,221,0 +170744955232,215,0 +170744955280,215,0 +170744955328,215,0 +170744955376,215,0 +170744955423,216,0 +170744955471,217,0 +170744955521,218,0 +170744955569,218,0 +170744955617,219,0 +170744955664,219,0 +170744955712,221,0 +170744955760,223,0 +170744955808,224,0 +170744955856,227,0 +170744955904,230,0 +170744955952,230,0 +170744956001,233,0 +170744956049,236,0 +170744956097,237,0 +170744956145,236,0 +170744956194,234,0 +170744956242,237,0 +170744956290,226,0 +170744956338,216,0 +170744956386,215,0 +170744956435,215,0 +170744956485,215,0 +170744956534,216,0 +170744956584,217,0 +170744956632,218,0 +170744956680,219,0 +170744956728,219,0 +170744956776,221,0 +170744956824,223,0 +170744956871,226,0 +170744956919,227,0 +170744956967,230,0 +170744957015,232,0 +170744957063,233,0 +170744957111,235,0 +170744957159,235,0 +170744957207,237,0 +170744957255,239,0 +170744957303,238,0 +170744957352,239,0 +170744957400,239,0 +170744957448,218,0 +170744957496,215,0 +170744957544,215,0 +170744957591,215,0 +170744957639,216,0 +170744957687,217,0 +170744957735,217,0 +170744957783,218,0 +170744957831,219,0 +170744957881,221,0 +170744957929,224,0 +170744957977,226,0 +170744958025,227,0 +170744958074,229,0 +170744958122,231,0 +170744958170,234,0 +170744958218,234,0 +170744958266,236,0 +170744958314,236,0 +170744958362,238,0 +170744958410,238,0 +170744958457,239,0 +170744958505,237,0 +170744958553,220,0 +170744958603,215,0 +170744958651,215,0 +170744958700,215,0 +170744958748,215,0 +170744958796,216,0 +170744958844,216,0 +170744958892,217,0 +170744958940,218,0 +170744958989,220,0 +170744959037,223,0 +170744959087,224,0 +170744959137,226,0 +170744959186,229,0 +170744959234,233,0 +170744959282,233,0 +170744959331,234,0 +170744959379,235,0 +170744959427,236,0 +170744959477,237,0 +170744959526,238,0 +170744959576,238,0 +170744959625,238,0 +170744959675,219,0 +170744959723,215,0 +170744959772,216,0 +170744959820,215,0 +170744959868,215,0 +170744959917,216,0 +170744959965,215,0 +170744960013,217,0 +170744960061,218,0 +170744960109,219,0 +170744960157,220,0 +170744960205,223,0 +170744960255,224,0 +170744960303,227,0 +170744960351,230,0 +170744960399,234,0 +170744960447,231,0 +170744960494,234,0 +170744960542,237,0 +170744960590,237,0 +170744960638,238,0 +170744960686,240,0 +170744960735,239,0 +170744960783,219,0 +170744960831,215,0 +170744960879,215,0 +170744960929,215,0 +170744960977,215,0 +170744961025,216,0 +170744961072,216,0 +170744961120,217,0 +170744961168,218,0 +170744961216,219,0 +170744961264,221,0 +170744961312,223,0 +170744961362,225,0 +170744961410,228,0 +170744961458,230,0 +170744961507,233,0 +170744961555,234,0 +170744961605,236,0 +170744961654,236,0 +170744961702,256,0 +170744961750,239,0 +170744961800,239,0 +170744961849,237,0 +170744961897,220,0 +170744961945,216,0 +170744961993,215,0 +170744962043,215,0 +170744962091,215,0 +170744962140,215,0 +170744962188,215,0 +170744962238,215,0 +170744962286,216,0 +170744962335,216,0 +170744962385,217,0 +170744962433,218,0 +170744962481,219,0 +170744962528,222,0 +170744962576,225,0 +170744962626,226,0 +170744962674,229,0 +170744962723,231,0 +170744962771,233,0 +170744962821,234,0 +170744962870,234,0 +170744962918,238,0 +170744962966,238,0 +170744963014,219,0 +170744963062,216,0 +170744963110,215,0 +170744963158,215,0 +170744963206,215,0 +170744963254,215,0 +170744963302,216,0 +170744963351,216,0 +170744963399,216,0 +170744963447,217,0 +170744963495,218,0 +170744963543,219,0 +170744963591,220,0 +170744963639,222,0 +170744963689,224,0 +170744963737,233,0 +170744963784,228,0 +170744963832,230,0 +170744963882,231,0 +170744963931,233,0 +170744963979,234,0 +170744964027,233,0 +170744964077,238,0 +170744964126,222,0 +170744964174,216,0 +170744964222,215,0 +170744964270,215,0 +170744964318,215,0 +170744964368,215,0 +170744964416,215,0 +170744964464,215,0 +170744964513,216,0 +170744964563,217,0 +170744964611,218,0 +170744964660,218,0 +170744964710,220,0 +170744964759,221,0 +170744964809,225,0 +170744964857,227,0 +170744964906,229,0 +170744964956,231,0 +170744965004,233,0 +170744965053,235,0 +170744965101,237,0 +170744965151,238,0 +170744965199,238,0 +170744965246,218,0 +170744965294,216,0 +170744965342,216,0 +170744965390,216,0 +170744965438,216,0 +170744965486,216,0 +170744965534,218,0 +170744965582,216,0 +170744965632,216,0 +170744965681,218,0 +170744965731,218,0 +170744965779,219,0 +170744965827,220,0 +170744965875,223,0 +170744965924,226,0 +170744965974,228,0 +170744966021,230,0 +170744966069,231,0 +170744966117,233,0 +170744966165,234,0 +170744966213,237,0 +170744966261,238,0 +170744966311,238,0 +170744966359,223,0 +170744966408,217,0 +170744966458,216,0 +170744966506,216,0 +170744966555,215,0 +170744966605,216,0 +170744966654,217,0 +170744966704,217,0 +170744966752,218,0 +170744966800,218,0 +170744966848,220,0 +170744966897,220,0 +170744966945,224,0 +170744966993,225,0 +170744967041,228,0 +170744967091,230,0 +170744967139,232,0 +170744967187,234,0 +170744967235,233,0 +170744967283,235,0 +170744967332,238,0 +170744967380,236,0 +170744967428,238,0 +170744967478,237,0 +170744967525,218,0 +170744967573,215,0 +170744967621,215,0 +170744967669,215,0 +170744967717,215,0 +170744967767,215,0 +170744967815,215,0 +170744967863,215,0 +170744967911,215,0 +170744967959,216,0 +170744968007,217,0 +170744968056,217,0 +170744968104,218,0 +170744968152,224,0 +170744968200,224,0 +170744968250,227,0 +170744968297,229,0 +170744968347,231,0 +170744968395,232,0 +170744968443,234,0 +170744968491,235,0 +170744968539,238,0 +170744968587,238,0 +170744968634,219,0 +170744968682,215,0 +170744968730,215,0 +170744968778,215,0 +170744968827,215,0 +170744968875,215,0 +170744968923,216,0 +170744968971,216,0 +170744969019,217,0 +170744969069,218,0 +170744969118,219,0 +170744969166,220,0 +170744969214,222,0 +170744969264,225,0 +170744969314,227,0 +170744969363,228,0 +170744969411,231,0 +170744969460,233,0 +170744969510,235,0 +170744969558,234,0 +170744969607,231,0 +170744969657,239,0 +170744969706,238,0 +170744969754,218,0 +170744969804,216,0 +170744969854,215,0 +170744969903,215,0 +170744969951,216,0 +170744970001,215,0 +170744970050,216,0 +170744970098,215,0 +170744970146,215,0 +170744970196,215,0 +170744970244,216,0 +170744970293,217,0 +170744970341,218,0 +170744970391,220,0 +170744970439,223,0 +170744970487,225,0 +170744970535,227,0 +170744970583,231,0 +170744970632,231,0 +170744970682,231,0 +170744970730,233,0 +170744970779,239,0 +170744970827,238,0 +170744970875,226,0 +170744970925,1010100,0 +170744970971,227,0 +170744971020,242,0 +170744971083,222,0 +170744971131,221,0 +170744971179,216,0 +170744971228,216,0 +170744971276,217,0 +170744971324,218,0 +170744971374,219,0 +170744971422,220,0 +170744971469,222,0 +170744971519,226,0 +170744971567,226,0 +170744971615,228,0 +170744971664,231,0 +170744971712,231,0 +170744971762,233,0 +170744971812,234,0 +170744971861,231,0 +170744971911,239,0 +170744971960,222,0 +170744972010,216,0 +170744972059,215,0 +170744972107,215,0 +170744972155,215,0 +170744972203,215,0 +170744972251,215,0 +170744972301,215,0 +170744972348,215,0 +170744972398,216,0 +170744972448,217,0 +170744972496,218,0 +170744972543,219,0 +170744972591,222,0 +170744972639,225,0 +170744972687,226,0 +170744972735,229,0 +170744972783,230,0 +170744972833,233,0 +170744972882,234,0 +170744972930,235,0 +170744972978,237,0 +170744973028,239,0 +170744973077,219,0 +170744973127,234,0 +170744973179,234,0 +170744973232,235,0 +170744973290,235,0 +170744973343,235,0 +170744973395,234,0 +170744973448,217,0 +170744973496,217,0 +170744973546,216,0 +170744973595,217,0 +170744973645,219,0 +170744973694,221,0 +170744973744,223,0 +170744973793,226,0 +170744973841,228,0 +170744973889,229,0 +170744973937,232,0 +170744973987,234,0 +170744974036,236,0 +170744974086,236,0 +170744974134,240,0 +170744974182,236,0 +170744974230,219,0 +170744974278,216,0 +170744974327,215,0 +170744974377,216,0 +170744974425,215,0 +170744974474,216,0 +170744974522,216,0 +170744974571,216,0 +170744974619,216,0 +170744974669,216,0 +170744974719,217,0 +170744974768,218,0 +170744974816,219,0 +170744974864,221,0 +170744974912,224,0 +170744974961,226,0 +170744975009,228,0 +170744975057,229,0 +170744975107,233,0 +170744975155,233,0 +170744975204,234,0 +170744975254,237,0 +170744975302,237,0 +170744975350,219,0 +170744975399,215,0 +170744975449,215,0 +170744975497,216,0 +170744975546,215,0 +170744975596,215,0 +170744975644,217,0 +170744975693,216,0 +170744975743,217,0 +170744975791,218,0 +170744975839,219,0 +170744975888,219,0 +170744975936,220,0 +170744975986,223,0 +170744976034,225,0 +170744976083,227,0 +170744976133,230,0 +170744976181,232,0 +170744976229,233,0 +170744976277,235,0 +170744976326,235,0 +170744976374,237,0 +170744976422,237,0 +170744976470,221,0 +170744976519,217,0 +170744976567,216,0 +170744976617,215,0 +170744976665,216,0 +170744976713,216,0 +170744976762,216,0 +170744976812,216,0 +170744976862,215,0 +170744976909,216,0 +170744976959,217,0 +170744977007,218,0 +170744977055,218,0 +170744977104,221,0 +170744977154,223,0 +170744977202,226,0 +170744977252,228,0 +170744977299,231,0 +170744977347,232,0 +170744977397,233,0 +170744977446,231,0 +170744977494,237,0 +170744977544,232,0 +170744977593,217,0 +170744977643,215,0 +170744977691,215,0 +170744977739,215,0 +170744977787,215,0 +170744977836,216,0 +170744977884,217,0 +170744977934,218,0 +170744977982,219,0 +170744978030,219,0 +170744978079,220,0 +170744978129,222,0 +170744978177,224,0 +170744978225,227,0 +170744978274,230,0 +170744978322,232,0 +170744978370,235,0 +170744978418,233,0 +170744978466,235,0 +170744978514,235,0 +170744978563,238,0 +170744978613,238,0 +170744978661,239,0 +170744978709,218,0 +170744978757,215,0 +170744978806,215,0 +170744978856,215,0 +170744978905,215,0 +170744978953,215,0 +170744979001,216,0 +170744979049,217,0 +170744979097,217,0 +170744979145,218,0 +170744979193,219,0 +170744979241,220,0 +170744979289,223,0 +170744979337,224,0 +170744979385,227,0 +170744979433,228,0 +170744979482,230,0 +170744979530,233,0 +170744979578,234,0 +170744979626,235,0 +170744979674,237,0 +170744979722,236,0 +170744979772,238,0 +170744979820,219,0 +170744979868,216,0 +170744979916,217,0 +170744979965,218,0 +170744980013,219,0 +170744980061,219,0 +170744980109,221,0 +170744980157,222,0 +170744980204,222,0 +170744980254,223,0 +170744980302,225,0 +170744980351,227,0 +170744980399,227,0 +170744980447,231,0 +170744980497,233,0 +170744980546,234,0 +170744980594,236,0 +170744980644,236,0 +170744980693,237,0 +170744980743,239,0 +170744980791,239,0 +170744980840,239,0 +170744980888,237,0 +170744980938,219,0 +170744980987,216,0 +170744981037,215,0 +170744981085,215,0 +170744981133,215,0 +170744981182,216,0 +170744981230,217,0 +170744981278,217,0 +170744981328,218,0 +170744981376,219,0 +170744981424,220,0 +170744981473,222,0 +170744981521,225,0 +170744981570,227,0 +170744981618,230,0 +170744981666,231,0 +170744981716,232,0 +170744981765,233,0 +170744981815,236,0 +170744981865,237,0 +170744981913,238,0 +170744981962,239,0 +170744982012,238,0 +170744982059,219,0 +170744982107,216,0 +170744982155,215,0 +170744982203,215,0 +170744982251,215,0 +170744982299,215,0 +170744982349,216,0 +170744982398,217,0 +170744982446,217,0 +170744982496,219,0 +170744982544,219,0 +170744982592,221,0 +170744982641,223,0 +170744982689,226,0 +170744982737,227,0 +170744982785,229,0 +170744982833,232,0 +170744982881,234,0 +170744982929,233,0 +170744982977,235,0 +170744983025,237,0 +170744983075,237,0 +170744983124,238,0 +170744983174,220,0 +170744983222,215,0 +170744983270,217,0 +170744983319,217,0 +170744983369,217,0 +170744983417,218,0 +170744983465,219,0 +170744983513,220,0 +170744983561,221,0 +170744983610,221,0 +170744983660,223,0 +170744983708,226,0 +170744983756,228,0 +170744983804,230,0 +170744983852,231,0 +170744983901,233,0 +170744983949,234,0 +170744983997,236,0 +170744984046,238,0 +170744984094,237,0 +170744984144,238,0 +170744984192,238,0 +170744984240,238,0 +170744984289,220,0 +170744984337,216,0 +170744984385,215,0 +170744984435,215,0 +170744984483,215,0 +170744984531,215,0 +170744984579,216,0 +170744984627,216,0 +170744984676,217,0 +170744984724,218,0 +170744984772,219,0 +170744984822,222,0 +170744984870,224,0 +170744984918,226,0 +170744984966,228,0 +170744985015,230,0 +170744985065,232,0 +170744985114,233,0 +170744985164,235,0 +170744985212,236,0 +170744985260,237,0 +170744985308,238,0 +170744985357,237,0 +170744985405,220,0 +170744985453,216,0 +170744985503,215,0 +170744985552,215,0 +170744985602,215,0 +170744985651,215,0 +170744985700,215,0 +170744985748,216,0 +170744985796,217,0 +170744985844,218,0 +170744985894,218,0 +170744985942,219,0 +170744985990,221,0 +170744986039,223,0 +170744986087,226,0 +170744986137,228,0 +170744986186,231,0 +170744986234,230,0 +170744986284,234,0 +170744986332,235,0 +170744986380,235,0 +170744986429,240,0 +170744986479,238,0 +170744986527,220,0 +170744986575,216,0 +170744986623,215,0 +170744986672,216,0 +170744986720,215,0 +170744986768,215,0 +170744986818,215,0 +170744986865,215,0 +170744986913,216,0 +170744986961,217,0 +170744987011,217,0 +170744987060,218,0 +170744987108,219,0 +170744987156,221,0 +170744987204,224,0 +170744987252,226,0 +170744987302,229,0 +170744987350,230,0 +170744987399,232,0 +170744987449,235,0 +170744987497,235,0 +170744987545,237,0 +170744987593,237,0 +170744987641,220,0 +170744987689,215,0 +170744987737,215,0 +170744987785,215,0 +170744987832,215,0 +170744987880,215,0 +170744987928,215,0 +170744987976,215,0 +170744988026,215,0 +170744988074,216,0 +170744988123,216,0 +170744988171,217,0 +170744988219,217,0 +170744988267,219,0 +170744988317,221,0 +170744988366,223,0 +170744988414,225,0 +170744988464,228,0 +170744988513,229,0 +170744988563,231,0 +170744988611,232,0 +170744988659,237,0 +170744988707,239,0 +170744988755,221,0 +170744988802,216,0 +170744988852,215,0 +170744988902,215,0 +170744988949,215,0 +170744988997,215,0 +170744989045,215,0 +170744989093,216,0 +170744989143,216,0 +170744989191,217,0 +170744989239,218,0 +170744989288,218,0 +170744989336,219,0 +170744989386,223,0 +170744989435,224,0 +170744989485,226,0 +170744989533,229,0 +170744989582,230,0 +170744989630,233,0 +170744989678,234,0 +170744989728,235,0 +170744989777,230,0 +170744989825,239,0 +170744989875,227,0 +170744989924,216,0 +170744989972,215,0 +170744990022,215,0 +170744990070,215,0 +170744990119,215,0 +170744990167,215,0 +170744990217,215,0 +170744990265,215,0 +170744990313,214,0 +170744990361,215,0 +170744990410,215,0 +170744990458,215,0 +170744990508,217,0 +170744990555,218,0 +170744990603,219,0 +170744990651,222,0 +170744990699,224,0 +170744990747,226,0 +170744990795,226,0 +170744990843,228,0 +170744990891,236,0 +170744990939,238,0 +170744990987,225,0 +170744991034,217,0 +170744991082,216,0 +170744991132,216,0 +170744991180,216,0 +170744991227,217,0 +170744991275,218,0 +170744991323,218,0 +170744991373,219,0 +170744991422,219,0 +170744991472,220,0 +170744991520,220,0 +170744991567,221,0 +170744991615,223,0 +170744991663,227,0 +170744991713,231,0 +170744991760,230,0 +170744991808,231,0 +170744991856,234,0 +170744991904,234,0 +170744991952,235,0 +170744992000,234,0 +170744992048,238,0 +170744992096,239,0 +170744992144,219,0 +170744992192,216,0 +170744992241,216,0 +170744992289,216,0 +170744992338,216,0 +170744992388,216,0 +170744992436,215,0 +170744992486,216,0 +170744992534,216,0 +170744992583,217,0 +170744992631,218,0 +170744992681,218,0 +170744992728,219,0 +170744992776,221,0 +170744992826,224,0 +170744992874,227,0 +170744992922,229,0 +170744992970,230,0 +170744993019,233,0 +170744993069,233,0 +170744993118,234,0 +170744993168,239,0 +170744993217,219,0 +170744993265,216,0 +170744993315,215,0 +170744993363,215,0 +170744993411,215,0 +170744993459,215,0 +170744993507,215,0 +170744993555,216,0 +170744993604,216,0 +170744993652,217,0 +170744993700,218,0 +170744993749,218,0 +170744993797,220,0 +170744993845,221,0 +170744993893,223,0 +170744993941,226,0 +170744993989,227,0 +170744994037,228,0 +170744994085,232,0 +170744994134,233,0 +170744994184,233,0 +170744994231,233,0 +170744994279,238,0 +170744994327,239,0 +170744994375,218,0 +170744994423,216,0 +170744994471,215,0 +170744994519,215,0 +170744994569,215,0 +170744994617,215,0 +170744994666,216,0 +170744994714,217,0 +170744994764,217,0 +170744994813,217,0 +170744994861,218,0 +170744994909,219,0 +170744994959,220,0 +170744995007,221,0 +170744995055,226,0 +170744995103,228,0 +170744995153,230,0 +170744995201,230,0 +170744995250,235,0 +170744995298,235,0 +170744995348,233,0 +170744995396,238,0 +170744995445,230,0 +170744995495,217,0 +170744995543,216,0 +170744995591,216,0 +170744995639,215,0 +170744995687,215,0 +170744995735,215,0 +170744995784,216,0 +170744995834,217,0 +170744995882,218,0 +170744995930,218,0 +170744995978,220,0 +170744996026,221,0 +170744996074,223,0 +170744996122,226,0 +170744996170,227,0 +170744996218,230,0 +170744996265,231,0 +170744996313,234,0 +170744996361,233,0 +170744996409,237,0 +170744996457,236,0 +170744996505,238,0 +170744996553,238,0 +170744996601,219,0 +170744996651,215,0 +170744996700,215,0 +170744996748,215,0 +170744996796,215,0 +170744996846,216,0 +170744996895,215,0 +170744996943,216,0 +170744996993,216,0 +170744997041,217,0 +170744997090,218,0 +170744997140,219,0 +170744997188,219,0 +170744997237,220,0 +170744997287,225,0 +170744997335,226,0 +170744997382,228,0 +170744997430,230,0 +170744997480,232,0 +170744997530,233,0 +170744997579,235,0 +170744997627,237,0 +170744997676,238,0 +170744997726,219,0 +170744997776,216,0 +170744997824,215,0 +170744997873,215,0 +170744997921,215,0 +170744997969,215,0 +170744998017,215,0 +170744998065,216,0 +170744998115,216,0 +170744998164,217,0 +170744998212,217,0 +170744998260,219,0 +170744998310,220,0 +170744998358,222,0 +170744998407,224,0 +170744998455,229,0 +170744998503,229,0 +170744998551,231,0 +170744998599,234,0 +170744998648,236,0 +170744998698,236,0 +170744998746,240,0 +170744998794,239,0 +170744998842,220,0 +170744998890,217,0 +170744998938,215,0 +170744998985,216,0 +170744999033,215,0 +170744999083,216,0 +170744999132,216,0 +170744999182,216,0 +170744999230,216,0 +170744999279,216,0 +170744999328,215,0 +170744999377,216,0 +170744999425,217,0 +170744999473,218,0 +170744999521,219,0 +170744999570,223,0 +170744999618,225,0 +170744999668,227,0 +170744999716,228,0 +170744999764,231,0 +170744999812,232,0 +170744999860,237,0 +170744999908,239,0 +170744999956,220,0 +170745000003,216,0 +170745000053,215,0 +170745000102,215,0 +170745000150,215,0 +170745000198,215,0 +170745000248,215,0 +170745000296,215,0 +170745000344,216,0 +170745000392,216,0 +170745000441,217,0 +170745000489,218,0 +170745000539,219,0 +170745000588,220,0 +170745000636,222,0 +170745000686,225,0 +170745000734,227,0 +170745000783,229,0 +170745000831,230,0 +170745000881,233,0 +170745000930,234,0 +170745000978,236,0 +170745001028,238,0 +170745001076,220,0 +170745001124,215,0 +170745001172,215,0 +170745001219,215,0 +170745001267,215,0 +170745001315,215,0 +170745001363,215,0 +170745001413,215,0 +170745001462,215,0 +170745001512,216,0 +170745001561,216,0 +170745001609,217,0 +170745001659,218,0 +170745001707,220,0 +170745001757,223,0 +170745001804,226,0 +170745001852,226,0 +170745001902,231,0 +170745001950,232,0 +170745001999,233,0 +170745002047,246,0 +170745002095,238,0 +170745002143,239,0 +170745002191,221,0 +170745002239,216,0 +170745002287,215,0 +170745002335,215,0 +170745002383,215,0 +170745002433,215,0 +170745002482,215,0 +170745002532,217,0 +170745002580,217,0 +170745002629,217,0 +170745002679,218,0 +170745002727,219,0 +170745002775,220,0 +170745002824,220,0 +170745002872,223,0 +170745002922,225,0 +170745002971,228,0 +170745003021,230,0 +170745003069,232,0 +170745003117,233,0 +170745003166,234,0 +170745003216,238,0 +170745003264,239,0 +170745003313,219,0 +170745003361,215,0 +170745003411,215,0 +170745003459,215,0 +170745003508,215,0 +170745003558,215,0 +170745003606,215,0 +170745003655,215,0 +170745003703,216,0 +170745003753,216,0 +170745003802,217,0 +170745003850,218,0 +170745003898,218,0 +170745003947,220,0 +170745003997,222,0 +170745004045,225,0 +170745004095,228,0 +170745004144,230,0 +170745004192,231,0 +170745004240,232,0 +170745004290,234,0 +170745004339,238,0 +170745004387,238,0 +170745004435,220,0 +170745004483,216,0 +170745004533,216,0 +170745004581,216,0 +170745004629,216,0 +170745004678,215,0 +170745004728,216,0 +170745004776,217,0 +170745004824,216,0 +170745004873,217,0 +170745004923,218,0 +170745004971,219,0 +170745005019,219,0 +170745005067,222,0 +170745005116,224,0 +170745005164,227,0 +170745005212,230,0 +170745005262,231,0 +170745005311,232,0 +170745005359,235,0 +170745005409,236,0 +170745005458,237,0 +170745005506,238,0 +170745005554,220,0 +170745005602,216,0 +170745005650,217,0 +170745005700,218,0 +170745005748,218,0 +170745005796,218,0 +170745005844,219,0 +170745005892,220,0 +170745005940,220,0 +170745005988,221,0 +170745006036,222,0 +170745006084,225,0 +170745006131,227,0 +170745006181,230,0 +170745006229,230,0 +170745006279,233,0 +170745006328,234,0 +170745006378,236,0 +170745006427,238,0 +170745006477,238,0 +170745006524,238,0 +170745006574,240,0 +170745006622,238,0 +170745006670,221,0 +170745006717,216,0 +170745006765,217,0 +170745006813,217,0 +170745006861,218,0 +170745006909,219,0 +170745006957,219,0 +170745007005,233,0 +170745007053,222,0 +170745007101,227,0 +170745007148,224,0 +170745007198,226,0 +170745007247,229,0 +170745007295,230,0 +170745007343,232,0 +170745007393,234,0 +170745007440,234,0 +170745007488,235,0 +170745007536,237,0 +170745007584,238,0 +170745007632,241,0 +170745007680,239,0 +170745007728,242,0 +170745007776,227,0 +170745007824,216,0 +170745007872,215,0 +170745007920,216,0 +170745007968,216,0 +170745008016,217,0 +170745008065,217,0 +170745008113,218,0 +170745008161,219,0 +170745008209,219,0 +170745008257,225,0 +170745008307,222,0 +170745008356,226,0 +170745008404,227,0 +170745008452,231,0 +170745008501,232,0 +170745008549,235,0 +170745008597,235,0 +170745008645,236,0 +170745008694,237,0 +170745008744,238,0 +170745008793,240,0 +170745008843,239,0 +170745008892,219,0 +170745008940,216,0 +170745008988,217,0 +170745009038,217,0 +170745009087,218,0 +170745009137,219,0 +170745009185,219,0 +170745009233,220,0 +170745009281,221,0 +170745009330,222,0 +170745009378,228,0 +170745009428,226,0 +170745009475,227,0 +170745009523,229,0 +170745009571,230,0 +170745009619,233,0 +170745009667,235,0 +170745009717,236,0 +170745009766,237,0 +170745009814,237,0 +170745009862,239,0 +170745009912,236,0 +170745009961,241,0 +170745010011,220,0 +170745010060,215,0 +170745010108,216,0 +170745010158,217,0 +170745010206,218,0 +170745010254,218,0 +170745010303,220,0 +170745010351,220,0 +170745010401,220,0 +170745010449,229,0 +170745010497,222,0 +170745010546,224,0 +170745010594,225,0 +170745010644,228,0 +170745010692,231,0 +170745010741,231,0 +170745010789,234,0 +170745010839,233,0 +170745010888,236,0 +170745010936,237,0 +170745010986,239,0 +170745011035,238,0 +170745011083,240,0 +170745011131,219,0 +170745011181,216,0 +170745011229,215,0 +170745011277,215,0 +170745011326,215,0 +170745011376,216,0 +170745011425,216,0 +170745011473,217,0 +170745011521,218,0 +170745011571,219,0 +170745011619,223,0 +170745011667,222,0 +170745011716,221,0 +170745011764,224,0 +170745011814,228,0 +170745011863,230,0 +170745011911,233,0 +170745011959,236,0 +170745012009,235,0 +170745012057,235,0 +170745012104,237,0 +170745012152,237,0 +170745012200,239,0 +170745012248,226,0 +170745012296,216,0 +170745012346,215,0 +170745012394,215,0 +170745012443,215,0 +170745012491,216,0 +170745012541,216,0 +170745012589,217,0 +170745012637,217,0 +170745012684,218,0 +170745012733,219,0 +170745012781,223,0 +170745012829,222,0 +170745012879,225,0 +170745012928,227,0 +170745012976,229,0 +170745013026,232,0 +170745013075,232,0 +170745013125,234,0 +170745013173,235,0 +170745013222,238,0 +170745013270,235,0 +170745013318,239,0 +170745013366,231,0 +170745013414,216,0 +170745013464,215,0 +170745013513,215,0 +170745013561,215,0 +170745013609,215,0 +170745013657,215,0 +170745013705,215,0 +170745013754,215,0 +170745013802,215,0 +170745013850,215,0 +170745013898,215,0 +170745013946,214,0 +170745013996,215,0 +170745014045,215,0 +170745014093,215,0 +170745014141,215,0 +170745014191,216,0 +170745014239,218,0 +170745014287,219,0 +170745014334,221,0 +170745014384,225,0 +170745014433,236,0 +170745014481,239,0 +170745014529,218,0 +170745014578,215,0 +170745014628,216,0 +170745014676,216,0 +170745014724,215,0 +170745014772,215,0 +170745014819,216,0 +170745014867,217,0 +170745014915,218,0 +170745014963,218,0 +170745015011,218,0 +170745015059,219,0 +170745015107,220,0 +170745015157,222,0 +170745015206,225,0 +170745015254,228,0 +170745015304,231,0 +170745015353,232,0 +170745015403,232,0 +170745015452,236,0 +170745015500,237,0 +170745015548,238,0 +170745015596,239,0 +170745015644,220,0 +170745015692,215,0 +170745015741,215,0 +170745015791,215,0 +170745015839,216,0 +170745015888,216,0 +170745015936,217,0 +170745015984,218,0 +170745016032,219,0 +170745016080,219,0 +170745016130,219,0 +170745016177,221,0 +170745016225,223,0 +170745016273,226,0 +170745016321,228,0 +170745016371,230,0 +170745016420,233,0 +170745016468,233,0 +170745016516,235,0 +170745016566,236,0 +170745016615,238,0 +170745016663,238,0 +170745016713,239,0 +170745016761,218,0 +170745016809,216,0 +170745016858,215,0 +170745016906,215,0 +170745016956,215,0 +170745017004,215,0 +170745017052,215,0 +170745017099,215,0 +170745017147,215,0 +170745017197,215,0 +170745017247,215,0 +170745017296,215,0 +170745017344,215,0 +170745017393,215,0 +170745017441,216,0 +170745017489,217,0 +170745017537,219,0 +170745017585,222,0 +170745017633,223,0 +170745017681,225,0 +170745017731,225,0 +170745017780,238,0 +170745017828,243,0 +170745017878,218,0 +170745017927,216,0 +170745017975,216,0 +170745018023,215,0 +170745018071,216,0 +170745018119,216,0 +170745018169,216,0 +170745018217,217,0 +170745018265,217,0 +170745018313,218,0 +170745018361,218,0 +170745018408,219,0 +170745018458,219,0 +170745018507,220,0 +170745018557,222,0 +170745018605,225,0 +170745018654,228,0 +170745018702,229,0 +170745018750,230,0 +170745018798,232,0 +170745018848,234,0 +170745018897,238,0 +170745018945,239,0 +170745018993,220,0 +170745019041,216,0 +170745019089,216,0 +170745019139,217,0 +170745019188,217,0 +170745019236,218,0 +170745019284,219,0 +170745019334,220,0 +170745019383,220,0 +170745019433,221,0 +170745019482,222,0 +170745019530,225,0 +170745019580,226,0 +170745019629,228,0 +170745019679,232,0 +170745019728,234,0 +170745019778,235,0 +170745019828,234,0 +170745019876,238,0 +170745019923,238,0 +170745019973,239,0 +170745020021,239,0 +170745020069,238,0 +170745020117,219,0 +170745020165,216,0 +170745020214,215,0 +170745020262,216,0 +170745020312,218,0 +170745020361,219,0 +170745020409,218,0 +170745020459,219,0 +170745020507,220,0 +170745020556,221,0 +170745020604,223,0 +170745020654,225,0 +170745020703,227,0 +170745020751,230,0 +170745020799,233,0 +170745020849,233,0 +170745020897,235,0 +170745020944,235,0 +170745020994,238,0 +170745021042,239,0 +170745021090,239,0 +170745021138,239,0 +170745021185,238,0 +170745021233,219,0 +170745021281,215,0 +170745021329,215,0 +170745021377,215,0 +170745021425,216,0 +170745021474,217,0 +170745021522,217,0 +170745021570,218,0 +170745021618,218,0 +170745021666,219,0 +170745021714,220,0 +170745021762,222,0 +170745021811,225,0 +170745021859,228,0 +170745021907,231,0 +170745021955,232,0 +170745022004,233,0 +170745022052,235,0 +170745022101,236,0 +170745022149,237,0 +170745022199,237,0 +170745022247,238,0 +170745022295,239,0 +170745022343,220,0 +170745022390,215,0 +170745022440,216,0 +170745022488,217,0 +170745022536,217,0 +170745022585,219,0 +170745022633,219,0 +170745022681,220,0 +170745022731,221,0 +170745022779,223,0 +170745022828,225,0 +170745022876,227,0 +170745022924,233,0 +170745022972,234,0 +170745023020,233,0 +170745023068,234,0 +170745023116,236,0 +170745023164,236,0 +170745023213,238,0 +170745023261,237,0 +170745023309,239,0 +170745023358,238,0 +170745023406,239,0 +170745023454,222,0 +170745023502,217,0 +170745023550,217,0 +170745023598,216,0 +170745023646,216,0 +170745023694,217,0 +170745023741,217,0 +170745023789,218,0 +170745023837,219,0 +170745023885,220,0 +170745023935,222,0 +170745023984,223,0 +170745024034,225,0 +170745024083,228,0 +170745024131,230,0 +170745024181,232,0 +170745024229,236,0 +170745024278,236,0 +170745024326,237,0 +170745024374,238,0 +170745024424,239,0 +170745024472,237,0 +170745024519,238,0 +170745024567,219,0 +170745024617,215,0 +170745024665,215,0 +170745024713,215,0 +170745024762,215,0 +170745024810,215,0 +170745024858,216,0 +170745024906,216,0 +170745024954,217,0 +170745025002,218,0 +170745025050,218,0 +170745025098,223,0 +170745025145,222,0 +170745025195,228,0 +170745025243,227,0 +170745025292,229,0 +170745025340,231,0 +170745025388,234,0 +170745025436,235,0 +170745025483,235,0 +170745025531,237,0 +170745025579,231,0 +170745025627,239,0 +170745025675,239,0 +170745025723,221,0 +170745025771,217,0 +170745025819,217,0 +170745025867,216,0 +170745025914,215,0 +170745025962,216,0 +170745026010,217,0 +170745026058,219,0 +170745026106,218,0 +170745026154,219,0 +170745026202,220,0 +170745026250,223,0 +170745026298,224,0 +170745026346,226,0 +170745026394,229,0 +170745026443,231,0 +170745026491,233,0 +170745026539,234,0 +170745026589,235,0 +170745026636,234,0 +170745026684,237,0 +170745026732,238,0 +170745026780,236,0 +170745026828,219,0 +170745026877,215,0 +170745026925,215,0 +170745026973,215,0 +170745027022,215,0 +170745027070,215,0 +170745027118,215,0 +170745027166,215,0 +170745027214,215,0 +170745027264,215,0 +170745027311,216,0 +170745027359,216,0 +170745027407,217,0 +170745027455,218,0 +170745027503,220,0 +170745027551,224,0 +170745027599,225,0 +170745027647,229,0 +170745027695,228,0 +170745027742,231,0 +170745027790,233,0 +170745027838,238,0 +170745027886,237,0 +170745027934,220,0 +170745027982,216,0 +170745028030,216,0 +170745028078,215,0 +170745028126,215,0 +170745028173,216,0 +170745028223,216,0 +170745028271,215,0 +170745028319,216,0 +170745028368,216,0 +170745028418,216,0 +170745028467,218,0 +170745028517,219,0 +170745028565,221,0 +170745028613,224,0 +170745028661,226,0 +170745028710,228,0 +170745028758,230,0 +170745028808,233,0 +170745028857,236,0 +170745028905,234,0 +170745028953,238,0 +170745029001,238,0 +170745029049,220,0 +170745029098,215,0 +170745029146,215,0 +170745029194,215,0 +170745029244,215,0 +170745029293,215,0 +170745029343,215,0 +170745029392,216,0 +170745029442,216,0 +170745029491,217,0 +170745029541,218,0 +170745029589,218,0 +170745029638,220,0 +170745029688,222,0 +170745029736,225,0 +170745029785,227,0 +170745029833,230,0 +170745029883,231,0 +170745029931,233,0 +170745029980,234,0 +170745030030,236,0 +170745030078,238,0 +170745030126,239,0 +170745030174,219,0 +170745030223,215,0 +170745030271,215,0 +170745030319,215,0 +170745030367,215,0 +170745030417,215,0 +170745030465,215,0 +170745030514,216,0 +170745030564,217,0 +170745030612,217,0 +170745030660,217,0 +170745030708,218,0 +170745030757,219,0 +170745030805,220,0 +170745030853,222,0 +170745030903,224,0 +170745030951,226,0 +170745031000,228,0 +170745031048,230,0 +170745031098,232,0 +170745031147,234,0 +170745031195,239,0 +170745031243,239,0 +170745031291,222,0 +170745031341,216,0 +170745031390,215,0 +170745031438,215,0 +170745031486,215,0 +170745031536,215,0 +170745031585,215,0 +170745031635,215,0 +170745031684,215,0 +170745031734,215,0 +170745031782,217,0 +170745031831,217,0 +170745031879,219,0 +170745031927,221,0 +170745031977,223,0 +170745032026,225,0 +170745032076,227,0 +170745032124,229,0 +170745032173,231,0 +170745032223,232,0 +170745032272,235,0 +170745032322,237,0 +170745032370,237,0 +170745032420,220,0 +170745032468,216,0 +170745032517,216,0 +170745032565,215,0 +170745032613,216,0 +170745032663,217,0 +170745032712,217,0 +170745032760,217,0 +170745032808,219,0 +170745032856,219,0 +170745032904,220,0 +170745032952,223,0 +170745033002,222,0 +170745033051,226,0 +170745033099,228,0 +170745033147,229,0 +170745033195,233,0 +170745033243,232,0 +170745033292,234,0 +170745033340,234,0 +170745033388,235,0 +170745033436,238,0 +170745033484,239,0 +170745033532,219,0 +170745033580,216,0 +170745033627,216,0 +170745033675,216,0 +170745033725,216,0 +170745033773,216,0 +170745033820,216,0 +170745033868,216,0 +170745033916,217,0 +170745033964,218,0 +170745034012,216,0 +170745034060,216,0 +170745034108,217,0 +170745034156,218,0 +170745034206,221,0 +170745034255,223,0 +170745034303,225,0 +170745034353,228,0 +170745034401,229,0 +170745034448,230,0 +170745034498,233,0 +170745034548,233,0 +170745034596,238,0 +170745034645,220,0 +170745034693,216,0 +170745034743,215,0 +170745034792,215,0 +170745034840,215,0 +170745034888,215,0 +170745034936,216,0 +170745034984,216,0 +170745035032,217,0 +170745035081,217,0 +170745035129,218,0 +170745035177,218,0 +170745035225,219,0 +170745035273,221,0 +170745035321,224,0 +170745035369,226,0 +170745035417,229,0 +170745035465,230,0 +170745035513,231,0 +170745035561,234,0 +170745035611,234,0 +170745035660,237,0 +170745035708,239,0 +170745035756,226,0 +170745035806,216,0 +170745035854,215,0 +170745035902,215,0 +170745035950,215,0 +170745035997,215,0 +170745036047,216,0 +170745036095,216,0 +170745036145,217,0 +170745036192,218,0 +170745036240,218,0 +170745036288,219,0 +170745036336,220,0 +170745036386,224,0 +170745036434,226,0 +170745036482,229,0 +170745036530,231,0 +170745036579,232,0 +170745036629,234,0 +170745036677,235,0 +170745036725,237,0 +170745036773,238,0 +170745036821,237,0 +170745036870,239,0 +170745036918,217,0 +170745036968,215,0 +170745037017,215,0 +170745037065,215,0 +170745037113,215,0 +170745037161,216,0 +170745037209,216,0 +170745037257,217,0 +170745037305,217,0 +170745037353,218,0 +170745037402,223,0 +170745037450,219,0 +170745037500,223,0 +170745037548,226,0 +170745037595,229,0 +170745037643,230,0 +170745037691,232,0 +170745037741,233,0 +170745037789,234,0 +170745037837,236,0 +170745037886,237,0 +170745037934,237,0 +170745037982,239,0 +170745038032,220,0 +170745038081,215,0 +170745038129,215,0 +170745038179,215,0 +170745038227,215,0 +170745038275,215,0 +170745038323,215,0 +170745038370,215,0 +170745038420,215,0 +170745038469,215,0 +170745038517,216,0 +170745038567,217,0 +170745038614,218,0 +170745038664,218,0 +170745038712,221,0 +170745038762,223,0 +170745038811,226,0 +170745038859,228,0 +170745038909,230,0 +170745038958,232,0 +170745039008,234,0 +170745039055,237,0 +170745039105,237,0 +170745039153,220,0 +170745039201,215,0 +170745039249,215,0 +170745039299,215,0 +170745039347,215,0 +170745039396,215,0 +170745039444,215,0 +170745039494,216,0 +170745039543,217,0 +170745039593,218,0 +170745039641,219,0 +170745039690,219,0 +170745039738,221,0 +170745039786,224,0 +170745039836,226,0 +170745039883,229,0 +170745039933,230,0 +170745039981,231,0 +170745040029,234,0 +170745040077,235,0 +170745040126,234,0 +170745040174,238,0 +170745040222,238,0 +170745040270,218,0 +170745040318,216,0 +170745040366,215,0 +170745040414,215,0 +170745040464,216,0 +170745040511,217,0 +170745040559,218,0 +170745040607,218,0 +170745040655,219,0 +170745040703,219,0 +170745040752,220,0 +170745040800,222,0 +170745040848,225,0 +170745040896,226,0 +170745040944,229,0 +170745040992,230,0 +170745041040,233,0 +170745041088,236,0 +170745041136,232,0 +170745041183,234,0 +170745041231,237,0 +170745041281,238,0 +170745041329,238,0 +170745041377,220,0 +170745041424,215,0 +170745041472,215,0 +170745041520,215,0 +170745041568,215,0 +170745041616,216,0 +170745041664,217,0 +170745041712,218,0 +170745041760,218,0 +170745041808,219,0 +170745041856,219,0 +170745041903,220,0 +170745041951,224,0 +170745042001,225,0 +170745042049,227,0 +170745042098,230,0 +170745042146,232,0 +170745042194,237,0 +170745042244,233,0 +170745042292,236,0 +170745042340,237,0 +170745042388,238,0 +170745042435,238,0 +170745042483,219,0 +170745042531,215,0 +170745042581,215,0 +170745042629,216,0 +170745042677,216,0 +170745042725,217,0 +170745042773,217,0 +170745042822,219,0 +170745042870,219,0 +170745042920,220,0 +170745042968,220,0 +170745043016,224,0 +170745043063,225,0 +170745043113,227,0 +170745043161,230,0 +170745043209,234,0 +170745043258,234,0 +170745043306,234,0 +170745043354,236,0 +170745043404,237,0 +170745043452,239,0 +170745043501,238,0 +170745043551,239,0 +170745043601,219,0 +170745043650,216,0 +170745043698,215,0 +170745043746,215,0 +170745043794,215,0 +170745043843,216,0 +170745043893,216,0 +170745043942,217,0 +170745043990,218,0 +170745044038,218,0 +170745044088,219,0 +170745044136,220,0 +170745044184,222,0 +170745044233,225,0 +170745044283,229,0 +170745044331,231,0 +170745044379,230,0 +170745044428,233,0 +170745044476,235,0 +170745044524,235,0 +170745044572,238,0 +170745044620,237,0 +170745044668,238,0 +170745044718,218,0 +170745044766,215,0 +170745044815,216,0 +170745044863,216,0 +170745044911,217,0 +170745044959,217,0 +170745045007,218,0 +170745045055,218,0 +170745045103,220,0 +170745045153,221,0 +170745045202,221,0 +170745045252,224,0 +170745045301,226,0 +170745045351,229,0 +170745045400,231,0 +170745045448,233,0 +170745045498,233,0 +170745045547,235,0 +170745045597,236,0 +170745045645,236,0 +170745045694,236,0 +170745045742,237,0 +170745045792,239,0 +170745045841,221,0 +170745045891,216,0 +170745045938,215,0 +170745045988,215,0 +170745046038,215,0 +170745046086,215,0 +170745046135,216,0 +170745046183,217,0 +170745046233,217,0 +170745046280,218,0 +170745046328,219,0 +170745046376,221,0 +170745046426,223,0 +170745046475,226,0 +170745046523,228,0 +170745046571,230,0 +170745046621,231,0 +170745046670,233,0 +170745046718,234,0 +170745046768,235,0 +170745046817,236,0 +170745046865,239,0 +170745046913,238,0 +170745046963,219,0 +170745047012,216,0 +170745047060,215,0 +170745047108,215,0 +170745047158,215,0 +170745047206,216,0 +170745047254,217,0 +170745047302,217,0 +170745047350,218,0 +170745047399,218,0 +170745047447,219,0 +170745047495,220,0 +170745047543,223,0 +170745047591,226,0 +170745047639,228,0 +170745047687,229,0 +170745047735,232,0 +170745047783,233,0 +170745047831,234,0 +170745047879,235,0 +170745047929,236,0 +170745047977,236,0 +170745048025,238,0 +170745048074,219,0 +170745048122,216,0 +170745048172,215,0 +170745048221,216,0 +170745048270,216,0 +170745048319,217,0 +170745048368,217,0 +170745048416,219,0 +170745048464,219,0 +170745048514,219,0 +170745048561,220,0 +170745048611,222,0 +170745048659,224,0 +170745048708,227,0 +170745048758,228,0 +170745048808,231,0 +170745048855,232,0 +170745048903,233,0 +170745048951,235,0 +170745048999,235,0 +170745049049,237,0 +170745049098,238,0 +170745049148,238,0 +170745049198,219,0 +170745049245,216,0 +170745049293,215,0 +170745049341,215,0 +170745049389,215,0 +170745049439,215,0 +170745049487,215,0 +170745049535,215,0 +170745049584,215,0 +170745049632,215,0 +170745049682,215,0 +170745049730,216,0 +170745049778,217,0 +170745049826,218,0 +170745049874,220,0 +170745049922,223,0 +170745049970,225,0 +170745050018,227,0 +170745050067,229,0 +170745050115,231,0 +170745050165,232,0 +170745050213,231,0 +170745050261,239,0 +170745050309,222,0 +170745050357,216,0 +170745050406,215,0 +170745050456,215,0 +170745050504,215,0 +170745050551,215,0 +170745050601,215,0 +170745050649,215,0 +170745050699,216,0 +170745050748,216,0 +170745050796,219,0 +170745050844,217,0 +170745050892,219,0 +170745050940,219,0 +170745050988,221,0 +170745051036,223,0 +170745051084,227,0 +170745051132,228,0 +170745051180,229,0 +170745051228,230,0 +170745051277,233,0 +170745051327,232,0 +170745051375,238,0 +170745051424,225,0 +170745051472,216,0 +170745051520,215,0 +170745051568,215,0 +170745051616,215,0 +170745051664,215,0 +170745051714,215,0 +170745051763,216,0 +170745051811,216,0 +170745051859,217,0 +170745051907,218,0 +170745051955,219,0 +170745052003,220,0 +170745052051,222,0 +170745052101,225,0 +170745052149,226,0 +170745052198,228,0 +170745052248,230,0 +170745052296,232,0 +170745052344,236,0 +170745052392,236,0 +170745052440,235,0 +170745052489,238,0 +170745052539,238,0 +170745052588,217,0 +170745052636,215,0 +170745052684,215,0 +170745052732,215,0 +170745052780,215,0 +170745052828,215,0 +170745052876,216,0 +170745052925,217,0 +170745052973,217,0 +170745053021,219,0 +170745053069,219,0 +170745053119,220,0 +170745053167,223,0 +170745053215,226,0 +170745053263,228,0 +170745053311,230,0 +170745053360,231,0 +170745053410,233,0 +170745053458,234,0 +170745053506,235,0 +170745053554,237,0 +170745053603,237,0 +170745053653,238,0 +170745053702,219,0 +170745053750,216,0 +170745053798,215,0 +170745053846,215,0 +170745053894,215,0 +170745053942,215,0 +170745053991,215,0 +170745054039,215,0 +170745054087,216,0 +170745054135,216,0 +170745054183,217,0 +170745054231,218,0 +170745054280,219,0 +170745054328,221,0 +170745054376,224,0 +170745054424,226,0 +170745054474,229,0 +170745054522,231,0 +170745054571,233,0 +170745054619,234,0 +170745054667,236,0 +170745054715,238,0 +170745054763,238,0 +170745054811,220,0 +170745054859,215,0 +170745054908,215,0 +170745054956,215,0 +170745055004,215,0 +170745055053,215,0 +170745055101,215,0 +170745055149,215,0 +170745055197,214,0 +170745055245,215,0 +170745055293,216,0 +170745055341,217,0 +170745055389,218,0 +170745055437,220,0 +170745055485,222,0 +170745055535,224,0 +170745055584,228,0 +170745055632,228,0 +170745055682,231,0 +170745055731,232,0 +170745055779,233,0 +170745055827,236,0 +170745055875,238,0 +170745055924,220,0 +170745055972,216,0 +170745056022,215,0 +170745056070,215,0 +170745056118,215,0 +170745056167,215,0 +170745056215,215,0 +170745056263,215,0 +170745056311,215,0 +170745056361,223,0 +170745056410,216,0 +170745056458,217,0 +170745056506,217,0 +170745056554,219,0 +170745056602,220,0 +170745056650,223,0 +170745056698,225,0 +170745056748,226,0 +170745056797,229,0 +170745056847,232,0 +170745056895,233,0 +170745056943,238,0 +170745056992,239,0 +170745057042,220,0 +170745057091,215,0 +170745057139,215,0 +170745057187,215,0 +170745057235,215,0 +170745057285,215,0 +170745057333,215,0 +170745057382,216,0 +170745057430,217,0 +170745057478,218,0 +170745057526,219,0 +170745057574,219,0 +170745057622,221,0 +170745057670,223,0 +170745057719,226,0 +170745057769,228,0 +170745057817,230,0 +170745057866,231,0 +170745057916,233,0 +170745057964,235,0 +170745058012,236,0 +170745058060,237,0 +170745058108,237,0 +170745058156,221,0 +170745058203,216,0 +170745058251,215,0 +170745058299,215,0 +170745058347,215,0 +170745058395,215,0 +170745058443,215,0 +170745058491,215,0 +170745058541,215,0 +170745058590,217,0 +170745058638,216,0 +170745058686,217,0 +170745058736,218,0 +170745058785,219,0 +170745058833,219,0 +170745058881,221,0 +170745058931,224,0 +170745058980,227,0 +170745059028,228,0 +170745059078,231,0 +170745059126,233,0 +170745059174,237,0 +170745059223,239,0 +170745059271,221,0 +170745059319,215,0 +170745059367,215,0 +170745059416,215,0 +170745059466,215,0 +170745059514,216,0 +170745059562,217,0 +170745059611,218,0 +170745059661,218,0 +170745059711,218,0 +170745059759,220,0 +170745059808,220,0 +170745059858,221,0 +170745059906,224,0 +170745059953,227,0 +170745060003,228,0 +170745060053,230,0 +170745060102,232,0 +170745060150,235,0 +170745060198,236,0 +170745060247,236,0 +170745060295,238,0 +170745060345,238,0 +170745060393,219,0 +170745060441,216,0 +170745060490,215,0 +170745060540,215,0 +170745060588,215,0 +170745060637,215,0 +170745060685,215,0 +170745060733,215,0 +170745060781,215,0 +170745060831,215,0 +170745060880,215,0 +170745060928,215,0 +170745060976,216,0 +170745061024,216,0 +170745061074,216,0 +170745061122,217,0 +170745061170,219,0 +170745061218,221,0 +170745061267,224,0 +170745061317,226,0 +170745061365,228,0 +170745061413,233,0 +170745061462,238,0 +170745061512,222,0 +170745061560,215,0 +170745061608,215,0 +170745061655,215,0 +170745061703,215,0 +170745061751,215,0 +170745061799,215,0 +170745061847,215,0 +170745061895,215,0 +170745061943,215,0 +170745061991,215,0 +170745062038,215,0 +170745062086,215,0 +170745062136,216,0 +170745062184,216,0 +170745062232,217,0 +170745062281,217,0 +170745062331,219,0 +170745062379,220,0 +170745062426,223,0 +170745062474,225,0 +170745062524,227,0 +170745062572,239,0 +170745062620,239,0 +170745062668,219,0 +170745062717,217,0 +170745062767,218,0 +170745062817,219,0 +170745062866,219,0 +170745062916,220,0 +170745062964,220,0 +170745063011,222,0 +170745063059,225,0 +170745063109,223,0 +170745063158,224,0 +170745063208,225,0 +170745063256,226,0 +170745063304,228,0 +170745063352,231,0 +170745063401,233,0 +170745063449,235,0 +170745063499,235,0 +170745063548,235,0 +170745063598,237,0 +170745063646,232,0 +170745063694,238,0 +170745063743,234,0 +170745063793,216,0 +170745063841,215,0 +170745063889,215,0 +170745063937,215,0 +170745063986,214,0 +170745064036,216,0 +170745064085,216,0 +170745064135,216,0 +170745064184,217,0 +170745064234,218,0 +170745064283,219,0 +170745064333,220,0 +170745064382,220,0 +170745064432,223,0 +170745064480,225,0 +170745064528,228,0 +170745064576,229,0 +170745064624,231,0 +170745064673,233,0 +170745064721,236,0 +170745064769,235,0 +170745064819,238,0 +170745064867,226,0 +170745064915,216,0 +170745064963,215,0 +170745065012,215,0 +170745065062,215,0 +170745065110,215,0 +170745065159,215,0 +170745065209,215,0 +170745065257,215,0 +170745065305,215,0 +170745065353,215,0 +170745065402,216,0 +170745065452,216,0 +170745065501,217,0 +170745065551,218,0 +170745065599,221,0 +170745065647,224,0 +170745065696,224,0 +170745065744,228,0 +170745065792,229,0 +170745065840,230,0 +170745065888,229,0 +170745065936,238,0 +170745065984,224,0 +170745066032,216,0 +170745066080,215,0 +170745066129,215,0 +170745066177,216,0 +170745066225,216,0 +170745066273,217,0 +170745066321,217,0 +170745066369,218,0 +170745066419,219,0 +170745066467,220,0 +170745066515,221,0 +170745066563,221,0 +170745066610,223,0 +170745066658,227,0 +170745066708,227,0 +170745066757,229,0 +170745066805,232,0 +170745066853,236,0 +170745066903,235,0 +170745066953,236,0 +170745067000,235,0 +170745067048,239,0 +170745067098,238,0 +170745067146,218,0 +170745067195,216,0 +170745067245,216,0 +170745067293,216,0 +170745067341,216,0 +170745067390,216,0 +170745067438,216,0 +170745067488,217,0 +170745067537,218,0 +170745067585,218,0 +170745067635,225,0 +170745067684,221,0 +170745067734,223,0 +170745067783,226,0 +170745067831,229,0 +170745067881,231,0 +170745067929,232,0 +170745067977,233,0 +170745068025,235,0 +170745068074,237,0 +170745068124,232,0 +170745068173,239,0 +170745068223,236,0 +170745068271,216,0 +170745068319,215,0 +170745068366,215,0 +170745068416,215,0 +170745068464,216,0 +170745068512,217,0 +170745068560,217,0 +170745068608,218,0 +170745068656,218,0 +170745068704,219,0 +170745068752,219,0 +170745068801,222,0 +170745068851,224,0 +170745068899,226,0 +170745068948,232,0 +170745068996,233,0 +170745069044,231,0 +170745069094,233,0 +170745069142,235,0 +170745069191,238,0 +170745069241,237,0 +170745069290,237,0 +170745069338,237,0 +170745069388,217,0 +170745069437,216,0 +170745069485,216,0 +170745069533,217,0 +170745069581,218,0 +170745069631,218,0 +170745069680,218,0 +170745069728,221,0 +170745069778,220,0 +170745069827,225,0 +170745069877,223,0 +170745069926,226,0 +170745069974,227,0 +170745070022,230,0 +170745070071,235,0 +170745070121,235,0 +170745070169,234,0 +170745070217,237,0 +170745070267,238,0 +170745070316,237,0 +170745070364,240,0 +170745070414,237,0 +170745070461,238,0 +170745070509,219,0 +170745070557,216,0 +170745070605,217,0 +170745070655,218,0 +170745070703,218,0 +170745070751,218,0 +170745070799,219,0 +170745070846,221,0 +170745070894,222,0 +170745070944,222,0 +170745070992,225,0 +170745071040,227,0 +170745071087,228,0 +170745071135,232,0 +170745071183,235,0 +170745071233,234,0 +170745071282,236,0 +170745071330,238,0 +170745071380,242,0 +170745071428,240,0 +170745071477,239,0 +170745071525,237,0 +170745071573,237,0 +170745071621,218,0 +170745071669,215,0 +170745071717,216,0 +170745071766,217,0 +170745071814,217,0 +170745071862,217,0 +170745071912,218,0 +170745071960,219,0 +170745072009,220,0 +170745072059,221,0 +170745072107,222,0 +170745072156,223,0 +170745072204,226,0 +170745072252,229,0 +170745072300,232,0 +170745072348,232,0 +170745072396,236,0 +170745072444,237,0 +170745072494,236,0 +170745072543,239,0 +170745072591,238,0 +170745072639,239,0 +170745072688,238,0 +170745072736,219,0 +170745072784,215,0 +170745072832,215,0 +170745072880,215,0 +170745072928,217,0 +170745072976,217,0 +170745073026,218,0 +170745073075,218,0 +170745073123,219,0 +170745073171,219,0 +170745073219,220,0 +170745073269,221,0 +170745073318,224,0 +170745073366,228,0 +170745073414,229,0 +170745073464,232,0 +170745073513,231,0 +170745073561,234,0 +170745073609,236,0 +170745073657,237,0 +170745073705,240,0 +170745073753,238,0 +170745073803,239,0 +170745073851,220,0 +170745073899,215,0 +170745073948,215,0 +170745073998,215,0 +170745074046,215,0 +170745074094,215,0 +170745074142,215,0 +170745074191,216,0 +170745074241,217,0 +170745074289,218,0 +170745074337,218,0 +170745074385,219,0 +170745074434,220,0 +170745074484,221,0 +170745074531,225,0 +170745074581,228,0 +170745074631,228,0 +170745074678,231,0 +170745074728,234,0 +170745074776,235,0 +170745074824,236,0 +170745074872,238,0 +170745074920,237,0 +170745074969,220,0 +170745075017,215,0 +170745075065,215,0 +170745075113,215,0 +170745075161,215,0 +170745075208,216,0 +170745075256,217,0 +170745075304,217,0 +170745075352,217,0 +170745075400,219,0 +170745075450,219,0 +170745075498,220,0 +170745075547,221,0 +170745075595,224,0 +170745075643,227,0 +170745075691,229,0 +170745075739,230,0 +170745075787,231,0 +170745075836,234,0 +170745075884,237,0 +170745075934,237,0 +170745075983,240,0 +170745076031,239,0 +170745076081,221,0 +170745076129,215,0 +170745076178,215,0 +170745076226,215,0 +170745076276,216,0 +170745076324,217,0 +170745076372,218,0 +170745076420,218,0 +170745076468,219,0 +170745076516,219,0 +170745076564,220,0 +170745076613,221,0 +170745076663,223,0 +170745076711,224,0 +170745076759,228,0 +170745076807,229,0 +170745076855,232,0 +170745076904,233,0 +170745076954,234,0 +170745077002,235,0 +170745077051,237,0 +170745077101,238,0 +170745077149,239,0 +170745077197,219,0 +170745077246,215,0 +170745077294,215,0 +170745077342,215,0 +170745077392,215,0 +170745077439,215,0 +170745077487,215,0 +170745077535,215,0 +170745077583,215,0 +170745077631,216,0 +170745077679,217,0 +170745077727,218,0 +170745077777,218,0 +170745077825,220,0 +170745077872,221,0 +170745077922,223,0 +170745077971,227,0 +170745078021,229,0 +170745078070,238,0 +170745078120,232,0 +170745078169,234,0 +170745078217,236,0 +170745078267,240,0 +170745078316,221,0 +170745078366,217,0 +170745078414,216,0 +170745078463,215,0 +170745078511,216,0 +170745078559,216,0 +170745078609,216,0 +170745078657,216,0 +170745078706,216,0 +170745078756,215,0 +170745078804,215,0 +170745078852,215,0 +170745078901,216,0 +170745078951,217,0 +170745079000,218,0 +170745079048,218,0 +170745079098,221,0 +170745079146,223,0 +170745079194,225,0 +170745079242,227,0 +170745079290,231,0 +170745079338,238,0 +170745079387,237,0 +170745079435,220,0 +170745079485,216,0 +170745079534,217,0 +170745079584,217,0 +170745079632,217,0 +170745079681,218,0 +170745079731,219,0 +170745079780,220,0 +170745079830,221,0 +170745079879,221,0 +170745079929,222,0 +170745079978,225,0 +170745080028,225,0 +170745080076,228,0 +170745080124,231,0 +170745080173,232,0 +170745080221,235,0 +170745080271,235,0 +170745080319,237,0 +170745080367,238,0 +170745080415,237,0 +170745080463,239,0 +170745080511,238,0 +170745080559,220,0 +170745080608,215,0 +170745080658,215,0 +170745080707,215,0 +170745080755,215,0 +170745080803,215,0 +170745080851,215,0 +170745080901,215,0 +170745080949,217,0 +170745080996,218,0 +170745081044,218,0 +170745081094,218,0 +170745081142,221,0 +170745081190,224,0 +170745081238,225,0 +170745081286,230,0 +170745081334,230,0 +170745081383,232,0 +170745081431,232,0 +170745081481,236,0 +170745081529,237,0 +170745081578,237,0 +170745081626,239,0 +170745081674,221,0 +170745081723,215,0 +170745081771,215,0 +170745081821,215,0 +170745081869,215,0 +170745081917,216,0 +170745081966,217,0 +170745082014,217,0 +170745082062,218,0 +170745082112,219,0 +170745082160,219,0 +170745082208,222,0 +170745082257,224,0 +170745082305,234,0 +170745082353,228,0 +170745082400,230,0 +170745082448,233,0 +170745082496,233,0 +170745082544,235,0 +170745082592,238,0 +170745082640,239,0 +170745082688,238,0 +170745082736,237,0 +170745082784,223,0 +170745082832,216,0 +170745082881,216,0 +170745082929,218,0 +170745082978,218,0 +170745083026,219,0 +170745083076,219,0 +170745083123,220,0 +170745083171,222,0 +170745083219,222,0 +170745083267,226,0 +170745083315,227,0 +170745083364,230,0 +170745083412,230,0 +170745083462,233,0 +170745083510,234,0 +170745083557,235,0 +170745083605,235,0 +170745083653,238,0 +170745083701,238,0 +170745083749,238,0 +170745083797,238,0 +170745083846,239,0 +170745083896,234,0 +170745083944,216,0 +170745083993,215,0 +170745084043,215,0 +170745084091,215,0 +170745084140,215,0 +170745084188,216,0 +170745084236,217,0 +170745084284,217,0 +170745084332,221,0 +170745084380,223,0 +170745084428,223,0 +170745084476,227,0 +170745084524,227,0 +170745084571,230,0 +170745084619,231,0 +170745084667,234,0 +170745084715,237,0 +170745084763,236,0 +170745084811,235,0 +170745084859,236,0 +170745084907,238,0 +170745084955,238,0 +170745085002,236,0 +170745085050,220,0 +170745085100,215,0 +170745085148,215,0 +170745085196,215,0 +170745085244,215,0 +170745085293,215,0 +170745085341,215,0 +170745085389,215,0 +170745085437,215,0 +170745085485,216,0 +170745085533,217,0 +170745085581,218,0 +170745085628,219,0 +170745085678,220,0 +170745085726,226,0 +170745085775,226,0 +170745085823,229,0 +170745085873,230,0 +170745085922,232,0 +170745085972,234,0 +170745086021,235,0 +170745086069,236,0 +170745086117,239,0 +170745086165,220,0 +170745086213,215,0 +170745086261,215,0 +170745086309,215,0 +170745086357,216,0 +170745086405,217,0 +170745086453,217,0 +170745086500,218,0 +170745086548,218,0 +170745086596,219,0 +170745086646,220,0 +170745086694,221,0 +170745086741,224,0 +170745086789,229,0 +170745086837,228,0 +170745086885,230,0 +170745086933,234,0 +170745086982,234,0 +170745087030,235,0 +170745087078,238,0 +170745087128,238,0 +170745087176,238,0 +170745087225,238,0 +170745087273,220,0 +170745087322,215,0 +170745087372,215,0 +170745087421,215,0 +170745087471,215,0 +170745087519,216,0 +170745087567,216,0 +170745087615,218,0 +170745087664,218,0 +170745087712,219,0 +170745087761,220,0 +170745087809,220,0 +170745087859,222,0 +170745087907,224,0 +170745087955,226,0 +170745088003,229,0 +170745088051,231,0 +170745088098,233,0 +170745088148,234,0 +170745088197,236,0 +170745088245,237,0 +170745088293,238,0 +170745088341,238,0 +170745088389,220,0 +170745088439,215,0 +170745088488,214,0 +170745088536,215,0 +170745088584,215,0 +170745088634,215,0 +170745088683,215,0 +170745088731,216,0 +170745088779,217,0 +170745088829,217,0 +170745088878,217,0 +170745088926,220,0 +170745088975,220,0 +170745089025,223,0 +170745089073,226,0 +170745089123,228,0 +170745089172,230,0 +170745089220,232,0 +170745089268,233,0 +170745089316,235,0 +170745089365,234,0 +170745089413,238,0 +170745089461,239,0 +170745089511,220,0 +170745089559,216,0 +170745089607,215,0 +170745089655,215,0 +170745089702,215,0 +170745089750,215,0 +170745089798,216,0 +170745089846,216,0 +170745089896,216,0 +170745089943,218,0 +170745089991,218,0 +170745090039,235,0 +170745090087,220,0 +170745090137,223,0 +170745090185,225,0 +170745090234,228,0 +170745090284,230,0 +170745090332,231,0 +170745090379,234,0 +170745090429,233,0 +170745090477,236,0 +170745090525,236,0 +170745090574,238,0 +170745090624,220,0 +170745090673,216,0 +170745090721,215,0 +170745090771,215,0 +170745090819,215,0 +170745090868,216,0 +170745090916,216,0 +170745090964,217,0 +170745091014,217,0 +170745091061,219,0 +170745091109,219,0 +170745091159,220,0 +170745091209,221,0 +170745091257,224,0 +170745091305,226,0 +170745091354,229,0 +170745091404,231,0 +170745091453,234,0 +170745091503,234,0 +170745091552,234,0 +170745091602,235,0 +170745091650,237,0 +170745091699,237,0 +170745091749,220,0 +170745091798,215,0 +170745091848,215,0 +170745091897,215,0 +170745091947,215,0 +170745091996,215,0 +170745092044,215,0 +170745092092,216,0 +170745092140,217,0 +170745092190,217,0 +170745092239,219,0 +170745092287,219,0 +170745092337,221,0 +170745092386,224,0 +170745092434,225,0 +170745092484,228,0 +170745092532,228,0 +170745092582,230,0 +170745092631,232,0 +170745092679,233,0 +170745092727,236,0 +170745092777,237,0 +170745092826,239,0 +170745092874,219,0 +170745092922,216,0 +170745092970,215,0 +170745093019,215,0 +170745093067,215,0 +170745093115,215,0 +170745093163,215,0 +170745093213,215,0 +170745093262,216,0 +170745093310,216,0 +170745093358,217,0 +170745093408,218,0 +170745093457,219,0 +170745093505,221,0 +170745093555,224,0 +170745093604,225,0 +170745093654,229,0 +170745093703,230,0 +170745093751,232,0 +170745093801,234,0 +170745093848,235,0 +170745093896,236,0 +170745093944,237,0 +170745093992,219,0 +170745094040,216,0 +170745094088,215,0 +170745094136,215,0 +170745094184,215,0 +170745094232,215,0 +170745094280,215,0 +170745094327,215,0 +170745094375,216,0 +170745094423,217,0 +170745094471,218,0 +170745094520,218,0 +170745094570,219,0 +170745094618,221,0 +170745094666,224,0 +170745094714,226,0 +170745094761,228,0 +170745094809,232,0 +170745094859,232,0 +170745094907,233,0 +170745094955,235,0 +170745095003,236,0 +170745095052,238,0 +170745095100,219,0 +170745095148,216,0 +170745095196,216,0 +170745095244,216,0 +170745095292,216,0 +170745095340,216,0 +170745095387,216,0 +170745095437,216,0 +170745095485,216,0 +170745095535,217,0 +170745095582,216,0 +170745095630,217,0 +170745095678,218,0 +170745095728,218,0 +170745095776,220,0 +170745095824,223,0 +170745095873,225,0 +170745095923,227,0 +170745095971,228,0 +170745096019,232,0 +170745096068,234,0 +170745096118,236,0 +170745096167,239,0 +170745096217,221,0 +170745096265,216,0 +170745096314,215,0 +170745096364,215,0 +170745096412,215,0 +170745096460,215,0 +170745096509,216,0 +170745096559,216,0 +170745096607,217,0 +170745096655,218,0 +170745096703,219,0 +170745096751,219,0 +170745096799,220,0 +170745096847,222,0 +170745096896,226,0 +170745096946,228,0 +170745096994,230,0 +170745097042,231,0 +170745097090,233,0 +170745097138,235,0 +170745097186,235,0 +170745097234,233,0 +170745097283,239,0 +170745097333,225,0 +170745097381,216,0 +170745097429,215,0 +170745097477,215,0 +170745097526,215,0 +170745097574,215,0 +170745097622,215,0 +170745097670,215,0 +170745097718,215,0 +170745097768,216,0 +170745097816,217,0 +170745097864,217,0 +170745097912,218,0 +170745097960,219,0 +170745098008,221,0 +170745098055,223,0 +170745098105,226,0 +170745098153,230,0 +170745098201,231,0 +170745098249,232,0 +170745098297,233,0 +170745098346,233,0 +170745098394,239,0 +170745098442,238,0 +170745098490,217,0 +170745098538,215,0 +170745098586,215,0 +170745098634,215,0 +170745098682,215,0 +170745098731,215,0 +170745098779,215,0 +170745098827,215,0 +170745098875,215,0 +170745098923,216,0 +170745098973,217,0 +170745099021,218,0 +170745099069,219,0 +170745099116,221,0 +170745099166,223,0 +170745099214,226,0 +170745099262,228,0 +170745099312,230,0 +170745099359,231,0 +170745099409,232,0 +170745099457,234,0 +170745099505,238,0 +170745099553,238,0 +170745099601,219,0 +170745099649,215,0 +170745099698,215,0 +170745099748,215,0 +170745099796,215,0 +170745099845,215,0 +170745099895,215,0 +170745099944,216,0 +170745099992,217,0 +170745100040,218,0 +170745100088,218,0 +170745100138,219,0 +170745100186,220,0 +170745100234,222,0 +170745100283,225,0 +170745100331,228,0 +170745100381,229,0 +170745100429,231,0 +170745100478,233,0 +170745100528,235,0 +170745100577,235,0 +170745100625,238,0 +170745100673,238,0 +170745100721,220,0 +170745100771,216,0 +170745100820,216,0 +170745100868,216,0 +170745100918,215,0 +170745100966,216,0 +170745101014,217,0 +170745101062,217,0 +170745101109,218,0 +170745101157,219,0 +170745101207,219,0 +170745101255,222,0 +170745101303,224,0 +170745101351,226,0 +170745101399,229,0 +170745101446,230,0 +170745101494,232,0 +170745101542,233,0 +170745101590,235,0 +170745101638,236,0 +170745101688,237,0 +170745101737,239,0 +170745101785,238,0 +170745101835,221,0 +170745101883,215,0 +170745101931,215,0 +170745101980,215,0 +170745102029,215,0 +170745102079,215,0 +170745102128,215,0 +170745102176,215,0 +170745102224,216,0 +170745102272,216,0 +170745102320,217,0 +170745102368,217,0 +170745102416,219,0 +170745102464,220,0 +170745102512,224,0 +170745102560,225,0 +170745102609,233,0 +170745102657,230,0 +170745102705,230,0 +170745102753,234,0 +170745102802,234,0 +170745102852,238,0 +170745102901,238,0 +170745102949,220,0 +170745102997,216,0 +170745103047,215,0 +170745103096,215,0 +170745103144,215,0 +170745103194,215,0 +170745103242,216,0 +170745103290,216,0 +170745103339,216,0 +170745103389,219,0 +170745103438,218,0 +170745103488,219,0 +170745103536,221,0 +170745103584,223,0 +170745103633,227,0 +170745103681,229,0 +170745103731,230,0 +170745103781,233,0 +170745103830,233,0 +170745103878,235,0 +170745103926,236,0 +170745103974,238,0 +170745104024,239,0 +170745104072,220,0 +170745104119,215,0 +170745104169,215,0 +170745104218,215,0 +170745104266,215,0 +170745104316,215,0 +170745104364,216,0 +170745104413,217,0 +170745104463,217,0 +170745104512,219,0 +170745104560,218,0 +170745104608,219,0 +170745104658,224,0 +170745104706,224,0 +170745104755,227,0 +170745104803,229,0 +170745104851,232,0 +170745104899,233,0 +170745104947,233,0 +170745104995,236,0 +170745105043,236,0 +170745105093,239,0 +170745105142,238,0 +170745105192,219,0 +170745105241,215,0 +170745105289,215,0 +170745105337,216,0 +170745105385,216,0 +170745105435,217,0 +170745105484,217,0 +170745105532,218,0 +170745105582,218,0 +170745105629,219,0 +170745105677,220,0 +170745105725,222,0 +170745105773,224,0 +170745105821,227,0 +170745105869,229,0 +170745105919,231,0 +170745105968,232,0 +170745106016,233,0 +170745106064,234,0 +170745106112,236,0 +170745106160,238,0 +170745106208,239,0 +170745106256,239,0 +170745106304,222,0 +170745106352,217,0 +170745106401,216,0 +170745106449,217,0 +170745106499,217,0 +170745106548,219,0 +170745106596,219,0 +170745106646,220,0 +170745106694,222,0 +170745106743,222,0 +170745106791,223,0 +170745106839,225,0 +170745106887,227,0 +170745106937,230,0 +170745106985,231,0 +170745107034,233,0 +170745107084,233,0 +170745107132,236,0 +170745107180,236,0 +170745107229,239,0 +170745107279,239,0 +170745107327,239,0 +170745107375,238,0 +170745107423,220,0 +170745107471,215,0 +170745107519,215,0 +170745107568,214,0 +170745107618,215,0 +170745107666,215,0 +170745107713,216,0 +170745107761,216,0 +170745107811,218,0 +170745107859,218,0 +170745107909,220,0 +170745107956,221,0 +170745108004,224,0 +170745108054,226,0 +170745108104,228,0 +170745108151,230,0 +170745108201,233,0 +170745108249,234,0 +170745108297,235,0 +170745108345,235,0 +170745108394,238,0 +170745108442,238,0 +170745108492,238,0 +170745108541,221,0 +170745108589,216,0 +170745108637,216,0 +170745108687,216,0 +170745108735,215,0 +170745108783,216,0 +170745108831,217,0 +170745108879,218,0 +170745108928,218,0 +170745108976,219,0 +170745109024,219,0 +170745109074,222,0 +170745109123,224,0 +170745109171,228,0 +170745109219,230,0 +170745109269,230,0 +170745109317,233,0 +170745109366,236,0 +170745109414,235,0 +170745109462,236,0 +170745109512,235,0 +170745109560,237,0 +170745109609,239,0 +170745109657,219,0 +170745109707,216,0 +170745109756,215,0 +170745109804,215,0 +170745109852,215,0 +170745109900,216,0 +170745109948,216,0 +170745109996,217,0 +170745110044,217,0 +170745110093,219,0 +170745110143,219,0 +170745110191,220,0 +170745110239,222,0 +170745110287,225,0 +170745110335,228,0 +170745110384,230,0 +170745110432,231,0 +170745110480,232,0 +170745110530,235,0 +170745110579,234,0 +170745110629,237,0 +170745110679,236,0 +170745110727,238,0 +170745110776,221,0 +170745110824,216,0 +170745110872,215,0 +170745110920,215,0 +170745110968,215,0 +170745111016,216,0 +170745111066,217,0 +170745111114,218,0 +170745111162,218,0 +170745111210,218,0 +170745111257,219,0 +170745111305,222,0 +170745111353,224,0 +170745111401,227,0 +170745111449,229,0 +170745111498,231,0 +170745111546,231,0 +170745111594,233,0 +170745111642,234,0 +170745111690,235,0 +170745111738,236,0 +170745111786,243,0 +170745111834,240,0 +170745111882,220,0 +170745111930,215,0 +170745111979,215,0 +170745112027,215,0 +170745112075,215,0 +170745112125,215,0 +170745112174,215,0 +170745112222,215,0 +170745112272,215,0 +170745112321,215,0 +170745112371,216,0 +170745112419,217,0 +170745112467,218,0 +170745112515,219,0 +170745112562,220,0 +170745112612,223,0 +170745112660,224,0 +170745112710,227,0 +170745112757,228,0 +170745112807,231,0 +170745112855,230,0 +170745112904,229,0 +170745112952,237,0 +170745113000,220,0 +170745113048,216,0 +170745113098,215,0 +170745113147,214,0 +170745113195,215,0 +170745113243,215,0 +170745113291,215,0 +170745113339,215,0 +170745113387,215,0 +170745113437,216,0 +170745113485,217,0 +170745113533,217,0 +170745113582,218,0 +170745113630,220,0 +170745113678,223,0 +170745113726,225,0 +170745113776,228,0 +170745113824,229,0 +170745113872,231,0 +170745113921,234,0 +170745113971,235,0 +170745114019,232,0 +170745114067,239,0 +170745114116,230,0 +170745114164,217,0 +170745114212,215,0 +170745114260,215,0 +170745114308,215,0 +170745114358,215,0 +170745114405,215,0 +170745114453,215,0 +170745114501,216,0 +170745114549,216,0 +170745114597,218,0 +170745114645,218,0 +170745114695,219,0 +170745114743,221,0 +170745114791,224,0 +170745114839,225,0 +170745114887,228,0 +170745114936,230,0 +170745114986,232,0 +170745115034,232,0 +170745115083,236,0 +170745115133,232,0 +170745115181,238,0 +170745115230,235,0 +170745115278,216,0 +170745115326,215,0 +170745115374,215,0 +170745115423,215,0 +170745115471,215,0 +170745115519,215,0 +170745115567,215,0 +170745115617,216,0 +170745115665,216,0 +170745115712,217,0 +170745115760,217,0 +170745115808,221,0 +170745115856,220,0 +170745115906,222,0 +170745115954,224,0 +170745116002,228,0 +170745116050,229,0 +170745116098,230,0 +170745116146,231,0 +170745116195,233,0 +170745116243,235,0 +170745116291,237,0 +170745116341,239,0 +170745116389,219,0 +170745116437,215,0 +170745116485,215,0 +170745116534,215,0 +170745116584,215,0 +170745116633,215,0 +170745116683,215,0 +170745116731,216,0 +170745116780,217,0 +170745116828,218,0 +170745116878,219,0 +170745116927,219,0 +170745116977,222,0 +170745117025,224,0 +170745117074,226,0 +170745117124,229,0 +170745117172,231,0 +170745117220,232,0 +170745117268,232,0 +170745117316,234,0 +170745117364,236,0 +170745117413,238,0 +170745117463,238,0 +170745117510,220,0 +170745117559,215,0 +170745117606,215,0 +170745117656,215,0 +170745117704,216,0 +170745117752,217,0 +170745117800,219,0 +170745117848,217,0 +170745117896,219,0 +170745117944,220,0 +170745117992,220,0 +170745118040,221,0 +170745118089,222,0 +170745118139,225,0 +170745118187,228,0 +170745118236,229,0 +170745118284,231,0 +170745118332,232,0 +170745118380,234,0 +170745118430,235,0 +170745118478,235,0 +170745118526,239,0 +170745118574,237,0 +170745118621,219,0 +170745118669,215,0 +170745118717,215,0 +170745118765,215,0 +170745118813,215,0 +170745118861,214,0 +170745118909,215,0 +170745118957,215,0 +170745119005,215,0 +170745119053,214,0 +170745119102,215,0 +170745119150,216,0 +170745119198,216,0 +170745119248,218,0 +170745119296,220,0 +170745119344,223,0 +170745119391,225,0 +170745119439,227,0 +170745119489,229,0 +170745119537,231,0 +170745119584,231,0 +170745119632,238,0 +170745119680,239,0 +170745119728,221,0 +170745119776,216,0 +170745119824,215,0 +170745119872,215,0 +170745119920,216,0 +170745119968,217,0 +170745120015,217,0 diff --git a/laser_value/0209-14.csv b/laser_value/0209-14.csv new file mode 100644 index 0000000..02e2f47 --- /dev/null +++ b/laser_value/0209-14.csv @@ -0,0 +1,7419 @@ +timestamp,laser_value,event +170745120064,219,0 +170745120112,218,0 +170745120160,219,0 +170745120208,220,0 +170745120256,221,0 +170745120304,223,0 +170745120352,225,0 +170745120400,227,0 +170745120448,228,0 +170745120496,231,0 +170745120543,232,0 +170745120591,234,0 +170745120641,235,0 +170745120690,238,0 +170745120738,236,0 +170745120786,238,0 +170745120835,219,0 +170745120883,215,0 +170745120931,215,0 +170745120981,215,0 +170745121028,215,0 +170745121076,215,0 +170745121126,215,0 +170745121175,215,0 +170745121225,215,0 +170745121273,215,0 +170745121323,215,0 +170745121370,215,0 +170745121418,215,0 +170745121466,216,0 +170745121516,217,0 +170745121565,219,0 +170745121613,221,0 +170745121661,224,0 +170745121709,226,0 +170745121759,229,0 +170745121807,229,0 +170745121854,236,0 +170745121902,239,0 +170745121950,227,0 +170745121998,216,0 +170745122048,215,0 +170745122097,215,0 +170745122147,215,0 +170745122196,215,0 +170745122246,216,0 +170745122295,217,0 +170745122343,218,0 +170745122391,219,0 +170745122439,219,0 +170745122487,220,0 +170745122535,221,0 +170745122585,224,0 +170745122633,227,0 +170745122682,230,0 +170745122732,231,0 +170745122781,231,0 +170745122829,233,0 +170745122877,236,0 +170745122925,235,0 +170745122975,238,0 +170745123024,238,0 +170745123074,219,0 +170745123122,215,0 +170745123171,215,0 +170745123221,215,0 +170745123269,215,0 +170745123317,215,0 +170745123364,215,0 +170745123414,215,0 +170745123462,215,0 +170745123511,215,0 +170745123560,215,0 +170745123610,216,0 +170745123658,217,0 +170745123708,218,0 +170745123756,219,0 +170745123804,222,0 +170745123853,225,0 +170745123901,227,0 +170745123949,228,0 +170745123997,229,0 +170745124046,232,0 +170745124096,236,0 +170745124146,239,0 +170745124194,219,0 +170745124241,216,0 +170745124289,215,0 +170745124337,215,0 +170745124385,215,0 +170745124435,215,0 +170745124483,215,0 +170745124532,215,0 +170745124580,217,0 +170745124630,217,0 +170745124678,217,0 +170745124726,218,0 +170745124774,219,0 +170745124823,220,0 +170745124871,222,0 +170745124921,225,0 +170745124969,227,0 +170745125017,229,0 +170745125064,230,0 +170745125112,233,0 +170745125160,234,0 +170745125210,231,0 +170745125258,238,0 +170745125307,233,0 +170745125355,216,0 +170745125403,215,0 +170745125453,215,0 +170745125501,215,0 +170745125550,215,0 +170745125598,215,0 +170745125646,215,0 +170745125696,216,0 +170745125744,216,0 +170745125793,217,0 +170745125843,217,0 +170745125892,218,0 +170745125940,219,0 +170745125988,222,0 +170745126036,226,0 +170745126084,228,0 +170745126132,229,0 +170745126180,231,0 +170745126228,232,0 +170745126277,233,0 +170745126325,236,0 +170745126373,239,0 +170745126421,233,0 +170745126471,217,0 +170745126520,216,0 +170745126570,216,0 +170745126619,216,0 +170745126669,216,0 +170745126718,216,0 +170745126766,216,0 +170745126814,216,0 +170745126864,216,0 +170745126912,215,0 +170745126960,216,0 +170745127009,217,0 +170745127057,218,0 +170745127105,220,0 +170745127153,221,0 +170745127201,223,0 +170745127249,225,0 +170745127297,228,0 +170745127346,229,0 +170745127394,231,0 +170745127442,232,0 +170745127490,238,0 +170745127538,229,0 +170745127587,219,0 +170745127635,218,0 +170745127683,217,0 +170745127731,218,0 +170745127779,218,0 +170745127827,216,0 +170745127874,215,0 +170745127922,216,0 +170745127970,217,0 +170745128018,218,0 +170745128066,218,0 +170745128114,220,0 +170745128162,221,0 +170745128211,223,0 +170745128261,227,0 +170745128309,228,0 +170745128356,230,0 +170745128404,232,0 +170745128452,232,0 +170745128500,234,0 +170745128549,236,0 +170745128597,237,0 +170745128645,238,0 +170745128693,219,0 +170745128743,215,0 +170745128792,215,0 +170745128840,215,0 +170745128888,215,0 +170745128936,215,0 +170745128984,216,0 +170745129032,216,0 +170745129082,217,0 +170745129130,218,0 +170745129178,218,0 +170745129227,219,0 +170745129277,220,0 +170745129325,222,0 +170745129374,225,0 +170745129422,228,0 +170745129470,230,0 +170745129519,230,0 +170745129568,232,0 +170745129616,234,0 +170745129666,236,0 +170745129714,238,0 +170745129762,238,0 +170745129809,219,0 +170745129857,217,0 +170745129907,217,0 +170745129955,215,0 +170745130003,216,0 +170745130051,217,0 +170745130099,217,0 +170745130147,218,0 +170745130195,219,0 +170745130244,221,0 +170745130292,221,0 +170745130340,221,0 +170745130389,225,0 +170745130437,227,0 +170745130485,228,0 +170745130533,232,0 +170745130581,232,0 +170745130629,234,0 +170745130677,235,0 +170745130725,236,0 +170745130774,237,0 +170745130823,239,0 +170745130871,237,0 +170745130919,221,0 +170745130967,216,0 +170745131015,216,0 +170745131063,216,0 +170745131111,215,0 +170745131159,215,0 +170745131206,216,0 +170745131254,216,0 +170745131302,217,0 +170745131352,218,0 +170745131400,218,0 +170745131448,220,0 +170745131496,222,0 +170745131544,225,0 +170745131592,227,0 +170745131640,229,0 +170745131688,230,0 +170745131737,231,0 +170745131787,234,0 +170745131835,237,0 +170745131883,237,0 +170745131931,238,0 +170745131979,238,0 +170745132026,219,0 +170745132076,216,0 +170745132124,216,0 +170745132172,217,0 +170745132220,218,0 +170745132269,218,0 +170745132317,219,0 +170745132367,220,0 +170745132416,220,0 +170745132464,221,0 +170745132512,223,0 +170745132560,223,0 +170745132610,226,0 +170745132659,229,0 +170745132707,231,0 +170745132757,233,0 +170745132805,234,0 +170745132854,237,0 +170745132902,236,0 +170745132950,240,0 +170745132998,237,0 +170745133046,238,0 +170745133094,238,0 +170745133142,224,0 +170745133190,216,0 +170745133237,215,0 +170745133285,216,0 +170745133333,217,0 +170745133381,217,0 +170745133429,218,0 +170745133477,218,0 +170745133525,219,0 +170745133574,221,0 +170745133622,220,0 +170745133670,222,0 +170745133718,224,0 +170745133766,226,0 +170745133814,228,0 +170745133863,231,0 +170745133913,233,0 +170745133962,235,0 +170745134010,237,0 +170745134058,237,0 +170745134108,238,0 +170745134157,239,0 +170745134207,240,0 +170745134255,220,0 +170745134304,217,0 +170745134354,217,0 +170745134411,218,0 +170745134459,219,0 +170745134507,219,0 +170745134556,219,0 +170745134606,221,0 +170745134655,222,0 +170745134705,224,0 +170745134754,226,0 +170745134802,225,0 +170745134850,230,0 +170745134898,232,0 +170745134946,234,0 +170745134996,235,0 +170745135043,238,0 +170745135091,238,0 +170745135141,240,0 +170745135189,240,0 +170745135237,241,0 +170745135285,240,0 +170745135334,238,0 +170745135382,220,0 +170745135430,215,0 +170745135478,215,0 +170745135528,215,0 +170745135577,215,0 +170745135625,216,0 +170745135675,217,0 +170745135723,217,0 +170745135772,217,0 +170745135820,218,0 +170745135869,220,0 +170745135919,219,0 +170745135969,221,0 +170745136017,224,0 +170745136065,227,0 +170745136112,229,0 +170745136162,233,0 +170745136212,233,0 +170745136261,234,0 +170745136309,236,0 +170745136357,237,0 +170745136405,238,0 +170745136453,239,0 +170745136501,219,0 +170745136548,216,0 +170745136596,215,0 +170745136644,215,0 +170745136692,215,0 +170745136742,215,0 +170745136789,215,0 +170745136837,215,0 +170745136885,215,0 +170745136933,215,0 +170745136981,215,0 +170745137030,215,0 +170745137078,215,0 +170745137128,215,0 +170745137176,216,0 +170745137224,217,0 +170745137273,217,0 +170745137321,218,0 +170745137369,218,0 +170745137417,218,0 +170745137465,219,0 +170745137514,222,0 +170745137562,221,0 +170745137610,222,0 +170745137660,227,0 +170745137709,229,0 +170745137759,230,0 +170745137806,233,0 +170745137854,235,0 +170745137902,237,0 +170745137952,237,0 +170745138000,239,0 +170745138049,239,0 +170745138099,239,0 +170745138148,238,0 +170745138196,218,0 +170745138246,215,0 +170745138295,215,0 +170745138343,214,0 +170745138391,215,0 +170745138439,215,0 +170745138487,215,0 +170745138535,215,0 +170745138583,216,0 +170745138631,216,0 +170745138680,217,0 +170745138728,219,0 +170745138778,219,0 +170745138826,221,0 +170745138874,223,0 +170745138921,225,0 +170745138969,229,0 +170745139019,232,0 +170745139067,234,0 +170745139115,235,0 +170745139163,236,0 +170745139212,238,0 +170745139260,238,0 +170745139308,220,0 +170745139356,216,0 +170745139404,215,0 +170745139451,215,0 +170745139499,215,0 +170745139549,216,0 +170745139597,216,0 +170745139644,217,0 +170745139694,218,0 +170745139742,219,0 +170745139790,220,0 +170745139838,219,0 +170745139886,220,0 +170745139935,223,0 +170745139983,225,0 +170745140033,227,0 +170745140080,229,0 +170745140128,232,0 +170745140176,232,0 +170745140224,232,0 +170745140274,236,0 +170745140323,239,0 +170745140373,239,0 +170745140422,219,0 +170745140472,215,0 +170745140520,215,0 +170745140568,215,0 +170745140616,215,0 +170745140663,215,0 +170745140713,215,0 +170745140761,215,0 +170745140809,215,0 +170745140857,215,0 +170745140905,216,0 +170745140953,217,0 +170745141001,218,0 +170745141049,218,0 +170745141096,220,0 +170745141146,222,0 +170745141195,226,0 +170745141243,226,0 +170745141291,228,0 +170745141341,232,0 +170745141389,232,0 +170745141437,237,0 +170745141486,240,0 +170745141534,220,0 +170745141582,216,0 +170745141632,216,0 +170745141681,216,0 +170745141729,217,0 +170745141777,219,0 +170745141825,219,0 +170745141873,219,0 +170745141923,220,0 +170745141972,222,0 +170745142020,222,0 +170745142070,222,0 +170745142119,225,0 +170745142167,227,0 +170745142215,233,0 +170745142263,230,0 +170745142311,232,0 +170745142359,234,0 +170745142407,235,0 +170745142455,236,0 +170745142503,236,0 +170745142551,239,0 +170745142599,238,0 +170745142646,219,0 +170745142696,215,0 +170745142744,215,0 +170745142792,215,0 +170745142840,215,0 +170745142889,215,0 +170745142937,216,0 +170745142985,217,0 +170745143035,217,0 +170745143083,219,0 +170745143131,219,0 +170745143179,220,0 +170745143228,222,0 +170745143276,224,0 +170745143324,227,0 +170745143372,230,0 +170745143422,232,0 +170745143470,231,0 +170745143518,233,0 +170745143567,234,0 +170745143615,236,0 +170745143665,233,0 +170745143714,239,0 +170745143764,231,0 +170745143812,217,0 +170745143861,215,0 +170745143909,215,0 +170745143957,215,0 +170745144007,215,0 +170745144055,216,0 +170745144104,216,0 +170745144152,217,0 +170745144200,218,0 +170745144250,218,0 +170745144298,221,0 +170745144347,223,0 +170745144397,225,0 +170745144446,228,0 +170745144496,230,0 +170745144545,231,0 +170745144595,234,0 +170745144643,236,0 +170745144691,238,0 +170745144739,238,0 +170745144788,238,0 +170745144836,239,0 +170745144884,221,0 +170745144934,215,0 +170745144983,215,0 +170745145033,215,0 +170745145081,215,0 +170745145129,215,0 +170745145178,215,0 +170745145226,215,0 +170745145274,215,0 +170745145322,216,0 +170745145371,217,0 +170745145419,217,0 +170745145467,218,0 +170745145515,221,0 +170745145565,224,0 +170745145614,227,0 +170745145664,230,0 +170745145712,231,0 +170745145760,232,0 +170745145808,234,0 +170745145856,235,0 +170745145903,238,0 +170745145953,239,0 +170745146001,219,0 +170745146049,216,0 +170745146097,216,0 +170745146145,217,0 +170745146193,218,0 +170745146240,219,0 +170745146288,220,0 +170745146336,220,0 +170745146384,221,0 +170745146432,223,0 +170745146480,225,0 +170745146528,227,0 +170745146577,231,0 +170745146627,232,0 +170745146675,233,0 +170745146723,234,0 +170745146771,235,0 +170745146818,238,0 +170745146866,237,0 +170745146914,239,0 +170745146962,238,0 +170745147010,239,0 +170745147058,239,0 +170745147107,239,0 +170745147155,220,0 +170745147203,217,0 +170745147251,217,0 +170745147299,216,0 +170745147347,217,0 +170745147395,215,0 +170745147443,216,0 +170745147490,217,0 +170745147538,218,0 +170745147588,218,0 +170745147637,220,0 +170745147685,223,0 +170745147733,225,0 +170745147781,228,0 +170745147829,228,0 +170745147878,236,0 +170745147926,233,0 +170745147974,235,0 +170745148022,240,0 +170745148072,235,0 +170745148120,236,0 +170745148169,236,0 +170745148219,238,0 +170745148267,220,0 +170745148316,215,0 +170745148364,215,0 +170745148412,215,0 +170745148462,215,0 +170745148510,215,0 +170745148558,215,0 +170745148605,215,0 +170745148653,215,0 +170745148701,216,0 +170745148749,216,0 +170745148797,217,0 +170745148845,219,0 +170745148895,220,0 +170745148944,224,0 +170745148992,225,0 +170745149040,226,0 +170745149089,228,0 +170745149137,234,0 +170745149185,232,0 +170745149233,235,0 +170745149281,237,0 +170745149329,238,0 +170745149378,220,0 +170745149426,215,0 +170745149474,215,0 +170745149523,215,0 +170745149571,215,0 +170745149619,215,0 +170745149669,216,0 +170745149717,218,0 +170745149766,217,0 +170745149816,218,0 +170745149863,219,0 +170745149911,221,0 +170745149959,223,0 +170745150009,226,0 +170745150057,228,0 +170745150105,231,0 +170745150153,232,0 +170745150202,233,0 +170745150250,235,0 +170745150300,236,0 +170745150349,237,0 +170745150399,238,0 +170745150447,238,0 +170745150495,221,0 +170745150543,216,0 +170745150591,215,0 +170745150640,216,0 +170745150690,217,0 +170745150738,217,0 +170745150786,218,0 +170745150835,220,0 +170745150883,219,0 +170745150933,221,0 +170745150982,221,0 +170745151032,224,0 +170745151082,225,0 +170745151131,228,0 +170745151181,230,0 +170745151229,231,0 +170745151276,234,0 +170745151326,237,0 +170745151374,235,0 +170745151423,235,0 +170745151472,236,0 +170745151521,239,0 +170745151569,237,0 +170745151617,220,0 +170745151666,216,0 +170745151714,215,0 +170745151762,215,0 +170745151810,216,0 +170745151858,216,0 +170745151906,217,0 +170745151954,217,0 +170745152002,218,0 +170745152051,218,0 +170745152099,220,0 +170745152147,221,0 +170745152195,223,0 +170745152243,227,0 +170745152290,229,0 +170745152338,230,0 +170745152388,232,0 +170745152436,233,0 +170745152484,235,0 +170745152531,236,0 +170745152579,236,0 +170745152627,240,0 +170745152675,240,0 +170745152723,220,0 +170745152771,215,0 +170745152819,215,0 +170745152867,215,0 +170745152916,215,0 +170745152964,215,0 +170745153012,215,0 +170745153060,215,0 +170745153107,215,0 +170745153155,217,0 +170745153203,217,0 +170745153251,218,0 +170745153299,218,0 +170745153347,221,0 +170745153395,224,0 +170745153444,227,0 +170745153494,229,0 +170745153542,230,0 +170745153589,231,0 +170745153637,232,0 +170745153685,233,0 +170745153733,235,0 +170745153781,238,0 +170745153829,223,0 +170745153877,216,0 +170745153927,215,0 +170745153976,215,0 +170745154024,215,0 +170745154072,215,0 +170745154121,215,0 +170745154169,215,0 +170745154219,215,0 +170745154268,215,0 +170745154318,215,0 +170745154367,217,0 +170745154417,217,0 +170745154465,221,0 +170745154513,221,0 +170745154561,224,0 +170745154609,226,0 +170745154657,229,0 +170745154705,230,0 +170745154753,231,0 +170745154801,232,0 +170745154849,233,0 +170745154898,238,0 +170745154948,236,0 +170745154996,218,0 +170745155044,215,0 +170745155092,215,0 +170745155141,215,0 +170745155189,216,0 +170745155237,216,0 +170745155285,217,0 +170745155335,218,0 +170745155383,219,0 +170745155431,220,0 +170745155479,219,0 +170745155527,221,0 +170745155575,224,0 +170745155624,227,0 +170745155674,228,0 +170745155723,229,0 +170745155773,231,0 +170745155822,233,0 +170745155872,234,0 +170745155920,235,0 +170745155969,230,0 +170745156019,239,0 +170745156068,231,0 +170745156118,216,0 +170745156167,215,0 +170745156215,215,0 +170745156265,215,0 +170745156313,215,0 +170745156361,215,0 +170745156409,215,0 +170745156457,215,0 +170745156506,215,0 +170745156554,215,0 +170745156602,215,0 +170745156650,216,0 +170745156698,218,0 +170745156746,219,0 +170745156794,222,0 +170745156844,223,0 +170745156891,226,0 +170745156939,228,0 +170745156989,230,0 +170745157039,232,0 +170745157088,229,0 +170745157136,238,0 +170745157184,238,0 +170745157233,217,0 +170745157281,215,0 +170745157329,215,0 +170745157377,215,0 +170745157425,215,0 +170745157473,216,0 +170745157521,216,0 +170745157569,217,0 +170745157619,217,0 +170745157668,218,0 +170745157716,219,0 +170745157764,220,0 +170745157812,223,0 +170745157862,225,0 +170745157910,227,0 +170745157958,230,0 +170745158005,231,0 +170745158055,233,0 +170745158103,235,0 +170745158151,234,0 +170745158199,236,0 +170745158247,236,0 +170745158296,236,0 +170745158344,221,0 +170745158392,217,0 +170745158440,216,0 +170745158490,217,0 +170745158539,217,0 +170745158589,215,0 +170745158637,216,0 +170745158685,217,0 +170745158733,217,0 +170745158782,218,0 +170745158832,219,0 +170745158881,220,0 +170745158931,234,0 +170745158979,226,0 +170745159027,228,0 +170745159076,230,0 +170745159124,231,0 +170745159174,235,0 +170745159223,234,0 +170745159271,237,0 +170745159319,237,0 +170745159369,237,0 +170745159418,238,0 +170745159466,218,0 +170745159516,215,0 +170745159564,215,0 +170745159613,215,0 +170745159661,215,0 +170745159709,215,0 +170745159757,215,0 +170745159805,215,0 +170745159853,215,0 +170745159901,216,0 +170745159950,218,0 +170745159998,218,0 +170745160048,220,0 +170745160097,224,0 +170745160147,225,0 +170745160195,228,0 +170745160243,229,0 +170745160291,231,0 +170745160339,233,0 +170745160388,236,0 +170745160436,238,0 +170745160484,239,0 +170745160532,239,0 +170745160582,218,0 +170745160631,216,0 +170745160679,215,0 +170745160729,215,0 +170745160778,215,0 +170745160828,215,0 +170745160876,216,0 +170745160925,216,0 +170745160975,217,0 +170745161024,218,0 +170745161072,218,0 +170745161122,220,0 +170745161171,221,0 +170745161221,224,0 +170745161270,228,0 +170745161318,228,0 +170745161366,230,0 +170745161414,232,0 +170745161464,235,0 +170745161512,235,0 +170745161560,235,0 +170745161608,237,0 +170745161657,236,0 +170745161705,218,0 +170745161753,215,0 +170745161803,215,0 +170745161851,215,0 +170745161899,215,0 +170745161947,215,0 +170745161995,215,0 +170745162044,215,0 +170745162094,215,0 +170745162143,215,0 +170745162193,216,0 +170745162242,217,0 +170745162290,218,0 +170745162338,220,0 +170745162388,223,0 +170745162437,225,0 +170745162487,228,0 +170745162535,229,0 +170745162583,240,0 +170745162632,231,0 +170745162680,232,0 +170745162728,238,0 +170745162778,238,0 +170745162826,219,0 +170745162874,217,0 +170745162921,216,0 +170745162969,216,0 +170745163019,216,0 +170745163068,216,0 +170745163116,216,0 +170745163164,216,0 +170745163212,215,0 +170745163260,216,0 +170745163308,216,0 +170745163358,217,0 +170745163407,217,0 +170745163455,219,0 +170745163503,222,0 +170745163553,224,0 +170745163602,227,0 +170745163652,227,0 +170745163701,231,0 +170745163751,232,0 +170745163800,232,0 +170745163850,238,0 +170745163898,236,0 +170745163947,217,0 +170745163997,215,0 +170745164046,215,0 +170745164094,215,0 +170745164144,215,0 +170745164193,215,0 +170745164241,216,0 +170745164289,217,0 +170745164337,217,0 +170745164385,218,0 +170745164435,219,0 +170745164483,220,0 +170745164531,222,0 +170745164579,225,0 +170745164628,227,0 +170745164676,229,0 +170745164724,231,0 +170745164774,232,0 +170745164821,233,0 +170745164869,235,0 +170745164917,235,0 +170745164965,237,0 +170745165015,237,0 +170745165064,219,0 +170745165114,216,0 +170745165162,215,0 +170745165210,215,0 +170745165259,215,0 +170745165309,215,0 +170745165357,216,0 +170745165405,216,0 +170745165455,216,0 +170745165504,217,0 +170745165552,217,0 +170745165602,219,0 +170745165651,220,0 +170745165699,223,0 +170745165749,224,0 +170745165798,228,0 +170745165846,230,0 +170745165896,231,0 +170745165944,232,0 +170745165992,235,0 +170745166041,232,0 +170745166089,237,0 +170745166139,231,0 +170745166188,217,0 +170745166236,217,0 +170745166284,217,0 +170745166334,218,0 +170745166382,218,0 +170745166431,219,0 +170745166481,221,0 +170745166530,221,0 +170745166580,222,0 +170745166629,225,0 +170745166677,226,0 +170745166727,229,0 +170745166775,231,0 +170745166823,233,0 +170745166871,234,0 +170745166920,235,0 +170745166970,236,0 +170745167018,238,0 +170745167066,237,0 +170745167114,237,0 +170745167162,237,0 +170745167210,242,0 +170745167258,234,0 +170745167307,217,0 +170745167355,215,0 +170745167403,215,0 +170745167453,215,0 +170745167501,215,0 +170745167549,216,0 +170745167598,216,0 +170745167646,217,0 +170745167696,218,0 +170745167744,218,0 +170745167792,220,0 +170745167839,222,0 +170745167887,225,0 +170745167935,226,0 +170745167983,228,0 +170745168031,230,0 +170745168081,232,0 +170745168129,234,0 +170745168178,234,0 +170745168228,235,0 +170745168276,237,0 +170745168324,239,0 +170745168372,236,0 +170745168421,219,0 +170745168471,216,0 +170745168519,216,0 +170745168567,215,0 +170745168616,216,0 +170745168664,218,0 +170745168712,218,0 +170745168760,219,0 +170745168808,219,0 +170745168856,220,0 +170745168903,223,0 +170745168951,224,0 +170745168999,226,0 +170745169047,229,0 +170745169095,229,0 +170745169144,232,0 +170745169192,234,0 +170745169240,235,0 +170745169288,237,0 +170745169338,238,0 +170745169387,238,0 +170745169437,238,0 +170745169485,238,0 +170745169533,218,0 +170745169582,216,0 +170745169632,217,0 +170745169682,218,0 +170745169731,219,0 +170745169780,219,0 +170745169830,220,0 +170745169878,222,0 +170745169927,223,0 +170745169975,224,0 +170745170023,226,0 +170745170071,228,0 +170745170121,231,0 +170745170169,232,0 +170745170217,232,0 +170745170266,235,0 +170745170316,235,0 +170745170364,241,0 +170745170412,237,0 +170745170461,238,0 +170745170509,239,0 +170745170557,239,0 +170745170607,237,0 +170745170656,219,0 +170745170706,215,0 +170745170755,215,0 +170745170803,215,0 +170745170853,215,0 +170745170902,215,0 +170745170950,216,0 +170745170998,217,0 +170745171048,218,0 +170745171096,218,0 +170745171144,221,0 +170745171193,222,0 +170745171241,225,0 +170745171291,227,0 +170745171339,230,0 +170745171387,232,0 +170745171436,232,0 +170745171486,234,0 +170745171533,235,0 +170745171583,236,0 +170745171631,238,0 +170745171679,237,0 +170745171727,237,0 +170745171775,219,0 +170745171824,215,0 +170745171872,214,0 +170745171922,215,0 +170745171970,214,0 +170745172018,214,0 +170745172067,214,0 +170745172117,215,0 +170745172165,215,0 +170745172213,216,0 +170745172261,217,0 +170745172309,217,0 +170745172358,219,0 +170745172406,221,0 +170745172454,224,0 +170745172504,226,0 +170745172552,228,0 +170745172601,229,0 +170745172651,232,0 +170745172700,235,0 +170745172748,236,0 +170745172796,237,0 +170745172844,238,0 +170745172894,219,0 +170745172943,215,0 +170745172993,215,0 +170745173041,215,0 +170745173088,215,0 +170745173136,215,0 +170745173184,215,0 +170745173232,216,0 +170745173280,217,0 +170745173328,218,0 +170745173376,219,0 +170745173424,220,0 +170745173471,222,0 +170745173519,225,0 +170745173567,226,0 +170745173615,229,0 +170745173663,232,0 +170745173711,233,0 +170745173759,235,0 +170745173807,238,0 +170745173854,235,0 +170745173902,239,0 +170745173950,239,0 +170745173998,219,0 +170745174048,215,0 +170745174096,215,0 +170745174144,215,0 +170745174193,215,0 +170745174243,215,0 +170745174291,216,0 +170745174339,216,0 +170745174387,216,0 +170745174434,218,0 +170745174482,217,0 +170745174532,218,0 +170745174580,221,0 +170745174628,224,0 +170745174675,225,0 +170745174723,228,0 +170745174771,230,0 +170745174821,231,0 +170745174869,233,0 +170745174918,234,0 +170745174968,234,0 +170745175017,238,0 +170745175067,238,0 +170745175115,220,0 +170745175164,215,0 +170745175212,215,0 +170745175260,215,0 +170745175308,215,0 +170745175356,215,0 +170745175404,215,0 +170745175452,215,0 +170745175502,215,0 +170745175551,215,0 +170745175601,216,0 +170745175649,216,0 +170745175697,217,0 +170745175746,218,0 +170745175796,219,0 +170745175844,222,0 +170745175892,224,0 +170745175940,226,0 +170745175989,229,0 +170745176039,229,0 +170745176087,233,0 +170745176135,232,0 +170745176184,239,0 +170745176234,223,0 +170745176282,216,0 +170745176330,215,0 +170745176378,215,0 +170745176427,215,0 +170745176477,215,0 +170745176527,216,0 +170745176575,216,0 +170745176624,216,0 +170745176674,217,0 +170745176723,218,0 +170745176771,219,0 +170745176821,220,0 +170745176869,223,0 +170745176918,226,0 +170745176966,227,0 +170745177016,229,0 +170745177064,231,0 +170745177112,232,0 +170745177160,234,0 +170745177209,235,0 +170745177259,238,0 +170745177307,238,0 +170745177356,220,0 +170745177404,216,0 +170745177452,215,0 +170745177502,215,0 +170745177551,215,0 +170745177599,215,0 +170745177647,215,0 +170745177695,215,0 +170745177743,215,0 +170745177790,215,0 +170745177838,216,0 +170745177886,217,0 +170745177934,218,0 +170745177982,219,0 +170745178030,220,0 +170745178078,223,0 +170745178126,225,0 +170745178173,227,0 +170745178221,229,0 +170745178271,231,0 +170745178319,233,0 +170745178367,236,0 +170745178416,238,0 +170745178464,220,0 +170745178512,215,0 +170745178562,215,0 +170745178610,215,0 +170745178658,215,0 +170745178707,216,0 +170745178755,216,0 +170745178805,217,0 +170745178853,218,0 +170745178901,219,0 +170745178950,221,0 +170745178998,221,0 +170745179046,225,0 +170745179096,226,0 +170745179145,228,0 +170745179193,230,0 +170745179243,233,0 +170745179292,233,0 +170745179342,234,0 +170745179390,237,0 +170745179437,240,0 +170745179487,238,0 +170745179536,238,0 +170745179586,220,0 +170745179634,215,0 +170745179682,215,0 +170745179732,215,0 +170745179780,215,0 +170745179828,215,0 +170745179875,215,0 +170745179923,215,0 +170745179971,215,0 +170745180021,216,0 +170745180069,217,0 +170745180119,218,0 +170745180168,218,0 +170745180218,221,0 +170745180267,222,0 +170745180315,226,0 +170745180365,228,0 +170745180414,231,0 +170745180464,231,0 +170745180512,232,0 +170745180560,235,0 +170745180607,237,0 +170745180655,237,0 +170745180703,220,0 +170745180753,215,0 +170745180801,215,0 +170745180850,215,0 +170745180898,215,0 +170745180946,215,0 +170745180994,216,0 +170745181042,216,0 +170745181089,217,0 +170745181137,217,0 +170745181185,218,0 +170745181233,219,0 +170745181281,220,0 +170745181329,222,0 +170745181378,224,0 +170745181426,226,0 +170745181474,228,0 +170745181522,230,0 +170745181570,234,0 +170745181619,235,0 +170745181667,235,0 +170745181715,238,0 +170745181763,237,0 +170745181811,219,0 +170745181859,216,0 +170745181907,215,0 +170745181956,215,0 +170745182004,215,0 +170745182054,215,0 +170745182103,217,0 +170745182151,217,0 +170745182199,217,0 +170745182249,218,0 +170745182298,219,0 +170745182346,220,0 +170745182396,221,0 +170745182445,224,0 +170745182495,229,0 +170745182544,230,0 +170745182592,234,0 +170745182640,232,0 +170745182688,235,0 +170745182736,233,0 +170745182784,236,0 +170745182833,238,0 +170745182881,239,0 +170745182929,219,0 +170745182977,215,0 +170745183027,215,0 +170745183075,215,0 +170745183124,215,0 +170745183172,215,0 +170745183220,215,0 +170745183268,215,0 +170745183317,216,0 +170745183367,218,0 +170745183415,218,0 +170745183465,219,0 +170745183513,220,0 +170745183561,222,0 +170745183608,226,0 +170745183656,227,0 +170745183704,230,0 +170745183752,231,0 +170745183800,232,0 +170745183848,234,0 +170745183896,234,0 +170745183944,235,0 +170745183992,239,0 +170745184040,237,0 +170745184090,218,0 +170745184137,215,0 +170745184185,215,0 +170745184235,214,0 +170745184283,215,0 +170745184332,215,0 +170745184380,215,0 +170745184428,214,0 +170745184476,215,0 +170745184524,214,0 +170745184572,215,0 +170745184619,215,0 +170745184667,216,0 +170745184715,218,0 +170745184765,219,0 +170745184813,221,0 +170745184861,223,0 +170745184910,226,0 +170745184958,228,0 +170745185008,230,0 +170745185055,228,0 +170745185103,237,0 +170745185151,237,0 +170745185199,217,0 +170745185249,215,0 +170745185297,215,0 +170745185345,215,0 +170745185393,215,0 +170745185441,215,0 +170745185490,215,0 +170745185538,216,0 +170745185588,217,0 +170745185636,217,0 +170745185684,218,0 +170745185732,219,0 +170745185781,221,0 +170745185829,223,0 +170745185877,225,0 +170745185925,228,0 +170745185975,230,0 +170745186023,231,0 +170745186072,233,0 +170745186121,233,0 +170745186169,234,0 +170745186217,238,0 +170745186265,237,0 +170745186313,218,0 +170745186361,215,0 +170745186411,215,0 +170745186459,215,0 +170745186507,215,0 +170745186555,215,0 +170745186603,215,0 +170745186652,215,0 +170745186700,215,0 +170745186750,216,0 +170745186799,216,0 +170745186849,218,0 +170745186897,219,0 +170745186946,220,0 +170745186994,222,0 +170745187042,225,0 +170745187090,228,0 +170745187138,228,0 +170745187186,230,0 +170745187236,233,0 +170745187284,235,0 +170745187331,237,0 +170745187379,238,0 +170745187429,220,0 +170745187477,215,0 +170745187526,215,0 +170745187576,215,0 +170745187624,215,0 +170745187673,215,0 +170745187721,215,0 +170745187769,215,0 +170745187819,216,0 +170745187867,216,0 +170745187915,217,0 +170745187963,218,0 +170745188012,219,0 +170745188060,220,0 +170745188108,223,0 +170745188158,225,0 +170745188207,229,0 +170745188257,229,0 +170745188305,231,0 +170745188352,233,0 +170745188402,236,0 +170745188450,239,0 +170745188500,238,0 +170745188548,220,0 +170745188597,215,0 +170745188647,215,0 +170745188695,215,0 +170745188744,215,0 +170745188792,215,0 +170745188840,215,0 +170745188890,215,0 +170745188937,216,0 +170745188985,217,0 +170745189035,218,0 +170745189083,218,0 +170745189133,219,0 +170745189182,220,0 +170745189232,223,0 +170745189280,226,0 +170745189329,227,0 +170745189379,229,0 +170745189428,231,0 +170745189476,232,0 +170745189524,233,0 +170745189572,238,0 +170745189620,240,0 +170745189669,219,0 +170745189719,215,0 +170745189769,215,0 +170745189818,215,0 +170745189868,215,0 +170745189917,215,0 +170745189965,215,0 +170745190015,215,0 +170745190064,215,0 +170745190112,215,0 +170745190160,215,0 +170745190208,215,0 +170745190258,216,0 +170745190306,216,0 +170745190355,217,0 +170745190405,219,0 +170745190454,222,0 +170745190504,224,0 +170745190552,226,0 +170745190600,228,0 +170745190648,231,0 +170745190696,238,0 +170745190744,237,0 +170745190792,219,0 +170745190841,215,0 +170745190891,215,0 +170745190938,215,0 +170745190986,215,0 +170745191034,215,0 +170745191084,215,0 +170745191133,215,0 +170745191181,215,0 +170745191231,215,0 +170745191279,215,0 +170745191327,216,0 +170745191375,216,0 +170745191423,217,0 +170745191472,218,0 +170745191522,219,0 +170745191571,222,0 +170745191621,224,0 +170745191670,226,0 +170745191720,229,0 +170745191767,230,0 +170745191815,238,0 +170745191865,238,0 +170745191913,219,0 +170745191961,215,0 +170745192010,215,0 +170745192058,216,0 +170745192108,216,0 +170745192156,217,0 +170745192204,218,0 +170745192253,219,0 +170745192303,219,0 +170745192352,220,0 +170745192400,220,0 +170745192450,221,0 +170745192497,223,0 +170745192545,226,0 +170745192595,228,0 +170745192644,230,0 +170745192692,233,0 +170745192740,233,0 +170745192790,235,0 +170745192838,235,0 +170745192886,237,0 +170745192934,238,0 +170745192983,238,0 +170745193033,219,0 +170745193081,216,0 +170745193129,215,0 +170745193177,216,0 +170745193226,216,0 +170745193274,217,0 +170745193323,217,0 +170745193371,218,0 +170745193421,219,0 +170745193469,219,0 +170745193517,220,0 +170745193566,225,0 +170745193616,224,0 +170745193663,227,0 +170745193711,231,0 +170745193759,231,0 +170745193807,233,0 +170745193855,235,0 +170745193905,238,0 +170745193954,236,0 +170745194002,237,0 +170745194052,236,0 +170745194099,238,0 +170745194147,219,0 +170745194197,215,0 +170745194245,216,0 +170745194293,216,0 +170745194341,217,0 +170745194388,218,0 +170745194438,218,0 +170745194486,218,0 +170745194534,219,0 +170745194581,225,0 +170745194629,223,0 +170745194677,224,0 +170745194725,229,0 +170745194775,227,0 +170745194824,231,0 +170745194872,233,0 +170745194920,234,0 +170745194968,236,0 +170745195016,238,0 +170745195065,240,0 +170745195113,240,0 +170745195161,239,0 +170745195211,237,0 +170745195259,220,0 +170745195307,216,0 +170745195355,216,0 +170745195403,216,0 +170745195451,217,0 +170745195499,218,0 +170745195548,218,0 +170745195596,219,0 +170745195646,220,0 +170745195694,221,0 +170745195741,221,0 +170745195789,224,0 +170745195837,226,0 +170745195887,229,0 +170745195935,231,0 +170745195984,232,0 +170745196032,233,0 +170745196080,234,0 +170745196128,238,0 +170745196176,238,0 +170745196224,240,0 +170745196274,238,0 +170745196322,239,0 +170745196371,221,0 +170745196419,216,0 +170745196467,217,0 +170745196515,217,0 +170745196563,218,0 +170745196611,218,0 +170745196659,219,0 +170745196707,219,0 +170745196755,220,0 +170745196805,221,0 +170745196853,223,0 +170745196901,226,0 +170745196949,228,0 +170745196998,231,0 +170745197046,232,0 +170745197094,232,0 +170745197144,234,0 +170745197192,236,0 +170745197239,238,0 +170745197287,239,0 +170745197337,241,0 +170745197386,238,0 +170745197434,240,0 +170745197482,220,0 +170745197530,217,0 +170745197580,217,0 +170745197628,217,0 +170745197677,218,0 +170745197725,219,0 +170745197773,221,0 +170745197823,221,0 +170745197872,221,0 +170745197920,224,0 +170745197968,225,0 +170745198018,226,0 +170745198066,228,0 +170745198114,232,0 +170745198163,233,0 +170745198211,231,0 +170745198259,234,0 +170745198308,236,0 +170745198356,236,0 +170745198404,240,0 +170745198452,240,0 +170745198500,235,0 +170745198548,239,0 +170745198596,239,0 +170745198644,217,0 +170745198692,214,0 +170745198740,214,0 +170745198788,215,0 +170745198836,215,0 +170745198884,216,0 +170745198932,217,0 +170745198981,218,0 +170745199031,219,0 +170745199079,220,0 +170745199128,220,0 +170745199176,222,0 +170745199226,224,0 +170745199274,228,0 +170745199322,229,0 +170745199370,231,0 +170745199418,233,0 +170745199467,235,0 +170745199517,235,0 +170745199565,236,0 +170745199613,238,0 +170745199660,241,0 +170745199708,238,0 +170745199756,219,0 +170745199804,215,0 +170745199854,215,0 +170745199903,215,0 +170745199951,215,0 +170745200001,215,0 +170745200050,215,0 +170745200098,215,0 +170745200146,215,0 +170745200196,215,0 +170745200245,215,0 +170745200295,215,0 +170745200343,216,0 +170745200391,217,0 +170745200439,218,0 +170745200488,219,0 +170745200536,222,0 +170745200584,223,0 +170745200634,226,0 +170745200681,229,0 +170745200731,234,0 +170745200779,237,0 +170745200828,230,0 +170745200876,217,0 +170745200924,215,0 +170745200972,215,0 +170745201022,215,0 +170745201071,215,0 +170745201121,216,0 +170745201169,217,0 +170745201218,217,0 +170745201268,218,0 +170745201318,219,0 +170745201367,219,0 +170745201417,221,0 +170745201466,224,0 +170745201516,227,0 +170745201564,226,0 +170745201612,229,0 +170745201660,231,0 +170745201708,232,0 +170745201757,234,0 +170745201805,236,0 +170745201853,236,0 +170745201903,239,0 +170745201952,240,0 +170745202000,219,0 +170745202048,215,0 +170745202096,215,0 +170745202144,216,0 +170745202192,216,0 +170745202240,217,0 +170745202288,218,0 +170745202337,218,0 +170745202385,219,0 +170745202433,220,0 +170745202482,223,0 +170745202532,221,0 +170745202582,224,0 +170745202630,228,0 +170745202678,229,0 +170745202726,231,0 +170745202773,235,0 +170745202823,235,0 +170745202873,236,0 +170745202921,238,0 +170745202968,239,0 +170745203018,239,0 +170745203066,242,0 +170745203116,218,0 +170745203164,215,0 +170745203211,215,0 +170745203259,215,0 +170745203309,215,0 +170745203357,215,0 +170745203406,215,0 +170745203456,215,0 +170745203505,215,0 +170745203555,215,0 +170745203603,215,0 +170745203651,215,0 +170745203699,215,0 +170745203748,216,0 +170745203798,217,0 +170745203846,218,0 +170745203895,219,0 +170745203943,221,0 +170745203991,223,0 +170745204039,227,0 +170745204089,229,0 +170745204137,239,0 +170745204185,239,0 +170745204233,219,0 +170745204282,215,0 +170745204330,215,0 +170745204380,215,0 +170745204429,215,0 +170745204477,215,0 +170745204525,215,0 +170745204573,215,0 +170745204621,215,0 +170745204669,216,0 +170745204717,216,0 +170745204765,217,0 +170745204813,218,0 +170745204861,219,0 +170745204911,219,0 +170745204959,223,0 +170745205007,225,0 +170745205055,227,0 +170745205104,226,0 +170745205152,230,0 +170745205200,232,0 +170745205248,237,0 +170745205296,238,0 +170745205344,220,0 +170745205392,217,0 +170745205440,217,0 +170745205490,218,0 +170745205537,218,0 +170745205587,220,0 +170745205636,221,0 +170745205684,221,0 +170745205732,221,0 +170745205782,223,0 +170745205831,224,0 +170745205879,227,0 +170745205929,229,0 +170745205977,230,0 +170745206025,231,0 +170745206074,235,0 +170745206122,236,0 +170745206170,236,0 +170745206220,239,0 +170745206268,239,0 +170745206316,240,0 +170745206365,239,0 +170745206415,238,0 +170745206463,220,0 +170745206511,215,0 +170745206560,215,0 +170745206608,215,0 +170745206656,215,0 +170745206705,215,0 +170745206753,217,0 +170745206801,217,0 +170745206849,217,0 +170745206897,218,0 +170745206947,219,0 +170745206996,221,0 +170745207046,223,0 +170745207095,226,0 +170745207145,227,0 +170745207194,229,0 +170745207242,233,0 +170745207290,234,0 +170745207338,235,0 +170745207386,236,0 +170745207436,238,0 +170745207484,238,0 +170745207532,237,0 +170745207581,219,0 +170745207629,215,0 +170745207677,215,0 +170745207725,215,0 +170745207775,215,0 +170745207822,216,0 +170745207870,217,0 +170745207918,217,0 +170745207968,217,0 +170745208016,218,0 +170745208064,219,0 +170745208113,222,0 +170745208163,224,0 +170745208213,227,0 +170745208262,230,0 +170745208310,231,0 +170745208358,233,0 +170745208406,233,0 +170745208454,236,0 +170745208502,235,0 +170745208550,238,0 +170745208598,238,0 +170745208646,237,0 +170745208694,220,0 +170745208741,216,0 +170745208789,216,0 +170745208839,217,0 +170745208887,217,0 +170745208936,218,0 +170745208984,219,0 +170745209032,219,0 +170745209080,221,0 +170745209128,222,0 +170745209178,225,0 +170745209227,227,0 +170745209275,230,0 +170745209325,230,0 +170745209374,232,0 +170745209422,235,0 +170745209472,235,0 +170745209520,239,0 +170745209569,237,0 +170745209619,237,0 +170745209668,239,0 +170745209716,240,0 +170745209764,240,0 +170745209812,221,0 +170745209860,215,0 +170745209910,215,0 +170745209959,215,0 +170745210009,216,0 +170745210057,217,0 +170745210105,218,0 +170745210153,219,0 +170745210202,219,0 +170745210252,223,0 +170745210301,224,0 +170745210349,226,0 +170745210399,229,0 +170745210447,229,0 +170745210496,232,0 +170745210544,233,0 +170745210594,238,0 +170745210643,238,0 +170745210693,238,0 +170745210741,239,0 +170745210789,243,0 +170745210837,238,0 +170745210885,237,0 +170745210933,221,0 +170745210981,215,0 +170745211030,215,0 +170745211080,215,0 +170745211128,215,0 +170745211176,215,0 +170745211225,215,0 +170745211275,215,0 +170745211323,217,0 +170745211372,217,0 +170745211422,218,0 +170745211471,220,0 +170745211521,223,0 +170745211570,225,0 +170745211618,227,0 +170745211668,230,0 +170745211717,230,0 +170745211765,233,0 +170745211813,234,0 +170745211861,235,0 +170745211909,238,0 +170745211957,238,0 +170745212005,239,0 +170745212053,220,0 +170745212102,215,0 +170745212150,215,0 +170745212200,214,0 +170745212247,215,0 +170745212295,216,0 +170745212343,217,0 +170745212393,218,0 +170745212441,218,0 +170745212489,219,0 +170745212537,220,0 +170745212586,222,0 +170745212634,224,0 +170745212684,227,0 +170745212733,229,0 +170745212781,230,0 +170745212829,231,0 +170745212877,233,0 +170745212927,235,0 +170745212975,236,0 +170745213024,237,0 +170745213074,237,0 +170745213123,238,0 +170745213171,219,0 +170745213219,215,0 +170745213267,215,0 +170745213317,215,0 +170745213365,215,0 +170745213413,215,0 +170745213461,215,0 +170745213509,215,0 +170745213557,215,0 +170745213605,215,0 +170745213654,216,0 +170745213704,216,0 +170745213753,217,0 +170745213801,218,0 +170745213851,222,0 +170745213900,224,0 +170745213948,226,0 +170745213996,227,0 +170745214044,231,0 +170745214092,231,0 +170745214142,233,0 +170745214190,236,0 +170745214238,239,0 +170745214286,219,0 +170745214334,216,0 +170745214382,215,0 +170745214430,215,0 +170745214477,215,0 +170745214525,215,0 +170745214573,215,0 +170745214621,215,0 +170745214669,215,0 +170745214719,215,0 +170745214767,216,0 +170745214815,217,0 +170745214864,218,0 +170745214912,219,0 +170745214960,221,0 +170745215008,223,0 +170745215056,226,0 +170745215104,228,0 +170745215154,229,0 +170745215203,230,0 +170745215253,233,0 +170745215301,235,0 +170745215350,238,0 +170745215400,221,0 +170745215448,217,0 +170745215496,216,0 +170745215545,215,0 +170745215593,216,0 +170745215641,215,0 +170745215691,216,0 +170745215739,217,0 +170745215788,217,0 +170745215836,218,0 +170745215884,219,0 +170745215932,219,0 +170745215982,221,0 +170745216030,224,0 +170745216078,227,0 +170745216126,228,0 +170745216174,231,0 +170745216222,233,0 +170745216270,233,0 +170745216319,234,0 +170745216369,238,0 +170745216418,235,0 +170745216468,240,0 +170745216515,220,0 +170745216563,217,0 +170745216613,215,0 +170745216661,215,0 +170745216709,215,0 +170745216757,215,0 +170745216805,215,0 +170745216853,216,0 +170745216900,216,0 +170745216948,217,0 +170745216996,218,0 +170745217044,219,0 +170745217092,219,0 +170745217140,220,0 +170745217188,222,0 +170745217236,225,0 +170745217284,226,0 +170745217332,228,0 +170745217379,232,0 +170745217427,233,0 +170745217475,234,0 +170745217523,238,0 +170745217571,237,0 +170745217619,238,0 +170745217667,220,0 +170745217715,215,0 +170745217764,215,0 +170745217813,215,0 +170745217861,215,0 +170745217911,215,0 +170745217959,215,0 +170745218007,215,0 +170745218055,216,0 +170745218104,215,0 +170745218152,215,0 +170745218200,215,0 +170745218250,216,0 +170745218298,217,0 +170745218346,218,0 +170745218394,220,0 +170745218442,223,0 +170745218489,226,0 +170745218539,226,0 +170745218587,229,0 +170745218635,231,0 +170745218683,237,0 +170745218732,239,0 +170745218782,219,0 +170745218831,216,0 +170745218881,217,0 +170745218930,217,0 +170745218978,218,0 +170745219028,219,0 +170745219076,220,0 +170745219124,220,0 +170745219171,220,0 +170745219219,221,0 +170745219267,222,0 +170745219315,224,0 +170745219365,226,0 +170745219414,229,0 +170745219462,230,0 +170745219510,232,0 +170745219558,233,0 +170745219607,235,0 +170745219655,236,0 +170745219705,236,0 +170745219754,238,0 +170745219804,238,0 +170745219853,237,0 +170745219903,220,0 +170745219951,215,0 +170745219999,215,0 +170745220047,215,0 +170745220095,215,0 +170745220143,215,0 +170745220192,215,0 +170745220240,216,0 +170745220288,216,0 +170745220338,218,0 +170745220387,218,0 +170745220435,219,0 +170745220483,219,0 +170745220531,221,0 +170745220581,224,0 +170745220629,225,0 +170745220676,229,0 +170745220724,231,0 +170745220772,233,0 +170745220820,234,0 +170745220870,236,0 +170745220919,238,0 +170745220967,239,0 +170745221017,221,0 +170745221065,216,0 +170745221114,216,0 +170745221162,215,0 +170745221210,215,0 +170745221258,216,0 +170745221306,215,0 +170745221354,215,0 +170745221402,216,0 +170745221450,217,0 +170745221498,218,0 +170745221546,218,0 +170745221594,220,0 +170745221644,223,0 +170745221693,226,0 +170745221742,228,0 +170745221792,230,0 +170745221840,231,0 +170745221889,232,0 +170745221937,234,0 +170745221987,235,0 +170745222035,237,0 +170745222084,237,0 +170745222134,220,0 +170745222182,215,0 +170745222230,215,0 +170745222278,215,0 +170745222327,215,0 +170745222375,215,0 +170745222425,215,0 +170745222473,216,0 +170745222522,217,0 +170745222570,217,0 +170745222620,217,0 +170745222668,219,0 +170745222717,219,0 +170745222767,221,0 +170745222815,224,0 +170745222863,226,0 +170745222911,229,0 +170745222959,230,0 +170745223007,232,0 +170745223056,234,0 +170745223106,235,0 +170745223155,237,0 +170745223203,237,0 +170745223251,220,0 +170745223299,215,0 +170745223349,215,0 +170745223398,215,0 +170745223448,215,0 +170745223497,215,0 +170745223545,216,0 +170745223593,217,0 +170745223641,217,0 +170745223689,218,0 +170745223737,218,0 +170745223785,219,0 +170745223833,221,0 +170745223882,224,0 +170745223932,226,0 +170745223980,228,0 +170745224028,230,0 +170745224077,232,0 +170745224127,233,0 +170745224175,234,0 +170745224223,236,0 +170745224271,237,0 +170745224320,238,0 +170745224370,221,0 +170745224418,215,0 +170745224467,216,0 +170745224515,215,0 +170745224565,215,0 +170745224614,215,0 +170745224662,215,0 +170745224710,215,0 +170745224758,215,0 +170745224806,215,0 +170745224854,216,0 +170745224903,217,0 +170745224961,217,0 +170745225009,218,0 +170745225057,222,0 +170745225105,223,0 +170745225154,226,0 +170745225204,228,0 +170745225251,230,0 +170745225299,231,0 +170745225347,231,0 +170745225395,236,0 +170745225445,237,0 +170745225492,220,0 +170745225540,215,0 +170745225588,215,0 +170745225636,215,0 +170745225686,215,0 +170745225734,215,0 +170745225782,215,0 +170745225829,215,0 +170745225877,215,0 +170745225925,216,0 +170745225973,216,0 +170745226021,217,0 +170745226069,217,0 +170745226117,218,0 +170745226165,220,0 +170745226212,223,0 +170745226260,224,0 +170745226308,227,0 +170745226356,230,0 +170745226404,231,0 +170745226452,233,0 +170745226501,231,0 +170745226551,239,0 +170745226599,220,0 +170745226647,216,0 +170745226695,215,0 +170745226744,215,0 +170745226794,215,0 +170745226843,214,0 +170745226891,215,0 +170745226939,215,0 +170745226989,215,0 +170745227038,217,0 +170745227086,217,0 +170745227136,218,0 +170745227183,219,0 +170745227231,222,0 +170745227279,224,0 +170745227329,226,0 +170745227377,227,0 +170745227426,230,0 +170745227474,231,0 +170745227522,234,0 +170745227570,235,0 +170745227620,235,0 +170745227668,238,0 +170745227717,218,0 +170745227765,215,0 +170745227813,215,0 +170745227863,215,0 +170745227912,216,0 +170745227960,216,0 +170745228010,217,0 +170745228058,217,0 +170745228106,218,0 +170745228155,220,0 +170745228203,220,0 +170745228253,221,0 +170745228302,221,0 +170745228352,224,0 +170745228401,226,0 +170745228451,230,0 +170745228501,232,0 +170745228550,233,0 +170745228600,235,0 +170745228647,236,0 +170745228697,239,0 +170745228745,237,0 +170745228793,238,0 +170745228841,219,0 +170745228889,216,0 +170745228938,216,0 +170745228988,215,0 +170745229037,216,0 +170745229085,217,0 +170745229133,217,0 +170745229181,218,0 +170745229229,218,0 +170745229277,219,0 +170745229325,220,0 +170745229373,222,0 +170745229421,225,0 +170745229469,226,0 +170745229517,229,0 +170745229567,232,0 +170745229615,233,0 +170745229663,232,0 +170745229712,235,0 +170745229760,236,0 +170745229810,238,0 +170745229859,237,0 +170745229907,238,0 +170745229955,219,0 +170745230003,216,0 +170745230051,215,0 +170745230099,215,0 +170745230149,215,0 +170745230198,215,0 +170745230248,216,0 +170745230296,217,0 +170745230344,218,0 +170745230392,218,0 +170745230440,218,0 +170745230488,219,0 +170745230536,221,0 +170745230585,223,0 +170745230635,227,0 +170745230684,229,0 +170745230732,231,0 +170745230782,233,0 +170745230830,234,0 +170745230877,237,0 +170745230927,237,0 +170745230976,239,0 +170745231024,238,0 +170745231072,219,0 +170745231120,216,0 +170745231168,215,0 +170745231218,216,0 +170745231267,216,0 +170745231317,216,0 +170745231365,217,0 +170745231413,218,0 +170745231462,219,0 +170745231510,219,0 +170745231560,220,0 +170745231609,223,0 +170745231657,225,0 +170745231707,228,0 +170745231755,231,0 +170745231804,230,0 +170745231852,233,0 +170745231900,234,0 +170745231950,235,0 +170745231998,237,0 +170745232046,238,0 +170745232095,238,0 +170745232143,237,0 +170745232191,219,0 +170745232239,216,0 +170745232287,216,0 +170745232335,217,0 +170745232383,217,0 +170745232431,218,0 +170745232479,218,0 +170745232527,219,0 +170745232576,220,0 +170745232626,221,0 +170745232674,224,0 +170745232722,225,0 +170745232771,226,0 +170745232821,228,0 +170745232869,232,0 +170745232917,233,0 +170745232965,234,0 +170745233014,235,0 +170745233062,235,0 +170745233112,237,0 +170745233160,239,0 +170745233209,234,0 +170745233257,239,0 +170745233307,233,0 +170745233356,216,0 +170745233404,215,0 +170745233452,215,0 +170745233500,216,0 +170745233548,216,0 +170745233596,217,0 +170745233646,217,0 +170745233695,218,0 +170745233745,219,0 +170745233794,221,0 +170745233844,221,0 +170745233893,224,0 +170745233943,227,0 +170745233991,228,0 +170745234039,231,0 +170745234086,232,0 +170745234136,234,0 +170745234185,235,0 +170745234233,238,0 +170745234281,238,0 +170745234329,233,0 +170745234379,239,0 +170745234427,228,0 +170745234475,216,0 +170745234524,215,0 +170745234574,215,0 +170745234623,215,0 +170745234671,215,0 +170745234719,216,0 +170745234767,216,0 +170745234817,217,0 +170745234865,218,0 +170745234914,218,0 +170745234962,219,0 +170745235012,221,0 +170745235061,224,0 +170745235111,227,0 +170745235159,228,0 +170745235208,230,0 +170745235258,233,0 +170745235306,236,0 +170745235355,235,0 +170745235405,237,0 +170745235454,231,0 +170745235504,238,0 +170745235552,226,0 +170745235600,216,0 +170745235649,215,0 +170745235697,215,0 +170745235747,215,0 +170745235795,215,0 +170745235844,216,0 +170745235894,216,0 +170745235942,217,0 +170745235989,218,0 +170745236037,219,0 +170745236085,220,0 +170745236135,221,0 +170745236183,223,0 +170745236233,227,0 +170745236281,228,0 +170745236331,230,0 +170745236379,231,0 +170745236427,234,0 +170745236475,236,0 +170745236523,234,0 +170745236572,238,0 +170745236620,239,0 +170745236670,219,0 +170745236718,216,0 +170745236766,215,0 +170745236815,215,0 +170745236865,215,0 +170745236914,215,0 +170745236964,215,0 +170745237012,215,0 +170745237061,215,0 +170745237109,216,0 +170745237159,217,0 +170745237208,218,0 +170745237256,219,0 +170745237304,220,0 +170745237352,223,0 +170745237400,227,0 +170745237448,227,0 +170745237497,229,0 +170745237547,231,0 +170745237595,231,0 +170745237645,234,0 +170745237693,236,0 +170745237741,239,0 +170745237789,219,0 +170745237836,215,0 +170745237884,215,0 +170745237932,215,0 +170745237980,215,0 +170745238030,215,0 +170745238078,215,0 +170745238126,215,0 +170745238175,216,0 +170745238225,216,0 +170745238273,217,0 +170745238322,218,0 +170745238372,219,0 +170745238422,220,0 +170745238469,223,0 +170745238519,227,0 +170745238567,227,0 +170745238615,228,0 +170745238664,230,0 +170745238714,232,0 +170745238762,234,0 +170745238810,237,0 +170745238859,239,0 +170745238909,219,0 +170745238959,215,0 +170745239006,215,0 +170745239054,215,0 +170745239102,215,0 +170745239152,215,0 +170745239200,215,0 +170745239248,216,0 +170745239297,217,0 +170745239345,217,0 +170745239395,218,0 +170745239444,219,0 +170745239494,221,0 +170745239542,223,0 +170745239591,225,0 +170745239639,228,0 +170745239687,229,0 +170745239735,233,0 +170745239783,234,0 +170745239831,234,0 +170745239881,236,0 +170745239929,236,0 +170745239978,239,0 +170745240026,220,0 +170745240076,215,0 +170745240123,215,0 +170745240171,215,0 +170745240221,215,0 +170745240270,215,0 +170745240318,215,0 +170745240366,215,0 +170745240416,215,0 +170745240464,217,0 +170745240513,220,0 +170745240561,218,0 +170745240609,219,0 +170745240659,220,0 +170745240707,222,0 +170745240755,224,0 +170745240804,228,0 +170745240852,229,0 +170745240902,232,0 +170745240951,232,0 +170745241001,234,0 +170745241050,238,0 +170745241098,238,0 +170745241146,219,0 +170745241194,216,0 +170745241242,215,0 +170745241292,215,0 +170745241341,215,0 +170745241389,215,0 +170745241437,215,0 +170745241485,215,0 +170745241535,216,0 +170745241583,216,0 +170745241631,217,0 +170745241680,218,0 +170745241728,219,0 +170745241778,222,0 +170745241827,224,0 +170745241877,228,0 +170745241925,229,0 +170745241974,231,0 +170745242024,232,0 +170745242073,231,0 +170745242123,233,0 +170745242173,237,0 +170745242221,240,0 +170745242270,219,0 +170745242320,215,0 +170745242368,215,0 +170745242415,215,0 +170745242465,215,0 +170745242513,215,0 +170745242563,215,0 +170745242612,215,0 +170745242660,215,0 +170745242708,216,0 +170745242758,217,0 +170745242806,217,0 +170745242855,218,0 +170745242903,219,0 +170745242953,221,0 +170745243002,223,0 +170745243050,225,0 +170745243098,229,0 +170745243148,229,0 +170745243197,231,0 +170745243245,233,0 +170745243293,236,0 +170745243341,237,0 +170745243391,221,0 +170745243438,216,0 +170745243486,215,0 +170745243536,215,0 +170745243584,215,0 +170745243633,216,0 +170745243683,217,0 +170745243731,217,0 +170745243779,217,0 +170745243828,219,0 +170745243876,220,0 +170745243926,220,0 +170745243974,222,0 +170745244022,225,0 +170745244070,227,0 +170745244119,229,0 +170745244169,232,0 +170745244217,233,0 +170745244266,234,0 +170745244316,235,0 +170745244364,235,0 +170745244413,237,0 +170745244461,240,0 +170745244509,219,0 +170745244559,215,0 +170745244608,215,0 +170745244658,215,0 +170745244706,215,0 +170745244755,215,0 +170745244805,215,0 +170745244853,215,0 +170745244901,215,0 +170745244950,216,0 +170745244998,216,0 +170745245048,218,0 +170745245096,219,0 +170745245145,220,0 +170745245193,222,0 +170745245243,224,0 +170745245292,227,0 +170745245340,229,0 +170745245390,231,0 +170745245438,230,0 +170745245485,233,0 +170745245533,236,0 +170745245583,237,0 +170745245633,220,0 +170745245682,215,0 +170745245730,215,0 +170745245778,215,0 +170745245826,215,0 +170745245874,215,0 +170745245922,216,0 +170745245969,216,0 +170745246017,217,0 +170745246067,218,0 +170745246116,218,0 +170745246164,220,0 +170745246214,220,0 +170745246262,223,0 +170745246310,226,0 +170745246359,227,0 +170745246407,228,0 +170745246455,230,0 +170745246503,232,0 +170745246551,234,0 +170745246599,235,0 +170745246647,230,0 +170745246694,239,0 +170745246742,237,0 +170745246790,217,0 +170745246840,215,0 +170745246888,215,0 +170745246935,215,0 +170745246983,215,0 +170745247033,215,0 +170745247081,214,0 +170745247128,214,0 +170745247176,215,0 +170745247224,215,0 +170745247272,215,0 +170745247320,215,0 +170745247370,215,0 +170745247418,216,0 +170745247466,216,0 +170745247514,218,0 +170745247562,220,0 +170745247610,222,0 +170745247659,224,0 +170745247709,228,0 +170745247757,226,0 +170745247805,238,0 +170745247854,227,0 +170745247904,216,0 +170745247952,215,0 +170745248001,215,0 +170745248049,215,0 +170745248099,216,0 +170745248148,216,0 +170745248196,217,0 +170745248244,217,0 +170745248292,218,0 +170745248340,219,0 +170745248388,219,0 +170745248436,220,0 +170745248484,221,0 +170745248532,223,0 +170745248581,227,0 +170745248629,229,0 +170745248677,230,0 +170745248727,233,0 +170745248776,233,0 +170745248826,235,0 +170745248875,232,0 +170745248923,237,0 +170745248971,236,0 +170745249019,217,0 +170745249069,215,0 +170745249118,215,0 +170745249166,215,0 +170745249214,216,0 +170745249262,216,0 +170745249310,216,0 +170745249358,217,0 +170745249406,217,0 +170745249454,219,0 +170745249504,220,0 +170745249552,220,0 +170745249601,222,0 +170745249651,225,0 +170745249698,228,0 +170745249746,229,0 +170745249794,230,0 +170745249844,232,0 +170745249894,233,0 +170745249943,235,0 +170745249993,237,0 +170745250042,237,0 +170745250090,237,0 +170745250138,218,0 +170745250188,215,0 +170745250236,215,0 +170745250285,215,0 +170745250333,215,0 +170745250381,215,0 +170745250430,216,0 +170745250480,216,0 +170745250528,217,0 +170745250576,218,0 +170745250623,219,0 +170745250671,219,0 +170745250719,221,0 +170745250767,223,0 +170745250815,224,0 +170745250863,228,0 +170745250911,229,0 +170745250961,231,0 +170745251010,232,0 +170745251058,233,0 +170745251106,236,0 +170745251155,237,0 +170745251203,238,0 +170745251253,219,0 +170745251301,215,0 +170745251351,215,0 +170745251399,215,0 +170745251446,215,0 +170745251496,215,0 +170745251544,214,0 +170745251592,215,0 +170745251640,215,0 +170745251688,215,0 +170745251736,215,0 +170745251785,215,0 +170745251835,217,0 +170745251884,218,0 +170745251934,221,0 +170745251982,222,0 +170745252031,225,0 +170745252079,226,0 +170745252127,228,0 +170745252175,230,0 +170745252223,231,0 +170745252273,237,0 +170745252322,238,0 +170745252370,218,0 +170745252419,215,0 +170745252467,215,0 +170745252515,215,0 +170745252563,215,0 +170745252611,215,0 +170745252659,216,0 +170745252707,217,0 +170745252755,218,0 +170745252803,219,0 +170745252851,219,0 +170745252899,219,0 +170745252947,220,0 +170745252995,222,0 +170745253044,225,0 +170745253092,227,0 +170745253140,229,0 +170745253188,230,0 +170745253236,231,0 +170745253284,234,0 +170745253333,235,0 +170745253381,238,0 +170745253429,238,0 +170745253477,221,0 +170745253525,215,0 +170745253575,216,0 +170745253624,215,0 +170745253672,215,0 +170745253720,215,0 +170745253770,215,0 +170745253818,215,0 +170745253866,215,0 +170745253914,215,0 +170745253963,215,0 +170745254011,215,0 +170745254060,215,0 +170745254110,215,0 +170745254160,216,0 +170745254208,216,0 +170745254255,217,0 +170745254303,219,0 +170745254351,222,0 +170745254399,223,0 +170745254447,226,0 +170745254497,238,0 +170745254545,238,0 +170745254593,219,0 +170745254641,217,0 +170745254689,216,0 +170745254737,215,0 +170745254786,216,0 +170745254834,217,0 +170745254882,218,0 +170745254930,218,0 +170745254978,219,0 +170745255027,218,0 +170745255077,220,0 +170745255127,222,0 +170745255176,221,0 +170745255224,223,0 +170745255272,225,0 +170745255322,230,0 +170745255370,231,0 +170745255418,232,0 +170745255466,233,0 +170745255515,234,0 +170745255563,235,0 +170745255611,237,0 +170745255659,238,0 +170745255708,220,0 +170745255758,215,0 +170745255806,216,0 +170745255855,215,0 +170745255905,215,0 +170745255953,215,0 +170745256001,217,0 +170745256050,217,0 +170745256098,218,0 +170745256148,219,0 +170745256196,220,0 +170745256245,220,0 +170745256295,225,0 +170745256345,227,0 +170745256392,227,0 +170745256440,228,0 +170745256488,232,0 +170745256536,236,0 +170745256584,234,0 +170745256632,236,0 +170745256682,238,0 +170745256731,237,0 +170745256781,239,0 +170745256829,220,0 +170745256878,215,0 +170745256926,215,0 +170745256974,215,0 +170745257022,216,0 +170745257070,216,0 +170745257119,217,0 +170745257167,218,0 +170745257215,218,0 +170745257265,219,0 +170745257313,219,0 +170745257361,222,0 +170745257409,223,0 +170745257457,225,0 +170745257506,229,0 +170745257556,232,0 +170745257604,232,0 +170745257651,233,0 +170745257701,234,0 +170745257749,234,0 +170745257797,236,0 +170745257845,236,0 +170745257894,238,0 +170745257942,235,0 +170745257990,217,0 +170745258040,217,0 +170745258088,217,0 +170745258136,218,0 +170745258184,218,0 +170745258233,219,0 +170745258283,219,0 +170745258331,221,0 +170745258379,222,0 +170745258427,225,0 +170745258476,227,0 +170745258524,229,0 +170745258574,231,0 +170745258623,232,0 +170745258673,236,0 +170745258721,236,0 +170745258770,236,0 +170745258820,239,0 +170745258868,239,0 +170745258916,240,0 +170745258964,234,0 +170745259011,240,0 +170745259059,239,0 +170745259107,217,0 +170745259157,215,0 +170745259205,215,0 +170745259253,217,0 +170745259301,217,0 +170745259350,218,0 +170745259400,217,0 +170745259449,218,0 +170745259497,219,0 +170745259545,221,0 +170745259595,222,0 +170745259643,225,0 +170745259692,227,0 +170745259742,229,0 +170745259790,231,0 +170745259839,232,0 +170745259887,234,0 +170745259937,235,0 +170745259985,236,0 +170745260033,240,0 +170745260082,233,0 +170745260132,239,0 +170745260180,224,0 +170745260228,216,0 +170745260276,215,0 +170745260325,216,0 +170745260373,216,0 +170745260421,216,0 +170745260471,217,0 +170745260519,219,0 +170745260566,218,0 +170745260614,218,0 +170745260662,220,0 +170745260710,225,0 +170745260758,223,0 +170745260807,226,0 +170745260855,228,0 +170745260903,230,0 +170745260951,233,0 +170745261001,235,0 +170745261049,237,0 +170745261097,239,0 +170745261145,238,0 +170745261193,239,0 +170745261241,239,0 +170745261288,239,0 +170745261336,219,0 +170745261384,216,0 +170745261432,217,0 +170745261480,218,0 +170745261528,217,0 +170745261576,219,0 +170745261623,219,0 +170745261671,220,0 +170745261719,220,0 +170745261767,223,0 +170745261815,228,0 +170745261863,226,0 +170745261911,227,0 +170745261959,229,0 +170745262008,233,0 +170745262056,234,0 +170745262104,236,0 +170745262152,237,0 +170745262200,238,0 +170745262248,238,0 +170745262295,240,0 +170745262343,241,0 +170745262391,240,0 +170745262439,221,0 +170745262487,215,0 +170745262536,215,0 +170745262584,216,0 +170745262632,217,0 +170745262680,218,0 +170745262730,219,0 +170745262778,219,0 +170745262826,220,0 +170745262873,220,0 +170745262921,221,0 +170745262969,223,0 +170745263017,223,0 +170745263065,225,0 +170745263113,233,0 +170745263162,231,0 +170745263210,232,0 +170745263258,234,0 +170745263306,235,0 +170745263354,235,0 +170745263402,240,0 +170745263450,239,0 +170745263497,239,0 +170745263545,220,0 +170745263593,215,0 +170745263643,215,0 +170745263692,215,0 +170745263740,215,0 +170745263788,215,0 +170745263837,215,0 +170745263885,215,0 +170745263933,215,0 +170745263981,215,0 +170745264029,216,0 +170745264077,217,0 +170745264125,217,0 +170745264173,218,0 +170745264222,221,0 +170745264272,222,0 +170745264320,226,0 +170745264368,227,0 +170745264417,229,0 +170745264465,231,0 +170745264513,234,0 +170745264563,235,0 +170745264611,237,0 +170745264660,221,0 +170745264710,216,0 +170745264758,215,0 +170745264806,215,0 +170745264854,215,0 +170745264903,215,0 +170745264953,215,0 +170745265001,215,0 +170745265049,215,0 +170745265098,215,0 +170745265148,216,0 +170745265196,217,0 +170745265244,217,0 +170745265292,218,0 +170745265340,219,0 +170745265388,222,0 +170745265437,225,0 +170745265485,227,0 +170745265533,229,0 +170745265582,230,0 +170745265632,234,0 +170745265681,232,0 +170745265729,238,0 +170745265777,233,0 +170745265825,217,0 +170745265875,215,0 +170745265924,216,0 +170745265974,217,0 +170745266022,217,0 +170745266071,218,0 +170745266120,219,0 +170745266168,219,0 +170745266216,220,0 +170745266264,221,0 +170745266312,223,0 +170745266360,224,0 +170745266408,225,0 +170745266456,227,0 +170745266504,229,0 +170745266552,230,0 +170745266600,232,0 +170745266648,233,0 +170745266695,236,0 +170745266743,237,0 +170745266791,237,0 +170745266839,237,0 +170745266887,240,0 +170745266935,219,0 +170745266983,215,0 +170745267031,214,0 +170745267079,215,0 +170745267127,215,0 +170745267175,215,0 +170745267223,215,0 +170745267271,216,0 +170745267318,217,0 +170745267366,218,0 +170745267414,218,0 +170745267462,219,0 +170745267512,221,0 +170745267561,227,0 +170745267609,225,0 +170745267659,228,0 +170745267709,229,0 +170745267756,231,0 +170745267804,233,0 +170745267852,233,0 +170745267900,235,0 +170745267950,238,0 +170745267998,237,0 +170745268046,219,0 +170745268093,215,0 +170745268141,215,0 +170745268191,215,0 +170745268240,217,0 +170745268290,217,0 +170745268340,218,0 +170745268387,219,0 +170745268435,219,0 +170745268483,221,0 +170745268531,223,0 +170745268579,227,0 +170745268629,227,0 +170745268677,230,0 +170745268725,232,0 +170745268773,234,0 +170745268821,234,0 +170745268870,236,0 +170745268918,236,0 +170745268968,237,0 +170745269017,239,0 +170745269067,238,0 +170745269116,238,0 +170745269164,219,0 +170745269214,215,0 +170745269263,215,0 +170745269311,215,0 +170745269359,215,0 +170745269409,214,0 +170745269457,215,0 +170745269506,216,0 +170745269554,217,0 +170745269602,217,0 +170745269650,219,0 +170745269698,221,0 +170745269746,224,0 +170745269796,227,0 +170745269845,229,0 +170745269895,230,0 +170745269942,232,0 +170745269990,234,0 +170745270040,236,0 +170745270088,236,0 +170745270137,237,0 +170745270186,239,0 +170745270234,237,0 +170745270281,220,0 +170745270329,215,0 +170745270377,215,0 +170745270425,215,0 +170745270475,216,0 +170745270523,217,0 +170745270570,217,0 +170745270618,219,0 +170745270666,218,0 +170745270716,220,0 +170745270765,222,0 +170745270815,225,0 +170745270863,227,0 +170745270911,229,0 +170745270958,230,0 +170745271006,232,0 +170745271054,234,0 +170745271102,235,0 +170745271150,236,0 +170745271198,236,0 +170745271246,238,0 +170745271294,239,0 +170745271342,238,0 +170745271389,220,0 +170745271439,215,0 +170745271487,215,0 +170745271535,215,0 +170745271584,215,0 +170745271632,215,0 +170745271682,215,0 +170745271731,215,0 +170745271779,215,0 +170745271827,217,0 +170745271875,217,0 +170745271923,219,0 +170745271971,221,0 +170745272021,224,0 +170745272070,227,0 +170745272120,228,0 +170745272169,230,0 +170745272217,231,0 +170745272265,233,0 +170745272313,236,0 +170745272361,236,0 +170745272411,238,0 +170745272460,239,0 +170745272510,221,0 +170745272558,216,0 +170745272607,215,0 +170745272657,216,0 +170745272706,217,0 +170745272756,218,0 +170745272804,254,0 +170745272852,220,0 +170745272900,220,0 +170745272948,223,0 +170745272996,224,0 +170745273044,225,0 +170745273092,228,0 +170745273140,230,0 +170745273188,232,0 +170745273236,238,0 +170745273283,236,0 +170745273333,238,0 +170745273382,237,0 +170745273430,239,0 +170745273480,239,0 +170745273528,237,0 +170745273577,239,0 +170745273625,220,0 +170745273674,216,0 +170745273722,215,0 +170745273770,215,0 +170745273818,215,0 +170745273866,215,0 +170745273914,216,0 +170745273964,216,0 +170745274013,217,0 +170745274063,218,0 +170745274111,218,0 +170745274159,221,0 +170745274207,224,0 +170745274254,227,0 +170745274304,228,0 +170745274353,231,0 +170745274403,232,0 +170745274451,232,0 +170745274500,235,0 +170745274548,235,0 +170745274598,237,0 +170745274647,238,0 +170745274697,239,0 +170745274745,219,0 +170745274793,217,0 +170745274841,218,0 +170745274890,218,0 +170745274939,218,0 +170745274987,215,0 +170745275035,216,0 +170745275084,217,0 +170745275132,217,0 +170745275180,218,0 +170745275230,218,0 +170745275278,219,0 +170745275326,223,0 +170745275375,225,0 +170745275425,227,0 +170745275473,230,0 +170745275522,233,0 +170745275570,234,0 +170745275620,234,0 +170745275669,235,0 +170745275719,235,0 +170745275767,238,0 +170745275815,237,0 +170745275864,220,0 +170745275914,215,0 +170745275962,215,0 +170745276010,215,0 +170745276058,215,0 +170745276107,215,0 +170745276157,216,0 +170745276206,217,0 +170745276254,218,0 +170745276302,218,0 +170745276350,219,0 +170745276400,223,0 +170745276449,224,0 +170745276497,227,0 +170745276545,229,0 +170745276593,231,0 +170745276641,235,0 +170745276689,233,0 +170745276737,235,0 +170745276785,236,0 +170745276832,238,0 +170745276882,237,0 +170745276930,239,0 +170745276978,226,0 +170745277028,217,0 +170745277077,216,0 +170745277125,216,0 +170745277175,216,0 +170745277223,216,0 +170745277271,216,0 +170745277320,216,0 +170745277370,215,0 +170745277418,216,0 +170745277465,217,0 +170745277513,218,0 +170745277561,219,0 +170745277609,221,0 +170745277657,223,0 +170745277707,225,0 +170745277756,227,0 +170745277806,228,0 +170745277855,232,0 +170745277903,234,0 +170745277951,234,0 +170745278001,238,0 +170745278049,239,0 +170745278097,223,0 +170745278145,216,0 +170745278194,215,0 +170745278242,215,0 +170745278292,215,0 +170745278340,215,0 +170745278388,215,0 +170745278436,214,0 +170745278483,215,0 +170745278533,215,0 +170745278581,216,0 +170745278629,217,0 +170745278677,218,0 +170745278726,221,0 +170745278774,224,0 +170745278822,225,0 +170745278872,228,0 +170745278921,229,0 +170745278969,232,0 +170745279019,233,0 +170745279067,234,0 +170745279116,236,0 +170745279164,237,0 +170745279214,218,0 +170745279263,215,0 +170745279311,215,0 +170745279359,215,0 +170745279409,215,0 +170745279458,215,0 +170745279508,215,0 +170745279557,215,0 +170745279607,216,0 +170745279657,216,0 +170745279704,217,0 +170745279752,218,0 +170745279800,219,0 +170745279850,223,0 +170745279899,227,0 +170745279947,227,0 +170745279997,229,0 +170745280045,232,0 +170745280095,233,0 +170745280142,233,0 +170745280190,235,0 +170745280238,236,0 +170745280286,239,0 +170745280334,232,0 +170745280384,216,0 +170745280432,215,0 +170745280481,215,0 +170745280529,215,0 +170745280577,215,0 +170745280627,216,0 +170745280675,216,0 +170745280723,217,0 +170745280772,217,0 +170745280820,218,0 +170745280870,219,0 +170745280918,220,0 +170745280966,224,0 +170745281015,226,0 +170745281063,228,0 +170745281111,228,0 +170745281159,231,0 +170745281209,231,0 +170745281256,233,0 +170745281306,235,0 +170745281354,231,0 +170745281402,239,0 +170745281450,230,0 +170745281498,216,0 +170745281547,215,0 +170745281595,214,0 +170745281645,214,0 +170745281695,214,0 +170745281742,214,0 +170745281792,214,0 +170745281842,214,0 +170745281891,214,0 +170745281939,215,0 +170745281987,216,0 +170745282036,217,0 +170745282084,218,0 +170745282134,221,0 +170745282182,224,0 +170745282230,225,0 +170745282278,228,0 +170745282326,230,0 +170745282375,231,0 +170745282425,233,0 +170745282474,237,0 +170745282522,238,0 +170745282570,225,0 +170745282620,216,0 +170745282668,215,0 +170745282715,215,0 +170745282763,215,0 +170745282811,215,0 +170745282861,214,0 +170745282909,215,0 +170745282957,215,0 +170745283006,216,0 +170745283054,218,0 +170745283102,221,0 +170745283150,219,0 +170745283200,221,0 +170745283247,223,0 +170745283295,226,0 +170745283343,228,0 +170745283393,230,0 +170745283441,232,0 +170745283489,233,0 +170745283537,234,0 +170745283585,233,0 +170745283633,239,0 +170745283681,234,0 +170745283730,217,0 +170745283778,215,0 +170745283828,215,0 +170745283877,215,0 +170745283925,215,0 +170745283975,215,0 +170745284023,216,0 +170745284071,217,0 +170745284118,218,0 +170745284166,218,0 +170745284214,218,0 +170745284262,220,0 +170745284310,224,0 +170745284360,226,0 +170745284409,228,0 +170745284457,230,0 +170745284505,233,0 +170745284553,233,0 +170745284603,234,0 +170745284651,237,0 +170745284699,238,0 +170745284748,239,0 +170745284796,237,0 +170745284846,218,0 +170745284895,215,0 +170745284943,215,0 +170745284993,215,0 +170745285041,215,0 +170745285089,215,0 +170745285138,215,0 +170745285187,215,0 +170745285237,215,0 +170745285285,215,0 +170745285333,217,0 +170745285382,217,0 +170745285430,219,0 +170745285480,219,0 +170745285529,222,0 +170745285579,223,0 +170745285627,227,0 +170745285676,228,0 +170745285726,230,0 +170745285774,233,0 +170745285822,230,0 +170745285870,240,0 +170745285918,238,0 +170745285967,216,0 +170745286017,215,0 +170745286066,215,0 +170745286114,215,0 +170745286162,214,0 +170745286210,215,0 +170745286258,215,0 +170745286306,215,0 +170745286354,217,0 +170745286402,217,0 +170745286450,217,0 +170745286499,218,0 +170745286547,220,0 +170745286595,224,0 +170745286643,225,0 +170745286691,229,0 +170745286741,229,0 +170745286790,231,0 +170745286840,232,0 +170745286888,233,0 +170745286936,234,0 +170745286984,238,0 +170745287033,238,0 +170745287081,218,0 +170745287129,215,0 +170745287177,215,0 +170745287227,215,0 +170745287274,215,0 +170745287324,216,0 +170745287372,217,0 +170745287421,218,0 +170745287469,218,0 +170745287517,218,0 +170745287567,219,0 +170745287615,220,0 +170745287663,223,0 +170745287711,227,0 +170745287759,227,0 +170745287808,231,0 +170745287858,231,0 +170745287907,232,0 +170745287957,232,0 +170745288005,237,0 +170745288053,236,0 +170745288101,238,0 +170745288148,237,0 +170745288196,219,0 +170745288244,215,0 +170745288294,215,0 +170745288343,215,0 +170745288391,215,0 +170745288441,215,0 +170745288489,215,0 +170745288537,215,0 +170745288585,214,0 +170745288634,216,0 +170745288682,217,0 +170745288732,217,0 +170745288780,218,0 +170745288829,220,0 +170745288877,222,0 +170745288925,227,0 +170745288973,227,0 +170745289021,229,0 +170745289069,231,0 +170745289117,234,0 +170745289165,234,0 +170745289212,236,0 +170745289260,237,0 +170745289310,220,0 +170745289360,215,0 +170745289409,215,0 +170745289457,215,0 +170745289505,215,0 +170745289553,215,0 +170745289601,216,0 +170745289649,216,0 +170745289697,216,0 +170745289745,216,0 +170745289794,218,0 +170745289842,218,0 +170745289890,220,0 +170745289940,222,0 +170745289989,224,0 +170745290039,227,0 +170745290087,228,0 +170745290135,230,0 +170745290184,232,0 +170745290232,233,0 +170745290280,234,0 +170745290328,236,0 +170745290378,238,0 +170745290425,220,0 +170745290473,215,0 +170745290523,215,0 +170745290572,215,0 +170745290620,215,0 +170745290668,215,0 +170745290718,215,0 +170745290767,215,0 +170745290815,216,0 +170745290865,216,0 +170745290913,218,0 +170745290962,219,0 +170745291010,220,0 +170745291058,222,0 +170745291108,225,0 +170745291157,227,0 +170745291207,228,0 +170745291255,230,0 +170745291303,232,0 +170745291351,234,0 +170745291399,235,0 +170745291448,236,0 +170745291498,238,0 +170745291546,220,0 +170745291594,215,0 +170745291643,215,0 +170745291691,215,0 +170745291739,215,0 +170745291787,215,0 +170745291835,216,0 +170745291883,216,0 +170745291932,217,0 +170745291980,218,0 +170745292028,218,0 +170745292078,219,0 +170745292126,222,0 +170745292174,224,0 +170745292222,228,0 +170745292269,230,0 +170745292317,230,0 +170745292367,234,0 +170745292415,233,0 +170745292463,235,0 +170745292510,237,0 +170745292558,238,0 +170745292606,239,0 +170745292654,220,0 +170745292704,215,0 +170745292751,216,0 +170745292799,217,0 +170745292847,217,0 +170745292895,219,0 +170745292943,219,0 +170745292993,220,0 +170745293040,221,0 +170745293088,222,0 +170745293136,225,0 +170745293184,225,0 +170745293232,227,0 +170745293281,228,0 +170745293329,231,0 +170745293377,232,0 +170745293425,234,0 +170745293473,234,0 +170745293521,236,0 +170745293569,237,0 +170745293617,238,0 +170745293666,232,0 +170745293714,239,0 +170745293762,229,0 +170745293811,216,0 +170745293859,215,0 +170745293907,215,0 +170745293955,215,0 +170745294003,215,0 +170745294051,215,0 +170745294099,215,0 +170745294147,216,0 +170745294195,217,0 +170745294245,219,0 +170745294293,220,0 +170745294341,223,0 +170745294390,225,0 +170745294438,229,0 +170745294486,231,0 +170745294534,231,0 +170745294583,233,0 +170745294631,235,0 +170745294679,236,0 +170745294727,237,0 +170745294775,236,0 +170745294823,240,0 +170745294871,236,0 +170745294919,217,0 +170745294969,215,0 +170745295017,215,0 +170745295065,215,0 +170745295113,215,0 +170745295162,215,0 +170745295212,215,0 +170745295261,216,0 +170745295309,217,0 +170745295359,218,0 +170745295407,219,0 +170745295454,220,0 +170745295502,223,0 +170745295552,225,0 +170745295600,227,0 +170745295648,229,0 +170745295697,232,0 +170745295745,231,0 +170745295795,239,0 +170745295843,235,0 +170745295892,234,0 +170745295940,239,0 +170745295988,236,0 +170745296037,217,0 +170745296086,215,0 +170745296136,215,0 +170745296184,215,0 +170745296232,215,0 +170745296280,216,0 +170745296328,216,0 +170745296377,217,0 +170745296427,218,0 +170745296475,219,0 +170745296524,221,0 +170745296572,223,0 +170745296622,225,0 +170745296671,227,0 +170745296721,229,0 +170745296769,231,0 +170745296818,232,0 +170745296868,234,0 +170745296916,236,0 +170745296965,237,0 +170745297015,235,0 +170745297063,239,0 +170745297111,239,0 +170745297160,217,0 +170745297208,215,0 +170745297258,216,0 +170745297305,216,0 +170745297355,218,0 +170745297405,218,0 +170745297454,219,0 +170745297504,219,0 +170745297552,220,0 +170745297601,221,0 +170745297649,224,0 +170745297699,227,0 +170745297747,231,0 +170745297796,229,0 +170745297844,233,0 +170745297894,233,0 +170745297942,233,0 +170745297991,235,0 +170745298041,236,0 +170745298090,238,0 +170745298138,238,0 +170745298188,239,0 +170745298236,234,0 +170745298284,216,0 +170745298332,215,0 +170745298381,215,0 +170745298431,215,0 +170745298480,215,0 +170745298529,215,0 +170745298579,215,0 +170745298627,216,0 +170745298675,217,0 +170745298724,217,0 +170745298772,219,0 +170745298820,219,0 +170745298868,223,0 +170745298916,225,0 +170745298964,227,0 +170745299014,228,0 +170745299062,230,0 +170745299110,231,0 +170745299159,234,0 +170745299209,233,0 +170745299258,232,0 +170745299306,238,0 +170745299354,227,0 +170745299402,216,0 +170745299452,215,0 +170745299500,215,0 +170745299549,215,0 +170745299599,215,0 +170745299648,216,0 +170745299698,216,0 +170745299746,217,0 +170745299794,218,0 +170745299842,219,0 +170745299890,220,0 +170745299938,223,0 +170745299986,225,0 +170745300033,227,0 +170745300083,229,0 +170745300131,231,0 +170745300180,233,0 +170745300230,232,0 +170745300278,236,0 +170745300326,237,0 +170745300376,232,0 +170745300425,239,0 +170745300475,234,0 +170745300524,215,0 +170745300572,215,0 +170745300620,214,0 +170745300670,215,0 +170745300718,215,0 +170745300767,215,0 +170745300817,215,0 +170745300866,214,0 +170745300914,215,0 +170745300962,215,0 +170745301010,215,0 +170745301058,216,0 +170745301106,217,0 +170745301155,218,0 +170745301203,221,0 +170745301251,224,0 +170745301299,225,0 +170745301349,227,0 +170745301397,229,0 +170745301445,232,0 +170745301493,231,0 +170745301542,238,0 +170745301590,237,0 +170745301638,217,0 +170745301686,215,0 +170745301734,215,0 +170745301782,215,0 +170745301832,215,0 +170745301880,215,0 +170745301928,217,0 +170745301977,217,0 +170745302027,217,0 +170745302075,217,0 +170745302124,218,0 +170745302172,221,0 +170745302220,223,0 +170745302268,225,0 +170745302318,227,0 +170745302366,228,0 +170745302415,231,0 +170745302463,233,0 +170745302511,235,0 +170745302559,235,0 +170745302607,236,0 +170745302656,238,0 +170745302704,239,0 +170745302752,219,0 +170745302800,216,0 +170745302848,216,0 +170745302896,216,0 +170745302944,216,0 +170745302994,215,0 +170745303042,216,0 +170745303091,215,0 +170745303139,216,0 +170745303187,217,0 +170745303235,218,0 +170745303285,218,0 +170745303333,219,0 +170745303382,221,0 +170745303430,224,0 +170745303478,227,0 +170745303528,228,0 +170745303575,230,0 +170745303625,229,0 +170745303673,232,0 +170745303723,234,0 +170745303772,238,0 +170745303820,241,0 +170745303868,218,0 +170745303916,215,0 +170745303964,215,0 +170745304012,215,0 +170745304060,215,0 +170745304109,216,0 +170745304159,217,0 +170745304207,217,0 +170745304256,218,0 +170745304304,219,0 +170745304352,220,0 +170745304402,222,0 +170745304450,223,0 +170745304499,226,0 +170745304547,228,0 +170745304597,229,0 +170745304645,231,0 +170745304693,234,0 +170745304742,235,0 +170745304790,236,0 +170745304838,236,0 +170745304888,238,0 +170745304937,236,0 +170745304987,218,0 +170745305035,215,0 +170745305083,215,0 +170745305131,215,0 +170745305179,215,0 +170745305228,215,0 +170745305278,215,0 +170745305326,215,0 +170745305374,215,0 +170745305423,215,0 +170745305471,215,0 +170745305519,215,0 +170745305567,215,0 +170745305617,215,0 +170745305666,216,0 +170745305714,217,0 +170745305762,219,0 +170745305810,221,0 +170745305859,223,0 +170745305907,225,0 +170745305955,228,0 +170745306003,236,0 +170745306052,238,0 +170745306102,219,0 +170745306150,215,0 +170745306197,216,0 +170745306245,217,0 +170745306293,218,0 +170745306341,218,0 +170745306389,219,0 +170745306437,220,0 +170745306485,221,0 +170745306532,220,0 +170745306580,236,0 +170745306628,224,0 +170745306676,225,0 +170745306726,228,0 +170745306773,229,0 +170745306821,231,0 +170745306871,232,0 +170745306919,235,0 +170745306968,236,0 +170745307018,235,0 +170745307066,237,0 +170745307115,238,0 +170745307165,238,0 +170745307214,220,0 +170745307264,215,0 +170745307312,215,0 +170745307360,214,0 +170745307407,215,0 +170745307455,215,0 +170745307505,215,0 +170745307553,214,0 +170745307601,215,0 +170745307648,216,0 +170745307696,216,0 +170745307744,217,0 +170745307794,218,0 +170745307842,219,0 +170745307891,222,0 +170745307939,225,0 +170745307989,227,0 +170745308038,228,0 +170745308088,229,0 +170745308137,232,0 +170745308185,234,0 +170745308233,238,0 +170745308281,237,0 +170745308329,220,0 +170745308377,216,0 +170745308425,215,0 +170745308475,215,0 +170745308524,215,0 +170745308572,215,0 +170745308622,215,0 +170745308671,216,0 +170745308719,217,0 +170745308767,219,0 +170745308815,218,0 +170745308863,219,0 +170745308911,220,0 +170745308959,222,0 +170745309006,224,0 +170745309054,227,0 +170745309104,227,0 +170745309152,229,0 +170745309199,231,0 +170745309249,233,0 +170745309297,234,0 +170745309346,236,0 +170745309394,237,0 +170745309444,229,0 +170745309492,1010100,0 +170745309567,1010100,0 +170745309623,222,0 +170745309672,225,0 +170745309722,227,0 +170745309771,223,0 +170745309819,220,0 +170745309869,230,0 +170745309917,217,0 +170745309965,216,0 +170745310014,216,0 +170745310064,218,0 +170745310112,219,0 +170745310161,222,0 +170745310209,224,0 +170745310259,227,0 +170745310307,227,0 +170745310355,230,0 +170745310404,234,0 +170745310452,236,0 +170745310500,239,0 +170745310548,219,0 +170745310596,215,0 +170745310644,215,0 +170745310692,215,0 +170745310741,215,0 +170745310789,215,0 +170745310837,215,0 +170745310885,215,0 +170745310935,215,0 +170745310983,216,0 +170745311031,217,0 +170745311080,218,0 +170745311128,218,0 +170745311178,219,0 +170745311226,222,0 +170745311275,225,0 +170745311323,228,0 +170745311373,227,0 +170745311422,229,0 +170745311472,232,0 +170745311520,235,0 +170745311569,235,0 +170745311617,238,0 +170745311665,231,0 +170745311713,216,0 +170745311761,215,0 +170745311809,215,0 +170745311859,215,0 +170745311907,216,0 +170745311956,216,0 +170745312004,217,0 +170745312052,218,0 +170745312102,218,0 +170745312150,219,0 +170745312198,220,0 +170745312246,221,0 +170745312294,224,0 +170745312341,226,0 +170745312390,228,0 +170745312437,231,0 +170745312485,232,0 +170745312533,232,0 +170745312581,234,0 +170745312631,235,0 +170745312680,235,0 +170745312728,238,0 +170745312778,235,0 +170745312826,216,0 +170745312875,215,0 +170745312923,215,0 +170745312973,215,0 +170745313021,215,0 +170745313069,215,0 +170745313117,215,0 +170745313165,215,0 +170745313213,215,0 +170745313262,215,0 +170745313312,215,0 +170745313361,216,0 +170745313409,217,0 +170745313459,217,0 +170745313507,219,0 +170745313555,222,0 +170745313604,224,0 +170745313654,227,0 +170745313702,230,0 +170745313750,230,0 +170745313798,231,0 +170745313847,237,0 +170745313895,240,0 +170745313945,218,0 +170745313993,215,0 +170745314041,215,0 +170745314090,215,0 +170745314138,215,0 +170745314188,215,0 +170745314236,216,0 +170745314284,216,0 +170745314333,217,0 +170745314381,218,0 +170745314429,219,0 +170745314477,219,0 +170745314526,221,0 +170745314576,224,0 +170745314624,226,0 +170745314672,228,0 +170745314721,230,0 +170745314769,232,0 +170745314817,234,0 +170745314865,235,0 +170745314913,234,0 +170745314963,238,0 +170745315011,236,0 +170745315059,217,0 +170745315107,215,0 +170745315155,215,0 +170745315204,215,0 +170745315254,215,0 +170745315303,215,0 +170745315351,217,0 +170745315399,216,0 +170745315447,217,0 +170745315495,218,0 +170745315544,219,0 +170745315592,220,0 +170745315640,221,0 +170745315688,222,0 +170745315738,225,0 +170745315787,228,0 +170745315835,229,0 +170745315885,231,0 +170745315934,232,0 +170745315982,234,0 +170745316032,236,0 +170745316080,237,0 +170745316128,238,0 +170745316176,217,0 +170745316224,215,0 +170745316272,215,0 +170745316320,215,0 +170745316369,215,0 +170745316417,214,0 +170745316467,215,0 +170745316515,216,0 +170745316563,216,0 +170745316611,217,0 +170745316659,218,0 +170745316707,219,0 +170745316756,221,0 +170745316804,223,0 +170745316852,226,0 +170745316900,227,0 +170745316948,230,0 +170745316998,231,0 +170745317047,232,0 +170745317097,234,0 +170745317145,235,0 +170745317193,237,0 +170745317241,238,0 +170745317289,221,0 +170745317338,217,0 +170745317386,216,0 +170745317434,217,0 +170745317484,217,0 +170745317532,216,0 +170745317581,216,0 +170745317631,216,0 +170745317680,215,0 +170745317728,216,0 +170745317776,217,0 +170745317826,217,0 +170745317875,218,0 +170745317923,219,0 +170745317973,222,0 +170745318020,225,0 +170745318068,226,0 +170745318116,229,0 +170745318166,232,0 +170745318216,233,0 +170745318263,234,0 +170745318311,239,0 +170745318361,238,0 +170745318409,217,0 +170745318458,215,0 +170745318506,215,0 +170745318556,216,0 +170745318605,217,0 +170745318653,217,0 +170745318703,218,0 +170745318753,219,0 +170745318802,219,0 +170745318850,219,0 +170745318899,222,0 +170745318947,222,0 +170745318997,226,0 +170745319045,228,0 +170745319094,230,0 +170745319142,231,0 +170745319190,234,0 +170745319238,232,0 +170745319288,235,0 +170745319337,237,0 +170745319387,236,0 +170745319436,238,0 +170745319486,237,0 +170745319535,216,0 +170745319583,215,0 +170745319633,215,0 +170745319681,215,0 +170745319729,215,0 +170745319777,215,0 +170745319826,215,0 +170745319874,216,0 +170745319924,216,0 +170745319973,217,0 +170745320023,218,0 +170745320071,219,0 +170745320119,220,0 +170745320167,223,0 +170745320216,225,0 +170745320264,227,0 +170745320312,230,0 +170745320360,232,0 +170745320410,233,0 +170745320458,235,0 +170745320506,235,0 +170745320555,238,0 +170745320605,238,0 +170745320654,218,0 +170745320702,217,0 +170745320750,217,0 +170745320798,218,0 +170745320846,219,0 +170745320894,219,0 +170745320942,219,0 +170745320992,219,0 +170745321041,223,0 +170745321089,223,0 +170745321139,224,0 +170745321188,226,0 +170745321238,229,0 +170745321286,232,0 +170745321334,233,0 +170745321383,234,0 +170745321431,236,0 +170745321479,238,0 +170745321527,240,0 +170745321576,239,0 +170745321624,238,0 +170745321674,239,0 +170745321722,237,0 +170745321770,417,0 +170745321823,425,0 +170745321872,422,0 +170745321920,215,0 +170745321968,216,0 +170745322018,217,0 +170745322066,217,0 +170745322115,218,0 +170745322163,218,0 +170745322211,220,0 +170745322259,222,0 +170745322307,224,0 +170745322355,227,0 +170745322405,229,0 +170745322454,231,0 +170745322504,232,0 +170745322553,235,0 +170745322601,236,0 +170745322651,240,0 +170745322700,240,0 +170745322750,233,0 +170745322798,239,0 +170745322846,233,0 +170745322894,217,0 +170745322942,215,0 +170745322990,215,0 +170745323039,215,0 +170745323089,215,0 +170745323137,214,0 +170745323185,215,0 +170745323234,215,0 +170745323284,215,0 +170745323333,215,0 +170745323383,215,0 +170745323431,216,0 +170745323479,216,0 +170745323528,217,0 +170745323576,218,0 +170745323624,218,0 +170745323674,219,0 +170745323722,219,0 +170745323769,224,0 +170745323817,223,0 +170745323865,224,0 +170745323913,225,0 +170745323963,226,0 +170745324011,229,0 +170745324059,231,0 +170745324108,232,0 +170745324158,235,0 +170745324206,237,0 +170745324254,238,0 +170745324302,238,0 +170745324350,239,0 +170745324397,242,0 +170745324445,239,0 +170745324495,240,0 +170745324545,221,0 +170745324592,215,0 +170745324640,215,0 +170745324688,215,0 +170745324736,216,0 +170745324784,217,0 +170745324832,217,0 +170745324882,218,0 +170745324930,220,0 +170745324979,219,0 +170745325029,220,0 +170745325078,222,0 +170745325126,224,0 +170745325174,226,0 +170745325222,229,0 +170745325270,234,0 +170745325317,234,0 +170745325365,239,0 +170745325413,243,0 +170745325461,238,0 +170745325511,238,0 +170745325559,239,0 +170745325608,239,0 +170745325656,220,0 +170745325704,216,0 +170745325752,215,0 +170745325799,216,0 +170745325847,216,0 +170745325895,217,0 +170745325943,217,0 +170745325993,218,0 +170745326041,219,0 +170745326090,219,0 +170745326138,220,0 +170745326188,221,0 +170745326237,222,0 +170745326287,225,0 +170745326335,227,0 +170745326384,234,0 +170745326432,233,0 +170745326480,233,0 +170745326530,233,0 +170745326579,237,0 +170745326629,237,0 +170745326678,239,0 +170745326728,239,0 +170745326776,221,0 +170745326824,215,0 +170745326872,215,0 +170745326921,215,0 +170745326969,215,0 +170745327017,216,0 +170745327065,216,0 +170745327113,217,0 +170745327161,218,0 +170745327211,219,0 +170745327260,219,0 +170745327310,222,0 +170745327358,222,0 +170745327407,223,0 +170745327455,226,0 +170745327503,228,0 +170745327551,232,0 +170745327601,232,0 +170745327650,233,0 +170745327698,234,0 +170745327746,235,0 +170745327794,239,0 +170745327844,238,0 +170745327893,219,0 +170745327943,216,0 +170745327992,215,0 +170745328040,215,0 +170745328090,215,0 +170745328139,215,0 +170745328189,215,0 +170745328237,215,0 +170745328286,216,0 +170745328334,217,0 +170745328382,218,0 +170745328430,219,0 +170745328480,220,0 +170745328528,228,0 +170745328577,226,0 +170745328625,227,0 +170745328675,230,0 +170745328724,232,0 +170745328772,233,0 +170745328820,236,0 +170745328870,237,0 +170745328919,238,0 +170745328969,238,0 +170745329018,220,0 +170745329068,216,0 +170745329116,216,0 +170745329165,215,0 +170745329215,215,0 +170745329263,215,0 +170745329311,215,0 +170745329359,216,0 +170745329406,217,0 +170745329454,217,0 +170745329504,218,0 +170745329554,219,0 +170745329603,219,0 +170745329653,222,0 +170745329701,224,0 +170745329750,227,0 +170745329799,228,0 +170745329849,230,0 +170745329897,234,0 +170745329947,232,0 +170745329995,236,0 +170745330044,240,0 +170745330092,239,0 +170745330140,220,0 +170745330188,215,0 +170745330236,215,0 +170745330285,215,0 +170745330333,216,0 +170745330381,217,0 +170745330429,217,0 +170745330479,218,0 +170745330528,219,0 +170745330578,220,0 +170745330627,221,0 +170745330675,232,0 +170745330723,226,0 +170745330771,229,0 +170745330819,231,0 +170745330867,234,0 +170745330915,233,0 +170745330963,234,0 +170745331011,237,0 +170745331059,239,0 +170745331108,237,0 +170745331156,237,0 +170745331206,240,0 +170745331255,220,0 +170745331305,215,0 +170745331353,215,0 +170745331402,215,0 +170745331450,215,0 +170745331498,215,0 +170745331548,215,0 +170745331596,215,0 +170745331645,215,0 +170745331695,216,0 +170745331743,217,0 +170745331792,218,0 +170745331842,220,0 +170745331890,223,0 +170745331938,225,0 +170745331987,228,0 +170745332035,230,0 +170745332085,230,0 +170745332133,233,0 +170745332181,234,0 +170745332230,235,0 +170745332280,238,0 +170745332328,236,0 +170745332377,219,0 +170745332425,215,0 +170745332473,215,0 +170745332521,215,0 +170745332571,216,0 +170745332619,216,0 +170745332668,217,0 +170745332716,218,0 +170745332764,218,0 +170745332812,221,0 +170745332860,222,0 +170745332910,224,0 +170745332959,225,0 +170745333007,229,0 +170745333055,230,0 +170745333104,232,0 +170745333154,235,0 +170745333203,234,0 +170745333253,237,0 +170745333303,238,0 +170745333352,238,0 +170745333402,239,0 +170745333451,238,0 +170745333501,221,0 +170745333550,217,0 +170745333598,216,0 +170745333646,216,0 +170745333694,217,0 +170745333742,217,0 +170745333790,219,0 +170745333840,219,0 +170745333888,220,0 +170745333937,222,0 +170745333985,224,0 +170745334035,226,0 +170745334084,229,0 +170745334132,231,0 +170745334180,232,0 +170745334230,234,0 +170745334278,235,0 +170745334326,237,0 +170745334373,237,0 +170745334421,242,0 +170745334469,240,0 +170745334517,239,0 +170745334565,239,0 +170745334613,221,0 +170745334663,216,0 +170745334711,215,0 +170745334759,215,0 +170745334807,215,0 +170745334856,216,0 +170745334904,216,0 +170745334954,218,0 +170745335002,218,0 +170745335050,219,0 +170745335098,220,0 +170745335146,223,0 +170745335194,224,0 +170745335243,228,0 +170745335291,229,0 +170745335341,231,0 +170745335389,234,0 +170745335438,235,0 +170745335486,236,0 +170745335536,236,0 +170745335584,237,0 +170745335633,237,0 +170745335681,238,0 +170745335729,219,0 +170745335779,215,0 +170745335828,215,0 +170745335878,215,0 +170745335926,215,0 +170745335975,214,0 +170745336023,215,0 +170745336071,216,0 +170745336120,216,0 +170745336170,217,0 +170745336220,217,0 +170745336268,219,0 +170745336316,221,0 +170745336365,224,0 +170745336415,228,0 +170745336463,228,0 +170745336512,230,0 +170745336560,231,0 +170745336610,234,0 +170745336658,235,0 +170745336706,236,0 +170745336754,238,0 +170745336802,240,0 +170745336849,220,0 +170745336897,215,0 +170745336945,215,0 +170745336993,215,0 +170745337043,215,0 +170745337092,215,0 +170745337142,215,0 +170745337190,216,0 +170745337238,217,0 +170745337286,218,0 +170745337334,218,0 +170745337383,220,0 +170745337431,222,0 +170745337481,224,0 +170745337530,227,0 +170745337580,230,0 +170745337628,231,0 +170745337677,233,0 +170745337727,234,0 +170745337775,236,0 +170745337823,236,0 +170745337871,237,0 +170745337920,241,0 +170745337970,220,0 +170745338019,216,0 +170745338067,216,0 +170745338117,215,0 +170745338165,216,0 +170745338214,217,0 +170745338262,217,0 +170745338310,218,0 +170745338358,219,0 +170745338406,221,0 +170745338454,220,0 +170745338502,221,0 +170745338550,224,0 +170745338600,226,0 +170745338648,230,0 +170745338697,231,0 +170745338747,232,0 +170745338795,233,0 +170745338844,234,0 +170745338892,236,0 +170745338942,237,0 +170745338991,238,0 +170745339041,238,0 +170745339090,220,0 +170745339140,215,0 +170745339189,215,0 +170745339239,215,0 +170745339287,215,0 +170745339335,215,0 +170745339383,215,0 +170745339432,216,0 +170745339480,217,0 +170745339528,217,0 +170745339578,218,0 +170745339627,219,0 +170745339675,220,0 +170745339723,222,0 +170745339773,226,0 +170745339821,228,0 +170745339870,231,0 +170745339918,231,0 +170745339968,233,0 +170745340017,235,0 +170745340065,234,0 +170745340113,238,0 +170745340161,239,0 +170745340209,221,0 +170745340257,216,0 +170745340305,216,0 +170745340353,215,0 +170745340401,216,0 +170745340450,216,0 +170745340498,215,0 +170745340546,216,0 +170745340596,216,0 +170745340644,215,0 +170745340692,216,0 +170745340740,216,0 +170745340788,218,0 +170745340836,218,0 +170745340884,221,0 +170745340933,224,0 +170745340981,226,0 +170745341029,227,0 +170745341078,228,0 +170745341126,231,0 +170745341174,233,0 +170745341222,238,0 +170745341270,238,0 +170745341320,219,0 +170745341367,215,0 +170745341417,215,0 +170745341465,215,0 +170745341513,215,0 +170745341561,216,0 +170745341609,217,0 +170745341656,217,0 +170745341704,218,0 +170745341752,218,0 +170745341800,219,0 +170745341848,220,0 +170745341896,221,0 +170745341944,224,0 +170745341993,227,0 +170745342043,229,0 +170745342091,231,0 +170745342139,232,0 +170745342186,231,0 +170745342234,233,0 +170745342282,235,0 +170745342330,237,0 +170745342378,240,0 +170745342426,222,0 +170745342474,216,0 +170745342522,214,0 +170745342572,215,0 +170745342620,215,0 +170745342668,214,0 +170745342717,214,0 +170745342767,215,0 +170745342815,215,0 +170745342863,214,0 +170745342912,214,0 +170745342960,214,0 +170745343008,214,0 +170745343058,215,0 +170745343106,216,0 +170745343155,218,0 +170745343205,219,0 +170745343253,221,0 +170745343302,223,0 +170745343352,226,0 +170745343401,228,0 +170745343449,226,0 +170745343499,236,0 +170745343548,234,0 +170745343598,217,0 +170745343647,216,0 +170745343697,215,0 +170745343745,216,0 +170745343793,217,0 +170745343841,216,0 +170745343889,219,0 +170745343937,218,0 +170745343986,219,0 +170745344034,219,0 +170745344084,220,0 +170745344132,222,0 +170745344181,226,0 +170745344231,227,0 +170745344280,231,0 +170745344328,231,0 +170745344378,233,0 +170745344426,235,0 +170745344475,235,0 +170745344523,235,0 +170745344573,231,0 +170745344621,238,0 +170745344669,228,0 +170745344717,216,0 +170745344766,215,0 +170745344814,215,0 +170745344864,215,0 +170745344912,215,0 +170745344960,215,0 +170745345008,215,0 +170745345057,216,0 +170745345106,216,0 +170745345154,217,0 +170745345202,218,0 +170745345252,219,0 +170745345300,220,0 +170745345348,223,0 +170745345398,226,0 +170745345446,228,0 +170745345495,230,0 +170745345543,232,0 +170745345591,232,0 +170745345639,234,0 +170745345687,233,0 +170745345735,239,0 +170745345784,236,0 +170745345834,217,0 +170745345882,215,0 +170745345931,215,0 +170745345981,215,0 +170745346029,215,0 +170745346077,216,0 +170745346126,216,0 +170745346174,217,0 +170745346224,217,0 +170745346272,218,0 +170745346320,219,0 +170745346368,220,0 +170745346416,224,0 +170745346465,225,0 +170745346513,228,0 +170745346563,231,0 +170745346612,231,0 +170745346662,234,0 +170745346710,235,0 +170745346759,235,0 +170745346809,233,0 +170745346857,239,0 +170745346906,227,0 +170745346956,216,0 +170745347004,215,0 +170745347052,215,0 +170745347101,216,0 +170745347149,215,0 +170745347197,216,0 +170745347245,217,0 +170745347293,218,0 +170745347341,219,0 +170745347389,219,0 +170745347437,220,0 +170745347485,221,0 +170745347533,223,0 +170745347582,226,0 +170745347632,229,0 +170745347682,230,0 +170745347729,231,0 +170745347777,233,0 +170745347825,235,0 +170745347873,236,0 +170745347923,234,0 +170745347972,236,0 +170745348020,236,0 +170745348068,218,0 +170745348116,217,0 +170745348166,216,0 +170745348215,216,0 +170745348263,216,0 +170745348311,216,0 +170745348359,216,0 +170745348409,216,0 +170745348457,216,0 +170745348506,216,0 +170745348554,217,0 +170745348602,217,0 +170745348650,218,0 +170745348698,221,0 +170745348746,223,0 +170745348794,224,0 +170745348842,228,0 +170745348891,229,0 +170745348939,231,0 +170745348989,233,0 +170745349038,230,0 +170745349088,238,0 +170745349136,237,0 +170745349184,217,0 +170745349231,215,0 +170745349279,215,0 +170745349327,215,0 +170745349375,215,0 +170745349425,215,0 +170745349473,215,0 +170745349521,215,0 +170745349569,216,0 +170745349618,216,0 +170745349668,216,0 +170745349716,218,0 +170745349764,219,0 +170745349813,220,0 +170745349863,223,0 +170745349912,226,0 +170745349962,228,0 +170745350011,228,0 +170745350059,231,0 +170745350107,232,0 +170745350157,234,0 +170745350205,236,0 +170745350254,233,0 +170745350302,217,0 +170745350351,215,0 +170745350399,215,0 +170745350447,215,0 +170745350495,215,0 +170745350543,215,0 +170745350591,216,0 +170745350639,217,0 +170745350687,217,0 +170745350735,218,0 +170745350782,219,0 +170745350830,219,0 +170745350880,221,0 +170745350928,224,0 +170745350977,226,0 +170745351025,228,0 +170745351073,230,0 +170745351123,231,0 +170745351172,234,0 +170745351220,235,0 +170745351270,234,0 +170745351319,236,0 +170745351369,238,0 +170745351418,220,0 +170745351468,215,0 +170745351517,215,0 +170745351565,215,0 +170745351615,215,0 +170745351663,215,0 +170745351710,215,0 +170745351758,215,0 +170745351808,215,0 +170745351856,215,0 +170745351905,216,0 +170745351955,217,0 +170745352003,217,0 +170745352051,219,0 +170745352099,219,0 +170745352147,221,0 +170745352195,224,0 +170745352244,226,0 +170745352292,227,0 +170745352340,231,0 +170745352388,232,0 +170745352436,237,0 +170745352484,238,0 +170745352532,220,0 +170745352580,216,0 +170745352627,217,0 +170745352675,217,0 +170745352725,218,0 +170745352773,218,0 +170745352821,219,0 +170745352869,220,0 +170745352918,221,0 +170745352966,223,0 +170745353014,224,0 +170745353063,227,0 +170745353113,228,0 +170745353161,229,0 +170745353209,232,0 +170745353258,233,0 +170745353306,236,0 +170745353354,236,0 +170745353402,235,0 +170745353451,236,0 +170745353499,237,0 +170745353549,237,0 +170745353597,238,0 +170745353645,220,0 +170745353693,215,0 +170745353741,215,0 +170745353789,215,0 +170745353837,215,0 +170745353886,215,0 +170745353934,215,0 +170745353984,215,0 +170745354033,215,0 +170745354083,215,0 +170745354132,215,0 +170745354182,216,0 +170745354230,217,0 +170745354279,217,0 +170745354327,220,0 +170745354375,223,0 +170745354423,225,0 +170745354471,226,0 +170745354521,228,0 +170745354569,231,0 +170745354617,234,0 +170745354666,236,0 +170745354716,237,0 +170745354764,220,0 +170745354812,216,0 +170745354861,216,0 +170745354909,217,0 +170745354959,217,0 +170745355008,218,0 +170745355056,219,0 +170745355106,220,0 +170745355154,220,0 +170745355202,222,0 +170745355250,225,0 +170745355299,227,0 +170745355347,228,0 +170745355395,230,0 +170745355443,234,0 +170745355491,234,0 +170745355541,235,0 +170745355589,236,0 +170745355637,238,0 +170745355685,238,0 +170745355733,238,0 +170745355781,238,0 +170745355828,238,0 +170745355876,221,0 +170745355924,215,0 +170745355972,216,0 +170745356020,217,0 +170745356070,217,0 +170745356117,219,0 +170745356165,219,0 +170745356213,220,0 +170745356261,220,0 +170745356309,221,0 +170745356357,223,0 +170745356405,224,0 +170745356453,225,0 +170745356500,227,0 +170745356548,228,0 +170745356596,232,0 +170745356646,233,0 +170745356695,235,0 +170745356743,236,0 +170745356793,237,0 +170745356843,239,0 +170745356891,237,0 +170745356940,238,0 +170745356988,219,0 +170745357036,215,0 +170745357084,215,0 +170745357133,215,0 +170745357181,215,0 +170745357229,217,0 +170745357277,217,0 +170745357325,218,0 +170745357373,220,0 +170745357422,222,0 +170745357472,224,0 +170745357521,227,0 +170745357569,229,0 +170745357619,230,0 +170745357668,232,0 +170745357716,234,0 +170745357764,236,0 +170745357814,235,0 +170745357862,238,0 +170745357910,236,0 +170745357959,238,0 +170745358007,239,0 +170745358055,240,0 +170745358103,219,0 +170745358151,217,0 +170745358201,216,0 +170745358249,216,0 +170745358297,216,0 +170745358346,216,0 +170745358394,217,0 +170745358444,217,0 +170745358492,218,0 +170745358540,219,0 +170745358588,220,0 +170745358637,222,0 +170745358685,226,0 +170745358733,226,0 +170745358783,229,0 +170745358830,231,0 +170745358880,231,0 +170745358928,233,0 +170745358978,235,0 +170745359027,235,0 +170745359075,236,0 +170745359125,236,0 +170745359174,238,0 +170745359222,226,0 +170745359271,216,0 +170745359321,216,0 +170745359369,216,0 +170745359417,216,0 +170745359465,215,0 +170745359513,215,0 +170745359561,216,0 +170745359610,217,0 +170745359658,217,0 +170745359706,219,0 +170745359756,220,0 +170745359804,222,0 +170745359852,225,0 +170745359900,227,0 +170745359949,228,0 +170745359997,231,0 +170745360045,232,0 +170745360094,234,0 +170745360142,237,0 +170745360192,235,0 +170745360240,232,0 +170745360289,238,0 +170745360338,227,0 +170745360385,216,0 +170745360433,215,0 +170745360481,215,0 +170745360529,215,0 +170745360577,215,0 +170745360625,216,0 +170745360673,216,0 +170745360721,216,0 +170745360771,217,0 +170745360819,218,0 +170745360867,218,0 +170745360915,220,0 +170745360963,223,0 +170745361012,225,0 +170745361060,228,0 +170745361108,230,0 +170745361157,231,0 +170745361205,233,0 +170745361255,235,0 +170745361305,237,0 +170745361354,233,0 +170745361404,239,0 +170745361453,227,0 +170745361501,216,0 +170745361551,215,0 +170745361599,215,0 +170745361648,215,0 +170745361696,215,0 +170745361744,215,0 +170745361792,215,0 +170745361840,215,0 +170745361889,216,0 +170745361939,216,0 +170745361987,217,0 +170745362035,218,0 +170745362084,218,0 +170745362132,220,0 +170745362180,223,0 +170745362228,225,0 +170745362278,228,0 +170745362326,229,0 +170745362374,231,0 +170745362423,231,0 +170745362471,234,0 +170745362521,238,0 +170745362570,238,0 +170745362620,218,0 +170745362669,215,0 +170745362719,215,0 +170745362768,215,0 +170745362818,215,0 +170745362866,218,0 +170745362914,217,0 +170745362962,218,0 +170745363010,218,0 +170745363058,219,0 +170745363107,220,0 +170745363155,222,0 +170745363205,225,0 +170745363254,228,0 +170745363302,229,0 +170745363350,231,0 +170745363400,234,0 +170745363449,235,0 +170745363497,236,0 +170745363546,236,0 +170745363596,236,0 +170745363644,239,0 +170745363694,221,0 +170745363743,215,0 +170745363791,215,0 +170745363839,215,0 +170745363887,215,0 +170745363935,215,0 +170745363983,215,0 +170745364031,215,0 +170745364079,215,0 +170745364127,215,0 +170745364177,215,0 +170745364226,220,0 +170745364274,217,0 +170745364324,218,0 +170745364371,220,0 +170745364419,223,0 +170745364467,224,0 +170745364515,227,0 +170745364563,229,0 +170745364611,229,0 +170745364659,232,0 +170745364707,231,0 +170745364755,237,0 +170745364803,234,0 +170745364851,217,0 +170745364899,216,0 +170745364948,216,0 +170745364998,215,0 +170745365047,216,0 +170745365095,217,0 +170745365143,218,0 +170745365191,218,0 +170745365239,219,0 +170745365287,220,0 +170745365335,222,0 +170745365383,222,0 +170745365433,227,0 +170745365482,228,0 +170745365532,230,0 +170745365581,231,0 +170745365629,234,0 +170745365679,235,0 +170745365728,238,0 +170745365778,237,0 +170745365827,237,0 +170745365875,239,0 +170745365923,224,0 +170745365973,216,0 +170745366021,215,0 +170745366070,215,0 +170745366120,215,0 +170745366169,215,0 +170745366219,215,0 +170745366268,215,0 +170745366318,215,0 +170745366366,216,0 +170745366414,217,0 +170745366462,217,0 +170745366511,218,0 +170745366559,219,0 +170745366607,222,0 +170745366655,224,0 +170745366703,226,0 +170745366753,227,0 +170745366802,229,0 +170745366852,232,0 +170745366901,232,0 +170745366951,235,0 +170745366999,238,0 +170745367047,228,0 +170745367095,218,0 +170745367143,216,0 +170745367191,216,0 +170745367239,216,0 +170745367288,216,0 +170745367336,215,0 +170745367386,216,0 +170745367435,216,0 +170745367483,217,0 +170745367531,218,0 +170745367581,219,0 +170745367628,219,0 +170745367676,222,0 +170745367726,224,0 +170745367775,226,0 +170745367825,228,0 +170745367873,230,0 +170745367922,231,0 +170745367972,234,0 +170745368020,234,0 +170745368068,233,0 +170745368116,238,0 +170745368164,236,0 +170745368212,217,0 +170745368260,215,0 +170745368308,215,0 +170745368356,215,0 +170745368404,215,0 +170745368452,215,0 +170745368500,215,0 +170745368548,216,0 +170745368597,216,0 +170745368645,217,0 +170745368693,217,0 +170745368741,218,0 +170745368790,220,0 +170745368838,222,0 +170745368888,225,0 +170745368936,227,0 +170745368984,230,0 +170745369033,231,0 +170745369081,233,0 +170745369129,234,0 +170745369177,233,0 +170745369225,238,0 +170745369273,237,0 +170745369322,219,0 +170745369370,216,0 +170745369420,216,0 +170745369468,216,0 +170745369516,216,0 +170745369564,215,0 +170745369612,216,0 +170745369660,216,0 +170745369709,217,0 +170745369757,218,0 +170745369807,218,0 +170745369856,220,0 +170745369906,220,0 +170745369953,223,0 +170745370001,225,0 +170745370049,228,0 +170745370098,230,0 +170745370147,231,0 +170745370197,232,0 +170745370245,235,0 +170745370294,236,0 +170745370344,237,0 +170745370392,238,0 +170745370440,218,0 +170745370488,215,0 +170745370536,215,0 +170745370584,215,0 +170745370633,215,0 +170745370681,215,0 +170745370729,215,0 +170745370777,215,0 +170745370825,215,0 +170745370873,215,0 +170745370921,215,0 +170745370969,215,0 +170745371018,216,0 +170745371066,217,0 +170745371114,218,0 +170745371164,220,0 +170745371212,223,0 +170745371261,225,0 +170745371311,229,0 +170745371360,231,0 +170745371410,230,0 +170745371458,238,0 +170745371506,237,0 +170745371555,218,0 +170745371605,215,0 +170745371653,215,0 +170745371701,215,0 +170745371750,215,0 +170745371800,215,0 +170745371848,215,0 +170745371897,216,0 +170745371947,217,0 +170745371997,217,0 +170745372044,218,0 +170745372092,219,0 +170745372140,221,0 +170745372188,223,0 +170745372236,225,0 +170745372284,228,0 +170745372333,229,0 +170745372381,230,0 +170745372429,234,0 +170745372477,233,0 +170745372525,235,0 +170745372573,237,0 +170745372621,238,0 +170745372670,219,0 +170745372718,215,0 +170745372766,215,0 +170745372814,215,0 +170745372862,215,0 +170745372910,215,0 +170745372958,216,0 +170745373007,216,0 +170745373055,217,0 +170745373103,218,0 +170745373151,219,0 +170745373199,220,0 +170745373247,221,0 +170745373295,224,0 +170745373342,227,0 +170745373392,228,0 +170745373440,229,0 +170745373488,232,0 +170745373536,233,0 +170745373584,235,0 +170745373632,236,0 +170745373681,238,0 +170745373729,239,0 +170745373777,220,0 +170745373825,215,0 +170745373873,215,0 +170745373922,215,0 +170745373972,215,0 +170745374020,215,0 +170745374069,215,0 +170745374117,215,0 +170745374165,215,0 +170745374213,215,0 +170745374261,215,0 +170745374309,215,0 +170745374357,216,0 +170745374406,217,0 +170745374454,217,0 +170745374504,220,0 +170745374552,222,0 +170745374601,225,0 +170745374649,226,0 +170745374697,228,0 +170745374746,229,0 +170745374796,236,0 +170745374844,238,0 +170745374892,219,0 +170745374940,216,0 +170745374989,216,0 +170745375037,215,0 +170745375085,216,0 +170745375133,217,0 +170745375183,217,0 +170745375231,218,0 +170745375280,218,0 +170745375330,219,0 +170745375379,219,0 +170745375429,220,0 +170745375478,222,0 +170745375526,222,0 +170745375576,225,0 +170745375625,227,0 +170745375675,229,0 +170745375723,230,0 +170745375771,233,0 +170745375819,234,0 +170745375867,235,0 +170745375916,238,0 +170745375966,239,0 +170745376014,219,0 +170745376061,216,0 +170745376109,215,0 +170745376157,215,0 +170745376207,215,0 +170745376255,215,0 +170745376303,215,0 +170745376350,215,0 +170745376398,215,0 +170745376446,215,0 +170745376494,215,0 +170745376542,215,0 +170745376590,216,0 +170745376638,216,0 +170745376686,217,0 +170745376734,218,0 +170745376781,221,0 +170745376829,222,0 +170745376877,224,0 +170745376925,226,0 +170745376975,227,0 +170745377022,234,0 +170745377070,238,0 +170745377118,230,0 +170745377166,216,0 +170745377214,215,0 +170745377262,215,0 +170745377310,215,0 +170745377358,215,0 +170745377406,215,0 +170745377454,216,0 +170745377502,217,0 +170745377550,217,0 +170745377599,218,0 +170745377647,219,0 +170745377697,220,0 +170745377745,221,0 +170745377794,223,0 +170745377842,226,0 +170745377890,229,0 +170745377938,238,0 +170745377986,232,0 +170745378035,234,0 +170745378085,234,0 +170745378135,234,0 +170745378183,239,0 +170745378232,234,0 +170745378280,216,0 +170745378330,215,0 +170745378378,215,0 +170745378426,215,0 +170745378475,215,0 +170745378523,215,0 +170745378571,215,0 +170745378619,215,0 +170745378667,216,0 +170745378715,216,0 +170745378764,217,0 +170745378812,218,0 +170745378860,218,0 +170745378908,220,0 +170745378956,222,0 +170745379003,224,0 +170745379051,226,0 +170745379099,228,0 +170745379149,231,0 +170745379196,232,0 +170745379244,233,0 +170745379292,237,0 +170745379340,238,0 +170745379388,219,0 +170745379436,215,0 +170745379484,215,0 +170745379532,215,0 +170745379580,215,0 +170745379628,216,0 +170745379676,217,0 +170745379723,217,0 +170745379771,218,0 +170745379819,219,0 +170745379867,219,0 +170745379915,219,0 +170745379963,221,0 +170745380011,223,0 +170745380059,225,0 +170745380107,227,0 +170745380154,228,0 +170745380204,229,0 +170745380252,232,0 +170745380300,234,0 +170745380348,235,0 +170745380397,237,0 +170745380445,238,0 +170745380495,220,0 +170745380544,215,0 +170745380594,215,0 +170745380643,215,0 +170745380691,215,0 +170745380739,215,0 +170745380787,215,0 +170745380837,215,0 +170745380886,215,0 +170745380934,215,0 +170745380984,216,0 +170745381032,216,0 +170745381080,217,0 +170745381129,217,0 +170745381179,220,0 +170745381228,222,0 +170745381276,224,0 +170745381324,226,0 +170745381372,228,0 +170745381420,231,0 +170745381468,233,0 +170745381518,235,0 +170745381565,237,0 +170745381613,220,0 +170745381663,216,0 +170745381712,216,0 +170745381760,216,0 +170745381810,217,0 +170745381858,218,0 +170745381906,219,0 +170745381954,219,0 +170745382002,219,0 +170745382050,225,0 +170745382098,221,0 +170745382147,222,0 +170745382197,225,0 +170745382245,227,0 +170745382294,228,0 +170745382342,233,0 +170745382392,234,0 +170745382441,235,0 +170745382489,235,0 +170745382537,238,0 +170745382587,238,0 +170745382636,238,0 +170745382684,237,0 +170745382734,220,0 +170745382782,216,0 +170745382831,217,0 +170745382881,217,0 +170745382929,218,0 +170745382977,218,0 +170745383026,219,0 +170745383074,220,0 +170745383124,222,0 +170745383173,222,0 +170745383221,223,0 +170745383269,225,0 +170745383317,228,0 +170745383367,230,0 +170745383416,231,0 +170745383464,233,0 +170745383512,234,0 +170745383560,234,0 +170745383608,237,0 +170745383656,238,0 +170745383704,238,0 +170745383754,237,0 +170745383801,238,0 +170745383849,220,0 +170745383897,216,0 +170745383947,216,0 +170745383996,217,0 +170745384044,217,0 +170745384094,218,0 +170745384143,218,0 +170745384193,219,0 +170745384242,221,0 +170745384292,228,0 +170745384340,227,0 +170745384390,225,0 +170745384438,227,0 +170745384485,229,0 +170745384533,231,0 +170745384581,235,0 +170745384631,236,0 +170745384679,237,0 +170745384728,240,0 +170745384776,241,0 +170745384824,241,0 +170745384872,239,0 +170745384920,240,0 +170745384968,222,0 +170745385018,215,0 +170745385066,216,0 +170745385114,217,0 +170745385161,217,0 +170745385209,218,0 +170745385257,219,0 +170745385305,222,0 +170745385353,220,0 +170745385401,221,0 +170745385449,224,0 +170745385497,226,0 +170745385547,227,0 +170745385596,229,0 +170745385644,234,0 +170745385694,232,0 +170745385743,236,0 +170745385791,237,0 +170745385839,236,0 +170745385889,239,0 +170745385938,243,0 +170745385986,239,0 +170745386034,239,0 +170745386084,220,0 +170745386132,224,0 +170745386180,222,0 +170745386228,221,0 +170745386277,219,0 +170745386325,215,0 +170745386375,216,0 +170745386423,216,0 +170745386472,217,0 +170745386520,217,0 +170745386568,218,0 +170745386616,219,0 +170745386665,220,0 +170745386713,222,0 +170745386761,225,0 +170745386811,228,0 +170745386860,230,0 +170745386908,235,0 +170745386956,235,0 +170745387004,236,0 +170745387052,236,0 +170745387100,235,0 +170745387150,239,0 +170745387199,221,0 +170745387247,216,0 +170745387295,215,0 +170745387343,215,0 +170745387391,215,0 +170745387439,216,0 +170745387487,217,0 +170745387535,217,0 +170745387585,218,0 +170745387634,218,0 +170745387682,219,0 +170745387730,221,0 +170745387778,221,0 +170745387826,223,0 +170745387874,226,0 +170745387922,229,0 +170745387970,230,0 +170745388019,231,0 +170745388067,233,0 +170745388115,234,0 +170745388163,237,0 +170745388213,236,0 +170745388262,238,0 +170745388312,235,0 +170745388361,217,0 +170745388409,215,0 +170745388457,216,0 +170745388505,216,0 +170745388553,216,0 +170745388603,217,0 +170745388652,218,0 +170745388700,219,0 +170745388748,219,0 +170745388797,220,0 +170745388847,221,0 +170745388896,224,0 +170745388944,227,0 +170745388992,227,0 +170745389040,230,0 +170745389088,247,0 +170745389136,235,0 +170745389184,236,0 +170745389232,237,0 +170745389280,238,0 +170745389329,238,0 +170745389377,239,0 +170745389425,240,0 +170745389473,218,0 +170745389522,216,0 +170745389570,215,0 +170745389620,215,0 +170745389668,215,0 +170745389717,216,0 +170745389765,216,0 +170745389815,216,0 +170745389864,217,0 +170745389912,218,0 +170745389960,219,0 +170745390008,219,0 +170745390056,219,0 +170745390104,221,0 +170745390152,222,0 +170745390200,226,0 +170745390250,228,0 +170745390299,230,0 +170745390349,232,0 +170745390398,232,0 +170745390448,234,0 +170745390496,237,0 +170745390545,240,0 +170745390593,219,0 +170745390641,215,0 +170745390691,215,0 +170745390740,215,0 +170745390788,215,0 +170745390836,215,0 +170745390884,215,0 +170745390933,215,0 +170745390983,215,0 +170745391031,215,0 +170745391079,215,0 +170745391127,216,0 +170745391176,217,0 +170745391226,218,0 +170745391274,218,0 +170745391323,219,0 +170745391373,222,0 +170745391422,225,0 +170745391470,226,0 +170745391518,231,0 +170745391566,232,0 +170745391614,238,0 +170745391662,237,0 +170745391710,220,0 +170745391760,217,0 +170745391808,216,0 +170745391856,217,0 +170745391904,218,0 +170745391953,219,0 +170745392001,219,0 +170745392051,220,0 +170745392099,221,0 +170745392146,221,0 +170745392194,221,0 +170745392244,223,0 +170745392292,226,0 +170745392340,228,0 +170745392387,231,0 +170745392436,231,0 +170745392483,233,0 +170745392531,236,0 +170745392581,234,0 +170745392630,236,0 +170745392678,238,0 +170745392728,237,0 +170745392777,239,0 +170745392825,219,0 +170745392875,215,0 +170745392924,215,0 +170745392973,215,0 +170745393023,215,0 +170745393071,216,0 +170745393119,216,0 +170745393166,217,0 +170745393214,220,0 +170745393262,218,0 +170745393310,219,0 +170745393358,222,0 +170745393406,224,0 +170745393454,226,0 +170745393503,226,0 +170745393551,231,0 +170745393599,232,0 +170745393647,233,0 +170745393695,235,0 +170745393745,236,0 +170745393793,237,0 +170745393842,237,0 +170745393890,237,0 +170745393938,220,0 +170745393986,215,0 +170745394034,215,0 +170745394082,215,0 +170745394131,215,0 +170745394179,215,0 +170745394227,215,0 +170745394275,215,0 +170745394323,217,0 +170745394372,218,0 +170745394420,218,0 +170745394468,218,0 +170745394518,221,0 +170745394566,224,0 +170745394615,226,0 +170745394663,227,0 +170745394713,229,0 +170745394762,234,0 +170745394810,233,0 +170745394858,234,0 +170745394906,236,0 +170745394954,238,0 +170745395004,238,0 +170745395052,220,0 +170745395100,216,0 +170745395148,216,0 +170745395196,217,0 +170745395244,218,0 +170745395293,219,0 +170745395343,220,0 +170745395392,220,0 +170745395440,220,0 +170745395488,224,0 +170745395538,225,0 +170745395586,229,0 +170745395634,229,0 +170745395682,231,0 +170745395731,234,0 +170745395781,235,0 +170745395829,236,0 +170745395878,238,0 +170745395928,237,0 +170745395977,238,0 +170745396027,238,0 +170745396076,240,0 +170745396124,239,0 +170745396174,220,0 +170745396222,215,0 +170745396271,216,0 +170745396321,217,0 +170745396369,218,0 +170745396417,219,0 +170745396466,219,0 +170745396514,219,0 +170745396562,221,0 +170745396611,224,0 +170745396659,226,0 +170745396707,227,0 +170745396757,229,0 +170745396806,230,0 +170745396856,232,0 +170745396904,234,0 +170745396953,236,0 +170745397001,236,0 +170745397051,238,0 +170745397099,238,0 +170745397147,237,0 +170745397195,252,0 +170745397243,239,0 +170745397291,221,0 +170745397340,215,0 +170745397388,215,0 +170745397438,215,0 +170745397487,214,0 +170745397537,215,0 +170745397586,216,0 +170745397634,217,0 +170745397682,217,0 +170745397730,218,0 +170745397778,220,0 +170745397826,222,0 +170745397874,224,0 +170745397922,228,0 +170745397970,230,0 +170745398020,233,0 +170745398068,232,0 +170745398117,234,0 +170745398165,236,0 +170745398213,235,0 +170745398261,237,0 +170745398310,239,0 +170745398358,238,0 +170745398408,220,0 +170745398456,215,0 +170745398505,215,0 +170745398553,215,0 +170745398603,215,0 +170745398651,215,0 +170745398699,216,0 +170745398747,217,0 +170745398795,218,0 +170745398843,219,0 +170745398891,240,0 +170745398938,221,0 +170745398986,225,0 +170745399034,227,0 +170745399084,229,0 +170745399133,230,0 +170745399181,231,0 +170745399229,234,0 +170745399279,235,0 +170745399327,236,0 +170745399375,237,0 +170745399423,237,0 +170745399471,239,0 +170745399519,232,0 +170745399567,216,0 +170745399616,215,0 +170745399664,215,0 +170745399714,215,0 +170745399762,215,0 +170745399811,215,0 +170745399859,215,0 +170745399907,215,0 +170745399957,216,0 +170745400005,217,0 +170745400053,217,0 +170745400101,218,0 +170745400149,221,0 +170745400198,224,0 +170745400246,225,0 +170745400294,227,0 +170745400343,230,0 +170745400393,232,0 +170745400441,232,0 +170745400489,234,0 +170745400538,236,0 +170745400588,236,0 +170745400637,220,0 +170745400685,215,0 +170745400733,215,0 +170745400783,215,0 +170745400831,215,0 +170745400880,215,0 +170745400928,215,0 +170745400978,215,0 +170745401026,215,0 +170745401074,215,0 +170745401122,216,0 +170745401170,217,0 +170745401219,217,0 +170745401267,218,0 +170745401315,221,0 +170745401363,224,0 +170745401411,226,0 +170745401459,227,0 +170745401508,229,0 +170745401556,234,0 +170745401604,234,0 +170745401652,233,0 +170745401702,237,0 +170745401751,237,0 +170745401799,217,0 +170745401849,216,0 +170745401897,215,0 +170745401945,215,0 +170745401994,216,0 +170745402044,216,0 +170745402092,217,0 +170745402141,218,0 +170745402189,218,0 +170745402239,219,0 +170745402288,220,0 +170745402336,222,0 +170745402384,225,0 +170745402432,227,0 +170745402480,229,0 +170745402528,230,0 +170745402576,232,0 +170745402625,234,0 +170745402673,235,0 +170745402721,236,0 +170745402770,231,0 +170745402818,238,0 +170745402866,234,0 +170745402914,217,0 +170745402962,215,0 +170745403010,215,0 +170745403058,215,0 +170745403106,215,0 +170745403154,215,0 +170745403204,215,0 +170745403252,215,0 +170745403301,216,0 +170745403351,217,0 +170745403399,217,0 +170745403447,218,0 +170745403495,218,0 +170745403542,221,0 +170745403592,224,0 +170745403640,226,0 +170745403690,230,0 +170745403738,230,0 +170745403786,231,0 +170745403834,254,0 +170745403883,234,0 +170745403931,237,0 +170745403979,237,0 +170745404028,218,0 +170745404076,215,0 +170745404124,215,0 +170745404174,215,0 +170745404223,215,0 +170745404273,215,0 +170745404322,216,0 +170745404372,216,0 +170745404420,217,0 +170745404469,217,0 +170745404517,219,0 +170745404567,220,0 +170745404615,223,0 +170745404663,225,0 +170745404712,228,0 +170745404760,231,0 +170745404810,230,0 +170745404859,231,0 +170745404907,238,0 +170745404957,234,0 +170745405005,234,0 +170745405053,239,0 +170745405103,238,0 +170745405152,217,0 +170745405200,215,0 +170745405249,215,0 +170745405297,215,0 +170745405345,215,0 +170745405394,215,0 +170745405442,216,0 +170745405490,217,0 +170745405540,217,0 +170745405588,218,0 +170745405635,218,0 +170745405685,219,0 +170745405733,221,0 +170745405781,222,0 +170745405829,226,0 +170745405877,228,0 +170745405925,229,0 +170745405973,231,0 +170745406022,234,0 +170745406070,236,0 +170745406118,236,0 +170745406166,239,0 +170745406216,237,0 +170745406265,219,0 +170745406315,215,0 +170745406363,215,0 +170745406411,215,0 +170745406460,215,0 +170745406508,215,0 +170745406558,215,0 +170745406606,215,0 +170745406655,216,0 +170745406705,217,0 +170745406754,218,0 +170745406804,219,0 +170745406852,220,0 +170745406900,222,0 +170745406949,225,0 +170745406997,228,0 +170745407047,230,0 +170745407095,231,0 +170745407144,232,0 +170745407192,234,0 +170745407240,235,0 +170745407288,238,0 +170745407338,237,0 +170745407387,218,0 +170745407437,215,0 +170745407485,215,0 +170745407534,215,0 +170745407582,215,0 +170745407630,215,0 +170745407678,215,0 +170745407726,216,0 +170745407774,216,0 +170745407823,218,0 +170745407871,218,0 +170745407919,219,0 +170745407967,221,0 +170745408015,224,0 +170745408063,227,0 +170745408111,228,0 +170745408159,231,0 +170745408209,232,0 +170745408258,235,0 +170745408306,235,0 +170745408356,236,0 +170745408405,238,0 +170745408453,238,0 +170745408501,219,0 +170745408551,216,0 +170745408599,215,0 +170745408647,215,0 +170745408695,215,0 +170745408743,215,0 +170745408791,215,0 +170745408840,216,0 +170745408888,216,0 +170745408938,216,0 +170745408987,218,0 +170745409035,218,0 +170745409085,219,0 +170745409134,221,0 +170745409184,224,0 +170745409233,226,0 +170745409283,229,0 +170745409331,232,0 +170745409380,233,0 +170745409428,232,0 +170745409476,233,0 +170745409524,238,0 +170745409572,240,0 +170745409619,220,0 +170745409667,216,0 +170745409715,216,0 +170745409763,216,0 +170745409811,215,0 +170745409859,215,0 +170745409907,216,0 +170745409955,216,0 +170745410003,216,0 +170745410053,216,0 +170745410102,218,0 +170745410152,218,0 +170745410200,219,0 +170745410248,221,0 +170745410295,224,0 +170745410343,226,0 +170745410391,229,0 +170745410439,231,0 +170745410487,230,0 +170745410535,235,0 +170745410583,235,0 +170745410632,238,0 +170745410682,239,0 +170745410730,239,0 +170745410778,244,0 +170745410831,236,0 +170745410883,239,0 +170745410941,237,0 +170745410994,240,0 +170745411056,225,0 +170745411106,215,0 +170745411155,216,0 +170745411203,216,0 +170745411251,219,0 +170745411313,219,0 +170745411361,221,0 +170745411411,225,0 +170745411459,226,0 +170745411507,228,0 +170745411555,229,0 +170745411602,231,0 +170745411650,233,0 +170745411698,234,0 +170745411746,236,0 +170745411796,239,0 +170745411843,220,0 +170745411893,215,0 +170745411941,215,0 +170745411988,215,0 +170745412036,215,0 +170745412084,215,0 +170745412132,215,0 +170745412182,215,0 +170745412231,215,0 +170745412279,216,0 +170745412327,217,0 +170745412375,217,0 +170745412423,218,0 +170745412473,219,0 +170745412522,221,0 +170745412570,223,0 +170745412620,227,0 +170745412668,228,0 +170745412717,229,0 +170745412765,230,0 +170745412815,232,0 +170745412864,237,0 +170745412912,237,0 +170745412962,220,0 +170745413010,215,0 +170745413058,215,0 +170745413107,215,0 +170745413157,215,0 +170745413206,215,0 +170745413254,215,0 +170745413302,215,0 +170745413352,216,0 +170745413401,216,0 +170745413449,217,0 +170745413499,218,0 +170745413549,219,0 +170745413598,221,0 +170745413647,224,0 +170745413695,226,0 +170745413745,230,0 +170745413793,230,0 +170745413842,232,0 +170745413890,234,0 +170745413940,236,0 +170745413988,237,0 +170745414037,237,0 +170745414085,220,0 +170745414133,215,0 +170745414181,215,0 +170745414229,215,0 +170745414279,215,0 +170745414328,215,0 +170745414376,216,0 +170745414424,216,0 +170745414474,216,0 +170745414522,218,0 +170745414570,218,0 +170745414619,218,0 +170745414669,221,0 +170745414718,224,0 +170745414768,226,0 +170745414817,228,0 +170745414867,230,0 +170745414915,230,0 +170745414963,232,0 +170745415011,235,0 +170745415060,235,0 +170745415108,237,0 +170745415158,237,0 +170745415207,220,0 +170745415255,215,0 +170745415303,215,0 +170745415353,215,0 +170745415401,215,0 +170745415449,216,0 +170745415498,217,0 +170745415548,219,0 +170745415597,218,0 +170745415647,219,0 +170745415695,220,0 +170745415743,221,0 +170745415792,223,0 +170745415842,225,0 +170745415891,228,0 +170745415939,231,0 +170745415987,233,0 +170745416035,233,0 +170745416085,239,0 +170745416132,237,0 +170745416182,237,0 +170745416232,238,0 +170745416281,237,0 +170745416331,219,0 +170745416380,215,0 +170745416428,215,0 +170745416478,215,0 +170745416527,215,0 +170745416575,215,0 +170745416623,215,0 +170745416673,215,0 +170745416722,215,0 +170745416772,214,0 +170745416821,215,0 +170745416869,215,0 +170745416917,215,0 +170745416967,216,0 +170745417016,217,0 +170745417064,218,0 +170745417112,221,0 +170745417160,223,0 +170745417208,226,0 +170745417256,227,0 +170745417306,229,0 +170745417354,237,0 +170745417402,237,0 +170745417449,221,0 +170745417497,218,0 +170745417545,218,0 +170745417593,218,0 +170745417643,220,0 +170745417691,220,0 +170745417740,221,0 +170745417788,221,0 +170745417837,222,0 +170745417887,223,0 +170745417935,225,0 +170745417985,227,0 +170745418032,230,0 +170745418080,232,0 +170745418128,234,0 +170745418178,235,0 +170745418227,235,0 +170745418277,236,0 +170745418325,237,0 +170745418373,238,0 +170745418421,237,0 +170745418469,240,0 +170745418517,237,0 +170745418566,219,0 +170745418614,215,0 +170745418662,215,0 +170745418710,216,0 +170745418760,217,0 +170745418809,217,0 +170745418857,218,0 +170745418905,218,0 +170745418955,219,0 +170745419004,221,0 +170745419052,222,0 +170745419102,225,0 +170745419151,227,0 +170745419201,228,0 +170745419250,232,0 +170745419298,244,0 +170745419348,233,0 +170745419396,236,0 +170745419444,236,0 +170745419491,239,0 +170745419539,240,0 +170745419589,238,0 +170745419637,237,0 +170745419685,220,0 +170745419733,215,0 +170745419780,215,0 +170745419828,216,0 +170745419876,217,0 +170745419924,217,0 +170745419972,218,0 +170745420021,218,0 +170745420069,219,0 +170745420117,219,0 +170745420165,221,0 +170745420214,223,0 +170745420262,225,0 +170745420310,228,0 +170745420358,230,0 +170745420408,232,0 +170745420457,234,0 +170745420507,235,0 +170745420556,236,0 +170745420604,237,0 +170745420654,238,0 +170745420702,239,0 +170745420750,238,0 +170745420798,221,0 +170745420847,215,0 +170745420895,216,0 +170745420943,217,0 +170745420991,217,0 +170745421039,218,0 +170745421089,218,0 +170745421138,219,0 +170745421186,220,0 +170745421234,222,0 +170745421282,224,0 +170745421330,226,0 +170745421378,228,0 +170745421426,230,0 +170745421473,232,0 +170745421521,233,0 +170745421569,235,0 +170745421619,235,0 +170745421667,235,0 +170745421715,237,0 +170745421762,238,0 +170745421810,237,0 +170745421858,239,0 +170745421908,219,0 +170745421956,216,0 +170745422003,215,0 +170745422053,215,0 +170745422101,215,0 +170745422149,215,0 +170745422197,216,0 +170745422245,217,0 +170745422293,217,0 +170745422341,218,0 +170745422390,218,0 +170745422438,219,0 +170745422486,222,0 +170745422534,225,0 +170745422582,228,0 +170745422630,227,0 +170745422679,229,0 +170745422727,233,0 +170745422775,234,0 +170745422825,236,0 +170745422874,236,0 +170745422924,233,0 +170745422972,239,0 +170745423021,236,0 +170745423069,217,0 +170745423119,215,0 +170745423168,215,0 +170745423218,215,0 +170745423267,216,0 +170745423315,216,0 +170745423363,217,0 +170745423413,218,0 +170745423461,219,0 +170745423509,219,0 +170745423558,220,0 +170745423606,222,0 +170745423654,223,0 +170745423704,227,0 +170745423753,229,0 +170745423801,230,0 +170745423851,233,0 +170745423900,233,0 +170745423948,234,0 +170745423996,237,0 +170745424044,238,0 +170745424092,237,0 +170745424140,220,0 +170745424188,216,0 +170745424236,215,0 +170745424284,215,0 +170745424334,215,0 +170745424383,215,0 +170745424431,215,0 +170745424481,215,0 +170745424530,216,0 +170745424580,216,0 +170745424629,217,0 +170745424679,218,0 +170745424728,219,0 +170745424776,221,0 +170745424824,223,0 +170745424872,226,0 +170745424920,227,0 +170745424968,228,0 +170745425016,230,0 +170745425064,233,0 +170745425112,235,0 +170745425159,236,0 +170745425209,237,0 +170745425257,221,0 +170745425305,216,0 +170745425353,215,0 +170745425400,215,0 +170745425448,215,0 +170745425498,215,0 +170745425546,216,0 +170745425593,216,0 +170745425641,217,0 +170745425689,218,0 +170745425737,218,0 +170745425785,219,0 +170745425833,220,0 +170745425881,222,0 +170745425929,225,0 +170745425977,227,0 +170745426025,228,0 +170745426074,231,0 +170745426124,232,0 +170745426172,235,0 +170745426222,234,0 +170745426270,235,0 +170745426319,237,0 +170745426367,238,0 +170745426415,218,0 +170745426463,215,0 +170745426510,215,0 +170745426558,215,0 +170745426606,215,0 +170745426654,215,0 +170745426702,215,0 +170745426751,215,0 +170745426799,215,0 +170745426847,216,0 +170745426895,217,0 +170745426944,218,0 +170745426992,219,0 +170745427040,221,0 +170745427089,225,0 +170745427139,226,0 +170745427187,228,0 +170745427235,230,0 +170745427283,231,0 +170745427330,233,0 +170745427378,234,0 +170745427426,236,0 +170745427474,238,0 +170745427522,220,0 +170745427570,215,0 +170745427618,215,0 +170745427665,215,0 +170745427713,214,0 +170745427761,215,0 +170745427811,215,0 +170745427859,215,0 +170745427908,215,0 +170745427956,215,0 +170745428004,216,0 +170745428052,216,0 +170745428100,217,0 +170745428148,218,0 +170745428197,220,0 +170745428245,223,0 +170745428293,225,0 +170745428341,227,0 +170745428389,230,0 +170745428437,231,0 +170745428485,233,0 +170745428533,237,0 +170745428581,239,0 +170745428630,220,0 +170745428680,215,0 +170745428729,215,0 +170745428777,215,0 +170745428825,215,0 +170745428873,215,0 +170745428922,216,0 +170745428972,217,0 +170745429020,218,0 +170745429070,218,0 +170745429119,219,0 +170745429169,220,0 +170745429218,222,0 +170745429266,224,0 +170745429316,227,0 +170745429364,228,0 +170745429412,229,0 +170745429459,232,0 +170745429507,232,0 +170745429555,235,0 +170745429603,235,0 +170745429653,238,0 +170745429701,238,0 +170745429750,219,0 +170745429798,215,0 +170745429847,215,0 +170745429895,215,0 +170745429943,215,0 +170745429993,215,0 +170745430041,215,0 +170745430089,216,0 +170745430138,216,0 +170745430186,217,0 +170745430234,218,0 +170745430282,224,0 +170745430331,219,0 +170745430381,221,0 +170745430429,225,0 +170745430477,225,0 +170745430525,228,0 +170745430574,231,0 +170745430622,232,0 +170745430670,232,0 +170745430720,234,0 +170745430768,237,0 +170745430816,241,0 +170745430864,228,0 +170745430912,217,0 +170745430960,215,0 +170745431008,215,0 +170745431057,215,0 +170745431107,215,0 +170745431155,215,0 +170745431203,215,0 +170745431250,216,0 +170745431298,217,0 +170745431346,217,0 +170745431396,218,0 +170745431444,219,0 +170745431492,221,0 +170745431541,224,0 +170745431589,226,0 +170745431639,227,0 +170745431688,229,0 +170745431736,232,0 +170745431784,233,0 +170745431832,233,0 +170745431880,236,0 +170745431930,239,0 +170745431979,219,0 +170745432027,215,0 +170745432075,215,0 +170745432125,215,0 +170745432173,215,0 +170745432222,216,0 +170745432272,217,0 +170745432321,218,0 +170745432369,218,0 +170745432417,219,0 +170745432467,220,0 +170745432515,222,0 +170745432564,223,0 +170745432612,224,0 +170745432662,227,0 +170745432709,230,0 +170745432759,231,0 +170745432809,233,0 +170745432857,233,0 +170745432906,235,0 +170745432956,235,0 +170745433004,236,0 +170745433053,238,0 +170745433101,219,0 +170745433149,216,0 +170745433199,215,0 +170745433247,216,0 +170745433296,215,0 +170745433344,215,0 +170745433392,215,0 +170745433441,215,0 +170745433489,215,0 +170745433539,215,0 +170745433589,216,0 +170745433636,215,0 +170745433686,215,0 +170745433735,216,0 +170745433785,217,0 +170745433833,219,0 +170745433881,220,0 +170745433929,223,0 +170745433977,225,0 +170745434027,227,0 +170745434075,230,0 +170745434123,231,0 +170745434170,238,0 +170745434220,222,0 +170745434268,217,0 +170745434316,216,0 +170745434364,216,0 +170745434413,216,0 +170745434463,215,0 +170745434511,216,0 +170745434559,217,0 +170745434608,217,0 +170745434658,218,0 +170745434706,219,0 +170745434755,219,0 +170745434805,221,0 +170745434853,222,0 +170745434901,224,0 +170745434950,226,0 +170745434998,228,0 +170745435048,231,0 +170745435097,234,0 +170745435147,233,0 +170745435195,236,0 +170745435243,238,0 +170745435292,238,0 +170745435342,219,0 +170745435391,215,0 +170745435439,215,0 +170745435487,215,0 +170745435535,215,0 +170745435583,215,0 +170745435631,215,0 +170745435679,216,0 +170745435727,217,0 +170745435775,217,0 +170745435823,218,0 +170745435871,219,0 +170745435921,220,0 +170745435970,221,0 +170745436018,224,0 +170745436068,226,0 +170745436117,230,0 +170745436167,231,0 +170745436215,232,0 +170745436264,232,0 +170745436312,235,0 +170745436360,235,0 +170745436408,238,0 +170745436456,222,0 +170745436506,215,0 +170745436554,215,0 +170745436602,215,0 +170745436651,215,0 +170745436699,215,0 +170745436747,215,0 +170745436795,216,0 +170745436843,217,0 +170745436893,217,0 +170745436941,218,0 +170745436989,219,0 +170745437038,219,0 +170745437088,221,0 +170745437137,223,0 +170745437185,232,0 +170745437233,231,0 +170745437281,229,0 +170745437329,232,0 +170745437377,233,0 +170745437426,234,0 +170745437474,237,0 +170745437524,238,0 +170745437572,238,0 +170745437621,217,0 +170745437671,215,0 +170745437719,215,0 +170745437767,215,0 +170745437816,215,0 +170745437864,215,0 +170745437914,215,0 +170745437963,215,0 +170745438013,216,0 +170745438062,216,0 +170745438110,218,0 +170745438158,218,0 +170745438208,220,0 +170745438257,222,0 +170745438305,227,0 +170745438353,227,0 +170745438401,228,0 +170745438449,231,0 +170745438499,233,0 +170745438548,231,0 +170745438598,234,0 +170745438646,240,0 +170745438694,237,0 +170745438742,218,0 +170745438791,215,0 +170745438841,215,0 +170745438890,215,0 +170745438938,215,0 +170745438988,215,0 +170745439036,215,0 +170745439084,215,0 +170745439131,216,0 +170745439179,217,0 +170745439227,217,0 +170745439275,218,0 +170745439323,218,0 +170745439371,225,0 +170745439419,225,0 +170745439467,227,0 +170745439515,231,0 +170745439562,231,0 +170745439610,231,0 +170745439658,234,0 +170745439706,237,0 +170745439754,237,0 +170745439802,239,0 +170745439850,217,0 +170745439898,215,0 +170745439946,215,0 +170745439993,215,0 +170745440043,215,0 +170745440092,215,0 +170745440140,214,0 +170745440188,215,0 +170745440236,216,0 +170745440284,216,0 +170745440333,217,0 +170745440381,218,0 +170745440429,219,0 +170745440477,221,0 +170745440525,222,0 +170745440573,224,0 +170745440621,226,0 +170745440669,229,0 +170745440717,230,0 +170745440764,232,0 +170745440812,234,0 +170745440860,238,0 +170745440908,238,0 +170745440956,220,0 +170745441004,215,0 +170745441052,215,0 +170745441102,215,0 +170745441151,215,0 +170745441199,215,0 +170745441247,215,0 +170745441296,215,0 +170745441344,216,0 +170745441392,216,0 +170745441440,217,0 +170745441490,218,0 +170745441538,219,0 +170745441587,226,0 +170745441635,223,0 +170745441685,227,0 +170745441733,228,0 +170745441781,231,0 +170745441830,233,0 +170745441880,233,0 +170745441928,236,0 +170745441977,239,0 +170745442027,238,0 +170745442075,220,0 +170745442123,216,0 +170745442172,215,0 +170745442220,215,0 +170745442268,215,0 +170745442316,215,0 +170745442364,215,0 +170745442413,215,0 +170745442461,215,0 +170745442511,215,0 +170745442559,215,0 +170745442608,215,0 +170745442656,216,0 +170745442706,217,0 +170745442754,218,0 +170745442803,220,0 +170745442851,222,0 +170745442899,225,0 +170745442947,227,0 +170745442995,229,0 +170745443043,231,0 +170745443091,238,0 +170745443138,238,0 +170745443186,221,0 +170745443236,215,0 +170745443284,215,0 +170745443332,215,0 +170745443380,215,0 +170745443427,214,0 +170745443475,215,0 +170745443523,215,0 +170745443573,215,0 +170745443620,216,0 +170745443668,217,0 +170745443716,218,0 +170745443766,219,0 +170745443815,220,0 +170745443865,221,0 +170745443913,224,0 +170745443961,227,0 +170745444010,229,0 +170745444058,229,0 +170745444106,233,0 +170745444154,234,0 +170745444204,237,0 +170745444253,239,0 +170745444301,219,0 +170745444349,215,0 +170745444397,215,0 +170745444445,215,0 +170745444493,216,0 +170745444541,217,0 +170745444589,217,0 +170745444639,217,0 +170745444687,218,0 +170745444736,219,0 +170745444786,219,0 +170745444834,221,0 +170745444883,222,0 +170745444931,225,0 +170745444979,227,0 +170745445027,231,0 +170745445075,231,0 +170745445123,233,0 +170745445171,233,0 +170745445220,235,0 +170745445270,237,0 +170745445319,234,0 +170745445367,239,0 +170745445416,236,0 +170745445464,217,0 +170745445512,215,0 +170745445562,215,0 +170745445611,216,0 +170745445659,216,0 +170745445707,217,0 +170745445755,217,0 +170745445803,218,0 +170745445851,219,0 +170745445899,220,0 +170745445948,221,0 +170745445996,223,0 +170745446046,226,0 +170745446095,228,0 +170745446145,228,0 +170745446193,230,0 +170745446242,233,0 +170745446290,235,0 +170745446340,248,0 +170745446390,238,0 +170745446437,238,0 +170745446485,238,0 +170745446533,238,0 +170745446581,218,0 +170745446629,215,0 +170745446677,215,0 +170745446725,216,0 +170745446773,217,0 +170745446821,217,0 +170745446869,217,0 +170745446917,219,0 +170745446965,219,0 +170745447014,219,0 +170745447064,222,0 +170745447112,224,0 +170745447160,227,0 +170745447209,229,0 +170745447257,231,0 +170745447305,232,0 +170745447353,234,0 +170745447401,235,0 +170745447450,236,0 +170745447498,237,0 +170745447546,240,0 +170745447594,240,0 +170745447642,238,0 +170745447690,218,0 +170745447738,216,0 +170745447786,216,0 +170745447836,217,0 +170745447884,217,0 +170745447933,218,0 +170745447983,218,0 +170745448032,220,0 +170745448080,220,0 +170745448130,220,0 +170745448178,221,0 +170745448227,224,0 +170745448275,227,0 +170745448323,229,0 +170745448373,230,0 +170745448422,233,0 +170745448470,237,0 +170745448518,232,0 +170745448568,240,0 +170745448617,238,0 +170745448665,239,0 +170745448713,239,0 +170745448761,241,0 +170745448809,219,0 +170745448859,215,0 +170745448908,216,0 +170745448958,216,0 +170745449006,217,0 +170745449054,217,0 +170745449102,217,0 +170745449150,218,0 +170745449198,219,0 +170745449247,220,0 +170745449295,220,0 +170745449343,223,0 +170745449391,226,0 +170745449439,228,0 +170745449487,231,0 +170745449536,234,0 +170745449584,234,0 +170745449632,234,0 +170745449680,236,0 +170745449728,239,0 +170745449776,240,0 +170745449826,238,0 +170745449875,239,0 +170745449923,219,0 +170745449971,216,0 +170745450021,216,0 +170745450070,216,0 +170745450118,217,0 +170745450166,217,0 +170745450214,218,0 +170745450262,217,0 +170745450312,219,0 +170745450360,219,0 +170745450409,220,0 +170745450459,221,0 +170745450507,223,0 +170745450555,224,0 +170745450603,227,0 +170745450652,228,0 +170745450702,232,0 +170745450750,233,0 +170745450799,235,0 +170745450849,237,0 +170745450898,237,0 +170745450946,239,0 +170745450996,241,0 +170745451045,219,0 +170745451095,216,0 +170745451144,216,0 +170745451192,217,0 +170745451240,217,0 +170745451290,218,0 +170745451338,219,0 +170745451387,219,0 +170745451435,220,0 +170745451483,220,0 +170745451533,221,0 +170745451581,222,0 +170745451629,224,0 +170745451677,226,0 +170745451726,227,0 +170745451776,230,0 +170745451824,232,0 +170745451873,235,0 +170745451921,234,0 +170745451969,236,0 +170745452019,238,0 +170745452066,239,0 +170745452114,238,0 +170745452164,219,0 +170745452214,215,0 +170745452263,215,0 +170745452311,215,0 +170745452361,216,0 +170745452409,217,0 +170745452456,217,0 +170745452504,218,0 +170745452554,219,0 +170745452604,219,0 +170745452651,220,0 +170745452701,221,0 +170745452749,222,0 +170745452799,224,0 +170745452848,227,0 +170745452898,229,0 +170745452945,237,0 +170745452993,234,0 +170745453041,234,0 +170745453089,236,0 +170745453137,236,0 +170745453187,238,0 +170745453235,239,0 +170745453283,220,0 +170745453331,215,0 +170745453380,215,0 +170745453428,215,0 +170745453478,215,0 +170745453526,215,0 +170745453574,216,0 +170745453623,216,0 +170745453671,216,0 +170745453719,218,0 +170745453767,218,0 +170745453815,219,0 +170745453863,220,0 +170745453911,222,0 +170745453959,224,0 +170745454007,227,0 +170745454056,229,0 +170745454104,232,0 +170745454152,233,0 +170745454200,235,0 +170745454248,235,0 +170745454296,238,0 +170745454344,239,0 +170745454392,220,0 +170745454440,216,0 +170745454488,215,0 +170745454536,215,0 +170745454584,215,0 +170745454632,216,0 +170745454681,217,0 +170745454729,217,0 +170745454777,218,0 +170745454827,219,0 +170745454875,220,0 +170745454923,220,0 +170745454972,221,0 +170745455020,225,0 +170745455068,227,0 +170745455116,229,0 +170745455164,230,0 +170745455212,232,0 +170745455260,233,0 +170745455308,236,0 +170745455356,236,0 +170745455404,238,0 +170745455452,236,0 +170745455500,219,0 +170745455548,215,0 +170745455597,215,0 +170745455647,216,0 +170745455695,217,0 +170745455743,217,0 +170745455791,218,0 +170745455839,219,0 +170745455888,220,0 +170745455936,220,0 +170745455984,223,0 +170745456032,226,0 +170745456079,228,0 +170745456127,231,0 +170745456175,230,0 +170745456223,233,0 +170745456271,234,0 +170745456319,235,0 +170745456367,235,0 +170745456415,238,0 +170745456464,238,0 +170745456512,234,0 +170745456560,238,0 +170745456610,235,0 +170745456659,216,0 +170745456709,215,0 +170745456756,215,0 +170745456806,215,0 +170745456854,215,0 +170745456902,216,0 +170745456951,216,0 +170745457001,218,0 +170745457049,218,0 +170745457097,220,0 +170745457146,222,0 +170745457194,225,0 +170745457244,226,0 +170745457292,229,0 +170745457340,232,0 +170745457388,232,0 +170745457436,235,0 +170745457485,235,0 +170745457533,236,0 +170745457583,239,0 +170745457632,238,0 +170745457680,238,0 +170745457728,238,0 +170745457778,217,0 +170745457827,215,0 +170745457875,214,0 +170745457923,215,0 +170745457971,215,0 +170745458019,215,0 +170745458067,215,0 +170745458115,217,0 +170745458163,217,0 +170745458212,218,0 +170745458260,219,0 +170745458308,222,0 +170745458356,223,0 +170745458405,227,0 +170745458455,230,0 +170745458503,231,0 +170745458551,232,0 +170745458598,233,0 +170745458646,235,0 +170745458694,236,0 +170745458742,238,0 +170745458790,238,0 +170745458838,237,0 +170745458886,218,0 +170745458934,215,0 +170745458982,215,0 +170745459030,216,0 +170745459077,217,0 +170745459125,218,0 +170745459173,220,0 +170745459221,219,0 +170745459269,220,0 +170745459317,225,0 +170745459365,224,0 +170745459414,229,0 +170745459462,228,0 +170745459510,231,0 +170745459558,231,0 +170745459606,233,0 +170745459655,235,0 +170745459705,237,0 +170745459753,236,0 +170745459801,237,0 +170745459849,238,0 +170745459897,238,0 +170745459944,240,0 +170745459992,221,0 +170745460040,215,0 +170745460090,215,0 +170745460138,215,0 +170745460185,215,0 +170745460233,215,0 +170745460281,216,0 +170745460329,216,0 +170745460377,218,0 +170745460426,219,0 +170745460474,220,0 +170745460524,223,0 +170745460573,225,0 +170745460621,227,0 +170745460669,229,0 +170745460717,231,0 +170745460765,234,0 +170745460813,234,0 +170745460861,234,0 +170745460909,235,0 +170745460957,236,0 +170745461005,238,0 +170745461052,239,0 +170745461102,219,0 +170745461150,215,0 +170745461198,215,0 +170745461245,215,0 +170745461293,215,0 +170745461341,215,0 +170745461389,214,0 +170745461437,215,0 +170745461485,215,0 +170745461534,215,0 +170745461582,215,0 +170745461630,216,0 +170745461678,217,0 +170745461726,220,0 +170745461774,222,0 +170745461822,227,0 +170745461870,226,0 +170745461919,229,0 +170745461967,231,0 +170745462015,231,0 +170745462063,234,0 +170745462111,233,0 +170745462159,237,0 +170745462207,239,0 +170745462256,217,0 +170745462304,215,0 +170745462352,216,0 +170745462400,216,0 +170745462450,217,0 +170745462498,217,0 +170745462545,218,0 +170745462593,219,0 +170745462641,220,0 +170745462689,229,0 +170745462737,223,0 +170745462785,224,0 +170745462833,225,0 +170745462881,228,0 +170745462928,231,0 +170745462976,232,0 +170745463024,234,0 +170745463072,235,0 +170745463120,237,0 +170745463168,238,0 +170745463216,238,0 +170745463264,238,0 +170745463312,237,0 +170745463359,220,0 +170745463407,215,0 +170745463455,215,0 +170745463505,215,0 +170745463553,215,0 +170745463602,215,0 +170745463650,215,0 +170745463698,215,0 +170745463746,216,0 +170745463795,217,0 +170745463845,218,0 +170745463894,218,0 +170745463944,220,0 +170745463992,224,0 +170745464040,225,0 +170745464089,227,0 +170745464139,229,0 +170745464187,231,0 +170745464235,234,0 +170745464282,235,0 +170745464330,235,0 +170745464378,238,0 +170745464426,240,0 +170745464474,220,0 +170745464524,215,0 +170745464572,215,0 +170745464619,215,0 +170745464669,216,0 +170745464717,216,0 +170745464766,218,0 +170745464814,218,0 +170745464862,219,0 +170745464910,219,0 +170745464958,221,0 +170745465006,222,0 +170745465056,224,0 +170745465103,227,0 +170745465151,229,0 +170745465199,231,0 +170745465249,232,0 +170745465297,235,0 +170745465345,235,0 +170745465394,235,0 +170745465442,237,0 +170745465491,237,0 +170745465541,237,0 +170745465589,219,0 +170745465638,215,0 +170745465686,215,0 +170745465734,215,0 +170745465784,215,0 +170745465832,214,0 +170745465880,215,0 +170745465928,215,0 +170745465976,215,0 +170745466024,215,0 +170745466071,216,0 +170745466119,216,0 +170745466167,217,0 +170745466217,219,0 +170745466264,222,0 +170745466314,224,0 +170745466364,226,0 +170745466413,229,0 +170745466461,230,0 +170745466509,230,0 +170745466557,231,0 +170745466605,238,0 +170745466653,239,0 +170745466701,220,0 +170745466749,215,0 +170745466797,215,0 +170745466845,215,0 +170745466894,215,0 +170745466942,215,0 +170745466990,217,0 +170745467040,217,0 +170745467089,217,0 +170745467139,218,0 +170745467188,219,0 +170745467236,220,0 +170745467284,223,0 +170745467333,225,0 +170745467383,230,0 +170745467431,229,0 +170745467479,231,0 +170745467526,233,0 +170745467574,235,0 +170745467622,237,0 +170745467672,237,0 +170745467721,238,0 +170745467771,239,0 +170745467819,219,0 +170745467867,215,0 +170745467915,215,0 +170745467964,215,0 +170745468012,215,0 +170745468062,215,0 +170745468110,215,0 +170745468158,215,0 +170745468206,215,0 +170745468255,216,0 +170745468303,217,0 +170745468353,218,0 +170745468401,218,0 +170745468448,220,0 +170745468496,223,0 +170745468544,225,0 +170745468594,227,0 +170745468642,230,0 +170745468691,231,0 +170745468741,232,0 +170745468790,234,0 +170745468840,236,0 +170745468888,239,0 +170745468937,219,0 +170745468985,215,0 +170745469035,215,0 +170745469084,215,0 +170745469132,215,0 +170745469180,215,0 +170745469228,216,0 +170745469278,217,0 +170745469326,217,0 +170745469374,217,0 +170745469423,219,0 +170745469471,221,0 +170745469519,222,0 +170745469567,228,0 +170745469615,227,0 +170745469665,229,0 +170745469713,230,0 +170745469762,233,0 +170745469810,234,0 +170745469860,234,0 +170745469910,236,0 +170745469957,236,0 +170745470007,238,0 +170745470055,219,0 +170745470105,215,0 +170745470153,215,0 +170745470202,215,0 +170745470252,214,0 +170745470300,214,0 +170745470348,215,0 +170745470395,214,0 +170745470445,215,0 +170745470493,216,0 +170745470543,217,0 +170745470591,218,0 +170745470639,218,0 +170745470688,221,0 +170745470736,223,0 +170745470784,226,0 +170745470832,228,0 +170745470880,229,0 +170745470928,231,0 +170745470976,237,0 +170745471024,233,0 +170745471072,234,0 +170745471120,239,0 +170745471168,229,0 +170745471215,216,0 +170745471263,215,0 +170745471313,215,0 +170745471361,215,0 +170745471409,215,0 +170745471458,215,0 +170745471506,215,0 +170745471556,215,0 +170745471604,216,0 +170745471653,218,0 +170745471701,218,0 +170745471751,219,0 +170745471799,221,0 +170745471847,225,0 +170745471896,225,0 +170745471944,228,0 +170745471992,229,0 +170745472040,231,0 +170745472088,233,0 +170745472136,234,0 +170745472184,233,0 +170745472232,239,0 +170745472281,227,0 +170745472329,216,0 +170745472377,215,0 +170745472427,215,0 +170745472476,215,0 +170745472524,215,0 +170745472574,215,0 +170745472622,215,0 +170745472671,215,0 +170745472719,215,0 +170745472769,216,0 +170745472818,217,0 +170745472868,218,0 +170745472916,219,0 +170745472965,222,0 +170745473013,223,0 +170745473063,228,0 +170745473111,228,0 +170745473160,229,0 +170745473210,232,0 +170745473258,234,0 +170745473307,234,0 +170745473355,238,0 +170745473403,220,0 +170745473451,216,0 +170745473501,215,0 +170745473550,215,0 +170745473600,215,0 +170745473649,215,0 +170745473697,216,0 +170745473745,216,0 +170745473793,217,0 +170745473841,217,0 +170745473889,218,0 +170745473938,218,0 +170745473986,221,0 +170745474036,226,0 +170745474084,226,0 +170745474133,229,0 +170745474181,229,0 +170745474229,231,0 +170745474279,233,0 +170745474326,234,0 +170745474374,236,0 +170745474424,232,0 +170745474472,239,0 +170745474520,239,0 +170745474567,217,0 +170745474615,215,0 +170745474663,215,0 +170745474711,215,0 +170745474759,215,0 +170745474808,215,0 +170745474856,215,0 +170745474904,215,0 +170745474952,215,0 +170745475000,215,0 +170745475050,215,0 +170745475099,216,0 +170745475149,217,0 +170745475197,218,0 +170745475245,220,0 +170745475295,223,0 +170745475342,226,0 +170745475390,226,0 +170745475438,228,0 +170745475486,230,0 +170745475536,230,0 +170745475584,238,0 +170745475634,236,0 +170745475682,217,0 +170745475730,215,0 +170745475779,215,0 +170745475827,215,0 +170745475877,215,0 +170745475925,217,0 +170745475972,218,0 +170745476020,218,0 +170745476070,219,0 +170745476118,219,0 +170745476166,220,0 +170745476215,221,0 +170745476263,224,0 +170745476313,227,0 +170745476362,229,0 +170745476410,230,0 +170745476460,233,0 +170745476509,232,0 +170745476557,234,0 +170745476605,236,0 +170745476653,236,0 +170745476703,238,0 +170745476751,238,0 +170745476799,218,0 +170745476847,215,0 +170745476895,215,0 +170745476943,215,0 +170745476992,215,0 +170745477042,215,0 +170745477090,215,0 +170745477138,215,0 +170745477187,216,0 +170745477235,216,0 +170745477283,217,0 +170745477332,218,0 +170745477380,220,0 +170745477428,221,0 +170745477476,224,0 +170745477524,227,0 +170745477572,228,0 +170745477620,228,0 +170745477670,233,0 +170745477718,232,0 +170745477766,235,0 +170745477815,237,0 +170745477865,235,0 +170745477914,219,0 +170745477964,215,0 +170745478013,215,0 +170745478061,215,0 +170745478111,215,0 +170745478159,215,0 +170745478208,216,0 +170745478256,217,0 +170745478306,217,0 +170745478355,217,0 +170745478403,218,0 +170745478451,219,0 +170745478499,222,0 +170745478549,224,0 +170745478597,228,0 +170745478645,229,0 +170745478692,231,0 +170745478740,232,0 +170745478790,233,0 +170745478838,236,0 +170745478887,236,0 +170745478935,238,0 +170745478985,236,0 +170745479034,218,0 +170745479082,215,0 +170745479130,215,0 +170745479178,216,0 +170745479226,216,0 +170745479274,217,0 +170745479324,218,0 +170745479372,219,0 +170745479420,219,0 +170745479468,221,0 +170745479517,222,0 +170745479567,223,0 +170745479616,225,0 +170745479664,228,0 +170745479712,229,0 +170745479760,230,0 +170745479810,232,0 +170745479858,233,0 +170745479907,235,0 +170745479955,236,0 +170745480005,235,0 diff --git a/laser_value/0209-15.csv b/laser_value/0209-15.csv new file mode 100644 index 0000000..c5fb292 --- /dev/null +++ b/laser_value/0209-15.csv @@ -0,0 +1,7414 @@ +timestamp,laser_value,event +170745480055,237,0 +170745480103,237,0 +170745480151,218,0 +170745480200,215,0 +170745480248,214,0 +170745480298,214,0 +170745480346,214,0 +170745480394,216,0 +170745480442,215,0 +170745480490,216,0 +170745480539,217,0 +170745480587,218,0 +170745480635,220,0 +170745480683,221,0 +170745480731,225,0 +170745480780,228,0 +170745480828,229,0 +170745480878,231,0 +170745480926,232,0 +170745480975,233,0 +170745481023,234,0 +170745481073,235,0 +170745481121,237,0 +170745481169,237,0 +170745481217,237,0 +170745481265,218,0 +170745481313,215,0 +170745481360,216,0 +170745481408,216,0 +170745481456,217,0 +170745481504,218,0 +170745481552,218,0 +170745481600,222,0 +170745481648,219,0 +170745481696,220,0 +170745481744,221,0 +170745481794,224,0 +170745481842,226,0 +170745481891,229,0 +170745481939,230,0 +170745481987,232,0 +170745482035,232,0 +170745482085,235,0 +170745482134,236,0 +170745482184,237,0 +170745482232,237,0 +170745482281,237,0 +170745482331,238,0 +170745482379,220,0 +170745482427,215,0 +170745482477,215,0 +170745482525,215,0 +170745482573,216,0 +170745482621,216,0 +170745482668,217,0 +170745482716,218,0 +170745482766,219,0 +170745482815,219,0 +170745482863,222,0 +170745482913,224,0 +170745482960,226,0 +170745483008,228,0 +170745483056,231,0 +170745483104,231,0 +170745483152,233,0 +170745483201,234,0 +170745483249,236,0 +170745483297,237,0 +170745483345,239,0 +170745483393,238,0 +170745483441,238,0 +170745483489,220,0 +170745483537,215,0 +170745483585,216,0 +170745483633,216,0 +170745483681,217,0 +170745483728,217,0 +170745483776,218,0 +170745483826,219,0 +170745483874,219,0 +170745483922,220,0 +170745483971,221,0 +170745484019,224,0 +170745484069,226,0 +170745484118,228,0 +170745484166,230,0 +170745484214,232,0 +170745484264,234,0 +170745484312,234,0 +170745484359,234,0 +170745484409,236,0 +170745484457,238,0 +170745484506,238,0 +170745484554,237,0 +170745484602,219,0 +170745484650,216,0 +170745484698,216,0 +170745484747,216,0 +170745484795,216,0 +170745484843,215,0 +170745484891,215,0 +170745484939,216,0 +170745484987,216,0 +170745485035,217,0 +170745485083,218,0 +170745485132,218,0 +170745485180,222,0 +170745485228,223,0 +170745485276,225,0 +170745485324,228,0 +170745485373,229,0 +170745485421,232,0 +170745485469,232,0 +170745485519,234,0 +170745485567,234,0 +170745485616,235,0 +170745485664,237,0 +170745485712,235,0 +170745485760,219,0 +170745485810,216,0 +170745485858,216,0 +170745485907,216,0 +170745485957,216,0 +170745486005,216,0 +170745486053,215,0 +170745486102,216,0 +170745486152,217,0 +170745486200,218,0 +170745486249,218,0 +170745486299,219,0 +170745486347,221,0 +170745486395,224,0 +170745486443,227,0 +170745486490,228,0 +170745486538,230,0 +170745486588,231,0 +170745486637,234,0 +170745486685,235,0 +170745486735,235,0 +170745486784,239,0 +170745486832,221,0 +170745486882,216,0 +170745486930,215,0 +170745486978,215,0 +170745487026,215,0 +170745487074,215,0 +170745487123,215,0 +170745487171,215,0 +170745487219,216,0 +170745487269,216,0 +170745487317,217,0 +170745487365,218,0 +170745487413,218,0 +170745487461,221,0 +170745487508,224,0 +170745487556,226,0 +170745487604,228,0 +170745487652,230,0 +170745487702,231,0 +170745487751,233,0 +170745487799,237,0 +170745487849,235,0 +170745487898,238,0 +170745487948,226,0 +170745487996,216,0 +170745488044,215,0 +170745488093,215,0 +170745488143,215,0 +170745488193,215,0 +170745488240,215,0 +170745488290,215,0 +170745488338,215,0 +170745488386,215,0 +170745488435,222,0 +170745488483,218,0 +170745488531,218,0 +170745488581,220,0 +170745488629,224,0 +170745488677,227,0 +170745488725,228,0 +170745488773,229,0 +170745488822,230,0 +170745488870,233,0 +170745488918,234,0 +170745488966,235,0 +170745489016,239,0 +170745489064,229,0 +170745489112,216,0 +170745489161,215,0 +170745489210,215,0 +170745489258,215,0 +170745489308,215,0 +170745489358,215,0 +170745489406,215,0 +170745489454,215,0 +170745489501,216,0 +170745489551,217,0 +170745489599,217,0 +170745489647,218,0 +170745489696,222,0 +170745489744,222,0 +170745489792,224,0 +170745489842,227,0 +170745489890,228,0 +170745489938,230,0 +170745489986,232,0 +170745490035,233,0 +170745490083,234,0 +170745490131,236,0 +170745490181,237,0 +170745490229,218,0 +170745490277,216,0 +170745490325,215,0 +170745490374,216,0 +170745490422,216,0 +170745490470,217,0 +170745490519,217,0 +170745490567,218,0 +170745490615,219,0 +170745490663,220,0 +170745490713,220,0 +170745490761,222,0 +170745490810,225,0 +170745490860,228,0 +170745490908,228,0 +170745490956,231,0 +170745491005,233,0 +170745491053,234,0 +170745491103,237,0 +170745491152,236,0 +170745491202,231,0 +170745491250,237,0 +170745491298,236,0 +170745491346,217,0 +170745491394,215,0 +170745491443,215,0 +170745491493,215,0 +170745491542,215,0 +170745491590,215,0 +170745491638,215,0 +170745491686,215,0 +170745491734,215,0 +170745491782,215,0 +170745491830,215,0 +170745491879,215,0 +170745491929,216,0 +170745491976,218,0 +170745492024,219,0 +170745492072,222,0 +170745492120,223,0 +170745492170,226,0 +170745492219,227,0 +170745492267,231,0 +170745492315,234,0 +170745492365,237,0 +170745492413,236,0 +170745492462,217,0 +170745492510,216,0 +170745492560,216,0 +170745492608,217,0 +170745492656,218,0 +170745492704,218,0 +170745492752,219,0 +170745492801,222,0 +170745492851,220,0 +170745492899,222,0 +170745492948,224,0 +170745492996,226,0 +170745493046,227,0 +170745493095,229,0 +170745493145,231,0 +170745493193,232,0 +170745493241,233,0 +170745493289,233,0 +170745493337,235,0 +170745493386,237,0 +170745493434,237,0 +170745493482,238,0 +170745493530,239,0 +170745493578,220,0 +170745493626,215,0 +170745493674,215,0 +170745493722,215,0 +170745493770,215,0 +170745493819,215,0 +170745493867,215,0 +170745493917,215,0 +170745493965,215,0 +170745494014,215,0 +170745494062,215,0 +170745494110,215,0 +170745494160,216,0 +170745494208,218,0 +170745494257,222,0 +170745494305,223,0 +170745494353,225,0 +170745494401,227,0 +170745494449,229,0 +170745494497,231,0 +170745494546,234,0 +170745494594,236,0 +170745494642,238,0 +170745494691,219,0 +170745494741,215,0 +170745494789,214,0 +170745494837,214,0 +170745494885,215,0 +170745494935,217,0 +170745494985,217,0 +170745495033,216,0 +170745495081,218,0 +170745495129,217,0 +170745495177,219,0 +170745495224,221,0 +170745495274,221,0 +170745495324,225,0 +170745495373,227,0 +170745495423,229,0 +170745495471,231,0 +170745495519,233,0 +170745495567,233,0 +170745495614,238,0 +170745495662,235,0 +170745495712,239,0 +170745495760,237,0 +170745495808,218,0 +170745495857,215,0 +170745495905,215,0 +170745495955,215,0 +170745496004,215,0 +170745496052,214,0 +170745496102,215,0 +170745496151,215,0 +170745496199,215,0 +170745496249,215,0 +170745496298,215,0 +170745496348,215,0 +170745496397,215,0 +170745496445,215,0 +170745496493,216,0 +170745496541,219,0 +170745496589,221,0 +170745496639,223,0 +170745496688,225,0 +170745496736,228,0 +170745496786,228,0 +170745496835,237,0 +170745496885,241,0 +170745496934,217,0 +170745496984,215,0 +170745497032,215,0 +170745497081,215,0 +170745497129,215,0 +170745497179,215,0 +170745497227,215,0 +170745497276,216,0 +170745497324,217,0 +170745497374,217,0 +170745497423,218,0 +170745497471,219,0 +170745497519,220,0 +170745497569,221,0 +170745497618,222,0 +170745497668,225,0 +170745497717,229,0 +170745497765,230,0 +170745497815,232,0 +170745497863,234,0 +170745497912,235,0 +170745497960,238,0 +170745498008,236,0 +170745498056,218,0 +170745498104,215,0 +170745498154,215,0 +170745498203,216,0 +170745498251,216,0 +170745498299,217,0 +170745498347,218,0 +170745498397,219,0 +170745498445,219,0 +170745498493,220,0 +170745498541,220,0 +170745498589,222,0 +170745498637,226,0 +170745498686,228,0 +170745498734,230,0 +170745498783,230,0 +170745498831,231,0 +170745498881,234,0 +170745498929,235,0 +170745498977,235,0 +170745499026,232,0 +170745499076,238,0 +170745499126,238,0 +170745499174,217,0 +170745499223,215,0 +170745499271,215,0 +170745499319,215,0 +170745499367,215,0 +170745499416,214,0 +170745499464,215,0 +170745499512,215,0 +170745499562,214,0 +170745499610,215,0 +170745499659,214,0 +170745499709,215,0 +170745499758,216,0 +170745499808,217,0 +170745499857,218,0 +170745499905,221,0 +170745499953,223,0 +170745500003,225,0 +170745500051,226,0 +170745500099,229,0 +170745500148,231,0 +170745500196,236,0 +170745500244,237,0 +170745500294,217,0 +170745500342,215,0 +170745500391,215,0 +170745500439,215,0 +170745500489,215,0 +170745500537,215,0 +170745500586,215,0 +170745500634,215,0 +170745500682,216,0 +170745500732,216,0 +170745500781,217,0 +170745500831,218,0 +170745500879,219,0 +170745500927,221,0 +170745500975,223,0 +170745501023,226,0 +170745501071,228,0 +170745501118,229,0 +170745501168,231,0 +170745501216,234,0 +170745501264,235,0 +170745501312,237,0 +170745501362,238,0 +170745501410,220,0 +170745501458,215,0 +170745501505,216,0 +170745501553,215,0 +170745501601,215,0 +170745501649,216,0 +170745501699,217,0 +170745501747,217,0 +170745501796,217,0 +170745501844,221,0 +170745501892,219,0 +170745501940,220,0 +170745501988,220,0 +170745502036,222,0 +170745502086,225,0 +170745502135,228,0 +170745502185,229,0 +170745502234,231,0 +170745502284,233,0 +170745502332,234,0 +170745502380,237,0 +170745502428,238,0 +170745502477,238,0 +170745502525,218,0 +170745502575,215,0 +170745502624,215,0 +170745502672,215,0 +170745502720,215,0 +170745502768,215,0 +170745502816,216,0 +170745502864,218,0 +170745502914,217,0 +170745502962,217,0 +170745503011,218,0 +170745503059,219,0 +170745503107,219,0 +170745503155,223,0 +170745503205,226,0 +170745503253,227,0 +170745503302,229,0 +170745503351,231,0 +170745503401,234,0 +170745503449,234,0 +170745503498,235,0 +170745503548,238,0 +170745503598,238,0 +170745503647,217,0 +170745503697,215,0 +170745503746,215,0 +170745503794,215,0 +170745503842,215,0 +170745503890,215,0 +170745503938,215,0 +170745503986,215,0 +170745504036,215,0 +170745504085,216,0 +170745504133,216,0 +170745504181,216,0 +170745504229,219,0 +170745504279,220,0 +170745504327,222,0 +170745504376,224,0 +170745504424,228,0 +170745504472,229,0 +170745504520,231,0 +170745504568,231,0 +170745504616,235,0 +170745504664,239,0 +170745504712,239,0 +170745504760,218,0 +170745504808,215,0 +170745504856,215,0 +170745504904,215,0 +170745504952,215,0 +170745505000,215,0 +170745505049,215,0 +170745505099,215,0 +170745505148,216,0 +170745505196,216,0 +170745505246,216,0 +170745505294,217,0 +170745505342,218,0 +170745505390,219,0 +170745505437,221,0 +170745505485,224,0 +170745505533,226,0 +170745505581,228,0 +170745505629,229,0 +170745505679,231,0 +170745505727,234,0 +170745505775,237,0 +170745505824,239,0 +170745505874,219,0 +170745505924,215,0 +170745505973,215,0 +170745506023,215,0 +170745506072,215,0 +170745506122,215,0 +170745506170,215,0 +170745506218,215,0 +170745506267,215,0 +170745506315,216,0 +170745506363,216,0 +170745506411,217,0 +170745506459,218,0 +170745506507,219,0 +170745506556,222,0 +170745506604,225,0 +170745506652,226,0 +170745506700,229,0 +170745506748,230,0 +170745506796,233,0 +170745506844,234,0 +170745506892,238,0 +170745506941,238,0 +170745506991,219,0 +170745507039,216,0 +170745507088,217,0 +170745507136,217,0 +170745507186,218,0 +170745507234,218,0 +170745507282,220,0 +170745507331,220,0 +170745507381,221,0 +170745507429,222,0 +170745507478,224,0 +170745507526,225,0 +170745507574,227,0 +170745507622,229,0 +170745507671,231,0 +170745507719,232,0 +170745507767,234,0 +170745507815,238,0 +170745507865,238,0 +170745507912,237,0 +170745507960,239,0 +170745508008,239,0 +170745508056,238,0 +170745508104,221,0 +170745508152,215,0 +170745508200,215,0 +170745508248,215,0 +170745508296,215,0 +170745508344,215,0 +170745508393,215,0 +170745508442,215,0 +170745508490,216,0 +170745508538,217,0 +170745508586,218,0 +170745508634,218,0 +170745508682,220,0 +170745508730,223,0 +170745508778,225,0 +170745508826,227,0 +170745508875,229,0 +170745508923,230,0 +170745508971,232,0 +170745509019,237,0 +170745509067,236,0 +170745509115,238,0 +170745509163,237,0 +170745509210,226,0 +170745509258,217,0 +170745509306,215,0 +170745509354,215,0 +170745509402,215,0 +170745509451,215,0 +170745509499,215,0 +170745509547,215,0 +170745509595,215,0 +170745509645,215,0 +170745509693,215,0 +170745509740,216,0 +170745509788,216,0 +170745509836,217,0 +170745509886,218,0 +170745509934,218,0 +170745509982,219,0 +170745510031,220,0 +170745510079,223,0 +170745510127,223,0 +170745510175,225,0 +170745510224,224,0 +170745510272,227,0 +170745510320,230,0 +170745510368,230,0 +170745510416,234,0 +170745510463,235,0 +170745510511,237,0 +170745510559,238,0 +170745510609,242,0 +170745510657,241,0 +170745510705,240,0 +170745510754,239,0 +170745510804,240,0 +170745510852,238,0 +170745510900,220,0 +170745510947,216,0 +170745510995,216,0 +170745511043,217,0 +170745511093,217,0 +170745511141,218,0 +170745511190,218,0 +170745511238,218,0 +170745511286,220,0 +170745511334,220,0 +170745511382,222,0 +170745511432,223,0 +170745511479,226,0 +170745511529,229,0 +170745511577,230,0 +170745511626,231,0 +170745511676,235,0 +170745511724,236,0 +170745511772,236,0 +170745511821,238,0 +170745511871,237,0 +170745511920,242,0 +170745511970,239,0 +170745512019,221,0 +170745512069,215,0 +170745512118,215,0 +170745512166,216,0 +170745512214,217,0 +170745512262,216,0 +170745512312,217,0 +170745512360,218,0 +170745512409,218,0 +170745512459,219,0 +170745512508,221,0 +170745512556,221,0 +170745512606,224,0 +170745512655,225,0 +170745512705,228,0 +170745512754,228,0 +170745512802,231,0 +170745512852,233,0 +170745512900,237,0 +170745512948,237,0 +170745512996,239,0 +170745513044,238,0 +170745513091,239,0 +170745513139,221,0 +170745513187,216,0 +170745513235,215,0 +170745513283,217,0 +170745513332,216,0 +170745513380,217,0 +170745513428,217,0 +170745513476,218,0 +170745513524,218,0 +170745513572,220,0 +170745513621,220,0 +170745513671,221,0 +170745513719,223,0 +170745513767,225,0 +170745513816,229,0 +170745513866,231,0 +170745513914,234,0 +170745513963,236,0 +170745514011,235,0 +170745514059,237,0 +170745514107,239,0 +170745514157,239,0 +170745514204,239,0 +170745514254,220,0 +170745514303,216,0 +170745514353,215,0 +170745514401,216,0 +170745514449,216,0 +170745514499,217,0 +170745514546,218,0 +170745514594,218,0 +170745514644,219,0 +170745514692,219,0 +170745514741,220,0 +170745514789,223,0 +170745514839,224,0 +170745514887,229,0 +170745514935,228,0 +170745514983,230,0 +170745515031,234,0 +170745515080,234,0 +170745515128,234,0 +170745515178,236,0 +170745515227,239,0 +170745515277,239,0 +170745515325,239,0 +170745515373,219,0 +170745515421,216,0 +170745515469,215,0 +170745515517,215,0 +170745515564,216,0 +170745515612,216,0 +170745515660,217,0 +170745515708,219,0 +170745515756,219,0 +170745515804,219,0 +170745515852,219,0 +170745515900,220,0 +170745515948,227,0 +170745515996,222,0 +170745516046,225,0 +170745516095,228,0 +170745516145,230,0 +170745516194,233,0 +170745516244,233,0 +170745516292,235,0 +170745516340,236,0 +170745516389,238,0 +170745516437,238,0 +170745516487,218,0 +170745516536,215,0 +170745516586,215,0 +170745516634,215,0 +170745516683,215,0 +170745516733,216,0 +170745516782,216,0 +170745516830,217,0 +170745516878,218,0 +170745516926,219,0 +170745516974,219,0 +170745517022,219,0 +170745517070,222,0 +170745517118,226,0 +170745517166,228,0 +170745517214,229,0 +170745517262,232,0 +170745517311,235,0 +170745517361,235,0 +170745517410,236,0 +170745517458,238,0 +170745517506,238,0 +170745517554,238,0 +170745517604,219,0 +170745517652,215,0 +170745517701,215,0 +170745517749,215,0 +170745517799,215,0 +170745517847,215,0 +170745517895,215,0 +170745517944,215,0 +170745517994,216,0 +170745518043,216,0 +170745518093,217,0 +170745518142,217,0 +170745518190,219,0 +170745518240,221,0 +170745518289,224,0 +170745518339,227,0 +170745518388,230,0 +170745518438,230,0 +170745518486,232,0 +170745518534,234,0 +170745518582,233,0 +170745518629,237,0 +170745518677,238,0 +170745518725,219,0 +170745518773,215,0 +170745518821,215,0 +170745518869,215,0 +170745518917,215,0 +170745518965,216,0 +170745519013,216,0 +170745519061,217,0 +170745519109,218,0 +170745519157,218,0 +170745519206,220,0 +170745519256,222,0 +170745519305,225,0 +170745519353,227,0 +170745519403,229,0 +170745519452,231,0 +170745519500,233,0 +170745519550,233,0 +170745519599,237,0 +170745519647,236,0 +170745519695,237,0 +170745519745,238,0 +170745519793,238,0 +170745519841,222,0 +170745519890,216,0 +170745519938,215,0 +170745519988,215,0 +170745520037,216,0 +170745520085,216,0 +170745520135,217,0 +170745520184,217,0 +170745520234,218,0 +170745520283,219,0 +170745520331,221,0 +170745520381,223,0 +170745520429,226,0 +170745520478,228,0 +170745520526,230,0 +170745520574,236,0 +170745520622,233,0 +170745520670,233,0 +170745520720,235,0 +170745520769,237,0 +170745520819,238,0 +170745520866,237,0 +170745520914,241,0 +170745520964,221,0 +170745521012,216,0 +170745521061,215,0 +170745521111,216,0 +170745521160,216,0 +170745521208,217,0 +170745521256,217,0 +170745521304,218,0 +170745521354,219,0 +170745521403,220,0 +170745521451,222,0 +170745521501,223,0 +170745521549,227,0 +170745521597,229,0 +170745521646,230,0 +170745521696,237,0 +170745521745,232,0 +170745521795,235,0 +170745521844,235,0 +170745521894,238,0 +170745521944,237,0 +170745521993,238,0 +170745522041,238,0 +170745522089,220,0 +170745522137,215,0 +170745522185,215,0 +170745522232,215,0 +170745522280,215,0 +170745522328,215,0 +170745522376,215,0 +170745522424,216,0 +170745522472,217,0 +170745522520,218,0 +170745522568,219,0 +170745522617,220,0 +170745522665,222,0 +170745522713,225,0 +170745522761,227,0 +170745522809,229,0 +170745522857,230,0 +170745522905,232,0 +170745522954,234,0 +170745523003,236,0 +170745523051,237,0 +170745523099,239,0 +170745523149,238,0 +170745523197,221,0 +170745523246,216,0 +170745523294,215,0 +170745523342,215,0 +170745523392,215,0 +170745523441,215,0 +170745523491,216,0 +170745523540,216,0 +170745523590,218,0 +170745523639,218,0 +170745523689,218,0 +170745523738,220,0 +170745523788,222,0 +170745523836,224,0 +170745523884,227,0 +170745523932,229,0 +170745523981,231,0 +170745524031,232,0 +170745524079,236,0 +170745524127,235,0 +170745524175,236,0 +170745524223,239,0 +170745524271,239,0 +170745524320,219,0 +170745524368,215,0 +170745524416,215,0 +170745524464,215,0 +170745524514,215,0 +170745524563,216,0 +170745524613,216,0 +170745524661,217,0 +170745524708,218,0 +170745524758,219,0 +170745524806,219,0 +170745524854,221,0 +170745524902,224,0 +170745524950,226,0 +170745524999,228,0 +170745525047,230,0 +170745525097,235,0 +170745525146,232,0 +170745525194,235,0 +170745525244,235,0 +170745525292,236,0 +170745525340,238,0 +170745525389,239,0 +170745525439,221,0 +170745525487,216,0 +170745525535,215,0 +170745525584,216,0 +170745525634,215,0 +170745525683,216,0 +170745525733,216,0 +170745525780,217,0 +170745525828,218,0 +170745525876,218,0 +170745525926,219,0 +170745525974,220,0 +170745526023,222,0 +170745526071,226,0 +170745526121,228,0 +170745526169,231,0 +170745526218,232,0 +170745526268,233,0 +170745526316,237,0 +170745526364,239,0 +170745526413,239,0 +170745526463,238,0 +170745526512,237,0 +170745526562,219,0 +170745526610,215,0 +170745526659,215,0 +170745526707,215,0 +170745526755,215,0 +170745526803,215,0 +170745526853,215,0 +170745526901,215,0 +170745526949,215,0 +170745526997,217,0 +170745527045,218,0 +170745527094,218,0 +170745527142,218,0 +170745527190,221,0 +170745527240,223,0 +170745527289,226,0 +170745527337,227,0 +170745527385,230,0 +170745527435,230,0 +170745527484,234,0 +170745527532,235,0 +170745527580,237,0 +170745527628,237,0 +170745527676,220,0 +170745527724,215,0 +170745527773,215,0 +170745527823,215,0 +170745527871,215,0 +170745527919,215,0 +170745527967,216,0 +170745528016,216,0 +170745528066,217,0 +170745528114,218,0 +170745528164,220,0 +170745528211,219,0 +170745528261,221,0 +170745528311,223,0 +170745528358,225,0 +170745528406,228,0 +170745528456,229,0 +170745528505,232,0 +170745528555,232,0 +170745528604,235,0 +170745528652,234,0 +170745528702,238,0 +170745528752,239,0 +170745528801,221,0 +170745528849,215,0 +170745528897,216,0 +170745528947,216,0 +170745528995,216,0 +170745529043,216,0 +170745529091,216,0 +170745529139,216,0 +170745529187,216,0 +170745529234,216,0 +170745529282,216,0 +170745529330,216,0 +170745529378,217,0 +170745529426,218,0 +170745529474,220,0 +170745529522,222,0 +170745529572,225,0 +170745529620,227,0 +170745529668,227,0 +170745529716,232,0 +170745529764,232,0 +170745529814,238,0 +170745529862,240,0 +170745529910,220,0 +170745529959,215,0 +170745530009,215,0 +170745530058,215,0 +170745530106,215,0 +170745530154,215,0 +170745530204,216,0 +170745530252,216,0 +170745530301,217,0 +170745530351,218,0 +170745530399,218,0 +170745530449,220,0 +170745530498,222,0 +170745530548,224,0 +170745530597,226,0 +170745530647,228,0 +170745530695,231,0 +170745530744,232,0 +170745530794,232,0 +170745530842,235,0 +170745530889,235,0 +170745530937,237,0 +170745530985,238,0 +170745531033,219,0 +170745531081,216,0 +170745531129,215,0 +170745531177,215,0 +170745531225,215,0 +170745531273,216,0 +170745531321,216,0 +170745531371,217,0 +170745531419,217,0 +170745531468,218,0 +170745531516,221,0 +170745531564,220,0 +170745531614,222,0 +170745531663,224,0 +170745531711,225,0 +170745531761,229,0 +170745531809,231,0 +170745531857,233,0 +170745531905,234,0 +170745531954,234,0 +170745532004,237,0 +170745532053,238,0 +170745532101,238,0 +170745532149,219,0 +170745532197,221,0 +170745532247,222,0 +170745532296,221,0 +170745532344,221,0 +170745532392,221,0 +170745532440,222,0 +170745532490,221,0 +170745532538,215,0 +170745532587,216,0 +170745532635,217,0 +170745532685,218,0 +170745532734,220,0 +170745532782,222,0 +170745532832,224,0 +170745532880,226,0 +170745532928,228,0 +170745532976,230,0 +170745533025,232,0 +170745533073,233,0 +170745533123,234,0 +170745533172,237,0 +170745533222,238,0 +170745533270,219,0 +170745533318,217,0 +170745533366,216,0 +170745533415,217,0 +170745533463,216,0 +170745533511,215,0 +170745533561,216,0 +170745533608,216,0 +170745533656,217,0 +170745533704,218,0 +170745533752,219,0 +170745533800,220,0 +170745533850,221,0 +170745533898,225,0 +170745533946,228,0 +170745533995,229,0 +170745534045,230,0 +170745534094,231,0 +170745534144,234,0 +170745534192,234,0 +170745534239,235,0 +170745534287,238,0 +170745534335,238,0 +170745534385,219,0 +170745534433,216,0 +170745534481,215,0 +170745534529,215,0 +170745534578,215,0 +170745534626,215,0 +170745534676,215,0 +170745534725,215,0 +170745534773,215,0 +170745534821,216,0 +170745534869,217,0 +170745534917,218,0 +170745534967,219,0 +170745535016,222,0 +170745535064,224,0 +170745535112,226,0 +170745535162,230,0 +170745535210,230,0 +170745535258,233,0 +170745535306,232,0 +170745535354,235,0 +170745535402,282,1 +170745535490,238,0 +170745535540,218,0 +170745535588,216,0 +170745535637,216,0 +170745535685,216,0 +170745535733,215,0 +170745535781,215,0 +170745535831,215,0 +170745535879,216,0 +170745535928,215,0 +170745535978,215,0 +170745536026,215,0 +170745536075,215,0 +170745536123,216,0 +170745536171,217,0 +170745536221,217,0 +170745536269,220,0 +170745536316,223,0 +170745536366,226,0 +170745536414,226,0 +170745536463,229,0 +170745536513,229,0 +170745536561,235,0 +170745536610,234,0 +170745536660,216,0 +170745536708,215,0 +170745536757,215,0 +170745536807,215,0 +170745536855,216,0 +170745536905,216,0 +170745536952,217,0 +170745537002,218,0 +170745537050,220,0 +170745537098,221,0 +170745537146,219,0 +170745537195,221,0 +170745537243,223,0 +170745537291,226,0 +170745537341,227,0 +170745537389,229,0 +170745537437,231,0 +170745537485,233,0 +170745537533,234,0 +170745537581,236,0 +170745537629,236,0 +170745537678,237,0 +170745537726,239,0 +170745537776,218,0 +170745537823,216,0 +170745537873,215,0 +170745537921,215,0 +170745537970,215,0 +170745538018,215,0 +170745538068,215,0 +170745538116,217,0 +170745538165,217,0 +170745538213,217,0 +170745538261,218,0 +170745538309,219,0 +170745538357,221,0 +170745538405,223,0 +170745538455,226,0 +170745538503,227,0 +170745538550,229,0 +170745538598,232,0 +170745538646,233,0 +170745538696,233,0 +170745538743,236,0 +170745538791,237,0 +170745538841,237,0 +170745538889,219,0 +170745538937,215,0 +170745538986,215,0 +170745539034,215,0 +170745539082,215,0 +170745539132,216,0 +170745539181,216,0 +170745539229,217,0 +170745539277,218,0 +170745539327,218,0 +170745539376,219,0 +170745539424,221,0 +170745539472,223,0 +170745539520,226,0 +170745539568,228,0 +170745539616,231,0 +170745539664,231,0 +170745539713,233,0 +170745539761,234,0 +170745539809,235,0 +170745539858,235,0 +170745539908,237,0 +170745539958,237,0 +170745540007,220,0 +170745540056,215,0 +170745540106,215,0 +170745540154,215,0 +170745540202,215,0 +170745540249,215,0 +170745540297,215,0 +170745540345,215,0 +170745540393,216,0 +170745540441,217,0 +170745540489,218,0 +170745540538,218,0 +170745540586,220,0 +170745540634,222,0 +170745540684,226,0 +170745540733,226,0 +170745540781,229,0 +170745540829,230,0 +170745540879,232,0 +170745540927,233,0 +170745540976,233,0 +170745541026,237,0 +170745541075,237,0 +170745541125,221,0 +170745541173,216,0 +170745541221,216,0 +170745541269,216,0 +170745541317,215,0 +170745541365,217,0 +170745541414,217,0 +170745541462,218,0 +170745541512,219,0 +170745541561,219,0 +170745541609,222,0 +170745541659,223,0 +170745541708,226,0 +170745541758,229,0 +170745541807,230,0 +170745541857,232,0 +170745541906,233,0 +170745541954,233,0 +170745542004,235,0 +170745542052,237,0 +170745542101,236,0 +170745542151,236,0 +170745542199,237,0 +170745542247,219,0 +170745542295,215,0 +170745542344,215,0 +170745542392,215,0 +170745542440,215,0 +170745542488,215,0 +170745542536,216,0 +170745542584,216,0 +170745542632,217,0 +170745542681,218,0 +170745542729,219,0 +170745542779,220,0 +170745542827,221,0 +170745542876,223,0 +170745542924,227,0 +170745542972,230,0 +170745543022,231,0 +170745543070,233,0 +170745543119,236,0 +170745543169,235,0 +170745543217,237,0 +170745543266,237,0 +170745543314,237,0 +170745543362,219,0 +170745543410,215,0 +170745543460,214,0 +170745543509,215,0 +170745543559,214,0 +170745543607,216,0 +170745543655,216,0 +170745543703,217,0 +170745543751,217,0 +170745543800,218,0 +170745543850,221,0 +170745543899,224,0 +170745543947,226,0 +170745543995,228,0 +170745544043,230,0 +170745544093,231,0 +170745544141,234,0 +170745544189,235,0 +170745544238,234,0 +170745544288,238,0 +170745544336,239,0 +170745544385,237,0 +170745544435,236,0 +170745544484,219,0 +170745544534,215,0 +170745544582,215,0 +170745544631,215,0 +170745544679,215,0 +170745544729,216,0 +170745544778,217,0 +170745544828,217,0 +170745544876,218,0 +170745544924,219,0 +170745544973,222,0 +170745545023,224,0 +170745545071,228,0 +170745545119,228,0 +170745545168,230,0 +170745545218,233,0 +170745545267,235,0 +170745545315,236,0 +170745545363,236,0 +170745545411,238,0 +170745545461,237,0 +170745545509,239,0 +170745545557,234,0 +170745545605,218,0 +170745545654,217,0 +170745545704,217,0 +170745545753,217,0 +170745545803,218,0 +170745545851,219,0 +170745545899,220,0 +170745545947,220,0 +170745545995,222,0 +170745546042,225,0 +170745546092,226,0 +170745546140,227,0 +170745546188,229,0 +170745546236,230,0 +170745546285,233,0 +170745546335,235,0 +170745546384,236,0 +170745546434,237,0 +170745546482,237,0 +170745546530,238,0 +170745546579,235,0 +170745546627,238,0 +170745546677,237,0 +170745546726,219,0 +170745546774,218,0 +170745546822,217,0 +170745546870,216,0 +170745546920,217,0 +170745546968,217,0 +170745547017,215,0 +170745547065,216,0 +170745547113,216,0 +170745547161,217,0 +170745547210,218,0 +170745547260,219,0 +170745547309,222,0 +170745547359,225,0 +170745547407,228,0 +170745547455,230,0 +170745547504,232,0 +170745547554,232,0 +170745547602,234,0 +170745547650,236,0 +170745547698,236,0 +170745547747,240,0 +170745547795,238,0 +170745547845,217,0 +170745547893,215,0 +170745547942,215,0 +170745547992,215,0 +170745548040,215,0 +170745548088,215,0 +170745548136,215,0 +170745548185,216,0 +170745548235,217,0 +170745548283,217,0 +170745548332,218,0 +170745548380,219,0 +170745548428,222,0 +170745548478,223,0 +170745548526,226,0 +170745548574,230,0 +170745548623,230,0 +170745548671,230,0 +170745548719,233,0 +170745548767,234,0 +170745548817,235,0 +170745548866,238,0 +170745548916,237,0 +170745548964,256,0 +170745549012,216,0 +170745549362,216,0 +170745549411,217,0 +170745549459,217,0 +170745549509,219,0 +170745549558,221,0 +170745549608,224,0 +170745549656,226,0 +170745549704,227,0 +170745549752,229,0 +170745549801,232,0 +170745549849,232,0 +170745549897,234,0 +170745549947,236,0 +170745549995,238,0 +170745550043,222,0 +170745550092,216,0 +170745550140,215,0 +170745550188,215,0 +170745550238,215,0 +170745550286,217,0 +170745550334,216,0 +170745550382,218,0 +170745550430,230,0 +170745550479,219,0 +170745550528,220,0 +170745550576,221,0 +170745550624,222,0 +170745550674,225,0 +170745550723,228,0 +170745550773,230,0 +170745550821,229,0 +170745550869,232,0 +170745550917,236,0 +170745550964,235,0 +170745551012,238,0 +170745551060,236,0 +170745551108,238,0 +170745551156,234,0 +170745551204,216,0 +170745551252,215,0 +170745551300,215,0 +170745551348,215,0 +170745551395,215,0 +170745551443,214,0 +170745551491,215,0 +170745551539,215,0 +170745551587,215,0 +170745551636,215,0 +170745551684,215,0 +170745551734,215,0 +170745551782,215,0 +170745551830,216,0 +170745551877,217,0 +170745551925,218,0 +170745551973,220,0 +170745552021,223,0 +170745552069,225,0 +170745552117,228,0 +170745552167,228,0 +170745552214,237,0 +170745552262,237,0 +170745552310,218,0 +170745552360,215,0 +170745552408,215,0 +170745552457,215,0 +170745552505,216,0 +170745552553,217,0 +170745552601,218,0 +170745552649,218,0 +170745552698,218,0 +170745552748,219,0 +170745552797,220,0 +170745552847,222,0 +170745552896,224,0 +170745552944,227,0 +170745552994,230,0 +170745553041,231,0 +170745553089,232,0 +170745553139,233,0 +170745553186,235,0 +170745553234,237,0 +170745553282,236,0 +170745553330,240,0 +170745553378,238,0 +170745553426,219,0 +170745553474,216,0 +170745553522,215,0 +170745553571,215,0 +170745553619,215,0 +170745553667,216,0 +170745553715,217,0 +170745553763,218,0 +170745553811,218,0 +170745553859,220,0 +170745553907,220,0 +170745553955,221,0 +170745554003,224,0 +170745554051,227,0 +170745554099,228,0 +170745554148,231,0 +170745554196,233,0 +170745554244,236,0 +170745554292,234,0 +170745554340,236,0 +170745554388,238,0 +170745554435,238,0 +170745554483,238,0 +170745554533,219,0 +170745554581,215,0 +170745554629,215,0 +170745554677,214,0 +170745554724,215,0 +170745554772,215,0 +170745554820,215,0 +170745554868,216,0 +170745554916,216,0 +170745554964,218,0 +170745555012,217,0 +170745555060,219,0 +170745555108,221,0 +170745555156,221,0 +170745555204,225,0 +170745555251,226,0 +170745555299,230,0 +170745555347,231,0 +170745555397,232,0 +170745555445,232,0 +170745555493,233,0 +170745555541,232,0 +170745555589,239,0 +170745555637,233,0 +170745555685,217,0 +170745555732,215,0 +170745555780,215,0 +170745555830,215,0 +170745555878,215,0 +170745555926,215,0 +170745555974,215,0 +170745556023,215,0 +170745556071,215,0 +170745556119,216,0 +170745556167,216,0 +170745556215,217,0 +170745556264,218,0 +170745556312,220,0 +170745556362,222,0 +170745556410,225,0 +170745556458,226,0 +170745556506,229,0 +170745556555,229,0 +170745556603,234,0 +170745556651,233,0 +170745556699,237,0 +170745556747,237,0 +170745556794,217,0 +170745556844,215,0 +170745556892,215,0 +170745556941,215,0 +170745556989,215,0 +170745557037,216,0 +170745557085,216,0 +170745557133,217,0 +170745557181,217,0 +170745557229,218,0 +170745557277,219,0 +170745557325,220,0 +170745557373,222,0 +170745557421,226,0 +170745557468,227,0 +170745557516,228,0 +170745557566,233,0 +170745557614,231,0 +170745557662,234,0 +170745557710,235,0 +170745557757,235,0 +170745557805,238,0 +170745557853,238,0 +170745557901,219,0 +170745557950,215,0 +170745558000,215,0 +170745558048,215,0 +170745558097,214,0 +170745558145,214,0 +170745558193,215,0 +170745558241,215,0 +170745558290,215,0 +170745558338,215,0 +170745558386,216,0 +170745558434,216,0 +170745558484,218,0 +170745558531,219,0 +170745558579,221,0 +170745558629,225,0 +170745558677,226,0 +170745558726,229,0 +170745558774,230,0 +170745558822,231,0 +170745558871,234,0 +170745558919,237,0 +170745558967,238,0 +170745559015,219,0 +170745559063,215,0 +170745559113,215,0 +170745559161,215,0 +170745559208,215,0 +170745559256,216,0 +170745559304,216,0 +170745559354,217,0 +170745559402,217,0 +170745559449,217,0 +170745559497,218,0 +170745559545,219,0 +170745559593,221,0 +170745559643,225,0 +170745559691,226,0 +170745559738,229,0 +170745559786,230,0 +170745559834,232,0 +170745559882,232,0 +170745559930,235,0 +170745559980,235,0 +170745560029,237,0 +170745560079,239,0 +170745560128,221,0 +170745560178,217,0 +170745560227,216,0 +170745560275,216,0 +170745560325,216,0 +170745560373,216,0 +170745560421,216,0 +170745560469,216,0 +170745560517,216,0 +170745560566,215,0 +170745560616,216,0 +170745560664,217,0 +170745560713,218,0 +170745560761,219,0 +170745560809,222,0 +170745560859,225,0 +170745560907,226,0 +170745560955,229,0 +170745561004,232,0 +170745561052,233,0 +170745561100,232,0 +170745561148,238,0 +170745561196,237,0 +170745561246,221,0 +170745561294,216,0 +170745561342,216,0 +170745561390,215,0 +170745561438,216,0 +170745561487,215,0 +170745561535,215,0 +170745561585,216,0 +170745561634,216,0 +170745561684,217,0 +170745561732,218,0 +170745561780,218,0 +170745561828,219,0 +170745561877,222,0 +170745561927,224,0 +170745561975,227,0 +170745562024,228,0 +170745562074,232,0 +170745562122,231,0 +170745562170,233,0 +170745562218,235,0 +170745562265,236,0 +170745562313,237,0 +170745562361,219,0 +170745562409,216,0 +170745562459,215,0 +170745562507,215,0 +170745562554,215,0 +170745562602,215,0 +170745562650,215,0 +170745562698,215,0 +170745562746,215,0 +170745562794,215,0 +170745562842,215,0 +170745562891,215,0 +170745562939,215,0 +170745562987,216,0 +170745563035,217,0 +170745563083,219,0 +170745563131,220,0 +170745563179,222,0 +170745563228,225,0 +170745563276,226,0 +170745563324,229,0 +170745563372,233,0 +170745563420,239,0 +170745563468,234,0 +170745563516,217,0 +170745563565,215,0 +170745563615,215,0 +170745563665,215,0 +170745563713,215,0 +170745563762,215,0 +170745563810,216,0 +170745563858,216,0 +170745563908,217,0 +170745563957,218,0 +170745564007,218,0 +170745564055,219,0 +170745564104,220,0 +170745564152,222,0 +170745564202,225,0 +170745564250,227,0 +170745564298,230,0 +170745564346,231,0 +170745564394,232,0 +170745564441,233,0 +170745564491,237,0 +170745564539,239,0 +170745564587,234,0 +170745564635,217,0 +170745564685,215,0 +170745564734,215,0 +170745564784,215,0 +170745564832,216,0 +170745564881,216,0 +170745564929,217,0 +170745564979,218,0 +170745565027,219,0 +170745565075,219,0 +170745565124,220,0 +170745565172,220,0 +170745565220,224,0 +170745565268,226,0 +170745565316,228,0 +170745565365,232,0 +170745565415,232,0 +170745565463,235,0 +170745565512,234,0 +170745565560,238,0 +170745565608,235,0 +170745565656,239,0 +170745565704,225,0 +170745565754,216,0 +170745565804,215,0 +170745565853,215,0 +170745565901,215,0 +170745565949,215,0 +170745565997,215,0 +170745566045,215,0 +170745566094,216,0 +170745566144,217,0 +170745566193,218,0 +170745566243,219,0 +170745566292,220,0 +170745566342,220,0 +170745566390,222,0 +170745566438,225,0 +170745566488,228,0 +170745566537,230,0 +170745566585,233,0 +170745566635,233,0 +170745566684,235,0 +170745566732,237,0 +170745566780,239,0 +170745566830,232,0 +170745566879,216,0 +170745566927,215,0 +170745566977,215,0 +170745567026,215,0 +170745567076,215,0 +170745567124,214,0 +170745567172,215,0 +170745567220,214,0 +170745567268,215,0 +170745567317,215,0 +170745567367,215,0 +170745567416,215,0 +170745567464,215,0 +170745567512,237,0 +170745567562,217,0 +170745567611,219,0 +170745567659,220,0 +170745567709,223,0 +170745567757,225,0 +170745567805,228,0 +170745567854,238,0 +170745567904,240,0 +170745567953,219,0 +170745568003,215,0 +170745568051,215,0 +170745568099,215,0 +170745568148,215,0 +170745568198,215,0 +170745568246,215,0 +170745568294,216,0 +170745568342,216,0 +170745568390,217,0 +170745568439,217,0 +170745568487,218,0 +170745568537,219,0 +170745568586,220,0 +170745568634,222,0 +170745568682,228,0 +170745568731,227,0 +170745568779,230,0 +170745568827,231,0 +170745568875,232,0 +170745568923,234,0 +170745568971,237,0 +170745569019,239,0 +170745569069,219,0 +170745569117,217,0 +170745569165,216,0 +170745569212,215,0 +170745569260,219,0 +170745569308,216,0 +170745569358,217,0 +170745569407,217,0 +170745569457,218,0 +170745569505,218,0 +170745569553,219,0 +170745569603,221,0 +170745569651,221,0 +170745569699,223,0 +170745569748,227,0 +170745569798,228,0 +170745569846,230,0 +170745569894,231,0 +170745569941,232,0 +170745569990,234,0 +170745570039,235,0 +170745570087,232,0 +170745570136,238,0 +170745570184,234,0 +170745570234,216,0 +170745570282,215,0 +170745570330,215,0 +170745570378,216,0 +170745570426,217,0 +170745570475,217,0 +170745570523,218,0 +170745570571,219,0 +170745570621,220,0 +170745570670,222,0 +170745570720,222,0 +170745570769,225,0 +170745570817,231,0 +170745570867,230,0 +170745570916,231,0 +170745570964,232,0 +170745571012,238,0 +170745571060,236,0 +170745571110,238,0 +170745571158,236,0 +170745571206,234,0 +170745571254,239,0 +170745571301,239,0 +170745571351,217,0 +170745571399,215,0 +170745571447,215,0 +170745571495,216,0 +170745571542,216,0 +170745571590,217,0 +170745571638,218,0 +170745571686,218,0 +170745571736,219,0 +170745571784,230,0 +170745571832,226,0 +170745571881,223,0 +170745571929,226,0 +170745571979,228,0 +170745572028,232,0 +170745572078,232,0 +170745572125,234,0 +170745572175,235,0 +170745572223,239,0 +170745572273,237,0 +170745572321,239,0 +170745572370,239,0 +170745572418,239,0 +170745572468,218,0 +170745572517,215,0 +170745572567,215,0 +170745572615,215,0 +170745572662,215,0 +170745572710,216,0 +170745572760,216,0 +170745572808,216,0 +170745572856,217,0 +170745572903,217,0 +170745572951,218,0 +170745572999,219,0 +170745573047,222,0 +170745573095,224,0 +170745573143,226,0 +170745573191,229,0 +170745573240,232,0 +170745573288,233,0 +170745573337,235,0 +170745573385,235,0 +170745573433,235,0 +170745573483,237,0 +170745573531,238,0 +170745573579,219,0 +170745573628,216,0 +170745573676,217,0 +170745573724,219,0 +170745573772,218,0 +170745573820,218,0 +170745573868,219,0 +170745573916,220,0 +170745573963,221,0 +170745574013,222,0 +170745574061,223,0 +170745574109,224,0 +170745574157,228,0 +170745574205,231,0 +170745574253,232,0 +170745574300,233,0 +170745574348,235,0 +170745574396,237,0 +170745574444,237,0 +170745574492,240,0 +170745574541,240,0 +170745574589,240,0 +170745574639,238,0 +170745574687,221,0 +170745574735,216,0 +170745574784,216,0 +170745574832,217,0 +170745574880,217,0 +170745574930,218,0 +170745574979,219,0 +170745575027,219,0 +170745575075,220,0 +170745575123,224,0 +170745575171,227,0 +170745575219,224,0 +170745575267,228,0 +170745575316,228,0 +170745575366,232,0 +170745575416,235,0 +170745575463,234,0 +170745575511,235,0 +170745575559,237,0 +170745575609,239,0 +170745575657,239,0 +170745575705,239,0 +170745575753,238,0 +170745575802,221,0 +170745575850,215,0 +170745575898,215,0 +170745575946,215,0 +170745575995,215,0 +170745576043,216,0 +170745576091,220,0 +170745576139,217,0 +170745576187,217,0 +170745576237,218,0 +170745576285,218,0 +170745576333,219,0 +170745576381,221,0 +170745576429,226,0 +170745576478,227,0 +170745576528,229,0 +170745576578,231,0 +170745576626,231,0 +170745576675,234,0 +170745576723,235,0 +170745576771,239,0 +170745576819,239,0 +170745576867,237,0 +170745576916,221,0 +170745576966,215,0 +170745577015,215,0 +170745577063,215,0 +170745577111,215,0 +170745577161,215,0 +170745577209,215,0 +170745577258,215,0 +170745577306,215,0 +170745577354,215,0 +170745577402,216,0 +170745577450,216,0 +170745577498,217,0 +170745577546,218,0 +170745577594,219,0 +170745577642,220,0 +170745577690,222,0 +170745577738,224,0 +170745577788,226,0 +170745577836,228,0 +170745577883,231,0 +170745577931,236,0 +170745577979,239,0 +170745578027,236,0 +170745578075,218,0 +170745578123,217,0 +170745578172,218,0 +170745578222,219,0 +170745578270,219,0 +170745578319,220,0 +170745578367,220,0 +170745578415,220,0 +170745578463,221,0 +170745578513,222,0 +170745578561,223,0 +170745578609,226,0 +170745578657,230,0 +170745578706,230,0 +170745578754,231,0 +170745578804,234,0 +170745578852,237,0 +170745578901,238,0 +170745578949,238,0 +170745578997,239,0 +170745579045,236,0 +170745579093,241,0 +170745579143,236,0 +170745579192,217,0 +170745579242,215,0 +170745579291,215,0 +170745579341,215,0 +170745579389,215,0 +170745579437,215,0 +170745579485,217,0 +170745579533,217,0 +170745579581,217,0 +170745579630,217,0 +170745579680,219,0 +170745579728,220,0 +170745579777,222,0 +170745579827,224,0 +170745579876,227,0 +170745579924,228,0 +170745579974,229,0 +170745580023,232,0 +170745580071,235,0 +170745580119,234,0 +170745580169,230,0 +170745580217,237,0 +170745580266,229,0 +170745580316,216,0 +170745580364,215,0 +170745580413,215,0 +170745580461,215,0 +170745580509,215,0 +170745580557,215,0 +170745580605,215,0 +170745580653,215,0 +170745580701,216,0 +170745580749,216,0 +170745580797,217,0 +170745580845,219,0 +170745580894,222,0 +170745580942,225,0 +170745580990,226,0 +170745581039,231,0 +170745581089,229,0 +170745581137,232,0 +170745581185,232,0 +170745581233,234,0 +170745581282,233,0 +170745581332,237,0 +170745581382,224,0 +170745581429,216,0 +170745581477,216,0 +170745581525,216,0 +170745581575,217,0 +170745581623,218,0 +170745581672,218,0 +170745581722,219,0 +170745581769,220,0 +170745581817,220,0 +170745581867,223,0 +170745581915,225,0 +170745581963,227,0 +170745582011,229,0 +170745582058,231,0 +170745582106,233,0 +170745582156,233,0 +170745582204,235,0 +170745582252,236,0 +170745582301,238,0 +170745582351,239,0 +170745582400,236,0 +170745582448,237,0 +170745582498,239,0 +170745582546,217,0 +170745582594,215,0 +170745582642,215,0 +170745582691,215,0 +170745582739,215,0 +170745582789,216,0 +170745582837,217,0 +170745582884,218,0 +170745582934,218,0 +170745582982,219,0 +170745583030,221,0 +170745583078,224,0 +170745583126,226,0 +170745583175,227,0 +170745583223,228,0 +170745583271,231,0 +170745583319,233,0 +170745583367,235,0 +170745583417,236,0 +170745583466,244,0 +170745583514,237,0 +170745583564,238,0 +170745583613,238,0 +170745583661,218,0 +170745583709,215,0 +170745583759,215,0 +170745583808,215,0 +170745583858,216,0 +170745583906,217,0 +170745583955,217,0 +170745584003,219,0 +170745584051,219,0 +170745584101,221,0 +170745584149,222,0 +170745584197,224,0 +170745584245,227,0 +170745584292,229,0 +170745584340,230,0 +170745584390,233,0 +170745584438,231,0 +170745584486,237,0 +170745584534,235,0 +170745584583,236,0 +170745584631,237,0 +170745584679,238,0 +170745584727,237,0 +170745584777,217,0 +170745584825,215,0 +170745584874,215,0 +170745584922,216,0 +170745584972,217,0 +170745585020,217,0 +170745585068,218,0 +170745585116,218,0 +170745585164,220,0 +170745585212,222,0 +170745585260,225,0 +170745585308,226,0 +170745585356,228,0 +170745585404,231,0 +170745585451,231,0 +170745585499,233,0 +170745585549,234,0 +170745585597,234,0 +170745585646,235,0 +170745585696,236,0 +170745585744,237,0 +170745585793,239,0 +170745585841,237,0 +170745585889,220,0 +170745585937,215,0 +170745585985,215,0 +170745586035,215,0 +170745586083,215,0 +170745586132,215,0 +170745586182,215,0 +170745586231,215,0 +170745586281,215,0 +170745586329,216,0 +170745586378,217,0 +170745586426,219,0 +170745586474,223,0 +170745586522,224,0 +170745586572,226,0 +170745586621,230,0 +170745586669,231,0 +170745586717,231,0 +170745586765,232,0 +170745586813,235,0 +170745586863,235,0 +170745586912,239,0 +170745586962,237,0 +170745587011,220,0 +170745587061,215,0 +170745587109,215,0 +170745587157,215,0 +170745587205,215,0 +170745587253,215,0 +170745587302,215,0 +170745587350,215,0 +170745587400,215,0 +170745587449,216,0 +170745587497,216,0 +170745587547,217,0 +170745587595,218,0 +170745587644,220,0 +170745587694,224,0 +170745587743,226,0 +170745587791,229,0 +170745587839,230,0 +170745587887,231,0 +170745587935,232,0 +170745587983,234,0 +170745588031,237,0 +170745588081,237,0 +170745588129,220,0 +170745588177,216,0 +170745588226,215,0 +170745588274,215,0 +170745588322,216,0 +170745588372,216,0 +170745588421,217,0 +170745588469,217,0 +170745588517,218,0 +170745588565,218,0 +170745588613,219,0 +170745588661,220,0 +170745588709,222,0 +170745588759,225,0 +170745588808,227,0 +170745588856,230,0 +170745588905,231,0 +170745588953,234,0 +170745589001,234,0 +170745589051,235,0 +170745589099,237,0 +170745589147,238,0 +170745589196,239,0 +170745589244,221,0 +170745589292,216,0 +170745589342,215,0 +170745589391,215,0 +170745589439,215,0 +170745589489,215,0 +170745589538,215,0 +170745589586,216,0 +170745589634,216,0 +170745589684,217,0 +170745589733,218,0 +170745589781,219,0 +170745589829,220,0 +170745589879,223,0 +170745589927,226,0 +170745589976,228,0 +170745590026,228,0 +170745590075,231,0 +170745590123,233,0 +170745590171,233,0 +170745590219,235,0 +170745590267,237,0 +170745590317,237,0 +170745590364,221,0 +170745590414,216,0 +170745590462,215,0 +170745590510,215,0 +170745590560,215,0 +170745590608,215,0 +170745590657,215,0 +170745590707,215,0 +170745590755,216,0 +170745590804,217,0 +170745590852,217,0 +170745590900,219,0 +170745590948,220,0 +170745590996,223,0 +170745591044,224,0 +170745591091,228,0 +170745591139,229,0 +170745591187,231,0 +170745591235,232,0 +170745591283,233,0 +170745591331,233,0 +170745591379,238,0 +170745591427,240,0 +170745591474,220,0 +170745591522,215,0 +170745591570,215,0 +170745591618,215,0 +170745591666,215,0 +170745591714,216,0 +170745591763,216,0 +170745591811,217,0 +170745591861,218,0 +170745591910,218,0 +170745591960,218,0 +170745592008,219,0 +170745592057,222,0 +170745592107,226,0 +170745592156,227,0 +170745592204,230,0 +170745592252,231,0 +170745592300,232,0 +170745592348,236,0 +170745592396,234,0 +170745592444,237,0 +170745592494,238,0 +170745592542,240,0 +170745592589,219,0 +170745592638,216,0 +170745592687,215,0 +170745592737,216,0 +170745592785,215,0 +170745592834,215,0 +170745592882,215,0 +170745592931,215,0 +170745592979,215,0 +170745593027,216,0 +170745593075,217,0 +170745593123,218,0 +170745593171,218,0 +170745593221,220,0 +170745593269,222,0 +170745593318,224,0 +170745593368,227,0 +170745593416,228,0 +170745593464,231,0 +170745593513,231,0 +170745593561,233,0 +170745593611,235,0 +170745593660,239,0 +170745593708,228,0 +170745593758,216,0 +170745593807,215,0 +170745593855,215,0 +170745593903,215,0 +170745593951,215,0 +170745594001,215,0 +170745594049,215,0 +170745594097,215,0 +170745594146,216,0 +170745594196,216,0 +170745594244,217,0 +170745594292,218,0 +170745594340,220,0 +170745594389,223,0 +170745594439,225,0 +170745594488,228,0 +170745594536,230,0 +170745594586,234,0 +170745594634,233,0 +170745594681,234,0 +170745594729,232,0 +170745594777,238,0 +170745594827,222,0 +170745594876,216,0 +170745594924,216,0 +170745594972,216,0 +170745595022,215,0 +170745595070,216,0 +170745595119,216,0 +170745595167,215,0 +170745595217,216,0 +170745595265,215,0 +170745595313,216,0 +170745595362,216,0 +170745595412,217,0 +170745595460,218,0 +170745595510,220,0 +170745595557,222,0 +170745595607,225,0 +170745595657,227,0 +170745595704,227,0 +170745595752,230,0 +170745595800,232,0 +170745595848,230,0 +170745595898,238,0 +170745595946,236,0 +170745595994,217,0 +170745596042,216,0 +170745596090,217,0 +170745596138,217,0 +170745596186,218,0 +170745596235,218,0 +170745596283,219,0 +170745596331,220,0 +170745596381,220,0 +170745596429,222,0 +170745596478,223,0 +170745596526,226,0 +170745596576,227,0 +170745596625,229,0 +170745596673,231,0 +170745596721,234,0 +170745596769,235,0 +170745596817,235,0 +170745596867,240,0 +170745596915,238,0 +170745596963,233,0 +170745597011,237,0 +170745597059,236,0 +170745597108,216,0 +170745597156,214,0 +170745597204,215,0 +170745597252,214,0 +170745597300,215,0 +170745597349,215,0 +170745597399,214,0 +170745597447,215,0 +170745597495,215,0 +170745597543,215,0 +170745597591,215,0 +170745597640,214,0 +170745597690,214,0 +170745597739,215,0 +170745597787,214,0 +170745597835,215,0 +170745597883,216,0 +170745597931,217,0 +170745597979,219,0 +170745598028,222,0 +170745598076,224,0 +170745598124,238,0 +170745598174,237,0 +170745598222,217,0 +170745598270,215,0 +170745598319,215,0 +170745598367,216,0 +170745598415,216,0 +170745598463,216,0 +170745598513,217,0 +170745598561,217,0 +170745598610,218,0 +170745598660,219,0 +170745598708,220,0 +170745598756,221,0 +170745598805,223,0 +170745598855,225,0 +170745598902,228,0 +170745598952,229,0 +170745599000,231,0 +170745599050,234,0 +170745599098,234,0 +170745599146,235,0 +170745599194,235,0 +170745599242,238,0 +170745599291,237,0 +170745599341,217,0 +170745599389,215,0 +170745599437,215,0 +170745599486,215,0 +170745599534,216,0 +170745599582,216,0 +170745599630,217,0 +170745599678,217,0 +170745599726,218,0 +170745599774,218,0 +170745599822,219,0 +170745599871,221,0 +170745599921,223,0 +170745599969,225,0 +170745600017,229,0 +170745600064,230,0 +170745600114,232,0 +170745600162,232,0 +170745600212,238,0 +170745600259,236,0 +170745600309,235,0 +170745600357,238,0 +170745600406,238,0 +170745600456,217,0 +170745600504,215,0 +170745600553,215,0 +170745600601,216,0 +170745600651,216,0 +170745600699,217,0 +170745600747,217,0 +170745600796,222,0 +170745600844,219,0 +170745600894,219,0 +170745600942,221,0 +170745600990,223,0 +170745601038,228,0 +170745601087,227,0 +170745601135,229,0 +170745601183,231,0 +170745601233,232,0 +170745601281,232,0 +170745601330,235,0 +170745601378,237,0 +170745601428,235,0 +170745601476,239,0 +170745601524,237,0 +170745601572,217,0 +170745601621,215,0 +170745601669,215,0 +170745601719,215,0 +170745601767,215,0 +170745601815,215,0 +170745601864,216,0 +170745601914,216,0 +170745601963,217,0 +170745602013,217,0 +170745602062,218,0 +170745602110,219,0 +170745602158,222,0 +170745602208,224,0 +170745602257,226,0 +170745602305,230,0 +170745602353,230,0 +170745602403,233,0 +170745602451,234,0 +170745602499,234,0 +170745602547,236,0 +170745602595,238,0 +170745602643,237,0 +170745602691,217,0 +170745602738,215,0 +170745602786,215,0 +170745602834,215,0 +170745602882,215,0 +170745602930,215,0 +170745602978,215,0 +170745603026,215,0 +170745603074,215,0 +170745603122,216,0 +170745603170,217,0 +170745603219,218,0 +170745603267,219,0 +170745603315,222,0 +170745603363,224,0 +170745603411,227,0 +170745603458,230,0 +170745603506,229,0 +170745603554,231,0 +170745603602,233,0 +170745603650,234,0 +170745603698,236,0 +170745603746,237,0 +170745603794,220,0 +170745603842,215,0 +170745603890,215,0 +170745603937,215,0 +170745603985,215,0 +170745604035,215,0 +170745604083,215,0 +170745604131,216,0 +170745604179,216,0 +170745604228,217,0 +170745604276,218,0 +170745604324,219,0 +170745604374,219,0 +170745604423,221,0 +170745604471,224,0 +170745604519,227,0 +170745604567,228,0 +170745604615,232,0 +170745604663,231,0 +170745604711,233,0 +170745604759,234,0 +170745604808,238,0 +170745604856,238,0 +170745604904,220,0 +170745604951,216,0 +170745604999,215,0 +170745605049,215,0 +170745605097,215,0 +170745605145,215,0 +170745605193,216,0 +170745605240,217,0 +170745605288,217,0 +170745605336,218,0 +170745605384,219,0 +170745605432,221,0 +170745605480,223,0 +170745605528,225,0 +170745605576,227,0 +170745605624,229,0 +170745605674,231,0 +170745605722,232,0 +170745605771,234,0 +170745605819,235,0 +170745605867,236,0 +170745605915,237,0 +170745605963,238,0 +170745606011,222,0 +170745606061,216,0 +170745606110,215,0 +170745606160,216,0 +170745606208,216,0 +170745606257,217,0 +170745606307,218,0 +170745606355,218,0 +170745606403,219,0 +170745606452,219,0 +170745606502,226,0 +170745606550,223,0 +170745606598,224,0 +170745606647,227,0 +170745606695,228,0 +170745606743,231,0 +170745606791,233,0 +170745606839,234,0 +170745606887,234,0 +170745606935,236,0 +170745606985,237,0 +170745607033,235,0 +170745607082,238,0 +170745607131,233,0 +170745607179,216,0 +170745607229,215,0 +170745607277,215,0 +170745607325,215,0 +170745607372,215,0 +170745607420,215,0 +170745607468,215,0 +170745607516,215,0 +170745607566,215,0 +170745607615,216,0 +170745607663,217,0 +170745607711,217,0 +170745607759,218,0 +170745607809,221,0 +170745607858,224,0 +170745607908,227,0 +170745607956,227,0 +170745608005,229,0 +170745608053,231,0 +170745608103,232,0 +170745608151,236,0 +170745608199,238,0 +170745608247,218,0 +170745608295,216,0 +170745608344,217,0 +170745608394,217,0 +170745608442,218,0 +170745608489,218,0 +170745608537,219,0 +170745608587,219,0 +170745608637,222,0 +170745608686,223,0 +170745608734,225,0 +170745608782,226,0 +170745608831,229,0 +170745608879,230,0 +170745608927,232,0 +170745608975,234,0 +170745609023,235,0 +170745609073,236,0 +170745609122,237,0 +170745609170,239,0 +170745609218,237,0 +170745609266,239,0 +170745609314,238,0 +170745609362,234,0 +170745609412,216,0 +170745609460,215,0 +170745609509,216,0 +170745609559,217,0 +170745609607,217,0 +170745609655,217,0 +170745609704,218,0 +170745609754,219,0 +170745609802,220,0 +170745609850,222,0 +170745609899,224,0 +170745609947,227,0 +170745609995,229,0 +170745610045,231,0 +170745610094,232,0 +170745610144,233,0 +170745610192,235,0 +170745610240,236,0 +170745610288,237,0 +170745610336,237,0 +170745610385,237,0 +170745610435,239,0 +170745610483,237,0 +170745610531,217,0 +170745610580,215,0 +170745610628,215,0 +170745610678,215,0 +170745610727,216,0 +170745610775,216,0 +170745610825,217,0 +170745610873,217,0 +170745610921,218,0 +170745610970,219,0 +170745611018,219,0 +170745611068,221,0 +170745611116,224,0 +170745611165,226,0 +170745611213,229,0 +170745611261,232,0 +170745611311,232,0 +170745611360,234,0 +170745611408,236,0 +170745611458,235,0 +170745611507,231,0 +170745611557,239,0 +170745611605,233,0 +170745611654,216,0 +170745611702,215,0 +170745611752,215,0 +170745611800,215,0 +170745611848,215,0 +170745611897,215,0 +170745611945,215,0 +170745611993,215,0 +170745612041,215,0 +170745612089,215,0 +170745612139,215,0 +170745612188,215,0 +170745612238,216,0 +170745612286,217,0 +170745612335,217,0 +170745612385,219,0 +170745612433,221,0 +170745612482,224,0 +170745612532,226,0 +170745612582,228,0 +170745612630,235,0 +170745612678,238,0 +170745612726,220,0 +170745612775,216,0 +170745612825,216,0 +170745612874,217,0 +170745612922,217,0 +170745612970,218,0 +170745613018,218,0 +170745613068,219,0 +170745613117,220,0 +170745613165,221,0 +170745613215,221,0 +170745613263,223,0 +170745613311,225,0 +170745613359,227,0 +170745613406,231,0 +170745613454,230,0 +170745613504,231,0 +170745613552,233,0 +170745613600,234,0 +170745613649,234,0 +170745613697,236,0 +170745613746,231,0 +170745613794,237,0 +170745613842,238,0 +170745613890,217,0 +170745613938,215,0 +170745613986,215,0 +170745614035,215,0 +170745614085,215,0 +170745614133,215,0 +170745614180,216,0 +170745614228,217,0 +170745614276,217,0 +170745614324,219,0 +170745614374,219,0 +170745614421,220,0 +170745614469,223,0 +170745614517,226,0 +170745614565,228,0 +170745614615,229,0 +170745614664,232,0 +170745614712,233,0 +170745614760,233,0 +170745614808,235,0 +170745614856,235,0 +170745614904,238,0 +170745614952,237,0 +170745615000,218,0 +170745615050,215,0 +170745615098,215,0 +170745615147,216,0 +170745615195,215,0 +170745615243,215,0 +170745615291,215,0 +170745615340,215,0 +170745615388,214,0 +170745615436,215,0 +170745615486,217,0 +170745615534,218,0 +170745615582,218,0 +170745615631,220,0 +170745615679,223,0 +170745615727,226,0 +170745615777,227,0 +170745615825,230,0 +170745615875,233,0 +170745615924,233,0 +170745615973,233,0 +170745616023,238,0 +170745616071,237,0 +170745616121,217,0 +170745616170,215,0 +170745616220,215,0 +170745616268,215,0 +170745616317,216,0 +170745616365,216,0 +170745616413,217,0 +170745616462,217,0 +170745616512,218,0 +170745616560,218,0 +170745616608,220,0 +170745616657,228,0 +170745616705,223,0 +170745616753,226,0 +170745616801,228,0 +170745616850,230,0 +170745616898,231,0 +170745616948,233,0 +170745616997,235,0 +170745617045,233,0 +170745617095,237,0 +170745617143,238,0 +170745617191,239,0 +170745617238,219,0 +170745617286,216,0 +170745617334,215,0 +170745617384,215,0 +170745617432,215,0 +170745617480,215,0 +170745617528,215,0 +170745617576,216,0 +170745617625,216,0 +170745617673,215,0 +170745617721,215,0 +170745617769,216,0 +170745617817,216,0 +170745617865,218,0 +170745617914,218,0 +170745617964,221,0 +170745618012,223,0 +170745618060,226,0 +170745618108,228,0 +170745618157,229,0 +170745618207,230,0 +170745618254,236,0 +170745618304,237,0 +170745618352,220,0 +170745618401,215,0 +170745618449,215,0 +170745618497,215,0 +170745618545,215,0 +170745618593,215,0 +170745618641,216,0 +170745618688,217,0 +170745618736,217,0 +170745618784,218,0 +170745618834,219,0 +170745618883,221,0 +170745618931,223,0 +170745618979,226,0 +170745619027,234,0 +170745619077,230,0 +170745619125,233,0 +170745619173,235,0 +170745619222,234,0 +170745619270,235,0 +170745619320,237,0 +170745619368,237,0 +170745619416,238,0 +170745619465,221,0 +170745619513,215,0 +170745619561,215,0 +170745619609,215,0 +170745619659,215,0 +170745619706,215,0 +170745619756,215,0 +170745619804,215,0 +170745619852,215,0 +170745619900,215,0 +170745619948,216,0 +170745619997,216,0 +170745620047,218,0 +170745620096,220,0 +170745620144,222,0 +170745620192,224,0 +170745620240,226,0 +170745620288,229,0 +170745620336,230,0 +170745620384,231,0 +170745620432,232,0 +170745620479,236,0 +170745620527,236,0 +170745620575,219,0 +170745620623,215,0 +170745620671,215,0 +170745620719,215,0 +170745620767,216,0 +170745620815,216,0 +170745620864,217,0 +170745620912,217,0 +170745620962,218,0 +170745621010,219,0 +170745621059,219,0 +170745621109,219,0 +170745621157,221,0 +170745621206,223,0 +170745621254,225,0 +170745621304,228,0 +170745621353,230,0 +170745621401,230,0 +170745621451,232,0 +170745621499,233,0 +170745621548,235,0 +170745621596,236,0 +170745621644,238,0 +170745621692,218,0 +170745621740,216,0 +170745621788,215,0 +170745621837,215,0 +170745621885,215,0 +170745621935,215,0 +170745621983,215,0 +170745622031,216,0 +170745622079,216,0 +170745622127,216,0 +170745622175,218,0 +170745622224,218,0 +170745622272,218,0 +170745622320,221,0 +170745622368,223,0 +170745622416,227,0 +170745622464,228,0 +170745622513,230,0 +170745622561,231,0 +170745622609,233,0 +170745622657,235,0 +170745622705,230,0 +170745622753,238,0 +170745622803,236,0 +170745622850,216,0 +170745622900,215,0 +170745622950,215,0 +170745622997,215,0 +170745623045,215,0 +170745623093,217,0 +170745623143,216,0 +170745623193,216,0 +170745623241,217,0 +170745623289,218,0 +170745623338,218,0 +170745623386,220,0 +170745623435,222,0 +170745623483,225,0 +170745623531,227,0 +170745623581,228,0 +170745623630,230,0 +170745623678,231,0 +170745623726,233,0 +170745623776,234,0 +170745623825,231,0 +170745623873,238,0 +170745623921,226,0 +170745623971,216,0 +170745624019,215,0 +170745624067,215,0 +170745624116,215,0 +170745624164,215,0 +170745624212,215,0 +170745624261,215,0 +170745624311,214,0 +170745624360,214,0 +170745624408,215,0 +170745624456,217,0 +170745624504,217,0 +170745624552,219,0 +170745624600,221,0 +170745624648,224,0 +170745624696,226,0 +170745624745,227,0 +170745624795,229,0 +170745624843,232,0 +170745624892,234,0 +170745624940,235,0 +170745624988,237,0 +170745625036,237,0 +170745625084,221,0 +170745625131,216,0 +170745625181,216,0 +170745625230,216,0 +170745625278,216,0 +170745625326,217,0 +170745625374,216,0 +170745625422,216,0 +170745625470,217,0 +170745625519,217,0 +170745625567,218,0 +170745625615,219,0 +170745625663,221,0 +170745625711,222,0 +170745625759,226,0 +170745625807,227,0 +170745625856,230,0 +170745625904,231,0 +170745625953,234,0 +170745626001,235,0 +170745626051,235,0 +170745626099,238,0 +170745626147,237,0 +170745626196,219,0 +170745626244,215,0 +170745626292,215,0 +170745626340,215,0 +170745626388,215,0 +170745626436,215,0 +170745626483,215,0 +170745626531,215,0 +170745626579,215,0 +170745626627,215,0 +170745626675,216,0 +170745626725,216,0 +170745626773,218,0 +170745626822,220,0 +170745626870,222,0 +170745626920,225,0 +170745626968,228,0 +170745627016,229,0 +170745627064,230,0 +170745627113,233,0 +170745627163,234,0 +170745627212,238,0 +170745627260,239,0 +170745627308,220,0 +170745627358,215,0 +170745627406,215,0 +170745627455,215,0 +170745627503,215,0 +170745627551,214,0 +170745627601,215,0 +170745627650,216,0 +170745627698,216,0 +170745627746,217,0 +170745627794,217,0 +170745627842,218,0 +170745627892,220,0 +170745627940,221,0 +170745627988,224,0 +170745628036,227,0 +170745628084,228,0 +170745628133,232,0 +170745628181,231,0 +170745628231,232,0 +170745628279,235,0 +170745628328,238,0 +170745628378,238,0 +170745628426,219,0 +170745628475,215,0 +170745628525,215,0 +170745628574,215,0 +170745628624,215,0 +170745628672,215,0 +170745628720,215,0 +170745628768,215,0 +170745628816,215,0 +170745628864,215,0 +170745628912,216,0 +170745628961,216,0 +170745629009,216,0 +170745629059,217,0 +170745629107,220,0 +170745629156,223,0 +170745629204,225,0 +170745629254,227,0 +170745629303,228,0 +170745629351,231,0 +170745629399,233,0 +170745629449,236,0 +170745629498,238,0 +170745629546,220,0 +170745629594,215,0 +170745629642,215,0 +170745629690,215,0 +170745629738,215,0 +170745629786,215,0 +170745629834,215,0 +170745629883,215,0 +170745629931,215,0 +170745629979,215,0 +170745630027,215,0 +170745630075,216,0 +170745630123,218,0 +170745630171,217,0 +170745630219,219,0 +170745630269,221,0 +170745630318,223,0 +170745630367,226,0 +170745630415,228,0 +170745630465,230,0 +170745630513,232,0 +170745630561,237,0 +170745630610,240,0 +170745630660,220,0 +170745630708,216,0 +170745630756,215,0 +170745630804,215,0 +170745630852,215,0 +170745630900,215,0 +170745630949,215,0 +170745630999,216,0 +170745631047,216,0 +170745631095,217,0 +170745631143,218,0 +170745631192,217,0 +170745631242,218,0 +170745631290,221,0 +170745631338,222,0 +170745631386,224,0 +170745631434,227,0 +170745631483,229,0 +170745631533,230,0 +170745631581,232,0 +170745631630,234,0 +170745631678,236,0 +170745631726,238,0 +170745631774,220,0 +170745631822,215,0 +170745631870,215,0 +170745631920,215,0 +170745631969,215,0 +170745632019,215,0 +170745632067,216,0 +170745632115,216,0 +170745632164,216,0 +170745632212,218,0 +170745632262,218,0 +170745632310,219,0 +170745632357,219,0 +170745632407,222,0 +170745632455,224,0 +170745632505,226,0 +170745632554,228,0 +170745632604,232,0 +170745632652,235,0 +170745632700,233,0 +170745632749,235,0 +170745632797,238,0 +170745632847,237,0 +170745632895,219,0 +170745632944,215,0 +170745632994,215,0 +170745633043,215,0 +170745633093,215,0 +170745633141,215,0 +170745633189,215,0 +170745633238,216,0 +170745633286,216,0 +170745633336,217,0 +170745633383,217,0 +170745633433,217,0 +170745633482,218,0 +170745633530,221,0 +170745633578,224,0 +170745633626,225,0 +170745633676,228,0 +170745633724,229,0 +170745633773,230,0 +170745633823,234,0 +170745633871,235,0 +170745633919,238,0 +170745633969,237,0 +170745634016,219,0 +170745634064,217,0 +170745634113,217,0 +170745634160,218,0 +170745634208,218,0 +170745634258,219,0 +170745634306,219,0 +170745634354,220,0 +170745634403,224,0 +170745634453,223,0 +170745634501,223,0 +170745634550,226,0 +170745634600,226,0 +170745634650,228,0 +170745634698,233,0 +170745634746,234,0 +170745634794,235,0 +170745634841,239,0 +170745634891,239,0 +170745634939,239,0 +170745634987,239,0 +170745635035,239,0 +170745635083,238,0 +170745635132,220,0 +170745635180,216,0 +170745635229,217,0 +170745635279,217,0 +170745635327,221,0 +170745635375,219,0 +170745635425,220,0 +170745635473,219,0 +170745635521,222,0 +170745635569,223,0 +170745635616,225,0 +170745635664,225,0 +170745635712,227,0 +170745635760,230,0 +170745635808,233,0 +170745635858,234,0 +170745635906,235,0 +170745635955,236,0 +170745636005,237,0 +170745636053,239,0 +170745636101,240,0 +170745636149,237,0 +170745636197,238,0 +170745636245,220,0 +170745636293,216,0 +170745636341,215,0 +170745636390,215,0 +170745636438,216,0 +170745636486,217,0 +170745636534,218,0 +170745636582,218,0 +170745636630,218,0 +170745636678,219,0 +170745636727,223,0 +170745636777,223,0 +170745636825,226,0 +170745636873,227,0 +170745636920,229,0 +170745636970,232,0 +170745637018,234,0 +170745637066,235,0 +170745637115,238,0 +170745637163,238,0 +170745637211,240,0 +170745637259,234,0 +170745637309,240,0 +170745637357,223,0 +170745637407,216,0 +170745637456,215,0 +170745637504,215,0 +170745637552,215,0 +170745637600,215,0 +170745637650,216,0 +170745637698,216,0 +170745637747,216,0 +170745637795,217,0 +170745637845,218,0 +170745637894,218,0 +170745637942,221,0 +170745637990,224,0 +170745638038,227,0 +170745638088,228,0 +170745638137,230,0 +170745638185,233,0 +170745638233,233,0 +170745638281,235,0 +170745638329,236,0 +170745638378,239,0 +170745638428,237,0 +170745638476,220,0 +170745638524,217,0 +170745638572,217,0 +170745638621,216,0 +170745638671,218,0 +170745638720,218,0 +170745638768,218,0 +170745638816,219,0 +170745638864,220,0 +170745638912,221,0 +170745638960,221,0 +170745639008,223,0 +170745639056,226,0 +170745639104,230,0 +170745639153,229,0 +170745639201,233,0 +170745639251,232,0 +170745639300,237,0 +170745639348,235,0 +170745639396,237,0 +170745639444,239,0 +170745639492,235,0 +170745639540,236,0 +170745639588,222,0 +170745639636,216,0 +170745639684,216,0 +170745639731,216,0 +170745639779,215,0 +170745639827,216,0 +170745639875,217,0 +170745639925,217,0 +170745639973,218,0 +170745640020,219,0 +170745640068,220,0 +170745640116,221,0 +170745640164,225,0 +170745640212,221,0 +170745640260,225,0 +170745640308,227,0 +170745640356,230,0 +170745640404,231,0 +170745640452,232,0 +170745640500,234,0 +170745640547,236,0 +170745640597,237,0 +170745640647,239,0 +170745640696,238,0 +170745640746,1010100,0 +170745640806,1010100,0 +170745640872,1010100,0 +170745640925,216,0 +170745640974,216,0 +170745641022,217,0 +170745641070,217,0 +170745641120,218,0 +170745641168,219,0 +170745641216,220,0 +170745641265,222,0 +170745641313,223,0 +170745641361,227,0 +170745641409,230,0 +170745641457,231,0 +170745641505,231,0 +170745641554,234,0 +170745641604,235,0 +170745641653,237,0 +170745641701,238,0 +170745641749,238,0 +170745641799,239,0 +170745641849,220,0 +170745641898,215,0 +170745641948,215,0 +170745641996,215,0 +170745642044,214,0 +170745642091,215,0 +170745642139,217,0 +170745642187,217,0 +170745642237,217,0 +170745642285,223,0 +170745642334,221,0 +170745642382,221,0 +170745642432,226,0 +170745642481,226,0 +170745642529,229,0 +170745642579,231,0 +170745642628,233,0 +170745642678,234,0 +170745642726,235,0 +170745642774,241,0 +170745642823,238,0 +170745642873,239,0 +170745642921,239,0 +170745642969,220,0 +170745643017,216,0 +170745643065,215,0 +170745643113,215,0 +170745643161,215,0 +170745643210,215,0 +170745643260,215,0 +170745643309,215,0 +170745643359,215,0 +170745643407,215,0 +170745643455,215,0 +170745643505,215,0 +170745643554,216,0 +170745643602,217,0 +170745643652,220,0 +170745643701,223,0 +170745643749,225,0 +170745643797,227,0 +170745643845,229,0 +170745643893,232,0 +170745643941,237,0 +170745643990,238,0 +170745644038,220,0 +170745644086,215,0 +170745644136,215,0 +170745644184,215,0 +170745644232,216,0 +170745644280,217,0 +170745644329,218,0 +170745644377,221,0 +170745644427,219,0 +170745644476,221,0 +170745644524,223,0 +170745644572,225,0 +170745644620,228,0 +170745644670,231,0 +170745644718,232,0 +170745644766,234,0 +170745644814,238,0 +170745644863,239,0 +170745644913,238,0 +170745644961,238,0 +170745645010,239,0 +170745645060,220,0 +170745645108,215,0 +170745645156,215,0 +170745645205,215,0 +170745645253,217,0 +170745645301,217,0 +170745645349,219,0 +170745645398,220,0 +170745645446,221,0 +170745645494,223,0 +170745645544,226,0 +170745645592,228,0 +170745645640,232,0 +170745645689,231,0 +170745645737,233,0 +170745645785,235,0 +170745645835,237,0 +170745645883,240,0 +170745645932,239,0 +170745645980,234,0 +170745646028,239,0 +170745646078,219,0 +170745646126,215,0 +170745646175,215,0 +170745646223,215,0 +170745646271,216,0 +170745646321,216,0 +170745646369,217,0 +170745646417,217,0 +170745646465,219,0 +170745646514,220,0 +170745646562,222,0 +170745646610,225,0 +170745646660,229,0 +170745646708,229,0 +170745646757,230,0 +170745646807,232,0 +170745646855,233,0 +170745646904,237,0 +170745646954,236,0 +170745647002,235,0 +170745647051,237,0 +170745647099,231,0 +170745647147,216,0 +170745647195,215,0 +170745647245,215,0 +170745647294,216,0 +170745647342,216,0 +170745647390,217,0 +170745647438,218,0 +170745647486,218,0 +170745647535,220,0 +170745647583,223,0 +170745647633,224,0 +170745647681,227,0 +170745647729,230,0 +170745647777,232,0 +170745647827,233,0 +170745647876,233,0 +170745647924,234,0 +170745647972,236,0 +170745648020,237,0 +170745648068,237,0 +170745648116,237,0 +170745648164,216,0 +170745648212,214,0 +170745648260,215,0 +170745648310,215,0 +170745648358,216,0 +170745648407,217,0 +170745648455,218,0 +170745648503,219,0 +170745648552,220,0 +170745648600,222,0 +170745648650,223,0 +170745648698,226,0 +170745648747,230,0 +170745648795,230,0 +170745648843,233,0 +170745648891,233,0 +170745648939,238,0 +170745648989,236,0 +170745649037,236,0 +170745649085,238,0 +170745649133,238,0 +170745649182,219,0 +170745649232,215,0 +170745649281,215,0 +170745649329,215,0 +170745649377,215,0 +170745649427,215,0 +170745649475,215,0 +170745649523,215,0 +170745649571,215,0 +170745649618,216,0 +170745649666,216,0 +170745649714,217,0 +170745649762,220,0 +170745649812,222,0 +170745649860,226,0 +170745649908,228,0 +170745649957,230,0 +170745650005,230,0 +170745650055,232,0 +170745650104,236,0 +170745650152,237,0 +170745650200,219,0 +170745650250,215,0 +170745650299,216,0 +170745650349,216,0 +170745650397,217,0 +170745650446,218,0 +170745650494,219,0 +170745650544,219,0 +170745650591,221,0 +170745650639,223,0 +170745650687,225,0 +170745650735,227,0 +170745650785,230,0 +170745650833,233,0 +170745650881,234,0 +170745650930,237,0 +170745650978,237,0 +170745651026,235,0 +170745651074,238,0 +170745651124,237,0 +170745651172,239,0 +170745651220,219,0 +170745651268,215,0 +170745651316,215,0 +170745651364,215,0 +170745651412,214,0 +170745651460,214,0 +170745651508,215,0 +170745651557,216,0 +170745651605,217,0 +170745651653,217,0 +170745651701,218,0 +170745651749,222,0 +170745651799,224,0 +170745651848,227,0 +170745651896,229,0 +170745651946,231,0 +170745651994,232,0 +170745652042,234,0 +170745652091,236,0 +170745652141,233,0 +170745652189,237,0 +170745652238,229,0 +170745652288,215,0 +170745652337,215,0 +170745652387,215,0 +170745652435,215,0 +170745652484,216,0 +170745652534,216,0 +170745652582,218,0 +170745652631,218,0 +170745652681,219,0 +170745652729,224,0 +170745652778,225,0 +170745652826,227,0 +170745652874,229,0 +170745652922,231,0 +170745652970,233,0 +170745653020,233,0 +170745653068,235,0 +170745653116,236,0 +170745653165,236,0 +170745653213,237,0 +170745653261,237,0 +170745653311,217,0 +170745653360,215,0 +170745653410,215,0 +170745653458,216,0 +170745653505,217,0 +170745653555,218,0 +170745653603,219,0 +170745653651,220,0 +170745653699,222,0 +170745653748,225,0 +170745653796,227,0 +170745653844,229,0 +170745653892,232,0 +170745653940,233,0 +170745653990,236,0 +170745654039,237,0 +170745654087,238,0 +170745654135,238,0 +170745654185,243,0 +170745654233,240,0 +170745654281,237,0 +170745654329,217,0 +170745654376,215,0 +170745654424,215,0 +170745654472,215,0 +170745654520,215,0 +170745654570,215,0 +170745654618,216,0 +170745654666,217,0 +170745654713,218,0 +170745654763,218,0 +170745654812,221,0 +170745654862,224,0 +170745654910,226,0 +170745654959,230,0 +170745655007,231,0 +170745655055,231,0 +170745655103,234,0 +170745655151,238,0 +170745655199,235,0 +170745655247,239,0 +170745655295,238,0 +170745655343,220,0 +170745655391,215,0 +170745655439,215,0 +170745655486,215,0 +170745655534,215,0 +170745655582,216,0 +170745655632,217,0 +170745655681,217,0 +170745655729,217,0 +170745655779,218,0 +170745655827,221,0 +170745655875,223,0 +170745655923,226,0 +170745655971,229,0 +170745656019,231,0 +170745656067,232,0 +170745656115,233,0 +170745656163,235,0 +170745656211,238,0 +170745656259,236,0 +170745656308,238,0 +170745656356,226,0 +170745656404,216,0 +170745656452,215,0 +170745656500,215,0 +170745656548,216,0 +170745656597,217,0 +170745656645,217,0 +170745656695,218,0 +170745656744,218,0 +170745656794,219,0 +170745656842,221,0 +170745656890,223,0 +170745656939,225,0 +170745656987,228,0 +170745657037,230,0 +170745657085,231,0 +170745657134,234,0 +170745657182,234,0 +170745657230,237,0 +170745657278,237,0 +170745657328,237,0 +170745657377,237,0 +170745657425,220,0 +170745657475,217,0 +170745657523,216,0 +170745657572,216,0 +170745657620,216,0 +170745657670,215,0 +170745657718,215,0 +170745657766,216,0 +170745657814,217,0 +170745657862,217,0 +170745657911,220,0 +170745657959,222,0 +170745658007,225,0 +170745658057,229,0 +170745658106,228,0 +170745658154,231,0 +170745658204,234,0 +170745658252,233,0 +170745658300,235,0 +170745658349,236,0 +170745658397,238,0 +170745658445,218,0 +170745658493,215,0 +170745658541,216,0 +170745658589,217,0 +170745658637,217,0 +170745658685,218,0 +170745658734,219,0 +170745658782,220,0 +170745658830,221,0 +170745658878,223,0 +170745658928,226,0 +170745658976,228,0 +170745659025,230,0 +170745659073,233,0 +170745659123,234,0 +170745659171,235,0 +170745659218,236,0 +170745659266,237,0 +170745659314,238,0 +170745659362,234,0 +170745659412,238,0 +170745659461,219,0 +170745659510,215,0 +170745659558,215,0 +170745659606,215,0 +170745659656,215,0 +170745659704,215,0 +170745659753,216,0 +170745659801,217,0 +170745659849,217,0 +170745659899,218,0 +170745659947,220,0 +170745659994,223,0 +170745660042,226,0 +170745660092,227,0 +170745660140,228,0 +170745660189,231,0 +170745660238,233,0 +170745660286,235,0 +170745660334,237,0 +170745660382,237,0 +170745660430,237,0 +170745660479,238,0 +170745660529,217,0 +170745660578,215,0 +170745660628,215,0 +170745660677,215,0 +170745660725,215,0 +170745660775,216,0 +170745660825,218,0 +170745660873,217,0 +170745660920,218,0 +170745660970,218,0 +170745661020,221,0 +170745661069,224,0 +170745661119,227,0 +170745661167,229,0 +170745661216,231,0 +170745661264,231,0 +170745661314,235,0 +170745661362,235,0 +170745661411,237,0 +170745661461,237,0 +170745661510,236,0 +170745661558,216,0 +170745661608,215,0 +170745661656,215,0 +170745661705,215,0 +170745661753,215,0 +170745661803,216,0 +170745661851,217,0 +170745661899,218,0 +170745661947,218,0 +170745661995,220,0 +170745662044,221,0 +170745662094,225,0 +170745662142,226,0 +170745662190,229,0 +170745662238,232,0 +170745662287,234,0 +170745662335,233,0 +170745662385,235,0 +170745662434,235,0 +170745662484,238,0 +170745662532,238,0 +170745662580,219,0 +170745662628,215,0 +170745662677,215,0 +170745662725,215,0 +170745662773,215,0 +170745662821,215,0 +170745662870,215,0 +170745662920,218,0 +170745662969,217,0 +170745663017,217,0 +170745663065,219,0 +170745663113,222,0 +170745663163,224,0 +170745663211,227,0 +170745663259,228,0 +170745663307,230,0 +170745663355,232,0 +170745663404,234,0 +170745663454,235,0 +170745663503,235,0 +170745663551,239,0 +170745663601,224,0 +170745663649,217,0 +170745663697,216,0 +170745663745,217,0 +170745663794,218,0 +170745663842,218,0 +170745663892,221,0 +170745663941,222,0 +170745663989,222,0 +170745664037,224,0 +170745664085,226,0 +170745664135,227,0 +170745664183,229,0 +170745664232,233,0 +170745664282,235,0 +170745664331,235,0 +170745664379,236,0 +170745664429,238,0 +170745664478,239,0 +170745664526,241,0 +170745664574,239,0 +170745664624,238,0 +170745664673,218,0 +170745664721,215,0 +170745664769,216,0 +170745664817,215,0 +170745664865,215,0 +170745664913,216,0 +170745664963,218,0 +170745665011,217,0 +170745665060,219,0 +170745665110,221,0 +170745665158,223,0 +170745665206,226,0 +170745665254,227,0 +170745665302,230,0 +170745665350,232,0 +170745665399,233,0 +170745665447,234,0 +170745665495,237,0 +170745665543,237,0 +170745665591,237,0 +170745665641,237,0 +170745665688,220,0 +170745665738,215,0 +170745665788,215,0 +170745665836,215,0 +170745665884,217,0 +170745665933,217,0 +170745665983,217,0 +170745666031,219,0 +170745666079,219,0 +170745666127,221,0 +170745666175,224,0 +170745666223,226,0 +170745666270,229,0 +170745666318,230,0 +170745666366,232,0 +170745666414,235,0 +170745666464,236,0 +170745666512,236,0 +170745666560,238,0 +170745666608,239,0 +170745666657,239,0 +170745666705,238,0 +170745666753,218,0 +170745666803,215,0 +170745666853,215,0 +170745666902,215,0 +170745666950,216,0 +170745667000,217,0 +170745667048,217,0 +170745667096,218,0 +170745667144,220,0 +170745667193,221,0 +170745667241,225,0 +170745667291,226,0 +170745667338,229,0 +170745667388,230,0 +170745667436,234,0 +170745667486,235,0 +170745667535,235,0 +170745667583,236,0 +170745667631,237,0 +170745667681,236,0 +170745667730,238,0 +170745667778,220,0 +170745667826,217,0 +170745667874,217,0 +170745667922,217,0 +170745667970,218,0 +170745668018,220,0 +170745668066,220,0 +170745668114,221,0 +170745668163,223,0 +170745668211,226,0 +170745668259,228,0 +170745668307,229,0 +170745668355,232,0 +170745668403,235,0 +170745668451,237,0 +170745668501,237,0 +170745668549,240,0 +170745668596,242,0 +170745668646,238,0 +170745668694,240,0 +170745668742,240,0 +170745668790,241,0 +170745668838,218,0 +170745668886,216,0 +170745668933,216,0 +170745668981,217,0 +170745669029,218,0 +170745669077,218,0 +170745669127,219,0 +170745669175,222,0 +170745669224,225,0 +170745669272,225,0 +170745669322,226,0 +170745669371,229,0 +170745669419,230,0 +170745669467,234,0 +170745669515,234,0 +170745669565,237,0 +170745669613,239,0 +170745669661,238,0 +170745669709,241,0 +170745669757,240,0 +170745669806,238,0 +170745669854,238,0 +170745669904,217,0 +170745669953,214,0 +170745670001,215,0 +170745670049,216,0 +170745670097,216,0 +170745670145,217,0 +170745670195,217,0 +170745670242,218,0 +170745670292,221,0 +170745670342,223,0 +170745670389,225,0 +170745670439,227,0 +170745670489,230,0 +170745670536,233,0 +170745670584,235,0 +170745670634,234,0 +170745670682,237,0 +170745670730,235,0 +170745670780,238,0 +170745670829,233,0 +170745670877,239,0 +170745670927,219,0 +170745670975,215,0 +170745671023,215,0 +170745671071,215,0 +170745671120,216,0 +170745671170,216,0 +170745671219,216,0 +170745671269,216,0 +170745671318,217,0 +170745671366,218,0 +170745671416,220,0 +170745671465,224,0 +170745671515,226,0 +170745671564,229,0 +170745671614,231,0 +170745671662,234,0 +170745671710,235,0 +170745671758,238,0 +170745671806,238,0 +170745671854,238,0 +170745671901,238,0 +170745671949,238,0 +170745671999,220,0 +170745672048,215,0 +170745672098,215,0 +170745672148,216,0 +170745672196,217,0 +170745672243,218,0 +170745672293,219,0 +170745672341,222,0 +170745672389,220,0 +170745672437,222,0 +170745672486,225,0 +170745672536,227,0 +170745672584,231,0 +170745672634,232,0 +170745672682,233,0 +170745672729,236,0 +170745672777,239,0 +170745672825,237,0 +170745672873,241,0 +170745672923,239,0 +170745672972,240,0 +170745673020,238,0 +170745673070,217,0 +170745673118,215,0 +170745673167,215,0 +170745673217,215,0 +170745673265,216,0 +170745673313,216,0 +170745673362,217,0 +170745673412,218,0 +170745673461,218,0 +170745673511,221,0 +170745673559,224,0 +170745673608,227,0 +170745673656,228,0 +170745673704,231,0 +170745673754,234,0 +170745673802,234,0 +170745673850,236,0 +170745673898,235,0 +170745673946,238,0 +170745673995,234,0 +170745674043,239,0 +170745674093,232,0 +170745674142,216,0 +170745674192,215,0 +170745674240,216,0 +170745674290,216,0 +170745674338,217,0 +170745674386,218,0 +170745674435,218,0 +170745674483,219,0 +170745674531,222,0 +170745674579,222,0 +170745674628,226,0 +170745674676,227,0 +170745674724,229,0 +170745674774,230,0 +170745674824,233,0 +170745674873,239,0 +170745674921,235,0 +170745674971,237,0 +170745675019,249,0 +170745675068,238,0 +170745675118,238,0 +170745675167,220,0 +170745675215,215,0 +170745675265,215,0 +170745675314,216,0 +170745675362,217,0 +170745675412,217,0 +170745675460,218,0 +170745675508,218,0 +170745675557,220,0 +170745675605,221,0 +170745675655,222,0 +170745675704,228,0 +170745675752,228,0 +170745675802,230,0 +170745675851,232,0 +170745675901,233,0 +170745675949,235,0 +170745675997,238,0 +170745676044,238,0 +170745676092,237,0 +170745676142,237,0 +170745676190,238,0 +170745676239,220,0 +170745676287,217,0 +170745676337,217,0 +170745676385,218,0 +170745676433,218,0 +170745676481,220,0 +170745676531,222,0 +170745676580,223,0 +170745676630,224,0 +170745676679,227,0 +170745676729,228,0 +170745676778,230,0 +170745676828,234,0 +170745676877,235,0 +170745676927,235,0 +170745676975,237,0 +170745677023,237,0 +170745677071,239,0 +170745677120,238,0 +170745677168,239,0 +170745677218,237,0 +170745677266,237,0 +170745677313,218,0 +170745677361,215,0 +170745677409,215,0 +170745677459,215,0 +170745677508,215,0 +170745677556,216,0 +170745677606,217,0 +170745677655,217,0 +170745677703,218,0 +170745677753,220,0 +170745677802,223,0 +170745677852,225,0 +170745677902,227,0 +170745677949,230,0 +170745677999,232,0 +170745678047,233,0 +170745678095,234,0 +170745678143,237,0 +170745678191,237,0 +170745678239,242,0 +170745678288,237,0 +170745678338,238,0 +170745678387,220,0 +170745678436,216,0 +170745678483,216,0 +170745678531,218,0 +170745678579,217,0 +170745678629,218,0 +170745678677,218,0 +170745678725,219,0 +170745678773,221,0 +170745678822,222,0 +170745678870,225,0 +170745678918,227,0 +170745678966,229,0 +170745679016,231,0 +170745679066,235,0 +170745679114,238,0 +170745679163,236,0 +170745679211,237,0 +170745679259,238,0 +170745679309,239,0 +170745679356,238,0 +170745679404,237,0 +170745679454,221,0 +170745679503,217,0 +170745679551,219,0 +170745679601,216,0 +170745679650,216,0 +170745679698,217,0 +170745679746,217,0 +170745679794,218,0 +170745679842,218,0 +170745679890,220,0 +170745679938,223,0 +170745679986,224,0 +170745680034,228,0 +170745680082,230,0 +170745680130,232,0 +170745680178,232,0 +170745680226,234,0 +170745680273,235,0 +170745680321,236,0 +170745680369,238,0 +170745680419,235,0 +170745680467,237,0 +170745680516,220,0 +170745680564,216,0 +170745680614,216,0 +170745680662,217,0 +170745680711,217,0 +170745680761,219,0 +170745680809,220,0 +170745680857,223,0 +170745680905,224,0 +170745680954,226,0 +170745681002,228,0 +170745681050,230,0 +170745681098,233,0 +170745681148,250,0 +170745681197,236,0 +170745681247,236,0 +170745681295,236,0 +170745681344,238,0 +170745681392,240,0 +170745681440,240,0 +170745681490,238,0 +170745681538,237,0 +170745681586,219,0 +170745681634,216,0 +170745681683,216,0 +170745681731,217,0 +170745681779,217,0 +170745681827,219,0 +170745681877,221,0 +170745681926,224,0 +170745681976,225,0 +170745682025,227,0 +170745682075,230,0 +170745682123,232,0 +170745682172,233,0 +170745682222,234,0 +170745682270,235,0 +170745682318,237,0 +170745682366,239,0 +170745682414,238,0 +170745682462,239,0 +170745682510,239,0 +170745682558,238,0 +170745682607,238,0 +170745682655,220,0 +170745682705,218,0 +170745682752,219,0 +170745682800,219,0 +170745682848,220,0 +170745682896,220,0 +170745682946,222,0 +170745682995,224,0 +170745683043,225,0 +170745683091,227,0 +170745683139,229,0 +170745683187,232,0 +170745683235,233,0 +170745683283,233,0 +170745683333,235,0 +170745683381,236,0 +170745683429,237,0 +170745683478,239,0 +170745683526,239,0 +170745683574,239,0 +170745683623,238,0 +170745683671,238,0 +170745683721,221,0 +170745683769,217,0 +170745683818,217,0 +170745683868,218,0 +170745683916,219,0 +170745683966,222,0 +170745684013,222,0 +170745684061,224,0 +170745684109,226,0 +170745684157,229,0 +170745684205,230,0 +170745684253,232,0 +170745684301,236,0 +170745684351,234,0 +170745684399,236,0 +170745684447,237,0 +170745684496,238,0 +170745684544,238,0 +170745684592,241,0 +170745684642,238,0 +170745684689,239,0 +170745684737,238,0 +170745684787,223,0 +170745684835,217,0 +170745684884,217,0 +170745684932,217,0 +170745684982,217,0 +170745685030,219,0 +170745685078,220,0 +170745685126,223,0 +170745685175,224,0 +170745685223,226,0 +170745685271,229,0 +170745685321,229,0 +170745685370,232,0 +170745685420,233,0 +170745685468,235,0 +170745685515,236,0 +170745685563,236,0 +170745685613,238,0 +170745685661,238,0 +170745685709,239,0 +170745685757,239,0 +170745685806,239,0 +170745685854,234,0 +170745685902,216,0 +170745685950,216,0 +170745685998,216,0 +170745686048,217,0 +170745686096,218,0 +170745686144,218,0 +170745686191,220,0 +170745686239,223,0 +170745686287,224,0 +170745686337,225,0 +170745686385,230,0 +170745686434,230,0 +170745686482,232,0 +170745686532,233,0 +170745686580,233,0 +170745686629,236,0 +170745686679,239,0 +170745686727,238,0 +170745686775,240,0 +170745686823,240,0 +170745686872,239,0 +170745686920,236,0 +170745686969,218,0 +170745687017,215,0 +170745687065,216,0 +170745687115,216,0 +170745687163,218,0 +170745687211,218,0 +170745687259,218,0 +170745687307,220,0 +170745687355,222,0 +170745687403,224,0 +170745687452,226,0 +170745687500,229,0 +170745687550,230,0 +170745687598,231,0 +170745687646,234,0 +170745687693,236,0 +170745687741,236,0 +170745687791,236,0 +170745687839,239,0 +170745687887,241,0 +170745687935,236,0 +170745687982,238,0 +170745688030,219,0 +170745688078,215,0 +170745688128,215,0 +170745688175,215,0 +170745688223,215,0 +170745688273,215,0 +170745688321,217,0 +170745688369,216,0 +170745688416,218,0 +170745688464,219,0 +170745688512,224,0 +170745688560,224,0 +170745688608,226,0 +170745688657,227,0 +170745688705,229,0 +170745688755,232,0 +170745688803,232,0 +170745688850,236,0 +170745688898,234,0 +170745688948,236,0 +170745688997,237,0 +170745689047,238,0 +170745689095,238,0 +170745689143,219,0 +170745689190,215,0 +170745689238,215,0 +170745689286,215,0 +170745689334,216,0 +170745689382,216,0 +170745689430,218,0 +170745689478,218,0 +170745689526,219,0 +170745689575,221,0 +170745689623,223,0 +170745689671,225,0 +170745689719,228,0 +170745689767,230,0 +170745689815,231,0 +170745689862,233,0 +170745689910,234,0 +170745689958,235,0 +170745690006,237,0 +170745690054,238,0 +170745690102,234,0 +170745690150,239,0 +170745690198,228,0 +170745690246,217,0 +170745690295,217,0 +170745690343,217,0 +170745690391,218,0 +170745690439,218,0 +170745690487,219,0 +170745690534,220,0 +170745690582,223,0 +170745690630,223,0 +170745690678,226,0 +170745690726,228,0 +170745690774,229,0 +170745690822,231,0 +170745690869,233,0 +170745690917,236,0 +170745690965,237,0 +170745691013,239,0 +170745691063,239,0 +170745691111,240,0 +170745691158,239,0 +170745691206,239,0 +170745691254,238,0 +170745691304,220,0 +170745691353,215,0 +170745691402,215,0 +170745691452,215,0 +170745691500,215,0 +170745691548,215,0 +170745691596,215,0 +170745691645,215,0 +170745691695,216,0 +170745691744,217,0 +170745691792,218,0 +170745691841,220,0 +170745691889,223,0 +170745691939,224,0 +170745691987,227,0 +170745692034,229,0 +170745692082,230,0 +170745692130,233,0 +170745692178,233,0 +170745692226,235,0 +170745692274,238,0 +170745692322,237,0 +170745692371,237,0 +170745692419,219,0 +170745692469,215,0 +170745692518,215,0 +170745692567,215,0 +170745692615,214,0 +170745692665,214,0 +170745692714,215,0 +170745692764,214,0 +170745692812,215,0 +170745692860,215,0 +170745692908,215,0 +170745692957,214,0 +170745693005,215,0 +170745693053,216,0 +170745693101,216,0 +170745693150,218,0 +170745693198,218,0 +170745693246,218,0 +170745693294,218,0 +170745693342,221,0 +170745693389,222,0 +170745693437,224,0 +170745693487,226,0 +170745693535,228,0 +170745693583,231,0 +170745693631,232,0 +170745693679,236,0 +170745693726,235,0 +170745693774,237,0 +170745693822,238,0 +170745693870,238,0 +170745693918,241,0 +170745693966,238,0 +170745694014,237,0 +170745694062,218,0 +170745694110,215,0 +170745694157,215,0 +170745694205,215,0 +170745694253,215,0 +170745694301,215,0 +170745694350,216,0 +170745694398,216,0 +170745694446,217,0 +170745694494,217,0 +170745694542,218,0 +170745694590,221,0 +170745694638,222,0 +170745694686,225,0 +170745694734,228,0 +170745694782,231,0 +170745694830,231,0 +170745694880,233,0 +170745694928,234,0 +170745694975,235,0 +170745695025,235,0 +170745695073,235,0 +170745695123,237,0 +170745695172,219,0 +170745695220,215,0 +170745695268,215,0 +170745695316,216,0 +170745695364,217,0 +170745695412,217,0 +170745695460,217,0 +170745695508,218,0 +170745695556,219,0 +170745695604,219,0 +170745695652,222,0 +170745695701,224,0 +170745695749,226,0 +170745695797,228,0 +170745695845,230,0 +170745695893,231,0 +170745695941,234,0 +170745695989,235,0 +170745696038,236,0 +170745696086,238,0 +170745696134,236,0 +170745696183,236,0 +170745696231,237,0 +170745696279,236,0 +170745696327,218,0 +170745696375,215,0 +170745696424,215,0 +170745696472,215,0 +170745696522,215,0 +170745696570,215,0 +170745696618,215,0 +170745696666,215,0 +170745696714,216,0 +170745696762,216,0 +170745696810,217,0 +170745696859,218,0 +170745696909,220,0 +170745696957,223,0 +170745697005,226,0 +170745697053,227,0 +170745697101,229,0 +170745697149,231,0 +170745697198,234,0 +170745697248,236,0 +170745697296,232,0 +170745697345,238,0 +170745697395,237,0 +170745697443,218,0 +170745697492,217,0 +170745697540,217,0 +170745697588,218,0 +170745697636,218,0 +170745697684,219,0 +170745697732,219,0 +170745697780,220,0 +170745697829,222,0 +170745697879,223,0 +170745697927,225,0 +170745697975,227,0 +170745698023,229,0 +170745698072,232,0 +170745698120,232,0 +170745698170,240,0 +170745698218,236,0 +170745698266,237,0 +170745698314,237,0 +170745698362,237,0 +170745698411,240,0 +170745698459,239,0 +170745698509,237,0 +170745698558,218,0 +170745698606,216,0 +170745698654,217,0 +170745698704,217,0 +170745698751,218,0 +170745698801,219,0 +170745698849,221,0 +170745698897,223,0 +170745698946,224,0 +170745698996,226,0 +170745699045,230,0 +170745699093,229,0 +170745699143,231,0 +170745699192,233,0 +170745699240,233,0 +170745699288,237,0 +170745699336,235,0 +170745699386,235,0 +170745699434,238,0 +170745699483,240,0 +170745699533,239,0 +170745699582,238,0 +170745699632,236,0 +170745699680,217,0 +170745699729,215,0 +170745699777,216,0 +170745699827,216,0 +170745699875,217,0 +170745699923,218,0 +170745699972,219,0 +170745700020,221,0 +170745700068,224,0 +170745700118,225,0 +170745700167,227,0 +170745700215,228,0 +170745700264,230,0 +170745700314,233,0 +170745700362,233,0 +170745700411,236,0 +170745700459,237,0 +170745700507,237,0 +170745700555,239,0 +170745700603,239,0 +170745700651,239,0 +170745700699,240,0 +170745700747,236,0 +170745700795,218,0 +170745700843,214,0 +170745700890,214,0 +170745700938,215,0 +170745700986,215,0 +170745701034,216,0 +170745701082,217,0 +170745701130,216,0 +170745701179,217,0 +170745701227,220,0 +170745701275,222,0 +170745701323,224,0 +170745701371,226,0 +170745701419,228,0 +170745701467,230,0 +170745701515,232,0 +170745701564,234,0 +170745701612,234,0 +170745701660,236,0 +170745701708,237,0 +170745701755,239,0 +170745701803,238,0 +170745701853,238,0 +170745701901,220,0 +170745701949,216,0 +170745701997,216,0 +170745702045,216,0 +170745702093,216,0 +170745702140,217,0 +170745702188,218,0 +170745702238,218,0 +170745702286,218,0 +170745702335,220,0 +170745702383,223,0 +170745702433,226,0 +170745702481,229,0 +170745702530,230,0 +170745702578,230,0 +170745702628,232,0 +170745702677,235,0 +170745702725,235,0 +170745702775,237,0 +170745702824,237,0 +170745702872,239,0 +170745702920,237,0 +170745702968,237,0 +170745703016,220,0 +170745703064,215,0 +170745703112,216,0 +170745703162,215,0 +170745703209,217,0 +170745703259,218,0 +170745703308,218,0 +170745703356,219,0 +170745703404,219,0 +170745703452,220,0 +170745703500,221,0 +170745703548,225,0 +170745703596,226,0 +170745703645,228,0 +170745703693,231,0 +170745703741,232,0 +170745703789,233,0 +170745703837,236,0 +170745703885,237,0 +170745703933,236,0 +170745703981,239,0 +170745704030,236,0 +170745704078,237,0 +170745704128,220,0 +170745704175,215,0 +170745704223,215,0 +170745704271,215,0 +170745704319,215,0 +170745704367,216,0 +170745704415,216,0 +170745704463,216,0 +170745704511,217,0 +170745704559,218,0 +170745704606,219,0 +170745704654,221,0 +170745704702,222,0 +170745704750,224,0 +170745704798,228,0 +170745704846,230,0 +170745704894,231,0 +170745704942,231,0 +170745704991,233,0 +170745705039,235,0 +170745705087,237,0 +170745705135,232,0 +170745705184,238,0 +170745705232,235,0 +170745705280,216,0 +170745705330,215,0 +170745705378,215,0 +170745705427,215,0 +170745705477,214,0 +170745705525,215,0 +170745705574,214,0 +170745705624,215,0 +170745705672,214,0 +170745705720,215,0 +170745705768,216,0 +170745705816,217,0 +170745705865,217,0 +170745705913,221,0 +170745705961,224,0 +170745706011,225,0 +170745706059,227,0 +170745706108,229,0 +170745706156,233,0 +170745706204,232,0 +170745706254,231,0 +170745706302,237,0 +170745706350,230,0 +170745706397,216,0 +170745706445,215,0 +170745706493,215,0 +170745706541,215,0 +170745706589,216,0 +170745706637,216,0 +170745706685,217,0 +170745706733,219,0 +170745706780,219,0 +170745706828,220,0 +170745706876,222,0 +170745706924,223,0 +170745706972,225,0 +170745707021,227,0 +170745707069,229,0 +170745707117,232,0 +170745707165,233,0 +170745707213,242,0 +170745707261,236,0 +170745707309,235,0 +170745707357,237,0 +170745707404,238,0 +170745707452,237,0 +170745707500,223,0 +170745707550,218,0 +170745707598,215,0 +170745707647,216,0 +170745707695,216,0 +170745707745,217,0 +170745707793,217,0 +170745707842,219,0 +170745707890,219,0 +170745707938,220,0 +170745707988,222,0 +170745708037,224,0 +170745708087,226,0 +170745708135,230,0 +170745708184,230,0 +170745708232,233,0 +170745708282,234,0 +170745708330,234,0 +170745708379,235,0 +170745708427,237,0 +170745708475,238,0 +170745708525,237,0 +170745708573,237,0 +170745708621,220,0 +170745708669,216,0 +170745708717,216,0 +170745708766,215,0 +170745708814,216,0 +170745708862,216,0 +170745708910,216,0 +170745708958,218,0 +170745709006,217,0 +170745709056,218,0 +170745709104,220,0 +170745709151,222,0 +170745709199,225,0 +170745709249,226,0 +170745709298,228,0 +170745709346,230,0 +170745709394,232,0 +170745709444,233,0 +170745709492,234,0 +170745709540,237,0 +170745709588,235,0 +170745709637,237,0 +170745709685,238,0 +170745709734,219,0 +170745709782,215,0 +170745709830,215,0 +170745709880,215,0 +170745709928,214,0 +170745709976,214,0 +170745710025,214,0 +170745710073,214,0 +170745710121,214,0 +170745710169,214,0 +170745710219,215,0 +170745710267,215,0 +170745710315,215,0 +170745710363,216,0 +170745710410,216,0 +170745710458,220,0 +170745710506,222,0 +170745710554,224,0 +170745710604,224,0 +170745710652,227,0 +170745710700,230,0 +170745710748,235,0 +170745710796,238,0 +170745710844,220,0 +170745710892,217,0 +170745710939,216,0 +170745710987,217,0 +170745711037,218,0 +170745711086,219,0 +170745711134,219,0 +170745711184,219,0 +170745711232,220,0 +170745711280,221,0 +170745711328,223,0 +170745711376,224,0 +170745711424,227,0 +170745711472,229,0 +170745711520,230,0 +170745711568,233,0 +170745711617,235,0 +170745711667,236,0 +170745711716,236,0 +170745711764,238,0 +170745711814,239,0 +170745711863,236,0 +170745711913,238,0 +170745711961,221,0 +170745712009,216,0 +170745712057,216,0 +170745712105,215,0 +170745712154,216,0 +170745712204,215,0 +170745712252,215,0 +170745712300,215,0 +170745712349,215,0 +170745712397,216,0 +170745712445,216,0 +170745712495,216,0 +170745712544,217,0 +170745712594,221,0 +170745712642,224,0 +170745712689,226,0 +170745712737,229,0 +170745712785,230,0 +170745712833,231,0 +170745712883,232,0 +170745712931,233,0 +170745712979,236,0 +170745713027,238,0 +170745713075,220,0 +170745713123,215,0 +170745713171,215,0 +170745713220,214,0 +170745713268,214,0 +170745713318,214,0 +170745713366,215,0 +170745713414,215,0 +170745713462,216,0 +170745713510,216,0 +170745713558,217,0 +170745713607,217,0 +170745713655,218,0 +170745713704,221,0 +170745713752,224,0 +170745713800,226,0 +170745713850,229,0 +170745713899,231,0 +170745713949,233,0 +170745713997,234,0 +170745714045,234,0 +170745714093,236,0 +170745714141,237,0 +170745714190,219,0 +170745714240,216,0 +170745714289,217,0 +170745714337,216,0 +170745714385,216,0 +170745714435,215,0 +170745714484,216,0 +170745714532,216,0 +170745714580,217,0 +170745714630,217,0 +170745714679,217,0 +170745714727,218,0 +170745714777,220,0 +170745714825,222,0 +170745714873,226,0 +170745714921,228,0 +170745714969,229,0 +170745715017,231,0 +170745715065,234,0 +170745715113,235,0 +170745715162,234,0 +170745715210,236,0 +170745715260,237,0 +170745715308,220,0 +170745715357,216,0 +170745715405,215,0 +170745715453,214,0 +170745715503,214,0 +170745715552,214,0 +170745715600,214,0 +170745715650,214,0 +170745715698,215,0 +170745715746,216,0 +170745715795,216,0 +170745715845,217,0 +170745715894,217,0 +170745715942,221,0 +170745715990,222,0 +170745716038,226,0 +170745716086,227,0 +170745716134,231,0 +170745716182,232,0 +170745716230,232,0 +170745716278,234,0 +170745716326,230,0 +170745716374,237,0 +170745716423,239,0 +170745716471,216,0 +170745716519,215,0 +170745716567,214,0 +170745716615,214,0 +170745716665,215,0 +170745716713,216,0 +170745716761,216,0 +170745716810,217,0 +170745716860,217,0 +170745716908,218,0 +170745716956,219,0 +170745717004,220,0 +170745717053,223,0 +170745717103,224,0 +170745717152,229,0 +170745717200,230,0 +170745717250,232,0 +170745717298,232,0 +170745717347,234,0 +170745717395,235,0 +170745717443,230,0 +170745717492,238,0 +170745717540,229,0 +170745717588,216,0 +170745717636,215,0 +170745717686,214,0 +170745717734,214,0 +170745717783,214,0 +170745717831,214,0 +170745717879,215,0 +170745717929,214,0 +170745717977,215,0 +170745718026,215,0 +170745718074,215,0 +170745718122,217,0 +170745718170,218,0 +170745718218,218,0 +170745718266,222,0 +170745718314,224,0 +170745718364,226,0 +170745718413,228,0 +170745718463,229,0 +170745718512,231,0 +170745718560,229,0 +170745718608,239,0 +170745718656,241,0 +170745718704,218,0 +170745718753,215,0 +170745718801,214,0 +170745718851,215,0 +170745718899,214,0 +170745718948,215,0 +170745718996,215,0 +170745719046,215,0 +170745719094,216,0 +170745719142,217,0 +170745719190,217,0 +170745719239,218,0 +170745719287,219,0 +170745719337,220,0 +170745719385,224,0 +170745719434,226,0 +170745719482,227,0 +170745719530,231,0 +170745719578,234,0 +170745719627,235,0 +170745719675,232,0 +170745719723,237,0 +170745719773,236,0 +170745719821,217,0 +170745719869,215,0 +170745719917,215,0 +170745719965,217,0 +170745720014,215,0 +170745720062,216,0 +170745720110,217,0 +170745720160,217,0 +170745720209,218,0 +170745720257,218,0 +170745720305,219,0 +170745720353,220,0 +170745720401,223,0 +170745720449,225,0 +170745720497,227,0 +170745720545,231,0 +170745720593,234,0 +170745720642,232,0 +170745720692,239,0 +170745720740,236,0 +170745720788,236,0 +170745720837,238,0 +170745720885,238,0 +170745720935,218,0 +170745720984,215,0 +170745721032,215,0 +170745721080,215,0 +170745721128,215,0 +170745721176,215,0 +170745721224,215,0 +170745721272,215,0 +170745721320,215,0 +170745721370,215,0 +170745721419,216,0 +170745721467,216,0 +170745721515,217,0 +170745721565,217,0 +170745721612,218,0 +170745721662,220,0 +170745721712,222,0 +170745721761,224,0 +170745721809,227,0 +170745721857,229,0 +170745721905,230,0 +170745721953,237,0 +170745722001,238,0 +170745722049,219,0 +170745722098,215,0 +170745722146,215,0 +170745722194,215,0 +170745722242,216,0 +170745722290,216,0 +170745722340,217,0 +170745722388,217,0 +170745722437,217,0 +170745722487,218,0 +170745722535,218,0 +170745722584,219,0 +170745722632,223,0 +170745722682,225,0 +170745722730,229,0 +170745722778,228,0 +170745722827,233,0 +170745722875,233,0 +170745722923,234,0 +170745722973,236,0 +170745723022,236,0 +170745723072,238,0 +170745723121,239,0 +170745723169,219,0 +170745723219,215,0 +170745723267,215,0 +170745723315,215,0 +170745723363,215,0 +170745723411,215,0 +170745723459,215,0 +170745723506,215,0 +170745723554,216,0 +170745723604,216,0 +170745723653,217,0 +170745723703,217,0 +170745723751,217,0 +170745723799,221,0 +170745723848,222,0 +170745723898,225,0 +170745723946,228,0 +170745723996,228,0 +170745724043,230,0 +170745724091,231,0 +170745724139,231,0 +170745724187,236,0 +170745724237,237,0 +170745724285,218,0 +170745724334,215,0 +170745724382,215,0 +170745724430,215,0 +170745724478,215,0 +170745724526,214,0 +170745724574,215,0 +170745724624,215,0 +170745724672,215,0 +170745724720,216,0 +170745724768,216,0 +170745724815,217,0 +170745724863,218,0 +170745724911,221,0 +170745724961,223,0 +170745725009,226,0 +170745725057,228,0 +170745725106,230,0 +170745725156,230,0 +170745725205,231,0 +170745725253,234,0 +170745725301,236,0 +170745725349,238,0 +170745725397,220,0 +170745725445,216,0 +170745725492,216,0 +170745725540,216,0 +170745725588,217,0 +170745725636,219,0 +170745725684,219,0 +170745725732,219,0 +170745725780,219,0 +170745725828,221,0 +170745725875,222,0 +170745725923,227,0 +170745725971,230,0 +170745726019,229,0 +170745726067,232,0 +170745726115,234,0 +170745726163,234,0 +170745726211,235,0 +170745726259,239,0 +170745726308,236,0 +170745726356,239,0 +170745726404,238,0 +170745726452,238,0 +170745726500,219,0 +170745726548,215,0 +170745726596,215,0 +170745726643,215,0 +170745726691,215,0 +170745726741,216,0 +170745726789,216,0 +170745726838,217,0 +170745726886,217,0 +170745726936,226,0 +170745726983,221,0 +170745727031,222,0 +170745727079,224,0 +170745727127,226,0 +170745727175,229,0 +170745727223,229,0 +170745727272,232,0 +170745727320,232,0 +170745727368,234,0 +170745727416,235,0 +170745727464,237,0 +170745727512,232,0 +170745727560,238,0 +170745727608,233,0 +170745727656,217,0 +170745727704,215,0 +170745727753,215,0 +170745727803,215,0 +170745727851,215,0 +170745727899,215,0 +170745727946,216,0 +170745727994,216,0 +170745728042,217,0 +170745728092,218,0 +170745728141,219,0 +170745728189,222,0 +170745728237,224,0 +170745728285,225,0 +170745728335,229,0 +170745728383,230,0 +170745728430,232,0 +170745728478,235,0 +170745728526,234,0 +170745728574,237,0 +170745728622,235,0 +170745728670,236,0 +170745728719,241,0 +170745728767,224,0 +170745728815,220,0 +170745728863,220,0 +170745728911,219,0 +170745728961,215,0 +170745729010,215,0 +170745729058,216,0 +170745729106,217,0 +170745729154,218,0 +170745729204,218,0 +170745729252,218,0 +170745729301,220,0 +170745729351,222,0 +170745729400,226,0 +170745729450,227,0 +170745729498,228,0 +170745729546,232,0 +170745729595,233,0 +170745729643,233,0 +170745729691,236,0 +170745729739,237,0 +170745729789,238,0 +170745729837,239,0 +170745729885,217,0 +170745729933,215,0 +170745729981,215,0 +170745730030,214,0 +170745730078,215,0 +170745730126,214,0 +170745730174,214,0 +170745730222,214,0 +170745730271,215,0 +170745730319,216,0 +170745730367,216,0 +170745730417,217,0 +170745730465,218,0 +170745730513,218,0 +170745730562,222,0 +170745730610,224,0 +170745730658,228,0 +170745730708,229,0 +170745730755,230,0 +170745730803,233,0 +170745730851,234,0 +170745730901,234,0 +170745730950,243,0 +170745730998,218,0 +170745731048,215,0 +170745731096,215,0 +170745731144,215,0 +170745731192,215,0 +170745731239,215,0 +170745731289,215,0 +170745731337,214,0 +170745731386,215,0 +170745731436,216,0 +170745731484,216,0 +170745731533,217,0 +170745731583,218,0 +170745731631,221,0 +170745731680,225,0 +170745731728,225,0 +170745731778,229,0 +170745731826,230,0 +170745731874,231,0 +170745731922,231,0 +170745731971,233,0 +170745732021,236,0 +170745732069,237,0 +170745732117,219,0 +170745732165,215,0 +170745732213,215,0 +170745732262,215,0 +170745732312,215,0 +170745732360,215,0 +170745732408,215,0 +170745732455,215,0 +170745732503,215,0 +170745732553,215,0 +170745732601,216,0 +170745732651,216,0 +170745732698,217,0 +170745732746,217,0 +170745732794,220,0 +170745732842,223,0 +170745732892,226,0 +170745732940,230,0 +170745732989,229,0 +170745733037,231,0 +170745733085,232,0 +170745733135,236,0 +170745733184,238,0 +170745733232,220,0 +170745733280,215,0 +170745733328,215,0 +170745733376,215,0 +170745733424,215,0 +170745733472,215,0 +170745733520,215,0 +170745733570,216,0 +170745733619,217,0 +170745733669,217,0 +170745733718,218,0 +170745733768,219,0 +170745733816,220,0 +170745733865,223,0 +170745733913,225,0 +170745733963,228,0 +170745734010,230,0 +170745734060,230,0 +170745734109,232,0 +170745734158,233,0 +170745734207,234,0 +170745734257,237,0 +170745734306,236,0 +170745734356,218,0 +170745734405,215,0 +170745734453,215,0 +170745734501,215,0 +170745734551,215,0 +170745734600,214,0 +170745734648,215,0 +170745734698,216,0 +170745734746,216,0 +170745734795,217,0 +170745734845,218,0 +170745734893,220,0 +170745734940,223,0 +170745734990,224,0 +170745735040,227,0 +170745735087,229,0 +170745735135,231,0 +170745735185,230,0 +170745735233,234,0 +170745735281,236,0 +170745735330,233,0 +170745735378,238,0 +170745735426,233,0 +170745735474,216,0 +170745735522,215,0 +170745735572,215,0 +170745735621,215,0 +170745735671,215,0 +170745735720,215,0 +170745735768,215,0 +170745735816,215,0 +170745735866,216,0 +170745735914,216,0 +170745735962,217,0 +170745736010,219,0 +170745736058,221,0 +170745736107,224,0 +170745736155,227,0 +170745736203,228,0 +170745736253,229,0 +170745736301,230,0 +170745736349,233,0 +170745736396,232,0 +170745736444,236,0 +170745736492,237,0 +170745736542,237,0 +170745736590,219,0 +170745736639,216,0 +170745736687,216,0 +170745736737,217,0 +170745736785,217,0 +170745736834,218,0 +170745736882,218,0 +170745736930,219,0 +170745736978,221,0 +170745737026,223,0 +170745737075,227,0 +170745737125,227,0 +170745737174,231,0 +170745737224,232,0 +170745737274,232,0 +170745737323,234,0 +170745737371,236,0 +170745737419,238,0 +170745737467,237,0 +170745737516,241,0 +170745737564,234,0 +170745737614,238,0 +170745737663,237,0 +170745737713,216,0 +170745737761,216,0 +170745737809,216,0 +170745737858,216,0 +170745737908,220,0 +170745737957,218,0 +170745738005,219,0 +170745738055,222,0 +170745738104,223,0 +170745738154,226,0 +170745738203,228,0 +170745738253,231,0 +170745738301,230,0 +170745738350,234,0 +170745738398,233,0 +170745738448,234,0 +170745738496,235,0 +170745738545,236,0 +170745738593,239,0 +170745738641,238,0 +170745738689,235,0 +170745738738,239,0 +170745738786,229,0 +170745738836,215,0 +170745738884,215,0 +170745738932,216,0 +170745738980,216,0 +170745739029,217,0 +170745739077,217,0 +170745739127,219,0 +170745739176,220,0 +170745739224,221,0 +170745739272,224,0 +170745739322,226,0 +170745739370,228,0 +170745739419,231,0 +170745739467,232,0 +170745739517,232,0 +170745739566,233,0 +170745739616,236,0 +170745739664,235,0 +170745739712,241,0 +170745739760,237,0 +170745739808,234,0 +170745739856,238,0 +170745739905,239,0 +170745739955,217,0 +170745740002,215,0 +170745740052,214,0 +170745740100,215,0 +170745740149,215,0 +170745740197,215,0 +170745740245,216,0 +170745740295,217,0 +170745740343,218,0 +170745740391,218,0 +170745740440,220,0 +170745740490,224,0 +170745740538,225,0 +170745740587,227,0 +170745740635,230,0 +170745740683,232,0 +170745740731,233,0 +170745740779,235,0 +170745740827,235,0 +170745740875,236,0 +170745740925,236,0 +170745740973,238,0 +170745741021,236,0 +170745741068,219,0 +170745741116,215,0 +170745741166,215,0 +170745741214,217,0 +170745741263,215,0 +170745741313,216,0 +170745741362,217,0 +170745741412,220,0 +170745741461,218,0 +170745741509,219,0 +170745741557,221,0 +170745741605,222,0 +170745741653,225,0 +170745741701,228,0 +170745741751,230,0 +170745741800,233,0 +170745741848,234,0 +170745741896,233,0 +170745741944,235,0 +170745741992,237,0 +170745742041,232,0 +170745742089,238,0 +170745742139,234,0 +170745742188,216,0 +170745742236,215,0 +170745742284,215,0 +170745742332,216,0 +170745742380,216,0 +170745742428,217,0 +170745742475,218,0 +170745742523,217,0 +170745742571,220,0 +170745742621,221,0 +170745742669,223,0 +170745742718,225,0 +170745742768,228,0 +170745742817,228,0 +170745742867,232,0 +170745742916,232,0 +170745742964,233,0 +170745743014,237,0 +170745743062,237,0 +170745743110,237,0 +170745743160,237,0 +170745743208,237,0 +170745743256,237,0 +170745743305,217,0 +170745743353,215,0 +170745743401,215,0 +170745743450,214,0 +170745743500,214,0 +170745743548,215,0 +170745743596,214,0 +170745743644,214,0 +170745743693,215,0 +170745743742,215,0 +170745743790,216,0 +170745743838,216,0 +170745743886,217,0 +170745743934,219,0 +170745743983,222,0 +170745744031,224,0 +170745744079,227,0 +170745744127,228,0 +170745744177,230,0 +170745744226,232,0 +170745744274,233,0 +170745744322,238,0 +170745744372,236,0 +170745744420,218,0 +170745744469,215,0 +170745744517,215,0 +170745744565,215,0 +170745744614,215,0 +170745744664,215,0 +170745744712,216,0 +170745744760,217,0 +170745744808,217,0 +170745744856,219,0 +170745744905,218,0 +170745744955,221,0 +170745745003,223,0 +170745745051,225,0 +170745745099,226,0 +170745745148,230,0 +170745745198,231,0 +170745745246,231,0 +170745745295,234,0 +170745745345,234,0 +170745745393,237,0 +170745745441,238,0 +170745745490,237,0 +170745745540,217,0 +170745745588,215,0 +170745745636,214,0 +170745745684,214,0 +170745745733,215,0 +170745745781,215,0 +170745745831,214,0 +170745745880,214,0 +170745745928,215,0 +170745745976,214,0 +170745746024,214,0 +170745746073,214,0 +170745746123,214,0 +170745746172,215,0 +170745746220,214,0 +170745746270,215,0 +170745746319,216,0 +170745746367,218,0 +170745746415,220,0 +170745746463,223,0 +170745746511,226,0 +170745746559,237,0 +170745746607,238,0 +170745746655,219,0 +170745746703,215,0 +170745746751,215,0 +170745746799,215,0 +170745746846,216,0 +170745746894,216,0 +170745746942,217,0 +170745746990,217,0 +170745747038,219,0 +170745747086,225,0 +170745747135,220,0 +170745747183,221,0 +170745747231,223,0 +170745747279,227,0 +170745747327,229,0 +170745747375,231,0 +170745747425,232,0 +170745747474,233,0 +170745747524,233,0 +170745747573,235,0 +170745747621,238,0 +170745747669,238,0 +170745747719,238,0 +170745747768,219,0 +170745747816,214,0 +170745747864,215,0 +170745747912,214,0 +170745747960,213,0 +170745748008,215,0 +170745748056,216,0 +170745748105,217,0 +170745748153,218,0 +170745748203,218,0 +170745748252,219,0 +170745748302,222,0 +170745748350,224,0 +170745748398,227,0 +170745748446,230,0 +170745748495,230,0 +170745748543,233,0 +170745748593,233,0 +170745748642,235,0 +170745748690,236,0 +170745748738,237,0 +170745748786,237,0 +170745748836,238,0 +170745748883,220,0 +170745748933,215,0 +170745748981,215,0 +170745749029,215,0 +170745749077,215,0 +170745749126,215,0 +170745749174,215,0 +170745749224,216,0 +170745749272,217,0 +170745749320,217,0 +170745749368,218,0 +170745749416,218,0 +170745749464,221,0 +170745749512,224,0 +170745749559,226,0 +170745749607,228,0 +170745749655,231,0 +170745749703,232,0 +170745749751,233,0 +170745749801,234,0 +170745749849,236,0 +170745749898,236,0 +170745749946,238,0 +170745749994,220,0 +170745750044,215,0 +170745750092,215,0 +170745750141,215,0 +170745750189,215,0 +170745750237,216,0 +170745750287,216,0 +170745750334,216,0 +170745750382,216,0 +170745750430,218,0 +170745750480,220,0 +170745750528,222,0 +170745750576,224,0 +170745750625,227,0 +170745750673,229,0 +170745750721,231,0 +170745750770,232,0 +170745750820,233,0 +170745750868,235,0 +170745750915,234,0 +170745750963,239,0 +170745751011,237,0 +170745751059,238,0 +170745751107,218,0 +170745751157,214,0 +170745751204,215,0 +170745751252,215,0 +170745751302,216,0 +170745751350,216,0 +170745751398,217,0 +170745751447,217,0 +170745751495,217,0 +170745751543,220,0 +170745751591,219,0 +170745751639,221,0 +170745751687,224,0 +170745751735,226,0 +170745751785,230,0 +170745751834,232,0 +170745751882,234,0 +170745751930,233,0 +170745751978,235,0 +170745752026,237,0 +170745752074,237,0 +170745752122,232,0 +170745752170,238,0 +170745752218,231,0 +170745752266,217,0 +170745752314,216,0 +170745752361,216,0 +170745752409,217,0 +170745752459,218,0 +170745752507,218,0 +170745752555,218,0 +170745752603,219,0 +170745752650,220,0 +170745752698,223,0 +170745752746,226,0 +170745752794,227,0 +170745752842,228,0 +170745752891,232,0 +170745752939,232,0 +170745752989,234,0 +170745753037,238,0 +170745753085,235,0 +170745753134,237,0 +170745753182,238,0 +170745753230,237,0 +170745753278,239,0 +170745753326,238,0 +170745753374,218,0 +170745753422,215,0 +170745753471,215,0 +170745753521,216,0 +170745753570,216,0 +170745753618,217,0 +170745753666,217,0 +170745753714,222,0 +170745753762,218,0 +170745753810,219,0 +170745753858,221,0 +170745753906,224,0 +170745753954,228,0 +170745754002,228,0 +170745754050,230,0 +170745754099,232,0 +170745754147,234,0 +170745754197,234,0 +170745754245,235,0 +170745754292,237,0 +170745754340,237,0 +170745754388,237,0 +170745754436,236,0 +170745754486,219,0 +170745754535,215,0 +170745754583,214,0 +170745754631,215,0 +170745754679,216,0 +170745754729,216,0 +170745754777,216,0 +170745754825,217,0 +170745754873,217,0 +170745754921,220,0 +170745754969,221,0 +170745755017,225,0 +170745755066,225,0 +170745755114,227,0 +170745755164,230,0 +170745755213,231,0 +170745755261,232,0 +170745755309,234,0 +170745755357,235,0 +170745755407,236,0 +170745755455,237,0 +170745755503,237,0 +170745755551,237,0 +170745755599,219,0 +170745755647,215,0 +170745755694,214,0 +170745755742,215,0 +170745755790,215,0 +170745755840,215,0 +170745755888,215,0 +170745755937,215,0 +170745755985,214,0 +170745756035,214,0 +170745756084,214,0 +170745756134,215,0 +170745756183,216,0 +170745756231,217,0 +170745756281,218,0 +170745756330,221,0 +170745756380,223,0 +170745756428,224,0 +170745756476,226,0 +170745756524,228,0 +170745756571,230,0 +170745756619,235,0 +170745756667,237,0 +170745756715,219,0 +170745756763,215,0 +170745756812,215,0 +170745756860,216,0 +170745756908,216,0 +170745756956,218,0 +170745757004,218,0 +170745757052,218,0 +170745757099,219,0 +170745757147,219,0 +170745757195,221,0 +170745757243,223,0 +170745757291,225,0 +170745757339,228,0 +170745757387,230,0 +170745757435,233,0 +170745757484,233,0 +170745757532,234,0 +170745757582,236,0 +170745757629,237,0 +170745757677,237,0 +170745757727,239,0 +170745757775,238,0 +170745757824,219,0 +170745757872,215,0 +170745757920,215,0 +170745757968,215,0 +170745758016,215,0 +170745758064,214,0 +170745758113,215,0 +170745758161,215,0 +170745758209,216,0 +170745758257,217,0 +170745758305,218,0 +170745758353,218,0 +170745758401,221,0 +170745758450,225,0 +170745758498,226,0 +170745758546,229,0 +170745758596,230,0 +170745758644,232,0 +170745758691,234,0 +170745758741,234,0 +170745758789,237,0 +170745758837,231,0 +170745758885,237,0 +170745758932,238,0 +170745758980,216,0 +170745759030,215,0 +170745759078,215,0 +170745759126,215,0 +170745759173,215,0 +170745759221,215,0 +170745759269,215,0 +170745759319,215,0 +170745759366,215,0 +170745759416,215,0 +170745759464,216,0 +170745759512,217,0 +170745759560,217,0 +170745759607,220,0 +170745759655,223,0 +170745759703,225,0 +170745759751,226,0 +170745759799,228,0 +170745759848,230,0 +170745759896,231,0 +170745759944,232,0 +170745759992,235,0 +170745760041,236,0 +170745760091,222,0 +170745760139,218,0 +170745760187,217,0 +170745760236,217,0 +170745760286,218,0 +170745760334,219,0 +170745760382,219,0 +170745760431,227,0 +170745760481,218,0 +170745760529,215,0 +170745760577,215,0 +170745760626,216,0 +170745760674,216,0 +170745760724,217,0 +170745760773,219,0 +170745760821,223,0 +170745760869,224,0 +170745760917,226,0 +170745760965,228,0 +170745761013,232,0 +170745761061,230,0 +170745761109,238,0 +170745761158,237,0 +170745761208,218,0 +170745761256,216,0 +170745761304,217,0 +170745761352,217,0 +170745761401,217,0 +170745761451,218,0 +170745761499,218,0 +170745761547,220,0 +170745761595,222,0 +170745761643,222,0 +170745761691,223,0 +170745761739,226,0 +170745761788,228,0 +170745761836,230,0 +170745761886,233,0 +170745761935,234,0 +170745761983,234,0 +170745762033,235,0 +170745762081,237,0 +170745762128,238,0 +170745762176,236,0 +170745762224,237,0 +170745762272,237,0 +170745762320,218,0 +170745762368,214,0 +170745762417,215,0 +170745762465,214,0 +170745762515,215,0 +170745762564,215,0 +170745762612,215,0 +170745762660,216,0 +170745762709,217,0 +170745762759,216,0 +170745762808,218,0 +170745762858,219,0 +170745762906,222,0 +170745762954,225,0 +170745763003,226,0 +170745763053,228,0 +170745763101,231,0 +170745763149,232,0 +170745763198,235,0 +170745763246,235,0 +170745763296,234,0 +170745763345,238,0 +170745763395,236,0 +170745763444,219,0 +170745763492,215,0 +170745763542,214,0 +170745763591,214,0 +170745763639,214,0 +170745763687,214,0 +170745763737,214,0 +170745763786,214,0 +170745763836,214,0 +170745763885,215,0 +170745763935,216,0 +170745763983,217,0 +170745764032,219,0 +170745764082,221,0 +170745764130,224,0 +170745764178,227,0 +170745764226,227,0 +170745764274,229,0 +170745764322,229,0 +170745764370,233,0 +170745764418,234,0 +170745764465,237,0 +170745764513,236,0 +170745764561,219,0 +170745764611,215,0 +170745764660,215,0 +170745764708,215,0 +170745764756,216,0 +170745764806,217,0 +170745764855,217,0 +170745764903,217,0 +170745764951,219,0 +170745764999,219,0 +170745765047,224,0 +170745765095,223,0 +170745765143,225,0 +170745765191,226,0 +170745765239,228,0 +170745765288,232,0 +170745765336,231,0 +170745765384,231,0 +170745765432,233,0 +170745765481,235,0 +170745765529,235,0 +170745765577,236,0 +170745765625,236,0 +170745765673,219,0 +170745765721,215,0 +170745765768,215,0 +170745765816,215,0 +170745765864,214,0 +170745765914,215,0 +170745765962,215,0 +170745766009,215,0 +170745766057,215,0 +170745766105,216,0 +170745766155,217,0 +170745766204,218,0 +170745766254,220,0 +170745766302,222,0 +170745766351,224,0 +170745766399,227,0 +170745766447,228,0 +170745766495,229,0 +170745766545,233,0 +170745766593,234,0 +170745766641,234,0 +170745766690,237,0 +170745766740,237,0 +170745766789,219,0 +170745766837,215,0 +170745766885,215,0 +170745766935,215,0 +170745766983,215,0 +170745767031,215,0 +170745767079,215,0 +170745767127,216,0 +170745767176,217,0 +170745767224,218,0 +170745767272,218,0 +170745767320,219,0 +170745767369,220,0 +170745767417,222,0 +170745767467,226,0 +170745767515,228,0 +170745767563,230,0 +170745767612,231,0 +170745767662,232,0 +170745767711,234,0 +170745767759,236,0 +170745767807,239,0 +170745767855,238,0 +170745767903,220,0 +170745767951,215,0 +170745768001,215,0 +170745768050,214,0 +170745768100,215,0 +170745768148,214,0 +170745768196,215,0 +170745768244,216,0 +170745768293,217,0 +170745768343,217,0 +170745768392,218,0 +170745768440,220,0 +170745768490,222,0 +170745768538,224,0 +170745768587,227,0 +170745768635,230,0 +170745768685,230,0 +170745768733,232,0 +170745768782,234,0 +170745768830,233,0 +170745768880,235,0 +170745768929,235,0 +170745768979,237,0 +170745769028,220,0 +170745769078,215,0 +170745769126,215,0 +170745769175,215,0 +170745769223,215,0 +170745769273,215,0 +170745769323,215,0 +170745769372,215,0 +170745769420,215,0 +170745769470,215,0 +170745769519,215,0 +170745769567,215,0 +170745769617,216,0 +170745769664,218,0 +170745769714,219,0 +170745769763,222,0 +170745769811,224,0 +170745769859,225,0 +170745769907,227,0 +170745769957,230,0 +170745770005,231,0 +170745770054,236,0 +170745770102,237,0 +170745770150,220,0 +170745770198,215,0 +170745770248,215,0 +170745770296,215,0 +170745770344,215,0 +170745770393,214,0 +170745770443,215,0 +170745770491,215,0 +170745770539,216,0 +170745770586,216,0 +170745770634,217,0 +170745770684,218,0 +170745770732,219,0 +170745770780,221,0 +170745770828,224,0 +170745770877,226,0 +170745770925,227,0 +170745770973,229,0 +170745771021,231,0 +170745771071,235,0 +170745771119,235,0 +170745771168,236,0 +170745771218,237,0 +170745771267,220,0 +170745771315,215,0 +170745771365,215,0 +170745771413,215,0 +170745771462,215,0 +170745771510,215,0 +170745771558,217,0 +170745771606,216,0 +170745771654,217,0 +170745771704,218,0 +170745771752,217,0 +170745771801,218,0 +170745771849,221,0 +170745771897,223,0 +170745771945,224,0 +170745771994,228,0 +170745772042,231,0 +170745772092,231,0 +170745772141,233,0 +170745772191,234,0 +170745772240,235,0 +170745772288,236,0 +170745772336,238,0 +170745772386,220,0 +170745772434,215,0 +170745772483,215,0 +170745772531,215,0 +170745772581,215,0 +170745772630,215,0 +170745772678,215,0 +170745772728,215,0 +170745772776,215,0 +170745772824,216,0 +170745772872,216,0 +170745772921,217,0 +170745772969,218,0 +170745773019,220,0 +170745773067,223,0 +170745773116,225,0 +170745773164,227,0 +170745773212,230,0 +170745773260,231,0 +170745773308,231,0 +170745773356,234,0 +170745773405,237,0 +170745773455,238,0 +170745773503,220,0 +170745773551,215,0 +170745773599,215,0 +170745773647,215,0 +170745773696,215,0 +170745773744,215,0 +170745773792,215,0 +170745773841,216,0 +170745773889,217,0 +170745773939,217,0 +170745773987,218,0 +170745774036,219,0 +170745774084,219,0 +170745774132,222,0 +170745774180,224,0 +170745774228,227,0 +170745774276,229,0 +170745774326,231,0 +170745774374,230,0 +170745774423,234,0 +170745774472,234,0 +170745774522,237,0 +170745774570,238,0 +170745774618,219,0 +170745774667,215,0 +170745774715,215,0 +170745774765,215,0 +170745774813,215,0 +170745774861,215,0 +170745774909,216,0 +170745774957,216,0 +170745775004,217,0 +170745775052,217,0 +170745775100,218,0 +170745775148,218,0 +170745775196,221,0 +170745775244,224,0 +170745775294,226,0 +170745775342,229,0 +170745775391,230,0 +170745775439,231,0 +170745775487,234,0 +170745775535,234,0 +170745775583,235,0 +170745775631,236,0 +170745775679,238,0 +170745775727,226,0 +170745775775,216,0 +170745775823,215,0 +170745775871,215,0 +170745775920,215,0 +170745775970,215,0 +170745776018,215,0 +170745776067,215,0 +170745776117,215,0 +170745776165,216,0 +170745776213,216,0 +170745776261,217,0 +170745776309,217,0 +170745776357,217,0 +170745776406,221,0 +170745776454,224,0 +170745776504,226,0 +170745776552,229,0 +170745776601,230,0 +170745776649,232,0 +170745776697,232,0 +170745776745,235,0 +170745776795,237,0 +170745776844,234,0 +170745776894,216,0 +170745776941,215,0 +170745776989,214,0 +170745777037,215,0 +170745777085,214,0 +170745777133,215,0 +170745777181,214,0 +170745777229,214,0 +170745777277,215,0 +170745777325,216,0 +170745777373,215,0 +170745777421,216,0 +170745777469,217,0 +170745777517,219,0 +170745777565,221,0 +170745777613,224,0 +170745777662,227,0 +170745777712,230,0 +170745777761,230,0 +170745777809,233,0 +170745777859,233,0 +170745777908,236,0 +170745777958,238,0 +170745778006,218,0 +170745778054,215,0 +170745778103,215,0 +170745778153,215,0 +170745778202,215,0 +170745778250,215,0 +170745778300,215,0 +170745778348,215,0 +170745778396,216,0 +170745778444,216,0 +170745778493,216,0 +170745778543,217,0 +170745778591,218,0 +170745778640,219,0 +170745778690,223,0 +170745778739,224,0 +170745778789,227,0 +170745778837,230,0 +170745778885,230,0 +170745778934,237,0 +170745778982,234,0 +170745779032,236,0 +170745779080,242,0 +170745779129,217,0 +170745779177,215,0 +170745779225,215,0 +170745779273,215,0 +170745779321,214,0 +170745779369,215,0 +170745779417,215,0 +170745779465,215,0 +170745779513,215,0 +170745779561,215,0 +170745779609,216,0 +170745779659,216,0 +170745779708,217,0 +170745779758,218,0 +170745779806,220,0 +170745779855,222,0 +170745779903,223,0 +170745779953,225,0 +170745780001,228,0 +170745780050,231,0 +170745780098,230,0 +170745780148,236,0 +170745780195,235,0 +170745780245,218,0 +170745780293,215,0 +170745780341,215,0 +170745780389,215,0 +170745780437,215,0 +170745780485,214,0 +170745780533,216,0 +170745780582,216,0 +170745780630,217,0 +170745780678,217,0 +170745780728,218,0 +170745780776,218,0 +170745780825,221,0 +170745780875,226,0 +170745780923,227,0 +170745780971,227,0 +170745781020,230,0 +170745781068,232,0 +170745781116,233,0 +170745781164,234,0 +170745781214,236,0 +170745781262,237,0 +170745781310,238,0 +170745781358,218,0 +170745781407,215,0 +170745781455,215,0 +170745781503,215,0 +170745781553,214,0 +170745781601,214,0 +170745781650,215,0 +170745781700,216,0 +170745781748,216,0 +170745781797,217,0 +170745781847,217,0 +170745781895,218,0 +170745781943,219,0 +170745781990,222,0 +170745782038,224,0 +170745782086,228,0 +170745782134,229,0 +170745782182,231,0 +170745782230,231,0 +170745782280,233,0 +170745782328,233,0 +170745782376,237,0 +170745782424,238,0 +170745782472,218,0 +170745782521,215,0 +170745782569,215,0 +170745782617,214,0 +170745782667,215,0 +170745782715,215,0 +170745782763,215,0 +170745782810,215,0 +170745782860,215,0 +170745782908,216,0 +170745782956,216,0 +170745783004,217,0 +170745783053,217,0 +170745783101,217,0 +170745783149,218,0 +170745783199,222,0 +170745783248,223,0 +170745783298,228,0 +170745783347,227,0 +170745783395,230,0 +170745783443,230,0 +170745783491,237,0 +170745783539,238,0 +170745783587,219,0 +170745783637,215,0 +170745783685,215,0 +170745783733,215,0 +170745783782,215,0 +170745783830,215,0 +170745783878,216,0 +170745783926,216,0 +170745783976,217,0 +170745784025,217,0 +170745784073,218,0 +170745784121,219,0 +170745784171,221,0 +170745784219,223,0 +170745784268,226,0 +170745784318,227,0 +170745784366,231,0 +170745784415,233,0 +170745784465,232,0 +170745784514,242,0 +170745784562,235,0 +170745784610,238,0 +170745784660,237,0 +170745784708,218,0 +170745784756,215,0 +170745784805,215,0 +170745784853,215,0 +170745784903,215,0 +170745784951,215,0 +170745784999,216,0 +170745785048,216,0 +170745785096,217,0 +170745785144,218,0 +170745785192,218,0 +170745785242,218,0 +170745785290,219,0 +170745785338,222,0 +170745785387,224,0 +170745785436,226,0 +170745785484,229,0 +170745785532,229,0 +170745785580,232,0 +170745785628,233,0 +170745785678,232,0 +170745785726,236,0 +170745785774,239,0 +170745785822,219,0 +170745785871,215,0 +170745785919,215,0 +170745785969,215,0 +170745786016,215,0 +170745786066,215,0 +170745786114,215,0 +170745786164,215,0 +170745786211,215,0 +170745786259,216,0 +170745786307,216,0 +170745786357,216,0 +170745786406,218,0 +170745786456,220,0 +170745786504,223,0 +170745786552,226,0 +170745786600,226,0 +170745786648,228,0 +170745786697,231,0 +170745786745,233,0 +170745786793,235,0 +170745786841,235,0 +170745786891,237,0 +170745786940,220,0 +170745786988,215,0 +170745787036,215,0 +170745787084,215,0 +170745787132,215,0 +170745787182,215,0 +170745787230,215,0 +170745787278,216,0 +170745787326,216,0 +170745787374,216,0 +170745787422,219,0 +170745787469,218,0 +170745787517,219,0 +170745787565,221,0 +170745787615,224,0 +170745787665,225,0 +170745787714,227,0 +170745787762,229,0 +170745787812,232,0 +170745787859,234,0 +170745787907,234,0 +170745787955,236,0 +170745788005,237,0 +170745788053,218,0 +170745788100,214,0 +170745788150,215,0 +170745788198,215,0 +170745788247,215,0 +170745788295,216,0 +170745788345,216,0 +170745788394,217,0 +170745788444,218,0 +170745788492,218,0 +170745788539,219,0 +170745788589,219,0 +170745788637,224,0 +170745788686,227,0 +170745788734,228,0 +170745788784,230,0 +170745788832,232,0 +170745788881,235,0 +170745788929,234,0 +170745788977,236,0 +170745789025,235,0 +170745789073,238,0 +170745789123,236,0 +170745789172,220,0 +170745789222,215,0 +170745789271,215,0 +170745789321,216,0 +170745789369,216,0 +170745789418,217,0 +170745789466,217,0 +170745789516,218,0 +170745789564,218,0 +170745789611,221,0 +170745789661,224,0 +170745789711,222,0 +170745789760,223,0 +170745789808,226,0 +170745789858,229,0 +170745789906,233,0 +170745789953,232,0 +170745790001,235,0 +170745790049,235,0 +170745790097,236,0 +170745790147,238,0 +170745790195,237,0 +170745790244,235,0 +170745790294,219,0 +170745790342,214,0 +170745790391,215,0 +170745790441,215,0 +170745790490,215,0 +170745790538,216,0 +170745790588,216,0 +170745790636,217,0 +170745790684,218,0 +170745790732,218,0 +170745790780,219,0 +170745790828,221,0 +170745790876,223,0 +170745790925,226,0 +170745790975,232,0 +170745791024,230,0 +170745791074,231,0 +170745791123,234,0 +170745791173,236,0 +170745791221,234,0 +170745791269,236,0 +170745791318,239,0 +170745791368,236,0 +170745791417,219,0 +170745791465,215,0 +170745791515,215,0 +170745791563,215,0 +170745791611,214,0 +170745791659,216,0 +170745791706,216,0 +170745791756,216,0 +170745791804,217,0 +170745791852,218,0 +170745791901,215,0 +170745791949,223,0 +170745791997,224,0 +170745792045,225,0 +170745792093,227,0 +170745792141,229,0 +170745792191,231,0 +170745792239,233,0 +170745792287,232,0 +170745792336,235,0 +170745792384,236,0 +170745792434,237,0 +170745792482,236,0 +170745792530,220,0 +170745792579,215,0 +170745792627,215,0 +170745792675,214,0 +170745792723,214,0 +170745792771,214,0 +170745792819,215,0 +170745792866,214,0 +170745792914,215,0 +170745792962,215,0 +170745793010,216,0 +170745793060,217,0 +170745793109,217,0 +170745793159,219,0 +170745793207,222,0 +170745793255,225,0 +170745793304,228,0 +170745793354,229,0 +170745793402,231,0 +170745793450,231,0 +170745793498,234,0 +170745793547,236,0 +170745793597,238,0 +170745793645,219,0 +170745793694,215,0 +170745793744,214,0 +170745793792,215,0 +170745793840,215,0 +170745793888,215,0 +170745793936,215,0 +170745793984,214,0 +170745794033,215,0 +170745794083,216,0 +170745794130,216,0 +170745794180,217,0 +170745794230,217,0 +170745794279,218,0 +170745794327,221,0 +170745794375,224,0 +170745794424,226,0 +170745794472,230,0 +170745794520,230,0 +170745794568,232,0 +170745794618,233,0 +170745794666,239,0 +170745794714,240,0 +170745794763,219,0 +170745794811,215,0 +170745794859,214,0 +170745794909,214,0 +170745794958,214,0 +170745795006,214,0 +170745795054,215,0 +170745795102,215,0 +170745795150,216,0 +170745795198,216,0 +170745795245,216,0 +170745795293,229,0 +170745795341,218,0 +170745795389,220,0 +170745795437,222,0 +170745795485,224,0 +170745795533,228,0 +170745795581,228,0 +170745795628,231,0 +170745795676,231,0 +170745795724,232,0 +170745795772,236,0 +170745795820,236,0 +170745795869,236,0 +170745795917,217,0 +170745795965,215,0 +170745796015,215,0 +170745796063,215,0 +170745796112,215,0 +170745796162,215,0 +170745796210,215,0 +170745796259,215,0 +170745796307,215,0 +170745796355,215,0 +170745796405,216,0 +170745796453,216,0 +170745796500,217,0 +170745796548,220,0 +170745796598,222,0 +170745796646,223,0 +170745796696,226,0 +170745796745,228,0 +170745796793,228,0 +170745796842,230,0 +170745796890,230,0 +170745796940,236,0 +170745796988,237,0 +170745797036,217,0 +170745797084,215,0 +170745797132,215,0 +170745797180,215,0 +170745797229,215,0 +170745797277,215,0 +170745797325,215,0 +170745797373,216,0 +170745797421,217,0 +170745797469,233,0 +170745797517,218,0 +170745797565,220,0 +170745797613,222,0 +170745797661,225,0 +170745797709,227,0 +170745797758,228,0 +170745797808,230,0 +170745797855,232,0 +170745797903,232,0 +170745797953,234,0 +170745798001,232,0 +170745798049,237,0 +170745798097,236,0 +170745798146,217,0 +170745798194,215,0 +170745798242,215,0 +170745798290,215,0 +170745798339,214,0 +170745798387,215,0 +170745798435,215,0 +170745798483,216,0 +170745798533,216,0 +170745798581,217,0 +170745798629,219,0 +170745798677,222,0 +170745798725,224,0 +170745798773,225,0 +170745798820,228,0 +170745798868,230,0 +170745798916,231,0 +170745798964,233,0 +170745799012,234,0 +170745799060,234,0 +170745799108,236,0 +170745799156,236,0 +170745799205,237,0 +170745799255,219,0 +170745799303,215,0 +170745799351,215,0 +170745799399,214,0 +170745799448,215,0 +170745799498,216,0 +170745799546,217,0 +170745799595,217,0 +170745799645,217,0 +170745799693,218,0 +170745799741,220,0 +170745799790,222,0 +170745799838,224,0 +170745799888,227,0 +170745799937,230,0 +170745799985,231,0 +170745800035,232,0 +170745800084,233,0 +170745800134,234,0 +170745800182,235,0 +170745800230,236,0 +170745800279,236,0 +170745800327,238,0 +170745800375,220,0 +170745800423,215,0 +170745800473,215,0 +170745800521,216,0 +170745800569,217,0 +170745800618,217,0 +170745800668,218,0 +170745800716,218,0 +170745800764,221,0 +170745800812,223,0 +170745800860,225,0 +170745800909,226,0 +170745800959,228,0 +170745801007,229,0 +170745801055,232,0 +170745801104,233,0 +170745801152,233,0 +170745801200,235,0 +170745801248,235,0 +170745801296,236,0 +170745801344,237,0 +170745801394,238,0 +170745801443,236,0 +170745801491,219,0 +170745801539,215,0 +170745801587,216,0 +170745801635,216,0 +170745801683,217,0 +170745801732,218,0 +170745801780,218,0 +170745801830,220,0 +170745801878,222,0 +170745801927,224,0 +170745801975,226,0 +170745802023,227,0 +170745802073,228,0 +170745802121,232,0 +170745802170,232,0 +170745802218,233,0 +170745802266,234,0 +170745802314,235,0 +170745802362,237,0 +170745802411,238,0 +170745802461,239,0 +170745802509,237,0 +170745802557,238,0 +170745802605,220,0 +170745802653,216,0 +170745802701,215,0 +170745802749,215,0 +170745802797,215,0 +170745802845,215,0 +170745802892,215,0 +170745802940,216,0 +170745802990,216,0 +170745803039,217,0 +170745803089,217,0 +170745803138,219,0 +170745803188,222,0 +170745803237,226,0 +170745803287,226,0 +170745803335,228,0 +170745803383,229,0 +170745803431,230,0 +170745803480,231,0 +170745803528,236,0 +170745803576,236,0 +170745803624,232,0 +170745803672,236,0 +170745803720,234,0 +170745803768,216,0 +170745803818,215,0 +170745803865,215,0 +170745803914,215,0 +170745803963,216,0 +170745804013,217,0 +170745804062,217,0 +170745804110,218,0 +170745804160,219,0 +170745804207,221,0 +170745804255,223,0 +170745804303,226,0 +170745804351,225,0 +170745804399,230,0 +170745804447,231,0 +170745804495,234,0 +170745804545,233,0 +170745804593,236,0 +170745804640,238,0 +170745804688,238,0 +170745804736,237,0 +170745804786,238,0 +170745804834,221,0 +170745804883,215,0 +170745804933,215,0 +170745804981,215,0 +170745805029,216,0 +170745805077,216,0 +170745805125,217,0 +170745805172,216,0 +170745805220,217,0 +170745805270,219,0 +170745805318,220,0 +170745805366,221,0 +170745805414,223,0 +170745805462,226,0 +170745805510,228,0 +170745805559,229,0 +170745805607,230,0 +170745805655,232,0 +170745805704,234,0 +170745805754,235,0 +170745805803,235,0 +170745805853,232,0 +170745805901,237,0 +170745805949,233,0 +170745805997,215,0 +170745806045,215,0 +170745806093,215,0 +170745806142,216,0 +170745806190,217,0 +170745806240,217,0 +170745806288,217,0 +170745806336,217,0 +170745806385,218,0 +170745806433,220,0 +170745806483,223,0 +170745806532,225,0 +170745806580,228,0 +170745806628,230,0 +170745806676,232,0 +170745806724,232,0 +170745806772,233,0 +170745806821,236,0 +170745806871,236,0 +170745806919,235,0 +170745806967,237,0 +170745807015,238,0 +170745807063,237,0 +170745807111,217,0 +170745807159,215,0 +170745807208,215,0 +170745807258,215,0 +170745807306,215,0 +170745807354,214,0 +170745807402,215,0 +170745807450,215,0 +170745807499,215,0 +170745807547,215,0 +170745807595,215,0 +170745807645,215,0 +170745807693,215,0 +170745807740,214,0 +170745807790,215,0 +170745807840,215,0 +170745807889,216,0 +170745807939,218,0 +170745807988,221,0 +170745808038,223,0 +170745808087,227,0 +170745808137,236,0 +170745808185,235,0 +170745808233,217,0 +170745808281,216,0 +170745808329,216,0 +170745808377,217,0 +170745808426,216,0 +170745808476,219,0 +170745808525,218,0 +170745808575,218,0 +170745808623,220,0 +170745808670,220,0 +170745808718,222,0 +170745808766,223,0 +170745808816,227,0 +170745808864,230,0 +170745808911,229,0 +170745808961,237,0 +170745809009,235,0 +170745809057,234,0 +170745809105,234,0 +170745809153,236,0 +170745809201,237,0 +170745809250,236,0 +170745809300,236,0 +170745809348,216,0 +170745809396,215,0 +170745809444,215,0 +170745809493,215,0 +170745809543,215,0 +170745809592,215,0 +170745809640,215,0 +170745809688,216,0 +170745809736,216,0 +170745809784,217,0 +170745809833,218,0 +170745809881,219,0 +170745809931,222,0 +170745809981,223,0 +170745810028,226,0 +170745810078,230,0 +170745810126,230,0 +170745810174,230,0 +170745810222,233,0 +170745810271,234,0 +170745810319,233,0 +170745810367,238,0 +170745810415,238,0 +170745810463,218,0 +170745810511,215,0 +170745810561,214,0 +170745810609,214,0 +170745810657,214,0 +170745810705,215,0 +170745810754,216,0 +170745810804,216,0 +170745810853,217,0 +170745810901,216,0 +170745810949,217,0 +170745810997,219,0 +170745811045,222,0 +170745811093,225,0 +170745811141,227,0 +170745811191,228,0 +170745811238,230,0 +170745811286,231,0 +170745811336,234,0 +170745811385,234,0 +170745811433,235,0 +170745811483,237,0 +170745811531,237,0 +170745811579,219,0 +170745811628,215,0 +170745811676,214,0 +170745811724,214,0 +170745811772,214,0 +170745811822,214,0 +170745811870,215,0 +170745811918,215,0 +170745811966,220,0 +170745812015,216,0 +170745812063,217,0 +170745812111,218,0 +170745812161,221,0 +170745812209,224,0 +170745812258,225,0 +170745812306,228,0 +170745812356,230,0 +170745812405,230,0 +170745812455,232,0 +170745812503,233,0 +170745812552,233,0 +170745812600,238,0 +170745812650,236,0 +170745812699,218,0 +170745812747,215,0 +170745812795,214,0 +170745812843,215,0 +170745812893,215,0 +170745812940,214,0 +170745812988,215,0 +170745813036,215,0 +170745813086,216,0 +170745813135,216,0 +170745813183,217,0 +170745813231,218,0 +170745813279,222,0 +170745813328,224,0 +170745813376,226,0 +170745813426,227,0 +170745813474,228,0 +170745813522,231,0 +170745813569,235,0 +170745813619,234,0 +170745813669,236,0 +170745813716,236,0 +170745813764,237,0 +170745813812,219,0 +170745813862,215,0 +170745813910,215,0 +170745813958,215,0 +170745814006,217,0 +170745814055,217,0 +170745814105,217,0 +170745814153,218,0 +170745814201,218,0 +170745814250,220,0 +170745814300,223,0 +170745814348,225,0 +170745814396,227,0 +170745814444,229,0 +170745814493,230,0 +170745814543,232,0 +170745814592,234,0 +170745814640,235,0 +170745814690,235,0 +170745814739,236,0 +170745814787,237,0 +170745814835,236,0 +170745814883,237,0 +170745814931,220,0 +170745814981,215,0 +170745815029,214,0 +170745815077,215,0 +170745815124,215,0 +170745815172,216,0 +170745815220,216,0 +170745815268,217,0 +170745815318,217,0 +170745815366,218,0 +170745815414,220,0 +170745815462,222,0 +170745815510,224,0 +170745815558,226,0 +170745815607,229,0 +170745815657,231,0 +170745815706,232,0 +170745815754,233,0 +170745815802,235,0 +170745815850,236,0 +170745815898,237,0 +170745815948,238,0 +170745815996,237,0 +170745816045,219,0 +170745816093,215,0 +170745816143,214,0 +170745816192,215,0 +170745816240,214,0 +170745816289,215,0 +170745816339,216,0 +170745816387,216,0 +170745816435,216,0 +170745816485,216,0 +170745816534,218,0 +170745816584,220,0 +170745816633,223,0 +170745816681,224,0 +170745816729,226,0 +170745816777,229,0 +170745816827,230,0 +170745816876,231,0 +170745816924,233,0 +170745816972,234,0 +170745817021,236,0 +170745817069,236,0 +170745817118,237,0 +170745817166,220,0 +170745817214,216,0 +170745817262,215,0 +170745817310,216,0 +170745817358,216,0 +170745817408,217,0 +170745817456,218,0 +170745817505,219,0 +170745817553,219,0 +170745817601,221,0 +170745817649,222,0 +170745817698,225,0 +170745817746,226,0 +170745817796,229,0 +170745817845,231,0 +170745817893,233,0 +170745817941,234,0 +170745817989,235,0 +170745818037,235,0 +170745818087,236,0 +170745818135,236,0 +170745818183,236,0 +170745818232,237,0 +170745818282,219,0 +170745818330,215,0 +170745818379,215,0 +170745818427,215,0 +170745818477,216,0 +170745818524,217,0 +170745818574,217,0 +170745818622,217,0 +170745818671,219,0 +170745818719,220,0 +170745818769,221,0 +170745818818,224,0 +170745818868,226,0 +170745818918,228,0 +170745818965,230,0 +170745819013,231,0 +170745819061,233,0 +170745819109,233,0 +170745819157,235,0 +170745819205,236,0 +170745819255,238,0 +170745819303,236,0 +170745819351,237,0 +170745819399,230,0 +170745819448,215,0 +170745819498,214,0 +170745819547,214,0 +170745819595,214,0 +170745819643,214,0 +170745819693,214,0 +170745819742,215,0 +170745819790,215,0 +170745819838,217,0 +170745819886,217,0 +170745819934,218,0 +170745819982,221,0 +170745820031,223,0 +170745820079,226,0 +170745820129,227,0 +170745820177,229,0 +170745820225,230,0 +170745820273,231,0 +170745820321,233,0 +170745820370,235,0 +170745820420,235,0 +170745820469,236,0 +170745820517,218,0 +170745820565,215,0 +170745820613,214,0 +170745820661,214,0 +170745820711,214,0 +170745820759,215,0 +170745820807,215,0 +170745820856,215,0 +170745820904,216,0 +170745820954,216,0 +170745821003,218,0 +170745821051,219,0 +170745821101,222,0 +170745821149,225,0 +170745821197,227,0 +170745821244,228,0 +170745821292,230,0 +170745821340,231,0 +170745821388,232,0 +170745821436,234,0 +170745821484,235,0 +170745821532,236,0 +170745821580,236,0 +170745821628,221,0 +170745821676,217,0 +170745821726,217,0 +170745821774,216,0 +170745821822,216,0 +170745821871,215,0 +170745821919,215,0 +170745821967,216,0 +170745822017,216,0 +170745822064,217,0 +170745822114,218,0 +170745822163,220,0 +170745822211,223,0 +170745822259,225,0 +170745822309,228,0 +170745822357,229,0 +170745822406,230,0 +170745822454,232,0 +170745822504,234,0 +170745822553,235,0 +170745822603,235,0 +170745822652,235,0 +170745822700,236,0 +170745822748,217,0 +170745822796,215,0 +170745822844,214,0 +170745822894,214,0 +170745822943,214,0 +170745822993,214,0 +170745823042,214,0 +170745823092,214,0 +170745823140,215,0 +170745823188,215,0 +170745823236,216,0 +170745823285,216,0 +170745823333,218,0 +170745823381,221,0 +170745823431,222,0 +170745823480,225,0 +170745823530,228,0 +170745823578,230,0 +170745823626,231,0 +170745823675,232,0 +170745823725,237,0 +170745823773,236,0 +170745823821,219,0 +170745823869,215,0 +170745823918,214,0 +170745823968,215,0 +170745824017,214,0 +170745824067,216,0 +170745824115,217,0 +170745824163,217,0 +170745824211,218,0 +170745824259,218,0 +170745824307,220,0 +170745824354,223,0 +170745824402,224,0 +170745824450,227,0 +170745824500,229,0 +170745824548,231,0 +170745824597,231,0 +170745824645,233,0 +170745824695,235,0 +170745824744,235,0 +170745824792,236,0 +170745824842,237,0 +170745824891,235,0 +170745824941,218,0 +170745824990,215,0 +170745825038,215,0 +170745825086,215,0 +170745825134,215,0 +170745825182,215,0 +170745825232,215,0 +170745825280,215,0 +170745825328,216,0 +170745825375,217,0 +170745825425,217,0 +170745825475,217,0 +170745825523,220,0 +170745825572,223,0 +170745825622,225,0 +170745825669,227,0 +170745825717,229,0 +170745825765,231,0 +170745825815,234,0 +170745825865,234,0 +170745825912,235,0 +170745825960,235,0 +170745826008,236,0 +170745826056,217,0 +170745826104,215,0 +170745826154,215,0 +170745826203,215,0 +170745826253,216,0 +170745826301,216,0 +170745826349,218,0 +170745826398,218,0 +170745826448,218,0 +170745826496,220,0 +170745826545,222,0 +170745826593,225,0 +170745826641,228,0 +170745826691,229,0 +170745826740,230,0 +170745826788,232,0 +170745826836,231,0 +170745826884,233,0 +170745826932,235,0 +170745826980,237,0 +170745827028,235,0 +170745827076,236,0 +170745827126,221,0 +170745827174,216,0 +170745827221,215,0 +170745827271,215,0 +170745827321,215,0 +170745827370,215,0 +170745827420,215,0 +170745827467,215,0 +170745827515,215,0 +170745827563,215,0 +170745827613,214,0 +170745827662,215,0 +170745827712,215,0 +170745827760,215,0 +170745827808,216,0 +170745827857,217,0 +170745827907,219,0 +170745827955,222,0 +170745828003,224,0 +170745828051,225,0 +170745828099,227,0 +170745828147,235,0 +170745828195,238,0 +170745828242,219,0 +170745828290,215,0 +170745828338,215,0 +170745828388,215,0 +170745828437,216,0 +170745828487,216,0 +170745828536,217,0 +170745828586,217,0 +170745828635,218,0 +170745828683,219,0 +170745828733,220,0 +170745828782,221,0 +170745828830,224,0 +170745828878,227,0 +170745828928,229,0 +170745828977,230,0 +170745829025,232,0 +170745829075,234,0 +170745829123,234,0 +170745829172,236,0 +170745829222,231,0 +170745829271,237,0 +170745829321,219,0 +170745829370,215,0 +170745829418,214,0 +170745829466,215,0 +170745829516,215,0 +170745829564,215,0 +170745829612,214,0 +170745829660,214,0 +170745829709,215,0 +170745829759,216,0 +170745829807,216,0 +170745829856,217,0 +170745829906,218,0 +170745829954,219,0 +170745830003,222,0 +170745830053,225,0 +170745830102,226,0 +170745830150,227,0 +170745830200,229,0 +170745830248,233,0 +170745830296,233,0 +170745830344,236,0 +170745830392,237,0 +170745830439,219,0 +170745830487,215,0 +170745830535,215,0 +170745830585,214,0 +170745830633,214,0 +170745830682,215,0 +170745830732,215,0 +170745830780,216,0 +170745830829,217,0 +170745830877,217,0 +170745830925,218,0 +170745830973,220,0 +170745831021,223,0 +170745831071,225,0 +170745831119,228,0 +170745831168,229,0 +170745831216,230,0 +170745831264,232,0 +170745831312,233,0 +170745831360,235,0 +170745831408,235,0 +170745831456,237,0 +170745831504,236,0 +170745831553,219,0 +170745831601,215,0 +170745831651,215,0 +170745831700,215,0 +170745831748,215,0 +170745831796,215,0 +170745831844,215,0 +170745831894,215,0 +170745831943,216,0 +170745831991,216,0 +170745832039,217,0 +170745832087,218,0 +170745832137,219,0 +170745832184,224,0 +170745832234,225,0 +170745832284,227,0 +170745832333,229,0 +170745832383,232,0 +170745832431,233,0 +170745832480,233,0 +170745832530,230,0 +170745832578,238,0 +170745832627,219,0 +170745832677,215,0 +170745832724,214,0 +170745832772,214,0 +170745832820,215,0 +170745832868,215,0 +170745832916,216,0 +170745832964,217,0 +170745833014,217,0 +170745833062,218,0 +170745833111,218,0 +170745833161,220,0 +170745833209,222,0 +170745833257,224,0 +170745833306,225,0 +170745833354,229,0 +170745833403,231,0 +170745833453,232,0 +170745833501,233,0 +170745833550,234,0 +170745833598,238,0 +170745833646,237,0 +170745833694,238,0 +170745833742,219,0 +170745833792,216,0 +170745833841,215,0 +170745833889,216,0 +170745833939,215,0 +170745833987,215,0 +170745834035,216,0 +170745834083,217,0 +170745834131,216,0 +170745834179,217,0 +170745834228,218,0 +170745834276,221,0 +170745834324,223,0 +170745834372,227,0 +170745834421,227,0 +170745834469,231,0 +170745834518,231,0 +170745834566,233,0 +170745834614,233,0 +170745834662,235,0 +170745834712,235,0 +170745834760,236,0 +170745834807,237,0 +170745834855,219,0 +170745834903,215,0 +170745834951,215,0 +170745835001,214,0 +170745835049,215,0 +170745835097,215,0 +170745835146,215,0 +170745835196,215,0 +170745835245,215,0 +170745835293,216,0 +170745835343,216,0 +170745835392,217,0 +170745835442,218,0 +170745835490,221,0 +170745835538,224,0 +170745835587,226,0 +170745835635,230,0 +170745835683,230,0 +170745835733,233,0 +170745835781,233,0 +170745835829,238,0 +170745835877,237,0 +170745835925,219,0 +170745835972,215,0 +170745836020,214,0 +170745836070,214,0 +170745836118,214,0 +170745836167,215,0 +170745836217,215,0 +170745836266,216,0 +170745836314,214,0 +170745836362,217,0 +170745836410,218,0 +170745836458,219,0 +170745836508,222,0 +170745836556,225,0 +170745836605,227,0 +170745836653,229,0 +170745836703,230,0 +170745836752,232,0 +170745836800,233,0 +170745836848,234,0 +170745836897,235,0 +170745836945,237,0 +170745836993,237,0 +170745837041,219,0 +170745837089,215,0 +170745837137,214,0 +170745837185,214,0 +170745837233,214,0 +170745837281,214,0 +170745837331,215,0 +170745837380,214,0 +170745837428,215,0 +170745837476,217,0 +170745837524,216,0 +170745837574,217,0 +170745837622,219,0 +170745837670,222,0 +170745837719,226,0 +170745837769,227,0 +170745837817,229,0 +170745837865,231,0 +170745837913,232,0 +170745837962,234,0 +170745838010,230,0 +170745838058,237,0 +170745838106,237,0 +170745838155,218,0 +170745838203,215,0 +170745838252,215,0 +170745838300,215,0 +170745838350,216,0 +170745838398,216,0 +170745838446,215,0 +170745838494,215,0 +170745838543,215,0 +170745838593,216,0 +170745838641,217,0 +170745838689,217,0 +170745838738,220,0 +170745838788,223,0 +170745838835,226,0 +170745838883,229,0 +170745838931,234,0 +170745838979,231,0 +170745839029,234,0 +170745839076,234,0 +170745839124,236,0 +170745839174,237,0 +170745839222,218,0 +170745839271,215,0 +170745839319,215,0 +170745839367,215,0 +170745839415,214,0 +170745839464,214,0 +170745839512,215,0 +170745839560,215,0 +170745839608,216,0 +170745839656,216,0 +170745839704,217,0 +170745839752,217,0 +170745839800,218,0 +170745839849,222,0 +170745839899,224,0 +170745839948,227,0 +170745839998,228,0 diff --git a/laser_value/0209-16.csv b/laser_value/0209-16.csv new file mode 100644 index 0000000..cd24957 --- /dev/null +++ b/laser_value/0209-16.csv @@ -0,0 +1,7426 @@ +timestamp,laser_value,event +170745840046,230,0 +170745840094,238,0 +170745840142,234,0 +170745840190,234,0 +170745840238,237,0 +170745840286,239,0 +170745840336,220,0 +170745840385,215,0 +170745840435,215,0 +170745840483,215,0 +170745840532,214,0 +170745840580,215,0 +170745840630,215,0 +170745840679,216,0 +170745840727,217,0 +170745840775,217,0 +170745840825,218,0 +170745840874,219,0 +170745840922,221,0 +170745840970,233,0 +170745841018,226,0 +170745841067,229,0 +170745841115,230,0 +170745841165,233,0 +170745841213,233,0 +170745841260,234,0 +170745841310,230,0 +170745841358,236,0 +170745841406,239,0 +170745841454,217,0 +170745841502,215,0 +170745841552,214,0 +170745841601,215,0 +170745841649,214,0 +170745841699,215,0 +170745841747,214,0 +170745841796,215,0 +170745841846,215,0 +170745841894,216,0 +170745841943,216,0 +170745841993,218,0 +170745842041,219,0 +170745842089,222,0 +170745842137,225,0 +170745842185,227,0 +170745842234,230,0 +170745842282,232,0 +170745842332,232,0 +170745842381,232,0 +170745842431,236,0 +170745842480,236,0 +170745842528,220,0 +170745842576,215,0 +170745842624,214,0 +170745842672,215,0 +170745842721,214,0 +170745842769,215,0 +170745842819,215,0 +170745842867,216,0 +170745842915,216,0 +170745842963,217,0 +170745843012,217,0 +170745843060,218,0 +170745843109,220,0 +170745843157,224,0 +170745843205,228,0 +170745843253,228,0 +170745843301,230,0 +170745843350,235,0 +170745843398,233,0 +170745843446,234,0 +170745843494,235,0 +170745843542,237,0 +170745843590,237,0 +170745843640,217,0 +170745843688,214,0 +170745843736,214,0 +170745843784,214,0 +170745843831,214,0 +170745843879,215,0 +170745843929,215,0 +170745843978,215,0 +170745844026,216,0 +170745844074,216,0 +170745844122,217,0 +170745844171,218,0 +170745844219,220,0 +170745844267,223,0 +170745844317,225,0 +170745844365,227,0 +170745844413,229,0 +170745844460,232,0 +170745844508,231,0 +170745844558,232,0 +170745844606,236,0 +170745844654,236,0 +170745844702,219,0 +170745844751,215,0 +170745844801,215,0 +170745844849,215,0 +170745844898,215,0 +170745844948,215,0 +170745844997,215,0 +170745845045,215,0 +170745845093,215,0 +170745845141,215,0 +170745845189,216,0 +170745845239,216,0 +170745845287,217,0 +170745845335,217,0 +170745845382,221,0 +170745845432,223,0 +170745845480,225,0 +170745845528,228,0 +170745845576,232,0 +170745845625,232,0 +170745845674,235,0 +170745845722,239,0 +170745845770,237,0 +170745845820,218,0 +170745845869,215,0 +170745845917,215,0 +170745845966,214,0 +170745846014,215,0 +170745846062,215,0 +170745846112,215,0 +170745846159,215,0 +170745846207,216,0 +170745846255,217,0 +170745846303,217,0 +170745846351,218,0 +170745846399,221,0 +170745846448,224,0 +170745846496,226,0 +170745846544,228,0 +170745846592,229,0 +170745846642,234,0 +170745846690,234,0 +170745846738,235,0 +170745846786,230,0 +170745846835,239,0 +170745846883,225,0 +170745846931,215,0 +170745846979,215,0 +170745847027,215,0 +170745847076,214,0 +170745847124,215,0 +170745847172,215,0 +170745847220,216,0 +170745847268,216,0 +170745847316,217,0 +170745847364,217,0 +170745847411,218,0 +170745847459,218,0 +170745847507,221,0 +170745847555,223,0 +170745847603,227,0 +170745847652,233,0 +170745847702,230,0 +170745847750,232,0 +170745847797,233,0 +170745847845,235,0 +170745847893,236,0 +170745847941,236,0 +170745847989,219,0 +170745848037,215,0 +170745848085,216,0 +170745848133,216,0 +170745848182,217,0 +170745848232,216,0 +170745848281,218,0 +170745848329,218,0 +170745848377,220,0 +170745848426,292,1 +170745848523,224,0 +170745848571,228,0 +170745848621,228,0 +170745848669,232,0 +170745848718,231,0 +170745848766,235,0 +170745848814,234,0 +170745848862,238,0 +170745848910,237,0 +170745848960,237,0 +170745849007,236,0 +170745849055,236,0 +170745849103,217,0 +170745849153,214,0 +170745849202,214,0 +170745849250,214,0 +170745849298,215,0 +170745849346,215,0 +170745849394,216,0 +170745849442,218,0 +170745849492,217,0 +170745849540,218,0 +170745849588,221,0 +170745849636,224,0 +170745849684,226,0 +170745849732,228,0 +170745849780,231,0 +170745849828,231,0 +170745849876,232,0 +170745849924,234,0 +170745849973,236,0 +170745850021,236,0 +170745850070,233,0 +170745850118,237,0 +170745850166,227,0 +170745850214,216,0 +170745850264,215,0 +170745850312,215,0 +170745850361,215,0 +170745850409,215,0 +170745850457,216,0 +170745850505,216,0 +170745850553,216,0 +170745850601,218,0 +170745850649,218,0 +170745850697,222,0 +170745850745,225,0 +170745850793,224,0 +170745850841,228,0 +170745850889,229,0 +170745850936,229,0 +170745850986,232,0 +170745851034,234,0 +170745851083,234,0 +170745851131,234,0 +170745851181,236,0 +170745851229,237,0 +170745851278,219,0 +170745851328,215,0 +170745851377,214,0 +170745851425,214,0 +170745851473,214,0 +170745851522,215,0 +170745851572,215,0 +170745851620,215,0 +170745851668,216,0 +170745851715,217,0 +170745851763,217,0 +170745851811,218,0 +170745851859,222,0 +170745851907,223,0 +170745851955,224,0 +170745852003,228,0 +170745852050,230,0 +170745852098,232,0 +170745852146,234,0 +170745852194,234,0 +170745852242,232,0 +170745852290,237,0 +170745852338,237,0 +170745852386,216,0 +170745852434,215,0 +170745852482,215,0 +170745852530,215,0 +170745852577,216,0 +170745852627,216,0 +170745852675,216,0 +170745852724,218,0 +170745852772,217,0 +170745852822,219,0 +170745852870,220,0 +170745852918,233,0 +170745852965,226,0 +170745853015,227,0 +170745853063,232,0 +170745853112,233,0 +170745853160,231,0 +170745853208,232,0 +170745853256,233,0 +170745853304,236,0 +170745853352,236,0 +170745853402,236,0 +170745853451,219,0 +170745853501,215,0 +170745853550,214,0 +170745853600,215,0 +170745853648,214,0 +170745853696,215,0 +170745853745,214,0 +170745853793,215,0 +170745853841,215,0 +170745853889,215,0 +170745853938,217,0 +170745853986,219,0 +170745854034,221,0 +170745854082,223,0 +170745854130,224,0 +170745854178,226,0 +170745854226,228,0 +170745854274,230,0 +170745854323,233,0 +170745854371,234,0 +170745854419,234,0 +170745854468,236,0 +170745854516,236,0 +170745854564,218,0 +170745854612,215,0 +170745854660,214,0 +170745854708,215,0 +170745854755,215,0 +170745854805,216,0 +170745854853,216,0 +170745854902,216,0 +170745854950,220,0 +170745854998,223,0 +170745855048,223,0 +170745855096,225,0 +170745855144,228,0 +170745855193,228,0 +170745855241,229,0 +170745855289,232,0 +170745855339,232,0 +170745855387,233,0 +170745855435,234,0 +170745855484,237,0 +170745855532,235,0 +170745855582,235,0 +170745855630,219,0 +170745855678,216,0 +170745855726,215,0 +170745855773,215,0 +170745855823,215,0 +170745855871,215,0 +170745855920,215,0 +170745855970,216,0 +170745856019,216,0 +170745856069,217,0 +170745856117,219,0 +170745856166,220,0 +170745856214,223,0 +170745856262,225,0 +170745856310,227,0 +170745856358,228,0 +170745856408,230,0 +170745856456,234,0 +170745856504,232,0 +170745856552,233,0 +170745856601,233,0 +170745856650,236,0 +170745856700,235,0 +170745856749,219,0 +170745856797,215,0 +170745856847,215,0 +170745856896,215,0 +170745856946,216,0 +170745856996,216,0 +170745857044,218,0 +170745857092,217,0 +170745857140,220,0 +170745857187,222,0 +170745857235,224,0 +170745857283,225,0 +170745857331,228,0 +170745857379,229,0 +170745857427,230,0 +170745857475,230,0 +170745857523,232,0 +170745857571,233,0 +170745857620,240,0 +170745857668,235,0 +170745857716,236,0 +170745857765,237,0 +170745857813,235,0 +170745857861,217,0 +170745857909,215,0 +170745857957,214,0 +170745858005,214,0 +170745858053,215,0 +170745858102,216,0 +170745858150,215,0 +170745858198,216,0 +170745858246,217,0 +170745858296,218,0 +170745858345,220,0 +170745858395,222,0 +170745858443,224,0 +170745858492,227,0 +170745858540,229,0 +170745858588,230,0 +170745858636,230,0 +170745858684,232,0 +170745858732,233,0 +170745858782,235,0 +170745858830,235,0 +170745858878,235,0 +170745858926,219,0 +170745858974,215,0 +170745859023,216,0 +170745859071,217,0 +170745859119,217,0 +170745859169,218,0 +170745859218,219,0 +170745859266,220,0 +170745859314,221,0 +170745859362,224,0 +170745859410,224,0 +170745859457,226,0 +170745859507,230,0 +170745859555,231,0 +170745859604,233,0 +170745859652,235,0 +170745859700,235,0 +170745859750,235,0 +170745859799,236,0 +170745859847,237,0 +170745859895,237,0 +170745859945,238,0 +170745859993,236,0 +170745860041,218,0 +170745860090,215,0 +170745860138,215,0 +170745860186,215,0 +170745860234,214,0 +170745860282,215,0 +170745860330,216,0 +170745860378,216,0 +170745860426,217,0 +170745860475,217,0 +170745860523,219,0 +170745860571,222,0 +170745860621,224,0 +170745860669,233,0 +170745860717,228,0 +170745860765,230,0 +170745860812,230,0 +170745860860,232,0 +170745860910,237,0 +170745860959,235,0 +170745861009,231,0 +170745861057,236,0 +170745861107,223,0 +170745861154,216,0 +170745861202,216,0 +170745861250,216,0 +170745861298,217,0 +170745861346,218,0 +170745861394,218,0 +170745861442,221,0 +170745861490,222,0 +170745861539,224,0 +170745861587,225,0 +170745861635,226,0 +170745861684,228,0 +170745861732,229,0 +170745861780,232,0 +170745861828,232,0 +170745861876,233,0 +170745861926,235,0 +170745861975,236,0 +170745862025,237,0 +170745862074,240,0 +170745862122,238,0 +170745862170,237,0 +170745862218,220,0 +170745862266,215,0 +170745862315,215,0 +170745862363,215,0 +170745862411,215,0 +170745862459,215,0 +170745862509,215,0 +170745862557,216,0 +170745862606,216,0 +170745862654,217,0 +170745862702,218,0 +170745862752,221,0 +170745862800,223,0 +170745862849,227,0 +170745862897,228,0 +170745862947,231,0 +170745862996,232,0 +170745863046,234,0 +170745863094,235,0 +170745863142,236,0 +170745863190,236,0 +170745863238,237,0 +170745863287,236,0 +170745863337,218,0 +170745863385,215,0 +170745863434,216,0 +170745863484,216,0 +170745863533,217,0 +170745863581,218,0 +170745863629,218,0 +170745863679,221,0 +170745863728,223,0 +170745863778,224,0 +170745863827,226,0 +170745863875,228,0 +170745863923,230,0 +170745863971,231,0 +170745864021,232,0 +170745864070,235,0 +170745864118,235,0 +170745864166,236,0 +170745864216,235,0 +170745864264,237,0 +170745864313,237,0 +170745864363,239,0 +170745864411,223,0 +170745864459,215,0 +170745864508,215,0 +170745864558,214,0 +170745864607,215,0 +170745864655,215,0 +170745864703,215,0 +170745864751,215,0 +170745864801,215,0 +170745864849,216,0 +170745864898,217,0 +170745864946,217,0 +170745864996,218,0 +170745865045,221,0 +170745865093,223,0 +170745865141,225,0 +170745865191,226,0 +170745865239,229,0 +170745865288,231,0 +170745865338,232,0 +170745865387,231,0 +170745865435,236,0 +170745865483,236,0 +170745865531,221,0 +170745865580,216,0 +170745865630,216,0 +170745865680,216,0 +170745865728,215,0 +170745865775,216,0 +170745865823,215,0 +170745865873,215,0 +170745865923,215,0 +170745865970,216,0 +170745866018,216,0 +170745866068,218,0 +170745866116,222,0 +170745866164,224,0 +170745866212,228,0 +170745866260,229,0 +170745866308,228,0 +170745866357,230,0 +170745866405,233,0 +170745866453,235,0 +170745866501,234,0 +170745866549,237,0 +170745866597,237,0 +170745866644,216,0 +170745866692,215,0 +170745866740,215,0 +170745866788,216,0 +170745866836,216,0 +170745866884,218,0 +170745866932,218,0 +170745866980,217,0 +170745867028,219,0 +170745867075,220,0 +170745867125,222,0 +170745867174,224,0 +170745867222,226,0 +170745867272,228,0 +170745867320,230,0 +170745867367,231,0 +170745867415,232,0 +170745867463,233,0 +170745867511,233,0 +170745867559,235,0 +170745867607,235,0 +170745867655,236,0 +170745867703,235,0 +170745867752,216,0 +170745867800,215,0 +170745867848,214,0 +170745867896,214,0 +170745867943,214,0 +170745867993,214,0 +170745868041,215,0 +170745868089,215,0 +170745868137,225,0 +170745868184,217,0 +170745868232,217,0 +170745868282,220,0 +170745868330,222,0 +170745868378,225,0 +170745868427,227,0 +170745868475,228,0 +170745868523,230,0 +170745868571,231,0 +170745868618,231,0 +170745868666,234,0 +170745868716,234,0 +170745868764,235,0 +170745868813,232,0 +170745868863,215,0 +170745868911,214,0 +170745868958,214,0 +170745869006,215,0 +170745869054,215,0 +170745869104,216,0 +170745869152,217,0 +170745869199,217,0 +170745869247,217,0 +170745869295,219,0 +170745869343,221,0 +170745869392,224,0 +170745869442,225,0 +170745869490,228,0 +170745869538,229,0 +170745869587,230,0 +170745869637,233,0 +170745869686,233,0 +170745869736,234,0 +170745869784,236,0 +170745869832,235,0 +170745869881,236,0 +170745869929,219,0 +170745869977,216,0 +170745870025,215,0 +170745870073,216,0 +170745870121,217,0 +170745870170,217,0 +170745870218,218,0 +170745870268,219,0 +170745870316,221,0 +170745870364,222,0 +170745870411,224,0 +170745870461,226,0 +170745870509,226,0 +170745870557,229,0 +170745870604,231,0 +170745870652,232,0 +170745870700,233,0 +170745870748,236,0 +170745870796,238,0 +170745870845,237,0 +170745870893,238,0 +170745870941,237,0 +170745870991,237,0 +170745871038,220,0 +170745871086,215,0 +170745871134,215,0 +170745871182,216,0 +170745871230,216,0 +170745871278,217,0 +170745871326,217,0 +170745871374,218,0 +170745871422,222,0 +170745871469,223,0 +170745871517,224,0 +170745871565,226,0 +170745871615,228,0 +170745871663,230,0 +170745871710,231,0 +170745871758,231,0 +170745871806,233,0 +170745871854,234,0 +170745871902,234,0 +170745871952,236,0 +170745872000,237,0 +170745872049,236,0 +170745872099,235,0 +170745872147,218,0 +170745872196,214,0 +170745872244,214,0 +170745872294,215,0 +170745872342,216,0 +170745872391,216,0 +170745872439,216,0 +170745872488,217,0 +170745872536,218,0 +170745872584,220,0 +170745872632,221,0 +170745872682,223,0 +170745872729,226,0 +170745872779,228,0 +170745872827,232,0 +170745872876,231,0 +170745872926,232,0 +170745872975,233,0 +170745873023,234,0 +170745873071,236,0 +170745873121,235,0 +170745873169,237,0 +170745873218,237,0 +170745873266,219,0 +170745873314,216,0 +170745873362,219,0 +170745873412,217,0 +170745873459,217,0 +170745873509,218,0 +170745873557,218,0 +170745873605,220,0 +170745873653,223,0 +170745873702,226,0 +170745873750,227,0 +170745873798,228,0 +170745873846,230,0 +170745873894,231,0 +170745873942,234,0 +170745873991,236,0 +170745874039,235,0 +170745874087,238,0 +170745874135,238,0 +170745874185,237,0 +170745874234,232,0 +170745874284,237,0 +170745874333,230,0 +170745874381,215,0 +170745874429,214,0 +170745874477,214,0 +170745874525,214,0 +170745874573,214,0 +170745874621,215,0 +170745874670,215,0 +170745874718,215,0 +170745874766,216,0 +170745874816,216,0 +170745874864,217,0 +170745874912,221,0 +170745874961,223,0 +170745875009,224,0 +170745875059,227,0 +170745875106,229,0 +170745875154,230,0 +170745875202,231,0 +170745875252,232,0 +170745875300,236,0 +170745875348,235,0 +170745875396,236,0 +170745875444,218,0 +170745875492,215,0 +170745875540,215,0 +170745875587,215,0 +170745875635,216,0 +170745875683,217,0 +170745875731,217,0 +170745875779,217,0 +170745875829,218,0 +170745875877,222,0 +170745875925,223,0 +170745875974,225,0 +170745876022,226,0 +170745876070,228,0 +170745876118,230,0 +170745876166,231,0 +170745876214,233,0 +170745876262,234,0 +170745876310,235,0 +170745876358,236,0 +170745876406,237,0 +170745876454,236,0 +170745876502,236,0 +170745876550,219,0 +170745876597,215,0 +170745876645,214,0 +170745876693,214,0 +170745876743,214,0 +170745876792,214,0 +170745876842,214,0 +170745876890,214,0 +170745876938,215,0 +170745876986,215,0 +170745877034,215,0 +170745877083,216,0 +170745877131,219,0 +170745877181,221,0 +170745877230,223,0 +170745877280,227,0 +170745877329,228,0 +170745877377,228,0 +170745877427,230,0 +170745877476,231,0 +170745877526,231,0 +170745877574,235,0 +170745877622,235,0 +170745877670,218,0 +170745877718,215,0 +170745877767,215,0 +170745877815,215,0 +170745877863,215,0 +170745877911,215,0 +170745877959,215,0 +170745878007,215,0 +170745878055,215,0 +170745878103,215,0 +170745878152,215,0 +170745878200,215,0 +170745878250,214,0 +170745878298,215,0 +170745878346,220,0 +170745878395,217,0 +170745878443,217,0 +170745878491,218,0 +170745878539,217,0 +170745878587,217,0 +170745878635,217,0 +170745878685,222,0 +170745878733,224,0 +170745878780,226,0 +170745878828,227,0 +170745878876,230,0 +170745878924,232,0 +170745878972,232,0 +170745879020,235,0 +170745879068,233,0 +170745879116,234,0 +170745879164,236,0 +170745879212,237,0 +170745879259,236,0 +170745879309,219,0 +170745879357,215,0 +170745879405,214,0 +170745879453,215,0 +170745879501,216,0 +170745879548,216,0 +170745879596,217,0 +170745879644,217,0 +170745879692,218,0 +170745879740,218,0 +170745879789,219,0 +170745879837,219,0 +170745879887,222,0 +170745879936,224,0 +170745879984,227,0 +170745880032,230,0 +170745880080,231,0 +170745880128,233,0 +170745880175,233,0 +170745880223,236,0 +170745880271,236,0 +170745880321,237,0 +170745880369,237,0 +170745880416,219,0 +170745880464,215,0 +170745880512,214,0 +170745880560,215,0 +170745880608,215,0 +170745880656,216,0 +170745880704,216,0 +170745880752,217,0 +170745880800,217,0 +170745880848,218,0 +170745880895,219,0 +170745880945,221,0 +170745880993,223,0 +170745881042,225,0 +170745881090,227,0 +170745881140,228,0 +170745881188,231,0 +170745881236,232,0 +170745881284,234,0 +170745881333,233,0 +170745881381,236,0 +170745881429,236,0 +170745881477,237,0 +170745881524,219,0 +170745881572,214,0 +170745881620,214,0 +170745881670,214,0 +170745881718,215,0 +170745881767,216,0 +170745881815,216,0 +170745881865,216,0 +170745881914,216,0 +170745881962,218,0 +170745882012,221,0 +170745882060,223,0 +170745882108,225,0 +170745882157,227,0 +170745882207,229,0 +170745882254,230,0 +170745882304,233,0 +170745882352,233,0 +170745882401,234,0 +170745882451,235,0 +170745882499,240,0 +170745882547,236,0 +170745882596,236,0 +170745882646,216,0 +170745882694,214,0 +170745882742,214,0 +170745882791,215,0 +170745882839,214,0 +170745882887,215,0 +170745882935,214,0 +170745882983,214,0 +170745883031,216,0 +170745883079,216,0 +170745883127,216,0 +170745883175,217,0 +170745883224,221,0 +170745883272,223,0 +170745883320,226,0 +170745883368,227,0 +170745883416,230,0 +170745883464,231,0 +170745883512,233,0 +170745883561,235,0 +170745883609,231,0 +170745883657,236,0 +170745883705,237,0 +170745883753,217,0 +170745883801,215,0 +170745883849,216,0 +170745883899,215,0 +170745883948,216,0 +170745883998,216,0 +170745884047,216,0 +170745884097,217,0 +170745884145,217,0 +170745884193,218,0 +170745884241,221,0 +170745884289,223,0 +170745884336,225,0 +170745884384,228,0 +170745884434,229,0 +170745884484,231,0 +170745884531,232,0 +170745884581,233,0 +170745884629,235,0 +170745884677,236,0 +170745884725,236,0 +170745884774,236,0 +170745884824,218,0 +170745884872,214,0 +170745884921,214,0 +170745884969,215,0 +170745885019,214,0 +170745885067,214,0 +170745885116,214,0 +170745885164,215,0 +170745885214,215,0 +170745885262,217,0 +170745885310,217,0 +170745885359,219,0 +170745885407,221,0 +170745885455,224,0 +170745885505,227,0 +170745885554,228,0 +170745885602,230,0 +170745885650,231,0 +170745885698,232,0 +170745885748,234,0 +170745885796,235,0 +170745885845,236,0 +170745885893,236,0 +170745885941,217,0 +170745885990,214,0 +170745886038,214,0 +170745886086,214,0 +170745886134,215,0 +170745886182,215,0 +170745886232,215,0 +170745886280,214,0 +170745886328,214,0 +170745886377,215,0 +170745886425,216,0 +170745886474,217,0 +170745886524,218,0 +170745886572,220,0 +170745886621,223,0 +170745886671,224,0 +170745886720,226,0 +170745886770,229,0 +170745886818,231,0 +170745886867,232,0 +170745886915,233,0 +170745886963,236,0 +170745887011,236,0 +170745887059,217,0 +170745887107,215,0 +170745887155,215,0 +170745887203,215,0 +170745887251,215,0 +170745887298,216,0 +170745887346,216,0 +170745887394,218,0 +170745887444,218,0 +170745887492,218,0 +170745887540,220,0 +170745887588,222,0 +170745887637,224,0 +170745887685,228,0 +170745887733,228,0 +170745887781,230,0 +170745887829,231,0 +170745887878,233,0 +170745887926,235,0 +170745887975,241,0 +170745888023,236,0 +170745888071,236,0 +170745888119,237,0 +170745888167,217,0 +170745888215,215,0 +170745888263,215,0 +170745888311,215,0 +170745888360,215,0 +170745888408,215,0 +170745888456,216,0 +170745888504,216,0 +170745888552,216,0 +170745888601,217,0 +170745888649,218,0 +170745888699,220,0 +170745888747,222,0 +170745888794,227,0 +170745888842,229,0 +170745888892,229,0 +170745888940,232,0 +170745888988,233,0 +170745889037,235,0 +170745889087,235,0 +170745889135,235,0 +170745889183,237,0 +170745889231,237,0 +170745889280,216,0 +170745889328,215,0 +170745889378,215,0 +170745889426,214,0 +170745889474,214,0 +170745889522,214,0 +170745889570,214,0 +170745889619,215,0 +170745889667,215,0 +170745889717,215,0 +170745889766,216,0 +170745889814,217,0 +170745889862,220,0 +170745889911,222,0 +170745889959,225,0 +170745890007,226,0 +170745890057,229,0 +170745890105,229,0 +170745890154,233,0 +170745890202,232,0 +170745890250,235,0 +170745890298,235,0 +170745890346,220,0 +170745890394,215,0 +170745890444,215,0 +170745890493,214,0 +170745890543,215,0 +170745890591,215,0 +170745890639,216,0 +170745890687,216,0 +170745890735,216,0 +170745890784,217,0 +170745890834,218,0 +170745890882,219,0 +170745890931,221,0 +170745890979,223,0 +170745891027,226,0 +170745891077,227,0 +170745891126,230,0 +170745891174,232,0 +170745891222,232,0 +170745891270,234,0 +170745891319,234,0 +170745891369,236,0 +170745891417,228,0 +170745891466,215,0 +170745891514,214,0 +170745891564,214,0 +170745891612,214,0 +170745891660,214,0 +170745891708,214,0 +170745891756,215,0 +170745891804,216,0 +170745891852,216,0 +170745891900,216,0 +170745891949,216,0 +170745891997,219,0 +170745892047,221,0 +170745892096,223,0 +170745892146,226,0 +170745892195,228,0 +170745892243,230,0 +170745892291,230,0 +170745892339,234,0 +170745892389,235,0 +170745892438,235,0 +170745892486,237,0 +170745892534,219,0 +170745892584,214,0 +170745892631,214,0 +170745892679,215,0 +170745892727,215,0 +170745892775,215,0 +170745892823,216,0 +170745892873,216,0 +170745892922,217,0 +170745892970,217,0 +170745893020,218,0 +170745893069,221,0 +170745893117,224,0 +170745893165,226,0 +170745893215,229,0 +170745893264,231,0 +170745893314,232,0 +170745893362,232,0 +170745893410,233,0 +170745893458,235,0 +170745893507,236,0 +170745893557,236,0 +170745893606,237,0 +170745893654,217,0 +170745893702,214,0 +170745893750,215,0 +170745893800,214,0 +170745893849,215,0 +170745893897,215,0 +170745893947,215,0 +170745893995,216,0 +170745894044,216,0 +170745894092,217,0 +170745894142,222,0 +170745894191,220,0 +170745894241,221,0 +170745894289,225,0 +170745894337,227,0 +170745894386,228,0 +170745894436,229,0 +170745894484,231,0 +170745894533,232,0 +170745894583,232,0 +170745894631,235,0 +170745894679,236,0 +170745894727,236,0 +170745894775,217,0 +170745894823,215,0 +170745894872,215,0 +170745894920,214,0 +170745894968,215,0 +170745895018,215,0 +170745895067,215,0 +170745895115,214,0 +170745895165,215,0 +170745895213,215,0 +170745895262,216,0 +170745895310,217,0 +170745895358,219,0 +170745895406,222,0 +170745895454,225,0 +170745895503,227,0 +170745895553,227,0 +170745895601,230,0 +170745895649,231,0 +170745895697,233,0 +170745895745,234,0 +170745895793,235,0 +170745895842,236,0 +170745895892,217,0 +170745895940,215,0 +170745895989,215,0 +170745896037,214,0 +170745896085,215,0 +170745896133,215,0 +170745896181,215,0 +170745896229,217,0 +170745896277,217,0 +170745896326,217,0 +170745896374,223,0 +170745896422,220,0 +170745896470,222,0 +170745896518,224,0 +170745896566,228,0 +170745896614,228,0 +170745896662,229,0 +170745896710,231,0 +170745896760,230,0 +170745896808,233,0 +170745896855,234,0 +170745896903,235,0 +170745896951,237,0 +170745897001,218,0 +170745897049,214,0 +170745897098,214,0 +170745897146,214,0 +170745897196,214,0 +170745897245,214,0 +170745897295,214,0 +170745897344,214,0 +170745897394,214,0 +170745897443,214,0 +170745897493,214,0 +170745897542,214,0 +170745897590,215,0 +170745897638,215,0 +170745897686,216,0 +170745897734,219,0 +170745897784,221,0 +170745897833,223,0 +170745897881,225,0 +170745897929,227,0 +170745897979,229,0 +170745898027,234,0 +170745898076,235,0 +170745898126,218,0 +170745898174,215,0 +170745898223,215,0 +170745898273,215,0 +170745898322,215,0 +170745898372,216,0 +170745898420,216,0 +170745898469,217,0 +170745898517,218,0 +170745898565,218,0 +170745898615,230,0 +170745898664,221,0 +170745898712,226,0 +170745898762,226,0 +170745898810,227,0 +170745898858,231,0 +170745898907,231,0 +170745898957,232,0 +170745899005,233,0 +170745899054,235,0 +170745899102,234,0 +170745899152,237,0 +170745899200,236,0 +170745899249,217,0 +170745899299,215,0 +170745899347,214,0 +170745899395,214,0 +170745899443,214,0 +170745899491,214,0 +170745899540,214,0 +170745899590,214,0 +170745899639,214,0 +170745899689,214,0 +170745899737,215,0 +170745899786,215,0 +170745899834,217,0 +170745899882,216,0 +170745899932,220,0 +170745899980,223,0 +170745900028,224,0 +170745900077,226,0 +170745900125,228,0 +170745900173,231,0 +170745900221,233,0 +170745900269,234,0 +170745900319,236,0 +170745900368,219,0 +170745900418,216,0 +170745900466,216,0 +170745900515,216,0 +170745900563,217,0 +170745900611,217,0 +170745900659,218,0 +170745900708,219,0 +170745900758,219,0 +170745900806,221,0 +170745900854,223,0 +170745900903,223,0 +170745900951,226,0 +170745901001,229,0 +170745901050,230,0 +170745901100,231,0 +170745901148,233,0 +170745901197,235,0 +170745901247,235,0 +170745901295,237,0 +170745901344,237,0 +170745901392,239,0 +170745901440,237,0 +170745901490,217,0 +170745901538,215,0 +170745901587,216,0 +170745901636,216,0 +170745901686,217,0 +170745901734,217,0 +170745901784,217,0 +170745901832,219,0 +170745901881,220,0 +170745901929,224,0 +170745901977,222,0 +170745902025,224,0 +170745902073,226,0 +170745902121,227,0 +170745902170,230,0 +170745902218,231,0 +170745902266,236,0 +170745902316,232,0 +170745902365,234,0 +170745902413,237,0 +170745902463,236,0 +170745902511,235,0 +170745902559,235,0 +170745902608,218,0 +170745902656,214,0 +170745902704,214,0 +170745902752,214,0 +170745902800,215,0 +170745902848,215,0 +170745902896,216,0 +170745902945,216,0 +170745902993,217,0 +170745903041,217,0 +170745903089,217,0 +170745903139,219,0 +170745903187,222,0 +170745903235,225,0 +170745903283,226,0 +170745903331,228,0 +170745903380,232,0 +170745903428,231,0 +170745903478,233,0 +170745903526,233,0 +170745903575,234,0 +170745903625,237,0 +170745903674,237,0 +170745903724,218,0 +170745903772,214,0 +170745903820,214,0 +170745903868,214,0 +170745903917,214,0 +170745903965,214,0 +170745904013,214,0 +170745904061,215,0 +170745904109,215,0 +170745904159,216,0 +170745904207,216,0 +170745904254,217,0 +170745904304,218,0 +170745904354,220,0 +170745904402,222,0 +170745904450,224,0 +170745904499,227,0 +170745904549,228,0 +170745904597,232,0 +170745904644,232,0 +170745904692,231,0 +170745904740,236,0 +170745904788,221,0 +170745904836,219,0 +170745904884,215,0 +170745904932,214,0 +170745904982,215,0 +170745905030,214,0 +170745905079,215,0 +170745905129,215,0 +170745905177,217,0 +170745905225,216,0 +170745905274,217,0 +170745905322,217,0 +170745905370,218,0 +170745905418,219,0 +170745905468,221,0 +170745905516,224,0 +170745905565,229,0 +170745905613,230,0 +170745905661,231,0 +170745905711,230,0 +170745905760,232,0 +170745905808,233,0 +170745905856,237,0 +170745905904,235,0 +170745905952,222,0 +170745906001,217,0 +170745906049,216,0 +170745906099,216,0 +170745906148,216,0 +170745906196,217,0 +170745906244,217,0 +170745906294,215,0 +170745906342,215,0 +170745906390,215,0 +170745906438,216,0 +170745906486,216,0 +170745906534,216,0 +170745906583,217,0 +170745906633,221,0 +170745906682,222,0 +170745906732,225,0 +170745906780,227,0 +170745906829,228,0 +170745906879,229,0 +170745906928,232,0 +170745906978,234,0 +170745907027,235,0 +170745907075,218,0 +170745907125,214,0 +170745907173,214,0 +170745907222,215,0 +170745907272,215,0 +170745907320,216,0 +170745907369,216,0 +170745907419,216,0 +170745907468,218,0 +170745907516,219,0 +170745907564,221,0 +170745907614,223,0 +170745907662,223,0 +170745907711,226,0 +170745907759,227,0 +170745907807,230,0 +170745907855,231,0 +170745907903,232,0 +170745907953,232,0 +170745908000,234,0 +170745908048,234,0 +170745908096,236,0 +170745908144,236,0 +170745908194,219,0 +170745908242,215,0 +170745908290,214,0 +170745908339,215,0 +170745908389,214,0 +170745908438,214,0 +170745908488,214,0 +170745908536,214,0 +170745908585,214,0 +170745908633,214,0 +170745908681,214,0 +170745908729,215,0 +170745908777,215,0 +170745908825,216,0 +170745908873,218,0 +170745908922,221,0 +170745908972,223,0 +170745909020,224,0 +170745909068,228,0 +170745909117,228,0 +170745909165,229,0 +170745909213,235,0 +170745909262,236,0 +170745909310,221,0 +170745909358,217,0 +170745909408,216,0 +170745909456,215,0 +170745909504,216,0 +170745909553,216,0 +170745909601,218,0 +170745909649,217,0 +170745909697,218,0 +170745909746,221,0 +170745909796,222,0 +170745909845,224,0 +170745909895,226,0 +170745909944,227,0 +170745909992,230,0 +170745910040,231,0 +170745910088,232,0 +170745910138,233,0 +170745910186,236,0 +170745910234,236,0 +170745910282,235,0 +170745910331,235,0 +170745910379,236,0 +170745910427,219,0 +170745910476,215,0 +170745910526,215,0 +170745910574,216,0 +170745910622,216,0 +170745910670,217,0 +170745910718,217,0 +170745910766,218,0 +170745910815,220,0 +170745910865,223,0 +170745910914,225,0 +170745910962,227,0 +170745911012,227,0 +170745911060,229,0 +170745911108,229,0 +170745911157,230,0 +170745911207,233,0 +170745911255,235,0 +170745911303,235,0 +170745911351,236,0 +170745911400,236,0 +170745911448,235,0 +170745911498,237,0 +170745911546,219,0 +170745911594,215,0 +170745911643,215,0 +170745911691,215,0 +170745911739,215,0 +170745911787,215,0 +170745911835,215,0 +170745911883,215,0 +170745911933,216,0 +170745911982,216,0 +170745912032,218,0 +170745912080,221,0 +170745912128,224,0 +170745912176,225,0 +170745912224,228,0 +170745912271,229,0 +170745912319,231,0 +170745912367,233,0 +170745912415,232,0 +170745912463,234,0 +170745912511,235,0 +170745912561,234,0 +170745912609,235,0 +170745912657,218,0 +170745912706,215,0 +170745912754,215,0 +170745912803,214,0 +170745912853,214,0 +170745912901,215,0 +170745912949,215,0 +170745912997,216,0 +170745913045,216,0 +170745913093,216,0 +170745913142,218,0 +170745913190,220,0 +170745913240,223,0 +170745913288,224,0 +170745913336,227,0 +170745913385,228,0 +170745913435,230,0 +170745913484,234,0 +170745913534,231,0 +170745913582,234,0 +170745913629,235,0 +170745913677,236,0 +170745913725,236,0 +170745913775,219,0 +170745913825,214,0 +170745913874,214,0 +170745913922,214,0 +170745913971,214,0 +170745914019,214,0 +170745914067,215,0 +170745914117,215,0 +170745914166,216,0 +170745914214,216,0 +170745914262,218,0 +170745914310,219,0 +170745914358,221,0 +170745914406,223,0 +170745914456,226,0 +170745914505,228,0 +170745914555,228,0 +170745914604,232,0 +170745914654,235,0 +170745914702,235,0 +170745914750,233,0 +170745914799,236,0 +170745914849,235,0 +170745914898,219,0 +170745914946,215,0 +170745914994,215,0 +170745915042,214,0 +170745915092,214,0 +170745915140,214,0 +170745915188,215,0 +170745915236,215,0 +170745915283,215,0 +170745915331,216,0 +170745915379,217,0 +170745915429,218,0 +170745915477,221,0 +170745915526,223,0 +170745915574,225,0 +170745915622,224,0 +170745915670,228,0 +170745915718,230,0 +170745915768,230,0 +170745915817,231,0 +170745915867,233,0 +170745915915,230,0 +170745915962,234,0 +170745916010,218,0 +170745916058,215,0 +170745916106,214,0 +170745916154,214,0 +170745916202,214,0 +170745916250,214,0 +170745916298,214,0 +170745916346,214,0 +170745916394,214,0 +170745916441,215,0 +170745916489,215,0 +170745916537,216,0 +170745916585,217,0 +170745916633,219,0 +170745916681,221,0 +170745916729,224,0 +170745916778,226,0 +170745916826,228,0 +170745916874,229,0 +170745916922,232,0 +170745916970,233,0 +170745917018,232,0 +170745917066,236,0 +170745917113,236,0 +170745917161,217,0 +170745917209,216,0 +170745917257,216,0 +170745917305,217,0 +170745917353,221,0 +170745917401,217,0 +170745917449,218,0 +170745917497,218,0 +170745917545,218,0 +170745917593,221,0 +170745917641,222,0 +170745917690,224,0 +170745917738,226,0 +170745917786,228,0 +170745917835,228,0 +170745917883,232,0 +170745917931,232,0 +170745917979,233,0 +170745918028,234,0 +170745918076,235,0 +170745918124,235,0 +170745918172,235,0 +170745918220,236,0 +170745918269,218,0 +170745918317,215,0 +170745918365,214,0 +170745918413,214,0 +170745918461,215,0 +170745918509,215,0 +170745918557,214,0 +170745918604,215,0 +170745918652,216,0 +170745918700,216,0 +170745918748,216,0 +170745918798,217,0 +170745918847,220,0 +170745918895,222,0 +170745918945,224,0 +170745918992,227,0 +170745919040,229,0 +170745919088,230,0 +170745919136,231,0 +170745919186,233,0 +170745919234,234,0 +170745919282,235,0 +170745919330,236,0 +170745919379,219,0 +170745919427,215,0 +170745919477,216,0 +170745919526,217,0 +170745919574,216,0 +170745919622,217,0 +170745919672,218,0 +170745919720,218,0 +170745919769,219,0 +170745919817,220,0 +170745919865,223,0 +170745919913,225,0 +170745919961,227,0 +170745920009,228,0 +170745920057,230,0 +170745920105,232,0 +170745920153,234,0 +170745920202,236,0 +170745920252,236,0 +170745920300,236,0 +170745920350,238,0 +170745920397,237,0 +170745920445,236,0 +170745920495,219,0 +170745920544,215,0 +170745920594,215,0 +170745920643,215,0 +170745920691,216,0 +170745920739,217,0 +170745920787,217,0 +170745920835,217,0 +170745920885,217,0 +170745920934,220,0 +170745920982,222,0 +170745921030,224,0 +170745921080,225,0 +170745921129,229,0 +170745921177,230,0 +170745921227,232,0 +170745921276,237,0 +170745921326,233,0 +170745921374,235,0 +170745921422,235,0 +170745921471,236,0 +170745921519,237,0 +170745921567,237,0 +170745921615,219,0 +170745921664,215,0 +170745921712,215,0 +170745921762,215,0 +170745921810,216,0 +170745921860,216,0 +170745921907,217,0 +170745921957,217,0 +170745922005,218,0 +170745922053,220,0 +170745922101,223,0 +170745922150,224,0 +170745922200,225,0 +170745922249,227,0 +170745922299,230,0 +170745922348,232,0 +170745922398,233,0 +170745922447,234,0 +170745922495,237,0 +170745922543,237,0 +170745922593,237,0 +170745922641,237,0 +170745922691,235,0 +170745922740,219,0 +170745922790,217,0 +170745922838,216,0 +170745922887,217,0 +170745922935,217,0 +170745922983,218,0 +170745923031,219,0 +170745923079,219,0 +170745923128,219,0 +170745923176,221,0 +170745923224,223,0 +170745923272,227,0 +170745923320,228,0 +170745923369,229,0 +170745923419,230,0 +170745923467,231,0 +170745923515,234,0 +170745923564,234,0 +170745923612,232,0 +170745923662,234,0 +170745923711,237,0 +170745923759,236,0 +170745923809,235,0 +170745923857,218,0 +170745923905,215,0 +170745923953,215,0 +170745924000,216,0 +170745924050,216,0 +170745924098,217,0 +170745924147,224,0 +170745924195,218,0 +170745924243,221,0 +170745924291,221,0 +170745924339,223,0 +170745924387,225,0 +170745924437,227,0 +170745924485,229,0 +170745924533,229,0 +170745924581,231,0 +170745924630,232,0 +170745924680,236,0 +170745924729,236,0 +170745924777,237,0 +170745924827,239,0 +170745924876,237,0 +170745924924,235,0 +170745924972,219,0 +170745925020,214,0 +170745925068,215,0 +170745925117,216,0 +170745925167,217,0 +170745925215,217,0 +170745925265,217,0 +170745925312,218,0 +170745925360,219,0 +170745925408,221,0 +170745925458,223,0 +170745925506,223,0 +170745925555,227,0 +170745925603,228,0 +170745925651,230,0 +170745925700,231,0 +170745925748,234,0 +170745925796,234,0 +170745925844,234,0 +170745925893,235,0 +170745925941,237,0 +170745925989,236,0 +170745926037,236,0 +170745926085,219,0 +170745926133,214,0 +170745926181,214,0 +170745926229,214,0 +170745926278,214,0 +170745926326,215,0 +170745926374,215,0 +170745926423,215,0 +170745926471,217,0 +170745926519,217,0 +170745926569,219,0 +170745926617,220,0 +170745926665,222,0 +170745926713,224,0 +170745926762,226,0 +170745926810,228,0 +170745926858,229,0 +170745926906,231,0 +170745926956,234,0 +170745927004,234,0 +170745927053,234,0 +170745927101,235,0 +170745927149,236,0 +170745927197,219,0 +170745927245,215,0 +170745927293,214,0 +170745927342,214,0 +170745927391,214,0 +170745927439,215,0 +170745927487,216,0 +170745927536,216,0 +170745927584,217,0 +170745927632,217,0 +170745927680,219,0 +170745927728,220,0 +170745927777,224,0 +170745927825,225,0 +170745927873,227,0 +170745927922,229,0 +170745927970,230,0 +170745928018,232,0 +170745928066,234,0 +170745928114,234,0 +170745928162,235,0 +170745928210,231,0 +170745928260,236,0 +170745928309,230,0 +170745928359,216,0 +170745928407,215,0 +170745928455,215,0 +170745928503,215,0 +170745928551,215,0 +170745928600,215,0 +170745928650,215,0 +170745928698,215,0 +170745928746,215,0 +170745928795,215,0 +170745928843,215,0 +170745928891,216,0 +170745928939,218,0 +170745928989,220,0 +170745929038,222,0 +170745929086,225,0 +170745929134,227,0 +170745929184,228,0 +170745929232,229,0 +170745929280,229,0 +170745929329,236,0 +170745929378,239,0 +170745929426,218,0 +170745929474,215,0 +170745929522,214,0 +170745929570,215,0 +170745929618,215,0 +170745929668,215,0 +170745929717,215,0 +170745929765,216,0 +170745929813,216,0 +170745929863,217,0 +170745929911,218,0 +170745929959,218,0 +170745930007,219,0 +170745930055,222,0 +170745930103,226,0 +170745930152,229,0 +170745930200,229,0 +170745930250,231,0 +170745930297,232,0 +170745930347,232,0 +170745930395,236,0 +170745930443,235,0 +170745930491,236,0 +170745930540,219,0 +170745930590,216,0 +170745930638,215,0 +170745930686,215,0 +170745930734,215,0 +170745930782,215,0 +170745930830,215,0 +170745930879,215,0 +170745930929,215,0 +170745930978,215,0 +170745931028,216,0 +170745931076,215,0 +170745931125,216,0 +170745931173,217,0 +170745931223,220,0 +170745931271,222,0 +170745931319,224,0 +170745931368,226,0 +170745931416,228,0 +170745931464,229,0 +170745931514,232,0 +170745931563,234,0 +170745931611,235,0 +170745931661,220,0 +170745931710,215,0 +170745931760,215,0 +170745931808,214,0 +170745931857,214,0 +170745931905,214,0 +170745931953,214,0 +170745932001,214,0 +170745932049,215,0 +170745932099,215,0 +170745932147,215,0 +170745932195,216,0 +170745932243,216,0 +170745932292,218,0 +170745932340,221,0 +170745932390,222,0 +170745932439,225,0 +170745932489,226,0 +170745932538,230,0 +170745932588,231,0 +170745932636,231,0 +170745932684,234,0 +170745932732,236,0 +170745932780,219,0 +170745932828,215,0 +170745932875,215,0 +170745932923,214,0 +170745932971,215,0 +170745933019,216,0 +170745933067,217,0 +170745933120,217,0 +170745933170,217,0 +170745933219,218,0 +170745933269,218,0 +170745933318,220,0 +170745933368,223,0 +170745933417,225,0 +170745933465,227,0 +170745933515,228,0 +170745933563,230,0 +170745933610,231,0 +170745933658,232,0 +170745933706,234,0 +170745933756,235,0 +170745933805,236,0 +170745933855,236,0 +170745933903,219,0 +170745933951,215,0 +170745933999,215,0 +170745934046,214,0 +170745934094,214,0 +170745934142,215,0 +170745934190,215,0 +170745934238,215,0 +170745934286,215,0 +170745934334,216,0 +170745934382,216,0 +170745934430,220,0 +170745934479,218,0 +170745934527,221,0 +170745934575,225,0 +170745934623,226,0 +170745934671,228,0 +170745934719,230,0 +170745934768,234,0 +170745934816,232,0 +170745934864,234,0 +170745934912,235,0 +170745934960,236,0 +170745935008,218,0 +170745935057,215,0 +170745935105,215,0 +170745935153,214,0 +170745935201,215,0 +170745935249,215,0 +170745935297,215,0 +170745935345,215,0 +170745935394,215,0 +170745935442,215,0 +170745935492,216,0 +170745935541,217,0 +170745935589,218,0 +170745935637,221,0 +170745935685,223,0 +170745935733,226,0 +170745935781,227,0 +170745935829,228,0 +170745935877,229,0 +170745935926,232,0 +170745935974,233,0 +170745936024,235,0 +170745936073,237,0 +170745936121,218,0 +170745936171,215,0 +170745936220,215,0 +170745936268,215,0 +170745936316,215,0 +170745936364,215,0 +170745936414,216,0 +170745936463,216,0 +170745936511,217,0 +170745936561,217,0 +170745936609,218,0 +170745936657,219,0 +170745936705,222,0 +170745936754,223,0 +170745936804,225,0 +170745936852,229,0 +170745936900,229,0 +170745936948,230,0 +170745936997,231,0 +170745937045,233,0 +170745937094,234,0 +170745937142,235,0 +170745937190,236,0 +170745937238,219,0 +170745937286,214,0 +170745937335,214,0 +170745937383,214,0 +170745937431,214,0 +170745937479,214,0 +170745937529,214,0 +170745937578,215,0 +170745937626,215,0 +170745937674,216,0 +170745937724,216,0 +170745937773,217,0 +170745937821,218,0 +170745937869,220,0 +170745937917,223,0 +170745937965,226,0 +170745938013,227,0 +170745938063,228,0 +170745938111,231,0 +170745938159,231,0 +170745938207,231,0 +170745938254,235,0 +170745938302,237,0 +170745938350,219,0 +170745938400,215,0 +170745938449,215,0 +170745938497,215,0 +170745938547,215,0 +170745938595,216,0 +170745938644,217,0 +170745938694,218,0 +170745938743,219,0 +170745938791,220,0 +170745938839,221,0 +170745938887,225,0 +170745938937,226,0 +170745938986,228,0 +170745939034,229,0 +170745939084,232,0 +170745939132,233,0 +170745939181,235,0 +170745939231,235,0 +170745939280,235,0 +170745939328,237,0 +170745939378,237,0 +170745939427,219,0 +170745939475,218,0 +170745939525,217,0 +170745939573,217,0 +170745939621,214,0 +170745939670,215,0 +170745939720,216,0 +170745939769,216,0 +170745939817,217,0 +170745939867,217,0 +170745939915,220,0 +170745939963,220,0 +170745940012,222,0 +170745940060,224,0 +170745940110,226,0 +170745940157,228,0 +170745940207,229,0 +170745940255,230,0 +170745940304,233,0 +170745940352,232,0 +170745940402,235,0 +170745940450,234,0 +170745940498,235,0 +170745940546,218,0 +170745940594,214,0 +170745940642,214,0 +170745940690,214,0 +170745940738,214,0 +170745940788,214,0 +170745940835,214,0 +170745940883,214,0 +170745940931,214,0 +170745940981,214,0 +170745941029,214,0 +170745941077,215,0 +170745941125,215,0 +170745941173,216,0 +170745941222,218,0 +170745941272,220,0 +170745941320,222,0 +170745941368,225,0 +170745941417,227,0 +170745941467,229,0 +170745941516,233,0 +170745941566,236,0 +170745941614,219,0 +170745941662,215,0 +170745941710,215,0 +170745941758,215,0 +170745941807,215,0 +170745941855,216,0 +170745941904,217,0 +170745941952,217,0 +170745942000,218,0 +170745942050,219,0 +170745942098,220,0 +170745942145,222,0 +170745942193,224,0 +170745942243,227,0 +170745942291,228,0 +170745942339,230,0 +170745942388,232,0 +170745942436,232,0 +170745942486,234,0 +170745942535,235,0 +170745942585,234,0 +170745942634,235,0 +170745942684,236,0 +170745942732,219,0 +170745942782,214,0 +170745942831,214,0 +170745942879,214,0 +170745942927,214,0 +170745942975,214,0 +170745943023,214,0 +170745943071,215,0 +170745943120,215,0 +170745943170,216,0 +170745943219,217,0 +170745943269,216,0 +170745943318,219,0 +170745943366,222,0 +170745943414,224,0 +170745943462,226,0 +170745943512,228,0 +170745943561,228,0 +170745943609,230,0 +170745943659,232,0 +170745943708,230,0 +170745943756,236,0 +170745943804,231,0 +170745943852,215,0 +170745943900,215,0 +170745943949,214,0 +170745943999,215,0 +170745944047,215,0 +170745944095,215,0 +170745944143,215,0 +170745944191,215,0 +170745944239,216,0 +170745944287,216,0 +170745944335,216,0 +170745944384,217,0 +170745944432,217,0 +170745944480,221,0 +170745944528,224,0 +170745944578,226,0 +170745944626,227,0 +170745944675,229,0 +170745944723,231,0 +170745944771,232,0 +170745944819,235,0 +170745944867,236,0 +170745944915,221,0 +170745944964,216,0 +170745945012,216,0 +170745945060,217,0 +170745945108,216,0 +170745945158,216,0 +170745945207,216,0 +170745945255,216,0 +170745945303,216,0 +170745945351,218,0 +170745945399,215,0 +170745945447,215,0 +170745945495,216,0 +170745945543,217,0 +170745945591,218,0 +170745945639,221,0 +170745945687,222,0 +170745945737,225,0 +170745945784,226,0 +170745945832,228,0 +170745945880,230,0 +170745945928,235,0 +170745945978,234,0 +170745946026,218,0 +170745946075,215,0 +170745946123,215,0 +170745946173,216,0 +170745946223,217,0 +170745946270,217,0 +170745946320,217,0 +170745946368,218,0 +170745946416,218,0 +170745946464,218,0 +170745946511,218,0 +170745946559,222,0 +170745946607,225,0 +170745946657,227,0 +170745946706,230,0 +170745946754,230,0 +170745946802,232,0 +170745946850,233,0 +170745946900,234,0 +170745946949,236,0 +170745946999,236,0 +170745947047,236,0 +170745947095,219,0 +170745947143,215,0 +170745947191,214,0 +170745947240,214,0 +170745947288,214,0 +170745947338,214,0 +170745947387,215,0 +170745947435,215,0 +170745947485,216,0 +170745947533,216,0 +170745947580,217,0 +170745947630,216,0 +170745947678,218,0 +170745947726,222,0 +170745947774,224,0 +170745947822,228,0 +170745947870,228,0 +170745947918,229,0 +170745947966,232,0 +170745948015,233,0 +170745948063,231,0 +170745948113,237,0 +170745948161,228,0 +170745948209,215,0 +170745948257,214,0 +170745948305,214,0 +170745948353,214,0 +170745948402,215,0 +170745948452,215,0 +170745948500,216,0 +170745948548,216,0 +170745948595,216,0 +170745948645,218,0 +170745948693,218,0 +170745948741,221,0 +170745948790,223,0 +170745948838,225,0 +170745948888,227,0 +170745948938,229,0 +170745948987,231,0 +170745949035,231,0 +170745949084,233,0 +170745949132,234,0 +170745949180,235,0 +170745949228,237,0 +170745949278,219,0 +170745949327,215,0 +170745949375,215,0 +170745949425,214,0 +170745949474,215,0 +170745949524,216,0 +170745949573,216,0 +170745949623,216,0 +170745949672,217,0 +170745949722,218,0 +170745949770,219,0 +170745949818,221,0 +170745949867,224,0 +170745949917,226,0 +170745949966,228,0 +170745950014,232,0 +170745950062,232,0 +170745950112,232,0 +170745950161,235,0 +170745950209,235,0 +170745950259,237,0 +170745950307,236,0 +170745950355,220,0 +170745950404,215,0 +170745950454,215,0 +170745950503,214,0 +170745950551,215,0 +170745950599,215,0 +170745950649,215,0 +170745950698,215,0 +170745950746,216,0 +170745950796,216,0 +170745950845,216,0 +170745950893,218,0 +170745950943,221,0 +170745950991,224,0 +170745951040,225,0 +170745951088,227,0 +170745951136,230,0 +170745951186,230,0 +170745951234,233,0 +170745951283,234,0 +170745951331,235,0 +170745951379,237,0 +170745951427,218,0 +170745951476,215,0 +170745951524,214,0 +170745951572,215,0 +170745951620,215,0 +170745951669,215,0 +170745951717,216,0 +170745951765,216,0 +170745951813,217,0 +170745951861,217,0 +170745951909,218,0 +170745951957,222,0 +170745952005,223,0 +170745952053,227,0 +170745952102,228,0 +170745952152,229,0 +170745952201,230,0 +170745952249,232,0 +170745952297,233,0 +170745952345,236,0 +170745952393,231,0 +170745952442,236,0 +170745952490,223,0 +170745952538,215,0 +170745952588,215,0 +170745952636,215,0 +170745952684,215,0 +170745952733,215,0 +170745952781,214,0 +170745952831,214,0 +170745952879,215,0 +170745952928,216,0 +170745952976,216,0 +170745953024,217,0 +170745953074,218,0 +170745953121,221,0 +170745953169,223,0 +170745953219,226,0 +170745953267,228,0 +170745953315,229,0 +170745953364,230,0 +170745953412,232,0 +170745953460,232,0 +170745953508,236,0 +170745953556,237,0 +170745953604,219,0 +170745953652,215,0 +170745953700,215,0 +170745953748,214,0 +170745953796,215,0 +170745953844,214,0 +170745953894,214,0 +170745953942,214,0 +170745953991,220,0 +170745954039,215,0 +170745954087,216,0 +170745954137,216,0 +170745954186,217,0 +170745954236,220,0 +170745954285,223,0 +170745954335,225,0 +170745954383,226,0 +170745954432,229,0 +170745954480,229,0 +170745954528,231,0 +170745954576,235,0 +170745954624,235,0 +170745954672,219,0 +170745954721,215,0 +170745954769,214,0 +170745954819,215,0 +170745954868,214,0 +170745954916,215,0 +170745954964,215,0 +170745955014,215,0 +170745955062,216,0 +170745955111,216,0 +170745955161,217,0 +170745955209,218,0 +170745955257,221,0 +170745955305,224,0 +170745955353,227,0 +170745955401,229,0 +170745955448,231,0 +170745955496,234,0 +170745955546,232,0 +170745955594,234,0 +170745955642,237,0 +170745955689,237,0 +170745955737,220,0 +170745955785,215,0 +170745955833,214,0 +170745955881,214,0 +170745955929,214,0 +170745955977,214,0 +170745956025,215,0 +170745956073,215,0 +170745956121,216,0 +170745956169,216,0 +170745956217,217,0 +170745956266,218,0 +170745956315,221,0 +170745956363,222,0 +170745956411,225,0 +170745956459,228,0 +170745956509,229,0 +170745956559,231,0 +170745956608,233,0 +170745956658,233,0 +170745956706,235,0 +170745956754,235,0 +170745956802,218,0 +170745956850,215,0 +170745956897,214,0 +170745956945,214,0 +170745956993,214,0 +170745957043,214,0 +170745957091,214,0 +170745957139,214,0 +170745957187,214,0 +170745957235,215,0 +170745957283,215,0 +170745957331,216,0 +170745957380,217,0 +170745957428,217,0 +170745957478,220,0 +170745957526,222,0 +170745957575,226,0 +170745957623,230,0 +170745957673,230,0 +170745957720,231,0 +170745957768,229,0 +170745957816,236,0 +170745957864,236,0 +170745957913,216,0 +170745957963,214,0 +170745958013,215,0 +170745958062,215,0 +170745958110,215,0 +170745958158,216,0 +170745958208,216,0 +170745958255,216,0 +170745958303,216,0 +170745958353,218,0 +170745958402,219,0 +170745958450,220,0 +170745958500,224,0 +170745958548,225,0 +170745958597,229,0 +170745958645,230,0 +170745958693,229,0 +170745958743,232,0 +170745958791,234,0 +170745958840,235,0 +170745958890,236,0 +170745958938,218,0 +170745958987,215,0 +170745959035,216,0 +170745959083,216,0 +170745959131,216,0 +170745959181,217,0 +170745959229,218,0 +170745959277,218,0 +170745959326,229,0 +170745959374,220,0 +170745959424,223,0 +170745959472,225,0 +170745959520,227,0 +170745959569,229,0 +170745959617,230,0 +170745959665,231,0 +170745959713,231,0 +170745959761,234,0 +170745959809,236,0 +170745959858,235,0 +170745959906,235,0 +170745959954,235,0 +170745960002,220,0 +170745960050,215,0 +170745960098,215,0 +170745960146,215,0 +170745960194,216,0 +170745960241,216,0 +170745960289,217,0 +170745960337,217,0 +170745960385,217,0 +170745960433,220,0 +170745960483,222,0 +170745960532,227,0 +170745960580,227,0 +170745960628,229,0 +170745960676,231,0 +170745960724,231,0 +170745960771,234,0 +170745960819,233,0 +170745960869,237,0 +170745960917,235,0 +170745960965,236,0 +170745961012,235,0 +170745961060,219,0 +170745961110,214,0 +170745961158,214,0 +170745961207,215,0 +170745961255,215,0 +170745961303,216,0 +170745961351,216,0 +170745961399,217,0 +170745961447,218,0 +170745961496,220,0 +170745961544,221,0 +170745961592,223,0 +170745961640,229,0 +170745961687,228,0 +170745961737,230,0 +170745961785,233,0 +170745961833,233,0 +170745961881,235,0 +170745961928,235,0 +170745961976,234,0 +170745962026,236,0 +170745962074,234,0 +170745962122,216,0 +170745962171,214,0 +170745962219,214,0 +170745962267,215,0 +170745962317,215,0 +170745962366,216,0 +170745962414,216,0 +170745962464,216,0 +170745962512,217,0 +170745962560,221,0 +170745962608,220,0 +170745962655,222,0 +170745962703,234,0 +170745962751,228,0 +170745962799,228,0 +170745962847,230,0 +170745962895,231,0 +170745962943,234,0 +170745962991,234,0 +170745963040,232,0 +170745963088,236,0 +170745963137,218,0 +170745963185,215,0 +170745963233,215,0 +170745963281,215,0 +170745963329,216,0 +170745963377,216,0 +170745963425,217,0 +170745963473,218,0 +170745963522,220,0 +170745963570,223,0 +170745963619,227,0 +170745963667,227,0 +170745963715,229,0 +170745963765,228,0 +170745963813,231,0 +170745963861,232,0 +170745963909,233,0 +170745963956,235,0 +170745964004,238,0 +170745964052,236,0 +170745964102,236,0 +170745964150,236,0 +170745964197,219,0 +170745964245,214,0 +170745964293,214,0 +170745964341,214,0 +170745964389,214,0 +170745964437,214,0 +170745964485,214,0 +170745964533,215,0 +170745964581,216,0 +170745964629,218,0 +170745964676,221,0 +170745964726,223,0 +170745964774,225,0 +170745964822,228,0 +170745964869,229,0 +170745964917,232,0 +170745964965,235,0 +170745965013,235,0 +170745965061,234,0 +170745965109,236,0 +170745965157,236,0 +170745965205,233,0 +170745965253,217,0 +170745965300,215,0 +170745965350,215,0 +170745965398,216,0 +170745965446,217,0 +170745965495,217,0 +170745965545,217,0 +170745965592,218,0 +170745965640,221,0 +170745965688,223,0 +170745965738,226,0 +170745965786,227,0 +170745965833,228,0 +170745965881,231,0 +170745965931,232,0 +170745965979,232,0 +170745966026,236,0 +170745966074,235,0 +170745966122,236,0 +170745966172,235,0 +170745966220,236,0 +170745966267,218,0 +170745966315,215,0 +170745966363,214,0 +170745966411,215,0 +170745966461,215,0 +170745966510,216,0 +170745966558,217,0 +170745966606,217,0 +170745966655,220,0 +170745966703,222,0 +170745966751,223,0 +170745966801,226,0 +170745966848,227,0 +170745966896,229,0 +170745966944,228,0 +170745966992,231,0 +170745967040,233,0 +170745967088,233,0 +170745967136,233,0 +170745967185,234,0 +170745967233,234,0 +170745967281,235,0 +170745967329,218,0 +170745967377,215,0 +170745967424,215,0 +170745967472,215,0 +170745967522,216,0 +170745967570,216,0 +170745967618,216,0 +170745967666,217,0 +170745967715,218,0 +170745967763,221,0 +170745967811,222,0 +170745967859,226,0 +170745967907,226,0 +170745967955,229,0 +170745968003,229,0 +170745968051,231,0 +170745968099,232,0 +170745968146,231,0 +170745968194,233,0 +170745968242,233,0 +170745968290,235,0 +170745968338,234,0 +170745968386,216,0 +170745968434,214,0 +170745968483,214,0 +170745968531,215,0 +170745968581,215,0 +170745968628,216,0 +170745968676,216,0 +170745968724,217,0 +170745968772,217,0 +170745968822,220,0 +170745968869,221,0 +170745968917,223,0 +170745968965,227,0 +170745969013,227,0 +170745969063,229,0 +170745969112,231,0 +170745969160,231,0 +170745969208,234,0 +170745969257,234,0 +170745969305,236,0 +170745969353,237,0 +170745969401,219,0 +170745969449,215,0 +170745969497,215,0 +170745969545,214,0 +170745969592,214,0 +170745969640,215,0 +170745969688,215,0 +170745969736,215,0 +170745969785,215,0 +170745969833,216,0 +170745969881,217,0 +170745969931,219,0 +170745969979,221,0 +170745970026,224,0 +170745970074,225,0 +170745970122,227,0 +170745970170,230,0 +170745970219,230,0 +170745970267,232,0 +170745970317,233,0 +170745970365,239,0 +170745970414,237,0 +170745970462,218,0 +170745970510,214,0 +170745970558,215,0 +170745970606,215,0 +170745970655,216,0 +170745970703,217,0 +170745970751,217,0 +170745970799,217,0 +170745970847,218,0 +170745970896,220,0 +170745970944,222,0 +170745970992,225,0 +170745971040,226,0 +170745971088,229,0 +170745971136,229,0 +170745971185,232,0 +170745971234,233,0 +170745971282,234,0 +170745971330,235,0 +170745971378,233,0 +170745971426,235,0 +170745971474,229,0 +170745971521,216,0 +170745971569,216,0 +170745971617,217,0 +170745971665,217,0 +170745971713,214,0 +170745971762,215,0 +170745971810,215,0 +170745971858,215,0 +170745971906,217,0 +170745971954,218,0 +170745972002,221,0 +170745972050,223,0 +170745972099,225,0 +170745972147,227,0 +170745972195,230,0 +170745972243,230,0 +170745972291,231,0 +170745972340,233,0 +170745972388,233,0 +170745972436,236,0 +170745972485,235,0 +170745972533,219,0 +170745972581,215,0 +170745972631,215,0 +170745972680,215,0 +170745972728,216,0 +170745972776,217,0 +170745972824,217,0 +170745972872,217,0 +170745972920,217,0 +170745972969,221,0 +170745973017,223,0 +170745973066,225,0 +170745973114,228,0 +170745973162,228,0 +170745973212,230,0 +170745973260,232,0 +170745973308,233,0 +170745973355,233,0 +170745973405,236,0 +170745973453,233,0 +170745973501,235,0 +170745973549,225,0 +170745973596,215,0 +170745973644,214,0 +170745973692,214,0 +170745973740,215,0 +170745973788,216,0 +170745973837,216,0 +170745973885,216,0 +170745973933,216,0 +170745973981,219,0 +170745974029,222,0 +170745974078,223,0 +170745974126,226,0 +170745974174,228,0 +170745974222,230,0 +170745974270,232,0 +170745974319,232,0 +170745974367,233,0 +170745974415,234,0 +170745974463,235,0 +170745974511,236,0 +170745974559,235,0 +170745974607,219,0 +170745974655,215,0 +170745974702,215,0 +170745974750,216,0 +170745974798,216,0 +170745974846,217,0 +170745974894,219,0 +170745974942,220,0 +170745974990,221,0 +170745975038,224,0 +170745975086,226,0 +170745975133,227,0 +170745975181,229,0 +170745975229,231,0 +170745975279,233,0 +170745975327,234,0 +170745975374,235,0 +170745975422,236,0 +170745975470,236,0 +170745975518,236,0 +170745975566,235,0 +170745975614,219,0 +170745975662,215,0 +170745975710,216,0 +170745975757,216,0 +170745975805,217,0 +170745975853,218,0 +170745975901,219,0 +170745975949,222,0 +170745975997,223,0 +170745976045,224,0 +170745976093,226,0 +170745976142,229,0 +170745976190,230,0 +170745976239,233,0 +170745976287,233,0 +170745976335,235,0 +170745976383,235,0 +170745976431,236,0 +170745976479,239,0 +170745976528,237,0 +170745976576,236,0 +170745976624,220,0 +170745976672,215,0 +170745976720,216,0 +170745976768,217,0 +170745976815,219,0 +170745976863,220,0 +170745976911,222,0 +170745976959,225,0 +170745977007,225,0 +170745977055,228,0 +170745977103,229,0 +170745977150,231,0 +170745977200,233,0 +170745977248,234,0 +170745977296,234,0 +170745977344,236,0 +170745977392,237,0 +170745977439,237,0 +170745977489,237,0 +170745977537,236,0 +170745977585,234,0 +170745977632,218,0 +170745977682,216,0 +170745977730,217,0 +170745977779,220,0 +170745977829,222,0 +170745977876,223,0 +170745977926,224,0 +170745977975,225,0 +170745978025,227,0 +170745978073,228,0 +170745978120,231,0 +170745978168,233,0 +170745978216,233,0 +170745978266,235,0 +170745978314,236,0 +170745978363,236,0 +170745978411,238,0 +170745978460,239,0 +170745978510,239,0 +170745978558,236,0 +170745978606,218,0 +170745978654,215,0 +170745978701,216,0 +170745978749,217,0 +170745978797,218,0 +170745978845,220,0 +170745978893,223,0 +170745978941,224,0 +170745978990,227,0 +170745979038,228,0 +170745979088,231,0 +170745979136,231,0 +170745979184,231,0 +170745979233,233,0 +170745979281,237,0 +170745979329,238,0 +170745979378,238,0 +170745979426,236,0 +170745979474,237,0 +170745979522,236,0 +170745979570,235,0 +170745979619,218,0 +170745979667,216,0 +170745979717,216,0 +170745979765,216,0 +170745979813,217,0 +170745979861,217,0 +170745979908,220,0 +170745979956,222,0 +170745980006,224,0 +170745980054,227,0 +170745980103,229,0 +170745980151,229,0 +170745980199,231,0 +170745980247,233,0 +170745980295,234,0 +170745980343,235,0 +170745980391,236,0 +170745980440,237,0 +170745980488,236,0 +170745980538,237,0 +170745980587,219,0 +170745980637,215,0 +170745980685,215,0 +170745980733,216,0 +170745980782,217,0 +170745980830,218,0 +170745980878,217,0 +170745980928,227,0 +170745980977,223,0 +170745981025,226,0 +170745981073,227,0 +170745981123,228,0 +170745981172,230,0 +170745981222,232,0 +170745981270,234,0 +170745981319,234,0 +170745981369,233,0 +170745981417,237,0 +170745981465,236,0 +170745981513,237,0 +170745981561,220,0 +170745981609,216,0 +170745981656,215,0 +170745981704,216,0 +170745981752,217,0 +170745981800,217,0 +170745981850,219,0 +170745981898,221,0 +170745981947,229,0 +170745981995,226,0 +170745982043,228,0 +170745982091,230,0 +170745982139,231,0 +170745982187,233,0 +170745982235,236,0 +170745982284,237,0 +170745982334,237,0 +170745982382,237,0 +170745982430,238,0 +170745982479,237,0 +170745982527,236,0 +170745982575,216,0 +170745982623,215,0 +170745982671,215,0 +170745982720,215,0 +170745982770,216,0 +170745982819,217,0 +170745982867,217,0 +170745982915,219,0 +170745982965,222,0 +170745983013,224,0 +170745983061,227,0 +170745983110,229,0 +170745983158,230,0 +170745983206,233,0 +170745983254,232,0 +170745983302,233,0 +170745983350,234,0 +170745983398,235,0 +170745983446,236,0 +170745983494,233,0 +170745983542,217,0 +170745983590,215,0 +170745983638,215,0 +170745983686,215,0 +170745983733,217,0 +170745983781,217,0 +170745983831,218,0 +170745983879,220,0 +170745983927,221,0 +170745983975,224,0 +170745984024,227,0 +170745984074,228,0 +170745984123,233,0 +170745984171,234,0 +170745984219,235,0 +170745984267,235,0 +170745984315,236,0 +170745984363,237,0 +170745984411,238,0 +170745984459,236,0 +170745984506,219,0 +170745984556,215,0 +170745984604,215,0 +170745984652,215,0 +170745984700,216,0 +170745984747,216,0 +170745984795,220,0 +170745984843,219,0 +170745984891,220,0 +170745984939,223,0 +170745984987,225,0 +170745985035,229,0 +170745985083,229,0 +170745985130,231,0 +170745985178,232,0 +170745985226,232,0 +170745985274,235,0 +170745985322,235,0 +170745985370,233,0 +170745985418,236,0 +170745985466,224,0 +170745985514,216,0 +170745985562,216,0 +170745985610,216,0 +170745985657,217,0 +170745985707,217,0 +170745985755,219,0 +170745985804,220,0 +170745985852,222,0 +170745985900,224,0 +170745985948,226,0 +170745985996,227,0 +170745986044,232,0 +170745986092,231,0 +170745986140,234,0 +170745986187,235,0 +170745986235,237,0 +170745986283,236,0 +170745986331,236,0 +170745986379,237,0 +170745986427,235,0 +170745986476,216,0 +170745986524,215,0 +170745986572,214,0 +170745986620,215,0 +170745986668,216,0 +170745986716,216,0 +170745986765,217,0 +170745986815,219,0 +170745986864,221,0 +170745986912,224,0 +170745986962,225,0 +170745987011,228,0 +170745987061,232,0 +170745987109,231,0 +170745987158,232,0 +170745987206,233,0 +170745987256,233,0 +170745987304,236,0 +170745987352,234,0 +170745987401,230,0 +170745987451,215,0 +170745987500,216,0 +170745987548,216,0 +170745987598,217,0 +170745987646,217,0 +170745987694,220,0 +170745987743,222,0 +170745987793,223,0 +170745987843,226,0 +170745987891,226,0 +170745987938,229,0 +170745987986,232,0 +170745988034,232,0 +170745988082,233,0 +170745988130,233,0 +170745988179,248,0 +170745988227,234,0 +170745988275,236,0 +170745988323,235,0 +170745988371,218,0 +170745988419,215,0 +170745988467,215,0 +170745988516,215,0 +170745988564,215,0 +170745988612,215,0 +170745988661,216,0 +170745988709,216,0 +170745988757,219,0 +170745988805,220,0 +170745988853,223,0 +170745988901,225,0 +170745988949,228,0 +170745988996,230,0 +170745989044,232,0 +170745989092,232,0 +170745989140,234,0 +170745989188,232,0 +170745989236,235,0 +170745989284,235,0 +170745989332,219,0 +170745989380,215,0 +170745989427,215,0 +170745989475,216,0 +170745989523,217,0 +170745989573,217,0 +170745989621,218,0 +170745989670,219,0 +170745989718,222,0 +170745989766,224,0 +170745989814,225,0 +170745989862,227,0 +170745989910,229,0 +170745989958,230,0 +170745990006,231,0 +170745990054,232,0 +170745990104,234,0 +170745990152,235,0 +170745990201,234,0 +170745990251,234,0 +170745990299,217,0 +170745990348,215,0 +170745990396,215,0 +170745990445,216,0 +170745990495,217,0 +170745990544,217,0 +170745990592,217,0 +170745990642,219,0 +170745990690,221,0 +170745990739,225,0 +170745990789,226,0 +170745990838,227,0 +170745990886,230,0 +170745990934,231,0 +170745990984,232,0 +170745991033,233,0 +170745991081,235,0 +170745991131,234,0 +170745991179,233,0 +170745991229,227,0 +170745991277,215,0 +170745991325,215,0 +170745991374,216,0 +170745991424,217,0 +170745991473,217,0 +170745991521,218,0 +170745991571,219,0 +170745991620,222,0 +170745991668,223,0 +170745991716,225,0 +170745991764,227,0 +170745991814,229,0 +170745991863,232,0 +170745991913,231,0 +170745991961,232,0 +170745992009,234,0 +170745992058,234,0 +170745992106,234,0 +170745992154,234,0 +170745992202,218,0 +170745992250,216,0 +170745992298,216,0 +170745992347,217,0 +170745992395,218,0 +170745992445,220,0 +170745992493,222,0 +170745992541,224,0 +170745992590,226,0 +170745992638,228,0 +170745992686,230,0 +170745992734,231,0 +170745992782,233,0 +170745992832,231,0 +170745992880,234,0 +170745992928,233,0 +170745992977,234,0 +170745993025,236,0 +170745993073,234,0 +170745993121,232,0 +170745993169,217,0 +170745993219,219,0 +170745993266,223,0 +170745993314,224,0 +170745993362,226,0 +170745993410,229,0 +170745993458,229,0 +170745993508,230,0 +170745993556,232,0 +170745993604,234,0 +170745993652,234,0 +170745993701,235,0 +170745993749,234,0 +170745993799,236,0 +170745993847,236,0 +170745993895,236,0 +170745993944,236,0 +170745993994,235,0 +170745994042,236,0 +170745994090,218,0 +170745994137,218,0 +170745994187,219,0 +170745994237,222,0 +170745994285,225,0 +170745994334,227,0 +170745994384,228,0 +170745994432,230,0 +170745994480,231,0 +170745994529,233,0 +170745994579,234,0 +170745994628,235,0 +170745994676,236,0 +170745994726,235,0 +170745994775,239,0 +170745994823,237,0 +170745994871,235,0 +170745994920,236,0 +170745994968,236,0 +170745995016,235,0 +170745995066,217,0 +170745995115,216,0 +170745995165,217,0 +170745995213,220,0 +170745995261,221,0 +170745995310,223,0 +170745995360,224,0 +170745995408,226,0 +170745995458,228,0 +170745995506,229,0 +170745995554,231,0 +170745995602,234,0 +170745995649,233,0 +170745995699,236,0 +170745995749,236,0 +170745995798,235,0 +170745995846,236,0 +170745995894,237,0 +170745995942,237,0 +170745995991,219,0 +170745996041,214,0 +170745996089,215,0 +170745996137,216,0 +170745996185,216,0 +170745996233,217,0 +170745996282,218,0 +170745996330,221,0 +170745996380,223,0 +170745996429,225,0 +170745996477,228,0 +170745996525,228,0 +170745996573,231,0 +170745996623,232,0 +170745996671,235,0 +170745996719,235,0 +170745996768,236,0 +170745996816,236,0 +170745996864,235,0 +170745996914,235,0 +170745996962,217,0 +170745997010,216,0 +170745997058,216,0 +170745997107,217,0 +170745997157,218,0 +170745997205,219,0 +170745997254,222,0 +170745997302,223,0 +170745997350,227,0 +170745997398,227,0 +170745997446,229,0 +170745997496,230,0 +170745997544,232,0 +170745997591,235,0 +170745997641,235,0 +170745997689,236,0 +170745997738,237,0 +170745997786,235,0 +170745997834,236,0 +170745997882,234,0 +170745997932,215,0 +170745997981,214,0 +170745998029,214,0 +170745998079,215,0 +170745998128,215,0 +170745998176,216,0 +170745998224,217,0 +170745998274,217,0 +170745998322,219,0 +170745998371,222,0 +170745998419,225,0 +170745998468,226,0 +170745998516,228,0 +170745998564,229,0 +170745998612,231,0 +170745998660,232,0 +170745998710,234,0 +170745998758,233,0 +170745998806,234,0 +170745998854,218,0 +170745998902,215,0 +170745998951,216,0 +170745999001,216,0 +170745999049,217,0 +170745999097,220,0 +170745999145,222,0 +170745999193,224,0 +170745999242,226,0 +170745999290,228,0 +170745999340,229,0 +170745999389,230,0 +170745999437,233,0 +170745999485,237,0 +170745999533,236,0 +170745999581,235,0 +170745999630,237,0 +170745999678,236,0 +170745999726,234,0 +170745999774,232,0 +170745999822,217,0 +170745999870,216,0 +170745999917,216,0 +170745999967,218,0 +170746000015,218,0 +170746000063,220,0 +170746000110,222,0 +170746000158,223,0 +170746000206,225,0 +170746000254,228,0 +170746000302,229,0 +170746000350,230,0 +170746000399,234,0 +170746000447,234,0 +170746000495,234,0 +170746000543,234,0 +170746000591,237,0 +170746000639,236,0 +170746000687,234,0 +170746000734,218,0 +170746000782,215,0 +170746000830,215,0 +170746000878,216,0 +170746000926,216,0 +170746000975,216,0 +170746001023,218,0 +170746001073,220,0 +170746001121,222,0 +170746001168,224,0 +170746001218,229,0 +170746001266,227,0 +170746001314,228,0 +170746001362,229,0 +170746001409,230,0 +170746001457,231,0 +170746001505,232,0 +170746001553,233,0 +170746001601,233,0 +170746001651,222,0 +170746001700,215,0 +170746001749,216,0 +170746001797,217,0 +170746001845,220,0 +170746001893,224,0 +170746001941,225,0 +170746001990,227,0 +170746002038,227,0 +170746002086,229,0 +170746002136,231,0 +170746002184,232,0 +170746002231,235,0 +170746002279,235,0 +170746002327,237,0 +170746002375,238,0 +170746002425,238,0 +170746002472,236,0 +170746002520,236,0 +170746002568,234,0 +170746002618,215,0 +170746002665,214,0 +170746002715,215,0 +170746002763,215,0 +170746002811,216,0 +170746002859,216,0 +170746002906,219,0 +170746002954,221,0 +170746003002,223,0 +170746003050,225,0 +170746003098,227,0 +170746003146,228,0 +170746003194,229,0 +170746003242,233,0 +170746003290,232,0 +170746003337,246,0 +170746003387,234,0 +170746003435,232,0 +170746003484,235,0 +170746003532,219,0 +170746003580,216,0 +170746003629,217,0 +170746003677,219,0 +170746003725,222,0 +170746003773,224,0 +170746003821,226,0 +170746003870,227,0 +170746003918,229,0 +170746003966,231,0 +170746004014,236,0 +170746004062,231,0 +170746004110,234,0 +170746004158,237,0 +170746004206,237,0 +170746004254,236,0 +170746004303,237,0 +170746004351,239,0 +170746004401,236,0 +170746004449,222,0 +170746004497,216,0 +170746004546,216,0 +170746004596,217,0 +170746004645,219,0 +170746004695,221,0 +170746004743,222,0 +170746004792,226,0 +170746004840,228,0 +170746004889,232,0 +170746004937,231,0 +170746004985,236,0 +170746005033,235,0 +170746005083,236,0 +170746005131,238,0 +170746005179,238,0 +170746005228,237,0 +170746005276,237,0 +170746005326,237,0 +170746005375,222,0 +170746005425,215,0 +170746005473,216,0 +170746005521,219,0 +170746005570,221,0 +170746005620,224,0 +170746005668,226,0 +170746005716,228,0 +170746005764,227,0 +170746005813,229,0 +170746005863,234,0 +170746005911,235,0 +170746005960,234,0 +170746006008,236,0 +170746006058,238,0 +170746006106,236,0 +170746006154,236,0 +170746006203,240,0 +170746006253,235,0 +170746006301,220,0 +170746006349,218,0 +170746006398,220,0 +170746006446,222,0 +170746006494,224,0 +170746006542,227,0 +170746006590,229,0 +170746006638,229,0 +170746006686,232,0 +170746006734,232,0 +170746006782,237,0 +170746006829,234,0 +170746006879,236,0 +170746006927,239,0 +170746006976,238,0 +170746007024,236,0 +170746007072,236,0 +170746007122,236,0 +170746007169,234,0 +170746007217,219,0 +170746007267,219,0 +170746007315,219,0 +170746007363,221,0 +170746007411,223,0 +170746007458,226,0 +170746007508,226,0 +170746007557,229,0 +170746007607,230,0 +170746007655,231,0 +170746007704,232,0 +170746007752,233,0 +170746007800,235,0 +170746007848,234,0 +170746007896,236,0 +170746007944,235,0 +170746007992,236,0 +170746008041,235,0 +170746008091,233,0 +170746008140,217,0 +170746008188,219,0 +170746008236,221,0 +170746008285,224,0 +170746008333,225,0 +170746008381,226,0 +170746008429,229,0 +170746008477,229,0 +170746008525,232,0 +170746008573,233,0 +170746008620,231,0 +170746008668,234,0 +170746008716,235,0 +170746008764,235,0 +170746008812,235,0 +170746008860,235,0 +170746008908,236,0 +170746008956,235,0 +170746009004,233,0 +170746009051,217,0 +170746009099,219,0 +170746009147,220,0 +170746009195,222,0 +170746009243,225,0 +170746009291,227,0 +170746009339,228,0 +170746009387,231,0 +170746009434,230,0 +170746009482,231,0 +170746009530,233,0 +170746009580,233,0 +170746009629,233,0 +170746009677,237,0 +170746009725,235,0 +170746009773,235,0 +170746009821,233,0 +170746009870,239,0 +170746009918,218,0 +170746009966,216,0 +170746010014,218,0 +170746010062,220,0 +170746010111,222,0 +170746010160,224,0 +170746010208,225,0 +170746010258,228,0 +170746010306,229,0 +170746010354,231,0 +170746010401,232,0 +170746010449,232,0 +170746010499,232,0 +170746010547,233,0 +170746010594,234,0 +170746010642,235,0 +170746010690,234,0 +170746010738,234,0 +170746010786,233,0 +170746010835,218,0 +170746010883,216,0 +170746010931,216,0 +170746010979,220,0 +170746011028,220,0 +170746011076,223,0 +170746011124,224,0 +170746011172,229,0 +170746011222,227,0 +170746011270,230,0 +170746011318,229,0 +170746011367,231,0 +170746011415,232,0 +170746011463,233,0 +170746011511,233,0 +170746011560,234,0 +170746011608,236,0 +170746011656,235,0 +170746011706,232,0 +170746011755,215,0 +170746011803,216,0 +170746011851,216,0 +170746011899,217,0 +170746011947,219,0 +170746011997,223,0 +170746012046,223,0 +170746012094,225,0 +170746012142,225,0 +170746012190,227,0 +170746012237,230,0 +170746012285,230,0 +170746012333,231,0 +170746012383,234,0 +170746012432,233,0 +170746012480,234,0 +170746012528,234,0 +170746012576,234,0 +170746012624,219,0 +170746012673,216,0 +170746012721,218,0 +170746012769,219,0 +170746012817,221,0 +170746012865,224,0 +170746012913,224,0 +170746012960,227,0 +170746013010,229,0 +170746013058,230,0 +170746013106,232,0 +170746013154,232,0 +170746013203,232,0 +170746013251,234,0 +170746013299,235,0 +170746013347,234,0 +170746013396,235,0 +170746013444,235,0 +170746013492,234,0 +170746013540,221,0 +170746013588,223,0 +170746013635,226,0 +170746013683,227,0 +170746013733,230,0 +170746013781,230,0 +170746013829,232,0 +170746013876,233,0 +170746013926,233,0 +170746013974,233,0 +170746014022,236,0 +170746014070,235,0 +170746014117,235,0 +170746014165,235,0 +170746014213,238,0 +170746014261,236,0 +170746014309,235,0 +170746014358,235,0 +170746014406,225,0 +170746014454,225,0 +170746014502,226,0 +170746014550,245,0 +170746014598,230,0 +170746014646,231,0 +170746014694,235,0 +170746014742,233,0 +170746014789,235,0 +170746014839,235,0 +170746014887,236,0 +170746014936,237,0 +170746014984,237,0 +170746015032,238,0 +170746015080,237,0 +170746015129,237,0 +170746015179,237,0 +170746015227,235,0 +170746015275,235,0 +170746015323,218,0 +170746015370,220,0 +170746015418,222,0 +170746015466,225,0 +170746015514,227,0 +170746015562,233,0 +170746015610,230,0 +170746015659,231,0 +170746015707,234,0 +170746015755,237,0 +170746015804,235,0 +170746015852,236,0 +170746015900,235,0 +170746015948,238,0 +170746015996,244,0 +170746016044,238,0 +170746016093,237,0 +170746016141,236,0 +170746016189,219,0 +170746016237,216,0 +170746016285,216,0 +170746016333,217,0 +170746016382,217,0 +170746016430,221,0 +170746016480,225,0 +170746016527,225,0 +170746016575,226,0 +170746016623,228,0 +170746016671,230,0 +170746016719,232,0 +170746016767,232,0 +170746016815,233,0 +170746016863,234,0 +170746016911,235,0 +170746016959,237,0 +170746017008,238,0 +170746017058,236,0 +170746017105,217,0 +170746017153,216,0 +170746017201,220,0 +170746017249,223,0 +170746017297,225,0 +170746017345,228,0 +170746017394,228,0 +170746017442,232,0 +170746017490,232,0 +170746017538,232,0 +170746017588,235,0 +170746017635,235,0 +170746017683,237,0 +170746017731,236,0 +170746017781,237,0 +170746017829,237,0 +170746017877,239,0 +170746017924,235,0 +170746017972,219,0 +170746018020,217,0 +170746018068,216,0 +170746018116,218,0 +170746018164,221,0 +170746018212,224,0 +170746018261,226,0 +170746018311,229,0 +170746018360,229,0 +170746018408,232,0 +170746018457,233,0 +170746018507,233,0 +170746018555,237,0 +170746018603,242,0 +170746018650,236,0 +170746018698,238,0 +170746018746,238,0 +170746018794,238,0 +170746018842,235,0 +170746018890,216,0 +170746018939,216,0 +170746018989,218,0 +170746019037,221,0 +170746019085,224,0 +170746019134,229,0 +170746019182,227,0 +170746019230,231,0 +170746019278,231,0 +170746019327,234,0 +170746019375,236,0 +170746019425,240,0 +170746019474,235,0 +170746019524,238,0 +170746019573,237,0 +170746019623,235,0 +170746019671,239,0 +170746019720,233,0 +170746019768,217,0 +170746019816,217,0 +170746019866,217,0 +170746019914,219,0 +170746019962,222,0 +170746020010,224,0 +170746020058,226,0 +170746020107,228,0 +170746020155,229,0 +170746020203,232,0 +170746020253,227,0 +170746020301,236,0 +170746020349,236,0 +170746020397,236,0 +170746020445,236,0 +170746020494,237,0 +170746020542,239,0 +170746020590,235,0 +170746020638,219,0 +170746020687,216,0 +170746020737,217,0 +170746020787,220,0 +170746020836,222,0 +170746020884,225,0 +170746020934,226,0 +170746020982,228,0 +170746021030,231,0 +170746021077,232,0 +170746021125,234,0 +170746021175,234,0 +170746021223,237,0 +170746021272,237,0 +170746021320,236,0 +170746021368,238,0 +170746021418,239,0 +170746021467,236,0 +170746021517,220,0 +170746021566,216,0 +170746021614,218,0 +170746021662,220,0 +170746021712,224,0 +170746021760,224,0 +170746021809,229,0 +170746021857,229,0 +170746021905,231,0 +170746021953,232,0 +170746022003,233,0 +170746022051,235,0 +170746022099,236,0 +170746022147,237,0 +170746022196,238,0 +170746022244,238,0 +170746022292,239,0 +170746022342,234,0 +170746022391,219,0 +170746022441,218,0 +170746022489,221,0 +170746022537,224,0 +170746022585,225,0 +170746022634,227,0 +170746022682,228,0 +170746022730,231,0 +170746022778,231,0 +170746022828,235,0 +170746022877,235,0 +170746022927,238,0 +170746022976,237,0 +170746023024,237,0 +170746023074,238,0 +170746023123,235,0 +170746023173,236,0 +170746023222,233,0 +170746023270,220,0 +170746023320,220,0 +170746023368,222,0 +170746023416,224,0 +170746023464,228,0 +170746023512,229,0 +170746023560,229,0 +170746023608,233,0 +170746023655,231,0 +170746023705,232,0 +170746023753,233,0 +170746023801,236,0 +170746023850,233,0 +170746023898,237,0 +170746023946,236,0 +170746023996,235,0 +170746024044,235,0 +170746024092,235,0 +170746024141,230,0 +170746024191,217,0 +170746024240,219,0 +170746024290,223,0 +170746024338,225,0 +170746024387,227,0 +170746024435,229,0 +170746024483,229,0 +170746024531,231,0 +170746024581,231,0 +170746024630,251,0 +170746024678,233,0 +170746024728,234,0 +170746024777,236,0 +170746024825,240,0 +170746024873,235,0 +170746024921,235,0 +170746024969,233,0 +170746025019,231,0 +170746025067,216,0 +170746025115,217,0 +170746025163,218,0 +170746025211,221,0 +170746025260,223,0 +170746025308,224,0 +170746025356,226,0 +170746025404,228,0 +170746025452,229,0 +170746025500,232,0 +170746025548,232,0 +170746025597,234,0 +170746025645,231,0 +170746025695,234,0 +170746025744,233,0 +170746025792,234,0 +170746025840,234,0 +170746025888,233,0 +170746025936,216,0 +170746025986,216,0 +170746026035,219,0 +170746026083,220,0 +170746026131,221,0 +170746026181,224,0 +170746026230,225,0 +170746026278,228,0 +170746026328,229,0 +170746026376,232,0 +170746026424,232,0 +170746026473,233,0 +170746026521,233,0 +170746026571,235,0 +170746026620,235,0 +170746026670,233,0 +170746026719,233,0 +170746026767,233,0 +170746026817,215,0 +170746026865,215,0 +170746026914,217,0 +170746026962,218,0 +170746027012,220,0 +170746027060,223,0 +170746027109,224,0 +170746027159,226,0 +170746027207,226,0 +170746027256,230,0 +170746027304,230,0 +170746027353,233,0 +170746027401,234,0 +170746027449,237,0 +170746027499,235,0 +170746027547,234,0 +170746027595,234,0 +170746027644,232,0 +170746027692,216,0 +170746027740,215,0 +170746027790,216,0 +170746027838,219,0 +170746027886,221,0 +170746027935,222,0 +170746027983,224,0 +170746028033,226,0 +170746028082,227,0 +170746028132,229,0 +170746028180,230,0 +170746028228,231,0 +170746028276,233,0 +170746028323,231,0 +170746028371,235,0 +170746028419,234,0 +170746028467,236,0 +170746028515,233,0 +170746028563,234,0 +170746028611,218,0 +170746028659,216,0 +170746028707,216,0 +170746028754,216,0 +170746028802,217,0 +170746028850,218,0 +170746028900,220,0 +170746028949,221,0 +170746028997,222,0 +170746029045,225,0 +170746029095,224,0 +170746029142,227,0 +170746029191,229,0 +170746029240,230,0 +170746029288,231,0 +170746029337,234,0 +170746029387,234,0 +170746029435,236,0 +170746029483,237,0 +170746029532,238,0 +170746029582,233,0 +170746029631,229,0 +170746029679,217,0 +170746029729,217,0 +170746029778,217,0 +170746029826,222,0 +170746029874,221,0 +170746029922,223,0 +170746029970,224,0 +170746030020,227,0 +170746030069,228,0 +170746030119,229,0 +170746030167,230,0 +170746030216,232,0 +170746030266,251,0 +170746030315,235,0 +170746030365,235,0 +170746030413,233,0 +170746030462,237,0 +170746030510,235,0 +170746030558,240,0 +170746030606,236,0 +170746030656,233,0 +170746030705,223,0 +170746030755,224,0 +170746030804,226,0 +170746030852,228,0 +170746030900,229,0 +170746030950,237,0 +170746030999,230,0 +170746031049,231,0 +170746031098,235,0 +170746031146,233,0 +170746031196,235,0 +170746031245,235,0 +170746031295,235,0 +170746031343,237,0 +170746031392,238,0 +170746031442,238,0 +170746031491,236,0 +170746031539,237,0 +170746031587,235,0 +170746031637,235,0 +170746031685,234,0 +170746031734,229,0 +170746031784,229,0 +170746031832,233,0 +170746031880,234,0 +170746031928,235,0 +170746031976,235,0 +170746032024,235,0 +170746032073,236,0 +170746032123,238,0 +170746032172,237,0 +170746032220,237,0 +170746032268,239,0 +170746032316,237,0 +170746032364,238,0 +170746032414,238,0 +170746032462,239,0 +170746032510,237,0 +170746032559,236,0 +170746032607,235,0 +170746032655,236,0 +170746032705,234,0 +170746032753,227,0 +170746032802,227,0 +170746032852,227,0 +170746032899,229,0 +170746032947,230,0 +170746032995,233,0 +170746033043,234,0 +170746033093,233,0 +170746033141,234,0 +170746033189,236,0 +170746033237,236,0 +170746033285,238,0 +170746033333,238,0 +170746033382,238,0 +170746033430,237,0 +170746033480,237,0 +170746033528,239,0 +170746033575,239,0 +170746033623,236,0 +170746033673,236,0 +170746033721,234,0 +170746033769,223,0 +170746033818,223,0 +170746033868,225,0 +170746033917,227,0 +170746033965,227,0 +170746034015,228,0 +170746034063,229,0 +170746034112,232,0 +170746034160,233,0 +170746034208,233,0 +170746034258,235,0 +170746034307,235,0 +170746034355,236,0 +170746034404,237,0 +170746034452,238,0 +170746034500,239,0 +170746034548,238,0 +170746034596,240,0 +170746034646,237,0 +170746034695,236,0 +170746034743,234,0 +170746034791,219,0 +170746034839,216,0 +170746034887,219,0 +170746034935,221,0 +170746034983,224,0 +170746035031,225,0 +170746035080,231,0 +170746035128,228,0 +170746035176,229,0 +170746035226,231,0 +170746035274,232,0 +170746035322,233,0 +170746035370,235,0 +170746035418,237,0 +170746035467,239,0 +170746035515,240,0 +170746035563,238,0 +170746035613,237,0 +170746035662,239,0 +170746035710,238,0 +170746035758,235,0 +170746035806,218,0 +170746035854,215,0 +170746035901,216,0 +170746035949,218,0 +170746035999,220,0 +170746036047,223,0 +170746036095,225,0 +170746036142,226,0 +170746036192,227,0 +170746036241,230,0 +170746036289,230,0 +170746036339,234,0 +170746036386,234,0 +170746036434,234,0 +170746036482,235,0 +170746036530,237,0 +170746036580,237,0 +170746036627,238,0 +170746036675,239,0 +170746036723,237,0 +170746036771,235,0 +170746036819,234,0 +170746036867,217,0 +170746036915,216,0 +170746036964,216,0 +170746037014,217,0 +170746037062,219,0 +170746037111,221,0 +170746037159,224,0 +170746037207,224,0 +170746037255,226,0 +170746037303,227,0 +170746037351,230,0 +170746037401,230,0 +170746037450,231,0 +170746037498,233,0 +170746037548,234,0 +170746037597,235,0 +170746037645,235,0 +170746037693,236,0 +170746037741,237,0 +170746037789,236,0 +170746037839,234,0 +170746037886,219,0 +170746037936,218,0 +170746037984,220,0 +170746038032,222,0 +170746038080,225,0 +170746038129,230,0 +170746038177,227,0 +170746038225,227,0 +170746038273,228,0 +170746038321,230,0 +170746038371,230,0 +170746038418,232,0 +170746038468,233,0 +170746038518,234,0 +170746038566,235,0 +170746038615,236,0 +170746038665,236,0 +170746038713,237,0 +170746038760,238,0 +170746038808,238,0 +170746038856,234,0 +170746038906,220,0 +170746038954,219,0 +170746039002,222,0 +170746039050,224,0 +170746039098,226,0 +170746039146,228,0 +170746039195,228,0 +170746039243,230,0 +170746039291,230,0 +170746039341,234,0 +170746039389,233,0 +170746039438,234,0 +170746039486,235,0 +170746039534,237,0 +170746039584,236,0 +170746039633,239,0 +170746039683,239,0 +170746039732,239,0 +170746039782,237,0 +170746039831,237,0 +170746039881,234,0 +170746039930,219,0 +170746039978,218,0 +170746040028,220,0 +170746040076,222,0 +170746040123,224,0 +170746040171,225,0 +170746040221,228,0 +170746040269,228,0 +170746040317,232,0 +170746040366,234,0 +170746040414,232,0 +170746040462,235,0 +170746040511,234,0 +170746040559,237,0 +170746040607,236,0 +170746040655,238,0 +170746040705,238,0 +170746040752,238,0 +170746040800,238,0 +170746040848,235,0 +170746040896,236,0 +170746040944,218,0 +170746040994,217,0 +170746041042,219,0 +170746041090,221,0 +170746041137,223,0 +170746041185,224,0 +170746041233,226,0 +170746041283,229,0 +170746041331,229,0 +170746041379,230,0 +170746041427,233,0 +170746041475,231,0 +170746041523,234,0 +170746041572,235,0 +170746041620,236,0 +170746041670,239,0 +170746041719,238,0 +170746041767,238,0 +170746041815,237,0 +170746041865,236,0 +170746041913,236,0 +170746041962,228,0 +170746042010,217,0 +170746042060,219,0 +170746042108,220,0 +170746042157,223,0 +170746042205,223,0 +170746042253,223,0 +170746042302,226,0 +170746042350,226,0 +170746042398,229,0 +170746042446,231,0 +170746042494,233,0 +170746042542,232,0 +170746042590,234,0 +170746042639,235,0 +170746042687,238,0 +170746042735,236,0 +170746042783,238,0 +170746042831,237,0 +170746042880,236,0 +170746042930,235,0 +170746042978,233,0 +170746043026,217,0 +170746043073,216,0 +170746043123,218,0 +170746043171,219,0 +170746043219,221,0 +170746043267,224,0 +170746043316,224,0 +170746043366,226,0 +170746043415,227,0 +170746043463,226,0 +170746043511,229,0 +170746043559,230,0 +170746043609,233,0 +170746043658,234,0 +170746043706,233,0 +170746043756,235,0 +170746043804,239,0 +170746043852,237,0 +170746043900,238,0 +170746043948,237,0 +170746043996,235,0 +170746044045,218,0 +170746044093,217,0 +170746044142,216,0 +170746044190,217,0 +170746044240,220,0 +170746044289,222,0 +170746044339,224,0 +170746044387,224,0 +170746044435,226,0 +170746044484,240,0 +170746044532,230,0 +170746044580,232,0 +170746044628,233,0 +170746044676,236,0 +170746044725,233,0 +170746044773,237,0 +170746044821,237,0 +170746044869,236,0 +170746044918,237,0 +170746044968,236,0 +170746045016,235,0 +170746045065,218,0 +170746045113,215,0 +170746045161,216,0 +170746045209,216,0 +170746045259,218,0 +170746045308,219,0 +170746045356,221,0 +170746045405,224,0 +170746045453,224,0 +170746045501,227,0 +170746045549,230,0 +170746045597,230,0 +170746045646,231,0 +170746045694,232,0 +170746045742,233,0 +170746045790,233,0 +170746045840,235,0 +170746045889,236,0 +170746045937,235,0 +170746045987,238,0 +170746046036,235,0 +170746046084,219,0 +170746046134,216,0 +170746046182,216,0 +170746046230,217,0 +170746046278,219,0 +170746046327,222,0 +170746046375,223,0 +170746046423,224,0 +170746046471,224,0 +170746046519,227,0 +170746046567,228,0 +170746046615,231,0 +170746046663,233,0 +170746046711,232,0 +170746046759,235,0 +170746046806,234,0 +170746046856,235,0 +170746046905,235,0 +170746046955,236,0 +170746047003,235,0 +170746047051,237,0 +170746047100,231,0 +170746047148,216,0 +170746047198,216,0 +170746047246,216,0 +170746047294,218,0 +170746047342,220,0 +170746047390,223,0 +170746047437,226,0 +170746047485,226,0 +170746047533,227,0 +170746047583,229,0 +170746047631,229,0 +170746047680,232,0 +170746047728,232,0 +170746047776,233,0 +170746047824,235,0 +170746047872,235,0 +170746047922,235,0 +170746047970,236,0 +170746048017,236,0 +170746048065,234,0 +170746048113,234,0 +170746048161,216,0 +170746048209,214,0 +170746048257,214,0 +170746048305,215,0 +170746048353,215,0 +170746048403,216,0 +170746048452,216,0 +170746048502,217,0 +170746048550,219,0 +170746048598,224,0 +170746048647,224,0 +170746048695,224,0 +170746048743,228,0 +170746048791,230,0 +170746048841,231,0 +170746048890,233,0 +170746048938,234,0 +170746048988,234,0 +170746049037,235,0 +170746049085,234,0 +170746049133,233,0 +170746049181,218,0 +170746049229,214,0 +170746049278,214,0 +170746049326,214,0 +170746049376,214,0 +170746049425,214,0 +170746049473,214,0 +170746049521,214,0 +170746049569,215,0 +170746049617,215,0 +170746049667,216,0 +170746049715,217,0 +170746049763,217,0 +170746049811,218,0 +170746049859,219,0 +170746049907,222,0 +170746049955,222,0 +170746050004,225,0 +170746050054,226,0 +170746050102,227,0 +170746050151,229,0 +170746050199,231,0 +170746050247,231,0 +170746050297,234,0 +170746050346,233,0 +170746050394,235,0 +170746050444,234,0 +170746050492,237,0 +170746050540,238,0 +170746050589,236,0 +170746050637,233,0 +170746050685,234,0 +170746050735,216,0 +170746050783,216,0 +170746050830,216,0 +170746050880,216,0 +170746050928,216,0 +170746050977,218,0 +170746051027,218,0 +170746051076,220,0 +170746051126,223,0 +170746051176,225,0 +170746051225,226,0 +170746051275,229,0 +170746051323,230,0 +170746051371,234,0 +170746051418,231,0 +170746051466,233,0 +170746051516,234,0 +170746051564,235,0 +170746051612,235,0 +170746051660,235,0 +170746051709,233,0 +170746051759,216,0 +170746051808,215,0 +170746051856,215,0 +170746051906,216,0 +170746051954,217,0 +170746052003,217,0 +170746052053,218,0 +170746052101,221,0 +170746052151,223,0 +170746052200,224,0 +170746052250,226,0 +170746052299,228,0 +170746052347,231,0 +170746052395,234,0 +170746052443,236,0 +170746052491,236,0 +170746052540,237,0 +170746052590,235,0 +170746052638,237,0 +170746052688,237,0 +170746052735,236,0 +170746052783,217,0 +170746052831,214,0 +170746052879,214,0 +170746052927,214,0 +170746052975,215,0 +170746053023,215,0 +170746053071,216,0 +170746053119,217,0 +170746053167,217,0 +170746053214,220,0 +170746053262,222,0 +170746053310,226,0 +170746053358,227,0 +170746053406,228,0 +170746053454,232,0 +170746053502,231,0 +170746053551,233,0 +170746053599,232,0 +170746053649,235,0 +170746053697,234,0 +170746053745,234,0 +170746053794,219,0 +170746053842,215,0 +170746053892,216,0 +170746053940,216,0 +170746053988,216,0 +170746054036,217,0 +170746054084,217,0 +170746054133,218,0 +170746054183,220,0 +170746054232,221,0 +170746054280,223,0 +170746054330,227,0 +170746054379,228,0 +170746054427,229,0 +170746054477,229,0 +170746054525,234,0 +170746054574,232,0 +170746054622,233,0 +170746054670,234,0 +170746054718,235,0 +170746054766,235,0 +170746054814,218,0 +170746054864,216,0 +170746054911,216,0 +170746054961,216,0 +170746055011,216,0 +170746055059,217,0 +170746055108,219,0 +170746055157,221,0 +170746055205,222,0 +170746055253,224,0 +170746055301,225,0 +170746055349,227,0 +170746055397,228,0 +170746055445,230,0 +170746055493,233,0 +170746055540,231,0 +170746055590,234,0 +170746055639,234,0 +170746055687,235,0 +170746055737,235,0 +170746055785,234,0 +170746055834,220,0 +170746055884,215,0 +170746055933,215,0 +170746055981,216,0 +170746056031,217,0 +170746056080,218,0 +170746056128,219,0 +170746056176,220,0 +170746056224,221,0 +170746056274,222,0 +170746056323,225,0 +170746056371,227,0 +170746056419,228,0 +170746056469,230,0 +170746056517,233,0 +170746056565,233,0 +170746056614,233,0 +170746056662,234,0 +170746056710,234,0 +170746056758,234,0 +170746056806,233,0 +170746056854,224,0 +170746056902,216,0 +170746056952,215,0 +170746056999,216,0 +170746057049,216,0 +170746057097,215,0 +170746057145,219,0 +170746057194,220,0 +170746057242,221,0 +170746057292,222,0 +170746057341,223,0 +170746057389,226,0 +170746057437,227,0 +170746057485,231,0 +170746057535,230,0 +170746057584,233,0 +170746057632,233,0 +170746057680,234,0 +170746057730,234,0 +170746057778,236,0 +170746057826,235,0 +170746057874,235,0 +170746057921,217,0 +170746057971,215,0 +170746058019,215,0 +170746058067,216,0 +170746058115,217,0 +170746058163,219,0 +170746058211,221,0 +170746058259,222,0 +170746058308,223,0 +170746058356,225,0 +170746058404,226,0 +170746058454,229,0 +170746058502,231,0 +170746058550,232,0 +170746058599,233,0 +170746058647,234,0 +170746058697,235,0 +170746058746,235,0 +170746058796,234,0 +170746058845,234,0 +170746058895,234,0 +170746058943,218,0 +170746058992,215,0 +170746059040,215,0 +170746059088,216,0 +170746059136,216,0 +170746059186,221,0 +170746059235,220,0 +170746059285,220,0 +170746059334,223,0 +170746059382,224,0 +170746059432,227,0 +170746059480,227,0 +170746059528,229,0 +170746059577,231,0 +170746059627,232,0 +170746059676,234,0 +170746059724,233,0 +170746059772,235,0 +170746059822,234,0 +170746059871,235,0 +170746059921,234,0 +170746059970,217,0 +170746060018,215,0 +170746060066,215,0 +170746060116,216,0 +170746060165,215,0 +170746060215,217,0 +170746060264,218,0 +170746060312,220,0 +170746060362,222,0 +170746060410,224,0 +170746060458,226,0 +170746060506,229,0 +170746060554,230,0 +170746060603,230,0 +170746060651,232,0 +170746060699,232,0 +170746060749,232,0 +170746060796,235,0 +170746060844,235,0 +170746060892,234,0 +170746060940,234,0 +170746060988,219,0 +170746061038,216,0 +170746061085,216,0 +170746061135,213,0 +170746061183,218,0 +170746061231,221,0 +170746061280,221,0 +170746061328,222,0 +170746061378,224,0 +170746061426,227,0 +170746061475,228,0 +170746061523,230,0 +170746061573,231,0 +170746061621,233,0 +170746061669,235,0 +170746061718,234,0 +170746061768,234,0 +170746061817,244,0 +170746061867,237,0 +170746061915,238,0 +170746061963,234,0 +170746062012,220,0 +170746062060,216,0 +170746062110,217,0 +170746062158,218,0 +170746062206,221,0 +170746062254,223,0 +170746062303,226,0 +170746062351,227,0 +170746062399,229,0 +170746062447,230,0 +170746062495,231,0 +170746062543,232,0 +170746062590,243,0 +170746062638,235,0 +170746062686,236,0 +170746062734,236,0 +170746062784,236,0 +170746062833,236,0 +170746062881,237,0 +170746062929,236,0 +170746062977,235,0 +170746063025,219,0 +170746063074,216,0 +170746063122,218,0 +170746063170,222,0 +170746063220,224,0 +170746063268,227,0 +170746063316,226,0 +170746063364,228,0 +170746063413,229,0 +170746063462,231,0 +170746063510,231,0 +170746063558,232,0 +170746063606,235,0 +170746063656,235,0 +170746063704,234,0 +170746063752,238,0 +170746063801,238,0 +170746063849,237,0 +170746063897,238,0 +170746063945,237,0 +170746063993,236,0 +170746064043,231,0 +170746064090,216,0 +170746064140,217,0 +170746064189,219,0 +170746064237,220,0 +170746064285,224,0 +170746064333,226,0 +170746064381,227,0 +170746064429,228,0 +170746064477,229,0 +170746064525,233,0 +170746064574,232,0 +170746064624,233,0 +170746064673,235,0 +170746064721,235,0 +170746064769,236,0 +170746064817,237,0 +170746064865,236,0 +170746064913,237,0 +170746064961,237,0 +170746065011,236,0 +170746065058,234,0 +170746065106,217,0 +170746065154,215,0 +170746065202,216,0 +170746065250,216,0 +170746065298,216,0 +170746065346,218,0 +170746065394,220,0 +170746065442,222,0 +170746065489,224,0 +170746065537,226,0 +170746065585,229,0 +170746065633,228,0 +170746065681,230,0 +170746065729,231,0 +170746065777,231,0 +170746065825,231,0 +170746065873,234,0 +170746065922,234,0 +170746065970,236,0 +170746066018,233,0 +170746066066,233,0 +170746066115,218,0 +170746066165,217,0 +170746066213,219,0 +170746066261,220,0 +170746066310,224,0 +170746066358,225,0 +170746066406,226,0 +170746066454,226,0 +170746066504,229,0 +170746066552,229,0 +170746066601,232,0 +170746066651,235,0 +170746066700,235,0 +170746066750,235,0 +170746066798,236,0 +170746066846,236,0 +170746066894,235,0 +170746066943,238,0 +170746066991,236,0 +170746067039,236,0 +170746067089,234,0 +170746067138,218,0 +170746067188,215,0 +170746067236,215,0 +170746067284,216,0 +170746067333,218,0 +170746067381,219,0 +170746067429,221,0 +170746067477,221,0 +170746067525,224,0 +170746067574,228,0 +170746067622,227,0 +170746067672,228,0 +170746067721,230,0 +170746067769,231,0 +170746067819,232,0 +170746067868,234,0 +170746067916,233,0 +170746067964,235,0 +170746068013,234,0 +170746068061,236,0 +170746068111,234,0 +170746068159,234,0 +170746068208,216,0 +170746068258,215,0 +170746068307,216,0 +170746068355,216,0 +170746068405,217,0 +170746068454,219,0 +170746068504,220,0 +170746068552,222,0 +170746068600,223,0 +170746068648,225,0 +170746068697,226,0 +170746068747,230,0 +170746068795,231,0 +170746068844,234,0 +170746068892,238,0 +170746068940,233,0 +170746068989,235,0 +170746069037,237,0 +170746069085,237,0 +170746069133,234,0 +170746069181,233,0 +170746069229,216,0 +170746069277,215,0 +170746069325,216,0 +170746069373,216,0 +170746069421,218,0 +170746069471,218,0 +170746069519,220,0 +170746069566,222,0 +170746069614,223,0 +170746069664,224,0 +170746069713,226,0 +170746069761,228,0 +170746069809,229,0 +170746069857,232,0 +170746069907,231,0 +170746069955,233,0 +170746070003,234,0 +170746070051,234,0 +170746070100,235,0 +170746070150,236,0 +170746070198,234,0 +170746070246,218,0 +170746070294,214,0 +170746070342,216,0 +170746070391,215,0 +170746070439,216,0 +170746070487,216,0 +170746070535,219,0 +170746070583,221,0 +170746070631,223,0 +170746070680,225,0 +170746070728,226,0 +170746070778,229,0 +170746070827,231,0 +170746070875,230,0 +170746070923,232,0 +170746070971,232,0 +170746071019,233,0 +170746071067,238,0 +170746071115,245,0 +170746071163,236,0 +170746071211,234,0 +170746071260,219,0 +170746071308,215,0 +170746071356,215,0 +170746071404,216,0 +170746071452,217,0 +170746071502,216,0 +170746071549,218,0 +170746071599,219,0 +170746071647,224,0 +170746071695,224,0 +170746071744,226,0 +170746071792,228,0 +170746071840,227,0 +170746071889,230,0 +170746071937,232,0 +170746071985,232,0 +170746072035,233,0 +170746072084,234,0 +170746072134,235,0 +170746072183,235,0 +170746072231,234,0 +170746072279,218,0 +170746072327,214,0 +170746072375,214,0 +170746072423,215,0 +170746072471,216,0 +170746072519,215,0 +170746072569,216,0 +170746072617,219,0 +170746072665,219,0 +170746072713,221,0 +170746072761,224,0 +170746072809,224,0 +170746072857,227,0 +170746072905,228,0 +170746072952,230,0 +170746073000,235,0 +170746073050,234,0 +170746073099,233,0 +170746073147,235,0 +170746073197,234,0 +170746073246,233,0 +170746073294,229,0 +170746073344,215,0 +170746073393,215,0 +170746073441,215,0 +170746073489,215,0 +170746073539,216,0 +170746073588,216,0 +170746073636,216,0 +170746073686,217,0 +170746073734,219,0 +170746073782,221,0 +170746073830,223,0 +170746073879,226,0 +170746073927,228,0 +170746073975,229,0 +170746074025,232,0 +170746074074,232,0 +170746074124,233,0 +170746074172,234,0 +170746074221,233,0 +170746074269,236,0 +170746074317,235,0 +170746074365,217,0 +170746074413,215,0 +170746074461,216,0 +170746074509,216,0 +170746074557,217,0 +170746074605,217,0 +170746074653,220,0 +170746074701,219,0 +170746074748,221,0 +170746074796,223,0 +170746074844,225,0 +170746074892,227,0 +170746074940,230,0 +170746074988,231,0 +170746075037,233,0 +170746075085,234,0 +170746075133,235,0 +170746075181,236,0 +170746075229,236,0 +170746075279,234,0 +170746075326,236,0 +170746075374,218,0 +170746075422,214,0 +170746075472,215,0 +170746075520,215,0 +170746075568,216,0 +170746075616,217,0 +170746075664,217,0 +170746075712,218,0 +170746075760,220,0 +170746075807,222,0 +170746075855,224,0 +170746075905,226,0 +170746075953,228,0 +170746076001,230,0 +170746076050,233,0 +170746076098,232,0 +170746076148,233,0 +170746076197,234,0 +170746076245,234,0 +170746076293,234,0 +170746076343,234,0 +170746076391,218,0 +170746076440,217,0 +170746076490,215,0 +170746076539,216,0 +170746076589,216,0 +170746076637,218,0 +170746076685,220,0 +170746076733,221,0 +170746076781,222,0 +170746076829,225,0 +170746076877,225,0 +170746076926,228,0 +170746076976,229,0 +170746077025,231,0 +170746077075,231,0 +170746077123,234,0 +170746077171,235,0 +170746077220,234,0 +170746077270,234,0 +170746077317,236,0 +170746077367,237,0 +170746077415,218,0 +170746077464,214,0 +170746077512,214,0 +170746077562,215,0 +170746077611,214,0 +170746077659,215,0 +170746077709,215,0 +170746077758,216,0 +170746077806,216,0 +170746077856,219,0 +170746077905,221,0 +170746077953,223,0 +170746078003,224,0 +170746078051,225,0 +170746078100,229,0 +170746078148,230,0 +170746078196,232,0 +170746078244,232,0 +170746078292,234,0 +170746078340,234,0 +170746078388,233,0 +170746078438,224,0 +170746078486,215,0 +170746078535,214,0 +170746078583,214,0 +170746078631,215,0 +170746078680,215,0 +170746078728,216,0 +170746078778,216,0 +170746078828,218,0 +170746078876,219,0 +170746078923,221,0 +170746078973,223,0 +170746079021,225,0 +170746079069,226,0 +170746079117,228,0 +170746079165,229,0 +170746079213,230,0 +170746079263,229,0 +170746079311,234,0 +170746079359,233,0 +170746079406,233,0 +170746079454,233,0 +170746079502,219,0 +170746079552,215,0 +170746079600,215,0 +170746079648,216,0 +170746079696,216,0 +170746079745,218,0 +170746079795,220,0 +170746079843,224,0 +170746079891,224,0 +170746079939,225,0 +170746079988,227,0 +170746080036,229,0 +170746080084,230,0 +170746080132,232,0 +170746080180,233,0 +170746080228,234,0 +170746080278,234,0 +170746080325,235,0 +170746080373,234,0 +170746080421,237,0 +170746080469,236,0 +170746080517,236,0 +170746080565,234,0 +170746080613,223,0 +170746080661,215,0 +170746080709,214,0 +170746080757,215,0 +170746080805,215,0 +170746080853,216,0 +170746080903,216,0 +170746080952,216,0 +170746081002,218,0 +170746081051,220,0 +170746081101,224,0 +170746081150,225,0 +170746081200,227,0 +170746081250,228,0 +170746081299,230,0 +170746081349,230,0 +170746081397,233,0 +170746081445,233,0 +170746081494,235,0 +170746081544,235,0 +170746081592,235,0 +170746081641,234,0 +170746081689,234,0 +170746081737,219,0 +170746081786,216,0 +170746081836,216,0 +170746081884,215,0 +170746081934,214,0 +170746081983,214,0 +170746082031,215,0 +170746082079,217,0 +170746082127,215,0 +170746082175,217,0 +170746082223,219,0 +170746082270,221,0 +170746082318,222,0 +170746082366,225,0 +170746082414,226,0 +170746082462,234,0 +170746082510,230,0 +170746082559,232,0 +170746082609,232,0 +170746082658,234,0 +170746082706,234,0 +170746082754,231,0 +170746082802,234,0 +170746082850,225,0 +170746082898,216,0 +170746082946,215,0 +170746082995,216,0 +170746083043,215,0 +170746083092,214,0 +170746083140,217,0 +170746083188,218,0 +170746083236,219,0 +170746083284,221,0 +170746083332,223,0 +170746083381,224,0 +170746083429,227,0 +170746083479,228,0 +170746083527,234,0 +170746083575,228,0 +170746083623,232,0 +170746083671,233,0 +170746083719,235,0 +170746083768,232,0 +170746083818,235,0 +170746083866,234,0 +170746083913,233,0 +170746083961,218,0 +170746084009,215,0 +170746084057,214,0 +170746084105,214,0 +170746084153,215,0 +170746084203,215,0 +170746084251,216,0 +170746084299,216,0 +170746084348,217,0 +170746084398,218,0 +170746084447,220,0 +170746084495,220,0 +170746084545,221,0 +170746084594,223,0 +170746084642,226,0 +170746084690,227,0 +170746084738,230,0 +170746084788,229,0 +170746084836,232,0 +170746084884,232,0 +170746084932,233,0 +170746084980,235,0 +170746085028,233,0 +170746085075,231,0 +170746085125,216,0 +170746085173,215,0 +170746085221,216,0 +170746085269,216,0 +170746085318,217,0 +170746085366,220,0 +170746085414,220,0 +170746085464,221,0 +170746085513,223,0 +170746085561,224,0 +170746085611,226,0 +170746085659,227,0 +170746085706,227,0 +170746085754,230,0 +170746085804,231,0 +170746085854,233,0 +170746085903,234,0 +170746085953,236,0 +170746086000,237,0 +170746086048,237,0 +170746086096,237,0 +170746086146,236,0 +170746086195,234,0 +170746086243,218,0 +170746086291,215,0 +170746086339,216,0 +170746086388,217,0 +170746086436,219,0 +170746086484,220,0 +170746086532,222,0 +170746086581,223,0 +170746086631,224,0 +170746086679,227,0 +170746086727,228,0 +170746086775,228,0 +170746086823,230,0 +170746086871,231,0 +170746086919,232,0 +170746086967,233,0 +170746087015,234,0 +170746087063,235,0 +170746087111,235,0 +170746087159,235,0 +170746087208,235,0 +170746087256,233,0 +170746087304,226,0 +170746087354,216,0 +170746087402,215,0 +170746087450,215,0 +170746087498,216,0 +170746087546,217,0 +170746087594,218,0 +170746087642,218,0 +170746087689,220,0 +170746087737,222,0 +170746087787,223,0 +170746087836,225,0 +170746087884,229,0 +170746087932,230,0 +170746087980,232,0 +170746088030,231,0 +170746088079,231,0 +170746088129,232,0 +170746088177,234,0 +170746088225,235,0 +170746088273,234,0 +170746088322,235,0 +170746088372,234,0 +170746088420,232,0 +170746088469,215,0 +170746088519,214,0 +170746088566,215,0 +170746088614,216,0 +170746088664,217,0 +170746088714,217,0 +170746088762,217,0 +170746088809,218,0 +170746088857,220,0 +170746088905,220,0 +170746088953,223,0 +170746089001,225,0 +170746089051,227,0 +170746089099,228,0 +170746089148,229,0 +170746089198,230,0 +170746089247,232,0 +170746089295,233,0 +170746089345,232,0 +170746089393,235,0 +170746089442,233,0 +170746089492,235,0 +170746089540,236,0 +170746089589,215,0 +170746089637,214,0 +170746089685,214,0 +170746089735,215,0 +170746089783,215,0 +170746089831,215,0 +170746089879,216,0 +170746089927,216,0 +170746089976,216,0 +170746090024,219,0 +170746090072,219,0 +170746090120,220,0 +170746090168,222,0 +170746090216,226,0 +170746090266,226,0 +170746090314,228,0 +170746090361,230,0 +170746090409,231,0 +170746090459,231,0 +170746090507,232,0 +170746090556,234,0 +170746090604,234,0 +170746090652,234,0 +170746090700,218,0 +170746090748,214,0 +170746090796,214,0 +170746090844,214,0 +170746090892,215,0 +170746090940,215,0 +170746090988,215,0 +170746091038,216,0 +170746091086,215,0 +170746091134,217,0 +170746091183,217,0 +170746091233,220,0 +170746091281,222,0 +170746091329,225,0 +170746091378,228,0 +170746091428,229,0 +170746091477,229,0 +170746091525,231,0 +170746091573,232,0 +170746091621,233,0 +170746091669,233,0 +170746091717,235,0 +170746091765,229,0 +170746091813,223,0 +170746091863,215,0 +170746091912,215,0 +170746091960,216,0 +170746092008,216,0 +170746092057,216,0 +170746092105,217,0 +170746092155,217,0 +170746092203,221,0 +170746092252,221,0 +170746092300,221,0 +170746092348,222,0 +170746092396,224,0 +170746092446,226,0 +170746092494,228,0 +170746092543,229,0 +170746092591,233,0 +170746092639,232,0 +170746092689,233,0 +170746092737,234,0 +170746092785,232,0 +170746092834,235,0 +170746092882,233,0 +170746092930,216,0 +170746092980,214,0 +170746093028,214,0 +170746093076,215,0 +170746093124,215,0 +170746093173,215,0 +170746093223,216,0 +170746093270,216,0 +170746093318,217,0 +170746093366,217,0 +170746093416,219,0 +170746093464,221,0 +170746093512,224,0 +170746093560,226,0 +170746093608,226,0 +170746093656,229,0 +170746093704,229,0 +170746093752,231,0 +170746093801,232,0 +170746093849,233,0 +170746093898,234,0 +170746093946,234,0 +170746093996,233,0 +170746094044,217,0 +170746094092,214,0 +170746094141,214,0 +170746094191,214,0 +170746094239,214,0 +170746094287,214,0 +170746094335,214,0 +170746094383,214,0 +170746094432,214,0 +170746094482,214,0 +170746094530,215,0 +170746094578,215,0 +170746094625,216,0 +170746094675,216,0 +170746094723,218,0 +170746094772,221,0 +170746094820,223,0 +170746094868,226,0 +170746094916,226,0 +170746094964,226,0 +170746095012,229,0 +170746095060,233,0 +170746095108,233,0 +170746095156,220,0 +170746095205,214,0 +170746095253,214,0 +170746095303,215,0 +170746095351,216,0 +170746095400,217,0 +170746095450,217,0 +170746095499,217,0 +170746095549,217,0 +170746095597,218,0 +170746095646,221,0 +170746095696,222,0 +170746095744,222,0 +170746095792,226,0 +170746095840,230,0 +170746095888,226,0 +170746095936,228,0 +170746095985,234,0 +170746096035,230,0 +170746096084,232,0 +170746096132,233,0 +170746096182,234,0 +170746096230,233,0 +170746096279,218,0 +170746096327,214,0 +170746096377,214,0 +170746096425,215,0 +170746096474,215,0 +170746096522,216,0 +170746096572,236,0 +170746096620,216,0 +170746096668,217,0 +170746096716,218,0 +170746096764,220,0 +170746096812,223,0 +170746096860,223,0 +170746096909,226,0 +170746096957,228,0 +170746097007,229,0 +170746097054,233,0 +170746097104,232,0 +170746097152,234,0 +170746097201,233,0 +170746097249,235,0 +170746097297,236,0 +170746097347,234,0 +170746097395,219,0 +170746097443,214,0 +170746097492,214,0 +170746097540,215,0 +170746097590,215,0 +170746097638,215,0 +170746097688,216,0 +170746097735,216,0 +170746097785,217,0 +170746097834,218,0 +170746097882,222,0 +170746097930,223,0 +170746097978,227,0 +170746098028,225,0 +170746098077,232,0 +170746098127,229,0 +170746098175,230,0 +170746098223,231,0 +170746098271,233,0 +170746098320,233,0 +170746098368,235,0 +170746098416,235,0 +170746098464,235,0 +170746098512,219,0 +170746098562,214,0 +170746098611,214,0 +170746098659,215,0 +170746098707,215,0 +170746098755,216,0 +170746098803,216,0 +170746098853,217,0 +170746098901,217,0 +170746098949,219,0 +170746098998,221,0 +170746099048,223,0 +170746099096,223,0 +170746099144,225,0 +170746099192,226,0 +170746099240,227,0 +170746099288,231,0 +170746099337,231,0 +170746099385,231,0 +170746099433,232,0 +170746099481,231,0 +170746099529,233,0 +170746099577,233,0 +170746099624,221,0 +170746099674,217,0 +170746099722,217,0 +170746099770,214,0 +170746099818,215,0 +170746099866,215,0 +170746099915,216,0 +170746099965,216,0 +170746100013,217,0 +170746100061,217,0 +170746100110,215,0 +170746100160,219,0 +170746100208,221,0 +170746100256,223,0 +170746100304,226,0 +170746100352,226,0 +170746100400,228,0 +170746100448,230,0 +170746100496,233,0 +170746100544,232,0 +170746100591,233,0 +170746100639,231,0 +170746100687,234,0 +170746100737,219,0 +170746100785,214,0 +170746100833,214,0 +170746100881,214,0 +170746100930,215,0 +170746100980,215,0 +170746101027,216,0 +170746101075,216,0 +170746101125,216,0 +170746101173,216,0 +170746101220,217,0 +170746101268,217,0 +170746101316,220,0 +170746101364,223,0 +170746101412,224,0 +170746101460,226,0 +170746101508,228,0 +170746101557,228,0 +170746101607,229,0 +170746101655,230,0 +170746101702,231,0 +170746101750,234,0 +170746101798,233,0 +170746101846,220,0 +170746101894,216,0 +170746101942,214,0 +170746101991,215,0 +170746102039,215,0 +170746102087,215,0 +170746102135,216,0 +170746102184,216,0 +170746102233,216,0 +170746102281,217,0 +170746102329,217,0 +170746102379,216,0 +170746102426,220,0 +170746102476,223,0 +170746102525,225,0 +170746102573,226,0 +170746102621,229,0 +170746102669,229,0 +170746102717,230,0 +170746102767,230,0 +170746102815,231,0 +170746102863,232,0 +170746102911,234,0 +170746102959,218,0 +170746103008,215,0 +170746103058,215,0 +170746103107,215,0 +170746103157,216,0 +170746103205,215,0 +170746103254,216,0 +170746103304,216,0 +170746103352,216,0 +170746103400,217,0 +170746103449,219,0 +170746103497,220,0 +170746103545,220,0 +170746103595,223,0 +170746103643,224,0 +170746103691,229,0 +170746103739,230,0 +170746103787,229,0 +170746103835,231,0 +170746103884,232,0 +170746103932,231,0 +170746103980,235,0 +170746104028,235,0 +170746104077,218,0 +170746104125,215,0 +170746104175,214,0 +170746104223,214,0 +170746104271,214,0 +170746104320,215,0 +170746104368,215,0 +170746104416,215,0 +170746104464,215,0 +170746104512,215,0 +170746104560,216,0 +170746104609,216,0 +170746104657,217,0 +170746104705,220,0 +170746104755,222,0 +170746104803,225,0 +170746104851,227,0 +170746104900,227,0 +170746104950,228,0 +170746104998,230,0 +170746105046,231,0 +170746105094,231,0 +170746105142,233,0 +170746105190,232,0 +170746105238,216,0 +170746105287,214,0 +170746105336,214,0 +170746105384,215,0 +170746105432,215,0 +170746105482,216,0 +170746105530,216,0 +170746105579,224,0 +170746105627,218,0 +170746105675,218,0 +170746105723,220,0 +170746105771,224,0 +170746105818,225,0 +170746105868,226,0 +170746105916,228,0 +170746105964,231,0 +170746106011,230,0 +170746106059,230,0 +170746106107,233,0 +170746106157,233,0 +170746106205,235,0 +170746106253,234,0 +170746106302,233,0 +170746106350,218,0 +170746106398,216,0 +170746106446,216,0 +170746106494,217,0 +170746106542,217,0 +170746106590,217,0 +170746106639,376,0 +170746106687,220,0 +170746106735,220,0 +170746106783,222,0 +170746106831,225,0 +170746106879,226,0 +170746106927,227,0 +170746106976,229,0 +170746107024,231,0 +170746107072,232,0 +170746107120,233,0 +170746107168,233,0 +170746107218,234,0 +170746107266,234,0 +170746107314,234,0 +170746107363,234,0 +170746107411,234,0 +170746107459,217,0 +170746107507,215,0 +170746107555,215,0 +170746107604,216,0 +170746107652,216,0 +170746107700,217,0 +170746107748,217,0 +170746107797,221,0 +170746107845,223,0 +170746107893,224,0 +170746107941,225,0 +170746107989,227,0 +170746108037,228,0 +170746108085,229,0 +170746108134,233,0 +170746108184,232,0 +170746108232,233,0 +170746108279,234,0 +170746108327,233,0 +170746108375,234,0 +170746108423,234,0 +170746108471,235,0 +170746108519,234,0 +170746108567,218,0 +170746108615,215,0 +170746108663,215,0 +170746108710,216,0 +170746108758,217,0 +170746108806,218,0 +170746108856,219,0 +170746108905,221,0 +170746108954,223,0 +170746109002,224,0 +170746109050,227,0 +170746109098,227,0 +170746109146,229,0 +170746109194,230,0 +170746109242,231,0 +170746109290,232,0 +170746109338,233,0 +170746109386,233,0 +170746109433,233,0 +170746109481,234,0 +170746109529,235,0 +170746109577,235,0 +170746109625,234,0 +170746109674,218,0 +170746109722,215,0 +170746109770,214,0 +170746109820,214,0 +170746109869,215,0 +170746109917,215,0 +170746109965,215,0 +170746110013,216,0 +170746110061,217,0 +170746110109,217,0 +170746110156,220,0 +170746110204,222,0 +170746110252,223,0 +170746110300,225,0 +170746110348,227,0 +170746110397,229,0 +170746110445,230,0 +170746110493,231,0 +170746110541,236,0 +170746110589,234,0 +170746110637,234,0 +170746110685,234,0 +170746110733,235,0 +170746110780,219,0 +170746110828,215,0 +170746110876,215,0 +170746110926,214,0 +170746110974,215,0 +170746111023,215,0 +170746111071,216,0 +170746111121,217,0 +170746111169,217,0 +170746111217,217,0 +170746111265,220,0 +170746111314,222,0 +170746111364,223,0 +170746111411,224,0 +170746111461,226,0 +170746111509,228,0 +170746111558,229,0 +170746111606,231,0 +170746111654,233,0 +170746111702,232,0 +170746111750,233,0 +170746111798,231,0 +170746111845,234,0 +170746111893,232,0 +170746111941,216,0 +170746111989,214,0 +170746112037,215,0 +170746112085,215,0 +170746112133,215,0 +170746112181,215,0 +170746112228,216,0 +170746112276,217,0 +170746112324,217,0 +170746112372,219,0 +170746112420,221,0 +170746112468,222,0 +170746112517,224,0 +170746112565,226,0 +170746112615,227,0 +170746112664,229,0 +170746112714,231,0 +170746112762,231,0 +170746112810,233,0 +170746112858,233,0 +170746112907,234,0 +170746112955,234,0 +170746113003,235,0 +170746113051,217,0 +170746113099,214,0 +170746113147,214,0 +170746113194,214,0 +170746113242,214,0 +170746113290,214,0 +170746113338,214,0 +170746113388,214,0 +170746113436,215,0 +170746113484,215,0 +170746113533,216,0 +170746113581,216,0 +170746113631,217,0 +170746113679,219,0 +170746113727,221,0 +170746113775,222,0 +170746113823,225,0 +170746113871,226,0 +170746113920,226,0 +170746113968,228,0 +170746114016,230,0 +170746114066,233,0 +170746114115,234,0 +170746114163,232,0 +170746114211,225,0 +170746114259,224,0 +170746114307,224,0 +170746114355,223,0 +170746114404,225,0 +170746114452,214,0 +170746114500,214,0 +170746114548,215,0 +170746114598,215,0 +170746114647,216,0 +170746114695,217,0 +170746114745,217,0 +170746114794,219,0 +170746114842,221,0 +170746114892,223,0 +170746114940,225,0 +170746114988,225,0 +170746115036,227,0 +170746115084,227,0 +170746115132,229,0 +170746115180,232,0 +170746115227,234,0 +170746115275,219,0 +170746115324,215,0 +170746115371,215,0 +170746115419,215,0 +170746115467,215,0 +170746115517,215,0 +170746115565,216,0 +170746115614,216,0 +170746115662,216,0 +170746115712,216,0 +170746115760,218,0 +170746115809,220,0 +170746115859,222,0 +170746115907,225,0 +170746115955,226,0 +170746116002,227,0 +170746116052,227,0 +170746116100,229,0 +170746116148,229,0 +170746116196,230,0 +170746116244,234,0 +170746116291,232,0 +170746116339,233,0 +170746116387,218,0 +170746116435,214,0 +170746116483,214,0 +170746116531,214,0 +170746116579,214,0 +170746116627,214,0 +170746116674,214,0 +170746116722,214,0 +170746116772,214,0 +170746116822,215,0 +170746116871,215,0 +170746116919,216,0 +170746116967,216,0 +170746117015,218,0 +170746117063,219,0 +170746117111,222,0 +170746117160,224,0 +170746117208,226,0 +170746117256,227,0 +170746117304,229,0 +170746117353,230,0 +170746117401,232,0 +170746117449,232,0 +170746117498,219,0 +170746117546,215,0 +170746117594,215,0 +170746117644,215,0 +170746117692,215,0 +170746117740,214,0 +170746117788,214,0 +170746117835,214,0 +170746117883,215,0 +170746117931,215,0 +170746117979,216,0 +170746118028,216,0 +170746118076,218,0 +170746118124,220,0 +170746118172,222,0 +170746118220,224,0 +170746118268,226,0 +170746118316,226,0 +170746118364,227,0 +170746118413,230,0 +170746118461,230,0 +170746118509,233,0 +170746118557,233,0 +170746118605,223,0 +170746118653,215,0 +170746118701,214,0 +170746118749,214,0 +170746118796,215,0 +170746118844,214,0 +170746118892,215,0 +170746118940,215,0 +170746118988,216,0 +170746119036,216,0 +170746119084,217,0 +170746119132,218,0 +170746119180,221,0 +170746119228,221,0 +170746119277,224,0 +170746119325,224,0 +170746119373,226,0 +170746119421,228,0 +170746119469,230,0 +170746119516,231,0 +170746119564,232,0 +170746119612,230,0 +170746119660,233,0 +170746119710,233,0 +170746119759,217,0 +170746119807,215,0 +170746119856,214,0 +170746119904,215,0 +170746119954,215,0 +170746120002,215,0 +170746120050,215,0 +170746120099,215,0 +170746120147,215,0 +170746120195,215,0 +170746120243,216,0 +170746120291,217,0 +170746120340,219,0 +170746120388,221,0 +170746120436,222,0 +170746120484,224,0 +170746120532,225,0 +170746120580,227,0 +170746120628,229,0 +170746120676,231,0 +170746120723,229,0 +170746120771,233,0 +170746120821,233,0 +170746120869,219,0 +170746120916,215,0 +170746120964,214,0 +170746121012,214,0 +170746121060,214,0 +170746121108,214,0 +170746121156,214,0 +170746121204,214,0 +170746121252,214,0 +170746121301,214,0 +170746121349,214,0 +170746121397,215,0 +170746121445,215,0 +170746121493,216,0 +170746121540,218,0 +170746121588,220,0 +170746121636,222,0 +170746121684,223,0 +170746121732,225,0 +170746121780,226,0 +170746121828,226,0 +170746121876,231,0 +170746121923,232,0 +170746121971,217,0 +170746122019,214,0 +170746122067,214,0 +170746122117,214,0 +170746122165,214,0 +170746122213,215,0 +170746122262,215,0 +170746122310,215,0 +170746122358,215,0 +170746122408,216,0 +170746122456,215,0 +170746122503,218,0 +170746122551,220,0 +170746122599,222,0 +170746122647,223,0 +170746122695,227,0 +170746122743,228,0 +170746122791,229,0 +170746122840,230,0 +170746122890,232,0 +170746122938,232,0 +170746122987,232,0 +170746123037,234,0 +170746123085,219,0 +170746123134,214,0 +170746123182,214,0 +170746123232,214,0 +170746123280,214,0 +170746123328,215,0 +170746123376,215,0 +170746123424,216,0 +170746123471,216,0 +170746123519,217,0 +170746123567,217,0 +170746123615,217,0 +170746123665,219,0 +170746123714,221,0 +170746123764,223,0 +170746123812,225,0 +170746123860,226,0 +170746123908,227,0 +170746123956,230,0 +170746124005,231,0 +170746124053,230,0 +170746124101,231,0 +170746124150,233,0 +170746124198,222,0 +170746124246,215,0 +170746124294,214,0 +170746124342,214,0 +170746124392,214,0 +170746124440,214,0 +170746124488,214,0 +170746124537,214,0 +170746124585,215,0 +170746124633,215,0 +170746124683,215,0 +170746124730,216,0 +170746124778,216,0 +170746124828,218,0 +170746124876,220,0 +170746124925,222,0 +170746124973,224,0 +170746125021,226,0 +170746125071,228,0 +170746125119,228,0 +170746125167,230,0 +170746125215,228,0 +170746125264,233,0 +170746125314,233,0 +170746125363,215,0 +170746125413,214,0 +170746125461,215,0 +170746125509,215,0 +170746125557,218,0 +170746125606,217,0 +170746125654,217,0 +170746125702,217,0 +170746125752,218,0 +170746125800,218,0 +170746125848,221,0 +170746125896,223,0 +170746125944,225,0 +170746125992,225,0 +170746126040,227,0 +170746126088,230,0 +170746126136,233,0 +170746126184,232,0 +170746126233,234,0 +170746126281,234,0 +170746126330,230,0 +170746126378,234,0 +170746126426,233,0 +170746126474,216,0 +170746126524,214,0 +170746126572,215,0 +170746126620,215,0 +170746126668,215,0 +170746126716,215,0 +170746126764,216,0 +170746126813,216,0 +170746126861,217,0 +170746126909,217,0 +170746126957,218,0 +170746127005,220,0 +170746127055,224,0 +170746127104,226,0 +170746127152,228,0 +170746127200,228,0 +170746127248,231,0 +170746127296,233,0 +170746127344,231,0 +170746127394,233,0 +170746127442,232,0 +170746127490,233,0 +170746127538,233,0 +170746127586,217,0 +170746127635,215,0 +170746127683,215,0 +170746127731,216,0 +170746127779,216,0 +170746127828,216,0 +170746127878,217,0 +170746127926,216,0 +170746127974,217,0 +170746128022,218,0 +170746128070,221,0 +170746128119,223,0 +170746128167,225,0 +170746128217,227,0 +170746128265,228,0 +170746128314,231,0 +170746128364,230,0 +170746128412,233,0 +170746128461,232,0 +170746128509,231,0 +170746128557,233,0 +170746128605,234,0 +170746128655,234,0 +170746128704,219,0 +170746128752,215,0 +170746128800,214,0 +170746128850,214,0 +170746128898,215,0 +170746128946,216,0 +170746128995,216,0 +170746129043,217,0 +170746129093,218,0 +170746129141,218,0 +170746129190,219,0 +170746129238,222,0 +170746129288,224,0 +170746129336,226,0 +170746129385,227,0 +170746129433,230,0 +170746129481,231,0 +170746129529,232,0 +170746129579,232,0 +170746129627,233,0 +170746129674,234,0 +170746129724,234,0 +170746129772,233,0 +170746129820,219,0 +170746129868,215,0 +170746129916,215,0 +170746129964,214,0 +170746130013,214,0 +170746130063,215,0 +170746130111,216,0 +170746130159,217,0 +170746130207,217,0 +170746130256,217,0 +170746130304,218,0 +170746130352,219,0 +170746130402,222,0 +170746130450,224,0 +170746130498,226,0 +170746130546,228,0 +170746130595,229,0 +170746130645,231,0 +170746130694,233,0 +170746130742,234,0 +170746130790,234,0 +170746130838,232,0 +170746130888,233,0 +170746130936,218,0 +170746130984,214,0 +170746131033,214,0 +170746131081,215,0 +170746131131,215,0 +170746131178,216,0 +170746131228,216,0 +170746131276,216,0 +170746131324,216,0 +170746131372,217,0 +170746131420,219,0 +170746131468,222,0 +170746131516,224,0 +170746131564,225,0 +170746131612,228,0 +170746131660,228,0 +170746131708,230,0 +170746131757,231,0 +170746131805,232,0 +170746131853,233,0 +170746131901,233,0 +170746131949,234,0 +170746131999,232,0 +170746132047,260,0 +170746132096,222,0 +170746132144,220,0 +170746132194,222,0 +170746132243,223,0 +170746132291,214,0 +170746132339,214,0 +170746132387,215,0 +170746132435,215,0 +170746132483,215,0 +170746132531,216,0 +170746132581,217,0 +170746132629,219,0 +170746132678,222,0 +170746132728,224,0 +170746132776,225,0 +170746132824,228,0 +170746132872,228,0 +170746132919,231,0 +170746132967,229,0 +170746133015,232,0 +170746133063,232,0 +170746133111,235,0 +170746133159,218,0 +170746133207,214,0 +170746133255,214,0 +170746133305,214,0 +170746133353,215,0 +170746133401,214,0 +170746133449,215,0 +170746133497,215,0 +170746133546,216,0 +170746133596,216,0 +170746133645,217,0 +170746133695,220,0 +170746133743,222,0 +170746133791,225,0 +170746133839,225,0 +170746133888,227,0 +170746133938,233,0 +170746133986,229,0 +170746134034,230,0 +170746134082,232,0 +170746134131,232,0 +170746134179,234,0 +170746134229,234,0 +170746134277,218,0 +170746134325,214,0 +170746134374,214,0 +170746134422,214,0 +170746134472,214,0 +170746134521,214,0 +170746134569,214,0 +170746134617,215,0 +170746134665,215,0 +170746134713,216,0 +170746134761,216,0 +170746134810,217,0 +170746134858,219,0 +170746134906,221,0 +170746134954,223,0 +170746135002,225,0 +170746135049,226,0 +170746135099,228,0 +170746135147,229,0 +170746135195,231,0 +170746135243,230,0 +170746135290,232,0 +170746135338,234,0 +170746135386,217,0 +170746135434,215,0 +170746135482,214,0 +170746135530,214,0 +170746135578,214,0 +170746135626,214,0 +170746135673,214,0 +170746135723,214,0 +170746135771,214,0 +170746135819,214,0 +170746135868,215,0 +170746135916,215,0 +170746135966,215,0 +170746136014,217,0 +170746136061,219,0 +170746136109,222,0 +170746136157,223,0 +170746136205,225,0 +170746136253,226,0 +170746136301,228,0 +170746136350,230,0 +170746136400,229,0 +170746136448,234,0 +170746136495,234,0 +170746136543,217,0 +170746136593,214,0 +170746136641,214,0 +170746136689,214,0 +170746136737,214,0 +170746136786,214,0 +170746136836,214,0 +170746136885,214,0 +170746136933,214,0 +170746136983,216,0 +170746137031,216,0 +170746137080,216,0 +170746137130,217,0 +170746137178,219,0 +170746137227,221,0 +170746137277,224,0 +170746137325,225,0 +170746137373,227,0 +170746137422,228,0 +170746137472,230,0 +170746137520,231,0 +170746137569,232,0 +170746137619,224,0 +170746137667,215,0 +170746137715,214,0 +170746137763,214,0 +170746137811,214,0 +170746137860,215,0 +170746137908,215,0 +170746137956,215,0 +170746138006,216,0 +170746138054,216,0 +170746138103,217,0 +170746138151,219,0 +170746138201,221,0 +170746138250,223,0 +170746138298,225,0 +170746138346,227,0 +170746138394,228,0 +170746138442,232,0 +170746138492,231,0 +170746138539,232,0 +170746138589,230,0 +170746138637,231,0 +170746138687,236,0 +170746138735,229,0 +170746138783,215,0 +170746138831,214,0 +170746138880,214,0 +170746138928,214,0 +170746138978,214,0 +170746139027,214,0 +170746139075,214,0 +170746139123,215,0 +170746139173,215,0 +170746139222,216,0 +170746139272,217,0 +170746139321,217,0 +170746139371,219,0 +170746139420,221,0 +170746139468,223,0 +170746139516,227,0 +170746139564,225,0 +170746139612,228,0 +170746139662,229,0 +170746139711,231,0 +170746139761,233,0 +170746139809,235,0 +170746139858,218,0 +170746139908,216,0 +170746139956,215,0 +170746140005,215,0 +170746140053,215,0 +170746140101,215,0 +170746140151,215,0 +170746140198,215,0 +170746140248,214,0 +170746140298,215,0 +170746140345,215,0 +170746140395,215,0 +170746140443,216,0 +170746140493,218,0 +170746140541,221,0 +170746140590,224,0 +170746140639,224,0 +170746140688,226,0 +170746140735,226,0 +170746140783,228,0 +170746140833,229,0 +170746140883,232,0 +170746140932,233,0 +170746140982,218,0 +170746141030,215,0 +170746141079,214,0 +170746141127,214,0 +170746141177,214,0 +170746141225,214,0 +170746141274,215,0 +170746141322,216,0 +170746141370,216,0 +170746141420,216,0 +170746141468,217,0 +170746141516,219,0 +170746141565,221,0 +170746141613,223,0 +170746141663,225,0 +170746141711,227,0 +170746141759,228,0 +170746141808,230,0 +170746141856,230,0 +170746141906,232,0 +170746141954,232,0 +170746142002,232,0 +170746142050,232,0 +170746142099,219,0 +170746142149,215,0 +170746142197,214,0 +170746142246,215,0 +170746142294,215,0 +170746142343,215,0 +170746142391,215,0 +170746142439,216,0 +170746142489,217,0 +170746142536,217,0 +170746142584,217,0 +170746142632,217,0 +170746142680,219,0 +170746142728,221,0 +170746142777,225,0 +170746142825,232,0 +170746142873,229,0 +170746142921,228,0 +170746142969,230,0 +170746143017,233,0 +170746143066,233,0 +170746143114,233,0 +170746143162,234,0 +170746143210,218,0 +170746143258,215,0 +170746143306,214,0 +170746143354,214,0 +170746143401,214,0 +170746143449,214,0 +170746143497,215,0 +170746143545,215,0 +170746143593,215,0 +170746143641,216,0 +170746143689,216,0 +170746143737,217,0 +170746143785,217,0 +170746143833,220,0 +170746143882,223,0 +170746143932,225,0 +170746143981,226,0 +170746144029,227,0 +170746144079,229,0 +170746144127,229,0 +170746144176,230,0 +170746144226,229,0 +170746144275,234,0 +170746144325,234,0 +170746144373,216,0 +170746144421,214,0 +170746144469,214,0 +170746144518,214,0 +170746144566,214,0 +170746144616,214,0 +170746144664,215,0 +170746144712,215,0 +170746144761,215,0 +170746144811,216,0 +170746144859,216,0 +170746144908,217,0 +170746144956,218,0 +170746145004,221,0 +170746145052,223,0 +170746145100,225,0 +170746145148,230,0 +170746145196,228,0 +170746145246,229,0 +170746145295,229,0 +170746145343,227,0 +170746145391,232,0 +170746145439,233,0 +170746145487,216,0 +170746145535,214,0 +170746145585,214,0 +170746145634,214,0 +170746145682,215,0 +170746145732,215,0 +170746145781,216,0 +170746145829,217,0 +170746145877,216,0 +170746145927,217,0 +170746145975,218,0 +170746146023,220,0 +170746146072,222,0 +170746146120,224,0 +170746146168,226,0 +170746146218,229,0 +170746146266,229,0 +170746146314,230,0 +170746146362,231,0 +170746146410,231,0 +170746146459,226,0 +170746146507,233,0 +170746146557,242,0 +170746146604,216,0 +170746146652,215,0 +170746146702,214,0 +170746146750,214,0 +170746146798,214,0 +170746146846,214,0 +170746146894,214,0 +170746146943,214,0 +170746146991,214,0 +170746147039,215,0 +170746147087,215,0 +170746147135,216,0 +170746147183,216,0 +170746147231,219,0 +170746147280,221,0 +170746147330,223,0 +170746147379,225,0 +170746147429,226,0 +170746147477,227,0 +170746147526,229,0 +170746147576,228,0 +170746147625,233,0 +170746147675,234,0 +170746147723,216,0 +170746147772,215,0 +170746147822,215,0 +170746147870,215,0 +170746147918,214,0 +170746147966,215,0 +170746148015,215,0 +170746148065,216,0 +170746148113,216,0 +170746148162,216,0 +170746148212,217,0 +170746148261,218,0 +170746148311,219,0 +170746148360,221,0 +170746148410,223,0 +170746148458,225,0 +170746148506,226,0 +170746148555,228,0 +170746148603,230,0 +170746148651,230,0 +170746148701,232,0 +170746148749,234,0 +170746148798,218,0 +170746148846,215,0 +170746148896,214,0 +170746148944,214,0 +170746148992,214,0 +170746149040,214,0 +170746149087,214,0 +170746149135,214,0 +170746149183,215,0 +170746149231,215,0 +170746149281,216,0 +170746149329,216,0 +170746149377,217,0 +170746149425,217,0 +170746149474,219,0 +170746149524,222,0 +170746149572,225,0 +170746149620,227,0 +170746149669,228,0 +170746149719,228,0 +170746149766,229,0 +170746149814,229,0 +170746149862,233,0 +170746149910,233,0 +170746149958,216,0 +170746150008,214,0 +170746150057,214,0 +170746150106,214,0 +170746150156,214,0 +170746150204,214,0 +170746150252,214,0 +170746150301,215,0 +170746150349,215,0 +170746150399,215,0 +170746150448,216,0 +170746150498,218,0 +170746150546,221,0 +170746150594,222,0 +170746150642,224,0 +170746150690,226,0 +170746150737,227,0 +170746150787,228,0 +170746150835,230,0 +170746150883,231,0 +170746150932,231,0 +170746150980,235,0 +170746151030,234,0 +170746151078,216,0 +170746151125,214,0 +170746151175,214,0 +170746151223,214,0 +170746151271,214,0 +170746151318,214,0 +170746151366,214,0 +170746151414,215,0 +170746151464,215,0 +170746151513,215,0 +170746151561,216,0 +170746151609,216,0 +170746151657,217,0 +170746151705,220,0 +170746151755,222,0 +170746151803,224,0 +170746151851,225,0 +170746151900,226,0 +170746151948,230,0 +170746151996,229,0 +170746152044,230,0 +170746152092,233,0 +170746152140,233,0 +170746152188,217,0 +170746152238,214,0 +170746152286,215,0 +170746152335,214,0 +170746152385,214,0 +170746152433,214,0 +170746152480,214,0 +170746152528,215,0 +170746152576,215,0 +170746152624,215,0 +170746152672,215,0 +170746152720,216,0 +170746152769,216,0 +170746152817,219,0 +170746152865,221,0 +170746152913,224,0 +170746152961,224,0 +170746153010,226,0 +170746153058,228,0 +170746153108,230,0 +170746153156,230,0 +170746153203,234,0 +170746153251,232,0 +170746153301,218,0 +170746153349,215,0 +170746153397,214,0 +170746153444,214,0 +170746153492,215,0 +170746153540,214,0 +170746153588,215,0 +170746153638,216,0 +170746153687,215,0 +170746153737,217,0 +170746153786,216,0 +170746153834,217,0 +170746153884,218,0 +170746153932,221,0 +170746153981,228,0 +170746154031,224,0 +170746154079,226,0 +170746154127,228,0 +170746154174,231,0 +170746154224,234,0 +170746154272,231,0 +170746154321,231,0 +170746154371,232,0 +170746154419,219,0 +170746154468,215,0 +170746154518,215,0 +170746154567,214,0 +170746154615,214,0 +170746154663,215,0 +170746154711,214,0 +170746154761,214,0 +170746154810,214,0 +170746154860,214,0 +170746154908,215,0 +170746154956,216,0 +170746155005,216,0 +170746155055,218,0 +170746155104,220,0 +170746155154,223,0 +170746155203,225,0 +170746155253,226,0 +170746155301,228,0 +170746155349,228,0 +170746155398,230,0 +170746155448,232,0 +170746155496,235,0 +170746155544,217,0 +170746155592,214,0 +170746155641,214,0 +170746155689,214,0 +170746155737,214,0 +170746155787,214,0 +170746155836,215,0 +170746155886,215,0 +170746155934,216,0 +170746155983,216,0 +170746156033,217,0 +170746156082,219,0 +170746156130,219,0 +170746156178,220,0 +170746156226,222,0 +170746156276,224,0 +170746156324,227,0 +170746156373,227,0 +170746156421,229,0 +170746156471,232,0 +170746156519,231,0 +170746156567,234,0 +170746156615,232,0 +170746156663,1010100,0 +170746156711,1010100,0 +170746156787,1010100,0 +170746156861,1010100,0 +170746156933,1010100,0 +170746157005,1010100,0 +170746157070,1010100,0 +170746157142,1010100,0 +170746157203,215,0 +170746157253,215,0 +170746157302,216,0 +170746157350,218,0 +170746157398,219,0 +170746157447,222,0 +170746157496,224,0 +170746157544,224,0 +170746157593,228,0 +170746157643,228,0 +170746157691,233,0 +170746157739,234,0 +170746157786,218,0 +170746157834,215,0 +170746157882,215,0 +170746157930,215,0 +170746157978,215,0 +170746158026,215,0 +170746158074,215,0 +170746158122,216,0 +170746158171,215,0 +170746158219,216,0 +170746158269,220,0 +170746158318,220,0 +170746158366,225,0 +170746158414,224,0 +170746158462,226,0 +170746158510,229,0 +170746158558,229,0 +170746158608,230,0 +170746158656,231,0 +170746158704,233,0 +170746158753,232,0 +170746158803,232,0 +170746158851,233,0 +170746158900,218,0 +170746158948,214,0 +170746158996,214,0 +170746159044,214,0 +170746159092,214,0 +170746159140,215,0 +170746159188,215,0 +170746159236,215,0 +170746159285,216,0 +170746159333,216,0 +170746159381,217,0 +170746159431,217,0 +170746159480,219,0 +170746159528,221,0 +170746159576,222,0 +170746159626,224,0 +170746159675,226,0 +170746159725,228,0 +170746159773,231,0 +170746159821,231,0 +170746159869,233,0 +170746159917,235,0 +170746159965,233,0 +170746160012,219,0 +170746160060,215,0 +170746160110,215,0 +170746160159,214,0 +170746160209,215,0 +170746160258,217,0 +170746160306,217,0 +170746160354,216,0 +170746160404,216,0 +170746160452,218,0 +170746160500,219,0 +170746160548,220,0 +170746160597,224,0 +170746160645,224,0 +170746160693,226,0 +170746160743,230,0 +170746160792,229,0 +170746160840,229,0 +170746160888,231,0 +170746160938,230,0 +170746160986,232,0 +170746161034,235,0 +170746161083,231,0 +170746161133,219,0 +170746161182,214,0 +170746161232,214,0 +170746161281,214,0 +170746161330,214,0 +170746161378,214,0 +170746161426,215,0 +170746161476,215,0 +170746161524,215,0 +170746161572,216,0 +170746161620,216,0 +170746161667,217,0 +170746161715,221,0 +170746161763,222,0 +170746161811,223,0 +170746161859,228,0 +170746161907,227,0 +170746161955,229,0 +170746162003,228,0 +170746162050,229,0 +170746162098,231,0 +170746162148,234,0 +170746162197,232,0 +170746162245,218,0 +170746162293,215,0 +170746162341,215,0 +170746162390,215,0 +170746162438,215,0 +170746162486,215,0 +170746162536,217,0 +170746162584,216,0 +170746162632,217,0 +170746162681,219,0 +170746162731,219,0 +170746162779,222,0 +170746162827,222,0 +170746162876,224,0 +170746162924,227,0 +170746162972,227,0 +170746163020,230,0 +170746163068,231,0 +170746163117,232,0 +170746163165,233,0 +170746163213,233,0 +170746163261,234,0 +170746163309,231,0 +170746163357,217,0 +170746163404,214,0 +170746163452,214,0 +170746163500,215,0 +170746163550,215,0 +170746163597,215,0 +170746163645,216,0 +170746163693,216,0 +170746163741,216,0 +170746163789,217,0 +170746163837,218,0 +170746163885,219,0 +170746163933,221,0 +170746163981,222,0 +170746164029,222,0 +170746164078,226,0 +170746164127,227,0 +170746164175,228,0 +170746164223,230,0 +170746164271,229,0 +170746164320,231,0 +170746164370,232,0 +170746164418,232,0 +170746164466,224,0 +170746164515,215,0 +170746164565,215,0 +170746164613,214,0 +170746164661,214,0 +170746164708,215,0 +170746164758,214,0 +170746164806,214,0 +170746164854,215,0 +170746164902,215,0 +170746164950,214,0 +170746164998,214,0 +170746165045,214,0 +170746165093,214,0 +170746165141,216,0 +170746165189,216,0 +170746165239,218,0 +170746165287,221,0 +170746165335,223,0 +170746165384,223,0 +170746165434,226,0 +170746165482,227,0 +170746165530,232,0 +170746165578,235,0 +170746165627,216,0 +170746165677,215,0 +170746165725,214,0 +170746165774,214,0 +170746165822,214,0 +170746165870,214,0 +170746165918,215,0 +170746165967,215,0 +170746166015,215,0 +170746166063,216,0 +170746166111,216,0 +170746166159,217,0 +170746166208,219,0 +170746166256,221,0 +170746166304,224,0 +170746166354,226,0 +170746166402,227,0 +170746166451,228,0 +170746166501,228,0 +170746166549,230,0 +170746166597,231,0 +170746166645,233,0 +170746166693,233,0 +170746166740,217,0 +170746166788,214,0 +170746166836,214,0 +170746166884,214,0 +170746166934,214,0 +170746166983,214,0 +170746167031,215,0 +170746167081,214,0 +170746167129,215,0 +170746167177,215,0 +170746167225,215,0 +170746167273,216,0 +170746167321,217,0 +170746167368,219,0 +170746167418,221,0 +170746167466,222,0 +170746167515,224,0 +170746167563,226,0 +170746167613,228,0 +170746167663,229,0 +170746167712,231,0 +170746167760,232,0 +170746167810,233,0 +170746167858,218,0 +170746167906,215,0 +170746167953,214,0 +170746168001,214,0 +170746168049,215,0 +170746168099,216,0 +170746168147,215,0 +170746168196,215,0 +170746168244,216,0 +170746168294,216,0 +170746168343,217,0 +170746168393,220,0 +170746168441,223,0 +170746168490,224,0 +170746168538,226,0 +170746168586,228,0 +170746168634,230,0 +170746168682,228,0 +170746168730,231,0 +170746168780,232,0 +170746168828,234,0 +170746168877,232,0 +170746168927,232,0 +170746168975,217,0 +170746169023,214,0 +170746169072,215,0 +170746169122,215,0 +170746169170,215,0 +170746169219,215,0 +170746169267,216,0 +170746169315,217,0 +170746169365,216,0 +170746169414,219,0 +170746169464,221,0 +170746169512,222,0 +170746169559,225,0 +170746169607,228,0 +170746169655,228,0 +170746169703,230,0 +170746169753,233,0 +170746169802,232,0 +170746169850,233,0 +170746169898,234,0 +170746169948,234,0 +170746169997,234,0 +170746170047,233,0 +170746170096,219,0 +170746170146,214,0 +170746170194,214,0 +170746170243,215,0 +170746170293,215,0 +170746170343,216,0 +170746170392,216,0 +170746170440,217,0 +170746170488,219,0 +170746170537,220,0 +170746170585,222,0 +170746170633,225,0 +170746170683,226,0 +170746170733,228,0 +170746170782,229,0 +170746170830,231,0 +170746170878,237,0 +170746170926,233,0 +170746170974,234,0 +170746171024,233,0 +170746171072,233,0 +170746171120,233,0 +170746171169,233,0 +170746171217,218,0 +170746171265,216,0 +170746171313,216,0 +170746171361,216,0 +170746171409,216,0 +170746171457,218,0 +170746171505,218,0 +170746171552,220,0 +170746171600,222,0 +170746171648,223,0 +170746171696,225,0 +170746171746,226,0 +170746171794,228,0 +170746171842,228,0 +170746171889,232,0 +170746171939,231,0 +170746171988,232,0 +170746172038,233,0 +170746172086,235,0 +170746172135,233,0 +170746172185,235,0 +170746172233,236,0 +170746172281,233,0 +170746172329,217,0 +170746172377,215,0 +170746172425,215,0 +170746172474,216,0 +170746172524,217,0 +170746172572,216,0 +170746172620,219,0 +170746172669,220,0 +170746172717,222,0 +170746172767,224,0 +170746172816,226,0 +170746172864,227,0 +170746172912,228,0 +170746172962,232,0 +170746173010,230,0 +170746173058,231,0 +170746173106,234,0 +170746173155,233,0 +170746173205,234,0 +170746173253,236,0 +170746173302,235,0 +170746173352,236,0 +170746173400,235,0 +170746173449,218,0 +170746173497,214,0 +170746173545,214,0 +170746173595,214,0 +170746173644,214,0 +170746173694,215,0 +170746173742,215,0 +170746173790,216,0 +170746173838,216,0 +170746173886,216,0 +170746173934,220,0 +170746173983,221,0 +170746174033,222,0 +170746174082,225,0 +170746174130,228,0 +170746174180,228,0 +170746174228,228,0 +170746174278,231,0 +170746174327,231,0 +170746174377,232,0 +170746174425,232,0 +170746174473,233,0 +170746174522,233,0 +170746174570,218,0 +170746174618,214,0 +170746174667,215,0 +170746174715,215,0 +170746174763,215,0 +170746174811,215,0 +170746174859,214,0 +170746174907,214,0 +170746174955,215,0 +170746175003,215,0 +170746175051,215,0 +170746175099,216,0 +170746175146,218,0 +170746175194,221,0 +170746175242,222,0 +170746175290,225,0 +170746175338,226,0 +170746175386,228,0 +170746175434,228,0 +170746175482,231,0 +170746175530,230,0 +170746175578,232,0 +170746175626,233,0 +170746175673,218,0 +170746175721,214,0 +170746175771,215,0 +170746175819,215,0 +170746175867,216,0 +170746175914,216,0 +170746175962,217,0 +170746176010,217,0 +170746176060,217,0 +170746176109,218,0 +170746176157,221,0 +170746176205,221,0 +170746176254,223,0 +170746176302,225,0 +170746176350,227,0 +170746176398,228,0 +170746176448,229,0 +170746176496,230,0 +170746176545,234,0 +170746176595,231,0 +170746176642,233,0 +170746176690,230,0 +170746176738,233,0 +170746176786,224,0 +170746176834,215,0 +170746176882,214,0 +170746176931,214,0 +170746176979,214,0 +170746177027,214,0 +170746177075,215,0 +170746177123,215,0 +170746177171,215,0 +170746177219,216,0 +170746177267,216,0 +170746177316,216,0 +170746177364,218,0 +170746177412,221,0 +170746177460,223,0 +170746177508,224,0 +170746177556,226,0 +170746177603,227,0 +170746177651,230,0 +170746177699,229,0 +170746177747,230,0 +170746177795,229,0 +170746177843,233,0 +170746177891,233,0 +170746177939,216,0 +170746177987,214,0 +170746178034,214,0 +170746178082,214,0 +170746178130,214,0 +170746178178,215,0 +170746178226,215,0 +170746178274,216,0 +170746178322,216,0 +170746178370,217,0 +170746178418,217,0 +170746178465,219,0 +170746178513,224,0 +170746178561,224,0 +170746178609,226,0 +170746178657,226,0 +170746178705,228,0 +170746178753,228,0 +170746178801,229,0 +170746178849,229,0 +170746178896,231,0 +170746178944,232,0 +170746178992,233,0 +170746179042,218,0 +170746179090,214,0 +170746179138,214,0 +170746179186,214,0 +170746179233,214,0 +170746179281,215,0 +170746179329,215,0 +170746179377,215,0 +170746179427,216,0 +170746179475,217,0 +170746179524,218,0 +170746179573,219,0 +170746179623,222,0 +170746179672,226,0 +170746179720,226,0 +170746179770,228,0 +170746179819,228,0 +170746179869,229,0 +170746179917,230,0 +170746179965,231,0 +170746180015,231,0 +170746180062,233,0 +170746180110,233,0 +170746180158,221,0 +170746180208,216,0 +170746180256,216,0 +170746180305,216,0 +170746180355,216,0 +170746180404,216,0 +170746180452,216,0 +170746180502,214,0 +170746180550,214,0 +170746180598,215,0 +170746180648,217,0 +170746180697,218,0 +170746180747,219,0 +170746180796,221,0 +170746180844,223,0 +170746180892,224,0 +170746180942,226,0 +170746180989,227,0 +170746181039,230,0 +170746181087,230,0 +170746181136,231,0 +170746181184,232,0 +170746181234,232,0 +170746181283,224,0 +170746181333,220,0 +170746181383,220,0 +170746181431,220,0 +170746181478,220,0 +170746181528,220,0 +170746181576,221,0 +170746181624,221,0 +170746181674,221,0 +170746181722,220,0 +170746181770,221,0 +170746181817,221,0 +170746181867,221,0 +170746181915,215,0 +170746181964,214,0 +170746182012,215,0 +170746182062,217,0 +170746182111,219,0 +170746182161,220,0 +170746182209,222,0 +170746182258,223,0 +170746182306,231,0 +170746182354,232,0 +170746182402,217,0 +170746182450,214,0 +170746182498,214,0 +170746182548,214,0 +170746182597,215,0 +170746182645,215,0 +170746182693,216,0 +170746182743,216,0 +170746182791,217,0 +170746182839,217,0 +170746182888,218,0 +170746182938,218,0 +170746182987,221,0 +170746183035,223,0 +170746183083,230,0 +170746183133,224,0 +170746183182,229,0 +170746183232,230,0 +170746183281,230,0 +170746183331,232,0 +170746183380,234,0 +170746183430,232,0 +170746183479,233,0 +170746183527,223,0 +170746183577,218,0 +170746183625,218,0 +170746183673,219,0 +170746183721,218,0 +170746183769,219,0 +170746183817,216,0 +170746183865,214,0 +170746183914,215,0 +170746183964,215,0 +170746184012,215,0 +170746184059,217,0 +170746184109,219,0 +170746184157,222,0 +170746184206,225,0 +170746184254,224,0 +170746184304,228,0 +170746184352,227,0 +170746184402,229,0 +170746184450,230,0 +170746184498,230,0 +170746184546,232,0 +170746184594,232,0 +170746184643,217,0 +170746184691,214,0 +170746184739,214,0 +170746184787,214,0 +170746184836,214,0 +170746184884,214,0 +170746184934,215,0 +170746184982,215,0 +170746185030,215,0 +170746185079,216,0 +170746185127,217,0 +170746185177,219,0 +170746185225,220,0 +170746185273,222,0 +170746185321,223,0 +170746185369,225,0 +170746185419,227,0 +170746185468,228,0 +170746185517,229,0 +170746185565,230,0 +170746185615,231,0 +170746185663,231,0 +170746185712,233,0 +170746185760,218,0 +170746185810,214,0 +170746185858,214,0 +170746185906,214,0 +170746185955,214,0 +170746186003,215,0 +170746186053,215,0 +170746186101,215,0 +170746186149,215,0 +170746186197,216,0 +170746186245,217,0 +170746186293,218,0 +170746186342,220,0 +170746186392,223,0 +170746186440,226,0 +170746186489,227,0 +170746186539,227,0 +170746186588,228,0 +170746186636,229,0 +170746186684,231,0 +170746186734,230,0 +170746186782,233,0 +170746186831,232,0 +170746186879,217,0 +170746186929,214,0 +170746186978,214,0 +170746187028,213,0 +170746187077,215,0 +170746187126,215,0 +170746187175,215,0 +170746187224,215,0 +170746187274,216,0 +170746187322,218,0 +170746187370,219,0 +170746187418,221,0 +170746187466,223,0 +170746187515,225,0 +170746187565,227,0 +170746187613,227,0 +170746187661,228,0 +170746187709,230,0 +170746187758,231,0 +170746187806,231,0 +170746187856,233,0 +170746187904,232,0 +170746187952,231,0 +170746188001,217,0 +170746188049,214,0 +170746188097,214,0 +170746188147,215,0 +170746188195,215,0 +170746188243,216,0 +170746188292,216,0 +170746188340,216,0 +170746188388,217,0 +170746188436,217,0 +170746188484,219,0 +170746188532,220,0 +170746188580,223,0 +170746188629,225,0 +170746188679,226,0 +170746188727,227,0 +170746188775,229,0 +170746188825,229,0 +170746188874,231,0 +170746188922,231,0 +170746188970,232,0 +170746189020,231,0 +170746189068,233,0 +170746189116,217,0 +170746189165,214,0 +170746189213,214,0 +170746189261,214,0 +170746189309,215,0 +170746189359,215,0 +170746189408,215,0 +170746189457,215,0 +170746189505,216,0 +170746189553,217,0 +170746189603,219,0 +170746189651,221,0 +170746189701,222,0 +170746189750,225,0 +170746189800,227,0 +170746189849,227,0 +170746189897,229,0 +170746189945,231,0 +170746189995,232,0 +170746190044,233,0 +170746190092,232,0 +170746190142,234,0 +170746190191,233,0 +170746190239,217,0 +170746190289,214,0 +170746190338,214,0 +170746190386,214,0 +170746190436,214,0 +170746190484,214,0 +170746190533,214,0 +170746190583,214,0 +170746190632,214,0 +170746190680,215,0 +170746190730,215,0 +170746190779,215,0 +170746190827,215,0 +170746190877,216,0 +170746190926,218,0 +170746190974,221,0 +170746191022,222,0 +170746191070,224,0 +170746191118,225,0 +170746191166,231,0 +170746191216,228,0 +170746191265,232,0 +170746191315,234,0 +170746191363,219,0 +170746191412,216,0 +170746191462,216,0 +170746191511,216,0 +170746191559,219,0 +170746191607,217,0 +170746191657,218,0 +170746191706,221,0 +170746191754,222,0 +170746191802,223,0 +170746191850,224,0 +170746191898,225,0 +170746191948,229,0 +170746191997,229,0 +170746192047,231,0 +170746192095,231,0 +170746192144,267,0 +170746192192,234,0 +170746192240,233,0 +170746192288,234,0 +170746192336,234,0 +170746192384,234,0 +170746192432,233,0 +170746192480,218,0 +170746192527,214,0 +170746192575,214,0 +170746192623,214,0 +170746192671,215,0 +170746192719,215,0 +170746192767,216,0 +170746192815,216,0 +170746192863,216,0 +170746192912,217,0 +170746192960,218,0 +170746193010,220,0 +170746193058,222,0 +170746193107,224,0 +170746193157,226,0 +170746193206,227,0 +170746193254,229,0 +170746193304,229,0 +170746193353,233,0 +170746193403,232,0 +170746193452,235,0 +170746193502,232,0 +170746193550,232,0 +170746193598,216,0 +170746193646,214,0 +170746193694,214,0 +170746193741,214,0 +170746193789,215,0 +170746193839,216,0 +170746193887,217,0 +170746193935,216,0 +170746193982,217,0 +170746194030,219,0 +170746194078,221,0 +170746194126,222,0 +170746194176,224,0 +170746194223,226,0 +170746194271,227,0 +170746194321,230,0 +170746194369,231,0 +170746194418,231,0 +170746194468,233,0 +170746194516,232,0 +170746194565,234,0 +170746194615,234,0 +170746194663,235,0 +170746194711,218,0 +170746194759,214,0 +170746194808,214,0 +170746194856,214,0 +170746194904,214,0 +170746194954,215,0 +170746195002,215,0 +170746195050,215,0 +170746195098,216,0 +170746195147,216,0 +170746195195,217,0 +170746195245,220,0 +170746195294,222,0 +170746195344,223,0 +170746195393,226,0 +170746195443,226,0 +170746195492,227,0 +170746195540,230,0 +170746195590,230,0 +170746195638,230,0 +170746195685,231,0 +170746195733,233,0 +170746195781,233,0 +170746195829,218,0 +170746195877,214,0 +170746195926,214,0 +170746195974,214,0 +170746196022,214,0 +170746196070,214,0 +170746196120,214,0 +170746196167,214,0 +170746196215,215,0 +170746196263,215,0 +170746196311,216,0 +170746196360,216,0 +170746196410,219,0 +170746196458,221,0 +170746196506,223,0 +170746196554,224,0 +170746196602,226,0 +170746196651,227,0 +170746196701,228,0 +170746196749,229,0 +170746196797,230,0 +170746196845,233,0 +170746196893,232,0 +170746196942,218,0 +170746196992,215,0 +170746197041,214,0 +170746197089,215,0 +170746197137,215,0 +170746197185,215,0 +170746197235,215,0 +170746197284,216,0 +170746197332,217,0 +170746197380,217,0 +170746197428,219,0 +170746197478,222,0 +170746197526,223,0 +170746197575,224,0 +170746197625,227,0 +170746197673,227,0 +170746197721,229,0 +170746197770,231,0 +170746197818,231,0 +170746197866,232,0 +170746197916,232,0 +170746197965,233,0 +170746198013,234,0 +170746198061,218,0 +170746198111,214,0 +170746198158,214,0 +170746198208,214,0 +170746198256,214,0 +170746198304,214,0 +170746198352,214,0 +170746198400,214,0 +170746198448,215,0 +170746198496,215,0 +170746198543,215,0 +170746198591,216,0 +170746198641,219,0 +170746198689,221,0 +170746198737,221,0 +170746198785,224,0 +170746198834,225,0 +170746198882,227,0 +170746198930,229,0 +170746198978,234,0 +170746199026,231,0 +170746199073,231,0 +170746199121,232,0 +170746199169,229,0 +170746199217,215,0 +170746199265,214,0 +170746199313,214,0 +170746199361,214,0 +170746199409,214,0 +170746199457,214,0 +170746199504,214,0 +170746199552,214,0 +170746199600,215,0 +170746199648,214,0 +170746199696,215,0 +170746199746,216,0 +170746199794,218,0 +170746199843,220,0 +170746199893,222,0 +170746199941,224,0 +170746199989,226,0 diff --git a/laser_value/0209-17.csv b/laser_value/0209-17.csv new file mode 100644 index 0000000..5acfcac --- /dev/null +++ b/laser_value/0209-17.csv @@ -0,0 +1,7421 @@ +timestamp,laser_value,event +170746200037,227,0 +170746200087,227,0 +170746200135,229,0 +170746200183,231,0 +170746200232,233,0 +170746200282,223,0 +170746200329,215,0 +170746200377,214,0 +170746200427,214,0 +170746200475,214,0 +170746200524,214,0 +170746200572,215,0 +170746200620,215,0 +170746200670,215,0 +170746200719,216,0 +170746200767,216,0 +170746200817,217,0 +170746200865,218,0 +170746200914,221,0 +170746200964,223,0 +170746201012,225,0 +170746201061,226,0 +170746201110,228,0 +170746201158,230,0 +170746201206,232,0 +170746201254,231,0 +170746201302,231,0 +170746201352,234,0 +170746201400,226,0 +170746201448,215,0 +170746201495,214,0 +170746201545,214,0 +170746201593,214,0 +170746201642,214,0 +170746201690,214,0 +170746201738,214,0 +170746201786,215,0 +170746201836,215,0 +170746201884,215,0 +170746201932,215,0 +170746201980,214,0 +170746202027,216,0 +170746202077,219,0 +170746202126,222,0 +170746202174,225,0 +170746202224,226,0 +170746202274,227,0 +170746202322,228,0 +170746202370,229,0 +170746202419,229,0 +170746202469,234,0 +170746202517,228,0 +170746202565,215,0 +170746202614,214,0 +170746202662,214,0 +170746202710,214,0 +170746202758,214,0 +170746202806,214,0 +170746202854,215,0 +170746202903,215,0 +170746202953,215,0 +170746203001,216,0 +170746203050,217,0 +170746203098,217,0 +170746203146,219,0 +170746203194,221,0 +170746203244,223,0 +170746203293,225,0 +170746203343,227,0 +170746203392,228,0 +170746203442,228,0 +170746203490,231,0 +170746203539,230,0 +170746203587,234,0 +170746203637,226,0 +170746203685,220,0 +170746203733,219,0 +170746203781,219,0 +170746203829,219,0 +170746203878,218,0 +170746203926,214,0 +170746203974,215,0 +170746204022,215,0 +170746204070,215,0 +170746204120,214,0 +170746204168,216,0 +170746204216,219,0 +170746204265,220,0 +170746204315,222,0 +170746204363,224,0 +170746204411,226,0 +170746204459,228,0 +170746204508,229,0 +170746204556,230,0 +170746204604,230,0 +170746204652,229,0 +170746204700,234,0 +170746204748,233,0 +170746204795,215,0 +170746204843,214,0 +170746204891,214,0 +170746204939,214,0 +170746204989,215,0 +170746205037,215,0 +170746205086,215,0 +170746205134,216,0 +170746205183,216,0 +170746205233,217,0 +170746205282,219,0 +170746205330,221,0 +170746205378,223,0 +170746205428,225,0 +170746205478,228,0 +170746205525,227,0 +170746205573,229,0 +170746205621,230,0 +170746205669,231,0 +170746205719,232,0 +170746205767,232,0 +170746205815,233,0 +170746205864,232,0 +170746205914,216,0 +170746205963,214,0 +170746206013,214,0 +170746206062,214,0 +170746206112,214,0 +170746206161,214,0 +170746206211,215,0 +170746206259,215,0 +170746206307,215,0 +170746206355,216,0 +170746206403,216,0 +170746206452,217,0 +170746206500,219,0 +170746206548,222,0 +170746206598,224,0 +170746206646,224,0 +170746206694,228,0 +170746206743,228,0 +170746206791,229,0 +170746206839,230,0 +170746206888,229,0 +170746206938,232,0 +170746206986,233,0 +170746207034,216,0 +170746207082,214,0 +170746207130,214,0 +170746207179,215,0 +170746207227,219,0 +170746207277,215,0 +170746207325,216,0 +170746207373,216,0 +170746207422,216,0 +170746207472,217,0 +170746207520,219,0 +170746207569,220,0 +170746207617,222,0 +170746207667,224,0 +170746207716,225,0 +170746207766,227,0 +170746207815,228,0 +170746207863,229,0 +170746207911,230,0 +170746207959,231,0 +170746208006,231,0 +170746208054,234,0 +170746208102,233,0 +170746208150,217,0 +170746208198,214,0 +170746208246,214,0 +170746208294,214,0 +170746208343,214,0 +170746208391,214,0 +170746208439,214,0 +170746208487,214,0 +170746208535,214,0 +170746208583,214,0 +170746208631,214,0 +170746208679,215,0 +170746208726,215,0 +170746208774,215,0 +170746208822,218,0 +170746208870,220,0 +170746208918,222,0 +170746208968,224,0 +170746209016,227,0 +170746209064,225,0 +170746209111,227,0 +170746209159,231,0 +170746209207,234,0 +170746209255,219,0 +170746209303,215,0 +170746209351,215,0 +170746209399,215,0 +170746209449,215,0 +170746209498,215,0 +170746209546,214,0 +170746209596,215,0 +170746209645,215,0 +170746209695,216,0 +170746209744,217,0 +170746209792,217,0 +170746209840,219,0 +170746209890,220,0 +170746209938,222,0 +170746209986,224,0 +170746210035,226,0 +170746210085,226,0 +170746210133,230,0 +170746210182,229,0 +170746210232,233,0 +170746210280,235,0 +170746210328,233,0 +170746210377,218,0 +170746210427,214,0 +170746210475,214,0 +170746210524,214,0 +170746210574,214,0 +170746210623,214,0 +170746210671,214,0 +170746210719,214,0 +170746210767,214,0 +170746210815,215,0 +170746210863,215,0 +170746210910,215,0 +170746210958,216,0 +170746211006,217,0 +170746211056,219,0 +170746211104,221,0 +170746211151,223,0 +170746211199,224,0 +170746211249,227,0 +170746211297,227,0 +170746211345,229,0 +170746211393,231,0 +170746211441,233,0 +170746211490,219,0 +170746211538,215,0 +170746211586,215,0 +170746211636,215,0 +170746211685,215,0 +170746211733,215,0 +170746211781,215,0 +170746211829,215,0 +170746211877,216,0 +170746211925,216,0 +170746211975,217,0 +170746212023,218,0 +170746212071,219,0 +170746212119,222,0 +170746212167,224,0 +170746212214,226,0 +170746212262,226,0 +170746212310,228,0 +170746212358,231,0 +170746212408,231,0 +170746212457,231,0 +170746212507,234,0 +170746212555,233,0 +170746212604,219,0 +170746212652,214,0 +170746212702,214,0 +170746212751,214,0 +170746212799,215,0 +170746212849,216,0 +170746212898,215,0 +170746212948,216,0 +170746212997,216,0 +170746213047,217,0 +170746213096,217,0 +170746213146,218,0 +170746213196,219,0 +170746213244,221,0 +170746213292,224,0 +170746213341,224,0 +170746213391,226,0 +170746213439,240,0 +170746213488,229,0 +170746213538,229,0 +170746213586,231,0 +170746213635,232,0 +170746213683,233,0 +170746213731,222,0 +170746213779,217,0 +170746213827,217,0 +170746213875,217,0 +170746213924,215,0 +170746213974,215,0 +170746214023,215,0 +170746214071,216,0 +170746214119,216,0 +170746214167,217,0 +170746214217,218,0 +170746214265,220,0 +170746214312,221,0 +170746214360,223,0 +170746214408,225,0 +170746214458,228,0 +170746214507,230,0 +170746214557,231,0 +170746214605,232,0 +170746214653,231,0 +170746214702,233,0 +170746214752,233,0 +170746214800,234,0 +170746214849,219,0 +170746214899,214,0 +170746214947,214,0 +170746214995,214,0 +170746215043,213,0 +170746215091,214,0 +170746215138,214,0 +170746215188,214,0 +170746215237,214,0 +170746215285,214,0 +170746215333,214,0 +170746215381,214,0 +170746215429,214,0 +170746215477,214,0 +170746215525,215,0 +170746215573,216,0 +170746215621,218,0 +170746215668,220,0 +170746215716,222,0 +170746215764,223,0 +170746215812,224,0 +170746215860,231,0 +170746215908,232,0 +170746215956,218,0 +170746216004,214,0 +170746216053,214,0 +170746216101,217,0 +170746216149,215,0 +170746216197,216,0 +170746216247,216,0 +170746216295,216,0 +170746216344,217,0 +170746216392,218,0 +170746216440,220,0 +170746216488,220,0 +170746216538,224,0 +170746216585,223,0 +170746216635,226,0 +170746216684,227,0 +170746216732,229,0 +170746216780,229,0 +170746216828,230,0 +170746216876,231,0 +170746216924,232,0 +170746216974,232,0 +170746217022,233,0 +170746217070,217,0 +170746217118,214,0 +170746217166,214,0 +170746217214,214,0 +170746217261,214,0 +170746217309,214,0 +170746217357,214,0 +170746217407,214,0 +170746217455,214,0 +170746217503,214,0 +170746217551,214,0 +170746217598,214,0 +170746217646,214,0 +170746217694,215,0 +170746217744,215,0 +170746217793,216,0 +170746217843,218,0 +170746217891,220,0 +170746217939,223,0 +170746217987,224,0 +170746218035,226,0 +170746218083,228,0 +170746218132,233,0 +170746218180,226,0 +170746218230,215,0 +170746218278,214,0 +170746218327,214,0 +170746218375,214,0 +170746218423,214,0 +170746218471,215,0 +170746218519,215,0 +170746218567,217,0 +170746218617,216,0 +170746218666,218,0 +170746218714,219,0 +170746218762,221,0 +170746218810,221,0 +170746218858,222,0 +170746218906,227,0 +170746218955,225,0 +170746219003,228,0 +170746219053,230,0 +170746219102,228,0 +170746219150,232,0 +170746219198,231,0 +170746219246,233,0 +170746219294,231,0 +170746219342,215,0 +170746219392,215,0 +170746219440,214,0 +170746219487,214,0 +170746219537,214,0 +170746219585,214,0 +170746219633,214,0 +170746219681,214,0 +170746219730,215,0 +170746219778,215,0 +170746219826,215,0 +170746219876,216,0 +170746219924,218,0 +170746219972,219,0 +170746220020,221,0 +170746220068,223,0 +170746220116,224,0 +170746220164,226,0 +170746220213,226,0 +170746220261,229,0 +170746220309,238,0 +170746220359,233,0 +170746220407,240,0 +170746220456,216,0 +170746220505,214,0 +170746220553,214,0 +170746220603,214,0 +170746220651,214,0 +170746220699,214,0 +170746220748,214,0 +170746220798,214,0 +170746220846,214,0 +170746220894,214,0 +170746220942,214,0 +170746220991,214,0 +170746221041,215,0 +170746221089,216,0 +170746221137,216,0 +170746221185,218,0 +170746221233,220,0 +170746221281,222,0 +170746221329,223,0 +170746221377,226,0 +170746221425,231,0 +170746221474,232,0 +170746221522,232,0 +170746221570,218,0 +170746221618,215,0 +170746221666,214,0 +170746221716,214,0 +170746221764,215,0 +170746221812,215,0 +170746221860,215,0 +170746221908,216,0 +170746221957,216,0 +170746222005,217,0 +170746222053,217,0 +170746222101,220,0 +170746222151,221,0 +170746222199,224,0 +170746222247,225,0 +170746222296,228,0 +170746222346,236,0 +170746222393,231,0 +170746222443,232,0 +170746222491,233,0 +170746222539,234,0 +170746222587,233,0 +170746222636,235,0 +170746222686,218,0 +170746222735,214,0 +170746222785,214,0 +170746222834,214,0 +170746222884,214,0 +170746222933,213,0 +170746222983,214,0 +170746223033,214,0 +170746223080,214,0 +170746223128,214,0 +170746223178,215,0 +170746223226,215,0 +170746223274,216,0 +170746223322,219,0 +170746223371,223,0 +170746223419,223,0 +170746223469,224,0 +170746223518,225,0 +170746223566,228,0 +170746223614,230,0 +170746223662,228,0 +170746223712,233,0 +170746223760,234,0 +170746223808,219,0 +170746223856,216,0 +170746223904,216,0 +170746223953,216,0 +170746224001,216,0 +170746224051,217,0 +170746224099,217,0 +170746224148,218,0 +170746224198,217,0 +170746224246,216,0 +170746224294,220,0 +170746224343,224,0 +170746224391,225,0 +170746224441,227,0 +170746224490,229,0 +170746224540,231,0 +170746224588,229,0 +170746224636,232,0 +170746224684,234,0 +170746224733,233,0 +170746224783,237,0 +170746224832,234,0 +170746224882,233,0 +170746224931,217,0 +170746224979,214,0 +170746225027,215,0 +170746225075,215,0 +170746225123,216,0 +170746225171,216,0 +170746225219,216,0 +170746225269,217,0 +170746225318,218,0 +170746225366,219,0 +170746225414,220,0 +170746225462,221,0 +170746225512,226,0 +170746225561,226,0 +170746225611,228,0 +170746225659,230,0 +170746225707,230,0 +170746225755,231,0 +170746225804,233,0 +170746225854,234,0 +170746225901,232,0 +170746225951,235,0 +170746226000,236,0 +170746226050,217,0 +170746226099,214,0 +170746226149,215,0 +170746226197,215,0 +170746226246,216,0 +170746226296,216,0 +170746226346,216,0 +170746226393,216,0 +170746226443,218,0 +170746226491,219,0 +170746226539,219,0 +170746226587,221,0 +170746226636,224,0 +170746226684,227,0 +170746226732,228,0 +170746226780,226,0 +170746226828,231,0 +170746226878,229,0 +170746226927,232,0 +170746226975,231,0 +170746227025,229,0 +170746227073,232,0 +170746227121,231,0 +170746227169,216,0 +170746227218,215,0 +170746227266,215,0 +170746227314,215,0 +170746227362,214,0 +170746227411,215,0 +170746227459,214,0 +170746227507,215,0 +170746227555,214,0 +170746227605,214,0 +170746227653,215,0 +170746227701,216,0 +170746227749,215,0 +170746227798,216,0 +170746227848,218,0 +170746227897,221,0 +170746227947,223,0 +170746227995,226,0 +170746228043,226,0 +170746228092,228,0 +170746228142,230,0 +170746228190,233,0 +170746228238,231,0 +170746228287,217,0 +170746228335,214,0 +170746228383,215,0 +170746228431,214,0 +170746228481,214,0 +170746228529,214,0 +170746228578,215,0 +170746228626,215,0 +170746228676,215,0 +170746228725,216,0 +170746228773,217,0 +170746228822,217,0 +170746228870,229,0 +170746228920,220,0 +170746228968,222,0 +170746229016,225,0 +170746229065,227,0 +170746229113,227,0 +170746229163,229,0 +170746229211,229,0 +170746229260,229,0 +170746229310,233,0 +170746229358,233,0 +170746229406,216,0 +170746229454,214,0 +170746229503,214,0 +170746229551,214,0 +170746229599,214,0 +170746229647,214,0 +170746229695,214,0 +170746229745,215,0 +170746229792,215,0 +170746229840,215,0 +170746229888,216,0 +170746229936,216,0 +170746229986,216,0 +170746230034,220,0 +170746230083,221,0 +170746230131,222,0 +170746230181,224,0 +170746230230,227,0 +170746230278,228,0 +170746230328,228,0 +170746230376,230,0 +170746230424,231,0 +170746230472,232,0 +170746230520,217,0 +170746230567,214,0 +170746230615,214,0 +170746230663,215,0 +170746230711,215,0 +170746230761,216,0 +170746230808,216,0 +170746230856,217,0 +170746230904,217,0 +170746230952,219,0 +170746231000,220,0 +170746231048,222,0 +170746231096,224,0 +170746231145,225,0 +170746231193,226,0 +170746231241,227,0 +170746231289,229,0 +170746231337,231,0 +170746231385,232,0 +170746231434,232,0 +170746231482,235,0 +170746231530,233,0 +170746231578,232,0 +170746231628,219,0 +170746231676,214,0 +170746231725,214,0 +170746231773,214,0 +170746231821,214,0 +170746231869,214,0 +170746231917,214,0 +170746231967,214,0 +170746232015,215,0 +170746232063,215,0 +170746232110,216,0 +170746232158,219,0 +170746232206,221,0 +170746232254,222,0 +170746232304,224,0 +170746232353,226,0 +170746232401,227,0 +170746232449,230,0 +170746232499,230,0 +170746232547,232,0 +170746232596,232,0 +170746232644,233,0 +170746232692,232,0 +170746232742,219,0 +170746232791,215,0 +170746232841,215,0 +170746232889,214,0 +170746232938,214,0 +170746232986,215,0 +170746233034,214,0 +170746233082,214,0 +170746233132,215,0 +170746233181,214,0 +170746233229,215,0 +170746233277,215,0 +170746233325,215,0 +170746233373,216,0 +170746233423,216,0 +170746233472,217,0 +170746233522,220,0 +170746233570,221,0 +170746233619,223,0 +170746233667,224,0 +170746233717,225,0 +170746233765,228,0 +170746233814,230,0 +170746233862,229,0 +170746233910,231,0 +170746233958,232,0 +170746234006,232,0 +170746234055,235,0 +170746234105,234,0 +170746234153,235,0 +170746234203,234,0 +170746234250,234,0 +170746234300,235,0 +170746234350,234,0 +170746234397,218,0 +170746234445,214,0 +170746234493,215,0 +170746234543,216,0 +170746234591,216,0 +170746234640,217,0 +170746234688,219,0 +170746234736,222,0 +170746234784,224,0 +170746234834,225,0 +170746234882,228,0 +170746234930,229,0 +170746234979,230,0 +170746235029,233,0 +170746235077,233,0 +170746235125,239,0 +170746235174,236,0 +170746235222,236,0 +170746235270,235,0 +170746235320,233,0 +170746235369,217,0 +170746235417,215,0 +170746235465,216,0 +170746235513,216,0 +170746235563,217,0 +170746235610,219,0 +170746235658,220,0 +170746235706,223,0 +170746235756,225,0 +170746235805,226,0 +170746235855,228,0 +170746235903,229,0 +170746235951,233,0 +170746236000,232,0 +170746236048,234,0 +170746236096,234,0 +170746236144,234,0 +170746236192,237,0 +170746236240,233,0 +170746236288,215,0 +170746236336,214,0 +170746236386,214,0 +170746236435,215,0 +170746236485,215,0 +170746236533,216,0 +170746236582,216,0 +170746236630,219,0 +170746236678,220,0 +170746236726,223,0 +170746236774,224,0 +170746236823,227,0 +170746236871,229,0 +170746236919,230,0 +170746236967,257,0 +170746237015,233,0 +170746237063,234,0 +170746237113,232,0 +170746237161,217,0 +170746237208,214,0 +170746237258,215,0 +170746237306,215,0 +170746237354,215,0 +170746237402,216,0 +170746237450,216,0 +170746237498,218,0 +170746237547,220,0 +170746237595,223,0 +170746237643,225,0 +170746237693,226,0 +170746237742,229,0 +170746237790,229,0 +170746237838,234,0 +170746237886,234,0 +170746237934,236,0 +170746237984,233,0 +170746238032,218,0 +170746238081,214,0 +170746238131,214,0 +170746238180,215,0 +170746238228,215,0 +170746238278,215,0 +170746238326,217,0 +170746238374,219,0 +170746238422,220,0 +170746238471,223,0 +170746238519,224,0 +170746238569,225,0 +170746238618,228,0 +170746238666,230,0 +170746238714,230,0 +170746238762,232,0 +170746238810,234,0 +170746238858,233,0 +170746238906,231,0 +170746238954,215,0 +170746239002,214,0 +170746239050,214,0 +170746239098,214,0 +170746239146,215,0 +170746239196,215,0 +170746239244,218,0 +170746239292,219,0 +170746239340,221,0 +170746239387,226,0 +170746239435,226,0 +170746239485,228,0 +170746239534,229,0 +170746239582,231,0 +170746239630,233,0 +170746239678,234,0 +170746239726,232,0 +170746239774,236,0 +170746239822,221,0 +170746239870,218,0 +170746239918,218,0 +170746239965,218,0 +170746240013,215,0 +170746240061,215,0 +170746240111,216,0 +170746240159,217,0 +170746240207,220,0 +170746240256,223,0 +170746240304,226,0 +170746240352,226,0 +170746240400,229,0 +170746240448,232,0 +170746240497,232,0 +170746240545,232,0 +170746240595,230,0 +170746240644,232,0 +170746240694,218,0 +170746240742,214,0 +170746240791,214,0 +170746240839,214,0 +170746240887,215,0 +170746240935,215,0 +170746240983,216,0 +170746241031,216,0 +170746241079,219,0 +170746241127,220,0 +170746241175,223,0 +170746241223,223,0 +170746241271,228,0 +170746241319,229,0 +170746241368,230,0 +170746241416,230,0 +170746241466,231,0 +170746241514,232,0 +170746241562,232,0 +170746241609,215,0 +170746241657,215,0 +170746241705,215,0 +170746241753,216,0 +170746241801,216,0 +170746241849,219,0 +170746241897,220,0 +170746241945,223,0 +170746241994,225,0 +170746242044,226,0 +170746242092,228,0 +170746242140,234,0 +170746242189,233,0 +170746242239,227,0 +170746242288,235,0 +170746242336,235,0 +170746242384,234,0 +170746242432,233,0 +170746242482,215,0 +170746242531,214,0 +170746242579,215,0 +170746242629,215,0 +170746242677,216,0 +170746242725,217,0 +170746242774,218,0 +170746242822,220,0 +170746242870,223,0 +170746242918,225,0 +170746242967,228,0 +170746243015,229,0 +170746243063,231,0 +170746243111,231,0 +170746243159,233,0 +170746243207,236,0 +170746243255,230,0 +170746243303,233,0 +170746243351,218,0 +170746243399,214,0 +170746243448,215,0 +170746243498,215,0 +170746243546,216,0 +170746243595,216,0 +170746243645,217,0 +170746243693,219,0 +170746243742,223,0 +170746243792,224,0 +170746243840,226,0 +170746243888,228,0 +170746243937,231,0 +170746243985,229,0 +170746244035,231,0 +170746244083,233,0 +170746244131,233,0 +170746244180,235,0 +170746244230,218,0 +170746244279,215,0 +170746244327,214,0 +170746244375,215,0 +170746244425,216,0 +170746244473,216,0 +170746244522,216,0 +170746244570,219,0 +170746244618,221,0 +170746244666,224,0 +170746244714,226,0 +170746244763,230,0 +170746244811,230,0 +170746244859,230,0 +170746244909,234,0 +170746244957,232,0 +170746245005,234,0 +170746245054,232,0 +170746245102,233,0 +170746245152,215,0 +170746245201,215,0 +170746245249,215,0 +170746245297,215,0 +170746245345,216,0 +170746245393,217,0 +170746245441,220,0 +170746245489,223,0 +170746245537,225,0 +170746245585,226,0 +170746245633,228,0 +170746245681,231,0 +170746245729,232,0 +170746245778,233,0 +170746245828,233,0 +170746245876,236,0 +170746245924,233,0 +170746245972,234,0 +170746246020,217,0 +170746246068,215,0 +170746246116,216,0 +170746246164,216,0 +170746246213,217,0 +170746246263,218,0 +170746246311,219,0 +170746246360,224,0 +170746246410,223,0 +170746246457,226,0 +170746246505,229,0 +170746246555,229,0 +170746246604,231,0 +170746246654,233,0 +170746246703,233,0 +170746246753,235,0 +170746246801,232,0 +170746246849,233,0 +170746246897,219,0 +170746246946,216,0 +170746246994,216,0 +170746247042,216,0 +170746247092,218,0 +170746247141,218,0 +170746247191,221,0 +170746247238,223,0 +170746247286,231,0 +170746247336,230,0 +170746247384,230,0 +170746247432,230,0 +170746247481,233,0 +170746247531,232,0 +170746247581,233,0 +170746247628,233,0 +170746247676,233,0 +170746247724,233,0 +170746247772,218,0 +170746247820,216,0 +170746247868,216,0 +170746247916,217,0 +170746247964,218,0 +170746248014,220,0 +170746248062,222,0 +170746248110,224,0 +170746248158,226,0 +170746248206,226,0 +170746248255,230,0 +170746248303,231,0 +170746248351,234,0 +170746248399,233,0 +170746248447,235,0 +170746248495,231,0 +170746248543,234,0 +170746248591,235,0 +170746248639,232,0 +170746248687,216,0 +170746248736,216,0 +170746248786,216,0 +170746248834,217,0 +170746248882,217,0 +170746248930,219,0 +170746248978,221,0 +170746249026,222,0 +170746249074,225,0 +170746249123,228,0 +170746249173,228,0 +170746249221,232,0 +170746249269,232,0 +170746249316,233,0 +170746249364,234,0 +170746249412,234,0 +170746249462,234,0 +170746249510,233,0 +170746249558,219,0 +170746249606,216,0 +170746249654,216,0 +170746249702,216,0 +170746249750,217,0 +170746249799,219,0 +170746249847,221,0 +170746249897,223,0 +170746249946,226,0 +170746249996,229,0 +170746250045,229,0 +170746250093,228,0 +170746250141,232,0 +170746250189,234,0 +170746250237,232,0 +170746250286,235,0 +170746250336,234,0 +170746250384,235,0 +170746250433,219,0 +170746250483,216,0 +170746250531,218,0 +170746250579,216,0 +170746250627,218,0 +170746250676,218,0 +170746250724,220,0 +170746250774,222,0 +170746250822,224,0 +170746250870,226,0 +170746250919,227,0 +170746250967,229,0 +170746251017,232,0 +170746251066,234,0 +170746251116,234,0 +170746251164,235,0 +170746251212,236,0 +170746251261,234,0 +170746251311,232,0 +170746251360,215,0 +170746251408,215,0 +170746251456,216,0 +170746251506,216,0 +170746251555,217,0 +170746251603,219,0 +170746251651,220,0 +170746251699,223,0 +170746251747,224,0 +170746251796,227,0 +170746251844,229,0 +170746251892,230,0 +170746251940,231,0 +170746251988,234,0 +170746252036,233,0 +170746252084,234,0 +170746252132,234,0 +170746252182,233,0 +170746252230,217,0 +170746252279,215,0 +170746252329,217,0 +170746252378,219,0 +170746252426,221,0 +170746252474,223,0 +170746252524,224,0 +170746252572,229,0 +170746252621,229,0 +170746252671,231,0 +170746252720,231,0 +170746252768,233,0 +170746252818,234,0 +170746252866,233,0 +170746252915,234,0 +170746252963,240,0 +170746253011,232,0 +170746253061,232,0 +170746253110,219,0 +170746253158,219,0 +170746253208,222,0 +170746253256,223,0 +170746253304,226,0 +170746253352,227,0 +170746253400,229,0 +170746253448,229,0 +170746253495,231,0 +170746253545,234,0 +170746253593,236,0 +170746253641,235,0 +170746253689,235,0 +170746253737,236,0 +170746253786,234,0 +170746253836,239,0 +170746253886,235,0 +170746253934,233,0 +170746253983,224,0 +170746254033,223,0 +170746254080,225,0 +170746254128,226,0 +170746254176,229,0 +170746254226,231,0 +170746254274,230,0 +170746254324,232,0 +170746254372,234,0 +170746254420,233,0 +170746254469,233,0 +170746254518,237,0 +170746254566,236,0 +170746254614,235,0 +170746254662,235,0 +170746254712,235,0 +170746254760,235,0 +170746254808,233,0 +170746254857,224,0 +170746254905,218,0 +170746254953,220,0 +170746255003,223,0 +170746255052,224,0 +170746255102,227,0 +170746255151,229,0 +170746255201,229,0 +170746255249,229,0 +170746255298,232,0 +170746255346,235,0 +170746255396,234,0 +170746255445,232,0 +170746255493,234,0 +170746255543,236,0 +170746255592,238,0 +170746255640,234,0 +170746255688,234,0 +170746255738,231,0 +170746255786,216,0 +170746255835,216,0 +170746255883,217,0 +170746255931,219,0 +170746255979,222,0 +170746256029,224,0 +170746256078,225,0 +170746256126,228,0 +170746256176,227,0 +170746256225,230,0 +170746256273,231,0 +170746256323,232,0 +170746256371,231,0 +170746256420,224,0 +170746256468,234,0 +170746256518,233,0 +170746256567,233,0 +170746256615,231,0 +170746256665,217,0 +170746256713,217,0 +170746256761,220,0 +170746256810,223,0 +170746256858,224,0 +170746256906,227,0 +170746256954,227,0 +170746257002,229,0 +170746257051,230,0 +170746257101,232,0 +170746257150,232,0 +170746257200,234,0 +170746257249,234,0 +170746257297,236,0 +170746257347,234,0 +170746257396,233,0 +170746257446,235,0 +170746257496,232,0 +170746257543,218,0 +170746257591,216,0 +170746257639,218,0 +170746257687,220,0 +170746257735,222,0 +170746257783,223,0 +170746257831,226,0 +170746257879,227,0 +170746257927,228,0 +170746257975,230,0 +170746258022,231,0 +170746258070,233,0 +170746258118,234,0 +170746258166,235,0 +170746258214,236,0 +170746258263,234,0 +170746258311,234,0 +170746258359,232,0 +170746258407,217,0 +170746258455,217,0 +170746258503,219,0 +170746258551,221,0 +170746258600,223,0 +170746258650,226,0 +170746258699,227,0 +170746258749,229,0 +170746258797,228,0 +170746258844,229,0 +170746258892,232,0 +170746258940,232,0 +170746258988,234,0 +170746259036,235,0 +170746259084,235,0 +170746259132,236,0 +170746259180,234,0 +170746259228,235,0 +170746259276,231,0 +170746259323,217,0 +170746259371,218,0 +170746259421,219,0 +170746259469,222,0 +170746259517,226,0 +170746259564,225,0 +170746259612,227,0 +170746259660,228,0 +170746259710,231,0 +170746259759,235,0 +170746259807,234,0 +170746259855,234,0 +170746259905,236,0 +170746259954,236,0 +170746260002,236,0 +170746260050,236,0 +170746260098,233,0 +170746260147,232,0 +170746260197,217,0 +170746260245,215,0 +170746260294,217,0 +170746260344,218,0 +170746260393,221,0 +170746260441,223,0 +170746260489,224,0 +170746260537,231,0 +170746260587,228,0 +170746260635,228,0 +170746260683,233,0 +170746260731,229,0 +170746260779,233,0 +170746260828,235,0 +170746260876,236,0 +170746260926,235,0 +170746260974,233,0 +170746261021,232,0 +170746261069,218,0 +170746261117,215,0 +170746261167,215,0 +170746261216,216,0 +170746261264,217,0 +170746261312,218,0 +170746261361,221,0 +170746261409,223,0 +170746261457,224,0 +170746261507,227,0 +170746261555,229,0 +170746261602,232,0 +170746261650,233,0 +170746261698,231,0 +170746261746,234,0 +170746261794,234,0 +170746261842,235,0 +170746261890,234,0 +170746261938,235,0 +170746261987,217,0 +170746262035,218,0 +170746262083,220,0 +170746262131,223,0 +170746262178,225,0 +170746262226,226,0 +170746262274,229,0 +170746262322,231,0 +170746262370,231,0 +170746262418,233,0 +170746262466,234,0 +170746262514,233,0 +170746262562,234,0 +170746262611,233,0 +170746262661,234,0 +170746262710,233,0 +170746262760,233,0 +170746262809,234,0 +170746262857,218,0 +170746262907,216,0 +170746262955,218,0 +170746263003,220,0 +170746263051,221,0 +170746263099,225,0 +170746263147,225,0 +170746263195,229,0 +170746263243,229,0 +170746263292,231,0 +170746263342,232,0 +170746263390,237,0 +170746263438,234,0 +170746263487,234,0 +170746263535,234,0 +170746263583,235,0 +170746263631,235,0 +170746263679,232,0 +170746263728,219,0 +170746263776,217,0 +170746263826,219,0 +170746263874,220,0 +170746263921,223,0 +170746263971,225,0 +170746264019,228,0 +170746264067,228,0 +170746264115,230,0 +170746264162,230,0 +170746264210,233,0 +170746264258,233,0 +170746264308,234,0 +170746264357,232,0 +170746264407,233,0 +170746264455,234,0 +170746264504,235,0 +170746264552,233,0 +170746264600,232,0 +170746264648,217,0 +170746264697,218,0 +170746264745,221,0 +170746264795,225,0 +170746264843,225,0 +170746264890,226,0 +170746264938,228,0 +170746264988,229,0 +170746265037,233,0 +170746265085,232,0 +170746265133,235,0 +170746265182,233,0 +170746265232,233,0 +170746265281,235,0 +170746265329,234,0 +170746265377,233,0 +170746265427,234,0 +170746265474,233,0 +170746265522,218,0 +170746265572,220,0 +170746265621,217,0 +170746265669,223,0 +170746265717,226,0 +170746265765,227,0 +170746265815,228,0 +170746265862,230,0 +170746265910,231,0 +170746265960,233,0 +170746266009,227,0 +170746266059,234,0 +170746266109,234,0 +170746266157,233,0 +170746266204,235,0 +170746266252,234,0 +170746266300,233,0 +170746266350,233,0 +170746266399,219,0 +170746266447,220,0 +170746266495,222,0 +170746266543,225,0 +170746266593,225,0 +170746266642,227,0 +170746266690,227,0 +170746266740,230,0 +170746266788,231,0 +170746266836,233,0 +170746266884,232,0 +170746266932,234,0 +170746266980,234,0 +170746267028,229,0 +170746267076,232,0 +170746267124,234,0 +170746267173,233,0 +170746267221,232,0 +170746267271,220,0 +170746267318,219,0 +170746267366,222,0 +170746267416,225,0 +170746267466,226,0 +170746267515,227,0 +170746267564,227,0 +170746267614,229,0 +170746267662,231,0 +170746267710,232,0 +170746267758,233,0 +170746267806,234,0 +170746267854,235,0 +170746267902,235,0 +170746267949,236,0 +170746267997,235,0 +170746268045,234,0 +170746268093,233,0 +170746268141,234,0 +170746268189,219,0 +170746268237,222,0 +170746268285,224,0 +170746268334,226,0 +170746268382,228,0 +170746268430,229,0 +170746268477,229,0 +170746268525,233,0 +170746268573,234,0 +170746268621,235,0 +170746268669,236,0 +170746268717,237,0 +170746268765,235,0 +170746268812,234,0 +170746268860,234,0 +170746268908,233,0 +170746268956,233,0 +170746269004,234,0 +170746269052,221,0 +170746269101,222,0 +170746269149,225,0 +170746269197,225,0 +170746269247,229,0 +170746269295,229,0 +170746269344,230,0 +170746269394,229,0 +170746269443,231,0 +170746269491,234,0 +170746269539,233,0 +170746269587,234,0 +170746269635,234,0 +170746269683,234,0 +170746269732,236,0 +170746269782,233,0 +170746269831,234,0 +170746269881,232,0 +170746269929,228,0 +170746269978,229,0 +170746270026,231,0 +170746270076,231,0 +170746270124,233,0 +170746270174,232,0 +170746270221,233,0 +170746270269,234,0 +170746270319,235,0 +170746270368,234,0 +170746270418,236,0 +170746270467,237,0 +170746270517,235,0 +170746270565,236,0 +170746270615,236,0 +170746270662,233,0 +170746270710,234,0 +170746270758,234,0 +170746270808,227,0 +170746270856,229,0 +170746270905,231,0 +170746270953,231,0 +170746271003,231,0 +170746271051,233,0 +170746271100,235,0 +170746271150,233,0 +170746271198,236,0 +170746271246,234,0 +170746271294,235,0 +170746271343,234,0 +170746271391,234,0 +170746271439,234,0 +170746271489,235,0 +170746271537,233,0 +170746271586,233,0 +170746271634,233,0 +170746271682,222,0 +170746271730,222,0 +170746271780,224,0 +170746271828,229,0 +170746271876,229,0 +170746271925,229,0 +170746271973,229,0 +170746272021,231,0 +170746272069,233,0 +170746272117,232,0 +170746272165,234,0 +170746272214,233,0 +170746272264,234,0 +170746272312,235,0 +170746272360,234,0 +170746272409,234,0 +170746272459,232,0 +170746272508,232,0 +170746272556,231,0 +170746272606,219,0 +170746272655,221,0 +170746272703,223,0 +170746272753,225,0 +170746272802,226,0 +170746272850,228,0 +170746272898,229,0 +170746272948,233,0 +170746272996,232,0 +170746273044,231,0 +170746273093,232,0 +170746273143,233,0 +170746273191,238,0 +170746273240,235,0 +170746273290,236,0 +170746273338,236,0 +170746273387,232,0 +170746273435,232,0 +170746273483,217,0 +170746273533,217,0 +170746273581,218,0 +170746273630,221,0 +170746273680,223,0 +170746273728,225,0 +170746273776,229,0 +170746273824,228,0 +170746273872,228,0 +170746273920,230,0 +170746273968,231,0 +170746274015,231,0 +170746274065,234,0 +170746274113,232,0 +170746274161,233,0 +170746274209,235,0 +170746274257,235,0 +170746274305,232,0 +170746274353,219,0 +170746274401,216,0 +170746274449,218,0 +170746274497,220,0 +170746274546,222,0 +170746274596,225,0 +170746274644,224,0 +170746274692,228,0 +170746274740,227,0 +170746274789,246,0 +170746274837,230,0 +170746274885,232,0 +170746274933,233,0 +170746274982,235,0 +170746275030,234,0 +170746275078,235,0 +170746275128,234,0 +170746275176,233,0 +170746275224,231,0 +170746275272,215,0 +170746275320,216,0 +170746275369,216,0 +170746275419,220,0 +170746275468,221,0 +170746275516,224,0 +170746275564,226,0 +170746275612,226,0 +170746275660,228,0 +170746275708,230,0 +170746275758,229,0 +170746275805,231,0 +170746275853,232,0 +170746275901,234,0 +170746275951,233,0 +170746275998,234,0 +170746276046,236,0 +170746276094,230,0 +170746276142,217,0 +170746276190,216,0 +170746276238,218,0 +170746276288,220,0 +170746276335,223,0 +170746276383,223,0 +170746276431,225,0 +170746276479,227,0 +170746276527,228,0 +170746276575,230,0 +170746276623,231,0 +170746276671,233,0 +170746276718,233,0 +170746276768,233,0 +170746276817,234,0 +170746276865,233,0 +170746276913,233,0 +170746276961,232,0 +170746277011,219,0 +170746277060,217,0 +170746277108,218,0 +170746277158,220,0 +170746277206,222,0 +170746277254,225,0 +170746277302,226,0 +170746277351,228,0 +170746277401,228,0 +170746277450,230,0 +170746277500,232,0 +170746277548,231,0 +170746277596,234,0 +170746277645,234,0 +170746277693,236,0 +170746277743,234,0 +170746277791,233,0 +170746277839,231,0 +170746277888,218,0 +170746277936,216,0 +170746277984,217,0 +170746278032,220,0 +170746278081,221,0 +170746278129,224,0 +170746278179,226,0 +170746278228,226,0 +170746278276,227,0 +170746278324,229,0 +170746278372,231,0 +170746278422,234,0 +170746278470,237,0 +170746278517,233,0 +170746278567,234,0 +170746278616,235,0 +170746278664,234,0 +170746278712,231,0 +170746278762,231,0 +170746278810,215,0 +170746278858,215,0 +170746278906,216,0 +170746278955,217,0 +170746279003,221,0 +170746279053,221,0 +170746279102,225,0 +170746279152,223,0 +170746279200,227,0 +170746279249,228,0 +170746279299,229,0 +170746279348,231,0 +170746279396,234,0 +170746279444,232,0 +170746279492,232,0 +170746279540,235,0 +170746279588,234,0 +170746279636,233,0 +170746279684,218,0 +170746279734,216,0 +170746279782,218,0 +170746279830,220,0 +170746279877,222,0 +170746279925,225,0 +170746279973,226,0 +170746280021,227,0 +170746280069,227,0 +170746280117,232,0 +170746280167,230,0 +170746280215,232,0 +170746280264,231,0 +170746280314,233,0 +170746280363,236,0 +170746280413,235,0 +170746280461,236,0 +170746280509,234,0 +170746280557,220,0 +170746280605,219,0 +170746280653,221,0 +170746280702,223,0 +170746280750,226,0 +170746280798,225,0 +170746280846,229,0 +170746280894,229,0 +170746280942,230,0 +170746280989,231,0 +170746281039,232,0 +170746281088,233,0 +170746281136,235,0 +170746281184,234,0 +170746281232,234,0 +170746281280,234,0 +170746281328,234,0 +170746281376,234,0 +170746281424,232,0 +170746281473,220,0 +170746281523,222,0 +170746281572,223,0 +170746281622,225,0 +170746281671,227,0 +170746281719,229,0 +170746281769,230,0 +170746281817,238,0 +170746281865,233,0 +170746281913,235,0 +170746281961,233,0 +170746282009,234,0 +170746282057,234,0 +170746282105,235,0 +170746282154,234,0 +170746282202,233,0 +170746282251,233,0 +170746282299,234,0 +170746282347,218,0 +170746282397,219,0 +170746282446,223,0 +170746282496,223,0 +170746282544,226,0 +170746282593,227,0 +170746282641,228,0 +170746282689,231,0 +170746282737,233,0 +170746282785,232,0 +170746282833,233,0 +170746282882,235,0 +170746282932,238,0 +170746282980,234,0 +170746283029,234,0 +170746283079,233,0 +170746283127,232,0 +170746283175,237,0 +170746283223,218,0 +170746283271,215,0 +170746283320,216,0 +170746283368,219,0 +170746283416,220,0 +170746283466,222,0 +170746283515,224,0 +170746283563,225,0 +170746283611,227,0 +170746283659,228,0 +170746283707,230,0 +170746283755,231,0 +170746283804,231,0 +170746283852,232,0 +170746283902,232,0 +170746283951,234,0 +170746283999,232,0 +170746284049,231,0 +170746284098,218,0 +170746284146,216,0 +170746284194,214,0 +170746284244,218,0 +170746284292,219,0 +170746284340,222,0 +170746284388,223,0 +170746284436,226,0 +170746284485,227,0 +170746284533,230,0 +170746284581,230,0 +170746284631,232,0 +170746284679,240,0 +170746284728,234,0 +170746284776,235,0 +170746284824,234,0 +170746284872,233,0 +170746284920,234,0 +170746284968,225,0 +170746285016,216,0 +170746285066,218,0 +170746285115,221,0 +170746285163,223,0 +170746285211,226,0 +170746285259,226,0 +170746285307,227,0 +170746285355,229,0 +170746285403,234,0 +170746285451,233,0 +170746285499,235,0 +170746285548,235,0 +170746285596,233,0 +170746285646,233,0 +170746285695,233,0 +170746285743,236,0 +170746285793,234,0 +170746285842,231,0 +170746285890,219,0 +170746285940,221,0 +170746285989,223,0 +170746286039,224,0 +170746286087,226,0 +170746286135,228,0 +170746286184,230,0 +170746286232,228,0 +170746286280,231,0 +170746286328,231,0 +170746286378,232,0 +170746286427,231,0 +170746286477,233,0 +170746286526,232,0 +170746286574,233,0 +170746286624,232,0 +170746286673,231,0 +170746286721,231,0 +170746286769,227,0 +170746286819,227,0 +170746286867,228,0 +170746286916,229,0 +170746286964,230,0 +170746287012,231,0 +170746287062,232,0 +170746287111,232,0 +170746287159,234,0 +170746287209,234,0 +170746287257,234,0 +170746287305,235,0 +170746287353,235,0 +170746287401,234,0 +170746287450,234,0 +170746287498,232,0 +170746287548,232,0 +170746287596,232,0 +170746287644,230,0 +170746287691,230,0 +170746287739,230,0 +170746287787,232,0 +170746287835,230,0 +170746287885,233,0 +170746287934,233,0 +170746287984,231,0 +170746288032,234,0 +170746288080,235,0 +170746288128,233,0 +170746288176,235,0 +170746288224,233,0 +170746288273,234,0 +170746288321,232,0 +170746288371,233,0 +170746288419,233,0 +170746288467,233,0 +170746288515,227,0 +170746288563,225,0 +170746288610,227,0 +170746288658,226,0 +170746288708,231,0 +170746288758,229,0 +170746288806,233,0 +170746288853,231,0 +170746288903,234,0 +170746288951,235,0 +170746289001,233,0 +170746289049,234,0 +170746289098,234,0 +170746289146,234,0 +170746289194,234,0 +170746289243,234,0 +170746289293,232,0 +170746289343,232,0 +170746289391,232,0 +170746289438,217,0 +170746289486,219,0 +170746289534,221,0 +170746289584,223,0 +170746289632,225,0 +170746289680,227,0 +170746289728,227,0 +170746289776,228,0 +170746289825,231,0 +170746289873,231,0 +170746289923,237,0 +170746289972,235,0 +170746290022,236,0 +170746290070,233,0 +170746290119,233,0 +170746290169,234,0 +170746290217,232,0 +170746290265,229,0 +170746290313,217,0 +170746290362,218,0 +170746290412,221,0 +170746290461,223,0 +170746290511,223,0 +170746290560,226,0 +170746290608,225,0 +170746290658,228,0 +170746290706,230,0 +170746290754,229,0 +170746290802,234,0 +170746290850,232,0 +170746290899,231,0 +170746290949,232,0 +170746290998,233,0 +170746291048,233,0 +170746291096,232,0 +170746291145,232,0 +170746291193,218,0 +170746291241,216,0 +170746291291,217,0 +170746291338,220,0 +170746291388,222,0 +170746291438,226,0 +170746291486,225,0 +170746291535,226,0 +170746291585,229,0 +170746291633,229,0 +170746291682,232,0 +170746291731,233,0 +170746291779,232,0 +170746291829,233,0 +170746291877,233,0 +170746291926,234,0 +170746291976,233,0 +170746292024,232,0 +170746292072,218,0 +170746292120,217,0 +170746292168,217,0 +170746292216,218,0 +170746292265,222,0 +170746292313,224,0 +170746292363,227,0 +170746292411,226,0 +170746292460,229,0 +170746292510,230,0 +170746292557,230,0 +170746292605,232,0 +170746292655,233,0 +170746292703,234,0 +170746292753,235,0 +170746292800,234,0 +170746292848,235,0 +170746292898,233,0 +170746292946,219,0 +170746292995,216,0 +170746293045,217,0 +170746293093,219,0 +170746293141,221,0 +170746293189,223,0 +170746293238,225,0 +170746293288,227,0 +170746293337,227,0 +170746293385,229,0 +170746293433,231,0 +170746293481,233,0 +170746293529,231,0 +170746293579,232,0 +170746293627,234,0 +170746293675,234,0 +170746293724,234,0 +170746293774,232,0 +170746293822,230,0 +170746293871,217,0 +170746293919,218,0 +170746293969,220,0 +170746294018,222,0 +170746294068,224,0 +170746294117,225,0 +170746294165,225,0 +170746294213,229,0 +170746294263,228,0 +170746294311,231,0 +170746294359,233,0 +170746294407,232,0 +170746294456,234,0 +170746294504,234,0 +170746294552,234,0 +170746294602,234,0 +170746294650,233,0 +170746294698,233,0 +170746294746,220,0 +170746294793,221,0 +170746294841,222,0 +170746294889,223,0 +170746294937,226,0 +170746294987,230,0 +170746295035,228,0 +170746295083,230,0 +170746295132,231,0 +170746295180,232,0 +170746295230,235,0 +170746295279,234,0 +170746295327,234,0 +170746295377,236,0 +170746295425,235,0 +170746295473,234,0 +170746295521,233,0 +170746295569,233,0 +170746295618,222,0 +170746295666,222,0 +170746295714,226,0 +170746295762,225,0 +170746295810,227,0 +170746295858,229,0 +170746295908,232,0 +170746295956,233,0 +170746296005,236,0 +170746296055,233,0 +170746296104,232,0 +170746296152,234,0 +170746296202,233,0 +170746296250,233,0 +170746296299,234,0 +170746296347,233,0 +170746296395,232,0 +170746296443,233,0 +170746296491,219,0 +170746296541,219,0 +170746296589,222,0 +170746296637,224,0 +170746296686,226,0 +170746296734,237,0 +170746296784,228,0 +170746296832,228,0 +170746296881,230,0 +170746296929,232,0 +170746296977,233,0 +170746297025,232,0 +170746297073,233,0 +170746297121,234,0 +170746297171,234,0 +170746297219,233,0 +170746297266,232,0 +170746297314,233,0 +170746297362,232,0 +170746297410,217,0 +170746297460,218,0 +170746297508,224,0 +170746297557,222,0 +170746297605,224,0 +170746297653,225,0 +170746297703,226,0 +170746297751,227,0 +170746297799,228,0 +170746297847,230,0 +170746297895,234,0 +170746297943,232,0 +170746297992,234,0 +170746298042,235,0 +170746298091,224,0 +170746298139,234,0 +170746298187,233,0 +170746298235,232,0 +170746298285,219,0 +170746298333,217,0 +170746298382,219,0 +170746298430,221,0 +170746298478,223,0 +170746298526,225,0 +170746298574,225,0 +170746298622,228,0 +170746298670,228,0 +170746298718,230,0 +170746298766,231,0 +170746298814,233,0 +170746298864,234,0 +170746298913,233,0 +170746298963,233,0 +170746299011,236,0 +170746299060,232,0 +170746299108,232,0 +170746299158,219,0 +170746299207,216,0 +170746299255,217,0 +170746299305,219,0 +170746299354,221,0 +170746299402,224,0 +170746299450,223,0 +170746299498,225,0 +170746299546,227,0 +170746299594,227,0 +170746299643,230,0 +170746299691,231,0 +170746299739,233,0 +170746299789,235,0 +170746299837,233,0 +170746299886,232,0 +170746299934,233,0 +170746299984,232,0 +170746300033,223,0 +170746300081,216,0 +170746300129,216,0 +170746300177,216,0 +170746300227,219,0 +170746300276,220,0 +170746300324,223,0 +170746300372,224,0 +170746300420,225,0 +170746300470,228,0 +170746300518,228,0 +170746300566,230,0 +170746300614,231,0 +170746300663,233,0 +170746300711,234,0 +170746300759,234,0 +170746300809,233,0 +170746300857,232,0 +170746300906,231,0 +170746300956,217,0 +170746301005,216,0 +170746301053,218,0 +170746301103,220,0 +170746301151,221,0 +170746301199,222,0 +170746301247,225,0 +170746301295,224,0 +170746301343,226,0 +170746301392,230,0 +170746301440,231,0 +170746301490,231,0 +170746301539,231,0 +170746301587,232,0 +170746301635,233,0 +170746301683,234,0 +170746301731,234,0 +170746301779,231,0 +170746301827,218,0 +170746301875,216,0 +170746301924,217,0 +170746301974,219,0 +170746302022,221,0 +170746302070,223,0 +170746302119,225,0 +170746302167,228,0 +170746302215,228,0 +170746302263,228,0 +170746302311,229,0 +170746302359,232,0 +170746302407,231,0 +170746302456,232,0 +170746302504,222,0 +170746302554,234,0 +170746302602,233,0 +170746302651,233,0 +170746302699,219,0 +170746302749,215,0 +170746302798,216,0 +170746302848,219,0 +170746302896,222,0 +170746302945,223,0 +170746302995,225,0 +170746303043,226,0 +170746303091,228,0 +170746303140,228,0 +170746303190,230,0 +170746303238,232,0 +170746303286,234,0 +170746303334,233,0 +170746303383,234,0 +170746303431,232,0 +170746303479,234,0 +170746303528,233,0 +170746303576,220,0 +170746303626,221,0 +170746303675,223,0 +170746303725,224,0 +170746303774,226,0 +170746303822,228,0 +170746303870,229,0 +170746303920,230,0 +170746303969,230,0 +170746304017,232,0 +170746304067,233,0 +170746304116,235,0 +170746304164,237,0 +170746304214,234,0 +170746304262,233,0 +170746304310,232,0 +170746304359,235,0 +170746304407,232,0 +170746304455,225,0 +170746304503,224,0 +170746304551,226,0 +170746304599,227,0 +170746304649,229,0 +170746304697,229,0 +170746304745,233,0 +170746304794,232,0 +170746304844,232,0 +170746304893,233,0 +170746304941,236,0 +170746304989,235,0 +170746305037,232,0 +170746305085,233,0 +170746305133,234,0 +170746305180,233,0 +170746305230,232,0 +170746305278,230,0 +170746305327,231,0 +170746305377,220,0 +170746305425,220,0 +170746305474,223,0 +170746305522,223,0 +170746305570,225,0 +170746305620,227,0 +170746305669,228,0 +170746305717,229,0 +170746305767,231,0 +170746305815,231,0 +170746305863,233,0 +170746305912,232,0 +170746305960,232,0 +170746306008,232,0 +170746306056,233,0 +170746306104,232,0 +170746306152,232,0 +170746306200,232,0 +170746306248,218,0 +170746306297,218,0 +170746306345,220,0 +170746306393,222,0 +170746306441,223,0 +170746306491,226,0 +170746306539,224,0 +170746306588,224,0 +170746306636,227,0 +170746306684,229,0 +170746306732,230,0 +170746306780,232,0 +170746306828,237,0 +170746306876,232,0 +170746306924,233,0 +170746306973,232,0 +170746307023,233,0 +170746307072,230,0 +170746307120,220,0 +170746307168,220,0 +170746307216,221,0 +170746307266,223,0 +170746307314,226,0 +170746307363,226,0 +170746307411,228,0 +170746307459,229,0 +170746307507,228,0 +170746307557,230,0 +170746307605,232,0 +170746307654,233,0 +170746307702,233,0 +170746307750,234,0 +170746307798,232,0 +170746307846,232,0 +170746307894,231,0 +170746307942,222,0 +170746307992,222,0 +170746308040,225,0 +170746308089,226,0 +170746308137,228,0 +170746308185,229,0 +170746308233,229,0 +170746308283,232,0 +170746308332,233,0 +170746308382,235,0 +170746308431,234,0 +170746308479,233,0 +170746308527,232,0 +170746308577,234,0 +170746308625,231,0 +170746308674,232,0 +170746308724,225,0 +170746308772,225,0 +170746308821,228,0 +170746308869,234,0 +170746308917,244,0 +170746308967,231,0 +170746309015,232,0 +170746309063,232,0 +170746309111,233,0 +170746309160,234,0 +170746309210,235,0 +170746309259,233,0 +170746309307,233,0 +170746309355,233,0 +170746309403,231,0 +170746309451,227,0 +170746309500,230,0 +170746309548,227,0 +170746309598,227,0 +170746309648,228,0 +170746309697,228,0 +170746309745,229,0 +170746309793,237,0 +170746309841,233,0 +170746309889,233,0 +170746309937,234,0 +170746309985,234,0 +170746310033,234,0 +170746310082,235,0 +170746310130,233,0 +170746310178,233,0 +170746310228,232,0 +170746310276,234,0 +170746310324,219,0 +170746310373,223,0 +170746310421,225,0 +170746310469,225,0 +170746310519,227,0 +170746310568,228,0 +170746310616,231,0 +170746310664,232,0 +170746310712,231,0 +170746310760,232,0 +170746310810,232,0 +170746310859,231,0 +170746310907,236,0 +170746310957,234,0 +170746311005,234,0 +170746311053,233,0 +170746311102,232,0 +170746311152,218,0 +170746311201,220,0 +170746311251,221,0 +170746311299,225,0 +170746311348,225,0 +170746311396,228,0 +170746311444,228,0 +170746311492,230,0 +170746311540,231,0 +170746311590,230,0 +170746311639,233,0 +170746311689,233,0 +170746311738,234,0 +170746311788,236,0 +170746311836,234,0 +170746311885,232,0 +170746311933,219,0 +170746311981,216,0 +170746312029,219,0 +170746312079,221,0 +170746312128,223,0 +170746312176,224,0 +170746312224,227,0 +170746312272,229,0 +170746312320,230,0 +170746312368,232,0 +170746312416,231,0 +170746312465,231,0 +170746312515,236,0 +170746312563,233,0 +170746312611,235,0 +170746312659,234,0 +170746312708,232,0 +170746312758,216,0 +170746312806,215,0 +170746312854,216,0 +170746312903,219,0 +170746312953,221,0 +170746313001,225,0 +170746313049,226,0 +170746313097,226,0 +170746313145,229,0 +170746313194,230,0 +170746313242,230,0 +170746313290,234,0 +170746313338,233,0 +170746313387,234,0 +170746313435,232,0 +170746313483,231,0 +170746313531,218,0 +170746313579,217,0 +170746313627,220,0 +170746313675,222,0 +170746313723,223,0 +170746313771,225,0 +170746313820,227,0 +170746313868,228,0 +170746313916,230,0 +170746313964,231,0 +170746314012,236,0 +170746314062,233,0 +170746314109,233,0 +170746314157,234,0 +170746314205,232,0 +170746314255,232,0 +170746314303,231,0 +170746314350,218,0 +170746314398,218,0 +170746314446,220,0 +170746314494,221,0 +170746314544,224,0 +170746314592,227,0 +170746314640,226,0 +170746314689,229,0 +170746314739,230,0 +170746314787,231,0 +170746314835,232,0 +170746314884,233,0 +170746314932,237,0 +170746314980,234,0 +170746315030,233,0 +170746315078,231,0 +170746315125,231,0 +170746315173,216,0 +170746315221,218,0 +170746315269,220,0 +170746315317,222,0 +170746315365,221,0 +170746315413,226,0 +170746315461,225,0 +170746315509,226,0 +170746315557,228,0 +170746315605,230,0 +170746315653,230,0 +170746315702,231,0 +170746315752,232,0 +170746315799,232,0 +170746315847,231,0 +170746315895,231,0 +170746315945,218,0 +170746315994,216,0 +170746316042,218,0 +170746316090,220,0 +170746316139,219,0 +170746316187,224,0 +170746316235,223,0 +170746316283,224,0 +170746316331,225,0 +170746316379,228,0 +170746316428,229,0 +170746316478,230,0 +170746316527,230,0 +170746316575,231,0 +170746316624,231,0 +170746316673,231,0 +170746316723,230,0 +170746316772,216,0 +170746316820,218,0 +170746316868,220,0 +170746316918,223,0 +170746316968,224,0 +170746317016,224,0 +170746317064,227,0 +170746317113,228,0 +170746317161,228,0 +170746317209,230,0 +170746317257,231,0 +170746317307,232,0 +170746317356,231,0 +170746317404,232,0 +170746317454,232,0 +170746317503,231,0 +170746317551,219,0 +170746317599,219,0 +170746317649,220,0 +170746317698,224,0 +170746317748,225,0 +170746317796,226,0 +170746317845,227,0 +170746317893,234,0 +170746317943,230,0 +170746317992,231,0 +170746318040,232,0 +170746318090,233,0 +170746318138,233,0 +170746318187,232,0 +170746318237,232,0 +170746318286,238,0 +170746318336,231,0 +170746318384,227,0 +170746318433,228,0 +170746318483,231,0 +170746318531,233,0 +170746318580,232,0 +170746318628,232,0 +170746318676,233,0 +170746318724,232,0 +170746318772,233,0 +170746318822,233,0 +170746318870,234,0 +170746318918,233,0 +170746318965,234,0 +170746319015,231,0 +170746319063,231,0 +170746319112,231,0 +170746319162,220,0 +170746319210,225,0 +170746319258,227,0 +170746319306,227,0 +170746319355,230,0 +170746319405,230,0 +170746319453,231,0 +170746319501,230,0 +170746319549,229,0 +170746319597,234,0 +170746319646,233,0 +170746319694,233,0 +170746319744,233,0 +170746319792,233,0 +170746319840,232,0 +170746319888,232,0 +170746319937,230,0 +170746319985,221,0 +170746320035,223,0 +170746320083,225,0 +170746320131,227,0 +170746320179,227,0 +170746320228,228,0 +170746320278,229,0 +170746320326,234,0 +170746320374,234,0 +170746320422,232,0 +170746320470,234,0 +170746320517,236,0 +170746320565,234,0 +170746320615,234,0 +170746320664,231,0 +170746320712,231,0 +170746320760,222,0 +170746320808,223,0 +170746320858,224,0 +170746320906,226,0 +170746320954,228,0 +170746321002,229,0 +170746321051,230,0 +170746321101,229,0 +170746321149,234,0 +170746321198,232,0 +170746321248,232,0 +170746321296,234,0 +170746321344,232,0 +170746321393,233,0 +170746321441,232,0 +170746321489,231,0 +170746321539,229,0 +170746321588,222,0 +170746321636,225,0 +170746321686,226,0 +170746321734,229,0 +170746321782,229,0 +170746321830,229,0 +170746321878,232,0 +170746321926,232,0 +170746321975,232,0 +170746322023,232,0 +170746322072,232,0 +170746322120,234,0 +170746322168,234,0 +170746322218,233,0 +170746322266,231,0 +170746322315,231,0 +170746322363,220,0 +170746322411,220,0 +170746322459,221,0 +170746322507,224,0 +170746322555,225,0 +170746322603,226,0 +170746322653,232,0 +170746322703,231,0 +170746322752,230,0 +170746322800,232,0 +170746322850,231,0 +170746322898,233,0 +170746322947,233,0 +170746322995,232,0 +170746323043,236,0 +170746323091,231,0 +170746323139,230,0 +170746323188,217,0 +170746323236,219,0 +170746323284,221,0 +170746323332,222,0 +170746323382,227,0 +170746323431,227,0 +170746323479,228,0 +170746323529,229,0 +170746323577,230,0 +170746323626,232,0 +170746323674,235,0 +170746323722,233,0 +170746323770,235,0 +170746323820,234,0 +170746323868,232,0 +170746323916,232,0 +170746323964,220,0 +170746324012,217,0 +170746324060,222,0 +170746324107,222,0 +170746324155,224,0 +170746324203,225,0 +170746324251,227,0 +170746324299,225,0 +170746324349,229,0 +170746324397,231,0 +170746324446,228,0 +170746324494,235,0 +170746324544,235,0 +170746324593,235,0 +170746324643,233,0 +170746324691,232,0 +170746324740,231,0 +170746324790,218,0 +170746324838,220,0 +170746324886,221,0 +170746324935,222,0 +170746324983,227,0 +170746325033,225,0 +170746325081,230,0 +170746325129,230,0 +170746325178,230,0 +170746325226,233,0 +170746325276,231,0 +170746325324,232,0 +170746325372,232,0 +170746325421,232,0 +170746325471,232,0 +170746325518,232,0 +170746325566,224,0 +170746325614,219,0 +170746325662,221,0 +170746325710,223,0 +170746325758,226,0 +170746325808,227,0 +170746325856,227,0 +170746325904,229,0 +170746325952,229,0 +170746326000,230,0 +170746326048,233,0 +170746326096,233,0 +170746326143,234,0 +170746326191,232,0 +170746326241,232,0 +170746326291,231,0 +170746326340,232,0 +170746326388,222,0 +170746326438,222,0 +170746326487,224,0 +170746326535,226,0 +170746326583,228,0 +170746326631,229,0 +170746326680,230,0 +170746326728,231,0 +170746326776,230,0 +170746326826,232,0 +170746326874,232,0 +170746326923,232,0 +170746326973,230,0 +170746327021,233,0 +170746327069,231,0 +170746327118,231,0 +170746327166,220,0 +170746327214,221,0 +170746327262,225,0 +170746327310,225,0 +170746327360,228,0 +170746327409,228,0 +170746327457,229,0 +170746327505,229,0 +170746327553,231,0 +170746327603,232,0 +170746327652,232,0 +170746327700,231,0 +170746327748,233,0 +170746327798,232,0 +170746327845,232,0 +170746327893,231,0 +170746327943,232,0 +170746327992,218,0 +170746328040,220,0 +170746328088,222,0 +170746328136,223,0 +170746328185,224,0 +170746328233,227,0 +170746328281,226,0 +170746328329,228,0 +170746328377,230,0 +170746328426,231,0 +170746328474,230,0 +170746328522,231,0 +170746328570,232,0 +170746328618,232,0 +170746328666,232,0 +170746328715,231,0 +170746328763,230,0 +170746328811,216,0 +170746328859,218,0 +170746328909,220,0 +170746328958,222,0 +170746329008,224,0 +170746329057,226,0 +170746329105,227,0 +170746329155,229,0 +170746329203,231,0 +170746329252,232,0 +170746329300,232,0 +170746329350,233,0 +170746329399,233,0 +170746329447,233,0 +170746329495,232,0 +170746329543,232,0 +170746329593,228,0 +170746329640,226,0 +170746329690,227,0 +170746329740,230,0 +170746329789,230,0 +170746329837,229,0 +170746329885,230,0 +170746329935,231,0 +170746329983,231,0 +170746330032,233,0 +170746330080,231,0 +170746330128,231,0 +170746330176,233,0 +170746330224,233,0 +170746330274,233,0 +170746330321,233,0 +170746330371,226,0 +170746330420,231,0 +170746330468,229,0 +170746330518,231,0 +170746330566,231,0 +170746330616,233,0 +170746330663,234,0 +170746330711,232,0 +170746330759,233,0 +170746330807,233,0 +170746330855,232,0 +170746330905,234,0 +170746330954,232,0 +170746331002,231,0 +170746331050,231,0 +170746331098,231,0 +170746331148,232,0 +170746331196,229,0 +170746331244,230,0 +170746331293,231,0 +170746331341,235,0 +170746331389,231,0 +170746331437,232,0 +170746331486,232,0 +170746331534,232,0 +170746331584,232,0 +170746331632,232,0 +170746331680,232,0 +170746331728,230,0 +170746331777,231,0 +170746331825,231,0 +170746331873,231,0 +170746331921,233,0 +170746331969,231,0 +170746332019,228,0 +170746332067,231,0 +170746332115,230,0 +170746332163,232,0 +170746332211,230,0 +170746332259,232,0 +170746332308,231,0 +170746332356,234,0 +170746332404,232,0 +170746332452,233,0 +170746332500,230,0 +170746332550,233,0 +170746332599,233,0 +170746332647,233,0 +170746332695,231,0 +170746332743,230,0 +170746332791,227,0 +170746332839,228,0 +170746332889,229,0 +170746332937,230,0 +170746332986,231,0 +170746333034,231,0 +170746333084,231,0 +170746333132,232,0 +170746333181,232,0 +170746333231,232,0 +170746333279,232,0 +170746333328,233,0 +170746333376,232,0 +170746333426,232,0 +170746333474,231,0 +170746333522,230,0 +170746333571,227,0 +170746333621,224,0 +170746333668,224,0 +170746333718,227,0 +170746333766,229,0 +170746333815,229,0 +170746333863,230,0 +170746333911,231,0 +170746333961,234,0 +170746334009,233,0 +170746334057,235,0 +170746334104,233,0 +170746334152,233,0 +170746334200,234,0 +170746334248,232,0 +170746334296,232,0 +170746334344,230,0 +170746334393,223,0 +170746334441,222,0 +170746334489,223,0 +170746334539,225,0 +170746334589,227,0 +170746334637,229,0 +170746334686,230,0 +170746334734,231,0 +170746334784,231,0 +170746334833,233,0 +170746334883,233,0 +170746334931,232,0 +170746334980,233,0 +170746335030,233,0 +170746335077,231,0 +170746335125,231,0 +170746335173,230,0 +170746335223,219,0 +170746335272,221,0 +170746335322,224,0 +170746335370,226,0 +170746335418,227,0 +170746335467,229,0 +170746335515,230,0 +170746335563,230,0 +170746335611,232,0 +170746335659,233,0 +170746335709,234,0 +170746335758,233,0 +170746335808,232,0 +170746335856,231,0 +170746335905,234,0 +170746335953,231,0 +170746336001,219,0 +170746336049,219,0 +170746336097,221,0 +170746336145,223,0 +170746336193,224,0 +170746336243,226,0 +170746336291,227,0 +170746336339,229,0 +170746336387,231,0 +170746336435,232,0 +170746336483,233,0 +170746336532,231,0 +170746336580,234,0 +170746336628,233,0 +170746336676,233,0 +170746336725,233,0 +170746336775,230,0 +170746336823,217,0 +170746336871,218,0 +170746336920,222,0 +170746336970,223,0 +170746337018,225,0 +170746337066,226,0 +170746337114,229,0 +170746337162,230,0 +170746337210,230,0 +170746337258,232,0 +170746337305,234,0 +170746337353,233,0 +170746337401,232,0 +170746337449,232,0 +170746337497,234,0 +170746337545,232,0 +170746337593,218,0 +170746337641,217,0 +170746337689,219,0 +170746337737,222,0 +170746337785,224,0 +170746337834,226,0 +170746337882,226,0 +170746337931,228,0 +170746337979,233,0 +170746338027,230,0 +170746338075,230,0 +170746338125,230,0 +170746338173,232,0 +170746338220,234,0 +170746338270,232,0 +170746338317,232,0 +170746338365,230,0 +170746338415,217,0 +170746338463,217,0 +170746338511,221,0 +170746338558,223,0 +170746338606,224,0 +170746338654,225,0 +170746338704,226,0 +170746338753,228,0 +170746338801,227,0 +170746338849,230,0 +170746338897,232,0 +170746338945,232,0 +170746338995,232,0 +170746339044,231,0 +170746339094,221,0 +170746339143,229,0 +170746339191,217,0 +170746339239,216,0 +170746339287,218,0 +170746339335,221,0 +170746339383,223,0 +170746339431,224,0 +170746339479,225,0 +170746339528,226,0 +170746339576,225,0 +170746339626,228,0 +170746339674,230,0 +170746339721,230,0 +170746339771,234,0 +170746339819,231,0 +170746339867,232,0 +170746339914,232,0 +170746339962,231,0 +170746340010,218,0 +170746340060,217,0 +170746340108,220,0 +170746340155,221,0 +170746340203,242,0 +170746340251,226,0 +170746340299,225,0 +170746340347,226,0 +170746340395,227,0 +170746340443,228,0 +170746340491,229,0 +170746340539,230,0 +170746340586,231,0 +170746340636,230,0 +170746340684,231,0 +170746340732,231,0 +170746340780,229,0 +170746340828,217,0 +170746340875,219,0 +170746340923,218,0 +170746340971,223,0 +170746341019,223,0 +170746341067,224,0 +170746341115,225,0 +170746341163,227,0 +170746341211,229,0 +170746341260,230,0 +170746341309,231,0 +170746341357,232,0 +170746341405,232,0 +170746341453,232,0 +170746341501,232,0 +170746341550,230,0 +170746341598,227,0 +170746341646,228,0 +170746341696,229,0 +170746341744,229,0 +170746341793,231,0 +170746341841,231,0 +170746341891,231,0 +170746341940,232,0 +170746341990,231,0 +170746342038,230,0 +170746342087,232,0 +170746342135,230,0 +170746342185,231,0 +170746342233,230,0 +170746342281,232,0 +170746342328,232,0 +170746342376,233,0 +170746342426,233,0 +170746342474,233,0 +170746342522,233,0 +170746342570,232,0 +170746342617,235,0 +170746342665,233,0 +170746342713,231,0 +170746342761,232,0 +170746342809,231,0 +170746342859,232,0 +170746342908,231,0 +170746342956,231,0 +170746343006,231,0 +170746343053,233,0 +170746343103,233,0 +170746343152,233,0 +170746343200,232,0 +170746343248,233,0 +170746343296,233,0 +170746343344,232,0 +170746343393,230,0 +170746343441,232,0 +170746343489,231,0 +170746343538,232,0 +170746343586,232,0 +170746343634,232,0 +170746343682,231,0 +170746343730,232,0 +170746343780,231,0 +170746343828,231,0 +170746343875,232,0 +170746343923,232,0 +170746343973,230,0 +170746344021,231,0 +170746344070,235,0 +170746344120,231,0 +170746344169,233,0 +170746344217,231,0 +170746344265,232,0 +170746344313,232,0 +170746344363,232,0 +170746344412,232,0 +170746344460,234,0 +170746344508,233,0 +170746344556,231,0 +170746344604,232,0 +170746344652,231,0 +170746344702,232,0 +170746344750,230,0 +170746344799,224,0 +170746344849,224,0 +170746344898,227,0 +170746344948,227,0 +170746344997,231,0 +170746345047,228,0 +170746345097,230,0 +170746345146,234,0 +170746345194,240,0 +170746345242,234,0 +170746345290,232,0 +170746345338,234,0 +170746345386,234,0 +170746345433,230,0 +170746345483,230,0 +170746345531,231,0 +170746345580,229,0 +170746345628,222,0 +170746345676,223,0 +170746345724,225,0 +170746345772,226,0 +170746345820,228,0 +170746345869,229,0 +170746345919,231,0 +170746345968,229,0 +170746346018,232,0 +170746346066,234,0 +170746346116,240,0 +170746346163,233,0 +170746346211,232,0 +170746346259,233,0 +170746346307,231,0 +170746346357,231,0 +170746346405,220,0 +170746346453,221,0 +170746346501,225,0 +170746346549,224,0 +170746346597,225,0 +170746346646,230,0 +170746346694,231,0 +170746346742,228,0 +170746346790,230,0 +170746346838,231,0 +170746346886,230,0 +170746346936,232,0 +170746346983,234,0 +170746347031,234,0 +170746347081,232,0 +170746347130,231,0 +170746347178,230,0 +170746347228,222,0 +170746347276,222,0 +170746347324,224,0 +170746347372,226,0 +170746347421,228,0 +170746347471,229,0 +170746347519,231,0 +170746347568,232,0 +170746347618,231,0 +170746347666,231,0 +170746347715,231,0 +170746347765,231,0 +170746347813,232,0 +170746347861,232,0 +170746347909,233,0 +170746347956,230,0 +170746348004,223,0 +170746348054,220,0 +170746348102,224,0 +170746348151,223,0 +170746348201,227,0 +170746348249,229,0 +170746348298,228,0 +170746348348,232,0 +170746348397,229,0 +170746348447,231,0 +170746348495,232,0 +170746348543,233,0 +170746348591,232,0 +170746348639,231,0 +170746348687,232,0 +170746348735,231,0 +170746348783,228,0 +170746348831,217,0 +170746348880,219,0 +170746348928,221,0 +170746348976,223,0 +170746349026,224,0 +170746349074,226,0 +170746349121,227,0 +170746349169,229,0 +170746349217,232,0 +170746349265,231,0 +170746349313,232,0 +170746349363,233,0 +170746349411,233,0 +170746349460,233,0 +170746349510,231,0 +170746349559,230,0 +170746349607,218,0 +170746349655,218,0 +170746349705,220,0 +170746349753,222,0 +170746349802,223,0 +170746349852,225,0 +170746349900,226,0 +170746349948,228,0 +170746349996,228,0 +170746350044,231,0 +170746350092,232,0 +170746350141,232,0 +170746350191,232,0 +170746350239,232,0 +170746350287,232,0 +170746350336,231,0 +170746350386,230,0 +170746350434,220,0 +170746350482,221,0 +170746350530,222,0 +170746350578,224,0 +170746350626,227,0 +170746350674,227,0 +170746350723,229,0 +170746350771,230,0 +170746350819,229,0 +170746350869,233,0 +170746350918,230,0 +170746350966,231,0 +170746351014,234,0 +170746351062,231,0 +170746351110,232,0 +170746351158,230,0 +170746351206,219,0 +170746351254,222,0 +170746351303,223,0 +170746351353,225,0 +170746351401,226,0 +170746351449,227,0 +170746351498,228,0 +170746351546,229,0 +170746351594,230,0 +170746351644,231,0 +170746351693,234,0 +170746351743,232,0 +170746351792,232,0 +170746351840,231,0 +170746351890,231,0 +170746351938,230,0 +170746351987,230,0 +170746352035,223,0 +170746352083,223,0 +170746352131,224,0 +170746352179,227,0 +170746352227,228,0 +170746352275,228,0 +170746352323,230,0 +170746352373,231,0 +170746352422,231,0 +170746352472,231,0 +170746352520,231,0 +170746352568,231,0 +170746352617,232,0 +170746352667,230,0 +170746352716,231,0 +170746352764,231,0 +170746352814,218,0 +170746352862,217,0 +170746352911,222,0 +170746352959,222,0 +170746353009,226,0 +170746353057,226,0 +170746353106,228,0 +170746353154,228,0 +170746353202,229,0 +170746353252,232,0 +170746353300,232,0 +170746353349,232,0 +170746353397,232,0 +170746353445,232,0 +170746353493,232,0 +170746353541,231,0 +170746353589,231,0 +170746353637,220,0 +170746353685,221,0 +170746353733,224,0 +170746353783,226,0 +170746353832,228,0 +170746353880,227,0 +170746353928,229,0 +170746353978,238,0 +170746354027,231,0 +170746354077,231,0 +170746354126,232,0 +170746354174,232,0 +170746354224,232,0 +170746354272,232,0 +170746354320,232,0 +170746354367,231,0 +170746354417,227,0 +170746354467,227,0 +170746354514,227,0 +170746354562,230,0 +170746354610,230,0 +170746354660,230,0 +170746354709,232,0 +170746354759,231,0 +170746354807,232,0 +170746354855,233,0 +170746354903,232,0 +170746354951,232,0 +170746354999,231,0 +170746355047,231,0 +170746355096,230,0 +170746355144,230,0 +170746355192,230,0 +170746355242,228,0 +170746355290,230,0 +170746355339,230,0 +170746355389,230,0 +170746355437,230,0 +170746355486,233,0 +170746355534,232,0 +170746355584,231,0 +170746355632,231,0 +170746355680,233,0 +170746355729,232,0 +170746355777,231,0 +170746355827,231,0 +170746355876,231,0 +170746355924,231,0 +170746355972,230,0 +170746356022,224,0 +170746356070,225,0 +170746356119,230,0 +170746356167,228,0 +170746356217,229,0 +170746356265,229,0 +170746356314,232,0 +170746356362,232,0 +170746356412,232,0 +170746356461,231,0 +170746356509,233,0 +170746356557,231,0 +170746356607,231,0 +170746356655,231,0 +170746356703,231,0 +170746356751,230,0 +170746356799,230,0 +170746356847,219,0 +170746356895,222,0 +170746356943,223,0 +170746356990,226,0 +170746357038,227,0 +170746357086,228,0 +170746357134,229,0 +170746357182,230,0 +170746357232,231,0 +170746357281,231,0 +170746357329,233,0 +170746357377,232,0 +170746357427,233,0 +170746357475,232,0 +170746357523,232,0 +170746357572,230,0 +170746357620,219,0 +170746357668,220,0 +170746357716,221,0 +170746357764,223,0 +170746357812,225,0 +170746357862,226,0 +170746357911,228,0 +170746357961,228,0 +170746358009,230,0 +170746358058,231,0 +170746358108,232,0 +170746358156,231,0 +170746358204,232,0 +170746358252,232,0 +170746358300,232,0 +170746358349,232,0 +170746358397,231,0 +170746358447,222,0 +170746358495,223,0 +170746358544,224,0 +170746358594,226,0 +170746358642,227,0 +170746358691,229,0 +170746358741,230,0 +170746358788,230,0 +170746358836,231,0 +170746358884,232,0 +170746358934,232,0 +170746358983,232,0 +170746359031,233,0 +170746359081,232,0 +170746359129,232,0 +170746359177,230,0 +170746359226,223,0 +170746359276,224,0 +170746359324,225,0 +170746359372,226,0 +170746359420,229,0 +170746359468,228,0 +170746359516,231,0 +170746359564,231,0 +170746359612,231,0 +170746359661,231,0 +170746359711,233,0 +170746359759,232,0 +170746359808,232,0 +170746359858,237,0 +170746359906,231,0 +170746359954,232,0 +170746360003,229,0 +170746360053,224,0 +170746360101,226,0 +170746360150,227,0 +170746360198,230,0 +170746360248,229,0 +170746360296,229,0 +170746360345,234,0 +170746360393,233,0 +170746360443,233,0 +170746360491,233,0 +170746360540,232,0 +170746360590,233,0 +170746360639,234,0 +170746360687,232,0 +170746360735,231,0 +170746360783,230,0 +170746360833,225,0 +170746360882,225,0 +170746360930,227,0 +170746360980,228,0 +170746361029,228,0 +170746361079,231,0 +170746361127,233,0 +170746361177,232,0 +170746361225,230,0 +170746361272,232,0 +170746361322,234,0 +170746361370,232,0 +170746361419,232,0 +170746361467,231,0 +170746361517,231,0 +170746361566,231,0 +170746361616,221,0 +170746361665,233,0 +170746361715,226,0 +170746361764,229,0 +170746361814,231,0 +170746361862,233,0 +170746361911,231,0 +170746361959,231,0 +170746362009,233,0 +170746362057,232,0 +170746362105,232,0 +170746362153,233,0 +170746362201,232,0 +170746362249,231,0 +170746362297,231,0 +170746362346,232,0 +170746362396,230,0 +170746362444,230,0 +170746362493,225,0 +170746362543,225,0 +170746362591,228,0 +170746362640,228,0 +170746362690,230,0 +170746362738,231,0 +170746362786,230,0 +170746362834,232,0 +170746362881,231,0 +170746362931,231,0 +170746362979,233,0 +170746363027,232,0 +170746363076,230,0 +170746363126,231,0 +170746363176,232,0 +170746363224,222,0 +170746363273,223,0 +170746363323,225,0 +170746363372,226,0 +170746363420,227,0 +170746363470,228,0 +170746363518,228,0 +170746363567,232,0 +170746363615,231,0 +170746363663,231,0 +170746363711,231,0 +170746363759,235,0 +170746363807,231,0 +170746363855,232,0 +170746363903,231,0 +170746363951,231,0 +170746364000,230,0 +170746364048,220,0 +170746364096,221,0 +170746364144,222,0 +170746364192,225,0 +170746364240,226,0 +170746364288,226,0 +170746364336,227,0 +170746364384,228,0 +170746364434,231,0 +170746364482,230,0 +170746364530,232,0 +170746364579,231,0 +170746364627,231,0 +170746364675,231,0 +170746364725,231,0 +170746364773,230,0 +170746364821,217,0 +170746364868,216,0 +170746364916,223,0 +170746364964,221,0 +170746365012,224,0 +170746365060,223,0 +170746365108,225,0 +170746365156,226,0 +170746365204,226,0 +170746365251,228,0 +170746365299,229,0 +170746365347,230,0 +170746365395,230,0 +170746365443,231,0 +170746365491,232,0 +170746365539,230,0 +170746365589,229,0 +170746365638,216,0 +170746365686,218,0 +170746365736,222,0 +170746365785,222,0 +170746365833,224,0 +170746365881,226,0 +170746365929,227,0 +170746365977,229,0 +170746366027,229,0 +170746366075,230,0 +170746366125,231,0 +170746366174,232,0 +170746366222,232,0 +170746366272,231,0 +170746366320,232,0 +170746366369,233,0 +170746366417,226,0 +170746366465,223,0 +170746366513,225,0 +170746366561,225,0 +170746366609,226,0 +170746366657,228,0 +170746366705,230,0 +170746366754,231,0 +170746366802,230,0 +170746366850,231,0 +170746366898,232,0 +170746366948,231,0 +170746366997,231,0 +170746367047,229,0 +170746367095,234,0 +170746367143,231,0 +170746367190,233,0 +170746367238,227,0 +170746367288,229,0 +170746367336,229,0 +170746367384,230,0 +170746367431,231,0 +170746367479,233,0 +170746367527,231,0 +170746367577,231,0 +170746367625,222,0 +170746367672,231,0 +170746367720,233,0 +170746367768,231,0 +170746367816,231,0 +170746367866,232,0 +170746367914,231,0 +170746367962,231,0 +170746368011,229,0 +170746368059,226,0 +170746368107,227,0 +170746368157,229,0 +170746368205,231,0 +170746368254,229,0 +170746368304,230,0 +170746368352,230,0 +170746368400,232,0 +170746368448,232,0 +170746368496,234,0 +170746368544,231,0 +170746368593,232,0 +170746368641,232,0 +170746368689,231,0 +170746368737,230,0 +170746368785,230,0 +170746368833,221,0 +170746368881,221,0 +170746368928,222,0 +170746368976,226,0 +170746369024,226,0 +170746369074,226,0 +170746369121,227,0 +170746369171,228,0 +170746369220,230,0 +170746369268,229,0 +170746369318,232,0 +170746369368,230,0 +170746369415,232,0 +170746369463,230,0 +170746369511,231,0 +170746369559,230,0 +170746369609,228,0 +170746369657,219,0 +170746369705,220,0 +170746369753,222,0 +170746369802,225,0 +170746369850,226,0 +170746369900,226,0 +170746369949,227,0 +170746369997,229,0 +170746370047,233,0 +170746370095,232,0 +170746370143,231,0 +170746370191,232,0 +170746370239,234,0 +170746370287,231,0 +170746370336,230,0 +170746370386,230,0 +170746370434,220,0 +170746370483,221,0 +170746370533,223,0 +170746370581,224,0 +170746370629,225,0 +170746370678,227,0 +170746370728,228,0 +170746370776,229,0 +170746370824,231,0 +170746370872,230,0 +170746370921,234,0 +170746370969,231,0 +170746371017,231,0 +170746371065,230,0 +170746371114,230,0 +170746371164,230,0 +170746371213,228,0 +170746371263,224,0 +170746371311,225,0 +170746371359,227,0 +170746371407,228,0 +170746371455,229,0 +170746371503,229,0 +170746371552,230,0 +170746371600,233,0 +170746371650,231,0 +170746371698,231,0 +170746371746,232,0 +170746371794,233,0 +170746371843,230,0 +170746371891,230,0 +170746371939,230,0 +170746371987,230,0 +170746372037,223,0 +170746372086,224,0 +170746372134,227,0 +170746372182,227,0 +170746372232,228,0 +170746372280,228,0 +170746372328,231,0 +170746372377,233,0 +170746372425,232,0 +170746372475,231,0 +170746372523,235,0 +170746372572,233,0 +170746372620,232,0 +170746372668,231,0 +170746372716,230,0 +170746372766,230,0 +170746372814,229,0 +170746372862,216,0 +170746372910,217,0 +170746372958,220,0 +170746373006,221,0 +170746373054,224,0 +170746373102,226,0 +170746373150,226,0 +170746373199,227,0 +170746373247,228,0 +170746373295,229,0 +170746373345,230,0 +170746373394,231,0 +170746373442,231,0 +170746373490,233,0 +170746373538,230,0 +170746373587,227,0 +170746373635,217,0 +170746373685,214,0 +170746373733,216,0 +170746373780,214,0 +170746373828,217,0 +170746373876,220,0 +170746373924,221,0 +170746373972,222,0 +170746374020,224,0 +170746374068,226,0 +170746374116,226,0 +170746374166,226,0 +170746374214,229,0 +170746374261,230,0 +170746374309,229,0 +170746374357,230,0 +170746374405,231,0 +170746374453,233,0 +170746374501,232,0 +170746374551,232,0 +170746374600,232,0 +170746374650,231,0 +170746374698,231,0 +170746374746,230,0 +170746374794,230,0 +170746374842,224,0 +170746374891,223,0 +170746374939,226,0 +170746374987,226,0 +170746375035,229,0 +170746375085,229,0 +170746375134,229,0 +170746375184,234,0 +170746375232,223,0 +170746375280,231,0 +170746375328,231,0 +170746375375,232,0 +170746375423,232,0 +170746375471,231,0 +170746375519,230,0 +170746375567,230,0 +170746375615,228,0 +170746375665,223,0 +170746375714,225,0 +170746375762,225,0 +170746375812,226,0 +170746375860,228,0 +170746375908,229,0 +170746375956,228,0 +170746376004,229,0 +170746376052,232,0 +170746376101,231,0 +170746376149,230,0 +170746376197,230,0 +170746376245,231,0 +170746376293,230,0 +170746376343,230,0 +170746376392,231,0 +170746376442,222,0 +170746376491,222,0 +170746376541,224,0 +170746376589,226,0 +170746376637,226,0 +170746376685,227,0 +170746376734,227,0 +170746376782,228,0 +170746376832,228,0 +170746376880,230,0 +170746376928,230,0 +170746376976,231,0 +170746377024,231,0 +170746377072,231,0 +170746377120,229,0 +170746377168,230,0 +170746377216,229,0 +170746377264,217,0 +170746377312,221,0 +170746377360,221,0 +170746377408,224,0 +170746377457,226,0 +170746377505,226,0 +170746377553,227,0 +170746377601,227,0 +170746377649,229,0 +170746377699,231,0 +170746377747,230,0 +170746377795,232,0 +170746377844,232,0 +170746377894,230,0 +170746377942,230,0 +170746377990,229,0 +170746378039,217,0 +170746378087,218,0 +170746378136,220,0 +170746378184,224,0 +170746378234,226,0 +170746378282,227,0 +170746378332,228,0 +170746378380,230,0 +170746378427,233,0 +170746378475,231,0 +170746378523,231,0 +170746378571,232,0 +170746378621,232,0 +170746378669,231,0 +170746378717,231,0 +170746378765,231,0 +170746378814,230,0 +170746378862,227,0 +170746378910,227,0 +170746378960,227,0 +170746379008,229,0 +170746379057,230,0 +170746379105,231,0 +170746379155,231,0 +170746379203,230,0 +170746379253,230,0 +170746379302,232,0 +170746379350,252,0 +170746379400,231,0 +170746379449,233,0 +170746379499,231,0 +170746379547,231,0 +170746379595,230,0 +170746379644,227,0 +170746379694,229,0 +170746379742,229,0 +170746379790,229,0 +170746379838,230,0 +170746379887,230,0 +170746379935,232,0 +170746379983,231,0 +170746380031,232,0 +170746380079,234,0 +170746380127,232,0 +170746380175,231,0 +170746380223,232,0 +170746380272,230,0 +170746380320,230,0 +170746380370,231,0 +170746380419,228,0 +170746380467,230,0 +170746380517,232,0 +170746380565,230,0 +170746380613,231,0 +170746380662,233,0 +170746380710,230,0 +170746380758,233,0 +170746380808,232,0 +170746380857,232,0 +170746380907,233,0 +170746380955,236,0 +170746381003,231,0 +170746381051,230,0 +170746381098,230,0 +170746381148,231,0 +170746381196,229,0 +170746381246,236,0 +170746381294,216,0 +170746381343,227,0 +170746381391,228,0 +170746381441,232,0 +170746381489,230,0 +170746381537,230,0 +170746381585,231,0 +170746381633,231,0 +170746381681,231,0 +170746381731,231,0 +170746381779,231,0 +170746381827,231,0 +170746381875,229,0 +170746381923,230,0 +170746381971,230,0 +170746382019,228,0 +170746382068,224,0 +170746382118,226,0 +170746382167,228,0 +170746382217,227,0 +170746382266,228,0 +170746382314,229,0 +170746382364,230,0 +170746382412,230,0 +170746382460,230,0 +170746382508,231,0 +170746382557,231,0 +170746382605,230,0 +170746382653,231,0 +170746382701,230,0 +170746382751,229,0 +170746382799,230,0 +170746382847,223,0 +170746382895,224,0 +170746382943,224,0 +170746382992,226,0 +170746383042,228,0 +170746383091,228,0 +170746383141,229,0 +170746383190,229,0 +170746383238,231,0 +170746383286,230,0 +170746383334,230,0 +170746383382,231,0 +170746383430,230,0 +170746383478,231,0 +170746383526,229,0 +170746383574,235,0 +170746383623,228,0 +170746383671,223,0 +170746383719,224,0 +170746383767,225,0 +170746383815,226,0 +170746383865,228,0 +170746383913,230,0 +170746383962,230,0 +170746384012,231,0 +170746384060,231,0 +170746384108,232,0 +170746384156,232,0 +170746384204,232,0 +170746384252,232,0 +170746384300,231,0 +170746384349,230,0 +170746384397,230,0 +170746384445,220,0 +170746384493,220,0 +170746384542,222,0 +170746384592,223,0 +170746384642,226,0 +170746384689,227,0 +170746384737,227,0 +170746384785,229,0 +170746384833,230,0 +170746384883,231,0 +170746384932,232,0 +170746384980,232,0 +170746385030,230,0 +170746385078,230,0 +170746385127,231,0 +170746385175,229,0 +170746385225,227,0 +170746385274,219,0 +170746385322,221,0 +170746385372,222,0 +170746385421,225,0 +170746385471,225,0 +170746385519,226,0 +170746385567,229,0 +170746385615,230,0 +170746385663,249,0 +170746385712,231,0 +170746385760,228,0 +170746385808,238,0 +170746385856,230,0 +170746385904,230,0 +170746385953,230,0 +170746386001,228,0 +170746386049,218,0 +170746386097,217,0 +170746386145,219,0 +170746386193,222,0 +170746386243,220,0 +170746386292,223,0 +170746386342,229,0 +170746386390,227,0 +170746386439,228,0 +170746386487,230,0 +170746386535,230,0 +170746386585,232,0 +170746386634,230,0 +170746386682,231,0 +170746386732,231,0 +170746386781,229,0 +170746386829,227,0 +170746386877,217,0 +170746386925,215,0 +170746386975,218,0 +170746387022,220,0 +170746387072,222,0 +170746387121,222,0 +170746387169,225,0 +170746387217,224,0 +170746387265,229,0 +170746387313,236,0 +170746387362,229,0 +170746387410,230,0 +170746387460,230,0 +170746387508,232,0 +170746387557,231,0 +170746387605,229,0 +170746387653,217,0 +170746387703,216,0 +170746387751,218,0 +170746387799,220,0 +170746387847,222,0 +170746387896,223,0 +170746387946,223,0 +170746387995,227,0 +170746388043,227,0 +170746388091,228,0 +170746388139,230,0 +170746388187,229,0 +170746388237,230,0 +170746388285,231,0 +170746388333,237,0 +170746388381,231,0 +170746388430,217,0 +170746388478,216,0 +170746388528,217,0 +170746388577,220,0 +170746388625,222,0 +170746388673,223,0 +170746388721,224,0 +170746388769,225,0 +170746388817,226,0 +170746388865,228,0 +170746388915,229,0 +170746388962,227,0 +170746389010,230,0 +170746389060,229,0 +170746389109,230,0 +170746389157,229,0 +170746389207,230,0 +170746389255,216,0 +170746389305,218,0 +170746389354,216,0 +170746389402,222,0 +170746389450,223,0 +170746389499,225,0 +170746389547,225,0 +170746389597,226,0 +170746389645,228,0 +170746389694,229,0 +170746389742,229,0 +170746389790,229,0 +170746389838,230,0 +170746389888,230,0 +170746389936,229,0 +170746389984,237,0 +170746390033,228,0 +170746390081,214,0 +170746390129,220,0 +170746390177,223,0 +170746390225,224,0 +170746390273,224,0 +170746390323,226,0 +170746390372,228,0 +170746390422,229,0 +170746390470,228,0 +170746390518,230,0 +170746390566,230,0 +170746390614,231,0 +170746390662,232,0 +170746390710,231,0 +170746390757,230,0 +170746390807,229,0 +170746390857,227,0 +170746390906,229,0 +170746390954,230,0 +170746391002,230,0 +170746391050,230,0 +170746391099,231,0 +170746391149,231,0 +170746391197,231,0 +170746391245,230,0 +170746391294,230,0 +170746391342,231,0 +170746391390,230,0 +170746391438,230,0 +170746391488,233,0 +170746391536,231,0 +170746391584,232,0 +170746391632,230,0 +170746391681,232,0 +170746391731,231,0 +170746391780,231,0 +170746391828,231,0 +170746391878,232,0 +170746391926,231,0 +170746391975,230,0 +170746392023,230,0 +170746392073,230,0 +170746392121,230,0 +170746392170,231,0 +170746392220,231,0 +170746392269,230,0 +170746392319,230,0 +170746392369,230,0 +170746392417,232,0 +170746392465,230,0 +170746392513,224,0 +170746392561,230,0 +170746392608,230,0 +170746392658,232,0 +170746392707,230,0 +170746392757,229,0 +170746392805,232,0 +170746392853,231,0 +170746392901,231,0 +170746392949,229,0 +170746392998,230,0 +170746393046,230,0 +170746393094,231,0 +170746393144,229,0 +170746393193,231,0 +170746393241,220,0 +170746393289,227,0 +170746393337,225,0 +170746393385,227,0 +170746393433,228,0 +170746393482,231,0 +170746393532,230,0 +170746393580,229,0 +170746393629,250,0 +170746393679,233,0 +170746393727,231,0 +170746393777,230,0 +170746393825,238,0 +170746393872,231,0 +170746393920,230,0 +170746393968,230,0 +170746394018,228,0 +170746394066,224,0 +170746394114,222,0 +170746394162,224,0 +170746394211,225,0 +170746394261,227,0 +170746394309,227,0 +170746394358,229,0 +170746394408,228,0 +170746394456,231,0 +170746394504,231,0 +170746394552,232,0 +170746394599,232,0 +170746394647,231,0 +170746394695,231,0 +170746394743,230,0 +170746394793,230,0 +170746394841,219,0 +170746394888,220,0 +170746394936,221,0 +170746394986,225,0 +170746395034,226,0 +170746395082,227,0 +170746395131,228,0 +170746395179,228,0 +170746395229,228,0 +170746395278,230,0 +170746395326,230,0 +170746395374,230,0 +170746395422,231,0 +170746395472,230,0 +170746395520,230,0 +170746395568,229,0 +170746395617,229,0 +170746395665,221,0 +170746395713,222,0 +170746395763,223,0 +170746395811,227,0 +170746395859,225,0 +170746395908,227,0 +170746395956,228,0 +170746396006,230,0 +170746396054,230,0 +170746396102,231,0 +170746396150,231,0 +170746396199,231,0 +170746396249,232,0 +170746396297,231,0 +170746396346,230,0 +170746396396,228,0 +170746396445,218,0 +170746396493,220,0 +170746396541,222,0 +170746396589,224,0 +170746396637,225,0 +170746396685,225,0 +170746396733,226,0 +170746396781,228,0 +170746396830,229,0 +170746396878,230,0 +170746396928,230,0 +170746396977,229,0 +170746397025,230,0 +170746397073,230,0 +170746397123,231,0 +170746397172,231,0 +170746397220,228,0 +170746397268,218,0 +170746397318,219,0 +170746397366,220,0 +170746397415,222,0 +170746397463,222,0 +170746397511,224,0 +170746397559,226,0 +170746397609,226,0 +170746397656,228,0 +170746397706,229,0 +170746397754,229,0 +170746397802,230,0 +170746397851,230,0 +170746397899,227,0 +170746397949,229,0 +170746397997,229,0 +170746398045,221,0 +170746398092,217,0 +170746398140,219,0 +170746398188,221,0 +170746398238,223,0 +170746398286,225,0 +170746398334,224,0 +170746398382,226,0 +170746398431,231,0 +170746398479,229,0 +170746398527,229,0 +170746398577,231,0 +170746398625,232,0 +170746398673,230,0 +170746398721,230,0 +170746398769,229,0 +170746398817,228,0 +170746398865,220,0 +170746398914,219,0 +170746398962,220,0 +170746399012,223,0 +170746399061,224,0 +170746399109,226,0 +170746399159,226,0 +170746399207,228,0 +170746399255,229,0 +170746399304,231,0 +170746399354,231,0 +170746399403,230,0 +170746399453,229,0 +170746399501,232,0 +170746399549,231,0 +170746399599,229,0 +170746399647,218,0 +170746399695,221,0 +170746399742,222,0 +170746399790,224,0 +170746399838,226,0 +170746399886,226,0 +170746399934,228,0 +170746399982,228,0 +170746400030,228,0 +170746400078,230,0 +170746400126,231,0 +170746400174,230,0 +170746400222,232,0 +170746400271,230,0 +170746400321,230,0 +170746400369,230,0 +170746400418,228,0 +170746400466,221,0 +170746400514,222,0 +170746400564,224,0 +170746400613,226,0 +170746400663,227,0 +170746400712,225,0 +170746400762,228,0 +170746400810,231,0 +170746400858,229,0 +170746400907,232,0 +170746400955,230,0 +170746401003,231,0 +170746401053,230,0 +170746401102,230,0 +170746401152,229,0 +170746401200,230,0 +170746401249,222,0 +170746401297,224,0 +170746401345,223,0 +170746401395,225,0 +170746401443,227,0 +170746401491,228,0 +170746401539,227,0 +170746401587,229,0 +170746401636,230,0 +170746401684,231,0 +170746401734,231,0 +170746401782,231,0 +170746401831,230,0 +170746401880,231,0 +170746401928,230,0 +170746401976,230,0 +170746402024,228,0 +170746402072,219,0 +170746402120,219,0 +170746402170,220,0 +170746402219,222,0 +170746402269,223,0 +170746402317,226,0 +170746402365,227,0 +170746402414,227,0 +170746402462,228,0 +170746402510,230,0 +170746402558,230,0 +170746402608,230,0 +170746402657,230,0 +170746402705,230,0 +170746402754,231,0 +170746402802,231,0 +170746402850,218,0 +170746402898,221,0 +170746402946,222,0 +170746402994,224,0 +170746403042,225,0 +170746403090,228,0 +170746403139,226,0 +170746403187,228,0 +170746403235,229,0 +170746403283,233,0 +170746403333,231,0 +170746403382,231,0 +170746403430,231,0 +170746403478,231,0 +170746403526,230,0 +170746403576,230,0 +170746403624,230,0 +170746403673,220,0 +170746403723,225,0 +170746403772,226,0 +170746403820,228,0 +170746403868,228,0 +170746403918,229,0 +170746403967,231,0 +170746404017,231,0 +170746404065,230,0 +170746404114,231,0 +170746404162,233,0 +170746404212,230,0 +170746404261,235,0 +170746404309,230,0 +170746404357,231,0 +170746404405,230,0 +170746404453,229,0 +170746404503,229,0 +170746404552,231,0 +170746404602,232,0 +170746404651,230,0 +170746404701,230,0 +170746404749,238,0 +170746404797,231,0 +170746404846,230,0 +170746404894,230,0 +170746404944,229,0 +170746404992,231,0 +170746405040,232,0 +170746405088,230,0 +170746405135,229,0 +170746405185,228,0 +170746405233,228,0 +170746405282,225,0 +170746405330,227,0 +170746405378,227,0 +170746405426,231,0 +170746405474,228,0 +170746405522,228,0 +170746405570,230,0 +170746405618,229,0 +170746405665,230,0 +170746405715,230,0 +170746405763,231,0 +170746405811,230,0 +170746405858,228,0 +170746405906,229,0 +170746405954,229,0 +170746406002,229,0 +170746406050,220,0 +170746406098,223,0 +170746406147,224,0 +170746406195,224,0 +170746406245,225,0 +170746406293,228,0 +170746406341,228,0 +170746406388,227,0 +170746406436,228,0 +170746406484,229,0 +170746406532,231,0 +170746406580,229,0 +170746406628,231,0 +170746406676,231,0 +170746406724,231,0 +170746406772,229,0 +170746406820,229,0 +170746406867,221,0 +170746406915,222,0 +170746406963,223,0 +170746407011,224,0 +170746407059,228,0 +170746407107,227,0 +170746407155,228,0 +170746407203,229,0 +170746407251,232,0 +170746407298,229,0 +170746407346,229,0 +170746407396,230,0 +170746407444,231,0 +170746407492,232,0 +170746407539,233,0 +170746407587,229,0 +170746407635,229,0 +170746407683,222,0 +170746407731,223,0 +170746407779,224,0 +170746407828,225,0 +170746407876,227,0 +170746407924,228,0 +170746407972,230,0 +170746408021,229,0 +170746408069,229,0 +170746408117,231,0 +170746408165,231,0 +170746408213,230,0 +170746408261,229,0 +170746408309,230,0 +170746408357,232,0 +170746408406,230,0 +170746408456,221,0 +170746408504,225,0 +170746408552,225,0 +170746408601,226,0 +170746408649,221,0 +170746408697,228,0 +170746408745,229,0 +170746408793,234,0 +170746408843,230,0 +170746408892,230,0 +170746408942,234,0 +170746408991,230,0 +170746409039,231,0 +170746409089,229,0 +170746409137,229,0 +170746409185,229,0 +170746409234,229,0 +170746409284,222,0 +170746409333,224,0 +170746409381,226,0 +170746409429,226,0 +170746409477,226,0 +170746409526,228,0 +170746409576,229,0 +170746409626,232,0 +170746409674,232,0 +170746409723,230,0 +170746409771,230,0 +170746409821,231,0 +170746409869,231,0 +170746409917,232,0 +170746409966,230,0 +170746410016,230,0 +170746410064,220,0 +170746410113,222,0 +170746410161,223,0 +170746410209,227,0 +170746410257,226,0 +170746410307,229,0 +170746410355,227,0 +170746410404,230,0 +170746410454,230,0 +170746410502,231,0 +170746410551,234,0 +170746410601,231,0 +170746410649,230,0 +170746410698,232,0 +170746410746,231,0 +170746410794,230,0 +170746410842,223,0 +170746410890,228,0 +170746410938,226,0 +170746410986,226,0 +170746411034,226,0 +170746411082,228,0 +170746411130,229,0 +170746411179,233,0 +170746411227,229,0 +170746411277,228,0 +170746411325,231,0 +170746411373,231,0 +170746411421,230,0 +170746411469,229,0 +170746411517,230,0 +170746411565,230,0 +170746411613,229,0 +170746411661,221,0 +170746411709,221,0 +170746411757,222,0 +170746411806,223,0 +170746411854,225,0 +170746411902,225,0 +170746411950,227,0 +170746411998,228,0 +170746412046,230,0 +170746412094,231,0 +170746412142,230,0 +170746412190,230,0 +170746412238,233,0 +170746412286,226,0 +170746412334,231,0 +170746412383,229,0 +170746412433,230,0 +170746412482,219,0 +170746412530,219,0 +170746412580,222,0 +170746412628,223,0 +170746412677,225,0 +170746412725,226,0 +170746412773,228,0 +170746412823,230,0 +170746412871,228,0 +170746412919,230,0 +170746412967,231,0 +170746413015,231,0 +170746413063,230,0 +170746413112,230,0 +170746413162,230,0 +170746413210,229,0 +170746413258,217,0 +170746413306,218,0 +170746413354,221,0 +170746413403,222,0 +170746413451,224,0 +170746413499,223,0 +170746413549,228,0 +170746413597,227,0 +170746413645,231,0 +170746413693,228,0 +170746413741,229,0 +170746413790,230,0 +170746413838,231,0 +170746413886,231,0 +170746413936,229,0 +170746413984,230,0 +170746414033,228,0 +170746414081,217,0 +170746414129,219,0 +170746414177,219,0 +170746414225,227,0 +170746414273,224,0 +170746414321,223,0 +170746414369,223,0 +170746414417,226,0 +170746414467,226,0 +170746414515,227,0 +170746414564,230,0 +170746414614,230,0 +170746414663,229,0 +170746414713,229,0 +170746414762,230,0 +170746414810,229,0 +170746414860,219,0 +170746414909,217,0 +170746414959,220,0 +170746415007,221,0 +170746415055,223,0 +170746415103,225,0 +170746415152,226,0 +170746415200,233,0 +170746415250,228,0 +170746415298,230,0 +170746415346,232,0 +170746415395,230,0 +170746415445,231,0 +170746415493,232,0 +170746415541,230,0 +170746415589,229,0 +170746415637,229,0 +170746415685,225,0 +170746415734,226,0 +170746415784,228,0 +170746415832,231,0 +170746415880,228,0 +170746415928,234,0 +170746415976,230,0 +170746416024,231,0 +170746416071,232,0 +170746416119,230,0 +170746416167,232,0 +170746416217,230,0 +170746416266,230,0 +170746416314,231,0 +170746416362,231,0 +170746416410,231,0 +170746416458,232,0 +170746416508,229,0 +170746416558,230,0 +170746416605,228,0 +170746416653,231,0 +170746416703,233,0 +170746416751,230,0 +170746416801,232,0 +170746416848,232,0 +170746416896,229,0 +170746416946,231,0 +170746416994,229,0 +170746417042,230,0 +170746417091,230,0 +170746417141,230,0 +170746417190,230,0 +170746417238,229,0 +170746417286,223,0 +170746417336,226,0 +170746417384,227,0 +170746417433,229,0 +170746417481,228,0 +170746417529,230,0 +170746417577,230,0 +170746417625,230,0 +170746417673,230,0 +170746417721,230,0 +170746417769,232,0 +170746417819,231,0 +170746417867,230,0 +170746417914,230,0 +170746417964,231,0 +170746418014,229,0 +170746418062,228,0 +170746418110,218,0 +170746418158,220,0 +170746418206,222,0 +170746418255,228,0 +170746418303,224,0 +170746418352,226,0 +170746418402,227,0 +170746418450,230,0 +170746418499,229,0 +170746418547,230,0 +170746418597,231,0 +170746418645,231,0 +170746418695,232,0 +170746418743,232,0 +170746418791,231,0 +170746418840,229,0 +170746418890,217,0 +170746418938,218,0 +170746418986,220,0 +170746419034,221,0 +170746419082,223,0 +170746419129,225,0 +170746419177,226,0 +170746419227,235,0 +170746419277,229,0 +170746419326,230,0 +170746419375,230,0 +170746419423,231,0 +170746419473,232,0 +170746419522,230,0 +170746419572,235,0 +170746419621,230,0 +170746419671,221,0 +170746419720,221,0 +170746419770,223,0 +170746419818,224,0 +170746419867,224,0 +170746419917,226,0 +170746419965,228,0 +170746420013,228,0 +170746420061,229,0 +170746420109,229,0 +170746420158,230,0 +170746420206,230,0 +170746420254,230,0 +170746420304,231,0 +170746420353,230,0 +170746420403,230,0 +170746420452,229,0 +170746420502,224,0 +170746420551,225,0 +170746420599,225,0 +170746420647,226,0 +170746420697,228,0 +170746420745,229,0 +170746420793,229,0 +170746420842,229,0 +170746420892,231,0 +170746420940,231,0 +170746420988,230,0 +170746421036,231,0 +170746421084,230,0 +170746421132,230,0 +170746421181,234,0 +170746421229,230,0 +170746421279,225,0 +170746421327,224,0 +170746421375,230,0 +170746421423,229,0 +170746421471,229,0 +170746421520,243,0 +170746421568,229,0 +170746421616,230,0 +170746421664,230,0 +170746421713,229,0 +170746421761,232,0 +170746421809,230,0 +170746421857,230,0 +170746421905,231,0 +170746421953,230,0 +170746422003,230,0 +170746422051,228,0 +170746422099,225,0 +170746422147,225,0 +170746422195,225,0 +170746422244,228,0 +170746422294,227,0 +170746422343,229,0 +170746422391,229,0 +170746422439,230,0 +170746422489,231,0 +170746422537,232,0 +170746422586,231,0 +170746422634,230,0 +170746422682,231,0 +170746422732,236,0 +170746422780,230,0 +170746422828,229,0 +170746422875,224,0 +170746422925,225,0 +170746422975,226,0 +170746423023,229,0 +170746423070,228,0 +170746423118,229,0 +170746423166,230,0 +170746423214,230,0 +170746423264,229,0 +170746423312,230,0 +170746423361,232,0 +170746423411,231,0 +170746423460,230,0 +170746423510,231,0 +170746423558,229,0 +170746423607,229,0 +170746423657,228,0 +170746423705,221,0 +170746423753,221,0 +170746423802,223,0 +170746423850,224,0 +170746423898,225,0 +170746423946,227,0 +170746423994,229,0 +170746424042,228,0 +170746424090,229,0 +170746424140,230,0 +170746424187,230,0 +170746424235,229,0 +170746424285,231,0 +170746424333,231,0 +170746424381,230,0 +170746424429,229,0 +170746424477,217,0 +170746424525,218,0 +170746424574,221,0 +170746424622,222,0 +170746424670,224,0 +170746424718,225,0 +170746424767,226,0 +170746424815,238,0 +170746424865,228,0 +170746424914,229,0 +170746424962,230,0 +170746425010,230,0 +170746425058,230,0 +170746425108,230,0 +170746425156,230,0 +170746425205,229,0 +170746425255,228,0 +170746425303,219,0 +170746425351,221,0 +170746425400,221,0 +170746425448,222,0 +170746425498,224,0 +170746425546,225,0 +170746425594,227,0 +170746425642,228,0 +170746425690,229,0 +170746425737,230,0 +170746425785,230,0 +170746425835,231,0 +170746425885,230,0 +170746425934,231,0 +170746425984,230,0 +170746426033,229,0 +170746426081,217,0 +170746426129,219,0 +170746426178,219,0 +170746426226,223,0 +170746426274,221,0 +170746426322,223,0 +170746426370,224,0 +170746426420,227,0 +170746426467,228,0 +170746426517,228,0 +170746426565,229,0 +170746426613,231,0 +170746426660,230,0 +170746426708,229,0 +170746426756,230,0 +170746426804,229,0 +170746426854,225,0 +170746426902,218,0 +170746426951,214,0 +170746426999,220,0 +170746427047,223,0 +170746427095,224,0 +170746427144,224,0 +170746427192,226,0 +170746427240,227,0 +170746427290,229,0 +170746427338,229,0 +170746427386,229,0 +170746427434,230,0 +170746427482,231,0 +170746427531,231,0 +170746427579,231,0 +170746427629,230,0 +170746427677,223,0 +170746427725,223,0 +170746427773,225,0 +170746427820,226,0 +170746427868,228,0 +170746427916,229,0 +170746427964,231,0 +170746428014,230,0 +170746428063,230,0 +170746428111,230,0 +170746428159,231,0 +170746428207,231,0 +170746428257,235,0 +170746428305,233,0 +170746428353,230,0 +170746428401,230,0 +170746428449,229,0 +170746428498,221,0 +170746428548,226,0 +170746428596,228,0 +170746428645,228,0 +170746428693,232,0 +170746428741,230,0 +170746428791,230,0 +170746428839,232,0 +170746428888,233,0 +170746428936,232,0 +170746428984,235,0 +170746429032,232,0 +170746429080,232,0 +170746429130,231,0 +170746429178,230,0 +170746429226,230,0 +170746429274,229,0 +170746429322,230,0 +170746429371,229,0 +170746429419,230,0 +170746429469,231,0 +170746429517,231,0 +170746429565,231,0 +170746429613,230,0 +170746429662,231,0 +170746429710,230,0 +170746429758,230,0 +170746429806,230,0 +170746429854,231,0 +170746429904,230,0 +170746429953,230,0 +170746430001,230,0 +170746430049,230,0 +170746430097,229,0 +170746430145,231,0 +170746430193,229,0 +170746430242,229,0 +170746430290,230,0 +170746430338,232,0 +170746430386,234,0 +170746430434,231,0 +170746430484,230,0 +170746430532,234,0 +170746430581,231,0 +170746430631,231,0 +170746430680,230,0 +170746430728,230,0 +170746430778,229,0 +170746430826,228,0 +170746430874,226,0 +170746430923,227,0 +170746430973,227,0 +170746431021,227,0 +170746431069,223,0 +170746431118,231,0 +170746431166,230,0 +170746431214,230,0 +170746431264,231,0 +170746431312,233,0 +170746431361,232,0 +170746431409,230,0 +170746431457,231,0 +170746431507,230,0 +170746431556,230,0 +170746431604,230,0 +170746431652,230,0 +170746431702,224,0 +170746431751,226,0 +170746431801,226,0 +170746431849,228,0 +170746431897,229,0 +170746431945,228,0 +170746431993,229,0 +170746432042,230,0 +170746432092,233,0 +170746432141,235,0 +170746432191,222,0 +170746432239,230,0 +170746432287,230,0 +170746432336,231,0 +170746432384,230,0 +170746432434,230,0 +170746432482,220,0 +170746432530,223,0 +170746432578,223,0 +170746432626,224,0 +170746432674,225,0 +170746432721,227,0 +170746432769,228,0 +170746432819,229,0 +170746432868,230,0 +170746432918,229,0 +170746432968,232,0 +170746433016,232,0 +170746433064,231,0 +170746433113,231,0 +170746433163,231,0 +170746433211,230,0 +170746433258,229,0 +170746433308,221,0 +170746433356,221,0 +170746433406,222,0 +170746433455,224,0 +170746433503,227,0 +170746433551,227,0 +170746433600,229,0 +170746433650,230,0 +170746433698,229,0 +170746433747,230,0 +170746433795,231,0 +170746433845,230,0 +170746433893,230,0 +170746433941,231,0 +170746433989,230,0 +170746434037,228,0 +170746434086,218,0 +170746434134,220,0 +170746434182,222,0 +170746434230,226,0 +170746434278,224,0 +170746434325,226,0 +170746434373,227,0 +170746434421,228,0 +170746434471,228,0 +170746434518,236,0 +170746434566,234,0 +170746434614,231,0 +170746434664,232,0 +170746434713,231,0 +170746434763,230,0 +170746434811,229,0 +170746434860,229,0 +170746434908,219,0 +170746434956,220,0 +170746435005,221,0 +170746435055,222,0 +170746435103,224,0 +170746435151,224,0 +170746435200,228,0 +170746435248,227,0 +170746435298,229,0 +170746435347,230,0 +170746435396,231,0 +170746435444,229,0 +170746435494,230,0 +170746435542,232,0 +170746435590,230,0 +170746435638,229,0 +170746435685,228,0 +170746435733,217,0 +170746435783,220,0 +170746435831,222,0 +170746435878,223,0 +170746435928,225,0 +170746435977,225,0 +170746436027,227,0 +170746436075,228,0 +170746436123,229,0 +170746436171,230,0 +170746436221,230,0 +170746436268,230,0 +170746436316,231,0 +170746436364,229,0 +170746436414,229,0 +170746436463,229,0 +170746436511,216,0 +170746436559,216,0 +170746436607,219,0 +170746436655,221,0 +170746436703,221,0 +170746436751,224,0 +170746436799,224,0 +170746436847,227,0 +170746436895,228,0 +170746436942,229,0 +170746436990,229,0 +170746437038,230,0 +170746437088,231,0 +170746437136,231,0 +170746437184,230,0 +170746437231,231,0 +170746437281,228,0 +170746437329,215,0 +170746437378,215,0 +170746437426,214,0 +170746437474,215,0 +170746437522,216,0 +170746437570,218,0 +170746437618,220,0 +170746437667,221,0 +170746437717,226,0 +170746437764,234,0 +170746437812,227,0 +170746437860,228,0 +170746437910,243,0 +170746437958,229,0 +170746438007,229,0 +170746438055,230,0 +170746438104,217,0 +170746438152,216,0 +170746438200,216,0 +170746438250,218,0 +170746438297,220,0 +170746438345,220,0 +170746438393,222,0 +170746438441,223,0 +170746438489,224,0 +170746438537,225,0 +170746438586,226,0 +170746438634,227,0 +170746438682,230,0 +170746438732,230,0 +170746438780,231,0 +170746438827,230,0 +170746438875,231,0 +170746438923,214,0 +170746438973,220,0 +170746439021,219,0 +170746439070,223,0 +170746439120,223,0 +170746439167,225,0 +170746439215,228,0 +170746439263,226,0 +170746439311,228,0 +170746439359,229,0 +170746439407,228,0 +170746439455,230,0 +170746439503,230,0 +170746439551,230,0 +170746439600,229,0 +170746439650,230,0 +170746439698,227,0 +170746439747,228,0 +170746439795,228,0 +170746439843,228,0 +170746439891,231,0 +170746439939,230,0 +170746439987,232,0 +170746440035,230,0 +170746440082,230,0 +170746440132,231,0 +170746440180,230,0 +170746440228,230,0 +170746440276,230,0 +170746440324,230,0 +170746440371,231,0 +170746440419,230,0 +170746440467,230,0 +170746440517,231,0 +170746440565,232,0 +170746440612,234,0 +170746440660,231,0 +170746440708,237,0 +170746440756,233,0 +170746440804,230,0 +170746440852,230,0 +170746440900,230,0 +170746440949,231,0 +170746440997,231,0 +170746441045,230,0 +170746441093,230,0 +170746441141,230,0 +170746441189,230,0 +170746441238,230,0 +170746441286,231,0 +170746441334,230,0 +170746441382,231,0 +170746441431,230,0 +170746441479,230,0 +170746441527,230,0 +170746441575,230,0 +170746441624,230,0 +170746441672,230,0 +170746441720,230,0 +170746441768,230,0 +170746441816,230,0 +170746441864,230,0 +170746441912,230,0 +170746441960,230,0 +170746442008,229,0 +170746442055,231,0 +170746442105,230,0 +170746442153,231,0 +170746442201,231,0 +170746442249,232,0 +170746442296,232,0 +170746442344,231,0 +170746442392,229,0 +170746442440,231,0 +170746442488,230,0 +170746442536,230,0 +170746442584,230,0 +170746442634,229,0 +170746442683,230,0 +170746442731,230,0 +170746442781,230,0 +170746442829,230,0 +170746442877,229,0 +170746442925,221,0 +170746442973,225,0 +170746443021,225,0 +170746443069,229,0 +170746443118,227,0 +170746443166,228,0 +170746443214,230,0 +170746443262,229,0 +170746443311,229,0 +170746443359,231,0 +170746443409,231,0 +170746443457,230,0 +170746443505,233,0 +170746443552,231,0 +170746443600,230,0 +170746443648,229,0 +170746443696,218,0 +170746443744,218,0 +170746443794,219,0 +170746443841,221,0 +170746443889,222,0 +170746443937,225,0 +170746443987,229,0 +170746444035,221,0 +170746444083,225,0 +170746444131,229,0 +170746444179,232,0 +170746444228,231,0 +170746444278,230,0 +170746444326,231,0 +170746444374,231,0 +170746444422,229,0 +170746444471,228,0 +170746444519,218,0 +170746444569,217,0 +170746444617,220,0 +170746444666,222,0 +170746444716,223,0 +170746444763,225,0 +170746444813,229,0 +170746444862,226,0 +170746444910,231,0 +170746444958,230,0 +170746445006,230,0 +170746445054,230,0 +170746445104,230,0 +170746445151,231,0 +170746445199,231,0 +170746445247,230,0 +170746445297,217,0 +170746445344,217,0 +170746445392,219,0 +170746445440,221,0 +170746445488,223,0 +170746445536,225,0 +170746445584,225,0 +170746445632,227,0 +170746445680,240,0 +170746445729,232,0 +170746445779,232,0 +170746445827,230,0 +170746445875,225,0 +170746445922,232,0 +170746445972,231,0 +170746446020,230,0 +170746446068,228,0 +170746446115,219,0 +170746446165,220,0 +170746446213,223,0 +170746446261,222,0 +170746446309,229,0 +170746446356,226,0 +170746446404,226,0 +170746446452,228,0 +170746446500,228,0 +170746446550,229,0 +170746446597,230,0 +170746446645,229,0 +170746446693,228,0 +170746446741,232,0 +170746446789,230,0 +170746446837,229,0 +170746446886,229,0 +170746446934,217,0 +170746446982,219,0 +170746447032,220,0 +170746447080,222,0 +170746447129,222,0 +170746447177,224,0 +170746447225,225,0 +170746447273,227,0 +170746447321,229,0 +170746447368,230,0 +170746447418,234,0 +170746447466,229,0 +170746447514,230,0 +170746447562,230,0 +170746447611,229,0 +170746447659,229,0 +170746447707,219,0 +170746447756,220,0 +170746447804,222,0 +170746447852,223,0 +170746447900,224,0 +170746447948,226,0 +170746447997,228,0 +170746448045,227,0 +170746448093,229,0 +170746448141,231,0 +170746448189,229,0 +170746448237,231,0 +170746448285,231,0 +170746448333,231,0 +170746448382,229,0 +170746448430,229,0 +170746448478,228,0 +170746448526,222,0 +170746448574,222,0 +170746448621,223,0 +170746448669,224,0 +170746448717,226,0 +170746448765,227,0 +170746448813,228,0 +170746448861,229,0 +170746448909,230,0 +170746448957,229,0 +170746449006,242,0 +170746449054,230,0 +170746449103,230,0 +170746449151,230,0 +170746449199,229,0 +170746449247,228,0 +170746449295,226,0 +170746449344,223,0 +170746449392,224,0 +170746449440,229,0 +170746449490,227,0 +170746449538,228,0 +170746449585,229,0 +170746449635,229,0 +170746449684,230,0 +170746449732,231,0 +170746449782,231,0 +170746449830,231,0 +170746449878,230,0 +170746449926,231,0 +170746449973,229,0 +170746450021,229,0 +170746450069,229,0 +170746450117,225,0 +170746450165,225,0 +170746450213,225,0 +170746450263,227,0 +170746450310,228,0 +170746450358,228,0 +170746450408,230,0 +170746450456,230,0 +170746450504,232,0 +170746450552,230,0 +170746450600,230,0 +170746450649,231,0 +170746450697,230,0 +170746450746,230,0 +170746450794,230,0 +170746450842,229,0 +170746450890,227,0 +170746450938,215,0 +170746450986,222,0 +170746451034,222,0 +170746451082,223,0 +170746451130,225,0 +170746451179,227,0 +170746451228,227,0 +170746451276,222,0 +170746451324,230,0 +170746451372,231,0 +170746451420,232,0 +170746451468,230,0 +170746451516,230,0 +170746451564,230,0 +170746451612,229,0 +170746451660,229,0 +170746451707,217,0 +170746451755,219,0 +170746451803,222,0 +170746451851,223,0 +170746451899,226,0 +170746451947,226,0 +170746451995,228,0 +170746452043,231,0 +170746452091,229,0 +170746452139,230,0 +170746452187,231,0 +170746452235,231,0 +170746452283,231,0 +170746452331,231,0 +170746452381,230,0 +170746452429,229,0 +170746452476,228,0 +170746452524,225,0 +170746452574,225,0 +170746452622,226,0 +170746452670,226,0 +170746452718,228,0 +170746452766,228,0 +170746452814,229,0 +170746452861,230,0 +170746452909,230,0 +170746452957,231,0 +170746453007,231,0 +170746453056,231,0 +170746453104,231,0 +170746453154,230,0 +170746453203,230,0 +170746453251,231,0 +170746453299,230,0 +170746453347,228,0 +170746453395,228,0 +170746453443,228,0 +170746453491,230,0 +170746453538,231,0 +170746453586,247,0 +170746453634,233,0 +170746453682,231,0 +170746453730,231,0 +170746453778,233,0 +170746453826,232,0 +170746453876,231,0 +170746453925,229,0 +170746453973,229,0 +170746454021,231,0 +170746454069,229,0 +170746454119,226,0 +170746454166,226,0 +170746454214,227,0 +170746454262,229,0 +170746454312,222,0 +170746454360,228,0 +170746454409,233,0 +170746454459,230,0 +170746454506,230,0 +170746454554,231,0 +170746454604,231,0 +170746454652,231,0 +170746454701,231,0 +170746454749,230,0 +170746454799,229,0 +170746454847,230,0 +170746454895,229,0 +170746454943,220,0 +170746454991,221,0 +170746455039,224,0 +170746455087,224,0 +170746455135,226,0 +170746455183,227,0 +170746455231,227,0 +170746455278,227,0 +170746455327,229,0 +170746455376,230,0 +170746455424,233,0 +170746455473,231,0 +170746455521,232,0 +170746455569,230,0 +170746455617,230,0 +170746455667,231,0 +170746455715,222,0 +170746455763,222,0 +170746455812,223,0 +170746455862,225,0 +170746455910,227,0 +170746455959,228,0 +170746456007,230,0 +170746456055,229,0 +170746456105,229,0 +170746456154,231,0 +170746456202,231,0 +170746456251,231,0 +170746456299,231,0 +170746456347,230,0 +170746456395,231,0 +170746456443,229,0 +170746456492,230,0 +170746456540,224,0 +170746456590,223,0 +170746456639,224,0 +170746456689,227,0 +170746456738,227,0 +170746456786,229,0 +170746456834,231,0 +170746456884,231,0 +170746456932,232,0 +170746456980,232,0 +170746457028,233,0 +170746457076,230,0 +170746457123,231,0 +170746457171,231,0 +170746457221,230,0 +170746457270,233,0 +170746457318,222,0 +170746457366,222,0 +170746457414,226,0 +170746457463,226,0 +170746457511,228,0 +170746457561,227,0 +170746457610,227,0 +170746457660,239,0 +170746457709,231,0 +170746457759,230,0 +170746457808,230,0 +170746457856,231,0 +170746457906,231,0 +170746457954,230,0 +170746458002,231,0 +170746458051,230,0 +170746458099,230,0 +170746458149,220,0 +170746458197,223,0 +170746458245,224,0 +170746458294,225,0 +170746458344,226,0 +170746458393,227,0 +170746458443,228,0 +170746458493,230,0 +170746458541,230,0 +170746458590,230,0 +170746458638,231,0 +170746458688,230,0 +170746458737,230,0 +170746458785,230,0 +170746458833,240,0 +170746458881,229,0 +170746458929,224,0 +170746458977,224,0 +170746459025,226,0 +170746459074,226,0 +170746459124,228,0 +170746459172,228,0 +170746459221,229,0 +170746459271,229,0 +170746459321,233,0 +170746459368,231,0 +170746459416,230,0 +170746459464,230,0 +170746459514,231,0 +170746459562,229,0 +170746459610,229,0 +170746459658,227,0 +170746459706,228,0 +170746459755,226,0 +170746459803,227,0 +170746459851,227,0 +170746459899,230,0 +170746459947,228,0 +170746459995,230,0 +170746460045,230,0 +170746460093,229,0 +170746460142,230,0 +170746460190,230,0 +170746460238,230,0 +170746460288,231,0 +170746460336,230,0 +170746460385,229,0 +170746460435,229,0 +170746460483,229,0 +170746460531,227,0 +170746460579,241,0 +170746460628,227,0 +170746460678,229,0 +170746460725,228,0 +170746460775,233,0 +170746460825,229,0 +170746460873,229,0 +170746460920,230,0 +170746460968,231,0 +170746461016,231,0 +170746461064,230,0 +170746461112,230,0 +170746461160,230,0 +170746461210,229,0 +170746461259,230,0 +170746461307,228,0 +170746461357,222,0 +170746461405,224,0 +170746461453,223,0 +170746461501,225,0 +170746461550,226,0 +170746461600,226,0 +170746461648,228,0 +170746461696,229,0 +170746461744,229,0 +170746461792,233,0 +170746461839,230,0 +170746461887,231,0 +170746461937,230,0 +170746461985,230,0 +170746462033,230,0 +170746462081,229,0 +170746462129,219,0 +170746462178,220,0 +170746462226,220,0 +170746462276,222,0 +170746462325,224,0 +170746462373,224,0 +170746462421,227,0 +170746462469,227,0 +170746462517,227,0 +170746462567,228,0 +170746462616,229,0 +170746462666,230,0 +170746462714,229,0 +170746462762,230,0 +170746462810,230,0 +170746462859,228,0 +170746462909,229,0 +170746462958,215,0 +170746463008,215,0 +170746463057,215,0 +170746463105,221,0 +170746463155,223,0 +170746463204,225,0 +170746463252,223,0 +170746463302,227,0 +170746463350,227,0 +170746463399,228,0 +170746463447,228,0 +170746463495,230,0 +170746463543,230,0 +170746463593,229,0 +170746463641,228,0 +170746463689,228,0 +170746463738,216,0 +170746463788,216,0 +170746463836,219,0 +170746463884,220,0 +170746463933,225,0 +170746463981,224,0 +170746464031,225,0 +170746464079,226,0 +170746464128,228,0 +170746464178,228,0 +170746464228,229,0 +170746464276,229,0 +170746464324,231,0 +170746464373,230,0 +170746464423,231,0 +170746464471,229,0 +170746464520,227,0 +170746464568,220,0 +170746464618,221,0 +170746464665,222,0 +170746464713,224,0 +170746464763,226,0 +170746464811,228,0 +170746464860,228,0 +170746464908,228,0 +170746464958,228,0 +170746465006,231,0 +170746465054,230,0 +170746465102,230,0 +170746465150,229,0 +170746465198,230,0 +170746465246,230,0 +170746465294,229,0 +170746465342,224,0 +170746465390,227,0 +170746465438,228,0 +170746465486,229,0 +170746465534,228,0 +170746465582,229,0 +170746465630,231,0 +170746465677,237,0 +170746465725,231,0 +170746465773,231,0 +170746465821,231,0 +170746465869,232,0 +170746465917,231,0 +170746465965,230,0 +170746466013,231,0 +170746466063,229,0 +170746466112,230,0 +170746466162,220,0 +170746466210,226,0 +170746466259,228,0 +170746466309,228,0 +170746466359,232,0 +170746466408,230,0 +170746466458,230,0 +170746466507,231,0 +170746466555,232,0 +170746466603,231,0 +170746466653,230,0 +170746466702,230,0 +170746466750,231,0 +170746466800,230,0 +170746466849,229,0 +170746466899,229,0 +170746466947,220,0 +170746466995,220,0 +170746467043,224,0 +170746467092,224,0 +170746467142,224,0 +170746467190,225,0 +170746467238,228,0 +170746467287,228,0 +170746467335,229,0 +170746467383,228,0 +170746467433,229,0 +170746467482,228,0 +170746467530,231,0 +170746467578,231,0 +170746467626,229,0 +170746467674,229,0 +170746467724,227,0 +170746467773,218,0 +170746467821,220,0 +170746467869,222,0 +170746467917,226,0 +170746467965,224,0 +170746468013,225,0 +170746468063,227,0 +170746468112,228,0 +170746468162,230,0 +170746468210,231,0 +170746468258,231,0 +170746468307,231,0 +170746468357,232,0 +170746468405,231,0 +170746468454,229,0 +170746468502,228,0 +170746468550,220,0 +170746468600,221,0 +170746468648,223,0 +170746468697,225,0 +170746468747,229,0 +170746468795,225,0 +170746468843,229,0 +170746468891,228,0 +170746468939,231,0 +170746468988,232,0 +170746469036,231,0 +170746469084,232,0 +170746469132,232,0 +170746469182,231,0 +170746469229,231,0 +170746469279,230,0 +170746469327,226,0 +170746469377,223,0 +170746469424,224,0 +170746469472,226,0 +170746469522,227,0 +170746469571,229,0 +170746469621,230,0 +170746469669,230,0 +170746469717,231,0 +170746469765,231,0 +170746469813,232,0 +170746469862,232,0 +170746469912,230,0 +170746469960,230,0 +170746470009,230,0 +170746470057,228,0 +170746470105,229,0 +170746470153,224,0 +170746470203,224,0 +170746470251,225,0 +170746470299,226,0 +170746470348,228,0 +170746470396,228,0 +170746470444,229,0 +170746470492,229,0 +170746470540,230,0 +170746470590,233,0 +170746470639,231,0 +170746470687,230,0 +170746470735,230,0 +170746470783,231,0 +170746470833,234,0 +170746470881,229,0 +170746470930,222,0 +170746470980,224,0 +170746471029,226,0 +170746471079,227,0 +170746471128,227,0 +170746471178,229,0 +170746471226,232,0 +170746471274,229,0 +170746471322,230,0 +170746471371,233,0 +170746471419,229,0 +170746471467,231,0 +170746471515,230,0 +170746471563,230,0 +170746471611,229,0 +170746471659,231,0 +170746471709,228,0 +170746471756,223,0 +170746471806,224,0 +170746471854,224,0 +170746471903,225,0 +170746471951,228,0 +170746471999,227,0 +170746472049,228,0 +170746472098,230,0 +170746472146,230,0 +170746472196,229,0 +170746472244,229,0 +170746472293,230,0 +170746472341,230,0 +170746472389,230,0 +170746472439,229,0 +170746472487,229,0 +170746472536,219,0 +170746472584,221,0 +170746472634,223,0 +170746472683,223,0 +170746472731,224,0 +170746472781,228,0 +170746472830,227,0 +170746472880,226,0 +170746472928,232,0 +170746472976,229,0 +170746473024,231,0 +170746473072,230,0 +170746473120,230,0 +170746473169,230,0 +170746473219,230,0 +170746473268,229,0 +170746473316,228,0 +170746473364,222,0 +170746473414,225,0 +170746473462,227,0 +170746473511,226,0 +170746473561,226,0 +170746473610,228,0 +170746473658,230,0 +170746473706,228,0 +170746473756,230,0 +170746473805,230,0 +170746473853,230,0 +170746473901,230,0 +170746473949,231,0 +170746473997,231,0 +170746474047,231,0 +170746474096,230,0 +170746474146,220,0 +170746474194,221,0 +170746474243,223,0 +170746474291,226,0 +170746474339,225,0 +170746474387,228,0 +170746474437,227,0 +170746474485,229,0 +170746474534,229,0 +170746474582,231,0 +170746474630,230,0 +170746474678,231,0 +170746474728,234,0 +170746474777,230,0 +170746474825,231,0 +170746474873,230,0 +170746474921,229,0 +170746474969,218,0 +170746475019,220,0 +170746475068,222,0 +170746475116,225,0 +170746475164,229,0 +170746475212,225,0 +170746475262,224,0 +170746475311,227,0 +170746475359,229,0 +170746475407,229,0 +170746475457,229,0 +170746475506,231,0 +170746475556,231,0 +170746475604,230,0 +170746475652,229,0 +170746475700,229,0 +170746475749,216,0 +170746475799,217,0 +170746475848,218,0 +170746475896,220,0 +170746475946,221,0 +170746475994,222,0 +170746476042,224,0 +170746476092,226,0 +170746476139,226,0 +170746476187,227,0 +170746476235,230,0 +170746476283,230,0 +170746476331,232,0 +170746476381,230,0 +170746476429,231,0 +170746476477,231,0 +170746476526,229,0 +170746476574,219,0 +170746476624,221,0 +170746476672,223,0 +170746476720,225,0 +170746476768,227,0 +170746476817,227,0 +170746476867,231,0 +170746476915,232,0 +170746476963,230,0 +170746477011,229,0 +170746477060,230,0 +170746477108,230,0 +170746477158,231,0 +170746477206,230,0 +170746477255,231,0 +170746477305,230,0 +170746477354,222,0 +170746477402,229,0 +170746477450,227,0 +170746477500,230,0 +170746477549,229,0 +170746477599,230,0 +170746477648,230,0 +170746477698,232,0 +170746477746,231,0 +170746477796,231,0 +170746477845,231,0 +170746477893,233,0 +170746477941,232,0 +170746477989,231,0 +170746478037,230,0 +170746478085,230,0 +170746478133,225,0 +170746478182,233,0 +170746478232,230,0 +170746478280,229,0 +170746478328,231,0 +170746478377,231,0 +170746478427,230,0 +170746478476,230,0 +170746478524,231,0 +170746478572,231,0 +170746478622,233,0 +170746478670,231,0 +170746478718,229,0 +170746478767,231,0 +170746478815,229,0 +170746478863,228,0 +170746478913,230,0 +170746478961,227,0 +170746479010,229,0 +170746479060,230,0 +170746479108,229,0 +170746479157,230,0 +170746479205,229,0 +170746479255,229,0 +170746479304,231,0 +170746479354,230,0 +170746479403,231,0 +170746479453,230,0 +170746479501,230,0 +170746479549,229,0 +170746479597,229,0 +170746479646,230,0 +170746479694,230,0 +170746479744,226,0 +170746479793,227,0 +170746479843,227,0 +170746479891,227,0 +170746479940,232,0 +170746479988,231,0 +170746480036,231,0 +170746480086,229,0 +170746480134,231,0 +170746480182,232,0 +170746480230,230,0 +170746480279,231,0 +170746480329,230,0 +170746480377,230,0 +170746480426,229,0 +170746480476,228,0 +170746480524,229,0 +170746480573,222,0 +170746480621,223,0 +170746480669,226,0 +170746480717,227,0 +170746480765,228,0 +170746480815,229,0 +170746480864,232,0 +170746480912,232,0 +170746480962,231,0 +170746481010,231,0 +170746481058,232,0 +170746481106,230,0 +170746481155,231,0 +170746481203,230,0 +170746481253,229,0 +170746481301,229,0 +170746481349,220,0 +170746481398,222,0 +170746481448,223,0 +170746481496,223,0 +170746481544,227,0 +170746481592,227,0 +170746481639,228,0 +170746481687,229,0 +170746481737,228,0 +170746481785,229,0 +170746481833,230,0 +170746481881,231,0 +170746481931,229,0 +170746481979,229,0 +170746482027,229,0 +170746482074,229,0 +170746482124,229,0 +170746482172,218,0 +170746482221,218,0 +170746482271,221,0 +170746482321,222,0 +170746482369,224,0 +170746482416,225,0 +170746482466,227,0 +170746482514,228,0 +170746482562,228,0 +170746482611,229,0 +170746482661,228,0 +170746482709,231,0 +170746482758,232,0 +170746482808,230,0 +170746482856,229,0 +170746482904,227,0 +170746482954,217,0 +170746483003,216,0 +170746483053,217,0 +170746483100,220,0 +170746483148,220,0 +170746483196,223,0 +170746483244,224,0 +170746483292,224,0 +170746483340,227,0 +170746483388,229,0 +170746483436,227,0 +170746483484,230,0 +170746483532,230,0 +170746483582,229,0 +170746483631,230,0 +170746483679,229,0 +170746483729,228,0 +170746483777,215,0 +170746483826,214,0 +170746483874,219,0 +170746483922,218,0 +170746483972,220,0 +170746484021,222,0 +170746484069,224,0 +170746484119,225,0 +170746484168,227,0 +170746484216,229,0 +170746484264,228,0 +170746484312,229,0 +170746484362,231,0 +170746484411,230,0 +170746484461,229,0 +170746484510,228,0 +170746484558,217,0 +170746484608,215,0 +170746484657,215,0 +170746484707,218,0 +170746484756,218,0 +170746484804,221,0 +170746484854,222,0 +170746484902,225,0 +170746484950,223,0 +170746484998,224,0 +170746485047,226,0 +170746485095,228,0 +170746485145,230,0 +170746485195,229,0 +170746485244,229,0 +170746485292,230,0 +170746485341,227,0 +170746485389,218,0 +170746485439,220,0 +170746485487,223,0 +170746485535,223,0 +170746485585,224,0 +170746485633,225,0 +170746485682,226,0 +170746485732,227,0 +170746485780,228,0 +170746485829,230,0 +170746485877,229,0 +170746485925,231,0 +170746485973,230,0 +170746486021,229,0 +170746486071,228,0 +170746486120,228,0 +170746486168,218,0 +170746486216,219,0 +170746486265,222,0 +170746486313,221,0 +170746486361,222,0 +170746486409,224,0 +170746486457,225,0 +170746486507,226,0 +170746486556,227,0 +170746486604,229,0 +170746486654,228,0 +170746486702,229,0 +170746486750,230,0 +170746486798,229,0 +170746486846,230,0 +170746486894,230,0 +170746486942,221,0 +170746486991,219,0 +170746487041,220,0 +170746487089,223,0 +170746487137,223,0 +170746487185,224,0 +170746487233,224,0 +170746487281,226,0 +170746487330,228,0 +170746487380,228,0 +170746487429,229,0 +170746487479,230,0 +170746487528,229,0 +170746487578,229,0 +170746487627,229,0 +170746487675,228,0 +170746487723,227,0 +170746487773,216,0 +170746487821,220,0 +170746487870,222,0 +170746487920,224,0 +170746487969,226,0 +170746488017,225,0 +170746488067,225,0 +170746488116,226,0 +170746488166,228,0 +170746488214,229,0 +170746488262,227,0 +170746488310,228,0 +170746488359,229,0 +170746488409,228,0 +170746488457,228,0 +170746488505,228,0 +170746488553,220,0 +170746488601,223,0 +170746488649,224,0 +170746488697,225,0 +170746488745,226,0 +170746488793,227,0 +170746488842,227,0 +170746488892,228,0 +170746488939,228,0 +170746488989,229,0 +170746489037,229,0 +170746489085,229,0 +170746489135,228,0 +170746489183,229,0 +170746489231,229,0 +170746489280,229,0 +170746489330,230,0 +170746489379,230,0 +170746489427,229,0 +170746489477,229,0 +170746489526,229,0 +170746489576,229,0 +170746489625,230,0 +170746489675,229,0 +170746489724,230,0 +170746489772,230,0 +170746489822,230,0 +170746489871,229,0 +170746489919,230,0 +170746489967,230,0 +170746490017,229,0 +170746490065,229,0 +170746490114,229,0 +170746490164,229,0 +170746490212,230,0 +170746490261,232,0 +170746490311,231,0 +170746490359,230,0 +170746490408,231,0 +170746490456,230,0 +170746490504,230,0 +170746490552,230,0 +170746490601,230,0 +170746490649,229,0 +170746490699,230,0 +170746490748,229,0 +170746490798,231,0 +170746490847,231,0 +170746490897,229,0 +170746490946,230,0 +170746490994,229,0 +170746491042,228,0 +170746491092,230,0 +170746491140,230,0 +170746491188,231,0 +170746491236,230,0 +170746491285,230,0 +170746491333,225,0 +170746491383,231,0 +170746491431,230,0 +170746491479,229,0 +170746491527,229,0 +170746491575,229,0 +170746491623,228,0 +170746491671,230,0 +170746491720,228,0 +170746491768,223,0 +170746491816,225,0 +170746491864,225,0 +170746491912,231,0 +170746491960,228,0 +170746492009,227,0 +170746492059,228,0 +170746492107,230,0 +170746492155,229,0 +170746492204,230,0 +170746492252,232,0 +170746492301,230,0 +170746492349,229,0 +170746492397,230,0 +170746492446,229,0 +170746492494,230,0 +170746492542,225,0 +170746492590,221,0 +170746492638,224,0 +170746492686,225,0 +170746492734,226,0 +170746492783,227,0 +170746492833,227,0 +170746492881,228,0 +170746492929,229,0 +170746492978,229,0 +170746493026,230,0 +170746493074,231,0 +170746493122,231,0 +170746493170,230,0 +170746493218,230,0 +170746493266,230,0 +170746493314,228,0 +170746493362,219,0 +170746493411,220,0 +170746493459,222,0 +170746493508,225,0 +170746493558,225,0 +170746493606,226,0 +170746493654,227,0 +170746493702,229,0 +170746493750,229,0 +170746493797,231,0 +170746493845,229,0 +170746493893,231,0 +170746493941,230,0 +170746493991,230,0 +170746494038,229,0 +170746494086,230,0 +170746494136,230,0 +170746494184,220,0 +170746494232,221,0 +170746494279,231,0 +170746494327,224,0 +170746494375,225,0 +170746494423,227,0 +170746494473,228,0 +170746494520,229,0 +170746494568,231,0 +170746494616,230,0 +170746494664,230,0 +170746494712,230,0 +170746494762,230,0 +170746494809,230,0 +170746494857,229,0 +170746494907,229,0 +170746494955,219,0 +170746495004,218,0 +170746495052,220,0 +170746495100,222,0 +170746495148,224,0 +170746495196,224,0 +170746495244,225,0 +170746495292,226,0 +170746495340,230,0 +170746495388,230,0 +170746495437,229,0 +170746495487,231,0 +170746495535,229,0 +170746495582,233,0 +170746495630,230,0 +170746495680,230,0 +170746495729,229,0 +170746495777,216,0 +170746495825,219,0 +170746495873,219,0 +170746495921,221,0 +170746495970,224,0 +170746496018,224,0 +170746496066,227,0 +170746496114,226,0 +170746496162,227,0 +170746496209,228,0 +170746496259,228,0 +170746496307,229,0 +170746496356,227,0 +170746496404,230,0 +170746496454,230,0 +170746496502,239,0 +170746496550,227,0 +170746496597,217,0 +170746496647,217,0 +170746496695,220,0 +170746496744,222,0 +170746496792,222,0 +170746496840,225,0 +170746496888,225,0 +170746496936,228,0 +170746496984,228,0 +170746497033,229,0 +170746497083,231,0 +170746497132,232,0 +170746497180,229,0 +170746497228,231,0 +170746497276,229,0 +170746497324,228,0 +170746497373,217,0 +170746497423,218,0 +170746497471,219,0 +170746497519,221,0 +170746497566,223,0 +170746497614,224,0 +170746497662,225,0 +170746497710,227,0 +170746497758,227,0 +170746497808,228,0 +170746497857,229,0 +170746497907,243,0 +170746497955,230,0 +170746498002,230,0 +170746498050,231,0 +170746498098,229,0 +170746498148,218,0 +170746498196,219,0 +170746498243,222,0 +170746498293,223,0 +170746498341,223,0 +170746498390,223,0 +170746498438,225,0 +170746498486,226,0 +170746498534,226,0 +170746498582,229,0 +170746498630,229,0 +170746498678,228,0 +170746498725,229,0 +170746498773,229,0 +170746498821,229,0 +170746498869,229,0 +170746498919,228,0 +170746498966,223,0 +170746499014,222,0 +170746499062,223,0 +170746499110,226,0 +170746499158,226,0 +170746499206,227,0 +170746499255,229,0 +170746499303,228,0 +170746499351,230,0 +170746499399,230,0 +170746499447,230,0 +170746499495,230,0 +170746499543,230,0 +170746499590,230,0 +170746499640,229,0 +170746499689,229,0 +170746499737,227,0 +170746499785,222,0 +170746499833,221,0 +170746499881,218,0 +170746499929,225,0 +170746499977,226,0 +170746500026,226,0 +170746500076,229,0 +170746500124,227,0 +170746500172,228,0 +170746500221,229,0 +170746500269,233,0 +170746500317,229,0 +170746500367,228,0 +170746500415,229,0 +170746500463,228,0 +170746500511,227,0 +170746500559,215,0 +170746500608,215,0 +170746500656,219,0 +170746500704,231,0 +170746500752,223,0 +170746500800,224,0 +170746500849,227,0 +170746500897,226,0 +170746500945,228,0 +170746500995,228,0 +170746501045,230,0 +170746501093,229,0 +170746501140,229,0 +170746501188,229,0 +170746501236,229,0 +170746501284,229,0 +170746501334,227,0 +170746501383,225,0 +170746501431,225,0 +170746501479,226,0 +170746501527,227,0 +170746501577,227,0 +170746501625,228,0 +170746501673,230,0 +170746501722,229,0 +170746501772,231,0 +170746501820,229,0 +170746501868,230,0 +170746501916,229,0 +170746501964,230,0 +170746502013,229,0 +170746502063,229,0 +170746502111,230,0 +170746502159,228,0 +170746502208,231,0 +170746502256,230,0 +170746502304,229,0 +170746502352,229,0 +170746502400,231,0 +170746502448,229,0 +170746502498,231,0 +170746502546,231,0 +170746502594,233,0 +170746502642,231,0 +170746502690,231,0 +170746502738,230,0 +170746502786,231,0 +170746502834,229,0 +170746502883,229,0 +170746502933,228,0 +170746502982,229,0 +170746503030,227,0 +170746503078,230,0 +170746503128,228,0 +170746503177,229,0 +170746503225,230,0 +170746503273,230,0 +170746503323,228,0 +170746503372,229,0 +170746503420,228,0 +170746503468,228,0 +170746503518,229,0 +170746503567,228,0 +170746503615,228,0 +170746503665,228,0 +170746503714,227,0 +170746503762,224,0 +170746503810,223,0 +170746503860,225,0 +170746503908,226,0 +170746503955,227,0 +170746504003,230,0 +170746504051,227,0 +170746504099,228,0 +170746504147,231,0 +170746504197,230,0 +170746504245,230,0 +170746504293,231,0 +170746504341,235,0 +170746504390,229,0 +170746504440,230,0 +170746504489,229,0 +170746504539,228,0 +170746504587,222,0 +170746504636,222,0 +170746504686,224,0 +170746504735,225,0 +170746504785,226,0 +170746504833,229,0 +170746504881,228,0 +170746504930,229,0 +170746504980,229,0 +170746505029,229,0 +170746505079,229,0 +170746505127,229,0 +170746505175,229,0 +170746505224,229,0 +170746505272,229,0 +170746505320,229,0 +170746505370,221,0 +170746505418,226,0 +170746505467,223,0 +170746505517,224,0 +170746505566,226,0 +170746505616,227,0 +170746505665,227,0 +170746505715,230,0 +170746505764,229,0 +170746505812,228,0 +170746505862,230,0 +170746505911,231,0 +170746505959,232,0 +170746506007,229,0 +170746506057,228,0 +170746506105,229,0 +170746506154,218,0 +170746506202,218,0 +170746506250,219,0 +170746506298,221,0 +170746506346,223,0 +170746506394,223,0 +170746506442,234,0 +170746506491,228,0 +170746506539,229,0 +170746506587,229,0 +170746506635,229,0 +170746506683,230,0 +170746506733,229,0 +170746506781,234,0 +170746506829,230,0 +170746506877,229,0 +170746506925,228,0 +170746506973,217,0 +170746507021,216,0 +170746507069,217,0 +170746507117,219,0 +170746507165,221,0 +170746507214,222,0 +170746507264,223,0 +170746507313,224,0 +170746507363,226,0 +170746507412,226,0 +170746507460,228,0 +170746507510,228,0 +170746507558,230,0 +170746507605,229,0 +170746507653,228,0 +170746507701,229,0 +170746507749,230,0 +170746507797,229,0 +170746507845,230,0 +170746507894,229,0 +170746507942,229,0 +170746507990,229,0 +170746508040,230,0 +170746508088,230,0 +170746508136,228,0 +170746508184,224,0 +170746508232,225,0 +170746508281,227,0 +170746508331,226,0 +170746508380,229,0 +170746508428,230,0 +170746508476,230,0 +170746508526,231,0 +170746508575,230,0 +170746508623,229,0 +170746508671,230,0 +170746508721,230,0 +170746508770,229,0 +170746508820,229,0 +170746508869,230,0 +170746508917,228,0 +170746508965,222,0 +170746509013,228,0 +170746509063,225,0 +170746509112,226,0 +170746509160,229,0 +170746509208,229,0 +170746509256,228,0 +170746509304,230,0 +170746509354,230,0 +170746509403,229,0 +170746509453,229,0 +170746509501,228,0 +170746509549,229,0 +170746509596,229,0 +170746509644,230,0 +170746509694,228,0 +170746509743,227,0 +170746509791,221,0 +170746509839,223,0 +170746509887,225,0 +170746509935,226,0 +170746509984,226,0 +170746510032,228,0 +170746510080,228,0 +170746510128,232,0 +170746510176,229,0 +170746510224,229,0 +170746510272,228,0 +170746510320,229,0 +170746510368,229,0 +170746510415,229,0 +170746510465,228,0 +170746510513,228,0 +170746510561,223,0 +170746510609,222,0 +170746510657,224,0 +170746510704,225,0 +170746510752,225,0 +170746510800,226,0 +170746510848,226,0 +170746510896,227,0 +170746510944,229,0 +170746510992,229,0 +170746511040,229,0 +170746511088,229,0 +170746511137,230,0 +170746511187,228,0 +170746511235,229,0 +170746511283,229,0 +170746511330,228,0 +170746511380,221,0 +170746511429,221,0 +170746511477,222,0 +170746511525,223,0 +170746511573,226,0 +170746511621,226,0 +170746511669,226,0 +170746511717,227,0 +170746511765,228,0 +170746511813,228,0 +170746511861,229,0 +170746511909,228,0 +170746511957,229,0 +170746512006,229,0 +170746512054,229,0 +170746512104,227,0 +170746512152,217,0 +170746512200,217,0 +170746512249,219,0 +170746512299,221,0 +170746512346,222,0 +170746512394,223,0 +170746512442,224,0 +170746512490,225,0 +170746512540,225,0 +170746512588,227,0 +170746512636,229,0 +170746512684,229,0 +170746512732,228,0 +170746512781,230,0 +170746512831,229,0 +170746512880,229,0 +170746512928,228,0 +170746512976,215,0 +170746513026,214,0 +170746513074,218,0 +170746513122,221,0 +170746513170,221,0 +170746513218,223,0 +170746513266,223,0 +170746513315,224,0 +170746513363,226,0 +170746513413,227,0 +170746513462,228,0 +170746513512,229,0 +170746513560,229,0 +170746513608,229,0 +170746513656,228,0 +170746513704,228,0 +170746513751,218,0 +170746513801,222,0 +170746513850,223,0 +170746513898,224,0 +170746513946,225,0 +170746513996,226,0 +170746514044,226,0 +170746514092,228,0 +170746514139,229,0 +170746514187,230,0 +170746514235,229,0 +170746514285,230,0 +170746514333,230,0 +170746514380,229,0 +170746514428,230,0 +170746514476,229,0 +170746514524,229,0 +170746514572,225,0 +170746514620,228,0 +170746514668,228,0 +170746514717,230,0 +170746514767,229,0 +170746514815,230,0 +170746514862,230,0 +170746514910,230,0 +170746514958,231,0 +170746515008,229,0 +170746515057,230,0 +170746515105,230,0 +170746515153,230,0 +170746515203,232,0 +170746515252,228,0 +170746515300,228,0 +170746515348,223,0 +170746515398,223,0 +170746515446,226,0 +170746515494,227,0 +170746515542,226,0 +170746515589,226,0 +170746515639,230,0 +170746515688,236,0 +170746515738,229,0 +170746515786,231,0 +170746515834,231,0 +170746515882,231,0 +170746515930,231,0 +170746515979,229,0 +170746516027,230,0 +170746516077,219,0 +170746516126,228,0 +170746516174,221,0 +170746516224,222,0 +170746516273,223,0 +170746516321,223,0 +170746516371,225,0 +170746516419,225,0 +170746516467,227,0 +170746516515,232,0 +170746516564,229,0 +170746516612,229,0 +170746516660,229,0 +170746516708,230,0 +170746516758,230,0 +170746516807,230,0 +170746516857,229,0 +170746516905,229,0 +170746516954,219,0 +170746517002,222,0 +170746517050,223,0 +170746517099,223,0 +170746517149,227,0 +170746517197,227,0 +170746517245,228,0 +170746517293,228,0 +170746517341,228,0 +170746517389,230,0 +170746517437,229,0 +170746517485,230,0 +170746517533,230,0 +170746517582,232,0 +170746517632,232,0 +170746517680,228,0 +170746517728,228,0 +170746517776,223,0 +170746517825,223,0 +170746517875,224,0 +170746517924,225,0 +170746517974,227,0 +170746518023,228,0 +170746518071,228,0 +170746518119,228,0 +170746518169,228,0 +170746518218,229,0 +170746518268,230,0 +170746518317,229,0 +170746518365,230,0 +170746518413,230,0 +170746518461,229,0 +170746518509,229,0 +170746518557,223,0 +170746518605,234,0 +170746518654,226,0 +170746518702,226,0 +170746518750,226,0 +170746518798,229,0 +170746518846,229,0 +170746518894,229,0 +170746518942,229,0 +170746518990,227,0 +170746519038,229,0 +170746519085,229,0 +170746519133,230,0 +170746519181,229,0 +170746519231,229,0 +170746519279,230,0 +170746519327,229,0 +170746519375,226,0 +170746519422,226,0 +170746519472,226,0 +170746519520,227,0 +170746519568,228,0 +170746519616,229,0 +170746519665,231,0 +170746519715,230,0 +170746519764,231,0 +170746519812,234,0 +170746519862,230,0 +170746519911,230,0 +170746519961,230,0 +170746520010,229,0 +170746520060,229,0 +170746520108,228,0 +170746520156,220,0 +170746520206,228,0 +170746520255,224,0 +170746520303,225,0 +170746520351,226,0 +170746520399,227,0 +170746520447,227,0 +170746520496,229,0 +170746520546,228,0 +170746520594,228,0 +170746520643,230,0 +170746520693,230,0 +170746520743,233,0 +170746520790,230,0 +170746520838,228,0 +170746520886,228,0 +170746520934,227,0 +170746520984,223,0 +170746521032,226,0 +170746521081,224,0 +170746521129,227,0 +170746521177,228,0 +170746521225,227,0 +170746521273,229,0 +170746521321,229,0 +170746521369,229,0 +170746521419,229,0 +170746521468,228,0 +170746521518,229,0 +170746521567,229,0 +170746521617,229,0 +170746521666,229,0 +170746521716,229,0 +170746521765,223,0 +170746521815,222,0 +170746521863,225,0 +170746521912,225,0 +170746521960,228,0 +170746522008,227,0 +170746522056,228,0 +170746522104,229,0 +170746522154,229,0 +170746522203,231,0 +170746522251,229,0 +170746522301,231,0 +170746522349,229,0 +170746522397,229,0 +170746522444,229,0 +170746522492,228,0 +170746522540,228,0 +170746522590,220,0 +170746522639,222,0 +170746522687,223,0 +170746522735,224,0 +170746522785,227,0 +170746522833,225,0 +170746522881,229,0 +170746522929,230,0 +170746522977,229,0 +170746523025,229,0 +170746523073,229,0 +170746523122,229,0 +170746523170,230,0 +170746523218,229,0 +170746523266,228,0 +170746523314,229,0 +170746523364,218,0 +170746523413,219,0 +170746523463,220,0 +170746523510,221,0 +170746523558,223,0 +170746523606,224,0 +170746523654,225,0 +170746523702,226,0 +170746523750,226,0 +170746523798,229,0 +170746523846,228,0 +170746523896,228,0 +170746523945,229,0 +170746523995,230,0 +170746524043,229,0 +170746524091,229,0 +170746524140,229,0 +170746524188,216,0 +170746524236,216,0 +170746524286,219,0 +170746524334,220,0 +170746524381,220,0 +170746524429,221,0 +170746524479,223,0 +170746524527,224,0 +170746524576,226,0 +170746524624,227,0 +170746524674,227,0 +170746524723,228,0 +170746524771,229,0 +170746524819,228,0 +170746524867,229,0 +170746524915,229,0 +170746524963,219,0 +170746525013,214,0 +170746525061,217,0 +170746525109,216,0 +170746525157,221,0 +170746525205,222,0 +170746525253,224,0 +170746525302,224,0 +170746525352,225,0 +170746525400,226,0 +170746525448,227,0 +170746525496,227,0 +170746525545,228,0 +170746525593,230,0 +170746525641,229,0 +170746525691,229,0 +170746525740,228,0 +170746525790,219,0 +170746525839,221,0 +170746525887,222,0 +170746525937,224,0 +170746525985,225,0 +170746526032,226,0 +170746526080,227,0 +170746526128,227,0 +170746526176,228,0 +170746526224,230,0 +170746526274,229,0 +170746526323,229,0 +170746526371,229,0 +170746526419,230,0 +170746526467,228,0 +170746526517,229,0 +170746526565,220,0 +170746526613,226,0 +170746526661,226,0 +170746526709,234,0 +170746526756,229,0 +170746526806,230,0 +170746526854,230,0 +170746526903,230,0 +170746526952,230,0 +170746526999,230,0 +170746527047,231,0 +170746527097,230,0 +170746527145,230,0 +170746527193,231,0 +170746527241,230,0 +170746527290,229,0 +170746527338,224,0 +170746527386,227,0 +170746527434,229,0 +170746527482,230,0 +170746527532,229,0 +170746527580,233,0 +170746527627,230,0 +170746527675,229,0 +170746527723,230,0 +170746527771,230,0 +170746527819,229,0 +170746527868,229,0 +170746527916,229,0 +170746527964,230,0 +170746528014,230,0 +170746528062,230,0 +170746528110,229,0 +170746528158,229,0 +170746528206,228,0 +170746528255,231,0 +170746528303,227,0 +170746528353,229,0 +170746528401,231,0 +170746528450,228,0 +170746528498,230,0 +170746528548,230,0 +170746528597,230,0 +170746528645,228,0 +170746528693,231,0 +170746528742,229,0 +170746528790,230,0 +170746528838,229,0 +170746528886,228,0 +170746528936,229,0 +170746528984,225,0 +170746529031,227,0 +170746529081,229,0 +170746529129,228,0 +170746529177,229,0 +170746529226,231,0 +170746529274,229,0 +170746529322,230,0 +170746529372,231,0 +170746529420,231,0 +170746529467,230,0 +170746529515,229,0 +170746529563,229,0 +170746529613,229,0 +170746529661,228,0 +170746529710,228,0 +170746529758,228,0 +170746529808,224,0 +170746529856,224,0 +170746529904,226,0 +170746529953,226,0 +170746530003,227,0 +170746530052,229,0 +170746530102,229,0 +170746530151,229,0 +170746530199,235,0 +170746530249,230,0 +170746530297,229,0 +170746530346,230,0 +170746530394,230,0 +170746530444,230,0 +170746530492,229,0 +170746530540,227,0 +170746530589,223,0 +170746530637,222,0 +170746530685,225,0 +170746530733,228,0 +170746530781,226,0 +170746530829,227,0 +170746530877,229,0 +170746530926,229,0 +170746530974,230,0 +170746531024,230,0 +170746531072,230,0 +170746531120,230,0 +170746531167,230,0 +170746531215,230,0 +170746531263,228,0 +170746531311,229,0 +170746531359,226,0 +170746531407,219,0 +170746531455,220,0 +170746531503,222,0 +170746531550,224,0 +170746531600,226,0 +170746531648,225,0 +170746531696,227,0 +170746531745,229,0 +170746531793,228,0 +170746531841,229,0 +170746531889,230,0 +170746531939,229,0 +170746531987,231,0 +170746532036,230,0 +170746532084,231,0 +170746532132,228,0 +170746532180,219,0 +170746532228,219,0 +170746532277,220,0 +170746532325,222,0 +170746532375,223,0 +170746532423,224,0 +170746532472,227,0 +170746532520,227,0 +170746532570,229,0 +170746532618,228,0 +170746532667,229,0 +170746532717,232,0 +170746532765,232,0 +170746532813,231,0 +170746532862,230,0 +170746532910,229,0 +170746532960,227,0 +170746533008,218,0 +170746533056,220,0 +170746533105,223,0 +170746533153,226,0 +170746533203,223,0 +170746533252,226,0 +170746533302,230,0 +170746533351,229,0 +170746533401,232,0 +170746533449,231,0 +170746533497,229,0 +170746533546,231,0 +170746533596,229,0 +170746533645,229,0 +170746533693,229,0 +170746533741,228,0 +170746533789,217,0 +170746533837,218,0 +170746533887,220,0 +170746533935,221,0 +170746533982,223,0 +170746534030,224,0 +170746534078,225,0 +170746534128,226,0 +170746534176,226,0 +170746534225,228,0 +170746534273,230,0 +170746534323,228,0 +170746534371,229,0 +170746534420,228,0 +170746534470,229,0 +170746534518,228,0 +170746534566,223,0 +170746534614,218,0 +170746534664,219,0 +170746534712,221,0 +170746534761,222,0 +170746534809,224,0 +170746534857,225,0 +170746534905,225,0 +170746534953,227,0 +170746535001,227,0 +170746535049,228,0 +170746535097,228,0 +170746535146,230,0 +170746535194,231,0 +170746535242,231,0 +170746535292,227,0 +170746535340,229,0 +170746535389,218,0 +170746535439,219,0 +170746535487,219,0 +170746535537,222,0 +170746535584,222,0 +170746535632,224,0 +170746535680,225,0 +170746535728,229,0 +170746535778,227,0 +170746535826,228,0 +170746535874,229,0 +170746535923,229,0 +170746535973,229,0 +170746536021,229,0 +170746536070,229,0 +170746536120,229,0 +170746536168,223,0 +170746536217,219,0 +170746536267,220,0 +170746536316,220,0 +170746536366,218,0 +170746536415,223,0 +170746536463,224,0 +170746536511,225,0 +170746536559,225,0 +170746536607,226,0 +170746536655,228,0 +170746536703,228,0 +170746536751,227,0 +170746536799,229,0 +170746536847,228,0 +170746536896,229,0 +170746536944,228,0 +170746536992,215,0 +170746537040,220,0 +170746537088,222,0 +170746537138,223,0 +170746537186,225,0 +170746537234,225,0 +170746537282,227,0 +170746537331,228,0 +170746537379,228,0 +170746537429,230,0 +170746537477,230,0 +170746537526,233,0 +170746537574,230,0 +170746537624,228,0 +170746537673,228,0 +170746537723,228,0 +170746537772,219,0 +170746537820,223,0 +170746537870,226,0 +170746537918,226,0 +170746537966,228,0 +170746538013,230,0 +170746538063,228,0 +170746538111,229,0 +170746538160,228,0 +170746538208,230,0 +170746538258,231,0 +170746538306,228,0 +170746538354,228,0 +170746538403,229,0 +170746538451,229,0 +170746538499,229,0 +170746538547,228,0 +170746538595,229,0 +170746538643,229,0 +170746538691,229,0 +170746538741,229,0 +170746538789,230,0 +170746538836,230,0 +170746538884,230,0 +170746538932,230,0 +170746538982,232,0 +170746539030,230,0 +170746539078,229,0 +170746539126,229,0 +170746539175,229,0 +170746539225,229,0 +170746539274,233,0 +170746539322,230,0 +170746539372,229,0 +170746539420,229,0 +170746539468,230,0 +170746539517,230,0 +170746539567,230,0 +170746539616,230,0 +170746539664,231,0 +170746539712,229,0 +170746539760,229,0 +170746539808,230,0 +170746539856,229,0 +170746539905,236,0 +170746539955,229,0 +170746540003,230,0 +170746540051,229,0 +170746540099,229,0 +170746540147,229,0 +170746540196,230,0 +170746540244,225,0 +170746540294,228,0 +170746540342,233,0 +170746540391,230,0 +170746540441,230,0 +170746540489,230,0 +170746540538,233,0 +170746540588,231,0 +170746540637,231,0 +170746540687,231,0 +170746540736,230,0 +170746540786,230,0 +170746540834,229,0 +170746540882,229,0 +170746540930,229,0 +170746540978,220,0 +170746541026,223,0 +170746541074,224,0 +170746541121,225,0 +170746541169,225,0 +170746541219,226,0 +170746541269,229,0 +170746541316,229,0 +170746541364,230,0 +170746541412,229,0 +170746541462,230,0 +170746541511,231,0 +170746541559,229,0 +170746541609,230,0 +170746541657,229,0 +170746541706,227,0 +170746541756,227,0 +170746541804,221,0 +170746541853,221,0 +170746541901,222,0 +170746541949,224,0 +170746541997,225,0 +170746542047,226,0 +170746542095,228,0 +170746542144,227,0 +170746542192,229,0 +170746542240,229,0 +170746542288,230,0 +170746542336,231,0 +170746542384,230,0 +170746542432,229,0 +170746542482,229,0 +170746542531,228,0 +170746542579,218,0 +170746542629,219,0 +170746542677,220,0 +170746542726,223,0 +170746542774,226,0 +170746542824,225,0 +170746542873,225,0 +170746542921,227,0 +170746542969,228,0 +170746543019,229,0 +170746543067,229,0 +170746543116,230,0 +170746543166,230,0 +170746543215,229,0 +170746543263,229,0 +170746543311,228,0 +170746543359,228,0 +170746543407,216,0 +170746543457,217,0 +170746543506,219,0 +170746543554,220,0 +170746543602,223,0 +170746543652,224,0 +170746543701,225,0 +170746543749,225,0 +170746543799,226,0 +170746543846,229,0 +170746543894,229,0 +170746543944,230,0 +170746543992,229,0 +170746544040,229,0 +170746544088,220,0 +170746544136,228,0 +170746544184,217,0 +170746544233,220,0 +170746544281,221,0 +170746544329,223,0 +170746544377,224,0 +170746544425,226,0 +170746544475,227,0 +170746544524,227,0 +170746544574,227,0 +170746544623,228,0 +170746544671,229,0 +170746544720,233,0 +170746544768,230,0 +170746544818,230,0 +170746544866,230,0 +170746544914,227,0 +170746544963,228,0 +170746545013,219,0 +170746545061,221,0 +170746545110,223,0 +170746545158,223,0 +170746545206,225,0 +170746545256,228,0 +170746545304,227,0 +170746545353,227,0 +170746545403,229,0 +170746545451,230,0 +170746545500,231,0 +170746545550,229,0 +170746545599,229,0 +170746545647,230,0 +170746545697,230,0 +170746545745,228,0 +170746545793,220,0 +170746545840,220,0 +170746545888,221,0 +170746545938,223,0 +170746545988,224,0 +170746546035,225,0 +170746546083,226,0 +170746546133,227,0 +170746546181,228,0 +170746546229,230,0 +170746546277,230,0 +170746546325,230,0 +170746546373,229,0 +170746546422,230,0 +170746546470,231,0 +170746546520,229,0 +170746546569,228,0 +170746546617,218,0 +170746546667,220,0 +170746546715,222,0 +170746546763,223,0 +170746546812,225,0 +170746546860,225,0 +170746546908,228,0 +170746546958,227,0 +170746547006,229,0 +170746547054,233,0 +170746547103,230,0 +170746547151,233,0 +170746547200,231,0 +170746547248,230,0 +170746547296,230,0 +170746547346,228,0 +170746547395,222,0 +170746547445,221,0 +170746547495,222,0 +170746547544,224,0 +170746547594,225,0 +170746547642,226,0 +170746547689,227,0 +170746547737,227,0 +170746547785,228,0 +170746547833,230,0 +170746547881,229,0 +170746547929,229,0 +170746547979,230,0 +170746548027,230,0 +170746548076,230,0 +170746548126,228,0 +170746548174,226,0 +170746548222,223,0 +170746548271,224,0 +170746548319,224,0 +170746548369,226,0 +170746548417,228,0 +170746548466,228,0 +170746548514,228,0 +170746548562,228,0 +170746548610,228,0 +170746548659,230,0 +170746548709,230,0 +170746548757,230,0 +170746548805,229,0 +170746548853,228,0 +170746548902,228,0 +170746548950,227,0 +170746548998,220,0 +170746549048,220,0 +170746549096,218,0 +170746549145,222,0 +170746549193,222,0 +170746549241,225,0 +170746549289,225,0 +170746549338,229,0 +170746549386,229,0 +170746549434,229,0 +170746549482,233,0 +170746549532,229,0 +170746549580,230,0 +170746549628,229,0 +170746549677,230,0 +170746549725,228,0 +170746549773,224,0 +170746549823,214,0 +170746549871,218,0 +170746549919,220,0 +170746549967,222,0 +170746550015,223,0 +170746550064,224,0 +170746550114,226,0 +170746550162,226,0 +170746550211,222,0 +170746550259,228,0 +170746550309,229,0 +170746550358,228,0 +170746550406,228,0 +170746550454,229,0 +170746550502,228,0 +170746550552,227,0 +170746550600,227,0 +170746550649,226,0 +170746550699,227,0 +170746550748,228,0 +170746550796,228,0 +170746550844,228,0 +170746550892,228,0 +170746550941,229,0 +170746550989,229,0 +170746551037,229,0 +170746551087,229,0 +170746551135,229,0 +170746551184,229,0 +170746551234,230,0 +170746551283,235,0 +170746551331,230,0 +170746551381,229,0 +170746551430,230,0 +170746551480,230,0 +170746551529,229,0 +170746551577,230,0 +170746551625,230,0 +170746551673,230,0 +170746551721,229,0 +170746551771,232,0 +170746551820,229,0 +170746551870,230,0 +170746551918,231,0 +170746551966,229,0 +170746552015,229,0 +170746552065,229,0 +170746552114,230,0 +170746552164,229,0 +170746552212,230,0 +170746552260,227,0 +170746552309,230,0 +170746552359,230,0 +170746552407,230,0 +170746552456,230,0 +170746552504,231,0 +170746552553,229,0 +170746552601,230,0 +170746552651,230,0 +170746552700,230,0 +170746552750,228,0 +170746552799,230,0 +170746552847,229,0 +170746552895,229,0 +170746552943,229,0 +170746552993,228,0 +170746553041,228,0 +170746553089,227,0 +170746553138,228,0 +170746553186,229,0 +170746553234,229,0 +170746553282,228,0 +170746553330,230,0 +170746553378,230,0 +170746553426,229,0 +170746553475,229,0 +170746553523,228,0 +170746553572,229,0 +170746553622,229,0 +170746553671,229,0 +170746553719,229,0 +170746553769,228,0 +170746553818,223,0 +170746553866,224,0 +170746553914,225,0 +170746553964,219,0 +170746554013,227,0 +170746554061,229,0 +170746554109,229,0 +170746554157,229,0 +170746554207,230,0 +170746554256,230,0 +170746554306,230,0 +170746554355,230,0 +170746554405,230,0 +170746554454,229,0 +170746554504,229,0 +170746554552,228,0 +170746554600,223,0 +170746554649,222,0 +170746554697,223,0 +170746554745,224,0 +170746554793,226,0 +170746554841,228,0 +170746554889,229,0 +170746554937,228,0 +170746554985,229,0 +170746555033,229,0 +170746555082,228,0 +170746555132,229,0 +170746555181,231,0 +170746555229,230,0 +170746555279,230,0 +170746555326,230,0 +170746555376,229,0 +170746555426,221,0 +170746555475,223,0 +170746555523,224,0 +170746555571,225,0 +170746555619,227,0 +170746555667,227,0 +170746555715,229,0 +170746555763,231,0 +170746555811,229,0 +170746555859,229,0 +170746555908,230,0 +170746555958,228,0 +170746556007,230,0 +170746556057,230,0 +170746556105,228,0 +170746556153,228,0 +170746556202,221,0 +170746556252,222,0 +170746556300,223,0 +170746556348,223,0 +170746556396,228,0 +170746556444,229,0 +170746556493,227,0 +170746556543,229,0 +170746556591,230,0 +170746556640,229,0 +170746556688,229,0 +170746556738,229,0 +170746556787,229,0 +170746556835,229,0 +170746556883,229,0 +170746556933,228,0 +170746556982,227,0 +170746557032,222,0 +170746557080,223,0 +170746557128,224,0 +170746557177,225,0 +170746557225,227,0 +170746557273,227,0 +170746557321,228,0 +170746557369,229,0 +170746557417,228,0 +170746557466,230,0 +170746557516,229,0 +170746557565,230,0 +170746557613,229,0 +170746557663,229,0 +170746557711,227,0 +170746557760,229,0 +170746557808,225,0 +170746557858,225,0 +170746557907,227,0 +170746557955,227,0 +170746558005,227,0 +170746558054,229,0 +170746558102,228,0 +170746558152,229,0 +170746558201,230,0 +170746558251,229,0 +170746558300,231,0 +170746558348,229,0 +170746558398,227,0 +170746558446,228,0 +170746558495,228,0 +170746558545,229,0 +170746558594,222,0 +170746558644,226,0 +170746558693,226,0 +170746558741,226,0 +170746558789,228,0 +170746558837,228,0 +170746558885,228,0 +170746558935,229,0 +170746558984,230,0 +170746559032,229,0 +170746559080,229,0 +170746559128,231,0 +170746559177,230,0 +170746559225,229,0 +170746559275,229,0 +170746559323,231,0 +170746559372,229,0 +170746559420,224,0 +170746559470,223,0 +170746559519,225,0 +170746559567,225,0 +170746559615,226,0 +170746559665,227,0 +170746559714,228,0 +170746559762,230,0 +170746559810,229,0 +170746559858,230,0 +170746559906,229,0 +170746559954,230,0 +170746560002,230,0 diff --git a/laser_value/0209-18.csv b/laser_value/0209-18.csv new file mode 100644 index 0000000..8d8a5b2 --- /dev/null +++ b/laser_value/0209-18.csv @@ -0,0 +1,7423 @@ +timestamp,laser_value,event +170746560050,230,0 +170746560098,229,0 +170746560147,230,0 +170746560195,225,0 +170746560243,222,0 +170746560291,223,0 +170746560339,224,0 +170746560387,224,0 +170746560435,228,0 +170746560483,228,0 +170746560530,228,0 +170746560578,229,0 +170746560626,228,0 +170746560674,231,0 +170746560722,229,0 +170746560772,230,0 +170746560819,229,0 +170746560867,232,0 +170746560917,228,0 +170746560965,228,0 +170746561014,216,0 +170746561064,217,0 +170746561112,219,0 +170746561160,221,0 +170746561209,214,0 +170746561257,222,0 +170746561307,224,0 +170746561355,224,0 +170746561404,226,0 +170746561452,228,0 +170746561500,227,0 +170746561548,229,0 +170746561596,228,0 +170746561645,229,0 +170746561693,229,0 +170746561743,229,0 +170746561791,226,0 +170746561839,216,0 +170746561888,217,0 +170746561936,215,0 +170746561984,215,0 +170746562032,219,0 +170746562080,221,0 +170746562128,223,0 +170746562176,224,0 +170746562224,224,0 +170746562272,226,0 +170746562320,226,0 +170746562368,228,0 +170746562417,227,0 +170746562465,228,0 +170746562515,227,0 +170746562564,228,0 +170746562612,220,0 +170746562660,221,0 +170746562709,222,0 +170746562757,223,0 +170746562805,224,0 +170746562853,227,0 +170746562901,226,0 +170746562949,229,0 +170746562998,228,0 +170746563046,228,0 +170746563094,228,0 +170746563142,229,0 +170746563191,229,0 +170746563241,228,0 +170746563290,228,0 +170746563338,228,0 +170746563388,228,0 +170746563436,225,0 +170746563484,226,0 +170746563532,227,0 +170746563581,229,0 +170746563629,227,0 +170746563679,231,0 +170746563728,229,0 +170746563776,229,0 +170746563826,231,0 +170746563874,230,0 +170746563923,230,0 +170746563971,232,0 +170746564020,229,0 +170746564070,230,0 +170746564120,229,0 +170746564167,229,0 +170746564215,227,0 +170746564263,224,0 +170746564311,229,0 +170746564359,226,0 +170746564409,226,0 +170746564458,230,0 +170746564506,232,0 +170746564554,229,0 +170746564602,230,0 +170746564651,229,0 +170746564699,231,0 +170746564749,229,0 +170746564796,229,0 +170746564844,229,0 +170746564892,229,0 +170746564942,229,0 +170746564990,228,0 +170746565037,220,0 +170746565085,223,0 +170746565133,224,0 +170746565181,224,0 +170746565229,226,0 +170746565278,227,0 +170746565326,227,0 +170746565374,228,0 +170746565424,229,0 +170746565472,231,0 +170746565519,230,0 +170746565569,227,0 +170746565617,229,0 +170746565665,229,0 +170746565714,229,0 +170746565762,228,0 +170746565811,217,0 +170746565859,219,0 +170746565909,220,0 +170746565957,222,0 +170746566005,223,0 +170746566054,225,0 +170746566102,226,0 +170746566150,225,0 +170746566200,226,0 +170746566248,228,0 +170746566297,228,0 +170746566345,228,0 +170746566395,229,0 +170746566443,229,0 +170746566491,229,0 +170746566538,228,0 +170746566588,228,0 +170746566636,219,0 +170746566684,224,0 +170746566732,226,0 +170746566781,225,0 +170746566829,225,0 +170746566877,227,0 +170746566925,227,0 +170746566973,229,0 +170746567021,238,0 +170746567070,229,0 +170746567120,230,0 +170746567168,230,0 +170746567217,230,0 +170746567265,231,0 +170746567313,230,0 +170746567363,229,0 +170746567411,226,0 +170746567460,226,0 +170746567508,226,0 +170746567556,226,0 +170746567604,227,0 +170746567653,228,0 +170746567701,230,0 +170746567749,230,0 +170746567797,229,0 +170746567845,229,0 +170746567893,229,0 +170746567941,230,0 +170746567989,229,0 +170746568037,226,0 +170746568085,229,0 +170746568133,228,0 +170746568180,229,0 +170746568228,228,0 +170746568276,228,0 +170746568324,228,0 +170746568372,228,0 +170746568420,232,0 +170746568468,230,0 +170746568516,229,0 +170746568564,232,0 +170746568611,231,0 +170746568659,229,0 +170746568707,229,0 +170746568755,228,0 +170746568803,228,0 +170746568851,229,0 +170746568900,229,0 +170746568948,229,0 +170746568998,228,0 +170746569046,230,0 +170746569094,227,0 +170746569141,228,0 +170746569191,229,0 +170746569239,228,0 +170746569287,232,0 +170746569335,231,0 +170746569383,228,0 +170746569431,231,0 +170746569480,231,0 +170746569530,229,0 +170746569578,229,0 +170746569627,228,0 +170746569677,227,0 +170746569725,228,0 +170746569772,228,0 +170746569822,226,0 +170746569870,225,0 +170746569918,226,0 +170746569967,227,0 +170746570015,228,0 +170746570065,229,0 +170746570114,229,0 +170746570162,228,0 +170746570210,229,0 +170746570260,230,0 +170746570308,229,0 +170746570356,229,0 +170746570405,229,0 +170746570455,229,0 +170746570503,228,0 +170746570551,229,0 +170746570600,227,0 +170746570650,224,0 +170746570698,224,0 +170746570746,227,0 +170746570795,227,0 +170746570843,227,0 +170746570891,228,0 +170746570940,229,0 +170746570988,229,0 +170746571038,232,0 +170746571086,228,0 +170746571135,229,0 +170746571185,228,0 +170746571235,228,0 +170746571284,228,0 +170746571334,228,0 +170746571383,227,0 +170746571431,220,0 +170746571481,221,0 +170746571530,222,0 +170746571578,223,0 +170746571628,224,0 +170746571675,227,0 +170746571723,229,0 +170746571773,230,0 +170746571821,233,0 +170746571870,229,0 +170746571920,229,0 +170746571968,229,0 +170746572016,229,0 +170746572064,230,0 +170746572113,229,0 +170746572163,229,0 +170746572211,227,0 +170746572259,218,0 +170746572306,219,0 +170746572354,221,0 +170746572402,223,0 +170746572452,224,0 +170746572500,226,0 +170746572549,226,0 +170746572597,228,0 +170746572647,228,0 +170746572695,228,0 +170746572743,230,0 +170746572792,230,0 +170746572840,230,0 +170746572888,230,0 +170746572938,228,0 +170746572986,228,0 +170746573034,216,0 +170746573081,218,0 +170746573131,219,0 +170746573179,220,0 +170746573228,222,0 +170746573278,222,0 +170746573327,225,0 +170746573377,225,0 +170746573425,225,0 +170746573473,228,0 +170746573522,228,0 +170746573572,229,0 +170746573622,228,0 +170746573670,230,0 +170746573717,230,0 +170746573765,228,0 +170746573813,216,0 +170746573861,215,0 +170746573909,218,0 +170746573957,215,0 +170746574007,220,0 +170746574055,221,0 +170746574103,223,0 +170746574151,225,0 +170746574199,225,0 +170746574246,225,0 +170746574296,227,0 +170746574344,228,0 +170746574392,228,0 +170746574441,228,0 +170746574489,228,0 +170746574539,229,0 +170746574587,228,0 +170746574635,217,0 +170746574684,217,0 +170746574732,219,0 +170746574782,221,0 +170746574830,221,0 +170746574878,224,0 +170746574926,224,0 +170746574973,226,0 +170746575021,227,0 +170746575069,227,0 +170746575117,228,0 +170746575165,229,0 +170746575213,228,0 +170746575262,228,0 +170746575310,231,0 +170746575358,227,0 +170746575408,227,0 +170746575457,221,0 +170746575507,225,0 +170746575555,226,0 +170746575603,227,0 +170746575651,227,0 +170746575699,228,0 +170746575747,241,0 +170746575796,229,0 +170746575846,229,0 +170746575893,231,0 +170746575941,230,0 +170746575991,232,0 +170746576039,230,0 +170746576087,229,0 +170746576136,230,0 +170746576184,231,0 +170746576232,228,0 +170746576282,230,0 +170746576331,228,0 +170746576381,230,0 +170746576429,231,0 +170746576478,230,0 +170746576526,231,0 +170746576574,230,0 +170746576624,230,0 +170746576671,228,0 +170746576719,232,0 +170746576769,231,0 +170746576817,229,0 +170746576865,230,0 +170746576913,230,0 +170746576962,228,0 +170746577010,231,0 +170746577058,228,0 +170746577106,227,0 +170746577154,230,0 +170746577202,229,0 +170746577251,233,0 +170746577301,230,0 +170746577349,230,0 +170746577397,229,0 +170746577446,230,0 +170746577496,229,0 +170746577544,228,0 +170746577593,228,0 +170746577641,229,0 +170746577689,229,0 +170746577737,229,0 +170746577785,227,0 +170746577835,226,0 +170746577882,227,0 +170746577930,228,0 +170746577978,228,0 +170746578028,230,0 +170746578076,229,0 +170746578124,229,0 +170746578172,229,0 +170746578220,230,0 +170746578268,229,0 +170746578317,229,0 +170746578365,230,0 +170746578415,228,0 +170746578464,228,0 +170746578512,229,0 +170746578560,228,0 +170746578610,226,0 +170746578659,224,0 +170746578707,224,0 +170746578757,226,0 +170746578805,226,0 +170746578853,229,0 +170746578902,228,0 +170746578950,229,0 +170746579000,230,0 +170746579049,228,0 +170746579097,231,0 +170746579147,231,0 +170746579195,227,0 +170746579242,229,0 +170746579290,229,0 +170746579338,229,0 +170746579388,229,0 +170746579436,219,0 +170746579484,221,0 +170746579532,223,0 +170746579580,226,0 +170746579627,224,0 +170746579675,227,0 +170746579725,227,0 +170746579775,228,0 +170746579822,228,0 +170746579870,229,0 +170746579920,232,0 +170746579969,230,0 +170746580019,228,0 +170746580067,231,0 +170746580115,228,0 +170746580164,232,0 +170746580214,227,0 +170746580262,221,0 +170746580311,222,0 +170746580359,223,0 +170746580409,225,0 +170746580457,225,0 +170746580506,227,0 +170746580556,227,0 +170746580604,228,0 +170746580652,228,0 +170746580701,230,0 +170746580749,230,0 +170746580797,230,0 +170746580845,229,0 +170746580895,229,0 +170746580944,228,0 +170746580992,228,0 +170746581040,218,0 +170746581088,221,0 +170746581138,222,0 +170746581187,222,0 +170746581235,222,0 +170746581283,227,0 +170746581333,226,0 +170746581382,229,0 +170746581430,230,0 +170746581478,230,0 +170746581528,230,0 +170746581576,230,0 +170746581625,230,0 +170746581673,230,0 +170746581723,228,0 +170746581772,228,0 +170746581822,218,0 +170746581870,221,0 +170746581918,219,0 +170746581967,222,0 +170746582015,223,0 +170746582063,226,0 +170746582111,225,0 +170746582159,226,0 +170746582208,228,0 +170746582256,227,0 +170746582306,229,0 +170746582354,228,0 +170746582402,229,0 +170746582450,230,0 +170746582499,229,0 +170746582547,228,0 +170746582596,228,0 +170746582644,218,0 +170746582692,219,0 +170746582740,220,0 +170746582788,222,0 +170746582836,224,0 +170746582884,225,0 +170746582932,226,0 +170746582980,228,0 +170746583027,227,0 +170746583077,228,0 +170746583125,228,0 +170746583173,229,0 +170746583221,229,0 +170746583270,228,0 +170746583318,229,0 +170746583366,228,0 +170746583414,228,0 +170746583463,215,0 +170746583513,218,0 +170746583562,221,0 +170746583610,221,0 +170746583658,224,0 +170746583706,225,0 +170746583756,227,0 +170746583805,228,0 +170746583853,227,0 +170746583901,229,0 +170746583950,229,0 +170746583998,229,0 +170746584046,230,0 +170746584094,229,0 +170746584144,229,0 +170746584192,228,0 +170746584240,218,0 +170746584289,218,0 +170746584339,220,0 +170746584387,222,0 +170746584434,222,0 +170746584482,226,0 +170746584530,227,0 +170746584580,225,0 +170746584628,227,0 +170746584677,231,0 +170746584725,229,0 +170746584775,229,0 +170746584823,230,0 +170746584872,230,0 +170746584922,229,0 +170746584970,228,0 +170746585019,218,0 +170746585069,220,0 +170746585117,222,0 +170746585166,223,0 +170746585216,224,0 +170746585265,228,0 +170746585315,228,0 +170746585364,228,0 +170746585412,230,0 +170746585460,229,0 +170746585508,230,0 +170746585556,230,0 +170746585604,230,0 +170746585652,229,0 +170746585700,229,0 +170746585748,227,0 +170746585797,228,0 +170746585845,216,0 +170746585895,214,0 +170746585943,222,0 +170746585991,220,0 +170746586040,223,0 +170746586088,224,0 +170746586136,226,0 +170746586184,226,0 +170746586232,227,0 +170746586279,228,0 +170746586327,228,0 +170746586375,228,0 +170746586423,229,0 +170746586471,229,0 +170746586519,229,0 +170746586568,227,0 +170746586618,227,0 +170746586666,215,0 +170746586713,222,0 +170746586761,224,0 +170746586811,224,0 +170746586861,227,0 +170746586909,227,0 +170746586956,228,0 +170746587006,227,0 +170746587054,228,0 +170746587102,229,0 +170746587151,227,0 +170746587201,228,0 +170746587249,230,0 +170746587297,228,0 +170746587345,228,0 +170746587394,228,0 +170746587442,228,0 +170746587490,228,0 +170746587540,228,0 +170746587588,228,0 +170746587636,228,0 +170746587684,228,0 +170746587732,229,0 +170746587779,228,0 +170746587829,228,0 +170746587878,228,0 +170746587926,228,0 +170746587974,229,0 +170746588022,229,0 +170746588070,231,0 +170746588118,230,0 +170746588166,228,0 +170746588214,232,0 +170746588261,231,0 +170746588309,230,0 +170746588359,230,0 +170746588408,231,0 +170746588456,231,0 +170746588504,230,0 +170746588552,233,0 +170746588601,230,0 +170746588649,234,0 +170746588697,230,0 +170746588745,231,0 +170746588793,229,0 +170746588841,230,0 +170746588890,230,0 +170746588938,229,0 +170746588986,230,0 +170746589034,230,0 +170746589082,227,0 +170746589130,228,0 +170746589177,231,0 +170746589225,230,0 +170746589273,228,0 +170746589323,231,0 +170746589371,230,0 +170746589419,229,0 +170746589467,230,0 +170746589516,230,0 +170746589564,227,0 +170746589612,235,0 +170746589660,230,0 +170746589707,229,0 +170746589755,229,0 +170746589805,230,0 +170746589854,224,0 +170746589904,222,0 +170746589952,224,0 +170746590000,225,0 +170746590049,226,0 +170746590097,225,0 +170746590147,227,0 +170746590195,229,0 +170746590243,230,0 +170746590291,229,0 +170746590339,230,0 +170746590386,230,0 +170746590434,230,0 +170746590482,230,0 +170746590530,230,0 +170746590578,229,0 +170746590628,227,0 +170746590677,216,0 +170746590727,218,0 +170746590776,221,0 +170746590824,223,0 +170746590872,225,0 +170746590921,226,0 +170746590969,227,0 +170746591017,227,0 +170746591065,228,0 +170746591115,229,0 +170746591163,229,0 +170746591211,230,0 +170746591259,229,0 +170746591307,230,0 +170746591355,229,0 +170746591404,228,0 +170746591454,218,0 +170746591503,218,0 +170746591551,219,0 +170746591599,223,0 +170746591647,224,0 +170746591695,224,0 +170746591744,227,0 +170746591792,228,0 +170746591840,231,0 +170746591890,230,0 +170746591938,229,0 +170746591987,229,0 +170746592035,230,0 +170746592085,229,0 +170746592133,229,0 +170746592181,229,0 +170746592229,228,0 +170746592277,218,0 +170746592326,220,0 +170746592374,222,0 +170746592422,223,0 +170746592471,224,0 +170746592519,226,0 +170746592569,227,0 +170746592617,225,0 +170746592665,229,0 +170746592713,231,0 +170746592762,228,0 +170746592810,229,0 +170746592860,229,0 +170746592909,229,0 +170746592957,229,0 +170746593007,228,0 +170746593055,219,0 +170746593103,216,0 +170746593151,222,0 +170746593199,224,0 +170746593247,223,0 +170746593295,226,0 +170746593344,226,0 +170746593392,229,0 +170746593442,229,0 +170746593491,230,0 +170746593539,230,0 +170746593587,233,0 +170746593636,229,0 +170746593684,230,0 +170746593732,228,0 +170746593782,228,0 +170746593831,228,0 +170746593879,218,0 +170746593927,219,0 +170746593977,221,0 +170746594025,222,0 +170746594074,225,0 +170746594122,224,0 +170746594172,225,0 +170746594220,227,0 +170746594268,228,0 +170746594317,229,0 +170746594367,230,0 +170746594414,230,0 +170746594462,231,0 +170746594510,231,0 +170746594558,229,0 +170746594606,228,0 +170746594654,219,0 +170746594702,218,0 +170746594752,220,0 +170746594800,224,0 +170746594849,223,0 +170746594897,228,0 +170746594947,224,0 +170746594994,225,0 +170746595042,227,0 +170746595090,228,0 +170746595140,228,0 +170746595189,229,0 +170746595239,230,0 +170746595287,232,0 +170746595335,228,0 +170746595384,228,0 +170746595432,228,0 +170746595480,218,0 +170746595529,220,0 +170746595579,221,0 +170746595627,222,0 +170746595675,224,0 +170746595724,225,0 +170746595772,226,0 +170746595820,229,0 +170746595870,229,0 +170746595918,230,0 +170746595967,229,0 +170746596015,231,0 +170746596063,232,0 +170746596113,228,0 +170746596161,229,0 +170746596209,227,0 +170746596257,222,0 +170746596304,221,0 +170746596354,224,0 +170746596402,225,0 +170746596450,225,0 +170746596498,226,0 +170746596547,227,0 +170746596597,226,0 +170746596645,229,0 +170746596693,230,0 +170746596740,228,0 +170746596790,230,0 +170746596840,229,0 +170746596889,228,0 +170746596937,228,0 +170746596985,227,0 +170746597033,228,0 +170746597081,223,0 +170746597129,224,0 +170746597177,224,0 +170746597226,225,0 +170746597274,228,0 +170746597322,227,0 +170746597372,229,0 +170746597420,230,0 +170746597468,230,0 +170746597517,228,0 +170746597565,228,0 +170746597613,228,0 +170746597661,229,0 +170746597709,229,0 +170746597757,228,0 +170746597805,227,0 +170746597853,221,0 +170746597901,221,0 +170746597950,221,0 +170746597998,224,0 +170746598046,225,0 +170746598094,226,0 +170746598144,226,0 +170746598193,227,0 +170746598243,228,0 +170746598291,228,0 +170746598340,230,0 +170746598388,230,0 +170746598436,228,0 +170746598484,229,0 +170746598534,230,0 +170746598583,228,0 +170746598633,227,0 +170746598681,216,0 +170746598730,218,0 +170746598778,221,0 +170746598826,218,0 +170746598874,221,0 +170746598923,220,0 +170746598971,224,0 +170746599019,226,0 +170746599069,225,0 +170746599117,227,0 +170746599166,228,0 +170746599214,227,0 +170746599262,228,0 +170746599310,229,0 +170746599360,230,0 +170746599409,228,0 +170746599459,222,0 +170746599508,222,0 +170746599558,224,0 +170746599606,224,0 +170746599654,226,0 +170746599703,227,0 +170746599751,228,0 +170746599801,227,0 +170746599849,228,0 +170746599898,229,0 +170746599948,228,0 +170746599996,228,0 +170746600044,228,0 +170746600093,229,0 +170746600141,229,0 +170746600189,227,0 +170746600237,226,0 +170746600285,228,0 +170746600333,228,0 +170746600380,229,0 +170746600430,230,0 +170746600478,231,0 +170746600526,230,0 +170746600575,229,0 +170746600624,229,0 +170746600672,230,0 +170746600720,230,0 +170746600768,229,0 +170746600816,229,0 +170746600864,229,0 +170746600912,230,0 +170746600961,229,0 +170746601009,229,0 +170746601057,231,0 +170746601105,231,0 +170746601154,230,0 +170746601204,232,0 +170746601252,231,0 +170746601300,229,0 +170746601348,230,0 +170746601396,231,0 +170746601444,229,0 +170746601492,229,0 +170746601540,229,0 +170746601587,229,0 +170746601635,228,0 +170746601683,230,0 +170746601731,228,0 +170746601781,229,0 +170746601830,228,0 +170746601878,223,0 +170746601926,227,0 +170746601975,231,0 +170746602023,229,0 +170746602071,229,0 +170746602120,230,0 +170746602168,229,0 +170746602216,229,0 +170746602264,230,0 +170746602312,231,0 +170746602360,229,0 +170746602408,229,0 +170746602456,230,0 +170746602504,228,0 +170746602551,229,0 +170746602599,228,0 +170746602649,227,0 +170746602697,222,0 +170746602745,224,0 +170746602792,227,0 +170746602840,226,0 +170746602890,227,0 +170746602938,228,0 +170746602986,229,0 +170746603033,228,0 +170746603081,228,0 +170746603129,230,0 +170746603177,229,0 +170746603225,229,0 +170746603274,229,0 +170746603322,231,0 +170746603372,229,0 +170746603420,228,0 +170746603468,218,0 +170746603516,219,0 +170746603565,221,0 +170746603613,222,0 +170746603661,224,0 +170746603711,224,0 +170746603759,226,0 +170746603808,228,0 +170746603858,227,0 +170746603907,229,0 +170746603955,230,0 +170746604003,230,0 +170746604051,230,0 +170746604100,232,0 +170746604150,229,0 +170746604199,229,0 +170746604247,228,0 +170746604295,220,0 +170746604343,222,0 +170746604391,224,0 +170746604439,225,0 +170746604487,225,0 +170746604535,227,0 +170746604584,226,0 +170746604632,228,0 +170746604680,228,0 +170746604728,228,0 +170746604778,230,0 +170746604826,229,0 +170746604875,229,0 +170746604925,230,0 +170746604973,228,0 +170746605021,226,0 +170746605069,219,0 +170746605117,220,0 +170746605166,220,0 +170746605214,222,0 +170746605262,223,0 +170746605310,224,0 +170746605358,227,0 +170746605408,230,0 +170746605455,229,0 +170746605503,228,0 +170746605553,231,0 +170746605602,232,0 +170746605650,230,0 +170746605698,230,0 +170746605746,230,0 +170746605794,229,0 +170746605844,228,0 +170746605893,221,0 +170746605941,225,0 +170746605989,223,0 +170746606038,225,0 +170746606086,226,0 +170746606134,225,0 +170746606184,227,0 +170746606232,228,0 +170746606280,227,0 +170746606327,229,0 +170746606375,229,0 +170746606423,229,0 +170746606471,230,0 +170746606521,231,0 +170746606570,229,0 +170746606618,228,0 +170746606666,224,0 +170746606716,224,0 +170746606764,225,0 +170746606813,228,0 +170746606861,229,0 +170746606911,230,0 +170746606958,230,0 +170746607008,229,0 +170746607056,229,0 +170746607104,229,0 +170746607152,228,0 +170746607200,229,0 +170746607248,232,0 +170746607297,228,0 +170746607347,227,0 +170746607395,226,0 +170746607444,227,0 +170746607492,227,0 +170746607540,226,0 +170746607588,226,0 +170746607636,228,0 +170746607684,229,0 +170746607732,228,0 +170746607779,229,0 +170746607827,227,0 +170746607877,228,0 +170746607925,228,0 +170746607974,231,0 +170746608024,228,0 +170746608073,229,0 +170746608121,228,0 +170746608169,229,0 +170746608219,227,0 +170746608267,220,0 +170746608316,225,0 +170746608366,224,0 +170746608414,226,0 +170746608462,225,0 +170746608509,227,0 +170746608557,229,0 +170746608607,226,0 +170746608655,231,0 +170746608703,228,0 +170746608751,231,0 +170746608799,225,0 +170746608848,230,0 +170746608896,227,0 +170746608944,228,0 +170746608994,229,0 +170746609042,227,0 +170746609090,220,0 +170746609138,222,0 +170746609185,223,0 +170746609233,223,0 +170746609281,224,0 +170746609331,225,0 +170746609379,227,0 +170746609427,226,0 +170746609475,227,0 +170746609523,229,0 +170746609572,229,0 +170746609620,228,0 +170746609668,231,0 +170746609716,230,0 +170746609764,230,0 +170746609812,228,0 +170746609860,227,0 +170746609908,220,0 +170746609957,220,0 +170746610005,221,0 +170746610053,222,0 +170746610100,224,0 +170746610150,221,0 +170746610198,227,0 +170746610246,226,0 +170746610294,230,0 +170746610341,227,0 +170746610389,229,0 +170746610437,230,0 +170746610485,228,0 +170746610533,228,0 +170746610581,227,0 +170746610630,227,0 +170746610678,215,0 +170746610726,213,0 +170746610776,217,0 +170746610824,220,0 +170746610872,221,0 +170746610920,223,0 +170746610968,223,0 +170746611016,224,0 +170746611064,225,0 +170746611111,224,0 +170746611161,227,0 +170746611209,228,0 +170746611257,229,0 +170746611306,227,0 +170746611356,227,0 +170746611406,227,0 +170746611453,225,0 +170746611501,217,0 +170746611549,219,0 +170746611597,220,0 +170746611647,222,0 +170746611695,223,0 +170746611742,225,0 +170746611792,226,0 +170746611841,227,0 +170746611889,226,0 +170746611937,228,0 +170746611987,229,0 +170746612035,228,0 +170746612084,228,0 +170746612132,227,0 +170746612180,228,0 +170746612230,227,0 +170746612279,223,0 +170746612327,222,0 +170746612375,225,0 +170746612423,224,0 +170746612471,226,0 +170746612519,227,0 +170746612568,229,0 +170746612616,231,0 +170746612664,227,0 +170746612712,225,0 +170746612760,231,0 +170746612809,231,0 +170746612859,229,0 +170746612908,230,0 +170746612956,229,0 +170746613004,228,0 +170746613054,228,0 +170746613101,229,0 +170746613149,229,0 +170746613199,229,0 +170746613247,229,0 +170746613295,229,0 +170746613344,230,0 +170746613392,230,0 +170746613440,229,0 +170746613490,230,0 +170746613539,229,0 +170746613587,229,0 +170746613635,229,0 +170746613683,230,0 +170746613731,230,0 +170746613779,229,0 +170746613827,227,0 +170746613875,224,0 +170746613923,225,0 +170746613971,225,0 +170746614020,225,0 +170746614070,226,0 +170746614119,229,0 +170746614167,226,0 +170746614215,229,0 +170746614263,229,0 +170746614311,228,0 +170746614359,229,0 +170746614407,232,0 +170746614456,230,0 +170746614504,229,0 +170746614552,229,0 +170746614600,228,0 +170746614648,228,0 +170746614696,220,0 +170746614746,221,0 +170746614795,224,0 +170746614843,224,0 +170746614891,226,0 +170746614941,227,0 +170746614990,226,0 +170746615040,228,0 +170746615089,229,0 +170746615137,230,0 +170746615185,229,0 +170746615233,232,0 +170746615281,229,0 +170746615329,229,0 +170746615379,228,0 +170746615428,229,0 +170746615478,220,0 +170746615527,219,0 +170746615577,220,0 +170746615625,223,0 +170746615673,224,0 +170746615722,225,0 +170746615770,226,0 +170746615820,226,0 +170746615868,226,0 +170746615916,228,0 +170746615963,229,0 +170746616011,231,0 +170746616059,231,0 +170746616109,229,0 +170746616159,230,0 +170746616208,227,0 +170746616258,227,0 +170746616306,221,0 +170746616355,223,0 +170746616403,223,0 +170746616453,225,0 +170746616500,225,0 +170746616550,226,0 +170746616598,228,0 +170746616646,228,0 +170746616694,223,0 +170746616742,232,0 +170746616791,231,0 +170746616839,230,0 +170746616889,230,0 +170746616938,229,0 +170746616986,229,0 +170746617034,228,0 +170746617083,225,0 +170746617133,226,0 +170746617181,226,0 +170746617229,226,0 +170746617278,227,0 +170746617326,228,0 +170746617374,227,0 +170746617422,229,0 +170746617472,230,0 +170746617520,230,0 +170746617569,230,0 +170746617617,230,0 +170746617667,230,0 +170746617716,221,0 +170746617764,229,0 +170746617814,228,0 +170746617863,223,0 +170746617911,244,0 +170746617959,231,0 +170746618007,229,0 +170746618055,229,0 +170746618104,230,0 +170746618152,229,0 +170746618200,228,0 +170746618250,228,0 +170746618298,229,0 +170746618346,229,0 +170746618394,229,0 +170746618443,228,0 +170746618493,228,0 +170746618541,229,0 +170746618589,229,0 +170746618637,228,0 +170746618686,226,0 +170746618736,228,0 +170746618784,227,0 +170746618832,228,0 +170746618881,227,0 +170746618929,230,0 +170746618977,231,0 +170746619025,230,0 +170746619073,230,0 +170746619123,230,0 +170746619171,227,0 +170746619219,228,0 +170746619267,230,0 +170746619315,229,0 +170746619364,228,0 +170746619414,226,0 +170746619462,227,0 +170746619510,222,0 +170746619557,223,0 +170746619605,223,0 +170746619653,226,0 +170746619703,226,0 +170746619751,227,0 +170746619799,228,0 +170746619847,227,0 +170746619896,229,0 +170746619944,229,0 +170746619994,228,0 +170746620043,229,0 +170746620091,230,0 +170746620139,229,0 +170746620187,228,0 +170746620235,227,0 +170746620283,221,0 +170746620332,221,0 +170746620380,224,0 +170746620428,224,0 +170746620478,225,0 +170746620526,226,0 +170746620574,227,0 +170746620622,227,0 +170746620670,227,0 +170746620717,228,0 +170746620767,229,0 +170746620815,229,0 +170746620863,229,0 +170746620912,229,0 +170746620960,230,0 +170746621008,228,0 +170746621056,227,0 +170746621104,219,0 +170746621152,220,0 +170746621202,222,0 +170746621250,223,0 +170746621299,225,0 +170746621349,227,0 +170746621398,226,0 +170746621446,228,0 +170746621494,227,0 +170746621544,226,0 +170746621593,227,0 +170746621641,228,0 +170746621689,229,0 +170746621737,229,0 +170746621787,228,0 +170746621835,228,0 +170746621883,219,0 +170746621931,218,0 +170746621979,219,0 +170746622028,222,0 +170746622076,222,0 +170746622124,224,0 +170746622173,224,0 +170746622223,225,0 +170746622273,227,0 +170746622320,228,0 +170746622370,228,0 +170746622418,228,0 +170746622467,228,0 +170746622515,228,0 +170746622565,229,0 +170746622613,228,0 +170746622662,226,0 +170746622710,214,0 +170746622758,217,0 +170746622806,218,0 +170746622856,214,0 +170746622904,220,0 +170746622953,224,0 +170746623001,224,0 +170746623051,226,0 +170746623099,225,0 +170746623147,227,0 +170746623195,228,0 +170746623242,227,0 +170746623292,228,0 +170746623340,228,0 +170746623389,228,0 +170746623437,227,0 +170746623487,217,0 +170746623535,215,0 +170746623583,214,0 +170746623630,221,0 +170746623678,221,0 +170746623728,222,0 +170746623776,224,0 +170746623825,224,0 +170746623873,227,0 +170746623923,227,0 +170746623971,228,0 +170746624019,228,0 +170746624067,229,0 +170746624115,229,0 +170746624162,228,0 +170746624210,228,0 +170746624258,227,0 +170746624308,224,0 +170746624356,224,0 +170746624405,224,0 +170746624455,227,0 +170746624504,227,0 +170746624552,227,0 +170746624600,228,0 +170746624648,227,0 +170746624698,228,0 +170746624746,229,0 +170746624794,229,0 +170746624842,229,0 +170746624891,229,0 +170746624939,230,0 +170746624987,229,0 +170746625035,229,0 +170746625084,226,0 +170746625134,228,0 +170746625183,230,0 +170746625233,230,0 +170746625282,231,0 +170746625330,229,0 +170746625378,229,0 +170746625426,226,0 +170746625474,230,0 +170746625524,231,0 +170746625572,230,0 +170746625621,229,0 +170746625669,229,0 +170746625717,228,0 +170746625767,229,0 +170746625815,228,0 +170746625863,228,0 +170746625912,234,0 +170746625960,230,0 +170746626008,229,0 +170746626057,228,0 +170746626105,229,0 +170746626153,229,0 +170746626201,230,0 +170746626249,228,0 +170746626298,231,0 +170746626348,228,0 +170746626396,228,0 +170746626444,228,0 +170746626492,229,0 +170746626541,228,0 +170746626591,229,0 +170746626639,228,0 +170746626687,219,0 +170746626735,231,0 +170746626783,227,0 +170746626832,229,0 +170746626882,231,0 +170746626930,232,0 +170746626977,232,0 +170746627025,229,0 +170746627073,228,0 +170746627123,229,0 +170746627173,229,0 +170746627222,231,0 +170746627270,228,0 +170746627320,228,0 +170746627368,228,0 +170746627415,227,0 +170746627463,228,0 +170746627511,225,0 +170746627559,227,0 +170746627607,227,0 +170746627655,229,0 +170746627703,228,0 +170746627753,229,0 +170746627801,231,0 +170746627849,230,0 +170746627896,229,0 +170746627944,229,0 +170746627992,232,0 +170746628040,229,0 +170746628088,230,0 +170746628136,228,0 +170746628184,228,0 +170746628232,228,0 +170746628279,222,0 +170746628327,223,0 +170746628377,223,0 +170746628425,224,0 +170746628473,227,0 +170746628520,229,0 +170746628568,226,0 +170746628616,229,0 +170746628664,229,0 +170746628712,229,0 +170746628760,229,0 +170746628808,229,0 +170746628856,231,0 +170746628904,229,0 +170746628951,228,0 +170746628999,227,0 +170746629047,231,0 +170746629095,218,0 +170746629143,219,0 +170746629191,220,0 +170746629240,222,0 +170746629288,224,0 +170746629338,225,0 +170746629386,226,0 +170746629435,228,0 +170746629485,227,0 +170746629532,228,0 +170746629582,229,0 +170746629630,229,0 +170746629678,229,0 +170746629726,228,0 +170746629775,229,0 +170746629825,228,0 +170746629873,216,0 +170746629920,217,0 +170746629968,218,0 +170746630016,219,0 +170746630064,220,0 +170746630112,221,0 +170746630162,224,0 +170746630211,224,0 +170746630261,224,0 +170746630310,227,0 +170746630358,228,0 +170746630408,227,0 +170746630457,230,0 +170746630505,229,0 +170746630555,228,0 +170746630603,228,0 +170746630652,228,0 +170746630702,218,0 +170746630750,218,0 +170746630797,221,0 +170746630845,221,0 +170746630895,223,0 +170746630944,223,0 +170746630994,226,0 +170746631044,226,0 +170746631092,228,0 +170746631140,227,0 +170746631188,228,0 +170746631235,229,0 +170746631283,230,0 +170746631331,228,0 +170746631379,228,0 +170746631427,228,0 +170746631475,219,0 +170746631523,219,0 +170746631573,220,0 +170746631621,221,0 +170746631669,228,0 +170746631718,226,0 +170746631766,225,0 +170746631814,226,0 +170746631863,228,0 +170746631913,229,0 +170746631961,229,0 +170746632009,230,0 +170746632058,231,0 +170746632106,230,0 +170746632154,231,0 +170746632202,228,0 +170746632250,228,0 +170746632299,221,0 +170746632347,222,0 +170746632395,222,0 +170746632443,223,0 +170746632493,224,0 +170746632540,224,0 +170746632588,226,0 +170746632636,228,0 +170746632684,227,0 +170746632732,226,0 +170746632780,230,0 +170746632828,232,0 +170746632877,228,0 +170746632925,228,0 +170746632975,227,0 +170746633023,227,0 +170746633070,224,0 +170746633118,220,0 +170746633168,221,0 +170746633216,221,0 +170746633263,222,0 +170746633311,224,0 +170746633359,226,0 +170746633407,226,0 +170746633455,227,0 +170746633505,228,0 +170746633553,228,0 +170746633601,228,0 +170746633649,228,0 +170746633697,227,0 +170746633744,229,0 +170746633792,228,0 +170746633840,227,0 +170746633890,222,0 +170746633939,221,0 +170746633987,224,0 +170746634035,224,0 +170746634085,227,0 +170746634134,226,0 +170746634184,227,0 +170746634233,226,0 +170746634283,227,0 +170746634331,228,0 +170746634381,226,0 +170746634430,229,0 +170746634478,230,0 +170746634526,229,0 +170746634576,228,0 +170746634625,227,0 +170746634675,220,0 +170746634722,221,0 +170746634772,217,0 +170746634820,223,0 +170746634868,225,0 +170746634916,226,0 +170746634963,226,0 +170746635011,228,0 +170746635059,228,0 +170746635107,228,0 +170746635155,230,0 +170746635203,229,0 +170746635251,229,0 +170746635299,228,0 +170746635347,229,0 +170746635394,228,0 +170746635442,227,0 +170746635490,218,0 +170746635538,221,0 +170746635586,222,0 +170746635635,221,0 +170746635683,224,0 +170746635733,226,0 +170746635781,225,0 +170746635829,225,0 +170746635876,227,0 +170746635924,229,0 +170746635972,227,0 +170746636020,227,0 +170746636068,228,0 +170746636116,228,0 +170746636164,228,0 +170746636212,223,0 +170746636259,227,0 +170746636307,225,0 +170746636355,227,0 +170746636405,226,0 +170746636452,227,0 +170746636500,227,0 +170746636548,228,0 +170746636596,228,0 +170746636646,227,0 +170746636693,228,0 +170746636741,228,0 +170746636789,227,0 +170746636839,227,0 +170746636887,228,0 +170746636936,228,0 +170746636985,224,0 +170746637033,226,0 +170746637081,229,0 +170746637129,230,0 +170746637177,229,0 +170746637225,229,0 +170746637273,230,0 +170746637321,233,0 +170746637369,236,0 +170746637417,231,0 +170746637465,230,0 +170746637512,230,0 +170746637562,229,0 +170746637610,230,0 +170746637660,231,0 +170746637709,230,0 +170746637757,230,0 +170746637807,230,0 +170746637854,229,0 +170746637902,229,0 +170746637950,229,0 +170746637998,230,0 +170746638046,230,0 +170746638094,231,0 +170746638144,230,0 +170746638192,230,0 +170746638240,228,0 +170746638289,229,0 +170746638337,229,0 +170746638385,229,0 +170746638435,229,0 +170746638484,228,0 +170746638532,229,0 +170746638580,228,0 +170746638630,228,0 +170746638678,225,0 +170746638726,225,0 +170746638774,227,0 +170746638823,229,0 +170746638871,227,0 +170746638919,228,0 +170746638967,229,0 +170746639016,229,0 +170746639064,227,0 +170746639112,229,0 +170746639160,228,0 +170746639208,229,0 +170746639257,229,0 +170746639307,227,0 +170746639356,230,0 +170746639404,228,0 +170746639452,227,0 +170746639500,217,0 +170746639548,217,0 +170746639596,219,0 +170746639644,221,0 +170746639691,223,0 +170746639739,223,0 +170746639787,225,0 +170746639835,225,0 +170746639885,227,0 +170746639934,229,0 +170746639982,228,0 +170746640031,229,0 +170746640081,231,0 +170746640129,228,0 +170746640177,229,0 +170746640225,228,0 +170746640273,220,0 +170746640321,215,0 +170746640369,214,0 +170746640418,217,0 +170746640466,218,0 +170746640514,220,0 +170746640563,221,0 +170746640613,222,0 +170746640662,223,0 +170746640710,226,0 +170746640760,225,0 +170746640808,225,0 +170746640857,225,0 +170746640905,228,0 +170746640953,227,0 +170746641001,227,0 +170746641051,232,0 +170746641100,229,0 +170746641148,234,0 +170746641198,230,0 +170746641246,231,0 +170746641295,231,0 +170746641343,228,0 +170746641391,228,0 +170746641439,228,0 +170746641487,220,0 +170746641537,223,0 +170746641584,222,0 +170746641634,223,0 +170746641682,224,0 +170746641730,225,0 +170746641778,226,0 +170746641827,230,0 +170746641875,228,0 +170746641925,232,0 +170746641973,229,0 +170746642021,230,0 +170746642070,232,0 +170746642118,229,0 +170746642166,229,0 +170746642216,228,0 +170746642264,227,0 +170746642312,217,0 +170746642360,219,0 +170746642408,220,0 +170746642457,222,0 +170746642505,223,0 +170746642554,223,0 +170746642602,225,0 +170746642650,227,0 +170746642698,232,0 +170746642746,229,0 +170746642794,229,0 +170746642842,230,0 +170746642890,229,0 +170746642937,228,0 +170746642987,229,0 +170746643035,228,0 +170746643083,217,0 +170746643130,216,0 +170746643178,219,0 +170746643226,218,0 +170746643274,221,0 +170746643322,222,0 +170746643372,224,0 +170746643419,226,0 +170746643469,225,0 +170746643519,226,0 +170746643566,227,0 +170746643614,230,0 +170746643664,230,0 +170746643712,229,0 +170746643760,227,0 +170746643809,228,0 +170746643859,227,0 +170746643907,217,0 +170746643956,218,0 +170746644004,220,0 +170746644052,221,0 +170746644100,223,0 +170746644148,223,0 +170746644196,224,0 +170746644246,226,0 +170746644293,227,0 +170746644341,228,0 +170746644389,228,0 +170746644437,228,0 +170746644487,227,0 +170746644535,228,0 +170746644584,228,0 +170746644634,226,0 +170746644683,219,0 +170746644733,218,0 +170746644782,221,0 +170746644830,221,0 +170746644878,225,0 +170746644926,225,0 +170746644976,222,0 +170746645024,225,0 +170746645073,226,0 +170746645121,226,0 +170746645169,229,0 +170746645219,229,0 +170746645267,229,0 +170746645316,228,0 +170746645366,228,0 +170746645415,227,0 +170746645465,226,0 +170746645513,222,0 +170746645561,222,0 +170746645608,223,0 +170746645658,224,0 +170746645706,226,0 +170746645754,226,0 +170746645802,227,0 +170746645850,228,0 +170746645898,226,0 +170746645946,228,0 +170746645995,228,0 +170746646045,228,0 +170746646094,228,0 +170746646142,228,0 +170746646190,227,0 +170746646238,227,0 +170746646288,222,0 +170746646336,222,0 +170746646384,223,0 +170746646432,225,0 +170746646480,225,0 +170746646528,227,0 +170746646577,227,0 +170746646625,228,0 +170746646673,227,0 +170746646721,230,0 +170746646770,229,0 +170746646818,228,0 +170746646866,230,0 +170746646916,228,0 +170746646964,229,0 +170746647012,227,0 +170746647060,227,0 +170746647109,214,0 +170746647157,219,0 +170746647207,214,0 +170746647255,222,0 +170746647303,224,0 +170746647352,225,0 +170746647401,227,0 +170746647449,226,0 +170746647497,228,0 +170746647547,228,0 +170746647595,228,0 +170746647643,228,0 +170746647692,229,0 +170746647742,229,0 +170746647790,228,0 +170746647838,229,0 +170746647885,216,0 +170746647933,218,0 +170746647981,219,0 +170746648029,222,0 +170746648077,221,0 +170746648125,222,0 +170746648173,225,0 +170746648221,224,0 +170746648271,226,0 +170746648319,227,0 +170746648368,228,0 +170746648416,227,0 +170746648466,227,0 +170746648514,227,0 +170746648563,227,0 +170746648611,227,0 +170746648661,226,0 +170746648710,223,0 +170746648758,225,0 +170746648806,228,0 +170746648855,225,0 +170746648903,226,0 +170746648951,227,0 +170746648999,227,0 +170746649049,228,0 +170746649097,229,0 +170746649145,229,0 +170746649194,228,0 +170746649242,227,0 +170746649290,228,0 +170746649338,228,0 +170746649386,228,0 +170746649434,228,0 +170746649483,227,0 +170746649531,227,0 +170746649581,232,0 +170746649629,229,0 +170746649677,229,0 +170746649726,231,0 +170746649776,231,0 +170746649825,229,0 +170746649873,230,0 +170746649921,229,0 +170746649969,231,0 +170746650017,229,0 +170746650065,229,0 +170746650113,227,0 +170746650161,229,0 +170746650210,231,0 +170746650260,229,0 +170746650309,228,0 +170746650357,227,0 +170746650407,228,0 +170746650454,228,0 +170746650504,229,0 +170746650552,229,0 +170746650601,235,0 +170746650649,229,0 +170746650699,228,0 +170746650747,229,0 +170746650795,229,0 +170746650844,230,0 +170746650892,229,0 +170746650940,228,0 +170746650988,228,0 +170746651037,228,0 +170746651085,226,0 +170746651135,227,0 +170746651183,228,0 +170746651231,229,0 +170746651279,224,0 +170746651327,221,0 +170746651374,230,0 +170746651424,228,0 +170746651472,229,0 +170746651520,230,0 +170746651568,233,0 +170746651616,231,0 +170746651664,230,0 +170746651712,229,0 +170746651760,229,0 +170746651808,229,0 +170746651856,228,0 +170746651905,223,0 +170746651953,223,0 +170746652001,222,0 +170746652049,224,0 +170746652097,225,0 +170746652145,227,0 +170746652193,227,0 +170746652240,232,0 +170746652288,230,0 +170746652338,229,0 +170746652386,230,0 +170746652434,229,0 +170746652482,229,0 +170746652529,230,0 +170746652577,228,0 +170746652625,228,0 +170746652673,225,0 +170746652721,218,0 +170746652771,220,0 +170746652820,222,0 +170746652868,222,0 +170746652916,223,0 +170746652964,225,0 +170746653014,227,0 +170746653062,226,0 +170746653110,228,0 +170746653158,228,0 +170746653206,231,0 +170746653255,228,0 +170746653305,229,0 +170746653352,229,0 +170746653400,228,0 +170746653448,227,0 +170746653496,217,0 +170746653544,219,0 +170746653594,220,0 +170746653642,221,0 +170746653690,222,0 +170746653738,225,0 +170746653786,225,0 +170746653835,225,0 +170746653885,227,0 +170746653934,228,0 +170746653982,229,0 +170746654031,229,0 +170746654079,230,0 +170746654127,228,0 +170746654177,229,0 +170746654226,226,0 +170746654276,224,0 +170746654324,222,0 +170746654372,222,0 +170746654420,224,0 +170746654468,225,0 +170746654517,225,0 +170746654567,227,0 +170746654615,228,0 +170746654663,228,0 +170746654712,227,0 +170746654762,230,0 +170746654810,231,0 +170746654857,231,0 +170746654905,230,0 +170746654953,228,0 +170746655003,228,0 +170746655052,227,0 +170746655102,224,0 +170746655150,223,0 +170746655198,224,0 +170746655246,226,0 +170746655294,227,0 +170746655343,225,0 +170746655391,226,0 +170746655441,227,0 +170746655489,228,0 +170746655537,230,0 +170746655585,230,0 +170746655634,229,0 +170746655682,229,0 +170746655730,228,0 +170746655778,228,0 +170746655827,228,0 +170746655877,219,0 +170746655925,224,0 +170746655973,224,0 +170746656022,226,0 +170746656070,227,0 +170746656118,225,0 +170746656168,228,0 +170746656217,229,0 +170746656265,229,0 +170746656313,228,0 +170746656361,228,0 +170746656409,236,0 +170746656457,230,0 +170746656506,227,0 +170746656554,229,0 +170746656602,225,0 +170746656650,229,0 +170746656698,224,0 +170746656747,224,0 +170746656797,223,0 +170746656845,224,0 +170746656893,226,0 +170746656941,225,0 +170746656989,229,0 +170746657037,230,0 +170746657086,229,0 +170746657136,228,0 +170746657184,233,0 +170746657232,229,0 +170746657280,229,0 +170746657328,227,0 +170746657376,229,0 +170746657424,228,0 +170746657473,232,0 +170746657521,219,0 +170746657571,223,0 +170746657618,222,0 +170746657668,224,0 +170746657716,225,0 +170746657765,225,0 +170746657815,228,0 +170746657865,229,0 +170746657913,228,0 +170746657961,231,0 +170746658010,230,0 +170746658060,228,0 +170746658108,229,0 +170746658157,228,0 +170746658205,228,0 +170746658255,228,0 +170746658303,218,0 +170746658352,219,0 +170746658400,219,0 +170746658448,220,0 +170746658498,223,0 +170746658546,223,0 +170746658595,223,0 +170746658645,224,0 +170746658693,228,0 +170746658741,226,0 +170746658789,228,0 +170746658836,228,0 +170746658884,228,0 +170746658932,227,0 +170746658982,229,0 +170746659031,227,0 +170746659079,226,0 +170746659127,213,0 +170746659177,214,0 +170746659224,218,0 +170746659272,220,0 +170746659322,222,0 +170746659370,222,0 +170746659419,225,0 +170746659469,224,0 +170746659517,224,0 +170746659566,226,0 +170746659616,226,0 +170746659664,227,0 +170746659712,227,0 +170746659760,228,0 +170746659808,227,0 +170746659856,227,0 +170746659904,216,0 +170746659951,213,0 +170746660001,216,0 +170746660050,213,0 +170746660099,220,0 +170746660148,221,0 +170746660196,222,0 +170746660246,223,0 +170746660295,224,0 +170746660345,225,0 +170746660392,226,0 +170746660440,227,0 +170746660488,228,0 +170746660536,228,0 +170746660586,228,0 +170746660635,228,0 +170746660683,225,0 +170746660731,216,0 +170746660779,219,0 +170746660827,220,0 +170746660875,222,0 +170746660923,224,0 +170746660972,224,0 +170746661020,226,0 +170746661068,226,0 +170746661116,226,0 +170746661165,227,0 +170746661213,227,0 +170746661263,228,0 +170746661311,228,0 +170746661359,227,0 +170746661407,227,0 +170746661455,227,0 +170746661503,223,0 +170746661551,226,0 +170746661599,227,0 +170746661648,226,0 +170746661698,227,0 +170746661746,228,0 +170746661794,230,0 +170746661842,231,0 +170746661891,229,0 +170746661941,228,0 +170746661989,225,0 +170746662037,232,0 +170746662086,229,0 +170746662134,228,0 +170746662182,227,0 +170746662230,229,0 +170746662280,227,0 +170746662329,225,0 +170746662377,225,0 +170746662425,226,0 +170746662475,227,0 +170746662524,221,0 +170746662572,228,0 +170746662620,234,0 +170746662670,229,0 +170746662718,229,0 +170746662767,221,0 +170746662815,228,0 +170746662863,229,0 +170746662913,231,0 +170746662962,228,0 +170746663010,228,0 +170746663058,227,0 +170746663108,216,0 +170746663157,230,0 +170746663205,223,0 +170746663255,225,0 +170746663303,224,0 +170746663350,230,0 +170746663398,230,0 +170746663446,228,0 +170746663494,229,0 +170746663544,230,0 +170746663592,229,0 +170746663641,230,0 +170746663689,231,0 +170746663739,230,0 +170746663788,227,0 +170746663838,227,0 +170746663887,223,0 +170746663937,220,0 +170746663987,221,0 +170746664036,224,0 +170746664084,226,0 +170746664134,225,0 +170746664183,226,0 +170746664233,228,0 +170746664282,228,0 +170746664330,228,0 +170746664380,230,0 +170746664429,229,0 +170746664477,230,0 +170746664525,230,0 +170746664575,229,0 +170746664623,229,0 +170746664672,227,0 +170746664720,223,0 +170746664768,223,0 +170746664816,226,0 +170746664865,224,0 +170746664915,227,0 +170746664963,227,0 +170746665011,227,0 +170746665059,228,0 +170746665107,227,0 +170746665154,228,0 +170746665202,229,0 +170746665252,230,0 +170746665300,227,0 +170746665347,228,0 +170746665395,228,0 +170746665443,228,0 +170746665491,231,0 +170746665539,226,0 +170746665587,227,0 +170746665636,226,0 +170746665686,227,0 +170746665736,229,0 +170746665784,228,0 +170746665832,229,0 +170746665881,229,0 +170746665929,234,0 +170746665977,230,0 +170746666026,229,0 +170746666074,228,0 +170746666123,229,0 +170746666171,227,0 +170746666219,228,0 +170746666269,228,0 +170746666318,231,0 +170746666366,227,0 +170746666414,230,0 +170746666462,231,0 +170746666510,230,0 +170746666557,230,0 +170746666605,229,0 +170746666653,230,0 +170746666701,228,0 +170746666749,228,0 +170746666797,228,0 +170746666845,228,0 +170746666892,226,0 +170746666940,227,0 +170746666990,229,0 +170746667038,228,0 +170746667087,227,0 +170746667135,225,0 +170746667183,227,0 +170746667231,227,0 +170746667279,227,0 +170746667327,227,0 +170746667375,229,0 +170746667424,231,0 +170746667472,229,0 +170746667520,227,0 +170746667570,228,0 +170746667619,229,0 +170746667667,228,0 +170746667715,228,0 +170746667763,228,0 +170746667811,229,0 +170746667859,227,0 +170746667907,223,0 +170746667955,224,0 +170746668002,223,0 +170746668050,224,0 +170746668100,225,0 +170746668149,227,0 +170746668197,228,0 +170746668245,228,0 +170746668295,227,0 +170746668345,229,0 +170746668392,228,0 +170746668440,229,0 +170746668488,228,0 +170746668536,227,0 +170746668586,227,0 +170746668634,227,0 +170746668683,227,0 +170746668731,220,0 +170746668780,220,0 +170746668830,223,0 +170746668878,224,0 +170746668926,225,0 +170746668975,225,0 +170746669023,227,0 +170746669071,229,0 +170746669121,225,0 +170746669171,228,0 +170746669220,227,0 +170746669268,228,0 +170746669316,227,0 +170746669364,228,0 +170746669412,228,0 +170746669460,227,0 +170746669509,218,0 +170746669557,217,0 +170746669607,221,0 +170746669655,221,0 +170746669703,222,0 +170746669752,223,0 +170746669800,226,0 +170746669848,225,0 +170746669898,226,0 +170746669946,226,0 +170746669993,228,0 +170746670041,227,0 +170746670091,228,0 +170746670139,227,0 +170746670188,230,0 +170746670236,234,0 +170746670284,230,0 +170746670332,217,0 +170746670380,217,0 +170746670430,219,0 +170746670479,222,0 +170746670529,223,0 +170746670576,223,0 +170746670624,227,0 +170746670672,226,0 +170746670720,227,0 +170746670769,228,0 +170746670817,228,0 +170746670865,229,0 +170746670913,228,0 +170746670961,228,0 +170746671009,228,0 +170746671058,227,0 +170746671108,219,0 +170746671156,218,0 +170746671204,219,0 +170746671253,220,0 +170746671303,222,0 +170746671352,222,0 +170746671400,223,0 +170746671448,224,0 +170746671498,224,0 +170746671546,226,0 +170746671594,226,0 +170746671642,226,0 +170746671690,227,0 +170746671737,228,0 +170746671787,228,0 +170746671835,228,0 +170746671884,226,0 +170746671932,216,0 +170746671980,218,0 +170746672028,219,0 +170746672076,220,0 +170746672124,222,0 +170746672174,224,0 +170746672222,224,0 +170746672269,225,0 +170746672317,225,0 +170746672367,226,0 +170746672415,227,0 +170746672463,230,0 +170746672511,227,0 +170746672560,228,0 +170746672608,228,0 +170746672656,226,0 +170746672704,215,0 +170746672754,216,0 +170746672802,219,0 +170746672850,221,0 +170746672899,222,0 +170746672949,224,0 +170746672996,224,0 +170746673044,225,0 +170746673092,227,0 +170746673140,228,0 +170746673190,227,0 +170746673237,228,0 +170746673287,228,0 +170746673335,227,0 +170746673384,227,0 +170746673432,227,0 +170746673480,227,0 +170746673528,224,0 +170746673576,223,0 +170746673623,223,0 +170746673671,226,0 +170746673721,229,0 +170746673769,227,0 +170746673819,227,0 +170746673866,227,0 +170746673916,228,0 +170746673964,228,0 +170746674013,228,0 +170746674061,230,0 +170746674111,229,0 +170746674160,229,0 +170746674208,229,0 +170746674256,228,0 +170746674306,230,0 +170746674354,228,0 +170746674402,228,0 +170746674450,227,0 +170746674499,228,0 +170746674547,230,0 +170746674595,231,0 +170746674643,230,0 +170746674693,231,0 +170746674742,233,0 +170746674790,231,0 +170746674838,230,0 +170746674886,228,0 +170746674935,228,0 +170746674983,228,0 +170746675031,228,0 +170746675079,226,0 +170746675129,225,0 +170746675177,221,0 +170746675225,228,0 +170746675273,227,0 +170746675321,228,0 +170746675369,227,0 +170746675417,230,0 +170746675466,227,0 +170746675514,229,0 +170746675562,229,0 +170746675610,232,0 +170746675660,230,0 +170746675708,231,0 +170746675755,228,0 +170746675805,228,0 +170746675854,228,0 +170746675902,223,0 +170746675950,226,0 +170746676000,228,0 +170746676048,229,0 +170746676096,227,0 +170746676144,230,0 +170746676193,228,0 +170746676243,226,0 +170746676291,230,0 +170746676339,229,0 +170746676387,229,0 +170746676435,228,0 +170746676484,227,0 +170746676534,228,0 +170746676582,228,0 +170746676630,232,0 +170746676678,228,0 +170746676726,223,0 +170746676774,224,0 +170746676822,225,0 +170746676870,226,0 +170746676919,226,0 +170746676967,228,0 +170746677015,227,0 +170746677065,228,0 +170746677112,227,0 +170746677160,230,0 +170746677208,232,0 +170746677256,234,0 +170746677306,228,0 +170746677355,229,0 +170746677405,228,0 +170746677454,227,0 +170746677504,218,0 +170746677552,221,0 +170746677601,222,0 +170746677651,223,0 +170746677700,224,0 +170746677750,224,0 +170746677798,226,0 +170746677846,226,0 +170746677894,225,0 +170746677943,230,0 +170746677993,231,0 +170746678041,232,0 +170746678090,228,0 +170746678140,228,0 +170746678189,229,0 +170746678237,229,0 +170746678285,226,0 +170746678335,219,0 +170746678384,219,0 +170746678432,222,0 +170746678480,222,0 +170746678528,223,0 +170746678577,225,0 +170746678625,227,0 +170746678673,227,0 +170746678721,226,0 +170746678771,228,0 +170746678819,230,0 +170746678867,230,0 +170746678914,228,0 +170746678962,229,0 +170746679010,228,0 +170746679060,227,0 +170746679108,218,0 +170746679156,218,0 +170746679204,220,0 +170746679253,221,0 +170746679303,222,0 +170746679351,223,0 +170746679400,225,0 +170746679448,225,0 +170746679496,228,0 +170746679546,227,0 +170746679593,228,0 +170746679641,228,0 +170746679689,228,0 +170746679739,229,0 +170746679788,228,0 +170746679836,227,0 +170746679886,226,0 +170746679935,217,0 +170746679983,218,0 +170746680031,234,0 +170746680081,221,0 +170746680130,224,0 +170746680180,223,0 +170746680228,225,0 +170746680276,225,0 +170746680325,227,0 +170746680373,229,0 +170746680423,228,0 +170746680471,230,0 +170746680519,229,0 +170746680567,227,0 +170746680616,229,0 +170746680666,227,0 +170746680715,218,0 +170746680763,218,0 +170746680811,219,0 +170746680859,219,0 +170746680907,222,0 +170746680956,223,0 +170746681006,224,0 +170746681054,226,0 +170746681102,226,0 +170746681150,227,0 +170746681198,224,0 +170746681246,228,0 +170746681294,228,0 +170746681341,228,0 +170746681391,228,0 +170746681440,228,0 +170746681488,227,0 +170746681536,218,0 +170746681584,219,0 +170746681632,220,0 +170746681682,222,0 +170746681730,224,0 +170746681777,225,0 +170746681825,241,0 +170746681875,228,0 +170746681923,227,0 +170746681972,230,0 +170746682022,227,0 +170746682070,229,0 +170746682118,229,0 +170746682167,228,0 +170746682215,227,0 +170746682265,227,0 +170746682314,218,0 +170746682364,224,0 +170746682412,225,0 +170746682460,223,0 +170746682508,224,0 +170746682556,225,0 +170746682604,225,0 +170746682652,227,0 +170746682700,228,0 +170746682748,229,0 +170746682795,227,0 +170746682843,229,0 +170746682891,229,0 +170746682939,227,0 +170746682987,227,0 +170746683037,227,0 +170746683085,227,0 +170746683133,221,0 +170746683182,221,0 +170746683230,223,0 +170746683280,223,0 +170746683327,221,0 +170746683375,226,0 +170746683425,228,0 +170746683473,226,0 +170746683521,227,0 +170746683569,229,0 +170746683618,229,0 +170746683668,229,0 +170746683716,228,0 +170746683764,228,0 +170746683813,227,0 +170746683861,227,0 +170746683909,218,0 +170746683957,215,0 +170746684005,221,0 +170746684055,223,0 +170746684103,224,0 +170746684152,227,0 +170746684200,225,0 +170746684248,228,0 +170746684298,227,0 +170746684346,229,0 +170746684395,226,0 +170746684443,227,0 +170746684491,228,0 +170746684541,228,0 +170746684590,229,0 +170746684640,227,0 +170746684688,226,0 +170746684736,215,0 +170746684784,213,0 +170746684832,225,0 +170746684880,223,0 +170746684929,222,0 +170746684979,223,0 +170746685026,226,0 +170746685074,225,0 +170746685124,226,0 +170746685172,227,0 +170746685221,228,0 +170746685269,227,0 +170746685317,228,0 +170746685365,229,0 +170746685413,230,0 +170746685461,228,0 +170746685509,226,0 +170746685559,225,0 +170746685608,227,0 +170746685658,227,0 +170746685706,227,0 +170746685753,228,0 +170746685801,227,0 +170746685849,228,0 +170746685897,228,0 +170746685947,229,0 +170746685996,228,0 +170746686044,227,0 +170746686092,228,0 +170746686140,228,0 +170746686190,228,0 +170746686238,228,0 +170746686287,227,0 +170746686335,232,0 +170746686385,231,0 +170746686433,229,0 +170746686482,230,0 +170746686532,230,0 +170746686581,232,0 +170746686629,228,0 +170746686677,230,0 +170746686725,229,0 +170746686775,232,0 +170746686823,228,0 +170746686872,227,0 +170746686920,229,0 +170746686968,228,0 +170746687017,229,0 +170746687065,229,0 +170746687113,226,0 +170746687161,227,0 +170746687209,227,0 +170746687259,229,0 +170746687307,230,0 +170746687355,230,0 +170746687403,230,0 +170746687451,229,0 +170746687498,230,0 +170746687546,228,0 +170746687596,230,0 +170746687645,229,0 +170746687693,228,0 +170746687741,227,0 +170746687789,227,0 +170746687837,227,0 +170746687885,228,0 +170746687933,223,0 +170746687981,221,0 +170746688029,225,0 +170746688077,225,0 +170746688126,225,0 +170746688174,226,0 +170746688222,228,0 +170746688270,228,0 +170746688318,228,0 +170746688367,231,0 +170746688415,229,0 +170746688463,229,0 +170746688511,232,0 +170746688559,229,0 +170746688607,229,0 +170746688657,228,0 +170746688706,226,0 +170746688754,218,0 +170746688804,219,0 +170746688851,219,0 +170746688899,223,0 +170746688947,223,0 +170746688997,226,0 +170746689046,225,0 +170746689096,225,0 +170746689144,226,0 +170746689192,228,0 +170746689240,228,0 +170746689288,228,0 +170746689337,227,0 +170746689385,227,0 +170746689433,228,0 +170746689481,227,0 +170746689529,223,0 +170746689577,222,0 +170746689625,222,0 +170746689674,224,0 +170746689722,225,0 +170746689770,229,0 +170746689818,226,0 +170746689866,226,0 +170746689914,229,0 +170746689963,236,0 +170746690013,230,0 +170746690063,229,0 +170746690110,229,0 +170746690158,229,0 +170746690206,229,0 +170746690256,228,0 +170746690304,226,0 +170746690353,220,0 +170746690403,220,0 +170746690451,221,0 +170746690500,223,0 +170746690550,224,0 +170746690598,227,0 +170746690646,227,0 +170746690695,229,0 +170746690743,230,0 +170746690793,229,0 +170746690842,228,0 +170746690890,229,0 +170746690938,229,0 +170746690988,229,0 +170746691036,229,0 +170746691084,228,0 +170746691131,220,0 +170746691181,220,0 +170746691229,222,0 +170746691277,222,0 +170746691325,224,0 +170746691374,224,0 +170746691422,227,0 +170746691472,228,0 +170746691521,230,0 +170746691569,229,0 +170746691619,229,0 +170746691667,228,0 +170746691715,230,0 +170746691764,229,0 +170746691812,229,0 +170746691860,227,0 +170746691908,228,0 +170746691957,216,0 +170746692005,218,0 +170746692053,220,0 +170746692103,221,0 +170746692151,224,0 +170746692200,224,0 +170746692248,227,0 +170746692296,226,0 +170746692346,227,0 +170746692394,229,0 +170746692442,229,0 +170746692489,230,0 +170746692537,230,0 +170746692585,230,0 +170746692633,227,0 +170746692683,227,0 +170746692732,217,0 +170746692780,216,0 +170746692830,218,0 +170746692878,219,0 +170746692925,221,0 +170746692975,222,0 +170746693023,228,0 +170746693071,225,0 +170746693119,225,0 +170746693167,227,0 +170746693216,228,0 +170746693264,227,0 +170746693312,228,0 +170746693360,228,0 +170746693408,224,0 +170746693455,227,0 +170746693503,228,0 +170746693553,215,0 +170746693601,216,0 +170746693648,218,0 +170746693696,221,0 +170746693744,223,0 +170746693792,222,0 +170746693840,224,0 +170746693888,224,0 +170746693936,227,0 +170746693985,231,0 +170746694033,227,0 +170746694083,228,0 +170746694131,224,0 +170746694178,228,0 +170746694228,229,0 +170746694276,228,0 +170746694324,225,0 +170746694372,218,0 +170746694420,219,0 +170746694467,220,0 +170746694515,222,0 +170746694563,223,0 +170746694611,226,0 +170746694659,226,0 +170746694707,226,0 +170746694756,227,0 +170746694804,227,0 +170746694854,229,0 +170746694903,229,0 +170746694951,230,0 +170746695000,228,0 +170746695050,228,0 +170746695100,227,0 +170746695149,218,0 +170746695199,220,0 +170746695248,221,0 +170746695298,222,0 +170746695346,223,0 +170746695393,223,0 +170746695441,225,0 +170746695489,225,0 +170746695537,229,0 +170746695585,227,0 +170746695633,225,0 +170746695682,229,0 +170746695732,228,0 +170746695781,228,0 +170746695829,228,0 +170746695877,228,0 +170746695925,219,0 +170746695973,217,0 +170746696021,217,0 +170746696069,219,0 +170746696117,222,0 +170746696165,223,0 +170746696214,224,0 +170746696264,226,0 +170746696313,226,0 +170746696361,227,0 +170746696409,229,0 +170746696457,227,0 +170746696505,229,0 +170746696553,228,0 +170746696601,230,0 +170746696649,227,0 +170746696697,227,0 +170746696746,218,0 +170746696794,219,0 +170746696842,220,0 +170746696892,215,0 +170746696940,216,0 +170746696989,224,0 +170746697037,223,0 +170746697087,225,0 +170746697135,226,0 +170746697184,227,0 +170746697234,228,0 +170746697282,228,0 +170746697331,227,0 +170746697379,228,0 +170746697429,228,0 +170746697478,227,0 +170746697526,222,0 +170746697574,221,0 +170746697622,223,0 +170746697670,224,0 +170746697720,225,0 +170746697768,226,0 +170746697817,226,0 +170746697865,227,0 +170746697913,228,0 +170746697962,228,0 +170746698010,228,0 +170746698058,227,0 +170746698108,228,0 +170746698156,227,0 +170746698204,228,0 +170746698252,228,0 +170746698300,227,0 +170746698347,229,0 +170746698395,227,0 +170746698443,228,0 +170746698491,228,0 +170746698539,229,0 +170746698587,229,0 +170746698635,230,0 +170746698685,228,0 +170746698732,230,0 +170746698782,227,0 +170746698830,229,0 +170746698879,230,0 +170746698927,231,0 +170746698975,230,0 +170746699024,230,0 +170746699074,229,0 +170746699122,229,0 +170746699170,229,0 +170746699217,229,0 +170746699265,230,0 +170746699313,229,0 +170746699361,230,0 +170746699409,233,0 +170746699457,229,0 +170746699505,230,0 +170746699554,229,0 +170746699602,230,0 +170746699651,227,0 +170746699699,230,0 +170746699747,229,0 +170746699797,230,0 +170746699845,229,0 +170746699893,228,0 +170746699941,227,0 +170746699989,227,0 +170746700037,228,0 +170746700085,231,0 +170746700134,227,0 +170746700184,232,0 +170746700232,228,0 +170746700280,229,0 +170746700327,230,0 +170746700375,231,0 +170746700423,229,0 +170746700471,228,0 +170746700519,230,0 +170746700567,231,0 +170746700615,228,0 +170746700663,228,0 +170746700711,228,0 +170746700761,221,0 +170746700810,221,0 +170746700858,222,0 +170746700906,225,0 +170746700954,226,0 +170746701002,226,0 +170746701051,227,0 +170746701099,227,0 +170746701149,227,0 +170746701197,229,0 +170746701245,229,0 +170746701295,228,0 +170746701344,242,0 +170746701392,235,0 +170746701440,228,0 +170746701488,228,0 +170746701536,218,0 +170746701585,221,0 +170746701633,221,0 +170746701681,221,0 +170746701731,224,0 +170746701779,226,0 +170746701828,222,0 +170746701876,224,0 +170746701926,228,0 +170746701974,229,0 +170746702021,232,0 +170746702069,229,0 +170746702119,230,0 +170746702169,229,0 +170746702217,228,0 +170746702266,229,0 +170746702316,227,0 +170746702365,219,0 +170746702415,221,0 +170746702462,223,0 +170746702510,223,0 +170746702558,224,0 +170746702606,225,0 +170746702654,225,0 +170746702703,227,0 +170746702753,228,0 +170746702801,228,0 +170746702849,229,0 +170746702898,228,0 +170746702946,228,0 +170746702994,230,0 +170746703044,227,0 +170746703092,227,0 +170746703140,218,0 +170746703189,220,0 +170746703237,221,0 +170746703285,223,0 +170746703335,225,0 +170746703384,226,0 +170746703432,227,0 +170746703480,226,0 +170746703530,233,0 +170746703579,229,0 +170746703629,229,0 +170746703677,229,0 +170746703726,229,0 +170746703776,230,0 +170746703824,228,0 +170746703873,229,0 +170746703921,228,0 +170746703969,223,0 +170746704019,225,0 +170746704068,219,0 +170746704117,226,0 +170746704167,228,0 +170746704217,229,0 +170746704266,229,0 +170746704316,228,0 +170746704365,228,0 +170746704415,229,0 +170746704463,230,0 +170746704511,229,0 +170746704560,228,0 +170746704610,228,0 +170746704659,228,0 +170746704707,227,0 +170746704755,224,0 +170746704805,224,0 +170746704853,224,0 +170746704900,225,0 +170746704948,226,0 +170746704996,227,0 +170746705044,228,0 +170746705092,229,0 +170746705140,231,0 +170746705188,229,0 +170746705236,227,0 +170746705284,229,0 +170746705332,230,0 +170746705381,230,0 +170746705429,228,0 +170746705479,227,0 +170746705527,227,0 +170746705576,222,0 +170746705624,222,0 +170746705672,224,0 +170746705721,224,0 +170746705769,225,0 +170746705819,227,0 +170746705868,227,0 +170746705916,227,0 +170746705964,228,0 +170746706012,230,0 +170746706060,228,0 +170746706108,230,0 +170746706156,228,0 +170746706205,229,0 +170746706253,228,0 +170746706303,228,0 +170746706351,219,0 +170746706399,219,0 +170746706447,220,0 +170746706496,222,0 +170746706546,223,0 +170746706595,225,0 +170746706643,227,0 +170746706691,227,0 +170746706739,227,0 +170746706787,228,0 +170746706837,229,0 +170746706885,231,0 +170746706933,228,0 +170746706981,228,0 +170746707029,229,0 +170746707077,227,0 +170746707125,227,0 +170746707173,218,0 +170746707222,219,0 +170746707272,220,0 +170746707321,221,0 +170746707371,223,0 +170746707419,225,0 +170746707467,225,0 +170746707515,227,0 +170746707562,228,0 +170746707610,229,0 +170746707658,228,0 +170746707708,230,0 +170746707757,227,0 +170746707807,229,0 +170746707856,228,0 +170746707904,227,0 +170746707952,217,0 +170746708000,217,0 +170746708048,219,0 +170746708096,221,0 +170746708146,220,0 +170746708195,223,0 +170746708243,223,0 +170746708291,224,0 +170746708339,225,0 +170746708388,226,0 +170746708438,229,0 +170746708486,228,0 +170746708536,229,0 +170746708585,226,0 +170746708635,229,0 +170746708684,228,0 +170746708732,226,0 +170746708782,215,0 +170746708831,216,0 +170746708879,215,0 +170746708927,213,0 +170746708975,216,0 +170746709023,221,0 +170746709071,221,0 +170746709119,222,0 +170746709167,224,0 +170746709217,224,0 +170746709264,221,0 +170746709312,227,0 +170746709360,223,0 +170746709410,228,0 +170746709459,227,0 +170746709509,227,0 +170746709557,215,0 +170746709605,213,0 +170746709653,217,0 +170746709701,220,0 +170746709749,220,0 +170746709796,221,0 +170746709844,222,0 +170746709892,223,0 +170746709940,224,0 +170746709988,225,0 +170746710037,227,0 +170746710085,227,0 +170746710135,226,0 +170746710183,227,0 +170746710231,228,0 +170746710279,226,0 +170746710326,226,0 +170746710374,221,0 +170746710424,224,0 +170746710472,225,0 +170746710520,225,0 +170746710569,225,0 +170746710619,226,0 +170746710666,228,0 +170746710714,228,0 +170746710764,226,0 +170746710812,230,0 +170746710860,230,0 +170746710909,228,0 +170746710957,230,0 +170746711005,229,0 +170746711053,223,0 +170746711101,228,0 +170746711149,227,0 +170746711198,229,0 +170746711246,227,0 +170746711294,227,0 +170746711342,229,0 +170746711390,229,0 +170746711438,229,0 +170746711485,229,0 +170746711535,231,0 +170746711583,228,0 +170746711631,224,0 +170746711679,229,0 +170746711727,229,0 +170746711774,233,0 +170746711824,228,0 +170746711872,228,0 +170746711920,227,0 +170746711968,221,0 +170746712015,223,0 +170746712063,225,0 +170746712113,226,0 +170746712161,227,0 +170746712209,226,0 +170746712257,229,0 +170746712305,229,0 +170746712353,228,0 +170746712402,228,0 +170746712450,229,0 +170746712498,228,0 +170746712546,229,0 +170746712594,229,0 +170746712642,229,0 +170746712692,227,0 +170746712740,226,0 +170746712788,224,0 +170746712836,219,0 +170746712885,225,0 +170746712933,227,0 +170746712981,228,0 +170746713029,226,0 +170746713077,228,0 +170746713126,228,0 +170746713174,228,0 +170746713222,228,0 +170746713270,228,0 +170746713320,231,0 +170746713368,229,0 +170746713417,233,0 +170746713465,227,0 +170746713515,227,0 +170746713563,222,0 +170746713610,223,0 +170746713658,224,0 +170746713706,225,0 +170746713754,226,0 +170746713804,226,0 +170746713852,226,0 +170746713899,227,0 +170746713947,230,0 +170746713995,229,0 +170746714045,229,0 +170746714093,230,0 +170746714140,228,0 +170746714190,228,0 +170746714238,228,0 +170746714286,229,0 +170746714334,227,0 +170746714383,225,0 +170746714431,227,0 +170746714479,224,0 +170746714527,228,0 +170746714575,227,0 +170746714625,229,0 +170746714674,228,0 +170746714722,228,0 +170746714770,229,0 +170746714818,228,0 +170746714868,228,0 +170746714916,227,0 +170746714964,228,0 +170746715013,226,0 +170746715061,227,0 +170746715109,227,0 +170746715159,228,0 +170746715207,228,0 +170746715256,227,0 +170746715304,228,0 +170746715352,234,0 +170746715400,231,0 +170746715448,231,0 +170746715496,230,0 +170746715545,228,0 +170746715595,229,0 +170746715643,228,0 +170746715692,228,0 +170746715742,227,0 +170746715790,227,0 +170746715838,228,0 +170746715887,227,0 +170746715935,227,0 +170746715983,229,0 +170746716033,227,0 +170746716081,227,0 +170746716130,228,0 +170746716178,228,0 +170746716226,227,0 +170746716276,229,0 +170746716324,227,0 +170746716372,228,0 +170746716420,228,0 +170746716467,231,0 +170746716515,229,0 +170746716563,229,0 +170746716611,228,0 +170746716661,228,0 +170746716708,228,0 +170746716756,226,0 +170746716804,224,0 +170746716852,228,0 +170746716900,228,0 +170746716950,225,0 +170746716999,229,0 +170746717049,228,0 +170746717098,227,0 +170746717148,230,0 +170746717198,228,0 +170746717245,228,0 +170746717293,230,0 +170746717341,228,0 +170746717389,229,0 +170746717437,227,0 +170746717485,227,0 +170746717535,227,0 +170746717584,220,0 +170746717632,220,0 +170746717680,221,0 +170746717728,222,0 +170746717778,223,0 +170746717826,224,0 +170746717875,226,0 +170746717923,226,0 +170746717973,227,0 +170746718020,230,0 +170746718070,229,0 +170746718118,229,0 +170746718166,229,0 +170746718215,227,0 +170746718263,228,0 +170746718311,227,0 +170746718359,217,0 +170746718407,217,0 +170746718456,218,0 +170746718506,220,0 +170746718554,222,0 +170746718602,224,0 +170746718650,223,0 +170746718699,225,0 +170746718747,226,0 +170746718795,229,0 +170746718843,228,0 +170746718891,227,0 +170746718940,229,0 +170746718988,229,0 +170746719036,228,0 +170746719085,227,0 +170746719133,227,0 +170746719181,215,0 +170746719229,215,0 +170746719277,218,0 +170746719327,219,0 +170746719376,222,0 +170746719426,223,0 +170746719475,223,0 +170746719523,223,0 +170746719573,225,0 +170746719622,225,0 +170746719670,228,0 +170746719718,228,0 +170746719767,229,0 +170746719815,230,0 +170746719863,229,0 +170746719911,225,0 +170746719959,216,0 +170746720008,215,0 +170746720056,216,0 +170746720104,217,0 +170746720152,218,0 +170746720200,220,0 +170746720249,221,0 +170746720297,222,0 +170746720345,224,0 +170746720393,224,0 +170746720442,226,0 +170746720490,230,0 +170746720538,226,0 +170746720586,228,0 +170746720635,227,0 +170746720683,227,0 +170746720733,228,0 +170746720781,216,0 +170746720829,215,0 +170746720876,218,0 +170746720924,220,0 +170746720972,220,0 +170746721020,222,0 +170746721068,221,0 +170746721116,224,0 +170746721164,217,0 +170746721212,224,0 +170746721260,225,0 +170746721308,226,0 +170746721356,227,0 +170746721405,229,0 +170746721453,228,0 +170746721501,227,0 +170746721549,227,0 +170746721597,216,0 +170746721644,216,0 +170746721692,221,0 +170746721740,222,0 +170746721788,221,0 +170746721836,223,0 +170746721884,223,0 +170746721932,225,0 +170746721980,225,0 +170746722027,226,0 +170746722077,227,0 +170746722125,227,0 +170746722174,228,0 +170746722222,227,0 +170746722270,227,0 +170746722319,227,0 +170746722367,222,0 +170746722415,223,0 +170746722463,222,0 +170746722511,223,0 +170746722559,225,0 +170746722607,226,0 +170746722656,228,0 +170746722704,226,0 +170746722752,239,0 +170746722802,227,0 +170746722850,228,0 +170746722898,228,0 +170746722947,228,0 +170746722997,228,0 +170746723045,228,0 +170746723094,229,0 +170746723142,227,0 +170746723190,225,0 +170746723238,225,0 +170746723286,228,0 +170746723334,227,0 +170746723383,228,0 +170746723431,232,0 +170746723479,231,0 +170746723527,228,0 +170746723575,228,0 +170746723625,228,0 +170746723673,229,0 +170746723721,228,0 +170746723769,228,0 +170746723817,229,0 +170746723865,228,0 +170746723912,228,0 +170746723960,227,0 +170746724008,229,0 +170746724056,225,0 +170746724104,227,0 +170746724152,228,0 +170746724200,228,0 +170746724248,229,0 +170746724297,227,0 +170746724346,229,0 +170746724394,228,0 +170746724442,228,0 +170746724490,228,0 +170746724538,228,0 +170746724586,227,0 +170746724634,228,0 +170746724682,229,0 +170746724731,227,0 +170746724779,226,0 +170746724828,227,0 +170746724876,227,0 +170746724924,227,0 +170746724972,229,0 +170746725022,228,0 +170746725070,229,0 +170746725117,228,0 +170746725167,229,0 +170746725216,228,0 +170746725264,229,0 +170746725312,228,0 +170746725360,227,0 +170746725409,227,0 +170746725457,228,0 +170746725507,227,0 +170746725555,226,0 +170746725603,224,0 +170746725650,226,0 +170746725700,225,0 +170746725748,225,0 +170746725797,226,0 +170746725845,227,0 +170746725893,229,0 +170746725941,228,0 +170746725990,229,0 +170746726038,228,0 +170746726086,229,0 +170746726136,228,0 +170746726185,228,0 +170746726235,227,0 +170746726284,228,0 +170746726334,227,0 +170746726382,221,0 +170746726431,221,0 +170746726479,224,0 +170746726527,223,0 +170746726577,226,0 +170746726624,225,0 +170746726674,226,0 +170746726722,229,0 +170746726771,230,0 +170746726819,232,0 +170746726867,230,0 +170746726917,229,0 +170746726965,228,0 +170746727014,228,0 +170746727064,228,0 +170746727113,228,0 +170746727161,227,0 +170746727211,221,0 +170746727259,221,0 +170746727307,222,0 +170746727355,225,0 +170746727403,225,0 +170746727451,227,0 +170746727500,227,0 +170746727550,226,0 +170746727599,230,0 +170746727649,228,0 +170746727698,230,0 +170746727748,231,0 +170746727796,228,0 +170746727845,228,0 +170746727895,229,0 +170746727943,227,0 +170746727992,217,0 +170746728042,218,0 +170746728091,220,0 +170746728141,221,0 +170746728190,222,0 +170746728240,223,0 +170746728289,223,0 +170746728337,225,0 +170746728385,231,0 +170746728435,231,0 +170746728484,227,0 +170746728532,229,0 +170746728580,228,0 +170746728630,229,0 +170746728679,230,0 +170746728729,227,0 +170746728777,216,0 +170746728825,215,0 +170746728873,217,0 +170746728922,219,0 +170746728970,221,0 +170746729018,222,0 +170746729066,224,0 +170746729114,224,0 +170746729162,225,0 +170746729210,228,0 +170746729260,228,0 +170746729308,228,0 +170746729356,228,0 +170746729404,229,0 +170746729452,228,0 +170746729499,230,0 +170746729549,227,0 +170746729599,220,0 +170746729646,219,0 +170746729696,223,0 +170746729744,223,0 +170746729792,223,0 +170746729840,223,0 +170746729890,224,0 +170746729937,226,0 +170746729985,227,0 +170746730035,226,0 +170746730083,229,0 +170746730133,228,0 +170746730181,229,0 +170746730229,228,0 +170746730276,227,0 +170746730326,228,0 +170746730375,217,0 +170746730423,221,0 +170746730471,222,0 +170746730519,223,0 +170746730567,224,0 +170746730615,225,0 +170746730664,228,0 +170746730712,227,0 +170746730762,226,0 +170746730810,228,0 +170746730858,225,0 +170746730906,227,0 +170746730954,228,0 +170746731002,228,0 +170746731051,227,0 +170746731101,228,0 +170746731149,227,0 +170746731197,218,0 +170746731246,220,0 +170746731294,221,0 +170746731344,222,0 +170746731392,222,0 +170746731441,223,0 +170746731489,224,0 +170746731537,226,0 +170746731587,226,0 +170746731635,225,0 +170746731683,228,0 +170746731731,228,0 +170746731780,228,0 +170746731830,228,0 +170746731879,228,0 +170746731927,228,0 +170746731975,228,0 +170746732023,219,0 +170746732073,221,0 +170746732121,223,0 +170746732169,222,0 +170746732218,224,0 +170746732266,225,0 +170746732316,225,0 +170746732364,227,0 +170746732412,227,0 +170746732460,228,0 +170746732509,229,0 +170746732557,227,0 +170746732606,229,0 +170746732654,228,0 +170746732702,228,0 +170746732752,226,0 +170746732800,221,0 +170746732848,225,0 +170746732896,223,0 +170746732944,223,0 +170746732992,225,0 +170746733040,224,0 +170746733087,226,0 +170746733135,225,0 +170746733183,227,0 +170746733233,227,0 +170746733283,228,0 +170746733330,228,0 +170746733380,228,0 +170746733428,227,0 +170746733477,229,0 +170746733525,228,0 +170746733573,225,0 +170746733623,216,0 +170746733673,221,0 +170746733722,221,0 +170746733770,222,0 +170746733820,223,0 +170746733868,223,0 +170746733915,225,0 +170746733963,225,0 +170746734013,227,0 +170746734061,227,0 +170746734109,227,0 +170746734158,228,0 +170746734208,228,0 +170746734257,227,0 +170746734307,228,0 +170746734356,226,0 +170746734406,224,0 +170746734454,224,0 +170746734502,225,0 +170746734550,229,0 +170746734598,227,0 +170746734646,227,0 +170746734694,227,0 +170746734742,228,0 +170746734791,228,0 +170746734839,227,0 +170746734888,227,0 +170746734936,227,0 +170746734984,227,0 +170746735034,227,0 +170746735083,226,0 +170746735133,231,0 +170746735181,228,0 +170746735230,226,0 +170746735280,229,0 +170746735330,229,0 +170746735378,230,0 +170746735427,228,0 +170746735475,231,0 +170746735523,229,0 +170746735571,231,0 +170746735619,231,0 +170746735667,229,0 +170746735714,228,0 +170746735764,231,0 +170746735812,228,0 +170746735860,231,0 +170746735907,229,0 +170746735955,228,0 +170746736003,229,0 +170746736051,228,0 +170746736099,228,0 +170746736149,228,0 +170746736196,229,0 +170746736244,229,0 +170746736292,231,0 +170746736342,230,0 +170746736390,229,0 +170746736438,230,0 +170746736486,229,0 +170746736534,228,0 +170746736583,227,0 +170746736633,228,0 +170746736682,227,0 +170746736732,227,0 +170746736780,223,0 +170746736828,225,0 +170746736877,224,0 +170746736927,226,0 +170746736975,226,0 +170746737022,228,0 +170746737070,228,0 +170746737120,229,0 +170746737168,229,0 +170746737216,229,0 +170746737264,231,0 +170746737312,228,0 +170746737360,228,0 +170746737409,229,0 +170746737459,228,0 +170746737508,237,0 +170746737558,228,0 +170746737607,217,0 +170746737655,222,0 +170746737705,223,0 +170746737754,223,0 +170746737804,223,0 +170746737852,225,0 +170746737900,230,0 +170746737948,227,0 +170746737997,227,0 +170746738045,227,0 +170746738093,229,0 +170746738143,229,0 +170746738190,228,0 +170746738238,227,0 +170746738286,227,0 +170746738336,227,0 +170746738384,224,0 +170746738432,218,0 +170746738481,220,0 +170746738529,220,0 +170746738577,223,0 +170746738625,224,0 +170746738673,225,0 +170746738721,225,0 +170746738769,228,0 +170746738817,227,0 +170746738865,229,0 +170746738913,228,0 +170746738961,229,0 +170746739009,228,0 +170746739058,228,0 +170746739106,228,0 +170746739156,226,0 +170746739204,219,0 +170746739252,220,0 +170746739300,221,0 +170746739348,222,0 +170746739396,223,0 +170746739443,224,0 +170746739491,225,0 +170746739541,225,0 +170746739589,227,0 +170746739636,229,0 +170746739684,228,0 +170746739732,231,0 +170746739782,228,0 +170746739830,229,0 +170746739877,228,0 +170746739925,228,0 +170746739973,226,0 +170746740021,219,0 +170746740069,219,0 +170746740117,220,0 +170746740165,222,0 +170746740213,223,0 +170746740262,225,0 +170746740310,225,0 +170746740360,226,0 +170746740409,227,0 +170746740459,228,0 +170746740508,231,0 +170746740556,230,0 +170746740606,230,0 +170746740654,232,0 +170746740702,228,0 +170746740749,227,0 +170746740799,218,0 +170746740847,218,0 +170746740895,220,0 +170746740944,222,0 +170746740992,222,0 +170746741040,223,0 +170746741088,224,0 +170746741137,225,0 +170746741187,226,0 +170746741235,227,0 +170746741282,227,0 +170746741332,228,0 +170746741380,227,0 +170746741429,228,0 +170746741477,228,0 +170746741525,227,0 +170746741573,226,0 +170746741622,216,0 +170746741670,219,0 +170746741719,221,0 +170746741767,220,0 +170746741815,222,0 +170746741863,223,0 +170746741911,232,0 +170746741959,225,0 +170746742007,229,0 +170746742055,228,0 +170746742105,228,0 +170746742153,227,0 +170746742201,228,0 +170746742250,229,0 +170746742298,229,0 +170746742346,227,0 +170746742396,220,0 +170746742444,219,0 +170746742492,221,0 +170746742540,222,0 +170746742587,224,0 +170746742635,225,0 +170746742683,224,0 +170746742731,226,0 +170746742779,227,0 +170746742827,228,0 +170746742875,227,0 +170746742924,228,0 +170746742972,229,0 +170746743020,228,0 +170746743068,228,0 +170746743117,227,0 +170746743165,226,0 +170746743213,220,0 +170746743262,221,0 +170746743310,224,0 +170746743358,223,0 +170746743406,224,0 +170746743454,225,0 +170746743502,227,0 +170746743551,226,0 +170746743599,227,0 +170746743649,227,0 +170746743696,229,0 +170746743744,229,0 +170746743792,227,0 +170746743840,228,0 +170746743888,228,0 +170746743936,227,0 +170746743984,226,0 +170746744032,221,0 +170746744079,222,0 +170746744127,223,0 +170746744175,223,0 +170746744225,224,0 +170746744274,226,0 +170746744324,227,0 +170746744372,227,0 +170746744421,227,0 +170746744469,227,0 +170746744517,228,0 +170746744567,229,0 +170746744616,228,0 +170746744666,227,0 +170746744714,227,0 +170746744763,226,0 +170746744811,224,0 +170746744861,222,0 +170746744909,222,0 +170746744957,226,0 +170746745005,226,0 +170746745054,225,0 +170746745104,228,0 +170746745153,226,0 +170746745201,227,0 +170746745249,229,0 +170746745297,228,0 +170746745347,229,0 +170746745396,227,0 +170746745444,227,0 +170746745492,227,0 +170746745540,226,0 +170746745589,218,0 +170746745637,220,0 +170746745685,222,0 +170746745733,223,0 +170746745781,223,0 +170746745831,225,0 +170746745878,225,0 +170746745926,225,0 +170746745974,224,0 +170746746022,227,0 +170746746072,228,0 +170746746120,228,0 +170746746169,227,0 +170746746217,228,0 +170746746265,227,0 +170746746314,227,0 +170746746362,227,0 +170746746412,214,0 +170746746461,220,0 +170746746509,221,0 +170746746557,224,0 +170746746605,223,0 +170746746654,225,0 +170746746704,225,0 +170746746753,226,0 +170746746801,226,0 +170746746850,228,0 +170746746898,227,0 +170746746946,227,0 +170746746994,229,0 +170746747042,227,0 +170746747090,228,0 +170746747138,227,0 +170746747186,223,0 +170746747233,226,0 +170746747281,227,0 +170746747329,226,0 +170746747377,227,0 +170746747425,228,0 +170746747473,227,0 +170746747522,227,0 +170746747570,228,0 +170746747620,225,0 +170746747668,227,0 +170746747715,229,0 +170746747763,228,0 +170746747813,228,0 +170746747861,228,0 +170746747909,228,0 +170746747956,228,0 +170746748004,229,0 +170746748052,230,0 +170746748100,228,0 +170746748148,228,0 +170746748197,229,0 +170746748247,227,0 +170746748295,229,0 +170746748343,227,0 +170746748391,228,0 +170746748439,228,0 +170746748488,228,0 +170746748536,228,0 +170746748584,227,0 +170746748632,229,0 +170746748680,228,0 +170746748729,226,0 +170746748777,227,0 +170746748825,225,0 +170746748873,227,0 +170746748923,227,0 +170746748970,230,0 +170746749018,228,0 +170746749066,229,0 +170746749114,229,0 +170746749163,229,0 +170746749211,227,0 +170746749259,227,0 +170746749309,229,0 +170746749357,229,0 +170746749404,228,0 +170746749452,227,0 +170746749500,227,0 +170746749548,226,0 +170746749596,219,0 +170746749644,225,0 +170746749692,223,0 +170746749740,225,0 +170746749788,226,0 +170746749836,226,0 +170746749885,226,0 +170746749933,227,0 +170746749981,228,0 +170746750029,224,0 +170746750077,228,0 +170746750125,228,0 +170746750173,228,0 +170746750222,230,0 +170746750270,228,0 +170746750320,227,0 +170746750368,229,0 +170746750416,221,0 +170746750465,220,0 +170746750513,223,0 +170746750561,223,0 +170746750609,226,0 +170746750657,226,0 +170746750705,228,0 +170746750753,227,0 +170746750801,230,0 +170746750850,228,0 +170746750898,228,0 +170746750948,229,0 +170746750996,228,0 +170746751044,228,0 +170746751092,227,0 +170746751140,227,0 +170746751188,226,0 +170746751237,217,0 +170746751287,219,0 +170746751335,220,0 +170746751383,222,0 +170746751432,226,0 +170746751482,224,0 +170746751530,224,0 +170746751578,226,0 +170746751626,227,0 +170746751674,228,0 +170746751723,228,0 +170746751771,227,0 +170746751821,228,0 +170746751869,228,0 +170746751917,227,0 +170746751965,227,0 +170746752014,221,0 +170746752064,219,0 +170746752112,221,0 +170746752160,223,0 +170746752208,223,0 +170746752256,223,0 +170746752305,234,0 +170746752353,226,0 +170746752403,229,0 +170746752451,227,0 +170746752498,229,0 +170746752546,229,0 +170746752596,229,0 +170746752645,228,0 +170746752695,227,0 +170746752744,227,0 +170746752794,218,0 +170746752843,220,0 +170746752891,222,0 +170746752939,223,0 +170746752987,223,0 +170746753037,224,0 +170746753085,225,0 +170746753134,224,0 +170746753182,227,0 +170746753230,225,0 +170746753278,227,0 +170746753327,224,0 +170746753377,229,0 +170746753426,228,0 +170746753476,228,0 +170746753525,227,0 +170746753575,226,0 +170746753623,222,0 +170746753671,222,0 +170746753719,224,0 +170746753768,224,0 +170746753816,227,0 +170746753864,227,0 +170746753912,227,0 +170746753961,227,0 +170746754011,228,0 +170746754059,231,0 +170746754107,228,0 +170746754156,228,0 +170746754204,226,0 +170746754252,228,0 +170746754300,227,0 +170746754348,226,0 +170746754398,221,0 +170746754446,222,0 +170746754495,225,0 +170746754545,224,0 +170746754593,226,0 +170746754642,226,0 +170746754692,228,0 +170746754740,227,0 +170746754788,229,0 +170746754836,231,0 +170746754885,230,0 +170746754935,227,0 +170746754984,228,0 +170746755032,228,0 +170746755080,228,0 +170746755128,227,0 +170746755178,227,0 +170746755226,222,0 +170746755274,224,0 +170746755322,224,0 +170746755370,225,0 +170746755418,226,0 +170746755467,226,0 +170746755515,226,0 +170746755563,228,0 +170746755612,228,0 +170746755662,227,0 +170746755710,228,0 +170746755758,228,0 +170746755806,228,0 +170746755853,228,0 +170746755901,230,0 +170746755951,227,0 +170746755999,220,0 +170746756048,220,0 +170746756096,221,0 +170746756146,223,0 +170746756195,224,0 +170746756245,224,0 +170746756293,226,0 +170746756342,227,0 +170746756390,227,0 +170746756438,227,0 +170746756486,227,0 +170746756536,228,0 +170746756584,230,0 +170746756632,229,0 +170746756681,226,0 +170746756729,228,0 +170746756777,227,0 +170746756827,219,0 +170746756875,220,0 +170746756924,218,0 +170746756974,217,0 +170746757022,223,0 +170746757071,222,0 +170746757119,223,0 +170746757169,225,0 +170746757217,227,0 +170746757264,230,0 +170746757312,227,0 +170746757360,229,0 +170746757408,229,0 +170746757458,228,0 +170746757507,228,0 +170746757555,227,0 +170746757603,216,0 +170746757653,216,0 +170746757701,218,0 +170746757750,221,0 +170746757798,220,0 +170746757848,222,0 +170746757896,223,0 +170746757944,223,0 +170746757992,224,0 +170746758040,225,0 +170746758089,226,0 +170746758138,228,0 +170746758188,230,0 +170746758237,228,0 +170746758285,228,0 +170746758333,227,0 +170746758381,225,0 +170746758431,214,0 +170746758479,216,0 +170746758528,215,0 +170746758578,215,0 +170746758627,219,0 +170746758677,221,0 +170746758726,222,0 +170746758774,223,0 +170746758822,223,0 +170746758872,224,0 +170746758920,226,0 +170746758967,226,0 +170746759017,228,0 +170746759066,227,0 +170746759116,227,0 +170746759164,226,0 +170746759212,219,0 +170746759260,219,0 +170746759309,221,0 +170746759357,221,0 +170746759407,222,0 +170746759456,224,0 +170746759506,225,0 +170746759555,225,0 +170746759603,227,0 +170746759651,227,0 +170746759699,227,0 +170746759747,228,0 +170746759795,227,0 +170746759843,227,0 +170746759892,228,0 +170746759940,228,0 +170746759988,226,0 +170746760036,221,0 +170746760084,222,0 +170746760132,223,0 +170746760180,225,0 +170746760228,226,0 +170746760276,226,0 +170746760324,226,0 +170746760372,228,0 +170746760420,228,0 +170746760469,227,0 +170746760517,227,0 +170746760567,230,0 +170746760615,230,0 +170746760663,228,0 +170746760711,226,0 +170746760759,227,0 +170746760808,222,0 +170746760856,225,0 +170746760904,225,0 +170746760953,228,0 +170746761003,228,0 +170746761051,229,0 +170746761098,228,0 +170746761146,227,0 +170746761194,227,0 +170746761242,229,0 +170746761290,231,0 +170746761339,229,0 +170746761387,229,0 +170746761435,228,0 +170746761483,227,0 +170746761531,227,0 +170746761579,226,0 +170746761626,224,0 +170746761676,225,0 +170746761724,224,0 +170746761772,228,0 +170746761820,227,0 +170746761867,226,0 +170746761915,227,0 +170746761965,227,0 +170746762014,229,0 +170746762062,230,0 +170746762112,231,0 +170746762160,228,0 +170746762208,229,0 +170746762255,228,0 +170746762303,229,0 +170746762351,228,0 +170746762399,224,0 +170746762447,226,0 +170746762495,224,0 +170746762543,224,0 +170746762591,227,0 +170746762639,227,0 +170746762687,227,0 +170746762735,229,0 +170746762783,228,0 +170746762831,229,0 +170746762880,229,0 +170746762928,230,0 +170746762978,230,0 +170746763026,228,0 +170746763074,227,0 +170746763122,229,0 +170746763171,227,0 +170746763221,225,0 +170746763270,226,0 +170746763318,227,0 +170746763368,228,0 +170746763417,228,0 +170746763465,229,0 +170746763515,227,0 +170746763564,229,0 +170746763612,229,0 +170746763660,229,0 +170746763708,229,0 +170746763756,228,0 +170746763804,225,0 +170746763852,228,0 +170746763902,226,0 +170746763951,228,0 +170746764001,226,0 +170746764048,228,0 +170746764098,227,0 +170746764146,227,0 +170746764194,227,0 +170746764241,230,0 +170746764289,226,0 +170746764337,228,0 +170746764385,229,0 +170746764435,229,0 +170746764483,228,0 +170746764531,227,0 +170746764579,228,0 +170746764627,227,0 +170746764674,229,0 +170746764722,227,0 +170746764772,226,0 +170746764820,226,0 +170746764868,227,0 +170746764916,225,0 +170746764964,227,0 +170746765012,226,0 +170746765061,228,0 +170746765109,228,0 +170746765157,228,0 +170746765207,227,0 +170746765255,229,0 +170746765303,228,0 +170746765350,228,0 +170746765398,229,0 +170746765446,227,0 +170746765494,228,0 +170746765542,229,0 +170746765590,228,0 +170746765640,219,0 +170746765688,221,0 +170746765737,221,0 +170746765787,225,0 +170746765835,224,0 +170746765884,225,0 +170746765932,227,0 +170746765980,229,0 +170746766028,228,0 +170746766076,228,0 +170746766124,230,0 +170746766172,228,0 +170746766221,228,0 +170746766271,228,0 +170746766320,227,0 +170746766370,228,0 +170746766418,227,0 +170746766466,217,0 +170746766515,216,0 +170746766563,217,0 +170746766613,219,0 +170746766662,221,0 +170746766712,222,0 +170746766761,223,0 +170746766809,227,0 +170746766857,227,0 +170746766907,227,0 +170746766955,229,0 +170746767003,229,0 +170746767051,227,0 +170746767099,229,0 +170746767148,225,0 +170746767196,228,0 +170746767246,227,0 +170746767295,217,0 +170746767343,216,0 +170746767391,218,0 +170746767439,219,0 +170746767487,221,0 +170746767535,223,0 +170746767583,225,0 +170746767631,224,0 +170746767678,226,0 +170746767726,226,0 +170746767774,227,0 +170746767822,229,0 +170746767870,229,0 +170746767918,229,0 +170746767966,230,0 +170746768015,229,0 +170746768065,228,0 +170746768113,217,0 +170746768160,215,0 +170746768208,216,0 +170746768256,218,0 +170746768304,220,0 +170746768354,222,0 +170746768401,222,0 +170746768449,223,0 +170746768499,226,0 +170746768548,226,0 +170746768596,227,0 +170746768644,228,0 +170746768692,232,0 +170746768740,227,0 +170746768788,228,0 +170746768836,228,0 +170746768884,227,0 +170746768932,225,0 +170746768981,216,0 +170746769031,218,0 +170746769080,218,0 +170746769128,220,0 +170746769176,221,0 +170746769224,222,0 +170746769274,223,0 +170746769323,223,0 +170746769373,226,0 +170746769421,226,0 +170746769469,227,0 +170746769518,227,0 +170746769568,230,0 +170746769616,227,0 +170746769664,228,0 +170746769712,228,0 +170746769760,217,0 +170746769809,216,0 +170746769857,218,0 +170746769905,219,0 +170746769955,221,0 +170746770004,221,0 +170746770054,221,0 +170746770103,222,0 +170746770151,223,0 +170746770199,225,0 +170746770247,226,0 +170746770295,226,0 +170746770345,228,0 +170746770394,227,0 +170746770444,227,0 +170746770492,226,0 +170746770540,228,0 +170746770588,218,0 +170746770636,215,0 +170746770685,217,0 +170746770735,215,0 +170746770784,221,0 +170746770832,218,0 +170746770880,221,0 +170746770928,224,0 +170746770976,222,0 +170746771025,222,0 +170746771075,226,0 +170746771124,229,0 +170746771172,226,0 +170746771220,231,0 +170746771268,228,0 +170746771318,230,0 +170746771366,227,0 +170746771414,225,0 +170746771462,217,0 +170746771510,219,0 +170746771558,219,0 +170746771606,221,0 +170746771653,222,0 +170746771703,223,0 +170746771753,226,0 +170746771801,226,0 +170746771850,226,0 +170746771898,234,0 +170746771946,227,0 +170746771996,228,0 +170746772045,227,0 +170746772093,228,0 +170746772143,228,0 +170746772192,226,0 +170746772240,222,0 +170746772288,223,0 +170746772338,221,0 +170746772385,225,0 +170746772435,227,0 +170746772485,227,0 +170746772534,227,0 +170746772582,228,0 +170746772630,228,0 +170746772678,229,0 +170746772727,228,0 +170746772777,229,0 +170746772826,229,0 +170746772874,228,0 +170746772924,227,0 +170746772973,228,0 +170746773023,227,0 +170746773073,227,0 +170746773122,226,0 +170746773172,228,0 +170746773220,230,0 +170746773268,227,0 +170746773317,231,0 +170746773365,228,0 +170746773413,229,0 +170746773462,225,0 +170746773512,229,0 +170746773560,228,0 +170746773608,229,0 +170746773657,224,0 +170746773705,227,0 +170746773755,228,0 +170746773803,227,0 +170746773851,226,0 +170746773899,223,0 +170746773948,222,0 +170746773998,224,0 +170746774046,225,0 +170746774095,226,0 +170746774143,228,0 +170746774191,229,0 +170746774239,228,0 +170746774287,229,0 +170746774335,229,0 +170746774385,229,0 +170746774433,229,0 +170746774481,230,0 +170746774529,229,0 +170746774577,228,0 +170746774625,228,0 +170746774674,227,0 +170746774722,227,0 +170746774771,228,0 +170746774819,228,0 +170746774869,227,0 +170746774919,227,0 +170746774968,227,0 +170746775016,227,0 +170746775064,227,0 +170746775112,226,0 +170746775161,226,0 +170746775211,226,0 +170746775259,228,0 +170746775309,227,0 +170746775356,229,0 +170746775406,227,0 +170746775454,231,0 +170746775502,229,0 +170746775550,229,0 +170746775598,229,0 +170746775647,228,0 +170746775695,227,0 +170746775743,227,0 +170746775791,228,0 +170746775839,227,0 +170746775887,227,0 +170746775934,219,0 +170746775982,220,0 +170746776030,222,0 +170746776078,221,0 +170746776128,223,0 +170746776176,224,0 +170746776224,224,0 +170746776273,225,0 +170746776323,228,0 +170746776371,231,0 +170746776420,228,0 +170746776470,229,0 +170746776519,228,0 +170746776567,229,0 +170746776615,228,0 +170746776663,227,0 +170746776711,229,0 +170746776759,224,0 +170746776807,218,0 +170746776855,219,0 +170746776905,221,0 +170746776953,221,0 +170746777001,222,0 +170746777048,225,0 +170746777098,224,0 +170746777147,226,0 +170746777197,227,0 +170746777245,228,0 +170746777293,227,0 +170746777341,228,0 +170746777389,228,0 +170746777438,232,0 +170746777486,228,0 +170746777534,227,0 +170746777582,226,0 +170746777632,219,0 +170746777681,220,0 +170746777729,221,0 +170746777779,225,0 +170746777828,224,0 +170746777878,224,0 +170746777926,226,0 +170746777974,226,0 +170746778023,227,0 +170746778071,227,0 +170746778121,229,0 +170746778169,230,0 +170746778218,228,0 +170746778268,229,0 +170746778316,227,0 +170746778365,227,0 +170746778413,219,0 +170746778461,221,0 +170746778511,223,0 +170746778560,223,0 +170746778610,225,0 +170746778659,226,0 +170746778707,227,0 +170746778757,229,0 +170746778806,229,0 +170746778856,228,0 +170746778905,226,0 +170746778953,228,0 +170746779001,231,0 +170746779049,229,0 +170746779099,229,0 +170746779148,228,0 +170746779198,226,0 +170746779246,221,0 +170746779294,221,0 +170746779343,223,0 +170746779391,224,0 +170746779441,224,0 +170746779489,228,0 +170746779537,236,0 +170746779585,229,0 +170746779633,228,0 +170746779681,228,0 +170746779730,230,0 +170746779780,228,0 +170746779828,228,0 +170746779876,227,0 +170746779924,228,0 +170746779973,227,0 +170746780023,227,0 +170746780072,221,0 +170746780120,221,0 +170746780170,223,0 +170746780219,224,0 +170746780267,226,0 +170746780317,224,0 +170746780366,226,0 +170746780416,227,0 +170746780465,227,0 +170746780515,228,0 +170746780564,228,0 +170746780614,228,0 +170746780662,228,0 +170746780710,228,0 +170746780759,227,0 +170746780807,228,0 +170746780855,226,0 +170746780903,219,0 +170746780951,221,0 +170746780999,223,0 +170746781047,224,0 +170746781095,224,0 +170746781145,227,0 +170746781194,229,0 +170746781244,227,0 +170746781293,230,0 +170746781341,231,0 +170746781391,229,0 +170746781440,225,0 +170746781488,228,0 +170746781536,229,0 +170746781585,226,0 +170746781633,227,0 +170746781681,226,0 +170746781729,220,0 +170746781777,220,0 +170746781825,223,0 +170746781873,223,0 +170746781923,224,0 +170746781972,225,0 +170746782020,225,0 +170746782070,226,0 +170746782119,226,0 +170746782169,229,0 +170746782218,227,0 +170746782266,228,0 +170746782314,230,0 +170746782362,228,0 +170746782410,228,0 +170746782458,228,0 +170746782506,225,0 +170746782554,218,0 +170746782602,220,0 +170746782652,220,0 +170746782700,222,0 +170746782748,222,0 +170746782795,225,0 +170746782843,225,0 +170746782891,225,0 +170746782939,226,0 +170746782989,226,0 +170746783039,228,0 +170746783086,228,0 +170746783136,228,0 +170746783184,229,0 +170746783232,227,0 +170746783280,227,0 +170746783328,221,0 +170746783377,218,0 +170746783425,219,0 +170746783473,220,0 +170746783521,222,0 +170746783569,222,0 +170746783617,223,0 +170746783666,222,0 +170746783714,224,0 +170746783764,225,0 +170746783812,225,0 +170746783861,227,0 +170746783909,228,0 +170746783957,228,0 +170746784005,227,0 +170746784054,228,0 +170746784102,227,0 +170746784150,225,0 +170746784198,219,0 +170746784246,218,0 +170746784294,220,0 +170746784342,224,0 +170746784390,223,0 +170746784437,225,0 +170746784485,225,0 +170746784533,225,0 +170746784583,226,0 +170746784631,227,0 +170746784680,227,0 +170746784728,227,0 +170746784777,230,0 +170746784827,227,0 +170746784875,227,0 +170746784923,227,0 +170746784971,226,0 +170746785019,223,0 +170746785068,223,0 +170746785116,226,0 +170746785164,224,0 +170746785214,226,0 +170746785263,228,0 +170746785311,227,0 +170746785361,228,0 +170746785408,228,0 +170746785456,227,0 +170746785504,228,0 +170746785554,227,0 +170746785602,227,0 +170746785650,228,0 +170746785698,227,0 +170746785745,227,0 +170746785793,227,0 +170746785843,226,0 +170746785893,229,0 +170746785940,227,0 +170746785988,229,0 +170746786038,230,0 +170746786087,231,0 +170746786135,231,0 +170746786183,229,0 +170746786231,229,0 +170746786279,228,0 +170746786327,230,0 +170746786377,229,0 +170746786425,227,0 +170746786473,228,0 +170746786522,228,0 +170746786570,229,0 +170746786618,227,0 +170746786668,227,0 +170746786717,229,0 +170746786767,228,0 +170746786815,228,0 +170746786864,228,0 +170746786914,228,0 +170746786963,230,0 +170746787011,229,0 +170746787061,230,0 +170746787110,227,0 +170746787158,229,0 +170746787208,228,0 +170746787256,226,0 +170746787304,225,0 +170746787352,227,0 +170746787400,227,0 +170746787448,221,0 +170746787497,223,0 +170746787545,223,0 +170746787595,225,0 +170746787643,228,0 +170746787691,227,0 +170746787739,226,0 +170746787787,226,0 +170746787835,227,0 +170746787884,229,0 +170746787932,225,0 +170746787982,229,0 +170746788030,229,0 +170746788079,228,0 +170746788129,227,0 +170746788177,227,0 +170746788224,226,0 +170746788272,219,0 +170746788320,220,0 +170746788368,223,0 +170746788416,224,0 +170746788464,223,0 +170746788512,224,0 +170746788560,225,0 +170746788608,226,0 +170746788656,226,0 +170746788705,227,0 +170746788753,228,0 +170746788803,229,0 +170746788851,228,0 +170746788900,229,0 +170746788948,228,0 +170746788996,227,0 +170746789044,227,0 +170746789092,218,0 +170746789141,220,0 +170746789189,221,0 +170746789237,222,0 +170746789287,222,0 +170746789335,224,0 +170746789383,224,0 +170746789431,226,0 +170746789478,226,0 +170746789528,226,0 +170746789577,228,0 +170746789625,228,0 +170746789675,228,0 +170746789724,223,0 +170746789774,229,0 +170746789822,228,0 +170746789870,230,0 +170746789918,217,0 +170746789967,216,0 +170746790017,218,0 +170746790065,219,0 +170746790112,222,0 +170746790160,222,0 +170746790210,223,0 +170746790259,227,0 +170746790309,227,0 +170746790358,228,0 +170746790406,228,0 +170746790456,227,0 +170746790505,228,0 +170746790553,227,0 +170746790603,229,0 +170746790651,228,0 +170746790701,228,0 +170746790749,217,0 +170746790796,216,0 +170746790846,216,0 +170746790894,217,0 +170746790942,218,0 +170746790990,221,0 +170746791039,222,0 +170746791087,224,0 +170746791135,224,0 +170746791183,225,0 +170746791233,225,0 +170746791281,228,0 +170746791329,228,0 +170746791377,229,0 +170746791425,230,0 +170746791474,227,0 +170746791524,227,0 +170746791572,218,0 +170746791620,218,0 +170746791669,220,0 +170746791717,221,0 +170746791766,222,0 +170746791814,222,0 +170746791864,223,0 +170746791914,224,0 +170746791963,225,0 +170746792013,224,0 +170746792061,226,0 +170746792109,224,0 +170746792156,228,0 +170746792204,227,0 +170746792252,227,0 +170746792300,227,0 +170746792348,227,0 +170746792396,219,0 +170746792444,220,0 +170746792491,221,0 +170746792539,222,0 +170746792589,224,0 +170746792637,225,0 +170746792685,228,0 +170746792733,225,0 +170746792780,225,0 +170746792828,227,0 +170746792876,231,0 +170746792924,228,0 +170746792974,228,0 +170746793022,228,0 +170746793069,231,0 +170746793119,227,0 +170746793167,223,0 +170746793215,217,0 +170746793263,221,0 +170746793311,222,0 +170746793358,224,0 +170746793406,226,0 +170746793454,226,0 +170746793502,233,0 +170746793552,225,0 +170746793600,227,0 +170746793648,227,0 +170746793697,228,0 +170746793745,228,0 +170746793793,229,0 +170746793843,228,0 +170746793891,228,0 +170746793940,227,0 +170746793988,226,0 +170746794038,221,0 +170746794086,221,0 +170746794135,221,0 +170746794185,223,0 +170746794234,225,0 +170746794282,225,0 +170746794332,226,0 +170746794380,225,0 +170746794429,229,0 +170746794477,228,0 +170746794525,228,0 +170746794573,229,0 +170746794621,228,0 +170746794671,228,0 +170746794718,229,0 +170746794768,227,0 +170746794817,228,0 +170746794865,221,0 +170746794913,221,0 +170746794961,223,0 +170746795011,226,0 +170746795060,227,0 +170746795110,225,0 +170746795158,227,0 +170746795206,228,0 +170746795254,228,0 +170746795303,228,0 +170746795351,230,0 +170746795401,229,0 +170746795449,228,0 +170746795498,227,0 +170746795546,227,0 +170746795594,226,0 +170746795642,226,0 +170746795692,223,0 +170746795740,224,0 +170746795788,224,0 +170746795836,226,0 +170746795883,226,0 +170746795931,225,0 +170746795979,228,0 +170746796029,227,0 +170746796077,231,0 +170746796125,227,0 +170746796173,236,0 +170746796221,229,0 +170746796269,228,0 +170746796317,230,0 +170746796366,228,0 +170746796416,226,0 +170746796463,226,0 +170746796511,222,0 +170746796559,221,0 +170746796607,222,0 +170746796657,222,0 +170746796705,224,0 +170746796754,225,0 +170746796802,227,0 +170746796852,228,0 +170746796900,228,0 +170746796948,228,0 +170746796997,228,0 +170746797045,228,0 +170746797093,226,0 +170746797143,227,0 +170746797192,227,0 +170746797240,227,0 +170746797288,225,0 +170746797338,216,0 +170746797386,219,0 +170746797433,221,0 +170746797481,223,0 +170746797529,226,0 +170746797577,225,0 +170746797625,224,0 +170746797673,226,0 +170746797723,228,0 +170746797772,228,0 +170746797822,229,0 +170746797870,227,0 +170746797918,228,0 +170746797966,227,0 +170746798015,226,0 +170746798063,227,0 +170746798111,220,0 +170746798161,221,0 +170746798210,222,0 +170746798260,223,0 +170746798308,224,0 +170746798357,225,0 +170746798405,226,0 +170746798455,227,0 +170746798505,227,0 +170746798552,227,0 +170746798602,227,0 +170746798651,228,0 +170746798701,227,0 +170746798749,227,0 +170746798799,227,0 +170746798848,227,0 +170746798896,226,0 +170746798944,226,0 +170746798994,225,0 +170746799042,226,0 +170746799090,226,0 +170746799137,228,0 +170746799185,226,0 +170746799233,228,0 +170746799283,228,0 +170746799331,228,0 +170746799379,228,0 +170746799428,225,0 +170746799476,228,0 +170746799524,228,0 +170746799572,227,0 +170746799622,228,0 +170746799670,227,0 +170746799718,227,0 +170746799766,226,0 +170746799814,226,0 +170746799862,227,0 +170746799910,227,0 +170746799958,227,0 +170746800005,228,0 +170746800053,227,0 +170746800103,230,0 +170746800151,229,0 +170746800199,228,0 +170746800247,233,0 +170746800296,229,0 +170746800344,229,0 +170746800392,229,0 +170746800442,228,0 +170746800491,228,0 +170746800541,225,0 +170746800590,221,0 +170746800638,222,0 +170746800688,223,0 +170746800737,223,0 +170746800785,229,0 +170746800833,225,0 +170746800881,228,0 +170746800929,226,0 +170746800978,228,0 +170746801026,229,0 +170746801074,228,0 +170746801122,227,0 +170746801171,228,0 +170746801219,229,0 +170746801267,227,0 +170746801317,228,0 +170746801366,226,0 +170746801414,218,0 +170746801462,219,0 +170746801510,220,0 +170746801558,222,0 +170746801608,223,0 +170746801657,225,0 +170746801705,225,0 +170746801755,225,0 +170746801804,227,0 +170746801852,228,0 +170746801900,229,0 +170746801948,228,0 +170746801998,229,0 +170746802047,230,0 +170746802095,229,0 +170746802145,228,0 +170746802193,226,0 +170746802242,217,0 +170746802292,219,0 +170746802340,221,0 +170746802388,222,0 +170746802436,222,0 +170746802485,224,0 +170746802533,228,0 +170746802581,228,0 +170746802629,228,0 +170746802677,229,0 +170746802725,229,0 +170746802773,228,0 +170746802821,228,0 +170746802869,228,0 +170746802919,228,0 +170746802968,228,0 +170746803018,225,0 +170746803066,225,0 +170746803114,220,0 +170746803162,222,0 +170746803209,223,0 +170746803257,224,0 +170746803305,225,0 +170746803355,223,0 +170746803404,226,0 +170746803454,227,0 +170746803502,229,0 +170746803550,228,0 +170746803599,229,0 +170746803649,229,0 +170746803697,228,0 +170746803745,228,0 +170746803794,228,0 +170746803844,221,0 +170746803892,221,0 +170746803940,221,0 +170746803988,223,0 +170746804036,224,0 +170746804083,224,0 +170746804131,226,0 +170746804179,226,0 +170746804229,228,0 +170746804278,229,0 +170746804326,228,0 +170746804374,228,0 +170746804422,229,0 +170746804470,229,0 +170746804517,229,0 +170746804565,227,0 +170746804613,226,0 +170746804661,217,0 +170746804709,221,0 +170746804757,221,0 +170746804805,223,0 +170746804854,223,0 +170746804902,224,0 +170746804950,225,0 +170746804998,227,0 +170746805046,228,0 +170746805094,227,0 +170746805142,228,0 +170746805192,229,0 +170746805240,229,0 +170746805289,226,0 +170746805337,228,0 +170746805385,228,0 +170746805435,226,0 +170746805484,222,0 +170746805532,222,0 +170746805582,223,0 +170746805629,224,0 +170746805679,228,0 +170746805729,226,0 +170746805778,226,0 +170746805826,226,0 +170746805876,228,0 +170746805925,230,0 +170746805973,230,0 +170746806021,229,0 +170746806071,228,0 +170746806120,229,0 +170746806168,228,0 +170746806218,226,0 +170746806266,227,0 +170746806314,223,0 +170746806363,223,0 +170746806411,223,0 +170746806459,224,0 +170746806507,228,0 +170746806557,227,0 +170746806606,227,0 +170746806654,228,0 +170746806704,228,0 +170746806754,229,0 +170746806802,229,0 +170746806849,229,0 +170746806897,229,0 +170746806945,227,0 +170746806995,228,0 +170746807043,227,0 +170746807091,218,0 +170746807140,219,0 +170746807190,220,0 +170746807239,223,0 +170746807287,225,0 +170746807337,224,0 +170746807385,225,0 +170746807434,226,0 +170746807484,226,0 +170746807532,229,0 +170746807580,227,0 +170746807630,229,0 +170746807679,228,0 +170746807729,227,0 +170746807778,227,0 +170746807828,228,0 +170746807876,227,0 +170746807924,217,0 +170746807972,216,0 +170746808019,218,0 +170746808067,219,0 +170746808117,222,0 +170746808166,222,0 +170746808214,224,0 +170746808262,225,0 +170746808310,227,0 +170746808358,226,0 +170746808408,229,0 +170746808456,227,0 +170746808504,229,0 +170746808552,228,0 +170746808600,227,0 +170746808648,228,0 +170746808695,227,0 +170746808743,217,0 +170746808793,215,0 +170746808841,215,0 +170746808891,217,0 +170746808938,219,0 +170746808986,219,0 +170746809034,220,0 +170746809084,221,0 +170746809132,223,0 +170746809180,228,0 +170746809227,226,0 +170746809275,226,0 +170746809323,228,0 +170746809371,226,0 +170746809419,229,0 +170746809467,226,0 +170746809516,226,0 +170746809566,214,0 +170746809615,217,0 +170746809663,218,0 +170746809711,219,0 +170746809759,219,0 +170746809809,220,0 +170746809857,221,0 +170746809906,221,0 +170746809954,224,0 +170746810004,225,0 +170746810052,226,0 +170746810101,227,0 +170746810149,227,0 +170746810197,227,0 +170746810245,226,0 +170746810293,227,0 +170746810342,226,0 +170746810390,215,0 +170746810440,216,0 +170746810488,216,0 +170746810537,219,0 +170746810585,220,0 +170746810633,221,0 +170746810683,222,0 +170746810730,223,0 +170746810778,225,0 +170746810826,225,0 +170746810876,226,0 +170746810924,228,0 +170746810973,227,0 +170746811022,228,0 +170746811070,228,0 +170746811118,227,0 +170746811166,227,0 +170746811216,215,0 +170746811263,216,0 +170746811313,218,0 +170746811361,219,0 +170746811409,221,0 +170746811458,222,0 +170746811508,224,0 +170746811557,224,0 +170746811605,225,0 +170746811654,226,0 +170746811704,227,0 +170746811752,226,0 +170746811800,227,0 +170746811848,227,0 +170746811896,226,0 +170746811944,226,0 +170746811993,222,0 +170746812041,223,0 +170746812089,224,0 +170746812137,224,0 +170746812187,226,0 +170746812235,226,0 +170746812283,227,0 +170746812332,227,0 +170746812380,228,0 +170746812428,227,0 +170746812476,229,0 +170746812526,228,0 +170746812575,227,0 +170746812623,228,0 +170746812673,229,0 +170746812722,227,0 +170746812770,222,0 +170746812820,227,0 +170746812868,227,0 +170746812917,227,0 +170746812967,229,0 +170746813015,228,0 +170746813063,228,0 +170746813112,229,0 +170746813160,228,0 +170746813210,228,0 +170746813258,228,0 +170746813305,228,0 +170746813355,229,0 +170746813403,227,0 +170746813453,227,0 +170746813500,225,0 +170746813550,228,0 +170746813600,226,0 +170746813647,226,0 +170746813697,227,0 +170746813745,227,0 +170746813794,227,0 +170746813844,227,0 +170746813893,229,0 +170746813943,227,0 +170746813993,228,0 +170746814042,228,0 +170746814090,228,0 +170746814138,228,0 +170746814188,228,0 +170746814237,228,0 +170746814285,227,0 +170746814333,226,0 +170746814381,227,0 +170746814431,226,0 +170746814480,225,0 +170746814530,227,0 +170746814579,226,0 +170746814627,227,0 +170746814676,229,0 +170746814724,230,0 +170746814774,228,0 +170746814824,228,0 +170746814873,229,0 +170746814921,229,0 +170746814969,232,0 +170746815019,229,0 +170746815067,228,0 +170746815115,228,0 +170746815163,226,0 +170746815212,227,0 +170746815260,225,0 +170746815308,226,0 +170746815356,226,0 +170746815404,227,0 +170746815452,230,0 +170746815500,228,0 +170746815549,229,0 +170746815597,229,0 +170746815645,229,0 +170746815695,229,0 +170746815742,231,0 +170746815790,228,0 +170746815838,229,0 +170746815888,228,0 +170746815935,227,0 +170746815983,226,0 +170746816033,224,0 +170746816081,224,0 +170746816131,225,0 +170746816180,226,0 +170746816230,227,0 +170746816279,226,0 +170746816329,228,0 +170746816377,228,0 +170746816425,229,0 +170746816474,229,0 +170746816522,231,0 +170746816570,229,0 +170746816619,229,0 +170746816667,228,0 +170746816717,228,0 +170746816764,228,0 +170746816812,227,0 +170746816860,226,0 +170746816910,221,0 +170746816958,222,0 +170746817007,220,0 +170746817055,226,0 +170746817103,226,0 +170746817151,227,0 +170746817200,230,0 +170746817248,229,0 +170746817296,229,0 +170746817345,230,0 +170746817393,229,0 +170746817441,229,0 +170746817491,227,0 +170746817539,228,0 +170746817586,228,0 +170746817636,226,0 +170746817686,223,0 +170746817734,219,0 +170746817781,222,0 +170746817829,222,0 +170746817879,223,0 +170746817927,223,0 +170746817975,226,0 +170746818023,228,0 +170746818072,228,0 +170746818120,229,0 +170746818168,230,0 +170746818216,228,0 +170746818266,228,0 +170746818314,228,0 +170746818363,227,0 +170746818413,227,0 +170746818461,224,0 +170746818509,219,0 +170746818557,220,0 +170746818604,222,0 +170746818654,224,0 +170746818702,223,0 +170746818751,226,0 +170746818801,227,0 +170746818849,227,0 +170746818898,228,0 +170746818948,227,0 +170746818996,227,0 +170746819045,229,0 +170746819093,228,0 +170746819141,229,0 +170746819189,228,0 +170746819237,228,0 +170746819285,226,0 +170746819335,218,0 +170746819383,219,0 +170746819431,221,0 +170746819480,222,0 +170746819530,223,0 +170746819579,224,0 +170746819629,226,0 +170746819677,226,0 +170746819725,228,0 +170746819774,230,0 +170746819822,229,0 +170746819872,228,0 +170746819921,222,0 +170746819969,229,0 +170746820017,228,0 +170746820065,227,0 +170746820113,219,0 +170746820161,220,0 +170746820210,221,0 +170746820260,223,0 +170746820308,225,0 +170746820357,224,0 +170746820405,225,0 +170746820453,227,0 +170746820501,227,0 +170746820549,229,0 +170746820597,229,0 +170746820645,230,0 +170746820694,231,0 +170746820742,229,0 +170746820790,228,0 +170746820838,228,0 +170746820887,224,0 +170746820935,218,0 +170746820983,217,0 +170746821033,221,0 +170746821082,221,0 +170746821130,223,0 +170746821180,225,0 +170746821229,224,0 +170746821279,228,0 +170746821328,227,0 +170746821378,228,0 +170746821426,228,0 +170746821476,229,0 +170746821523,228,0 +170746821571,230,0 +170746821621,227,0 +170746821669,227,0 +170746821717,217,0 +170746821765,218,0 +170746821813,220,0 +170746821862,221,0 +170746821910,223,0 +170746821958,222,0 +170746822006,223,0 +170746822054,225,0 +170746822103,227,0 +170746822151,227,0 +170746822199,228,0 +170746822247,228,0 +170746822295,228,0 +170746822343,228,0 +170746822390,229,0 +170746822438,228,0 +170746822486,227,0 +170746822536,216,0 +170746822584,217,0 +170746822633,217,0 +170746822682,215,0 +170746822732,219,0 +170746822780,222,0 +170746822829,224,0 +170746822879,223,0 +170746822928,225,0 +170746822978,226,0 +170746823026,227,0 +170746823074,228,0 +170746823122,227,0 +170746823170,231,0 +170746823218,228,0 +170746823266,228,0 +170746823314,215,0 +170746823363,217,0 +170746823413,216,0 +170746823462,214,0 +170746823512,220,0 +170746823560,220,0 +170746823608,224,0 +170746823657,223,0 +170746823707,225,0 +170746823755,224,0 +170746823803,226,0 +170746823852,226,0 +170746823900,229,0 +170746823948,227,0 +170746823996,228,0 +170746824046,227,0 +170746824095,225,0 +170746824145,221,0 +170746824194,222,0 +170746824244,225,0 +170746824293,225,0 +170746824341,226,0 +170746824391,226,0 +170746824439,227,0 +170746824487,227,0 +170746824535,227,0 +170746824584,228,0 +170746824633,229,0 +170746824683,228,0 +170746824732,227,0 +170746824780,226,0 +170746824828,229,0 +170746824878,224,0 +170746824926,228,0 +170746824975,226,0 +170746825025,228,0 +170746825073,230,0 +170746825121,229,0 +170746825170,229,0 +170746825218,230,0 +170746825268,229,0 +170746825317,230,0 +170746825365,230,0 +170746825413,229,0 +170746825463,230,0 +170746825511,228,0 +170746825560,228,0 +170746825608,228,0 +170746825658,227,0 +170746825706,229,0 +170746825755,230,0 +170746825805,229,0 +170746825854,230,0 +170746825904,232,0 +170746825953,229,0 +170746826003,234,0 +170746826053,229,0 +170746826100,229,0 +170746826148,229,0 +170746826198,230,0 +170746826248,228,0 +170746826297,228,0 +170746826347,228,0 +170746826395,228,0 +170746826443,227,0 +170746826492,226,0 +170746826542,226,0 +170746826591,226,0 +170746826639,228,0 +170746826689,228,0 +170746826737,227,0 +170746826786,229,0 +170746826836,230,0 +170746826885,231,0 +170746826935,228,0 +170746826983,230,0 +170746827031,228,0 +170746827079,228,0 +170746827128,229,0 +170746827176,228,0 +170746827226,227,0 +170746827274,228,0 +170746827323,222,0 +170746827373,222,0 +170746827421,222,0 +170746827469,224,0 +170746827518,224,0 +170746827568,225,0 +170746827616,227,0 +170746827664,228,0 +170746827712,229,0 +170746827761,230,0 +170746827811,229,0 +170746827859,229,0 +170746827908,229,0 +170746827956,228,0 +170746828004,225,0 +170746828054,229,0 +170746828103,226,0 +170746828153,220,0 +170746828202,221,0 +170746828250,222,0 +170746828298,223,0 +170746828346,224,0 +170746828394,226,0 +170746828442,226,0 +170746828491,227,0 +170746828539,228,0 +170746828587,228,0 +170746828635,231,0 +170746828685,229,0 +170746828734,229,0 +170746828782,228,0 +170746828830,227,0 +170746828880,227,0 +170746828928,219,0 +170746828976,220,0 +170746829025,220,0 +170746829075,223,0 +170746829123,224,0 +170746829170,224,0 +170746829218,225,0 +170746829268,227,0 +170746829316,227,0 +170746829365,227,0 +170746829415,228,0 +170746829465,230,0 +170746829513,226,0 +170746829562,228,0 +170746829610,229,0 +170746829658,223,0 +170746829706,227,0 +170746829754,220,0 +170746829802,221,0 +170746829851,222,0 +170746829901,224,0 +170746829951,225,0 +170746830000,227,0 +170746830050,226,0 +170746830098,228,0 +170746830147,229,0 +170746830195,228,0 +170746830245,228,0 +170746830294,228,0 +170746830344,230,0 +170746830392,229,0 +170746830440,228,0 +170746830489,227,0 +170746830537,221,0 +170746830587,222,0 +170746830635,221,0 +170746830684,223,0 +170746830732,226,0 +170746830782,226,0 +170746830830,227,0 +170746830879,227,0 +170746830929,228,0 +170746830978,228,0 +170746831028,230,0 +170746831076,227,0 +170746831125,227,0 +170746831173,228,0 +170746831221,227,0 +170746831269,228,0 +170746831317,226,0 +170746831367,221,0 +170746831415,221,0 +170746831464,222,0 +170746831514,230,0 +170746831562,225,0 +170746831611,225,0 +170746831661,230,0 +170746831710,228,0 +170746831760,230,0 +170746831808,230,0 +170746831856,228,0 +170746831904,230,0 +170746831953,231,0 +170746832003,228,0 +170746832051,227,0 +170746832099,228,0 +170746832147,220,0 +170746832196,220,0 +170746832244,221,0 +170746832294,224,0 +170746832343,224,0 +170746832391,225,0 +170746832439,226,0 +170746832489,227,0 +170746832537,229,0 +170746832585,231,0 +170746832633,228,0 +170746832681,229,0 +170746832730,229,0 +170746832780,228,0 +170746832829,229,0 +170746832879,227,0 +170746832927,219,0 +170746832975,220,0 +170746833024,221,0 +170746833072,222,0 +170746833120,223,0 +170746833168,224,0 +170746833215,224,0 +170746833263,225,0 +170746833311,226,0 +170746833361,230,0 +170746833410,228,0 +170746833458,228,0 +170746833506,230,0 +170746833554,229,0 +170746833604,229,0 +170746833652,228,0 +170746833701,228,0 +170746833751,218,0 +170746833799,218,0 +170746833847,220,0 +170746833895,221,0 +170746833942,223,0 +170746833990,223,0 +170746834038,225,0 +170746834086,225,0 +170746834134,227,0 +170746834182,228,0 +170746834230,228,0 +170746834278,230,0 +170746834325,231,0 +170746834373,229,0 +170746834423,228,0 +170746834471,228,0 +170746834520,228,0 +170746834568,218,0 +170746834616,219,0 +170746834665,220,0 +170746834713,221,0 +170746834761,225,0 +170746834810,225,0 +170746834858,223,0 +170746834906,225,0 +170746834954,227,0 +170746835002,228,0 +170746835050,227,0 +170746835098,230,0 +170746835146,229,0 +170746835195,228,0 +170746835243,229,0 +170746835291,225,0 +170746835341,218,0 +170746835390,218,0 +170746835438,220,0 +170746835486,221,0 +170746835534,224,0 +170746835582,224,0 +170746835629,222,0 +170746835679,224,0 +170746835728,225,0 +170746835776,227,0 +170746835824,229,0 +170746835872,227,0 +170746835920,227,0 +170746835970,228,0 +170746836017,229,0 +170746836065,227,0 +170746836113,226,0 +170746836161,219,0 +170746836211,222,0 +170746836258,222,0 +170746836308,224,0 +170746836356,225,0 +170746836404,226,0 +170746836452,226,0 +170746836500,226,0 +170746836547,227,0 +170746836595,228,0 +170746836643,229,0 +170746836691,230,0 +170746836739,228,0 +170746836789,229,0 +170746836838,227,0 +170746836888,227,0 +170746836937,226,0 +170746836987,226,0 +170746837036,227,0 +170746837086,227,0 +170746837134,228,0 +170746837184,229,0 +170746837233,229,0 +170746837281,230,0 +170746837331,228,0 +170746837380,229,0 +170746837430,227,0 +170746837479,233,0 +170746837527,228,0 +170746837575,228,0 +170746837625,229,0 +170746837673,230,0 +170746837721,229,0 +170746837769,229,0 +170746837818,228,0 +170746837866,227,0 +170746837914,229,0 +170746837964,230,0 +170746838013,229,0 +170746838063,229,0 +170746838111,229,0 +170746838159,231,0 +170746838207,229,0 +170746838255,229,0 +170746838302,228,0 +170746838350,230,0 +170746838398,229,0 +170746838448,228,0 +170746838495,228,0 +170746838543,225,0 +170746838591,224,0 +170746838639,224,0 +170746838687,225,0 +170746838735,227,0 +170746838785,226,0 +170746838832,228,0 +170746838882,228,0 +170746838930,231,0 +170746838978,233,0 +170746839026,229,0 +170746839075,231,0 +170746839124,230,0 +170746839172,229,0 +170746839220,228,0 +170746839268,227,0 +170746839316,227,0 +170746839364,222,0 +170746839412,223,0 +170746839460,223,0 +170746839509,224,0 +170746839557,224,0 +170746839605,227,0 +170746839653,229,0 +170746839702,231,0 +170746839752,228,0 +170746839800,228,0 +170746839847,229,0 +170746839897,230,0 +170746839945,228,0 +170746839993,229,0 +170746840041,228,0 +170746840089,228,0 +170746840138,227,0 +170746840186,220,0 +170746840234,222,0 +170746840283,223,0 +170746840331,218,0 +170746840379,225,0 +170746840427,227,0 +170746840475,226,0 +170746840523,227,0 +170746840570,228,0 +170746840618,229,0 +170746840666,228,0 +170746840716,228,0 +170746840764,228,0 +170746840811,228,0 +170746840859,226,0 +170746840907,227,0 +170746840955,219,0 +170746841004,220,0 +170746841052,222,0 +170746841100,222,0 +170746841150,224,0 +170746841198,229,0 +170746841245,226,0 +170746841295,228,0 +170746841344,228,0 +170746841392,229,0 +170746841440,230,0 +170746841490,229,0 +170746841537,230,0 +170746841585,228,0 +170746841633,228,0 +170746841681,228,0 +170746841731,228,0 +170746841780,214,0 +170746841828,219,0 +170746841877,221,0 +170746841925,222,0 +170746841975,224,0 +170746842023,226,0 +170746842071,225,0 +170746842119,226,0 +170746842168,228,0 +170746842218,228,0 +170746842265,229,0 +170746842313,230,0 +170746842363,229,0 +170746842412,228,0 +170746842460,229,0 +170746842508,227,0 +170746842556,221,0 +170746842604,221,0 +170746842652,221,0 +170746842700,225,0 +170746842747,223,0 +170746842797,225,0 +170746842845,225,0 +170746842893,227,0 +170746842941,228,0 +170746842990,227,0 +170746843038,227,0 +170746843086,228,0 +170746843134,230,0 +170746843183,230,0 +170746843233,231,0 +170746843282,228,0 +170746843332,229,0 +170746843381,219,0 +170746843429,222,0 +170746843477,223,0 +170746843525,223,0 +170746843573,224,0 +170746843621,223,0 +170746843669,227,0 +170746843717,229,0 +170746843765,228,0 +170746843813,228,0 +170746843861,228,0 +170746843910,228,0 +170746843958,230,0 +170746844006,229,0 +170746844055,228,0 +170746844103,228,0 +170746844151,225,0 +170746844199,219,0 +170746844247,221,0 +170746844295,221,0 +170746844342,223,0 +170746844390,223,0 +170746844440,227,0 +170746844489,226,0 +170746844539,227,0 +170746844587,224,0 +170746844635,229,0 +170746844682,229,0 +170746844730,229,0 +170746844778,228,0 +170746844826,229,0 +170746844874,229,0 +170746844922,228,0 +170746844970,221,0 +170746845018,221,0 +170746845066,223,0 +170746845114,223,0 +170746845161,224,0 +170746845209,226,0 +170746845257,227,0 +170746845305,226,0 +170746845353,223,0 +170746845401,227,0 +170746845450,228,0 +170746845498,229,0 +170746845548,229,0 +170746845597,228,0 +170746845645,228,0 +170746845695,228,0 +170746845744,227,0 +170746845794,219,0 +170746845842,221,0 +170746845891,222,0 +170746845939,223,0 +170746845989,224,0 +170746846037,224,0 +170746846086,224,0 +170746846136,227,0 +170746846185,228,0 +170746846233,226,0 +170746846283,228,0 +170746846331,229,0 +170746846380,228,0 +170746846428,228,0 +170746846476,227,0 +170746846526,228,0 +170746846576,219,0 +170746846623,221,0 +170746846673,222,0 +170746846723,224,0 +170746846772,225,0 +170746846820,226,0 +170746846869,228,0 +170746846919,218,0 +170746846967,226,0 +170746847015,229,0 +170746847064,228,0 +170746847112,229,0 +170746847162,229,0 +170746847210,229,0 +170746847259,229,0 +170746847307,228,0 +170746847355,226,0 +170746847405,221,0 +170746847452,221,0 +170746847500,224,0 +170746847548,224,0 +170746847598,227,0 +170746847646,227,0 +170746847695,228,0 +170746847743,228,0 +170746847791,220,0 +170746847839,228,0 +170746847887,228,0 +170746847934,227,0 +170746847982,229,0 +170746848032,226,0 +170746848081,230,0 +170746848131,229,0 +170746848179,223,0 +170746848227,225,0 +170746848274,224,0 +170746848322,226,0 +170746848372,226,0 +170746848421,231,0 +170746848469,229,0 +170746848517,228,0 +170746848565,228,0 +170746848614,227,0 +170746848664,228,0 +170746848712,228,0 +170746848760,227,0 +170746848808,228,0 +170746848857,228,0 +170746848905,228,0 +170746848953,227,0 +170746849001,226,0 +170746849049,227,0 +170746849096,229,0 +170746849146,228,0 +170746849194,228,0 +170746849243,228,0 +170746849291,228,0 +170746849339,227,0 +170746849387,229,0 +170746849435,229,0 +170746849484,227,0 +170746849534,228,0 +170746849582,228,0 +170746849629,226,0 +170746849677,222,0 +170746849725,229,0 +170746849775,230,0 +170746849823,230,0 +170746849871,230,0 +170746849919,227,0 +170746849966,228,0 +170746850015,232,0 +170746850064,229,0 +170746850112,229,0 +170746850160,229,0 +170746850209,228,0 +170746850259,228,0 +170746850308,228,0 +170746850358,229,0 +170746850406,228,0 +170746850454,228,0 +170746850502,231,0 +170746850551,229,0 +170746850599,226,0 +170746850649,230,0 +170746850696,227,0 +170746850744,228,0 +170746850792,227,0 +170746850840,231,0 +170746850890,229,0 +170746850937,228,0 +170746850985,230,0 +170746851035,228,0 +170746851083,228,0 +170746851132,227,0 +170746851180,228,0 +170746851228,228,0 +170746851276,228,0 +170746851325,227,0 +170746851373,219,0 +170746851421,219,0 +170746851469,220,0 +170746851517,223,0 +170746851565,223,0 +170746851612,224,0 +170746851660,226,0 +170746851710,228,0 +170746851760,229,0 +170746851809,229,0 +170746851857,229,0 +170746851907,231,0 +170746851955,229,0 +170746852004,229,0 +170746852052,232,0 +170746852100,228,0 +170746852148,227,0 +170746852196,217,0 +170746852246,218,0 +170746852293,218,0 +170746852341,219,0 +170746852389,221,0 +170746852437,221,0 +170746852485,224,0 +170746852533,225,0 +170746852581,225,0 +170746852629,227,0 +170746852677,228,0 +170746852726,230,0 +170746852774,228,0 +170746852822,229,0 +170746852870,230,0 +170746852920,229,0 +170746852969,227,0 +170746853019,217,0 +170746853069,219,0 +170746853116,220,0 +170746853164,223,0 +170746853212,225,0 +170746853262,225,0 +170746853310,226,0 +170746853359,228,0 +170746853407,235,0 +170746853455,228,0 +170746853503,245,0 +170746853551,229,0 +170746853599,228,0 +170746853647,230,0 +170746853695,228,0 +170746853743,226,0 +170746853792,219,0 +170746853840,218,0 +170746853888,219,0 +170746853936,221,0 +170746853984,222,0 +170746854032,223,0 +170746854080,223,0 +170746854128,225,0 +170746854178,226,0 +170746854226,227,0 +170746854274,226,0 +170746854323,228,0 +170746854371,228,0 +170746854420,228,0 +170746854468,228,0 +170746854518,229,0 +170746854567,223,0 +170746854615,222,0 +170746854663,222,0 +170746854711,223,0 +170746854761,224,0 +170746854809,225,0 +170746854857,227,0 +170746854905,227,0 +170746854953,227,0 +170746855001,228,0 +170746855049,228,0 +170746855098,229,0 +170746855146,230,0 +170746855194,230,0 +170746855244,229,0 +170746855291,228,0 +170746855339,227,0 +170746855389,220,0 +170746855437,221,0 +170746855486,224,0 +170746855534,224,0 +170746855584,226,0 +170746855631,225,0 +170746855679,227,0 +170746855727,228,0 +170746855775,228,0 +170746855823,228,0 +170746855871,229,0 +170746855920,229,0 +170746855968,228,0 +170746856016,229,0 +170746856066,230,0 +170746856114,228,0 +170746856161,227,0 +170746856209,223,0 +170746856257,223,0 +170746856307,224,0 +170746856354,226,0 +170746856402,226,0 +170746856450,225,0 +170746856498,226,0 +170746856546,230,0 +170746856594,231,0 +170746856642,228,0 +170746856690,227,0 +170746856739,229,0 +170746856787,228,0 +170746856835,227,0 +170746856884,228,0 +170746856934,229,0 +170746856982,221,0 +170746857030,225,0 +170746857079,228,0 +170746857127,226,0 +170746857175,227,0 +170746857223,228,0 +170746857273,228,0 +170746857321,228,0 +170746857370,229,0 +170746857420,229,0 +170746857468,229,0 +170746857517,228,0 +170746857565,229,0 +170746857613,226,0 +170746857661,228,0 +170746857711,227,0 +170746857760,227,0 +170746857810,222,0 +170746857859,223,0 +170746857907,225,0 +170746857957,225,0 +170746858006,226,0 +170746858054,227,0 +170746858102,227,0 +170746858152,227,0 +170746858200,228,0 +170746858248,228,0 +170746858296,229,0 +170746858344,229,0 +170746858392,227,0 +170746858440,230,0 +170746858488,227,0 +170746858537,228,0 +170746858587,226,0 +170746858635,217,0 +170746858684,218,0 +170746858732,219,0 +170746858782,222,0 +170746858831,222,0 +170746858881,224,0 +170746858930,224,0 +170746858978,226,0 +170746859028,226,0 +170746859077,227,0 +170746859125,228,0 +170746859173,227,0 +170746859222,228,0 +170746859270,228,0 +170746859318,228,0 +170746859368,227,0 +170746859416,216,0 +170746859464,215,0 +170746859512,216,0 +170746859560,216,0 +170746859608,218,0 +170746859656,220,0 +170746859704,220,0 +170746859753,218,0 +170746859801,220,0 +170746859851,224,0 +170746859899,224,0 +170746859947,225,0 +170746859996,225,0 +170746860044,225,0 +170746860092,229,0 +170746860140,227,0 +170746860189,216,0 +170746860237,216,0 +170746860285,217,0 +170746860333,217,0 +170746860381,218,0 +170746860431,220,0 +170746860479,220,0 +170746860528,222,0 +170746860578,222,0 +170746860626,223,0 +170746860674,224,0 +170746860722,225,0 +170746860770,226,0 +170746860819,227,0 +170746860869,227,0 +170746860918,226,0 +170746860968,226,0 +170746861016,220,0 +170746861064,222,0 +170746861113,223,0 +170746861163,224,0 +170746861211,224,0 +170746861260,225,0 +170746861310,226,0 +170746861358,227,0 +170746861406,227,0 +170746861454,228,0 +170746861503,228,0 +170746861551,227,0 +170746861599,228,0 +170746861648,227,0 +170746861696,227,0 +170746861744,227,0 +170746861792,224,0 +170746861840,225,0 +170746861888,226,0 +170746861936,232,0 +170746861985,228,0 +170746862033,228,0 +170746862081,227,0 +170746862129,228,0 +170746862177,230,0 +170746862225,228,0 +170746862274,228,0 +170746862322,227,0 +170746862370,228,0 +170746862420,228,0 +170746862468,227,0 +170746862516,228,0 +170746862564,230,0 +170746862612,231,0 +170746862661,229,0 +170746862709,228,0 +170746862757,229,0 +170746862806,230,0 +170746862856,232,0 +170746862904,228,0 +170746862953,228,0 +170746863003,229,0 +170746863051,228,0 +170746863099,230,0 +170746863149,228,0 +170746863198,230,0 +170746863248,228,0 +170746863296,229,0 +170746863345,228,0 +170746863395,224,0 +170746863443,227,0 +170746863492,226,0 +170746863540,227,0 +170746863588,229,0 +170746863638,231,0 +170746863687,230,0 +170746863735,231,0 +170746863785,229,0 +170746863833,229,0 +170746863882,228,0 +170746863932,229,0 +170746863980,228,0 +170746864029,227,0 +170746864077,227,0 +170746864127,228,0 +170746864175,227,0 +170746864223,226,0 +170746864271,224,0 +170746864319,226,0 +170746864368,227,0 +170746864416,225,0 +170746864464,227,0 +170746864512,230,0 +170746864560,233,0 +170746864608,228,0 +170746864658,229,0 +170746864706,229,0 +170746864755,229,0 +170746864805,229,0 +170746864854,228,0 +170746864904,227,0 +170746864952,227,0 +170746865000,226,0 +170746865048,224,0 +170746865096,221,0 +170746865144,228,0 +170746865191,227,0 +170746865239,228,0 +170746865289,228,0 +170746865337,228,0 +170746865385,229,0 +170746865433,228,0 +170746865482,229,0 +170746865530,228,0 +170746865580,226,0 +170746865628,228,0 +170746865677,226,0 +170746865727,229,0 +170746865775,227,0 +170746865823,224,0 +170746865872,225,0 +170746865922,227,0 +170746865970,227,0 +170746866018,227,0 +170746866066,228,0 +170746866115,229,0 +170746866163,228,0 +170746866213,230,0 +170746866262,228,0 +170746866312,228,0 +170746866360,227,0 +170746866408,226,0 +170746866456,228,0 +170746866505,227,0 +170746866555,221,0 +170746866603,220,0 +170746866652,217,0 +170746866702,226,0 +170746866752,228,0 +170746866799,228,0 +170746866847,231,0 +170746866895,228,0 +170746866945,228,0 +170746866993,232,0 +170746867041,229,0 +170746867090,228,0 +170746867138,229,0 +170746867188,228,0 +170746867236,228,0 +170746867285,225,0 +170746867335,227,0 +170746867384,229,0 +170746867434,223,0 +170746867484,223,0 +170746867533,223,0 +170746867581,225,0 +170746867631,225,0 +170746867679,228,0 +170746867727,227,0 +170746867776,226,0 +170746867826,229,0 +170746867875,228,0 +170746867923,229,0 +170746867973,228,0 +170746868021,229,0 +170746868068,228,0 +170746868116,225,0 +170746868166,228,0 +170746868216,226,0 +170746868265,218,0 +170746868315,220,0 +170746868364,221,0 +170746868412,222,0 +170746868462,228,0 +170746868511,226,0 +170746868561,227,0 +170746868610,227,0 +170746868658,227,0 +170746868706,228,0 +170746868754,227,0 +170746868802,229,0 +170746868850,229,0 +170746868900,228,0 +170746868949,228,0 +170746868999,226,0 +170746869047,217,0 +170746869095,218,0 +170746869143,219,0 +170746869190,221,0 +170746869240,222,0 +170746869290,222,0 +170746869338,224,0 +170746869385,226,0 +170746869434,225,0 +170746869483,228,0 +170746869533,228,0 +170746869582,230,0 +170746869630,228,0 +170746869680,228,0 +170746869728,227,0 +170746869776,227,0 +170746869825,217,0 +170746869875,217,0 +170746869923,219,0 +170746869972,221,0 +170746870020,221,0 +170746870070,223,0 +170746870118,225,0 +170746870166,226,0 +170746870214,226,0 +170746870262,228,0 +170746870310,228,0 +170746870359,228,0 +170746870409,229,0 +170746870457,228,0 +170746870506,229,0 +170746870554,227,0 +170746870604,228,0 +170746870653,218,0 +170746870703,217,0 +170746870752,219,0 +170746870800,220,0 +170746870848,221,0 +170746870898,222,0 +170746870947,224,0 +170746870997,226,0 +170746871045,227,0 +170746871094,228,0 +170746871142,227,0 +170746871190,229,0 +170746871238,228,0 +170746871286,229,0 +170746871334,228,0 +170746871384,227,0 +170746871433,217,0 +170746871481,215,0 +170746871531,217,0 +170746871580,219,0 +170746871628,219,0 +170746871676,221,0 +170746871726,221,0 +170746871775,222,0 +170746871823,223,0 +170746871873,227,0 +170746871921,226,0 +170746871970,226,0 +170746872020,228,0 +170746872069,226,0 +170746872119,229,0 +170746872167,227,0 +170746872215,225,0 +170746872264,215,0 +170746872312,216,0 +170746872360,217,0 +170746872410,214,0 +170746872458,219,0 +170746872506,221,0 +170746872554,222,0 +170746872603,222,0 +170746872651,224,0 +170746872699,226,0 +170746872747,225,0 +170746872797,227,0 +170746872845,229,0 +170746872893,228,0 +170746872940,227,0 +170746872990,227,0 +170746873038,224,0 +170746873086,218,0 +170746873134,218,0 +170746873182,220,0 +170746873231,221,0 +170746873281,222,0 +170746873330,223,0 +170746873380,224,0 +170746873429,226,0 +170746873477,228,0 +170746873525,227,0 +170746873575,226,0 +170746873623,228,0 +170746873672,227,0 +170746873722,228,0 +170746873770,228,0 +170746873818,227,0 +170746873867,226,0 +170746873915,224,0 +170746873965,225,0 +170746874013,226,0 +170746874062,227,0 +170746874110,228,0 +170746874158,227,0 +170746874206,227,0 +170746874254,227,0 +170746874302,227,0 +170746874350,227,0 +170746874398,229,0 +170746874446,228,0 +170746874495,229,0 +170746874545,229,0 +170746874594,228,0 +170746874644,235,0 +170746874692,229,0 +170746874740,228,0 +170746874789,228,0 +170746874839,229,0 +170746874888,228,0 +170746874936,228,0 +170746874984,230,0 +170746875032,230,0 +170746875080,228,0 +170746875130,228,0 +170746875178,227,0 +170746875227,228,0 +170746875275,227,0 +170746875325,228,0 +170746875373,228,0 +170746875421,227,0 +170746875470,228,0 +170746875519,227,0 +170746875569,228,0 +170746875618,225,0 +170746875666,226,0 +170746875716,227,0 +170746875764,225,0 +170746875813,228,0 +170746875861,229,0 +170746875909,230,0 +170746875957,227,0 +170746876004,230,0 +170746876052,229,0 +170746876100,228,0 +170746876148,228,0 +170746876196,230,0 +170746876246,229,0 +170746876295,227,0 +170746876344,227,0 +170746876392,227,0 +170746876440,227,0 +170746876490,221,0 +170746876538,223,0 +170746876586,225,0 +170746876633,224,0 +170746876681,226,0 +170746876729,225,0 +170746876779,229,0 +170746876827,230,0 +170746876874,228,0 +170746876924,228,0 +170746876972,229,0 +170746877020,229,0 +170746877068,230,0 +170746877117,228,0 +170746877165,230,0 +170746877213,229,0 +170746877263,227,0 +170746877311,218,0 +170746877359,222,0 +170746877408,223,0 +170746877456,226,0 +170746877504,227,0 +170746877552,225,0 +170746877600,228,0 +170746877649,228,0 +170746877697,228,0 +170746877745,229,0 +170746877795,228,0 +170746877843,228,0 +170746877892,228,0 +170746877940,228,0 +170746877988,231,0 +170746878037,225,0 +170746878087,227,0 +170746878137,227,0 +170746878185,223,0 +170746878234,224,0 +170746878282,224,0 +170746878330,225,0 +170746878379,227,0 +170746878429,227,0 +170746878477,227,0 +170746878525,226,0 +170746878573,228,0 +170746878621,230,0 +170746878669,230,0 +170746878717,230,0 +170746878766,229,0 +170746878816,230,0 +170746878865,227,0 +170746878915,227,0 +170746878965,228,0 +170746879013,225,0 +170746879062,224,0 +170746879110,224,0 +170746879158,223,0 +170746879207,224,0 +170746879257,224,0 +170746879306,225,0 +170746879356,227,0 +170746879404,227,0 +170746879452,231,0 +170746879500,228,0 +170746879549,231,0 +170746879597,228,0 +170746879647,229,0 +170746879695,229,0 +170746879743,228,0 +170746879792,228,0 +170746879840,227,0 +170746879888,226,0 +170746879938,224,0 +170746879987,223,0 +170746880035,224,0 +170746880083,227,0 +170746880131,226,0 +170746880181,228,0 +170746880229,224,0 +170746880278,226,0 +170746880328,228,0 +170746880377,228,0 +170746880425,228,0 +170746880475,229,0 +170746880523,227,0 +170746880571,227,0 +170746880619,227,0 +170746880667,226,0 +170746880716,226,0 +170746880766,222,0 +170746880815,222,0 +170746880863,224,0 +170746880911,226,0 +170746880959,225,0 +170746881007,226,0 +170746881057,229,0 +170746881106,225,0 +170746881156,230,0 +170746881204,228,0 +170746881252,229,0 +170746881300,229,0 +170746881348,229,0 +170746881396,229,0 +170746881444,227,0 +170746881493,227,0 +170746881543,227,0 +170746881592,219,0 +170746881640,219,0 +170746881688,222,0 +170746881736,223,0 +170746881786,223,0 +170746881835,224,0 +170746881883,225,0 +170746881933,225,0 +170746881982,227,0 +170746882030,228,0 +170746882078,227,0 +170746882128,229,0 +170746882175,229,0 +170746882223,229,0 +170746882271,227,0 +170746882319,228,0 +170746882367,231,0 +170746882415,226,0 +170746882463,218,0 +170746882511,218,0 +170746882558,222,0 +170746882608,221,0 +170746882658,223,0 +170746882707,224,0 +170746882755,225,0 +170746882804,225,0 +170746882852,227,0 +170746882902,229,0 +170746882950,226,0 +170746882998,227,0 +170746883048,228,0 +170746883097,228,0 +170746883145,228,0 +170746883193,224,0 +170746883241,226,0 +170746883291,217,0 +170746883338,218,0 +170746883386,219,0 +170746883436,221,0 +170746883484,221,0 +170746883532,223,0 +170746883581,223,0 +170746883629,226,0 +170746883677,226,0 +170746883725,226,0 +170746883775,226,0 +170746883824,225,0 +170746883874,227,0 +170746883924,229,0 +170746883972,228,0 +170746884021,228,0 +170746884069,228,0 +170746884117,226,0 +170746884165,218,0 +170746884213,218,0 +170746884261,220,0 +170746884310,221,0 +170746884360,220,0 +170746884408,223,0 +170746884457,223,0 +170746884507,225,0 +170746884555,226,0 +170746884603,227,0 +170746884651,226,0 +170746884700,227,0 +170746884748,228,0 +170746884796,227,0 +170746884844,229,0 +170746884892,228,0 +170746884940,227,0 +170746884988,219,0 +170746885036,217,0 +170746885083,218,0 +170746885131,221,0 +170746885179,220,0 +170746885229,221,0 +170746885276,223,0 +170746885324,223,0 +170746885372,224,0 +170746885420,224,0 +170746885468,226,0 +170746885517,227,0 +170746885567,226,0 +170746885615,227,0 +170746885664,226,0 +170746885712,227,0 +170746885761,228,0 +170746885809,226,0 +170746885857,216,0 +170746885905,217,0 +170746885953,219,0 +170746886001,218,0 +170746886049,222,0 +170746886097,222,0 +170746886145,224,0 +170746886194,224,0 +170746886242,226,0 +170746886292,226,0 +170746886340,226,0 +170746886389,227,0 +170746886437,230,0 +170746886485,228,0 +170746886533,228,0 +170746886581,228,0 +170746886629,227,0 +170746886679,226,0 +170746886727,218,0 +170746886776,219,0 +170746886826,220,0 +170746886874,224,0 +170746886922,222,0 +170746886970,222,0 +170746887019,226,0 +170746887069,224,0 +170746887117,225,0 +170746887165,227,0 +170746887213,227,0 +170746887261,229,0 +170746887309,229,0 +170746887358,230,0 +170746887406,228,0 +170746887456,228,0 +170746887505,226,0 +170746887555,217,0 +170746887604,218,0 +170746887652,219,0 +170746887700,221,0 +170746887750,222,0 +170746887798,223,0 +170746887846,225,0 +170746887894,227,0 +170746887943,227,0 +170746887991,227,0 +170746888039,228,0 +170746888089,227,0 +170746888137,228,0 +170746888186,229,0 +170746888234,225,0 +170746888282,227,0 +170746888330,227,0 +170746888379,223,0 +170746888427,223,0 +170746888475,226,0 +170746888525,226,0 +170746888572,225,0 +170746888620,228,0 +170746888670,227,0 +170746888718,229,0 +170746888766,228,0 +170746888814,228,0 +170746888861,227,0 +170746888909,227,0 +170746888957,227,0 +170746889005,226,0 +170746889055,227,0 +170746889104,228,0 +170746889152,226,0 +170746889200,226,0 +170746889248,226,0 +170746889298,225,0 +170746889346,229,0 +170746889395,228,0 +170746889443,228,0 +170746889493,226,0 +170746889542,227,0 +170746889590,228,0 +170746889640,228,0 +170746889688,228,0 +170746889738,227,0 +170746889787,227,0 +170746889837,227,0 +170746889885,227,0 +170746889933,227,0 +170746889982,227,0 +170746890030,227,0 +170746890079,226,0 +170746890127,225,0 +170746890175,223,0 +170746890223,224,0 +170746890273,225,0 +170746890321,226,0 +170746890369,226,0 +170746890418,225,0 +170746890466,230,0 +170746890515,228,0 +170746890565,228,0 +170746890613,229,0 +170746890661,233,0 +170746890709,231,0 +170746890757,228,0 +170746890806,229,0 +170746890856,227,0 +170746890905,228,0 +170746890955,226,0 +170746891004,220,0 +170746891052,219,0 +170746891100,220,0 +170746891150,221,0 +170746891199,222,0 +170746891249,223,0 +170746891297,225,0 +170746891345,224,0 +170746891392,226,0 +170746891440,226,0 +170746891488,228,0 +170746891536,229,0 +170746891584,228,0 +170746891632,229,0 +170746891680,228,0 +170746891729,228,0 +170746891777,227,0 +170746891827,217,0 +170746891875,218,0 +170746891924,220,0 +170746891972,222,0 +170746892020,221,0 +170746892068,223,0 +170746892117,224,0 +170746892165,224,0 +170746892215,225,0 +170746892263,226,0 +170746892310,226,0 +170746892358,228,0 +170746892406,229,0 +170746892454,228,0 +170746892502,228,0 +170746892551,227,0 +170746892599,230,0 +170746892647,226,0 +170746892697,219,0 +170746892746,216,0 +170746892796,221,0 +170746892844,222,0 +170746892894,222,0 +170746892942,223,0 +170746892989,223,0 +170746893037,227,0 +170746893085,226,0 +170746893133,228,0 +170746893183,226,0 +170746893231,226,0 +170746893280,230,0 +170746893328,224,0 +170746893378,230,0 +170746893426,228,0 +170746893475,227,0 +170746893523,225,0 +170746893573,217,0 +170746893621,219,0 +170746893670,215,0 +170746893718,221,0 +170746893766,223,0 +170746893816,223,0 +170746893864,225,0 +170746893912,228,0 +170746893961,227,0 +170746894009,227,0 +170746894057,228,0 +170746894105,231,0 +170746894153,228,0 +170746894200,228,0 +170746894248,228,0 +170746894296,227,0 +170746894344,227,0 +170746894392,218,0 +170746894440,217,0 +170746894490,219,0 +170746894539,219,0 +170746894589,222,0 +170746894638,225,0 +170746894688,225,0 +170746894737,226,0 +170746894785,226,0 +170746894835,228,0 +170746894883,229,0 +170746894932,228,0 +170746894980,227,0 +170746895030,230,0 +170746895079,226,0 +170746895129,229,0 +170746895177,227,0 +170746895225,226,0 +170746895273,217,0 +170746895322,217,0 +170746895370,219,0 +170746895418,221,0 +170746895466,222,0 +170746895516,223,0 +170746895564,224,0 +170746895612,224,0 +170746895659,228,0 +170746895709,227,0 +170746895759,227,0 +170746895808,227,0 +170746895858,227,0 +170746895906,229,0 +170746895955,229,0 +170746896003,227,0 +170746896053,226,0 +170746896102,216,0 +170746896150,218,0 +170746896198,219,0 +170746896248,221,0 +170746896296,222,0 +170746896345,223,0 +170746896395,223,0 +170746896444,226,0 +170746896492,226,0 +170746896541,226,0 +170746896591,226,0 +170746896641,228,0 +170746896690,228,0 +170746896738,226,0 +170746896786,230,0 +170746896834,229,0 +170746896884,226,0 +170746896932,226,0 +170746896980,220,0 +170746897028,221,0 +170746897077,223,0 +170746897127,223,0 +170746897174,226,0 +170746897222,225,0 +170746897270,226,0 +170746897318,227,0 +170746897366,226,0 +170746897414,228,0 +170746897464,229,0 +170746897513,227,0 +170746897561,228,0 +170746897609,228,0 +170746897657,227,0 +170746897705,227,0 +170746897753,225,0 +170746897801,223,0 +170746897850,224,0 +170746897898,224,0 +170746897946,225,0 +170746897994,227,0 +170746898043,227,0 +170746898093,229,0 +170746898142,228,0 +170746898192,229,0 +170746898241,228,0 +170746898289,227,0 +170746898337,228,0 +170746898385,227,0 +170746898433,230,0 +170746898481,227,0 +170746898529,229,0 +170746898576,228,0 +170746898624,227,0 +170746898674,223,0 +170746898724,224,0 +170746898773,225,0 +170746898821,226,0 +170746898869,228,0 +170746898917,228,0 +170746898966,227,0 +170746899014,229,0 +170746899062,228,0 +170746899110,228,0 +170746899158,228,0 +170746899206,226,0 +170746899256,227,0 +170746899304,229,0 +170746899352,228,0 +170746899401,228,0 +170746899451,227,0 +170746899500,225,0 +170746899548,220,0 +170746899598,222,0 +170746899645,223,0 +170746899695,223,0 +170746899743,225,0 +170746899791,227,0 +170746899839,227,0 +170746899888,226,0 +170746899936,228,0 +170746899984,231,0 +170746900032,230,0 +170746900080,229,0 +170746900128,228,0 +170746900177,228,0 +170746900225,227,0 +170746900273,228,0 +170746900322,227,0 +170746900370,218,0 +170746900418,218,0 +170746900466,219,0 +170746900514,220,0 +170746900562,221,0 +170746900610,224,0 +170746900658,224,0 +170746900706,225,0 +170746900754,223,0 +170746900802,227,0 +170746900849,227,0 +170746900897,228,0 +170746900945,229,0 +170746900995,228,0 +170746901045,229,0 +170746901094,227,0 +170746901142,226,0 +170746901190,226,0 +170746901238,214,0 +170746901286,216,0 +170746901336,217,0 +170746901385,219,0 +170746901433,220,0 +170746901481,221,0 +170746901531,221,0 +170746901580,222,0 +170746901630,222,0 +170746901679,223,0 +170746901727,224,0 +170746901775,226,0 +170746901825,226,0 +170746901873,226,0 +170746901922,226,0 +170746901970,226,0 +170746902018,226,0 +170746902066,216,0 +170746902114,214,0 +170746902163,216,0 +170746902211,217,0 +170746902261,215,0 +170746902311,219,0 +170746902360,219,0 +170746902410,221,0 +170746902459,222,0 +170746902507,223,0 +170746902557,225,0 +170746902605,226,0 +170746902653,226,0 +170746902700,227,0 +170746902750,227,0 +170746902798,227,0 +170746902847,228,0 +170746902895,226,0 +170746902943,218,0 +170746902991,218,0 +170746903040,220,0 +170746903090,221,0 +170746903138,221,0 +170746903186,223,0 +170746903234,224,0 +170746903282,224,0 +170746903330,226,0 +170746903378,226,0 +170746903426,227,0 +170746903474,227,0 +170746903522,228,0 +170746903571,227,0 +170746903619,228,0 +170746903669,226,0 +170746903718,227,0 +170746903768,222,0 +170746903816,224,0 +170746903865,225,0 +170746903913,228,0 +170746903961,226,0 +170746904009,227,0 +170746904057,229,0 +170746904107,228,0 +170746904154,227,0 +170746904204,228,0 +170746904252,229,0 +170746904300,228,0 +170746904349,227,0 +170746904397,226,0 +170746904447,227,0 +170746904497,227,0 +170746904546,227,0 +170746904594,227,0 +170746904644,218,0 +170746904692,224,0 +170746904741,226,0 +170746904791,228,0 +170746904839,227,0 +170746904888,228,0 +170746904936,227,0 +170746904984,228,0 +170746905033,229,0 +170746905083,228,0 +170746905131,229,0 +170746905179,227,0 +170746905228,228,0 +170746905278,227,0 +170746905328,229,0 +170746905376,230,0 +170746905425,229,0 +170746905475,225,0 +170746905523,220,0 +170746905572,220,0 +170746905620,222,0 +170746905668,224,0 +170746905717,224,0 +170746905765,226,0 +170746905815,225,0 +170746905863,227,0 +170746905911,228,0 +170746905959,228,0 +170746906007,228,0 +170746906056,227,0 +170746906104,229,0 +170746906154,226,0 +170746906203,225,0 +170746906253,228,0 +170746906302,227,0 +170746906352,217,0 +170746906400,217,0 +170746906449,219,0 +170746906497,220,0 +170746906545,221,0 +170746906593,222,0 +170746906643,224,0 +170746906691,226,0 +170746906739,225,0 +170746906788,227,0 +170746906838,227,0 +170746906886,227,0 +170746906935,227,0 +170746906985,230,0 +170746907034,229,0 +170746907084,228,0 +170746907133,227,0 +170746907181,217,0 +170746907229,215,0 +170746907279,217,0 +170746907327,215,0 +170746907375,220,0 +170746907423,219,0 +170746907471,221,0 +170746907518,223,0 +170746907568,223,0 +170746907618,226,0 +170746907667,226,0 +170746907717,228,0 +170746907766,227,0 +170746907816,228,0 +170746907864,229,0 +170746907912,229,0 +170746907960,227,0 +170746908008,227,0 +170746908056,217,0 +170746908105,213,0 +170746908155,217,0 +170746908203,218,0 +170746908251,220,0 +170746908299,221,0 +170746908348,222,0 +170746908396,222,0 +170746908446,225,0 +170746908495,227,0 +170746908543,229,0 +170746908591,226,0 +170746908641,226,0 +170746908690,227,0 +170746908738,228,0 +170746908786,229,0 +170746908836,228,0 +170746908884,227,0 +170746908933,216,0 +170746908983,215,0 +170746909032,217,0 +170746909080,217,0 +170746909128,220,0 +170746909178,222,0 +170746909227,221,0 +170746909275,223,0 +170746909325,225,0 +170746909374,226,0 +170746909422,225,0 +170746909470,228,0 +170746909520,227,0 +170746909569,230,0 +170746909617,228,0 +170746909665,229,0 +170746909713,229,0 +170746909763,217,0 +170746909812,216,0 +170746909860,217,0 +170746909908,218,0 +170746909957,220,0 +170746910005,222,0 +170746910055,223,0 +170746910104,223,0 +170746910154,223,0 +170746910202,228,0 +170746910250,228,0 +170746910300,227,0 +170746910348,227,0 +170746910395,228,0 +170746910443,228,0 +170746910491,229,0 +170746910541,228,0 +170746910591,226,0 +170746910640,217,0 +170746910690,220,0 +170746910738,221,0 +170746910786,221,0 +170746910834,222,0 +170746910881,227,0 +170746910931,224,0 +170746910981,225,0 +170746911028,225,0 +170746911078,226,0 +170746911128,229,0 +170746911177,228,0 +170746911225,228,0 +170746911275,227,0 +170746911323,229,0 +170746911371,229,0 +170746911420,231,0 +170746911468,229,0 +170746911516,227,0 +170746911566,228,0 +170746911615,226,0 +170746911663,228,0 +170746911711,228,0 +170746911759,227,0 +170746911807,228,0 +170746911857,228,0 +170746911906,224,0 +170746911954,222,0 +170746912002,222,0 +170746912050,223,0 +170746912099,224,0 +170746912149,225,0 +170746912199,225,0 +170746912248,226,0 +170746912298,230,0 +170746912346,227,0 +170746912395,228,0 +170746912443,229,0 +170746912493,229,0 +170746912542,228,0 +170746912592,228,0 +170746912641,229,0 +170746912691,228,0 +170746912740,217,0 +170746912790,218,0 +170746912839,219,0 +170746912889,219,0 +170746912939,222,0 +170746912988,224,0 +170746913038,225,0 +170746913086,225,0 +170746913134,227,0 +170746913182,228,0 +170746913231,229,0 +170746913281,229,0 +170746913330,228,0 +170746913380,230,0 +170746913428,229,0 +170746913477,228,0 +170746913527,228,0 +170746913576,226,0 +170746913626,214,0 +170746913674,216,0 +170746913722,219,0 +170746913771,221,0 +170746913821,222,0 +170746913870,222,0 +170746913920,224,0 +170746913968,223,0 +170746914016,225,0 +170746914064,227,0 +170746914113,229,0 +170746914161,229,0 +170746914211,230,0 +170746914260,228,0 +170746914309,229,0 +170746914359,228,0 +170746914407,227,0 +170746914455,217,0 +170746914505,215,0 +170746914554,217,0 +170746914604,218,0 +170746914652,219,0 +170746914701,220,0 +170746914749,221,0 +170746914797,224,0 +170746914845,224,0 +170746914893,225,0 +170746914943,226,0 +170746914992,227,0 +170746915040,229,0 +170746915088,231,0 +170746915138,229,0 +170746915187,228,0 +170746915235,228,0 +170746915283,227,0 +170746915331,216,0 +170746915379,215,0 +170746915428,216,0 +170746915476,219,0 +170746915526,219,0 +170746915574,221,0 +170746915622,222,0 +170746915670,223,0 +170746915719,224,0 +170746915769,225,0 +170746915818,227,0 +170746915866,228,0 +170746915916,228,0 +170746915965,228,0 +170746916013,228,0 +170746916061,228,0 +170746916109,227,0 +170746916159,217,0 +170746916207,214,0 +170746916256,216,0 +170746916304,218,0 +170746916352,219,0 +170746916400,221,0 +170746916448,222,0 +170746916498,223,0 +170746916546,223,0 +170746916595,224,0 +170746916643,224,0 +170746916693,226,0 +170746916741,227,0 +170746916789,227,0 +170746916837,228,0 +170746916886,228,0 +170746916936,228,0 +170746916985,225,0 +170746917035,216,0 +170746917084,218,0 +170746917134,219,0 +170746917183,218,0 +170746917231,218,0 +170746917279,219,0 +170746917327,221,0 +170746917375,223,0 +170746917425,223,0 +170746917473,224,0 +170746917521,226,0 +170746917569,226,0 +170746917618,226,0 +170746917668,227,0 +170746917717,227,0 +170746917765,228,0 +170746917814,226,0 +170746917864,218,0 +170746917913,221,0 +170746917961,222,0 +170746918009,223,0 +170746918057,224,0 +170746918107,225,0 +170746918155,227,0 +170746918202,227,0 +170746918250,226,0 +170746918298,227,0 +170746918348,227,0 +170746918398,227,0 +170746918445,226,0 +170746918493,228,0 +170746918541,227,0 +170746918591,228,0 +170746918639,228,0 +170746918687,227,0 +170746918735,228,0 +170746918783,228,0 +170746918831,228,0 +170746918879,228,0 +170746918928,229,0 +170746918976,231,0 +170746919024,229,0 +170746919074,229,0 +170746919122,228,0 +170746919171,227,0 +170746919221,230,0 +170746919270,227,0 +170746919318,227,0 +170746919368,228,0 +170746919416,227,0 +170746919466,228,0 +170746919515,228,0 +170746919565,227,0 +170746919614,226,0 +170746919662,233,0 +170746919710,228,0 +170746919758,229,0 +170746919806,228,0 +170746919855,229,0 +170746919903,228,0 +170746919953,228,0 +170746920003,228,0 diff --git a/laser_value/0209-19.csv b/laser_value/0209-19.csv new file mode 100644 index 0000000..f246435 --- /dev/null +++ b/laser_value/0209-19.csv @@ -0,0 +1,7403 @@ +timestamp,laser_value,event +170746920053,228,0 +170746920100,228,0 +170746920148,228,0 +170746920198,227,0 +170746920247,227,0 +170746920295,230,0 +170746920345,227,0 +170746920395,226,0 +170746920442,221,0 +170746920492,224,0 +170746920540,224,0 +170746920588,226,0 +170746920637,225,0 +170746920685,226,0 +170746920735,229,0 +170746920783,225,0 +170746920832,231,0 +170746920880,225,0 +170746920930,228,0 +170746920979,229,0 +170746921029,230,0 +170746921079,228,0 +170746921127,229,0 +170746921176,227,0 +170746921226,227,0 +170746921274,227,0 +170746921321,218,0 +170746921369,221,0 +170746921419,224,0 +170746921469,224,0 +170746921518,226,0 +170746921566,228,0 +170746921616,227,0 +170746921665,228,0 +170746921715,229,0 +170746921762,222,0 +170746921810,230,0 +170746921860,232,0 +170746921908,230,0 +170746921956,228,0 +170746922006,228,0 +170746922055,228,0 +170746922103,228,0 +170746922151,224,0 +170746922199,223,0 +170746922249,225,0 +170746922297,226,0 +170746922346,228,0 +170746922394,226,0 +170746922442,225,0 +170746922490,230,0 +170746922539,228,0 +170746922587,230,0 +170746922637,230,0 +170746922685,229,0 +170746922733,229,0 +170746922782,229,0 +170746922832,227,0 +170746922880,229,0 +170746922929,227,0 +170746922979,220,0 +170746923026,222,0 +170746923076,223,0 +170746923124,224,0 +170746923172,226,0 +170746923220,226,0 +170746923268,229,0 +170746923317,227,0 +170746923367,228,0 +170746923416,230,0 +170746923464,230,0 +170746923512,228,0 +170746923560,227,0 +170746923610,229,0 +170746923659,228,0 +170746923707,230,0 +170746923755,229,0 +170746923803,227,0 +170746923851,222,0 +170746923901,223,0 +170746923950,223,0 +170746924000,223,0 +170746924047,224,0 +170746924097,226,0 +170746924145,228,0 +170746924193,227,0 +170746924241,228,0 +170746924288,228,0 +170746924336,230,0 +170746924384,228,0 +170746924432,231,0 +170746924480,227,0 +170746924528,228,0 +170746924576,229,0 +170746924624,227,0 +170746924672,226,0 +170746924720,216,0 +170746924768,216,0 +170746924815,218,0 +170746924863,220,0 +170746924911,221,0 +170746924959,219,0 +170746925009,224,0 +170746925058,227,0 +170746925106,226,0 +170746925154,226,0 +170746925202,226,0 +170746925250,228,0 +170746925300,226,0 +170746925349,228,0 +170746925397,231,0 +170746925445,228,0 +170746925493,227,0 +170746925541,216,0 +170746925591,215,0 +170746925638,214,0 +170746925686,216,0 +170746925734,218,0 +170746925782,219,0 +170746925830,220,0 +170746925880,222,0 +170746925929,222,0 +170746925979,223,0 +170746926027,224,0 +170746926075,227,0 +170746926123,224,0 +170746926171,224,0 +170746926220,228,0 +170746926270,229,0 +170746926318,228,0 +170746926366,227,0 +170746926414,217,0 +170746926463,216,0 +170746926513,217,0 +170746926561,219,0 +170746926610,220,0 +170746926660,220,0 +170746926709,222,0 +170746926757,224,0 +170746926805,227,0 +170746926853,226,0 +170746926903,227,0 +170746926952,230,0 +170746927000,228,0 +170746927050,227,0 +170746927099,227,0 +170746927147,228,0 +170746927195,231,0 +170746927244,226,0 +170746927292,217,0 +170746927340,217,0 +170746927388,219,0 +170746927437,221,0 +170746927487,221,0 +170746927537,223,0 +170746927584,224,0 +170746927632,224,0 +170746927682,226,0 +170746927730,226,0 +170746927779,227,0 +170746927827,227,0 +170746927877,227,0 +170746927926,229,0 +170746927974,230,0 +170746928022,227,0 +170746928071,226,0 +170746928119,217,0 +170746928167,216,0 +170746928215,217,0 +170746928263,218,0 +170746928311,220,0 +170746928359,222,0 +170746928406,223,0 +170746928454,223,0 +170746928504,226,0 +170746928553,226,0 +170746928601,227,0 +170746928649,229,0 +170746928697,230,0 +170746928746,230,0 +170746928794,229,0 +170746928844,229,0 +170746928892,229,0 +170746928940,227,0 +170746928987,216,0 +170746929035,215,0 +170746929083,216,0 +170746929131,218,0 +170746929180,219,0 +170746929230,221,0 +170746929278,227,0 +170746929326,223,0 +170746929373,225,0 +170746929423,226,0 +170746929471,228,0 +170746929520,229,0 +170746929570,228,0 +170746929618,227,0 +170746929666,229,0 +170746929714,228,0 +170746929761,226,0 +170746929809,221,0 +170746929859,215,0 +170746929908,216,0 +170746929958,218,0 +170746930006,218,0 +170746930055,220,0 +170746930103,227,0 +170746930153,222,0 +170746930203,222,0 +170746930250,225,0 +170746930300,225,0 +170746930350,225,0 +170746930399,227,0 +170746930449,228,0 +170746930497,228,0 +170746930546,227,0 +170746930596,227,0 +170746930644,228,0 +170746930693,216,0 +170746930741,218,0 +170746930791,218,0 +170746930839,219,0 +170746930888,220,0 +170746930936,220,0 +170746930984,222,0 +170746931032,220,0 +170746931080,222,0 +170746931128,223,0 +170746931178,227,0 +170746931227,226,0 +170746931277,226,0 +170746931325,227,0 +170746931373,227,0 +170746931421,226,0 +170746931469,229,0 +170746931518,220,0 +170746931568,215,0 +170746931616,217,0 +170746931665,219,0 +170746931713,220,0 +170746931761,218,0 +170746931810,219,0 +170746931858,223,0 +170746931908,222,0 +170746931956,222,0 +170746932004,224,0 +170746932053,224,0 +170746932103,225,0 +170746932152,226,0 +170746932202,227,0 +170746932251,227,0 +170746932301,227,0 +170746932349,226,0 +170746932398,215,0 +170746932448,218,0 +170746932496,219,0 +170746932544,220,0 +170746932592,223,0 +170746932640,222,0 +170746932688,223,0 +170746932736,224,0 +170746932785,225,0 +170746932835,226,0 +170746932884,227,0 +170746932934,225,0 +170746932982,227,0 +170746933030,228,0 +170746933079,228,0 +170746933129,227,0 +170746933177,226,0 +170746933225,226,0 +170746933273,226,0 +170746933321,227,0 +170746933368,227,0 +170746933416,227,0 +170746933464,228,0 +170746933512,228,0 +170746933562,228,0 +170746933611,228,0 +170746933659,228,0 +170746933707,228,0 +170746933755,229,0 +170746933805,227,0 +170746933854,226,0 +170746933904,227,0 +170746933952,226,0 +170746934000,227,0 +170746934049,229,0 +170746934097,228,0 +170746934147,229,0 +170746934195,228,0 +170746934242,228,0 +170746934290,228,0 +170746934338,229,0 +170746934388,228,0 +170746934436,230,0 +170746934485,227,0 +170746934533,227,0 +170746934581,227,0 +170746934629,229,0 +170746934677,233,0 +170746934725,227,0 +170746934773,228,0 +170746934822,227,0 +170746934872,229,0 +170746934920,226,0 +170746934968,226,0 +170746935017,227,0 +170746935065,225,0 +170746935115,227,0 +170746935163,226,0 +170746935212,232,0 +170746935260,227,0 +170746935308,228,0 +170746935358,227,0 +170746935407,224,0 +170746935455,229,0 +170746935505,231,0 +170746935553,231,0 +170746935601,229,0 +170746935649,227,0 +170746935698,228,0 +170746935748,226,0 +170746935797,221,0 +170746935845,221,0 +170746935893,224,0 +170746935941,224,0 +170746935991,224,0 +170746936039,224,0 +170746936088,226,0 +170746936138,228,0 +170746936187,226,0 +170746936235,230,0 +170746936283,229,0 +170746936331,228,0 +170746936381,229,0 +170746936430,228,0 +170746936480,229,0 +170746936529,228,0 +170746936579,227,0 +170746936627,226,0 +170746936676,222,0 +170746936724,221,0 +170746936772,224,0 +170746936820,225,0 +170746936868,226,0 +170746936916,226,0 +170746936966,227,0 +170746937015,229,0 +170746937065,228,0 +170746937113,229,0 +170746937161,228,0 +170746937209,225,0 +170746937257,231,0 +170746937306,232,0 +170746937354,228,0 +170746937403,227,0 +170746937453,227,0 +170746937503,221,0 +170746937552,224,0 +170746937600,222,0 +170746937648,223,0 +170746937696,223,0 +170746937744,225,0 +170746937792,225,0 +170746937840,227,0 +170746937888,227,0 +170746937936,229,0 +170746937984,228,0 +170746938033,230,0 +170746938081,228,0 +170746938129,229,0 +170746938179,228,0 +170746938228,227,0 +170746938276,230,0 +170746938324,226,0 +170746938374,219,0 +170746938423,223,0 +170746938471,221,0 +170746938521,223,0 +170746938569,223,0 +170746938617,227,0 +170746938666,226,0 +170746938716,228,0 +170746938765,229,0 +170746938813,228,0 +170746938861,229,0 +170746938911,230,0 +170746938960,229,0 +170746939008,228,0 +170746939058,226,0 +170746939107,227,0 +170746939155,226,0 +170746939205,221,0 +170746939253,221,0 +170746939301,222,0 +170746939350,224,0 +170746939398,225,0 +170746939446,225,0 +170746939494,227,0 +170746939542,228,0 +170746939590,228,0 +170746939638,228,0 +170746939687,228,0 +170746939737,231,0 +170746939785,231,0 +170746939834,228,0 +170746939882,229,0 +170746939932,229,0 +170746939980,228,0 +170746940029,227,0 +170746940078,218,0 +170746940126,220,0 +170746940174,220,0 +170746940222,223,0 +170746940270,224,0 +170746940318,223,0 +170746940367,223,0 +170746940417,227,0 +170746940464,226,0 +170746940512,229,0 +170746940560,228,0 +170746940608,229,0 +170746940656,227,0 +170746940704,229,0 +170746940752,228,0 +170746940800,238,0 +170746940848,228,0 +170746940897,225,0 +170746940945,216,0 +170746940993,218,0 +170746941041,220,0 +170746941090,221,0 +170746941138,222,0 +170746941188,223,0 +170746941236,225,0 +170746941284,227,0 +170746941333,227,0 +170746941381,228,0 +170746941431,227,0 +170746941480,228,0 +170746941528,228,0 +170746941576,227,0 +170746941624,232,0 +170746941672,228,0 +170746941721,227,0 +170746941769,216,0 +170746941819,218,0 +170746941867,219,0 +170746941915,220,0 +170746941963,222,0 +170746942012,222,0 +170746942061,223,0 +170746942111,224,0 +170746942159,239,0 +170746942207,227,0 +170746942255,226,0 +170746942302,226,0 +170746942352,229,0 +170746942400,227,0 +170746942448,228,0 +170746942495,229,0 +170746942543,227,0 +170746942591,226,0 +170746942639,215,0 +170746942687,217,0 +170746942735,219,0 +170746942783,221,0 +170746942831,222,0 +170746942880,224,0 +170746942928,223,0 +170746942976,225,0 +170746943024,226,0 +170746943072,227,0 +170746943121,229,0 +170746943169,228,0 +170746943217,228,0 +170746943267,229,0 +170746943315,228,0 +170746943363,227,0 +170746943410,228,0 +170746943458,216,0 +170746943506,217,0 +170746943556,219,0 +170746943605,220,0 +170746943653,221,0 +170746943703,222,0 +170746943751,225,0 +170746943800,226,0 +170746943850,226,0 +170746943898,229,0 +170746943946,228,0 +170746943995,228,0 +170746944043,229,0 +170746944091,229,0 +170746944139,228,0 +170746944189,228,0 +170746944237,229,0 +170746944285,227,0 +170746944334,217,0 +170746944384,218,0 +170746944433,219,0 +170746944483,221,0 +170746944532,221,0 +170746944580,223,0 +170746944630,223,0 +170746944678,224,0 +170746944727,226,0 +170746944775,226,0 +170746944823,227,0 +170746944872,227,0 +170746944920,238,0 +170746944968,229,0 +170746945018,227,0 +170746945066,229,0 +170746945114,227,0 +170746945162,216,0 +170746945209,218,0 +170746945257,219,0 +170746945305,222,0 +170746945353,223,0 +170746945403,226,0 +170746945451,224,0 +170746945499,227,0 +170746945546,227,0 +170746945596,226,0 +170746945646,226,0 +170746945693,228,0 +170746945741,230,0 +170746945789,227,0 +170746945837,227,0 +170746945885,228,0 +170746945933,228,0 +170746945981,227,0 +170746946031,221,0 +170746946079,221,0 +170746946128,222,0 +170746946176,223,0 +170746946224,221,0 +170746946273,225,0 +170746946323,225,0 +170746946372,225,0 +170746946420,224,0 +170746946468,227,0 +170746946516,228,0 +170746946564,229,0 +170746946612,230,0 +170746946660,229,0 +170746946708,228,0 +170746946756,228,0 +170746946806,226,0 +170746946855,226,0 +170746946905,219,0 +170746946954,220,0 +170746947002,221,0 +170746947050,222,0 +170746947100,222,0 +170746947149,225,0 +170746947199,224,0 +170746947248,225,0 +170746947298,227,0 +170746947346,227,0 +170746947394,227,0 +170746947442,227,0 +170746947490,227,0 +170746947538,227,0 +170746947586,226,0 +170746947635,228,0 +170746947683,226,0 +170746947733,222,0 +170746947782,222,0 +170746947830,225,0 +170746947878,224,0 +170746947927,225,0 +170746947977,228,0 +170746948025,226,0 +170746948073,227,0 +170746948121,228,0 +170746948169,227,0 +170746948217,228,0 +170746948266,227,0 +170746948314,228,0 +170746948364,227,0 +170746948413,228,0 +170746948463,227,0 +170746948511,227,0 +170746948560,226,0 +170746948608,226,0 +170746948656,227,0 +170746948704,227,0 +170746948752,228,0 +170746948802,227,0 +170746948850,229,0 +170746948899,240,0 +170746948949,231,0 +170746948997,229,0 +170746949046,228,0 +170746949096,229,0 +170746949145,227,0 +170746949193,229,0 +170746949243,228,0 +170746949291,225,0 +170746949339,226,0 +170746949388,227,0 +170746949438,224,0 +170746949488,226,0 +170746949537,225,0 +170746949587,227,0 +170746949636,227,0 +170746949684,226,0 +170746949732,227,0 +170746949780,229,0 +170746949828,227,0 +170746949877,229,0 +170746949925,228,0 +170746949975,229,0 +170746950023,229,0 +170746950073,230,0 +170746950120,229,0 +170746950168,228,0 +170746950216,227,0 +170746950264,226,0 +170746950312,217,0 +170746950362,218,0 +170746950410,220,0 +170746950459,221,0 +170746950507,223,0 +170746950557,225,0 +170746950606,226,0 +170746950656,227,0 +170746950705,227,0 +170746950755,229,0 +170746950804,229,0 +170746950854,227,0 +170746950904,228,0 +170746950951,229,0 +170746951001,228,0 +170746951051,228,0 +170746951100,227,0 +170746951148,217,0 +170746951196,216,0 +170746951244,217,0 +170746951292,219,0 +170746951340,221,0 +170746951388,221,0 +170746951436,221,0 +170746951485,223,0 +170746951535,224,0 +170746951584,224,0 +170746951632,224,0 +170746951680,226,0 +170746951730,230,0 +170746951778,228,0 +170746951827,229,0 +170746951877,230,0 +170746951926,228,0 +170746951974,227,0 +170746952022,216,0 +170746952072,217,0 +170746952121,218,0 +170746952171,219,0 +170746952219,222,0 +170746952267,224,0 +170746952314,223,0 +170746952364,224,0 +170746952412,226,0 +170746952461,226,0 +170746952509,228,0 +170746952559,228,0 +170746952606,231,0 +170746952654,230,0 +170746952704,230,0 +170746952752,230,0 +170746952801,227,0 +170746952849,217,0 +170746952898,216,0 +170746952946,216,0 +170746952994,217,0 +170746953042,218,0 +170746953090,220,0 +170746953139,221,0 +170746953187,223,0 +170746953235,225,0 +170746953283,225,0 +170746953331,225,0 +170746953381,226,0 +170746953428,228,0 +170746953476,227,0 +170746953524,227,0 +170746953572,228,0 +170746953620,228,0 +170746953668,227,0 +170746953718,215,0 +170746953765,214,0 +170746953813,217,0 +170746953861,219,0 +170746953909,221,0 +170746953957,221,0 +170746954005,221,0 +170746954053,223,0 +170746954101,224,0 +170746954149,224,0 +170746954196,224,0 +170746954244,225,0 +170746954292,227,0 +170746954342,228,0 +170746954390,228,0 +170746954438,227,0 +170746954485,225,0 +170746954535,217,0 +170746954583,217,0 +170746954632,219,0 +170746954680,221,0 +170746954728,221,0 +170746954777,224,0 +170746954825,225,0 +170746954875,225,0 +170746954923,225,0 +170746954970,226,0 +170746955020,231,0 +170746955068,230,0 +170746955116,231,0 +170746955165,230,0 +170746955213,230,0 +170746955261,229,0 +170746955309,233,0 +170746955358,227,0 +170746955406,221,0 +170746955456,219,0 +170746955504,221,0 +170746955553,222,0 +170746955602,226,0 +170746955650,225,0 +170746955698,223,0 +170746955748,225,0 +170746955796,226,0 +170746955845,227,0 +170746955895,227,0 +170746955943,227,0 +170746955991,228,0 +170746956039,227,0 +170746956088,228,0 +170746956136,227,0 +170746956184,229,0 +170746956232,226,0 +170746956282,220,0 +170746956331,221,0 +170746956381,223,0 +170746956430,224,0 +170746956480,224,0 +170746956529,225,0 +170746956577,227,0 +170746956625,229,0 +170746956675,227,0 +170746956723,229,0 +170746956771,228,0 +170746956819,228,0 +170746956868,231,0 +170746956918,228,0 +170746956966,228,0 +170746957015,227,0 +170746957063,226,0 +170746957113,222,0 +170746957161,222,0 +170746957210,222,0 +170746957260,225,0 +170746957309,225,0 +170746957359,225,0 +170746957407,227,0 +170746957456,228,0 +170746957506,227,0 +170746957555,227,0 +170746957605,229,0 +170746957653,229,0 +170746957702,228,0 +170746957752,228,0 +170746957801,228,0 +170746957851,227,0 +170746957900,228,0 +170746957948,219,0 +170746957996,223,0 +170746958044,224,0 +170746958092,226,0 +170746958140,225,0 +170746958188,227,0 +170746958236,227,0 +170746958286,229,0 +170746958334,228,0 +170746958383,229,0 +170746958431,229,0 +170746958479,228,0 +170746958527,229,0 +170746958575,229,0 +170746958624,228,0 +170746958672,227,0 +170746958720,227,0 +170746958768,227,0 +170746958818,225,0 +170746958867,226,0 +170746958915,225,0 +170746958965,226,0 +170746959014,228,0 +170746959064,228,0 +170746959113,229,0 +170746959163,228,0 +170746959211,229,0 +170746959259,227,0 +170746959307,228,0 +170746959356,230,0 +170746959406,228,0 +170746959455,228,0 +170746959505,228,0 +170746959553,228,0 +170746959602,228,0 +170746959652,217,0 +170746959701,218,0 +170746959749,219,0 +170746959799,222,0 +170746959847,222,0 +170746959895,228,0 +170746959943,226,0 +170746959991,226,0 +170746960040,226,0 +170746960088,229,0 +170746960136,227,0 +170746960186,228,0 +170746960234,229,0 +170746960283,228,0 +170746960333,228,0 +170746960382,227,0 +170746960430,228,0 +170746960480,226,0 +170746960529,214,0 +170746960579,217,0 +170746960628,219,0 +170746960676,219,0 +170746960724,223,0 +170746960772,219,0 +170746960820,224,0 +170746960870,221,0 +170746960918,227,0 +170746960967,225,0 +170746961017,227,0 +170746961065,228,0 +170746961113,230,0 +170746961162,227,0 +170746961212,228,0 +170746961260,229,0 +170746961308,228,0 +170746961356,222,0 +170746961403,216,0 +170746961451,215,0 +170746961499,214,0 +170746961547,214,0 +170746961595,218,0 +170746961643,220,0 +170746961691,222,0 +170746961739,224,0 +170746961787,223,0 +170746961837,221,0 +170746961885,226,0 +170746961934,228,0 +170746961984,228,0 +170746962033,227,0 +170746962081,227,0 +170746962129,226,0 +170746962179,227,0 +170746962227,217,0 +170746962275,218,0 +170746962324,220,0 +170746962372,221,0 +170746962420,222,0 +170746962468,223,0 +170746962516,224,0 +170746962564,224,0 +170746962612,226,0 +170746962661,226,0 +170746962711,226,0 +170746962760,227,0 +170746962808,227,0 +170746962856,229,0 +170746962904,228,0 +170746962952,227,0 +170746963000,228,0 +170746963050,226,0 +170746963099,222,0 +170746963149,223,0 +170746963197,225,0 +170746963245,221,0 +170746963294,227,0 +170746963342,229,0 +170746963390,229,0 +170746963439,230,0 +170746963487,229,0 +170746963535,228,0 +170746963583,228,0 +170746963631,228,0 +170746963679,227,0 +170746963728,228,0 +170746963778,227,0 +170746963826,227,0 +170746963875,227,0 +170746963925,225,0 +170746963973,225,0 +170746964021,224,0 +170746964069,229,0 +170746964118,227,0 +170746964166,229,0 +170746964216,226,0 +170746964264,228,0 +170746964313,228,0 +170746964363,227,0 +170746964411,230,0 +170746964459,228,0 +170746964507,229,0 +170746964554,230,0 +170746964604,229,0 +170746964654,229,0 +170746964701,226,0 +170746964749,226,0 +170746964799,217,0 +170746964848,219,0 +170746964898,220,0 +170746964946,222,0 +170746964994,223,0 +170746965043,225,0 +170746965091,224,0 +170746965141,228,0 +170746965190,224,0 +170746965238,227,0 +170746965288,228,0 +170746965336,228,0 +170746965385,229,0 +170746965435,230,0 +170746965483,229,0 +170746965531,228,0 +170746965579,227,0 +170746965628,218,0 +170746965678,216,0 +170746965726,218,0 +170746965775,219,0 +170746965823,222,0 +170746965873,221,0 +170746965921,223,0 +170746965969,223,0 +170746966017,226,0 +170746966065,226,0 +170746966113,226,0 +170746966161,227,0 +170746966209,226,0 +170746966257,228,0 +170746966306,230,0 +170746966354,227,0 +170746966402,227,0 +170746966450,227,0 +170746966500,217,0 +170746966549,217,0 +170746966599,220,0 +170746966647,220,0 +170746966696,221,0 +170746966746,222,0 +170746966794,223,0 +170746966842,225,0 +170746966891,224,0 +170746966939,226,0 +170746966987,226,0 +170746967037,227,0 +170746967085,227,0 +170746967134,229,0 +170746967184,231,0 +170746967233,227,0 +170746967283,226,0 +170746967332,219,0 +170746967382,219,0 +170746967431,219,0 +170746967479,221,0 +170746967527,222,0 +170746967577,225,0 +170746967625,227,0 +170746967674,229,0 +170746967722,226,0 +170746967772,225,0 +170746967820,227,0 +170746967869,228,0 +170746967917,228,0 +170746967967,228,0 +170746968015,229,0 +170746968063,229,0 +170746968111,228,0 +170746968160,228,0 +170746968208,221,0 +170746968256,221,0 +170746968305,219,0 +170746968355,223,0 +170746968403,224,0 +170746968451,225,0 +170746968499,225,0 +170746968549,227,0 +170746968596,226,0 +170746968646,228,0 +170746968694,229,0 +170746968744,229,0 +170746968791,228,0 +170746968839,228,0 +170746968887,228,0 +170746968937,227,0 +170746968986,227,0 +170746969034,221,0 +170746969082,221,0 +170746969130,225,0 +170746969178,224,0 +170746969226,224,0 +170746969275,224,0 +170746969323,229,0 +170746969371,226,0 +170746969421,225,0 +170746969470,227,0 +170746969518,228,0 +170746969566,227,0 +170746969616,229,0 +170746969665,230,0 +170746969713,229,0 +170746969761,227,0 +170746969811,227,0 +170746969860,227,0 +170746969908,221,0 +170746969957,221,0 +170746970005,222,0 +170746970053,224,0 +170746970103,223,0 +170746970151,224,0 +170746970199,225,0 +170746970248,228,0 +170746970298,228,0 +170746970346,227,0 +170746970395,228,0 +170746970445,229,0 +170746970494,228,0 +170746970542,228,0 +170746970592,228,0 +170746970640,228,0 +170746970689,228,0 +170746970737,224,0 +170746970785,219,0 +170746970835,218,0 +170746970884,221,0 +170746970932,223,0 +170746970980,227,0 +170746971030,224,0 +170746971078,226,0 +170746971126,227,0 +170746971173,227,0 +170746971223,226,0 +170746971272,229,0 +170746971320,228,0 +170746971370,227,0 +170746971418,228,0 +170746971467,229,0 +170746971515,229,0 +170746971563,226,0 +170746971612,219,0 +170746971662,217,0 +170746971711,219,0 +170746971759,221,0 +170746971807,223,0 +170746971855,222,0 +170746971903,225,0 +170746971953,225,0 +170746972002,227,0 +170746972052,226,0 +170746972101,229,0 +170746972149,228,0 +170746972197,229,0 +170746972245,230,0 +170746972293,228,0 +170746972341,229,0 +170746972391,229,0 +170746972438,228,0 +170746972486,216,0 +170746972534,216,0 +170746972582,218,0 +170746972632,219,0 +170746972680,221,0 +170746972728,221,0 +170746972776,220,0 +170746972824,222,0 +170746972873,223,0 +170746972923,225,0 +170746972971,227,0 +170746973020,226,0 +170746973068,226,0 +170746973116,227,0 +170746973166,226,0 +170746973214,227,0 +170746973262,228,0 +170746973309,216,0 +170746973357,216,0 +170746973407,218,0 +170746973455,219,0 +170746973503,220,0 +170746973551,221,0 +170746973600,221,0 +170746973648,222,0 +170746973698,224,0 +170746973746,225,0 +170746973795,227,0 +170746973845,230,0 +170746973893,228,0 +170746973942,229,0 +170746973992,229,0 +170746974041,228,0 +170746974091,227,0 +170746974140,226,0 +170746974190,216,0 +170746974238,217,0 +170746974286,219,0 +170746974335,221,0 +170746974385,220,0 +170746974434,221,0 +170746974482,222,0 +170746974530,225,0 +170746974580,224,0 +170746974628,223,0 +170746974676,226,0 +170746974725,228,0 +170746974775,230,0 +170746974823,228,0 +170746974873,230,0 +170746974920,227,0 +170746974968,226,0 +170746975018,217,0 +170746975067,217,0 +170746975115,219,0 +170746975165,218,0 +170746975213,219,0 +170746975262,221,0 +170746975310,222,0 +170746975360,222,0 +170746975409,221,0 +170746975457,219,0 +170746975507,225,0 +170746975556,227,0 +170746975606,228,0 +170746975654,229,0 +170746975702,227,0 +170746975750,227,0 +170746975799,228,0 +170746975847,227,0 +170746975897,217,0 +170746975945,218,0 +170746975993,220,0 +170746976042,221,0 +170746976090,222,0 +170746976140,222,0 +170746976189,226,0 +170746976237,223,0 +170746976287,224,0 +170746976335,225,0 +170746976383,225,0 +170746976432,229,0 +170746976480,227,0 +170746976528,228,0 +170746976576,227,0 +170746976626,227,0 +170746976674,227,0 +170746976723,216,0 +170746976771,217,0 +170746976819,220,0 +170746976867,222,0 +170746976916,222,0 +170746976966,224,0 +170746977015,225,0 +170746977065,224,0 +170746977115,226,0 +170746977163,226,0 +170746977212,228,0 +170746977260,229,0 +170746977308,228,0 +170746977358,228,0 +170746977406,228,0 +170746977453,227,0 +170746977503,228,0 +170746977551,226,0 +170746977601,224,0 +170746977650,223,0 +170746977699,223,0 +170746977747,225,0 +170746977797,226,0 +170746977845,228,0 +170746977894,231,0 +170746977942,228,0 +170746977992,227,0 +170746978041,227,0 +170746978089,228,0 +170746978139,229,0 +170746978188,228,0 +170746978236,226,0 +170746978284,227,0 +170746978332,227,0 +170746978380,227,0 +170746978428,226,0 +170746978476,229,0 +170746978524,231,0 +170746978572,228,0 +170746978620,228,0 +170746978668,229,0 +170746978716,228,0 +170746978765,229,0 +170746978813,230,0 +170746978861,229,0 +170746978909,229,0 +170746978957,227,0 +170746979007,229,0 +170746979056,228,0 +170746979104,229,0 +170746979154,228,0 +170746979202,225,0 +170746979251,226,0 +170746979301,225,0 +170746979350,226,0 +170746979400,226,0 +170746979448,231,0 +170746979496,228,0 +170746979545,230,0 +170746979593,227,0 +170746979643,230,0 +170746979691,228,0 +170746979740,228,0 +170746979788,228,0 +170746979838,229,0 +170746979886,229,0 +170746979934,229,0 +170746979982,228,0 +170746980031,228,0 +170746980081,224,0 +170746980129,223,0 +170746980176,221,0 +170746980226,222,0 +170746980276,225,0 +170746980325,223,0 +170746980375,224,0 +170746980423,225,0 +170746980471,228,0 +170746980519,237,0 +170746980568,228,0 +170746980616,227,0 +170746980664,230,0 +170746980712,230,0 +170746980760,229,0 +170746980808,229,0 +170746980856,229,0 +170746980905,228,0 +170746980953,228,0 +170746981001,221,0 +170746981049,220,0 +170746981099,221,0 +170746981148,223,0 +170746981198,224,0 +170746981247,225,0 +170746981297,225,0 +170746981346,228,0 +170746981396,228,0 +170746981444,227,0 +170746981492,229,0 +170746981540,228,0 +170746981589,228,0 +170746981639,230,0 +170746981687,228,0 +170746981736,228,0 +170746981786,227,0 +170746981834,220,0 +170746981883,221,0 +170746981933,222,0 +170746981982,223,0 +170746982030,224,0 +170746982080,225,0 +170746982130,226,0 +170746982179,227,0 +170746982229,229,0 +170746982278,229,0 +170746982326,231,0 +170746982376,229,0 +170746982424,229,0 +170746982472,230,0 +170746982521,229,0 +170746982571,229,0 +170746982619,229,0 +170746982668,228,0 +170746982716,220,0 +170746982766,221,0 +170746982815,221,0 +170746982865,223,0 +170746982914,225,0 +170746982962,225,0 +170746983010,225,0 +170746983060,228,0 +170746983108,229,0 +170746983156,228,0 +170746983204,227,0 +170746983252,228,0 +170746983299,230,0 +170746983347,228,0 +170746983397,222,0 +170746983445,227,0 +170746983493,228,0 +170746983542,226,0 +170746983592,220,0 +170746983642,221,0 +170746983691,222,0 +170746983741,223,0 +170746983789,225,0 +170746983838,224,0 +170746983888,226,0 +170746983937,227,0 +170746983987,229,0 +170746984036,229,0 +170746984084,229,0 +170746984132,228,0 +170746984182,228,0 +170746984231,229,0 +170746984279,228,0 +170746984329,228,0 +170746984377,227,0 +170746984426,219,0 +170746984476,221,0 +170746984524,221,0 +170746984572,222,0 +170746984621,224,0 +170746984671,224,0 +170746984720,225,0 +170746984770,226,0 +170746984819,227,0 +170746984867,228,0 +170746984915,230,0 +170746984963,229,0 +170746985011,230,0 +170746985061,233,0 +170746985110,231,0 +170746985160,228,0 +170746985209,226,0 +170746985259,216,0 +170746985307,216,0 +170746985355,219,0 +170746985403,220,0 +170746985451,222,0 +170746985500,224,0 +170746985550,224,0 +170746985600,224,0 +170746985648,228,0 +170746985696,227,0 +170746985743,227,0 +170746985791,231,0 +170746985839,229,0 +170746985887,228,0 +170746985937,228,0 +170746985986,227,0 +170746986034,228,0 +170746986084,227,0 +170746986133,215,0 +170746986183,217,0 +170746986232,219,0 +170746986280,222,0 +170746986330,220,0 +170746986378,221,0 +170746986426,225,0 +170746986474,226,0 +170746986523,226,0 +170746986573,227,0 +170746986621,230,0 +170746986669,229,0 +170746986717,232,0 +170746986766,231,0 +170746986816,228,0 +170746986865,229,0 +170746986915,229,0 +170746986964,227,0 +170746987012,216,0 +170746987060,218,0 +170746987110,218,0 +170746987159,220,0 +170746987209,219,0 +170746987256,221,0 +170746987306,222,0 +170746987356,223,0 +170746987405,226,0 +170746987455,225,0 +170746987503,228,0 +170746987552,227,0 +170746987602,227,0 +170746987651,227,0 +170746987699,228,0 +170746987747,228,0 +170746987796,227,0 +170746987844,217,0 +170746987892,217,0 +170746987940,218,0 +170746987990,219,0 +170746988039,221,0 +170746988087,223,0 +170746988135,222,0 +170746988183,223,0 +170746988233,225,0 +170746988280,225,0 +170746988328,227,0 +170746988376,227,0 +170746988426,227,0 +170746988474,228,0 +170746988522,228,0 +170746988570,228,0 +170746988618,227,0 +170746988667,226,0 +170746988715,216,0 +170746988765,216,0 +170746988813,215,0 +170746988861,218,0 +170746988910,219,0 +170746988960,220,0 +170746989009,222,0 +170746989059,223,0 +170746989107,223,0 +170746989155,224,0 +170746989203,228,0 +170746989251,226,0 +170746989300,229,0 +170746989348,230,0 +170746989398,229,0 +170746989446,228,0 +170746989495,227,0 +170746989545,217,0 +170746989594,215,0 +170746989642,216,0 +170746989690,215,0 +170746989738,214,0 +170746989786,218,0 +170746989834,219,0 +170746989884,220,0 +170746989933,221,0 +170746989981,218,0 +170746990029,223,0 +170746990079,223,0 +170746990127,225,0 +170746990175,227,0 +170746990223,227,0 +170746990272,227,0 +170746990320,226,0 +170746990370,228,0 +170746990418,216,0 +170746990466,217,0 +170746990515,216,0 +170746990565,218,0 +170746990613,220,0 +170746990661,219,0 +170746990710,221,0 +170746990758,222,0 +170746990806,223,0 +170746990854,226,0 +170746990904,225,0 +170746990953,225,0 +170746991001,225,0 +170746991049,227,0 +170746991097,228,0 +170746991147,227,0 +170746991196,226,0 +170746991246,217,0 +170746991295,216,0 +170746991345,217,0 +170746991393,217,0 +170746991441,216,0 +170746991489,217,0 +170746991537,218,0 +170746991586,220,0 +170746991634,218,0 +170746991684,224,0 +170746991733,224,0 +170746991781,224,0 +170746991829,224,0 +170746991879,226,0 +170746991927,226,0 +170746991976,227,0 +170746992024,226,0 +170746992074,226,0 +170746992123,220,0 +170746992171,220,0 +170746992219,222,0 +170746992267,223,0 +170746992317,225,0 +170746992366,225,0 +170746992416,225,0 +170746992465,227,0 +170746992513,228,0 +170746992561,228,0 +170746992609,227,0 +170746992658,228,0 +170746992706,227,0 +170746992756,226,0 +170746992804,228,0 +170746992852,228,0 +170746992900,227,0 +170746992949,226,0 +170746992997,228,0 +170746993045,227,0 +170746993095,228,0 +170746993144,229,0 +170746993192,227,0 +170746993242,227,0 +170746993290,228,0 +170746993338,228,0 +170746993387,228,0 +170746993437,228,0 +170746993485,229,0 +170746993533,228,0 +170746993583,227,0 +170746993632,228,0 +170746993680,228,0 +170746993728,229,0 +170746993778,229,0 +170746993827,227,0 +170746993875,229,0 +170746993925,227,0 +170746993973,227,0 +170746994022,229,0 +170746994070,231,0 +170746994120,230,0 +170746994168,229,0 +170746994217,229,0 +170746994265,229,0 +170746994315,227,0 +170746994363,227,0 +170746994411,227,0 +170746994458,228,0 +170746994506,225,0 +170746994556,227,0 +170746994604,226,0 +170746994652,226,0 +170746994702,226,0 +170746994750,224,0 +170746994799,228,0 +170746994849,226,0 +170746994898,227,0 +170746994946,228,0 +170746994994,228,0 +170746995042,226,0 +170746995091,228,0 +170746995139,229,0 +170746995189,227,0 +170746995237,228,0 +170746995286,228,0 +170746995336,228,0 +170746995384,229,0 +170746995432,226,0 +170746995481,226,0 +170746995529,223,0 +170746995577,223,0 +170746995625,222,0 +170746995675,225,0 +170746995724,225,0 +170746995774,226,0 +170746995824,226,0 +170746995873,227,0 +170746995921,230,0 +170746995969,231,0 +170746996017,227,0 +170746996065,234,0 +170746996114,229,0 +170746996164,229,0 +170746996213,227,0 +170746996261,227,0 +170746996309,227,0 +170746996359,226,0 +170746996407,219,0 +170746996455,222,0 +170746996504,223,0 +170746996552,224,0 +170746996602,224,0 +170746996651,226,0 +170746996699,226,0 +170746996747,230,0 +170746996797,227,0 +170746996845,227,0 +170746996894,231,0 +170746996942,229,0 +170746996990,228,0 +170746997038,229,0 +170746997086,227,0 +170746997134,232,0 +170746997182,227,0 +170746997231,222,0 +170746997279,221,0 +170746997329,221,0 +170746997378,221,0 +170746997426,224,0 +170746997474,225,0 +170746997522,226,0 +170746997570,229,0 +170746997618,229,0 +170746997666,229,0 +170746997714,228,0 +170746997764,228,0 +170746997812,228,0 +170746997860,228,0 +170746997909,229,0 +170746997959,230,0 +170746998007,227,0 +170746998056,227,0 +170746998104,218,0 +170746998154,218,0 +170746998203,218,0 +170746998251,217,0 +170746998301,222,0 +170746998350,222,0 +170746998398,225,0 +170746998448,224,0 +170746998497,226,0 +170746998545,227,0 +170746998595,227,0 +170746998644,229,0 +170746998694,227,0 +170746998743,228,0 +170746998791,228,0 +170746998839,228,0 +170746998889,227,0 +170746998938,218,0 +170746998986,215,0 +170746999034,218,0 +170746999082,218,0 +170746999130,220,0 +170746999178,222,0 +170746999226,223,0 +170746999274,224,0 +170746999324,225,0 +170746999371,226,0 +170746999419,227,0 +170746999467,230,0 +170746999515,227,0 +170746999563,230,0 +170746999613,231,0 +170746999661,228,0 +170746999710,229,0 +170746999758,234,0 +170746999806,217,0 +170746999854,215,0 +170746999904,216,0 +170746999951,218,0 +170746999999,219,0 +170747000047,220,0 +170747000095,222,0 +170747000145,222,0 +170747000194,223,0 +170747000242,226,0 +170747000290,228,0 +170747000338,226,0 +170747000386,228,0 +170747000434,228,0 +170747000484,238,0 +170747000533,229,0 +170747000581,227,0 +170747000630,227,0 +170747000680,216,0 +170747000728,217,0 +170747000776,218,0 +170747000824,221,0 +170747000871,217,0 +170747000921,222,0 +170747000970,223,0 +170747001018,223,0 +170747001068,226,0 +170747001115,225,0 +170747001163,226,0 +170747001211,228,0 +170747001259,229,0 +170747001307,227,0 +170747001356,228,0 +170747001404,227,0 +170747001454,230,0 +170747001502,218,0 +170747001551,216,0 +170747001599,218,0 +170747001647,219,0 +170747001695,220,0 +170747001743,222,0 +170747001792,223,0 +170747001840,223,0 +170747001890,226,0 +170747001939,227,0 +170747001987,228,0 +170747002037,227,0 +170747002086,228,0 +170747002134,229,0 +170747002184,229,0 +170747002233,228,0 +170747002281,229,0 +170747002331,226,0 +170747002380,217,0 +170747002428,217,0 +170747002476,218,0 +170747002525,221,0 +170747002573,223,0 +170747002621,224,0 +170747002669,223,0 +170747002717,225,0 +170747002767,225,0 +170747002815,227,0 +170747002863,228,0 +170747002911,227,0 +170747002959,228,0 +170747003008,227,0 +170747003058,225,0 +170747003106,227,0 +170747003155,227,0 +170747003205,217,0 +170747003254,216,0 +170747003304,218,0 +170747003352,219,0 +170747003399,218,0 +170747003447,218,0 +170747003495,221,0 +170747003543,223,0 +170747003593,223,0 +170747003641,224,0 +170747003688,227,0 +170747003736,229,0 +170747003784,227,0 +170747003832,234,0 +170747003882,228,0 +170747003929,228,0 +170747003977,227,0 +170747004027,228,0 +170747004075,216,0 +170747004124,216,0 +170747004172,218,0 +170747004220,219,0 +170747004268,221,0 +170747004316,223,0 +170747004364,221,0 +170747004412,224,0 +170747004459,223,0 +170747004507,223,0 +170747004557,227,0 +170747004605,226,0 +170747004652,229,0 +170747004703,227,0 +170747004752,227,0 +170747004800,228,0 +170747004848,228,0 +170747004897,227,0 +170747004945,214,0 +170747004995,214,0 +170747005044,219,0 +170747005092,221,0 +170747005140,220,0 +170747005189,222,0 +170747005237,222,0 +170747005285,225,0 +170747005333,225,0 +170747005381,226,0 +170747005429,227,0 +170747005478,227,0 +170747005526,227,0 +170747005574,227,0 +170747005622,228,0 +170747005670,228,0 +170747005719,227,0 +170747005767,223,0 +170747005815,217,0 +170747005863,218,0 +170747005911,220,0 +170747005960,222,0 +170747006010,223,0 +170747006058,224,0 +170747006106,226,0 +170747006155,225,0 +170747006205,225,0 +170747006254,226,0 +170747006302,231,0 +170747006352,230,0 +170747006400,227,0 +170747006448,228,0 +170747006495,228,0 +170747006543,226,0 +170747006593,226,0 +170747006643,217,0 +170747006691,219,0 +170747006738,222,0 +170747006788,222,0 +170747006838,222,0 +170747006885,223,0 +170747006934,224,0 +170747006983,226,0 +170747007031,226,0 +170747007080,227,0 +170747007130,229,0 +170747007180,227,0 +170747007228,227,0 +170747007277,228,0 +170747007327,228,0 +170747007376,228,0 +170747007426,227,0 +170747007474,226,0 +170747007522,225,0 +170747007570,226,0 +170747007619,226,0 +170747007669,227,0 +170747007717,228,0 +170747007766,227,0 +170747007816,227,0 +170747007865,228,0 +170747007915,227,0 +170747007964,227,0 +170747008014,228,0 +170747008062,227,0 +170747008112,228,0 +170747008160,228,0 +170747008207,228,0 +170747008255,228,0 +170747008303,225,0 +170747008351,227,0 +170747008399,228,0 +170747008449,228,0 +170747008498,231,0 +170747008546,231,0 +170747008594,228,0 +170747008644,229,0 +170747008693,232,0 +170747008741,229,0 +170747008789,230,0 +170747008839,228,0 +170747008888,228,0 +170747008936,229,0 +170747008986,228,0 +170747009034,228,0 +170747009083,230,0 +170747009133,229,0 +170747009181,220,0 +170747009231,223,0 +170747009278,226,0 +170747009328,225,0 +170747009377,224,0 +170747009425,226,0 +170747009473,225,0 +170747009521,229,0 +170747009569,227,0 +170747009617,228,0 +170747009666,229,0 +170747009714,230,0 +170747009762,229,0 +170747009811,229,0 +170747009859,228,0 +170747009907,229,0 +170747009957,227,0 +170747010005,224,0 +170747010054,218,0 +170747010102,217,0 +170747010150,219,0 +170747010198,221,0 +170747010246,222,0 +170747010294,229,0 +170747010341,225,0 +170747010391,226,0 +170747010439,226,0 +170747010487,227,0 +170747010534,227,0 +170747010582,228,0 +170747010630,230,0 +170747010680,233,0 +170747010728,229,0 +170747010776,228,0 +170747010823,227,0 +170747010871,227,0 +170747010919,217,0 +170747010967,219,0 +170747011017,220,0 +170747011066,220,0 +170747011114,222,0 +170747011162,224,0 +170747011210,223,0 +170747011259,224,0 +170747011309,226,0 +170747011358,226,0 +170747011406,227,0 +170747011454,227,0 +170747011502,228,0 +170747011550,229,0 +170747011598,232,0 +170747011647,230,0 +170747011695,228,0 +170747011743,220,0 +170747011791,216,0 +170747011839,217,0 +170747011887,219,0 +170747011936,219,0 +170747011986,220,0 +170747012034,224,0 +170747012082,223,0 +170747012129,224,0 +170747012179,224,0 +170747012227,226,0 +170747012275,228,0 +170747012324,227,0 +170747012374,227,0 +170747012422,229,0 +170747012471,229,0 +170747012519,229,0 +170747012567,227,0 +170747012616,217,0 +170747012664,217,0 +170747012712,218,0 +170747012760,220,0 +170747012810,221,0 +170747012857,223,0 +170747012905,223,0 +170747012953,224,0 +170747013001,224,0 +170747013049,225,0 +170747013097,226,0 +170747013146,227,0 +170747013196,228,0 +170747013244,227,0 +170747013292,231,0 +170747013340,228,0 +170747013387,227,0 +170747013435,227,0 +170747013483,216,0 +170747013533,217,0 +170747013581,220,0 +170747013630,220,0 +170747013678,221,0 +170747013726,222,0 +170747013774,222,0 +170747013822,224,0 +170747013870,224,0 +170747013917,228,0 +170747013967,226,0 +170747014015,229,0 +170747014064,230,0 +170747014114,228,0 +170747014163,229,0 +170747014213,228,0 +170747014262,222,0 +170747014310,220,0 +170747014358,220,0 +170747014406,221,0 +170747014454,222,0 +170747014502,220,0 +170747014552,223,0 +170747014601,225,0 +170747014649,225,0 +170747014699,227,0 +170747014746,228,0 +170747014794,230,0 +170747014844,228,0 +170747014892,227,0 +170747014939,229,0 +170747014989,226,0 +170747015037,224,0 +170747015087,227,0 +170747015136,227,0 +170747015184,218,0 +170747015232,218,0 +170747015280,220,0 +170747015329,222,0 +170747015379,222,0 +170747015427,223,0 +170747015476,225,0 +170747015526,226,0 +170747015574,228,0 +170747015622,227,0 +170747015671,228,0 +170747015719,229,0 +170747015769,228,0 +170747015818,231,0 +170747015866,229,0 +170747015914,227,0 +170747015962,227,0 +170747016010,224,0 +170747016058,219,0 +170747016106,220,0 +170747016154,221,0 +170747016204,221,0 +170747016253,222,0 +170747016301,224,0 +170747016349,224,0 +170747016397,227,0 +170747016446,226,0 +170747016496,227,0 +170747016545,226,0 +170747016593,229,0 +170747016641,227,0 +170747016689,229,0 +170747016737,228,0 +170747016786,227,0 +170747016834,227,0 +170747016882,221,0 +170747016930,220,0 +170747016978,221,0 +170747017026,222,0 +170747017074,226,0 +170747017121,225,0 +170747017169,226,0 +170747017219,225,0 +170747017267,226,0 +170747017316,228,0 +170747017364,229,0 +170747017412,227,0 +170747017460,228,0 +170747017508,228,0 +170747017556,228,0 +170747017605,229,0 +170747017653,227,0 +170747017701,228,0 +170747017749,222,0 +170747017797,222,0 +170747017845,222,0 +170747017894,223,0 +170747017942,224,0 +170747017991,225,0 +170747018039,227,0 +170747018087,227,0 +170747018137,228,0 +170747018185,227,0 +170747018233,228,0 +170747018280,228,0 +170747018328,228,0 +170747018376,228,0 +170747018424,229,0 +170747018473,228,0 +170747018523,228,0 +170747018572,225,0 +170747018622,220,0 +170747018671,221,0 +170747018719,222,0 +170747018767,222,0 +170747018817,223,0 +170747018865,227,0 +170747018913,228,0 +170747018961,227,0 +170747019009,227,0 +170747019058,229,0 +170747019108,230,0 +170747019156,229,0 +170747019205,229,0 +170747019255,228,0 +170747019303,225,0 +170747019351,228,0 +170747019400,228,0 +170747019450,218,0 +170747019499,220,0 +170747019547,221,0 +170747019595,221,0 +170747019643,224,0 +170747019693,224,0 +170747019741,223,0 +170747019789,225,0 +170747019837,227,0 +170747019884,228,0 +170747019932,227,0 +170747019982,226,0 +170747020030,228,0 +170747020080,228,0 +170747020129,228,0 +170747020177,229,0 +170747020226,228,0 +170747020276,226,0 +170747020326,217,0 +170747020375,218,0 +170747020425,220,0 +170747020473,220,0 +170747020522,220,0 +170747020570,224,0 +170747020620,223,0 +170747020668,225,0 +170747020717,223,0 +170747020767,225,0 +170747020816,225,0 +170747020866,227,0 +170747020914,227,0 +170747020963,228,0 +170747021011,227,0 +170747021061,229,0 +170747021110,226,0 +170747021158,217,0 +170747021206,215,0 +170747021256,218,0 +170747021305,218,0 +170747021355,222,0 +170747021403,222,0 +170747021451,222,0 +170747021498,224,0 +170747021546,225,0 +170747021596,225,0 +170747021644,225,0 +170747021694,226,0 +170747021743,227,0 +170747021793,228,0 +170747021840,227,0 +170747021890,227,0 +170747021938,227,0 +170747021987,226,0 +170747022035,221,0 +170747022083,222,0 +170747022131,223,0 +170747022179,224,0 +170747022227,226,0 +170747022275,226,0 +170747022323,227,0 +170747022370,227,0 +170747022418,227,0 +170747022466,228,0 +170747022516,228,0 +170747022564,228,0 +170747022613,227,0 +170747022661,227,0 +170747022709,229,0 +170747022758,227,0 +170747022806,228,0 +170747022856,222,0 +170747022904,225,0 +170747022951,227,0 +170747022999,229,0 +170747023047,230,0 +170747023095,230,0 +170747023143,230,0 +170747023191,229,0 +170747023239,227,0 +170747023288,228,0 +170747023336,229,0 +170747023384,227,0 +170747023434,228,0 +170747023482,228,0 +170747023532,228,0 +170747023579,226,0 +170747023627,227,0 +170747023675,227,0 +170747023725,225,0 +170747023775,225,0 +170747023824,227,0 +170747023872,226,0 +170747023922,226,0 +170747023971,227,0 +170747024021,229,0 +170747024070,230,0 +170747024119,231,0 +170747024168,229,0 +170747024215,228,0 +170747024265,227,0 +170747024315,228,0 +170747024364,229,0 +170747024414,230,0 +170747024462,227,0 +170747024510,228,0 +170747024558,227,0 +170747024607,220,0 +170747024655,220,0 +170747024703,222,0 +170747024751,223,0 +170747024799,222,0 +170747024848,225,0 +170747024896,226,0 +170747024944,226,0 +170747024993,225,0 +170747025041,228,0 +170747025089,228,0 +170747025139,227,0 +170747025188,228,0 +170747025236,228,0 +170747025284,229,0 +170747025332,227,0 +170747025380,227,0 +170747025428,217,0 +170747025478,217,0 +170747025526,219,0 +170747025574,221,0 +170747025623,223,0 +170747025671,223,0 +170747025719,224,0 +170747025768,225,0 +170747025816,226,0 +170747025864,226,0 +170747025914,228,0 +170747025962,227,0 +170747026011,228,0 +170747026061,231,0 +170747026110,231,0 +170747026158,229,0 +170747026206,235,0 +170747026254,227,0 +170747026304,217,0 +170747026353,218,0 +170747026403,221,0 +170747026452,221,0 +170747026502,222,0 +170747026550,224,0 +170747026598,224,0 +170747026647,225,0 +170747026695,229,0 +170747026745,227,0 +170747026795,228,0 +170747026844,228,0 +170747026894,228,0 +170747026942,229,0 +170747026990,229,0 +170747027037,228,0 +170747027087,227,0 +170747027137,217,0 +170747027185,217,0 +170747027234,219,0 +170747027284,219,0 +170747027332,221,0 +170747027379,223,0 +170747027427,224,0 +170747027477,224,0 +170747027525,226,0 +170747027575,226,0 +170747027624,229,0 +170747027672,227,0 +170747027720,229,0 +170747027768,230,0 +170747027818,227,0 +170747027866,229,0 +170747027914,229,0 +170747027963,227,0 +170747028011,217,0 +170747028061,218,0 +170747028110,220,0 +170747028158,220,0 +170747028208,220,0 +170747028256,223,0 +170747028304,223,0 +170747028352,226,0 +170747028401,225,0 +170747028451,230,0 +170747028500,229,0 +170747028550,225,0 +170747028599,231,0 +170747028649,229,0 +170747028698,229,0 +170747028746,228,0 +170747028796,228,0 +170747028844,217,0 +170747028893,218,0 +170747028941,219,0 +170747028991,220,0 +170747029040,221,0 +170747029090,222,0 +170747029138,223,0 +170747029187,225,0 +170747029237,224,0 +170747029285,225,0 +170747029334,228,0 +170747029384,226,0 +170747029433,229,0 +170747029481,227,0 +170747029529,228,0 +170747029579,227,0 +170747029628,230,0 +170747029676,227,0 +170747029724,219,0 +170747029772,220,0 +170747029820,223,0 +170747029868,223,0 +170747029916,222,0 +170747029966,225,0 +170747030014,225,0 +170747030063,226,0 +170747030111,224,0 +170747030159,230,0 +170747030207,229,0 +170747030255,230,0 +170747030303,226,0 +170747030351,231,0 +170747030399,229,0 +170747030448,228,0 +170747030496,228,0 +170747030544,226,0 +170747030592,220,0 +170747030640,220,0 +170747030688,223,0 +170747030736,223,0 +170747030785,224,0 +170747030835,225,0 +170747030884,226,0 +170747030934,225,0 +170747030983,226,0 +170747031031,230,0 +170747031081,227,0 +170747031129,228,0 +170747031177,227,0 +170747031225,228,0 +170747031274,228,0 +170747031322,227,0 +170747031370,227,0 +170747031418,219,0 +170747031466,219,0 +170747031515,220,0 +170747031563,221,0 +170747031613,223,0 +170747031662,222,0 +170747031710,224,0 +170747031760,227,0 +170747031808,226,0 +170747031856,229,0 +170747031905,226,0 +170747031953,229,0 +170747032001,230,0 +170747032049,227,0 +170747032097,228,0 +170747032145,230,0 +170747032193,228,0 +170747032242,226,0 +170747032290,218,0 +170747032340,219,0 +170747032389,220,0 +170747032439,221,0 +170747032487,223,0 +170747032537,224,0 +170747032584,225,0 +170747032634,227,0 +170747032682,226,0 +170747032730,227,0 +170747032778,229,0 +170747032825,227,0 +170747032873,228,0 +170747032923,228,0 +170747032971,228,0 +170747033020,227,0 +170747033068,227,0 +170747033116,217,0 +170747033166,218,0 +170747033215,218,0 +170747033265,223,0 +170747033314,222,0 +170747033362,223,0 +170747033410,223,0 +170747033460,225,0 +170747033509,225,0 +170747033557,226,0 +170747033605,227,0 +170747033655,227,0 +170747033703,227,0 +170747033751,228,0 +170747033799,228,0 +170747033847,228,0 +170747033895,228,0 +170747033944,227,0 +170747033994,219,0 +170747034043,218,0 +170747034091,219,0 +170747034139,220,0 +170747034189,223,0 +170747034238,224,0 +170747034286,224,0 +170747034336,225,0 +170747034385,226,0 +170747034433,226,0 +170747034483,227,0 +170747034532,228,0 +170747034582,228,0 +170747034631,228,0 +170747034679,228,0 +170747034729,230,0 +170747034777,227,0 +170747034825,226,0 +170747034874,217,0 +170747034924,219,0 +170747034973,220,0 +170747035023,222,0 +170747035071,222,0 +170747035119,223,0 +170747035168,226,0 +170747035216,225,0 +170747035266,226,0 +170747035314,227,0 +170747035363,227,0 +170747035411,223,0 +170747035459,228,0 +170747035507,227,0 +170747035557,228,0 +170747035605,229,0 +170747035653,227,0 +170747035702,217,0 +170747035752,216,0 +170747035801,220,0 +170747035851,219,0 +170747035901,221,0 +170747035950,222,0 +170747035998,225,0 +170747036046,223,0 +170747036096,225,0 +170747036144,226,0 +170747036191,222,0 +170747036241,226,0 +170747036289,227,0 +170747036339,227,0 +170747036388,228,0 +170747036438,226,0 +170747036485,228,0 +170747036533,225,0 +170747036583,218,0 +170747036631,218,0 +170747036680,224,0 +170747036728,222,0 +170747036778,222,0 +170747036826,224,0 +170747036875,225,0 +170747036923,225,0 +170747036971,226,0 +170747037019,227,0 +170747037067,231,0 +170747037115,227,0 +170747037163,228,0 +170747037213,229,0 +170747037262,229,0 +170747037312,228,0 +170747037361,226,0 +170747037411,223,0 +170747037460,224,0 +170747037510,217,0 +170747037559,226,0 +170747037607,226,0 +170747037655,229,0 +170747037705,226,0 +170747037753,227,0 +170747037801,227,0 +170747037850,228,0 +170747037900,229,0 +170747037948,228,0 +170747037997,227,0 +170747038047,227,0 +170747038095,227,0 +170747038143,228,0 +170747038191,228,0 +170747038240,226,0 +170747038290,229,0 +170747038338,228,0 +170747038386,227,0 +170747038435,229,0 +170747038485,230,0 +170747038533,228,0 +170747038581,229,0 +170747038629,227,0 +170747038678,229,0 +170747038726,227,0 +170747038774,228,0 +170747038822,228,0 +170747038870,228,0 +170747038920,227,0 +170747038968,226,0 +170747039016,227,0 +170747039064,226,0 +170747039113,221,0 +170747039163,222,0 +170747039212,225,0 +170747039262,224,0 +170747039310,226,0 +170747039359,230,0 +170747039409,225,0 +170747039458,227,0 +170747039508,228,0 +170747039557,226,0 +170747039605,228,0 +170747039653,231,0 +170747039703,229,0 +170747039752,227,0 +170747039802,226,0 +170747039850,229,0 +170747039899,227,0 +170747039949,226,0 +170747039998,219,0 +170747040046,219,0 +170747040096,221,0 +170747040144,222,0 +170747040192,220,0 +170747040240,226,0 +170747040288,221,0 +170747040337,226,0 +170747040387,225,0 +170747040435,226,0 +170747040484,229,0 +170747040534,226,0 +170747040583,228,0 +170747040631,229,0 +170747040679,232,0 +170747040727,229,0 +170747040777,228,0 +170747040827,221,0 +170747040876,220,0 +170747040926,221,0 +170747040975,223,0 +170747041025,223,0 +170747041074,224,0 +170747041124,226,0 +170747041173,225,0 +170747041221,225,0 +170747041269,229,0 +170747041317,228,0 +170747041367,229,0 +170747041415,229,0 +170747041463,228,0 +170747041511,228,0 +170747041559,227,0 +170747041607,229,0 +170747041655,227,0 +170747041704,222,0 +170747041754,222,0 +170747041803,222,0 +170747041851,227,0 +170747041901,225,0 +170747041949,226,0 +170747041997,227,0 +170747042046,227,0 +170747042094,229,0 +170747042142,228,0 +170747042192,232,0 +170747042240,228,0 +170747042289,229,0 +170747042337,226,0 +170747042387,229,0 +170747042435,228,0 +170747042484,227,0 +170747042532,221,0 +170747042580,222,0 +170747042628,222,0 +170747042676,223,0 +170747042724,224,0 +170747042772,225,0 +170747042821,226,0 +170747042871,226,0 +170747042919,228,0 +170747042967,230,0 +170747043016,229,0 +170747043066,228,0 +170747043115,227,0 +170747043165,229,0 +170747043215,228,0 +170747043264,228,0 +170747043314,228,0 +170747043363,227,0 +170747043413,220,0 +170747043461,220,0 +170747043510,220,0 +170747043560,223,0 +170747043608,224,0 +170747043657,226,0 +170747043707,227,0 +170747043755,225,0 +170747043803,226,0 +170747043852,227,0 +170747043900,227,0 +170747043948,227,0 +170747043996,230,0 +170747044044,230,0 +170747044092,228,0 +170747044140,228,0 +170747044188,226,0 +170747044236,218,0 +170747044284,219,0 +170747044332,219,0 +170747044381,221,0 +170747044431,225,0 +170747044479,225,0 +170747044527,226,0 +170747044575,227,0 +170747044624,225,0 +170747044674,226,0 +170747044723,228,0 +170747044771,229,0 +170747044819,229,0 +170747044869,229,0 +170747044917,229,0 +170747044966,231,0 +170747045016,229,0 +170747045064,228,0 +170747045112,214,0 +170747045160,216,0 +170747045208,218,0 +170747045256,219,0 +170747045305,220,0 +170747045355,220,0 +170747045404,221,0 +170747045454,223,0 +170747045503,224,0 +170747045551,229,0 +170747045599,226,0 +170747045647,229,0 +170747045695,228,0 +170747045745,229,0 +170747045793,228,0 +170747045841,226,0 +170747045889,227,0 +170747045937,217,0 +170747045986,215,0 +170747046034,217,0 +170747046083,219,0 +170747046131,220,0 +170747046181,222,0 +170747046231,223,0 +170747046280,223,0 +170747046328,226,0 +170747046376,228,0 +170747046424,227,0 +170747046472,228,0 +170747046521,227,0 +170747046571,227,0 +170747046619,228,0 +170747046667,230,0 +170747046715,228,0 +170747046763,228,0 +170747046811,217,0 +170747046858,216,0 +170747046908,217,0 +170747046958,218,0 +170747047007,219,0 +170747047055,220,0 +170747047105,221,0 +170747047154,222,0 +170747047204,226,0 +170747047253,227,0 +170747047301,227,0 +170747047351,226,0 +170747047399,227,0 +170747047448,229,0 +170747047498,228,0 +170747047547,227,0 +170747047595,227,0 +170747047643,217,0 +170747047691,215,0 +170747047740,217,0 +170747047788,216,0 +170747047837,217,0 +170747047887,219,0 +170747047935,220,0 +170747047984,222,0 +170747048032,224,0 +170747048080,225,0 +170747048128,226,0 +170747048176,227,0 +170747048224,228,0 +170747048272,227,0 +170747048321,228,0 +170747048369,229,0 +170747048417,229,0 +170747048466,227,0 +170747048514,216,0 +170747048562,216,0 +170747048610,216,0 +170747048659,218,0 +170747048707,219,0 +170747048755,219,0 +170747048803,220,0 +170747048851,222,0 +170747048899,224,0 +170747048948,224,0 +170747048998,226,0 +170747049047,230,0 +170747049095,228,0 +170747049143,226,0 +170747049191,228,0 +170747049239,228,0 +170747049288,227,0 +170747049336,227,0 +170747049384,215,0 +170747049433,215,0 +170747049481,215,0 +170747049529,216,0 +170747049577,216,0 +170747049625,215,0 +170747049673,218,0 +170747049721,218,0 +170747049770,219,0 +170747049818,223,0 +170747049866,223,0 +170747049915,224,0 +170747049963,224,0 +170747050011,225,0 +170747050061,225,0 +170747050109,217,0 +170747050158,226,0 +170747050206,217,0 +170747050254,216,0 +170747050302,215,0 +170747050350,216,0 +170747050397,217,0 +170747050445,219,0 +170747050493,219,0 +170747050541,226,0 +170747050589,221,0 +170747050639,224,0 +170747050687,226,0 +170747050736,222,0 +170747050784,225,0 +170747050834,226,0 +170747050882,227,0 +170747050931,227,0 +170747050981,227,0 +170747051029,227,0 +170747051078,216,0 +170747051128,214,0 +170747051177,216,0 +170747051227,216,0 +170747051275,219,0 +170747051323,215,0 +170747051372,219,0 +170747051420,220,0 +170747051468,222,0 +170747051518,223,0 +170747051567,223,0 +170747051617,227,0 +170747051665,226,0 +170747051714,226,0 +170747051764,226,0 +170747051813,226,0 +170747051863,226,0 +170747051913,218,0 +170747051961,218,0 +170747052010,219,0 +170747052058,221,0 +170747052106,223,0 +170747052155,223,0 +170747052203,224,0 +170747052253,225,0 +170747052302,226,0 +170747052352,226,0 +170747052401,227,0 +170747052449,227,0 +170747052499,227,0 +170747052548,228,0 +170747052598,227,0 +170747052646,227,0 +170747052696,227,0 +170747052745,228,0 +170747052793,222,0 +170747052842,222,0 +170747052891,224,0 +170747052940,225,0 +170747052988,225,0 +170747053038,225,0 +170747053087,230,0 +170747053135,226,0 +170747053185,229,0 +170747053234,228,0 +170747053282,230,0 +170747053330,227,0 +170747053378,230,0 +170747053426,228,0 +170747053475,229,0 +170747053523,228,0 +170747053571,228,0 +170747053621,228,0 +170747053669,229,0 +170747053717,228,0 +170747053765,228,0 +170747053813,228,0 +170747053861,227,0 +170747053910,228,0 +170747053958,227,0 +170747054008,228,0 +170747054057,228,0 +170747054105,229,0 +170747054155,229,0 +170747054204,229,0 +170747054254,226,0 +170747054303,228,0 +170747054351,230,0 +170747054401,229,0 +170747054450,228,0 +170747054498,228,0 +170747054546,229,0 +170747054596,230,0 +170747054644,228,0 +170747054693,227,0 +170747054741,228,0 +170747054791,227,0 +170747054840,229,0 +170747054888,223,0 +170747054936,221,0 +170747054986,220,0 +170747055035,226,0 +170747055085,226,0 +170747055133,228,0 +170747055182,231,0 +170747055230,227,0 +170747055280,229,0 +170747055329,227,0 +170747055377,229,0 +170747055427,226,0 +170747055475,228,0 +170747055524,228,0 +170747055572,230,0 +170747055620,230,0 +170747055668,229,0 +170747055718,227,0 +170747055767,221,0 +170747055817,221,0 +170747055865,222,0 +170747055913,224,0 +170747055962,225,0 +170747056010,225,0 +170747056058,228,0 +170747056106,226,0 +170747056154,227,0 +170747056202,228,0 +170747056251,231,0 +170747056301,227,0 +170747056349,229,0 +170747056397,228,0 +170747056445,224,0 +170747056493,228,0 +170747056542,227,0 +170747056590,221,0 +170747056640,221,0 +170747056689,221,0 +170747056739,221,0 +170747056788,223,0 +170747056838,224,0 +170747056887,226,0 +170747056935,227,0 +170747056985,228,0 +170747057034,228,0 +170747057084,227,0 +170747057134,229,0 +170747057182,230,0 +170747057231,229,0 +170747057281,229,0 +170747057329,228,0 +170747057378,227,0 +170747057426,226,0 +170747057475,217,0 +170747057523,218,0 +170747057571,219,0 +170747057621,221,0 +170747057669,223,0 +170747057717,224,0 +170747057766,226,0 +170747057816,225,0 +170747057864,226,0 +170747057913,230,0 +170747057961,229,0 +170747058011,231,0 +170747058061,228,0 +170747058110,227,0 +170747058160,231,0 +170747058209,231,0 +170747058257,228,0 +170747058305,217,0 +170747058353,217,0 +170747058401,218,0 +170747058449,220,0 +170747058498,220,0 +170747058548,223,0 +170747058596,224,0 +170747058646,226,0 +170747058695,228,0 +170747058743,225,0 +170747058791,227,0 +170747058839,227,0 +170747058889,230,0 +170747058936,228,0 +170747058984,231,0 +170747059032,228,0 +170747059080,228,0 +170747059128,228,0 +170747059176,217,0 +170747059224,218,0 +170747059272,219,0 +170747059320,220,0 +170747059369,221,0 +170747059417,223,0 +170747059465,223,0 +170747059515,224,0 +170747059564,228,0 +170747059613,229,0 +170747059661,227,0 +170747059709,229,0 +170747059757,229,0 +170747059807,230,0 +170747059857,229,0 +170747059904,228,0 +170747059952,227,0 +170747060000,217,0 +170747060048,217,0 +170747060097,218,0 +170747060147,224,0 +170747060195,221,0 +170747060243,221,0 +170747060292,224,0 +170747060342,225,0 +170747060390,226,0 +170747060438,227,0 +170747060485,226,0 +170747060533,225,0 +170747060583,231,0 +170747060632,227,0 +170747060680,227,0 +170747060728,227,0 +170747060778,228,0 +170747060826,228,0 +170747060875,216,0 +170747060925,215,0 +170747060973,217,0 +170747061021,217,0 +170747061070,217,0 +170747061118,220,0 +170747061168,223,0 +170747061217,221,0 +170747061265,225,0 +170747061313,225,0 +170747061363,228,0 +170747061412,228,0 +170747061460,227,0 +170747061508,231,0 +170747061558,229,0 +170747061606,228,0 +170747061655,227,0 +170747061703,223,0 +170747061751,216,0 +170747061801,215,0 +170747061849,218,0 +170747061897,217,0 +170747061946,218,0 +170747061994,220,0 +170747062042,222,0 +170747062092,222,0 +170747062140,225,0 +170747062187,224,0 +170747062235,225,0 +170747062283,227,0 +170747062333,227,0 +170747062381,229,0 +170747062430,228,0 +170747062480,228,0 +170747062529,227,0 +170747062577,217,0 +170747062627,217,0 +170747062675,218,0 +170747062723,219,0 +170747062771,220,0 +170747062819,222,0 +170747062867,224,0 +170747062916,225,0 +170747062964,225,0 +170747063012,227,0 +170747063060,228,0 +170747063109,229,0 +170747063159,227,0 +170747063207,227,0 +170747063256,228,0 +170747063304,227,0 +170747063352,228,0 +170747063402,224,0 +170747063452,219,0 +170747063501,220,0 +170747063549,220,0 +170747063597,221,0 +170747063645,222,0 +170747063693,225,0 +170747063741,224,0 +170747063789,224,0 +170747063837,226,0 +170747063886,226,0 +170747063936,234,0 +170747063985,233,0 +170747064035,228,0 +170747064083,228,0 +170747064131,229,0 +170747064179,228,0 +170747064227,228,0 +170747064276,219,0 +170747064326,218,0 +170747064376,220,0 +170747064423,220,0 +170747064473,221,0 +170747064521,222,0 +170747064571,223,0 +170747064618,225,0 +170747064666,223,0 +170747064714,227,0 +170747064762,228,0 +170747064810,227,0 +170747064858,227,0 +170747064908,228,0 +170747064957,228,0 +170747065007,229,0 +170747065056,228,0 +170747065106,226,0 +170747065154,215,0 +170747065201,216,0 +170747065249,219,0 +170747065299,221,0 +170747065347,221,0 +170747065395,222,0 +170747065443,223,0 +170747065490,224,0 +170747065538,225,0 +170747065586,226,0 +170747065634,226,0 +170747065682,224,0 +170747065730,227,0 +170747065778,230,0 +170747065826,231,0 +170747065875,228,0 +170747065925,227,0 +170747065973,224,0 +170747066020,216,0 +170747066070,218,0 +170747066119,216,0 +170747066169,221,0 +170747066217,221,0 +170747066267,222,0 +170747066315,222,0 +170747066362,224,0 +170747066412,227,0 +170747066460,226,0 +170747066509,227,0 +170747066559,226,0 +170747066607,230,0 +170747066657,227,0 +170747066706,227,0 +170747066756,224,0 +170747066805,229,0 +170747066853,220,0 +170747066903,221,0 +170747066952,223,0 +170747067001,223,0 +170747067050,224,0 +170747067098,225,0 +170747067146,226,0 +170747067196,226,0 +170747067244,227,0 +170747067292,227,0 +170747067341,227,0 +170747067389,228,0 +170747067437,229,0 +170747067487,227,0 +170747067534,227,0 +170747067582,227,0 +170747067632,227,0 +170747067682,224,0 +170747067730,226,0 +170747067779,227,0 +170747067827,228,0 +170747067877,227,0 +170747067926,229,0 +170747067974,229,0 +170747068024,229,0 +170747068073,228,0 +170747068123,230,0 +170747068172,229,0 +170747068220,227,0 +170747068268,227,0 +170747068316,227,0 +170747068366,227,0 +170747068414,227,0 +170747068463,226,0 +170747068511,227,0 +170747068559,224,0 +170747068609,226,0 +170747068658,228,0 +170747068706,229,0 +170747068754,228,0 +170747068802,228,0 +170747068852,228,0 +170747068901,227,0 +170747068951,228,0 +170747068999,229,0 +170747069047,229,0 +170747069096,230,0 +170747069146,230,0 +170747069194,228,0 +170747069243,228,0 +170747069293,228,0 +170747069342,227,0 +170747069390,218,0 +170747069438,219,0 +170747069488,221,0 +170747069537,221,0 +170747069587,223,0 +170747069635,223,0 +170747069683,226,0 +170747069732,227,0 +170747069782,226,0 +170747069830,226,0 +170747069878,228,0 +170747069926,229,0 +170747069975,230,0 +170747070023,229,0 +170747070073,229,0 +170747070122,229,0 +170747070172,228,0 +170747070221,227,0 +170747070269,219,0 +170747070317,218,0 +170747070366,220,0 +170747070414,222,0 +170747070462,223,0 +170747070510,222,0 +170747070560,226,0 +170747070608,226,0 +170747070655,227,0 +170747070703,228,0 +170747070751,228,0 +170747070799,227,0 +170747070847,228,0 +170747070895,231,0 +170747070944,230,0 +170747070994,228,0 +170747071042,227,0 +170747071090,227,0 +170747071137,220,0 +170747071185,221,0 +170747071233,222,0 +170747071281,226,0 +170747071329,223,0 +170747071377,224,0 +170747071425,225,0 +170747071474,226,0 +170747071522,225,0 +170747071572,227,0 +170747071620,231,0 +170747071667,227,0 +170747071715,229,0 +170747071765,230,0 +170747071814,228,0 +170747071864,228,0 +170747071912,227,0 +170747071960,226,0 +170747072009,219,0 +170747072059,220,0 +170747072106,224,0 +170747072154,222,0 +170747072204,224,0 +170747072254,224,0 +170747072303,224,0 +170747072353,226,0 +170747072402,227,0 +170747072450,228,0 +170747072500,227,0 +170747072548,229,0 +170747072596,229,0 +170747072644,228,0 +170747072691,228,0 +170747072739,228,0 +170747072789,227,0 +170747072839,225,0 +170747072886,221,0 +170747072936,225,0 +170747072986,223,0 +170747073035,223,0 +170747073085,226,0 +170747073134,227,0 +170747073182,228,0 +170747073232,225,0 +170747073281,228,0 +170747073329,230,0 +170747073379,229,0 +170747073427,229,0 +170747073476,228,0 +170747073526,228,0 +170747073574,228,0 +170747073622,228,0 +170747073671,220,0 +170747073721,218,0 +170747073769,220,0 +170747073817,221,0 +170747073865,222,0 +170747073913,223,0 +170747073962,225,0 +170747074012,227,0 +170747074061,227,0 +170747074111,227,0 +170747074160,228,0 +170747074210,228,0 +170747074260,228,0 +170747074308,229,0 +170747074355,228,0 +170747074403,228,0 +170747074451,228,0 +170747074501,227,0 +170747074550,218,0 +170747074598,219,0 +170747074646,219,0 +170747074696,221,0 +170747074744,221,0 +170747074793,224,0 +170747074841,224,0 +170747074889,225,0 +170747074939,226,0 +170747074988,226,0 +170747075036,227,0 +170747075084,230,0 +170747075132,228,0 +170747075182,229,0 +170747075230,227,0 +170747075279,227,0 +170747075329,227,0 +170747075378,222,0 +170747075426,217,0 +170747075475,220,0 +170747075523,220,0 +170747075571,222,0 +170747075619,223,0 +170747075667,223,0 +170747075715,225,0 +170747075763,224,0 +170747075811,222,0 +170747075859,227,0 +170747075906,227,0 +170747075956,229,0 +170747076004,229,0 +170747076053,229,0 +170747076101,229,0 +170747076149,228,0 +170747076197,228,0 +170747076245,220,0 +170747076294,220,0 +170747076344,221,0 +170747076392,222,0 +170747076441,222,0 +170747076491,224,0 +170747076539,225,0 +170747076588,225,0 +170747076636,227,0 +170747076684,228,0 +170747076732,228,0 +170747076782,229,0 +170747076831,231,0 +170747076879,231,0 +170747076927,229,0 +170747076976,228,0 +170747077026,233,0 +170747077074,226,0 +170747077122,219,0 +170747077169,220,0 +170747077219,221,0 +170747077267,222,0 +170747077315,223,0 +170747077363,224,0 +170747077410,225,0 +170747077458,227,0 +170747077506,225,0 +170747077556,229,0 +170747077604,229,0 +170747077651,229,0 +170747077699,230,0 +170747077749,229,0 +170747077798,230,0 +170747077846,228,0 +170747077896,228,0 +170747077945,226,0 +170747077995,218,0 +170747078044,222,0 +170747078092,221,0 +170747078140,224,0 +170747078188,224,0 +170747078238,229,0 +170747078286,227,0 +170747078334,226,0 +170747078382,227,0 +170747078430,228,0 +170747078479,229,0 +170747078527,228,0 +170747078575,227,0 +170747078623,228,0 +170747078672,228,0 +170747078720,231,0 +170747078768,227,0 +170747078818,219,0 +170747078867,220,0 +170747078915,220,0 +170747078963,223,0 +170747079011,223,0 +170747079061,225,0 +170747079110,226,0 +170747079158,227,0 +170747079206,229,0 +170747079254,227,0 +170747079302,228,0 +170747079350,229,0 +170747079400,228,0 +170747079449,229,0 +170747079499,228,0 +170747079548,229,0 +170747079596,226,0 +170747079646,226,0 +170747079695,218,0 +170747079745,220,0 +170747079793,220,0 +170747079842,221,0 +170747079892,222,0 +170747079940,223,0 +170747079988,225,0 +170747080036,224,0 +170747080085,226,0 +170747080133,227,0 +170747080181,229,0 +170747080229,227,0 +170747080277,228,0 +170747080325,227,0 +170747080373,224,0 +170747080421,228,0 +170747080469,227,0 +170747080517,217,0 +170747080567,214,0 +170747080616,217,0 +170747080664,216,0 +170747080714,218,0 +170747080763,221,0 +170747080811,221,0 +170747080860,223,0 +170747080910,224,0 +170747080958,226,0 +170747081007,222,0 +170747081055,228,0 +170747081103,224,0 +170747081151,227,0 +170747081199,227,0 +170747081249,228,0 +170747081297,228,0 +170747081345,227,0 +170747081394,215,0 +170747081444,217,0 +170747081492,218,0 +170747081539,220,0 +170747081587,220,0 +170747081635,222,0 +170747081683,223,0 +170747081731,225,0 +170747081779,227,0 +170747081827,225,0 +170747081877,227,0 +170747081925,229,0 +170747081974,228,0 +170747082022,226,0 +170747082070,226,0 +170747082119,227,0 +170747082167,226,0 +170747082217,227,0 +170747082267,224,0 +170747082314,223,0 +170747082364,225,0 +170747082412,224,0 +170747082462,225,0 +170747082511,225,0 +170747082561,228,0 +170747082610,228,0 +170747082660,228,0 +170747082708,228,0 +170747082756,229,0 +170747082804,231,0 +170747082852,228,0 +170747082900,228,0 +170747082948,228,0 +170747082996,228,0 +170747083044,229,0 +170747083091,220,0 +170747083141,225,0 +170747083191,225,0 +170747083240,225,0 +170747083290,226,0 +170747083339,221,0 +170747083387,228,0 +170747083437,228,0 +170747083486,227,0 +170747083534,228,0 +170747083584,228,0 +170747083632,229,0 +170747083681,228,0 +170747083729,229,0 +170747083777,228,0 +170747083826,227,0 +170747083874,228,0 +170747083924,227,0 +170747083973,217,0 +170747084023,218,0 +170747084073,220,0 +170747084122,221,0 +170747084170,217,0 +170747084218,223,0 +170747084266,227,0 +170747084314,226,0 +170747084364,225,0 +170747084411,228,0 +170747084461,228,0 +170747084511,228,0 +170747084558,231,0 +170747084606,229,0 +170747084656,229,0 +170747084704,228,0 +170747084752,227,0 +170747084799,217,0 +170747084848,217,0 +170747084897,218,0 +170747084947,219,0 +170747084996,221,0 +170747085046,223,0 +170747085095,225,0 +170747085145,226,0 +170747085194,223,0 +170747085244,228,0 +170747085294,228,0 +170747085341,229,0 +170747085389,228,0 +170747085437,229,0 +170747085485,230,0 +170747085533,228,0 +170747085581,229,0 +170747085629,227,0 +170747085677,216,0 +170747085725,216,0 +170747085773,217,0 +170747085821,220,0 +170747085870,222,0 +170747085920,220,0 +170747085968,220,0 +170747086016,222,0 +170747086064,223,0 +170747086113,224,0 +170747086161,225,0 +170747086209,226,0 +170747086257,228,0 +170747086305,227,0 +170747086353,224,0 +170747086401,229,0 +170747086449,228,0 +170747086498,218,0 +170747086546,215,0 +170747086594,218,0 +170747086644,220,0 +170747086692,220,0 +170747086740,220,0 +170747086788,222,0 +170747086836,221,0 +170747086885,223,0 +170747086935,224,0 +170747086984,226,0 +170747087034,228,0 +170747087083,228,0 +170747087133,228,0 +170747087181,227,0 +170747087229,229,0 +170747087277,226,0 +170747087325,227,0 +170747087373,219,0 +170747087422,218,0 +170747087470,219,0 +170747087518,221,0 +170747087566,223,0 +170747087616,223,0 +170747087664,223,0 +170747087713,225,0 +170747087763,226,0 +170747087812,227,0 +170747087862,227,0 +170747087911,227,0 +170747087959,231,0 +170747088009,229,0 +170747088057,229,0 +170747088105,228,0 +170747088153,227,0 +170747088202,227,0 +170747088252,218,0 +170747088301,220,0 +170747088351,221,0 +170747088400,222,0 +170747088448,223,0 +170747088496,225,0 +170747088546,225,0 +170747088595,225,0 +170747088643,227,0 +170747088693,229,0 +170747088741,228,0 +170747088789,230,0 +170747088838,230,0 +170747088888,233,0 +170747088936,229,0 +170747088985,228,0 +170747089035,227,0 +170747089083,221,0 +170747089132,219,0 +170747089182,220,0 +170747089230,221,0 +170747089278,223,0 +170747089326,222,0 +170747089375,223,0 +170747089423,224,0 +170747089471,225,0 +170747089521,226,0 +170747089569,226,0 +170747089618,230,0 +170747089666,229,0 +170747089716,225,0 +170747089765,228,0 +170747089815,230,0 +170747089864,229,0 +170747089912,226,0 +170747089962,219,0 +170747090011,220,0 +170747090061,221,0 +170747090109,223,0 +170747090157,227,0 +170747090206,226,0 +170747090254,225,0 +170747090304,230,0 +170747090353,229,0 +170747090401,232,0 +170747090451,227,0 +170747090500,236,0 +170747090550,230,0 +170747090598,229,0 +170747090646,229,0 +170747090695,228,0 +170747090743,228,0 +170747090791,220,0 +170747090839,222,0 +170747090889,222,0 +170747090937,223,0 +170747090984,225,0 +170747091032,227,0 +170747091080,225,0 +170747091130,228,0 +170747091178,230,0 +170747091227,229,0 +170747091277,230,0 +170747091326,234,0 +170747091376,228,0 +170747091424,229,0 +170747091472,229,0 +170747091521,230,0 +170747091571,228,0 +170747091620,227,0 +170747091668,220,0 +170747091716,222,0 +170747091766,223,0 +170747091814,225,0 +170747091862,224,0 +170747091910,227,0 +170747091959,228,0 +170747092009,228,0 +170747092057,229,0 +170747092106,229,0 +170747092154,231,0 +170747092202,229,0 +170747092252,229,0 +170747092301,227,0 +170747092349,228,0 +170747092399,227,0 +170747092447,228,0 +170747092494,220,0 +170747092542,220,0 +170747092590,220,0 +170747092638,221,0 +170747092688,222,0 +170747092737,225,0 +170747092785,224,0 +170747092833,226,0 +170747092883,227,0 +170747092931,227,0 +170747092980,228,0 +170747093030,226,0 +170747093079,228,0 +170747093129,227,0 +170747093177,228,0 +170747093225,227,0 +170747093273,228,0 +170747093321,226,0 +170747093370,217,0 +170747093418,218,0 +170747093468,219,0 +170747093516,220,0 +170747093564,220,0 +170747093612,223,0 +170747093659,223,0 +170747093707,226,0 +170747093757,225,0 +170747093805,226,0 +170747093855,226,0 +170747093903,227,0 +170747093951,228,0 +170747094000,227,0 +170747094050,228,0 +170747094098,228,0 +170747094147,227,0 +170747094195,227,0 +170747094245,217,0 +170747094293,218,0 +170747094342,218,0 +170747094392,219,0 +170747094440,221,0 +170747094488,221,0 +170747094535,223,0 +170747094585,223,0 +170747094633,224,0 +170747094682,226,0 +170747094730,226,0 +170747094780,226,0 +170747094828,228,0 +170747094877,229,0 +170747094925,227,0 +170747094975,229,0 +170747095023,228,0 +170747095071,216,0 +170747095118,216,0 +170747095168,217,0 +170747095218,218,0 +170747095267,219,0 +170747095315,221,0 +170747095363,221,0 +170747095412,225,0 +170747095462,223,0 +170747095512,227,0 +170747095561,225,0 +170747095611,228,0 +170747095658,227,0 +170747095706,229,0 +170747095754,227,0 +170747095802,228,0 +170747095852,230,0 +170747095901,239,0 +170747095949,217,0 +170747095999,217,0 +170747096047,218,0 +170747096095,219,0 +170747096144,222,0 +170747096192,221,0 +170747096242,223,0 +170747096290,223,0 +170747096339,227,0 +170747096389,225,0 +170747096437,227,0 +170747096485,226,0 +170747096534,226,0 +170747096582,226,0 +170747096630,227,0 +170747096680,225,0 +170747096727,226,0 +170747096775,224,0 +170747096825,220,0 +170747096873,221,0 +170747096922,222,0 +170747096970,223,0 +170747097018,224,0 +170747097066,225,0 +170747097115,226,0 +170747097163,227,0 +170747097213,227,0 +170747097263,227,0 +170747097310,227,0 +170747097358,228,0 +170747097406,227,0 +170747097454,227,0 +170747097502,227,0 +170747097550,227,0 +170747097598,226,0 +170747097648,225,0 +170747097696,226,0 +170747097745,226,0 +170747097793,229,0 +170747097841,226,0 +170747097891,226,0 +170747097939,226,0 +170747097986,229,0 +170747098034,228,0 +170747098084,229,0 +170747098134,229,0 +170747098181,229,0 +170747098229,228,0 +170747098279,225,0 +170747098327,228,0 +170747098376,233,0 +170747098426,227,0 +170747098475,226,0 +170747098523,226,0 +170747098573,225,0 +170747098622,228,0 +170747098672,227,0 +170747098721,228,0 +170747098771,226,0 +170747098819,226,0 +170747098867,227,0 +170747098915,231,0 +170747098964,230,0 +170747099012,229,0 +170747099060,228,0 +170747099108,226,0 +170747099156,228,0 +170747099206,227,0 +170747099255,228,0 +170747099305,227,0 +170747099353,219,0 +170747099402,221,0 +170747099450,222,0 +170747099498,221,0 +170747099548,222,0 +170747099597,224,0 +170747099645,225,0 +170747099693,225,0 +170747099743,225,0 +170747099792,227,0 +170747099842,227,0 +170747099890,230,0 +170747099939,231,0 +170747099987,228,0 +170747100035,229,0 +170747100085,229,0 +170747100134,228,0 +170747100184,228,0 +170747100234,222,0 +170747100283,218,0 +170747100331,218,0 +170747100381,220,0 +170747100430,221,0 +170747100478,222,0 +170747100526,226,0 +170747100576,225,0 +170747100624,227,0 +170747100671,227,0 +170747100721,229,0 +170747100769,227,0 +170747100818,231,0 +170747100866,229,0 +170747100916,228,0 +170747100965,227,0 +170747101013,227,0 +170747101063,222,0 +170747101111,218,0 +170747101159,220,0 +170747101207,220,0 +170747101256,243,0 +170747101304,224,0 +170747101354,224,0 +170747101402,223,0 +170747101451,225,0 +170747101501,222,0 +170747101549,229,0 +170747101598,229,0 +170747101646,228,0 +170747101696,230,0 +170747101745,227,0 +170747101795,229,0 +170747101843,228,0 +170747101893,227,0 +170747101940,220,0 +170747101988,220,0 +170747102036,221,0 +170747102086,223,0 +170747102135,233,0 +170747102185,226,0 +170747102233,226,0 +170747102282,223,0 +170747102330,227,0 +170747102380,230,0 +170747102429,230,0 +170747102477,232,0 +170747102527,229,0 +170747102575,228,0 +170747102624,229,0 +170747102674,228,0 +170747102724,225,0 +170747102771,226,0 +170747102821,220,0 +170747102869,221,0 +170747102918,222,0 +170747102966,223,0 +170747103014,226,0 +170747103062,226,0 +170747103112,228,0 +170747103161,229,0 +170747103211,233,0 +170747103261,228,0 +170747103309,230,0 +170747103358,231,0 +170747103406,228,0 +170747103456,229,0 +170747103505,229,0 +170747103555,229,0 +170747103603,227,0 +170747103652,219,0 +170747103702,219,0 +170747103750,220,0 +170747103799,222,0 +170747103847,224,0 +170747103895,224,0 +170747103943,225,0 +170747103992,225,0 +170747104040,226,0 +170747104088,226,0 +170747104138,227,0 +170747104186,227,0 +170747104234,229,0 +170747104282,229,0 +170747104331,228,0 +170747104381,228,0 +170747104430,229,0 +170747104478,225,0 +170747104528,217,0 +170747104577,219,0 +170747104625,220,0 +170747104673,222,0 +170747104721,223,0 +170747104771,224,0 +170747104820,224,0 +170747104868,225,0 +170747104918,226,0 +170747104966,228,0 +170747105015,229,0 +170747105063,231,0 +170747105113,230,0 +170747105162,229,0 +170747105212,230,0 +170747105262,227,0 +170747105311,227,0 +170747105361,218,0 +170747105409,217,0 +170747105458,219,0 +170747105508,220,0 +170747105557,221,0 +170747105605,224,0 +170747105655,224,0 +170747105704,224,0 +170747105752,226,0 +170747105800,226,0 +170747105850,227,0 +170747105898,228,0 +170747105946,228,0 +170747105995,229,0 +170747106045,227,0 +170747106093,229,0 +170747106141,228,0 +170747106189,227,0 +170747106237,217,0 +170747106286,216,0 +170747106334,217,0 +170747106384,218,0 +170747106433,220,0 +170747106483,221,0 +170747106532,222,0 +170747106582,223,0 +170747106631,225,0 +170747106679,226,0 +170747106727,227,0 +170747106777,228,0 +170747106826,229,0 +170747106874,229,0 +170747106922,230,0 +170747106970,228,0 +170747107020,228,0 +170747107068,217,0 +170747107116,215,0 +170747107164,215,0 +170747107213,220,0 +170747107261,220,0 +170747107309,219,0 +170747107357,221,0 +170747107407,223,0 +170747107455,223,0 +170747107504,227,0 +170747107552,225,0 +170747107602,228,0 +170747107651,229,0 +170747107699,228,0 +170747107747,228,0 +170747107795,227,0 +170747107845,228,0 +170747107894,227,0 +170747107942,217,0 +170747107992,216,0 +170747108040,216,0 +170747108089,218,0 +170747108137,219,0 +170747108187,218,0 +170747108236,221,0 +170747108284,222,0 +170747108332,224,0 +170747108380,225,0 +170747108430,226,0 +170747108478,227,0 +170747108527,226,0 +170747108577,227,0 +170747108625,228,0 +170747108674,229,0 +170747108722,227,0 +170747108772,222,0 +170747108820,216,0 +170747108867,215,0 +170747108917,217,0 +170747108965,219,0 +170747109013,221,0 +170747109061,220,0 +170747109110,222,0 +170747109160,224,0 +170747109208,224,0 +170747109256,224,0 +170747109305,227,0 +170747109355,229,0 +170747109404,227,0 +170747109452,229,0 +170747109500,228,0 +170747109550,225,0 +170747109598,227,0 +170747109647,217,0 +170747109697,216,0 +170747109747,217,0 +170747109796,219,0 +170747109846,220,0 +170747109894,221,0 +170747109943,221,0 +170747109991,221,0 +170747110041,223,0 +170747110089,223,0 +170747110137,225,0 +170747110186,227,0 +170747110236,228,0 +170747110285,227,0 +170747110333,233,0 +170747110381,227,0 +170747110431,228,0 +170747110479,226,0 +170747110527,216,0 +170747110575,218,0 +170747110622,217,0 +170747110670,220,0 +170747110720,222,0 +170747110768,221,0 +170747110818,223,0 +170747110867,224,0 +170747110916,226,0 +170747110966,225,0 +170747111016,227,0 +170747111065,228,0 +170747111115,229,0 +170747111164,228,0 +170747111212,228,0 +170747111262,228,0 +170747111309,227,0 +170747111359,219,0 +170747111408,219,0 +170747111456,222,0 +170747111504,224,0 +170747111552,224,0 +170747111602,224,0 +170747111651,223,0 +170747111699,225,0 +170747111747,226,0 +170747111797,227,0 +170747111845,227,0 +170747111894,228,0 +170747111942,229,0 +170747111992,229,0 +170747112040,227,0 +170747112089,228,0 +170747112139,227,0 +170747112187,227,0 +170747112236,226,0 +170747112286,226,0 +170747112335,228,0 +170747112383,228,0 +170747112433,227,0 +170747112481,228,0 +170747112529,228,0 +170747112577,228,0 +170747112626,227,0 +170747112674,227,0 +170747112722,228,0 +170747112770,228,0 +170747112818,228,0 +170747112866,227,0 +170747112914,227,0 +170747112962,229,0 +170747113012,228,0 +170747113061,229,0 +170747113111,229,0 +170747113160,229,0 +170747113208,228,0 +170747113256,229,0 +170747113306,228,0 +170747113354,230,0 +170747113402,227,0 +170747113450,229,0 +170747113498,228,0 +170747113545,228,0 +170747113593,229,0 +170747113641,228,0 +170747113691,228,0 +170747113739,225,0 +170747113787,227,0 +170747113835,227,0 +170747113884,227,0 +170747113934,231,0 +170747113982,228,0 +170747114030,227,0 +170747114078,227,0 +170747114126,227,0 +170747114175,227,0 +170747114225,231,0 +170747114274,229,0 +170747114324,228,0 +170747114372,229,0 +170747114420,228,0 +170747114468,229,0 +170747114517,229,0 +170747114565,229,0 +170747114615,228,0 +170747114664,227,0 +170747114712,227,0 +170747114762,227,0 +170747114811,219,0 +170747114861,221,0 +170747114909,222,0 +170747114957,223,0 +170747115005,225,0 +170747115054,227,0 +170747115102,225,0 +170747115152,227,0 +170747115199,228,0 +170747115247,228,0 +170747115295,230,0 +170747115345,230,0 +170747115392,230,0 +170747115440,230,0 +170747115488,227,0 +170747115536,228,0 +170747115586,227,0 +170747115634,218,0 +170747115683,219,0 +170747115731,223,0 +170747115779,222,0 +170747115827,224,0 +170747115876,225,0 +170747115924,227,0 +170747115972,228,0 +170747116020,227,0 +170747116068,227,0 +170747116116,223,0 +170747116164,229,0 +170747116212,231,0 +170747116262,230,0 +170747116309,231,0 +170747116357,229,0 +170747116407,229,0 +170747116455,226,0 +170747116503,219,0 +170747116551,218,0 +170747116600,219,0 +170747116650,222,0 +170747116699,223,0 +170747116747,221,0 +170747116797,224,0 +170747116846,225,0 +170747116896,229,0 +170747116944,227,0 +170747116992,229,0 +170747117040,229,0 +170747117088,231,0 +170747117135,229,0 +170747117183,228,0 +170747117233,229,0 +170747117283,226,0 +170747117332,224,0 +170747117382,219,0 +170747117430,221,0 +170747117478,220,0 +170747117527,224,0 +170747117576,223,0 +170747117624,225,0 +170747117672,225,0 +170747117722,225,0 +170747117770,230,0 +170747117818,228,0 +170747117865,228,0 +170747117913,228,0 +170747117961,229,0 +170747118009,230,0 +170747118059,228,0 +170747118108,228,0 +170747118156,229,0 +170747118206,218,0 +170747118255,217,0 +170747118305,218,0 +170747118355,221,0 +170747118403,221,0 +170747118452,223,0 +170747118502,224,0 +170747118551,224,0 +170747118601,226,0 +170747118650,226,0 +170747118700,229,0 +170747118748,228,0 +170747118796,229,0 +170747118845,231,0 +170747118895,232,0 +170747118943,228,0 +170747118992,228,0 +170747119040,226,0 +170747119090,216,0 +170747119139,218,0 +170747119187,218,0 +170747119237,220,0 +170747119286,222,0 +170747119336,223,0 +170747119385,225,0 +170747119433,225,0 +170747119483,226,0 +170747119532,227,0 +170747119582,228,0 +170747119630,230,0 +170747119678,230,0 +170747119726,230,0 +170747119774,230,0 +170747119823,229,0 +170747119873,227,0 +170747119921,217,0 +170747119969,215,0 +170747120018,215,0 +170747120066,217,0 +170747120116,218,0 +170747120165,219,0 +170747120215,221,0 +170747120264,221,0 +170747120312,223,0 +170747120362,223,0 +170747120412,224,0 +170747120461,227,0 +170747120511,227,0 +170747120559,228,0 +170747120608,229,0 +170747120656,228,0 +170747120705,229,0 +170747120753,228,0 +170747120801,216,0 +170747120849,217,0 +170747120897,219,0 +170747120947,221,0 +170747120995,224,0 +170747121044,222,0 +170747121094,224,0 +170747121143,223,0 +170747121191,226,0 +170747121239,228,0 +170747121289,229,0 +170747121337,228,0 +170747121385,228,0 +170747121433,229,0 +170747121482,227,0 +170747121532,229,0 +170747121580,228,0 +170747121628,217,0 +170747121677,216,0 +170747121727,219,0 +170747121775,218,0 +170747121824,221,0 +170747121874,222,0 +170747121924,224,0 +170747121971,224,0 +170747122019,226,0 +170747122069,226,0 +170747122118,229,0 +170747122166,229,0 +170747122214,228,0 +170747122262,231,0 +170747122310,229,0 +170747122358,229,0 +170747122406,228,0 +170747122455,227,0 +170747122503,215,0 +170747122551,217,0 +170747122599,218,0 +170747122649,220,0 +170747122698,222,0 +170747122748,222,0 +170747122796,218,0 +170747122844,223,0 +170747122892,225,0 +170747122940,226,0 +170747122988,225,0 +170747123037,228,0 +170747123087,228,0 +170747123135,229,0 +170747123184,229,0 +170747123234,229,0 +170747123283,227,0 +170747123333,222,0 +170747123382,216,0 +170747123430,218,0 +170747123480,220,0 +170747123529,220,0 +170747123579,221,0 +170747123627,223,0 +170747123676,224,0 +170747123724,225,0 +170747123772,225,0 +170747123822,228,0 +170747123870,226,0 +170747123918,228,0 +170747123967,228,0 +170747124017,230,0 +170747124066,229,0 +170747124114,228,0 +170747124164,226,0 +170747124212,217,0 +170747124261,216,0 +170747124309,218,0 +170747124357,219,0 +170747124405,221,0 +170747124453,221,0 +170747124502,221,0 +170747124552,218,0 +170747124601,224,0 +170747124649,227,0 +170747124699,225,0 +170747124747,226,0 +170747124796,227,0 +170747124846,223,0 +170747124896,228,0 +170747124943,228,0 +170747124991,226,0 +170747125041,226,0 +170747125089,216,0 +170747125138,216,0 +170747125188,216,0 +170747125237,217,0 +170747125287,217,0 +170747125335,219,0 +170747125384,215,0 +170747125434,220,0 +170747125483,222,0 +170747125533,223,0 +170747125581,223,0 +170747125631,226,0 +170747125680,227,0 +170747125728,227,0 +170747125777,227,0 +170747125825,227,0 +170747125875,227,0 +170747125923,218,0 +170747125973,218,0 +170747126022,224,0 +170747126070,219,0 +170747126120,221,0 +170747126169,221,0 +170747126217,222,0 +170747126267,223,0 +170747126316,224,0 +170747126366,226,0 +170747126414,226,0 +170747126462,226,0 +170747126512,226,0 +170747126560,227,0 +170747126607,226,0 +170747126655,227,0 +170747126703,227,0 +170747126751,228,0 +170747126799,221,0 +170747126849,221,0 +170747126896,222,0 +170747126946,223,0 +170747126995,224,0 +170747127043,225,0 +170747127091,224,0 +170747127139,227,0 +170747127189,227,0 +170747127237,227,0 +170747127286,229,0 +170747127336,228,0 +170747127385,226,0 +170747127435,227,0 +170747127483,226,0 +170747127531,227,0 +170747127579,228,0 +170747127628,226,0 +170747127676,228,0 +170747127724,226,0 +170747127772,229,0 +170747127820,227,0 +170747127868,228,0 +170747127918,229,0 +170747127967,228,0 +170747128015,230,0 +170747128065,230,0 +170747128113,230,0 +170747128162,231,0 +170747128210,228,0 +170747128258,229,0 +170747128307,227,0 +170747128357,227,0 +170747128406,229,0 +170747128454,227,0 +170747128502,227,0 +170747128550,229,0 +170747128598,229,0 +170747128648,229,0 +170747128697,227,0 +170747128745,229,0 +170747128795,228,0 +170747128843,228,0 +170747128891,227,0 +170747128939,230,0 +170747128987,229,0 +170747129036,231,0 +170747129086,228,0 +170747129134,227,0 +170747129182,228,0 +170747129231,227,0 +170747129281,228,0 +170747129330,220,0 +170747129380,222,0 +170747129428,223,0 +170747129477,224,0 +170747129527,226,0 +170747129576,226,0 +170747129624,227,0 +170747129672,226,0 +170747129722,226,0 +170747129771,227,0 +170747129821,229,0 +170747129869,229,0 +170747129916,230,0 +170747129966,229,0 +170747130016,229,0 +170747130064,227,0 +170747130111,226,0 +170747130161,227,0 +170747130209,220,0 +170747130257,220,0 +170747130306,221,0 +170747130354,224,0 +170747130402,225,0 +170747130450,225,0 +170747130500,228,0 +170747130548,225,0 +170747130598,226,0 +170747130647,228,0 +170747130695,230,0 +170747130743,230,0 +170747130791,229,0 +170747130839,231,0 +170747130888,231,0 +170747130936,228,0 +170747130986,228,0 +170747131035,233,0 +170747131085,221,0 +170747131134,222,0 +170747131182,222,0 +170747131230,222,0 +170747131278,226,0 +170747131328,224,0 +170747131375,225,0 +170747131423,226,0 +170747131473,228,0 +170747131521,230,0 +170747131569,228,0 +170747131617,229,0 +170747131665,229,0 +170747131713,227,0 +170747131760,229,0 +170747131808,229,0 +170747131858,228,0 +170747131906,218,0 +170747131954,219,0 +170747132002,221,0 +170747132050,222,0 +170747132097,223,0 +170747132147,226,0 +170747132195,223,0 +170747132243,225,0 +170747132291,228,0 +170747132340,227,0 +170747132388,229,0 +170747132436,229,0 +170747132485,231,0 +170747132535,229,0 +170747132583,228,0 +170747132631,228,0 +170747132679,229,0 +170747132727,226,0 +170747132776,219,0 +170747132824,218,0 +170747132872,220,0 +170747132922,221,0 +170747132970,223,0 +170747133018,224,0 +170747133067,224,0 +170747133117,224,0 +170747133166,227,0 +170747133214,227,0 +170747133262,227,0 +170747133312,227,0 +170747133360,228,0 +170747133408,228,0 +170747133457,228,0 +170747133507,227,0 +170747133556,228,0 +170747133606,225,0 +170747133655,217,0 +170747133705,218,0 +170747133753,220,0 +170747133801,220,0 +170747133850,223,0 +170747133900,225,0 +170747133949,225,0 +170747133997,225,0 +170747134045,226,0 +170747134093,228,0 +170747134141,228,0 +170747134189,227,0 +170747134237,229,0 +170747134285,232,0 +170747134333,229,0 +170747134381,228,0 +170747134430,227,0 +170747134480,218,0 +170747134530,216,0 +170747134578,217,0 +170747134627,219,0 +170747134675,219,0 +170747134724,221,0 +170747134772,222,0 +170747134822,223,0 +170747134871,225,0 +170747134921,227,0 +170747134971,227,0 +170747135020,227,0 +170747135070,228,0 +170747135119,228,0 +170747135167,227,0 +170747135217,228,0 +170747135266,228,0 +170747135314,227,0 +170747135362,216,0 +170747135412,217,0 +170747135461,219,0 +170747135511,220,0 +170747135560,219,0 +170747135610,224,0 +170747135659,226,0 +170747135709,225,0 +170747135757,226,0 +170747135805,230,0 +170747135853,231,0 +170747135901,226,0 +170747135949,229,0 +170747135997,231,0 +170747136046,229,0 +170747136094,232,0 +170747136142,228,0 +170747136190,219,0 +170747136239,220,0 +170747136287,220,0 +170747136337,222,0 +170747136385,223,0 +170747136434,225,0 +170747136482,225,0 +170747136530,224,0 +170747136578,227,0 +170747136626,226,0 +170747136674,228,0 +170747136722,230,0 +170747136769,227,0 +170747136817,228,0 +170747136867,230,0 +170747136915,230,0 +170747136963,228,0 +170747137011,227,0 +170747137058,219,0 +170747137106,221,0 +170747137156,222,0 +170747137204,222,0 +170747137252,223,0 +170747137301,224,0 +170747137349,223,0 +170747137397,225,0 +170747137447,228,0 +170747137496,227,0 +170747137546,228,0 +170747137594,230,0 +170747137642,228,0 +170747137691,227,0 +170747137739,228,0 +170747137787,228,0 +170747137837,228,0 +170747137885,227,0 +170747137933,219,0 +170747137981,219,0 +170747138029,220,0 +170747138078,223,0 +170747138126,223,0 +170747138176,221,0 +170747138224,225,0 +170747138272,226,0 +170747138320,226,0 +170747138369,226,0 +170747138417,227,0 +170747138466,231,0 +170747138514,229,0 +170747138562,229,0 +170747138610,228,0 +170747138658,228,0 +170747138708,225,0 +170747138757,217,0 +170747138807,218,0 +170747138855,219,0 +170747138903,222,0 +170747138951,221,0 +170747139000,223,0 +170747139048,223,0 +170747139096,224,0 +170747139144,226,0 +170747139194,225,0 +170747139242,227,0 +170747139291,228,0 +170747139341,230,0 +170747139389,229,0 +170747139438,229,0 +170747139486,229,0 +170747139536,229,0 +170747139584,226,0 +170747139632,217,0 +170747139681,217,0 +170747139729,219,0 +170747139777,221,0 +170747139827,222,0 +170747139876,222,0 +170747139924,225,0 +170747139972,224,0 +170747140020,225,0 +170747140068,227,0 +170747140118,227,0 +170747140167,227,0 +170747140217,226,0 +170747140266,229,0 +170747140314,228,0 +170747140364,228,0 +170747140413,229,0 +170747140463,222,0 +170747140511,217,0 +170747140560,217,0 +170747140610,217,0 +170747140659,218,0 +170747140709,218,0 +170747140758,217,0 +170747140806,221,0 +170747140856,223,0 +170747140905,224,0 +170747140953,224,0 +170747141003,225,0 +170747141051,225,0 +170747141100,226,0 +170747141148,226,0 +170747141196,229,0 +170747141244,231,0 +170747141294,226,0 +170747141342,215,0 +170747141390,217,0 +170747141438,214,0 +170747141487,218,0 +170747141537,216,0 +170747141585,220,0 +170747141634,221,0 +170747141684,221,0 +170747141732,222,0 +170747141781,225,0 +170747141831,225,0 +170747141881,226,0 +170747141930,226,0 +170747141978,227,0 +170747142026,226,0 +170747142074,228,0 +170747142123,227,0 +170747142171,226,0 +170747142219,223,0 +170747142267,223,0 +170747142317,225,0 +170747142366,225,0 +170747142414,226,0 +170747142464,227,0 +170747142512,227,0 +170747142560,227,0 +170747142608,228,0 +170747142657,227,0 +170747142707,227,0 +170747142756,228,0 +170747142806,229,0 +170747142855,230,0 +170747142903,228,0 +170747142951,227,0 +170747143001,227,0 +170747143049,225,0 +170747143097,226,0 +170747143145,225,0 +170747143194,227,0 +170747143242,231,0 +170747143292,228,0 +170747143341,227,0 +170747143391,227,0 +170747143439,228,0 +170747143488,228,0 +170747143536,227,0 +170747143586,228,0 +170747143635,228,0 +170747143685,227,0 +170747143733,227,0 +170747143782,227,0 +170747143832,228,0 +170747143881,227,0 +170747143929,220,0 +170747143979,223,0 +170747144027,224,0 +170747144076,225,0 +170747144126,227,0 +170747144174,227,0 +170747144222,228,0 +170747144271,228,0 +170747144321,229,0 +170747144369,229,0 +170747144418,229,0 +170747144466,229,0 +170747144516,228,0 +170747144565,229,0 +170747144615,229,0 +170747144664,228,0 +170747144714,227,0 +170747144763,217,0 +170747144813,217,0 +170747144862,219,0 +170747144910,220,0 +170747144958,221,0 +170747145006,222,0 +170747145054,223,0 +170747145102,226,0 +170747145152,225,0 +170747145201,227,0 +170747145251,228,0 +170747145299,230,0 +170747145348,225,0 +170747145396,231,0 +170747145444,229,0 +170747145494,228,0 +170747145542,226,0 +170747145589,227,0 +170747145637,216,0 +170747145685,218,0 +170747145733,219,0 +170747145781,220,0 +170747145829,221,0 +170747145877,221,0 +170747145925,221,0 +170747145973,223,0 +170747146022,226,0 +170747146072,228,0 +170747146121,227,0 +170747146171,227,0 +170747146219,229,0 +170747146267,227,0 +170747146315,227,0 +170747146363,227,0 +170747146411,227,0 +170747146460,226,0 +170747146510,216,0 +170747146558,218,0 +170747146607,218,0 +170747146657,221,0 +170747146705,222,0 +170747146754,221,0 +170747146802,222,0 +170747146850,224,0 +170747146898,226,0 +170747146946,225,0 +170747146994,226,0 +170747147044,227,0 +170747147093,227,0 +170747147141,228,0 +170747147189,229,0 +170747147238,228,0 +170747147288,228,0 +170747147336,218,0 +170747147384,216,0 +170747147433,216,0 +170747147481,217,0 +170747147531,218,0 +170747147579,221,0 +170747147628,221,0 +170747147676,222,0 +170747147724,225,0 +170747147773,224,0 +170747147823,225,0 +170747147872,227,0 +170747147920,225,0 +170747147968,229,0 +170747148018,227,0 +170747148066,227,0 +170747148113,228,0 +170747148161,226,0 +170747148209,217,0 +170747148257,216,0 +170747148305,218,0 +170747148353,219,0 +170747148401,220,0 +170747148449,221,0 +170747148498,223,0 +170747148548,226,0 +170747148596,226,0 +170747148644,226,0 +170747148692,228,0 +170747148741,226,0 +170747148789,228,0 +170747148837,229,0 +170747148887,226,0 +170747148935,231,0 +170747148983,228,0 +170747149031,227,0 +170747149078,219,0 +170747149128,219,0 +170747149177,221,0 +170747149225,223,0 +170747149273,222,0 +170747149321,223,0 +170747149369,224,0 +170747149417,225,0 +170747149465,224,0 +170747149514,228,0 +170747149564,228,0 +170747149612,227,0 +170747149660,229,0 +170747149709,232,0 +170747149759,229,0 +170747149808,228,0 +170747149858,228,0 +170747149906,219,0 +170747149955,223,0 +170747150003,223,0 +170747150053,224,0 +170747150102,224,0 +170747150150,225,0 +170747150198,226,0 +170747150247,227,0 +170747150295,228,0 +170747150343,231,0 +170747150393,229,0 +170747150441,229,0 +170747150490,228,0 +170747150538,230,0 +170747150588,228,0 +170747150637,229,0 +170747150687,227,0 +170747150736,227,0 +170747150784,222,0 +170747150832,223,0 +170747150880,222,0 +170747150930,224,0 +170747150978,227,0 +170747151026,227,0 +170747151074,228,0 +170747151122,227,0 +170747151169,228,0 +170747151219,228,0 +170747151268,228,0 +170747151316,230,0 +170747151364,230,0 +170747151412,229,0 +170747151460,230,0 +170747151508,229,0 +170747151557,228,0 +170747151605,228,0 +170747151655,222,0 +170747151703,223,0 +170747151751,225,0 +170747151800,227,0 +170747151850,226,0 +170747151898,228,0 +170747151947,228,0 +170747151995,230,0 +170747152045,231,0 +170747152093,229,0 +170747152141,230,0 +170747152190,231,0 +170747152238,231,0 +170747152286,228,0 +170747152336,229,0 +170747152385,227,0 +170747152433,227,0 +170747152481,222,0 +170747152529,221,0 +170747152577,222,0 +170747152627,223,0 +170747152674,223,0 +170747152722,224,0 +170747152770,225,0 +170747152820,226,0 +170747152868,230,0 +170747152917,229,0 +170747152967,231,0 +170747153016,229,0 +170747153064,229,0 +170747153112,229,0 +170747153160,228,0 +170747153210,228,0 +170747153258,228,0 +170747153307,229,0 +170747153357,217,0 +170747153407,216,0 +170747153456,217,0 +170747153504,219,0 +170747153554,220,0 +170747153603,221,0 +170747153651,218,0 +170747153699,223,0 +170747153747,227,0 +170747153796,225,0 +170747153844,226,0 +170747153894,228,0 +170747153943,228,0 +170747153993,228,0 +170747154042,229,0 +170747154092,229,0 +170747154140,229,0 +170747154189,228,0 +170747154239,216,0 +170747154287,216,0 +170747154336,216,0 +170747154384,219,0 +170747154432,219,0 +170747154482,222,0 +170747154531,221,0 +170747154579,223,0 +170747154629,225,0 +170747154677,226,0 +170747154726,228,0 +170747154776,227,0 +170747154824,231,0 +170747154872,229,0 +170747154920,230,0 +170747154968,229,0 +170747155017,227,0 +170747155067,216,0 +170747155116,215,0 +170747155166,215,0 +170747155214,218,0 +170747155262,218,0 +170747155310,222,0 +170747155358,223,0 +170747155405,222,0 +170747155455,223,0 +170747155503,227,0 +170747155551,226,0 +170747155601,225,0 +170747155648,226,0 +170747155698,228,0 +170747155746,227,0 +170747155795,227,0 +170747155843,227,0 +170747155891,227,0 +170747155941,217,0 +170747155989,216,0 +170747156038,218,0 +170747156086,219,0 +170747156136,218,0 +170747156185,215,0 +170747156233,219,0 +170747156281,223,0 +170747156329,223,0 +170747156379,226,0 +170747156427,225,0 +170747156476,227,0 +170747156524,229,0 +170747156572,228,0 +170747156620,227,0 +170747156668,227,0 +170747156716,227,0 +170747156764,226,0 +170747156814,217,0 +170747156863,218,0 +170747156913,220,0 +170747156962,224,0 +170747157010,223,0 +170747157058,225,0 +170747157108,225,0 +170747157157,225,0 +170747157207,226,0 +170747157255,227,0 +170747157304,227,0 +170747157354,228,0 +170747157404,227,0 +170747157453,228,0 +170747157501,228,0 +170747157550,226,0 +170747157598,227,0 +170747157648,224,0 +170747157697,223,0 +170747157747,218,0 +170747157797,225,0 +170747157846,228,0 +170747157894,230,0 +170747157942,228,0 +170747157990,227,0 +170747158038,228,0 +170747158086,228,0 +170747158134,227,0 +170747158183,229,0 +170747158233,228,0 +170747158281,228,0 +170747158330,227,0 +170747158378,228,0 +170747158426,227,0 +170747158476,226,0 +170747158524,222,0 +170747158573,224,0 +170747158621,226,0 +170747158669,225,0 +170747158719,227,0 +170747158767,226,0 +170747158816,229,0 +170747158866,230,0 +170747158915,227,0 +170747158965,229,0 +170747159014,227,0 +170747159062,229,0 +170747159110,228,0 +170747159158,229,0 +170747159208,228,0 +170747159256,229,0 +170747159304,225,0 +170747159353,217,0 +170747159401,215,0 +170747159449,216,0 +170747159497,219,0 +170747159547,219,0 +170747159595,220,0 +170747159644,222,0 +170747159692,223,0 +170747159740,225,0 +170747159788,224,0 +170747159836,226,0 +170747159884,226,0 +170747159934,227,0 +170747159983,231,0 +170747160031,229,0 +170747160081,228,0 +170747160130,224,0 +170747160180,229,0 +170747160229,218,0 +170747160279,216,0 +170747160329,218,0 +170747160376,219,0 +170747160424,221,0 +170747160474,222,0 +170747160524,221,0 +170747160571,223,0 +170747160621,224,0 +170747160671,223,0 +170747160718,226,0 +170747160768,226,0 +170747160817,228,0 +170747160867,229,0 +170747160915,228,0 +170747160964,231,0 +170747161012,229,0 +170747161062,228,0 +170747161112,219,0 +170747161160,219,0 +170747161208,220,0 +170747161256,223,0 +170747161305,223,0 +170747161355,224,0 +170747161402,226,0 +170747161452,226,0 +170747161500,225,0 +170747161548,226,0 +170747161597,228,0 +170747161645,231,0 +170747161695,228,0 +170747161743,230,0 +170747161791,229,0 +170747161841,229,0 +170747161889,229,0 +170747161937,219,0 +170747161984,221,0 +170747162032,223,0 +170747162080,224,0 +170747162128,224,0 +170747162176,227,0 +170747162224,226,0 +170747162272,228,0 +170747162320,229,0 +170747162368,226,0 +170747162416,230,0 +170747162466,228,0 +170747162515,229,0 +170747162565,228,0 +170747162614,229,0 +170747162662,228,0 +170747162710,228,0 +170747162758,228,0 +170747162808,220,0 +170747162856,220,0 +170747162905,222,0 +170747162955,224,0 +170747163004,225,0 +170747163052,225,0 +170747163100,224,0 +170747163148,227,0 +170747163196,228,0 +170747163246,226,0 +170747163294,226,0 +170747163342,231,0 +170747163389,230,0 +170747163439,229,0 +170747163488,228,0 +170747163536,228,0 +170747163584,227,0 +170747163634,227,0 +170747163682,221,0 +170747163730,222,0 +170747163778,223,0 +170747163826,227,0 +170747163875,225,0 +170747163924,229,0 +170747163974,229,0 +170747164024,228,0 +170747164073,227,0 +170747164123,231,0 +170747164172,229,0 +170747164222,229,0 +170747164271,227,0 +170747164321,229,0 +170747164370,229,0 +170747164420,228,0 +170747164470,227,0 +170747164517,221,0 +170747164566,219,0 +170747164615,221,0 +170747164665,223,0 +170747164714,222,0 +170747164762,224,0 +170747164810,226,0 +170747164859,226,0 +170747164907,229,0 +170747164955,228,0 +170747165003,228,0 +170747165053,228,0 +170747165102,231,0 +170747165151,231,0 +170747165201,228,0 +170747165249,225,0 +170747165298,227,0 +170747165346,222,0 +170747165396,218,0 +170747165444,219,0 +170747165493,222,0 +170747165541,222,0 +170747165589,223,0 +170747165637,223,0 +170747165684,225,0 +170747165732,226,0 +170747165780,227,0 +170747165828,230,0 +170747165876,227,0 +170747165925,227,0 +170747165973,227,0 +170747166021,230,0 +170747166071,228,0 +170747166118,228,0 +170747166166,227,0 +170747166214,223,0 +170747166264,215,0 +170747166313,217,0 +170747166361,218,0 +170747166409,220,0 +170747166457,222,0 +170747166506,221,0 +170747166554,224,0 +170747166604,224,0 +170747166652,225,0 +170747166700,226,0 +170747166749,227,0 +170747166797,227,0 +170747166845,228,0 +170747166893,231,0 +170747166942,229,0 +170747166990,228,0 +170747167038,228,0 +170747167086,218,0 +170747167136,216,0 +170747167185,217,0 +170747167233,219,0 +170747167282,220,0 +170747167330,222,0 +170747167380,223,0 +170747167427,223,0 +170747167475,225,0 +170747167523,230,0 +170747167573,227,0 +170747167622,229,0 +170747167670,230,0 +170747167718,228,0 +170747167766,230,0 +170747167814,228,0 +170747167862,228,0 +170747167909,228,0 +170747167957,219,0 +170747168005,219,0 +170747168053,220,0 +170747168101,222,0 +170747168149,223,0 +170747168197,223,0 +170747168246,225,0 +170747168296,226,0 +170747168344,226,0 +170747168392,228,0 +170747168439,230,0 +170747168487,229,0 +170747168535,228,0 +170747168583,226,0 +170747168633,231,0 +170747168680,228,0 +170747168728,228,0 +170747168778,226,0 +170747168826,218,0 +170747168874,218,0 +170747168922,221,0 +170747168970,222,0 +170747169018,223,0 +170747169065,223,0 +170747169113,224,0 +170747169161,223,0 +170747169209,226,0 +170747169257,226,0 +170747169305,226,0 +170747169353,228,0 +170747169401,228,0 +170747169449,227,0 +170747169498,228,0 +170747169546,229,0 +170747169595,228,0 +170747169643,226,0 +170747169691,218,0 +170747169739,219,0 +170747169787,221,0 +170747169835,222,0 +170747169883,223,0 +170747169931,223,0 +170747169979,224,0 +170747170026,226,0 +170747170074,226,0 +170747170122,226,0 +170747170170,227,0 +170747170218,228,0 +170747170266,229,0 +170747170315,228,0 +170747170363,228,0 +170747170411,228,0 +170747170461,226,0 +170747170508,217,0 +170747170556,218,0 +170747170606,220,0 +170747170655,220,0 +170747170703,221,0 +170747170751,223,0 +170747170799,223,0 +170747170847,224,0 +170747170895,225,0 +170747170943,226,0 +170747170993,227,0 +170747171042,229,0 +170747171092,227,0 +170747171139,230,0 +170747171189,228,0 +170747171237,228,0 +170747171285,225,0 +170747171333,228,0 +170747171380,220,0 +170747171430,219,0 +170747171478,221,0 +170747171526,217,0 +170747171574,223,0 +170747171623,223,0 +170747171673,224,0 +170747171720,227,0 +170747171768,225,0 +170747171816,228,0 +170747171864,227,0 +170747171912,226,0 +170747171960,227,0 +170747172008,228,0 +170747172057,229,0 +170747172105,227,0 +170747172153,227,0 +170747172201,227,0 +170747172249,221,0 +170747172297,221,0 +170747172347,223,0 +170747172396,224,0 +170747172446,225,0 +170747172495,225,0 +170747172545,226,0 +170747172593,227,0 +170747172642,226,0 +170747172692,228,0 +170747172741,228,0 +170747172789,227,0 +170747172837,228,0 +170747172887,228,0 +170747172936,227,0 +170747172986,227,0 +170747173034,228,0 +170747173082,226,0 +170747173130,225,0 +170747173178,224,0 +170747173225,228,0 +170747173275,227,0 +170747173324,227,0 +170747173372,229,0 +170747173420,227,0 +170747173468,230,0 +170747173516,229,0 +170747173564,230,0 +170747173612,228,0 +170747173660,228,0 +170747173708,228,0 +170747173755,227,0 +170747173803,228,0 +170747173851,229,0 +170747173899,227,0 +170747173947,225,0 +170747173995,225,0 +170747174043,226,0 +170747174091,228,0 +170747174140,228,0 +170747174188,226,0 +170747174236,228,0 +170747174285,228,0 +170747174333,228,0 +170747174383,230,0 +170747174432,229,0 +170747174480,227,0 +170747174528,227,0 +170747174577,228,0 +170747174625,228,0 +170747174673,228,0 +170747174721,227,0 +170747174769,228,0 +170747174819,220,0 +170747174866,220,0 +170747174916,220,0 +170747174964,222,0 +170747175012,222,0 +170747175059,222,0 +170747175108,224,0 +170747175157,225,0 +170747175207,226,0 +170747175255,227,0 +170747175304,228,0 +170747175352,232,0 +170747175402,230,0 +170747175451,230,0 +170747175501,230,0 +170747175549,229,0 +170747175598,227,0 +170747175648,226,0 +170747175696,218,0 +170747175745,220,0 +170747175793,220,0 +170747175843,223,0 +170747175892,223,0 +170747175942,224,0 +170747175990,225,0 +170747176038,226,0 +170747176086,227,0 +170747176134,227,0 +170747176182,227,0 +170747176231,227,0 +170747176281,228,0 +170747176329,230,0 +170747176377,229,0 +170747176426,229,0 +170747176476,227,0 +170747176524,218,0 +170747176573,218,0 +170747176623,221,0 +170747176671,221,0 +170747176720,223,0 +170747176770,223,0 +170747176819,224,0 +170747176869,224,0 +170747176917,225,0 +170747176965,228,0 +170747177014,227,0 +170747177064,228,0 +170747177112,229,0 +170747177161,227,0 +170747177211,230,0 +170747177260,227,0 +170747177310,227,0 +170747177358,226,0 +170747177406,221,0 +170747177455,220,0 +170747177505,222,0 +170747177553,222,0 +170747177601,223,0 +170747177649,225,0 +170747177697,228,0 +170747177746,229,0 +170747177796,227,0 +170747177844,229,0 +170747177892,227,0 +170747177941,228,0 +170747177991,230,0 +170747178039,229,0 +170747178087,230,0 +170747178135,228,0 +170747178182,227,0 +170747178232,218,0 +170747178281,219,0 +170747178329,220,0 +170747178379,221,0 +170747178427,219,0 +170747178476,223,0 +170747178524,225,0 +170747178572,226,0 +170747178620,227,0 +170747178668,228,0 +170747178718,229,0 +170747178766,229,0 +170747178816,229,0 +170747178865,229,0 +170747178915,230,0 +170747178962,228,0 +170747179010,228,0 +170747179060,228,0 +170747179110,222,0 +170747179157,221,0 +170747179205,222,0 +170747179255,224,0 +170747179303,225,0 +170747179352,225,0 +170747179402,226,0 +170747179452,225,0 +170747179500,229,0 +170747179548,229,0 +170747179596,229,0 +170747179646,228,0 +170747179694,228,0 +170747179742,225,0 +170747179791,227,0 +170747179839,228,0 +170747179887,228,0 +170747179937,229,0 +170747179985,217,0 +170747180033,218,0 +170747180081,219,0 +170747180130,220,0 +170747180180,223,0 +170747180229,223,0 +170747180277,225,0 +170747180327,225,0 +170747180375,227,0 +170747180424,227,0 +170747180474,228,0 +170747180522,227,0 +170747180571,229,0 +170747180621,229,0 +170747180669,228,0 +170747180718,227,0 +170747180766,227,0 +170747180816,218,0 +170747180864,216,0 +170747180912,217,0 +170747180959,218,0 +170747181007,219,0 +170747181055,220,0 +170747181103,221,0 +170747181151,222,0 +170747181201,223,0 +170747181250,226,0 +170747181300,227,0 +170747181348,227,0 +170747181396,228,0 +170747181444,228,0 +170747181492,221,0 +170747181540,228,0 +170747181587,228,0 +170747181635,228,0 +170747181685,217,0 +170747181733,215,0 +170747181782,216,0 +170747181830,217,0 +170747181878,218,0 +170747181926,220,0 +170747181974,221,0 +170747182022,222,0 +170747182072,224,0 +170747182119,226,0 +170747182167,225,0 +170747182217,226,0 +170747182267,227,0 +170747182314,230,0 +170747182362,229,0 +170747182410,228,0 +170747182458,228,0 +170747182506,226,0 +170747182554,216,0 +170747182602,215,0 +170747182651,217,0 +170747182701,218,0 +170747182750,220,0 +170747182798,222,0 +170747182848,223,0 +170747182896,224,0 +170747182944,225,0 +170747182993,226,0 +170747183041,226,0 +170747183089,232,0 +170747183137,231,0 +170747183185,228,0 +170747183234,227,0 +170747183282,231,0 +170747183332,228,0 +170747183381,218,0 +170747183431,217,0 +170747183479,219,0 +170747183527,220,0 +170747183575,221,0 +170747183624,224,0 +170747183674,224,0 +170747183722,226,0 +170747183771,226,0 +170747183821,227,0 +170747183870,229,0 +170747183920,228,0 +170747183968,229,0 +170747184016,229,0 +170747184065,229,0 +170747184113,228,0 +170747184161,228,0 +170747184211,228,0 +170747184259,216,0 +170747184308,215,0 +170747184356,216,0 +170747184406,218,0 +170747184455,219,0 +170747184503,220,0 +170747184551,222,0 +170747184599,222,0 +170747184647,221,0 +170747184697,223,0 +170747184745,227,0 +170747184793,228,0 +170747184841,229,0 +170747184889,228,0 +170747184936,228,0 +170747184986,229,0 +170747185034,229,0 +170747185082,227,0 +170747185130,216,0 +170747185179,217,0 +170747185227,217,0 +170747185275,218,0 +170747185323,219,0 +170747185371,221,0 +170747185420,221,0 +170747185468,222,0 +170747185516,224,0 +170747185566,226,0 +170747185614,230,0 +170747185662,226,0 +170747185711,225,0 +170747185761,229,0 +170747185809,226,0 +170747185859,226,0 +170747185908,226,0 +170747185958,217,0 +170747186007,216,0 +170747186057,218,0 +170747186106,220,0 +170747186156,220,0 +170747186204,219,0 +170747186253,223,0 +170747186303,222,0 +170747186353,222,0 +170747186400,224,0 +170747186448,226,0 +170747186498,226,0 +170747186547,227,0 +170747186595,226,0 +170747186645,227,0 +170747186693,227,0 +170747186741,226,0 +170747186789,216,0 +170747186837,217,0 +170747186885,218,0 +170747186934,219,0 +170747186982,222,0 +170747187032,222,0 +170747187080,223,0 +170747187128,224,0 +170747187177,224,0 +170747187227,226,0 +170747187275,226,0 +170747187324,225,0 +170747187374,227,0 +170747187422,227,0 +170747187471,227,0 +170747187519,228,0 +170747187569,226,0 +170747187618,224,0 +170747187666,225,0 +170747187714,226,0 +170747187762,226,0 +170747187810,228,0 +170747187858,227,0 +170747187906,227,0 +170747187954,227,0 +170747188003,227,0 +170747188051,227,0 +170747188100,227,0 +170747188148,227,0 +170747188198,228,0 +170747188246,227,0 +170747188294,227,0 +170747188343,228,0 +170747188393,229,0 +170747188442,229,0 +170747188490,231,0 +170747188538,227,0 +170747188586,228,0 +170747188634,230,0 +170747188682,229,0 +170747188730,227,0 +170747188777,230,0 +170747188827,229,0 +170747188875,228,0 +170747188923,228,0 +170747188972,228,0 +170747189020,227,0 +170747189068,227,0 +170747189117,228,0 +170747189165,229,0 +170747189215,228,0 +170747189264,228,0 +170747189314,227,0 +170747189362,227,0 +170747189410,228,0 +170747189457,228,0 +170747189505,227,0 +170747189553,231,0 +170747189601,229,0 +170747189649,231,0 +170747189699,230,0 +170747189748,229,0 +170747189797,230,0 +170747189847,229,0 +170747189895,229,0 +170747189943,228,0 +170747189990,229,0 +170747190038,229,0 +170747190086,227,0 +170747190136,227,0 +170747190184,221,0 +170747190233,223,0 +170747190281,224,0 +170747190329,225,0 +170747190378,227,0 +170747190426,227,0 +170747190476,230,0 +170747190524,228,0 +170747190573,227,0 +170747190623,228,0 +170747190671,229,0 +170747190718,228,0 +170747190768,229,0 +170747190816,229,0 +170747190864,225,0 +170747190912,228,0 +170747190961,227,0 +170747191009,220,0 +170747191057,222,0 +170747191105,222,0 +170747191154,223,0 +170747191202,223,0 +170747191250,222,0 +170747191298,226,0 +170747191346,226,0 +170747191394,224,0 +170747191441,229,0 +170747191489,229,0 +170747191537,228,0 +170747191587,228,0 +170747191635,229,0 +170747191684,229,0 +170747191732,229,0 +170747191780,227,0 +170747191828,226,0 +170747191876,217,0 +170747191923,219,0 +170747191971,220,0 +170747192021,221,0 +170747192069,222,0 +170747192118,224,0 +170747192168,225,0 +170747192216,224,0 +170747192263,227,0 +170747192311,227,0 +170747192359,227,0 +170747192409,226,0 +170747192457,230,0 +170747192505,229,0 +170747192552,229,0 +170747192602,227,0 +170747192650,226,0 +170747192698,216,0 +170747192746,216,0 +170747192794,220,0 +170747192841,219,0 +170747192891,220,0 +170747192939,222,0 +170747192988,223,0 +170747193036,222,0 +170747193084,223,0 +170747193132,226,0 +170747193180,227,0 +170747193228,228,0 +170747193277,228,0 +170747193325,228,0 +170747193373,228,0 +170747193423,228,0 +170747193470,230,0 +170747193518,226,0 +170747193568,215,0 +170747193616,217,0 +170747193665,221,0 +170747193713,221,0 +170747193763,222,0 +170747193810,225,0 +170747193858,225,0 +170747193908,226,0 +170747193956,226,0 +170747194004,225,0 +170747194051,227,0 +170747194099,231,0 +170747194149,229,0 +170747194197,229,0 +170747194246,228,0 +170747194294,229,0 +170747194342,227,0 +170747194390,217,0 +170747194438,215,0 +170747194486,215,0 +170747194535,217,0 +170747194585,218,0 +170747194633,220,0 +170747194680,221,0 +170747194730,222,0 +170747194778,224,0 +170747194826,226,0 +170747194875,227,0 +170747194925,229,0 +170747194973,227,0 +170747195022,226,0 +170747195070,229,0 +170747195120,232,0 +170747195168,228,0 +170747195216,226,0 +170747195263,215,0 +170747195311,215,0 +170747195359,215,0 +170747195407,216,0 +170747195455,217,0 +170747195503,216,0 +170747195551,217,0 +170747195600,218,0 +170747195648,220,0 +170747195696,220,0 +170747195744,222,0 +170747195792,222,0 +170747195842,226,0 +170747195889,225,0 +170747195937,226,0 +170747195985,225,0 +170747196035,226,0 +170747196084,227,0 +170747196132,229,0 +170747196180,231,0 +170747196228,229,0 +170747196276,232,0 +170747196324,230,0 +170747196373,231,0 +170747196421,229,0 +170747196470,227,0 +170747196518,215,0 +170747196566,216,0 +170747196614,217,0 +170747196662,220,0 +170747196710,220,0 +170747196758,223,0 +170747196807,224,0 +170747196855,225,0 +170747196905,224,0 +170747196952,225,0 +170747197000,226,0 +170747197048,229,0 +170747197096,229,0 +170747197144,229,0 +170747197192,229,0 +170747197240,228,0 +170747197288,225,0 +170747197337,217,0 +170747197385,216,0 +170747197435,217,0 +170747197482,219,0 +170747197530,220,0 +170747197580,223,0 +170747197628,221,0 +170747197676,224,0 +170747197723,225,0 +170747197773,226,0 +170747197821,228,0 +170747197870,227,0 +170747197918,229,0 +170747197966,230,0 +170747198014,228,0 +170747198062,227,0 +170747198111,227,0 +170747198159,226,0 +170747198207,217,0 +170747198257,218,0 +170747198304,220,0 +170747198352,221,0 +170747198400,223,0 +170747198448,223,0 +170747198496,224,0 +170747198544,226,0 +170747198592,226,0 +170747198640,225,0 +170747198688,226,0 +170747198736,229,0 +170747198784,229,0 +170747198831,230,0 +170747198879,229,0 +170747198927,227,0 +170747198975,227,0 +170747199025,220,0 +170747199074,220,0 +170747199124,221,0 +170747199173,223,0 +170747199221,224,0 +170747199269,224,0 +170747199317,224,0 +170747199365,226,0 +170747199414,226,0 +170747199464,227,0 +170747199512,230,0 +170747199559,229,0 +170747199609,229,0 +170747199657,225,0 +170747199706,231,0 +170747199754,229,0 +170747199802,228,0 +170747199850,225,0 +170747199898,215,0 +170747199947,218,0 +170747199997,219,0 +170747200045,220,0 +170747200093,221,0 +170747200141,222,0 +170747200188,223,0 +170747200238,225,0 +170747200286,226,0 +170747200334,227,0 +170747200383,228,0 +170747200431,228,0 +170747200479,228,0 +170747200527,229,0 +170747200575,228,0 +170747200623,228,0 +170747200670,227,0 +170747200720,216,0 +170747200768,215,0 +170747200817,217,0 +170747200867,219,0 +170747200915,219,0 +170747200963,219,0 +170747201011,220,0 +170747201059,220,0 +170747201106,222,0 +170747201154,223,0 +170747201202,226,0 +170747201252,225,0 +170747201300,227,0 +170747201348,228,0 +170747201397,228,0 +170747201445,227,0 +170747201493,227,0 +170747201541,225,0 +170747201589,215,0 +170747201638,216,0 +170747201686,217,0 +170747201736,218,0 +170747201785,220,0 +170747201835,220,0 +170747201883,220,0 +170747201931,221,0 +170747201979,223,0 +170747202028,224,0 +170747202076,226,0 +170747202126,226,0 +170747202174,226,0 +170747202222,227,0 +170747202269,227,0 +170747202319,227,0 +170747202367,226,0 +170747202415,219,0 +170747202464,220,0 +170747202512,221,0 +170747202562,222,0 +170747202610,223,0 +170747202659,224,0 +170747202709,225,0 +170747202758,226,0 +170747202806,227,0 +170747202856,227,0 +170747202905,227,0 +170747202953,226,0 +170747203003,227,0 +170747203052,227,0 +170747203102,228,0 +170747203150,230,0 +170747203199,226,0 +170747203249,223,0 +170747203297,223,0 +170747203345,223,0 +170747203394,225,0 +170747203442,225,0 +170747203490,227,0 +170747203540,227,0 +170747203588,229,0 +170747203637,228,0 +170747203687,229,0 +170747203736,229,0 +170747203786,227,0 +170747203836,227,0 +170747203885,228,0 +170747203935,230,0 +170747203984,225,0 +170747204032,227,0 +170747204080,221,0 +170747204130,224,0 +170747204178,225,0 +170747204227,226,0 +170747204275,227,0 +170747204325,226,0 +170747204373,229,0 +170747204420,229,0 +170747204470,226,0 +170747204518,228,0 +170747204566,230,0 +170747204615,227,0 +170747204665,230,0 +170747204713,229,0 +170747204761,228,0 +170747204810,229,0 +170747204858,227,0 +170747204906,227,0 +170747204956,218,0 +170747205005,218,0 +170747205053,220,0 +170747205103,221,0 +170747205152,222,0 +170747205202,222,0 +170747205252,224,0 +170747205301,225,0 +170747205349,227,0 +170747205397,226,0 +170747205447,227,0 +170747205496,228,0 +170747205544,228,0 +170747205594,228,0 +170747205643,228,0 +170747205693,229,0 +170747205742,227,0 +170747205792,218,0 +170747205840,217,0 +170747205889,223,0 +170747205937,220,0 +170747205987,223,0 +170747206035,223,0 +170747206084,223,0 +170747206132,227,0 +170747206180,220,0 +170747206228,227,0 +170747206278,227,0 +170747206326,227,0 +170747206374,232,0 +170747206422,230,0 +170747206470,229,0 +170747206518,227,0 +170747206565,226,0 +170747206613,219,0 +170747206661,218,0 +170747206709,219,0 +170747206759,219,0 +170747206808,221,0 +170747206856,222,0 +170747206905,223,0 +170747206955,224,0 +170747207003,226,0 +170747207052,226,0 +170747207102,227,0 +170747207150,223,0 +170747207199,228,0 +170747207247,230,0 +170747207297,230,0 +170747207345,229,0 +170747207393,228,0 +170747207441,228,0 +170747207489,219,0 +170747207536,218,0 +170747207584,220,0 +170747207632,221,0 +170747207682,223,0 +170747207731,226,0 +170747207781,226,0 +170747207829,222,0 +170747207878,231,0 +170747207926,226,0 +170747207974,229,0 +170747208024,227,0 +170747208072,227,0 +170747208121,228,0 +170747208171,229,0 +170747208219,229,0 +170747208268,228,0 +170747208316,221,0 +170747208366,219,0 +170747208415,221,0 +170747208463,222,0 +170747208513,226,0 +170747208561,223,0 +170747208608,225,0 +170747208658,225,0 +170747208706,227,0 +170747208754,228,0 +170747208802,228,0 +170747208850,229,0 +170747208899,229,0 +170747208947,229,0 +170747208995,230,0 +170747209043,227,0 +170747209091,228,0 +170747209139,227,0 +170747209187,217,0 +170747209234,223,0 +170747209282,222,0 +170747209332,224,0 +170747209382,224,0 +170747209429,225,0 +170747209479,226,0 +170747209527,229,0 +170747209575,228,0 +170747209624,229,0 +170747209672,229,0 +170747209722,229,0 +170747209770,229,0 +170747209818,229,0 +170747209867,227,0 +170747209915,228,0 +170747209965,227,0 +170747210014,220,0 +170747210062,220,0 +170747210110,221,0 +170747210158,222,0 +170747210206,224,0 +170747210255,225,0 +170747210304,226,0 +170747210352,224,0 +170747210400,226,0 +170747210448,227,0 +170747210496,230,0 +170747210546,228,0 +170747210595,229,0 +170747210643,231,0 +170747210693,228,0 +170747210741,231,0 +170747210789,228,0 +170747210838,218,0 +170747210888,219,0 +170747210936,220,0 +170747210983,224,0 +170747211031,224,0 +170747211079,224,0 +170747211127,226,0 +170747211177,227,0 +170747211225,228,0 +170747211273,230,0 +170747211320,227,0 +170747211368,229,0 +170747211416,228,0 +170747211466,229,0 +170747211515,229,0 +170747211563,229,0 +170747211611,228,0 +170747211659,228,0 +170747211707,219,0 +170747211757,219,0 +170747211806,221,0 +170747211856,222,0 +170747211905,223,0 +170747211953,226,0 +170747212003,228,0 +170747212051,232,0 +170747212101,228,0 +170747212150,228,0 +170747212198,228,0 +170747212246,230,0 +170747212294,226,0 +170747212342,226,0 +170747212390,232,0 +170747212439,229,0 +170747212487,227,0 +170747212536,220,0 +170747212584,218,0 +170747212632,219,0 +170747212680,222,0 +170747212730,220,0 +170747212779,223,0 +170747212829,225,0 +170747212877,226,0 +170747212925,226,0 +170747212973,227,0 +170747213021,227,0 +170747213070,230,0 +170747213118,231,0 +170747213166,230,0 +170747213214,229,0 +170747213262,228,0 +170747213311,229,0 +170747213361,227,0 +170747213411,216,0 +170747213460,217,0 +170747213508,218,0 +170747213558,220,0 +170747213606,221,0 +170747213654,222,0 +170747213703,224,0 +170747213753,225,0 +170747213802,225,0 +170747213852,226,0 +170747213901,227,0 +170747213949,228,0 +170747213999,219,0 +170747214047,229,0 +170747214096,229,0 +170747214146,228,0 +170747214195,227,0 +170747214245,216,0 +170747214293,216,0 +170747214341,216,0 +170747214390,218,0 +170747214440,220,0 +170747214488,221,0 +170747214537,221,0 +170747214585,222,0 +170747214635,224,0 +170747214683,227,0 +170747214731,226,0 +170747214780,228,0 +170747214828,228,0 +170747214876,230,0 +170747214924,228,0 +170747214972,227,0 +170747215019,227,0 +170747215069,216,0 +170747215117,218,0 +170747215165,218,0 +170747215213,219,0 +170747215261,222,0 +170747215310,220,0 +170747215359,221,0 +170747215407,222,0 +170747215455,224,0 +170747215503,225,0 +170747215551,228,0 +170747215601,226,0 +170747215649,227,0 +170747215697,226,0 +170747215745,225,0 +170747215793,227,0 +170747215842,228,0 +170747215892,227,0 +170747215940,215,0 +170747215987,218,0 +170747216037,219,0 +170747216085,219,0 +170747216133,221,0 +170747216181,223,0 +170747216228,224,0 +170747216276,224,0 +170747216324,225,0 +170747216372,227,0 +170747216420,227,0 +170747216470,229,0 +170747216518,227,0 +170747216565,227,0 +170747216613,228,0 +170747216661,227,0 +170747216711,227,0 +170747216760,216,0 +170747216808,217,0 +170747216856,219,0 +170747216906,220,0 +170747216955,220,0 +170747217005,221,0 +170747217053,221,0 +170747217101,223,0 +170747217150,224,0 +170747217200,222,0 +170747217248,225,0 +170747217296,226,0 +170747217345,226,0 +170747217393,227,0 +170747217441,227,0 +170747217491,227,0 +170747217540,226,0 +170747217590,219,0 +170747217638,219,0 +170747217686,220,0 +170747217734,222,0 +170747217783,223,0 +170747217833,223,0 +170747217881,224,0 +170747217930,225,0 +170747217978,227,0 +170747218026,227,0 +170747218076,226,0 +170747218124,227,0 +170747218172,230,0 +170747218221,227,0 +170747218271,227,0 +170747218320,228,0 +170747218368,227,0 +170747218416,226,0 +170747218464,224,0 +170747218512,226,0 +170747218562,225,0 +170747218611,226,0 +170747218661,226,0 +170747218709,229,0 +170747218756,227,0 +170747218804,224,0 +170747218852,228,0 +170747218902,231,0 +170747218950,228,0 +170747219000,229,0 +170747219049,229,0 +170747219099,229,0 +170747219147,227,0 +170747219195,228,0 +170747219243,227,0 +170747219292,223,0 +170747219342,225,0 +170747219390,224,0 +170747219438,226,0 +170747219487,228,0 +170747219537,227,0 +170747219585,228,0 +170747219633,230,0 +170747219682,230,0 +170747219732,233,0 +170747219781,229,0 +170747219831,227,0 +170747219880,229,0 +170747219928,228,0 +170747219976,228,0 +170747220024,228,0 +170747220072,228,0 +170747220122,226,0 +170747220170,216,0 +170747220218,216,0 +170747220267,217,0 +170747220317,219,0 +170747220365,221,0 +170747220414,224,0 +170747220462,224,0 +170747220512,224,0 +170747220561,225,0 +170747220609,230,0 +170747220659,228,0 +170747220708,227,0 +170747220758,229,0 +170747220807,229,0 +170747220857,229,0 +170747220907,230,0 +170747220955,227,0 +170747221002,217,0 +170747221050,216,0 +170747221100,217,0 +170747221149,217,0 +170747221197,219,0 +170747221245,219,0 +170747221293,221,0 +170747221341,222,0 +170747221391,223,0 +170747221439,225,0 +170747221488,227,0 +170747221538,228,0 +170747221587,230,0 +170747221635,229,0 +170747221684,230,0 +170747221732,229,0 +170747221779,228,0 +170747221827,218,0 +170747221875,216,0 +170747221923,216,0 +170747221971,218,0 +170747222021,218,0 +170747222068,217,0 +170747222116,222,0 +170747222164,223,0 +170747222212,223,0 +170747222260,224,0 +170747222309,226,0 +170747222357,227,0 +170747222405,229,0 +170747222455,228,0 +170747222503,224,0 +170747222552,229,0 +170747222602,228,0 +170747222651,228,0 +170747222699,216,0 +170747222749,217,0 +170747222797,218,0 +170747222845,220,0 +170747222893,219,0 +170747222941,221,0 +170747222990,222,0 +170747223038,223,0 +170747223086,223,0 +170747223136,226,0 +170747223184,226,0 +170747223232,226,0 +170747223281,229,0 +170747223329,227,0 +170747223379,227,0 +170747223428,228,0 +170747223476,226,0 +170747223526,218,0 +170747223574,219,0 +170747223623,222,0 +170747223673,223,0 +170747223722,222,0 +170747223772,225,0 +170747223820,224,0 +170747223869,226,0 +170747223917,228,0 +170747223967,226,0 +170747224015,229,0 +170747224064,230,0 +170747224112,230,0 +170747224160,227,0 +170747224210,228,0 +170747224258,227,0 +170747224307,228,0 +170747224357,220,0 +170747224405,219,0 +170747224454,220,0 +170747224504,223,0 +170747224552,223,0 +170747224600,224,0 +170747224648,224,0 +170747224697,226,0 +170747224747,228,0 +170747224796,227,0 +170747224846,228,0 +170747224895,227,0 +170747224943,229,0 +170747224991,229,0 +170747225041,229,0 +170747225090,229,0 +170747225140,228,0 +170747225188,226,0 +170747225236,219,0 +170747225285,220,0 +170747225333,222,0 +170747225381,221,0 +170747225429,225,0 +170747225477,226,0 +170747225527,225,0 +170747225575,226,0 +170747225623,230,0 +170747225671,227,0 +170747225720,226,0 +170747225768,228,0 +170747225816,229,0 +170747225866,229,0 +170747225914,228,0 +170747225962,227,0 +170747226011,227,0 +170747226061,218,0 +170747226110,218,0 +170747226160,219,0 +170747226209,221,0 +170747226257,223,0 +170747226307,223,0 +170747226356,224,0 +170747226406,224,0 +170747226456,228,0 +170747226505,228,0 +170747226553,229,0 +170747226603,229,0 +170747226652,229,0 +170747226702,229,0 +170747226751,227,0 +170747226799,227,0 +170747226847,227,0 +170747226897,221,0 +170747226945,218,0 +170747226994,220,0 +170747227044,221,0 +170747227093,222,0 +170747227143,224,0 +170747227192,228,0 +170747227242,226,0 +170747227291,227,0 +170747227339,229,0 +170747227387,227,0 +170747227437,227,0 +170747227486,228,0 +170747227536,229,0 +170747227585,228,0 +170747227633,228,0 +170747227681,228,0 +170747227729,221,0 +170747227777,221,0 +170747227827,222,0 +170747227876,223,0 +170747227924,223,0 +170747227974,224,0 +170747228023,225,0 +170747228073,227,0 +170747228121,227,0 +170747228169,227,0 +170747228217,230,0 +170747228265,230,0 +170747228313,229,0 +170747228362,229,0 +170747228412,230,0 +170747228460,228,0 +170747228508,228,0 +170747228557,228,0 +170747228607,221,0 +170747228655,222,0 +170747228703,222,0 +170747228752,224,0 +170747228800,224,0 +170747228850,226,0 +170747228898,225,0 +170747228946,226,0 +170747228994,227,0 +170747229041,229,0 +170747229091,230,0 +170747229139,228,0 +170747229187,228,0 +170747229237,228,0 +170747229286,230,0 +170747229334,228,0 +170747229384,227,0 +170747229433,219,0 +170747229483,220,0 +170747229532,223,0 +170747229582,222,0 +170747229630,225,0 +170747229678,226,0 +170747229727,227,0 +170747229777,226,0 +170747229826,227,0 +170747229876,234,0 +170747229925,228,0 +170747229973,227,0 +170747230021,230,0 +170747230069,229,0 +170747230119,229,0 +170747230167,232,0 +170747230216,227,0 +170747230266,218,0 +170747230315,216,0 +170747230363,214,0 +170747230411,218,0 +170747230461,220,0 +170747230508,225,0 +170747230558,222,0 +170747230606,224,0 +170747230654,225,0 +170747230702,225,0 +170747230750,227,0 +170747230798,228,0 +170747230846,228,0 +170747230894,229,0 +170747230943,227,0 +170747230993,228,0 +170747231041,227,0 +170747231089,226,0 +170747231137,215,0 +170747231184,216,0 +170747231232,217,0 +170747231280,218,0 +170747231330,219,0 +170747231378,221,0 +170747231428,223,0 +170747231477,221,0 +170747231527,224,0 +170747231576,224,0 +170747231624,226,0 +170747231674,227,0 +170747231723,226,0 +170747231771,227,0 +170747231819,227,0 +170747231867,227,0 +170747231915,227,0 +170747231965,217,0 +170747232012,216,0 +170747232062,218,0 +170747232110,217,0 +170747232158,219,0 +170747232206,221,0 +170747232254,221,0 +170747232302,222,0 +170747232350,225,0 +170747232398,224,0 +170747232445,225,0 +170747232493,226,0 +170747232541,227,0 +170747232589,227,0 +170747232637,227,0 +170747232687,229,0 +170747232736,226,0 +170747232786,218,0 +170747232835,217,0 +170747232885,220,0 +170747232933,221,0 +170747232982,223,0 +170747233032,224,0 +170747233080,225,0 +170747233128,225,0 +170747233176,225,0 +170747233226,226,0 +170747233273,228,0 +170747233323,228,0 +170747233373,228,0 +170747233422,227,0 +170747233472,227,0 +170747233520,228,0 +170747233567,228,0 +170747233615,226,0 +170747233663,222,0 +170747233711,223,0 +170747233761,224,0 +170747233810,226,0 +170747233860,227,0 +170747233910,229,0 +170747233958,228,0 +170747234007,229,0 +170747234055,229,0 +170747234103,229,0 +170747234151,228,0 +170747234199,225,0 +170747234248,228,0 +170747234296,229,0 +170747234344,229,0 +170747234392,227,0 +170747234442,226,0 +170747234491,224,0 +170747234541,226,0 +170747234591,226,0 +170747234640,225,0 +170747234690,227,0 +170747234738,226,0 +170747234786,229,0 +170747234834,230,0 +170747234883,227,0 +170747234931,228,0 +170747234980,230,0 +170747235028,230,0 +170747235078,225,0 +170747235127,228,0 +170747235175,229,0 +170747235223,228,0 +170747235273,227,0 +170747235322,218,0 +170747235372,220,0 +170747235422,221,0 +170747235471,222,0 +170747235521,222,0 +170747235570,225,0 +170747235620,225,0 +170747235668,225,0 +170747235717,224,0 +170747235767,227,0 +170747235816,226,0 +170747235864,233,0 +170747235912,233,0 +170747235962,229,0 +170747236010,229,0 +170747236058,229,0 +170747236107,229,0 +170747236157,225,0 +170747236206,220,0 +170747236256,220,0 +170747236304,221,0 +170747236353,221,0 +170747236401,223,0 +170747236451,226,0 +170747236499,224,0 +170747236547,225,0 +170747236595,228,0 +170747236644,228,0 +170747236692,228,0 +170747236742,228,0 +170747236791,228,0 +170747236841,231,0 +170747236890,230,0 +170747236938,228,0 +170747236986,226,0 +170747237034,220,0 +170747237083,220,0 +170747237133,221,0 +170747237183,227,0 +170747237230,224,0 +170747237278,225,0 +170747237326,226,0 +170747237376,225,0 +170747237424,230,0 +170747237472,229,0 +170747237520,228,0 +170747237569,231,0 +170747237619,228,0 +170747237669,220,0 +170747237718,227,0 +170747237768,227,0 +170747237815,227,0 +170747237863,218,0 +170747237911,219,0 +170747237959,220,0 +170747238007,222,0 +170747238055,223,0 +170747238103,225,0 +170747238151,224,0 +170747238200,227,0 +170747238248,227,0 +170747238298,229,0 +170747238346,229,0 +170747238395,230,0 +170747238443,228,0 +170747238491,228,0 +170747238540,228,0 +170747238588,227,0 +170747238638,228,0 +170747238686,226,0 +170747238733,217,0 +170747238781,218,0 +170747238829,219,0 +170747238877,221,0 +170747238925,222,0 +170747238973,225,0 +170747239022,227,0 +170747239070,227,0 +170747239118,228,0 +170747239167,229,0 +170747239217,231,0 +170747239265,231,0 +170747239314,229,0 +170747239362,229,0 +170747239410,231,0 +170747239458,228,0 +170747239506,225,0 +170747239554,217,0 +170747239602,218,0 +170747239650,220,0 +170747239698,222,0 +170747239746,223,0 +170747239794,225,0 +170747239842,224,0 +170747239889,227,0 +170747239937,227,0 +170747239987,226,0 +170747240035,228,0 +170747240083,230,0 +170747240131,229,0 +170747240178,225,0 +170747240226,229,0 +170747240274,228,0 +170747240322,228,0 +170747240370,227,0 +170747240419,216,0 +170747240469,217,0 +170747240518,219,0 +170747240568,220,0 +170747240616,222,0 +170747240666,221,0 +170747240715,223,0 +170747240763,225,0 +170747240811,227,0 +170747240860,228,0 +170747240908,226,0 +170747240958,227,0 +170747241007,229,0 +170747241055,230,0 +170747241103,229,0 +170747241151,228,0 +170747241199,229,0 +170747241247,217,0 +170747241295,217,0 +170747241343,218,0 +170747241391,219,0 +170747241439,221,0 +170747241488,224,0 +170747241536,224,0 +170747241585,223,0 +170747241633,225,0 +170747241681,226,0 +170747241729,227,0 +170747241777,227,0 +170747241825,228,0 +170747241873,229,0 +170747241922,231,0 +170747241970,229,0 +170747242018,229,0 +170747242066,226,0 +170747242116,216,0 +170747242165,215,0 +170747242213,216,0 +170747242261,218,0 +170747242311,219,0 +170747242360,221,0 +170747242410,221,0 +170747242458,223,0 +170747242506,224,0 +170747242555,224,0 +170747242603,229,0 +170747242651,227,0 +170747242699,227,0 +170747242747,229,0 +170747242796,228,0 +170747242844,229,0 +170747242894,227,0 +170747242942,217,0 +170747242990,216,0 +170747243038,214,0 +170747243086,218,0 +170747243134,219,0 +170747243182,221,0 +170747243231,221,0 +170747243279,223,0 +170747243327,224,0 +170747243377,226,0 +170747243426,228,0 +170747243476,229,0 +170747243523,228,0 +170747243571,228,0 +170747243619,229,0 +170747243667,229,0 +170747243717,228,0 +170747243765,227,0 +170747243813,216,0 +170747243861,216,0 +170747243909,217,0 +170747243958,219,0 +170747244008,220,0 +170747244057,222,0 +170747244105,223,0 +170747244153,223,0 +170747244203,230,0 +170747244251,225,0 +170747244300,226,0 +170747244348,227,0 +170747244398,229,0 +170747244447,229,0 +170747244497,228,0 +170747244545,229,0 +170747244593,225,0 +170747244642,216,0 +170747244692,215,0 +170747244740,216,0 +170747244789,218,0 +170747244837,219,0 +170747244887,221,0 +170747244936,222,0 +170747244984,224,0 +170747245032,224,0 +170747245080,224,0 +170747245130,227,0 +170747245178,226,0 +170747245227,229,0 +170747245277,228,0 +170747245325,229,0 +170747245373,228,0 +170747245421,227,0 +170747245469,217,0 +170747245517,215,0 +170747245566,215,0 +170747245616,217,0 +170747245664,218,0 +170747245713,219,0 +170747245761,220,0 +170747245811,222,0 +170747245860,222,0 +170747245910,222,0 +170747245958,223,0 +170747246006,227,0 +170747246053,227,0 +170747246103,227,0 +170747246152,228,0 +170747246200,227,0 +170747246250,227,0 +170747246298,227,0 +170747246347,215,0 +170747246397,217,0 +170747246446,216,0 +170747246494,219,0 +170747246544,220,0 +170747246593,222,0 +170747246641,223,0 +170747246691,223,0 +170747246739,224,0 +170747246788,226,0 +170747246838,226,0 +170747246887,226,0 +170747246937,228,0 +170747246985,227,0 +170747247034,228,0 +170747247084,230,0 +170747247134,228,0 +170747247182,216,0 +170747247229,216,0 +170747247279,216,0 +170747247327,219,0 +170747247375,219,0 +170747247423,221,0 +170747247471,222,0 +170747247520,222,0 +170747247568,224,0 +170747247618,226,0 +170747247666,225,0 +170747247715,226,0 +170747247765,227,0 +170747247813,227,0 +170747247862,227,0 +170747247912,227,0 +170747247960,228,0 +170747248009,220,0 +170747248059,220,0 +170747248108,221,0 +170747248156,222,0 +170747248206,223,0 +170747248255,225,0 +170747248303,225,0 +170747248351,226,0 +170747248399,227,0 +170747248449,227,0 +170747248498,227,0 +170747248546,228,0 +170747248596,227,0 +170747248644,228,0 +170747248693,227,0 +170747248741,227,0 +170747248791,227,0 +170747248839,227,0 +170747248888,226,0 +170747248936,226,0 +170747248984,227,0 +170747249032,228,0 +170747249080,227,0 +170747249128,229,0 +170747249176,228,0 +170747249225,228,0 +170747249273,228,0 +170747249321,230,0 +170747249369,228,0 +170747249417,227,0 +170747249465,227,0 +170747249513,227,0 +170747249561,229,0 +170747249608,227,0 +170747249656,228,0 +170747249704,228,0 +170747249752,227,0 +170747249800,230,0 +170747249848,229,0 +170747249896,230,0 +170747249944,230,0 +170747249994,229,0 +170747250041,229,0 +170747250091,230,0 +170747250139,228,0 +170747250187,228,0 +170747250237,229,0 +170747250284,228,0 +170747250334,230,0 +170747250382,228,0 +170747250430,226,0 +170747250478,226,0 +170747250527,226,0 +170747250575,221,0 +170747250623,221,0 +170747250673,225,0 +170747250721,223,0 +170747250771,225,0 +170747250820,226,0 +170747250868,227,0 +170747250916,228,0 +170747250964,229,0 +170747251012,229,0 +170747251061,228,0 +170747251109,228,0 +170747251157,228,0 +170747251205,228,0 +170747251253,228,0 +170747251301,228,0 +170747251349,225,0 +170747251397,222,0 +170747251445,221,0 +170747251495,223,0 +170747251542,223,0 +170747251590,225,0 +170747251638,226,0 +170747251686,226,0 +170747251734,228,0 +170747251784,227,0 +170747251833,230,0 +170747251881,226,0 +170747251929,222,0 +170747251979,230,0 +170747252027,236,0 +170747252075,231,0 +170747252123,228,0 +170747252172,228,0 +170747252220,226,0 +170747252270,218,0 +170747252318,220,0 +170747252367,219,0 +170747252417,222,0 +170747252466,222,0 +170747252516,225,0 +170747252565,225,0 +170747252613,227,0 +170747252661,229,0 +170747252709,229,0 +170747252757,227,0 +170747252805,230,0 +170747252853,228,0 +170747252901,228,0 +170747252951,230,0 +170747252999,227,0 +170747253048,228,0 +170747253096,219,0 +170747253144,218,0 +170747253192,220,0 +170747253241,221,0 +170747253289,221,0 +170747253339,224,0 +170747253388,224,0 +170747253436,224,0 +170747253486,226,0 +170747253534,227,0 +170747253582,230,0 +170747253631,227,0 +170747253679,229,0 +170747253727,228,0 +170747253775,228,0 +170747253823,228,0 +170747253871,227,0 +170747253919,217,0 +170747253968,219,0 +170747254018,219,0 +170747254067,221,0 +170747254117,221,0 +170747254165,225,0 +170747254214,221,0 +170747254262,226,0 +170747254312,224,0 +170747254360,226,0 +170747254408,227,0 +170747254457,227,0 +170747254505,228,0 +170747254553,232,0 +170747254603,227,0 +170747254652,228,0 +170747254702,227,0 +170747254751,226,0 +170747254801,216,0 +170747254849,217,0 +170747254897,219,0 +170747254945,220,0 +170747254994,221,0 +170747255044,223,0 +170747255093,224,0 +170747255141,227,0 +170747255189,227,0 +170747255237,227,0 +170747255287,228,0 +170747255335,229,0 +170747255383,228,0 +170747255431,228,0 +170747255480,229,0 +170747255530,228,0 +170747255579,226,0 +170747255629,217,0 +170747255678,216,0 +170747255728,216,0 +170747255777,217,0 +170747255825,220,0 +170747255873,221,0 +170747255923,221,0 +170747255971,222,0 +170747256020,223,0 +170747256068,225,0 +170747256116,228,0 +170747256166,227,0 +170747256214,228,0 +170747256262,227,0 +170747256311,228,0 +170747256361,228,0 +170747256410,228,0 +170747256458,226,0 +170747256508,215,0 +170747256556,215,0 +170747256605,217,0 +170747256655,219,0 +170747256704,221,0 +170747256754,222,0 +170747256802,224,0 +170747256851,224,0 +170747256899,224,0 +170747256947,225,0 +170747256997,235,0 +170747257047,231,0 +170747257094,230,0 +170747257144,227,0 +170747257192,227,0 +170747257240,228,0 +170747257288,225,0 +170747257336,216,0 +170747257385,218,0 +170747257435,220,0 +170747257484,222,0 +170747257532,223,0 +170747257580,223,0 +170747257630,224,0 +170747257679,225,0 +170747257729,225,0 +170747257779,226,0 +170747257828,229,0 +170747257878,228,0 +170747257927,228,0 +170747257977,228,0 +170747258026,230,0 +170747258076,229,0 +170747258124,227,0 +170747258172,216,0 +170747258220,217,0 +170747258268,218,0 +170747258316,219,0 +170747258365,220,0 +170747258413,218,0 +170747258462,222,0 +170747258510,224,0 +170747258560,224,0 +170747258608,225,0 +170747258656,230,0 +170747258706,230,0 +170747258754,229,0 +170747258803,229,0 +170747258853,230,0 +170747258902,226,0 +170747258950,233,0 +170747258998,218,0 +170747259048,215,0 +170747259097,219,0 +170747259147,219,0 +170747259196,221,0 +170747259246,222,0 +170747259295,223,0 +170747259345,224,0 +170747259394,226,0 +170747259442,228,0 +170747259492,228,0 +170747259542,228,0 +170747259590,229,0 +170747259639,229,0 +170747259687,231,0 +170747259737,228,0 +170747259784,228,0 +170747259832,218,0 +170747259880,216,0 +170747259928,218,0 +170747259978,219,0 +170747260026,219,0 +170747260075,222,0 +170747260123,223,0 +170747260171,221,0 +170747260221,223,0 +170747260269,225,0 +170747260318,229,0 +170747260368,227,0 +170747260416,227,0 +170747260466,228,0 +170747260515,229,0 +170747260563,228,0 +170747260611,227,0 +170747260660,219,0 +170747260708,218,0 +170747260756,219,0 +170747260804,220,0 +170747260854,222,0 +170747260902,224,0 +170747260950,228,0 +170747260999,226,0 +170747261049,225,0 +170747261097,227,0 +170747261147,228,0 +170747261196,228,0 +170747261246,228,0 +170747261295,228,0 +170747261345,228,0 +170747261394,228,0 +170747261442,229,0 +170747261490,220,0 +170747261538,217,0 +170747261588,218,0 +170747261637,220,0 +170747261685,221,0 +170747261733,221,0 +170747261783,223,0 +170747261831,224,0 +170747261879,226,0 +170747261928,225,0 +170747261978,224,0 +170747262027,229,0 +170747262077,227,0 +170747262126,225,0 +170747262176,227,0 +170747262224,228,0 +170747262272,228,0 +170747262320,226,0 +170747262369,217,0 +170747262419,218,0 +170747262467,218,0 +170747262515,219,0 +170747262563,222,0 +170747262612,222,0 +170747262662,224,0 +170747262711,225,0 +170747262761,225,0 +170747262810,229,0 +170747262860,227,0 +170747262908,227,0 +170747262956,228,0 +170747263004,228,0 +170747263053,228,0 +170747263101,227,0 +170747263151,217,0 +170747263200,218,0 +170747263250,219,0 +170747263298,220,0 +170747263346,222,0 +170747263395,223,0 +170747263443,224,0 +170747263491,227,0 +170747263541,226,0 +170747263589,226,0 +170747263637,227,0 +170747263686,228,0 +170747263736,228,0 +170747263784,228,0 +170747263832,227,0 +170747263881,228,0 +170747263931,226,0 +170747263979,222,0 +170747264028,223,0 +170747264078,224,0 +170747264126,225,0 +170747264175,224,0 +170747264225,227,0 +170747264274,228,0 +170747264324,229,0 +170747264372,228,0 +170747264422,228,0 +170747264469,229,0 +170747264517,228,0 +170747264565,229,0 +170747264615,232,0 +170747264664,228,0 +170747264712,226,0 +170747264760,228,0 +170747264808,227,0 +170747264858,223,0 +170747264907,223,0 +170747264955,224,0 +170747265003,225,0 +170747265051,227,0 +170747265099,228,0 +170747265149,227,0 +170747265197,228,0 +170747265246,229,0 +170747265294,228,0 +170747265342,230,0 +170747265392,228,0 +170747265440,228,0 +170747265488,228,0 +170747265537,229,0 +170747265587,227,0 +170747265636,225,0 +170747265686,220,0 +170747265734,220,0 +170747265783,220,0 +170747265833,222,0 +170747265882,224,0 +170747265930,226,0 +170747265978,228,0 +170747266026,228,0 +170747266074,227,0 +170747266123,227,0 +170747266171,239,0 +170747266221,233,0 +170747266270,229,0 +170747266320,231,0 +170747266368,232,0 +170747266416,229,0 +170747266465,226,0 +170747266515,215,0 +170747266563,219,0 +170747266612,221,0 +170747266660,221,0 +170747266710,222,0 +170747266758,221,0 +170747266807,224,0 +170747266857,226,0 +170747266905,227,0 +170747266954,228,0 +170747267002,229,0 +170747267050,229,0 +170747267098,227,0 +170747267146,229,0 +170747267194,229,0 +170747267242,228,0 +170747267290,228,0 +170747267339,217,0 +170747267387,219,0 +170747267437,220,0 +170747267485,221,0 +170747267533,221,0 +170747267582,224,0 +170747267630,224,0 +170747267678,226,0 +170747267728,225,0 +170747267776,225,0 +170747267824,230,0 +170747267872,229,0 +170747267921,228,0 +170747267971,229,0 +170747268020,229,0 +170747268068,224,0 +170747268116,226,0 +170747268166,217,0 +170747268215,218,0 +170747268263,220,0 +170747268312,219,0 +170747268360,222,0 +170747268408,227,0 +170747268458,225,0 +170747268507,225,0 +170747268557,228,0 +170747268605,229,0 +170747268653,230,0 +170747268702,229,0 +170747268750,233,0 +170747268800,229,0 +170747268849,224,0 +170747268897,227,0 +170747268946,226,0 +170747268994,218,0 +170747269044,218,0 +170747269092,220,0 +170747269140,221,0 +170747269189,222,0 +170747269237,225,0 +170747269287,224,0 +170747269335,223,0 +170747269384,228,0 +170747269434,227,0 +170747269483,231,0 +170747269531,231,0 +170747269579,230,0 +170747269627,229,0 +170747269675,228,0 +170747269723,228,0 +170747269771,228,0 +170747269819,220,0 +170747269867,219,0 +170747269915,221,0 +170747269963,221,0 +170747270012,224,0 +170747270062,226,0 +170747270110,226,0 +170747270158,226,0 +170747270206,228,0 +170747270254,229,0 +170747270303,228,0 +170747270353,227,0 +170747270401,234,0 +170747270450,229,0 +170747270498,228,0 +170747270546,228,0 +170747270594,227,0 +170747270643,218,0 +170747270691,219,0 +170747270739,220,0 +170747270787,225,0 +170747270835,223,0 +170747270884,223,0 +170747270934,225,0 +170747270982,227,0 +170747271030,226,0 +170747271078,228,0 +170747271125,229,0 +170747271173,229,0 +170747271223,230,0 +170747271271,230,0 +170747271320,229,0 +170747271368,229,0 +170747271418,228,0 +170747271466,226,0 +170747271514,219,0 +170747271562,220,0 +170747271611,220,0 +170747271661,222,0 +170747271709,222,0 +170747271757,223,0 +170747271806,225,0 +170747271856,228,0 +170747271905,227,0 +170747271953,229,0 +170747272001,227,0 +170747272049,228,0 +170747272099,229,0 +170747272149,239,0 +170747272198,229,0 +170747272248,228,0 +170747272295,227,0 +170747272345,221,0 +170747272393,222,0 +170747272441,221,0 +170747272490,223,0 +170747272540,224,0 +170747272588,225,0 +170747272636,227,0 +170747272685,227,0 +170747272735,228,0 +170747272785,229,0 +170747272833,231,0 +170747272881,228,0 +170747272929,228,0 +170747272978,228,0 +170747273028,228,0 +170747273076,228,0 +170747273124,227,0 +170747273172,220,0 +170747273219,220,0 +170747273269,221,0 +170747273317,223,0 +170747273365,223,0 +170747273413,228,0 +170747273461,227,0 +170747273511,227,0 +170747273558,230,0 +170747273608,229,0 +170747273656,230,0 +170747273706,226,0 +170747273754,228,0 +170747273803,228,0 +170747273853,229,0 +170747273901,228,0 +170747273949,227,0 +170747273998,219,0 +170747274048,219,0 +170747274097,223,0 +170747274147,222,0 +170747274195,222,0 +170747274243,225,0 +170747274291,225,0 +170747274340,228,0 +170747274388,228,0 +170747274436,227,0 +170747274484,228,0 +170747274532,227,0 +170747274582,228,0 +170747274630,231,0 +170747274679,229,0 +170747274727,229,0 +170747274777,227,0 +170747274826,218,0 +170747274874,218,0 +170747274924,219,0 +170747274972,221,0 +170747275020,221,0 +170747275068,223,0 +170747275117,225,0 +170747275165,226,0 +170747275213,228,0 +170747275263,227,0 +170747275312,230,0 +170747275362,230,0 +170747275411,230,0 +170747275459,228,0 +170747275509,231,0 +170747275559,227,0 +170747275607,228,0 +170747275654,217,0 +170747275703,215,0 +170747275752,216,0 +170747275802,218,0 +170747275850,219,0 +170747275898,221,0 +170747275945,221,0 +170747275995,222,0 +170747276045,226,0 +170747276094,224,0 +170747276142,227,0 +170747276190,228,0 +170747276238,227,0 +170747276286,229,0 +170747276335,227,0 +170747276383,228,0 +170747276432,228,0 +170747276479,222,0 +170747276529,216,0 +170747276579,215,0 +170747276627,216,0 +170747276675,218,0 +170747276724,221,0 +170747276772,221,0 +170747276822,223,0 +170747276871,223,0 +170747276919,224,0 +170747276969,224,0 +170747277018,225,0 +170747277068,234,0 +170747277117,226,0 +170747277165,225,0 +170747277213,229,0 +170747277263,228,0 +170747277311,227,0 +170747277360,215,0 +170747277408,217,0 +170747277458,218,0 +170747277507,219,0 +170747277557,219,0 +170747277606,220,0 +170747277654,222,0 +170747277704,222,0 +170747277753,224,0 +170747277801,226,0 +170747277851,228,0 +170747277900,229,0 +170747277948,227,0 +170747277998,228,0 +170747278046,228,0 +170747278096,227,0 +170747278145,227,0 +170747278193,216,0 +170747278241,216,0 +170747278290,220,0 +170747278338,220,0 +170747278386,220,0 +170747278434,221,0 +170747278484,222,0 +170747278532,223,0 +170747278582,224,0 +170747278631,227,0 +170747278681,227,0 +170747278730,226,0 +170747278778,227,0 +170747278826,227,0 +170747278876,228,0 +170747278924,228,0 +170747278973,227,0 +170747279021,222,0 +170747279069,222,0 +170747279117,223,0 +170747279165,225,0 +170747279214,228,0 +170747279262,226,0 +170747279310,227,0 +170747279358,227,0 +170747279406,229,0 +170747279454,228,0 +170747279501,228,0 +170747279549,228,0 +170747279597,228,0 +170747279647,227,0 +170747279695,229,0 +170747279743,227,0 +170747279790,227,0 +170747279838,221,0 +170747279886,220,0 +170747279936,222,0 +170747279984,223,0 diff --git a/laser_value/0209-20.csv b/laser_value/0209-20.csv new file mode 100644 index 0000000..322d3aa --- /dev/null +++ b/laser_value/0209-20.csv @@ -0,0 +1,7417 @@ +timestamp,laser_value,event +170747280034,225,0 +170747280082,226,0 +170747280132,227,0 +170747280180,228,0 +170747280227,228,0 +170747280275,229,0 +170747280323,228,0 +170747280371,226,0 +170747280420,229,0 +170747280470,230,0 +170747280518,227,0 +170747280566,228,0 +170747280614,227,0 +170747280662,227,0 +170747280710,215,0 +170747280758,217,0 +170747280805,219,0 +170747280853,220,0 +170747280901,222,0 +170747280951,222,0 +170747280999,222,0 +170747281046,223,0 +170747281094,226,0 +170747281142,226,0 +170747281190,227,0 +170747281238,229,0 +170747281286,228,0 +170747281334,227,0 +170747281382,228,0 +170747281430,229,0 +170747281478,227,0 +170747281526,218,0 +170747281574,218,0 +170747281622,219,0 +170747281669,220,0 +170747281717,224,0 +170747281765,222,0 +170747281813,224,0 +170747281861,225,0 +170747281909,225,0 +170747281958,227,0 +170747282008,228,0 +170747282056,228,0 +170747282105,229,0 +170747282153,229,0 +170747282201,227,0 +170747282250,227,0 +170747282298,228,0 +170747282346,217,0 +170747282396,216,0 +170747282444,217,0 +170747282493,218,0 +170747282541,220,0 +170747282590,222,0 +170747282638,223,0 +170747282686,223,0 +170747282734,225,0 +170747282784,224,0 +170747282831,227,0 +170747282879,226,0 +170747282927,228,0 +170747282975,228,0 +170747283023,230,0 +170747283071,229,0 +170747283119,227,0 +170747283168,217,0 +170747283216,216,0 +170747283266,216,0 +170747283314,218,0 +170747283362,218,0 +170747283410,221,0 +170747283457,222,0 +170747283505,222,0 +170747283555,222,0 +170747283603,226,0 +170747283652,224,0 +170747283702,219,0 +170747283751,227,0 +170747283799,229,0 +170747283847,228,0 +170747283896,226,0 +170747283946,227,0 +170747283994,228,0 +170747284041,216,0 +170747284089,218,0 +170747284137,220,0 +170747284187,220,0 +170747284235,222,0 +170747284284,221,0 +170747284333,224,0 +170747284383,224,0 +170747284431,225,0 +170747284479,228,0 +170747284528,229,0 +170747284578,228,0 +170747284626,228,0 +170747284674,228,0 +170747284722,227,0 +170747284769,228,0 +170747284817,227,0 +170747284865,221,0 +170747284913,221,0 +170747284961,223,0 +170747285010,223,0 +170747285058,224,0 +170747285106,225,0 +170747285154,224,0 +170747285202,227,0 +170747285250,226,0 +170747285298,228,0 +170747285346,230,0 +170747285395,228,0 +170747285444,228,0 +170747285494,229,0 +170747285542,228,0 +170747285590,229,0 +170747285639,227,0 +170747285689,221,0 +170747285738,221,0 +170747285786,231,0 +170747285834,223,0 +170747285882,228,0 +170747285930,227,0 +170747285978,227,0 +170747286026,228,0 +170747286073,228,0 +170747286123,228,0 +170747286171,228,0 +170747286220,229,0 +170747286270,229,0 +170747286318,228,0 +170747286366,229,0 +170747286413,227,0 +170747286463,227,0 +170747286512,222,0 +170747286560,222,0 +170747286608,223,0 +170747286658,225,0 +170747286705,226,0 +170747286755,226,0 +170747286803,229,0 +170747286850,229,0 +170747286900,229,0 +170747286948,230,0 +170747286996,231,0 +170747287045,230,0 +170747287093,226,0 +170747287141,228,0 +170747287191,229,0 +170747287238,227,0 +170747287288,230,0 +170747287336,226,0 +170747287385,221,0 +170747287435,221,0 +170747287484,225,0 +170747287532,224,0 +170747287582,225,0 +170747287629,226,0 +170747287677,226,0 +170747287725,224,0 +170747287773,228,0 +170747287823,231,0 +170747287871,231,0 +170747287918,230,0 +170747287968,228,0 +170747288016,229,0 +170747288064,227,0 +170747288112,227,0 +170747288159,227,0 +170747288207,221,0 +170747288255,222,0 +170747288303,222,0 +170747288351,223,0 +170747288399,225,0 +170747288447,226,0 +170747288495,228,0 +170747288543,228,0 +170747288592,227,0 +170747288641,230,0 +170747288689,229,0 +170747288737,229,0 +170747288785,230,0 +170747288833,229,0 +170747288881,227,0 +170747288929,228,0 +170747288977,228,0 +170747289025,217,0 +170747289074,218,0 +170747289124,222,0 +170747289171,220,0 +170747289219,225,0 +170747289267,225,0 +170747289317,225,0 +170747289365,228,0 +170747289412,228,0 +170747289460,229,0 +170747289508,229,0 +170747289556,228,0 +170747289604,229,0 +170747289652,229,0 +170747289700,230,0 +170747289749,229,0 +170747289797,228,0 +170747289845,228,0 +170747289895,217,0 +170747289942,216,0 +170747289992,218,0 +170747290040,219,0 +170747290088,220,0 +170747290136,222,0 +170747290184,224,0 +170747290231,224,0 +170747290279,226,0 +170747290327,227,0 +170747290375,229,0 +170747290423,228,0 +170747290471,218,0 +170747290520,227,0 +170747290568,228,0 +170747290618,228,0 +170747290667,227,0 +170747290717,227,0 +170747290765,217,0 +170747290813,216,0 +170747290862,216,0 +170747290912,218,0 +170747290960,218,0 +170747291009,221,0 +170747291057,221,0 +170747291105,222,0 +170747291153,222,0 +170747291201,224,0 +170747291249,225,0 +170747291298,226,0 +170747291348,226,0 +170747291397,228,0 +170747291445,228,0 +170747291495,228,0 +170747291543,228,0 +170747291591,227,0 +170747291640,215,0 +170747291688,215,0 +170747291736,215,0 +170747291786,217,0 +170747291835,219,0 +170747291883,221,0 +170747291933,221,0 +170747291981,223,0 +170747292030,225,0 +170747292080,227,0 +170747292129,228,0 +170747292179,228,0 +170747292227,227,0 +170747292276,229,0 +170747292324,228,0 +170747292374,227,0 +170747292422,227,0 +170747292470,217,0 +170747292518,215,0 +170747292567,215,0 +170747292617,217,0 +170747292666,217,0 +170747292714,220,0 +170747292762,220,0 +170747292810,222,0 +170747292858,222,0 +170747292908,224,0 +170747292956,227,0 +170747293005,226,0 +170747293053,227,0 +170747293103,228,0 +170747293152,228,0 +170747293200,227,0 +170747293248,229,0 +170747293296,227,0 +170747293344,216,0 +170747293394,215,0 +170747293443,215,0 +170747293493,216,0 +170747293542,218,0 +170747293592,219,0 +170747293640,220,0 +170747293688,222,0 +170747293737,223,0 +170747293787,224,0 +170747293836,226,0 +170747293886,226,0 +170747293934,228,0 +170747293982,228,0 +170747294031,226,0 +170747294079,224,0 +170747294129,228,0 +170747294177,217,0 +170747294226,216,0 +170747294274,217,0 +170747294324,218,0 +170747294372,219,0 +170747294420,221,0 +170747294469,222,0 +170747294517,223,0 +170747294565,224,0 +170747294615,225,0 +170747294663,227,0 +170747294712,226,0 +170747294762,226,0 +170747294811,228,0 +170747294859,227,0 +170747294909,228,0 +170747294958,228,0 +170747295006,227,0 +170747295056,220,0 +170747295104,222,0 +170747295153,222,0 +170747295201,225,0 +170747295251,224,0 +170747295299,225,0 +170747295348,226,0 +170747295396,226,0 +170747295444,228,0 +170747295494,227,0 +170747295542,228,0 +170747295590,229,0 +170747295638,228,0 +170747295687,229,0 +170747295737,228,0 +170747295785,228,0 +170747295834,228,0 +170747295884,227,0 +170747295932,220,0 +170747295980,224,0 +170747296028,225,0 +170747296076,224,0 +170747296124,226,0 +170747296172,226,0 +170747296221,229,0 +170747296269,228,0 +170747296319,229,0 +170747296367,229,0 +170747296415,228,0 +170747296464,228,0 +170747296512,229,0 +170747296562,228,0 +170747296611,228,0 +170747296659,228,0 +170747296709,227,0 +170747296758,222,0 +170747296806,221,0 +170747296856,221,0 +170747296904,222,0 +170747296953,225,0 +170747297003,221,0 +170747297052,225,0 +170747297102,227,0 +170747297151,225,0 +170747297201,227,0 +170747297249,227,0 +170747297297,227,0 +170747297345,228,0 +170747297393,228,0 +170747297441,230,0 +170747297490,228,0 +170747297538,229,0 +170747297588,240,0 +170747297637,219,0 +170747297685,221,0 +170747297735,221,0 +170747297784,223,0 +170747297834,225,0 +170747297883,224,0 +170747297931,226,0 +170747297979,226,0 +170747298027,228,0 +170747298076,229,0 +170747298124,231,0 +170747298174,228,0 +170747298222,233,0 +170747298272,233,0 +170747298321,228,0 +170747298369,229,0 +170747298419,229,0 +170747298466,220,0 +170747298514,218,0 +170747298562,220,0 +170747298610,223,0 +170747298658,222,0 +170747298706,223,0 +170747298754,223,0 +170747298804,225,0 +170747298851,227,0 +170747298899,227,0 +170747298947,229,0 +170747298995,230,0 +170747299043,228,0 +170747299091,229,0 +170747299139,228,0 +170747299188,229,0 +170747299238,230,0 +170747299286,228,0 +170747299334,219,0 +170747299382,219,0 +170747299430,220,0 +170747299478,220,0 +170747299525,222,0 +170747299573,223,0 +170747299621,226,0 +170747299671,226,0 +170747299720,224,0 +170747299768,225,0 +170747299818,227,0 +170747299867,230,0 +170747299915,239,0 +170747299963,228,0 +170747300011,233,0 +170747300059,228,0 +170747300107,229,0 +170747300156,228,0 +170747300204,216,0 +170747300252,218,0 +170747300302,219,0 +170747300350,218,0 +170747300399,222,0 +170747300447,224,0 +170747300495,223,0 +170747300543,224,0 +170747300591,225,0 +170747300639,226,0 +170747300688,227,0 +170747300738,228,0 +170747300787,229,0 +170747300837,229,0 +170747300885,229,0 +170747300934,228,0 +170747300984,228,0 +170747301032,218,0 +170747301081,215,0 +170747301129,217,0 +170747301179,218,0 +170747301227,220,0 +170747301275,222,0 +170747301324,222,0 +170747301374,223,0 +170747301422,224,0 +170747301470,225,0 +170747301518,228,0 +170747301566,226,0 +170747301613,229,0 +170747301663,229,0 +170747301711,229,0 +170747301759,230,0 +170747301808,231,0 +170747301856,226,0 +170747301904,217,0 +170747301952,216,0 +170747302000,218,0 +170747302048,218,0 +170747302097,221,0 +170747302147,221,0 +170747302196,225,0 +170747302244,224,0 +170747302292,226,0 +170747302342,225,0 +170747302390,227,0 +170747302437,229,0 +170747302487,229,0 +170747302535,228,0 +170747302583,230,0 +170747302631,230,0 +170747302679,229,0 +170747302726,226,0 +170747302774,216,0 +170747302824,215,0 +170747302872,218,0 +170747302920,218,0 +170747302968,219,0 +170747303016,221,0 +170747303065,223,0 +170747303113,223,0 +170747303161,227,0 +170747303209,225,0 +170747303259,229,0 +170747303307,227,0 +170747303356,229,0 +170747303404,230,0 +170747303452,230,0 +170747303502,228,0 +170747303550,228,0 +170747303598,217,0 +170747303647,216,0 +170747303695,216,0 +170747303743,217,0 +170747303793,218,0 +170747303842,220,0 +170747303892,223,0 +170747303940,223,0 +170747303987,223,0 +170747304037,226,0 +170747304085,226,0 +170747304133,227,0 +170747304181,227,0 +170747304230,228,0 +170747304278,228,0 +170747304328,229,0 +170747304377,228,0 +170747304425,226,0 +170747304473,215,0 +170747304521,216,0 +170747304571,216,0 +170747304620,218,0 +170747304668,218,0 +170747304716,220,0 +170747304766,222,0 +170747304814,223,0 +170747304863,225,0 +170747304913,225,0 +170747304962,226,0 +170747305012,225,0 +170747305060,229,0 +170747305108,228,0 +170747305157,229,0 +170747305207,228,0 +170747305255,227,0 +170747305303,228,0 +170747305351,217,0 +170747305399,215,0 +170747305447,216,0 +170747305496,217,0 +170747305546,218,0 +170747305595,218,0 +170747305643,219,0 +170747305691,222,0 +170747305741,223,0 +170747305789,227,0 +170747305838,227,0 +170747305886,230,0 +170747305934,232,0 +170747305982,228,0 +170747306032,230,0 +170747306081,228,0 +170747306129,226,0 +170747306177,216,0 +170747306227,216,0 +170747306275,217,0 +170747306323,218,0 +170747306370,219,0 +170747306420,223,0 +170747306468,223,0 +170747306516,222,0 +170747306564,225,0 +170747306613,225,0 +170747306663,227,0 +170747306711,230,0 +170747306760,229,0 +170747306810,229,0 +170747306858,228,0 +170747306906,229,0 +170747306954,228,0 +170747307003,217,0 +170747307051,215,0 +170747307101,215,0 +170747307149,217,0 +170747307198,218,0 +170747307246,220,0 +170747307296,221,0 +170747307345,223,0 +170747307395,224,0 +170747307445,223,0 +170747307493,227,0 +170747307540,226,0 +170747307588,228,0 +170747307638,228,0 +170747307686,227,0 +170747307735,227,0 +170747307783,228,0 +170747307831,217,0 +170747307881,216,0 +170747307930,216,0 +170747307980,219,0 +170747308028,220,0 +170747308077,220,0 +170747308127,223,0 +170747308175,223,0 +170747308225,225,0 +170747308273,226,0 +170747308321,228,0 +170747308368,229,0 +170747308416,228,0 +170747308464,229,0 +170747308514,230,0 +170747308562,229,0 +170747308610,230,0 +170747308658,227,0 +170747308707,218,0 +170747308757,217,0 +170747308805,218,0 +170747308853,219,0 +170747308902,219,0 +170747308950,221,0 +170747308998,221,0 +170747309046,227,0 +170747309096,226,0 +170747309145,226,0 +170747309195,225,0 +170747309243,229,0 +170747309292,229,0 +170747309342,230,0 +170747309390,229,0 +170747309438,229,0 +170747309487,226,0 +170747309537,217,0 +170747309586,218,0 +170747309634,218,0 +170747309684,220,0 +170747309732,221,0 +170747309781,222,0 +170747309829,223,0 +170747309877,225,0 +170747309927,224,0 +170747309976,226,0 +170747310026,229,0 +170747310076,228,0 +170747310124,229,0 +170747310173,231,0 +170747310223,229,0 +170747310271,227,0 +170747310318,228,0 +170747310366,227,0 +170747310416,217,0 +170747310464,219,0 +170747310512,220,0 +170747310561,220,0 +170747310609,222,0 +170747310657,222,0 +170747310705,224,0 +170747310753,224,0 +170747310803,227,0 +170747310852,226,0 +170747310902,227,0 +170747310950,229,0 +170747310999,227,0 +170747311049,227,0 +170747311098,228,0 +170747311146,228,0 +170747311196,226,0 +170747311244,218,0 +170747311294,219,0 +170747311342,221,0 +170747311391,222,0 +170747311439,223,0 +170747311487,224,0 +170747311535,225,0 +170747311583,225,0 +170747311631,226,0 +170747311679,227,0 +170747311727,228,0 +170747311776,229,0 +170747311826,229,0 +170747311874,228,0 +170747311922,228,0 +170747311969,227,0 +170747312019,227,0 +170747312069,226,0 +170747312116,225,0 +170747312164,224,0 +170747312212,227,0 +170747312260,226,0 +170747312308,227,0 +170747312356,228,0 +170747312404,228,0 +170747312454,228,0 +170747312502,228,0 +170747312551,228,0 +170747312601,228,0 +170747312649,227,0 +170747312698,225,0 +170747312746,228,0 +170747312794,228,0 +170747312844,227,0 +170747312892,228,0 +170747312941,226,0 +170747312991,230,0 +170747313039,230,0 +170747313089,232,0 +170747313138,229,0 +170747313186,229,0 +170747313236,229,0 +170747313284,231,0 +170747313332,227,0 +170747313381,230,0 +170747313429,228,0 +170747313477,229,0 +170747313525,228,0 +170747313575,227,0 +170747313623,227,0 +170747313671,227,0 +170747313720,227,0 +170747313768,219,0 +170747313818,222,0 +170747313866,224,0 +170747313915,230,0 +170747313965,225,0 +170747314014,225,0 +170747314064,227,0 +170747314112,228,0 +170747314161,227,0 +170747314209,227,0 +170747314259,230,0 +170747314308,231,0 +170747314356,229,0 +170747314406,228,0 +170747314454,229,0 +170747314502,226,0 +170747314550,227,0 +170747314598,227,0 +170747314646,217,0 +170747314694,214,0 +170747314743,217,0 +170747314791,218,0 +170747314839,220,0 +170747314889,222,0 +170747314938,222,0 +170747314986,224,0 +170747315034,224,0 +170747315082,225,0 +170747315130,224,0 +170747315178,226,0 +170747315227,229,0 +170747315275,228,0 +170747315323,229,0 +170747315371,228,0 +170747315419,228,0 +170747315467,228,0 +170747315515,217,0 +170747315562,216,0 +170747315610,217,0 +170747315658,218,0 +170747315706,218,0 +170747315754,221,0 +170747315802,223,0 +170747315851,224,0 +170747315899,223,0 +170747315947,223,0 +170747315995,228,0 +170747316043,228,0 +170747316091,229,0 +170747316141,229,0 +170747316188,229,0 +170747316236,229,0 +170747316284,228,0 +170747316334,229,0 +170747316382,216,0 +170747316431,216,0 +170747316479,217,0 +170747316527,219,0 +170747316575,220,0 +170747316623,221,0 +170747316671,221,0 +170747316718,222,0 +170747316766,222,0 +170747316814,227,0 +170747316862,226,0 +170747316910,228,0 +170747316960,227,0 +170747317009,232,0 +170747317057,228,0 +170747317105,228,0 +170747317153,226,0 +170747317201,227,0 +170747317250,215,0 +170747317298,217,0 +170747317347,218,0 +170747317395,221,0 +170747317443,218,0 +170747317491,222,0 +170747317540,223,0 +170747317588,224,0 +170747317636,227,0 +170747317684,226,0 +170747317732,227,0 +170747317780,228,0 +170747317828,227,0 +170747317876,231,0 +170747317924,228,0 +170747317973,227,0 +170747318022,229,0 +170747318072,217,0 +170747318120,214,0 +170747318168,217,0 +170747318217,218,0 +170747318267,220,0 +170747318315,221,0 +170747318363,222,0 +170747318411,223,0 +170747318459,225,0 +170747318508,225,0 +170747318556,226,0 +170747318604,226,0 +170747318652,227,0 +170747318702,227,0 +170747318750,231,0 +170747318798,228,0 +170747318846,228,0 +170747318895,228,0 +170747318943,215,0 +170747318991,216,0 +170747319041,216,0 +170747319090,218,0 +170747319138,219,0 +170747319186,221,0 +170747319234,225,0 +170747319282,224,0 +170747319332,225,0 +170747319381,225,0 +170747319429,228,0 +170747319478,228,0 +170747319528,227,0 +170747319578,228,0 +170747319625,228,0 +170747319674,228,0 +170747319723,227,0 +170747319771,217,0 +170747319821,215,0 +170747319870,216,0 +170747319918,216,0 +170747319968,217,0 +170747320017,219,0 +170747320067,222,0 +170747320116,223,0 +170747320166,223,0 +170747320215,226,0 +170747320263,225,0 +170747320311,228,0 +170747320361,227,0 +170747320410,228,0 +170747320458,228,0 +170747320506,228,0 +170747320554,227,0 +170747320602,227,0 +170747320650,215,0 +170747320698,215,0 +170747320747,214,0 +170747320795,217,0 +170747320843,217,0 +170747320891,220,0 +170747320939,220,0 +170747320987,222,0 +170747321037,224,0 +170747321084,223,0 +170747321134,226,0 +170747321184,228,0 +170747321232,226,0 +170747321280,226,0 +170747321328,227,0 +170747321375,228,0 +170747321425,228,0 +170747321474,218,0 +170747321524,215,0 +170747321572,215,0 +170747321620,216,0 +170747321668,217,0 +170747321717,220,0 +170747321765,222,0 +170747321815,224,0 +170747321865,224,0 +170747321913,226,0 +170747321961,228,0 +170747322010,230,0 +170747322058,229,0 +170747322106,229,0 +170747322154,228,0 +170747322204,228,0 +170747322253,229,0 +170747322303,227,0 +170747322352,216,0 +170747322400,216,0 +170747322450,216,0 +170747322498,219,0 +170747322547,219,0 +170747322595,221,0 +170747322645,223,0 +170747322693,223,0 +170747322741,224,0 +170747322789,226,0 +170747322838,226,0 +170747322886,229,0 +170747322936,227,0 +170747322984,224,0 +170747323031,229,0 +170747323081,228,0 +170747323129,227,0 +170747323178,217,0 +170747323228,215,0 +170747323276,216,0 +170747323324,215,0 +170747323373,217,0 +170747323421,218,0 +170747323469,219,0 +170747323519,221,0 +170747323567,222,0 +170747323616,225,0 +170747323666,223,0 +170747323714,225,0 +170747323762,225,0 +170747323809,226,0 +170747323857,228,0 +170747323905,229,0 +170747323953,228,0 +170747324001,228,0 +170747324049,218,0 +170747324099,218,0 +170747324146,220,0 +170747324194,220,0 +170747324242,222,0 +170747324292,222,0 +170747324340,224,0 +170747324387,225,0 +170747324435,227,0 +170747324483,227,0 +170747324533,224,0 +170747324581,229,0 +170747324629,233,0 +170747324677,227,0 +170747324726,228,0 +170747324774,229,0 +170747324822,228,0 +170747324870,226,0 +170747324918,217,0 +170747324967,219,0 +170747325016,220,0 +170747325064,222,0 +170747325112,224,0 +170747325160,223,0 +170747325208,224,0 +170747325256,227,0 +170747325304,226,0 +170747325352,224,0 +170747325399,225,0 +170747325447,228,0 +170747325495,228,0 +170747325543,228,0 +170747325591,228,0 +170747325639,227,0 +170747325687,227,0 +170747325735,219,0 +170747325783,217,0 +170747325830,218,0 +170747325880,220,0 +170747325929,220,0 +170747325977,223,0 +170747326027,222,0 +170747326075,223,0 +170747326123,223,0 +170747326173,226,0 +170747326222,226,0 +170747326272,227,0 +170747326320,227,0 +170747326368,229,0 +170747326416,227,0 +170747326465,228,0 +170747326513,227,0 +170747326561,227,0 +170747326611,219,0 +170747326660,219,0 +170747326708,221,0 +170747326756,221,0 +170747326805,224,0 +170747326853,223,0 +170747326901,224,0 +170747326949,224,0 +170747326999,225,0 +170747327047,226,0 +170747327095,226,0 +170747327144,226,0 +170747327192,227,0 +170747327242,227,0 +170747327290,228,0 +170747327339,224,0 +170747327389,226,0 +170747327438,218,0 +170747327488,220,0 +170747327536,220,0 +170747327584,222,0 +170747327633,223,0 +170747327683,224,0 +170747327732,226,0 +170747327782,226,0 +170747327830,226,0 +170747327878,227,0 +170747327926,228,0 +170747327973,228,0 +170747328021,228,0 +170747328071,224,0 +170747328120,227,0 +170747328170,228,0 +170747328220,227,0 +170747328269,227,0 +170747328317,223,0 +170747328365,223,0 +170747328413,225,0 +170747328461,225,0 +170747328510,225,0 +170747328560,228,0 +170747328609,232,0 +170747328657,228,0 +170747328707,227,0 +170747328755,229,0 +170747328804,228,0 +170747328852,229,0 +170747328900,229,0 +170747328948,229,0 +170747328998,229,0 +170747329046,229,0 +170747329095,227,0 +170747329145,224,0 +170747329194,225,0 +170747329242,223,0 +170747329290,228,0 +170747329338,227,0 +170747329388,226,0 +170747329437,228,0 +170747329485,231,0 +170747329535,229,0 +170747329583,229,0 +170747329631,229,0 +170747329680,227,0 +170747329728,228,0 +170747329778,229,0 +170747329826,227,0 +170747329874,228,0 +170747329923,227,0 +170747329971,226,0 +170747330021,216,0 +170747330068,218,0 +170747330118,219,0 +170747330166,222,0 +170747330214,221,0 +170747330263,223,0 +170747330313,224,0 +170747330361,226,0 +170747330409,227,0 +170747330457,227,0 +170747330505,228,0 +170747330553,228,0 +170747330602,227,0 +170747330650,228,0 +170747330698,229,0 +170747330748,228,0 +170747330797,228,0 +170747330845,218,0 +170747330895,216,0 +170747330943,217,0 +170747330991,219,0 +170747331039,219,0 +170747331088,222,0 +170747331138,216,0 +170747331186,224,0 +170747331234,224,0 +170747331283,225,0 +170747331333,227,0 +170747331382,227,0 +170747331432,227,0 +170747331481,229,0 +170747331529,227,0 +170747331577,227,0 +170747331625,229,0 +170747331675,226,0 +170747331724,219,0 +170747331772,219,0 +170747331820,221,0 +170747331868,221,0 +170747331918,224,0 +170747331966,223,0 +170747332015,224,0 +170747332065,225,0 +170747332113,229,0 +170747332162,229,0 +170747332210,231,0 +170747332258,229,0 +170747332308,230,0 +170747332357,228,0 +170747332407,227,0 +170747332455,230,0 +170747332504,224,0 +170747332554,222,0 +170747332603,220,0 +170747332651,222,0 +170747332699,221,0 +170747332747,226,0 +170747332795,226,0 +170747332843,228,0 +170747332891,227,0 +170747332940,227,0 +170747332990,228,0 +170747333039,226,0 +170747333087,229,0 +170747333135,229,0 +170747333183,231,0 +170747333231,228,0 +170747333279,228,0 +170747333327,229,0 +170747333377,226,0 +170747333425,220,0 +170747333473,218,0 +170747333521,220,0 +170747333569,221,0 +170747333616,224,0 +170747333664,224,0 +170747333712,228,0 +170747333762,227,0 +170747333811,226,0 +170747333859,227,0 +170747333907,231,0 +170747333957,229,0 +170747334005,229,0 +170747334053,228,0 +170747334102,228,0 +170747334152,229,0 +170747334201,228,0 +170747334249,217,0 +170747334297,214,0 +170747334345,216,0 +170747334393,218,0 +170747334443,220,0 +170747334491,220,0 +170747334539,222,0 +170747334587,222,0 +170747334636,225,0 +170747334684,227,0 +170747334734,226,0 +170747334782,229,0 +170747334831,229,0 +170747334881,230,0 +170747334930,229,0 +170747334978,228,0 +170747335026,227,0 +170747335074,227,0 +170747335122,216,0 +170747335170,215,0 +170747335220,215,0 +170747335269,217,0 +170747335317,219,0 +170747335367,219,0 +170747335416,222,0 +170747335464,224,0 +170747335512,224,0 +170747335560,226,0 +170747335608,227,0 +170747335657,228,0 +170747335705,229,0 +170747335753,230,0 +170747335801,228,0 +170747335851,228,0 +170747335898,229,0 +170747335946,217,0 +170747335996,216,0 +170747336045,215,0 +170747336093,215,0 +170747336141,216,0 +170747336191,217,0 +170747336239,220,0 +170747336287,219,0 +170747336336,223,0 +170747336386,222,0 +170747336434,224,0 +170747336483,224,0 +170747336533,224,0 +170747336581,226,0 +170747336630,225,0 +170747336680,227,0 +170747336728,227,0 +170747336776,228,0 +170747336824,232,0 +170747336872,226,0 +170747336920,230,0 +170747336967,231,0 +170747337015,231,0 +170747337063,227,0 +170747337111,245,0 +170747337161,228,0 +170747337210,227,0 +170747337260,218,0 +170747337308,221,0 +170747337356,222,0 +170747337404,224,0 +170747337453,223,0 +170747337503,228,0 +170747337551,227,0 +170747337599,229,0 +170747337646,248,0 +170747337694,230,0 +170747337744,229,0 +170747337792,227,0 +170747337840,228,0 +170747337889,228,0 +170747337938,229,0 +170747337986,227,0 +170747338034,228,0 +170747338082,221,0 +170747338130,222,0 +170747338180,222,0 +170747338228,223,0 +170747338276,223,0 +170747338325,226,0 +170747338375,225,0 +170747338422,226,0 +170747338470,230,0 +170747338518,228,0 +170747338568,229,0 +170747338617,226,0 +170747338667,230,0 +170747338715,228,0 +170747338763,229,0 +170747338811,228,0 +170747338859,227,0 +170747338908,226,0 +170747338958,219,0 +170747339006,219,0 +170747339055,222,0 +170747339103,223,0 +170747339151,224,0 +170747339199,226,0 +170747339246,224,0 +170747339294,226,0 +170747339344,227,0 +170747339392,228,0 +170747339440,228,0 +170747339487,228,0 +170747339535,227,0 +170747339583,229,0 +170747339631,229,0 +170747339679,227,0 +170747339727,227,0 +170747339775,225,0 +170747339823,219,0 +170747339871,220,0 +170747339919,220,0 +170747339966,221,0 +170747340016,222,0 +170747340065,224,0 +170747340113,225,0 +170747340161,225,0 +170747340209,226,0 +170747340258,226,0 +170747340308,229,0 +170747340356,228,0 +170747340405,228,0 +170747340455,229,0 +170747340503,229,0 +170747340550,227,0 +170747340598,227,0 +170747340646,215,0 +170747340694,216,0 +170747340742,217,0 +170747340791,220,0 +170747340839,220,0 +170747340887,222,0 +170747340937,222,0 +170747340986,224,0 +170747341036,224,0 +170747341085,224,0 +170747341135,227,0 +170747341184,227,0 +170747341232,230,0 +170747341282,226,0 +170747341330,226,0 +170747341378,227,0 +170747341426,227,0 +170747341474,222,0 +170747341522,216,0 +170747341569,216,0 +170747341619,218,0 +170747341669,220,0 +170747341716,220,0 +170747341764,220,0 +170747341814,223,0 +170747341862,222,0 +170747341911,223,0 +170747341959,225,0 +170747342007,224,0 +170747342057,226,0 +170747342106,227,0 +170747342154,227,0 +170747342204,229,0 +170747342252,229,0 +170747342301,227,0 +170747342349,219,0 +170747342399,219,0 +170747342448,221,0 +170747342496,222,0 +170747342544,223,0 +170747342592,225,0 +170747342640,225,0 +170747342690,226,0 +170747342739,229,0 +170747342787,228,0 +170747342837,227,0 +170747342886,227,0 +170747342934,228,0 +170747342984,229,0 +170747343032,229,0 +170747343080,228,0 +170747343128,227,0 +170747343175,226,0 +170747343223,220,0 +170747343273,223,0 +170747343323,222,0 +170747343371,225,0 +170747343418,224,0 +170747343466,226,0 +170747343514,227,0 +170747343562,227,0 +170747343610,227,0 +170747343658,228,0 +170747343708,229,0 +170747343756,226,0 +170747343805,227,0 +170747343853,229,0 +170747343901,227,0 +170747343949,228,0 +170747343997,227,0 +170747344047,223,0 +170747344096,219,0 +170747344146,222,0 +170747344194,226,0 +170747344243,227,0 +170747344293,225,0 +170747344342,226,0 +170747344392,229,0 +170747344441,228,0 +170747344489,228,0 +170747344539,230,0 +170747344588,229,0 +170747344638,227,0 +170747344687,229,0 +170747344735,227,0 +170747344783,228,0 +170747344831,228,0 +170747344880,218,0 +170747344930,216,0 +170747344978,217,0 +170747345027,219,0 +170747345075,221,0 +170747345123,221,0 +170747345171,223,0 +170747345221,224,0 +170747345269,224,0 +170747345317,229,0 +170747345366,229,0 +170747345416,230,0 +170747345465,233,0 +170747345513,231,0 +170747345563,231,0 +170747345611,229,0 +170747345660,227,0 +170747345710,227,0 +170747345758,217,0 +170747345805,216,0 +170747345853,216,0 +170747345903,216,0 +170747345951,218,0 +170747346000,219,0 +170747346048,220,0 +170747346096,221,0 +170747346144,224,0 +170747346192,224,0 +170747346240,224,0 +170747346288,228,0 +170747346336,228,0 +170747346385,228,0 +170747346433,228,0 +170747346481,227,0 +170747346531,225,0 +170747346579,226,0 +170747346627,216,0 +170747346674,216,0 +170747346722,219,0 +170747346770,219,0 +170747346820,221,0 +170747346868,222,0 +170747346917,222,0 +170747346965,224,0 +170747347013,224,0 +170747347061,226,0 +170747347111,227,0 +170747347160,228,0 +170747347208,227,0 +170747347256,228,0 +170747347306,230,0 +170747347355,229,0 +170747347403,229,0 +170747347451,218,0 +170747347501,217,0 +170747347550,219,0 +170747347598,220,0 +170747347646,222,0 +170747347695,223,0 +170747347745,223,0 +170747347793,223,0 +170747347842,224,0 +170747347892,225,0 +170747347941,225,0 +170747347991,228,0 +170747348039,227,0 +170747348087,229,0 +170747348136,228,0 +170747348186,228,0 +170747348235,234,0 +170747348283,217,0 +170747348331,218,0 +170747348379,218,0 +170747348429,225,0 +170747348477,221,0 +170747348525,220,0 +170747348573,223,0 +170747348620,224,0 +170747348670,224,0 +170747348720,225,0 +170747348767,228,0 +170747348816,230,0 +170747348863,227,0 +170747348913,228,0 +170747348961,228,0 +170747349009,228,0 +170747349057,227,0 +170747349105,228,0 +170747349154,227,0 +170747349202,221,0 +170747349250,223,0 +170747349300,224,0 +170747349349,224,0 +170747349397,226,0 +170747349447,228,0 +170747349496,226,0 +170747349544,228,0 +170747349592,228,0 +170747349640,228,0 +170747349689,228,0 +170747349737,231,0 +170747349785,229,0 +170747349835,229,0 +170747349883,230,0 +170747349932,225,0 +170747349980,227,0 +170747350028,223,0 +170747350078,224,0 +170747350128,225,0 +170747350177,225,0 +170747350225,226,0 +170747350273,228,0 +170747350321,227,0 +170747350369,228,0 +170747350419,226,0 +170747350467,228,0 +170747350515,228,0 +170747350564,228,0 +170747350612,229,0 +170747350661,228,0 +170747350711,229,0 +170747350760,229,0 +170747350808,228,0 +170747350856,225,0 +170747350904,225,0 +170747350952,225,0 +170747351000,234,0 +170747351050,227,0 +170747351098,229,0 +170747351145,231,0 +170747351195,228,0 +170747351243,230,0 +170747351291,229,0 +170747351340,229,0 +170747351390,232,0 +170747351438,229,0 +170747351486,227,0 +170747351534,228,0 +170747351582,227,0 +170747351631,229,0 +170747351679,232,0 +170747351729,224,0 +170747351777,224,0 +170747351826,224,0 +170747351876,227,0 +170747351925,228,0 +170747351973,228,0 +170747352021,228,0 +170747352069,227,0 +170747352117,228,0 +170747352165,228,0 +170747352213,227,0 +170747352261,229,0 +170747352309,230,0 +170747352357,231,0 +170747352406,228,0 +170747352456,227,0 +170747352505,227,0 +170747352553,226,0 +170747352601,220,0 +170747352649,223,0 +170747352697,223,0 +170747352745,225,0 +170747352793,228,0 +170747352843,228,0 +170747352892,228,0 +170747352940,228,0 +170747352990,228,0 +170747353038,227,0 +170747353087,229,0 +170747353137,229,0 +170747353185,227,0 +170747353232,228,0 +170747353282,229,0 +170747353330,228,0 +170747353378,238,0 +170747353426,219,0 +170747353475,217,0 +170747353523,219,0 +170747353571,220,0 +170747353619,222,0 +170747353667,224,0 +170747353715,225,0 +170747353763,219,0 +170747353811,221,0 +170747353860,225,0 +170747353910,228,0 +170747353958,229,0 +170747354008,230,0 +170747354057,229,0 +170747354105,229,0 +170747354155,230,0 +170747354204,227,0 +170747354252,227,0 +170747354300,216,0 +170747354348,217,0 +170747354396,220,0 +170747354444,221,0 +170747354493,224,0 +170747354541,226,0 +170747354591,225,0 +170747354639,226,0 +170747354688,227,0 +170747354738,227,0 +170747354787,230,0 +170747354837,228,0 +170747354885,228,0 +170747354933,231,0 +170747354981,226,0 +170747355029,228,0 +170747355077,229,0 +170747355124,216,0 +170747355174,216,0 +170747355224,217,0 +170747355273,220,0 +170747355321,219,0 +170747355371,222,0 +170747355420,223,0 +170747355468,223,0 +170747355516,224,0 +170747355566,222,0 +170747355615,226,0 +170747355663,226,0 +170747355713,227,0 +170747355761,223,0 +170747355809,227,0 +170747355857,228,0 +170747355906,229,0 +170747355954,228,0 +170747356004,216,0 +170747356053,216,0 +170747356103,219,0 +170747356151,219,0 +170747356199,220,0 +170747356248,215,0 +170747356296,221,0 +170747356346,222,0 +170747356394,223,0 +170747356443,224,0 +170747356491,224,0 +170747356539,227,0 +170747356587,227,0 +170747356637,227,0 +170747356685,226,0 +170747356734,227,0 +170747356782,227,0 +170747356830,223,0 +170747356878,217,0 +170747356926,219,0 +170747356976,221,0 +170747357023,221,0 +170747357073,223,0 +170747357121,224,0 +170747357171,227,0 +170747357218,225,0 +170747357268,227,0 +170747357318,229,0 +170747357365,229,0 +170747357415,229,0 +170747357464,228,0 +170747357512,227,0 +170747357560,228,0 +170747357610,228,0 +170747357658,227,0 +170747357706,223,0 +170747357753,223,0 +170747357803,224,0 +170747357852,225,0 +170747357900,226,0 +170747357948,226,0 +170747357996,226,0 +170747358044,228,0 +170747358093,228,0 +170747358141,229,0 +170747358189,229,0 +170747358237,228,0 +170747358285,229,0 +170747358333,229,0 +170747358381,231,0 +170747358430,227,0 +170747358480,227,0 +170747358529,227,0 +170747358577,224,0 +170747358625,225,0 +170747358673,226,0 +170747358721,226,0 +170747358769,228,0 +170747358818,229,0 +170747358868,229,0 +170747358917,229,0 +170747358965,235,0 +170747359015,224,0 +170747359062,229,0 +170747359112,229,0 +170747359162,228,0 +170747359209,228,0 +170747359257,228,0 +170747359305,228,0 +170747359353,226,0 +170747359401,217,0 +170747359449,218,0 +170747359497,219,0 +170747359547,221,0 +170747359595,222,0 +170747359643,223,0 +170747359692,223,0 +170747359740,225,0 +170747359788,227,0 +170747359836,225,0 +170747359884,227,0 +170747359932,227,0 +170747359981,228,0 +170747360031,228,0 +170747360079,229,0 +170747360127,228,0 +170747360176,229,0 +170747360224,227,0 +170747360274,217,0 +170747360323,220,0 +170747360373,219,0 +170747360421,221,0 +170747360470,223,0 +170747360520,224,0 +170747360568,229,0 +170747360616,226,0 +170747360663,228,0 +170747360711,227,0 +170747360759,229,0 +170747360807,232,0 +170747360855,230,0 +170747360903,230,0 +170747360951,228,0 +170747360999,230,0 +170747361046,227,0 +170747361094,222,0 +170747361144,218,0 +170747361192,218,0 +170747361239,221,0 +170747361287,220,0 +170747361337,221,0 +170747361385,223,0 +170747361433,224,0 +170747361482,225,0 +170747361530,227,0 +170747361578,226,0 +170747361626,229,0 +170747361674,229,0 +170747361722,226,0 +170747361770,231,0 +170747361818,228,0 +170747361867,229,0 +170747361915,228,0 +170747361964,217,0 +170747362012,218,0 +170747362062,219,0 +170747362110,221,0 +170747362157,222,0 +170747362205,229,0 +170747362253,224,0 +170747362301,224,0 +170747362349,227,0 +170747362398,226,0 +170747362446,226,0 +170747362496,228,0 +170747362545,229,0 +170747362593,229,0 +170747362641,229,0 +170747362689,228,0 +170747362737,229,0 +170747362784,226,0 +170747362832,218,0 +170747362882,220,0 +170747362931,221,0 +170747362979,223,0 +170747363029,223,0 +170747363077,226,0 +170747363125,224,0 +170747363173,227,0 +170747363222,226,0 +170747363272,229,0 +170747363320,230,0 +170747363368,232,0 +170747363415,230,0 +170747363463,229,0 +170747363511,228,0 +170747363561,228,0 +170747363609,226,0 +170747363657,222,0 +170747363706,217,0 +170747363754,219,0 +170747363804,222,0 +170747363853,222,0 +170747363901,227,0 +170747363949,225,0 +170747363999,227,0 +170747364047,226,0 +170747364096,227,0 +170747364144,231,0 +170747364192,228,0 +170747364240,228,0 +170747364290,231,0 +170747364338,231,0 +170747364387,228,0 +170747364437,228,0 +170747364485,228,0 +170747364533,216,0 +170747364581,216,0 +170747364629,218,0 +170747364678,221,0 +170747364726,225,0 +170747364776,225,0 +170747364825,227,0 +170747364875,227,0 +170747364923,230,0 +170747364972,229,0 +170747365020,229,0 +170747365070,228,0 +170747365118,232,0 +170747365166,228,0 +170747365215,230,0 +170747365265,228,0 +170747365313,230,0 +170747365361,225,0 +170747365408,217,0 +170747365458,218,0 +170747365508,219,0 +170747365557,221,0 +170747365605,222,0 +170747365653,225,0 +170747365703,229,0 +170747365752,226,0 +170747365800,226,0 +170747365850,229,0 +170747365897,226,0 +170747365945,230,0 +170747365993,228,0 +170747366041,228,0 +170747366091,229,0 +170747366139,233,0 +170747366187,228,0 +170747366235,217,0 +170747366283,217,0 +170747366332,218,0 +170747366380,220,0 +170747366430,231,0 +170747366478,223,0 +170747366526,224,0 +170747366574,225,0 +170747366622,227,0 +170747366671,227,0 +170747366719,227,0 +170747366769,228,0 +170747366817,231,0 +170747366864,227,0 +170747366912,229,0 +170747366960,229,0 +170747367010,228,0 +170747367059,227,0 +170747367107,217,0 +170747367155,219,0 +170747367205,219,0 +170747367253,220,0 +170747367300,222,0 +170747367348,223,0 +170747367398,223,0 +170747367446,226,0 +170747367495,227,0 +170747367543,226,0 +170747367592,227,0 +170747367640,227,0 +170747367688,228,0 +170747367736,228,0 +170747367786,228,0 +170747367835,228,0 +170747367885,228,0 +170747367932,217,0 +170747367980,217,0 +170747368030,219,0 +170747368078,219,0 +170747368126,221,0 +170747368173,222,0 +170747368221,223,0 +170747368269,225,0 +170747368317,224,0 +170747368365,226,0 +170747368414,225,0 +170747368464,228,0 +170747368512,229,0 +170747368560,228,0 +170747368609,229,0 +170747368657,229,0 +170747368705,228,0 +170747368753,227,0 +170747368802,218,0 +170747368850,219,0 +170747368899,220,0 +170747368949,221,0 +170747368998,223,0 +170747369048,223,0 +170747369096,223,0 +170747369145,225,0 +170747369193,226,0 +170747369242,226,0 +170747369290,230,0 +170747369338,228,0 +170747369388,228,0 +170747369435,228,0 +170747369485,228,0 +170747369534,227,0 +170747369582,226,0 +170747369632,222,0 +170747369680,217,0 +170747369727,219,0 +170747369775,221,0 +170747369823,221,0 +170747369873,223,0 +170747369921,224,0 +170747369968,226,0 +170747370018,228,0 +170747370066,229,0 +170747370114,226,0 +170747370161,229,0 +170747370209,228,0 +170747370257,228,0 +170747370305,229,0 +170747370353,227,0 +170747370402,227,0 +170747370452,227,0 +170747370500,216,0 +170747370549,217,0 +170747370597,219,0 +170747370647,220,0 +170747370696,222,0 +170747370746,225,0 +170747370793,224,0 +170747370841,224,0 +170747370889,224,0 +170747370939,226,0 +170747370988,225,0 +170747371036,229,0 +170747371084,230,0 +170747371132,229,0 +170747371181,232,0 +170747371231,228,0 +170747371279,226,0 +170747371327,226,0 +170747371376,216,0 +170747371424,216,0 +170747371472,222,0 +170747371521,219,0 +170747371569,221,0 +170747371619,221,0 +170747371667,223,0 +170747371714,223,0 +170747371762,226,0 +170747371810,225,0 +170747371858,226,0 +170747371906,227,0 +170747371954,228,0 +170747372002,228,0 +170747372050,227,0 +170747372099,228,0 +170747372148,226,0 +170747372198,222,0 +170747372246,224,0 +170747372294,223,0 +170747372342,224,0 +170747372390,225,0 +170747372437,226,0 +170747372485,227,0 +170747372535,229,0 +170747372584,227,0 +170747372632,227,0 +170747372680,227,0 +170747372729,228,0 +170747372777,228,0 +170747372827,227,0 +170747372875,228,0 +170747372924,228,0 +170747372974,228,0 +170747373023,227,0 +170747373071,225,0 +170747373119,227,0 +170747373167,231,0 +170747373215,228,0 +170747373262,226,0 +170747373310,229,0 +170747373358,228,0 +170747373408,228,0 +170747373457,228,0 +170747373505,227,0 +170747373554,230,0 +170747373604,229,0 +170747373652,228,0 +170747373700,231,0 +170747373748,228,0 +170747373797,230,0 +170747373845,227,0 +170747373894,226,0 +170747373942,228,0 +170747373990,226,0 +170747374038,227,0 +170747374086,227,0 +170747374134,228,0 +170747374181,228,0 +170747374231,227,0 +170747374279,228,0 +170747374328,230,0 +170747374376,230,0 +170747374425,231,0 +170747374475,229,0 +170747374523,229,0 +170747374571,228,0 +170747374618,228,0 +170747374666,229,0 +170747374716,227,0 +170747374765,222,0 +170747374813,223,0 +170747374861,222,0 +170747374909,223,0 +170747374957,225,0 +170747375006,226,0 +170747375054,226,0 +170747375103,229,0 +170747375151,230,0 +170747375199,232,0 +170747375247,233,0 +170747375297,233,0 +170747375344,230,0 +170747375392,229,0 +170747375440,229,0 +170747375488,229,0 +170747375538,229,0 +170747375587,224,0 +170747375635,218,0 +170747375683,219,0 +170747375731,220,0 +170747375779,223,0 +170747375826,224,0 +170747375874,224,0 +170747375922,225,0 +170747375970,226,0 +170747376020,227,0 +170747376069,229,0 +170747376119,227,0 +170747376166,228,0 +170747376214,231,0 +170747376262,227,0 +170747376310,229,0 +170747376360,228,0 +170747376408,228,0 +170747376457,218,0 +170747376505,216,0 +170747376553,218,0 +170747376601,218,0 +170747376649,220,0 +170747376697,221,0 +170747376746,222,0 +170747376796,223,0 +170747376846,223,0 +170747376895,228,0 +170747376945,229,0 +170747376993,230,0 +170747377040,230,0 +170747377088,231,0 +170747377138,229,0 +170747377188,229,0 +170747377235,228,0 +170747377283,227,0 +170747377331,216,0 +170747377381,216,0 +170747377430,218,0 +170747377480,219,0 +170747377528,220,0 +170747377576,221,0 +170747377624,222,0 +170747377672,223,0 +170747377720,225,0 +170747377768,225,0 +170747377816,225,0 +170747377864,227,0 +170747377911,229,0 +170747377959,229,0 +170747378007,228,0 +170747378055,228,0 +170747378103,228,0 +170747378151,224,0 +170747378199,214,0 +170747378249,217,0 +170747378297,218,0 +170747378344,221,0 +170747378392,221,0 +170747378442,224,0 +170747378490,224,0 +170747378539,226,0 +170747378589,227,0 +170747378637,228,0 +170747378686,228,0 +170747378736,226,0 +170747378784,231,0 +170747378832,222,0 +170747378879,227,0 +170747378927,230,0 +170747378975,227,0 +170747379023,217,0 +170747379071,216,0 +170747379119,217,0 +170747379167,219,0 +170747379216,220,0 +170747379264,221,0 +170747379312,223,0 +170747379360,223,0 +170747379408,224,0 +170747379456,225,0 +170747379503,226,0 +170747379553,229,0 +170747379601,228,0 +170747379650,229,0 +170747379698,229,0 +170747379748,230,0 +170747379798,231,0 +170747379846,227,0 +170747379893,219,0 +170747379941,221,0 +170747379989,223,0 +170747380039,223,0 +170747380088,224,0 +170747380136,226,0 +170747380186,225,0 +170747380235,226,0 +170747380285,229,0 +170747380333,226,0 +170747380381,231,0 +170747380430,228,0 +170747380478,230,0 +170747380526,231,0 +170747380576,229,0 +170747380625,228,0 +170747380673,227,0 +170747380723,217,0 +170747380770,217,0 +170747380820,218,0 +170747380870,220,0 +170747380918,221,0 +170747380967,222,0 +170747381015,224,0 +170747381065,226,0 +170747381113,227,0 +170747381160,227,0 +170747381210,226,0 +170747381258,226,0 +170747381307,229,0 +170747381357,230,0 +170747381405,228,0 +170747381454,230,0 +170747381502,229,0 +170747381550,227,0 +170747381598,219,0 +170747381646,219,0 +170747381694,220,0 +170747381742,223,0 +170747381790,224,0 +170747381838,223,0 +170747381887,225,0 +170747381937,225,0 +170747381985,228,0 +170747382033,229,0 +170747382081,229,0 +170747382129,230,0 +170747382177,229,0 +170747382225,231,0 +170747382273,228,0 +170747382321,228,0 +170747382368,226,0 +170747382416,221,0 +170747382464,215,0 +170747382514,217,0 +170747382563,218,0 +170747382611,221,0 +170747382661,221,0 +170747382709,222,0 +170747382757,222,0 +170747382805,223,0 +170747382853,225,0 +170747382900,225,0 +170747382950,226,0 +170747383000,230,0 +170747383049,228,0 +170747383097,229,0 +170747383145,227,0 +170747383193,228,0 +170747383241,227,0 +170747383289,217,0 +170747383337,215,0 +170747383386,215,0 +170747383434,216,0 +170747383482,216,0 +170747383532,216,0 +170747383581,218,0 +170747383629,220,0 +170747383677,221,0 +170747383725,222,0 +170747383773,221,0 +170747383821,226,0 +170747383869,228,0 +170747383917,227,0 +170747383965,229,0 +170747384013,228,0 +170747384060,227,0 +170747384110,227,0 +170747384158,215,0 +170747384206,216,0 +170747384254,217,0 +170747384302,219,0 +170747384350,220,0 +170747384398,221,0 +170747384446,222,0 +170747384494,223,0 +170747384543,226,0 +170747384591,227,0 +170747384639,227,0 +170747384689,228,0 +170747384738,228,0 +170747384786,227,0 +170747384834,228,0 +170747384882,229,0 +170747384930,227,0 +170747384980,217,0 +170747385028,215,0 +170747385077,218,0 +170747385126,218,0 +170747385174,221,0 +170747385222,220,0 +170747385270,220,0 +170747385318,224,0 +170747385368,224,0 +170747385416,227,0 +170747385464,228,0 +170747385512,225,0 +170747385561,226,0 +170747385609,228,0 +170747385657,227,0 +170747385707,227,0 +170747385755,227,0 +170747385803,226,0 +170747385852,217,0 +170747385900,218,0 +170747385948,219,0 +170747385996,220,0 +170747386045,221,0 +170747386095,220,0 +170747386143,224,0 +170747386191,223,0 +170747386240,224,0 +170747386290,225,0 +170747386339,225,0 +170747386389,227,0 +170747386437,227,0 +170747386485,226,0 +170747386533,228,0 +170747386581,227,0 +170747386629,227,0 +170747386678,225,0 +170747386728,221,0 +170747386777,222,0 +170747386827,223,0 +170747386876,225,0 +170747386926,226,0 +170747386975,226,0 +170747387025,227,0 +170747387074,226,0 +170747387122,227,0 +170747387170,227,0 +170747387220,228,0 +170747387268,228,0 +170747387316,228,0 +170747387363,226,0 +170747387413,227,0 +170747387461,227,0 +170747387509,232,0 +170747387557,229,0 +170747387606,226,0 +170747387654,227,0 +170747387703,227,0 +170747387751,230,0 +170747387799,228,0 +170747387848,229,0 +170747387896,230,0 +170747387946,230,0 +170747387994,228,0 +170747388041,230,0 +170747388089,229,0 +170747388137,229,0 +170747388187,227,0 +170747388235,229,0 +170747388283,232,0 +170747388332,228,0 +170747388380,229,0 +170747388430,227,0 +170747388478,231,0 +170747388526,228,0 +170747388575,228,0 +170747388623,232,0 +170747388671,224,0 +170747388720,229,0 +170747388768,224,0 +170747388816,227,0 +170747388864,227,0 +170747388913,227,0 +170747388961,228,0 +170747389011,228,0 +170747389060,228,0 +170747389110,228,0 +170747389158,226,0 +170747389207,227,0 +170747389256,221,0 +170747389304,223,0 +170747389354,222,0 +170747389402,226,0 +170747389450,226,0 +170747389498,224,0 +170747389547,226,0 +170747389595,229,0 +170747389643,228,0 +170747389691,229,0 +170747389740,230,0 +170747389790,230,0 +170747389839,231,0 +170747389887,233,0 +170747389935,228,0 +170747389983,230,0 +170747390033,227,0 +170747390081,227,0 +170747390129,217,0 +170747390178,219,0 +170747390226,219,0 +170747390274,220,0 +170747390322,222,0 +170747390371,224,0 +170747390419,224,0 +170747390467,225,0 +170747390515,226,0 +170747390565,228,0 +170747390613,229,0 +170747390661,229,0 +170747390710,229,0 +170747390760,230,0 +170747390809,229,0 +170747390857,228,0 +170747390906,228,0 +170747390954,217,0 +170747391002,218,0 +170747391050,219,0 +170747391098,220,0 +170747391146,222,0 +170747391194,224,0 +170747391243,223,0 +170747391291,226,0 +170747391339,228,0 +170747391387,227,0 +170747391435,226,0 +170747391483,230,0 +170747391531,231,0 +170747391579,229,0 +170747391626,229,0 +170747391674,228,0 +170747391722,228,0 +170747391770,225,0 +170747391818,216,0 +170747391867,216,0 +170747391915,218,0 +170747391963,219,0 +170747392011,221,0 +170747392059,221,0 +170747392107,222,0 +170747392156,224,0 +170747392204,226,0 +170747392252,227,0 +170747392302,228,0 +170747392350,229,0 +170747392398,229,0 +170747392446,228,0 +170747392494,230,0 +170747392542,228,0 +170747392589,228,0 +170747392637,227,0 +170747392685,217,0 +170747392733,217,0 +170747392783,218,0 +170747392832,220,0 +170747392880,221,0 +170747392928,223,0 +170747392976,223,0 +170747393026,235,0 +170747393075,227,0 +170747393123,228,0 +170747393171,228,0 +170747393219,227,0 +170747393269,229,0 +170747393317,230,0 +170747393364,229,0 +170747393412,229,0 +170747393460,227,0 +170747393510,227,0 +170747393559,216,0 +170747393607,218,0 +170747393655,218,0 +170747393705,221,0 +170747393755,224,0 +170747393803,224,0 +170747393851,225,0 +170747393900,227,0 +170747393948,225,0 +170747393996,228,0 +170747394045,228,0 +170747394093,228,0 +170747394141,229,0 +170747394191,222,0 +170747394240,223,0 +170747394290,228,0 +170747394339,227,0 +170747394387,217,0 +170747394435,217,0 +170747394483,218,0 +170747394533,220,0 +170747394581,221,0 +170747394630,223,0 +170747394678,222,0 +170747394726,227,0 +170747394774,225,0 +170747394821,228,0 +170747394871,230,0 +170747394919,228,0 +170747394968,229,0 +170747395018,231,0 +170747395067,229,0 +170747395117,231,0 +170747395165,227,0 +170747395213,227,0 +170747395261,217,0 +170747395309,217,0 +170747395357,219,0 +170747395406,220,0 +170747395456,222,0 +170747395505,223,0 +170747395553,221,0 +170747395601,225,0 +170747395649,226,0 +170747395697,226,0 +170747395747,226,0 +170747395795,223,0 +170747395842,227,0 +170747395892,230,0 +170747395940,232,0 +170747395989,229,0 +170747396039,230,0 +170747396087,219,0 +170747396136,217,0 +170747396184,219,0 +170747396232,221,0 +170747396280,221,0 +170747396330,225,0 +170747396378,223,0 +170747396427,225,0 +170747396475,225,0 +170747396523,227,0 +170747396571,227,0 +170747396619,224,0 +170747396667,229,0 +170747396715,230,0 +170747396763,227,0 +170747396810,227,0 +170747396858,231,0 +170747396906,228,0 +170747396956,218,0 +170747397004,218,0 +170747397052,219,0 +170747397100,220,0 +170747397149,220,0 +170747397199,221,0 +170747397248,224,0 +170747397296,225,0 +170747397344,224,0 +170747397392,226,0 +170747397440,225,0 +170747397489,226,0 +170747397537,228,0 +170747397585,229,0 +170747397633,229,0 +170747397681,227,0 +170747397729,227,0 +170747397776,224,0 +170747397824,217,0 +170747397872,218,0 +170747397920,219,0 +170747397968,221,0 +170747398016,223,0 +170747398066,222,0 +170747398113,223,0 +170747398161,224,0 +170747398211,225,0 +170747398260,227,0 +170747398308,228,0 +170747398358,228,0 +170747398406,228,0 +170747398456,229,0 +170747398505,230,0 +170747398554,228,0 +170747398603,227,0 +170747398652,218,0 +170747398700,219,0 +170747398748,220,0 +170747398796,221,0 +170747398844,224,0 +170747398892,226,0 +170747398940,226,0 +170747398988,225,0 +170747399037,229,0 +170747399087,230,0 +170747399136,230,0 +170747399184,229,0 +170747399234,229,0 +170747399282,228,0 +170747399331,229,0 +170747399379,225,0 +170747399427,226,0 +170747399475,227,0 +170747399523,219,0 +170747399572,221,0 +170747399620,221,0 +170747399668,222,0 +170747399717,224,0 +170747399765,224,0 +170747399813,225,0 +170747399861,225,0 +170747399910,226,0 +170747399960,227,0 +170747400008,227,0 +170747400056,228,0 +170747400104,228,0 +170747400152,229,0 +170747400200,228,0 +170747400248,228,0 +170747400297,233,0 +170747400347,216,0 +170747400396,217,0 +170747400446,218,0 +170747400495,214,0 +170747400545,220,0 +170747400593,221,0 +170747400641,222,0 +170747400689,223,0 +170747400737,224,0 +170747400786,225,0 +170747400834,227,0 +170747400882,228,0 +170747400930,227,0 +170747400980,227,0 +170747401029,228,0 +170747401077,228,0 +170747401127,228,0 +170747401176,227,0 +170747401224,214,0 +170747401272,216,0 +170747401322,218,0 +170747401370,220,0 +170747401419,222,0 +170747401467,222,0 +170747401517,222,0 +170747401566,224,0 +170747401616,225,0 +170747401664,226,0 +170747401712,227,0 +170747401760,226,0 +170747401808,227,0 +170747401857,229,0 +170747401905,229,0 +170747401953,227,0 +170747402001,227,0 +170747402051,220,0 +170747402099,221,0 +170747402148,221,0 +170747402196,225,0 +170747402246,228,0 +170747402295,224,0 +170747402345,223,0 +170747402393,226,0 +170747402441,226,0 +170747402488,227,0 +170747402538,230,0 +170747402586,227,0 +170747402636,227,0 +170747402683,223,0 +170747402731,228,0 +170747402781,229,0 +170747402829,228,0 +170747402877,227,0 +170747402925,223,0 +170747402974,225,0 +170747403022,227,0 +170747403070,226,0 +170747403118,235,0 +170747403168,229,0 +170747403216,229,0 +170747403265,230,0 +170747403313,228,0 +170747403363,228,0 +170747403411,230,0 +170747403460,229,0 +170747403510,229,0 +170747403559,228,0 +170747403607,228,0 +170747403655,228,0 +170747403705,227,0 +170747403753,219,0 +170747403802,221,0 +170747403852,222,0 +170747403900,222,0 +170747403948,223,0 +170747403996,224,0 +170747404044,224,0 +170747404092,225,0 +170747404139,227,0 +170747404187,226,0 +170747404237,228,0 +170747404287,230,0 +170747404336,229,0 +170747404384,228,0 +170747404432,227,0 +170747404482,228,0 +170747404530,229,0 +170747404577,227,0 +170747404625,217,0 +170747404673,216,0 +170747404721,217,0 +170747404769,218,0 +170747404819,219,0 +170747404867,221,0 +170747404916,223,0 +170747404966,225,0 +170747405014,225,0 +170747405062,226,0 +170747405110,225,0 +170747405159,228,0 +170747405207,228,0 +170747405255,229,0 +170747405305,229,0 +170747405353,230,0 +170747405400,230,0 +170747405448,226,0 +170747405496,217,0 +170747405544,218,0 +170747405592,219,0 +170747405640,221,0 +170747405688,219,0 +170747405736,222,0 +170747405784,223,0 +170747405831,223,0 +170747405879,224,0 +170747405927,226,0 +170747405975,226,0 +170747406023,226,0 +170747406071,227,0 +170747406119,226,0 +170747406166,229,0 +170747406214,227,0 +170747406262,228,0 +170747406312,218,0 +170747406360,218,0 +170747406407,220,0 +170747406455,222,0 +170747406503,223,0 +170747406551,225,0 +170747406599,226,0 +170747406647,228,0 +170747406695,227,0 +170747406743,226,0 +170747406792,227,0 +170747406840,228,0 +170747406890,230,0 +170747406938,229,0 +170747406985,229,0 +170747407035,229,0 +170747407085,228,0 +170747407134,227,0 +170747407184,219,0 +170747407231,220,0 +170747407279,221,0 +170747407329,222,0 +170747407377,225,0 +170747407425,228,0 +170747407474,227,0 +170747407522,227,0 +170747407570,228,0 +170747407618,229,0 +170747407666,227,0 +170747407714,230,0 +170747407762,229,0 +170747407810,230,0 +170747407858,229,0 +170747407906,229,0 +170747407954,228,0 +170747408002,218,0 +170747408050,217,0 +170747408098,220,0 +170747408147,223,0 +170747408197,225,0 +170747408246,223,0 +170747408294,230,0 +170747408342,228,0 +170747408390,228,0 +170747408438,229,0 +170747408486,230,0 +170747408534,230,0 +170747408583,231,0 +170747408633,229,0 +170747408681,230,0 +170747408730,229,0 +170747408778,229,0 +170747408828,227,0 +170747408876,219,0 +170747408925,220,0 +170747408973,223,0 +170747409023,223,0 +170747409072,223,0 +170747409120,224,0 +170747409170,226,0 +170747409219,225,0 +170747409267,226,0 +170747409315,228,0 +170747409365,228,0 +170747409414,230,0 +170747409462,229,0 +170747409510,230,0 +170747409560,230,0 +170747409608,228,0 +170747409657,229,0 +170747409705,220,0 +170747409755,220,0 +170747409803,222,0 +170747409852,223,0 +170747409902,224,0 +170747409950,224,0 +170747409998,225,0 +170747410046,226,0 +170747410094,225,0 +170747410142,227,0 +170747410191,230,0 +170747410239,229,0 +170747410287,229,0 +170747410335,228,0 +170747410384,228,0 +170747410432,228,0 +170747410482,228,0 +170747410531,225,0 +170747410579,221,0 +170747410627,221,0 +170747410675,221,0 +170747410725,222,0 +170747410774,223,0 +170747410824,225,0 +170747410872,227,0 +170747410920,227,0 +170747410968,227,0 +170747411016,224,0 +170747411065,229,0 +170747411113,232,0 +170747411161,229,0 +170747411209,230,0 +170747411257,228,0 +170747411307,228,0 +170747411356,227,0 +170747411406,224,0 +170747411454,221,0 +170747411503,223,0 +170747411553,224,0 +170747411601,227,0 +170747411649,226,0 +170747411696,227,0 +170747411744,227,0 +170747411792,227,0 +170747411840,228,0 +170747411888,228,0 +170747411936,228,0 +170747411986,228,0 +170747412035,229,0 +170747412083,228,0 +170747412131,229,0 +170747412179,227,0 +170747412227,227,0 +170747412277,217,0 +170747412325,220,0 +170747412374,222,0 +170747412424,222,0 +170747412472,225,0 +170747412520,225,0 +170747412569,227,0 +170747412619,227,0 +170747412667,227,0 +170747412715,228,0 +170747412764,230,0 +170747412812,229,0 +170747412862,231,0 +170747412911,229,0 +170747412959,230,0 +170747413007,229,0 +170747413055,228,0 +170747413103,221,0 +170747413151,218,0 +170747413199,219,0 +170747413247,222,0 +170747413297,220,0 +170747413346,224,0 +170747413394,224,0 +170747413442,228,0 +170747413492,228,0 +170747413540,227,0 +170747413587,230,0 +170747413637,230,0 +170747413685,232,0 +170747413734,233,0 +170747413784,228,0 +170747413832,224,0 +170747413880,228,0 +170747413928,227,0 +170747413976,217,0 +170747414025,217,0 +170747414075,218,0 +170747414123,219,0 +170747414171,220,0 +170747414219,221,0 +170747414267,222,0 +170747414315,218,0 +170747414363,225,0 +170747414412,225,0 +170747414460,228,0 +170747414510,228,0 +170747414559,229,0 +170747414609,227,0 +170747414658,229,0 +170747414706,228,0 +170747414754,228,0 +170747414802,226,0 +170747414850,216,0 +170747414898,216,0 +170747414946,217,0 +170747414994,218,0 +170747415042,216,0 +170747415090,220,0 +170747415138,221,0 +170747415187,223,0 +170747415236,224,0 +170747415284,225,0 +170747415334,228,0 +170747415384,227,0 +170747415433,226,0 +170747415481,227,0 +170747415529,228,0 +170747415577,228,0 +170747415625,227,0 +170747415673,217,0 +170747415721,217,0 +170747415770,217,0 +170747415818,215,0 +170747415866,219,0 +170747415916,222,0 +170747415964,222,0 +170747416012,223,0 +170747416060,225,0 +170747416108,227,0 +170747416157,227,0 +170747416207,227,0 +170747416254,227,0 +170747416302,227,0 +170747416352,228,0 +170747416402,227,0 +170747416449,227,0 +170747416497,226,0 +170747416545,220,0 +170747416593,221,0 +170747416641,222,0 +170747416689,222,0 +170747416739,225,0 +170747416788,225,0 +170747416836,225,0 +170747416884,227,0 +170747416932,227,0 +170747416982,228,0 +170747417031,229,0 +170747417081,228,0 +170747417130,228,0 +170747417180,225,0 +170747417228,227,0 +170747417277,226,0 +170747417327,230,0 +170747417376,221,0 +170747417424,225,0 +170747417472,226,0 +170747417522,229,0 +170747417571,226,0 +170747417619,227,0 +170747417667,228,0 +170747417715,229,0 +170747417763,228,0 +170747417811,228,0 +170747417861,228,0 +170747417910,228,0 +170747417958,228,0 +170747418006,228,0 +170747418056,228,0 +170747418105,228,0 +170747418153,229,0 +170747418203,228,0 +170747418251,222,0 +170747418299,222,0 +170747418347,225,0 +170747418396,225,0 +170747418446,224,0 +170747418495,226,0 +170747418543,228,0 +170747418593,230,0 +170747418641,228,0 +170747418690,228,0 +170747418740,230,0 +170747418789,228,0 +170747418837,228,0 +170747418885,228,0 +170747418935,228,0 +170747418984,228,0 +170747419034,228,0 +170747419082,218,0 +170747419131,215,0 +170747419179,217,0 +170747419227,220,0 +170747419277,220,0 +170747419326,220,0 +170747419374,223,0 +170747419422,224,0 +170747419470,224,0 +170747419520,226,0 +170747419568,227,0 +170747419616,228,0 +170747419665,228,0 +170747419713,228,0 +170747419761,231,0 +170747419809,233,0 +170747419857,228,0 +170747419907,227,0 +170747419956,215,0 +170747420006,217,0 +170747420055,218,0 +170747420103,220,0 +170747420151,223,0 +170747420199,223,0 +170747420247,224,0 +170747420296,223,0 +170747420344,224,0 +170747420392,225,0 +170747420440,229,0 +170747420490,228,0 +170747420538,230,0 +170747420587,228,0 +170747420635,231,0 +170747420683,228,0 +170747420733,229,0 +170747420781,219,0 +170747420830,217,0 +170747420880,219,0 +170747420928,219,0 +170747420976,220,0 +170747421024,223,0 +170747421073,223,0 +170747421121,223,0 +170747421171,224,0 +170747421220,226,0 +170747421270,227,0 +170747421319,228,0 +170747421369,229,0 +170747421418,228,0 +170747421468,231,0 +170747421516,228,0 +170747421565,228,0 +170747421613,227,0 +170747421661,218,0 +170747421709,219,0 +170747421757,220,0 +170747421806,221,0 +170747421856,222,0 +170747421904,223,0 +170747421953,224,0 +170747422001,225,0 +170747422051,226,0 +170747422099,227,0 +170747422147,229,0 +170747422195,229,0 +170747422243,235,0 +170747422291,228,0 +170747422340,230,0 +170747422390,229,0 +170747422437,229,0 +170747422487,217,0 +170747422535,218,0 +170747422583,220,0 +170747422631,222,0 +170747422679,222,0 +170747422727,225,0 +170747422775,222,0 +170747422824,225,0 +170747422872,225,0 +170747422920,226,0 +170747422968,228,0 +170747423015,228,0 +170747423065,229,0 +170747423113,228,0 +170747423161,228,0 +170747423209,228,0 +170747423257,227,0 +170747423304,228,0 +170747423352,221,0 +170747423400,220,0 +170747423448,222,0 +170747423496,223,0 +170747423544,224,0 +170747423592,227,0 +170747423641,226,0 +170747423691,228,0 +170747423739,229,0 +170747423787,229,0 +170747423835,228,0 +170747423883,228,0 +170747423932,230,0 +170747423980,228,0 +170747424028,228,0 +170747424078,229,0 +170747424127,228,0 +170747424177,228,0 +170747424225,220,0 +170747424272,223,0 +170747424322,222,0 +170747424371,223,0 +170747424419,225,0 +170747424469,227,0 +170747424517,226,0 +170747424565,228,0 +170747424613,227,0 +170747424661,231,0 +170747424710,228,0 +170747424760,230,0 +170747424808,229,0 +170747424857,229,0 +170747424907,230,0 +170747424955,228,0 +170747425003,228,0 +170747425051,223,0 +170747425099,222,0 +170747425147,221,0 +170747425194,222,0 +170747425244,224,0 +170747425292,224,0 +170747425340,225,0 +170747425389,228,0 +170747425439,227,0 +170747425487,229,0 +170747425535,229,0 +170747425583,231,0 +170747425632,230,0 +170747425680,232,0 +170747425730,230,0 +170747425779,229,0 +170747425827,228,0 +170747425875,225,0 +170747425925,221,0 +170747425974,222,0 +170747426024,223,0 +170747426072,223,0 +170747426121,225,0 +170747426169,227,0 +170747426217,230,0 +170747426267,229,0 +170747426315,227,0 +170747426364,230,0 +170747426412,228,0 +170747426462,228,0 +170747426510,226,0 +170747426558,228,0 +170747426606,230,0 +170747426654,228,0 +170747426702,228,0 +170747426750,220,0 +170747426798,221,0 +170747426846,222,0 +170747426893,223,0 +170747426943,223,0 +170747426993,225,0 +170747427041,226,0 +170747427090,228,0 +170747427140,227,0 +170747427189,230,0 +170747427237,230,0 +170747427287,229,0 +170747427335,228,0 +170747427383,229,0 +170747427432,229,0 +170747427482,228,0 +170747427530,227,0 +170747427579,228,0 +170747427627,220,0 +170747427675,221,0 +170747427725,225,0 +170747427773,221,0 +170747427822,223,0 +170747427870,225,0 +170747427920,228,0 +170747427968,227,0 +170747428015,228,0 +170747428063,227,0 +170747428113,229,0 +170747428161,230,0 +170747428209,230,0 +170747428258,229,0 +170747428308,228,0 +170747428357,230,0 +170747428405,227,0 +170747428455,218,0 +170747428503,218,0 +170747428552,219,0 +170747428600,221,0 +170747428648,222,0 +170747428698,222,0 +170747428747,223,0 +170747428797,224,0 +170747428847,226,0 +170747428895,226,0 +170747428943,230,0 +170747428990,230,0 +170747429040,228,0 +170747429088,227,0 +170747429136,227,0 +170747429185,228,0 +170747429233,228,0 +170747429281,226,0 +170747429329,217,0 +170747429377,217,0 +170747429425,218,0 +170747429475,219,0 +170747429523,221,0 +170747429571,220,0 +170747429619,225,0 +170747429667,225,0 +170747429715,226,0 +170747429763,225,0 +170747429811,227,0 +170747429858,227,0 +170747429908,229,0 +170747429958,228,0 +170747430005,227,0 +170747430055,228,0 +170747430104,227,0 +170747430152,218,0 +170747430202,216,0 +170747430250,215,0 +170747430299,218,0 +170747430347,219,0 +170747430395,219,0 +170747430443,221,0 +170747430493,222,0 +170747430541,223,0 +170747430589,224,0 +170747430638,225,0 +170747430686,225,0 +170747430734,226,0 +170747430784,229,0 +170747430833,228,0 +170747430883,228,0 +170747430932,227,0 +170747430982,226,0 +170747431031,216,0 +170747431079,217,0 +170747431127,219,0 +170747431177,221,0 +170747431226,221,0 +170747431274,223,0 +170747431324,224,0 +170747431372,225,0 +170747431421,227,0 +170747431469,227,0 +170747431519,227,0 +170747431567,227,0 +170747431616,228,0 +170747431666,228,0 +170747431714,227,0 +170747431763,227,0 +170747431813,223,0 +170747431861,222,0 +170747431909,222,0 +170747431957,224,0 +170747432005,225,0 +170747432053,225,0 +170747432101,225,0 +170747432149,226,0 +170747432197,228,0 +170747432246,228,0 +170747432294,230,0 +170747432342,228,0 +170747432392,229,0 +170747432439,228,0 +170747432489,228,0 +170747432537,228,0 +170747432585,228,0 +170747432634,228,0 +170747432682,227,0 +170747432730,225,0 +170747432780,226,0 +170747432828,227,0 +170747432877,227,0 +170747432925,230,0 +170747432973,231,0 +170747433023,235,0 +170747433072,229,0 +170747433122,230,0 +170747433170,231,0 +170747433218,230,0 +170747433266,231,0 +170747433315,229,0 +170747433363,228,0 +170747433411,228,0 +170747433460,227,0 +170747433510,228,0 +170747433560,219,0 +170747433609,221,0 +170747433657,221,0 +170747433707,222,0 +170747433754,224,0 +170747433802,223,0 +170747433850,226,0 +170747433900,227,0 +170747433949,227,0 +170747433997,229,0 +170747434047,231,0 +170747434096,227,0 +170747434144,227,0 +170747434192,229,0 +170747434242,225,0 +170747434290,227,0 +170747434339,230,0 +170747434387,228,0 +170747434435,219,0 +170747434483,221,0 +170747434532,220,0 +170747434580,222,0 +170747434628,223,0 +170747434676,223,0 +170747434725,224,0 +170747434773,226,0 +170747434821,222,0 +170747434869,229,0 +170747434917,228,0 +170747434967,231,0 +170747435015,227,0 +170747435062,227,0 +170747435110,228,0 +170747435158,237,0 +170747435206,227,0 +170747435256,218,0 +170747435305,220,0 +170747435353,220,0 +170747435401,220,0 +170747435450,222,0 +170747435498,224,0 +170747435546,226,0 +170747435594,225,0 +170747435642,228,0 +170747435690,230,0 +170747435738,228,0 +170747435785,231,0 +170747435833,230,0 +170747435881,229,0 +170747435929,230,0 +170747435977,229,0 +170747436025,228,0 +170747436074,229,0 +170747436122,220,0 +170747436172,220,0 +170747436220,221,0 +170747436269,222,0 +170747436317,223,0 +170747436365,224,0 +170747436415,223,0 +170747436463,226,0 +170747436511,227,0 +170747436559,227,0 +170747436607,229,0 +170747436655,228,0 +170747436703,230,0 +170747436752,229,0 +170747436802,229,0 +170747436850,230,0 +170747436898,227,0 +170747436945,218,0 +170747436993,217,0 +170747437041,219,0 +170747437089,220,0 +170747437137,221,0 +170747437187,225,0 +170747437236,223,0 +170747437284,224,0 +170747437334,227,0 +170747437382,226,0 +170747437431,228,0 +170747437479,231,0 +170747437527,231,0 +170747437575,230,0 +170747437625,229,0 +170747437673,229,0 +170747437722,229,0 +170747437770,227,0 +170747437820,218,0 +170747437869,218,0 +170747437917,220,0 +170747437967,221,0 +170747438015,222,0 +170747438063,224,0 +170747438111,224,0 +170747438158,228,0 +170747438206,226,0 +170747438254,226,0 +170747438302,226,0 +170747438352,231,0 +170747438401,227,0 +170747438451,232,0 +170747438499,229,0 +170747438547,230,0 +170747438595,231,0 +170747438644,216,0 +170747438694,217,0 +170747438742,217,0 +170747438790,219,0 +170747438839,221,0 +170747438889,223,0 +170747438937,222,0 +170747438986,223,0 +170747439034,224,0 +170747439082,227,0 +170747439130,228,0 +170747439180,229,0 +170747439228,227,0 +170747439276,229,0 +170747439324,229,0 +170747439373,229,0 +170747439421,227,0 +170747439469,228,0 +170747439517,219,0 +170747439565,217,0 +170747439613,219,0 +170747439662,221,0 +170747439712,222,0 +170747439760,228,0 +170747439809,226,0 +170747439857,226,0 +170747439905,227,0 +170747439953,231,0 +170747440001,228,0 +170747440051,227,0 +170747440100,231,0 +170747440150,230,0 +170747440199,228,0 +170747440247,229,0 +170747440295,227,0 +170747440343,223,0 +170747440391,216,0 +170747440439,218,0 +170747440488,220,0 +170747440536,219,0 +170747440584,223,0 +170747440632,225,0 +170747440680,226,0 +170747440728,226,0 +170747440778,229,0 +170747440826,229,0 +170747440875,228,0 +170747440923,229,0 +170747440971,228,0 +170747441019,228,0 +170747441069,229,0 +170747441118,228,0 +170747441168,228,0 +170747441217,217,0 +170747441265,217,0 +170747441313,218,0 +170747441361,219,0 +170747441409,220,0 +170747441457,223,0 +170747441505,233,0 +170747441555,226,0 +170747441602,228,0 +170747441650,227,0 +170747441698,227,0 +170747441748,228,0 +170747441797,228,0 +170747441845,224,0 +170747441893,229,0 +170747441941,227,0 +170747441991,232,0 +170747442039,226,0 +170747442088,215,0 +170747442136,215,0 +170747442184,216,0 +170747442232,217,0 +170747442282,219,0 +170747442331,220,0 +170747442381,222,0 +170747442430,226,0 +170747442478,225,0 +170747442528,227,0 +170747442577,226,0 +170747442627,233,0 +170747442675,229,0 +170747442724,230,0 +170747442772,229,0 +170747442822,228,0 +170747442871,228,0 +170747442919,217,0 +170747442967,216,0 +170747443017,216,0 +170747443066,219,0 +170747443114,219,0 +170747443162,220,0 +170747443212,221,0 +170747443261,224,0 +170747443309,226,0 +170747443359,225,0 +170747443408,227,0 +170747443458,229,0 +170747443506,228,0 +170747443554,226,0 +170747443603,227,0 +170747443653,229,0 +170747443702,227,0 +170747443752,218,0 +170747443801,216,0 +170747443851,217,0 +170747443900,218,0 +170747443948,219,0 +170747443996,220,0 +170747444044,220,0 +170747444094,221,0 +170747444142,219,0 +170747444190,223,0 +170747444238,226,0 +170747444287,225,0 +170747444337,226,0 +170747444385,228,0 +170747444433,227,0 +170747444482,227,0 +170747444530,229,0 +170747444579,227,0 +170747444629,217,0 +170747444679,218,0 +170747444728,219,0 +170747444776,216,0 +170747444824,221,0 +170747444872,220,0 +170747444920,222,0 +170747444968,224,0 +170747445016,224,0 +170747445065,223,0 +170747445115,225,0 +170747445163,225,0 +170747445211,229,0 +170747445259,227,0 +170747445307,229,0 +170747445356,228,0 +170747445406,227,0 +170747445454,219,0 +170747445503,219,0 +170747445553,221,0 +170747445602,222,0 +170747445652,223,0 +170747445700,224,0 +170747445749,223,0 +170747445799,225,0 +170747445847,226,0 +170747445895,227,0 +170747445943,227,0 +170747445991,228,0 +170747446040,228,0 +170747446088,228,0 +170747446136,227,0 +170747446184,226,0 +170747446232,227,0 +170747446281,227,0 +170747446331,226,0 +170747446380,227,0 +170747446430,226,0 +170747446479,227,0 +170747446527,228,0 +170747446575,227,0 +170747446625,229,0 +170747446674,227,0 +170747446722,229,0 +170747446772,229,0 +170747446821,229,0 +170747446869,229,0 +170747446917,227,0 +170747446965,231,0 +170747447013,229,0 +170747447061,228,0 +170747447109,230,0 +170747447157,228,0 +170747447207,228,0 +170747447254,228,0 +170747447302,229,0 +170747447352,227,0 +170747447400,228,0 +170747447449,227,0 +170747447499,230,0 +170747447547,228,0 +170747447595,228,0 +170747447643,229,0 +170747447691,227,0 +170747447740,229,0 +170747447788,227,0 +170747447838,228,0 +170747447887,229,0 +170747447935,227,0 +170747447983,227,0 +170747448031,226,0 +170747448079,228,0 +170747448127,229,0 +170747448175,227,0 +170747448223,229,0 +170747448271,230,0 +170747448319,229,0 +170747448369,228,0 +170747448418,228,0 +170747448466,227,0 +170747448516,225,0 +170747448565,229,0 +170747448613,229,0 +170747448661,230,0 +170747448709,230,0 +170747448757,230,0 +170747448805,227,0 +170747448855,217,0 +170747448902,219,0 +170747448950,221,0 +170747449000,221,0 +170747449050,221,0 +170747449097,225,0 +170747449145,226,0 +170747449193,227,0 +170747449241,227,0 +170747449289,228,0 +170747449337,226,0 +170747449385,229,0 +170747449433,229,0 +170747449483,230,0 +170747449531,231,0 +170747449579,229,0 +170747449626,228,0 +170747449676,226,0 +170747449724,218,0 +170747449774,217,0 +170747449823,220,0 +170747449873,221,0 +170747449921,223,0 +170747449968,223,0 +170747450016,223,0 +170747450064,225,0 +170747450112,230,0 +170747450160,227,0 +170747450208,231,0 +170747450256,228,0 +170747450304,227,0 +170747450352,226,0 +170747450401,229,0 +170747450451,229,0 +170747450500,228,0 +170747450548,218,0 +170747450596,218,0 +170747450646,218,0 +170747450693,221,0 +170747450741,223,0 +170747450791,224,0 +170747450839,223,0 +170747450887,224,0 +170747450936,226,0 +170747450984,225,0 +170747451032,228,0 +170747451080,226,0 +170747451130,228,0 +170747451178,227,0 +170747451226,228,0 +170747451275,228,0 +170747451325,229,0 +170747451373,228,0 +170747451421,217,0 +170747451469,218,0 +170747451518,219,0 +170747451568,219,0 +170747451616,221,0 +170747451664,218,0 +170747451713,223,0 +170747451762,223,0 +170747451810,223,0 +170747451858,228,0 +170747451908,230,0 +170747451957,229,0 +170747452007,224,0 +170747452056,230,0 +170747452104,231,0 +170747452152,229,0 +170747452200,228,0 +170747452248,218,0 +170747452296,217,0 +170747452344,219,0 +170747452392,220,0 +170747452440,222,0 +170747452489,223,0 +170747452539,225,0 +170747452587,224,0 +170747452635,226,0 +170747452683,227,0 +170747452732,230,0 +170747452780,229,0 +170747452830,227,0 +170747452878,230,0 +170747452925,231,0 +170747452973,229,0 +170747453023,228,0 +170747453073,227,0 +170747453121,216,0 +170747453169,217,0 +170747453216,218,0 +170747453266,220,0 +170747453315,221,0 +170747453365,221,0 +170747453414,223,0 +170747453464,223,0 +170747453512,224,0 +170747453560,228,0 +170747453608,228,0 +170747453657,227,0 +170747453707,223,0 +170747453755,230,0 +170747453803,228,0 +170747453851,229,0 +170747453900,230,0 +170747453950,217,0 +170747453999,216,0 +170747454047,219,0 +170747454097,220,0 +170747454145,221,0 +170747454194,223,0 +170747454242,224,0 +170747454290,225,0 +170747454338,227,0 +170747454386,226,0 +170747454436,230,0 +170747454484,229,0 +170747454531,228,0 +170747454579,228,0 +170747454627,229,0 +170747454677,229,0 +170747454725,226,0 +170747454774,227,0 +170747454822,217,0 +170747454870,217,0 +170747454918,218,0 +170747454968,218,0 +170747455016,221,0 +170747455064,224,0 +170747455111,225,0 +170747455161,226,0 +170747455209,228,0 +170747455257,227,0 +170747455305,227,0 +170747455353,230,0 +170747455401,230,0 +170747455449,229,0 +170747455498,229,0 +170747455548,228,0 +170747455596,225,0 +170747455645,217,0 +170747455695,214,0 +170747455743,217,0 +170747455792,218,0 +170747455840,219,0 +170747455890,222,0 +170747455938,223,0 +170747455986,223,0 +170747456033,227,0 +170747456081,226,0 +170747456129,227,0 +170747456179,228,0 +170747456228,229,0 +170747456278,230,0 +170747456327,228,0 +170747456375,228,0 +170747456423,228,0 +170747456471,227,0 +170747456519,215,0 +170747456569,218,0 +170747456617,219,0 +170747456664,220,0 +170747456714,222,0 +170747456762,223,0 +170747456811,224,0 +170747456861,225,0 +170747456909,228,0 +170747456958,226,0 +170747457008,230,0 +170747457056,228,0 +170747457104,229,0 +170747457152,229,0 +170747457200,228,0 +170747457249,230,0 +170747457297,227,0 +170747457345,219,0 +170747457393,219,0 +170747457441,220,0 +170747457491,219,0 +170747457539,222,0 +170747457587,224,0 +170747457636,225,0 +170747457684,226,0 +170747457734,226,0 +170747457782,227,0 +170747457830,228,0 +170747457878,227,0 +170747457925,230,0 +170747457973,228,0 +170747458021,229,0 +170747458069,229,0 +170747458117,228,0 +170747458165,227,0 +170747458213,217,0 +170747458261,219,0 +170747458309,220,0 +170747458357,222,0 +170747458405,222,0 +170747458453,223,0 +170747458501,224,0 +170747458549,225,0 +170747458599,225,0 +170747458648,226,0 +170747458698,228,0 +170747458745,225,0 +170747458795,228,0 +170747458844,230,0 +170747458894,228,0 +170747458942,229,0 +170747458990,228,0 +170747459038,215,0 +170747459086,216,0 +170747459135,217,0 +170747459183,220,0 +170747459231,221,0 +170747459280,222,0 +170747459328,226,0 +170747459378,225,0 +170747459427,226,0 +170747459475,227,0 +170747459523,227,0 +170747459571,229,0 +170747459619,228,0 +170747459669,228,0 +170747459717,227,0 +170747459765,228,0 +170747459814,227,0 +170747459862,225,0 +170747459912,218,0 +170747459960,219,0 +170747460009,221,0 +170747460057,221,0 +170747460107,222,0 +170747460156,222,0 +170747460204,223,0 +170747460252,225,0 +170747460300,225,0 +170747460348,227,0 +170747460396,227,0 +170747460444,227,0 +170747460492,229,0 +170747460541,229,0 +170747460591,227,0 +170747460641,227,0 +170747460689,227,0 +170747460738,221,0 +170747460786,221,0 +170747460834,222,0 +170747460883,224,0 +170747460931,225,0 +170747460979,225,0 +170747461029,227,0 +170747461077,227,0 +170747461126,227,0 +170747461176,228,0 +170747461225,228,0 +170747461275,227,0 +170747461324,227,0 +170747461374,231,0 +170747461422,228,0 +170747461470,228,0 +170747461518,227,0 +170747461566,222,0 +170747461613,222,0 +170747461661,223,0 +170747461709,226,0 +170747461759,225,0 +170747461808,225,0 +170747461856,226,0 +170747461904,231,0 +170747461954,229,0 +170747462003,228,0 +170747462053,228,0 +170747462101,230,0 +170747462150,228,0 +170747462200,230,0 +170747462248,228,0 +170747462296,229,0 +170747462344,228,0 +170747462392,226,0 +170747462440,220,0 +170747462488,223,0 +170747462537,222,0 +170747462585,223,0 +170747462633,226,0 +170747462681,227,0 +170747462731,227,0 +170747462780,235,0 +170747462828,230,0 +170747462876,229,0 +170747462925,229,0 +170747462973,231,0 +170747463023,231,0 +170747463073,231,0 +170747463122,228,0 +170747463170,228,0 +170747463218,228,0 +170747463266,217,0 +170747463314,218,0 +170747463362,219,0 +170747463410,221,0 +170747463458,222,0 +170747463506,223,0 +170747463554,224,0 +170747463602,226,0 +170747463649,225,0 +170747463697,229,0 +170747463747,228,0 +170747463797,231,0 +170747463846,229,0 +170747463896,232,0 +170747463945,228,0 +170747463993,229,0 +170747464043,228,0 +170747464091,227,0 +170747464139,217,0 +170747464188,218,0 +170747464238,219,0 +170747464287,221,0 +170747464337,221,0 +170747464385,222,0 +170747464433,223,0 +170747464481,225,0 +170747464529,227,0 +170747464577,226,0 +170747464624,227,0 +170747464672,227,0 +170747464720,228,0 +170747464770,229,0 +170747464818,228,0 +170747464866,228,0 +170747464914,228,0 +170747464963,217,0 +170747465011,217,0 +170747465061,218,0 +170747465109,220,0 +170747465158,221,0 +170747465208,224,0 +170747465257,223,0 +170747465305,223,0 +170747465353,225,0 +170747465403,228,0 +170747465451,224,0 +170747465498,227,0 +170747465546,229,0 +170747465594,229,0 +170747465642,229,0 +170747465690,229,0 +170747465738,229,0 +170747465788,227,0 +170747465836,220,0 +170747465885,221,0 +170747465935,222,0 +170747465984,224,0 +170747466034,224,0 +170747466083,226,0 +170747466133,227,0 +170747466183,230,0 +170747466232,229,0 +170747466280,230,0 +170747466330,231,0 +170747466378,231,0 +170747466426,228,0 +170747466475,228,0 +170747466525,228,0 +170747466573,229,0 +170747466621,228,0 +170747466668,218,0 +170747466716,219,0 +170747466766,220,0 +170747466814,223,0 +170747466862,223,0 +170747466910,224,0 +170747466958,224,0 +170747467006,226,0 +170747467055,226,0 +170747467103,229,0 +170747467151,229,0 +170747467199,232,0 +170747467247,229,0 +170747467295,229,0 +170747467343,229,0 +170747467391,230,0 +170747467439,229,0 +170747467487,227,0 +170747467535,219,0 +170747467583,219,0 +170747467631,220,0 +170747467679,221,0 +170747467727,222,0 +170747467775,222,0 +170747467823,225,0 +170747467870,227,0 +170747467918,226,0 +170747467968,230,0 +170747468016,230,0 +170747468064,231,0 +170747468113,230,0 +170747468161,229,0 +170747468209,228,0 +170747468257,229,0 +170747468307,227,0 +170747468355,221,0 +170747468404,220,0 +170747468454,222,0 +170747468502,221,0 +170747468550,224,0 +170747468597,225,0 +170747468647,226,0 +170747468695,227,0 +170747468743,229,0 +170747468791,228,0 +170747468839,228,0 +170747468887,231,0 +170747468935,233,0 +170747468983,231,0 +170747469032,227,0 +170747469080,229,0 +170747469128,228,0 +170747469178,227,0 +170747469227,222,0 +170747469277,222,0 +170747469324,223,0 +170747469372,225,0 +170747469422,225,0 +170747469471,226,0 +170747469521,227,0 +170747469570,233,0 +170747469618,229,0 +170747469668,230,0 +170747469717,230,0 +170747469765,233,0 +170747469813,229,0 +170747469863,229,0 +170747469912,231,0 +170747469960,229,0 +170747470008,228,0 +170747470056,221,0 +170747470106,221,0 +170747470154,220,0 +170747470202,224,0 +170747470251,224,0 +170747470301,224,0 +170747470349,227,0 +170747470398,228,0 +170747470448,223,0 +170747470496,232,0 +170747470544,229,0 +170747470593,229,0 +170747470641,231,0 +170747470691,229,0 +170747470740,232,0 +170747470790,229,0 +170747470838,230,0 +170747470887,226,0 +170747470935,219,0 +170747470985,219,0 +170747471033,221,0 +170747471081,224,0 +170747471129,224,0 +170747471178,227,0 +170747471226,226,0 +170747471274,226,0 +170747471322,229,0 +170747471372,229,0 +170747471419,228,0 +170747471467,230,0 +170747471517,230,0 +170747471565,228,0 +170747471615,229,0 +170747471662,228,0 +170747471710,227,0 +170747471758,218,0 +170747471806,216,0 +170747471854,218,0 +170747471902,217,0 +170747471951,221,0 +170747472001,222,0 +170747472049,223,0 +170747472097,224,0 +170747472145,226,0 +170747472193,226,0 +170747472241,226,0 +170747472290,228,0 +170747472340,227,0 +170747472387,229,0 +170747472435,231,0 +170747472483,228,0 +170747472533,229,0 +170747472581,228,0 +170747472631,218,0 +170747472680,218,0 +170747472728,219,0 +170747472776,221,0 +170747472824,221,0 +170747472872,223,0 +170747472919,225,0 +170747472967,225,0 +170747473015,227,0 +170747473065,226,0 +170747473112,227,0 +170747473162,236,0 +170747473210,229,0 +170747473258,229,0 +170747473307,231,0 +170747473355,228,0 +170747473404,231,0 +170747473454,218,0 +170747473503,216,0 +170747473553,214,0 +170747473601,219,0 +170747473649,218,0 +170747473697,222,0 +170747473744,220,0 +170747473792,222,0 +170747473840,224,0 +170747473888,226,0 +170747473936,226,0 +170747473984,227,0 +170747474032,227,0 +170747474081,228,0 +170747474131,228,0 +170747474179,228,0 +170747474228,228,0 +170747474276,227,0 +170747474326,217,0 +170747474375,217,0 +170747474423,218,0 +170747474473,219,0 +170747474521,219,0 +170747474569,221,0 +170747474617,221,0 +170747474665,225,0 +170747474714,224,0 +170747474762,225,0 +170747474810,225,0 +170747474858,227,0 +170747474907,227,0 +170747474955,228,0 +170747475003,227,0 +170747475052,229,0 +170747475100,228,0 +170747475148,220,0 +170747475196,219,0 +170747475244,221,0 +170747475292,222,0 +170747475341,223,0 +170747475389,224,0 +170747475437,226,0 +170747475485,226,0 +170747475533,227,0 +170747475581,227,0 +170747475630,228,0 +170747475680,227,0 +170747475728,228,0 +170747475776,228,0 +170747475825,227,0 +170747475875,226,0 +170747475923,226,0 +170747475971,228,0 +170747476018,222,0 +170747476066,225,0 +170747476114,224,0 +170747476162,224,0 +170747476212,227,0 +170747476259,226,0 +170747476309,226,0 +170747476359,230,0 +170747476408,230,0 +170747476456,230,0 +170747476504,230,0 +170747476552,228,0 +170747476601,229,0 +170747476649,228,0 +170747476697,228,0 +170747476745,227,0 +170747476793,228,0 +170747476841,218,0 +170747476891,218,0 +170747476939,221,0 +170747476988,221,0 +170747477036,222,0 +170747477084,225,0 +170747477132,225,0 +170747477180,228,0 +170747477228,229,0 +170747477277,234,0 +170747477325,226,0 +170747477373,230,0 +170747477421,229,0 +170747477469,230,0 +170747477519,230,0 +170747477567,228,0 +170747477615,228,0 +170747477663,227,0 +170747477711,216,0 +170747477760,216,0 +170747477808,216,0 +170747477858,216,0 +170747477906,217,0 +170747477954,219,0 +170747478003,220,0 +170747478053,221,0 +170747478101,222,0 +170747478149,222,0 +170747478198,223,0 +170747478248,224,0 +170747478296,237,0 +170747478344,227,0 +170747478391,228,0 +170747478441,228,0 +170747478489,229,0 +170747478537,229,0 +170747478585,229,0 +170747478633,231,0 +170747478683,230,0 +170747478732,229,0 +170747478780,228,0 +170747478830,228,0 +170747478878,228,0 +170747478926,229,0 +170747478974,217,0 +170747479022,218,0 +170747479070,218,0 +170747479117,219,0 +170747479167,220,0 +170747479217,221,0 +170747479266,223,0 +170747479316,223,0 +170747479364,224,0 +170747479412,225,0 +170747479459,223,0 +170747479507,226,0 +170747479555,229,0 +170747479605,228,0 +170747479655,228,0 +170747479704,231,0 +170747479752,229,0 +170747479802,218,0 +170747479849,218,0 +170747479897,219,0 +170747479947,220,0 +170747479995,221,0 +170747480043,222,0 +170747480091,222,0 +170747480140,224,0 +170747480190,225,0 +170747480238,226,0 +170747480287,227,0 +170747480335,227,0 +170747480385,229,0 +170747480433,229,0 +170747480482,230,0 +170747480532,230,0 +170747480580,230,0 +170747480629,228,0 +170747480677,220,0 +170747480725,219,0 +170747480775,221,0 +170747480823,222,0 +170747480871,224,0 +170747480919,225,0 +170747480967,225,0 +170747481016,226,0 +170747481066,227,0 +170747481113,228,0 +170747481163,225,0 +170747481212,230,0 +170747481262,229,0 +170747481311,230,0 +170747481359,231,0 +170747481407,228,0 +170747481457,228,0 +170747481505,219,0 +170747481553,221,0 +170747481601,224,0 +170747481649,224,0 +170747481697,225,0 +170747481746,223,0 +170747481794,226,0 +170747481843,229,0 +170747481891,231,0 +170747481939,227,0 +170747481987,227,0 +170747482035,228,0 +170747482085,230,0 +170747482133,230,0 +170747482181,232,0 +170747482230,228,0 +170747482278,228,0 +170747482326,227,0 +170747482374,224,0 +170747482423,223,0 +170747482471,224,0 +170747482521,225,0 +170747482570,225,0 +170747482618,228,0 +170747482666,229,0 +170747482714,229,0 +170747482762,231,0 +170747482812,229,0 +170747482861,229,0 +170747482909,230,0 +170747482957,233,0 +170747483007,228,0 +170747483055,230,0 +170747483103,228,0 +170747483151,229,0 +170747483199,222,0 +170747483246,226,0 +170747483294,226,0 +170747483342,228,0 +170747483390,226,0 +170747483438,227,0 +170747483486,227,0 +170747483534,227,0 +170747483582,229,0 +170747483630,227,0 +170747483677,228,0 +170747483725,230,0 +170747483775,229,0 +170747483824,230,0 +170747483872,227,0 +170747483922,231,0 +170747483972,227,0 +170747484019,228,0 +170747484067,223,0 +170747484115,224,0 +170747484163,225,0 +170747484213,226,0 +170747484261,229,0 +170747484309,230,0 +170747484357,233,0 +170747484406,228,0 +170747484456,229,0 +170747484504,230,0 +170747484553,231,0 +170747484601,230,0 +170747484649,228,0 +170747484697,229,0 +170747484747,228,0 +170747484796,229,0 +170747484844,227,0 +170747484892,220,0 +170747484940,221,0 +170747484990,223,0 +170747485038,222,0 +170747485085,224,0 +170747485135,225,0 +170747485183,227,0 +170747485231,228,0 +170747485280,228,0 +170747485330,228,0 +170747485378,230,0 +170747485427,229,0 +170747485475,229,0 +170747485523,229,0 +170747485571,230,0 +170747485621,228,0 +170747485669,229,0 +170747485717,228,0 +170747485765,215,0 +170747485813,218,0 +170747485861,218,0 +170747485910,222,0 +170747485958,220,0 +170747486006,224,0 +170747486054,224,0 +170747486102,226,0 +170747486150,226,0 +170747486198,227,0 +170747486246,228,0 +170747486295,229,0 +170747486345,230,0 +170747486394,230,0 +170747486444,229,0 +170747486492,229,0 +170747486541,229,0 +170747486591,222,0 +170747486640,216,0 +170747486688,217,0 +170747486736,218,0 +170747486784,219,0 +170747486832,221,0 +170747486880,222,0 +170747486930,222,0 +170747486977,222,0 +170747487025,224,0 +170747487073,226,0 +170747487123,225,0 +170747487171,226,0 +170747487221,228,0 +170747487269,230,0 +170747487318,229,0 +170747487366,229,0 +170747487414,227,0 +170747487463,216,0 +170747487513,217,0 +170747487561,218,0 +170747487610,219,0 +170747487660,221,0 +170747487708,221,0 +170747487756,222,0 +170747487804,223,0 +170747487852,223,0 +170747487901,226,0 +170747487949,227,0 +170747487997,230,0 +170747488047,228,0 +170747488096,229,0 +170747488144,230,0 +170747488194,228,0 +170747488242,231,0 +170747488291,217,0 +170747488339,216,0 +170747488387,216,0 +170747488435,217,0 +170747488483,219,0 +170747488532,218,0 +170747488580,226,0 +170747488628,221,0 +170747488676,224,0 +170747488724,223,0 +170747488772,225,0 +170747488820,222,0 +170747488868,227,0 +170747488916,226,0 +170747488965,227,0 +170747489013,227,0 +170747489061,228,0 +170747489109,228,0 +170747489157,218,0 +170747489207,215,0 +170747489254,217,0 +170747489302,218,0 +170747489352,219,0 +170747489400,220,0 +170747489448,221,0 +170747489496,221,0 +170747489544,223,0 +170747489592,224,0 +170747489640,225,0 +170747489688,226,0 +170747489736,227,0 +170747489785,228,0 +170747489833,227,0 +170747489881,227,0 +170747489931,228,0 +170747489979,225,0 +170747490028,220,0 +170747490076,222,0 +170747490125,222,0 +170747490175,223,0 +170747490223,225,0 +170747490271,226,0 +170747490319,226,0 +170747490367,227,0 +170747490415,227,0 +170747490463,226,0 +170747490511,227,0 +170747490560,227,0 +170747490610,225,0 +170747490658,232,0 +170747490706,231,0 +170747490755,229,0 +170747490805,228,0 +170747490854,225,0 +170747490902,225,0 +170747490950,226,0 +170747490998,228,0 +170747491048,229,0 +170747491096,229,0 +170747491145,230,0 +170747491195,229,0 +170747491244,230,0 +170747491292,228,0 +170747491341,228,0 +170747491391,228,0 +170747491439,228,0 +170747491487,228,0 +170747491536,228,0 +170747491586,229,0 +170747491634,236,0 +170747491682,223,0 +170747491730,225,0 +170747491778,228,0 +170747491826,228,0 +170747491874,226,0 +170747491923,227,0 +170747491971,228,0 +170747492019,228,0 +170747492069,228,0 +170747492118,230,0 +170747492168,229,0 +170747492216,232,0 +170747492264,231,0 +170747492311,230,0 +170747492361,229,0 +170747492409,229,0 +170747492457,228,0 +170747492506,225,0 +170747492554,221,0 +170747492602,220,0 +170747492650,221,0 +170747492698,223,0 +170747492746,224,0 +170747492794,226,0 +170747492844,227,0 +170747492893,228,0 +170747492941,226,0 +170747492989,228,0 +170747493037,230,0 +170747493086,232,0 +170747493134,230,0 +170747493182,230,0 +170747493230,229,0 +170747493280,227,0 +170747493328,227,0 +170747493376,219,0 +170747493424,220,0 +170747493472,221,0 +170747493520,222,0 +170747493568,224,0 +170747493615,225,0 +170747493665,226,0 +170747493715,223,0 +170747493764,228,0 +170747493812,228,0 +170747493860,228,0 +170747493908,229,0 +170747493957,230,0 +170747494005,229,0 +170747494055,228,0 +170747494105,228,0 +170747494152,227,0 +170747494200,227,0 +170747494248,220,0 +170747494298,221,0 +170747494348,222,0 +170747494395,223,0 +170747494443,224,0 +170747494491,224,0 +170747494541,226,0 +170747494590,231,0 +170747494640,228,0 +170747494688,228,0 +170747494736,231,0 +170747494784,228,0 +170747494832,229,0 +170747494880,226,0 +170747494929,229,0 +170747494977,229,0 +170747495025,227,0 +170747495073,220,0 +170747495121,220,0 +170747495169,221,0 +170747495219,222,0 +170747495267,223,0 +170747495315,227,0 +170747495363,226,0 +170747495410,226,0 +170747495458,227,0 +170747495508,229,0 +170747495556,228,0 +170747495606,231,0 +170747495653,229,0 +170747495701,229,0 +170747495751,229,0 +170747495799,232,0 +170747495848,228,0 +170747495896,228,0 +170747495944,219,0 +170747495994,220,0 +170747496042,220,0 +170747496091,222,0 +170747496141,223,0 +170747496189,225,0 +170747496238,228,0 +170747496288,225,0 +170747496337,225,0 +170747496387,230,0 +170747496435,230,0 +170747496484,231,0 +170747496532,229,0 +170747496582,230,0 +170747496632,230,0 +170747496681,229,0 +170747496729,227,0 +170747496779,218,0 +170747496827,217,0 +170747496876,218,0 +170747496924,220,0 +170747496972,221,0 +170747497020,222,0 +170747497068,224,0 +170747497117,226,0 +170747497165,230,0 +170747497213,229,0 +170747497261,227,0 +170747497311,229,0 +170747497359,228,0 +170747497407,228,0 +170747497455,228,0 +170747497503,229,0 +170747497551,228,0 +170747497599,227,0 +170747497648,216,0 +170747497696,216,0 +170747497746,218,0 +170747497794,219,0 +170747497842,222,0 +170747497891,224,0 +170747497940,225,0 +170747497989,225,0 +170747498038,226,0 +170747498086,227,0 +170747498134,227,0 +170747498182,231,0 +170747498232,230,0 +170747498281,229,0 +170747498329,229,0 +170747498377,229,0 +170747498426,229,0 +170747498476,218,0 +170747498524,216,0 +170747498573,219,0 +170747498621,220,0 +170747498669,221,0 +170747498717,222,0 +170747498765,222,0 +170747498813,224,0 +170747498863,224,0 +170747498911,225,0 +170747498960,226,0 +170747499010,228,0 +170747499058,230,0 +170747499106,229,0 +170747499155,230,0 +170747499203,229,0 +170747499251,227,0 +170747499299,227,0 +170747499348,217,0 +170747499396,217,0 +170747499444,219,0 +170747499492,221,0 +170747499541,222,0 +170747499589,222,0 +170747499639,223,0 +170747499687,224,0 +170747499734,227,0 +170747499782,225,0 +170747499830,227,0 +170747499878,225,0 +170747499926,228,0 +170747499974,232,0 +170747500022,228,0 +170747500070,229,0 +170747500119,228,0 +170747500167,217,0 +170747500216,216,0 +170747500266,217,0 +170747500316,220,0 +170747500364,220,0 +170747500413,222,0 +170747500461,223,0 +170747500509,223,0 +170747500559,224,0 +170747500608,225,0 +170747500656,227,0 +170747500706,228,0 +170747500753,228,0 +170747500801,232,0 +170747500851,225,0 +170747500900,228,0 +170747500948,229,0 +170747500996,226,0 +170747501044,216,0 +170747501092,216,0 +170747501140,217,0 +170747501188,218,0 +170747501236,220,0 +170747501284,220,0 +170747501331,222,0 +170747501379,224,0 +170747501427,225,0 +170747501475,225,0 +170747501523,226,0 +170747501571,229,0 +170747501619,229,0 +170747501667,228,0 +170747501715,228,0 +170747501763,228,0 +170747501812,229,0 +170747501860,217,0 +170747501908,216,0 +170747501956,218,0 +170747502004,219,0 +170747502052,220,0 +170747502100,222,0 +170747502147,222,0 +170747502195,224,0 +170747502245,224,0 +170747502293,225,0 +170747502341,226,0 +170747502390,227,0 +170747502438,227,0 +170747502487,227,0 +170747502537,228,0 +170747502585,228,0 +170747502633,230,0 +170747502681,226,0 +170747502729,219,0 +170747502777,218,0 +170747502825,220,0 +170747502873,222,0 +170747502922,222,0 +170747502972,222,0 +170747503021,223,0 +170747503069,225,0 +170747503117,225,0 +170747503167,226,0 +170747503215,228,0 +170747503263,227,0 +170747503312,229,0 +170747503360,228,0 +170747503410,228,0 +170747503458,227,0 +170747503507,227,0 +170747503555,220,0 +170747503605,219,0 +170747503653,222,0 +170747503700,222,0 +170747503750,224,0 +170747503799,223,0 +170747503847,226,0 +170747503897,225,0 +170747503945,226,0 +170747503994,227,0 +170747504044,227,0 +170747504093,227,0 +170747504143,228,0 +170747504191,227,0 +170747504239,228,0 +170747504288,226,0 +170747504338,227,0 +170747504387,227,0 +170747504437,224,0 +170747504486,224,0 +170747504534,226,0 +170747504582,226,0 +170747504630,226,0 +170747504678,225,0 +170747504726,228,0 +170747504775,229,0 +170747504825,227,0 +170747504873,227,0 +170747504923,228,0 +170747504973,228,0 +170747505022,227,0 +170747505072,228,0 +170747505121,226,0 +170747505171,229,0 +170747505219,228,0 +170747505268,226,0 +170747505316,229,0 +170747505364,227,0 +170747505412,227,0 +170747505460,231,0 +170747505509,228,0 +170747505559,229,0 +170747505607,229,0 +170747505655,230,0 +170747505702,228,0 +170747505750,228,0 +170747505798,228,0 +170747505846,230,0 +170747505894,229,0 +170747505943,227,0 +170747505993,229,0 +170747506042,226,0 +170747506092,227,0 +170747506140,230,0 +170747506189,227,0 +170747506237,228,0 +170747506285,229,0 +170747506334,231,0 +170747506384,228,0 +170747506434,230,0 +170747506483,230,0 +170747506533,230,0 +170747506582,229,0 +170747506632,229,0 +170747506681,226,0 +170747506729,229,0 +170747506777,229,0 +170747506825,228,0 +170747506873,228,0 +170747506922,227,0 +170747506970,219,0 +170747507018,221,0 +170747507066,222,0 +170747507114,223,0 +170747507162,226,0 +170747507212,226,0 +170747507260,228,0 +170747507307,228,0 +170747507355,226,0 +170747507403,229,0 +170747507451,230,0 +170747507499,229,0 +170747507549,230,0 +170747507597,229,0 +170747507645,228,0 +170747507693,228,0 +170747507741,228,0 +170747507789,228,0 +170747507837,218,0 +170747507886,220,0 +170747507934,220,0 +170747507982,222,0 +170747508031,223,0 +170747508079,222,0 +170747508129,224,0 +170747508179,228,0 +170747508228,229,0 +170747508276,227,0 +170747508324,239,0 +170747508372,229,0 +170747508420,228,0 +170747508469,229,0 +170747508519,229,0 +170747508567,228,0 +170747508615,226,0 +170747508663,218,0 +170747508711,218,0 +170747508759,220,0 +170747508807,221,0 +170747508856,222,0 +170747508906,224,0 +170747508955,225,0 +170747509005,225,0 +170747509054,226,0 +170747509104,226,0 +170747509154,226,0 +170747509201,227,0 +170747509249,230,0 +170747509299,229,0 +170747509347,229,0 +170747509395,229,0 +170747509444,227,0 +170747509492,218,0 +170747509542,218,0 +170747509591,220,0 +170747509639,221,0 +170747509687,222,0 +170747509735,223,0 +170747509783,223,0 +170747509831,225,0 +170747509881,228,0 +170747509930,228,0 +170747509978,230,0 +170747510028,229,0 +170747510077,230,0 +170747510127,229,0 +170747510175,228,0 +170747510223,230,0 +170747510271,229,0 +170747510320,228,0 +170747510370,218,0 +170747510419,218,0 +170747510467,220,0 +170747510515,222,0 +170747510563,223,0 +170747510613,225,0 +170747510661,224,0 +170747510709,225,0 +170747510758,227,0 +170747510808,226,0 +170747510856,230,0 +170747510905,229,0 +170747510953,230,0 +170747511001,229,0 +170747511051,227,0 +170747511100,228,0 +170747511150,227,0 +170747511198,217,0 +170747511246,216,0 +170747511294,218,0 +170747511343,221,0 +170747511391,221,0 +170747511439,224,0 +170747511489,225,0 +170747511538,226,0 +170747511588,227,0 +170747511636,227,0 +170747511684,227,0 +170747511733,231,0 +170747511783,230,0 +170747511832,230,0 +170747511882,232,0 +170747511930,231,0 +170747511979,229,0 +170747512029,228,0 +170747512077,215,0 +170747512125,217,0 +170747512173,217,0 +170747512222,219,0 +170747512272,222,0 +170747512321,222,0 +170747512369,225,0 +170747512417,224,0 +170747512467,225,0 +170747512515,225,0 +170747512563,227,0 +170747512612,229,0 +170747512660,230,0 +170747512710,232,0 +170747512757,235,0 +170747512807,229,0 +170747512857,228,0 +170747512906,217,0 +170747512954,216,0 +170747513002,215,0 +170747513050,218,0 +170747513098,219,0 +170747513147,220,0 +170747513197,222,0 +170747513246,223,0 +170747513294,224,0 +170747513342,227,0 +170747513390,225,0 +170747513440,229,0 +170747513488,229,0 +170747513537,231,0 +170747513585,227,0 +170747513633,229,0 +170747513683,229,0 +170747513731,226,0 +170747513778,216,0 +170747513828,216,0 +170747513878,217,0 +170747513927,220,0 +170747513977,221,0 +170747514026,223,0 +170747514076,224,0 +170747514125,225,0 +170747514173,226,0 +170747514221,227,0 +170747514271,230,0 +170747514320,231,0 +170747514370,228,0 +170747514418,229,0 +170747514467,229,0 +170747514515,229,0 +170747514565,227,0 +170747514614,217,0 +170747514662,217,0 +170747514712,218,0 +170747514760,219,0 +170747514807,221,0 +170747514855,222,0 +170747514905,222,0 +170747514953,225,0 +170747515001,226,0 +170747515048,227,0 +170747515096,227,0 +170747515146,228,0 +170747515194,234,0 +170747515242,228,0 +170747515290,230,0 +170747515338,230,0 +170747515387,239,0 +170747515435,218,0 +170747515485,217,0 +170747515534,219,0 +170747515582,220,0 +170747515632,221,0 +170747515680,224,0 +170747515728,225,0 +170747515776,227,0 +170747515825,224,0 +170747515875,222,0 +170747515924,228,0 +170747515972,228,0 +170747516022,228,0 +170747516071,229,0 +170747516119,229,0 +170747516167,228,0 +170747516215,228,0 +170747516263,226,0 +170747516311,216,0 +170747516359,217,0 +170747516407,218,0 +170747516457,220,0 +170747516505,221,0 +170747516553,221,0 +170747516602,223,0 +170747516652,223,0 +170747516700,224,0 +170747516749,223,0 +170747516799,226,0 +170747516848,229,0 +170747516896,227,0 +170747516946,226,0 +170747516995,228,0 +170747517045,229,0 +170747517093,226,0 +170747517141,217,0 +170747517190,217,0 +170747517238,219,0 +170747517286,220,0 +170747517334,223,0 +170747517382,224,0 +170747517432,225,0 +170747517479,225,0 +170747517527,227,0 +170747517575,226,0 +170747517623,228,0 +170747517671,228,0 +170747517719,227,0 +170747517769,228,0 +170747517817,228,0 +170747517865,227,0 +170747517913,228,0 +170747517962,227,0 +170747518010,217,0 +170747518058,218,0 +170747518106,221,0 +170747518156,221,0 +170747518205,224,0 +170747518253,223,0 +170747518303,226,0 +170747518351,225,0 +170747518399,226,0 +170747518448,227,0 +170747518498,228,0 +170747518547,227,0 +170747518595,228,0 +170747518643,228,0 +170747518693,228,0 +170747518742,225,0 +170747518790,227,0 +170747518840,221,0 +170747518888,221,0 +170747518936,222,0 +170747518985,223,0 +170747519035,224,0 +170747519084,225,0 +170747519132,227,0 +170747519182,226,0 +170747519230,227,0 +170747519278,229,0 +170747519326,228,0 +170747519375,228,0 +170747519425,228,0 +170747519474,229,0 +170747519524,228,0 +170747519572,229,0 +170747519620,227,0 +170747519668,222,0 +170747519716,226,0 +170747519765,225,0 +170747519815,227,0 +170747519863,226,0 +170747519910,228,0 +170747519958,229,0 +170747520008,228,0 +170747520056,228,0 +170747520104,229,0 +170747520153,228,0 +170747520203,231,0 +170747520252,229,0 +170747520300,228,0 +170747520348,229,0 +170747520396,228,0 +170747520444,232,0 +170747520492,228,0 +170747520540,226,0 +170747520590,229,0 +170747520638,228,0 +170747520687,227,0 +170747520735,227,0 +170747520783,229,0 +170747520831,229,0 +170747520879,229,0 +170747520928,228,0 +170747520978,230,0 +170747521027,228,0 +170747521075,230,0 +170747521123,228,0 +170747521171,228,0 +170747521221,228,0 +170747521269,228,0 +170747521317,227,0 +170747521365,220,0 +170747521414,226,0 +170747521462,223,0 +170747521512,223,0 +170747521560,224,0 +170747521609,226,0 +170747521657,226,0 +170747521705,231,0 +170747521753,229,0 +170747521801,230,0 +170747521849,232,0 +170747521897,230,0 +170747521945,233,0 +170747521994,229,0 +170747522042,230,0 +170747522092,228,0 +170747522140,228,0 +170747522189,227,0 +170747522237,221,0 +170747522287,222,0 +170747522336,223,0 +170747522386,224,0 +170747522434,225,0 +170747522482,228,0 +170747522531,228,0 +170747522579,228,0 +170747522627,227,0 +170747522675,229,0 +170747522725,228,0 +170747522773,228,0 +170747522820,229,0 +170747522870,229,0 +170747522918,228,0 +170747522966,228,0 +170747523015,228,0 +170747523065,218,0 +170747523115,219,0 +170747523164,222,0 +170747523212,222,0 +170747523262,225,0 +170747523311,224,0 +170747523361,227,0 +170747523410,226,0 +170747523458,226,0 +170747523507,227,0 +170747523556,228,0 +170747523606,232,0 +170747523654,231,0 +170747523702,231,0 +170747523750,229,0 +170747523798,229,0 +170747523846,230,0 +170747523894,228,0 +170747523943,218,0 +170747523993,218,0 +170747524042,221,0 +170747524092,222,0 +170747524140,223,0 +170747524190,224,0 +170747524239,226,0 +170747524287,226,0 +170747524335,228,0 +170747524383,227,0 +170747524432,229,0 +170747524480,230,0 +170747524530,229,0 +170747524578,228,0 +170747524626,229,0 +170747524674,226,0 +170747524723,227,0 +170747524773,218,0 +170747524821,217,0 +170747524869,217,0 +170747524917,219,0 +170747524966,222,0 +170747525016,223,0 +170747525065,224,0 +170747525113,223,0 +170747525161,228,0 +170747525209,226,0 +170747525259,227,0 +170747525307,229,0 +170747525355,229,0 +170747525403,227,0 +170747525452,230,0 +170747525500,228,0 +170747525548,227,0 +170747525598,227,0 +170747525646,217,0 +170747525695,218,0 +170747525745,219,0 +170747525793,222,0 +170747525842,222,0 +170747525892,223,0 +170747525941,223,0 +170747525989,221,0 +170747526037,226,0 +170747526087,227,0 +170747526135,228,0 +170747526183,226,0 +170747526230,227,0 +170747526280,230,0 +170747526329,228,0 +170747526377,228,0 +170747526427,228,0 +170747526475,219,0 +170747526525,219,0 +170747526572,220,0 +170747526620,221,0 +170747526668,222,0 +170747526718,227,0 +170747526766,223,0 +170747526814,225,0 +170747526863,226,0 +170747526911,226,0 +170747526959,228,0 +170747527007,226,0 +170747527055,230,0 +170747527105,228,0 +170747527153,232,0 +170747527202,230,0 +170747527250,229,0 +170747527298,227,0 +170747527348,218,0 +170747527397,221,0 +170747527445,221,0 +170747527493,222,0 +170747527543,225,0 +170747527590,226,0 +170747527638,225,0 +170747527686,227,0 +170747527734,228,0 +170747527784,227,0 +170747527832,231,0 +170747527881,229,0 +170747527931,231,0 +170747527979,227,0 +170747528029,234,0 +170747528078,229,0 +170747528126,224,0 +170747528174,219,0 +170747528222,220,0 +170747528272,224,0 +170747528320,225,0 +170747528367,224,0 +170747528415,229,0 +170747528465,229,0 +170747528513,234,0 +170747528561,230,0 +170747528609,231,0 +170747528658,230,0 +170747528708,229,0 +170747528757,230,0 +170747528807,228,0 +170747528855,231,0 +170747528903,228,0 +170747528951,228,0 +170747529000,227,0 +170747529048,220,0 +170747529096,221,0 +170747529145,223,0 +170747529195,224,0 +170747529243,224,0 +170747529291,225,0 +170747529339,227,0 +170747529387,226,0 +170747529435,230,0 +170747529484,228,0 +170747529532,228,0 +170747529582,230,0 +170747529630,232,0 +170747529678,229,0 +170747529727,229,0 +170747529775,224,0 +170747529823,227,0 +170747529873,218,0 +170747529922,221,0 +170747529972,224,0 +170747530020,222,0 +170747530068,225,0 +170747530116,225,0 +170747530164,226,0 +170747530212,227,0 +170747530261,228,0 +170747530309,230,0 +170747530357,229,0 +170747530406,228,0 +170747530456,229,0 +170747530504,229,0 +170747530552,230,0 +170747530600,229,0 +170747530649,226,0 +170747530697,223,0 +170747530745,220,0 +170747530793,220,0 +170747530843,222,0 +170747530891,222,0 +170747530938,224,0 +170747530988,224,0 +170747531038,226,0 +170747531087,227,0 +170747531137,226,0 +170747531186,229,0 +170747531234,231,0 +170747531282,230,0 +170747531330,229,0 +170747531378,229,0 +170747531428,230,0 +170747531477,228,0 +170747531527,228,0 +170747531575,216,0 +170747531623,217,0 +170747531672,218,0 +170747531720,222,0 +170747531768,220,0 +170747531816,222,0 +170747531864,224,0 +170747531912,223,0 +170747531961,225,0 +170747532011,225,0 +170747532059,226,0 +170747532107,227,0 +170747532155,228,0 +170747532203,229,0 +170747532252,229,0 +170747532302,227,0 +170747532351,228,0 +170747532399,217,0 +170747532447,214,0 +170747532497,218,0 +170747532545,218,0 +170747532593,220,0 +170747532641,220,0 +170747532689,222,0 +170747532737,222,0 +170747532786,223,0 +170747532834,222,0 +170747532882,226,0 +170747532932,227,0 +170747532980,227,0 +170747533027,228,0 +170747533075,228,0 +170747533123,229,0 +170747533171,229,0 +170747533219,227,0 +170747533269,217,0 +170747533317,217,0 +170747533366,218,0 +170747533416,220,0 +170747533464,221,0 +170747533513,222,0 +170747533563,224,0 +170747533612,224,0 +170747533660,227,0 +170747533708,227,0 +170747533756,228,0 +170747533806,227,0 +170747533855,230,0 +170747533903,228,0 +170747533951,228,0 +170747533999,229,0 +170747534049,226,0 +170747534097,218,0 +170747534146,220,0 +170747534194,220,0 +170747534244,222,0 +170747534293,223,0 +170747534343,224,0 +170747534391,225,0 +170747534439,225,0 +170747534487,226,0 +170747534535,227,0 +170747534583,228,0 +170747534632,230,0 +170747534682,227,0 +170747534731,228,0 +170747534779,230,0 +170747534827,232,0 +170747534875,229,0 +170747534923,229,0 +170747534972,225,0 +170747535020,225,0 +170747535068,226,0 +170747535116,228,0 +170747535166,228,0 +170747535214,228,0 +170747535263,226,0 +170747535313,235,0 +170747535363,232,0 +170747535412,230,0 +170747535460,229,0 +170747535509,229,0 +170747535557,228,0 +170747535605,229,0 +170747535653,231,0 +170747535703,227,0 +170747535752,227,0 +170747535800,218,0 +170747535848,220,0 +170747535896,221,0 +170747535944,223,0 +170747535992,222,0 +170747536040,225,0 +170747536090,229,0 +170747536138,227,0 +170747536186,227,0 +170747536235,226,0 +170747536283,228,0 +170747536331,230,0 +170747536381,232,0 +170747536430,232,0 +170747536480,231,0 +170747536528,233,0 +170747536576,230,0 +170747536625,227,0 +170747536673,217,0 +170747536721,219,0 +170747536769,219,0 +170747536817,220,0 +170747536865,222,0 +170747536913,222,0 +170747536961,223,0 +170747537009,226,0 +170747537057,226,0 +170747537105,228,0 +170747537153,230,0 +170747537201,232,0 +170747537250,230,0 +170747537298,231,0 +170747537348,229,0 +170747537396,229,0 +170747537444,230,0 +170747537492,218,0 +170747537540,217,0 +170747537589,218,0 +170747537637,221,0 +170747537687,222,0 +170747537735,222,0 +170747537783,223,0 +170747537830,225,0 +170747537878,228,0 +170747537928,222,0 +170747537977,225,0 +170747538027,227,0 +170747538077,227,0 +170747538126,226,0 +170747538176,228,0 +170747538225,229,0 +170747538275,229,0 +170747538323,228,0 +170747538372,218,0 +170747538422,219,0 +170747538471,221,0 +170747538519,222,0 +170747538567,223,0 +170747538615,223,0 +170747538663,224,0 +170747538711,225,0 +170747538759,227,0 +170747538807,225,0 +170747538856,228,0 +170747538906,229,0 +170747538954,228,0 +170747539002,229,0 +170747539050,228,0 +170747539099,228,0 +170747539147,225,0 +170747539197,221,0 +170747539246,220,0 +170747539294,222,0 +170747539344,224,0 +170747539392,225,0 +170747539441,228,0 +170747539489,227,0 +170747539537,228,0 +170747539585,227,0 +170747539633,228,0 +170747539683,228,0 +170747539732,229,0 +170747539780,228,0 +170747539828,230,0 +170747539878,230,0 +170747539926,229,0 +170747539974,229,0 +170747540022,227,0 +170747540071,220,0 +170747540121,221,0 +170747540169,222,0 +170747540218,222,0 +170747540268,224,0 +170747540316,225,0 +170747540364,226,0 +170747540411,221,0 +170747540461,227,0 +170747540509,227,0 +170747540558,229,0 +170747540608,230,0 +170747540658,233,0 +170747540707,235,0 +170747540755,232,0 +170747540805,229,0 +170747540853,229,0 +170747540902,222,0 +170747540950,225,0 +170747541000,227,0 +170747541047,225,0 +170747541095,226,0 +170747541143,227,0 +170747541191,229,0 +170747541239,228,0 +170747541289,230,0 +170747541338,229,0 +170747541386,229,0 +170747541434,231,0 +170747541482,229,0 +170747541530,229,0 +170747541578,229,0 +170747541626,229,0 +170747541674,229,0 +170747541724,226,0 +170747541772,224,0 +170747541821,225,0 +170747541869,225,0 +170747541917,227,0 +170747541965,227,0 +170747542013,229,0 +170747542062,224,0 +170747542112,230,0 +170747542162,230,0 +170747542211,230,0 +170747542259,228,0 +170747542307,228,0 +170747542357,235,0 +170747542404,229,0 +170747542452,229,0 +170747542500,228,0 +170747542548,229,0 +170747542598,221,0 +170747542647,221,0 +170747542697,223,0 +170747542745,225,0 +170747542793,226,0 +170747542841,224,0 +170747542889,227,0 +170747542937,228,0 +170747542986,229,0 +170747543034,231,0 +170747543082,232,0 +170747543130,228,0 +170747543180,231,0 +170747543229,230,0 +170747543277,229,0 +170747543325,228,0 +170747543373,228,0 +170747543421,227,0 +170747543469,216,0 +170747543518,217,0 +170747543568,219,0 +170747543616,220,0 +170747543664,222,0 +170747543712,223,0 +170747543760,226,0 +170747543808,224,0 +170747543856,227,0 +170747543904,227,0 +170747543951,227,0 +170747543999,229,0 +170747544047,228,0 +170747544097,228,0 +170747544145,228,0 +170747544193,228,0 +170747544242,228,0 +170747544292,217,0 +170747544341,215,0 +170747544389,218,0 +170747544437,219,0 +170747544485,220,0 +170747544533,222,0 +170747544581,222,0 +170747544629,223,0 +170747544679,225,0 +170747544727,226,0 +170747544775,226,0 +170747544824,228,0 +170747544874,227,0 +170747544923,227,0 +170747544973,228,0 +170747545022,228,0 +170747545070,229,0 +170747545118,217,0 +170747545166,216,0 +170747545216,216,0 +170747545265,217,0 +170747545313,220,0 +170747545363,219,0 +170747545412,220,0 +170747545462,223,0 +170747545511,218,0 +170747545559,224,0 +170747545607,225,0 +170747545657,227,0 +170747545706,228,0 +170747545754,227,0 +170747545802,229,0 +170747545850,227,0 +170747545898,229,0 +170747545946,226,0 +170747545994,217,0 +170747546042,217,0 +170747546091,218,0 +170747546139,219,0 +170747546187,220,0 +170747546237,222,0 +170747546285,222,0 +170747546334,223,0 +170747546382,224,0 +170747546430,225,0 +170747546478,226,0 +170747546528,227,0 +170747546577,228,0 +170747546625,229,0 +170747546673,229,0 +170747546722,229,0 +170747546770,228,0 +170747546818,218,0 +170747546866,214,0 +170747546914,216,0 +170747546962,217,0 +170747547011,218,0 +170747547059,218,0 +170747547109,221,0 +170747547156,221,0 +170747547204,222,0 +170747547252,225,0 +170747547302,225,0 +170747547351,227,0 +170747547400,227,0 +170747547448,229,0 +170747547496,228,0 +170747547546,228,0 +170747547594,230,0 +170747547643,225,0 +170747547692,215,0 +170747547742,217,0 +170747547791,219,0 +170747547839,221,0 +170747547889,222,0 +170747547939,223,0 +170747547987,223,0 +170747548036,225,0 +170747548084,226,0 +170747548134,226,0 +170747548182,227,0 +170747548231,228,0 +170747548279,228,0 +170747548328,228,0 +170747548378,229,0 +170747548428,228,0 +170747548475,227,0 +170747548525,221,0 +170747548574,221,0 +170747548622,223,0 +170747548670,224,0 +170747548718,225,0 +170747548766,225,0 +170747548815,227,0 +170747548863,226,0 +170747548911,231,0 +170747548959,228,0 +170747549009,229,0 +170747549057,231,0 +170747549105,228,0 +170747549153,228,0 +170747549201,228,0 +170747549250,227,0 +170747549300,229,0 +170747549348,229,0 +170747549397,224,0 +170747549447,224,0 +170747549496,225,0 +170747549544,226,0 +170747549592,234,0 +170747549640,232,0 +170747549690,227,0 +170747549739,228,0 +170747549787,230,0 +170747549837,229,0 +170747549886,230,0 +170747549936,230,0 +170747549984,230,0 +170747550032,228,0 +170747550080,223,0 +170747550128,227,0 +170747550176,228,0 +170747550225,222,0 +170747550273,222,0 +170747550323,224,0 +170747550370,225,0 +170747550418,224,0 +170747550468,244,0 +170747550516,227,0 +170747550565,227,0 +170747550615,228,0 +170747550665,229,0 +170747550714,230,0 +170747550762,229,0 +170747550810,229,0 +170747550858,229,0 +170747550906,229,0 +170747550954,229,0 +170747551002,227,0 +170747551050,218,0 +170747551098,219,0 +170747551146,220,0 +170747551195,222,0 +170747551245,224,0 +170747551295,224,0 +170747551344,224,0 +170747551392,224,0 +170747551441,227,0 +170747551491,227,0 +170747551539,228,0 +170747551587,225,0 +170747551636,231,0 +170747551686,229,0 +170747551734,231,0 +170747551782,230,0 +170747551830,228,0 +170747551878,227,0 +170747551927,219,0 +170747551975,219,0 +170747552023,221,0 +170747552073,223,0 +170747552122,223,0 +170747552172,224,0 +170747552221,225,0 +170747552271,226,0 +170747552320,225,0 +170747552370,228,0 +170747552418,229,0 +170747552466,228,0 +170747552514,229,0 +170747552563,227,0 +170747552613,228,0 +170747552661,228,0 +170747552709,229,0 +170747552758,220,0 +170747552808,221,0 +170747552856,219,0 +170747552904,224,0 +170747552952,225,0 +170747553000,227,0 +170747553049,225,0 +170747553097,226,0 +170747553145,228,0 +170747553195,228,0 +170747553244,228,0 +170747553292,229,0 +170747553342,229,0 +170747553391,228,0 +170747553439,228,0 +170747553489,228,0 +170747553538,227,0 +170747553588,226,0 +170747553636,219,0 +170747553685,221,0 +170747553733,221,0 +170747553783,222,0 +170747553832,223,0 +170747553882,226,0 +170747553931,226,0 +170747553979,226,0 +170747554027,228,0 +170747554077,230,0 +170747554125,228,0 +170747554174,229,0 +170747554224,229,0 +170747554273,229,0 +170747554321,229,0 +170747554369,229,0 +170747554417,225,0 +170747554467,220,0 +170747554515,218,0 +170747554563,220,0 +170747554612,221,0 +170747554660,233,0 +170747554710,223,0 +170747554758,225,0 +170747554806,225,0 +170747554854,228,0 +170747554903,228,0 +170747554951,226,0 +170747555001,232,0 +170747555050,230,0 +170747555098,230,0 +170747555146,230,0 +170747555196,229,0 +170747555245,229,0 +170747555295,225,0 +170747555343,218,0 +170747555391,219,0 +170747555439,219,0 +170747555486,222,0 +170747555534,223,0 +170747555582,226,0 +170747555632,225,0 +170747555680,226,0 +170747555728,229,0 +170747555777,228,0 +170747555827,229,0 +170747555876,232,0 +170747555926,231,0 +170747555974,232,0 +170747556022,231,0 +170747556070,229,0 +170747556119,228,0 +170747556169,217,0 +170747556217,218,0 +170747556265,220,0 +170747556313,221,0 +170747556362,222,0 +170747556412,224,0 +170747556461,224,0 +170747556511,226,0 +170747556561,227,0 +170747556610,228,0 +170747556658,227,0 +170747556706,229,0 +170747556754,225,0 +170747556802,233,0 +170747556852,229,0 +170747556899,229,0 +170747556949,228,0 +170747556998,218,0 +170747557048,217,0 +170747557098,219,0 +170747557146,220,0 +170747557195,222,0 +170747557243,222,0 +170747557292,224,0 +170747557340,225,0 +170747557388,225,0 +170747557438,227,0 +170747557487,226,0 +170747557537,230,0 +170747557585,228,0 +170747557633,228,0 +170747557681,228,0 +170747557729,228,0 +170747557778,227,0 +170747557828,227,0 +170747557876,218,0 +170747557924,217,0 +170747557972,220,0 +170747558019,221,0 +170747558069,221,0 +170747558118,220,0 +170747558166,225,0 +170747558216,228,0 +170747558265,227,0 +170747558313,228,0 +170747558363,229,0 +170747558413,229,0 +170747558460,228,0 +170747558508,230,0 +170747558558,230,0 +170747558608,229,0 +170747558657,227,0 +170747558705,219,0 +170747558753,217,0 +170747558801,219,0 +170747558851,221,0 +170747558898,223,0 +170747558946,223,0 +170747558994,223,0 +170747559044,224,0 +170747559092,225,0 +170747559139,227,0 +170747559187,228,0 +170747559235,229,0 +170747559283,228,0 +170747559331,229,0 +170747559380,230,0 +170747559430,229,0 +170747559478,229,0 +170747559527,226,0 +170747559577,216,0 +170747559625,219,0 +170747559673,219,0 +170747559721,221,0 +170747559770,221,0 +170747559820,223,0 +170747559869,223,0 +170747559917,224,0 +170747559965,228,0 +170747560015,227,0 +170747560063,228,0 +170747560111,228,0 +170747560159,226,0 +170747560207,233,0 +170747560255,227,0 +170747560304,228,0 +170747560352,229,0 +170747560401,218,0 +170747560449,219,0 +170747560497,220,0 +170747560547,219,0 +170747560596,224,0 +170747560644,223,0 +170747560693,225,0 +170747560741,224,0 +170747560791,227,0 +170747560839,226,0 +170747560886,228,0 +170747560934,228,0 +170747560982,224,0 +170747561030,227,0 +170747561078,228,0 +170747561126,228,0 +170747561175,228,0 +170747561223,226,0 +170747561273,217,0 +170747561323,219,0 +170747561372,219,0 +170747561422,218,0 +170747561470,220,0 +170747561518,222,0 +170747561566,223,0 +170747561613,224,0 +170747561661,226,0 +170747561709,227,0 +170747561757,227,0 +170747561805,229,0 +170747561854,230,0 +170747561902,228,0 +170747561952,229,0 +170747562000,228,0 +170747562049,228,0 +170747562097,217,0 +170747562145,218,0 +170747562193,220,0 +170747562240,218,0 +170747562288,222,0 +170747562336,222,0 +170747562384,222,0 +170747562432,224,0 +170747562482,224,0 +170747562531,225,0 +170747562579,227,0 +170747562628,227,0 +170747562678,227,0 +170747562728,227,0 +170747562777,227,0 +170747562825,228,0 +170747562875,224,0 +170747562924,225,0 +170747562972,223,0 +170747563020,224,0 +170747563069,224,0 +170747563117,225,0 +170747563165,226,0 +170747563213,226,0 +170747563261,227,0 +170747563311,227,0 +170747563360,226,0 +170747563410,228,0 +170747563459,229,0 +170747563507,229,0 +170747563557,228,0 +170747563606,228,0 +170747563656,228,0 +170747563704,228,0 +170747563752,227,0 +170747563800,228,0 +170747563848,227,0 +170747563897,229,0 +170747563945,228,0 +170747563995,228,0 +170747564043,229,0 +170747564091,228,0 +170747564139,229,0 +170747564187,228,0 +170747564235,230,0 +170747564284,228,0 +170747564334,229,0 +170747564383,228,0 +170747564433,230,0 +170747564481,228,0 +170747564530,228,0 +170747564578,228,0 +170747564626,224,0 +170747564674,223,0 +170747564722,227,0 +170747564770,226,0 +170747564817,226,0 +170747564865,228,0 +170747564913,230,0 +170747564963,234,0 +170747565011,228,0 +170747565058,231,0 +170747565106,230,0 +170747565154,228,0 +170747565202,226,0 +170747565250,229,0 +170747565299,230,0 +170747565347,227,0 +170747565395,227,0 +170747565443,226,0 +170747565491,222,0 +170747565540,224,0 +170747565590,225,0 +170747565639,226,0 +170747565689,226,0 +170747565737,226,0 +170747565784,227,0 +170747565834,228,0 +170747565882,229,0 +170747565931,228,0 +170747565979,229,0 +170747566027,230,0 +170747566075,229,0 +170747566123,229,0 +170747566171,228,0 +170747566220,227,0 +170747566270,229,0 +170747566319,218,0 +170747566369,219,0 +170747566418,221,0 +170747566466,225,0 +170747566516,224,0 +170747566566,226,0 +170747566615,226,0 +170747566665,227,0 +170747566714,227,0 +170747566762,226,0 +170747566812,229,0 +170747566861,230,0 +170747566909,228,0 +170747566957,229,0 +170747567007,229,0 +170747567055,228,0 +170747567104,227,0 +170747567154,218,0 +170747567202,217,0 +170747567250,218,0 +170747567298,220,0 +170747567346,224,0 +170747567395,222,0 +170747567445,225,0 +170747567494,225,0 +170747567544,224,0 +170747567592,226,0 +170747567640,229,0 +170747567688,228,0 +170747567737,229,0 +170747567785,229,0 +170747567833,227,0 +170747567881,232,0 +170747567929,224,0 +170747567978,227,0 +170747568028,217,0 +170747568077,217,0 +170747568127,219,0 +170747568175,219,0 +170747568223,220,0 +170747568272,221,0 +170747568320,225,0 +170747568370,225,0 +170747568419,225,0 +170747568467,225,0 +170747568515,228,0 +170747568563,229,0 +170747568611,230,0 +170747568659,227,0 +170747568707,232,0 +170747568755,233,0 +170747568803,228,0 +170747568851,220,0 +170747568898,217,0 +170747568946,218,0 +170747568994,220,0 +170747569042,221,0 +170747569092,222,0 +170747569140,224,0 +170747569188,224,0 +170747569236,225,0 +170747569284,226,0 +170747569333,229,0 +170747569383,231,0 +170747569431,230,0 +170747569479,230,0 +170747569527,229,0 +170747569576,228,0 +170747569624,228,0 +170747569672,227,0 +170747569722,217,0 +170747569770,218,0 +170747569819,218,0 +170747569867,221,0 +170747569915,222,0 +170747569963,220,0 +170747570012,224,0 +170747570062,226,0 +170747570110,227,0 +170747570158,226,0 +170747570207,230,0 +170747570257,231,0 +170747570305,228,0 +170747570354,229,0 +170747570404,230,0 +170747570452,228,0 +170747570501,228,0 +170747570551,217,0 +170747570600,217,0 +170747570650,217,0 +170747570699,220,0 +170747570749,219,0 +170747570797,221,0 +170747570845,224,0 +170747570894,224,0 +170747570944,225,0 +170747570992,227,0 +170747571041,230,0 +170747571089,233,0 +170747571137,227,0 +170747571187,230,0 +170747571236,227,0 +170747571284,230,0 +170747571334,228,0 +170747571382,218,0 +170747571431,216,0 +170747571481,217,0 +170747571530,218,0 +170747571578,220,0 +170747571628,222,0 +170747571676,222,0 +170747571724,217,0 +170747571772,228,0 +170747571821,226,0 +170747571869,228,0 +170747571917,228,0 +170747571967,229,0 +170747572014,231,0 +170747572062,229,0 +170747572110,228,0 +170747572158,228,0 +170747572206,229,0 +170747572256,214,0 +170747572305,217,0 +170747572353,219,0 +170747572403,221,0 +170747572451,221,0 +170747572499,223,0 +170747572547,223,0 +170747572596,225,0 +170747572644,227,0 +170747572694,226,0 +170747572742,229,0 +170747572790,230,0 +170747572837,230,0 +170747572886,227,0 +170747572935,229,0 +170747572983,228,0 +170747573032,227,0 +170747573080,216,0 +170747573128,216,0 +170747573178,217,0 +170747573226,216,0 +170747573274,219,0 +170747573323,221,0 +170747573371,223,0 +170747573419,223,0 +170747573467,223,0 +170747573515,222,0 +170747573565,227,0 +170747573613,230,0 +170747573662,227,0 +170747573710,228,0 +170747573760,230,0 +170747573808,229,0 +170747573856,228,0 +170747573905,227,0 +170747573955,215,0 +170747574003,215,0 +170747574052,218,0 +170747574100,218,0 +170747574148,220,0 +170747574196,220,0 +170747574244,222,0 +170747574292,224,0 +170747574341,224,0 +170747574389,227,0 +170747574437,229,0 +170747574487,226,0 +170747574535,228,0 +170747574583,228,0 +170747574631,225,0 +170747574680,229,0 +170747574728,227,0 +170747574778,216,0 +170747574827,216,0 +170747574875,217,0 +170747574923,219,0 +170747574971,221,0 +170747575019,221,0 +170747575069,220,0 +170747575116,222,0 +170747575166,223,0 +170747575215,222,0 +170747575265,224,0 +170747575313,224,0 +170747575363,227,0 +170747575411,227,0 +170747575459,228,0 +170747575506,231,0 +170747575554,229,0 +170747575604,217,0 +170747575653,217,0 +170747575703,218,0 +170747575753,221,0 +170747575801,223,0 +170747575850,222,0 +170747575900,221,0 +170747575949,224,0 +170747575997,224,0 +170747576046,226,0 +170747576094,227,0 +170747576144,229,0 +170747576193,228,0 +170747576243,228,0 +170747576293,227,0 +170747576340,228,0 +170747576388,230,0 +170747576436,227,0 +170747576484,215,0 +170747576532,219,0 +170747576582,222,0 +170747576630,221,0 +170747576678,222,0 +170747576727,223,0 +170747576775,224,0 +170747576825,228,0 +170747576873,226,0 +170747576922,227,0 +170747576972,228,0 +170747577020,228,0 +170747577069,229,0 +170747577119,228,0 +170747577168,229,0 +170747577218,227,0 +170747577267,227,0 +170747577315,225,0 +170747577365,227,0 +170747577413,226,0 +170747577462,226,0 +170747577510,227,0 +170747577558,227,0 +170747577608,228,0 +170747577656,228,0 +170747577704,227,0 +170747577752,228,0 +170747577800,228,0 +170747577848,227,0 +170747577896,227,0 +170747577945,228,0 +170747577995,231,0 +170747578042,230,0 +170747578090,227,0 +170747578138,230,0 +170747578188,227,0 +170747578236,230,0 +170747578285,230,0 +170747578333,229,0 +170747578383,229,0 +170747578431,228,0 +170747578479,229,0 +170747578527,228,0 +170747578576,228,0 +170747578624,229,0 +170747578672,228,0 +170747578722,229,0 +170747578770,228,0 +170747578817,230,0 +170747578867,228,0 +170747578917,227,0 +170747578965,227,0 +170747579014,227,0 +170747579064,229,0 +170747579112,227,0 +170747579161,228,0 +170747579209,229,0 +170747579257,228,0 +170747579305,236,0 +170747579353,227,0 +170747579402,231,0 +170747579452,229,0 +170747579501,229,0 +170747579551,229,0 +170747579599,229,0 +170747579647,229,0 +170747579696,228,0 +170747579744,228,0 +170747579792,227,0 +170747579840,223,0 +170747579888,221,0 +170747579937,222,0 +170747579987,224,0 +170747580035,226,0 +170747580084,226,0 +170747580132,225,0 +170747580182,227,0 +170747580230,228,0 +170747580278,229,0 +170747580327,229,0 +170747580375,231,0 +170747580425,228,0 +170747580473,229,0 +170747580522,229,0 +170747580570,228,0 +170747580618,227,0 +170747580666,218,0 +170747580714,219,0 +170747580764,219,0 +170747580811,220,0 +170747580861,223,0 +170747580909,223,0 +170747580957,224,0 +170747581005,227,0 +170747581054,228,0 +170747581102,228,0 +170747581150,229,0 +170747581198,229,0 +170747581246,232,0 +170747581296,232,0 +170747581345,229,0 +170747581395,229,0 +170747581444,229,0 +170747581492,228,0 +170747581540,216,0 +170747581590,217,0 +170747581639,218,0 +170747581689,216,0 +170747581738,221,0 +170747581788,223,0 +170747581837,223,0 +170747581885,224,0 +170747581933,227,0 +170747581983,227,0 +170747582031,227,0 +170747582079,228,0 +170747582127,229,0 +170747582176,231,0 +170747582224,229,0 +170747582272,228,0 +170747582320,227,0 +170747582368,216,0 +170747582416,217,0 +170747582464,219,0 +170747582514,221,0 +170747582562,223,0 +170747582611,224,0 +170747582659,226,0 +170747582707,225,0 +170747582755,228,0 +170747582805,226,0 +170747582854,229,0 +170747582902,230,0 +170747582950,239,0 +170747583000,228,0 +170747583047,231,0 +170747583095,230,0 +170747583145,229,0 +170747583194,227,0 +170747583242,217,0 +170747583290,218,0 +170747583340,220,0 +170747583389,221,0 +170747583439,223,0 +170747583487,222,0 +170747583535,223,0 +170747583584,225,0 +170747583632,229,0 +170747583680,228,0 +170747583730,227,0 +170747583779,228,0 +170747583827,230,0 +170747583877,230,0 +170747583926,229,0 +170747583976,226,0 +170747584024,228,0 +170747584072,218,0 +170747584121,218,0 +170747584169,219,0 +170747584217,220,0 +170747584265,221,0 +170747584313,223,0 +170747584361,224,0 +170747584409,227,0 +170747584457,226,0 +170747584504,226,0 +170747584552,227,0 +170747584600,228,0 +170747584648,228,0 +170747584698,230,0 +170747584748,229,0 +170747584796,228,0 +170747584845,229,0 +170747584893,225,0 +170747584941,217,0 +170747584991,219,0 +170747585039,220,0 +170747585087,220,0 +170747585136,224,0 +170747585184,224,0 +170747585232,225,0 +170747585280,226,0 +170747585328,226,0 +170747585376,228,0 +170747585425,229,0 +170747585473,231,0 +170747585523,232,0 +170747585572,232,0 +170747585622,229,0 +170747585671,230,0 +170747585721,228,0 +170747585771,218,0 +170747585820,219,0 +170747585868,220,0 +170747585916,220,0 +170747585966,222,0 +170747586014,223,0 +170747586063,224,0 +170747586111,225,0 +170747586159,224,0 +170747586207,227,0 +170747586255,230,0 +170747586303,228,0 +170747586352,229,0 +170747586402,228,0 +170747586451,229,0 +170747586499,233,0 +170747586547,227,0 +170747586595,223,0 +170747586643,218,0 +170747586693,220,0 +170747586742,221,0 +170747586792,223,0 +170747586840,224,0 +170747586889,225,0 +170747586939,229,0 +170747586987,227,0 +170747587034,227,0 +170747587082,229,0 +170747587132,228,0 +170747587180,229,0 +170747587229,230,0 +170747587277,228,0 +170747587327,229,0 +170747587376,228,0 +170747587426,229,0 +170747587474,223,0 +170747587521,224,0 +170747587569,222,0 +170747587617,226,0 +170747587665,225,0 +170747587713,225,0 +170747587763,225,0 +170747587811,225,0 +170747587858,228,0 +170747587908,228,0 +170747587956,230,0 +170747588004,228,0 +170747588052,229,0 +170747588101,230,0 +170747588151,229,0 +170747588199,228,0 +170747588248,225,0 +170747588296,228,0 +170747588344,221,0 +170747588392,220,0 +170747588442,221,0 +170747588490,224,0 +170747588539,224,0 +170747588587,225,0 +170747588635,226,0 +170747588683,227,0 +170747588731,228,0 +170747588779,227,0 +170747588827,226,0 +170747588875,227,0 +170747588924,228,0 +170747588972,228,0 +170747589020,228,0 +170747589069,228,0 +170747589117,227,0 +170747589167,227,0 +170747589216,218,0 +170747589264,218,0 +170747589312,220,0 +170747589362,217,0 +170747589409,222,0 +170747589457,223,0 +170747589507,223,0 +170747589557,225,0 +170747589606,225,0 +170747589654,226,0 +170747589702,228,0 +170747589752,228,0 +170747589801,227,0 +170747589851,228,0 +170747589899,230,0 +170747589948,228,0 +170747589996,227,0 +170747590044,217,0 +170747590094,217,0 +170747590141,219,0 +170747590191,218,0 +170747590239,217,0 +170747590287,218,0 +170747590335,221,0 +170747590384,226,0 +170747590432,221,0 +170747590482,225,0 +170747590532,228,0 +170747590580,228,0 +170747590628,228,0 +170747590677,228,0 +170747590727,226,0 +170747590776,229,0 +170747590824,228,0 +170747590874,227,0 +170747590923,218,0 +170747590971,217,0 +170747591019,218,0 +170747591067,221,0 +170747591116,221,0 +170747591164,221,0 +170747591214,223,0 +170747591263,223,0 +170747591311,224,0 +170747591359,225,0 +170747591407,228,0 +170747591455,227,0 +170747591503,227,0 +170747591550,228,0 +170747591598,227,0 +170747591646,223,0 +170747591694,228,0 +170747591743,220,0 +170747591791,222,0 +170747591839,223,0 +170747591889,224,0 +170747591937,225,0 +170747591985,225,0 +170747592033,226,0 +170747592081,227,0 +170747592129,226,0 +170747592178,228,0 +170747592226,228,0 +170747592274,228,0 +170747592323,228,0 +170747592371,227,0 +170747592420,227,0 +170747592468,227,0 +170747592518,227,0 +170747592566,227,0 +170747592614,223,0 +170747592662,224,0 +170747592711,225,0 +170747592761,226,0 +170747592809,226,0 +170747592857,226,0 +170747592906,230,0 +170747592954,231,0 +170747593002,229,0 +170747593050,229,0 +170747593098,229,0 +170747593146,228,0 +170747593194,229,0 +170747593243,228,0 +170747593291,230,0 +170747593339,227,0 +170747593387,227,0 +170747593437,227,0 +170747593485,221,0 +170747593534,223,0 +170747593582,223,0 +170747593630,225,0 +170747593678,225,0 +170747593726,227,0 +170747593776,226,0 +170747593825,227,0 +170747593873,228,0 +170747593921,228,0 +170747593971,229,0 +170747594019,229,0 +170747594067,229,0 +170747594114,230,0 +170747594162,230,0 +170747594212,229,0 +170747594260,228,0 +170747594309,222,0 +170747594359,217,0 +170747594407,218,0 +170747594455,222,0 +170747594503,221,0 +170747594551,222,0 +170747594599,222,0 +170747594647,225,0 +170747594696,224,0 +170747594744,223,0 +170747594792,226,0 +170747594840,229,0 +170747594888,228,0 +170747594938,229,0 +170747594987,229,0 +170747595037,229,0 +170747595085,227,0 +170747595133,227,0 +170747595181,217,0 +170747595229,218,0 +170747595278,219,0 +170747595326,220,0 +170747595376,221,0 +170747595424,222,0 +170747595473,224,0 +170747595523,225,0 +170747595570,224,0 +170747595620,225,0 +170747595670,224,0 +170747595719,228,0 +170747595769,229,0 +170747595817,228,0 +170747595865,227,0 +170747595914,228,0 +170747595962,225,0 +170747596012,226,0 +170747596061,218,0 +170747596111,219,0 +170747596159,220,0 +170747596207,221,0 +170747596255,222,0 +170747596304,223,0 +170747596352,225,0 +170747596401,226,0 +170747596451,226,0 +170747596499,228,0 +170747596547,226,0 +170747596595,228,0 +170747596644,229,0 +170747596692,228,0 +170747596740,232,0 +170747596790,229,0 +170747596838,227,0 +170747596886,221,0 +170747596935,224,0 +170747596985,225,0 +170747597033,224,0 +170747597081,225,0 +170747597129,225,0 +170747597176,226,0 +170747597226,229,0 +170747597275,229,0 +170747597323,230,0 +170747597371,226,0 +170747597421,228,0 +170747597469,229,0 +170747597517,230,0 +170747597566,231,0 +170747597614,229,0 +170747597664,228,0 +170747597712,227,0 +170747597760,222,0 +170747597808,222,0 +170747597857,225,0 +170747597905,222,0 +170747597953,227,0 +170747598001,225,0 +170747598051,229,0 +170747598099,229,0 +170747598148,229,0 +170747598198,230,0 +170747598246,230,0 +170747598295,230,0 +170747598343,229,0 +170747598393,229,0 +170747598441,229,0 +170747598489,229,0 +170747598538,228,0 +170747598588,224,0 +170747598636,220,0 +170747598685,223,0 +170747598735,223,0 +170747598784,225,0 +170747598833,227,0 +170747598881,227,0 +170747598931,227,0 +170747598980,229,0 +170747599030,231,0 +170747599078,231,0 +170747599126,228,0 +170747599174,234,0 +170747599222,230,0 +170747599270,229,0 +170747599319,228,0 +170747599369,228,0 +170747599418,231,0 +170747599466,221,0 +170747599514,222,0 +170747599564,224,0 +170747599612,224,0 +170747599661,226,0 +170747599711,225,0 +170747599760,227,0 +170747599810,229,0 +170747599859,229,0 +170747599907,230,0 +170747599955,230,0 +170747600003,230,0 +170747600051,230,0 +170747600099,231,0 +170747600147,228,0 +170747600196,228,0 +170747600244,228,0 +170747600292,220,0 +170747600340,219,0 +170747600388,221,0 +170747600438,223,0 +170747600486,224,0 +170747600534,226,0 +170747600583,227,0 +170747600633,226,0 +170747600682,228,0 +170747600732,229,0 +170747600780,228,0 +170747600829,231,0 +170747600877,230,0 +170747600925,230,0 +170747600973,229,0 +170747601023,228,0 +170747601072,227,0 +170747601120,226,0 +170747601168,221,0 +170747601216,221,0 +170747601266,225,0 +170747601315,225,0 +170747601365,224,0 +170747601414,227,0 +170747601462,226,0 +170747601510,225,0 +170747601560,228,0 +170747601608,228,0 +170747601656,228,0 +170747601704,229,0 +170747601752,229,0 +170747601800,228,0 +170747601849,226,0 +170747601897,228,0 +170747601947,228,0 +170747601996,218,0 +170747602044,218,0 +170747602092,219,0 +170747602140,222,0 +170747602189,224,0 +170747602237,223,0 +170747602285,227,0 +170747602333,226,0 +170747602381,225,0 +170747602429,228,0 +170747602479,224,0 +170747602527,229,0 +170747602574,229,0 +170747602624,229,0 +170747602672,227,0 +170747602722,228,0 +170747602770,228,0 +170747602819,225,0 +170747602867,216,0 +170747602916,218,0 +170747602964,218,0 +170747603012,220,0 +170747603062,221,0 +170747603111,223,0 +170747603159,222,0 +170747603207,223,0 +170747603255,226,0 +170747603303,227,0 +170747603351,228,0 +170747603399,228,0 +170747603447,228,0 +170747603497,229,0 +170747603545,241,0 +170747603592,228,0 +170747603640,229,0 +170747603690,227,0 +170747603738,216,0 +170747603788,215,0 +170747603835,218,0 +170747603883,220,0 +170747603931,221,0 +170747603979,225,0 +170747604029,224,0 +170747604077,223,0 +170747604125,225,0 +170747604173,226,0 +170747604222,226,0 +170747604272,226,0 +170747604321,230,0 +170747604369,228,0 +170747604419,229,0 +170747604468,228,0 +170747604518,229,0 +170747604568,218,0 +170747604616,216,0 +170747604664,217,0 +170747604713,215,0 +170747604761,219,0 +170747604811,219,0 +170747604859,221,0 +170747604908,222,0 +170747604958,224,0 +170747605006,224,0 +170747605053,226,0 +170747605101,226,0 +170747605151,227,0 +170747605201,228,0 +170747605249,228,0 +170747605296,226,0 +170747605344,228,0 +170747605394,227,0 +170747605442,216,0 +170747605490,216,0 +170747605538,215,0 +170747605587,217,0 +170747605635,217,0 +170747605685,218,0 +170747605733,219,0 +170747605782,221,0 +170747605832,222,0 +170747605880,222,0 +170747605928,225,0 +170747605976,224,0 +170747606024,226,0 +170747606072,227,0 +170747606119,225,0 +170747606167,227,0 +170747606217,227,0 +170747606267,222,0 +170747606314,216,0 +170747606364,217,0 +170747606413,219,0 +170747606463,220,0 +170747606511,221,0 +170747606559,222,0 +170747606607,223,0 +170747606655,224,0 +170747606703,225,0 +170747606751,222,0 +170747606800,227,0 +170747606850,227,0 +170747606898,228,0 +170747606946,227,0 +170747606994,228,0 +170747607042,228,0 +170747607090,227,0 +170747607137,222,0 +170747607185,223,0 +170747607233,222,0 +170747607281,224,0 +170747607329,225,0 +170747607377,226,0 +170747607427,226,0 +170747607475,228,0 +170747607523,229,0 +170747607571,228,0 +170747607619,228,0 +170747607667,229,0 +170747607715,231,0 +170747607762,229,0 +170747607810,228,0 +170747607858,228,0 +170747607906,230,0 +170747607956,227,0 +170747608005,224,0 +170747608055,224,0 +170747608103,225,0 +170747608151,224,0 +170747608200,226,0 +170747608250,228,0 +170747608299,227,0 +170747608349,227,0 +170747608397,227,0 +170747608445,229,0 +170747608494,229,0 +170747608542,230,0 +170747608590,229,0 +170747608640,230,0 +170747608688,228,0 +170747608737,228,0 +170747608785,226,0 +170747608835,220,0 +170747608883,220,0 +170747608931,221,0 +170747608979,222,0 +170747609027,224,0 +170747609075,217,0 +170747609123,226,0 +170747609171,226,0 +170747609219,228,0 +170747609267,228,0 +170747609315,227,0 +170747609362,229,0 +170747609410,230,0 +170747609458,230,0 +170747609506,229,0 +170747609554,228,0 +170747609604,229,0 +170747609653,227,0 +170747609701,218,0 +170747609751,218,0 +170747609800,220,0 +170747609850,224,0 +170747609899,222,0 +170747609947,223,0 +170747609995,224,0 +170747610043,226,0 +170747610091,226,0 +170747610139,227,0 +170747610188,226,0 +170747610236,228,0 +170747610284,228,0 +170747610332,230,0 +170747610380,229,0 +170747610428,229,0 +170747610476,227,0 +170747610524,220,0 +170747610571,219,0 +170747610619,221,0 +170747610667,221,0 +170747610715,223,0 +170747610763,223,0 +170747610811,225,0 +170747610859,225,0 +170747610907,225,0 +170747610954,228,0 +170747611002,226,0 +170747611050,229,0 +170747611100,230,0 +170747611148,229,0 +170747611195,228,0 +170747611245,230,0 +170747611294,228,0 +170747611342,227,0 +170747611392,218,0 +170747611441,218,0 +170747611489,220,0 +170747611538,220,0 +170747611586,222,0 +170747611634,222,0 +170747611684,223,0 +170747611732,225,0 +170747611780,226,0 +170747611828,227,0 +170747611875,226,0 +170747611924,227,0 +170747611971,230,0 +170747612021,229,0 +170747612069,228,0 +170747612118,229,0 +170747612168,226,0 +170747612218,227,0 +170747612266,216,0 +170747612313,218,0 +170747612363,220,0 +170747612413,221,0 +170747612461,223,0 +170747612510,223,0 +170747612560,224,0 +170747612608,228,0 +170747612656,226,0 +170747612705,228,0 +170747612753,228,0 +170747612803,230,0 +170747612851,228,0 +170747612900,231,0 +170747612950,230,0 +170747612998,231,0 +170747613047,228,0 +170747613095,218,0 +170747613143,218,0 +170747613191,219,0 +170747613241,220,0 +170747613289,221,0 +170747613337,223,0 +170747613386,224,0 +170747613436,224,0 +170747613485,229,0 +170747613535,228,0 +170747613583,228,0 +170747613632,228,0 +170747613682,228,0 +170747613730,227,0 +170747613778,229,0 +170747613827,228,0 +170747613877,229,0 +170747613926,227,0 +170747613974,217,0 +170747614022,218,0 +170747614070,220,0 +170747614120,221,0 +170747614168,221,0 +170747614217,222,0 +170747614267,225,0 +170747614315,227,0 +170747614363,226,0 +170747614411,227,0 +170747614459,227,0 +170747614507,229,0 +170747614556,230,0 +170747614606,232,0 +170747614654,232,0 +170747614703,229,0 +170747614751,229,0 +170747614799,217,0 +170747614849,217,0 +170747614898,219,0 +170747614948,220,0 +170747614997,222,0 +170747615045,223,0 +170747615095,225,0 +170747615143,226,0 +170747615193,228,0 +170747615242,226,0 +170747615290,229,0 +170747615338,229,0 +170747615386,228,0 +170747615434,231,0 +170747615482,228,0 +170747615530,228,0 +170747615578,229,0 +170747615627,228,0 +170747615677,217,0 +170747615725,218,0 +170747615773,220,0 +170747615821,221,0 +170747615870,223,0 +170747615918,224,0 +170747615968,223,0 +170747616017,222,0 +170747616067,226,0 +170747616115,227,0 +170747616163,225,0 +170747616212,228,0 +170747616260,228,0 +170747616308,225,0 +170747616358,228,0 +170747616406,228,0 +170747616455,227,0 +170747616505,219,0 +170747616553,219,0 +170747616601,219,0 +170747616650,222,0 +170747616698,223,0 +170747616746,224,0 +170747616794,224,0 +170747616842,225,0 +170747616890,228,0 +170747616938,227,0 +170747616986,227,0 +170747617034,229,0 +170747617082,229,0 +170747617131,228,0 +170747617181,229,0 +170747617230,228,0 +170747617280,230,0 +170747617328,227,0 +170747617377,219,0 +170747617427,219,0 +170747617476,220,0 +170747617526,224,0 +170747617575,224,0 +170747617623,225,0 +170747617671,225,0 +170747617719,227,0 +170747617767,227,0 +170747617815,227,0 +170747617865,229,0 +170747617913,227,0 +170747617962,227,0 +170747618010,229,0 +170747618060,228,0 +170747618109,227,0 +170747618157,227,0 +170747618205,229,0 +170747618253,215,0 +170747618301,215,0 +170747618349,217,0 +170747618397,218,0 +170747618445,219,0 +170747618495,220,0 +170747618543,223,0 +170747618591,223,0 +170747618640,224,0 +170747618688,225,0 +170747618737,226,0 +170747618787,227,0 +170747618835,226,0 +170747618884,227,0 +170747618932,226,0 +170747618982,227,0 +170747619031,227,0 +170747619079,217,0 +170747619127,215,0 +170747619175,216,0 +170747619223,216,0 +170747619273,216,0 +170747619321,217,0 +170747619370,217,0 +170747619418,215,0 +170747619466,219,0 +170747619516,221,0 +170747619565,221,0 +170747619615,222,0 +170747619664,225,0 +170747619712,223,0 +170747619762,226,0 +170747619810,226,0 +170747619859,227,0 +170747619909,228,0 +170747619957,228,0 +170747620005,229,0 +170747620054,230,0 +170747620102,229,0 +170747620150,229,0 +170747620198,229,0 +170747620248,229,0 +170747620297,227,0 +170747620347,219,0 +170747620395,218,0 +170747620443,219,0 +170747620492,220,0 +170747620542,221,0 +170747620591,222,0 +170747620639,223,0 +170747620687,223,0 +170747620737,224,0 +170747620784,226,0 +170747620832,227,0 +170747620880,231,0 +170747620930,226,0 +170747620979,229,0 +170747621027,229,0 +170747621075,227,0 +170747621123,229,0 +170747621173,227,0 +170747621221,220,0 +170747621269,221,0 +170747621317,220,0 +170747621366,227,0 +170747621416,224,0 +170747621464,227,0 +170747621513,226,0 +170747621563,226,0 +170747621612,227,0 +170747621660,228,0 +170747621708,228,0 +170747621756,227,0 +170747621804,228,0 +170747621854,228,0 +170747621902,227,0 +170747621950,226,0 +170747621998,227,0 +170747622047,226,0 +170747622095,231,0 +170747622145,226,0 +170747622193,227,0 +170747622242,228,0 +170747622291,228,0 +170747622339,231,0 +170747622387,229,0 +170747622437,230,0 +170747622486,231,0 +170747622536,227,0 +170747622584,228,0 +170747622632,229,0 +170747622680,229,0 +170747622729,228,0 +170747622777,231,0 +170747622827,232,0 +170747622877,228,0 +170747622925,227,0 +170747622973,228,0 +170747623020,228,0 +170747623070,227,0 +170747623119,228,0 +170747623167,229,0 +170747623217,231,0 +170747623266,229,0 +170747623314,230,0 +170747623362,229,0 +170747623412,227,0 +170747623460,229,0 +170747623508,228,0 +170747623556,228,0 +170747623605,228,0 +170747623653,228,0 +170747623701,228,0 +170747623749,223,0 +170747623799,223,0 +170747623847,223,0 +170747623895,227,0 +170747623943,225,0 +170747623992,226,0 +170747624042,224,0 +170747624091,227,0 +170747624139,228,0 +170747624187,227,0 +170747624235,228,0 +170747624285,229,0 +170747624333,230,0 +170747624381,230,0 +170747624429,229,0 +170747624478,228,0 +170747624526,227,0 +170747624574,228,0 +170747624622,219,0 +170747624670,220,0 +170747624719,221,0 +170747624767,224,0 +170747624817,223,0 +170747624865,226,0 +170747624913,227,0 +170747624961,226,0 +170747625009,227,0 +170747625057,228,0 +170747625106,228,0 +170747625156,230,0 +170747625204,230,0 +170747625251,229,0 +170747625299,228,0 +170747625347,223,0 +170747625395,229,0 +170747625443,217,0 +170747625491,217,0 +170747625539,218,0 +170747625587,219,0 +170747625635,221,0 +170747625683,224,0 +170747625730,223,0 +170747625778,224,0 +170747625826,226,0 +170747625874,224,0 +170747625922,228,0 +170747625970,227,0 +170747626018,228,0 +170747626066,228,0 +170747626114,229,0 +170747626162,231,0 +170747626211,229,0 +170747626259,230,0 +170747626307,218,0 +170747626355,216,0 +170747626403,217,0 +170747626452,220,0 +170747626500,221,0 +170747626549,222,0 +170747626597,223,0 +170747626645,223,0 +170747626695,225,0 +170747626743,226,0 +170747626791,228,0 +170747626839,227,0 +170747626887,230,0 +170747626935,228,0 +170747626983,232,0 +170747627032,230,0 +170747627080,228,0 +170747627128,227,0 +170747627176,217,0 +170747627224,220,0 +170747627271,220,0 +170747627319,220,0 +170747627367,224,0 +170747627415,223,0 +170747627463,224,0 +170747627511,226,0 +170747627559,230,0 +170747627607,227,0 +170747627655,228,0 +170747627702,228,0 +170747627750,229,0 +170747627798,230,0 +170747627848,233,0 +170747627896,229,0 +170747627943,228,0 +170747627993,226,0 +170747628042,217,0 +170747628090,219,0 +170747628138,220,0 +170747628188,222,0 +170747628236,221,0 +170747628283,224,0 +170747628331,224,0 +170747628379,226,0 +170747628427,226,0 +170747628475,226,0 +170747628525,231,0 +170747628573,232,0 +170747628622,232,0 +170747628672,231,0 +170747628720,230,0 +170747628768,228,0 +170747628817,229,0 +170747628867,218,0 +170747628916,218,0 +170747628966,220,0 +170747629015,222,0 +170747629065,223,0 +170747629113,224,0 +170747629161,224,0 +170747629209,226,0 +170747629257,225,0 +170747629305,227,0 +170747629353,228,0 +170747629401,232,0 +170747629450,227,0 +170747629499,230,0 +170747629547,232,0 +170747629595,230,0 +170747629645,229,0 +170747629695,226,0 +170747629744,217,0 +170747629794,217,0 +170747629842,219,0 +170747629890,221,0 +170747629938,220,0 +170747629986,223,0 +170747630035,225,0 +170747630083,226,0 +170747630132,226,0 +170747630182,226,0 +170747630230,228,0 +170747630280,229,0 +170747630329,231,0 +170747630378,229,0 +170747630426,232,0 +170747630474,228,0 +170747630524,228,0 +170747630572,217,0 +170747630621,216,0 +170747630671,215,0 +170747630720,217,0 +170747630768,217,0 +170747630816,220,0 +170747630864,221,0 +170747630912,221,0 +170747630962,224,0 +170747631011,225,0 +170747631061,229,0 +170747631110,229,0 +170747631160,226,0 +170747631208,231,0 +170747631257,230,0 +170747631307,230,0 +170747631356,229,0 +170747631404,219,0 +170747631452,216,0 +170747631502,216,0 +170747631550,216,0 +170747631598,217,0 +170747631646,217,0 +170747631694,217,0 +170747631742,219,0 +170747631790,221,0 +170747631839,221,0 +170747631889,223,0 +170747631938,227,0 +170747631988,227,0 +170747632037,225,0 +170747632087,226,0 +170747632136,228,0 +170747632184,228,0 +170747632234,228,0 +170747632282,217,0 +170747632331,216,0 +170747632379,216,0 +170747632427,218,0 +170747632477,219,0 +170747632526,219,0 +170747632576,220,0 +170747632624,224,0 +170747632673,225,0 +170747632723,223,0 +170747632771,223,0 +170747632820,222,0 +170747632868,230,0 +170747632916,227,0 +170747632964,227,0 +170747633014,228,0 +170747633063,227,0 +170747633113,217,0 +170747633161,216,0 +170747633210,218,0 +170747633260,219,0 +170747633308,220,0 +170747633356,221,0 +170747633404,221,0 +170747633451,223,0 +170747633499,225,0 +170747633547,227,0 +170747633595,226,0 +170747633645,229,0 +170747633694,230,0 +170747633742,228,0 +170747633790,228,0 +170747633838,226,0 +170747633886,226,0 +170747633934,227,0 +170747633984,217,0 +170747634033,217,0 +170747634081,219,0 +170747634129,219,0 +170747634177,218,0 +170747634227,222,0 +170747634275,222,0 +170747634323,223,0 +170747634372,226,0 +170747634420,226,0 +170747634470,227,0 +170747634519,226,0 +170747634567,227,0 +170747634617,227,0 +170747634666,228,0 +170747634714,228,0 +170747634764,232,0 +170747634813,218,0 +170747634861,220,0 +170747634911,221,0 +170747634959,222,0 +170747635008,223,0 +170747635058,226,0 +170747635106,226,0 +170747635154,225,0 +170747635203,228,0 +170747635251,227,0 +170747635301,228,0 +170747635349,228,0 +170747635397,230,0 +170747635444,228,0 +170747635492,228,0 +170747635540,229,0 +170747635590,228,0 +170747635640,227,0 +170747635688,220,0 +170747635735,223,0 +170747635783,222,0 +170747635831,225,0 +170747635879,220,0 +170747635927,225,0 +170747635975,226,0 +170747636023,227,0 +170747636071,228,0 +170747636119,228,0 +170747636167,228,0 +170747636215,229,0 +170747636264,228,0 +170747636312,228,0 +170747636360,228,0 +170747636408,228,0 +170747636458,229,0 +170747636507,227,0 +170747636557,227,0 +170747636605,227,0 +170747636653,227,0 +170747636701,227,0 +170747636749,227,0 +170747636797,228,0 +170747636846,227,0 +170747636896,227,0 +170747636944,228,0 +170747636992,227,0 +170747637040,228,0 +170747637087,228,0 +170747637135,227,0 +170747637185,227,0 +170747637233,229,0 +170747637282,227,0 +170747637332,228,0 +170747637380,228,0 +170747637428,229,0 +170747637477,228,0 +170747637525,229,0 +170747637573,229,0 +170747637623,228,0 +170747637671,228,0 +170747637719,231,0 +170747637767,228,0 +170747637816,228,0 +170747637866,229,0 +170747637915,227,0 +170747637963,228,0 +170747638011,228,0 +170747638061,228,0 +170747638110,229,0 +170747638160,227,0 +170747638209,222,0 +170747638259,225,0 +170747638307,223,0 +170747638355,224,0 +170747638402,222,0 +170747638452,225,0 +170747638500,228,0 +170747638548,226,0 +170747638596,231,0 +170747638644,228,0 +170747638693,232,0 +170747638743,231,0 +170747638792,229,0 +170747638840,228,0 +170747638888,228,0 +170747638938,228,0 +170747638986,227,0 +170747639034,227,0 +170747639082,218,0 +170747639130,217,0 +170747639178,220,0 +170747639226,220,0 +170747639274,221,0 +170747639322,224,0 +170747639369,224,0 +170747639419,225,0 +170747639469,228,0 +170747639518,226,0 +170747639568,228,0 +170747639617,228,0 +170747639665,230,0 +170747639713,230,0 +170747639761,229,0 +170747639809,228,0 +170747639857,228,0 +170747639907,226,0 +170747639955,216,0 +170747640002,218,0 diff --git a/laser_value/0209-21.csv b/laser_value/0209-21.csv new file mode 100644 index 0000000..baac91f --- /dev/null +++ b/laser_value/0209-21.csv @@ -0,0 +1,7409 @@ +timestamp,laser_value,event +170747640052,219,0 +170747640100,222,0 +170747640148,222,0 +170747640198,223,0 +170747640247,225,0 +170747640295,224,0 +170747640343,228,0 +170747640391,229,0 +170747640439,228,0 +170747640487,228,0 +170747640537,228,0 +170747640586,229,0 +170747640634,229,0 +170747640682,230,0 +170747640731,228,0 +170747640779,219,0 +170747640827,218,0 +170747640875,220,0 +170747640923,221,0 +170747640973,223,0 +170747641021,224,0 +170747641069,217,0 +170747641118,227,0 +170747641168,229,0 +170747641216,227,0 +170747641264,229,0 +170747641311,229,0 +170747641359,230,0 +170747641407,229,0 +170747641455,228,0 +170747641503,230,0 +170747641553,227,0 +170747641601,228,0 +170747641650,216,0 +170747641698,216,0 +170747641748,217,0 +170747641796,218,0 +170747641844,220,0 +170747641893,221,0 +170747641941,222,0 +170747641991,223,0 +170747642040,224,0 +170747642088,225,0 +170747642136,226,0 +170747642184,226,0 +170747642234,227,0 +170747642283,228,0 +170747642331,229,0 +170747642381,231,0 +170747642428,228,0 +170747642478,218,0 +170747642528,217,0 +170747642577,217,0 +170747642625,218,0 +170747642673,219,0 +170747642721,221,0 +170747642769,220,0 +170747642817,223,0 +170747642867,224,0 +170747642916,224,0 +170747642964,225,0 +170747643014,227,0 +170747643061,227,0 +170747643109,230,0 +170747643157,228,0 +170747643207,229,0 +170747643255,230,0 +170747643303,228,0 +170747643352,218,0 +170747643402,220,0 +170747643451,222,0 +170747643501,222,0 +170747643550,224,0 +170747643598,225,0 +170747643648,227,0 +170747643696,227,0 +170747643745,224,0 +170747643793,227,0 +170747643843,230,0 +170747643891,231,0 +170747643939,229,0 +170747643988,229,0 +170747644036,228,0 +170747644084,232,0 +170747644132,229,0 +170747644180,219,0 +170747644228,219,0 +170747644278,220,0 +170747644326,221,0 +170747644375,221,0 +170747644423,224,0 +170747644471,225,0 +170747644519,224,0 +170747644567,228,0 +170747644615,232,0 +170747644663,229,0 +170747644712,228,0 +170747644760,229,0 +170747644808,230,0 +170747644856,230,0 +170747644906,231,0 +170747644955,230,0 +170747645005,229,0 +170747645054,217,0 +170747645102,218,0 +170747645150,220,0 +170747645198,221,0 +170747645246,221,0 +170747645294,223,0 +170747645344,224,0 +170747645392,228,0 +170747645441,226,0 +170747645491,227,0 +170747645539,228,0 +170747645588,228,0 +170747645636,231,0 +170747645684,228,0 +170747645732,227,0 +170747645782,230,0 +170747645831,228,0 +170747645879,218,0 +170747645929,219,0 +170747645977,219,0 +170747646026,221,0 +170747646074,220,0 +170747646124,224,0 +170747646172,223,0 +170747646221,225,0 +170747646269,221,0 +170747646318,227,0 +170747646368,228,0 +170747646416,228,0 +170747646464,233,0 +170747646512,231,0 +170747646560,230,0 +170747646608,226,0 +170747646656,229,0 +170747646704,226,0 +170747646753,218,0 +170747646803,219,0 +170747646851,221,0 +170747646899,223,0 +170747646946,225,0 +170747646996,224,0 +170747647044,224,0 +170747647094,224,0 +170747647143,227,0 +170747647193,227,0 +170747647241,230,0 +170747647288,228,0 +170747647336,229,0 +170747647384,230,0 +170747647434,229,0 +170747647482,227,0 +170747647531,227,0 +170747647581,217,0 +170747647629,218,0 +170747647678,219,0 +170747647726,220,0 +170747647774,223,0 +170747647822,222,0 +170747647870,224,0 +170747647918,228,0 +170747647965,225,0 +170747648013,227,0 +170747648061,227,0 +170747648109,229,0 +170747648157,231,0 +170747648205,229,0 +170747648254,229,0 +170747648302,229,0 +170747648350,229,0 +170747648398,227,0 +170747648446,216,0 +170747648494,217,0 +170747648542,218,0 +170747648591,220,0 +170747648641,221,0 +170747648689,221,0 +170747648738,223,0 +170747648788,223,0 +170747648836,225,0 +170747648884,229,0 +170747648932,226,0 +170747648981,228,0 +170747649029,232,0 +170747649079,229,0 +170747649127,231,0 +170747649174,233,0 +170747649222,227,0 +170747649272,218,0 +170747649320,218,0 +170747649368,220,0 +170747649416,222,0 +170747649464,220,0 +170747649512,223,0 +170747649561,227,0 +170747649609,226,0 +170747649657,227,0 +170747649705,226,0 +170747649753,231,0 +170747649802,229,0 +170747649850,231,0 +170747649898,231,0 +170747649946,229,0 +170747649994,234,0 +170747650042,227,0 +170747650092,227,0 +170747650139,217,0 +170747650187,219,0 +170747650237,220,0 +170747650286,221,0 +170747650334,223,0 +170747650382,223,0 +170747650432,222,0 +170747650480,223,0 +170747650528,226,0 +170747650576,226,0 +170747650625,227,0 +170747650673,227,0 +170747650721,228,0 +170747650769,228,0 +170747650819,228,0 +170747650868,227,0 +170747650916,227,0 +170747650966,220,0 +170747651015,219,0 +170747651065,220,0 +170747651113,222,0 +170747651162,222,0 +170747651212,223,0 +170747651261,224,0 +170747651309,226,0 +170747651357,226,0 +170747651407,226,0 +170747651456,227,0 +170747651506,224,0 +170747651554,227,0 +170747651603,227,0 +170747651653,227,0 +170747651701,228,0 +170747651749,227,0 +170747651797,226,0 +170747651844,228,0 +170747651892,225,0 +170747651940,226,0 +170747651988,227,0 +170747652036,226,0 +170747652084,228,0 +170747652132,228,0 +170747652181,231,0 +170747652231,228,0 +170747652279,228,0 +170747652327,228,0 +170747652377,229,0 +170747652424,228,0 +170747652472,228,0 +170747652520,228,0 +170747652568,226,0 +170747652616,228,0 +170747652664,223,0 +170747652712,224,0 +170747652760,224,0 +170747652810,224,0 +170747652858,227,0 +170747652905,228,0 +170747652955,228,0 +170747653003,230,0 +170747653051,227,0 +170747653099,228,0 +170747653147,229,0 +170747653195,229,0 +170747653244,227,0 +170747653294,227,0 +170747653342,228,0 +170747653390,229,0 +170747653438,228,0 +170747653486,227,0 +170747653534,218,0 +170747653582,218,0 +170747653631,220,0 +170747653679,221,0 +170747653729,224,0 +170747653778,223,0 +170747653826,224,0 +170747653874,225,0 +170747653922,228,0 +170747653970,228,0 +170747654018,228,0 +170747654066,229,0 +170747654114,229,0 +170747654162,229,0 +170747654211,229,0 +170747654259,228,0 +170747654307,227,0 +170747654355,218,0 +170747654403,218,0 +170747654451,220,0 +170747654500,222,0 +170747654548,221,0 +170747654596,222,0 +170747654646,223,0 +170747654695,225,0 +170747654743,226,0 +170747654791,227,0 +170747654839,227,0 +170747654887,229,0 +170747654937,230,0 +170747654986,230,0 +170747655034,229,0 +170747655082,231,0 +170747655130,228,0 +170747655178,228,0 +170747655226,223,0 +170747655274,221,0 +170747655322,222,0 +170747655370,224,0 +170747655420,224,0 +170747655468,227,0 +170747655517,225,0 +170747655567,226,0 +170747655615,227,0 +170747655663,228,0 +170747655712,228,0 +170747655762,231,0 +170747655811,227,0 +170747655859,228,0 +170747655907,229,0 +170747655955,230,0 +170747656003,227,0 +170747656053,218,0 +170747656100,219,0 +170747656148,221,0 +170747656196,220,0 +170747656246,223,0 +170747656295,226,0 +170747656345,226,0 +170747656395,227,0 +170747656442,227,0 +170747656490,228,0 +170747656538,228,0 +170747656586,227,0 +170747656634,228,0 +170747656682,229,0 +170747656731,228,0 +170747656779,229,0 +170747656829,228,0 +170747656877,228,0 +170747656925,218,0 +170747656973,218,0 +170747657021,218,0 +170747657068,222,0 +170747657116,223,0 +170747657164,224,0 +170747657212,224,0 +170747657260,225,0 +170747657308,227,0 +170747657356,227,0 +170747657404,231,0 +170747657452,230,0 +170747657500,226,0 +170747657548,229,0 +170747657598,231,0 +170747657647,231,0 +170747657695,230,0 +170747657745,227,0 +170747657793,218,0 +170747657841,220,0 +170747657890,221,0 +170747657940,224,0 +170747657988,225,0 +170747658035,226,0 +170747658085,228,0 +170747658133,226,0 +170747658182,228,0 +170747658230,229,0 +170747658280,229,0 +170747658329,230,0 +170747658377,231,0 +170747658425,230,0 +170747658475,229,0 +170747658523,229,0 +170747658571,229,0 +170747658619,218,0 +170747658668,219,0 +170747658716,220,0 +170747658764,224,0 +170747658812,221,0 +170747658861,225,0 +170747658909,225,0 +170747658957,226,0 +170747659007,227,0 +170747659055,229,0 +170747659104,231,0 +170747659152,228,0 +170747659200,229,0 +170747659248,229,0 +170747659296,229,0 +170747659344,230,0 +170747659392,229,0 +170747659441,228,0 +170747659489,218,0 +170747659537,219,0 +170747659585,221,0 +170747659633,223,0 +170747659680,224,0 +170747659730,223,0 +170747659779,224,0 +170747659829,228,0 +170747659877,228,0 +170747659926,228,0 +170747659974,228,0 +170747660023,229,0 +170747660071,230,0 +170747660119,229,0 +170747660167,229,0 +170747660217,228,0 +170747660266,227,0 +170747660316,224,0 +170747660365,218,0 +170747660415,220,0 +170747660465,221,0 +170747660512,222,0 +170747660562,224,0 +170747660610,222,0 +170747660658,227,0 +170747660705,228,0 +170747660753,227,0 +170747660801,228,0 +170747660849,225,0 +170747660897,229,0 +170747660945,228,0 +170747660993,229,0 +170747661042,229,0 +170747661092,228,0 +170747661140,228,0 +170747661188,219,0 +170747661236,219,0 +170747661283,219,0 +170747661331,222,0 +170747661379,223,0 +170747661427,224,0 +170747661475,225,0 +170747661523,227,0 +170747661571,228,0 +170747661618,228,0 +170747661666,229,0 +170747661716,230,0 +170747661764,229,0 +170747661813,228,0 +170747661861,237,0 +170747661909,229,0 +170747661957,229,0 +170747662005,228,0 +170747662053,217,0 +170747662100,218,0 +170747662148,220,0 +170747662196,221,0 +170747662244,222,0 +170747662292,225,0 +170747662340,224,0 +170747662388,226,0 +170747662436,225,0 +170747662483,226,0 +170747662531,230,0 +170747662579,229,0 +170747662627,228,0 +170747662676,229,0 +170747662726,231,0 +170747662774,228,0 +170747662821,229,0 +170747662871,227,0 +170747662919,216,0 +170747662967,217,0 +170747663015,219,0 +170747663063,220,0 +170747663112,222,0 +170747663160,222,0 +170747663208,221,0 +170747663258,224,0 +170747663305,225,0 +170747663355,227,0 +170747663404,230,0 +170747663452,229,0 +170747663500,229,0 +170747663548,229,0 +170747663597,230,0 +170747663645,227,0 +170747663693,227,0 +170747663743,218,0 +170747663792,215,0 +170747663840,217,0 +170747663889,218,0 +170747663937,219,0 +170747663985,220,0 +170747664033,221,0 +170747664081,221,0 +170747664129,223,0 +170747664177,223,0 +170747664225,226,0 +170747664274,229,0 +170747664324,227,0 +170747664373,228,0 +170747664421,228,0 +170747664469,230,0 +170747664517,228,0 +170747664565,226,0 +170747664612,215,0 +170747664662,215,0 +170747664710,218,0 +170747664758,220,0 +170747664807,219,0 +170747664857,224,0 +170747664906,225,0 +170747664954,226,0 +170747665003,225,0 +170747665051,225,0 +170747665099,225,0 +170747665147,226,0 +170747665195,226,0 +170747665243,226,0 +170747665291,227,0 +170747665338,228,0 +170747665388,228,0 +170747665436,227,0 +170747665484,218,0 +170747665532,220,0 +170747665579,221,0 +170747665627,222,0 +170747665675,223,0 +170747665723,223,0 +170747665771,225,0 +170747665819,226,0 +170747665869,228,0 +170747665916,227,0 +170747665964,229,0 +170747666012,227,0 +170747666060,228,0 +170747666110,229,0 +170747666159,227,0 +170747666208,228,0 +170747666256,227,0 +170747666306,222,0 +170747666353,221,0 +170747666401,224,0 +170747666449,226,0 +170747666497,227,0 +170747666547,227,0 +170747666594,226,0 +170747666642,228,0 +170747666690,228,0 +170747666740,231,0 +170747666789,228,0 +170747666839,228,0 +170747666888,231,0 +170747666936,229,0 +170747666984,228,0 +170747667032,231,0 +170747667080,228,0 +170747667127,225,0 +170747667175,222,0 +170747667223,223,0 +170747667271,223,0 +170747667321,226,0 +170747667370,227,0 +170747667418,227,0 +170747667468,228,0 +170747667515,227,0 +170747667563,228,0 +170747667611,229,0 +170747667659,227,0 +170747667709,229,0 +170747667758,229,0 +170747667806,229,0 +170747667854,229,0 +170747667903,230,0 +170747667953,232,0 +170747668001,225,0 +170747668049,218,0 +170747668098,218,0 +170747668146,223,0 +170747668196,222,0 +170747668244,223,0 +170747668292,226,0 +170747668340,227,0 +170747668389,225,0 +170747668437,225,0 +170747668485,228,0 +170747668533,228,0 +170747668581,228,0 +170747668630,229,0 +170747668678,228,0 +170747668726,228,0 +170747668774,227,0 +170747668822,227,0 +170747668870,217,0 +170747668918,217,0 +170747668967,218,0 +170747669015,219,0 +170747669063,220,0 +170747669112,221,0 +170747669162,223,0 +170747669210,225,0 +170747669259,227,0 +170747669307,226,0 +170747669355,228,0 +170747669405,227,0 +170747669454,228,0 +170747669502,228,0 +170747669552,233,0 +170747669600,229,0 +170747669648,228,0 +170747669696,230,0 +170747669744,220,0 +170747669793,219,0 +170747669841,220,0 +170747669891,222,0 +170747669939,223,0 +170747669987,224,0 +170747670036,224,0 +170747670086,225,0 +170747670133,226,0 +170747670181,227,0 +170747670231,230,0 +170747670280,228,0 +170747670330,230,0 +170747670379,229,0 +170747670427,231,0 +170747670475,229,0 +170747670523,229,0 +170747670571,227,0 +170747670620,217,0 +170747670668,219,0 +170747670718,220,0 +170747670766,221,0 +170747670814,222,0 +170747670862,225,0 +170747670910,223,0 +170747670958,225,0 +170747671007,224,0 +170747671057,226,0 +170747671105,227,0 +170747671153,228,0 +170747671201,229,0 +170747671249,230,0 +170747671297,229,0 +170747671346,230,0 +170747671396,228,0 +170747671445,220,0 +170747671493,219,0 +170747671541,220,0 +170747671591,222,0 +170747671640,222,0 +170747671690,225,0 +170747671738,222,0 +170747671787,225,0 +170747671837,225,0 +170747671885,228,0 +170747671934,230,0 +170747671984,229,0 +170747672033,230,0 +170747672081,228,0 +170747672129,229,0 +170747672177,229,0 +170747672227,228,0 +170747672275,228,0 +170747672323,218,0 +170747672372,222,0 +170747672420,221,0 +170747672468,223,0 +170747672516,221,0 +170747672566,225,0 +170747672614,226,0 +170747672662,229,0 +170747672709,230,0 +170747672759,231,0 +170747672807,232,0 +170747672855,228,0 +170747672904,231,0 +170747672954,230,0 +170747673002,229,0 +170747673051,227,0 +170747673101,227,0 +170747673150,219,0 +170747673200,220,0 +170747673248,219,0 +170747673297,220,0 +170747673347,225,0 +170747673397,224,0 +170747673446,226,0 +170747673496,227,0 +170747673545,229,0 +170747673593,229,0 +170747673641,229,0 +170747673691,230,0 +170747673739,228,0 +170747673787,230,0 +170747673835,229,0 +170747673884,229,0 +170747673934,228,0 +170747673982,228,0 +170747674031,217,0 +170747674081,222,0 +170747674130,222,0 +170747674180,224,0 +170747674229,225,0 +170747674279,228,0 +170747674327,227,0 +170747674377,229,0 +170747674426,228,0 +170747674474,231,0 +170747674522,229,0 +170747674570,232,0 +170747674618,231,0 +170747674666,231,0 +170747674714,229,0 +170747674763,230,0 +170747674811,227,0 +170747674859,218,0 +170747674907,220,0 +170747674954,220,0 +170747675002,221,0 +170747675050,223,0 +170747675098,223,0 +170747675146,224,0 +170747675194,227,0 +170747675242,227,0 +170747675290,228,0 +170747675338,230,0 +170747675385,230,0 +170747675433,230,0 +170747675481,227,0 +170747675529,229,0 +170747675577,231,0 +170747675625,230,0 +170747675673,229,0 +170747675722,220,0 +170747675770,219,0 +170747675819,220,0 +170747675867,223,0 +170747675917,225,0 +170747675965,223,0 +170747676013,226,0 +170747676062,225,0 +170747676112,228,0 +170747676161,228,0 +170747676211,230,0 +170747676260,231,0 +170747676310,229,0 +170747676358,230,0 +170747676406,229,0 +170747676455,229,0 +170747676505,230,0 +170747676552,224,0 +170747676602,218,0 +170747676651,219,0 +170747676699,223,0 +170747676749,223,0 +170747676797,223,0 +170747676845,225,0 +170747676892,226,0 +170747676940,229,0 +170747676988,232,0 +170747677038,231,0 +170747677086,231,0 +170747677135,232,0 +170747677185,230,0 +170747677234,231,0 +170747677282,229,0 +170747677331,230,0 +170747677379,228,0 +170747677427,218,0 +170747677477,217,0 +170747677525,218,0 +170747677573,219,0 +170747677622,221,0 +170747677670,223,0 +170747677718,223,0 +170747677766,224,0 +170747677814,226,0 +170747677862,226,0 +170747677912,225,0 +170747677961,224,0 +170747678009,228,0 +170747678057,229,0 +170747678105,227,0 +170747678155,225,0 +170747678203,229,0 +170747678252,227,0 +170747678302,216,0 +170747678351,216,0 +170747678399,216,0 +170747678447,218,0 +170747678497,218,0 +170747678546,216,0 +170747678594,218,0 +170747678642,222,0 +170747678692,224,0 +170747678740,226,0 +170747678789,226,0 +170747678838,226,0 +170747678886,228,0 +170747678934,230,0 +170747678982,231,0 +170747679031,230,0 +170747679081,229,0 +170747679129,217,0 +170747679177,216,0 +170747679225,216,0 +170747679274,217,0 +170747679322,217,0 +170747679370,219,0 +170747679419,218,0 +170747679467,222,0 +170747679515,217,0 +170747679563,225,0 +170747679611,223,0 +170747679659,225,0 +170747679708,226,0 +170747679758,227,0 +170747679806,228,0 +170747679853,227,0 +170747679901,228,0 +170747679949,228,0 +170747679997,217,0 +170747680045,216,0 +170747680094,218,0 +170747680144,220,0 +170747680192,220,0 +170747680239,222,0 +170747680287,222,0 +170747680335,223,0 +170747680384,223,0 +170747680432,227,0 +170747680480,225,0 +170747680528,226,0 +170747680576,226,0 +170747680624,227,0 +170747680672,227,0 +170747680721,227,0 +170747680769,228,0 +170747680817,226,0 +170747680867,223,0 +170747680915,223,0 +170747680964,224,0 +170747681014,225,0 +170747681062,225,0 +170747681110,226,0 +170747681159,227,0 +170747681209,227,0 +170747681257,228,0 +170747681306,227,0 +170747681354,228,0 +170747681402,227,0 +170747681450,227,0 +170747681500,228,0 +170747681549,229,0 +170747681597,228,0 +170747681645,228,0 +170747681693,227,0 +170747681741,227,0 +170747681789,227,0 +170747681837,229,0 +170747681885,228,0 +170747681934,227,0 +170747681982,227,0 +170747682032,228,0 +170747682081,229,0 +170747682131,229,0 +170747682180,230,0 +170747682228,229,0 +170747682276,227,0 +170747682324,229,0 +170747682372,229,0 +170747682420,227,0 +170747682468,227,0 +170747682518,227,0 +170747682566,218,0 +170747682613,224,0 +170747682663,224,0 +170747682713,224,0 +170747682760,227,0 +170747682810,227,0 +170747682858,227,0 +170747682906,228,0 +170747682954,228,0 +170747683002,231,0 +170747683050,231,0 +170747683098,231,0 +170747683146,231,0 +170747683195,229,0 +170747683245,229,0 +170747683293,225,0 +170747683342,230,0 +170747683390,218,0 +170747683438,218,0 +170747683486,218,0 +170747683536,221,0 +170747683584,224,0 +170747683633,224,0 +170747683681,225,0 +170747683731,226,0 +170747683779,227,0 +170747683827,228,0 +170747683875,230,0 +170747683923,230,0 +170747683970,228,0 +170747684018,230,0 +170747684068,229,0 +170747684116,228,0 +170747684165,229,0 +170747684215,228,0 +170747684263,217,0 +170747684311,218,0 +170747684360,219,0 +170747684410,216,0 +170747684458,222,0 +170747684507,223,0 +170747684555,223,0 +170747684603,227,0 +170747684651,228,0 +170747684699,217,0 +170747684747,229,0 +170747684794,228,0 +170747684842,231,0 +170747684892,231,0 +170747684940,229,0 +170747684989,230,0 +170747685037,228,0 +170747685085,227,0 +170747685133,218,0 +170747685183,221,0 +170747685231,219,0 +170747685280,223,0 +170747685328,225,0 +170747685378,228,0 +170747685427,226,0 +170747685475,227,0 +170747685523,227,0 +170747685571,228,0 +170747685619,228,0 +170747685667,228,0 +170747685715,229,0 +170747685763,229,0 +170747685812,229,0 +170747685862,228,0 +170747685911,228,0 +170747685961,218,0 +170747686011,216,0 +170747686059,218,0 +170747686107,219,0 +170747686154,220,0 +170747686202,222,0 +170747686250,224,0 +170747686300,225,0 +170747686349,227,0 +170747686397,227,0 +170747686447,227,0 +170747686495,229,0 +170747686543,229,0 +170747686591,228,0 +170747686639,228,0 +170747686688,228,0 +170747686738,230,0 +170747686787,227,0 +170747686835,216,0 +170747686883,216,0 +170747686933,218,0 +170747686982,219,0 +170747687032,220,0 +170747687080,224,0 +170747687128,222,0 +170747687177,223,0 +170747687225,224,0 +170747687275,226,0 +170747687323,232,0 +170747687371,228,0 +170747687418,229,0 +170747687466,229,0 +170747687514,229,0 +170747687562,229,0 +170747687612,228,0 +170747687660,217,0 +170747687708,216,0 +170747687756,217,0 +170747687805,216,0 +170747687853,219,0 +170747687903,220,0 +170747687951,221,0 +170747687999,222,0 +170747688048,225,0 +170747688096,227,0 +170747688144,227,0 +170747688192,229,0 +170747688242,229,0 +170747688291,228,0 +170747688341,229,0 +170747688390,228,0 +170747688438,229,0 +170747688488,227,0 +170747688536,216,0 +170747688584,216,0 +170747688632,216,0 +170747688680,216,0 +170747688729,218,0 +170747688779,219,0 +170747688827,223,0 +170747688876,221,0 +170747688924,223,0 +170747688974,225,0 +170747689023,228,0 +170747689073,227,0 +170747689122,228,0 +170747689170,229,0 +170747689220,228,0 +170747689268,232,0 +170747689316,228,0 +170747689364,217,0 +170747689411,216,0 +170747689461,217,0 +170747689511,217,0 +170747689558,218,0 +170747689606,219,0 +170747689656,221,0 +170747689704,222,0 +170747689754,223,0 +170747689803,227,0 +170747689853,226,0 +170747689901,228,0 +170747689950,231,0 +170747689998,231,0 +170747690046,228,0 +170747690096,228,0 +170747690144,229,0 +170747690192,228,0 +170747690241,217,0 +170747690291,216,0 +170747690340,219,0 +170747690388,220,0 +170747690438,222,0 +170747690486,223,0 +170747690534,223,0 +170747690582,225,0 +170747690631,226,0 +170747690681,227,0 +170747690729,228,0 +170747690778,231,0 +170747690828,231,0 +170747690877,233,0 +170747690927,228,0 +170747690975,226,0 +170747691023,227,0 +170747691071,219,0 +170747691120,217,0 +170747691168,218,0 +170747691216,220,0 +170747691264,223,0 +170747691312,221,0 +170747691362,224,0 +170747691409,226,0 +170747691457,229,0 +170747691505,228,0 +170747691553,229,0 +170747691601,230,0 +170747691649,228,0 +170747691699,228,0 +170747691747,229,0 +170747691796,228,0 +170747691844,224,0 +170747691892,224,0 +170747691940,217,0 +170747691988,220,0 +170747692036,221,0 +170747692084,220,0 +170747692133,223,0 +170747692181,223,0 +170747692229,224,0 +170747692277,226,0 +170747692325,224,0 +170747692372,226,0 +170747692420,227,0 +170747692468,227,0 +170747692516,228,0 +170747692566,228,0 +170747692614,228,0 +170747692661,225,0 +170747692709,228,0 +170747692757,224,0 +170747692807,219,0 +170747692855,220,0 +170747692902,221,0 +170747692950,223,0 +170747692998,224,0 +170747693048,223,0 +170747693097,226,0 +170747693145,226,0 +170747693193,227,0 +170747693242,228,0 +170747693290,228,0 +170747693340,232,0 +170747693388,230,0 +170747693436,227,0 +170747693484,229,0 +170747693531,228,0 +170747693579,229,0 +170747693627,217,0 +170747693677,220,0 +170747693726,222,0 +170747693776,221,0 +170747693825,224,0 +170747693873,226,0 +170747693922,225,0 +170747693970,228,0 +170747694020,227,0 +170747694068,229,0 +170747694116,230,0 +170747694164,229,0 +170747694211,229,0 +170747694259,228,0 +170747694307,229,0 +170747694355,228,0 +170747694405,230,0 +170747694453,228,0 +170747694500,217,0 +170747694550,219,0 +170747694598,221,0 +170747694647,222,0 +170747694697,223,0 +170747694746,225,0 +170747694794,224,0 +170747694842,226,0 +170747694890,224,0 +170747694938,227,0 +170747694987,227,0 +170747695035,228,0 +170747695085,229,0 +170747695134,229,0 +170747695184,228,0 +170747695233,229,0 +170747695283,226,0 +170747695332,222,0 +170747695382,222,0 +170747695431,223,0 +170747695479,224,0 +170747695528,224,0 +170747695576,225,0 +170747695624,226,0 +170747695672,227,0 +170747695720,228,0 +170747695768,227,0 +170747695818,228,0 +170747695867,228,0 +170747695915,228,0 +170747695963,229,0 +170747696011,227,0 +170747696059,227,0 +170747696107,230,0 +170747696156,228,0 +170747696204,228,0 +170747696252,226,0 +170747696300,226,0 +170747696348,227,0 +170747696396,227,0 +170747696443,228,0 +170747696491,227,0 +170747696539,229,0 +170747696587,230,0 +170747696635,231,0 +170747696683,230,0 +170747696731,228,0 +170747696780,231,0 +170747696830,229,0 +170747696879,229,0 +170747696927,228,0 +170747696975,231,0 +170747697023,227,0 +170747697072,227,0 +170747697122,228,0 +170747697170,227,0 +170747697218,228,0 +170747697267,230,0 +170747697317,231,0 +170747697366,229,0 +170747697416,228,0 +170747697464,229,0 +170747697512,231,0 +170747697561,229,0 +170747697609,231,0 +170747697657,228,0 +170747697705,228,0 +170747697753,228,0 +170747697803,228,0 +170747697851,228,0 +170747697899,223,0 +170747697948,223,0 +170747697998,223,0 +170747698046,225,0 +170747698094,226,0 +170747698143,227,0 +170747698193,226,0 +170747698242,228,0 +170747698290,232,0 +170747698338,229,0 +170747698386,232,0 +170747698434,229,0 +170747698483,228,0 +170747698533,230,0 +170747698583,231,0 +170747698632,230,0 +170747698682,227,0 +170747698731,227,0 +170747698779,218,0 +170747698829,219,0 +170747698876,221,0 +170747698924,223,0 +170747698972,226,0 +170747699020,226,0 +170747699068,228,0 +170747699116,226,0 +170747699164,228,0 +170747699212,229,0 +170747699260,229,0 +170747699308,229,0 +170747699357,231,0 +170747699407,229,0 +170747699455,229,0 +170747699503,228,0 +170747699551,227,0 +170747699600,217,0 +170747699650,217,0 +170747699699,218,0 +170747699749,220,0 +170747699797,222,0 +170747699845,221,0 +170747699893,221,0 +170747699941,225,0 +170747699990,226,0 +170747700040,227,0 +170747700089,226,0 +170747700137,227,0 +170747700187,229,0 +170747700236,229,0 +170747700284,229,0 +170747700332,230,0 +170747700380,230,0 +170747700428,227,0 +170747700476,216,0 +170747700524,217,0 +170747700572,218,0 +170747700620,220,0 +170747700668,221,0 +170747700716,222,0 +170747700764,222,0 +170747700812,224,0 +170747700860,224,0 +170747700908,225,0 +170747700957,227,0 +170747701005,227,0 +170747701055,228,0 +170747701102,228,0 +170747701150,229,0 +170747701198,228,0 +170747701248,229,0 +170747701296,227,0 +170747701344,216,0 +170747701392,217,0 +170747701441,219,0 +170747701489,221,0 +170747701539,222,0 +170747701587,223,0 +170747701636,223,0 +170747701686,225,0 +170747701735,226,0 +170747701783,230,0 +170747701831,227,0 +170747701879,230,0 +170747701927,231,0 +170747701975,231,0 +170747702023,229,0 +170747702071,230,0 +170747702119,230,0 +170747702167,218,0 +170747702215,217,0 +170747702263,217,0 +170747702311,218,0 +170747702359,218,0 +170747702407,224,0 +170747702456,223,0 +170747702506,222,0 +170747702556,224,0 +170747702604,223,0 +170747702651,225,0 +170747702699,228,0 +170747702749,229,0 +170747702797,229,0 +170747702846,228,0 +170747702894,230,0 +170747702942,229,0 +170747702992,227,0 +170747703041,217,0 +170747703089,216,0 +170747703137,215,0 +170747703187,217,0 +170747703235,219,0 +170747703283,220,0 +170747703331,221,0 +170747703379,221,0 +170747703427,221,0 +170747703475,228,0 +170747703523,225,0 +170747703571,226,0 +170747703619,229,0 +170747703667,227,0 +170747703715,229,0 +170747703763,232,0 +170747703811,228,0 +170747703860,228,0 +170747703910,216,0 +170747703958,216,0 +170747704006,219,0 +170747704054,221,0 +170747704101,220,0 +170747704149,219,0 +170747704197,224,0 +170747704245,225,0 +170747704293,227,0 +170747704343,227,0 +170747704391,227,0 +170747704439,230,0 +170747704488,230,0 +170747704536,231,0 +170747704585,233,0 +170747704633,230,0 +170747704681,230,0 +170747704729,227,0 +170747704777,216,0 +170747704827,217,0 +170747704876,218,0 +170747704926,219,0 +170747704974,221,0 +170747705022,222,0 +170747705070,224,0 +170747705118,224,0 +170747705167,226,0 +170747705217,226,0 +170747705265,227,0 +170747705314,227,0 +170747705362,228,0 +170747705410,226,0 +170747705460,228,0 +170747705507,228,0 +170747705555,226,0 +170747705603,217,0 +170747705651,216,0 +170747705701,217,0 +170747705748,219,0 +170747705798,220,0 +170747705847,221,0 +170747705897,221,0 +170747705945,223,0 +170747705993,223,0 +170747706042,224,0 +170747706092,228,0 +170747706142,228,0 +170747706190,228,0 +170747706238,227,0 +170747706287,229,0 +170747706335,227,0 +170747706383,228,0 +170747706431,227,0 +170747706480,216,0 +170747706528,216,0 +170747706576,217,0 +170747706624,218,0 +170747706672,219,0 +170747706721,220,0 +170747706771,222,0 +170747706819,223,0 +170747706868,224,0 +170747706916,227,0 +170747706964,227,0 +170747707012,228,0 +170747707060,227,0 +170747707109,227,0 +170747707157,227,0 +170747707207,228,0 +170747707256,226,0 +170747707304,222,0 +170747707351,216,0 +170747707399,217,0 +170747707447,218,0 +170747707497,218,0 +170747707546,222,0 +170747707594,223,0 +170747707643,222,0 +170747707691,227,0 +170747707739,225,0 +170747707787,225,0 +170747707836,227,0 +170747707884,228,0 +170747707932,228,0 +170747707980,230,0 +170747708028,229,0 +170747708076,228,0 +170747708124,227,0 +170747708172,219,0 +170747708219,219,0 +170747708269,219,0 +170747708318,220,0 +170747708368,220,0 +170747708416,222,0 +170747708466,223,0 +170747708514,225,0 +170747708562,226,0 +170747708609,226,0 +170747708657,228,0 +170747708705,226,0 +170747708755,229,0 +170747708803,229,0 +170747708851,229,0 +170747708900,227,0 +170747708950,233,0 +170747708998,227,0 +170747709046,220,0 +170747709094,220,0 +170747709143,222,0 +170747709193,222,0 +170747709241,223,0 +170747709290,225,0 +170747709338,225,0 +170747709388,222,0 +170747709437,227,0 +170747709485,227,0 +170747709535,228,0 +170747709583,229,0 +170747709630,229,0 +170747709680,231,0 +170747709728,229,0 +170747709776,229,0 +170747709825,227,0 +170747709875,219,0 +170747709923,220,0 +170747709971,221,0 +170747710020,222,0 +170747710068,222,0 +170747710116,223,0 +170747710166,224,0 +170747710214,225,0 +170747710263,226,0 +170747710311,227,0 +170747710359,227,0 +170747710407,227,0 +170747710456,228,0 +170747710504,228,0 +170747710552,228,0 +170747710602,227,0 +170747710652,228,0 +170747710701,227,0 +170747710749,224,0 +170747710797,223,0 +170747710847,224,0 +170747710894,228,0 +170747710942,226,0 +170747710990,226,0 +170747711038,230,0 +170747711086,228,0 +170747711136,228,0 +170747711184,229,0 +170747711232,228,0 +170747711281,228,0 +170747711331,229,0 +170747711379,228,0 +170747711426,228,0 +170747711476,228,0 +170747711526,228,0 +170747711575,223,0 +170747711623,225,0 +170747711671,227,0 +170747711719,227,0 +170747711767,227,0 +170747711815,227,0 +170747711863,228,0 +170747711913,229,0 +170747711962,231,0 +170747712010,230,0 +170747712060,230,0 +170747712107,230,0 +170747712155,229,0 +170747712203,229,0 +170747712251,230,0 +170747712299,229,0 +170747712347,227,0 +170747712395,226,0 +170747712442,222,0 +170747712490,223,0 +170747712538,224,0 +170747712588,226,0 +170747712636,226,0 +170747712684,227,0 +170747712733,227,0 +170747712781,227,0 +170747712829,229,0 +170747712877,225,0 +170747712927,231,0 +170747712975,231,0 +170747713024,232,0 +170747713072,230,0 +170747713120,231,0 +170747713168,229,0 +170747713218,230,0 +170747713266,228,0 +170747713315,220,0 +170747713363,220,0 +170747713411,220,0 +170747713461,222,0 +170747713509,224,0 +170747713557,225,0 +170747713606,225,0 +170747713654,226,0 +170747713704,228,0 +170747713751,229,0 +170747713799,228,0 +170747713849,231,0 +170747713899,234,0 +170747713946,229,0 +170747713994,229,0 +170747714042,228,0 +170747714090,227,0 +170747714138,223,0 +170747714186,218,0 +170747714236,219,0 +170747714285,221,0 +170747714335,222,0 +170747714383,222,0 +170747714432,223,0 +170747714482,224,0 +170747714531,225,0 +170747714579,226,0 +170747714627,228,0 +170747714675,232,0 +170747714725,228,0 +170747714772,229,0 +170747714820,230,0 +170747714870,230,0 +170747714918,228,0 +170747714967,230,0 +170747715017,218,0 +170747715066,218,0 +170747715116,220,0 +170747715164,221,0 +170747715212,222,0 +170747715260,222,0 +170747715308,224,0 +170747715356,223,0 +170747715404,224,0 +170747715453,227,0 +170747715503,226,0 +170747715551,229,0 +170747715600,228,0 +170747715648,231,0 +170747715696,230,0 +170747715744,224,0 +170747715794,229,0 +170747715842,222,0 +170747715889,218,0 +170747715937,219,0 +170747715987,220,0 +170747716037,222,0 +170747716086,224,0 +170747716136,224,0 +170747716184,225,0 +170747716233,226,0 +170747716281,226,0 +170747716331,228,0 +170747716379,229,0 +170747716427,228,0 +170747716476,228,0 +170747716524,229,0 +170747716574,230,0 +170747716622,229,0 +170747716671,229,0 +170747716721,222,0 +170747716770,220,0 +170747716818,221,0 +170747716868,222,0 +170747716917,225,0 +170747716965,222,0 +170747717013,227,0 +170747717063,225,0 +170747717112,228,0 +170747717162,230,0 +170747717211,227,0 +170747717259,229,0 +170747717307,228,0 +170747717357,229,0 +170747717406,230,0 +170747717454,229,0 +170747717504,228,0 +170747717553,228,0 +170747717601,219,0 +170747717649,220,0 +170747717697,221,0 +170747717745,224,0 +170747717793,224,0 +170747717843,224,0 +170747717890,226,0 +170747717940,226,0 +170747717989,228,0 +170747718039,227,0 +170747718087,231,0 +170747718135,227,0 +170747718184,228,0 +170747718232,229,0 +170747718280,231,0 +170747718328,228,0 +170747718376,228,0 +170747718424,220,0 +170747718474,219,0 +170747718522,218,0 +170747718571,221,0 +170747718621,221,0 +170747718669,224,0 +170747718718,225,0 +170747718766,226,0 +170747718816,228,0 +170747718864,229,0 +170747718913,230,0 +170747718961,228,0 +170747719011,227,0 +170747719059,231,0 +170747719108,230,0 +170747719158,229,0 +170747719205,230,0 +170747719253,228,0 +170747719301,219,0 +170747719349,218,0 +170747719397,221,0 +170747719447,220,0 +170747719494,223,0 +170747719544,226,0 +170747719592,222,0 +170747719640,227,0 +170747719688,227,0 +170747719736,229,0 +170747719783,230,0 +170747719831,229,0 +170747719879,231,0 +170747719927,229,0 +170747719975,228,0 +170747720023,229,0 +170747720072,228,0 +170747720122,226,0 +170747720172,218,0 +170747720220,221,0 +170747720268,222,0 +170747720316,222,0 +170747720365,227,0 +170747720413,225,0 +170747720461,227,0 +170747720509,228,0 +170747720558,227,0 +170747720608,227,0 +170747720656,231,0 +170747720704,230,0 +170747720751,226,0 +170747720799,230,0 +170747720849,232,0 +170747720897,229,0 +170747720945,229,0 +170747720992,219,0 +170747721040,218,0 +170747721088,219,0 +170747721136,222,0 +170747721184,221,0 +170747721232,224,0 +170747721281,227,0 +170747721329,226,0 +170747721379,227,0 +170747721428,227,0 +170747721478,228,0 +170747721527,227,0 +170747721575,229,0 +170747721625,229,0 +170747721673,229,0 +170747721721,229,0 +170747721770,229,0 +170747721818,226,0 +170747721868,217,0 +170747721917,219,0 +170747721967,220,0 +170747722016,222,0 +170747722066,222,0 +170747722114,225,0 +170747722162,226,0 +170747722211,226,0 +170747722259,226,0 +170747722307,228,0 +170747722357,229,0 +170747722406,228,0 +170747722456,228,0 +170747722504,230,0 +170747722553,225,0 +170747722602,229,0 +170747722651,227,0 +170747722699,218,0 +170747722748,215,0 +170747722796,217,0 +170747722844,219,0 +170747722892,220,0 +170747722940,221,0 +170747722988,223,0 +170747723036,225,0 +170747723086,224,0 +170747723135,227,0 +170747723183,227,0 +170747723231,228,0 +170747723279,228,0 +170747723327,230,0 +170747723376,229,0 +170747723424,228,0 +170747723472,229,0 +170747723520,227,0 +170747723568,217,0 +170747723618,217,0 +170747723666,218,0 +170747723714,219,0 +170747723762,219,0 +170747723810,222,0 +170747723857,221,0 +170747723905,222,0 +170747723955,225,0 +170747724003,226,0 +170747724051,225,0 +170747724098,228,0 +170747724146,227,0 +170747724196,227,0 +170747724245,223,0 +170747724295,230,0 +170747724343,229,0 +170747724391,225,0 +170747724439,215,0 +170747724487,217,0 +170747724536,219,0 +170747724584,220,0 +170747724632,221,0 +170747724680,229,0 +170747724728,222,0 +170747724776,224,0 +170747724826,223,0 +170747724874,225,0 +170747724922,226,0 +170747724969,225,0 +170747725017,227,0 +170747725065,227,0 +170747725113,228,0 +170747725161,228,0 +170747725209,228,0 +170747725257,218,0 +170747725305,219,0 +170747725355,220,0 +170747725403,221,0 +170747725451,222,0 +170747725498,224,0 +170747725546,224,0 +170747725594,225,0 +170747725644,226,0 +170747725693,227,0 +170747725743,227,0 +170747725791,228,0 +170747725839,228,0 +170747725887,228,0 +170747725936,228,0 +170747725984,227,0 +170747726032,227,0 +170747726082,227,0 +170747726130,223,0 +170747726178,222,0 +170747726226,223,0 +170747726274,224,0 +170747726322,225,0 +170747726371,226,0 +170747726419,227,0 +170747726469,228,0 +170747726518,229,0 +170747726566,228,0 +170747726614,229,0 +170747726662,228,0 +170747726711,229,0 +170747726761,235,0 +170747726811,229,0 +170747726858,230,0 +170747726908,228,0 +170747726958,226,0 +170747727006,218,0 +170747727054,219,0 +170747727102,221,0 +170747727151,222,0 +170747727201,222,0 +170747727249,224,0 +170747727298,233,0 +170747727346,227,0 +170747727396,227,0 +170747727445,229,0 +170747727493,228,0 +170747727541,229,0 +170747727589,228,0 +170747727638,231,0 +170747727686,229,0 +170747727736,231,0 +170747727784,228,0 +170747727832,219,0 +170747727880,218,0 +170747727928,220,0 +170747727977,220,0 +170747728027,224,0 +170747728075,223,0 +170747728123,225,0 +170747728172,224,0 +170747728220,225,0 +170747728268,226,0 +170747728316,228,0 +170747728364,229,0 +170747728413,230,0 +170747728461,229,0 +170747728511,229,0 +170747728559,228,0 +170747728609,228,0 +170747728657,227,0 +170747728706,218,0 +170747728754,219,0 +170747728802,221,0 +170747728850,221,0 +170747728900,224,0 +170747728947,222,0 +170747728997,226,0 +170747729047,224,0 +170747729094,226,0 +170747729144,228,0 +170747729192,224,0 +170747729240,229,0 +170747729288,228,0 +170747729336,228,0 +170747729384,231,0 +170747729432,228,0 +170747729481,229,0 +170747729529,219,0 +170747729577,219,0 +170747729627,220,0 +170747729676,223,0 +170747729724,224,0 +170747729772,223,0 +170747729820,222,0 +170747729869,225,0 +170747729917,226,0 +170747729966,227,0 +170747730016,229,0 +170747730065,227,0 +170747730115,232,0 +170747730164,228,0 +170747730212,228,0 +170747730260,228,0 +170747730308,228,0 +170747730356,227,0 +170747730404,220,0 +170747730452,219,0 +170747730502,221,0 +170747730551,222,0 +170747730601,226,0 +170747730649,224,0 +170747730698,227,0 +170747730746,227,0 +170747730794,227,0 +170747730842,227,0 +170747730890,227,0 +170747730938,227,0 +170747730986,229,0 +170747731034,230,0 +170747731083,228,0 +170747731133,228,0 +170747731181,228,0 +170747731230,219,0 +170747731280,221,0 +170747731330,223,0 +170747731379,223,0 +170747731429,226,0 +170747731478,225,0 +170747731528,226,0 +170747731576,227,0 +170747731624,229,0 +170747731672,229,0 +170747731720,229,0 +170747731767,232,0 +170747731815,229,0 +170747731865,230,0 +170747731914,228,0 +170747731962,229,0 +170747732012,225,0 +170747732060,228,0 +170747732109,222,0 +170747732159,223,0 +170747732207,224,0 +170747732256,224,0 +170747732304,225,0 +170747732354,226,0 +170747732403,227,0 +170747732451,227,0 +170747732501,228,0 +170747732549,231,0 +170747732597,230,0 +170747732645,226,0 +170747732692,230,0 +170747732740,230,0 +170747732788,229,0 +170747732836,228,0 +170747732886,227,0 +170747732934,226,0 +170747732983,223,0 +170747733033,225,0 +170747733081,227,0 +170747733130,227,0 +170747733178,228,0 +170747733228,228,0 +170747733276,228,0 +170747733324,229,0 +170747733373,231,0 +170747733423,230,0 +170747733471,229,0 +170747733519,231,0 +170747733567,229,0 +170747733614,230,0 +170747733662,230,0 +170747733710,228,0 +170747733758,229,0 +170747733808,218,0 +170747733857,221,0 +170747733905,219,0 +170747733953,222,0 +170747734001,223,0 +170747734049,224,0 +170747734099,225,0 +170747734147,224,0 +170747734196,229,0 +170747734244,229,0 +170747734292,230,0 +170747734342,230,0 +170747734391,231,0 +170747734439,230,0 +170747734487,229,0 +170747734535,229,0 +170747734585,230,0 +170747734634,227,0 +170747734684,218,0 +170747734733,220,0 +170747734781,215,0 +170747734831,223,0 +170747734879,223,0 +170747734927,225,0 +170747734975,227,0 +170747735022,225,0 +170747735070,226,0 +170747735118,227,0 +170747735168,230,0 +170747735216,228,0 +170747735264,228,0 +170747735312,228,0 +170747735360,229,0 +170747735409,229,0 +170747735459,228,0 +170747735508,218,0 +170747735558,217,0 +170747735607,217,0 +170747735655,219,0 +170747735703,220,0 +170747735751,223,0 +170747735801,223,0 +170747735849,223,0 +170747735898,225,0 +170747735946,226,0 +170747735994,227,0 +170747736042,232,0 +170747736090,230,0 +170747736138,228,0 +170747736188,230,0 +170747736237,230,0 +170747736287,229,0 +170747736336,228,0 +170747736384,216,0 +170747736434,216,0 +170747736483,217,0 +170747736533,217,0 +170747736581,221,0 +170747736629,218,0 +170747736677,222,0 +170747736726,225,0 +170747736776,227,0 +170747736824,226,0 +170747736872,225,0 +170747736920,227,0 +170747736969,229,0 +170747737017,228,0 +170747737065,228,0 +170747737113,228,0 +170747737161,228,0 +170747737209,225,0 +170747737258,214,0 +170747737306,217,0 +170747737356,219,0 +170747737404,220,0 +170747737452,221,0 +170747737500,221,0 +170747737547,222,0 +170747737597,224,0 +170747737645,223,0 +170747737694,224,0 +170747737742,229,0 +170747737790,229,0 +170747737838,228,0 +170747737888,228,0 +170747737935,227,0 +170747737983,228,0 +170747738031,226,0 +170747738079,216,0 +170747738127,215,0 +170747738175,217,0 +170747738223,218,0 +170747738270,219,0 +170747738318,219,0 +170747738366,222,0 +170747738414,223,0 +170747738462,224,0 +170747738510,223,0 +170747738558,225,0 +170747738606,226,0 +170747738654,224,0 +170747738701,225,0 +170747738749,228,0 +170747738799,230,0 +170747738847,228,0 +170747738895,227,0 +170747738943,218,0 +170747738992,217,0 +170747739041,218,0 +170747739089,221,0 +170747739137,218,0 +170747739185,220,0 +170747739233,223,0 +170747739281,223,0 +170747739329,222,0 +170747739377,224,0 +170747739425,228,0 +170747739472,224,0 +170747739520,226,0 +170747739568,228,0 +170747739616,229,0 +170747739664,228,0 +170747739712,228,0 +170747739760,227,0 +170747739807,215,0 +170747739855,215,0 +170747739905,219,0 +170747739954,218,0 +170747740002,221,0 +170747740052,222,0 +170747740101,223,0 +170747740149,224,0 +170747740197,225,0 +170747740245,226,0 +170747740293,227,0 +170747740341,228,0 +170747740388,228,0 +170747740436,229,0 +170747740484,228,0 +170747740532,232,0 +170747740580,227,0 +170747740629,220,0 +170747740679,219,0 +170747740727,223,0 +170747740776,225,0 +170747740826,225,0 +170747740876,225,0 +170747740925,226,0 +170747740973,225,0 +170747741021,228,0 +170747741069,228,0 +170747741117,227,0 +170747741165,228,0 +170747741213,227,0 +170747741262,228,0 +170747741312,228,0 +170747741361,229,0 +170747741411,228,0 +170747741459,227,0 +170747741507,225,0 +170747741555,225,0 +170747741603,226,0 +170747741652,226,0 +170747741700,226,0 +170747741748,229,0 +170747741796,229,0 +170747741844,230,0 +170747741894,231,0 +170747741942,230,0 +170747741990,229,0 +170747742038,229,0 +170747742086,230,0 +170747742133,229,0 +170747742181,229,0 +170747742229,228,0 +170747742277,229,0 +170747742325,227,0 +170747742373,220,0 +170747742421,221,0 +170747742468,223,0 +170747742516,225,0 +170747742564,224,0 +170747742612,227,0 +170747742660,228,0 +170747742708,223,0 +170747742756,229,0 +170747742804,226,0 +170747742851,229,0 +170747742901,228,0 +170747742950,230,0 +170747742998,230,0 +170747743048,229,0 +170747743096,225,0 +170747743143,228,0 +170747743191,219,0 +170747743239,218,0 +170747743287,220,0 +170747743337,222,0 +170747743384,221,0 +170747743432,223,0 +170747743482,224,0 +170747743530,226,0 +170747743578,226,0 +170747743625,229,0 +170747743673,229,0 +170747743721,228,0 +170747743769,231,0 +170747743819,229,0 +170747743868,233,0 +170747743918,230,0 +170747743966,227,0 +170747744014,228,0 +170747744062,218,0 +170747744110,218,0 +170747744159,220,0 +170747744207,221,0 +170747744255,222,0 +170747744303,223,0 +170747744351,224,0 +170747744400,226,0 +170747744450,229,0 +170747744497,227,0 +170747744547,229,0 +170747744595,228,0 +170747744644,228,0 +170747744694,229,0 +170747744742,229,0 +170747744791,231,0 +170747744841,226,0 +170747744890,226,0 +170747744938,216,0 +170747744986,218,0 +170747745036,219,0 +170747745084,221,0 +170747745133,223,0 +170747745181,224,0 +170747745229,224,0 +170747745279,226,0 +170747745327,227,0 +170747745377,227,0 +170747745425,227,0 +170747745474,230,0 +170747745522,230,0 +170747745570,229,0 +170747745618,230,0 +170747745666,229,0 +170747745714,227,0 +170747745763,218,0 +170747745813,216,0 +170747745861,217,0 +170747745909,220,0 +170747745957,220,0 +170747746005,221,0 +170747746054,223,0 +170747746102,224,0 +170747746150,226,0 +170747746198,226,0 +170747746248,228,0 +170747746296,230,0 +170747746345,229,0 +170747746393,233,0 +170747746443,230,0 +170747746491,229,0 +170747746539,232,0 +170747746588,226,0 +170747746636,214,0 +170747746684,217,0 +170747746732,219,0 +170747746782,220,0 +170747746831,221,0 +170747746879,220,0 +170747746929,223,0 +170747746976,223,0 +170747747024,225,0 +170747747072,225,0 +170747747122,228,0 +170747747172,227,0 +170747747221,229,0 +170747747269,229,0 +170747747317,230,0 +170747747366,230,0 +170747747416,231,0 +170747747464,217,0 +170747747512,216,0 +170747747560,217,0 +170747747608,218,0 +170747747657,221,0 +170747747705,221,0 +170747747755,224,0 +170747747804,224,0 +170747747854,224,0 +170747747903,225,0 +170747747951,228,0 +170747748001,230,0 +170747748049,230,0 +170747748097,229,0 +170747748145,230,0 +170747748193,228,0 +170747748241,228,0 +170747748290,219,0 +170747748338,217,0 +170747748386,218,0 +170747748434,220,0 +170747748482,220,0 +170747748532,221,0 +170747748579,223,0 +170747748627,223,0 +170747748675,225,0 +170747748723,225,0 +170747748773,229,0 +170747748821,228,0 +170747748870,228,0 +170747748918,228,0 +170747748966,231,0 +170747749014,229,0 +170747749062,237,0 +170747749112,227,0 +170747749161,218,0 +170747749209,219,0 +170747749257,220,0 +170747749307,221,0 +170747749356,223,0 +170747749404,222,0 +170747749454,225,0 +170747749502,224,0 +170747749550,227,0 +170747749598,229,0 +170747749646,228,0 +170747749694,227,0 +170747749743,228,0 +170747749793,232,0 +170747749840,229,0 +170747749888,230,0 +170747749936,229,0 +170747749986,218,0 +170747750034,218,0 +170747750083,223,0 +170747750131,222,0 +170747750179,224,0 +170747750227,217,0 +170747750277,223,0 +170747750325,227,0 +170747750374,226,0 +170747750422,227,0 +170747750470,230,0 +170747750520,228,0 +170747750569,228,0 +170747750617,228,0 +170747750667,230,0 +170747750716,230,0 +170747750766,227,0 +170747750815,219,0 +170747750863,218,0 +170747750913,217,0 +170747750961,221,0 +170747751009,224,0 +170747751057,226,0 +170747751105,226,0 +170747751154,226,0 +170747751204,225,0 +170747751253,226,0 +170747751301,230,0 +170747751349,230,0 +170747751398,228,0 +170747751448,231,0 +170747751498,230,0 +170747751547,228,0 +170747751597,227,0 +170747751646,219,0 +170747751694,218,0 +170747751742,220,0 +170747751792,221,0 +170747751840,223,0 +170747751889,223,0 +170747751937,223,0 +170747751987,225,0 +170747752035,226,0 +170747752082,226,0 +170747752130,228,0 +170747752178,232,0 +170747752226,228,0 +170747752274,229,0 +170747752324,229,0 +170747752372,229,0 +170747752421,229,0 +170747752469,228,0 +170747752517,217,0 +170747752565,218,0 +170747752615,219,0 +170747752663,220,0 +170747752710,221,0 +170747752758,222,0 +170747752806,223,0 +170747752854,224,0 +170747752902,225,0 +170747752952,226,0 +170747753000,227,0 +170747753049,228,0 +170747753099,230,0 +170747753148,229,0 +170747753198,230,0 +170747753248,228,0 +170747753297,224,0 +170747753345,216,0 +170747753393,218,0 +170747753443,219,0 +170747753491,220,0 +170747753540,221,0 +170747753588,222,0 +170747753637,223,0 +170747753685,223,0 +170747753733,225,0 +170747753781,228,0 +170747753831,226,0 +170747753879,231,0 +170747753927,230,0 +170747753976,231,0 +170747754026,228,0 +170747754074,228,0 +170747754123,228,0 +170747754171,221,0 +170747754221,219,0 +170747754269,218,0 +170747754318,222,0 +170747754366,223,0 +170747754414,224,0 +170747754464,225,0 +170747754513,227,0 +170747754563,226,0 +170747754612,228,0 +170747754662,227,0 +170747754711,229,0 +170747754761,228,0 +170747754811,228,0 +170747754860,228,0 +170747754910,227,0 +170747754959,229,0 +170747755007,218,0 +170747755055,220,0 +170747755103,223,0 +170747755151,224,0 +170747755201,226,0 +170747755250,226,0 +170747755298,227,0 +170747755348,226,0 +170747755397,229,0 +170747755447,227,0 +170747755494,227,0 +170747755542,228,0 +170747755590,228,0 +170747755640,227,0 +170747755688,229,0 +170747755736,228,0 +170747755783,227,0 +170747755831,226,0 +170747755879,222,0 +170747755927,227,0 +170747755975,226,0 +170747756023,231,0 +170747756071,227,0 +170747756119,228,0 +170747756167,227,0 +170747756216,228,0 +170747756264,229,0 +170747756314,228,0 +170747756362,228,0 +170747756410,227,0 +170747756458,228,0 +170747756506,228,0 +170747756555,228,0 +170747756605,229,0 +170747756653,227,0 +170747756702,227,0 +170747756752,226,0 +170747756801,226,0 +170747756851,228,0 +170747756899,227,0 +170747756948,229,0 +170747756996,229,0 +170747757044,230,0 +170747757094,229,0 +170747757143,229,0 +170747757193,230,0 +170747757242,235,0 +170747757290,229,0 +170747757338,229,0 +170747757388,228,0 +170747757437,230,0 +170747757485,227,0 +170747757535,219,0 +170747757583,220,0 +170747757631,221,0 +170747757680,224,0 +170747757728,221,0 +170747757778,224,0 +170747757826,226,0 +170747757874,227,0 +170747757922,227,0 +170747757970,228,0 +170747758019,228,0 +170747758067,229,0 +170747758115,229,0 +170747758163,226,0 +170747758211,231,0 +170747758259,229,0 +170747758307,228,0 +170747758355,227,0 +170747758403,218,0 +170747758452,220,0 +170747758500,219,0 +170747758550,220,0 +170747758598,222,0 +170747758647,223,0 +170747758695,224,0 +170747758745,229,0 +170747758793,226,0 +170747758841,228,0 +170747758889,228,0 +170747758937,229,0 +170747758986,230,0 +170747759034,229,0 +170747759084,229,0 +170747759132,228,0 +170747759180,229,0 +170747759228,217,0 +170747759277,216,0 +170747759325,222,0 +170747759373,221,0 +170747759423,222,0 +170747759471,222,0 +170747759520,224,0 +170747759568,223,0 +170747759616,226,0 +170747759664,229,0 +170747759712,229,0 +170747759760,229,0 +170747759809,232,0 +170747759859,229,0 +170747759907,230,0 +170747759956,230,0 +170747760004,230,0 +170747760052,218,0 +170747760101,216,0 +170747760151,217,0 +170747760199,217,0 +170747760248,218,0 +170747760298,220,0 +170747760347,220,0 +170747760397,225,0 +170747760446,225,0 +170747760496,227,0 +170747760544,229,0 +170747760592,227,0 +170747760641,228,0 +170747760689,231,0 +170747760737,227,0 +170747760785,228,0 +170747760833,228,0 +170747760881,227,0 +170747760929,216,0 +170747760976,216,0 +170747761024,216,0 +170747761074,217,0 +170747761123,217,0 +170747761171,218,0 +170747761219,219,0 +170747761269,219,0 +170747761317,222,0 +170747761365,221,0 +170747761414,224,0 +170747761464,222,0 +170747761513,225,0 +170747761561,228,0 +170747761610,224,0 +170747761658,226,0 +170747761706,231,0 +170747761754,228,0 +170747761802,228,0 +170747761852,227,0 +170747761900,229,0 +170747761948,230,0 +170747761997,229,0 +170747762045,230,0 +170747762095,228,0 +170747762143,218,0 +170747762191,217,0 +170747762240,218,0 +170747762290,220,0 +170747762339,221,0 +170747762389,222,0 +170747762438,224,0 +170747762488,225,0 +170747762537,226,0 +170747762585,228,0 +170747762633,228,0 +170747762683,228,0 +170747762732,228,0 +170747762780,228,0 +170747762828,229,0 +170747762876,230,0 +170747762926,228,0 +170747762974,224,0 +170747763023,216,0 +170747763073,216,0 +170747763122,218,0 +170747763172,220,0 +170747763221,221,0 +170747763269,221,0 +170747763319,222,0 +170747763368,223,0 +170747763416,224,0 +170747763464,225,0 +170747763512,228,0 +170747763560,228,0 +170747763610,228,0 +170747763659,230,0 +170747763709,228,0 +170747763758,228,0 +170747763806,226,0 +170747763854,216,0 +170747763902,215,0 +170747763952,216,0 +170747764000,215,0 +170747764048,217,0 +170747764097,219,0 +170747764145,221,0 +170747764195,224,0 +170747764242,225,0 +170747764290,224,0 +170747764338,227,0 +170747764388,229,0 +170747764436,230,0 +170747764484,229,0 +170747764533,228,0 +170747764581,228,0 +170747764629,230,0 +170747764679,218,0 +170747764728,216,0 +170747764778,216,0 +170747764826,216,0 +170747764874,217,0 +170747764922,219,0 +170747764970,219,0 +170747765018,220,0 +170747765066,221,0 +170747765114,223,0 +170747765162,224,0 +170747765210,226,0 +170747765258,229,0 +170747765306,229,0 +170747765354,227,0 +170747765403,227,0 +170747765453,225,0 +170747765501,220,0 +170747765550,216,0 +170747765600,216,0 +170747765649,217,0 +170747765697,218,0 +170747765745,220,0 +170747765795,221,0 +170747765843,222,0 +170747765890,222,0 +170747765938,223,0 +170747765988,226,0 +170747766037,227,0 +170747766085,226,0 +170747766133,228,0 +170747766181,227,0 +170747766229,228,0 +170747766277,225,0 +170747766325,226,0 +170747766373,218,0 +170747766421,217,0 +170747766469,219,0 +170747766518,220,0 +170747766568,221,0 +170747766616,224,0 +170747766665,224,0 +170747766715,224,0 +170747766763,225,0 +170747766811,227,0 +170747766860,227,0 +170747766910,227,0 +170747766958,227,0 +170747767006,227,0 +170747767055,228,0 +170747767105,229,0 +170747767153,227,0 +170747767200,217,0 +170747767250,217,0 +170747767298,218,0 +170747767346,220,0 +170747767394,221,0 +170747767443,223,0 +170747767491,223,0 +170747767541,224,0 +170747767589,225,0 +170747767638,229,0 +170747767686,229,0 +170747767734,227,0 +170747767784,229,0 +170747767833,227,0 +170747767883,231,0 +170747767932,228,0 +170747767982,227,0 +170747768030,224,0 +170747768078,217,0 +170747768127,218,0 +170747768175,218,0 +170747768225,223,0 +170747768274,222,0 +170747768322,224,0 +170747768370,225,0 +170747768418,226,0 +170747768468,226,0 +170747768517,228,0 +170747768565,227,0 +170747768613,229,0 +170747768661,228,0 +170747768711,228,0 +170747768760,228,0 +170747768808,229,0 +170747768856,227,0 +170747768904,220,0 +170747768953,220,0 +170747769001,220,0 +170747769049,217,0 +170747769097,222,0 +170747769147,224,0 +170747769196,223,0 +170747769244,224,0 +170747769292,227,0 +170747769340,225,0 +170747769390,229,0 +170747769438,229,0 +170747769487,228,0 +170747769537,228,0 +170747769586,223,0 +170747769634,227,0 +170747769684,228,0 +170747769732,220,0 +170747769780,220,0 +170747769828,220,0 +170747769877,221,0 +170747769925,222,0 +170747769975,223,0 +170747770024,224,0 +170747770074,224,0 +170747770123,226,0 +170747770173,227,0 +170747770221,227,0 +170747770270,229,0 +170747770318,227,0 +170747770368,228,0 +170747770416,228,0 +170747770465,228,0 +170747770513,226,0 +170747770563,228,0 +170747770611,225,0 +170747770660,226,0 +170747770710,227,0 +170747770758,227,0 +170747770806,226,0 +170747770854,227,0 +170747770903,227,0 +170747770953,227,0 +170747771002,228,0 +170747771050,227,0 +170747771098,229,0 +170747771146,229,0 +170747771194,229,0 +170747771242,229,0 +170747771292,228,0 +170747771341,230,0 +170747771389,227,0 +170747771437,227,0 +170747771485,227,0 +170747771533,228,0 +170747771582,227,0 +170747771630,231,0 +170747771679,229,0 +170747771727,229,0 +170747771775,229,0 +170747771825,230,0 +170747771873,229,0 +170747771921,228,0 +170747771968,229,0 +170747772016,230,0 +170747772064,230,0 +170747772114,228,0 +170747772162,228,0 +170747772210,227,0 +170747772258,222,0 +170747772306,221,0 +170747772354,223,0 +170747772402,223,0 +170747772451,224,0 +170747772499,227,0 +170747772547,227,0 +170747772595,227,0 +170747772643,227,0 +170747772691,227,0 +170747772739,230,0 +170747772787,230,0 +170747772834,231,0 +170747772882,220,0 +170747772930,227,0 +170747772980,228,0 +170747773028,228,0 +170747773075,227,0 +170747773123,221,0 +170747773171,221,0 +170747773219,222,0 +170747773267,223,0 +170747773316,224,0 +170747773364,224,0 +170747773412,225,0 +170747773460,226,0 +170747773508,227,0 +170747773556,228,0 +170747773604,228,0 +170747773653,229,0 +170747773701,227,0 +170747773749,228,0 +170747773797,228,0 +170747773845,228,0 +170747773894,225,0 +170747773942,218,0 +170747773990,219,0 +170747774038,220,0 +170747774086,221,0 +170747774134,221,0 +170747774183,223,0 +170747774231,224,0 +170747774281,226,0 +170747774330,225,0 +170747774380,228,0 +170747774428,231,0 +170747774476,229,0 +170747774525,229,0 +170747774573,229,0 +170747774621,229,0 +170747774669,228,0 +170747774718,227,0 +170747774766,217,0 +170747774814,217,0 +170747774862,218,0 +170747774910,220,0 +170747774958,221,0 +170747775006,221,0 +170747775055,222,0 +170747775103,224,0 +170747775152,225,0 +170747775200,226,0 +170747775247,226,0 +170747775295,229,0 +170747775343,228,0 +170747775393,228,0 +170747775441,230,0 +170747775488,230,0 +170747775536,228,0 +170747775584,227,0 +170747775632,217,0 +170747775682,217,0 +170747775731,217,0 +170747775779,218,0 +170747775829,221,0 +170747775878,220,0 +170747775926,221,0 +170747775974,222,0 +170747776022,224,0 +170747776072,225,0 +170747776120,228,0 +170747776169,225,0 +170747776219,226,0 +170747776267,226,0 +170747776315,228,0 +170747776363,230,0 +170747776411,228,0 +170747776460,217,0 +170747776510,216,0 +170747776559,218,0 +170747776609,219,0 +170747776657,219,0 +170747776705,222,0 +170747776753,221,0 +170747776802,222,0 +170747776852,224,0 +170747776901,225,0 +170747776949,225,0 +170747776997,227,0 +170747777047,231,0 +170747777095,228,0 +170747777142,229,0 +170747777192,228,0 +170747777241,229,0 +170747777289,218,0 +170747777339,217,0 +170747777386,218,0 +170747777434,229,0 +170747777482,223,0 +170747777530,222,0 +170747777578,223,0 +170747777626,224,0 +170747777674,223,0 +170747777722,224,0 +170747777770,227,0 +170747777817,226,0 +170747777867,228,0 +170747777916,229,0 +170747777964,229,0 +170747778012,230,0 +170747778060,228,0 +170747778108,229,0 +170747778156,218,0 +170747778204,219,0 +170747778252,220,0 +170747778300,217,0 +170747778347,222,0 +170747778395,225,0 +170747778443,224,0 +170747778493,224,0 +170747778541,228,0 +170747778590,229,0 +170747778638,228,0 +170747778686,228,0 +170747778734,226,0 +170747778782,233,0 +170747778829,231,0 +170747778877,231,0 +170747778925,227,0 +170747778975,227,0 +170747779023,217,0 +170747779070,219,0 +170747779118,220,0 +170747779166,224,0 +170747779216,222,0 +170747779263,225,0 +170747779313,225,0 +170747779363,225,0 +170747779411,226,0 +170747779458,230,0 +170747779508,230,0 +170747779558,227,0 +170747779605,228,0 +170747779653,229,0 +170747779703,228,0 +170747779751,229,0 +170747779800,228,0 +170747779848,218,0 +170747779896,218,0 +170747779944,221,0 +170747779994,223,0 +170747780043,222,0 +170747780091,226,0 +170747780139,225,0 +170747780188,227,0 +170747780236,228,0 +170747780284,229,0 +170747780334,228,0 +170747780383,227,0 +170747780431,229,0 +170747780479,229,0 +170747780529,228,0 +170747780578,229,0 +170747780626,227,0 +170747780674,219,0 +170747780722,218,0 +170747780770,220,0 +170747780820,221,0 +170747780869,222,0 +170747780917,224,0 +170747780965,224,0 +170747781015,226,0 +170747781063,226,0 +170747781111,226,0 +170747781158,227,0 +170747781208,229,0 +170747781256,228,0 +170747781304,229,0 +170747781352,229,0 +170747781401,229,0 +170747781449,228,0 +170747781499,219,0 +170747781548,216,0 +170747781596,218,0 +170747781644,220,0 +170747781694,220,0 +170747781742,221,0 +170747781790,223,0 +170747781837,224,0 +170747781887,225,0 +170747781935,227,0 +170747781983,227,0 +170747782032,226,0 +170747782080,228,0 +170747782128,228,0 +170747782176,227,0 +170747782224,225,0 +170747782273,229,0 +170747782323,227,0 +170747782371,217,0 +170747782418,218,0 +170747782466,218,0 +170747782514,219,0 +170747782562,219,0 +170747782610,220,0 +170747782658,223,0 +170747782706,224,0 +170747782754,224,0 +170747782802,223,0 +170747782850,226,0 +170747782899,226,0 +170747782947,230,0 +170747782995,228,0 +170747783043,228,0 +170747783091,228,0 +170747783139,228,0 +170747783188,217,0 +170747783237,215,0 +170747783285,217,0 +170747783333,219,0 +170747783381,220,0 +170747783429,222,0 +170747783477,222,0 +170747783525,223,0 +170747783573,224,0 +170747783623,225,0 +170747783672,227,0 +170747783722,226,0 +170747783770,229,0 +170747783818,227,0 +170747783866,229,0 +170747783914,227,0 +170747783963,228,0 +170747784013,228,0 +170747784061,216,0 +170747784109,217,0 +170747784157,218,0 +170747784205,219,0 +170747784252,219,0 +170747784302,220,0 +170747784350,220,0 +170747784400,222,0 +170747784449,223,0 +170747784499,224,0 +170747784548,226,0 +170747784598,225,0 +170747784647,227,0 +170747784695,229,0 +170747784743,228,0 +170747784791,228,0 +170747784839,227,0 +170747784887,218,0 +170747784937,218,0 +170747784986,219,0 +170747785034,220,0 +170747785084,222,0 +170747785132,221,0 +170747785180,224,0 +170747785229,227,0 +170747785279,225,0 +170747785327,226,0 +170747785375,226,0 +170747785423,227,0 +170747785471,227,0 +170747785520,227,0 +170747785570,227,0 +170747785618,228,0 +170747785667,228,0 +170747785715,222,0 +170747785765,222,0 +170747785814,220,0 +170747785862,222,0 +170747785912,223,0 +170747785960,225,0 +170747786009,225,0 +170747786059,226,0 +170747786107,228,0 +170747786154,227,0 +170747786202,228,0 +170747786250,228,0 +170747786298,228,0 +170747786346,228,0 +170747786394,228,0 +170747786442,228,0 +170747786492,228,0 +170747786540,227,0 +170747786589,218,0 +170747786639,220,0 +170747786687,221,0 +170747786735,223,0 +170747786783,223,0 +170747786831,224,0 +170747786879,225,0 +170747786928,226,0 +170747786978,227,0 +170747787027,228,0 +170747787077,231,0 +170747787125,230,0 +170747787174,231,0 +170747787222,230,0 +170747787272,229,0 +170747787321,229,0 +170747787369,228,0 +170747787417,217,0 +170747787465,217,0 +170747787513,219,0 +170747787563,219,0 +170747787611,220,0 +170747787660,221,0 +170747787708,224,0 +170747787758,224,0 +170747787806,224,0 +170747787854,224,0 +170747787903,229,0 +170747787953,228,0 +170747788002,227,0 +170747788052,228,0 +170747788101,229,0 +170747788149,227,0 +170747788197,229,0 +170747788245,218,0 +170747788295,217,0 +170747788343,218,0 +170747788392,220,0 +170747788440,221,0 +170747788488,222,0 +170747788538,224,0 +170747788585,223,0 +170747788635,226,0 +170747788685,226,0 +170747788734,227,0 +170747788782,231,0 +170747788830,230,0 +170747788878,228,0 +170747788926,228,0 +170747788975,230,0 +170747789025,227,0 +170747789073,218,0 +170747789121,219,0 +170747789169,220,0 +170747789217,221,0 +170747789265,223,0 +170747789314,224,0 +170747789362,226,0 +170747789412,226,0 +170747789461,227,0 +170747789509,225,0 +170747789559,230,0 +170747789607,227,0 +170747789655,230,0 +170747789703,231,0 +170747789752,229,0 +170747789802,229,0 +170747789850,227,0 +170747789899,227,0 +170747789947,220,0 +170747789995,220,0 +170747790045,221,0 +170747790094,223,0 +170747790142,224,0 +170747790190,224,0 +170747790240,225,0 +170747790288,228,0 +170747790336,226,0 +170747790384,228,0 +170747790433,229,0 +170747790483,230,0 +170747790531,228,0 +170747790580,227,0 +170747790628,226,0 +170747790678,229,0 +170747790726,228,0 +170747790774,223,0 +170747790821,223,0 +170747790871,225,0 +170747790919,227,0 +170747790967,224,0 +170747791015,230,0 +170747791064,227,0 +170747791114,232,0 +170747791163,228,0 +170747791213,229,0 +170747791261,230,0 +170747791309,230,0 +170747791358,229,0 +170747791406,230,0 +170747791454,227,0 +170747791502,228,0 +170747791552,228,0 +170747791600,220,0 +170747791648,222,0 +170747791696,224,0 +170747791744,225,0 +170747791792,225,0 +170747791839,228,0 +170747791887,226,0 +170747791937,227,0 +170747791986,230,0 +170747792036,228,0 +170747792086,229,0 +170747792135,230,0 +170747792185,230,0 +170747792234,229,0 +170747792282,227,0 +170747792330,228,0 +170747792378,227,0 +170747792426,226,0 +170747792474,220,0 +170747792522,222,0 +170747792570,222,0 +170747792618,223,0 +170747792666,224,0 +170747792714,226,0 +170747792761,227,0 +170747792809,228,0 +170747792857,227,0 +170747792905,228,0 +170747792953,228,0 +170747793002,229,0 +170747793050,229,0 +170747793098,229,0 +170747793148,230,0 +170747793197,227,0 +170747793247,227,0 +170747793296,219,0 +170747793346,219,0 +170747793395,220,0 +170747793443,221,0 +170747793493,223,0 +170747793541,225,0 +170747793590,226,0 +170747793638,226,0 +170747793686,226,0 +170747793734,229,0 +170747793784,230,0 +170747793832,233,0 +170747793880,231,0 +170747793928,231,0 +170747793977,229,0 +170747794025,228,0 +170747794075,228,0 +170747794124,218,0 +170747794172,218,0 +170747794222,219,0 +170747794269,221,0 +170747794319,222,0 +170747794367,223,0 +170747794415,221,0 +170747794464,226,0 +170747794512,227,0 +170747794562,228,0 +170747794610,228,0 +170747794658,229,0 +170747794707,228,0 +170747794755,230,0 +170747794803,229,0 +170747794852,229,0 +170747794902,227,0 +170747794952,219,0 +170747794999,217,0 +170747795047,219,0 +170747795095,220,0 +170747795145,221,0 +170747795193,223,0 +170747795241,221,0 +170747795289,221,0 +170747795338,226,0 +170747795388,226,0 +170747795436,227,0 +170747795483,227,0 +170747795531,229,0 +170747795579,229,0 +170747795627,229,0 +170747795675,232,0 +170747795723,228,0 +170747795771,224,0 +170747795819,216,0 +170747795868,218,0 +170747795918,219,0 +170747795967,220,0 +170747796017,222,0 +170747796065,223,0 +170747796113,223,0 +170747796162,225,0 +170747796210,225,0 +170747796258,227,0 +170747796308,226,0 +170747796355,228,0 +170747796403,230,0 +170747796451,230,0 +170747796499,230,0 +170747796549,228,0 +170747796597,227,0 +170747796646,218,0 +170747796694,216,0 +170747796744,217,0 +170747796793,218,0 +170747796841,220,0 +170747796889,220,0 +170747796937,224,0 +170747796985,224,0 +170747797033,224,0 +170747797081,226,0 +170747797129,227,0 +170747797179,226,0 +170747797228,228,0 +170747797276,229,0 +170747797325,227,0 +170747797375,228,0 +170747797425,227,0 +170747797473,218,0 +170747797520,216,0 +170747797568,217,0 +170747797616,218,0 +170747797666,219,0 +170747797716,222,0 +170747797765,222,0 +170747797815,223,0 +170747797862,225,0 +170747797912,225,0 +170747797962,228,0 +170747798010,229,0 +170747798057,227,0 +170747798105,228,0 +170747798153,228,0 +170747798203,228,0 +170747798251,228,0 +170747798299,226,0 +170747798348,216,0 +170747798396,215,0 +170747798446,214,0 +170747798494,218,0 +170747798543,219,0 +170747798591,220,0 +170747798641,222,0 +170747798689,222,0 +170747798738,223,0 +170747798786,225,0 +170747798834,225,0 +170747798884,225,0 +170747798932,228,0 +170747798980,228,0 +170747799029,228,0 +170747799079,228,0 +170747799128,227,0 +170747799176,217,0 +170747799224,216,0 +170747799272,216,0 +170747799320,217,0 +170747799370,218,0 +170747799418,219,0 +170747799466,220,0 +170747799515,221,0 +170747799563,222,0 +170747799613,223,0 +170747799662,223,0 +170747799712,226,0 +170747799761,224,0 +170747799811,228,0 +170747799859,227,0 +170747799908,227,0 +170747799956,228,0 +170747800004,220,0 +170747800052,220,0 +170747800100,222,0 +170747800148,224,0 +170747800196,223,0 +170747800246,224,0 +170747800295,225,0 +170747800343,225,0 +170747800391,226,0 +170747800439,228,0 +170747800489,227,0 +170747800537,227,0 +170747800586,227,0 +170747800636,227,0 +170747800684,227,0 +170747800733,227,0 +170747800783,227,0 +170747800832,220,0 +170747800882,222,0 +170747800930,224,0 +170747800979,225,0 +170747801029,227,0 +170747801078,227,0 +170747801128,228,0 +170747801175,227,0 +170747801223,228,0 +170747801271,228,0 +170747801319,231,0 +170747801367,230,0 +170747801415,231,0 +170747801463,229,0 +170747801511,229,0 +170747801559,228,0 +170747801606,231,0 +170747801654,227,0 +170747801704,225,0 +170747801752,226,0 +170747801801,225,0 +170747801849,228,0 +170747801899,227,0 +170747801948,229,0 +170747801998,227,0 +170747802046,228,0 +170747802095,227,0 +170747802145,229,0 +170747802195,229,0 +170747802242,229,0 +170747802290,230,0 +170747802340,227,0 +170747802388,228,0 +170747802436,228,0 +170747802484,225,0 +170747802532,222,0 +170747802581,223,0 +170747802629,222,0 +170747802679,225,0 +170747802728,224,0 +170747802776,227,0 +170747802824,227,0 +170747802872,228,0 +170747802922,227,0 +170747802970,228,0 +170747803019,228,0 +170747803067,231,0 +170747803115,230,0 +170747803163,229,0 +170747803211,232,0 +170747803259,229,0 +170747803307,227,0 +170747803355,220,0 +170747803403,220,0 +170747803453,223,0 +170747803501,223,0 +170747803550,226,0 +170747803598,225,0 +170747803646,226,0 +170747803694,226,0 +170747803743,227,0 +170747803793,227,0 +170747803842,227,0 +170747803892,228,0 +170747803941,230,0 +170747803991,230,0 +170747804041,231,0 +170747804089,228,0 +170747804138,228,0 +170747804186,229,0 +170747804236,217,0 +170747804283,218,0 +170747804331,220,0 +170747804381,221,0 +170747804431,223,0 +170747804480,223,0 +170747804528,225,0 +170747804578,226,0 +170747804625,228,0 +170747804673,230,0 +170747804723,229,0 +170747804772,231,0 +170747804820,231,0 +170747804870,230,0 +170747804919,230,0 +170747804967,229,0 +170747805015,228,0 +170747805065,216,0 +170747805113,217,0 +170747805161,217,0 +170747805209,219,0 +170747805257,220,0 +170747805305,221,0 +170747805352,222,0 +170747805402,223,0 +170747805450,224,0 +170747805500,227,0 +170747805549,229,0 +170747805599,227,0 +170747805648,228,0 +170747805698,230,0 +170747805747,229,0 +170747805795,228,0 +170747805843,227,0 +170747805891,217,0 +170747805939,216,0 +170747805987,217,0 +170747806037,218,0 +170747806086,220,0 +170747806136,221,0 +170747806184,220,0 +170747806232,224,0 +170747806280,224,0 +170747806328,226,0 +170747806376,229,0 +170747806425,225,0 +170747806473,229,0 +170747806523,227,0 +170747806572,228,0 +170747806620,226,0 +170747806668,228,0 +170747806718,218,0 +170747806767,215,0 +170747806817,217,0 +170747806865,219,0 +170747806914,219,0 +170747806964,222,0 +170747807013,222,0 +170747807063,226,0 +170747807112,226,0 +170747807160,227,0 +170747807208,228,0 +170747807256,229,0 +170747807304,228,0 +170747807352,228,0 +170747807400,230,0 +170747807448,229,0 +170747807496,229,0 +170747807545,227,0 +170747807595,217,0 +170747807643,218,0 +170747807692,219,0 +170747807742,220,0 +170747807790,221,0 +170747807838,222,0 +170747807887,223,0 +170747807935,224,0 +170747807983,225,0 +170747808033,226,0 +170747808081,229,0 +170747808129,227,0 +170747808178,227,0 +170747808226,228,0 +170747808274,230,0 +170747808322,229,0 +170747808370,229,0 +170747808420,218,0 +170747808468,219,0 +170747808517,218,0 +170747808567,222,0 +170747808616,223,0 +170747808664,225,0 +170747808712,225,0 +170747808760,225,0 +170747808809,226,0 +170747808859,229,0 +170747808909,231,0 +170747808958,230,0 +170747809008,229,0 +170747809057,230,0 +170747809105,230,0 +170747809153,232,0 +170747809203,227,0 +170747809252,221,0 +170747809300,223,0 +170747809348,217,0 +170747809396,225,0 +170747809446,226,0 +170747809494,226,0 +170747809542,226,0 +170747809589,229,0 +170747809639,230,0 +170747809689,230,0 +170747809738,230,0 +170747809788,230,0 +170747809836,229,0 +170747809884,229,0 +170747809932,230,0 +170747809979,228,0 +170747810027,228,0 +170747810077,224,0 +170747810125,220,0 +170747810173,218,0 +170747810221,221,0 +170747810271,223,0 +170747810318,222,0 +170747810366,226,0 +170747810414,226,0 +170747810464,230,0 +170747810513,229,0 +170747810563,228,0 +170747810613,231,0 +170747810662,228,0 +170747810710,227,0 +170747810760,228,0 +170747810808,228,0 +170747810856,229,0 +170747810905,227,0 +170747810953,218,0 +170747811003,219,0 +170747811052,220,0 +170747811100,221,0 +170747811148,224,0 +170747811197,224,0 +170747811245,225,0 +170747811293,228,0 +170747811343,228,0 +170747811391,227,0 +170747811440,228,0 +170747811488,227,0 +170747811536,228,0 +170747811585,228,0 +170747811633,230,0 +170747811683,228,0 +170747811731,227,0 +170747811780,219,0 +170747811828,217,0 +170747811876,218,0 +170747811924,219,0 +170747811972,220,0 +170747812020,222,0 +170747812067,223,0 +170747812115,223,0 +170747812163,224,0 +170747812211,225,0 +170747812259,226,0 +170747812307,226,0 +170747812355,228,0 +170747812404,227,0 +170747812453,227,0 +170747812501,228,0 +170747812549,229,0 +170747812599,226,0 +170747812648,216,0 +170747812696,217,0 +170747812744,217,0 +170747812794,219,0 +170747812842,220,0 +170747812891,220,0 +170747812941,221,0 +170747812990,223,0 +170747813040,223,0 +170747813089,226,0 +170747813137,226,0 +170747813187,227,0 +170747813235,226,0 +170747813284,229,0 +170747813332,228,0 +170747813382,229,0 +170747813430,228,0 +170747813479,217,0 +170747813527,217,0 +170747813575,217,0 +170747813625,219,0 +170747813673,220,0 +170747813721,220,0 +170747813770,223,0 +170747813818,224,0 +170747813866,224,0 +170747813914,225,0 +170747813962,227,0 +170747814012,228,0 +170747814061,229,0 +170747814109,228,0 +170747814157,228,0 +170747814205,229,0 +170747814255,228,0 +170747814303,218,0 +170747814351,217,0 +170747814400,218,0 +170747814450,219,0 +170747814499,221,0 +170747814549,225,0 +170747814597,223,0 +170747814645,226,0 +170747814694,225,0 +170747814742,226,0 +170747814792,226,0 +170747814840,228,0 +170747814889,229,0 +170747814939,229,0 +170747814987,231,0 +170747815035,229,0 +170747815084,227,0 +170747815134,227,0 +170747815182,223,0 +170747815230,223,0 +170747815278,224,0 +170747815326,226,0 +170747815373,225,0 +170747815421,226,0 +170747815469,227,0 +170747815517,227,0 +170747815567,229,0 +170747815616,227,0 +170747815664,228,0 +170747815712,228,0 +170747815760,227,0 +170747815808,227,0 +170747815858,228,0 +170747815906,228,0 +170747815955,227,0 +170747816005,225,0 +170747816054,226,0 +170747816102,224,0 +170747816152,228,0 +170747816201,227,0 +170747816251,227,0 +170747816299,227,0 +170747816348,228,0 +170747816396,229,0 +170747816444,229,0 +170747816492,227,0 +170747816540,228,0 +170747816588,227,0 +170747816636,228,0 +170747816685,230,0 +170747816733,225,0 +170747816783,224,0 +170747816832,221,0 +170747816882,223,0 +170747816930,224,0 +170747816980,227,0 +170747817029,222,0 +170747817077,225,0 +170747817125,226,0 +170747817175,227,0 +170747817222,228,0 +170747817272,229,0 +170747817320,231,0 +170747817369,232,0 +170747817419,230,0 +170747817467,230,0 +170747817516,228,0 +170747817566,227,0 +170747817615,228,0 +170747817665,222,0 +170747817715,220,0 +170747817764,223,0 +170747817814,223,0 +170747817863,223,0 +170747817911,224,0 +170747817959,224,0 +170747818007,224,0 +170747818055,228,0 +170747818105,231,0 +170747818154,228,0 +170747818202,228,0 +170747818252,231,0 +170747818301,235,0 +170747818351,232,0 +170747818400,228,0 +170747818448,230,0 +170747818498,227,0 +170747818546,218,0 +170747818595,221,0 +170747818645,221,0 +170747818693,224,0 +170747818742,223,0 +170747818790,223,0 +170747818838,224,0 +170747818888,227,0 +170747818936,227,0 +170747818984,227,0 +170747819033,229,0 +170747819081,225,0 +170747819129,230,0 +170747819177,229,0 +170747819227,226,0 +170747819276,229,0 +170747819324,228,0 +170747819372,218,0 +170747819420,217,0 +170747819468,218,0 +170747819517,220,0 +170747819565,222,0 +170747819613,224,0 +170747819663,225,0 +170747819711,224,0 +170747819760,227,0 +170747819808,226,0 +170747819858,228,0 +170747819906,229,0 +170747819955,230,0 +170747820003,231,0 +170747820053,230,0 +170747820102,228,0 +170747820150,228,0 +170747820198,224,0 +170747820246,218,0 +170747820296,219,0 +170747820345,221,0 +170747820395,222,0 +170747820445,222,0 +170747820494,224,0 +170747820542,226,0 +170747820592,225,0 +170747820640,227,0 +170747820688,227,0 +170747820735,231,0 +170747820783,229,0 +170747820833,228,0 +170747820883,230,0 +170747820931,230,0 +170747820980,228,0 +170747821030,227,0 +170747821079,216,0 +170747821129,216,0 +170747821177,216,0 +170747821225,218,0 +170747821273,219,0 +170747821322,220,0 +170747821370,222,0 +170747821420,223,0 +170747821467,225,0 +170747821517,222,0 +170747821565,228,0 +170747821615,231,0 +170747821664,227,0 +170747821714,229,0 +170747821762,228,0 +170747821809,227,0 +170747821859,228,0 +170747821909,217,0 +170747821958,216,0 +170747822008,216,0 +170747822056,216,0 +170747822104,216,0 +170747822153,218,0 +170747822201,219,0 +170747822251,220,0 +170747822299,223,0 +170747822348,223,0 +170747822398,227,0 +170747822447,227,0 +170747822495,227,0 +170747822543,228,0 +170747822593,226,0 +170747822642,227,0 +170747822692,226,0 +170747822740,218,0 +170747822788,216,0 +170747822836,216,0 +170747822884,218,0 +170747822932,218,0 +170747822980,218,0 +170747823029,222,0 +170747823077,222,0 +170747823125,224,0 +170747823175,224,0 +170747823223,228,0 +170747823272,225,0 +170747823320,228,0 +170747823370,225,0 +170747823418,229,0 +170747823468,231,0 +170747823517,227,0 +170747823567,226,0 +170747823616,216,0 +170747823664,218,0 +170747823714,218,0 +170747823762,220,0 +170747823810,220,0 +170747823858,223,0 +170747823906,224,0 +170747823953,224,0 +170747824003,226,0 +170747824051,226,0 +170747824101,229,0 +170747824150,229,0 +170747824199,231,0 +170747824249,228,0 +170747824297,227,0 +170747824345,227,0 +170747824393,227,0 +170747824441,217,0 +170747824489,217,0 +170747824537,217,0 +170747824585,219,0 +170747824634,221,0 +170747824684,221,0 +170747824733,224,0 +170747824781,224,0 +170747824829,224,0 +170747824879,226,0 +170747824928,229,0 +170747824976,230,0 +170747825026,229,0 +170747825074,228,0 +170747825122,229,0 +170747825170,230,0 +170747825218,228,0 +170747825267,218,0 +170747825317,216,0 +170747825366,217,0 +170747825414,218,0 +170747825464,219,0 +170747825512,221,0 +170747825561,221,0 +170747825609,222,0 +170747825658,224,0 +170747825708,227,0 +170747825758,225,0 +170747825807,226,0 +170747825857,227,0 +170747825906,230,0 +170747825956,228,0 +170747826004,228,0 +170747826052,229,0 +170747826101,227,0 +170747826149,219,0 +170747826197,219,0 +170747826245,220,0 +170747826295,221,0 +170747826343,223,0 +170747826392,223,0 +170747826440,224,0 +170747826488,225,0 +170747826536,225,0 +170747826584,227,0 +170747826634,226,0 +170747826683,231,0 +170747826731,228,0 +170747826781,231,0 +170747826830,229,0 +170747826880,227,0 +170747826928,228,0 +170747826977,220,0 +170747827025,219,0 +170747827073,221,0 +170747827122,221,0 +170747827172,222,0 +170747827221,225,0 +170747827269,226,0 +170747827317,226,0 +170747827365,227,0 +170747827413,227,0 +170747827461,228,0 +170747827510,228,0 +170747827558,228,0 +170747827608,228,0 +170747827657,229,0 +170747827705,228,0 +170747827753,227,0 +170747827801,219,0 +170747827849,219,0 +170747827897,220,0 +170747827945,222,0 +170747827993,223,0 +170747828042,224,0 +170747828091,224,0 +170747828141,224,0 +170747828189,228,0 +170747828237,230,0 +170747828285,228,0 +170747828333,229,0 +170747828382,229,0 +170747828430,228,0 +170747828478,227,0 +170747828526,228,0 +170747828574,228,0 +170747828624,227,0 +170747828672,220,0 +170747828719,219,0 +170747828767,221,0 +170747828817,223,0 +170747828865,225,0 +170747828913,223,0 +170747828961,225,0 +170747829009,226,0 +170747829058,226,0 +170747829108,227,0 +170747829156,229,0 +170747829205,228,0 +170747829255,229,0 +170747829304,229,0 +170747829352,229,0 +170747829400,227,0 +170747829450,227,0 +170747829499,220,0 +170747829549,221,0 +170747829597,222,0 +170747829645,223,0 +170747829694,224,0 +170747829744,224,0 +170747829792,232,0 +170747829841,227,0 +170747829889,229,0 +170747829939,228,0 +170747829987,229,0 +170747830036,229,0 +170747830084,228,0 +170747830132,230,0 +170747830180,227,0 +170747830230,228,0 +170747830279,229,0 +170747830329,222,0 +170747830378,225,0 +170747830428,226,0 +170747830476,227,0 +170747830525,227,0 +170747830575,227,0 +170747830624,228,0 +170747830672,227,0 +170747830722,228,0 +170747830771,228,0 +170747830819,227,0 +170747830869,228,0 +170747830918,228,0 +170747830966,227,0 +170747831014,229,0 +170747831064,228,0 +170747831113,228,0 +170747831163,224,0 +170747831211,223,0 +170747831260,227,0 +170747831310,226,0 +170747831358,229,0 +170747831407,227,0 +170747831457,227,0 +170747831506,228,0 +170747831554,229,0 +170747831604,228,0 +170747831652,229,0 +170747831700,228,0 +170747831748,228,0 +170747831798,227,0 +170747831845,227,0 +170747831893,228,0 +170747831943,228,0 +170747831993,227,0 +170747832040,221,0 +170747832090,221,0 +170747832138,223,0 +170747832188,224,0 +170747832235,225,0 +170747832283,227,0 +170747832333,228,0 +170747832382,228,0 +170747832432,227,0 +170747832481,227,0 +170747832529,229,0 +170747832577,233,0 +170747832625,230,0 +170747832673,233,0 +170747832721,229,0 +170747832769,229,0 +170747832817,227,0 +170747832866,217,0 +170747832914,217,0 +170747832962,219,0 +170747833010,221,0 +170747833059,222,0 +170747833109,223,0 +170747833157,226,0 +170747833206,225,0 +170747833254,228,0 +170747833302,227,0 +170747833352,229,0 +170747833401,228,0 +170747833449,229,0 +170747833499,226,0 +170747833546,229,0 +170747833594,230,0 +170747833642,227,0 +170747833690,229,0 +170747833738,216,0 +170747833786,217,0 +170747833834,218,0 +170747833884,220,0 +170747833931,222,0 +170747833981,223,0 +170747834029,225,0 +170747834077,224,0 +170747834125,227,0 +170747834174,228,0 +170747834222,228,0 +170747834272,231,0 +170747834321,229,0 +170747834369,229,0 +170747834417,228,0 +170747834467,228,0 +170747834516,227,0 +170747834564,217,0 +170747834614,215,0 +170747834663,217,0 +170747834713,218,0 +170747834761,220,0 +170747834810,221,0 +170747834860,223,0 +170747834909,224,0 +170747834959,224,0 +170747835007,225,0 +170747835055,226,0 +170747835103,228,0 +170747835151,228,0 +170747835199,231,0 +170747835248,230,0 +170747835298,228,0 +170747835346,228,0 +170747835395,217,0 +170747835443,216,0 +170747835491,217,0 +170747835539,218,0 +170747835589,220,0 +170747835637,220,0 +170747835685,222,0 +170747835734,222,0 +170747835784,224,0 +170747835833,227,0 +170747835881,226,0 +170747835931,228,0 +170747835979,229,0 +170747836028,228,0 +170747836078,229,0 +170747836128,229,0 +170747836177,218,0 +170747836225,216,0 +170747836275,216,0 +170747836323,217,0 +170747836370,219,0 +170747836418,220,0 +170747836468,220,0 +170747836517,221,0 +170747836567,222,0 +170747836615,224,0 +170747836664,225,0 +170747836714,227,0 +170747836762,230,0 +170747836812,230,0 +170747836861,230,0 +170747836911,228,0 +170747836959,229,0 +170747837008,218,0 +170747837056,218,0 +170747837106,219,0 +170747837155,221,0 +170747837205,222,0 +170747837254,222,0 +170747837304,224,0 +170747837352,226,0 +170747837400,224,0 +170747837449,228,0 +170747837499,227,0 +170747837548,228,0 +170747837596,228,0 +170747837644,229,0 +170747837692,229,0 +170747837742,227,0 +170747837791,229,0 +170747837839,219,0 +170747837887,218,0 +170747837935,219,0 +170747837983,220,0 +170747838032,221,0 +170747838080,223,0 +170747838130,224,0 +170747838180,224,0 +170747838229,225,0 +170747838277,227,0 +170747838327,229,0 +170747838376,231,0 +170747838424,230,0 +170747838472,229,0 +170747838520,229,0 +170747838570,229,0 +170747838619,228,0 +170747838667,219,0 +170747838715,219,0 +170747838763,221,0 +170747838811,222,0 +170747838859,223,0 +170747838908,227,0 +170747838956,226,0 +170747839004,225,0 +170747839052,224,0 +170747839100,230,0 +170747839148,228,0 +170747839198,226,0 +170747839247,230,0 +170747839295,231,0 +170747839343,230,0 +170747839391,228,0 +170747839439,227,0 +170747839487,221,0 +170747839536,221,0 +170747839586,224,0 +170747839634,223,0 +170747839683,224,0 +170747839731,226,0 +170747839779,227,0 +170747839827,228,0 +170747839875,229,0 +170747839924,230,0 +170747839974,229,0 +170747840022,229,0 +170747840070,228,0 +170747840118,229,0 +170747840166,229,0 +170747840214,227,0 +170747840262,227,0 +170747840311,219,0 +170747840359,221,0 +170747840407,222,0 +170747840455,224,0 +170747840504,224,0 +170747840554,225,0 +170747840604,227,0 +170747840652,227,0 +170747840701,229,0 +170747840749,229,0 +170747840798,229,0 +170747840846,229,0 +170747840894,229,0 +170747840944,228,0 +170747840993,228,0 +170747841041,229,0 +170747841089,228,0 +170747841137,218,0 +170747841185,218,0 +170747841233,220,0 +170747841281,220,0 +170747841329,221,0 +170747841377,222,0 +170747841425,223,0 +170747841474,224,0 +170747841522,225,0 +170747841570,230,0 +170747841618,228,0 +170747841668,229,0 +170747841715,228,0 +170747841763,226,0 +170747841811,228,0 +170747841861,229,0 +170747841910,228,0 +170747841958,215,0 +170747842008,216,0 +170747842056,218,0 +170747842105,219,0 +170747842155,222,0 +170747842205,222,0 +170747842254,222,0 +170747842302,224,0 +170747842350,219,0 +170747842399,226,0 +170747842447,226,0 +170747842495,227,0 +170747842543,228,0 +170747842591,228,0 +170747842639,228,0 +170747842688,227,0 +170747842736,226,0 +170747842784,216,0 +170747842833,216,0 +170747842881,216,0 +170747842929,216,0 +170747842979,217,0 +170747843026,220,0 +170747843074,221,0 +170747843122,221,0 +170747843170,223,0 +170747843220,225,0 +170747843268,225,0 +170747843316,233,0 +170747843365,226,0 +170747843413,227,0 +170747843463,226,0 +170747843511,228,0 +170747843559,226,0 +170747843607,216,0 +170747843656,215,0 +170747843706,217,0 +170747843755,217,0 +170747843805,218,0 +170747843853,219,0 +170747843901,219,0 +170747843949,228,0 +170747843998,221,0 +170747844046,225,0 +170747844094,228,0 +170747844144,227,0 +170747844193,228,0 +170747844241,227,0 +170747844291,227,0 +170747844340,227,0 +170747844388,228,0 +170747844438,216,0 +170747844486,217,0 +170747844535,218,0 +170747844583,220,0 +170747844633,220,0 +170747844681,223,0 +170747844729,223,0 +170747844777,222,0 +170747844825,223,0 +170747844874,225,0 +170747844924,226,0 +170747844973,227,0 +170747845021,227,0 +170747845069,227,0 +170747845119,231,0 +170747845168,228,0 +170747845216,223,0 +170747845266,221,0 +170747845315,222,0 +170747845365,224,0 +170747845413,224,0 +170747845462,224,0 +170747845510,227,0 +170747845560,227,0 +170747845609,227,0 +170747845659,227,0 +170747845708,228,0 +170747845756,227,0 +170747845806,229,0 +170747845856,228,0 +170747845905,228,0 +170747845955,227,0 +170747846004,229,0 +170747846052,224,0 +170747846100,223,0 +170747846150,225,0 +170747846199,225,0 +170747846249,225,0 +170747846298,231,0 +170747846346,227,0 +170747846396,229,0 +170747846445,229,0 +170747846495,229,0 +170747846543,228,0 +170747846591,228,0 +170747846639,230,0 +170747846687,227,0 +170747846734,229,0 +170747846782,227,0 +170747846830,227,0 +170747846878,220,0 +170747846926,221,0 +170747846976,222,0 +170747847024,225,0 +170747847073,223,0 +170747847121,225,0 +170747847169,226,0 +170747847217,227,0 +170747847265,226,0 +170747847315,228,0 +170747847364,227,0 +170747847414,230,0 +170747847462,228,0 +170747847510,229,0 +170747847559,228,0 +170747847607,227,0 +170747847657,227,0 +170747847706,218,0 +170747847754,219,0 +170747847802,220,0 +170747847850,221,0 +170747847898,221,0 +170747847946,223,0 +170747847994,223,0 +170747848043,224,0 +170747848091,226,0 +170747848139,228,0 +170747848189,228,0 +170747848237,230,0 +170747848286,230,0 +170747848334,230,0 +170747848382,233,0 +170747848430,229,0 +170747848480,227,0 +170747848529,218,0 +170747848577,219,0 +170747848625,220,0 +170747848675,222,0 +170747848723,222,0 +170747848772,226,0 +170747848820,225,0 +170747848870,226,0 +170747848918,227,0 +170747848966,224,0 +170747849015,229,0 +170747849065,225,0 +170747849113,229,0 +170747849161,230,0 +170747849208,229,0 +170747849256,228,0 +170747849304,229,0 +170747849354,220,0 +170747849403,222,0 +170747849451,222,0 +170747849499,224,0 +170747849547,224,0 +170747849595,227,0 +170747849643,227,0 +170747849690,226,0 +170747849738,229,0 +170747849786,227,0 +170747849834,230,0 +170747849882,231,0 +170747849931,231,0 +170747849979,229,0 +170747850027,228,0 +170747850075,227,0 +170747850124,227,0 +170747850172,220,0 +170747850220,220,0 +170747850268,222,0 +170747850318,222,0 +170747850365,225,0 +170747850413,224,0 +170747850461,225,0 +170747850509,226,0 +170747850557,227,0 +170747850605,230,0 +170747850653,230,0 +170747850701,228,0 +170747850750,229,0 +170747850800,229,0 +170747850848,229,0 +170747850896,226,0 +170747850945,227,0 +170747850995,218,0 +170747851044,219,0 +170747851092,222,0 +170747851140,222,0 +170747851190,222,0 +170747851239,223,0 +170747851289,226,0 +170747851337,228,0 +170747851386,230,0 +170747851436,230,0 +170747851484,229,0 +170747851533,229,0 +170747851581,231,0 +170747851629,229,0 +170747851679,229,0 +170747851728,228,0 +170747851776,226,0 +170747851824,218,0 +170747851874,220,0 +170747851924,221,0 +170747851973,223,0 +170747852021,224,0 +170747852071,224,0 +170747852119,225,0 +170747852166,228,0 +170747852216,229,0 +170747852266,229,0 +170747852313,230,0 +170747852363,230,0 +170747852413,228,0 +170747852462,232,0 +170747852510,229,0 +170747852558,228,0 +170747852606,219,0 +170747852654,217,0 +170747852702,218,0 +170747852750,220,0 +170747852799,221,0 +170747852849,223,0 +170747852897,222,0 +170747852945,224,0 +170747852994,226,0 +170747853044,228,0 +170747853093,230,0 +170747853143,229,0 +170747853191,229,0 +170747853239,230,0 +170747853288,231,0 +170747853336,228,0 +170747853384,231,0 +170747853434,217,0 +170747853482,216,0 +170747853531,217,0 +170747853581,218,0 +170747853631,219,0 +170747853679,220,0 +170747853728,223,0 +170747853776,223,0 +170747853824,225,0 +170747853873,226,0 +170747853923,226,0 +170747853971,228,0 +170747854020,229,0 +170747854070,229,0 +170747854118,228,0 +170747854166,229,0 +170747854214,228,0 +170747854262,218,0 +170747854311,216,0 +170747854359,215,0 +170747854407,218,0 +170747854457,219,0 +170747854506,221,0 +170747854556,221,0 +170747854605,223,0 +170747854653,226,0 +170747854703,226,0 +170747854752,226,0 +170747854800,230,0 +170747854848,229,0 +170747854898,229,0 +170747854947,228,0 +170747854995,228,0 +170747855045,227,0 +170747855093,218,0 +170747855142,216,0 +170747855192,217,0 +170747855240,218,0 +170747855288,220,0 +170747855337,221,0 +170747855387,222,0 +170747855435,223,0 +170747855484,225,0 +170747855532,225,0 +170747855580,229,0 +170747855628,226,0 +170747855676,229,0 +170747855726,229,0 +170747855775,230,0 +170747855825,229,0 +170747855873,228,0 +170747855921,217,0 +170747855969,217,0 +170747856018,217,0 +170747856068,219,0 +170747856116,216,0 +170747856164,221,0 +170747856212,223,0 +170747856260,225,0 +170747856308,224,0 +170747856357,223,0 +170747856405,227,0 +170747856455,228,0 +170747856504,228,0 +170747856552,228,0 +170747856600,228,0 +170747856650,228,0 +170747856698,227,0 +170747856747,217,0 +170747856795,216,0 +170747856845,218,0 +170747856894,220,0 +170747856942,221,0 +170747856990,224,0 +170747857038,223,0 +170747857088,224,0 +170747857136,225,0 +170747857184,226,0 +170747857233,227,0 +170747857283,227,0 +170747857331,228,0 +170747857379,229,0 +170747857428,230,0 +170747857476,227,0 +170747857524,226,0 +170747857573,217,0 +170747857623,216,0 +170747857671,218,0 +170747857719,219,0 +170747857768,221,0 +170747857818,221,0 +170747857866,221,0 +170747857914,223,0 +170747857963,224,0 +170747858013,222,0 +170747858063,227,0 +170747858112,226,0 +170747858162,227,0 +170747858211,227,0 +170747858261,225,0 +170747858309,228,0 +170747858357,226,0 +170747858404,216,0 +170747858454,216,0 +170747858504,218,0 +170747858551,218,0 +170747858599,220,0 +170747858647,220,0 +170747858695,221,0 +170747858745,223,0 +170747858793,225,0 +170747858841,225,0 +170747858889,229,0 +170747858937,228,0 +170747858985,229,0 +170747859034,230,0 +170747859084,228,0 +170747859133,229,0 +170747859183,224,0 +170747859232,216,0 +170747859280,216,0 +170747859330,217,0 +170747859378,219,0 +170747859427,221,0 +170747859477,221,0 +170747859526,221,0 +170747859574,223,0 +170747859624,224,0 +170747859673,225,0 +170747859721,226,0 +170747859769,226,0 +170747859817,227,0 +170747859865,227,0 +170747859913,228,0 +170747859961,226,0 +170747860010,225,0 +170747860058,216,0 +170747860106,217,0 +170747860154,215,0 +170747860202,220,0 +170747860249,222,0 +170747860299,222,0 +170747860347,222,0 +170747860395,223,0 +170747860443,227,0 +170747860491,225,0 +170747860540,226,0 +170747860588,227,0 +170747860636,229,0 +170747860684,228,0 +170747860732,227,0 +170747860780,228,0 +170747860829,226,0 +170747860877,221,0 +170747860925,221,0 +170747860973,222,0 +170747861021,224,0 +170747861068,225,0 +170747861116,225,0 +170747861164,226,0 +170747861214,228,0 +170747861262,228,0 +170747861309,228,0 +170747861359,229,0 +170747861408,229,0 +170747861458,228,0 +170747861506,230,0 +170747861554,228,0 +170747861602,228,0 +170747861651,224,0 +170747861699,221,0 +170747861747,222,0 +170747861795,223,0 +170747861844,225,0 +170747861892,227,0 +170747861940,227,0 +170747861989,227,0 +170747862037,228,0 +170747862085,228,0 +170747862135,229,0 +170747862183,228,0 +170747862231,230,0 +170747862280,228,0 +170747862330,230,0 +170747862379,228,0 +170747862427,227,0 +170747862475,227,0 +170747862523,220,0 +170747862573,221,0 +170747862621,222,0 +170747862670,224,0 +170747862718,225,0 +170747862767,224,0 +170747862815,226,0 +170747862865,227,0 +170747862915,227,0 +170747862962,228,0 +170747863010,228,0 +170747863060,229,0 +170747863110,231,0 +170747863157,227,0 +170747863207,229,0 +170747863257,228,0 +170747863306,218,0 +170747863356,219,0 +170747863403,221,0 +170747863451,224,0 +170747863499,222,0 +170747863547,223,0 +170747863595,225,0 +170747863643,225,0 +170747863693,224,0 +170747863741,228,0 +170747863790,229,0 +170747863840,229,0 +170747863889,229,0 +170747863937,229,0 +170747863985,228,0 +170747864033,228,0 +170747864081,227,0 +170747864129,218,0 +170747864176,219,0 +170747864224,221,0 +170747864274,223,0 +170747864324,223,0 +170747864372,223,0 +170747864419,224,0 +170747864467,225,0 +170747864515,228,0 +170747864565,227,0 +170747864613,228,0 +170747864662,229,0 +170747864710,227,0 +170747864760,229,0 +170747864809,228,0 +170747864859,227,0 +170747864908,229,0 +170747864958,218,0 +170747865008,218,0 +170747865056,220,0 +170747865105,221,0 +170747865155,223,0 +170747865204,223,0 +170747865254,225,0 +170747865303,229,0 +170747865353,227,0 +170747865401,226,0 +170747865449,227,0 +170747865497,231,0 +170747865545,230,0 +170747865592,227,0 +170747865640,228,0 +170747865688,228,0 +170747865736,230,0 +170747865786,218,0 +170747865835,218,0 +170747865883,220,0 +170747865932,223,0 +170747865980,223,0 +170747866028,225,0 +170747866076,226,0 +170747866126,225,0 +170747866175,227,0 +170747866223,230,0 +170747866271,229,0 +170747866321,227,0 +170747866370,229,0 +170747866418,230,0 +170747866468,229,0 +170747866515,229,0 +170747866565,228,0 +170747866613,218,0 +170747866662,219,0 +170747866710,220,0 +170747866758,222,0 +170747866806,223,0 +170747866854,224,0 +170747866902,225,0 +170747866951,224,0 +170747867001,227,0 +170747867050,227,0 +170747867100,231,0 +170747867149,225,0 +170747867197,232,0 +170747867247,229,0 +170747867295,228,0 +170747867344,228,0 +170747867392,227,0 +170747867440,217,0 +170747867488,218,0 +170747867536,220,0 +170747867584,221,0 +170747867632,222,0 +170747867680,223,0 +170747867729,224,0 +170747867777,227,0 +170747867825,226,0 +170747867873,226,0 +170747867921,233,0 +170747867970,231,0 +170747868018,234,0 +170747868068,229,0 +170747868117,230,0 +170747868165,230,0 +170747868215,228,0 +170747868264,218,0 +170747868312,218,0 +170747868361,220,0 +170747868409,225,0 +170747868457,222,0 +170747868505,224,0 +170747868553,223,0 +170747868602,228,0 +170747868652,226,0 +170747868700,231,0 +170747868748,228,0 +170747868796,231,0 +170747868844,228,0 +170747868891,231,0 +170747868939,228,0 +170747868987,229,0 +170747869037,228,0 +170747869084,217,0 +170747869132,217,0 +170747869180,220,0 +170747869228,221,0 +170747869276,223,0 +170747869324,223,0 +170747869373,224,0 +170747869421,226,0 +170747869469,227,0 +170747869519,227,0 +170747869567,229,0 +170747869614,226,0 +170747869664,231,0 +170747869712,230,0 +170747869760,228,0 +170747869809,229,0 +170747869857,227,0 +170747869905,216,0 +170747869953,216,0 +170747870000,216,0 +170747870048,220,0 +170747870098,220,0 +170747870146,224,0 +170747870195,223,0 +170747870243,225,0 +170747870291,219,0 +170747870339,227,0 +170747870388,229,0 +170747870436,227,0 +170747870484,229,0 +170747870532,229,0 +170747870580,230,0 +170747870629,228,0 +170747870677,227,0 +170747870725,216,0 +170747870775,216,0 +170747870823,218,0 +170747870872,218,0 +170747870922,221,0 +170747870970,222,0 +170747871019,223,0 +170747871069,225,0 +170747871117,226,0 +170747871166,228,0 +170747871214,227,0 +170747871262,228,0 +170747871310,228,0 +170747871358,227,0 +170747871408,228,0 +170747871456,231,0 +170747871505,227,0 +170747871553,216,0 +170747871603,218,0 +170747871652,219,0 +170747871702,220,0 +170747871750,222,0 +170747871799,222,0 +170747871849,222,0 +170747871898,227,0 +170747871946,226,0 +170747871994,226,0 +170747872042,229,0 +170747872090,228,0 +170747872138,230,0 +170747872188,229,0 +170747872236,228,0 +170747872284,229,0 +170747872333,227,0 +170747872381,216,0 +170747872431,218,0 +170747872479,218,0 +170747872527,219,0 +170747872576,221,0 +170747872626,223,0 +170747872675,222,0 +170747872725,226,0 +170747872773,226,0 +170747872821,225,0 +170747872869,228,0 +170747872917,230,0 +170747872966,228,0 +170747873014,228,0 +170747873062,230,0 +170747873111,227,0 +170747873159,227,0 +170747873209,216,0 +170747873257,216,0 +170747873305,217,0 +170747873354,218,0 +170747873404,219,0 +170747873454,221,0 +170747873503,221,0 +170747873551,222,0 +170747873599,221,0 +170747873647,226,0 +170747873695,228,0 +170747873743,227,0 +170747873792,228,0 +170747873842,230,0 +170747873890,229,0 +170747873938,227,0 +170747873986,219,0 +170747874034,216,0 +170747874082,217,0 +170747874129,216,0 +170747874179,217,0 +170747874227,217,0 +170747874276,219,0 +170747874324,219,0 +170747874372,221,0 +170747874422,221,0 +170747874471,222,0 +170747874519,223,0 +170747874569,224,0 +170747874618,224,0 +170747874666,225,0 +170747874714,226,0 +170747874762,227,0 +170747874812,225,0 +170747874860,217,0 +170747874908,218,0 +170747874957,218,0 +170747875005,219,0 +170747875053,221,0 +170747875102,222,0 +170747875150,223,0 +170747875200,224,0 +170747875249,226,0 +170747875299,227,0 +170747875347,226,0 +170747875397,228,0 +170747875446,229,0 +170747875496,231,0 +170747875543,228,0 +170747875593,227,0 +170747875641,218,0 +170747875691,220,0 +170747875739,222,0 +170747875788,223,0 +170747875836,225,0 +170747875884,225,0 +170747875934,225,0 +170747875982,226,0 +170747876029,227,0 +170747876077,227,0 +170747876127,227,0 +170747876177,228,0 +170747876226,228,0 +170747876274,228,0 +170747876322,225,0 +170747876370,228,0 +170747876418,228,0 +170747876466,226,0 +170747876515,226,0 +170747876563,228,0 +170747876611,228,0 +170747876659,228,0 +170747876707,227,0 +170747876755,229,0 +170747876803,229,0 +170747876853,228,0 +170747876900,229,0 +170747876948,229,0 +170747876998,228,0 +170747877046,227,0 +170747877096,228,0 +170747877143,228,0 +170747877193,229,0 +170747877241,227,0 +170747877289,225,0 +170747877337,229,0 +170747877386,225,0 +170747877434,226,0 +170747877482,228,0 +170747877532,229,0 +170747877581,229,0 +170747877631,230,0 +170747877679,229,0 +170747877727,228,0 +170747877776,230,0 +170747877826,229,0 +170747877875,231,0 +170747877925,229,0 +170747877973,228,0 +170747878022,228,0 +170747878072,228,0 +170747878121,220,0 +170747878169,219,0 +170747878217,222,0 +170747878265,221,0 +170747878315,223,0 +170747878364,225,0 +170747878412,225,0 +170747878460,227,0 +170747878510,228,0 +170747878558,228,0 +170747878606,232,0 +170747878654,227,0 +170747878701,229,0 +170747878751,230,0 +170747878799,229,0 +170747878847,228,0 +170747878895,227,0 +170747878943,217,0 +170747878991,217,0 +170747879039,218,0 +170747879087,220,0 +170747879134,222,0 +170747879182,223,0 +170747879232,223,0 +170747879280,225,0 +170747879328,226,0 +170747879376,229,0 +170747879424,227,0 +170747879472,226,0 +170747879520,227,0 +170747879569,230,0 +170747879617,227,0 +170747879665,228,0 +170747879713,228,0 +170747879761,217,0 +170747879809,216,0 +170747879858,217,0 +170747879906,219,0 +170747879956,219,0 +170747880005,221,0 +170747880053,222,0 +170747880101,223,0 +170747880149,224,0 +170747880199,225,0 +170747880248,226,0 +170747880296,227,0 +170747880344,227,0 +170747880394,227,0 +170747880443,227,0 +170747880491,228,0 +170747880539,227,0 +170747880589,216,0 +170747880639,216,0 +170747880688,218,0 +170747880736,219,0 +170747880786,220,0 +170747880835,222,0 +170747880885,222,0 +170747880934,224,0 +170747880982,225,0 +170747881030,226,0 +170747881080,227,0 +170747881127,231,0 +170747881177,229,0 +170747881227,232,0 +170747881276,227,0 +170747881326,227,0 +170747881375,217,0 +170747881425,216,0 +170747881474,216,0 +170747881524,218,0 +170747881573,219,0 +170747881621,222,0 +170747881669,221,0 +170747881719,223,0 +170747881767,223,0 +170747881816,225,0 +170747881866,228,0 +170747881915,229,0 +170747881963,230,0 +170747882013,229,0 +170747882061,230,0 +170747882109,228,0 +170747882157,228,0 +170747882205,216,0 +170747882253,216,0 +170747882302,216,0 +170747882352,217,0 +170747882400,219,0 +170747882449,222,0 +170747882497,221,0 +170747882547,223,0 +170747882595,224,0 +170747882644,225,0 +170747882694,229,0 +170747882742,227,0 +170747882790,227,0 +170747882838,229,0 +170747882886,229,0 +170747882935,228,0 +170747882985,227,0 +170747883033,216,0 +170747883082,216,0 +170747883132,219,0 +170747883181,218,0 +170747883231,220,0 +170747883279,220,0 +170747883329,221,0 +170747883376,223,0 +170747883424,223,0 +170747883474,224,0 +170747883522,225,0 +170747883570,226,0 +170747883619,228,0 +170747883667,228,0 +170747883715,227,0 +170747883763,228,0 +170747883811,228,0 +170747883859,216,0 +170747883909,217,0 +170747883958,220,0 +170747884006,219,0 +170747884056,223,0 +170747884105,223,0 +170747884155,223,0 +170747884203,225,0 +170747884251,227,0 +170747884299,228,0 +170747884348,227,0 +170747884396,229,0 +170747884444,229,0 +170747884492,231,0 +170747884540,226,0 +170747884590,227,0 +170747884639,229,0 +170747884689,216,0 +170747884738,216,0 +170747884788,218,0 +170747884837,220,0 +170747884885,220,0 +170747884935,221,0 +170747884983,222,0 +170747885032,226,0 +170747885080,226,0 +170747885130,228,0 +170747885180,229,0 +170747885229,228,0 +170747885277,227,0 +170747885325,229,0 +170747885373,229,0 +170747885421,229,0 +170747885470,218,0 +170747885518,215,0 +170747885568,216,0 +170747885617,218,0 +170747885666,220,0 +170747885714,221,0 +170747885764,221,0 +170747885813,224,0 +170747885863,223,0 +170747885911,225,0 +170747885959,226,0 +170747886008,228,0 +170747886056,230,0 +170747886104,229,0 +170747886153,228,0 +170747886203,227,0 +170747886251,228,0 +170747886300,217,0 +170747886350,217,0 +170747886399,218,0 +170747886447,219,0 +170747886495,220,0 +170747886543,220,0 +170747886591,222,0 +170747886639,223,0 +170747886689,223,0 +170747886738,225,0 +170747886788,225,0 +170747886836,226,0 +170747886885,228,0 +170747886933,229,0 +170747886981,228,0 +170747887029,228,0 +170747887079,231,0 +170747887127,217,0 +170747887176,218,0 +170747887226,220,0 +170747887274,222,0 +170747887322,222,0 +170747887370,223,0 +170747887418,227,0 +170747887467,226,0 +170747887515,227,0 +170747887565,227,0 +170747887613,228,0 +170747887661,231,0 +170747887709,228,0 +170747887757,228,0 +170747887805,227,0 +170747887853,228,0 +170747887900,226,0 +170747887950,217,0 +170747887998,218,0 +170747888046,219,0 +170747888096,220,0 +170747888145,224,0 +170747888193,224,0 +170747888241,224,0 +170747888289,225,0 +170747888337,227,0 +170747888385,227,0 +170747888434,221,0 +170747888484,228,0 +170747888531,229,0 +170747888581,229,0 +170747888629,227,0 +170747888677,227,0 +170747888725,219,0 +170747888773,218,0 +170747888820,220,0 +170747888870,222,0 +170747888918,222,0 +170747888967,224,0 +170747889015,225,0 +170747889065,225,0 +170747889115,228,0 +170747889164,228,0 +170747889214,230,0 +170747889263,230,0 +170747889313,228,0 +170747889362,227,0 +170747889412,229,0 +170747889461,228,0 +170747889511,228,0 +170747889560,217,0 +170747889610,220,0 +170747889658,220,0 +170747889706,220,0 +170747889754,225,0 +170747889803,227,0 +170747889851,225,0 +170747889901,227,0 +170747889949,224,0 +170747889998,226,0 +170747890048,224,0 +170747890098,229,0 +170747890147,229,0 +170747890195,228,0 +170747890243,229,0 +170747890293,227,0 +170747890342,226,0 +170747890392,221,0 +170747890440,221,0 +170747890488,222,0 +170747890536,224,0 +170747890583,224,0 +170747890633,226,0 +170747890681,226,0 +170747890729,226,0 +170747890778,227,0 +170747890826,227,0 +170747890874,227,0 +170747890922,228,0 +170747890972,229,0 +170747891020,227,0 +170747891069,227,0 +170747891119,228,0 +170747891169,228,0 +170747891217,225,0 +170747891266,224,0 +170747891316,226,0 +170747891365,227,0 +170747891415,227,0 +170747891464,227,0 +170747891514,228,0 +170747891562,228,0 +170747891610,228,0 +170747891658,228,0 +170747891706,228,0 +170747891755,228,0 +170747891803,229,0 +170747891853,229,0 +170747891901,228,0 +170747891949,228,0 +170747891996,224,0 +170747892045,224,0 +170747892092,225,0 +170747892142,226,0 +170747892190,228,0 +170747892239,227,0 +170747892289,229,0 +170747892337,230,0 +170747892385,229,0 +170747892434,230,0 +170747892484,231,0 +170747892533,229,0 +170747892583,228,0 +170747892633,228,0 +170747892681,229,0 +170747892730,228,0 +170747892778,228,0 +170747892826,218,0 +170747892876,218,0 +170747892925,219,0 +170747892975,221,0 +170747893024,222,0 +170747893072,223,0 +170747893122,224,0 +170747893170,225,0 +170747893219,227,0 +170747893269,227,0 +170747893317,230,0 +170747893366,229,0 +170747893416,229,0 +170747893464,230,0 +170747893513,229,0 +170747893563,229,0 +170747893610,229,0 +170747893660,217,0 +170747893710,217,0 +170747893759,218,0 +170747893809,218,0 +170747893858,220,0 +170747893906,221,0 +170747893956,221,0 +170747894004,223,0 +170747894053,223,0 +170747894101,226,0 +170747894151,226,0 +170747894198,228,0 +170747894246,228,0 +170747894296,228,0 +170747894344,228,0 +170747894392,228,0 +170747894439,227,0 +170747894489,217,0 +170747894537,217,0 +170747894585,218,0 +170747894635,221,0 +170747894684,222,0 +170747894732,222,0 +170747894780,224,0 +170747894828,225,0 +170747894876,225,0 +170747894924,227,0 +170747894972,229,0 +170747895019,229,0 +170747895067,229,0 +170747895115,230,0 +170747895165,228,0 +170747895214,229,0 +170747895262,227,0 +170747895312,216,0 +170747895361,216,0 +170747895411,218,0 +170747895459,219,0 +170747895507,221,0 +170747895556,221,0 +170747895604,222,0 +170747895652,222,0 +170747895700,226,0 +170747895750,227,0 +170747895799,227,0 +170747895849,233,0 +170747895897,227,0 +170747895946,228,0 +170747895996,230,0 +170747896045,228,0 +170747896093,228,0 +170747896141,216,0 +170747896189,216,0 +170747896239,216,0 +170747896288,218,0 +170747896338,219,0 +170747896386,222,0 +170747896434,221,0 +170747896481,223,0 +170747896531,225,0 +170747896579,226,0 +170747896627,228,0 +170747896676,229,0 +170747896726,231,0 +170747896776,228,0 +170747896824,229,0 +170747896871,229,0 +170747896919,218,0 +170747896969,216,0 +170747897018,216,0 +170747897066,217,0 +170747897114,219,0 +170747897162,219,0 +170747897210,219,0 +170747897258,222,0 +170747897308,223,0 +170747897356,224,0 +170747897404,224,0 +170747897452,227,0 +170747897501,226,0 +170747897550,226,0 +170747897600,227,0 +170747897650,228,0 +170747897699,227,0 +170747897747,218,0 +170747897797,216,0 +170747897846,218,0 +170747897894,219,0 +170747897942,216,0 +170747897991,220,0 +170747898039,222,0 +170747898087,224,0 +170747898135,224,0 +170747898183,225,0 +170747898233,230,0 +170747898282,227,0 +170747898332,228,0 +170747898381,227,0 +170747898429,228,0 +170747898479,228,0 +170747898528,228,0 +170747898578,217,0 +170747898628,216,0 +170747898676,216,0 +170747898725,217,0 +170747898774,220,0 +170747898822,220,0 +170747898870,222,0 +170747898920,224,0 +170747898969,223,0 +170747899017,224,0 +170747899067,227,0 +170747899117,227,0 +170747899164,227,0 +170747899212,229,0 +170747899262,227,0 +170747899311,227,0 +170747899361,227,0 +170747899410,216,0 +170747899460,216,0 +170747899510,216,0 +170747899559,216,0 +170747899607,218,0 +170747899655,220,0 +170747899705,220,0 +170747899754,223,0 +170747899804,222,0 +170747899853,223,0 +170747899901,223,0 +170747899951,224,0 +170747900000,225,0 +170747900048,225,0 +170747900098,228,0 +170747900147,231,0 +170747900197,231,0 +170747900245,232,0 +170747900294,230,0 +170747900344,231,0 +170747900392,231,0 +170747900440,230,0 +170747900488,228,0 +170747900537,228,0 +170747900587,227,0 +170747900635,218,0 +170747900684,219,0 +170747900732,221,0 +170747900782,221,0 +170747900831,222,0 +170747900881,224,0 +170747900930,225,0 +170747900978,225,0 +170747901028,226,0 +170747901077,228,0 +170747901127,226,0 +170747901175,222,0 +170747901223,230,0 +170747901271,231,0 +170747901319,229,0 +170747901368,228,0 +170747901418,218,0 +170747901466,216,0 +170747901514,219,0 +170747901562,219,0 +170747901611,222,0 +170747901661,222,0 +170747901710,223,0 +170747901760,226,0 +170747901809,225,0 +170747901859,225,0 +170747901907,226,0 +170747901955,229,0 +170747902004,228,0 +170747902054,230,0 +170747902103,229,0 +170747902151,228,0 +170747902199,229,0 +170747902249,218,0 +170747902298,217,0 +170747902348,218,0 +170747902396,219,0 +170747902444,221,0 +170747902493,222,0 +170747902541,222,0 +170747902591,224,0 +170747902640,226,0 +170747902690,227,0 +170747902738,228,0 +170747902786,229,0 +170747902835,228,0 +170747902885,230,0 +170747902933,227,0 +170747902981,227,0 +170747903029,228,0 +170747903078,217,0 +170747903126,217,0 +170747903176,218,0 +170747903224,220,0 +170747903271,221,0 +170747903319,222,0 +170747903367,222,0 +170747903415,224,0 +170747903463,226,0 +170747903512,226,0 +170747903562,227,0 +170747903610,227,0 +170747903658,229,0 +170747903706,229,0 +170747903755,228,0 +170747903803,229,0 +170747903853,227,0 +170747903901,217,0 +170747903949,217,0 +170747903997,218,0 +170747904045,219,0 +170747904094,222,0 +170747904142,222,0 +170747904192,223,0 +170747904241,223,0 +170747904291,224,0 +170747904339,226,0 +170747904388,229,0 +170747904436,226,0 +170747904484,227,0 +170747904532,228,0 +170747904581,228,0 +170747904630,227,0 +170747904679,226,0 +170747904729,215,0 +170747904777,217,0 +170747904825,218,0 +170747904873,219,0 +170747904922,220,0 +170747904972,219,0 +170747905020,222,0 +170747905068,226,0 +170747905116,223,0 +170747905165,224,0 +170747905215,223,0 +170747905263,227,0 +170747905312,230,0 +170747905362,227,0 +170747905411,229,0 +170747905461,227,0 +170747905509,225,0 +170747905558,217,0 +170747905606,219,0 +170747905656,220,0 +170747905705,220,0 +170747905755,221,0 +170747905803,222,0 +170747905852,223,0 +170747905900,225,0 +170747905948,226,0 +170747905996,226,0 +170747906044,227,0 +170747906093,228,0 +170747906143,227,0 +170747906191,227,0 +170747906239,228,0 +170747906287,228,0 +170747906335,222,0 +170747906382,223,0 +170747906430,225,0 +170747906478,225,0 +170747906526,227,0 +170747906574,226,0 +170747906624,228,0 +170747906672,229,0 +170747906721,228,0 +170747906771,228,0 +170747906820,228,0 +170747906868,229,0 +170747906916,229,0 +170747906964,228,0 +170747907012,228,0 +170747907062,229,0 +170747907110,228,0 +170747907158,226,0 +170747907207,227,0 +170747907255,227,0 +170747907303,227,0 +170747907351,227,0 +170747907401,228,0 +170747907450,228,0 +170747907500,231,0 +170747907549,230,0 +170747907599,230,0 +170747907647,230,0 +170747907695,231,0 +170747907744,230,0 +170747907792,228,0 +170747907840,229,0 +170747907890,227,0 +170747907938,227,0 +170747907986,222,0 +170747908034,221,0 +170747908082,220,0 +170747908130,223,0 +170747908178,225,0 +170747908227,224,0 +170747908277,228,0 +170747908326,227,0 +170747908376,228,0 +170747908425,229,0 +170747908475,229,0 +170747908524,229,0 +170747908572,229,0 +170747908622,231,0 +170747908670,229,0 +170747908718,228,0 +170747908767,227,0 +170747908815,217,0 +170747908863,217,0 +170747908911,218,0 +170747908959,220,0 +170747909007,220,0 +170747909055,222,0 +170747909103,222,0 +170747909151,223,0 +170747909199,226,0 +170747909247,225,0 +170747909295,228,0 +170747909345,228,0 +170747909394,229,0 +170747909442,230,0 +170747909492,228,0 +170747909539,228,0 +170747909587,228,0 +170747909635,216,0 +170747909683,216,0 +170747909731,216,0 +170747909779,218,0 +170747909827,220,0 +170747909876,222,0 +170747909926,220,0 +170747909975,223,0 +170747910023,224,0 +170747910072,227,0 +170747910120,228,0 +170747910168,227,0 +170747910218,228,0 +170747910266,230,0 +170747910315,229,0 +170747910363,224,0 +170747910411,228,0 +170747910459,216,0 +170747910508,216,0 +170747910558,217,0 +170747910606,217,0 +170747910655,218,0 +170747910703,220,0 +170747910753,220,0 +170747910801,222,0 +170747910849,224,0 +170747910898,224,0 +170747910948,225,0 +170747910996,228,0 +170747911045,228,0 +170747911093,227,0 +170747911143,228,0 +170747911192,227,0 +170747911242,227,0 +170747911291,217,0 +170747911341,218,0 +170747911390,220,0 +170747911438,221,0 +170747911488,224,0 +170747911536,226,0 +170747911584,225,0 +170747911633,224,0 +170747911681,225,0 +170747911729,227,0 +170747911779,228,0 +170747911827,229,0 +170747911875,229,0 +170747911924,230,0 +170747911972,228,0 +170747912020,229,0 +170747912070,219,0 +170747912119,218,0 +170747912169,221,0 +170747912219,222,0 +170747912268,223,0 +170747912318,223,0 +170747912366,224,0 +170747912415,225,0 +170747912463,226,0 +170747912513,229,0 +170747912562,228,0 +170747912610,230,0 +170747912658,229,0 +170747912706,231,0 +170747912754,230,0 +170747912802,228,0 +170747912850,228,0 +170747912900,220,0 +170747912949,219,0 +170747912999,221,0 +170747913047,222,0 +170747913095,223,0 +170747913143,224,0 +170747913191,224,0 +170747913240,227,0 +170747913288,219,0 +170747913336,227,0 +170747913386,230,0 +170747913435,231,0 +170747913485,231,0 +170747913533,229,0 +170747913582,228,0 +170747913630,228,0 +170747913680,227,0 +170747913729,218,0 +170747913779,219,0 +170747913827,221,0 +170747913876,222,0 +170747913926,223,0 +170747913974,224,0 +170747914023,224,0 +170747914073,225,0 +170747914122,226,0 +170747914172,226,0 +170747914221,230,0 +170747914271,229,0 +170747914319,229,0 +170747914367,229,0 +170747914416,230,0 +170747914466,229,0 +170747914514,227,0 +170747914562,218,0 +170747914611,221,0 +170747914659,219,0 +170747914709,221,0 +170747914758,224,0 +170747914806,223,0 +170747914855,224,0 +170747914903,226,0 +170747914951,228,0 +170747914999,229,0 +170747915047,228,0 +170747915095,230,0 +170747915145,229,0 +170747915193,230,0 +170747915241,228,0 +170747915289,228,0 +170747915336,228,0 +170747915386,216,0 +170747915436,218,0 +170747915485,219,0 +170747915533,222,0 +170747915581,225,0 +170747915629,225,0 +170747915677,225,0 +170747915726,225,0 +170747915776,229,0 +170747915824,229,0 +170747915872,229,0 +170747915922,228,0 +170747915971,228,0 +170747916021,228,0 +170747916070,227,0 +170747916118,224,0 +170747916166,218,0 +170747916216,217,0 +170747916265,218,0 +170747916315,220,0 +170747916364,221,0 +170747916412,223,0 +170747916462,223,0 +170747916511,225,0 +170747916561,223,0 +170747916609,225,0 +170747916658,228,0 +170747916708,230,0 +170747916756,228,0 +170747916805,231,0 +170747916853,230,0 +170747916901,229,0 +170747916951,228,0 +170747916999,217,0 +170747917047,216,0 +170747917095,218,0 +170747917143,219,0 +170747917192,221,0 +170747917240,222,0 +170747917290,224,0 +170747917338,223,0 +170747917386,224,0 +170747917434,227,0 +170747917483,228,0 +170747917531,228,0 +170747917581,230,0 +170747917629,230,0 +170747917678,229,0 +170747917726,230,0 +170747917776,228,0 +170747917824,217,0 +170747917873,217,0 +170747917921,217,0 +170747917971,219,0 +170747918020,220,0 +170747918070,221,0 +170747918120,224,0 +170747918169,223,0 +170747918217,224,0 +170747918265,225,0 +170747918315,226,0 +170747918363,227,0 +170747918410,231,0 +170747918460,229,0 +170747918508,230,0 +170747918558,229,0 +170747918607,228,0 +170747918657,217,0 +170747918706,216,0 +170747918756,218,0 +170747918804,220,0 +170747918852,221,0 +170747918901,220,0 +170747918951,223,0 +170747919000,222,0 +170747919048,222,0 +170747919098,225,0 +170747919145,226,0 +170747919193,226,0 +170747919241,226,0 +170747919291,226,0 +170747919339,229,0 +170747919388,227,0 +170747919436,226,0 +170747919486,215,0 +170747919535,218,0 +170747919585,219,0 +170747919634,218,0 +170747919682,218,0 +170747919732,220,0 +170747919780,224,0 +170747919829,222,0 +170747919877,226,0 +170747919925,225,0 +170747919973,226,0 +170747920021,227,0 +170747920071,228,0 +170747920120,227,0 +170747920170,228,0 +170747920219,228,0 +170747920269,227,0 +170747920318,215,0 +170747920368,217,0 +170747920416,218,0 +170747920465,220,0 +170747920513,221,0 +170747920563,221,0 +170747920611,222,0 +170747920660,223,0 +170747920708,224,0 +170747920756,226,0 +170747920806,227,0 +170747920855,227,0 +170747920905,226,0 +170747920953,228,0 +170747921001,228,0 +170747921049,227,0 +170747921098,219,0 +170747921146,219,0 +170747921196,220,0 +170747921245,222,0 +170747921295,223,0 +170747921343,226,0 +170747921391,224,0 +170747921439,225,0 +170747921488,226,0 +170747921538,228,0 +170747921586,227,0 +170747921634,228,0 +170747921683,229,0 +170747921733,228,0 +170747921782,229,0 +170747921830,228,0 +170747921878,227,0 +170747921926,219,0 +170747921976,219,0 +170747922024,220,0 +170747922072,221,0 +170747922121,222,0 +170747922171,224,0 +170747922220,226,0 +170747922270,225,0 +170747922318,226,0 +170747922366,229,0 +170747922415,228,0 +170747922465,228,0 +170747922515,228,0 +170747922562,228,0 +170747922612,227,0 +170747922660,226,0 +170747922709,226,0 +170747922759,218,0 +170747922809,219,0 +170747922858,221,0 +170747922908,220,0 +170747922957,224,0 +170747923007,223,0 +170747923055,225,0 +170747923103,224,0 +170747923152,226,0 +170747923200,226,0 +170747923250,228,0 +170747923299,228,0 +170747923349,228,0 +170747923397,229,0 +170747923445,229,0 +170747923493,228,0 +170747923542,227,0 +170747923592,217,0 +170747923641,219,0 +170747923689,220,0 +170747923737,222,0 +170747923787,223,0 +170747923836,223,0 +170747923886,223,0 +170747923935,224,0 +170747923985,225,0 +170747924033,229,0 +170747924081,230,0 +170747924129,226,0 +170747924178,231,0 +170747924226,229,0 +170747924276,227,0 +170747924324,228,0 +170747924373,218,0 +170747924421,218,0 +170747924469,219,0 +170747924519,220,0 +170747924568,221,0 +170747924616,224,0 +170747924664,223,0 +170747924714,224,0 +170747924762,226,0 +170747924811,228,0 +170747924859,227,0 +170747924909,228,0 +170747924957,233,0 +170747925005,228,0 +170747925054,231,0 +170747925102,229,0 +170747925150,227,0 +170747925198,219,0 +170747925246,218,0 +170747925296,220,0 +170747925345,225,0 +170747925393,223,0 +170747925441,227,0 +170747925489,224,0 +170747925537,227,0 +170747925586,226,0 +170747925634,228,0 +170747925682,228,0 +170747925730,228,0 +170747925780,229,0 +170747925829,229,0 +170747925879,229,0 +170747925927,228,0 +170747925975,228,0 +170747926023,220,0 +170747926071,220,0 +170747926119,221,0 +170747926167,224,0 +170747926216,223,0 +170747926266,225,0 +170747926315,226,0 +170747926363,227,0 +170747926411,228,0 +170747926459,228,0 +170747926509,228,0 +170747926557,230,0 +170747926606,229,0 +170747926656,229,0 +170747926705,229,0 +170747926753,229,0 +170747926801,228,0 +170747926851,221,0 +170747926901,222,0 +170747926950,224,0 +170747927000,224,0 +170747927049,226,0 +170747927099,228,0 +170747927148,228,0 +170747927196,228,0 +170747927246,227,0 +170747927295,237,0 +170747927343,234,0 +170747927391,229,0 +170747927441,230,0 +170747927490,231,0 +170747927538,226,0 +170747927586,228,0 +170747927635,220,0 +170747927683,222,0 +170747927731,222,0 +170747927779,225,0 +170747927829,224,0 +170747927877,225,0 +170747927926,227,0 +170747927976,229,0 +170747928025,228,0 +170747928073,228,0 +170747928121,229,0 +170747928169,228,0 +170747928219,229,0 +170747928268,228,0 +170747928318,228,0 +170747928366,227,0 +170747928414,228,0 +170747928461,223,0 +170747928509,219,0 +170747928559,220,0 +170747928609,221,0 +170747928658,223,0 +170747928706,225,0 +170747928754,224,0 +170747928802,225,0 +170747928850,225,0 +170747928899,232,0 +170747928949,229,0 +170747928997,228,0 +170747929045,229,0 +170747929094,229,0 +170747929142,228,0 +170747929192,228,0 +170747929240,227,0 +170747929290,218,0 +170747929339,216,0 +170747929389,217,0 +170747929438,220,0 +170747929486,220,0 +170747929534,220,0 +170747929582,223,0 +170747929631,222,0 +170747929679,226,0 +170747929727,225,0 +170747929775,229,0 +170747929825,230,0 +170747929872,234,0 +170747929920,231,0 +170747929970,233,0 +170747930018,231,0 +170747930065,229,0 +170747930115,217,0 +170747930164,217,0 +170747930214,217,0 +170747930264,219,0 +170747930313,221,0 +170747930361,222,0 +170747930411,223,0 +170747930460,223,0 +170747930508,224,0 +170747930556,225,0 +170747930606,222,0 +170747930654,227,0 +170747930702,228,0 +170747930750,226,0 +170747930798,230,0 +170747930845,229,0 +170747930893,227,0 +170747930943,216,0 +170747930991,218,0 +170747931040,218,0 +170747931088,219,0 +170747931136,220,0 +170747931186,222,0 +170747931234,221,0 +170747931282,225,0 +170747931330,225,0 +170747931378,226,0 +170747931426,227,0 +170747931475,232,0 +170747931523,230,0 +170747931571,229,0 +170747931621,233,0 +170747931669,228,0 +170747931717,227,0 +170747931766,216,0 +170747931816,216,0 +170747931865,217,0 +170747931915,218,0 +170747931963,219,0 +170747932012,219,0 +170747932060,222,0 +170747932108,224,0 +170747932158,224,0 +170747932206,227,0 +170747932254,226,0 +170747932303,231,0 +170747932351,230,0 +170747932401,228,0 +170747932450,228,0 +170747932498,228,0 +170747932548,219,0 +170747932596,216,0 +170747932645,216,0 +170747932695,215,0 +170747932744,217,0 +170747932794,220,0 +170747932843,223,0 +170747932891,222,0 +170747932939,224,0 +170747932989,226,0 +170747933037,226,0 +170747933086,230,0 +170747933134,228,0 +170747933182,229,0 +170747933232,227,0 +170747933281,228,0 +170747933331,227,0 +170747933379,218,0 +170747933427,216,0 +170747933475,214,0 +170747933523,217,0 +170747933572,218,0 +170747933622,220,0 +170747933671,221,0 +170747933721,221,0 +170747933769,226,0 +170747933818,225,0 +170747933868,225,0 +170747933916,227,0 +170747933965,228,0 +170747934015,227,0 +170747934064,228,0 +170747934114,230,0 +170747934163,228,0 +170747934211,217,0 +170747934259,216,0 +170747934309,217,0 +170747934358,218,0 +170747934406,220,0 +170747934454,221,0 +170747934502,220,0 +170747934550,223,0 +170747934598,223,0 +170747934646,225,0 +170747934695,226,0 +170747934743,226,0 +170747934791,227,0 +170747934841,229,0 +170747934888,228,0 +170747934936,228,0 +170747934984,228,0 +170747935032,217,0 +170747935080,216,0 +170747935128,216,0 +170747935176,218,0 +170747935224,218,0 +170747935272,217,0 +170747935321,222,0 +170747935369,217,0 +170747935417,222,0 +170747935465,222,0 +170747935513,223,0 +170747935561,224,0 +170747935610,225,0 +170747935658,227,0 +170747935708,226,0 +170747935756,227,0 +170747935805,226,0 +170747935854,219,0 +170747935902,221,0 +170747935950,222,0 +170747935998,222,0 +170747936046,224,0 +170747936096,225,0 +170747936143,226,0 +170747936191,227,0 +170747936239,226,0 +170747936289,227,0 +170747936338,227,0 +170747936386,228,0 +170747936434,228,0 +170747936484,228,0 +170747936532,228,0 +170747936580,227,0 +170747936628,228,0 +170747936676,223,0 +170747936724,223,0 +170747936772,225,0 +170747936820,228,0 +170747936869,226,0 +170747936919,225,0 +170747936967,228,0 +170747937015,228,0 +170747937062,229,0 +170747937112,228,0 +170747937161,229,0 +170747937211,229,0 +170747937259,229,0 +170747937307,228,0 +170747937356,235,0 +170747937406,229,0 +170747937454,221,0 +170747937501,224,0 +170747937549,226,0 +170747937599,226,0 +170747937648,226,0 +170747937696,226,0 +170747937744,227,0 +170747937794,229,0 +170747937842,231,0 +170747937891,230,0 +170747937941,229,0 +170747937990,232,0 +170747938038,230,0 +170747938086,230,0 +170747938134,228,0 +170747938184,229,0 +170747938232,227,0 +170747938281,221,0 +170747938329,220,0 +170747938379,221,0 +170747938427,222,0 +170747938476,224,0 +170747938524,224,0 +170747938572,226,0 +170747938622,225,0 +170747938670,227,0 +170747938719,227,0 +170747938767,231,0 +170747938815,228,0 +170747938863,230,0 +170747938912,229,0 +170747938960,229,0 +170747939010,228,0 +170747939058,228,0 +170747939107,219,0 +170747939155,217,0 +170747939205,219,0 +170747939254,222,0 +170747939304,221,0 +170747939354,223,0 +170747939403,227,0 +170747939453,225,0 +170747939501,226,0 +170747939550,228,0 +170747939599,229,0 +170747939647,229,0 +170747939697,229,0 +170747939747,230,0 +170747939796,229,0 +170747939844,228,0 +170747939892,228,0 +170747939940,217,0 +170747939990,218,0 +170747940038,219,0 +170747940086,221,0 +170747940135,222,0 +170747940183,223,0 +170747940231,223,0 +170747940281,226,0 +170747940328,226,0 +170747940376,227,0 +170747940424,229,0 +170747940474,228,0 +170747940522,229,0 +170747940571,230,0 +170747940621,229,0 +170747940670,230,0 +170747940720,226,0 +170747940770,217,0 +170747940818,218,0 +170747940867,219,0 +170747940917,220,0 +170747940965,222,0 +170747941014,221,0 +170747941064,222,0 +170747941112,224,0 +170747941160,227,0 +170747941208,227,0 +170747941256,226,0 +170747941304,228,0 +170747941351,229,0 +170747941401,228,0 +170747941450,227,0 +170747941498,228,0 +170747941546,227,0 +170747941594,217,0 +170747941644,219,0 +170747941693,220,0 +170747941741,222,0 +170747941789,222,0 +170747941837,225,0 +170747941885,225,0 +170747941933,226,0 +170747941981,230,0 +170747942029,227,0 +170747942077,231,0 +170747942124,229,0 +170747942172,231,0 +170747942220,228,0 +170747942268,229,0 +170747942316,228,0 +170747942364,227,0 +170747942413,217,0 +170747942463,219,0 +170747942511,219,0 +170747942559,223,0 +170747942607,223,0 +170747942655,224,0 +170747942702,224,0 +170747942750,226,0 +170747942800,228,0 +170747942848,227,0 +170747942896,229,0 +170747942945,230,0 +170747942994,233,0 +170747943042,229,0 +170747943090,229,0 +170747943140,228,0 +170747943188,224,0 +170747943235,216,0 +170747943283,216,0 +170747943333,218,0 +170747943382,220,0 +170747943430,220,0 +170747943478,221,0 +170747943526,225,0 +170747943574,223,0 +170747943622,226,0 +170747943671,229,0 +170747943719,228,0 +170747943767,228,0 +170747943817,227,0 +170747943865,227,0 +170747943913,228,0 +170747943961,227,0 +170747944009,224,0 +170747944058,216,0 +170747944107,216,0 +170747944157,216,0 +170747944205,217,0 +170747944253,219,0 +170747944302,218,0 +170747944350,221,0 +170747944400,223,0 +170747944449,223,0 +170747944497,224,0 +170747944545,224,0 +170747944593,226,0 +170747944641,227,0 +170747944688,229,0 +170747944736,229,0 +170747944786,228,0 +170747944834,218,0 +170747944882,216,0 +170747944931,218,0 +170747944979,217,0 +170747945027,219,0 +170747945075,220,0 +170747945123,221,0 +170747945171,222,0 +170747945219,222,0 +170747945266,224,0 +170747945314,226,0 +170747945362,227,0 +170747945412,229,0 +170747945461,228,0 +170747945510,228,0 +170747945558,227,0 +170747945606,229,0 +170747945654,218,0 +170747945702,217,0 +170747945750,219,0 +170747945799,223,0 +170747945847,220,0 +170747945897,224,0 +170747945946,224,0 +170747945994,224,0 +170747946042,226,0 +170747946090,229,0 +170747946139,226,0 +170747946187,230,0 +170747946235,232,0 +170747946283,231,0 +170747946331,230,0 +170747946379,230,0 +170747946427,228,0 +170747946475,219,0 +170747946524,220,0 +170747946572,221,0 +170747946620,224,0 +170747946668,225,0 +170747946716,226,0 +170747946764,225,0 +170747946812,225,0 +170747946860,228,0 +170747946907,228,0 +170747946955,230,0 +170747947003,229,0 +170747947051,229,0 +170747947099,232,0 +170747947148,229,0 +170747947196,229,0 +170747947244,227,0 +170747947292,219,0 +170747947342,218,0 +170747947391,220,0 +170747947439,220,0 +170747947487,223,0 +170747947536,226,0 +170747947584,225,0 +170747947632,227,0 +170747947680,226,0 +170747947728,230,0 +170747947777,230,0 +170747947825,228,0 +170747947875,229,0 +170747947923,229,0 +170747947971,229,0 +170747948019,231,0 +170747948068,228,0 +170747948116,218,0 +170747948164,217,0 +170747948213,219,0 +170747948261,220,0 +170747948309,222,0 +170747948357,223,0 +170747948405,226,0 +170747948452,223,0 +170747948500,225,0 +170747948548,227,0 +170747948598,228,0 +170747948646,228,0 +170747948693,229,0 +170747948743,229,0 +170747948791,228,0 +170747948840,229,0 +170747948888,228,0 +170747948937,217,0 +170747948986,217,0 +170747949036,219,0 +170747949085,219,0 +170747949133,222,0 +170747949181,222,0 +170747949229,222,0 +170747949277,225,0 +170747949325,226,0 +170747949372,227,0 +170747949422,228,0 +170747949470,227,0 +170747949518,227,0 +170747949566,228,0 +170747949615,235,0 +170747949663,230,0 +170747949712,229,0 +170747949760,219,0 +170747949808,217,0 +170747949858,219,0 +170747949907,220,0 +170747949957,221,0 +170747950005,221,0 +170747950053,223,0 +170747950101,224,0 +170747950150,225,0 +170747950200,227,0 +170747950248,227,0 +170747950296,230,0 +170747950344,228,0 +170747950392,225,0 +170747950441,232,0 +170747950489,228,0 +170747950537,227,0 +170747950587,220,0 +170747950636,220,0 +170747950684,221,0 +170747950732,223,0 +170747950780,224,0 +170747950830,224,0 +170747950877,225,0 +170747950925,227,0 +170747950973,226,0 +170747951021,227,0 +170747951069,227,0 +170747951117,227,0 +170747951165,227,0 +170747951213,228,0 +170747951262,229,0 +170747951310,229,0 +170747951358,227,0 +170747951407,223,0 +170747951457,225,0 +170747951505,224,0 +170747951553,225,0 +170747951601,226,0 +170747951649,227,0 +170747951696,228,0 +170747951744,227,0 +170747951792,229,0 +170747951840,228,0 +170747951888,228,0 +170747951936,228,0 +170747951985,229,0 +170747952033,228,0 +170747952083,228,0 +170747952132,228,0 +170747952182,227,0 +170747952230,224,0 +170747952279,226,0 +170747952329,226,0 +170747952379,226,0 +170747952428,228,0 +170747952476,227,0 +170747952526,228,0 +170747952573,226,0 +170747952621,233,0 +170747952669,228,0 +170747952717,230,0 +170747952766,233,0 +170747952816,229,0 +170747952864,229,0 +170747952912,227,0 +170747952961,227,0 +170747953009,227,0 +170747953057,221,0 +170747953105,222,0 +170747953154,222,0 +170747953202,223,0 +170747953250,227,0 +170747953299,225,0 +170747953347,224,0 +170747953397,227,0 +170747953445,227,0 +170747953493,229,0 +170747953541,230,0 +170747953588,229,0 +170747953636,231,0 +170747953686,229,0 +170747953734,229,0 +170747953783,229,0 +170747953831,227,0 +170747953879,217,0 +170747953927,218,0 +170747953976,220,0 +170747954024,220,0 +170747954072,223,0 +170747954120,222,0 +170747954168,224,0 +170747954216,225,0 +170747954264,226,0 +170747954312,227,0 +170747954360,229,0 +170747954408,230,0 +170747954456,229,0 +170747954505,229,0 +170747954553,229,0 +170747954601,229,0 +170747954650,226,0 +170747954698,216,0 +170747954748,216,0 +170747954796,218,0 +170747954843,218,0 +170747954893,221,0 +170747954941,221,0 +170747954990,224,0 +170747955038,223,0 +170747955088,224,0 +170747955136,227,0 +170747955183,226,0 +170747955231,228,0 +170747955279,229,0 +170747955327,225,0 +170747955377,228,0 +170747955426,229,0 +170747955474,226,0 +170747955522,216,0 +170747955570,216,0 +170747955618,217,0 +170747955667,218,0 +170747955717,219,0 +170747955765,221,0 +170747955814,221,0 +170747955864,224,0 +170747955912,223,0 +170747955960,226,0 +170747956009,225,0 +170747956059,227,0 +170747956107,228,0 +170747956155,228,0 +170747956204,223,0 +170747956254,229,0 +170747956302,219,0 +170747956350,216,0 +170747956399,216,0 +170747956447,217,0 +170747956497,218,0 +170747956546,220,0 +170747956594,221,0 +170747956642,222,0 +170747956692,224,0 +170747956741,227,0 +170747956789,226,0 +170747956837,226,0 +170747956885,227,0 +170747956935,229,0 +170747956984,229,0 +170747957033,230,0 +170747957081,228,0 +170747957129,218,0 +170747957178,216,0 +170747957226,217,0 +170747957276,217,0 +170747957324,219,0 +170747957372,220,0 +170747957419,222,0 +170747957467,224,0 +170747957517,226,0 +170747957566,226,0 +170747957614,227,0 +170747957664,229,0 +170747957712,227,0 +170747957760,229,0 +170747957807,231,0 +170747957855,230,0 +170747957903,228,0 +170747957951,218,0 +170747958001,217,0 +170747958049,218,0 +170747958097,220,0 +170747958145,220,0 +170747958193,221,0 +170747958241,223,0 +170747958290,224,0 +170747958340,225,0 +170747958389,222,0 +170747958439,228,0 +170747958488,230,0 +170747958538,228,0 +170747958587,230,0 +170747958635,229,0 +170747958683,231,0 +170747958731,229,0 +170747958779,217,0 +170747958827,217,0 +170747958875,218,0 +170747958925,219,0 +170747958974,220,0 +170747959024,223,0 +170747959072,221,0 +170747959121,225,0 +170747959171,224,0 +170747959220,227,0 +170747959270,228,0 +170747959319,231,0 +170747959369,228,0 +170747959417,228,0 +170747959465,229,0 +170747959513,229,0 +170747959561,227,0 +170747959610,217,0 +170747959660,217,0 +170747959707,218,0 +170747959755,220,0 +170747959805,221,0 +170747959853,222,0 +170747959901,222,0 +170747959950,223,0 +170747959998,224,0 +170747960048,225,0 +170747960096,229,0 +170747960145,229,0 +170747960195,227,0 +170747960244,228,0 +170747960292,228,0 +170747960340,228,0 +170747960388,228,0 +170747960438,217,0 +170747960487,217,0 +170747960537,219,0 +170747960585,218,0 +170747960633,222,0 +170747960682,222,0 +170747960732,224,0 +170747960780,226,0 +170747960828,227,0 +170747960876,228,0 +170747960923,228,0 +170747960971,230,0 +170747961019,229,0 +170747961067,229,0 +170747961117,229,0 +170747961165,227,0 +170747961214,226,0 +170747961264,218,0 +170747961313,218,0 +170747961363,219,0 +170747961411,222,0 +170747961460,222,0 +170747961510,222,0 +170747961560,225,0 +170747961608,226,0 +170747961657,226,0 +170747961705,230,0 +170747961753,228,0 +170747961801,229,0 +170747961849,230,0 +170747961899,228,0 +170747961947,228,0 +170747961994,228,0 +170747962042,217,0 +170747962091,217,0 +170747962140,218,0 +170747962190,220,0 +170747962238,222,0 +170747962286,222,0 +170747962335,223,0 +170747962383,226,0 +170747962431,224,0 +170747962479,227,0 +170747962527,227,0 +170747962575,228,0 +170747962623,228,0 +170747962671,228,0 +170747962719,229,0 +170747962767,229,0 +170747962814,231,0 +170747962862,218,0 +170747962910,217,0 +170747962958,220,0 +170747963006,220,0 +170747963054,221,0 +170747963102,222,0 +170747963150,224,0 +170747963198,224,0 +170747963246,226,0 +170747963294,226,0 +170747963343,227,0 +170747963392,228,0 +170747963442,230,0 +170747963491,230,0 +170747963541,228,0 +170747963590,228,0 +170747963638,227,0 +170747963688,217,0 +170747963738,215,0 +170747963786,219,0 +170747963835,219,0 +170747963885,220,0 +170747963932,222,0 +170747963982,224,0 +170747964030,223,0 +170747964078,226,0 +170747964125,225,0 +170747964173,227,0 +170747964221,226,0 +170747964269,229,0 +170747964319,230,0 +170747964367,228,0 +170747964416,228,0 +170747964466,228,0 +170747964514,218,0 +170747964563,217,0 +170747964613,220,0 +170747964661,220,0 +170747964709,222,0 +170747964757,222,0 +170747964805,222,0 +170747964854,224,0 +170747964904,225,0 +170747964953,227,0 +170747965003,227,0 +170747965052,227,0 +170747965100,230,0 +170747965150,228,0 +170747965198,225,0 +170747965247,226,0 +170747965297,226,0 +170747965346,216,0 +170747965396,220,0 +170747965446,220,0 +170747965494,220,0 +170747965543,222,0 +170747965593,224,0 +170747965642,225,0 +170747965692,226,0 +170747965740,227,0 +170747965788,226,0 +170747965836,228,0 +170747965883,229,0 +170747965931,228,0 +170747965979,230,0 +170747966029,228,0 +170747966077,227,0 +170747966126,226,0 +170747966174,224,0 +170747966222,224,0 +170747966270,225,0 +170747966320,225,0 +170747966369,226,0 +170747966417,227,0 +170747966467,227,0 +170747966515,228,0 +170747966563,228,0 +170747966611,227,0 +170747966658,228,0 +170747966708,228,0 +170747966756,228,0 +170747966804,227,0 +170747966852,228,0 +170747966901,228,0 +170747966951,225,0 +170747967000,229,0 +170747967050,226,0 +170747967099,227,0 +170747967149,228,0 +170747967197,227,0 +170747967245,228,0 +170747967294,228,0 +170747967342,229,0 +170747967392,228,0 +170747967440,228,0 +170747967489,228,0 +170747967539,228,0 +170747967588,228,0 +170747967636,229,0 +170747967686,231,0 +170747967735,230,0 +170747967783,220,0 +170747967833,217,0 +170747967882,226,0 +170747967932,225,0 +170747967980,221,0 +170747968029,227,0 +170747968077,227,0 +170747968127,228,0 +170747968177,227,0 +170747968226,229,0 +170747968274,230,0 +170747968324,230,0 +170747968373,230,0 +170747968423,229,0 +170747968471,228,0 +170747968520,228,0 +170747968570,227,0 +170747968619,218,0 +170747968667,217,0 +170747968715,219,0 +170747968765,220,0 +170747968813,222,0 +170747968862,222,0 +170747968912,224,0 +170747968961,226,0 +170747969011,223,0 +170747969061,228,0 +170747969109,228,0 +170747969158,230,0 +170747969206,231,0 +170747969255,227,0 +170747969305,228,0 +170747969354,228,0 +170747969402,227,0 +170747969452,217,0 +170747969502,217,0 +170747969550,219,0 +170747969597,220,0 +170747969647,220,0 +170747969695,222,0 +170747969744,222,0 +170747969794,223,0 +170747969842,225,0 +170747969892,227,0 +170747969940,226,0 +170747969987,226,0 +170747970035,225,0 +170747970085,231,0 +170747970134,230,0 +170747970182,229,0 +170747970231,219,0 +170747970280,217,0 +170747970330,219,0 +170747970378,220,0 +170747970427,222,0 +170747970477,222,0 +170747970526,223,0 +170747970574,224,0 +170747970622,226,0 +170747970670,225,0 +170747970718,227,0 +170747970766,227,0 +170747970815,230,0 +170747970863,227,0 +170747970913,231,0 +170747970963,229,0 +170747971010,228,0 +170747971058,218,0 +170747971108,217,0 +170747971158,218,0 +170747971207,219,0 +170747971257,220,0 +170747971306,222,0 +170747971356,223,0 +170747971404,224,0 +170747971452,224,0 +170747971500,227,0 +170747971548,226,0 +170747971595,227,0 +170747971643,226,0 +170747971691,228,0 +170747971741,228,0 +170747971791,228,0 +170747971838,227,0 +170747971888,218,0 +170747971936,218,0 +170747971984,219,0 +170747972032,221,0 +170747972081,222,0 +170747972129,222,0 +170747972179,224,0 +170747972227,225,0 +170747972276,225,0 +170747972324,227,0 +170747972372,229,0 +170747972422,227,0 +170747972470,230,0 +170747972518,231,0 +170747972566,229,0 +170747972614,228,0 +170747972662,230,0 +170747972711,219,0 +170747972759,219,0 +170747972807,220,0 +170747972857,221,0 +170747972906,222,0 +170747972956,225,0 +170747973004,225,0 +170747973052,225,0 +170747973100,225,0 +170747973149,228,0 +170747973197,227,0 +170747973245,229,0 +170747973294,229,0 +170747973342,228,0 +170747973390,228,0 +170747973438,227,0 +170747973486,226,0 +170747973534,217,0 +170747973582,219,0 +170747973631,221,0 +170747973681,221,0 +170747973729,222,0 +170747973777,223,0 +170747973826,225,0 +170747973874,224,0 +170747973924,225,0 +170747973971,228,0 +170747974021,228,0 +170747974071,230,0 +170747974119,228,0 +170747974167,229,0 +170747974216,229,0 +170747974266,228,0 +170747974314,224,0 +170747974363,218,0 +170747974413,217,0 +170747974462,220,0 +170747974510,221,0 +170747974558,223,0 +170747974608,226,0 +170747974656,225,0 +170747974704,223,0 +170747974751,227,0 +170747974799,229,0 +170747974849,231,0 +170747974899,229,0 +170747974948,230,0 +170747974996,231,0 +170747975046,229,0 +170747975095,230,0 +170747975143,227,0 +170747975192,218,0 +170747975242,218,0 +170747975292,221,0 +170747975339,224,0 +170747975387,222,0 +170747975437,224,0 +170747975487,226,0 +170747975536,229,0 +170747975586,228,0 +170747975635,228,0 +170747975685,228,0 +170747975734,230,0 +170747975784,229,0 +170747975832,230,0 +170747975881,227,0 +170747975931,229,0 +170747975979,217,0 +170747976027,217,0 +170747976076,219,0 +170747976126,220,0 +170747976175,222,0 +170747976223,222,0 +170747976273,224,0 +170747976321,225,0 +170747976368,226,0 +170747976418,226,0 +170747976468,226,0 +170747976517,227,0 +170747976567,227,0 +170747976616,228,0 +170747976666,229,0 +170747976715,229,0 +170747976765,228,0 +170747976813,217,0 +170747976860,216,0 +170747976910,216,0 +170747976959,218,0 +170747977007,219,0 +170747977056,221,0 +170747977104,222,0 +170747977154,222,0 +170747977202,227,0 +170747977250,228,0 +170747977299,227,0 +170747977347,228,0 +170747977397,229,0 +170747977445,229,0 +170747977493,230,0 +170747977541,227,0 +170747977590,228,0 +170747977638,218,0 +170747977688,217,0 +170747977737,217,0 +170747977787,219,0 +170747977835,220,0 +170747977883,221,0 +170747977931,222,0 +170747977979,224,0 +170747978027,225,0 +170747978075,225,0 +170747978125,229,0 +170747978174,229,0 +170747978222,228,0 +170747978272,229,0 +170747978321,228,0 +170747978371,229,0 +170747978420,227,0 +170747978468,216,0 +170747978516,217,0 +170747978566,218,0 +170747978614,218,0 +170747978663,217,0 +170747978713,219,0 +170747978761,220,0 +170747978810,221,0 +170747978860,223,0 +170747978909,224,0 +170747978957,222,0 +170747979007,229,0 +170747979056,227,0 +170747979106,227,0 +170747979156,225,0 +170747979205,228,0 +170747979255,219,0 +170747979304,216,0 +170747979352,215,0 +170747979400,218,0 +170747979448,218,0 +170747979498,220,0 +170747979547,222,0 +170747979597,222,0 +170747979646,223,0 +170747979696,224,0 +170747979745,227,0 +170747979795,226,0 +170747979843,225,0 +170747979891,228,0 +170747979939,229,0 +170747979988,226,0 +170747980036,227,0 +170747980086,218,0 +170747980135,215,0 +170747980185,216,0 +170747980233,216,0 +170747980283,218,0 +170747980332,216,0 +170747980380,218,0 +170747980429,218,0 +170747980477,220,0 +170747980525,221,0 +170747980575,223,0 +170747980623,224,0 +170747980670,224,0 +170747980720,227,0 +170747980769,226,0 +170747980817,227,0 +170747980867,226,0 +170747980916,218,0 +170747980966,217,0 +170747981016,218,0 +170747981065,219,0 +170747981115,221,0 +170747981164,222,0 +170747981214,223,0 +170747981263,224,0 +170747981311,225,0 +170747981361,226,0 +170747981409,225,0 +170747981457,227,0 +170747981506,227,0 +170747981556,227,0 +170747981604,227,0 +170747981653,227,0 +170747981703,227,0 +170747981751,221,0 +170747981799,222,0 +170747981846,222,0 +170747981894,223,0 +170747981942,225,0 +170747981992,225,0 +170747982040,226,0 +170747982089,227,0 +170747982137,228,0 +170747982187,228,0 +170747982237,230,0 +170747982285,228,0 +170747982333,228,0 +170747982382,228,0 +170747982432,231,0 +170747982479,228,0 +170747982527,226,0 +170747982575,222,0 +170747982623,223,0 +170747982671,224,0 +170747982719,225,0 +170747982767,224,0 +170747982815,227,0 +170747982863,226,0 +170747982911,230,0 +170747982960,229,0 +170747983010,229,0 +170747983059,230,0 +170747983107,229,0 +170747983155,229,0 +170747983203,231,0 +170747983251,228,0 +170747983300,230,0 +170747983350,227,0 +170747983398,222,0 +170747983446,224,0 +170747983493,222,0 +170747983543,224,0 +170747983591,226,0 +170747983639,226,0 +170747983687,225,0 +170747983735,226,0 +170747983783,226,0 +170747983831,228,0 +170747983879,230,0 +170747983927,232,0 +170747983976,228,0 +170747984026,230,0 +170747984074,230,0 +170747984121,228,0 +170747984171,226,0 +170747984221,219,0 +170747984268,220,0 +170747984316,220,0 +170747984364,222,0 +170747984414,225,0 +170747984462,225,0 +170747984511,225,0 +170747984561,226,0 +170747984609,228,0 +170747984658,229,0 +170747984706,228,0 +170747984756,229,0 +170747984805,230,0 +170747984855,230,0 +170747984903,229,0 +170747984952,227,0 +170747985002,220,0 +170747985052,221,0 +170747985101,221,0 +170747985149,222,0 +170747985199,227,0 +170747985247,225,0 +170747985296,224,0 +170747985344,225,0 +170747985392,223,0 +170747985440,228,0 +170747985488,229,0 +170747985536,229,0 +170747985584,229,0 +170747985632,228,0 +170747985681,228,0 +170747985729,231,0 +170747985777,228,0 +170747985826,222,0 +170747985874,222,0 +170747985922,223,0 +170747985970,224,0 +170747986018,221,0 +170747986066,227,0 +170747986114,228,0 +170747986162,230,0 +170747986211,230,0 +170747986261,229,0 +170747986310,234,0 +170747986358,230,0 +170747986408,229,0 +170747986456,229,0 +170747986505,229,0 +170747986555,227,0 +170747986603,227,0 +170747986652,221,0 +170747986702,222,0 +170747986750,222,0 +170747986798,224,0 +170747986846,224,0 +170747986895,226,0 +170747986943,228,0 +170747986991,229,0 +170747987039,231,0 +170747987089,222,0 +170747987137,230,0 +170747987186,230,0 +170747987236,230,0 +170747987284,231,0 +170747987332,229,0 +170747987381,228,0 +170747987431,228,0 +170747987480,221,0 +170747987528,220,0 +170747987576,222,0 +170747987624,223,0 +170747987673,227,0 +170747987723,226,0 +170747987773,230,0 +170747987821,228,0 +170747987868,230,0 +170747987916,227,0 +170747987964,231,0 +170747988012,228,0 +170747988062,244,0 +170747988112,229,0 +170747988161,229,0 +170747988211,228,0 +170747988259,226,0 +170747988307,216,0 +170747988356,216,0 +170747988406,218,0 +170747988453,221,0 +170747988503,222,0 +170747988551,222,0 +170747988599,223,0 +170747988647,225,0 +170747988696,227,0 +170747988744,228,0 +170747988792,230,0 +170747988842,230,0 +170747988891,230,0 +170747988939,229,0 +170747988987,229,0 +170747989037,229,0 +170747989085,221,0 +170747989134,216,0 +170747989184,216,0 +170747989232,217,0 +170747989280,218,0 +170747989328,219,0 +170747989376,221,0 +170747989423,221,0 +170747989471,223,0 +170747989521,225,0 +170747989570,229,0 +170747989620,230,0 +170747989668,228,0 +170747989715,227,0 +170747989763,229,0 +170747989811,229,0 +170747989861,228,0 +170747989909,227,0 +170747989957,216,0 +170747990004,216,0 +170747990053,216,0 +170747990102,217,0 +170747990152,218,0 +170747990201,219,0 +170747990249,221,0 +170747990299,221,0 +170747990347,223,0 +170747990394,224,0 +170747990442,224,0 +170747990492,225,0 +170747990542,232,0 +170747990589,229,0 +170747990637,227,0 +170747990687,227,0 +170747990735,217,0 +170747990783,217,0 +170747990832,218,0 +170747990882,220,0 +170747990930,221,0 +170747990978,224,0 +170747991027,225,0 +170747991075,225,0 +170747991125,228,0 +170747991173,229,0 +170747991222,227,0 +170747991272,228,0 +170747991321,230,0 +170747991371,230,0 +170747991420,230,0 +170747991468,229,0 +170747991516,228,0 +170747991564,218,0 +170747991612,218,0 +170747991662,218,0 +170747991710,221,0 +170747991759,221,0 +170747991807,222,0 +170747991855,224,0 +170747991905,224,0 +170747991954,226,0 +170747992004,226,0 +170747992053,228,0 +170747992103,229,0 +170747992151,229,0 +170747992200,227,0 +170747992248,230,0 +170747992298,228,0 +170747992347,228,0 +170747992395,217,0 +170747992443,217,0 +170747992491,218,0 +170747992541,219,0 +170747992589,220,0 +170747992637,221,0 +170747992686,222,0 +170747992734,225,0 +170747992784,225,0 +170747992833,225,0 +170747992881,227,0 +170747992929,228,0 +170747992977,229,0 +170747993025,227,0 +170747993075,228,0 +170747993122,229,0 +170747993170,228,0 +170747993220,216,0 +170747993268,217,0 +170747993317,218,0 +170747993365,219,0 +170747993415,222,0 +170747993464,221,0 +170747993514,223,0 +170747993562,223,0 +170747993611,227,0 +170747993659,225,0 +170747993707,228,0 +170747993755,229,0 +170747993803,228,0 +170747993851,228,0 +170747993899,229,0 +170747993947,228,0 +170747993997,228,0 +170747994046,216,0 +170747994094,217,0 +170747994144,219,0 +170747994193,220,0 +170747994243,221,0 +170747994292,221,0 +170747994342,222,0 +170747994391,223,0 +170747994439,223,0 +170747994489,222,0 +170747994537,227,0 +170747994585,228,0 +170747994633,227,0 +170747994682,227,0 +170747994730,224,0 +170747994780,228,0 +170747994828,218,0 +170747994877,217,0 +170747994927,217,0 +170747994976,218,0 +170747995026,218,0 +170747995074,219,0 +170747995122,221,0 +170747995171,221,0 +170747995221,223,0 +170747995269,224,0 +170747995318,225,0 +170747995368,225,0 +170747995417,228,0 +170747995465,227,0 +170747995513,228,0 +170747995563,227,0 +170747995612,229,0 +170747995660,219,0 +170747995708,217,0 +170747995756,217,0 +170747995804,219,0 +170747995854,220,0 +170747995902,223,0 +170747995950,222,0 +170747995999,224,0 +170747996047,224,0 +170747996095,227,0 +170747996144,226,0 +170747996194,226,0 +170747996243,230,0 +170747996293,228,0 +170747996341,228,0 +170747996389,228,0 +170747996438,227,0 +170747996488,222,0 +170747996537,222,0 +170747996585,224,0 +170747996635,226,0 +170747996683,225,0 +170747996733,227,0 +170747996782,227,0 +170747996830,227,0 +170747996878,228,0 +170747996926,228,0 +170747996974,229,0 +170747997022,228,0 +170747997070,230,0 +170747997117,228,0 +170747997165,229,0 +170747997213,230,0 +170747997263,227,0 +170747997312,232,0 +170747997362,227,0 +170747997411,229,0 +170747997461,229,0 +170747997509,229,0 +170747997557,228,0 +170747997606,230,0 +170747997654,229,0 +170747997704,229,0 +170747997753,230,0 +170747997803,229,0 +170747997851,224,0 +170747997900,228,0 +170747997950,229,0 +170747997998,230,0 +170747998048,227,0 +170747998097,226,0 +170747998146,223,0 +170747998196,225,0 +170747998246,225,0 +170747998295,225,0 +170747998345,227,0 +170747998393,225,0 +170747998441,230,0 +170747998490,229,0 +170747998540,230,0 +170747998588,229,0 +170747998636,230,0 +170747998685,226,0 +170747998733,230,0 +170747998781,230,0 +170747998829,228,0 +170747998877,228,0 +170747998927,226,0 +170747998974,218,0 +170747999024,220,0 +170747999072,220,0 +170747999122,222,0 +170747999169,225,0 +170747999219,224,0 +170747999268,227,0 +170747999318,226,0 +170747999366,227,0 +170747999414,229,0 +170747999463,231,0 +170747999511,228,0 +170747999559,229,0 +170747999607,229,0 +170747999655,228,0 +170747999705,227,0 +170747999753,218,0 +170747999802,218,0 +170747999852,219,0 +170747999900,220,0 +170747999948,223,0 +170747999997,222,0 diff --git a/laser_value/0209-22.csv b/laser_value/0209-22.csv new file mode 100644 index 0000000..26265ad --- /dev/null +++ b/laser_value/0209-22.csv @@ -0,0 +1,7413 @@ +timestamp,laser_value,event +170748000046,224,0 +170748000095,223,0 +170748000143,225,0 +170748000193,226,0 +170748000241,227,0 +170748000290,228,0 +170748000340,231,0 +170748000388,229,0 +170748000435,228,0 +170748000483,226,0 +170748000531,227,0 +170748000581,218,0 +170748000629,218,0 +170748000677,220,0 +170748000725,220,0 +170748000774,220,0 +170748000822,221,0 +170748000870,222,0 +170748000918,224,0 +170748000966,224,0 +170748001014,224,0 +170748001064,226,0 +170748001113,227,0 +170748001163,233,0 +170748001212,228,0 +170748001262,229,0 +170748001310,228,0 +170748001358,228,0 +170748001406,217,0 +170748001455,217,0 +170748001503,219,0 +170748001551,219,0 +170748001601,221,0 +170748001650,225,0 +170748001698,225,0 +170748001748,225,0 +170748001796,227,0 +170748001844,227,0 +170748001892,226,0 +170748001940,228,0 +170748001988,228,0 +170748002036,232,0 +170748002085,230,0 +170748002134,227,0 +170748002182,228,0 +170748002230,217,0 +170748002278,218,0 +170748002328,219,0 +170748002377,222,0 +170748002427,222,0 +170748002475,222,0 +170748002523,223,0 +170748002572,224,0 +170748002622,226,0 +170748002670,225,0 +170748002719,226,0 +170748002767,227,0 +170748002817,232,0 +170748002865,228,0 +170748002913,230,0 +170748002961,227,0 +170748003010,227,0 +170748003060,217,0 +170748003109,219,0 +170748003159,220,0 +170748003207,222,0 +170748003257,223,0 +170748003306,223,0 +170748003354,225,0 +170748003404,226,0 +170748003451,226,0 +170748003501,227,0 +170748003549,229,0 +170748003597,229,0 +170748003645,229,0 +170748003693,229,0 +170748003742,230,0 +170748003792,229,0 +170748003842,226,0 +170748003891,218,0 +170748003941,220,0 +170748003990,223,0 +170748004038,223,0 +170748004088,223,0 +170748004136,225,0 +170748004184,224,0 +170748004233,230,0 +170748004283,229,0 +170748004332,233,0 +170748004382,230,0 +170748004431,231,0 +170748004481,229,0 +170748004530,230,0 +170748004578,229,0 +170748004628,229,0 +170748004677,220,0 +170748004725,218,0 +170748004773,219,0 +170748004821,222,0 +170748004869,222,0 +170748004917,224,0 +170748004965,225,0 +170748005013,226,0 +170748005063,222,0 +170748005111,228,0 +170748005159,228,0 +170748005207,231,0 +170748005255,232,0 +170748005302,231,0 +170748005350,236,0 +170748005398,229,0 +170748005448,228,0 +170748005496,219,0 +170748005544,218,0 +170748005592,219,0 +170748005640,221,0 +170748005688,221,0 +170748005736,223,0 +170748005785,223,0 +170748005833,226,0 +170748005881,228,0 +170748005931,228,0 +170748005980,225,0 +170748006030,227,0 +170748006079,231,0 +170748006129,230,0 +170748006178,230,0 +170748006228,227,0 +170748006277,226,0 +170748006327,216,0 +170748006375,217,0 +170748006423,218,0 +170748006472,220,0 +170748006522,221,0 +170748006570,222,0 +170748006619,225,0 +170748006667,225,0 +170748006715,226,0 +170748006763,226,0 +170748006813,228,0 +170748006862,226,0 +170748006910,226,0 +170748006958,229,0 +170748007008,229,0 +170748007056,228,0 +170748007105,227,0 +170748007155,217,0 +170748007203,216,0 +170748007252,217,0 +170748007300,219,0 +170748007350,220,0 +170748007399,222,0 +170748007447,222,0 +170748007495,224,0 +170748007545,225,0 +170748007593,226,0 +170748007641,228,0 +170748007688,227,0 +170748007738,223,0 +170748007788,228,0 +170748007836,228,0 +170748007884,227,0 +170748007933,226,0 +170748007983,215,0 +170748008031,217,0 +170748008079,215,0 +170748008128,218,0 +170748008176,219,0 +170748008226,222,0 +170748008274,222,0 +170748008321,223,0 +170748008371,224,0 +170748008421,225,0 +170748008469,226,0 +170748008517,226,0 +170748008564,226,0 +170748008614,227,0 +170748008662,228,0 +170748008710,229,0 +170748008758,220,0 +170748008807,217,0 +170748008855,219,0 +170748008905,220,0 +170748008955,222,0 +170748009003,222,0 +170748009052,223,0 +170748009102,223,0 +170748009149,224,0 +170748009197,226,0 +170748009247,230,0 +170748009297,227,0 +170748009346,228,0 +170748009396,228,0 +170748009445,227,0 +170748009493,228,0 +170748009541,228,0 +170748009591,218,0 +170748009639,216,0 +170748009688,217,0 +170748009738,219,0 +170748009786,219,0 +170748009835,220,0 +170748009883,223,0 +170748009933,222,0 +170748009981,224,0 +170748010029,227,0 +170748010077,228,0 +170748010126,227,0 +170748010176,227,0 +170748010225,228,0 +170748010273,228,0 +170748010321,228,0 +170748010371,229,0 +170748010419,218,0 +170748010467,218,0 +170748010515,220,0 +170748010562,220,0 +170748010610,220,0 +170748010660,223,0 +170748010708,224,0 +170748010756,224,0 +170748010804,226,0 +170748010853,225,0 +170748010903,226,0 +170748010952,226,0 +170748011000,227,0 +170748011050,228,0 +170748011098,228,0 +170748011147,227,0 +170748011197,227,0 +170748011246,221,0 +170748011296,222,0 +170748011346,224,0 +170748011395,225,0 +170748011443,227,0 +170748011493,226,0 +170748011541,226,0 +170748011589,228,0 +170748011637,227,0 +170748011686,228,0 +170748011734,228,0 +170748011782,227,0 +170748011832,228,0 +170748011881,228,0 +170748011931,228,0 +170748011980,227,0 +170748012028,227,0 +170748012078,225,0 +170748012126,226,0 +170748012175,226,0 +170748012225,226,0 +170748012272,227,0 +170748012320,227,0 +170748012368,229,0 +170748012418,229,0 +170748012466,228,0 +170748012515,229,0 +170748012563,228,0 +170748012613,228,0 +170748012662,228,0 +170748012710,228,0 +170748012758,228,0 +170748012808,227,0 +170748012857,220,0 +170748012905,224,0 +170748012953,224,0 +170748013003,224,0 +170748013051,226,0 +170748013099,226,0 +170748013148,228,0 +170748013198,227,0 +170748013248,230,0 +170748013295,229,0 +170748013343,230,0 +170748013393,231,0 +170748013442,230,0 +170748013490,228,0 +170748013538,229,0 +170748013588,225,0 +170748013637,227,0 +170748013687,218,0 +170748013735,217,0 +170748013783,218,0 +170748013832,220,0 +170748013882,223,0 +170748013930,222,0 +170748013978,222,0 +170748014026,227,0 +170748014075,226,0 +170748014123,227,0 +170748014171,227,0 +170748014219,230,0 +170748014269,231,0 +170748014317,230,0 +170748014365,228,0 +170748014413,229,0 +170748014462,228,0 +170748014512,218,0 +170748014561,217,0 +170748014611,218,0 +170748014659,220,0 +170748014707,221,0 +170748014756,223,0 +170748014806,222,0 +170748014853,223,0 +170748014901,226,0 +170748014951,226,0 +170748014999,228,0 +170748015048,226,0 +170748015096,228,0 +170748015144,229,0 +170748015192,231,0 +170748015240,231,0 +170748015290,231,0 +170748015338,218,0 +170748015386,216,0 +170748015435,217,0 +170748015485,218,0 +170748015533,220,0 +170748015581,223,0 +170748015629,223,0 +170748015678,223,0 +170748015726,227,0 +170748015774,226,0 +170748015822,225,0 +170748015872,230,0 +170748015921,230,0 +170748015969,229,0 +170748016019,226,0 +170748016068,230,0 +170748016118,226,0 +170748016167,217,0 +170748016217,215,0 +170748016266,217,0 +170748016314,218,0 +170748016362,220,0 +170748016412,231,0 +170748016459,222,0 +170748016509,223,0 +170748016559,224,0 +170748016607,226,0 +170748016654,226,0 +170748016704,227,0 +170748016754,231,0 +170748016803,228,0 +170748016852,228,0 +170748016902,230,0 +170748016952,227,0 +170748017000,216,0 +170748017047,217,0 +170748017095,218,0 +170748017143,219,0 +170748017193,220,0 +170748017241,221,0 +170748017291,223,0 +170748017339,224,0 +170748017388,223,0 +170748017438,227,0 +170748017486,224,0 +170748017534,226,0 +170748017581,226,0 +170748017631,229,0 +170748017680,229,0 +170748017728,228,0 +170748017776,223,0 +170748017826,216,0 +170748017876,215,0 +170748017925,217,0 +170748017973,218,0 +170748018023,221,0 +170748018071,220,0 +170748018118,222,0 +170748018168,217,0 +170748018218,224,0 +170748018266,227,0 +170748018315,227,0 +170748018363,228,0 +170748018413,225,0 +170748018462,224,0 +170748018512,227,0 +170748018561,227,0 +170748018609,219,0 +170748018657,216,0 +170748018705,216,0 +170748018753,217,0 +170748018801,221,0 +170748018849,220,0 +170748018897,223,0 +170748018945,223,0 +170748018993,224,0 +170748019042,226,0 +170748019092,227,0 +170748019141,229,0 +170748019191,229,0 +170748019240,228,0 +170748019288,228,0 +170748019338,234,0 +170748019386,228,0 +170748019434,218,0 +170748019483,216,0 +170748019533,216,0 +170748019581,217,0 +170748019629,217,0 +170748019677,219,0 +170748019725,220,0 +170748019773,222,0 +170748019822,223,0 +170748019872,224,0 +170748019921,226,0 +170748019971,226,0 +170748020019,226,0 +170748020067,227,0 +170748020114,228,0 +170748020162,227,0 +170748020210,227,0 +170748020258,216,0 +170748020308,216,0 +170748020357,218,0 +170748020407,217,0 +170748020455,218,0 +170748020503,221,0 +170748020551,219,0 +170748020600,225,0 +170748020648,225,0 +170748020698,226,0 +170748020747,225,0 +170748020795,230,0 +170748020845,229,0 +170748020894,230,0 +170748020942,229,0 +170748020990,228,0 +170748021038,228,0 +170748021086,217,0 +170748021134,217,0 +170748021182,219,0 +170748021230,220,0 +170748021278,221,0 +170748021328,222,0 +170748021376,224,0 +170748021425,225,0 +170748021475,225,0 +170748021523,228,0 +170748021571,228,0 +170748021620,230,0 +170748021668,228,0 +170748021718,229,0 +170748021767,229,0 +170748021817,229,0 +170748021865,227,0 +170748021914,218,0 +170748021962,220,0 +170748022012,220,0 +170748022061,222,0 +170748022109,224,0 +170748022157,225,0 +170748022205,224,0 +170748022253,227,0 +170748022303,227,0 +170748022352,227,0 +170748022402,229,0 +170748022450,231,0 +170748022498,235,0 +170748022546,228,0 +170748022595,229,0 +170748022643,228,0 +170748022693,228,0 +170748022741,219,0 +170748022788,220,0 +170748022836,221,0 +170748022884,221,0 +170748022932,226,0 +170748022982,226,0 +170748023030,227,0 +170748023078,227,0 +170748023126,229,0 +170748023174,228,0 +170748023222,229,0 +170748023271,228,0 +170748023321,229,0 +170748023369,229,0 +170748023418,225,0 +170748023466,228,0 +170748023514,228,0 +170748023564,219,0 +170748023613,220,0 +170748023661,221,0 +170748023709,218,0 +170748023757,221,0 +170748023805,224,0 +170748023853,225,0 +170748023901,226,0 +170748023951,229,0 +170748023999,230,0 +170748024046,228,0 +170748024096,231,0 +170748024146,230,0 +170748024194,228,0 +170748024243,228,0 +170748024293,228,0 +170748024342,220,0 +170748024392,219,0 +170748024440,219,0 +170748024489,221,0 +170748024539,222,0 +170748024588,224,0 +170748024636,224,0 +170748024684,225,0 +170748024734,226,0 +170748024782,228,0 +170748024830,226,0 +170748024878,227,0 +170748024926,227,0 +170748024975,229,0 +170748025023,231,0 +170748025071,229,0 +170748025121,228,0 +170748025170,217,0 +170748025218,217,0 +170748025268,219,0 +170748025316,220,0 +170748025365,221,0 +170748025415,223,0 +170748025463,223,0 +170748025511,226,0 +170748025560,225,0 +170748025608,226,0 +170748025658,228,0 +170748025707,228,0 +170748025755,229,0 +170748025805,230,0 +170748025852,227,0 +170748025902,229,0 +170748025950,227,0 +170748025999,220,0 +170748026047,218,0 +170748026095,222,0 +170748026143,222,0 +170748026193,223,0 +170748026241,223,0 +170748026290,225,0 +170748026340,226,0 +170748026388,226,0 +170748026436,226,0 +170748026485,227,0 +170748026533,227,0 +170748026581,228,0 +170748026629,228,0 +170748026678,228,0 +170748026728,227,0 +170748026777,228,0 +170748026825,224,0 +170748026875,223,0 +170748026924,224,0 +170748026972,225,0 +170748027022,228,0 +170748027071,228,0 +170748027121,227,0 +170748027169,229,0 +170748027217,228,0 +170748027264,228,0 +170748027312,228,0 +170748027360,228,0 +170748027408,228,0 +170748027458,228,0 +170748027507,228,0 +170748027555,231,0 +170748027603,229,0 +170748027653,224,0 +170748027702,225,0 +170748027752,224,0 +170748027800,226,0 +170748027848,227,0 +170748027896,226,0 +170748027945,229,0 +170748027993,227,0 +170748028041,230,0 +170748028091,229,0 +170748028139,228,0 +170748028187,229,0 +170748028236,231,0 +170748028284,229,0 +170748028333,230,0 +170748028383,228,0 +170748028433,227,0 +170748028482,218,0 +170748028530,219,0 +170748028578,220,0 +170748028626,221,0 +170748028676,221,0 +170748028725,224,0 +170748028773,224,0 +170748028821,225,0 +170748028869,226,0 +170748028917,228,0 +170748028965,229,0 +170748029014,230,0 +170748029062,232,0 +170748029110,228,0 +170748029158,225,0 +170748029208,228,0 +170748029257,228,0 +170748029305,216,0 +170748029353,217,0 +170748029401,219,0 +170748029451,220,0 +170748029500,221,0 +170748029548,223,0 +170748029598,224,0 +170748029646,225,0 +170748029695,225,0 +170748029745,227,0 +170748029794,229,0 +170748029842,229,0 +170748029890,231,0 +170748029938,230,0 +170748029986,228,0 +170748030034,228,0 +170748030082,226,0 +170748030130,216,0 +170748030180,216,0 +170748030228,218,0 +170748030276,221,0 +170748030325,221,0 +170748030375,222,0 +170748030424,224,0 +170748030472,225,0 +170748030522,226,0 +170748030570,226,0 +170748030619,228,0 +170748030669,229,0 +170748030718,230,0 +170748030766,232,0 +170748030816,229,0 +170748030864,228,0 +170748030912,218,0 +170748030961,217,0 +170748031009,218,0 +170748031057,220,0 +170748031105,221,0 +170748031153,221,0 +170748031201,223,0 +170748031249,223,0 +170748031298,225,0 +170748031346,227,0 +170748031396,227,0 +170748031445,227,0 +170748031493,229,0 +170748031541,232,0 +170748031589,229,0 +170748031639,229,0 +170748031688,228,0 +170748031738,218,0 +170748031786,217,0 +170748031834,218,0 +170748031883,220,0 +170748031933,221,0 +170748031983,223,0 +170748032032,222,0 +170748032080,224,0 +170748032128,225,0 +170748032176,226,0 +170748032225,228,0 +170748032275,228,0 +170748032323,228,0 +170748032373,226,0 +170748032421,227,0 +170748032468,229,0 +170748032516,229,0 +170748032566,217,0 +170748032614,217,0 +170748032662,218,0 +170748032710,220,0 +170748032760,221,0 +170748032809,222,0 +170748032859,223,0 +170748032908,224,0 +170748032956,228,0 +170748033004,226,0 +170748033052,228,0 +170748033100,229,0 +170748033148,227,0 +170748033197,228,0 +170748033247,227,0 +170748033295,229,0 +170748033343,227,0 +170748033391,217,0 +170748033439,216,0 +170748033488,217,0 +170748033538,219,0 +170748033586,220,0 +170748033636,220,0 +170748033685,220,0 +170748033735,222,0 +170748033783,224,0 +170748033832,225,0 +170748033880,227,0 +170748033930,227,0 +170748033977,229,0 +170748034026,231,0 +170748034075,229,0 +170748034123,229,0 +170748034171,231,0 +170748034219,217,0 +170748034268,217,0 +170748034316,217,0 +170748034364,218,0 +170748034412,222,0 +170748034462,222,0 +170748034512,223,0 +170748034560,224,0 +170748034607,226,0 +170748034655,227,0 +170748034703,225,0 +170748034751,227,0 +170748034799,229,0 +170748034849,229,0 +170748034898,228,0 +170748034948,228,0 +170748034997,227,0 +170748035047,216,0 +170748035096,216,0 +170748035144,217,0 +170748035192,218,0 +170748035242,221,0 +170748035292,221,0 +170748035341,224,0 +170748035391,225,0 +170748035438,225,0 +170748035486,226,0 +170748035534,227,0 +170748035582,227,0 +170748035630,228,0 +170748035680,229,0 +170748035727,230,0 +170748035775,223,0 +170748035823,226,0 +170748035871,215,0 +170748035920,215,0 +170748035968,216,0 +170748036016,216,0 +170748036064,218,0 +170748036112,220,0 +170748036160,220,0 +170748036208,222,0 +170748036256,222,0 +170748036304,224,0 +170748036351,225,0 +170748036399,226,0 +170748036447,225,0 +170748036495,226,0 +170748036545,227,0 +170748036592,230,0 +170748036640,228,0 +170748036688,230,0 +170748036736,233,0 +170748036786,230,0 +170748036834,230,0 +170748036882,224,0 +170748036929,228,0 +170748036977,236,0 +170748037025,227,0 +170748037073,218,0 +170748037121,218,0 +170748037169,219,0 +170748037217,221,0 +170748037266,222,0 +170748037314,224,0 +170748037364,224,0 +170748037412,225,0 +170748037461,225,0 +170748037509,226,0 +170748037557,228,0 +170748037605,230,0 +170748037654,230,0 +170748037702,229,0 +170748037750,228,0 +170748037798,229,0 +170748037848,227,0 +170748037897,217,0 +170748037945,217,0 +170748037994,218,0 +170748038042,221,0 +170748038092,221,0 +170748038141,221,0 +170748038189,222,0 +170748038239,225,0 +170748038288,226,0 +170748038336,226,0 +170748038384,226,0 +170748038432,228,0 +170748038480,229,0 +170748038527,230,0 +170748038577,229,0 +170748038626,228,0 +170748038676,227,0 +170748038724,218,0 +170748038772,217,0 +170748038819,218,0 +170748038867,219,0 +170748038915,220,0 +170748038963,221,0 +170748039011,221,0 +170748039059,222,0 +170748039107,224,0 +170748039155,225,0 +170748039204,228,0 +170748039252,227,0 +170748039302,228,0 +170748039351,225,0 +170748039399,228,0 +170748039447,226,0 +170748039495,227,0 +170748039543,217,0 +170748039591,216,0 +170748039640,217,0 +170748039688,215,0 +170748039738,220,0 +170748039787,219,0 +170748039835,221,0 +170748039883,221,0 +170748039931,223,0 +170748039979,224,0 +170748040027,225,0 +170748040075,226,0 +170748040124,228,0 +170748040174,230,0 +170748040221,226,0 +170748040269,229,0 +170748040319,229,0 +170748040369,217,0 +170748040418,217,0 +170748040466,218,0 +170748040514,220,0 +170748040562,220,0 +170748040610,220,0 +170748040658,221,0 +170748040707,222,0 +170748040755,224,0 +170748040803,225,0 +170748040851,226,0 +170748040901,227,0 +170748040950,227,0 +170748041000,227,0 +170748041047,228,0 +170748041095,229,0 +170748041143,228,0 +170748041191,216,0 +170748041241,214,0 +170748041288,218,0 +170748041336,219,0 +170748041386,221,0 +170748041434,222,0 +170748041482,222,0 +170748041529,223,0 +170748041577,224,0 +170748041625,226,0 +170748041673,226,0 +170748041721,227,0 +170748041769,229,0 +170748041817,229,0 +170748041865,230,0 +170748041913,228,0 +170748041962,227,0 +170748042010,220,0 +170748042058,221,0 +170748042106,224,0 +170748042155,223,0 +170748042203,225,0 +170748042251,225,0 +170748042299,226,0 +170748042347,227,0 +170748042395,226,0 +170748042443,227,0 +170748042492,229,0 +170748042540,229,0 +170748042590,228,0 +170748042638,227,0 +170748042687,230,0 +170748042735,228,0 +170748042783,228,0 +170748042833,225,0 +170748042880,225,0 +170748042930,226,0 +170748042978,225,0 +170748043026,227,0 +170748043074,227,0 +170748043123,228,0 +170748043173,231,0 +170748043222,228,0 +170748043270,229,0 +170748043318,229,0 +170748043368,229,0 +170748043417,228,0 +170748043465,229,0 +170748043515,227,0 +170748043563,227,0 +170748043611,228,0 +170748043660,222,0 +170748043708,222,0 +170748043756,223,0 +170748043804,224,0 +170748043852,223,0 +170748043901,225,0 +170748043949,228,0 +170748043997,227,0 +170748044045,228,0 +170748044093,231,0 +170748044141,229,0 +170748044189,230,0 +170748044237,232,0 +170748044284,230,0 +170748044332,229,0 +170748044382,228,0 +170748044430,227,0 +170748044479,218,0 +170748044529,219,0 +170748044576,221,0 +170748044624,223,0 +170748044674,222,0 +170748044723,223,0 +170748044771,225,0 +170748044819,228,0 +170748044869,226,0 +170748044918,228,0 +170748044968,229,0 +170748045016,226,0 +170748045064,233,0 +170748045113,229,0 +170748045161,230,0 +170748045211,228,0 +170748045259,227,0 +170748045307,217,0 +170748045355,220,0 +170748045404,216,0 +170748045452,221,0 +170748045502,224,0 +170748045550,224,0 +170748045598,224,0 +170748045647,225,0 +170748045695,228,0 +170748045745,228,0 +170748045794,230,0 +170748045842,231,0 +170748045892,229,0 +170748045940,231,0 +170748045988,228,0 +170748046036,228,0 +170748046084,228,0 +170748046133,218,0 +170748046181,220,0 +170748046229,221,0 +170748046277,223,0 +170748046325,223,0 +170748046373,225,0 +170748046421,226,0 +170748046469,225,0 +170748046518,226,0 +170748046568,227,0 +170748046617,231,0 +170748046665,229,0 +170748046715,230,0 +170748046764,229,0 +170748046812,228,0 +170748046860,229,0 +170748046908,226,0 +170748046956,219,0 +170748047004,220,0 +170748047052,221,0 +170748047101,223,0 +170748047151,223,0 +170748047200,225,0 +170748047248,225,0 +170748047298,227,0 +170748047347,227,0 +170748047397,228,0 +170748047445,228,0 +170748047495,228,0 +170748047542,228,0 +170748047590,229,0 +170748047640,228,0 +170748047688,228,0 +170748047736,222,0 +170748047784,220,0 +170748047833,223,0 +170748047881,222,0 +170748047930,224,0 +170748047980,225,0 +170748048030,227,0 +170748048077,225,0 +170748048127,227,0 +170748048176,228,0 +170748048226,228,0 +170748048274,228,0 +170748048322,227,0 +170748048370,228,0 +170748048418,227,0 +170748048466,228,0 +170748048514,227,0 +170748048563,219,0 +170748048613,218,0 +170748048662,219,0 +170748048710,221,0 +170748048760,222,0 +170748048809,223,0 +170748048857,224,0 +170748048905,226,0 +170748048953,225,0 +170748049003,227,0 +170748049051,229,0 +170748049099,228,0 +170748049147,229,0 +170748049196,230,0 +170748049244,230,0 +170748049292,228,0 +170748049340,227,0 +170748049389,218,0 +170748049439,217,0 +170748049489,216,0 +170748049538,216,0 +170748049586,218,0 +170748049634,220,0 +170748049684,221,0 +170748049733,223,0 +170748049783,223,0 +170748049831,226,0 +170748049880,226,0 +170748049928,228,0 +170748049978,227,0 +170748050027,228,0 +170748050077,229,0 +170748050126,229,0 +170748050174,228,0 +170748050224,218,0 +170748050272,216,0 +170748050321,216,0 +170748050371,217,0 +170748050419,217,0 +170748050468,218,0 +170748050518,219,0 +170748050567,221,0 +170748050617,223,0 +170748050666,227,0 +170748050716,226,0 +170748050764,227,0 +170748050812,231,0 +170748050861,230,0 +170748050909,229,0 +170748050959,228,0 +170748051008,228,0 +170748051056,216,0 +170748051104,216,0 +170748051154,218,0 +170748051203,218,0 +170748051251,221,0 +170748051299,221,0 +170748051347,222,0 +170748051397,222,0 +170748051445,226,0 +170748051494,226,0 +170748051542,226,0 +170748051590,227,0 +170748051639,230,0 +170748051687,229,0 +170748051737,228,0 +170748051785,230,0 +170748051833,227,0 +170748051881,215,0 +170748051930,218,0 +170748051978,219,0 +170748052028,219,0 +170748052077,221,0 +170748052125,225,0 +170748052175,224,0 +170748052223,224,0 +170748052271,227,0 +170748052319,230,0 +170748052367,231,0 +170748052416,230,0 +170748052466,230,0 +170748052515,231,0 +170748052563,233,0 +170748052613,228,0 +170748052661,227,0 +170748052710,217,0 +170748052758,215,0 +170748052806,219,0 +170748052856,219,0 +170748052904,222,0 +170748052952,223,0 +170748053000,224,0 +170748053048,226,0 +170748053096,225,0 +170748053144,226,0 +170748053194,227,0 +170748053243,229,0 +170748053291,229,0 +170748053339,229,0 +170748053387,229,0 +170748053437,230,0 +170748053485,228,0 +170748053534,217,0 +170748053584,216,0 +170748053632,217,0 +170748053681,218,0 +170748053729,221,0 +170748053777,221,0 +170748053826,221,0 +170748053876,223,0 +170748053924,226,0 +170748053972,225,0 +170748054022,227,0 +170748054070,228,0 +170748054119,227,0 +170748054167,228,0 +170748054215,228,0 +170748054263,229,0 +170748054313,228,0 +170748054361,216,0 +170748054408,216,0 +170748054456,217,0 +170748054506,218,0 +170748054555,220,0 +170748054605,220,0 +170748054653,223,0 +170748054701,224,0 +170748054750,225,0 +170748054798,223,0 +170748054846,225,0 +170748054896,227,0 +170748054944,227,0 +170748054992,228,0 +170748055040,230,0 +170748055088,225,0 +170748055136,227,0 +170748055184,216,0 +170748055233,216,0 +170748055283,217,0 +170748055331,218,0 +170748055379,218,0 +170748055427,219,0 +170748055475,221,0 +170748055523,225,0 +170748055572,225,0 +170748055622,228,0 +170748055670,225,0 +170748055719,224,0 +170748055767,226,0 +170748055817,229,0 +170748055866,228,0 +170748055916,226,0 +170748055965,227,0 +170748056013,216,0 +170748056063,217,0 +170748056112,218,0 +170748056162,219,0 +170748056210,219,0 +170748056258,221,0 +170748056306,223,0 +170748056355,224,0 +170748056403,224,0 +170748056453,225,0 +170748056501,226,0 +170748056549,227,0 +170748056597,227,0 +170748056645,228,0 +170748056694,228,0 +170748056742,228,0 +170748056790,224,0 +170748056838,219,0 +170748056887,219,0 +170748056935,221,0 +170748056983,222,0 +170748057031,223,0 +170748057079,224,0 +170748057127,225,0 +170748057175,227,0 +170748057223,227,0 +170748057272,226,0 +170748057320,228,0 +170748057368,228,0 +170748057416,228,0 +170748057464,228,0 +170748057514,227,0 +170748057562,228,0 +170748057610,220,0 +170748057659,222,0 +170748057707,224,0 +170748057757,224,0 +170748057806,225,0 +170748057856,227,0 +170748057904,226,0 +170748057953,227,0 +170748058003,227,0 +170748058051,230,0 +170748058100,230,0 +170748058150,230,0 +170748058200,229,0 +170748058248,231,0 +170748058297,228,0 +170748058345,228,0 +170748058393,226,0 +170748058441,222,0 +170748058491,222,0 +170748058540,222,0 +170748058590,223,0 +170748058638,224,0 +170748058686,225,0 +170748058734,223,0 +170748058782,226,0 +170748058831,228,0 +170748058881,228,0 +170748058930,228,0 +170748058980,230,0 +170748059029,233,0 +170748059079,231,0 +170748059127,231,0 +170748059176,227,0 +170748059224,227,0 +170748059272,218,0 +170748059320,218,0 +170748059370,221,0 +170748059418,221,0 +170748059466,223,0 +170748059515,223,0 +170748059563,226,0 +170748059611,223,0 +170748059659,226,0 +170748059709,227,0 +170748059757,228,0 +170748059806,228,0 +170748059854,231,0 +170748059902,231,0 +170748059950,241,0 +170748059998,228,0 +170748060046,227,0 +170748060095,218,0 +170748060143,217,0 +170748060193,219,0 +170748060242,220,0 +170748060292,222,0 +170748060341,222,0 +170748060391,224,0 +170748060439,226,0 +170748060487,225,0 +170748060535,227,0 +170748060583,226,0 +170748060631,231,0 +170748060680,231,0 +170748060730,229,0 +170748060777,231,0 +170748060825,230,0 +170748060873,228,0 +170748060921,218,0 +170748060969,218,0 +170748061019,219,0 +170748061067,219,0 +170748061114,222,0 +170748061164,223,0 +170748061212,223,0 +170748061260,222,0 +170748061307,226,0 +170748061355,227,0 +170748061403,227,0 +170748061451,227,0 +170748061501,229,0 +170748061550,233,0 +170748061600,228,0 +170748061648,228,0 +170748061697,228,0 +170748061745,218,0 +170748061795,217,0 +170748061844,219,0 +170748061894,220,0 +170748061942,221,0 +170748061990,221,0 +170748062038,224,0 +170748062087,224,0 +170748062135,227,0 +170748062183,225,0 +170748062231,227,0 +170748062279,230,0 +170748062327,227,0 +170748062375,232,0 +170748062423,228,0 +170748062471,229,0 +170748062519,229,0 +170748062567,219,0 +170748062616,220,0 +170748062664,221,0 +170748062714,222,0 +170748062764,222,0 +170748062811,224,0 +170748062859,225,0 +170748062909,225,0 +170748062957,225,0 +170748063005,226,0 +170748063054,227,0 +170748063104,227,0 +170748063153,228,0 +170748063201,229,0 +170748063249,227,0 +170748063299,228,0 +170748063348,228,0 +170748063396,218,0 +170748063444,219,0 +170748063494,222,0 +170748063543,222,0 +170748063591,224,0 +170748063639,224,0 +170748063687,228,0 +170748063735,228,0 +170748063783,228,0 +170748063832,230,0 +170748063880,232,0 +170748063928,231,0 +170748063978,229,0 +170748064027,232,0 +170748064075,228,0 +170748064123,230,0 +170748064171,227,0 +170748064220,219,0 +170748064268,219,0 +170748064318,221,0 +170748064367,220,0 +170748064415,223,0 +170748064463,224,0 +170748064512,228,0 +170748064562,228,0 +170748064611,226,0 +170748064659,228,0 +170748064709,228,0 +170748064758,227,0 +170748064806,229,0 +170748064854,230,0 +170748064902,231,0 +170748064951,229,0 +170748064999,227,0 +170748065047,218,0 +170748065095,218,0 +170748065145,219,0 +170748065193,220,0 +170748065241,221,0 +170748065289,223,0 +170748065337,225,0 +170748065384,225,0 +170748065434,226,0 +170748065483,228,0 +170748065533,230,0 +170748065583,230,0 +170748065632,229,0 +170748065680,229,0 +170748065730,228,0 +170748065778,226,0 +170748065827,225,0 +170748065875,217,0 +170748065923,219,0 +170748065972,223,0 +170748066020,220,0 +170748066070,223,0 +170748066118,226,0 +170748066166,226,0 +170748066214,226,0 +170748066263,227,0 +170748066313,227,0 +170748066361,230,0 +170748066410,231,0 +170748066460,231,0 +170748066509,229,0 +170748066559,230,0 +170748066607,228,0 +170748066655,219,0 +170748066703,217,0 +170748066751,217,0 +170748066799,219,0 +170748066848,220,0 +170748066896,220,0 +170748066946,218,0 +170748066994,222,0 +170748067043,224,0 +170748067091,226,0 +170748067141,227,0 +170748067189,228,0 +170748067238,229,0 +170748067288,228,0 +170748067337,229,0 +170748067385,228,0 +170748067433,226,0 +170748067481,225,0 +170748067531,216,0 +170748067579,217,0 +170748067628,218,0 +170748067678,218,0 +170748067726,220,0 +170748067774,220,0 +170748067822,223,0 +170748067871,224,0 +170748067921,226,0 +170748067970,226,0 +170748068018,230,0 +170748068066,227,0 +170748068114,226,0 +170748068162,227,0 +170748068210,229,0 +170748068258,227,0 +170748068306,217,0 +170748068354,216,0 +170748068402,216,0 +170748068451,217,0 +170748068501,218,0 +170748068549,219,0 +170748068598,222,0 +170748068646,221,0 +170748068696,222,0 +170748068745,227,0 +170748068795,226,0 +170748068845,230,0 +170748068894,228,0 +170748068944,227,0 +170748068993,228,0 +170748069041,228,0 +170748069091,226,0 +170748069140,217,0 +170748069190,216,0 +170748069238,216,0 +170748069286,218,0 +170748069335,219,0 +170748069385,223,0 +170748069433,220,0 +170748069482,221,0 +170748069530,222,0 +170748069578,225,0 +170748069626,225,0 +170748069674,227,0 +170748069723,226,0 +170748069773,226,0 +170748069823,228,0 +170748069870,228,0 +170748069920,228,0 +170748069968,218,0 +170748070018,216,0 +170748070065,217,0 +170748070115,218,0 +170748070164,220,0 +170748070214,220,0 +170748070262,221,0 +170748070311,224,0 +170748070359,223,0 +170748070407,228,0 +170748070455,225,0 +170748070503,229,0 +170748070553,228,0 +170748070602,225,0 +170748070652,219,0 +170748070701,228,0 +170748070751,227,0 +170748070799,217,0 +170748070848,217,0 +170748070896,220,0 +170748070944,223,0 +170748070992,222,0 +170748071040,222,0 +170748071088,223,0 +170748071136,224,0 +170748071184,225,0 +170748071232,226,0 +170748071282,228,0 +170748071331,228,0 +170748071379,227,0 +170748071427,229,0 +170748071477,227,0 +170748071525,228,0 +170748071573,226,0 +170748071621,215,0 +170748071669,219,0 +170748071718,221,0 +170748071766,222,0 +170748071816,220,0 +170748071865,224,0 +170748071913,223,0 +170748071961,226,0 +170748072009,225,0 +170748072059,227,0 +170748072108,227,0 +170748072158,228,0 +170748072207,228,0 +170748072257,228,0 +170748072305,228,0 +170748072354,227,0 +170748072404,227,0 +170748072453,223,0 +170748072503,224,0 +170748072551,224,0 +170748072599,225,0 +170748072647,227,0 +170748072696,227,0 +170748072746,229,0 +170748072795,228,0 +170748072843,229,0 +170748072893,230,0 +170748072942,228,0 +170748072990,230,0 +170748073038,230,0 +170748073086,228,0 +170748073135,229,0 +170748073185,228,0 +170748073233,227,0 +170748073282,224,0 +170748073330,225,0 +170748073378,226,0 +170748073426,226,0 +170748073476,227,0 +170748073524,228,0 +170748073573,227,0 +170748073621,228,0 +170748073669,229,0 +170748073719,229,0 +170748073768,232,0 +170748073818,229,0 +170748073866,228,0 +170748073914,228,0 +170748073963,232,0 +170748074011,228,0 +170748074059,226,0 +170748074107,218,0 +170748074155,221,0 +170748074204,222,0 +170748074252,225,0 +170748074302,227,0 +170748074350,224,0 +170748074399,225,0 +170748074447,227,0 +170748074495,227,0 +170748074544,228,0 +170748074594,231,0 +170748074643,228,0 +170748074693,230,0 +170748074741,229,0 +170748074790,228,0 +170748074838,228,0 +170748074886,217,0 +170748074936,216,0 +170748074984,217,0 +170748075033,219,0 +170748075081,220,0 +170748075131,221,0 +170748075180,221,0 +170748075230,225,0 +170748075279,224,0 +170748075329,226,0 +170748075378,228,0 +170748075426,226,0 +170748075474,228,0 +170748075522,230,0 +170748075570,229,0 +170748075618,229,0 +170748075666,228,0 +170748075714,217,0 +170748075764,217,0 +170748075813,217,0 +170748075861,219,0 +170748075911,219,0 +170748075960,221,0 +170748076010,221,0 +170748076058,224,0 +170748076106,225,0 +170748076154,228,0 +170748076202,225,0 +170748076250,228,0 +170748076299,229,0 +170748076347,231,0 +170748076397,229,0 +170748076446,231,0 +170748076496,229,0 +170748076545,218,0 +170748076595,217,0 +170748076644,219,0 +170748076694,221,0 +170748076743,222,0 +170748076793,222,0 +170748076842,223,0 +170748076892,223,0 +170748076940,226,0 +170748076989,226,0 +170748077039,227,0 +170748077089,228,0 +170748077137,228,0 +170748077184,230,0 +170748077232,228,0 +170748077280,229,0 +170748077328,227,0 +170748077378,217,0 +170748077426,217,0 +170748077475,218,0 +170748077525,220,0 +170748077575,220,0 +170748077624,222,0 +170748077674,223,0 +170748077721,224,0 +170748077771,225,0 +170748077819,228,0 +170748077867,228,0 +170748077915,230,0 +170748077963,230,0 +170748078011,230,0 +170748078059,229,0 +170748078108,229,0 +170748078156,227,0 +170748078204,217,0 +170748078254,217,0 +170748078303,218,0 +170748078351,220,0 +170748078399,221,0 +170748078449,223,0 +170748078498,223,0 +170748078548,226,0 +170748078597,229,0 +170748078647,225,0 +170748078696,228,0 +170748078744,230,0 +170748078794,232,0 +170748078843,231,0 +170748078893,228,0 +170748078943,229,0 +170748078992,227,0 +170748079040,217,0 +170748079090,217,0 +170748079138,218,0 +170748079185,219,0 +170748079233,220,0 +170748079281,221,0 +170748079331,222,0 +170748079379,222,0 +170748079428,223,0 +170748079476,229,0 +170748079526,226,0 +170748079574,229,0 +170748079622,231,0 +170748079670,230,0 +170748079719,229,0 +170748079769,230,0 +170748079817,228,0 +170748079865,216,0 +170748079913,216,0 +170748079961,217,0 +170748080009,218,0 +170748080058,220,0 +170748080106,221,0 +170748080154,223,0 +170748080204,223,0 +170748080253,224,0 +170748080303,225,0 +170748080352,226,0 +170748080400,227,0 +170748080448,232,0 +170748080498,229,0 +170748080547,230,0 +170748080595,228,0 +170748080643,229,0 +170748080693,216,0 +170748080741,216,0 +170748080790,217,0 +170748080838,218,0 +170748080888,220,0 +170748080937,220,0 +170748080985,223,0 +170748081033,223,0 +170748081083,223,0 +170748081132,225,0 +170748081182,228,0 +170748081231,229,0 +170748081279,229,0 +170748081329,230,0 +170748081378,228,0 +170748081426,228,0 +170748081474,219,0 +170748081522,216,0 +170748081570,216,0 +170748081618,216,0 +170748081666,216,0 +170748081714,218,0 +170748081764,219,0 +170748081813,221,0 +170748081863,223,0 +170748081912,223,0 +170748081960,223,0 +170748082008,225,0 +170748082058,227,0 +170748082106,227,0 +170748082155,226,0 +170748082203,227,0 +170748082252,229,0 +170748082300,219,0 +170748082348,217,0 +170748082398,220,0 +170748082446,220,0 +170748082493,218,0 +170748082543,218,0 +170748082593,223,0 +170748082642,224,0 +170748082692,224,0 +170748082740,225,0 +170748082789,228,0 +170748082837,227,0 +170748082886,229,0 +170748082934,230,0 +170748082984,229,0 +170748083034,229,0 +170748083082,228,0 +170748083130,220,0 +170748083179,220,0 +170748083229,222,0 +170748083277,223,0 +170748083327,225,0 +170748083376,226,0 +170748083424,227,0 +170748083474,226,0 +170748083523,226,0 +170748083571,227,0 +170748083621,225,0 +170748083668,228,0 +170748083718,229,0 +170748083766,228,0 +170748083814,229,0 +170748083862,228,0 +170748083910,229,0 +170748083958,222,0 +170748084007,222,0 +170748084057,223,0 +170748084106,224,0 +170748084156,224,0 +170748084205,227,0 +170748084255,227,0 +170748084303,226,0 +170748084351,229,0 +170748084399,230,0 +170748084447,229,0 +170748084495,229,0 +170748084542,229,0 +170748084590,230,0 +170748084638,228,0 +170748084688,229,0 +170748084736,227,0 +170748084784,219,0 +170748084833,221,0 +170748084883,224,0 +170748084933,223,0 +170748084981,225,0 +170748085030,227,0 +170748085078,227,0 +170748085126,230,0 +170748085174,227,0 +170748085222,230,0 +170748085272,230,0 +170748085319,229,0 +170748085367,226,0 +170748085415,230,0 +170748085465,228,0 +170748085515,229,0 +170748085564,227,0 +170748085614,218,0 +170748085663,217,0 +170748085713,218,0 +170748085762,220,0 +170748085810,222,0 +170748085858,223,0 +170748085906,222,0 +170748085956,226,0 +170748086004,227,0 +170748086052,228,0 +170748086101,226,0 +170748086149,228,0 +170748086199,230,0 +170748086248,229,0 +170748086298,228,0 +170748086346,227,0 +170748086395,227,0 +170748086445,217,0 +170748086494,216,0 +170748086544,218,0 +170748086592,220,0 +170748086640,220,0 +170748086689,222,0 +170748086737,224,0 +170748086785,223,0 +170748086833,230,0 +170748086883,225,0 +170748086932,229,0 +170748086980,227,0 +170748087028,228,0 +170748087076,228,0 +170748087124,231,0 +170748087174,230,0 +170748087222,228,0 +170748087270,217,0 +170748087319,217,0 +170748087369,216,0 +170748087418,217,0 +170748087468,220,0 +170748087517,221,0 +170748087567,222,0 +170748087616,222,0 +170748087664,224,0 +170748087714,225,0 +170748087763,227,0 +170748087811,226,0 +170748087859,228,0 +170748087909,228,0 +170748087957,228,0 +170748088005,230,0 +170748088053,227,0 +170748088102,221,0 +170748088152,220,0 +170748088201,222,0 +170748088249,222,0 +170748088299,224,0 +170748088348,225,0 +170748088398,225,0 +170748088446,226,0 +170748088494,227,0 +170748088543,228,0 +170748088591,228,0 +170748088641,228,0 +170748088689,228,0 +170748088737,230,0 +170748088786,228,0 +170748088834,227,0 +170748088884,228,0 +170748088932,225,0 +170748088980,226,0 +170748089029,225,0 +170748089079,226,0 +170748089129,226,0 +170748089177,227,0 +170748089226,228,0 +170748089276,229,0 +170748089325,230,0 +170748089373,232,0 +170748089423,228,0 +170748089472,230,0 +170748089522,229,0 +170748089570,230,0 +170748089619,228,0 +170748089669,227,0 +170748089719,226,0 +170748089767,221,0 +170748089816,221,0 +170748089864,222,0 +170748089912,224,0 +170748089962,225,0 +170748090011,224,0 +170748090061,226,0 +170748090110,227,0 +170748090160,228,0 +170748090209,230,0 +170748090259,230,0 +170748090307,231,0 +170748090355,232,0 +170748090404,229,0 +170748090454,230,0 +170748090504,230,0 +170748090553,228,0 +170748090601,218,0 +170748090649,217,0 +170748090699,218,0 +170748090747,220,0 +170748090796,221,0 +170748090846,222,0 +170748090895,223,0 +170748090943,225,0 +170748090993,225,0 +170748091041,226,0 +170748091089,227,0 +170748091138,228,0 +170748091186,229,0 +170748091236,228,0 +170748091284,233,0 +170748091333,229,0 +170748091381,227,0 +170748091431,217,0 +170748091479,216,0 +170748091527,216,0 +170748091574,217,0 +170748091622,219,0 +170748091672,219,0 +170748091720,220,0 +170748091769,221,0 +170748091817,223,0 +170748091865,224,0 +170748091913,226,0 +170748091961,226,0 +170748092011,228,0 +170748092060,229,0 +170748092108,228,0 +170748092158,228,0 +170748092206,228,0 +170748092254,221,0 +170748092303,216,0 +170748092351,217,0 +170748092401,216,0 +170748092450,218,0 +170748092500,219,0 +170748092548,219,0 +170748092596,220,0 +170748092644,221,0 +170748092693,223,0 +170748092743,226,0 +170748092792,224,0 +170748092840,221,0 +170748092888,226,0 +170748092938,226,0 +170748092988,226,0 +170748093035,228,0 +170748093083,228,0 +170748093131,217,0 +170748093181,217,0 +170748093229,218,0 +170748093278,220,0 +170748093328,221,0 +170748093378,223,0 +170748093425,223,0 +170748093475,224,0 +170748093525,223,0 +170748093574,231,0 +170748093624,225,0 +170748093672,228,0 +170748093721,227,0 +170748093771,230,0 +170748093819,228,0 +170748093868,227,0 +170748093918,227,0 +170748093967,218,0 +170748094015,218,0 +170748094065,220,0 +170748094114,220,0 +170748094164,223,0 +170748094212,224,0 +170748094261,225,0 +170748094309,226,0 +170748094357,227,0 +170748094407,228,0 +170748094456,228,0 +170748094504,230,0 +170748094554,230,0 +170748094603,229,0 +170748094651,230,0 +170748094699,228,0 +170748094747,226,0 +170748094795,217,0 +170748094843,218,0 +170748094893,220,0 +170748094941,221,0 +170748094989,222,0 +170748095037,224,0 +170748095086,222,0 +170748095136,224,0 +170748095185,226,0 +170748095233,226,0 +170748095281,226,0 +170748095329,225,0 +170748095379,230,0 +170748095427,231,0 +170748095476,228,0 +170748095524,228,0 +170748095574,227,0 +170748095622,218,0 +170748095670,218,0 +170748095718,219,0 +170748095767,221,0 +170748095817,222,0 +170748095866,223,0 +170748095914,223,0 +170748095964,224,0 +170748096013,228,0 +170748096061,226,0 +170748096109,227,0 +170748096159,230,0 +170748096208,228,0 +170748096256,230,0 +170748096304,233,0 +170748096352,230,0 +170748096402,228,0 +170748096451,218,0 +170748096499,218,0 +170748096547,219,0 +170748096595,220,0 +170748096643,220,0 +170748096693,222,0 +170748096742,223,0 +170748096790,224,0 +170748096838,225,0 +170748096888,225,0 +170748096936,227,0 +170748096985,229,0 +170748097033,231,0 +170748097083,229,0 +170748097131,228,0 +170748097179,230,0 +170748097228,227,0 +170748097278,218,0 +170748097326,216,0 +170748097375,218,0 +170748097425,219,0 +170748097473,217,0 +170748097521,223,0 +170748097569,225,0 +170748097618,224,0 +170748097666,226,0 +170748097716,227,0 +170748097764,228,0 +170748097812,228,0 +170748097860,231,0 +170748097909,228,0 +170748097959,229,0 +170748098007,229,0 +170748098055,228,0 +170748098104,221,0 +170748098152,216,0 +170748098200,216,0 +170748098250,219,0 +170748098299,219,0 +170748098349,221,0 +170748098398,222,0 +170748098446,224,0 +170748098494,226,0 +170748098542,227,0 +170748098590,228,0 +170748098638,228,0 +170748098686,228,0 +170748098736,231,0 +170748098785,228,0 +170748098833,230,0 +170748098881,232,0 +170748098930,226,0 +170748098980,216,0 +170748099030,215,0 +170748099079,218,0 +170748099129,219,0 +170748099178,220,0 +170748099226,222,0 +170748099274,222,0 +170748099324,225,0 +170748099373,226,0 +170748099423,227,0 +170748099471,230,0 +170748099519,227,0 +170748099568,227,0 +170748099616,229,0 +170748099664,228,0 +170748099714,228,0 +170748099762,227,0 +170748099809,216,0 +170748099859,216,0 +170748099907,216,0 +170748099955,217,0 +170748100005,218,0 +170748100054,220,0 +170748100104,221,0 +170748100152,222,0 +170748100200,224,0 +170748100249,224,0 +170748100297,225,0 +170748100345,227,0 +170748100393,227,0 +170748100443,228,0 +170748100490,226,0 +170748100540,228,0 +170748100590,227,0 +170748100639,216,0 +170748100689,216,0 +170748100737,216,0 +170748100786,216,0 +170748100834,216,0 +170748100882,216,0 +170748100932,218,0 +170748100979,219,0 +170748101029,220,0 +170748101077,221,0 +170748101125,225,0 +170748101174,225,0 +170748101222,230,0 +170748101270,227,0 +170748101319,225,0 +170748101367,227,0 +170748101415,227,0 +170748101463,218,0 +170748101513,216,0 +170748101560,216,0 +170748101610,218,0 +170748101659,221,0 +170748101707,220,0 +170748101755,220,0 +170748101803,221,0 +170748101851,222,0 +170748101899,225,0 +170748101949,225,0 +170748101998,226,0 +170748102048,228,0 +170748102097,226,0 +170748102147,227,0 +170748102196,227,0 +170748102244,228,0 +170748102292,218,0 +170748102342,216,0 +170748102391,217,0 +170748102439,218,0 +170748102487,220,0 +170748102535,220,0 +170748102585,221,0 +170748102634,223,0 +170748102684,223,0 +170748102732,224,0 +170748102780,225,0 +170748102828,228,0 +170748102877,226,0 +170748102927,229,0 +170748102976,228,0 +170748103026,232,0 +170748103075,226,0 +170748103125,220,0 +170748103174,217,0 +170748103222,218,0 +170748103272,219,0 +170748103321,218,0 +170748103371,222,0 +170748103421,222,0 +170748103469,224,0 +170748103518,224,0 +170748103568,225,0 +170748103616,225,0 +170748103664,227,0 +170748103713,227,0 +170748103763,229,0 +170748103812,228,0 +170748103862,228,0 +170748103910,227,0 +170748103958,222,0 +170748104005,219,0 +170748104053,221,0 +170748104101,222,0 +170748104149,223,0 +170748104197,224,0 +170748104245,224,0 +170748104293,226,0 +170748104341,227,0 +170748104388,226,0 +170748104436,226,0 +170748104484,228,0 +170748104534,229,0 +170748104582,228,0 +170748104632,227,0 +170748104681,227,0 +170748104731,228,0 +170748104779,226,0 +170748104828,224,0 +170748104878,225,0 +170748104926,226,0 +170748104975,226,0 +170748105025,227,0 +170748105073,227,0 +170748105121,229,0 +170748105169,228,0 +170748105218,228,0 +170748105268,227,0 +170748105316,228,0 +170748105364,228,0 +170748105412,229,0 +170748105461,228,0 +170748105511,228,0 +170748105559,229,0 +170748105608,226,0 +170748105658,222,0 +170748105707,222,0 +170748105757,225,0 +170748105805,225,0 +170748105853,225,0 +170748105901,230,0 +170748105950,227,0 +170748105998,227,0 +170748106048,229,0 +170748106095,230,0 +170748106143,231,0 +170748106193,231,0 +170748106241,229,0 +170748106289,229,0 +170748106338,231,0 +170748106386,227,0 +170748106434,226,0 +170748106484,219,0 +170748106531,219,0 +170748106581,219,0 +170748106629,222,0 +170748106677,222,0 +170748106724,224,0 +170748106774,223,0 +170748106823,224,0 +170748106873,225,0 +170748106922,228,0 +170748106970,229,0 +170748107020,230,0 +170748107068,231,0 +170748107116,229,0 +170748107164,230,0 +170748107212,231,0 +170748107261,227,0 +170748107311,219,0 +170748107359,217,0 +170748107408,218,0 +170748107458,220,0 +170748107506,221,0 +170748107554,222,0 +170748107603,223,0 +170748107651,224,0 +170748107699,223,0 +170748107747,225,0 +170748107797,226,0 +170748107845,231,0 +170748107894,228,0 +170748107942,229,0 +170748107992,229,0 +170748108041,230,0 +170748108089,228,0 +170748108137,226,0 +170748108185,218,0 +170748108235,218,0 +170748108283,220,0 +170748108332,222,0 +170748108380,222,0 +170748108430,223,0 +170748108478,223,0 +170748108527,226,0 +170748108577,225,0 +170748108625,226,0 +170748108674,228,0 +170748108724,227,0 +170748108773,230,0 +170748108823,229,0 +170748108872,229,0 +170748108922,228,0 +170748108971,218,0 +170748109021,216,0 +170748109071,217,0 +170748109120,219,0 +170748109168,221,0 +170748109218,222,0 +170748109267,223,0 +170748109315,224,0 +170748109363,224,0 +170748109411,226,0 +170748109459,227,0 +170748109507,229,0 +170748109557,228,0 +170748109604,231,0 +170748109654,229,0 +170748109702,230,0 +170748109750,228,0 +170748109798,227,0 +170748109847,217,0 +170748109895,217,0 +170748109945,218,0 +170748109994,224,0 +170748110042,222,0 +170748110090,223,0 +170748110138,223,0 +170748110186,227,0 +170748110236,226,0 +170748110284,229,0 +170748110333,236,0 +170748110383,230,0 +170748110432,228,0 +170748110480,229,0 +170748110529,229,0 +170748110579,229,0 +170748110627,226,0 +170748110675,216,0 +170748110724,218,0 +170748110772,218,0 +170748110820,220,0 +170748110868,221,0 +170748110916,223,0 +170748110964,225,0 +170748111014,227,0 +170748111063,225,0 +170748111113,227,0 +170748111162,226,0 +170748111212,227,0 +170748111261,228,0 +170748111309,228,0 +170748111359,226,0 +170748111408,229,0 +170748111456,228,0 +170748111506,219,0 +170748111555,220,0 +170748111603,221,0 +170748111653,223,0 +170748111701,225,0 +170748111749,225,0 +170748111798,223,0 +170748111846,228,0 +170748111894,227,0 +170748111944,227,0 +170748111993,228,0 +170748112041,228,0 +170748112091,228,0 +170748112139,229,0 +170748112187,229,0 +170748112235,228,0 +170748112284,229,0 +170748112334,218,0 +170748112382,217,0 +170748112431,218,0 +170748112479,220,0 +170748112527,219,0 +170748112577,220,0 +170748112625,222,0 +170748112674,223,0 +170748112722,226,0 +170748112772,225,0 +170748112820,226,0 +170748112868,227,0 +170748112915,226,0 +170748112965,231,0 +170748113015,231,0 +170748113064,229,0 +170748113114,225,0 +170748113163,218,0 +170748113213,216,0 +170748113262,217,0 +170748113312,217,0 +170748113360,219,0 +170748113409,219,0 +170748113457,220,0 +170748113505,222,0 +170748113553,222,0 +170748113601,224,0 +170748113649,225,0 +170748113697,228,0 +170748113745,231,0 +170748113793,229,0 +170748113841,228,0 +170748113889,227,0 +170748113937,228,0 +170748113986,226,0 +170748114036,217,0 +170748114084,217,0 +170748114133,219,0 +170748114181,220,0 +170748114229,223,0 +170748114279,224,0 +170748114327,223,0 +170748114376,225,0 +170748114426,226,0 +170748114475,227,0 +170748114523,226,0 +170748114571,228,0 +170748114621,229,0 +170748114670,228,0 +170748114720,228,0 +170748114768,228,0 +170748114816,227,0 +170748114865,216,0 +170748114913,216,0 +170748114963,217,0 +170748115012,217,0 +170748115062,218,0 +170748115111,220,0 +170748115159,221,0 +170748115207,222,0 +170748115257,226,0 +170748115305,228,0 +170748115354,226,0 +170748115404,227,0 +170748115452,231,0 +170748115500,227,0 +170748115549,228,0 +170748115599,228,0 +170748115647,229,0 +170748115696,216,0 +170748115744,216,0 +170748115792,216,0 +170748115840,217,0 +170748115888,218,0 +170748115936,221,0 +170748115986,219,0 +170748116034,222,0 +170748116083,223,0 +170748116133,224,0 +170748116183,226,0 +170748116232,227,0 +170748116282,226,0 +170748116332,231,0 +170748116380,227,0 +170748116427,228,0 +170748116475,227,0 +170748116523,217,0 +170748116573,216,0 +170748116621,216,0 +170748116669,217,0 +170748116717,219,0 +170748116766,220,0 +170748116816,221,0 +170748116864,223,0 +170748116913,224,0 +170748116963,224,0 +170748117011,226,0 +170748117059,228,0 +170748117108,229,0 +170748117158,228,0 +170748117206,228,0 +170748117255,228,0 +170748117303,227,0 +170748117351,217,0 +170748117399,216,0 +170748117447,216,0 +170748117495,216,0 +170748117544,219,0 +170748117594,219,0 +170748117642,220,0 +170748117690,221,0 +170748117739,223,0 +170748117789,225,0 +170748117837,228,0 +170748117885,228,0 +170748117933,229,0 +170748117980,228,0 +170748118028,228,0 +170748118076,228,0 +170748118124,227,0 +170748118174,217,0 +170748118223,216,0 +170748118271,216,0 +170748118321,217,0 +170748118369,219,0 +170748118417,220,0 +170748118465,221,0 +170748118514,221,0 +170748118562,223,0 +170748118610,225,0 +170748118660,226,0 +170748118709,226,0 +170748118757,228,0 +170748118805,227,0 +170748118853,227,0 +170748118901,229,0 +170748118948,227,0 +170748118998,227,0 +170748119046,216,0 +170748119094,216,0 +170748119142,215,0 +170748119191,216,0 +170748119239,217,0 +170748119287,219,0 +170748119335,219,0 +170748119383,219,0 +170748119432,221,0 +170748119480,222,0 +170748119528,225,0 +170748119576,226,0 +170748119624,226,0 +170748119671,228,0 +170748119719,218,0 +170748119767,227,0 +170748119817,228,0 +170748119865,218,0 +170748119912,216,0 +170748119960,217,0 +170748120008,218,0 +170748120056,219,0 +170748120104,221,0 +170748120152,221,0 +170748120200,222,0 +170748120248,223,0 +170748120296,225,0 +170748120344,225,0 +170748120392,228,0 +170748120442,226,0 +170748120489,227,0 +170748120537,227,0 +170748120585,230,0 +170748120635,226,0 +170748120684,224,0 +170748120732,217,0 +170748120780,217,0 +170748120828,219,0 +170748120878,220,0 +170748120927,220,0 +170748120977,222,0 +170748121026,223,0 +170748121074,224,0 +170748121124,225,0 +170748121174,226,0 +170748121223,225,0 +170748121273,227,0 +170748121321,228,0 +170748121369,228,0 +170748121416,227,0 +170748121464,227,0 +170748121512,226,0 +170748121562,221,0 +170748121610,222,0 +170748121658,223,0 +170748121707,224,0 +170748121755,224,0 +170748121803,226,0 +170748121851,226,0 +170748121899,227,0 +170748121947,227,0 +170748121995,227,0 +170748122043,227,0 +170748122091,227,0 +170748122140,228,0 +170748122188,228,0 +170748122238,228,0 +170748122285,227,0 +170748122333,227,0 +170748122383,221,0 +170748122431,223,0 +170748122479,224,0 +170748122527,225,0 +170748122576,225,0 +170748122626,227,0 +170748122674,226,0 +170748122722,227,0 +170748122771,229,0 +170748122819,228,0 +170748122867,229,0 +170748122917,230,0 +170748122965,230,0 +170748123015,230,0 +170748123064,230,0 +170748123113,228,0 +170748123161,227,0 +170748123209,220,0 +170748123259,220,0 +170748123308,221,0 +170748123358,221,0 +170748123406,222,0 +170748123455,223,0 +170748123503,224,0 +170748123553,225,0 +170748123602,226,0 +170748123652,228,0 +170748123700,229,0 +170748123749,229,0 +170748123799,229,0 +170748123849,229,0 +170748123896,229,0 +170748123946,227,0 +170748123994,227,0 +170748124044,219,0 +170748124093,219,0 +170748124141,221,0 +170748124191,223,0 +170748124239,223,0 +170748124288,224,0 +170748124338,223,0 +170748124387,227,0 +170748124437,225,0 +170748124486,230,0 +170748124534,226,0 +170748124582,229,0 +170748124630,229,0 +170748124680,230,0 +170748124728,231,0 +170748124776,230,0 +170748124824,228,0 +170748124873,218,0 +170748124923,219,0 +170748124971,219,0 +170748125019,221,0 +170748125068,221,0 +170748125118,222,0 +170748125167,224,0 +170748125217,225,0 +170748125265,225,0 +170748125313,228,0 +170748125361,231,0 +170748125410,228,0 +170748125460,229,0 +170748125508,231,0 +170748125557,228,0 +170748125605,228,0 +170748125653,228,0 +170748125701,227,0 +170748125751,216,0 +170748125800,217,0 +170748125848,219,0 +170748125898,220,0 +170748125947,220,0 +170748125995,225,0 +170748126045,223,0 +170748126094,227,0 +170748126144,227,0 +170748126192,228,0 +170748126240,230,0 +170748126289,228,0 +170748126337,235,0 +170748126385,229,0 +170748126433,229,0 +170748126481,227,0 +170748126529,226,0 +170748126577,217,0 +170748126626,217,0 +170748126676,218,0 +170748126725,222,0 +170748126773,221,0 +170748126821,220,0 +170748126869,223,0 +170748126917,225,0 +170748126967,227,0 +170748127015,225,0 +170748127064,227,0 +170748127114,228,0 +170748127163,229,0 +170748127211,228,0 +170748127259,229,0 +170748127307,227,0 +170748127357,228,0 +170748127406,218,0 +170748127454,219,0 +170748127502,219,0 +170748127550,223,0 +170748127600,222,0 +170748127649,223,0 +170748127697,226,0 +170748127745,226,0 +170748127793,229,0 +170748127843,226,0 +170748127892,231,0 +170748127940,229,0 +170748127988,229,0 +170748128036,231,0 +170748128084,228,0 +170748128134,229,0 +170748128183,228,0 +170748128231,218,0 +170748128279,217,0 +170748128327,217,0 +170748128375,219,0 +170748128423,221,0 +170748128472,223,0 +170748128520,223,0 +170748128570,226,0 +170748128618,225,0 +170748128667,228,0 +170748128717,227,0 +170748128767,227,0 +170748128815,228,0 +170748128864,230,0 +170748128912,229,0 +170748128960,228,0 +170748129009,227,0 +170748129059,220,0 +170748129108,216,0 +170748129156,217,0 +170748129204,218,0 +170748129254,219,0 +170748129302,220,0 +170748129350,222,0 +170748129399,224,0 +170748129449,226,0 +170748129497,227,0 +170748129545,228,0 +170748129594,228,0 +170748129644,229,0 +170748129693,231,0 +170748129741,230,0 +170748129791,230,0 +170748129839,229,0 +170748129888,218,0 +170748129938,216,0 +170748129986,216,0 +170748130035,218,0 +170748130083,218,0 +170748130133,220,0 +170748130183,221,0 +170748130231,222,0 +170748130280,223,0 +170748130330,225,0 +170748130378,225,0 +170748130426,227,0 +170748130475,227,0 +170748130525,228,0 +170748130574,230,0 +170748130624,228,0 +170748130672,225,0 +170748130720,226,0 +170748130767,216,0 +170748130815,217,0 +170748130865,218,0 +170748130913,218,0 +170748130961,221,0 +170748131009,220,0 +170748131056,222,0 +170748131104,223,0 +170748131152,223,0 +170748131200,225,0 +170748131250,227,0 +170748131297,227,0 +170748131345,230,0 +170748131393,230,0 +170748131443,228,0 +170748131491,228,0 +170748131539,227,0 +170748131587,218,0 +170748131635,217,0 +170748131683,217,0 +170748131732,218,0 +170748131780,220,0 +170748131828,221,0 +170748131878,222,0 +170748131927,224,0 +170748131975,224,0 +170748132025,226,0 +170748132073,227,0 +170748132121,226,0 +170748132170,230,0 +170748132218,233,0 +170748132266,233,0 +170748132316,231,0 +170748132364,228,0 +170748132413,218,0 +170748132463,216,0 +170748132511,216,0 +170748132559,218,0 +170748132608,219,0 +170748132658,220,0 +170748132707,221,0 +170748132755,223,0 +170748132803,222,0 +170748132851,230,0 +170748132901,226,0 +170748132950,227,0 +170748132998,229,0 +170748133048,228,0 +170748133096,226,0 +170748133145,228,0 +170748133195,228,0 +170748133243,218,0 +170748133292,216,0 +170748133342,216,0 +170748133391,215,0 +170748133439,218,0 +170748133489,220,0 +170748133538,221,0 +170748133588,222,0 +170748133637,223,0 +170748133685,226,0 +170748133735,225,0 +170748133784,226,0 +170748133834,227,0 +170748133883,229,0 +170748133931,229,0 +170748133981,228,0 +170748134029,228,0 +170748134078,218,0 +170748134126,216,0 +170748134174,216,0 +170748134224,217,0 +170748134272,219,0 +170748134320,219,0 +170748134368,220,0 +170748134417,222,0 +170748134465,223,0 +170748134513,224,0 +170748134561,226,0 +170748134610,225,0 +170748134660,227,0 +170748134708,227,0 +170748134756,227,0 +170748134805,228,0 +170748134855,227,0 +170748134903,227,0 +170748134950,216,0 +170748134998,216,0 +170748135046,217,0 +170748135094,219,0 +170748135144,219,0 +170748135192,220,0 +170748135241,222,0 +170748135289,223,0 +170748135337,224,0 +170748135386,225,0 +170748135434,228,0 +170748135484,226,0 +170748135533,226,0 +170748135581,229,0 +170748135629,227,0 +170748135677,229,0 +170748135727,227,0 +170748135774,217,0 +170748135822,216,0 +170748135870,217,0 +170748135920,216,0 +170748135968,217,0 +170748136015,218,0 +170748136063,219,0 +170748136111,220,0 +170748136161,222,0 +170748136209,224,0 +170748136258,222,0 +170748136306,224,0 +170748136354,226,0 +170748136402,228,0 +170748136450,228,0 +170748136500,232,0 +170748136548,228,0 +170748136596,218,0 +170748136645,216,0 +170748136695,217,0 +170748136743,218,0 +170748136792,219,0 +170748136842,221,0 +170748136890,221,0 +170748136938,223,0 +170748136986,223,0 +170748137035,225,0 +170748137083,225,0 +170748137133,227,0 +170748137181,227,0 +170748137229,229,0 +170748137278,229,0 +170748137326,228,0 +170748137376,228,0 +170748137424,226,0 +170748137472,218,0 +170748137520,219,0 +170748137569,220,0 +170748137619,222,0 +170748137666,223,0 +170748137716,225,0 +170748137764,225,0 +170748137812,226,0 +170748137861,226,0 +170748137909,228,0 +170748137957,229,0 +170748138007,230,0 +170748138056,229,0 +170748138104,229,0 +170748138152,228,0 +170748138200,228,0 +170748138248,228,0 +170748138296,222,0 +170748138344,224,0 +170748138394,225,0 +170748138443,226,0 +170748138491,226,0 +170748138539,227,0 +170748138587,227,0 +170748138635,228,0 +170748138685,229,0 +170748138733,228,0 +170748138780,229,0 +170748138828,228,0 +170748138876,228,0 +170748138924,227,0 +170748138972,228,0 +170748139020,229,0 +170748139068,227,0 +170748139116,223,0 +170748139164,223,0 +170748139212,226,0 +170748139259,227,0 +170748139309,227,0 +170748139357,227,0 +170748139405,226,0 +170748139453,228,0 +170748139500,227,0 +170748139548,229,0 +170748139596,230,0 +170748139646,230,0 +170748139693,229,0 +170748139741,228,0 +170748139789,229,0 +170748139839,228,0 +170748139888,227,0 +170748139936,224,0 +170748139984,217,0 +170748140034,219,0 +170748140082,220,0 +170748140130,221,0 +170748140178,225,0 +170748140227,225,0 +170748140277,224,0 +170748140325,227,0 +170748140374,226,0 +170748140424,228,0 +170748140472,228,0 +170748140521,227,0 +170748140571,227,0 +170748140619,228,0 +170748140667,231,0 +170748140716,229,0 +170748140764,227,0 +170748140812,216,0 +170748140860,216,0 +170748140908,216,0 +170748140956,218,0 +170748141004,219,0 +170748141053,217,0 +170748141103,221,0 +170748141151,222,0 +170748141199,223,0 +170748141248,224,0 +170748141298,225,0 +170748141346,227,0 +170748141395,227,0 +170748141445,229,0 +170748141493,228,0 +170748141542,227,0 +170748141592,228,0 +170748141641,217,0 +170748141691,216,0 +170748141739,218,0 +170748141788,218,0 +170748141838,220,0 +170748141886,220,0 +170748141934,221,0 +170748141983,223,0 +170748142033,223,0 +170748142081,224,0 +170748142129,228,0 +170748142177,229,0 +170748142226,229,0 +170748142276,227,0 +170748142325,229,0 +170748142373,229,0 +170748142421,227,0 +170748142471,217,0 +170748142519,217,0 +170748142567,217,0 +170748142614,219,0 +170748142664,220,0 +170748142712,221,0 +170748142760,223,0 +170748142808,223,0 +170748142855,223,0 +170748142903,224,0 +170748142953,227,0 +170748143002,227,0 +170748143050,229,0 +170748143098,228,0 +170748143148,228,0 +170748143197,227,0 +170748143245,229,0 +170748143293,218,0 +170748143341,218,0 +170748143389,218,0 +170748143437,219,0 +170748143487,222,0 +170748143535,223,0 +170748143584,221,0 +170748143632,225,0 +170748143680,225,0 +170748143730,225,0 +170748143779,228,0 +170748143827,227,0 +170748143875,228,0 +170748143923,230,0 +170748143971,230,0 +170748144019,232,0 +170748144069,230,0 +170748144117,229,0 +170748144166,216,0 +170748144216,216,0 +170748144265,217,0 +170748144315,218,0 +170748144363,219,0 +170748144411,221,0 +170748144459,222,0 +170748144508,224,0 +170748144558,223,0 +170748144606,225,0 +170748144655,228,0 +170748144705,229,0 +170748144754,226,0 +170748144802,228,0 +170748144850,229,0 +170748144900,227,0 +170748144948,228,0 +170748144996,216,0 +170748145045,216,0 +170748145095,217,0 +170748145143,218,0 +170748145192,220,0 +170748145240,220,0 +170748145290,221,0 +170748145338,225,0 +170748145387,225,0 +170748145437,224,0 +170748145486,227,0 +170748145534,228,0 +170748145584,224,0 +170748145632,226,0 +170748145680,229,0 +170748145728,229,0 +170748145776,229,0 +170748145824,218,0 +170748145872,217,0 +170748145920,218,0 +170748145969,220,0 +170748146017,219,0 +170748146067,220,0 +170748146116,223,0 +170748146164,224,0 +170748146214,225,0 +170748146262,227,0 +170748146311,228,0 +170748146359,227,0 +170748146407,235,0 +170748146455,228,0 +170748146503,228,0 +170748146552,227,0 +170748146602,229,0 +170748146651,218,0 +170748146699,217,0 +170748146747,218,0 +170748146797,220,0 +170748146847,220,0 +170748146896,222,0 +170748146944,223,0 +170748146994,224,0 +170748147043,225,0 +170748147091,225,0 +170748147141,226,0 +170748147189,229,0 +170748147238,229,0 +170748147288,230,0 +170748147336,228,0 +170748147384,227,0 +170748147433,228,0 +170748147481,218,0 +170748147529,217,0 +170748147577,218,0 +170748147627,219,0 +170748147675,216,0 +170748147723,221,0 +170748147771,222,0 +170748147818,222,0 +170748147866,223,0 +170748147914,226,0 +170748147964,227,0 +170748148013,226,0 +170748148063,230,0 +170748148111,229,0 +170748148159,230,0 +170748148208,228,0 +170748148258,229,0 +170748148307,227,0 +170748148357,217,0 +170748148407,218,0 +170748148456,220,0 +170748148506,222,0 +170748148553,223,0 +170748148601,222,0 +170748148651,224,0 +170748148701,225,0 +170748148748,226,0 +170748148796,227,0 +170748148846,229,0 +170748148895,229,0 +170748148943,230,0 +170748148991,230,0 +170748149039,231,0 +170748149087,227,0 +170748149137,227,0 +170748149185,218,0 +170748149234,218,0 +170748149284,219,0 +170748149333,219,0 +170748149383,220,0 +170748149431,223,0 +170748149479,223,0 +170748149528,224,0 +170748149578,225,0 +170748149626,226,0 +170748149675,227,0 +170748149725,228,0 +170748149774,229,0 +170748149824,229,0 +170748149874,229,0 +170748149923,226,0 +170748149971,227,0 +170748150019,217,0 +170748150069,217,0 +170748150117,219,0 +170748150166,220,0 +170748150216,222,0 +170748150265,221,0 +170748150315,223,0 +170748150364,223,0 +170748150412,226,0 +170748150462,227,0 +170748150511,225,0 +170748150561,227,0 +170748150609,228,0 +170748150658,227,0 +170748150708,228,0 +170748150756,227,0 +170748150805,229,0 +170748150853,217,0 +170748150903,217,0 +170748150953,219,0 +170748151001,221,0 +170748151050,221,0 +170748151100,223,0 +170748151149,227,0 +170748151199,225,0 +170748151247,227,0 +170748151295,229,0 +170748151344,228,0 +170748151394,229,0 +170748151443,228,0 +170748151493,232,0 +170748151542,228,0 +170748151590,227,0 +170748151638,227,0 +170748151686,217,0 +170748151734,217,0 +170748151784,220,0 +170748151832,221,0 +170748151880,221,0 +170748151929,222,0 +170748151979,225,0 +170748152028,226,0 +170748152076,226,0 +170748152126,229,0 +170748152175,227,0 +170748152223,227,0 +170748152273,230,0 +170748152322,228,0 +170748152372,227,0 +170748152421,229,0 +170748152471,227,0 +170748152521,217,0 +170748152569,215,0 +170748152618,215,0 +170748152668,217,0 +170748152716,218,0 +170748152764,220,0 +170748152812,221,0 +170748152861,222,0 +170748152909,223,0 +170748152959,225,0 +170748153007,227,0 +170748153056,226,0 +170748153106,228,0 +170748153154,228,0 +170748153203,228,0 +170748153253,228,0 +170748153302,228,0 +170748153350,218,0 +170748153400,216,0 +170748153448,216,0 +170748153497,217,0 +170748153545,217,0 +170748153595,218,0 +170748153643,220,0 +170748153692,221,0 +170748153740,222,0 +170748153788,225,0 +170748153836,225,0 +170748153886,228,0 +170748153935,232,0 +170748153985,228,0 +170748154034,227,0 +170748154084,227,0 +170748154133,228,0 +170748154183,219,0 +170748154231,217,0 +170748154281,214,0 +170748154329,217,0 +170748154376,218,0 +170748154426,220,0 +170748154476,220,0 +170748154524,222,0 +170748154571,224,0 +170748154619,225,0 +170748154669,226,0 +170748154719,226,0 +170748154768,230,0 +170748154816,228,0 +170748154866,228,0 +170748154914,229,0 +170748154963,228,0 +170748155013,226,0 +170748155062,220,0 +170748155112,222,0 +170748155161,222,0 +170748155209,225,0 +170748155259,224,0 +170748155307,226,0 +170748155355,227,0 +170748155403,229,0 +170748155451,227,0 +170748155500,228,0 +170748155548,227,0 +170748155596,224,0 +170748155644,228,0 +170748155692,229,0 +170748155742,228,0 +170748155791,228,0 +170748155839,227,0 +170748155889,224,0 +170748155938,226,0 +170748155988,227,0 +170748156036,226,0 +170748156084,227,0 +170748156133,228,0 +170748156183,228,0 +170748156231,229,0 +170748156279,228,0 +170748156327,230,0 +170748156376,231,0 +170748156426,231,0 +170748156474,229,0 +170748156522,229,0 +170748156571,230,0 +170748156621,231,0 +170748156669,228,0 +170748156717,221,0 +170748156765,221,0 +170748156813,220,0 +170748156861,223,0 +170748156910,224,0 +170748156960,224,0 +170748157009,225,0 +170748157057,225,0 +170748157105,227,0 +170748157153,228,0 +170748157201,227,0 +170748157250,230,0 +170748157298,229,0 +170748157346,229,0 +170748157396,232,0 +170748157446,229,0 +170748157495,228,0 +170748157543,218,0 +170748157591,216,0 +170748157639,216,0 +170748157687,217,0 +170748157735,218,0 +170748157783,218,0 +170748157832,222,0 +170748157882,223,0 +170748157930,224,0 +170748157980,224,0 +170748158029,227,0 +170748158077,226,0 +170748158126,229,0 +170748158174,229,0 +170748158222,228,0 +170748158272,227,0 +170748158320,228,0 +170748158369,227,0 +170748158419,216,0 +170748158467,216,0 +170748158515,216,0 +170748158564,217,0 +170748158612,217,0 +170748158662,218,0 +170748158711,219,0 +170748158759,221,0 +170748158809,222,0 +170748158857,223,0 +170748158905,224,0 +170748158953,226,0 +170748159001,229,0 +170748159049,229,0 +170748159098,227,0 +170748159146,228,0 +170748159194,227,0 +170748159244,217,0 +170748159292,216,0 +170748159341,216,0 +170748159391,217,0 +170748159439,218,0 +170748159488,218,0 +170748159536,219,0 +170748159586,220,0 +170748159635,222,0 +170748159683,226,0 +170748159731,224,0 +170748159779,227,0 +170748159829,227,0 +170748159879,226,0 +170748159929,227,0 +170748159978,228,0 +170748160026,229,0 +170748160074,228,0 +170748160122,216,0 +170748160170,216,0 +170748160219,216,0 +170748160267,217,0 +170748160317,218,0 +170748160366,220,0 +170748160416,221,0 +170748160465,222,0 +170748160513,223,0 +170748160563,225,0 +170748160612,226,0 +170748160660,226,0 +170748160710,226,0 +170748160760,228,0 +170748160809,228,0 +170748160857,227,0 +170748160905,227,0 +170748160955,217,0 +170748161004,217,0 +170748161052,217,0 +170748161100,218,0 +170748161148,219,0 +170748161197,220,0 +170748161247,221,0 +170748161297,222,0 +170748161346,223,0 +170748161396,225,0 +170748161445,227,0 +170748161495,227,0 +170748161543,231,0 +170748161591,227,0 +170748161639,230,0 +170748161687,228,0 +170748161735,227,0 +170748161783,217,0 +170748161830,216,0 +170748161880,217,0 +170748161929,219,0 +170748161979,221,0 +170748162027,221,0 +170748162075,221,0 +170748162123,224,0 +170748162171,223,0 +170748162219,225,0 +170748162267,226,0 +170748162315,228,0 +170748162364,230,0 +170748162414,228,0 +170748162462,229,0 +170748162511,230,0 +170748162559,228,0 +170748162607,226,0 +170748162655,217,0 +170748162705,222,0 +170748162753,226,0 +170748162802,220,0 +170748162850,223,0 +170748162898,222,0 +170748162946,221,0 +170748162994,222,0 +170748163042,223,0 +170748163090,224,0 +170748163139,224,0 +170748163187,229,0 +170748163235,227,0 +170748163283,229,0 +170748163331,227,0 +170748163381,228,0 +170748163429,229,0 +170748163478,218,0 +170748163526,217,0 +170748163574,219,0 +170748163622,220,0 +170748163670,221,0 +170748163718,220,0 +170748163766,220,0 +170748163814,222,0 +170748163862,223,0 +170748163910,224,0 +170748163957,227,0 +170748164005,228,0 +170748164053,227,0 +170748164101,228,0 +170748164151,228,0 +170748164198,232,0 +170748164246,228,0 +170748164294,228,0 +170748164342,218,0 +170748164390,218,0 +170748164438,219,0 +170748164486,222,0 +170748164535,222,0 +170748164585,223,0 +170748164634,224,0 +170748164682,227,0 +170748164730,226,0 +170748164778,229,0 +170748164826,228,0 +170748164875,229,0 +170748164923,229,0 +170748164971,229,0 +170748165018,230,0 +170748165066,229,0 +170748165114,228,0 +170748165164,218,0 +170748165213,217,0 +170748165263,218,0 +170748165312,220,0 +170748165360,222,0 +170748165408,224,0 +170748165456,224,0 +170748165505,224,0 +170748165555,225,0 +170748165604,227,0 +170748165652,228,0 +170748165700,228,0 +170748165748,230,0 +170748165796,228,0 +170748165843,230,0 +170748165893,228,0 +170748165942,230,0 +170748165990,229,0 +170748166038,217,0 +170748166086,217,0 +170748166135,218,0 +170748166185,220,0 +170748166233,221,0 +170748166282,222,0 +170748166330,223,0 +170748166378,223,0 +170748166426,226,0 +170748166475,227,0 +170748166523,226,0 +170748166571,226,0 +170748166619,228,0 +170748166667,229,0 +170748166715,230,0 +170748166765,229,0 +170748166814,229,0 +170748166862,227,0 +170748166910,218,0 +170748166958,220,0 +170748167006,221,0 +170748167054,222,0 +170748167102,223,0 +170748167152,224,0 +170748167199,227,0 +170748167249,226,0 +170748167299,227,0 +170748167348,226,0 +170748167396,229,0 +170748167444,230,0 +170748167492,231,0 +170748167540,229,0 +170748167589,230,0 +170748167639,228,0 +170748167687,227,0 +170748167735,218,0 +170748167783,216,0 +170748167831,221,0 +170748167880,220,0 +170748167930,220,0 +170748167979,222,0 +170748168027,223,0 +170748168075,225,0 +170748168123,225,0 +170748168171,227,0 +170748168219,230,0 +170748168269,227,0 +170748168317,226,0 +170748168366,228,0 +170748168416,229,0 +170748168465,229,0 +170748168515,229,0 +170748168564,218,0 +170748168612,217,0 +170748168660,219,0 +170748168708,220,0 +170748168757,221,0 +170748168807,223,0 +170748168855,223,0 +170748168904,223,0 +170748168952,227,0 +170748169000,226,0 +170748169048,228,0 +170748169096,229,0 +170748169144,229,0 +170748169194,229,0 +170748169243,229,0 +170748169291,229,0 +170748169340,228,0 +170748169390,228,0 +170748169438,217,0 +170748169486,217,0 +170748169533,219,0 +170748169581,219,0 +170748169629,216,0 +170748169677,221,0 +170748169725,221,0 +170748169775,223,0 +170748169823,224,0 +170748169872,225,0 +170748169922,229,0 +170748169971,227,0 +170748170019,226,0 +170748170067,225,0 +170748170117,229,0 +170748170165,228,0 +170748170213,228,0 +170748170262,218,0 +170748170310,216,0 +170748170360,216,0 +170748170408,216,0 +170748170455,220,0 +170748170503,220,0 +170748170551,218,0 +170748170601,224,0 +170748170650,221,0 +170748170700,225,0 +170748170748,226,0 +170748170798,228,0 +170748170847,228,0 +170748170897,228,0 +170748170945,227,0 +170748170994,227,0 +170748171042,229,0 +170748171090,227,0 +170748171138,217,0 +170748171186,215,0 +170748171236,217,0 +170748171283,217,0 +170748171331,223,0 +170748171379,220,0 +170748171427,221,0 +170748171477,225,0 +170748171526,225,0 +170748171574,225,0 +170748171624,227,0 +170748171674,229,0 +170748171721,228,0 +170748171771,228,0 +170748171819,227,0 +170748171867,229,0 +170748171916,227,0 +170748171964,218,0 +170748172012,216,0 +170748172060,218,0 +170748172110,219,0 +170748172158,220,0 +170748172206,221,0 +170748172254,223,0 +170748172303,223,0 +170748172351,224,0 +170748172399,226,0 +170748172447,228,0 +170748172497,227,0 +170748172546,227,0 +170748172594,228,0 +170748172642,231,0 +170748172690,230,0 +170748172738,227,0 +170748172786,228,0 +170748172835,217,0 +170748172885,217,0 +170748172933,219,0 +170748172982,219,0 +170748173032,220,0 +170748173080,222,0 +170748173128,223,0 +170748173176,225,0 +170748173224,225,0 +170748173272,227,0 +170748173320,227,0 +170748173367,228,0 +170748173415,228,0 +170748173463,227,0 +170748173513,229,0 +170748173561,227,0 +170748173609,227,0 +170748173657,218,0 +170748173705,217,0 +170748173754,219,0 +170748173802,221,0 +170748173852,221,0 +170748173901,223,0 +170748173951,223,0 +170748173999,227,0 +170748174047,226,0 +170748174096,226,0 +170748174146,227,0 +170748174195,227,0 +170748174243,230,0 +170748174291,229,0 +170748174341,231,0 +170748174389,227,0 +170748174437,225,0 +170748174485,228,0 +170748174532,216,0 +170748174580,216,0 +170748174630,216,0 +170748174679,217,0 +170748174727,217,0 +170748174777,218,0 +170748174825,219,0 +170748174873,221,0 +170748174921,221,0 +170748174969,223,0 +170748175018,224,0 +170748175066,226,0 +170748175116,224,0 +170748175164,226,0 +170748175212,226,0 +170748175261,228,0 +170748175309,226,0 +170748175357,227,0 +170748175407,230,0 +170748175456,230,0 +170748175504,228,0 +170748175552,228,0 +170748175600,228,0 +170748175648,229,0 +170748175696,229,0 +170748175744,228,0 +170748175794,217,0 +170748175841,216,0 +170748175889,217,0 +170748175937,218,0 +170748175987,221,0 +170748176035,220,0 +170748176083,220,0 +170748176132,223,0 +170748176182,223,0 +170748176231,226,0 +170748176279,232,0 +170748176329,226,0 +170748176379,228,0 +170748176428,232,0 +170748176476,233,0 +170748176524,229,0 +170748176574,228,0 +170748176621,218,0 +170748176671,216,0 +170748176719,218,0 +170748176767,218,0 +170748176816,219,0 +170748176866,219,0 +170748176915,221,0 +170748176965,223,0 +170748177014,224,0 +170748177062,224,0 +170748177110,225,0 +170748177158,226,0 +170748177206,228,0 +170748177254,228,0 +170748177302,228,0 +170748177350,231,0 +170748177400,229,0 +170748177447,227,0 +170748177495,216,0 +170748177545,218,0 +170748177593,220,0 +170748177641,221,0 +170748177690,222,0 +170748177740,222,0 +170748177788,224,0 +170748177836,225,0 +170748177884,225,0 +170748177933,225,0 +170748177983,225,0 +170748178032,226,0 +170748178082,227,0 +170748178130,228,0 +170748178178,230,0 +170748178227,230,0 +170748178277,227,0 +170748178325,218,0 +170748178373,217,0 +170748178421,219,0 +170748178470,220,0 +170748178520,221,0 +170748178568,222,0 +170748178616,223,0 +170748178665,226,0 +170748178715,225,0 +170748178763,227,0 +170748178812,228,0 +170748178860,228,0 +170748178908,229,0 +170748178956,227,0 +170748179004,228,0 +170748179053,228,0 +170748179103,228,0 +170748179152,227,0 +170748179200,217,0 +170748179248,217,0 +170748179296,220,0 +170748179344,219,0 +170748179392,222,0 +170748179440,222,0 +170748179488,223,0 +170748179536,223,0 +170748179584,225,0 +170748179632,225,0 +170748179680,226,0 +170748179729,227,0 +170748179779,228,0 +170748179827,229,0 +170748179875,232,0 +170748179924,228,0 +170748179972,227,0 +170748180020,218,0 +170748180068,216,0 +170748180116,216,0 +170748180164,217,0 +170748180213,218,0 +170748180261,221,0 +170748180309,222,0 +170748180357,223,0 +170748180405,223,0 +170748180453,225,0 +170748180501,227,0 +170748180548,228,0 +170748180596,227,0 +170748180644,230,0 +170748180692,228,0 +170748180740,228,0 +170748180788,228,0 +170748180837,228,0 +170748180885,217,0 +170748180935,216,0 +170748180984,217,0 +170748181032,217,0 +170748181080,218,0 +170748181128,221,0 +170748181176,221,0 +170748181224,221,0 +170748181271,223,0 +170748181319,224,0 +170748181369,224,0 +170748181417,226,0 +170748181465,227,0 +170748181513,228,0 +170748181562,228,0 +170748181610,229,0 +170748181659,228,0 +170748181709,221,0 +170748181758,217,0 +170748181808,217,0 +170748181856,219,0 +170748181903,219,0 +170748181953,223,0 +170748182001,223,0 +170748182049,222,0 +170748182098,222,0 +170748182146,227,0 +170748182194,226,0 +170748182242,229,0 +170748182291,229,0 +170748182339,224,0 +170748182387,227,0 +170748182435,228,0 +170748182484,228,0 +170748182532,228,0 +170748182580,218,0 +170748182628,217,0 +170748182676,216,0 +170748182724,218,0 +170748182772,218,0 +170748182819,219,0 +170748182867,219,0 +170748182915,221,0 +170748182963,223,0 +170748183011,226,0 +170748183061,226,0 +170748183108,226,0 +170748183156,226,0 +170748183204,226,0 +170748183254,228,0 +170748183303,229,0 +170748183351,228,0 +170748183399,227,0 +170748183447,216,0 +170748183495,216,0 +170748183542,216,0 +170748183590,216,0 +170748183638,217,0 +170748183686,217,0 +170748183734,218,0 +170748183783,219,0 +170748183833,221,0 +170748183881,222,0 +170748183929,222,0 +170748183976,225,0 +170748184024,226,0 +170748184072,226,0 +170748184120,229,0 +170748184168,227,0 +170748184216,227,0 +170748184264,218,0 +170748184312,216,0 +170748184360,216,0 +170748184407,217,0 +170748184455,217,0 +170748184505,217,0 +170748184553,218,0 +170748184600,219,0 +170748184648,221,0 +170748184696,221,0 +170748184744,221,0 +170748184794,222,0 +170748184843,225,0 +170748184893,227,0 +170748184941,227,0 +170748184989,227,0 +170748185039,227,0 +170748185086,229,0 +170748185134,218,0 +170748185182,216,0 +170748185230,216,0 +170748185280,217,0 +170748185328,216,0 +170748185376,218,0 +170748185423,220,0 +170748185473,221,0 +170748185521,223,0 +170748185571,224,0 +170748185618,226,0 +170748185666,226,0 +170748185714,226,0 +170748185762,228,0 +170748185810,228,0 +170748185858,228,0 +170748185906,227,0 +170748185954,226,0 +170748186002,216,0 +170748186049,216,0 +170748186099,216,0 +170748186148,216,0 +170748186198,217,0 +170748186246,217,0 +170748186294,219,0 +170748186342,220,0 +170748186389,223,0 +170748186437,224,0 +170748186485,225,0 +170748186533,225,0 +170748186583,225,0 +170748186630,227,0 +170748186678,229,0 +170748186726,227,0 +170748186774,227,0 +170748186822,218,0 +170748186870,216,0 +170748186918,216,0 +170748186967,216,0 +170748187017,217,0 +170748187065,217,0 +170748187113,218,0 +170748187161,218,0 +170748187210,220,0 +170748187258,220,0 +170748187306,223,0 +170748187356,223,0 +170748187405,225,0 +170748187453,226,0 +170748187502,226,0 +170748187551,229,0 +170748187601,227,0 +170748187649,222,0 +170748187697,216,0 +170748187746,217,0 +170748187796,218,0 +170748187844,218,0 +170748187893,219,0 +170748187941,222,0 +170748187989,223,0 +170748188037,223,0 +170748188085,225,0 +170748188133,226,0 +170748188183,226,0 +170748188231,226,0 +170748188279,227,0 +170748188328,227,0 +170748188378,228,0 +170748188427,228,0 +170748188475,228,0 +170748188523,218,0 +170748188571,215,0 +170748188619,217,0 +170748188669,218,0 +170748188718,220,0 +170748188766,221,0 +170748188815,221,0 +170748188863,224,0 +170748188911,222,0 +170748188961,218,0 +170748189010,225,0 +170748189058,227,0 +170748189108,226,0 +170748189156,227,0 +170748189205,229,0 +170748189253,229,0 +170748189301,229,0 +170748189351,217,0 +170748189398,217,0 +170748189446,217,0 +170748189496,219,0 +170748189544,219,0 +170748189592,218,0 +170748189641,221,0 +170748189691,220,0 +170748189740,218,0 +170748189788,222,0 +170748189836,223,0 +170748189884,224,0 +170748189933,224,0 +170748189981,226,0 +170748190031,228,0 +170748190079,227,0 +170748190127,228,0 +170748190175,227,0 +170748190223,218,0 +170748190272,216,0 +170748190320,219,0 +170748190368,220,0 +170748190416,220,0 +170748190464,223,0 +170748190512,223,0 +170748190562,222,0 +170748190610,224,0 +170748190657,225,0 +170748190707,227,0 +170748190755,227,0 +170748190804,227,0 +170748190854,225,0 +170748190904,227,0 +170748190951,228,0 +170748190999,228,0 +170748191049,220,0 +170748191097,219,0 +170748191145,220,0 +170748191194,220,0 +170748191244,221,0 +170748191293,223,0 +170748191341,224,0 +170748191391,224,0 +170748191439,225,0 +170748191487,226,0 +170748191535,228,0 +170748191583,229,0 +170748191631,227,0 +170748191678,230,0 +170748191728,227,0 +170748191777,227,0 +170748191827,227,0 +170748191876,227,0 +170748191926,220,0 +170748191974,222,0 +170748192023,223,0 +170748192073,224,0 +170748192123,224,0 +170748192172,225,0 +170748192222,226,0 +170748192270,226,0 +170748192319,228,0 +170748192369,227,0 +170748192418,228,0 +170748192466,229,0 +170748192516,228,0 +170748192564,228,0 +170748192612,228,0 +170748192661,227,0 +170748192711,227,0 +170748192760,221,0 +170748192808,225,0 +170748192856,225,0 +170748192904,224,0 +170748192952,225,0 +170748193000,226,0 +170748193049,226,0 +170748193099,226,0 +170748193147,227,0 +170748193195,227,0 +170748193243,230,0 +170748193291,231,0 +170748193340,231,0 +170748193390,230,0 +170748193439,228,0 +170748193489,229,0 +170748193537,227,0 +170748193586,226,0 +170748193634,219,0 +170748193684,221,0 +170748193733,222,0 +170748193781,222,0 +170748193829,223,0 +170748193877,224,0 +170748193927,227,0 +170748193975,226,0 +170748194024,227,0 +170748194074,227,0 +170748194121,229,0 +170748194169,229,0 +170748194217,231,0 +170748194267,229,0 +170748194315,229,0 +170748194363,228,0 +170748194411,226,0 +170748194459,226,0 +170748194508,217,0 +170748194558,218,0 +170748194607,219,0 +170748194657,221,0 +170748194706,221,0 +170748194754,223,0 +170748194802,224,0 +170748194850,225,0 +170748194900,225,0 +170748194948,227,0 +170748194997,230,0 +170748195045,229,0 +170748195093,229,0 +170748195141,227,0 +170748195189,228,0 +170748195237,228,0 +170748195285,229,0 +170748195335,227,0 +170748195384,216,0 +170748195434,216,0 +170748195482,218,0 +170748195531,219,0 +170748195579,219,0 +170748195627,220,0 +170748195675,221,0 +170748195725,223,0 +170748195773,224,0 +170748195822,224,0 +170748195872,227,0 +170748195920,225,0 +170748195969,226,0 +170748196017,226,0 +170748196066,226,0 +170748196114,226,0 +170748196162,226,0 +170748196210,226,0 +170748196258,217,0 +170748196306,217,0 +170748196356,218,0 +170748196404,218,0 +170748196453,219,0 +170748196503,220,0 +170748196551,221,0 +170748196599,222,0 +170748196648,223,0 +170748196698,223,0 +170748196747,225,0 +170748196797,225,0 +170748196846,226,0 +170748196894,230,0 +170748196942,227,0 +170748196992,228,0 +170748197041,227,0 +170748197089,227,0 +170748197139,217,0 +170748197187,216,0 +170748197235,218,0 +170748197283,218,0 +170748197332,219,0 +170748197380,219,0 +170748197430,221,0 +170748197479,221,0 +170748197529,223,0 +170748197578,223,0 +170748197628,224,0 +170748197677,224,0 +170748197725,225,0 +170748197773,226,0 +170748197821,229,0 +170748197871,227,0 +170748197920,227,0 +170748197968,227,0 +170748198018,216,0 +170748198066,217,0 +170748198115,216,0 +170748198165,217,0 +170748198214,218,0 +170748198262,218,0 +170748198310,220,0 +170748198358,221,0 +170748198406,221,0 +170748198455,223,0 +170748198503,225,0 +170748198551,224,0 +170748198599,225,0 +170748198647,227,0 +170748198697,225,0 +170748198746,228,0 +170748198794,229,0 +170748198842,225,0 +170748198890,217,0 +170748198938,216,0 +170748198986,217,0 +170748199035,218,0 +170748199083,219,0 +170748199131,221,0 +170748199179,221,0 +170748199227,222,0 +170748199275,222,0 +170748199323,223,0 +170748199371,226,0 +170748199419,228,0 +170748199469,228,0 +170748199518,228,0 +170748199566,229,0 +170748199616,230,0 +170748199664,228,0 +170748199711,228,0 +170748199759,218,0 +170748199809,216,0 +170748199858,216,0 +170748199908,217,0 +170748199956,219,0 +170748200005,220,0 +170748200054,221,0 +170748200103,221,0 +170748200151,222,0 +170748200199,223,0 +170748200247,226,0 +170748200295,226,0 +170748200343,226,0 +170748200393,226,0 +170748200442,230,0 +170748200490,229,0 +170748200538,229,0 +170748200586,228,0 +170748200634,218,0 +170748200682,217,0 +170748200729,217,0 +170748200777,217,0 +170748200825,217,0 +170748200873,218,0 +170748200921,220,0 +170748200971,220,0 +170748201019,221,0 +170748201067,222,0 +170748201115,226,0 +170748201162,228,0 +170748201210,224,0 +170748201258,227,0 +170748201308,228,0 +170748201355,229,0 +170748201403,229,0 +170748201451,228,0 +170748201501,228,0 +170748201550,217,0 +170748201600,216,0 +170748201648,217,0 +170748201695,217,0 +170748201743,218,0 +170748201791,219,0 +170748201839,220,0 +170748201887,221,0 +170748201935,228,0 +170748201983,223,0 +170748202033,224,0 +170748202080,224,0 +170748202130,225,0 +170748202179,226,0 +170748202229,227,0 +170748202277,228,0 +170748202326,228,0 +170748202376,228,0 +170748202424,218,0 +170748202473,216,0 +170748202523,216,0 +170748202571,217,0 +170748202619,217,0 +170748202667,217,0 +170748202715,217,0 +170748202763,218,0 +170748202810,221,0 +170748202858,221,0 +170748202908,223,0 +170748202956,227,0 +170748203005,226,0 +170748203053,228,0 +170748203101,232,0 +170748203149,228,0 +170748203197,228,0 +170748203245,227,0 +170748203293,218,0 +170748203341,216,0 +170748203390,216,0 +170748203438,217,0 +170748203486,217,0 +170748203536,218,0 +170748203585,219,0 +170748203633,220,0 +170748203681,221,0 +170748203731,221,0 +170748203780,223,0 +170748203828,225,0 +170748203876,227,0 +170748203924,229,0 +170748203974,229,0 +170748204023,227,0 +170748204073,229,0 +170748204120,228,0 +170748204168,218,0 +170748204216,216,0 +170748204264,216,0 +170748204312,217,0 +170748204360,217,0 +170748204408,218,0 +170748204456,220,0 +170748204505,221,0 +170748204553,222,0 +170748204601,222,0 +170748204649,226,0 +170748204697,223,0 +170748204746,227,0 +170748204796,227,0 +170748204844,227,0 +170748204892,227,0 +170748204940,228,0 +170748204988,227,0 +170748205036,227,0 +170748205083,218,0 +170748205131,216,0 +170748205179,217,0 +170748205229,219,0 +170748205276,218,0 +170748205324,218,0 +170748205372,219,0 +170748205420,222,0 +170748205469,222,0 +170748205519,225,0 +170748205567,223,0 +170748205616,226,0 +170748205664,227,0 +170748205712,227,0 +170748205762,228,0 +170748205811,228,0 +170748205861,228,0 +170748205909,230,0 +170748205957,217,0 +170748206006,216,0 +170748206054,217,0 +170748206102,218,0 +170748206150,219,0 +170748206198,220,0 +170748206247,221,0 +170748206297,222,0 +170748206347,222,0 +170748206395,224,0 +170748206444,227,0 +170748206492,228,0 +170748206542,228,0 +170748206589,229,0 +170748206637,227,0 +170748206685,229,0 +170748206733,229,0 +170748206781,228,0 +170748206829,217,0 +170748206877,216,0 +170748206925,216,0 +170748206973,218,0 +170748207021,219,0 +170748207069,219,0 +170748207117,220,0 +170748207165,221,0 +170748207213,222,0 +170748207261,225,0 +170748207310,225,0 +170748207360,225,0 +170748207409,225,0 +170748207457,226,0 +170748207505,227,0 +170748207553,227,0 +170748207603,227,0 +170748207651,228,0 +170748207699,217,0 +170748207747,216,0 +170748207795,216,0 +170748207843,217,0 +170748207892,217,0 +170748207942,220,0 +170748207990,216,0 +170748208038,220,0 +170748208087,222,0 +170748208135,222,0 +170748208183,225,0 +170748208231,224,0 +170748208279,225,0 +170748208327,226,0 +170748208375,228,0 +170748208424,229,0 +170748208472,227,0 +170748208522,227,0 +170748208571,226,0 +170748208619,217,0 +170748208669,218,0 +170748208717,220,0 +170748208765,220,0 +170748208814,221,0 +170748208864,223,0 +170748208912,221,0 +170748208961,224,0 +170748209011,227,0 +170748209059,226,0 +170748209107,226,0 +170748209155,226,0 +170748209203,227,0 +170748209252,228,0 +170748209302,229,0 +170748209349,228,0 +170748209397,227,0 +170748209445,227,0 +170748209495,216,0 +170748209543,221,0 +170748209591,219,0 +170748209639,220,0 +170748209688,221,0 +170748209736,222,0 +170748209784,223,0 +170748209833,224,0 +170748209883,225,0 +170748209931,226,0 +170748209980,229,0 +170748210028,229,0 +170748210076,228,0 +170748210124,228,0 +170748210174,229,0 +170748210223,227,0 +170748210271,226,0 +170748210319,227,0 +170748210369,220,0 +170748210417,221,0 +170748210465,222,0 +170748210514,224,0 +170748210562,224,0 +170748210610,226,0 +170748210658,225,0 +170748210706,226,0 +170748210754,227,0 +170748210803,226,0 +170748210851,229,0 +170748210901,228,0 +170748210950,230,0 +170748211000,228,0 +170748211048,227,0 +170748211096,230,0 +170748211143,229,0 +170748211191,228,0 +170748211239,222,0 +170748211287,220,0 +170748211335,221,0 +170748211383,222,0 +170748211431,224,0 +170748211479,224,0 +170748211528,224,0 +170748211578,226,0 +170748211627,228,0 +170748211675,227,0 +170748211723,228,0 +170748211773,228,0 +170748211822,229,0 +170748211872,229,0 +170748211920,228,0 +170748211969,229,0 +170748212017,229,0 +170748212067,227,0 +170748212115,225,0 +170748212163,216,0 +170748212211,218,0 +170748212259,218,0 +170748212307,219,0 +170748212355,220,0 +170748212403,222,0 +170748212451,221,0 +170748212498,223,0 +170748212546,224,0 +170748212596,226,0 +170748212644,224,0 +170748212692,226,0 +170748212739,226,0 +170748212787,228,0 +170748212835,228,0 +170748212883,229,0 +170748212932,228,0 +170748212980,228,0 +170748213028,217,0 +170748213076,216,0 +170748213124,218,0 +170748213172,217,0 +170748213220,221,0 +170748213269,222,0 +170748213319,222,0 +170748213367,223,0 +170748213415,223,0 +170748213463,223,0 +170748213512,227,0 +170748213562,229,0 +170748213611,227,0 +170748213661,228,0 +170748213709,231,0 +170748213757,231,0 +170748213804,228,0 +170748213852,229,0 +170748213902,218,0 +170748213950,216,0 +170748213998,217,0 +170748214046,218,0 +170748214094,220,0 +170748214142,221,0 +170748214191,221,0 +170748214239,221,0 +170748214287,224,0 +170748214335,225,0 +170748214383,225,0 +170748214433,227,0 +170748214481,226,0 +170748214528,226,0 +170748214576,229,0 +170748214624,226,0 +170748214672,229,0 +170748214720,231,0 +170748214768,227,0 +170748214816,217,0 +170748214866,216,0 +170748214914,217,0 +170748214963,219,0 +170748215011,219,0 +170748215059,220,0 +170748215109,222,0 +170748215157,222,0 +170748215205,223,0 +170748215252,225,0 +170748215300,228,0 +170748215348,227,0 +170748215398,230,0 +170748215446,230,0 +170748215494,229,0 +170748215542,227,0 +170748215591,229,0 +170748215639,227,0 +170748215687,218,0 +170748215735,216,0 +170748215785,217,0 +170748215834,219,0 +170748215882,219,0 +170748215932,223,0 +170748215980,224,0 +170748216028,224,0 +170748216076,226,0 +170748216124,226,0 +170748216172,227,0 +170748216221,227,0 +170748216269,228,0 +170748216317,231,0 +170748216366,230,0 +170748216416,228,0 +170748216465,230,0 +170748216513,227,0 +170748216561,218,0 +170748216611,216,0 +170748216659,218,0 +170748216707,219,0 +170748216755,220,0 +170748216803,221,0 +170748216852,222,0 +170748216900,226,0 +170748216948,226,0 +170748216996,227,0 +170748217046,229,0 +170748217095,229,0 +170748217145,229,0 +170748217194,231,0 +170748217244,228,0 +170748217293,231,0 +170748217341,226,0 +170748217389,228,0 +170748217439,218,0 +170748217487,216,0 +170748217536,217,0 +170748217584,217,0 +170748217632,219,0 +170748217682,220,0 +170748217731,221,0 +170748217779,223,0 +170748217829,224,0 +170748217877,227,0 +170748217924,226,0 +170748217972,226,0 +170748218022,228,0 +170748218070,229,0 +170748218118,229,0 +170748218167,231,0 +170748218215,230,0 +170748218265,228,0 +170748218313,227,0 +170748218361,216,0 +170748218409,216,0 +170748218458,217,0 +170748218506,219,0 +170748218555,220,0 +170748218605,220,0 +170748218655,221,0 +170748218704,222,0 +170748218752,223,0 +170748218800,226,0 +170748218848,226,0 +170748218897,226,0 +170748218947,226,0 +170748218995,228,0 +170748219043,227,0 +170748219092,228,0 +170748219140,228,0 +170748219188,227,0 +170748219238,217,0 +170748219286,218,0 +170748219334,220,0 +170748219381,221,0 +170748219429,222,0 +170748219477,222,0 +170748219527,223,0 +170748219575,224,0 +170748219623,225,0 +170748219672,225,0 +170748219720,226,0 +170748219770,229,0 +170748219818,230,0 +170748219867,228,0 +170748219915,231,0 +170748219963,229,0 +170748220013,229,0 +170748220062,227,0 +170748220112,217,0 +170748220160,216,0 +170748220207,216,0 +170748220257,218,0 +170748220305,219,0 +170748220353,220,0 +170748220401,222,0 +170748220450,222,0 +170748220498,223,0 +170748220546,228,0 +170748220594,227,0 +170748220644,226,0 +170748220693,228,0 +170748220743,228,0 +170748220791,229,0 +170748220839,229,0 +170748220887,228,0 +170748220936,229,0 +170748220984,218,0 +170748221032,216,0 +170748221082,216,0 +170748221131,216,0 +170748221179,216,0 +170748221227,217,0 +170748221275,217,0 +170748221324,219,0 +170748221372,219,0 +170748221420,220,0 +170748221468,222,0 +170748221516,223,0 +170748221565,225,0 +170748221613,226,0 +170748221661,225,0 +170748221711,227,0 +170748221758,227,0 +170748221808,227,0 +170748221856,227,0 +170748221904,216,0 +170748221952,216,0 +170748222001,217,0 +170748222049,216,0 +170748222097,218,0 +170748222145,219,0 +170748222195,220,0 +170748222242,219,0 +170748222290,222,0 +170748222338,225,0 +170748222386,227,0 +170748222434,225,0 +170748222482,224,0 +170748222530,228,0 +170748222578,226,0 +170748222625,229,0 +170748222673,226,0 +170748222721,228,0 +170748222771,218,0 +170748222818,218,0 +170748222866,220,0 +170748222916,221,0 +170748222964,222,0 +170748223012,223,0 +170748223061,224,0 +170748223109,227,0 +170748223157,227,0 +170748223205,229,0 +170748223253,228,0 +170748223302,229,0 +170748223352,231,0 +170748223401,232,0 +170748223449,232,0 +170748223497,231,0 +170748223547,232,0 +170748223595,228,0 +170748223642,218,0 +170748223690,218,0 +170748223738,219,0 +170748223786,220,0 +170748223834,221,0 +170748223884,222,0 +170748223932,222,0 +170748223981,222,0 +170748224031,224,0 +170748224079,225,0 +170748224127,225,0 +170748224175,228,0 +170748224224,228,0 +170748224272,228,0 +170748224322,229,0 +170748224370,229,0 +170748224419,234,0 +170748224469,231,0 +170748224517,227,0 +170748224565,217,0 +170748224613,217,0 +170748224662,218,0 +170748224712,220,0 +170748224759,223,0 +170748224807,223,0 +170748224857,222,0 +170748224905,224,0 +170748224953,227,0 +170748225000,228,0 +170748225048,230,0 +170748225096,229,0 +170748225144,230,0 +170748225194,230,0 +170748225242,229,0 +170748225289,229,0 +170748225339,228,0 +170748225387,228,0 +170748225435,218,0 +170748225484,217,0 +170748225532,218,0 +170748225581,218,0 +170748225631,221,0 +170748225679,220,0 +170748225728,224,0 +170748225776,224,0 +170748225824,225,0 +170748225874,225,0 +170748225922,227,0 +170748225971,230,0 +170748226019,227,0 +170748226069,228,0 +170748226118,230,0 +170748226168,233,0 +170748226218,228,0 +170748226267,228,0 +170748226317,217,0 +170748226366,216,0 +170748226414,216,0 +170748226464,217,0 +170748226513,220,0 +170748226563,220,0 +170748226611,221,0 +170748226659,222,0 +170748226706,223,0 +170748226754,223,0 +170748226802,225,0 +170748226850,227,0 +170748226898,226,0 +170748226946,227,0 +170748226994,229,0 +170748227042,230,0 +170748227092,230,0 +170748227140,228,0 +170748227188,221,0 +170748227236,216,0 +170748227284,216,0 +170748227332,216,0 +170748227381,217,0 +170748227429,218,0 +170748227478,219,0 +170748227528,220,0 +170748227578,222,0 +170748227625,225,0 +170748227673,225,0 +170748227721,226,0 +170748227771,229,0 +170748227820,229,0 +170748227870,227,0 +170748227918,230,0 +170748227965,230,0 +170748228013,229,0 +170748228063,229,0 +170748228112,217,0 +170748228162,217,0 +170748228210,217,0 +170748228259,218,0 +170748228309,219,0 +170748228358,220,0 +170748228408,220,0 +170748228456,223,0 +170748228506,224,0 +170748228553,224,0 +170748228601,225,0 +170748228649,225,0 +170748228697,227,0 +170748228745,228,0 +170748228793,227,0 +170748228843,228,0 +170748228892,228,0 +170748228940,228,0 +170748228988,217,0 +170748229038,217,0 +170748229086,218,0 +170748229135,219,0 +170748229183,220,0 +170748229231,221,0 +170748229279,223,0 +170748229329,223,0 +170748229377,224,0 +170748229425,225,0 +170748229473,226,0 +170748229522,227,0 +170748229572,234,0 +170748229619,229,0 +170748229669,228,0 +170748229717,228,0 +170748229765,228,0 +170748229814,228,0 +170748229862,226,0 +170748229910,219,0 +170748229960,220,0 +170748230009,221,0 +170748230059,222,0 +170748230108,224,0 +170748230156,225,0 +170748230204,226,0 +170748230254,226,0 +170748230303,227,0 +170748230351,228,0 +170748230401,228,0 +170748230450,228,0 +170748230498,228,0 +170748230546,229,0 +170748230594,229,0 +170748230642,228,0 +170748230690,228,0 +170748230739,228,0 +170748230789,219,0 +170748230837,218,0 +170748230886,219,0 +170748230936,221,0 +170748230984,223,0 +170748231032,224,0 +170748231081,225,0 +170748231131,225,0 +170748231179,226,0 +170748231227,227,0 +170748231275,230,0 +170748231324,231,0 +170748231374,230,0 +170748231423,228,0 +170748231473,229,0 +170748231522,229,0 +170748231570,227,0 +170748231618,230,0 +170748231666,228,0 +170748231714,216,0 +170748231764,216,0 +170748231813,217,0 +170748231861,218,0 +170748231911,219,0 +170748231959,220,0 +170748232006,222,0 +170748232054,222,0 +170748232104,223,0 +170748232151,227,0 +170748232201,225,0 +170748232249,229,0 +170748232298,226,0 +170748232346,227,0 +170748232394,229,0 +170748232442,228,0 +170748232490,227,0 +170748232538,228,0 +170748232586,219,0 +170748232633,216,0 +170748232681,216,0 +170748232729,220,0 +170748232777,219,0 +170748232825,221,0 +170748232873,222,0 +170748232923,223,0 +170748232972,225,0 +170748233020,225,0 +170748233068,226,0 +170748233118,227,0 +170748233167,230,0 +170748233217,229,0 +170748233266,228,0 +170748233314,228,0 +170748233362,229,0 +170748233410,228,0 +170748233458,227,0 +170748233508,216,0 +170748233556,216,0 +170748233604,216,0 +170748233651,216,0 +170748233699,216,0 +170748233747,217,0 +170748233797,218,0 +170748233845,219,0 +170748233893,221,0 +170748233941,223,0 +170748233989,225,0 +170748234037,225,0 +170748234085,225,0 +170748234133,227,0 +170748234182,226,0 +170748234230,229,0 +170748234278,228,0 +170748234328,229,0 +170748234376,226,0 +170748234424,216,0 +170748234472,216,0 +170748234519,216,0 +170748234569,216,0 +170748234617,217,0 +170748234666,218,0 +170748234716,217,0 +170748234763,219,0 +170748234811,219,0 +170748234859,221,0 +170748234907,223,0 +170748234957,226,0 +170748235005,225,0 +170748235054,226,0 +170748235102,227,0 +170748235150,228,0 +170748235197,227,0 +170748235247,227,0 +170748235295,218,0 +170748235343,217,0 +170748235391,217,0 +170748235438,218,0 +170748235486,219,0 +170748235534,220,0 +170748235582,220,0 +170748235630,220,0 +170748235678,221,0 +170748235727,221,0 +170748235775,223,0 +170748235823,224,0 +170748235871,225,0 +170748235920,227,0 +170748235968,225,0 +170748236016,229,0 +170748236064,228,0 +170748236114,227,0 +170748236162,228,0 +170748236210,217,0 +170748236259,217,0 +170748236309,218,0 +170748236357,220,0 +170748236406,221,0 +170748236454,221,0 +170748236502,223,0 +170748236551,224,0 +170748236599,224,0 +170748236649,226,0 +170748236697,226,0 +170748236746,227,0 +170748236794,230,0 +170748236842,228,0 +170748236891,231,0 +170748236939,229,0 +170748236989,229,0 +170748237037,230,0 +170748237084,218,0 +170748237132,216,0 +170748237180,218,0 +170748237228,219,0 +170748237276,220,0 +170748237324,221,0 +170748237372,220,0 +170748237420,223,0 +170748237467,223,0 +170748237515,225,0 +170748237563,224,0 +170748237611,226,0 +170748237659,226,0 +170748237707,230,0 +170748237755,231,0 +170748237802,229,0 +170748237850,228,0 +170748237898,228,0 +170748237948,230,0 +170748237995,219,0 +170748238043,218,0 +170748238091,218,0 +170748238139,220,0 +170748238187,220,0 +170748238235,221,0 +170748238284,223,0 +170748238334,223,0 +170748238382,223,0 +170748238430,228,0 +170748238477,226,0 +170748238525,227,0 +170748238573,228,0 +170748238621,229,0 +170748238669,228,0 +170748238717,229,0 +170748238765,229,0 +170748238813,228,0 +170748238862,224,0 +170748238910,217,0 +170748238958,218,0 +170748239006,220,0 +170748239054,222,0 +170748239102,222,0 +170748239150,223,0 +170748239198,223,0 +170748239247,224,0 +170748239297,226,0 +170748239344,227,0 +170748239392,227,0 +170748239440,228,0 +170748239490,230,0 +170748239539,232,0 +170748239587,228,0 +170748239637,229,0 +170748239686,229,0 +170748239734,227,0 +170748239782,218,0 +170748239832,217,0 +170748239880,217,0 +170748239928,220,0 +170748239977,222,0 +170748240025,222,0 +170748240075,223,0 +170748240123,226,0 +170748240171,227,0 +170748240219,227,0 +170748240268,226,0 +170748240316,228,0 +170748240366,229,0 +170748240413,229,0 +170748240461,230,0 +170748240509,229,0 +170748240557,230,0 +170748240605,229,0 +170748240653,228,0 +170748240701,218,0 +170748240749,218,0 +170748240798,219,0 +170748240848,220,0 +170748240897,221,0 +170748240947,225,0 +170748240995,224,0 +170748241044,224,0 +170748241092,226,0 +170748241140,228,0 +170748241190,229,0 +170748241238,230,0 +170748241287,230,0 +170748241335,231,0 +170748241383,229,0 +170748241431,230,0 +170748241479,229,0 +170748241527,227,0 +170748241574,217,0 +170748241622,216,0 +170748241670,216,0 +170748241718,217,0 +170748241766,218,0 +170748241814,218,0 +170748241862,221,0 +170748241909,224,0 +170748241957,225,0 +170748242005,219,0 +170748242055,226,0 +170748242103,228,0 +170748242150,227,0 +170748242198,229,0 +170748242246,228,0 +170748242294,232,0 +170748242342,229,0 +170748242390,230,0 +170748242438,231,0 +170748242486,218,0 +170748242535,217,0 +170748242584,216,0 +170748242632,218,0 +170748242682,219,0 +170748242730,220,0 +170748242779,220,0 +170748242828,221,0 +170748242876,224,0 +170748242924,225,0 +170748242974,225,0 +170748243023,226,0 +170748243073,229,0 +170748243120,229,0 +170748243170,229,0 +170748243219,230,0 +170748243267,229,0 +170748243315,228,0 +170748243363,228,0 +170748243411,216,0 +170748243459,215,0 +170748243507,216,0 +170748243556,218,0 +170748243604,219,0 +170748243654,220,0 +170748243701,221,0 +170748243749,224,0 +170748243797,224,0 +170748243845,224,0 +170748243893,227,0 +170748243941,227,0 +170748243989,238,0 +170748244037,229,0 +170748244084,228,0 +170748244132,230,0 +170748244182,229,0 +170748244231,228,0 +170748244279,218,0 +170748244327,216,0 +170748244375,216,0 +170748244424,217,0 +170748244472,220,0 +170748244520,219,0 +170748244569,221,0 +170748244617,222,0 +170748244665,223,0 +170748244713,226,0 +170748244761,224,0 +170748244809,227,0 +170748244856,226,0 +170748244904,231,0 +170748244952,228,0 +170748245000,230,0 +170748245048,229,0 +170748245096,233,0 +170748245144,228,0 +170748245193,217,0 +170748245241,216,0 +170748245290,216,0 +170748245338,216,0 +170748245386,218,0 +170748245436,220,0 +170748245485,222,0 +170748245535,222,0 +170748245582,222,0 +170748245632,224,0 +170748245681,226,0 +170748245729,228,0 +170748245779,228,0 +170748245827,234,0 +170748245874,228,0 +170748245922,228,0 +170748245972,230,0 +170748246020,227,0 +170748246069,221,0 +170748246117,216,0 +170748246165,216,0 +170748246213,216,0 +170748246262,216,0 +170748246312,217,0 +170748246359,218,0 +170748246407,219,0 +170748246455,219,0 +170748246503,221,0 +170748246553,223,0 +170748246602,224,0 +170748246650,224,0 +170748246698,226,0 +170748246746,226,0 +170748246794,227,0 +170748246842,227,0 +170748246890,227,0 +170748246939,228,0 +170748246987,218,0 +170748247035,215,0 +170748247083,216,0 +170748247132,216,0 +170748247180,216,0 +170748247228,217,0 +170748247277,217,0 +170748247325,217,0 +170748247373,218,0 +170748247422,221,0 +170748247472,222,0 +170748247521,225,0 +170748247569,225,0 +170748247617,227,0 +170748247665,227,0 +170748247713,227,0 +170748247763,228,0 +170748247810,228,0 +170748247858,227,0 +170748247906,217,0 +170748247954,216,0 +170748248002,216,0 +170748248050,217,0 +170748248098,218,0 +170748248146,218,0 +170748248195,219,0 +170748248243,220,0 +170748248292,221,0 +170748248340,221,0 +170748248390,223,0 +170748248439,223,0 +170748248487,225,0 +170748248535,225,0 +170748248583,228,0 +170748248631,226,0 +170748248679,225,0 +170748248728,228,0 +170748248776,219,0 +170748248824,217,0 +170748248874,217,0 +170748248923,217,0 +170748248971,218,0 +170748249020,219,0 +170748249070,220,0 +170748249118,221,0 +170748249167,224,0 +170748249217,223,0 +170748249267,223,0 +170748249314,225,0 +170748249362,225,0 +170748249410,229,0 +170748249458,225,0 +170748249508,229,0 +170748249557,229,0 +170748249605,229,0 +170748249653,228,0 +170748249701,216,0 +170748249749,216,0 +170748249797,216,0 +170748249845,218,0 +170748249893,218,0 +170748249941,219,0 +170748249989,220,0 +170748250036,222,0 +170748250084,223,0 +170748250132,224,0 +170748250180,224,0 +170748250228,226,0 +170748250276,229,0 +170748250324,228,0 +170748250372,227,0 +170748250419,227,0 +170748250467,229,0 +170748250515,229,0 +170748250563,227,0 +170748250611,217,0 +170748250659,217,0 +170748250707,218,0 +170748250756,219,0 +170748250804,223,0 +170748250852,223,0 +170748250901,223,0 +170748250949,223,0 +170748250997,227,0 +170748251045,227,0 +170748251093,228,0 +170748251141,229,0 +170748251189,229,0 +170748251237,229,0 +170748251285,228,0 +170748251333,228,0 +170748251382,228,0 +170748251430,227,0 +170748251478,218,0 +170748251527,220,0 +170748251575,222,0 +170748251623,222,0 +170748251671,225,0 +170748251719,224,0 +170748251767,225,0 +170748251816,225,0 +170748251864,226,0 +170748251912,227,0 +170748251960,228,0 +170748252009,230,0 +170748252059,229,0 +170748252108,226,0 +170748252156,229,0 +170748252204,230,0 +170748252252,229,0 +170748252300,230,0 +170748252348,225,0 +170748252396,220,0 +170748252444,220,0 +170748252492,222,0 +170748252541,222,0 +170748252589,223,0 +170748252637,224,0 +170748252685,225,0 +170748252733,226,0 +170748252781,228,0 +170748252829,225,0 +170748252877,227,0 +170748252926,227,0 +170748252976,229,0 +170748253024,228,0 +170748253072,228,0 +170748253121,230,0 +170748253171,230,0 +170748253220,229,0 +170748253268,227,0 +170748253318,217,0 +170748253367,218,0 +170748253415,220,0 +170748253465,221,0 +170748253514,223,0 +170748253564,224,0 +170748253613,225,0 +170748253661,223,0 +170748253709,224,0 +170748253757,226,0 +170748253805,224,0 +170748253853,227,0 +170748253901,227,0 +170748253949,230,0 +170748253997,230,0 +170748254045,230,0 +170748254094,230,0 +170748254142,229,0 +170748254190,218,0 +170748254238,216,0 +170748254286,217,0 +170748254334,218,0 +170748254382,219,0 +170748254430,221,0 +170748254480,222,0 +170748254529,224,0 +170748254577,226,0 +170748254627,226,0 +170748254676,227,0 +170748254726,230,0 +170748254774,232,0 +170748254822,233,0 +170748254871,228,0 +170748254919,230,0 +170748254969,229,0 +170748255017,229,0 +170748255064,229,0 +170748255114,217,0 +170748255162,218,0 +170748255210,220,0 +170748255258,220,0 +170748255305,222,0 +170748255353,222,0 +170748255401,223,0 +170748255449,222,0 +170748255497,224,0 +170748255546,228,0 +170748255594,227,0 +170748255644,227,0 +170748255693,228,0 +170748255741,230,0 +170748255789,231,0 +170748255837,229,0 +170748255885,229,0 +170748255933,227,0 +170748255981,219,0 +170748256028,217,0 +170748256076,218,0 +170748256124,219,0 +170748256172,219,0 +170748256220,220,0 +170748256268,221,0 +170748256317,226,0 +170748256365,226,0 +170748256413,224,0 +170748256463,225,0 +170748256512,226,0 +170748256560,228,0 +170748256608,228,0 +170748256657,229,0 +170748256705,229,0 +170748256753,233,0 +170748256801,233,0 +170748256850,230,0 +170748256898,218,0 +170748256946,216,0 +170748256996,217,0 +170748257044,218,0 +170748257093,218,0 +170748257141,222,0 +170748257189,221,0 +170748257237,223,0 +170748257285,223,0 +170748257334,228,0 +170748257382,225,0 +170748257430,225,0 +170748257478,228,0 +170748257526,229,0 +170748257573,229,0 +170748257623,229,0 +170748257671,229,0 +170748257719,229,0 +170748257766,228,0 +170748257814,217,0 +170748257862,216,0 +170748257910,216,0 +170748257960,217,0 +170748258007,218,0 +170748258057,218,0 +170748258105,220,0 +170748258154,222,0 +170748258202,222,0 +170748258250,223,0 +170748258298,217,0 +170748258348,225,0 +170748258396,228,0 +170748258444,226,0 +170748258492,229,0 +170748258541,227,0 +170748258589,227,0 +170748258637,226,0 +170748258687,217,0 +170748258736,216,0 +170748258784,216,0 +170748258834,217,0 +170748258882,217,0 +170748258930,217,0 +170748258978,219,0 +170748259026,219,0 +170748259073,221,0 +170748259121,222,0 +170748259169,224,0 +170748259217,224,0 +170748259267,225,0 +170748259316,228,0 +170748259364,232,0 +170748259414,231,0 +170748259462,229,0 +170748259510,227,0 +170748259559,228,0 +170748259607,217,0 +170748259655,216,0 +170748259705,216,0 +170748259753,216,0 +170748259801,218,0 +170748259849,218,0 +170748259897,219,0 +170748259944,222,0 +170748259992,222,0 +170748260040,223,0 +170748260088,225,0 +170748260138,226,0 +170748260186,226,0 +170748260234,228,0 +170748260282,226,0 +170748260331,229,0 +170748260379,230,0 +170748260429,227,0 +170748260477,228,0 +170748260525,216,0 +170748260573,216,0 +170748260622,216,0 +170748260670,218,0 +170748260718,219,0 +170748260766,220,0 +170748260814,223,0 +170748260864,222,0 +170748260913,225,0 +170748260962,224,0 +170748261010,227,0 +170748261060,227,0 +170748261110,231,0 +170748261159,227,0 +170748261209,231,0 +170748261258,229,0 +170748261306,227,0 +170748261356,228,0 +170748261404,218,0 +170748261453,216,0 +170748261501,216,0 +170748261551,217,0 +170748261599,215,0 +170748261648,218,0 +170748261698,219,0 +170748261747,219,0 +170748261795,222,0 +170748261843,224,0 +170748261893,226,0 +170748261942,225,0 +170748261990,226,0 +170748262038,227,0 +170748262088,227,0 +170748262137,228,0 +170748262187,228,0 +170748262235,230,0 +170748262283,226,0 +170748262332,215,0 +170748262382,215,0 +170748262430,216,0 +170748262478,216,0 +170748262527,216,0 +170748262575,217,0 +170748262623,217,0 +170748262673,221,0 +170748262721,222,0 +170748262770,224,0 +170748262818,225,0 +170748262866,226,0 +170748262914,230,0 +170748262962,228,0 +170748263010,229,0 +170748263058,229,0 +170748263106,226,0 +170748263154,228,0 +170748263202,218,0 +170748263251,216,0 +170748263299,216,0 +170748263347,217,0 +170748263395,217,0 +170748263443,218,0 +170748263491,218,0 +170748263539,219,0 +170748263589,221,0 +170748263637,224,0 +170748263685,223,0 +170748263733,225,0 +170748263781,229,0 +170748263829,229,0 +170748263876,227,0 +170748263926,226,0 +170748263974,236,0 +170748264024,229,0 +170748264073,227,0 +170748264121,216,0 +170748264169,216,0 +170748264217,217,0 +170748264265,217,0 +170748264312,217,0 +170748264362,219,0 +170748264410,219,0 +170748264459,220,0 +170748264507,222,0 +170748264555,224,0 +170748264603,225,0 +170748264651,227,0 +170748264699,228,0 +170748264747,227,0 +170748264795,228,0 +170748264843,228,0 +170748264891,228,0 +170748264939,228,0 +170748264987,229,0 +170748265036,216,0 +170748265084,216,0 +170748265132,216,0 +170748265180,216,0 +170748265228,217,0 +170748265276,218,0 +170748265324,217,0 +170748265373,219,0 +170748265421,219,0 +170748265469,220,0 +170748265517,221,0 +170748265565,224,0 +170748265613,225,0 +170748265662,228,0 +170748265710,227,0 +170748265760,227,0 +170748265809,228,0 +170748265859,227,0 +170748265907,218,0 +170748265955,216,0 +170748266003,216,0 +170748266051,216,0 +170748266099,217,0 +170748266147,220,0 +170748266194,219,0 +170748266242,220,0 +170748266292,223,0 +170748266341,223,0 +170748266389,224,0 +170748266437,225,0 +170748266486,226,0 +170748266534,228,0 +170748266582,227,0 +170748266630,229,0 +170748266678,227,0 +170748266726,228,0 +170748266774,227,0 +170748266822,217,0 +170748266869,216,0 +170748266917,216,0 +170748266965,217,0 +170748267013,218,0 +170748267061,219,0 +170748267109,221,0 +170748267157,220,0 +170748267207,224,0 +170748267255,224,0 +170748267304,225,0 +170748267354,226,0 +170748267403,226,0 +170748267453,226,0 +170748267502,229,0 +170748267552,228,0 +170748267600,227,0 +170748267649,228,0 +170748267699,226,0 +170748267747,216,0 +170748267796,217,0 +170748267846,218,0 +170748267894,219,0 +170748267942,221,0 +170748267990,220,0 +170748268039,221,0 +170748268087,224,0 +170748268137,225,0 +170748268184,225,0 +170748268232,225,0 +170748268282,226,0 +170748268330,227,0 +170748268378,226,0 +170748268427,227,0 +170748268477,230,0 +170748268526,227,0 +170748268574,228,0 +170748268622,218,0 +170748268672,218,0 +170748268720,220,0 +170748268769,221,0 +170748268819,222,0 +170748268868,222,0 +170748268918,224,0 +170748268966,228,0 +170748269015,226,0 +170748269065,224,0 +170748269114,229,0 +170748269162,229,0 +170748269210,229,0 +170748269260,229,0 +170748269308,227,0 +170748269356,229,0 +170748269404,226,0 +170748269453,228,0 +170748269503,217,0 +170748269551,217,0 +170748269599,218,0 +170748269648,220,0 +170748269696,220,0 +170748269744,223,0 +170748269794,224,0 +170748269843,224,0 +170748269891,224,0 +170748269939,227,0 +170748269989,227,0 +170748270037,229,0 +170748270086,230,0 +170748270134,229,0 +170748270183,229,0 +170748270233,229,0 +170748270281,229,0 +170748270329,225,0 +170748270378,229,0 +170748270426,220,0 +170748270474,220,0 +170748270522,217,0 +170748270570,218,0 +170748270617,222,0 +170748270667,223,0 +170748270715,224,0 +170748270764,227,0 +170748270812,222,0 +170748270862,222,0 +170748270911,228,0 +170748270959,230,0 +170748271007,229,0 +170748271055,228,0 +170748271103,230,0 +170748271151,229,0 +170748271199,228,0 +170748271249,228,0 +170748271298,227,0 +170748271348,219,0 +170748271397,219,0 +170748271445,221,0 +170748271495,221,0 +170748271543,222,0 +170748271591,224,0 +170748271638,225,0 +170748271688,225,0 +170748271736,226,0 +170748271784,228,0 +170748271831,227,0 +170748271879,230,0 +170748271927,231,0 +170748271975,228,0 +170748272023,228,0 +170748272071,234,0 +170748272120,230,0 +170748272168,229,0 +170748272218,227,0 +170748272267,216,0 +170748272315,218,0 +170748272363,219,0 +170748272411,222,0 +170748272459,223,0 +170748272507,226,0 +170748272555,223,0 +170748272604,222,0 +170748272652,226,0 +170748272700,228,0 +170748272748,229,0 +170748272796,229,0 +170748272844,229,0 +170748272893,228,0 +170748272941,229,0 +170748272989,229,0 +170748273037,230,0 +170748273085,229,0 +170748273132,221,0 +170748273180,220,0 +170748273228,221,0 +170748273278,225,0 +170748273326,225,0 +170748273373,224,0 +170748273421,226,0 +170748273471,227,0 +170748273519,224,0 +170748273568,228,0 +170748273616,228,0 +170748273664,228,0 +170748273714,229,0 +170748273762,229,0 +170748273811,226,0 +170748273859,228,0 +170748273907,229,0 +170748273957,230,0 +170748274005,227,0 +170748274054,219,0 +170748274104,218,0 +170748274152,219,0 +170748274201,220,0 +170748274251,222,0 +170748274299,223,0 +170748274348,224,0 +170748274396,226,0 +170748274444,227,0 +170748274492,227,0 +170748274540,227,0 +170748274589,227,0 +170748274639,229,0 +170748274687,227,0 +170748274735,227,0 +170748274783,229,0 +170748274830,230,0 +170748274880,228,0 +170748274928,225,0 +170748274977,216,0 +170748275027,216,0 +170748275077,216,0 +170748275126,217,0 +170748275174,219,0 +170748275222,220,0 +170748275270,220,0 +170748275318,223,0 +170748275367,224,0 +170748275415,223,0 +170748275465,225,0 +170748275514,227,0 +170748275562,227,0 +170748275612,228,0 +170748275660,228,0 +170748275708,227,0 +170748275756,228,0 +170748275805,231,0 +170748275853,217,0 +170748275903,216,0 +170748275951,216,0 +170748275999,217,0 +170748276048,217,0 +170748276096,217,0 +170748276146,219,0 +170748276195,220,0 +170748276243,223,0 +170748276291,223,0 +170748276341,225,0 +170748276390,225,0 +170748276438,226,0 +170748276487,227,0 +170748276537,228,0 +170748276585,229,0 +170748276635,230,0 +170748276684,228,0 +170748276734,226,0 +170748276783,216,0 +170748276833,215,0 +170748276881,216,0 +170748276929,216,0 +170748276978,219,0 +170748277026,217,0 +170748277074,219,0 +170748277124,221,0 +170748277172,220,0 +170748277220,222,0 +170748277267,225,0 +170748277315,225,0 +170748277363,228,0 +170748277411,226,0 +170748277459,226,0 +170748277509,228,0 +170748277558,229,0 +170748277608,228,0 +170748277656,217,0 +170748277704,216,0 +170748277752,216,0 +170748277800,215,0 +170748277848,217,0 +170748277895,220,0 +170748277943,219,0 +170748277993,222,0 +170748278041,222,0 +170748278089,222,0 +170748278137,225,0 +170748278185,228,0 +170748278233,226,0 +170748278282,227,0 +170748278330,225,0 +170748278378,230,0 +170748278426,229,0 +170748278474,230,0 +170748278523,228,0 +170748278571,217,0 +170748278619,215,0 +170748278667,216,0 +170748278715,217,0 +170748278764,218,0 +170748278814,219,0 +170748278864,221,0 +170748278913,222,0 +170748278961,222,0 +170748279009,221,0 +170748279057,224,0 +170748279106,225,0 +170748279154,227,0 +170748279202,225,0 +170748279250,226,0 +170748279298,226,0 +170748279346,227,0 +170748279395,227,0 +170748279443,228,0 +170748279491,216,0 +170748279541,216,0 +170748279589,217,0 +170748279637,218,0 +170748279686,219,0 +170748279734,222,0 +170748279784,220,0 +170748279832,223,0 +170748279881,222,0 +170748279929,223,0 +170748279979,224,0 +170748280027,225,0 +170748280074,228,0 +170748280122,226,0 +170748280170,229,0 +170748280218,227,0 +170748280268,227,0 +170748280316,227,0 +170748280364,223,0 +170748280412,216,0 +170748280460,216,0 +170748280509,216,0 +170748280557,217,0 +170748280607,217,0 +170748280656,217,0 +170748280704,219,0 +170748280752,222,0 +170748280802,221,0 +170748280850,222,0 +170748280899,225,0 +170748280949,226,0 +170748280998,227,0 +170748281048,227,0 +170748281097,227,0 +170748281147,230,0 +170748281196,227,0 +170748281246,228,0 +170748281295,217,0 +170748281345,216,0 +170748281394,216,0 +170748281442,216,0 +170748281490,216,0 +170748281540,217,0 +170748281589,218,0 +170748281639,218,0 +170748281687,220,0 +170748281736,221,0 +170748281784,220,0 +170748281834,224,0 +170748281882,225,0 +170748281931,224,0 +170748281979,228,0 +170748282029,228,0 +170748282077,228,0 +170748282125,227,0 +170748282173,222,0 +170748282221,216,0 +170748282270,216,0 +170748282320,216,0 +170748282369,217,0 +170748282419,218,0 +170748282467,220,0 +170748282516,220,0 +170748282564,221,0 +170748282612,223,0 +170748282660,224,0 +170748282708,226,0 +170748282756,226,0 +170748282804,226,0 +170748282853,227,0 +170748282903,227,0 +170748282951,228,0 +170748282999,228,0 +170748283047,228,0 +170748283096,217,0 +170748283144,216,0 +170748283192,217,0 +170748283240,217,0 +170748283288,220,0 +170748283336,216,0 +170748283384,220,0 +170748283434,219,0 +170748283482,223,0 +170748283529,223,0 +170748283579,226,0 +170748283627,227,0 +170748283675,227,0 +170748283724,229,0 +170748283774,229,0 +170748283822,229,0 +170748283872,228,0 +170748283921,228,0 +170748283969,228,0 +170748284017,217,0 +170748284067,217,0 +170748284114,219,0 +170748284162,220,0 +170748284212,221,0 +170748284262,223,0 +170748284309,222,0 +170748284357,224,0 +170748284405,226,0 +170748284453,226,0 +170748284501,230,0 +170748284549,229,0 +170748284597,230,0 +170748284645,230,0 +170748284693,232,0 +170748284741,230,0 +170748284789,230,0 +170748284838,228,0 +170748284888,227,0 +170748284937,216,0 +170748284987,216,0 +170748285035,218,0 +170748285084,220,0 +170748285132,223,0 +170748285180,221,0 +170748285230,224,0 +170748285278,225,0 +170748285326,231,0 +170748285375,228,0 +170748285423,228,0 +170748285473,231,0 +170748285522,231,0 +170748285572,231,0 +170748285620,230,0 +170748285669,229,0 +170748285719,231,0 +170748285767,229,0 +170748285815,217,0 +170748285862,216,0 +170748285910,216,0 +170748285960,217,0 +170748286008,219,0 +170748286056,220,0 +170748286104,221,0 +170748286152,221,0 +170748286200,222,0 +170748286248,225,0 +170748286295,226,0 +170748286345,227,0 +170748286395,228,0 +170748286444,229,0 +170748286494,229,0 +170748286543,231,0 +170748286593,229,0 +170748286642,227,0 +170748286692,228,0 +170748286740,217,0 +170748286788,216,0 +170748286837,216,0 +170748286887,217,0 +170748286936,217,0 +170748286984,217,0 +170748287032,219,0 +170748287080,222,0 +170748287128,224,0 +170748287177,224,0 +170748287225,226,0 +170748287273,226,0 +170748287321,225,0 +170748287369,227,0 +170748287417,231,0 +170748287466,231,0 +170748287516,232,0 +170748287563,230,0 +170748287611,228,0 +170748287659,216,0 +170748287707,216,0 +170748287755,217,0 +170748287805,217,0 +170748287854,218,0 +170748287902,217,0 +170748287951,218,0 +170748288001,219,0 +170748288049,221,0 +170748288097,221,0 +170748288145,222,0 +170748288193,225,0 +170748288241,225,0 +170748288288,227,0 +170748288336,227,0 +170748288384,227,0 +170748288432,228,0 +170748288482,227,0 +170748288531,218,0 +170748288581,217,0 +170748288629,216,0 +170748288677,216,0 +170748288726,216,0 +170748288776,214,0 +170748288824,218,0 +170748288873,220,0 +170748288921,223,0 +170748288971,222,0 +170748289018,224,0 +170748289066,226,0 +170748289116,227,0 +170748289164,229,0 +170748289213,228,0 +170748289261,228,0 +170748289309,227,0 +170748289357,227,0 +170748289406,228,0 +170748289454,216,0 +170748289504,217,0 +170748289552,217,0 +170748289599,216,0 +170748289649,217,0 +170748289699,217,0 +170748289747,220,0 +170748289796,221,0 +170748289844,222,0 +170748289892,223,0 +170748289940,229,0 +170748289988,236,0 +170748290036,226,0 +170748290085,227,0 +170748290133,228,0 +170748290181,230,0 +170748290229,227,0 +170748290277,228,0 +170748290325,228,0 +170748290375,216,0 +170748290422,216,0 +170748290470,216,0 +170748290520,216,0 +170748290568,217,0 +170748290617,218,0 +170748290665,219,0 +170748290713,220,0 +170748290761,223,0 +170748290811,222,0 +170748290860,224,0 +170748290910,227,0 +170748290960,226,0 +170748291009,227,0 +170748291057,229,0 +170748291105,229,0 +170748291155,229,0 +170748291204,228,0 +170748291252,217,0 +170748291300,215,0 +170748291348,216,0 +170748291396,216,0 +170748291444,217,0 +170748291492,217,0 +170748291540,218,0 +170748291589,219,0 +170748291637,221,0 +170748291685,222,0 +170748291735,222,0 +170748291783,225,0 +170748291831,225,0 +170748291879,226,0 +170748291928,226,0 +170748291976,228,0 +170748292024,228,0 +170748292072,227,0 +170748292122,228,0 +170748292171,217,0 +170748292219,216,0 +170748292267,216,0 +170748292317,217,0 +170748292366,217,0 +170748292414,218,0 +170748292464,219,0 +170748292512,218,0 +170748292561,220,0 +170748292611,221,0 +170748292659,221,0 +170748292707,224,0 +170748292755,225,0 +170748292803,225,0 +170748292852,226,0 +170748292900,227,0 +170748292948,227,0 +170748292997,227,0 +170748293047,228,0 +170748293095,216,0 +170748293143,215,0 +170748293192,216,0 +170748293242,216,0 +170748293291,217,0 +170748293339,218,0 +170748293389,218,0 +170748293437,220,0 +170748293485,220,0 +170748293533,221,0 +170748293582,222,0 +170748293630,222,0 +170748293678,222,0 +170748293726,226,0 +170748293776,227,0 +170748293824,226,0 +170748293872,227,0 +170748293920,227,0 +170748293968,228,0 +170748294016,217,0 +170748294063,217,0 +170748294111,218,0 +170748294161,219,0 +170748294210,220,0 +170748294260,221,0 +170748294309,221,0 +170748294357,222,0 +170748294405,224,0 +170748294455,224,0 +170748294504,225,0 +170748294552,227,0 +170748294600,228,0 +170748294648,228,0 +170748294696,229,0 +170748294744,227,0 +170748294794,228,0 +170748294842,227,0 +170748294891,218,0 +170748294939,219,0 +170748294987,220,0 +170748295035,221,0 +170748295083,222,0 +170748295132,223,0 +170748295182,224,0 +170748295230,226,0 +170748295278,226,0 +170748295327,226,0 +170748295375,227,0 +170748295423,228,0 +170748295471,228,0 +170748295519,228,0 +170748295567,228,0 +170748295615,228,0 +170748295663,228,0 +170748295711,227,0 +170748295760,228,0 +170748295808,221,0 +170748295858,222,0 +170748295906,224,0 +170748295954,224,0 +170748296003,225,0 +170748296051,226,0 +170748296099,227,0 +170748296147,226,0 +170748296197,227,0 +170748296246,227,0 +170748296296,229,0 +170748296345,228,0 +170748296393,229,0 +170748296443,231,0 +170748296491,228,0 +170748296540,229,0 +170748296590,229,0 +170748296639,229,0 +170748296687,229,0 +170748296735,221,0 +170748296785,224,0 +170748296833,224,0 +170748296881,225,0 +170748296930,225,0 +170748296980,228,0 +170748297029,227,0 +170748297077,229,0 +170748297127,228,0 +170748297176,229,0 +170748297224,231,0 +170748297272,231,0 +170748297320,229,0 +170748297368,231,0 +170748297416,230,0 +170748297466,230,0 +170748297513,230,0 +170748297563,229,0 +170748297611,228,0 +170748297659,221,0 +170748297707,219,0 +170748297755,221,0 +170748297804,221,0 +170748297852,222,0 +170748297900,222,0 +170748297948,223,0 +170748297998,226,0 +170748298046,226,0 +170748298094,227,0 +170748298142,226,0 +170748298190,227,0 +170748298238,230,0 +170748298285,227,0 +170748298333,229,0 +170748298383,229,0 +170748298431,229,0 +170748298481,228,0 +170748298528,229,0 +170748298576,219,0 +170748298624,219,0 +170748298672,221,0 +170748298722,221,0 +170748298769,224,0 +170748298817,223,0 +170748298867,225,0 +170748298915,224,0 +170748298963,224,0 +170748299010,225,0 +170748299058,227,0 +170748299106,227,0 +170748299154,227,0 +170748299202,226,0 +170748299250,228,0 +170748299298,228,0 +170748299346,228,0 +170748299393,228,0 +170748299441,227,0 +170748299489,227,0 +170748299537,219,0 +170748299587,220,0 +170748299634,221,0 +170748299682,221,0 +170748299730,223,0 +170748299778,223,0 +170748299826,224,0 +170748299874,225,0 +170748299922,226,0 +170748299971,225,0 +170748300019,225,0 +170748300067,228,0 +170748300115,229,0 +170748300163,230,0 +170748300212,230,0 +170748300260,230,0 +170748300308,229,0 +170748300356,233,0 +170748300404,229,0 +170748300452,220,0 +170748300500,220,0 +170748300547,222,0 +170748300595,223,0 +170748300645,224,0 +170748300694,222,0 +170748300744,226,0 +170748300793,223,0 +170748300841,226,0 +170748300891,228,0 +170748300939,229,0 +170748300988,230,0 +170748301036,232,0 +170748301084,229,0 +170748301132,229,0 +170748301180,225,0 +170748301228,229,0 +170748301276,228,0 +170748301326,227,0 +170748301375,217,0 +170748301425,217,0 +170748301473,218,0 +170748301521,220,0 +170748301569,222,0 +170748301618,222,0 +170748301668,224,0 +170748301716,225,0 +170748301763,226,0 +170748301813,226,0 +170748301862,228,0 +170748301910,230,0 +170748301960,229,0 +170748302009,225,0 +170748302059,230,0 +170748302107,229,0 +170748302155,228,0 +170748302202,228,0 +170748302252,226,0 +170748302300,216,0 +170748302348,216,0 +170748302397,216,0 +170748302445,216,0 +170748302495,217,0 +170748302544,217,0 +170748302592,218,0 +170748302640,219,0 +170748302688,221,0 +170748302736,222,0 +170748302784,222,0 +170748302831,226,0 +170748302879,226,0 +170748302927,227,0 +170748302977,228,0 +170748303024,229,0 +170748303072,228,0 +170748303120,227,0 +170748303168,228,0 +170748303217,215,0 +170748303265,215,0 +170748303313,216,0 +170748303361,216,0 +170748303411,216,0 +170748303458,217,0 +170748303508,217,0 +170748303557,220,0 +170748303605,221,0 +170748303653,223,0 +170748303701,222,0 +170748303749,224,0 +170748303797,224,0 +170748303845,226,0 +170748303893,228,0 +170748303940,227,0 +170748303988,226,0 +170748304036,227,0 +170748304086,227,0 +170748304135,216,0 +170748304183,216,0 +170748304231,217,0 +170748304279,218,0 +170748304326,219,0 +170748304374,221,0 +170748304422,224,0 +170748304470,224,0 +170748304520,225,0 +170748304569,226,0 +170748304617,226,0 +170748304665,231,0 +170748304713,228,0 +170748304762,230,0 +170748304810,229,0 +170748304858,230,0 +170748304906,229,0 +170748304956,228,0 +170748305005,229,0 +170748305053,217,0 +170748305101,216,0 +170748305150,216,0 +170748305198,217,0 +170748305246,218,0 +170748305294,220,0 +170748305342,220,0 +170748305390,222,0 +170748305438,222,0 +170748305487,222,0 +170748305535,224,0 +170748305583,225,0 +170748305632,226,0 +170748305682,226,0 +170748305730,227,0 +170748305778,229,0 +170748305825,230,0 +170748305873,228,0 +170748305921,228,0 +170748305969,217,0 +170748306017,216,0 +170748306066,216,0 +170748306116,215,0 +170748306164,217,0 +170748306211,219,0 +170748306259,219,0 +170748306307,220,0 +170748306355,220,0 +170748306405,222,0 +170748306453,223,0 +170748306500,224,0 +170748306548,225,0 +170748306596,228,0 +170748306644,228,0 +170748306692,228,0 +170748306740,230,0 +170748306788,230,0 +170748306837,228,0 +170748306886,218,0 +170748306934,216,0 +170748306982,215,0 +170748307030,216,0 +170748307078,217,0 +170748307126,217,0 +170748307174,218,0 +170748307222,219,0 +170748307270,221,0 +170748307317,224,0 +170748307365,222,0 +170748307413,224,0 +170748307461,227,0 +170748307509,228,0 +170748307558,229,0 +170748307606,229,0 +170748307654,228,0 +170748307704,228,0 +170748307752,228,0 +170748307799,218,0 +170748307847,216,0 +170748307895,216,0 +170748307943,216,0 +170748307991,214,0 +170748308039,218,0 +170748308087,220,0 +170748308136,220,0 +170748308184,221,0 +170748308232,223,0 +170748308280,225,0 +170748308328,223,0 +170748308376,228,0 +170748308424,226,0 +170748308471,226,0 +170748308519,227,0 +170748308567,229,0 +170748308615,228,0 +170748308663,229,0 +170748308711,225,0 +170748308760,216,0 +170748308808,216,0 +170748308858,217,0 +170748308906,218,0 +170748308953,216,0 +170748309001,220,0 +170748309049,220,0 +170748309097,222,0 +170748309145,224,0 +170748309194,224,0 +170748309242,225,0 +170748309292,226,0 +170748309340,228,0 +170748309389,230,0 +170748309439,230,0 +170748309487,229,0 +170748309536,230,0 +170748309584,229,0 +170748309633,229,0 +170748309683,216,0 +170748309731,216,0 +170748309780,217,0 +170748309828,217,0 +170748309878,218,0 +170748309926,218,0 +170748309974,220,0 +170748310022,220,0 +170748310071,222,0 +170748310119,224,0 +170748310167,223,0 +170748310217,227,0 +170748310266,227,0 +170748310316,228,0 +170748310365,229,0 +170748310413,230,0 +170748310463,229,0 +170748310511,229,0 +170748310560,227,0 +170748310608,215,0 +170748310656,215,0 +170748310704,215,0 +170748310754,216,0 +170748310803,216,0 +170748310851,216,0 +170748310899,217,0 +170748310949,217,0 +170748310998,217,0 +170748311048,218,0 +170748311096,219,0 +170748311144,220,0 +170748311193,221,0 +170748311241,225,0 +170748311290,225,0 +170748311338,224,0 +170748311386,225,0 +170748311434,229,0 +170748311482,219,0 +170748311530,216,0 +170748311578,216,0 +170748311626,216,0 +170748311674,216,0 +170748311723,217,0 +170748311771,216,0 +170748311820,219,0 +170748311868,222,0 +170748311918,222,0 +170748311966,223,0 +170748312013,224,0 +170748312061,227,0 +170748312109,233,0 +170748312157,227,0 +170748312205,227,0 +170748312253,228,0 +170748312301,227,0 +170748312349,228,0 +170748312398,227,0 +170748312448,216,0 +170748312497,216,0 +170748312545,217,0 +170748312593,219,0 +170748312641,219,0 +170748312691,220,0 +170748312739,221,0 +170748312787,221,0 +170748312836,221,0 +170748312884,224,0 +170748312934,224,0 +170748312983,226,0 +170748313031,227,0 +170748313079,228,0 +170748313129,226,0 +170748313177,229,0 +170748313225,229,0 +170748313272,228,0 +170748313320,228,0 +170748313370,216,0 +170748313419,216,0 +170748313467,217,0 +170748313517,219,0 +170748313566,220,0 +170748313614,221,0 +170748313662,222,0 +170748313710,220,0 +170748313758,224,0 +170748313806,224,0 +170748313855,226,0 +170748313904,226,0 +170748313952,227,0 +170748314000,225,0 +170748314048,228,0 +170748314098,230,0 +170748314146,235,0 +170748314195,229,0 +170748314243,227,0 +170748314291,217,0 +170748314339,217,0 +170748314386,219,0 +170748314434,221,0 +170748314484,221,0 +170748314531,220,0 +170748314579,223,0 +170748314627,223,0 +170748314675,224,0 +170748314723,226,0 +170748314773,227,0 +170748314822,231,0 +170748314870,228,0 +170748314918,229,0 +170748314967,228,0 +170748315016,228,0 +170748315064,229,0 +170748315112,228,0 +170748315160,226,0 +170748315210,216,0 +170748315259,216,0 +170748315307,216,0 +170748315355,217,0 +170748315403,219,0 +170748315451,219,0 +170748315499,221,0 +170748315547,224,0 +170748315596,222,0 +170748315646,224,0 +170748315693,227,0 +170748315743,228,0 +170748315792,229,0 +170748315840,228,0 +170748315890,230,0 +170748315939,228,0 +170748315989,230,0 +170748316036,229,0 +170748316084,228,0 +170748316134,216,0 +170748316182,216,0 +170748316230,216,0 +170748316278,218,0 +170748316327,219,0 +170748316376,219,0 +170748316424,221,0 +170748316474,221,0 +170748316522,222,0 +170748316571,225,0 +170748316621,225,0 +170748316669,225,0 +170748316718,228,0 +170748316768,229,0 +170748316817,228,0 +170748316867,229,0 +170748316915,229,0 +170748316963,229,0 +170748317011,227,0 +170748317059,216,0 +170748317106,216,0 +170748317156,217,0 +170748317204,218,0 +170748317252,220,0 +170748317300,220,0 +170748317347,222,0 +170748317395,223,0 +170748317443,225,0 +170748317491,224,0 +170748317539,227,0 +170748317589,226,0 +170748317637,228,0 +170748317685,227,0 +170748317733,227,0 +170748317781,230,0 +170748317829,230,0 +170748317878,228,0 +170748317926,227,0 +170748317974,217,0 +170748318024,217,0 +170748318073,218,0 +170748318123,219,0 +170748318172,221,0 +170748318220,222,0 +170748318268,223,0 +170748318318,224,0 +170748318365,224,0 +170748318413,225,0 +170748318461,226,0 +170748318509,224,0 +170748318557,228,0 +170748318605,227,0 +170748318655,229,0 +170748318703,228,0 +170748318750,228,0 +170748318798,228,0 +170748318846,228,0 +170748318894,216,0 +170748318942,216,0 +170748318990,218,0 +170748319038,219,0 +170748319086,219,0 +170748319135,222,0 +170748319183,224,0 +170748319232,223,0 +170748319282,224,0 +170748319330,224,0 +170748319378,226,0 +170748319426,229,0 +170748319474,228,0 +170748319521,229,0 +170748319571,230,0 +170748319620,228,0 +170748319670,229,0 +170748319719,229,0 +170748319767,227,0 +170748319817,217,0 +170748319865,215,0 +170748319913,216,0 +170748319961,217,0 +170748320009,217,0 +170748320058,218,0 +170748320106,219,0 +170748320155,221,0 +170748320203,221,0 +170748320251,223,0 +170748320299,222,0 +170748320347,225,0 +170748320395,226,0 +170748320443,227,0 +170748320492,226,0 +170748320540,225,0 +170748320588,230,0 +170748320636,228,0 +170748320684,230,0 +170748320732,219,0 +170748320779,217,0 +170748320827,217,0 +170748320875,217,0 +170748320925,218,0 +170748320973,219,0 +170748321020,220,0 +170748321068,221,0 +170748321118,222,0 +170748321166,223,0 +170748321215,224,0 +170748321263,226,0 +170748321311,227,0 +170748321361,229,0 +170748321410,229,0 +170748321458,228,0 +170748321506,229,0 +170748321554,228,0 +170748321602,226,0 +170748321649,218,0 +170748321697,216,0 +170748321747,216,0 +170748321795,216,0 +170748321844,217,0 +170748321894,217,0 +170748321941,219,0 +170748321989,220,0 +170748322039,221,0 +170748322087,221,0 +170748322136,224,0 +170748322184,225,0 +170748322234,224,0 +170748322282,228,0 +170748322330,226,0 +170748322378,226,0 +170748322425,227,0 +170748322473,227,0 +170748322521,227,0 +170748322571,218,0 +170748322618,216,0 +170748322666,216,0 +170748322716,216,0 +170748322764,216,0 +170748322813,217,0 +170748322861,217,0 +170748322909,217,0 +170748322958,218,0 +170748323006,219,0 +170748323054,220,0 +170748323102,223,0 +170748323150,223,0 +170748323198,225,0 +170748323246,226,0 +170748323295,226,0 +170748323345,228,0 +170748323393,225,0 +170748323442,230,0 +170748323490,219,0 +170748323539,215,0 +170748323589,216,0 +170748323637,217,0 +170748323684,217,0 +170748323732,217,0 +170748323780,217,0 +170748323828,220,0 +170748323877,219,0 +170748323925,220,0 +170748323973,221,0 +170748324021,222,0 +170748324071,221,0 +170748324118,222,0 +170748324168,224,0 +170748324216,223,0 +170748324264,223,0 +170748324311,226,0 +170748324361,226,0 +170748324410,227,0 +170748324458,228,0 +170748324506,229,0 +170748324554,229,0 +170748324604,228,0 +170748324653,228,0 +170748324701,228,0 +170748324749,228,0 +170748324797,227,0 +170748324846,228,0 +170748324896,217,0 +170748324944,218,0 +170748324992,218,0 +170748325040,220,0 +170748325088,222,0 +170748325137,221,0 +170748325185,221,0 +170748325235,223,0 +170748325284,224,0 +170748325332,222,0 +170748325380,225,0 +170748325428,225,0 +170748325475,226,0 +170748325525,227,0 +170748325573,229,0 +170748325622,228,0 +170748325670,228,0 +170748325718,228,0 +170748325766,229,0 +170748325814,218,0 +170748325863,217,0 +170748325911,218,0 +170748325961,219,0 +170748326010,219,0 +170748326058,220,0 +170748326106,222,0 +170748326154,223,0 +170748326202,222,0 +170748326251,223,0 +170748326299,226,0 +170748326348,227,0 +170748326398,228,0 +170748326448,229,0 +170748326496,230,0 +170748326545,229,0 +170748326595,230,0 +170748326643,231,0 +170748326692,228,0 +170748326740,219,0 +170748326788,217,0 +170748326836,218,0 +170748326886,220,0 +170748326935,220,0 +170748326983,221,0 +170748327031,221,0 +170748327080,221,0 +170748327130,222,0 +170748327179,222,0 +170748327227,224,0 +170748327275,224,0 +170748327323,225,0 +170748327371,225,0 +170748327419,220,0 +170748327467,227,0 +170748327515,228,0 +170748327563,228,0 +170748327610,229,0 +170748327660,218,0 +170748327708,217,0 +170748327756,218,0 +170748327805,220,0 +170748327855,224,0 +170748327904,222,0 +170748327954,223,0 +170748328002,225,0 +170748328050,226,0 +170748328099,226,0 +170748328147,228,0 +170748328195,227,0 +170748328245,226,0 +170748328292,230,0 +170748328340,230,0 +170748328390,229,0 +170748328438,229,0 +170748328486,228,0 +170748328534,228,0 +170748328582,224,0 +170748328630,218,0 +170748328679,218,0 +170748328727,220,0 +170748328775,221,0 +170748328825,222,0 +170748328874,222,0 +170748328922,224,0 +170748328970,224,0 +170748329018,226,0 +170748329066,227,0 +170748329116,229,0 +170748329165,228,0 +170748329215,228,0 +170748329264,229,0 +170748329314,229,0 +170748329362,227,0 +170748329411,228,0 +170748329461,228,0 +170748329510,227,0 +170748329560,217,0 +170748329609,217,0 +170748329657,218,0 +170748329707,220,0 +170748329755,222,0 +170748329804,222,0 +170748329854,224,0 +170748329903,223,0 +170748329951,224,0 +170748329999,226,0 +170748330047,227,0 +170748330095,228,0 +170748330144,228,0 +170748330192,231,0 +170748330240,230,0 +170748330289,230,0 +170748330337,228,0 +170748330387,228,0 +170748330435,228,0 +170748330484,218,0 +170748330532,216,0 +170748330580,217,0 +170748330629,219,0 +170748330677,219,0 +170748330725,220,0 +170748330775,222,0 +170748330822,222,0 +170748330870,223,0 +170748330918,226,0 +170748330968,225,0 +170748331015,227,0 +170748331063,227,0 +170748331111,228,0 +170748331159,231,0 +170748331208,229,0 +170748331256,229,0 +170748331304,228,0 +170748331354,228,0 +170748331402,218,0 +170748331449,216,0 +170748331497,216,0 +170748331545,217,0 +170748331595,218,0 +170748331643,220,0 +170748331690,220,0 +170748331740,223,0 +170748331789,223,0 +170748331839,225,0 +170748331888,226,0 +170748331936,225,0 +170748331984,228,0 +170748332034,228,0 +170748332082,229,0 +170748332130,230,0 +170748332179,228,0 +170748332227,228,0 +170748332275,227,0 +170748332325,218,0 +170748332374,216,0 +170748332422,215,0 +170748332470,217,0 +170748332518,217,0 +170748332566,218,0 +170748332614,219,0 +170748332662,219,0 +170748332710,221,0 +170748332759,223,0 +170748332809,223,0 +170748332857,227,0 +170748332906,226,0 +170748332954,228,0 +170748333002,227,0 +170748333052,228,0 +170748333101,228,0 +170748333149,228,0 +170748333197,229,0 +170748333247,226,0 +170748333295,216,0 +170748333344,216,0 +170748333394,216,0 +170748333443,217,0 +170748333493,217,0 +170748333541,218,0 +170748333590,219,0 +170748333638,218,0 +170748333686,221,0 +170748333736,224,0 +170748333784,224,0 +170748333832,227,0 +170748333879,225,0 +170748333927,226,0 +170748333977,227,0 +170748334025,229,0 +170748334074,228,0 +170748334122,227,0 +170748334170,226,0 +170748334218,216,0 +170748334268,216,0 +170748334316,216,0 +170748334364,216,0 +170748334412,217,0 +170748334459,218,0 +170748334507,218,0 +170748334555,219,0 +170748334605,220,0 +170748334653,221,0 +170748334702,223,0 +170748334752,224,0 +170748334801,225,0 +170748334849,226,0 +170748334897,226,0 +170748334945,229,0 +170748334993,229,0 +170748335041,227,0 +170748335089,227,0 +170748335137,217,0 +170748335185,216,0 +170748335233,216,0 +170748335281,217,0 +170748335329,217,0 +170748335378,217,0 +170748335428,217,0 +170748335476,218,0 +170748335524,219,0 +170748335573,218,0 +170748335621,220,0 +170748335669,222,0 +170748335718,224,0 +170748335768,228,0 +170748335818,226,0 +170748335865,225,0 +170748335915,226,0 +170748335963,226,0 +170748336013,228,0 +170748336060,218,0 +170748336108,216,0 +170748336158,216,0 +170748336206,216,0 +170748336254,216,0 +170748336303,217,0 +170748336353,217,0 +170748336401,220,0 +170748336449,219,0 +170748336497,220,0 +170748336545,222,0 +170748336593,223,0 +170748336641,224,0 +170748336690,225,0 +170748336738,227,0 +170748336788,226,0 +170748336837,229,0 +170748336885,227,0 +170748336935,226,0 +170748336983,228,0 +170748337031,216,0 +170748337079,216,0 +170748337127,217,0 +170748337175,216,0 +170748337223,218,0 +170748337272,220,0 +170748337320,222,0 +170748337368,221,0 +170748337416,221,0 +170748337464,224,0 +170748337513,223,0 +170748337561,224,0 +170748337609,228,0 +170748337657,230,0 +170748337705,226,0 +170748337753,226,0 +170748337801,227,0 +170748337849,228,0 +170748337897,227,0 +170748337945,217,0 +170748337994,216,0 +170748338044,216,0 +170748338093,218,0 +170748338143,219,0 +170748338191,220,0 +170748338240,221,0 +170748338290,221,0 +170748338339,222,0 +170748338387,223,0 +170748338435,224,0 +170748338483,224,0 +170748338531,225,0 +170748338581,226,0 +170748338629,227,0 +170748338678,227,0 +170748338728,231,0 +170748338777,229,0 +170748338825,228,0 +170748338875,217,0 +170748338923,216,0 +170748338971,216,0 +170748339019,216,0 +170748339067,217,0 +170748339116,218,0 +170748339166,219,0 +170748339214,218,0 +170748339263,222,0 +170748339311,223,0 +170748339361,223,0 +170748339409,225,0 +170748339458,226,0 +170748339506,226,0 +170748339554,227,0 +170748339602,225,0 +170748339650,227,0 +170748339698,228,0 +170748339746,227,0 +170748339794,217,0 +170748339842,216,0 +170748339890,215,0 +170748339938,217,0 +170748339986,218,0 +170748340034,219,0 +170748340083,220,0 +170748340133,222,0 +170748340182,223,0 +170748340232,223,0 +170748340280,224,0 +170748340329,226,0 +170748340379,227,0 +170748340428,227,0 +170748340476,228,0 +170748340524,228,0 +170748340572,228,0 +170748340620,228,0 +170748340669,228,0 +170748340717,218,0 +170748340765,215,0 +170748340813,216,0 +170748340861,217,0 +170748340909,218,0 +170748340957,219,0 +170748341005,220,0 +170748341053,221,0 +170748341101,222,0 +170748341150,223,0 +170748341198,225,0 +170748341248,226,0 +170748341297,227,0 +170748341345,226,0 +170748341395,226,0 +170748341444,227,0 +170748341492,226,0 +170748341540,227,0 +170748341588,227,0 +170748341636,227,0 +170748341684,216,0 +170748341732,215,0 +170748341781,216,0 +170748341829,216,0 +170748341879,217,0 +170748341928,217,0 +170748341976,219,0 +170748342026,219,0 +170748342074,221,0 +170748342122,223,0 +170748342171,224,0 +170748342219,224,0 +170748342269,220,0 +170748342318,226,0 +170748342366,228,0 +170748342416,230,0 +170748342463,228,0 +170748342513,227,0 +170748342563,227,0 +170748342611,217,0 +170748342660,215,0 +170748342710,215,0 +170748342759,216,0 +170748342807,216,0 +170748342855,217,0 +170748342903,217,0 +170748342951,218,0 +170748342999,220,0 +170748343047,222,0 +170748343095,223,0 +170748343144,224,0 +170748343194,222,0 +170748343243,223,0 +170748343293,226,0 +170748343342,226,0 +170748343392,228,0 +170748343441,225,0 +170748343489,225,0 +170748343537,218,0 +170748343587,216,0 +170748343636,216,0 +170748343686,216,0 +170748343735,217,0 +170748343783,217,0 +170748343831,218,0 +170748343879,220,0 +170748343929,222,0 +170748343978,221,0 +170748344026,223,0 +170748344076,225,0 +170748344124,225,0 +170748344172,226,0 +170748344220,228,0 +170748344268,227,0 +170748344316,228,0 +170748344365,228,0 +170748344413,227,0 +170748344461,217,0 +170748344509,216,0 +170748344559,216,0 +170748344606,217,0 +170748344654,216,0 +170748344704,217,0 +170748344754,218,0 +170748344802,220,0 +170748344849,220,0 +170748344899,223,0 +170748344948,223,0 +170748344996,223,0 +170748345046,225,0 +170748345094,228,0 +170748345142,223,0 +170748345190,227,0 +170748345238,227,0 +170748345286,228,0 +170748345335,228,0 +170748345385,221,0 +170748345435,216,0 +170748345484,216,0 +170748345532,216,0 +170748345580,217,0 +170748345628,217,0 +170748345677,218,0 +170748345727,220,0 +170748345775,222,0 +170748345824,222,0 +170748345874,222,0 +170748345924,224,0 +170748345973,228,0 +170748346023,228,0 +170748346071,229,0 +170748346119,226,0 +170748346166,229,0 +170748346216,229,0 +170748346264,227,0 +170748346312,229,0 +170748346362,216,0 +170748346410,216,0 +170748346458,217,0 +170748346507,217,0 +170748346556,219,0 +170748346604,220,0 +170748346652,220,0 +170748346700,222,0 +170748346750,223,0 +170748346799,225,0 +170748346847,223,0 +170748346897,226,0 +170748346945,228,0 +170748346994,227,0 +170748347044,229,0 +170748347094,229,0 +170748347141,229,0 +170748347189,230,0 +170748347239,228,0 +170748347287,217,0 +170748347336,217,0 +170748347386,217,0 +170748347434,218,0 +170748347483,219,0 +170748347533,220,0 +170748347581,220,0 +170748347629,220,0 +170748347679,222,0 +170748347726,223,0 +170748347774,226,0 +170748347822,226,0 +170748347872,226,0 +170748347921,227,0 +170748347969,228,0 +170748348017,225,0 +170748348067,228,0 +170748348116,227,0 +170748348166,228,0 +170748348215,217,0 +170748348265,216,0 +170748348313,216,0 +170748348362,218,0 +170748348410,218,0 +170748348458,221,0 +170748348508,220,0 +170748348557,222,0 +170748348607,223,0 +170748348656,224,0 +170748348704,225,0 +170748348752,225,0 +170748348800,227,0 +170748348848,228,0 +170748348898,228,0 +170748348946,228,0 +170748348995,228,0 +170748349045,229,0 +170748349094,228,0 +170748349144,218,0 +170748349192,216,0 +170748349241,217,0 +170748349289,218,0 +170748349337,219,0 +170748349385,220,0 +170748349433,222,0 +170748349483,220,0 +170748349532,221,0 +170748349582,223,0 +170748349630,225,0 +170748349679,225,0 +170748349729,227,0 +170748349777,227,0 +170748349826,230,0 +170748349876,229,0 +170748349925,232,0 +170748349973,227,0 +170748350021,229,0 +170748350069,218,0 +170748350119,217,0 +170748350167,219,0 +170748350216,220,0 +170748350264,222,0 +170748350312,221,0 +170748350360,223,0 +170748350408,223,0 +170748350456,225,0 +170748350504,225,0 +170748350554,226,0 +170748350603,230,0 +170748350652,229,0 +170748350702,230,0 +170748350751,230,0 +170748350801,229,0 +170748350849,230,0 +170748350897,231,0 +170748350947,229,0 +170748350996,217,0 +170748351044,216,0 +170748351094,217,0 +170748351142,218,0 +170748351190,219,0 +170748351239,219,0 +170748351289,220,0 +170748351338,221,0 +170748351386,223,0 +170748351436,223,0 +170748351485,225,0 +170748351535,226,0 +170748351584,226,0 +170748351632,226,0 +170748351680,228,0 +170748351728,228,0 +170748351776,228,0 +170748351824,230,0 +170748351872,229,0 +170748351920,227,0 +170748351970,216,0 +170748352017,217,0 +170748352065,217,0 +170748352113,216,0 +170748352161,217,0 +170748352209,218,0 +170748352258,220,0 +170748352306,224,0 +170748352354,223,0 +170748352402,225,0 +170748352450,225,0 +170748352498,224,0 +170748352545,226,0 +170748352593,228,0 +170748352641,230,0 +170748352689,230,0 +170748352737,229,0 +170748352785,227,0 +170748352833,228,0 +170748352883,217,0 +170748352932,216,0 +170748352982,217,0 +170748353030,216,0 +170748353078,217,0 +170748353127,219,0 +170748353177,220,0 +170748353226,221,0 +170748353276,221,0 +170748353324,222,0 +170748353373,223,0 +170748353423,225,0 +170748353472,226,0 +170748353520,227,0 +170748353568,227,0 +170748353616,226,0 +170748353664,231,0 +170748353714,230,0 +170748353763,228,0 +170748353813,218,0 +170748353862,215,0 +170748353912,216,0 +170748353961,216,0 +170748354011,216,0 +170748354061,217,0 +170748354108,219,0 +170748354156,220,0 +170748354206,221,0 +170748354254,220,0 +170748354301,223,0 +170748354351,225,0 +170748354401,226,0 +170748354448,226,0 +170748354498,227,0 +170748354548,226,0 +170748354597,228,0 +170748354645,226,0 +170748354693,230,0 +170748354743,218,0 +170748354792,215,0 +170748354840,216,0 +170748354890,216,0 +170748354939,216,0 +170748354989,217,0 +170748355037,218,0 +170748355085,218,0 +170748355134,218,0 +170748355182,220,0 +170748355230,222,0 +170748355278,224,0 +170748355327,225,0 +170748355375,227,0 +170748355425,228,0 +170748355473,228,0 +170748355521,228,0 +170748355570,229,0 +170748355620,228,0 +170748355669,218,0 +170748355719,216,0 +170748355767,216,0 +170748355817,216,0 +170748355866,216,0 +170748355914,217,0 +170748355962,217,0 +170748356010,217,0 +170748356058,218,0 +170748356106,219,0 +170748356154,221,0 +170748356202,223,0 +170748356250,223,0 +170748356299,226,0 +170748356349,225,0 +170748356397,224,0 +170748356445,227,0 +170748356494,228,0 +170748356543,228,0 +170748356591,229,0 +170748356639,216,0 +170748356687,215,0 +170748356735,215,0 +170748356783,216,0 +170748356832,216,0 +170748356880,217,0 +170748356928,216,0 +170748356977,218,0 +170748357025,219,0 +170748357073,220,0 +170748357123,222,0 +170748357171,222,0 +170748357220,224,0 +170748357268,223,0 +170748357316,224,0 +170748357365,225,0 +170748357413,226,0 +170748357463,226,0 +170748357512,228,0 +170748357560,217,0 +170748357608,216,0 +170748357656,215,0 +170748357705,217,0 +170748357755,218,0 +170748357804,219,0 +170748357854,220,0 +170748357903,223,0 +170748357953,222,0 +170748358001,225,0 +170748358050,228,0 +170748358100,229,0 +170748358149,229,0 +170748358199,230,0 +170748358247,230,0 +170748358296,218,0 +170748358346,227,0 +170748358394,227,0 +170748358442,228,0 +170748358491,217,0 +170748358539,215,0 +170748358587,217,0 +170748358637,218,0 +170748358686,220,0 +170748358734,218,0 +170748358784,222,0 +170748358833,223,0 +170748358883,222,0 +170748358931,223,0 +170748358979,225,0 +170748359027,226,0 +170748359075,227,0 +170748359122,229,0 +170748359170,228,0 +170748359220,232,0 +170748359268,228,0 +170748359318,226,0 +170748359367,228,0 +170748359417,218,0 +170748359465,217,0 +170748359515,218,0 +170748359564,219,0 +170748359614,220,0 +170748359663,220,0 +170748359713,222,0 +170748359762,222,0 +170748359810,226,0 +170748359860,225,0 +170748359909,226,0 +170748359957,226,0 +170748360005,226,0 diff --git a/laser_value/0209-23.csv b/laser_value/0209-23.csv new file mode 100644 index 0000000..694e41e --- /dev/null +++ b/laser_value/0209-23.csv @@ -0,0 +1,7411 @@ +timestamp,laser_value,event +170748360054,229,0 +170748360102,230,0 +170748360151,230,0 +170748360199,229,0 +170748360247,229,0 +170748360295,228,0 +170748360343,218,0 +170748360391,216,0 +170748360439,217,0 +170748360489,218,0 +170748360538,219,0 +170748360588,219,0 +170748360636,221,0 +170748360683,222,0 +170748360731,222,0 +170748360781,223,0 +170748360829,227,0 +170748360878,226,0 +170748360926,229,0 +170748360974,227,0 +170748361024,227,0 +170748361072,228,0 +170748361119,232,0 +170748361169,227,0 +170748361217,227,0 +170748361265,226,0 +170748361315,217,0 +170748361362,217,0 +170748361412,218,0 +170748361461,220,0 +170748361511,223,0 +170748361561,225,0 +170748361610,224,0 +170748361658,225,0 +170748361706,226,0 +170748361755,226,0 +170748361805,228,0 +170748361855,227,0 +170748361904,228,0 +170748361954,228,0 +170748362003,228,0 +170748362053,228,0 +170748362101,228,0 +170748362150,228,0 +170748362200,226,0 +170748362249,216,0 +170748362299,217,0 +170748362348,219,0 +170748362396,220,0 +170748362444,222,0 +170748362492,222,0 +170748362542,224,0 +170748362590,224,0 +170748362637,225,0 +170748362687,226,0 +170748362737,227,0 +170748362786,228,0 +170748362836,228,0 +170748362885,228,0 +170748362935,229,0 +170748362983,229,0 +170748363031,228,0 +170748363078,229,0 +170748363126,227,0 +170748363176,218,0 +170748363224,217,0 +170748363272,219,0 +170748363319,220,0 +170748363367,221,0 +170748363417,222,0 +170748363465,224,0 +170748363513,224,0 +170748363562,225,0 +170748363611,227,0 +170748363659,227,0 +170748363707,227,0 +170748363757,228,0 +170748363806,229,0 +170748363854,229,0 +170748363902,228,0 +170748363952,230,0 +170748364001,230,0 +170748364049,228,0 +170748364099,217,0 +170748364148,216,0 +170748364198,217,0 +170748364246,217,0 +170748364294,219,0 +170748364343,220,0 +170748364391,221,0 +170748364439,221,0 +170748364487,223,0 +170748364536,224,0 +170748364584,225,0 +170748364632,227,0 +170748364680,228,0 +170748364730,229,0 +170748364777,228,0 +170748364825,228,0 +170748364873,230,0 +170748364923,229,0 +170748364970,231,0 +170748365018,217,0 +170748365066,216,0 +170748365114,216,0 +170748365162,217,0 +170748365210,218,0 +170748365258,220,0 +170748365305,220,0 +170748365353,221,0 +170748365401,222,0 +170748365449,222,0 +170748365497,223,0 +170748365545,225,0 +170748365593,225,0 +170748365641,227,0 +170748365690,227,0 +170748365738,229,0 +170748365786,227,0 +170748365834,228,0 +170748365882,227,0 +170748365930,227,0 +170748365979,216,0 +170748366027,216,0 +170748366076,216,0 +170748366126,217,0 +170748366174,218,0 +170748366222,219,0 +170748366270,220,0 +170748366319,221,0 +170748366369,221,0 +170748366417,223,0 +170748366466,225,0 +170748366514,225,0 +170748366562,227,0 +170748366610,227,0 +170748366658,225,0 +170748366706,228,0 +170748366754,228,0 +170748366802,226,0 +170748366850,228,0 +170748366898,218,0 +170748366947,215,0 +170748366995,216,0 +170748367043,216,0 +170748367091,217,0 +170748367139,217,0 +170748367188,217,0 +170748367236,219,0 +170748367286,220,0 +170748367335,221,0 +170748367383,222,0 +170748367431,224,0 +170748367481,226,0 +170748367529,230,0 +170748367577,229,0 +170748367625,228,0 +170748367673,231,0 +170748367722,231,0 +170748367770,229,0 +170748367818,224,0 +170748367867,215,0 +170748367917,215,0 +170748367965,215,0 +170748368013,216,0 +170748368061,216,0 +170748368110,217,0 +170748368158,217,0 +170748368206,217,0 +170748368254,218,0 +170748368302,220,0 +170748368350,218,0 +170748368398,219,0 +170748368446,220,0 +170748368494,222,0 +170748368542,223,0 +170748368590,225,0 +170748368637,227,0 +170748368687,227,0 +170748368735,228,0 +170748368783,216,0 +170748368832,215,0 +170748368880,216,0 +170748368928,216,0 +170748368978,216,0 +170748369026,216,0 +170748369074,217,0 +170748369121,218,0 +170748369169,219,0 +170748369219,220,0 +170748369267,224,0 +170748369315,224,0 +170748369364,224,0 +170748369412,226,0 +170748369460,226,0 +170748369508,228,0 +170748369557,227,0 +170748369605,227,0 +170748369653,227,0 +170748369703,218,0 +170748369751,216,0 +170748369799,216,0 +170748369847,216,0 +170748369896,216,0 +170748369944,218,0 +170748369992,217,0 +170748370040,218,0 +170748370088,219,0 +170748370136,219,0 +170748370184,221,0 +170748370233,222,0 +170748370283,222,0 +170748370331,225,0 +170748370380,226,0 +170748370428,224,0 +170748370477,226,0 +170748370525,225,0 +170748370575,227,0 +170748370623,227,0 +170748370671,216,0 +170748370719,216,0 +170748370768,216,0 +170748370816,216,0 +170748370866,217,0 +170748370915,218,0 +170748370963,219,0 +170748371013,222,0 +170748371062,220,0 +170748371110,221,0 +170748371158,222,0 +170748371207,223,0 +170748371255,227,0 +170748371303,226,0 +170748371353,227,0 +170748371403,227,0 +170748371452,226,0 +170748371500,227,0 +170748371548,228,0 +170748371596,217,0 +170748371644,216,0 +170748371692,216,0 +170748371741,218,0 +170748371789,218,0 +170748371839,219,0 +170748371888,220,0 +170748371936,221,0 +170748371984,222,0 +170748372034,223,0 +170748372083,224,0 +170748372131,227,0 +170748372179,226,0 +170748372227,228,0 +170748372275,230,0 +170748372323,231,0 +170748372371,230,0 +170748372419,229,0 +170748372467,227,0 +170748372515,218,0 +170748372563,216,0 +170748372612,216,0 +170748372662,217,0 +170748372711,218,0 +170748372759,216,0 +170748372809,219,0 +170748372859,219,0 +170748372907,221,0 +170748372955,232,0 +170748373003,224,0 +170748373050,225,0 +170748373098,229,0 +170748373146,229,0 +170748373196,228,0 +170748373244,230,0 +170748373293,228,0 +170748373343,228,0 +170748373391,229,0 +170748373439,219,0 +170748373487,216,0 +170748373536,216,0 +170748373584,217,0 +170748373632,219,0 +170748373682,218,0 +170748373730,219,0 +170748373777,220,0 +170748373827,220,0 +170748373875,221,0 +170748373923,222,0 +170748373971,224,0 +170748374019,225,0 +170748374067,227,0 +170748374115,227,0 +170748374164,228,0 +170748374214,229,0 +170748374263,229,0 +170748374311,228,0 +170748374361,227,0 +170748374409,217,0 +170748374457,215,0 +170748374505,217,0 +170748374553,218,0 +170748374600,219,0 +170748374648,221,0 +170748374696,220,0 +170748374744,220,0 +170748374794,223,0 +170748374842,225,0 +170748374891,225,0 +170748374939,227,0 +170748374989,229,0 +170748375037,227,0 +170748375086,227,0 +170748375134,226,0 +170748375182,232,0 +170748375232,228,0 +170748375280,226,0 +170748375329,218,0 +170748375377,216,0 +170748375427,216,0 +170748375475,217,0 +170748375523,219,0 +170748375570,219,0 +170748375620,220,0 +170748375668,222,0 +170748375716,222,0 +170748375764,224,0 +170748375812,224,0 +170748375860,225,0 +170748375909,229,0 +170748375959,228,0 +170748376007,229,0 +170748376056,229,0 +170748376104,229,0 +170748376152,229,0 +170748376200,230,0 +170748376248,227,0 +170748376297,216,0 +170748376347,216,0 +170748376395,217,0 +170748376445,217,0 +170748376494,218,0 +170748376543,219,0 +170748376593,215,0 +170748376641,218,0 +170748376689,221,0 +170748376737,225,0 +170748376785,225,0 +170748376833,224,0 +170748376881,226,0 +170748376929,229,0 +170748376978,231,0 +170748377026,230,0 +170748377076,230,0 +170748377124,229,0 +170748377173,228,0 +170748377221,216,0 +170748377269,216,0 +170748377319,216,0 +170748377367,217,0 +170748377415,217,0 +170748377463,218,0 +170748377512,219,0 +170748377560,219,0 +170748377608,222,0 +170748377657,222,0 +170748377707,223,0 +170748377756,224,0 +170748377804,225,0 +170748377852,226,0 +170748377900,228,0 +170748377948,227,0 +170748377996,226,0 +170748378043,225,0 +170748378091,228,0 +170748378139,218,0 +170748378187,216,0 +170748378236,216,0 +170748378284,218,0 +170748378332,218,0 +170748378380,220,0 +170748378428,220,0 +170748378476,221,0 +170748378524,226,0 +170748378573,223,0 +170748378622,223,0 +170748378670,225,0 +170748378718,227,0 +170748378766,226,0 +170748378814,228,0 +170748378862,228,0 +170748378910,228,0 +170748378958,228,0 +170748379005,227,0 +170748379053,227,0 +170748379103,216,0 +170748379152,216,0 +170748379202,218,0 +170748379250,217,0 +170748379299,218,0 +170748379347,216,0 +170748379395,220,0 +170748379443,222,0 +170748379492,223,0 +170748379540,224,0 +170748379590,225,0 +170748379639,225,0 +170748379689,226,0 +170748379738,226,0 +170748379788,229,0 +170748379838,229,0 +170748379886,228,0 +170748379935,229,0 +170748379983,228,0 +170748380031,217,0 +170748380081,216,0 +170748380128,216,0 +170748380176,217,0 +170748380226,216,0 +170748380274,217,0 +170748380323,220,0 +170748380371,219,0 +170748380419,218,0 +170748380467,220,0 +170748380515,223,0 +170748380563,222,0 +170748380611,225,0 +170748380658,224,0 +170748380708,225,0 +170748380756,226,0 +170748380804,227,0 +170748380853,229,0 +170748380901,228,0 +170748380949,218,0 +170748380997,216,0 +170748381045,216,0 +170748381092,217,0 +170748381140,217,0 +170748381188,217,0 +170748381238,218,0 +170748381286,218,0 +170748381333,220,0 +170748381381,221,0 +170748381429,223,0 +170748381477,225,0 +170748381525,226,0 +170748381573,228,0 +170748381621,227,0 +170748381671,228,0 +170748381720,228,0 +170748381768,229,0 +170748381816,229,0 +170748381864,227,0 +170748381912,217,0 +170748381962,216,0 +170748382009,217,0 +170748382057,217,0 +170748382105,217,0 +170748382153,218,0 +170748382201,219,0 +170748382249,221,0 +170748382299,221,0 +170748382347,222,0 +170748382395,223,0 +170748382443,223,0 +170748382490,224,0 +170748382538,227,0 +170748382588,226,0 +170748382638,226,0 +170748382686,227,0 +170748382733,226,0 +170748382781,228,0 +170748382831,218,0 +170748382880,216,0 +170748382928,216,0 +170748382976,217,0 +170748383024,219,0 +170748383074,219,0 +170748383123,220,0 +170748383171,223,0 +170748383219,223,0 +170748383269,224,0 +170748383317,226,0 +170748383366,226,0 +170748383416,226,0 +170748383464,227,0 +170748383513,226,0 +170748383563,229,0 +170748383611,228,0 +170748383659,228,0 +170748383707,228,0 +170748383755,225,0 +170748383803,217,0 +170748383851,218,0 +170748383899,220,0 +170748383947,221,0 +170748383995,222,0 +170748384042,222,0 +170748384090,224,0 +170748384140,224,0 +170748384188,225,0 +170748384237,227,0 +170748384285,227,0 +170748384335,226,0 +170748384384,228,0 +170748384434,228,0 +170748384482,228,0 +170748384531,230,0 +170748384581,229,0 +170748384629,228,0 +170748384677,228,0 +170748384725,218,0 +170748384774,217,0 +170748384824,219,0 +170748384872,221,0 +170748384920,222,0 +170748384969,223,0 +170748385019,224,0 +170748385068,226,0 +170748385116,226,0 +170748385164,226,0 +170748385212,227,0 +170748385262,228,0 +170748385311,229,0 +170748385361,227,0 +170748385408,228,0 +170748385456,228,0 +170748385506,229,0 +170748385555,228,0 +170748385605,227,0 +170748385653,217,0 +170748385701,216,0 +170748385749,218,0 +170748385798,219,0 +170748385848,220,0 +170748385897,221,0 +170748385945,223,0 +170748385993,224,0 +170748386043,227,0 +170748386092,229,0 +170748386140,227,0 +170748386188,229,0 +170748386237,230,0 +170748386287,228,0 +170748386335,230,0 +170748386382,231,0 +170748386430,230,0 +170748386478,230,0 +170748386526,228,0 +170748386574,224,0 +170748386622,216,0 +170748386670,216,0 +170748386719,217,0 +170748386769,218,0 +170748386817,220,0 +170748386865,221,0 +170748386913,223,0 +170748386962,222,0 +170748387012,224,0 +170748387061,226,0 +170748387109,224,0 +170748387157,225,0 +170748387205,230,0 +170748387255,228,0 +170748387303,230,0 +170748387351,230,0 +170748387399,227,0 +170748387447,226,0 +170748387495,228,0 +170748387543,218,0 +170748387590,216,0 +170748387640,216,0 +170748387689,217,0 +170748387737,219,0 +170748387785,220,0 +170748387835,220,0 +170748387884,222,0 +170748387934,223,0 +170748387982,225,0 +170748388030,222,0 +170748388080,228,0 +170748388129,228,0 +170748388179,228,0 +170748388227,227,0 +170748388275,230,0 +170748388324,230,0 +170748388372,230,0 +170748388422,229,0 +170748388471,227,0 +170748388521,216,0 +170748388568,216,0 +170748388616,216,0 +170748388666,218,0 +170748388714,219,0 +170748388763,221,0 +170748388811,220,0 +170748388859,221,0 +170748388907,223,0 +170748388957,223,0 +170748389006,224,0 +170748389056,227,0 +170748389104,226,0 +170748389152,227,0 +170748389200,227,0 +170748389249,228,0 +170748389299,229,0 +170748389348,228,0 +170748389396,228,0 +170748389444,217,0 +170748389494,216,0 +170748389543,217,0 +170748389593,218,0 +170748389641,220,0 +170748389689,220,0 +170748389738,221,0 +170748389786,222,0 +170748389834,221,0 +170748389882,223,0 +170748389930,226,0 +170748389978,225,0 +170748390026,225,0 +170748390074,226,0 +170748390121,228,0 +170748390171,228,0 +170748390221,230,0 +170748390270,227,0 +170748390318,228,0 +170748390366,221,0 +170748390414,216,0 +170748390462,216,0 +170748390511,217,0 +170748390559,218,0 +170748390609,220,0 +170748390658,221,0 +170748390706,221,0 +170748390754,220,0 +170748390802,223,0 +170748390850,224,0 +170748390898,225,0 +170748390946,225,0 +170748390996,226,0 +170748391045,229,0 +170748391093,229,0 +170748391141,227,0 +170748391190,229,0 +170748391238,228,0 +170748391288,228,0 +170748391338,217,0 +170748391387,215,0 +170748391435,216,0 +170748391483,216,0 +170748391531,216,0 +170748391579,216,0 +170748391628,216,0 +170748391678,218,0 +170748391726,218,0 +170748391775,219,0 +170748391825,220,0 +170748391874,223,0 +170748391922,223,0 +170748391970,223,0 +170748392020,225,0 +170748392069,225,0 +170748392119,225,0 +170748392168,225,0 +170748392218,228,0 +170748392266,217,0 +170748392315,214,0 +170748392365,214,0 +170748392414,215,0 +170748392462,214,0 +170748392510,214,0 +170748392560,215,0 +170748392609,214,0 +170748392659,215,0 +170748392707,216,0 +170748392755,217,0 +170748392804,217,0 +170748392854,220,0 +170748392904,221,0 +170748392953,223,0 +170748393003,223,0 +170748393051,223,0 +170748393100,223,0 +170748393148,227,0 +170748393198,226,0 +170748393246,216,0 +170748393294,216,0 +170748393341,217,0 +170748393391,217,0 +170748393439,217,0 +170748393488,219,0 +170748393536,221,0 +170748393584,222,0 +170748393632,222,0 +170748393680,222,0 +170748393729,225,0 +170748393777,224,0 +170748393825,227,0 +170748393873,227,0 +170748393921,226,0 +170748393969,228,0 +170748394018,227,0 +170748394068,230,0 +170748394116,229,0 +170748394163,218,0 +170748394211,216,0 +170748394259,216,0 +170748394307,217,0 +170748394355,218,0 +170748394403,217,0 +170748394453,218,0 +170748394502,221,0 +170748394550,221,0 +170748394600,223,0 +170748394648,224,0 +170748394697,225,0 +170748394745,226,0 +170748394793,225,0 +170748394841,226,0 +170748394889,227,0 +170748394937,227,0 +170748394985,228,0 +170748395034,229,0 +170748395082,227,0 +170748395132,217,0 +170748395180,216,0 +170748395228,216,0 +170748395277,216,0 +170748395327,217,0 +170748395376,217,0 +170748395424,219,0 +170748395474,220,0 +170748395522,222,0 +170748395571,221,0 +170748395619,223,0 +170748395667,225,0 +170748395717,227,0 +170748395765,227,0 +170748395812,221,0 +170748395862,226,0 +170748395910,228,0 +170748395959,228,0 +170748396007,228,0 +170748396055,218,0 +170748396103,215,0 +170748396151,216,0 +170748396199,216,0 +170748396247,218,0 +170748396296,220,0 +170748396344,217,0 +170748396393,222,0 +170748396443,223,0 +170748396491,223,0 +170748396539,226,0 +170748396588,226,0 +170748396636,227,0 +170748396684,231,0 +170748396733,227,0 +170748396783,227,0 +170748396830,229,0 +170748396878,229,0 +170748396928,229,0 +170748396976,229,0 +170748397023,217,0 +170748397071,216,0 +170748397119,217,0 +170748397167,217,0 +170748397215,217,0 +170748397263,218,0 +170748397312,220,0 +170748397360,221,0 +170748397410,228,0 +170748397458,226,0 +170748397506,224,0 +170748397556,225,0 +170748397605,227,0 +170748397653,226,0 +170748397703,227,0 +170748397751,229,0 +170748397798,228,0 +170748397848,227,0 +170748397896,229,0 +170748397945,218,0 +170748397993,216,0 +170748398041,216,0 +170748398089,217,0 +170748398139,217,0 +170748398188,218,0 +170748398238,219,0 +170748398286,221,0 +170748398334,222,0 +170748398382,222,0 +170748398430,224,0 +170748398478,224,0 +170748398527,224,0 +170748398577,225,0 +170748398626,226,0 +170748398676,228,0 +170748398724,228,0 +170748398772,228,0 +170748398820,227,0 +170748398869,226,0 +170748398917,216,0 +170748398965,215,0 +170748399013,216,0 +170748399061,216,0 +170748399111,216,0 +170748399160,217,0 +170748399208,217,0 +170748399258,218,0 +170748399306,217,0 +170748399355,218,0 +170748399403,219,0 +170748399453,221,0 +170748399501,222,0 +170748399549,225,0 +170748399597,226,0 +170748399645,226,0 +170748399694,225,0 +170748399743,225,0 +170748399793,234,0 +170748399841,219,0 +170748399889,216,0 +170748399938,216,0 +170748399988,216,0 +170748400037,215,0 +170748400085,217,0 +170748400133,217,0 +170748400181,222,0 +170748400231,220,0 +170748400279,222,0 +170748400328,223,0 +170748400376,224,0 +170748400424,226,0 +170748400472,227,0 +170748400522,227,0 +170748400570,227,0 +170748400619,228,0 +170748400669,229,0 +170748400718,229,0 +170748400768,227,0 +170748400816,217,0 +170748400866,217,0 +170748400914,216,0 +170748400962,218,0 +170748401009,219,0 +170748401059,220,0 +170748401107,220,0 +170748401156,222,0 +170748401204,224,0 +170748401252,223,0 +170748401300,224,0 +170748401350,224,0 +170748401399,225,0 +170748401449,227,0 +170748401498,226,0 +170748401546,227,0 +170748401595,230,0 +170748401643,232,0 +170748401691,229,0 +170748401741,218,0 +170748401789,216,0 +170748401837,217,0 +170748401886,218,0 +170748401934,220,0 +170748401982,220,0 +170748402031,222,0 +170748402079,222,0 +170748402127,222,0 +170748402177,225,0 +170748402226,224,0 +170748402274,226,0 +170748402322,230,0 +170748402370,227,0 +170748402419,229,0 +170748402467,228,0 +170748402517,225,0 +170748402564,230,0 +170748402612,228,0 +170748402660,227,0 +170748402710,216,0 +170748402759,218,0 +170748402809,218,0 +170748402857,219,0 +170748402905,220,0 +170748402954,221,0 +170748403002,222,0 +170748403050,225,0 +170748403100,225,0 +170748403150,225,0 +170748403197,224,0 +170748403245,226,0 +170748403293,227,0 +170748403341,230,0 +170748403389,229,0 +170748403437,228,0 +170748403485,229,0 +170748403535,230,0 +170748403583,229,0 +170748403632,219,0 +170748403680,217,0 +170748403728,219,0 +170748403776,220,0 +170748403824,220,0 +170748403873,221,0 +170748403921,223,0 +170748403969,225,0 +170748404017,224,0 +170748404066,228,0 +170748404114,227,0 +170748404162,228,0 +170748404210,228,0 +170748404258,230,0 +170748404307,228,0 +170748404355,232,0 +170748404405,229,0 +170748404453,230,0 +170748404501,228,0 +170748404550,228,0 +170748404598,217,0 +170748404646,217,0 +170748404694,218,0 +170748404743,219,0 +170748404791,221,0 +170748404839,221,0 +170748404887,224,0 +170748404936,223,0 +170748404986,223,0 +170748405034,224,0 +170748405083,226,0 +170748405133,228,0 +170748405183,228,0 +170748405231,227,0 +170748405278,228,0 +170748405326,228,0 +170748405374,228,0 +170748405422,227,0 +170748405470,229,0 +170748405518,218,0 +170748405568,216,0 +170748405616,217,0 +170748405665,216,0 +170748405713,218,0 +170748405761,218,0 +170748405809,219,0 +170748405857,220,0 +170748405906,222,0 +170748405955,222,0 +170748406005,223,0 +170748406055,224,0 +170748406104,225,0 +170748406152,226,0 +170748406200,226,0 +170748406248,227,0 +170748406296,227,0 +170748406344,228,0 +170748406394,229,0 +170748406442,227,0 +170748406491,216,0 +170748406541,217,0 +170748406590,216,0 +170748406638,219,0 +170748406686,219,0 +170748406734,220,0 +170748406783,221,0 +170748406833,224,0 +170748406883,224,0 +170748406930,225,0 +170748406978,225,0 +170748407026,227,0 +170748407076,228,0 +170748407125,228,0 +170748407173,228,0 +170748407223,229,0 +170748407271,228,0 +170748407319,229,0 +170748407367,228,0 +170748407414,218,0 +170748407462,216,0 +170748407510,217,0 +170748407558,218,0 +170748407606,219,0 +170748407654,221,0 +170748407702,221,0 +170748407750,223,0 +170748407798,225,0 +170748407847,226,0 +170748407897,226,0 +170748407945,227,0 +170748407992,228,0 +170748408040,230,0 +170748408088,229,0 +170748408136,228,0 +170748408184,230,0 +170748408232,229,0 +170748408281,228,0 +170748408329,227,0 +170748408377,217,0 +170748408427,215,0 +170748408474,216,0 +170748408522,216,0 +170748408572,217,0 +170748408622,217,0 +170748408669,219,0 +170748408719,222,0 +170748408768,221,0 +170748408816,223,0 +170748408864,225,0 +170748408914,226,0 +170748408962,227,0 +170748409011,228,0 +170748409059,228,0 +170748409109,225,0 +170748409157,229,0 +170748409206,228,0 +170748409254,227,0 +170748409302,218,0 +170748409352,216,0 +170748409401,216,0 +170748409449,216,0 +170748409497,216,0 +170748409545,216,0 +170748409595,217,0 +170748409644,217,0 +170748409694,218,0 +170748409743,218,0 +170748409793,218,0 +170748409841,220,0 +170748409889,222,0 +170748409937,223,0 +170748409986,226,0 +170748410036,224,0 +170748410085,225,0 +170748410133,226,0 +170748410181,228,0 +170748410231,230,0 +170748410279,217,0 +170748410328,215,0 +170748410376,216,0 +170748410424,216,0 +170748410472,217,0 +170748410520,217,0 +170748410568,218,0 +170748410616,219,0 +170748410666,219,0 +170748410713,221,0 +170748410761,223,0 +170748410811,225,0 +170748410859,225,0 +170748410907,227,0 +170748410955,227,0 +170748411002,229,0 +170748411050,226,0 +170748411098,228,0 +170748411146,228,0 +170748411194,228,0 +170748411242,216,0 +170748411290,216,0 +170748411338,216,0 +170748411386,217,0 +170748411435,217,0 +170748411483,219,0 +170748411531,222,0 +170748411579,222,0 +170748411628,221,0 +170748411676,222,0 +170748411724,224,0 +170748411772,227,0 +170748411822,226,0 +170748411871,228,0 +170748411919,229,0 +170748411969,231,0 +170748412018,228,0 +170748412068,227,0 +170748412117,227,0 +170748412165,217,0 +170748412213,216,0 +170748412263,216,0 +170748412311,216,0 +170748412359,215,0 +170748412407,217,0 +170748412456,218,0 +170748412506,219,0 +170748412554,221,0 +170748412601,222,0 +170748412651,223,0 +170748412699,223,0 +170748412748,224,0 +170748412798,228,0 +170748412848,229,0 +170748412897,229,0 +170748412945,229,0 +170748412994,227,0 +170748413044,229,0 +170748413094,218,0 +170748413143,215,0 +170748413191,215,0 +170748413239,216,0 +170748413287,216,0 +170748413335,216,0 +170748413384,216,0 +170748413432,217,0 +170748413480,217,0 +170748413528,218,0 +170748413577,219,0 +170748413625,220,0 +170748413675,223,0 +170748413723,224,0 +170748413771,224,0 +170748413819,224,0 +170748413867,228,0 +170748413915,230,0 +170748413963,225,0 +170748414011,229,0 +170748414058,218,0 +170748414106,216,0 +170748414155,216,0 +170748414204,217,0 +170748414254,218,0 +170748414302,214,0 +170748414351,218,0 +170748414401,219,0 +170748414448,219,0 +170748414498,220,0 +170748414546,224,0 +170748414594,222,0 +170748414642,224,0 +170748414690,226,0 +170748414739,225,0 +170748414787,225,0 +170748414837,227,0 +170748414886,226,0 +170748414936,228,0 +170748414984,228,0 +170748415033,216,0 +170748415083,216,0 +170748415131,216,0 +170748415179,217,0 +170748415226,217,0 +170748415274,217,0 +170748415322,216,0 +170748415372,218,0 +170748415421,220,0 +170748415469,222,0 +170748415517,223,0 +170748415565,225,0 +170748415613,227,0 +170748415661,226,0 +170748415709,226,0 +170748415759,226,0 +170748415808,227,0 +170748415858,225,0 +170748415906,228,0 +170748415954,218,0 +170748416003,216,0 +170748416053,216,0 +170748416101,216,0 +170748416150,217,0 +170748416200,217,0 +170748416249,217,0 +170748416299,220,0 +170748416347,221,0 +170748416396,221,0 +170748416446,225,0 +170748416494,224,0 +170748416542,225,0 +170748416591,225,0 +170748416639,226,0 +170748416689,227,0 +170748416738,228,0 +170748416788,228,0 +170748416836,228,0 +170748416885,219,0 +170748416935,216,0 +170748416983,216,0 +170748417032,217,0 +170748417082,217,0 +170748417130,217,0 +170748417179,218,0 +170748417227,219,0 +170748417275,222,0 +170748417323,222,0 +170748417371,223,0 +170748417419,224,0 +170748417467,227,0 +170748417517,226,0 +170748417566,228,0 +170748417614,228,0 +170748417664,227,0 +170748417713,229,0 +170748417761,229,0 +170748417809,229,0 +170748417857,218,0 +170748417906,217,0 +170748417954,217,0 +170748418002,219,0 +170748418052,220,0 +170748418102,220,0 +170748418151,221,0 +170748418199,221,0 +170748418249,219,0 +170748418298,224,0 +170748418348,224,0 +170748418397,225,0 +170748418445,226,0 +170748418493,223,0 +170748418543,231,0 +170748418590,231,0 +170748418638,231,0 +170748418686,230,0 +170748418734,229,0 +170748418782,218,0 +170748418830,218,0 +170748418878,219,0 +170748418928,218,0 +170748418976,219,0 +170748419024,219,0 +170748419072,221,0 +170748419119,222,0 +170748419167,222,0 +170748419215,224,0 +170748419263,225,0 +170748419313,226,0 +170748419362,228,0 +170748419410,228,0 +170748419460,227,0 +170748419508,228,0 +170748419556,227,0 +170748419605,227,0 +170748419653,229,0 +170748419701,228,0 +170748419751,217,0 +170748419799,216,0 +170748419847,216,0 +170748419894,217,0 +170748419942,219,0 +170748419990,219,0 +170748420038,220,0 +170748420086,221,0 +170748420134,222,0 +170748420182,226,0 +170748420230,224,0 +170748420278,224,0 +170748420326,226,0 +170748420374,226,0 +170748420422,228,0 +170748420470,229,0 +170748420519,228,0 +170748420569,230,0 +170748420617,229,0 +170748420665,229,0 +170748420713,217,0 +170748420761,215,0 +170748420809,216,0 +170748420858,216,0 +170748420908,217,0 +170748420955,219,0 +170748421003,220,0 +170748421053,220,0 +170748421103,220,0 +170748421152,222,0 +170748421202,223,0 +170748421250,224,0 +170748421299,224,0 +170748421349,226,0 +170748421398,228,0 +170748421448,228,0 +170748421496,228,0 +170748421544,228,0 +170748421593,228,0 +170748421643,218,0 +170748421692,216,0 +170748421742,217,0 +170748421790,218,0 +170748421838,218,0 +170748421886,220,0 +170748421933,221,0 +170748421981,221,0 +170748422029,223,0 +170748422077,224,0 +170748422125,225,0 +170748422175,228,0 +170748422224,227,0 +170748422272,226,0 +170748422322,228,0 +170748422369,227,0 +170748422417,228,0 +170748422465,230,0 +170748422513,229,0 +170748422561,229,0 +170748422609,217,0 +170748422658,214,0 +170748422706,217,0 +170748422754,218,0 +170748422804,220,0 +170748422853,221,0 +170748422903,223,0 +170748422951,225,0 +170748423000,223,0 +170748423048,225,0 +170748423098,226,0 +170748423146,226,0 +170748423194,227,0 +170748423242,230,0 +170748423291,229,0 +170748423339,230,0 +170748423387,229,0 +170748423435,229,0 +170748423485,228,0 +170748423534,218,0 +170748423584,216,0 +170748423632,216,0 +170748423680,216,0 +170748423728,216,0 +170748423776,218,0 +170748423824,218,0 +170748423871,219,0 +170748423921,221,0 +170748423969,223,0 +170748424019,223,0 +170748424068,225,0 +170748424116,225,0 +170748424165,229,0 +170748424213,228,0 +170748424263,227,0 +170748424311,229,0 +170748424361,230,0 +170748424408,229,0 +170748424456,228,0 +170748424504,217,0 +170748424554,216,0 +170748424602,216,0 +170748424650,216,0 +170748424699,217,0 +170748424747,217,0 +170748424795,219,0 +170748424843,220,0 +170748424893,220,0 +170748424941,222,0 +170748424989,224,0 +170748425037,224,0 +170748425085,225,0 +170748425134,227,0 +170748425182,225,0 +170748425230,227,0 +170748425278,230,0 +170748425327,229,0 +170748425377,229,0 +170748425425,218,0 +170748425473,216,0 +170748425520,215,0 +170748425570,216,0 +170748425618,216,0 +170748425666,216,0 +170748425715,217,0 +170748425763,217,0 +170748425813,217,0 +170748425862,218,0 +170748425912,219,0 +170748425959,221,0 +170748426007,224,0 +170748426055,223,0 +170748426103,226,0 +170748426151,225,0 +170748426199,226,0 +170748426247,229,0 +170748426296,229,0 +170748426346,230,0 +170748426396,217,0 +170748426443,216,0 +170748426491,216,0 +170748426541,217,0 +170748426589,217,0 +170748426637,217,0 +170748426685,218,0 +170748426733,218,0 +170748426782,217,0 +170748426830,220,0 +170748426878,221,0 +170748426926,226,0 +170748426975,225,0 +170748427025,225,0 +170748427074,225,0 +170748427122,227,0 +170748427172,226,0 +170748427219,227,0 +170748427269,228,0 +170748427317,220,0 +170748427366,216,0 +170748427416,216,0 +170748427464,216,0 +170748427512,217,0 +170748427560,217,0 +170748427607,217,0 +170748427655,217,0 +170748427703,218,0 +170748427751,219,0 +170748427799,220,0 +170748427849,221,0 +170748427897,223,0 +170748427944,223,0 +170748427992,226,0 +170748428040,227,0 +170748428088,226,0 +170748428137,227,0 +170748428187,228,0 +170748428235,228,0 +170748428283,218,0 +170748428331,216,0 +170748428380,216,0 +170748428430,216,0 +170748428477,216,0 +170748428527,217,0 +170748428575,219,0 +170748428624,221,0 +170748428672,222,0 +170748428722,224,0 +170748428769,224,0 +170748428817,225,0 +170748428865,226,0 +170748428913,227,0 +170748428961,227,0 +170748429009,229,0 +170748429057,230,0 +170748429106,228,0 +170748429154,230,0 +170748429202,227,0 +170748429251,216,0 +170748429299,216,0 +170748429347,217,0 +170748429395,217,0 +170748429443,219,0 +170748429491,220,0 +170748429539,221,0 +170748429587,222,0 +170748429634,223,0 +170748429682,224,0 +170748429730,225,0 +170748429780,227,0 +170748429828,227,0 +170748429876,228,0 +170748429924,231,0 +170748429972,228,0 +170748430019,231,0 +170748430069,230,0 +170748430119,228,0 +170748430168,218,0 +170748430218,216,0 +170748430266,216,0 +170748430313,216,0 +170748430363,217,0 +170748430411,219,0 +170748430460,220,0 +170748430510,222,0 +170748430558,222,0 +170748430607,225,0 +170748430657,227,0 +170748430705,227,0 +170748430754,227,0 +170748430804,227,0 +170748430852,228,0 +170748430901,229,0 +170748430949,228,0 +170748430997,228,0 +170748431045,228,0 +170748431094,228,0 +170748431143,217,0 +170748431191,216,0 +170748431239,217,0 +170748431288,217,0 +170748431338,218,0 +170748431387,219,0 +170748431435,221,0 +170748431485,222,0 +170748431535,222,0 +170748431584,224,0 +170748431632,226,0 +170748431681,224,0 +170748431729,225,0 +170748431779,226,0 +170748431827,225,0 +170748431877,230,0 +170748431924,227,0 +170748431972,227,0 +170748432022,229,0 +170748432071,218,0 +170748432121,216,0 +170748432170,216,0 +170748432220,216,0 +170748432269,220,0 +170748432319,218,0 +170748432368,222,0 +170748432418,219,0 +170748432466,221,0 +170748432514,223,0 +170748432562,225,0 +170748432611,226,0 +170748432661,228,0 +170748432709,228,0 +170748432758,229,0 +170748432806,230,0 +170748432856,230,0 +170748432906,229,0 +170748432954,229,0 +170748433001,218,0 +170748433049,216,0 +170748433097,216,0 +170748433145,216,0 +170748433193,216,0 +170748433243,218,0 +170748433291,219,0 +170748433339,220,0 +170748433387,221,0 +170748433436,224,0 +170748433486,223,0 +170748433534,224,0 +170748433583,225,0 +170748433631,225,0 +170748433681,227,0 +170748433729,228,0 +170748433778,230,0 +170748433828,228,0 +170748433876,227,0 +170748433924,229,0 +170748433972,218,0 +170748434019,216,0 +170748434069,216,0 +170748434117,217,0 +170748434165,218,0 +170748434214,219,0 +170748434262,220,0 +170748434310,222,0 +170748434358,223,0 +170748434408,224,0 +170748434457,223,0 +170748434505,224,0 +170748434555,226,0 +170748434604,231,0 +170748434654,230,0 +170748434702,228,0 +170748434750,230,0 +170748434798,228,0 +170748434846,229,0 +170748434894,227,0 +170748434942,217,0 +170748434989,217,0 +170748435037,216,0 +170748435085,217,0 +170748435133,221,0 +170748435181,220,0 +170748435231,222,0 +170748435279,222,0 +170748435327,225,0 +170748435376,225,0 +170748435424,225,0 +170748435472,228,0 +170748435522,227,0 +170748435570,227,0 +170748435618,228,0 +170748435667,228,0 +170748435717,229,0 +170748435766,231,0 +170748435814,228,0 +170748435862,218,0 +170748435910,215,0 +170748435960,216,0 +170748436009,218,0 +170748436057,219,0 +170748436105,220,0 +170748436153,220,0 +170748436201,221,0 +170748436250,223,0 +170748436298,223,0 +170748436346,225,0 +170748436396,225,0 +170748436444,227,0 +170748436493,229,0 +170748436543,229,0 +170748436592,230,0 +170748436640,229,0 +170748436690,230,0 +170748436739,228,0 +170748436787,230,0 +170748436835,216,0 +170748436883,215,0 +170748436931,216,0 +170748436981,217,0 +170748437030,217,0 +170748437078,218,0 +170748437126,219,0 +170748437174,221,0 +170748437222,222,0 +170748437270,223,0 +170748437319,225,0 +170748437367,222,0 +170748437415,229,0 +170748437463,226,0 +170748437511,225,0 +170748437560,226,0 +170748437610,226,0 +170748437657,225,0 +170748437705,228,0 +170748437753,219,0 +170748437801,216,0 +170748437850,216,0 +170748437898,216,0 +170748437946,218,0 +170748437996,217,0 +170748438044,218,0 +170748438091,219,0 +170748438139,221,0 +170748438187,223,0 +170748438235,224,0 +170748438283,226,0 +170748438332,226,0 +170748438380,230,0 +170748438430,232,0 +170748438478,229,0 +170748438526,229,0 +170748438574,231,0 +170748438621,225,0 +170748438669,228,0 +170748438719,217,0 +170748438768,216,0 +170748438816,216,0 +170748438864,216,0 +170748438912,216,0 +170748438961,216,0 +170748439009,217,0 +170748439059,217,0 +170748439107,218,0 +170748439154,220,0 +170748439202,221,0 +170748439252,223,0 +170748439301,225,0 +170748439349,224,0 +170748439397,225,0 +170748439445,228,0 +170748439493,227,0 +170748439541,227,0 +170748439589,228,0 +170748439637,226,0 +170748439685,215,0 +170748439732,215,0 +170748439780,215,0 +170748439828,215,0 +170748439876,216,0 +170748439924,216,0 +170748439974,217,0 +170748440022,217,0 +170748440069,217,0 +170748440119,217,0 +170748440168,219,0 +170748440218,220,0 +170748440266,222,0 +170748440316,223,0 +170748440363,223,0 +170748440413,227,0 +170748440463,228,0 +170748440512,225,0 +170748440561,230,0 +170748440611,219,0 +170748440661,216,0 +170748440708,216,0 +170748440756,217,0 +170748440804,216,0 +170748440852,217,0 +170748440902,218,0 +170748440951,218,0 +170748440999,218,0 +170748441047,219,0 +170748441095,221,0 +170748441143,223,0 +170748441191,228,0 +170748441241,226,0 +170748441289,226,0 +170748441337,229,0 +170748441384,229,0 +170748441432,228,0 +170748441480,228,0 +170748441528,226,0 +170748441576,217,0 +170748441624,216,0 +170748441672,216,0 +170748441720,216,0 +170748441770,217,0 +170748441819,217,0 +170748441869,217,0 +170748441918,218,0 +170748441966,218,0 +170748442016,221,0 +170748442064,222,0 +170748442112,226,0 +170748442160,227,0 +170748442208,227,0 +170748442257,226,0 +170748442305,230,0 +170748442353,228,0 +170748442401,230,0 +170748442450,228,0 +170748442500,218,0 +170748442548,215,0 +170748442596,216,0 +170748442644,216,0 +170748442692,216,0 +170748442740,216,0 +170748442789,217,0 +170748442839,218,0 +170748442887,217,0 +170748442935,219,0 +170748442984,221,0 +170748443032,222,0 +170748443080,224,0 +170748443130,226,0 +170748443179,227,0 +170748443227,229,0 +170748443277,230,0 +170748443325,228,0 +170748443374,228,0 +170748443424,228,0 +170748443472,216,0 +170748443520,216,0 +170748443568,216,0 +170748443617,217,0 +170748443667,218,0 +170748443715,218,0 +170748443764,219,0 +170748443814,224,0 +170748443863,220,0 +170748443911,222,0 +170748443961,223,0 +170748444010,224,0 +170748444058,226,0 +170748444106,228,0 +170748444155,231,0 +170748444205,231,0 +170748444255,230,0 +170748444302,230,0 +170748444350,230,0 +170748444398,218,0 +170748444448,216,0 +170748444498,216,0 +170748444547,217,0 +170748444597,217,0 +170748444646,218,0 +170748444695,218,0 +170748444745,220,0 +170748444793,221,0 +170748444841,222,0 +170748444889,223,0 +170748444937,224,0 +170748444985,226,0 +170748445034,227,0 +170748445082,228,0 +170748445130,227,0 +170748445180,229,0 +170748445229,231,0 +170748445279,226,0 +170748445327,228,0 +170748445375,216,0 +170748445423,216,0 +170748445472,216,0 +170748445520,217,0 +170748445570,218,0 +170748445618,219,0 +170748445666,219,0 +170748445713,221,0 +170748445761,222,0 +170748445809,222,0 +170748445857,224,0 +170748445905,225,0 +170748445953,226,0 +170748446001,228,0 +170748446051,228,0 +170748446100,231,0 +170748446148,228,0 +170748446197,229,0 +170748446247,229,0 +170748446295,228,0 +170748446345,218,0 +170748446394,216,0 +170748446442,217,0 +170748446492,218,0 +170748446541,218,0 +170748446589,221,0 +170748446637,221,0 +170748446687,221,0 +170748446736,222,0 +170748446784,222,0 +170748446832,224,0 +170748446880,225,0 +170748446930,229,0 +170748446979,230,0 +170748447029,225,0 +170748447078,228,0 +170748447126,232,0 +170748447174,229,0 +170748447224,229,0 +170748447272,229,0 +170748447321,229,0 +170748447369,218,0 +170748447419,216,0 +170748447467,217,0 +170748447514,219,0 +170748447562,219,0 +170748447610,219,0 +170748447658,221,0 +170748447706,221,0 +170748447756,223,0 +170748447804,222,0 +170748447853,226,0 +170748447901,224,0 +170748447949,225,0 +170748447999,227,0 +170748448048,227,0 +170748448096,229,0 +170748448146,228,0 +170748448194,228,0 +170748448242,231,0 +170748448289,228,0 +170748448337,229,0 +170748448385,229,0 +170748448433,217,0 +170748448483,217,0 +170748448532,218,0 +170748448580,218,0 +170748448628,219,0 +170748448676,221,0 +170748448724,221,0 +170748448774,220,0 +170748448822,225,0 +170748448870,226,0 +170748448918,226,0 +170748448966,229,0 +170748449014,229,0 +170748449062,228,0 +170748449109,229,0 +170748449157,230,0 +170748449205,229,0 +170748449253,230,0 +170748449303,230,0 +170748449351,228,0 +170748449399,216,0 +170748449446,216,0 +170748449494,217,0 +170748449542,218,0 +170748449590,220,0 +170748449638,221,0 +170748449686,224,0 +170748449734,223,0 +170748449782,225,0 +170748449831,226,0 +170748449879,227,0 +170748449927,226,0 +170748449975,227,0 +170748450023,226,0 +170748450071,227,0 +170748450121,228,0 +170748450168,228,0 +170748450216,230,0 +170748450264,228,0 +170748450312,229,0 +170748450362,217,0 +170748450411,216,0 +170748450461,216,0 +170748450511,218,0 +170748450560,220,0 +170748450608,221,0 +170748450656,221,0 +170748450706,223,0 +170748450755,223,0 +170748450803,224,0 +170748450851,225,0 +170748450901,228,0 +170748450949,228,0 +170748450996,230,0 +170748451046,230,0 +170748451094,229,0 +170748451142,229,0 +170748451190,229,0 +170748451239,228,0 +170748451287,228,0 +170748451335,218,0 +170748451385,217,0 +170748451433,218,0 +170748451481,220,0 +170748451529,221,0 +170748451578,222,0 +170748451628,224,0 +170748451676,223,0 +170748451725,224,0 +170748451773,227,0 +170748451821,226,0 +170748451869,226,0 +170748451917,228,0 +170748451967,228,0 +170748452016,228,0 +170748452064,229,0 +170748452114,230,0 +170748452163,229,0 +170748452211,228,0 +170748452259,227,0 +170748452307,218,0 +170748452355,216,0 +170748452403,217,0 +170748452453,218,0 +170748452501,219,0 +170748452549,220,0 +170748452597,222,0 +170748452646,223,0 +170748452696,224,0 +170748452744,224,0 +170748452793,224,0 +170748452843,226,0 +170748452892,247,0 +170748452940,228,0 +170748452989,229,0 +170748453039,228,0 +170748453089,230,0 +170748453137,232,0 +170748453186,227,0 +170748453236,228,0 +170748453284,217,0 +170748453332,216,0 +170748453380,216,0 +170748453427,217,0 +170748453475,218,0 +170748453523,218,0 +170748453571,222,0 +170748453619,220,0 +170748453669,222,0 +170748453717,223,0 +170748453766,225,0 +170748453814,226,0 +170748453862,227,0 +170748453910,228,0 +170748453958,227,0 +170748454008,227,0 +170748454057,227,0 +170748454105,229,0 +170748454153,228,0 +170748454203,228,0 +170748454251,218,0 +170748454299,216,0 +170748454347,216,0 +170748454395,217,0 +170748454443,217,0 +170748454491,218,0 +170748454538,219,0 +170748454586,220,0 +170748454634,222,0 +170748454684,222,0 +170748454733,224,0 +170748454781,226,0 +170748454831,224,0 +170748454879,227,0 +170748454927,226,0 +170748454975,228,0 +170748455024,228,0 +170748455072,230,0 +170748455120,228,0 +170748455168,228,0 +170748455216,218,0 +170748455264,216,0 +170748455312,217,0 +170748455360,217,0 +170748455408,217,0 +170748455458,218,0 +170748455506,221,0 +170748455555,220,0 +170748455603,223,0 +170748455653,225,0 +170748455701,224,0 +170748455749,226,0 +170748455798,230,0 +170748455846,229,0 +170748455894,230,0 +170748455942,230,0 +170748455991,231,0 +170748456039,232,0 +170748456087,229,0 +170748456137,227,0 +170748456186,216,0 +170748456236,216,0 +170748456284,216,0 +170748456332,216,0 +170748456381,217,0 +170748456431,218,0 +170748456479,219,0 +170748456528,219,0 +170748456576,220,0 +170748456626,222,0 +170748456674,223,0 +170748456722,224,0 +170748456770,229,0 +170748456819,230,0 +170748456869,228,0 +170748456918,228,0 +170748456966,226,0 +170748457014,227,0 +170748457062,229,0 +170748457110,218,0 +170748457158,216,0 +170748457208,216,0 +170748457256,216,0 +170748457304,217,0 +170748457352,217,0 +170748457400,217,0 +170748457448,217,0 +170748457497,219,0 +170748457547,221,0 +170748457596,221,0 +170748457646,224,0 +170748457694,225,0 +170748457743,225,0 +170748457793,229,0 +170748457842,226,0 +170748457892,227,0 +170748457940,229,0 +170748457988,226,0 +170748458036,228,0 +170748458084,219,0 +170748458131,215,0 +170748458179,215,0 +170748458227,216,0 +170748458277,216,0 +170748458325,216,0 +170748458374,217,0 +170748458424,218,0 +170748458472,217,0 +170748458521,217,0 +170748458571,218,0 +170748458620,220,0 +170748458668,221,0 +170748458718,222,0 +170748458766,224,0 +170748458815,224,0 +170748458863,225,0 +170748458911,224,0 +170748458959,226,0 +170748459007,228,0 +170748459057,217,0 +170748459105,214,0 +170748459153,215,0 +170748459201,215,0 +170748459249,216,0 +170748459297,216,0 +170748459345,216,0 +170748459394,215,0 +170748459444,217,0 +170748459492,217,0 +170748459540,217,0 +170748459588,218,0 +170748459635,220,0 +170748459685,222,0 +170748459735,223,0 +170748459782,224,0 +170748459830,226,0 +170748459878,226,0 +170748459926,227,0 +170748459974,228,0 +170748460022,217,0 +170748460070,216,0 +170748460118,216,0 +170748460166,216,0 +170748460214,216,0 +170748460262,217,0 +170748460312,217,0 +170748460361,217,0 +170748460409,217,0 +170748460459,218,0 +170748460507,219,0 +170748460555,219,0 +170748460604,221,0 +170748460652,223,0 +170748460701,223,0 +170748460749,226,0 +170748460797,226,0 +170748460847,225,0 +170748460895,227,0 +170748460945,227,0 +170748460994,217,0 +170748461042,216,0 +170748461090,216,0 +170748461139,216,0 +170748461187,217,0 +170748461237,217,0 +170748461285,217,0 +170748461335,218,0 +170748461384,218,0 +170748461434,219,0 +170748461483,221,0 +170748461532,224,0 +170748461582,223,0 +170748461630,224,0 +170748461678,225,0 +170748461726,227,0 +170748461774,226,0 +170748461823,226,0 +170748461871,228,0 +170748461919,229,0 +170748461969,218,0 +170748462018,216,0 +170748462066,217,0 +170748462116,219,0 +170748462164,217,0 +170748462212,218,0 +170748462261,219,0 +170748462311,221,0 +170748462359,223,0 +170748462407,223,0 +170748462455,220,0 +170748462503,222,0 +170748462552,227,0 +170748462602,229,0 +170748462651,227,0 +170748462701,228,0 +170748462749,230,0 +170748462798,228,0 +170748462848,229,0 +170748462896,228,0 +170748462944,217,0 +170748462992,217,0 +170748463040,217,0 +170748463089,220,0 +170748463138,219,0 +170748463186,220,0 +170748463234,222,0 +170748463282,222,0 +170748463330,221,0 +170748463379,224,0 +170748463427,223,0 +170748463475,227,0 +170748463523,226,0 +170748463571,228,0 +170748463619,227,0 +170748463668,228,0 +170748463718,229,0 +170748463766,232,0 +170748463815,229,0 +170748463863,224,0 +170748463911,216,0 +170748463960,218,0 +170748464008,218,0 +170748464056,219,0 +170748464104,221,0 +170748464152,221,0 +170748464202,223,0 +170748464250,222,0 +170748464297,224,0 +170748464345,226,0 +170748464393,227,0 +170748464443,227,0 +170748464493,229,0 +170748464540,230,0 +170748464590,230,0 +170748464639,236,0 +170748464687,231,0 +170748464737,230,0 +170748464786,229,0 +170748464836,222,0 +170748464884,216,0 +170748464933,217,0 +170748464981,218,0 +170748465029,219,0 +170748465077,220,0 +170748465127,221,0 +170748465176,220,0 +170748465224,223,0 +170748465274,228,0 +170748465323,225,0 +170748465371,227,0 +170748465419,229,0 +170748465467,229,0 +170748465515,228,0 +170748465565,229,0 +170748465613,230,0 +170748465662,229,0 +170748465712,230,0 +170748465761,228,0 +170748465809,218,0 +170748465859,215,0 +170748465908,216,0 +170748465958,216,0 +170748466007,214,0 +170748466055,217,0 +170748466103,218,0 +170748466153,219,0 +170748466203,220,0 +170748466250,222,0 +170748466298,223,0 +170748466346,224,0 +170748466394,225,0 +170748466444,228,0 +170748466492,226,0 +170748466540,226,0 +170748466587,228,0 +170748466635,228,0 +170748466683,228,0 +170748466733,228,0 +170748466782,217,0 +170748466830,216,0 +170748466878,216,0 +170748466926,216,0 +170748466974,217,0 +170748467021,217,0 +170748467069,217,0 +170748467117,219,0 +170748467165,219,0 +170748467215,220,0 +170748467264,223,0 +170748467312,225,0 +170748467360,225,0 +170748467408,226,0 +170748467456,228,0 +170748467504,226,0 +170748467552,231,0 +170748467599,228,0 +170748467649,228,0 +170748467697,228,0 +170748467745,218,0 +170748467794,217,0 +170748467842,217,0 +170748467891,217,0 +170748467939,218,0 +170748467987,219,0 +170748468035,219,0 +170748468083,220,0 +170748468131,221,0 +170748468180,225,0 +170748468228,223,0 +170748468276,225,0 +170748468324,228,0 +170748468374,229,0 +170748468423,229,0 +170748468471,229,0 +170748468519,232,0 +170748468567,228,0 +170748468617,229,0 +170748468666,228,0 +170748468714,218,0 +170748468762,216,0 +170748468812,217,0 +170748468861,217,0 +170748468909,217,0 +170748468957,218,0 +170748469005,219,0 +170748469053,220,0 +170748469103,220,0 +170748469150,221,0 +170748469198,223,0 +170748469246,226,0 +170748469296,227,0 +170748469345,228,0 +170748469393,227,0 +170748469443,229,0 +170748469492,229,0 +170748469540,228,0 +170748469588,228,0 +170748469638,231,0 +170748469686,218,0 +170748469735,216,0 +170748469783,218,0 +170748469833,217,0 +170748469881,217,0 +170748469929,218,0 +170748469977,220,0 +170748470026,219,0 +170748470076,219,0 +170748470124,221,0 +170748470172,220,0 +170748470221,222,0 +170748470269,225,0 +170748470319,228,0 +170748470367,226,0 +170748470415,228,0 +170748470463,227,0 +170748470511,229,0 +170748470558,229,0 +170748470606,228,0 +170748470656,216,0 +170748470706,216,0 +170748470753,216,0 +170748470801,217,0 +170748470851,218,0 +170748470899,219,0 +170748470948,221,0 +170748470998,221,0 +170748471047,222,0 +170748471097,222,0 +170748471146,226,0 +170748471196,226,0 +170748471245,227,0 +170748471293,228,0 +170748471341,227,0 +170748471389,224,0 +170748471437,228,0 +170748471487,229,0 +170748471535,229,0 +170748471583,227,0 +170748471630,216,0 +170748471678,216,0 +170748471726,216,0 +170748471776,216,0 +170748471825,216,0 +170748471873,217,0 +170748471921,218,0 +170748471969,219,0 +170748472017,218,0 +170748472065,221,0 +170748472113,223,0 +170748472163,223,0 +170748472212,224,0 +170748472262,226,0 +170748472310,227,0 +170748472358,227,0 +170748472406,228,0 +170748472455,229,0 +170748472505,228,0 +170748472553,225,0 +170748472602,216,0 +170748472652,215,0 +170748472700,216,0 +170748472749,216,0 +170748472799,217,0 +170748472848,218,0 +170748472898,218,0 +170748472947,219,0 +170748472997,220,0 +170748473047,221,0 +170748473096,222,0 +170748473144,224,0 +170748473192,224,0 +170748473240,225,0 +170748473289,227,0 +170748473339,227,0 +170748473389,228,0 +170748473438,228,0 +170748473488,228,0 +170748473537,217,0 +170748473587,217,0 +170748473635,218,0 +170748473684,220,0 +170748473732,222,0 +170748473780,224,0 +170748473830,223,0 +170748473879,224,0 +170748473927,225,0 +170748473976,226,0 +170748474026,227,0 +170748474074,227,0 +170748474122,228,0 +170748474171,227,0 +170748474219,228,0 +170748474269,227,0 +170748474319,227,0 +170748474366,228,0 +170748474414,228,0 +170748474462,227,0 +170748474510,216,0 +170748474558,216,0 +170748474606,216,0 +170748474656,217,0 +170748474704,218,0 +170748474752,219,0 +170748474801,220,0 +170748474849,221,0 +170748474897,223,0 +170748474945,225,0 +170748474993,225,0 +170748475041,226,0 +170748475089,227,0 +170748475137,228,0 +170748475186,229,0 +170748475236,228,0 +170748475284,229,0 +170748475333,229,0 +170748475381,228,0 +170748475429,229,0 +170748475477,218,0 +170748475525,217,0 +170748475573,217,0 +170748475621,217,0 +170748475669,217,0 +170748475717,219,0 +170748475765,221,0 +170748475814,221,0 +170748475862,223,0 +170748475910,224,0 +170748475958,225,0 +170748476006,226,0 +170748476054,228,0 +170748476102,228,0 +170748476149,227,0 +170748476197,227,0 +170748476245,230,0 +170748476293,229,0 +170748476341,228,0 +170748476389,229,0 +170748476438,218,0 +170748476486,216,0 +170748476534,216,0 +170748476582,217,0 +170748476630,217,0 +170748476678,218,0 +170748476725,217,0 +170748476773,219,0 +170748476821,221,0 +170748476869,221,0 +170748476919,224,0 +170748476966,225,0 +170748477014,226,0 +170748477062,229,0 +170748477110,228,0 +170748477158,230,0 +170748477208,228,0 +170748477255,228,0 +170748477303,230,0 +170748477353,227,0 +170748477401,217,0 +170748477449,216,0 +170748477498,216,0 +170748477546,216,0 +170748477594,217,0 +170748477642,217,0 +170748477691,219,0 +170748477739,219,0 +170748477787,220,0 +170748477837,221,0 +170748477885,225,0 +170748477933,225,0 +170748477981,225,0 +170748478030,227,0 +170748478078,227,0 +170748478126,225,0 +170748478174,227,0 +170748478224,227,0 +170748478272,232,0 +170748478320,228,0 +170748478368,217,0 +170748478417,216,0 +170748478467,216,0 +170748478516,217,0 +170748478566,217,0 +170748478615,217,0 +170748478663,218,0 +170748478711,218,0 +170748478761,220,0 +170748478809,222,0 +170748478856,222,0 +170748478904,223,0 +170748478952,228,0 +170748479000,226,0 +170748479048,228,0 +170748479096,230,0 +170748479144,227,0 +170748479192,228,0 +170748479241,227,0 +170748479289,228,0 +170748479339,217,0 +170748479387,216,0 +170748479436,217,0 +170748479484,217,0 +170748479534,218,0 +170748479583,219,0 +170748479633,220,0 +170748479683,223,0 +170748479731,222,0 +170748479780,225,0 +170748479828,227,0 +170748479876,230,0 +170748479925,229,0 +170748479973,229,0 +170748480021,229,0 +170748480071,229,0 +170748480120,232,0 +170748480170,229,0 +170748480218,232,0 +170748480266,223,0 +170748480314,216,0 +170748480362,216,0 +170748480410,216,0 +170748480459,216,0 +170748480509,217,0 +170748480557,218,0 +170748480606,218,0 +170748480654,219,0 +170748480704,221,0 +170748480753,222,0 +170748480801,224,0 +170748480851,226,0 +170748480899,227,0 +170748480948,228,0 +170748480998,230,0 +170748481046,230,0 +170748481094,230,0 +170748481143,228,0 +170748481191,228,0 +170748481241,217,0 +170748481289,215,0 +170748481338,215,0 +170748481388,215,0 +170748481436,215,0 +170748481484,215,0 +170748481533,215,0 +170748481581,216,0 +170748481629,216,0 +170748481677,217,0 +170748481725,217,0 +170748481774,218,0 +170748481824,217,0 +170748481874,217,0 +170748481921,218,0 +170748481971,217,0 +170748482020,220,0 +170748482068,221,0 +170748482116,223,0 +170748482164,223,0 +170748482212,225,0 +170748482260,231,0 +170748482308,227,0 +170748482357,229,0 +170748482405,229,0 +170748482453,227,0 +170748482501,231,0 +170748482549,229,0 +170748482597,229,0 +170748482646,228,0 +170748482694,217,0 +170748482742,216,0 +170748482790,217,0 +170748482838,217,0 +170748482887,217,0 +170748482935,217,0 +170748482985,217,0 +170748483032,218,0 +170748483080,218,0 +170748483128,219,0 +170748483176,221,0 +170748483224,224,0 +170748483274,225,0 +170748483322,228,0 +170748483369,228,0 +170748483417,227,0 +170748483465,226,0 +170748483513,229,0 +170748483563,230,0 +170748483613,229,0 +170748483660,219,0 +170748483710,216,0 +170748483759,216,0 +170748483807,217,0 +170748483855,217,0 +170748483905,217,0 +170748483954,219,0 +170748484004,217,0 +170748484053,219,0 +170748484101,220,0 +170748484149,222,0 +170748484197,223,0 +170748484245,224,0 +170748484293,227,0 +170748484342,228,0 +170748484390,226,0 +170748484440,228,0 +170748484488,230,0 +170748484535,228,0 +170748484585,229,0 +170748484633,218,0 +170748484681,215,0 +170748484729,215,0 +170748484777,215,0 +170748484825,216,0 +170748484874,216,0 +170748484924,216,0 +170748484973,217,0 +170748485021,217,0 +170748485069,217,0 +170748485119,217,0 +170748485168,218,0 +170748485216,219,0 +170748485266,220,0 +170748485313,222,0 +170748485361,224,0 +170748485411,225,0 +170748485460,222,0 +170748485510,227,0 +170748485558,230,0 +170748485608,219,0 +170748485655,216,0 +170748485703,216,0 +170748485751,216,0 +170748485799,217,0 +170748485847,217,0 +170748485897,219,0 +170748485945,219,0 +170748485994,220,0 +170748486044,223,0 +170748486093,223,0 +170748486141,225,0 +170748486191,225,0 +170748486239,227,0 +170748486288,223,0 +170748486336,229,0 +170748486386,227,0 +170748486435,227,0 +170748486483,228,0 +170748486533,230,0 +170748486581,217,0 +170748486630,217,0 +170748486678,217,0 +170748486728,217,0 +170748486776,215,0 +170748486824,219,0 +170748486871,219,0 +170748486919,220,0 +170748486967,221,0 +170748487015,219,0 +170748487063,224,0 +170748487111,224,0 +170748487160,227,0 +170748487208,230,0 +170748487256,233,0 +170748487306,230,0 +170748487353,233,0 +170748487403,229,0 +170748487451,230,0 +170748487499,231,0 +170748487547,217,0 +170748487594,216,0 +170748487642,216,0 +170748487690,217,0 +170748487738,217,0 +170748487786,217,0 +170748487834,217,0 +170748487882,218,0 +170748487930,220,0 +170748487978,221,0 +170748488025,223,0 +170748488075,224,0 +170748488123,227,0 +170748488171,226,0 +170748488219,226,0 +170748488268,228,0 +170748488316,230,0 +170748488364,229,0 +170748488412,228,0 +170748488460,229,0 +170748488509,218,0 +170748488557,216,0 +170748488606,216,0 +170748488654,216,0 +170748488704,216,0 +170748488753,217,0 +170748488801,217,0 +170748488849,218,0 +170748488897,218,0 +170748488946,218,0 +170748488994,220,0 +170748489042,221,0 +170748489090,223,0 +170748489140,224,0 +170748489189,228,0 +170748489237,228,0 +170748489285,228,0 +170748489333,230,0 +170748489382,232,0 +170748489432,229,0 +170748489480,217,0 +170748489528,216,0 +170748489576,216,0 +170748489624,216,0 +170748489673,217,0 +170748489721,217,0 +170748489769,217,0 +170748489819,218,0 +170748489867,218,0 +170748489915,219,0 +170748489962,217,0 +170748490011,218,0 +170748490058,221,0 +170748490108,223,0 +170748490158,224,0 +170748490206,228,0 +170748490253,224,0 +170748490301,226,0 +170748490351,229,0 +170748490400,228,0 +170748490450,217,0 +170748490499,216,0 +170748490549,217,0 +170748490597,216,0 +170748490647,216,0 +170748490695,217,0 +170748490743,219,0 +170748490790,220,0 +170748490838,221,0 +170748490886,223,0 +170748490934,223,0 +170748490984,225,0 +170748491032,228,0 +170748491080,227,0 +170748491128,229,0 +170748491177,229,0 +170748491225,230,0 +170748491273,229,0 +170748491321,228,0 +170748491370,228,0 +170748491418,217,0 +170748491468,216,0 +170748491516,216,0 +170748491564,216,0 +170748491612,217,0 +170748491661,218,0 +170748491709,219,0 +170748491757,219,0 +170748491807,219,0 +170748491855,222,0 +170748491903,223,0 +170748491952,222,0 +170748492000,226,0 +170748492048,226,0 +170748492098,233,0 +170748492147,227,0 +170748492197,227,0 +170748492246,228,0 +170748492296,228,0 +170748492344,228,0 +170748492392,217,0 +170748492439,216,0 +170748492487,216,0 +170748492537,216,0 +170748492586,217,0 +170748492636,216,0 +170748492686,218,0 +170748492735,221,0 +170748492783,220,0 +170748492832,222,0 +170748492880,225,0 +170748492928,225,0 +170748492978,227,0 +170748493026,226,0 +170748493076,226,0 +170748493125,231,0 +170748493173,230,0 +170748493221,229,0 +170748493269,229,0 +170748493317,228,0 +170748493365,217,0 +170748493414,216,0 +170748493462,217,0 +170748493510,216,0 +170748493558,218,0 +170748493606,219,0 +170748493656,219,0 +170748493705,220,0 +170748493755,221,0 +170748493803,222,0 +170748493851,223,0 +170748493899,224,0 +170748493947,227,0 +170748493994,229,0 +170748494044,227,0 +170748494094,227,0 +170748494142,228,0 +170748494190,229,0 +170748494237,228,0 +170748494285,228,0 +170748494334,216,0 +170748494383,216,0 +170748494431,216,0 +170748494479,217,0 +170748494528,215,0 +170748494578,219,0 +170748494626,219,0 +170748494675,221,0 +170748494723,222,0 +170748494773,223,0 +170748494821,224,0 +170748494870,226,0 +170748494918,227,0 +170748494968,228,0 +170748495017,229,0 +170748495065,227,0 +170748495115,227,0 +170748495163,225,0 +170748495212,228,0 +170748495260,226,0 +170748495308,216,0 +170748495358,216,0 +170748495407,219,0 +170748495457,220,0 +170748495506,222,0 +170748495554,223,0 +170748495602,224,0 +170748495650,223,0 +170748495698,226,0 +170748495746,234,0 +170748495794,227,0 +170748495842,228,0 +170748495890,227,0 +170748495938,228,0 +170748495987,230,0 +170748496035,230,0 +170748496083,226,0 +170748496131,230,0 +170748496179,230,0 +170748496227,228,0 +170748496274,218,0 +170748496324,219,0 +170748496372,220,0 +170748496420,221,0 +170748496468,222,0 +170748496515,223,0 +170748496563,223,0 +170748496611,225,0 +170748496659,225,0 +170748496707,226,0 +170748496756,227,0 +170748496804,231,0 +170748496852,231,0 +170748496902,229,0 +170748496950,231,0 +170748496998,230,0 +170748497047,230,0 +170748497097,230,0 +170748497145,228,0 +170748497194,228,0 +170748497242,217,0 +170748497290,216,0 +170748497338,218,0 +170748497386,219,0 +170748497436,221,0 +170748497484,221,0 +170748497533,222,0 +170748497583,223,0 +170748497632,225,0 +170748497680,227,0 +170748497728,226,0 +170748497778,226,0 +170748497826,226,0 +170748497874,228,0 +170748497921,228,0 +170748497971,230,0 +170748498019,230,0 +170748498067,229,0 +170748498116,229,0 +170748498166,224,0 +170748498215,217,0 +170748498263,216,0 +170748498311,217,0 +170748498359,217,0 +170748498407,218,0 +170748498454,218,0 +170748498502,220,0 +170748498550,220,0 +170748498600,222,0 +170748498648,224,0 +170748498696,225,0 +170748498743,226,0 +170748498791,228,0 +170748498839,230,0 +170748498889,228,0 +170748498938,228,0 +170748498988,228,0 +170748499036,228,0 +170748499084,229,0 +170748499132,228,0 +170748499181,216,0 +170748499231,216,0 +170748499280,216,0 +170748499328,217,0 +170748499378,217,0 +170748499426,217,0 +170748499475,219,0 +170748499525,219,0 +170748499573,221,0 +170748499621,221,0 +170748499669,223,0 +170748499717,225,0 +170748499765,223,0 +170748499813,226,0 +170748499861,226,0 +170748499909,227,0 +170748499957,229,0 +170748500005,227,0 +170748500053,229,0 +170748500102,218,0 +170748500152,216,0 +170748500201,216,0 +170748500251,217,0 +170748500300,216,0 +170748500348,217,0 +170748500396,218,0 +170748500444,220,0 +170748500494,219,0 +170748500543,220,0 +170748500593,222,0 +170748500642,224,0 +170748500690,225,0 +170748500738,227,0 +170748500788,226,0 +170748500836,226,0 +170748500884,226,0 +170748500932,227,0 +170748500980,229,0 +170748501028,227,0 +170748501076,218,0 +170748501125,216,0 +170748501173,216,0 +170748501221,216,0 +170748501269,217,0 +170748501317,217,0 +170748501367,218,0 +170748501414,220,0 +170748501462,220,0 +170748501512,221,0 +170748501561,223,0 +170748501611,225,0 +170748501659,226,0 +170748501708,227,0 +170748501756,227,0 +170748501806,230,0 +170748501854,228,0 +170748501902,230,0 +170748501951,229,0 +170748501999,229,0 +170748502047,227,0 +170748502097,216,0 +170748502146,216,0 +170748502196,216,0 +170748502245,216,0 +170748502293,217,0 +170748502343,217,0 +170748502392,217,0 +170748502440,220,0 +170748502490,220,0 +170748502538,222,0 +170748502587,222,0 +170748502635,225,0 +170748502683,227,0 +170748502731,225,0 +170748502779,227,0 +170748502829,228,0 +170748502878,226,0 +170748502928,226,0 +170748502977,228,0 +170748503025,218,0 +170748503075,216,0 +170748503124,216,0 +170748503172,216,0 +170748503222,217,0 +170748503271,217,0 +170748503319,217,0 +170748503367,217,0 +170748503415,218,0 +170748503463,219,0 +170748503511,219,0 +170748503559,221,0 +170748503607,223,0 +170748503657,226,0 +170748503705,227,0 +170748503752,226,0 +170748503800,226,0 +170748503850,228,0 +170748503898,227,0 +170748503946,229,0 +170748503995,218,0 +170748504043,216,0 +170748504092,216,0 +170748504140,216,0 +170748504188,217,0 +170748504236,217,0 +170748504284,220,0 +170748504332,217,0 +170748504380,219,0 +170748504428,220,0 +170748504476,222,0 +170748504523,222,0 +170748504571,225,0 +170748504619,225,0 +170748504667,226,0 +170748504715,226,0 +170748504764,227,0 +170748504812,226,0 +170748504860,228,0 +170748504908,228,0 +170748504956,218,0 +170748505004,217,0 +170748505053,217,0 +170748505103,217,0 +170748505151,217,0 +170748505199,218,0 +170748505247,218,0 +170748505295,218,0 +170748505343,222,0 +170748505391,224,0 +170748505438,223,0 +170748505486,224,0 +170748505534,227,0 +170748505582,225,0 +170748505630,228,0 +170748505680,228,0 +170748505728,228,0 +170748505776,228,0 +170748505825,228,0 +170748505875,232,0 +170748505924,218,0 +170748505974,216,0 +170748506023,217,0 +170748506072,217,0 +170748506122,216,0 +170748506170,218,0 +170748506218,219,0 +170748506267,220,0 +170748506315,220,0 +170748506363,221,0 +170748506413,222,0 +170748506461,224,0 +170748506509,224,0 +170748506557,227,0 +170748506606,226,0 +170748506656,226,0 +170748506704,231,0 +170748506752,229,0 +170748506801,228,0 +170748506849,229,0 +170748506897,217,0 +170748506945,215,0 +170748506993,214,0 +170748507042,217,0 +170748507090,219,0 +170748507138,220,0 +170748507186,220,0 +170748507234,223,0 +170748507283,223,0 +170748507333,224,0 +170748507381,225,0 +170748507429,226,0 +170748507476,228,0 +170748507524,225,0 +170748507574,228,0 +170748507623,229,0 +170748507671,229,0 +170748507719,227,0 +170748507769,229,0 +170748507817,229,0 +170748507866,217,0 +170748507914,216,0 +170748507962,216,0 +170748508012,217,0 +170748508061,218,0 +170748508109,220,0 +170748508159,220,0 +170748508207,222,0 +170748508255,221,0 +170748508303,219,0 +170748508351,224,0 +170748508400,225,0 +170748508450,225,0 +170748508498,223,0 +170748508547,227,0 +170748508597,232,0 +170748508645,228,0 +170748508693,232,0 +170748508741,230,0 +170748508790,229,0 +170748508840,217,0 +170748508888,216,0 +170748508937,216,0 +170748508985,217,0 +170748509033,218,0 +170748509081,219,0 +170748509129,218,0 +170748509179,221,0 +170748509226,222,0 +170748509274,225,0 +170748509324,226,0 +170748509373,227,0 +170748509423,228,0 +170748509473,226,0 +170748509522,228,0 +170748509572,228,0 +170748509621,229,0 +170748509671,225,0 +170748509719,229,0 +170748509768,228,0 +170748509818,217,0 +170748509867,216,0 +170748509917,216,0 +170748509965,216,0 +170748510014,218,0 +170748510064,217,0 +170748510112,219,0 +170748510160,220,0 +170748510209,221,0 +170748510257,222,0 +170748510305,223,0 +170748510353,224,0 +170748510401,219,0 +170748510449,227,0 +170748510497,228,0 +170748510546,227,0 +170748510594,229,0 +170748510642,229,0 +170748510690,229,0 +170748510738,229,0 +170748510786,216,0 +170748510834,216,0 +170748510881,216,0 +170748510929,217,0 +170748510977,217,0 +170748511025,217,0 +170748511073,218,0 +170748511121,219,0 +170748511169,219,0 +170748511219,220,0 +170748511267,224,0 +170748511315,225,0 +170748511364,226,0 +170748511412,228,0 +170748511462,230,0 +170748511510,229,0 +170748511559,228,0 +170748511607,228,0 +170748511655,229,0 +170748511703,229,0 +170748511753,216,0 +170748511801,216,0 +170748511849,216,0 +170748511898,217,0 +170748511948,218,0 +170748511997,218,0 +170748512045,218,0 +170748512095,220,0 +170748512143,220,0 +170748512192,221,0 +170748512242,222,0 +170748512291,223,0 +170748512339,226,0 +170748512389,227,0 +170748512437,226,0 +170748512486,228,0 +170748512536,229,0 +170748512585,228,0 +170748512635,231,0 +170748512683,226,0 +170748512732,216,0 +170748512780,216,0 +170748512828,216,0 +170748512878,217,0 +170748512927,216,0 +170748512975,217,0 +170748513023,217,0 +170748513071,217,0 +170748513119,217,0 +170748513169,219,0 +170748513218,221,0 +170748513266,222,0 +170748513316,223,0 +170748513364,224,0 +170748513413,225,0 +170748513463,226,0 +170748513511,226,0 +170748513560,227,0 +170748513610,228,0 +170748513659,217,0 +170748513709,215,0 +170748513758,215,0 +170748513806,216,0 +170748513854,216,0 +170748513902,216,0 +170748513952,217,0 +170748514001,217,0 +170748514049,217,0 +170748514097,218,0 +170748514145,218,0 +170748514193,219,0 +170748514241,220,0 +170748514291,222,0 +170748514339,223,0 +170748514387,223,0 +170748514435,225,0 +170748514483,225,0 +170748514532,227,0 +170748514580,229,0 +170748514629,218,0 +170748514679,217,0 +170748514728,217,0 +170748514776,218,0 +170748514824,219,0 +170748514872,220,0 +170748514920,218,0 +170748514970,222,0 +170748515018,224,0 +170748515066,222,0 +170748515115,225,0 +170748515163,226,0 +170748515211,226,0 +170748515261,229,0 +170748515310,228,0 +170748515360,229,0 +170748515409,229,0 +170748515459,229,0 +170748515507,228,0 +170748515556,228,0 +170748515604,218,0 +170748515654,216,0 +170748515703,216,0 +170748515751,216,0 +170748515799,215,0 +170748515847,217,0 +170748515895,219,0 +170748515943,219,0 +170748515991,220,0 +170748516039,221,0 +170748516088,221,0 +170748516138,222,0 +170748516187,222,0 +170748516235,224,0 +170748516285,224,0 +170748516334,226,0 +170748516382,226,0 +170748516430,227,0 +170748516480,228,0 +170748516528,227,0 +170748516576,217,0 +170748516624,216,0 +170748516673,216,0 +170748516723,217,0 +170748516771,216,0 +170748516819,217,0 +170748516868,217,0 +170748516916,216,0 +170748516966,218,0 +170748517015,222,0 +170748517063,222,0 +170748517111,223,0 +170748517161,225,0 +170748517208,224,0 +170748517258,226,0 +170748517308,226,0 +170748517356,227,0 +170748517405,228,0 +170748517453,228,0 +170748517501,228,0 +170748517550,216,0 +170748517600,216,0 +170748517648,216,0 +170748517696,217,0 +170748517744,219,0 +170748517793,220,0 +170748517843,221,0 +170748517891,223,0 +170748517939,225,0 +170748517987,224,0 +170748518035,226,0 +170748518083,228,0 +170748518132,228,0 +170748518180,228,0 +170748518230,229,0 +170748518279,229,0 +170748518329,229,0 +170748518378,230,0 +170748518428,228,0 +170748518476,218,0 +170748518524,216,0 +170748518573,216,0 +170748518621,217,0 +170748518669,218,0 +170748518719,220,0 +170748518767,221,0 +170748518816,223,0 +170748518866,223,0 +170748518914,224,0 +170748518962,225,0 +170748519011,225,0 +170748519059,229,0 +170748519109,227,0 +170748519158,228,0 +170748519208,230,0 +170748519257,230,0 +170748519307,229,0 +170748519357,229,0 +170748519405,228,0 +170748519453,219,0 +170748519500,216,0 +170748519550,216,0 +170748519598,216,0 +170748519646,216,0 +170748519694,216,0 +170748519743,217,0 +170748519793,220,0 +170748519842,221,0 +170748519892,221,0 +170748519940,223,0 +170748519989,224,0 +170748520037,225,0 +170748520085,227,0 +170748520133,226,0 +170748520183,227,0 +170748520232,227,0 +170748520280,227,0 +170748520328,228,0 +170748520376,228,0 +170748520424,218,0 +170748520472,216,0 +170748520520,216,0 +170748520568,216,0 +170748520618,217,0 +170748520666,217,0 +170748520714,217,0 +170748520762,217,0 +170748520810,218,0 +170748520859,218,0 +170748520909,218,0 +170748520956,221,0 +170748521004,221,0 +170748521054,222,0 +170748521104,225,0 +170748521153,226,0 +170748521203,228,0 +170748521252,226,0 +170748521302,226,0 +170748521350,228,0 +170748521399,218,0 +170748521449,216,0 +170748521498,216,0 +170748521546,216,0 +170748521594,217,0 +170748521642,218,0 +170748521690,218,0 +170748521740,219,0 +170748521788,220,0 +170748521837,221,0 +170748521885,223,0 +170748521933,223,0 +170748521981,224,0 +170748522029,227,0 +170748522077,225,0 +170748522125,227,0 +170748522174,226,0 +170748522224,227,0 +170748522272,229,0 +170748522320,229,0 +170748522368,218,0 +170748522416,216,0 +170748522465,216,0 +170748522513,217,0 +170748522563,218,0 +170748522611,219,0 +170748522659,220,0 +170748522707,223,0 +170748522756,222,0 +170748522804,224,0 +170748522852,224,0 +170748522900,225,0 +170748522950,227,0 +170748522997,226,0 +170748523045,228,0 +170748523093,227,0 +170748523143,228,0 +170748523191,229,0 +170748523240,230,0 +170748523288,230,0 +170748523336,218,0 +170748523384,215,0 +170748523432,217,0 +170748523480,217,0 +170748523530,218,0 +170748523578,219,0 +170748523626,217,0 +170748523675,223,0 +170748523723,222,0 +170748523771,222,0 +170748523819,224,0 +170748523867,226,0 +170748523916,229,0 +170748523964,229,0 +170748524012,230,0 +170748524060,228,0 +170748524108,229,0 +170748524156,229,0 +170748524204,230,0 +170748524254,230,0 +170748524302,218,0 +170748524349,216,0 +170748524398,216,0 +170748524445,218,0 +170748524493,219,0 +170748524543,221,0 +170748524593,221,0 +170748524642,221,0 +170748524690,224,0 +170748524739,223,0 +170748524789,227,0 +170748524837,229,0 +170748524886,229,0 +170748524934,228,0 +170748524982,230,0 +170748525032,231,0 +170748525080,231,0 +170748525128,231,0 +170748525176,230,0 +170748525225,228,0 +170748525275,218,0 +170748525323,216,0 +170748525371,216,0 +170748525420,217,0 +170748525470,217,0 +170748525518,218,0 +170748525567,219,0 +170748525617,221,0 +170748525666,223,0 +170748525716,222,0 +170748525765,223,0 +170748525815,226,0 +170748525864,227,0 +170748525912,227,0 +170748525960,228,0 +170748526008,227,0 +170748526058,229,0 +170748526107,230,0 +170748526157,230,0 +170748526206,228,0 +170748526256,217,0 +170748526305,217,0 +170748526355,216,0 +170748526403,216,0 +170748526451,217,0 +170748526499,218,0 +170748526547,219,0 +170748526597,220,0 +170748526644,223,0 +170748526692,223,0 +170748526742,224,0 +170748526790,224,0 +170748526839,226,0 +170748526889,226,0 +170748526937,228,0 +170748526985,227,0 +170748527033,228,0 +170748527082,228,0 +170748527132,228,0 +170748527180,228,0 +170748527229,217,0 +170748527279,216,0 +170748527329,217,0 +170748527378,216,0 +170748527428,217,0 +170748527477,216,0 +170748527527,218,0 +170748527575,221,0 +170748527623,221,0 +170748527671,222,0 +170748527719,224,0 +170748527766,225,0 +170748527814,227,0 +170748527864,225,0 +170748527913,230,0 +170748527963,229,0 +170748528011,228,0 +170748528059,227,0 +170748528107,228,0 +170748528156,218,0 +170748528206,216,0 +170748528254,217,0 +170748528302,216,0 +170748528351,217,0 +170748528399,215,0 +170748528449,218,0 +170748528498,220,0 +170748528548,220,0 +170748528596,223,0 +170748528645,224,0 +170748528693,225,0 +170748528743,226,0 +170748528791,225,0 +170748528839,229,0 +170748528887,229,0 +170748528935,228,0 +170748528983,229,0 +170748529032,227,0 +170748529080,225,0 +170748529130,227,0 +170748529179,216,0 +170748529227,216,0 +170748529277,217,0 +170748529325,217,0 +170748529373,218,0 +170748529421,219,0 +170748529470,219,0 +170748529520,219,0 +170748529569,221,0 +170748529617,222,0 +170748529665,224,0 +170748529713,225,0 +170748529761,227,0 +170748529809,229,0 +170748529859,228,0 +170748529908,227,0 +170748529956,230,0 +170748530004,230,0 +170748530054,228,0 +170748530103,219,0 +170748530153,216,0 +170748530202,216,0 +170748530250,216,0 +170748530300,217,0 +170748530348,216,0 +170748530395,218,0 +170748530443,218,0 +170748530491,220,0 +170748530541,223,0 +170748530590,224,0 +170748530640,226,0 +170748530689,228,0 +170748530737,228,0 +170748530787,229,0 +170748530835,228,0 +170748530883,227,0 +170748530932,229,0 +170748530982,227,0 +170748531030,228,0 +170748531078,218,0 +170748531126,216,0 +170748531174,216,0 +170748531223,216,0 +170748531273,217,0 +170748531321,217,0 +170748531369,218,0 +170748531417,219,0 +170748531466,220,0 +170748531516,222,0 +170748531564,225,0 +170748531612,226,0 +170748531661,226,0 +170748531709,229,0 +170748531757,227,0 +170748531805,231,0 +170748531855,225,0 +170748531904,225,0 +170748531954,229,0 +170748532003,225,0 +170748532051,218,0 +170748532099,216,0 +170748532149,216,0 +170748532197,216,0 +170748532246,216,0 +170748532294,217,0 +170748532342,217,0 +170748532390,219,0 +170748532438,220,0 +170748532487,224,0 +170748532537,224,0 +170748532586,228,0 +170748532634,224,0 +170748532684,227,0 +170748532733,226,0 +170748532783,229,0 +170748532831,230,0 +170748532879,229,0 +170748532929,229,0 +170748532978,228,0 +170748533026,218,0 +170748533074,217,0 +170748533124,218,0 +170748533172,218,0 +170748533221,218,0 +170748533271,218,0 +170748533319,218,0 +170748533368,220,0 +170748533418,221,0 +170748533466,223,0 +170748533515,224,0 +170748533565,225,0 +170748533613,228,0 +170748533662,227,0 +170748533712,229,0 +170748533761,228,0 +170748533809,233,0 +170748533857,230,0 +170748533905,229,0 +170748533954,228,0 +170748534002,217,0 +170748534050,215,0 +170748534098,216,0 +170748534146,217,0 +170748534194,217,0 +170748534242,218,0 +170748534290,218,0 +170748534337,218,0 +170748534385,218,0 +170748534433,219,0 +170748534481,220,0 +170748534529,222,0 +170748534578,224,0 +170748534626,225,0 +170748534674,226,0 +170748534722,226,0 +170748534770,227,0 +170748534818,228,0 +170748534868,228,0 +170748534917,228,0 +170748534967,217,0 +170748535015,215,0 +170748535063,215,0 +170748535112,215,0 +170748535162,215,0 +170748535211,216,0 +170748535259,216,0 +170748535307,217,0 +170748535355,216,0 +170748535403,217,0 +170748535450,217,0 +170748535498,218,0 +170748535546,218,0 +170748535594,220,0 +170748535642,222,0 +170748535690,225,0 +170748535738,223,0 +170748535787,223,0 +170748535835,224,0 +170748535883,227,0 +170748535931,218,0 +170748535981,215,0 +170748536029,215,0 +170748536076,216,0 +170748536124,216,0 +170748536172,217,0 +170748536220,216,0 +170748536269,217,0 +170748536317,216,0 +170748536367,219,0 +170748536415,220,0 +170748536463,222,0 +170748536510,222,0 +170748536558,224,0 +170748536606,226,0 +170748536656,227,0 +170748536705,229,0 +170748536753,228,0 +170748536801,228,0 +170748536849,228,0 +170748536897,218,0 +170748536946,216,0 +170748536996,216,0 +170748537046,216,0 +170748537094,216,0 +170748537143,218,0 +170748537191,219,0 +170748537239,219,0 +170748537289,220,0 +170748537337,221,0 +170748537385,224,0 +170748537433,226,0 +170748537482,227,0 +170748537530,229,0 +170748537578,227,0 +170748537626,229,0 +170748537674,228,0 +170748537723,229,0 +170748537773,229,0 +170748537821,228,0 +170748537869,218,0 +170748537918,216,0 +170748537968,217,0 +170748538018,217,0 +170748538065,216,0 +170748538113,217,0 +170748538161,219,0 +170748538209,220,0 +170748538257,223,0 +170748538307,221,0 +170748538356,226,0 +170748538404,225,0 +170748538454,226,0 +170748538502,227,0 +170748538550,228,0 +170748538598,227,0 +170748538647,229,0 +170748538697,229,0 +170748538746,228,0 +170748538794,228,0 +170748538844,217,0 +170748538893,216,0 +170748538941,216,0 +170748538991,216,0 +170748539040,217,0 +170748539088,218,0 +170748539138,219,0 +170748539187,220,0 +170748539237,222,0 +170748539286,224,0 +170748539334,224,0 +170748539382,227,0 +170748539430,229,0 +170748539478,227,0 +170748539526,227,0 +170748539574,227,0 +170748539624,227,0 +170748539673,228,0 +170748539723,228,0 +170748539771,228,0 +170748539819,217,0 +170748539868,216,0 +170748539918,217,0 +170748539966,218,0 +170748540013,220,0 +170748540063,221,0 +170748540111,222,0 +170748540159,223,0 +170748540207,224,0 +170748540255,225,0 +170748540303,226,0 +170748540350,227,0 +170748540398,230,0 +170748540446,228,0 +170748540494,229,0 +170748540544,228,0 +170748540593,230,0 +170748540641,229,0 +170748540689,228,0 +170748540737,222,0 +170748540785,218,0 +170748540832,216,0 +170748540880,217,0 +170748540928,216,0 +170748540976,216,0 +170748541024,218,0 +170748541072,219,0 +170748541120,221,0 +170748541169,221,0 +170748541217,223,0 +170748541265,225,0 +170748541313,226,0 +170748541363,226,0 +170748541411,227,0 +170748541459,228,0 +170748541508,227,0 +170748541556,228,0 +170748541606,229,0 +170748541654,227,0 +170748541703,227,0 +170748541753,217,0 +170748541801,215,0 +170748541848,216,0 +170748541896,216,0 +170748541944,216,0 +170748541992,216,0 +170748542040,217,0 +170748542088,217,0 +170748542138,218,0 +170748542186,219,0 +170748542233,215,0 +170748542283,219,0 +170748542331,221,0 +170748542379,222,0 +170748542428,223,0 +170748542476,224,0 +170748542524,224,0 +170748542572,226,0 +170748542620,226,0 +170748542668,229,0 +170748542716,218,0 +170748542764,216,0 +170748542812,216,0 +170748542860,217,0 +170748542909,217,0 +170748542957,217,0 +170748543007,217,0 +170748543056,220,0 +170748543106,221,0 +170748543154,221,0 +170748543202,223,0 +170748543250,225,0 +170748543299,225,0 +170748543347,226,0 +170748543395,228,0 +170748543443,228,0 +170748543491,227,0 +170748543539,226,0 +170748543588,227,0 +170748543638,227,0 +170748543686,218,0 +170748543735,216,0 +170748543783,216,0 +170748543831,216,0 +170748543879,217,0 +170748543927,217,0 +170748543975,218,0 +170748544025,218,0 +170748544074,219,0 +170748544124,220,0 +170748544173,224,0 +170748544223,223,0 +170748544271,225,0 +170748544319,225,0 +170748544367,227,0 +170748544415,228,0 +170748544463,228,0 +170748544512,227,0 +170748544562,229,0 +170748544611,228,0 +170748544661,218,0 +170748544709,216,0 +170748544758,216,0 +170748544806,216,0 +170748544854,216,0 +170748544904,217,0 +170748544952,217,0 +170748545000,220,0 +170748545048,218,0 +170748545096,219,0 +170748545144,221,0 +170748545191,223,0 +170748545241,225,0 +170748545289,224,0 +170748545337,227,0 +170748545386,228,0 +170748545434,229,0 +170748545484,228,0 +170748545534,229,0 +170748545583,227,0 +170748545631,218,0 +170748545679,217,0 +170748545727,217,0 +170748545775,217,0 +170748545823,217,0 +170748545872,218,0 +170748545920,218,0 +170748545970,219,0 +170748546019,219,0 +170748546067,221,0 +170748546117,221,0 +170748546165,223,0 +170748546214,225,0 +170748546264,225,0 +170748546313,226,0 +170748546361,229,0 +170748546411,228,0 +170748546459,229,0 +170748546506,229,0 +170748546554,228,0 +170748546602,218,0 +170748546650,216,0 +170748546698,216,0 +170748546746,216,0 +170748546796,216,0 +170748546844,216,0 +170748546893,217,0 +170748546941,218,0 +170748546991,216,0 +170748547039,220,0 +170748547087,220,0 +170748547135,223,0 +170748547183,225,0 +170748547231,226,0 +170748547280,225,0 +170748547330,227,0 +170748547378,228,0 +170748547426,228,0 +170748547475,228,0 +170748547523,228,0 +170748547573,217,0 +170748547621,216,0 +170748547669,216,0 +170748547717,216,0 +170748547766,217,0 +170748547816,217,0 +170748547865,218,0 +170748547913,220,0 +170748547963,220,0 +170748548011,223,0 +170748548059,223,0 +170748548106,225,0 +170748548154,225,0 +170748548202,227,0 +170748548250,226,0 +170748548298,227,0 +170748548348,229,0 +170748548397,228,0 +170748548445,229,0 +170748548493,228,0 +170748548543,218,0 +170748548591,217,0 +170748548638,216,0 +170748548686,217,0 +170748548734,217,0 +170748548782,217,0 +170748548832,218,0 +170748548880,215,0 +170748548929,219,0 +170748548979,220,0 +170748549027,222,0 +170748549075,223,0 +170748549124,224,0 +170748549174,225,0 +170748549223,224,0 +170748549271,230,0 +170748549319,226,0 +170748549367,227,0 +170748549417,229,0 +170748549465,228,0 +170748549512,217,0 +170748549560,215,0 +170748549610,216,0 +170748549660,216,0 +170748549707,216,0 +170748549757,217,0 +170748549806,219,0 +170748549856,218,0 +170748549904,219,0 +170748549953,220,0 +170748550003,229,0 +170748550051,223,0 +170748550100,225,0 +170748550148,229,0 +170748550196,228,0 +170748550244,227,0 +170748550292,227,0 +170748550342,231,0 +170748550390,229,0 +170748550438,228,0 +170748550486,218,0 +170748550535,216,0 +170748550585,216,0 +170748550634,217,0 +170748550684,218,0 +170748550732,219,0 +170748550780,220,0 +170748550829,220,0 +170748550877,221,0 +170748550927,222,0 +170748550975,222,0 +170748551023,224,0 +170748551072,223,0 +170748551122,229,0 +170748551171,227,0 +170748551219,227,0 +170748551269,227,0 +170748551317,226,0 +170748551366,228,0 +170748551416,228,0 +170748551465,216,0 +170748551513,216,0 +170748551563,217,0 +170748551612,217,0 +170748551660,217,0 +170748551708,219,0 +170748551756,219,0 +170748551806,220,0 +170748551854,223,0 +170748551902,223,0 +170748551951,223,0 +170748551999,224,0 +170748552047,226,0 +170748552097,226,0 +170748552146,229,0 +170748552196,229,0 +170748552245,230,0 +170748552293,230,0 +170748552343,230,0 +170748552392,221,0 +170748552440,216,0 +170748552490,217,0 +170748552538,217,0 +170748552586,218,0 +170748552633,219,0 +170748552681,219,0 +170748552729,220,0 +170748552777,221,0 +170748552825,223,0 +170748552875,225,0 +170748552923,226,0 +170748552971,225,0 +170748553020,224,0 +170748553070,227,0 +170748553119,227,0 +170748553167,230,0 +170748553217,231,0 +170748553265,231,0 +170748553314,229,0 +170748553364,220,0 +170748553413,216,0 +170748553463,216,0 +170748553511,216,0 +170748553560,217,0 +170748553610,218,0 +170748553660,219,0 +170748553709,221,0 +170748553759,221,0 +170748553808,221,0 +170748553858,223,0 +170748553907,224,0 +170748553957,228,0 +170748554005,228,0 +170748554054,232,0 +170748554102,230,0 +170748554152,230,0 +170748554201,227,0 +170748554249,228,0 +170748554297,229,0 +170748554345,218,0 +170748554395,216,0 +170748554443,217,0 +170748554492,217,0 +170748554540,218,0 +170748554588,219,0 +170748554636,220,0 +170748554684,221,0 +170748554734,220,0 +170748554783,222,0 +170748554831,222,0 +170748554881,224,0 +170748554928,225,0 +170748554978,227,0 +170748555027,229,0 +170748555077,228,0 +170748555125,227,0 +170748555173,229,0 +170748555222,227,0 +170748555270,227,0 +170748555318,218,0 +170748555368,216,0 +170748555417,216,0 +170748555465,216,0 +170748555513,218,0 +170748555563,221,0 +170748555611,220,0 +170748555659,221,0 +170748555707,222,0 +170748555756,222,0 +170748555806,223,0 +170748555855,224,0 +170748555905,225,0 +170748555953,229,0 +170748556001,227,0 +170748556049,228,0 +170748556098,228,0 +170748556146,230,0 +170748556194,227,0 +170748556244,227,0 +170748556293,217,0 +170748556343,216,0 +170748556391,216,0 +170748556439,216,0 +170748556487,216,0 +170748556536,216,0 +170748556586,217,0 +170748556635,219,0 +170748556685,219,0 +170748556734,221,0 +170748556782,223,0 +170748556830,224,0 +170748556880,224,0 +170748556928,226,0 +170748556977,226,0 +170748557027,226,0 +170748557077,228,0 +170748557125,228,0 +170748557173,227,0 +170748557222,227,0 +170748557271,217,0 +170748557319,216,0 +170748557367,216,0 +170748557417,216,0 +170748557465,216,0 +170748557513,217,0 +170748557561,218,0 +170748557609,222,0 +170748557657,220,0 +170748557706,220,0 +170748557754,224,0 +170748557802,225,0 +170748557852,224,0 +170748557900,226,0 +170748557949,226,0 +170748557997,227,0 +170748558047,227,0 +170748558096,227,0 +170748558146,228,0 +170748558195,227,0 +170748558245,217,0 +170748558294,216,0 +170748558344,216,0 +170748558394,217,0 +170748558441,217,0 +170748558489,218,0 +170748558537,219,0 +170748558585,220,0 +170748558635,220,0 +170748558685,222,0 +170748558734,227,0 +170748558784,230,0 +170748558833,224,0 +170748558883,225,0 +170748558931,226,0 +170748558980,226,0 +170748559030,226,0 +170748559078,227,0 +170748559126,228,0 +170748559175,223,0 +170748559223,216,0 +170748559271,216,0 +170748559320,216,0 +170748559370,217,0 +170748559419,215,0 +170748559469,217,0 +170748559519,218,0 +170748559568,219,0 +170748559616,220,0 +170748559666,220,0 +170748559715,223,0 +170748559765,225,0 +170748559814,225,0 +170748559864,225,0 +170748559912,226,0 +170748559961,227,0 +170748560011,229,0 +170748560059,227,0 +170748560108,228,0 +170748560158,218,0 +170748560207,216,0 +170748560257,216,0 +170748560305,216,0 +170748560353,216,0 +170748560401,216,0 +170748560449,216,0 +170748560498,217,0 +170748560546,217,0 +170748560596,218,0 +170748560645,219,0 +170748560693,220,0 +170748560743,221,0 +170748560792,223,0 +170748560840,223,0 +170748560888,224,0 +170748560938,225,0 +170748560987,227,0 +170748561037,228,0 +170748561086,228,0 +170748561134,218,0 +170748561182,216,0 +170748561232,216,0 +170748561281,216,0 +170748561329,216,0 +170748561379,217,0 +170748561427,218,0 +170748561475,218,0 +170748561523,218,0 +170748561572,219,0 +170748561620,220,0 +170748561670,221,0 +170748561719,222,0 +170748561769,224,0 +170748561818,225,0 +170748561868,226,0 +170748561917,226,0 +170748561965,227,0 +170748562015,228,0 +170748562064,227,0 +170748562112,217,0 +170748562160,217,0 +170748562208,217,0 +170748562256,218,0 +170748562306,219,0 +170748562354,220,0 +170748562403,221,0 +170748562453,223,0 +170748562501,224,0 +170748562550,227,0 +170748562598,226,0 +170748562648,227,0 +170748562697,228,0 +170748562747,228,0 +170748562795,227,0 +170748562843,228,0 +170748562892,228,0 +170748562940,228,0 +170748562988,228,0 +170748563036,228,0 +170748563084,217,0 +170748563132,217,0 +170748563180,218,0 +170748563228,218,0 +170748563277,219,0 +170748563327,221,0 +170748563375,221,0 +170748563424,222,0 +170748563474,224,0 +170748563522,225,0 +170748563571,226,0 +170748563619,227,0 +170748563667,231,0 +170748563715,226,0 +170748563763,228,0 +170748563813,232,0 +170748563861,228,0 +170748563910,228,0 +170748563960,229,0 +170748564009,228,0 +170748564059,217,0 +170748564108,216,0 +170748564156,216,0 +170748564206,216,0 +170748564255,217,0 +170748564305,218,0 +170748564354,219,0 +170748564404,221,0 +170748564452,221,0 +170748564500,222,0 +170748564549,224,0 +170748564599,224,0 +170748564648,227,0 +170748564696,226,0 +170748564746,228,0 +170748564794,229,0 +170748564843,229,0 +170748564893,230,0 +170748564942,228,0 +170748564992,221,0 +170748565040,215,0 +170748565088,215,0 +170748565137,215,0 +170748565187,216,0 +170748565235,216,0 +170748565285,217,0 +170748565334,217,0 +170748565382,219,0 +170748565432,218,0 +170748565481,219,0 +170748565529,221,0 +170748565578,221,0 +170748565626,223,0 +170748565676,225,0 +170748565724,224,0 +170748565772,225,0 +170748565820,226,0 +170748565868,226,0 +170748565916,230,0 +170748565964,218,0 +170748566012,216,0 +170748566060,216,0 +170748566107,216,0 +170748566157,217,0 +170748566206,218,0 +170748566254,219,0 +170748566304,220,0 +170748566354,220,0 +170748566402,221,0 +170748566451,222,0 +170748566501,222,0 +170748566548,224,0 +170748566598,224,0 +170748566646,224,0 +170748566694,226,0 +170748566744,226,0 +170748566792,226,0 +170748566841,224,0 +170748566889,227,0 +170748566939,219,0 +170748566986,217,0 +170748567036,218,0 +170748567085,220,0 +170748567135,221,0 +170748567185,221,0 +170748567233,222,0 +170748567282,224,0 +170748567332,224,0 +170748567379,224,0 +170748567427,229,0 +170748567477,227,0 +170748567527,225,0 +170748567576,228,0 +170748567624,227,0 +170748567674,228,0 +170748567723,229,0 +170748567773,232,0 +170748567821,230,0 +170748567870,228,0 +170748567920,218,0 +170748567968,217,0 +170748568016,218,0 +170748568064,220,0 +170748568112,221,0 +170748568161,221,0 +170748568211,222,0 +170748568259,223,0 +170748568308,227,0 +170748568356,224,0 +170748568404,225,0 +170748568452,220,0 +170748568502,229,0 +170748568551,227,0 +170748568599,231,0 +170748568649,229,0 +170748568698,229,0 +170748568748,228,0 +170748568797,228,0 +170748568845,228,0 +170748568895,217,0 +170748568944,217,0 +170748568994,218,0 +170748569042,219,0 +170748569090,220,0 +170748569138,223,0 +170748569186,221,0 +170748569235,224,0 +170748569285,223,0 +170748569333,223,0 +170748569382,223,0 +170748569432,224,0 +170748569480,226,0 +170748569528,225,0 +170748569576,228,0 +170748569625,230,0 +170748569673,229,0 +170748569721,228,0 +170748569769,228,0 +170748569819,228,0 +170748569868,216,0 +170748569918,216,0 +170748569966,216,0 +170748570015,216,0 +170748570065,216,0 +170748570114,215,0 +170748570164,218,0 +170748570213,219,0 +170748570263,221,0 +170748570313,223,0 +170748570360,222,0 +170748570410,223,0 +170748570460,225,0 +170748570507,226,0 +170748570557,228,0 +170748570607,229,0 +170748570656,229,0 +170748570704,228,0 +170748570752,229,0 +170748570800,226,0 +170748570850,215,0 +170748570899,216,0 +170748570949,216,0 +170748570997,216,0 +170748571045,217,0 +170748571093,217,0 +170748571140,217,0 +170748571188,218,0 +170748571236,219,0 +170748571284,224,0 +170748571334,223,0 +170748571383,228,0 +170748571431,225,0 +170748571479,226,0 +170748571527,229,0 +170748571577,227,0 +170748571625,227,0 +170748571673,227,0 +170748571722,227,0 +170748571772,228,0 +170748571820,216,0 +170748571869,216,0 +170748571917,216,0 +170748571965,216,0 +170748572013,217,0 +170748572063,217,0 +170748572112,218,0 +170748572160,218,0 +170748572210,218,0 +170748572259,219,0 +170748572307,220,0 +170748572355,223,0 +170748572405,226,0 +170748572454,224,0 +170748572502,225,0 +170748572550,227,0 +170748572600,226,0 +170748572649,228,0 +170748572699,227,0 +170748572748,218,0 +170748572798,216,0 +170748572847,216,0 +170748572897,216,0 +170748572945,216,0 +170748572993,216,0 +170748573042,218,0 +170748573092,218,0 +170748573141,219,0 +170748573189,220,0 +170748573237,220,0 +170748573285,223,0 +170748573333,225,0 +170748573381,224,0 +170748573428,225,0 +170748573476,228,0 +170748573524,230,0 +170748573572,227,0 +170748573620,226,0 +170748573670,229,0 +170748573719,218,0 +170748573767,216,0 +170748573815,216,0 +170748573863,216,0 +170748573911,216,0 +170748573959,217,0 +170748574007,218,0 +170748574055,218,0 +170748574103,219,0 +170748574152,221,0 +170748574200,223,0 +170748574250,222,0 +170748574299,224,0 +170748574349,225,0 +170748574398,228,0 +170748574446,227,0 +170748574494,228,0 +170748574542,229,0 +170748574592,228,0 +170748574639,232,0 +170748574687,220,0 +170748574737,216,0 +170748574785,216,0 +170748574833,217,0 +170748574881,217,0 +170748574929,217,0 +170748574977,217,0 +170748575025,220,0 +170748575073,219,0 +170748575122,220,0 +170748575172,223,0 +170748575221,225,0 +170748575269,225,0 +170748575319,225,0 +170748575368,227,0 +170748575416,230,0 +170748575464,227,0 +170748575512,229,0 +170748575562,228,0 +170748575611,226,0 +170748575661,218,0 +170748575710,216,0 +170748575758,217,0 +170748575808,217,0 +170748575857,216,0 +170748575907,217,0 +170748575955,218,0 +170748576003,220,0 +170748576051,220,0 +170748576099,221,0 +170748576147,221,0 +170748576196,223,0 +170748576246,225,0 +170748576295,230,0 +170748576343,226,0 +170748576391,230,0 +170748576439,229,0 +170748576488,230,0 +170748576536,228,0 +170748576586,229,0 +170748576635,217,0 +170748576683,215,0 +170748576732,215,0 +170748576780,215,0 +170748576830,215,0 +170748576878,216,0 +170748576927,216,0 +170748576975,217,0 +170748577023,217,0 +170748577071,217,0 +170748577119,217,0 +170748577168,217,0 +170748577216,219,0 +170748577264,220,0 +170748577312,221,0 +170748577360,222,0 +170748577408,222,0 +170748577455,223,0 +170748577503,224,0 +170748577551,227,0 +170748577599,218,0 +170748577649,216,0 +170748577697,216,0 +170748577744,216,0 +170748577792,216,0 +170748577840,217,0 +170748577888,217,0 +170748577938,217,0 +170748577985,218,0 +170748578033,218,0 +170748578081,219,0 +170748578131,221,0 +170748578179,221,0 +170748578226,223,0 +170748578276,224,0 +170748578324,225,0 +170748578372,226,0 +170748578420,227,0 +170748578468,227,0 +170748578516,228,0 +170748578565,223,0 +170748578613,215,0 +170748578661,215,0 +170748578710,216,0 +170748578758,216,0 +170748578806,216,0 +170748578856,217,0 +170748578903,217,0 +170748578951,217,0 +170748578999,218,0 +170748579049,219,0 +170748579096,221,0 +170748579144,223,0 +170748579192,226,0 +170748579242,227,0 +170748579290,226,0 +170748579337,226,0 +170748579385,227,0 +170748579433,227,0 +170748579481,230,0 +170748579529,223,0 +170748579577,216,0 +170748579625,216,0 +170748579675,216,0 +170748579724,217,0 +170748579772,217,0 +170748579820,217,0 +170748579870,218,0 +170748579917,217,0 +170748579967,218,0 +170748580017,219,0 +170748580065,220,0 +170748580112,222,0 +170748580160,225,0 +170748580210,226,0 +170748580258,226,0 +170748580307,226,0 +170748580355,226,0 +170748580403,226,0 +170748580451,227,0 +170748580500,220,0 +170748580548,216,0 +170748580598,216,0 +170748580646,216,0 +170748580694,216,0 +170748580742,217,0 +170748580791,217,0 +170748580839,217,0 +170748580889,218,0 +170748580938,219,0 +170748580986,220,0 +170748581036,221,0 +170748581085,223,0 +170748581135,224,0 +170748581184,225,0 +170748581234,226,0 +170748581282,228,0 +170748581331,227,0 +170748581379,227,0 +170748581427,228,0 +170748581475,219,0 +170748581523,216,0 +170748581571,216,0 +170748581618,216,0 +170748581668,216,0 +170748581717,216,0 +170748581765,216,0 +170748581815,217,0 +170748581864,218,0 +170748581912,219,0 +170748581960,220,0 +170748582009,221,0 +170748582059,221,0 +170748582107,222,0 +170748582155,225,0 +170748582202,224,0 +170748582250,224,0 +170748582300,225,0 +170748582348,226,0 +170748582396,228,0 +170748582445,218,0 +170748582493,216,0 +170748582541,216,0 +170748582589,217,0 +170748582637,220,0 +170748582685,219,0 +170748582733,219,0 +170748582781,220,0 +170748582830,221,0 +170748582878,221,0 +170748582928,222,0 +170748582976,224,0 +170748583024,225,0 +170748583073,226,0 +170748583121,226,0 +170748583169,233,0 +170748583219,227,0 +170748583268,228,0 +170748583316,227,0 +170748583364,228,0 +170748583412,226,0 +170748583460,216,0 +170748583510,216,0 +170748583558,217,0 +170748583606,219,0 +170748583653,219,0 +170748583701,221,0 +170748583749,221,0 +170748583797,223,0 +170748583845,223,0 +170748583895,224,0 +170748583943,224,0 +170748583991,226,0 +170748584039,228,0 +170748584087,227,0 +170748584135,228,0 +170748584183,228,0 +170748584231,228,0 +170748584280,228,0 +170748584328,228,0 +170748584376,226,0 +170748584424,216,0 +170748584472,217,0 +170748584520,217,0 +170748584569,218,0 +170748584617,221,0 +170748584665,222,0 +170748584715,222,0 +170748584763,223,0 +170748584812,224,0 +170748584860,224,0 +170748584908,225,0 +170748584956,227,0 +170748585004,226,0 +170748585052,227,0 +170748585100,227,0 +170748585148,227,0 +170748585196,228,0 +170748585244,229,0 +170748585293,229,0 +170748585342,228,0 +170748585390,217,0 +170748585438,216,0 +170748585488,216,0 +170748585536,217,0 +170748585585,219,0 +170748585635,221,0 +170748585684,226,0 +170748585732,222,0 +170748585780,224,0 +170748585830,225,0 +170748585878,225,0 +170748585926,230,0 +170748585973,229,0 +170748586023,228,0 +170748586071,230,0 +170748586118,230,0 +170748586166,229,0 +170748586214,228,0 +170748586262,228,0 +170748586312,227,0 +170748586361,216,0 +170748586409,217,0 +170748586458,216,0 +170748586506,217,0 +170748586554,217,0 +170748586602,217,0 +170748586652,218,0 +170748586700,218,0 +170748586747,220,0 +170748586795,221,0 +170748586843,223,0 +170748586891,224,0 +170748586939,226,0 +170748586987,226,0 +170748587035,226,0 +170748587084,226,0 +170748587132,226,0 +170748587180,227,0 +170748587230,228,0 +170748587277,230,0 +170748587325,217,0 +170748587373,217,0 +170748587421,218,0 +170748587469,220,0 +170748587518,220,0 +170748587566,221,0 +170748587614,221,0 +170748587662,224,0 +170748587710,222,0 +170748587759,226,0 +170748587807,227,0 +170748587855,228,0 +170748587903,228,0 +170748587953,226,0 +170748588000,231,0 +170748588048,230,0 +170748588096,230,0 +170748588146,231,0 +170748588194,232,0 +170748588242,231,0 +170748588290,218,0 +170748588338,216,0 +170748588387,217,0 +170748588437,217,0 +170748588486,218,0 +170748588534,220,0 +170748588584,221,0 +170748588633,223,0 +170748588681,223,0 +170748588729,223,0 +170748588779,224,0 +170748588828,226,0 +170748588876,226,0 +170748588924,228,0 +170748588972,228,0 +170748589020,227,0 +170748589067,229,0 +170748589117,228,0 +170748589165,229,0 +170748589213,228,0 +170748589261,218,0 +170748589310,217,0 +170748589358,216,0 +170748589406,216,0 +170748589454,218,0 +170748589503,218,0 +170748589551,219,0 +170748589599,220,0 +170748589649,222,0 +170748589696,221,0 +170748589746,224,0 +170748589795,229,0 +170748589843,225,0 +170748589891,228,0 +170748589939,229,0 +170748589987,228,0 +170748590035,230,0 +170748590082,229,0 +170748590132,228,0 +170748590180,228,0 +170748590229,217,0 +170748590279,216,0 +170748590327,217,0 +170748590374,217,0 +170748590422,218,0 +170748590470,219,0 +170748590518,220,0 +170748590566,220,0 +170748590614,221,0 +170748590662,224,0 +170748590710,226,0 +170748590757,225,0 +170748590805,228,0 +170748590855,228,0 +170748590903,228,0 +170748590951,228,0 +170748590998,227,0 +170748591046,228,0 +170748591094,217,0 +170748591142,216,0 +170748591190,216,0 +170748591240,216,0 +170748591289,218,0 +170748591337,217,0 +170748591387,219,0 +170748591436,220,0 +170748591484,223,0 +170748591532,223,0 +170748591580,225,0 +170748591628,224,0 +170748591678,225,0 +170748591726,227,0 +170748591775,226,0 +170748591825,230,0 +170748591874,228,0 +170748591922,218,0 +170748591972,216,0 +170748592020,216,0 +170748592069,217,0 +170748592117,216,0 +170748592165,217,0 +170748592214,217,0 +170748592262,218,0 +170748592312,219,0 +170748592359,220,0 +170748592409,221,0 +170748592458,221,0 +170748592506,224,0 +170748592556,226,0 +170748592604,225,0 +170748592651,229,0 +170748592699,227,0 +170748592747,227,0 +170748592795,216,0 +170748592843,215,0 +170748592893,215,0 +170748592942,215,0 +170748592990,215,0 +170748593038,215,0 +170748593086,216,0 +170748593134,216,0 +170748593183,217,0 +170748593231,217,0 +170748593279,219,0 +170748593327,219,0 +170748593375,221,0 +170748593422,222,0 +170748593470,223,0 +170748593518,223,0 +170748593566,227,0 +170748593614,227,0 +170748593662,216,0 +170748593710,217,0 +170748593759,216,0 +170748593809,217,0 +170748593859,217,0 +170748593908,218,0 +170748593958,219,0 +170748594006,220,0 +170748594053,223,0 +170748594101,222,0 +170748594149,223,0 +170748594197,227,0 +170748594245,226,0 +170748594294,225,0 +170748594342,226,0 +170748594390,226,0 +170748594440,227,0 +170748594487,217,0 +170748594535,216,0 +170748594583,216,0 +170748594633,217,0 +170748594682,217,0 +170748594732,219,0 +170748594780,221,0 +170748594829,221,0 +170748594877,222,0 +170748594925,225,0 +170748594974,224,0 +170748595022,226,0 +170748595072,226,0 +170748595120,227,0 +170748595169,231,0 +170748595219,227,0 +170748595268,230,0 +170748595318,227,0 +170748595366,217,0 +170748595415,217,0 +170748595465,218,0 +170748595515,219,0 +170748595564,221,0 +170748595614,221,0 +170748595662,221,0 +170748595710,225,0 +170748595757,225,0 +170748595807,225,0 +170748595857,228,0 +170748595905,227,0 +170748595954,228,0 +170748596002,229,0 +170748596052,229,0 +170748596100,230,0 +170748596148,228,0 +170748596195,218,0 +170748596243,216,0 +170748596291,217,0 +170748596339,217,0 +170748596387,219,0 +170748596435,220,0 +170748596484,221,0 +170748596532,222,0 +170748596580,224,0 +170748596628,224,0 +170748596676,225,0 +170748596724,228,0 +170748596773,227,0 +170748596821,227,0 +170748596871,228,0 +170748596919,228,0 +170748596968,230,0 +170748597016,228,0 +170748597064,217,0 +170748597114,217,0 +170748597161,218,0 +170748597209,219,0 +170748597259,220,0 +170748597308,220,0 +170748597358,219,0 +170748597406,224,0 +170748597456,226,0 +170748597505,226,0 +170748597555,227,0 +170748597604,228,0 +170748597652,229,0 +170748597702,230,0 +170748597751,229,0 +170748597801,229,0 +170748597849,227,0 +170748597897,218,0 +170748597944,215,0 +170748597992,217,0 +170748598040,217,0 +170748598090,218,0 +170748598138,220,0 +170748598186,221,0 +170748598235,224,0 +170748598285,225,0 +170748598334,226,0 +170748598382,225,0 +170748598430,227,0 +170748598478,227,0 +170748598528,230,0 +170748598577,228,0 +170748598625,228,0 +170748598673,228,0 +170748598722,227,0 +170748598770,217,0 +170748598820,217,0 +170748598869,216,0 +170748598919,217,0 +170748598968,217,0 +170748599018,217,0 +170748599068,218,0 +170748599115,218,0 +170748599163,220,0 +170748599211,222,0 +170748599259,223,0 +170748599307,224,0 +170748599357,225,0 +170748599404,226,0 +170748599452,226,0 +170748599500,227,0 +170748599550,227,0 +170748599599,225,0 +170748599647,216,0 +170748599695,216,0 +170748599744,216,0 +170748599792,217,0 +170748599842,217,0 +170748599890,218,0 +170748599938,219,0 +170748599986,222,0 +170748600033,223,0 +170748600081,224,0 +170748600129,227,0 +170748600177,226,0 +170748600225,228,0 +170748600273,227,0 +170748600323,229,0 +170748600371,229,0 +170748600420,228,0 +170748600470,218,0 +170748600519,216,0 +170748600567,216,0 +170748600617,217,0 +170748600665,219,0 +170748600713,219,0 +170748600760,220,0 +170748600810,220,0 +170748600858,222,0 +170748600907,223,0 +170748600955,225,0 +170748601005,226,0 +170748601055,226,0 +170748601104,226,0 +170748601152,228,0 +170748601202,228,0 +170748601250,229,0 +170748601298,228,0 +170748601347,216,0 +170748601397,216,0 +170748601446,217,0 +170748601496,219,0 +170748601545,221,0 +170748601595,221,0 +170748601643,222,0 +170748601692,223,0 +170748601740,225,0 +170748601788,226,0 +170748601836,227,0 +170748601885,226,0 +170748601933,227,0 +170748601983,228,0 +170748602032,228,0 +170748602080,228,0 +170748602128,227,0 +170748602176,218,0 +170748602226,217,0 +170748602275,220,0 +170748602325,220,0 +170748602373,223,0 +170748602422,224,0 +170748602470,224,0 +170748602520,226,0 +170748602569,226,0 +170748602617,228,0 +170748602665,230,0 +170748602713,228,0 +170748602761,228,0 +170748602809,228,0 +170748602859,229,0 +170748602907,228,0 +170748602956,229,0 +170748603006,229,0 +170748603054,217,0 +170748603103,217,0 +170748603153,219,0 +170748603201,219,0 +170748603250,221,0 +170748603300,224,0 +170748603349,224,0 +170748603397,225,0 +170748603445,227,0 +170748603493,228,0 +170748603543,228,0 +170748603591,231,0 +170748603639,230,0 +170748603688,227,0 +170748603738,229,0 +170748603786,229,0 +170748603835,227,0 +170748603883,218,0 +170748603931,216,0 +170748603979,217,0 +170748604029,219,0 +170748604077,219,0 +170748604125,220,0 +170748604173,222,0 +170748604221,223,0 +170748604269,226,0 +170748604316,224,0 +170748604364,228,0 +170748604412,226,0 +170748604462,227,0 +170748604511,230,0 +170748604559,230,0 +170748604607,231,0 +170748604655,229,0 +170748604703,228,0 +170748604751,217,0 +170748604800,216,0 +170748604848,218,0 +170748604896,219,0 +170748604944,220,0 +170748604992,221,0 +170748605040,223,0 +170748605089,226,0 +170748605138,224,0 +170748605186,224,0 +170748605236,228,0 +170748605284,229,0 +170748605332,230,0 +170748605381,230,0 +170748605431,228,0 +170748605479,228,0 +170748605527,228,0 +170748605575,217,0 +170748605622,216,0 +170748605672,217,0 +170748605720,218,0 +170748605768,219,0 +170748605816,220,0 +170748605864,220,0 +170748605913,222,0 +170748605962,223,0 +170748606012,228,0 +170748606060,226,0 +170748606108,225,0 +170748606157,228,0 +170748606205,231,0 +170748606254,230,0 +170748606304,228,0 +170748606353,228,0 +170748606401,228,0 +170748606449,217,0 +170748606497,216,0 +170748606545,218,0 +170748606593,220,0 +170748606642,221,0 +170748606690,222,0 +170748606738,224,0 +170748606786,225,0 +170748606834,224,0 +170748606882,225,0 +170748606931,225,0 +170748606979,228,0 +170748607027,227,0 +170748607077,230,0 +170748607124,232,0 +170748607172,233,0 +170748607220,233,0 +170748607268,228,0 +170748607316,217,0 +170748607364,218,0 +170748607412,220,0 +170748607460,222,0 +170748607507,220,0 +170748607555,224,0 +170748607603,223,0 +170748607651,224,0 +170748607701,228,0 +170748607750,226,0 +170748607800,226,0 +170748607848,227,0 +170748607897,228,0 +170748607945,229,0 +170748607995,229,0 +170748608043,231,0 +170748608091,229,0 +170748608140,219,0 +170748608188,219,0 +170748608236,221,0 +170748608284,221,0 +170748608334,222,0 +170748608383,224,0 +170748608431,225,0 +170748608481,226,0 +170748608530,227,0 +170748608580,228,0 +170748608628,227,0 +170748608676,228,0 +170748608724,229,0 +170748608773,229,0 +170748608821,231,0 +170748608869,228,0 +170748608917,229,0 +170748608964,228,0 +170748609012,221,0 +170748609060,220,0 +170748609108,222,0 +170748609156,223,0 +170748609204,224,0 +170748609252,226,0 +170748609302,226,0 +170748609351,228,0 +170748609399,229,0 +170748609447,227,0 +170748609497,227,0 +170748609545,230,0 +170748609593,229,0 +170748609641,230,0 +170748609690,232,0 +170748609740,228,0 +170748609789,228,0 +170748609837,227,0 +170748609887,224,0 +170748609936,223,0 +170748609986,225,0 +170748610035,227,0 +170748610083,226,0 +170748610131,229,0 +170748610179,227,0 +170748610229,228,0 +170748610278,229,0 +170748610328,231,0 +170748610377,230,0 +170748610427,230,0 +170748610476,230,0 +170748610524,231,0 +170748610574,230,0 +170748610623,227,0 +170748610673,228,0 +170748610721,224,0 +170748610769,225,0 +170748610817,229,0 +170748610865,231,0 +170748610914,230,0 +170748610964,231,0 +170748611012,230,0 +170748611060,230,0 +170748611109,231,0 +170748611159,231,0 +170748611208,231,0 +170748611256,229,0 +170748611304,229,0 +170748611354,228,0 +170748611403,229,0 +170748611451,228,0 +170748611501,231,0 +170748611551,221,0 +170748611600,224,0 +170748611650,223,0 +170748611699,224,0 +170748611747,225,0 +170748611795,226,0 +170748611843,229,0 +170748611891,228,0 +170748611939,226,0 +170748611989,226,0 +170748612038,232,0 +170748612088,229,0 +170748612136,229,0 +170748612184,230,0 +170748612233,227,0 +170748612283,228,0 +170748612332,229,0 +170748612380,227,0 +170748612430,218,0 +170748612479,219,0 +170748612527,221,0 +170748612575,222,0 +170748612623,222,0 +170748612671,223,0 +170748612719,224,0 +170748612767,226,0 +170748612816,226,0 +170748612864,228,0 +170748612912,228,0 +170748612960,230,0 +170748613009,231,0 +170748613059,228,0 +170748613109,231,0 +170748613158,227,0 +170748613208,228,0 +170748613257,219,0 +170748613305,219,0 +170748613353,219,0 +170748613401,221,0 +170748613449,222,0 +170748613498,224,0 +170748613546,224,0 +170748613594,227,0 +170748613642,228,0 +170748613690,227,0 +170748613738,227,0 +170748613785,229,0 +170748613833,231,0 +170748613881,229,0 +170748613929,229,0 +170748613977,228,0 +170748614025,228,0 +170748614073,225,0 +170748614123,219,0 +170748614172,219,0 +170748614220,220,0 +170748614270,221,0 +170748614319,221,0 +170748614369,222,0 +170748614417,223,0 +170748614466,225,0 +170748614514,226,0 +170748614562,227,0 +170748614610,226,0 +170748614658,229,0 +170748614706,228,0 +170748614754,228,0 +170748614802,231,0 +170748614850,228,0 +170748614898,230,0 +170748614946,228,0 +170748614994,217,0 +170748615041,217,0 +170748615089,219,0 +170748615139,220,0 +170748615187,221,0 +170748615235,222,0 +170748615283,223,0 +170748615332,223,0 +170748615382,225,0 +170748615430,226,0 +170748615478,227,0 +170748615526,227,0 +170748615574,228,0 +170748615622,226,0 +170748615670,229,0 +170748615719,230,0 +170748615769,229,0 +170748615817,219,0 +170748615866,215,0 +170748615914,217,0 +170748615963,216,0 +170748616011,218,0 +170748616059,219,0 +170748616107,222,0 +170748616155,222,0 +170748616203,222,0 +170748616252,227,0 +170748616300,226,0 +170748616348,227,0 +170748616396,227,0 +170748616444,227,0 +170748616491,227,0 +170748616541,229,0 +170748616589,226,0 +170748616637,227,0 +170748616685,218,0 +170748616732,215,0 +170748616780,217,0 +170748616828,219,0 +170748616876,220,0 +170748616924,221,0 +170748616974,223,0 +170748617023,225,0 +170748617071,224,0 +170748617121,227,0 +170748617169,228,0 +170748617218,228,0 +170748617266,229,0 +170748617314,229,0 +170748617364,229,0 +170748617411,227,0 +170748617459,229,0 +170748617509,228,0 +170748617559,216,0 +170748617608,217,0 +170748617658,220,0 +170748617706,221,0 +170748617754,222,0 +170748617802,224,0 +170748617851,225,0 +170748617899,226,0 +170748617947,226,0 +170748617997,227,0 +170748618045,229,0 +170748618094,229,0 +170748618144,231,0 +170748618193,229,0 +170748618243,230,0 +170748618292,230,0 +170748618342,229,0 +170748618391,218,0 +170748618439,216,0 +170748618487,217,0 +170748618535,218,0 +170748618585,220,0 +170748618634,221,0 +170748618684,220,0 +170748618732,226,0 +170748618781,225,0 +170748618829,228,0 +170748618879,227,0 +170748618927,229,0 +170748618976,229,0 +170748619024,229,0 +170748619074,230,0 +170748619123,228,0 +170748619171,228,0 +170748619219,229,0 +170748619267,217,0 +170748619317,217,0 +170748619366,218,0 +170748619414,220,0 +170748619462,222,0 +170748619510,221,0 +170748619560,223,0 +170748619608,223,0 +170748619656,224,0 +170748619704,227,0 +170748619753,229,0 +170748619803,230,0 +170748619852,227,0 +170748619902,231,0 +170748619950,232,0 +170748619998,230,0 +170748620046,230,0 +170748620095,218,0 +170748620143,217,0 +170748620191,219,0 +170748620239,221,0 +170748620289,221,0 +170748620338,221,0 +170748620388,223,0 +170748620437,224,0 +170748620485,226,0 +170748620533,224,0 +170748620583,229,0 +170748620631,227,0 +170748620680,228,0 +170748620728,231,0 +170748620776,230,0 +170748620824,231,0 +170748620874,232,0 +170748620921,228,0 +170748620969,218,0 +170748621018,220,0 +170748621067,223,0 +170748621117,223,0 +170748621166,223,0 +170748621214,225,0 +170748621262,225,0 +170748621312,225,0 +170748621361,228,0 +170748621411,228,0 +170748621459,226,0 +170748621508,228,0 +170748621558,230,0 +170748621607,230,0 +170748621655,225,0 +170748621705,231,0 +170748621753,229,0 +170748621801,219,0 +170748621850,218,0 +170748621898,220,0 +170748621946,222,0 +170748621994,226,0 +170748622042,223,0 +170748622090,226,0 +170748622140,225,0 +170748622189,229,0 +170748622237,229,0 +170748622287,230,0 +170748622336,231,0 +170748622384,230,0 +170748622432,231,0 +170748622482,230,0 +170748622531,229,0 +170748622579,229,0 +170748622627,228,0 +170748622677,217,0 +170748622726,219,0 +170748622774,223,0 +170748622822,221,0 +170748622872,222,0 +170748622919,225,0 +170748622969,224,0 +170748623019,225,0 +170748623068,226,0 +170748623118,230,0 +170748623167,228,0 +170748623217,226,0 +170748623266,230,0 +170748623316,230,0 +170748623365,228,0 +170748623415,230,0 +170748623464,228,0 +170748623512,220,0 +170748623560,219,0 +170748623610,223,0 +170748623659,224,0 +170748623709,225,0 +170748623757,225,0 +170748623805,225,0 +170748623854,226,0 +170748623904,225,0 +170748623952,226,0 +170748624000,227,0 +170748624049,231,0 +170748624099,229,0 +170748624147,229,0 +170748624195,229,0 +170748624244,228,0 +170748624292,228,0 +170748624342,224,0 +170748624390,219,0 +170748624438,220,0 +170748624486,221,0 +170748624534,222,0 +170748624582,223,0 +170748624630,225,0 +170748624678,225,0 +170748624727,227,0 +170748624777,227,0 +170748624825,227,0 +170748624873,229,0 +170748624921,230,0 +170748624969,231,0 +170748625018,231,0 +170748625066,230,0 +170748625114,232,0 +170748625164,224,0 +170748625212,221,0 +170748625260,219,0 +170748625308,223,0 +170748625356,223,0 +170748625403,223,0 +170748625451,225,0 +170748625499,226,0 +170748625549,228,0 +170748625598,231,0 +170748625648,234,0 +170748625696,231,0 +170748625744,229,0 +170748625793,228,0 +170748625841,230,0 +170748625889,230,0 +170748625937,231,0 +170748625987,229,0 +170748626035,230,0 +170748626084,219,0 +170748626134,220,0 +170748626182,221,0 +170748626231,224,0 +170748626281,224,0 +170748626329,226,0 +170748626377,232,0 +170748626426,229,0 +170748626474,230,0 +170748626523,229,0 +170748626571,230,0 +170748626619,232,0 +170748626667,230,0 +170748626715,232,0 +170748626763,231,0 +170748626811,228,0 +170748626859,229,0 +170748626907,218,0 +170748626955,216,0 +170748627003,217,0 +170748627052,220,0 +170748627101,220,0 +170748627149,222,0 +170748627197,222,0 +170748627247,224,0 +170748627296,225,0 +170748627346,226,0 +170748627394,227,0 +170748627442,231,0 +170748627490,229,0 +170748627538,230,0 +170748627585,232,0 +170748627633,230,0 +170748627681,229,0 +170748627731,228,0 +170748627780,218,0 +170748627830,217,0 +170748627879,218,0 +170748627927,220,0 +170748627977,221,0 +170748628026,222,0 +170748628076,221,0 +170748628123,226,0 +170748628173,227,0 +170748628221,227,0 +170748628270,229,0 +170748628320,231,0 +170748628368,230,0 +170748628416,230,0 +170748628463,232,0 +170748628511,228,0 +170748628559,231,0 +170748628607,227,0 +170748628657,216,0 +170748628706,219,0 +170748628756,219,0 +170748628805,220,0 +170748628853,222,0 +170748628903,223,0 +170748628952,225,0 +170748629002,225,0 +170748629050,229,0 +170748629098,226,0 +170748629146,228,0 +170748629194,230,0 +170748629242,230,0 +170748629290,229,0 +170748629339,230,0 +170748629387,229,0 +170748629435,231,0 +170748629485,218,0 +170748629533,216,0 +170748629581,220,0 +170748629630,220,0 +170748629680,222,0 +170748629728,222,0 +170748629777,223,0 +170748629825,224,0 +170748629875,225,0 +170748629924,226,0 +170748629972,227,0 +170748630020,230,0 +170748630068,228,0 +170748630118,229,0 +170748630167,230,0 +170748630215,229,0 +170748630263,229,0 +170748630312,221,0 +170748630360,219,0 +170748630410,222,0 +170748630458,224,0 +170748630506,223,0 +170748630553,225,0 +170748630601,225,0 +170748630649,225,0 +170748630697,227,0 +170748630747,226,0 +170748630796,228,0 +170748630844,232,0 +170748630892,228,0 +170748630940,228,0 +170748630989,229,0 +170748631037,228,0 +170748631087,230,0 +170748631135,231,0 +170748631185,220,0 +170748631232,220,0 +170748631280,220,0 +170748631330,221,0 +170748631378,222,0 +170748631426,223,0 +170748631474,223,0 +170748631523,224,0 +170748631573,225,0 +170748631621,229,0 +170748631670,226,0 +170748631718,228,0 +170748631766,228,0 +170748631814,228,0 +170748631864,228,0 +170748631913,229,0 +170748631963,228,0 +170748632011,227,0 +170748632060,219,0 +170748632108,221,0 +170748632158,221,0 +170748632207,224,0 +170748632255,224,0 +170748632305,225,0 +170748632354,227,0 +170748632402,226,0 +170748632450,229,0 +170748632498,227,0 +170748632548,229,0 +170748632597,229,0 +170748632647,230,0 +170748632695,231,0 +170748632743,229,0 +170748632791,228,0 +170748632839,228,0 +170748632887,223,0 +170748632935,222,0 +170748632983,224,0 +170748633031,224,0 +170748633079,227,0 +170748633128,225,0 +170748633178,226,0 +170748633227,227,0 +170748633276,228,0 +170748633324,230,0 +170748633372,228,0 +170748633420,229,0 +170748633470,229,0 +170748633518,230,0 +170748633566,229,0 +170748633615,229,0 +170748633665,229,0 +170748633713,228,0 +170748633761,219,0 +170748633809,218,0 +170748633856,221,0 +170748633904,221,0 +170748633954,222,0 +170748634002,226,0 +170748634052,226,0 +170748634101,227,0 +170748634149,227,0 +170748634197,226,0 +170748634245,228,0 +170748634293,229,0 +170748634341,230,0 +170748634389,232,0 +170748634437,230,0 +170748634485,230,0 +170748634532,229,0 +170748634580,225,0 +170748634628,216,0 +170748634676,219,0 +170748634724,218,0 +170748634772,219,0 +170748634820,221,0 +170748634869,227,0 +170748634917,225,0 +170748634965,225,0 +170748635013,225,0 +170748635061,226,0 +170748635110,227,0 +170748635160,228,0 +170748635208,231,0 +170748635256,229,0 +170748635304,228,0 +170748635351,230,0 +170748635399,228,0 +170748635447,218,0 +170748635495,216,0 +170748635545,217,0 +170748635593,218,0 +170748635640,220,0 +170748635690,221,0 +170748635738,222,0 +170748635788,222,0 +170748635837,224,0 +170748635885,225,0 +170748635933,226,0 +170748635981,226,0 +170748636029,225,0 +170748636077,227,0 +170748636125,228,0 +170748636173,226,0 +170748636221,227,0 +170748636270,229,0 +170748636320,217,0 +170748636369,216,0 +170748636419,217,0 +170748636469,218,0 +170748636518,220,0 +170748636568,220,0 +170748636617,221,0 +170748636667,222,0 +170748636715,222,0 +170748636764,224,0 +170748636812,228,0 +170748636860,228,0 +170748636910,227,0 +170748636958,227,0 +170748637006,228,0 +170748637055,230,0 +170748637103,228,0 +170748637153,229,0 +170748637201,231,0 +170748637249,229,0 +170748637298,229,0 +170748637346,229,0 +170748637394,228,0 +170748637442,227,0 +170748637492,228,0 +170748637540,228,0 +170748637589,222,0 +170748637637,218,0 +170748637687,219,0 +170748637736,221,0 +170748637784,222,0 +170748637834,224,0 +170748637882,225,0 +170748637931,226,0 +170748637981,225,0 +170748638029,227,0 +170748638077,228,0 +170748638126,228,0 +170748638174,228,0 +170748638222,230,0 +170748638270,230,0 +170748638318,229,0 +170748638366,229,0 +170748638416,228,0 +170748638464,218,0 +170748638512,218,0 +170748638560,219,0 +170748638609,220,0 +170748638659,221,0 +170748638707,221,0 +170748638755,224,0 +170748638804,222,0 +170748638852,224,0 +170748638900,227,0 +170748638950,227,0 +170748638998,227,0 +170748639046,227,0 +170748639095,228,0 +170748639145,230,0 +170748639194,225,0 +170748639242,227,0 +170748639292,218,0 +170748639341,217,0 +170748639389,218,0 +170748639437,219,0 +170748639487,221,0 +170748639536,222,0 +170748639586,222,0 +170748639634,224,0 +170748639683,224,0 +170748639733,226,0 +170748639782,227,0 +170748639832,230,0 +170748639880,230,0 +170748639928,231,0 +170748639977,228,0 +170748640027,231,0 +170748640075,232,0 +170748640123,227,0 +170748640172,219,0 +170748640220,219,0 +170748640268,221,0 +170748640316,222,0 +170748640364,223,0 +170748640412,224,0 +170748640462,225,0 +170748640511,227,0 +170748640559,229,0 +170748640607,229,0 +170748640657,229,0 +170748640705,231,0 +170748640753,229,0 +170748640800,231,0 +170748640848,231,0 +170748640896,231,0 +170748640944,229,0 +170748640994,221,0 +170748641043,222,0 +170748641091,224,0 +170748641139,226,0 +170748641187,226,0 +170748641235,227,0 +170748641283,226,0 +170748641331,228,0 +170748641380,238,0 +170748641430,231,0 +170748641478,229,0 +170748641526,230,0 +170748641575,230,0 +170748641623,229,0 +170748641671,229,0 +170748641719,229,0 +170748641767,228,0 +170748641817,227,0 +170748641866,216,0 +170748641914,217,0 +170748641964,218,0 +170748642012,219,0 +170748642061,223,0 +170748642111,225,0 +170748642160,223,0 +170748642210,225,0 +170748642258,227,0 +170748642307,228,0 +170748642357,231,0 +170748642405,227,0 +170748642454,230,0 +170748642504,230,0 +170748642552,229,0 +170748642601,229,0 +170748642649,228,0 +170748642699,218,0 +170748642747,217,0 +170748642795,217,0 +170748642844,218,0 +170748642892,219,0 +170748642940,219,0 +170748642988,222,0 +170748643038,222,0 +170748643087,223,0 +170748643135,223,0 +170748643183,226,0 +170748643231,227,0 +170748643280,228,0 +170748643328,230,0 +170748643378,228,0 +170748643427,228,0 +170748643475,225,0 +170748643523,228,0 +170748643573,217,0 +170748643622,216,0 +170748643670,217,0 +170748643718,219,0 +170748643768,220,0 +170748643816,220,0 +170748643864,220,0 +170748643913,222,0 +170748643961,223,0 +170748644011,225,0 +170748644059,228,0 +170748644107,228,0 +170748644155,226,0 +170748644203,231,0 +170748644251,231,0 +170748644300,230,0 +170748644350,229,0 +170748644398,226,0 +170748644446,216,0 +170748644495,217,0 +170748644543,218,0 +170748644591,219,0 +170748644641,220,0 +170748644689,222,0 +170748644737,221,0 +170748644785,221,0 +170748644833,223,0 +170748644882,225,0 +170748644930,225,0 +170748644980,226,0 +170748645028,227,0 +170748645077,227,0 +170748645127,232,0 +170748645175,228,0 +170748645224,228,0 +170748645272,217,0 +170748645320,216,0 +170748645370,217,0 +170748645418,219,0 +170748645467,220,0 +170748645517,221,0 +170748645565,223,0 +170748645614,224,0 +170748645664,224,0 +170748645712,225,0 +170748645761,227,0 +170748645811,228,0 +170748645860,230,0 +170748645908,230,0 +170748645956,230,0 +170748646006,228,0 +170748646054,228,0 +170748646103,226,0 +170748646151,217,0 +170748646199,218,0 +170748646249,219,0 +170748646298,221,0 +170748646346,223,0 +170748646396,225,0 +170748646444,225,0 +170748646494,226,0 +170748646541,226,0 +170748646590,228,0 +170748646638,232,0 +170748646687,228,0 +170748646735,228,0 +170748646783,223,0 +170748646832,228,0 +170748646880,229,0 +170748646928,226,0 +170748646976,223,0 +170748647024,224,0 +170748647074,224,0 +170748647122,223,0 +170748647170,225,0 +170748647219,227,0 +170748647267,228,0 +170748647317,226,0 +170748647365,227,0 +170748647415,227,0 +170748647464,228,0 +170748647512,228,0 +170748647560,229,0 +170748647610,227,0 +170748647659,228,0 +170748647709,227,0 +170748647757,229,0 +170748647805,228,0 +170748647854,225,0 +170748647904,226,0 +170748647953,226,0 +170748648001,228,0 +170748648049,227,0 +170748648097,229,0 +170748648145,228,0 +170748648195,228,0 +170748648243,229,0 +170748648291,230,0 +170748648340,231,0 +170748648390,229,0 +170748648438,230,0 +170748648487,228,0 +170748648535,229,0 +170748648585,228,0 +170748648634,228,0 +170748648682,222,0 +170748648732,222,0 +170748648781,223,0 +170748648831,226,0 +170748648879,226,0 +170748648927,225,0 +170748648976,226,0 +170748649024,227,0 +170748649074,227,0 +170748649122,228,0 +170748649170,234,0 +170748649218,230,0 +170748649265,230,0 +170748649315,230,0 +170748649363,230,0 +170748649411,229,0 +170748649460,225,0 +170748649510,228,0 +170748649558,221,0 +170748649608,220,0 +170748649656,221,0 +170748649705,223,0 +170748649755,224,0 +170748649804,226,0 +170748649854,227,0 +170748649902,228,0 +170748649950,229,0 +170748649998,230,0 +170748650047,231,0 +170748650095,229,0 +170748650143,230,0 +170748650191,230,0 +170748650241,232,0 +170748650289,229,0 +170748650338,230,0 +170748650388,224,0 +170748650437,219,0 +170748650485,221,0 +170748650533,224,0 +170748650581,223,0 +170748650631,224,0 +170748650680,224,0 +170748650728,225,0 +170748650778,225,0 +170748650827,227,0 +170748650877,227,0 +170748650925,227,0 +170748650973,228,0 +170748651021,228,0 +170748651070,230,0 +170748651118,228,0 +170748651166,220,0 +170748651214,227,0 +170748651262,218,0 +170748651310,218,0 +170748651358,219,0 +170748651406,221,0 +170748651455,221,0 +170748651505,224,0 +170748651553,224,0 +170748651601,226,0 +170748651650,226,0 +170748651700,228,0 +170748651750,229,0 +170748651799,229,0 +170748651849,227,0 +170748651898,228,0 +170748651946,230,0 +170748651996,231,0 +170748652045,229,0 +170748652095,221,0 +170748652143,218,0 +170748652192,219,0 +170748652240,220,0 +170748652288,221,0 +170748652336,226,0 +170748652384,224,0 +170748652432,228,0 +170748652480,226,0 +170748652528,227,0 +170748652576,226,0 +170748652624,228,0 +170748652672,230,0 +170748652720,231,0 +170748652770,230,0 +170748652818,231,0 +170748652867,231,0 +170748652917,228,0 +170748652965,217,0 +170748653014,216,0 +170748653064,217,0 +170748653112,219,0 +170748653161,220,0 +170748653209,222,0 +170748653259,223,0 +170748653307,224,0 +170748653356,224,0 +170748653404,223,0 +170748653454,228,0 +170748653503,224,0 +170748653553,229,0 +170748653602,229,0 +170748653650,229,0 +170748653700,230,0 +170748653748,229,0 +170748653796,228,0 +170748653844,217,0 +170748653893,218,0 +170748653943,221,0 +170748653992,220,0 +170748654040,222,0 +170748654090,221,0 +170748654138,222,0 +170748654187,222,0 +170748654237,226,0 +170748654287,229,0 +170748654335,229,0 +170748654384,227,0 +170748654432,229,0 +170748654480,228,0 +170748654530,230,0 +170748654578,228,0 +170748654626,226,0 +170748654675,219,0 +170748654723,218,0 +170748654773,220,0 +170748654821,222,0 +170748654870,221,0 +170748654920,222,0 +170748654969,223,0 +170748655017,225,0 +170748655067,225,0 +170748655115,229,0 +170748655164,227,0 +170748655214,229,0 +170748655263,228,0 +170748655311,230,0 +170748655359,232,0 +170748655407,229,0 +170748655455,228,0 +170748655505,228,0 +170748655554,220,0 +170748655604,219,0 +170748655652,222,0 +170748655700,223,0 +170748655749,224,0 +170748655797,228,0 +170748655845,227,0 +170748655895,229,0 +170748655943,227,0 +170748655992,229,0 +170748656042,230,0 +170748656090,230,0 +170748656138,231,0 +170748656187,230,0 +170748656237,233,0 +170748656285,228,0 +170748656333,230,0 +170748656381,226,0 +170748656430,219,0 +170748656480,221,0 +170748656529,223,0 +170748656577,224,0 +170748656627,225,0 +170748656675,225,0 +170748656723,226,0 +170748656771,228,0 +170748656819,230,0 +170748656868,227,0 +170748656918,232,0 +170748656968,232,0 +170748657016,230,0 +170748657064,229,0 +170748657111,229,0 +170748657159,229,0 +170748657207,229,0 +170748657255,220,0 +170748657303,221,0 +170748657351,221,0 +170748657399,224,0 +170748657448,225,0 +170748657496,225,0 +170748657544,226,0 +170748657592,226,0 +170748657640,226,0 +170748657688,227,0 +170748657736,230,0 +170748657784,231,0 +170748657832,229,0 +170748657880,233,0 +170748657929,230,0 +170748657977,230,0 +170748658025,228,0 +170748658073,226,0 +170748658121,220,0 +170748658171,220,0 +170748658220,221,0 +170748658268,223,0 +170748658318,224,0 +170748658367,224,0 +170748658415,225,0 +170748658463,225,0 +170748658513,227,0 +170748658561,229,0 +170748658609,227,0 +170748658657,228,0 +170748658704,229,0 +170748658752,231,0 +170748658800,227,0 +170748658848,230,0 +170748658898,228,0 +170748658946,225,0 +170748658994,221,0 +170748659043,225,0 +170748659091,222,0 +170748659139,224,0 +170748659187,225,0 +170748659237,225,0 +170748659285,226,0 +170748659333,227,0 +170748659381,239,0 +170748659430,228,0 +170748659480,227,0 +170748659528,229,0 +170748659577,229,0 +170748659627,228,0 +170748659675,229,0 +170748659723,228,0 +170748659771,228,0 +170748659819,220,0 +170748659868,219,0 +170748659916,221,0 +170748659964,222,0 +170748660012,224,0 +170748660060,224,0 +170748660110,226,0 +170748660158,226,0 +170748660207,226,0 +170748660257,228,0 +170748660305,227,0 +170748660354,229,0 +170748660404,229,0 +170748660453,229,0 +170748660501,228,0 +170748660549,230,0 +170748660599,228,0 +170748660647,226,0 +170748660696,218,0 +170748660746,219,0 +170748660795,220,0 +170748660843,221,0 +170748660891,222,0 +170748660939,224,0 +170748660988,225,0 +170748661036,225,0 +170748661084,226,0 +170748661134,226,0 +170748661183,227,0 +170748661233,227,0 +170748661283,229,0 +170748661332,230,0 +170748661380,232,0 +170748661430,229,0 +170748661477,228,0 +170748661525,218,0 +170748661575,217,0 +170748661623,218,0 +170748661671,220,0 +170748661721,221,0 +170748661770,223,0 +170748661818,224,0 +170748661866,223,0 +170748661914,224,0 +170748661964,223,0 +170748662013,226,0 +170748662061,228,0 +170748662110,226,0 +170748662158,228,0 +170748662206,228,0 +170748662254,229,0 +170748662302,229,0 +170748662352,227,0 +170748662401,217,0 +170748662451,218,0 +170748662501,220,0 +170748662550,221,0 +170748662600,222,0 +170748662649,223,0 +170748662697,224,0 +170748662745,228,0 +170748662793,227,0 +170748662841,228,0 +170748662889,227,0 +170748662937,229,0 +170748662985,230,0 +170748663033,229,0 +170748663081,229,0 +170748663129,229,0 +170748663178,228,0 +170748663228,218,0 +170748663276,221,0 +170748663324,221,0 +170748663372,222,0 +170748663420,222,0 +170748663468,223,0 +170748663517,224,0 +170748663565,225,0 +170748663615,228,0 +170748663664,229,0 +170748663712,229,0 +170748663760,229,0 +170748663810,228,0 +170748663858,230,0 +170748663907,231,0 +170748663957,228,0 +170748664006,227,0 +170748664054,226,0 +170748664104,218,0 +170748664152,219,0 +170748664200,220,0 +170748664248,221,0 +170748664297,222,0 +170748664345,223,0 +170748664395,223,0 +170748664442,228,0 +170748664490,225,0 +170748664538,228,0 +170748664588,230,0 +170748664637,227,0 +170748664687,228,0 +170748664737,230,0 +170748664785,229,0 +170748664833,228,0 +170748664881,229,0 +170748664930,226,0 +170748664980,216,0 +170748665027,217,0 +170748665075,219,0 +170748665125,220,0 +170748665173,220,0 +170748665221,223,0 +170748665269,222,0 +170748665318,223,0 +170748665368,225,0 +170748665416,224,0 +170748665464,226,0 +170748665512,226,0 +170748665561,228,0 +170748665611,228,0 +170748665659,229,0 +170748665707,229,0 +170748665755,229,0 +170748665803,219,0 +170748665853,217,0 +170748665901,218,0 +170748665949,220,0 +170748665998,222,0 +170748666048,222,0 +170748666096,223,0 +170748666144,223,0 +170748666193,224,0 +170748666243,224,0 +170748666291,227,0 +170748666340,228,0 +170748666390,228,0 +170748666439,228,0 +170748666487,231,0 +170748666537,234,0 +170748666586,228,0 +170748666634,227,0 +170748666684,216,0 +170748666732,216,0 +170748666780,219,0 +170748666829,221,0 +170748666879,220,0 +170748666927,222,0 +170748666975,227,0 +170748667023,224,0 +170748667071,226,0 +170748667119,226,0 +170748667167,226,0 +170748667216,228,0 +170748667264,229,0 +170748667312,228,0 +170748667362,229,0 +170748667410,230,0 +170748667459,228,0 +170748667509,218,0 +170748667558,216,0 +170748667608,218,0 +170748667655,219,0 +170748667705,219,0 +170748667753,224,0 +170748667801,220,0 +170748667850,226,0 +170748667900,222,0 +170748667948,223,0 +170748667996,226,0 +170748668044,225,0 +170748668092,226,0 +170748668140,230,0 +170748668188,230,0 +170748668237,228,0 +170748668285,227,0 +170748668335,229,0 +170748668384,219,0 +170748668434,220,0 +170748668483,220,0 +170748668531,221,0 +170748668579,221,0 +170748668627,222,0 +170748668675,223,0 +170748668725,223,0 +170748668773,226,0 +170748668822,227,0 +170748668870,226,0 +170748668918,227,0 +170748668966,228,0 +170748669016,228,0 +170748669064,228,0 +170748669113,228,0 +170748669161,227,0 +170748669209,222,0 +170748669259,220,0 +170748669308,222,0 +170748669356,222,0 +170748669404,223,0 +170748669452,224,0 +170748669500,224,0 +170748669549,226,0 +170748669599,227,0 +170748669647,230,0 +170748669695,226,0 +170748669743,230,0 +170748669791,229,0 +170748669839,229,0 +170748669888,227,0 +170748669936,229,0 +170748669984,228,0 +170748670032,228,0 +170748670080,223,0 +170748670130,223,0 +170748670178,223,0 +170748670227,224,0 +170748670275,224,0 +170748670325,225,0 +170748670373,227,0 +170748670421,227,0 +170748670469,229,0 +170748670517,229,0 +170748670565,231,0 +170748670613,230,0 +170748670662,230,0 +170748670712,228,0 +170748670761,229,0 +170748670811,229,0 +170748670859,228,0 +170748670907,229,0 +170748670956,225,0 +170748671004,225,0 +170748671054,226,0 +170748671102,226,0 +170748671151,227,0 +170748671199,227,0 +170748671249,228,0 +170748671298,228,0 +170748671348,229,0 +170748671396,229,0 +170748671445,230,0 +170748671495,231,0 +170748671545,229,0 +170748671594,229,0 +170748671642,228,0 +170748671690,228,0 +170748671740,228,0 +170748671789,223,0 +170748671839,225,0 +170748671887,226,0 +170748671936,232,0 +170748671984,227,0 +170748672032,230,0 +170748672080,229,0 +170748672130,231,0 +170748672179,228,0 +170748672227,230,0 +170748672275,229,0 +170748672325,226,0 +170748672373,229,0 +170748672421,229,0 +170748672469,231,0 +170748672518,227,0 +170748672566,229,0 +170748672614,225,0 +170748672662,219,0 +170748672710,220,0 +170748672758,220,0 +170748672805,222,0 +170748672853,225,0 +170748672901,224,0 +170748672949,225,0 +170748672997,225,0 +170748673045,227,0 +170748673094,228,0 +170748673142,227,0 +170748673190,229,0 +170748673238,229,0 +170748673286,228,0 +170748673334,228,0 +170748673382,229,0 +170748673431,229,0 +170748673479,227,0 +170748673527,218,0 +170748673575,218,0 +170748673624,219,0 +170748673674,220,0 +170748673722,222,0 +170748673770,222,0 +170748673818,223,0 +170748673867,226,0 +170748673917,227,0 +170748673965,228,0 +170748674013,226,0 +170748674061,228,0 +170748674110,228,0 +170748674158,229,0 +170748674206,229,0 +170748674256,228,0 +170748674304,227,0 +170748674353,225,0 +170748674403,217,0 +170748674452,218,0 +170748674500,218,0 +170748674550,221,0 +170748674599,222,0 +170748674649,225,0 +170748674698,224,0 +170748674746,224,0 +170748674793,225,0 +170748674841,226,0 +170748674889,228,0 +170748674937,230,0 +170748674985,230,0 +170748675033,229,0 +170748675081,231,0 +170748675129,228,0 +170748675177,228,0 +170748675226,218,0 +170748675274,216,0 +170748675322,217,0 +170748675370,218,0 +170748675417,219,0 +170748675465,220,0 +170748675515,222,0 +170748675563,222,0 +170748675613,224,0 +170748675660,225,0 +170748675708,226,0 +170748675758,226,0 +170748675806,227,0 +170748675856,228,0 +170748675905,230,0 +170748675953,228,0 +170748676003,230,0 +170748676052,228,0 +170748676100,217,0 +170748676149,218,0 +170748676199,219,0 +170748676249,221,0 +170748676297,221,0 +170748676346,221,0 +170748676394,222,0 +170748676442,224,0 +170748676491,226,0 +170748676539,226,0 +170748676587,229,0 +170748676636,226,0 +170748676684,229,0 +170748676734,229,0 +170748676782,225,0 +170748676830,229,0 +170748676877,230,0 +170748676925,220,0 +170748676973,218,0 +170748677021,218,0 +170748677071,219,0 +170748677119,220,0 +170748677167,221,0 +170748677216,223,0 +170748677264,223,0 +170748677314,224,0 +170748677362,227,0 +170748677410,226,0 +170748677459,227,0 +170748677507,228,0 +170748677555,227,0 +170748677603,228,0 +170748677653,228,0 +170748677701,229,0 +170748677748,231,0 +170748677796,219,0 +170748677844,218,0 +170748677894,219,0 +170748677942,221,0 +170748677991,222,0 +170748678040,223,0 +170748678088,225,0 +170748678137,225,0 +170748678185,227,0 +170748678233,228,0 +170748678281,229,0 +170748678329,229,0 +170748678377,229,0 +170748678426,229,0 +170748678476,228,0 +170748678524,228,0 +170748678573,228,0 +170748678621,228,0 +170748678669,219,0 +170748678717,219,0 +170748678767,221,0 +170748678815,222,0 +170748678863,226,0 +170748678913,225,0 +170748678961,227,0 +170748679009,226,0 +170748679058,227,0 +170748679106,228,0 +170748679156,228,0 +170748679204,229,0 +170748679253,229,0 +170748679303,229,0 +170748679352,230,0 +170748679402,228,0 +170748679451,228,0 +170748679499,219,0 +170748679549,219,0 +170748679598,220,0 +170748679646,221,0 +170748679694,223,0 +170748679744,223,0 +170748679792,225,0 +170748679840,224,0 +170748679889,225,0 +170748679939,226,0 +170748679987,227,0 +170748680035,229,0 +170748680084,229,0 +170748680132,228,0 +170748680182,231,0 +170748680230,219,0 +170748680278,227,0 +170748680326,227,0 +170748680375,218,0 +170748680425,217,0 +170748680474,220,0 +170748680522,220,0 +170748680572,222,0 +170748680620,222,0 +170748680668,222,0 +170748680716,223,0 +170748680764,225,0 +170748680813,225,0 +170748680861,227,0 +170748680911,229,0 +170748680958,228,0 +170748681008,227,0 +170748681056,232,0 +170748681104,232,0 +170748681153,229,0 +170748681203,227,0 +170748681253,218,0 +170748681302,220,0 +170748681350,221,0 +170748681400,223,0 +170748681448,223,0 +170748681497,225,0 +170748681545,225,0 +170748681593,226,0 +170748681641,226,0 +170748681689,225,0 +170748681738,227,0 +170748681788,229,0 +170748681838,229,0 +170748681887,228,0 +170748681935,230,0 +170748681985,229,0 +170748682033,228,0 +170748682082,220,0 +170748682132,219,0 +170748682181,220,0 +170748682231,225,0 +170748682279,223,0 +170748682328,222,0 +170748682376,225,0 +170748682424,225,0 +170748682472,226,0 +170748682520,227,0 +170748682568,227,0 +170748682617,229,0 +170748682665,229,0 +170748682713,230,0 +170748682761,230,0 +170748682811,231,0 +170748682860,228,0 +170748682908,226,0 +170748682956,218,0 +170748683004,218,0 +170748683052,219,0 +170748683102,221,0 +170748683150,222,0 +170748683197,223,0 +170748683247,223,0 +170748683297,226,0 +170748683345,224,0 +170748683394,227,0 +170748683442,228,0 +170748683490,227,0 +170748683540,229,0 +170748683588,230,0 +170748683636,228,0 +170748683685,229,0 +170748683735,229,0 +170748683784,225,0 +170748683832,218,0 +170748683882,218,0 +170748683930,220,0 +170748683979,222,0 +170748684029,224,0 +170748684078,225,0 +170748684126,225,0 +170748684174,225,0 +170748684222,227,0 +170748684270,229,0 +170748684318,228,0 +170748684368,231,0 +170748684416,230,0 +170748684464,230,0 +170748684512,229,0 +170748684560,228,0 +170748684609,227,0 +170748684657,221,0 +170748684707,221,0 +170748684755,220,0 +170748684804,222,0 +170748684854,223,0 +170748684903,225,0 +170748684953,226,0 +170748685002,225,0 +170748685050,227,0 +170748685100,227,0 +170748685148,229,0 +170748685198,228,0 +170748685247,229,0 +170748685297,227,0 +170748685345,228,0 +170748685393,228,0 +170748685442,228,0 +170748685490,227,0 +170748685540,218,0 +170748685588,219,0 +170748685636,221,0 +170748685684,221,0 +170748685732,222,0 +170748685781,224,0 +170748685829,225,0 +170748685879,225,0 +170748685928,226,0 +170748685978,229,0 +170748686027,229,0 +170748686077,230,0 +170748686127,230,0 +170748686176,231,0 +170748686224,232,0 +170748686272,229,0 +170748686320,221,0 +170748686370,218,0 +170748686418,219,0 +170748686467,221,0 +170748686517,227,0 +170748686566,223,0 +170748686614,224,0 +170748686662,223,0 +170748686712,227,0 +170748686760,225,0 +170748686807,228,0 +170748686857,230,0 +170748686907,228,0 +170748686955,228,0 +170748687004,230,0 +170748687052,230,0 +170748687102,229,0 +170748687150,229,0 +170748687198,227,0 +170748687246,223,0 +170748687295,221,0 +170748687343,223,0 +170748687391,225,0 +170748687439,227,0 +170748687487,228,0 +170748687537,231,0 +170748687586,226,0 +170748687634,229,0 +170748687682,229,0 +170748687732,228,0 +170748687781,229,0 +170748687831,229,0 +170748687879,229,0 +170748687927,230,0 +170748687975,229,0 +170748688024,228,0 +170748688072,224,0 +170748688122,219,0 +170748688171,220,0 +170748688221,222,0 +170748688269,221,0 +170748688318,224,0 +170748688368,225,0 +170748688417,225,0 +170748688465,225,0 +170748688515,224,0 +170748688563,225,0 +170748688611,227,0 +170748688659,228,0 +170748688707,229,0 +170748688755,228,0 +170748688802,227,0 +170748688852,228,0 +170748688902,228,0 +170748688951,220,0 +170748689001,220,0 +170748689049,220,0 +170748689098,222,0 +170748689146,222,0 +170748689194,223,0 +170748689242,226,0 +170748689290,226,0 +170748689339,228,0 +170748689387,229,0 +170748689437,230,0 +170748689487,232,0 +170748689535,229,0 +170748689584,229,0 +170748689632,229,0 +170748689680,230,0 +170748689729,228,0 +170748689779,227,0 +170748689829,218,0 +170748689878,220,0 +170748689928,221,0 +170748689977,223,0 +170748690027,223,0 +170748690076,223,0 +170748690124,224,0 +170748690172,226,0 +170748690220,228,0 +170748690270,227,0 +170748690319,227,0 +170748690367,229,0 +170748690417,228,0 +170748690465,228,0 +170748690513,229,0 +170748690562,228,0 +170748690610,229,0 +170748690658,218,0 +170748690708,216,0 +170748690757,218,0 +170748690805,219,0 +170748690853,220,0 +170748690903,222,0 +170748690951,222,0 +170748691000,222,0 +170748691050,223,0 +170748691098,224,0 +170748691147,225,0 +170748691195,227,0 +170748691243,229,0 +170748691291,228,0 +170748691339,228,0 +170748691387,228,0 +170748691435,226,0 +170748691483,228,0 +170748691533,217,0 +170748691582,217,0 +170748691631,219,0 +170748691681,221,0 +170748691729,221,0 +170748691777,222,0 +170748691825,221,0 +170748691873,229,0 +170748691921,225,0 +170748691970,227,0 +170748692020,226,0 +170748692068,227,0 +170748692116,227,0 +170748692164,229,0 +170748692213,230,0 +170748692263,227,0 +170748692312,228,0 +170748692362,227,0 +170748692411,218,0 +170748692459,219,0 +170748692507,221,0 +170748692555,221,0 +170748692603,223,0 +170748692653,223,0 +170748692701,223,0 +170748692749,224,0 +170748692797,227,0 +170748692846,226,0 +170748692894,227,0 +170748692942,227,0 +170748692990,228,0 +170748693040,228,0 +170748693088,228,0 +170748693137,228,0 +170748693185,227,0 +170748693235,218,0 +170748693284,219,0 +170748693332,220,0 +170748693380,222,0 +170748693428,223,0 +170748693477,224,0 +170748693525,224,0 +170748693573,226,0 +170748693621,226,0 +170748693669,228,0 +170748693717,229,0 +170748693766,228,0 +170748693814,229,0 +170748693862,228,0 +170748693910,229,0 +170748693958,229,0 +170748694006,231,0 +170748694055,226,0 +170748694105,222,0 +170748694155,223,0 +170748694204,223,0 +170748694252,224,0 +170748694300,227,0 +170748694350,227,0 +170748694399,228,0 +170748694447,228,0 +170748694495,230,0 +170748694543,229,0 +170748694591,229,0 +170748694639,228,0 +170748694687,230,0 +170748694735,230,0 +170748694783,230,0 +170748694832,230,0 +170748694881,229,0 +170748694930,227,0 +170748694980,220,0 +170748695029,220,0 +170748695079,222,0 +170748695128,223,0 +170748695178,223,0 +170748695227,226,0 +170748695275,225,0 +170748695323,226,0 +170748695371,228,0 +170748695419,228,0 +170748695467,227,0 +170748695515,231,0 +170748695563,229,0 +170748695611,229,0 +170748695659,229,0 +170748695707,230,0 +170748695757,228,0 +170748695806,220,0 +170748695856,219,0 +170748695905,220,0 +170748695955,222,0 +170748696003,223,0 +170748696051,225,0 +170748696099,223,0 +170748696148,227,0 +170748696198,227,0 +170748696247,228,0 +170748696297,228,0 +170748696345,230,0 +170748696393,229,0 +170748696442,231,0 +170748696490,229,0 +170748696538,229,0 +170748696588,230,0 +170748696637,230,0 +170748696687,221,0 +170748696735,221,0 +170748696784,223,0 +170748696834,226,0 +170748696882,226,0 +170748696930,228,0 +170748696979,230,0 +170748697029,228,0 +170748697078,228,0 +170748697126,229,0 +170748697174,232,0 +170748697224,231,0 +170748697272,231,0 +170748697320,230,0 +170748697369,229,0 +170748697419,229,0 +170748697467,228,0 +170748697516,219,0 +170748697564,220,0 +170748697614,220,0 +170748697663,219,0 +170748697711,222,0 +170748697761,224,0 +170748697810,223,0 +170748697858,225,0 +170748697906,227,0 +170748697954,227,0 +170748698002,228,0 +170748698052,230,0 +170748698101,230,0 +170748698151,229,0 +170748698199,228,0 +170748698247,229,0 +170748698295,227,0 +170748698343,227,0 +170748698391,217,0 +170748698439,216,0 +170748698488,218,0 +170748698536,219,0 +170748698584,220,0 +170748698634,219,0 +170748698682,221,0 +170748698729,224,0 +170748698777,225,0 +170748698827,224,0 +170748698877,226,0 +170748698925,226,0 +170748698974,227,0 +170748699022,229,0 +170748699072,227,0 +170748699120,227,0 +170748699167,227,0 +170748699215,228,0 +170748699263,216,0 +170748699313,217,0 +170748699362,218,0 +170748699412,220,0 +170748699461,220,0 +170748699511,224,0 +170748699559,223,0 +170748699607,224,0 +170748699655,224,0 +170748699704,226,0 +170748699754,225,0 +170748699803,227,0 +170748699851,227,0 +170748699901,227,0 +170748699950,229,0 +170748700000,228,0 +170748700050,228,0 +170748700099,219,0 +170748700149,218,0 +170748700198,219,0 +170748700248,221,0 +170748700297,221,0 +170748700347,223,0 +170748700395,225,0 +170748700444,224,0 +170748700492,226,0 +170748700542,227,0 +170748700591,229,0 +170748700639,229,0 +170748700689,229,0 +170748700738,229,0 +170748700788,229,0 +170748700837,230,0 +170748700885,228,0 +170748700933,219,0 +170748700983,219,0 +170748701031,219,0 +170748701079,221,0 +170748701127,221,0 +170748701176,223,0 +170748701224,225,0 +170748701274,226,0 +170748701323,226,0 +170748701371,226,0 +170748701419,226,0 +170748701469,229,0 +170748701518,228,0 +170748701566,230,0 +170748701614,233,0 +170748701664,229,0 +170748701713,229,0 +170748701763,227,0 +170748701812,218,0 +170748701862,219,0 +170748701911,221,0 +170748701961,223,0 +170748702011,225,0 +170748702058,223,0 +170748702106,225,0 +170748702154,227,0 +170748702202,227,0 +170748702250,229,0 +170748702298,229,0 +170748702348,228,0 +170748702396,234,0 +170748702445,229,0 +170748702493,229,0 +170748702543,228,0 +170748702592,228,0 +170748702640,218,0 +170748702690,217,0 +170748702739,219,0 +170748702787,221,0 +170748702837,221,0 +170748702886,224,0 +170748702934,224,0 +170748702982,226,0 +170748703030,226,0 +170748703080,225,0 +170748703128,229,0 +170748703176,230,0 +170748703225,229,0 +170748703275,229,0 +170748703324,230,0 +170748703374,227,0 +170748703422,230,0 +170748703471,228,0 +170748703521,217,0 +170748703569,218,0 +170748703618,217,0 +170748703666,218,0 +170748703716,222,0 +170748703766,221,0 +170748703813,224,0 +170748703863,223,0 +170748703912,224,0 +170748703962,225,0 +170748704012,228,0 +170748704061,228,0 +170748704109,229,0 +170748704157,229,0 +170748704205,231,0 +170748704255,231,0 +170748704304,225,0 +170748704352,218,0 +170748704400,216,0 +170748704450,217,0 +170748704498,218,0 +170748704546,219,0 +170748704595,222,0 +170748704645,221,0 +170748704694,225,0 +170748704744,225,0 +170748704792,227,0 +170748704840,227,0 +170748704888,227,0 +170748704935,228,0 +170748704983,229,0 +170748705033,229,0 +170748705081,228,0 +170748705129,228,0 +170748705177,228,0 +170748705226,216,0 +170748705276,216,0 +170748705325,216,0 +170748705373,215,0 +170748705421,218,0 +170748705469,219,0 +170748705519,220,0 +170748705568,223,0 +170748705618,223,0 +170748705666,224,0 +170748705715,223,0 +170748705765,225,0 +170748705813,227,0 +170748705861,227,0 +170748705909,226,0 +170748705958,229,0 +170748706006,228,0 +170748706054,218,0 +170748706102,216,0 +170748706150,217,0 +170748706198,217,0 +170748706246,219,0 +170748706296,220,0 +170748706344,220,0 +170748706392,221,0 +170748706440,223,0 +170748706489,221,0 +170748706539,223,0 +170748706588,224,0 +170748706638,227,0 +170748706686,227,0 +170748706734,227,0 +170748706783,228,0 +170748706833,228,0 +170748706882,228,0 +170748706930,218,0 +170748706980,218,0 +170748707028,219,0 +170748707076,221,0 +170748707125,223,0 +170748707173,223,0 +170748707221,223,0 +170748707269,224,0 +170748707317,225,0 +170748707366,226,0 +170748707416,225,0 +170748707466,228,0 +170748707514,231,0 +170748707563,229,0 +170748707613,229,0 +170748707662,228,0 +170748707710,227,0 +170748707758,220,0 +170748707806,221,0 +170748707854,222,0 +170748707902,223,0 +170748707950,224,0 +170748708000,227,0 +170748708047,226,0 +170748708095,227,0 +170748708143,227,0 +170748708191,231,0 +170748708239,228,0 +170748708289,228,0 +170748708338,228,0 +170748708388,228,0 +170748708436,229,0 +170748708484,229,0 +170748708533,228,0 +170748708581,227,0 +170748708629,225,0 +170748708677,226,0 +170748708727,226,0 +170748708777,229,0 +170748708826,230,0 +170748708876,228,0 +170748708923,228,0 +170748708972,228,0 +170748709020,228,0 +170748709067,228,0 +170748709115,228,0 +170748709165,228,0 +170748709213,229,0 +170748709261,228,0 +170748709309,228,0 +170748709357,230,0 +170748709405,229,0 +170748709453,226,0 +170748709501,229,0 +170748709549,229,0 +170748709598,228,0 +170748709646,229,0 +170748709696,232,0 +170748709745,231,0 +170748709795,232,0 +170748709843,230,0 +170748709891,229,0 +170748709939,228,0 +170748709987,229,0 +170748710035,228,0 +170748710084,229,0 +170748710132,227,0 +170748710182,228,0 +170748710230,225,0 +170748710277,227,0 +170748710327,225,0 +170748710377,223,0 +170748710425,223,0 +170748710473,225,0 +170748710520,225,0 +170748710570,228,0 +170748710620,227,0 +170748710669,227,0 +170748710719,229,0 +170748710768,228,0 +170748710816,229,0 +170748710864,230,0 +170748710912,228,0 +170748710960,229,0 +170748711008,229,0 +170748711056,228,0 +170748711104,229,0 +170748711152,217,0 +170748711201,217,0 +170748711251,218,0 +170748711300,220,0 +170748711348,223,0 +170748711396,222,0 +170748711444,222,0 +170748711492,224,0 +170748711540,226,0 +170748711588,225,0 +170748711638,227,0 +170748711687,228,0 +170748711737,229,0 +170748711785,229,0 +170748711833,232,0 +170748711881,230,0 +170748711929,231,0 +170748711977,228,0 +170748712026,217,0 +170748712074,216,0 +170748712124,216,0 +170748712173,218,0 +170748712223,218,0 +170748712272,221,0 +170748712322,220,0 +170748712370,223,0 +170748712419,224,0 +170748712467,226,0 +170748712515,226,0 +170748712563,228,0 +170748712613,227,0 +170748712661,230,0 +170748712710,230,0 +170748712760,228,0 +170748712809,228,0 +170748712857,217,0 +170748712905,215,0 +170748712953,216,0 +170748713001,216,0 +170748713050,217,0 +170748713098,218,0 +170748713146,218,0 +170748713196,222,0 +170748713244,221,0 +170748713292,223,0 +170748713341,223,0 +170748713389,228,0 +170748713437,226,0 +170748713485,226,0 +170748713535,228,0 +170748713584,228,0 +170748713632,227,0 +170748713682,228,0 +170748713731,217,0 +170748713781,216,0 +170748713829,216,0 +170748713877,218,0 +170748713925,219,0 +170748713973,220,0 +170748714021,220,0 +170748714069,221,0 +170748714118,223,0 +170748714166,225,0 +170748714216,225,0 +170748714265,226,0 +170748714313,226,0 +170748714361,227,0 +170748714409,226,0 +170748714459,228,0 +170748714507,229,0 +170748714556,217,0 +170748714606,217,0 +170748714655,218,0 +170748714705,219,0 +170748714754,221,0 +170748714804,221,0 +170748714854,222,0 +170748714903,223,0 +170748714953,224,0 +170748715001,224,0 +170748715050,224,0 +170748715098,227,0 +170748715146,230,0 +170748715194,229,0 +170748715242,229,0 +170748715290,231,0 +170748715338,231,0 +170748715386,230,0 +170748715434,219,0 +170748715483,219,0 +170748715531,221,0 +170748715579,222,0 +170748715627,222,0 +170748715675,224,0 +170748715723,224,0 +170748715770,225,0 +170748715818,225,0 +170748715866,226,0 +170748715914,226,0 +170748715962,227,0 +170748716010,229,0 +170748716058,230,0 +170748716106,229,0 +170748716154,230,0 +170748716201,229,0 +170748716251,228,0 +170748716299,221,0 +170748716347,221,0 +170748716395,222,0 +170748716444,225,0 +170748716492,226,0 +170748716542,226,0 +170748716590,226,0 +170748716639,228,0 +170748716689,229,0 +170748716738,229,0 +170748716786,230,0 +170748716834,232,0 +170748716884,234,0 +170748716932,231,0 +170748716980,231,0 +170748717028,229,0 +170748717077,227,0 +170748717125,220,0 +170748717173,219,0 +170748717223,219,0 +170748717272,225,0 +170748717320,224,0 +170748717368,225,0 +170748717416,226,0 +170748717466,228,0 +170748717515,230,0 +170748717565,229,0 +170748717613,229,0 +170748717662,230,0 +170748717710,229,0 +170748717758,229,0 +170748717808,229,0 +170748717857,229,0 +170748717905,229,0 +170748717953,227,0 +170748718001,218,0 +170748718049,217,0 +170748718099,219,0 +170748718148,220,0 +170748718198,221,0 +170748718247,221,0 +170748718295,225,0 +170748718345,226,0 +170748718394,226,0 +170748718442,226,0 +170748718492,228,0 +170748718540,229,0 +170748718590,228,0 +170748718638,229,0 +170748718687,229,0 +170748718735,229,0 +170748718785,229,0 +170748718833,220,0 +170748718882,220,0 +170748718930,223,0 +170748718978,222,0 +170748719026,225,0 +170748719074,225,0 +170748719123,225,0 +170748719171,225,0 +170748719221,225,0 +170748719269,228,0 +170748719318,228,0 +170748719366,228,0 +170748719416,229,0 +170748719465,229,0 +170748719513,229,0 +170748719563,229,0 +170748719613,229,0 +170748719661,228,0 +170748719709,219,0 +170748719758,219,0 +170748719806,220,0 +170748719856,221,0 +170748719904,221,0 +170748719953,222,0 +170748720001,223,0 diff --git a/laser_value/0210-00.csv b/laser_value/0210-00.csv new file mode 100644 index 0000000..00207f6 --- /dev/null +++ b/laser_value/0210-00.csv @@ -0,0 +1,7419 @@ +timestamp,laser_value,event +170748720051,224,0 +170748720099,226,0 +170748720148,227,0 +170748720196,228,0 +170748720244,227,0 +170748720292,229,0 +170748720342,230,0 +170748720391,229,0 +170748720441,230,0 +170748720489,229,0 +170748720537,218,0 +170748720586,218,0 +170748720636,219,0 +170748720685,221,0 +170748720733,222,0 +170748720781,226,0 +170748720829,224,0 +170748720877,224,0 +170748720925,226,0 +170748720975,227,0 +170748721023,227,0 +170748721072,230,0 +170748721120,229,0 +170748721168,228,0 +170748721216,229,0 +170748721266,227,0 +170748721314,228,0 +170748721363,228,0 +170748721413,217,0 +170748721461,216,0 +170748721510,217,0 +170748721560,219,0 +170748721609,219,0 +170748721659,221,0 +170748721707,222,0 +170748721755,224,0 +170748721804,223,0 +170748721854,230,0 +170748721903,226,0 +170748721953,229,0 +170748722001,228,0 +170748722050,228,0 +170748722100,230,0 +170748722148,229,0 +170748722197,228,0 +170748722245,226,0 +170748722295,216,0 +170748722344,217,0 +170748722392,218,0 +170748722440,219,0 +170748722488,222,0 +170748722536,220,0 +170748722584,223,0 +170748722633,224,0 +170748722683,227,0 +170748722731,224,0 +170748722780,227,0 +170748722828,229,0 +170748722876,228,0 +170748722924,227,0 +170748722972,228,0 +170748723021,229,0 +170748723069,227,0 +170748723117,217,0 +170748723165,218,0 +170748723213,218,0 +170748723262,220,0 +170748723310,223,0 +170748723358,222,0 +170748723406,223,0 +170748723454,224,0 +170748723503,225,0 +170748723553,225,0 +170748723601,227,0 +170748723649,227,0 +170748723697,227,0 +170748723745,227,0 +170748723792,227,0 +170748723842,227,0 +170748723890,228,0 +170748723938,227,0 +170748723986,224,0 +170748724033,222,0 +170748724081,224,0 +170748724129,224,0 +170748724177,225,0 +170748724226,226,0 +170748724274,226,0 +170748724324,230,0 +170748724372,230,0 +170748724420,229,0 +170748724467,229,0 +170748724515,228,0 +170748724563,230,0 +170748724611,229,0 +170748724659,229,0 +170748724707,227,0 +170748724756,228,0 +170748724804,228,0 +170748724854,222,0 +170748724902,221,0 +170748724951,222,0 +170748725001,225,0 +170748725049,225,0 +170748725098,228,0 +170748725148,229,0 +170748725196,226,0 +170748725244,231,0 +170748725292,228,0 +170748725340,227,0 +170748725389,229,0 +170748725439,231,0 +170748725487,229,0 +170748725536,229,0 +170748725586,227,0 +170748725635,226,0 +170748725685,218,0 +170748725734,218,0 +170748725782,219,0 +170748725832,220,0 +170748725880,221,0 +170748725928,222,0 +170748725976,224,0 +170748726025,225,0 +170748726075,225,0 +170748726124,226,0 +170748726172,225,0 +170748726220,228,0 +170748726268,229,0 +170748726317,229,0 +170748726365,231,0 +170748726415,230,0 +170748726465,228,0 +170748726514,222,0 +170748726564,216,0 +170748726613,217,0 +170748726661,219,0 +170748726709,220,0 +170748726759,221,0 +170748726806,222,0 +170748726854,222,0 +170748726902,223,0 +170748726950,225,0 +170748726998,225,0 +170748727046,228,0 +170748727095,228,0 +170748727143,226,0 +170748727191,231,0 +170748727241,227,0 +170748727289,228,0 +170748727337,231,0 +170748727384,218,0 +170748727432,219,0 +170748727482,219,0 +170748727530,220,0 +170748727579,221,0 +170748727629,223,0 +170748727678,224,0 +170748727728,225,0 +170748727777,225,0 +170748727827,227,0 +170748727875,228,0 +170748727924,229,0 +170748727972,227,0 +170748728020,226,0 +170748728070,231,0 +170748728118,229,0 +170748728166,229,0 +170748728213,229,0 +170748728263,219,0 +170748728311,219,0 +170748728359,220,0 +170748728407,222,0 +170748728455,223,0 +170748728504,225,0 +170748728552,224,0 +170748728600,226,0 +170748728648,226,0 +170748728698,228,0 +170748728746,227,0 +170748728793,229,0 +170748728841,228,0 +170748728889,228,0 +170748728939,228,0 +170748728987,229,0 +170748729036,228,0 +170748729084,227,0 +170748729134,219,0 +170748729182,220,0 +170748729231,223,0 +170748729279,223,0 +170748729329,225,0 +170748729377,227,0 +170748729425,227,0 +170748729474,229,0 +170748729524,227,0 +170748729573,228,0 +170748729623,227,0 +170748729672,229,0 +170748729720,229,0 +170748729768,228,0 +170748729816,230,0 +170748729866,231,0 +170748729914,225,0 +170748729963,220,0 +170748730011,220,0 +170748730059,223,0 +170748730107,223,0 +170748730154,222,0 +170748730202,224,0 +170748730250,227,0 +170748730300,226,0 +170748730348,227,0 +170748730396,227,0 +170748730444,231,0 +170748730493,230,0 +170748730543,225,0 +170748730592,229,0 +170748730642,229,0 +170748730690,228,0 +170748730737,227,0 +170748730785,227,0 +170748730835,221,0 +170748730883,220,0 +170748730932,221,0 +170748730982,222,0 +170748731031,222,0 +170748731079,223,0 +170748731129,224,0 +170748731178,224,0 +170748731228,225,0 +170748731278,225,0 +170748731326,226,0 +170748731374,228,0 +170748731423,228,0 +170748731471,230,0 +170748731519,230,0 +170748731567,228,0 +170748731616,228,0 +170748731664,227,0 +170748731712,219,0 +170748731760,221,0 +170748731808,224,0 +170748731858,224,0 +170748731906,224,0 +170748731954,227,0 +170748732003,226,0 +170748732051,226,0 +170748732099,228,0 +170748732149,229,0 +170748732198,229,0 +170748732246,232,0 +170748732296,229,0 +170748732343,227,0 +170748732391,229,0 +170748732439,228,0 +170748732487,227,0 +170748732535,221,0 +170748732583,222,0 +170748732631,223,0 +170748732679,224,0 +170748732727,225,0 +170748732775,225,0 +170748732824,226,0 +170748732872,228,0 +170748732920,229,0 +170748732968,230,0 +170748733016,230,0 +170748733065,229,0 +170748733113,231,0 +170748733161,229,0 +170748733209,230,0 +170748733257,228,0 +170748733305,230,0 +170748733354,228,0 +170748733402,221,0 +170748733450,220,0 +170748733500,221,0 +170748733547,224,0 +170748733595,222,0 +170748733643,224,0 +170748733691,226,0 +170748733739,228,0 +170748733787,227,0 +170748733835,228,0 +170748733884,228,0 +170748733932,229,0 +170748733982,229,0 +170748734030,228,0 +170748734077,229,0 +170748734127,229,0 +170748734175,229,0 +170748734223,228,0 +170748734272,218,0 +170748734322,220,0 +170748734371,221,0 +170748734419,223,0 +170748734469,226,0 +170748734519,225,0 +170748734566,227,0 +170748734614,227,0 +170748734664,228,0 +170748734712,229,0 +170748734760,228,0 +170748734808,231,0 +170748734856,229,0 +170748734905,230,0 +170748734955,232,0 +170748735004,227,0 +170748735054,228,0 +170748735103,226,0 +170748735153,228,0 +170748735202,219,0 +170748735252,219,0 +170748735301,220,0 +170748735349,221,0 +170748735399,223,0 +170748735447,223,0 +170748735495,224,0 +170748735544,224,0 +170748735592,225,0 +170748735640,225,0 +170748735690,225,0 +170748735738,225,0 +170748735786,229,0 +170748735835,228,0 +170748735885,228,0 +170748735934,229,0 +170748735982,229,0 +170748736030,227,0 +170748736080,227,0 +170748736129,217,0 +170748736177,219,0 +170748736225,219,0 +170748736273,220,0 +170748736321,221,0 +170748736369,223,0 +170748736419,223,0 +170748736468,224,0 +170748736518,223,0 +170748736567,226,0 +170748736617,225,0 +170748736666,227,0 +170748736714,227,0 +170748736762,227,0 +170748736810,229,0 +170748736860,229,0 +170748736909,229,0 +170748736957,228,0 +170748737005,223,0 +170748737053,216,0 +170748737103,217,0 +170748737152,218,0 +170748737200,219,0 +170748737250,221,0 +170748737298,221,0 +170748737346,222,0 +170748737394,224,0 +170748737441,223,0 +170748737489,227,0 +170748737537,228,0 +170748737585,230,0 +170748737635,227,0 +170748737684,226,0 +170748737734,227,0 +170748737784,229,0 +170748737833,228,0 +170748737883,228,0 +170748737931,218,0 +170748737980,215,0 +170748738028,216,0 +170748738078,217,0 +170748738126,217,0 +170748738174,219,0 +170748738222,221,0 +170748738269,221,0 +170748738317,223,0 +170748738365,224,0 +170748738413,226,0 +170748738461,226,0 +170748738509,228,0 +170748738559,228,0 +170748738607,228,0 +170748738656,228,0 +170748738704,227,0 +170748738754,228,0 +170748738803,228,0 +170748738851,217,0 +170748738899,216,0 +170748738949,216,0 +170748738997,217,0 +170748739046,217,0 +170748739094,219,0 +170748739142,219,0 +170748739192,219,0 +170748739240,221,0 +170748739289,222,0 +170748739337,223,0 +170748739387,225,0 +170748739436,225,0 +170748739484,227,0 +170748739532,226,0 +170748739582,226,0 +170748739631,230,0 +170748739681,228,0 +170748739729,228,0 +170748739778,216,0 +170748739828,217,0 +170748739876,218,0 +170748739925,220,0 +170748739973,221,0 +170748740021,223,0 +170748740069,222,0 +170748740117,223,0 +170748740165,224,0 +170748740214,225,0 +170748740264,226,0 +170748740314,228,0 +170748740361,228,0 +170748740409,228,0 +170748740459,228,0 +170748740507,227,0 +170748740556,229,0 +170748740604,228,0 +170748740652,227,0 +170748740702,218,0 +170748740750,218,0 +170748740799,219,0 +170748740847,220,0 +170748740895,222,0 +170748740943,223,0 +170748740993,224,0 +170748741041,226,0 +170748741089,226,0 +170748741138,227,0 +170748741188,229,0 +170748741236,227,0 +170748741285,228,0 +170748741335,228,0 +170748741383,228,0 +170748741431,228,0 +170748741479,229,0 +170748741527,228,0 +170748741575,227,0 +170748741623,216,0 +170748741671,217,0 +170748741719,216,0 +170748741767,220,0 +170748741814,220,0 +170748741862,222,0 +170748741910,222,0 +170748741958,224,0 +170748742006,225,0 +170748742054,226,0 +170748742102,226,0 +170748742150,229,0 +170748742198,228,0 +170748742248,228,0 +170748742297,229,0 +170748742347,228,0 +170748742395,227,0 +170748742444,227,0 +170748742494,221,0 +170748742542,216,0 +170748742591,216,0 +170748742639,215,0 +170748742689,218,0 +170748742738,219,0 +170748742786,220,0 +170748742834,222,0 +170748742884,222,0 +170748742931,223,0 +170748742979,224,0 +170748743029,229,0 +170748743077,227,0 +170748743125,228,0 +170748743174,228,0 +170748743224,230,0 +170748743272,228,0 +170748743320,228,0 +170748743369,228,0 +170748743419,217,0 +170748743468,216,0 +170748743518,216,0 +170748743568,216,0 +170748743617,216,0 +170748743665,218,0 +170748743713,219,0 +170748743761,219,0 +170748743809,220,0 +170748743857,221,0 +170748743905,222,0 +170748743953,223,0 +170748744001,224,0 +170748744049,223,0 +170748744097,224,0 +170748744145,225,0 +170748744192,228,0 +170748744242,226,0 +170748744292,227,0 +170748744340,218,0 +170748744389,216,0 +170748744439,217,0 +170748744488,219,0 +170748744536,220,0 +170748744584,220,0 +170748744632,221,0 +170748744680,222,0 +170748744728,223,0 +170748744778,225,0 +170748744825,225,0 +170748744873,227,0 +170748744921,225,0 +170748744971,227,0 +170748745019,228,0 +170748745067,227,0 +170748745115,228,0 +170748745163,228,0 +170748745212,228,0 +170748745262,217,0 +170748745311,218,0 +170748745359,218,0 +170748745409,220,0 +170748745459,221,0 +170748745508,221,0 +170748745558,222,0 +170748745606,224,0 +170748745654,226,0 +170748745703,226,0 +170748745753,228,0 +170748745801,227,0 +170748745850,229,0 +170748745900,228,0 +170748745949,229,0 +170748745999,229,0 +170748746049,227,0 +170748746096,228,0 +170748746144,228,0 +170748746192,219,0 +170748746240,220,0 +170748746290,225,0 +170748746339,222,0 +170748746389,224,0 +170748746438,223,0 +170748746486,223,0 +170748746534,224,0 +170748746584,226,0 +170748746632,228,0 +170748746680,228,0 +170748746728,229,0 +170748746776,229,0 +170748746825,228,0 +170748746873,231,0 +170748746923,228,0 +170748746971,232,0 +170748747020,228,0 +170748747068,227,0 +170748747116,218,0 +170748747166,219,0 +170748747214,220,0 +170748747263,221,0 +170748747311,221,0 +170748747361,223,0 +170748747410,225,0 +170748747460,226,0 +170748747508,228,0 +170748747557,228,0 +170748747605,230,0 +170748747653,227,0 +170748747703,230,0 +170748747751,228,0 +170748747799,228,0 +170748747847,227,0 +170748747895,230,0 +170748747943,228,0 +170748747992,223,0 +170748748040,218,0 +170748748090,220,0 +170748748138,221,0 +170748748186,222,0 +170748748234,221,0 +170748748282,223,0 +170748748331,223,0 +170748748379,224,0 +170748748427,224,0 +170748748475,225,0 +170748748523,226,0 +170748748571,226,0 +170748748619,227,0 +170748748667,227,0 +170748748714,225,0 +170748748762,226,0 +170748748810,227,0 +170748748858,225,0 +170748748908,218,0 +170748748957,217,0 +170748749005,219,0 +170748749053,220,0 +170748749101,220,0 +170748749149,221,0 +170748749197,222,0 +170748749246,223,0 +170748749294,224,0 +170748749343,225,0 +170748749393,227,0 +170748749441,228,0 +170748749489,227,0 +170748749538,227,0 +170748749588,229,0 +170748749637,228,0 +170748749687,231,0 +170748749735,228,0 +170748749783,228,0 +170748749831,219,0 +170748749879,218,0 +170748749927,217,0 +170748749975,220,0 +170748750023,222,0 +170748750072,223,0 +170748750120,223,0 +170748750170,224,0 +170748750218,224,0 +170748750266,226,0 +170748750315,228,0 +170748750363,229,0 +170748750413,230,0 +170748750461,230,0 +170748750509,234,0 +170748750558,230,0 +170748750608,228,0 +170748750656,230,0 +170748750704,228,0 +170748750752,220,0 +170748750800,220,0 +170748750849,222,0 +170748750899,223,0 +170748750948,222,0 +170748750998,224,0 +170748751046,226,0 +170748751095,226,0 +170748751145,228,0 +170748751193,230,0 +170748751242,229,0 +170748751292,231,0 +170748751340,230,0 +170748751388,229,0 +170748751436,229,0 +170748751485,228,0 +170748751535,228,0 +170748751583,229,0 +170748751632,227,0 +170748751682,219,0 +170748751731,220,0 +170748751781,221,0 +170748751831,222,0 +170748751878,224,0 +170748751928,225,0 +170748751976,225,0 +170748752024,226,0 +170748752073,226,0 +170748752123,228,0 +170748752173,228,0 +170748752222,233,0 +170748752270,229,0 +170748752318,230,0 +170748752366,230,0 +170748752416,230,0 +170748752465,229,0 +170748752513,228,0 +170748752561,221,0 +170748752609,216,0 +170748752657,217,0 +170748752707,217,0 +170748752756,219,0 +170748752806,221,0 +170748752855,220,0 +170748752905,222,0 +170748752953,224,0 +170748753001,223,0 +170748753049,226,0 +170748753097,227,0 +170748753146,227,0 +170748753196,230,0 +170748753243,234,0 +170748753293,231,0 +170748753341,232,0 +170748753391,229,0 +170748753439,228,0 +170748753488,218,0 +170748753538,216,0 +170748753586,216,0 +170748753633,217,0 +170748753683,218,0 +170748753733,219,0 +170748753781,220,0 +170748753830,220,0 +170748753878,221,0 +170748753926,222,0 +170748753976,225,0 +170748754025,225,0 +170748754075,226,0 +170748754124,230,0 +170748754172,232,0 +170748754220,227,0 +170748754268,230,0 +170748754318,230,0 +170748754366,231,0 +170748754414,218,0 +170748754461,216,0 +170748754511,216,0 +170748754559,216,0 +170748754607,217,0 +170748754655,218,0 +170748754705,219,0 +170748754753,219,0 +170748754800,221,0 +170748754850,221,0 +170748754898,223,0 +170748754947,224,0 +170748754997,224,0 +170748755045,223,0 +170748755093,227,0 +170748755142,226,0 +170748755192,226,0 +170748755240,227,0 +170748755289,227,0 +170748755337,217,0 +170748755387,215,0 +170748755435,216,0 +170748755484,216,0 +170748755532,216,0 +170748755580,217,0 +170748755630,218,0 +170748755678,219,0 +170748755726,219,0 +170748755774,220,0 +170748755823,221,0 +170748755871,222,0 +170748755921,224,0 +170748755969,224,0 +170748756017,226,0 +170748756065,227,0 +170748756113,225,0 +170748756162,228,0 +170748756212,228,0 +170748756261,216,0 +170748756309,215,0 +170748756359,216,0 +170748756409,216,0 +170748756458,217,0 +170748756506,217,0 +170748756554,218,0 +170748756604,219,0 +170748756652,220,0 +170748756699,221,0 +170748756747,222,0 +170748756795,224,0 +170748756843,225,0 +170748756893,228,0 +170748756941,225,0 +170748756989,225,0 +170748757038,226,0 +170748757086,228,0 +170748757136,220,0 +170748757184,216,0 +170748757233,216,0 +170748757283,215,0 +170748757331,218,0 +170748757379,218,0 +170748757428,220,0 +170748757476,220,0 +170748757524,223,0 +170748757572,225,0 +170748757620,228,0 +170748757669,228,0 +170748757717,227,0 +170748757765,227,0 +170748757813,229,0 +170748757861,227,0 +170748757911,228,0 +170748757960,228,0 +170748758010,227,0 +170748758059,217,0 +170748758109,215,0 +170748758158,216,0 +170748758206,216,0 +170748758256,217,0 +170748758305,218,0 +170748758355,219,0 +170748758405,220,0 +170748758453,220,0 +170748758500,222,0 +170748758549,222,0 +170748758597,223,0 +170748758646,224,0 +170748758694,225,0 +170748758743,227,0 +170748758791,226,0 +170748758839,226,0 +170748758887,226,0 +170748758935,227,0 +170748758983,218,0 +170748759032,216,0 +170748759081,217,0 +170748759128,218,0 +170748759176,218,0 +170748759224,221,0 +170748759272,221,0 +170748759322,223,0 +170748759370,223,0 +170748759419,223,0 +170748759468,225,0 +170748759516,224,0 +170748759566,228,0 +170748759614,229,0 +170748759662,228,0 +170748759710,228,0 +170748759758,227,0 +170748759805,228,0 +170748759853,226,0 +170748759901,218,0 +170748759949,217,0 +170748759997,218,0 +170748760045,219,0 +170748760093,220,0 +170748760141,220,0 +170748760190,221,0 +170748760238,222,0 +170748760286,224,0 +170748760334,224,0 +170748760383,226,0 +170748760431,225,0 +170748760479,227,0 +170748760527,226,0 +170748760575,230,0 +170748760623,229,0 +170748760671,229,0 +170748760719,228,0 +170748760768,229,0 +170748760816,219,0 +170748760866,217,0 +170748760913,217,0 +170748760961,218,0 +170748761009,220,0 +170748761057,221,0 +170748761106,223,0 +170748761154,222,0 +170748761202,223,0 +170748761250,225,0 +170748761298,225,0 +170748761347,226,0 +170748761395,228,0 +170748761445,227,0 +170748761495,228,0 +170748761543,228,0 +170748761591,229,0 +170748761639,228,0 +170748761688,228,0 +170748761736,218,0 +170748761784,218,0 +170748761834,219,0 +170748761883,220,0 +170748761931,221,0 +170748761979,223,0 +170748762027,222,0 +170748762075,222,0 +170748762124,224,0 +170748762172,225,0 +170748762220,227,0 +170748762268,227,0 +170748762318,228,0 +170748762366,227,0 +170748762414,227,0 +170748762463,226,0 +170748762513,228,0 +170748762561,228,0 +170748762609,227,0 +170748762658,221,0 +170748762706,220,0 +170748762755,221,0 +170748762803,223,0 +170748762851,223,0 +170748762901,224,0 +170748762949,226,0 +170748762998,226,0 +170748763046,225,0 +170748763094,226,0 +170748763142,227,0 +170748763190,227,0 +170748763238,228,0 +170748763286,230,0 +170748763334,229,0 +170748763383,228,0 +170748763431,228,0 +170748763479,227,0 +170748763527,226,0 +170748763576,219,0 +170748763624,222,0 +170748763672,221,0 +170748763722,222,0 +170748763769,223,0 +170748763817,224,0 +170748763865,224,0 +170748763913,226,0 +170748763963,225,0 +170748764010,227,0 +170748764060,228,0 +170748764110,227,0 +170748764159,229,0 +170748764209,232,0 +170748764257,228,0 +170748764305,227,0 +170748764354,227,0 +170748764404,227,0 +170748764452,228,0 +170748764500,216,0 +170748764549,216,0 +170748764599,218,0 +170748764648,220,0 +170748764698,220,0 +170748764746,220,0 +170748764794,223,0 +170748764843,223,0 +170748764893,223,0 +170748764942,223,0 +170748764992,227,0 +170748765040,224,0 +170748765090,227,0 +170748765137,227,0 +170748765187,228,0 +170748765235,228,0 +170748765283,227,0 +170748765331,228,0 +170748765381,220,0 +170748765430,216,0 +170748765478,216,0 +170748765526,218,0 +170748765574,217,0 +170748765622,219,0 +170748765672,220,0 +170748765721,221,0 +170748765771,222,0 +170748765820,223,0 +170748765870,224,0 +170748765919,226,0 +170748765967,227,0 +170748766017,228,0 +170748766065,228,0 +170748766113,231,0 +170748766162,228,0 +170748766212,229,0 +170748766261,228,0 +170748766309,218,0 +170748766359,215,0 +170748766408,216,0 +170748766456,216,0 +170748766504,216,0 +170748766552,217,0 +170748766600,218,0 +170748766648,218,0 +170748766695,219,0 +170748766743,221,0 +170748766791,222,0 +170748766839,224,0 +170748766889,224,0 +170748766937,226,0 +170748766985,227,0 +170748767033,227,0 +170748767081,227,0 +170748767129,226,0 +170748767177,230,0 +170748767226,217,0 +170748767274,215,0 +170748767324,215,0 +170748767372,215,0 +170748767421,216,0 +170748767469,216,0 +170748767519,216,0 +170748767567,217,0 +170748767614,217,0 +170748767662,217,0 +170748767712,219,0 +170748767760,221,0 +170748767810,223,0 +170748767859,224,0 +170748767909,226,0 +170748767957,226,0 +170748768005,226,0 +170748768053,228,0 +170748768102,229,0 +170748768152,217,0 +170748768201,216,0 +170748768249,216,0 +170748768297,216,0 +170748768345,216,0 +170748768394,217,0 +170748768444,217,0 +170748768493,217,0 +170748768541,218,0 +170748768589,219,0 +170748768637,220,0 +170748768685,222,0 +170748768733,225,0 +170748768781,227,0 +170748768830,225,0 +170748768878,225,0 +170748768926,227,0 +170748768974,228,0 +170748769024,227,0 +170748769073,217,0 +170748769123,216,0 +170748769171,217,0 +170748769220,217,0 +170748769268,217,0 +170748769318,216,0 +170748769367,219,0 +170748769417,219,0 +170748769465,220,0 +170748769513,223,0 +170748769562,224,0 +170748769610,223,0 +170748769658,225,0 +170748769706,227,0 +170748769754,226,0 +170748769802,227,0 +170748769851,228,0 +170748769901,227,0 +170748769951,226,0 +170748770000,216,0 +170748770048,215,0 +170748770098,216,0 +170748770146,216,0 +170748770195,217,0 +170748770243,217,0 +170748770291,218,0 +170748770339,219,0 +170748770389,220,0 +170748770436,221,0 +170748770484,223,0 +170748770534,227,0 +170748770582,226,0 +170748770630,225,0 +170748770679,226,0 +170748770729,228,0 +170748770779,228,0 +170748770827,227,0 +170748770876,217,0 +170748770926,215,0 +170748770974,216,0 +170748771022,216,0 +170748771071,216,0 +170748771121,216,0 +170748771170,216,0 +170748771218,217,0 +170748771266,217,0 +170748771314,218,0 +170748771362,221,0 +170748771411,222,0 +170748771461,224,0 +170748771511,224,0 +170748771560,226,0 +170748771608,225,0 +170748771656,226,0 +170748771706,226,0 +170748771755,227,0 +170748771803,218,0 +170748771853,215,0 +170748771902,217,0 +170748771950,218,0 +170748771998,219,0 +170748772046,220,0 +170748772094,222,0 +170748772142,221,0 +170748772192,222,0 +170748772240,224,0 +170748772289,224,0 +170748772339,225,0 +170748772387,228,0 +170748772434,228,0 +170748772482,228,0 +170748772530,230,0 +170748772578,229,0 +170748772628,227,0 +170748772676,230,0 +170748772723,220,0 +170748772771,218,0 +170748772819,219,0 +170748772867,221,0 +170748772915,223,0 +170748772965,221,0 +170748773012,223,0 +170748773060,223,0 +170748773108,225,0 +170748773156,226,0 +170748773204,226,0 +170748773252,227,0 +170748773301,228,0 +170748773351,226,0 +170748773400,230,0 +170748773448,229,0 +170748773498,228,0 +170748773546,228,0 +170748773594,227,0 +170748773643,219,0 +170748773691,220,0 +170748773739,220,0 +170748773787,222,0 +170748773835,223,0 +170748773883,223,0 +170748773930,224,0 +170748773978,226,0 +170748774026,230,0 +170748774074,228,0 +170748774122,229,0 +170748774170,229,0 +170748774218,230,0 +170748774266,229,0 +170748774314,230,0 +170748774362,227,0 +170748774410,230,0 +170748774457,229,0 +170748774505,227,0 +170748774553,222,0 +170748774603,222,0 +170748774652,223,0 +170748774700,223,0 +170748774750,225,0 +170748774799,225,0 +170748774847,228,0 +170748774895,227,0 +170748774943,229,0 +170748774991,228,0 +170748775039,228,0 +170748775086,230,0 +170748775136,230,0 +170748775184,229,0 +170748775232,228,0 +170748775280,230,0 +170748775329,228,0 +170748775377,228,0 +170748775425,227,0 +170748775474,220,0 +170748775522,219,0 +170748775570,220,0 +170748775618,223,0 +170748775668,223,0 +170748775717,224,0 +170748775765,226,0 +170748775813,225,0 +170748775861,226,0 +170748775909,227,0 +170748775959,228,0 +170748776009,227,0 +170748776058,230,0 +170748776108,228,0 +170748776156,230,0 +170748776204,229,0 +170748776253,229,0 +170748776301,231,0 +170748776349,227,0 +170748776397,218,0 +170748776444,218,0 +170748776492,220,0 +170748776540,221,0 +170748776588,221,0 +170748776636,221,0 +170748776684,223,0 +170748776732,223,0 +170748776780,225,0 +170748776828,226,0 +170748776876,230,0 +170748776924,227,0 +170748776973,227,0 +170748777021,227,0 +170748777069,228,0 +170748777117,229,0 +170748777165,229,0 +170748777213,230,0 +170748777261,228,0 +170748777309,217,0 +170748777358,216,0 +170748777406,218,0 +170748777454,219,0 +170748777503,220,0 +170748777553,221,0 +170748777602,222,0 +170748777650,223,0 +170748777698,224,0 +170748777746,226,0 +170748777794,227,0 +170748777844,229,0 +170748777892,232,0 +170748777941,229,0 +170748777989,229,0 +170748778037,229,0 +170748778085,231,0 +170748778133,228,0 +170748778183,228,0 +170748778232,217,0 +170748778280,216,0 +170748778330,217,0 +170748778379,219,0 +170748778427,220,0 +170748778477,220,0 +170748778526,222,0 +170748778574,221,0 +170748778624,223,0 +170748778673,224,0 +170748778721,225,0 +170748778771,224,0 +170748778820,227,0 +170748778868,227,0 +170748778916,227,0 +170748778964,224,0 +170748779014,230,0 +170748779063,229,0 +170748779111,227,0 +170748779159,216,0 +170748779207,216,0 +170748779255,216,0 +170748779303,217,0 +170748779351,218,0 +170748779398,219,0 +170748779448,220,0 +170748779496,221,0 +170748779544,222,0 +170748779592,223,0 +170748779640,226,0 +170748779687,225,0 +170748779737,226,0 +170748779785,228,0 +170748779833,228,0 +170748779881,232,0 +170748779929,229,0 +170748779976,228,0 +170748780024,227,0 +170748780074,216,0 +170748780124,216,0 +170748780171,216,0 +170748780219,216,0 +170748780269,218,0 +170748780317,218,0 +170748780365,220,0 +170748780413,219,0 +170748780460,222,0 +170748780508,226,0 +170748780556,226,0 +170748780604,229,0 +170748780652,227,0 +170748780700,227,0 +170748780748,228,0 +170748780796,228,0 +170748780844,229,0 +170748780892,228,0 +170748780941,227,0 +170748780989,217,0 +170748781039,216,0 +170748781087,216,0 +170748781135,216,0 +170748781183,216,0 +170748781232,216,0 +170748781280,218,0 +170748781328,218,0 +170748781376,220,0 +170748781426,221,0 +170748781474,220,0 +170748781522,221,0 +170748781570,223,0 +170748781618,227,0 +170748781667,225,0 +170748781715,225,0 +170748781765,226,0 +170748781814,227,0 +170748781862,227,0 +170748781910,216,0 +170748781960,215,0 +170748782008,215,0 +170748782057,216,0 +170748782105,216,0 +170748782155,216,0 +170748782203,216,0 +170748782252,217,0 +170748782300,217,0 +170748782348,217,0 +170748782398,218,0 +170748782446,218,0 +170748782494,219,0 +170748782541,218,0 +170748782591,219,0 +170748782639,220,0 +170748782687,220,0 +170748782736,223,0 +170748782784,223,0 +170748782832,223,0 +170748782880,227,0 +170748782928,227,0 +170748782976,226,0 +170748783024,227,0 +170748783072,227,0 +170748783119,229,0 +170748783169,227,0 +170748783217,226,0 +170748783265,218,0 +170748783314,216,0 +170748783362,217,0 +170748783412,218,0 +170748783460,218,0 +170748783508,219,0 +170748783555,221,0 +170748783603,221,0 +170748783651,222,0 +170748783699,223,0 +170748783749,224,0 +170748783798,226,0 +170748783848,225,0 +170748783896,224,0 +170748783945,226,0 +170748783993,227,0 +170748784041,230,0 +170748784089,228,0 +170748784137,228,0 +170748784185,217,0 +170748784233,217,0 +170748784281,217,0 +170748784329,218,0 +170748784377,220,0 +170748784426,221,0 +170748784474,223,0 +170748784522,223,0 +170748784570,224,0 +170748784618,224,0 +170748784667,228,0 +170748784715,226,0 +170748784763,227,0 +170748784811,228,0 +170748784859,227,0 +170748784908,229,0 +170748784956,228,0 +170748785004,228,0 +170748785052,227,0 +170748785100,227,0 +170748785148,221,0 +170748785197,221,0 +170748785245,222,0 +170748785295,224,0 +170748785344,224,0 +170748785392,226,0 +170748785440,226,0 +170748785489,226,0 +170748785537,226,0 +170748785585,227,0 +170748785634,227,0 +170748785682,228,0 +170748785732,227,0 +170748785780,228,0 +170748785828,227,0 +170748785877,229,0 +170748785925,227,0 +170748785973,228,0 +170748786021,227,0 +170748786070,219,0 +170748786118,219,0 +170748786168,221,0 +170748786216,222,0 +170748786265,222,0 +170748786313,223,0 +170748786361,225,0 +170748786409,225,0 +170748786459,227,0 +170748786507,227,0 +170748786555,229,0 +170748786604,227,0 +170748786654,226,0 +170748786703,228,0 +170748786751,229,0 +170748786799,229,0 +170748786849,227,0 +170748786898,229,0 +170748786948,226,0 +170748786997,215,0 +170748787047,215,0 +170748787096,218,0 +170748787146,216,0 +170748787194,216,0 +170748787242,216,0 +170748787292,216,0 +170748787341,217,0 +170748787389,217,0 +170748787439,219,0 +170748787488,220,0 +170748787538,221,0 +170748787586,223,0 +170748787634,223,0 +170748787681,223,0 +170748787729,223,0 +170748787777,224,0 +170748787825,227,0 +170748787873,228,0 +170748787923,217,0 +170748787972,216,0 +170748788020,216,0 +170748788070,218,0 +170748788119,219,0 +170748788167,220,0 +170748788215,220,0 +170748788263,222,0 +170748788313,223,0 +170748788362,222,0 +170748788412,219,0 +170748788460,226,0 +170748788507,228,0 +170748788555,227,0 +170748788605,227,0 +170748788653,227,0 +170748788701,230,0 +170748788748,227,0 +170748788796,227,0 +170748788844,218,0 +170748788892,218,0 +170748788940,218,0 +170748788988,220,0 +170748789036,221,0 +170748789084,221,0 +170748789131,222,0 +170748789181,222,0 +170748789229,223,0 +170748789277,224,0 +170748789326,226,0 +170748789374,227,0 +170748789424,228,0 +170748789473,228,0 +170748789521,229,0 +170748789569,229,0 +170748789617,229,0 +170748789665,229,0 +170748789715,229,0 +170748789764,217,0 +170748789812,217,0 +170748789862,219,0 +170748789910,219,0 +170748789958,219,0 +170748790007,222,0 +170748790055,222,0 +170748790103,225,0 +170748790151,225,0 +170748790199,228,0 +170748790247,227,0 +170748790295,227,0 +170748790343,230,0 +170748790392,230,0 +170748790440,228,0 +170748790488,232,0 +170748790536,229,0 +170748790584,228,0 +170748790634,228,0 +170748790683,217,0 +170748790731,216,0 +170748790779,218,0 +170748790827,219,0 +170748790876,220,0 +170748790924,221,0 +170748790972,221,0 +170748791020,223,0 +170748791070,222,0 +170748791119,223,0 +170748791169,222,0 +170748791217,226,0 +170748791265,227,0 +170748791313,227,0 +170748791361,229,0 +170748791409,228,0 +170748791457,229,0 +170748791505,228,0 +170748791554,227,0 +170748791602,218,0 +170748791652,215,0 +170748791700,216,0 +170748791748,215,0 +170748791796,218,0 +170748791844,219,0 +170748791893,220,0 +170748791941,221,0 +170748791989,222,0 +170748792037,223,0 +170748792087,225,0 +170748792136,224,0 +170748792184,226,0 +170748792233,227,0 +170748792281,229,0 +170748792331,228,0 +170748792379,227,0 +170748792427,228,0 +170748792475,228,0 +170748792524,220,0 +170748792572,216,0 +170748792622,215,0 +170748792671,216,0 +170748792719,216,0 +170748792769,217,0 +170748792817,218,0 +170748792865,219,0 +170748792914,220,0 +170748792964,221,0 +170748793012,222,0 +170748793060,224,0 +170748793108,223,0 +170748793156,227,0 +170748793203,227,0 +170748793253,230,0 +170748793303,225,0 +170748793352,230,0 +170748793400,229,0 +170748793450,222,0 +170748793499,216,0 +170748793549,216,0 +170748793598,216,0 +170748793648,217,0 +170748793696,215,0 +170748793745,217,0 +170748793795,219,0 +170748793843,219,0 +170748793892,221,0 +170748793940,223,0 +170748793988,225,0 +170748794036,228,0 +170748794086,228,0 +170748794135,227,0 +170748794185,228,0 +170748794233,228,0 +170748794281,228,0 +170748794329,227,0 +170748794378,223,0 +170748794426,216,0 +170748794474,216,0 +170748794523,216,0 +170748794571,216,0 +170748794621,217,0 +170748794669,217,0 +170748794717,217,0 +170748794765,219,0 +170748794814,219,0 +170748794862,219,0 +170748794910,221,0 +170748794958,223,0 +170748795006,224,0 +170748795055,225,0 +170748795103,227,0 +170748795151,227,0 +170748795199,228,0 +170748795249,227,0 +170748795297,229,0 +170748795345,217,0 +170748795393,216,0 +170748795442,216,0 +170748795492,217,0 +170748795540,217,0 +170748795589,218,0 +170748795639,218,0 +170748795687,219,0 +170748795735,221,0 +170748795784,222,0 +170748795834,223,0 +170748795883,223,0 +170748795933,225,0 +170748795981,226,0 +170748796030,227,0 +170748796080,227,0 +170748796128,227,0 +170748796176,228,0 +170748796225,227,0 +170748796275,216,0 +170748796323,216,0 +170748796371,217,0 +170748796420,217,0 +170748796468,218,0 +170748796518,219,0 +170748796566,220,0 +170748796615,220,0 +170748796663,221,0 +170748796711,222,0 +170748796761,224,0 +170748796809,225,0 +170748796858,226,0 +170748796906,227,0 +170748796954,228,0 +170748797002,230,0 +170748797050,227,0 +170748797098,225,0 +170748797146,226,0 +170748797194,216,0 +170748797244,216,0 +170748797292,216,0 +170748797340,218,0 +170748797388,218,0 +170748797436,220,0 +170748797485,220,0 +170748797533,221,0 +170748797583,220,0 +170748797631,225,0 +170748797680,225,0 +170748797728,224,0 +170748797776,226,0 +170748797824,226,0 +170748797874,230,0 +170748797921,229,0 +170748797971,229,0 +170748798019,232,0 +170748798068,229,0 +170748798116,217,0 +170748798166,216,0 +170748798215,216,0 +170748798263,218,0 +170748798313,218,0 +170748798361,219,0 +170748798409,220,0 +170748798457,221,0 +170748798505,221,0 +170748798554,224,0 +170748798602,227,0 +170748798650,227,0 +170748798699,228,0 +170748798747,228,0 +170748798797,229,0 +170748798846,230,0 +170748798894,229,0 +170748798942,229,0 +170748798990,229,0 +170748799040,218,0 +170748799089,216,0 +170748799137,215,0 +170748799185,218,0 +170748799234,218,0 +170748799282,222,0 +170748799332,221,0 +170748799380,223,0 +170748799428,223,0 +170748799477,224,0 +170748799525,225,0 +170748799575,228,0 +170748799623,226,0 +170748799672,221,0 +170748799720,227,0 +170748799770,227,0 +170748799817,228,0 +170748799865,229,0 +170748799913,227,0 +170748799963,218,0 +170748800012,216,0 +170748800060,216,0 +170748800110,216,0 +170748800158,217,0 +170748800206,219,0 +170748800254,219,0 +170748800302,221,0 +170748800350,224,0 +170748800397,222,0 +170748800447,228,0 +170748800495,226,0 +170748800543,226,0 +170748800592,226,0 +170748800640,227,0 +170748800690,229,0 +170748800739,228,0 +170748800787,228,0 +170748800835,228,0 +170748800883,226,0 +170748800931,216,0 +170748800981,216,0 +170748801030,217,0 +170748801080,218,0 +170748801128,218,0 +170748801176,220,0 +170748801224,220,0 +170748801273,222,0 +170748801323,222,0 +170748801371,223,0 +170748801420,226,0 +170748801468,225,0 +170748801516,224,0 +170748801566,228,0 +170748801615,225,0 +170748801663,229,0 +170748801713,228,0 +170748801762,222,0 +170748801812,222,0 +170748801861,216,0 +170748801909,216,0 +170748801959,218,0 +170748802007,218,0 +170748802056,221,0 +170748802104,219,0 +170748802154,221,0 +170748802203,222,0 +170748802251,223,0 +170748802299,225,0 +170748802347,225,0 +170748802395,225,0 +170748802443,226,0 +170748802493,227,0 +170748802542,228,0 +170748802590,227,0 +170748802640,227,0 +170748802688,228,0 +170748802736,224,0 +170748802783,216,0 +170748802831,216,0 +170748802881,217,0 +170748802929,217,0 +170748802977,218,0 +170748803026,219,0 +170748803074,219,0 +170748803124,220,0 +170748803172,221,0 +170748803221,224,0 +170748803269,225,0 +170748803317,225,0 +170748803365,226,0 +170748803413,227,0 +170748803461,226,0 +170748803509,228,0 +170748803557,228,0 +170748803605,227,0 +170748803654,229,0 +170748803702,216,0 +170748803750,216,0 +170748803799,216,0 +170748803847,217,0 +170748803895,219,0 +170748803943,220,0 +170748803991,220,0 +170748804039,222,0 +170748804087,224,0 +170748804135,223,0 +170748804182,224,0 +170748804230,227,0 +170748804280,226,0 +170748804329,228,0 +170748804379,226,0 +170748804427,227,0 +170748804476,229,0 +170748804526,228,0 +170748804575,227,0 +170748804623,218,0 +170748804671,216,0 +170748804719,216,0 +170748804767,217,0 +170748804815,219,0 +170748804863,220,0 +170748804911,220,0 +170748804961,221,0 +170748805009,222,0 +170748805057,224,0 +170748805105,224,0 +170748805153,225,0 +170748805200,227,0 +170748805248,226,0 +170748805298,227,0 +170748805347,228,0 +170748805397,228,0 +170748805445,228,0 +170748805494,228,0 +170748805544,218,0 +170748805593,216,0 +170748805641,217,0 +170748805691,219,0 +170748805739,221,0 +170748805788,220,0 +170748805838,221,0 +170748805887,224,0 +170748805937,223,0 +170748805987,226,0 +170748806036,226,0 +170748806086,227,0 +170748806135,227,0 +170748806185,225,0 +170748806233,227,0 +170748806281,228,0 +170748806330,228,0 +170748806380,230,0 +170748806428,228,0 +170748806476,218,0 +170748806525,217,0 +170748806573,218,0 +170748806621,220,0 +170748806671,222,0 +170748806720,222,0 +170748806768,223,0 +170748806816,224,0 +170748806866,225,0 +170748806914,227,0 +170748806963,226,0 +170748807011,227,0 +170748807061,228,0 +170748807110,227,0 +170748807160,229,0 +170748807208,228,0 +170748807257,228,0 +170748807305,229,0 +170748807355,228,0 +170748807404,219,0 +170748807454,219,0 +170748807502,220,0 +170748807551,221,0 +170748807601,222,0 +170748807649,224,0 +170748807698,224,0 +170748807746,225,0 +170748807794,225,0 +170748807844,225,0 +170748807894,226,0 +170748807943,228,0 +170748807991,228,0 +170748808041,229,0 +170748808090,231,0 +170748808140,228,0 +170748808189,229,0 +170748808237,228,0 +170748808285,229,0 +170748808333,219,0 +170748808381,219,0 +170748808431,220,0 +170748808480,221,0 +170748808530,220,0 +170748808579,223,0 +170748808629,224,0 +170748808677,224,0 +170748808724,227,0 +170748808772,228,0 +170748808820,227,0 +170748808870,229,0 +170748808918,228,0 +170748808966,230,0 +170748809015,228,0 +170748809063,228,0 +170748809113,230,0 +170748809161,227,0 +170748809210,228,0 +170748809258,218,0 +170748809306,216,0 +170748809354,216,0 +170748809404,218,0 +170748809453,220,0 +170748809501,220,0 +170748809549,221,0 +170748809599,222,0 +170748809648,223,0 +170748809698,224,0 +170748809747,225,0 +170748809797,224,0 +170748809847,227,0 +170748809896,228,0 +170748809946,228,0 +170748809994,229,0 +170748810042,229,0 +170748810090,228,0 +170748810139,228,0 +170748810189,218,0 +170748810237,216,0 +170748810286,217,0 +170748810334,217,0 +170748810384,217,0 +170748810433,217,0 +170748810483,219,0 +170748810531,220,0 +170748810578,221,0 +170748810628,222,0 +170748810678,225,0 +170748810726,225,0 +170748810774,228,0 +170748810821,226,0 +170748810871,228,0 +170748810920,228,0 +170748810970,229,0 +170748811018,228,0 +170748811066,228,0 +170748811115,218,0 +170748811163,216,0 +170748811211,217,0 +170748811261,217,0 +170748811309,219,0 +170748811357,219,0 +170748811405,220,0 +170748811453,221,0 +170748811502,222,0 +170748811550,222,0 +170748811598,225,0 +170748811646,226,0 +170748811696,227,0 +170748811743,229,0 +170748811793,228,0 +170748811841,229,0 +170748811889,230,0 +170748811939,227,0 +170748811987,228,0 +170748812036,218,0 +170748812084,216,0 +170748812134,216,0 +170748812182,217,0 +170748812230,218,0 +170748812278,218,0 +170748812327,220,0 +170748812375,220,0 +170748812423,222,0 +170748812471,222,0 +170748812520,224,0 +170748812570,224,0 +170748812620,226,0 +170748812668,228,0 +170748812716,228,0 +170748812765,229,0 +170748812815,227,0 +170748812863,229,0 +170748812910,227,0 +170748812958,218,0 +170748813006,216,0 +170748813054,215,0 +170748813102,217,0 +170748813150,218,0 +170748813199,217,0 +170748813247,217,0 +170748813295,218,0 +170748813343,220,0 +170748813391,222,0 +170748813439,223,0 +170748813487,225,0 +170748813535,224,0 +170748813584,226,0 +170748813632,226,0 +170748813680,226,0 +170748813728,227,0 +170748813776,228,0 +170748813824,228,0 +170748813872,228,0 +170748813920,216,0 +170748813969,216,0 +170748814019,216,0 +170748814069,216,0 +170748814117,216,0 +170748814164,217,0 +170748814214,217,0 +170748814262,218,0 +170748814311,218,0 +170748814359,219,0 +170748814407,218,0 +170748814457,220,0 +170748814505,223,0 +170748814553,222,0 +170748814600,223,0 +170748814648,224,0 +170748814696,223,0 +170748814744,226,0 +170748814792,227,0 +170748814840,217,0 +170748814888,216,0 +170748814936,216,0 +170748814984,217,0 +170748815033,217,0 +170748815083,217,0 +170748815132,221,0 +170748815180,220,0 +170748815228,221,0 +170748815276,222,0 +170748815325,223,0 +170748815373,225,0 +170748815423,226,0 +170748815471,225,0 +170748815519,226,0 +170748815567,227,0 +170748815615,226,0 +170748815663,227,0 +170748815711,227,0 +170748815760,217,0 +170748815810,216,0 +170748815858,216,0 +170748815906,217,0 +170748815954,218,0 +170748816001,219,0 +170748816049,220,0 +170748816099,221,0 +170748816147,222,0 +170748816195,222,0 +170748816243,223,0 +170748816291,224,0 +170748816339,226,0 +170748816387,226,0 +170748816435,228,0 +170748816484,226,0 +170748816532,228,0 +170748816582,228,0 +170748816631,225,0 +170748816679,217,0 +170748816729,216,0 +170748816778,216,0 +170748816826,216,0 +170748816874,217,0 +170748816922,219,0 +170748816972,219,0 +170748817019,220,0 +170748817069,221,0 +170748817118,221,0 +170748817166,223,0 +170748817214,224,0 +170748817262,226,0 +170748817312,228,0 +170748817362,228,0 +170748817411,227,0 +170748817461,227,0 +170748817509,230,0 +170748817557,228,0 +170748817605,220,0 +170748817653,216,0 +170748817702,216,0 +170748817750,216,0 +170748817798,218,0 +170748817847,219,0 +170748817895,219,0 +170748817945,221,0 +170748817994,222,0 +170748818044,222,0 +170748818094,223,0 +170748818142,225,0 +170748818191,224,0 +170748818241,232,0 +170748818289,226,0 +170748818338,232,0 +170748818388,230,0 +170748818436,236,0 +170748818485,227,0 +170748818535,217,0 +170748818584,216,0 +170748818634,217,0 +170748818681,218,0 +170748818729,220,0 +170748818777,219,0 +170748818825,220,0 +170748818873,220,0 +170748818921,221,0 +170748818969,224,0 +170748819017,225,0 +170748819066,226,0 +170748819114,225,0 +170748819163,225,0 +170748819211,229,0 +170748819259,228,0 +170748819307,229,0 +170748819355,228,0 +170748819403,229,0 +170748819451,224,0 +170748819499,216,0 +170748819547,217,0 +170748819596,218,0 +170748819646,219,0 +170748819694,221,0 +170748819741,221,0 +170748819791,223,0 +170748819839,223,0 +170748819887,224,0 +170748819935,225,0 +170748819983,227,0 +170748820032,226,0 +170748820080,229,0 +170748820130,229,0 +170748820178,229,0 +170748820227,231,0 +170748820275,229,0 +170748820325,227,0 +170748820374,226,0 +170748820422,216,0 +170748820471,216,0 +170748820519,217,0 +170748820567,219,0 +170748820615,219,0 +170748820663,220,0 +170748820713,221,0 +170748820761,223,0 +170748820810,226,0 +170748820860,223,0 +170748820908,226,0 +170748820956,226,0 +170748821005,228,0 +170748821053,228,0 +170748821103,229,0 +170748821151,229,0 +170748821199,228,0 +170748821248,228,0 +170748821298,228,0 +170748821346,217,0 +170748821394,215,0 +170748821442,215,0 +170748821490,216,0 +170748821539,217,0 +170748821589,218,0 +170748821637,218,0 +170748821684,219,0 +170748821734,222,0 +170748821782,221,0 +170748821832,222,0 +170748821881,224,0 +170748821931,225,0 +170748821980,226,0 +170748822028,227,0 +170748822077,226,0 +170748822127,228,0 +170748822175,228,0 +170748822223,227,0 +170748822271,216,0 +170748822319,216,0 +170748822368,216,0 +170748822418,216,0 +170748822467,217,0 +170748822515,219,0 +170748822565,219,0 +170748822613,220,0 +170748822662,221,0 +170748822710,221,0 +170748822760,223,0 +170748822808,224,0 +170748822856,226,0 +170748822905,225,0 +170748822953,226,0 +170748823003,233,0 +170748823051,229,0 +170748823100,227,0 +170748823150,228,0 +170748823199,216,0 +170748823247,216,0 +170748823295,217,0 +170748823345,219,0 +170748823394,220,0 +170748823444,219,0 +170748823492,220,0 +170748823540,221,0 +170748823588,223,0 +170748823637,224,0 +170748823685,225,0 +170748823735,227,0 +170748823784,226,0 +170748823834,226,0 +170748823882,228,0 +170748823930,227,0 +170748823978,228,0 +170748824026,230,0 +170748824074,223,0 +170748824122,218,0 +170748824171,216,0 +170748824219,217,0 +170748824269,219,0 +170748824318,219,0 +170748824366,219,0 +170748824414,221,0 +170748824462,223,0 +170748824510,224,0 +170748824558,224,0 +170748824608,227,0 +170748824656,226,0 +170748824704,226,0 +170748824753,229,0 +170748824801,228,0 +170748824851,230,0 +170748824900,228,0 +170748824948,228,0 +170748824998,228,0 +170748825047,216,0 +170748825095,217,0 +170748825143,217,0 +170748825191,218,0 +170748825241,219,0 +170748825290,221,0 +170748825338,222,0 +170748825387,222,0 +170748825435,224,0 +170748825485,224,0 +170748825533,226,0 +170748825582,226,0 +170748825630,227,0 +170748825678,228,0 +170748825728,228,0 +170748825777,228,0 +170748825825,228,0 +170748825873,228,0 +170748825921,227,0 +170748825971,218,0 +170748826020,216,0 +170748826070,216,0 +170748826118,218,0 +170748826166,219,0 +170748826215,219,0 +170748826263,219,0 +170748826311,220,0 +170748826359,221,0 +170748826407,223,0 +170748826455,224,0 +170748826503,226,0 +170748826553,227,0 +170748826602,226,0 +170748826652,228,0 +170748826701,230,0 +170748826749,228,0 +170748826797,227,0 +170748826847,228,0 +170748826895,220,0 +170748826944,216,0 +170748826992,216,0 +170748827042,217,0 +170748827089,218,0 +170748827139,219,0 +170748827188,220,0 +170748827238,221,0 +170748827288,222,0 +170748827336,223,0 +170748827385,223,0 +170748827433,224,0 +170748827483,225,0 +170748827530,225,0 +170748827578,227,0 +170748827626,227,0 +170748827674,227,0 +170748827724,227,0 +170748827772,227,0 +170748827820,225,0 +170748827869,216,0 +170748827917,216,0 +170748827965,217,0 +170748828013,218,0 +170748828061,219,0 +170748828109,219,0 +170748828157,220,0 +170748828205,222,0 +170748828253,222,0 +170748828301,223,0 +170748828350,225,0 +170748828398,224,0 +170748828448,229,0 +170748828497,226,0 +170748828547,227,0 +170748828596,227,0 +170748828644,227,0 +170748828694,228,0 +170748828743,225,0 +170748828793,216,0 +170748828843,215,0 +170748828892,217,0 +170748828942,218,0 +170748828989,219,0 +170748829037,220,0 +170748829085,222,0 +170748829133,221,0 +170748829181,222,0 +170748829231,225,0 +170748829279,224,0 +170748829327,226,0 +170748829375,226,0 +170748829424,226,0 +170748829472,226,0 +170748829520,228,0 +170748829570,227,0 +170748829618,228,0 +170748829666,227,0 +170748829713,216,0 +170748829761,216,0 +170748829809,216,0 +170748829859,218,0 +170748829907,218,0 +170748829955,220,0 +170748830003,220,0 +170748830051,221,0 +170748830099,223,0 +170748830148,224,0 +170748830196,224,0 +170748830244,225,0 +170748830292,225,0 +170748830340,227,0 +170748830390,227,0 +170748830439,227,0 +170748830487,228,0 +170748830536,227,0 +170748830586,226,0 +170748830634,218,0 +170748830682,215,0 +170748830732,216,0 +170748830779,216,0 +170748830827,217,0 +170748830875,218,0 +170748830923,219,0 +170748830973,220,0 +170748831022,221,0 +170748831070,223,0 +170748831120,223,0 +170748831169,223,0 +170748831217,225,0 +170748831265,226,0 +170748831315,226,0 +170748831364,226,0 +170748831412,227,0 +170748831462,225,0 +170748831511,228,0 +170748831561,217,0 +170748831611,216,0 +170748831658,216,0 +170748831706,216,0 +170748831754,218,0 +170748831804,219,0 +170748831852,219,0 +170748831900,221,0 +170748831949,222,0 +170748831999,222,0 +170748832047,223,0 +170748832096,225,0 +170748832146,224,0 +170748832195,225,0 +170748832243,227,0 +170748832293,228,0 +170748832341,228,0 +170748832389,228,0 +170748832437,228,0 +170748832485,218,0 +170748832533,215,0 +170748832581,216,0 +170748832629,216,0 +170748832677,217,0 +170748832726,218,0 +170748832774,220,0 +170748832824,220,0 +170748832873,221,0 +170748832921,222,0 +170748832969,224,0 +170748833019,224,0 +170748833067,225,0 +170748833115,225,0 +170748833164,226,0 +170748833212,230,0 +170748833261,229,0 +170748833309,225,0 +170748833359,228,0 +170748833407,220,0 +170748833456,216,0 +170748833504,216,0 +170748833552,218,0 +170748833602,219,0 +170748833650,220,0 +170748833699,220,0 +170748833749,221,0 +170748833797,223,0 +170748833845,222,0 +170748833893,220,0 +170748833941,225,0 +170748833990,227,0 +170748834038,225,0 +170748834086,227,0 +170748834135,227,0 +170748834183,228,0 +170748834233,228,0 +170748834281,228,0 +170748834330,226,0 +170748834378,217,0 +170748834426,217,0 +170748834474,218,0 +170748834521,219,0 +170748834569,220,0 +170748834619,220,0 +170748834668,217,0 +170748834716,218,0 +170748834766,222,0 +170748834814,224,0 +170748834861,224,0 +170748834909,226,0 +170748834957,228,0 +170748835005,229,0 +170748835053,228,0 +170748835101,228,0 +170748835149,228,0 +170748835197,228,0 +170748835244,227,0 +170748835292,217,0 +170748835340,216,0 +170748835388,217,0 +170748835436,218,0 +170748835484,219,0 +170748835532,220,0 +170748835582,221,0 +170748835630,222,0 +170748835677,223,0 +170748835725,224,0 +170748835773,224,0 +170748835821,226,0 +170748835869,229,0 +170748835920,227,0 +170748835969,230,0 +170748836017,229,0 +170748836067,227,0 +170748836116,228,0 +170748836166,227,0 +170748836214,218,0 +170748836263,215,0 +170748836311,216,0 +170748836361,218,0 +170748836409,218,0 +170748836458,225,0 +170748836506,220,0 +170748836554,221,0 +170748836602,223,0 +170748836650,224,0 +170748836700,228,0 +170748836749,227,0 +170748836797,227,0 +170748836845,227,0 +170748836895,227,0 +170748836944,228,0 +170748836992,228,0 +170748837042,230,0 +170748837090,228,0 +170748837137,225,0 +170748837185,216,0 +170748837233,217,0 +170748837281,217,0 +170748837329,219,0 +170748837377,220,0 +170748837425,221,0 +170748837474,220,0 +170748837522,221,0 +170748837570,222,0 +170748837618,224,0 +170748837666,225,0 +170748837714,230,0 +170748837762,225,0 +170748837810,226,0 +170748837858,227,0 +170748837907,228,0 +170748837955,228,0 +170748838003,227,0 +170748838052,228,0 +170748838102,216,0 +170748838151,216,0 +170748838201,217,0 +170748838249,218,0 +170748838297,219,0 +170748838345,221,0 +170748838393,222,0 +170748838441,224,0 +170748838490,222,0 +170748838538,223,0 +170748838586,226,0 +170748838634,225,0 +170748838682,227,0 +170748838732,228,0 +170748838780,227,0 +170748838827,228,0 +170748838875,229,0 +170748838925,228,0 +170748838973,226,0 +170748839023,217,0 +170748839071,217,0 +170748839119,217,0 +170748839167,219,0 +170748839214,220,0 +170748839264,221,0 +170748839312,221,0 +170748839361,221,0 +170748839409,222,0 +170748839457,225,0 +170748839505,224,0 +170748839553,225,0 +170748839601,227,0 +170748839649,227,0 +170748839697,227,0 +170748839746,226,0 +170748839794,227,0 +170748839842,228,0 +170748839891,228,0 +170748839941,218,0 +170748839990,216,0 +170748840038,216,0 +170748840086,218,0 +170748840134,219,0 +170748840182,220,0 +170748840230,221,0 +170748840278,221,0 +170748840327,221,0 +170748840375,224,0 +170748840425,224,0 +170748840473,225,0 +170748840521,227,0 +170748840569,226,0 +170748840618,229,0 +170748840666,229,0 +170748840716,228,0 +170748840764,228,0 +170748840812,229,0 +170748840860,227,0 +170748840908,216,0 +170748840957,216,0 +170748841007,216,0 +170748841056,217,0 +170748841104,218,0 +170748841152,219,0 +170748841202,220,0 +170748841251,223,0 +170748841301,224,0 +170748841349,225,0 +170748841396,225,0 +170748841446,226,0 +170748841494,228,0 +170748841542,226,0 +170748841590,226,0 +170748841638,227,0 +170748841685,228,0 +170748841733,228,0 +170748841781,227,0 +170748841829,216,0 +170748841877,216,0 +170748841925,216,0 +170748841973,216,0 +170748842022,217,0 +170748842072,218,0 +170748842120,219,0 +170748842169,220,0 +170748842217,221,0 +170748842265,222,0 +170748842313,222,0 +170748842361,224,0 +170748842409,225,0 +170748842456,227,0 +170748842506,227,0 +170748842554,230,0 +170748842602,227,0 +170748842651,228,0 +170748842699,230,0 +170748842748,216,0 +170748842796,215,0 +170748842844,216,0 +170748842892,216,0 +170748842940,216,0 +170748842990,217,0 +170748843038,217,0 +170748843087,218,0 +170748843135,218,0 +170748843185,220,0 +170748843234,220,0 +170748843284,222,0 +170748843332,223,0 +170748843381,225,0 +170748843429,223,0 +170748843477,226,0 +170748843525,229,0 +170748843573,227,0 +170748843621,229,0 +170748843669,220,0 +170748843718,215,0 +170748843766,215,0 +170748843814,215,0 +170748843862,216,0 +170748843910,216,0 +170748843958,216,0 +170748844006,217,0 +170748844055,217,0 +170748844105,218,0 +170748844153,218,0 +170748844201,220,0 +170748844249,222,0 +170748844296,222,0 +170748844344,225,0 +170748844392,227,0 +170748844442,226,0 +170748844491,226,0 +170748844541,227,0 +170748844590,227,0 +170748844638,216,0 +170748844688,216,0 +170748844736,216,0 +170748844785,216,0 +170748844835,217,0 +170748844883,217,0 +170748844932,218,0 +170748844980,218,0 +170748845028,219,0 +170748845076,220,0 +170748845124,221,0 +170748845174,223,0 +170748845222,224,0 +170748845270,228,0 +170748845319,230,0 +170748845367,228,0 +170748845417,227,0 +170748845465,228,0 +170748845515,227,0 +170748845564,216,0 +170748845612,217,0 +170748845660,217,0 +170748845708,217,0 +170748845758,217,0 +170748845807,218,0 +170748845855,219,0 +170748845903,221,0 +170748845951,221,0 +170748845999,223,0 +170748846047,224,0 +170748846095,226,0 +170748846143,224,0 +170748846193,226,0 +170748846240,226,0 +170748846288,228,0 +170748846338,228,0 +170748846387,227,0 +170748846435,227,0 +170748846485,217,0 +170748846533,216,0 +170748846583,216,0 +170748846631,217,0 +170748846679,218,0 +170748846728,219,0 +170748846778,219,0 +170748846826,221,0 +170748846875,221,0 +170748846925,223,0 +170748846974,223,0 +170748847022,226,0 +170748847070,226,0 +170748847118,226,0 +170748847166,228,0 +170748847215,227,0 +170748847263,228,0 +170748847311,229,0 +170748847359,228,0 +170748847407,217,0 +170748847455,216,0 +170748847503,216,0 +170748847551,216,0 +170748847599,217,0 +170748847647,218,0 +170748847695,219,0 +170748847745,219,0 +170748847793,221,0 +170748847841,221,0 +170748847890,223,0 +170748847938,225,0 +170748847986,225,0 +170748848036,226,0 +170748848085,228,0 +170748848133,227,0 +170748848183,228,0 +170748848232,228,0 +170748848282,229,0 +170748848329,217,0 +170748848377,216,0 +170748848425,217,0 +170748848475,218,0 +170748848524,218,0 +170748848572,219,0 +170748848620,220,0 +170748848668,223,0 +170748848716,223,0 +170748848764,221,0 +170748848812,223,0 +170748848862,226,0 +170748848910,225,0 +170748848958,230,0 +170748849006,228,0 +170748849054,229,0 +170748849103,228,0 +170748849151,227,0 +170748849201,227,0 +170748849250,226,0 +170748849300,215,0 +170748849349,216,0 +170748849399,217,0 +170748849447,219,0 +170748849496,220,0 +170748849546,220,0 +170748849595,221,0 +170748849643,222,0 +170748849691,223,0 +170748849741,224,0 +170748849790,225,0 +170748849838,225,0 +170748849886,226,0 +170748849936,227,0 +170748849984,228,0 +170748850033,228,0 +170748850081,228,0 +170748850129,228,0 +170748850177,227,0 +170748850225,217,0 +170748850273,218,0 +170748850321,218,0 +170748850371,220,0 +170748850420,221,0 +170748850470,223,0 +170748850519,223,0 +170748850569,223,0 +170748850617,226,0 +170748850665,225,0 +170748850713,225,0 +170748850761,226,0 +170748850810,225,0 +170748850858,227,0 +170748850906,227,0 +170748850956,226,0 +170748851005,228,0 +170748851053,228,0 +170748851102,226,0 +170748851152,220,0 +170748851200,220,0 +170748851248,221,0 +170748851296,223,0 +170748851345,223,0 +170748851393,224,0 +170748851443,225,0 +170748851492,227,0 +170748851540,226,0 +170748851590,226,0 +170748851638,228,0 +170748851686,227,0 +170748851734,227,0 +170748851783,227,0 +170748851831,228,0 +170748851881,227,0 +170748851929,227,0 +170748851977,228,0 +170748852025,227,0 +170748852073,221,0 +170748852121,220,0 +170748852169,222,0 +170748852218,223,0 +170748852268,224,0 +170748852317,223,0 +170748852365,226,0 +170748852413,224,0 +170748852463,225,0 +170748852511,227,0 +170748852559,227,0 +170748852608,228,0 +170748852656,228,0 +170748852704,229,0 +170748852752,228,0 +170748852802,228,0 +170748852851,228,0 +170748852899,228,0 +170748852947,227,0 +170748852997,219,0 +170748853045,216,0 +170748853092,217,0 +170748853140,216,0 +170748853188,219,0 +170748853238,226,0 +170748853286,222,0 +170748853334,222,0 +170748853384,223,0 +170748853432,226,0 +170748853480,226,0 +170748853528,227,0 +170748853577,226,0 +170748853625,229,0 +170748853675,227,0 +170748853723,229,0 +170748853771,228,0 +170748853819,228,0 +170748853867,229,0 +170748853916,227,0 +170748853966,220,0 +170748854015,216,0 +170748854065,216,0 +170748854113,217,0 +170748854161,218,0 +170748854208,219,0 +170748854256,221,0 +170748854304,221,0 +170748854352,221,0 +170748854400,222,0 +170748854448,225,0 +170748854496,225,0 +170748854544,226,0 +170748854594,227,0 +170748854642,227,0 +170748854691,229,0 +170748854739,229,0 +170748854787,229,0 +170748854835,228,0 +170748854884,218,0 +170748854934,215,0 +170748854981,216,0 +170748855029,216,0 +170748855079,216,0 +170748855128,218,0 +170748855178,219,0 +170748855227,222,0 +170748855277,221,0 +170748855325,221,0 +170748855372,222,0 +170748855420,223,0 +170748855468,224,0 +170748855516,226,0 +170748855566,227,0 +170748855614,233,0 +170748855662,229,0 +170748855710,227,0 +170748855759,230,0 +170748855807,224,0 +170748855855,216,0 +170748855904,216,0 +170748855952,217,0 +170748856002,217,0 +170748856052,217,0 +170748856100,217,0 +170748856147,218,0 +170748856197,219,0 +170748856247,220,0 +170748856295,222,0 +170748856344,222,0 +170748856393,224,0 +170748856441,224,0 +170748856489,225,0 +170748856537,227,0 +170748856587,229,0 +170748856635,228,0 +170748856683,226,0 +170748856731,227,0 +170748856779,217,0 +170748856827,215,0 +170748856876,215,0 +170748856924,215,0 +170748856974,216,0 +170748857022,216,0 +170748857071,217,0 +170748857121,217,0 +170748857169,219,0 +170748857217,220,0 +170748857266,222,0 +170748857316,223,0 +170748857364,222,0 +170748857413,223,0 +170748857463,224,0 +170748857512,224,0 +170748857562,225,0 +170748857611,225,0 +170748857659,228,0 +170748857709,217,0 +170748857757,215,0 +170748857805,215,0 +170748857854,216,0 +170748857902,216,0 +170748857950,217,0 +170748858000,217,0 +170748858049,218,0 +170748858099,218,0 +170748858149,218,0 +170748858197,220,0 +170748858246,221,0 +170748858294,221,0 +170748858344,221,0 +170748858392,223,0 +170748858439,224,0 +170748858487,226,0 +170748858537,225,0 +170748858585,228,0 +170748858634,222,0 +170748858682,215,0 +170748858730,216,0 +170748858778,216,0 +170748858828,216,0 +170748858877,218,0 +170748858925,219,0 +170748858973,219,0 +170748859021,220,0 +170748859071,221,0 +170748859119,222,0 +170748859168,223,0 +170748859216,226,0 +170748859266,230,0 +170748859314,226,0 +170748859363,228,0 +170748859411,227,0 +170748859461,224,0 +170748859511,228,0 +170748859558,226,0 +170748859606,216,0 +170748859656,216,0 +170748859704,216,0 +170748859753,217,0 +170748859801,218,0 +170748859849,220,0 +170748859899,220,0 +170748859947,220,0 +170748859997,220,0 +170748860044,222,0 +170748860094,222,0 +170748860142,224,0 +170748860192,226,0 +170748860239,226,0 +170748860287,228,0 +170748860335,229,0 +170748860385,228,0 +170748860434,228,0 +170748860484,228,0 +170748860532,217,0 +170748860580,216,0 +170748860629,215,0 +170748860677,216,0 +170748860725,216,0 +170748860775,216,0 +170748860823,218,0 +170748860872,219,0 +170748860920,221,0 +170748860970,220,0 +170748861018,223,0 +170748861067,222,0 +170748861117,223,0 +170748861165,224,0 +170748861214,227,0 +170748861264,226,0 +170748861312,225,0 +170748861361,224,0 +170748861409,227,0 +170748861457,218,0 +170748861505,214,0 +170748861553,214,0 +170748861601,214,0 +170748861649,214,0 +170748861697,214,0 +170748861745,214,0 +170748861793,214,0 +170748861841,215,0 +170748861890,215,0 +170748861938,215,0 +170748861988,215,0 +170748862036,216,0 +170748862084,216,0 +170748862133,218,0 +170748862183,220,0 +170748862231,222,0 +170748862279,221,0 +170748862327,226,0 +170748862375,228,0 +170748862424,216,0 +170748862474,216,0 +170748862523,216,0 +170748862573,216,0 +170748862622,217,0 +170748862672,217,0 +170748862720,218,0 +170748862768,219,0 +170748862816,220,0 +170748862865,221,0 +170748862915,221,0 +170748862964,222,0 +170748863014,224,0 +170748863063,226,0 +170748863113,226,0 +170748863162,227,0 +170748863212,228,0 +170748863261,227,0 +170748863309,227,0 +170748863357,218,0 +170748863405,216,0 +170748863453,217,0 +170748863503,218,0 +170748863551,220,0 +170748863598,220,0 +170748863646,220,0 +170748863696,221,0 +170748863744,223,0 +170748863792,223,0 +170748863840,224,0 +170748863888,227,0 +170748863936,226,0 +170748863985,226,0 +170748864033,227,0 +170748864083,232,0 +170748864131,228,0 +170748864179,230,0 +170748864227,228,0 +170748864275,228,0 +170748864323,218,0 +170748864370,218,0 +170748864420,219,0 +170748864468,220,0 +170748864516,220,0 +170748864564,221,0 +170748864613,223,0 +170748864663,222,0 +170748864711,224,0 +170748864759,225,0 +170748864807,226,0 +170748864855,225,0 +170748864904,230,0 +170748864954,228,0 +170748865003,227,0 +170748865051,228,0 +170748865099,228,0 +170748865149,228,0 +170748865198,227,0 +170748865248,216,0 +170748865297,216,0 +170748865345,217,0 +170748865395,219,0 +170748865444,220,0 +170748865492,221,0 +170748865540,223,0 +170748865588,223,0 +170748865636,223,0 +170748865686,224,0 +170748865734,225,0 +170748865782,226,0 +170748865831,224,0 +170748865881,228,0 +170748865929,226,0 +170748865978,227,0 +170748866026,228,0 +170748866076,228,0 +170748866125,227,0 +170748866175,217,0 +170748866224,216,0 +170748866274,216,0 +170748866322,217,0 +170748866371,218,0 +170748866419,219,0 +170748866469,221,0 +170748866518,220,0 +170748866568,222,0 +170748866616,222,0 +170748866665,223,0 +170748866715,226,0 +170748866763,226,0 +170748866811,227,0 +170748866859,228,0 +170748866907,227,0 +170748866955,228,0 +170748867004,228,0 +170748867052,228,0 +170748867100,227,0 +170748867149,216,0 +170748867199,216,0 +170748867249,216,0 +170748867297,217,0 +170748867346,218,0 +170748867396,219,0 +170748867444,219,0 +170748867493,221,0 +170748867543,221,0 +170748867592,223,0 +170748867642,224,0 +170748867691,227,0 +170748867739,227,0 +170748867787,225,0 +170748867835,227,0 +170748867883,227,0 +170748867931,226,0 +170748867981,228,0 +170748868029,227,0 +170748868077,216,0 +170748868125,216,0 +170748868173,216,0 +170748868222,216,0 +170748868270,215,0 +170748868320,218,0 +170748868369,218,0 +170748868417,219,0 +170748868467,220,0 +170748868515,221,0 +170748868564,220,0 +170748868612,221,0 +170748868660,223,0 +170748868710,225,0 +170748868759,225,0 +170748868807,228,0 +170748868856,226,0 +170748868906,226,0 +170748868954,227,0 +170748869002,217,0 +170748869051,215,0 +170748869101,216,0 +170748869149,216,0 +170748869197,216,0 +170748869245,216,0 +170748869293,216,0 +170748869341,217,0 +170748869390,217,0 +170748869438,218,0 +170748869486,218,0 +170748869534,219,0 +170748869584,221,0 +170748869632,222,0 +170748869681,223,0 +170748869731,223,0 +170748869780,224,0 +170748869828,224,0 +170748869878,224,0 +170748869926,226,0 +170748869975,216,0 +170748870025,216,0 +170748870073,216,0 +170748870121,216,0 +170748870169,217,0 +170748870218,217,0 +170748870268,217,0 +170748870316,220,0 +170748870364,219,0 +170748870412,221,0 +170748870461,222,0 +170748870509,221,0 +170748870559,222,0 +170748870608,223,0 +170748870658,228,0 +170748870707,225,0 +170748870755,225,0 +170748870803,226,0 +170748870851,227,0 +170748870899,217,0 +170748870947,216,0 +170748870997,216,0 +170748871046,216,0 +170748871094,216,0 +170748871142,218,0 +170748871190,219,0 +170748871240,220,0 +170748871289,220,0 +170748871337,222,0 +170748871387,222,0 +170748871435,225,0 +170748871484,223,0 +170748871532,225,0 +170748871582,228,0 +170748871630,225,0 +170748871680,225,0 +170748871727,226,0 +170748871775,227,0 +170748871825,218,0 +170748871873,216,0 +170748871921,216,0 +170748871970,215,0 +170748872018,216,0 +170748872066,218,0 +170748872114,218,0 +170748872162,218,0 +170748872212,219,0 +170748872259,220,0 +170748872309,222,0 +170748872357,222,0 +170748872407,225,0 +170748872456,224,0 +170748872506,227,0 +170748872554,226,0 +170748872602,227,0 +170748872651,227,0 +170748872701,227,0 +170748872750,223,0 +170748872800,216,0 +170748872848,216,0 +170748872896,216,0 +170748872945,217,0 +170748872995,219,0 +170748873044,219,0 +170748873094,220,0 +170748873142,221,0 +170748873191,222,0 +170748873239,222,0 +170748873289,224,0 +170748873338,225,0 +170748873386,227,0 +170748873436,225,0 +170748873485,227,0 +170748873533,228,0 +170748873581,227,0 +170748873629,227,0 +170748873678,225,0 +170748873726,218,0 +170748873774,218,0 +170748873824,219,0 +170748873874,220,0 +170748873923,222,0 +170748873971,223,0 +170748874019,221,0 +170748874069,226,0 +170748874117,225,0 +170748874165,226,0 +170748874214,228,0 +170748874264,227,0 +170748874313,227,0 +170748874361,228,0 +170748874409,228,0 +170748874459,228,0 +170748874508,228,0 +170748874558,229,0 +170748874606,228,0 +170748874655,220,0 +170748874703,220,0 +170748874751,220,0 +170748874799,222,0 +170748874847,222,0 +170748874897,224,0 +170748874945,225,0 +170748874992,225,0 +170748875040,225,0 +170748875088,225,0 +170748875136,226,0 +170748875186,226,0 +170748875235,228,0 +170748875283,230,0 +170748875331,228,0 +170748875381,227,0 +170748875429,229,0 +170748875477,228,0 +170748875525,227,0 +170748875574,226,0 +170748875624,216,0 +170748875672,217,0 +170748875720,217,0 +170748875768,218,0 +170748875816,221,0 +170748875864,221,0 +170748875913,221,0 +170748875961,222,0 +170748876011,223,0 +170748876060,225,0 +170748876110,225,0 +170748876158,225,0 +170748876207,227,0 +170748876257,226,0 +170748876305,227,0 +170748876353,227,0 +170748876402,228,0 +170748876452,227,0 +170748876501,227,0 +170748876549,217,0 +170748876599,216,0 +170748876648,216,0 +170748876698,217,0 +170748876746,217,0 +170748876794,220,0 +170748876843,220,0 +170748876893,220,0 +170748876941,222,0 +170748876990,223,0 +170748877038,223,0 +170748877088,226,0 +170748877136,224,0 +170748877184,227,0 +170748877233,226,0 +170748877281,226,0 +170748877329,227,0 +170748877379,229,0 +170748877428,227,0 +170748877478,225,0 +170748877526,216,0 +170748877575,216,0 +170748877623,216,0 +170748877671,215,0 +170748877721,217,0 +170748877770,217,0 +170748877820,218,0 +170748877868,223,0 +170748877916,221,0 +170748877965,221,0 +170748878013,223,0 +170748878063,225,0 +170748878111,225,0 +170748878159,227,0 +170748878208,226,0 +170748878258,224,0 +170748878307,226,0 +170748878357,227,0 +170748878406,227,0 +170748878454,216,0 +170748878504,216,0 +170748878553,216,0 +170748878603,216,0 +170748878651,215,0 +170748878699,218,0 +170748878747,219,0 +170748878795,220,0 +170748878843,221,0 +170748878891,221,0 +170748878939,223,0 +170748878987,226,0 +170748879036,227,0 +170748879084,228,0 +170748879134,229,0 +170748879183,229,0 +170748879231,228,0 +170748879281,227,0 +170748879329,227,0 +170748879378,217,0 +170748879428,216,0 +170748879477,216,0 +170748879525,217,0 +170748879573,217,0 +170748879621,219,0 +170748879669,219,0 +170748879719,220,0 +170748879767,221,0 +170748879815,221,0 +170748879863,222,0 +170748879912,224,0 +170748879960,226,0 +170748880008,225,0 +170748880056,229,0 +170748880104,228,0 +170748880153,229,0 +170748880201,227,0 +170748880251,228,0 +170748880299,226,0 +170748880348,216,0 +170748880396,216,0 +170748880444,216,0 +170748880494,217,0 +170748880542,217,0 +170748880590,218,0 +170748880639,219,0 +170748880687,221,0 +170748880737,224,0 +170748880785,223,0 +170748880834,223,0 +170748880884,224,0 +170748880932,227,0 +170748880981,228,0 +170748881029,226,0 +170748881079,227,0 +170748881128,225,0 +170748881176,228,0 +170748881226,227,0 +170748881274,217,0 +170748881322,216,0 +170748881371,216,0 +170748881419,217,0 +170748881469,217,0 +170748881518,219,0 +170748881568,220,0 +170748881618,219,0 +170748881665,220,0 +170748881713,221,0 +170748881761,224,0 +170748881809,223,0 +170748881859,224,0 +170748881908,226,0 +170748881958,229,0 +170748882006,228,0 +170748882055,229,0 +170748882103,228,0 +170748882151,228,0 +170748882201,218,0 +170748882249,215,0 +170748882299,216,0 +170748882346,217,0 +170748882394,218,0 +170748882442,218,0 +170748882492,219,0 +170748882540,220,0 +170748882589,220,0 +170748882638,221,0 +170748882686,222,0 +170748882734,223,0 +170748882782,224,0 +170748882830,224,0 +170748882878,225,0 +170748882926,226,0 +170748882973,225,0 +170748883021,228,0 +170748883071,228,0 +170748883119,227,0 +170748883168,217,0 +170748883216,216,0 +170748883264,217,0 +170748883312,217,0 +170748883360,219,0 +170748883408,221,0 +170748883458,220,0 +170748883506,222,0 +170748883555,222,0 +170748883605,223,0 +170748883654,225,0 +170748883704,224,0 +170748883752,224,0 +170748883801,225,0 +170748883849,226,0 +170748883897,228,0 +170748883945,229,0 +170748883993,229,0 +170748884042,224,0 +170748884090,217,0 +170748884138,216,0 +170748884186,217,0 +170748884234,218,0 +170748884283,220,0 +170748884331,219,0 +170748884379,220,0 +170748884427,222,0 +170748884475,222,0 +170748884523,225,0 +170748884571,226,0 +170748884620,225,0 +170748884670,225,0 +170748884718,226,0 +170748884766,227,0 +170748884815,228,0 +170748884863,228,0 +170748884913,234,0 +170748884961,229,0 +170748885010,227,0 +170748885060,216,0 +170748885109,216,0 +170748885159,216,0 +170748885207,217,0 +170748885256,218,0 +170748885304,219,0 +170748885352,221,0 +170748885400,221,0 +170748885448,223,0 +170748885496,223,0 +170748885544,225,0 +170748885592,223,0 +170748885640,226,0 +170748885690,228,0 +170748885739,227,0 +170748885787,229,0 +170748885835,227,0 +170748885884,227,0 +170748885932,227,0 +170748885982,217,0 +170748886030,216,0 +170748886078,216,0 +170748886126,216,0 +170748886173,216,0 +170748886221,218,0 +170748886269,219,0 +170748886317,219,0 +170748886365,220,0 +170748886413,221,0 +170748886462,222,0 +170748886510,224,0 +170748886558,226,0 +170748886606,228,0 +170748886656,227,0 +170748886704,229,0 +170748886751,225,0 +170748886799,229,0 +170748886847,227,0 +170748886895,227,0 +170748886943,216,0 +170748886991,216,0 +170748887039,216,0 +170748887089,216,0 +170748887138,216,0 +170748887186,217,0 +170748887236,218,0 +170748887284,218,0 +170748887332,220,0 +170748887381,221,0 +170748887431,221,0 +170748887479,225,0 +170748887528,225,0 +170748887576,226,0 +170748887624,226,0 +170748887672,234,0 +170748887720,227,0 +170748887768,226,0 +170748887816,225,0 +170748887865,217,0 +170748887913,216,0 +170748887961,216,0 +170748888011,216,0 +170748888060,216,0 +170748888108,218,0 +170748888156,219,0 +170748888204,221,0 +170748888254,220,0 +170748888303,221,0 +170748888351,222,0 +170748888400,223,0 +170748888448,218,0 +170748888496,227,0 +170748888546,225,0 +170748888594,226,0 +170748888643,229,0 +170748888691,228,0 +170748888739,228,0 +170748888787,221,0 +170748888835,216,0 +170748888885,216,0 +170748888934,216,0 +170748888984,217,0 +170748889032,217,0 +170748889081,218,0 +170748889129,218,0 +170748889179,219,0 +170748889227,220,0 +170748889275,222,0 +170748889323,223,0 +170748889371,223,0 +170748889419,223,0 +170748889468,224,0 +170748889516,226,0 +170748889564,226,0 +170748889614,228,0 +170748889661,226,0 +170748889711,228,0 +170748889760,217,0 +170748889810,216,0 +170748889858,216,0 +170748889906,218,0 +170748889954,218,0 +170748890002,219,0 +170748890050,220,0 +170748890098,221,0 +170748890147,221,0 +170748890195,222,0 +170748890245,225,0 +170748890293,224,0 +170748890342,223,0 +170748890392,228,0 +170748890441,225,0 +170748890489,229,0 +170748890539,227,0 +170748890587,228,0 +170748890635,227,0 +170748890684,222,0 +170748890734,215,0 +170748890782,216,0 +170748890830,216,0 +170748890878,216,0 +170748890926,218,0 +170748890974,217,0 +170748891022,220,0 +170748891070,222,0 +170748891119,222,0 +170748891169,223,0 +170748891216,224,0 +170748891266,224,0 +170748891315,226,0 +170748891365,226,0 +170748891415,226,0 +170748891463,227,0 +170748891512,227,0 +170748891560,230,0 +170748891608,227,0 +170748891657,216,0 +170748891707,215,0 +170748891755,216,0 +170748891803,216,0 +170748891851,216,0 +170748891900,217,0 +170748891950,218,0 +170748891999,218,0 +170748892047,219,0 +170748892095,219,0 +170748892145,220,0 +170748892193,222,0 +170748892241,227,0 +170748892290,225,0 +170748892338,225,0 +170748892386,225,0 +170748892434,228,0 +170748892484,227,0 +170748892533,226,0 +170748892581,217,0 +170748892631,215,0 +170748892679,216,0 +170748892727,216,0 +170748892775,216,0 +170748892823,216,0 +170748892871,218,0 +170748892920,218,0 +170748892970,218,0 +170748893019,221,0 +170748893069,221,0 +170748893118,222,0 +170748893168,225,0 +170748893217,226,0 +170748893265,232,0 +170748893315,229,0 +170748893364,227,0 +170748893412,227,0 +170748893460,226,0 +170748893510,217,0 +170748893559,216,0 +170748893609,216,0 +170748893659,217,0 +170748893708,218,0 +170748893756,218,0 +170748893804,219,0 +170748893852,219,0 +170748893900,220,0 +170748893948,223,0 +170748893996,224,0 +170748894045,225,0 +170748894093,225,0 +170748894143,229,0 +170748894191,228,0 +170748894240,228,0 +170748894288,228,0 +170748894336,228,0 +170748894384,228,0 +170748894434,226,0 +170748894483,217,0 +170748894531,218,0 +170748894579,218,0 +170748894629,221,0 +170748894677,221,0 +170748894726,222,0 +170748894774,223,0 +170748894822,224,0 +170748894872,224,0 +170748894919,226,0 +170748894969,227,0 +170748895017,225,0 +170748895065,226,0 +170748895113,227,0 +170748895161,227,0 +170748895209,226,0 +170748895258,227,0 +170748895306,228,0 +170748895354,226,0 +170748895402,220,0 +170748895450,219,0 +170748895498,219,0 +170748895546,221,0 +170748895594,222,0 +170748895642,223,0 +170748895690,225,0 +170748895738,223,0 +170748895786,224,0 +170748895835,226,0 +170748895883,227,0 +170748895931,227,0 +170748895979,227,0 +170748896027,228,0 +170748896075,227,0 +170748896124,228,0 +170748896174,227,0 +170748896222,228,0 +170748896270,228,0 +170748896318,226,0 +170748896366,220,0 +170748896414,220,0 +170748896462,221,0 +170748896510,223,0 +170748896558,223,0 +170748896606,225,0 +170748896655,224,0 +170748896703,225,0 +170748896751,226,0 +170748896801,227,0 +170748896849,226,0 +170748896897,227,0 +170748896945,229,0 +170748896993,227,0 +170748897041,228,0 +170748897090,228,0 +170748897138,228,0 +170748897186,228,0 +170748897234,228,0 +170748897283,218,0 +170748897333,219,0 +170748897382,220,0 +170748897430,220,0 +170748897480,221,0 +170748897528,222,0 +170748897576,223,0 +170748897624,225,0 +170748897673,226,0 +170748897721,225,0 +170748897771,227,0 +170748897819,226,0 +170748897867,228,0 +170748897915,227,0 +170748897963,227,0 +170748898011,221,0 +170748898058,228,0 +170748898106,228,0 +170748898154,229,0 +170748898204,227,0 +170748898252,217,0 +170748898299,217,0 +170748898349,217,0 +170748898398,219,0 +170748898448,219,0 +170748898496,220,0 +170748898545,219,0 +170748898595,220,0 +170748898644,222,0 +170748898694,223,0 +170748898742,223,0 +170748898791,225,0 +170748898841,226,0 +170748898889,226,0 +170748898937,227,0 +170748898985,227,0 +170748899033,227,0 +170748899082,226,0 +170748899130,228,0 +170748899180,217,0 +170748899228,215,0 +170748899277,216,0 +170748899327,216,0 +170748899375,216,0 +170748899423,217,0 +170748899472,217,0 +170748899520,217,0 +170748899570,218,0 +170748899619,220,0 +170748899667,220,0 +170748899715,222,0 +170748899765,223,0 +170748899814,224,0 +170748899864,225,0 +170748899912,225,0 +170748899961,225,0 +170748900011,225,0 +170748900059,226,0 +170748900107,223,0 +170748900155,215,0 +170748900204,215,0 +170748900252,215,0 +170748900302,216,0 +170748900351,216,0 +170748900399,216,0 +170748900449,217,0 +170748900498,217,0 +170748900546,218,0 +170748900594,219,0 +170748900644,220,0 +170748900693,222,0 +170748900741,224,0 +170748900789,227,0 +170748900839,224,0 +170748900888,225,0 +170748900938,226,0 +170748900986,227,0 +170748901034,227,0 +170748901083,217,0 +170748901131,215,0 +170748901179,216,0 +170748901227,216,0 +170748901275,216,0 +170748901325,216,0 +170748901373,217,0 +170748901421,218,0 +170748901469,218,0 +170748901517,219,0 +170748901566,221,0 +170748901616,222,0 +170748901665,223,0 +170748901715,226,0 +170748901764,224,0 +170748901814,225,0 +170748901862,229,0 +170748901911,225,0 +170748901961,228,0 +170748902011,218,0 +170748902060,216,0 +170748902108,216,0 +170748902156,216,0 +170748902204,217,0 +170748902253,217,0 +170748902303,217,0 +170748902351,218,0 +170748902399,218,0 +170748902448,218,0 +170748902498,220,0 +170748902546,224,0 +170748902595,224,0 +170748902643,224,0 +170748902693,226,0 +170748902743,227,0 +170748902790,228,0 +170748902838,228,0 +170748902888,226,0 +170748902936,225,0 +170748902984,216,0 +170748903032,216,0 +170748903081,216,0 +170748903129,216,0 +170748903177,217,0 +170748903225,217,0 +170748903273,217,0 +170748903321,218,0 +170748903369,219,0 +170748903417,221,0 +170748903467,221,0 +170748903515,223,0 +170748903563,224,0 +170748903611,224,0 +170748903659,225,0 +170748903708,226,0 +170748903756,225,0 +170748903806,226,0 +170748903853,228,0 +170748903903,219,0 +170748903951,216,0 +170748904000,216,0 +170748904048,216,0 +170748904096,215,0 +170748904144,216,0 +170748904194,216,0 +170748904243,217,0 +170748904291,217,0 +170748904339,218,0 +170748904389,218,0 +170748904438,219,0 +170748904486,220,0 +170748904536,222,0 +170748904584,224,0 +170748904633,225,0 +170748904681,224,0 +170748904731,224,0 +170748904779,226,0 +170748904828,228,0 +170748904876,216,0 +170748904924,215,0 +170748904974,216,0 +170748905022,216,0 +170748905071,217,0 +170748905119,217,0 +170748905167,218,0 +170748905217,217,0 +170748905265,217,0 +170748905314,219,0 +170748905362,222,0 +170748905410,221,0 +170748905460,222,0 +170748905508,223,0 +170748905557,224,0 +170748905605,224,0 +170748905653,225,0 +170748905701,227,0 +170748905749,227,0 +170748905797,217,0 +170748905845,216,0 +170748905895,216,0 +170748905942,216,0 +170748905990,216,0 +170748906038,217,0 +170748906086,217,0 +170748906136,217,0 +170748906184,217,0 +170748906232,219,0 +170748906280,221,0 +170748906328,221,0 +170748906377,222,0 +170748906427,223,0 +170748906476,224,0 +170748906524,225,0 +170748906574,226,0 +170748906622,226,0 +170748906671,228,0 +170748906721,217,0 +170748906770,215,0 +170748906818,215,0 +170748906866,216,0 +170748906916,216,0 +170748906964,217,0 +170748907012,217,0 +170748907060,216,0 +170748907107,218,0 +170748907155,219,0 +170748907203,219,0 +170748907253,220,0 +170748907300,220,0 +170748907348,222,0 +170748907396,222,0 +170748907446,223,0 +170748907494,224,0 +170748907542,227,0 +170748907590,226,0 +170748907637,228,0 +170748907685,218,0 +170748907733,215,0 +170748907783,216,0 +170748907832,217,0 +170748907880,216,0 +170748907928,217,0 +170748907976,219,0 +170748908024,220,0 +170748908071,221,0 +170748908119,222,0 +170748908167,222,0 +170748908215,223,0 +170748908263,224,0 +170748908311,226,0 +170748908359,226,0 +170748908407,226,0 +170748908456,225,0 +170748908504,227,0 +170748908553,229,0 +170748908601,227,0 +170748908649,216,0 +170748908698,216,0 +170748908746,218,0 +170748908796,219,0 +170748908844,219,0 +170748908892,222,0 +170748908939,220,0 +170748908987,222,0 +170748909035,223,0 +170748909085,224,0 +170748909133,225,0 +170748909180,228,0 +170748909228,226,0 +170748909278,228,0 +170748909326,229,0 +170748909375,229,0 +170748909425,228,0 +170748909474,229,0 +170748909522,229,0 +170748909570,218,0 +170748909618,216,0 +170748909666,217,0 +170748909714,219,0 +170748909762,219,0 +170748909810,220,0 +170748909858,222,0 +170748909906,221,0 +170748909955,224,0 +170748910003,223,0 +170748910051,225,0 +170748910099,227,0 +170748910147,227,0 +170748910196,228,0 +170748910244,228,0 +170748910293,228,0 +170748910341,228,0 +170748910389,228,0 +170748910437,228,0 +170748910485,227,0 +170748910533,216,0 +170748910581,217,0 +170748910629,218,0 +170748910679,218,0 +170748910727,219,0 +170748910776,220,0 +170748910826,220,0 +170748910874,221,0 +170748910922,222,0 +170748910970,223,0 +170748911019,225,0 +170748911069,226,0 +170748911117,227,0 +170748911165,227,0 +170748911213,225,0 +170748911261,229,0 +170748911309,228,0 +170748911357,228,0 +170748911406,228,0 +170748911454,217,0 +170748911502,216,0 +170748911552,216,0 +170748911599,218,0 +170748911649,219,0 +170748911698,219,0 +170748911748,221,0 +170748911798,221,0 +170748911847,222,0 +170748911897,223,0 +170748911945,223,0 +170748911994,222,0 +170748912042,226,0 +170748912090,226,0 +170748912138,226,0 +170748912186,226,0 +170748912236,227,0 +170748912284,226,0 +170748912333,228,0 +170748912381,227,0 +170748912431,216,0 +170748912479,216,0 +170748912527,216,0 +170748912575,217,0 +170748912624,218,0 +170748912674,219,0 +170748912722,221,0 +170748912770,220,0 +170748912818,221,0 +170748912867,223,0 +170748912917,223,0 +170748912965,226,0 +170748913014,225,0 +170748913062,225,0 +170748913110,228,0 +170748913160,228,0 +170748913208,228,0 +170748913256,226,0 +170748913304,228,0 +170748913352,217,0 +170748913401,216,0 +170748913451,216,0 +170748913500,216,0 +170748913548,217,0 +170748913596,218,0 +170748913646,220,0 +170748913694,220,0 +170748913742,219,0 +170748913790,222,0 +170748913838,222,0 +170748913886,226,0 +170748913934,224,0 +170748913982,227,0 +170748914031,226,0 +170748914079,227,0 +170748914129,228,0 +170748914178,227,0 +170748914228,229,0 +170748914277,223,0 +170748914327,216,0 +170748914375,217,0 +170748914422,217,0 +170748914470,217,0 +170748914518,218,0 +170748914566,219,0 +170748914614,219,0 +170748914662,220,0 +170748914710,221,0 +170748914757,221,0 +170748914805,221,0 +170748914855,224,0 +170748914904,224,0 +170748914952,229,0 +170748915000,226,0 +170748915050,227,0 +170748915098,227,0 +170748915145,227,0 +170748915193,227,0 +170748915241,218,0 +170748915289,216,0 +170748915337,217,0 +170748915386,217,0 +170748915436,218,0 +170748915485,219,0 +170748915533,219,0 +170748915581,221,0 +170748915631,221,0 +170748915680,222,0 +170748915730,224,0 +170748915779,229,0 +170748915827,225,0 +170748915875,229,0 +170748915924,227,0 +170748915972,228,0 +170748916020,227,0 +170748916070,229,0 +170748916119,229,0 +170748916167,223,0 +170748916215,216,0 +170748916263,216,0 +170748916311,216,0 +170748916361,217,0 +170748916409,218,0 +170748916457,219,0 +170748916506,220,0 +170748916556,221,0 +170748916605,222,0 +170748916653,221,0 +170748916703,225,0 +170748916751,225,0 +170748916800,227,0 +170748916848,226,0 +170748916898,226,0 +170748916946,226,0 +170748916994,226,0 +170748917043,228,0 +170748917093,227,0 +170748917141,217,0 +170748917188,216,0 +170748917236,216,0 +170748917286,217,0 +170748917334,218,0 +170748917383,221,0 +170748917431,222,0 +170748917481,222,0 +170748917529,222,0 +170748917577,223,0 +170748917625,224,0 +170748917674,226,0 +170748917722,226,0 +170748917772,227,0 +170748917821,228,0 +170748917869,227,0 +170748917917,226,0 +170748917965,225,0 +170748918013,228,0 +170748918061,224,0 +170748918109,217,0 +170748918156,219,0 +170748918204,220,0 +170748918252,221,0 +170748918300,221,0 +170748918350,223,0 +170748918399,224,0 +170748918449,224,0 +170748918497,225,0 +170748918546,226,0 +170748918594,227,0 +170748918642,227,0 +170748918690,229,0 +170748918740,227,0 +170748918789,229,0 +170748918839,228,0 +170748918887,224,0 +170748918935,228,0 +170748918983,227,0 +170748919031,219,0 +170748919080,218,0 +170748919128,219,0 +170748919176,219,0 +170748919224,221,0 +170748919272,222,0 +170748919319,224,0 +170748919367,224,0 +170748919415,225,0 +170748919463,229,0 +170748919511,226,0 +170748919559,226,0 +170748919607,228,0 +170748919655,228,0 +170748919703,229,0 +170748919751,228,0 +170748919800,228,0 +170748919848,228,0 +170748919896,227,0 +170748919944,228,0 +170748919992,216,0 +170748920040,217,0 +170748920088,218,0 +170748920135,220,0 +170748920183,221,0 +170748920231,221,0 +170748920281,220,0 +170748920329,224,0 +170748920377,226,0 +170748920425,226,0 +170748920474,226,0 +170748920522,226,0 +170748920572,227,0 +170748920620,228,0 +170748920668,227,0 +170748920716,228,0 +170748920763,228,0 +170748920811,227,0 +170748920859,228,0 +170748920908,218,0 +170748920955,216,0 +170748921003,215,0 +170748921051,216,0 +170748921101,216,0 +170748921150,217,0 +170748921198,219,0 +170748921246,219,0 +170748921296,220,0 +170748921344,221,0 +170748921391,222,0 +170748921439,223,0 +170748921487,224,0 +170748921535,225,0 +170748921583,228,0 +170748921631,227,0 +170748921680,228,0 +170748921728,226,0 +170748921776,227,0 +170748921826,228,0 +170748921874,216,0 +170748921922,215,0 +170748921969,216,0 +170748922019,216,0 +170748922067,216,0 +170748922116,217,0 +170748922164,217,0 +170748922214,218,0 +170748922264,218,0 +170748922312,218,0 +170748922361,219,0 +170748922409,221,0 +170748922457,222,0 +170748922507,222,0 +170748922556,223,0 +170748922606,225,0 +170748922654,226,0 +170748922702,225,0 +170748922751,228,0 +170748922801,218,0 +170748922850,216,0 +170748922898,217,0 +170748922946,216,0 +170748922994,218,0 +170748923044,219,0 +170748923092,220,0 +170748923140,219,0 +170748923188,221,0 +170748923237,223,0 +170748923285,220,0 +170748923333,223,0 +170748923381,224,0 +170748923428,225,0 +170748923476,226,0 +170748923524,226,0 +170748923572,226,0 +170748923620,230,0 +170748923668,227,0 +170748923716,227,0 +170748923764,218,0 +170748923812,217,0 +170748923861,219,0 +170748923909,219,0 +170748923957,220,0 +170748924005,222,0 +170748924053,222,0 +170748924100,224,0 +170748924148,227,0 +170748924198,227,0 +170748924246,224,0 +170748924295,228,0 +170748924345,228,0 +170748924393,229,0 +170748924441,232,0 +170748924489,230,0 +170748924537,230,0 +170748924584,228,0 +170748924632,228,0 +170748924680,228,0 +170748924730,217,0 +170748924778,217,0 +170748924826,219,0 +170748924875,220,0 +170748924925,220,0 +170748924973,221,0 +170748925020,222,0 +170748925068,222,0 +170748925116,223,0 +170748925164,225,0 +170748925214,225,0 +170748925262,229,0 +170748925311,227,0 +170748925361,227,0 +170748925410,228,0 +170748925460,230,0 +170748925509,229,0 +170748925557,228,0 +170748925605,227,0 +170748925653,218,0 +170748925703,216,0 +170748925751,216,0 +170748925800,218,0 +170748925848,219,0 +170748925898,219,0 +170748925947,220,0 +170748925997,223,0 +170748926046,223,0 +170748926094,222,0 +170748926142,226,0 +170748926190,225,0 +170748926238,225,0 +170748926286,226,0 +170748926334,228,0 +170748926384,227,0 +170748926432,226,0 +170748926480,226,0 +170748926527,227,0 +170748926575,227,0 +170748926625,217,0 +170748926674,215,0 +170748926724,216,0 +170748926774,217,0 +170748926823,218,0 +170748926872,219,0 +170748926922,220,0 +170748926970,221,0 +170748927020,220,0 +170748927069,223,0 +170748927119,224,0 +170748927168,226,0 +170748927216,226,0 +170748927264,227,0 +170748927314,226,0 +170748927363,226,0 +170748927413,218,0 +170748927461,227,0 +170748927510,227,0 +170748927558,217,0 +170748927608,216,0 +170748927656,216,0 +170748927704,216,0 +170748927751,218,0 +170748927799,219,0 +170748927847,220,0 +170748927895,220,0 +170748927945,222,0 +170748927994,223,0 +170748928044,223,0 +170748928092,225,0 +170748928140,226,0 +170748928189,227,0 +170748928237,228,0 +170748928285,227,0 +170748928335,228,0 +170748928383,229,0 +170748928432,227,0 +170748928480,228,0 +170748928530,217,0 +170748928578,215,0 +170748928627,215,0 +170748928675,216,0 +170748928725,215,0 +170748928773,216,0 +170748928822,217,0 +170748928872,218,0 +170748928920,220,0 +170748928968,220,0 +170748929017,221,0 +170748929065,223,0 +170748929113,222,0 +170748929163,225,0 +170748929211,224,0 +170748929261,228,0 +170748929308,226,0 +170748929356,227,0 +170748929406,226,0 +170748929454,227,0 +170748929502,215,0 +170748929551,215,0 +170748929599,216,0 +170748929647,216,0 +170748929697,216,0 +170748929746,217,0 +170748929794,220,0 +170748929842,219,0 +170748929892,219,0 +170748929941,219,0 +170748929989,222,0 +170748930039,222,0 +170748930088,223,0 +170748930136,224,0 +170748930184,224,0 +170748930234,229,0 +170748930282,226,0 +170748930331,224,0 +170748930379,228,0 +170748930429,218,0 +170748930478,215,0 +170748930528,215,0 +170748930576,216,0 +170748930624,217,0 +170748930672,218,0 +170748930721,218,0 +170748930769,219,0 +170748930817,219,0 +170748930865,220,0 +170748930913,223,0 +170748930961,225,0 +170748931011,224,0 +170748931059,226,0 +170748931107,225,0 +170748931156,227,0 +170748931206,228,0 +170748931254,228,0 +170748931302,228,0 +170748931351,227,0 +170748931399,216,0 +170748931449,216,0 +170748931497,216,0 +170748931544,216,0 +170748931592,217,0 +170748931642,219,0 +170748931691,220,0 +170748931741,220,0 +170748931790,220,0 +170748931840,222,0 +170748931888,222,0 +170748931938,223,0 +170748931987,225,0 +170748932035,226,0 +170748932083,226,0 +170748932131,232,0 +170748932180,228,0 +170748932228,227,0 +170748932278,229,0 +170748932327,217,0 +170748932377,215,0 +170748932427,215,0 +170748932476,216,0 +170748932524,216,0 +170748932574,217,0 +170748932623,217,0 +170748932671,216,0 +170748932720,218,0 +170748932768,218,0 +170748932816,220,0 +170748932866,221,0 +170748932916,224,0 +170748932963,224,0 +170748933011,225,0 +170748933061,227,0 +170748933110,226,0 +170748933160,228,0 +170748933209,229,0 +170748933259,226,0 +170748933309,215,0 +170748933358,216,0 +170748933408,215,0 +170748933457,216,0 +170748933507,216,0 +170748933556,216,0 +170748933606,217,0 +170748933655,217,0 +170748933703,219,0 +170748933753,218,0 +170748933801,221,0 +170748933849,223,0 +170748933897,223,0 +170748933946,224,0 +170748933996,225,0 +170748934045,224,0 +170748934093,225,0 +170748934141,224,0 +170748934191,227,0 +170748934240,218,0 +170748934288,216,0 +170748934336,216,0 +170748934384,216,0 +170748934432,216,0 +170748934480,217,0 +170748934528,217,0 +170748934576,217,0 +170748934626,218,0 +170748934674,218,0 +170748934723,219,0 +170748934771,221,0 +170748934821,222,0 +170748934870,224,0 +170748934918,223,0 +170748934966,223,0 +170748935016,227,0 +170748935064,228,0 +170748935111,227,0 +170748935161,227,0 +170748935209,217,0 +170748935257,216,0 +170748935305,216,0 +170748935353,216,0 +170748935401,216,0 +170748935450,217,0 +170748935500,217,0 +170748935548,218,0 +170748935597,218,0 +170748935645,218,0 +170748935695,219,0 +170748935743,224,0 +170748935793,222,0 +170748935842,224,0 +170748935892,224,0 +170748935939,221,0 +170748935987,226,0 +170748936035,225,0 +170748936085,227,0 +170748936133,225,0 +170748936181,215,0 +170748936229,215,0 +170748936278,215,0 +170748936326,216,0 +170748936376,215,0 +170748936424,217,0 +170748936473,219,0 +170748936523,221,0 +170748936572,221,0 +170748936620,221,0 +170748936670,222,0 +170748936718,223,0 +170748936766,223,0 +170748936815,224,0 +170748936865,225,0 +170748936914,224,0 +170748936962,225,0 +170748937010,226,0 +170748937060,227,0 +170748937108,217,0 +170748937156,215,0 +170748937204,215,0 +170748937253,215,0 +170748937303,216,0 +170748937351,217,0 +170748937399,217,0 +170748937448,218,0 +170748937496,218,0 +170748937544,220,0 +170748937592,221,0 +170748937640,224,0 +170748937688,224,0 +170748937738,224,0 +170748937786,224,0 +170748937835,226,0 +170748937883,227,0 +170748937933,228,0 +170748937982,227,0 +170748938030,230,0 +170748938078,217,0 +170748938126,216,0 +170748938174,216,0 +170748938222,216,0 +170748938270,217,0 +170748938318,217,0 +170748938366,217,0 +170748938415,217,0 +170748938463,218,0 +170748938511,219,0 +170748938561,220,0 +170748938610,221,0 +170748938658,222,0 +170748938708,222,0 +170748938756,222,0 +170748938804,224,0 +170748938853,225,0 +170748938901,225,0 +170748938951,225,0 +170748939000,227,0 +170748939050,229,0 +170748939098,227,0 +170748939146,229,0 +170748939195,229,0 +170748939243,227,0 +170748939291,228,0 +170748939339,225,0 +170748939389,227,0 +170748939437,230,0 +170748939485,218,0 +170748939533,215,0 +170748939581,216,0 +170748939629,217,0 +170748939677,219,0 +170748939725,219,0 +170748939772,220,0 +170748939822,221,0 +170748939870,222,0 +170748939919,222,0 +170748939969,223,0 +170748940017,224,0 +170748940065,228,0 +170748940113,227,0 +170748940161,227,0 +170748940210,227,0 +170748940258,229,0 +170748940306,228,0 +170748940356,228,0 +170748940405,227,0 +170748940453,216,0 +170748940501,216,0 +170748940549,217,0 +170748940597,218,0 +170748940645,219,0 +170748940693,220,0 +170748940741,221,0 +170748940789,221,0 +170748940837,223,0 +170748940884,223,0 +170748940934,225,0 +170748940982,225,0 +170748941030,226,0 +170748941078,226,0 +170748941126,228,0 +170748941174,226,0 +170748941221,227,0 +170748941269,227,0 +170748941317,228,0 +170748941365,227,0 +170748941413,216,0 +170748941461,215,0 +170748941511,216,0 +170748941559,216,0 +170748941607,218,0 +170748941655,218,0 +170748941703,221,0 +170748941751,221,0 +170748941798,223,0 +170748941846,222,0 +170748941894,224,0 +170748941942,224,0 +170748941992,226,0 +170748942041,227,0 +170748942091,226,0 +170748942139,227,0 +170748942187,227,0 +170748942235,228,0 +170748942284,228,0 +170748942334,227,0 +170748942382,216,0 +170748942430,216,0 +170748942479,217,0 +170748942527,218,0 +170748942575,219,0 +170748942623,220,0 +170748942671,221,0 +170748942719,221,0 +170748942769,223,0 +170748942818,222,0 +170748942866,225,0 +170748942914,225,0 +170748942962,226,0 +170748943010,228,0 +170748943058,226,0 +170748943108,228,0 +170748943156,228,0 +170748943203,228,0 +170748943251,227,0 +170748943301,218,0 +170748943349,216,0 +170748943397,216,0 +170748943446,217,0 +170748943496,217,0 +170748943545,217,0 +170748943595,218,0 +170748943643,218,0 +170748943692,219,0 +170748943740,221,0 +170748943790,223,0 +170748943840,223,0 +170748943888,224,0 +170748943935,225,0 +170748943983,229,0 +170748944031,228,0 +170748944081,228,0 +170748944130,229,0 +170748944178,229,0 +170748944228,228,0 +170748944276,217,0 +170748944324,216,0 +170748944372,217,0 +170748944421,217,0 +170748944469,217,0 +170748944519,219,0 +170748944568,218,0 +170748944616,220,0 +170748944666,220,0 +170748944714,220,0 +170748944762,223,0 +170748944811,224,0 +170748944859,225,0 +170748944907,228,0 +170748944957,225,0 +170748945005,227,0 +170748945053,229,0 +170748945101,229,0 +170748945150,228,0 +170748945198,228,0 +170748945246,215,0 +170748945294,215,0 +170748945342,215,0 +170748945390,215,0 +170748945438,215,0 +170748945486,216,0 +170748945535,216,0 +170748945583,217,0 +170748945631,217,0 +170748945681,217,0 +170748945729,217,0 +170748945778,218,0 +170748945826,220,0 +170748945876,224,0 +170748945924,221,0 +170748945973,222,0 +170748946021,224,0 +170748946071,224,0 +170748946120,227,0 +170748946168,219,0 +170748946218,215,0 +170748946267,217,0 +170748946315,217,0 +170748946363,217,0 +170748946411,219,0 +170748946459,219,0 +170748946507,221,0 +170748946557,221,0 +170748946605,222,0 +170748946654,223,0 +170748946702,224,0 +170748946752,224,0 +170748946800,228,0 +170748946848,225,0 +170748946896,226,0 +170748946944,227,0 +170748946993,227,0 +170748947041,227,0 +170748947089,229,0 +170748947137,218,0 +170748947185,215,0 +170748947234,215,0 +170748947284,215,0 +170748947332,214,0 +170748947380,217,0 +170748947429,218,0 +170748947477,219,0 +170748947525,220,0 +170748947575,224,0 +170748947623,222,0 +170748947671,224,0 +170748947720,225,0 +170748947768,225,0 +170748947818,225,0 +170748947866,226,0 +170748947915,225,0 +170748947963,227,0 +170748948011,227,0 +170748948061,227,0 +170748948109,216,0 +170748948158,215,0 +170748948206,216,0 +170748948254,216,0 +170748948302,216,0 +170748948350,216,0 +170748948399,217,0 +170748948449,217,0 +170748948499,217,0 +170748948546,219,0 +170748948594,219,0 +170748948644,221,0 +170748948692,223,0 +170748948740,227,0 +170748948788,225,0 +170748948836,223,0 +170748948884,225,0 +170748948932,225,0 +170748948980,228,0 +170748949029,226,0 +170748949077,216,0 +170748949125,216,0 +170748949173,216,0 +170748949223,216,0 +170748949271,218,0 +170748949320,217,0 +170748949370,217,0 +170748949418,218,0 +170748949467,218,0 +170748949517,218,0 +170748949566,219,0 +170748949616,221,0 +170748949664,221,0 +170748949712,223,0 +170748949760,223,0 +170748949808,226,0 +170748949856,224,0 +170748949905,224,0 +170748949953,227,0 +170748950001,217,0 +170748950049,216,0 +170748950097,216,0 +170748950147,216,0 +170748950196,220,0 +170748950244,217,0 +170748950293,220,0 +170748950341,220,0 +170748950389,221,0 +170748950437,222,0 +170748950487,223,0 +170748950535,225,0 +170748950583,225,0 +170748950631,227,0 +170748950679,226,0 +170748950727,224,0 +170748950775,226,0 +170748950823,226,0 +170748950871,225,0 +170748950919,228,0 +170748950966,217,0 +170748951014,216,0 +170748951064,216,0 +170748951112,217,0 +170748951160,215,0 +170748951208,218,0 +170748951256,219,0 +170748951305,219,0 +170748951355,221,0 +170748951403,222,0 +170748951451,221,0 +170748951500,223,0 +170748951550,223,0 +170748951598,223,0 +170748951646,225,0 +170748951694,227,0 +170748951742,226,0 +170748951790,226,0 +170748951838,227,0 +170748951886,226,0 +170748951935,217,0 +170748951983,216,0 +170748952031,217,0 +170748952081,217,0 +170748952130,218,0 +170748952178,219,0 +170748952226,220,0 +170748952274,220,0 +170748952322,221,0 +170748952371,223,0 +170748952419,223,0 +170748952469,223,0 +170748952517,226,0 +170748952567,226,0 +170748952616,226,0 +170748952664,226,0 +170748952712,228,0 +170748952761,227,0 +170748952811,226,0 +170748952859,226,0 +170748952908,217,0 +170748952956,217,0 +170748953006,218,0 +170748953054,219,0 +170748953102,220,0 +170748953150,220,0 +170748953198,220,0 +170748953246,221,0 +170748953294,222,0 +170748953342,222,0 +170748953390,223,0 +170748953439,225,0 +170748953487,226,0 +170748953535,229,0 +170748953583,228,0 +170748953631,228,0 +170748953681,227,0 +170748953729,229,0 +170748953777,229,0 +170748953826,219,0 +170748953874,216,0 +170748953922,218,0 +170748953970,218,0 +170748954020,218,0 +170748954068,219,0 +170748954116,221,0 +170748954164,223,0 +170748954212,222,0 +170748954260,224,0 +170748954309,223,0 +170748954359,226,0 +170748954408,227,0 +170748954458,228,0 +170748954506,228,0 +170748954554,226,0 +170748954602,226,0 +170748954649,228,0 +170748954699,230,0 +170748954747,228,0 +170748954795,218,0 +170748954843,216,0 +170748954891,218,0 +170748954939,218,0 +170748954986,219,0 +170748955034,221,0 +170748955082,223,0 +170748955130,223,0 +170748955178,223,0 +170748955226,223,0 +170748955276,225,0 +170748955324,227,0 +170748955372,229,0 +170748955420,227,0 +170748955468,229,0 +170748955517,230,0 +170748955567,228,0 +170748955616,228,0 +170748955666,228,0 +170748955714,227,0 +170748955762,217,0 +170748955811,215,0 +170748955861,217,0 +170748955909,218,0 +170748955958,219,0 +170748956006,220,0 +170748956056,220,0 +170748956104,221,0 +170748956153,222,0 +170748956201,224,0 +170748956249,224,0 +170748956299,225,0 +170748956347,226,0 +170748956395,225,0 +170748956444,224,0 +170748956492,228,0 +170748956540,228,0 +170748956590,228,0 +170748956639,227,0 +170748956687,227,0 +170748956735,217,0 +170748956783,216,0 +170748956831,217,0 +170748956881,218,0 +170748956930,218,0 +170748956978,220,0 +170748957026,220,0 +170748957074,220,0 +170748957122,220,0 +170748957172,221,0 +170748957221,221,0 +170748957269,223,0 +170748957317,224,0 +170748957366,228,0 +170748957414,225,0 +170748957463,227,0 +170748957510,228,0 +170748957558,229,0 +170748957608,228,0 +170748957656,227,0 +170748957704,217,0 +170748957753,217,0 +170748957803,217,0 +170748957851,218,0 +170748957901,220,0 +170748957949,221,0 +170748957997,220,0 +170748958045,221,0 +170748958092,223,0 +170748958142,223,0 +170748958190,223,0 +170748958239,226,0 +170748958289,226,0 +170748958337,228,0 +170748958387,232,0 +170748958436,228,0 +170748958486,228,0 +170748958534,229,0 +170748958583,228,0 +170748958633,227,0 +170748958681,216,0 +170748958728,215,0 +170748958776,216,0 +170748958826,218,0 +170748958874,218,0 +170748958923,220,0 +170748958973,225,0 +170748959021,221,0 +170748959069,223,0 +170748959118,224,0 +170748959166,227,0 +170748959214,225,0 +170748959264,226,0 +170748959312,227,0 +170748959361,230,0 +170748959411,230,0 +170748959460,228,0 +170748959508,227,0 +170748959556,227,0 +170748959604,217,0 +170748959652,215,0 +170748959702,215,0 +170748959751,216,0 +170748959801,217,0 +170748959849,217,0 +170748959897,219,0 +170748959945,221,0 +170748959993,221,0 +170748960042,222,0 +170748960092,224,0 +170748960141,224,0 +170748960191,225,0 +170748960240,225,0 +170748960290,227,0 +170748960339,228,0 +170748960387,228,0 +170748960437,229,0 +170748960485,228,0 +170748960533,228,0 +170748960582,216,0 +170748960630,216,0 +170748960680,215,0 +170748960729,216,0 +170748960779,217,0 +170748960827,218,0 +170748960875,219,0 +170748960924,218,0 +170748960972,220,0 +170748961022,221,0 +170748961070,225,0 +170748961118,224,0 +170748961166,225,0 +170748961213,225,0 +170748961261,227,0 +170748961309,227,0 +170748961357,227,0 +170748961405,227,0 +170748961453,226,0 +170748961503,221,0 +170748961551,216,0 +170748961600,215,0 +170748961650,216,0 +170748961698,216,0 +170748961746,217,0 +170748961794,218,0 +170748961842,220,0 +170748961891,220,0 +170748961939,221,0 +170748961987,223,0 +170748962037,225,0 +170748962085,224,0 +170748962134,224,0 +170748962184,228,0 +170748962233,227,0 +170748962281,228,0 +170748962329,228,0 +170748962379,228,0 +170748962428,227,0 +170748962478,218,0 +170748962526,216,0 +170748962575,217,0 +170748962625,218,0 +170748962673,219,0 +170748962721,220,0 +170748962770,221,0 +170748962818,223,0 +170748962866,226,0 +170748962914,223,0 +170748962964,224,0 +170748963013,225,0 +170748963063,227,0 +170748963111,226,0 +170748963159,227,0 +170748963207,227,0 +170748963256,228,0 +170748963306,228,0 +170748963355,227,0 +170748963405,227,0 +170748963454,217,0 +170748963504,215,0 +170748963552,215,0 +170748963600,217,0 +170748963648,218,0 +170748963697,219,0 +170748963747,221,0 +170748963797,222,0 +170748963845,223,0 +170748963892,224,0 +170748963940,227,0 +170748963988,225,0 +170748964036,224,0 +170748964086,227,0 +170748964135,227,0 +170748964185,227,0 +170748964233,230,0 +170748964281,226,0 +170748964330,227,0 +170748964378,225,0 +170748964428,216,0 +170748964476,216,0 +170748964525,216,0 +170748964573,216,0 +170748964623,217,0 +170748964671,218,0 +170748964719,218,0 +170748964768,219,0 +170748964818,220,0 +170748964867,222,0 +170748964915,222,0 +170748964963,224,0 +170748965013,224,0 +170748965062,225,0 +170748965112,227,0 +170748965160,227,0 +170748965208,227,0 +170748965257,226,0 +170748965305,228,0 +170748965355,217,0 +170748965404,216,0 +170748965454,215,0 +170748965502,216,0 +170748965549,216,0 +170748965597,217,0 +170748965645,218,0 +170748965695,219,0 +170748965743,220,0 +170748965791,221,0 +170748965839,223,0 +170748965887,222,0 +170748965935,224,0 +170748965983,224,0 +170748966031,228,0 +170748966079,226,0 +170748966127,226,0 +170748966176,226,0 +170748966224,227,0 +170748966274,227,0 +170748966322,218,0 +170748966370,215,0 +170748966418,215,0 +170748966465,216,0 +170748966513,216,0 +170748966561,217,0 +170748966611,217,0 +170748966659,218,0 +170748966707,220,0 +170748966755,221,0 +170748966804,222,0 +170748966853,222,0 +170748966902,221,0 +170748966952,224,0 +170748967000,225,0 +170748967047,226,0 +170748967095,229,0 +170748967145,226,0 +170748967193,226,0 +170748967241,233,0 +170748967290,216,0 +170748967340,216,0 +170748967388,216,0 +170748967436,218,0 +170748967484,219,0 +170748967533,218,0 +170748967583,219,0 +170748967632,221,0 +170748967682,221,0 +170748967730,221,0 +170748967779,224,0 +170748967829,224,0 +170748967877,226,0 +170748967925,227,0 +170748967973,228,0 +170748968021,227,0 +170748968069,230,0 +170748968117,228,0 +170748968166,227,0 +170748968216,218,0 +170748968264,216,0 +170748968312,216,0 +170748968360,218,0 +170748968409,219,0 +170748968459,219,0 +170748968507,220,0 +170748968555,221,0 +170748968603,222,0 +170748968651,222,0 +170748968698,224,0 +170748968746,223,0 +170748968794,226,0 +170748968842,225,0 +170748968892,227,0 +170748968940,229,0 +170748968988,229,0 +170748969036,227,0 +170748969083,228,0 +170748969131,227,0 +170748969179,220,0 +170748969227,216,0 +170748969275,216,0 +170748969323,218,0 +170748969371,219,0 +170748969419,221,0 +170748969469,221,0 +170748969518,224,0 +170748969566,224,0 +170748969614,224,0 +170748969662,227,0 +170748969710,228,0 +170748969758,227,0 +170748969806,225,0 +170748969854,226,0 +170748969902,227,0 +170748969951,230,0 +170748969999,231,0 +170748970049,228,0 +170748970097,228,0 +170748970146,218,0 +170748970196,216,0 +170748970244,216,0 +170748970292,218,0 +170748970341,219,0 +170748970389,219,0 +170748970437,219,0 +170748970485,220,0 +170748970533,220,0 +170748970582,223,0 +170748970630,223,0 +170748970678,223,0 +170748970726,224,0 +170748970776,227,0 +170748970825,225,0 +170748970873,226,0 +170748970923,226,0 +170748970971,228,0 +170748971019,227,0 +170748971068,227,0 +170748971116,217,0 +170748971164,216,0 +170748971212,216,0 +170748971262,218,0 +170748971310,218,0 +170748971358,219,0 +170748971406,220,0 +170748971453,221,0 +170748971501,222,0 +170748971549,222,0 +170748971597,223,0 +170748971647,224,0 +170748971695,225,0 +170748971743,226,0 +170748971791,226,0 +170748971840,227,0 +170748971888,231,0 +170748971936,227,0 +170748971986,228,0 +170748972035,227,0 +170748972083,217,0 +170748972131,216,0 +170748972181,216,0 +170748972230,218,0 +170748972278,218,0 +170748972326,219,0 +170748972374,220,0 +170748972422,222,0 +170748972471,221,0 +170748972521,222,0 +170748972569,222,0 +170748972617,225,0 +170748972666,226,0 +170748972716,227,0 +170748972764,227,0 +170748972812,228,0 +170748972860,228,0 +170748972908,227,0 +170748972957,229,0 +170748973005,225,0 +170748973055,216,0 +170748973104,216,0 +170748973152,217,0 +170748973200,218,0 +170748973248,219,0 +170748973296,220,0 +170748973344,220,0 +170748973394,221,0 +170748973443,221,0 +170748973491,223,0 +170748973541,226,0 +170748973590,225,0 +170748973638,227,0 +170748973686,225,0 +170748973734,225,0 +170748973782,226,0 +170748973830,227,0 +170748973880,227,0 +170748973928,227,0 +170748973975,217,0 +170748974023,215,0 +170748974071,216,0 +170748974119,216,0 +170748974167,217,0 +170748974217,218,0 +170748974266,217,0 +170748974314,221,0 +170748974362,218,0 +170748974410,220,0 +170748974460,220,0 +170748974509,221,0 +170748974559,224,0 +170748974607,224,0 +170748974655,226,0 +170748974703,227,0 +170748974752,228,0 +170748974802,226,0 +170748974851,227,0 +170748974899,227,0 +170748974947,216,0 +170748974995,216,0 +170748975043,216,0 +170748975091,215,0 +170748975141,216,0 +170748975190,217,0 +170748975238,217,0 +170748975288,217,0 +170748975337,218,0 +170748975385,218,0 +170748975433,219,0 +170748975481,220,0 +170748975531,221,0 +170748975579,222,0 +170748975628,224,0 +170748975678,225,0 +170748975728,226,0 +170748975777,225,0 +170748975825,227,0 +170748975875,225,0 +170748975923,215,0 +170748975972,215,0 +170748976020,215,0 +170748976068,216,0 +170748976117,216,0 +170748976165,217,0 +170748976213,218,0 +170748976261,219,0 +170748976309,220,0 +170748976357,220,0 +170748976405,221,0 +170748976454,224,0 +170748976502,225,0 +170748976550,228,0 +170748976598,226,0 +170748976646,228,0 +170748976693,228,0 +170748976741,228,0 +170748976789,228,0 +170748976837,223,0 +170748976885,216,0 +170748976933,216,0 +170748976981,216,0 +170748977029,217,0 +170748977077,216,0 +170748977124,218,0 +170748977172,218,0 +170748977220,219,0 +170748977270,220,0 +170748977319,221,0 +170748977367,222,0 +170748977415,224,0 +170748977463,224,0 +170748977513,226,0 +170748977560,226,0 +170748977608,227,0 +170748977656,226,0 +170748977704,227,0 +170748977752,228,0 +170748977800,217,0 +170748977848,215,0 +170748977897,215,0 +170748977945,216,0 +170748977993,216,0 +170748978041,216,0 +170748978089,217,0 +170748978138,219,0 +170748978186,219,0 +170748978234,220,0 +170748978284,220,0 +170748978334,223,0 +170748978381,223,0 +170748978431,224,0 +170748978481,226,0 +170748978529,226,0 +170748978578,227,0 +170748978627,228,0 +170748978675,227,0 +170748978725,229,0 +170748978773,217,0 +170748978821,215,0 +170748978870,215,0 +170748978918,216,0 +170748978966,217,0 +170748979016,216,0 +170748979064,217,0 +170748979113,217,0 +170748979161,217,0 +170748979209,219,0 +170748979257,219,0 +170748979305,225,0 +170748979353,224,0 +170748979401,223,0 +170748979449,222,0 +170748979498,224,0 +170748979546,226,0 +170748979594,225,0 +170748979642,227,0 +170748979690,228,0 +170748979738,216,0 +170748979786,215,0 +170748979834,216,0 +170748979883,216,0 +170748979931,217,0 +170748979981,215,0 +170748980029,216,0 +170748980077,217,0 +170748980125,218,0 +170748980173,219,0 +170748980221,221,0 +170748980271,222,0 +170748980319,223,0 +170748980368,224,0 +170748980418,224,0 +170748980467,225,0 +170748980515,226,0 +170748980563,226,0 +170748980613,227,0 +170748980660,220,0 +170748980708,216,0 +170748980756,216,0 +170748980804,216,0 +170748980854,217,0 +170748980901,218,0 +170748980951,217,0 +170748981000,217,0 +170748981050,218,0 +170748981099,219,0 +170748981147,220,0 +170748981195,222,0 +170748981243,223,0 +170748981291,225,0 +170748981339,226,0 +170748981387,226,0 +170748981436,225,0 +170748981484,227,0 +170748981532,225,0 +170748981580,226,0 +170748981628,217,0 +170748981676,216,0 +170748981724,216,0 +170748981772,216,0 +170748981819,216,0 +170748981869,218,0 +170748981917,219,0 +170748981965,220,0 +170748982014,220,0 +170748982062,221,0 +170748982110,222,0 +170748982158,223,0 +170748982206,224,0 +170748982255,227,0 +170748982303,225,0 +170748982351,227,0 +170748982400,227,0 +170748982448,229,0 +170748982496,228,0 +170748982544,230,0 +170748982594,218,0 +170748982642,216,0 +170748982689,217,0 +170748982737,218,0 +170748982785,220,0 +170748982833,219,0 +170748982881,220,0 +170748982929,221,0 +170748982977,222,0 +170748983025,224,0 +170748983073,225,0 +170748983121,224,0 +170748983168,224,0 +170748983216,227,0 +170748983264,228,0 +170748983314,227,0 +170748983362,227,0 +170748983411,227,0 +170748983459,227,0 +170748983507,227,0 +170748983555,217,0 +170748983603,216,0 +170748983651,216,0 +170748983698,217,0 +170748983746,219,0 +170748983794,220,0 +170748983842,221,0 +170748983890,222,0 +170748983938,223,0 +170748983986,224,0 +170748984034,226,0 +170748984082,229,0 +170748984129,226,0 +170748984177,229,0 +170748984225,227,0 +170748984273,228,0 +170748984321,227,0 +170748984370,227,0 +170748984418,228,0 +170748984466,227,0 +170748984514,217,0 +170748984562,217,0 +170748984610,218,0 +170748984658,219,0 +170748984707,220,0 +170748984755,221,0 +170748984803,223,0 +170748984851,222,0 +170748984899,224,0 +170748984947,225,0 +170748984994,225,0 +170748985044,226,0 +170748985092,227,0 +170748985140,228,0 +170748985188,228,0 +170748985236,230,0 +170748985284,229,0 +170748985332,228,0 +170748985380,228,0 +170748985428,225,0 +170748985476,217,0 +170748985525,215,0 +170748985575,217,0 +170748985623,218,0 +170748985671,220,0 +170748985720,221,0 +170748985770,222,0 +170748985819,222,0 +170748985867,223,0 +170748985917,223,0 +170748985966,226,0 +170748986016,224,0 +170748986065,227,0 +170748986113,229,0 +170748986161,227,0 +170748986209,228,0 +170748986257,228,0 +170748986305,229,0 +170748986354,227,0 +170748986404,219,0 +170748986454,215,0 +170748986502,215,0 +170748986549,215,0 +170748986597,216,0 +170748986645,217,0 +170748986695,219,0 +170748986743,219,0 +170748986791,220,0 +170748986838,220,0 +170748986886,222,0 +170748986936,224,0 +170748986984,225,0 +170748987032,224,0 +170748987079,227,0 +170748987127,227,0 +170748987175,228,0 +170748987223,225,0 +170748987271,228,0 +170748987319,227,0 +170748987366,218,0 +170748987414,216,0 +170748987462,216,0 +170748987510,216,0 +170748987558,217,0 +170748987606,219,0 +170748987654,219,0 +170748987702,220,0 +170748987750,221,0 +170748987797,222,0 +170748987847,222,0 +170748987895,224,0 +170748987943,227,0 +170748987991,225,0 +170748988039,226,0 +170748988086,226,0 +170748988134,227,0 +170748988182,227,0 +170748988230,226,0 +170748988278,226,0 +170748988326,218,0 +170748988375,215,0 +170748988423,216,0 +170748988473,216,0 +170748988521,217,0 +170748988570,217,0 +170748988620,218,0 +170748988668,219,0 +170748988717,220,0 +170748988767,228,0 +170748988816,223,0 +170748988864,224,0 +170748988912,223,0 +170748988960,225,0 +170748989008,226,0 +170748989056,225,0 +170748989104,229,0 +170748989154,227,0 +170748989203,227,0 +170748989251,228,0 +170748989301,218,0 +170748989349,216,0 +170748989397,218,0 +170748989444,216,0 +170748989492,216,0 +170748989542,216,0 +170748989590,217,0 +170748989638,217,0 +170748989685,218,0 +170748989733,218,0 +170748989781,219,0 +170748989831,220,0 +170748989879,221,0 +170748989927,227,0 +170748989974,223,0 +170748990022,224,0 +170748990070,225,0 +170748990120,226,0 +170748990170,227,0 +170748990218,227,0 +170748990265,215,0 +170748990313,214,0 +170748990361,214,0 +170748990409,215,0 +170748990457,215,0 +170748990505,215,0 +170748990553,216,0 +170748990601,216,0 +170748990648,217,0 +170748990696,217,0 +170748990744,218,0 +170748990792,217,0 +170748990842,218,0 +170748990890,219,0 +170748990939,220,0 +170748990987,223,0 +170748991037,224,0 +170748991084,223,0 +170748991132,226,0 +170748991182,227,0 +170748991231,216,0 +170748991279,216,0 +170748991327,216,0 +170748991375,216,0 +170748991423,216,0 +170748991471,218,0 +170748991518,218,0 +170748991568,218,0 +170748991617,220,0 +170748991665,220,0 +170748991713,222,0 +170748991761,224,0 +170748991809,224,0 +170748991857,224,0 +170748991905,226,0 +170748991953,226,0 +170748992001,230,0 +170748992049,227,0 +170748992096,227,0 +170748992144,227,0 +170748992192,216,0 +170748992240,216,0 +170748992288,216,0 +170748992338,216,0 +170748992385,216,0 +170748992433,215,0 +170748992481,215,0 +170748992531,216,0 +170748992580,216,0 +170748992628,218,0 +170748992676,219,0 +170748992724,220,0 +170748992772,222,0 +170748992820,223,0 +170748992867,224,0 +170748992915,225,0 +170748992963,227,0 +170748993011,225,0 +170748993061,227,0 +170748993110,227,0 +170748993158,216,0 +170748993206,216,0 +170748993255,216,0 +170748993303,216,0 +170748993351,217,0 +170748993399,216,0 +170748993447,217,0 +170748993496,217,0 +170748993546,217,0 +170748993594,218,0 +170748993641,219,0 +170748993689,221,0 +170748993737,222,0 +170748993785,221,0 +170748993833,224,0 +170748993881,224,0 +170748993930,224,0 +170748993978,225,0 +170748994028,226,0 +170748994076,217,0 +170748994124,215,0 +170748994171,215,0 +170748994219,216,0 +170748994267,217,0 +170748994317,216,0 +170748994366,217,0 +170748994416,217,0 +170748994465,217,0 +170748994515,217,0 +170748994564,218,0 +170748994612,220,0 +170748994660,222,0 +170748994708,223,0 +170748994756,223,0 +170748994806,225,0 +170748994855,223,0 +170748994903,224,0 +170748994951,227,0 +170748995001,228,0 +170748995048,218,0 +170748995096,216,0 +170748995146,216,0 +170748995194,215,0 +170748995242,217,0 +170748995290,218,0 +170748995339,219,0 +170748995389,220,0 +170748995437,221,0 +170748995485,221,0 +170748995534,222,0 +170748995582,223,0 +170748995630,223,0 +170748995678,224,0 +170748995726,226,0 +170748995774,230,0 +170748995823,226,0 +170748995871,228,0 +170748995921,226,0 +170748995970,227,0 +170748996018,218,0 +170748996066,216,0 +170748996114,216,0 +170748996162,217,0 +170748996210,218,0 +170748996258,218,0 +170748996306,218,0 +170748996354,219,0 +170748996402,220,0 +170748996450,221,0 +170748996500,223,0 +170748996548,223,0 +170748996596,226,0 +170748996645,227,0 +170748996693,230,0 +170748996741,229,0 +170748996789,227,0 +170748996837,227,0 +170748996884,228,0 +170748996932,228,0 +170748996980,217,0 +170748997028,217,0 +170748997076,218,0 +170748997124,219,0 +170748997172,220,0 +170748997220,220,0 +170748997268,220,0 +170748997316,222,0 +170748997363,221,0 +170748997411,222,0 +170748997459,224,0 +170748997507,226,0 +170748997557,227,0 +170748997606,230,0 +170748997654,229,0 +170748997702,230,0 +170748997751,229,0 +170748997799,230,0 +170748997847,227,0 +170748997895,228,0 +170748997945,217,0 +170748997993,216,0 +170748998041,217,0 +170748998090,218,0 +170748998138,218,0 +170748998186,221,0 +170748998234,221,0 +170748998282,222,0 +170748998330,221,0 +170748998378,222,0 +170748998427,222,0 +170748998475,224,0 +170748998525,225,0 +170748998573,228,0 +170748998622,229,0 +170748998672,227,0 +170748998720,228,0 +170748998769,228,0 +170748998817,228,0 +170748998867,228,0 +170748998914,218,0 +170748998962,217,0 +170748999012,216,0 +170748999061,215,0 +170748999111,216,0 +170748999159,217,0 +170748999207,219,0 +170748999255,220,0 +170748999303,220,0 +170748999352,223,0 +170748999402,224,0 +170748999450,225,0 +170748999499,226,0 +170748999547,228,0 +170748999595,229,0 +170748999643,229,0 +170748999692,227,0 +170748999740,227,0 +170748999788,228,0 +170748999836,228,0 +170748999884,217,0 +170748999932,216,0 +170748999980,216,0 +170749000030,216,0 +170749000077,216,0 +170749000125,217,0 +170749000173,220,0 +170749000221,220,0 +170749000269,220,0 +170749000317,222,0 +170749000365,223,0 +170749000413,224,0 +170749000461,224,0 +170749000509,226,0 +170749000557,225,0 +170749000605,227,0 +170749000654,227,0 +170749000702,229,0 +170749000750,229,0 +170749000798,227,0 +170749000848,217,0 +170749000895,215,0 +170749000945,216,0 +170749000993,216,0 +170749001041,216,0 +170749001090,216,0 +170749001140,217,0 +170749001189,219,0 +170749001237,220,0 +170749001285,220,0 +170749001333,221,0 +170749001381,224,0 +170749001429,225,0 +170749001477,225,0 +170749001527,226,0 +170749001575,227,0 +170749001623,228,0 +170749001670,227,0 +170749001720,225,0 +170749001768,228,0 +170749001817,217,0 +170749001867,216,0 +170749001916,217,0 +170749001964,216,0 +170749002014,216,0 +170749002062,218,0 +170749002112,218,0 +170749002159,219,0 +170749002209,218,0 +170749002257,221,0 +170749002305,221,0 +170749002353,225,0 +170749002401,225,0 +170749002449,224,0 +170749002497,225,0 +170749002545,228,0 +170749002594,228,0 +170749002642,228,0 +170749002690,227,0 +170749002738,227,0 +170749002788,217,0 +170749002836,216,0 +170749002885,216,0 +170749002935,216,0 +170749002984,217,0 +170749003032,217,0 +170749003080,217,0 +170749003128,218,0 +170749003178,219,0 +170749003226,221,0 +170749003274,220,0 +170749003321,222,0 +170749003371,223,0 +170749003419,226,0 +170749003467,225,0 +170749003516,226,0 +170749003564,226,0 +170749003614,226,0 +170749003662,227,0 +170749003711,228,0 +170749003759,218,0 +170749003807,215,0 +170749003855,216,0 +170749003903,216,0 +170749003953,216,0 +170749004001,217,0 +170749004050,217,0 +170749004098,218,0 +170749004146,218,0 +170749004195,220,0 +170749004245,221,0 +170749004293,221,0 +170749004341,223,0 +170749004390,224,0 +170749004438,227,0 +170749004486,226,0 +170749004534,227,0 +170749004582,227,0 +170749004631,230,0 +170749004679,228,0 +170749004727,217,0 +170749004775,216,0 +170749004823,216,0 +170749004871,216,0 +170749004920,216,0 +170749004968,218,0 +170749005016,216,0 +170749005066,218,0 +170749005115,219,0 +170749005165,221,0 +170749005214,222,0 +170749005262,223,0 +170749005310,226,0 +170749005360,226,0 +170749005409,227,0 +170749005459,225,0 +170749005507,227,0 +170749005555,228,0 +170749005603,227,0 +170749005652,226,0 +170749005700,216,0 +170749005750,215,0 +170749005799,216,0 +170749005849,216,0 +170749005898,216,0 +170749005946,217,0 +170749005994,219,0 +170749006042,220,0 +170749006092,221,0 +170749006140,222,0 +170749006189,222,0 +170749006237,225,0 +170749006285,226,0 +170749006335,225,0 +170749006384,227,0 +170749006434,226,0 +170749006483,228,0 +170749006531,228,0 +170749006581,230,0 +170749006628,227,0 +170749006676,216,0 +170749006724,215,0 +170749006774,216,0 +170749006823,217,0 +170749006873,218,0 +170749006921,219,0 +170749006968,221,0 +170749007018,222,0 +170749007068,223,0 +170749007117,223,0 +170749007165,225,0 +170749007215,225,0 +170749007262,226,0 +170749007312,227,0 +170749007360,229,0 +170749007409,228,0 +170749007459,228,0 +170749007507,228,0 +170749007555,228,0 +170749007605,225,0 +170749007654,215,0 +170749007702,216,0 +170749007750,216,0 +170749007798,216,0 +170749007846,218,0 +170749007894,219,0 +170749007942,220,0 +170749007990,221,0 +170749008038,222,0 +170749008087,222,0 +170749008135,224,0 +170749008185,224,0 +170749008233,227,0 +170749008282,227,0 +170749008332,226,0 +170749008381,227,0 +170749008431,227,0 +170749008479,226,0 +170749008528,228,0 +170749008578,219,0 +170749008626,218,0 +170749008673,219,0 +170749008723,221,0 +170749008771,220,0 +170749008819,221,0 +170749008868,224,0 +170749008918,223,0 +170749008966,223,0 +170749009014,225,0 +170749009062,225,0 +170749009111,227,0 +170749009159,228,0 +170749009207,228,0 +170749009255,228,0 +170749009303,229,0 +170749009351,228,0 +170749009399,229,0 +170749009447,230,0 +170749009497,230,0 +170749009546,217,0 +170749009594,216,0 +170749009644,216,0 +170749009693,217,0 +170749009741,218,0 +170749009789,219,0 +170749009838,220,0 +170749009886,220,0 +170749009936,223,0 +170749009986,224,0 +170749010034,225,0 +170749010081,225,0 +170749010131,225,0 +170749010180,226,0 +170749010228,227,0 +170749010276,228,0 +170749010324,229,0 +170749010374,227,0 +170749010422,231,0 +170749010470,228,0 +170749010518,217,0 +170749010567,216,0 +170749010615,217,0 +170749010665,217,0 +170749010712,218,0 +170749010760,219,0 +170749010808,220,0 +170749010856,221,0 +170749010904,222,0 +170749010952,224,0 +170749011002,225,0 +170749011051,225,0 +170749011099,227,0 +170749011147,227,0 +170749011196,228,0 +170749011244,230,0 +170749011294,231,0 +170749011342,229,0 +170749011391,228,0 +170749011439,227,0 +170749011489,217,0 +170749011538,216,0 +170749011586,218,0 +170749011634,218,0 +170749011682,221,0 +170749011732,220,0 +170749011780,221,0 +170749011829,222,0 +170749011877,223,0 +170749011927,223,0 +170749011976,224,0 +170749012024,225,0 +170749012072,225,0 +170749012122,226,0 +170749012171,227,0 +170749012219,227,0 +170749012267,231,0 +170749012315,229,0 +170749012363,230,0 +170749012412,229,0 +170749012462,217,0 +170749012512,217,0 +170749012559,216,0 +170749012607,218,0 +170749012655,219,0 +170749012705,221,0 +170749012753,220,0 +170749012800,221,0 +170749012850,221,0 +170749012898,222,0 +170749012946,224,0 +170749012994,225,0 +170749013042,225,0 +170749013091,224,0 +170749013139,225,0 +170749013187,226,0 +170749013235,227,0 +170749013283,228,0 +170749013331,228,0 +170749013379,228,0 +170749013429,217,0 +170749013476,217,0 +170749013524,217,0 +170749013574,227,0 +170749013622,221,0 +170749013669,220,0 +170749013719,222,0 +170749013767,222,0 +170749013815,225,0 +170749013863,226,0 +170749013910,224,0 +170749013958,225,0 +170749014006,230,0 +170749014054,227,0 +170749014102,229,0 +170749014152,227,0 +170749014200,229,0 +170749014249,229,0 +170749014299,230,0 +170749014348,227,0 +170749014396,219,0 +170749014444,217,0 +170749014492,218,0 +170749014541,220,0 +170749014591,219,0 +170749014639,222,0 +170749014687,223,0 +170749014735,222,0 +170749014784,223,0 +170749014832,224,0 +170749014882,226,0 +170749014930,226,0 +170749014979,227,0 +170749015027,224,0 +170749015077,226,0 +170749015125,229,0 +170749015174,228,0 +170749015222,231,0 +170749015270,228,0 +170749015318,228,0 +170749015368,216,0 +170749015416,217,0 +170749015464,219,0 +170749015513,219,0 +170749015563,221,0 +170749015612,220,0 +170749015660,223,0 +170749015708,223,0 +170749015758,222,0 +170749015807,222,0 +170749015855,223,0 +170749015903,224,0 +170749015951,226,0 +170749016000,228,0 +170749016048,228,0 +170749016098,229,0 +170749016146,227,0 +170749016194,229,0 +170749016243,229,0 +170749016291,228,0 +170749016339,216,0 +170749016387,216,0 +170749016437,216,0 +170749016486,216,0 +170749016535,218,0 +170749016583,219,0 +170749016633,217,0 +170749016681,220,0 +170749016729,221,0 +170749016777,222,0 +170749016826,224,0 +170749016876,223,0 +170749016925,224,0 +170749016975,226,0 +170749017024,226,0 +170749017072,225,0 +170749017120,228,0 +170749017168,228,0 +170749017216,230,0 +170749017266,220,0 +170749017314,216,0 +170749017362,216,0 +170749017410,216,0 +170749017458,216,0 +170749017505,215,0 +170749017553,217,0 +170749017603,217,0 +170749017651,219,0 +170749017700,220,0 +170749017748,221,0 +170749017796,223,0 +170749017844,222,0 +170749017892,225,0 +170749017940,225,0 +170749017988,226,0 +170749018036,227,0 +170749018086,227,0 +170749018135,227,0 +170749018185,228,0 +170749018234,218,0 +170749018282,216,0 +170749018330,216,0 +170749018378,216,0 +170749018428,217,0 +170749018476,217,0 +170749018525,218,0 +170749018573,219,0 +170749018621,219,0 +170749018669,220,0 +170749018717,220,0 +170749018765,222,0 +170749018813,226,0 +170749018861,224,0 +170749018910,225,0 +170749018958,225,0 +170749019008,227,0 +170749019057,230,0 +170749019107,226,0 +170749019155,227,0 +170749019203,217,0 +170749019251,215,0 +170749019300,216,0 +170749019350,216,0 +170749019398,216,0 +170749019446,217,0 +170749019495,218,0 +170749019545,219,0 +170749019594,220,0 +170749019642,221,0 +170749019690,221,0 +170749019738,223,0 +170749019786,224,0 +170749019834,224,0 +170749019882,226,0 +170749019932,226,0 +170749019979,227,0 +170749020027,226,0 +170749020075,226,0 +170749020123,228,0 +170749020171,218,0 +170749020219,216,0 +170749020267,216,0 +170749020315,216,0 +170749020362,216,0 +170749020412,218,0 +170749020460,223,0 +170749020509,225,0 +170749020557,220,0 +170749020607,221,0 +170749020656,220,0 +170749020704,223,0 +170749020752,224,0 +170749020802,225,0 +170749020850,225,0 +170749020899,228,0 +170749020947,229,0 +170749020995,227,0 +170749021043,227,0 +170749021091,228,0 +170749021140,217,0 +170749021190,215,0 +170749021238,216,0 +170749021286,215,0 +170749021334,216,0 +170749021381,217,0 +170749021429,217,0 +170749021477,217,0 +170749021525,218,0 +170749021573,218,0 +170749021621,219,0 +170749021669,219,0 +170749021717,221,0 +170749021765,223,0 +170749021813,225,0 +170749021861,225,0 +170749021909,225,0 +170749021957,225,0 +170749022005,225,0 +170749022054,227,0 +170749022104,217,0 +170749022152,215,0 +170749022199,215,0 +170749022247,215,0 +170749022295,216,0 +170749022345,216,0 +170749022393,216,0 +170749022440,217,0 +170749022488,217,0 +170749022536,216,0 +170749022586,218,0 +170749022633,220,0 +170749022683,222,0 +170749022731,224,0 +170749022779,223,0 +170749022827,225,0 +170749022874,224,0 +170749022922,225,0 +170749022970,225,0 +170749023018,228,0 +170749023066,216,0 +170749023115,215,0 +170749023165,215,0 +170749023213,215,0 +170749023261,216,0 +170749023309,216,0 +170749023357,217,0 +170749023405,217,0 +170749023453,217,0 +170749023502,217,0 +170749023552,219,0 +170749023600,220,0 +170749023648,221,0 +170749023696,221,0 +170749023745,223,0 +170749023793,224,0 +170749023843,238,0 +170749023892,225,0 +170749023940,224,0 +170749023990,227,0 +170749024037,217,0 +170749024085,215,0 +170749024135,215,0 +170749024183,215,0 +170749024232,215,0 +170749024280,216,0 +170749024328,215,0 +170749024378,216,0 +170749024427,217,0 +170749024477,217,0 +170749024525,216,0 +170749024573,218,0 +170749024622,219,0 +170749024672,221,0 +170749024720,222,0 +170749024769,223,0 +170749024817,223,0 +170749024867,223,0 +170749024915,224,0 +170749024963,227,0 +170749025011,217,0 +170749025059,216,0 +170749025106,215,0 +170749025156,216,0 +170749025204,216,0 +170749025253,217,0 +170749025301,218,0 +170749025349,219,0 +170749025397,219,0 +170749025445,221,0 +170749025495,222,0 +170749025543,223,0 +170749025590,225,0 +170749025638,224,0 +170749025686,228,0 +170749025734,227,0 +170749025784,226,0 +170749025832,227,0 +170749025881,227,0 +170749025931,227,0 +170749025979,217,0 +170749026027,215,0 +170749026076,215,0 +170749026126,216,0 +170749026174,216,0 +170749026223,216,0 +170749026271,218,0 +170749026321,218,0 +170749026369,220,0 +170749026418,220,0 +170749026468,222,0 +170749026516,222,0 +170749026565,222,0 +170749026615,225,0 +170749026663,229,0 +170749026711,227,0 +170749026759,228,0 +170749026808,227,0 +170749026856,226,0 +170749026904,227,0 +170749026952,217,0 +170749027000,216,0 +170749027049,216,0 +170749027099,217,0 +170749027147,217,0 +170749027195,219,0 +170749027244,220,0 +170749027292,220,0 +170749027340,221,0 +170749027388,222,0 +170749027436,223,0 +170749027484,225,0 +170749027534,225,0 +170749027583,226,0 +170749027631,231,0 +170749027681,228,0 +170749027728,228,0 +170749027776,229,0 +170749027824,227,0 +170749027872,227,0 +170749027920,218,0 +170749027968,216,0 +170749028016,217,0 +170749028064,218,0 +170749028113,219,0 +170749028161,220,0 +170749028209,222,0 +170749028257,222,0 +170749028305,222,0 +170749028353,223,0 +170749028401,224,0 +170749028449,227,0 +170749028498,228,0 +170749028548,225,0 +170749028597,226,0 +170749028645,229,0 +170749028695,225,0 +170749028743,229,0 +170749028791,228,0 +170749028839,227,0 +170749028887,217,0 +170749028935,216,0 +170749028984,218,0 +170749029032,220,0 +170749029080,221,0 +170749029129,222,0 +170749029177,222,0 +170749029225,224,0 +170749029273,225,0 +170749029321,225,0 +170749029369,226,0 +170749029419,227,0 +170749029468,227,0 +170749029516,228,0 +170749029566,228,0 +170749029615,229,0 +170749029663,229,0 +170749029711,228,0 +170749029759,228,0 +170749029807,229,0 +170749029857,218,0 +170749029906,217,0 +170749029954,219,0 +170749030004,219,0 +170749030052,220,0 +170749030101,223,0 +170749030149,222,0 +170749030197,223,0 +170749030246,223,0 +170749030296,223,0 +170749030345,226,0 +170749030395,225,0 +170749030445,227,0 +170749030494,226,0 +170749030542,226,0 +170749030590,227,0 +170749030638,229,0 +170749030686,231,0 +170749030734,228,0 +170749030782,227,0 +170749030831,217,0 +170749030881,216,0 +170749030930,217,0 +170749030978,219,0 +170749031026,220,0 +170749031074,221,0 +170749031122,222,0 +170749031170,222,0 +170749031219,224,0 +170749031269,224,0 +170749031317,226,0 +170749031365,226,0 +170749031414,228,0 +170749031462,227,0 +170749031510,229,0 +170749031560,227,0 +170749031608,228,0 +170749031657,228,0 +170749031707,228,0 +170749031755,226,0 +170749031805,217,0 +170749031854,215,0 +170749031904,215,0 +170749031953,216,0 +170749032002,217,0 +170749032051,218,0 +170749032098,219,0 +170749032146,221,0 +170749032194,222,0 +170749032244,221,0 +170749032293,223,0 +170749032341,225,0 +170749032389,228,0 +170749032437,226,0 +170749032485,227,0 +170749032535,225,0 +170749032583,226,0 +170749032630,227,0 +170749032678,227,0 +170749032726,227,0 +170749032774,217,0 +170749032824,214,0 +170749032873,215,0 +170749032921,214,0 +170749032969,215,0 +170749033019,217,0 +170749033067,216,0 +170749033116,218,0 +170749033164,218,0 +170749033212,219,0 +170749033262,219,0 +170749033311,222,0 +170749033359,223,0 +170749033409,225,0 +170749033457,224,0 +170749033506,226,0 +170749033556,227,0 +170749033603,228,0 +170749033651,228,0 +170749033699,227,0 +170749033747,216,0 +170749033795,215,0 +170749033843,216,0 +170749033891,216,0 +170749033939,216,0 +170749033987,217,0 +170749034036,218,0 +170749034086,219,0 +170749034135,220,0 +170749034183,221,0 +170749034231,221,0 +170749034281,223,0 +170749034329,222,0 +170749034377,224,0 +170749034425,224,0 +170749034473,224,0 +170749034521,225,0 +170749034569,226,0 +170749034617,226,0 +170749034666,229,0 +170749034714,216,0 +170749034763,215,0 +170749034813,215,0 +170749034862,216,0 +170749034910,216,0 +170749034958,217,0 +170749035008,217,0 +170749035056,218,0 +170749035104,219,0 +170749035152,218,0 +170749035199,220,0 +170749035247,221,0 +170749035297,222,0 +170749035345,224,0 +170749035393,225,0 +170749035441,226,0 +170749035489,228,0 +170749035538,225,0 +170749035586,227,0 +170749035636,227,0 +170749035684,216,0 +170749035732,215,0 +170749035780,216,0 +170749035829,216,0 +170749035877,216,0 +170749035926,217,0 +170749035974,218,0 +170749036022,218,0 +170749036070,219,0 +170749036118,220,0 +170749036166,220,0 +170749036214,222,0 +170749036264,225,0 +170749036313,226,0 +170749036361,225,0 +170749036409,227,0 +170749036457,228,0 +170749036505,230,0 +170749036555,228,0 +170749036602,228,0 +170749036652,216,0 +170749036700,214,0 +170749036748,214,0 +170749036796,215,0 +170749036844,214,0 +170749036892,215,0 +170749036940,216,0 +170749036989,216,0 +170749037039,216,0 +170749037087,218,0 +170749037136,218,0 +170749037184,218,0 +170749037232,220,0 +170749037282,221,0 +170749037330,222,0 +170749037378,223,0 +170749037426,222,0 +170749037475,224,0 +170749037523,226,0 +170749037571,227,0 +170749037619,217,0 +170749037668,216,0 +170749037716,216,0 +170749037766,216,0 +170749037815,216,0 +170749037865,217,0 +170749037915,217,0 +170749037962,217,0 +170749038010,218,0 +170749038058,219,0 +170749038106,221,0 +170749038154,221,0 +170749038202,224,0 +170749038250,224,0 +170749038298,224,0 +170749038348,227,0 +170749038396,226,0 +170749038444,225,0 +170749038493,228,0 +170749038543,228,0 +170749038592,216,0 +170749038640,215,0 +170749038688,215,0 +170749038736,216,0 +170749038784,216,0 +170749038834,216,0 +170749038882,217,0 +170749038930,217,0 +170749038978,218,0 +170749039027,220,0 +170749039075,221,0 +170749039123,222,0 +170749039171,226,0 +170749039219,226,0 +170749039267,225,0 +170749039316,224,0 +170749039364,225,0 +170749039414,226,0 +170749039462,228,0 +170749039510,227,0 +170749039558,216,0 +170749039607,215,0 +170749039655,215,0 +170749039703,216,0 +170749039751,216,0 +170749039799,216,0 +170749039849,216,0 +170749039896,216,0 +170749039946,218,0 +170749039994,219,0 +170749040042,218,0 +170749040090,219,0 +170749040138,221,0 +170749040186,222,0 +170749040235,222,0 +170749040283,222,0 +170749040333,222,0 +170749040382,221,0 +170749040432,226,0 +170749040481,222,0 +170749040529,216,0 +170749040579,216,0 +170749040628,216,0 +170749040678,216,0 +170749040726,217,0 +170749040774,216,0 +170749040822,217,0 +170749040870,217,0 +170749040917,218,0 +170749040965,218,0 +170749041013,219,0 +170749041063,221,0 +170749041111,223,0 +170749041159,224,0 +170749041207,227,0 +170749041255,227,0 +170749041304,225,0 +170749041352,227,0 +170749041402,227,0 +170749041450,223,0 +170749041498,215,0 +170749041547,216,0 +170749041597,216,0 +170749041645,216,0 +170749041693,217,0 +170749041741,219,0 +170749041788,219,0 +170749041836,220,0 +170749041884,221,0 +170749041932,221,0 +170749041980,222,0 +170749042028,224,0 +170749042076,223,0 +170749042126,228,0 +170749042174,225,0 +170749042221,225,0 +170749042271,226,0 +170749042320,228,0 +170749042368,228,0 +170749042416,227,0 +170749042466,216,0 +170749042514,216,0 +170749042563,217,0 +170749042611,219,0 +170749042659,220,0 +170749042707,220,0 +170749042755,221,0 +170749042803,220,0 +170749042851,224,0 +170749042898,222,0 +170749042946,222,0 +170749042994,225,0 +170749043042,226,0 +170749043091,227,0 +170749043139,227,0 +170749043187,228,0 +170749043235,229,0 +170749043285,229,0 +170749043334,228,0 +170749043382,228,0 +170749043430,217,0 +170749043478,217,0 +170749043526,218,0 +170749043574,219,0 +170749043623,221,0 +170749043671,221,0 +170749043719,222,0 +170749043768,222,0 +170749043816,223,0 +170749043864,224,0 +170749043912,225,0 +170749043960,226,0 +170749044008,227,0 +170749044056,229,0 +170749044104,227,0 +170749044151,228,0 +170749044199,229,0 +170749044247,229,0 +170749044295,228,0 +170749044345,228,0 +170749044394,217,0 +170749044442,216,0 +170749044490,217,0 +170749044540,218,0 +170749044589,219,0 +170749044639,219,0 +170749044688,220,0 +170749044736,221,0 +170749044784,222,0 +170749044832,223,0 +170749044880,224,0 +170749044928,226,0 +170749044976,226,0 +170749045025,228,0 +170749045073,228,0 +170749045123,229,0 +170749045171,230,0 +170749045219,230,0 +170749045267,228,0 +170749045315,229,0 +170749045363,216,0 +170749045411,217,0 +170749045460,217,0 +170749045510,218,0 +170749045559,219,0 +170749045609,219,0 +170749045658,221,0 +170749045706,222,0 +170749045756,222,0 +170749045804,223,0 +170749045853,224,0 +170749045901,224,0 +170749045951,224,0 +170749046000,228,0 +170749046050,227,0 +170749046099,226,0 +170749046147,227,0 +170749046195,228,0 +170749046243,228,0 +170749046292,216,0 +170749046342,216,0 +170749046390,216,0 +170749046438,216,0 +170749046487,218,0 +170749046537,219,0 +170749046586,220,0 +170749046634,220,0 +170749046682,222,0 +170749046730,224,0 +170749046780,225,0 +170749046829,225,0 +170749046877,225,0 +170749046927,224,0 +170749046975,223,0 +170749047023,224,0 +170749047072,223,0 +170749047120,228,0 +170749047170,217,0 +170749047218,215,0 +170749047266,215,0 +170749047315,215,0 +170749047365,216,0 +170749047413,216,0 +170749047460,216,0 +170749047510,218,0 +170749047559,217,0 +170749047607,218,0 +170749047655,218,0 +170749047703,219,0 +170749047751,221,0 +170749047799,222,0 +170749047847,223,0 +170749047895,225,0 +170749047945,225,0 +170749047993,225,0 +170749048042,227,0 +170749048092,216,0 +170749048140,214,0 +170749048188,215,0 +170749048236,216,0 +170749048283,215,0 +170749048331,215,0 +170749048379,216,0 +170749048427,216,0 +170749048475,216,0 +170749048523,218,0 +170749048571,217,0 +170749048619,218,0 +170749048669,220,0 +170749048716,221,0 +170749048766,222,0 +170749048814,223,0 +170749048862,224,0 +170749048910,227,0 +170749048959,228,0 +170749049007,216,0 +170749049055,215,0 +170749049105,216,0 +170749049153,216,0 +170749049202,216,0 +170749049252,216,0 +170749049301,217,0 +170749049351,217,0 +170749049399,216,0 +170749049447,218,0 +170749049495,219,0 +170749049543,221,0 +170749049591,222,0 +170749049638,224,0 +170749049686,226,0 +170749049734,223,0 +170749049784,225,0 +170749049833,227,0 +170749049883,226,0 +170749049931,216,0 +170749049979,215,0 +170749050027,216,0 +170749050075,216,0 +170749050123,218,0 +170749050171,218,0 +170749050219,219,0 +170749050268,220,0 +170749050316,221,0 +170749050366,222,0 +170749050414,223,0 +170749050463,224,0 +170749050513,226,0 +170749050561,226,0 +170749050608,227,0 +170749050656,226,0 +170749050706,227,0 +170749050754,229,0 +170749050803,226,0 +170749050851,215,0 +170749050899,216,0 +170749050947,216,0 +170749050995,217,0 +170749051045,218,0 +170749051093,220,0 +170749051142,221,0 +170749051190,222,0 +170749051238,223,0 +170749051288,224,0 +170749051336,225,0 +170749051384,225,0 +170749051431,226,0 +170749051479,228,0 +170749051527,228,0 +170749051575,227,0 +170749051623,228,0 +170749051672,229,0 +170749051722,217,0 +170749051771,217,0 +170749051821,219,0 +170749051868,220,0 +170749051916,221,0 +170749051966,222,0 +170749052014,223,0 +170749052062,224,0 +170749052111,225,0 +170749052159,226,0 +170749052207,230,0 +170749052256,229,0 +170749052306,227,0 +170749052355,230,0 +170749052405,228,0 +170749052453,228,0 +170749052501,229,0 +170749052549,228,0 +170749052597,227,0 +170749052646,217,0 +170749052696,216,0 +170749052744,216,0 +170749052792,217,0 +170749052840,218,0 +170749052888,220,0 +170749052936,221,0 +170749052984,221,0 +170749053031,222,0 +170749053079,223,0 +170749053127,224,0 +170749053175,225,0 +170749053225,226,0 +170749053273,226,0 +170749053322,226,0 +170749053370,227,0 +170749053420,229,0 +170749053468,225,0 +170749053516,227,0 +170749053563,218,0 +170749053611,215,0 +170749053659,215,0 +170749053709,215,0 +170749053757,216,0 +170749053805,216,0 +170749053854,217,0 +170749053904,217,0 +170749053952,217,0 +170749054000,218,0 +170749054049,219,0 +170749054097,221,0 +170749054147,221,0 +170749054196,222,0 +170749054246,223,0 +170749054293,222,0 +170749054343,220,0 +170749054391,226,0 +170749054439,225,0 +170749054487,216,0 +170749054535,216,0 +170749054583,216,0 +170749054630,216,0 +170749054680,218,0 +170749054728,219,0 +170749054777,219,0 +170749054825,221,0 +170749054875,221,0 +170749054923,222,0 +170749054971,224,0 +170749055019,224,0 +170749055068,225,0 +170749055116,226,0 +170749055164,226,0 +170749055212,227,0 +170749055260,227,0 +170749055308,227,0 +170749055358,220,0 +170749055406,216,0 +170749055453,216,0 +170749055503,217,0 +170749055551,218,0 +170749055599,220,0 +170749055648,220,0 +170749055696,222,0 +170749055744,224,0 +170749055794,224,0 +170749055842,223,0 +170749055890,225,0 +170749055938,229,0 +170749055987,229,0 +170749056035,228,0 +170749056083,228,0 +170749056131,230,0 +170749056179,229,0 +170749056229,230,0 +170749056277,221,0 +170749056326,217,0 +170749056376,218,0 +170749056425,219,0 +170749056475,221,0 +170749056523,222,0 +170749056571,224,0 +170749056620,224,0 +170749056668,223,0 +170749056716,224,0 +170749056764,228,0 +170749056812,226,0 +170749056862,227,0 +170749056910,236,0 +170749056958,229,0 +170749057006,228,0 +170749057054,227,0 +170749057102,229,0 +170749057150,226,0 +170749057199,217,0 +170749057247,217,0 +170749057295,218,0 +170749057343,220,0 +170749057391,220,0 +170749057440,221,0 +170749057488,222,0 +170749057536,223,0 +170749057584,225,0 +170749057632,225,0 +170749057682,227,0 +170749057730,230,0 +170749057778,229,0 +170749057825,230,0 +170749057873,230,0 +170749057923,230,0 +170749057971,230,0 +170749058019,228,0 +170749058066,227,0 +170749058114,218,0 +170749058162,217,0 +170749058212,218,0 +170749058260,220,0 +170749058309,222,0 +170749058359,223,0 +170749058407,225,0 +170749058456,226,0 +170749058504,225,0 +170749058552,226,0 +170749058602,227,0 +170749058651,230,0 +170749058699,228,0 +170749058749,228,0 +170749058798,228,0 +170749058848,228,0 +170749058896,230,0 +170749058944,228,0 +170749058993,227,0 +170749059043,216,0 +170749059092,216,0 +170749059142,217,0 +170749059190,219,0 +170749059239,220,0 +170749059289,220,0 +170749059337,222,0 +170749059385,223,0 +170749059432,225,0 +170749059480,227,0 +170749059530,226,0 +170749059578,227,0 +170749059626,228,0 +170749059674,229,0 +170749059722,231,0 +170749059770,228,0 +170749059819,228,0 +170749059868,227,0 +170749059918,228,0 +170749059966,216,0 +170749060015,217,0 +170749060065,218,0 +170749060113,219,0 +170749060162,220,0 +170749060210,222,0 +170749060258,221,0 +170749060306,222,0 +170749060356,224,0 +170749060404,227,0 +170749060453,228,0 +170749060501,228,0 +170749060551,227,0 +170749060600,228,0 +170749060648,227,0 +170749060696,228,0 +170749060746,229,0 +170749060795,228,0 +170749060843,218,0 +170749060893,216,0 +170749060941,218,0 +170749060989,219,0 +170749061036,220,0 +170749061084,219,0 +170749061132,220,0 +170749061182,222,0 +170749061231,223,0 +170749061279,224,0 +170749061327,225,0 +170749061375,225,0 +170749061423,226,0 +170749061471,225,0 +170749061521,227,0 +170749061569,231,0 +170749061618,229,0 +170749061666,228,0 +170749061716,228,0 +170749061765,217,0 +170749061813,218,0 +170749061861,219,0 +170749061911,220,0 +170749061958,221,0 +170749062006,223,0 +170749062054,224,0 +170749062104,223,0 +170749062153,225,0 +170749062201,224,0 +170749062251,225,0 +170749062299,226,0 +170749062347,227,0 +170749062396,232,0 +170749062444,229,0 +170749062492,231,0 +170749062540,230,0 +170749062589,229,0 +170749062637,227,0 +170749062685,218,0 +170749062735,218,0 +170749062784,219,0 +170749062832,221,0 +170749062882,221,0 +170749062931,223,0 +170749062979,225,0 +170749063029,227,0 +170749063078,227,0 +170749063126,228,0 +170749063176,228,0 +170749063224,227,0 +170749063273,230,0 +170749063323,228,0 +170749063371,229,0 +170749063419,228,0 +170749063468,228,0 +170749063518,228,0 +170749063567,226,0 +170749063615,220,0 +170749063663,220,0 +170749063713,221,0 +170749063761,223,0 +170749063810,224,0 +170749063858,225,0 +170749063906,225,0 +170749063955,225,0 +170749064003,228,0 +170749064053,226,0 +170749064102,226,0 +170749064152,228,0 +170749064202,228,0 +170749064251,230,0 +170749064299,228,0 +170749064347,228,0 +170749064397,228,0 +170749064446,226,0 +170749064494,218,0 +170749064542,217,0 +170749064591,218,0 +170749064639,218,0 +170749064689,220,0 +170749064737,220,0 +170749064785,222,0 +170749064833,223,0 +170749064882,224,0 +170749064932,226,0 +170749064980,228,0 +170749065028,227,0 +170749065076,227,0 +170749065124,228,0 +170749065172,228,0 +170749065220,227,0 +170749065268,229,0 +170749065315,227,0 +170749065363,227,0 +170749065411,217,0 +170749065459,215,0 +170749065507,217,0 +170749065555,218,0 +170749065603,220,0 +170749065652,220,0 +170749065700,223,0 +170749065748,223,0 +170749065796,223,0 +170749065844,223,0 +170749065894,226,0 +170749065942,227,0 +170749065991,227,0 +170749066039,227,0 +170749066087,228,0 +170749066135,229,0 +170749066183,227,0 +170749066232,228,0 +170749066280,228,0 +170749066328,217,0 +170749066376,216,0 +170749066424,216,0 +170749066474,217,0 +170749066523,218,0 +170749066571,219,0 +170749066619,222,0 +170749066667,223,0 +170749066715,224,0 +170749066765,224,0 +170749066812,224,0 +170749066860,224,0 +170749066908,231,0 +170749066959,230,0 +170749067006,228,0 +170749067056,227,0 +170749067106,229,0 +170749067155,228,0 +170749067203,228,0 +170749067251,216,0 +170749067299,216,0 +170749067349,216,0 +170749067398,216,0 +170749067446,218,0 +170749067496,218,0 +170749067544,219,0 +170749067591,221,0 +170749067641,221,0 +170749067690,222,0 +170749067738,224,0 +170749067788,225,0 +170749067836,227,0 +170749067884,227,0 +170749067932,228,0 +170749067980,227,0 +170749068028,230,0 +170749068076,228,0 +170749068124,222,0 +170749068173,215,0 +170749068223,215,0 +170749068271,215,0 +170749068320,216,0 +170749068368,216,0 +170749068418,215,0 +170749068466,217,0 +170749068515,218,0 +170749068565,218,0 +170749068614,219,0 +170749068662,220,0 +170749068710,222,0 +170749068758,223,0 +170749068807,223,0 +170749068855,224,0 +170749068903,225,0 +170749068951,225,0 +170749068999,227,0 +170749069047,217,0 +170749069097,215,0 +170749069146,215,0 +170749069196,216,0 +170749069244,217,0 +170749069293,217,0 +170749069343,219,0 +170749069392,219,0 +170749069440,219,0 +170749069488,221,0 +170749069536,221,0 +170749069584,221,0 +170749069632,224,0 +170749069680,226,0 +170749069728,226,0 +170749069778,226,0 +170749069827,227,0 +170749069875,226,0 +170749069923,227,0 +170749069971,218,0 +170749070019,215,0 +170749070069,217,0 +170749070118,218,0 +170749070166,219,0 +170749070214,220,0 +170749070264,221,0 +170749070313,220,0 +170749070361,222,0 +170749070409,225,0 +170749070457,225,0 +170749070506,224,0 +170749070554,227,0 +170749070602,227,0 +170749070650,227,0 +170749070698,228,0 +170749070745,228,0 +170749070793,228,0 +170749070841,229,0 +170749070889,219,0 +170749070937,220,0 +170749070985,222,0 +170749071033,219,0 +170749071081,221,0 +170749071128,219,0 +170749071176,223,0 +170749071224,223,0 +170749071272,225,0 +170749071320,225,0 +170749071368,229,0 +170749071416,227,0 +170749071464,228,0 +170749071512,227,0 +170749071560,228,0 +170749071609,228,0 +170749071659,229,0 +170749071708,228,0 +170749071758,227,0 +170749071806,218,0 +170749071854,219,0 +170749071903,220,0 +170749071953,221,0 +170749072001,223,0 +170749072049,224,0 +170749072097,223,0 +170749072145,224,0 +170749072194,226,0 +170749072242,227,0 +170749072290,227,0 +170749072338,227,0 +170749072386,227,0 +170749072434,227,0 +170749072482,227,0 +170749072530,226,0 +170749072579,229,0 +170749072627,227,0 +170749072675,226,0 +170749072725,220,0 +170749072773,221,0 +170749072821,222,0 +170749072869,225,0 +170749072918,223,0 +170749072968,224,0 +170749073016,224,0 +170749073065,225,0 +170749073113,226,0 +170749073163,226,0 +170749073210,228,0 +170749073258,227,0 +170749073306,228,0 +170749073356,227,0 +170749073404,228,0 +170749073453,229,0 +170749073501,228,0 +170749073549,228,0 +170749073599,219,0 +170749073647,217,0 +170749073695,219,0 +170749073743,222,0 +170749073792,222,0 +170749073842,223,0 +170749073890,224,0 +170749073939,225,0 +170749073987,224,0 +170749074035,225,0 +170749074083,221,0 +170749074131,227,0 +170749074180,229,0 +170749074228,226,0 +170749074276,228,0 +170749074326,228,0 +170749074374,229,0 +170749074422,228,0 +170749074471,228,0 +170749074521,217,0 +170749074569,216,0 +170749074618,216,0 +170749074668,218,0 +170749074717,219,0 +170749074767,220,0 +170749074817,219,0 +170749074866,221,0 +170749074914,225,0 +170749074963,224,0 +170749075011,223,0 +170749075059,225,0 +170749075107,228,0 +170749075155,230,0 +170749075205,229,0 +170749075253,228,0 +170749075301,231,0 +170749075350,227,0 +170749075398,227,0 +170749075448,216,0 +170749075496,216,0 +170749075544,216,0 +170749075591,217,0 +170749075641,219,0 +170749075691,219,0 +170749075738,220,0 +170749075786,221,0 +170749075836,222,0 +170749075884,224,0 +170749075932,225,0 +170749075980,226,0 +170749076029,226,0 +170749076077,227,0 +170749076127,228,0 +170749076176,228,0 +170749076226,229,0 +170749076275,228,0 +170749076323,227,0 +170749076371,216,0 +170749076419,216,0 +170749076469,216,0 +170749076517,217,0 +170749076565,217,0 +170749076613,220,0 +170749076661,220,0 +170749076709,221,0 +170749076758,225,0 +170749076808,222,0 +170749076857,223,0 +170749076905,224,0 +170749076953,225,0 +170749077003,226,0 +170749077051,228,0 +170749077100,228,0 +170749077148,228,0 +170749077196,227,0 +170749077245,222,0 +170749077295,216,0 +170749077344,216,0 +170749077394,216,0 +170749077443,217,0 +170749077491,219,0 +170749077541,219,0 +170749077589,220,0 +170749077638,222,0 +170749077686,221,0 +170749077734,224,0 +170749077784,225,0 +170749077832,226,0 +170749077880,226,0 +170749077929,227,0 +170749077977,228,0 +170749078025,227,0 +170749078075,227,0 +170749078123,229,0 +170749078171,217,0 +170749078220,215,0 +170749078268,217,0 +170749078316,216,0 +170749078366,217,0 +170749078415,218,0 +170749078463,219,0 +170749078511,220,0 +170749078559,220,0 +170749078607,221,0 +170749078655,223,0 +170749078704,224,0 +170749078752,224,0 +170749078802,226,0 +170749078850,226,0 +170749078898,227,0 +170749078946,229,0 +170749078994,228,0 +170749079041,228,0 +170749079091,217,0 +170749079139,216,0 +170749079187,216,0 +170749079235,218,0 +170749079282,219,0 +170749079332,220,0 +170749079380,222,0 +170749079429,222,0 +170749079479,223,0 +170749079527,225,0 +170749079575,225,0 +170749079622,226,0 +170749079670,228,0 +170749079720,227,0 +170749079768,228,0 +170749079817,227,0 +170749079867,229,0 +170749079916,229,0 +170749079964,227,0 +170749080012,216,0 diff --git a/laser_value/0210-01.csv b/laser_value/0210-01.csv new file mode 100644 index 0000000..54e983f --- /dev/null +++ b/laser_value/0210-01.csv @@ -0,0 +1,7404 @@ +timestamp,laser_value,event +170749081486,228,0 +170749081534,228,0 +170749081582,227,0 +170749081629,228,0 +170749081677,228,0 +170749081725,227,0 +170749081773,225,0 +170749081821,217,0 +170749081871,216,0 +170749081919,216,0 +170749081968,217,0 +170749082018,218,0 +170749082066,219,0 +170749082115,221,0 +170749082163,220,0 +170749082211,223,0 +170749082259,222,0 +170749082307,225,0 +170749082357,224,0 +170749082405,228,0 +170749082453,228,0 +170749082502,229,0 +170749082550,229,0 +170749082598,227,0 +170749082646,227,0 +170749082694,227,0 +170749082742,217,0 +170749082791,216,0 +170749082841,216,0 +170749082889,216,0 +170749082937,217,0 +170749082985,218,0 +170749083033,217,0 +170749083081,219,0 +170749083128,219,0 +170749083176,221,0 +170749083224,221,0 +170749083274,225,0 +170749083322,226,0 +170749083370,225,0 +170749083419,225,0 +170749083467,227,0 +170749083515,228,0 +170749083565,226,0 +170749083613,227,0 +170749083661,216,0 +170749083710,216,0 +170749083760,216,0 +170749083808,217,0 +170749083856,218,0 +170749083904,219,0 +170749083953,220,0 +170749084001,221,0 +170749084049,221,0 +170749084099,223,0 +170749084146,224,0 +170749084194,226,0 +170749084242,228,0 +170749084290,227,0 +170749084340,226,0 +170749084389,226,0 +170749084439,228,0 +170749084489,229,0 +170749084537,223,0 +170749084584,216,0 +170749084632,217,0 +170749084682,218,0 +170749084730,219,0 +170749084778,220,0 +170749084827,221,0 +170749084875,221,0 +170749084925,222,0 +170749084974,223,0 +170749085024,234,0 +170749085073,225,0 +170749085123,225,0 +170749085171,225,0 +170749085220,227,0 +170749085268,228,0 +170749085318,228,0 +170749085367,228,0 +170749085415,227,0 +170749085463,218,0 +170749085511,216,0 +170749085559,217,0 +170749085607,218,0 +170749085655,220,0 +170749085703,219,0 +170749085751,222,0 +170749085801,224,0 +170749085850,224,0 +170749085898,224,0 +170749085948,225,0 +170749085997,228,0 +170749086047,227,0 +170749086095,227,0 +170749086142,228,0 +170749086192,229,0 +170749086240,229,0 +170749086288,228,0 +170749086336,227,0 +170749086385,219,0 +170749086433,217,0 +170749086481,219,0 +170749086531,219,0 +170749086580,222,0 +170749086630,222,0 +170749086678,222,0 +170749086726,224,0 +170749086774,227,0 +170749086823,227,0 +170749086873,228,0 +170749086921,229,0 +170749086969,228,0 +170749087017,229,0 +170749087065,228,0 +170749087113,228,0 +170749087162,229,0 +170749087210,228,0 +170749087258,227,0 +170749087306,218,0 +170749087354,217,0 +170749087402,218,0 +170749087449,219,0 +170749087497,220,0 +170749087545,220,0 +170749087593,221,0 +170749087641,222,0 +170749087690,224,0 +170749087738,224,0 +170749087786,226,0 +170749087834,227,0 +170749087882,227,0 +170749087930,228,0 +170749087978,229,0 +170749088025,230,0 +170749088073,228,0 +170749088121,229,0 +170749088169,228,0 +170749088217,218,0 +170749088265,217,0 +170749088313,218,0 +170749088361,219,0 +170749088408,221,0 +170749088456,221,0 +170749088504,222,0 +170749088552,221,0 +170749088600,225,0 +170749088649,225,0 +170749088697,227,0 +170749088745,231,0 +170749088793,227,0 +170749088842,228,0 +170749088890,229,0 +170749088940,232,0 +170749088988,228,0 +170749089036,228,0 +170749089083,228,0 +170749089131,218,0 +170749089179,219,0 +170749089227,219,0 +170749089275,221,0 +170749089323,221,0 +170749089371,221,0 +170749089420,223,0 +170749089468,224,0 +170749089518,225,0 +170749089567,225,0 +170749089617,228,0 +170749089665,227,0 +170749089713,228,0 +170749089761,228,0 +170749089809,228,0 +170749089856,228,0 +170749089906,228,0 +170749089954,227,0 +170749090002,227,0 +170749090050,217,0 +170749090098,218,0 +170749090145,218,0 +170749090195,221,0 +170749090243,220,0 +170749090291,221,0 +170749090339,222,0 +170749090387,224,0 +170749090434,223,0 +170749090482,225,0 +170749090530,225,0 +170749090578,226,0 +170749090627,228,0 +170749090675,227,0 +170749090723,228,0 +170749090773,230,0 +170749090821,228,0 +170749090870,226,0 +170749090918,227,0 +170749090966,216,0 +170749091014,216,0 +170749091062,217,0 +170749091109,219,0 +170749091157,221,0 +170749091205,221,0 +170749091253,222,0 +170749091301,222,0 +170749091351,223,0 +170749091398,224,0 +170749091446,225,0 +170749091494,227,0 +170749091542,227,0 +170749091590,228,0 +170749091639,228,0 +170749091689,228,0 +170749091738,226,0 +170749091786,229,0 +170749091834,224,0 +170749091882,216,0 +170749091930,217,0 +170749091979,218,0 +170749092027,223,0 +170749092075,222,0 +170749092123,221,0 +170749092171,223,0 +170749092219,224,0 +170749092267,224,0 +170749092315,224,0 +170749092362,226,0 +170749092410,228,0 +170749092458,228,0 +170749092506,229,0 +170749092555,227,0 +170749092603,228,0 +170749092651,227,0 +170749092699,227,0 +170749092747,226,0 +170749092795,216,0 +170749092843,216,0 +170749092891,216,0 +170749092938,218,0 +170749092986,219,0 +170749093034,221,0 +170749093082,221,0 +170749093130,221,0 +170749093178,223,0 +170749093226,224,0 +170749093274,225,0 +170749093322,227,0 +170749093369,228,0 +170749093417,228,0 +170749093465,230,0 +170749093513,228,0 +170749093561,227,0 +170749093609,228,0 +170749093657,228,0 +170749093705,217,0 +170749093754,217,0 +170749093802,218,0 +170749093850,218,0 +170749093898,220,0 +170749093946,220,0 +170749093994,221,0 +170749094042,225,0 +170749094090,223,0 +170749094138,224,0 +170749094185,226,0 +170749094235,226,0 +170749094283,227,0 +170749094332,227,0 +170749094380,227,0 +170749094428,227,0 +170749094476,228,0 +170749094524,226,0 +170749094572,226,0 +170749094620,218,0 +170749094668,215,0 +170749094717,216,0 +170749094765,216,0 +170749094813,217,0 +170749094862,218,0 +170749094910,220,0 +170749094960,221,0 +170749095008,221,0 +170749095056,223,0 +170749095103,224,0 +170749095151,227,0 +170749095199,229,0 +170749095249,227,0 +170749095296,227,0 +170749095344,227,0 +170749095392,228,0 +170749095440,227,0 +170749095488,228,0 +170749095536,227,0 +170749095584,215,0 +170749095633,214,0 +170749095681,215,0 +170749095731,215,0 +170749095778,215,0 +170749095828,215,0 +170749095877,216,0 +170749095925,216,0 +170749095975,216,0 +170749096023,217,0 +170749096070,217,0 +170749096118,221,0 +170749096166,220,0 +170749096214,222,0 +170749096262,222,0 +170749096311,228,0 +170749096359,225,0 +170749096407,225,0 +170749096455,225,0 +170749096503,225,0 +170749096551,226,0 +170749096600,228,0 +170749096648,228,0 +170749096696,230,0 +170749096745,230,0 +170749096793,229,0 +170749096841,227,0 +170749096891,228,0 +170749096940,217,0 +170749096988,215,0 +170749097036,216,0 +170749097086,216,0 +170749097135,216,0 +170749097183,217,0 +170749097233,218,0 +170749097281,219,0 +170749097329,221,0 +170749097378,221,0 +170749097426,222,0 +170749097474,224,0 +170749097522,224,0 +170749097570,226,0 +170749097618,225,0 +170749097667,226,0 +170749097716,227,0 +170749097764,227,0 +170749097814,227,0 +170749097862,217,0 +170749097909,215,0 +170749097959,216,0 +170749098007,216,0 +170749098055,216,0 +170749098103,217,0 +170749098150,218,0 +170749098198,219,0 +170749098246,220,0 +170749098294,222,0 +170749098342,222,0 +170749098390,224,0 +170749098438,223,0 +170749098485,226,0 +170749098533,227,0 +170749098581,226,0 +170749098629,226,0 +170749098677,227,0 +170749098725,228,0 +170749098773,227,0 +170749098821,217,0 +170749098869,216,0 +170749098916,216,0 +170749098964,217,0 +170749099014,218,0 +170749099062,219,0 +170749099110,220,0 +170749099158,220,0 +170749099205,221,0 +170749099253,223,0 +170749099303,223,0 +170749099351,225,0 +170749099399,225,0 +170749099448,225,0 +170749099498,224,0 +170749099546,227,0 +170749099594,227,0 +170749099642,228,0 +170749099690,228,0 +170749099738,219,0 +170749099787,217,0 +170749099835,219,0 +170749099884,220,0 +170749099932,221,0 +170749099980,220,0 +170749100028,222,0 +170749100078,221,0 +170749100126,223,0 +170749100174,223,0 +170749100222,223,0 +170749100270,226,0 +170749100317,225,0 +170749100365,227,0 +170749100415,227,0 +170749100463,224,0 +170749100510,230,0 +170749100560,228,0 +170749100608,228,0 +170749100656,218,0 +170749100704,219,0 +170749100752,220,0 +170749100799,220,0 +170749100849,222,0 +170749100897,222,0 +170749100945,223,0 +170749100993,225,0 +170749101042,225,0 +170749101090,224,0 +170749101138,227,0 +170749101186,227,0 +170749101234,230,0 +170749101282,228,0 +170749101330,228,0 +170749101378,229,0 +170749101427,229,0 +170749101477,228,0 +170749101526,227,0 +170749101574,226,0 +170749101622,220,0 +170749101672,221,0 +170749101721,222,0 +170749101769,221,0 +170749101817,226,0 +170749101865,223,0 +170749101914,226,0 +170749101962,227,0 +170749102010,225,0 +170749102060,227,0 +170749102108,230,0 +170749102157,226,0 +170749102207,230,0 +170749102255,231,0 +170749102303,230,0 +170749102352,231,0 +170749102402,228,0 +170749102450,227,0 +170749102499,226,0 +170749102547,223,0 +170749102595,222,0 +170749102645,224,0 +170749102693,224,0 +170749102740,225,0 +170749102788,225,0 +170749102836,225,0 +170749102884,227,0 +170749102932,225,0 +170749102981,229,0 +170749103031,229,0 +170749103080,230,0 +170749103128,230,0 +170749103176,231,0 +170749103224,229,0 +170749103272,229,0 +170749103320,228,0 +170749103368,226,0 +170749103415,229,0 +170749103465,220,0 +170749103513,219,0 +170749103560,220,0 +170749103608,221,0 +170749103656,221,0 +170749103704,223,0 +170749103752,226,0 +170749103800,225,0 +170749103848,226,0 +170749103896,227,0 +170749103944,226,0 +170749103992,232,0 +170749104039,228,0 +170749104087,230,0 +170749104135,229,0 +170749104183,233,0 +170749104231,231,0 +170749104279,228,0 +170749104327,228,0 +170749104375,226,0 +170749104422,216,0 +170749104470,216,0 +170749104518,216,0 +170749104566,217,0 +170749104614,219,0 +170749104663,220,0 +170749104711,220,0 +170749104759,222,0 +170749104807,224,0 +170749104855,223,0 +170749104903,224,0 +170749104951,228,0 +170749105000,229,0 +170749105048,226,0 +170749105098,227,0 +170749105146,227,0 +170749105194,228,0 +170749105242,227,0 +170749105291,227,0 +170749105341,217,0 +170749105389,215,0 +170749105437,216,0 +170749105485,217,0 +170749105533,217,0 +170749105581,217,0 +170749105628,218,0 +170749105678,220,0 +170749105728,221,0 +170749105775,222,0 +170749105825,223,0 +170749105873,223,0 +170749105921,226,0 +170749105969,227,0 +170749106017,227,0 +170749106066,227,0 +170749106114,229,0 +170749106162,227,0 +170749106210,229,0 +170749106258,217,0 +170749106307,216,0 +170749106355,215,0 +170749106405,216,0 +170749106453,216,0 +170749106501,217,0 +170749106549,217,0 +170749106597,217,0 +170749106646,218,0 +170749106696,219,0 +170749106744,221,0 +170749106792,222,0 +170749106841,224,0 +170749106891,224,0 +170749106939,227,0 +170749106988,227,0 +170749107038,228,0 +170749107087,227,0 +170749107135,227,0 +170749107183,217,0 +170749107233,216,0 +170749107281,216,0 +170749107329,216,0 +170749107376,217,0 +170749107426,217,0 +170749107475,217,0 +170749107523,216,0 +170749107571,218,0 +170749107619,221,0 +170749107667,222,0 +170749107715,222,0 +170749107763,223,0 +170749107811,223,0 +170749107861,226,0 +170749107909,227,0 +170749107958,227,0 +170749108006,227,0 +170749108056,227,0 +170749108105,218,0 +170749108153,216,0 +170749108201,216,0 +170749108251,216,0 +170749108299,217,0 +170749108347,218,0 +170749108395,218,0 +170749108444,218,0 +170749108494,221,0 +170749108542,222,0 +170749108591,222,0 +170749108641,222,0 +170749108690,227,0 +170749108740,226,0 +170749108788,221,0 +170749108836,227,0 +170749108884,231,0 +170749108933,230,0 +170749108983,228,0 +170749109031,219,0 +170749109079,216,0 +170749109127,216,0 +170749109175,216,0 +170749109224,217,0 +170749109272,218,0 +170749109320,218,0 +170749109368,219,0 +170749109416,221,0 +170749109466,225,0 +170749109513,224,0 +170749109563,228,0 +170749109613,226,0 +170749109661,228,0 +170749109708,228,0 +170749109756,231,0 +170749109804,229,0 +170749109852,228,0 +170749109900,228,0 +170749109948,228,0 +170749109996,217,0 +170749110046,216,0 +170749110094,216,0 +170749110143,217,0 +170749110191,217,0 +170749110239,218,0 +170749110289,219,0 +170749110337,219,0 +170749110385,221,0 +170749110433,220,0 +170749110481,223,0 +170749110530,224,0 +170749110578,226,0 +170749110628,226,0 +170749110677,228,0 +170749110725,226,0 +170749110773,227,0 +170749110823,227,0 +170749110870,227,0 +170749110918,217,0 +170749110966,215,0 +170749111014,216,0 +170749111062,216,0 +170749111110,215,0 +170749111158,217,0 +170749111208,221,0 +170749111257,220,0 +170749111307,220,0 +170749111356,222,0 +170749111404,223,0 +170749111452,224,0 +170749111502,225,0 +170749111549,227,0 +170749111597,226,0 +170749111647,227,0 +170749111695,227,0 +170749111743,228,0 +170749111791,228,0 +170749111839,217,0 +170749111887,215,0 +170749111936,216,0 +170749111986,217,0 +170749112035,219,0 +170749112083,219,0 +170749112131,222,0 +170749112179,220,0 +170749112227,221,0 +170749112276,225,0 +170749112326,223,0 +170749112375,225,0 +170749112423,226,0 +170749112473,228,0 +170749112521,228,0 +170749112570,229,0 +170749112618,228,0 +170749112666,229,0 +170749112716,227,0 +170749112765,218,0 +170749112813,216,0 +170749112863,215,0 +170749112911,216,0 +170749112959,216,0 +170749113007,216,0 +170749113055,217,0 +170749113103,219,0 +170749113151,219,0 +170749113200,222,0 +170749113248,221,0 +170749113296,223,0 +170749113345,224,0 +170749113395,225,0 +170749113443,226,0 +170749113491,226,0 +170749113539,227,0 +170749113587,227,0 +170749113635,229,0 +170749113684,224,0 +170749113732,216,0 +170749113781,216,0 +170749113829,215,0 +170749113877,216,0 +170749113925,216,0 +170749113973,217,0 +170749114021,215,0 +170749114069,217,0 +170749114117,218,0 +170749114164,219,0 +170749114212,220,0 +170749114260,222,0 +170749114310,221,0 +170749114358,223,0 +170749114407,224,0 +170749114455,231,0 +170749114503,225,0 +170749114553,227,0 +170749114602,229,0 +170749114650,217,0 +170749114698,216,0 +170749114747,216,0 +170749114797,217,0 +170749114845,218,0 +170749114893,219,0 +170749114940,220,0 +170749114990,220,0 +170749115038,220,0 +170749115086,227,0 +170749115134,222,0 +170749115183,222,0 +170749115231,224,0 +170749115281,227,0 +170749115330,227,0 +170749115378,227,0 +170749115426,227,0 +170749115476,225,0 +170749115524,229,0 +170749115572,218,0 +170749115619,216,0 +170749115669,217,0 +170749115717,218,0 +170749115765,219,0 +170749115813,220,0 +170749115861,221,0 +170749115910,221,0 +170749115960,222,0 +170749116009,223,0 +170749116057,225,0 +170749116105,225,0 +170749116153,224,0 +170749116201,227,0 +170749116251,227,0 +170749116299,227,0 +170749116347,224,0 +170749116394,228,0 +170749116442,227,0 +170749116492,218,0 +170749116540,220,0 +170749116589,221,0 +170749116637,221,0 +170749116685,223,0 +170749116735,224,0 +170749116784,224,0 +170749116834,225,0 +170749116883,226,0 +170749116931,226,0 +170749116979,227,0 +170749117029,227,0 +170749117077,228,0 +170749117125,227,0 +170749117174,228,0 +170749117224,228,0 +170749117272,228,0 +170749117320,228,0 +170749117368,227,0 +170749117416,227,0 +170749117463,224,0 +170749117511,224,0 +170749117559,225,0 +170749117607,226,0 +170749117655,227,0 +170749117705,226,0 +170749117754,228,0 +170749117804,227,0 +170749117852,228,0 +170749117900,229,0 +170749117949,228,0 +170749117999,228,0 +170749118047,228,0 +170749118095,231,0 +170749118144,226,0 +170749118192,228,0 +170749118240,229,0 +170749118290,228,0 +170749118338,227,0 +170749118387,223,0 +170749118437,224,0 +170749118484,223,0 +170749118532,226,0 +170749118582,225,0 +170749118631,225,0 +170749118681,227,0 +170749118729,226,0 +170749118777,227,0 +170749118825,229,0 +170749118873,228,0 +170749118921,228,0 +170749118970,228,0 +170749119018,229,0 +170749119066,229,0 +170749119116,229,0 +170749119165,228,0 +170749119215,228,0 +170749119264,227,0 +170749119314,217,0 +170749119363,217,0 +170749119411,218,0 +170749119461,219,0 +170749119508,220,0 +170749119556,221,0 +170749119604,221,0 +170749119652,223,0 +170749119700,226,0 +170749119748,225,0 +170749119796,224,0 +170749119844,226,0 +170749119892,227,0 +170749119940,228,0 +170749119990,229,0 +170749120037,222,0 +170749120087,231,0 +170749120135,228,0 +170749120183,227,0 +170749120231,217,0 +170749120279,216,0 +170749120327,218,0 +170749120375,219,0 +170749120424,220,0 +170749120472,221,0 +170749120520,221,0 +170749120568,223,0 +170749120616,223,0 +170749120664,224,0 +170749120712,225,0 +170749120760,226,0 +170749120808,226,0 +170749120856,228,0 +170749120904,231,0 +170749120952,230,0 +170749121001,230,0 +170749121051,230,0 +170749121099,224,0 +170749121147,218,0 +170749121196,216,0 +170749121246,216,0 +170749121294,217,0 +170749121341,219,0 +170749121389,220,0 +170749121437,220,0 +170749121485,220,0 +170749121535,222,0 +170749121584,224,0 +170749121632,225,0 +170749121680,229,0 +170749121729,226,0 +170749121777,225,0 +170749121827,226,0 +170749121875,232,0 +170749121923,228,0 +170749121972,228,0 +170749122020,228,0 +170749122068,223,0 +170749122116,216,0 +170749122166,216,0 +170749122214,217,0 +170749122262,220,0 +170749122310,220,0 +170749122358,219,0 +170749122405,220,0 +170749122453,223,0 +170749122503,221,0 +170749122553,224,0 +170749122601,224,0 +170749122650,226,0 +170749122700,226,0 +170749122749,226,0 +170749122797,227,0 +170749122847,228,0 +170749122896,229,0 +170749122944,228,0 +170749122992,227,0 +170749123040,217,0 +170749123089,218,0 +170749123137,219,0 +170749123185,220,0 +170749123233,222,0 +170749123281,223,0 +170749123330,223,0 +170749123380,224,0 +170749123429,223,0 +170749123479,224,0 +170749123527,225,0 +170749123575,226,0 +170749123623,228,0 +170749123672,227,0 +170749123720,231,0 +170749123770,229,0 +170749123818,231,0 +170749123865,230,0 +170749123913,228,0 +170749123961,217,0 +170749124009,215,0 +170749124057,216,0 +170749124105,218,0 +170749124153,219,0 +170749124201,220,0 +170749124249,219,0 +170749124297,220,0 +170749124345,223,0 +170749124395,224,0 +170749124443,225,0 +170749124491,229,0 +170749124538,225,0 +170749124586,226,0 +170749124636,228,0 +170749124684,229,0 +170749124732,229,0 +170749124780,229,0 +170749124828,227,0 +170749124876,218,0 +170749124925,216,0 +170749124973,216,0 +170749125021,218,0 +170749125071,219,0 +170749125120,220,0 +170749125168,221,0 +170749125217,222,0 +170749125267,223,0 +170749125315,225,0 +170749125363,224,0 +170749125411,226,0 +170749125459,226,0 +170749125507,227,0 +170749125555,227,0 +170749125604,228,0 +170749125652,229,0 +170749125700,230,0 +170749125748,228,0 +170749125798,217,0 +170749125845,216,0 +170749125895,216,0 +170749125943,217,0 +170749125991,218,0 +170749126039,220,0 +170749126087,220,0 +170749126135,220,0 +170749126183,221,0 +170749126231,221,0 +170749126279,223,0 +170749126327,224,0 +170749126376,225,0 +170749126424,226,0 +170749126472,232,0 +170749126520,225,0 +170749126568,229,0 +170749126616,229,0 +170749126664,230,0 +170749126714,229,0 +170749126762,217,0 +170749126810,217,0 +170749126858,218,0 +170749126906,218,0 +170749126954,219,0 +170749127002,220,0 +170749127051,221,0 +170749127101,222,0 +170749127149,223,0 +170749127197,224,0 +170749127246,227,0 +170749127294,226,0 +170749127342,230,0 +170749127390,229,0 +170749127440,229,0 +170749127489,229,0 +170749127539,229,0 +170749127588,229,0 +170749127636,228,0 +170749127686,217,0 +170749127734,217,0 +170749127783,218,0 +170749127833,219,0 +170749127881,220,0 +170749127930,220,0 +170749127978,221,0 +170749128026,222,0 +170749128076,224,0 +170749128125,223,0 +170749128173,226,0 +170749128222,228,0 +170749128270,227,0 +170749128318,227,0 +170749128366,227,0 +170749128416,229,0 +170749128464,229,0 +170749128512,228,0 +170749128560,230,0 +170749128609,218,0 +170749128659,216,0 +170749128708,216,0 +170749128756,217,0 +170749128806,218,0 +170749128854,219,0 +170749128903,219,0 +170749128951,221,0 +170749129001,222,0 +170749129050,221,0 +170749129100,223,0 +170749129149,223,0 +170749129197,224,0 +170749129245,226,0 +170749129295,227,0 +170749129344,226,0 +170749129394,226,0 +170749129442,228,0 +170749129491,227,0 +170749129541,217,0 +170749129589,215,0 +170749129637,216,0 +170749129685,216,0 +170749129734,217,0 +170749129784,217,0 +170749129832,218,0 +170749129880,219,0 +170749129929,220,0 +170749129977,221,0 +170749130025,222,0 +170749130073,224,0 +170749130123,224,0 +170749130172,224,0 +170749130220,227,0 +170749130268,227,0 +170749130316,226,0 +170749130366,227,0 +170749130415,228,0 +170749130463,217,0 +170749130511,216,0 +170749130561,216,0 +170749130608,216,0 +170749130656,218,0 +170749130704,219,0 +170749130752,221,0 +170749130800,222,0 +170749130850,223,0 +170749130898,224,0 +170749130946,226,0 +170749130995,226,0 +170749131043,226,0 +170749131091,227,0 +170749131139,227,0 +170749131187,228,0 +170749131237,227,0 +170749131285,229,0 +170749131333,229,0 +170749131381,227,0 +170749131430,216,0 +170749131480,215,0 +170749131528,217,0 +170749131576,218,0 +170749131624,221,0 +170749131671,221,0 +170749131719,221,0 +170749131767,225,0 +170749131815,224,0 +170749131863,226,0 +170749131911,227,0 +170749131959,228,0 +170749132009,228,0 +170749132057,227,0 +170749132106,229,0 +170749132154,230,0 +170749132202,228,0 +170749132252,228,0 +170749132300,227,0 +170749132349,217,0 +170749132399,215,0 +170749132447,216,0 +170749132494,217,0 +170749132542,219,0 +170749132592,220,0 +170749132640,220,0 +170749132688,221,0 +170749132737,223,0 +170749132785,223,0 +170749132833,223,0 +170749132883,226,0 +170749132931,228,0 +170749132980,226,0 +170749133028,230,0 +170749133078,230,0 +170749133126,231,0 +170749133174,231,0 +170749133223,228,0 +170749133273,221,0 +170749133320,216,0 +170749133368,216,0 +170749133416,219,0 +170749133464,223,0 +170749133512,220,0 +170749133560,220,0 +170749133608,220,0 +170749133656,221,0 +170749133704,223,0 +170749133752,224,0 +170749133800,225,0 +170749133847,226,0 +170749133895,228,0 +170749133943,226,0 +170749133993,225,0 +170749134040,229,0 +170749134088,228,0 +170749134136,226,0 +170749134186,229,0 +170749134234,219,0 +170749134282,217,0 +170749134330,218,0 +170749134379,219,0 +170749134429,221,0 +170749134477,221,0 +170749134525,221,0 +170749134572,220,0 +170749134620,223,0 +170749134668,224,0 +170749134718,225,0 +170749134766,225,0 +170749134814,227,0 +170749134863,226,0 +170749134911,225,0 +170749134961,227,0 +170749135010,227,0 +170749135058,228,0 +170749135108,229,0 +170749135156,217,0 +170749135204,215,0 +170749135251,217,0 +170749135301,216,0 +170749135349,217,0 +170749135397,217,0 +170749135445,219,0 +170749135494,221,0 +170749135542,221,0 +170749135590,222,0 +170749135638,223,0 +170749135686,225,0 +170749135735,225,0 +170749135783,225,0 +170749135831,229,0 +170749135879,227,0 +170749135929,229,0 +170749135977,228,0 +170749136025,228,0 +170749136073,227,0 +170749136122,217,0 +170749136170,216,0 +170749136218,215,0 +170749136268,217,0 +170749136317,219,0 +170749136365,219,0 +170749136413,222,0 +170749136461,223,0 +170749136510,223,0 +170749136560,224,0 +170749136610,225,0 +170749136659,224,0 +170749136707,226,0 +170749136755,228,0 +170749136805,228,0 +170749136852,230,0 +170749136902,229,0 +170749136950,221,0 +170749136999,229,0 +170749137049,218,0 +170749137097,216,0 +170749137145,216,0 +170749137194,216,0 +170749137242,217,0 +170749137292,218,0 +170749137340,219,0 +170749137388,219,0 +170749137437,220,0 +170749137487,221,0 +170749137535,223,0 +170749137583,224,0 +170749137631,226,0 +170749137679,226,0 +170749137727,226,0 +170749137774,225,0 +170749137822,227,0 +170749137870,229,0 +170749137918,228,0 +170749137966,227,0 +170749138016,216,0 +170749138065,216,0 +170749138113,218,0 +170749138161,217,0 +170749138211,217,0 +170749138258,219,0 +170749138308,220,0 +170749138358,221,0 +170749138407,221,0 +170749138455,222,0 +170749138503,224,0 +170749138551,224,0 +170749138600,226,0 +170749138648,228,0 +170749138698,227,0 +170749138747,226,0 +170749138795,226,0 +170749138845,226,0 +170749138894,227,0 +170749138942,216,0 +170749138992,216,0 +170749139040,217,0 +170749139089,218,0 +170749139137,219,0 +170749139187,219,0 +170749139235,220,0 +170749139283,221,0 +170749139330,222,0 +170749139378,223,0 +170749139426,225,0 +170749139476,226,0 +170749139524,227,0 +170749139572,227,0 +170749139620,227,0 +170749139668,228,0 +170749139716,228,0 +170749139764,227,0 +170749139812,227,0 +170749139861,218,0 +170749139909,216,0 +170749139957,217,0 +170749140006,218,0 +170749140056,219,0 +170749140104,222,0 +170749140152,221,0 +170749140200,223,0 +170749140249,223,0 +170749140297,223,0 +170749140347,225,0 +170749140395,225,0 +170749140444,228,0 +170749140492,227,0 +170749140540,229,0 +170749140590,228,0 +170749140638,228,0 +170749140686,228,0 +170749140735,228,0 +170749140783,227,0 +170749140831,217,0 +170749140879,216,0 +170749140927,218,0 +170749140975,219,0 +170749141023,220,0 +170749141071,221,0 +170749141119,222,0 +170749141167,222,0 +170749141215,223,0 +170749141263,223,0 +170749141311,224,0 +170749141359,226,0 +170749141407,227,0 +170749141454,230,0 +170749141504,227,0 +170749141554,229,0 +170749141603,227,0 +170749141651,227,0 +170749141699,227,0 +170749141747,218,0 +170749141795,216,0 +170749141843,216,0 +170749141891,216,0 +170749141940,217,0 +170749141988,218,0 +170749142038,219,0 +170749142086,219,0 +170749142135,221,0 +170749142183,222,0 +170749142231,224,0 +170749142279,226,0 +170749142327,226,0 +170749142376,226,0 +170749142426,227,0 +170749142474,228,0 +170749142523,228,0 +170749142571,227,0 +170749142621,228,0 +170749142669,226,0 +170749142717,215,0 +170749142765,215,0 +170749142813,216,0 +170749142862,217,0 +170749142910,217,0 +170749142960,218,0 +170749143008,219,0 +170749143056,219,0 +170749143104,221,0 +170749143151,221,0 +170749143199,224,0 +170749143247,224,0 +170749143295,225,0 +170749143343,226,0 +170749143391,228,0 +170749143439,227,0 +170749143487,227,0 +170749143535,226,0 +170749143583,227,0 +170749143632,218,0 +170749143680,215,0 +170749143728,216,0 +170749143776,216,0 +170749143824,217,0 +170749143871,218,0 +170749143921,219,0 +170749143969,219,0 +170749144017,220,0 +170749144066,221,0 +170749144116,221,0 +170749144163,224,0 +170749144213,224,0 +170749144263,226,0 +170749144311,225,0 +170749144358,226,0 +170749144408,226,0 +170749144456,227,0 +170749144504,227,0 +170749144553,218,0 +170749144601,216,0 +170749144649,217,0 +170749144699,218,0 +170749144747,219,0 +170749144794,219,0 +170749144842,220,0 +170749144890,221,0 +170749144938,221,0 +170749144986,223,0 +170749145035,222,0 +170749145085,234,0 +170749145133,227,0 +170749145182,228,0 +170749145230,229,0 +170749145278,229,0 +170749145326,229,0 +170749145375,230,0 +170749145423,228,0 +170749145471,228,0 +170749145521,218,0 +170749145568,218,0 +170749145616,219,0 +170749145666,220,0 +170749145714,221,0 +170749145761,222,0 +170749145809,223,0 +170749145859,224,0 +170749145906,224,0 +170749145954,227,0 +170749146002,226,0 +170749146050,225,0 +170749146098,227,0 +170749146147,230,0 +170749146197,230,0 +170749146245,228,0 +170749146294,232,0 +170749146344,227,0 +170749146392,227,0 +170749146440,218,0 +170749146488,218,0 +170749146537,219,0 +170749146585,220,0 +170749146633,221,0 +170749146682,223,0 +170749146730,223,0 +170749146778,224,0 +170749146826,224,0 +170749146874,224,0 +170749146923,226,0 +170749146971,226,0 +170749147019,226,0 +170749147067,229,0 +170749147115,229,0 +170749147163,229,0 +170749147210,227,0 +170749147258,228,0 +170749147306,227,0 +170749147354,218,0 +170749147402,220,0 +170749147452,221,0 +170749147499,222,0 +170749147547,225,0 +170749147597,225,0 +170749147644,226,0 +170749147692,227,0 +170749147740,226,0 +170749147788,229,0 +170749147836,229,0 +170749147884,229,0 +170749147932,225,0 +170749147981,228,0 +170749148029,232,0 +170749148077,230,0 +170749148125,229,0 +170749148174,229,0 +170749148224,228,0 +170749148272,221,0 +170749148320,222,0 +170749148369,222,0 +170749148417,222,0 +170749148465,224,0 +170749148515,224,0 +170749148564,225,0 +170749148614,229,0 +170749148662,230,0 +170749148710,228,0 +170749148758,229,0 +170749148807,228,0 +170749148855,233,0 +170749148903,229,0 +170749148952,229,0 +170749149000,230,0 +170749149048,227,0 +170749149098,227,0 +170749149146,227,0 +170749149195,224,0 +170749149245,219,0 +170749149293,220,0 +170749149341,222,0 +170749149389,224,0 +170749149437,223,0 +170749149485,227,0 +170749149532,228,0 +170749149580,228,0 +170749149630,229,0 +170749149678,229,0 +170749149725,229,0 +170749149773,228,0 +170749149823,232,0 +170749149871,229,0 +170749149919,230,0 +170749149968,231,0 +170749150016,229,0 +170749150064,228,0 +170749150114,228,0 +170749150162,217,0 +170749150210,217,0 +170749150259,218,0 +170749150307,219,0 +170749150355,221,0 +170749150405,222,0 +170749150454,221,0 +170749150503,221,0 +170749150553,224,0 +170749150602,225,0 +170749150650,226,0 +170749150698,227,0 +170749150748,227,0 +170749150796,229,0 +170749150844,230,0 +170749150892,229,0 +170749150940,228,0 +170749150988,229,0 +170749151036,230,0 +170749151085,217,0 +170749151134,216,0 +170749151184,217,0 +170749151232,219,0 +170749151280,219,0 +170749151328,220,0 +170749151377,223,0 +170749151425,223,0 +170749151473,224,0 +170749151521,224,0 +170749151571,224,0 +170749151619,227,0 +170749151667,227,0 +170749151715,229,0 +170749151762,227,0 +170749151812,229,0 +170749151860,228,0 +170749151908,228,0 +170749151956,229,0 +170749152004,217,0 +170749152053,216,0 +170749152101,218,0 +170749152151,219,0 +170749152199,219,0 +170749152248,220,0 +170749152298,221,0 +170749152346,223,0 +170749152393,223,0 +170749152443,222,0 +170749152491,225,0 +170749152540,226,0 +170749152590,225,0 +170749152639,228,0 +170749152687,229,0 +170749152737,228,0 +170749152785,228,0 +170749152833,228,0 +170749152882,228,0 +170749152930,218,0 +170749152980,216,0 +170749153029,216,0 +170749153079,216,0 +170749153127,216,0 +170749153175,217,0 +170749153223,218,0 +170749153272,220,0 +170749153322,221,0 +170749153371,222,0 +170749153419,225,0 +170749153467,225,0 +170749153516,228,0 +170749153564,229,0 +170749153612,229,0 +170749153660,228,0 +170749153708,229,0 +170749153756,230,0 +170749153806,225,0 +170749153855,217,0 +170749153903,216,0 +170749153953,217,0 +170749154002,217,0 +170749154050,218,0 +170749154098,218,0 +170749154146,218,0 +170749154194,218,0 +170749154244,220,0 +170749154293,220,0 +170749154341,221,0 +170749154389,222,0 +170749154438,225,0 +170749154486,224,0 +170749154536,225,0 +170749154585,226,0 +170749154635,228,0 +170749154683,229,0 +170749154731,232,0 +170749154779,217,0 +170749154827,216,0 +170749154875,217,0 +170749154923,216,0 +170749154971,217,0 +170749155018,218,0 +170749155068,219,0 +170749155118,220,0 +170749155167,222,0 +170749155216,222,0 +170749155264,224,0 +170749155312,226,0 +170749155362,226,0 +170749155410,226,0 +170749155458,227,0 +170749155507,227,0 +170749155555,227,0 +170749155603,228,0 +170749155651,228,0 +170749155699,218,0 +170749155749,216,0 +170749155798,216,0 +170749155848,216,0 +170749155896,218,0 +170749155944,219,0 +170749155992,219,0 +170749156041,220,0 +170749156090,223,0 +170749156140,223,0 +170749156188,224,0 +170749156236,226,0 +170749156284,225,0 +170749156332,228,0 +170749156380,227,0 +170749156428,228,0 +170749156477,228,0 +170749156525,230,0 +170749156573,229,0 +170749156623,227,0 +170749156672,216,0 +170749156721,216,0 +170749156769,216,0 +170749156817,216,0 +170749156865,217,0 +170749156913,217,0 +170749156963,219,0 +170749157011,220,0 +170749157060,221,0 +170749157108,221,0 +170749157156,223,0 +170749157204,224,0 +170749157254,224,0 +170749157302,226,0 +170749157350,226,0 +170749157399,227,0 +170749157447,230,0 +170749157495,227,0 +170749157543,226,0 +170749157591,217,0 +170749157639,216,0 +170749157687,216,0 +170749157735,216,0 +170749157783,217,0 +170749157831,216,0 +170749157878,217,0 +170749157926,218,0 +170749157974,220,0 +170749158024,222,0 +170749158072,221,0 +170749158121,225,0 +170749158171,226,0 +170749158219,226,0 +170749158267,225,0 +170749158316,226,0 +170749158366,223,0 +170749158415,231,0 +170749158463,228,0 +170749158513,217,0 +170749158560,216,0 +170749158608,217,0 +170749158658,217,0 +170749158707,217,0 +170749158757,218,0 +170749158805,220,0 +170749158853,222,0 +170749158901,221,0 +170749158950,222,0 +170749158998,221,0 +170749159046,225,0 +170749159094,225,0 +170749159143,227,0 +170749159191,227,0 +170749159241,230,0 +170749159289,228,0 +170749159336,227,0 +170749159386,229,0 +170749159434,217,0 +170749159482,216,0 +170749159530,216,0 +170749159577,218,0 +170749159625,219,0 +170749159673,219,0 +170749159721,221,0 +170749159769,221,0 +170749159817,223,0 +170749159866,223,0 +170749159916,224,0 +170749159964,224,0 +170749160012,226,0 +170749160060,226,0 +170749160108,226,0 +170749160156,226,0 +170749160204,232,0 +170749160252,228,0 +170749160301,228,0 +170749160349,226,0 +170749160397,218,0 +170749160445,219,0 +170749160493,219,0 +170749160542,221,0 +170749160592,221,0 +170749160641,222,0 +170749160691,220,0 +170749160739,224,0 +170749160788,225,0 +170749160838,227,0 +170749160886,226,0 +170749160934,230,0 +170749160982,227,0 +170749161030,230,0 +170749161078,228,0 +170749161127,228,0 +170749161175,228,0 +170749161225,230,0 +170749161274,224,0 +170749161322,218,0 +170749161370,219,0 +170749161418,220,0 +170749161466,221,0 +170749161516,222,0 +170749161564,223,0 +170749161613,224,0 +170749161663,225,0 +170749161712,225,0 +170749161762,226,0 +170749161810,227,0 +170749161857,227,0 +170749161905,229,0 +170749161953,225,0 +170749162003,228,0 +170749162052,228,0 +170749162102,227,0 +170749162150,228,0 +170749162199,224,0 +170749162249,220,0 +170749162298,221,0 +170749162346,221,0 +170749162394,223,0 +170749162442,224,0 +170749162490,223,0 +170749162538,224,0 +170749162586,226,0 +170749162636,226,0 +170749162683,229,0 +170749162731,228,0 +170749162781,227,0 +170749162829,228,0 +170749162878,227,0 +170749162926,228,0 +170749162974,228,0 +170749163023,228,0 +170749163071,228,0 +170749163121,228,0 +170749163169,221,0 +170749163217,217,0 +170749163266,221,0 +170749163314,222,0 +170749163362,222,0 +170749163410,224,0 +170749163458,226,0 +170749163505,226,0 +170749163553,225,0 +170749163603,227,0 +170749163651,229,0 +170749163699,227,0 +170749163747,229,0 +170749163794,231,0 +170749163842,228,0 +170749163890,229,0 +170749163938,228,0 +170749163987,228,0 +170749164035,228,0 +170749164083,217,0 +170749164131,216,0 +170749164179,218,0 +170749164227,220,0 +170749164275,220,0 +170749164323,220,0 +170749164370,222,0 +170749164420,220,0 +170749164468,222,0 +170749164516,224,0 +170749164564,223,0 +170749164612,226,0 +170749164660,226,0 +170749164709,227,0 +170749164759,228,0 +170749164807,228,0 +170749164856,228,0 +170749164904,229,0 +170749164954,227,0 +170749165002,218,0 +170749165050,216,0 +170749165099,217,0 +170749165149,217,0 +170749165198,218,0 +170749165246,219,0 +170749165294,220,0 +170749165343,220,0 +170749165391,221,0 +170749165441,220,0 +170749165489,225,0 +170749165537,224,0 +170749165585,226,0 +170749165632,226,0 +170749165680,226,0 +170749165728,226,0 +170749165776,223,0 +170749165824,222,0 +170749165872,226,0 +170749165921,218,0 +170749165969,216,0 +170749166019,216,0 +170749166067,216,0 +170749166115,216,0 +170749166163,216,0 +170749166211,217,0 +170749166260,218,0 +170749166308,220,0 +170749166356,221,0 +170749166404,223,0 +170749166452,224,0 +170749166500,224,0 +170749166547,226,0 +170749166595,228,0 +170749166643,228,0 +170749166691,226,0 +170749166741,227,0 +170749166788,228,0 +170749166838,227,0 +170749166887,216,0 +170749166935,215,0 +170749166983,216,0 +170749167031,216,0 +170749167079,216,0 +170749167127,217,0 +170749167175,217,0 +170749167223,217,0 +170749167270,217,0 +170749167318,219,0 +170749167368,222,0 +170749167417,222,0 +170749167465,222,0 +170749167513,223,0 +170749167561,224,0 +170749167609,224,0 +170749167657,225,0 +170749167704,227,0 +170749167754,227,0 +170749167803,218,0 +170749167852,216,0 +170749167901,217,0 +170749167949,218,0 +170749167997,220,0 +170749168045,220,0 +170749168093,220,0 +170749168141,222,0 +170749168190,221,0 +170749168240,223,0 +170749168289,225,0 +170749168339,227,0 +170749168387,226,0 +170749168436,227,0 +170749168484,227,0 +170749168534,227,0 +170749168583,228,0 +170749168631,226,0 +170749168681,228,0 +170749168730,217,0 +170749168778,216,0 +170749168826,216,0 +170749168874,217,0 +170749168924,218,0 +170749168972,219,0 +170749169020,220,0 +170749169068,221,0 +170749169116,222,0 +170749169163,222,0 +170749169211,223,0 +170749169259,226,0 +170749169307,228,0 +170749169357,229,0 +170749169406,228,0 +170749169456,228,0 +170749169505,229,0 +170749169553,228,0 +170749169603,228,0 +170749169652,218,0 +170749169702,216,0 +170749169750,216,0 +170749169798,218,0 +170749169846,218,0 +170749169894,219,0 +170749169942,221,0 +170749169989,221,0 +170749170039,221,0 +170749170088,222,0 +170749170136,225,0 +170749170186,224,0 +170749170236,226,0 +170749170284,225,0 +170749170333,228,0 +170749170382,226,0 +170749170432,228,0 +170749170480,226,0 +170749170528,228,0 +170749170576,218,0 +170749170625,217,0 +170749170673,219,0 +170749170721,221,0 +170749170769,222,0 +170749170818,223,0 +170749170868,223,0 +170749170917,226,0 +170749170965,224,0 +170749171013,227,0 +170749171061,226,0 +170749171109,229,0 +170749171157,228,0 +170749171206,228,0 +170749171254,229,0 +170749171302,230,0 +170749171352,230,0 +170749171400,229,0 +170749171448,227,0 +170749171496,218,0 +170749171545,216,0 +170749171593,216,0 +170749171641,219,0 +170749171689,221,0 +170749171737,221,0 +170749171786,224,0 +170749171836,222,0 +170749171884,224,0 +170749171933,225,0 +170749171981,225,0 +170749172029,227,0 +170749172077,227,0 +170749172125,228,0 +170749172173,229,0 +170749172221,230,0 +170749172269,228,0 +170749172319,229,0 +170749172367,228,0 +170749172416,218,0 +170749172466,216,0 +170749172515,216,0 +170749172563,217,0 +170749172611,217,0 +170749172659,218,0 +170749172707,219,0 +170749172755,220,0 +170749172803,220,0 +170749172851,220,0 +170749172900,222,0 +170749172948,222,0 +170749172996,224,0 +170749173046,223,0 +170749173094,227,0 +170749173143,227,0 +170749173193,226,0 +170749173241,226,0 +170749173289,228,0 +170749173337,221,0 +170749173385,218,0 +170749173434,218,0 +170749173484,219,0 +170749173532,219,0 +170749173581,222,0 +170749173629,222,0 +170749173679,223,0 +170749173727,224,0 +170749173775,225,0 +170749173824,225,0 +170749173874,227,0 +170749173922,227,0 +170749173970,227,0 +170749174018,228,0 +170749174066,229,0 +170749174113,232,0 +170749174161,229,0 +170749174211,229,0 +170749174259,228,0 +170749174307,217,0 +170749174355,217,0 +170749174403,220,0 +170749174451,220,0 +170749174499,221,0 +170749174548,222,0 +170749174596,224,0 +170749174646,224,0 +170749174695,224,0 +170749174743,227,0 +170749174791,226,0 +170749174841,228,0 +170749174890,228,0 +170749174940,229,0 +170749174988,229,0 +170749175037,230,0 +170749175085,233,0 +170749175133,228,0 +170749175182,227,0 +170749175232,218,0 +170749175280,219,0 +170749175328,220,0 +170749175376,221,0 +170749175424,223,0 +170749175472,224,0 +170749175520,224,0 +170749175568,224,0 +170749175616,226,0 +170749175664,228,0 +170749175712,227,0 +170749175760,229,0 +170749175807,230,0 +170749175855,229,0 +170749175903,230,0 +170749175951,230,0 +170749175999,229,0 +170749176047,227,0 +170749176095,228,0 +170749176145,220,0 +170749176194,220,0 +170749176242,222,0 +170749176290,225,0 +170749176337,223,0 +170749176385,225,0 +170749176433,224,0 +170749176481,226,0 +170749176529,226,0 +170749176577,225,0 +170749176625,228,0 +170749176672,228,0 +170749176720,229,0 +170749176768,227,0 +170749176816,229,0 +170749176864,227,0 +170749176912,228,0 +170749176960,228,0 +170749177008,229,0 +170749177057,223,0 +170749177105,218,0 +170749177153,220,0 +170749177202,220,0 +170749177250,222,0 +170749177298,223,0 +170749177348,223,0 +170749177397,224,0 +170749177447,226,0 +170749177495,226,0 +170749177544,228,0 +170749177592,228,0 +170749177642,230,0 +170749177690,228,0 +170749177739,229,0 +170749177789,230,0 +170749177837,229,0 +170749177885,228,0 +170749177933,228,0 +170749177980,218,0 +170749178028,217,0 +170749178076,218,0 +170749178124,220,0 +170749178172,221,0 +170749178220,222,0 +170749178268,223,0 +170749178318,223,0 +170749178367,224,0 +170749178415,225,0 +170749178463,225,0 +170749178511,225,0 +170749178559,229,0 +170749178606,228,0 +170749178654,229,0 +170749178702,227,0 +170749178750,228,0 +170749178800,228,0 +170749178849,228,0 +170749178897,227,0 +170749178946,216,0 +170749178996,217,0 +170749179046,219,0 +170749179094,221,0 +170749179143,220,0 +170749179191,221,0 +170749179239,221,0 +170749179288,221,0 +170749179336,223,0 +170749179384,224,0 +170749179432,225,0 +170749179480,225,0 +170749179530,231,0 +170749179579,229,0 +170749179629,226,0 +170749179679,228,0 +170749179726,228,0 +170749179776,227,0 +170749179825,227,0 +170749179875,216,0 +170749179924,217,0 +170749179972,218,0 +170749180020,218,0 +170749180070,219,0 +170749180119,221,0 +170749180167,220,0 +170749180215,220,0 +170749180263,222,0 +170749180311,223,0 +170749180360,224,0 +170749180408,225,0 +170749180456,227,0 +170749180504,228,0 +170749180552,227,0 +170749180601,227,0 +170749180651,230,0 +170749180700,228,0 +170749180748,228,0 +170749180796,217,0 +170749180844,217,0 +170749180892,218,0 +170749180940,218,0 +170749180990,219,0 +170749181038,221,0 +170749181086,221,0 +170749181135,222,0 +170749181185,223,0 +170749181234,225,0 +170749181284,224,0 +170749181332,225,0 +170749181380,226,0 +170749181428,226,0 +170749181477,229,0 +170749181525,228,0 +170749181575,229,0 +170749181624,228,0 +170749181672,225,0 +170749181722,216,0 +170749181771,216,0 +170749181819,216,0 +170749181869,216,0 +170749181918,217,0 +170749181968,217,0 +170749182016,218,0 +170749182064,219,0 +170749182113,221,0 +170749182161,223,0 +170749182209,223,0 +170749182257,225,0 +170749182306,225,0 +170749182354,224,0 +170749182404,227,0 +170749182452,227,0 +170749182501,226,0 +170749182549,227,0 +170749182597,228,0 +170749182645,217,0 +170749182693,216,0 +170749182741,216,0 +170749182789,216,0 +170749182837,218,0 +170749182886,219,0 +170749182934,221,0 +170749182982,221,0 +170749183030,222,0 +170749183078,223,0 +170749183126,224,0 +170749183174,225,0 +170749183224,226,0 +170749183272,228,0 +170749183321,228,0 +170749183369,227,0 +170749183417,229,0 +170749183465,231,0 +170749183513,227,0 +170749183561,218,0 +170749183609,216,0 +170749183657,216,0 +170749183705,216,0 +170749183753,217,0 +170749183801,218,0 +170749183849,219,0 +170749183898,220,0 +170749183946,221,0 +170749183994,222,0 +170749184042,224,0 +170749184092,225,0 +170749184141,225,0 +170749184189,226,0 +170749184237,229,0 +170749184285,227,0 +170749184333,227,0 +170749184381,227,0 +170749184429,227,0 +170749184478,225,0 +170749184528,216,0 +170749184576,216,0 +170749184623,218,0 +170749184673,219,0 +170749184721,220,0 +170749184769,221,0 +170749184817,222,0 +170749184866,224,0 +170749184914,226,0 +170749184964,226,0 +170749185012,226,0 +170749185060,228,0 +170749185109,228,0 +170749185157,228,0 +170749185205,228,0 +170749185253,228,0 +170749185303,228,0 +170749185351,228,0 +170749185400,228,0 +170749185450,216,0 +170749185499,215,0 +170749185547,216,0 +170749185597,216,0 +170749185645,217,0 +170749185692,218,0 +170749185740,219,0 +170749185788,220,0 +170749185836,221,0 +170749185886,225,0 +170749185934,224,0 +170749185982,225,0 +170749186030,225,0 +170749186079,225,0 +170749186129,228,0 +170749186178,229,0 +170749186228,229,0 +170749186277,228,0 +170749186325,227,0 +170749186373,216,0 +170749186423,215,0 +170749186471,216,0 +170749186520,216,0 +170749186568,217,0 +170749186616,217,0 +170749186664,217,0 +170749186713,219,0 +170749186761,219,0 +170749186811,221,0 +170749186859,222,0 +170749186908,226,0 +170749186956,226,0 +170749187004,227,0 +170749187054,228,0 +170749187102,227,0 +170749187151,227,0 +170749187199,229,0 +170749187247,228,0 +170749187295,217,0 +170749187344,215,0 +170749187392,215,0 +170749187440,216,0 +170749187488,216,0 +170749187538,217,0 +170749187586,217,0 +170749187635,217,0 +170749187683,218,0 +170749187733,219,0 +170749187781,220,0 +170749187829,222,0 +170749187877,223,0 +170749187925,223,0 +170749187974,223,0 +170749188022,224,0 +170749188070,226,0 +170749188118,226,0 +170749188167,228,0 +170749188215,218,0 +170749188265,216,0 +170749188315,217,0 +170749188362,218,0 +170749188410,218,0 +170749188460,219,0 +170749188508,221,0 +170749188556,222,0 +170749188604,223,0 +170749188653,226,0 +170749188703,224,0 +170749188751,225,0 +170749188800,227,0 +170749188850,226,0 +170749188898,228,0 +170749188946,228,0 +170749188994,228,0 +170749189043,227,0 +170749189093,228,0 +170749189142,219,0 +170749189190,216,0 +170749189238,217,0 +170749189286,218,0 +170749189334,219,0 +170749189384,220,0 +170749189433,221,0 +170749189481,222,0 +170749189529,223,0 +170749189578,223,0 +170749189626,225,0 +170749189674,225,0 +170749189724,226,0 +170749189774,227,0 +170749189823,228,0 +170749189871,228,0 +170749189919,227,0 +170749189967,227,0 +170749190016,228,0 +170749190064,218,0 +170749190114,217,0 +170749190162,217,0 +170749190211,218,0 +170749190259,220,0 +170749190309,221,0 +170749190358,222,0 +170749190406,222,0 +170749190454,224,0 +170749190504,224,0 +170749190552,227,0 +170749190600,226,0 +170749190648,229,0 +170749190697,226,0 +170749190747,230,0 +170749190796,228,0 +170749190846,228,0 +170749190893,228,0 +170749190941,228,0 +170749190989,226,0 +170749191039,217,0 +170749191088,218,0 +170749191138,220,0 +170749191186,220,0 +170749191234,222,0 +170749191282,222,0 +170749191330,226,0 +170749191379,223,0 +170749191427,225,0 +170749191477,224,0 +170749191525,228,0 +170749191572,226,0 +170749191620,227,0 +170749191670,226,0 +170749191718,228,0 +170749191766,229,0 +170749191815,232,0 +170749191865,228,0 +170749191913,227,0 +170749191961,217,0 +170749192010,219,0 +170749192058,221,0 +170749192106,220,0 +170749192154,222,0 +170749192203,224,0 +170749192251,223,0 +170749192301,225,0 +170749192349,225,0 +170749192397,226,0 +170749192446,227,0 +170749192494,229,0 +170749192544,229,0 +170749192592,231,0 +170749192641,230,0 +170749192689,229,0 +170749192739,229,0 +170749192786,227,0 +170749192836,227,0 +170749192884,216,0 +170749192932,217,0 +170749192979,219,0 +170749193027,220,0 +170749193077,221,0 +170749193126,222,0 +170749193174,222,0 +170749193224,222,0 +170749193273,226,0 +170749193321,226,0 +170749193369,227,0 +170749193419,228,0 +170749193467,232,0 +170749193515,229,0 +170749193563,230,0 +170749193612,229,0 +170749193660,229,0 +170749193708,230,0 +170749193756,229,0 +170749193803,217,0 +170749193851,216,0 +170749193899,218,0 +170749193947,219,0 +170749193995,220,0 +170749194043,221,0 +170749194091,223,0 +170749194139,223,0 +170749194187,224,0 +170749194235,224,0 +170749194283,227,0 +170749194331,230,0 +170749194379,227,0 +170749194427,227,0 +170749194476,230,0 +170749194524,229,0 +170749194574,228,0 +170749194622,229,0 +170749194671,227,0 +170749194719,217,0 +170749194767,216,0 +170749194816,217,0 +170749194866,218,0 +170749194914,218,0 +170749194963,220,0 +170749195011,220,0 +170749195059,221,0 +170749195109,222,0 +170749195157,223,0 +170749195205,226,0 +170749195253,227,0 +170749195301,227,0 +170749195350,226,0 +170749195398,227,0 +170749195446,231,0 +170749195494,230,0 +170749195542,230,0 +170749195590,228,0 +170749195637,218,0 +170749195685,216,0 +170749195733,216,0 +170749195781,218,0 +170749195829,218,0 +170749195877,219,0 +170749195925,219,0 +170749195973,220,0 +170749196022,221,0 +170749196070,224,0 +170749196118,224,0 +170749196166,226,0 +170749196214,225,0 +170749196262,228,0 +170749196312,229,0 +170749196360,230,0 +170749196409,230,0 +170749196457,229,0 +170749196505,229,0 +170749196553,233,0 +170749196601,217,0 +170749196650,216,0 +170749196698,218,0 +170749196748,219,0 +170749196796,220,0 +170749196845,221,0 +170749196893,221,0 +170749196941,222,0 +170749196989,222,0 +170749197037,225,0 +170749197085,226,0 +170749197133,225,0 +170749197181,226,0 +170749197229,226,0 +170749197277,226,0 +170749197325,227,0 +170749197373,227,0 +170749197423,228,0 +170749197471,227,0 +170749197518,218,0 +170749197566,217,0 +170749197614,218,0 +170749197662,219,0 +170749197710,219,0 +170749197758,220,0 +170749197806,223,0 +170749197854,222,0 +170749197902,223,0 +170749197950,222,0 +170749197997,225,0 +170749198045,226,0 +170749198093,230,0 +170749198141,230,0 +170749198189,230,0 +170749198237,232,0 +170749198286,231,0 +170749198334,230,0 +170749198382,228,0 +170749198432,218,0 +170749198479,216,0 +170749198527,216,0 +170749198575,217,0 +170749198623,218,0 +170749198671,220,0 +170749198719,221,0 +170749198767,221,0 +170749198816,223,0 +170749198864,226,0 +170749198912,224,0 +170749198960,223,0 +170749199008,227,0 +170749199056,227,0 +170749199103,226,0 +170749199151,227,0 +170749199199,227,0 +170749199247,230,0 +170749199295,227,0 +170749199345,227,0 +170749199393,217,0 +170749199441,217,0 +170749199489,216,0 +170749199536,216,0 +170749199586,216,0 +170749199635,218,0 +170749199683,219,0 +170749199733,218,0 +170749199781,220,0 +170749199829,222,0 +170749199878,224,0 +170749199926,224,0 +170749199976,226,0 +170749200024,226,0 +170749200073,229,0 +170749200121,231,0 +170749200169,227,0 +170749200217,228,0 +170749200267,228,0 +170749200315,217,0 +170749200363,217,0 +170749200410,216,0 +170749200458,216,0 +170749200506,217,0 +170749200554,217,0 +170749200602,219,0 +170749200652,221,0 +170749200701,222,0 +170749200749,221,0 +170749200799,223,0 +170749200847,224,0 +170749200895,224,0 +170749200943,225,0 +170749200991,225,0 +170749201038,226,0 +170749201086,228,0 +170749201134,228,0 +170749201182,229,0 +170749201230,218,0 +170749201280,216,0 +170749201329,216,0 +170749201377,216,0 +170749201427,216,0 +170749201475,218,0 +170749201523,219,0 +170749201572,219,0 +170749201620,221,0 +170749201670,222,0 +170749201717,224,0 +170749201767,227,0 +170749201817,225,0 +170749201866,226,0 +170749201916,225,0 +170749201963,227,0 +170749202013,227,0 +170749202061,226,0 +170749202109,231,0 +170749202157,218,0 +170749202206,216,0 +170749202254,216,0 +170749202304,217,0 +170749202352,218,0 +170749202400,220,0 +170749202449,220,0 +170749202499,221,0 +170749202548,221,0 +170749202596,223,0 +170749202644,227,0 +170749202692,224,0 +170749202740,228,0 +170749202788,229,0 +170749202836,228,0 +170749202884,235,0 +170749202932,229,0 +170749202980,228,0 +170749203028,229,0 +170749203076,218,0 +170749203124,216,0 +170749203172,216,0 +170749203221,218,0 +170749203269,218,0 +170749203319,218,0 +170749203368,220,0 +170749203416,220,0 +170749203464,222,0 +170749203512,221,0 +170749203561,224,0 +170749203609,227,0 +170749203657,226,0 +170749203705,227,0 +170749203753,227,0 +170749203803,228,0 +170749203851,227,0 +170749203899,228,0 +170749203946,227,0 +170749203994,226,0 +170749204044,217,0 +170749204092,218,0 +170749204139,218,0 +170749204187,220,0 +170749204235,220,0 +170749204283,222,0 +170749204331,222,0 +170749204379,223,0 +170749204427,224,0 +170749204476,224,0 +170749204524,226,0 +170749204572,226,0 +170749204620,226,0 +170749204668,227,0 +170749204716,231,0 +170749204764,228,0 +170749204813,228,0 +170749204861,230,0 +170749204909,226,0 +170749204957,221,0 +170749205005,221,0 +170749205055,223,0 +170749205104,224,0 +170749205152,225,0 +170749205201,224,0 +170749205249,226,0 +170749205297,227,0 +170749205345,228,0 +170749205393,230,0 +170749205443,228,0 +170749205492,228,0 +170749205540,228,0 +170749205588,228,0 +170749205636,229,0 +170749205684,228,0 +170749205731,228,0 +170749205779,228,0 +170749205827,227,0 +170749205875,219,0 +170749205925,222,0 +170749205974,222,0 +170749206024,222,0 +170749206073,224,0 +170749206122,225,0 +170749206170,225,0 +170749206220,226,0 +170749206268,226,0 +170749206317,227,0 +170749206365,229,0 +170749206413,228,0 +170749206461,229,0 +170749206509,228,0 +170749206557,228,0 +170749206605,228,0 +170749206653,231,0 +170749206701,228,0 +170749206749,227,0 +170749206797,218,0 +170749206845,219,0 +170749206893,220,0 +170749206941,221,0 +170749206988,221,0 +170749207038,222,0 +170749207086,222,0 +170749207134,225,0 +170749207181,225,0 +170749207229,224,0 +170749207277,227,0 +170749207325,228,0 +170749207373,228,0 +170749207421,227,0 +170749207468,228,0 +170749207518,230,0 +170749207566,230,0 +170749207614,229,0 +170749207663,228,0 +170749207713,227,0 +170749207761,216,0 +170749207810,216,0 +170749207858,216,0 +170749207906,218,0 +170749207954,219,0 +170749208003,221,0 +170749208051,220,0 +170749208099,222,0 +170749208147,222,0 +170749208197,222,0 +170749208246,224,0 +170749208294,223,0 +170749208344,225,0 +170749208392,227,0 +170749208440,227,0 +170749208487,227,0 +170749208535,226,0 +170749208583,234,0 +170749208631,228,0 +170749208680,217,0 +170749208730,215,0 +170749208779,216,0 +170749208829,216,0 +170749208877,217,0 +170749208926,218,0 +170749208974,218,0 +170749209024,220,0 +170749209072,221,0 +170749209120,223,0 +170749209169,224,0 +170749209219,224,0 +170749209268,227,0 +170749209318,225,0 +170749209366,226,0 +170749209415,227,0 +170749209463,227,0 +170749209511,227,0 +170749209559,227,0 +170749209608,217,0 +170749209656,216,0 +170749209704,216,0 +170749209754,217,0 +170749209802,217,0 +170749209849,218,0 +170749209897,219,0 +170749209947,221,0 +170749209995,222,0 +170749210044,222,0 +170749210092,224,0 +170749210141,228,0 +170749210189,225,0 +170749210237,226,0 +170749210285,230,0 +170749210333,230,0 +170749210381,229,0 +170749210429,226,0 +170749210477,229,0 +170749210525,218,0 +170749210572,216,0 +170749210620,216,0 +170749210668,216,0 +170749210718,217,0 +170749210766,217,0 +170749210815,219,0 +170749210863,220,0 +170749210911,222,0 +170749210961,222,0 +170749211009,224,0 +170749211057,225,0 +170749211104,227,0 +170749211152,227,0 +170749211202,227,0 +170749211251,226,0 +170749211299,226,0 +170749211347,230,0 +170749211395,228,0 +170749211443,224,0 +170749211491,217,0 +170749211539,217,0 +170749211587,217,0 +170749211637,217,0 +170749211686,219,0 +170749211734,219,0 +170749211783,221,0 +170749211831,222,0 +170749211879,223,0 +170749211929,222,0 +170749211977,223,0 +170749212025,228,0 +170749212073,227,0 +170749212121,229,0 +170749212169,228,0 +170749212217,228,0 +170749212265,227,0 +170749212312,229,0 +170749212362,228,0 +170749212410,217,0 +170749212458,216,0 +170749212506,218,0 +170749212554,219,0 +170749212602,221,0 +170749212651,221,0 +170749212699,221,0 +170749212747,222,0 +170749212797,223,0 +170749212845,224,0 +170749212893,224,0 +170749212941,226,0 +170749212988,226,0 +170749213038,227,0 +170749213086,228,0 +170749213134,229,0 +170749213183,228,0 +170749213231,228,0 +170749213279,228,0 +170749213329,218,0 +170749213378,217,0 +170749213428,219,0 +170749213476,220,0 +170749213525,215,0 +170749213573,219,0 +170749213621,221,0 +170749213669,224,0 +170749213718,223,0 +170749213768,226,0 +170749213817,226,0 +170749213865,228,0 +170749213913,227,0 +170749213961,227,0 +170749214009,228,0 +170749214057,229,0 +170749214107,227,0 +170749214156,228,0 +170749214204,229,0 +170749214252,219,0 +170749214300,219,0 +170749214348,221,0 +170749214396,221,0 +170749214445,223,0 +170749214493,222,0 +170749214541,222,0 +170749214589,224,0 +170749214637,225,0 +170749214685,225,0 +170749214734,227,0 +170749214782,227,0 +170749214832,229,0 +170749214880,229,0 +170749214928,231,0 +170749214976,227,0 +170749215023,228,0 +170749215071,229,0 +170749215119,228,0 +170749215167,227,0 +170749215216,216,0 +170749215266,218,0 +170749215314,219,0 +170749215363,220,0 +170749215411,221,0 +170749215461,223,0 +170749215508,223,0 +170749215558,226,0 +170749215608,226,0 +170749215655,226,0 +170749215703,225,0 +170749215751,230,0 +170749215801,229,0 +170749215850,230,0 +170749215900,228,0 +170749215948,229,0 +170749215996,229,0 +170749216044,227,0 +170749216092,227,0 +170749216140,216,0 +170749216188,215,0 +170749216236,224,0 +170749216284,216,0 +170749216332,218,0 +170749216379,218,0 +170749216427,219,0 +170749216475,222,0 +170749216525,228,0 +170749216573,222,0 +170749216622,224,0 +170749216670,227,0 +170749216718,227,0 +170749216768,229,0 +170749216816,225,0 +170749216864,228,0 +170749216913,227,0 +170749216961,228,0 +170749217009,228,0 +170749217058,216,0 +170749217108,216,0 +170749217156,216,0 +170749217204,217,0 +170749217252,217,0 +170749217300,219,0 +170749217348,219,0 +170749217396,219,0 +170749217444,222,0 +170749217492,222,0 +170749217539,222,0 +170749217587,224,0 +170749217637,225,0 +170749217685,224,0 +170749217733,227,0 +170749217781,228,0 +170749217829,229,0 +170749217877,229,0 +170749217926,228,0 +170749217974,218,0 +170749218022,216,0 +170749218070,217,0 +170749218118,217,0 +170749218166,218,0 +170749218213,219,0 +170749218263,220,0 +170749218313,220,0 +170749218361,222,0 +170749218410,223,0 +170749218459,224,0 +170749218509,227,0 +170749218558,225,0 +170749218606,231,0 +170749218656,229,0 +170749218704,229,0 +170749218752,228,0 +170749218800,228,0 +170749218848,229,0 +170749218896,217,0 +170749218945,217,0 +170749218993,217,0 +170749219043,219,0 +170749219091,218,0 +170749219140,220,0 +170749219188,220,0 +170749219236,221,0 +170749219284,222,0 +170749219332,223,0 +170749219382,224,0 +170749219431,225,0 +170749219479,226,0 +170749219527,229,0 +170749219575,229,0 +170749219623,230,0 +170749219671,230,0 +170749219720,227,0 +170749219768,227,0 +170749219816,227,0 +170749219864,216,0 +170749219914,217,0 +170749219963,219,0 +170749220011,220,0 +170749220059,220,0 +170749220107,221,0 +170749220155,224,0 +170749220203,224,0 +170749220251,224,0 +170749220299,227,0 +170749220347,226,0 +170749220395,229,0 +170749220444,231,0 +170749220492,230,0 +170749220540,230,0 +170749220588,229,0 +170749220638,229,0 +170749220686,229,0 +170749220734,228,0 +170749220783,217,0 +170749220831,218,0 +170749220881,220,0 +170749220929,222,0 +170749220977,223,0 +170749221025,224,0 +170749221074,222,0 +170749221124,226,0 +170749221173,226,0 +170749221221,227,0 +170749221271,227,0 +170749221318,228,0 +170749221366,230,0 +170749221416,229,0 +170749221464,229,0 +170749221512,229,0 +170749221561,229,0 +170749221611,230,0 +170749221660,225,0 +170749221708,218,0 +170749221756,219,0 +170749221804,219,0 +170749221852,220,0 +170749221900,221,0 +170749221948,223,0 +170749221996,225,0 +170749222044,225,0 +170749222093,226,0 +170749222143,227,0 +170749222191,225,0 +170749222239,226,0 +170749222286,230,0 +170749222334,229,0 +170749222382,228,0 +170749222430,229,0 +170749222478,229,0 +170749222526,230,0 +170749222574,228,0 +170749222622,218,0 +170749222670,216,0 +170749222717,217,0 +170749222767,218,0 +170749222816,218,0 +170749222866,219,0 +170749222915,221,0 +170749222965,220,0 +170749223013,221,0 +170749223061,222,0 +170749223109,224,0 +170749223157,222,0 +170749223205,224,0 +170749223254,226,0 +170749223302,227,0 +170749223350,227,0 +170749223400,227,0 +170749223448,230,0 +170749223495,227,0 +170749223543,218,0 +170749223593,216,0 +170749223642,216,0 +170749223690,218,0 +170749223738,218,0 +170749223788,219,0 +170749223836,220,0 +170749223885,222,0 +170749223933,221,0 +170749223981,224,0 +170749224029,224,0 +170749224077,225,0 +170749224125,225,0 +170749224174,227,0 +170749224222,227,0 +170749224272,228,0 +170749224320,228,0 +170749224368,228,0 +170749224415,228,0 +170749224463,218,0 +170749224511,216,0 +170749224559,216,0 +170749224607,217,0 +170749224656,218,0 +170749224704,219,0 +170749224754,220,0 +170749224803,220,0 +170749224853,221,0 +170749224902,220,0 +170749224950,224,0 +170749225000,224,0 +170749225049,224,0 +170749225099,226,0 +170749225148,226,0 +170749225196,228,0 +170749225246,227,0 +170749225294,227,0 +170749225342,227,0 +170749225390,227,0 +170749225438,217,0 +170749225486,216,0 +170749225534,216,0 +170749225581,217,0 +170749225629,216,0 +170749225679,218,0 +170749225727,219,0 +170749225776,219,0 +170749225826,220,0 +170749225874,222,0 +170749225922,222,0 +170749225970,224,0 +170749226019,226,0 +170749226069,226,0 +170749226117,229,0 +170749226165,228,0 +170749226212,228,0 +170749226262,227,0 +170749226310,228,0 +170749226358,216,0 +170749226406,216,0 +170749226454,217,0 +170749226502,216,0 +170749226551,217,0 +170749226601,217,0 +170749226649,218,0 +170749226697,219,0 +170749226745,220,0 +170749226794,222,0 +170749226842,222,0 +170749226892,224,0 +170749226940,225,0 +170749226988,225,0 +170749227036,226,0 +170749227085,227,0 +170749227133,228,0 +170749227183,227,0 +170749227231,227,0 +170749227279,217,0 +170749227326,216,0 +170749227374,216,0 +170749227422,217,0 +170749227470,218,0 +170749227520,219,0 +170749227569,220,0 +170749227619,222,0 +170749227669,222,0 +170749227718,225,0 +170749227766,224,0 +170749227814,226,0 +170749227863,226,0 +170749227911,228,0 +170749227961,228,0 +170749228009,227,0 +170749228057,228,0 +170749228105,228,0 +170749228153,227,0 +170749228201,218,0 +170749228249,216,0 +170749228297,216,0 +170749228345,217,0 +170749228393,219,0 +170749228441,221,0 +170749228489,222,0 +170749228538,222,0 +170749228586,225,0 +170749228634,224,0 +170749228684,226,0 +170749228733,227,0 +170749228782,226,0 +170749228832,226,0 +170749228881,227,0 +170749228929,228,0 +170749228979,228,0 +170749229027,226,0 +170749229076,228,0 +170749229124,221,0 +170749229172,216,0 +170749229222,218,0 +170749229270,218,0 +170749229318,219,0 +170749229366,221,0 +170749229415,222,0 +170749229463,222,0 +170749229511,223,0 +170749229561,225,0 +170749229608,226,0 +170749229656,225,0 +170749229706,228,0 +170749229754,226,0 +170749229802,228,0 +170749229851,228,0 +170749229899,230,0 +170749229947,228,0 +170749229995,227,0 +170749230043,217,0 +170749230091,216,0 +170749230139,217,0 +170749230187,218,0 +170749230235,219,0 +170749230283,220,0 +170749230333,221,0 +170749230381,221,0 +170749230428,223,0 +170749230478,223,0 +170749230527,225,0 +170749230575,226,0 +170749230623,224,0 +170749230671,227,0 +170749230719,229,0 +170749230767,229,0 +170749230815,229,0 +170749230863,228,0 +170749230911,229,0 +170749230959,228,0 +170749231007,218,0 +170749231056,218,0 +170749231104,218,0 +170749231152,220,0 +170749231200,219,0 +170749231248,221,0 +170749231296,221,0 +170749231344,222,0 +170749231392,223,0 +170749231440,225,0 +170749231488,225,0 +170749231536,226,0 +170749231586,225,0 +170749231633,226,0 +170749231681,227,0 +170749231729,229,0 +170749231779,228,0 +170749231827,228,0 +170749231875,227,0 +170749231923,218,0 +170749231972,217,0 +170749232022,217,0 +170749232071,218,0 +170749232119,219,0 +170749232167,220,0 +170749232217,220,0 +170749232265,222,0 +170749232313,225,0 +170749232360,223,0 +170749232408,224,0 +170749232456,226,0 +170749232504,226,0 +170749232552,227,0 +170749232600,228,0 +170749232650,229,0 +170749232698,229,0 +170749232746,224,0 +170749232794,229,0 +170749232842,219,0 +170749232890,216,0 +170749232938,216,0 +170749232986,218,0 +170749233035,219,0 +170749233085,219,0 +170749233133,221,0 +170749233181,221,0 +170749233230,221,0 +170749233278,222,0 +170749233326,222,0 +170749233374,225,0 +170749233422,227,0 +170749233470,227,0 +170749233519,227,0 +170749233567,227,0 +170749233615,227,0 +170749233665,227,0 +170749233713,228,0 +170749233762,220,0 +170749233810,217,0 +170749233858,218,0 +170749233906,219,0 +170749233954,219,0 +170749234002,221,0 +170749234051,222,0 +170749234101,222,0 +170749234149,225,0 +170749234197,223,0 +170749234246,224,0 +170749234294,225,0 +170749234344,227,0 +170749234392,229,0 +170749234440,227,0 +170749234489,235,0 +170749234537,230,0 +170749234587,231,0 +170749234636,230,0 +170749234686,226,0 +170749234735,220,0 +170749234783,219,0 +170749234833,221,0 +170749234881,222,0 +170749234930,224,0 +170749234978,222,0 +170749235028,224,0 +170749235076,225,0 +170749235124,229,0 +170749235172,228,0 +170749235220,227,0 +170749235268,227,0 +170749235316,226,0 +170749235365,230,0 +170749235413,228,0 +170749235462,230,0 +170749235512,228,0 +170749235561,228,0 +170749235611,227,0 +170749235659,220,0 +170749235707,220,0 +170749235756,221,0 +170749235804,222,0 +170749235854,223,0 +170749235902,226,0 +170749235950,227,0 +170749235999,226,0 +170749236047,228,0 +170749236095,228,0 +170749236143,229,0 +170749236191,229,0 +170749236241,232,0 +170749236290,228,0 +170749236338,229,0 +170749236386,225,0 +170749236435,228,0 +170749236485,228,0 +170749236534,227,0 +170749236582,220,0 +170749236630,222,0 +170749236678,223,0 +170749236728,225,0 +170749236776,224,0 +170749236825,226,0 +170749236875,226,0 +170749236923,228,0 +170749236972,229,0 +170749237020,229,0 +170749237070,231,0 +170749237117,231,0 +170749237165,229,0 +170749237215,230,0 +170749237265,229,0 +170749237314,231,0 +170749237362,229,0 +170749237411,228,0 +170749237459,223,0 +170749237507,218,0 +170749237555,221,0 +170749237605,221,0 +170749237653,222,0 +170749237703,223,0 +170749237752,224,0 +170749237801,225,0 +170749237851,225,0 +170749237899,227,0 +170749237947,228,0 +170749237996,229,0 +170749238046,229,0 +170749238095,228,0 +170749238143,231,0 +170749238191,230,0 +170749238241,228,0 +170749238289,229,0 +170749238337,230,0 +170749238386,228,0 +170749238434,219,0 +170749238482,219,0 +170749238532,220,0 +170749238580,222,0 +170749238627,222,0 +170749238675,222,0 +170749238723,221,0 +170749238773,224,0 +170749238821,227,0 +170749238870,226,0 +170749238918,226,0 +170749238966,227,0 +170749239016,228,0 +170749239063,230,0 +170749239111,229,0 +170749239159,228,0 +170749239209,229,0 +170749239258,228,0 +170749239308,228,0 +170749239356,217,0 +170749239404,217,0 +170749239452,218,0 +170749239500,219,0 +170749239549,218,0 +170749239597,221,0 +170749239647,221,0 +170749239696,222,0 +170749239744,222,0 +170749239792,223,0 +170749239840,224,0 +170749239890,225,0 +170749239939,227,0 +170749239989,226,0 +170749240037,229,0 +170749240085,228,0 +170749240134,230,0 +170749240182,228,0 +170749240230,227,0 +170749240278,217,0 +170749240326,216,0 +170749240374,216,0 +170749240423,216,0 +170749240471,216,0 +170749240519,216,0 +170749240567,217,0 +170749240617,218,0 +170749240665,219,0 +170749240714,220,0 +170749240764,221,0 +170749240813,222,0 +170749240861,224,0 +170749240911,224,0 +170749240960,225,0 +170749241008,226,0 +170749241056,226,0 +170749241104,228,0 +170749241154,229,0 +170749241202,217,0 +170749241250,217,0 +170749241299,216,0 +170749241347,216,0 +170749241395,217,0 +170749241443,218,0 +170749241492,219,0 +170749241542,219,0 +170749241590,220,0 +170749241639,221,0 +170749241687,223,0 +170749241737,223,0 +170749241785,226,0 +170749241834,228,0 +170749241882,227,0 +170749241930,227,0 +170749241980,228,0 +170749242028,228,0 +170749242076,228,0 +170749242125,217,0 +170749242175,216,0 +170749242223,217,0 +170749242271,216,0 +170749242319,217,0 +170749242368,217,0 +170749242418,218,0 +170749242466,221,0 +170749242515,220,0 +170749242563,222,0 +170749242611,224,0 +170749242661,225,0 +170749242709,225,0 +170749242757,227,0 +170749242805,228,0 +170749242854,229,0 +170749242904,232,0 +170749242952,228,0 +170749242999,228,0 +170749243047,218,0 +170749243095,216,0 +170749243143,216,0 +170749243193,216,0 +170749243241,218,0 +170749243289,218,0 +170749243338,220,0 +170749243386,223,0 +170749243434,220,0 +170749243482,223,0 +170749243530,224,0 +170749243580,225,0 +170749243629,225,0 +170749243679,225,0 +170749243728,226,0 +170749243776,227,0 +170749243825,228,0 +170749243874,227,0 +170749243921,228,0 +170749243969,218,0 +170749244017,216,0 +170749244065,216,0 +170749244113,216,0 +170749244163,217,0 +170749244211,217,0 +170749244259,219,0 +170749244308,220,0 +170749244356,220,0 +170749244405,221,0 +170749244455,225,0 +170749244504,226,0 +170749244552,225,0 +170749244602,225,0 +170749244650,228,0 +170749244699,227,0 +170749244747,227,0 +170749244795,229,0 +170749244845,227,0 +170749244893,218,0 +170749244942,216,0 +170749244990,216,0 +170749245040,216,0 +170749245089,216,0 +170749245137,217,0 +170749245186,218,0 +170749245236,218,0 +170749245284,220,0 +170749245332,220,0 +170749245380,221,0 +170749245428,222,0 +170749245477,224,0 +170749245525,224,0 +170749245573,225,0 +170749245621,225,0 +170749245669,227,0 +170749245719,226,0 +170749245767,227,0 +170749245814,225,0 +170749245862,216,0 +170749245912,216,0 +170749245960,216,0 +170749246009,217,0 +170749246057,217,0 +170749246107,218,0 +170749246155,219,0 +170749246203,221,0 +170749246251,221,0 +170749246300,223,0 +170749246348,225,0 +170749246398,225,0 +170749246446,225,0 +170749246494,226,0 +170749246542,229,0 +170749246589,227,0 +170749246637,228,0 +170749246687,228,0 +170749246735,221,0 +170749246783,216,0 +170749246831,216,0 +170749246879,216,0 +170749246928,218,0 +170749246976,217,0 +170749247026,219,0 +170749247075,219,0 +170749247125,220,0 +170749247173,221,0 +170749247222,221,0 +170749247271,222,0 +170749247319,224,0 +170749247369,228,0 +170749247417,225,0 +170749247465,226,0 +170749247513,227,0 +170749247561,227,0 +170749247609,227,0 +170749247657,228,0 +170749247705,216,0 +170749247753,215,0 +170749247801,216,0 +170749247848,216,0 +170749247898,216,0 +170749247946,217,0 +170749247994,218,0 +170749248042,217,0 +170749248091,218,0 +170749248139,219,0 +170749248187,221,0 +170749248235,225,0 +170749248283,223,0 +170749248331,224,0 +170749248381,224,0 +170749248429,224,0 +170749248478,226,0 +170749248526,227,0 +170749248576,229,0 +170749248624,216,0 +170749248671,216,0 +170749248719,216,0 +170749248767,218,0 +170749248817,218,0 +170749248865,220,0 +170749248913,220,0 +170749248961,222,0 +170749249009,222,0 +170749249058,224,0 +170749249106,225,0 +170749249156,226,0 +170749249205,226,0 +170749249253,228,0 +170749249301,229,0 +170749249349,228,0 +170749249397,228,0 +170749249447,231,0 +170749249496,229,0 +170749249546,218,0 +170749249594,217,0 +170749249643,219,0 +170749249693,222,0 +170749249742,222,0 +170749249790,223,0 +170749249840,224,0 +170749249889,224,0 +170749249939,225,0 +170749249987,227,0 +170749250036,226,0 +170749250086,228,0 +170749250135,229,0 +170749250185,228,0 +170749250233,227,0 +170749250281,228,0 +170749250328,228,0 +170749250376,246,0 +170749250424,228,0 +170749250472,217,0 +170749250520,216,0 +170749250570,218,0 +170749250619,219,0 +170749250667,219,0 +170749250715,221,0 +170749250763,222,0 +170749250811,222,0 +170749250859,223,0 +170749250907,223,0 +170749250955,223,0 +170749251003,223,0 +170749251051,224,0 +170749251100,224,0 +170749251150,226,0 +170749251199,227,0 +170749251247,227,0 +170749251295,226,0 +170749251343,230,0 +170749251393,228,0 +170749251442,229,0 +170749251492,230,0 +170749251540,229,0 +170749251588,228,0 +170749251636,228,0 +170749251685,228,0 +170749251733,228,0 +170749251781,228,0 +170749251829,227,0 +170749251877,219,0 +170749251925,218,0 +170749251973,220,0 +170749252021,220,0 +170749252069,222,0 +170749252118,223,0 +170749252166,225,0 +170749252214,226,0 +170749252264,225,0 +170749252313,226,0 +170749252363,227,0 +170749252411,226,0 +170749252459,228,0 +170749252507,229,0 +170749252555,228,0 +170749252603,228,0 +170749252651,227,0 +170749252698,228,0 +170749252748,227,0 +170749252797,217,0 +170749252845,216,0 +170749252893,216,0 +170749252943,217,0 +170749252992,218,0 +170749253040,220,0 +170749253088,220,0 +170749253136,221,0 +170749253184,222,0 +170749253232,223,0 +170749253280,224,0 +170749253329,225,0 +170749253379,225,0 +170749253427,226,0 +170749253474,227,0 +170749253522,228,0 +170749253570,227,0 +170749253618,227,0 +170749253666,227,0 +170749253714,218,0 +170749253763,216,0 +170749253811,216,0 +170749253859,216,0 +170749253908,217,0 +170749253956,217,0 +170749254004,217,0 +170749254052,218,0 +170749254100,217,0 +170749254148,221,0 +170749254197,223,0 +170749254245,223,0 +170749254293,224,0 +170749254343,226,0 +170749254392,227,0 +170749254440,230,0 +170749254488,232,0 +170749254538,228,0 +170749254587,227,0 +170749254637,218,0 +170749254686,216,0 +170749254736,216,0 +170749254784,216,0 +170749254832,217,0 +170749254881,217,0 +170749254929,217,0 +170749254979,218,0 +170749255027,219,0 +170749255075,219,0 +170749255123,223,0 +170749255172,223,0 +170749255220,226,0 +170749255269,226,0 +170749255317,228,0 +170749255365,229,0 +170749255413,226,0 +170749255463,227,0 +170749255512,229,0 +170749255560,218,0 +170749255610,217,0 +170749255658,217,0 +170749255706,219,0 +170749255754,221,0 +170749255803,220,0 +170749255853,221,0 +170749255902,223,0 +170749255950,222,0 +170749255998,228,0 +170749256048,227,0 +170749256096,227,0 +170749256143,227,0 +170749256193,227,0 +170749256241,228,0 +170749256289,226,0 +170749256338,227,0 +170749256388,229,0 +170749256437,228,0 +170749256487,219,0 +170749256535,218,0 +170749256583,219,0 +170749256632,220,0 +170749256680,221,0 +170749256730,221,0 +170749256778,224,0 +170749256826,224,0 +170749256875,223,0 +170749256923,224,0 +170749256973,225,0 +170749257021,229,0 +170749257069,228,0 +170749257117,228,0 +170749257165,230,0 +170749257212,230,0 +170749257262,227,0 +170749257310,229,0 +170749257358,228,0 +170749257406,221,0 +170749257454,218,0 +170749257503,220,0 +170749257551,221,0 +170749257599,224,0 +170749257647,224,0 +170749257697,222,0 +170749257746,223,0 +170749257796,225,0 +170749257845,225,0 +170749257895,228,0 +170749257943,228,0 +170749257990,228,0 +170749258038,229,0 +170749258088,230,0 +170749258136,228,0 +170749258185,229,0 +170749258235,228,0 +170749258284,228,0 +170749258334,219,0 +170749258382,219,0 +170749258430,219,0 +170749258479,221,0 +170749258527,222,0 +170749258577,223,0 +170749258625,224,0 +170749258674,224,0 +170749258722,225,0 +170749258770,226,0 +170749258820,227,0 +170749258868,229,0 +170749258915,235,0 +170749258965,229,0 +170749259013,230,0 +170749259061,231,0 +170749259109,230,0 +170749259158,229,0 +170749259208,230,0 +170749259256,225,0 +170749259304,218,0 +170749259352,217,0 +170749259400,219,0 +170749259450,220,0 +170749259498,223,0 +170749259546,225,0 +170749259594,224,0 +170749259642,226,0 +170749259691,225,0 +170749259739,229,0 +170749259789,227,0 +170749259838,229,0 +170749259886,229,0 +170749259936,230,0 +170749259984,229,0 +170749260032,224,0 +170749260081,229,0 +170749260131,227,0 +170749260180,228,0 +170749260230,216,0 +170749260278,216,0 +170749260325,218,0 +170749260373,221,0 +170749260421,221,0 +170749260469,220,0 +170749260519,223,0 +170749260568,223,0 +170749260616,223,0 +170749260666,225,0 +170749260714,225,0 +170749260762,227,0 +170749260810,227,0 +170749260858,229,0 +170749260905,229,0 +170749260953,227,0 +170749261001,227,0 +170749261049,228,0 +170749261099,227,0 +170749261147,217,0 +170749261196,216,0 +170749261244,217,0 +170749261294,219,0 +170749261341,219,0 +170749261389,220,0 +170749261437,221,0 +170749261485,223,0 +170749261533,224,0 +170749261583,223,0 +170749261632,223,0 +170749261682,225,0 +170749261731,226,0 +170749261781,231,0 +170749261829,228,0 +170749261877,228,0 +170749261925,229,0 +170749261973,228,0 +170749262022,228,0 +170749262072,218,0 +170749262121,216,0 +170749262169,217,0 +170749262217,218,0 +170749262266,219,0 +170749262314,220,0 +170749262362,221,0 +170749262412,224,0 +170749262461,222,0 +170749262509,223,0 +170749262557,222,0 +170749262607,224,0 +170749262655,226,0 +170749262704,225,0 +170749262754,228,0 +170749262802,229,0 +170749262850,227,0 +170749262898,225,0 +170749262946,229,0 +170749262994,218,0 +170749263043,216,0 +170749263093,216,0 +170749263141,218,0 +170749263190,218,0 +170749263240,219,0 +170749263289,222,0 +170749263337,221,0 +170749263385,223,0 +170749263434,223,0 +170749263484,224,0 +170749263532,227,0 +170749263580,227,0 +170749263629,228,0 +170749263677,227,0 +170749263725,227,0 +170749263773,228,0 +170749263821,227,0 +170749263869,227,0 +170749263917,218,0 +170749263965,217,0 +170749264013,218,0 +170749264061,219,0 +170749264109,221,0 +170749264158,221,0 +170749264206,222,0 +170749264255,223,0 +170749264303,223,0 +170749264353,225,0 +170749264401,227,0 +170749264450,226,0 +170749264500,228,0 +170749264548,228,0 +170749264596,227,0 +170749264645,230,0 +170749264693,229,0 +170749264741,229,0 +170749264789,228,0 +170749264839,226,0 +170749264887,217,0 +170749264934,218,0 +170749264982,220,0 +170749265032,221,0 +170749265081,222,0 +170749265129,224,0 +170749265179,227,0 +170749265228,224,0 +170749265276,224,0 +170749265324,225,0 +170749265372,227,0 +170749265422,228,0 +170749265470,227,0 +170749265519,227,0 +170749265567,228,0 +170749265615,229,0 +170749265664,227,0 +170749265714,227,0 +170749265762,228,0 +170749265810,218,0 +170749265858,218,0 +170749265907,220,0 +170749265957,221,0 +170749266005,222,0 +170749266054,222,0 +170749266104,223,0 +170749266153,224,0 +170749266201,225,0 +170749266249,226,0 +170749266297,226,0 +170749266347,229,0 +170749266394,229,0 +170749266442,228,0 +170749266490,228,0 +170749266540,228,0 +170749266588,229,0 +170749266636,227,0 +170749266684,227,0 +170749266733,216,0 +170749266781,217,0 +170749266829,219,0 +170749266877,221,0 +170749266926,221,0 +170749266976,221,0 +170749267024,224,0 +170749267072,224,0 +170749267120,225,0 +170749267168,226,0 +170749267216,227,0 +170749267264,227,0 +170749267313,229,0 +170749267361,230,0 +170749267409,228,0 +170749267457,227,0 +170749267505,226,0 +170749267553,229,0 +170749267601,227,0 +170749267649,217,0 +170749267697,216,0 +170749267744,217,0 +170749267794,218,0 +170749267843,221,0 +170749267893,220,0 +170749267941,221,0 +170749267989,222,0 +170749268037,223,0 +170749268086,224,0 +170749268134,225,0 +170749268182,226,0 +170749268232,227,0 +170749268279,227,0 +170749268327,228,0 +170749268377,228,0 +170749268425,227,0 +170749268473,228,0 +170749268521,228,0 +170749268570,218,0 +170749268618,216,0 +170749268668,216,0 +170749268716,216,0 +170749268764,218,0 +170749268812,218,0 +170749268860,220,0 +170749268907,220,0 +170749268957,220,0 +170749269005,221,0 +170749269054,224,0 +170749269102,224,0 +170749269150,226,0 +170749269198,226,0 +170749269246,226,0 +170749269294,227,0 +170749269342,228,0 +170749269391,227,0 +170749269439,225,0 +170749269487,218,0 +170749269535,216,0 +170749269583,216,0 +170749269630,216,0 +170749269678,216,0 +170749269726,217,0 +170749269776,217,0 +170749269824,219,0 +170749269873,220,0 +170749269921,221,0 +170749269971,225,0 +170749270018,223,0 +170749270066,226,0 +170749270116,228,0 +170749270166,226,0 +170749270214,226,0 +170749270263,228,0 +170749270311,227,0 +170749270359,228,0 +170749270407,227,0 +170749270456,217,0 +170749270504,217,0 +170749270552,217,0 +170749270600,218,0 +170749270648,219,0 +170749270696,220,0 +170749270745,222,0 +170749270793,223,0 +170749270841,223,0 +170749270889,225,0 +170749270936,225,0 +170749270986,226,0 +170749271034,226,0 +170749271082,226,0 +170749271130,228,0 +170749271179,228,0 +170749271229,227,0 +170749271277,228,0 +170749271325,227,0 +170749271373,217,0 +170749271422,216,0 +170749271470,218,0 +170749271519,219,0 +170749271567,221,0 +170749271615,221,0 +170749271663,222,0 +170749271713,223,0 +170749271762,223,0 +170749271812,224,0 +170749271859,226,0 +170749271907,227,0 +170749271955,228,0 +170749272003,226,0 +170749272053,228,0 +170749272102,229,0 +170749272152,227,0 +170749272200,229,0 +170749272248,228,0 +170749272297,218,0 +170749272347,216,0 +170749272395,216,0 +170749272444,217,0 +170749272494,219,0 +170749272543,220,0 +170749272591,220,0 +170749272639,222,0 +170749272687,222,0 +170749272737,224,0 +170749272785,224,0 +170749272833,226,0 +170749272880,227,0 +170749272928,227,0 +170749272976,227,0 +170749273026,229,0 +170749273076,228,0 +170749273123,227,0 +170749273171,227,0 +170749273219,218,0 +170749273269,216,0 +170749273318,217,0 +170749273366,216,0 +170749273416,216,0 +170749273464,217,0 +170749273512,220,0 +170749273560,220,0 +170749273608,222,0 +170749273657,222,0 +170749273705,224,0 +170749273755,223,0 +170749273804,225,0 +170749273852,224,0 +170749273902,226,0 +170749273949,228,0 +170749273997,227,0 +170749274045,227,0 +170749274093,229,0 +170749274141,218,0 +170749274190,216,0 +170749274240,217,0 +170749274288,217,0 +170749274336,217,0 +170749274384,218,0 +170749274432,220,0 +170749274480,220,0 +170749274528,220,0 +170749274575,221,0 +170749274623,223,0 +170749274671,225,0 +170749274719,225,0 +170749274767,227,0 +170749274817,231,0 +170749274866,231,0 +170749274914,225,0 +170749274964,228,0 +170749275013,228,0 +170749275063,218,0 +170749275112,216,0 +170749275162,216,0 +170749275210,217,0 +170749275258,217,0 +170749275307,217,0 +170749275355,217,0 +170749275403,218,0 +170749275452,219,0 +170749275500,221,0 +170749275548,221,0 +170749275598,222,0 +170749275646,223,0 +170749275695,224,0 +170749275743,227,0 +170749275793,226,0 +170749275842,226,0 +170749275890,226,0 +170749275938,227,0 +170749275986,218,0 +170749276034,216,0 +170749276082,216,0 +170749276130,216,0 +170749276178,217,0 +170749276226,217,0 +170749276274,218,0 +170749276324,218,0 +170749276372,219,0 +170749276419,218,0 +170749276467,218,0 +170749276515,221,0 +170749276563,224,0 +170749276613,224,0 +170749276662,223,0 +170749276710,224,0 +170749276758,224,0 +170749276806,225,0 +170749276856,226,0 +170749276904,222,0 +170749276952,216,0 +170749277000,216,0 +170749277048,216,0 +170749277097,218,0 +170749277147,219,0 +170749277195,220,0 +170749277243,222,0 +170749277290,221,0 +170749277338,222,0 +170749277388,224,0 +170749277436,224,0 +170749277485,225,0 +170749277533,225,0 +170749277581,226,0 +170749277631,226,0 +170749277679,227,0 +170749277728,227,0 +170749277776,227,0 +170749277824,228,0 +170749277872,217,0 +170749277920,217,0 +170749277970,218,0 +170749278018,220,0 +170749278065,220,0 +170749278115,221,0 +170749278163,223,0 +170749278211,223,0 +170749278260,223,0 +170749278308,224,0 +170749278358,224,0 +170749278406,226,0 +170749278454,230,0 +170749278502,230,0 +170749278550,230,0 +170749278598,228,0 +170749278646,229,0 +170749278695,229,0 +170749278745,228,0 +170749278794,218,0 +170749278844,218,0 +170749278893,219,0 +170749278941,221,0 +170749278991,220,0 +170749279039,221,0 +170749279088,221,0 +170749279136,223,0 +170749279184,225,0 +170749279232,225,0 +170749279280,226,0 +170749279329,226,0 +170749279379,227,0 +170749279427,228,0 +170749279476,228,0 +170749279524,228,0 +170749279572,229,0 +170749279620,229,0 +170749279668,230,0 +170749279716,218,0 +170749279764,218,0 +170749279811,219,0 +170749279859,221,0 +170749279907,223,0 +170749279955,222,0 +170749280005,224,0 +170749280052,225,0 +170749280100,229,0 +170749280148,231,0 +170749280198,228,0 +170749280246,229,0 +170749280294,230,0 +170749280343,230,0 +170749280391,230,0 +170749280439,230,0 +170749280487,226,0 +170749280537,227,0 +170749280586,226,0 +170749280636,219,0 +170749280684,219,0 +170749280734,221,0 +170749280781,230,0 +170749280829,222,0 +170749280877,225,0 +170749280927,226,0 +170749280975,225,0 +170749281023,226,0 +170749281071,228,0 +170749281119,228,0 +170749281167,227,0 +170749281215,232,0 +170749281263,230,0 +170749281311,229,0 +170749281359,230,0 +170749281407,229,0 +170749281456,227,0 +170749281506,227,0 +170749281555,219,0 +170749281603,218,0 +170749281651,219,0 +170749281699,220,0 +170749281747,221,0 +170749281795,223,0 +170749281843,223,0 +170749281891,225,0 +170749281939,226,0 +170749281986,225,0 +170749282034,227,0 +170749282082,226,0 +170749282130,229,0 +170749282178,230,0 +170749282226,230,0 +170749282275,229,0 +170749282323,230,0 +170749282371,228,0 +170749282419,225,0 +170749282467,217,0 +170749282515,216,0 +170749282563,217,0 +170749282611,218,0 +170749282658,220,0 +170749282708,221,0 +170749282757,220,0 +170749282805,222,0 +170749282853,224,0 +170749282901,224,0 +170749282951,225,0 +170749283000,226,0 +170749283050,227,0 +170749283099,228,0 +170749283149,227,0 +170749283197,229,0 +170749283246,227,0 +170749283294,228,0 +170749283342,228,0 +170749283390,229,0 +170749283438,216,0 +170749283486,217,0 +170749283534,217,0 +170749283582,219,0 +170749283630,218,0 +170749283679,220,0 +170749283727,220,0 +170749283775,222,0 +170749283825,222,0 +170749283873,225,0 +170749283920,225,0 +170749283970,227,0 +170749284018,227,0 +170749284066,227,0 +170749284114,229,0 +170749284163,229,0 +170749284211,229,0 +170749284259,228,0 +170749284307,227,0 +170749284354,217,0 +170749284402,217,0 +170749284450,216,0 +170749284500,218,0 +170749284549,218,0 +170749284597,220,0 +170749284645,219,0 +170749284693,222,0 +170749284741,221,0 +170749284789,225,0 +170749284837,224,0 +170749284884,225,0 +170749284932,227,0 +170749284980,227,0 +170749285030,227,0 +170749285079,225,0 +170749285127,234,0 +170749285175,230,0 +170749285223,228,0 +170749285273,218,0 +170749285321,216,0 +170749285369,216,0 +170749285416,218,0 +170749285464,218,0 +170749285512,219,0 +170749285560,220,0 +170749285608,221,0 +170749285658,221,0 +170749285706,223,0 +170749285755,224,0 +170749285803,227,0 +170749285851,227,0 +170749285900,230,0 +170749285948,227,0 +170749285998,230,0 +170749286047,228,0 +170749286095,229,0 +170749286145,229,0 +170749286195,217,0 +170749286243,216,0 +170749286291,216,0 +170749286340,217,0 +170749286388,219,0 +170749286436,219,0 +170749286484,220,0 +170749286532,221,0 +170749286581,222,0 +170749286631,224,0 +170749286679,226,0 +170749286728,225,0 +170749286778,226,0 +170749286827,226,0 +170749286875,227,0 +170749286923,228,0 +170749286971,228,0 +170749287019,226,0 +170749287067,228,0 +170749287117,218,0 +170749287165,217,0 +170749287213,218,0 +170749287260,220,0 +170749287308,221,0 +170749287358,222,0 +170749287407,222,0 +170749287455,223,0 +170749287505,226,0 +170749287554,225,0 +170749287604,228,0 +170749287652,227,0 +170749287700,229,0 +170749287748,228,0 +170749287796,229,0 +170749287844,229,0 +170749287892,228,0 +170749287940,235,0 +170749287988,229,0 +170749288037,219,0 +170749288087,218,0 +170749288136,219,0 +170749288186,221,0 +170749288233,221,0 +170749288281,221,0 +170749288329,223,0 +170749288379,223,0 +170749288428,225,0 +170749288478,225,0 +170749288527,225,0 +170749288577,223,0 +170749288627,227,0 +170749288674,228,0 +170749288724,229,0 +170749288773,228,0 +170749288823,230,0 +170749288873,228,0 +170749288920,228,0 +170749288968,218,0 +170749289016,216,0 +170749289064,217,0 +170749289114,218,0 +170749289162,219,0 +170749289211,219,0 +170749289259,221,0 +170749289309,222,0 +170749289358,223,0 +170749289408,224,0 +170749289456,226,0 +170749289504,228,0 +170749289552,225,0 +170749289600,228,0 +170749289648,227,0 +170749289697,231,0 +170749289745,229,0 +170749289795,228,0 +170749289843,227,0 +170749289891,218,0 +170749289940,216,0 +170749289988,216,0 +170749290036,217,0 +170749290084,218,0 +170749290132,219,0 +170749290180,220,0 +170749290228,220,0 +170749290276,220,0 +170749290324,220,0 +170749290372,222,0 +170749290419,224,0 +170749290467,225,0 +170749290515,227,0 +170749290563,226,0 +170749290611,229,0 +170749290660,229,0 +170749290708,227,0 +170749290756,228,0 +170749290804,228,0 +170749290852,217,0 +170749290900,217,0 +170749290947,217,0 +170749290995,217,0 +170749291043,219,0 +170749291091,219,0 +170749291139,221,0 +170749291187,220,0 +170749291235,222,0 +170749291283,224,0 +170749291332,225,0 +170749291380,225,0 +170749291428,227,0 +170749291476,228,0 +170749291524,228,0 +170749291574,227,0 +170749291622,229,0 +170749291671,229,0 +170749291719,227,0 +170749291767,217,0 +170749291817,218,0 +170749291864,218,0 +170749291912,218,0 +170749291960,221,0 +170749292008,221,0 +170749292058,221,0 +170749292106,222,0 +170749292154,224,0 +170749292203,223,0 +170749292251,226,0 +170749292301,225,0 +170749292350,227,0 +170749292398,227,0 +170749292447,225,0 +170749292497,228,0 +170749292545,228,0 +170749292595,231,0 +170749292644,228,0 +170749292692,218,0 +170749292742,216,0 +170749292790,218,0 +170749292837,220,0 +170749292885,221,0 +170749292935,222,0 +170749292982,222,0 +170749293032,225,0 +170749293080,225,0 +170749293128,226,0 +170749293176,227,0 +170749293223,227,0 +170749293271,228,0 +170749293319,232,0 +170749293369,229,0 +170749293416,228,0 +170749293464,228,0 +170749293512,226,0 +170749293560,227,0 +170749293608,219,0 +170749293656,218,0 +170749293704,219,0 +170749293751,220,0 +170749293799,221,0 +170749293847,223,0 +170749293895,223,0 +170749293943,225,0 +170749293991,225,0 +170749294039,229,0 +170749294086,226,0 +170749294134,229,0 +170749294182,229,0 +170749294230,227,0 +170749294278,228,0 +170749294326,229,0 +170749294374,229,0 +170749294423,225,0 +170749294471,229,0 +170749294521,218,0 +170749294568,217,0 +170749294618,219,0 +170749294666,220,0 +170749294714,221,0 +170749294762,222,0 +170749294809,223,0 +170749294857,224,0 +170749294905,225,0 +170749294953,226,0 +170749295001,226,0 +170749295049,228,0 +170749295098,227,0 +170749295146,228,0 +170749295194,230,0 +170749295242,229,0 +170749295290,229,0 +170749295337,229,0 +170749295385,229,0 +170749295435,229,0 +170749295483,218,0 +170749295531,220,0 +170749295578,220,0 +170749295626,221,0 +170749295674,221,0 +170749295722,222,0 +170749295770,223,0 +170749295820,225,0 +170749295868,226,0 +170749295915,227,0 +170749295963,228,0 +170749296011,228,0 +170749296059,228,0 +170749296107,229,0 +170749296156,229,0 +170749296206,228,0 +170749296254,229,0 +170749296303,229,0 +170749296351,228,0 +170749296399,218,0 +170749296447,216,0 +170749296496,218,0 +170749296544,219,0 +170749296592,220,0 +170749296640,220,0 +170749296689,222,0 +170749296737,222,0 +170749296787,222,0 +170749296835,224,0 +170749296883,226,0 +170749296930,226,0 +170749296978,226,0 +170749297026,227,0 +170749297074,226,0 +170749297122,228,0 +170749297170,228,0 +170749297218,223,0 +170749297267,227,0 +170749297315,217,0 +170749297363,216,0 +170749297411,217,0 +170749297459,218,0 +170749297507,219,0 +170749297554,219,0 +170749297604,219,0 +170749297653,220,0 +170749297701,221,0 +170749297749,222,0 +170749297799,226,0 +170749297848,225,0 +170749297897,225,0 +170749297945,230,0 +170749297993,229,0 +170749298043,227,0 +170749298090,227,0 +170749298138,228,0 +170749298186,229,0 +170749298236,220,0 +170749298285,216,0 +170749298333,217,0 +170749298381,218,0 +170749298429,219,0 +170749298477,220,0 +170749298525,220,0 +170749298573,220,0 +170749298620,223,0 +170749298668,223,0 +170749298716,224,0 +170749298764,225,0 +170749298812,224,0 +170749298860,226,0 +170749298910,227,0 +170749298957,228,0 +170749299005,227,0 +170749299053,228,0 +170749299101,229,0 +170749299150,228,0 +170749299198,217,0 +170749299248,216,0 +170749299296,217,0 +170749299344,219,0 +170749299391,220,0 +170749299439,221,0 +170749299487,222,0 +170749299535,221,0 +170749299583,222,0 +170749299631,225,0 +170749299680,226,0 +170749299730,228,0 +170749299778,227,0 +170749299827,228,0 +170749299875,230,0 +170749299923,230,0 +170749299971,229,0 +170749300019,230,0 +170749300066,228,0 +170749300116,218,0 +170749300164,216,0 +170749300213,217,0 +170749300261,218,0 +170749300309,219,0 +170749300357,220,0 +170749300405,221,0 +170749300453,222,0 +170749300500,223,0 +170749300548,224,0 +170749300596,225,0 +170749300644,225,0 +170749300692,226,0 +170749300740,227,0 +170749300788,226,0 +170749300836,228,0 +170749300884,228,0 +170749300931,231,0 +170749300979,229,0 +170749301027,218,0 +170749301075,216,0 +170749301123,218,0 +170749301171,218,0 +170749301219,220,0 +170749301267,221,0 +170749301315,222,0 +170749301362,221,0 +170749301410,223,0 +170749301460,224,0 +170749301508,226,0 +170749301556,227,0 +170749301603,225,0 +170749301651,226,0 +170749301699,228,0 +170749301749,229,0 +170749301798,231,0 +170749301846,228,0 +170749301894,228,0 +170749301942,227,0 +170749301991,217,0 +170749302039,218,0 +170749302087,219,0 +170749302135,220,0 +170749302183,220,0 +170749302231,221,0 +170749302278,223,0 +170749302326,224,0 +170749302374,224,0 +170749302422,225,0 +170749302470,226,0 +170749302519,227,0 +170749302567,227,0 +170749302617,230,0 +170749302665,229,0 +170749302712,229,0 +170749302760,231,0 +170749302808,226,0 +170749302856,229,0 +170749302904,218,0 +170749302952,218,0 +170749303000,219,0 +170749303048,219,0 +170749303096,220,0 +170749303143,221,0 +170749303191,222,0 +170749303239,223,0 +170749303287,223,0 +170749303337,224,0 +170749303384,225,0 +170749303432,226,0 +170749303480,226,0 +170749303530,227,0 +170749303578,229,0 +170749303625,229,0 +170749303675,228,0 +170749303723,226,0 +170749303772,228,0 +170749303820,220,0 +170749303870,216,0 +170749303917,216,0 +170749303965,216,0 +170749304013,217,0 +170749304063,218,0 +170749304111,219,0 +170749304160,220,0 +170749304208,221,0 +170749304257,222,0 +170749304305,223,0 +170749304353,226,0 +170749304403,227,0 +170749304451,227,0 +170749304498,227,0 +170749304546,230,0 +170749304596,227,0 +170749304643,226,0 +170749304691,227,0 +170749304739,226,0 +170749304789,215,0 +170749304837,216,0 +170749304885,216,0 +170749304932,216,0 +170749304980,217,0 +170749305028,216,0 +170749305076,217,0 +170749305124,218,0 +170749305172,219,0 +170749305220,221,0 +170749305268,220,0 +170749305317,223,0 +170749305367,225,0 +170749305414,226,0 +170749305462,226,0 +170749305510,226,0 +170749305558,226,0 +170749305608,227,0 +170749305655,232,0 +170749305703,217,0 +170749305753,216,0 +170749305801,216,0 +170749305850,217,0 +170749305898,217,0 +170749305946,217,0 +170749305994,217,0 +170749306043,217,0 +170749306091,217,0 +170749306139,221,0 +170749306187,221,0 +170749306235,224,0 +170749306283,224,0 +170749306332,225,0 +170749306380,226,0 +170749306428,226,0 +170749306476,226,0 +170749306524,227,0 +170749306573,228,0 +170749306623,218,0 +170749306672,216,0 +170749306720,216,0 +170749306768,216,0 +170749306815,217,0 +170749306865,217,0 +170749306913,219,0 +170749306961,221,0 +170749307009,221,0 +170749307058,218,0 +170749307108,222,0 +170749307155,222,0 +170749307203,224,0 +170749307251,224,0 +170749307299,227,0 +170749307349,228,0 +170749307397,227,0 +170749307444,227,0 +170749307492,231,0 +170749307540,222,0 +170749307590,216,0 +170749307638,216,0 +170749307686,218,0 +170749307735,219,0 +170749307783,220,0 +170749307831,221,0 +170749307880,222,0 +170749307928,222,0 +170749307976,224,0 +170749308025,223,0 +170749308075,225,0 +170749308123,227,0 +170749308171,226,0 +170749308218,228,0 +170749308266,228,0 +170749308314,231,0 +170749308362,229,0 +170749308410,230,0 +170749308458,227,0 +170749308507,217,0 +170749308555,216,0 +170749308603,217,0 +170749308652,217,0 +170749308700,220,0 +170749308748,221,0 +170749308796,221,0 +170749308844,222,0 +170749308892,222,0 +170749308940,224,0 +170749308988,226,0 +170749309036,226,0 +170749309084,226,0 +170749309131,229,0 +170749309179,228,0 +170749309229,229,0 +170749309277,229,0 +170749309325,228,0 +170749309373,228,0 +170749309420,219,0 +170749309468,218,0 +170749309516,219,0 +170749309564,221,0 +170749309612,219,0 +170749309660,223,0 +170749309708,223,0 +170749309757,223,0 +170749309805,224,0 +170749309853,225,0 +170749309902,226,0 +170749309952,227,0 +170749310000,228,0 +170749310047,231,0 +170749310097,228,0 +170749310145,230,0 +170749310194,229,0 +170749310244,228,0 +170749310292,228,0 +170749310340,218,0 +170749310389,219,0 +170749310437,219,0 +170749310485,220,0 +170749310535,221,0 +170749310584,221,0 +170749310632,223,0 +170749310682,223,0 +170749310731,224,0 +170749310781,224,0 +170749310829,226,0 +170749310878,226,0 +170749310926,228,0 +170749310975,228,0 +170749311023,226,0 +170749311073,229,0 +170749311121,230,0 +170749311168,227,0 +170749311216,230,0 +170749311264,224,0 +170749311312,218,0 +170749311360,219,0 +170749311408,222,0 +170749311456,220,0 +170749311504,222,0 +170749311552,223,0 +170749311600,226,0 +170749311649,225,0 +170749311697,227,0 +170749311745,229,0 +170749311794,226,0 +170749311842,226,0 +170749311891,227,0 +170749311939,227,0 +170749311987,230,0 +170749312035,229,0 +170749312083,228,0 +170749312131,226,0 +170749312181,229,0 +170749312229,217,0 +170749312276,217,0 +170749312324,219,0 +170749312372,220,0 +170749312420,222,0 +170749312468,223,0 +170749312517,225,0 +170749312567,224,0 +170749312615,225,0 +170749312664,225,0 +170749312712,227,0 +170749312760,228,0 +170749312810,228,0 +170749312857,228,0 +170749312905,228,0 +170749312955,227,0 +170749313003,228,0 +170749313051,228,0 +170749313099,227,0 +170749313147,217,0 +170749313196,216,0 +170749313244,217,0 +170749313294,218,0 +170749313343,220,0 +170749313393,222,0 +170749313441,223,0 +170749313490,223,0 +170749313538,224,0 +170749313586,225,0 +170749313636,225,0 +170749313684,226,0 +170749313732,228,0 +170749313781,227,0 +170749313829,228,0 +170749313877,228,0 +170749313927,228,0 +170749313976,228,0 +170749314026,228,0 +170749314075,218,0 +170749314125,217,0 +170749314174,218,0 +170749314222,219,0 +170749314271,221,0 +170749314321,222,0 +170749314371,222,0 +170749314420,224,0 +170749314468,225,0 +170749314516,225,0 +170749314564,226,0 +170749314612,227,0 +170749314661,227,0 +170749314709,227,0 +170749314757,228,0 +170749314807,228,0 +170749314855,227,0 +170749314904,229,0 +170749314952,229,0 +170749315000,219,0 +170749315048,218,0 +170749315098,220,0 +170749315145,221,0 +170749315193,222,0 +170749315241,223,0 +170749315291,224,0 +170749315340,226,0 +170749315388,225,0 +170749315436,227,0 +170749315484,228,0 +170749315534,229,0 +170749315583,229,0 +170749315631,230,0 +170749315679,229,0 +170749315727,229,0 +170749315775,230,0 +170749315823,228,0 +170749315871,227,0 +170749315919,222,0 +170749315967,217,0 +170749316015,217,0 +170749316065,218,0 +170749316112,218,0 +170749316160,220,0 +170749316208,221,0 +170749316258,222,0 +170749316307,230,0 +170749316355,223,0 +170749316405,228,0 +170749316454,226,0 +170749316502,228,0 +170749316552,228,0 +170749316601,225,0 +170749316649,228,0 +170749316697,227,0 +170749316747,227,0 +170749316795,227,0 +170749316842,227,0 +170749316890,216,0 +170749316938,216,0 +170749316986,216,0 +170749317034,216,0 +170749317082,217,0 +170749317131,218,0 +170749317179,219,0 +170749317227,221,0 +170749317275,222,0 +170749317323,222,0 +170749317371,224,0 +170749317419,224,0 +170749317466,227,0 +170749317514,226,0 +170749317562,227,0 +170749317610,226,0 +170749317659,227,0 +170749317707,228,0 +170749317755,226,0 +170749317803,217,0 +170749317851,216,0 +170749317899,217,0 +170749317947,217,0 +170749317995,217,0 +170749318044,217,0 +170749318094,219,0 +170749318142,220,0 +170749318190,219,0 +170749318237,222,0 +170749318287,222,0 +170749318335,224,0 +170749318384,226,0 +170749318432,227,0 +170749318482,227,0 +170749318531,227,0 +170749318581,227,0 +170749318630,227,0 +170749318678,227,0 +170749318726,218,0 +170749318774,216,0 +170749318822,216,0 +170749318870,217,0 +170749318918,217,0 +170749318966,219,0 +170749319016,219,0 +170749319065,220,0 +170749319115,220,0 +170749319163,222,0 +170749319212,224,0 +170749319262,225,0 +170749319311,227,0 +170749319359,226,0 +170749319408,225,0 +170749319456,227,0 +170749319504,229,0 +170749319552,227,0 +170749319600,228,0 +170749319648,218,0 +170749319696,216,0 +170749319746,217,0 +170749319794,217,0 +170749319841,218,0 +170749319889,220,0 +170749319937,220,0 +170749319985,221,0 +170749320033,220,0 +170749320081,222,0 +170749320129,223,0 +170749320179,226,0 +170749320228,225,0 +170749320276,225,0 +170749320326,226,0 +170749320373,227,0 +170749320421,227,0 +170749320471,226,0 +170749320519,226,0 +170749320567,218,0 +170749320616,215,0 +170749320666,216,0 +170749320715,217,0 +170749320764,218,0 +170749320812,219,0 +170749320862,221,0 +170749320910,222,0 +170749320958,223,0 +170749321006,223,0 +170749321055,228,0 +170749321103,227,0 +170749321153,226,0 +170749321201,228,0 +170749321249,226,0 +170749321298,228,0 +170749321346,231,0 +170749321394,228,0 +170749321443,228,0 +170749321491,218,0 +170749321539,216,0 +170749321587,216,0 +170749321635,216,0 +170749321685,217,0 +170749321732,218,0 +170749321780,221,0 +170749321828,220,0 +170749321878,221,0 +170749321925,222,0 +170749321973,223,0 +170749322021,223,0 +170749322069,223,0 +170749322117,225,0 +170749322165,228,0 +170749322213,226,0 +170749322261,228,0 +170749322309,228,0 +170749322358,230,0 +170749322408,228,0 +170749322456,217,0 +170749322504,216,0 +170749322553,216,0 +170749322603,217,0 +170749322651,219,0 +170749322699,219,0 +170749322747,220,0 +170749322795,220,0 +170749322843,222,0 +170749322891,221,0 +170749322938,225,0 +170749322988,225,0 +170749323036,226,0 +170749323084,225,0 +170749323133,226,0 +170749323181,226,0 +170749323231,228,0 +170749323279,227,0 +170749323326,227,0 +170749323376,218,0 +170749323424,217,0 +170749323472,219,0 +170749323521,220,0 +170749323569,220,0 +170749323617,220,0 +170749323665,222,0 +170749323713,223,0 +170749323761,223,0 +170749323811,224,0 +170749323859,225,0 +170749323907,226,0 +170749323955,225,0 +170749324002,227,0 +170749324050,229,0 +170749324098,229,0 +170749324146,229,0 +170749324194,230,0 +170749324242,228,0 +170749324292,220,0 +170749324341,220,0 +170749324391,222,0 +170749324439,223,0 +170749324487,225,0 +170749324535,224,0 +170749324583,224,0 +170749324632,227,0 +170749324682,228,0 +170749324730,228,0 +170749324778,229,0 +170749324826,228,0 +170749324874,229,0 +170749324922,234,0 +170749324971,231,0 +170749325019,229,0 +170749325067,230,0 +170749325117,228,0 +170749325165,228,0 +170749325213,220,0 +170749325260,220,0 +170749325310,221,0 +170749325359,223,0 +170749325409,223,0 +170749325459,225,0 +170749325507,225,0 +170749325556,226,0 +170749325605,227,0 +170749325653,227,0 +170749325701,230,0 +170749325750,228,0 +170749325800,229,0 +170749325847,230,0 +170749325895,228,0 +170749325943,231,0 +170749325993,230,0 +170749326042,228,0 +170749326092,227,0 +170749326141,220,0 +170749326189,218,0 +170749326237,220,0 +170749326285,222,0 +170749326333,222,0 +170749326381,224,0 +170749326431,226,0 +170749326479,225,0 +170749326526,226,0 +170749326574,225,0 +170749326624,228,0 +170749326672,227,0 +170749326721,229,0 +170749326771,231,0 +170749326819,231,0 +170749326867,229,0 +170749326915,230,0 +170749326963,232,0 +170749327012,227,0 +170749327060,219,0 +170749327108,216,0 +170749327158,217,0 +170749327207,219,0 +170749327255,220,0 +170749327303,221,0 +170749327353,221,0 +170749327401,222,0 +170749327449,224,0 +170749327498,225,0 +170749327548,226,0 +170749327597,226,0 +170749327645,228,0 +170749327695,230,0 +170749327744,230,0 +170749327794,230,0 +170749327841,231,0 +170749327891,230,0 +170749327940,228,0 +170749327988,217,0 +170749328038,216,0 +170749328086,217,0 +170749328135,218,0 +170749328183,220,0 +170749328231,220,0 +170749328279,222,0 +170749328327,221,0 +170749328375,222,0 +170749328423,222,0 +170749328472,225,0 +170749328520,225,0 +170749328570,225,0 +170749328619,227,0 +170749328669,228,0 +170749328717,231,0 +170749328766,228,0 +170749328814,228,0 +170749328864,230,0 +170749328912,224,0 +170749328961,216,0 +170749329009,216,0 +170749329057,217,0 +170749329105,217,0 +170749329153,217,0 +170749329203,218,0 +170749329251,219,0 +170749329300,220,0 +170749329348,220,0 +170749329396,222,0 +170749329444,224,0 +170749329494,226,0 +170749329542,226,0 +170749329590,228,0 +170749329639,229,0 +170749329687,227,0 +170749329735,229,0 +170749329783,229,0 +170749329831,227,0 +170749329879,217,0 +170749329927,216,0 +170749329975,216,0 +170749330023,216,0 +170749330072,216,0 +170749330122,217,0 +170749330170,218,0 +170749330218,219,0 +170749330266,220,0 +170749330314,222,0 +170749330362,223,0 +170749330410,226,0 +170749330457,225,0 +170749330505,227,0 +170749330553,227,0 +170749330601,229,0 +170749330649,230,0 +170749330697,229,0 +170749330745,228,0 +170749330794,218,0 +170749330842,216,0 +170749330892,217,0 +170749330941,217,0 +170749330989,218,0 +170749331037,219,0 +170749331085,219,0 +170749331133,219,0 +170749331181,221,0 +170749331231,224,0 +170749331279,224,0 +170749331326,227,0 +170749331374,226,0 +170749331422,227,0 +170749331470,226,0 +170749331520,228,0 +170749331568,229,0 +170749331616,226,0 +170749331665,229,0 +170749331713,218,0 +170749331761,216,0 +170749331811,216,0 +170749331859,216,0 +170749331907,218,0 +170749331954,218,0 +170749332002,219,0 +170749332050,220,0 +170749332098,221,0 +170749332146,222,0 +170749332194,224,0 +170749332242,225,0 +170749332290,225,0 +170749332338,226,0 +170749332385,228,0 +170749332433,227,0 +170749332481,227,0 +170749332529,227,0 +170749332577,228,0 +170749332626,219,0 +170749332674,216,0 +170749332722,216,0 +170749332772,217,0 +170749332820,217,0 +170749332869,217,0 +170749332917,218,0 +170749332967,218,0 +170749333015,220,0 +170749333064,221,0 +170749333114,223,0 +170749333162,224,0 +170749333211,224,0 +170749333261,226,0 +170749333310,226,0 +170749333358,226,0 +170749333408,228,0 +170749333457,227,0 +170749333505,227,0 +170749333553,217,0 +170749333601,216,0 +170749333649,216,0 +170749333697,216,0 +170749333745,217,0 +170749333795,217,0 +170749333844,217,0 +170749333892,218,0 +170749333940,218,0 +170749333989,219,0 +170749334037,220,0 +170749334085,222,0 +170749334135,222,0 +170749334183,224,0 +170749334231,225,0 +170749334279,228,0 +170749334327,226,0 +170749334375,224,0 +170749334423,228,0 +170749334472,222,0 +170749334520,216,0 +170749334568,216,0 +170749334618,216,0 +170749334666,217,0 +170749334714,218,0 +170749334763,217,0 +170749334811,219,0 +170749334861,221,0 +170749334910,221,0 +170749334958,220,0 +170749335008,224,0 +170749335055,224,0 +170749335105,225,0 +170749335153,224,0 +170749335201,225,0 +170749335250,226,0 +170749335300,225,0 +170749335350,227,0 +170749335398,227,0 +170749335445,216,0 +170749335495,216,0 +170749335543,217,0 +170749335591,217,0 +170749335639,217,0 +170749335687,217,0 +170749335735,218,0 +170749335784,219,0 +170749335832,220,0 +170749335882,221,0 +170749335931,224,0 +170749335981,223,0 +170749336029,225,0 +170749336077,225,0 +170749336125,226,0 +170749336172,227,0 +170749336220,227,0 +170749336270,227,0 +170749336318,228,0 +170749336366,217,0 +170749336415,216,0 +170749336465,217,0 +170749336513,216,0 +170749336561,218,0 +170749336609,219,0 +170749336657,221,0 +170749336706,222,0 +170749336756,222,0 +170749336804,225,0 +170749336852,224,0 +170749336900,225,0 +170749336949,225,0 +170749336999,227,0 +170749337048,228,0 +170749337098,228,0 +170749337146,230,0 +170749337194,231,0 +170749337242,228,0 +170749337291,221,0 +170749337339,222,0 +170749337388,223,0 +170749337438,224,0 +170749337486,223,0 +170749337534,225,0 +170749337583,225,0 +170749337631,225,0 +170749337681,227,0 +170749337729,230,0 +170749337777,228,0 +170749337826,229,0 +170749337874,228,0 +170749337922,229,0 +170749337970,228,0 +170749338020,228,0 +170749338068,228,0 +170749338117,229,0 +170749338165,226,0 +170749338213,219,0 +170749338261,219,0 +170749338309,220,0 +170749338357,219,0 +170749338407,221,0 +170749338455,223,0 +170749338504,224,0 +170749338554,224,0 +170749338602,224,0 +170749338649,226,0 +170749338697,227,0 +170749338745,227,0 +170749338795,227,0 +170749338844,230,0 +170749338894,229,0 +170749338942,229,0 +170749338990,227,0 +170749339038,227,0 +170749339087,227,0 +170749339135,219,0 +170749339183,218,0 +170749339233,219,0 +170749339281,221,0 +170749339329,222,0 +170749339378,222,0 +170749339428,224,0 +170749339475,224,0 +170749339523,225,0 +170749339571,226,0 +170749339621,227,0 +170749339669,227,0 +170749339718,228,0 +170749339768,228,0 +170749339816,230,0 +170749339865,228,0 +170749339915,229,0 +170749339963,229,0 +170749340011,228,0 +170749340060,220,0 +170749340108,220,0 +170749340156,221,0 +170749340204,222,0 +170749340252,223,0 +170749340302,225,0 +170749340349,225,0 +170749340399,226,0 +170749340449,228,0 +170749340498,228,0 +170749340546,228,0 +170749340596,228,0 +170749340644,229,0 +170749340692,228,0 +170749340740,229,0 +170749340789,228,0 +170749340839,229,0 +170749340888,228,0 +170749340936,228,0 +170749340986,218,0 +170749341034,218,0 +170749341081,219,0 +170749341131,221,0 +170749341179,221,0 +170749341228,222,0 +170749341278,223,0 +170749341327,221,0 +170749341375,224,0 +170749341423,226,0 +170749341473,226,0 +170749341522,227,0 +170749341570,229,0 +170749341618,230,0 +170749341668,227,0 +170749341716,229,0 +170749341764,231,0 +170749341812,229,0 +170749341861,229,0 +170749341911,218,0 +170749341959,216,0 +170749342007,217,0 +170749342055,218,0 +170749342104,219,0 +170749342154,220,0 +170749342202,221,0 +170749342250,222,0 +170749342298,224,0 +170749342346,223,0 +170749342394,225,0 +170749342443,226,0 +170749342491,226,0 +170749342540,227,0 +170749342588,228,0 +170749342638,230,0 +170749342686,229,0 +170749342734,230,0 +170749342782,233,0 +170749342829,227,0 +170749342879,217,0 +170749342927,219,0 +170749342975,218,0 +170749343023,219,0 +170749343071,220,0 +170749343119,220,0 +170749343167,221,0 +170749343214,221,0 +170749343264,222,0 +170749343314,225,0 +170749343361,226,0 +170749343409,229,0 +170749343457,226,0 +170749343505,228,0 +170749343555,229,0 +170749343604,232,0 +170749343654,229,0 +170749343702,229,0 +170749343751,229,0 +170749343799,217,0 +170749343847,217,0 +170749343895,218,0 +170749343943,220,0 +170749343993,220,0 +170749344041,220,0 +170749344088,220,0 +170749344136,223,0 +170749344186,223,0 +170749344234,224,0 +170749344283,223,0 +170749344331,224,0 +170749344379,229,0 +170749344429,228,0 +170749344477,232,0 +170749344525,228,0 +170749344574,230,0 +170749344622,232,0 +170749344670,228,0 +170749344718,218,0 +170749344766,217,0 +170749344814,219,0 +170749344862,220,0 +170749344912,220,0 +170749344961,221,0 +170749345011,221,0 +170749345059,222,0 +170749345107,224,0 +170749345156,224,0 +170749345204,225,0 +170749345252,225,0 +170749345300,226,0 +170749345348,227,0 +170749345397,227,0 +170749345445,227,0 +170749345493,226,0 +170749345541,226,0 +170749345591,228,0 +170749345639,218,0 +170749345687,217,0 +170749345736,217,0 +170749345784,218,0 +170749345834,219,0 +170749345882,220,0 +170749345930,222,0 +170749345978,221,0 +170749346027,222,0 +170749346075,223,0 +170749346125,226,0 +170749346173,226,0 +170749346220,228,0 +170749346268,228,0 +170749346316,230,0 +170749346364,231,0 +170749346412,230,0 +170749346462,230,0 +170749346511,227,0 +170749346559,218,0 +170749346609,216,0 +170749346658,217,0 +170749346706,218,0 +170749346754,220,0 +170749346802,221,0 +170749346850,222,0 +170749346900,223,0 +170749346948,223,0 +170749346995,224,0 +170749347043,224,0 +170749347091,227,0 +170749347139,228,0 +170749347187,229,0 +170749347237,229,0 +170749347286,229,0 +170749347336,229,0 +170749347384,228,0 +170749347432,228,0 +170749347481,218,0 +170749347529,216,0 +170749347579,216,0 +170749347627,217,0 +170749347676,219,0 +170749347724,220,0 +170749347772,220,0 +170749347821,224,0 +170749347869,223,0 +170749347919,223,0 +170749347967,227,0 +170749348015,226,0 +170749348062,226,0 +170749348110,227,0 +170749348160,227,0 +170749348209,229,0 +170749348259,228,0 +170749348307,228,0 +170749348355,228,0 +170749348403,224,0 +170749348451,216,0 +170749348499,216,0 +170749348547,218,0 +170749348594,219,0 +170749348644,220,0 +170749348692,221,0 +170749348740,221,0 +170749348788,222,0 +170749348835,224,0 +170749348885,226,0 +170749348933,224,0 +170749348981,228,0 +170749349030,228,0 +170749349078,228,0 +170749349126,228,0 +170749349174,228,0 +170749349222,228,0 +170749349270,228,0 +170749349318,229,0 +170749349368,217,0 +170749349417,217,0 +170749349465,218,0 +170749349513,219,0 +170749349561,220,0 +170749349609,220,0 +170749349657,221,0 +170749349704,224,0 +170749349752,223,0 +170749349800,224,0 +170749349848,225,0 +170749349896,226,0 +170749349944,225,0 +170749349992,227,0 +170749350040,228,0 +170749350088,226,0 +170749350135,229,0 +170749350183,228,0 +170749350231,227,0 +170749350279,218,0 +170749350327,217,0 +170749350375,217,0 +170749350423,218,0 +170749350472,219,0 +170749350520,221,0 +170749350568,224,0 +170749350616,222,0 +170749350666,222,0 +170749350714,224,0 +170749350763,225,0 +170749350811,226,0 +170749350859,227,0 +170749350907,228,0 +170749350955,229,0 +170749351003,231,0 +170749351051,228,0 +170749351099,227,0 +170749351147,228,0 +170749351194,218,0 +170749351242,217,0 +170749351290,217,0 +170749351338,218,0 +170749351386,219,0 +170749351434,219,0 +170749351482,221,0 +170749351529,221,0 +170749351577,222,0 +170749351625,225,0 +170749351673,225,0 +170749351721,225,0 +170749351769,227,0 +170749351817,229,0 +170749351865,227,0 +170749351915,227,0 +170749351963,229,0 +170749352012,230,0 +170749352062,229,0 +170749352110,227,0 +170749352159,217,0 +170749352209,217,0 +170749352258,217,0 +170749352308,219,0 +170749352357,220,0 +170749352405,220,0 +170749352453,220,0 +170749352501,223,0 +170749352549,223,0 +170749352597,223,0 +170749352645,224,0 +170749352693,226,0 +170749352742,225,0 +170749352792,226,0 +170749352840,227,0 +170749352889,228,0 +170749352937,230,0 +170749352987,229,0 +170749353035,228,0 +170749353084,217,0 +170749353132,217,0 +170749353180,220,0 +170749353230,220,0 +170749353278,221,0 +170749353326,222,0 +170749353374,223,0 +170749353421,223,0 +170749353469,225,0 +170749353517,225,0 +170749353565,227,0 +170749353613,227,0 +170749353663,226,0 +170749353711,228,0 +170749353759,229,0 +170749353807,229,0 +170749353856,228,0 +170749353904,228,0 +170749353952,228,0 +170749354000,217,0 +170749354048,216,0 +170749354095,217,0 +170749354143,218,0 +170749354193,221,0 +170749354241,220,0 +170749354290,220,0 +170749354338,221,0 +170749354388,222,0 +170749354437,223,0 +170749354485,227,0 +170749354535,226,0 +170749354584,227,0 +170749354632,227,0 +170749354682,226,0 +170749354731,227,0 +170749354779,228,0 +170749354827,227,0 +170749354877,227,0 +170749354925,217,0 +170749354973,217,0 +170749355021,217,0 +170749355069,219,0 +170749355118,220,0 +170749355166,220,0 +170749355214,221,0 +170749355264,222,0 +170749355312,224,0 +170749355359,223,0 +170749355409,224,0 +170749355457,227,0 +170749355505,226,0 +170749355553,227,0 +170749355601,227,0 +170749355649,228,0 +170749355697,227,0 +170749355745,228,0 +170749355793,228,0 +170749355841,222,0 +170749355890,216,0 +170749355940,216,0 +170749355988,217,0 +170749356036,218,0 +170749356083,220,0 +170749356131,219,0 +170749356179,220,0 +170749356227,220,0 +170749356275,222,0 +170749356323,223,0 +170749356371,225,0 +170749356419,227,0 +170749356469,225,0 +170749356517,226,0 +170749356566,227,0 +170749356616,227,0 +170749356664,228,0 +170749356712,227,0 +170749356760,227,0 +170749356808,216,0 +170749356857,216,0 +170749356905,217,0 +170749356953,217,0 +170749357001,218,0 +170749357049,219,0 +170749357097,220,0 +170749357147,221,0 +170749357195,222,0 +170749357244,222,0 +170749357292,224,0 +170749357340,225,0 +170749357390,227,0 +170749357439,226,0 +170749357488,226,0 +170749357536,228,0 +170749357586,226,0 +170749357634,226,0 +170749357682,225,0 +170749357731,216,0 +170749357779,217,0 +170749357829,218,0 +170749357877,220,0 +170749357925,223,0 +170749357973,221,0 +170749358021,223,0 +170749358069,224,0 +170749358117,224,0 +170749358166,226,0 +170749358216,226,0 +170749358264,227,0 +170749358312,228,0 +170749358360,228,0 +170749358408,228,0 +170749358457,228,0 +170749358505,228,0 +170749358553,226,0 +170749358603,228,0 +170749358651,218,0 +170749358699,217,0 +170749358747,217,0 +170749358795,219,0 +170749358843,219,0 +170749358892,221,0 +170749358942,221,0 +170749358989,224,0 +170749359039,224,0 +170749359089,225,0 +170749359137,227,0 +170749359185,227,0 +170749359233,227,0 +170749359280,227,0 +170749359328,228,0 +170749359378,227,0 +170749359426,228,0 +170749359475,227,0 +170749359525,226,0 +170749359574,218,0 +170749359624,217,0 +170749359673,219,0 +170749359721,220,0 +170749359771,221,0 +170749359819,222,0 +170749359867,223,0 +170749359915,225,0 +170749359963,226,0 +170749360011,225,0 +170749360060,226,0 +170749360108,228,0 +170749360156,227,0 +170749360204,228,0 +170749360252,228,0 +170749360301,226,0 +170749360351,230,0 +170749360399,228,0 +170749360447,227,0 +170749360496,217,0 +170749360544,216,0 +170749360592,216,0 +170749360640,216,0 +170749360690,217,0 +170749360738,219,0 +170749360786,219,0 +170749360834,222,0 +170749360882,221,0 +170749360931,222,0 +170749360981,224,0 +170749361029,225,0 +170749361077,225,0 +170749361125,226,0 +170749361173,226,0 +170749361222,226,0 +170749361270,227,0 +170749361320,226,0 +170749361368,228,0 +170749361416,218,0 +170749361465,216,0 +170749361515,217,0 +170749361564,216,0 +170749361612,217,0 +170749361660,217,0 +170749361710,218,0 +170749361758,219,0 +170749361807,221,0 +170749361857,225,0 +170749361905,223,0 +170749361953,226,0 +170749362001,224,0 +170749362049,226,0 +170749362098,226,0 +170749362148,227,0 +170749362197,226,0 +170749362247,228,0 +170749362295,228,0 +170749362344,225,0 +170749362392,217,0 +170749362440,216,0 +170749362488,217,0 +170749362536,217,0 +170749362584,218,0 +170749362632,218,0 +170749362680,219,0 +170749362729,220,0 +170749362777,222,0 +170749362825,223,0 +170749362875,224,0 +170749362924,225,0 +170749362972,226,0 +170749363020,228,0 +170749363068,226,0 +170749363116,227,0 +170749363166,228,0 +170749363214,229,0 +170749363263,228,0 +170749363311,216,0 +170749363359,216,0 +170749363407,217,0 +170749363457,218,0 +170749363505,218,0 +170749363554,219,0 +170749363602,220,0 +170749363650,223,0 +170749363698,220,0 +170749363748,224,0 +170749363797,225,0 +170749363845,227,0 +170749363893,227,0 +170749363942,228,0 +170749363990,226,0 +170749364038,228,0 +170749364086,229,0 +170749364134,228,0 +170749364184,226,0 +170749364232,217,0 +170749364280,218,0 +170749364327,218,0 +170749364377,219,0 +170749364425,220,0 +170749364473,220,0 +170749364522,220,0 +170749364570,222,0 +170749364620,222,0 +170749364668,223,0 +170749364716,223,0 +170749364764,226,0 +170749364812,225,0 +170749364861,226,0 +170749364909,227,0 +170749364959,230,0 +170749365008,230,0 +170749365056,228,0 +170749365104,229,0 +170749365152,218,0 +170749365200,216,0 +170749365248,218,0 +170749365296,219,0 +170749365345,220,0 +170749365395,223,0 +170749365443,219,0 +170749365492,222,0 +170749365540,223,0 +170749365588,224,0 +170749365636,226,0 +170749365686,228,0 +170749365735,226,0 +170749365785,228,0 +170749365833,229,0 +170749365881,229,0 +170749365930,230,0 +170749365980,232,0 +170749366029,227,0 +170749366077,217,0 +170749366127,218,0 +170749366175,218,0 +170749366223,221,0 +170749366271,220,0 +170749366319,222,0 +170749366368,222,0 +170749366416,223,0 +170749366464,222,0 +170749366512,225,0 +170749366560,225,0 +170749366610,227,0 +170749366659,229,0 +170749366707,228,0 +170749366755,227,0 +170749366803,228,0 +170749366852,230,0 +170749366902,228,0 +170749366952,228,0 +170749366999,218,0 +170749367049,219,0 +170749367097,219,0 +170749367145,221,0 +170749367193,222,0 +170749367241,221,0 +170749367289,222,0 +170749367338,222,0 +170749367386,223,0 +170749367434,224,0 +170749367484,228,0 +170749367532,228,0 +170749367581,227,0 +170749367631,229,0 +170749367679,229,0 +170749367727,230,0 +170749367775,232,0 +170749367823,230,0 +170749367870,229,0 +170749367918,221,0 +170749367966,221,0 +170749368014,221,0 +170749368064,222,0 +170749368112,224,0 +170749368160,224,0 +170749368208,226,0 +170749368256,227,0 +170749368304,228,0 +170749368352,227,0 +170749368400,227,0 +170749368448,230,0 +170749368495,229,0 +170749368545,229,0 +170749368594,229,0 +170749368642,230,0 +170749368690,229,0 +170749368740,228,0 +170749368790,228,0 +170749368839,226,0 +170749368889,220,0 +170749368937,222,0 +170749368986,224,0 +170749369036,224,0 +170749369084,226,0 +170749369133,227,0 +170749369183,227,0 +170749369232,227,0 +170749369282,227,0 +170749369331,228,0 +170749369381,229,0 +170749369430,231,0 +170749369478,228,0 +170749369528,228,0 +170749369576,228,0 +170749369624,227,0 +170749369672,228,0 +170749369720,227,0 +170749369768,226,0 +170749369817,217,0 +170749369865,219,0 +170749369913,219,0 +170749369963,223,0 +170749370011,222,0 +170749370059,223,0 +170749370107,227,0 +170749370155,225,0 +170749370203,226,0 +170749370252,228,0 +170749370302,226,0 +170749370350,227,0 +170749370398,229,0 +170749370445,229,0 +170749370493,229,0 +170749370543,228,0 +170749370591,229,0 +170749370639,229,0 +170749370687,226,0 +170749370735,217,0 +170749370785,218,0 +170749370832,220,0 +170749370882,219,0 +170749370930,222,0 +170749370978,222,0 +170749371026,222,0 +170749371075,225,0 +170749371123,224,0 +170749371173,226,0 +170749371221,226,0 +170749371269,227,0 +170749371317,227,0 +170749371365,228,0 +170749371414,226,0 +170749371464,227,0 +170749371512,236,0 +170749371560,227,0 +170749371608,227,0 +170749371657,216,0 +170749371705,216,0 +170749371753,217,0 +170749371801,219,0 +170749371849,220,0 +170749371897,221,0 +170749371946,221,0 +170749371996,222,0 +170749372044,222,0 +170749372093,222,0 +170749372141,225,0 +170749372189,224,0 +170749372237,226,0 +170749372287,226,0 +170749372335,228,0 +170749372383,229,0 +170749372432,228,0 +170749372480,229,0 +170749372528,229,0 +170749372576,218,0 +170749372624,215,0 +170749372672,217,0 +170749372721,218,0 +170749372771,219,0 +170749372819,221,0 +170749372867,222,0 +170749372916,222,0 +170749372964,222,0 +170749373014,224,0 +170749373062,226,0 +170749373111,228,0 +170749373161,228,0 +170749373210,228,0 +170749373260,227,0 +170749373309,227,0 +170749373359,229,0 +170749373407,229,0 +170749373455,227,0 +170749373503,217,0 +170749373551,216,0 +170749373600,217,0 +170749373648,218,0 +170749373696,219,0 +170749373744,220,0 +170749373792,220,0 +170749373842,220,0 +170749373890,222,0 +170749373939,224,0 +170749373987,227,0 +170749374035,227,0 +170749374083,226,0 +170749374133,228,0 +170749374181,227,0 +170749374229,227,0 +170749374276,228,0 +170749374326,225,0 +170749374375,229,0 +170749374423,218,0 +170749374471,216,0 +170749374519,217,0 +170749374567,217,0 +170749374617,217,0 +170749374664,218,0 +170749374712,219,0 +170749374762,221,0 +170749374811,221,0 +170749374859,222,0 +170749374909,223,0 +170749374957,225,0 +170749375006,227,0 +170749375054,226,0 +170749375102,223,0 +170749375150,227,0 +170749375198,227,0 +170749375246,227,0 +170749375294,227,0 +170749375342,219,0 +170749375390,216,0 +170749375438,217,0 +170749375486,217,0 +170749375534,218,0 +170749375582,218,0 +170749375631,220,0 +170749375679,220,0 +170749375727,221,0 +170749375776,222,0 +170749375824,223,0 +170749375872,225,0 +170749375920,225,0 +170749375968,225,0 +170749376016,228,0 +170749376064,226,0 +170749376112,228,0 +170749376160,229,0 +170749376208,227,0 +170749376256,228,0 +170749376304,217,0 +170749376352,217,0 +170749376401,217,0 +170749376449,217,0 +170749376497,218,0 +170749376545,219,0 +170749376595,220,0 +170749376644,222,0 +170749376694,222,0 +170749376742,223,0 +170749376790,225,0 +170749376839,226,0 +170749376887,226,0 +170749376937,227,0 +170749376986,229,0 +170749377034,228,0 +170749377082,228,0 +170749377131,229,0 +170749377179,227,0 +170749377227,217,0 +170749377277,216,0 +170749377326,216,0 +170749377374,217,0 +170749377424,217,0 +170749377473,218,0 +170749377523,219,0 +170749377571,219,0 +170749377619,221,0 +170749377668,223,0 +170749377716,223,0 +170749377766,224,0 +170749377814,226,0 +170749377863,225,0 +170749377913,226,0 +170749377961,228,0 +170749378010,227,0 +170749378058,230,0 +170749378107,228,0 +170749378157,216,0 +170749378206,216,0 +170749378254,217,0 +170749378302,217,0 +170749378350,218,0 +170749378400,217,0 +170749378448,219,0 +170749378496,219,0 +170749378543,220,0 +170749378591,220,0 +170749378639,224,0 +170749378689,223,0 +170749378738,224,0 +170749378786,227,0 +170749378836,225,0 +170749378884,225,0 +170749378932,226,0 +170749378980,225,0 +170749379028,227,0 +170749379076,216,0 +170749379125,216,0 +170749379173,216,0 +170749379223,217,0 +170749379272,216,0 +170749379320,218,0 +170749379370,219,0 +170749379418,221,0 +170749379466,221,0 +170749379514,222,0 +170749379561,224,0 +170749379609,226,0 +170749379659,227,0 +170749379707,226,0 +170749379755,227,0 +170749379803,227,0 +170749379852,227,0 +170749379902,227,0 +170749379950,228,0 +170749379998,217,0 +170749380046,218,0 +170749380094,217,0 +170749380142,218,0 +170749380191,219,0 +170749380239,221,0 +170749380287,222,0 +170749380336,224,0 +170749380384,223,0 +170749380432,225,0 +170749380482,226,0 +170749380530,227,0 +170749380578,228,0 +170749380627,228,0 +170749380677,227,0 +170749380725,228,0 +170749380773,228,0 +170749380822,228,0 +170749380870,227,0 +170749380918,217,0 +170749380966,215,0 +170749381014,217,0 +170749381062,217,0 +170749381110,218,0 +170749381158,219,0 +170749381205,220,0 +170749381253,222,0 +170749381301,224,0 +170749381351,225,0 +170749381399,227,0 +170749381447,229,0 +170749381495,227,0 +170749381543,229,0 +170749381591,228,0 +170749381638,227,0 +170749381688,227,0 +170749381736,229,0 +170749381784,228,0 +170749381832,217,0 +170749381880,216,0 +170749381928,217,0 +170749381977,219,0 +170749382027,219,0 +170749382074,223,0 +170749382122,222,0 +170749382172,224,0 +170749382221,225,0 +170749382271,224,0 +170749382319,225,0 +170749382367,226,0 +170749382415,226,0 +170749382463,227,0 +170749382512,227,0 +170749382562,229,0 +170749382611,227,0 +170749382659,229,0 +170749382707,228,0 +170749382757,222,0 +170749382805,216,0 +170749382854,217,0 +170749382902,219,0 +170749382952,220,0 +170749383000,222,0 +170749383048,222,0 +170749383097,223,0 +170749383145,223,0 +170749383193,224,0 +170749383242,225,0 +170749383292,231,0 +170749383340,226,0 +170749383389,227,0 +170749383437,227,0 +170749383485,227,0 +170749383535,228,0 +170749383583,229,0 +170749383632,228,0 +170749383680,222,0 +170749383730,218,0 +170749383778,219,0 +170749383827,220,0 +170749383875,220,0 +170749383923,222,0 +170749383971,222,0 +170749384021,223,0 +170749384070,226,0 +170749384120,225,0 +170749384169,226,0 +170749384219,228,0 +170749384267,229,0 +170749384316,227,0 +170749384364,227,0 +170749384412,228,0 +170749384460,228,0 +170749384510,230,0 +170749384559,228,0 +170749384607,218,0 +170749384657,216,0 +170749384705,218,0 +170749384753,219,0 +170749384801,220,0 +170749384850,221,0 +170749384898,222,0 +170749384948,222,0 +170749384997,225,0 +170749385045,225,0 +170749385093,226,0 +170749385141,226,0 +170749385189,228,0 +170749385237,227,0 +170749385286,230,0 +170749385334,228,0 +170749385382,229,0 +170749385430,228,0 +170749385478,228,0 +170749385526,220,0 +170749385576,216,0 +170749385623,217,0 +170749385673,219,0 +170749385721,219,0 +170749385770,220,0 +170749385818,220,0 +170749385868,222,0 +170749385917,222,0 +170749385967,224,0 +170749386015,224,0 +170749386063,224,0 +170749386111,226,0 +170749386160,226,0 +170749386208,227,0 +170749386256,231,0 +170749386306,231,0 +170749386354,229,0 +170749386402,231,0 +170749386451,225,0 +170749386499,217,0 +170749386547,217,0 +170749386595,218,0 +170749386643,220,0 +170749386691,220,0 +170749386739,221,0 +170749386787,222,0 +170749386837,223,0 +170749386885,224,0 +170749386932,224,0 +170749386982,224,0 +170749387032,226,0 +170749387079,227,0 +170749387127,226,0 +170749387177,229,0 +170749387225,227,0 +170749387274,224,0 +170749387324,228,0 +170749387374,228,0 +170749387423,216,0 +170749387471,217,0 +170749387520,218,0 +170749387568,220,0 +170749387616,219,0 +170749387664,219,0 +170749387712,222,0 +170749387760,221,0 +170749387808,222,0 +170749387856,225,0 +170749387904,226,0 +170749387952,227,0 +170749388000,226,0 +170749388048,228,0 +170749388097,227,0 +170749388147,229,0 +170749388196,231,0 +170749388246,228,0 +170749388294,227,0 +170749388342,217,0 +170749388391,217,0 +170749388441,218,0 +170749388489,219,0 +170749388537,221,0 +170749388585,222,0 +170749388633,221,0 +170749388681,223,0 +170749388730,222,0 +170749388778,225,0 +170749388827,224,0 +170749388877,227,0 +170749388927,226,0 +170749388975,226,0 +170749389023,230,0 +170749389071,229,0 +170749389120,228,0 +170749389168,228,0 +170749389216,227,0 +170749389264,218,0 +170749389312,216,0 +170749389360,218,0 +170749389408,219,0 +170749389457,219,0 +170749389505,223,0 +170749389553,223,0 +170749389601,222,0 +170749389650,227,0 +170749389698,226,0 +170749389748,228,0 +170749389796,227,0 +170749389843,226,0 +170749389891,226,0 +170749389939,231,0 +170749389989,228,0 +170749390037,232,0 +170749390086,229,0 +170749390134,228,0 +170749390183,219,0 +170749390233,216,0 +170749390281,215,0 +170749390329,217,0 +170749390377,219,0 +170749390425,220,0 +170749390474,221,0 +170749390524,221,0 +170749390572,223,0 +170749390621,224,0 +170749390669,225,0 +170749390719,227,0 +170749390767,226,0 +170749390815,228,0 +170749390864,227,0 +170749390912,229,0 +170749390962,228,0 +170749391010,229,0 +170749391058,229,0 +170749391106,218,0 +170749391155,216,0 +170749391203,216,0 +170749391251,217,0 +170749391301,218,0 +170749391349,218,0 +170749391398,218,0 +170749391446,221,0 +170749391494,221,0 +170749391542,222,0 +170749391590,223,0 +170749391638,224,0 +170749391686,225,0 +170749391734,226,0 +170749391783,226,0 +170749391831,226,0 +170749391879,228,0 +170749391929,228,0 +170749391978,229,0 +170749392028,218,0 +170749392076,216,0 +170749392124,216,0 +170749392172,217,0 +170749392220,218,0 +170749392267,219,0 +170749392317,219,0 +170749392367,221,0 +170749392415,222,0 +170749392462,223,0 +170749392510,224,0 +170749392558,225,0 +170749392606,229,0 +170749392654,226,0 +170749392702,227,0 +170749392752,233,0 +170749392801,226,0 +170749392849,228,0 +170749392897,228,0 +170749392945,222,0 +170749392995,216,0 +170749393043,216,0 +170749393092,217,0 +170749393140,218,0 +170749393188,219,0 +170749393238,219,0 +170749393285,220,0 +170749393333,223,0 +170749393383,222,0 +170749393431,225,0 +170749393479,226,0 +170749393528,225,0 +170749393578,225,0 +170749393626,228,0 +170749393674,228,0 +170749393722,228,0 +170749393771,229,0 +170749393819,228,0 +170749393869,227,0 +170749393917,217,0 +170749393965,217,0 +170749394014,219,0 +170749394064,219,0 +170749394112,221,0 +170749394159,221,0 +170749394207,221,0 +170749394255,222,0 +170749394303,225,0 +170749394351,225,0 +170749394399,226,0 +170749394449,227,0 +170749394498,227,0 +170749394546,227,0 +170749394594,229,0 +170749394644,229,0 +170749394692,229,0 +170749394739,228,0 +170749394787,228,0 +170749394835,217,0 +170749394885,218,0 +170749394934,218,0 +170749394982,220,0 +170749395030,220,0 +170749395080,221,0 +170749395128,223,0 +170749395176,224,0 +170749395224,224,0 +170749395272,225,0 +170749395320,227,0 +170749395369,228,0 +170749395417,228,0 +170749395467,229,0 +170749395515,226,0 +170749395562,229,0 +170749395612,228,0 +170749395660,228,0 +170749395709,228,0 +170749395757,217,0 +170749395807,216,0 +170749395855,218,0 +170749395903,219,0 +170749395952,220,0 +170749396000,220,0 +170749396048,221,0 +170749396096,221,0 +170749396144,222,0 +170749396194,222,0 +170749396241,224,0 +170749396289,225,0 +170749396337,225,0 +170749396385,228,0 +170749396433,227,0 +170749396481,227,0 +170749396529,228,0 +170749396577,228,0 +170749396625,226,0 +170749396673,218,0 +170749396723,217,0 +170749396771,218,0 +170749396820,219,0 +170749396868,220,0 +170749396916,221,0 +170749396964,221,0 +170749397013,224,0 +170749397061,223,0 +170749397109,227,0 +170749397157,224,0 +170749397207,226,0 +170749397256,226,0 +170749397304,228,0 +170749397354,228,0 +170749397402,229,0 +170749397450,229,0 +170749397498,229,0 +170749397546,228,0 +170749397594,218,0 +170749397641,218,0 +170749397689,219,0 +170749397737,219,0 +170749397785,221,0 +170749397833,221,0 +170749397882,222,0 +170749397932,223,0 +170749397981,225,0 +170749398029,225,0 +170749398077,226,0 +170749398125,223,0 +170749398173,227,0 +170749398223,229,0 +170749398270,230,0 +170749398320,229,0 +170749398368,229,0 +170749398417,230,0 +170749398467,228,0 +170749398516,218,0 +170749398564,218,0 +170749398614,219,0 +170749398663,220,0 +170749398711,221,0 +170749398759,224,0 +170749398807,226,0 +170749398855,223,0 +170749398905,224,0 +170749398954,226,0 +170749399002,226,0 +170749399052,229,0 +170749399100,233,0 +170749399148,227,0 +170749399196,228,0 +170749399244,228,0 +170749399291,224,0 +170749399339,228,0 +170749399387,228,0 +170749399437,221,0 +170749399486,216,0 +170749399536,218,0 +170749399585,220,0 +170749399633,220,0 +170749399681,220,0 +170749399729,222,0 +170749399777,223,0 +170749399825,223,0 +170749399873,224,0 +170749399921,224,0 +170749399969,226,0 +170749400016,227,0 +170749400064,228,0 +170749400112,230,0 +170749400160,227,0 +170749400208,228,0 +170749400257,229,0 +170749400305,229,0 +170749400353,227,0 +170749400401,218,0 +170749400449,217,0 +170749400499,216,0 +170749400546,218,0 +170749400594,220,0 +170749400644,220,0 +170749400692,221,0 +170749400739,223,0 +170749400787,224,0 +170749400835,225,0 +170749400883,224,0 +170749400931,228,0 +170749400979,227,0 +170749401027,228,0 +170749401075,228,0 +170749401123,227,0 +170749401170,228,0 +170749401218,227,0 +170749401266,227,0 +170749401314,217,0 +170749401362,216,0 +170749401411,216,0 +170749401459,217,0 +170749401507,220,0 +170749401555,220,0 +170749401603,221,0 +170749401651,222,0 +170749401699,222,0 +170749401748,223,0 +170749401798,225,0 +170749401846,225,0 +170749401893,227,0 +170749401941,226,0 +170749401989,227,0 +170749402037,227,0 +170749402085,228,0 +170749402133,229,0 +170749402183,227,0 +170749402232,217,0 +170749402281,217,0 +170749402331,218,0 +170749402379,219,0 +170749402427,220,0 +170749402475,221,0 +170749402523,221,0 +170749402570,223,0 +170749402618,224,0 +170749402666,224,0 +170749402714,227,0 +170749402762,228,0 +170749402811,227,0 +170749402859,227,0 +170749402907,228,0 +170749402957,228,0 +170749403006,228,0 +170749403054,229,0 +170749403102,227,0 +170749403151,226,0 +170749403199,217,0 +170749403247,216,0 +170749403295,217,0 +170749403343,219,0 +170749403391,219,0 +170749403439,221,0 +170749403488,222,0 +170749403536,223,0 +170749403585,225,0 +170749403633,225,0 +170749403683,225,0 +170749403732,227,0 +170749403780,229,0 +170749403828,228,0 +170749403876,227,0 +170749403924,228,0 +170749403972,228,0 +170749404020,228,0 +170749404069,226,0 +170749404118,216,0 +170749404166,216,0 +170749404214,216,0 +170749404264,216,0 +170749404313,216,0 +170749404361,217,0 +170749404409,217,0 +170749404457,218,0 +170749404505,219,0 +170749404553,220,0 +170749404601,223,0 +170749404651,224,0 +170749404699,224,0 +170749404746,226,0 +170749404794,227,0 +170749404842,227,0 +170749404890,227,0 +170749404940,227,0 +170749404989,227,0 +170749405039,216,0 +170749405087,216,0 +170749405136,216,0 +170749405184,216,0 +170749405232,216,0 +170749405280,216,0 +170749405328,217,0 +170749405376,217,0 +170749405424,218,0 +170749405472,218,0 +170749405520,218,0 +170749405568,219,0 +170749405616,220,0 +170749405664,220,0 +170749405713,222,0 +170749405761,222,0 +170749405810,223,0 +170749405858,223,0 +170749405906,225,0 +170749405954,226,0 +170749406002,226,0 +170749406050,229,0 +170749406100,226,0 +170749406148,230,0 +170749406196,231,0 +170749406244,232,0 +170749406292,228,0 +170749406339,228,0 +170749406389,221,0 +170749406437,216,0 +170749406486,216,0 +170749406536,216,0 +170749406584,217,0 +170749406633,217,0 +170749406683,216,0 +170749406731,219,0 +170749406779,219,0 +170749406828,221,0 +170749406876,222,0 +170749406924,223,0 +170749406974,225,0 +170749407022,228,0 +170749407071,227,0 +170749407121,226,0 +170749407169,226,0 +170749407216,227,0 +170749407264,227,0 +170749407312,227,0 +170749407360,216,0 +170749407408,216,0 +170749407456,216,0 +170749407504,216,0 +170749407552,217,0 +170749407600,217,0 +170749407648,218,0 +170749407695,219,0 +170749407743,222,0 +170749407791,221,0 +170749407839,222,0 +170749407887,224,0 +170749407935,226,0 +170749407983,225,0 +170749408031,227,0 +170749408078,229,0 +170749408126,227,0 +170749408174,227,0 +170749408222,228,0 +170749408270,217,0 +170749408319,216,0 +170749408367,216,0 +170749408415,217,0 +170749408463,218,0 +170749408511,218,0 +170749408561,220,0 +170749408610,221,0 +170749408660,223,0 +170749408707,222,0 +170749408755,225,0 +170749408803,224,0 +170749408851,225,0 +170749408899,226,0 +170749408947,227,0 +170749408995,230,0 +170749409043,231,0 +170749409090,228,0 +170749409140,228,0 +170749409188,218,0 +170749409236,217,0 +170749409284,217,0 +170749409333,217,0 +170749409383,218,0 +170749409432,220,0 +170749409482,220,0 +170749409530,222,0 +170749409579,222,0 +170749409627,222,0 +170749409675,224,0 +170749409725,225,0 +170749409774,226,0 +170749409822,226,0 +170749409870,229,0 +170749409918,227,0 +170749409966,227,0 +170749410014,231,0 +170749410063,228,0 +170749410113,218,0 +170749410161,217,0 +170749410210,218,0 +170749410258,219,0 +170749410306,220,0 +170749410354,221,0 +170749410404,223,0 +170749410452,221,0 +170749410500,224,0 +170749410549,223,0 +170749410597,225,0 +170749410645,227,0 +170749410693,227,0 +170749410743,227,0 +170749410792,228,0 +170749410842,230,0 +170749410890,228,0 +170749410939,228,0 +170749410989,227,0 +170749411037,217,0 +170749411084,218,0 +170749411134,220,0 +170749411184,220,0 +170749411233,221,0 +170749411283,224,0 +170749411330,223,0 +170749411378,222,0 +170749411428,225,0 +170749411477,226,0 +170749411525,226,0 +170749411573,228,0 +170749411621,229,0 +170749411671,230,0 +170749411718,231,0 +170749411768,231,0 +170749411816,230,0 +170749411864,232,0 +170749411912,229,0 +170749411960,219,0 +170749412009,217,0 +170749412059,220,0 +170749412107,220,0 +170749412155,222,0 +170749412204,223,0 +170749412254,224,0 +170749412302,224,0 +170749412349,228,0 +170749412399,229,0 +170749412448,230,0 +170749412496,228,0 +170749412546,229,0 +170749412594,229,0 +170749412642,232,0 +170749412690,230,0 +170749412739,229,0 +170749412789,228,0 +170749412839,228,0 +170749412886,218,0 +170749412936,218,0 +170749412984,219,0 +170749413032,220,0 +170749413082,221,0 +170749413131,222,0 +170749413179,223,0 +170749413227,225,0 +170749413277,225,0 +170749413324,226,0 +170749413372,227,0 +170749413422,226,0 +170749413472,228,0 +170749413520,227,0 +170749413569,229,0 +170749413617,228,0 +170749413667,229,0 +170749413716,227,0 +170749413766,228,0 +170749413815,218,0 +170749413865,217,0 +170749413912,218,0 +170749413960,219,0 +170749414008,221,0 +170749414058,222,0 +170749414106,222,0 +170749414154,223,0 +170749414202,223,0 +170749414251,224,0 +170749414299,228,0 +170749414347,229,0 +170749414395,228,0 +170749414443,229,0 +170749414491,233,0 +170749414539,227,0 +170749414588,229,0 +170749414638,229,0 +170749414687,228,0 +170749414737,221,0 +170749414785,216,0 +170749414834,217,0 +170749414882,217,0 +170749414930,219,0 +170749414980,220,0 +170749415028,221,0 +170749415076,221,0 +170749415125,222,0 +170749415173,222,0 +170749415221,225,0 +170749415269,227,0 +170749415317,226,0 +170749415367,226,0 +170749415415,226,0 +170749415462,228,0 +170749415510,227,0 +170749415560,229,0 +170749415609,228,0 +170749415659,225,0 +170749415707,216,0 +170749415755,216,0 +170749415805,216,0 +170749415854,217,0 +170749415904,218,0 +170749415952,218,0 +170749416001,219,0 +170749416049,219,0 +170749416097,221,0 +170749416145,222,0 +170749416193,223,0 +170749416241,223,0 +170749416290,224,0 +170749416340,225,0 +170749416388,226,0 +170749416436,227,0 +170749416484,226,0 +170749416533,226,0 +170749416581,227,0 +170749416631,217,0 +170749416680,216,0 +170749416730,218,0 +170749416779,218,0 +170749416827,219,0 +170749416875,219,0 +170749416923,221,0 +170749416973,221,0 +170749417021,223,0 +170749417069,224,0 +170749417117,225,0 +170749417165,226,0 +170749417213,227,0 +170749417262,229,0 +170749417312,228,0 +170749417360,227,0 +170749417408,227,0 +170749417456,228,0 +170749417504,230,0 +170749417552,217,0 +170749417599,216,0 +170749417647,217,0 +170749417695,218,0 +170749417743,219,0 +170749417791,220,0 +170749417839,220,0 +170749417887,221,0 +170749417935,222,0 +170749417983,222,0 +170749418033,225,0 +170749418082,225,0 +170749418130,226,0 +170749418178,228,0 +170749418228,225,0 +170749418276,228,0 +170749418324,227,0 +170749418371,228,0 +170749418419,228,0 +170749418469,217,0 +170749418519,217,0 +170749418567,217,0 +170749418615,218,0 +170749418663,219,0 +170749418711,220,0 +170749418759,219,0 +170749418808,220,0 +170749418856,223,0 +170749418904,223,0 +170749418952,223,0 +170749419000,227,0 +170749419048,221,0 +170749419097,227,0 +170749419145,227,0 +170749419193,228,0 +170749419243,229,0 +170749419291,228,0 +170749419339,227,0 +170749419388,218,0 +170749419436,216,0 +170749419486,217,0 +170749419534,218,0 +170749419582,219,0 +170749419629,220,0 +170749419677,221,0 +170749419725,221,0 +170749419773,222,0 +170749419821,223,0 +170749419869,224,0 +170749419917,224,0 +170749419965,225,0 +170749420014,226,0 +170749420062,226,0 +170749420110,228,0 +170749420160,228,0 +170749420209,227,0 +170749420259,227,0 +170749420308,222,0 +170749420358,216,0 +170749420407,216,0 +170749420455,217,0 +170749420505,218,0 +170749420553,219,0 +170749420601,220,0 +170749420649,220,0 +170749420696,221,0 +170749420746,223,0 +170749420794,225,0 +170749420842,226,0 +170749420891,226,0 +170749420939,227,0 +170749420987,226,0 +170749421035,228,0 +170749421083,226,0 +170749421131,227,0 +170749421179,227,0 +170749421227,221,0 +170749421276,216,0 +170749421324,217,0 +170749421372,216,0 +170749421421,217,0 +170749421469,218,0 +170749421517,220,0 +170749421565,219,0 +170749421613,219,0 +170749421661,221,0 +170749421709,223,0 +170749421757,223,0 +170749421805,226,0 +170749421853,225,0 +170749421902,226,0 +170749421951,226,0 +170749422001,227,0 +170749422049,229,0 +170749422098,229,0 +170749422146,227,0 +170749422194,217,0 +170749422242,215,0 +170749422290,217,0 +170749422338,218,0 +170749422385,219,0 +170749422433,219,0 +170749422481,221,0 +170749422529,222,0 +170749422577,222,0 +170749422625,224,0 +170749422673,222,0 +170749422720,225,0 +170749422768,226,0 +170749422816,227,0 +170749422864,228,0 +170749422914,229,0 +170749422962,227,0 +170749423010,228,0 +170749423057,227,0 +170749423105,218,0 +170749423153,216,0 +170749423201,217,0 +170749423249,219,0 +170749423299,220,0 +170749423348,222,0 +170749423396,222,0 +170749423445,224,0 +170749423493,224,0 +170749423541,224,0 +170749423589,226,0 +170749423637,226,0 +170749423685,227,0 +170749423733,227,0 +170749423781,228,0 +170749423829,229,0 +170749423877,227,0 +170749423926,229,0 +170749423974,227,0 +170749424022,218,0 +170749424071,216,0 +170749424119,217,0 +170749424167,219,0 +170749424215,221,0 +170749424264,222,0 +170749424312,222,0 +170749424360,222,0 +170749424408,224,0 +170749424457,225,0 +170749424505,226,0 +170749424553,226,0 +170749424601,230,0 +170749424649,228,0 +170749424697,226,0 +170749424745,227,0 +170749424792,228,0 +170749424842,228,0 +170749424890,227,0 +170749424939,226,0 +170749424989,217,0 +170749425037,218,0 +170749425085,220,0 +170749425134,220,0 +170749425182,222,0 +170749425230,225,0 +170749425279,225,0 +170749425327,224,0 +170749425377,226,0 +170749425426,226,0 +170749425475,226,0 +170749425523,228,0 +170749425571,227,0 +170749425619,228,0 +170749425667,225,0 +170749425715,228,0 +170749425764,228,0 +170749425812,228,0 +170749425862,224,0 +170749425910,216,0 +170749425958,216,0 +170749426007,216,0 +170749426055,218,0 +170749426103,219,0 +170749426151,219,0 +170749426200,221,0 +170749426250,221,0 +170749426298,223,0 +170749426347,223,0 +170749426397,224,0 +170749426445,226,0 +170749426494,226,0 +170749426542,226,0 +170749426592,226,0 +170749426640,226,0 +170749426689,224,0 +170749426739,227,0 +170749426788,227,0 +170749426838,216,0 +170749426886,217,0 +170749426934,218,0 +170749426983,219,0 +170749427031,221,0 +170749427081,220,0 +170749427129,222,0 +170749427177,223,0 +170749427226,225,0 +170749427274,224,0 +170749427322,224,0 +170749427370,226,0 +170749427418,226,0 +170749427466,227,0 +170749427514,230,0 +170749427562,227,0 +170749427611,229,0 +170749427661,226,0 +170749427709,227,0 +170749427757,216,0 +170749427806,216,0 +170749427854,217,0 +170749427902,218,0 +170749427952,219,0 +170749427999,221,0 +170749428049,221,0 +170749428097,222,0 +170749428146,222,0 +170749428194,224,0 +170749428242,225,0 +170749428292,225,0 +170749428340,226,0 +170749428388,227,0 +170749428437,227,0 +170749428485,229,0 +170749428535,229,0 +170749428583,228,0 +170749428631,228,0 +170749428680,217,0 +170749428728,216,0 +170749428778,217,0 +170749428825,219,0 +170749428875,220,0 +170749428923,221,0 +170749428971,221,0 +170749429019,223,0 +170749429068,224,0 +170749429116,224,0 +170749429164,225,0 +170749429212,226,0 +170749429262,226,0 +170749429311,227,0 +170749429359,230,0 +170749429407,228,0 +170749429455,227,0 +170749429503,228,0 +170749429550,227,0 +170749429598,217,0 +170749429646,217,0 +170749429694,218,0 +170749429742,220,0 +170749429790,220,0 +170749429838,222,0 +170749429886,223,0 +170749429934,224,0 +170749429982,226,0 +170749430030,225,0 +170749430077,226,0 +170749430125,226,0 +170749430173,229,0 +170749430223,228,0 +170749430272,229,0 +170749430320,229,0 +170749430368,228,0 +170749430417,229,0 +170749430465,228,0 +170749430513,218,0 +170749430561,216,0 +170749430609,217,0 +170749430657,218,0 +170749430705,219,0 +170749430752,221,0 +170749430800,221,0 +170749430848,221,0 +170749430896,223,0 +170749430944,225,0 +170749430993,224,0 +170749431041,226,0 +170749431089,227,0 +170749431137,230,0 +170749431186,228,0 +170749431236,228,0 +170749431285,228,0 +170749431333,228,0 +170749431381,227,0 +170749431429,218,0 +170749431478,217,0 +170749431526,217,0 +170749431574,218,0 +170749431622,220,0 +170749431670,220,0 +170749431718,221,0 +170749431766,223,0 +170749431814,223,0 +170749431863,223,0 +170749431911,226,0 +170749431959,225,0 +170749432007,226,0 +170749432055,226,0 +170749432104,227,0 +170749432152,226,0 +170749432200,230,0 +170749432248,228,0 +170749432296,229,0 +170749432344,231,0 +170749432391,216,0 +170749432439,217,0 +170749432489,218,0 +170749432537,219,0 +170749432586,220,0 +170749432634,220,0 +170749432682,221,0 +170749432730,222,0 +170749432778,223,0 +170749432826,224,0 +170749432874,225,0 +170749432921,227,0 +170749432971,226,0 +170749433019,225,0 +170749433068,226,0 +170749433116,228,0 +170749433164,227,0 +170749433213,229,0 +170749433261,227,0 +170749433311,217,0 +170749433360,216,0 +170749433409,219,0 +170749433459,220,0 +170749433507,221,0 +170749433555,223,0 +170749433604,224,0 +170749433654,225,0 +170749433702,226,0 +170749433750,226,0 +170749433798,226,0 +170749433846,227,0 +170749433893,229,0 +170749433943,230,0 +170749433991,231,0 +170749434039,229,0 +170749434087,232,0 +170749434135,229,0 +170749434184,227,0 +170749434234,217,0 +170749434282,217,0 +170749434330,218,0 +170749434378,219,0 +170749434426,221,0 +170749434474,223,0 +170749434522,223,0 +170749434570,223,0 +170749434618,224,0 +170749434667,226,0 +170749434717,228,0 +170749434766,228,0 +170749434816,229,0 +170749434864,229,0 +170749434912,228,0 +170749434960,227,0 +170749435008,230,0 +170749435056,229,0 +170749435104,228,0 +170749435151,218,0 +170749435201,216,0 +170749435249,217,0 +170749435297,217,0 +170749435346,219,0 +170749435396,220,0 +170749435445,221,0 +170749435495,220,0 +170749435543,222,0 +170749435592,223,0 +170749435640,223,0 +170749435688,223,0 +170749435736,224,0 +170749435784,226,0 +170749435832,227,0 +170749435882,226,0 +170749435931,227,0 +170749435981,227,0 +170749436029,228,0 +170749436077,217,0 +170749436126,216,0 +170749436174,217,0 +170749436223,218,0 +170749436273,218,0 +170749436321,221,0 +170749436370,223,0 +170749436420,223,0 +170749436468,224,0 +170749436515,225,0 +170749436563,227,0 +170749436611,224,0 +170749436659,228,0 +170749436707,227,0 +170749436755,228,0 +170749436803,230,0 +170749436852,228,0 +170749436900,228,0 +170749436948,227,0 +170749436996,218,0 +170749437044,216,0 +170749437092,216,0 +170749437141,218,0 +170749437189,218,0 +170749437238,220,0 +170749437286,221,0 +170749437334,223,0 +170749437382,224,0 +170749437430,224,0 +170749437478,226,0 +170749437526,227,0 +170749437574,226,0 +170749437621,226,0 +170749437669,228,0 +170749437717,229,0 +170749437765,228,0 +170749437813,227,0 +170749437861,228,0 +170749437909,224,0 +170749437957,216,0 +170749438006,217,0 +170749438054,217,0 +170749438102,216,0 +170749438152,217,0 +170749438200,217,0 +170749438248,219,0 +170749438296,220,0 +170749438343,221,0 +170749438393,223,0 +170749438442,224,0 +170749438492,221,0 +170749438540,225,0 +170749438588,227,0 +170749438636,229,0 +170749438685,228,0 +170749438733,227,0 +170749438781,227,0 +170749438831,227,0 +170749438879,216,0 +170749438927,216,0 +170749438975,217,0 +170749439023,216,0 +170749439070,217,0 +170749439120,218,0 +170749439168,218,0 +170749439217,219,0 +170749439265,218,0 +170749439313,219,0 +170749439361,220,0 +170749439409,222,0 +170749439457,221,0 +170749439507,224,0 +170749439555,225,0 +170749439604,224,0 +170749439652,225,0 +170749439700,227,0 +170749439748,228,0 +170749439798,218,0 +170749439847,217,0 +170749439895,217,0 +170749439945,219,0 +170749439993,220,0 diff --git a/laser_value/0210-02.csv b/laser_value/0210-02.csv new file mode 100644 index 0000000..83da6dd --- /dev/null +++ b/laser_value/0210-02.csv @@ -0,0 +1,7429 @@ +timestamp,laser_value,event +170749440041,219,0 +170749440091,221,0 +170749440140,221,0 +170749440188,223,0 +170749440236,223,0 +170749440286,224,0 +170749440334,225,0 +170749440383,226,0 +170749440433,226,0 +170749440482,228,0 +170749440530,227,0 +170749440578,228,0 +170749440626,228,0 +170749440674,227,0 +170749440722,217,0 +170749440770,217,0 +170749440819,217,0 +170749440867,218,0 +170749440915,220,0 +170749440963,220,0 +170749441011,222,0 +170749441059,222,0 +170749441108,223,0 +170749441156,224,0 +170749441204,225,0 +170749441252,225,0 +170749441300,227,0 +170749441348,229,0 +170749441396,227,0 +170749441446,228,0 +170749441495,229,0 +170749441543,227,0 +170749441591,227,0 +170749441639,218,0 +170749441687,216,0 +170749441735,217,0 +170749441783,217,0 +170749441831,219,0 +170749441879,219,0 +170749441928,220,0 +170749441976,221,0 +170749442024,221,0 +170749442074,225,0 +170749442123,226,0 +170749442171,226,0 +170749442219,225,0 +170749442267,227,0 +170749442317,227,0 +170749442366,227,0 +170749442414,247,0 +170749442462,251,0 +170749442512,235,0 +170749442561,217,0 +170749442609,216,0 +170749442657,217,0 +170749442705,218,0 +170749442755,220,0 +170749442803,219,0 +170749442852,220,0 +170749442902,223,0 +170749442950,223,0 +170749442998,225,0 +170749443047,224,0 +170749443095,226,0 +170749443145,226,0 +170749443193,229,0 +170749443240,227,0 +170749443288,227,0 +170749443336,228,0 +170749443384,227,0 +170749443432,227,0 +170749443482,219,0 +170749443530,216,0 +170749443579,217,0 +170749443627,218,0 +170749443677,217,0 +170749443726,221,0 +170749443776,220,0 +170749443824,221,0 +170749443872,222,0 +170749443920,223,0 +170749443967,224,0 +170749444017,225,0 +170749444067,228,0 +170749444116,229,0 +170749444164,228,0 +170749444214,230,0 +170749444263,230,0 +170749444311,228,0 +170749444359,228,0 +170749444408,218,0 +170749444458,216,0 +170749444507,218,0 +170749444555,219,0 +170749444605,220,0 +170749444654,221,0 +170749444702,222,0 +170749444752,224,0 +170749444801,224,0 +170749444851,225,0 +170749444900,226,0 +170749444948,227,0 +170749444998,227,0 +170749445046,230,0 +170749445094,227,0 +170749445142,228,0 +170749445190,229,0 +170749445239,228,0 +170749445288,228,0 +170749445338,224,0 +170749445388,218,0 +170749445437,220,0 +170749445487,220,0 +170749445534,221,0 +170749445582,223,0 +170749445632,223,0 +170749445680,223,0 +170749445729,225,0 +170749445777,225,0 +170749445825,226,0 +170749445875,227,0 +170749445924,230,0 +170749445974,228,0 +170749446022,229,0 +170749446070,227,0 +170749446118,229,0 +170749446165,227,0 +170749446215,224,0 +170749446263,223,0 +170749446312,217,0 +170749446360,218,0 +170749446410,220,0 +170749446458,222,0 +170749446506,226,0 +170749446554,224,0 +170749446603,224,0 +170749446651,224,0 +170749446701,226,0 +170749446749,227,0 +170749446797,228,0 +170749446845,227,0 +170749446893,229,0 +170749446942,228,0 +170749446990,228,0 +170749447038,227,0 +170749447087,228,0 +170749447137,228,0 +170749447185,227,0 +170749447233,216,0 +170749447281,217,0 +170749447329,219,0 +170749447376,220,0 +170749447424,220,0 +170749447472,224,0 +170749447520,223,0 +170749447570,224,0 +170749447619,224,0 +170749447667,226,0 +170749447715,227,0 +170749447763,226,0 +170749447813,229,0 +170749447861,228,0 +170749447910,227,0 +170749447958,227,0 +170749448006,230,0 +170749448055,227,0 +170749448103,227,0 +170749448151,217,0 +170749448201,217,0 +170749448249,218,0 +170749448297,220,0 +170749448345,220,0 +170749448393,221,0 +170749448440,224,0 +170749448490,224,0 +170749448538,226,0 +170749448586,225,0 +170749448635,226,0 +170749448685,226,0 +170749448733,227,0 +170749448781,228,0 +170749448830,227,0 +170749448878,228,0 +170749448926,229,0 +170749448976,229,0 +170749449025,226,0 +170749449073,217,0 +170749449123,216,0 +170749449171,217,0 +170749449219,218,0 +170749449267,219,0 +170749449316,220,0 +170749449366,221,0 +170749449414,222,0 +170749449462,222,0 +170749449511,225,0 +170749449561,225,0 +170749449609,226,0 +170749449657,227,0 +170749449705,229,0 +170749449753,228,0 +170749449801,229,0 +170749449848,229,0 +170749449896,226,0 +170749449944,227,0 +170749449992,218,0 +170749450042,217,0 +170749450091,217,0 +170749450139,218,0 +170749450187,218,0 +170749450235,219,0 +170749450282,220,0 +170749450330,221,0 +170749450378,222,0 +170749450428,224,0 +170749450476,225,0 +170749450524,226,0 +170749450571,226,0 +170749450619,226,0 +170749450668,227,0 +170749450716,227,0 +170749450763,229,0 +170749450811,230,0 +170749450861,230,0 +170749450909,217,0 +170749450957,216,0 +170749451005,216,0 +170749451054,217,0 +170749451102,216,0 +170749451150,218,0 +170749451199,218,0 +170749451249,219,0 +170749451297,218,0 +170749451345,222,0 +170749451394,223,0 +170749451444,224,0 +170749451492,225,0 +170749451540,228,0 +170749451588,229,0 +170749451637,228,0 +170749451687,228,0 +170749451736,228,0 +170749451784,227,0 +170749451834,218,0 +170749451883,216,0 +170749451933,216,0 +170749451982,217,0 +170749452032,218,0 +170749452080,218,0 +170749452128,219,0 +170749452176,220,0 +170749452223,221,0 +170749452271,222,0 +170749452319,222,0 +170749452367,224,0 +170749452415,224,0 +170749452463,225,0 +170749452511,225,0 +170749452559,226,0 +170749452606,226,0 +170749452656,224,0 +170749452705,227,0 +170749452753,224,0 +170749452801,216,0 +170749452849,216,0 +170749452899,217,0 +170749452947,218,0 +170749452995,218,0 +170749453042,219,0 +170749453090,219,0 +170749453138,221,0 +170749453186,223,0 +170749453236,224,0 +170749453284,221,0 +170749453332,226,0 +170749453380,225,0 +170749453429,226,0 +170749453479,228,0 +170749453528,227,0 +170749453576,229,0 +170749453626,227,0 +170749453673,228,0 +170749453723,217,0 +170749453773,217,0 +170749453822,218,0 +170749453870,218,0 +170749453918,219,0 +170749453966,219,0 +170749454014,220,0 +170749454062,223,0 +170749454110,222,0 +170749454158,225,0 +170749454206,224,0 +170749454255,224,0 +170749454303,226,0 +170749454351,226,0 +170749454399,228,0 +170749454448,227,0 +170749454496,228,0 +170749454544,230,0 +170749454592,228,0 +170749454642,218,0 +170749454690,218,0 +170749454739,219,0 +170749454787,221,0 +170749454835,221,0 +170749454883,222,0 +170749454931,223,0 +170749454979,223,0 +170749455028,227,0 +170749455076,225,0 +170749455125,225,0 +170749455173,229,0 +170749455221,231,0 +170749455271,230,0 +170749455319,231,0 +170749455368,230,0 +170749455418,228,0 +170749455466,230,0 +170749455514,227,0 +170749455562,218,0 +170749455611,217,0 +170749455659,218,0 +170749455707,220,0 +170749455755,221,0 +170749455803,221,0 +170749455851,222,0 +170749455899,224,0 +170749455949,223,0 +170749455998,225,0 +170749456046,226,0 +170749456095,228,0 +170749456143,228,0 +170749456193,229,0 +170749456241,230,0 +170749456289,229,0 +170749456337,228,0 +170749456386,228,0 +170749456434,228,0 +170749456482,219,0 +170749456530,219,0 +170749456578,220,0 +170749456626,220,0 +170749456674,224,0 +170749456723,223,0 +170749456771,224,0 +170749456819,224,0 +170749456867,227,0 +170749456915,226,0 +170749456963,229,0 +170749457011,226,0 +170749457059,228,0 +170749457107,228,0 +170749457155,228,0 +170749457204,229,0 +170749457252,228,0 +170749457302,229,0 +170749457350,228,0 +170749457398,218,0 +170749457446,218,0 +170749457495,219,0 +170749457543,220,0 +170749457591,221,0 +170749457639,222,0 +170749457688,224,0 +170749457736,223,0 +170749457784,223,0 +170749457832,228,0 +170749457882,227,0 +170749457930,227,0 +170749457978,228,0 +170749458026,228,0 +170749458074,228,0 +170749458123,229,0 +170749458173,228,0 +170749458220,228,0 +170749458268,228,0 +170749458316,226,0 +170749458364,217,0 +170749458412,218,0 +170749458462,218,0 +170749458511,221,0 +170749458559,221,0 +170749458609,223,0 +170749458658,223,0 +170749458708,225,0 +170749458756,225,0 +170749458804,225,0 +170749458853,227,0 +170749458901,229,0 +170749458949,227,0 +170749458997,227,0 +170749459045,228,0 +170749459093,229,0 +170749459141,228,0 +170749459189,227,0 +170749459237,227,0 +170749459286,217,0 +170749459336,217,0 +170749459384,219,0 +170749459432,220,0 +170749459481,220,0 +170749459529,221,0 +170749459577,222,0 +170749459625,223,0 +170749459673,225,0 +170749459721,226,0 +170749459769,225,0 +170749459817,226,0 +170749459865,229,0 +170749459914,228,0 +170749459962,226,0 +170749460010,229,0 +170749460060,229,0 +170749460109,228,0 +170749460157,228,0 +170749460205,216,0 +170749460255,216,0 +170749460304,216,0 +170749460354,217,0 +170749460402,218,0 +170749460450,219,0 +170749460497,220,0 +170749460545,220,0 +170749460593,221,0 +170749460643,222,0 +170749460692,224,0 +170749460742,226,0 +170749460790,226,0 +170749460838,226,0 +170749460886,227,0 +170749460935,224,0 +170749460983,228,0 +170749461031,226,0 +170749461079,228,0 +170749461127,217,0 +170749461177,216,0 +170749461226,216,0 +170749461274,216,0 +170749461322,217,0 +170749461372,216,0 +170749461421,219,0 +170749461469,219,0 +170749461517,220,0 +170749461567,221,0 +170749461615,223,0 +170749461662,223,0 +170749461712,225,0 +170749461762,225,0 +170749461811,226,0 +170749461859,226,0 +170749461908,226,0 +170749461956,227,0 +170749462006,227,0 +170749462054,218,0 +170749462103,216,0 +170749462151,216,0 +170749462199,216,0 +170749462247,216,0 +170749462295,217,0 +170749462343,217,0 +170749462392,218,0 +170749462440,219,0 +170749462488,220,0 +170749462537,223,0 +170749462587,225,0 +170749462635,225,0 +170749462683,227,0 +170749462731,227,0 +170749462779,227,0 +170749462827,228,0 +170749462875,227,0 +170749462924,228,0 +170749462972,218,0 +170749463020,216,0 +170749463068,217,0 +170749463116,217,0 +170749463166,217,0 +170749463213,218,0 +170749463261,218,0 +170749463309,218,0 +170749463357,219,0 +170749463405,222,0 +170749463453,222,0 +170749463501,226,0 +170749463549,225,0 +170749463596,225,0 +170749463644,226,0 +170749463694,227,0 +170749463742,227,0 +170749463790,229,0 +170749463839,228,0 +170749463889,219,0 +170749463937,216,0 +170749463986,216,0 +170749464034,217,0 +170749464082,217,0 +170749464130,218,0 +170749464178,218,0 +170749464226,220,0 +170749464275,223,0 +170749464323,223,0 +170749464371,224,0 +170749464419,224,0 +170749464467,225,0 +170749464515,225,0 +170749464563,226,0 +170749464611,227,0 +170749464659,225,0 +170749464707,228,0 +170749464755,224,0 +170749464804,227,0 +170749464852,217,0 +170749464900,217,0 +170749464949,217,0 +170749464999,217,0 +170749465047,218,0 +170749465097,219,0 +170749465145,219,0 +170749465193,221,0 +170749465242,221,0 +170749465290,222,0 +170749465338,225,0 +170749465386,224,0 +170749465435,225,0 +170749465483,226,0 +170749465531,227,0 +170749465581,230,0 +170749465629,228,0 +170749465677,228,0 +170749465726,228,0 +170749465774,217,0 +170749465822,217,0 +170749465870,217,0 +170749465918,218,0 +170749465968,218,0 +170749466016,221,0 +170749466065,220,0 +170749466113,221,0 +170749466161,223,0 +170749466209,223,0 +170749466258,224,0 +170749466306,226,0 +170749466356,226,0 +170749466405,226,0 +170749466453,227,0 +170749466501,227,0 +170749466551,227,0 +170749466599,226,0 +170749466647,227,0 +170749466696,217,0 +170749466744,216,0 +170749466794,217,0 +170749466843,217,0 +170749466891,220,0 +170749466939,221,0 +170749466987,223,0 +170749467035,223,0 +170749467083,225,0 +170749467131,225,0 +170749467179,228,0 +170749467228,227,0 +170749467276,227,0 +170749467324,228,0 +170749467372,230,0 +170749467421,229,0 +170749467469,226,0 +170749467519,228,0 +170749467568,227,0 +170749467616,218,0 +170749467664,216,0 +170749467712,217,0 +170749467760,218,0 +170749467810,219,0 +170749467858,221,0 +170749467907,221,0 +170749467955,222,0 +170749468003,223,0 +170749468051,224,0 +170749468101,225,0 +170749468150,226,0 +170749468198,225,0 +170749468246,226,0 +170749468294,228,0 +170749468344,229,0 +170749468392,228,0 +170749468441,229,0 +170749468489,227,0 +170749468537,219,0 +170749468586,216,0 +170749468636,216,0 +170749468684,217,0 +170749468732,217,0 +170749468781,219,0 +170749468829,219,0 +170749468877,222,0 +170749468925,222,0 +170749468975,222,0 +170749469024,223,0 +170749469074,225,0 +170749469123,226,0 +170749469171,226,0 +170749469219,226,0 +170749469267,226,0 +170749469315,226,0 +170749469363,227,0 +170749469412,228,0 +170749469462,220,0 +170749469510,216,0 +170749469558,216,0 +170749469607,216,0 +170749469655,217,0 +170749469703,218,0 +170749469753,219,0 +170749469801,220,0 +170749469850,221,0 +170749469898,222,0 +170749469946,224,0 +170749469996,223,0 +170749470045,225,0 +170749470093,225,0 +170749470141,226,0 +170749470190,228,0 +170749470240,227,0 +170749470288,228,0 +170749470336,227,0 +170749470385,224,0 +170749470433,216,0 +170749470481,217,0 +170749470529,217,0 +170749470579,217,0 +170749470628,219,0 +170749470678,220,0 +170749470727,220,0 +170749470775,220,0 +170749470823,223,0 +170749470871,222,0 +170749470921,223,0 +170749470968,224,0 +170749471016,225,0 +170749471064,225,0 +170749471114,225,0 +170749471162,226,0 +170749471211,227,0 +170749471261,227,0 +170749471310,228,0 +170749471358,216,0 +170749471406,217,0 +170749471456,218,0 +170749471504,218,0 +170749471552,221,0 +170749471600,222,0 +170749471649,223,0 +170749471697,223,0 +170749471747,224,0 +170749471795,224,0 +170749471843,227,0 +170749471891,227,0 +170749471940,228,0 +170749471990,229,0 +170749472037,228,0 +170749472085,229,0 +170749472133,228,0 +170749472183,224,0 +170749472231,227,0 +170749472280,218,0 +170749472330,218,0 +170749472378,220,0 +170749472426,220,0 +170749472475,223,0 +170749472523,221,0 +170749472573,219,0 +170749472620,225,0 +170749472668,225,0 +170749472718,225,0 +170749472766,227,0 +170749472814,225,0 +170749472861,227,0 +170749472909,229,0 +170749472959,225,0 +170749473007,229,0 +170749473054,229,0 +170749473102,229,0 +170749473150,227,0 +170749473198,220,0 +170749473246,219,0 +170749473294,221,0 +170749473344,221,0 +170749473391,222,0 +170749473439,224,0 +170749473487,225,0 +170749473535,225,0 +170749473583,226,0 +170749473631,226,0 +170749473679,226,0 +170749473728,228,0 +170749473776,228,0 +170749473824,227,0 +170749473872,229,0 +170749473920,228,0 +170749473968,228,0 +170749474018,227,0 +170749474066,227,0 +170749474114,218,0 +170749474163,219,0 +170749474213,219,0 +170749474261,221,0 +170749474310,222,0 +170749474360,224,0 +170749474408,222,0 +170749474457,226,0 +170749474505,226,0 +170749474553,227,0 +170749474601,227,0 +170749474649,230,0 +170749474697,227,0 +170749474745,229,0 +170749474794,230,0 +170749474842,231,0 +170749474890,229,0 +170749474939,229,0 +170749474989,229,0 +170749475037,230,0 +170749475085,219,0 +170749475132,218,0 +170749475182,220,0 +170749475230,221,0 +170749475278,223,0 +170749475325,222,0 +170749475373,223,0 +170749475423,225,0 +170749475471,225,0 +170749475519,225,0 +170749475568,227,0 +170749475616,228,0 +170749475664,228,0 +170749475712,229,0 +170749475760,229,0 +170749475807,229,0 +170749475857,228,0 +170749475906,228,0 +170749475954,227,0 +170749476004,218,0 +170749476053,218,0 +170749476103,220,0 +170749476152,221,0 +170749476200,222,0 +170749476250,223,0 +170749476298,224,0 +170749476347,226,0 +170749476395,226,0 +170749476444,229,0 +170749476492,230,0 +170749476540,230,0 +170749476590,229,0 +170749476638,231,0 +170749476687,229,0 +170749476737,230,0 +170749476785,229,0 +170749476833,227,0 +170749476881,227,0 +170749476929,218,0 +170749476978,218,0 +170749477026,220,0 +170749477074,220,0 +170749477122,222,0 +170749477172,223,0 +170749477221,226,0 +170749477269,227,0 +170749477317,227,0 +170749477365,227,0 +170749477415,228,0 +170749477463,230,0 +170749477511,230,0 +170749477558,228,0 +170749477606,230,0 +170749477654,230,0 +170749477702,228,0 +170749477750,221,0 +170749477798,227,0 +170749477846,218,0 +170749477894,216,0 +170749477942,218,0 +170749477989,218,0 +170749478037,219,0 +170749478085,221,0 +170749478133,223,0 +170749478181,222,0 +170749478229,225,0 +170749478277,226,0 +170749478324,226,0 +170749478372,226,0 +170749478420,227,0 +170749478468,227,0 +170749478516,229,0 +170749478564,229,0 +170749478612,226,0 +170749478660,231,0 +170749478708,240,0 +170749478756,227,0 +170749478803,217,0 +170749478851,217,0 +170749478901,218,0 +170749478949,220,0 +170749478998,221,0 +170749479046,222,0 +170749479094,222,0 +170749479144,223,0 +170749479192,225,0 +170749479240,226,0 +170749479288,230,0 +170749479336,226,0 +170749479384,229,0 +170749479431,229,0 +170749479479,229,0 +170749479529,229,0 +170749479578,226,0 +170749479626,227,0 +170749479674,226,0 +170749479722,217,0 +170749479772,216,0 +170749479821,216,0 +170749479871,218,0 +170749479919,219,0 +170749479967,220,0 +170749480015,221,0 +170749480064,222,0 +170749480112,223,0 +170749480160,224,0 +170749480208,224,0 +170749480256,225,0 +170749480303,226,0 +170749480351,228,0 +170749480401,228,0 +170749480450,229,0 +170749480500,227,0 +170749480549,227,0 +170749480597,227,0 +170749480645,217,0 +170749480695,216,0 +170749480743,217,0 +170749480791,217,0 +170749480839,218,0 +170749480887,219,0 +170749480935,220,0 +170749480984,221,0 +170749481032,222,0 +170749481080,223,0 +170749481128,224,0 +170749481176,226,0 +170749481224,226,0 +170749481272,227,0 +170749481321,228,0 +170749481369,229,0 +170749481417,227,0 +170749481465,227,0 +170749481513,228,0 +170749481563,218,0 +170749481612,216,0 +170749481660,216,0 +170749481708,217,0 +170749481756,218,0 +170749481804,219,0 +170749481851,220,0 +170749481899,221,0 +170749481947,222,0 +170749481995,223,0 +170749482045,222,0 +170749482094,226,0 +170749482142,226,0 +170749482190,229,0 +170749482238,229,0 +170749482286,229,0 +170749482334,229,0 +170749482383,227,0 +170749482431,228,0 +170749482481,218,0 +170749482529,216,0 +170749482578,217,0 +170749482628,217,0 +170749482676,219,0 +170749482724,219,0 +170749482771,221,0 +170749482821,221,0 +170749482870,221,0 +170749482920,223,0 +170749482968,224,0 +170749483017,225,0 +170749483065,225,0 +170749483115,226,0 +170749483163,227,0 +170749483211,227,0 +170749483259,227,0 +170749483307,227,0 +170749483355,228,0 +170749483403,217,0 +170749483451,215,0 +170749483499,216,0 +170749483548,216,0 +170749483598,217,0 +170749483646,218,0 +170749483695,218,0 +170749483743,218,0 +170749483791,220,0 +170749483839,221,0 +170749483888,222,0 +170749483936,223,0 +170749483986,226,0 +170749484034,228,0 +170749484083,227,0 +170749484131,227,0 +170749484179,228,0 +170749484227,228,0 +170749484277,228,0 +170749484325,226,0 +170749484372,216,0 +170749484420,216,0 +170749484468,216,0 +170749484516,216,0 +170749484564,217,0 +170749484612,217,0 +170749484660,219,0 +170749484708,219,0 +170749484758,221,0 +170749484806,221,0 +170749484854,222,0 +170749484901,223,0 +170749484949,223,0 +170749484997,224,0 +170749485045,227,0 +170749485095,228,0 +170749485143,225,0 +170749485192,226,0 +170749485242,229,0 +170749485291,218,0 +170749485341,215,0 +170749485389,216,0 +170749485438,217,0 +170749485486,217,0 +170749485536,217,0 +170749485583,218,0 +170749485631,219,0 +170749485679,219,0 +170749485727,221,0 +170749485775,223,0 +170749485823,223,0 +170749485871,224,0 +170749485919,224,0 +170749485967,226,0 +170749486015,226,0 +170749486063,228,0 +170749486111,227,0 +170749486159,227,0 +170749486208,217,0 +170749486256,216,0 +170749486306,216,0 +170749486354,215,0 +170749486402,218,0 +170749486451,218,0 +170749486501,219,0 +170749486550,220,0 +170749486600,221,0 +170749486648,223,0 +170749486695,223,0 +170749486745,225,0 +170749486793,226,0 +170749486841,226,0 +170749486889,227,0 +170749486937,227,0 +170749486985,228,0 +170749487032,228,0 +170749487080,227,0 +170749487130,218,0 +170749487178,216,0 +170749487226,216,0 +170749487273,217,0 +170749487321,220,0 +170749487369,220,0 +170749487417,220,0 +170749487467,222,0 +170749487514,223,0 +170749487564,222,0 +170749487612,222,0 +170749487660,225,0 +170749487707,226,0 +170749487757,227,0 +170749487805,227,0 +170749487853,227,0 +170749487900,227,0 +170749487950,227,0 +170749487998,228,0 +170749488048,219,0 +170749488095,216,0 +170749488143,217,0 +170749488191,218,0 +170749488239,219,0 +170749488289,221,0 +170749488338,222,0 +170749488386,223,0 +170749488434,223,0 +170749488484,225,0 +170749488533,226,0 +170749488583,227,0 +170749488632,227,0 +170749488680,229,0 +170749488728,228,0 +170749488778,228,0 +170749488826,227,0 +170749488874,228,0 +170749488923,228,0 +170749488971,229,0 +170749489019,220,0 +170749489069,223,0 +170749489117,222,0 +170749489165,222,0 +170749489212,224,0 +170749489262,224,0 +170749489310,225,0 +170749489358,227,0 +170749489407,228,0 +170749489457,228,0 +170749489505,227,0 +170749489553,227,0 +170749489601,227,0 +170749489650,228,0 +170749489700,231,0 +170749489749,229,0 +170749489799,226,0 +170749489847,229,0 +170749489896,226,0 +170749489946,220,0 +170749489994,222,0 +170749490042,223,0 +170749490091,224,0 +170749490141,224,0 +170749490189,225,0 +170749490237,225,0 +170749490286,226,0 +170749490334,225,0 +170749490383,226,0 +170749490431,228,0 +170749490479,229,0 +170749490527,229,0 +170749490577,228,0 +170749490625,230,0 +170749490673,228,0 +170749490723,228,0 +170749490771,228,0 +170749490819,227,0 +170749490867,217,0 +170749490915,217,0 +170749490964,218,0 +170749491014,220,0 +170749491062,220,0 +170749491111,222,0 +170749491161,223,0 +170749491210,223,0 +170749491258,223,0 +170749491308,225,0 +170749491356,225,0 +170749491405,227,0 +170749491453,227,0 +170749491501,227,0 +170749491549,227,0 +170749491599,227,0 +170749491647,227,0 +170749491696,228,0 +170749491746,227,0 +170749491795,217,0 +170749491845,216,0 +170749491892,216,0 +170749491940,216,0 +170749491990,217,0 +170749492040,220,0 +170749492089,220,0 +170749492139,221,0 +170749492187,222,0 +170749492234,223,0 +170749492282,225,0 +170749492330,224,0 +170749492378,226,0 +170749492428,226,0 +170749492476,228,0 +170749492524,229,0 +170749492573,227,0 +170749492621,227,0 +170749492669,227,0 +170749492719,218,0 +170749492766,216,0 +170749492816,216,0 +170749492864,217,0 +170749492912,216,0 +170749492961,218,0 +170749493011,219,0 +170749493060,220,0 +170749493110,221,0 +170749493159,222,0 +170749493207,224,0 +170749493255,226,0 +170749493305,226,0 +170749493353,231,0 +170749493402,227,0 +170749493452,228,0 +170749493501,228,0 +170749493549,227,0 +170749493597,229,0 +170749493647,217,0 +170749493696,216,0 +170749493744,216,0 +170749493794,219,0 +170749493843,217,0 +170749493891,218,0 +170749493939,219,0 +170749493989,220,0 +170749494038,221,0 +170749494088,222,0 +170749494137,225,0 +170749494185,225,0 +170749494235,225,0 +170749494284,226,0 +170749494332,227,0 +170749494380,228,0 +170749494430,227,0 +170749494478,228,0 +170749494527,227,0 +170749494577,218,0 +170749494625,216,0 +170749494673,216,0 +170749494722,217,0 +170749494770,217,0 +170749494818,218,0 +170749494868,220,0 +170749494918,219,0 +170749494967,220,0 +170749495015,221,0 +170749495063,222,0 +170749495111,224,0 +170749495159,225,0 +170749495208,226,0 +170749495258,225,0 +170749495306,226,0 +170749495355,227,0 +170749495403,227,0 +170749495451,228,0 +170749495501,218,0 +170749495549,215,0 +170749495598,216,0 +170749495646,216,0 +170749495694,217,0 +170749495742,217,0 +170749495790,217,0 +170749495837,218,0 +170749495887,219,0 +170749495935,219,0 +170749495983,221,0 +170749496031,221,0 +170749496078,223,0 +170749496126,225,0 +170749496176,223,0 +170749496224,226,0 +170749496272,226,0 +170749496320,227,0 +170749496367,227,0 +170749496415,217,0 +170749496463,215,0 +170749496511,215,0 +170749496559,216,0 +170749496608,216,0 +170749496656,217,0 +170749496706,217,0 +170749496753,217,0 +170749496801,217,0 +170749496849,217,0 +170749496897,218,0 +170749496945,219,0 +170749496993,221,0 +170749497041,222,0 +170749497090,222,0 +170749497138,223,0 +170749497186,223,0 +170749497235,224,0 +170749497283,227,0 +170749497331,227,0 +170749497379,216,0 +170749497427,217,0 +170749497475,218,0 +170749497523,218,0 +170749497571,219,0 +170749497618,220,0 +170749497666,219,0 +170749497714,220,0 +170749497762,222,0 +170749497812,225,0 +170749497860,224,0 +170749497908,226,0 +170749497957,226,0 +170749498007,228,0 +170749498055,226,0 +170749498102,227,0 +170749498152,225,0 +170749498200,228,0 +170749498248,228,0 +170749498297,219,0 +170749498347,218,0 +170749498396,219,0 +170749498445,220,0 +170749498493,220,0 +170749498540,223,0 +170749498590,224,0 +170749498638,222,0 +170749498687,225,0 +170749498735,223,0 +170749498783,226,0 +170749498831,227,0 +170749498881,228,0 +170749498928,229,0 +170749498976,230,0 +170749499026,230,0 +170749499076,232,0 +170749499125,230,0 +170749499175,227,0 +170749499223,219,0 +170749499271,218,0 +170749499319,219,0 +170749499367,221,0 +170749499415,222,0 +170749499464,222,0 +170749499512,222,0 +170749499562,227,0 +170749499609,227,0 +170749499657,227,0 +170749499705,227,0 +170749499753,229,0 +170749499801,227,0 +170749499849,228,0 +170749499898,230,0 +170749499948,230,0 +170749499996,230,0 +170749500046,230,0 +170749500095,227,0 +170749500143,218,0 +170749500191,219,0 +170749500239,219,0 +170749500288,220,0 +170749500336,222,0 +170749500386,222,0 +170749500435,222,0 +170749500485,225,0 +170749500533,225,0 +170749500581,226,0 +170749500629,225,0 +170749500677,227,0 +170749500725,227,0 +170749500773,227,0 +170749500822,225,0 +170749500870,229,0 +170749500920,229,0 +170749500968,229,0 +170749501016,228,0 +170749501065,217,0 +170749501113,217,0 +170749501163,219,0 +170749501211,222,0 +170749501259,221,0 +170749501307,222,0 +170749501354,225,0 +170749501402,223,0 +170749501452,223,0 +170749501502,224,0 +170749501550,225,0 +170749501598,224,0 +170749501646,225,0 +170749501694,227,0 +170749501743,227,0 +170749501793,227,0 +170749501840,228,0 +170749501888,230,0 +170749501936,224,0 +170749501984,228,0 +170749502034,219,0 +170749502082,220,0 +170749502131,221,0 +170749502179,223,0 +170749502229,223,0 +170749502278,225,0 +170749502328,224,0 +170749502376,225,0 +170749502425,227,0 +170749502473,228,0 +170749502521,227,0 +170749502571,229,0 +170749502619,229,0 +170749502668,227,0 +170749502716,228,0 +170749502764,228,0 +170749502814,228,0 +170749502862,227,0 +170749502911,223,0 +170749502959,220,0 +170749503007,220,0 +170749503057,221,0 +170749503106,224,0 +170749503156,224,0 +170749503204,225,0 +170749503252,226,0 +170749503299,225,0 +170749503349,227,0 +170749503397,227,0 +170749503445,228,0 +170749503493,227,0 +170749503541,226,0 +170749503589,230,0 +170749503636,228,0 +170749503684,228,0 +170749503732,227,0 +170749503780,228,0 +170749503828,226,0 +170749503876,218,0 +170749503924,219,0 +170749503973,220,0 +170749504023,220,0 +170749504071,222,0 +170749504119,222,0 +170749504166,223,0 +170749504214,226,0 +170749504262,226,0 +170749504310,227,0 +170749504358,227,0 +170749504406,229,0 +170749504454,228,0 +170749504503,230,0 +170749504551,229,0 +170749504601,227,0 +170749504650,229,0 +170749504698,228,0 +170749504746,227,0 +170749504794,217,0 +170749504842,217,0 +170749504892,218,0 +170749504940,219,0 +170749504988,219,0 +170749505035,221,0 +170749505083,222,0 +170749505131,222,0 +170749505181,223,0 +170749505229,225,0 +170749505278,225,0 +170749505326,225,0 +170749505374,226,0 +170749505424,227,0 +170749505472,227,0 +170749505520,228,0 +170749505568,229,0 +170749505616,228,0 +170749505664,228,0 +170749505712,217,0 +170749505761,216,0 +170749505811,217,0 +170749505860,218,0 +170749505910,220,0 +170749505958,221,0 +170749506006,221,0 +170749506054,224,0 +170749506102,223,0 +170749506150,223,0 +170749506197,226,0 +170749506245,226,0 +170749506293,226,0 +170749506343,227,0 +170749506392,228,0 +170749506440,228,0 +170749506490,228,0 +170749506540,228,0 +170749506587,226,0 +170749506637,219,0 +170749506685,216,0 +170749506734,218,0 +170749506782,219,0 +170749506830,220,0 +170749506878,219,0 +170749506928,222,0 +170749506976,222,0 +170749507025,222,0 +170749507073,223,0 +170749507123,224,0 +170749507171,225,0 +170749507220,226,0 +170749507268,227,0 +170749507316,227,0 +170749507366,228,0 +170749507415,229,0 +170749507463,227,0 +170749507513,228,0 +170749507561,218,0 +170749507609,216,0 +170749507656,216,0 +170749507704,217,0 +170749507752,219,0 +170749507802,219,0 +170749507850,220,0 +170749507898,221,0 +170749507946,221,0 +170749507994,223,0 +170749508043,224,0 +170749508093,226,0 +170749508141,225,0 +170749508188,229,0 +170749508238,226,0 +170749508286,227,0 +170749508335,226,0 +170749508383,229,0 +170749508431,227,0 +170749508479,223,0 +170749508527,216,0 +170749508575,216,0 +170749508624,216,0 +170749508672,217,0 +170749508722,217,0 +170749508771,217,0 +170749508819,218,0 +170749508867,219,0 +170749508915,220,0 +170749508963,221,0 +170749509013,222,0 +170749509061,225,0 +170749509109,225,0 +170749509157,225,0 +170749509205,226,0 +170749509254,226,0 +170749509302,228,0 +170749509351,229,0 +170749509399,226,0 +170749509449,216,0 +170749509498,215,0 +170749509548,216,0 +170749509596,216,0 +170749509644,216,0 +170749509693,217,0 +170749509741,217,0 +170749509791,217,0 +170749509839,221,0 +170749509888,220,0 +170749509938,222,0 +170749509986,223,0 +170749510035,224,0 +170749510085,226,0 +170749510134,226,0 +170749510182,227,0 +170749510230,226,0 +170749510280,228,0 +170749510328,222,0 +170749510376,216,0 +170749510425,216,0 +170749510473,216,0 +170749510523,218,0 +170749510571,218,0 +170749510619,220,0 +170749510666,221,0 +170749510716,222,0 +170749510764,223,0 +170749510813,224,0 +170749510863,227,0 +170749510911,225,0 +170749510959,226,0 +170749511007,226,0 +170749511055,228,0 +170749511103,228,0 +170749511150,227,0 +170749511200,227,0 +170749511248,227,0 +170749511297,217,0 +170749511347,216,0 +170749511395,217,0 +170749511443,218,0 +170749511492,219,0 +170749511542,221,0 +170749511592,222,0 +170749511641,224,0 +170749511691,224,0 +170749511739,225,0 +170749511786,225,0 +170749511834,227,0 +170749511884,226,0 +170749511932,227,0 +170749511979,229,0 +170749512027,227,0 +170749512075,227,0 +170749512123,229,0 +170749512171,227,0 +170749512220,216,0 +170749512268,216,0 +170749512316,217,0 +170749512364,218,0 +170749512412,219,0 +170749512460,220,0 +170749512509,221,0 +170749512557,222,0 +170749512605,224,0 +170749512653,225,0 +170749512703,225,0 +170749512752,226,0 +170749512800,228,0 +170749512850,231,0 +170749512898,227,0 +170749512947,227,0 +170749512997,227,0 +170749513045,227,0 +170749513093,227,0 +170749513140,217,0 +170749513190,216,0 +170749513238,216,0 +170749513286,216,0 +170749513334,217,0 +170749513383,217,0 +170749513433,218,0 +170749513482,219,0 +170749513532,220,0 +170749513580,221,0 +170749513628,222,0 +170749513676,224,0 +170749513725,226,0 +170749513773,226,0 +170749513821,225,0 +170749513869,226,0 +170749513917,226,0 +170749513967,227,0 +170749514015,227,0 +170749514062,217,0 +170749514110,216,0 +170749514158,216,0 +170749514206,217,0 +170749514256,217,0 +170749514304,217,0 +170749514352,218,0 +170749514400,219,0 +170749514448,220,0 +170749514496,221,0 +170749514543,222,0 +170749514591,223,0 +170749514641,226,0 +170749514689,226,0 +170749514737,225,0 +170749514785,225,0 +170749514834,226,0 +170749514884,226,0 +170749514932,229,0 +170749514979,218,0 +170749515027,216,0 +170749515075,216,0 +170749515125,217,0 +170749515173,217,0 +170749515222,219,0 +170749515270,219,0 +170749515320,220,0 +170749515369,221,0 +170749515417,222,0 +170749515465,224,0 +170749515513,226,0 +170749515561,226,0 +170749515609,227,0 +170749515657,227,0 +170749515704,228,0 +170749515752,230,0 +170749515800,228,0 +170749515850,226,0 +170749515898,219,0 +170749515946,215,0 +170749515994,216,0 +170749516042,216,0 +170749516089,218,0 +170749516137,218,0 +170749516185,219,0 +170749516233,220,0 +170749516281,222,0 +170749516329,221,0 +170749516377,223,0 +170749516425,224,0 +170749516474,225,0 +170749516524,226,0 +170749516572,227,0 +170749516621,227,0 +170749516669,228,0 +170749516717,227,0 +170749516765,228,0 +170749516813,226,0 +170749516861,216,0 +170749516909,216,0 +170749516958,217,0 +170749517006,218,0 +170749517056,221,0 +170749517104,220,0 +170749517153,222,0 +170749517201,222,0 +170749517251,223,0 +170749517299,229,0 +170749517347,226,0 +170749517395,226,0 +170749517444,224,0 +170749517494,227,0 +170749517542,227,0 +170749517589,228,0 +170749517637,227,0 +170749517687,227,0 +170749517735,227,0 +170749517784,216,0 +170749517832,217,0 +170749517880,218,0 +170749517930,219,0 +170749517979,220,0 +170749518027,222,0 +170749518075,222,0 +170749518125,223,0 +170749518173,224,0 +170749518221,227,0 +170749518270,225,0 +170749518318,234,0 +170749518368,228,0 +170749518416,227,0 +170749518465,230,0 +170749518515,232,0 +170749518564,228,0 +170749518612,228,0 +170749518662,227,0 +170749518711,218,0 +170749518759,218,0 +170749518807,219,0 +170749518855,220,0 +170749518904,219,0 +170749518954,221,0 +170749519002,223,0 +170749519052,225,0 +170749519099,225,0 +170749519149,226,0 +170749519199,227,0 +170749519246,226,0 +170749519294,229,0 +170749519342,228,0 +170749519390,228,0 +170749519440,229,0 +170749519489,230,0 +170749519539,227,0 +170749519588,227,0 +170749519636,217,0 +170749519684,218,0 +170749519732,218,0 +170749519780,219,0 +170749519830,220,0 +170749519878,221,0 +170749519927,221,0 +170749519975,222,0 +170749520023,224,0 +170749520073,226,0 +170749520121,226,0 +170749520169,229,0 +170749520218,227,0 +170749520266,231,0 +170749520316,228,0 +170749520364,229,0 +170749520412,228,0 +170749520461,228,0 +170749520509,227,0 +170749520557,219,0 +170749520605,219,0 +170749520653,222,0 +170749520701,223,0 +170749520749,223,0 +170749520798,223,0 +170749520846,226,0 +170749520896,226,0 +170749520944,227,0 +170749520992,228,0 +170749521040,231,0 +170749521089,231,0 +170749521137,228,0 +170749521185,228,0 +170749521233,229,0 +170749521283,229,0 +170749521331,229,0 +170749521379,228,0 +170749521428,227,0 +170749521476,218,0 +170749521524,218,0 +170749521572,219,0 +170749521620,220,0 +170749521670,221,0 +170749521718,223,0 +170749521767,225,0 +170749521817,225,0 +170749521866,224,0 +170749521916,226,0 +170749521965,230,0 +170749522015,231,0 +170749522063,228,0 +170749522112,230,0 +170749522160,230,0 +170749522208,230,0 +170749522256,230,0 +170749522304,228,0 +170749522352,229,0 +170749522402,218,0 +170749522451,217,0 +170749522499,217,0 +170749522547,219,0 +170749522595,219,0 +170749522643,221,0 +170749522691,222,0 +170749522740,223,0 +170749522788,225,0 +170749522836,226,0 +170749522886,225,0 +170749522935,228,0 +170749522985,227,0 +170749523034,231,0 +170749523082,227,0 +170749523132,228,0 +170749523180,231,0 +170749523228,228,0 +170749523277,227,0 +170749523325,217,0 +170749523375,216,0 +170749523424,216,0 +170749523474,217,0 +170749523522,217,0 +170749523570,218,0 +170749523618,219,0 +170749523666,219,0 +170749523713,221,0 +170749523761,222,0 +170749523809,223,0 +170749523857,225,0 +170749523907,226,0 +170749523956,227,0 +170749524004,230,0 +170749524052,228,0 +170749524102,227,0 +170749524150,227,0 +170749524197,227,0 +170749524247,1010100,0 +170749524295,215,0 +170749524343,215,0 +170749524391,216,0 +170749524439,216,0 +170749524487,216,0 +170749524536,216,0 +170749524584,218,0 +170749524632,218,0 +170749524682,219,0 +170749524730,230,0 +170749524779,222,0 +170749524827,223,0 +170749524877,230,0 +170749524925,224,0 +170749524974,227,0 +170749525022,227,0 +170749525072,226,0 +170749525121,226,0 +170749525169,217,0 +170749525217,216,0 +170749525266,216,0 +170749525314,216,0 +170749525364,216,0 +170749525412,217,0 +170749525460,218,0 +170749525508,219,0 +170749525557,219,0 +170749525605,221,0 +170749525655,222,0 +170749525703,225,0 +170749525751,226,0 +170749525799,227,0 +170749525847,229,0 +170749525896,228,0 +170749525946,226,0 +170749525994,227,0 +170749526043,228,0 +170749526093,217,0 +170749526141,216,0 +170749526188,216,0 +170749526238,217,0 +170749526286,218,0 +170749526334,219,0 +170749526382,220,0 +170749526431,220,0 +170749526481,221,0 +170749526529,222,0 +170749526578,223,0 +170749526626,224,0 +170749526674,225,0 +170749526722,226,0 +170749526770,227,0 +170749526820,226,0 +170749526868,227,0 +170749526916,227,0 +170749526963,228,0 +170749527013,217,0 +170749527061,216,0 +170749527109,218,0 +170749527158,217,0 +170749527206,219,0 +170749527254,221,0 +170749527302,221,0 +170749527350,223,0 +170749527398,222,0 +170749527446,224,0 +170749527494,225,0 +170749527542,225,0 +170749527591,227,0 +170749527639,227,0 +170749527689,227,0 +170749527738,227,0 +170749527786,227,0 +170749527836,229,0 +170749527885,229,0 +170749527935,227,0 +170749527984,218,0 +170749528034,219,0 +170749528083,219,0 +170749528133,220,0 +170749528183,222,0 +170749528232,222,0 +170749528280,224,0 +170749528328,224,0 +170749528377,225,0 +170749528425,225,0 +170749528473,227,0 +170749528521,228,0 +170749528571,228,0 +170749528620,231,0 +170749528668,227,0 +170749528718,228,0 +170749528766,227,0 +170749528815,228,0 +170749528865,226,0 +170749528913,218,0 +170749528961,219,0 +170749529009,221,0 +170749529058,221,0 +170749529108,222,0 +170749529157,224,0 +170749529205,224,0 +170749529253,224,0 +170749529301,224,0 +170749529349,224,0 +170749529399,227,0 +170749529448,226,0 +170749529496,227,0 +170749529546,228,0 +170749529594,231,0 +170749529643,227,0 +170749529691,228,0 +170749529741,228,0 +170749529789,226,0 +170749529838,217,0 +170749529888,218,0 +170749529937,218,0 +170749529985,219,0 +170749530033,223,0 +170749530081,220,0 +170749530130,222,0 +170749530178,222,0 +170749530228,225,0 +170749530276,227,0 +170749530325,227,0 +170749530375,226,0 +170749530423,230,0 +170749530471,227,0 +170749530519,228,0 +170749530567,228,0 +170749530615,229,0 +170749530663,227,0 +170749530711,226,0 +170749530759,216,0 +170749530808,217,0 +170749530856,218,0 +170749530904,219,0 +170749530954,220,0 +170749531002,221,0 +170749531050,222,0 +170749531099,223,0 +170749531149,224,0 +170749531198,227,0 +170749531246,225,0 +170749531294,227,0 +170749531344,227,0 +170749531392,227,0 +170749531441,227,0 +170749531491,227,0 +170749531540,227,0 +170749531588,227,0 +170749531638,226,0 +170749531686,216,0 +170749531734,217,0 +170749531782,218,0 +170749531830,219,0 +170749531877,222,0 +170749531926,222,0 +170749531973,222,0 +170749532021,222,0 +170749532071,224,0 +170749532120,225,0 +170749532168,226,0 +170749532218,228,0 +170749532266,227,0 +170749532315,227,0 +170749532363,227,0 +170749532413,229,0 +170749532461,228,0 +170749532510,228,0 +170749532560,227,0 +170749532608,218,0 +170749532656,219,0 +170749532704,221,0 +170749532753,221,0 +170749532801,222,0 +170749532849,223,0 +170749532897,224,0 +170749532947,226,0 +170749532995,225,0 +170749533043,225,0 +170749533091,226,0 +170749533139,229,0 +170749533188,228,0 +170749533238,227,0 +170749533287,228,0 +170749533337,227,0 +170749533386,227,0 +170749533434,227,0 +170749533482,226,0 +170749533530,219,0 +170749533578,219,0 +170749533626,220,0 +170749533676,221,0 +170749533725,222,0 +170749533773,224,0 +170749533823,225,0 +170749533872,223,0 +170749533922,225,0 +170749533970,227,0 +170749534017,226,0 +170749534066,228,0 +170749534113,229,0 +170749534163,229,0 +170749534211,229,0 +170749534259,226,0 +170749534307,229,0 +170749534355,228,0 +170749534403,226,0 +170749534451,217,0 +170749534498,218,0 +170749534546,219,0 +170749534594,221,0 +170749534642,221,0 +170749534692,221,0 +170749534739,221,0 +170749534787,223,0 +170749534837,223,0 +170749534885,224,0 +170749534934,224,0 +170749534982,226,0 +170749535030,229,0 +170749535079,227,0 +170749535127,227,0 +170749535175,228,0 +170749535223,227,0 +170749535271,228,0 +170749535319,227,0 +170749535367,218,0 +170749535415,217,0 +170749535462,218,0 +170749535510,219,0 +170749535558,221,0 +170749535606,221,0 +170749535654,221,0 +170749535702,222,0 +170749535750,223,0 +170749535798,224,0 +170749535847,223,0 +170749535897,226,0 +170749535945,227,0 +170749535992,227,0 +170749536040,227,0 +170749536088,227,0 +170749536136,228,0 +170749536184,231,0 +170749536232,227,0 +170749536280,217,0 +170749536328,216,0 +170749536376,216,0 +170749536424,217,0 +170749536471,218,0 +170749536521,219,0 +170749536570,221,0 +170749536618,220,0 +170749536666,222,0 +170749536714,223,0 +170749536762,224,0 +170749536810,223,0 +170749536858,226,0 +170749536906,225,0 +170749536953,229,0 +170749537001,227,0 +170749537049,228,0 +170749537097,226,0 +170749537145,226,0 +170749537193,226,0 +170749537242,216,0 +170749537290,215,0 +170749537338,215,0 +170749537386,216,0 +170749537434,216,0 +170749537482,217,0 +170749537530,217,0 +170749537579,218,0 +170749537627,219,0 +170749537675,221,0 +170749537723,222,0 +170749537772,222,0 +170749537820,223,0 +170749537868,224,0 +170749537916,224,0 +170749537964,226,0 +170749538012,225,0 +170749538060,227,0 +170749538107,227,0 +170749538155,216,0 +170749538203,215,0 +170749538251,215,0 +170749538299,216,0 +170749538347,217,0 +170749538395,217,0 +170749538443,217,0 +170749538491,217,0 +170749538539,218,0 +170749538586,219,0 +170749538634,221,0 +170749538682,222,0 +170749538730,223,0 +170749538778,228,0 +170749538826,226,0 +170749538874,227,0 +170749538922,226,0 +170749538970,225,0 +170749539017,227,0 +170749539066,218,0 +170749539114,216,0 +170749539162,216,0 +170749539210,216,0 +170749539259,217,0 +170749539309,218,0 +170749539357,218,0 +170749539405,222,0 +170749539453,220,0 +170749539501,223,0 +170749539549,224,0 +170749539598,225,0 +170749539648,226,0 +170749539696,226,0 +170749539744,228,0 +170749539792,228,0 +170749539840,230,0 +170749539887,229,0 +170749539935,227,0 +170749539985,217,0 +170749540034,216,0 +170749540082,217,0 +170749540130,217,0 +170749540178,218,0 +170749540226,219,0 +170749540274,220,0 +170749540322,220,0 +170749540371,221,0 +170749540419,224,0 +170749540467,223,0 +170749540515,225,0 +170749540563,227,0 +170749540611,225,0 +170749540660,227,0 +170749540708,227,0 +170749540756,228,0 +170749540804,227,0 +170749540854,228,0 +170749540902,218,0 +170749540951,216,0 +170749541001,216,0 +170749541050,218,0 +170749541100,219,0 +170749541148,219,0 +170749541197,220,0 +170749541245,221,0 +170749541295,222,0 +170749541343,224,0 +170749541391,224,0 +170749541439,228,0 +170749541487,224,0 +170749541536,228,0 +170749541586,225,0 +170749541635,228,0 +170749541683,228,0 +170749541733,229,0 +170749541782,228,0 +170749541830,218,0 +170749541880,216,0 +170749541928,217,0 +170749541977,218,0 +170749542025,219,0 +170749542075,220,0 +170749542124,221,0 +170749542172,223,0 +170749542220,225,0 +170749542270,224,0 +170749542318,227,0 +170749542367,227,0 +170749542417,227,0 +170749542466,229,0 +170749542516,227,0 +170749542565,228,0 +170749542615,227,0 +170749542663,227,0 +170749542712,229,0 +170749542760,217,0 +170749542808,216,0 +170749542858,216,0 +170749542907,217,0 +170749542957,217,0 +170749543005,218,0 +170749543053,219,0 +170749543102,222,0 +170749543150,222,0 +170749543198,224,0 +170749543248,224,0 +170749543296,227,0 +170749543344,227,0 +170749543392,227,0 +170749543440,227,0 +170749543488,229,0 +170749543536,228,0 +170749543585,230,0 +170749543635,228,0 +170749543683,217,0 +170749543731,216,0 +170749543780,216,0 +170749543830,217,0 +170749543879,217,0 +170749543927,217,0 +170749543975,220,0 +170749544023,220,0 +170749544071,223,0 +170749544119,223,0 +170749544167,223,0 +170749544215,224,0 +170749544263,226,0 +170749544311,227,0 +170749544360,227,0 +170749544410,226,0 +170749544458,230,0 +170749544506,229,0 +170749544554,228,0 +170749544602,220,0 +170749544650,215,0 +170749544699,216,0 +170749544747,216,0 +170749544795,217,0 +170749544843,217,0 +170749544892,219,0 +170749544942,219,0 +170749544990,221,0 +170749545040,221,0 +170749545089,221,0 +170749545139,222,0 +170749545188,223,0 +170749545236,225,0 +170749545285,225,0 +170749545333,226,0 +170749545381,226,0 +170749545429,226,0 +170749545479,227,0 +170749545527,217,0 +170749545576,216,0 +170749545624,217,0 +170749545672,219,0 +170749545720,219,0 +170749545770,220,0 +170749545818,221,0 +170749545867,220,0 +170749545917,221,0 +170749545965,222,0 +170749546014,224,0 +170749546062,224,0 +170749546112,226,0 +170749546160,227,0 +170749546209,231,0 +170749546257,229,0 +170749546305,227,0 +170749546353,228,0 +170749546401,228,0 +170749546451,224,0 +170749546499,220,0 +170749546547,219,0 +170749546596,221,0 +170749546644,221,0 +170749546692,222,0 +170749546740,222,0 +170749546788,223,0 +170749546838,224,0 +170749546887,224,0 +170749546935,226,0 +170749546985,226,0 +170749547034,224,0 +170749547082,221,0 +170749547130,229,0 +170749547178,228,0 +170749547226,228,0 +170749547276,229,0 +170749547324,228,0 +170749547372,225,0 +170749547420,218,0 +170749547469,222,0 +170749547519,221,0 +170749547567,223,0 +170749547615,225,0 +170749547663,225,0 +170749547711,225,0 +170749547758,228,0 +170749547806,227,0 +170749547854,227,0 +170749547902,228,0 +170749547950,227,0 +170749547998,228,0 +170749548048,227,0 +170749548097,228,0 +170749548145,228,0 +170749548193,229,0 +170749548241,228,0 +170749548289,227,0 +170749548337,217,0 +170749548385,218,0 +170749548433,219,0 +170749548482,219,0 +170749548530,221,0 +170749548578,221,0 +170749548626,225,0 +170749548674,224,0 +170749548723,225,0 +170749548771,224,0 +170749548819,229,0 +170749548867,228,0 +170749548915,228,0 +170749548963,231,0 +170749549013,229,0 +170749549061,228,0 +170749549110,228,0 +170749549158,228,0 +170749549206,227,0 +170749549254,216,0 +170749549303,217,0 +170749549353,218,0 +170749549401,219,0 +170749549449,219,0 +170749549497,220,0 +170749549546,222,0 +170749549596,221,0 +170749549645,222,0 +170749549693,224,0 +170749549741,225,0 +170749549789,226,0 +170749549839,225,0 +170749549886,226,0 +170749549936,226,0 +170749549985,224,0 +170749550035,226,0 +170749550083,227,0 +170749550132,227,0 +170749550180,217,0 +170749550228,216,0 +170749550276,216,0 +170749550325,214,0 +170749550373,219,0 +170749550421,219,0 +170749550469,222,0 +170749550517,223,0 +170749550565,227,0 +170749550612,223,0 +170749550660,226,0 +170749550708,223,0 +170749550756,228,0 +170749550804,227,0 +170749550852,228,0 +170749550900,228,0 +170749550948,227,0 +170749550996,226,0 +170749551045,227,0 +170749551093,217,0 +170749551141,216,0 +170749551190,217,0 +170749551238,218,0 +170749551286,219,0 +170749551334,219,0 +170749551382,220,0 +170749551430,222,0 +170749551478,221,0 +170749551526,223,0 +170749551574,223,0 +170749551622,224,0 +170749551670,225,0 +170749551718,227,0 +170749551765,228,0 +170749551813,228,0 +170749551861,226,0 +170749551911,227,0 +170749551959,228,0 +170749552008,218,0 +170749552058,216,0 +170749552107,217,0 +170749552157,217,0 +170749552205,219,0 +170749552253,219,0 +170749552300,223,0 +170749552348,223,0 +170749552396,222,0 +170749552446,222,0 +170749552494,225,0 +170749552541,225,0 +170749552589,226,0 +170749552637,226,0 +170749552685,227,0 +170749552733,226,0 +170749552781,227,0 +170749552829,230,0 +170749552876,228,0 +170749552924,220,0 +170749552972,216,0 +170749553020,216,0 +170749553068,216,0 +170749553116,218,0 +170749553164,219,0 +170749553212,221,0 +170749553260,222,0 +170749553309,222,0 +170749553357,222,0 +170749553405,223,0 +170749553453,225,0 +170749553501,227,0 +170749553549,226,0 +170749553596,227,0 +170749553644,224,0 +170749553692,227,0 +170749553742,227,0 +170749553790,228,0 +170749553837,226,0 +170749553885,217,0 +170749553933,218,0 +170749553981,219,0 +170749554029,221,0 +170749554079,221,0 +170749554127,222,0 +170749554175,223,0 +170749554224,224,0 +170749554272,224,0 +170749554320,226,0 +170749554370,227,0 +170749554418,229,0 +170749554466,225,0 +170749554514,228,0 +170749554562,228,0 +170749554610,227,0 +170749554657,228,0 +170749554705,226,0 +170749554755,226,0 +170749554803,217,0 +170749554852,218,0 +170749554900,219,0 +170749554948,220,0 +170749554996,221,0 +170749555044,223,0 +170749555092,223,0 +170749555140,222,0 +170749555190,225,0 +170749555239,229,0 +170749555289,226,0 +170749555337,228,0 +170749555385,229,0 +170749555434,227,0 +170749555482,227,0 +170749555532,230,0 +170749555581,228,0 +170749555629,228,0 +170749555677,227,0 +170749555725,217,0 +170749555773,216,0 +170749555822,216,0 +170749555870,217,0 +170749555918,218,0 +170749555966,219,0 +170749556016,220,0 +170749556064,222,0 +170749556112,224,0 +170749556160,222,0 +170749556208,224,0 +170749556256,225,0 +170749556304,226,0 +170749556353,224,0 +170749556403,227,0 +170749556451,227,0 +170749556500,227,0 +170749556550,228,0 +170749556599,227,0 +170749556649,218,0 +170749556698,216,0 +170749556746,216,0 +170749556794,216,0 +170749556843,217,0 +170749556891,216,0 +170749556939,218,0 +170749556987,219,0 +170749557035,220,0 +170749557083,220,0 +170749557131,222,0 +170749557180,224,0 +170749557228,225,0 +170749557277,225,0 +170749557325,227,0 +170749557373,226,0 +170749557421,227,0 +170749557469,227,0 +170749557517,227,0 +170749557567,218,0 +170749557616,216,0 +170749557666,216,0 +170749557714,216,0 +170749557761,217,0 +170749557809,217,0 +170749557857,217,0 +170749557905,217,0 +170749557953,218,0 +170749558001,219,0 +170749558050,220,0 +170749558100,223,0 +170749558148,226,0 +170749558196,224,0 +170749558243,224,0 +170749558293,224,0 +170749558342,226,0 +170749558390,224,0 +170749558440,228,0 +170749558488,218,0 +170749558536,217,0 +170749558584,217,0 +170749558633,217,0 +170749558683,217,0 +170749558731,217,0 +170749558779,219,0 +170749558827,220,0 +170749558874,221,0 +170749558922,222,0 +170749558972,224,0 +170749559020,224,0 +170749559070,226,0 +170749559119,226,0 +170749559169,226,0 +170749559216,227,0 +170749559264,227,0 +170749559314,227,0 +170749559362,228,0 +170749559409,217,0 +170749559457,216,0 +170749559505,216,0 +170749559553,216,0 +170749559601,217,0 +170749559649,217,0 +170749559697,218,0 +170749559746,219,0 +170749559796,220,0 +170749559844,220,0 +170749559892,220,0 +170749559939,220,0 +170749559989,222,0 +170749560037,222,0 +170749560085,223,0 +170749560132,223,0 +170749560180,224,0 +170749560228,224,0 +170749560276,224,0 +170749560324,226,0 +170749560374,226,0 +170749560422,228,0 +170749560471,228,0 +170749560519,229,0 +170749560569,228,0 +170749560618,228,0 +170749560666,228,0 +170749560714,227,0 +170749560764,226,0 +170749560813,217,0 +170749560862,217,0 +170749560912,218,0 +170749560962,220,0 +170749561010,218,0 +170749561058,221,0 +170749561107,223,0 +170749561157,225,0 +170749561206,224,0 +170749561254,223,0 +170749561304,226,0 +170749561352,227,0 +170749561401,227,0 +170749561449,227,0 +170749561497,227,0 +170749561546,227,0 +170749561594,227,0 +170749561642,229,0 +170749561692,226,0 +170749561740,217,0 +170749561789,218,0 +170749561837,219,0 +170749561887,221,0 +170749561935,221,0 +170749561984,221,0 +170749562032,222,0 +170749562082,224,0 +170749562130,223,0 +170749562179,225,0 +170749562229,225,0 +170749562277,226,0 +170749562325,227,0 +170749562373,227,0 +170749562421,229,0 +170749562470,228,0 +170749562518,228,0 +170749562566,228,0 +170749562614,226,0 +170749562663,220,0 +170749562713,219,0 +170749562762,219,0 +170749562810,221,0 +170749562858,222,0 +170749562908,222,0 +170749562956,223,0 +170749563005,224,0 +170749563053,225,0 +170749563103,226,0 +170749563150,226,0 +170749563198,226,0 +170749563246,229,0 +170749563294,229,0 +170749563342,228,0 +170749563391,228,0 +170749563439,228,0 +170749563487,229,0 +170749563535,227,0 +170749563583,221,0 +170749563632,222,0 +170749563680,221,0 +170749563728,223,0 +170749563776,224,0 +170749563824,224,0 +170749563872,226,0 +170749563921,227,0 +170749563969,229,0 +170749564017,226,0 +170749564067,233,0 +170749564115,230,0 +170749564164,230,0 +170749564212,229,0 +170749564260,226,0 +170749564309,229,0 +170749564359,227,0 +170749564408,228,0 +170749564458,227,0 +170749564508,218,0 +170749564555,219,0 +170749564603,219,0 +170749564651,223,0 +170749564699,221,0 +170749564747,222,0 +170749564795,224,0 +170749564843,226,0 +170749564891,225,0 +170749564939,226,0 +170749564987,227,0 +170749565035,227,0 +170749565084,228,0 +170749565134,231,0 +170749565181,228,0 +170749565229,229,0 +170749565277,227,0 +170749565325,227,0 +170749565373,227,0 +170749565421,217,0 +170749565469,216,0 +170749565517,217,0 +170749565566,218,0 +170749565616,219,0 +170749565665,220,0 +170749565713,219,0 +170749565763,221,0 +170749565811,223,0 +170749565859,224,0 +170749565907,225,0 +170749565955,225,0 +170749566003,229,0 +170749566050,231,0 +170749566098,229,0 +170749566148,227,0 +170749566196,228,0 +170749566245,227,0 +170749566293,227,0 +170749566341,218,0 +170749566389,216,0 +170749566437,217,0 +170749566487,218,0 +170749566536,219,0 +170749566586,220,0 +170749566634,220,0 +170749566682,222,0 +170749566730,222,0 +170749566778,223,0 +170749566826,224,0 +170749566875,225,0 +170749566925,226,0 +170749566974,226,0 +170749567024,227,0 +170749567072,228,0 +170749567120,227,0 +170749567169,227,0 +170749567217,229,0 +170749567267,218,0 +170749567316,217,0 +170749567364,216,0 +170749567414,218,0 +170749567462,219,0 +170749567511,219,0 +170749567559,218,0 +170749567609,221,0 +170749567657,222,0 +170749567705,223,0 +170749567754,224,0 +170749567803,226,0 +170749567851,227,0 +170749567899,225,0 +170749567947,228,0 +170749567995,228,0 +170749568043,231,0 +170749568091,228,0 +170749568141,228,0 +170749568189,217,0 +170749568237,216,0 +170749568285,215,0 +170749568333,217,0 +170749568382,217,0 +170749568430,218,0 +170749568479,219,0 +170749568529,220,0 +170749568577,222,0 +170749568625,222,0 +170749568674,223,0 +170749568724,224,0 +170749568771,225,0 +170749568821,227,0 +170749568869,227,0 +170749568917,228,0 +170749568965,227,0 +170749569013,226,0 +170749569062,228,0 +170749569110,217,0 +170749569158,215,0 +170749569206,215,0 +170749569254,216,0 +170749569302,216,0 +170749569350,216,0 +170749569400,216,0 +170749569448,217,0 +170749569497,217,0 +170749569547,218,0 +170749569594,219,0 +170749569642,221,0 +170749569690,223,0 +170749569738,223,0 +170749569786,224,0 +170749569836,226,0 +170749569884,227,0 +170749569933,226,0 +170749569981,227,0 +170749570031,227,0 +170749570079,216,0 +170749570127,215,0 +170749570174,216,0 +170749570222,216,0 +170749570272,216,0 +170749570321,217,0 +170749570369,217,0 +170749570417,218,0 +170749570465,218,0 +170749570515,218,0 +170749570564,220,0 +170749570612,222,0 +170749570662,222,0 +170749570711,223,0 +170749570759,226,0 +170749570809,225,0 +170749570858,225,0 +170749570906,227,0 +170749570954,227,0 +170749571004,216,0 +170749571053,216,0 +170749571101,216,0 +170749571149,216,0 +170749571197,217,0 +170749571245,218,0 +170749571293,217,0 +170749571341,218,0 +170749571389,219,0 +170749571437,220,0 +170749571485,222,0 +170749571533,223,0 +170749571581,223,0 +170749571630,226,0 +170749571680,226,0 +170749571729,226,0 +170749571779,226,0 +170749571827,227,0 +170749571875,227,0 +170749571922,216,0 +170749571970,216,0 +170749572018,216,0 +170749572066,216,0 +170749572114,217,0 +170749572162,217,0 +170749572210,217,0 +170749572258,218,0 +170749572306,219,0 +170749572354,218,0 +170749572402,222,0 +170749572450,222,0 +170749572499,224,0 +170749572547,223,0 +170749572597,225,0 +170749572646,224,0 +170749572694,227,0 +170749572744,226,0 +170749572792,227,0 +170749572839,218,0 +170749572887,216,0 +170749572935,217,0 +170749572983,214,0 +170749573031,218,0 +170749573081,219,0 +170749573129,220,0 +170749573177,223,0 +170749573225,221,0 +170749573273,223,0 +170749573321,225,0 +170749573370,227,0 +170749573418,227,0 +170749573466,225,0 +170749573515,229,0 +170749573563,227,0 +170749573611,228,0 +170749573661,227,0 +170749573709,227,0 +170749573757,218,0 +170749573806,216,0 +170749573856,217,0 +170749573904,217,0 +170749573951,219,0 +170749574001,219,0 +170749574049,224,0 +170749574097,218,0 +170749574145,222,0 +170749574193,221,0 +170749574241,224,0 +170749574290,224,0 +170749574338,224,0 +170749574386,225,0 +170749574434,226,0 +170749574482,227,0 +170749574530,228,0 +170749574578,229,0 +170749574627,229,0 +170749574675,218,0 +170749574725,218,0 +170749574773,220,0 +170749574821,220,0 +170749574870,222,0 +170749574920,222,0 +170749574968,224,0 +170749575017,224,0 +170749575065,224,0 +170749575115,225,0 +170749575163,227,0 +170749575211,226,0 +170749575259,228,0 +170749575306,227,0 +170749575356,229,0 +170749575405,228,0 +170749575455,228,0 +170749575503,227,0 +170749575551,226,0 +170749575599,221,0 +170749575647,220,0 +170749575695,221,0 +170749575742,222,0 +170749575790,223,0 +170749575840,223,0 +170749575888,224,0 +170749575936,225,0 +170749575983,225,0 +170749576031,226,0 +170749576079,226,0 +170749576127,227,0 +170749576177,229,0 +170749576224,228,0 +170749576272,228,0 +170749576320,228,0 +170749576368,228,0 +170749576416,228,0 +170749576464,227,0 +170749576512,227,0 +170749576560,221,0 +170749576608,220,0 +170749576656,221,0 +170749576703,222,0 +170749576751,222,0 +170749576799,225,0 +170749576847,224,0 +170749576895,224,0 +170749576943,225,0 +170749576991,226,0 +170749577039,227,0 +170749577087,231,0 +170749577135,227,0 +170749577182,228,0 +170749577232,228,0 +170749577280,228,0 +170749577329,229,0 +170749577377,228,0 +170749577425,226,0 +170749577473,218,0 +170749577521,218,0 +170749577570,219,0 +170749577620,220,0 +170749577669,220,0 +170749577717,222,0 +170749577765,223,0 +170749577813,223,0 +170749577861,223,0 +170749577910,225,0 +170749577960,225,0 +170749578009,227,0 +170749578057,226,0 +170749578106,227,0 +170749578154,228,0 +170749578202,228,0 +170749578250,227,0 +170749578298,227,0 +170749578346,227,0 +170749578394,218,0 +170749578442,215,0 +170749578490,217,0 +170749578538,218,0 +170749578586,219,0 +170749578634,220,0 +170749578682,222,0 +170749578730,221,0 +170749578778,222,0 +170749578826,223,0 +170749578874,223,0 +170749578923,224,0 +170749578971,225,0 +170749579021,227,0 +170749579068,226,0 +170749579116,227,0 +170749579164,227,0 +170749579212,227,0 +170749579260,228,0 +170749579308,222,0 +170749579356,216,0 +170749579404,216,0 +170749579452,216,0 +170749579500,218,0 +170749579549,219,0 +170749579597,220,0 +170749579645,224,0 +170749579693,221,0 +170749579743,222,0 +170749579791,224,0 +170749579839,225,0 +170749579886,225,0 +170749579934,225,0 +170749579982,227,0 +170749580030,228,0 +170749580078,228,0 +170749580126,228,0 +170749580174,228,0 +170749580222,228,0 +170749580270,216,0 +170749580319,216,0 +170749580367,216,0 +170749580417,217,0 +170749580466,217,0 +170749580514,219,0 +170749580562,221,0 +170749580612,222,0 +170749580660,220,0 +170749580707,221,0 +170749580755,223,0 +170749580803,224,0 +170749580853,223,0 +170749580901,224,0 +170749580949,225,0 +170749580997,225,0 +170749581046,227,0 +170749581094,228,0 +170749581142,227,0 +170749581190,217,0 +170749581239,218,0 +170749581287,218,0 +170749581337,222,0 +170749581385,222,0 +170749581433,221,0 +170749581482,226,0 +170749581530,222,0 +170749581580,224,0 +170749581628,225,0 +170749581677,227,0 +170749581727,227,0 +170749581775,227,0 +170749581824,227,0 +170749581872,230,0 +170749581920,228,0 +170749581968,228,0 +170749582016,228,0 +170749582066,227,0 +170749582115,217,0 +170749582165,218,0 +170749582214,218,0 +170749582264,220,0 +170749582312,220,0 +170749582361,223,0 +170749582411,222,0 +170749582460,223,0 +170749582510,225,0 +170749582558,226,0 +170749582607,226,0 +170749582655,228,0 +170749582705,227,0 +170749582754,228,0 +170749582804,229,0 +170749582852,229,0 +170749582900,228,0 +170749582948,228,0 +170749582997,226,0 +170749583045,218,0 +170749583095,218,0 +170749583143,219,0 +170749583191,221,0 +170749583239,221,0 +170749583288,222,0 +170749583336,223,0 +170749583384,224,0 +170749583434,224,0 +170749583483,227,0 +170749583531,226,0 +170749583579,227,0 +170749583627,226,0 +170749583675,230,0 +170749583723,227,0 +170749583771,227,0 +170749583821,229,0 +170749583869,228,0 +170749583916,228,0 +170749583964,217,0 +170749584012,218,0 +170749584060,219,0 +170749584108,220,0 +170749584156,221,0 +170749584204,222,0 +170749584252,221,0 +170749584300,223,0 +170749584348,226,0 +170749584396,226,0 +170749584444,228,0 +170749584492,228,0 +170749584541,228,0 +170749584589,229,0 +170749584639,228,0 +170749584687,229,0 +170749584736,229,0 +170749584786,228,0 +170749584835,227,0 +170749584885,218,0 +170749584933,217,0 +170749584981,218,0 +170749585029,216,0 +170749585078,222,0 +170749585126,223,0 +170749585176,223,0 +170749585225,223,0 +170749585275,225,0 +170749585323,227,0 +170749585372,226,0 +170749585422,226,0 +170749585470,227,0 +170749585518,227,0 +170749585567,228,0 +170749585615,228,0 +170749585665,228,0 +170749585714,228,0 +170749585762,228,0 +170749585810,218,0 +170749585860,217,0 +170749585908,218,0 +170749585957,220,0 +170749586005,220,0 +170749586053,222,0 +170749586101,223,0 +170749586149,224,0 +170749586199,223,0 +170749586247,225,0 +170749586295,225,0 +170749586342,226,0 +170749586392,227,0 +170749586441,227,0 +170749586489,228,0 +170749586539,232,0 +170749586587,227,0 +170749586635,229,0 +170749586683,228,0 +170749586731,217,0 +170749586779,216,0 +170749586827,217,0 +170749586875,217,0 +170749586923,218,0 +170749586971,220,0 +170749587019,220,0 +170749587068,221,0 +170749587118,223,0 +170749587167,223,0 +170749587215,226,0 +170749587263,224,0 +170749587313,226,0 +170749587362,229,0 +170749587412,228,0 +170749587461,229,0 +170749587509,227,0 +170749587557,229,0 +170749587605,227,0 +170749587654,218,0 +170749587702,216,0 +170749587750,216,0 +170749587800,218,0 +170749587849,219,0 +170749587897,220,0 +170749587945,221,0 +170749587995,222,0 +170749588044,221,0 +170749588092,223,0 +170749588140,224,0 +170749588188,225,0 +170749588236,227,0 +170749588284,227,0 +170749588334,227,0 +170749588382,229,0 +170749588431,229,0 +170749588481,228,0 +170749588529,228,0 +170749588577,218,0 +170749588625,215,0 +170749588674,215,0 +170749588724,217,0 +170749588773,219,0 +170749588821,218,0 +170749588871,220,0 +170749588919,220,0 +170749588967,218,0 +170749589015,225,0 +170749589064,223,0 +170749589112,224,0 +170749589160,235,0 +170749589208,225,0 +170749589256,224,0 +170749589305,228,0 +170749589355,228,0 +170749589403,229,0 +170749589451,228,0 +170749589500,221,0 +170749589550,216,0 +170749589598,218,0 +170749589646,221,0 +170749589694,220,0 +170749589742,222,0 +170749589791,222,0 +170749589839,223,0 +170749589887,223,0 +170749589935,224,0 +170749589983,224,0 +170749590032,227,0 +170749590080,227,0 +170749590130,228,0 +170749590178,226,0 +170749590228,227,0 +170749590276,228,0 +170749590323,229,0 +170749590373,228,0 +170749590421,218,0 +170749590469,217,0 +170749590517,219,0 +170749590566,220,0 +170749590614,220,0 +170749590662,223,0 +170749590710,222,0 +170749590760,224,0 +170749590809,225,0 +170749590857,226,0 +170749590907,226,0 +170749590955,227,0 +170749591003,227,0 +170749591050,227,0 +170749591098,229,0 +170749591148,227,0 +170749591197,228,0 +170749591245,228,0 +170749591293,228,0 +170749591341,225,0 +170749591389,218,0 +170749591439,219,0 +170749591487,220,0 +170749591535,222,0 +170749591583,222,0 +170749591631,223,0 +170749591679,223,0 +170749591727,227,0 +170749591774,226,0 +170749591824,230,0 +170749591872,227,0 +170749591920,227,0 +170749591968,230,0 +170749592016,226,0 +170749592064,228,0 +170749592113,228,0 +170749592161,225,0 +170749592209,229,0 +170749592257,227,0 +170749592305,217,0 +170749592353,217,0 +170749592403,218,0 +170749592451,219,0 +170749592500,220,0 +170749592548,221,0 +170749592596,225,0 +170749592646,226,0 +170749592693,226,0 +170749592741,225,0 +170749592789,225,0 +170749592837,227,0 +170749592885,228,0 +170749592935,227,0 +170749592985,227,0 +170749593034,227,0 +170749593084,228,0 +170749593132,229,0 +170749593179,226,0 +170749593227,217,0 +170749593277,215,0 +170749593326,216,0 +170749593374,219,0 +170749593424,219,0 +170749593473,221,0 +170749593523,219,0 +170749593571,221,0 +170749593620,222,0 +170749593670,224,0 +170749593718,225,0 +170749593767,225,0 +170749593815,226,0 +170749593863,228,0 +170749593911,228,0 +170749593960,229,0 +170749594008,230,0 +170749594056,229,0 +170749594104,228,0 +170749594152,216,0 +170749594200,216,0 +170749594248,216,0 +170749594297,217,0 +170749594345,218,0 +170749594393,219,0 +170749594441,219,0 +170749594489,220,0 +170749594536,220,0 +170749594586,222,0 +170749594634,223,0 +170749594682,224,0 +170749594730,227,0 +170749594777,225,0 +170749594825,225,0 +170749594873,228,0 +170749594921,227,0 +170749594969,226,0 +170749595017,226,0 +170749595065,218,0 +170749595114,215,0 +170749595162,216,0 +170749595210,217,0 +170749595259,218,0 +170749595307,219,0 +170749595355,215,0 +170749595403,219,0 +170749595451,221,0 +170749595500,221,0 +170749595548,222,0 +170749595596,224,0 +170749595644,225,0 +170749595692,226,0 +170749595740,227,0 +170749595788,226,0 +170749595836,229,0 +170749595884,228,0 +170749595932,229,0 +170749595979,227,0 +170749596027,216,0 +170749596077,217,0 +170749596125,218,0 +170749596172,219,0 +170749596222,221,0 +170749596270,218,0 +170749596318,218,0 +170749596366,223,0 +170749596414,226,0 +170749596462,225,0 +170749596509,225,0 +170749596557,226,0 +170749596605,226,0 +170749596653,227,0 +170749596701,228,0 +170749596750,227,0 +170749596798,228,0 +170749596846,230,0 +170749596896,228,0 +170749596945,217,0 +170749596993,217,0 +170749597043,218,0 +170749597091,220,0 +170749597139,221,0 +170749597187,222,0 +170749597236,223,0 +170749597284,224,0 +170749597332,225,0 +170749597380,227,0 +170749597428,226,0 +170749597476,227,0 +170749597524,227,0 +170749597572,226,0 +170749597619,227,0 +170749597667,228,0 +170749597715,227,0 +170749597765,228,0 +170749597814,228,0 +170749597864,217,0 +170749597912,218,0 +170749597959,219,0 +170749598007,220,0 +170749598055,221,0 +170749598105,224,0 +170749598153,223,0 +170749598200,224,0 +170749598248,223,0 +170749598298,231,0 +170749598346,226,0 +170749598394,227,0 +170749598443,227,0 +170749598491,222,0 +170749598540,227,0 +170749598588,228,0 +170749598636,228,0 +170749598684,227,0 +170749598732,228,0 +170749598782,219,0 +170749598830,218,0 +170749598878,219,0 +170749598926,220,0 +170749598976,222,0 +170749599025,223,0 +170749599075,222,0 +170749599123,226,0 +170749599171,225,0 +170749599219,227,0 +170749599267,226,0 +170749599316,227,0 +170749599364,227,0 +170749599412,226,0 +170749599462,228,0 +170749599510,228,0 +170749599558,228,0 +170749599607,230,0 +170749599655,228,0 +170749599703,218,0 +170749599751,216,0 +170749599799,216,0 +170749599847,218,0 +170749599895,219,0 +170749599943,219,0 +170749599990,221,0 +170749600038,223,0 +170749600088,223,0 +170749600137,224,0 +170749600187,224,0 +170749600235,225,0 +170749600283,226,0 +170749600331,225,0 +170749600380,227,0 +170749600430,228,0 +170749600478,227,0 +170749600526,226,0 +170749600574,227,0 +170749600623,217,0 +170749600671,214,0 +170749600721,214,0 +170749600769,214,0 +170749600817,214,0 +170749600865,214,0 +170749600914,214,0 +170749600962,214,0 +170749601010,214,0 +170749601058,214,0 +170749601108,215,0 +170749601157,215,0 +170749601207,215,0 +170749601256,216,0 +170749601306,218,0 +170749601355,219,0 +170749601403,220,0 +170749601453,221,0 +170749601501,227,0 +170749601549,217,0 +170749601597,215,0 +170749601646,215,0 +170749601694,215,0 +170749601742,216,0 +170749601792,216,0 +170749601841,216,0 +170749601891,217,0 +170749601940,217,0 +170749601990,217,0 +170749602038,218,0 +170749602087,219,0 +170749602137,220,0 +170749602186,222,0 +170749602234,222,0 +170749602284,223,0 +170749602332,224,0 +170749602381,225,0 +170749602429,228,0 +170749602477,228,0 +170749602527,216,0 +170749602575,216,0 +170749602624,216,0 +170749602672,217,0 +170749602722,217,0 +170749602770,218,0 +170749602818,217,0 +170749602867,218,0 +170749602917,219,0 +170749602966,220,0 +170749603014,222,0 +170749603062,228,0 +170749603112,224,0 +170749603161,225,0 +170749603209,226,0 +170749603259,226,0 +170749603307,225,0 +170749603355,227,0 +170749603403,227,0 +170749603452,217,0 +170749603501,216,0 +170749603549,217,0 +170749603597,218,0 +170749603645,218,0 +170749603693,219,0 +170749603743,218,0 +170749603791,220,0 +170749603839,221,0 +170749603887,221,0 +170749603936,222,0 +170749603986,224,0 +170749604034,223,0 +170749604082,224,0 +170749604130,226,0 +170749604179,225,0 +170749604227,226,0 +170749604277,228,0 +170749604325,228,0 +170749604373,217,0 +170749604422,219,0 +170749604472,220,0 +170749604519,221,0 +170749604567,222,0 +170749604615,222,0 +170749604663,222,0 +170749604711,223,0 +170749604761,223,0 +170749604808,225,0 +170749604858,225,0 +170749604908,226,0 +170749604956,227,0 +170749605005,227,0 +170749605055,227,0 +170749605102,229,0 +170749605150,228,0 +170749605198,228,0 +170749605248,227,0 +170749605296,218,0 +170749605344,219,0 +170749605392,221,0 +170749605440,221,0 +170749605489,222,0 +170749605537,223,0 +170749605587,223,0 +170749605635,224,0 +170749605683,227,0 +170749605731,225,0 +170749605778,226,0 +170749605828,227,0 +170749605877,224,0 +170749605925,227,0 +170749605973,228,0 +170749606021,229,0 +170749606069,229,0 +170749606117,228,0 +170749606165,228,0 +170749606215,219,0 +170749606264,219,0 +170749606312,221,0 +170749606360,222,0 +170749606408,222,0 +170749606458,223,0 +170749606506,225,0 +170749606555,224,0 +170749606603,227,0 +170749606653,230,0 +170749606701,229,0 +170749606749,230,0 +170749606797,229,0 +170749606844,233,0 +170749606892,230,0 +170749606940,228,0 +170749606990,230,0 +170749607039,229,0 +170749607087,227,0 +170749607135,220,0 +170749607183,220,0 +170749607231,220,0 +170749607279,223,0 +170749607327,225,0 +170749607375,224,0 +170749607425,226,0 +170749607474,226,0 +170749607522,226,0 +170749607570,228,0 +170749607618,229,0 +170749607666,230,0 +170749607716,228,0 +170749607763,229,0 +170749607813,228,0 +170749607861,229,0 +170749607909,229,0 +170749607957,228,0 +170749608005,227,0 +170749608054,220,0 +170749608102,221,0 +170749608151,221,0 +170749608201,223,0 +170749608249,224,0 +170749608299,224,0 +170749608347,223,0 +170749608396,224,0 +170749608446,227,0 +170749608493,226,0 +170749608541,227,0 +170749608589,225,0 +170749608637,228,0 +170749608685,227,0 +170749608733,229,0 +170749608781,230,0 +170749608829,229,0 +170749608877,228,0 +170749608925,228,0 +170749608974,225,0 +170749609024,217,0 +170749609072,218,0 +170749609120,220,0 +170749609168,221,0 +170749609216,222,0 +170749609264,223,0 +170749609311,224,0 +170749609359,224,0 +170749609409,226,0 +170749609459,226,0 +170749609508,228,0 +170749609558,227,0 +170749609606,228,0 +170749609655,228,0 +170749609705,228,0 +170749609753,229,0 +170749609802,231,0 +170749609852,228,0 +170749609900,224,0 +170749609947,217,0 +170749609997,217,0 +170749610046,218,0 +170749610094,220,0 +170749610144,221,0 +170749610193,223,0 +170749610241,223,0 +170749610291,224,0 +170749610341,225,0 +170749610389,225,0 +170749610438,227,0 +170749610486,228,0 +170749610536,228,0 +170749610583,228,0 +170749610633,229,0 +170749610681,230,0 +170749610730,230,0 +170749610778,228,0 +170749610826,217,0 +170749610874,216,0 +170749610924,216,0 +170749610972,216,0 +170749611020,217,0 +170749611069,218,0 +170749611119,219,0 +170749611167,221,0 +170749611215,220,0 +170749611263,222,0 +170749611311,224,0 +170749611360,224,0 +170749611409,225,0 +170749611457,226,0 +170749611505,227,0 +170749611555,230,0 +170749611604,228,0 +170749611652,231,0 +170749611702,227,0 +170749611751,219,0 +170749611799,217,0 +170749611847,217,0 +170749611895,216,0 +170749611945,217,0 +170749611994,216,0 +170749612044,216,0 +170749612092,217,0 +170749612141,217,0 +170749612189,219,0 +170749612239,221,0 +170749612288,223,0 +170749612336,221,0 +170749612384,224,0 +170749612432,226,0 +170749612480,227,0 +170749612528,228,0 +170749612576,228,0 +170749612623,227,0 +170749612673,227,0 +170749612722,216,0 +170749612772,216,0 +170749612820,217,0 +170749612868,217,0 +170749612916,217,0 +170749612964,218,0 +170749613011,218,0 +170749613059,221,0 +170749613107,222,0 +170749613157,222,0 +170749613205,224,0 +170749613253,226,0 +170749613302,227,0 +170749613352,227,0 +170749613401,228,0 +170749613451,227,0 +170749613499,228,0 +170749613548,228,0 +170749613596,227,0 +170749613644,216,0 +170749613694,217,0 +170749613742,217,0 +170749613791,217,0 +170749613841,220,0 +170749613889,221,0 +170749613937,222,0 +170749613985,225,0 +170749614034,223,0 +170749614082,227,0 +170749614130,225,0 +170749614180,227,0 +170749614228,227,0 +170749614276,228,0 +170749614324,228,0 +170749614373,228,0 +170749614421,228,0 +170749614469,228,0 +170749614517,228,0 +170749614565,217,0 +170749614613,216,0 +170749614661,216,0 +170749614709,217,0 +170749614757,218,0 +170749614804,219,0 +170749614852,220,0 +170749614900,222,0 +170749614948,222,0 +170749614996,223,0 +170749615044,225,0 +170749615092,226,0 +170749615142,226,0 +170749615190,228,0 +170749615239,229,0 +170749615287,227,0 +170749615337,227,0 +170749615385,228,0 +170749615433,227,0 +170749615482,218,0 +170749615532,216,0 +170749615580,216,0 +170749615628,216,0 +170749615676,217,0 +170749615725,217,0 +170749615773,218,0 +170749615823,219,0 +170749615871,221,0 +170749615919,222,0 +170749615966,223,0 +170749616016,224,0 +170749616064,226,0 +170749616112,229,0 +170749616161,227,0 +170749616209,227,0 +170749616257,227,0 +170749616307,228,0 +170749616355,227,0 +170749616403,218,0 +170749616451,217,0 +170749616500,217,0 +170749616548,217,0 +170749616596,216,0 +170749616644,217,0 +170749616692,219,0 +170749616740,220,0 +170749616788,220,0 +170749616836,220,0 +170749616885,222,0 +170749616933,223,0 +170749616981,224,0 +170749617029,225,0 +170749617079,225,0 +170749617128,226,0 +170749617176,228,0 +170749617224,228,0 +170749617274,227,0 +170749617323,217,0 +170749617373,215,0 +170749617422,216,0 +170749617470,216,0 +170749617518,218,0 +170749617566,219,0 +170749617616,221,0 +170749617663,221,0 +170749617711,222,0 +170749617759,222,0 +170749617807,224,0 +170749617855,226,0 +170749617905,226,0 +170749617954,227,0 +170749618004,228,0 +170749618053,227,0 +170749618101,228,0 +170749618149,230,0 +170749618197,227,0 +170749618245,222,0 +170749618293,216,0 +170749618341,217,0 +170749618389,219,0 +170749618437,220,0 +170749618485,220,0 +170749618533,223,0 +170749618581,223,0 +170749618629,224,0 +170749618678,224,0 +170749618726,220,0 +170749618776,227,0 +170749618824,227,0 +170749618872,227,0 +170749618920,228,0 +170749618968,228,0 +170749619016,228,0 +170749619064,228,0 +170749619112,227,0 +170749619161,226,0 +170749619209,218,0 +170749619257,219,0 +170749619305,220,0 +170749619353,221,0 +170749619401,222,0 +170749619449,223,0 +170749619497,223,0 +170749619545,226,0 +170749619594,224,0 +170749619642,226,0 +170749619690,226,0 +170749619738,227,0 +170749619786,228,0 +170749619833,227,0 +170749619883,229,0 +170749619931,228,0 +170749619979,228,0 +170749620027,235,0 +170749620075,228,0 +170749620122,218,0 +170749620170,219,0 +170749620218,219,0 +170749620266,220,0 +170749620314,222,0 +170749620362,223,0 +170749620410,224,0 +170749620459,224,0 +170749620509,224,0 +170749620558,225,0 +170749620608,226,0 +170749620657,228,0 +170749620707,227,0 +170749620755,227,0 +170749620803,227,0 +170749620851,227,0 +170749620899,227,0 +170749620947,228,0 +170749620996,227,0 +170749621044,219,0 +170749621094,218,0 +170749621142,218,0 +170749621189,219,0 +170749621237,221,0 +170749621285,224,0 +170749621333,222,0 +170749621383,224,0 +170749621432,224,0 +170749621480,225,0 +170749621530,225,0 +170749621578,225,0 +170749621627,225,0 +170749621675,227,0 +170749621723,227,0 +170749621773,228,0 +170749621822,229,0 +170749621872,226,0 +170749621921,227,0 +170749621971,224,0 +170749622019,216,0 +170749622067,217,0 +170749622116,218,0 +170749622166,219,0 +170749622213,221,0 +170749622261,222,0 +170749622309,222,0 +170749622357,222,0 +170749622405,226,0 +170749622453,225,0 +170749622501,225,0 +170749622549,226,0 +170749622597,227,0 +170749622645,228,0 +170749622693,227,0 +170749622743,228,0 +170749622791,227,0 +170749622838,228,0 +170749622888,227,0 +170749622936,215,0 +170749622985,216,0 +170749623033,216,0 +170749623083,217,0 +170749623131,219,0 +170749623179,220,0 +170749623227,220,0 +170749623275,222,0 +170749623323,222,0 +170749623371,222,0 +170749623420,223,0 +170749623468,224,0 +170749623517,224,0 +170749623565,226,0 +170749623615,225,0 +170749623664,224,0 +170749623714,224,0 +170749623762,227,0 +170749623811,229,0 +170749623859,216,0 +170749623909,216,0 +170749623959,216,0 +170749624006,216,0 +170749624054,217,0 +170749624102,219,0 +170749624150,219,0 +170749624200,220,0 +170749624249,220,0 +170749624297,224,0 +170749624345,222,0 +170749624395,225,0 +170749624443,225,0 +170749624491,228,0 +170749624540,227,0 +170749624588,227,0 +170749624638,227,0 +170749624686,228,0 +170749624735,227,0 +170749624785,216,0 +170749624834,216,0 +170749624882,216,0 +170749624930,218,0 +170749624978,219,0 +170749625028,219,0 +170749625076,220,0 +170749625123,219,0 +170749625171,222,0 +170749625219,222,0 +170749625269,223,0 +170749625317,224,0 +170749625365,225,0 +170749625413,227,0 +170749625461,226,0 +170749625509,229,0 +170749625557,228,0 +170749625605,228,0 +170749625653,228,0 +170749625700,218,0 +170749625750,216,0 +170749625799,216,0 +170749625849,217,0 +170749625897,217,0 +170749625945,218,0 +170749625993,220,0 +170749626041,219,0 +170749626089,220,0 +170749626137,222,0 +170749626185,225,0 +170749626233,224,0 +170749626281,226,0 +170749626329,225,0 +170749626377,225,0 +170749626425,228,0 +170749626474,228,0 +170749626522,227,0 +170749626572,228,0 +170749626619,218,0 +170749626667,216,0 +170749626715,217,0 +170749626763,217,0 +170749626813,217,0 +170749626862,223,0 +170749626912,220,0 +170749626960,220,0 +170749627009,221,0 +170749627057,222,0 +170749627107,224,0 +170749627155,225,0 +170749627203,226,0 +170749627251,227,0 +170749627299,226,0 +170749627347,228,0 +170749627396,228,0 +170749627444,227,0 +170749627494,228,0 +170749627543,219,0 +170749627593,218,0 +170749627641,218,0 +170749627690,220,0 +170749627740,220,0 +170749627788,221,0 +170749627837,222,0 +170749627887,223,0 +170749627935,224,0 +170749627983,225,0 +170749628031,225,0 +170749628079,226,0 +170749628128,226,0 +170749628177,228,0 +170749628225,227,0 +170749628273,228,0 +170749628321,231,0 +170749628369,231,0 +170749628419,229,0 +170749628467,217,0 +170749628516,216,0 +170749628564,218,0 +170749628612,222,0 +170749628662,221,0 +170749628710,221,0 +170749628758,221,0 +170749628807,225,0 +170749628857,225,0 +170749628905,225,0 +170749628953,226,0 +170749629000,227,0 +170749629048,229,0 +170749629098,227,0 +170749629147,228,0 +170749629197,228,0 +170749629245,227,0 +170749629294,228,0 +170749629342,227,0 +170749629390,217,0 +170749629440,216,0 +170749629488,215,0 +170749629537,216,0 +170749629587,217,0 +170749629636,219,0 +170749629686,220,0 +170749629734,221,0 +170749629783,221,0 +170749629833,225,0 +170749629882,224,0 +170749629932,225,0 +170749629982,226,0 +170749630030,228,0 +170749630079,229,0 +170749630127,227,0 +170749630175,228,0 +170749630223,229,0 +170749630271,228,0 +170749630319,218,0 +170749630368,216,0 +170749630416,216,0 +170749630464,216,0 +170749630512,217,0 +170749630560,217,0 +170749630610,218,0 +170749630659,219,0 +170749630707,221,0 +170749630755,222,0 +170749630803,223,0 +170749630852,223,0 +170749630900,224,0 +170749630948,226,0 +170749630996,230,0 +170749631044,226,0 +170749631092,228,0 +170749631142,226,0 +170749631191,226,0 +170749631239,217,0 +170749631289,215,0 +170749631337,215,0 +170749631385,215,0 +170749631433,216,0 +170749631480,216,0 +170749631530,216,0 +170749631578,217,0 +170749631626,217,0 +170749631674,218,0 +170749631722,218,0 +170749631770,219,0 +170749631818,220,0 +170749631866,221,0 +170749631915,222,0 +170749631965,224,0 +170749632013,224,0 +170749632061,223,0 +170749632110,227,0 +170749632158,228,0 +170749632206,216,0 +170749632256,216,0 +170749632304,216,0 +170749632351,217,0 +170749632401,217,0 +170749632451,216,0 +170749632499,218,0 +170749632548,220,0 +170749632596,222,0 +170749632644,221,0 +170749632692,223,0 +170749632740,223,0 +170749632788,225,0 +170749632837,224,0 +170749632885,225,0 +170749632935,225,0 +170749632983,226,0 +170749633031,227,0 +170749633081,227,0 +170749633130,216,0 +170749633178,216,0 +170749633226,218,0 +170749633274,218,0 +170749633323,221,0 +170749633373,221,0 +170749633422,221,0 +170749633472,222,0 +170749633520,224,0 +170749633569,224,0 +170749633619,224,0 +170749633667,225,0 +170749633716,226,0 +170749633766,226,0 +170749633815,227,0 +170749633863,227,0 +170749633913,227,0 +170749633961,227,0 +170749634009,227,0 +170749634057,217,0 +170749634106,218,0 +170749634154,217,0 +170749634204,220,0 +170749634253,220,0 +170749634303,223,0 +170749634351,221,0 +170749634399,224,0 +170749634447,224,0 +170749634495,227,0 +170749634544,228,0 +170749634592,227,0 +170749634640,229,0 +170749634688,227,0 +170749634736,228,0 +170749634784,228,0 +170749634833,228,0 +170749634881,227,0 +170749634931,227,0 +170749634980,219,0 +170749635028,219,0 +170749635076,220,0 +170749635124,221,0 +170749635172,222,0 +170749635220,225,0 +170749635270,225,0 +170749635318,225,0 +170749635366,226,0 +170749635414,225,0 +170749635462,226,0 +170749635510,227,0 +170749635558,228,0 +170749635607,230,0 +170749635655,230,0 +170749635703,229,0 +170749635751,229,0 +170749635800,229,0 +170749635848,228,0 +170749635898,220,0 +170749635946,220,0 +170749635995,220,0 +170749636043,222,0 +170749636091,223,0 +170749636141,224,0 +170749636189,225,0 +170749636237,226,0 +170749636285,225,0 +170749636334,227,0 +170749636384,228,0 +170749636434,228,0 +170749636483,227,0 +170749636531,228,0 +170749636579,229,0 +170749636628,228,0 +170749636676,229,0 +170749636724,229,0 +170749636774,227,0 +170749636822,220,0 +170749636870,220,0 +170749636918,221,0 +170749636966,222,0 +170749637014,223,0 +170749637063,224,0 +170749637111,225,0 +170749637159,225,0 +170749637207,226,0 +170749637255,229,0 +170749637305,228,0 +170749637353,228,0 +170749637401,228,0 +170749637449,228,0 +170749637497,228,0 +170749637544,228,0 +170749637592,227,0 +170749637642,230,0 +170749637690,227,0 +170749637738,219,0 +170749637786,219,0 +170749637835,220,0 +170749637885,221,0 +170749637933,223,0 +170749637981,222,0 +170749638029,223,0 +170749638078,224,0 +170749638126,225,0 +170749638174,225,0 +170749638224,227,0 +170749638272,226,0 +170749638321,227,0 +170749638371,228,0 +170749638420,227,0 +170749638468,227,0 +170749638516,226,0 +170749638564,227,0 +170749638614,227,0 +170749638663,217,0 +170749638713,216,0 +170749638762,217,0 +170749638810,218,0 +170749638860,220,0 +170749638908,220,0 +170749638957,222,0 +170749639005,224,0 +170749639053,223,0 +170749639101,225,0 +170749639149,225,0 +170749639199,227,0 +170749639247,227,0 +170749639296,227,0 +170749639346,228,0 +170749639394,228,0 +170749639442,228,0 +170749639491,226,0 +170749639539,227,0 +170749639587,218,0 +170749639637,216,0 +170749639686,218,0 +170749639736,218,0 +170749639784,220,0 +170749639833,220,0 +170749639883,222,0 +170749639931,223,0 +170749639980,224,0 +170749640028,226,0 +170749640076,226,0 +170749640126,228,0 +170749640174,227,0 +170749640222,227,0 +170749640270,228,0 +170749640319,229,0 +170749640367,228,0 +170749640415,228,0 +170749640463,227,0 +170749640513,218,0 +170749640561,216,0 +170749640609,218,0 +170749640658,219,0 +170749640706,220,0 +170749640756,221,0 +170749640805,221,0 +170749640855,223,0 +170749640903,224,0 +170749640951,225,0 +170749640999,225,0 +170749641047,226,0 +170749641096,228,0 +170749641144,227,0 +170749641194,227,0 +170749641242,227,0 +170749641291,227,0 +170749641339,227,0 +170749641389,227,0 +170749641438,223,0 +170749641488,216,0 +170749641536,216,0 +170749641583,217,0 +170749641631,218,0 +170749641679,219,0 +170749641729,221,0 +170749641777,221,0 +170749641825,223,0 +170749641873,222,0 +170749641920,224,0 +170749641968,227,0 +170749642016,224,0 +170749642066,228,0 +170749642113,227,0 +170749642161,229,0 +170749642209,228,0 +170749642257,228,0 +170749642305,228,0 +170749642353,227,0 +170749642403,217,0 +170749642452,216,0 +170749642500,216,0 +170749642548,216,0 +170749642596,218,0 +170749642644,218,0 +170749642692,219,0 +170749642740,222,0 +170749642790,222,0 +170749642839,222,0 +170749642887,224,0 +170749642937,224,0 +170749642985,225,0 +170749643033,227,0 +170749643080,227,0 +170749643128,227,0 +170749643178,226,0 +170749643226,228,0 +170749643274,227,0 +170749643321,217,0 +170749643371,216,0 +170749643419,217,0 +170749643467,217,0 +170749643515,217,0 +170749643562,218,0 +170749643610,219,0 +170749643658,220,0 +170749643706,222,0 +170749643754,222,0 +170749643802,225,0 +170749643850,220,0 +170749643898,225,0 +170749643946,226,0 +170749643994,228,0 +170749644043,227,0 +170749644091,227,0 +170749644141,227,0 +170749644190,227,0 +170749644238,217,0 +170749644286,216,0 +170749644334,216,0 +170749644382,216,0 +170749644432,219,0 +170749644480,219,0 +170749644528,220,0 +170749644576,220,0 +170749644624,221,0 +170749644672,222,0 +170749644721,223,0 +170749644769,224,0 +170749644817,225,0 +170749644867,225,0 +170749644916,226,0 +170749644964,226,0 +170749645012,227,0 +170749645062,227,0 +170749645110,228,0 +170749645159,217,0 +170749645207,215,0 +170749645255,216,0 +170749645305,216,0 +170749645353,217,0 +170749645401,216,0 +170749645450,218,0 +170749645498,219,0 +170749645548,220,0 +170749645597,221,0 +170749645645,222,0 +170749645693,224,0 +170749645743,224,0 +170749645791,226,0 +170749645840,227,0 +170749645890,227,0 +170749645938,229,0 +170749645986,227,0 +170749646033,227,0 +170749646083,217,0 +170749646131,215,0 +170749646179,216,0 +170749646227,216,0 +170749646276,216,0 +170749646326,217,0 +170749646376,217,0 +170749646423,219,0 +170749646471,219,0 +170749646519,221,0 +170749646567,222,0 +170749646615,223,0 +170749646663,226,0 +170749646711,224,0 +170749646759,225,0 +170749646809,225,0 +170749646857,226,0 +170749646907,226,0 +170749646954,228,0 +170749647004,224,0 +170749647052,216,0 +170749647101,216,0 +170749647151,216,0 +170749647199,217,0 +170749647249,217,0 +170749647298,217,0 +170749647346,218,0 +170749647394,218,0 +170749647442,219,0 +170749647492,220,0 +170749647539,223,0 +170749647589,223,0 +170749647638,224,0 +170749647688,225,0 +170749647737,226,0 +170749647787,225,0 +170749647837,226,0 +170749647885,226,0 +170749647933,228,0 +170749647982,216,0 +170749648030,217,0 +170749648078,217,0 +170749648127,219,0 +170749648177,218,0 +170749648225,219,0 +170749648274,221,0 +170749648322,222,0 +170749648372,220,0 +170749648420,223,0 +170749648468,225,0 +170749648516,225,0 +170749648565,226,0 +170749648613,227,0 +170749648661,229,0 +170749648709,228,0 +170749648757,227,0 +170749648805,227,0 +170749648854,226,0 +170749648902,217,0 +170749648952,217,0 +170749649001,218,0 +170749649049,220,0 +170749649097,220,0 +170749649145,220,0 +170749649195,221,0 +170749649243,222,0 +170749649291,223,0 +170749649339,224,0 +170749649387,225,0 +170749649435,226,0 +170749649483,227,0 +170749649532,227,0 +170749649582,225,0 +170749649630,228,0 +170749649678,228,0 +170749649726,228,0 +170749649775,228,0 +170749649825,218,0 +170749649874,218,0 +170749649922,220,0 +170749649970,221,0 +170749650020,222,0 +170749650068,224,0 +170749650117,226,0 +170749650167,225,0 +170749650216,226,0 +170749650264,225,0 +170749650314,229,0 +170749650362,227,0 +170749650410,228,0 +170749650458,228,0 +170749650506,228,0 +170749650554,229,0 +170749650602,228,0 +170749650651,228,0 +170749650699,227,0 +170749650747,218,0 +170749650797,217,0 +170749650845,219,0 +170749650894,220,0 +170749650942,221,0 +170749650990,222,0 +170749651038,223,0 +170749651086,229,0 +170749651134,227,0 +170749651182,226,0 +170749651230,226,0 +170749651277,227,0 +170749651325,229,0 +170749651373,228,0 +170749651421,228,0 +170749651469,228,0 +170749651518,229,0 +170749651566,228,0 +170749651614,227,0 +170749651664,217,0 +170749651712,217,0 +170749651760,217,0 +170749651808,219,0 +170749651856,222,0 +170749651904,221,0 +170749651951,223,0 +170749652001,222,0 +170749652049,223,0 +170749652097,224,0 +170749652145,227,0 +170749652193,227,0 +170749652241,227,0 +170749652289,227,0 +170749652337,228,0 +170749652386,229,0 +170749652434,228,0 +170749652482,227,0 +170749652530,228,0 +170749652580,227,0 +170749652628,216,0 +170749652677,216,0 +170749652725,217,0 +170749652773,218,0 +170749652823,220,0 +170749652871,218,0 +170749652919,222,0 +170749652967,224,0 +170749653016,224,0 +170749653064,225,0 +170749653112,226,0 +170749653160,228,0 +170749653208,226,0 +170749653257,228,0 +170749653305,228,0 +170749653353,228,0 +170749653403,227,0 +170749653452,229,0 +170749653500,228,0 +170749653548,217,0 +170749653596,216,0 +170749653644,217,0 +170749653694,218,0 +170749653743,219,0 +170749653791,221,0 +170749653841,221,0 +170749653889,223,0 +170749653938,223,0 +170749653988,229,0 +170749654037,225,0 +170749654087,226,0 +170749654135,227,0 +170749654183,227,0 +170749654231,229,0 +170749654279,229,0 +170749654327,228,0 +170749654375,227,0 +170749654423,230,0 +170749654471,217,0 +170749654520,216,0 +170749654570,217,0 +170749654619,217,0 +170749654667,217,0 +170749654715,218,0 +170749654763,222,0 +170749654811,221,0 +170749654859,221,0 +170749654907,223,0 +170749654955,224,0 +170749655004,225,0 +170749655052,225,0 +170749655100,227,0 +170749655150,227,0 +170749655198,227,0 +170749655246,228,0 +170749655295,227,0 +170749655345,227,0 +170749655393,218,0 +170749655441,216,0 +170749655488,217,0 +170749655536,216,0 +170749655586,217,0 +170749655635,217,0 +170749655683,218,0 +170749655731,219,0 +170749655779,220,0 +170749655829,221,0 +170749655877,222,0 +170749655926,222,0 +170749655974,224,0 +170749656022,225,0 +170749656070,227,0 +170749656118,226,0 +170749656166,227,0 +170749656214,228,0 +170749656262,228,0 +170749656310,222,0 +170749656358,216,0 +170749656407,216,0 +170749656455,217,0 +170749656505,217,0 +170749656553,218,0 +170749656601,219,0 +170749656648,220,0 +170749656698,221,0 +170749656747,220,0 +170749656795,222,0 +170749656843,225,0 +170749656891,225,0 +170749656941,227,0 +170749656989,228,0 +170749657038,227,0 +170749657086,226,0 +170749657134,227,0 +170749657183,228,0 +170749657231,221,0 +170749657279,215,0 +170749657329,215,0 +170749657377,216,0 +170749657425,216,0 +170749657473,217,0 +170749657521,218,0 +170749657569,218,0 +170749657617,219,0 +170749657666,220,0 +170749657714,221,0 +170749657764,222,0 +170749657812,223,0 +170749657860,229,0 +170749657907,226,0 +170749657955,233,0 +170749658003,229,0 +170749658053,228,0 +170749658101,232,0 +170749658149,226,0 +170749658197,216,0 +170749658245,216,0 +170749658293,216,0 +170749658340,216,0 +170749658390,217,0 +170749658438,217,0 +170749658487,217,0 +170749658535,217,0 +170749658583,218,0 +170749658631,219,0 +170749658679,221,0 +170749658727,221,0 +170749658775,223,0 +170749658824,224,0 +170749658874,224,0 +170749658923,227,0 +170749658971,226,0 +170749659021,227,0 +170749659070,227,0 +170749659120,217,0 +170749659168,216,0 +170749659216,216,0 +170749659264,216,0 +170749659313,216,0 +170749659363,217,0 +170749659412,217,0 +170749659462,218,0 +170749659510,219,0 +170749659558,221,0 +170749659606,223,0 +170749659654,225,0 +170749659701,224,0 +170749659751,225,0 +170749659801,225,0 +170749659849,227,0 +170749659898,226,0 +170749659946,227,0 +170749659994,227,0 +170749660042,218,0 +170749660090,216,0 +170749660139,216,0 +170749660187,216,0 +170749660237,216,0 +170749660285,217,0 +170749660333,217,0 +170749660382,217,0 +170749660430,219,0 +170749660478,219,0 +170749660526,220,0 +170749660574,222,0 +170749660624,224,0 +170749660672,224,0 +170749660720,224,0 +170749660769,230,0 +170749660819,227,0 +170749660868,226,0 +170749660916,227,0 +170749660966,217,0 +170749661014,216,0 +170749661062,216,0 +170749661110,217,0 +170749661158,216,0 +170749661205,217,0 +170749661253,218,0 +170749661303,220,0 +170749661351,219,0 +170749661399,220,0 +170749661447,221,0 +170749661495,223,0 +170749661544,224,0 +170749661592,225,0 +170749661640,224,0 +170749661690,225,0 +170749661738,227,0 +170749661785,227,0 +170749661833,227,0 +170749661881,228,0 +170749661929,217,0 +170749661977,218,0 +170749662025,219,0 +170749662073,220,0 +170749662120,221,0 +170749662168,221,0 +170749662216,223,0 +170749662264,224,0 +170749662312,225,0 +170749662360,225,0 +170749662408,226,0 +170749662456,226,0 +170749662503,227,0 +170749662551,224,0 +170749662599,227,0 +170749662647,227,0 +170749662695,228,0 +170749662743,228,0 +170749662791,227,0 +170749662839,220,0 +170749662887,219,0 +170749662934,220,0 +170749662982,221,0 +170749663030,223,0 +170749663080,224,0 +170749663128,224,0 +170749663175,224,0 +170749663225,224,0 +170749663273,226,0 +170749663321,227,0 +170749663369,227,0 +170749663417,228,0 +170749663465,229,0 +170749663514,227,0 +170749663562,228,0 +170749663610,228,0 +170749663658,228,0 +170749663708,227,0 +170749663757,218,0 +170749663805,219,0 +170749663855,220,0 +170749663903,221,0 +170749663951,222,0 +170749663998,224,0 +170749664048,225,0 +170749664096,226,0 +170749664144,224,0 +170749664192,227,0 +170749664239,227,0 +170749664287,227,0 +170749664335,227,0 +170749664383,228,0 +170749664431,227,0 +170749664479,227,0 +170749664527,229,0 +170749664575,227,0 +170749664622,228,0 +170749664670,221,0 +170749664718,217,0 +170749664766,218,0 +170749664814,219,0 +170749664864,220,0 +170749664912,221,0 +170749664959,221,0 +170749665009,222,0 +170749665057,223,0 +170749665106,222,0 +170749665156,225,0 +170749665203,226,0 +170749665251,226,0 +170749665299,228,0 +170749665347,230,0 +170749665397,229,0 +170749665445,229,0 +170749665492,228,0 +170749665540,227,0 +170749665588,227,0 +170749665636,217,0 +170749665684,218,0 +170749665732,219,0 +170749665781,220,0 +170749665829,221,0 +170749665877,222,0 +170749665925,223,0 +170749665973,224,0 +170749666021,225,0 +170749666069,227,0 +170749666116,226,0 +170749666164,227,0 +170749666212,227,0 +170749666260,228,0 +170749666308,228,0 +170749666356,228,0 +170749666404,228,0 +170749666451,226,0 +170749666499,227,0 +170749666547,219,0 +170749666595,218,0 +170749666645,219,0 +170749666692,220,0 +170749666740,221,0 +170749666788,223,0 +170749666836,223,0 +170749666884,223,0 +170749666932,224,0 +170749666981,224,0 +170749667031,226,0 +170749667079,228,0 +170749667127,226,0 +170749667175,227,0 +170749667224,226,0 +170749667272,228,0 +170749667320,227,0 +170749667368,227,0 +170749667416,228,0 +170749667465,219,0 +170749667515,216,0 +170749667563,216,0 +170749667611,217,0 +170749667659,218,0 +170749667707,218,0 +170749667755,220,0 +170749667803,221,0 +170749667851,222,0 +170749667899,223,0 +170749667946,223,0 +170749667996,225,0 +170749668044,225,0 +170749668092,228,0 +170749668140,228,0 +170749668190,227,0 +170749668237,224,0 +170749668285,227,0 +170749668335,227,0 +170749668383,227,0 +170749668432,216,0 +170749668480,216,0 +170749668528,216,0 +170749668576,217,0 +170749668624,218,0 +170749668672,220,0 +170749668720,221,0 +170749668767,221,0 +170749668817,222,0 +170749668866,224,0 +170749668914,223,0 +170749668964,235,0 +170749669012,227,0 +170749669061,227,0 +170749669109,226,0 +170749669157,228,0 +170749669205,228,0 +170749669253,229,0 +170749669301,228,0 +170749669351,217,0 +170749669399,217,0 +170749669448,216,0 +170749669498,217,0 +170749669546,217,0 +170749669595,218,0 +170749669643,218,0 +170749669693,222,0 +170749669740,222,0 +170749669788,224,0 +170749669838,224,0 +170749669886,226,0 +170749669934,228,0 +170749669981,225,0 +170749670029,228,0 +170749670077,227,0 +170749670125,227,0 +170749670173,231,0 +170749670221,228,0 +170749670269,217,0 +170749670317,216,0 +170749670365,218,0 +170749670414,219,0 +170749670462,218,0 +170749670512,220,0 +170749670560,221,0 +170749670609,222,0 +170749670657,222,0 +170749670707,223,0 +170749670756,223,0 +170749670806,224,0 +170749670854,227,0 +170749670904,227,0 +170749670953,231,0 +170749671001,228,0 +170749671049,229,0 +170749671097,228,0 +170749671145,227,0 +170749671193,218,0 +170749671242,218,0 +170749671290,220,0 +170749671340,220,0 +170749671389,221,0 +170749671437,222,0 +170749671485,224,0 +170749671535,224,0 +170749671583,225,0 +170749671632,225,0 +170749671680,225,0 +170749671730,226,0 +170749671778,227,0 +170749671826,229,0 +170749671874,228,0 +170749671922,229,0 +170749671970,229,0 +170749672018,227,0 +170749672065,227,0 +170749672113,219,0 +170749672163,218,0 +170749672212,220,0 +170749672262,220,0 +170749672310,222,0 +170749672358,222,0 +170749672407,225,0 +170749672457,225,0 +170749672505,225,0 +170749672554,226,0 +170749672602,228,0 +170749672652,228,0 +170749672700,230,0 +170749672749,227,0 +170749672797,225,0 +170749672845,228,0 +170749672893,229,0 +170749672941,228,0 +170749672989,226,0 +170749673039,217,0 +170749673088,215,0 +170749673136,217,0 +170749673184,219,0 +170749673234,219,0 +170749673281,220,0 +170749673331,223,0 +170749673379,223,0 +170749673427,224,0 +170749673476,225,0 +170749673524,225,0 +170749673572,228,0 +170749673620,225,0 +170749673668,228,0 +170749673716,231,0 +170749673764,230,0 +170749673814,228,0 +170749673862,227,0 +170749673911,228,0 +170749673961,220,0 +170749674009,215,0 +170749674057,216,0 +170749674105,216,0 +170749674154,216,0 +170749674202,217,0 +170749674250,219,0 +170749674300,220,0 +170749674349,221,0 +170749674397,222,0 +170749674445,225,0 +170749674493,225,0 +170749674541,224,0 +170749674589,226,0 +170749674638,227,0 +170749674688,227,0 +170749674738,227,0 +170749674786,228,0 +170749674833,227,0 +170749674882,219,0 +170749674929,215,0 +170749674977,216,0 +170749675025,216,0 +170749675073,217,0 +170749675121,219,0 +170749675169,219,0 +170749675217,219,0 +170749675265,219,0 +170749675314,221,0 +170749675362,222,0 +170749675410,223,0 +170749675458,224,0 +170749675506,226,0 +170749675554,227,0 +170749675603,228,0 +170749675651,230,0 +170749675699,227,0 +170749675747,228,0 +170749675797,224,0 +170749675844,217,0 +170749675892,216,0 +170749675940,216,0 +170749675990,217,0 +170749676038,217,0 +170749676086,218,0 +170749676134,220,0 +170749676183,219,0 +170749676231,220,0 +170749676279,221,0 +170749676329,223,0 +170749676377,224,0 +170749676425,224,0 +170749676473,227,0 +170749676521,226,0 +170749676570,225,0 +170749676620,224,0 +170749676669,226,0 +170749676717,228,0 +170749676765,217,0 +170749676813,215,0 +170749676861,216,0 +170749676909,217,0 +170749676958,216,0 +170749677006,218,0 +170749677054,218,0 +170749677104,218,0 +170749677152,220,0 +170749677201,222,0 +170749677249,221,0 +170749677299,224,0 +170749677348,226,0 +170749677396,224,0 +170749677446,226,0 +170749677495,227,0 +170749677545,226,0 +170749677594,227,0 +170749677642,226,0 +170749677690,216,0 +170749677738,216,0 +170749677788,216,0 +170749677837,216,0 +170749677887,218,0 +170749677936,220,0 +170749677984,220,0 +170749678032,221,0 +170749678080,221,0 +170749678130,222,0 +170749678178,223,0 +170749678226,224,0 +170749678274,225,0 +170749678321,226,0 +170749678369,227,0 +170749678419,227,0 +170749678467,228,0 +170749678517,227,0 +170749678564,226,0 +170749678612,217,0 +170749678662,217,0 +170749678710,216,0 +170749678758,217,0 +170749678806,218,0 +170749678854,217,0 +170749678903,221,0 +170749678953,220,0 +170749679001,220,0 +170749679050,223,0 +170749679100,223,0 +170749679148,226,0 +170749679197,226,0 +170749679247,228,0 +170749679295,228,0 +170749679343,228,0 +170749679391,229,0 +170749679439,228,0 +170749679487,228,0 +170749679536,218,0 +170749679586,216,0 +170749679635,216,0 +170749679683,216,0 +170749679733,218,0 +170749679781,218,0 +170749679829,219,0 +170749679877,219,0 +170749679926,220,0 +170749679974,221,0 +170749680024,222,0 +170749680072,223,0 +170749680121,223,0 +170749680169,224,0 +170749680219,226,0 +170749680267,225,0 +170749680315,227,0 +170749680363,226,0 +170749680412,227,0 +170749680460,217,0 +170749680510,216,0 +170749680558,216,0 +170749680607,217,0 +170749680657,218,0 +170749680705,219,0 +170749680753,220,0 +170749680802,221,0 +170749680850,224,0 +170749680898,224,0 +170749680946,226,0 +170749680996,226,0 +170749681045,227,0 +170749681093,227,0 +170749681141,227,0 +170749681189,225,0 +170749681239,228,0 +170749681287,229,0 +170749681336,227,0 +170749681386,217,0 +170749681434,215,0 +170749681481,217,0 +170749681531,218,0 +170749681581,217,0 +170749681629,220,0 +170749681678,220,0 +170749681728,222,0 +170749681776,221,0 +170749681823,221,0 +170749681871,224,0 +170749681919,224,0 +170749681969,224,0 +170749682017,225,0 +170749682067,227,0 +170749682114,228,0 +170749682162,228,0 +170749682212,227,0 +170749682260,228,0 +170749682309,217,0 +170749682357,215,0 +170749682405,215,0 +170749682453,216,0 +170749682501,217,0 +170749682551,220,0 +170749682599,219,0 +170749682648,219,0 +170749682696,221,0 +170749682746,223,0 +170749682795,223,0 +170749682845,224,0 +170749682893,226,0 +170749682941,226,0 +170749682989,226,0 +170749683037,225,0 +170749683085,224,0 +170749683134,225,0 +170749683182,227,0 +170749683232,217,0 +170749683280,216,0 +170749683329,216,0 +170749683379,216,0 +170749683427,217,0 +170749683476,217,0 +170749683526,219,0 +170749683575,219,0 +170749683623,220,0 +170749683671,222,0 +170749683719,221,0 +170749683767,224,0 +170749683817,225,0 +170749683866,226,0 +170749683914,226,0 +170749683962,226,0 +170749684010,227,0 +170749684058,227,0 +170749684106,227,0 +170749684154,222,0 +170749684204,215,0 +170749684253,216,0 +170749684303,216,0 +170749684351,217,0 +170749684400,218,0 +170749684448,219,0 +170749684498,221,0 +170749684546,222,0 +170749684594,223,0 +170749684642,224,0 +170749684691,224,0 +170749684739,226,0 +170749684789,228,0 +170749684837,226,0 +170749684885,227,0 +170749684934,228,0 +170749684982,227,0 +170749685030,227,0 +170749685078,219,0 +170749685126,216,0 +170749685176,217,0 +170749685225,218,0 +170749685275,218,0 +170749685324,220,0 +170749685372,220,0 +170749685420,222,0 +170749685468,225,0 +170749685518,225,0 +170749685566,224,0 +170749685614,226,0 +170749685663,226,0 +170749685713,228,0 +170749685761,227,0 +170749685809,229,0 +170749685858,227,0 +170749685906,228,0 +170749685954,228,0 +170749686002,227,0 +170749686050,216,0 +170749686099,216,0 +170749686147,216,0 +170749686195,216,0 +170749686245,217,0 +170749686294,219,0 +170749686342,220,0 +170749686392,221,0 +170749686441,221,0 +170749686489,223,0 +170749686539,223,0 +170749686587,224,0 +170749686635,226,0 +170749686683,226,0 +170749686732,226,0 +170749686780,226,0 +170749686828,228,0 +170749686878,226,0 +170749686927,227,0 +170749686977,216,0 +170749687026,216,0 +170749687074,216,0 +170749687122,217,0 +170749687170,218,0 +170749687218,217,0 +170749687266,219,0 +170749687314,220,0 +170749687363,222,0 +170749687411,222,0 +170749687461,224,0 +170749687510,225,0 +170749687558,226,0 +170749687606,225,0 +170749687654,227,0 +170749687704,227,0 +170749687753,230,0 +170749687803,228,0 +170749687851,227,0 +170749687900,216,0 +170749687948,216,0 +170749687996,217,0 +170749688044,217,0 +170749688094,218,0 +170749688143,220,0 +170749688191,220,0 +170749688239,221,0 +170749688287,222,0 +170749688335,223,0 +170749688382,223,0 +170749688430,226,0 +170749688478,227,0 +170749688526,227,0 +170749688574,228,0 +170749688624,228,0 +170749688672,229,0 +170749688720,227,0 +170749688768,227,0 +170749688816,217,0 +170749688863,216,0 +170749688911,216,0 +170749688959,217,0 +170749689007,218,0 +170749689055,219,0 +170749689104,220,0 +170749689154,220,0 +170749689203,222,0 +170749689251,223,0 +170749689301,224,0 +170749689350,224,0 +170749689398,226,0 +170749689446,228,0 +170749689496,226,0 +170749689545,227,0 +170749689595,227,0 +170749689644,227,0 +170749689692,227,0 +170749689740,217,0 +170749689790,215,0 +170749689838,216,0 +170749689886,216,0 +170749689933,218,0 +170749689981,219,0 +170749690029,219,0 +170749690077,220,0 +170749690127,221,0 +170749690175,221,0 +170749690224,222,0 +170749690274,224,0 +170749690323,225,0 +170749690373,225,0 +170749690422,225,0 +170749690472,227,0 +170749690521,226,0 +170749690569,227,0 +170749690619,227,0 +170749690667,217,0 +170749690716,217,0 +170749690764,219,0 +170749690812,220,0 +170749690862,219,0 +170749690910,220,0 +170749690959,222,0 +170749691007,224,0 +170749691055,224,0 +170749691103,223,0 +170749691151,226,0 +170749691199,225,0 +170749691247,227,0 +170749691295,228,0 +170749691345,227,0 +170749691393,229,0 +170749691441,228,0 +170749691490,227,0 +170749691540,227,0 +170749691589,219,0 +170749691637,219,0 +170749691685,219,0 +170749691734,220,0 +170749691782,221,0 +170749691830,222,0 +170749691878,222,0 +170749691928,223,0 +170749691976,223,0 +170749692024,224,0 +170749692073,226,0 +170749692123,226,0 +170749692171,228,0 +170749692219,227,0 +170749692268,228,0 +170749692316,228,0 +170749692364,228,0 +170749692412,228,0 +170749692460,229,0 +170749692509,218,0 +170749692557,218,0 +170749692607,219,0 +170749692655,220,0 +170749692702,221,0 +170749692750,221,0 +170749692798,223,0 +170749692846,223,0 +170749692894,224,0 +170749692943,225,0 +170749692991,225,0 +170749693039,226,0 +170749693087,228,0 +170749693135,228,0 +170749693185,230,0 +170749693234,231,0 +170749693284,229,0 +170749693333,229,0 +170749693383,228,0 +170749693431,223,0 +170749693480,219,0 +170749693530,220,0 +170749693578,222,0 +170749693626,221,0 +170749693675,225,0 +170749693723,224,0 +170749693771,224,0 +170749693821,225,0 +170749693869,226,0 +170749693917,227,0 +170749693965,228,0 +170749694014,230,0 +170749694062,228,0 +170749694112,227,0 +170749694161,229,0 +170749694209,227,0 +170749694259,229,0 +170749694307,227,0 +170749694355,218,0 +170749694403,220,0 +170749694450,220,0 +170749694498,221,0 +170749694546,222,0 +170749694594,224,0 +170749694642,225,0 +170749694690,224,0 +170749694738,226,0 +170749694787,227,0 +170749694835,228,0 +170749694883,227,0 +170749694931,228,0 +170749694979,228,0 +170749695027,228,0 +170749695076,227,0 +170749695124,227,0 +170749695173,228,0 +170749695221,228,0 +170749695271,223,0 +170749695319,217,0 +170749695367,218,0 +170749695415,221,0 +170749695464,221,0 +170749695514,222,0 +170749695563,224,0 +170749695611,224,0 +170749695659,227,0 +170749695707,226,0 +170749695755,228,0 +170749695803,226,0 +170749695853,227,0 +170749695902,228,0 +170749695952,230,0 +170749696000,228,0 +170749696048,227,0 +170749696097,229,0 +170749696145,228,0 +170749696195,226,0 +170749696244,217,0 +170749696292,217,0 +170749696340,218,0 +170749696388,219,0 +170749696437,222,0 +170749696485,223,0 +170749696533,222,0 +170749696583,223,0 +170749696632,225,0 +170749696680,226,0 +170749696728,226,0 +170749696776,227,0 +170749696826,226,0 +170749696874,226,0 +170749696922,228,0 +170749696970,229,0 +170749697018,227,0 +170749697066,228,0 +170749697115,226,0 +170749697163,217,0 +170749697211,216,0 +170749697259,215,0 +170749697307,217,0 +170749697355,218,0 +170749697403,220,0 +170749697451,221,0 +170749697499,220,0 +170749697546,221,0 +170749697594,222,0 +170749697644,223,0 +170749697692,224,0 +170749697740,226,0 +170749697788,228,0 +170749697836,226,0 +170749697885,228,0 +170749697933,228,0 +170749697981,228,0 +170749698029,227,0 +170749698077,216,0 +170749698125,215,0 +170749698175,215,0 +170749698223,215,0 +170749698271,215,0 +170749698319,216,0 +170749698367,216,0 +170749698415,216,0 +170749698464,217,0 +170749698514,217,0 +170749698562,219,0 +170749698611,220,0 +170749698660,222,0 +170749698708,222,0 +170749698756,224,0 +170749698806,225,0 +170749698856,225,0 +170749698905,225,0 +170749698953,226,0 +170749699001,218,0 +170749699049,215,0 +170749699097,216,0 +170749699145,216,0 +170749699195,217,0 +170749699244,217,0 +170749699292,217,0 +170749699342,219,0 +170749699390,219,0 +170749699437,222,0 +170749699487,222,0 +170749699535,222,0 +170749699584,224,0 +170749699632,225,0 +170749699680,226,0 +170749699728,229,0 +170749699776,226,0 +170749699824,226,0 +170749699872,227,0 +170749699922,219,0 +170749699971,216,0 +170749700019,217,0 +170749700069,216,0 +170749700118,216,0 +170749700166,218,0 +170749700216,219,0 +170749700265,219,0 +170749700315,220,0 +170749700364,221,0 +170749700413,222,0 +170749700460,223,0 +170749700508,224,0 +170749700558,225,0 +170749700606,226,0 +170749700654,227,0 +170749700702,227,0 +170749700750,227,0 +170749700798,227,0 +170749700846,217,0 +170749700894,215,0 +170749700942,216,0 +170749700990,216,0 +170749701039,218,0 +170749701087,219,0 +170749701135,221,0 +170749701183,221,0 +170749701233,223,0 +170749701280,224,0 +170749701330,225,0 +170749701380,227,0 +170749701429,225,0 +170749701477,227,0 +170749701525,227,0 +170749701573,227,0 +170749701621,227,0 +170749701670,227,0 +170749701720,227,0 +170749701769,217,0 +170749701817,216,0 +170749701865,216,0 +170749701913,216,0 +170749701963,217,0 +170749702012,218,0 +170749702062,219,0 +170749702111,220,0 +170749702161,221,0 +170749702210,223,0 +170749702258,224,0 +170749702306,224,0 +170749702354,225,0 +170749702402,226,0 +170749702450,227,0 +170749702498,228,0 +170749702547,228,0 +170749702595,228,0 +170749702643,228,0 +170749702691,228,0 +170749702739,216,0 +170749702787,216,0 +170749702835,217,0 +170749702883,218,0 +170749702933,218,0 +170749702982,218,0 +170749703030,219,0 +170749703080,220,0 +170749703128,221,0 +170749703177,224,0 +170749703225,223,0 +170749703275,224,0 +170749703323,227,0 +170749703372,228,0 +170749703420,227,0 +170749703468,228,0 +170749703516,228,0 +170749703564,228,0 +170749703611,226,0 +170749703659,217,0 +170749703707,217,0 +170749703755,218,0 +170749703803,219,0 +170749703853,219,0 +170749703901,221,0 +170749703949,221,0 +170749703998,224,0 +170749704047,222,0 +170749704095,223,0 +170749704145,225,0 +170749704195,225,0 +170749704244,226,0 +170749704292,227,0 +170749704341,228,0 +170749704391,228,0 +170749704439,226,0 +170749704486,227,0 +170749704534,227,0 +170749704584,217,0 +170749704632,216,0 +170749704680,216,0 +170749704729,217,0 +170749704777,218,0 +170749704826,220,0 +170749704874,220,0 +170749704922,222,0 +170749704970,223,0 +170749705018,223,0 +170749705066,224,0 +170749705115,226,0 +170749705165,227,0 +170749705213,227,0 +170749705261,229,0 +170749705309,227,0 +170749705357,228,0 +170749705404,228,0 +170749705452,225,0 +170749705500,217,0 +170749705550,217,0 +170749705598,219,0 +170749705646,219,0 +170749705695,222,0 +170749705745,222,0 +170749705793,222,0 +170749705841,223,0 +170749705889,224,0 +170749705938,225,0 +170749705986,227,0 +170749706036,229,0 +170749706084,227,0 +170749706132,228,0 +170749706180,227,0 +170749706228,227,0 +170749706277,228,0 +170749706325,226,0 +170749706373,226,0 +170749706423,218,0 +170749706470,219,0 +170749706518,219,0 +170749706566,220,0 +170749706616,221,0 +170749706665,222,0 +170749706713,224,0 +170749706761,224,0 +170749706811,225,0 +170749706859,225,0 +170749706907,227,0 +170749706955,226,0 +170749707004,228,0 +170749707052,228,0 +170749707102,229,0 +170749707151,228,0 +170749707201,226,0 +170749707250,239,0 +170749707298,227,0 +170749707346,217,0 +170749707394,216,0 +170749707442,217,0 +170749707490,218,0 +170749707538,220,0 +170749707586,221,0 +170749707634,221,0 +170749707684,222,0 +170749707732,223,0 +170749707781,224,0 +170749707831,224,0 +170749707879,226,0 +170749707928,226,0 +170749707976,226,0 +170749708024,227,0 +170749708072,229,0 +170749708120,227,0 +170749708168,227,0 +170749708217,227,0 +170749708265,218,0 +170749708315,216,0 +170749708363,216,0 +170749708412,216,0 +170749708462,216,0 +170749708511,217,0 +170749708561,219,0 +170749708609,220,0 +170749708658,221,0 +170749708708,222,0 +170749708757,222,0 +170749708805,222,0 +170749708855,225,0 +170749708903,225,0 +170749708952,225,0 +170749709000,226,0 +170749709048,227,0 +170749709096,227,0 +170749709146,228,0 +170749709194,217,0 +170749709243,216,0 +170749709291,216,0 +170749709341,216,0 +170749709389,217,0 +170749709437,218,0 +170749709486,217,0 +170749709536,221,0 +170749709585,222,0 +170749709635,223,0 +170749709684,224,0 +170749709732,224,0 +170749709782,225,0 +170749709831,226,0 +170749709879,227,0 +170749709929,227,0 +170749709978,227,0 +170749710028,229,0 +170749710076,228,0 +170749710124,218,0 +170749710172,216,0 +170749710221,216,0 +170749710269,217,0 +170749710319,218,0 +170749710368,219,0 +170749710416,221,0 +170749710464,221,0 +170749710513,222,0 +170749710561,222,0 +170749710609,224,0 +170749710657,225,0 +170749710707,225,0 +170749710754,228,0 +170749710802,228,0 +170749710852,227,0 +170749710900,229,0 +170749710948,228,0 +170749710995,227,0 +170749711043,218,0 +170749711091,216,0 +170749711139,216,0 +170749711187,217,0 +170749711235,218,0 +170749711284,220,0 +170749711332,220,0 +170749711380,221,0 +170749711428,222,0 +170749711476,222,0 +170749711524,224,0 +170749711573,226,0 +170749711623,227,0 +170749711670,226,0 +170749711720,226,0 +170749711769,226,0 +170749711817,225,0 +170749711865,227,0 +170749711913,227,0 +170749711961,226,0 +170749712009,215,0 +170749712057,215,0 +170749712106,216,0 +170749712154,217,0 +170749712202,217,0 +170749712250,218,0 +170749712298,219,0 +170749712346,220,0 +170749712395,221,0 +170749712443,221,0 +170749712491,222,0 +170749712539,223,0 +170749712589,225,0 +170749712638,225,0 +170749712686,224,0 +170749712734,225,0 +170749712783,223,0 +170749712832,226,0 +170749712880,228,0 +170749712928,216,0 +170749712976,215,0 +170749713024,215,0 +170749713074,215,0 +170749713122,215,0 +170749713170,216,0 +170749713218,216,0 +170749713267,219,0 +170749713315,219,0 +170749713363,218,0 +170749713411,220,0 +170749713459,222,0 +170749713509,223,0 +170749713557,222,0 +170749713606,224,0 +170749713654,225,0 +170749713702,225,0 +170749713750,226,0 +170749713798,227,0 +170749713846,217,0 +170749713896,215,0 +170749713943,215,0 +170749713993,216,0 +170749714043,216,0 +170749714091,216,0 +170749714138,217,0 +170749714188,217,0 +170749714237,218,0 +170749714287,218,0 +170749714336,219,0 +170749714386,220,0 +170749714435,220,0 +170749714483,223,0 +170749714531,225,0 +170749714581,223,0 +170749714629,224,0 +170749714677,224,0 +170749714726,223,0 +170749714774,224,0 +170749714824,225,0 +170749714872,226,0 +170749714920,227,0 +170749714969,227,0 +170749715019,228,0 +170749715067,227,0 +170749715115,227,0 +170749715163,228,0 +170749715210,219,0 +170749715260,217,0 +170749715308,218,0 +170749715356,219,0 +170749715403,220,0 +170749715453,221,0 +170749715501,222,0 +170749715549,222,0 +170749715597,225,0 +170749715644,223,0 +170749715692,225,0 +170749715740,227,0 +170749715788,227,0 +170749715836,228,0 +170749715884,231,0 +170749715932,227,0 +170749715980,228,0 +170749716029,228,0 +170749716077,228,0 +170749716126,228,0 +170749716174,218,0 +170749716222,219,0 +170749716270,219,0 +170749716320,221,0 +170749716368,222,0 +170749716417,223,0 +170749716465,226,0 +170749716513,225,0 +170749716562,226,0 +170749716612,226,0 +170749716661,227,0 +170749716711,227,0 +170749716760,228,0 +170749716810,229,0 +170749716858,229,0 +170749716906,229,0 +170749716954,226,0 +170749717003,228,0 +170749717051,227,0 +170749717099,218,0 +170749717147,218,0 +170749717197,220,0 +170749717245,220,0 +170749717294,221,0 +170749717342,222,0 +170749717390,223,0 +170749717440,225,0 +170749717488,226,0 +170749717536,225,0 +170749717584,227,0 +170749717632,227,0 +170749717681,229,0 +170749717731,229,0 +170749717779,231,0 +170749717827,230,0 +170749717875,231,0 +170749717924,231,0 +170749717972,226,0 +170749718020,217,0 +170749718069,218,0 +170749718117,219,0 +170749718167,219,0 +170749718216,221,0 +170749718264,221,0 +170749718314,222,0 +170749718362,224,0 +170749718410,225,0 +170749718459,226,0 +170749718509,226,0 +170749718558,227,0 +170749718606,227,0 +170749718656,228,0 +170749718705,228,0 +170749718755,229,0 +170749718803,229,0 +170749718851,228,0 +170749718899,228,0 +170749718947,217,0 +170749718995,216,0 +170749719044,218,0 +170749719092,219,0 +170749719142,220,0 +170749719191,221,0 +170749719239,221,0 +170749719287,222,0 +170749719335,222,0 +170749719385,223,0 +170749719434,224,0 +170749719484,227,0 +170749719531,226,0 +170749719579,229,0 +170749719627,228,0 +170749719677,228,0 +170749719726,229,0 +170749719774,229,0 +170749719824,227,0 +170749719872,217,0 +170749719920,216,0 +170749719968,216,0 +170749720017,216,0 +170749720065,219,0 +170749720115,219,0 +170749720163,220,0 +170749720212,221,0 +170749720262,221,0 +170749720311,223,0 +170749720361,224,0 +170749720410,224,0 +170749720460,225,0 +170749720508,226,0 +170749720558,227,0 +170749720607,228,0 +170749720657,228,0 +170749720705,227,0 +170749720753,227,0 +170749720800,217,0 +170749720848,216,0 +170749720896,216,0 +170749720944,216,0 +170749720992,217,0 +170749721040,219,0 +170749721088,219,0 +170749721136,219,0 +170749721184,219,0 +170749721234,222,0 +170749721283,222,0 +170749721331,223,0 +170749721379,225,0 +170749721429,225,0 +170749721477,225,0 +170749721525,225,0 +170749721573,226,0 +170749721622,229,0 +170749721670,228,0 +170749721720,218,0 +170749721769,216,0 +170749721819,217,0 +170749721867,217,0 +170749721915,217,0 +170749721962,218,0 +170749722010,218,0 +170749722058,219,0 +170749722106,220,0 +170749722154,221,0 +170749722202,223,0 +170749722250,224,0 +170749722298,224,0 +170749722346,226,0 +170749722396,227,0 +170749722445,226,0 +170749722493,226,0 +170749722541,226,0 +170749722589,226,0 +170749722637,218,0 +170749722687,216,0 +170749722735,216,0 +170749722784,217,0 +170749722834,217,0 +170749722883,218,0 +170749722933,219,0 +170749722981,220,0 +170749723029,222,0 +170749723077,222,0 +170749723125,223,0 +170749723173,224,0 +170749723220,226,0 +170749723270,227,0 +170749723320,227,0 +170749723369,228,0 +170749723417,228,0 +170749723465,228,0 +170749723513,227,0 +170749723563,218,0 +170749723610,217,0 +170749723658,216,0 +170749723708,218,0 +170749723758,220,0 +170749723806,219,0 +170749723853,219,0 +170749723901,221,0 +170749723949,222,0 +170749723999,221,0 +170749724047,218,0 +170749724095,225,0 +170749724143,226,0 +170749724191,226,0 +170749724240,228,0 +170749724288,229,0 +170749724336,231,0 +170749724384,230,0 +170749724432,227,0 +170749724480,217,0 +170749724528,217,0 +170749724576,217,0 +170749724624,218,0 +170749724672,216,0 +170749724722,220,0 +170749724770,222,0 +170749724818,221,0 +170749724867,223,0 +170749724917,224,0 +170749724967,226,0 +170749725015,227,0 +170749725064,228,0 +170749725112,226,0 +170749725160,228,0 +170749725208,228,0 +170749725256,228,0 +170749725304,227,0 +170749725353,228,0 +170749725401,226,0 +170749725451,217,0 +170749725500,218,0 +170749725548,219,0 +170749725596,220,0 +170749725646,221,0 +170749725696,222,0 +170749725744,221,0 +170749725793,222,0 +170749725843,224,0 +170749725891,226,0 +170749725939,229,0 +170749725986,227,0 +170749726034,228,0 +170749726082,227,0 +170749726130,229,0 +170749726178,227,0 +170749726226,229,0 +170749726275,228,0 +170749726323,226,0 +170749726371,218,0 +170749726419,218,0 +170749726469,220,0 +170749726516,221,0 +170749726564,222,0 +170749726612,222,0 +170749726662,223,0 +170749726710,224,0 +170749726757,224,0 +170749726805,225,0 +170749726853,226,0 +170749726901,226,0 +170749726949,226,0 +170749726998,228,0 +170749727046,227,0 +170749727094,228,0 +170749727142,229,0 +170749727190,228,0 +170749727238,230,0 +170749727286,222,0 +170749727334,221,0 +170749727381,221,0 +170749727429,222,0 +170749727477,224,0 +170749727525,224,0 +170749727575,224,0 +170749727622,225,0 +170749727672,227,0 +170749727720,226,0 +170749727769,226,0 +170749727817,236,0 +170749727867,228,0 +170749727916,228,0 +170749727964,228,0 +170749728012,227,0 +170749728060,228,0 +170749728108,228,0 +170749728155,228,0 +170749728203,219,0 +170749728251,219,0 +170749728299,222,0 +170749728347,221,0 +170749728395,223,0 +170749728443,223,0 +170749728491,225,0 +170749728539,225,0 +170749728588,227,0 +170749728636,226,0 +170749728684,227,0 +170749728732,228,0 +170749728779,228,0 +170749728827,229,0 +170749728875,224,0 +170749728923,228,0 +170749728971,229,0 +170749729019,228,0 +170749729068,228,0 +170749729116,225,0 +170749729166,216,0 +170749729214,217,0 +170749729262,218,0 +170749729309,219,0 +170749729357,221,0 +170749729405,221,0 +170749729455,222,0 +170749729503,224,0 +170749729550,223,0 +170749729598,228,0 +170749729646,225,0 +170749729694,226,0 +170749729742,227,0 +170749729790,228,0 +170749729839,227,0 +170749729889,227,0 +170749729937,228,0 +170749729985,227,0 +170749730033,226,0 +170749730081,216,0 +170749730128,216,0 +170749730176,217,0 +170749730224,218,0 +170749730272,218,0 +170749730320,219,0 +170749730370,220,0 +170749730419,222,0 +170749730469,223,0 +170749730518,223,0 +170749730566,225,0 +170749730616,225,0 +170749730664,226,0 +170749730712,227,0 +170749730761,227,0 +170749730809,228,0 +170749730859,228,0 +170749730908,228,0 +170749730956,226,0 +170749731004,216,0 +170749731054,216,0 +170749731103,216,0 +170749731151,216,0 +170749731199,217,0 +170749731247,217,0 +170749731295,218,0 +170749731344,219,0 +170749731394,220,0 +170749731442,221,0 +170749731489,223,0 +170749731537,223,0 +170749731585,224,0 +170749731633,225,0 +170749731681,227,0 +170749731729,226,0 +170749731777,227,0 +170749731825,227,0 +170749731873,226,0 +170749731920,217,0 +170749731968,216,0 +170749732016,216,0 +170749732064,216,0 +170749732112,217,0 +170749732160,217,0 +170749732209,217,0 +170749732259,218,0 +170749732307,218,0 +170749732355,220,0 +170749732403,222,0 +170749732451,222,0 +170749732500,224,0 +170749732548,226,0 +170749732596,226,0 +170749732644,226,0 +170749732692,226,0 +170749732740,229,0 +170749732788,227,0 +170749732836,219,0 +170749732885,217,0 +170749732933,217,0 +170749732981,217,0 +170749733029,217,0 +170749733078,218,0 +170749733128,218,0 +170749733177,220,0 +170749733225,220,0 +170749733275,224,0 +170749733323,224,0 +170749733371,224,0 +170749733419,224,0 +170749733466,226,0 +170749733516,227,0 +170749733564,226,0 +170749733612,228,0 +170749733660,226,0 +170749733707,228,0 +170749733757,226,0 +170749733805,216,0 +170749733854,217,0 +170749733902,217,0 +170749733950,217,0 +170749733998,218,0 +170749734046,220,0 +170749734094,220,0 +170749734142,221,0 +170749734189,223,0 +170749734239,225,0 +170749734287,225,0 +170749734335,225,0 +170749734383,226,0 +170749734430,226,0 +170749734478,224,0 +170749734526,229,0 +170749734574,228,0 +170749734622,230,0 +170749734670,225,0 +170749734718,217,0 +170749734765,216,0 +170749734815,217,0 +170749734863,217,0 +170749734912,217,0 +170749734960,219,0 +170749735010,220,0 +170749735058,221,0 +170749735107,222,0 +170749735155,220,0 +170749735203,224,0 +170749735251,223,0 +170749735300,227,0 +170749735348,226,0 +170749735396,226,0 +170749735444,228,0 +170749735492,228,0 +170749735542,224,0 +170749735590,227,0 +170749735639,217,0 +170749735687,216,0 +170749735735,216,0 +170749735783,216,0 +170749735831,217,0 +170749735880,217,0 +170749735928,217,0 +170749735976,217,0 +170749736024,218,0 +170749736072,219,0 +170749736120,220,0 +170749736168,222,0 +170749736215,223,0 +170749736263,225,0 +170749736311,223,0 +170749736359,225,0 +170749736407,226,0 +170749736455,225,0 +170749736503,226,0 +170749736552,217,0 +170749736600,216,0 +170749736648,217,0 +170749736698,218,0 +170749736746,220,0 +170749736794,221,0 +170749736841,220,0 +170749736889,220,0 +170749736937,222,0 +170749736987,222,0 +170749737035,224,0 +170749737083,226,0 +170749737130,227,0 +170749737180,231,0 +170749737228,228,0 +170749737276,227,0 +170749737324,226,0 +170749737371,230,0 +170749737421,226,0 +170749737469,221,0 +170749737517,216,0 +170749737565,218,0 +170749737612,219,0 +170749737660,221,0 +170749737708,220,0 +170749737758,221,0 +170749737807,223,0 +170749737857,222,0 +170749737905,224,0 +170749737953,224,0 +170749738001,226,0 +170749738049,226,0 +170749738097,228,0 +170749738146,227,0 +170749738194,227,0 +170749738243,228,0 +170749738293,227,0 +170749738341,227,0 +170749738390,227,0 +170749738438,217,0 +170749738486,217,0 +170749738536,219,0 +170749738584,219,0 +170749738632,222,0 +170749738680,225,0 +170749738729,222,0 +170749738779,225,0 +170749738827,225,0 +170749738876,224,0 +170749738926,226,0 +170749738975,227,0 +170749739025,227,0 +170749739073,228,0 +170749739121,226,0 +170749739169,227,0 +170749739217,229,0 +170749739266,228,0 +170749739316,227,0 +170749739364,217,0 +170749739413,217,0 +170749739461,217,0 +170749739509,219,0 +170749739557,220,0 +170749739605,222,0 +170749739653,222,0 +170749739703,223,0 +170749739750,225,0 +170749739798,225,0 +170749739846,226,0 +170749739896,226,0 +170749739944,228,0 +170749739993,228,0 +170749740043,228,0 +170749740093,228,0 +170749740140,229,0 +170749740190,228,0 +170749740238,226,0 +170749740287,218,0 +170749740335,217,0 +170749740385,219,0 +170749740434,219,0 +170749740482,222,0 +170749740532,223,0 +170749740581,226,0 +170749740629,224,0 +170749740677,226,0 +170749740725,225,0 +170749740773,224,0 +170749740821,228,0 +170749740869,227,0 +170749740917,227,0 +170749740967,227,0 +170749741015,228,0 +170749741064,229,0 +170749741112,231,0 +170749741160,229,0 +170749741208,218,0 +170749741256,217,0 +170749741304,217,0 +170749741353,220,0 +170749741401,220,0 +170749741451,221,0 +170749741501,221,0 +170749741550,223,0 +170749741600,223,0 +170749741648,224,0 +170749741696,225,0 +170749741744,225,0 +170749741793,228,0 +170749741841,228,0 +170749741889,227,0 +170749741937,226,0 +170749741986,226,0 +170749742034,226,0 +170749742083,227,0 +170749742133,217,0 +170749742181,217,0 +170749742229,216,0 +170749742277,218,0 +170749742325,219,0 +170749742372,220,0 +170749742420,220,0 +170749742468,222,0 +170749742516,221,0 +170749742564,222,0 +170749742612,224,0 +170749742660,224,0 +170749742709,226,0 +170749742757,226,0 +170749742805,226,0 +170749742853,228,0 +170749742901,227,0 +170749742951,228,0 +170749742998,226,0 +170749743048,218,0 +170749743096,216,0 +170749743146,217,0 +170749743194,218,0 +170749743241,219,0 +170749743290,220,0 +170749743339,223,0 +170749743389,222,0 +170749743438,224,0 +170749743486,224,0 +170749743534,225,0 +170749743584,228,0 +170749743632,228,0 +170749743680,227,0 +170749743728,227,0 +170749743777,228,0 +170749743825,227,0 +170749743875,229,0 +170749743923,228,0 +170749743970,218,0 +170749744018,216,0 +170749744066,217,0 +170749744114,218,0 +170749744162,218,0 +170749744210,217,0 +170749744260,220,0 +170749744308,221,0 +170749744356,222,0 +170749744404,223,0 +170749744452,224,0 +170749744500,227,0 +170749744549,227,0 +170749744599,228,0 +170749744648,227,0 +170749744698,227,0 +170749744746,230,0 +170749744793,228,0 +170749744841,225,0 +170749744891,219,0 +170749744939,216,0 +170749744988,217,0 +170749745036,218,0 +170749745084,218,0 +170749745132,220,0 +170749745180,220,0 +170749745230,222,0 +170749745278,222,0 +170749745327,225,0 +170749745375,226,0 +170749745423,226,0 +170749745473,226,0 +170749745521,227,0 +170749745570,229,0 +170749745620,227,0 +170749745668,227,0 +170749745716,230,0 +170749745765,227,0 +170749745813,222,0 +170749745861,216,0 +170749745909,216,0 +170749745957,218,0 +170749746005,218,0 +170749746053,220,0 +170749746101,221,0 +170749746149,221,0 +170749746199,223,0 +170749746246,223,0 +170749746296,224,0 +170749746344,224,0 +170749746392,227,0 +170749746440,228,0 +170749746489,227,0 +170749746539,228,0 +170749746588,232,0 +170749746636,228,0 +170749746686,227,0 +170749746735,228,0 +170749746785,217,0 +170749746833,217,0 +170749746883,217,0 +170749746931,218,0 +170749746979,220,0 +170749747026,221,0 +170749747074,221,0 +170749747122,223,0 +170749747170,223,0 +170749747218,224,0 +170749747266,225,0 +170749747314,225,0 +170749747364,226,0 +170749747411,227,0 +170749747459,228,0 +170749747507,229,0 +170749747555,225,0 +170749747605,227,0 +170749747653,228,0 +170749747701,217,0 +170749747749,217,0 +170749747797,216,0 +170749747845,217,0 +170749747893,217,0 +170749747941,217,0 +170749747990,218,0 +170749748038,218,0 +170749748088,220,0 +170749748136,220,0 +170749748184,221,0 +170749748233,223,0 +170749748281,224,0 +170749748329,225,0 +170749748377,226,0 +170749748425,221,0 +170749748475,226,0 +170749748524,227,0 +170749748574,227,0 +170749748622,218,0 +170749748670,216,0 +170749748717,217,0 +170749748765,217,0 +170749748813,217,0 +170749748863,217,0 +170749748911,218,0 +170749748959,220,0 +170749749007,221,0 +170749749055,223,0 +170749749103,223,0 +170749749152,224,0 +170749749202,225,0 +170749749251,227,0 +170749749299,227,0 +170749749349,226,0 +170749749397,229,0 +170749749445,229,0 +170749749493,228,0 +170749749540,218,0 +170749749590,216,0 +170749749638,217,0 +170749749686,219,0 +170749749735,220,0 +170749749783,221,0 +170749749833,222,0 +170749749883,223,0 +170749749931,225,0 +170749749978,225,0 +170749750026,226,0 +170749750076,226,0 +170749750126,226,0 +170749750175,226,0 +170749750225,227,0 +170749750274,229,0 +170749750324,229,0 +170749750373,228,0 +170749750421,228,0 +170749750471,218,0 +170749750519,217,0 +170749750568,217,0 +170749750616,219,0 +170749750666,219,0 +170749750715,220,0 +170749750765,223,0 +170749750814,224,0 +170749750862,224,0 +170749750912,224,0 +170749750960,225,0 +170749751009,227,0 +170749751057,227,0 +170749751105,229,0 +170749751153,227,0 +170749751201,227,0 +170749751250,228,0 +170749751298,227,0 +170749751346,228,0 +170749751394,218,0 +170749751442,216,0 +170749751490,217,0 +170749751538,217,0 +170749751587,218,0 +170749751635,220,0 +170749751683,220,0 +170749751731,223,0 +170749751779,222,0 +170749751826,222,0 +170749751875,224,0 +170749751922,225,0 +170749751970,225,0 +170749752020,225,0 +170749752070,230,0 +170749752118,227,0 +170749752167,226,0 +170749752217,229,0 +170749752265,227,0 +170749752312,217,0 +170749752360,216,0 +170749752410,217,0 +170749752458,219,0 +170749752508,220,0 +170749752555,220,0 +170749752603,221,0 +170749752651,222,0 +170749752699,222,0 +170749752749,224,0 +170749752798,224,0 +170749752848,224,0 +170749752896,226,0 +170749752944,227,0 +170749752993,227,0 +170749753041,227,0 +170749753089,227,0 +170749753137,228,0 +170749753187,227,0 +170749753235,219,0 +170749753283,216,0 +170749753331,216,0 +170749753380,218,0 +170749753428,219,0 +170749753476,220,0 +170749753525,220,0 +170749753573,221,0 +170749753623,221,0 +170749753671,223,0 +170749753719,223,0 +170749753768,223,0 +170749753816,225,0 +170749753866,225,0 +170749753914,226,0 +170749753962,226,0 +170749754010,228,0 +170749754058,226,0 +170749754106,228,0 +170749754155,222,0 +170749754205,216,0 +170749754254,218,0 +170749754304,219,0 +170749754353,220,0 +170749754403,222,0 +170749754451,222,0 +170749754500,223,0 +170749754548,224,0 +170749754598,225,0 +170749754646,226,0 +170749754694,227,0 +170749754741,227,0 +170749754789,228,0 +170749754837,228,0 +170749754885,227,0 +170749754933,228,0 +170749754981,228,0 +170749755030,227,0 +170749755080,224,0 +170749755129,216,0 +170749755177,218,0 +170749755225,219,0 +170749755275,220,0 +170749755323,221,0 +170749755371,221,0 +170749755420,223,0 +170749755470,225,0 +170749755519,225,0 +170749755568,225,0 +170749755616,225,0 +170749755664,227,0 +170749755712,227,0 +170749755762,227,0 +170749755811,228,0 +170749755861,228,0 +170749755909,228,0 +170749755958,228,0 +170749756006,227,0 +170749756054,217,0 +170749756104,218,0 +170749756152,218,0 +170749756201,220,0 +170749756249,220,0 +170749756297,222,0 +170749756345,221,0 +170749756395,223,0 +170749756443,225,0 +170749756491,225,0 +170749756540,225,0 +170749756588,226,0 +170749756636,228,0 +170749756684,227,0 +170749756732,229,0 +170749756780,228,0 +170749756828,229,0 +170749756877,228,0 +170749756925,227,0 +170749756975,217,0 +170749757023,218,0 +170749757071,219,0 +170749757119,220,0 +170749757167,220,0 +170749757215,221,0 +170749757264,220,0 +170749757312,223,0 +170749757360,223,0 +170749757408,225,0 +170749757457,225,0 +170749757507,226,0 +170749757556,225,0 +170749757606,224,0 +170749757654,227,0 +170749757702,226,0 +170749757751,228,0 +170749757799,227,0 +170749757849,227,0 +170749757897,218,0 +170749757946,218,0 +170749757996,219,0 +170749758044,220,0 +170749758092,220,0 +170749758140,223,0 +170749758188,220,0 +170749758236,224,0 +170749758285,223,0 +170749758333,226,0 +170749758383,224,0 +170749758431,226,0 +170749758480,227,0 +170749758528,227,0 +170749758578,228,0 +170749758626,228,0 +170749758674,225,0 +170749758722,228,0 +170749758770,227,0 +170749758818,219,0 +170749758865,218,0 +170749758913,219,0 +170749758963,221,0 +170749759013,223,0 +170749759061,222,0 +170749759109,225,0 +170749759158,224,0 +170749759208,226,0 +170749759255,224,0 +170749759305,226,0 +170749759353,227,0 +170749759401,227,0 +170749759449,225,0 +170749759497,229,0 +170749759546,230,0 +170749759595,228,0 +170749759644,228,0 +170749759692,228,0 +170749759742,218,0 +170749759791,218,0 +170749759839,220,0 +170749759887,220,0 +170749759937,222,0 +170749759986,225,0 +170749760036,224,0 +170749760084,224,0 +170749760132,226,0 +170749760180,226,0 +170749760228,228,0 +170749760275,227,0 +170749760323,226,0 +170749760371,229,0 +170749760421,228,0 +170749760469,228,0 +170749760516,229,0 +170749760564,227,0 +170749760612,228,0 +170749760660,218,0 +170749760708,215,0 +170749760756,217,0 +170749760804,218,0 +170749760852,219,0 +170749760902,220,0 +170749760949,220,0 +170749760997,222,0 +170749761046,223,0 +170749761094,224,0 +170749761141,224,0 +170749761191,225,0 +170749761239,226,0 +170749761287,227,0 +170749761335,227,0 +170749761383,229,0 +170749761431,229,0 +170749761479,228,0 +170749761527,227,0 +170749761575,227,0 +170749761623,216,0 +170749761672,216,0 +170749761722,216,0 +170749761770,217,0 +170749761819,217,0 +170749761867,218,0 +170749761915,219,0 +170749761963,221,0 +170749762011,222,0 +170749762059,222,0 +170749762107,224,0 +170749762155,226,0 +170749762203,227,0 +170749762251,227,0 +170749762300,228,0 +170749762348,228,0 +170749762396,229,0 +170749762444,228,0 +170749762492,228,0 +170749762539,216,0 +170749762587,216,0 +170749762637,216,0 +170749762686,216,0 +170749762734,217,0 +170749762782,217,0 +170749762830,218,0 +170749762880,219,0 +170749762928,219,0 +170749762976,220,0 +170749763025,222,0 +170749763073,223,0 +170749763121,224,0 +170749763169,224,0 +170749763217,226,0 +170749763265,226,0 +170749763313,226,0 +170749763361,226,0 +170749763411,226,0 +170749763458,216,0 +170749763508,215,0 +170749763556,216,0 +170749763604,216,0 +170749763653,216,0 +170749763701,216,0 +170749763749,217,0 +170749763799,217,0 +170749763848,217,0 +170749763896,218,0 +170749763945,218,0 +170749763993,219,0 +170749764041,221,0 +170749764089,221,0 +170749764137,222,0 +170749764187,223,0 +170749764234,224,0 +170749764282,224,0 +170749764330,229,0 +170749764380,217,0 +170749764427,216,0 +170749764475,216,0 +170749764523,216,0 +170749764571,216,0 +170749764619,216,0 +170749764667,217,0 +170749764715,217,0 +170749764763,218,0 +170749764811,219,0 +170749764858,220,0 +170749764906,221,0 +170749764954,223,0 +170749765002,223,0 +170749765050,224,0 +170749765098,225,0 +170749765148,225,0 +170749765197,225,0 +170749765245,228,0 +170749765295,221,0 +170749765342,216,0 +170749765390,216,0 +170749765438,217,0 +170749765488,217,0 +170749765537,216,0 +170749765587,217,0 +170749765635,218,0 +170749765683,219,0 +170749765732,220,0 +170749765780,224,0 +170749765828,222,0 +170749765876,223,0 +170749765924,224,0 +170749765972,224,0 +170749766020,226,0 +170749766068,226,0 +170749766116,226,0 +170749766164,229,0 +170749766212,227,0 +170749766261,217,0 +170749766309,217,0 +170749766357,218,0 +170749766405,218,0 +170749766453,219,0 +170749766503,220,0 +170749766551,220,0 +170749766599,222,0 +170749766647,223,0 +170749766696,223,0 +170749766744,225,0 +170749766794,225,0 +170749766842,226,0 +170749766890,224,0 +170749766939,227,0 +170749766989,227,0 +170749767037,227,0 +170749767085,227,0 +170749767134,229,0 +170749767182,217,0 +170749767232,217,0 +170749767281,217,0 +170749767329,219,0 +170749767379,219,0 +170749767427,221,0 +170749767476,222,0 +170749767524,222,0 +170749767572,223,0 +170749767622,225,0 +170749767670,225,0 +170749767719,226,0 +170749767769,225,0 +170749767817,227,0 +170749767866,228,0 +170749767914,230,0 +170749767964,229,0 +170749768013,229,0 +170749768061,227,0 +170749768111,217,0 +170749768159,217,0 +170749768208,218,0 +170749768256,219,0 +170749768304,219,0 +170749768352,220,0 +170749768400,220,0 +170749768449,222,0 +170749768497,222,0 +170749768545,223,0 +170749768593,223,0 +170749768641,225,0 +170749768691,226,0 +170749768740,226,0 +170749768788,227,0 +170749768838,226,0 +170749768886,227,0 +170749768935,228,0 +170749768985,226,0 +170749769034,218,0 +170749769082,216,0 +170749769130,218,0 +170749769180,219,0 +170749769228,220,0 +170749769276,221,0 +170749769324,224,0 +170749769372,223,0 +170749769421,223,0 +170749769471,226,0 +170749769519,225,0 +170749769567,225,0 +170749769616,228,0 +170749769666,226,0 +170749769714,228,0 +170749769763,228,0 +170749769811,227,0 +170749769859,230,0 +170749769909,226,0 +170749769957,220,0 +170749770006,220,0 +170749770056,223,0 +170749770104,223,0 +170749770152,222,0 +170749770201,225,0 +170749770251,224,0 +170749770300,226,0 +170749770350,226,0 +170749770399,227,0 +170749770447,228,0 +170749770497,229,0 +170749770545,228,0 +170749770595,230,0 +170749770644,229,0 +170749770692,228,0 +170749770742,229,0 +170749770791,228,0 +170749770839,226,0 +170749770887,222,0 +170749770935,221,0 +170749770983,223,0 +170749771033,224,0 +170749771082,224,0 +170749771132,226,0 +170749771179,226,0 +170749771229,227,0 +170749771279,227,0 +170749771327,228,0 +170749771375,228,0 +170749771424,228,0 +170749771472,228,0 +170749771520,229,0 +170749771569,228,0 +170749771617,228,0 +170749771665,228,0 +170749771713,228,0 +170749771763,227,0 +170749771811,221,0 +170749771859,221,0 +170749771907,221,0 +170749771955,222,0 +170749772003,223,0 +170749772052,224,0 +170749772100,225,0 +170749772150,225,0 +170749772198,226,0 +170749772246,227,0 +170749772293,227,0 +170749772341,227,0 +170749772389,228,0 +170749772437,230,0 +170749772485,227,0 +170749772533,228,0 +170749772581,228,0 +170749772629,228,0 +170749772677,228,0 +170749772724,224,0 +170749772772,216,0 +170749772820,216,0 +170749772870,218,0 +170749772918,219,0 +170749772966,219,0 +170749773013,220,0 +170749773061,222,0 +170749773109,222,0 +170749773157,224,0 +170749773205,224,0 +170749773255,225,0 +170749773302,226,0 +170749773350,227,0 +170749773400,227,0 +170749773448,228,0 +170749773496,228,0 +170749773543,228,0 +170749773591,228,0 +170749773641,226,0 +170749773689,216,0 +170749773737,218,0 +170749773785,217,0 +170749773833,217,0 +170749773881,218,0 +170749773929,219,0 +170749773979,221,0 +170749774028,221,0 +170749774078,221,0 +170749774125,223,0 +170749774173,225,0 +170749774223,224,0 +170749774271,225,0 +170749774319,227,0 +170749774368,227,0 +170749774418,227,0 +170749774466,228,0 +170749774514,227,0 +170749774562,227,0 +170749774611,216,0 +170749774659,216,0 +170749774707,216,0 +170749774755,217,0 +170749774805,217,0 +170749774853,217,0 +170749774901,218,0 +170749774950,220,0 +170749774998,220,0 +170749775048,222,0 +170749775096,223,0 +170749775144,224,0 +170749775192,224,0 +170749775240,226,0 +170749775288,226,0 +170749775335,227,0 +170749775383,227,0 +170749775431,227,0 +170749775481,227,0 +170749775530,219,0 +170749775578,216,0 +170749775626,217,0 +170749775674,218,0 +170749775724,219,0 +170749775772,219,0 +170749775822,222,0 +170749775870,223,0 +170749775917,223,0 +170749775965,224,0 +170749776013,226,0 +170749776061,223,0 +170749776109,226,0 +170749776157,227,0 +170749776205,227,0 +170749776253,228,0 +170749776301,228,0 +170749776349,228,0 +170749776397,228,0 +170749776445,217,0 +170749776495,216,0 +170749776544,216,0 +170749776592,216,0 +170749776642,216,0 +170749776690,217,0 +170749776739,218,0 +170749776787,219,0 +170749776835,219,0 +170749776883,221,0 +170749776933,222,0 +170749776980,224,0 +170749777028,226,0 +170749777078,226,0 +170749777127,225,0 +170749777175,226,0 +170749777225,227,0 +170749777273,229,0 +170749777321,227,0 +170749777370,217,0 +170749777418,216,0 +170749777466,216,0 +170749777514,216,0 +170749777562,217,0 +170749777612,217,0 +170749777660,217,0 +170749777709,218,0 +170749777757,219,0 +170749777805,221,0 +170749777853,221,0 +170749777903,223,0 +170749777951,224,0 +170749777999,224,0 +170749778046,226,0 +170749778094,225,0 +170749778142,227,0 +170749778192,227,0 +170749778240,230,0 +170749778289,228,0 +170749778337,218,0 +170749778385,217,0 +170749778433,218,0 +170749778481,219,0 +170749778529,220,0 +170749778579,220,0 +170749778626,221,0 +170749778676,221,0 +170749778726,224,0 +170749778775,224,0 +170749778825,224,0 +170749778874,226,0 +170749778922,226,0 +170749778970,227,0 +170749779018,227,0 +170749779066,226,0 +170749779114,228,0 +170749779162,230,0 +170749779210,228,0 +170749779258,217,0 +170749779307,217,0 +170749779355,218,0 +170749779405,221,0 +170749779453,220,0 +170749779501,221,0 +170749779549,222,0 +170749779597,223,0 +170749779646,223,0 +170749779694,225,0 +170749779742,224,0 +170749779790,227,0 +170749779838,226,0 +170749779888,226,0 +170749779936,229,0 +170749779984,228,0 +170749780032,230,0 +170749780080,229,0 +170749780129,227,0 +170749780179,218,0 +170749780228,218,0 +170749780276,220,0 +170749780326,220,0 +170749780374,221,0 +170749780422,221,0 +170749780470,223,0 +170749780519,226,0 +170749780569,224,0 +170749780618,225,0 +170749780666,227,0 +170749780716,226,0 +170749780764,228,0 +170749780812,229,0 +170749780860,227,0 +170749780908,228,0 +170749780956,228,0 +170749781003,227,0 +170749781051,227,0 +170749781099,218,0 +170749781149,217,0 +170749781199,219,0 +170749781246,219,0 +170749781296,220,0 +170749781346,222,0 +170749781394,221,0 +170749781441,224,0 +170749781489,223,0 +170749781539,226,0 +170749781589,226,0 +170749781638,225,0 +170749781686,228,0 +170749781734,228,0 +170749781784,228,0 +170749781831,229,0 +170749781879,227,0 +170749781929,227,0 +170749781977,227,0 +170749782025,218,0 +170749782073,216,0 +170749782122,217,0 +170749782172,219,0 +170749782220,221,0 +170749782268,221,0 +170749782317,222,0 +170749782367,222,0 +170749782415,223,0 +170749782463,225,0 +170749782511,225,0 +170749782560,226,0 +170749782610,227,0 +170749782659,227,0 +170749782709,228,0 +170749782757,230,0 +170749782806,227,0 +170749782856,228,0 +170749782906,227,0 +170749782955,218,0 +170749783005,217,0 +170749783054,219,0 +170749783104,220,0 +170749783153,220,0 +170749783201,220,0 +170749783249,221,0 +170749783297,222,0 +170749783345,223,0 +170749783393,223,0 +170749783441,225,0 +170749783489,226,0 +170749783539,225,0 +170749783588,226,0 +170749783636,227,0 +170749783684,228,0 +170749783734,228,0 +170749783783,228,0 +170749783831,227,0 +170749783881,218,0 +170749783929,216,0 +170749783978,218,0 +170749784028,218,0 +170749784076,220,0 +170749784124,220,0 +170749784173,223,0 +170749784223,222,0 +170749784271,223,0 +170749784320,225,0 +170749784368,226,0 +170749784416,226,0 +170749784466,227,0 +170749784514,230,0 +170749784563,228,0 +170749784613,230,0 +170749784662,227,0 +170749784710,227,0 +170749784760,228,0 +170749784809,219,0 +170749784859,218,0 +170749784907,219,0 +170749784955,221,0 +170749785003,222,0 +170749785051,222,0 +170749785100,223,0 +170749785148,225,0 +170749785196,226,0 +170749785244,226,0 +170749785292,226,0 +170749785342,226,0 +170749785391,227,0 +170749785439,227,0 +170749785487,227,0 +170749785537,228,0 +170749785584,228,0 +170749785632,228,0 +170749785680,227,0 +170749785728,220,0 +170749785776,218,0 +170749785825,220,0 +170749785875,222,0 +170749785923,224,0 +170749785971,223,0 +170749786020,224,0 +170749786068,225,0 +170749786116,226,0 +170749786164,227,0 +170749786212,226,0 +170749786260,227,0 +170749786308,228,0 +170749786358,228,0 +170749786406,226,0 +170749786455,228,0 +170749786505,228,0 +170749786554,227,0 +170749786602,227,0 +170749786652,224,0 +170749786701,215,0 +170749786751,217,0 +170749786800,218,0 +170749786848,219,0 +170749786896,220,0 +170749786946,221,0 +170749786995,222,0 +170749787043,224,0 +170749787093,226,0 +170749787141,224,0 +170749787190,226,0 +170749787238,227,0 +170749787288,226,0 +170749787336,225,0 +170749787384,226,0 +170749787432,226,0 +170749787480,224,0 +170749787528,226,0 +170749787576,227,0 +170749787624,215,0 +170749787671,215,0 +170749787719,215,0 +170749787767,215,0 +170749787817,216,0 +170749787866,214,0 +170749787916,217,0 +170749787966,218,0 +170749788015,219,0 +170749788063,220,0 +170749788111,221,0 +170749788159,222,0 +170749788207,224,0 +170749788255,225,0 +170749788303,226,0 +170749788351,225,0 +170749788400,224,0 +170749788448,227,0 +170749788496,228,0 +170749788544,215,0 +170749788594,216,0 +170749788643,216,0 +170749788691,216,0 +170749788739,216,0 +170749788787,217,0 +170749788835,219,0 +170749788885,219,0 +170749788933,220,0 +170749788980,220,0 +170749789028,221,0 +170749789076,223,0 +170749789124,225,0 +170749789172,224,0 +170749789222,226,0 +170749789270,226,0 +170749789317,227,0 +170749789365,228,0 +170749789415,227,0 +170749789463,217,0 +170749789511,216,0 +170749789559,216,0 +170749789608,217,0 +170749789658,218,0 +170749789707,218,0 +170749789755,220,0 +170749789805,219,0 +170749789853,221,0 +170749789902,222,0 +170749789950,224,0 +170749789998,224,0 +170749790048,226,0 +170749790097,226,0 +170749790145,227,0 +170749790195,226,0 +170749790244,227,0 +170749790294,227,0 +170749790342,227,0 +170749790390,216,0 +170749790438,215,0 +170749790486,215,0 +170749790535,216,0 +170749790583,216,0 +170749790631,216,0 +170749790679,217,0 +170749790727,217,0 +170749790774,217,0 +170749790824,218,0 +170749790873,220,0 +170749790921,222,0 +170749790969,224,0 +170749791017,221,0 +170749791067,222,0 +170749791114,224,0 +170749791162,225,0 +170749791210,225,0 +170749791258,227,0 +170749791306,218,0 +170749791354,219,0 +170749791404,217,0 +170749791451,219,0 +170749791499,220,0 +170749791547,222,0 +170749791595,221,0 +170749791645,223,0 +170749791693,223,0 +170749791741,225,0 +170749791789,225,0 +170749791837,226,0 +170749791885,226,0 +170749791932,228,0 +170749791980,229,0 +170749792030,229,0 +170749792079,229,0 +170749792127,228,0 +170749792175,227,0 +170749792223,218,0 +170749792271,219,0 +170749792320,221,0 +170749792368,221,0 +170749792416,223,0 +170749792464,224,0 +170749792512,225,0 +170749792560,225,0 +170749792609,225,0 +170749792657,226,0 +170749792707,227,0 +170749792756,227,0 +170749792804,227,0 +170749792852,227,0 +170749792900,228,0 +170749792949,227,0 +170749792997,228,0 +170749793045,228,0 +170749793093,228,0 +170749793141,229,0 +170749793189,222,0 +170749793237,221,0 +170749793285,223,0 +170749793332,223,0 +170749793380,224,0 +170749793428,225,0 +170749793476,226,0 +170749793524,225,0 +170749793572,226,0 +170749793620,226,0 +170749793669,228,0 +170749793717,228,0 +170749793765,230,0 +170749793813,227,0 +170749793861,228,0 +170749793910,228,0 +170749793958,229,0 +170749794006,228,0 +170749794054,226,0 +170749794102,217,0 +170749794150,217,0 +170749794197,217,0 +170749794247,218,0 +170749794295,220,0 +170749794343,222,0 +170749794391,222,0 +170749794438,223,0 +170749794486,224,0 +170749794534,224,0 +170749794584,225,0 +170749794632,224,0 +170749794679,225,0 +170749794727,227,0 +170749794775,228,0 +170749794823,227,0 +170749794871,229,0 +170749794919,228,0 +170749794967,228,0 +170749795015,218,0 +170749795063,215,0 +170749795111,216,0 +170749795158,215,0 +170749795206,216,0 +170749795254,216,0 +170749795302,217,0 +170749795350,217,0 +170749795398,218,0 +170749795446,219,0 +170749795494,220,0 +170749795542,223,0 +170749795589,226,0 +170749795637,224,0 +170749795685,225,0 +170749795733,225,0 +170749795781,225,0 +170749795829,227,0 +170749795878,225,0 +170749795926,225,0 +170749795974,216,0 +170749796022,216,0 +170749796070,216,0 +170749796118,217,0 +170749796166,217,0 +170749796213,217,0 +170749796261,218,0 +170749796309,219,0 +170749796357,220,0 +170749796405,222,0 +170749796453,222,0 +170749796501,224,0 +170749796549,224,0 +170749796598,225,0 +170749796648,225,0 +170749796695,226,0 +170749796745,226,0 +170749796793,227,0 +170749796841,226,0 +170749796890,217,0 +170749796938,216,0 +170749796986,216,0 +170749797034,217,0 +170749797082,217,0 +170749797129,218,0 +170749797177,219,0 +170749797227,220,0 +170749797275,220,0 +170749797324,221,0 +170749797372,222,0 +170749797420,224,0 +170749797468,224,0 +170749797516,226,0 +170749797565,227,0 +170749797613,226,0 +170749797662,231,0 +170749797710,227,0 +170749797758,229,0 +170749797806,217,0 +170749797854,216,0 +170749797902,216,0 +170749797950,217,0 +170749797998,218,0 +170749798047,219,0 +170749798095,220,0 +170749798145,221,0 +170749798192,221,0 +170749798242,222,0 +170749798290,221,0 +170749798338,227,0 +170749798386,225,0 +170749798433,226,0 +170749798481,227,0 +170749798529,225,0 +170749798577,226,0 +170749798625,229,0 +170749798675,227,0 +170749798724,217,0 +170749798774,217,0 +170749798823,218,0 +170749798871,220,0 +170749798921,222,0 +170749798970,222,0 +170749799020,222,0 +170749799068,224,0 +170749799116,224,0 +170749799164,225,0 +170749799212,225,0 +170749799260,227,0 +170749799309,229,0 +170749799357,228,0 +170749799405,230,0 +170749799453,227,0 +170749799501,227,0 +170749799549,229,0 +170749799597,229,0 +170749799647,223,0 +170749799695,219,0 +170749799743,219,0 +170749799792,220,0 +170749799842,222,0 +170749799891,223,0 +170749799939,224,0 +170749799987,225,0 diff --git a/laser_value/0210-03.csv b/laser_value/0210-03.csv new file mode 100644 index 0000000..abc9f74 --- /dev/null +++ b/laser_value/0210-03.csv @@ -0,0 +1,7428 @@ +timestamp,laser_value,event +170749800036,225,0 +170749800084,225,0 +170749800131,227,0 +170749800179,228,0 +170749800227,229,0 +170749800277,229,0 +170749800325,228,0 +170749800374,229,0 +170749800422,229,0 +170749800472,227,0 +170749800521,227,0 +170749800569,227,0 +170749800619,219,0 +170749800667,220,0 +170749800717,222,0 +170749800765,222,0 +170749800814,223,0 +170749800862,224,0 +170749800910,224,0 +170749800958,224,0 +170749801007,226,0 +170749801055,227,0 +170749801105,229,0 +170749801154,228,0 +170749801204,232,0 +170749801251,224,0 +170749801301,228,0 +170749801349,228,0 +170749801397,228,0 +170749801445,227,0 +170749801494,225,0 +170749801542,218,0 +170749801590,219,0 +170749801640,221,0 +170749801689,224,0 +170749801739,222,0 +170749801789,223,0 +170749801838,225,0 +170749801886,226,0 +170749801936,226,0 +170749801985,227,0 +170749802035,227,0 +170749802083,230,0 +170749802130,228,0 +170749802178,230,0 +170749802226,230,0 +170749802276,228,0 +170749802324,228,0 +170749802372,228,0 +170749802420,228,0 +170749802469,215,0 +170749802519,218,0 +170749802567,219,0 +170749802615,221,0 +170749802664,222,0 +170749802712,223,0 +170749802760,223,0 +170749802808,225,0 +170749802858,225,0 +170749802905,226,0 +170749802953,227,0 +170749803001,227,0 +170749803049,229,0 +170749803099,228,0 +170749803148,228,0 +170749803196,230,0 +170749803244,228,0 +170749803292,228,0 +170749803342,227,0 +170749803390,218,0 +170749803438,217,0 +170749803487,218,0 +170749803537,219,0 +170749803586,222,0 +170749803636,221,0 +170749803684,221,0 +170749803732,224,0 +170749803780,223,0 +170749803828,224,0 +170749803877,225,0 +170749803925,226,0 +170749803973,228,0 +170749804021,228,0 +170749804069,228,0 +170749804117,228,0 +170749804165,227,0 +170749804213,227,0 +170749804262,227,0 +170749804310,218,0 +170749804358,216,0 +170749804406,217,0 +170749804454,217,0 +170749804502,219,0 +170749804552,219,0 +170749804600,221,0 +170749804649,222,0 +170749804697,222,0 +170749804747,222,0 +170749804796,225,0 +170749804844,224,0 +170749804894,226,0 +170749804942,226,0 +170749804989,226,0 +170749805037,229,0 +170749805087,228,0 +170749805136,228,0 +170749805184,228,0 +170749805232,218,0 +170749805282,216,0 +170749805330,216,0 +170749805378,215,0 +170749805426,217,0 +170749805474,218,0 +170749805522,219,0 +170749805570,221,0 +170749805618,221,0 +170749805666,222,0 +170749805714,224,0 +170749805763,225,0 +170749805811,225,0 +170749805860,225,0 +170749805908,227,0 +170749805956,228,0 +170749806004,227,0 +170749806052,228,0 +170749806100,227,0 +170749806148,226,0 +170749806195,217,0 +170749806245,216,0 +170749806293,217,0 +170749806341,217,0 +170749806390,217,0 +170749806438,218,0 +170749806486,220,0 +170749806534,221,0 +170749806583,221,0 +170749806631,222,0 +170749806679,223,0 +170749806727,225,0 +170749806775,226,0 +170749806823,226,0 +170749806870,227,0 +170749806918,227,0 +170749806966,226,0 +170749807014,228,0 +170749807062,226,0 +170749807110,217,0 +170749807158,217,0 +170749807206,217,0 +170749807253,218,0 +170749807301,220,0 +170749807349,220,0 +170749807397,221,0 +170749807445,221,0 +170749807493,221,0 +170749807541,233,0 +170749807589,225,0 +170749807637,225,0 +170749807686,226,0 +170749807736,226,0 +170749807785,228,0 +170749807834,226,0 +170749807882,227,0 +170749807930,229,0 +170749807978,226,0 +170749808026,218,0 +170749808075,216,0 +170749808123,217,0 +170749808171,218,0 +170749808219,219,0 +170749808267,220,0 +170749808315,222,0 +170749808363,223,0 +170749808411,223,0 +170749808459,224,0 +170749808507,227,0 +170749808556,226,0 +170749808604,227,0 +170749808652,227,0 +170749808700,228,0 +170749808750,229,0 +170749808798,228,0 +170749808847,228,0 +170749808895,224,0 +170749808943,218,0 +170749808993,216,0 +170749809041,218,0 +170749809090,219,0 +170749809138,219,0 +170749809186,220,0 +170749809234,221,0 +170749809284,223,0 +170749809332,223,0 +170749809379,224,0 +170749809427,224,0 +170749809477,225,0 +170749809525,226,0 +170749809575,227,0 +170749809623,227,0 +170749809670,233,0 +170749809720,229,0 +170749809770,227,0 +170749809817,228,0 +170749809865,228,0 +170749809915,217,0 +170749809964,216,0 +170749810012,217,0 +170749810060,218,0 +170749810108,218,0 +170749810156,219,0 +170749810206,221,0 +170749810254,220,0 +170749810302,222,0 +170749810351,222,0 +170749810401,226,0 +170749810450,224,0 +170749810500,227,0 +170749810548,227,0 +170749810597,226,0 +170749810645,227,0 +170749810693,229,0 +170749810743,228,0 +170749810792,226,0 +170749810842,217,0 +170749810890,215,0 +170749810939,217,0 +170749810989,217,0 +170749811037,219,0 +170749811086,220,0 +170749811134,220,0 +170749811182,222,0 +170749811230,221,0 +170749811278,223,0 +170749811326,225,0 +170749811376,225,0 +170749811425,225,0 +170749811473,224,0 +170749811521,226,0 +170749811571,227,0 +170749811619,227,0 +170749811666,230,0 +170749811716,227,0 +170749811764,216,0 +170749811814,216,0 +170749811862,216,0 +170749811909,217,0 +170749811957,218,0 +170749812007,219,0 +170749812055,218,0 +170749812103,220,0 +170749812151,222,0 +170749812198,223,0 +170749812246,225,0 +170749812294,225,0 +170749812342,226,0 +170749812390,228,0 +170749812438,229,0 +170749812487,229,0 +170749812537,228,0 +170749812586,228,0 +170749812636,228,0 +170749812686,217,0 +170749812735,216,0 +170749812783,217,0 +170749812833,218,0 +170749812882,219,0 +170749812930,221,0 +170749812978,220,0 +170749813026,221,0 +170749813074,222,0 +170749813122,224,0 +170749813170,224,0 +170749813220,226,0 +170749813268,227,0 +170749813316,226,0 +170749813365,227,0 +170749813415,229,0 +170749813464,228,0 +170749813514,228,0 +170749813562,228,0 +170749813611,218,0 +170749813661,217,0 +170749813709,219,0 +170749813757,220,0 +170749813806,221,0 +170749813856,223,0 +170749813904,220,0 +170749813952,225,0 +170749814001,225,0 +170749814049,227,0 +170749814099,228,0 +170749814148,228,0 +170749814198,228,0 +170749814246,227,0 +170749814294,228,0 +170749814342,228,0 +170749814391,228,0 +170749814439,226,0 +170749814487,227,0 +170749814537,219,0 +170749814585,220,0 +170749814633,221,0 +170749814682,222,0 +170749814730,224,0 +170749814780,223,0 +170749814828,224,0 +170749814877,226,0 +170749814925,226,0 +170749814973,219,0 +170749815023,227,0 +170749815072,228,0 +170749815122,228,0 +170749815171,228,0 +170749815221,228,0 +170749815269,228,0 +170749815317,228,0 +170749815365,228,0 +170749815413,225,0 +170749815462,218,0 +170749815512,217,0 +170749815560,218,0 +170749815608,220,0 +170749815656,222,0 +170749815705,223,0 +170749815753,224,0 +170749815801,225,0 +170749815849,225,0 +170749815899,225,0 +170749815948,225,0 +170749815996,226,0 +170749816044,227,0 +170749816094,227,0 +170749816142,228,0 +170749816189,228,0 +170749816237,228,0 +170749816285,228,0 +170749816333,227,0 +170749816383,217,0 +170749816431,215,0 +170749816479,215,0 +170749816527,216,0 +170749816575,216,0 +170749816624,217,0 +170749816672,219,0 +170749816722,219,0 +170749816771,221,0 +170749816821,221,0 +170749816869,221,0 +170749816917,223,0 +170749816966,225,0 +170749817014,226,0 +170749817062,226,0 +170749817110,225,0 +170749817158,226,0 +170749817206,227,0 +170749817255,227,0 +170749817305,228,0 +170749817353,216,0 +170749817402,215,0 +170749817450,216,0 +170749817498,216,0 +170749817548,216,0 +170749817597,218,0 +170749817645,220,0 +170749817693,220,0 +170749817743,221,0 +170749817791,223,0 +170749817839,224,0 +170749817887,224,0 +170749817935,226,0 +170749817982,227,0 +170749818032,228,0 +170749818080,228,0 +170749818128,228,0 +170749818176,227,0 +170749818224,228,0 +170749818272,216,0 +170749818321,216,0 +170749818371,216,0 +170749818419,217,0 +170749818467,218,0 +170749818515,219,0 +170749818563,226,0 +170749818612,220,0 +170749818660,221,0 +170749818710,223,0 +170749818758,223,0 +170749818806,224,0 +170749818855,224,0 +170749818905,225,0 +170749818954,224,0 +170749819004,223,0 +170749819052,223,0 +170749819101,227,0 +170749819149,227,0 +170749819197,216,0 +170749819245,215,0 +170749819293,216,0 +170749819341,217,0 +170749819390,218,0 +170749819438,218,0 +170749819486,219,0 +170749819536,221,0 +170749819586,221,0 +170749819635,223,0 +170749819683,223,0 +170749819731,224,0 +170749819781,225,0 +170749819829,227,0 +170749819877,228,0 +170749819925,230,0 +170749819972,226,0 +170749820022,227,0 +170749820070,228,0 +170749820119,217,0 +170749820167,216,0 +170749820215,216,0 +170749820263,216,0 +170749820313,216,0 +170749820361,217,0 +170749820409,217,0 +170749820458,218,0 +170749820508,222,0 +170749820556,221,0 +170749820603,222,0 +170749820652,223,0 +170749820701,224,0 +170749820751,225,0 +170749820798,226,0 +170749820848,229,0 +170749820896,227,0 +170749820944,227,0 +170749820992,226,0 +170749821040,218,0 +170749821089,216,0 +170749821137,216,0 +170749821185,216,0 +170749821235,216,0 +170749821284,217,0 +170749821332,217,0 +170749821382,217,0 +170749821430,218,0 +170749821478,218,0 +170749821527,221,0 +170749821575,221,0 +170749821623,225,0 +170749821671,223,0 +170749821719,226,0 +170749821769,226,0 +170749821818,226,0 +170749821868,225,0 +170749821916,228,0 +170749821964,218,0 +170749822011,216,0 +170749822059,217,0 +170749822109,217,0 +170749822157,217,0 +170749822205,217,0 +170749822253,218,0 +170749822301,217,0 +170749822349,219,0 +170749822397,220,0 +170749822446,222,0 +170749822494,222,0 +170749822544,223,0 +170749822592,224,0 +170749822641,222,0 +170749822691,227,0 +170749822739,227,0 +170749822787,226,0 +170749822835,226,0 +170749822882,226,0 +170749822930,216,0 +170749822980,217,0 +170749823028,217,0 +170749823076,218,0 +170749823125,219,0 +170749823175,219,0 +170749823224,221,0 +170749823272,222,0 +170749823321,225,0 +170749823371,223,0 +170749823418,224,0 +170749823466,225,0 +170749823516,226,0 +170749823566,227,0 +170749823613,229,0 +170749823661,229,0 +170749823709,231,0 +170749823759,228,0 +170749823808,234,0 +170749823858,217,0 +170749823906,218,0 +170749823954,219,0 +170749824002,219,0 +170749824050,220,0 +170749824097,220,0 +170749824145,222,0 +170749824193,223,0 +170749824241,223,0 +170749824289,224,0 +170749824337,227,0 +170749824385,228,0 +170749824433,229,0 +170749824481,227,0 +170749824528,228,0 +170749824576,228,0 +170749824626,230,0 +170749824674,228,0 +170749824723,227,0 +170749824771,218,0 +170749824819,217,0 +170749824867,219,0 +170749824915,220,0 +170749824962,220,0 +170749825010,224,0 +170749825058,223,0 +170749825106,225,0 +170749825154,224,0 +170749825202,226,0 +170749825251,226,0 +170749825301,228,0 +170749825349,227,0 +170749825397,227,0 +170749825445,229,0 +170749825492,228,0 +170749825540,228,0 +170749825588,228,0 +170749825636,227,0 +170749825684,218,0 +170749825732,217,0 +170749825780,219,0 +170749825828,220,0 +170749825876,220,0 +170749825924,223,0 +170749825972,223,0 +170749826021,223,0 +170749826069,223,0 +170749826117,225,0 +170749826166,227,0 +170749826214,227,0 +170749826262,229,0 +170749826310,228,0 +170749826358,229,0 +170749826406,228,0 +170749826454,228,0 +170749826502,228,0 +170749826550,227,0 +170749826598,225,0 +170749826646,217,0 +170749826694,218,0 +170749826741,219,0 +170749826789,220,0 +170749826837,220,0 +170749826885,220,0 +170749826933,222,0 +170749826981,223,0 +170749827029,223,0 +170749827077,225,0 +170749827124,225,0 +170749827172,225,0 +170749827220,227,0 +170749827268,228,0 +170749827316,228,0 +170749827365,229,0 +170749827413,228,0 +170749827463,228,0 +170749827512,226,0 +170749827560,218,0 +170749827610,218,0 +170749827658,218,0 +170749827707,220,0 +170749827755,222,0 +170749827803,222,0 +170749827853,224,0 +170749827901,223,0 +170749827950,224,0 +170749827998,225,0 +170749828046,227,0 +170749828094,227,0 +170749828142,227,0 +170749828190,227,0 +170749828240,228,0 +170749828289,226,0 +170749828337,228,0 +170749828385,227,0 +170749828434,229,0 +170749828482,219,0 +170749828530,220,0 +170749828578,219,0 +170749828626,221,0 +170749828674,222,0 +170749828722,224,0 +170749828772,224,0 +170749828820,225,0 +170749828869,228,0 +170749828919,227,0 +170749828968,227,0 +170749829018,229,0 +170749829067,228,0 +170749829117,228,0 +170749829165,227,0 +170749829212,228,0 +170749829260,228,0 +170749829308,228,0 +170749829356,228,0 +170749829404,219,0 +170749829452,219,0 +170749829500,220,0 +170749829548,221,0 +170749829596,223,0 +170749829645,224,0 +170749829693,224,0 +170749829741,224,0 +170749829789,226,0 +170749829838,226,0 +170749829886,225,0 +170749829936,227,0 +170749829983,227,0 +170749830033,228,0 +170749830081,227,0 +170749830129,227,0 +170749830177,230,0 +170749830225,226,0 +170749830274,227,0 +170749830322,220,0 +170749830370,218,0 +170749830420,218,0 +170749830468,217,0 +170749830515,218,0 +170749830563,222,0 +170749830611,223,0 +170749830659,223,0 +170749830707,225,0 +170749830755,225,0 +170749830803,226,0 +170749830851,226,0 +170749830900,227,0 +170749830948,227,0 +170749830996,228,0 +170749831044,228,0 +170749831092,228,0 +170749831141,228,0 +170749831190,228,0 +170749831238,227,0 +170749831288,215,0 +170749831336,217,0 +170749831384,218,0 +170749831431,220,0 +170749831481,220,0 +170749831529,221,0 +170749831577,222,0 +170749831625,222,0 +170749831672,223,0 +170749831720,224,0 +170749831768,224,0 +170749831816,226,0 +170749831866,226,0 +170749831915,227,0 +170749831963,227,0 +170749832011,228,0 +170749832061,227,0 +170749832110,227,0 +170749832158,227,0 +170749832206,217,0 +170749832255,217,0 +170749832305,219,0 +170749832353,220,0 +170749832402,220,0 +170749832450,220,0 +170749832500,219,0 +170749832548,221,0 +170749832596,222,0 +170749832644,224,0 +170749832692,225,0 +170749832739,226,0 +170749832787,228,0 +170749832837,229,0 +170749832885,227,0 +170749832933,229,0 +170749832982,230,0 +170749833032,228,0 +170749833081,224,0 +170749833131,217,0 +170749833179,217,0 +170749833227,218,0 +170749833274,219,0 +170749833322,219,0 +170749833370,221,0 +170749833420,222,0 +170749833469,222,0 +170749833517,223,0 +170749833567,223,0 +170749833615,224,0 +170749833664,226,0 +170749833712,229,0 +170749833760,227,0 +170749833810,227,0 +170749833858,230,0 +170749833906,229,0 +170749833954,230,0 +170749834003,227,0 +170749834051,218,0 +170749834099,216,0 +170749834147,215,0 +170749834195,216,0 +170749834244,218,0 +170749834292,219,0 +170749834340,219,0 +170749834388,220,0 +170749834438,221,0 +170749834487,222,0 +170749834537,225,0 +170749834586,225,0 +170749834634,226,0 +170749834684,226,0 +170749834732,228,0 +170749834781,228,0 +170749834829,227,0 +170749834878,228,0 +170749834926,228,0 +170749834975,217,0 +170749835023,216,0 +170749835073,215,0 +170749835121,217,0 +170749835168,217,0 +170749835216,219,0 +170749835264,218,0 +170749835312,219,0 +170749835362,220,0 +170749835410,222,0 +170749835459,223,0 +170749835507,223,0 +170749835555,225,0 +170749835603,225,0 +170749835651,225,0 +170749835701,226,0 +170749835749,229,0 +170749835797,228,0 +170749835845,227,0 +170749835893,225,0 +170749835940,216,0 +170749835988,216,0 +170749836038,216,0 +170749836086,217,0 +170749836134,218,0 +170749836183,220,0 +170749836233,220,0 +170749836281,221,0 +170749836329,222,0 +170749836377,224,0 +170749836426,224,0 +170749836476,226,0 +170749836525,225,0 +170749836573,226,0 +170749836621,228,0 +170749836671,227,0 +170749836720,227,0 +170749836768,227,0 +170749836816,230,0 +170749836866,216,0 +170749836914,216,0 +170749836963,218,0 +170749837011,218,0 +170749837059,220,0 +170749837107,220,0 +170749837156,223,0 +170749837206,223,0 +170749837254,224,0 +170749837302,224,0 +170749837350,226,0 +170749837398,227,0 +170749837445,228,0 +170749837493,229,0 +170749837541,227,0 +170749837589,228,0 +170749837639,227,0 +170749837687,228,0 +170749837736,227,0 +170749837784,217,0 +170749837832,216,0 +170749837882,216,0 +170749837930,217,0 +170749837979,219,0 +170749838027,219,0 +170749838075,222,0 +170749838123,223,0 +170749838173,223,0 +170749838221,224,0 +170749838269,226,0 +170749838318,225,0 +170749838366,227,0 +170749838414,227,0 +170749838462,226,0 +170749838511,228,0 +170749838559,227,0 +170749838607,228,0 +170749838655,227,0 +170749838703,217,0 +170749838751,216,0 +170749838799,216,0 +170749838847,217,0 +170749838897,218,0 +170749838946,219,0 +170749838996,220,0 +170749839044,221,0 +170749839091,221,0 +170749839139,222,0 +170749839187,224,0 +170749839237,224,0 +170749839287,225,0 +170749839336,227,0 +170749839384,226,0 +170749839432,226,0 +170749839480,227,0 +170749839528,229,0 +170749839577,231,0 +170749839625,219,0 +170749839673,215,0 +170749839721,215,0 +170749839771,216,0 +170749839819,216,0 +170749839867,217,0 +170749839915,217,0 +170749839963,218,0 +170749840012,218,0 +170749840060,219,0 +170749840108,220,0 +170749840156,221,0 +170749840206,222,0 +170749840254,223,0 +170749840302,224,0 +170749840349,225,0 +170749840397,226,0 +170749840445,227,0 +170749840493,228,0 +170749840541,219,0 +170749840591,215,0 +170749840639,215,0 +170749840687,215,0 +170749840736,216,0 +170749840786,216,0 +170749840835,217,0 +170749840883,217,0 +170749840933,217,0 +170749840982,219,0 +170749841030,219,0 +170749841080,221,0 +170749841128,222,0 +170749841176,223,0 +170749841224,224,0 +170749841273,225,0 +170749841321,225,0 +170749841369,226,0 +170749841417,226,0 +170749841465,226,0 +170749841513,217,0 +170749841561,216,0 +170749841610,216,0 +170749841658,217,0 +170749841706,217,0 +170749841754,217,0 +170749841802,218,0 +170749841850,219,0 +170749841899,220,0 +170749841949,222,0 +170749841997,223,0 +170749842047,225,0 +170749842094,226,0 +170749842144,227,0 +170749842192,228,0 +170749842241,226,0 +170749842289,227,0 +170749842337,230,0 +170749842387,227,0 +170749842435,216,0 +170749842484,216,0 +170749842532,216,0 +170749842582,217,0 +170749842631,218,0 +170749842681,219,0 +170749842730,219,0 +170749842778,220,0 +170749842826,222,0 +170749842874,224,0 +170749842924,224,0 +170749842972,224,0 +170749843021,226,0 +170749843069,226,0 +170749843117,227,0 +170749843165,228,0 +170749843213,228,0 +170749843263,228,0 +170749843312,227,0 +170749843362,216,0 +170749843411,216,0 +170749843459,216,0 +170749843507,217,0 +170749843556,219,0 +170749843606,218,0 +170749843655,219,0 +170749843703,221,0 +170749843753,222,0 +170749843802,224,0 +170749843850,227,0 +170749843898,225,0 +170749843948,225,0 +170749843997,226,0 +170749844047,228,0 +170749844096,227,0 +170749844146,227,0 +170749844194,233,0 +170749844242,227,0 +170749844291,217,0 +170749844339,216,0 +170749844387,217,0 +170749844435,220,0 +170749844483,219,0 +170749844531,222,0 +170749844579,222,0 +170749844627,223,0 +170749844676,224,0 +170749844724,226,0 +170749844772,224,0 +170749844820,227,0 +170749844868,227,0 +170749844918,226,0 +170749844967,228,0 +170749845015,227,0 +170749845063,227,0 +170749845111,228,0 +170749845161,227,0 +170749845210,219,0 +170749845260,219,0 +170749845309,219,0 +170749845359,221,0 +170749845408,221,0 +170749845458,221,0 +170749845506,222,0 +170749845554,225,0 +170749845602,225,0 +170749845650,224,0 +170749845699,225,0 +170749845747,229,0 +170749845795,227,0 +170749845843,227,0 +170749845891,227,0 +170749845939,227,0 +170749845987,228,0 +170749846036,229,0 +170749846084,227,0 +170749846134,219,0 +170749846183,218,0 +170749846233,220,0 +170749846281,218,0 +170749846329,222,0 +170749846377,222,0 +170749846425,223,0 +170749846473,226,0 +170749846520,225,0 +170749846568,224,0 +170749846618,227,0 +170749846666,228,0 +170749846714,227,0 +170749846762,228,0 +170749846810,228,0 +170749846859,228,0 +170749846907,227,0 +170749846957,229,0 +170749847006,227,0 +170749847054,218,0 +170749847102,217,0 +170749847152,218,0 +170749847200,219,0 +170749847248,219,0 +170749847297,223,0 +170749847345,222,0 +170749847395,227,0 +170749847443,225,0 +170749847491,224,0 +170749847539,226,0 +170749847588,225,0 +170749847638,227,0 +170749847687,226,0 +170749847737,226,0 +170749847786,228,0 +170749847836,228,0 +170749847885,227,0 +170749847933,227,0 +170749847983,218,0 +170749848031,217,0 +170749848079,218,0 +170749848126,219,0 +170749848174,219,0 +170749848224,221,0 +170749848272,221,0 +170749848321,223,0 +170749848371,222,0 +170749848419,224,0 +170749848468,225,0 +170749848518,226,0 +170749848566,227,0 +170749848614,227,0 +170749848663,227,0 +170749848713,227,0 +170749848763,229,0 +170749848810,230,0 +170749848860,227,0 +170749848908,217,0 +170749848957,216,0 +170749849005,218,0 +170749849053,218,0 +170749849103,219,0 +170749849151,220,0 +170749849199,221,0 +170749849248,223,0 +170749849298,223,0 +170749849346,225,0 +170749849394,225,0 +170749849443,226,0 +170749849493,227,0 +170749849542,227,0 +170749849590,226,0 +170749849638,227,0 +170749849686,227,0 +170749849736,227,0 +170749849785,227,0 +170749849835,217,0 +170749849884,215,0 +170749849934,216,0 +170749849982,216,0 +170749850030,218,0 +170749850077,219,0 +170749850127,220,0 +170749850177,221,0 +170749850224,220,0 +170749850272,223,0 +170749850320,225,0 +170749850370,224,0 +170749850419,226,0 +170749850469,229,0 +170749850517,228,0 +170749850566,229,0 +170749850614,227,0 +170749850662,227,0 +170749850710,227,0 +170749850760,218,0 +170749850807,216,0 +170749850855,216,0 +170749850905,216,0 +170749850954,217,0 +170749851002,219,0 +170749851050,219,0 +170749851100,219,0 +170749851148,221,0 +170749851197,222,0 +170749851247,223,0 +170749851295,223,0 +170749851343,225,0 +170749851392,225,0 +170749851440,228,0 +170749851488,227,0 +170749851536,227,0 +170749851585,227,0 +170749851635,228,0 +170749851683,226,0 +170749851731,216,0 +170749851779,216,0 +170749851827,216,0 +170749851875,217,0 +170749851924,217,0 +170749851974,219,0 +170749852021,220,0 +170749852071,221,0 +170749852119,222,0 +170749852167,223,0 +170749852215,224,0 +170749852264,225,0 +170749852312,227,0 +170749852360,226,0 +170749852410,226,0 +170749852459,227,0 +170749852507,227,0 +170749852557,230,0 +170749852605,227,0 +170749852652,216,0 +170749852700,216,0 +170749852748,216,0 +170749852796,216,0 +170749852844,217,0 +170749852892,218,0 +170749852940,218,0 +170749852989,220,0 +170749853037,221,0 +170749853085,221,0 +170749853133,223,0 +170749853181,224,0 +170749853229,224,0 +170749853277,226,0 +170749853325,227,0 +170749853375,227,0 +170749853423,227,0 +170749853471,224,0 +170749853518,228,0 +170749853568,216,0 +170749853616,216,0 +170749853664,216,0 +170749853712,216,0 +170749853761,217,0 +170749853811,219,0 +170749853860,220,0 +170749853908,222,0 +170749853956,223,0 +170749854006,223,0 +170749854054,223,0 +170749854102,225,0 +170749854151,226,0 +170749854201,225,0 +170749854250,227,0 +170749854300,229,0 +170749854349,226,0 +170749854397,228,0 +170749854447,228,0 +170749854495,218,0 +170749854544,216,0 +170749854592,216,0 +170749854642,218,0 +170749854690,219,0 +170749854738,218,0 +170749854786,220,0 +170749854834,223,0 +170749854883,222,0 +170749854931,223,0 +170749854979,224,0 +170749855027,223,0 +170749855075,225,0 +170749855123,227,0 +170749855172,228,0 +170749855220,227,0 +170749855268,227,0 +170749855316,227,0 +170749855364,227,0 +170749855413,218,0 +170749855463,217,0 +170749855512,217,0 +170749855560,217,0 +170749855610,218,0 +170749855658,219,0 +170749855706,219,0 +170749855755,220,0 +170749855803,221,0 +170749855851,222,0 +170749855899,223,0 +170749855949,225,0 +170749855996,225,0 +170749856046,223,0 +170749856094,226,0 +170749856143,228,0 +170749856191,227,0 +170749856241,226,0 +170749856289,226,0 +170749856338,218,0 +170749856386,216,0 +170749856434,217,0 +170749856484,218,0 +170749856532,219,0 +170749856581,220,0 +170749856631,221,0 +170749856680,221,0 +170749856730,224,0 +170749856778,224,0 +170749856826,224,0 +170749856873,225,0 +170749856921,226,0 +170749856969,228,0 +170749857017,227,0 +170749857065,229,0 +170749857113,226,0 +170749857162,227,0 +170749857210,227,0 +170749857258,217,0 +170749857306,217,0 +170749857354,217,0 +170749857402,219,0 +170749857450,219,0 +170749857498,220,0 +170749857546,221,0 +170749857593,222,0 +170749857643,223,0 +170749857691,224,0 +170749857739,224,0 +170749857787,226,0 +170749857834,226,0 +170749857882,227,0 +170749857930,229,0 +170749857980,228,0 +170749858029,227,0 +170749858078,227,0 +170749858128,228,0 +170749858176,227,0 +170749858225,217,0 +170749858273,218,0 +170749858321,219,0 +170749858370,220,0 +170749858418,222,0 +170749858468,222,0 +170749858516,223,0 +170749858565,224,0 +170749858613,225,0 +170749858662,227,0 +170749858710,227,0 +170749858758,227,0 +170749858806,228,0 +170749858854,226,0 +170749858902,228,0 +170749858950,224,0 +170749858998,227,0 +170749859046,228,0 +170749859093,226,0 +170749859141,219,0 +170749859189,219,0 +170749859237,220,0 +170749859285,221,0 +170749859333,222,0 +170749859382,223,0 +170749859430,224,0 +170749859478,226,0 +170749859526,226,0 +170749859576,228,0 +170749859623,229,0 +170749859671,228,0 +170749859719,228,0 +170749859767,228,0 +170749859815,227,0 +170749859863,229,0 +170749859911,227,0 +170749859959,227,0 +170749860007,226,0 +170749860054,217,0 +170749860102,216,0 +170749860150,217,0 +170749860198,218,0 +170749860246,219,0 +170749860295,220,0 +170749860345,220,0 +170749860393,222,0 +170749860441,222,0 +170749860489,225,0 +170749860538,225,0 +170749860586,224,0 +170749860634,227,0 +170749860683,227,0 +170749860731,227,0 +170749860779,227,0 +170749860828,229,0 +170749860878,225,0 +170749860926,227,0 +170749860974,217,0 +170749861022,216,0 +170749861070,216,0 +170749861117,217,0 +170749861167,218,0 +170749861217,218,0 +170749861266,220,0 +170749861314,221,0 +170749861362,222,0 +170749861410,222,0 +170749861459,224,0 +170749861509,224,0 +170749861557,225,0 +170749861605,226,0 +170749861654,229,0 +170749861704,225,0 +170749861753,227,0 +170749861803,226,0 +170749861852,227,0 +170749861902,225,0 +170749861950,216,0 +170749861998,216,0 +170749862047,216,0 +170749862095,217,0 +170749862143,218,0 +170749862193,218,0 +170749862241,220,0 +170749862290,221,0 +170749862340,222,0 +170749862389,223,0 +170749862437,224,0 +170749862485,227,0 +170749862535,226,0 +170749862583,225,0 +170749862632,226,0 +170749862680,227,0 +170749862730,227,0 +170749862778,227,0 +170749862827,217,0 +170749862877,216,0 +170749862924,216,0 +170749862972,217,0 +170749863020,218,0 +170749863068,218,0 +170749863118,220,0 +170749863166,221,0 +170749863215,222,0 +170749863263,223,0 +170749863311,224,0 +170749863361,225,0 +170749863410,226,0 +170749863458,227,0 +170749863508,226,0 +170749863557,225,0 +170749863605,229,0 +170749863653,230,0 +170749863701,227,0 +170749863749,223,0 +170749863797,216,0 +170749863845,216,0 +170749863893,217,0 +170749863941,217,0 +170749863989,219,0 +170749864038,219,0 +170749864086,220,0 +170749864134,222,0 +170749864182,224,0 +170749864230,224,0 +170749864280,224,0 +170749864327,228,0 +170749864377,226,0 +170749864426,225,0 +170749864474,228,0 +170749864522,227,0 +170749864570,230,0 +170749864618,227,0 +170749864666,228,0 +170749864714,217,0 +170749864762,217,0 +170749864810,217,0 +170749864859,219,0 +170749864907,219,0 +170749864955,222,0 +170749865003,221,0 +170749865050,223,0 +170749865098,223,0 +170749865148,224,0 +170749865196,224,0 +170749865244,228,0 +170749865293,227,0 +170749865341,227,0 +170749865389,229,0 +170749865437,230,0 +170749865485,228,0 +170749865532,228,0 +170749865580,228,0 +170749865628,218,0 +170749865676,216,0 +170749865724,216,0 +170749865772,217,0 +170749865820,219,0 +170749865868,218,0 +170749865915,219,0 +170749865963,219,0 +170749866011,221,0 +170749866059,225,0 +170749866107,224,0 +170749866155,224,0 +170749866203,226,0 +170749866251,225,0 +170749866299,226,0 +170749866348,225,0 +170749866396,227,0 +170749866445,226,0 +170749866493,227,0 +170749866541,217,0 +170749866589,216,0 +170749866637,216,0 +170749866685,217,0 +170749866734,217,0 +170749866782,217,0 +170749866832,217,0 +170749866879,217,0 +170749866927,219,0 +170749866977,222,0 +170749867025,223,0 +170749867072,222,0 +170749867120,224,0 +170749867168,225,0 +170749867216,226,0 +170749867265,226,0 +170749867315,226,0 +170749867363,225,0 +170749867411,225,0 +170749867459,228,0 +170749867506,215,0 +170749867554,215,0 +170749867602,215,0 +170749867650,216,0 +170749867698,216,0 +170749867746,216,0 +170749867794,216,0 +170749867842,217,0 +170749867889,217,0 +170749867937,218,0 +170749867985,217,0 +170749868035,221,0 +170749868084,221,0 +170749868132,223,0 +170749868180,224,0 +170749868228,225,0 +170749868276,223,0 +170749868324,228,0 +170749868371,228,0 +170749868419,218,0 +170749868467,216,0 +170749868515,216,0 +170749868563,216,0 +170749868611,217,0 +170749868660,217,0 +170749868708,218,0 +170749868756,219,0 +170749868804,220,0 +170749868853,220,0 +170749868901,220,0 +170749868949,221,0 +170749868997,225,0 +170749869045,223,0 +170749869093,225,0 +170749869141,227,0 +170749869189,225,0 +170749869236,225,0 +170749869284,226,0 +170749869332,228,0 +170749869382,229,0 +170749869431,229,0 +170749869479,229,0 +170749869527,229,0 +170749869577,229,0 +170749869626,229,0 +170749869674,229,0 +170749869722,227,0 +170749869770,227,0 +170749869818,217,0 +170749869865,216,0 +170749869913,218,0 +170749869961,220,0 +170749870009,221,0 +170749870057,220,0 +170749870105,223,0 +170749870153,223,0 +170749870201,224,0 +170749870249,224,0 +170749870296,227,0 +170749870344,227,0 +170749870392,227,0 +170749870440,228,0 +170749870488,228,0 +170749870536,227,0 +170749870585,227,0 +170749870633,228,0 +170749870682,228,0 +170749870732,218,0 +170749870781,216,0 +170749870829,216,0 +170749870877,217,0 +170749870925,218,0 +170749870973,219,0 +170749871021,220,0 +170749871070,220,0 +170749871118,221,0 +170749871168,222,0 +170749871215,220,0 +170749871263,225,0 +170749871311,225,0 +170749871359,228,0 +170749871407,226,0 +170749871456,229,0 +170749871504,229,0 +170749871552,226,0 +170749871600,227,0 +170749871648,224,0 +170749871696,216,0 +170749871745,217,0 +170749871793,218,0 +170749871841,219,0 +170749871889,221,0 +170749871937,223,0 +170749871985,221,0 +170749872034,222,0 +170749872082,222,0 +170749872130,223,0 +170749872178,226,0 +170749872225,226,0 +170749872273,226,0 +170749872321,227,0 +170749872369,230,0 +170749872417,227,0 +170749872465,228,0 +170749872513,228,0 +170749872561,227,0 +170749872610,216,0 +170749872658,217,0 +170749872708,218,0 +170749872756,218,0 +170749872805,220,0 +170749872853,221,0 +170749872903,224,0 +170749872952,224,0 +170749873000,226,0 +170749873048,225,0 +170749873096,225,0 +170749873146,229,0 +170749873194,227,0 +170749873243,228,0 +170749873291,228,0 +170749873341,226,0 +170749873390,228,0 +170749873438,228,0 +170749873486,227,0 +170749873536,216,0 +170749873584,216,0 +170749873633,216,0 +170749873683,218,0 +170749873731,218,0 +170749873779,219,0 +170749873827,220,0 +170749873875,221,0 +170749873923,224,0 +170749873972,225,0 +170749874020,225,0 +170749874068,226,0 +170749874116,226,0 +170749874164,227,0 +170749874212,227,0 +170749874260,228,0 +170749874309,227,0 +170749874357,229,0 +170749874407,228,0 +170749874455,218,0 +170749874503,216,0 +170749874552,217,0 +170749874600,218,0 +170749874648,218,0 +170749874696,219,0 +170749874744,220,0 +170749874792,218,0 +170749874841,220,0 +170749874889,222,0 +170749874937,223,0 +170749874985,223,0 +170749875033,226,0 +170749875081,225,0 +170749875128,227,0 +170749875176,227,0 +170749875224,227,0 +170749875272,227,0 +170749875320,228,0 +170749875370,218,0 +170749875419,216,0 +170749875469,215,0 +170749875518,218,0 +170749875566,218,0 +170749875614,219,0 +170749875663,221,0 +170749875711,222,0 +170749875761,223,0 +170749875811,224,0 +170749875858,224,0 +170749875908,225,0 +170749875956,227,0 +170749876004,229,0 +170749876053,228,0 +170749876101,230,0 +170749876151,229,0 +170749876199,230,0 +170749876247,229,0 +170749876295,217,0 +170749876343,217,0 +170749876391,217,0 +170749876439,217,0 +170749876488,218,0 +170749876538,219,0 +170749876587,220,0 +170749876637,220,0 +170749876686,221,0 +170749876736,222,0 +170749876785,223,0 +170749876833,224,0 +170749876881,225,0 +170749876929,227,0 +170749876979,227,0 +170749877028,229,0 +170749877076,228,0 +170749877124,228,0 +170749877174,227,0 +170749877222,218,0 +170749877271,216,0 +170749877321,216,0 +170749877370,216,0 +170749877418,217,0 +170749877466,219,0 +170749877514,220,0 +170749877563,221,0 +170749877613,221,0 +170749877662,223,0 +170749877712,222,0 +170749877761,224,0 +170749877811,224,0 +170749877860,225,0 +170749877910,226,0 +170749877958,227,0 +170749878006,226,0 +170749878054,227,0 +170749878102,228,0 +170749878149,222,0 +170749878197,215,0 +170749878245,216,0 +170749878295,216,0 +170749878342,216,0 +170749878390,217,0 +170749878438,217,0 +170749878488,218,0 +170749878536,219,0 +170749878583,222,0 +170749878631,222,0 +170749878679,224,0 +170749878727,223,0 +170749878775,224,0 +170749878823,225,0 +170749878872,227,0 +170749878920,227,0 +170749878968,227,0 +170749879016,228,0 +170749879064,227,0 +170749879113,217,0 +170749879163,217,0 +170749879211,216,0 +170749879260,217,0 +170749879308,219,0 +170749879356,219,0 +170749879404,220,0 +170749879452,220,0 +170749879500,222,0 +170749879547,223,0 +170749879595,225,0 +170749879643,226,0 +170749879693,226,0 +170749879741,226,0 +170749879790,226,0 +170749879838,228,0 +170749879887,227,0 +170749879935,227,0 +170749879983,226,0 +170749880031,217,0 +170749880079,217,0 +170749880129,218,0 +170749880178,219,0 +170749880226,221,0 +170749880274,223,0 +170749880322,222,0 +170749880372,223,0 +170749880420,225,0 +170749880467,225,0 +170749880515,226,0 +170749880563,227,0 +170749880611,226,0 +170749880659,228,0 +170749880707,227,0 +170749880755,227,0 +170749880803,229,0 +170749880850,228,0 +170749880900,227,0 +170749880948,219,0 +170749880996,219,0 +170749881044,219,0 +170749881093,221,0 +170749881141,221,0 +170749881191,222,0 +170749881240,224,0 +170749881290,225,0 +170749881338,225,0 +170749881386,226,0 +170749881434,226,0 +170749881482,227,0 +170749881530,227,0 +170749881577,228,0 +170749881625,228,0 +170749881675,227,0 +170749881723,228,0 +170749881772,228,0 +170749881822,227,0 +170749881870,224,0 +170749881919,217,0 +170749881967,216,0 +170749882015,218,0 +170749882063,218,0 +170749882111,220,0 +170749882161,221,0 +170749882209,222,0 +170749882258,222,0 +170749882306,223,0 +170749882355,225,0 +170749882403,226,0 +170749882453,227,0 +170749882502,228,0 +170749882550,227,0 +170749882600,229,0 +170749882648,228,0 +170749882696,227,0 +170749882744,232,0 +170749882793,227,0 +170749882842,216,0 +170749882890,216,0 +170749882940,216,0 +170749882989,217,0 +170749883037,218,0 +170749883085,219,0 +170749883133,220,0 +170749883181,221,0 +170749883228,222,0 +170749883276,223,0 +170749883324,224,0 +170749883372,225,0 +170749883421,226,0 +170749883471,226,0 +170749883519,227,0 +170749883568,225,0 +170749883616,227,0 +170749883664,227,0 +170749883712,228,0 +170749883761,216,0 +170749883809,216,0 +170749883857,216,0 +170749883905,216,0 +170749883953,217,0 +170749884001,219,0 +170749884050,220,0 +170749884098,220,0 +170749884146,222,0 +170749884194,222,0 +170749884241,224,0 +170749884289,226,0 +170749884339,226,0 +170749884388,227,0 +170749884436,229,0 +170749884484,227,0 +170749884532,227,0 +170749884582,228,0 +170749884630,228,0 +170749884678,218,0 +170749884726,215,0 +170749884773,216,0 +170749884821,217,0 +170749884871,216,0 +170749884919,216,0 +170749884967,217,0 +170749885015,218,0 +170749885063,220,0 +170749885111,220,0 +170749885159,222,0 +170749885206,223,0 +170749885254,225,0 +170749885302,226,0 +170749885352,226,0 +170749885401,227,0 +170749885449,228,0 +170749885497,226,0 +170749885545,228,0 +170749885593,217,0 +170749885641,216,0 +170749885689,216,0 +170749885737,216,0 +170749885785,217,0 +170749885834,217,0 +170749885882,218,0 +170749885932,218,0 +170749885980,219,0 +170749886027,223,0 +170749886075,222,0 +170749886125,223,0 +170749886173,225,0 +170749886222,226,0 +170749886270,231,0 +170749886318,226,0 +170749886366,228,0 +170749886414,225,0 +170749886461,227,0 +170749886509,217,0 +170749886557,215,0 +170749886605,216,0 +170749886653,216,0 +170749886701,218,0 +170749886749,219,0 +170749886797,220,0 +170749886844,219,0 +170749886892,222,0 +170749886940,222,0 +170749886988,223,0 +170749887036,224,0 +170749887084,225,0 +170749887132,225,0 +170749887179,229,0 +170749887227,227,0 +170749887275,225,0 +170749887323,227,0 +170749887371,228,0 +170749887420,228,0 +170749887468,218,0 +170749887518,217,0 +170749887566,218,0 +170749887614,220,0 +170749887662,220,0 +170749887710,221,0 +170749887758,220,0 +170749887806,223,0 +170749887854,222,0 +170749887901,223,0 +170749887951,224,0 +170749888000,225,0 +170749888050,227,0 +170749888100,228,0 +170749888147,227,0 +170749888197,227,0 +170749888245,228,0 +170749888293,229,0 +170749888341,227,0 +170749888390,221,0 +170749888438,217,0 +170749888486,218,0 +170749888534,218,0 +170749888582,221,0 +170749888630,220,0 +170749888678,223,0 +170749888726,223,0 +170749888774,220,0 +170749888822,225,0 +170749888871,226,0 +170749888919,226,0 +170749888967,227,0 +170749889016,232,0 +170749889064,229,0 +170749889112,230,0 +170749889162,230,0 +170749889209,228,0 +170749889257,228,0 +170749889305,229,0 +170749889353,218,0 +170749889401,220,0 +170749889449,220,0 +170749889497,221,0 +170749889545,222,0 +170749889593,222,0 +170749889640,226,0 +170749889688,226,0 +170749889736,227,0 +170749889784,227,0 +170749889832,228,0 +170749889880,227,0 +170749889928,228,0 +170749889976,228,0 +170749890025,226,0 +170749890073,230,0 +170749890121,228,0 +170749890169,228,0 +170749890217,227,0 +170749890265,218,0 +170749890313,219,0 +170749890363,220,0 +170749890411,220,0 +170749890459,222,0 +170749890506,224,0 +170749890554,224,0 +170749890602,224,0 +170749890652,225,0 +170749890701,227,0 +170749890749,228,0 +170749890797,227,0 +170749890845,228,0 +170749890893,231,0 +170749890941,229,0 +170749890989,229,0 +170749891037,228,0 +170749891086,227,0 +170749891136,228,0 +170749891185,218,0 +170749891233,217,0 +170749891281,218,0 +170749891329,219,0 +170749891379,221,0 +170749891427,221,0 +170749891475,222,0 +170749891523,223,0 +170749891570,224,0 +170749891618,225,0 +170749891668,226,0 +170749891716,227,0 +170749891765,227,0 +170749891813,228,0 +170749891861,229,0 +170749891909,229,0 +170749891957,228,0 +170749892005,228,0 +170749892053,227,0 +170749892103,217,0 +170749892151,217,0 +170749892199,217,0 +170749892248,219,0 +170749892296,220,0 +170749892344,220,0 +170749892393,220,0 +170749892441,222,0 +170749892491,223,0 +170749892540,224,0 +170749892590,222,0 +170749892639,225,0 +170749892687,227,0 +170749892737,227,0 +170749892785,228,0 +170749892833,227,0 +170749892881,227,0 +170749892929,227,0 +170749892978,227,0 +170749893028,217,0 +170749893077,216,0 +170749893125,216,0 +170749893173,217,0 +170749893221,219,0 +170749893269,220,0 +170749893318,221,0 +170749893368,220,0 +170749893416,222,0 +170749893464,223,0 +170749893512,225,0 +170749893561,225,0 +170749893609,225,0 +170749893657,227,0 +170749893706,227,0 +170749893754,227,0 +170749893802,228,0 +170749893850,228,0 +170749893899,227,0 +170749893947,226,0 +170749893995,216,0 +170749894043,216,0 +170749894092,216,0 +170749894142,217,0 +170749894190,218,0 +170749894238,219,0 +170749894287,220,0 +170749894335,220,0 +170749894385,221,0 +170749894432,223,0 +170749894482,225,0 +170749894530,224,0 +170749894578,226,0 +170749894626,227,0 +170749894674,226,0 +170749894722,226,0 +170749894771,226,0 +170749894819,227,0 +170749894869,227,0 +170749894918,217,0 +170749894968,216,0 +170749895017,216,0 +170749895065,217,0 +170749895113,216,0 +170749895163,217,0 +170749895212,218,0 +170749895262,220,0 +170749895311,222,0 +170749895359,222,0 +170749895407,223,0 +170749895455,224,0 +170749895503,226,0 +170749895551,226,0 +170749895600,228,0 +170749895648,228,0 +170749895698,228,0 +170749895746,227,0 +170749895794,227,0 +170749895842,217,0 +170749895890,216,0 +170749895938,216,0 +170749895985,216,0 +170749896033,217,0 +170749896081,217,0 +170749896131,219,0 +170749896179,218,0 +170749896227,221,0 +170749896275,222,0 +170749896323,223,0 +170749896371,221,0 +170749896419,224,0 +170749896467,224,0 +170749896516,227,0 +170749896564,229,0 +170749896612,226,0 +170749896662,226,0 +170749896711,227,0 +170749896761,218,0 +170749896809,216,0 +170749896857,216,0 +170749896906,216,0 +170749896956,217,0 +170749897005,218,0 +170749897053,220,0 +170749897102,221,0 +170749897150,221,0 +170749897198,222,0 +170749897246,224,0 +170749897294,224,0 +170749897344,224,0 +170749897392,226,0 +170749897440,229,0 +170749897489,228,0 +170749897539,229,0 +170749897588,227,0 +170749897636,242,0 +170749897686,219,0 +170749897735,215,0 +170749897785,216,0 +170749897833,216,0 +170749897881,216,0 +170749897929,218,0 +170749897977,219,0 +170749898025,221,0 +170749898074,222,0 +170749898122,220,0 +170749898172,222,0 +170749898221,225,0 +170749898269,227,0 +170749898317,226,0 +170749898365,228,0 +170749898413,227,0 +170749898461,229,0 +170749898510,228,0 +170749898560,227,0 +170749898608,219,0 +170749898657,216,0 +170749898705,216,0 +170749898753,216,0 +170749898801,217,0 +170749898851,219,0 +170749898899,220,0 +170749898948,220,0 +170749898998,220,0 +170749899047,222,0 +170749899095,222,0 +170749899145,226,0 +170749899193,225,0 +170749899241,225,0 +170749899290,226,0 +170749899340,230,0 +170749899389,228,0 +170749899439,227,0 +170749899488,227,0 +170749899536,217,0 +170749899584,215,0 +170749899632,215,0 +170749899681,216,0 +170749899731,217,0 +170749899779,219,0 +170749899827,220,0 +170749899877,220,0 +170749899924,221,0 +170749899972,220,0 +170749900020,222,0 +170749900070,224,0 +170749900118,225,0 +170749900167,225,0 +170749900217,225,0 +170749900265,226,0 +170749900313,226,0 +170749900361,229,0 +170749900410,235,0 +170749900460,218,0 +170749900510,215,0 +170749900559,216,0 +170749900609,216,0 +170749900658,216,0 +170749900706,218,0 +170749900754,218,0 +170749900804,219,0 +170749900851,220,0 +170749900899,220,0 +170749900947,222,0 +170749900995,224,0 +170749901043,224,0 +170749901093,227,0 +170749901141,225,0 +170749901190,226,0 +170749901238,226,0 +170749901286,226,0 +170749901334,228,0 +170749901383,227,0 +170749901431,217,0 +170749901481,216,0 +170749901531,216,0 +170749901579,216,0 +170749901626,217,0 +170749901676,219,0 +170749901724,219,0 +170749901772,221,0 +170749901821,222,0 +170749901869,222,0 +170749901917,225,0 +170749901965,227,0 +170749902015,226,0 +170749902064,227,0 +170749902112,227,0 +170749902160,229,0 +170749902208,227,0 +170749902258,227,0 +170749902307,227,0 +170749902357,217,0 +170749902405,217,0 +170749902453,220,0 +170749902502,220,0 +170749902550,222,0 +170749902598,222,0 +170749902646,224,0 +170749902696,224,0 +170749902744,225,0 +170749902793,226,0 +170749902841,227,0 +170749902889,226,0 +170749902937,227,0 +170749902985,227,0 +170749903034,229,0 +170749903084,229,0 +170749903132,228,0 +170749903180,228,0 +170749903228,227,0 +170749903276,220,0 +170749903324,220,0 +170749903372,220,0 +170749903420,221,0 +170749903469,224,0 +170749903519,224,0 +170749903568,224,0 +170749903617,225,0 +170749903667,225,0 +170749903716,226,0 +170749903764,228,0 +170749903812,227,0 +170749903860,227,0 +170749903908,228,0 +170749903956,230,0 +170749904004,227,0 +170749904051,228,0 +170749904099,227,0 +170749904149,227,0 +170749904197,217,0 +170749904245,216,0 +170749904294,218,0 +170749904342,218,0 +170749904391,220,0 +170749904439,220,0 +170749904487,221,0 +170749904537,222,0 +170749904585,224,0 +170749904632,224,0 +170749904682,225,0 +170749904730,226,0 +170749904778,226,0 +170749904825,227,0 +170749904873,227,0 +170749904921,226,0 +170749904969,227,0 +170749905017,228,0 +170749905066,225,0 +170749905116,218,0 +170749905164,217,0 +170749905212,219,0 +170749905261,219,0 +170749905309,220,0 +170749905357,221,0 +170749905405,222,0 +170749905452,223,0 +170749905500,224,0 +170749905550,224,0 +170749905598,224,0 +170749905646,225,0 +170749905695,228,0 +170749905744,227,0 +170749905794,227,0 +170749905842,227,0 +170749905890,226,0 +170749905938,227,0 +170749905986,226,0 +170749906034,221,0 +170749906082,216,0 +170749906129,216,0 +170749906177,217,0 +170749906227,218,0 +170749906275,219,0 +170749906322,221,0 +170749906370,221,0 +170749906418,221,0 +170749906466,223,0 +170749906514,222,0 +170749906562,224,0 +170749906610,225,0 +170749906659,227,0 +170749906707,230,0 +170749906755,227,0 +170749906803,228,0 +170749906851,228,0 +170749906900,228,0 +170749906948,227,0 +170749906996,217,0 +170749907044,216,0 +170749907092,216,0 +170749907141,217,0 +170749907189,218,0 +170749907239,219,0 +170749907288,219,0 +170749907338,221,0 +170749907386,221,0 +170749907434,223,0 +170749907482,223,0 +170749907531,224,0 +170749907579,225,0 +170749907627,226,0 +170749907675,226,0 +170749907723,226,0 +170749907772,226,0 +170749907820,226,0 +170749907870,227,0 +170749907918,217,0 +170749907966,216,0 +170749908014,216,0 +170749908062,217,0 +170749908110,218,0 +170749908158,220,0 +170749908206,220,0 +170749908255,221,0 +170749908303,221,0 +170749908352,222,0 +170749908400,225,0 +170749908448,224,0 +170749908496,225,0 +170749908546,225,0 +170749908595,227,0 +170749908645,228,0 +170749908693,228,0 +170749908741,227,0 +170749908790,227,0 +170749908838,217,0 +170749908888,216,0 +170749908937,216,0 +170749908985,218,0 +170749909035,218,0 +170749909084,218,0 +170749909134,220,0 +170749909182,221,0 +170749909230,221,0 +170749909279,223,0 +170749909327,223,0 +170749909377,224,0 +170749909426,225,0 +170749909474,227,0 +170749909524,227,0 +170749909572,227,0 +170749909619,228,0 +170749909669,228,0 +170749909717,227,0 +170749909765,218,0 +170749909814,216,0 +170749909864,216,0 +170749909912,218,0 +170749909960,219,0 +170749910008,220,0 +170749910056,223,0 +170749910105,222,0 +170749910153,224,0 +170749910201,223,0 +170749910249,224,0 +170749910297,225,0 +170749910347,227,0 +170749910395,225,0 +170749910443,227,0 +170749910490,226,0 +170749910538,227,0 +170749910586,227,0 +170749910636,229,0 +170749910684,227,0 +170749910733,216,0 +170749910781,215,0 +170749910831,217,0 +170749910879,217,0 +170749910927,219,0 +170749910976,220,0 +170749911024,222,0 +170749911074,221,0 +170749911123,222,0 +170749911171,223,0 +170749911219,225,0 +170749911267,225,0 +170749911315,227,0 +170749911363,227,0 +170749911411,228,0 +170749911459,226,0 +170749911507,229,0 +170749911556,228,0 +170749911606,227,0 +170749911654,216,0 +170749911702,216,0 +170749911750,216,0 +170749911797,216,0 +170749911845,217,0 +170749911893,218,0 +170749911941,219,0 +170749911989,220,0 +170749912039,221,0 +170749912088,223,0 +170749912136,223,0 +170749912184,225,0 +170749912232,225,0 +170749912280,227,0 +170749912330,225,0 +170749912378,227,0 +170749912427,227,0 +170749912477,228,0 +170749912526,223,0 +170749912574,217,0 +170749912623,216,0 +170749912673,216,0 +170749912721,216,0 +170749912769,217,0 +170749912818,218,0 +170749912868,220,0 +170749912916,219,0 +170749912964,221,0 +170749913012,222,0 +170749913060,226,0 +170749913108,225,0 +170749913156,227,0 +170749913205,225,0 +170749913255,225,0 +170749913303,230,0 +170749913352,227,0 +170749913400,227,0 +170749913450,229,0 +170749913499,217,0 +170749913547,216,0 +170749913595,218,0 +170749913643,219,0 +170749913693,221,0 +170749913742,221,0 +170749913792,222,0 +170749913839,223,0 +170749913887,223,0 +170749913937,225,0 +170749913986,226,0 +170749914034,226,0 +170749914084,227,0 +170749914132,227,0 +170749914180,227,0 +170749914229,226,0 +170749914279,227,0 +170749914327,227,0 +170749914376,226,0 +170749914424,217,0 +170749914472,215,0 +170749914520,215,0 +170749914568,216,0 +170749914616,216,0 +170749914665,217,0 +170749914715,218,0 +170749914763,225,0 +170749914812,221,0 +170749914860,223,0 +170749914908,223,0 +170749914956,224,0 +170749915006,225,0 +170749915054,227,0 +170749915103,226,0 +170749915153,227,0 +170749915202,227,0 +170749915252,227,0 +170749915300,228,0 +170749915348,217,0 +170749915397,215,0 +170749915445,216,0 +170749915494,216,0 +170749915542,216,0 +170749915592,216,0 +170749915641,217,0 +170749915689,219,0 +170749915737,219,0 +170749915785,220,0 +170749915835,221,0 +170749915883,223,0 +170749915931,223,0 +170749915978,223,0 +170749916026,223,0 +170749916076,225,0 +170749916125,225,0 +170749916173,226,0 +170749916223,226,0 +170749916271,219,0 +170749916319,217,0 +170749916366,217,0 +170749916414,219,0 +170749916462,220,0 +170749916510,221,0 +170749916558,222,0 +170749916606,224,0 +170749916654,223,0 +170749916702,225,0 +170749916750,223,0 +170749916799,227,0 +170749916847,226,0 +170749916897,227,0 +170749916945,228,0 +170749916993,226,0 +170749917042,229,0 +170749917092,228,0 +170749917140,228,0 +170749917189,229,0 +170749917237,218,0 +170749917287,218,0 +170749917334,220,0 +170749917382,220,0 +170749917430,221,0 +170749917478,222,0 +170749917526,223,0 +170749917574,223,0 +170749917622,222,0 +170749917672,225,0 +170749917719,226,0 +170749917769,226,0 +170749917817,227,0 +170749917867,229,0 +170749917914,230,0 +170749917964,228,0 +170749918012,230,0 +170749918061,229,0 +170749918109,227,0 +170749918157,218,0 +170749918205,218,0 +170749918255,219,0 +170749918304,222,0 +170749918352,222,0 +170749918400,222,0 +170749918448,224,0 +170749918496,224,0 +170749918546,225,0 +170749918594,226,0 +170749918642,226,0 +170749918690,228,0 +170749918738,227,0 +170749918786,227,0 +170749918835,230,0 +170749918885,228,0 +170749918934,229,0 +170749918984,228,0 +170749919033,227,0 +170749919081,218,0 +170749919129,219,0 +170749919177,218,0 +170749919225,219,0 +170749919273,220,0 +170749919322,221,0 +170749919370,222,0 +170749919418,223,0 +170749919466,223,0 +170749919516,224,0 +170749919565,226,0 +170749919613,227,0 +170749919661,227,0 +170749919709,227,0 +170749919759,228,0 +170749919807,228,0 +170749919855,229,0 +170749919903,228,0 +170749919951,227,0 +170749919999,218,0 +170749920046,216,0 +170749920094,217,0 +170749920142,218,0 +170749920190,220,0 +170749920238,221,0 +170749920286,222,0 +170749920334,222,0 +170749920382,223,0 +170749920432,224,0 +170749920481,225,0 +170749920531,227,0 +170749920580,228,0 +170749920628,228,0 +170749920678,229,0 +170749920727,229,0 +170749920775,227,0 +170749920823,228,0 +170749920873,228,0 +170749920921,225,0 +170749920970,216,0 +170749921018,216,0 +170749921066,217,0 +170749921116,216,0 +170749921163,216,0 +170749921211,219,0 +170749921259,221,0 +170749921307,220,0 +170749921357,221,0 +170749921405,222,0 +170749921453,224,0 +170749921502,225,0 +170749921550,226,0 +170749921600,225,0 +170749921647,228,0 +170749921697,229,0 +170749921746,228,0 +170749921796,228,0 +170749921844,227,0 +170749921892,216,0 +170749921940,216,0 +170749921988,215,0 +170749922036,216,0 +170749922084,216,0 +170749922133,217,0 +170749922181,218,0 +170749922229,218,0 +170749922279,218,0 +170749922327,219,0 +170749922376,234,0 +170749922424,222,0 +170749922472,222,0 +170749922520,225,0 +170749922568,225,0 +170749922618,225,0 +170749922667,225,0 +170749922715,226,0 +170749922763,227,0 +170749922813,216,0 +170749922862,215,0 +170749922910,214,0 +170749922958,215,0 +170749923006,215,0 +170749923054,215,0 +170749923102,216,0 +170749923151,217,0 +170749923201,217,0 +170749923249,218,0 +170749923297,218,0 +170749923344,218,0 +170749923394,219,0 +170749923442,221,0 +170749923490,222,0 +170749923538,222,0 +170749923585,224,0 +170749923633,224,0 +170749923681,227,0 +170749923729,218,0 +170749923777,217,0 +170749923825,217,0 +170749923873,217,0 +170749923920,217,0 +170749923968,218,0 +170749924016,219,0 +170749924064,220,0 +170749924112,220,0 +170749924160,222,0 +170749924208,223,0 +170749924256,226,0 +170749924303,227,0 +170749924351,226,0 +170749924401,227,0 +170749924449,227,0 +170749924497,227,0 +170749924544,226,0 +170749924592,228,0 +170749924642,221,0 +170749924690,216,0 +170749924737,217,0 +170749924785,218,0 +170749924833,219,0 +170749924881,220,0 +170749924929,220,0 +170749924977,222,0 +170749925026,223,0 +170749925074,224,0 +170749925122,225,0 +170749925172,225,0 +170749925221,227,0 +170749925269,226,0 +170749925317,227,0 +170749925365,228,0 +170749925414,227,0 +170749925462,228,0 +170749925510,228,0 +170749925560,226,0 +170749925608,220,0 +170749925657,220,0 +170749925705,219,0 +170749925753,222,0 +170749925801,222,0 +170749925849,223,0 +170749925899,227,0 +170749925947,225,0 +170749925996,226,0 +170749926044,227,0 +170749926092,226,0 +170749926142,229,0 +170749926191,227,0 +170749926239,229,0 +170749926289,227,0 +170749926337,227,0 +170749926386,227,0 +170749926434,228,0 +170749926484,227,0 +170749926532,217,0 +170749926581,217,0 +170749926629,217,0 +170749926679,218,0 +170749926728,219,0 +170749926776,220,0 +170749926824,223,0 +170749926872,223,0 +170749926920,223,0 +170749926969,225,0 +170749927019,226,0 +170749927067,226,0 +170749927116,225,0 +170749927166,226,0 +170749927214,229,0 +170749927262,227,0 +170749927310,226,0 +170749927359,227,0 +170749927407,227,0 +170749927455,218,0 +170749927503,216,0 +170749927551,216,0 +170749927599,217,0 +170749927649,217,0 +170749927697,217,0 +170749927745,218,0 +170749927793,217,0 +170749927842,220,0 +170749927891,220,0 +170749927939,222,0 +170749927989,223,0 +170749928037,228,0 +170749928085,226,0 +170749928133,226,0 +170749928182,227,0 +170749928232,225,0 +170749928280,225,0 +170749928329,227,0 +170749928377,217,0 +170749928425,215,0 +170749928475,216,0 +170749928523,216,0 +170749928570,216,0 +170749928618,217,0 +170749928666,217,0 +170749928714,219,0 +170749928762,220,0 +170749928810,221,0 +170749928860,222,0 +170749928907,223,0 +170749928955,224,0 +170749929003,224,0 +170749929051,227,0 +170749929099,227,0 +170749929149,227,0 +170749929197,230,0 +170749929246,228,0 +170749929294,226,0 +170749929344,216,0 +170749929393,216,0 +170749929441,216,0 +170749929491,216,0 +170749929539,217,0 +170749929587,218,0 +170749929636,220,0 +170749929686,219,0 +170749929734,221,0 +170749929783,222,0 +170749929831,224,0 +170749929881,225,0 +170749929930,226,0 +170749929980,227,0 +170749930028,227,0 +170749930077,226,0 +170749930125,228,0 +170749930174,228,0 +170749930224,229,0 +170749930272,216,0 +170749930320,217,0 +170749930369,217,0 +170749930419,217,0 +170749930467,218,0 +170749930516,219,0 +170749930564,220,0 +170749930614,222,0 +170749930663,222,0 +170749930713,223,0 +170749930761,224,0 +170749930810,223,0 +170749930860,226,0 +170749930908,226,0 +170749930956,226,0 +170749931004,229,0 +170749931051,227,0 +170749931101,227,0 +170749931149,226,0 +170749931197,216,0 +170749931244,216,0 +170749931294,217,0 +170749931342,217,0 +170749931390,219,0 +170749931438,219,0 +170749931485,221,0 +170749931533,223,0 +170749931581,223,0 +170749931629,223,0 +170749931677,224,0 +170749931727,225,0 +170749931776,226,0 +170749931826,228,0 +170749931874,227,0 +170749931923,227,0 +170749931971,229,0 +170749932019,228,0 +170749932067,227,0 +170749932115,217,0 +170749932163,217,0 +170749932211,218,0 +170749932259,218,0 +170749932307,220,0 +170749932355,220,0 +170749932404,222,0 +170749932452,222,0 +170749932502,223,0 +170749932550,224,0 +170749932598,224,0 +170749932646,225,0 +170749932693,225,0 +170749932741,225,0 +170749932789,226,0 +170749932837,229,0 +170749932887,229,0 +170749932935,228,0 +170749932984,228,0 +170749933034,217,0 +170749933083,216,0 +170749933131,217,0 +170749933179,218,0 +170749933227,219,0 +170749933275,220,0 +170749933323,220,0 +170749933373,221,0 +170749933422,222,0 +170749933470,222,0 +170749933518,223,0 +170749933567,225,0 +170749933615,228,0 +170749933663,226,0 +170749933711,227,0 +170749933761,227,0 +170749933809,227,0 +170749933857,227,0 +170749933906,228,0 +170749933954,227,0 +170749934002,217,0 +170749934050,217,0 +170749934098,219,0 +170749934146,220,0 +170749934194,222,0 +170749934242,221,0 +170749934290,221,0 +170749934338,223,0 +170749934386,224,0 +170749934434,225,0 +170749934482,226,0 +170749934531,224,0 +170749934579,228,0 +170749934629,229,0 +170749934677,228,0 +170749934725,226,0 +170749934772,229,0 +170749934820,228,0 +170749934868,227,0 +170749934916,217,0 +170749934964,218,0 +170749935012,219,0 +170749935062,220,0 +170749935110,221,0 +170749935159,222,0 +170749935207,224,0 +170749935255,224,0 +170749935303,226,0 +170749935352,225,0 +170749935400,226,0 +170749935450,229,0 +170749935498,228,0 +170749935546,226,0 +170749935595,227,0 +170749935645,228,0 +170749935693,228,0 +170749935741,227,0 +170749935788,227,0 +170749935836,218,0 +170749935884,218,0 +170749935934,219,0 +170749935982,219,0 +170749936030,221,0 +170749936078,222,0 +170749936125,223,0 +170749936173,223,0 +170749936221,225,0 +170749936271,225,0 +170749936320,226,0 +170749936370,227,0 +170749936418,227,0 +170749936466,227,0 +170749936514,227,0 +170749936562,228,0 +170749936611,229,0 +170749936659,226,0 +170749936707,228,0 +170749936756,218,0 +170749936806,216,0 +170749936854,217,0 +170749936902,218,0 +170749936950,219,0 +170749936998,221,0 +170749937046,222,0 +170749937093,222,0 +170749937143,224,0 +170749937191,225,0 +170749937239,225,0 +170749937287,226,0 +170749937336,228,0 +170749937384,227,0 +170749937432,228,0 +170749937480,228,0 +170749937528,226,0 +170749937575,228,0 +170749937623,228,0 +170749937671,223,0 +170749937719,216,0 +170749937767,217,0 +170749937815,218,0 +170749937863,219,0 +170749937912,221,0 +170749937960,221,0 +170749938008,223,0 +170749938057,224,0 +170749938105,226,0 +170749938153,226,0 +170749938202,227,0 +170749938250,226,0 +170749938298,228,0 +170749938346,228,0 +170749938394,228,0 +170749938442,227,0 +170749938490,228,0 +170749938538,228,0 +170749938586,226,0 +170749938634,217,0 +170749938682,216,0 +170749938731,217,0 +170749938781,218,0 +170749938828,219,0 +170749938876,221,0 +170749938924,221,0 +170749938972,221,0 +170749939020,223,0 +170749939068,227,0 +170749939116,225,0 +170749939164,226,0 +170749939213,228,0 +170749939261,229,0 +170749939309,228,0 +170749939359,227,0 +170749939407,229,0 +170749939456,230,0 +170749939504,227,0 +170749939552,218,0 +170749939600,216,0 +170749939648,216,0 +170749939696,217,0 +170749939744,218,0 +170749939793,218,0 +170749939841,219,0 +170749939889,220,0 +170749939937,220,0 +170749939985,223,0 +170749940033,222,0 +170749940080,223,0 +170749940128,225,0 +170749940176,228,0 +170749940224,228,0 +170749940274,228,0 +170749940323,228,0 +170749940373,227,0 +170749940422,227,0 +170749940470,225,0 +170749940518,215,0 +170749940566,216,0 +170749940615,216,0 +170749940665,216,0 +170749940713,217,0 +170749940761,217,0 +170749940810,218,0 +170749940858,218,0 +170749940906,219,0 +170749940954,221,0 +170749941002,223,0 +170749941050,226,0 +170749941098,226,0 +170749941146,226,0 +170749941195,227,0 +170749941245,227,0 +170749941293,228,0 +170749941341,231,0 +170749941388,227,0 +170749941436,216,0 +170749941486,215,0 +170749941534,216,0 +170749941583,216,0 +170749941633,216,0 +170749941682,217,0 +170749941730,217,0 +170749941778,218,0 +170749941828,219,0 +170749941876,221,0 +170749941924,222,0 +170749941973,223,0 +170749942021,226,0 +170749942069,226,0 +170749942117,228,0 +170749942167,226,0 +170749942215,227,0 +170749942264,228,0 +170749942312,227,0 +170749942360,217,0 +170749942408,216,0 +170749942456,216,0 +170749942504,217,0 +170749942553,218,0 +170749942601,218,0 +170749942651,220,0 +170749942699,220,0 +170749942747,221,0 +170749942795,222,0 +170749942843,222,0 +170749942892,223,0 +170749942942,225,0 +170749942991,225,0 +170749943041,226,0 +170749943089,226,0 +170749943138,227,0 +170749943186,228,0 +170749943234,227,0 +170749943282,218,0 +170749943332,216,0 +170749943381,216,0 +170749943431,217,0 +170749943480,218,0 +170749943528,220,0 +170749943576,221,0 +170749943624,222,0 +170749943672,223,0 +170749943721,224,0 +170749943769,225,0 +170749943817,227,0 +170749943865,227,0 +170749943915,227,0 +170749943964,231,0 +170749944014,227,0 +170749944062,229,0 +170749944110,230,0 +170749944159,227,0 +170749944209,217,0 +170749944258,216,0 +170749944306,216,0 +170749944354,216,0 +170749944404,219,0 +170749944452,218,0 +170749944501,219,0 +170749944549,221,0 +170749944599,220,0 +170749944648,223,0 +170749944696,223,0 +170749944744,226,0 +170749944792,226,0 +170749944840,226,0 +170749944888,228,0 +170749944936,228,0 +170749944985,227,0 +170749945035,227,0 +170749945083,227,0 +170749945132,217,0 +170749945182,216,0 +170749945230,216,0 +170749945278,217,0 +170749945326,218,0 +170749945375,218,0 +170749945425,219,0 +170749945474,219,0 +170749945522,221,0 +170749945570,223,0 +170749945619,224,0 +170749945667,224,0 +170749945715,224,0 +170749945765,227,0 +170749945814,227,0 +170749945864,228,0 +170749945913,227,0 +170749945961,226,0 +170749946011,226,0 +170749946059,218,0 +170749946108,218,0 +170749946156,217,0 +170749946204,218,0 +170749946252,218,0 +170749946300,221,0 +170749946348,224,0 +170749946396,222,0 +170749946445,223,0 +170749946493,224,0 +170749946541,226,0 +170749946591,226,0 +170749946639,226,0 +170749946688,227,0 +170749946738,229,0 +170749946786,227,0 +170749946834,228,0 +170749946882,229,0 +170749946930,227,0 +170749946979,218,0 +170749947029,218,0 +170749947077,220,0 +170749947126,221,0 +170749947176,221,0 +170749947224,225,0 +170749947273,224,0 +170749947321,224,0 +170749947370,226,0 +170749947418,227,0 +170749947466,225,0 +170749947514,227,0 +170749947562,227,0 +170749947610,227,0 +170749947658,227,0 +170749947706,228,0 +170749947755,227,0 +170749947805,228,0 +170749947853,228,0 +170749947901,225,0 +170749947950,223,0 +170749947998,223,0 +170749948046,223,0 +170749948094,223,0 +170749948142,224,0 +170749948192,224,0 +170749948241,226,0 +170749948291,226,0 +170749948338,228,0 +170749948386,228,0 +170749948434,227,0 +170749948484,229,0 +170749948532,230,0 +170749948581,229,0 +170749948629,227,0 +170749948677,227,0 +170749948725,227,0 +170749948773,228,0 +170749948823,225,0 +170749948871,220,0 +170749948920,220,0 +170749948970,221,0 +170749949019,222,0 +170749949067,221,0 +170749949117,224,0 +170749949166,224,0 +170749949214,226,0 +170749949262,226,0 +170749949312,234,0 +170749949361,227,0 +170749949411,229,0 +170749949458,229,0 +170749949506,228,0 +170749949554,227,0 +170749949602,229,0 +170749949652,228,0 +170749949700,228,0 +170749949749,226,0 +170749949799,217,0 +170749949847,217,0 +170749949896,219,0 +170749949944,219,0 +170749949992,222,0 +170749950040,222,0 +170749950088,223,0 +170749950137,222,0 +170749950185,223,0 +170749950235,225,0 +170749950283,226,0 +170749950331,227,0 +170749950380,227,0 +170749950428,228,0 +170749950478,227,0 +170749950527,228,0 +170749950575,228,0 +170749950625,227,0 +170749950674,226,0 +170749950722,216,0 +170749950772,216,0 +170749950821,216,0 +170749950871,216,0 +170749950920,217,0 +170749950968,218,0 +170749951017,219,0 +170749951067,220,0 +170749951117,222,0 +170749951166,223,0 +170749951214,223,0 +170749951263,225,0 +170749951311,228,0 +170749951361,225,0 +170749951409,228,0 +170749951457,226,0 +170749951506,227,0 +170749951554,227,0 +170749951602,228,0 +170749951650,216,0 +170749951698,216,0 +170749951746,217,0 +170749951794,216,0 +170749951844,217,0 +170749951892,217,0 +170749951939,217,0 +170749951989,219,0 +170749952037,220,0 +170749952085,222,0 +170749952133,222,0 +170749952182,224,0 +170749952232,225,0 +170749952280,225,0 +170749952329,227,0 +170749952377,226,0 +170749952425,227,0 +170749952475,227,0 +170749952524,226,0 +170749952572,217,0 +170749952620,215,0 +170749952668,216,0 +170749952718,216,0 +170749952766,217,0 +170749952813,217,0 +170749952861,217,0 +170749952909,218,0 +170749952957,219,0 +170749953005,220,0 +170749953053,223,0 +170749953101,223,0 +170749953151,222,0 +170749953200,224,0 +170749953250,224,0 +170749953298,225,0 +170749953346,226,0 +170749953395,229,0 +170749953443,227,0 +170749953491,221,0 +170749953541,216,0 +170749953589,216,0 +170749953636,216,0 +170749953684,216,0 +170749953734,217,0 +170749953783,217,0 +170749953831,218,0 +170749953881,219,0 +170749953929,221,0 +170749953977,222,0 +170749954026,223,0 +170749954076,224,0 +170749954124,226,0 +170749954172,225,0 +170749954220,227,0 +170749954267,227,0 +170749954315,227,0 +170749954363,228,0 +170749954411,218,0 +170749954461,216,0 +170749954509,216,0 +170749954557,216,0 +170749954606,216,0 +170749954656,217,0 +170749954704,217,0 +170749954752,218,0 +170749954800,218,0 +170749954848,219,0 +170749954895,222,0 +170749954943,224,0 +170749954993,225,0 +170749955041,224,0 +170749955088,225,0 +170749955136,226,0 +170749955184,227,0 +170749955233,226,0 +170749955281,227,0 +170749955329,228,0 +170749955377,216,0 +170749955425,216,0 +170749955473,216,0 +170749955521,218,0 +170749955568,217,0 +170749955616,219,0 +170749955666,220,0 +170749955714,220,0 +170749955761,222,0 +170749955809,223,0 +170749955857,225,0 +170749955905,224,0 +170749955953,225,0 +170749956001,225,0 +170749956049,226,0 +170749956097,225,0 +170749956145,227,0 +170749956193,225,0 +170749956240,227,0 +170749956288,218,0 +170749956336,216,0 +170749956386,217,0 +170749956434,219,0 +170749956482,220,0 +170749956530,221,0 +170749956577,222,0 +170749956625,223,0 +170749956673,222,0 +170749956721,224,0 +170749956769,225,0 +170749956817,227,0 +170749956865,225,0 +170749956914,229,0 +170749956962,228,0 +170749957010,229,0 +170749957058,229,0 +170749957106,231,0 +170749957155,227,0 +170749957203,221,0 +170749957251,216,0 +170749957299,216,0 +170749957349,216,0 +170749957396,216,0 +170749957444,218,0 +170749957492,219,0 +170749957540,220,0 +170749957588,221,0 +170749957636,222,0 +170749957684,222,0 +170749957733,224,0 +170749957783,225,0 +170749957832,226,0 +170749957880,227,0 +170749957928,226,0 +170749957976,223,0 +170749958024,228,0 +170749958071,227,0 +170749958119,227,0 +170749958167,216,0 +170749958215,216,0 +170749958263,216,0 +170749958311,217,0 +170749958359,216,0 +170749958407,218,0 +170749958455,218,0 +170749958503,219,0 +170749958551,220,0 +170749958599,221,0 +170749958648,223,0 +170749958696,225,0 +170749958746,225,0 +170749958794,227,0 +170749958841,226,0 +170749958891,226,0 +170749958940,226,0 +170749958988,228,0 +170749959038,228,0 +170749959088,217,0 +170749959135,216,0 +170749959183,216,0 +170749959233,217,0 +170749959283,218,0 +170749959330,219,0 +170749959380,222,0 +170749959428,221,0 +170749959476,220,0 +170749959524,222,0 +170749959572,224,0 +170749959621,223,0 +170749959669,225,0 +170749959717,225,0 +170749959767,225,0 +170749959815,226,0 +170749959863,228,0 +170749959911,227,0 +170749959959,228,0 +170749960008,217,0 +170749960058,216,0 +170749960107,216,0 +170749960155,217,0 +170749960204,218,0 +170749960252,218,0 +170749960302,220,0 +170749960350,221,0 +170749960398,221,0 +170749960447,223,0 +170749960497,224,0 +170749960546,226,0 +170749960594,227,0 +170749960642,226,0 +170749960690,226,0 +170749960738,227,0 +170749960786,227,0 +170749960834,227,0 +170749960884,228,0 +170749960932,218,0 +170749960980,216,0 +170749961028,218,0 +170749961076,218,0 +170749961124,219,0 +170749961173,220,0 +170749961221,221,0 +170749961269,221,0 +170749961318,224,0 +170749961366,221,0 +170749961416,224,0 +170749961465,226,0 +170749961515,227,0 +170749961563,227,0 +170749961611,229,0 +170749961659,227,0 +170749961707,227,0 +170749961756,226,0 +170749961804,227,0 +170749961852,219,0 +170749961900,216,0 +170749961948,218,0 +170749961998,218,0 +170749962047,219,0 +170749962097,221,0 +170749962146,222,0 +170749962196,222,0 +170749962244,223,0 +170749962293,224,0 +170749962341,225,0 +170749962391,225,0 +170749962439,226,0 +170749962487,226,0 +170749962535,227,0 +170749962584,227,0 +170749962632,227,0 +170749962680,227,0 +170749962730,228,0 +170749962778,226,0 +170749962826,217,0 +170749962875,219,0 +170749962925,219,0 +170749962973,220,0 +170749963021,223,0 +170749963070,223,0 +170749963120,223,0 +170749963169,225,0 +170749963219,226,0 +170749963267,226,0 +170749963316,234,0 +170749963364,229,0 +170749963412,228,0 +170749963462,228,0 +170749963510,228,0 +170749963558,228,0 +170749963606,228,0 +170749963654,227,0 +170749963703,227,0 +170749963751,219,0 +170749963801,218,0 +170749963849,220,0 +170749963897,221,0 +170749963946,222,0 +170749963994,222,0 +170749964042,223,0 +170749964090,224,0 +170749964140,224,0 +170749964189,224,0 +170749964237,226,0 +170749964287,226,0 +170749964336,227,0 +170749964384,226,0 +170749964432,227,0 +170749964480,227,0 +170749964529,228,0 +170749964577,228,0 +170749964627,226,0 +170749964675,219,0 +170749964724,219,0 +170749964774,219,0 +170749964821,221,0 +170749964869,223,0 +170749964917,223,0 +170749964965,225,0 +170749965013,225,0 +170749965061,227,0 +170749965109,226,0 +170749965156,229,0 +170749965206,227,0 +170749965254,229,0 +170749965302,229,0 +170749965350,228,0 +170749965398,229,0 +170749965446,228,0 +170749965493,229,0 +170749965541,227,0 +170749965589,218,0 +170749965639,216,0 +170749965688,217,0 +170749965736,219,0 +170749965784,220,0 +170749965832,221,0 +170749965880,222,0 +170749965928,222,0 +170749965976,224,0 +170749966025,224,0 +170749966073,227,0 +170749966121,227,0 +170749966169,227,0 +170749966217,229,0 +170749966265,228,0 +170749966315,229,0 +170749966363,229,0 +170749966411,228,0 +170749966458,228,0 +170749966506,228,0 +170749966554,216,0 +170749966602,216,0 +170749966650,217,0 +170749966698,217,0 +170749966747,218,0 +170749966795,218,0 +170749966843,218,0 +170749966891,221,0 +170749966939,221,0 +170749966987,223,0 +170749967035,224,0 +170749967083,227,0 +170749967132,225,0 +170749967182,226,0 +170749967230,228,0 +170749967278,226,0 +170749967326,227,0 +170749967374,227,0 +170749967422,226,0 +170749967470,216,0 +170749967518,216,0 +170749967566,217,0 +170749967614,215,0 +170749967661,217,0 +170749967709,218,0 +170749967757,218,0 +170749967805,218,0 +170749967853,219,0 +170749967901,221,0 +170749967951,222,0 +170749967999,222,0 +170749968047,224,0 +170749968096,225,0 +170749968144,225,0 +170749968194,229,0 +170749968241,226,0 +170749968291,225,0 +170749968341,228,0 +170749968389,217,0 +170749968436,216,0 +170749968486,217,0 +170749968536,218,0 +170749968585,220,0 +170749968634,220,0 +170749968684,221,0 +170749968734,222,0 +170749968782,223,0 +170749968830,229,0 +170749968877,225,0 +170749968925,226,0 +170749968973,227,0 +170749969021,226,0 +170749969069,227,0 +170749969117,228,0 +170749969165,226,0 +170749969213,228,0 +170749969261,226,0 +170749969311,220,0 +170749969360,220,0 +170749969410,221,0 +170749969459,222,0 +170749969507,222,0 +170749969557,224,0 +170749969606,227,0 +170749969654,225,0 +170749969702,226,0 +170749969750,226,0 +170749969798,226,0 +170749969846,228,0 +170749969894,227,0 +170749969943,228,0 +170749969991,228,0 +170749970039,227,0 +170749970087,228,0 +170749970137,228,0 +170749970185,227,0 +170749970233,226,0 +170749970281,218,0 +170749970329,219,0 +170749970376,219,0 +170749970424,221,0 +170749970472,222,0 +170749970522,223,0 +170749970571,223,0 +170749970621,223,0 +170749970671,225,0 +170749970718,226,0 +170749970768,225,0 +170749970817,225,0 +170749970865,229,0 +170749970915,227,0 +170749970963,227,0 +170749971011,228,0 +170749971059,228,0 +170749971108,228,0 +170749971156,226,0 +170749971206,216,0 +170749971255,215,0 +170749971303,216,0 +170749971351,217,0 +170749971400,219,0 +170749971450,220,0 +170749971498,221,0 +170749971546,222,0 +170749971594,221,0 +170749971642,223,0 +170749971691,224,0 +170749971739,224,0 +170749971787,225,0 +170749971837,227,0 +170749971886,227,0 +170749971936,226,0 +170749971984,227,0 +170749972032,227,0 +170749972080,227,0 +170749972129,216,0 +170749972179,216,0 +170749972227,217,0 +170749972276,218,0 +170749972326,219,0 +170749972374,220,0 +170749972423,221,0 +170749972473,222,0 +170749972522,223,0 +170749972570,223,0 +170749972618,225,0 +170749972666,225,0 +170749972716,225,0 +170749972765,226,0 +170749972815,227,0 +170749972863,228,0 +170749972912,227,0 +170749972960,227,0 +170749973010,228,0 +170749973058,217,0 +170749973106,216,0 +170749973155,216,0 +170749973203,216,0 +170749973251,216,0 +170749973299,218,0 +170749973347,218,0 +170749973395,219,0 +170749973443,221,0 +170749973491,222,0 +170749973539,223,0 +170749973587,223,0 +170749973635,226,0 +170749973683,227,0 +170749973731,225,0 +170749973778,226,0 +170749973826,227,0 +170749973874,227,0 +170749973922,228,0 +170749973970,217,0 +170749974018,216,0 +170749974068,216,0 +170749974116,216,0 +170749974164,216,0 +170749974212,217,0 +170749974260,217,0 +170749974309,218,0 +170749974357,220,0 +170749974405,220,0 +170749974453,221,0 +170749974501,222,0 +170749974550,224,0 +170749974600,226,0 +170749974648,224,0 +170749974696,225,0 +170749974745,226,0 +170749974793,227,0 +170749974843,228,0 +170749974892,217,0 +170749974940,216,0 +170749974988,216,0 +170749975036,216,0 +170749975086,216,0 +170749975135,216,0 +170749975183,217,0 +170749975231,217,0 +170749975279,218,0 +170749975327,219,0 +170749975375,222,0 +170749975423,223,0 +170749975471,223,0 +170749975519,223,0 +170749975567,224,0 +170749975615,226,0 +170749975663,226,0 +170749975711,229,0 +170749975759,224,0 +170749975807,227,0 +170749975855,216,0 +170749975902,216,0 +170749975950,216,0 +170749975998,217,0 +170749976046,216,0 +170749976096,217,0 +170749976145,218,0 +170749976193,219,0 +170749976243,220,0 +170749976291,222,0 +170749976339,222,0 +170749976386,225,0 +170749976434,225,0 +170749976482,224,0 +170749976532,225,0 +170749976580,226,0 +170749976627,227,0 +170749976677,228,0 +170749976725,228,0 +170749976774,217,0 +170749976822,216,0 +170749976872,217,0 +170749976920,220,0 +170749976969,219,0 +170749977017,221,0 +170749977067,221,0 +170749977115,222,0 +170749977164,222,0 +170749977212,223,0 +170749977260,224,0 +170749977308,224,0 +170749977356,226,0 +170749977404,226,0 +170749977453,227,0 +170749977503,232,0 +170749977551,228,0 +170749977600,227,0 +170749977648,227,0 +170749977696,217,0 +170749977746,216,0 +170749977794,217,0 +170749977841,219,0 +170749977891,219,0 +170749977939,221,0 +170749977987,222,0 +170749978036,222,0 +170749978084,222,0 +170749978132,224,0 +170749978182,224,0 +170749978231,227,0 +170749978279,227,0 +170749978327,226,0 +170749978377,227,0 +170749978425,229,0 +170749978474,228,0 +170749978523,228,0 +170749978573,228,0 +170749978621,218,0 +170749978669,218,0 +170749978717,219,0 +170749978766,220,0 +170749978814,221,0 +170749978862,221,0 +170749978912,223,0 +170749978959,223,0 +170749979007,225,0 +170749979057,226,0 +170749979106,226,0 +170749979154,228,0 +170749979204,228,0 +170749979253,229,0 +170749979301,228,0 +170749979351,229,0 +170749979399,229,0 +170749979447,227,0 +170749979495,227,0 +170749979543,226,0 +170749979591,219,0 +170749979638,219,0 +170749979686,221,0 +170749979736,222,0 +170749979786,222,0 +170749979833,223,0 +170749979883,224,0 +170749979931,225,0 +170749979980,228,0 +170749980031,227,0 +170749980080,228,0 +170749980128,228,0 +170749980176,227,0 +170749980226,228,0 +170749980275,228,0 +170749980323,228,0 +170749980371,228,0 +170749980419,227,0 +170749980467,226,0 +170749980515,216,0 +170749980563,216,0 +170749980612,218,0 +170749980660,219,0 +170749980710,222,0 +170749980759,222,0 +170749980807,223,0 +170749980857,225,0 +170749980906,227,0 +170749980954,225,0 +170749981002,226,0 +170749981050,227,0 +170749981098,227,0 +170749981148,229,0 +170749981197,227,0 +170749981245,228,0 +170749981293,228,0 +170749981342,228,0 +170749981390,227,0 +170749981438,217,0 +170749981488,216,0 +170749981536,217,0 +170749981584,218,0 +170749981632,220,0 +170749981681,220,0 +170749981729,221,0 +170749981777,221,0 +170749981825,224,0 +170749981873,225,0 +170749981923,225,0 +170749981971,225,0 +170749982019,226,0 +170749982067,227,0 +170749982115,228,0 +170749982164,227,0 +170749982212,227,0 +170749982260,227,0 +170749982309,227,0 +170749982359,218,0 +170749982408,216,0 +170749982458,216,0 +170749982506,218,0 +170749982554,220,0 +170749982602,221,0 +170749982650,222,0 +170749982699,222,0 +170749982749,222,0 +170749982798,223,0 +170749982846,224,0 +170749982894,227,0 +170749982942,226,0 +170749982992,226,0 +170749983041,227,0 +170749983091,228,0 +170749983139,227,0 +170749983187,228,0 +170749983234,227,0 +170749983282,217,0 +170749983332,215,0 +170749983380,216,0 +170749983428,216,0 +170749983477,217,0 +170749983525,219,0 +170749983573,219,0 +170749983623,220,0 +170749983671,221,0 +170749983719,222,0 +170749983767,222,0 +170749983816,224,0 +170749983864,224,0 +170749983914,225,0 +170749983963,226,0 +170749984012,226,0 +170749984062,227,0 +170749984110,227,0 +170749984158,227,0 +170749984206,217,0 +170749984254,216,0 +170749984303,215,0 +170749984351,216,0 +170749984399,216,0 +170749984447,216,0 +170749984495,218,0 +170749984543,219,0 +170749984591,219,0 +170749984639,221,0 +170749984687,223,0 +170749984735,224,0 +170749984783,226,0 +170749984831,230,0 +170749984878,227,0 +170749984926,228,0 +170749984976,228,0 +170749985024,227,0 +170749985072,228,0 +170749985120,228,0 +170749985169,215,0 +170749985219,215,0 +170749985268,215,0 +170749985316,216,0 +170749985364,216,0 +170749985412,217,0 +170749985462,217,0 +170749985510,218,0 +170749985559,221,0 +170749985607,222,0 +170749985657,224,0 +170749985706,224,0 +170749985754,225,0 +170749985804,226,0 +170749985852,226,0 +170749985901,226,0 +170749985949,229,0 +170749985997,227,0 +170749986047,228,0 +170749986095,216,0 +170749986144,215,0 +170749986194,216,0 +170749986242,216,0 +170749986290,216,0 +170749986338,217,0 +170749986385,217,0 +170749986435,218,0 +170749986483,219,0 +170749986531,220,0 +170749986580,221,0 +170749986628,223,0 +170749986676,224,0 +170749986726,224,0 +170749986775,232,0 +170749986823,226,0 +170749986871,224,0 +170749986919,228,0 +170749986969,228,0 +170749987017,217,0 +170749987066,215,0 +170749987114,216,0 +170749987162,216,0 +170749987210,217,0 +170749987258,217,0 +170749987308,217,0 +170749987356,219,0 +170749987405,220,0 +170749987453,222,0 +170749987501,223,0 +170749987549,223,0 +170749987597,225,0 +170749987645,226,0 +170749987694,226,0 +170749987744,227,0 +170749987792,227,0 +170749987841,227,0 +170749987889,227,0 +170749987937,217,0 +170749987985,217,0 +170749988033,214,0 +170749988081,217,0 +170749988131,218,0 +170749988180,218,0 +170749988230,219,0 +170749988279,220,0 +170749988327,221,0 +170749988375,222,0 +170749988423,224,0 +170749988471,224,0 +170749988519,225,0 +170749988569,225,0 +170749988617,225,0 +170749988665,231,0 +170749988712,227,0 +170749988760,228,0 +170749988810,228,0 +170749988859,218,0 +170749988909,216,0 +170749988957,218,0 +170749989005,219,0 +170749989053,219,0 +170749989102,220,0 +170749989150,220,0 +170749989198,220,0 +170749989248,221,0 +170749989296,221,0 +170749989345,224,0 +170749989393,224,0 +170749989443,226,0 +170749989491,225,0 +170749989540,229,0 +170749989588,226,0 +170749989638,228,0 +170749989686,228,0 +170749989735,228,0 +170749989783,218,0 +170749989832,216,0 +170749989880,217,0 +170749989928,218,0 +170749989976,219,0 +170749990026,220,0 +170749990074,218,0 +170749990124,222,0 +170749990171,223,0 +170749990221,223,0 +170749990269,225,0 +170749990318,225,0 +170749990368,227,0 +170749990417,227,0 +170749990465,229,0 +170749990513,227,0 +170749990561,230,0 +170749990609,227,0 +170749990659,227,0 +170749990708,217,0 +170749990756,217,0 +170749990804,219,0 +170749990852,219,0 +170749990900,221,0 +170749990950,221,0 +170749990998,222,0 +170749991047,223,0 +170749991095,224,0 +170749991145,223,0 +170749991194,227,0 +170749991242,226,0 +170749991292,227,0 +170749991340,229,0 +170749991387,228,0 +170749991435,228,0 +170749991483,228,0 +170749991531,228,0 +170749991581,228,0 +170749991629,223,0 +170749991678,221,0 +170749991726,221,0 +170749991774,222,0 +170749991822,223,0 +170749991870,224,0 +170749991918,224,0 +170749991966,225,0 +170749992015,226,0 +170749992063,226,0 +170749992111,227,0 +170749992159,226,0 +170749992207,227,0 +170749992255,226,0 +170749992303,226,0 +170749992351,228,0 +170749992399,227,0 +170749992447,226,0 +170749992495,225,0 +170749992545,219,0 +170749992593,221,0 +170749992641,221,0 +170749992691,223,0 +170749992739,223,0 +170749992787,224,0 +170749992836,225,0 +170749992884,227,0 +170749992934,227,0 +170749992983,229,0 +170749993033,231,0 +170749993081,228,0 +170749993129,227,0 +170749993177,229,0 +170749993225,227,0 +170749993274,227,0 +170749993322,226,0 +170749993372,226,0 +170749993420,218,0 +170749993469,218,0 +170749993517,220,0 +170749993565,220,0 +170749993615,221,0 +170749993663,222,0 +170749993711,222,0 +170749993759,224,0 +170749993808,224,0 +170749993856,226,0 +170749993905,226,0 +170749993953,226,0 +170749994001,227,0 +170749994049,228,0 +170749994097,227,0 +170749994145,228,0 +170749994195,227,0 +170749994243,227,0 +170749994291,217,0 +170749994339,216,0 +170749994387,216,0 +170749994436,218,0 +170749994486,219,0 +170749994534,220,0 +170749994583,220,0 +170749994631,222,0 +170749994679,223,0 +170749994729,225,0 +170749994777,225,0 +170749994825,225,0 +170749994872,225,0 +170749994922,227,0 +170749994970,228,0 +170749995018,230,0 +170749995068,227,0 +170749995115,227,0 +170749995163,226,0 +170749995213,215,0 +170749995261,216,0 +170749995309,217,0 +170749995357,218,0 +170749995405,219,0 +170749995454,219,0 +170749995502,220,0 +170749995550,222,0 +170749995600,223,0 +170749995648,224,0 +170749995696,227,0 +170749995744,226,0 +170749995791,227,0 +170749995839,226,0 +170749995887,227,0 +170749995937,227,0 +170749995986,227,0 +170749996036,227,0 +170749996086,216,0 +170749996134,216,0 +170749996183,216,0 +170749996232,216,0 +170749996280,217,0 +170749996328,217,0 +170749996378,218,0 +170749996427,219,0 +170749996477,220,0 +170749996526,221,0 +170749996574,223,0 +170749996622,224,0 +170749996670,224,0 +170749996720,225,0 +170749996768,226,0 +170749996816,226,0 +170749996864,226,0 +170749996913,227,0 +170749996961,218,0 +170749997009,216,0 +170749997057,216,0 +170749997107,216,0 +170749997156,217,0 +170749997204,217,0 +170749997252,217,0 +170749997300,218,0 +170749997348,219,0 +170749997398,219,0 +170749997446,222,0 +170749997495,223,0 +170749997543,223,0 +170749997593,227,0 +170749997640,228,0 +170749997688,226,0 +170749997736,227,0 +170749997784,227,0 +170749997834,226,0 +170749997882,216,0 +170749997931,215,0 +170749997979,216,0 +170749998027,216,0 +170749998077,216,0 +170749998125,217,0 +170749998173,218,0 +170749998222,218,0 +170749998270,219,0 +170749998318,221,0 +170749998366,222,0 +170749998414,223,0 +170749998462,226,0 +170749998511,225,0 +170749998559,229,0 +170749998607,226,0 +170749998657,225,0 +170749998705,227,0 +170749998753,217,0 +170749998801,216,0 +170749998849,216,0 +170749998897,216,0 +170749998945,216,0 +170749998993,217,0 +170749999041,218,0 +170749999090,219,0 +170749999138,219,0 +170749999188,221,0 +170749999236,224,0 +170749999285,223,0 +170749999335,224,0 +170749999383,226,0 +170749999431,228,0 +170749999479,227,0 +170749999527,227,0 +170749999576,227,0 +170749999626,220,0 +170749999674,216,0 +170749999723,216,0 +170749999771,216,0 +170749999821,217,0 +170749999870,217,0 +170749999920,219,0 +170749999967,220,0 +170750000017,221,0 +170750000067,223,0 +170750000115,224,0 +170750000163,224,0 +170750000212,224,0 +170750000260,226,0 +170750000310,227,0 +170750000359,226,0 +170750000407,226,0 +170750000457,229,0 +170750000506,226,0 +170750000554,217,0 +170750000604,218,0 +170750000652,219,0 +170750000700,220,0 +170750000747,221,0 +170750000796,223,0 +170750000845,226,0 +170750000895,227,0 +170750000943,225,0 +170750000990,229,0 +170750001038,228,0 +170750001086,228,0 +170750001136,229,0 +170750001183,224,0 +170750001231,228,0 +170750001279,229,0 +170750001327,228,0 +170750001375,227,0 +170750001425,219,0 +170750001473,218,0 +170750001522,219,0 +170750001570,222,0 +170750001618,221,0 +170750001666,222,0 +170750001714,223,0 +170750001762,223,0 +170750001810,224,0 +170750001858,226,0 +170750001907,226,0 +170750001955,229,0 +170750002003,229,0 +170750002053,229,0 +170750002102,228,0 +170750002150,227,0 +170750002198,228,0 +170750002248,227,0 +170750002296,217,0 +170750002345,217,0 +170750002393,219,0 +170750002441,221,0 +170750002489,222,0 +170750002539,222,0 +170750002587,224,0 +170750002634,225,0 +170750002682,225,0 +170750002730,225,0 +170750002780,226,0 +170750002829,228,0 +170750002877,228,0 +170750002925,227,0 +170750002975,228,0 +170750003023,229,0 +170750003071,228,0 +170750003119,228,0 +170750003168,226,0 +170750003218,217,0 +170750003267,216,0 +170750003317,217,0 +170750003365,218,0 +170750003413,219,0 +170750003460,220,0 +170750003508,221,0 +170750003556,222,0 +170750003604,223,0 +170750003652,224,0 +170750003700,225,0 +170750003748,225,0 +170750003796,226,0 +170750003845,225,0 +170750003893,226,0 +170750003943,229,0 +170750003991,228,0 +170750004040,228,0 +170750004088,218,0 +170750004136,217,0 +170750004186,216,0 +170750004234,216,0 +170750004282,218,0 +170750004329,218,0 +170750004379,218,0 +170750004427,219,0 +170750004476,221,0 +170750004524,222,0 +170750004574,223,0 +170750004623,223,0 +170750004671,225,0 +170750004721,226,0 +170750004769,226,0 +170750004818,227,0 +170750004866,228,0 +170750004914,227,0 +170750004962,226,0 +170750005012,216,0 +170750005060,216,0 +170750005109,217,0 +170750005157,218,0 +170750005207,218,0 +170750005256,221,0 +170750005306,221,0 +170750005355,221,0 +170750005405,223,0 +170750005452,222,0 +170750005502,223,0 +170750005551,224,0 +170750005601,228,0 +170750005650,229,0 +170750005698,226,0 +170750005748,229,0 +170750005796,228,0 +170750005844,227,0 +170750005893,217,0 +170750005943,217,0 +170750005991,219,0 +170750006039,219,0 +170750006088,220,0 +170750006138,221,0 +170750006186,222,0 +170750006235,223,0 +170750006283,224,0 +170750006331,225,0 +170750006381,226,0 +170750006429,228,0 +170750006477,228,0 +170750006526,227,0 +170750006576,228,0 +170750006624,227,0 +170750006672,228,0 +170750006721,227,0 +170750006771,218,0 +170750006819,218,0 +170750006868,218,0 +170750006916,220,0 +170750006964,221,0 +170750007014,223,0 +170750007062,224,0 +170750007110,224,0 +170750007159,226,0 +170750007207,224,0 +170750007255,226,0 +170750007304,228,0 +170750007354,227,0 +170750007403,228,0 +170750007451,227,0 +170750007499,228,0 +170750007549,228,0 +170750007597,229,0 +170750007644,221,0 +170750007694,217,0 +170750007744,218,0 +170750007792,221,0 +170750007839,221,0 +170750007887,221,0 +170750007937,221,0 +170750007985,224,0 +170750008034,224,0 +170750008082,226,0 +170750008132,227,0 +170750008181,228,0 +170750008231,224,0 +170750008280,228,0 +170750008330,227,0 +170750008378,228,0 +170750008427,228,0 +170750008475,227,0 +170750008525,222,0 +170750008573,216,0 +170750008621,218,0 +170750008670,219,0 +170750008718,220,0 +170750008766,219,0 +170750008814,220,0 +170750008862,221,0 +170750008910,223,0 +170750008958,225,0 +170750009008,225,0 +170750009056,228,0 +170750009103,228,0 +170750009151,228,0 +170750009199,231,0 +170750009249,230,0 +170750009298,228,0 +170750009346,228,0 +170750009394,227,0 +170750009442,218,0 +170750009490,218,0 +170750009538,215,0 +170750009588,218,0 +170750009637,220,0 +170750009685,223,0 +170750009733,225,0 +170750009781,223,0 +170750009829,223,0 +170750009878,225,0 +170750009926,227,0 +170750009974,223,0 +170750010024,225,0 +170750010073,227,0 +170750010121,229,0 +170750010169,229,0 +170750010219,231,0 +170750010268,228,0 +170750010316,218,0 +170750010366,218,0 +170750010414,220,0 +170750010463,220,0 +170750010511,221,0 +170750010561,221,0 +170750010609,221,0 +170750010657,222,0 +170750010706,225,0 +170750010754,224,0 +170750010802,228,0 +170750010850,226,0 +170750010898,226,0 +170750010948,227,0 +170750010996,228,0 +170750011045,228,0 +170750011093,228,0 +170750011143,229,0 +170750011192,228,0 +170750011242,218,0 +170750011291,218,0 +170750011339,220,0 +170750011387,221,0 +170750011435,221,0 +170750011483,222,0 +170750011531,224,0 +170750011579,224,0 +170750011628,225,0 +170750011678,224,0 +170750011727,228,0 +170750011775,227,0 +170750011823,228,0 +170750011871,229,0 +170750011919,231,0 +170750011967,228,0 +170750012015,229,0 +170750012063,227,0 +170750012111,219,0 +170750012159,219,0 +170750012207,220,0 +170750012255,220,0 +170750012304,223,0 +170750012353,222,0 +170750012403,223,0 +170750012451,225,0 +170750012499,226,0 +170750012547,226,0 +170750012594,227,0 +170750012642,227,0 +170750012692,227,0 +170750012740,228,0 +170750012788,228,0 +170750012837,228,0 +170750012885,228,0 +170750012933,228,0 +170750012981,222,0 +170750013029,218,0 +170750013079,221,0 +170750013126,222,0 +170750013174,222,0 +170750013224,222,0 +170750013273,224,0 +170750013321,224,0 +170750013371,226,0 +170750013419,227,0 +170750013469,228,0 +170750013518,229,0 +170750013568,226,0 +170750013617,227,0 +170750013665,228,0 +170750013713,228,0 +170750013761,226,0 +170750013810,229,0 +170750013858,227,0 +170750013908,219,0 +170750013958,220,0 +170750014005,221,0 +170750014055,222,0 +170750014103,223,0 +170750014151,224,0 +170750014199,225,0 +170750014247,225,0 +170750014295,226,0 +170750014343,227,0 +170750014391,228,0 +170750014439,225,0 +170750014487,228,0 +170750014535,228,0 +170750014584,227,0 +170750014634,228,0 +170750014683,228,0 +170750014733,227,0 +170750014781,218,0 +170750014830,217,0 +170750014878,218,0 +170750014926,219,0 +170750014974,221,0 +170750015023,225,0 +170750015071,222,0 +170750015119,223,0 +170750015169,224,0 +170750015218,225,0 +170750015266,226,0 +170750015316,228,0 +170750015365,227,0 +170750015413,228,0 +170750015461,227,0 +170750015509,226,0 +170750015559,227,0 +170750015608,227,0 +170750015658,217,0 +170750015706,216,0 +170750015754,217,0 +170750015802,217,0 +170750015851,219,0 +170750015899,219,0 +170750015949,220,0 +170750015998,221,0 +170750016046,223,0 +170750016094,223,0 +170750016144,225,0 +170750016193,226,0 +170750016241,225,0 +170750016291,226,0 +170750016339,227,0 +170750016388,227,0 +170750016438,228,0 +170750016487,228,0 +170750016537,227,0 +170750016585,216,0 +170750016633,217,0 +170750016682,216,0 +170750016730,216,0 +170750016778,217,0 +170750016826,218,0 +170750016874,219,0 +170750016922,221,0 +170750016971,222,0 +170750017021,223,0 +170750017069,224,0 +170750017118,225,0 +170750017166,225,0 +170750017216,226,0 +170750017264,227,0 +170750017313,227,0 +170750017361,226,0 +170750017411,226,0 +170750017460,217,0 +170750017508,216,0 +170750017556,216,0 +170750017604,217,0 +170750017652,217,0 +170750017701,218,0 +170750017749,219,0 +170750017797,220,0 +170750017845,222,0 +170750017895,222,0 +170750017943,224,0 +170750017990,224,0 +170750018038,226,0 +170750018086,226,0 +170750018136,228,0 +170750018185,227,0 +170750018233,228,0 +170750018281,228,0 +170750018329,226,0 +170750018377,216,0 +170750018427,216,0 +170750018476,217,0 +170750018524,218,0 +170750018572,219,0 +170750018620,221,0 +170750018668,222,0 +170750018718,222,0 +170750018767,226,0 +170750018817,219,0 +170750018865,226,0 +170750018914,226,0 +170750018962,227,0 +170750019010,227,0 +170750019060,225,0 +170750019108,227,0 +170750019155,228,0 +170750019203,227,0 +170750019253,216,0 +170750019302,217,0 +170750019350,218,0 +170750019398,219,0 +170750019448,220,0 +170750019496,223,0 +170750019545,221,0 +170750019593,222,0 +170750019641,224,0 +170750019691,224,0 +170750019739,225,0 +170750019786,226,0 +170750019836,226,0 +170750019884,229,0 +170750019934,228,0 +170750019982,228,0 +170750020030,228,0 +170750020078,227,0 +170750020126,218,0 +170750020175,216,0 +170750020223,217,0 +170750020271,218,0 +170750020320,219,0 +170750020370,220,0 +170750020418,222,0 +170750020467,223,0 +170750020515,223,0 +170750020565,224,0 +170750020613,224,0 +170750020661,226,0 +170750020710,226,0 +170750020760,227,0 +170750020808,227,0 +170750020856,228,0 +170750020904,230,0 +170750020952,228,0 +170750021001,228,0 +170750021049,216,0 +170750021097,216,0 +170750021145,218,0 +170750021193,219,0 +170750021241,220,0 +170750021290,220,0 +170750021338,223,0 +170750021388,223,0 +170750021436,225,0 +170750021485,224,0 +170750021533,225,0 +170750021583,226,0 +170750021631,228,0 +170750021679,229,0 +170750021728,226,0 +170750021776,228,0 +170750021824,227,0 +170750021872,227,0 +170750021922,218,0 +170750021971,218,0 +170750022019,219,0 +170750022067,223,0 +170750022117,230,0 +170750022165,221,0 +170750022213,222,0 +170750022262,222,0 +170750022310,222,0 +170750022358,223,0 +170750022408,225,0 +170750022455,225,0 +170750022503,228,0 +170750022551,226,0 +170750022599,227,0 +170750022649,228,0 +170750022698,227,0 +170750022748,229,0 +170750022797,228,0 +170750022845,229,0 +170750022893,229,0 +170750022943,228,0 +170750022992,228,0 +170750023040,228,0 +170750023088,228,0 +170750023136,226,0 +170750023186,228,0 +170750023235,222,0 +170750023283,225,0 +170750023331,224,0 +170750023379,224,0 +170750023427,227,0 +170750023477,225,0 +170750023525,228,0 +170750023573,227,0 +170750023621,229,0 +170750023670,228,0 +170750023718,230,0 +170750023768,227,0 +170750023817,229,0 +170750023867,230,0 +170750023915,230,0 +170750023963,228,0 +170750024011,227,0 +170750024059,227,0 +170750024108,227,0 +170750024158,220,0 +170750024207,220,0 +170750024255,221,0 +170750024303,222,0 +170750024353,223,0 +170750024402,224,0 +170750024450,226,0 +170750024498,228,0 +170750024546,225,0 +170750024594,228,0 +170750024643,228,0 +170750024691,228,0 +170750024739,227,0 +170750024787,229,0 +170750024837,227,0 +170750024886,228,0 +170750024936,227,0 +170750024985,227,0 +170750025033,218,0 +170750025081,218,0 +170750025131,218,0 +170750025180,220,0 +170750025228,221,0 +170750025276,221,0 +170750025326,222,0 +170750025375,224,0 +170750025423,224,0 +170750025473,225,0 +170750025521,226,0 +170750025569,225,0 +170750025617,228,0 +170750025665,228,0 +170750025713,229,0 +170750025761,228,0 +170750025810,226,0 +170750025860,226,0 +170750025909,217,0 +170750025959,217,0 +170750026008,218,0 +170750026056,219,0 +170750026104,220,0 +170750026152,220,0 +170750026202,222,0 +170750026250,224,0 +170750026298,223,0 +170750026346,225,0 +170750026395,225,0 +170750026443,226,0 +170750026493,225,0 +170750026541,228,0 +170750026590,228,0 +170750026638,228,0 +170750026686,227,0 +170750026734,226,0 +170750026783,226,0 +170750026833,217,0 +170750026882,217,0 +170750026930,219,0 +170750026980,220,0 +170750027028,220,0 +170750027076,222,0 +170750027124,222,0 +170750027172,222,0 +170750027221,223,0 +170750027271,223,0 +170750027320,224,0 +170750027368,226,0 +170750027416,226,0 +170750027464,224,0 +170750027513,227,0 +170750027561,227,0 +170750027609,227,0 +170750027657,227,0 +170750027707,218,0 +170750027755,216,0 +170750027803,217,0 +170750027852,218,0 +170750027900,220,0 +170750027948,221,0 +170750027998,221,0 +170750028046,224,0 +170750028095,223,0 +170750028143,225,0 +170750028191,225,0 +170750028239,225,0 +170750028289,227,0 +170750028337,226,0 +170750028386,228,0 +170750028436,227,0 +170750028485,226,0 +170750028533,227,0 +170750028581,218,0 +170750028631,216,0 +170750028680,216,0 +170750028728,219,0 +170750028778,219,0 +170750028826,220,0 +170750028875,220,0 +170750028925,223,0 +170750028974,222,0 +170750029022,224,0 +170750029070,223,0 +170750029118,226,0 +170750029166,228,0 +170750029214,228,0 +170750029262,227,0 +170750029310,228,0 +170750029358,227,0 +170750029407,228,0 +170750029455,227,0 +170750029505,217,0 +170750029553,215,0 +170750029602,217,0 +170750029650,218,0 +170750029698,219,0 +170750029748,220,0 +170750029796,220,0 +170750029845,222,0 +170750029895,222,0 +170750029943,226,0 +170750029991,224,0 +170750030039,224,0 +170750030087,226,0 +170750030135,226,0 +170750030184,227,0 +170750030233,227,0 +170750030281,229,0 +170750030331,227,0 +170750030381,218,0 +170750030430,215,0 +170750030478,217,0 +170750030528,217,0 +170750030575,218,0 +170750030625,219,0 +170750030675,220,0 +170750030722,220,0 +170750030772,222,0 +170750030820,224,0 +170750030868,224,0 +170750030916,225,0 +170750030965,227,0 +170750031015,227,0 +170750031063,227,0 +170750031112,228,0 +170750031160,228,0 +170750031208,228,0 +170750031258,219,0 +170750031307,216,0 +170750031357,216,0 +170750031405,217,0 +170750031453,218,0 +170750031501,218,0 +170750031550,219,0 +170750031600,220,0 +170750031648,222,0 +170750031696,223,0 +170750031745,225,0 +170750031793,225,0 +170750031843,228,0 +170750031891,227,0 +170750031939,227,0 +170750031987,228,0 +170750032036,227,0 +170750032086,226,0 +170750032135,227,0 +170750032183,216,0 +170750032233,217,0 +170750032282,218,0 +170750032332,219,0 +170750032380,220,0 +170750032429,220,0 +170750032477,221,0 +170750032527,222,0 +170750032576,223,0 +170750032626,224,0 +170750032675,225,0 +170750032725,226,0 +170750032774,226,0 +170750032822,227,0 +170750032870,227,0 +170750032920,227,0 +170750032968,227,0 +170750033017,227,0 +170750033067,217,0 +170750033115,217,0 +170750033163,218,0 +170750033211,220,0 +170750033259,220,0 +170750033307,221,0 +170750033355,222,0 +170750033404,222,0 +170750033452,223,0 +170750033500,225,0 +170750033550,226,0 +170750033598,225,0 +170750033646,228,0 +170750033693,229,0 +170750033741,230,0 +170750033789,229,0 +170750033837,231,0 +170750033885,228,0 +170750033933,221,0 +170750033983,218,0 +170750034031,220,0 +170750034079,221,0 +170750034128,221,0 +170750034176,224,0 +170750034226,223,0 +170750034274,224,0 +170750034321,226,0 +170750034369,226,0 +170750034417,226,0 +170750034467,228,0 +170750034515,228,0 +170750034563,227,0 +170750034612,228,0 +170750034660,228,0 +170750034710,227,0 +170750034759,225,0 +170750034809,225,0 +170750034858,219,0 +170750034908,220,0 +170750034956,220,0 +170750035004,220,0 +170750035053,221,0 +170750035103,221,0 +170750035152,222,0 +170750035200,222,0 +170750035248,222,0 +170750035296,224,0 +170750035346,224,0 +170750035394,224,0 +170750035442,224,0 +170750035490,224,0 +170750035539,224,0 +170750035589,224,0 +170750035638,224,0 +170750035686,224,0 +170750035736,220,0 +170750035784,221,0 +170750035832,221,0 +170750035879,221,0 +170750035929,222,0 +170750035978,222,0 +170750036028,222,0 +170750036077,223,0 +170750036127,222,0 +170750036175,223,0 +170750036224,223,0 +170750036272,223,0 +170750036320,222,0 +170750036370,222,0 +170750036418,221,0 +170750036466,220,0 +170750036514,222,0 +170750036562,221,0 +170750036610,217,0 +170750036659,216,0 +170750036707,216,0 +170750036755,216,0 +170750036803,217,0 +170750036852,218,0 +170750036902,219,0 +170750036950,219,0 +170750036999,220,0 +170750037049,222,0 +170750037097,223,0 +170750037146,223,0 +170750037194,223,0 +170750037242,223,0 +170750037290,224,0 +170750037338,224,0 +170750037386,224,0 +170750037434,224,0 +170750037482,222,0 +170750037532,218,0 +170750037581,218,0 +170750037629,219,0 +170750037678,220,0 +170750037726,222,0 +170750037776,221,0 +170750037824,222,0 +170750037872,223,0 +170750037920,224,0 +170750037968,225,0 +170750038017,227,0 +170750038067,226,0 +170750038115,227,0 +170750038163,226,0 +170750038211,226,0 +170750038259,227,0 +170750038307,229,0 +170750038355,227,0 +170750038404,217,0 +170750038452,216,0 +170750038502,216,0 +170750038551,218,0 +170750038601,220,0 +170750038650,220,0 +170750038700,221,0 +170750038748,223,0 +170750038796,223,0 +170750038844,223,0 +170750038893,223,0 +170750038941,225,0 +170750038989,226,0 +170750039039,227,0 +170750039086,228,0 +170750039136,228,0 +170750039184,228,0 +170750039232,228,0 +170750039281,217,0 +170750039331,216,0 +170750039379,216,0 +170750039428,216,0 +170750039478,218,0 +170750039526,220,0 +170750039574,221,0 +170750039622,221,0 +170750039671,222,0 +170750039719,222,0 +170750039767,224,0 +170750039815,225,0 +170750039864,226,0 +170750039912,228,0 +170750039960,228,0 +170750040008,227,0 +170750040056,228,0 +170750040105,228,0 +170750040155,229,0 +170750040202,218,0 +170750040252,217,0 +170750040300,218,0 +170750040349,219,0 +170750040397,220,0 +170750040445,221,0 +170750040493,222,0 +170750040541,223,0 +170750040590,225,0 +170750040638,225,0 +170750040686,226,0 +170750040736,226,0 +170750040784,228,0 +170750040833,226,0 +170750040883,228,0 +170750040931,228,0 +170750040979,229,0 +170750041027,228,0 +170750041075,218,0 +170750041123,216,0 +170750041171,218,0 +170750041219,219,0 +170750041268,220,0 +170750041317,221,0 +170750041365,222,0 +170750041413,224,0 +170750041461,223,0 +170750041509,224,0 +170750041559,226,0 +170750041608,228,0 +170750041656,227,0 +170750041704,229,0 +170750041752,228,0 +170750041800,228,0 +170750041848,227,0 +170750041896,228,0 +170750041944,227,0 +170750041991,217,0 +170750042039,218,0 +170750042087,219,0 +170750042135,220,0 +170750042185,221,0 +170750042233,221,0 +170750042281,222,0 +170750042328,224,0 +170750042378,221,0 +170750042427,224,0 +170750042477,225,0 +170750042525,226,0 +170750042573,227,0 +170750042621,227,0 +170750042670,230,0 +170750042718,228,0 +170750042766,229,0 +170750042814,228,0 +170750042862,221,0 +170750042910,219,0 +170750042958,221,0 +170750043006,221,0 +170750043054,223,0 +170750043102,222,0 +170750043151,225,0 +170750043199,224,0 +170750043247,225,0 +170750043295,225,0 +170750043343,226,0 +170750043393,227,0 +170750043441,228,0 +170750043490,228,0 +170750043540,229,0 +170750043589,228,0 +170750043637,228,0 +170750043685,228,0 +170750043735,226,0 +170750043784,218,0 +170750043832,219,0 +170750043880,220,0 +170750043929,222,0 +170750043979,223,0 +170750044027,224,0 +170750044075,223,0 +170750044124,227,0 +170750044174,225,0 +170750044223,228,0 +170750044271,228,0 +170750044319,229,0 +170750044367,229,0 +170750044417,229,0 +170750044465,228,0 +170750044513,229,0 +170750044562,245,0 +170750044610,231,0 +170750044660,221,0 +170750044708,221,0 +170750044757,222,0 +170750044807,224,0 +170750044856,223,0 +170750044904,224,0 +170750044954,227,0 +170750045002,239,0 +170750045051,226,0 +170750045101,230,0 +170750045149,227,0 +170750045198,229,0 +170750045248,230,0 +170750045296,230,0 +170750045344,230,0 +170750045392,230,0 +170750045440,229,0 +170750045488,227,0 +170750045537,223,0 +170750045585,223,0 +170750045635,223,0 +170750045683,225,0 +170750045731,225,0 +170750045779,229,0 +170750045828,228,0 +170750045878,230,0 +170750045926,227,0 +170750045973,227,0 +170750046021,227,0 +170750046069,233,0 +170750046117,230,0 +170750046165,230,0 +170750046215,230,0 +170750046264,229,0 +170750046312,229,0 +170750046361,228,0 +170750046409,218,0 +170750046457,220,0 +170750046505,224,0 +170750046553,223,0 +170750046601,224,0 +170750046649,225,0 +170750046697,225,0 +170750046745,226,0 +170750046792,226,0 +170750046840,227,0 +170750046888,229,0 +170750046936,229,0 +170750046984,228,0 +170750047032,229,0 +170750047080,229,0 +170750047128,228,0 +170750047176,228,0 +170750047226,228,0 +170750047273,227,0 +170750047321,221,0 +170750047369,220,0 +170750047419,221,0 +170750047468,224,0 +170750047516,224,0 +170750047564,225,0 +170750047614,227,0 +170750047662,227,0 +170750047710,226,0 +170750047757,229,0 +170750047805,230,0 +170750047853,229,0 +170750047901,229,0 +170750047949,230,0 +170750047998,232,0 +170750048048,229,0 +170750048097,228,0 +170750048145,226,0 +170750048193,218,0 +170750048241,218,0 +170750048289,219,0 +170750048337,220,0 +170750048384,221,0 +170750048432,224,0 +170750048480,223,0 +170750048528,224,0 +170750048576,225,0 +170750048624,226,0 +170750048673,228,0 +170750048723,227,0 +170750048771,228,0 +170750048819,228,0 +170750048867,228,0 +170750048915,229,0 +170750048963,230,0 +170750049012,228,0 +170750049060,228,0 +170750049108,228,0 +170750049158,218,0 +170750049207,220,0 +170750049255,221,0 +170750049303,223,0 +170750049351,223,0 +170750049401,225,0 +170750049449,224,0 +170750049497,227,0 +170750049544,227,0 +170750049592,228,0 +170750049640,229,0 +170750049688,227,0 +170750049738,231,0 +170750049786,229,0 +170750049834,228,0 +170750049883,228,0 +170750049931,228,0 +170750049981,218,0 +170750050029,217,0 +170750050077,219,0 +170750050125,220,0 +170750050173,223,0 +170750050222,223,0 +170750050270,223,0 +170750050318,224,0 +170750050366,226,0 +170750050416,225,0 +170750050465,228,0 +170750050513,228,0 +170750050561,228,0 +170750050609,228,0 +170750050658,228,0 +170750050706,229,0 +170750050756,228,0 +170750050804,227,0 +170750050852,226,0 +170750050900,217,0 +170750050948,218,0 +170750050997,220,0 +170750051047,222,0 +170750051096,222,0 +170750051146,222,0 +170750051194,224,0 +170750051242,224,0 +170750051290,225,0 +170750051339,228,0 +170750051389,226,0 +170750051437,229,0 +170750051486,228,0 +170750051536,228,0 +170750051585,229,0 +170750051633,228,0 +170750051681,230,0 +170750051729,227,0 +170750051777,219,0 +170750051827,219,0 +170750051875,220,0 +170750051923,221,0 +170750051971,222,0 +170750052019,223,0 +170750052067,225,0 +170750052116,224,0 +170750052166,226,0 +170750052215,226,0 +170750052263,227,0 +170750052313,228,0 +170750052361,228,0 +170750052410,226,0 +170750052458,228,0 +170750052506,228,0 +170750052554,227,0 +170750052602,228,0 +170750052650,220,0 +170750052698,219,0 +170750052746,220,0 +170750052794,221,0 +170750052843,223,0 +170750052893,223,0 +170750052941,225,0 +170750052989,227,0 +170750053037,225,0 +170750053085,226,0 +170750053133,228,0 +170750053182,229,0 +170750053230,228,0 +170750053280,228,0 +170750053329,229,0 +170750053377,229,0 +170750053427,228,0 +170750053475,228,0 +170750053523,228,0 +170750053572,218,0 +170750053622,219,0 +170750053670,220,0 +170750053718,221,0 +170750053765,223,0 +170750053813,223,0 +170750053863,224,0 +170750053911,224,0 +170750053959,226,0 +170750054008,225,0 +170750054056,227,0 +170750054104,227,0 +170750054154,229,0 +170750054202,228,0 +170750054251,229,0 +170750054299,229,0 +170750054347,229,0 +170750054395,227,0 +170750054443,220,0 +170750054491,218,0 +170750054539,219,0 +170750054589,221,0 +170750054637,222,0 +170750054686,224,0 +170750054734,224,0 +170750054784,223,0 +170750054832,223,0 +170750054880,224,0 +170750054928,225,0 +170750054976,227,0 +170750055023,227,0 +170750055073,228,0 +170750055123,228,0 +170750055172,229,0 +170750055221,228,0 +170750055269,227,0 +170750055317,217,0 +170750055365,217,0 +170750055413,219,0 +170750055462,220,0 +170750055510,221,0 +170750055560,222,0 +170750055608,224,0 +170750055655,223,0 +170750055705,224,0 +170750055753,226,0 +170750055801,226,0 +170750055849,227,0 +170750055897,227,0 +170750055945,226,0 +170750055994,228,0 +170750056042,229,0 +170750056090,229,0 +170750056138,228,0 +170750056186,228,0 +170750056234,218,0 +170750056282,218,0 +170750056330,220,0 +170750056379,221,0 +170750056429,222,0 +170750056477,224,0 +170750056526,225,0 +170750056576,226,0 +170750056624,225,0 +170750056672,227,0 +170750056720,227,0 +170750056768,228,0 +170750056816,228,0 +170750056865,228,0 +170750056913,228,0 +170750056963,228,0 +170750057012,229,0 +170750057060,228,0 +170750057110,221,0 +170750057158,220,0 +170750057206,221,0 +170750057254,223,0 +170750057302,224,0 +170750057350,224,0 +170750057398,224,0 +170750057447,226,0 +170750057497,227,0 +170750057545,227,0 +170750057593,230,0 +170750057641,228,0 +170750057688,228,0 +170750057736,228,0 +170750057784,226,0 +170750057834,229,0 +170750057883,228,0 +170750057931,227,0 +170750057979,224,0 +170750058027,218,0 +170750058077,219,0 +170750058125,220,0 +170750058173,221,0 +170750058221,223,0 +170750058270,223,0 +170750058318,224,0 +170750058366,225,0 +170750058416,225,0 +170750058464,227,0 +170750058512,228,0 +170750058560,228,0 +170750058608,227,0 +170750058656,228,0 +170750058705,229,0 +170750058754,227,0 +170750058802,228,0 +170750058852,227,0 +170750058900,217,0 +170750058949,216,0 +170750058997,217,0 +170750059047,218,0 +170750059097,219,0 +170750059146,221,0 +170750059194,222,0 +170750059242,225,0 +170750059290,223,0 +170750059338,226,0 +170750059387,226,0 +170750059435,226,0 +170750059485,223,0 +170750059533,227,0 +170750059581,227,0 +170750059629,227,0 +170750059677,227,0 +170750059725,227,0 +170750059773,217,0 +170750059821,216,0 +170750059869,217,0 +170750059917,218,0 +170750059965,220,0 +170750060013,221,0 +170750060062,222,0 +170750060110,223,0 +170750060160,224,0 +170750060207,224,0 +170750060257,224,0 +170750060306,226,0 +170750060354,227,0 +170750060402,228,0 +170750060450,227,0 +170750060498,228,0 +170750060546,228,0 +170750060596,228,0 +170750060644,225,0 +170750060692,216,0 +170750060740,215,0 +170750060789,216,0 +170750060839,218,0 +170750060886,219,0 +170750060934,221,0 +170750060982,221,0 +170750061030,223,0 +170750061080,222,0 +170750061129,224,0 +170750061179,225,0 +170750061227,224,0 +170750061275,226,0 +170750061323,226,0 +170750061371,231,0 +170750061420,224,0 +170750061470,228,0 +170750061518,226,0 +170750061567,217,0 +170750061617,215,0 +170750061666,216,0 +170750061714,217,0 +170750061762,219,0 +170750061810,219,0 +170750061858,219,0 +170750061906,220,0 +170750061956,220,0 +170750062004,222,0 +170750062051,223,0 +170750062099,225,0 +170750062147,226,0 +170750062197,226,0 +170750062245,227,0 +170750062293,228,0 +170750062341,227,0 +170750062389,228,0 +170750062436,220,0 +170750062484,216,0 +170750062534,216,0 +170750062583,216,0 +170750062633,217,0 +170750062682,218,0 +170750062732,219,0 +170750062780,219,0 +170750062828,221,0 +170750062876,222,0 +170750062925,223,0 +170750062973,226,0 +170750063021,226,0 +170750063069,226,0 +170750063117,226,0 +170750063165,227,0 +170750063213,229,0 +170750063261,229,0 +170750063308,227,0 +170750063356,217,0 +170750063404,217,0 +170750063452,218,0 +170750063501,219,0 +170750063549,221,0 +170750063597,221,0 +170750063645,222,0 +170750063695,223,0 +170750063743,224,0 +170750063790,224,0 +170750063838,225,0 +170750063886,226,0 +170750063934,227,0 +170750063982,227,0 +170750064030,229,0 +170750064078,227,0 +170750064126,228,0 +170750064175,227,0 +170750064223,217,0 +170750064271,217,0 +170750064319,218,0 +170750064367,220,0 +170750064417,221,0 +170750064465,221,0 +170750064512,222,0 +170750064560,224,0 +170750064608,224,0 +170750064656,224,0 +170750064706,225,0 +170750064755,227,0 +170750064805,226,0 +170750064854,226,0 +170750064904,227,0 +170750064953,227,0 +170750065001,228,0 +170750065049,228,0 +170750065097,228,0 +170750065145,221,0 +170750065193,220,0 +170750065240,223,0 +170750065288,222,0 +170750065336,223,0 +170750065384,223,0 +170750065432,224,0 +170750065480,224,0 +170750065529,224,0 +170750065577,225,0 +170750065627,226,0 +170750065675,227,0 +170750065724,227,0 +170750065772,228,0 +170750065822,228,0 +170750065870,227,0 +170750065919,229,0 +170750065969,227,0 +170750066017,222,0 +170750066065,220,0 +170750066112,222,0 +170750066160,223,0 +170750066208,224,0 +170750066256,225,0 +170750066304,225,0 +170750066352,227,0 +170750066401,228,0 +170750066449,227,0 +170750066499,229,0 +170750066547,226,0 +170750066596,228,0 +170750066646,228,0 +170750066694,228,0 +170750066743,227,0 +170750066793,227,0 +170750066841,227,0 +170750066890,226,0 +170750066940,224,0 +170750066988,223,0 +170750067037,223,0 +170750067087,225,0 +170750067135,225,0 +170750067183,227,0 +170750067231,226,0 +170750067280,226,0 +170750067330,226,0 +170750067378,227,0 +170750067427,229,0 +170750067475,229,0 +170750067525,228,0 +170750067573,228,0 +170750067622,228,0 +170750067670,229,0 +170750067720,228,0 +170750067768,227,0 +170750067816,223,0 +170750067864,225,0 +170750067913,227,0 +170750067961,227,0 +170750068011,226,0 +170750068059,227,0 +170750068106,227,0 +170750068156,229,0 +170750068204,227,0 +170750068252,228,0 +170750068300,229,0 +170750068348,228,0 +170750068397,229,0 +170750068445,228,0 +170750068493,228,0 +170750068543,228,0 +170750068591,228,0 +170750068640,227,0 +170750068688,224,0 +170750068736,223,0 +170750068784,224,0 +170750068832,224,0 +170750068880,227,0 +170750068928,227,0 +170750068976,228,0 +170750069024,230,0 +170750069072,228,0 +170750069120,230,0 +170750069168,228,0 +170750069216,229,0 +170750069264,229,0 +170750069313,230,0 +170750069361,228,0 +170750069411,228,0 +170750069459,228,0 +170750069508,227,0 +170750069558,228,0 +170750069606,219,0 +170750069655,219,0 +170750069703,220,0 +170750069751,223,0 +170750069799,223,0 +170750069849,224,0 +170750069897,225,0 +170750069946,225,0 +170750069996,227,0 +170750070045,228,0 +170750070095,229,0 +170750070143,227,0 +170750070192,229,0 +170750070240,228,0 +170750070290,229,0 +170750070338,229,0 +170750070386,228,0 +170750070433,228,0 +170750070483,217,0 +170750070531,216,0 +170750070580,217,0 +170750070628,219,0 +170750070678,220,0 +170750070726,220,0 +170750070774,222,0 +170750070823,222,0 +170750070873,223,0 +170750070921,224,0 +170750070969,231,0 +170750071018,226,0 +170750071066,228,0 +170750071114,229,0 +170750071162,228,0 +170750071210,228,0 +170750071258,228,0 +170750071308,230,0 +170750071356,218,0 +170750071405,216,0 +170750071455,217,0 +170750071504,218,0 +170750071554,219,0 +170750071602,220,0 +170750071650,220,0 +170750071699,222,0 +170750071747,223,0 +170750071797,227,0 +170750071845,225,0 +170750071893,228,0 +170750071942,227,0 +170750071990,227,0 +170750072039,228,0 +170750072089,229,0 +170750072137,228,0 +170750072187,227,0 +170750072236,226,0 +170750072284,217,0 +170750072334,217,0 +170750072381,218,0 +170750072431,218,0 +170750072480,219,0 +170750072528,220,0 +170750072576,221,0 +170750072626,222,0 +170750072674,224,0 +170750072722,224,0 +170750072770,225,0 +170750072818,226,0 +170750072866,227,0 +170750072914,228,0 +170750072962,228,0 +170750073010,229,0 +170750073057,227,0 +170750073106,227,0 +170750073153,217,0 +170750073203,216,0 +170750073252,216,0 +170750073300,217,0 +170750073348,218,0 +170750073396,219,0 +170750073444,220,0 +170750073494,222,0 +170750073543,223,0 +170750073593,222,0 +170750073641,226,0 +170750073690,226,0 +170750073740,226,0 +170750073788,227,0 +170750073836,228,0 +170750073885,228,0 +170750073935,227,0 +170750073983,227,0 +170750074031,218,0 +170750074079,216,0 +170750074128,217,0 +170750074176,217,0 +170750074226,219,0 +170750074275,219,0 +170750074323,220,0 +170750074371,221,0 +170750074421,222,0 +170750074470,223,0 +170750074520,224,0 +170750074569,226,0 +170750074617,227,0 +170750074667,227,0 +170750074716,227,0 +170750074766,228,0 +170750074814,228,0 +170750074862,227,0 +170750074911,220,0 +170750074959,216,0 +170750075007,216,0 +170750075057,217,0 +170750075105,218,0 +170750075154,219,0 +170750075202,220,0 +170750075250,221,0 +170750075298,223,0 +170750075346,223,0 +170750075394,224,0 +170750075442,225,0 +170750075490,225,0 +170750075538,227,0 +170750075587,227,0 +170750075637,227,0 +170750075685,227,0 +170750075733,227,0 +170750075781,228,0 +170750075829,218,0 +170750075877,217,0 +170750075926,218,0 +170750075974,218,0 +170750076023,219,0 +170750076073,222,0 +170750076121,221,0 +170750076169,223,0 +170750076218,222,0 +170750076266,226,0 +170750076314,226,0 +170750076364,226,0 +170750076412,227,0 +170750076461,229,0 +170750076509,231,0 +170750076557,229,0 +170750076607,228,0 +170750076656,228,0 +170750076704,218,0 +170750076754,218,0 +170750076803,218,0 +170750076851,221,0 +170750076901,221,0 +170750076949,221,0 +170750076998,222,0 +170750077046,223,0 +170750077094,224,0 +170750077142,224,0 +170750077190,226,0 +170750077240,227,0 +170750077289,228,0 +170750077337,227,0 +170750077385,229,0 +170750077433,229,0 +170750077481,229,0 +170750077529,228,0 +170750077577,227,0 +170750077625,218,0 +170750077675,218,0 +170750077722,220,0 +170750077772,221,0 +170750077822,222,0 +170750077869,221,0 +170750077917,223,0 +170750077965,224,0 +170750078013,224,0 +170750078061,225,0 +170750078111,226,0 +170750078159,227,0 +170750078207,227,0 +170750078255,227,0 +170750078303,230,0 +170750078351,227,0 +170750078399,227,0 +170750078446,227,0 +170750078494,220,0 +170750078542,217,0 +170750078592,219,0 +170750078640,220,0 +170750078688,222,0 +170750078737,222,0 +170750078785,223,0 +170750078833,224,0 +170750078881,225,0 +170750078929,226,0 +170750078977,227,0 +170750079025,228,0 +170750079073,229,0 +170750079122,229,0 +170750079170,229,0 +170750079220,229,0 +170750079269,228,0 +170750079317,228,0 +170750079365,227,0 +170750079415,222,0 +170750079464,222,0 +170750079514,223,0 +170750079562,224,0 +170750079611,225,0 +170750079659,226,0 +170750079707,226,0 +170750079755,227,0 +170750079803,228,0 +170750079853,228,0 +170750079902,227,0 +170750079952,232,0 +170750080000,227,0 +170750080048,228,0 +170750080096,228,0 +170750080143,225,0 +170750080191,226,0 +170750080239,226,0 +170750080287,226,0 +170750080335,225,0 +170750080383,225,0 +170750080433,226,0 +170750080482,227,0 +170750080532,226,0 +170750080581,228,0 +170750080629,228,0 +170750080679,227,0 +170750080727,228,0 +170750080775,228,0 +170750080823,228,0 +170750080871,227,0 +170750080920,227,0 +170750080968,228,0 +170750081018,227,0 +170750081066,226,0 +170750081115,226,0 +170750081165,224,0 +170750081213,224,0 +170750081261,224,0 +170750081309,225,0 +170750081357,225,0 +170750081404,227,0 +170750081454,228,0 +170750081504,229,0 +170750081553,228,0 +170750081603,228,0 +170750081652,228,0 +170750081700,228,0 +170750081748,228,0 +170750081796,228,0 +170750081846,228,0 +170750081895,228,0 +170750081943,228,0 +170750081991,227,0 +170750082040,226,0 +170750082088,221,0 +170750082136,221,0 +170750082184,222,0 +170750082234,223,0 +170750082283,224,0 +170750082333,226,0 +170750082382,226,0 +170750082432,227,0 +170750082480,226,0 +170750082529,230,0 +170750082577,229,0 +170750082625,230,0 +170750082675,227,0 +170750082723,228,0 +170750082771,229,0 +170750082820,228,0 +170750082868,228,0 +170750082916,227,0 +170750082964,218,0 +170750083012,217,0 +170750083059,218,0 +170750083109,220,0 +170750083157,222,0 +170750083204,223,0 +170750083254,223,0 +170750083304,223,0 +170750083353,225,0 +170750083403,226,0 +170750083452,226,0 +170750083500,227,0 +170750083548,228,0 +170750083596,227,0 +170750083646,227,0 +170750083694,228,0 +170750083742,228,0 +170750083789,227,0 +170750083839,218,0 +170750083889,217,0 +170750083938,218,0 +170750083988,220,0 +170750084037,220,0 +170750084085,221,0 +170750084133,223,0 +170750084182,223,0 +170750084230,224,0 +170750084278,225,0 +170750084326,228,0 +170750084376,226,0 +170750084424,228,0 +170750084472,228,0 +170750084520,229,0 +170750084569,228,0 +170750084619,228,0 +170750084667,228,0 +170750084715,223,0 +170750084763,216,0 +170750084812,217,0 +170750084862,218,0 +170750084910,219,0 +170750084958,220,0 +170750085006,220,0 +170750085055,222,0 +170750085103,223,0 +170750085151,224,0 +170750085201,225,0 +170750085249,225,0 +170750085298,228,0 +170750085348,225,0 +170750085397,227,0 +170750085445,227,0 +170750085493,227,0 +170750085543,227,0 +170750085591,227,0 +170750085639,218,0 +170750085688,216,0 +170750085736,217,0 +170750085786,218,0 +170750085834,219,0 +170750085881,220,0 +170750085929,221,0 +170750085977,221,0 +170750086025,222,0 +170750086073,223,0 +170750086121,223,0 +170750086169,225,0 +170750086217,226,0 +170750086266,226,0 +170750086314,227,0 +170750086362,227,0 +170750086410,227,0 +170750086459,228,0 +170750086507,227,0 +170750086555,215,0 +170750086603,218,0 +170750086651,218,0 +170750086700,219,0 +170750086748,221,0 +170750086796,222,0 +170750086844,224,0 +170750086892,221,0 +170750086940,225,0 +170750086987,225,0 +170750087035,227,0 +170750087083,226,0 +170750087131,228,0 +170750087179,231,0 +170750087227,227,0 +170750087275,228,0 +170750087323,227,0 +170750087371,228,0 +170750087418,218,0 +170750087466,217,0 +170750087514,219,0 +170750087564,220,0 +170750087612,221,0 +170750087660,222,0 +170750087709,223,0 +170750087757,226,0 +170750087807,225,0 +170750087856,225,0 +170750087906,226,0 +170750087954,226,0 +170750088001,227,0 +170750088049,229,0 +170750088099,229,0 +170750088149,228,0 +170750088196,229,0 +170750088244,228,0 +170750088292,218,0 +170750088340,216,0 +170750088388,217,0 +170750088436,218,0 +170750088484,219,0 +170750088532,219,0 +170750088579,221,0 +170750088627,222,0 +170750088675,222,0 +170750088723,223,0 +170750088771,225,0 +170750088819,225,0 +170750088867,225,0 +170750088915,228,0 +170750088963,227,0 +170750089010,228,0 +170750089058,227,0 +170750089106,228,0 +170750089154,227,0 +170750089203,218,0 +170750089251,218,0 +170750089299,219,0 +170750089347,220,0 +170750089395,220,0 +170750089443,220,0 +170750089492,221,0 +170750089540,222,0 +170750089588,223,0 +170750089636,224,0 +170750089685,225,0 +170750089733,225,0 +170750089781,227,0 +170750089831,229,0 +170750089878,229,0 +170750089926,232,0 +170750089976,228,0 +170750090024,228,0 +170750090072,219,0 +170750090121,220,0 +170750090169,222,0 +170750090217,222,0 +170750090267,226,0 +170750090315,224,0 +170750090364,225,0 +170750090412,226,0 +170750090460,227,0 +170750090509,228,0 +170750090557,228,0 +170750090605,230,0 +170750090654,229,0 +170750090704,229,0 +170750090752,227,0 +170750090800,228,0 +170750090849,228,0 +170750090899,228,0 +170750090947,226,0 +170750090994,226,0 +170750091042,225,0 +170750091090,225,0 +170750091138,228,0 +170750091186,227,0 +170750091236,228,0 +170750091284,229,0 +170750091332,231,0 +170750091380,230,0 +170750091428,227,0 +170750091475,228,0 +170750091523,229,0 +170750091571,228,0 +170750091619,228,0 +170750091667,229,0 +170750091715,228,0 +170750091765,227,0 +170750091814,227,0 +170750091862,220,0 +170750091910,220,0 +170750091958,222,0 +170750092007,224,0 +170750092055,224,0 +170750092103,224,0 +170750092153,225,0 +170750092202,226,0 +170750092250,228,0 +170750092298,228,0 +170750092348,228,0 +170750092396,229,0 +170750092445,227,0 +170750092495,228,0 +170750092543,228,0 +170750092591,228,0 +170750092639,228,0 +170750092687,229,0 +170750092735,227,0 +170750092784,217,0 +170750092832,217,0 +170750092880,219,0 +170750092928,220,0 +170750092977,221,0 +170750093025,221,0 +170750093073,222,0 +170750093121,223,0 +170750093169,224,0 +170750093217,227,0 +170750093267,227,0 +170750093315,229,0 +170750093363,230,0 +170750093412,227,0 +170750093462,227,0 +170750093510,228,0 +170750093559,229,0 +170750093609,227,0 +170750093657,217,0 +170750093706,216,0 +170750093754,217,0 +170750093802,219,0 +170750093850,221,0 +170750093898,222,0 +170750093945,222,0 +170750093993,226,0 +170750094041,225,0 +170750094089,226,0 +170750094137,226,0 +170750094187,229,0 +170750094234,228,0 +170750094282,228,0 +170750094332,229,0 +170750094380,228,0 +170750094428,227,0 +170750094476,228,0 +170750094524,217,0 +170750094572,216,0 +170750094621,217,0 +170750094669,218,0 +170750094717,219,0 +170750094765,221,0 +170750094813,221,0 +170750094861,221,0 +170750094908,222,0 +170750094956,225,0 +170750095004,225,0 +170750095054,226,0 +170750095101,227,0 +170750095149,228,0 +170750095197,228,0 +170750095245,227,0 +170750095293,228,0 +170750095343,228,0 +170750095391,227,0 +170750095439,218,0 +170750095487,216,0 +170750095535,217,0 +170750095582,220,0 +170750095632,222,0 +170750095681,221,0 +170750095731,222,0 +170750095779,224,0 +170750095827,223,0 +170750095876,224,0 +170750095924,229,0 +170750095974,226,0 +170750096023,227,0 +170750096071,228,0 +170750096119,227,0 +170750096167,228,0 +170750096215,228,0 +170750096264,227,0 +170750096314,218,0 +170750096362,217,0 +170750096410,218,0 +170750096459,222,0 +170750096507,221,0 +170750096557,222,0 +170750096605,225,0 +170750096653,225,0 +170750096702,225,0 +170750096750,226,0 +170750096800,227,0 +170750096849,227,0 +170750096897,229,0 +170750096945,228,0 +170750096993,227,0 +170750097043,228,0 +170750097091,228,0 +170750097140,231,0 +170750097190,221,0 +170750097238,219,0 +170750097287,219,0 +170750097337,221,0 +170750097385,223,0 +170750097433,223,0 +170750097481,225,0 +170750097530,224,0 +170750097580,226,0 +170750097628,227,0 +170750097675,227,0 +170750097723,228,0 +170750097771,228,0 +170750097819,229,0 +170750097867,228,0 +170750097917,228,0 +170750097966,229,0 +170750098014,229,0 +170750098062,227,0 +170750098110,218,0 +170750098160,218,0 +170750098209,219,0 +170750098257,221,0 +170750098305,221,0 +170750098353,222,0 +170750098402,224,0 +170750098450,224,0 +170750098498,225,0 +170750098546,227,0 +170750098594,227,0 +170750098642,228,0 +170750098691,230,0 +170750098741,229,0 +170750098789,229,0 +170750098838,228,0 +170750098886,228,0 +170750098934,224,0 +170750098982,221,0 +170750099030,217,0 +170750099078,219,0 +170750099127,220,0 +170750099177,221,0 +170750099225,221,0 +170750099274,221,0 +170750099324,222,0 +170750099372,222,0 +170750099419,224,0 +170750099467,224,0 +170750099515,226,0 +170750099563,226,0 +170750099611,227,0 +170750099661,228,0 +170750099708,228,0 +170750099756,229,0 +170750099806,227,0 +170750099855,227,0 +170750099905,218,0 +170750099953,219,0 +170750100001,220,0 +170750100049,221,0 +170750100098,222,0 +170750100146,222,0 +170750100194,223,0 +170750100244,223,0 +170750100292,226,0 +170750100340,227,0 +170750100388,228,0 +170750100436,227,0 +170750100484,226,0 +170750100531,228,0 +170750100580,230,0 +170750100630,228,0 +170750100679,227,0 +170750100729,226,0 +170750100777,219,0 +170750100825,218,0 +170750100872,220,0 +170750100920,220,0 +170750100968,222,0 +170750101018,222,0 +170750101067,225,0 +170750101115,224,0 +170750101165,225,0 +170750101214,227,0 +170750101262,226,0 +170750101310,227,0 +170750101358,228,0 +170750101407,228,0 +170750101455,228,0 +170750101503,227,0 +170750101551,228,0 +170750101599,227,0 +170750101647,219,0 +170750101695,220,0 +170750101745,222,0 +170750101794,223,0 +170750101844,223,0 +170750101892,226,0 +170750101940,224,0 +170750101989,226,0 +170750102037,226,0 +170750102086,225,0 +170750102136,228,0 +170750102184,227,0 +170750102232,227,0 +170750102280,225,0 +170750102328,228,0 +170750102376,228,0 +170750102425,227,0 +170750102473,228,0 +170750102521,229,0 +170750102571,221,0 +170750102620,221,0 +170750102668,223,0 +170750102716,224,0 +170750102764,224,0 +170750102812,223,0 +170750102860,226,0 +170750102908,227,0 +170750102956,226,0 +170750103004,227,0 +170750103052,227,0 +170750103100,227,0 +170750103149,228,0 +170750103199,227,0 +170750103247,227,0 +170750103295,228,0 +170750103344,227,0 +170750103392,227,0 +170750103440,218,0 +170750103488,218,0 +170750103536,219,0 +170750103585,220,0 +170750103633,220,0 +170750103683,221,0 +170750103732,222,0 +170750103780,223,0 +170750103828,224,0 +170750103876,225,0 +170750103924,226,0 +170750103972,226,0 +170750104020,227,0 +170750104070,229,0 +170750104118,226,0 +170750104166,229,0 +170750104214,228,0 +170750104262,229,0 +170750104309,227,0 +170750104359,217,0 +170750104407,218,0 +170750104455,219,0 +170750104503,220,0 +170750104552,221,0 +170750104602,222,0 +170750104650,221,0 +170750104699,224,0 +170750104747,224,0 +170750104795,224,0 +170750104843,225,0 +170750104893,226,0 +170750104941,227,0 +170750104989,229,0 +170750105038,229,0 +170750105086,230,0 +170750105136,228,0 +170750105184,227,0 +170750105232,218,0 +170750105279,217,0 +170750105327,219,0 +170750105375,220,0 +170750105423,221,0 +170750105473,222,0 +170750105521,222,0 +170750105569,223,0 +170750105617,226,0 +170750105666,226,0 +170750105714,225,0 +170750105764,226,0 +170750105812,228,0 +170750105860,229,0 +170750105908,228,0 +170750105956,228,0 +170750106004,229,0 +170750106052,227,0 +170750106101,224,0 +170750106151,216,0 +170750106200,216,0 +170750106250,217,0 +170750106298,220,0 +170750106346,221,0 +170750106394,221,0 +170750106443,222,0 +170750106491,223,0 +170750106540,224,0 +170750106588,225,0 +170750106636,226,0 +170750106684,227,0 +170750106734,227,0 +170750106784,226,0 +170750106833,227,0 +170750106883,229,0 +170750106932,227,0 +170750106982,226,0 +170750107030,216,0 +170750107078,216,0 +170750107126,217,0 +170750107175,219,0 +170750107223,220,0 +170750107273,219,0 +170750107322,221,0 +170750107372,222,0 +170750107419,222,0 +170750107467,223,0 +170750107515,225,0 +170750107563,225,0 +170750107611,226,0 +170750107659,226,0 +170750107709,227,0 +170750107758,229,0 +170750107806,228,0 +170750107856,227,0 +170750107904,218,0 +170750107952,216,0 +170750108001,217,0 +170750108049,218,0 +170750108099,220,0 +170750108148,220,0 +170750108196,221,0 +170750108244,221,0 +170750108292,223,0 +170750108340,224,0 +170750108388,224,0 +170750108436,224,0 +170750108485,225,0 +170750108533,226,0 +170750108581,226,0 +170750108629,229,0 +170750108677,227,0 +170750108727,229,0 +170750108775,228,0 +170750108824,217,0 +170750108874,219,0 +170750108922,220,0 +170750108970,220,0 +170750109018,221,0 +170750109066,222,0 +170750109115,224,0 +170750109165,227,0 +170750109213,227,0 +170750109262,228,0 +170750109310,226,0 +170750109360,229,0 +170750109409,229,0 +170750109457,231,0 +170750109505,228,0 +170750109553,228,0 +170750109601,230,0 +170750109649,227,0 +170750109697,218,0 +170750109745,219,0 +170750109793,220,0 +170750109842,221,0 +170750109890,221,0 +170750109938,222,0 +170750109988,223,0 +170750110036,224,0 +170750110084,224,0 +170750110132,225,0 +170750110181,226,0 +170750110231,226,0 +170750110280,227,0 +170750110328,226,0 +170750110378,228,0 +170750110426,228,0 +170750110474,227,0 +170750110522,227,0 +170750110570,219,0 +170750110619,219,0 +170750110669,220,0 +170750110717,221,0 +170750110765,223,0 +170750110813,225,0 +170750110862,224,0 +170750110912,222,0 +170750110961,225,0 +170750111011,227,0 +170750111060,226,0 +170750111110,228,0 +170750111158,228,0 +170750111207,228,0 +170750111257,227,0 +170750111306,235,0 +170750111356,228,0 +170750111404,227,0 +170750111453,225,0 +170750111503,223,0 +170750111551,224,0 +170750111600,224,0 +170750111648,223,0 +170750111696,226,0 +170750111744,225,0 +170750111794,226,0 +170750111843,227,0 +170750111893,228,0 +170750111942,228,0 +170750111990,229,0 +170750112038,228,0 +170750112086,229,0 +170750112134,228,0 +170750112181,229,0 +170750112229,228,0 +170750112279,227,0 +170750112327,226,0 +170750112375,223,0 +170750112424,223,0 +170750112472,225,0 +170750112522,224,0 +170750112570,224,0 +170750112618,228,0 +170750112667,227,0 +170750112717,227,0 +170750112766,230,0 +170750112814,229,0 +170750112864,229,0 +170750112912,231,0 +170750112961,228,0 +170750113009,229,0 +170750113057,229,0 +170750113105,228,0 +170750113153,227,0 +170750113201,228,0 +170750113249,226,0 +170750113297,226,0 +170750113345,225,0 +170750113393,228,0 +170750113441,228,0 +170750113489,227,0 +170750113537,230,0 +170750113586,228,0 +170750113636,228,0 +170750113684,229,0 +170750113733,228,0 +170750113783,228,0 +170750113831,227,0 +170750113879,224,0 +170750113927,227,0 +170750113974,229,0 +170750114022,226,0 +170750114070,227,0 +170750114118,227,0 +170750114168,224,0 +170750114217,224,0 +170750114265,225,0 +170750114313,225,0 +170750114361,227,0 +170750114409,226,0 +170750114458,227,0 +170750114506,228,0 +170750114554,229,0 +170750114602,229,0 +170750114650,228,0 +170750114698,228,0 +170750114747,229,0 +170750114795,228,0 +170750114845,228,0 +170750114893,227,0 +170750114941,226,0 +170750114989,226,0 +170750115037,218,0 +170750115085,218,0 +170750115133,219,0 +170750115182,219,0 +170750115230,221,0 +170750115278,222,0 +170750115326,223,0 +170750115374,224,0 +170750115424,225,0 +170750115472,228,0 +170750115521,228,0 +170750115569,226,0 +170750115618,229,0 +170750115666,227,0 +170750115714,227,0 +170750115764,227,0 +170750115812,230,0 +170750115861,227,0 +170750115911,217,0 +170750115959,217,0 +170750116008,217,0 +170750116056,217,0 +170750116106,219,0 +170750116154,219,0 +170750116203,220,0 +170750116251,221,0 +170750116299,222,0 +170750116349,224,0 +170750116398,225,0 +170750116446,228,0 +170750116496,227,0 +170750116543,228,0 +170750116591,228,0 +170750116639,228,0 +170750116687,228,0 +170750116735,228,0 +170750116785,226,0 +170750116834,216,0 +170750116884,217,0 +170750116933,218,0 +170750116981,219,0 +170750117029,221,0 +170750117077,221,0 +170750117125,222,0 +170750117173,222,0 +170750117222,224,0 +170750117270,225,0 +170750117318,225,0 +170750117366,226,0 +170750117415,227,0 +170750117463,228,0 +170750117511,228,0 +170750117560,228,0 +170750117608,228,0 +170750117656,227,0 +170750117704,218,0 +170750117752,215,0 +170750117800,217,0 +170750117848,218,0 +170750117896,219,0 +170750117946,220,0 +170750117994,220,0 +170750118042,222,0 +170750118090,223,0 +170750118139,222,0 +170750118189,224,0 +170750118238,227,0 +170750118286,227,0 +170750118336,227,0 +170750118385,229,0 +170750118435,229,0 +170750118483,229,0 +170750118531,229,0 +170750118579,226,0 +170750118627,216,0 +170750118675,216,0 +170750118724,218,0 +170750118772,219,0 +170750118820,219,0 +170750118868,221,0 +170750118916,221,0 +170750118964,222,0 +170750119011,226,0 +170750119059,225,0 +170750119107,225,0 +170750119155,225,0 +170750119205,227,0 +170750119254,228,0 +170750119302,229,0 +170750119350,229,0 +170750119398,227,0 +170750119446,227,0 +170750119494,217,0 +170750119542,216,0 +170750119592,218,0 +170750119639,219,0 +170750119687,220,0 +170750119737,222,0 +170750119787,221,0 +170750119834,222,0 +170750119882,223,0 +170750119930,223,0 +170750119980,225,0 +170750120029,225,0 +170750120077,227,0 +170750120127,226,0 +170750120176,229,0 +170750120224,227,0 +170750120272,227,0 +170750120322,227,0 +170750120371,217,0 +170750120421,215,0 +170750120469,216,0 +170750120518,216,0 +170750120566,217,0 +170750120616,218,0 +170750120664,220,0 +170750120712,220,0 +170750120760,221,0 +170750120808,223,0 +170750120857,224,0 +170750120905,225,0 +170750120955,225,0 +170750121002,227,0 +170750121052,226,0 +170750121100,227,0 +170750121149,227,0 +170750121198,228,0 +170750121245,227,0 +170750121293,216,0 +170750121343,216,0 +170750121392,216,0 +170750121440,217,0 +170750121488,219,0 +170750121538,219,0 +170750121586,220,0 +170750121635,222,0 +170750121683,224,0 +170750121731,223,0 +170750121781,225,0 +170750121829,226,0 +170750121877,227,0 +170750121925,228,0 +170750121973,227,0 +170750122021,231,0 +170750122069,228,0 +170750122117,227,0 +170750122165,218,0 +170750122213,216,0 +170750122262,217,0 +170750122310,218,0 +170750122358,219,0 +170750122408,221,0 +170750122457,221,0 +170750122507,223,0 +170750122554,223,0 +170750122604,224,0 +170750122652,226,0 +170750122700,225,0 +170750122748,227,0 +170750122796,227,0 +170750122844,227,0 +170750122893,226,0 +170750122941,227,0 +170750122991,227,0 +170750123039,218,0 +170750123087,218,0 +170750123136,218,0 +170750123184,220,0 +170750123232,221,0 +170750123280,222,0 +170750123329,223,0 +170750123379,224,0 +170750123427,225,0 +170750123475,226,0 +170750123524,226,0 +170750123574,227,0 +170750123623,224,0 +170750123671,226,0 +170750123721,226,0 +170750123769,227,0 +170750123817,228,0 +170750123866,227,0 +170750123914,226,0 +170750123964,222,0 +170750124012,222,0 +170750124060,223,0 +170750124108,225,0 +170750124156,225,0 +170750124203,225,0 +170750124251,226,0 +170750124299,227,0 +170750124349,226,0 +170750124397,227,0 +170750124445,227,0 +170750124493,228,0 +170750124541,227,0 +170750124590,227,0 +170750124640,228,0 +170750124688,229,0 +170750124736,229,0 +170750124784,229,0 +170750124832,225,0 +170750124881,227,0 +170750124929,226,0 +170750124977,228,0 +170750125025,226,0 +170750125074,226,0 +170750125122,227,0 +170750125170,228,0 +170750125220,228,0 +170750125268,228,0 +170750125317,228,0 +170750125367,228,0 +170750125416,229,0 +170750125466,229,0 +170750125514,228,0 +170750125563,227,0 +170750125613,229,0 +170750125661,226,0 +170750125709,225,0 +170750125757,222,0 +170750125804,222,0 +170750125852,224,0 +170750125900,226,0 +170750125948,225,0 +170750125996,227,0 +170750126044,227,0 +170750126092,228,0 +170750126140,228,0 +170750126189,228,0 +170750126237,228,0 +170750126285,228,0 +170750126333,228,0 +170750126383,228,0 +170750126432,228,0 +170750126482,227,0 +170750126530,230,0 +170750126578,226,0 +170750126625,218,0 +170750126675,218,0 +170750126723,219,0 +170750126771,220,0 +170750126819,221,0 +170750126867,223,0 +170750126916,224,0 +170750126966,224,0 +170750127014,225,0 +170750127062,225,0 +170750127110,225,0 +170750127159,226,0 +170750127207,226,0 +170750127255,227,0 +170750127303,227,0 +170750127351,228,0 +170750127401,230,0 +170750127450,226,0 +170750127498,217,0 +170750127548,216,0 +170750127596,217,0 +170750127644,219,0 +170750127693,220,0 +170750127743,221,0 +170750127791,221,0 +170750127839,222,0 +170750127887,223,0 +170750127934,224,0 +170750127984,224,0 +170750128034,226,0 +170750128082,227,0 +170750128129,226,0 +170750128179,227,0 +170750128227,228,0 +170750128275,227,0 +170750128323,227,0 +170750128372,227,0 +170750128420,216,0 +170750128468,216,0 +170750128516,218,0 +170750128564,219,0 +170750128612,220,0 +170750128662,222,0 +170750128710,222,0 +170750128759,222,0 +170750128807,222,0 +170750128855,226,0 +170750128903,226,0 +170750128951,226,0 +170750128999,228,0 +170750129048,227,0 +170750129096,225,0 +170750129146,226,0 +170750129194,227,0 +170750129242,227,0 +170750129289,217,0 +170750129337,215,0 +170750129385,216,0 +170750129433,218,0 +170750129481,219,0 +170750129529,220,0 +170750129577,221,0 +170750129624,222,0 +170750129674,222,0 +170750129722,223,0 +170750129771,224,0 +170750129819,226,0 +170750129867,226,0 +170750129915,227,0 +170750129963,228,0 +170750130011,228,0 +170750130059,227,0 +170750130107,228,0 +170750130154,226,0 +170750130202,215,0 +170750130250,215,0 +170750130298,216,0 +170750130346,216,0 +170750130394,217,0 +170750130442,218,0 +170750130490,219,0 +170750130538,220,0 +170750130586,221,0 +170750130633,222,0 +170750130681,224,0 +170750130731,225,0 +170750130779,226,0 +170750130826,227,0 +170750130874,227,0 +170750130922,227,0 +170750130972,227,0 +170750131021,228,0 +170750131071,218,0 +170750131118,216,0 +170750131166,216,0 +170750131214,216,0 +170750131264,218,0 +170750131312,219,0 +170750131360,219,0 +170750131407,220,0 +170750131455,221,0 +170750131505,221,0 +170750131553,223,0 +170750131602,224,0 +170750131650,225,0 +170750131698,226,0 +170750131746,227,0 +170750131794,228,0 +170750131843,226,0 +170750131891,227,0 +170750131939,226,0 +170750131987,216,0 +170750132035,216,0 +170750132082,219,0 +170750132130,217,0 +170750132178,219,0 +170750132228,221,0 +170750132276,222,0 +170750132323,224,0 +170750132371,223,0 +170750132421,223,0 +170750132469,226,0 +170750132518,228,0 +170750132566,228,0 +170750132614,226,0 +170750132662,226,0 +170750132710,225,0 +170750132758,226,0 +170750132806,226,0 +170750132854,217,0 +170750132901,216,0 +170750132951,218,0 +170750133001,218,0 +170750133049,219,0 +170750133096,220,0 +170750133146,222,0 +170750133196,220,0 +170750133244,223,0 +170750133291,223,0 +170750133339,223,0 +170750133387,227,0 +170750133435,227,0 +170750133485,228,0 +170750133533,226,0 +170750133581,228,0 +170750133629,227,0 +170750133678,228,0 +170750133726,221,0 +170750133776,218,0 +170750133824,218,0 +170750133871,222,0 +170750133919,220,0 +170750133967,221,0 +170750134015,223,0 +170750134065,222,0 +170750134114,223,0 +170750134164,224,0 +170750134213,225,0 +170750134263,226,0 +170750134311,229,0 +170750134360,229,0 +170750134408,228,0 +170750134456,229,0 +170750134504,226,0 +170750134552,232,0 +170750134602,227,0 +170750134651,218,0 +170750134699,222,0 +170750134749,220,0 +170750134798,222,0 +170750134846,223,0 +170750134894,225,0 +170750134942,225,0 +170750134990,228,0 +170750135040,226,0 +170750135089,227,0 +170750135137,228,0 +170750135185,228,0 +170750135233,229,0 +170750135283,228,0 +170750135331,228,0 +170750135380,228,0 +170750135430,227,0 +170750135479,227,0 +170750135527,222,0 +170750135575,223,0 +170750135625,224,0 +170750135672,226,0 +170750135720,227,0 +170750135768,225,0 +170750135816,226,0 +170750135864,228,0 +170750135912,228,0 +170750135962,227,0 +170750136010,228,0 +170750136058,228,0 +170750136107,227,0 +170750136155,228,0 +170750136204,228,0 +170750136254,227,0 +170750136302,228,0 +170750136352,228,0 +170750136399,220,0 +170750136449,223,0 +170750136499,226,0 +170750136548,226,0 +170750136598,226,0 +170750136646,227,0 +170750136695,228,0 +170750136745,227,0 +170750136793,227,0 +170750136841,229,0 +170750136889,229,0 +170750136938,229,0 +170750136988,230,0 +170750137037,228,0 +170750137085,229,0 +170750137135,228,0 +170750137184,228,0 +170750137232,228,0 +170750137280,225,0 +170750137329,219,0 +170750137379,220,0 +170750137427,220,0 +170750137475,222,0 +170750137523,223,0 +170750137571,224,0 +170750137620,223,0 +170750137668,225,0 +170750137718,227,0 +170750137766,227,0 +170750137815,224,0 +170750137863,228,0 +170750137911,228,0 +170750137959,229,0 +170750138007,230,0 +170750138055,230,0 +170750138103,223,0 +170750138153,227,0 +170750138201,220,0 +170750138250,219,0 +170750138298,219,0 +170750138348,221,0 +170750138397,222,0 +170750138445,223,0 +170750138493,223,0 +170750138541,223,0 +170750138589,223,0 +170750138637,226,0 +170750138687,225,0 +170750138736,226,0 +170750138786,226,0 +170750138835,227,0 +170750138883,227,0 +170750138933,228,0 +170750138982,226,0 +170750139030,227,0 +170750139078,220,0 +170750139126,219,0 +170750139174,221,0 +170750139222,222,0 +170750139272,224,0 +170750139319,224,0 +170750139367,224,0 +170750139415,224,0 +170750139465,225,0 +170750139514,228,0 +170750139564,227,0 +170750139613,228,0 +170750139663,228,0 +170750139712,226,0 +170750139760,228,0 +170750139808,228,0 +170750139858,228,0 +170750139906,228,0 +170750139955,218,0 +170750140005,219,0 +170750140054,219,0 +170750140102,221,0 +170750140150,222,0 +170750140198,223,0 +170750140246,224,0 +170750140294,226,0 +170750140342,224,0 +170750140390,227,0 +170750140438,226,0 +170750140486,229,0 +170750140536,227,0 +170750140585,231,0 +170750140633,229,0 +170750140681,229,0 +170750140729,227,0 +170750140777,228,0 +170750140826,227,0 +170750140876,218,0 +170750140924,218,0 +170750140972,220,0 +170750141020,221,0 +170750141068,221,0 +170750141116,222,0 +170750141165,225,0 +170750141213,225,0 +170750141261,227,0 +170750141311,227,0 +170750141359,226,0 +170750141408,227,0 +170750141456,228,0 +170750141504,228,0 +170750141552,230,0 +170750141600,229,0 +170750141649,228,0 +170750141697,227,0 +170750141745,223,0 +170750141793,217,0 +170750141842,218,0 +170750141890,219,0 +170750141938,220,0 +170750141986,222,0 +170750142034,223,0 +170750142082,224,0 +170750142130,224,0 +170750142178,225,0 +170750142226,226,0 +170750142276,226,0 +170750142325,221,0 +170750142373,228,0 +170750142423,227,0 +170750142471,230,0 +170750142519,227,0 +170750142567,229,0 +170750142616,226,0 +170750142664,218,0 +170750142714,219,0 +170750142762,219,0 +170750142810,220,0 +170750142858,222,0 +170750142905,223,0 +170750142953,223,0 +170750143001,225,0 +170750143049,228,0 +170750143097,225,0 +170750143145,227,0 +170750143193,228,0 +170750143241,227,0 +170750143290,229,0 +170750143338,228,0 +170750143388,229,0 +170750143437,228,0 +170750143485,230,0 +170750143533,218,0 +170750143581,218,0 +170750143629,219,0 +170750143677,220,0 +170750143725,221,0 +170750143775,221,0 +170750143824,223,0 +170750143874,223,0 +170750143922,224,0 +170750143969,224,0 +170750144017,227,0 +170750144065,227,0 +170750144113,226,0 +170750144163,228,0 +170750144210,226,0 +170750144258,229,0 +170750144306,229,0 +170750144356,227,0 +170750144404,227,0 +170750144453,216,0 +170750144501,217,0 +170750144549,218,0 +170750144599,219,0 +170750144647,222,0 +170750144696,222,0 +170750144746,222,0 +170750144794,223,0 +170750144842,225,0 +170750144890,224,0 +170750144937,226,0 +170750144987,229,0 +170750145037,227,0 +170750145085,229,0 +170750145134,228,0 +170750145182,229,0 +170750145231,227,0 +170750145279,227,0 +170750145329,219,0 +170750145378,219,0 +170750145428,221,0 +170750145476,219,0 +170750145524,223,0 +170750145572,223,0 +170750145621,223,0 +170750145669,224,0 +170750145717,225,0 +170750145767,226,0 +170750145815,226,0 +170750145863,228,0 +170750145912,228,0 +170750145962,227,0 +170750146010,229,0 +170750146058,228,0 +170750146107,228,0 +170750146155,227,0 +170750146203,221,0 +170750146253,220,0 +170750146301,223,0 +170750146350,224,0 +170750146400,224,0 +170750146449,224,0 +170750146497,225,0 +170750146547,227,0 +170750146596,225,0 +170750146644,228,0 +170750146693,227,0 +170750146741,227,0 +170750146789,227,0 +170750146837,228,0 +170750146885,227,0 +170750146933,229,0 +170750146981,229,0 +170750147029,227,0 +170750147077,226,0 +170750147125,224,0 +170750147173,223,0 +170750147221,226,0 +170750147271,225,0 +170750147320,227,0 +170750147368,227,0 +170750147416,227,0 +170750147464,228,0 +170750147514,227,0 +170750147562,227,0 +170750147611,229,0 +170750147659,228,0 +170750147707,227,0 +170750147757,228,0 +170750147806,227,0 +170750147854,228,0 +170750147903,228,0 +170750147951,226,0 +170750147999,219,0 +170750148047,219,0 +170750148095,219,0 +170750148145,221,0 +170750148194,222,0 +170750148244,224,0 +170750148294,224,0 +170750148341,224,0 +170750148391,227,0 +170750148439,226,0 +170750148487,227,0 +170750148535,228,0 +170750148584,227,0 +170750148634,225,0 +170750148682,224,0 +170750148730,226,0 +170750148779,228,0 +170750148829,226,0 +170750148877,218,0 +170750148925,216,0 +170750148974,217,0 +170750149022,219,0 +170750149070,220,0 +170750149118,221,0 +170750149168,221,0 +170750149217,223,0 +170750149267,222,0 +170750149314,224,0 +170750149364,228,0 +170750149414,226,0 +170750149461,226,0 +170750149509,226,0 +170750149557,227,0 +170750149607,227,0 +170750149655,231,0 +170750149703,227,0 +170750149751,217,0 +170750149800,216,0 +170750149848,217,0 +170750149896,221,0 +170750149944,220,0 +170750149992,221,0 +170750150040,221,0 +170750150088,222,0 +170750150138,222,0 +170750150186,224,0 +170750150234,226,0 +170750150282,225,0 +170750150330,226,0 +170750150378,227,0 +170750150425,227,0 +170750150473,227,0 +170750150523,228,0 +170750150572,229,0 +170750150620,227,0 +170750150668,217,0 +170750150716,217,0 +170750150764,216,0 +170750150814,219,0 +170750150862,220,0 +170750150911,221,0 +170750150961,224,0 +170750151009,223,0 +170750151057,223,0 +170750151106,224,0 +170750151154,226,0 +170750151202,226,0 +170750151252,227,0 +170750151301,226,0 +170750151351,228,0 +170750151399,228,0 +170750151448,227,0 +170750151498,227,0 +170750151546,218,0 +170750151594,218,0 +170750151643,219,0 +170750151691,220,0 +170750151739,221,0 +170750151787,222,0 +170750151835,225,0 +170750151883,224,0 +170750151932,223,0 +170750151982,225,0 +170750152031,226,0 +170750152081,226,0 +170750152129,226,0 +170750152178,226,0 +170750152228,226,0 +170750152277,227,0 +170750152325,226,0 +170750152373,227,0 +170750152421,217,0 +170750152469,216,0 +170750152519,218,0 +170750152568,219,0 +170750152618,220,0 +170750152666,220,0 +170750152715,221,0 +170750152765,222,0 +170750152813,223,0 +170750152861,224,0 +170750152909,224,0 +170750152958,225,0 +170750153008,227,0 +170750153056,228,0 +170750153104,226,0 +170750153153,228,0 +170750153201,227,0 +170750153249,227,0 +170750153297,226,0 +170750153345,216,0 +170750153394,217,0 +170750153442,218,0 +170750153490,220,0 +170750153540,221,0 +170750153590,222,0 +170750153637,223,0 +170750153687,223,0 +170750153737,223,0 +170750153786,225,0 +170750153836,226,0 +170750153885,228,0 +170750153935,227,0 +170750153983,226,0 +170750154031,227,0 +170750154080,226,0 +170750154128,228,0 +170750154176,227,0 +170750154226,219,0 +170750154275,217,0 +170750154325,218,0 +170750154372,219,0 +170750154420,221,0 +170750154468,221,0 +170750154516,222,0 +170750154564,224,0 +170750154612,226,0 +170750154660,219,0 +170750154708,221,0 +170750154756,227,0 +170750154804,226,0 +170750154852,227,0 +170750154901,227,0 +170750154950,229,0 +170750154998,229,0 +170750155046,228,0 +170750155094,217,0 +170750155142,217,0 +170750155190,218,0 +170750155238,220,0 +170750155286,220,0 +170750155336,222,0 +170750155383,222,0 +170750155431,223,0 +170750155479,223,0 +170750155527,224,0 +170750155576,225,0 +170750155624,227,0 +170750155672,228,0 +170750155720,226,0 +170750155768,226,0 +170750155816,227,0 +170750155865,227,0 +170750155913,233,0 +170750155961,226,0 +170750156009,220,0 +170750156057,221,0 +170750156105,221,0 +170750156155,222,0 +170750156202,223,0 +170750156250,225,0 +170750156298,223,0 +170750156346,224,0 +170750156394,224,0 +170750156442,225,0 +170750156490,226,0 +170750156540,227,0 +170750156589,228,0 +170750156637,229,0 +170750156687,228,0 +170750156736,229,0 +170750156786,227,0 +170750156835,227,0 +170750156883,221,0 +170750156933,219,0 +170750156980,220,0 +170750157028,223,0 +170750157076,222,0 +170750157124,224,0 +170750157172,224,0 +170750157221,225,0 +170750157269,227,0 +170750157317,226,0 +170750157365,228,0 +170750157413,228,0 +170750157462,229,0 +170750157510,229,0 +170750157558,229,0 +170750157606,229,0 +170750157655,228,0 +170750157705,227,0 +170750157753,226,0 +170750157802,221,0 +170750157850,221,0 +170750157898,222,0 +170750157946,224,0 +170750157994,224,0 +170750158042,225,0 +170750158090,226,0 +170750158138,227,0 +170750158186,228,0 +170750158234,227,0 +170750158283,228,0 +170750158331,229,0 +170750158379,228,0 +170750158427,228,0 +170750158475,228,0 +170750158523,227,0 +170750158570,228,0 +170750158620,227,0 +170750158668,224,0 +170750158716,223,0 +170750158764,224,0 +170750158811,225,0 +170750158859,225,0 +170750158907,228,0 +170750158955,229,0 +170750159003,228,0 +170750159051,227,0 +170750159099,228,0 +170750159147,228,0 +170750159196,228,0 +170750159244,228,0 +170750159292,228,0 +170750159340,228,0 +170750159388,230,0 +170750159437,229,0 +170750159485,228,0 +170750159533,219,0 +170750159581,220,0 +170750159631,221,0 +170750159678,221,0 +170750159726,222,0 +170750159774,224,0 +170750159822,224,0 +170750159870,224,0 +170750159918,226,0 +170750159966,225,0 +170750160014,229,0 diff --git a/laser_value/0210-04.csv b/laser_value/0210-04.csv new file mode 100644 index 0000000..bf2f5de --- /dev/null +++ b/laser_value/0210-04.csv @@ -0,0 +1,7433 @@ +timestamp,laser_value,event +170750160063,228,0 +170750160111,227,0 +170750160158,226,0 +170750160206,228,0 +170750160256,228,0 +170750160305,228,0 +170750160353,228,0 +170750160401,226,0 +170750160449,221,0 +170750160497,220,0 +170750160546,221,0 +170750160594,219,0 +170750160642,222,0 +170750160691,223,0 +170750160739,223,0 +170750160787,224,0 +170750160835,224,0 +170750160883,226,0 +170750160932,227,0 +170750160980,226,0 +170750161028,229,0 +170750161078,228,0 +170750161127,228,0 +170750161175,229,0 +170750161223,228,0 +170750161273,229,0 +170750161321,221,0 +170750161370,218,0 +170750161420,219,0 +170750161468,219,0 +170750161517,221,0 +170750161565,223,0 +170750161615,223,0 +170750161664,223,0 +170750161712,224,0 +170750161760,225,0 +170750161810,227,0 +170750161857,226,0 +170750161907,229,0 +170750161955,227,0 +170750162003,229,0 +170750162051,228,0 +170750162099,228,0 +170750162147,227,0 +170750162196,226,0 +170750162244,216,0 +170750162292,217,0 +170750162342,218,0 +170750162391,220,0 +170750162439,219,0 +170750162487,221,0 +170750162537,221,0 +170750162585,223,0 +170750162633,224,0 +170750162680,224,0 +170750162728,226,0 +170750162778,226,0 +170750162826,228,0 +170750162874,230,0 +170750162922,228,0 +170750162971,228,0 +170750163019,230,0 +170750163069,227,0 +170750163117,218,0 +170750163165,217,0 +170750163214,218,0 +170750163262,219,0 +170750163312,220,0 +170750163360,221,0 +170750163408,222,0 +170750163457,223,0 +170750163507,224,0 +170750163554,224,0 +170750163602,226,0 +170750163650,227,0 +170750163698,228,0 +170750163746,229,0 +170750163794,228,0 +170750163842,227,0 +170750163890,228,0 +170750163940,227,0 +170750163988,220,0 +170750164036,216,0 +170750164085,216,0 +170750164133,218,0 +170750164181,219,0 +170750164229,220,0 +170750164277,220,0 +170750164325,221,0 +170750164372,222,0 +170750164420,223,0 +170750164468,223,0 +170750164516,225,0 +170750164564,225,0 +170750164613,227,0 +170750164661,228,0 +170750164709,227,0 +170750164757,226,0 +170750164805,230,0 +170750164853,224,0 +170750164901,216,0 +170750164949,216,0 +170750164997,218,0 +170750165045,218,0 +170750165092,219,0 +170750165140,220,0 +170750165188,221,0 +170750165238,220,0 +170750165287,222,0 +170750165335,224,0 +170750165385,227,0 +170750165433,228,0 +170750165481,229,0 +170750165530,228,0 +170750165580,228,0 +170750165628,229,0 +170750165677,228,0 +170750165727,227,0 +170750165775,217,0 +170750165824,217,0 +170750165874,217,0 +170750165923,219,0 +170750165971,219,0 +170750166019,220,0 +170750166069,220,0 +170750166117,221,0 +170750166165,220,0 +170750166214,223,0 +170750166262,224,0 +170750166310,226,0 +170750166360,226,0 +170750166408,226,0 +170750166456,228,0 +170750166505,227,0 +170750166555,227,0 +170750166603,227,0 +170750166652,223,0 +170750166700,216,0 +170750166750,217,0 +170750166799,218,0 +170750166849,220,0 +170750166898,221,0 +170750166946,222,0 +170750166996,223,0 +170750167045,223,0 +170750167095,226,0 +170750167143,227,0 +170750167192,227,0 +170750167240,226,0 +170750167288,228,0 +170750167336,229,0 +170750167385,229,0 +170750167433,229,0 +170750167481,228,0 +170750167531,222,0 +170750167580,218,0 +170750167628,219,0 +170750167676,220,0 +170750167726,221,0 +170750167774,224,0 +170750167822,223,0 +170750167871,223,0 +170750167919,224,0 +170750167969,225,0 +170750168017,225,0 +170750168065,226,0 +170750168113,227,0 +170750168161,227,0 +170750168210,228,0 +170750168260,228,0 +170750168307,228,0 +170750168357,228,0 +170750168406,227,0 +170750168456,221,0 +170750168505,221,0 +170750168553,223,0 +170750168601,223,0 +170750168651,224,0 +170750168701,226,0 +170750168749,225,0 +170750168797,226,0 +170750168844,228,0 +170750168892,227,0 +170750168940,228,0 +170750168988,227,0 +170750169036,228,0 +170750169086,227,0 +170750169135,225,0 +170750169183,229,0 +170750169231,228,0 +170750169281,227,0 +170750169330,222,0 +170750169378,221,0 +170750169426,223,0 +170750169474,223,0 +170750169524,224,0 +170750169572,226,0 +170750169621,225,0 +170750169669,226,0 +170750169719,226,0 +170750169768,227,0 +170750169816,227,0 +170750169866,226,0 +170750169914,229,0 +170750169962,227,0 +170750170011,228,0 +170750170059,228,0 +170750170109,227,0 +170750170157,227,0 +170750170206,227,0 +170750170254,217,0 +170750170302,218,0 +170750170350,220,0 +170750170398,220,0 +170750170446,221,0 +170750170496,222,0 +170750170544,223,0 +170750170592,222,0 +170750170639,225,0 +170750170687,224,0 +170750170735,225,0 +170750170783,225,0 +170750170831,227,0 +170750170879,227,0 +170750170929,229,0 +170750170977,228,0 +170750171025,227,0 +170750171073,228,0 +170750171122,227,0 +170750171172,227,0 +170750171220,228,0 +170750171269,228,0 +170750171317,226,0 +170750171365,226,0 +170750171415,227,0 +170750171464,227,0 +170750171512,226,0 +170750171560,222,0 +170750171608,220,0 +170750171656,222,0 +170750171706,222,0 +170750171755,223,0 +170750171803,223,0 +170750171851,224,0 +170750171901,225,0 +170750171949,226,0 +170750171997,226,0 +170750172044,226,0 +170750172092,227,0 +170750172140,227,0 +170750172188,227,0 +170750172236,230,0 +170750172286,228,0 +170750172335,228,0 +170750172385,227,0 +170750172434,218,0 +170750172482,216,0 +170750172530,218,0 +170750172580,219,0 +170750172629,220,0 +170750172677,221,0 +170750172725,221,0 +170750172773,223,0 +170750172821,223,0 +170750172869,225,0 +170750172917,224,0 +170750172965,226,0 +170750173013,227,0 +170750173061,227,0 +170750173109,226,0 +170750173156,227,0 +170750173204,228,0 +170750173252,228,0 +170750173300,226,0 +170750173348,218,0 +170750173396,217,0 +170750173444,218,0 +170750173491,219,0 +170750173539,221,0 +170750173587,221,0 +170750173635,223,0 +170750173685,223,0 +170750173732,224,0 +170750173780,225,0 +170750173830,226,0 +170750173878,227,0 +170750173926,228,0 +170750173974,227,0 +170750174021,228,0 +170750174069,227,0 +170750174117,228,0 +170750174165,227,0 +170750174215,217,0 +170750174264,217,0 +170750174312,217,0 +170750174360,218,0 +170750174408,219,0 +170750174456,219,0 +170750174504,220,0 +170750174552,220,0 +170750174600,222,0 +170750174649,223,0 +170750174697,224,0 +170750174747,225,0 +170750174795,227,0 +170750174844,227,0 +170750174892,226,0 +170750174940,227,0 +170750174988,228,0 +170750175036,228,0 +170750175086,225,0 +170750175134,216,0 +170750175182,216,0 +170750175230,217,0 +170750175278,218,0 +170750175326,219,0 +170750175374,220,0 +170750175423,222,0 +170750175473,223,0 +170750175520,224,0 +170750175570,226,0 +170750175618,225,0 +170750175666,226,0 +170750175715,226,0 +170750175765,228,0 +170750175813,227,0 +170750175861,227,0 +170750175909,226,0 +170750175957,227,0 +170750176006,217,0 +170750176054,215,0 +170750176102,216,0 +170750176152,216,0 +170750176201,217,0 +170750176249,218,0 +170750176297,220,0 +170750176345,220,0 +170750176393,221,0 +170750176441,224,0 +170750176490,226,0 +170750176538,226,0 +170750176588,229,0 +170750176636,226,0 +170750176684,229,0 +170750176732,226,0 +170750176780,231,0 +170750176829,228,0 +170750176877,218,0 +170750176925,216,0 +170750176973,216,0 +170750177021,217,0 +170750177069,218,0 +170750177117,218,0 +170750177166,220,0 +170750177214,220,0 +170750177262,221,0 +170750177310,222,0 +170750177358,225,0 +170750177406,224,0 +170750177454,224,0 +170750177502,226,0 +170750177551,225,0 +170750177599,226,0 +170750177647,227,0 +170750177695,226,0 +170750177743,227,0 +170750177791,217,0 +170750177839,217,0 +170750177886,218,0 +170750177936,220,0 +170750177984,220,0 +170750178032,221,0 +170750178080,222,0 +170750178128,222,0 +170750178175,222,0 +170750178223,226,0 +170750178271,224,0 +170750178319,225,0 +170750178367,227,0 +170750178415,227,0 +170750178463,226,0 +170750178510,229,0 +170750178558,229,0 +170750178606,227,0 +170750178656,218,0 +170750178704,220,0 +170750178751,221,0 +170750178801,221,0 +170750178849,222,0 +170750178897,224,0 +170750178945,224,0 +170750178994,225,0 +170750179042,225,0 +170750179092,226,0 +170750179140,226,0 +170750179188,229,0 +170750179236,228,0 +170750179283,228,0 +170750179333,228,0 +170750179381,223,0 +170750179429,226,0 +170750179477,227,0 +170750179525,227,0 +170750179573,222,0 +170750179622,222,0 +170750179670,223,0 +170750179718,223,0 +170750179768,224,0 +170750179817,225,0 +170750179865,227,0 +170750179915,226,0 +170750179963,229,0 +170750180010,228,0 +170750180058,228,0 +170750180106,228,0 +170750180154,229,0 +170750180202,228,0 +170750180250,229,0 +170750180300,228,0 +170750180349,227,0 +170750180397,228,0 +170750180445,221,0 +170750180495,222,0 +170750180543,222,0 +170750180591,223,0 +170750180640,224,0 +170750180688,225,0 +170750180736,225,0 +170750180784,226,0 +170750180833,226,0 +170750180881,226,0 +170750180929,227,0 +170750180977,228,0 +170750181027,228,0 +170750181076,228,0 +170750181124,228,0 +170750181172,228,0 +170750181222,225,0 +170750181271,227,0 +170750181321,224,0 +170750181370,220,0 +170750181418,222,0 +170750181466,222,0 +170750181514,223,0 +170750181562,224,0 +170750181610,223,0 +170750181658,224,0 +170750181708,225,0 +170750181757,227,0 +170750181805,228,0 +170750181854,228,0 +170750181903,227,0 +170750181952,227,0 +170750182000,228,0 +170750182048,229,0 +170750182096,229,0 +170750182144,227,0 +170750182192,227,0 +170750182240,220,0 +170750182288,219,0 +170750182336,220,0 +170750182385,221,0 +170750182435,222,0 +170750182482,223,0 +170750182530,223,0 +170750182580,223,0 +170750182628,225,0 +170750182677,226,0 +170750182727,227,0 +170750182775,228,0 +170750182823,229,0 +170750182871,229,0 +170750182918,229,0 +170750182968,230,0 +170750183016,228,0 +170750183064,228,0 +170750183112,220,0 +170750183160,221,0 +170750183208,222,0 +170750183256,223,0 +170750183303,224,0 +170750183351,224,0 +170750183399,224,0 +170750183447,226,0 +170750183497,227,0 +170750183545,227,0 +170750183593,229,0 +170750183642,228,0 +170750183692,229,0 +170750183739,228,0 +170750183787,229,0 +170750183837,229,0 +170750183885,228,0 +170750183934,228,0 +170750183982,227,0 +170750184032,219,0 +170750184081,221,0 +170750184129,223,0 +170750184179,223,0 +170750184227,224,0 +170750184275,223,0 +170750184323,225,0 +170750184371,226,0 +170750184419,227,0 +170750184467,227,0 +170750184516,227,0 +170750184564,227,0 +170750184614,230,0 +170750184662,229,0 +170750184710,229,0 +170750184759,228,0 +170750184807,228,0 +170750184855,228,0 +170750184904,220,0 +170750184954,220,0 +170750185002,220,0 +170750185050,221,0 +170750185099,224,0 +170750185147,223,0 +170750185195,224,0 +170750185245,224,0 +170750185293,225,0 +170750185341,227,0 +170750185389,227,0 +170750185437,226,0 +170750185485,228,0 +170750185533,227,0 +170750185582,227,0 +170750185630,228,0 +170750185678,227,0 +170750185727,228,0 +170750185775,217,0 +170750185823,217,0 +170750185873,218,0 +170750185921,220,0 +170750185970,221,0 +170750186018,222,0 +170750186066,221,0 +170750186116,223,0 +170750186164,224,0 +170750186211,225,0 +170750186259,228,0 +170750186307,225,0 +170750186355,224,0 +170750186403,227,0 +170750186451,227,0 +170750186499,228,0 +170750186547,228,0 +170750186595,228,0 +170750186645,228,0 +170750186694,217,0 +170750186742,216,0 +170750186790,219,0 +170750186838,219,0 +170750186886,217,0 +170750186935,220,0 +170750186983,222,0 +170750187031,222,0 +170750187079,223,0 +170750187127,226,0 +170750187177,225,0 +170750187226,227,0 +170750187274,229,0 +170750187324,227,0 +170750187372,227,0 +170750187421,228,0 +170750187471,230,0 +170750187519,228,0 +170750187566,218,0 +170750187616,217,0 +170750187664,218,0 +170750187712,218,0 +170750187760,220,0 +170750187809,220,0 +170750187859,223,0 +170750187907,224,0 +170750187955,226,0 +170750188003,225,0 +170750188052,226,0 +170750188100,227,0 +170750188148,226,0 +170750188196,229,0 +170750188244,227,0 +170750188292,228,0 +170750188341,228,0 +170750188389,227,0 +170750188439,226,0 +170750188488,218,0 +170750188536,218,0 +170750188586,220,0 +170750188635,221,0 +170750188683,221,0 +170750188733,221,0 +170750188781,223,0 +170750188829,225,0 +170750188877,227,0 +170750188925,225,0 +170750188972,226,0 +170750189020,227,0 +170750189068,228,0 +170750189116,227,0 +170750189164,227,0 +170750189214,227,0 +170750189263,228,0 +170750189311,226,0 +170750189359,220,0 +170750189407,220,0 +170750189457,221,0 +170750189505,223,0 +170750189552,223,0 +170750189600,223,0 +170750189648,224,0 +170750189696,229,0 +170750189744,226,0 +170750189792,228,0 +170750189841,227,0 +170750189889,229,0 +170750189939,227,0 +170750189987,227,0 +170750190036,229,0 +170750190084,228,0 +170750190132,227,0 +170750190182,228,0 +170750190230,220,0 +170750190279,221,0 +170750190327,222,0 +170750190375,222,0 +170750190425,224,0 +170750190474,224,0 +170750190522,225,0 +170750190570,225,0 +170750190618,226,0 +170750190666,226,0 +170750190714,227,0 +170750190762,228,0 +170750190811,225,0 +170750190859,228,0 +170750190907,226,0 +170750190955,227,0 +170750191005,226,0 +170750191053,227,0 +170750191101,226,0 +170750191149,222,0 +170750191198,222,0 +170750191248,224,0 +170750191296,224,0 +170750191344,224,0 +170750191391,225,0 +170750191439,226,0 +170750191487,225,0 +170750191535,226,0 +170750191585,228,0 +170750191634,228,0 +170750191682,229,0 +170750191732,229,0 +170750191780,230,0 +170750191829,229,0 +170750191877,228,0 +170750191927,227,0 +170750191976,227,0 +170750192026,220,0 +170750192075,221,0 +170750192123,222,0 +170750192171,222,0 +170750192221,223,0 +170750192270,225,0 +170750192318,224,0 +170750192366,226,0 +170750192414,226,0 +170750192462,227,0 +170750192512,228,0 +170750192560,228,0 +170750192608,228,0 +170750192657,227,0 +170750192707,228,0 +170750192754,227,0 +170750192802,227,0 +170750192850,227,0 +170750192900,218,0 +170750192948,216,0 +170750192996,217,0 +170750193044,219,0 +170750193092,220,0 +170750193140,221,0 +170750193189,222,0 +170750193239,223,0 +170750193287,225,0 +170750193335,224,0 +170750193383,225,0 +170750193431,226,0 +170750193478,226,0 +170750193526,228,0 +170750193574,227,0 +170750193622,227,0 +170750193670,227,0 +170750193718,227,0 +170750193766,226,0 +170750193814,216,0 +170750193864,215,0 +170750193913,216,0 +170750193963,217,0 +170750194011,218,0 +170750194060,222,0 +170750194110,220,0 +170750194159,221,0 +170750194209,222,0 +170750194257,223,0 +170750194306,224,0 +170750194356,225,0 +170750194404,226,0 +170750194452,227,0 +170750194500,227,0 +170750194548,227,0 +170750194597,227,0 +170750194645,227,0 +170750194693,217,0 +170750194741,216,0 +170750194790,216,0 +170750194840,218,0 +170750194889,218,0 +170750194937,219,0 +170750194987,220,0 +170750195035,219,0 +170750195083,222,0 +170750195131,224,0 +170750195180,224,0 +170750195230,225,0 +170750195278,229,0 +170750195327,228,0 +170750195375,226,0 +170750195425,228,0 +170750195474,227,0 +170750195522,227,0 +170750195570,217,0 +170750195618,216,0 +170750195666,217,0 +170750195713,218,0 +170750195761,220,0 +170750195809,220,0 +170750195857,221,0 +170750195905,222,0 +170750195954,227,0 +170750196002,225,0 +170750196052,224,0 +170750196100,225,0 +170750196148,226,0 +170750196196,226,0 +170750196244,226,0 +170750196292,228,0 +170750196340,228,0 +170750196389,230,0 +170750196439,227,0 +170750196487,216,0 +170750196535,216,0 +170750196583,217,0 +170750196632,218,0 +170750196680,219,0 +170750196730,220,0 +170750196778,222,0 +170750196827,221,0 +170750196875,223,0 +170750196925,225,0 +170750196973,226,0 +170750197020,224,0 +170750197070,225,0 +170750197118,227,0 +170750197165,227,0 +170750197213,227,0 +170750197263,227,0 +170750197311,226,0 +170750197360,217,0 +170750197408,216,0 +170750197456,217,0 +170750197505,218,0 +170750197555,219,0 +170750197603,220,0 +170750197651,220,0 +170750197700,220,0 +170750197750,222,0 +170750197800,223,0 +170750197849,224,0 +170750197897,224,0 +170750197945,223,0 +170750197993,225,0 +170750198041,227,0 +170750198090,227,0 +170750198138,227,0 +170750198186,228,0 +170750198236,217,0 +170750198284,217,0 +170750198331,218,0 +170750198379,220,0 +170750198427,221,0 +170750198475,221,0 +170750198523,222,0 +170750198571,222,0 +170750198619,224,0 +170750198668,224,0 +170750198716,226,0 +170750198764,226,0 +170750198813,227,0 +170750198863,225,0 +170750198911,228,0 +170750198959,227,0 +170750199007,227,0 +170750199056,228,0 +170750199106,227,0 +170750199154,218,0 +170750199203,218,0 +170750199251,220,0 +170750199301,221,0 +170750199350,222,0 +170750199398,223,0 +170750199448,222,0 +170750199496,224,0 +170750199545,225,0 +170750199593,227,0 +170750199643,227,0 +170750199692,227,0 +170750199740,229,0 +170750199788,230,0 +170750199836,228,0 +170750199886,228,0 +170750199934,228,0 +170750199981,227,0 +170750200029,220,0 +170750200077,221,0 +170750200125,222,0 +170750200173,222,0 +170750200221,223,0 +170750200269,224,0 +170750200317,226,0 +170750200365,226,0 +170750200412,227,0 +170750200462,228,0 +170750200510,229,0 +170750200558,229,0 +170750200606,228,0 +170750200653,227,0 +170750200701,231,0 +170750200749,228,0 +170750200797,227,0 +170750200845,228,0 +170750200893,226,0 +170750200941,222,0 +170750200990,222,0 +170750201040,223,0 +170750201088,226,0 +170750201136,227,0 +170750201183,227,0 +170750201231,229,0 +170750201279,227,0 +170750201327,228,0 +170750201376,228,0 +170750201424,229,0 +170750201474,228,0 +170750201522,229,0 +170750201570,228,0 +170750201619,228,0 +170750201667,227,0 +170750201715,227,0 +170750201763,228,0 +170750201813,224,0 +170750201862,223,0 +170750201910,224,0 +170750201960,227,0 +170750202008,226,0 +170750202055,227,0 +170750202105,227,0 +170750202154,226,0 +170750202204,227,0 +170750202252,228,0 +170750202300,228,0 +170750202350,227,0 +170750202398,229,0 +170750202445,229,0 +170750202493,229,0 +170750202541,228,0 +170750202591,228,0 +170750202640,227,0 +170750202690,225,0 +170750202740,223,0 +170750202788,224,0 +170750202836,225,0 +170750202883,225,0 +170750202931,226,0 +170750202979,226,0 +170750203029,226,0 +170750203078,228,0 +170750203126,228,0 +170750203176,227,0 +170750203225,228,0 +170750203273,230,0 +170750203321,228,0 +170750203369,229,0 +170750203417,228,0 +170750203467,227,0 +170750203516,227,0 +170750203564,219,0 +170750203612,224,0 +170750203660,223,0 +170750203708,224,0 +170750203756,225,0 +170750203804,228,0 +170750203854,227,0 +170750203903,228,0 +170750203951,227,0 +170750204001,227,0 +170750204049,229,0 +170750204098,228,0 +170750204146,230,0 +170750204194,227,0 +170750204242,228,0 +170750204291,228,0 +170750204341,227,0 +170750204390,226,0 +170750204438,227,0 +170750204486,221,0 +170750204534,221,0 +170750204583,222,0 +170750204631,222,0 +170750204681,225,0 +170750204729,225,0 +170750204778,224,0 +170750204828,225,0 +170750204878,226,0 +170750204927,228,0 +170750204975,229,0 +170750205024,228,0 +170750205072,229,0 +170750205122,229,0 +170750205171,229,0 +170750205221,228,0 +170750205269,228,0 +170750205318,227,0 +170750205366,216,0 +170750205414,216,0 +170750205462,217,0 +170750205510,218,0 +170750205560,219,0 +170750205609,219,0 +170750205657,219,0 +170750205707,221,0 +170750205755,223,0 +170750205803,225,0 +170750205851,225,0 +170750205899,225,0 +170750205948,226,0 +170750205998,227,0 +170750206046,229,0 +170750206094,227,0 +170750206142,228,0 +170750206190,227,0 +170750206238,217,0 +170750206285,216,0 +170750206333,217,0 +170750206381,218,0 +170750206429,218,0 +170750206477,221,0 +170750206525,220,0 +170750206575,222,0 +170750206623,223,0 +170750206671,224,0 +170750206718,227,0 +170750206768,226,0 +170750206818,231,0 +170750206867,228,0 +170750206917,230,0 +170750206965,230,0 +170750207012,225,0 +170750207062,227,0 +170750207111,227,0 +170750207159,216,0 +170750207209,216,0 +170750207257,217,0 +170750207305,219,0 +170750207353,219,0 +170750207401,221,0 +170750207450,223,0 +170750207500,222,0 +170750207548,223,0 +170750207597,225,0 +170750207647,226,0 +170750207696,228,0 +170750207744,227,0 +170750207794,230,0 +170750207842,228,0 +170750207891,228,0 +170750207939,227,0 +170750207987,226,0 +170750208037,216,0 +170750208085,215,0 +170750208133,216,0 +170750208180,216,0 +170750208228,217,0 +170750208278,219,0 +170750208327,219,0 +170750208377,220,0 +170750208426,221,0 +170750208474,224,0 +170750208522,224,0 +170750208570,224,0 +170750208618,225,0 +170750208668,226,0 +170750208716,228,0 +170750208764,227,0 +170750208812,228,0 +170750208861,227,0 +170750208911,218,0 +170750208959,216,0 +170750209007,216,0 +170750209055,216,0 +170750209104,218,0 +170750209152,218,0 +170750209200,219,0 +170750209249,219,0 +170750209297,219,0 +170750209347,220,0 +170750209397,223,0 +170750209446,224,0 +170750209494,226,0 +170750209542,228,0 +170750209590,228,0 +170750209638,229,0 +170750209686,229,0 +170750209734,229,0 +170750209781,227,0 +170750209829,217,0 +170750209877,217,0 +170750209925,216,0 +170750209973,218,0 +170750210021,218,0 +170750210069,219,0 +170750210117,220,0 +170750210165,221,0 +170750210212,222,0 +170750210260,226,0 +170750210310,224,0 +170750210358,226,0 +170750210406,227,0 +170750210453,229,0 +170750210503,233,0 +170750210552,228,0 +170750210600,228,0 +170750210648,227,0 +170750210696,217,0 +170750210745,216,0 +170750210793,216,0 +170750210841,217,0 +170750210889,218,0 +170750210937,219,0 +170750210985,220,0 +170750211033,222,0 +170750211081,221,0 +170750211129,222,0 +170750211176,224,0 +170750211224,225,0 +170750211274,228,0 +170750211323,226,0 +170750211371,227,0 +170750211421,227,0 +170750211468,228,0 +170750211516,228,0 +170750211564,226,0 +170750211612,217,0 +170750211660,218,0 +170750211708,219,0 +170750211756,221,0 +170750211803,222,0 +170750211851,222,0 +170750211901,223,0 +170750211949,224,0 +170750211997,225,0 +170750212044,225,0 +170750212092,227,0 +170750212140,226,0 +170750212188,227,0 +170750212236,227,0 +170750212284,227,0 +170750212333,228,0 +170750212381,227,0 +170750212429,227,0 +170750212479,222,0 +170750212526,222,0 +170750212574,223,0 +170750212622,223,0 +170750212670,224,0 +170750212718,223,0 +170750212766,225,0 +170750212815,226,0 +170750212863,226,0 +170750212911,226,0 +170750212959,227,0 +170750213007,228,0 +170750213055,227,0 +170750213103,227,0 +170750213151,227,0 +170750213198,227,0 +170750213246,228,0 +170750213296,227,0 +170750213344,227,0 +170750213392,224,0 +170750213439,224,0 +170750213487,223,0 +170750213535,224,0 +170750213583,227,0 +170750213631,225,0 +170750213679,226,0 +170750213728,226,0 +170750213776,224,0 +170750213824,227,0 +170750213872,229,0 +170750213921,229,0 +170750213971,229,0 +170750214019,228,0 +170750214067,227,0 +170750214114,229,0 +170750214162,227,0 +170750214212,227,0 +170750214261,224,0 +170750214309,224,0 +170750214357,225,0 +170750214405,226,0 +170750214453,225,0 +170750214501,226,0 +170750214548,226,0 +170750214596,226,0 +170750214644,227,0 +170750214694,227,0 +170750214742,227,0 +170750214789,229,0 +170750214837,229,0 +170750214885,228,0 +170750214933,230,0 +170750214981,228,0 +170750215029,227,0 +170750215077,228,0 +170750215125,223,0 +170750215172,226,0 +170750215222,226,0 +170750215270,226,0 +170750215318,227,0 +170750215366,226,0 +170750215414,227,0 +170750215461,228,0 +170750215509,228,0 +170750215557,227,0 +170750215605,228,0 +170750215653,228,0 +170750215702,231,0 +170750215752,227,0 +170750215800,229,0 +170750215848,228,0 +170750215895,227,0 +170750215945,228,0 +170750215994,232,0 +170750216042,222,0 +170750216092,221,0 +170750216141,221,0 +170750216189,223,0 +170750216237,223,0 +170750216287,225,0 +170750216335,225,0 +170750216383,225,0 +170750216431,228,0 +170750216479,227,0 +170750216526,227,0 +170750216574,226,0 +170750216624,227,0 +170750216672,228,0 +170750216722,229,0 +170750216769,228,0 +170750216819,217,0 +170750216868,225,0 +170750216918,217,0 +170750216966,217,0 +170750217015,219,0 +170750217065,221,0 +170750217113,221,0 +170750217161,223,0 +170750217210,222,0 +170750217260,224,0 +170750217307,226,0 +170750217355,226,0 +170750217403,226,0 +170750217451,228,0 +170750217499,227,0 +170750217548,230,0 +170750217596,228,0 +170750217644,227,0 +170750217694,228,0 +170750217743,227,0 +170750217791,226,0 +170750217839,216,0 +170750217887,217,0 +170750217935,218,0 +170750217984,220,0 +170750218032,220,0 +170750218080,220,0 +170750218128,221,0 +170750218177,223,0 +170750218225,224,0 +170750218273,224,0 +170750218321,224,0 +170750218369,225,0 +170750218418,226,0 +170750218466,226,0 +170750218514,227,0 +170750218562,228,0 +170750218610,227,0 +170750218657,227,0 +170750218705,218,0 +170750218755,216,0 +170750218804,218,0 +170750218852,219,0 +170750218900,220,0 +170750218948,221,0 +170750218996,220,0 +170750219044,221,0 +170750219091,223,0 +170750219139,223,0 +170750219189,224,0 +170750219237,225,0 +170750219286,226,0 +170750219334,227,0 +170750219382,227,0 +170750219431,227,0 +170750219479,228,0 +170750219529,228,0 +170750219578,226,0 +170750219628,216,0 +170750219675,216,0 +170750219723,218,0 +170750219771,220,0 +170750219819,219,0 +170750219867,220,0 +170750219915,222,0 +170750219963,222,0 +170750220011,222,0 +170750220059,225,0 +170750220106,226,0 +170750220154,225,0 +170750220202,228,0 +170750220250,230,0 +170750220298,227,0 +170750220346,228,0 +170750220394,228,0 +170750220442,227,0 +170750220489,218,0 +170750220537,217,0 +170750220585,218,0 +170750220633,219,0 +170750220683,219,0 +170750220730,220,0 +170750220778,221,0 +170750220826,221,0 +170750220874,222,0 +170750220922,223,0 +170750220970,225,0 +170750221019,225,0 +170750221067,228,0 +170750221115,233,0 +170750221164,227,0 +170750221212,228,0 +170750221260,228,0 +170750221308,228,0 +170750221356,224,0 +170750221404,216,0 +170750221453,217,0 +170750221501,217,0 +170750221549,221,0 +170750221597,221,0 +170750221645,220,0 +170750221694,221,0 +170750221742,223,0 +170750221790,223,0 +170750221840,226,0 +170750221888,226,0 +170750221935,226,0 +170750221983,228,0 +170750222031,227,0 +170750222079,227,0 +170750222127,232,0 +170750222175,228,0 +170750222223,228,0 +170750222270,218,0 +170750222318,217,0 +170750222366,219,0 +170750222414,220,0 +170750222462,221,0 +170750222511,221,0 +170750222559,222,0 +170750222607,223,0 +170750222657,226,0 +170750222707,225,0 +170750222756,226,0 +170750222804,227,0 +170750222853,227,0 +170750222901,227,0 +170750222949,227,0 +170750222997,228,0 +170750223045,229,0 +170750223093,227,0 +170750223141,228,0 +170750223189,219,0 +170750223236,221,0 +170750223286,221,0 +170750223334,222,0 +170750223382,223,0 +170750223430,225,0 +170750223477,225,0 +170750223525,225,0 +170750223573,227,0 +170750223621,227,0 +170750223669,227,0 +170750223717,227,0 +170750223765,228,0 +170750223813,228,0 +170750223861,227,0 +170750223909,227,0 +170750223956,227,0 +170750224004,227,0 +170750224052,218,0 +170750224100,219,0 +170750224148,220,0 +170750224196,221,0 +170750224245,222,0 +170750224293,223,0 +170750224343,224,0 +170750224391,225,0 +170750224438,225,0 +170750224486,227,0 +170750224534,226,0 +170750224582,227,0 +170750224630,227,0 +170750224678,227,0 +170750224726,227,0 +170750224774,227,0 +170750224823,228,0 +170750224871,227,0 +170750224919,219,0 +170750224967,218,0 +170750225015,219,0 +170750225064,219,0 +170750225112,221,0 +170750225160,221,0 +170750225208,222,0 +170750225256,223,0 +170750225304,225,0 +170750225352,223,0 +170750225401,226,0 +170750225449,228,0 +170750225497,225,0 +170750225545,228,0 +170750225593,228,0 +170750225641,228,0 +170750225688,227,0 +170750225736,228,0 +170750225784,227,0 +170750225832,219,0 +170750225880,219,0 +170750225928,220,0 +170750225976,221,0 +170750226024,222,0 +170750226071,225,0 +170750226119,223,0 +170750226167,225,0 +170750226217,224,0 +170750226266,226,0 +170750226314,227,0 +170750226362,228,0 +170750226410,223,0 +170750226458,228,0 +170750226506,229,0 +170750226553,224,0 +170750226603,228,0 +170750226651,229,0 +170750226699,226,0 +170750226746,220,0 +170750226794,222,0 +170750226842,222,0 +170750226890,223,0 +170750226938,225,0 +170750226986,225,0 +170750227034,226,0 +170750227082,226,0 +170750227129,226,0 +170750227177,227,0 +170750227225,229,0 +170750227273,227,0 +170750227323,228,0 +170750227371,229,0 +170750227419,228,0 +170750227467,227,0 +170750227515,230,0 +170750227562,230,0 +170750227610,220,0 +170750227658,219,0 +170750227706,221,0 +170750227754,221,0 +170750227803,223,0 +170750227853,223,0 +170750227901,224,0 +170750227949,224,0 +170750227997,225,0 +170750228045,225,0 +170750228093,230,0 +170750228142,227,0 +170750228190,228,0 +170750228240,228,0 +170750228288,229,0 +170750228336,227,0 +170750228384,230,0 +170750228433,229,0 +170750228481,221,0 +170750228529,221,0 +170750228577,222,0 +170750228625,222,0 +170750228673,223,0 +170750228721,224,0 +170750228770,225,0 +170750228818,224,0 +170750228866,225,0 +170750228914,227,0 +170750228962,228,0 +170750229010,226,0 +170750229058,228,0 +170750229106,228,0 +170750229154,227,0 +170750229203,228,0 +170750229252,229,0 +170750229301,228,0 +170750229351,224,0 +170750229399,221,0 +170750229448,220,0 +170750229496,221,0 +170750229544,223,0 +170750229594,223,0 +170750229642,225,0 +170750229689,226,0 +170750229737,226,0 +170750229785,228,0 +170750229835,228,0 +170750229884,225,0 +170750229932,229,0 +170750229980,229,0 +170750230030,229,0 +170750230078,228,0 +170750230127,229,0 +170750230175,229,0 +170750230223,227,0 +170750230273,221,0 +170750230321,220,0 +170750230369,221,0 +170750230418,221,0 +170750230466,223,0 +170750230516,224,0 +170750230564,224,0 +170750230613,226,0 +170750230661,228,0 +170750230709,229,0 +170750230757,227,0 +170750230805,229,0 +170750230853,229,0 +170750230900,229,0 +170750230948,226,0 +170750230996,228,0 +170750231044,227,0 +170750231092,228,0 +170750231140,227,0 +170750231188,219,0 +170750231236,220,0 +170750231283,221,0 +170750231331,222,0 +170750231379,223,0 +170750231427,224,0 +170750231475,225,0 +170750231523,225,0 +170750231571,226,0 +170750231619,226,0 +170750231667,229,0 +170750231715,227,0 +170750231762,227,0 +170750231810,228,0 +170750231858,230,0 +170750231906,229,0 +170750231954,228,0 +170750232002,227,0 +170750232050,220,0 +170750232098,217,0 +170750232146,218,0 +170750232193,219,0 +170750232241,220,0 +170750232289,222,0 +170750232337,223,0 +170750232386,223,0 +170750232434,225,0 +170750232482,225,0 +170750232530,225,0 +170750232580,229,0 +170750232628,229,0 +170750232675,228,0 +170750232723,229,0 +170750232771,227,0 +170750232819,227,0 +170750232868,227,0 +170750232918,226,0 +170750232966,218,0 +170750233014,218,0 +170750233062,219,0 +170750233109,222,0 +170750233157,221,0 +170750233205,222,0 +170750233253,222,0 +170750233303,220,0 +170750233350,223,0 +170750233400,224,0 +170750233450,225,0 +170750233499,226,0 +170750233549,226,0 +170750233597,227,0 +170750233645,227,0 +170750233692,230,0 +170750233740,227,0 +170750233788,227,0 +170750233836,219,0 +170750233884,219,0 +170750233932,220,0 +170750233980,221,0 +170750234027,222,0 +170750234077,223,0 +170750234125,223,0 +170750234173,224,0 +170750234221,224,0 +170750234268,225,0 +170750234316,227,0 +170750234364,227,0 +170750234412,226,0 +170750234460,227,0 +170750234508,227,0 +170750234556,228,0 +170750234604,228,0 +170750234654,226,0 +170750234702,227,0 +170750234751,221,0 +170750234799,222,0 +170750234847,222,0 +170750234896,222,0 +170750234944,224,0 +170750234992,224,0 +170750235041,225,0 +170750235090,226,0 +170750235138,226,0 +170750235186,227,0 +170750235234,227,0 +170750235283,227,0 +170750235333,228,0 +170750235382,225,0 +170750235432,228,0 +170750235480,226,0 +170750235529,228,0 +170750235579,226,0 +170750235628,220,0 +170750235676,219,0 +170750235724,221,0 +170750235772,221,0 +170750235820,221,0 +170750235869,222,0 +170750235919,223,0 +170750235967,223,0 +170750236015,225,0 +170750236062,225,0 +170750236110,227,0 +170750236158,228,0 +170750236206,228,0 +170750236254,228,0 +170750236302,227,0 +170750236350,227,0 +170750236398,227,0 +170750236446,228,0 +170750236494,225,0 +170750236541,217,0 +170750236591,218,0 +170750236639,219,0 +170750236687,221,0 +170750236734,221,0 +170750236782,222,0 +170750236830,225,0 +170750236878,226,0 +170750236926,225,0 +170750236974,226,0 +170750237022,228,0 +170750237070,227,0 +170750237118,227,0 +170750237166,228,0 +170750237215,231,0 +170750237265,226,0 +170750237313,228,0 +170750237361,227,0 +170750237409,218,0 +170750237457,218,0 +170750237504,219,0 +170750237552,220,0 +170750237600,220,0 +170750237648,221,0 +170750237696,223,0 +170750237744,225,0 +170750237792,224,0 +170750237840,226,0 +170750237888,227,0 +170750237936,227,0 +170750237986,228,0 +170750238034,228,0 +170750238083,228,0 +170750238131,228,0 +170750238181,228,0 +170750238229,227,0 +170750238278,217,0 +170750238326,216,0 +170750238374,216,0 +170750238422,218,0 +170750238470,219,0 +170750238518,219,0 +170750238567,220,0 +170750238615,221,0 +170750238665,222,0 +170750238713,223,0 +170750238762,226,0 +170750238810,225,0 +170750238858,225,0 +170750238906,225,0 +170750238956,228,0 +170750239004,228,0 +170750239052,227,0 +170750239101,227,0 +170750239151,227,0 +170750239199,217,0 +170750239248,217,0 +170750239296,219,0 +170750239346,220,0 +170750239393,221,0 +170750239441,222,0 +170750239489,224,0 +170750239539,222,0 +170750239588,223,0 +170750239636,223,0 +170750239684,225,0 +170750239732,225,0 +170750239780,226,0 +170750239828,228,0 +170750239878,226,0 +170750239926,228,0 +170750239975,227,0 +170750240023,227,0 +170750240071,219,0 +170750240121,217,0 +170750240170,218,0 +170750240218,220,0 +170750240268,221,0 +170750240317,222,0 +170750240365,222,0 +170750240413,222,0 +170750240461,224,0 +170750240511,226,0 +170750240558,225,0 +170750240606,226,0 +170750240656,227,0 +170750240704,228,0 +170750240753,227,0 +170750240803,227,0 +170750240851,227,0 +170750240900,228,0 +170750240948,217,0 +170750240998,217,0 +170750241047,218,0 +170750241095,219,0 +170750241143,219,0 +170750241191,220,0 +170750241239,224,0 +170750241287,223,0 +170750241337,223,0 +170750241385,224,0 +170750241433,225,0 +170750241481,224,0 +170750241530,227,0 +170750241578,227,0 +170750241628,227,0 +170750241677,228,0 +170750241727,227,0 +170750241775,229,0 +170750241823,228,0 +170750241871,217,0 +170750241918,217,0 +170750241966,218,0 +170750242014,220,0 +170750242062,220,0 +170750242110,220,0 +170750242158,221,0 +170750242206,221,0 +170750242256,222,0 +170750242305,222,0 +170750242355,224,0 +170750242404,225,0 +170750242454,226,0 +170750242502,227,0 +170750242550,228,0 +170750242598,227,0 +170750242647,230,0 +170750242695,228,0 +170750242745,219,0 +170750242793,217,0 +170750242841,219,0 +170750242888,220,0 +170750242938,221,0 +170750242986,221,0 +170750243034,223,0 +170750243083,222,0 +170750243133,223,0 +170750243181,224,0 +170750243230,226,0 +170750243278,229,0 +170750243326,228,0 +170750243376,226,0 +170750243425,230,0 +170750243475,230,0 +170750243523,227,0 +170750243572,228,0 +170750243622,218,0 +170750243670,219,0 +170750243718,219,0 +170750243766,219,0 +170750243813,221,0 +170750243863,222,0 +170750243911,223,0 +170750243959,224,0 +170750244007,225,0 +170750244056,227,0 +170750244106,226,0 +170750244155,228,0 +170750244203,229,0 +170750244251,230,0 +170750244299,228,0 +170750244347,228,0 +170750244397,228,0 +170750244445,228,0 +170750244493,225,0 +170750244541,222,0 +170750244590,222,0 +170750244638,223,0 +170750244686,225,0 +170750244736,227,0 +170750244784,227,0 +170750244833,225,0 +170750244883,227,0 +170750244932,228,0 +170750244980,231,0 +170750245030,228,0 +170750245079,231,0 +170750245127,229,0 +170750245175,229,0 +170750245223,229,0 +170750245271,230,0 +170750245319,227,0 +170750245367,227,0 +170750245417,224,0 +170750245465,223,0 +170750245513,224,0 +170750245560,226,0 +170750245610,224,0 +170750245658,227,0 +170750245708,227,0 +170750245755,226,0 +170750245803,227,0 +170750245853,227,0 +170750245901,228,0 +170750245950,227,0 +170750246000,230,0 +170750246050,230,0 +170750246099,228,0 +170750246149,228,0 +170750246197,227,0 +170750246246,227,0 +170750246294,223,0 +170750246342,223,0 +170750246390,223,0 +170750246438,225,0 +170750246486,225,0 +170750246534,225,0 +170750246582,226,0 +170750246631,227,0 +170750246679,228,0 +170750246727,227,0 +170750246777,229,0 +170750246825,228,0 +170750246874,227,0 +170750246924,228,0 +170750246972,226,0 +170750247020,229,0 +170750247068,229,0 +170750247115,227,0 +170750247165,226,0 +170750247215,222,0 +170750247264,223,0 +170750247314,225,0 +170750247362,224,0 +170750247411,224,0 +170750247461,225,0 +170750247509,224,0 +170750247558,226,0 +170750247608,227,0 +170750247656,227,0 +170750247705,226,0 +170750247755,228,0 +170750247803,228,0 +170750247852,228,0 +170750247902,228,0 +170750247951,228,0 +170750248001,228,0 +170750248050,226,0 +170750248098,223,0 +170750248146,224,0 +170750248195,223,0 +170750248243,225,0 +170750248291,225,0 +170750248339,226,0 +170750248389,228,0 +170750248437,227,0 +170750248484,227,0 +170750248532,227,0 +170750248580,229,0 +170750248628,228,0 +170750248677,228,0 +170750248725,229,0 +170750248775,228,0 +170750248823,229,0 +170750248871,228,0 +170750248919,228,0 +170750248967,222,0 +170750249016,221,0 +170750249064,222,0 +170750249113,223,0 +170750249161,224,0 +170750249209,223,0 +170750249257,224,0 +170750249305,225,0 +170750249353,227,0 +170750249401,226,0 +170750249450,228,0 +170750249498,228,0 +170750249548,228,0 +170750249597,229,0 +170750249645,228,0 +170750249693,228,0 +170750249741,228,0 +170750249789,227,0 +170750249837,218,0 +170750249887,216,0 +170750249934,218,0 +170750249982,218,0 +170750250032,220,0 +170750250080,220,0 +170750250129,221,0 +170750250177,223,0 +170750250225,223,0 +170750250273,224,0 +170750250321,225,0 +170750250369,227,0 +170750250417,226,0 +170750250466,227,0 +170750250516,231,0 +170750250564,227,0 +170750250613,228,0 +170750250663,229,0 +170750250711,227,0 +170750250760,216,0 +170750250808,216,0 +170750250856,217,0 +170750250904,219,0 +170750250952,219,0 +170750251000,219,0 +170750251048,221,0 +170750251096,222,0 +170750251144,224,0 +170750251192,225,0 +170750251240,226,0 +170750251289,227,0 +170750251337,228,0 +170750251385,229,0 +170750251433,227,0 +170750251481,228,0 +170750251528,228,0 +170750251576,228,0 +170750251624,218,0 +170750251672,215,0 +170750251720,217,0 +170750251770,217,0 +170750251818,219,0 +170750251867,219,0 +170750251915,221,0 +170750251965,221,0 +170750252012,222,0 +170750252062,223,0 +170750252111,224,0 +170750252161,228,0 +170750252209,226,0 +170750252257,227,0 +170750252305,227,0 +170750252353,228,0 +170750252401,228,0 +170750252449,228,0 +170750252498,227,0 +170750252546,216,0 +170750252596,216,0 +170750252644,217,0 +170750252692,218,0 +170750252741,219,0 +170750252789,220,0 +170750252837,221,0 +170750252885,224,0 +170750252933,223,0 +170750252983,224,0 +170750253030,227,0 +170750253080,225,0 +170750253128,227,0 +170750253177,227,0 +170750253227,227,0 +170750253277,227,0 +170750253326,227,0 +170750253374,227,0 +170750253422,216,0 +170750253470,215,0 +170750253517,216,0 +170750253565,216,0 +170750253613,218,0 +170750253663,219,0 +170750253711,220,0 +170750253760,220,0 +170750253808,222,0 +170750253856,223,0 +170750253906,224,0 +170750253954,225,0 +170750254002,224,0 +170750254050,227,0 +170750254099,227,0 +170750254149,228,0 +170750254197,229,0 +170750254246,228,0 +170750254294,223,0 +170750254342,216,0 +170750254392,217,0 +170750254440,217,0 +170750254489,218,0 +170750254537,218,0 +170750254585,218,0 +170750254633,220,0 +170750254681,220,0 +170750254731,221,0 +170750254779,223,0 +170750254826,225,0 +170750254874,226,0 +170750254922,225,0 +170750254970,227,0 +170750255018,227,0 +170750255066,228,0 +170750255114,227,0 +170750255162,228,0 +170750255209,218,0 +170750255257,218,0 +170750255307,219,0 +170750255355,221,0 +170750255403,222,0 +170750255451,223,0 +170750255498,222,0 +170750255548,224,0 +170750255596,224,0 +170750255644,225,0 +170750255692,228,0 +170750255740,227,0 +170750255788,227,0 +170750255837,228,0 +170750255885,231,0 +170750255933,228,0 +170750255981,228,0 +170750256028,228,0 +170750256076,220,0 +170750256124,221,0 +170750256172,221,0 +170750256220,222,0 +170750256268,223,0 +170750256316,223,0 +170750256364,224,0 +170750256411,226,0 +170750256459,227,0 +170750256507,227,0 +170750256555,228,0 +170750256603,228,0 +170750256651,227,0 +170750256700,228,0 +170750256750,228,0 +170750256798,229,0 +170750256846,225,0 +170750256893,228,0 +170750256941,227,0 +170750256989,222,0 +170750257037,222,0 +170750257085,223,0 +170750257133,225,0 +170750257181,233,0 +170750257228,226,0 +170750257278,227,0 +170750257326,227,0 +170750257374,227,0 +170750257422,227,0 +170750257471,226,0 +170750257521,228,0 +170750257568,228,0 +170750257616,227,0 +170750257664,229,0 +170750257712,228,0 +170750257760,227,0 +170750257808,228,0 +170750257856,221,0 +170750257904,221,0 +170750257951,222,0 +170750257999,223,0 +170750258049,224,0 +170750258098,224,0 +170750258146,226,0 +170750258194,225,0 +170750258242,227,0 +170750258291,226,0 +170750258340,227,0 +170750258388,228,0 +170750258436,228,0 +170750258484,228,0 +170750258532,227,0 +170750258579,231,0 +170750258627,228,0 +170750258675,226,0 +170750258723,226,0 +170750258771,222,0 +170750258819,222,0 +170750258867,223,0 +170750258915,224,0 +170750258962,226,0 +170750259010,226,0 +170750259060,225,0 +170750259108,226,0 +170750259156,227,0 +170750259205,227,0 +170750259255,227,0 +170750259303,227,0 +170750259351,227,0 +170750259400,228,0 +170750259450,228,0 +170750259498,228,0 +170750259547,228,0 +170750259595,226,0 +170750259643,223,0 +170750259691,225,0 +170750259739,225,0 +170750259787,227,0 +170750259836,225,0 +170750259886,226,0 +170750259934,227,0 +170750259982,228,0 +170750260030,227,0 +170750260079,227,0 +170750260127,228,0 +170750260177,228,0 +170750260226,227,0 +170750260276,228,0 +170750260324,229,0 +170750260372,228,0 +170750260420,227,0 +170750260468,228,0 +170750260516,226,0 +170750260565,220,0 +170750260613,221,0 +170750260661,221,0 +170750260710,222,0 +170750260758,223,0 +170750260806,224,0 +170750260854,225,0 +170750260902,225,0 +170750260950,225,0 +170750260998,228,0 +170750261047,229,0 +170750261095,228,0 +170750261145,228,0 +170750261194,228,0 +170750261242,228,0 +170750261290,228,0 +170750261338,229,0 +170750261385,227,0 +170750261433,218,0 +170750261481,217,0 +170750261529,218,0 +170750261577,219,0 +170750261626,220,0 +170750261676,221,0 +170750261724,222,0 +170750261774,223,0 +170750261822,224,0 +170750261869,224,0 +170750261917,225,0 +170750261967,226,0 +170750262015,226,0 +170750262064,227,0 +170750262112,227,0 +170750262160,227,0 +170750262208,228,0 +170750262256,228,0 +170750262304,224,0 +170750262352,217,0 +170750262402,217,0 +170750262451,219,0 +170750262499,220,0 +170750262549,221,0 +170750262598,222,0 +170750262648,222,0 +170750262696,223,0 +170750262744,224,0 +170750262792,225,0 +170750262839,227,0 +170750262889,227,0 +170750262937,227,0 +170750262985,227,0 +170750263033,227,0 +170750263081,227,0 +170750263130,227,0 +170750263178,228,0 +170750263228,218,0 +170750263276,219,0 +170750263325,219,0 +170750263375,220,0 +170750263424,223,0 +170750263472,223,0 +170750263522,224,0 +170750263570,227,0 +170750263617,227,0 +170750263665,227,0 +170750263713,227,0 +170750263761,227,0 +170750263809,228,0 +170750263857,227,0 +170750263905,227,0 +170750263953,228,0 +170750264001,228,0 +170750264049,227,0 +170750264096,218,0 +170750264144,217,0 +170750264192,217,0 +170750264240,219,0 +170750264288,220,0 +170750264336,221,0 +170750264384,221,0 +170750264432,222,0 +170750264479,227,0 +170750264527,224,0 +170750264575,226,0 +170750264623,226,0 +170750264671,228,0 +170750264719,228,0 +170750264769,227,0 +170750264817,228,0 +170750264866,227,0 +170750264914,228,0 +170750264962,225,0 +170750265011,216,0 +170750265059,217,0 +170750265107,220,0 +170750265155,220,0 +170750265205,221,0 +170750265253,222,0 +170750265302,222,0 +170750265350,225,0 +170750265398,224,0 +170750265446,226,0 +170750265494,226,0 +170750265544,227,0 +170750265593,227,0 +170750265643,227,0 +170750265692,227,0 +170750265740,227,0 +170750265788,228,0 +170750265836,227,0 +170750265884,218,0 +170750265933,218,0 +170750265983,219,0 +170750266031,221,0 +170750266079,221,0 +170750266127,222,0 +170750266175,223,0 +170750266223,222,0 +170750266272,224,0 +170750266322,227,0 +170750266370,226,0 +170750266418,229,0 +170750266466,228,0 +170750266513,229,0 +170750266561,228,0 +170750266609,231,0 +170750266659,227,0 +170750266706,227,0 +170750266754,220,0 +170750266802,220,0 +170750266852,220,0 +170750266900,222,0 +170750266947,223,0 +170750266995,222,0 +170750267043,223,0 +170750267091,224,0 +170750267139,225,0 +170750267187,227,0 +170750267236,227,0 +170750267284,229,0 +170750267332,231,0 +170750267382,228,0 +170750267431,230,0 +170750267479,229,0 +170750267527,232,0 +170750267575,227,0 +170750267625,227,0 +170750267673,217,0 +170750267721,216,0 +170750267768,217,0 +170750267816,219,0 +170750267864,220,0 +170750267912,221,0 +170750267960,222,0 +170750268008,223,0 +170750268056,224,0 +170750268104,226,0 +170750268152,226,0 +170750268199,229,0 +170750268247,227,0 +170750268295,226,0 +170750268343,227,0 +170750268391,228,0 +170750268440,228,0 +170750268488,228,0 +170750268536,218,0 +170750268584,218,0 +170750268633,219,0 +170750268683,220,0 +170750268732,221,0 +170750268780,221,0 +170750268830,221,0 +170750268877,224,0 +170750268925,221,0 +170750268973,224,0 +170750269021,225,0 +170750269069,226,0 +170750269117,227,0 +170750269165,228,0 +170750269213,227,0 +170750269262,226,0 +170750269310,228,0 +170750269359,225,0 +170750269407,227,0 +170750269455,219,0 +170750269503,219,0 +170750269551,220,0 +170750269599,221,0 +170750269647,221,0 +170750269695,222,0 +170750269742,223,0 +170750269790,223,0 +170750269838,224,0 +170750269886,224,0 +170750269934,227,0 +170750269982,225,0 +170750270030,225,0 +170750270078,226,0 +170750270126,227,0 +170750270173,227,0 +170750270221,227,0 +170750270269,228,0 +170750270319,219,0 +170750270367,219,0 +170750270414,221,0 +170750270462,221,0 +170750270510,223,0 +170750270558,223,0 +170750270606,224,0 +170750270654,224,0 +170750270702,226,0 +170750270749,226,0 +170750270799,227,0 +170750270848,228,0 +170750270898,229,0 +170750270946,229,0 +170750270994,231,0 +170750271041,228,0 +170750271089,228,0 +170750271137,227,0 +170750271187,226,0 +170750271236,219,0 +170750271284,219,0 +170750271332,220,0 +170750271380,222,0 +170750271428,222,0 +170750271475,222,0 +170750271523,225,0 +170750271571,227,0 +170750271619,226,0 +170750271667,226,0 +170750271715,228,0 +170750271763,229,0 +170750271811,220,0 +170750271858,226,0 +170750271906,227,0 +170750271954,228,0 +170750272004,228,0 +170750272051,229,0 +170750272099,220,0 +170750272147,220,0 +170750272195,221,0 +170750272243,221,0 +170750272291,222,0 +170750272339,225,0 +170750272387,224,0 +170750272435,225,0 +170750272482,225,0 +170750272530,226,0 +170750272578,227,0 +170750272626,228,0 +170750272674,228,0 +170750272722,228,0 +170750272770,228,0 +170750272817,228,0 +170750272865,227,0 +170750272913,228,0 +170750272961,227,0 +170750273009,224,0 +170750273057,222,0 +170750273105,222,0 +170750273153,224,0 +170750273201,223,0 +170750273249,224,0 +170750273298,226,0 +170750273346,227,0 +170750273396,226,0 +170750273445,227,0 +170750273493,227,0 +170750273543,228,0 +170750273592,227,0 +170750273640,228,0 +170750273688,229,0 +170750273737,228,0 +170750273787,228,0 +170750273835,226,0 +170750273883,221,0 +170750273931,220,0 +170750273979,221,0 +170750274027,222,0 +170750274075,223,0 +170750274124,225,0 +170750274174,227,0 +170750274223,227,0 +170750274273,225,0 +170750274321,227,0 +170750274370,230,0 +170750274418,230,0 +170750274466,228,0 +170750274514,228,0 +170750274563,229,0 +170750274613,228,0 +170750274661,228,0 +170750274710,229,0 +170750274758,224,0 +170750274808,219,0 +170750274857,221,0 +170750274905,220,0 +170750274955,222,0 +170750275004,225,0 +170750275052,224,0 +170750275100,225,0 +170750275148,225,0 +170750275198,227,0 +170750275246,227,0 +170750275295,226,0 +170750275345,223,0 +170750275394,228,0 +170750275442,228,0 +170750275492,227,0 +170750275541,229,0 +170750275591,228,0 +170750275639,226,0 +170750275688,217,0 +170750275736,218,0 +170750275784,220,0 +170750275832,221,0 +170750275882,222,0 +170750275930,223,0 +170750275979,225,0 +170750276027,225,0 +170750276075,227,0 +170750276123,227,0 +170750276171,228,0 +170750276219,228,0 +170750276267,228,0 +170750276315,227,0 +170750276363,228,0 +170750276411,227,0 +170750276459,228,0 +170750276507,227,0 +170750276555,218,0 +170750276602,218,0 +170750276650,219,0 +170750276698,221,0 +170750276746,221,0 +170750276796,221,0 +170750276844,223,0 +170750276892,224,0 +170750276940,225,0 +170750276988,226,0 +170750277036,227,0 +170750277085,228,0 +170750277135,236,0 +170750277184,229,0 +170750277234,227,0 +170750277282,228,0 +170750277331,227,0 +170750277381,227,0 +170750277430,220,0 +170750277478,220,0 +170750277528,221,0 +170750277577,222,0 +170750277627,224,0 +170750277675,224,0 +170750277723,222,0 +170750277771,226,0 +170750277819,225,0 +170750277867,227,0 +170750277915,227,0 +170750277963,228,0 +170750278012,227,0 +170750278060,228,0 +170750278108,228,0 +170750278157,227,0 +170750278207,227,0 +170750278255,227,0 +170750278303,226,0 +170750278352,219,0 +170750278402,220,0 +170750278451,221,0 +170750278499,222,0 +170750278547,223,0 +170750278595,223,0 +170750278643,225,0 +170750278692,226,0 +170750278740,227,0 +170750278790,227,0 +170750278838,227,0 +170750278885,231,0 +170750278933,228,0 +170750278981,230,0 +170750279031,228,0 +170750279080,227,0 +170750279128,227,0 +170750279176,227,0 +170750279224,218,0 +170750279272,217,0 +170750279320,219,0 +170750279368,220,0 +170750279416,221,0 +170750279465,222,0 +170750279513,222,0 +170750279561,222,0 +170750279609,224,0 +170750279659,223,0 +170750279707,225,0 +170750279755,229,0 +170750279803,226,0 +170750279852,227,0 +170750279900,224,0 +170750279948,226,0 +170750279998,229,0 +170750280047,227,0 +170750280095,217,0 +170750280143,218,0 +170750280191,219,0 +170750280241,220,0 +170750280288,221,0 +170750280336,221,0 +170750280386,223,0 +170750280434,223,0 +170750280482,225,0 +170750280531,224,0 +170750280579,225,0 +170750280627,226,0 +170750280675,227,0 +170750280723,227,0 +170750280771,228,0 +170750280819,227,0 +170750280866,228,0 +170750280914,227,0 +170750280962,226,0 +170750281010,217,0 +170750281058,217,0 +170750281106,219,0 +170750281154,220,0 +170750281202,220,0 +170750281251,222,0 +170750281299,221,0 +170750281349,223,0 +170750281397,225,0 +170750281446,226,0 +170750281494,225,0 +170750281542,226,0 +170750281590,226,0 +170750281638,227,0 +170750281686,228,0 +170750281734,228,0 +170750281783,227,0 +170750281831,226,0 +170750281879,219,0 +170750281927,218,0 +170750281977,219,0 +170750282026,220,0 +170750282074,222,0 +170750282122,223,0 +170750282170,223,0 +170750282218,224,0 +170750282267,225,0 +170750282317,226,0 +170750282366,227,0 +170750282414,226,0 +170750282462,229,0 +170750282510,228,0 +170750282560,227,0 +170750282608,227,0 +170750282656,227,0 +170750282704,227,0 +170750282752,219,0 +170750282801,217,0 +170750282849,217,0 +170750282899,219,0 +170750282948,223,0 +170750282998,221,0 +170750283046,223,0 +170750283094,223,0 +170750283143,224,0 +170750283193,225,0 +170750283241,225,0 +170750283289,228,0 +170750283337,228,0 +170750283385,228,0 +170750283433,227,0 +170750283482,228,0 +170750283532,227,0 +170750283580,227,0 +170750283628,227,0 +170750283676,217,0 +170750283724,217,0 +170750283773,219,0 +170750283823,219,0 +170750283871,220,0 +170750283919,220,0 +170750283968,222,0 +170750284016,223,0 +170750284064,222,0 +170750284112,223,0 +170750284161,226,0 +170750284211,225,0 +170750284259,226,0 +170750284307,226,0 +170750284355,227,0 +170750284403,227,0 +170750284451,227,0 +170750284500,227,0 +170750284548,218,0 +170750284596,217,0 +170750284644,219,0 +170750284692,220,0 +170750284740,220,0 +170750284788,222,0 +170750284836,221,0 +170750284885,223,0 +170750284933,223,0 +170750284981,226,0 +170750285029,228,0 +170750285077,225,0 +170750285125,226,0 +170750285173,227,0 +170750285221,228,0 +170750285270,228,0 +170750285318,227,0 +170750285366,227,0 +170750285415,226,0 +170750285463,217,0 +170750285511,218,0 +170750285559,219,0 +170750285607,219,0 +170750285655,221,0 +170750285703,221,0 +170750285751,223,0 +170750285799,224,0 +170750285849,224,0 +170750285897,226,0 +170750285945,226,0 +170750285993,227,0 +170750286040,229,0 +170750286088,229,0 +170750286138,229,0 +170750286187,228,0 +170750286235,228,0 +170750286283,227,0 +170750286331,219,0 +170750286379,218,0 +170750286427,218,0 +170750286475,219,0 +170750286522,222,0 +170750286570,222,0 +170750286618,222,0 +170750286666,223,0 +170750286714,223,0 +170750286764,223,0 +170750286811,226,0 +170750286861,227,0 +170750286911,227,0 +170750286960,227,0 +170750287010,228,0 +170750287058,227,0 +170750287106,227,0 +170750287155,227,0 +170750287203,219,0 +170750287251,218,0 +170750287299,219,0 +170750287349,221,0 +170750287397,223,0 +170750287445,225,0 +170750287494,224,0 +170750287542,224,0 +170750287590,226,0 +170750287638,226,0 +170750287686,226,0 +170750287734,228,0 +170750287783,228,0 +170750287831,228,0 +170750287879,227,0 +170750287927,229,0 +170750287975,227,0 +170750288023,227,0 +170750288071,227,0 +170750288119,222,0 +170750288169,224,0 +170750288217,225,0 +170750288264,224,0 +170750288314,225,0 +170750288364,225,0 +170750288413,229,0 +170750288461,228,0 +170750288509,226,0 +170750288557,227,0 +170750288605,228,0 +170750288653,230,0 +170750288702,228,0 +170750288752,228,0 +170750288801,227,0 +170750288851,227,0 +170750288899,228,0 +170750288947,227,0 +170750288995,225,0 +170750289043,225,0 +170750289090,224,0 +170750289138,226,0 +170750289186,226,0 +170750289234,228,0 +170750289282,227,0 +170750289330,229,0 +170750289378,227,0 +170750289426,228,0 +170750289473,227,0 +170750289521,228,0 +170750289571,228,0 +170750289619,229,0 +170750289667,228,0 +170750289715,228,0 +170750289764,227,0 +170750289812,226,0 +170750289860,226,0 +170750289908,222,0 +170750289955,222,0 +170750290003,222,0 +170750290051,224,0 +170750290099,224,0 +170750290147,225,0 +170750290195,226,0 +170750290243,229,0 +170750290291,228,0 +170750290339,228,0 +170750290386,228,0 +170750290434,228,0 +170750290482,228,0 +170750290530,228,0 +170750290578,229,0 +170750290626,228,0 +170750290674,226,0 +170750290722,228,0 +170750290771,220,0 +170750290819,219,0 +170750290867,219,0 +170750290916,222,0 +170750290964,222,0 +170750291012,223,0 +170750291062,224,0 +170750291110,225,0 +170750291157,225,0 +170750291207,227,0 +170750291255,227,0 +170750291303,229,0 +170750291350,228,0 +170750291398,229,0 +170750291446,228,0 +170750291494,227,0 +170750291542,228,0 +170750291590,227,0 +170750291638,226,0 +170750291686,218,0 +170750291735,219,0 +170750291783,220,0 +170750291833,221,0 +170750291881,222,0 +170750291930,222,0 +170750291980,224,0 +170750292029,223,0 +170750292079,225,0 +170750292128,225,0 +170750292176,227,0 +170750292224,227,0 +170750292272,228,0 +170750292320,228,0 +170750292368,228,0 +170750292416,228,0 +170750292464,228,0 +170750292513,227,0 +170750292563,218,0 +170750292612,219,0 +170750292662,221,0 +170750292711,222,0 +170750292761,222,0 +170750292809,224,0 +170750292858,225,0 +170750292906,225,0 +170750292956,226,0 +170750293005,226,0 +170750293053,228,0 +170750293103,226,0 +170750293152,230,0 +170750293202,230,0 +170750293250,228,0 +170750293299,228,0 +170750293347,227,0 +170750293395,227,0 +170750293443,220,0 +170750293493,220,0 +170750293542,221,0 +170750293590,221,0 +170750293638,223,0 +170750293686,223,0 +170750293734,225,0 +170750293784,226,0 +170750293831,225,0 +170750293879,226,0 +170750293929,226,0 +170750293977,228,0 +170750294025,227,0 +170750294074,229,0 +170750294122,228,0 +170750294171,228,0 +170750294219,228,0 +170750294267,228,0 +170750294315,217,0 +170750294364,217,0 +170750294412,219,0 +170750294460,219,0 +170750294510,222,0 +170750294558,224,0 +170750294606,222,0 +170750294654,225,0 +170750294702,225,0 +170750294749,227,0 +170750294797,226,0 +170750294845,229,0 +170750294893,229,0 +170750294941,230,0 +170750294989,230,0 +170750295038,230,0 +170750295086,228,0 +170750295134,228,0 +170750295184,228,0 +170750295233,216,0 +170750295281,216,0 +170750295329,217,0 +170750295379,219,0 +170750295428,219,0 +170750295478,220,0 +170750295527,221,0 +170750295575,222,0 +170750295623,223,0 +170750295671,225,0 +170750295719,225,0 +170750295769,226,0 +170750295817,227,0 +170750295864,227,0 +170750295912,229,0 +170750295960,225,0 +170750296008,229,0 +170750296058,225,0 +170750296106,217,0 +170750296154,217,0 +170750296202,218,0 +170750296251,219,0 +170750296301,219,0 +170750296349,220,0 +170750296396,222,0 +170750296446,222,0 +170750296494,224,0 +170750296544,225,0 +170750296591,224,0 +170750296639,226,0 +170750296687,225,0 +170750296735,227,0 +170750296783,226,0 +170750296831,228,0 +170750296879,227,0 +170750296927,229,0 +170750296977,225,0 +170750297026,216,0 +170750297074,217,0 +170750297124,219,0 +170750297172,219,0 +170750297220,221,0 +170750297269,221,0 +170750297317,222,0 +170750297366,223,0 +170750297414,224,0 +170750297462,226,0 +170750297512,226,0 +170750297560,228,0 +170750297608,230,0 +170750297656,229,0 +170750297704,228,0 +170750297752,228,0 +170750297799,228,0 +170750297847,227,0 +170750297897,217,0 +170750297947,218,0 +170750297996,218,0 +170750298044,221,0 +170750298092,220,0 +170750298142,223,0 +170750298191,226,0 +170750298239,226,0 +170750298287,226,0 +170750298335,225,0 +170750298383,227,0 +170750298432,227,0 +170750298482,227,0 +170750298531,228,0 +170750298581,228,0 +170750298630,228,0 +170750298678,228,0 +170750298726,226,0 +170750298774,217,0 +170750298822,218,0 +170750298872,219,0 +170750298921,220,0 +170750298971,222,0 +170750299018,222,0 +170750299066,222,0 +170750299114,224,0 +170750299162,225,0 +170750299211,225,0 +170750299259,226,0 +170750299307,227,0 +170750299355,228,0 +170750299403,227,0 +170750299451,228,0 +170750299499,228,0 +170750299547,227,0 +170750299595,227,0 +170750299642,217,0 +170750299690,219,0 +170750299738,220,0 +170750299788,221,0 +170750299836,222,0 +170750299884,222,0 +170750299931,224,0 +170750299981,224,0 +170750300030,224,0 +170750300080,225,0 +170750300128,226,0 +170750300176,226,0 +170750300224,227,0 +170750300272,227,0 +170750300320,227,0 +170750300368,227,0 +170750300416,228,0 +170750300464,227,0 +170750300512,226,0 +170750300560,219,0 +170750300608,220,0 +170750300657,220,0 +170750300707,223,0 +170750300755,222,0 +170750300803,223,0 +170750300850,224,0 +170750300898,223,0 +170750300948,223,0 +170750300996,226,0 +170750301045,226,0 +170750301093,226,0 +170750301143,226,0 +170750301191,227,0 +170750301239,227,0 +170750301288,227,0 +170750301336,227,0 +170750301384,227,0 +170750301432,219,0 +170750301482,219,0 +170750301530,221,0 +170750301579,221,0 +170750301629,221,0 +170750301677,222,0 +170750301725,222,0 +170750301773,223,0 +170750301821,224,0 +170750301870,224,0 +170750301918,225,0 +170750301966,225,0 +170750302014,228,0 +170750302062,226,0 +170750302111,226,0 +170750302161,227,0 +170750302209,229,0 +170750302257,227,0 +170750302306,219,0 +170750302354,219,0 +170750302404,220,0 +170750302452,221,0 +170750302501,222,0 +170750302549,222,0 +170750302597,223,0 +170750302645,225,0 +170750302695,226,0 +170750302742,225,0 +170750302792,228,0 +170750302841,227,0 +170750302891,228,0 +170750302939,228,0 +170750302988,227,0 +170750303036,227,0 +170750303084,228,0 +170750303134,227,0 +170750303182,226,0 +170750303230,220,0 +170750303278,220,0 +170750303327,221,0 +170750303375,222,0 +170750303425,222,0 +170750303473,223,0 +170750303521,224,0 +170750303569,224,0 +170750303616,226,0 +170750303664,227,0 +170750303714,226,0 +170750303764,227,0 +170750303813,227,0 +170750303861,228,0 +170750303909,228,0 +170750303957,227,0 +170750304005,227,0 +170750304053,228,0 +170750304101,221,0 +170750304149,221,0 +170750304196,222,0 +170750304246,222,0 +170750304294,223,0 +170750304343,225,0 +170750304393,225,0 +170750304441,225,0 +170750304490,227,0 +170750304538,228,0 +170750304586,229,0 +170750304634,227,0 +170750304682,228,0 +170750304730,229,0 +170750304778,229,0 +170750304828,228,0 +170750304876,228,0 +170750304924,226,0 +170750304973,221,0 +170750305021,222,0 +170750305071,223,0 +170750305120,223,0 +170750305168,227,0 +170750305217,225,0 +170750305265,226,0 +170750305313,227,0 +170750305363,227,0 +170750305411,228,0 +170750305459,227,0 +170750305508,227,0 +170750305556,227,0 +170750305604,229,0 +170750305654,227,0 +170750305703,227,0 +170750305751,228,0 +170750305801,228,0 +170750305850,224,0 +170750305898,219,0 +170750305946,221,0 +170750305994,221,0 +170750306042,222,0 +170750306090,223,0 +170750306137,224,0 +170750306187,225,0 +170750306235,225,0 +170750306283,226,0 +170750306332,227,0 +170750306380,228,0 +170750306428,226,0 +170750306476,227,0 +170750306524,228,0 +170750306572,226,0 +170750306621,228,0 +170750306671,227,0 +170750306720,227,0 +170750306768,218,0 +170750306816,218,0 +170750306864,219,0 +170750306912,220,0 +170750306961,222,0 +170750307011,222,0 +170750307059,223,0 +170750307107,224,0 +170750307155,224,0 +170750307203,228,0 +170750307252,227,0 +170750307300,225,0 +170750307348,228,0 +170750307396,227,0 +170750307444,228,0 +170750307493,229,0 +170750307542,228,0 +170750307592,227,0 +170750307640,219,0 +170750307688,218,0 +170750307735,219,0 +170750307783,220,0 +170750307831,221,0 +170750307879,224,0 +170750307927,222,0 +170750307977,224,0 +170750308025,224,0 +170750308072,226,0 +170750308120,226,0 +170750308170,226,0 +170750308218,229,0 +170750308265,228,0 +170750308313,227,0 +170750308363,228,0 +170750308411,227,0 +170750308459,227,0 +170750308507,224,0 +170750308556,218,0 +170750308604,219,0 +170750308652,220,0 +170750308702,221,0 +170750308750,220,0 +170750308797,222,0 +170750308845,224,0 +170750308893,223,0 +170750308941,226,0 +170750308989,226,0 +170750309037,226,0 +170750309085,228,0 +170750309135,226,0 +170750309183,229,0 +170750309231,228,0 +170750309280,228,0 +170750309328,227,0 +170750309378,227,0 +170750309427,219,0 +170750309475,219,0 +170750309523,220,0 +170750309573,220,0 +170750309621,222,0 +170750309670,222,0 +170750309720,223,0 +170750309768,224,0 +170750309817,227,0 +170750309867,226,0 +170750309915,229,0 +170750309963,227,0 +170750310011,230,0 +170750310060,230,0 +170750310108,230,0 +170750310158,228,0 +170750310207,229,0 +170750310257,227,0 +170750310305,218,0 +170750310353,218,0 +170750310401,221,0 +170750310449,221,0 +170750310497,224,0 +170750310545,223,0 +170750310593,224,0 +170750310642,226,0 +170750310692,227,0 +170750310740,226,0 +170750310788,228,0 +170750310836,228,0 +170750310885,228,0 +170750310935,228,0 +170750310984,229,0 +170750311032,229,0 +170750311082,228,0 +170750311130,227,0 +170750311179,226,0 +170750311227,217,0 +170750311275,218,0 +170750311325,220,0 +170750311373,221,0 +170750311420,223,0 +170750311468,225,0 +170750311516,224,0 +170750311564,226,0 +170750311612,225,0 +170750311660,226,0 +170750311708,227,0 +170750311757,226,0 +170750311805,227,0 +170750311853,228,0 +170750311902,230,0 +170750311950,228,0 +170750312000,229,0 +170750312047,224,0 +170750312095,216,0 +170750312143,216,0 +170750312191,217,0 +170750312241,218,0 +170750312289,218,0 +170750312338,220,0 +170750312386,223,0 +170750312434,221,0 +170750312484,223,0 +170750312532,223,0 +170750312580,225,0 +170750312629,225,0 +170750312677,226,0 +170750312726,226,0 +170750312776,226,0 +170750312826,228,0 +170750312873,226,0 +170750312923,228,0 +170750312971,217,0 +170750313019,216,0 +170750313069,217,0 +170750313117,218,0 +170750313166,219,0 +170750313214,220,0 +170750313262,221,0 +170750313310,221,0 +170750313358,223,0 +170750313407,223,0 +170750313455,225,0 +170750313503,224,0 +170750313553,225,0 +170750313601,228,0 +170750313648,226,0 +170750313698,227,0 +170750313747,226,0 +170750313795,228,0 +170750313845,224,0 +170750313895,217,0 +170750313944,218,0 +170750313994,218,0 +170750314042,220,0 +170750314090,219,0 +170750314138,221,0 +170750314186,222,0 +170750314234,223,0 +170750314283,225,0 +170750314332,224,0 +170750314382,227,0 +170750314430,227,0 +170750314480,230,0 +170750314527,230,0 +170750314577,228,0 +170750314625,227,0 +170750314673,229,0 +170750314722,227,0 +170750314770,217,0 +170750314818,217,0 +170750314868,219,0 +170750314917,220,0 +170750314965,221,0 +170750315015,221,0 +170750315063,223,0 +170750315111,223,0 +170750315159,225,0 +170750315207,225,0 +170750315255,227,0 +170750315303,226,0 +170750315351,228,0 +170750315399,229,0 +170750315446,227,0 +170750315496,229,0 +170750315544,227,0 +170750315592,227,0 +170750315640,218,0 +170750315688,218,0 +170750315736,219,0 +170750315784,220,0 +170750315833,222,0 +170750315881,221,0 +170750315931,222,0 +170750315979,226,0 +170750316027,225,0 +170750316075,225,0 +170750316124,227,0 +170750316174,227,0 +170750316223,227,0 +170750316271,228,0 +170750316321,227,0 +170750316369,228,0 +170750316417,229,0 +170750316465,227,0 +170750316513,223,0 +170750316561,216,0 +170750316608,218,0 +170750316658,220,0 +170750316707,221,0 +170750316757,221,0 +170750316805,223,0 +170750316853,224,0 +170750316901,224,0 +170750316951,225,0 +170750317000,226,0 +170750317050,225,0 +170750317099,228,0 +170750317149,227,0 +170750317198,228,0 +170750317246,228,0 +170750317294,227,0 +170750317344,228,0 +170750317392,225,0 +170750317440,215,0 +170750317488,216,0 +170750317536,217,0 +170750317584,219,0 +170750317633,220,0 +170750317681,222,0 +170750317729,222,0 +170750317777,223,0 +170750317825,224,0 +170750317872,225,0 +170750317922,226,0 +170750317970,229,0 +170750318019,226,0 +170750318067,226,0 +170750318115,227,0 +170750318163,226,0 +170750318211,224,0 +170750318259,227,0 +170750318308,217,0 +170750318358,217,0 +170750318406,217,0 +170750318454,219,0 +170750318502,220,0 +170750318549,220,0 +170750318597,221,0 +170750318645,222,0 +170750318693,222,0 +170750318741,224,0 +170750318789,223,0 +170750318837,225,0 +170750318884,225,0 +170750318932,227,0 +170750318982,229,0 +170750319031,231,0 +170750319079,229,0 +170750319129,228,0 +170750319178,228,0 +170750319226,231,0 +170750319274,227,0 +170750319322,229,0 +170750319372,228,0 +170750319420,228,0 +170750319468,228,0 +170750319516,226,0 +170750319565,226,0 +170750319615,221,0 +170750319664,221,0 +170750319712,222,0 +170750319762,222,0 +170750319811,222,0 +170750319861,221,0 +170750319910,224,0 +170750319960,225,0 +170750320008,227,0 +170750320058,230,0 +170750320105,227,0 +170750320153,222,0 +170750320203,228,0 +170750320251,229,0 +170750320301,228,0 +170750320349,228,0 +170750320398,228,0 +170750320446,226,0 +170750320496,219,0 +170750320545,220,0 +170750320593,221,0 +170750320641,225,0 +170750320690,223,0 +170750320740,225,0 +170750320787,225,0 +170750320835,225,0 +170750320883,227,0 +170750320931,227,0 +170750320979,226,0 +170750321027,227,0 +170750321075,227,0 +170750321124,229,0 +170750321172,227,0 +170750321220,229,0 +170750321268,228,0 +170750321316,229,0 +170750321366,226,0 +170750321414,223,0 +170750321462,224,0 +170750321511,224,0 +170750321561,225,0 +170750321610,225,0 +170750321658,226,0 +170750321707,227,0 +170750321755,226,0 +170750321803,228,0 +170750321851,228,0 +170750321899,228,0 +170750321947,226,0 +170750321997,228,0 +170750322045,227,0 +170750322094,227,0 +170750322142,228,0 +170750322190,227,0 +170750322238,226,0 +170750322286,221,0 +170750322335,220,0 +170750322385,222,0 +170750322433,222,0 +170750322482,223,0 +170750322530,224,0 +170750322578,224,0 +170750322628,224,0 +170750322677,225,0 +170750322727,226,0 +170750322777,226,0 +170750322824,227,0 +170750322872,227,0 +170750322920,228,0 +170750322968,228,0 +170750323016,228,0 +170750323064,228,0 +170750323112,227,0 +170750323160,227,0 +170750323210,218,0 +170750323258,218,0 +170750323307,219,0 +170750323355,220,0 +170750323405,221,0 +170750323454,222,0 +170750323502,223,0 +170750323550,225,0 +170750323598,224,0 +170750323648,225,0 +170750323696,227,0 +170750323743,228,0 +170750323793,229,0 +170750323841,227,0 +170750323889,227,0 +170750323937,227,0 +170750323985,227,0 +170750324034,226,0 +170750324082,217,0 +170750324130,218,0 +170750324178,218,0 +170750324228,220,0 +170750324276,221,0 +170750324324,221,0 +170750324372,222,0 +170750324421,222,0 +170750324471,223,0 +170750324519,224,0 +170750324568,225,0 +170750324618,225,0 +170750324667,226,0 +170750324715,225,0 +170750324763,226,0 +170750324811,227,0 +170750324859,227,0 +170750324907,227,0 +170750324955,218,0 +170750325003,217,0 +170750325052,218,0 +170750325100,219,0 +170750325148,219,0 +170750325196,221,0 +170750325246,222,0 +170750325295,223,0 +170750325345,223,0 +170750325394,224,0 +170750325442,225,0 +170750325492,228,0 +170750325541,226,0 +170750325589,227,0 +170750325637,227,0 +170750325685,227,0 +170750325733,229,0 +170750325781,227,0 +170750325828,218,0 +170750325876,218,0 +170750325924,219,0 +170750325974,219,0 +170750326022,221,0 +170750326069,221,0 +170750326117,222,0 +170750326165,223,0 +170750326215,225,0 +170750326264,217,0 +170750326312,219,0 +170750326360,229,0 +170750326408,228,0 +170750326456,227,0 +170750326504,228,0 +170750326553,227,0 +170750326601,227,0 +170750326649,226,0 +170750326697,227,0 +170750326745,219,0 +170750326793,219,0 +170750326841,220,0 +170750326889,221,0 +170750326937,222,0 +170750326985,222,0 +170750327033,224,0 +170750327081,226,0 +170750327129,225,0 +170750327177,226,0 +170750327226,226,0 +170750327274,228,0 +170750327324,227,0 +170750327372,228,0 +170750327420,229,0 +170750327468,228,0 +170750327516,227,0 +170750327565,228,0 +170750327613,220,0 +170750327661,220,0 +170750327709,221,0 +170750327759,222,0 +170750327807,223,0 +170750327855,223,0 +170750327903,224,0 +170750327951,226,0 +170750327998,226,0 +170750328046,228,0 +170750328094,228,0 +170750328144,228,0 +170750328192,228,0 +170750328240,224,0 +170750328287,229,0 +170750328335,229,0 +170750328385,227,0 +170750328434,226,0 +170750328484,225,0 +170750328532,219,0 +170750328580,220,0 +170750328629,220,0 +170750328677,221,0 +170750328725,222,0 +170750328773,223,0 +170750328821,224,0 +170750328870,224,0 +170750328918,226,0 +170750328966,225,0 +170750329015,228,0 +170750329063,231,0 +170750329111,228,0 +170750329159,226,0 +170750329207,229,0 +170750329254,227,0 +170750329302,227,0 +170750329350,226,0 +170750329398,219,0 +170750329447,219,0 +170750329495,218,0 +170750329543,220,0 +170750329593,221,0 +170750329641,222,0 +170750329688,222,0 +170750329736,225,0 +170750329784,228,0 +170750329832,224,0 +170750329880,226,0 +170750329928,227,0 +170750329978,229,0 +170750330027,228,0 +170750330075,227,0 +170750330123,229,0 +170750330171,228,0 +170750330219,227,0 +170750330267,223,0 +170750330314,217,0 +170750330363,219,0 +170750330412,220,0 +170750330462,221,0 +170750330509,222,0 +170750330557,222,0 +170750330605,223,0 +170750330653,224,0 +170750330701,224,0 +170750330749,225,0 +170750330798,228,0 +170750330848,229,0 +170750330896,228,0 +170750330944,228,0 +170750330991,228,0 +170750331039,229,0 +170750331087,228,0 +170750331137,226,0 +170750331185,219,0 +170750331233,219,0 +170750331281,221,0 +170750331328,222,0 +170750331378,225,0 +170750331426,223,0 +170750331474,226,0 +170750331522,224,0 +170750331570,226,0 +170750331619,226,0 +170750331667,227,0 +170750331717,228,0 +170750331764,229,0 +170750331812,228,0 +170750331860,227,0 +170750331908,228,0 +170750331956,227,0 +170750332004,228,0 +170750332052,222,0 +170750332100,222,0 +170750332148,224,0 +170750332195,225,0 +170750332243,226,0 +170750332291,225,0 +170750332341,226,0 +170750332389,226,0 +170750332436,229,0 +170750332484,230,0 +170750332534,227,0 +170750332582,228,0 +170750332630,228,0 +170750332678,228,0 +170750332726,228,0 +170750332773,227,0 +170750332821,228,0 +170750332871,227,0 +170750332919,226,0 +170750332967,221,0 +170750333016,221,0 +170750333064,221,0 +170750333112,224,0 +170750333162,227,0 +170750333210,224,0 +170750333258,226,0 +170750333307,225,0 +170750333357,228,0 +170750333405,227,0 +170750333453,229,0 +170750333502,228,0 +170750333550,228,0 +170750333598,227,0 +170750333647,228,0 +170750333697,228,0 +170750333745,227,0 +170750333793,227,0 +170750333841,217,0 +170750333890,217,0 +170750333938,218,0 +170750333986,220,0 +170750334035,221,0 +170750334083,222,0 +170750334131,223,0 +170750334181,223,0 +170750334229,225,0 +170750334278,227,0 +170750334326,226,0 +170750334374,227,0 +170750334424,228,0 +170750334472,227,0 +170750334521,228,0 +170750334569,228,0 +170750334619,227,0 +170750334667,227,0 +170750334716,217,0 +170750334766,216,0 +170750334815,218,0 +170750334863,220,0 +170750334913,221,0 +170750334962,221,0 +170750335012,221,0 +170750335060,222,0 +170750335109,224,0 +170750335159,224,0 +170750335207,226,0 +170750335255,227,0 +170750335303,227,0 +170750335352,227,0 +170750335400,228,0 +170750335448,227,0 +170750335498,228,0 +170750335546,227,0 +170750335594,218,0 +170750335642,216,0 +170750335691,216,0 +170750335741,218,0 +170750335790,219,0 +170750335840,221,0 +170750335888,221,0 +170750335936,223,0 +170750335983,224,0 +170750336031,224,0 +170750336079,226,0 +170750336127,225,0 +170750336175,227,0 +170750336223,228,0 +170750336273,227,0 +170750336321,227,0 +170750336369,231,0 +170750336417,227,0 +170750336466,227,0 +170750336514,216,0 +170750336562,217,0 +170750336611,218,0 +170750336661,219,0 +170750336709,220,0 +170750336758,221,0 +170750336808,222,0 +170750336856,223,0 +170750336904,223,0 +170750336953,223,0 +170750337001,224,0 +170750337049,226,0 +170750337097,227,0 +170750337147,227,0 +170750337195,227,0 +170750337243,226,0 +170750337292,228,0 +170750337340,227,0 +170750337388,217,0 +170750337436,217,0 +170750337486,218,0 +170750337535,220,0 +170750337583,219,0 +170750337631,222,0 +170750337681,223,0 +170750337730,224,0 +170750337778,225,0 +170750337826,225,0 +170750337875,226,0 +170750337925,227,0 +170750337973,228,0 +170750338022,227,0 +170750338070,229,0 +170750338118,228,0 +170750338166,229,0 +170750338214,227,0 +170750338262,217,0 +170750338310,216,0 +170750338357,218,0 +170750338405,219,0 +170750338453,222,0 +170750338503,221,0 +170750338550,223,0 +170750338598,223,0 +170750338646,224,0 +170750338694,226,0 +170750338742,227,0 +170750338790,228,0 +170750338838,229,0 +170750338886,228,0 +170750338934,228,0 +170750338983,227,0 +170750339033,229,0 +170750339082,227,0 +170750339130,228,0 +170750339178,218,0 +170750339226,218,0 +170750339276,219,0 +170750339324,221,0 +170750339372,221,0 +170750339419,222,0 +170750339467,223,0 +170750339515,224,0 +170750339563,226,0 +170750339613,226,0 +170750339662,227,0 +170750339710,227,0 +170750339758,229,0 +170750339806,229,0 +170750339854,230,0 +170750339902,227,0 +170750339949,228,0 +170750339997,227,0 +170750340045,218,0 +170750340095,218,0 +170750340143,219,0 +170750340191,221,0 +170750340239,221,0 +170750340286,223,0 +170750340334,224,0 +170750340384,226,0 +170750340432,225,0 +170750340480,226,0 +170750340528,227,0 +170750340576,226,0 +170750340624,228,0 +170750340672,227,0 +170750340720,227,0 +170750340767,228,0 +170750340817,228,0 +170750340865,227,0 +170750340913,226,0 +170750340962,216,0 +170750341010,216,0 +170750341058,217,0 +170750341106,218,0 +170750341154,219,0 +170750341202,220,0 +170750341252,221,0 +170750341300,222,0 +170750341348,223,0 +170750341397,226,0 +170750341447,225,0 +170750341496,227,0 +170750341546,227,0 +170750341595,227,0 +170750341645,227,0 +170750341693,228,0 +170750341742,227,0 +170750341792,227,0 +170750341841,216,0 +170750341889,216,0 +170750341937,217,0 +170750341987,219,0 +170750342035,219,0 +170750342083,220,0 +170750342131,222,0 +170750342179,223,0 +170750342227,223,0 +170750342276,225,0 +170750342324,225,0 +170750342374,226,0 +170750342423,227,0 +170750342473,229,0 +170750342521,228,0 +170750342570,227,0 +170750342620,228,0 +170750342668,227,0 +170750342717,218,0 +170750342765,218,0 +170750342815,219,0 +170750342863,220,0 +170750342911,221,0 +170750342960,221,0 +170750343010,223,0 +170750343059,224,0 +170750343109,225,0 +170750343157,225,0 +170750343206,225,0 +170750343256,229,0 +170750343304,222,0 +170750343352,228,0 +170750343400,228,0 +170750343448,227,0 +170750343496,227,0 +170750343545,227,0 +170750343593,218,0 +170750343641,220,0 +170750343689,221,0 +170750343739,221,0 +170750343787,221,0 +170750343836,223,0 +170750343886,225,0 +170750343934,225,0 +170750343983,226,0 +170750344031,225,0 +170750344081,227,0 +170750344129,227,0 +170750344177,227,0 +170750344224,227,0 +170750344274,228,0 +170750344323,227,0 +170750344371,227,0 +170750344419,227,0 +170750344467,225,0 +170750344517,217,0 +170750344565,218,0 +170750344613,219,0 +170750344661,220,0 +170750344710,221,0 +170750344758,221,0 +170750344806,223,0 +170750344854,224,0 +170750344902,223,0 +170750344949,225,0 +170750344999,224,0 +170750345047,226,0 +170750345096,226,0 +170750345144,227,0 +170750345193,228,0 +170750345241,228,0 +170750345289,227,0 +170750345337,226,0 +170750345385,217,0 +170750345433,217,0 +170750345483,219,0 +170750345531,219,0 +170750345578,220,0 +170750345626,221,0 +170750345674,221,0 +170750345724,222,0 +170750345773,223,0 +170750345821,224,0 +170750345871,224,0 +170750345919,225,0 +170750345968,227,0 +170750346016,226,0 +170750346066,227,0 +170750346114,227,0 +170750346162,227,0 +170750346210,226,0 +170750346258,218,0 +170750346306,218,0 +170750346354,219,0 +170750346402,220,0 +170750346451,221,0 +170750346501,222,0 +170750346550,223,0 +170750346598,224,0 +170750346646,225,0 +170750346694,225,0 +170750346742,226,0 +170750346790,226,0 +170750346838,226,0 +170750346885,227,0 +170750346933,227,0 +170750346981,226,0 +170750347029,227,0 +170750347077,228,0 +170750347125,226,0 +170750347173,219,0 +170750347221,219,0 +170750347269,220,0 +170750347316,221,0 +170750347364,221,0 +170750347412,222,0 +170750347460,223,0 +170750347508,225,0 +170750347556,224,0 +170750347604,226,0 +170750347652,225,0 +170750347700,226,0 +170750347747,227,0 +170750347795,228,0 +170750347843,227,0 +170750347891,228,0 +170750347939,227,0 +170750347987,227,0 +170750348035,221,0 +170750348083,220,0 +170750348131,220,0 +170750348179,221,0 +170750348227,223,0 +170750348275,223,0 +170750348323,224,0 +170750348372,224,0 +170750348420,225,0 +170750348468,226,0 +170750348518,227,0 +170750348566,227,0 +170750348615,227,0 +170750348663,228,0 +170750348711,227,0 +170750348759,228,0 +170750348808,228,0 +170750348856,227,0 +170750348904,226,0 +170750348952,222,0 +170750349000,222,0 +170750349048,222,0 +170750349096,223,0 +170750349144,223,0 +170750349191,225,0 +170750349239,226,0 +170750349287,226,0 +170750349335,228,0 +170750349385,227,0 +170750349432,227,0 +170750349480,227,0 +170750349528,228,0 +170750349576,228,0 +170750349624,228,0 +170750349672,227,0 +170750349720,229,0 +170750349768,226,0 +170750349816,222,0 +170750349865,221,0 +170750349913,222,0 +170750349961,223,0 +170750350009,223,0 +170750350059,227,0 +170750350107,225,0 +170750350155,225,0 +170750350203,224,0 +170750350250,228,0 +170750350298,229,0 +170750350346,228,0 +170750350394,227,0 +170750350442,226,0 +170750350490,227,0 +170750350538,227,0 +170750350586,227,0 +170750350634,228,0 +170750350683,218,0 +170750350733,220,0 +170750350780,221,0 +170750350828,222,0 +170750350876,222,0 +170750350924,224,0 +170750350972,226,0 +170750351020,226,0 +170750351069,225,0 +170750351117,227,0 +170750351165,226,0 +170750351213,227,0 +170750351261,228,0 +170750351309,229,0 +170750351357,227,0 +170750351405,227,0 +170750351454,227,0 +170750351504,228,0 +170750351552,227,0 +170750351601,218,0 +170750351649,220,0 +170750351699,221,0 +170750351748,223,0 +170750351798,222,0 +170750351846,223,0 +170750351894,223,0 +170750351942,224,0 +170750351990,225,0 +170750352039,225,0 +170750352089,224,0 +170750352138,226,0 +170750352186,225,0 +170750352234,227,0 +170750352284,228,0 +170750352332,227,0 +170750352381,226,0 +170750352431,227,0 +170750352480,228,0 +170750352528,218,0 +170750352576,218,0 +170750352626,220,0 +170750352675,220,0 +170750352725,222,0 +170750352774,221,0 +170750352824,221,0 +170750352872,223,0 +170750352920,225,0 +170750352968,224,0 +170750353017,226,0 +170750353065,226,0 +170750353113,227,0 +170750353161,226,0 +170750353209,227,0 +170750353258,226,0 +170750353306,227,0 +170750353354,227,0 +170750353404,226,0 +170750353454,218,0 +170750353502,218,0 +170750353551,220,0 +170750353599,219,0 +170750353647,221,0 +170750353695,223,0 +170750353743,223,0 +170750353793,224,0 +170750353841,226,0 +170750353888,226,0 +170750353938,227,0 +170750353986,228,0 +170750354034,227,0 +170750354083,229,0 +170750354131,229,0 +170750354181,227,0 +170750354229,227,0 +170750354279,227,0 +170750354326,227,0 +170750354374,218,0 +170750354422,216,0 +170750354470,217,0 +170750354518,218,0 +170750354568,219,0 +170750354617,221,0 +170750354665,221,0 +170750354713,222,0 +170750354761,224,0 +170750354811,223,0 +170750354859,225,0 +170750354907,226,0 +170750354954,227,0 +170750355002,228,0 +170750355052,229,0 +170750355100,229,0 +170750355148,227,0 +170750355195,227,0 +170750355243,228,0 +170750355291,226,0 +170750355339,217,0 +170750355387,216,0 +170750355435,217,0 +170750355483,219,0 +170750355531,219,0 +170750355578,220,0 +170750355626,221,0 +170750355674,222,0 +170750355724,222,0 +170750355772,224,0 +170750355820,227,0 +170750355869,225,0 +170750355919,228,0 +170750355968,227,0 +170750356018,228,0 +170750356067,228,0 +170750356115,228,0 +170750356163,228,0 +170750356211,226,0 +170750356260,216,0 +170750356308,215,0 +170750356358,215,0 +170750356406,217,0 +170750356455,219,0 +170750356503,219,0 +170750356553,220,0 +170750356601,222,0 +170750356649,221,0 +170750356697,222,0 +170750356746,223,0 +170750356794,224,0 +170750356844,228,0 +170750356892,228,0 +170750356941,226,0 +170750356989,227,0 +170750357039,228,0 +170750357087,228,0 +170750357135,227,0 +170750357184,217,0 +170750357232,216,0 +170750357282,216,0 +170750357330,217,0 +170750357378,218,0 +170750357425,219,0 +170750357475,220,0 +170750357523,220,0 +170750357571,222,0 +170750357620,224,0 +170750357668,224,0 +170750357718,225,0 +170750357767,227,0 +170750357817,226,0 +170750357865,227,0 +170750357914,227,0 +170750357962,227,0 +170750358010,232,0 +170750358058,227,0 +170750358108,216,0 +170750358157,216,0 +170750358205,217,0 +170750358255,218,0 +170750358304,219,0 +170750358354,219,0 +170750358403,220,0 +170750358451,223,0 +170750358501,224,0 +170750358550,225,0 +170750358598,226,0 +170750358646,227,0 +170750358694,225,0 +170750358742,226,0 +170750358790,227,0 +170750358838,229,0 +170750358886,228,0 +170750358934,228,0 +170750358984,228,0 +170750359033,218,0 +170750359083,216,0 +170750359131,217,0 +170750359179,218,0 +170750359228,219,0 +170750359276,220,0 +170750359326,220,0 +170750359374,221,0 +170750359422,222,0 +170750359470,222,0 +170750359519,224,0 +170750359567,224,0 +170750359617,225,0 +170750359665,233,0 +170750359713,226,0 +170750359762,227,0 +170750359810,227,0 +170750359860,227,0 +170750359909,227,0 +170750359959,218,0 +170750360007,217,0 +170750360056,219,0 +170750360104,220,0 +170750360154,221,0 +170750360202,222,0 +170750360250,222,0 +170750360299,222,0 +170750360347,223,0 +170750360395,226,0 +170750360443,225,0 +170750360491,226,0 +170750360541,226,0 +170750360590,227,0 +170750360638,227,0 +170750360686,226,0 +170750360736,228,0 +170750360783,227,0 +170750360831,226,0 +170750360879,218,0 +170750360929,217,0 +170750360977,218,0 +170750361026,219,0 +170750361074,221,0 +170750361122,222,0 +170750361170,222,0 +170750361218,222,0 +170750361266,223,0 +170750361315,224,0 +170750361363,225,0 +170750361412,226,0 +170750361460,226,0 +170750361508,227,0 +170750361556,227,0 +170750361605,227,0 +170750361653,227,0 +170750361703,228,0 +170750361751,226,0 +170750361799,219,0 +170750361847,219,0 +170750361895,220,0 +170750361943,221,0 +170750361992,221,0 +170750362042,223,0 +170750362090,223,0 +170750362137,226,0 +170750362185,225,0 +170750362233,226,0 +170750362283,228,0 +170750362333,227,0 +170750362380,227,0 +170750362428,226,0 +170750362478,227,0 +170750362526,227,0 +170750362574,228,0 +170750362622,227,0 +170750362671,228,0 +170750362719,224,0 +170750362769,218,0 +170750362818,220,0 +170750362868,221,0 +170750362916,222,0 +170750362964,222,0 +170750363012,224,0 +170750363060,226,0 +170750363108,226,0 +170750363155,227,0 +170750363203,227,0 +170750363251,227,0 +170750363299,228,0 +170750363347,229,0 +170750363395,227,0 +170750363444,228,0 +170750363492,228,0 +170750363540,228,0 +170750363590,228,0 +170750363637,225,0 +170750363685,219,0 +170750363735,220,0 +170750363783,221,0 +170750363830,223,0 +170750363878,223,0 +170750363928,224,0 +170750363977,224,0 +170750364027,225,0 +170750364075,226,0 +170750364122,226,0 +170750364170,227,0 +170750364218,227,0 +170750364266,227,0 +170750364314,228,0 +170750364362,228,0 +170750364412,227,0 +170750364461,226,0 +170750364509,227,0 +170750364557,226,0 +170750364605,221,0 +170750364655,221,0 +170750364704,223,0 +170750364752,223,0 +170750364802,223,0 +170750364850,225,0 +170750364897,225,0 +170750364945,225,0 +170750364993,227,0 +170750365043,226,0 +170750365092,227,0 +170750365140,227,0 +170750365188,227,0 +170750365238,227,0 +170750365287,228,0 +170750365335,226,0 +170750365383,227,0 +170750365433,228,0 +170750365482,227,0 +170750365532,220,0 +170750365580,220,0 +170750365629,220,0 +170750365677,221,0 +170750365725,223,0 +170750365773,222,0 +170750365823,224,0 +170750365871,224,0 +170750365919,225,0 +170750365967,225,0 +170750366015,226,0 +170750366064,227,0 +170750366112,227,0 +170750366162,226,0 +170750366210,229,0 +170750366259,228,0 +170750366309,228,0 +170750366357,228,0 +170750366405,227,0 +170750366453,218,0 +170750366501,216,0 +170750366550,217,0 +170750366598,218,0 +170750366646,219,0 +170750366694,220,0 +170750366742,221,0 +170750366791,222,0 +170750366839,223,0 +170750366889,224,0 +170750366937,225,0 +170750366985,227,0 +170750367034,227,0 +170750367084,226,0 +170750367132,227,0 +170750367180,226,0 +170750367228,229,0 +170750367276,230,0 +170750367324,228,0 +170750367372,218,0 +170750367421,216,0 +170750367469,216,0 +170750367517,217,0 +170750367567,219,0 +170750367616,220,0 +170750367666,220,0 +170750367715,222,0 +170750367763,222,0 +170750367811,224,0 +170750367861,225,0 +170750367910,226,0 +170750367958,227,0 +170750368008,227,0 +170750368057,227,0 +170750368107,227,0 +170750368156,226,0 +170750368206,227,0 +170750368254,226,0 +170750368303,217,0 +170750368353,216,0 +170750368402,217,0 +170750368452,218,0 +170750368500,219,0 +170750368548,220,0 +170750368596,221,0 +170750368644,221,0 +170750368692,221,0 +170750368740,222,0 +170750368789,224,0 +170750368837,224,0 +170750368885,227,0 +170750368933,226,0 +170750368981,226,0 +170750369029,226,0 +170750369077,228,0 +170750369124,226,0 +170750369172,226,0 +170750369220,219,0 +170750369268,216,0 +170750369316,217,0 +170750369365,217,0 +170750369415,217,0 +170750369463,218,0 +170750369512,217,0 +170750369562,219,0 +170750369610,220,0 +170750369658,221,0 +170750369706,224,0 +170750369754,224,0 +170750369802,223,0 +170750369851,225,0 +170750369899,225,0 +170750369949,226,0 +170750369999,226,0 +170750370047,230,0 +170750370094,227,0 +170750370142,226,0 +170750370190,215,0 +170750370238,215,0 +170750370286,216,0 +170750370336,216,0 +170750370384,216,0 +170750370433,217,0 +170750370483,216,0 +170750370532,217,0 +170750370580,218,0 +170750370628,219,0 +170750370678,222,0 +170750370726,224,0 +170750370774,223,0 +170750370822,224,0 +170750370870,225,0 +170750370918,229,0 +170750370965,224,0 +170750371013,226,0 +170750371061,227,0 +170750371109,216,0 +170750371159,216,0 +170750371207,216,0 +170750371256,217,0 +170750371304,217,0 +170750371354,217,0 +170750371402,217,0 +170750371450,218,0 +170750371498,218,0 +170750371546,219,0 +170750371593,221,0 +170750371641,223,0 +170750371689,223,0 +170750371737,224,0 +170750371785,224,0 +170750371834,225,0 +170750371884,224,0 +170750371933,227,0 +170750371981,226,0 +170750372029,217,0 +170750372077,216,0 +170750372125,216,0 +170750372174,216,0 +170750372222,217,0 +170750372270,217,0 +170750372318,217,0 +170750372366,217,0 +170750372415,219,0 +170750372463,220,0 +170750372511,223,0 +170750372559,224,0 +170750372607,224,0 +170750372655,223,0 +170750372703,223,0 +170750372750,225,0 +170750372800,224,0 +170750372848,227,0 +170750372896,227,0 +170750372945,217,0 +170750372993,216,0 +170750373041,216,0 +170750373089,217,0 +170750373137,218,0 +170750373185,219,0 +170750373234,218,0 +170750373282,220,0 +170750373330,220,0 +170750373377,221,0 +170750373425,222,0 +170750373473,222,0 +170750373521,226,0 +170750373571,224,0 +170750373620,224,0 +170750373668,225,0 +170750373716,225,0 +170750373765,226,0 +170750373813,228,0 +170750373863,222,0 +170750373911,216,0 +170750373960,216,0 +170750374008,217,0 +170750374056,218,0 +170750374104,219,0 +170750374154,221,0 +170750374202,222,0 +170750374251,221,0 +170750374301,222,0 +170750374349,224,0 +170750374397,224,0 +170750374446,228,0 +170750374496,226,0 +170750374545,227,0 +170750374595,228,0 +170750374643,227,0 +170750374692,227,0 +170750374742,227,0 +170750374792,219,0 +170750374841,215,0 +170750374889,216,0 +170750374938,216,0 +170750374986,217,0 +170750375036,218,0 +170750375085,219,0 +170750375135,220,0 +170750375185,220,0 +170750375234,222,0 +170750375282,223,0 +170750375332,223,0 +170750375380,224,0 +170750375429,225,0 +170750375479,226,0 +170750375528,227,0 +170750375578,225,0 +170750375627,227,0 +170750375677,228,0 +170750375725,226,0 +170750375774,216,0 +170750375822,216,0 +170750375872,218,0 +170750375921,219,0 +170750375969,220,0 +170750376017,220,0 +170750376065,220,0 +170750376115,222,0 +170750376164,223,0 +170750376212,224,0 +170750376262,225,0 +170750376311,226,0 +170750376361,226,0 +170750376409,226,0 +170750376457,227,0 +170750376506,227,0 +170750376554,227,0 +170750376602,226,0 +170750376650,224,0 +170750376700,215,0 +170750376749,216,0 +170750376797,218,0 +170750376845,219,0 +170750376895,220,0 +170750376943,219,0 +170750376992,221,0 +170750377040,223,0 +170750377088,223,0 +170750377138,223,0 +170750377187,225,0 +170750377235,230,0 +170750377283,230,0 +170750377331,228,0 +170750377381,225,0 +170750377428,227,0 +170750377476,227,0 +170750377526,228,0 +170750377574,227,0 +170750377622,216,0 +170750377671,217,0 +170750377721,218,0 +170750377770,219,0 +170750377818,220,0 +170750377868,220,0 +170750377917,223,0 +170750377967,222,0 +170750378015,222,0 +170750378063,224,0 +170750378112,225,0 +170750378160,225,0 +170750378208,226,0 +170750378256,227,0 +170750378304,227,0 +170750378354,229,0 +170750378402,227,0 +170750378451,228,0 +170750378499,227,0 +170750378549,217,0 +170750378598,218,0 +170750378648,219,0 +170750378697,219,0 +170750378745,221,0 +170750378793,222,0 +170750378843,223,0 +170750378891,224,0 +170750378938,225,0 +170750378986,225,0 +170750379034,227,0 +170750379084,228,0 +170750379133,226,0 +170750379181,227,0 +170750379231,228,0 +170750379279,228,0 +170750379327,228,0 +170750379375,227,0 +170750379423,227,0 +170750379472,220,0 +170750379520,219,0 +170750379568,219,0 +170750379618,221,0 +170750379666,221,0 +170750379715,224,0 +170750379763,225,0 +170750379811,225,0 +170750379859,225,0 +170750379909,226,0 +170750379958,226,0 +170750380008,229,0 +170750380057,228,0 +170750380107,228,0 +170750380156,227,0 +170750380204,227,0 +170750380254,229,0 +170750380302,229,0 +170750380350,227,0 +170750380398,219,0 +170750380446,219,0 +170750380494,219,0 +170750380543,221,0 +170750380591,222,0 +170750380639,224,0 +170750380687,225,0 +170750380737,226,0 +170750380786,226,0 +170750380834,226,0 +170750380882,227,0 +170750380932,228,0 +170750380980,228,0 +170750381028,228,0 +170750381076,228,0 +170750381125,229,0 +170750381175,228,0 +170750381223,228,0 +170750381271,227,0 +170750381319,219,0 +170750381366,218,0 +170750381414,219,0 +170750381462,220,0 +170750381512,220,0 +170750381560,221,0 +170750381609,222,0 +170750381657,224,0 +170750381705,226,0 +170750381753,227,0 +170750381803,227,0 +170750381851,227,0 +170750381899,228,0 +170750381947,228,0 +170750381995,228,0 +170750382044,229,0 +170750382092,228,0 +170750382142,228,0 +170750382190,226,0 +170750382238,220,0 +170750382286,216,0 +170750382335,217,0 +170750382383,219,0 +170750382431,220,0 +170750382479,222,0 +170750382529,222,0 +170750382578,223,0 +170750382628,224,0 +170750382677,225,0 +170750382725,225,0 +170750382773,226,0 +170750382821,229,0 +170750382869,229,0 +170750382919,228,0 +170750382967,227,0 +170750383016,228,0 +170750383066,227,0 +170750383114,228,0 +170750383162,228,0 +170750383209,216,0 +170750383257,216,0 +170750383307,216,0 +170750383355,217,0 +170750383405,219,0 +170750383454,219,0 +170750383504,220,0 +170750383552,221,0 +170750383601,223,0 +170750383649,223,0 +170750383699,226,0 +170750383747,225,0 +170750383796,225,0 +170750383844,227,0 +170750383894,226,0 +170750383941,227,0 +170750383989,229,0 +170750384039,228,0 +170750384087,227,0 +170750384136,215,0 +170750384184,215,0 +170750384234,216,0 +170750384284,217,0 +170750384332,218,0 +170750384381,218,0 +170750384429,219,0 +170750384477,220,0 +170750384525,220,0 +170750384573,222,0 +170750384622,223,0 +170750384672,225,0 +170750384720,225,0 +170750384768,227,0 +170750384817,226,0 +170750384865,226,0 +170750384915,226,0 +170750384963,227,0 +170750385012,227,0 +170750385060,217,0 +170750385108,216,0 +170750385158,217,0 +170750385206,219,0 +170750385254,220,0 +170750385303,221,0 +170750385351,221,0 +170750385399,222,0 +170750385447,223,0 +170750385495,224,0 +170750385543,225,0 +170750385591,226,0 +170750385640,226,0 +170750385688,226,0 +170750385736,227,0 +170750385786,227,0 +170750385835,227,0 +170750385885,228,0 +170750385933,226,0 +170750385981,218,0 +170750386029,218,0 +170750386078,218,0 +170750386126,220,0 +170750386174,220,0 +170750386222,221,0 +170750386271,222,0 +170750386319,224,0 +170750386369,225,0 +170750386417,224,0 +170750386466,226,0 +170750386514,226,0 +170750386562,227,0 +170750386610,226,0 +170750386658,228,0 +170750386706,227,0 +170750386754,228,0 +170750386802,227,0 +170750386849,227,0 +170750386897,221,0 +170750386945,216,0 +170750386993,217,0 +170750387041,219,0 +170750387091,220,0 +170750387139,221,0 +170750387187,221,0 +170750387235,223,0 +170750387283,222,0 +170750387332,225,0 +170750387382,225,0 +170750387430,226,0 +170750387478,227,0 +170750387527,228,0 +170750387577,227,0 +170750387626,227,0 +170750387676,228,0 +170750387725,228,0 +170750387773,229,0 +170750387821,217,0 +170750387871,215,0 +170750387920,215,0 +170750387968,216,0 +170750388016,217,0 +170750388064,218,0 +170750388112,219,0 +170750388160,220,0 +170750388209,220,0 +170750388259,223,0 +170750388307,224,0 +170750388355,224,0 +170750388403,226,0 +170750388451,226,0 +170750388499,226,0 +170750388547,226,0 +170750388596,227,0 +170750388644,227,0 +170750388692,227,0 +170750388742,227,0 +170750388790,216,0 +170750388838,215,0 +170750388885,216,0 +170750388933,216,0 +170750388981,217,0 +170750389029,218,0 +170750389077,219,0 +170750389126,221,0 +170750389174,222,0 +170750389224,222,0 +170750389272,223,0 +170750389319,223,0 +170750389367,224,0 +170750389415,224,0 +170750389463,225,0 +170750389511,225,0 +170750389559,225,0 +170750389607,225,0 +170750389655,227,0 +170750389703,217,0 +170750389751,215,0 +170750389800,215,0 +170750389850,216,0 +170750389899,216,0 +170750389947,217,0 +170750389995,218,0 +170750390043,219,0 +170750390091,220,0 +170750390140,221,0 +170750390188,223,0 +170750390237,223,0 +170750390285,225,0 +170750390333,224,0 +170750390381,224,0 +170750390429,225,0 +170750390479,225,0 +170750390528,226,0 +170750390578,226,0 +170750390626,217,0 +170750390675,216,0 +170750390723,216,0 +170750390771,216,0 +170750390819,216,0 +170750390867,216,0 +170750390915,217,0 +170750390964,217,0 +170750391012,217,0 +170750391060,219,0 +170750391110,220,0 +170750391158,220,0 +170750391207,222,0 +170750391257,224,0 +170750391306,223,0 +170750391354,223,0 +170750391402,224,0 +170750391450,224,0 +170750391498,227,0 +170750391546,217,0 +170750391595,215,0 +170750391643,216,0 +170750391691,217,0 +170750391741,219,0 +170750391788,219,0 +170750391836,219,0 +170750391884,219,0 +170750391932,220,0 +170750391980,221,0 +170750392028,222,0 +170750392078,223,0 +170750392126,224,0 +170750392175,224,0 +170750392225,227,0 +170750392273,225,0 +170750392321,227,0 +170750392369,227,0 +170750392417,227,0 +170750392464,227,0 +170750392512,217,0 +170750392560,218,0 +170750392608,218,0 +170750392656,220,0 +170750392704,220,0 +170750392752,221,0 +170750392800,221,0 +170750392848,222,0 +170750392896,223,0 +170750392944,224,0 +170750392994,225,0 +170750393043,225,0 +170750393093,227,0 +170750393142,227,0 +170750393192,226,0 +170750393239,227,0 +170750393287,227,0 +170750393335,228,0 +170750393383,225,0 +170750393431,216,0 +170750393481,216,0 +170750393528,217,0 +170750393578,219,0 +170750393626,222,0 +170750393675,222,0 +170750393723,222,0 +170750393773,223,0 +170750393821,224,0 +170750393868,224,0 +170750393918,226,0 +170750393966,227,0 +170750394015,226,0 +170750394065,226,0 +170750394113,227,0 +170750394161,227,0 +170750394209,228,0 +170750394257,227,0 +170750394305,227,0 +170750394353,216,0 +170750394402,216,0 +170750394452,216,0 +170750394501,218,0 +170750394551,219,0 +170750394599,220,0 +170750394648,222,0 +170750394696,222,0 +170750394744,223,0 +170750394794,224,0 +170750394843,225,0 +170750394893,226,0 +170750394941,228,0 +170750394989,226,0 +170750395038,226,0 +170750395086,228,0 +170750395134,228,0 +170750395184,227,0 +170750395232,227,0 +170750395281,216,0 +170750395329,216,0 +170750395377,218,0 +170750395425,218,0 +170750395473,220,0 +170750395521,221,0 +170750395571,222,0 +170750395619,222,0 +170750395667,222,0 +170750395714,223,0 +170750395762,223,0 +170750395810,224,0 +170750395860,224,0 +170750395909,226,0 +170750395959,227,0 +170750396007,227,0 +170750396056,227,0 +170750396104,227,0 +170750396152,227,0 +170750396200,218,0 +170750396248,217,0 +170750396298,218,0 +170750396346,219,0 +170750396394,220,0 +170750396441,221,0 +170750396491,222,0 +170750396539,222,0 +170750396588,223,0 +170750396636,225,0 +170750396686,226,0 +170750396735,228,0 +170750396785,228,0 +170750396834,230,0 +170750396882,229,0 +170750396932,228,0 +170750396980,227,0 +170750397028,227,0 +170750397076,226,0 +170750397124,217,0 +170750397171,216,0 +170750397219,217,0 +170750397267,219,0 +170750397315,220,0 +170750397363,222,0 +170750397411,223,0 +170750397459,224,0 +170750397507,224,0 +170750397555,225,0 +170750397602,226,0 +170750397652,226,0 +170750397700,227,0 +170750397749,231,0 +170750397797,228,0 +170750397845,225,0 +170750397893,228,0 +170750397941,227,0 +170750397989,227,0 +170750398038,218,0 +170750398086,215,0 +170750398134,216,0 +170750398182,218,0 +170750398230,218,0 +170750398278,220,0 +170750398326,219,0 +170750398373,221,0 +170750398423,223,0 +170750398471,223,0 +170750398520,224,0 +170750398570,226,0 +170750398619,227,0 +170750398667,227,0 +170750398715,227,0 +170750398764,228,0 +170750398812,227,0 +170750398862,228,0 +170750398911,227,0 +170750398959,226,0 +170750399009,216,0 +170750399057,216,0 +170750399105,216,0 +170750399154,217,0 +170750399202,218,0 +170750399252,219,0 +170750399301,219,0 +170750399351,221,0 +170750399400,223,0 +170750399450,223,0 +170750399498,223,0 +170750399546,224,0 +170750399595,226,0 +170750399645,226,0 +170750399694,225,0 +170750399742,226,0 +170750399790,227,0 +170750399838,227,0 +170750399886,226,0 +170750399934,216,0 +170750399982,215,0 +170750400031,216,0 +170750400079,216,0 +170750400127,216,0 +170750400175,217,0 +170750400223,217,0 +170750400271,218,0 +170750400319,220,0 +170750400368,221,0 +170750400416,224,0 +170750400466,223,0 +170750400514,223,0 +170750400562,225,0 +170750400611,225,0 +170750400659,226,0 +170750400709,225,0 +170750400758,226,0 +170750400806,227,0 +170750400854,216,0 +170750400904,216,0 +170750400952,216,0 +170750401000,216,0 +170750401049,217,0 +170750401099,217,0 +170750401147,218,0 +170750401195,218,0 +170750401243,218,0 +170750401291,220,0 +170750401340,221,0 +170750401388,222,0 +170750401436,224,0 +170750401485,224,0 +170750401533,225,0 +170750401581,225,0 +170750401629,226,0 +170750401677,226,0 +170750401727,227,0 +170750401775,216,0 +170750401824,215,0 +170750401872,216,0 +170750401920,216,0 +170750401970,217,0 +170750402018,217,0 +170750402067,218,0 +170750402117,219,0 +170750402166,220,0 +170750402216,221,0 +170750402265,220,0 +170750402313,224,0 +170750402361,223,0 +170750402409,224,0 +170750402459,226,0 +170750402507,226,0 +170750402555,228,0 +170750402603,226,0 +170750402650,228,0 +170750402698,217,0 +170750402746,215,0 +170750402794,216,0 +170750402842,215,0 +170750402891,217,0 +170750402939,217,0 +170750402987,218,0 +170750403035,219,0 +170750403083,220,0 +170750403131,220,0 +170750403179,223,0 +170750403227,222,0 +170750403276,225,0 +170750403324,225,0 +170750403372,226,0 +170750403420,226,0 +170750403467,227,0 +170750403517,227,0 +170750403566,228,0 +170750403614,217,0 +170750403662,216,0 +170750403710,215,0 +170750403758,216,0 +170750403806,217,0 +170750403854,217,0 +170750403904,219,0 +170750403953,220,0 +170750404003,221,0 +170750404050,222,0 +170750404098,222,0 +170750404148,223,0 +170750404196,225,0 +170750404243,226,0 +170750404291,226,0 +170750404341,226,0 +170750404389,227,0 +170750404437,227,0 +170750404486,227,0 +170750404534,217,0 +170750404582,215,0 +170750404630,216,0 +170750404678,217,0 +170750404728,217,0 +170750404776,219,0 +170750404825,219,0 +170750404873,220,0 +170750404921,221,0 +170750404971,223,0 +170750405019,223,0 +170750405067,227,0 +170750405116,226,0 +170750405164,226,0 +170750405214,227,0 +170750405262,227,0 +170750405311,227,0 +170750405359,227,0 +170750405407,227,0 +170750405457,223,0 +170750405506,215,0 +170750405554,216,0 +170750405602,217,0 +170750405652,218,0 +170750405701,219,0 +170750405751,219,0 +170750405799,220,0 +170750405847,221,0 +170750405896,221,0 +170750405944,223,0 +170750405992,224,0 +170750406041,225,0 +170750406091,225,0 +170750406139,228,0 +170750406189,228,0 +170750406237,227,0 +170750406285,227,0 +170750406332,230,0 +170750406382,227,0 +170750406432,216,0 +170750406480,217,0 +170750406527,217,0 +170750406577,218,0 +170750406626,220,0 +170750406674,221,0 +170750406724,222,0 +170750406772,223,0 +170750406821,224,0 +170750406871,225,0 +170750406920,226,0 +170750406968,227,0 +170750407016,227,0 +170750407064,227,0 +170750407114,227,0 +170750407162,228,0 +170750407211,228,0 +170750407261,227,0 +170750407309,226,0 +170750407357,219,0 +170750407405,220,0 +170750407453,222,0 +170750407502,222,0 +170750407552,223,0 +170750407600,223,0 +170750407649,226,0 +170750407699,225,0 +170750407748,226,0 +170750407796,226,0 +170750407844,228,0 +170750407892,227,0 +170750407940,227,0 +170750407988,228,0 +170750408036,228,0 +170750408084,228,0 +170750408132,227,0 +170750408180,227,0 +170750408228,225,0 +170750408277,224,0 +170750408327,223,0 +170750408376,224,0 +170750408426,226,0 +170750408474,225,0 +170750408524,226,0 +170750408572,227,0 +170750408619,228,0 +170750408667,227,0 +170750408717,227,0 +170750408766,227,0 +170750408816,227,0 +170750408864,228,0 +170750408912,227,0 +170750408960,227,0 +170750409008,228,0 +170750409056,227,0 +170750409104,227,0 +170750409153,227,0 +170750409201,221,0 +170750409249,222,0 +170750409299,222,0 +170750409348,226,0 +170750409396,224,0 +170750409444,224,0 +170750409494,225,0 +170750409542,226,0 +170750409591,225,0 +170750409639,228,0 +170750409689,227,0 +170750409737,228,0 +170750409785,228,0 +170750409832,227,0 +170750409882,228,0 +170750409930,227,0 +170750409980,228,0 +170750410027,227,0 +170750410077,226,0 +170750410127,219,0 +170750410176,219,0 +170750410224,220,0 +170750410272,221,0 +170750410321,222,0 +170750410371,225,0 +170750410419,223,0 +170750410467,224,0 +170750410517,224,0 +170750410565,224,0 +170750410614,228,0 +170750410662,227,0 +170750410710,229,0 +170750410758,228,0 +170750410806,229,0 +170750410854,228,0 +170750410902,227,0 +170750410951,227,0 +170750410999,227,0 +170750411047,217,0 +170750411095,215,0 +170750411143,216,0 +170750411191,217,0 +170750411240,218,0 +170750411290,219,0 +170750411339,221,0 +170750411389,223,0 +170750411438,222,0 +170750411486,223,0 +170750411536,223,0 +170750411583,225,0 +170750411631,225,0 +170750411681,226,0 +170750411729,228,0 +170750411777,227,0 +170750411825,227,0 +170750411873,227,0 +170750411921,229,0 +170750411969,217,0 +170750412017,215,0 +170750412065,216,0 +170750412112,216,0 +170750412160,216,0 +170750412208,217,0 +170750412256,217,0 +170750412304,217,0 +170750412352,218,0 +170750412400,219,0 +170750412448,221,0 +170750412496,221,0 +170750412544,222,0 +170750412593,224,0 +170750412643,226,0 +170750412692,225,0 +170750412742,225,0 +170750412790,227,0 +170750412838,227,0 +170750412885,227,0 +170750412933,216,0 +170750412981,215,0 +170750413031,215,0 +170750413079,215,0 +170750413126,216,0 +170750413174,217,0 +170750413222,218,0 +170750413270,219,0 +170750413320,220,0 +170750413368,220,0 +170750413415,222,0 +170750413463,223,0 +170750413511,224,0 +170750413559,225,0 +170750413607,226,0 +170750413655,225,0 +170750413703,226,0 +170750413751,227,0 +170750413799,225,0 +170750413848,215,0 +170750413898,215,0 +170750413946,216,0 +170750413994,215,0 +170750414043,217,0 +170750414093,219,0 +170750414141,218,0 +170750414189,222,0 +170750414237,221,0 +170750414286,223,0 +170750414336,224,0 +170750414384,225,0 +170750414433,225,0 +170750414483,225,0 +170750414532,226,0 +170750414580,227,0 +170750414628,226,0 +170750414676,227,0 +170750414724,225,0 +170750414773,216,0 +170750414821,216,0 +170750414871,216,0 +170750414919,215,0 +170750414968,218,0 +170750415016,218,0 +170750415064,218,0 +170750415114,220,0 +170750415163,221,0 +170750415211,222,0 +170750415259,223,0 +170750415309,225,0 +170750415358,225,0 +170750415406,225,0 +170750415456,228,0 +170750415505,226,0 +170750415553,227,0 +170750415603,227,0 +170750415652,226,0 +170750415700,216,0 +170750415750,216,0 +170750415799,215,0 +170750415847,216,0 +170750415895,217,0 +170750415945,218,0 +170750415994,220,0 +170750416042,220,0 +170750416090,221,0 +170750416138,222,0 +170750416188,223,0 +170750416236,223,0 +170750416285,224,0 +170750416333,227,0 +170750416381,227,0 +170750416429,225,0 +170750416477,226,0 +170750416525,226,0 +170750416572,227,0 +170750416620,217,0 +170750416670,215,0 +170750416717,216,0 +170750416765,216,0 +170750416813,217,0 +170750416861,218,0 +170750416909,219,0 +170750416957,220,0 +170750417005,221,0 +170750417053,221,0 +170750417101,223,0 +170750417150,223,0 +170750417200,224,0 +170750417248,225,0 +170750417295,225,0 +170750417343,225,0 +170750417393,226,0 +170750417441,227,0 +170750417489,228,0 +170750417537,218,0 +170750417585,215,0 +170750417633,216,0 +170750417681,216,0 +170750417728,217,0 +170750417776,218,0 +170750417824,219,0 +170750417874,221,0 +170750417921,223,0 +170750417969,222,0 +170750418017,222,0 +170750418065,224,0 +170750418115,226,0 +170750418164,226,0 +170750418212,226,0 +170750418260,227,0 +170750418308,227,0 +170750418356,227,0 +170750418405,224,0 +170750418453,221,0 +170750418501,215,0 +170750418549,215,0 +170750418597,216,0 +170750418646,216,0 +170750418696,216,0 +170750418744,217,0 +170750418792,218,0 +170750418841,220,0 +170750418891,220,0 +170750418940,222,0 +170750418988,223,0 +170750419038,225,0 +170750419086,225,0 +170750419134,225,0 +170750419182,227,0 +170750419230,226,0 +170750419278,227,0 +170750419326,228,0 +170750419374,226,0 +170750419423,216,0 +170750419473,216,0 +170750419521,216,0 +170750419569,217,0 +170750419617,219,0 +170750419666,220,0 +170750419716,220,0 +170750419765,222,0 +170750419813,222,0 +170750419861,222,0 +170750419909,224,0 +170750419959,225,0 +170750420008,228,0 +170750420056,227,0 +170750420104,225,0 +170750420153,228,0 +170750420201,230,0 +170750420249,228,0 +170750420297,227,0 +170750420345,217,0 +170750420393,217,0 +170750420442,218,0 +170750420492,219,0 +170750420540,222,0 +170750420589,222,0 +170750420637,222,0 +170750420685,223,0 +170750420735,223,0 +170750420784,224,0 +170750420832,225,0 +170750420882,225,0 +170750420930,227,0 +170750420979,227,0 +170750421029,227,0 +170750421078,228,0 +170750421128,228,0 +170750421176,228,0 +170750421224,227,0 +170750421273,216,0 +170750421321,218,0 +170750421369,219,0 +170750421419,220,0 +170750421468,221,0 +170750421516,221,0 +170750421566,222,0 +170750421614,221,0 +170750421663,223,0 +170750421713,224,0 +170750421762,225,0 +170750421810,226,0 +170750421860,227,0 +170750421908,227,0 +170750421956,227,0 +170750422003,227,0 +170750422051,228,0 +170750422101,228,0 +170750422149,227,0 +170750422197,216,0 +170750422245,216,0 +170750422293,218,0 +170750422342,220,0 +170750422390,220,0 +170750422438,221,0 +170750422486,221,0 +170750422534,223,0 +170750422582,223,0 +170750422631,224,0 +170750422679,226,0 +170750422727,225,0 +170750422775,226,0 +170750422825,227,0 +170750422874,227,0 +170750422924,229,0 +170750422973,234,0 +170750423021,228,0 +170750423071,226,0 +170750423120,216,0 +170750423168,216,0 +170750423216,218,0 +170750423264,218,0 +170750423314,219,0 +170750423362,220,0 +170750423411,221,0 +170750423459,220,0 +170750423507,223,0 +170750423557,224,0 +170750423605,225,0 +170750423653,225,0 +170750423702,225,0 +170750423752,226,0 +170750423801,227,0 +170750423851,228,0 +170750423898,227,0 +170750423946,229,0 +170750423994,226,0 +170750424044,216,0 +170750424093,215,0 +170750424141,216,0 +170750424191,216,0 +170750424239,218,0 +170750424287,217,0 +170750424335,220,0 +170750424384,221,0 +170750424434,221,0 +170750424482,222,0 +170750424530,223,0 +170750424579,224,0 +170750424627,226,0 +170750424675,226,0 +170750424723,226,0 +170750424771,227,0 +170750424821,227,0 +170750424869,227,0 +170750424917,227,0 +170750424965,217,0 +170750425013,215,0 +170750425062,216,0 +170750425110,217,0 +170750425158,218,0 +170750425206,219,0 +170750425254,221,0 +170750425304,220,0 +170750425353,220,0 +170750425401,222,0 +170750425451,224,0 +170750425500,224,0 +170750425548,228,0 +170750425596,226,0 +170750425644,226,0 +170750425692,227,0 +170750425740,227,0 +170750425788,228,0 +170750425836,228,0 +170750425884,217,0 +170750425932,216,0 +170750425980,217,0 +170750426028,218,0 +170750426076,219,0 +170750426124,219,0 +170750426173,220,0 +170750426223,220,0 +170750426271,221,0 +170750426320,222,0 +170750426370,223,0 +170750426418,225,0 +170750426466,225,0 +170750426515,228,0 +170750426563,227,0 +170750426611,228,0 +170750426659,228,0 +170750426707,228,0 +170750426755,228,0 +170750426803,223,0 +170750426851,216,0 +170750426901,216,0 +170750426949,216,0 +170750426996,218,0 +170750427044,219,0 +170750427092,219,0 +170750427140,220,0 +170750427190,220,0 +170750427238,223,0 +170750427286,223,0 +170750427334,223,0 +170750427382,224,0 +170750427431,226,0 +170750427479,228,0 +170750427527,227,0 +170750427575,227,0 +170750427623,227,0 +170750427673,227,0 +170750427721,227,0 +170750427769,216,0 +170750427817,216,0 +170750427865,216,0 +170750427913,216,0 +170750427962,217,0 +170750428010,218,0 +170750428058,219,0 +170750428108,220,0 +170750428157,222,0 +170750428205,223,0 +170750428255,223,0 +170750428304,224,0 +170750428352,226,0 +170750428400,227,0 +170750428448,228,0 +170750428496,227,0 +170750428544,229,0 +170750428592,229,0 +170750428640,226,0 +170750428690,216,0 +170750428738,216,0 +170750428787,219,0 +170750428835,216,0 +170750428883,218,0 +170750428933,218,0 +170750428981,222,0 +170750429030,223,0 +170750429078,222,0 +170750429128,223,0 +170750429177,224,0 +170750429225,225,0 +170750429275,227,0 +170750429323,226,0 +170750429371,227,0 +170750429419,228,0 +170750429467,227,0 +170750429515,228,0 +170750429563,226,0 +170750429612,218,0 +170750429662,217,0 +170750429710,218,0 +170750429758,220,0 +170750429806,222,0 +170750429854,222,0 +170750429902,222,0 +170750429950,224,0 +170750429998,224,0 +170750430045,225,0 +170750430093,227,0 +170750430141,226,0 +170750430189,229,0 +170750430237,227,0 +170750430285,228,0 +170750430333,228,0 +170750430381,228,0 +170750430429,227,0 +170750430477,226,0 +170750430525,217,0 +170750430575,216,0 +170750430624,216,0 +170750430672,217,0 +170750430721,219,0 +170750430771,220,0 +170750430819,221,0 +170750430868,223,0 +170750430916,225,0 +170750430966,222,0 +170750431015,224,0 +170750431065,225,0 +170750431113,228,0 +170750431161,226,0 +170750431209,227,0 +170750431257,228,0 +170750431306,228,0 +170750431354,227,0 +170750431404,227,0 +170750431453,218,0 +170750431501,216,0 +170750431551,216,0 +170750431599,216,0 +170750431647,217,0 +170750431695,219,0 +170750431742,219,0 +170750431792,220,0 +170750431841,222,0 +170750431891,222,0 +170750431939,223,0 +170750431987,223,0 +170750432036,226,0 +170750432084,226,0 +170750432134,225,0 +170750432183,228,0 +170750432233,227,0 +170750432282,228,0 +170750432332,227,0 +170750432381,217,0 +170750432429,216,0 +170750432477,215,0 +170750432525,216,0 +170750432573,216,0 +170750432621,216,0 +170750432669,217,0 +170750432719,218,0 +170750432768,219,0 +170750432816,221,0 +170750432866,221,0 +170750432913,222,0 +170750432962,223,0 +170750433011,226,0 +170750433059,225,0 +170750433109,226,0 +170750433156,226,0 +170750433206,225,0 +170750433256,227,0 +170750433305,217,0 +170750433355,215,0 +170750433403,216,0 +170750433451,216,0 +170750433498,217,0 +170750433548,217,0 +170750433597,219,0 +170750433647,220,0 +170750433697,220,0 +170750433744,221,0 +170750433792,224,0 +170750433840,223,0 +170750433888,224,0 +170750433936,226,0 +170750433984,226,0 +170750434032,226,0 +170750434080,226,0 +170750434128,227,0 +170750434178,228,0 +170750434227,218,0 +170750434277,215,0 +170750434326,216,0 +170750434374,216,0 +170750434422,217,0 +170750434470,218,0 +170750434518,219,0 +170750434566,221,0 +170750434616,221,0 +170750434665,222,0 +170750434713,223,0 +170750434761,225,0 +170750434809,224,0 +170750434859,227,0 +170750434908,227,0 +170750434956,227,0 +170750435004,228,0 +170750435054,226,0 +170750435102,228,0 +170750435150,226,0 +170750435198,215,0 +170750435247,215,0 +170750435297,216,0 +170750435346,216,0 +170750435396,217,0 +170750435445,218,0 +170750435493,219,0 +170750435541,221,0 +170750435589,222,0 +170750435637,223,0 +170750435685,223,0 +170750435735,223,0 +170750435784,227,0 +170750435832,225,0 +170750435880,226,0 +170750435928,227,0 +170750435978,226,0 +170750436027,227,0 +170750436077,227,0 +170750436125,216,0 +170750436172,216,0 +170750436221,217,0 +170750436270,218,0 +170750436319,219,0 +170750436367,220,0 +170750436417,220,0 +170750436467,221,0 +170750436515,225,0 +170750436563,223,0 +170750436611,223,0 +170750436659,224,0 +170750436708,227,0 +170750436756,228,0 +170750436804,225,0 +170750436854,226,0 +170750436902,230,0 +170750436950,225,0 +170750436997,227,0 +170750437046,216,0 +170750437095,217,0 +170750437144,218,0 +170750437192,219,0 +170750437242,221,0 +170750437291,220,0 +170750437339,222,0 +170750437387,222,0 +170750437435,223,0 +170750437483,223,0 +170750437533,226,0 +170750437581,224,0 +170750437629,228,0 +170750437678,228,0 +170750437726,228,0 +170750437774,229,0 +170750437822,227,0 +170750437872,228,0 +170750437920,227,0 +170750437969,217,0 +170750438019,218,0 +170750438067,220,0 +170750438117,221,0 +170750438166,221,0 +170750438214,222,0 +170750438264,223,0 +170750438313,224,0 +170750438361,223,0 +170750438409,226,0 +170750438457,226,0 +170750438507,226,0 +170750438555,227,0 +170750438602,226,0 +170750438650,228,0 +170750438698,227,0 +170750438748,227,0 +170750438797,227,0 +170750438845,226,0 +170750438893,219,0 +170750438941,220,0 +170750438991,220,0 +170750439039,222,0 +170750439087,221,0 +170750439136,223,0 +170750439186,227,0 +170750439236,225,0 +170750439285,225,0 +170750439335,227,0 +170750439383,226,0 +170750439430,228,0 +170750439478,227,0 +170750439526,228,0 +170750439576,227,0 +170750439625,228,0 +170750439673,227,0 +170750439721,227,0 +170750439771,227,0 +170750439820,218,0 +170750439868,220,0 +170750439916,218,0 +170750439964,222,0 +170750440012,222,0 +170750440060,222,0 +170750440109,223,0 +170750440157,224,0 +170750440205,224,0 +170750440253,226,0 +170750440301,226,0 +170750440351,226,0 +170750440399,227,0 +170750440447,228,0 +170750440495,229,0 +170750440544,229,0 +170750440594,228,0 +170750440642,228,0 +170750440690,226,0 +170750440738,220,0 +170750440786,219,0 +170750440834,220,0 +170750440883,221,0 +170750440931,226,0 +170750440981,224,0 +170750441030,225,0 +170750441078,224,0 +170750441126,226,0 +170750441176,226,0 +170750441224,228,0 +170750441272,226,0 +170750441321,227,0 +170750441369,228,0 +170750441417,229,0 +170750441465,228,0 +170750441513,228,0 +170750441561,228,0 +170750441611,227,0 +170750441659,219,0 +170750441706,217,0 +170750441756,219,0 +170750441804,220,0 +170750441854,221,0 +170750441901,222,0 +170750441949,223,0 +170750441997,224,0 +170750442045,224,0 +170750442093,224,0 +170750442141,227,0 +170750442190,229,0 +170750442238,227,0 +170750442288,228,0 +170750442336,228,0 +170750442384,227,0 +170750442432,227,0 +170750442480,225,0 +170750442528,227,0 +170750442576,223,0 +170750442624,216,0 +170750442673,216,0 +170750442721,216,0 +170750442771,217,0 +170750442819,218,0 +170750442867,219,0 +170750442915,220,0 +170750442963,220,0 +170750443011,221,0 +170750443059,224,0 +170750443107,224,0 +170750443154,225,0 +170750443202,226,0 +170750443250,228,0 +170750443298,227,0 +170750443346,227,0 +170750443394,226,0 +170750443442,228,0 +170750443490,226,0 +170750443538,216,0 +170750443587,216,0 +170750443637,216,0 +170750443685,216,0 +170750443733,216,0 +170750443780,217,0 +170750443830,218,0 +170750443878,219,0 +170750443926,221,0 +170750443974,221,0 +170750444023,221,0 +170750444071,223,0 +170750444119,224,0 +170750444169,225,0 +170750444217,226,0 +170750444266,226,0 +170750444316,225,0 +170750444364,226,0 +170750444412,227,0 +170750444460,216,0 +170750444508,215,0 +170750444557,216,0 +170750444605,216,0 +170750444653,216,0 +170750444702,217,0 +170750444750,218,0 +170750444798,221,0 +170750444846,220,0 +170750444894,222,0 +170750444942,222,0 +170750444992,225,0 +170750445040,224,0 +170750445088,226,0 +170750445135,228,0 +170750445183,227,0 +170750445233,227,0 +170750445283,227,0 +170750445331,227,0 +170750445380,216,0 +170750445430,216,0 +170750445478,216,0 +170750445525,216,0 +170750445573,216,0 +170750445621,217,0 +170750445669,218,0 +170750445719,219,0 +170750445768,220,0 +170750445816,221,0 +170750445864,222,0 +170750445912,224,0 +170750445960,225,0 +170750446008,225,0 +170750446058,226,0 +170750446106,227,0 +170750446155,229,0 +170750446205,228,0 +170750446253,227,0 +170750446301,217,0 +170750446349,215,0 +170750446397,215,0 +170750446445,216,0 +170750446493,217,0 +170750446542,218,0 +170750446592,220,0 +170750446639,220,0 +170750446687,221,0 +170750446735,222,0 +170750446783,227,0 +170750446833,221,0 +170750446882,225,0 +170750446930,226,0 +170750446980,228,0 +170750447029,229,0 +170750447079,227,0 +170750447128,228,0 +170750447176,227,0 +170750447224,218,0 +170750447274,216,0 +170750447323,216,0 +170750447371,217,0 +170750447419,218,0 +170750447467,218,0 +170750447515,220,0 +170750447563,220,0 +170750447611,222,0 +170750447659,223,0 +170750447708,224,0 +170750447758,225,0 +170750447806,227,0 +170750447853,229,0 +170750447901,228,0 +170750447949,227,0 +170750447997,228,0 +170750448047,228,0 +170750448096,229,0 +170750448144,217,0 +170750448192,216,0 +170750448242,216,0 +170750448291,216,0 +170750448341,216,0 +170750448390,217,0 +170750448440,217,0 +170750448488,217,0 +170750448536,218,0 +170750448585,220,0 +170750448633,221,0 +170750448683,222,0 +170750448732,224,0 +170750448780,224,0 +170750448830,225,0 +170750448878,225,0 +170750448927,226,0 +170750448975,226,0 +170750449025,226,0 +170750449074,217,0 +170750449122,215,0 +170750449170,216,0 +170750449220,216,0 +170750449268,216,0 +170750449317,216,0 +170750449365,217,0 +170750449415,217,0 +170750449463,218,0 +170750449511,216,0 +170750449559,220,0 +170750449607,221,0 +170750449656,221,0 +170750449704,223,0 +170750449752,224,0 +170750449800,225,0 +170750449848,225,0 +170750449896,226,0 +170750449944,227,0 +170750449993,217,0 +170750450043,216,0 +170750450091,216,0 +170750450139,217,0 +170750450188,217,0 +170750450236,218,0 +170750450284,220,0 +170750450332,220,0 +170750450380,221,0 +170750450427,221,0 +170750450475,223,0 +170750450523,225,0 +170750450573,226,0 +170750450621,226,0 +170750450670,225,0 +170750450720,224,0 +170750450767,228,0 +170750450815,226,0 +170750450863,228,0 +170750450913,223,0 +170750450962,218,0 +170750451010,218,0 +170750451058,220,0 +170750451106,221,0 +170750451154,223,0 +170750451203,223,0 +170750451251,223,0 +170750451299,224,0 +170750451347,224,0 +170750451395,227,0 +170750451443,227,0 +170750451490,227,0 +170750451538,226,0 +170750451586,228,0 +170750451634,227,0 +170750451682,227,0 +170750451730,227,0 +170750451778,227,0 +170750451826,226,0 +170750451874,219,0 +170750451921,219,0 +170750451969,220,0 +170750452017,221,0 +170750452067,222,0 +170750452116,222,0 +170750452164,224,0 +170750452212,224,0 +170750452260,226,0 +170750452308,225,0 +170750452356,226,0 +170750452403,227,0 +170750452453,227,0 +170750452502,228,0 +170750452552,227,0 +170750452601,228,0 +170750452649,229,0 +170750452699,228,0 +170750452747,226,0 +170750452795,217,0 +170750452844,216,0 +170750452892,218,0 +170750452940,219,0 +170750452989,220,0 +170750453037,221,0 +170750453087,222,0 +170750453135,223,0 +170750453184,224,0 +170750453232,224,0 +170750453280,226,0 +170750453330,226,0 +170750453378,227,0 +170750453427,228,0 +170750453477,226,0 +170750453526,227,0 +170750453574,228,0 +170750453622,228,0 +170750453672,227,0 +170750453721,216,0 +170750453769,215,0 +170750453819,215,0 +170750453867,216,0 +170750453915,216,0 +170750453963,217,0 +170750454011,218,0 +170750454060,219,0 +170750454108,220,0 +170750454156,220,0 +170750454204,222,0 +170750454253,225,0 +170750454301,225,0 +170750454349,225,0 +170750454397,226,0 +170750454447,227,0 +170750454494,228,0 +170750454544,227,0 +170750454592,228,0 +170750454640,218,0 +170750454688,216,0 +170750454736,216,0 +170750454784,216,0 +170750454832,217,0 +170750454880,218,0 +170750454928,220,0 +170750454977,220,0 +170750455027,220,0 +170750455076,222,0 +170750455124,223,0 +170750455172,225,0 +170750455220,224,0 +170750455270,226,0 +170750455319,226,0 +170750455369,225,0 +170750455417,226,0 +170750455467,226,0 +170750455516,228,0 +170750455564,217,0 +170750455612,216,0 +170750455660,216,0 +170750455709,216,0 +170750455759,218,0 +170750455807,219,0 +170750455855,220,0 +170750455905,221,0 +170750455954,223,0 +170750456002,222,0 +170750456050,223,0 +170750456099,225,0 +170750456147,226,0 +170750456195,226,0 +170750456243,228,0 +170750456293,228,0 +170750456341,226,0 +170750456390,227,0 +170750456440,227,0 +170750456488,218,0 +170750456537,216,0 +170750456585,216,0 +170750456633,216,0 +170750456681,216,0 +170750456731,218,0 +170750456779,219,0 +170750456828,220,0 +170750456876,220,0 +170750456924,222,0 +170750456972,222,0 +170750457022,223,0 +170750457070,224,0 +170750457119,225,0 +170750457167,226,0 +170750457215,224,0 +170750457265,224,0 +170750457314,223,0 +170750457362,226,0 +170750457410,217,0 +170750457460,216,0 +170750457508,217,0 +170750457557,216,0 +170750457607,216,0 +170750457655,217,0 +170750457703,218,0 +170750457751,218,0 +170750457798,219,0 +170750457848,221,0 +170750457896,222,0 +170750457945,224,0 +170750457995,225,0 +170750458044,226,0 +170750458092,226,0 +170750458140,227,0 +170750458188,225,0 +170750458238,230,0 +170750458287,227,0 +170750458337,218,0 +170750458386,216,0 +170750458436,216,0 +170750458485,216,0 +170750458533,217,0 +170750458583,217,0 +170750458631,218,0 +170750458680,218,0 +170750458728,220,0 +170750458778,221,0 +170750458826,223,0 +170750458875,223,0 +170750458925,223,0 +170750458973,224,0 +170750459021,225,0 +170750459069,225,0 +170750459117,228,0 +170750459165,228,0 +170750459213,227,0 +170750459262,225,0 +170750459312,216,0 +170750459360,217,0 +170750459408,215,0 +170750459456,218,0 +170750459504,219,0 +170750459552,219,0 +170750459600,220,0 +170750459648,222,0 +170750459695,223,0 +170750459743,224,0 +170750459793,225,0 +170750459841,225,0 +170750459890,227,0 +170750459938,226,0 +170750459986,226,0 +170750460034,227,0 +170750460082,228,0 +170750460130,227,0 +170750460178,227,0 +170750460226,217,0 +170750460274,216,0 +170750460322,217,0 +170750460372,218,0 +170750460421,219,0 +170750460471,219,0 +170750460520,220,0 +170750460570,221,0 +170750460619,223,0 +170750460669,223,0 +170750460718,225,0 +170750460766,225,0 +170750460814,227,0 +170750460864,226,0 +170750460912,226,0 +170750460959,227,0 +170750461008,229,0 +170750461057,228,0 +170750461105,226,0 +170750461153,216,0 +170750461201,216,0 +170750461251,217,0 +170750461299,218,0 +170750461348,219,0 +170750461398,220,0 +170750461446,221,0 +170750461493,222,0 +170750461541,222,0 +170750461591,223,0 +170750461641,225,0 +170750461690,226,0 +170750461740,225,0 +170750461787,226,0 +170750461835,227,0 +170750461885,228,0 +170750461934,227,0 +170750461982,227,0 +170750462032,223,0 +170750462082,216,0 +170750462130,217,0 +170750462178,218,0 +170750462225,218,0 +170750462273,219,0 +170750462321,221,0 +170750462369,221,0 +170750462417,222,0 +170750462467,223,0 +170750462516,224,0 +170750462564,225,0 +170750462614,225,0 +170750462662,226,0 +170750462711,228,0 +170750462761,227,0 +170750462809,227,0 +170750462857,227,0 +170750462906,228,0 +170750462956,226,0 +170750463004,217,0 +170750463053,217,0 +170750463101,219,0 +170750463151,220,0 +170750463200,221,0 +170750463248,223,0 +170750463296,222,0 +170750463344,223,0 +170750463394,224,0 +170750463442,225,0 +170750463489,226,0 +170750463539,227,0 +170750463589,227,0 +170750463638,228,0 +170750463686,229,0 +170750463734,227,0 +170750463782,227,0 +170750463831,219,0 +170750463879,226,0 +170750463929,216,0 +170750463978,217,0 +170750464026,217,0 +170750464074,218,0 +170750464122,220,0 +170750464170,220,0 +170750464220,221,0 +170750464269,223,0 +170750464317,223,0 +170750464366,225,0 +170750464414,225,0 +170750464462,225,0 +170750464510,227,0 +170750464558,227,0 +170750464606,227,0 +170750464654,229,0 +170750464702,229,0 +170750464750,227,0 +170750464797,227,0 +170750464845,217,0 +170750464893,216,0 +170750464941,216,0 +170750464991,217,0 +170750465039,218,0 +170750465087,219,0 +170750465135,219,0 +170750465183,220,0 +170750465232,221,0 +170750465280,222,0 +170750465330,223,0 +170750465378,224,0 +170750465427,226,0 +170750465475,228,0 +170750465523,227,0 +170750465571,228,0 +170750465619,227,0 +170750465669,228,0 +170750465716,228,0 +170750465764,218,0 +170750465812,217,0 +170750465860,217,0 +170750465908,219,0 +170750465958,219,0 +170750466006,219,0 +170750466054,220,0 +170750466102,222,0 +170750466150,222,0 +170750466198,223,0 +170750466247,225,0 +170750466295,226,0 +170750466345,226,0 +170750466394,228,0 +170750466442,228,0 +170750466490,228,0 +170750466540,229,0 +170750466589,230,0 +170750466637,228,0 +170750466687,218,0 +170750466736,217,0 +170750466784,219,0 +170750466832,220,0 +170750466880,220,0 +170750466928,222,0 +170750466976,222,0 +170750467024,223,0 +170750467072,223,0 +170750467122,225,0 +170750467170,227,0 +170750467217,228,0 +170750467265,227,0 +170750467315,227,0 +170750467363,227,0 +170750467412,228,0 +170750467460,229,0 +170750467508,229,0 +170750467556,228,0 +170750467606,217,0 +170750467655,217,0 +170750467703,217,0 +170750467751,219,0 +170750467801,221,0 +170750467849,221,0 +170750467897,222,0 +170750467945,222,0 +170750467994,225,0 +170750468042,224,0 +170750468090,226,0 +170750468138,227,0 +170750468186,228,0 +170750468234,227,0 +170750468282,228,0 +170750468331,227,0 +170750468379,229,0 +170750468427,230,0 +170750468475,228,0 +170750468523,225,0 +170750468571,216,0 +170750468619,217,0 +170750468667,218,0 +170750468715,220,0 +170750468763,221,0 +170750468813,220,0 +170750468862,222,0 +170750468910,224,0 +170750468960,224,0 +170750469009,224,0 +170750469057,225,0 +170750469105,226,0 +170750469153,227,0 +170750469201,228,0 +170750469251,227,0 +170750469298,227,0 +170750469348,227,0 +170750469396,229,0 +170750469446,227,0 +170750469493,215,0 +170750469541,216,0 +170750469591,218,0 +170750469639,219,0 +170750469687,220,0 +170750469735,220,0 +170750469783,222,0 +170750469831,222,0 +170750469880,223,0 +170750469928,224,0 +170750469976,226,0 +170750470024,226,0 +170750470072,226,0 +170750470121,226,0 +170750470169,226,0 +170750470219,227,0 +170750470267,228,0 +170750470315,227,0 +170750470363,227,0 +170750470411,217,0 +170750470459,216,0 +170750470507,216,0 +170750470556,217,0 +170750470604,218,0 +170750470654,219,0 +170750470702,221,0 +170750470750,221,0 +170750470798,221,0 +170750470847,223,0 +170750470897,224,0 +170750470946,225,0 +170750470996,226,0 +170750471044,227,0 +170750471092,226,0 +170750471139,227,0 +170750471189,229,0 +170750471238,227,0 +170750471286,227,0 +170750471334,216,0 +170750471382,215,0 +170750471430,214,0 +170750471478,215,0 +170750471526,214,0 +170750471574,214,0 +170750471622,215,0 +170750471669,215,0 +170750471717,215,0 +170750471765,215,0 +170750471813,216,0 +170750471861,216,0 +170750471910,217,0 +170750471958,216,0 +170750472006,217,0 +170750472054,218,0 +170750472102,219,0 +170750472150,219,0 +170750472198,220,0 +170750472246,222,0 +170750472294,222,0 +170750472343,225,0 +170750472391,224,0 +170750472439,226,0 +170750472487,225,0 +170750472536,228,0 +170750472584,226,0 +170750472632,227,0 +170750472680,227,0 +170750472728,217,0 +170750472776,217,0 +170750472826,219,0 +170750472875,220,0 +170750472923,221,0 +170750472971,222,0 +170750473021,223,0 +170750473069,223,0 +170750473118,224,0 +170750473166,225,0 +170750473214,226,0 +170750473262,225,0 +170750473310,227,0 +170750473358,227,0 +170750473406,229,0 +170750473454,227,0 +170750473504,228,0 +170750473553,228,0 +170750473603,228,0 +170750473651,220,0 +170750473699,220,0 +170750473748,220,0 +170750473796,221,0 +170750473844,222,0 +170750473892,223,0 +170750473940,224,0 +170750473990,224,0 +170750474038,225,0 +170750474087,226,0 +170750474135,226,0 +170750474183,227,0 +170750474233,228,0 +170750474282,228,0 +170750474332,232,0 +170750474380,229,0 +170750474428,229,0 +170750474476,228,0 +170750474524,227,0 +170750474571,218,0 +170750474621,217,0 +170750474669,220,0 +170750474718,220,0 +170750474768,221,0 +170750474816,222,0 +170750474864,222,0 +170750474912,223,0 +170750474960,224,0 +170750475009,224,0 +170750475057,225,0 +170750475105,227,0 +170750475153,227,0 +170750475202,228,0 +170750475250,227,0 +170750475298,227,0 +170750475346,229,0 +170750475396,227,0 +170750475444,227,0 +170750475492,218,0 +170750475540,216,0 +170750475589,216,0 +170750475639,217,0 +170750475687,217,0 +170750475734,219,0 +170750475782,220,0 +170750475830,221,0 +170750475880,221,0 +170750475930,222,0 +170750475977,223,0 +170750476025,225,0 +170750476073,225,0 +170750476123,226,0 +170750476171,226,0 +170750476219,228,0 +170750476269,227,0 +170750476318,227,0 +170750476366,228,0 +170750476414,218,0 +170750476464,215,0 +170750476512,216,0 +170750476561,216,0 +170750476609,217,0 +170750476659,217,0 +170750476707,218,0 +170750476754,219,0 +170750476802,219,0 +170750476852,221,0 +170750476901,222,0 +170750476949,222,0 +170750476999,225,0 +170750477047,225,0 +170750477095,225,0 +170750477144,226,0 +170750477192,226,0 +170750477242,227,0 +170750477291,227,0 +170750477341,217,0 +170750477389,215,0 +170750477438,216,0 +170750477488,216,0 +170750477536,216,0 +170750477584,216,0 +170750477632,216,0 +170750477681,217,0 +170750477729,217,0 +170750477777,218,0 +170750477826,220,0 +170750477876,221,0 +170750477924,223,0 +170750477972,224,0 +170750478020,225,0 +170750478067,225,0 +170750478115,225,0 +170750478163,227,0 +170750478211,227,0 +170750478259,223,0 +170750478307,216,0 +170750478355,216,0 +170750478403,217,0 +170750478450,217,0 +170750478498,217,0 +170750478546,217,0 +170750478594,218,0 +170750478644,221,0 +170750478692,220,0 +170750478740,222,0 +170750478788,223,0 +170750478836,224,0 +170750478885,225,0 +170750478935,227,0 +170750478982,226,0 +170750479032,229,0 +170750479080,225,0 +170750479128,226,0 +170750479176,224,0 +170750479225,216,0 +170750479275,215,0 +170750479323,216,0 +170750479372,216,0 +170750479420,216,0 +170750479469,216,0 +170750479519,218,0 +170750479567,218,0 +170750479616,220,0 +170750479664,220,0 +170750479712,221,0 +170750479762,222,0 +170750479811,223,0 +170750479859,223,0 +170750479909,225,0 +170750479958,226,0 +170750480006,225,0 +170750480056,226,0 +170750480105,226,0 +170750480155,216,0 +170750480203,215,0 +170750480252,216,0 +170750480300,217,0 +170750480350,219,0 +170750480398,220,0 +170750480446,220,0 +170750480494,221,0 +170750480543,220,0 +170750480593,224,0 +170750480641,224,0 +170750480690,224,0 +170750480738,226,0 +170750480786,226,0 +170750480836,229,0 +170750480885,227,0 +170750480933,229,0 +170750480981,227,0 +170750481029,227,0 +170750481077,216,0 +170750481125,217,0 +170750481175,217,0 +170750481223,219,0 +170750481272,219,0 +170750481320,220,0 +170750481368,221,0 +170750481416,221,0 +170750481466,222,0 +170750481514,225,0 +170750481562,226,0 +170750481611,224,0 +170750481659,228,0 +170750481709,226,0 +170750481757,225,0 +170750481805,227,0 +170750481852,226,0 +170750481902,227,0 +170750481952,226,0 +170750482000,218,0 +170750482048,218,0 +170750482096,219,0 +170750482144,221,0 +170750482193,221,0 +170750482241,221,0 +170750482289,223,0 +170750482337,222,0 +170750482385,224,0 +170750482433,224,0 +170750482480,225,0 +170750482530,226,0 +170750482578,227,0 +170750482626,226,0 +170750482674,227,0 +170750482722,227,0 +170750482770,228,0 +170750482818,228,0 +170750482866,227,0 +170750482915,219,0 +170750482963,218,0 +170750483011,218,0 +170750483059,220,0 +170750483109,221,0 +170750483156,221,0 +170750483204,223,0 +170750483252,223,0 +170750483300,225,0 +170750483348,225,0 +170750483396,226,0 +170750483444,228,0 +170750483492,227,0 +170750483542,229,0 +170750483591,229,0 +170750483639,227,0 +170750483687,229,0 +170750483737,228,0 +170750483785,227,0 +170750483832,220,0 +170750483880,217,0 +170750483928,219,0 +170750483976,221,0 +170750484024,221,0 +170750484072,223,0 +170750484120,225,0 +170750484168,224,0 +170750484216,226,0 +170750484264,226,0 +170750484311,228,0 +170750484359,228,0 +170750484409,228,0 +170750484457,229,0 +170750484505,229,0 +170750484554,227,0 +170750484602,228,0 +170750484650,228,0 +170750484700,226,0 +170750484749,225,0 +170750484797,218,0 +170750484845,219,0 +170750484895,220,0 +170750484943,221,0 +170750484992,222,0 +170750485040,223,0 +170750485088,223,0 +170750485136,224,0 +170750485184,226,0 +170750485234,229,0 +170750485281,227,0 +170750485331,228,0 +170750485379,227,0 +170750485428,227,0 +170750485476,227,0 +170750485524,227,0 +170750485574,228,0 +170750485622,227,0 +170750485670,226,0 +170750485718,216,0 +170750485766,217,0 +170750485814,218,0 +170750485863,219,0 +170750485913,220,0 +170750485961,221,0 +170750486008,222,0 +170750486058,222,0 +170750486106,224,0 +170750486154,224,0 +170750486202,226,0 +170750486250,226,0 +170750486299,226,0 +170750486349,226,0 +170750486398,227,0 +170750486446,227,0 +170750486494,227,0 +170750486542,227,0 +170750486590,226,0 +170750486638,217,0 +170750486686,216,0 +170750486735,216,0 +170750486783,217,0 +170750486831,218,0 +170750486879,219,0 +170750486927,219,0 +170750486975,220,0 +170750487023,221,0 +170750487071,222,0 +170750487119,224,0 +170750487167,224,0 +170750487215,226,0 +170750487263,227,0 +170750487313,226,0 +170750487361,227,0 +170750487408,228,0 +170750487456,227,0 +170750487506,226,0 +170750487554,217,0 +170750487603,215,0 +170750487651,215,0 +170750487699,215,0 +170750487749,216,0 +170750487797,217,0 +170750487845,218,0 +170750487893,219,0 +170750487942,220,0 +170750487992,220,0 +170750488040,222,0 +170750488089,222,0 +170750488137,224,0 +170750488187,224,0 +170750488235,226,0 +170750488284,227,0 +170750488332,226,0 +170750488382,229,0 +170750488430,227,0 +170750488478,218,0 +170750488527,217,0 +170750488575,218,0 +170750488623,219,0 +170750488671,220,0 +170750488719,220,0 +170750488767,221,0 +170750488817,223,0 +170750488865,225,0 +170750488914,223,0 +170750488962,225,0 +170750489010,226,0 +170750489058,226,0 +170750489108,228,0 +170750489155,227,0 +170750489205,227,0 +170750489253,228,0 +170750489303,228,0 +170750489351,227,0 +170750489398,218,0 +170750489446,217,0 +170750489494,218,0 +170750489544,220,0 +170750489593,220,0 +170750489641,221,0 +170750489689,222,0 +170750489737,223,0 +170750489785,223,0 +170750489833,224,0 +170750489881,225,0 +170750489931,225,0 +170750489979,226,0 +170750490027,228,0 +170750490075,226,0 +170750490124,227,0 +170750490172,227,0 +170750490220,229,0 +170750490270,227,0 +170750490319,226,0 +170750490367,216,0 +170750490415,216,0 +170750490465,217,0 +170750490514,220,0 +170750490564,220,0 +170750490613,222,0 +170750490663,222,0 +170750490711,223,0 +170750490759,223,0 +170750490808,225,0 +170750490858,227,0 +170750490907,227,0 +170750490957,228,0 +170750491005,227,0 +170750491053,228,0 +170750491102,227,0 +170750491150,229,0 +170750491198,231,0 +170750491246,227,0 +170750491294,216,0 +170750491342,216,0 +170750491392,216,0 +170750491439,216,0 +170750491489,217,0 +170750491539,219,0 +170750491588,218,0 +170750491636,219,0 +170750491684,220,0 +170750491732,222,0 +170750491781,223,0 +170750491829,226,0 +170750491877,226,0 +170750491927,225,0 +170750491975,227,0 +170750492024,227,0 +170750492072,229,0 +170750492122,228,0 +170750492169,227,0 +170750492217,215,0 +170750492265,215,0 +170750492313,215,0 +170750492363,215,0 +170750492411,215,0 +170750492460,215,0 +170750492508,216,0 +170750492556,216,0 +170750492604,218,0 +170750492652,217,0 +170750492700,217,0 +170750492750,219,0 +170750492798,221,0 +170750492847,222,0 +170750492897,223,0 +170750492945,224,0 +170750492994,225,0 +170750493042,226,0 +170750493090,227,0 +170750493140,216,0 +170750493189,215,0 +170750493237,215,0 +170750493287,216,0 +170750493335,216,0 +170750493383,216,0 +170750493431,216,0 +170750493479,217,0 +170750493527,218,0 +170750493576,219,0 +170750493626,220,0 +170750493674,223,0 +170750493722,223,0 +170750493769,225,0 +170750493819,225,0 +170750493869,226,0 +170750493918,227,0 +170750493966,227,0 +170750494016,227,0 +170750494065,217,0 +170750494113,216,0 +170750494161,216,0 +170750494209,216,0 +170750494257,216,0 +170750494307,217,0 +170750494356,219,0 +170750494406,219,0 +170750494455,221,0 +170750494503,222,0 +170750494551,223,0 +170750494599,226,0 +170750494647,225,0 +170750494695,226,0 +170750494743,229,0 +170750494793,226,0 +170750494840,227,0 +170750494890,227,0 +170750494938,226,0 +170750494986,217,0 +170750495034,216,0 +170750495084,217,0 +170750495133,219,0 +170750495181,220,0 +170750495230,221,0 +170750495278,223,0 +170750495326,223,0 +170750495374,224,0 +170750495424,224,0 +170750495472,225,0 +170750495521,226,0 +170750495569,227,0 +170750495617,226,0 +170750495665,228,0 +170750495715,229,0 +170750495764,227,0 +170750495812,227,0 +170750495862,227,0 +170750495911,219,0 +170750495959,219,0 +170750496007,220,0 +170750496057,222,0 +170750496106,222,0 +170750496156,222,0 +170750496205,223,0 +170750496253,225,0 +170750496303,224,0 +170750496351,226,0 +170750496400,226,0 +170750496448,226,0 +170750496498,227,0 +170750496546,227,0 +170750496594,226,0 +170750496642,228,0 +170750496690,227,0 +170750496738,228,0 +170750496787,227,0 +170750496835,217,0 +170750496883,216,0 +170750496933,218,0 +170750496982,219,0 +170750497030,220,0 +170750497078,222,0 +170750497126,223,0 +170750497174,223,0 +170750497222,223,0 +170750497270,225,0 +170750497320,226,0 +170750497368,227,0 +170750497417,228,0 +170750497465,227,0 +170750497515,227,0 +170750497563,228,0 +170750497611,228,0 +170750497660,228,0 +170750497708,227,0 +170750497756,217,0 +170750497804,216,0 +170750497852,217,0 +170750497900,218,0 +170750497948,220,0 +170750497996,220,0 +170750498045,222,0 +170750498093,222,0 +170750498141,225,0 +170750498189,224,0 +170750498239,225,0 +170750498288,226,0 +170750498338,226,0 +170750498386,228,0 +170750498434,227,0 +170750498482,229,0 +170750498531,227,0 +170750498581,227,0 +170750498629,229,0 +170750498677,221,0 +170750498725,215,0 +170750498773,216,0 +170750498822,217,0 +170750498870,218,0 +170750498918,218,0 +170750498966,220,0 +170750499014,221,0 +170750499062,221,0 +170750499111,223,0 +170750499159,225,0 +170750499209,223,0 +170750499259,227,0 +170750499307,226,0 +170750499355,228,0 +170750499404,227,0 +170750499452,227,0 +170750499500,227,0 +170750499548,228,0 +170750499596,226,0 +170750499644,216,0 +170750499693,216,0 +170750499741,216,0 +170750499789,216,0 +170750499839,217,0 +170750499887,218,0 +170750499936,219,0 +170750499986,220,0 +170750500034,221,0 +170750500083,223,0 +170750500133,223,0 +170750500181,224,0 +170750500230,227,0 +170750500280,227,0 +170750500329,227,0 +170750500377,227,0 +170750500427,227,0 +170750500476,228,0 +170750500524,226,0 +170750500572,216,0 +170750500620,215,0 +170750500670,216,0 +170750500718,216,0 +170750500767,216,0 +170750500815,217,0 +170750500863,217,0 +170750500913,218,0 +170750500962,220,0 +170750501010,222,0 +170750501060,223,0 +170750501109,222,0 +170750501157,226,0 +170750501205,225,0 +170750501253,225,0 +170750501303,226,0 +170750501351,228,0 +170750501400,226,0 +170750501448,226,0 +170750501498,215,0 +170750501546,216,0 +170750501595,216,0 +170750501643,216,0 +170750501691,217,0 +170750501739,217,0 +170750501787,218,0 +170750501837,219,0 +170750501886,220,0 +170750501936,221,0 +170750501984,222,0 +170750502032,225,0 +170750502079,225,0 +170750502127,226,0 +170750502177,225,0 +170750502225,225,0 +170750502273,226,0 +170750502322,226,0 +170750502370,227,0 +170750502418,216,0 +170750502466,216,0 +170750502514,216,0 +170750502563,217,0 +170750502613,218,0 +170750502661,219,0 +170750502709,219,0 +170750502757,221,0 +170750502806,221,0 +170750502856,222,0 +170750502904,223,0 +170750502952,223,0 +170750503001,224,0 +170750503049,226,0 +170750503097,227,0 +170750503145,226,0 +170750503195,227,0 +170750503243,227,0 +170750503293,227,0 +170750503340,218,0 +170750503388,215,0 +170750503436,217,0 +170750503484,218,0 +170750503532,219,0 +170750503582,219,0 +170750503630,221,0 +170750503678,220,0 +170750503726,221,0 +170750503775,221,0 +170750503823,223,0 +170750503873,224,0 +170750503922,225,0 +170750503972,226,0 +170750504020,228,0 +170750504069,227,0 +170750504119,228,0 +170750504167,229,0 +170750504215,229,0 +170750504265,218,0 +170750504312,217,0 +170750504362,218,0 +170750504410,219,0 +170750504459,220,0 +170750504509,219,0 +170750504557,221,0 +170750504605,222,0 +170750504653,222,0 +170750504702,225,0 +170750504750,225,0 +170750504798,227,0 +170750504846,226,0 +170750504896,226,0 +170750504944,228,0 +170750504992,228,0 +170750505041,228,0 +170750505091,228,0 +170750505139,226,0 +170750505187,218,0 +170750505236,217,0 +170750505284,217,0 +170750505332,218,0 +170750505382,218,0 +170750505431,219,0 +170750505481,221,0 +170750505528,222,0 +170750505576,223,0 +170750505626,224,0 +170750505674,226,0 +170750505723,225,0 +170750505773,226,0 +170750505822,226,0 +170750505870,228,0 +170750505918,227,0 +170750505966,228,0 +170750506016,227,0 +170750506065,226,0 +170750506113,218,0 +170750506161,216,0 +170750506211,216,0 +170750506260,218,0 +170750506308,219,0 +170750506358,220,0 +170750506406,221,0 +170750506454,223,0 +170750506503,223,0 +170750506551,224,0 +170750506599,228,0 +170750506649,226,0 +170750506697,227,0 +170750506745,227,0 +170750506793,227,0 +170750506842,228,0 +170750506890,228,0 +170750506938,228,0 +170750506986,227,0 +170750507035,218,0 +170750507083,216,0 +170750507131,216,0 +170750507179,216,0 +170750507228,217,0 +170750507276,218,0 +170750507324,219,0 +170750507372,220,0 +170750507420,222,0 +170750507468,221,0 +170750507516,222,0 +170750507564,224,0 +170750507612,226,0 +170750507660,225,0 +170750507707,227,0 +170750507755,227,0 +170750507803,228,0 +170750507851,227,0 +170750507899,227,0 +170750507947,221,0 +170750507995,216,0 +170750508042,215,0 +170750508090,217,0 +170750508138,216,0 +170750508186,217,0 +170750508234,217,0 +170750508282,218,0 +170750508330,218,0 +170750508378,219,0 +170750508426,221,0 +170750508474,222,0 +170750508521,223,0 +170750508569,224,0 +170750508617,225,0 +170750508665,226,0 +170750508713,227,0 +170750508761,228,0 +170750508810,227,0 +170750508860,227,0 +170750508908,216,0 +170750508956,216,0 +170750509004,216,0 +170750509053,216,0 +170750509101,216,0 +170750509149,217,0 +170750509197,218,0 +170750509245,221,0 +170750509293,219,0 +170750509341,220,0 +170750509388,224,0 +170750509436,223,0 +170750509484,224,0 +170750509532,226,0 +170750509580,225,0 +170750509628,225,0 +170750509676,226,0 +170750509724,228,0 +170750509772,227,0 +170750509821,218,0 +170750509869,216,0 +170750509917,216,0 +170750509965,216,0 +170750510013,216,0 +170750510061,217,0 +170750510109,217,0 +170750510157,218,0 +170750510204,218,0 +170750510252,219,0 +170750510300,220,0 +170750510348,223,0 +170750510396,223,0 +170750510444,223,0 +170750510492,224,0 +170750510539,225,0 +170750510587,227,0 +170750510635,227,0 +170750510683,227,0 +170750510731,228,0 +170750510779,216,0 +170750510829,216,0 +170750510878,216,0 +170750510926,216,0 +170750510974,217,0 +170750511022,217,0 +170750511069,218,0 +170750511119,219,0 +170750511167,220,0 +170750511216,220,0 +170750511264,221,0 +170750511312,223,0 +170750511360,225,0 +170750511408,228,0 +170750511457,226,0 +170750511505,226,0 +170750511555,229,0 +170750511604,227,0 +170750511652,228,0 +170750511701,216,0 +170750511749,217,0 +170750511799,218,0 +170750511847,219,0 +170750511895,220,0 +170750511942,221,0 +170750511990,223,0 +170750512040,222,0 +170750512088,223,0 +170750512136,223,0 +170750512184,224,0 +170750512231,228,0 +170750512279,225,0 +170750512329,228,0 +170750512377,229,0 +170750512425,229,0 +170750512473,229,0 +170750512520,228,0 +170750512568,228,0 +170750512616,219,0 +170750512664,218,0 +170750512712,220,0 +170750512760,220,0 +170750512808,222,0 +170750512855,223,0 +170750512903,224,0 +170750512951,225,0 +170750512999,225,0 +170750513047,225,0 +170750513096,226,0 +170750513144,226,0 +170750513194,228,0 +170750513242,228,0 +170750513291,228,0 +170750513341,227,0 +170750513389,229,0 +170750513437,228,0 +170750513485,228,0 +170750513533,219,0 +170750513582,218,0 +170750513632,220,0 +170750513681,223,0 +170750513729,221,0 +170750513779,223,0 +170750513828,223,0 +170750513876,226,0 +170750513924,224,0 +170750513972,224,0 +170750514022,227,0 +170750514071,227,0 +170750514119,229,0 +170750514167,230,0 +170750514215,229,0 +170750514263,227,0 +170750514311,228,0 +170750514359,228,0 +170750514408,228,0 +170750514458,218,0 +170750514507,217,0 +170750514555,218,0 +170750514603,220,0 +170750514651,220,0 +170750514699,222,0 +170750514747,222,0 +170750514795,222,0 +170750514843,223,0 +170750514891,225,0 +170750514939,225,0 +170750514986,228,0 +170750515034,227,0 +170750515084,227,0 +170750515132,226,0 +170750515180,227,0 +170750515227,227,0 +170750515275,228,0 +170750515323,227,0 +170750515371,226,0 +170750515419,216,0 +170750515467,216,0 +170750515515,217,0 +170750515563,219,0 +170750515612,219,0 +170750515660,221,0 +170750515709,222,0 +170750515759,223,0 +170750515807,223,0 +170750515855,224,0 +170750515903,225,0 +170750515951,225,0 +170750515999,227,0 +170750516047,227,0 +170750516096,227,0 +170750516144,227,0 +170750516192,228,0 +170750516240,228,0 +170750516289,226,0 +170750516337,217,0 +170750516385,216,0 +170750516433,219,0 +170750516483,219,0 +170750516530,220,0 +170750516578,223,0 +170750516626,223,0 +170750516674,222,0 +170750516724,225,0 +170750516771,226,0 +170750516819,225,0 +170750516867,226,0 +170750516915,226,0 +170750516963,226,0 +170750517011,226,0 +170750517059,226,0 +170750517108,227,0 +170750517156,228,0 +170750517206,226,0 +170750517254,219,0 +170750517301,219,0 +170750517351,221,0 +170750517399,221,0 +170750517448,222,0 +170750517496,224,0 +170750517544,223,0 +170750517592,225,0 +170750517640,225,0 +170750517688,225,0 +170750517736,225,0 +170750517785,226,0 +170750517834,227,0 +170750517884,227,0 +170750517932,228,0 +170750517980,230,0 +170750518029,229,0 +170750518079,227,0 +170750518129,227,0 +170750518178,218,0 +170750518228,217,0 +170750518275,219,0 +170750518323,220,0 +170750518373,222,0 +170750518422,223,0 +170750518470,224,0 +170750518518,223,0 +170750518568,225,0 +170750518616,224,0 +170750518665,225,0 +170750518713,226,0 +170750518763,225,0 +170750518811,227,0 +170750518859,228,0 +170750518907,228,0 +170750518955,227,0 +170750519004,228,0 +170750519052,227,0 +170750519100,217,0 +170750519148,216,0 +170750519197,216,0 +170750519245,217,0 +170750519293,218,0 +170750519341,220,0 +170750519390,219,0 +170750519438,220,0 +170750519486,222,0 +170750519534,222,0 +170750519582,224,0 +170750519630,227,0 +170750519678,226,0 +170750519726,227,0 +170750519774,226,0 +170750519822,227,0 +170750519871,228,0 +170750519921,227,0 +170750519969,227,0 +170750520017,224,0 diff --git a/laser_value/0210-05.csv b/laser_value/0210-05.csv new file mode 100644 index 0000000..1edf0d7 --- /dev/null +++ b/laser_value/0210-05.csv @@ -0,0 +1,7430 @@ +timestamp,laser_value,event +170750520067,216,0 +170750520115,216,0 +170750520165,216,0 +170750520214,217,0 +170750520262,218,0 +170750520310,219,0 +170750520358,221,0 +170750520406,220,0 +170750520454,221,0 +170750520504,224,0 +170750520552,224,0 +170750520600,224,0 +170750520648,225,0 +170750520697,228,0 +170750520747,226,0 +170750520795,227,0 +170750520843,229,0 +170750520891,227,0 +170750520940,226,0 +170750520988,216,0 +170750521036,216,0 +170750521084,216,0 +170750521134,218,0 +170750521183,219,0 +170750521231,219,0 +170750521279,220,0 +170750521327,221,0 +170750521377,222,0 +170750521426,223,0 +170750521474,225,0 +170750521522,225,0 +170750521570,225,0 +170750521618,226,0 +170750521667,227,0 +170750521717,227,0 +170750521766,229,0 +170750521814,227,0 +170750521862,226,0 +170750521910,216,0 +170750521958,216,0 +170750522008,216,0 +170750522057,216,0 +170750522107,216,0 +170750522156,216,0 +170750522204,217,0 +170750522252,221,0 +170750522302,220,0 +170750522350,220,0 +170750522399,223,0 +170750522447,223,0 +170750522497,224,0 +170750522545,224,0 +170750522594,224,0 +170750522642,225,0 +170750522692,226,0 +170750522740,227,0 +170750522788,227,0 +170750522836,216,0 +170750522885,215,0 +170750522933,215,0 +170750522981,215,0 +170750523029,215,0 +170750523077,215,0 +170750523127,216,0 +170750523175,216,0 +170750523223,216,0 +170750523270,218,0 +170750523318,218,0 +170750523366,220,0 +170750523416,220,0 +170750523466,222,0 +170750523513,222,0 +170750523561,224,0 +170750523611,224,0 +170750523659,225,0 +170750523707,227,0 +170750523755,218,0 +170750523803,216,0 +170750523852,216,0 +170750523902,217,0 +170750523951,215,0 +170750524001,218,0 +170750524049,217,0 +170750524097,218,0 +170750524145,220,0 +170750524193,221,0 +170750524242,222,0 +170750524292,223,0 +170750524340,224,0 +170750524388,225,0 +170750524436,226,0 +170750524484,225,0 +170750524532,226,0 +170750524581,226,0 +170750524629,228,0 +170750524677,217,0 +170750524725,216,0 +170750524773,216,0 +170750524821,216,0 +170750524869,216,0 +170750524917,217,0 +170750524966,218,0 +170750525016,219,0 +170750525064,219,0 +170750525112,221,0 +170750525161,222,0 +170750525209,223,0 +170750525257,224,0 +170750525305,225,0 +170750525353,226,0 +170750525403,228,0 +170750525451,228,0 +170750525499,227,0 +170750525547,228,0 +170750525595,217,0 +170750525644,215,0 +170750525692,214,0 +170750525742,216,0 +170750525790,218,0 +170750525839,219,0 +170750525887,218,0 +170750525937,219,0 +170750525985,222,0 +170750526034,224,0 +170750526084,222,0 +170750526133,224,0 +170750526181,224,0 +170750526229,225,0 +170750526279,225,0 +170750526328,226,0 +170750526376,228,0 +170750526426,229,0 +170750526474,227,0 +170750526522,223,0 +170750526570,217,0 +170750526619,217,0 +170750526667,218,0 +170750526715,219,0 +170750526763,220,0 +170750526811,221,0 +170750526859,221,0 +170750526907,222,0 +170750526955,223,0 +170750527003,224,0 +170750527051,226,0 +170750527099,225,0 +170750527148,227,0 +170750527198,227,0 +170750527246,227,0 +170750527295,228,0 +170750527345,228,0 +170750527394,228,0 +170750527442,225,0 +170750527490,219,0 +170750527540,222,0 +170750527588,221,0 +170750527635,222,0 +170750527685,223,0 +170750527735,225,0 +170750527783,224,0 +170750527832,227,0 +170750527880,229,0 +170750527930,230,0 +170750527978,228,0 +170750528026,229,0 +170750528073,230,0 +170750528121,227,0 +170750528171,228,0 +170750528220,229,0 +170750528268,227,0 +170750528316,228,0 +170750528364,227,0 +170750528414,219,0 +170750528462,219,0 +170750528510,220,0 +170750528558,224,0 +170750528606,222,0 +170750528654,222,0 +170750528701,224,0 +170750528749,226,0 +170750528797,226,0 +170750528845,227,0 +170750528893,229,0 +170750528943,229,0 +170750528991,228,0 +170750529039,228,0 +170750529087,228,0 +170750529136,228,0 +170750529184,228,0 +170750529234,228,0 +170750529283,226,0 +170750529331,217,0 +170750529381,216,0 +170750529430,218,0 +170750529480,219,0 +170750529529,220,0 +170750529577,221,0 +170750529627,222,0 +170750529676,222,0 +170750529724,223,0 +170750529772,223,0 +170750529820,225,0 +170750529870,226,0 +170750529919,226,0 +170750529969,226,0 +170750530017,230,0 +170750530066,228,0 +170750530116,227,0 +170750530164,228,0 +170750530213,226,0 +170750530261,217,0 +170750530309,216,0 +170750530357,217,0 +170750530407,218,0 +170750530455,219,0 +170750530504,219,0 +170750530552,220,0 +170750530600,222,0 +170750530650,221,0 +170750530699,222,0 +170750530747,224,0 +170750530795,224,0 +170750530844,225,0 +170750530892,226,0 +170750530940,226,0 +170750530990,226,0 +170750531038,227,0 +170750531086,227,0 +170750531134,227,0 +170750531182,217,0 +170750531230,216,0 +170750531278,216,0 +170750531327,216,0 +170750531375,217,0 +170750531423,218,0 +170750531473,218,0 +170750531522,220,0 +170750531572,221,0 +170750531620,223,0 +170750531668,224,0 +170750531717,226,0 +170750531765,226,0 +170750531813,227,0 +170750531861,227,0 +170750531909,226,0 +170750531958,227,0 +170750532006,227,0 +170750532054,226,0 +170750532102,218,0 +170750532150,216,0 +170750532200,218,0 +170750532249,218,0 +170750532299,218,0 +170750532347,218,0 +170750532396,219,0 +170750532446,220,0 +170750532494,222,0 +170750532541,224,0 +170750532589,224,0 +170750532637,225,0 +170750532685,226,0 +170750532733,227,0 +170750532781,227,0 +170750532829,228,0 +170750532877,228,0 +170750532925,229,0 +170750532975,238,0 +170750533024,217,0 +170750533074,216,0 +170750533123,216,0 +170750533171,215,0 +170750533221,216,0 +170750533269,217,0 +170750533317,218,0 +170750533365,219,0 +170750533414,220,0 +170750533463,221,0 +170750533511,221,0 +170750533559,223,0 +170750533607,227,0 +170750533657,226,0 +170750533704,227,0 +170750533752,227,0 +170750533802,227,0 +170750533850,227,0 +170750533899,227,0 +170750533947,217,0 +170750533997,215,0 +170750534045,216,0 +170750534093,216,0 +170750534141,216,0 +170750534189,217,0 +170750534238,218,0 +170750534286,219,0 +170750534334,223,0 +170750534382,222,0 +170750534432,225,0 +170750534481,223,0 +170750534531,225,0 +170750534579,225,0 +170750534628,225,0 +170750534676,226,0 +170750534726,228,0 +170750534775,227,0 +170750534825,227,0 +170750534874,220,0 +170750534924,216,0 +170750534972,216,0 +170750535020,216,0 +170750535068,216,0 +170750535116,216,0 +170750535164,217,0 +170750535213,218,0 +170750535261,219,0 +170750535309,220,0 +170750535357,221,0 +170750535405,223,0 +170750535454,223,0 +170750535502,225,0 +170750535550,227,0 +170750535600,225,0 +170750535648,225,0 +170750535696,226,0 +170750535745,228,0 +170750535793,226,0 +170750535841,216,0 +170750535889,215,0 +170750535937,216,0 +170750535985,217,0 +170750536034,218,0 +170750536084,218,0 +170750536132,219,0 +170750536180,221,0 +170750536228,221,0 +170750536275,222,0 +170750536325,222,0 +170750536373,224,0 +170750536421,223,0 +170750536469,227,0 +170750536517,226,0 +170750536566,227,0 +170750536616,228,0 +170750536665,229,0 +170750536713,227,0 +170750536763,217,0 +170750536812,216,0 +170750536860,217,0 +170750536909,217,0 +170750536957,218,0 +170750537007,219,0 +170750537056,220,0 +170750537104,221,0 +170750537154,222,0 +170750537204,224,0 +170750537252,225,0 +170750537300,225,0 +170750537348,226,0 +170750537395,226,0 +170750537443,227,0 +170750537493,226,0 +170750537541,226,0 +170750537589,227,0 +170750537637,227,0 +170750537685,216,0 +170750537733,215,0 +170750537781,215,0 +170750537829,216,0 +170750537877,216,0 +170750537925,217,0 +170750537974,218,0 +170750538022,219,0 +170750538070,219,0 +170750538118,221,0 +170750538166,222,0 +170750538214,223,0 +170750538262,224,0 +170750538310,225,0 +170750538360,226,0 +170750538409,228,0 +170750538457,226,0 +170750538505,226,0 +170750538555,227,0 +170750538604,217,0 +170750538652,214,0 +170750538700,214,0 +170750538750,215,0 +170750538797,215,0 +170750538847,215,0 +170750538895,216,0 +170750538943,216,0 +170750538991,216,0 +170750539041,217,0 +170750539090,220,0 +170750539140,221,0 +170750539189,221,0 +170750539239,222,0 +170750539288,223,0 +170750539336,224,0 +170750539385,224,0 +170750539435,226,0 +170750539485,227,0 +170750539534,218,0 +170750539582,217,0 +170750539632,217,0 +170750539680,217,0 +170750539727,218,0 +170750539775,219,0 +170750539825,221,0 +170750539874,221,0 +170750539924,221,0 +170750539974,223,0 +170750540023,224,0 +170750540073,226,0 +170750540122,225,0 +170750540170,226,0 +170750540218,227,0 +170750540266,226,0 +170750540314,226,0 +170750540362,227,0 +170750540410,228,0 +170750540459,219,0 +170750540509,218,0 +170750540557,219,0 +170750540606,220,0 +170750540654,222,0 +170750540702,223,0 +170750540752,223,0 +170750540800,225,0 +170750540848,224,0 +170750540896,225,0 +170750540944,225,0 +170750540992,225,0 +170750541040,226,0 +170750541087,227,0 +170750541137,227,0 +170750541186,228,0 +170750541236,227,0 +170750541284,227,0 +170750541333,227,0 +170750541381,218,0 +170750541429,218,0 +170750541477,219,0 +170750541525,220,0 +170750541573,220,0 +170750541621,221,0 +170750541669,223,0 +170750541717,224,0 +170750541765,224,0 +170750541814,225,0 +170750541862,225,0 +170750541910,227,0 +170750541958,226,0 +170750542006,229,0 +170750542054,228,0 +170750542104,229,0 +170750542153,228,0 +170750542203,227,0 +170750542252,227,0 +170750542302,218,0 +170750542350,218,0 +170750542398,219,0 +170750542446,220,0 +170750542495,221,0 +170750542545,222,0 +170750542594,223,0 +170750542642,223,0 +170750542692,225,0 +170750542740,224,0 +170750542789,226,0 +170750542837,227,0 +170750542885,226,0 +170750542935,226,0 +170750542984,228,0 +170750543032,228,0 +170750543080,227,0 +170750543128,227,0 +170750543178,227,0 +170750543226,225,0 +170750543274,219,0 +170750543323,220,0 +170750543373,221,0 +170750543422,222,0 +170750543472,224,0 +170750543520,224,0 +170750543569,224,0 +170750543617,226,0 +170750543665,226,0 +170750543715,227,0 +170750543763,228,0 +170750543811,227,0 +170750543859,227,0 +170750543906,228,0 +170750543954,228,0 +170750544002,227,0 +170750544052,229,0 +170750544100,226,0 +170750544149,225,0 +170750544197,217,0 +170750544247,218,0 +170750544295,218,0 +170750544344,220,0 +170750544392,220,0 +170750544440,221,0 +170750544488,221,0 +170750544536,221,0 +170750544586,223,0 +170750544635,225,0 +170750544683,224,0 +170750544733,228,0 +170750544780,227,0 +170750544828,226,0 +170750544878,226,0 +170750544926,227,0 +170750544975,228,0 +170750545025,227,0 +170750545074,226,0 +170750545122,216,0 +170750545170,217,0 +170750545218,219,0 +170750545268,219,0 +170750545316,221,0 +170750545365,221,0 +170750545415,221,0 +170750545463,223,0 +170750545511,223,0 +170750545559,225,0 +170750545608,225,0 +170750545656,226,0 +170750545704,226,0 +170750545752,226,0 +170750545800,227,0 +170750545848,227,0 +170750545898,227,0 +170750545945,227,0 +170750545993,227,0 +170750546043,216,0 +170750546091,215,0 +170750546140,216,0 +170750546188,216,0 +170750546236,219,0 +170750546284,218,0 +170750546332,219,0 +170750546382,219,0 +170750546431,220,0 +170750546479,221,0 +170750546527,222,0 +170750546577,223,0 +170750546625,226,0 +170750546674,225,0 +170750546722,227,0 +170750546770,226,0 +170750546818,227,0 +170750546866,227,0 +170750546914,227,0 +170750546962,217,0 +170750547010,216,0 +170750547058,216,0 +170750547106,216,0 +170750547154,217,0 +170750547202,217,0 +170750547250,217,0 +170750547298,219,0 +170750547347,219,0 +170750547395,220,0 +170750547443,221,0 +170750547491,222,0 +170750547539,223,0 +170750547588,224,0 +170750547636,224,0 +170750547684,225,0 +170750547732,226,0 +170750547780,226,0 +170750547828,225,0 +170750547876,216,0 +170750547924,216,0 +170750547972,216,0 +170750548020,217,0 +170750548070,219,0 +170750548118,219,0 +170750548166,221,0 +170750548215,221,0 +170750548263,223,0 +170750548313,223,0 +170750548361,224,0 +170750548408,224,0 +170750548456,225,0 +170750548504,226,0 +170750548554,229,0 +170750548602,227,0 +170750548650,227,0 +170750548698,228,0 +170750548746,228,0 +170750548795,219,0 +170750548843,216,0 +170750548893,217,0 +170750548942,218,0 +170750548990,218,0 +170750549040,220,0 +170750549089,220,0 +170750549139,221,0 +170750549187,222,0 +170750549235,223,0 +170750549283,225,0 +170750549332,226,0 +170750549382,228,0 +170750549431,228,0 +170750549479,229,0 +170750549527,228,0 +170750549575,230,0 +170750549623,229,0 +170750549671,228,0 +170750549721,221,0 +170750549770,217,0 +170750549818,217,0 +170750549868,219,0 +170750549917,220,0 +170750549965,221,0 +170750550013,223,0 +170750550061,222,0 +170750550109,224,0 +170750550159,225,0 +170750550208,224,0 +170750550256,226,0 +170750550304,228,0 +170750550352,227,0 +170750550402,228,0 +170750550451,227,0 +170750550501,229,0 +170750550550,227,0 +170750550600,227,0 +170750550648,222,0 +170750550697,216,0 +170750550747,215,0 +170750550795,217,0 +170750550843,218,0 +170750550891,219,0 +170750550940,221,0 +170750550988,223,0 +170750551036,223,0 +170750551085,225,0 +170750551133,225,0 +170750551181,228,0 +170750551229,227,0 +170750551277,227,0 +170750551325,227,0 +170750551375,227,0 +170750551423,227,0 +170750551471,228,0 +170750551519,227,0 +170750551567,226,0 +170750551614,215,0 +170750551662,215,0 +170750551712,215,0 +170750551760,216,0 +170750551808,216,0 +170750551856,216,0 +170750551905,217,0 +170750551953,217,0 +170750552001,217,0 +170750552049,219,0 +170750552097,220,0 +170750552147,222,0 +170750552194,222,0 +170750552244,225,0 +170750552292,225,0 +170750552340,225,0 +170750552389,225,0 +170750552437,227,0 +170750552487,227,0 +170750552535,216,0 +170750552584,215,0 +170750552634,216,0 +170750552682,216,0 +170750552730,217,0 +170750552778,216,0 +170750552827,216,0 +170750552875,217,0 +170750552923,217,0 +170750552973,215,0 +170750553021,219,0 +170750553069,220,0 +170750553117,221,0 +170750553165,225,0 +170750553213,225,0 +170750553261,225,0 +170750553310,225,0 +170750553358,227,0 +170750553406,227,0 +170750553454,218,0 +170750553502,217,0 +170750553550,216,0 +170750553598,218,0 +170750553646,219,0 +170750553695,220,0 +170750553743,221,0 +170750553793,221,0 +170750553841,222,0 +170750553889,223,0 +170750553937,225,0 +170750553985,225,0 +170750554034,226,0 +170750554082,228,0 +170750554132,228,0 +170750554180,228,0 +170750554228,228,0 +170750554276,228,0 +170750554324,227,0 +170750554373,218,0 +170750554423,216,0 +170750554471,216,0 +170750554519,217,0 +170750554567,218,0 +170750554615,219,0 +170750554663,221,0 +170750554711,222,0 +170750554758,222,0 +170750554806,224,0 +170750554854,225,0 +170750554902,225,0 +170750554952,227,0 +170750555001,226,0 +170750555049,227,0 +170750555097,228,0 +170750555147,228,0 +170750555195,227,0 +170750555243,227,0 +170750555292,217,0 +170750555342,215,0 +170750555390,216,0 +170750555438,218,0 +170750555487,219,0 +170750555535,220,0 +170750555583,220,0 +170750555633,222,0 +170750555681,223,0 +170750555729,223,0 +170750555778,224,0 +170750555828,227,0 +170750555877,227,0 +170750555925,226,0 +170750555973,226,0 +170750556021,227,0 +170750556069,227,0 +170750556117,227,0 +170750556165,228,0 +170750556214,218,0 +170750556264,216,0 +170750556313,217,0 +170750556361,218,0 +170750556411,219,0 +170750556459,219,0 +170750556507,225,0 +170750556555,223,0 +170750556603,224,0 +170750556651,224,0 +170750556699,224,0 +170750556748,229,0 +170750556798,227,0 +170750556847,228,0 +170750556897,229,0 +170750556945,227,0 +170750556993,228,0 +170750557042,228,0 +170750557090,227,0 +170750557140,225,0 +170750557189,216,0 +170750557239,216,0 +170750557287,217,0 +170750557335,218,0 +170750557384,219,0 +170750557434,219,0 +170750557482,221,0 +170750557530,221,0 +170750557578,222,0 +170750557627,224,0 +170750557677,224,0 +170750557725,229,0 +170750557774,226,0 +170750557822,227,0 +170750557870,227,0 +170750557920,229,0 +170750557969,228,0 +170750558019,227,0 +170750558068,226,0 +170750558116,216,0 +170750558164,216,0 +170750558212,217,0 +170750558262,219,0 +170750558310,220,0 +170750558359,220,0 +170750558409,220,0 +170750558457,222,0 +170750558505,222,0 +170750558554,225,0 +170750558604,225,0 +170750558652,226,0 +170750558701,228,0 +170750558749,228,0 +170750558797,227,0 +170750558847,228,0 +170750558895,227,0 +170750558943,227,0 +170750558992,222,0 +170750559040,215,0 +170750559088,216,0 +170750559136,216,0 +170750559184,218,0 +170750559232,218,0 +170750559280,220,0 +170750559328,220,0 +170750559376,221,0 +170750559424,223,0 +170750559472,224,0 +170750559521,224,0 +170750559569,224,0 +170750559619,226,0 +170750559667,226,0 +170750559714,226,0 +170750559762,226,0 +170750559810,226,0 +170750559860,229,0 +170750559908,227,0 +170750559956,216,0 +170750560004,216,0 +170750560052,216,0 +170750560099,217,0 +170750560149,219,0 +170750560197,220,0 +170750560245,221,0 +170750560293,223,0 +170750560340,223,0 +170750560388,224,0 +170750560436,224,0 +170750560484,229,0 +170750560532,227,0 +170750560580,227,0 +170750560628,226,0 +170750560676,227,0 +170750560724,228,0 +170750560773,226,0 +170750560821,227,0 +170750560870,217,0 +170750560918,215,0 +170750560966,216,0 +170750561014,216,0 +170750561064,217,0 +170750561111,219,0 +170750561159,219,0 +170750561207,221,0 +170750561255,222,0 +170750561303,222,0 +170750561351,226,0 +170750561399,224,0 +170750561448,225,0 +170750561496,225,0 +170750561544,226,0 +170750561592,226,0 +170750561640,226,0 +170750561688,226,0 +170750561736,227,0 +170750561784,227,0 +170750561832,215,0 +170750561879,216,0 +170750561927,216,0 +170750561977,216,0 +170750562025,216,0 +170750562073,217,0 +170750562121,218,0 +170750562169,219,0 +170750562217,220,0 +170750562265,222,0 +170750562313,223,0 +170750562360,223,0 +170750562408,224,0 +170750562458,224,0 +170750562506,225,0 +170750562555,225,0 +170750562605,227,0 +170750562655,227,0 +170750562704,226,0 +170750562754,216,0 +170750562802,216,0 +170750562850,216,0 +170750562898,216,0 +170750562946,217,0 +170750562995,218,0 +170750563045,219,0 +170750563093,220,0 +170750563140,222,0 +170750563188,224,0 +170750563238,224,0 +170750563288,224,0 +170750563335,225,0 +170750563383,226,0 +170750563431,227,0 +170750563479,226,0 +170750563527,226,0 +170750563575,227,0 +170750563623,227,0 +170750563671,217,0 +170750563720,216,0 +170750563768,216,0 +170750563816,217,0 +170750563864,218,0 +170750563912,219,0 +170750563959,221,0 +170750564007,220,0 +170750564055,222,0 +170750564103,223,0 +170750564151,224,0 +170750564199,224,0 +170750564248,224,0 +170750564296,225,0 +170750564344,226,0 +170750564394,227,0 +170750564442,225,0 +170750564490,226,0 +170750564538,226,0 +170750564586,217,0 +170750564635,215,0 +170750564685,215,0 +170750564733,216,0 +170750564782,216,0 +170750564830,216,0 +170750564878,217,0 +170750564926,217,0 +170750564974,219,0 +170750565022,220,0 +170750565070,221,0 +170750565118,222,0 +170750565166,223,0 +170750565214,224,0 +170750565262,223,0 +170750565311,225,0 +170750565361,226,0 +170750565409,225,0 +170750565456,227,0 +170750565504,217,0 +170750565552,216,0 +170750565600,216,0 +170750565648,216,0 +170750565697,217,0 +170750565745,218,0 +170750565793,220,0 +170750565841,221,0 +170750565889,222,0 +170750565937,223,0 +170750565985,223,0 +170750566033,224,0 +170750566082,224,0 +170750566130,225,0 +170750566178,227,0 +170750566226,226,0 +170750566274,227,0 +170750566322,226,0 +170750566370,224,0 +170750566418,226,0 +170750566466,216,0 +170750566514,216,0 +170750566563,216,0 +170750566611,217,0 +170750566659,218,0 +170750566707,219,0 +170750566755,219,0 +170750566803,222,0 +170750566851,221,0 +170750566899,221,0 +170750566948,223,0 +170750566997,224,0 +170750567045,225,0 +170750567093,225,0 +170750567141,226,0 +170750567189,225,0 +170750567237,226,0 +170750567285,226,0 +170750567333,226,0 +170750567382,217,0 +170750567430,215,0 +170750567478,216,0 +170750567526,216,0 +170750567574,219,0 +170750567623,219,0 +170750567673,220,0 +170750567721,220,0 +170750567770,222,0 +170750567820,223,0 +170750567869,224,0 +170750567917,224,0 +170750567965,224,0 +170750568013,225,0 +170750568061,226,0 +170750568109,226,0 +170750568157,225,0 +170750568205,226,0 +170750568253,228,0 +170750568301,218,0 +170750568349,216,0 +170750568397,216,0 +170750568445,216,0 +170750568494,217,0 +170750568542,218,0 +170750568592,218,0 +170750568640,220,0 +170750568689,220,0 +170750568737,221,0 +170750568786,222,0 +170750568834,223,0 +170750568882,224,0 +170750568930,226,0 +170750568978,227,0 +170750569028,227,0 +170750569076,227,0 +170750569124,224,0 +170750569172,228,0 +170750569220,218,0 +170750569268,216,0 +170750569316,216,0 +170750569364,217,0 +170750569413,218,0 +170750569463,219,0 +170750569511,219,0 +170750569560,220,0 +170750569608,220,0 +170750569656,222,0 +170750569704,222,0 +170750569752,224,0 +170750569800,223,0 +170750569849,225,0 +170750569899,228,0 +170750569947,227,0 +170750569996,227,0 +170750570046,227,0 +170750570094,227,0 +170750570142,224,0 +170750570190,217,0 +170750570239,218,0 +170750570289,219,0 +170750570337,220,0 +170750570386,221,0 +170750570434,222,0 +170750570482,223,0 +170750570532,223,0 +170750570580,224,0 +170750570628,225,0 +170750570676,227,0 +170750570724,226,0 +170750570771,228,0 +170750570819,228,0 +170750570867,226,0 +170750570915,228,0 +170750570963,227,0 +170750571011,226,0 +170750571059,228,0 +170750571107,220,0 +170750571156,220,0 +170750571204,222,0 +170750571253,224,0 +170750571301,227,0 +170750571349,224,0 +170750571397,225,0 +170750571445,227,0 +170750571495,226,0 +170750571542,231,0 +170750571592,227,0 +170750571640,227,0 +170750571690,228,0 +170750571739,227,0 +170750571789,230,0 +170750571836,227,0 +170750571884,229,0 +170750571932,227,0 +170750571982,227,0 +170750572031,219,0 +170750572079,219,0 +170750572127,220,0 +170750572177,221,0 +170750572226,223,0 +170750572274,223,0 +170750572322,225,0 +170750572370,226,0 +170750572418,227,0 +170750572466,226,0 +170750572514,227,0 +170750572562,228,0 +170750572609,228,0 +170750572659,228,0 +170750572707,230,0 +170750572755,230,0 +170750572803,227,0 +170750572852,227,0 +170750572902,227,0 +170750572951,219,0 +170750573001,218,0 +170750573050,219,0 +170750573098,220,0 +170750573148,221,0 +170750573196,222,0 +170750573244,223,0 +170750573292,223,0 +170750573340,226,0 +170750573390,225,0 +170750573438,227,0 +170750573486,229,0 +170750573535,228,0 +170750573583,227,0 +170750573631,227,0 +170750573681,230,0 +170750573729,228,0 +170750573777,227,0 +170750573825,226,0 +170750573874,217,0 +170750573922,217,0 +170750573972,217,0 +170750574020,219,0 +170750574069,219,0 +170750574119,220,0 +170750574167,221,0 +170750574216,221,0 +170750574264,222,0 +170750574314,221,0 +170750574363,224,0 +170750574413,225,0 +170750574461,228,0 +170750574509,231,0 +170750574558,229,0 +170750574606,229,0 +170750574656,227,0 +170750574705,227,0 +170750574753,227,0 +170750574801,218,0 +170750574849,216,0 +170750574899,216,0 +170750574947,217,0 +170750574995,218,0 +170750575043,219,0 +170750575090,221,0 +170750575140,221,0 +170750575188,222,0 +170750575236,222,0 +170750575284,223,0 +170750575332,225,0 +170750575380,226,0 +170750575428,225,0 +170750575477,228,0 +170750575525,227,0 +170750575573,229,0 +170750575621,229,0 +170750575669,227,0 +170750575717,222,0 +170750575765,215,0 +170750575813,215,0 +170750575861,215,0 +170750575909,215,0 +170750575956,216,0 +170750576004,215,0 +170750576052,216,0 +170750576100,217,0 +170750576148,217,0 +170750576196,217,0 +170750576244,218,0 +170750576293,219,0 +170750576343,220,0 +170750576392,221,0 +170750576442,222,0 +170750576491,222,0 +170750576541,222,0 +170750576591,227,0 +170750576640,224,0 +170750576688,215,0 +170750576738,216,0 +170750576786,216,0 +170750576834,217,0 +170750576881,217,0 +170750576929,218,0 +170750576977,218,0 +170750577025,219,0 +170750577073,220,0 +170750577121,221,0 +170750577169,222,0 +170750577217,223,0 +170750577265,223,0 +170750577314,225,0 +170750577362,226,0 +170750577410,227,0 +170750577460,227,0 +170750577508,228,0 +170750577557,226,0 +170750577605,216,0 +170750577653,216,0 +170750577701,216,0 +170750577751,217,0 +170750577800,218,0 +170750577850,219,0 +170750577898,219,0 +170750577947,220,0 +170750577995,222,0 +170750578045,227,0 +170750578093,224,0 +170750578141,225,0 +170750578189,225,0 +170750578237,226,0 +170750578284,225,0 +170750578332,228,0 +170750578382,227,0 +170750578430,228,0 +170750578478,227,0 +170750578526,217,0 +170750578574,216,0 +170750578622,217,0 +170750578670,220,0 +170750578719,220,0 +170750578767,223,0 +170750578815,230,0 +170750578863,223,0 +170750578911,219,0 +170750578959,224,0 +170750579009,225,0 +170750579056,225,0 +170750579104,226,0 +170750579152,228,0 +170750579200,227,0 +170750579250,228,0 +170750579298,229,0 +170750579347,228,0 +170750579397,227,0 +170750579446,217,0 +170750579494,216,0 +170750579542,216,0 +170750579592,217,0 +170750579639,218,0 +170750579687,219,0 +170750579736,220,0 +170750579784,222,0 +170750579832,218,0 +170750579880,224,0 +170750579928,225,0 +170750579976,224,0 +170750580024,226,0 +170750580073,226,0 +170750580121,225,0 +170750580169,225,0 +170750580217,225,0 +170750580267,222,0 +170750580316,226,0 +170750580364,217,0 +170750580412,215,0 +170750580462,215,0 +170750580510,216,0 +170750580558,216,0 +170750580606,217,0 +170750580654,217,0 +170750580702,217,0 +170750580750,217,0 +170750580799,218,0 +170750580849,219,0 +170750580897,220,0 +170750580946,222,0 +170750580996,223,0 +170750581043,223,0 +170750581091,225,0 +170750581139,225,0 +170750581187,226,0 +170750581235,227,0 +170750581285,218,0 +170750581334,215,0 +170750581384,215,0 +170750581433,216,0 +170750581481,216,0 +170750581529,216,0 +170750581577,217,0 +170750581627,218,0 +170750581675,220,0 +170750581724,221,0 +170750581772,222,0 +170750581822,223,0 +170750581871,224,0 +170750581919,225,0 +170750581969,225,0 +170750582018,226,0 +170750582066,225,0 +170750582114,227,0 +170750582164,227,0 +170750582212,222,0 +170750582261,215,0 +170750582309,216,0 +170750582357,216,0 +170750582405,218,0 +170750582453,219,0 +170750582503,220,0 +170750582552,220,0 +170750582600,222,0 +170750582650,223,0 +170750582699,224,0 +170750582747,224,0 +170750582797,226,0 +170750582845,226,0 +170750582894,226,0 +170750582942,227,0 +170750582990,227,0 +170750583038,226,0 +170750583086,226,0 +170750583136,226,0 +170750583184,216,0 +170750583233,216,0 +170750583283,217,0 +170750583331,219,0 +170750583379,220,0 +170750583427,222,0 +170750583475,223,0 +170750583524,224,0 +170750583572,222,0 +170750583620,224,0 +170750583670,225,0 +170750583718,227,0 +170750583765,227,0 +170750583813,227,0 +170750583863,227,0 +170750583911,226,0 +170750583959,228,0 +170750584008,229,0 +170750584056,227,0 +170750584104,217,0 +170750584154,218,0 +170750584202,219,0 +170750584249,219,0 +170750584299,221,0 +170750584349,221,0 +170750584398,222,0 +170750584446,223,0 +170750584496,223,0 +170750584545,224,0 +170750584593,225,0 +170750584643,226,0 +170750584691,228,0 +170750584739,226,0 +170750584787,222,0 +170750584834,226,0 +170750584884,226,0 +170750584934,228,0 +170750584983,226,0 +170750585031,216,0 +170750585081,217,0 +170750585130,219,0 +170750585180,219,0 +170750585227,220,0 +170750585275,221,0 +170750585323,222,0 +170750585371,222,0 +170750585419,223,0 +170750585467,224,0 +170750585517,226,0 +170750585566,226,0 +170750585614,227,0 +170750585662,226,0 +170750585710,227,0 +170750585758,227,0 +170750585806,226,0 +170750585854,227,0 +170750585902,226,0 +170750585951,216,0 +170750585999,217,0 +170750586049,217,0 +170750586099,218,0 +170750586147,218,0 +170750586195,220,0 +170750586244,221,0 +170750586292,222,0 +170750586342,223,0 +170750586391,224,0 +170750586439,225,0 +170750586487,225,0 +170750586535,226,0 +170750586583,227,0 +170750586631,227,0 +170750586679,226,0 +170750586728,227,0 +170750586776,227,0 +170750586824,226,0 +170750586872,217,0 +170750586920,215,0 +170750586970,215,0 +170750587019,217,0 +170750587067,218,0 +170750587117,219,0 +170750587166,220,0 +170750587216,220,0 +170750587265,221,0 +170750587315,223,0 +170750587363,224,0 +170750587412,224,0 +170750587462,224,0 +170750587510,226,0 +170750587558,226,0 +170750587607,226,0 +170750587655,227,0 +170750587703,229,0 +170750587751,227,0 +170750587799,217,0 +170750587847,216,0 +170750587897,217,0 +170750587945,217,0 +170750587994,218,0 +170750588042,219,0 +170750588090,220,0 +170750588140,221,0 +170750588188,221,0 +170750588237,222,0 +170750588287,224,0 +170750588336,224,0 +170750588384,225,0 +170750588434,226,0 +170750588483,227,0 +170750588533,227,0 +170750588581,227,0 +170750588629,227,0 +170750588678,226,0 +170750588728,217,0 +170750588776,216,0 +170750588825,217,0 +170750588873,218,0 +170750588923,219,0 +170750588972,220,0 +170750589020,220,0 +170750589068,221,0 +170750589116,222,0 +170750589166,223,0 +170750589214,223,0 +170750589262,225,0 +170750589310,225,0 +170750589358,225,0 +170750589406,226,0 +170750589454,228,0 +170750589502,227,0 +170750589550,227,0 +170750589599,227,0 +170750589647,218,0 +170750589695,217,0 +170750589743,216,0 +170750589791,217,0 +170750589841,218,0 +170750589889,219,0 +170750589936,219,0 +170750589986,220,0 +170750590034,221,0 +170750590082,222,0 +170750590130,224,0 +170750590178,225,0 +170750590226,226,0 +170750590275,226,0 +170750590325,226,0 +170750590373,227,0 +170750590422,226,0 +170750590470,228,0 +170750590520,228,0 +170750590568,217,0 +170750590617,216,0 +170750590667,216,0 +170750590715,218,0 +170750590764,219,0 +170750590812,219,0 +170750590860,221,0 +170750590908,221,0 +170750590956,222,0 +170750591004,223,0 +170750591054,223,0 +170750591103,224,0 +170750591153,224,0 +170750591201,225,0 +170750591249,226,0 +170750591297,227,0 +170750591345,227,0 +170750591393,227,0 +170750591442,227,0 +170750591491,217,0 +170750591539,216,0 +170750591587,217,0 +170750591635,217,0 +170750591685,218,0 +170750591733,220,0 +170750591782,220,0 +170750591832,221,0 +170750591880,222,0 +170750591928,224,0 +170750591976,224,0 +170750592025,225,0 +170750592075,225,0 +170750592123,228,0 +170750592171,227,0 +170750592220,228,0 +170750592270,228,0 +170750592319,229,0 +170750592369,227,0 +170750592417,218,0 +170750592465,216,0 +170750592514,216,0 +170750592564,218,0 +170750592614,218,0 +170750592662,219,0 +170750592709,221,0 +170750592757,221,0 +170750592805,221,0 +170750592855,222,0 +170750592903,223,0 +170750592951,224,0 +170750593000,225,0 +170750593048,226,0 +170750593096,226,0 +170750593146,226,0 +170750593194,226,0 +170750593242,227,0 +170750593291,227,0 +170750593341,224,0 +170750593390,215,0 +170750593438,217,0 +170750593486,218,0 +170750593536,219,0 +170750593584,220,0 +170750593633,221,0 +170750593683,222,0 +170750593731,224,0 +170750593779,224,0 +170750593827,225,0 +170750593876,226,0 +170750593926,226,0 +170750593974,226,0 +170750594021,228,0 +170750594069,228,0 +170750594119,228,0 +170750594167,228,0 +170750594215,228,0 +170750594263,226,0 +170750594312,216,0 +170750594360,216,0 +170750594408,216,0 +170750594457,218,0 +170750594507,219,0 +170750594554,220,0 +170750594602,221,0 +170750594650,222,0 +170750594698,223,0 +170750594746,224,0 +170750594795,225,0 +170750594843,225,0 +170750594891,228,0 +170750594939,226,0 +170750594989,226,0 +170750595036,229,0 +170750595084,228,0 +170750595132,228,0 +170750595180,226,0 +170750595228,216,0 +170750595276,215,0 +170750595324,216,0 +170750595372,216,0 +170750595420,217,0 +170750595468,218,0 +170750595516,219,0 +170750595563,219,0 +170750595611,220,0 +170750595659,221,0 +170750595707,223,0 +170750595755,223,0 +170750595803,226,0 +170750595851,226,0 +170750595899,228,0 +170750595948,226,0 +170750595998,226,0 +170750596045,226,0 +170750596093,227,0 +170750596143,217,0 +170750596192,216,0 +170750596240,216,0 +170750596288,216,0 +170750596338,217,0 +170750596387,217,0 +170750596437,218,0 +170750596486,219,0 +170750596536,220,0 +170750596585,221,0 +170750596633,223,0 +170750596683,224,0 +170750596732,227,0 +170750596782,226,0 +170750596830,228,0 +170750596879,228,0 +170750596927,227,0 +170750596975,228,0 +170750597023,228,0 +170750597071,218,0 +170750597119,217,0 +170750597167,217,0 +170750597215,218,0 +170750597263,219,0 +170750597312,220,0 +170750597360,220,0 +170750597409,222,0 +170750597457,221,0 +170750597505,222,0 +170750597553,224,0 +170750597603,226,0 +170750597651,226,0 +170750597698,226,0 +170750597746,228,0 +170750597794,227,0 +170750597842,227,0 +170750597890,227,0 +170750597938,227,0 +170750597986,218,0 +170750598034,216,0 +170750598082,217,0 +170750598129,218,0 +170750598177,219,0 +170750598225,221,0 +170750598275,221,0 +170750598323,221,0 +170750598371,221,0 +170750598419,223,0 +170750598467,224,0 +170750598515,226,0 +170750598562,226,0 +170750598610,227,0 +170750598658,227,0 +170750598706,227,0 +170750598754,228,0 +170750598802,227,0 +170750598851,228,0 +170750598899,217,0 +170750598947,216,0 +170750598995,217,0 +170750599043,218,0 +170750599091,219,0 +170750599139,220,0 +170750599187,220,0 +170750599235,220,0 +170750599282,221,0 +170750599330,224,0 +170750599380,224,0 +170750599428,226,0 +170750599477,226,0 +170750599527,225,0 +170750599575,230,0 +170750599623,228,0 +170750599672,228,0 +170750599720,230,0 +170750599770,228,0 +170750599818,227,0 +170750599866,218,0 +170750599914,218,0 +170750599962,219,0 +170750600011,220,0 +170750600061,223,0 +170750600110,222,0 +170750600160,223,0 +170750600208,225,0 +170750600256,222,0 +170750600303,224,0 +170750600351,224,0 +170750600399,226,0 +170750600447,226,0 +170750600495,227,0 +170750600543,227,0 +170750600593,229,0 +170750600641,229,0 +170750600689,226,0 +170750600737,226,0 +170750600785,217,0 +170750600833,216,0 +170750600882,218,0 +170750600932,219,0 +170750600980,221,0 +170750601028,222,0 +170750601076,223,0 +170750601124,223,0 +170750601173,226,0 +170750601221,225,0 +170750601271,225,0 +170750601318,225,0 +170750601368,227,0 +170750601416,228,0 +170750601464,228,0 +170750601512,227,0 +170750601560,229,0 +170750601608,228,0 +170750601655,227,0 +170750601703,217,0 +170750601753,216,0 +170750601801,218,0 +170750601849,220,0 +170750601896,220,0 +170750601944,222,0 +170750601992,221,0 +170750602042,223,0 +170750602090,223,0 +170750602138,225,0 +170750602186,226,0 +170750602234,227,0 +170750602282,228,0 +170750602330,229,0 +170750602379,228,0 +170750602429,228,0 +170750602478,229,0 +170750602526,228,0 +170750602576,227,0 +170750602624,218,0 +170750602673,216,0 +170750602723,217,0 +170750602771,218,0 +170750602819,219,0 +170750602868,221,0 +170750602916,222,0 +170750602964,224,0 +170750603012,225,0 +170750603060,227,0 +170750603108,225,0 +170750603156,226,0 +170750603205,226,0 +170750603255,227,0 +170750603303,228,0 +170750603351,225,0 +170750603399,228,0 +170750603447,228,0 +170750603495,228,0 +170750603543,217,0 +170750603592,216,0 +170750603640,218,0 +170750603688,218,0 +170750603738,219,0 +170750603786,221,0 +170750603835,222,0 +170750603883,224,0 +170750603931,223,0 +170750603979,225,0 +170750604027,225,0 +170750604077,226,0 +170750604124,227,0 +170750604172,228,0 +170750604220,227,0 +170750604270,227,0 +170750604319,228,0 +170750604367,227,0 +170750604417,228,0 +170750604465,218,0 +170750604514,217,0 +170750604564,218,0 +170750604612,219,0 +170750604661,220,0 +170750604711,221,0 +170750604760,221,0 +170750604808,222,0 +170750604856,224,0 +170750604906,224,0 +170750604954,224,0 +170750605002,226,0 +170750605050,227,0 +170750605099,227,0 +170750605147,226,0 +170750605195,226,0 +170750605245,229,0 +170750605293,227,0 +170750605342,226,0 +170750605390,218,0 +170750605438,216,0 +170750605488,216,0 +170750605536,218,0 +170750605584,218,0 +170750605632,220,0 +170750605680,221,0 +170750605728,221,0 +170750605777,222,0 +170750605825,223,0 +170750605873,224,0 +170750605923,224,0 +170750605972,225,0 +170750606020,226,0 +170750606070,226,0 +170750606118,227,0 +170750606166,228,0 +170750606214,228,0 +170750606263,226,0 +170750606311,224,0 +170750606360,215,0 +170750606410,215,0 +170750606458,216,0 +170750606506,216,0 +170750606554,216,0 +170750606603,218,0 +170750606651,219,0 +170750606699,219,0 +170750606747,221,0 +170750606797,223,0 +170750606845,223,0 +170750606893,224,0 +170750606942,225,0 +170750606990,227,0 +170750607038,226,0 +170750607088,227,0 +170750607137,226,0 +170750607185,227,0 +170750607234,227,0 +170750607284,216,0 +170750607334,215,0 +170750607381,216,0 +170750607429,216,0 +170750607477,216,0 +170750607527,217,0 +170750607575,216,0 +170750607623,218,0 +170750607671,218,0 +170750607718,219,0 +170750607766,221,0 +170750607814,222,0 +170750607862,223,0 +170750607910,226,0 +170750607958,225,0 +170750608006,225,0 +170750608053,226,0 +170750608101,227,0 +170750608149,226,0 +170750608197,216,0 +170750608245,216,0 +170750608294,216,0 +170750608342,216,0 +170750608390,217,0 +170750608440,217,0 +170750608488,217,0 +170750608535,218,0 +170750608583,220,0 +170750608631,221,0 +170750608681,222,0 +170750608730,222,0 +170750608778,226,0 +170750608826,225,0 +170750608874,224,0 +170750608922,225,0 +170750608970,224,0 +170750609020,226,0 +170750609068,226,0 +170750609116,217,0 +170750609165,216,0 +170750609214,216,0 +170750609262,216,0 +170750609310,217,0 +170750609358,217,0 +170750609406,217,0 +170750609456,218,0 +170750609504,220,0 +170750609553,220,0 +170750609603,223,0 +170750609651,224,0 +170750609700,224,0 +170750609748,225,0 +170750609796,224,0 +170750609844,226,0 +170750609894,225,0 +170750609942,226,0 +170750609990,227,0 +170750610038,218,0 +170750610085,216,0 +170750610133,216,0 +170750610181,216,0 +170750610231,217,0 +170750610279,217,0 +170750610327,217,0 +170750610376,218,0 +170750610426,217,0 +170750610474,219,0 +170750610522,220,0 +170750610571,223,0 +170750610621,224,0 +170750610669,227,0 +170750610717,226,0 +170750610764,225,0 +170750610812,225,0 +170750610860,224,0 +170750610908,226,0 +170750610958,217,0 +170750611006,214,0 +170750611055,215,0 +170750611105,215,0 +170750611153,216,0 +170750611202,216,0 +170750611250,216,0 +170750611298,217,0 +170750611348,217,0 +170750611396,218,0 +170750611443,217,0 +170750611491,219,0 +170750611539,221,0 +170750611587,222,0 +170750611635,223,0 +170750611683,225,0 +170750611731,223,0 +170750611779,224,0 +170750611826,227,0 +170750611874,217,0 +170750611922,217,0 +170750611970,219,0 +170750612018,217,0 +170750612066,218,0 +170750612116,218,0 +170750612165,221,0 +170750612213,220,0 +170750612263,218,0 +170750612312,223,0 +170750612362,222,0 +170750612410,223,0 +170750612458,225,0 +170750612506,224,0 +170750612555,225,0 +170750612603,222,0 +170750612653,226,0 +170750612701,228,0 +170750612749,229,0 +170750612797,218,0 +170750612845,217,0 +170750612894,217,0 +170750612942,219,0 +170750612992,221,0 +170750613040,220,0 +170750613087,221,0 +170750613135,222,0 +170750613183,223,0 +170750613231,224,0 +170750613279,224,0 +170750613327,224,0 +170750613375,224,0 +170750613423,224,0 +170750613473,225,0 +170750613521,226,0 +170750613569,226,0 +170750613618,227,0 +170750613666,227,0 +170750613714,227,0 +170750613762,218,0 +170750613810,218,0 +170750613860,219,0 +170750613909,220,0 +170750613959,220,0 +170750614008,221,0 +170750614058,222,0 +170750614107,222,0 +170750614155,224,0 +170750614203,225,0 +170750614251,226,0 +170750614301,228,0 +170750614349,229,0 +170750614398,228,0 +170750614446,226,0 +170750614494,228,0 +170750614542,228,0 +170750614590,227,0 +170750614638,227,0 +170750614685,217,0 +170750614733,218,0 +170750614781,219,0 +170750614829,221,0 +170750614877,222,0 +170750614925,222,0 +170750614973,223,0 +170750615021,224,0 +170750615070,224,0 +170750615118,226,0 +170750615166,227,0 +170750615216,227,0 +170750615264,229,0 +170750615313,227,0 +170750615361,229,0 +170750615411,227,0 +170750615459,227,0 +170750615507,227,0 +170750615555,227,0 +170750615603,219,0 +170750615652,219,0 +170750615700,220,0 +170750615750,221,0 +170750615798,222,0 +170750615847,225,0 +170750615897,224,0 +170750615945,226,0 +170750615994,226,0 +170750616044,226,0 +170750616092,227,0 +170750616139,228,0 +170750616187,228,0 +170750616237,229,0 +170750616285,228,0 +170750616333,228,0 +170750616381,228,0 +170750616429,227,0 +170750616478,226,0 +170750616528,217,0 +170750616577,217,0 +170750616627,218,0 +170750616676,220,0 +170750616724,221,0 +170750616774,222,0 +170750616822,223,0 +170750616871,223,0 +170750616921,225,0 +170750616969,225,0 +170750617017,226,0 +170750617065,225,0 +170750617114,228,0 +170750617162,227,0 +170750617210,227,0 +170750617260,227,0 +170750617308,227,0 +170750617356,228,0 +170750617403,226,0 +170750617453,217,0 +170750617501,216,0 +170750617549,217,0 +170750617597,217,0 +170750617645,219,0 +170750617692,220,0 +170750617740,220,0 +170750617788,220,0 +170750617836,222,0 +170750617884,223,0 +170750617932,225,0 +170750617981,226,0 +170750618029,228,0 +170750618077,230,0 +170750618125,229,0 +170750618175,229,0 +170750618223,230,0 +170750618271,227,0 +170750618319,228,0 +170750618367,218,0 +170750618416,215,0 +170750618464,215,0 +170750618512,217,0 +170750618560,219,0 +170750618608,220,0 +170750618656,221,0 +170750618703,222,0 +170750618751,223,0 +170750618799,223,0 +170750618847,224,0 +170750618895,223,0 +170750618945,228,0 +170750618994,226,0 +170750619042,228,0 +170750619090,227,0 +170750619138,228,0 +170750619186,228,0 +170750619233,228,0 +170750619281,217,0 +170750619329,216,0 +170750619377,217,0 +170750619425,219,0 +170750619473,219,0 +170750619521,220,0 +170750619569,219,0 +170750619617,222,0 +170750619664,223,0 +170750619712,223,0 +170750619760,225,0 +170750619808,225,0 +170750619856,226,0 +170750619904,227,0 +170750619952,228,0 +170750620000,227,0 +170750620047,227,0 +170750620095,231,0 +170750620143,228,0 +170750620191,227,0 +170750620239,217,0 +170750620287,216,0 +170750620335,216,0 +170750620384,217,0 +170750620432,218,0 +170750620480,219,0 +170750620528,220,0 +170750620576,221,0 +170750620624,222,0 +170750620672,222,0 +170750620720,223,0 +170750620768,224,0 +170750620816,226,0 +170750620865,225,0 +170750620913,226,0 +170750620961,227,0 +170750621009,228,0 +170750621058,226,0 +170750621106,227,0 +170750621155,217,0 +170750621205,215,0 +170750621254,215,0 +170750621302,215,0 +170750621350,216,0 +170750621398,216,0 +170750621448,215,0 +170750621497,217,0 +170750621545,217,0 +170750621593,219,0 +170750621641,219,0 +170750621691,223,0 +170750621739,223,0 +170750621788,224,0 +170750621838,224,0 +170750621886,225,0 +170750621935,225,0 +170750621983,229,0 +170750622031,227,0 +170750622079,217,0 +170750622127,216,0 +170750622177,216,0 +170750622225,216,0 +170750622273,217,0 +170750622321,219,0 +170750622370,220,0 +170750622420,219,0 +170750622469,222,0 +170750622517,222,0 +170750622565,225,0 +170750622615,225,0 +170750622664,225,0 +170750622714,226,0 +170750622762,228,0 +170750622811,227,0 +170750622861,228,0 +170750622909,227,0 +170750622957,227,0 +170750623005,218,0 +170750623053,216,0 +170750623100,217,0 +170750623150,219,0 +170750623198,219,0 +170750623248,221,0 +170750623296,221,0 +170750623344,222,0 +170750623391,223,0 +170750623439,224,0 +170750623489,226,0 +170750623538,226,0 +170750623586,226,0 +170750623636,228,0 +170750623684,229,0 +170750623732,228,0 +170750623780,228,0 +170750623828,228,0 +170750623877,228,0 +170750623927,218,0 +170750623975,216,0 +170750624022,217,0 +170750624070,218,0 +170750624120,219,0 +170750624168,220,0 +170750624217,221,0 +170750624267,221,0 +170750624316,223,0 +170750624364,223,0 +170750624412,224,0 +170750624460,226,0 +170750624508,226,0 +170750624556,226,0 +170750624604,227,0 +170750624652,228,0 +170750624700,228,0 +170750624748,226,0 +170750624796,227,0 +170750624844,218,0 +170750624893,216,0 +170750624941,216,0 +170750624989,216,0 +170750625037,217,0 +170750625085,218,0 +170750625135,219,0 +170750625183,222,0 +170750625232,222,0 +170750625280,223,0 +170750625328,224,0 +170750625378,226,0 +170750625426,225,0 +170750625475,226,0 +170750625525,227,0 +170750625574,228,0 +170750625622,229,0 +170750625672,227,0 +170750625721,227,0 +170750625771,217,0 +170750625819,216,0 +170750625867,216,0 +170750625916,216,0 +170750625964,217,0 +170750626012,217,0 +170750626060,217,0 +170750626108,217,0 +170750626156,217,0 +170750626204,218,0 +170750626252,218,0 +170750626300,220,0 +170750626348,220,0 +170750626396,222,0 +170750626445,223,0 +170750626493,224,0 +170750626541,225,0 +170750626591,226,0 +170750626639,226,0 +170750626687,227,0 +170750626735,228,0 +170750626784,228,0 +170750626834,229,0 +170750626883,227,0 +170750626933,230,0 +170750626981,227,0 +170750627029,228,0 +170750627077,227,0 +170750627125,229,0 +170750627173,218,0 +170750627221,216,0 +170750627269,218,0 +170750627318,218,0 +170750627366,219,0 +170750627416,220,0 +170750627464,222,0 +170750627512,222,0 +170750627561,223,0 +170750627609,222,0 +170750627657,224,0 +170750627705,225,0 +170750627753,225,0 +170750627800,227,0 +170750627848,226,0 +170750627898,228,0 +170750627946,228,0 +170750627995,228,0 +170750628043,227,0 +170750628093,218,0 +170750628141,216,0 +170750628189,216,0 +170750628237,217,0 +170750628285,218,0 +170750628333,219,0 +170750628381,220,0 +170750628430,221,0 +170750628478,221,0 +170750628526,223,0 +170750628574,223,0 +170750628622,225,0 +170750628670,224,0 +170750628718,225,0 +170750628766,226,0 +170750628814,227,0 +170750628863,227,0 +170750628913,227,0 +170750628961,227,0 +170750629009,217,0 +170750629057,216,0 +170750629106,216,0 +170750629154,217,0 +170750629204,219,0 +170750629253,220,0 +170750629301,220,0 +170750629349,221,0 +170750629397,221,0 +170750629445,223,0 +170750629493,226,0 +170750629543,226,0 +170750629591,226,0 +170750629639,226,0 +170750629688,228,0 +170750629738,234,0 +170750629786,228,0 +170750629835,227,0 +170750629885,227,0 +170750629933,223,0 +170750629981,216,0 +170750630029,217,0 +170750630076,218,0 +170750630124,219,0 +170750630174,220,0 +170750630222,220,0 +170750630270,222,0 +170750630319,222,0 +170750630369,224,0 +170750630417,224,0 +170750630465,225,0 +170750630514,226,0 +170750630562,227,0 +170750630610,226,0 +170750630659,228,0 +170750630707,228,0 +170750630755,227,0 +170750630805,227,0 +170750630854,222,0 +170750630902,216,0 +170750630950,217,0 +170750631000,217,0 +170750631048,218,0 +170750631097,221,0 +170750631145,220,0 +170750631195,221,0 +170750631243,222,0 +170750631291,222,0 +170750631340,224,0 +170750631388,227,0 +170750631436,226,0 +170750631484,226,0 +170750631534,228,0 +170750631582,228,0 +170750631630,228,0 +170750631678,227,0 +170750631726,226,0 +170750631775,225,0 +170750631825,216,0 +170750631872,216,0 +170750631920,216,0 +170750631970,216,0 +170750632020,217,0 +170750632069,219,0 +170750632119,220,0 +170750632168,221,0 +170750632216,222,0 +170750632266,223,0 +170750632315,224,0 +170750632363,227,0 +170750632411,226,0 +170750632460,226,0 +170750632510,227,0 +170750632558,227,0 +170750632606,228,0 +170750632654,227,0 +170750632702,227,0 +170750632750,216,0 +170750632798,216,0 +170750632846,216,0 +170750632893,216,0 +170750632941,217,0 +170750632991,218,0 +170750633041,219,0 +170750633088,221,0 +170750633138,221,0 +170750633186,222,0 +170750633234,224,0 +170750633282,223,0 +170750633331,225,0 +170750633381,226,0 +170750633431,227,0 +170750633479,230,0 +170750633528,227,0 +170750633576,227,0 +170750633624,228,0 +170750633672,216,0 +170750633721,215,0 +170750633771,216,0 +170750633819,216,0 +170750633867,217,0 +170750633916,218,0 +170750633964,220,0 +170750634012,220,0 +170750634060,221,0 +170750634110,222,0 +170750634158,221,0 +170750634206,223,0 +170750634254,223,0 +170750634303,224,0 +170750634351,224,0 +170750634399,225,0 +170750634449,226,0 +170750634496,228,0 +170750634546,227,0 +170750634594,217,0 +170750634642,217,0 +170750634690,218,0 +170750634738,219,0 +170750634786,220,0 +170750634834,221,0 +170750634882,221,0 +170750634929,223,0 +170750634977,222,0 +170750635027,225,0 +170750635075,225,0 +170750635123,228,0 +170750635170,227,0 +170750635218,227,0 +170750635268,228,0 +170750635316,230,0 +170750635364,227,0 +170750635413,229,0 +170750635463,228,0 +170750635511,218,0 +170750635560,216,0 +170750635608,217,0 +170750635656,218,0 +170750635704,219,0 +170750635754,220,0 +170750635803,221,0 +170750635853,222,0 +170750635902,223,0 +170750635950,224,0 +170750635998,224,0 +170750636048,227,0 +170750636097,227,0 +170750636145,226,0 +170750636195,226,0 +170750636243,228,0 +170750636291,227,0 +170750636340,228,0 +170750636390,226,0 +170750636439,217,0 +170750636487,215,0 +170750636535,216,0 +170750636584,217,0 +170750636632,218,0 +170750636682,220,0 +170750636732,220,0 +170750636780,221,0 +170750636829,221,0 +170750636877,223,0 +170750636927,226,0 +170750636974,226,0 +170750637022,227,0 +170750637070,227,0 +170750637118,227,0 +170750637166,227,0 +170750637216,227,0 +170750637265,228,0 +170750637313,227,0 +170750637363,218,0 +170750637411,216,0 +170750637460,217,0 +170750637510,218,0 +170750637559,219,0 +170750637609,221,0 +170750637657,221,0 +170750637706,222,0 +170750637754,224,0 +170750637802,224,0 +170750637852,224,0 +170750637901,224,0 +170750637951,226,0 +170750637999,227,0 +170750638047,228,0 +170750638095,230,0 +170750638143,227,0 +170750638191,228,0 +170750638240,229,0 +170750638288,217,0 +170750638338,215,0 +170750638386,216,0 +170750638434,218,0 +170750638483,219,0 +170750638531,220,0 +170750638581,223,0 +170750638630,222,0 +170750638678,222,0 +170750638726,223,0 +170750638774,225,0 +170750638822,225,0 +170750638870,226,0 +170750638918,227,0 +170750638966,227,0 +170750639014,228,0 +170750639062,226,0 +170750639110,227,0 +170750639158,227,0 +170750639207,217,0 +170750639257,216,0 +170750639306,216,0 +170750639356,216,0 +170750639405,217,0 +170750639455,217,0 +170750639504,218,0 +170750639554,219,0 +170750639602,220,0 +170750639652,221,0 +170750639699,223,0 +170750639747,223,0 +170750639795,223,0 +170750639845,226,0 +170750639894,228,0 +170750639944,228,0 +170750639993,229,0 +170750640041,226,0 +170750640089,227,0 +170750640139,218,0 +170750640187,216,0 +170750640236,216,0 +170750640284,216,0 +170750640332,216,0 +170750640382,217,0 +170750640431,217,0 +170750640481,217,0 +170750640529,218,0 +170750640577,219,0 +170750640625,221,0 +170750640675,223,0 +170750640724,224,0 +170750640772,225,0 +170750640820,225,0 +170750640868,226,0 +170750640916,226,0 +170750640964,226,0 +170750641012,227,0 +170750641062,217,0 +170750641110,215,0 +170750641158,216,0 +170750641205,216,0 +170750641255,216,0 +170750641303,216,0 +170750641351,217,0 +170750641399,217,0 +170750641447,217,0 +170750641495,219,0 +170750641543,221,0 +170750641592,222,0 +170750641642,223,0 +170750641691,224,0 +170750641739,225,0 +170750641787,225,0 +170750641835,227,0 +170750641883,227,0 +170750641933,227,0 +170750641981,217,0 +170750642030,215,0 +170750642078,216,0 +170750642128,216,0 +170750642176,216,0 +170750642224,217,0 +170750642272,217,0 +170750642320,219,0 +170750642369,219,0 +170750642417,221,0 +170750642467,221,0 +170750642516,223,0 +170750642564,225,0 +170750642614,225,0 +170750642662,225,0 +170750642710,226,0 +170750642757,227,0 +170750642805,228,0 +170750642853,226,0 +170750642903,221,0 +170750642951,215,0 +170750643000,215,0 +170750643048,214,0 +170750643096,216,0 +170750643144,218,0 +170750643194,218,0 +170750643242,220,0 +170750643290,220,0 +170750643339,222,0 +170750643389,223,0 +170750643438,223,0 +170750643486,226,0 +170750643534,227,0 +170750643584,226,0 +170750643632,235,0 +170750643680,228,0 +170750643728,230,0 +170750643776,228,0 +170750643824,227,0 +170750643872,216,0 +170750643921,215,0 +170750643969,216,0 +170750644017,216,0 +170750644067,217,0 +170750644116,218,0 +170750644164,220,0 +170750644212,220,0 +170750644260,221,0 +170750644308,222,0 +170750644356,223,0 +170750644403,227,0 +170750644451,224,0 +170750644499,227,0 +170750644547,227,0 +170750644595,229,0 +170750644643,227,0 +170750644691,228,0 +170750644739,227,0 +170750644788,217,0 +170750644838,216,0 +170750644885,217,0 +170750644933,218,0 +170750644981,219,0 +170750645029,219,0 +170750645079,221,0 +170750645127,221,0 +170750645175,221,0 +170750645223,223,0 +170750645271,222,0 +170750645320,223,0 +170750645368,225,0 +170750645416,226,0 +170750645464,227,0 +170750645514,226,0 +170750645561,229,0 +170750645609,226,0 +170750645657,227,0 +170750645705,218,0 +170750645753,218,0 +170750645803,219,0 +170750645851,221,0 +170750645899,220,0 +170750645947,223,0 +170750645995,223,0 +170750646043,225,0 +170750646090,224,0 +170750646138,225,0 +170750646186,226,0 +170750646234,229,0 +170750646284,227,0 +170750646332,228,0 +170750646380,227,0 +170750646428,227,0 +170750646476,226,0 +170750646525,228,0 +170750646573,228,0 +170750646621,223,0 +170750646669,217,0 +170750646718,218,0 +170750646766,219,0 +170750646814,221,0 +170750646862,222,0 +170750646909,224,0 +170750646957,222,0 +170750647005,226,0 +170750647053,226,0 +170750647101,227,0 +170750647150,226,0 +170750647198,227,0 +170750647248,226,0 +170750647297,227,0 +170750647347,226,0 +170750647395,228,0 +170750647443,227,0 +170750647491,227,0 +170750647539,225,0 +170750647588,218,0 +170750647636,219,0 +170750647684,220,0 +170750647732,222,0 +170750647780,222,0 +170750647828,223,0 +170750647877,223,0 +170750647925,224,0 +170750647975,225,0 +170750648024,226,0 +170750648072,226,0 +170750648122,228,0 +170750648170,229,0 +170750648218,227,0 +170750648267,227,0 +170750648315,227,0 +170750648363,228,0 +170750648411,228,0 +170750648459,226,0 +170750648509,216,0 +170750648557,216,0 +170750648606,218,0 +170750648656,220,0 +170750648704,220,0 +170750648752,220,0 +170750648801,221,0 +170750648849,223,0 +170750648897,224,0 +170750648947,224,0 +170750648995,225,0 +170750649043,228,0 +170750649091,227,0 +170750649138,226,0 +170750649186,226,0 +170750649234,226,0 +170750649284,218,0 +170750649332,228,0 +170750649381,227,0 +170750649431,216,0 +170750649479,216,0 +170750649527,216,0 +170750649576,216,0 +170750649624,216,0 +170750649673,218,0 +170750649721,218,0 +170750649769,221,0 +170750649819,220,0 +170750649868,221,0 +170750649916,222,0 +170750649966,224,0 +170750650015,224,0 +170750650065,223,0 +170750650114,224,0 +170750650164,226,0 +170750650212,226,0 +170750650261,226,0 +170750650309,226,0 +170750650359,216,0 +170750650409,215,0 +170750650458,216,0 +170750650506,216,0 +170750650554,217,0 +170750650602,217,0 +170750650650,218,0 +170750650698,220,0 +170750650747,221,0 +170750650795,221,0 +170750650843,222,0 +170750650891,225,0 +170750650939,226,0 +170750650987,224,0 +170750651035,225,0 +170750651083,226,0 +170750651131,227,0 +170750651178,226,0 +170750651226,227,0 +170750651274,217,0 +170750651323,216,0 +170750651371,216,0 +170750651421,216,0 +170750651469,217,0 +170750651518,217,0 +170750651568,218,0 +170750651616,218,0 +170750651665,220,0 +170750651715,222,0 +170750651763,222,0 +170750651812,225,0 +170750651862,224,0 +170750651910,225,0 +170750651958,225,0 +170750652006,225,0 +170750652055,226,0 +170750652103,227,0 +170750652152,227,0 +170750652200,217,0 +170750652248,216,0 +170750652298,217,0 +170750652346,216,0 +170750652394,217,0 +170750652443,217,0 +170750652491,217,0 +170750652539,218,0 +170750652587,219,0 +170750652635,221,0 +170750652683,222,0 +170750652731,223,0 +170750652781,225,0 +170750652830,226,0 +170750652880,226,0 +170750652929,227,0 +170750652977,225,0 +170750653025,226,0 +170750653073,230,0 +170750653121,218,0 +170750653168,216,0 +170750653216,216,0 +170750653264,216,0 +170750653314,216,0 +170750653362,217,0 +170750653410,217,0 +170750653458,218,0 +170750653505,220,0 +170750653553,220,0 +170750653601,221,0 +170750653649,222,0 +170750653699,223,0 +170750653748,225,0 +170750653796,226,0 +170750653844,226,0 +170750653893,227,0 +170750653943,230,0 +170750653991,228,0 +170750654039,218,0 +170750654087,216,0 +170750654135,216,0 +170750654183,216,0 +170750654231,216,0 +170750654280,217,0 +170750654328,218,0 +170750654377,217,0 +170750654425,218,0 +170750654475,219,0 +170750654524,223,0 +170750654574,222,0 +170750654622,225,0 +170750654671,226,0 +170750654719,225,0 +170750654769,225,0 +170750654817,224,0 +170750654865,225,0 +170750654914,228,0 +170750654962,218,0 +170750655010,216,0 +170750655060,216,0 +170750655109,217,0 +170750655157,218,0 +170750655205,218,0 +170750655253,219,0 +170750655301,221,0 +170750655348,222,0 +170750655396,222,0 +170750655444,224,0 +170750655492,224,0 +170750655542,226,0 +170750655589,226,0 +170750655637,227,0 +170750655685,227,0 +170750655733,227,0 +170750655781,228,0 +170750655830,227,0 +170750655878,225,0 +170750655926,216,0 +170750655974,216,0 +170750656022,216,0 +170750656070,219,0 +170750656120,218,0 +170750656168,219,0 +170750656215,220,0 +170750656263,222,0 +170750656311,222,0 +170750656359,223,0 +170750656407,223,0 +170750656455,226,0 +170750656504,226,0 +170750656554,226,0 +170750656604,226,0 +170750656651,228,0 +170750656699,227,0 +170750656747,231,0 +170750656795,227,0 +170750656845,216,0 +170750656893,216,0 +170750656941,217,0 +170750656989,219,0 +170750657037,219,0 +170750657086,220,0 +170750657136,220,0 +170750657184,222,0 +170750657233,222,0 +170750657281,222,0 +170750657329,223,0 +170750657379,224,0 +170750657428,228,0 +170750657476,225,0 +170750657524,228,0 +170750657572,227,0 +170750657622,228,0 +170750657670,227,0 +170750657719,227,0 +170750657767,217,0 +170750657817,216,0 +170750657866,218,0 +170750657916,218,0 +170750657964,219,0 +170750658013,221,0 +170750658063,222,0 +170750658112,222,0 +170750658162,222,0 +170750658211,223,0 +170750658259,226,0 +170750658307,225,0 +170750658357,229,0 +170750658406,228,0 +170750658454,229,0 +170750658502,230,0 +170750658552,229,0 +170750658601,228,0 +170750658649,227,0 +170750658699,218,0 +170750658748,218,0 +170750658798,220,0 +170750658846,221,0 +170750658894,220,0 +170750658943,221,0 +170750658991,223,0 +170750659039,225,0 +170750659088,225,0 +170750659136,226,0 +170750659184,227,0 +170750659234,227,0 +170750659281,228,0 +170750659329,230,0 +170750659377,228,0 +170750659425,228,0 +170750659475,227,0 +170750659523,226,0 +170750659570,226,0 +170750659618,218,0 +170750659666,218,0 +170750659714,217,0 +170750659762,220,0 +170750659810,222,0 +170750659858,222,0 +170750659906,223,0 +170750659954,223,0 +170750660001,224,0 +170750660049,227,0 +170750660097,226,0 +170750660145,226,0 +170750660193,227,0 +170750660241,227,0 +170750660289,228,0 +170750660337,228,0 +170750660385,227,0 +170750660433,227,0 +170750660482,227,0 +170750660530,218,0 +170750660578,217,0 +170750660626,218,0 +170750660673,219,0 +170750660723,220,0 +170750660771,222,0 +170750660819,223,0 +170750660867,223,0 +170750660916,224,0 +170750660966,226,0 +170750661015,226,0 +170750661063,227,0 +170750661113,227,0 +170750661162,229,0 +170750661212,228,0 +170750661260,228,0 +170750661308,229,0 +170750661356,228,0 +170750661405,227,0 +170750661453,218,0 +170750661501,216,0 +170750661551,217,0 +170750661599,219,0 +170750661647,219,0 +170750661695,220,0 +170750661743,220,0 +170750661791,222,0 +170750661840,222,0 +170750661888,224,0 +170750661936,224,0 +170750661986,225,0 +170750662035,226,0 +170750662083,227,0 +170750662131,228,0 +170750662180,228,0 +170750662228,227,0 +170750662278,228,0 +170750662327,227,0 +170750662375,217,0 +170750662424,216,0 +170750662472,215,0 +170750662522,217,0 +170750662571,218,0 +170750662619,220,0 +170750662667,221,0 +170750662715,220,0 +170750662763,221,0 +170750662810,222,0 +170750662858,223,0 +170750662906,225,0 +170750662956,226,0 +170750663004,226,0 +170750663051,227,0 +170750663099,227,0 +170750663147,228,0 +170750663197,227,0 +170750663245,229,0 +170750663292,221,0 +170750663340,216,0 +170750663388,216,0 +170750663438,216,0 +170750663486,217,0 +170750663533,219,0 +170750663581,219,0 +170750663629,221,0 +170750663677,221,0 +170750663725,222,0 +170750663773,222,0 +170750663821,223,0 +170750663868,225,0 +170750663916,225,0 +170750663966,226,0 +170750664014,226,0 +170750664062,227,0 +170750664109,227,0 +170750664157,227,0 +170750664205,228,0 +170750664253,216,0 +170750664301,216,0 +170750664349,218,0 +170750664397,218,0 +170750664445,222,0 +170750664493,221,0 +170750664540,221,0 +170750664588,222,0 +170750664636,222,0 +170750664684,222,0 +170750664732,225,0 +170750664780,225,0 +170750664828,226,0 +170750664876,229,0 +170750664923,229,0 +170750664971,228,0 +170750665019,230,0 +170750665067,230,0 +170750665115,228,0 +170750665164,218,0 +170750665212,216,0 +170750665260,216,0 +170750665308,217,0 +170750665356,218,0 +170750665404,218,0 +170750665452,219,0 +170750665500,220,0 +170750665548,222,0 +170750665595,223,0 +170750665643,225,0 +170750665693,227,0 +170750665741,226,0 +170750665789,227,0 +170750665839,228,0 +170750665888,229,0 +170750665938,231,0 +170750665986,229,0 +170750666033,227,0 +170750666081,217,0 +170750666131,216,0 +170750666179,216,0 +170750666226,216,0 +170750666274,217,0 +170750666322,218,0 +170750666370,219,0 +170750666418,220,0 +170750666466,220,0 +170750666514,221,0 +170750666563,221,0 +170750666611,223,0 +170750666659,225,0 +170750666709,226,0 +170750666757,227,0 +170750666804,228,0 +170750666852,227,0 +170750666902,227,0 +170750666950,230,0 +170750666999,228,0 +170750667047,216,0 +170750667095,218,0 +170750667144,216,0 +170750667192,216,0 +170750667240,216,0 +170750667288,216,0 +170750667336,215,0 +170750667384,218,0 +170750667432,219,0 +170750667480,220,0 +170750667527,222,0 +170750667575,222,0 +170750667625,223,0 +170750667673,224,0 +170750667721,224,0 +170750667769,225,0 +170750667818,225,0 +170750667866,227,0 +170750667914,227,0 +170750667962,216,0 +170750668010,216,0 +170750668058,216,0 +170750668106,216,0 +170750668153,216,0 +170750668201,217,0 +170750668249,218,0 +170750668299,220,0 +170750668348,220,0 +170750668398,222,0 +170750668446,223,0 +170750668495,223,0 +170750668543,224,0 +170750668591,226,0 +170750668639,226,0 +170750668689,225,0 +170750668738,230,0 +170750668786,226,0 +170750668834,226,0 +170750668882,217,0 +170750668930,216,0 +170750668978,216,0 +170750669026,217,0 +170750669075,218,0 +170750669123,220,0 +170750669171,221,0 +170750669219,221,0 +170750669268,223,0 +170750669316,224,0 +170750669364,225,0 +170750669412,226,0 +170750669460,227,0 +170750669509,227,0 +170750669557,227,0 +170750669607,228,0 +170750669654,229,0 +170750669704,229,0 +170750669752,227,0 +170750669800,217,0 +170750669849,216,0 +170750669899,215,0 +170750669948,216,0 +170750669998,217,0 +170750670047,218,0 +170750670097,219,0 +170750670146,220,0 +170750670194,222,0 +170750670242,222,0 +170750670290,224,0 +170750670340,224,0 +170750670388,225,0 +170750670437,225,0 +170750670485,227,0 +170750670535,226,0 +170750670583,226,0 +170750670631,227,0 +170750670678,227,0 +170750670726,217,0 +170750670774,216,0 +170750670822,215,0 +170750670872,216,0 +170750670920,216,0 +170750670967,217,0 +170750671015,217,0 +170750671063,218,0 +170750671111,220,0 +170750671161,220,0 +170750671208,222,0 +170750671256,223,0 +170750671304,224,0 +170750671352,225,0 +170750671402,226,0 +170750671450,226,0 +170750671498,226,0 +170750671545,226,0 +170750671595,225,0 +170750671643,218,0 +170750671691,215,0 +170750671740,215,0 +170750671788,216,0 +170750671836,216,0 +170750671884,216,0 +170750671932,216,0 +170750671980,218,0 +170750672028,218,0 +170750672076,219,0 +170750672123,220,0 +170750672173,222,0 +170750672221,223,0 +170750672269,224,0 +170750672317,224,0 +170750672365,224,0 +170750672412,225,0 +170750672460,226,0 +170750672508,228,0 +170750672556,221,0 +170750672604,215,0 +170750672652,215,0 +170750672700,215,0 +170750672750,216,0 +170750672799,216,0 +170750672847,217,0 +170750672895,217,0 +170750672943,217,0 +170750672991,218,0 +170750673040,218,0 +170750673090,219,0 +170750673138,221,0 +170750673188,222,0 +170750673237,224,0 +170750673285,223,0 +170750673333,224,0 +170750673381,225,0 +170750673430,226,0 +170750673478,226,0 +170750673526,216,0 +170750673574,216,0 +170750673622,216,0 +170750673670,217,0 +170750673718,217,0 +170750673766,216,0 +170750673814,218,0 +170750673863,219,0 +170750673911,221,0 +170750673959,222,0 +170750674007,222,0 +170750674055,223,0 +170750674104,224,0 +170750674152,223,0 +170750674200,225,0 +170750674248,225,0 +170750674296,226,0 +170750674344,226,0 +170750674392,227,0 +170750674440,217,0 +170750674488,216,0 +170750674536,217,0 +170750674585,219,0 +170750674633,220,0 +170750674683,221,0 +170750674730,220,0 +170750674778,223,0 +170750674828,223,0 +170750674876,224,0 +170750674924,225,0 +170750674973,225,0 +170750675021,227,0 +170750675069,230,0 +170750675118,227,0 +170750675166,228,0 +170750675214,227,0 +170750675262,228,0 +170750675310,226,0 +170750675358,217,0 +170750675406,217,0 +170750675454,218,0 +170750675501,220,0 +170750675549,220,0 +170750675597,221,0 +170750675645,221,0 +170750675693,222,0 +170750675741,223,0 +170750675789,224,0 +170750675837,221,0 +170750675886,226,0 +170750675934,227,0 +170750675984,227,0 +170750676033,227,0 +170750676081,228,0 +170750676129,226,0 +170750676177,227,0 +170750676226,227,0 +170750676274,217,0 +170750676322,216,0 +170750676370,217,0 +170750676418,219,0 +170750676467,220,0 +170750676517,220,0 +170750676566,221,0 +170750676614,223,0 +170750676664,223,0 +170750676712,223,0 +170750676761,225,0 +170750676811,226,0 +170750676859,226,0 +170750676908,227,0 +170750676958,227,0 +170750677006,226,0 +170750677055,227,0 +170750677103,228,0 +170750677153,229,0 +170750677201,219,0 +170750677248,218,0 +170750677296,219,0 +170750677344,220,0 +170750677392,220,0 +170750677440,221,0 +170750677489,222,0 +170750677537,222,0 +170750677585,224,0 +170750677635,226,0 +170750677683,225,0 +170750677732,228,0 +170750677780,226,0 +170750677830,228,0 +170750677878,227,0 +170750677926,228,0 +170750677974,227,0 +170750678021,227,0 +170750678069,228,0 +170750678117,224,0 +170750678165,219,0 +170750678213,219,0 +170750678260,219,0 +170750678308,220,0 +170750678358,220,0 +170750678406,222,0 +170750678453,223,0 +170750678501,224,0 +170750678549,225,0 +170750678597,226,0 +170750678645,228,0 +170750678693,227,0 +170750678741,227,0 +170750678789,229,0 +170750678836,228,0 +170750678884,228,0 +170750678932,228,0 +170750678980,227,0 +170750679028,226,0 +170750679076,220,0 +170750679125,222,0 +170750679175,221,0 +170750679224,222,0 +170750679272,223,0 +170750679320,224,0 +170750679370,224,0 +170750679418,225,0 +170750679467,227,0 +170750679515,228,0 +170750679563,228,0 +170750679613,228,0 +170750679661,228,0 +170750679709,228,0 +170750679757,229,0 +170750679805,228,0 +170750679854,227,0 +170750679902,226,0 +170750679952,226,0 +170750680000,218,0 +170750680049,219,0 +170750680097,221,0 +170750680145,223,0 +170750680193,223,0 +170750680240,223,0 +170750680288,224,0 +170750680338,225,0 +170750680386,227,0 +170750680434,225,0 +170750680481,228,0 +170750680531,228,0 +170750680579,228,0 +170750680627,231,0 +170750680676,227,0 +170750680724,231,0 +170750680774,228,0 +170750680821,225,0 +170750680871,227,0 +170750680919,216,0 +170750680968,215,0 +170750681016,215,0 +170750681064,216,0 +170750681112,216,0 +170750681160,216,0 +170750681208,217,0 +170750681256,218,0 +170750681304,218,0 +170750681352,220,0 +170750681399,221,0 +170750681447,223,0 +170750681495,223,0 +170750681543,224,0 +170750681591,225,0 +170750681639,225,0 +170750681688,224,0 +170750681738,224,0 +170750681786,227,0 +170750681833,218,0 +170750681881,216,0 +170750681929,216,0 +170750681977,217,0 +170750682025,217,0 +170750682073,217,0 +170750682122,217,0 +170750682170,218,0 +170750682218,218,0 +170750682266,220,0 +170750682314,221,0 +170750682363,222,0 +170750682413,223,0 +170750682460,223,0 +170750682508,224,0 +170750682556,226,0 +170750682604,229,0 +170750682652,227,0 +170750682700,229,0 +170750682748,217,0 +170750682796,216,0 +170750682844,215,0 +170750682891,216,0 +170750682939,217,0 +170750682987,217,0 +170750683035,218,0 +170750683083,218,0 +170750683131,219,0 +170750683179,221,0 +170750683227,221,0 +170750683274,223,0 +170750683322,224,0 +170750683370,225,0 +170750683418,225,0 +170750683466,226,0 +170750683514,227,0 +170750683563,227,0 +170750683611,228,0 +170750683659,227,0 +170750683709,217,0 +170750683757,215,0 +170750683804,216,0 +170750683854,216,0 +170750683902,217,0 +170750683950,218,0 +170750683998,219,0 +170750684045,220,0 +170750684095,221,0 +170750684143,224,0 +170750684191,223,0 +170750684240,225,0 +170750684288,225,0 +170750684336,226,0 +170750684385,225,0 +170750684433,227,0 +170750684483,228,0 +170750684531,227,0 +170750684578,228,0 +170750684626,217,0 +170750684674,216,0 +170750684722,216,0 +170750684770,216,0 +170750684820,217,0 +170750684868,218,0 +170750684917,219,0 +170750684965,220,0 +170750685015,221,0 +170750685063,221,0 +170750685110,222,0 +170750685160,224,0 +170750685208,227,0 +170750685256,225,0 +170750685305,226,0 +170750685355,226,0 +170750685403,227,0 +170750685451,228,0 +170750685499,229,0 +170750685548,217,0 +170750685596,216,0 +170750685644,215,0 +170750685694,216,0 +170750685743,217,0 +170750685791,218,0 +170750685841,219,0 +170750685888,220,0 +170750685936,222,0 +170750685986,223,0 +170750686034,223,0 +170750686082,225,0 +170750686131,229,0 +170750686181,231,0 +170750686230,230,0 +170750686278,229,0 +170750686326,230,0 +170750686374,227,0 +170750686424,227,0 +170750686472,217,0 +170750686520,216,0 +170750686568,216,0 +170750686615,216,0 +170750686663,217,0 +170750686711,217,0 +170750686759,219,0 +170750686807,219,0 +170750686857,221,0 +170750686906,221,0 +170750686954,225,0 +170750687004,224,0 +170750687053,224,0 +170750687103,225,0 +170750687151,225,0 +170750687200,225,0 +170750687250,226,0 +170750687298,226,0 +170750687346,231,0 +170750687395,218,0 +170750687443,216,0 +170750687491,216,0 +170750687539,214,0 +170750687587,216,0 +170750687635,217,0 +170750687683,218,0 +170750687732,220,0 +170750687780,220,0 +170750687828,221,0 +170750687876,223,0 +170750687924,224,0 +170750687974,226,0 +170750688023,226,0 +170750688073,227,0 +170750688120,226,0 +170750688170,227,0 +170750688219,226,0 +170750688267,227,0 +170750688315,217,0 +170750688363,215,0 +170750688411,215,0 +170750688459,215,0 +170750688507,216,0 +170750688555,216,0 +170750688605,217,0 +170750688652,217,0 +170750688700,218,0 +170750688748,219,0 +170750688796,220,0 +170750688846,222,0 +170750688895,223,0 +170750688943,223,0 +170750688993,224,0 +170750689042,224,0 +170750689090,225,0 +170750689140,225,0 +170750689189,227,0 +170750689239,217,0 +170750689287,215,0 +170750689336,216,0 +170750689384,218,0 +170750689432,218,0 +170750689482,220,0 +170750689530,220,0 +170750689578,221,0 +170750689626,224,0 +170750689674,222,0 +170750689723,226,0 +170750689771,225,0 +170750689820,225,0 +170750689868,227,0 +170750689916,226,0 +170750689964,228,0 +170750690014,227,0 +170750690062,228,0 +170750690110,227,0 +170750690158,218,0 +170750690207,219,0 +170750690255,220,0 +170750690305,221,0 +170750690353,222,0 +170750690402,222,0 +170750690452,223,0 +170750690501,224,0 +170750690551,225,0 +170750690600,226,0 +170750690648,227,0 +170750690698,227,0 +170750690747,227,0 +170750690795,227,0 +170750690845,226,0 +170750690894,227,0 +170750690942,228,0 +170750690992,227,0 +170750691040,226,0 +170750691089,220,0 +170750691137,217,0 +170750691187,219,0 +170750691234,220,0 +170750691282,222,0 +170750691330,222,0 +170750691380,223,0 +170750691429,223,0 +170750691479,225,0 +170750691528,225,0 +170750691576,225,0 +170750691626,226,0 +170750691675,228,0 +170750691723,228,0 +170750691771,228,0 +170750691821,227,0 +170750691870,227,0 +170750691918,227,0 +170750691966,227,0 +170750692016,218,0 +170750692064,215,0 +170750692112,216,0 +170750692161,218,0 +170750692211,219,0 +170750692260,220,0 +170750692308,221,0 +170750692356,221,0 +170750692406,222,0 +170750692454,223,0 +170750692502,223,0 +170750692551,224,0 +170750692599,225,0 +170750692647,226,0 +170750692695,227,0 +170750692743,228,0 +170750692793,226,0 +170750692842,227,0 +170750692892,227,0 +170750692939,218,0 +170750692987,215,0 +170750693035,215,0 +170750693085,216,0 +170750693133,217,0 +170750693181,218,0 +170750693229,219,0 +170750693277,219,0 +170750693326,220,0 +170750693376,222,0 +170750693424,222,0 +170750693473,224,0 +170750693521,224,0 +170750693569,225,0 +170750693617,226,0 +170750693666,226,0 +170750693715,235,0 +170750693762,227,0 +170750693810,227,0 +170750693858,226,0 +170750693908,216,0 +170750693956,216,0 +170750694004,216,0 +170750694052,217,0 +170750694100,217,0 +170750694147,218,0 +170750694195,218,0 +170750694245,220,0 +170750694294,220,0 +170750694342,222,0 +170750694390,222,0 +170750694440,224,0 +170750694488,225,0 +170750694536,226,0 +170750694584,226,0 +170750694632,226,0 +170750694680,227,0 +170750694729,226,0 +170750694777,226,0 +170750694827,216,0 +170750694875,215,0 +170750694924,216,0 +170750694972,216,0 +170750695020,216,0 +170750695068,216,0 +170750695116,218,0 +170750695165,219,0 +170750695213,220,0 +170750695261,221,0 +170750695309,222,0 +170750695357,223,0 +170750695406,224,0 +170750695454,226,0 +170750695504,226,0 +170750695552,226,0 +170750695600,227,0 +170750695649,224,0 +170750695699,227,0 +170750695747,216,0 +170750695795,215,0 +170750695842,216,0 +170750695890,216,0 +170750695938,216,0 +170750695986,217,0 +170750696034,218,0 +170750696084,220,0 +170750696133,220,0 +170750696181,223,0 +170750696231,223,0 +170750696280,223,0 +170750696330,227,0 +170750696378,226,0 +170750696427,226,0 +170750696475,226,0 +170750696523,227,0 +170750696571,228,0 +170750696621,228,0 +170750696669,216,0 +170750696717,215,0 +170750696766,215,0 +170750696814,216,0 +170750696864,216,0 +170750696912,217,0 +170750696961,218,0 +170750697009,219,0 +170750697057,221,0 +170750697105,222,0 +170750697154,223,0 +170750697203,223,0 +170750697250,225,0 +170750697300,225,0 +170750697349,225,0 +170750697399,227,0 +170750697448,228,0 +170750697496,227,0 +170750697544,227,0 +170750697592,217,0 +170750697640,215,0 +170750697688,215,0 +170750697736,216,0 +170750697784,216,0 +170750697832,217,0 +170750697880,217,0 +170750697930,217,0 +170750697979,218,0 +170750698029,219,0 +170750698077,220,0 +170750698126,222,0 +170750698174,224,0 +170750698224,224,0 +170750698273,224,0 +170750698321,226,0 +170750698369,226,0 +170750698417,224,0 +170750698466,227,0 +170750698516,217,0 +170750698565,214,0 +170750698613,214,0 +170750698661,215,0 +170750698711,215,0 +170750698760,215,0 +170750698808,216,0 +170750698856,217,0 +170750698906,216,0 +170750698954,217,0 +170750699002,217,0 +170750699050,220,0 +170750699098,220,0 +170750699146,221,0 +170750699195,222,0 +170750699243,223,0 +170750699293,223,0 +170750699342,225,0 +170750699390,226,0 +170750699438,217,0 +170750699486,216,0 +170750699534,216,0 +170750699582,216,0 +170750699631,217,0 +170750699681,219,0 +170750699729,219,0 +170750699777,221,0 +170750699825,221,0 +170750699873,221,0 +170750699920,223,0 +170750699968,223,0 +170750700018,224,0 +170750700066,226,0 +170750700114,225,0 +170750700162,226,0 +170750700210,227,0 +170750700259,228,0 +170750700307,228,0 +170750700357,217,0 +170750700405,215,0 +170750700454,216,0 +170750700502,215,0 +170750700552,217,0 +170750700600,218,0 +170750700648,219,0 +170750700696,221,0 +170750700744,221,0 +170750700793,221,0 +170750700841,224,0 +170750700891,224,0 +170750700938,226,0 +170750700988,226,0 +170750701036,226,0 +170750701084,227,0 +170750701132,231,0 +170750701181,227,0 +170750701231,227,0 +170750701280,217,0 +170750701328,216,0 +170750701376,216,0 +170750701424,217,0 +170750701472,218,0 +170750701522,219,0 +170750701570,220,0 +170750701619,221,0 +170750701667,222,0 +170750701717,222,0 +170750701765,224,0 +170750701813,225,0 +170750701860,225,0 +170750701910,225,0 +170750701959,228,0 +170750702007,228,0 +170750702055,228,0 +170750702103,228,0 +170750702153,228,0 +170750702201,217,0 +170750702249,217,0 +170750702297,218,0 +170750702346,219,0 +170750702394,220,0 +170750702442,220,0 +170750702492,221,0 +170750702541,222,0 +170750702591,222,0 +170750702640,223,0 +170750702688,225,0 +170750702738,224,0 +170750702785,227,0 +170750702833,229,0 +170750702881,226,0 +170750702929,227,0 +170750702977,229,0 +170750703027,228,0 +170750703075,228,0 +170750703123,217,0 +170750703171,216,0 +170750703219,217,0 +170750703268,219,0 +170750703316,219,0 +170750703364,219,0 +170750703412,220,0 +170750703461,220,0 +170750703509,222,0 +170750703557,222,0 +170750703605,224,0 +170750703655,224,0 +170750703703,225,0 +170750703751,226,0 +170750703799,226,0 +170750703848,228,0 +170750703896,228,0 +170750703944,226,0 +170750703993,226,0 +170750704041,226,0 +170750704089,217,0 +170750704137,217,0 +170750704186,219,0 +170750704234,221,0 +170750704282,220,0 +170750704330,220,0 +170750704378,221,0 +170750704427,222,0 +170750704475,223,0 +170750704523,224,0 +170750704571,225,0 +170750704619,225,0 +170750704667,225,0 +170750704715,226,0 +170750704762,226,0 +170750704810,227,0 +170750704858,228,0 +170750704906,228,0 +170750704954,227,0 +170750705002,219,0 +170750705050,219,0 +170750705098,221,0 +170750705147,222,0 +170750705195,223,0 +170750705244,222,0 +170750705294,224,0 +170750705342,225,0 +170750705390,225,0 +170750705437,227,0 +170750705485,227,0 +170750705533,229,0 +170750705581,228,0 +170750705629,228,0 +170750705677,228,0 +170750705726,228,0 +170750705774,227,0 +170750705822,227,0 +170750705870,228,0 +170750705918,219,0 +170750705966,220,0 +170750706014,220,0 +170750706061,222,0 +170750706109,222,0 +170750706157,224,0 +170750706205,224,0 +170750706253,224,0 +170750706301,227,0 +170750706350,227,0 +170750706398,227,0 +170750706446,229,0 +170750706496,228,0 +170750706544,224,0 +170750706593,224,0 +170750706641,228,0 +170750706689,228,0 +170750706737,229,0 +170750706787,227,0 +170750706836,220,0 +170750706884,220,0 +170750706934,221,0 +170750706983,222,0 +170750707031,222,0 +170750707080,222,0 +170750707130,226,0 +170750707179,225,0 +170750707227,226,0 +170750707275,226,0 +170750707325,227,0 +170750707373,228,0 +170750707421,229,0 +170750707470,230,0 +170750707518,229,0 +170750707566,228,0 +170750707614,229,0 +170750707662,227,0 +170750707712,226,0 +170750707761,217,0 +170750707811,216,0 +170750707859,217,0 +170750707907,218,0 +170750707955,219,0 +170750708004,217,0 +170750708052,220,0 +170750708100,221,0 +170750708150,222,0 +170750708198,223,0 +170750708246,224,0 +170750708294,225,0 +170750708343,226,0 +170750708393,229,0 +170750708440,228,0 +170750708490,228,0 +170750708538,228,0 +170750708586,228,0 +170750708634,230,0 +170750708682,217,0 +170750708731,215,0 +170750708779,216,0 +170750708827,216,0 +170750708875,218,0 +170750708925,218,0 +170750708973,219,0 +170750709021,219,0 +170750709069,221,0 +170750709117,222,0 +170750709166,222,0 +170750709216,224,0 +170750709264,225,0 +170750709311,228,0 +170750709359,226,0 +170750709409,228,0 +170750709459,227,0 +170750709506,227,0 +170750709554,226,0 +170750709602,217,0 +170750709652,215,0 +170750709700,217,0 +170750709749,218,0 +170750709799,219,0 +170750709848,217,0 +170750709896,218,0 +170750709946,219,0 +170750709995,220,0 +170750710045,221,0 +170750710093,221,0 +170750710141,225,0 +170750710189,224,0 +170750710237,225,0 +170750710285,226,0 +170750710334,225,0 +170750710382,227,0 +170750710430,227,0 +170750710480,227,0 +170750710528,223,0 +170750710576,215,0 +170750710625,215,0 +170750710675,215,0 +170750710724,215,0 +170750710774,216,0 +170750710822,216,0 +170750710870,217,0 +170750710918,216,0 +170750710965,217,0 +170750711013,219,0 +170750711063,219,0 +170750711112,222,0 +170750711162,223,0 +170750711211,224,0 +170750711259,225,0 +170750711307,225,0 +170750711357,228,0 +170750711406,227,0 +170750711454,226,0 +170750711504,216,0 +170750711552,216,0 +170750711601,215,0 +170750711651,217,0 +170750711699,218,0 +170750711748,219,0 +170750711796,222,0 +170750711844,221,0 +170750711892,222,0 +170750711940,224,0 +170750711988,224,0 +170750712036,224,0 +170750712085,225,0 +170750712135,226,0 +170750712184,226,0 +170750712234,227,0 +170750712283,227,0 +170750712331,227,0 +170750712379,220,0 +170750712429,216,0 +170750712477,217,0 +170750712524,218,0 +170750712572,221,0 +170750712620,220,0 +170750712668,221,0 +170750712716,223,0 +170750712764,223,0 +170750712812,226,0 +170750712861,225,0 +170750712909,227,0 +170750712957,228,0 +170750713005,226,0 +170750713053,230,0 +170750713101,231,0 +170750713148,227,0 +170750713196,228,0 +170750713244,230,0 +170750713292,226,0 +170750713340,216,0 +170750713388,215,0 +170750713436,216,0 +170750713486,218,0 +170750713535,219,0 +170750713583,221,0 +170750713631,223,0 +170750713680,221,0 +170750713730,222,0 +170750713779,224,0 +170750713829,224,0 +170750713878,225,0 +170750713928,226,0 +170750713976,225,0 +170750714025,226,0 +170750714073,227,0 +170750714123,227,0 +170750714172,227,0 +170750714222,227,0 +170750714272,216,0 +170750714321,216,0 +170750714371,216,0 +170750714418,216,0 +170750714468,216,0 +170750714518,218,0 +170750714567,219,0 +170750714615,219,0 +170750714663,221,0 +170750714711,222,0 +170750714760,223,0 +170750714808,224,0 +170750714856,225,0 +170750714904,225,0 +170750714954,225,0 +170750715002,226,0 +170750715050,225,0 +170750715099,227,0 +170750715149,226,0 +170750715198,216,0 +170750715248,216,0 +170750715296,216,0 +170750715344,217,0 +170750715393,219,0 +170750715441,219,0 +170750715489,221,0 +170750715539,222,0 +170750715588,222,0 +170750715638,224,0 +170750715686,225,0 +170750715735,225,0 +170750715784,226,0 +170750715832,226,0 +170750715880,226,0 +170750715928,227,0 +170750715976,227,0 +170750716026,227,0 +170750716075,226,0 +170750716125,216,0 +170750716174,216,0 +170750716224,216,0 +170750716272,216,0 +170750716320,217,0 +170750716368,218,0 +170750716417,218,0 +170750716467,220,0 +170750716515,221,0 +170750716564,222,0 +170750716612,222,0 +170750716662,223,0 +170750716711,223,0 +170750716761,225,0 +170750716809,226,0 +170750716858,227,0 +170750716906,227,0 +170750716954,227,0 +170750717004,228,0 +170750717053,216,0 +170750717101,215,0 +170750717151,215,0 +170750717200,216,0 +170750717250,216,0 +170750717298,217,0 +170750717347,217,0 +170750717395,217,0 +170750717443,219,0 +170750717491,220,0 +170750717539,222,0 +170750717588,222,0 +170750717636,224,0 +170750717686,224,0 +170750717734,224,0 +170750717782,225,0 +170750717831,225,0 +170750717881,227,0 +170750717930,227,0 +170750717978,217,0 +170750718026,215,0 +170750718074,216,0 +170750718122,217,0 +170750718172,217,0 +170750718220,217,0 +170750718268,218,0 +170750718316,217,0 +170750718364,219,0 +170750718412,220,0 +170750718460,221,0 +170750718508,222,0 +170750718555,224,0 +170750718603,223,0 +170750718651,224,0 +170750718699,224,0 +170750718749,224,0 +170750718797,224,0 +170750718845,228,0 +170750718894,217,0 +170750718944,216,0 +170750718992,215,0 +170750719040,217,0 +170750719088,218,0 +170750719136,218,0 +170750719185,219,0 +170750719233,220,0 +170750719281,220,0 +170750719331,223,0 +170750719380,223,0 +170750719428,225,0 +170750719478,225,0 +170750719527,226,0 +170750719577,225,0 +170750719625,226,0 +170750719673,226,0 +170750719722,226,0 +170750719772,227,0 +170750719820,217,0 +170750719868,217,0 +170750719917,218,0 +170750719965,219,0 +170750720013,220,0 +170750720062,221,0 +170750720110,223,0 +170750720160,223,0 +170750720208,223,0 +170750720257,224,0 +170750720307,225,0 +170750720355,227,0 +170750720404,227,0 +170750720454,228,0 +170750720502,227,0 +170750720551,228,0 +170750720599,228,0 +170750720649,228,0 +170750720697,226,0 +170750720745,218,0 +170750720794,217,0 +170750720842,218,0 +170750720890,220,0 +170750720938,220,0 +170750720986,221,0 +170750721036,222,0 +170750721085,222,0 +170750721133,225,0 +170750721181,224,0 +170750721229,226,0 +170750721278,226,0 +170750721326,230,0 +170750721376,226,0 +170750721424,227,0 +170750721472,227,0 +170750721520,228,0 +170750721568,227,0 +170750721616,227,0 +170750721664,217,0 +170750721712,216,0 +170750721759,217,0 +170750721807,218,0 +170750721855,219,0 +170750721903,220,0 +170750721951,221,0 +170750721999,222,0 +170750722047,223,0 +170750722095,223,0 +170750722144,224,0 +170750722192,225,0 +170750722240,226,0 +170750722288,226,0 +170750722336,227,0 +170750722384,226,0 +170750722432,225,0 +170750722480,224,0 +170750722528,227,0 +170750722577,218,0 +170750722625,216,0 +170750722675,216,0 +170750722724,216,0 +170750722772,217,0 +170750722822,218,0 +170750722870,218,0 +170750722918,220,0 +170750722967,221,0 +170750723015,222,0 +170750723063,222,0 +170750723111,223,0 +170750723160,224,0 +170750723210,225,0 +170750723258,226,0 +170750723306,227,0 +170750723355,226,0 +170750723403,226,0 +170750723451,228,0 +170750723501,221,0 +170750723549,215,0 +170750723596,216,0 +170750723644,216,0 +170750723692,217,0 +170750723740,218,0 +170750723788,218,0 +170750723836,219,0 +170750723885,221,0 +170750723933,222,0 +170750723981,223,0 +170750724029,223,0 +170750724077,227,0 +170750724125,227,0 +170750724173,226,0 +170750724221,228,0 +170750724270,228,0 +170750724318,228,0 +170750724366,228,0 +170750724414,227,0 +170750724462,217,0 +170750724511,216,0 +170750724559,216,0 +170750724607,218,0 +170750724655,219,0 +170750724704,220,0 +170750724752,221,0 +170750724800,223,0 +170750724848,222,0 +170750724896,224,0 +170750724944,225,0 +170750724993,225,0 +170750725041,228,0 +170750725089,228,0 +170750725137,227,0 +170750725185,227,0 +170750725232,227,0 +170750725280,230,0 +170750725328,227,0 +170750725376,217,0 +170750725426,215,0 +170750725473,216,0 +170750725521,216,0 +170750725569,217,0 +170750725619,218,0 +170750725666,219,0 +170750725714,220,0 +170750725764,221,0 +170750725812,222,0 +170750725860,223,0 +170750725909,224,0 +170750725957,224,0 +170750726006,228,0 +170750726054,226,0 +170750726102,226,0 +170750726152,226,0 +170750726200,226,0 +170750726249,226,0 +170750726297,217,0 +170750726346,215,0 +170750726394,216,0 +170750726444,215,0 +170750726493,217,0 +170750726541,217,0 +170750726589,219,0 +170750726637,220,0 +170750726685,220,0 +170750726733,222,0 +170750726780,224,0 +170750726830,224,0 +170750726878,225,0 +170750726926,226,0 +170750726975,227,0 +170750727023,228,0 +170750727071,226,0 +170750727120,226,0 +170750727168,227,0 +170750727217,217,0 +170750727265,215,0 +170750727313,215,0 +170750727361,216,0 +170750727409,216,0 +170750727457,218,0 +170750727505,218,0 +170750727553,219,0 +170750727601,220,0 +170750727649,221,0 +170750727696,222,0 +170750727744,223,0 +170750727794,225,0 +170750727842,227,0 +170750727890,227,0 +170750727939,227,0 +170750727987,227,0 +170750728037,227,0 +170750728085,227,0 +170750728134,227,0 +170750728182,216,0 +170750728232,216,0 +170750728280,216,0 +170750728328,216,0 +170750728377,216,0 +170750728425,218,0 +170750728475,218,0 +170750728523,219,0 +170750728571,220,0 +170750728620,220,0 +170750728668,221,0 +170750728718,223,0 +170750728766,225,0 +170750728814,225,0 +170750728863,225,0 +170750728911,226,0 +170750728959,228,0 +170750729008,227,0 +170750729056,226,0 +170750729104,215,0 +170750729152,215,0 +170750729200,215,0 +170750729250,216,0 +170750729298,216,0 +170750729346,216,0 +170750729395,217,0 +170750729443,217,0 +170750729493,220,0 +170750729541,221,0 +170750729590,223,0 +170750729638,225,0 +170750729688,228,0 +170750729736,227,0 +170750729784,226,0 +170750729831,227,0 +170750729881,227,0 +170750729929,227,0 +170750729977,228,0 +170750730026,216,0 +170750730076,216,0 +170750730125,216,0 +170750730175,216,0 +170750730223,217,0 +170750730271,217,0 +170750730319,217,0 +170750730367,218,0 +170750730415,220,0 +170750730463,222,0 +170750730511,223,0 +170750730559,225,0 +170750730607,229,0 +170750730655,227,0 +170750730702,228,0 +170750730752,227,0 +170750730800,226,0 +170750730848,228,0 +170750730896,226,0 +170750730944,217,0 +170750730993,216,0 +170750731041,216,0 +170750731089,216,0 +170750731139,216,0 +170750731187,218,0 +170750731235,218,0 +170750731284,220,0 +170750731334,221,0 +170750731383,222,0 +170750731433,222,0 +170750731481,224,0 +170750731529,229,0 +170750731578,228,0 +170750731626,229,0 +170750731676,226,0 +170750731724,227,0 +170750731772,227,0 +170750731820,227,0 +170750731868,217,0 +170750731916,216,0 +170750731965,216,0 +170750732013,217,0 +170750732063,219,0 +170750732111,220,0 +170750732158,220,0 +170750732206,221,0 +170750732254,222,0 +170750732304,223,0 +170750732352,225,0 +170750732400,225,0 +170750732448,225,0 +170750732497,226,0 +170750732545,227,0 +170750732593,228,0 +170750732641,225,0 +170750732691,227,0 +170750732739,227,0 +170750732787,219,0 +170750732835,220,0 +170750732884,221,0 +170750732932,221,0 +170750732982,222,0 +170750733031,223,0 +170750733079,224,0 +170750733129,223,0 +170750733177,226,0 +170750733226,227,0 +170750733274,226,0 +170750733323,227,0 +170750733371,228,0 +170750733419,228,0 +170750733467,228,0 +170750733515,229,0 +170750733563,226,0 +170750733611,227,0 +170750733661,227,0 +170750733709,220,0 +170750733756,219,0 +170750733804,221,0 +170750733852,221,0 +170750733900,223,0 +170750733948,223,0 +170750733998,225,0 +170750734046,224,0 +170750734093,225,0 +170750734141,227,0 +170750734191,226,0 +170750734239,227,0 +170750734287,227,0 +170750734335,226,0 +170750734383,228,0 +170750734432,227,0 +170750734480,228,0 +170750734528,227,0 +170750734576,227,0 +170750734623,221,0 +170750734673,216,0 +170750734721,217,0 +170750734769,219,0 +170750734817,220,0 +170750734865,221,0 +170750734912,223,0 +170750734962,223,0 +170750735010,222,0 +170750735058,224,0 +170750735106,224,0 +170750735153,226,0 +170750735203,225,0 +170750735251,227,0 +170750735300,228,0 +170750735348,226,0 +170750735398,227,0 +170750735446,228,0 +170750735494,227,0 +170750735542,226,0 +170750735589,216,0 +170750735637,217,0 +170750735685,218,0 +170750735735,218,0 +170750735784,220,0 +170750735832,221,0 +170750735882,221,0 +170750735931,222,0 +170750735981,224,0 +170750736029,225,0 +170750736077,225,0 +170750736125,225,0 +170750736173,228,0 +170750736222,228,0 +170750736270,227,0 +170750736318,227,0 +170750736367,228,0 +170750736415,224,0 +170750736465,225,0 +170750736513,215,0 +170750736562,215,0 +170750736610,217,0 +170750736658,217,0 +170750736708,220,0 +170750736756,221,0 +170750736804,221,0 +170750736852,221,0 +170750736900,222,0 +170750736949,223,0 +170750736997,225,0 +170750737045,225,0 +170750737095,226,0 +170750737143,226,0 +170750737192,227,0 +170750737242,227,0 +170750737291,227,0 +170750737339,227,0 +170750737387,227,0 +170750737437,216,0 +170750737484,216,0 +170750737534,216,0 +170750737582,217,0 +170750737630,218,0 +170750737678,219,0 +170750737727,220,0 +170750737775,221,0 +170750737824,222,0 +170750737872,224,0 +170750737920,223,0 +170750737968,224,0 +170750738016,226,0 +170750738065,226,0 +170750738113,227,0 +170750738161,228,0 +170750738209,226,0 +170750738257,227,0 +170750738305,227,0 +170750738354,218,0 +170750738402,215,0 +170750738450,216,0 +170750738500,217,0 +170750738548,218,0 +170750738595,219,0 +170750738643,220,0 +170750738693,221,0 +170750738741,221,0 +170750738789,223,0 +170750738837,223,0 +170750738884,224,0 +170750738932,224,0 +170750738980,224,0 +170750739028,226,0 +170750739076,228,0 +170750739124,227,0 +170750739173,228,0 +170750739221,226,0 +170750739269,217,0 +170750739317,215,0 +170750739365,216,0 +170750739414,216,0 +170750739462,217,0 +170750739510,218,0 +170750739558,219,0 +170750739607,220,0 +170750739655,222,0 +170750739703,221,0 +170750739752,222,0 +170750739800,224,0 +170750739848,225,0 +170750739896,226,0 +170750739946,226,0 +170750739994,226,0 +170750740041,227,0 +170750740089,226,0 +170750740137,227,0 +170750740187,219,0 +170750740235,215,0 +170750740282,215,0 +170750740332,215,0 +170750740380,216,0 +170750740428,216,0 +170750740475,217,0 +170750740523,218,0 +170750740571,219,0 +170750740619,221,0 +170750740667,223,0 +170750740715,223,0 +170750740763,223,0 +170750740811,224,0 +170750740859,226,0 +170750740906,226,0 +170750740954,227,0 +170750741002,226,0 +170750741050,227,0 +170750741098,226,0 +170750741146,217,0 +170750741194,216,0 +170750741242,216,0 +170750741289,217,0 +170750741339,217,0 +170750741387,217,0 +170750741435,218,0 +170750741483,220,0 +170750741530,221,0 +170750741578,222,0 +170750741626,223,0 +170750741674,223,0 +170750741723,224,0 +170750741771,227,0 +170750741819,225,0 +170750741867,225,0 +170750741915,227,0 +170750741963,226,0 +170750742011,229,0 +170750742060,217,0 +170750742108,215,0 +170750742156,215,0 +170750742204,217,0 +170750742252,217,0 +170750742301,218,0 +170750742349,219,0 +170750742397,220,0 +170750742445,220,0 +170750742493,221,0 +170750742541,221,0 +170750742589,222,0 +170750742636,224,0 +170750742684,224,0 +170750742732,225,0 +170750742780,226,0 +170750742828,225,0 +170750742876,227,0 +170750742924,227,0 +170750742972,224,0 +170750743020,215,0 +170750743067,216,0 +170750743115,218,0 +170750743165,219,0 +170750743213,220,0 +170750743260,221,0 +170750743308,221,0 +170750743356,223,0 +170750743404,224,0 +170750743452,224,0 +170750743502,226,0 +170750743551,228,0 +170750743601,229,0 +170750743648,231,0 +170750743696,230,0 +170750743744,229,0 +170750743794,228,0 +170750743842,227,0 +170750743889,227,0 +170750743939,215,0 +170750743987,216,0 +170750744035,217,0 +170750744083,219,0 +170750744130,221,0 +170750744178,220,0 +170750744226,222,0 +170750744274,223,0 +170750744322,224,0 +170750744370,224,0 +170750744418,225,0 +170750744466,226,0 +170750744513,227,0 +170750744561,227,0 +170750744609,227,0 +170750744657,228,0 +170750744705,228,0 +170750744753,228,0 +170750744801,227,0 +170750744848,218,0 +170750744898,216,0 +170750744946,216,0 +170750744994,218,0 +170750745042,219,0 +170750745089,220,0 +170750745137,221,0 +170750745185,221,0 +170750745235,223,0 +170750745283,223,0 +170750745331,227,0 +170750745380,228,0 +170750745430,229,0 +170750745479,228,0 +170750745529,228,0 +170750745577,228,0 +170750745626,228,0 +170750745676,228,0 +170750745724,227,0 +170750745772,217,0 +170750745821,215,0 +170750745869,215,0 +170750745917,217,0 +170750745965,217,0 +170750746013,219,0 +170750746062,219,0 +170750746112,220,0 +170750746161,221,0 +170750746211,223,0 +170750746260,223,0 +170750746310,223,0 +170750746358,227,0 +170750746407,228,0 +170750746457,227,0 +170750746505,227,0 +170750746553,227,0 +170750746601,228,0 +170750746650,226,0 +170750746698,217,0 +170750746746,215,0 +170750746796,215,0 +170750746843,216,0 +170750746891,216,0 +170750746939,216,0 +170750746987,217,0 +170750747037,217,0 +170750747084,217,0 +170750747132,218,0 +170750747180,219,0 +170750747228,221,0 +170750747276,222,0 +170750747326,223,0 +170750747375,223,0 +170750747424,227,0 +170750747474,226,0 +170750747524,222,0 +170750747573,227,0 +170750747621,217,0 +170750747670,215,0 +170750747718,215,0 +170750747768,215,0 +170750747817,216,0 +170750747867,217,0 +170750747915,217,0 +170750747964,218,0 +170750748012,219,0 +170750748062,221,0 +170750748111,221,0 +170750748161,223,0 +170750748210,223,0 +170750748258,224,0 +170750748306,225,0 +170750748356,227,0 +170750748405,227,0 +170750748453,225,0 +170750748501,226,0 +170750748551,217,0 +170750748599,216,0 +170750748647,216,0 +170750748695,216,0 +170750748743,217,0 +170750748792,219,0 +170750748840,219,0 +170750748888,220,0 +170750748936,221,0 +170750748984,222,0 +170750749032,223,0 +170750749080,225,0 +170750749127,226,0 +170750749175,227,0 +170750749223,228,0 +170750749271,226,0 +170750749319,227,0 +170750749367,228,0 +170750749417,229,0 +170750749465,217,0 +170750749513,216,0 +170750749561,217,0 +170750749609,218,0 +170750749658,220,0 +170750749706,220,0 +170750749755,221,0 +170750749803,222,0 +170750749851,222,0 +170750749899,223,0 +170750749949,224,0 +170750749998,225,0 +170750750046,225,0 +170750750095,227,0 +170750750145,226,0 +170750750195,227,0 +170750750242,228,0 +170750750292,229,0 +170750750340,229,0 +170750750388,218,0 +170750750436,216,0 +170750750484,216,0 +170750750532,218,0 +170750750580,219,0 +170750750627,219,0 +170750750675,220,0 +170750750725,222,0 +170750750773,222,0 +170750750822,222,0 +170750750870,224,0 +170750750918,225,0 +170750750968,225,0 +170750751016,228,0 +170750751063,226,0 +170750751113,227,0 +170750751161,229,0 +170750751210,228,0 +170750751260,228,0 +170750751308,226,0 +170750751356,215,0 +170750751404,215,0 +170750751452,216,0 +170750751500,217,0 +170750751548,218,0 +170750751596,218,0 +170750751645,220,0 +170750751695,221,0 +170750751743,222,0 +170750751792,225,0 +170750751840,226,0 +170750751888,225,0 +170750751936,227,0 +170750751984,228,0 +170750752033,227,0 +170750752081,228,0 +170750752129,228,0 +170750752177,228,0 +170750752225,226,0 +170750752273,216,0 +170750752323,215,0 +170750752372,216,0 +170750752422,216,0 +170750752470,217,0 +170750752518,219,0 +170750752567,219,0 +170750752615,220,0 +170750752663,221,0 +170750752711,221,0 +170750752758,222,0 +170750752806,224,0 +170750752854,225,0 +170750752904,227,0 +170750752953,226,0 +170750753003,227,0 +170750753051,226,0 +170750753099,227,0 +170750753147,227,0 +170750753195,216,0 +170750753244,215,0 +170750753294,216,0 +170750753343,216,0 +170750753393,217,0 +170750753440,217,0 +170750753490,218,0 +170750753538,220,0 +170750753586,221,0 +170750753633,222,0 +170750753681,223,0 +170750753729,225,0 +170750753779,226,0 +170750753829,225,0 +170750753878,225,0 +170750753926,226,0 +170750753974,228,0 +170750754023,227,0 +170750754071,226,0 +170750754121,216,0 +170750754170,215,0 +170750754218,216,0 +170750754266,216,0 +170750754316,217,0 +170750754364,218,0 +170750754412,220,0 +170750754461,220,0 +170750754509,221,0 +170750754557,223,0 +170750754605,223,0 +170750754653,224,0 +170750754701,227,0 +170750754750,227,0 +170750754800,226,0 +170750754850,227,0 +170750754897,227,0 +170750754945,227,0 +170750754993,226,0 +170750755043,217,0 +170750755092,217,0 +170750755140,219,0 +170750755188,219,0 +170750755238,221,0 +170750755287,221,0 +170750755335,222,0 +170750755383,222,0 +170750755431,225,0 +170750755479,226,0 +170750755527,227,0 +170750755575,227,0 +170750755625,227,0 +170750755673,228,0 +170750755722,227,0 +170750755770,227,0 +170750755818,227,0 +170750755866,226,0 +170750755914,226,0 +170750755963,217,0 +170750756011,217,0 +170750756061,218,0 +170750756109,219,0 +170750756157,221,0 +170750756205,221,0 +170750756253,222,0 +170750756300,222,0 +170750756348,224,0 +170750756396,227,0 +170750756444,224,0 +170750756492,226,0 +170750756540,228,0 +170750756588,228,0 +170750756636,227,0 +170750756684,227,0 +170750756732,226,0 +170750756779,227,0 +170750756827,228,0 +170750756875,218,0 +170750756923,216,0 +170750756973,217,0 +170750757020,218,0 +170750757068,219,0 +170750757116,220,0 +170750757164,220,0 +170750757212,221,0 +170750757262,223,0 +170750757311,222,0 +170750757361,224,0 +170750757408,225,0 +170750757456,228,0 +170750757504,225,0 +170750757552,227,0 +170750757602,227,0 +170750757650,228,0 +170750757698,227,0 +170750757747,228,0 +170750757795,217,0 +170750757845,216,0 +170750757894,217,0 +170750757942,218,0 +170750757990,219,0 +170750758040,220,0 +170750758088,220,0 +170750758136,221,0 +170750758183,222,0 +170750758233,223,0 +170750758281,223,0 +170750758329,225,0 +170750758377,226,0 +170750758424,226,0 +170750758472,226,0 +170750758520,226,0 +170750758568,226,0 +170750758616,227,0 +170750758664,228,0 +170750758712,224,0 +170750758760,216,0 +170750758808,217,0 +170750758856,218,0 +170750758905,219,0 +170750758953,220,0 +170750759003,221,0 +170750759052,222,0 +170750759100,223,0 +170750759148,223,0 +170750759196,225,0 +170750759246,226,0 +170750759293,226,0 +170750759343,227,0 +170750759392,227,0 +170750759440,227,0 +170750759490,228,0 +170750759538,226,0 +170750759586,227,0 +170750759635,225,0 +170750759683,215,0 +170750759731,215,0 +170750759779,216,0 +170750759829,217,0 +170750759877,219,0 +170750759926,220,0 +170750759976,220,0 +170750760024,221,0 +170750760073,222,0 +170750760121,223,0 +170750760169,223,0 +170750760217,225,0 +170750760265,224,0 +170750760312,226,0 +170750760362,226,0 +170750760410,227,0 +170750760458,227,0 +170750760507,228,0 +170750760555,221,0 +170750760603,216,0 +170750760651,215,0 +170750760699,216,0 +170750760747,216,0 +170750760795,216,0 +170750760842,216,0 +170750760892,217,0 +170750760940,219,0 +170750760987,219,0 +170750761035,220,0 +170750761085,221,0 +170750761133,223,0 +170750761181,223,0 +170750761230,225,0 +170750761278,225,0 +170750761326,226,0 +170750761374,226,0 +170750761423,227,0 +170750761471,224,0 +170750761519,216,0 +170750761567,215,0 +170750761615,216,0 +170750761663,215,0 +170750761711,217,0 +170750761759,217,0 +170750761807,217,0 +170750761855,217,0 +170750761903,217,0 +170750761951,219,0 +170750761999,221,0 +170750762047,222,0 +170750762096,224,0 +170750762146,224,0 +170750762193,225,0 +170750762243,224,0 +170750762293,229,0 +170750762342,228,0 +170750762392,224,0 +170750762440,217,0 +170750762487,216,0 +170750762535,216,0 +170750762583,216,0 +170750762631,217,0 +170750762679,218,0 +170750762727,219,0 +170750762777,220,0 +170750762825,221,0 +170750762874,222,0 +170750762922,222,0 +170750762972,225,0 +170750763020,226,0 +170750763068,228,0 +170750763117,226,0 +170750763167,227,0 +170750763215,227,0 +170750763264,227,0 +170750763314,227,0 +170750763363,216,0 +170750763413,216,0 +170750763461,216,0 +170750763510,217,0 +170750763560,218,0 +170750763608,220,0 +170750763656,219,0 +170750763704,220,0 +170750763753,221,0 +170750763803,223,0 +170750763850,223,0 +170750763898,225,0 +170750763946,225,0 +170750763994,226,0 +170750764042,227,0 +170750764090,226,0 +170750764138,228,0 +170750764188,227,0 +170750764236,225,0 +170750764284,217,0 +170750764332,216,0 +170750764380,216,0 +170750764428,218,0 +170750764476,219,0 +170750764524,218,0 +170750764573,221,0 +170750764621,221,0 +170750764671,222,0 +170750764719,224,0 +170750764768,224,0 +170750764818,226,0 +170750764867,226,0 +170750764915,228,0 +170750764963,229,0 +170750765013,229,0 +170750765062,227,0 +170750765110,229,0 +170750765158,227,0 +170750765206,218,0 +170750765254,217,0 +170750765303,218,0 +170750765353,218,0 +170750765402,220,0 +170750765450,221,0 +170750765498,222,0 +170750765546,222,0 +170750765596,224,0 +170750765645,225,0 +170750765693,226,0 +170750765741,227,0 +170750765789,227,0 +170750765837,229,0 +170750765887,228,0 +170750765936,228,0 +170750765984,228,0 +170750766032,224,0 +170750766081,222,0 +170750766129,219,0 +170750766177,220,0 +170750766227,222,0 +170750766275,222,0 +170750766323,222,0 +170750766371,223,0 +170750766420,225,0 +170750766468,224,0 +170750766518,226,0 +170750766567,227,0 +170750766615,229,0 +170750766663,227,0 +170750766711,228,0 +170750766759,228,0 +170750766809,228,0 +170750766857,228,0 +170750766906,228,0 +170750766956,228,0 +170750767003,227,0 +170750767052,217,0 +170750767100,217,0 +170750767149,219,0 +170750767197,219,0 +170750767245,220,0 +170750767293,222,0 +170750767341,222,0 +170750767389,226,0 +170750767439,223,0 +170750767488,224,0 +170750767536,225,0 +170750767584,226,0 +170750767632,227,0 +170750767682,228,0 +170750767730,228,0 +170750767778,228,0 +170750767826,227,0 +170750767875,227,0 +170750767923,227,0 +170750767971,218,0 +170750768019,216,0 +170750768067,216,0 +170750768115,218,0 +170750768163,219,0 +170750768210,220,0 +170750768258,221,0 +170750768308,221,0 +170750768357,222,0 +170750768407,224,0 +170750768455,224,0 +170750768503,225,0 +170750768551,225,0 +170750768599,226,0 +170750768648,226,0 +170750768696,228,0 +170750768746,227,0 +170750768795,227,0 +170750768843,228,0 +170750768891,217,0 +170750768939,216,0 +170750768989,216,0 +170750769038,217,0 +170750769086,218,0 +170750769134,219,0 +170750769182,220,0 +170750769231,219,0 +170750769281,221,0 +170750769329,221,0 +170750769377,222,0 +170750769426,224,0 +170750769476,225,0 +170750769525,226,0 +170750769575,226,0 +170750769624,226,0 +170750769672,227,0 +170750769720,227,0 +170750769770,227,0 +170750769818,217,0 +170750769866,216,0 +170750769915,216,0 +170750769963,217,0 +170750770013,218,0 +170750770062,218,0 +170750770112,219,0 +170750770160,222,0 +170750770207,221,0 +170750770255,223,0 +170750770303,224,0 +170750770351,225,0 +170750770399,226,0 +170750770447,227,0 +170750770495,228,0 +170750770543,227,0 +170750770590,228,0 +170750770638,228,0 +170750770686,228,0 +170750770734,217,0 +170750770782,215,0 +170750770830,216,0 +170750770880,216,0 +170750770928,217,0 +170750770976,219,0 +170750771025,220,0 +170750771075,220,0 +170750771123,223,0 +170750771171,223,0 +170750771219,224,0 +170750771268,236,0 +170750771318,227,0 +170750771367,226,0 +170750771415,226,0 +170750771463,227,0 +170750771513,227,0 +170750771560,227,0 +170750771608,227,0 +170750771656,218,0 +170750771706,215,0 +170750771754,215,0 +170750771802,216,0 +170750771850,216,0 +170750771898,216,0 +170750771945,216,0 +170750771993,217,0 +170750772043,217,0 +170750772091,219,0 +170750772140,220,0 +170750772190,220,0 +170750772238,221,0 +170750772286,223,0 +170750772335,224,0 +170750772385,224,0 +170750772433,225,0 +170750772481,226,0 +170750772529,226,0 +170750772578,219,0 +170750772626,216,0 +170750772674,216,0 +170750772722,216,0 +170750772770,217,0 +170750772818,218,0 +170750772867,219,0 +170750772917,220,0 +170750772964,223,0 +170750773012,222,0 +170750773060,223,0 +170750773108,223,0 +170750773156,225,0 +170750773204,225,0 +170750773252,228,0 +170750773301,229,0 +170750773349,228,0 +170750773398,227,0 +170750773448,228,0 +170750773497,218,0 +170750773545,216,0 +170750773593,216,0 +170750773641,217,0 +170750773690,218,0 +170750773738,218,0 +170750773786,220,0 +170750773836,220,0 +170750773884,221,0 +170750773932,222,0 +170750773981,222,0 +170750774029,223,0 +170750774077,226,0 +170750774125,227,0 +170750774173,226,0 +170750774221,228,0 +170750774269,227,0 +170750774318,227,0 +170750774366,227,0 +170750774414,226,0 +170750774462,216,0 +170750774510,216,0 +170750774559,216,0 +170750774609,217,0 +170750774658,218,0 +170750774706,219,0 +170750774754,220,0 +170750774802,220,0 +170750774852,222,0 +170750774900,222,0 +170750774949,224,0 +170750774997,225,0 +170750775047,225,0 +170750775095,226,0 +170750775142,227,0 +170750775192,227,0 +170750775241,228,0 +170750775291,227,0 +170750775339,226,0 +170750775388,216,0 +170750775436,217,0 +170750775486,217,0 +170750775534,219,0 +170750775583,219,0 +170750775631,220,0 +170750775679,222,0 +170750775729,223,0 +170750775777,224,0 +170750775825,225,0 +170750775874,226,0 +170750775924,227,0 +170750775973,227,0 +170750776023,227,0 +170750776071,227,0 +170750776120,227,0 +170750776169,227,0 +170750776219,228,0 +170750776268,225,0 +170750776318,215,0 +170750776368,215,0 +170750776417,217,0 +170750776465,218,0 +170750776513,219,0 +170750776563,220,0 +170750776610,221,0 +170750776660,222,0 +170750776709,223,0 +170750776757,224,0 +170750776807,225,0 +170750776857,226,0 +170750776904,227,0 +170750776952,228,0 +170750777002,228,0 +170750777050,226,0 +170750777099,227,0 +170750777149,227,0 +170750777197,217,0 +170750777245,215,0 +170750777293,216,0 +170750777342,216,0 +170750777392,216,0 +170750777440,217,0 +170750777489,217,0 +170750777537,218,0 +170750777585,220,0 +170750777633,222,0 +170750777683,221,0 +170750777732,223,0 +170750777780,224,0 +170750777828,225,0 +170750777876,224,0 +170750777926,225,0 +170750777975,226,0 +170750778023,226,0 +170750778073,227,0 +170750778122,216,0 +170750778172,215,0 +170750778221,215,0 +170750778269,215,0 +170750778317,215,0 +170750778367,216,0 +170750778416,217,0 +170750778464,217,0 +170750778514,217,0 +170750778563,218,0 +170750778613,219,0 +170750778662,220,0 +170750778710,224,0 +170750778758,221,0 +170750778808,223,0 +170750778857,225,0 +170750778907,224,0 +170750778955,224,0 +170750779003,226,0 +170750779052,217,0 +170750779100,215,0 +170750779148,215,0 +170750779196,215,0 +170750779244,216,0 +170750779292,216,0 +170750779340,217,0 +170750779388,217,0 +170750779436,217,0 +170750779484,218,0 +170750779532,219,0 +170750779582,220,0 +170750779631,222,0 +170750779681,222,0 +170750779730,223,0 +170750779778,223,0 +170750779828,223,0 +170750779877,224,0 +170750779925,227,0 +170750779973,218,0 +170750780021,216,0 +170750780071,216,0 +170750780119,216,0 +170750780166,216,0 +170750780216,216,0 +170750780264,217,0 +170750780312,217,0 +170750780360,218,0 +170750780408,219,0 +170750780456,221,0 +170750780505,222,0 +170750780553,225,0 +170750780603,223,0 +170750780651,225,0 +170750780699,226,0 +170750780747,224,0 +170750780796,227,0 +170750780846,226,0 +170750780894,228,0 +170750780943,227,0 +170750780991,227,0 +170750781041,228,0 +170750781089,228,0 +170750781138,228,0 +170750781186,227,0 +170750781234,227,0 +170750781282,227,0 +170750781332,226,0 +170750781381,216,0 +170750781431,216,0 +170750781480,217,0 +170750781530,218,0 +170750781578,219,0 +170750781627,220,0 +170750781675,221,0 +170750781723,221,0 +170750781771,222,0 +170750781821,222,0 +170750781870,223,0 +170750781918,224,0 +170750781966,225,0 +170750782014,226,0 +170750782062,226,0 +170750782111,225,0 +170750782159,224,0 +170750782209,226,0 +170750782257,226,0 +170750782305,216,0 +170750782354,216,0 +170750782404,216,0 +170750782452,216,0 +170750782500,217,0 +170750782547,218,0 +170750782595,219,0 +170750782643,220,0 +170750782691,220,0 +170750782739,220,0 +170750782789,221,0 +170750782837,223,0 +170750782886,224,0 +170750782934,224,0 +170750782982,228,0 +170750783030,227,0 +170750783080,225,0 +170750783129,228,0 +170750783179,226,0 +170750783227,216,0 +170750783275,215,0 +170750783323,217,0 +170750783371,217,0 +170750783419,218,0 +170750783466,219,0 +170750783514,220,0 +170750783564,221,0 +170750783613,221,0 +170750783663,222,0 +170750783712,223,0 +170750783760,224,0 +170750783810,226,0 +170750783858,225,0 +170750783907,226,0 +170750783955,228,0 +170750784003,226,0 +170750784051,227,0 +170750784099,227,0 +170750784147,216,0 +170750784195,216,0 +170750784243,216,0 +170750784292,217,0 +170750784342,218,0 +170750784390,219,0 +170750784439,220,0 +170750784489,221,0 +170750784537,222,0 +170750784587,223,0 +170750784635,224,0 +170750784682,227,0 +170750784730,227,0 +170750784778,226,0 +170750784828,226,0 +170750784877,227,0 +170750784925,226,0 +170750784973,227,0 +170750785021,227,0 +170750785069,217,0 +170750785119,216,0 +170750785168,217,0 +170750785218,218,0 +170750785266,220,0 +170750785315,221,0 +170750785363,221,0 +170750785411,223,0 +170750785459,223,0 +170750785507,224,0 +170750785556,225,0 +170750785606,227,0 +170750785654,225,0 +170750785702,228,0 +170750785750,228,0 +170750785799,229,0 +170750785849,227,0 +170750785897,228,0 +170750785945,227,0 +170750785994,217,0 +170750786044,216,0 +170750786092,217,0 +170750786140,218,0 +170750786188,219,0 +170750786237,220,0 +170750786287,222,0 +170750786335,222,0 +170750786383,223,0 +170750786432,223,0 +170750786480,225,0 +170750786530,227,0 +170750786579,229,0 +170750786627,228,0 +170750786675,228,0 +170750786725,227,0 +170750786773,227,0 +170750786822,228,0 +170750786870,227,0 +170750786920,216,0 +170750786968,216,0 +170750787016,217,0 +170750787064,218,0 +170750787113,220,0 +170750787161,221,0 +170750787209,221,0 +170750787257,222,0 +170750787305,222,0 +170750787354,223,0 +170750787404,224,0 +170750787453,225,0 +170750787503,226,0 +170750787551,227,0 +170750787600,227,0 +170750787648,229,0 +170750787696,227,0 +170750787744,229,0 +170750787794,227,0 +170750787842,217,0 +170750787890,216,0 +170750787938,216,0 +170750787986,217,0 +170750788034,217,0 +170750788083,220,0 +170750788131,219,0 +170750788181,221,0 +170750788228,222,0 +170750788276,222,0 +170750788326,223,0 +170750788374,225,0 +170750788422,228,0 +170750788470,227,0 +170750788518,227,0 +170750788567,227,0 +170750788615,227,0 +170750788663,228,0 +170750788713,228,0 +170750788761,217,0 +170750788809,216,0 +170750788858,216,0 +170750788906,216,0 +170750788955,217,0 +170750789003,216,0 +170750789051,217,0 +170750789099,218,0 +170750789147,218,0 +170750789197,222,0 +170750789245,223,0 +170750789294,223,0 +170750789342,225,0 +170750789392,224,0 +170750789440,226,0 +170750789488,226,0 +170750789536,227,0 +170750789584,227,0 +170750789631,227,0 +170750789679,217,0 +170750789729,215,0 +170750789777,216,0 +170750789825,217,0 +170750789873,217,0 +170750789920,217,0 +170750789968,218,0 +170750790016,219,0 +170750790064,219,0 +170750790112,220,0 +170750790161,221,0 +170750790209,223,0 +170750790259,225,0 +170750790306,224,0 +170750790354,226,0 +170750790404,226,0 +170750790454,228,0 +170750790503,228,0 +170750790551,226,0 +170750790599,217,0 +170750790647,216,0 +170750790695,216,0 +170750790744,215,0 +170750790792,217,0 +170750790840,217,0 +170750790890,219,0 +170750790939,221,0 +170750790987,220,0 +170750791037,221,0 +170750791086,224,0 +170750791134,223,0 +170750791182,223,0 +170750791232,224,0 +170750791281,227,0 +170750791331,229,0 +170750791379,228,0 +170750791427,227,0 +170750791475,229,0 +170750791523,218,0 +170750791571,216,0 +170750791619,216,0 +170750791667,217,0 +170750791715,218,0 +170750791763,219,0 +170750791813,220,0 +170750791861,221,0 +170750791909,222,0 +170750791957,223,0 +170750792006,225,0 +170750792056,226,0 +170750792104,226,0 +170750792153,227,0 +170750792203,226,0 +170750792251,229,0 +170750792299,226,0 +170750792348,227,0 +170750792396,228,0 +170750792444,217,0 +170750792493,216,0 +170750792543,217,0 +170750792592,218,0 +170750792642,219,0 +170750792690,219,0 +170750792739,220,0 +170750792787,221,0 +170750792835,222,0 +170750792883,223,0 +170750792931,224,0 +170750792979,225,0 +170750793026,226,0 +170750793074,226,0 +170750793122,227,0 +170750793170,229,0 +170750793219,227,0 +170750793269,229,0 +170750793318,227,0 +170750793368,218,0 +170750793416,216,0 +170750793463,216,0 +170750793511,218,0 +170750793561,220,0 +170750793609,220,0 +170750793658,221,0 +170750793708,222,0 +170750793756,222,0 +170750793804,223,0 +170750793853,224,0 +170750793901,226,0 +170750793951,226,0 +170750794000,226,0 +170750794050,228,0 +170750794099,227,0 +170750794147,228,0 +170750794195,228,0 +170750794245,227,0 +170750794293,217,0 +170750794341,216,0 +170750794389,216,0 +170750794437,218,0 +170750794485,218,0 +170750794533,220,0 +170750794581,221,0 +170750794628,223,0 +170750794676,222,0 +170750794724,225,0 +170750794772,226,0 +170750794820,226,0 +170750794868,226,0 +170750794916,227,0 +170750794963,228,0 +170750795011,228,0 +170750795059,228,0 +170750795107,228,0 +170750795155,228,0 +170750795205,228,0 +170750795252,216,0 +170750795300,216,0 +170750795348,218,0 +170750795396,218,0 +170750795446,220,0 +170750795493,221,0 +170750795541,222,0 +170750795589,223,0 +170750795637,224,0 +170750795685,225,0 +170750795733,225,0 +170750795781,227,0 +170750795829,229,0 +170750795877,227,0 +170750795925,228,0 +170750795972,229,0 +170750796020,228,0 +170750796068,228,0 +170750796116,227,0 +170750796164,217,0 +170750796212,217,0 +170750796260,219,0 +170750796309,219,0 +170750796357,221,0 +170750796405,221,0 +170750796453,223,0 +170750796501,223,0 +170750796551,223,0 +170750796600,222,0 +170750796649,225,0 +170750796697,225,0 +170750796745,227,0 +170750796793,227,0 +170750796841,227,0 +170750796889,227,0 +170750796937,227,0 +170750796987,227,0 +170750797035,226,0 +170750797084,218,0 +170750797132,218,0 +170750797180,220,0 +170750797228,220,0 +170750797277,221,0 +170750797327,223,0 +170750797375,222,0 +170750797423,223,0 +170750797471,224,0 +170750797520,225,0 +170750797570,227,0 +170750797619,226,0 +170750797667,226,0 +170750797715,227,0 +170750797763,229,0 +170750797811,228,0 +170750797859,227,0 +170750797909,227,0 +170750797956,227,0 +170750798006,218,0 +170750798056,218,0 +170750798105,220,0 +170750798155,220,0 +170750798203,221,0 +170750798251,222,0 +170750798300,225,0 +170750798348,223,0 +170750798396,224,0 +170750798445,225,0 +170750798493,226,0 +170750798541,228,0 +170750798591,227,0 +170750798640,229,0 +170750798690,228,0 +170750798739,228,0 +170750798789,227,0 +170750798838,228,0 +170750798888,227,0 +170750798936,217,0 +170750798985,216,0 +170750799035,216,0 +170750799083,218,0 +170750799130,219,0 +170750799178,221,0 +170750799226,221,0 +170750799276,221,0 +170750799323,223,0 +170750799371,224,0 +170750799419,223,0 +170750799467,225,0 +170750799515,225,0 +170750799563,226,0 +170750799611,227,0 +170750799658,227,0 +170750799706,228,0 +170750799754,226,0 +170750799802,228,0 +170750799850,217,0 +170750799898,216,0 +170750799947,216,0 +170750799997,217,0 +170750800046,218,0 +170750800096,219,0 +170750800144,220,0 +170750800191,221,0 +170750800239,220,0 +170750800287,222,0 +170750800337,223,0 +170750800385,224,0 +170750800433,227,0 +170750800481,225,0 +170750800530,226,0 +170750800578,227,0 +170750800628,227,0 +170750800677,227,0 +170750800725,227,0 +170750800773,217,0 +170750800821,215,0 +170750800869,216,0 +170750800917,216,0 +170750800965,216,0 +170750801013,216,0 +170750801062,217,0 +170750801110,218,0 +170750801160,220,0 +170750801209,220,0 +170750801257,221,0 +170750801307,222,0 +170750801355,222,0 +170750801403,224,0 +170750801452,225,0 +170750801500,224,0 +170750801548,225,0 +170750801596,225,0 +170750801644,227,0 +170750801692,219,0 +170750801740,215,0 +170750801788,215,0 +170750801836,216,0 +170750801883,216,0 +170750801933,217,0 +170750801981,218,0 +170750802029,218,0 +170750802077,220,0 +170750802125,221,0 +170750802172,221,0 +170750802220,223,0 +170750802268,223,0 +170750802316,224,0 +170750802364,226,0 +170750802412,226,0 +170750802460,227,0 +170750802508,228,0 +170750802556,227,0 +170750802603,226,0 +170750802651,216,0 +170750802699,215,0 +170750802747,216,0 +170750802795,217,0 +170750802843,217,0 +170750802892,217,0 +170750802942,217,0 +170750802990,218,0 +170750803038,219,0 +170750803086,221,0 +170750803134,222,0 +170750803183,222,0 +170750803231,223,0 +170750803281,223,0 +170750803328,225,0 +170750803377,225,0 +170750803424,225,0 +170750803472,227,0 +170750803520,227,0 +170750803568,215,0 +170750803618,215,0 +170750803666,215,0 +170750803715,216,0 +170750803765,216,0 +170750803814,217,0 +170750803862,216,0 +170750803910,217,0 +170750803960,219,0 +170750804009,220,0 +170750804059,223,0 +170750804108,224,0 +170750804156,224,0 +170750804204,224,0 +170750804254,227,0 +170750804303,226,0 +170750804351,226,0 +170750804401,227,0 +170750804450,226,0 +170750804500,215,0 +170750804549,215,0 +170750804599,215,0 +170750804648,216,0 +170750804696,216,0 +170750804744,216,0 +170750804794,217,0 +170750804843,218,0 +170750804891,220,0 +170750804939,220,0 +170750804987,221,0 +170750805036,223,0 +170750805086,224,0 +170750805136,225,0 +170750805185,224,0 +170750805233,226,0 +170750805281,226,0 +170750805331,226,0 +170750805380,226,0 +170750805429,216,0 +170750805477,216,0 +170750805525,216,0 +170750805575,217,0 +170750805623,217,0 +170750805671,217,0 +170750805719,217,0 +170750805767,218,0 +170750805816,219,0 +170750805864,220,0 +170750805912,221,0 +170750805960,223,0 +170750806008,223,0 +170750806058,225,0 +170750806107,226,0 +170750806157,227,0 +170750806205,228,0 +170750806254,227,0 +170750806302,226,0 +170750806350,216,0 +170750806400,216,0 +170750806449,216,0 +170750806497,216,0 +170750806547,217,0 +170750806596,217,0 +170750806644,217,0 +170750806692,219,0 +170750806740,220,0 +170750806790,221,0 +170750806839,222,0 +170750806887,223,0 +170750806935,223,0 +170750806983,224,0 +170750807031,225,0 +170750807079,225,0 +170750807127,226,0 +170750807177,228,0 +170750807226,224,0 +170750807274,215,0 +170750807324,216,0 +170750807372,216,0 +170750807421,218,0 +170750807469,218,0 +170750807517,220,0 +170750807567,219,0 +170750807615,220,0 +170750807662,222,0 +170750807710,222,0 +170750807758,224,0 +170750807808,224,0 +170750807856,225,0 +170750807905,224,0 +170750807955,228,0 +170750808003,229,0 +170750808052,226,0 +170750808100,228,0 +170750808148,227,0 +170750808196,217,0 +170750808244,217,0 +170750808292,220,0 +170750808340,221,0 +170750808390,222,0 +170750808438,222,0 +170750808485,225,0 +170750808535,225,0 +170750808583,225,0 +170750808631,223,0 +170750808679,227,0 +170750808727,227,0 +170750808776,228,0 +170750808826,227,0 +170750808874,228,0 +170750808922,227,0 +170750808970,227,0 +170750809018,227,0 +170750809065,227,0 +170750809113,219,0 +170750809163,219,0 +170750809211,219,0 +170750809259,220,0 +170750809307,222,0 +170750809355,227,0 +170750809403,223,0 +170750809452,225,0 +170750809502,225,0 +170750809550,224,0 +170750809599,228,0 +170750809647,227,0 +170750809695,228,0 +170750809743,228,0 +170750809793,228,0 +170750809841,228,0 +170750809890,227,0 +170750809940,226,0 +170750809988,226,0 +170750810036,218,0 +170750810084,220,0 +170750810133,220,0 +170750810181,221,0 +170750810231,222,0 +170750810279,223,0 +170750810328,223,0 +170750810378,225,0 +170750810426,226,0 +170750810475,228,0 +170750810523,228,0 +170750810571,227,0 +170750810621,228,0 +170750810670,227,0 +170750810720,228,0 +170750810768,228,0 +170750810817,230,0 +170750810867,227,0 +170750810915,226,0 +170750810964,218,0 +170750811012,219,0 +170750811060,220,0 +170750811108,222,0 +170750811156,222,0 +170750811206,222,0 +170750811254,223,0 +170750811302,225,0 +170750811352,227,0 +170750811400,225,0 +170750811449,226,0 +170750811497,226,0 +170750811545,228,0 +170750811595,227,0 +170750811643,228,0 +170750811692,228,0 +170750811740,227,0 +170750811790,228,0 +170750811839,226,0 +170750811887,215,0 +170750811935,216,0 +170750811985,217,0 +170750812033,219,0 +170750812081,220,0 +170750812129,222,0 +170750812177,221,0 +170750812226,225,0 +170750812274,224,0 +170750812322,226,0 +170750812372,225,0 +170750812421,226,0 +170750812470,226,0 +170750812518,227,0 +170750812568,227,0 +170750812616,226,0 +170750812665,228,0 +170750812713,227,0 +170750812762,227,0 +170750812810,216,0 +170750812858,215,0 +170750812906,216,0 +170750812954,216,0 +170750813002,218,0 +170750813051,220,0 +170750813101,220,0 +170750813150,220,0 +170750813198,222,0 +170750813248,221,0 +170750813296,223,0 +170750813345,224,0 +170750813395,225,0 +170750813444,226,0 +170750813492,229,0 +170750813542,227,0 +170750813591,228,0 +170750813639,229,0 +170750813689,222,0 +170750813737,215,0 +170750813785,216,0 +170750813833,216,0 +170750813881,216,0 +170750813929,217,0 +170750813977,216,0 +170750814025,217,0 +170750814072,218,0 +170750814120,219,0 +170750814168,221,0 +170750814216,222,0 +170750814264,223,0 +170750814314,223,0 +170750814363,225,0 +170750814413,225,0 +170750814462,228,0 +170750814510,227,0 +170750814558,226,0 +170750814608,227,0 +170750814656,215,0 +170750814704,215,0 +170750814751,215,0 +170750814799,216,0 +170750814849,216,0 +170750814899,215,0 +170750814947,217,0 +170750814994,218,0 +170750815042,219,0 +170750815090,221,0 +170750815138,223,0 +170750815186,224,0 +170750815234,226,0 +170750815284,228,0 +170750815332,226,0 +170750815380,226,0 +170750815429,227,0 +170750815477,227,0 +170750815525,227,0 +170750815573,216,0 +170750815621,215,0 +170750815670,216,0 +170750815718,216,0 +170750815766,216,0 +170750815816,217,0 +170750815864,217,0 +170750815912,217,0 +170750815961,219,0 +170750816009,222,0 +170750816057,222,0 +170750816107,223,0 +170750816156,224,0 +170750816204,225,0 +170750816254,228,0 +170750816303,227,0 +170750816351,227,0 +170750816401,227,0 +170750816449,227,0 +170750816496,216,0 +170750816544,216,0 +170750816592,216,0 +170750816640,216,0 +170750816688,217,0 +170750816736,217,0 +170750816784,218,0 +170750816834,219,0 +170750816883,221,0 +170750816931,221,0 +170750816979,222,0 +170750817029,226,0 +170750817077,226,0 +170750817125,226,0 +170750817173,226,0 +170750817221,225,0 +170750817268,227,0 +170750817318,227,0 +170750817366,227,0 +170750817414,217,0 +170750817463,216,0 +170750817511,217,0 +170750817559,218,0 +170750817609,219,0 +170750817658,221,0 +170750817708,223,0 +170750817757,222,0 +170750817805,223,0 +170750817855,225,0 +170750817903,226,0 +170750817951,227,0 +170750817999,228,0 +170750818048,226,0 +170750818096,228,0 +170750818144,227,0 +170750818192,228,0 +170750818240,227,0 +170750818290,227,0 +170750818339,216,0 +170750818387,217,0 +170750818437,218,0 +170750818485,219,0 +170750818533,220,0 +170750818582,221,0 +170750818630,221,0 +170750818680,222,0 +170750818729,223,0 +170750818777,224,0 +170750818827,228,0 +170750818875,227,0 +170750818924,227,0 +170750818972,228,0 +170750819022,228,0 +170750819070,228,0 +170750819119,228,0 +170750819167,228,0 +170750819217,225,0 +170750819265,216,0 +170750819314,216,0 +170750819362,216,0 +170750819410,217,0 +170750819458,218,0 +170750819508,220,0 +170750819556,221,0 +170750819605,221,0 +170750819653,224,0 +170750819701,223,0 +170750819749,225,0 +170750819799,224,0 +170750819847,226,0 +170750819896,226,0 +170750819946,226,0 +170750819993,228,0 +170750820043,229,0 +170750820091,227,0 +170750820139,226,0 +170750820187,216,0 +170750820235,216,0 +170750820284,216,0 +170750820334,216,0 +170750820382,216,0 +170750820430,217,0 +170750820479,217,0 +170750820527,218,0 +170750820577,220,0 +170750820625,221,0 +170750820673,222,0 +170750820721,223,0 +170750820769,224,0 +170750820818,226,0 +170750820868,224,0 +170750820916,226,0 +170750820964,226,0 +170750821012,227,0 +170750821060,226,0 +170750821109,216,0 +170750821157,215,0 +170750821205,215,0 +170750821255,216,0 +170750821304,217,0 +170750821352,217,0 +170750821402,217,0 +170750821451,218,0 +170750821499,220,0 +170750821547,221,0 +170750821595,222,0 +170750821645,223,0 +170750821694,224,0 +170750821744,225,0 +170750821791,225,0 +170750821839,227,0 +170750821889,226,0 +170750821938,226,0 +170750821986,226,0 +170750822036,216,0 +170750822084,215,0 +170750822132,215,0 +170750822181,216,0 +170750822231,216,0 +170750822281,215,0 +170750822328,218,0 +170750822376,220,0 +170750822426,220,0 +170750822474,222,0 +170750822523,221,0 +170750822573,222,0 +170750822621,223,0 +170750822669,225,0 +170750822717,226,0 +170750822765,227,0 +170750822813,226,0 +170750822861,228,0 +170750822908,226,0 +170750822958,216,0 +170750823006,215,0 +170750823054,216,0 +170750823103,217,0 +170750823153,219,0 +170750823201,224,0 +170750823249,220,0 +170750823298,221,0 +170750823346,223,0 +170750823396,224,0 +170750823444,224,0 +170750823493,225,0 +170750823543,225,0 +170750823591,226,0 +170750823639,226,0 +170750823688,227,0 +170750823736,229,0 +170750823786,227,0 +170750823834,227,0 +170750823882,216,0 +170750823930,216,0 +170750823978,217,0 +170750824026,219,0 +170750824074,218,0 +170750824122,220,0 +170750824170,221,0 +170750824217,221,0 +170750824265,222,0 +170750824315,223,0 +170750824365,225,0 +170750824413,225,0 +170750824461,226,0 +170750824510,228,0 +170750824560,226,0 +170750824607,226,0 +170750824655,226,0 +170750824703,227,0 +170750824751,227,0 +170750824801,217,0 +170750824848,215,0 +170750824896,216,0 +170750824944,217,0 +170750824994,218,0 +170750825043,219,0 +170750825091,220,0 +170750825139,221,0 +170750825187,222,0 +170750825236,223,0 +170750825284,225,0 +170750825332,225,0 +170750825380,225,0 +170750825428,226,0 +170750825476,229,0 +170750825526,227,0 +170750825574,227,0 +170750825621,227,0 +170750825669,226,0 +170750825717,217,0 +170750825765,215,0 +170750825813,215,0 +170750825861,216,0 +170750825909,216,0 +170750825957,218,0 +170750826005,218,0 +170750826052,219,0 +170750826100,220,0 +170750826148,221,0 +170750826196,221,0 +170750826244,222,0 +170750826292,222,0 +170750826340,223,0 +170750826388,225,0 +170750826437,226,0 +170750826487,225,0 +170750826535,225,0 +170750826583,225,0 +170750826632,217,0 +170750826680,216,0 +170750826730,215,0 +170750826779,215,0 +170750826829,215,0 +170750826877,216,0 +170750826926,217,0 +170750826974,217,0 +170750827022,218,0 +170750827070,219,0 +170750827118,219,0 +170750827167,219,0 +170750827217,221,0 +170750827265,221,0 +170750827312,221,0 +170750827360,222,0 +170750827408,222,0 +170750827456,222,0 +170750827504,223,0 +170750827552,218,0 +170750827602,215,0 +170750827650,215,0 +170750827697,216,0 +170750827747,216,0 +170750827795,217,0 +170750827843,217,0 +170750827891,218,0 +170750827939,218,0 +170750827988,219,0 +170750828036,220,0 +170750828086,220,0 +170750828134,220,0 +170750828182,221,0 +170750828230,221,0 +170750828278,222,0 +170750828327,223,0 +170750828375,223,0 +170750828423,224,0 +170750828473,224,0 +170750828522,216,0 +170750828570,217,0 +170750828618,217,0 +170750828666,218,0 +170750828714,219,0 +170750828762,220,0 +170750828811,220,0 +170750828859,221,0 +170750828907,222,0 +170750828957,222,0 +170750829006,224,0 +170750829054,224,0 +170750829102,224,0 +170750829150,225,0 +170750829198,225,0 +170750829246,225,0 +170750829296,226,0 +170750829345,223,0 +170750829393,223,0 +170750829441,216,0 +170750829491,217,0 +170750829540,218,0 +170750829588,219,0 +170750829638,220,0 +170750829687,220,0 +170750829735,222,0 +170750829785,222,0 +170750829833,222,0 +170750829882,223,0 +170750829932,224,0 +170750829980,224,0 +170750830027,225,0 +170750830077,225,0 +170750830125,225,0 +170750830173,226,0 +170750830221,226,0 +170750830269,225,0 +170750830317,224,0 +170750830365,215,0 +170750830413,216,0 +170750830462,216,0 +170750830512,217,0 +170750830560,218,0 +170750830608,219,0 +170750830655,219,0 +170750830703,220,0 +170750830751,222,0 +170750830801,222,0 +170750830849,223,0 +170750830897,224,0 +170750830947,224,0 +170750830994,225,0 +170750831042,226,0 +170750831090,225,0 +170750831138,226,0 +170750831186,225,0 +170750831236,225,0 +170750831284,216,0 +170750831332,215,0 +170750831380,215,0 +170750831428,216,0 +170750831476,217,0 +170750831524,218,0 +170750831572,218,0 +170750831621,219,0 +170750831669,219,0 +170750831717,220,0 +170750831767,221,0 +170750831816,221,0 +170750831864,224,0 +170750831914,223,0 +170750831962,225,0 +170750832011,224,0 +170750832059,224,0 +170750832107,226,0 +170750832155,226,0 +170750832203,216,0 +170750832251,216,0 +170750832299,216,0 +170750832347,216,0 +170750832395,216,0 +170750832443,216,0 +170750832491,216,0 +170750832539,217,0 +170750832587,217,0 +170750832635,219,0 +170750832684,220,0 +170750832732,222,0 +170750832781,223,0 +170750832831,224,0 +170750832881,224,0 +170750832930,224,0 +170750832978,227,0 +170750833026,226,0 +170750833076,226,0 +170750833124,216,0 +170750833173,215,0 +170750833223,216,0 +170750833272,216,0 +170750833322,217,0 +170750833370,217,0 +170750833418,218,0 +170750833466,219,0 +170750833513,218,0 +170750833561,221,0 +170750833609,222,0 +170750833659,222,0 +170750833708,224,0 +170750833756,225,0 +170750833804,225,0 +170750833852,227,0 +170750833902,227,0 +170750833950,227,0 +170750833998,228,0 +170750834046,217,0 +170750834094,216,0 +170750834142,216,0 +170750834191,216,0 +170750834239,216,0 +170750834289,221,0 +170750834337,218,0 +170750834384,219,0 +170750834432,219,0 +170750834482,221,0 +170750834530,224,0 +170750834579,223,0 +170750834627,224,0 +170750834675,225,0 +170750834723,226,0 +170750834771,226,0 +170750834819,229,0 +170750834869,227,0 +170750834918,226,0 +170750834968,217,0 +170750835016,216,0 +170750835065,216,0 +170750835115,216,0 +170750835163,216,0 +170750835212,217,0 +170750835262,219,0 +170750835311,219,0 +170750835361,219,0 +170750835410,220,0 +170750835458,221,0 +170750835506,223,0 +170750835554,224,0 +170750835604,226,0 +170750835652,225,0 +170750835700,225,0 +170750835749,226,0 +170750835797,227,0 +170750835845,227,0 +170750835895,217,0 +170750835942,216,0 +170750835990,216,0 +170750836038,216,0 +170750836088,216,0 +170750836137,218,0 +170750836185,219,0 +170750836233,219,0 +170750836281,220,0 +170750836329,221,0 +170750836377,221,0 +170750836425,223,0 +170750836475,223,0 +170750836523,225,0 +170750836572,224,0 +170750836620,225,0 +170750836668,226,0 +170750836716,225,0 +170750836766,226,0 +170750836814,217,0 +170750836862,217,0 +170750836911,217,0 +170750836959,218,0 +170750837009,219,0 +170750837056,219,0 +170750837106,219,0 +170750837156,221,0 +170750837205,221,0 +170750837255,223,0 +170750837304,223,0 +170750837352,224,0 +170750837400,224,0 +170750837448,226,0 +170750837496,226,0 +170750837544,228,0 +170750837592,228,0 +170750837641,227,0 +170750837689,227,0 +170750837739,218,0 +170750837787,217,0 +170750837836,218,0 +170750837886,219,0 +170750837934,219,0 +170750837983,221,0 +170750838031,222,0 +170750838079,223,0 +170750838129,223,0 +170750838177,224,0 +170750838226,225,0 +170750838276,226,0 +170750838324,226,0 +170750838372,227,0 +170750838420,226,0 +170750838467,228,0 +170750838515,227,0 +170750838563,227,0 +170750838611,226,0 +170750838661,219,0 +170750838710,218,0 +170750838758,219,0 +170750838806,220,0 +170750838854,222,0 +170750838904,222,0 +170750838951,224,0 +170750838999,224,0 +170750839049,224,0 +170750839099,225,0 +170750839148,226,0 +170750839196,227,0 +170750839246,225,0 +170750839294,227,0 +170750839341,228,0 +170750839391,227,0 +170750839440,227,0 +170750839488,227,0 +170750839536,226,0 +170750839584,218,0 +170750839632,218,0 +170750839682,219,0 +170750839731,220,0 +170750839779,221,0 +170750839829,222,0 +170750839878,224,0 +170750839928,223,0 +170750839976,226,0 +170750840024,225,0 +170750840072,226,0 +170750840121,226,0 +170750840169,228,0 +170750840218,227,0 +170750840268,228,0 +170750840316,228,0 +170750840364,228,0 +170750840413,227,0 +170750840461,226,0 +170750840509,217,0 +170750840557,215,0 +170750840607,215,0 +170750840656,215,0 +170750840704,217,0 +170750840752,218,0 +170750840802,219,0 +170750840850,219,0 +170750840899,223,0 +170750840949,221,0 +170750840997,222,0 +170750841045,225,0 +170750841093,225,0 +170750841141,226,0 +170750841189,227,0 +170750841237,226,0 +170750841286,226,0 +170750841334,226,0 +170750841382,229,0 +170750841430,217,0 +170750841478,215,0 +170750841527,216,0 +170750841577,216,0 +170750841627,216,0 +170750841676,217,0 +170750841724,218,0 +170750841773,217,0 +170750841823,218,0 +170750841871,219,0 +170750841919,220,0 +170750841967,222,0 +170750842014,222,0 +170750842064,224,0 +170750842112,224,0 +170750842160,224,0 +170750842208,224,0 +170750842256,226,0 +170750842305,227,0 +170750842353,217,0 +170750842401,216,0 +170750842451,216,0 +170750842499,217,0 +170750842547,218,0 +170750842596,219,0 +170750842644,220,0 +170750842692,221,0 +170750842742,221,0 +170750842791,222,0 +170750842839,223,0 +170750842887,225,0 +170750842937,225,0 +170750842986,226,0 +170750843034,227,0 +170750843084,227,0 +170750843133,227,0 +170750843181,227,0 +170750843229,227,0 +170750843277,217,0 +170750843325,215,0 +170750843373,216,0 +170750843421,216,0 +170750843469,216,0 +170750843517,217,0 +170750843565,217,0 +170750843614,219,0 +170750843662,220,0 +170750843710,221,0 +170750843758,222,0 +170750843806,223,0 +170750843854,225,0 +170750843903,225,0 +170750843951,227,0 +170750844001,225,0 +170750844049,226,0 +170750844098,226,0 +170750844148,227,0 +170750844196,219,0 +170750844244,215,0 +170750844292,215,0 +170750844340,216,0 +170750844388,216,0 +170750844436,216,0 +170750844484,216,0 +170750844532,218,0 +170750844580,220,0 +170750844629,220,0 +170750844677,222,0 +170750844725,221,0 +170750844773,224,0 +170750844821,224,0 +170750844869,225,0 +170750844917,225,0 +170750844967,226,0 +170750845016,226,0 +170750845066,226,0 +170750845115,225,0 +170750845163,216,0 +170750845211,216,0 +170750845259,216,0 +170750845308,216,0 +170750845356,217,0 +170750845404,217,0 +170750845452,220,0 +170750845502,220,0 +170750845550,220,0 +170750845599,221,0 +170750845647,222,0 +170750845695,224,0 +170750845743,224,0 +170750845793,226,0 +170750845842,225,0 +170750845890,225,0 +170750845938,224,0 +170750845986,227,0 +170750846035,226,0 +170750846083,216,0 +170750846131,215,0 +170750846179,215,0 +170750846227,216,0 +170750846275,217,0 +170750846323,218,0 +170750846370,219,0 +170750846420,220,0 +170750846469,221,0 +170750846519,222,0 +170750846567,224,0 +170750846615,226,0 +170750846663,226,0 +170750846711,227,0 +170750846759,227,0 +170750846807,227,0 +170750846856,226,0 +170750846904,227,0 +170750846952,226,0 +170750847000,216,0 +170750847048,216,0 +170750847096,216,0 +170750847144,216,0 +170750847193,216,0 +170750847243,217,0 +170750847291,219,0 +170750847340,219,0 +170750847388,221,0 +170750847436,222,0 +170750847484,223,0 +170750847534,224,0 +170750847583,225,0 +170750847631,225,0 +170750847680,226,0 +170750847728,225,0 +170750847778,225,0 +170750847826,227,0 +170750847874,227,0 +170750847922,218,0 +170750847970,216,0 +170750848018,216,0 +170750848067,216,0 +170750848115,214,0 +170750848163,216,0 +170750848213,218,0 +170750848261,219,0 +170750848309,220,0 +170750848358,222,0 +170750848406,223,0 +170750848454,223,0 +170750848502,224,0 +170750848550,225,0 +170750848599,225,0 +170750848647,224,0 +170750848697,226,0 +170750848746,229,0 +170750848794,227,0 +170750848844,216,0 +170750848892,216,0 +170750848939,216,0 +170750848989,217,0 +170750849038,218,0 +170750849086,219,0 +170750849134,219,0 +170750849182,221,0 +170750849232,221,0 +170750849281,223,0 +170750849331,222,0 +170750849380,225,0 +170750849429,226,0 +170750849477,226,0 +170750849525,226,0 +170750849573,226,0 +170750849622,228,0 +170750849670,229,0 +170750849720,227,0 +170750849768,216,0 +170750849816,216,0 +170750849864,216,0 +170750849912,218,0 +170750849960,219,0 +170750850009,220,0 +170750850057,220,0 +170750850105,221,0 +170750850155,221,0 +170750850203,223,0 +170750850252,224,0 +170750850302,225,0 +170750850351,226,0 +170750850401,226,0 +170750850450,228,0 +170750850498,234,0 +170750850548,227,0 +170750850597,227,0 +170750850647,228,0 +170750850696,217,0 +170750850746,218,0 +170750850794,218,0 +170750850842,219,0 +170750850890,220,0 +170750850937,221,0 +170750850985,221,0 +170750851033,223,0 +170750851081,225,0 +170750851129,225,0 +170750851178,226,0 +170750851226,226,0 +170750851274,226,0 +170750851322,227,0 +170750851370,228,0 +170750851419,227,0 +170750851467,228,0 +170750851515,228,0 +170750851563,227,0 +170750851611,218,0 +170750851660,216,0 +170750851708,216,0 +170750851756,217,0 +170750851804,219,0 +170750851852,219,0 +170750851900,220,0 +170750851949,221,0 +170750851997,222,0 +170750852045,224,0 +170750852095,225,0 +170750852142,226,0 +170750852192,227,0 +170750852240,226,0 +170750852288,228,0 +170750852337,228,0 +170750852386,227,0 +170750852436,228,0 +170750852484,226,0 +170750852532,218,0 +170750852580,216,0 +170750852628,216,0 +170750852676,216,0 +170750852724,218,0 +170750852772,219,0 +170750852819,220,0 +170750852867,222,0 +170750852917,222,0 +170750852965,221,0 +170750853015,225,0 +170750853064,225,0 +170750853114,227,0 +170750853161,228,0 +170750853209,226,0 +170750853259,228,0 +170750853307,227,0 +170750853355,228,0 +170750853402,227,0 +170750853450,217,0 +170750853498,215,0 +170750853546,216,0 +170750853594,217,0 +170750853642,218,0 +170750853690,218,0 +170750853740,220,0 +170750853787,220,0 +170750853837,221,0 +170750853885,222,0 +170750853933,224,0 +170750853981,224,0 +170750854029,226,0 +170750854077,228,0 +170750854124,227,0 +170750854172,227,0 +170750854220,227,0 +170750854268,227,0 +170750854316,227,0 +170750854364,222,0 +170750854412,215,0 +170750854460,216,0 +170750854507,217,0 +170750854555,217,0 +170750854603,219,0 +170750854651,219,0 +170750854701,220,0 +170750854748,220,0 +170750854796,222,0 +170750854844,223,0 +170750854892,224,0 +170750854940,224,0 +170750854988,225,0 +170750855036,226,0 +170750855084,227,0 +170750855132,227,0 +170750855179,227,0 +170750855227,228,0 +170750855275,226,0 +170750855323,216,0 +170750855371,216,0 +170750855419,217,0 +170750855467,218,0 +170750855514,219,0 +170750855562,220,0 +170750855612,221,0 +170750855661,220,0 +170750855709,222,0 +170750855759,224,0 +170750855808,224,0 +170750855856,225,0 +170750855904,226,0 +170750855953,226,0 +170750856001,226,0 +170750856049,228,0 +170750856099,227,0 +170750856147,228,0 +170750856196,227,0 +170750856246,216,0 +170750856295,216,0 +170750856345,216,0 +170750856393,218,0 +170750856441,218,0 +170750856490,220,0 +170750856538,222,0 +170750856586,221,0 +170750856634,222,0 +170750856684,223,0 +170750856732,224,0 +170750856780,225,0 +170750856829,226,0 +170750856877,227,0 +170750856925,227,0 +170750856973,228,0 +170750857022,228,0 +170750857070,227,0 +170750857118,225,0 +170750857166,216,0 +170750857214,216,0 +170750857262,216,0 +170750857310,217,0 +170750857357,218,0 +170750857407,218,0 +170750857455,219,0 +170750857505,220,0 +170750857552,223,0 +170750857602,222,0 +170750857652,224,0 +170750857699,225,0 +170750857747,226,0 +170750857795,227,0 +170750857843,226,0 +170750857893,226,0 +170750857941,227,0 +170750857989,243,0 +170750858038,228,0 +170750858086,216,0 +170750858134,216,0 +170750858182,217,0 +170750858230,218,0 +170750858278,219,0 +170750858325,218,0 +170750858373,219,0 +170750858421,220,0 +170750858469,220,0 +170750858519,222,0 +170750858568,223,0 +170750858616,221,0 +170750858666,226,0 +170750858714,226,0 +170750858762,226,0 +170750858811,225,0 +170750858861,229,0 +170750858910,227,0 +170750858958,226,0 +170750859007,216,0 +170750859055,216,0 +170750859105,217,0 +170750859153,218,0 +170750859202,218,0 +170750859250,219,0 +170750859300,220,0 +170750859348,221,0 +170750859396,221,0 +170750859444,223,0 +170750859492,224,0 +170750859541,225,0 +170750859591,226,0 +170750859640,227,0 +170750859688,228,0 +170750859738,227,0 +170750859786,227,0 +170750859834,226,0 +170750859883,227,0 +170750859931,217,0 +170750859981,216,0 +170750860030,216,0 +170750860080,216,0 +170750860128,217,0 +170750860177,219,0 +170750860225,220,0 +170750860273,220,0 +170750860321,221,0 +170750860371,223,0 +170750860419,224,0 +170750860468,224,0 +170750860518,225,0 +170750860566,226,0 +170750860614,226,0 +170750860662,226,0 +170750860710,225,0 +170750860758,227,0 +170750860806,226,0 +170750860853,217,0 +170750860901,216,0 +170750860949,216,0 +170750860999,216,0 +170750861048,216,0 +170750861096,217,0 +170750861146,218,0 +170750861195,218,0 +170750861245,220,0 +170750861294,221,0 +170750861344,222,0 +170750861393,223,0 +170750861441,224,0 +170750861490,224,0 +170750861538,225,0 +170750861587,225,0 +170750861635,225,0 +170750861685,226,0 +170750861734,226,0 +170750861782,217,0 +170750861832,216,0 +170750861882,216,0 +170750861929,216,0 +170750861979,217,0 +170750862027,217,0 +170750862076,218,0 +170750862126,218,0 +170750862176,219,0 +170750862223,220,0 +170750862271,221,0 +170750862321,224,0 +170750862370,225,0 +170750862418,224,0 +170750862466,224,0 +170750862514,224,0 +170750862562,226,0 +170750862612,226,0 +170750862660,226,0 +170750862708,216,0 +170750862756,217,0 +170750862805,217,0 +170750862853,216,0 +170750862901,217,0 +170750862951,217,0 +170750863000,218,0 +170750863048,219,0 +170750863096,220,0 +170750863144,221,0 +170750863192,222,0 +170750863240,224,0 +170750863288,225,0 +170750863338,224,0 +170750863386,224,0 +170750863435,226,0 +170750863483,227,0 +170750863531,226,0 +170750863579,225,0 +170750863627,216,0 +170750863675,216,0 +170750863723,216,0 +170750863772,216,0 +170750863822,217,0 +170750863870,218,0 +170750863918,218,0 +170750863966,219,0 +170750864015,221,0 +170750864063,222,0 +170750864111,222,0 +170750864161,224,0 +170750864209,224,0 +170750864257,224,0 +170750864306,225,0 +170750864356,225,0 +170750864405,227,0 +170750864455,227,0 +170750864503,225,0 +170750864551,216,0 +170750864599,216,0 +170750864648,216,0 +170750864696,217,0 +170750864746,218,0 +170750864794,219,0 +170750864843,220,0 +170750864893,220,0 +170750864941,223,0 +170750864990,223,0 +170750865038,223,0 +170750865086,225,0 +170750865136,225,0 +170750865183,225,0 +170750865233,226,0 +170750865281,226,0 +170750865329,226,0 +170750865377,228,0 +170750865425,225,0 +170750865474,216,0 +170750865522,216,0 +170750865570,216,0 +170750865620,218,0 +170750865668,219,0 +170750865717,220,0 +170750865765,221,0 +170750865813,221,0 +170750865861,221,0 +170750865909,223,0 +170750865957,224,0 +170750866004,224,0 +170750866052,226,0 +170750866102,227,0 +170750866150,227,0 +170750866198,227,0 +170750866247,227,0 +170750866295,227,0 +170750866345,227,0 +170750866394,216,0 +170750866442,216,0 +170750866492,216,0 +170750866540,218,0 +170750866587,218,0 +170750866635,220,0 +170750866683,220,0 +170750866731,221,0 +170750866779,222,0 +170750866829,223,0 +170750866877,224,0 +170750866925,226,0 +170750866974,226,0 +170750867024,226,0 +170750867073,226,0 +170750867123,226,0 +170750867171,226,0 +170750867220,226,0 +170750867270,226,0 +170750867318,216,0 +170750867367,216,0 +170750867415,216,0 +170750867465,217,0 +170750867513,219,0 +170750867561,219,0 +170750867609,220,0 +170750867658,220,0 +170750867708,221,0 +170750867756,222,0 +170750867804,223,0 +170750867851,223,0 +170750867901,223,0 +170750867949,224,0 +170750867996,226,0 +170750868044,226,0 +170750868092,226,0 +170750868140,226,0 +170750868188,227,0 +170750868236,217,0 +170750868285,217,0 +170750868333,218,0 +170750868381,219,0 +170750868429,219,0 +170750868477,221,0 +170750868524,223,0 +170750868572,221,0 +170750868620,223,0 +170750868668,224,0 +170750868716,227,0 +170750868764,227,0 +170750868812,227,0 +170750868860,228,0 +170750868907,227,0 +170750868955,228,0 +170750869003,228,0 +170750869051,227,0 +170750869099,227,0 +170750869147,218,0 +170750869196,217,0 +170750869244,218,0 +170750869292,220,0 +170750869340,220,0 +170750869387,221,0 +170750869435,223,0 +170750869485,223,0 +170750869533,223,0 +170750869581,225,0 +170750869629,227,0 +170750869678,226,0 +170750869728,228,0 +170750869776,228,0 +170750869823,228,0 +170750869871,228,0 +170750869919,228,0 +170750869967,230,0 +170750870015,227,0 +170750870063,218,0 +170750870111,217,0 +170750870161,219,0 +170750870209,220,0 +170750870257,221,0 +170750870305,222,0 +170750870354,223,0 +170750870402,224,0 +170750870451,225,0 +170750870499,224,0 +170750870547,225,0 +170750870595,225,0 +170750870645,226,0 +170750870693,227,0 +170750870741,227,0 +170750870789,230,0 +170750870837,228,0 +170750870885,227,0 +170750870933,225,0 +170750870981,217,0 +170750871029,216,0 +170750871078,217,0 +170750871128,218,0 +170750871176,219,0 +170750871223,220,0 +170750871273,220,0 +170750871323,221,0 +170750871372,222,0 +170750871420,222,0 +170750871468,224,0 +170750871516,225,0 +170750871564,223,0 +170750871613,226,0 +170750871661,226,0 +170750871709,227,0 +170750871759,228,0 +170750871807,227,0 +170750871855,226,0 +170750871904,219,0 +170750871952,216,0 +170750872000,217,0 +170750872050,218,0 +170750872098,219,0 +170750872146,220,0 +170750872193,221,0 +170750872241,222,0 +170750872291,223,0 +170750872339,225,0 +170750872388,225,0 +170750872438,227,0 +170750872486,226,0 +170750872534,227,0 +170750872583,227,0 +170750872633,227,0 +170750872682,228,0 +170750872730,227,0 +170750872778,227,0 +170750872826,220,0 +170750872874,215,0 +170750872924,216,0 +170750872972,216,0 +170750873020,217,0 +170750873069,218,0 +170750873117,219,0 +170750873165,220,0 +170750873214,221,0 +170750873262,222,0 +170750873310,224,0 +170750873358,224,0 +170750873406,226,0 +170750873454,224,0 +170750873502,226,0 +170750873551,225,0 +170750873599,225,0 +170750873647,226,0 +170750873695,227,0 +170750873743,224,0 +170750873791,216,0 +170750873838,216,0 +170750873886,216,0 +170750873934,218,0 +170750873982,219,0 +170750874030,219,0 +170750874078,220,0 +170750874126,220,0 +170750874174,222,0 +170750874221,222,0 +170750874269,222,0 +170750874317,223,0 +170750874365,224,0 +170750874413,226,0 +170750874461,225,0 +170750874509,227,0 +170750874557,227,0 +170750874604,226,0 +170750874652,227,0 +170750874700,216,0 +170750874750,216,0 +170750874797,216,0 +170750874845,217,0 +170750874895,219,0 +170750874944,219,0 +170750874994,219,0 +170750875042,220,0 +170750875089,223,0 +170750875137,222,0 +170750875187,222,0 +170750875236,224,0 +170750875286,226,0 +170750875334,225,0 +170750875381,225,0 +170750875431,226,0 +170750875479,227,0 +170750875527,227,0 +170750875576,227,0 +170750875624,216,0 +170750875672,215,0 +170750875720,216,0 +170750875768,216,0 +170750875815,216,0 +170750875865,217,0 +170750875914,218,0 +170750875962,219,0 +170750876010,221,0 +170750876058,221,0 +170750876106,223,0 +170750876154,224,0 +170750876202,225,0 +170750876250,228,0 +170750876297,227,0 +170750876345,226,0 +170750876395,226,0 +170750876444,227,0 +170750876494,227,0 +170750876542,216,0 +170750876590,216,0 +170750876639,216,0 +170750876687,216,0 +170750876735,217,0 +170750876785,216,0 +170750876833,217,0 +170750876881,218,0 +170750876928,218,0 +170750876976,220,0 +170750877026,222,0 +170750877074,222,0 +170750877122,224,0 +170750877169,225,0 +170750877217,225,0 +170750877265,226,0 +170750877315,226,0 +170750877363,226,0 +170750877410,227,0 +170750877458,216,0 +170750877506,216,0 +170750877554,216,0 +170750877604,216,0 +170750877652,216,0 +170750877701,217,0 +170750877751,217,0 +170750877799,217,0 +170750877848,218,0 +170750877896,218,0 +170750877944,219,0 +170750877992,220,0 +170750878040,221,0 +170750878088,223,0 +170750878136,223,0 +170750878183,224,0 +170750878231,225,0 +170750878279,225,0 +170750878329,227,0 +170750878377,217,0 +170750878424,215,0 +170750878472,215,0 +170750878520,216,0 +170750878570,216,0 +170750878618,216,0 +170750878666,216,0 +170750878713,216,0 +170750878761,217,0 +170750878809,217,0 +170750878857,218,0 +170750878905,219,0 +170750878953,221,0 +170750879001,222,0 +170750879049,224,0 +170750879096,225,0 +170750879144,224,0 +170750879192,227,0 +170750879240,226,0 +170750879288,225,0 +170750879336,216,0 +170750879384,216,0 +170750879432,222,0 +170750879480,217,0 +170750879527,217,0 +170750879575,217,0 +170750879623,218,0 +170750879671,218,0 +170750879719,218,0 +170750879767,220,0 +170750879815,222,0 +170750879863,222,0 +170750879912,222,0 +170750879960,223,0 +170750880008,222,0 diff --git a/laser_value/0210-06.csv b/laser_value/0210-06.csv new file mode 100644 index 0000000..4f87bcd --- /dev/null +++ b/laser_value/0210-06.csv @@ -0,0 +1,7428 @@ +timestamp,laser_value,event +170750880057,223,0 +170750880105,223,0 +170750880152,226,0 +170750880200,226,0 +170750880248,216,0 +170750880296,216,0 +170750880344,216,0 +170750880392,217,0 +170750880440,217,0 +170750880488,217,0 +170750880536,218,0 +170750880584,218,0 +170750880633,219,0 +170750880681,221,0 +170750880729,222,0 +170750880777,222,0 +170750880827,223,0 +170750880875,224,0 +170750880924,225,0 +170750880972,226,0 +170750881020,225,0 +170750881068,227,0 +170750881116,227,0 +170750881165,217,0 +170750881215,217,0 +170750881263,217,0 +170750881312,218,0 +170750881362,220,0 +170750881410,222,0 +170750881458,221,0 +170750881506,223,0 +170750881554,223,0 +170750881603,224,0 +170750881651,224,0 +170750881701,225,0 +170750881749,226,0 +170750881796,228,0 +170750881844,228,0 +170750881894,227,0 +170750881942,226,0 +170750881990,228,0 +170750882038,226,0 +170750882087,220,0 +170750882137,219,0 +170750882185,220,0 +170750882233,221,0 +170750882281,221,0 +170750882330,223,0 +170750882380,224,0 +170750882428,226,0 +170750882476,225,0 +170750882524,225,0 +170750882572,227,0 +170750882619,227,0 +170750882669,228,0 +170750882717,228,0 +170750882766,227,0 +170750882816,230,0 +170750882864,227,0 +170750882912,228,0 +170750882960,225,0 +170750883008,219,0 +170750883056,219,0 +170750883104,220,0 +170750883152,222,0 +170750883200,222,0 +170750883248,223,0 +170750883297,223,0 +170750883347,224,0 +170750883395,225,0 +170750883443,226,0 +170750883491,224,0 +170750883540,227,0 +170750883590,226,0 +170750883638,227,0 +170750883687,227,0 +170750883735,226,0 +170750883783,226,0 +170750883832,226,0 +170750883880,225,0 +170750883928,216,0 +170750883976,217,0 +170750884024,217,0 +170750884072,219,0 +170750884122,220,0 +170750884171,220,0 +170750884219,221,0 +170750884267,222,0 +170750884315,223,0 +170750884363,224,0 +170750884413,224,0 +170750884460,226,0 +170750884508,226,0 +170750884556,226,0 +170750884606,228,0 +170750884654,228,0 +170750884703,229,0 +170750884751,228,0 +170750884801,227,0 +170750884850,216,0 +170750884898,217,0 +170750884946,217,0 +170750884994,218,0 +170750885044,220,0 +170750885092,220,0 +170750885140,220,0 +170750885189,221,0 +170750885239,222,0 +170750885288,223,0 +170750885336,224,0 +170750885386,224,0 +170750885434,225,0 +170750885482,225,0 +170750885530,227,0 +170750885577,226,0 +170750885625,227,0 +170750885675,226,0 +170750885723,230,0 +170750885771,217,0 +170750885820,216,0 +170750885868,217,0 +170750885916,219,0 +170750885964,221,0 +170750886014,220,0 +170750886062,221,0 +170750886110,223,0 +170750886158,222,0 +170750886206,224,0 +170750886254,225,0 +170750886302,225,0 +170750886349,226,0 +170750886397,227,0 +170750886445,225,0 +170750886493,227,0 +170750886543,226,0 +170750886591,228,0 +170750886639,226,0 +170750886687,217,0 +170750886736,215,0 +170750886786,216,0 +170750886835,216,0 +170750886883,217,0 +170750886931,218,0 +170750886979,219,0 +170750887027,220,0 +170750887075,221,0 +170750887125,222,0 +170750887174,223,0 +170750887224,223,0 +170750887272,224,0 +170750887319,225,0 +170750887369,225,0 +170750887417,226,0 +170750887465,225,0 +170750887514,227,0 +170750887564,226,0 +170750887612,217,0 +170750887660,215,0 +170750887708,216,0 +170750887756,216,0 +170750887804,216,0 +170750887852,217,0 +170750887901,218,0 +170750887949,220,0 +170750887997,220,0 +170750888045,220,0 +170750888093,221,0 +170750888141,222,0 +170750888188,223,0 +170750888236,224,0 +170750888284,226,0 +170750888334,226,0 +170750888381,225,0 +170750888431,225,0 +170750888479,226,0 +170750888528,218,0 +170750888578,215,0 +170750888626,215,0 +170750888673,216,0 +170750888721,216,0 +170750888771,216,0 +170750888818,217,0 +170750888866,218,0 +170750888914,219,0 +170750888962,220,0 +170750889010,221,0 +170750889058,222,0 +170750889106,223,0 +170750889155,223,0 +170750889203,224,0 +170750889251,225,0 +170750889299,225,0 +170750889347,225,0 +170750889396,225,0 +170750889445,218,0 +170750889493,216,0 +170750889541,216,0 +170750889591,216,0 +170750889639,217,0 +170750889687,218,0 +170750889735,219,0 +170750889782,219,0 +170750889830,222,0 +170750889878,221,0 +170750889926,223,0 +170750889974,223,0 +170750890023,225,0 +170750890071,225,0 +170750890119,226,0 +170750890167,225,0 +170750890215,226,0 +170750890264,225,0 +170750890312,226,0 +170750890360,218,0 +170750890408,216,0 +170750890457,217,0 +170750890505,218,0 +170750890553,219,0 +170750890601,219,0 +170750890651,219,0 +170750890699,220,0 +170750890747,220,0 +170750890795,222,0 +170750890842,222,0 +170750890890,224,0 +170750890938,224,0 +170750890986,225,0 +170750891034,225,0 +170750891082,226,0 +170750891130,226,0 +170750891179,226,0 +170750891229,226,0 +170750891278,221,0 +170750891326,217,0 +170750891374,218,0 +170750891422,219,0 +170750891470,219,0 +170750891517,220,0 +170750891565,221,0 +170750891613,221,0 +170750891661,222,0 +170750891709,223,0 +170750891757,225,0 +170750891805,225,0 +170750891853,226,0 +170750891900,226,0 +170750891948,226,0 +170750891996,227,0 +170750892046,226,0 +170750892093,226,0 +170750892141,227,0 +170750892189,225,0 +170750892237,217,0 +170750892285,218,0 +170750892333,219,0 +170750892380,220,0 +170750892428,221,0 +170750892478,222,0 +170750892526,223,0 +170750892573,224,0 +170750892621,224,0 +170750892669,225,0 +170750892717,226,0 +170750892765,226,0 +170750892813,226,0 +170750892861,226,0 +170750892908,226,0 +170750892956,227,0 +170750893004,226,0 +170750893052,226,0 +170750893100,226,0 +170750893149,216,0 +170750893197,216,0 +170750893245,218,0 +170750893294,218,0 +170750893342,219,0 +170750893390,220,0 +170750893438,221,0 +170750893487,222,0 +170750893535,222,0 +170750893583,224,0 +170750893633,223,0 +170750893681,225,0 +170750893728,226,0 +170750893778,226,0 +170750893826,227,0 +170750893874,227,0 +170750893922,226,0 +170750893969,227,0 +170750894017,226,0 +170750894065,217,0 +170750894115,215,0 +170750894163,215,0 +170750894210,216,0 +170750894258,216,0 +170750894306,216,0 +170750894354,218,0 +170750894404,219,0 +170750894452,219,0 +170750894499,220,0 +170750894547,221,0 +170750894595,222,0 +170750894643,223,0 +170750894691,223,0 +170750894739,224,0 +170750894787,226,0 +170750894836,225,0 +170750894886,226,0 +170750894934,226,0 +170750894981,217,0 +170750895031,215,0 +170750895080,216,0 +170750895128,216,0 +170750895176,216,0 +170750895224,216,0 +170750895272,217,0 +170750895320,218,0 +170750895368,219,0 +170750895416,221,0 +170750895464,221,0 +170750895511,222,0 +170750895559,223,0 +170750895609,224,0 +170750895657,225,0 +170750895704,224,0 +170750895752,225,0 +170750895800,225,0 +170750895850,226,0 +170750895898,217,0 +170750895947,215,0 +170750895995,215,0 +170750896043,216,0 +170750896091,216,0 +170750896139,216,0 +170750896188,217,0 +170750896237,217,0 +170750896285,218,0 +170750896333,220,0 +170750896381,220,0 +170750896431,221,0 +170750896478,222,0 +170750896526,223,0 +170750896576,223,0 +170750896625,223,0 +170750896675,225,0 +170750896722,224,0 +170750896770,225,0 +170750896818,217,0 +170750896866,215,0 +170750896914,215,0 +170750896962,216,0 +170750897011,217,0 +170750897061,218,0 +170750897109,218,0 +170750897157,219,0 +170750897205,219,0 +170750897252,220,0 +170750897300,221,0 +170750897348,222,0 +170750897398,223,0 +170750897446,225,0 +170750897494,226,0 +170750897541,225,0 +170750897589,226,0 +170750897637,226,0 +170750897685,226,0 +170750897733,217,0 +170750897783,216,0 +170750897831,216,0 +170750897880,217,0 +170750897928,218,0 +170750897976,219,0 +170750898026,220,0 +170750898074,220,0 +170750898123,221,0 +170750898173,222,0 +170750898221,223,0 +170750898269,224,0 +170750898317,225,0 +170750898365,225,0 +170750898412,226,0 +170750898460,227,0 +170750898508,226,0 +170750898556,226,0 +170750898606,226,0 +170750898655,225,0 +170750898703,216,0 +170750898751,216,0 +170750898801,217,0 +170750898850,217,0 +170750898900,217,0 +170750898949,219,0 +170750898999,219,0 +170750899047,220,0 +170750899095,221,0 +170750899143,222,0 +170750899191,223,0 +170750899240,224,0 +170750899288,224,0 +170750899336,226,0 +170750899384,225,0 +170750899433,227,0 +170750899483,226,0 +170750899532,225,0 +170750899582,217,0 +170750899631,215,0 +170750899679,216,0 +170750899729,216,0 +170750899778,215,0 +170750899826,217,0 +170750899876,217,0 +170750899924,218,0 +170750899973,218,0 +170750900021,219,0 +170750900069,220,0 +170750900119,221,0 +170750900167,222,0 +170750900215,223,0 +170750900264,224,0 +170750900312,224,0 +170750900362,224,0 +170750900411,225,0 +170750900461,224,0 +170750900510,217,0 +170750900560,215,0 +170750900609,216,0 +170750900659,216,0 +170750900707,216,0 +170750900755,217,0 +170750900803,216,0 +170750900851,217,0 +170750900900,218,0 +170750900948,219,0 +170750900996,220,0 +170750901046,221,0 +170750901095,221,0 +170750901143,223,0 +170750901191,223,0 +170750901239,224,0 +170750901289,225,0 +170750901337,225,0 +170750901386,225,0 +170750901436,217,0 +170750901484,216,0 +170750901532,216,0 +170750901581,216,0 +170750901631,217,0 +170750901680,217,0 +170750901728,218,0 +170750901776,220,0 +170750901824,220,0 +170750901873,221,0 +170750901923,223,0 +170750901971,223,0 +170750902019,224,0 +170750902068,224,0 +170750902116,225,0 +170750902164,225,0 +170750902212,225,0 +170750902260,225,0 +170750902308,225,0 +170750902357,217,0 +170750902405,216,0 +170750902455,217,0 +170750902503,218,0 +170750902551,219,0 +170750902600,220,0 +170750902650,221,0 +170750902698,222,0 +170750902746,223,0 +170750902793,223,0 +170750902841,224,0 +170750902889,226,0 +170750902939,225,0 +170750902988,225,0 +170750903036,226,0 +170750903086,225,0 +170750903135,225,0 +170750903185,225,0 +170750903234,225,0 +170750903282,217,0 +170750903332,217,0 +170750903381,218,0 +170750903429,219,0 +170750903479,219,0 +170750903528,220,0 +170750903578,221,0 +170750903626,224,0 +170750903674,224,0 +170750903723,223,0 +170750903771,224,0 +170750903819,225,0 +170750903869,225,0 +170750903918,225,0 +170750903966,225,0 +170750904014,225,0 +170750904062,225,0 +170750904110,226,0 +170750904158,225,0 +170750904206,217,0 +170750904255,216,0 +170750904303,216,0 +170750904351,217,0 +170750904401,217,0 +170750904449,217,0 +170750904498,219,0 +170750904548,219,0 +170750904597,220,0 +170750904647,221,0 +170750904695,221,0 +170750904743,222,0 +170750904791,223,0 +170750904839,224,0 +170750904887,224,0 +170750904935,223,0 +170750904982,225,0 +170750905030,227,0 +170750905078,226,0 +170750905126,217,0 +170750905174,216,0 +170750905222,216,0 +170750905270,216,0 +170750905318,216,0 +170750905367,216,0 +170750905415,218,0 +170750905463,219,0 +170750905511,219,0 +170750905559,220,0 +170750905606,221,0 +170750905656,221,0 +170750905704,222,0 +170750905752,222,0 +170750905800,224,0 +170750905848,225,0 +170750905897,224,0 +170750905947,225,0 +170750905995,225,0 +170750906042,217,0 +170750906092,215,0 +170750906140,215,0 +170750906189,216,0 +170750906237,216,0 +170750906285,216,0 +170750906333,216,0 +170750906383,217,0 +170750906431,218,0 +170750906479,219,0 +170750906527,219,0 +170750906576,221,0 +170750906626,221,0 +170750906675,222,0 +170750906723,223,0 +170750906771,224,0 +170750906821,223,0 +170750906870,223,0 +170750906920,225,0 +170750906968,217,0 +170750907017,215,0 +170750907065,216,0 +170750907113,216,0 +170750907161,216,0 +170750907209,217,0 +170750907259,217,0 +170750907308,218,0 +170750907356,218,0 +170750907406,218,0 +170750907455,220,0 +170750907505,221,0 +170750907553,222,0 +170750907601,224,0 +170750907649,222,0 +170750907697,223,0 +170750907745,224,0 +170750907793,224,0 +170750907841,225,0 +170750907888,218,0 +170750907936,215,0 +170750907986,216,0 +170750908034,216,0 +170750908084,216,0 +170750908131,217,0 +170750908179,218,0 +170750908227,218,0 +170750908275,219,0 +170750908323,220,0 +170750908373,220,0 +170750908421,222,0 +170750908470,222,0 +170750908518,223,0 +170750908566,223,0 +170750908616,223,0 +170750908664,224,0 +170750908712,224,0 +170750908761,224,0 +170750908811,217,0 +170750908859,215,0 +170750908907,215,0 +170750908956,216,0 +170750909004,216,0 +170750909054,216,0 +170750909101,217,0 +170750909149,217,0 +170750909197,218,0 +170750909247,219,0 +170750909295,221,0 +170750909344,222,0 +170750909392,222,0 +170750909440,223,0 +170750909490,224,0 +170750909539,223,0 +170750909587,223,0 +170750909635,223,0 +170750909683,224,0 +170750909731,217,0 +170750909781,215,0 +170750909830,215,0 +170750909880,216,0 +170750909928,216,0 +170750909977,216,0 +170750910025,216,0 +170750910073,216,0 +170750910121,217,0 +170750910169,218,0 +170750910217,219,0 +170750910267,220,0 +170750910315,220,0 +170750910364,222,0 +170750910412,222,0 +170750910460,223,0 +170750910508,223,0 +170750910556,223,0 +170750910604,225,0 +170750910653,217,0 +170750910701,215,0 +170750910749,216,0 +170750910797,215,0 +170750910845,216,0 +170750910893,217,0 +170750910943,217,0 +170750910992,219,0 +170750911042,219,0 +170750911091,220,0 +170750911139,221,0 +170750911187,221,0 +170750911235,221,0 +170750911283,222,0 +170750911333,224,0 +170750911381,224,0 +170750911430,225,0 +170750911478,224,0 +170750911526,225,0 +170750911574,218,0 +170750911622,216,0 +170750911672,217,0 +170750911721,218,0 +170750911769,219,0 +170750911817,219,0 +170750911866,219,0 +170750911916,219,0 +170750911964,220,0 +170750912013,221,0 +170750912063,221,0 +170750912113,222,0 +170750912162,223,0 +170750912210,224,0 +170750912260,225,0 +170750912308,225,0 +170750912356,227,0 +170750912403,225,0 +170750912451,224,0 +170750912501,219,0 +170750912551,219,0 +170750912600,220,0 +170750912648,221,0 +170750912696,221,0 +170750912744,222,0 +170750912792,223,0 +170750912841,224,0 +170750912891,225,0 +170750912939,225,0 +170750912987,226,0 +170750913035,227,0 +170750913083,227,0 +170750913131,226,0 +170750913180,226,0 +170750913228,228,0 +170750913276,226,0 +170750913326,226,0 +170750913374,225,0 +170750913422,219,0 +170750913471,220,0 +170750913519,220,0 +170750913567,221,0 +170750913617,222,0 +170750913665,222,0 +170750913714,224,0 +170750913764,223,0 +170750913812,224,0 +170750913861,225,0 +170750913909,226,0 +170750913957,226,0 +170750914005,226,0 +170750914053,226,0 +170750914103,226,0 +170750914151,226,0 +170750914198,226,0 +170750914246,225,0 +170750914294,225,0 +170750914342,218,0 +170750914392,219,0 +170750914440,219,0 +170750914488,220,0 +170750914536,221,0 +170750914585,222,0 +170750914635,222,0 +170750914684,223,0 +170750914732,223,0 +170750914780,226,0 +170750914828,225,0 +170750914878,226,0 +170750914927,226,0 +170750914975,226,0 +170750915023,227,0 +170750915073,227,0 +170750915120,226,0 +170750915170,225,0 +170750915218,225,0 +170750915266,217,0 +170750915315,217,0 +170750915365,217,0 +170750915414,219,0 +170750915464,219,0 +170750915512,220,0 +170750915560,220,0 +170750915608,220,0 +170750915657,221,0 +170750915705,222,0 +170750915755,223,0 +170750915804,224,0 +170750915852,224,0 +170750915902,224,0 +170750915950,224,0 +170750915999,226,0 +170750916047,226,0 +170750916097,225,0 +170750916145,224,0 +170750916193,216,0 +170750916241,216,0 +170750916291,216,0 +170750916339,217,0 +170750916387,217,0 +170750916435,219,0 +170750916483,219,0 +170750916531,220,0 +170750916580,221,0 +170750916630,222,0 +170750916678,223,0 +170750916727,226,0 +170750916777,224,0 +170750916826,225,0 +170750916876,227,0 +170750916924,226,0 +170750916973,225,0 +170750917021,225,0 +170750917071,224,0 +170750917119,216,0 +170750917168,216,0 +170750917216,216,0 +170750917264,217,0 +170750917314,217,0 +170750917363,218,0 +170750917411,219,0 +170750917459,219,0 +170750917508,221,0 +170750917556,222,0 +170750917604,222,0 +170750917652,224,0 +170750917700,224,0 +170750917749,225,0 +170750917798,225,0 +170750917846,226,0 +170750917896,226,0 +170750917944,226,0 +170750917992,225,0 +170750918040,216,0 +170750918087,216,0 +170750918137,216,0 +170750918187,216,0 +170750918234,216,0 +170750918284,217,0 +170750918333,218,0 +170750918381,219,0 +170750918431,219,0 +170750918480,221,0 +170750918528,221,0 +170750918578,223,0 +170750918626,222,0 +170750918674,224,0 +170750918723,224,0 +170750918771,225,0 +170750918821,225,0 +170750918869,226,0 +170750918917,225,0 +170750918966,216,0 +170750919016,216,0 +170750919064,215,0 +170750919112,215,0 +170750919161,217,0 +170750919209,217,0 +170750919257,217,0 +170750919307,218,0 +170750919356,220,0 +170750919404,220,0 +170750919454,221,0 +170750919502,221,0 +170750919550,222,0 +170750919599,223,0 +170750919649,224,0 +170750919697,225,0 +170750919746,225,0 +170750919794,225,0 +170750919842,220,0 +170750919890,215,0 +170750919937,215,0 +170750919985,216,0 +170750920033,216,0 +170750920083,216,0 +170750920131,217,0 +170750920179,217,0 +170750920226,218,0 +170750920274,219,0 +170750920322,220,0 +170750920370,220,0 +170750920420,221,0 +170750920468,223,0 +170750920517,223,0 +170750920565,223,0 +170750920613,223,0 +170750920661,224,0 +170750920709,227,0 +170750920757,225,0 +170750920807,215,0 +170750920856,216,0 +170750920904,216,0 +170750920952,216,0 +170750921000,217,0 +170750921050,217,0 +170750921098,218,0 +170750921145,219,0 +170750921193,219,0 +170750921243,221,0 +170750921291,222,0 +170750921338,222,0 +170750921386,224,0 +170750921434,223,0 +170750921482,225,0 +170750921530,223,0 +170750921578,225,0 +170750921626,225,0 +170750921674,225,0 +170750921722,216,0 +170750921769,216,0 +170750921817,216,0 +170750921865,215,0 +170750921913,216,0 +170750921961,217,0 +170750922009,218,0 +170750922057,219,0 +170750922106,219,0 +170750922156,221,0 +170750922204,221,0 +170750922251,222,0 +170750922299,222,0 +170750922349,223,0 +170750922397,224,0 +170750922444,224,0 +170750922492,225,0 +170750922540,224,0 +170750922588,225,0 +170750922638,216,0 +170750922686,216,0 +170750922735,217,0 +170750922783,216,0 +170750922833,217,0 +170750922882,218,0 +170750922930,219,0 +170750922978,219,0 +170750923026,220,0 +170750923074,221,0 +170750923122,222,0 +170750923170,223,0 +170750923218,224,0 +170750923267,223,0 +170750923317,226,0 +170750923365,225,0 +170750923413,226,0 +170750923461,225,0 +170750923510,224,0 +170750923558,216,0 +170750923608,216,0 +170750923656,216,0 +170750923704,216,0 +170750923752,216,0 +170750923799,217,0 +170750923847,218,0 +170750923895,218,0 +170750923943,220,0 +170750923993,221,0 +170750924042,222,0 +170750924090,222,0 +170750924138,224,0 +170750924186,224,0 +170750924234,224,0 +170750924284,224,0 +170750924331,224,0 +170750924379,225,0 +170750924427,225,0 +170750924475,217,0 +170750924523,216,0 +170750924573,216,0 +170750924621,216,0 +170750924668,217,0 +170750924716,218,0 +170750924766,220,0 +170750924815,220,0 +170750924863,220,0 +170750924911,221,0 +170750924961,221,0 +170750925009,222,0 +170750925058,222,0 +170750925106,223,0 +170750925156,224,0 +170750925205,224,0 +170750925255,225,0 +170750925302,225,0 +170750925350,225,0 +170750925398,217,0 +170750925446,216,0 +170750925495,216,0 +170750925543,216,0 +170750925591,216,0 +170750925639,216,0 +170750925687,217,0 +170750925737,218,0 +170750925784,218,0 +170750925832,219,0 +170750925880,221,0 +170750925928,221,0 +170750925976,222,0 +170750926024,223,0 +170750926072,223,0 +170750926120,223,0 +170750926167,224,0 +170750926215,225,0 +170750926265,225,0 +170750926314,217,0 +170750926362,216,0 +170750926412,216,0 +170750926459,216,0 +170750926507,216,0 +170750926555,216,0 +170750926603,216,0 +170750926651,218,0 +170750926701,219,0 +170750926748,219,0 +170750926796,221,0 +170750926846,221,0 +170750926894,223,0 +170750926942,223,0 +170750926989,224,0 +170750927037,224,0 +170750927085,225,0 +170750927133,225,0 +170750927181,225,0 +170750927231,217,0 +170750927278,215,0 +170750927326,216,0 +170750927374,216,0 +170750927422,217,0 +170750927470,218,0 +170750927518,218,0 +170750927566,219,0 +170750927614,219,0 +170750927662,221,0 +170750927709,221,0 +170750927757,221,0 +170750927805,222,0 +170750927853,223,0 +170750927901,224,0 +170750927949,225,0 +170750927997,223,0 +170750928046,223,0 +170750928094,225,0 +170750928142,217,0 +170750928190,216,0 +170750928238,217,0 +170750928286,218,0 +170750928334,218,0 +170750928381,219,0 +170750928431,219,0 +170750928479,220,0 +170750928527,221,0 +170750928575,222,0 +170750928623,223,0 +170750928670,223,0 +170750928718,224,0 +170750928766,226,0 +170750928814,226,0 +170750928862,226,0 +170750928910,226,0 +170750928958,225,0 +170750929005,225,0 +170750929053,217,0 +170750929101,217,0 +170750929149,217,0 +170750929199,219,0 +170750929246,219,0 +170750929294,220,0 +170750929342,222,0 +170750929390,221,0 +170750929438,222,0 +170750929486,224,0 +170750929534,223,0 +170750929582,224,0 +170750929631,225,0 +170750929679,224,0 +170750929727,226,0 +170750929775,226,0 +170750929822,225,0 +170750929870,225,0 +170750929918,225,0 +170750929966,224,0 +170750930014,216,0 +170750930062,216,0 +170750930110,217,0 +170750930158,218,0 +170750930206,218,0 +170750930253,218,0 +170750930301,219,0 +170750930351,220,0 +170750930400,218,0 +170750930448,222,0 +170750930496,223,0 +170750930544,224,0 +170750930592,225,0 +170750930642,224,0 +170750930691,224,0 +170750930740,226,0 +170750930788,225,0 +170750930836,226,0 +170750930886,224,0 +170750930935,216,0 +170750930983,216,0 +170750931031,216,0 +170750931079,216,0 +170750931129,218,0 +170750931177,218,0 +170750931226,219,0 +170750931276,219,0 +170750931325,221,0 +170750931373,221,0 +170750931423,222,0 +170750931470,222,0 +170750931518,224,0 +170750931568,224,0 +170750931616,225,0 +170750931664,226,0 +170750931712,225,0 +170750931761,225,0 +170750931809,233,0 +170750931857,216,0 +170750931907,216,0 +170750931956,217,0 +170750932006,218,0 +170750932055,219,0 +170750932105,219,0 +170750932153,219,0 +170750932201,220,0 +170750932249,221,0 +170750932297,222,0 +170750932344,223,0 +170750932392,224,0 +170750932440,224,0 +170750932490,225,0 +170750932538,222,0 +170750932587,226,0 +170750932637,226,0 +170750932686,225,0 +170750932736,217,0 +170750932785,216,0 +170750932835,216,0 +170750932883,216,0 +170750932931,217,0 +170750932980,218,0 +170750933030,219,0 +170750933078,220,0 +170750933127,221,0 +170750933175,221,0 +170750933225,222,0 +170750933273,224,0 +170750933322,223,0 +170750933372,223,0 +170750933420,224,0 +170750933468,225,0 +170750933517,225,0 +170750933567,224,0 +170750933616,224,0 +170750933666,217,0 +170750933714,215,0 +170750933762,215,0 +170750933809,216,0 +170750933857,216,0 +170750933905,216,0 +170750933953,216,0 +170750934001,217,0 +170750934049,217,0 +170750934098,217,0 +170750934146,218,0 +170750934194,219,0 +170750934242,219,0 +170750934290,220,0 +170750934338,221,0 +170750934387,221,0 +170750934435,222,0 +170750934485,222,0 +170750934533,223,0 +170750934583,224,0 +170750934630,224,0 +170750934678,225,0 +170750934726,226,0 +170750934776,227,0 +170750934824,226,0 +170750934872,226,0 +170750934920,226,0 +170750934968,225,0 +170750935016,224,0 +170750935064,216,0 +170750935113,216,0 +170750935161,216,0 +170750935211,217,0 +170750935259,216,0 +170750935307,217,0 +170750935356,218,0 +170750935406,218,0 +170750935455,219,0 +170750935503,220,0 +170750935551,221,0 +170750935599,221,0 +170750935647,224,0 +170750935696,223,0 +170750935744,224,0 +170750935792,229,0 +170750935842,225,0 +170750935890,225,0 +170750935939,226,0 +170750935987,216,0 +170750936037,215,0 +170750936085,216,0 +170750936134,216,0 +170750936184,217,0 +170750936232,217,0 +170750936280,218,0 +170750936329,219,0 +170750936379,220,0 +170750936427,220,0 +170750936475,221,0 +170750936523,223,0 +170750936571,223,0 +170750936619,223,0 +170750936667,225,0 +170750936715,225,0 +170750936763,225,0 +170750936812,225,0 +170750936860,224,0 +170750936910,216,0 +170750936958,215,0 +170750937006,216,0 +170750937054,216,0 +170750937101,216,0 +170750937149,216,0 +170750937197,216,0 +170750937245,217,0 +170750937293,218,0 +170750937341,219,0 +170750937389,220,0 +170750937437,221,0 +170750937485,222,0 +170750937535,223,0 +170750937583,223,0 +170750937631,224,0 +170750937678,225,0 +170750937726,223,0 +170750937776,223,0 +170750937824,216,0 +170750937872,215,0 +170750937921,215,0 +170750937971,215,0 +170750938020,215,0 +170750938068,216,0 +170750938116,216,0 +170750938164,216,0 +170750938212,216,0 +170750938260,217,0 +170750938309,218,0 +170750938357,219,0 +170750938405,220,0 +170750938455,222,0 +170750938503,222,0 +170750938551,222,0 +170750938600,223,0 +170750938648,224,0 +170750938696,225,0 +170750938744,216,0 +170750938794,216,0 +170750938843,216,0 +170750938893,216,0 +170750938940,216,0 +170750938988,216,0 +170750939036,217,0 +170750939084,217,0 +170750939132,216,0 +170750939180,219,0 +170750939228,217,0 +170750939277,220,0 +170750939325,217,0 +170750939375,221,0 +170750939423,222,0 +170750939471,223,0 +170750939520,223,0 +170750939568,224,0 +170750939618,224,0 +170750939666,217,0 +170750939713,216,0 +170750939761,216,0 +170750939809,217,0 +170750939857,218,0 +170750939905,218,0 +170750939953,218,0 +170750940001,219,0 +170750940049,217,0 +170750940099,221,0 +170750940147,221,0 +170750940196,221,0 +170750940244,223,0 +170750940292,223,0 +170750940342,225,0 +170750940391,224,0 +170750940439,226,0 +170750940487,225,0 +170750940535,225,0 +170750940585,216,0 +170750940634,215,0 +170750940682,216,0 +170750940730,217,0 +170750940778,218,0 +170750940826,218,0 +170750940874,219,0 +170750940921,219,0 +170750940969,219,0 +170750941017,221,0 +170750941065,222,0 +170750941114,222,0 +170750941164,224,0 +170750941212,224,0 +170750941260,225,0 +170750941308,225,0 +170750941357,225,0 +170750941405,225,0 +170750941453,225,0 +170750941501,216,0 +170750941549,216,0 +170750941597,216,0 +170750941645,217,0 +170750941693,218,0 +170750941741,219,0 +170750941791,220,0 +170750941838,220,0 +170750941888,222,0 +170750941936,223,0 +170750941984,223,0 +170750942033,224,0 +170750942081,224,0 +170750942129,224,0 +170750942177,225,0 +170750942225,226,0 +170750942273,226,0 +170750942322,226,0 +170750942370,225,0 +170750942418,217,0 +170750942466,217,0 +170750942516,217,0 +170750942565,218,0 +170750942613,219,0 +170750942661,221,0 +170750942711,221,0 +170750942760,222,0 +170750942810,222,0 +170750942858,224,0 +170750942906,224,0 +170750942955,225,0 +170750943005,225,0 +170750943053,225,0 +170750943101,225,0 +170750943149,226,0 +170750943198,226,0 +170750943246,225,0 +170750943294,224,0 +170750943342,217,0 +170750943390,217,0 +170750943439,218,0 +170750943487,218,0 +170750943537,220,0 +170750943586,220,0 +170750943634,220,0 +170750943684,222,0 +170750943732,222,0 +170750943780,223,0 +170750943828,224,0 +170750943876,225,0 +170750943923,226,0 +170750943971,225,0 +170750944021,225,0 +170750944069,225,0 +170750944117,225,0 +170750944166,225,0 +170750944216,225,0 +170750944265,217,0 +170750944313,217,0 +170750944361,218,0 +170750944409,219,0 +170750944459,219,0 +170750944506,220,0 +170750944554,221,0 +170750944602,222,0 +170750944650,222,0 +170750944698,223,0 +170750944746,224,0 +170750944795,224,0 +170750944843,226,0 +170750944891,225,0 +170750944939,225,0 +170750944988,226,0 +170750945036,225,0 +170750945084,225,0 +170750945132,224,0 +170750945180,219,0 +170750945228,219,0 +170750945276,220,0 +170750945325,220,0 +170750945373,221,0 +170750945421,222,0 +170750945470,222,0 +170750945520,223,0 +170750945570,223,0 +170750945618,224,0 +170750945667,225,0 +170750945715,225,0 +170750945763,225,0 +170750945811,225,0 +170750945859,227,0 +170750945908,226,0 +170750945958,225,0 +170750946006,225,0 +170750946054,224,0 +170750946102,217,0 +170750946149,216,0 +170750946199,216,0 +170750946248,216,0 +170750946296,217,0 +170750946344,218,0 +170750946392,219,0 +170750946440,219,0 +170750946488,220,0 +170750946536,221,0 +170750946584,221,0 +170750946631,222,0 +170750946679,223,0 +170750946727,224,0 +170750946775,224,0 +170750946823,224,0 +170750946871,226,0 +170750946920,223,0 +170750946968,225,0 +170750947016,217,0 +170750947066,216,0 +170750947115,216,0 +170750947163,216,0 +170750947213,217,0 +170750947261,218,0 +170750947309,218,0 +170750947356,219,0 +170750947404,219,0 +170750947452,220,0 +170750947500,221,0 +170750947548,222,0 +170750947597,223,0 +170750947645,223,0 +170750947693,223,0 +170750947743,223,0 +170750947792,225,0 +170750947840,226,0 +170750947888,224,0 +170750947936,217,0 +170750947984,216,0 +170750948032,215,0 +170750948079,216,0 +170750948127,217,0 +170750948175,218,0 +170750948223,219,0 +170750948271,219,0 +170750948319,219,0 +170750948367,221,0 +170750948415,220,0 +170750948463,224,0 +170750948511,225,0 +170750948558,228,0 +170750948606,225,0 +170750948656,225,0 +170750948704,225,0 +170750948752,225,0 +170750948799,225,0 +170750948849,224,0 +170750948897,216,0 +170750948945,216,0 +170750948992,217,0 +170750949040,218,0 +170750949088,219,0 +170750949136,219,0 +170750949184,220,0 +170750949232,220,0 +170750949280,220,0 +170750949328,221,0 +170750949376,222,0 +170750949424,222,0 +170750949472,225,0 +170750949519,223,0 +170750949567,225,0 +170750949615,225,0 +170750949663,224,0 +170750949711,224,0 +170750949759,225,0 +170750949807,217,0 +170750949855,215,0 +170750949903,216,0 +170750949951,216,0 +170750949999,217,0 +170750950048,217,0 +170750950098,218,0 +170750950146,219,0 +170750950195,219,0 +170750950243,221,0 +170750950293,221,0 +170750950342,224,0 +170750950390,223,0 +170750950438,225,0 +170750950486,224,0 +170750950534,225,0 +170750950582,225,0 +170750950630,225,0 +170750950678,224,0 +170750950728,217,0 +170750950776,215,0 +170750950824,215,0 +170750950873,216,0 +170750950921,217,0 +170750950969,218,0 +170750951017,218,0 +170750951065,218,0 +170750951113,219,0 +170750951162,219,0 +170750951210,221,0 +170750951260,223,0 +170750951308,223,0 +170750951356,223,0 +170750951404,224,0 +170750951452,226,0 +170750951501,225,0 +170750951549,226,0 +170750951597,226,0 +170750951645,217,0 +170750951694,215,0 +170750951744,215,0 +170750951792,216,0 +170750951840,216,0 +170750951888,216,0 +170750951937,217,0 +170750951987,217,0 +170750952036,217,0 +170750952084,218,0 +170750952134,219,0 +170750952182,221,0 +170750952229,221,0 +170750952277,221,0 +170750952325,222,0 +170750952375,224,0 +170750952423,223,0 +170750952471,224,0 +170750952520,225,0 +170750952568,217,0 +170750952616,215,0 +170750952664,216,0 +170750952712,216,0 +170750952760,216,0 +170750952808,216,0 +170750952856,217,0 +170750952903,218,0 +170750952951,218,0 +170750953001,219,0 +170750953051,220,0 +170750953098,220,0 +170750953148,221,0 +170750953196,221,0 +170750953245,221,0 +170750953295,222,0 +170750953344,223,0 +170750953394,222,0 +170750953443,224,0 +170750953491,222,0 +170750953541,216,0 +170750953589,216,0 +170750953638,218,0 +170750953686,218,0 +170750953734,219,0 +170750953782,219,0 +170750953832,220,0 +170750953881,224,0 +170750953931,221,0 +170750953979,223,0 +170750954028,223,0 +170750954078,224,0 +170750954126,224,0 +170750954175,225,0 +170750954223,227,0 +170750954273,226,0 +170750954322,226,0 +170750954372,225,0 +170750954420,221,0 +170750954468,216,0 +170750954516,216,0 +170750954564,217,0 +170750954612,217,0 +170750954661,218,0 +170750954709,219,0 +170750954759,220,0 +170750954806,220,0 +170750954854,221,0 +170750954904,222,0 +170750954952,224,0 +170750955001,224,0 +170750955049,226,0 +170750955097,225,0 +170750955147,225,0 +170750955195,226,0 +170750955243,225,0 +170750955292,225,0 +170750955340,224,0 +170750955390,216,0 +170750955438,216,0 +170750955486,217,0 +170750955534,218,0 +170750955583,218,0 +170750955631,219,0 +170750955679,220,0 +170750955727,220,0 +170750955776,221,0 +170750955824,220,0 +170750955872,223,0 +170750955922,224,0 +170750955970,223,0 +170750956018,224,0 +170750956067,226,0 +170750956117,225,0 +170750956166,226,0 +170750956214,225,0 +170750956264,225,0 +170750956312,216,0 +170750956360,216,0 +170750956409,216,0 +170750956457,217,0 +170750956507,218,0 +170750956554,218,0 +170750956604,219,0 +170750956652,219,0 +170750956700,220,0 +170750956749,221,0 +170750956797,223,0 +170750956845,222,0 +170750956893,224,0 +170750956943,224,0 +170750956991,225,0 +170750957040,225,0 +170750957088,226,0 +170750957138,225,0 +170750957186,225,0 +170750957234,216,0 +170750957282,216,0 +170750957330,216,0 +170750957377,217,0 +170750957427,218,0 +170750957475,218,0 +170750957524,220,0 +170750957574,220,0 +170750957624,221,0 +170750957672,222,0 +170750957721,223,0 +170750957769,224,0 +170750957817,226,0 +170750957865,226,0 +170750957913,226,0 +170750957961,226,0 +170750958010,226,0 +170750958058,225,0 +170750958106,224,0 +170750958156,216,0 +170750958204,215,0 +170750958253,215,0 +170750958301,217,0 +170750958349,217,0 +170750958397,218,0 +170750958445,218,0 +170750958495,219,0 +170750958544,219,0 +170750958592,221,0 +170750958640,221,0 +170750958690,223,0 +170750958738,223,0 +170750958786,224,0 +170750958835,225,0 +170750958883,226,0 +170750958931,227,0 +170750958980,225,0 +170750959028,225,0 +170750959076,216,0 +170750959124,215,0 +170750959174,215,0 +170750959222,215,0 +170750959270,216,0 +170750959317,216,0 +170750959365,217,0 +170750959413,217,0 +170750959461,218,0 +170750959511,218,0 +170750959560,219,0 +170750959610,221,0 +170750959658,220,0 +170750959706,221,0 +170750959754,222,0 +170750959802,223,0 +170750959850,223,0 +170750959899,223,0 +170750959949,224,0 +170750959997,217,0 +170750960046,215,0 +170750960094,216,0 +170750960142,216,0 +170750960190,217,0 +170750960238,216,0 +170750960287,216,0 +170750960335,217,0 +170750960383,217,0 +170750960431,217,0 +170750960479,218,0 +170750960528,219,0 +170750960576,220,0 +170750960624,221,0 +170750960672,222,0 +170750960720,222,0 +170750960768,223,0 +170750960818,224,0 +170750960866,225,0 +170750960914,217,0 +170750960963,216,0 +170750961013,216,0 +170750961061,216,0 +170750961110,216,0 +170750961160,216,0 +170750961209,217,0 +170750961257,218,0 +170750961307,218,0 +170750961356,220,0 +170750961406,221,0 +170750961455,222,0 +170750961503,222,0 +170750961553,223,0 +170750961602,225,0 +170750961652,225,0 +170750961700,224,0 +170750961748,225,0 +170750961797,225,0 +170750961845,217,0 +170750961893,215,0 +170750961941,216,0 +170750961991,216,0 +170750962039,216,0 +170750962086,216,0 +170750962136,217,0 +170750962184,218,0 +170750962233,218,0 +170750962281,219,0 +170750962329,220,0 +170750962377,220,0 +170750962427,221,0 +170750962475,222,0 +170750962524,223,0 +170750962572,223,0 +170750962620,224,0 +170750962668,222,0 +170750962716,224,0 +170750962764,217,0 +170750962812,216,0 +170750962860,215,0 +170750962908,216,0 +170750962957,216,0 +170750963005,216,0 +170750963055,216,0 +170750963103,217,0 +170750963152,217,0 +170750963202,218,0 +170750963251,219,0 +170750963299,220,0 +170750963347,220,0 +170750963395,221,0 +170750963445,222,0 +170750963493,222,0 +170750963541,222,0 +170750963588,222,0 +170750963636,224,0 +170750963684,217,0 +170750963732,216,0 +170750963780,216,0 +170750963828,216,0 +170750963876,216,0 +170750963924,217,0 +170750963972,217,0 +170750964019,218,0 +170750964067,219,0 +170750964115,220,0 +170750964163,221,0 +170750964211,222,0 +170750964260,223,0 +170750964308,224,0 +170750964356,225,0 +170750964404,224,0 +170750964452,225,0 +170750964502,225,0 +170750964550,225,0 +170750964598,224,0 +170750964647,216,0 +170750964697,215,0 +170750964745,216,0 +170750964794,216,0 +170750964842,217,0 +170750964890,218,0 +170750964940,219,0 +170750964989,220,0 +170750965039,220,0 +170750965087,221,0 +170750965135,221,0 +170750965183,223,0 +170750965231,223,0 +170750965279,223,0 +170750965326,228,0 +170750965374,224,0 +170750965422,225,0 +170750965470,225,0 +170750965518,224,0 +170750965566,216,0 +170750965614,216,0 +170750965662,216,0 +170750965712,217,0 +170750965761,218,0 +170750965811,219,0 +170750965859,220,0 +170750965907,220,0 +170750965956,221,0 +170750966004,222,0 +170750966052,222,0 +170750966100,223,0 +170750966148,224,0 +170750966198,225,0 +170750966246,225,0 +170750966294,225,0 +170750966343,225,0 +170750966391,225,0 +170750966439,225,0 +170750966487,217,0 +170750966536,216,0 +170750966584,217,0 +170750966632,219,0 +170750966680,219,0 +170750966730,220,0 +170750966777,221,0 +170750966827,222,0 +170750966875,222,0 +170750966923,223,0 +170750966973,224,0 +170750967021,223,0 +170750967069,225,0 +170750967116,224,0 +170750967164,226,0 +170750967212,224,0 +170750967260,225,0 +170750967310,226,0 +170750967358,225,0 +170750967407,217,0 +170750967457,216,0 +170750967506,215,0 +170750967554,216,0 +170750967602,217,0 +170750967650,218,0 +170750967698,218,0 +170750967746,220,0 +170750967794,220,0 +170750967842,221,0 +170750967891,222,0 +170750967939,223,0 +170750967989,223,0 +170750968037,224,0 +170750968085,224,0 +170750968133,224,0 +170750968181,224,0 +170750968229,224,0 +170750968278,225,0 +170750968326,217,0 +170750968374,216,0 +170750968424,216,0 +170750968472,216,0 +170750968521,217,0 +170750968569,218,0 +170750968617,219,0 +170750968667,220,0 +170750968715,220,0 +170750968763,221,0 +170750968811,222,0 +170750968860,225,0 +170750968908,223,0 +170750968956,224,0 +170750969006,224,0 +170750969054,224,0 +170750969102,225,0 +170750969151,223,0 +170750969199,224,0 +170750969247,217,0 +170750969295,215,0 +170750969343,216,0 +170750969391,216,0 +170750969439,217,0 +170750969487,217,0 +170750969536,218,0 +170750969584,220,0 +170750969634,220,0 +170750969682,221,0 +170750969731,221,0 +170750969781,223,0 +170750969829,223,0 +170750969877,225,0 +170750969926,225,0 +170750969974,225,0 +170750970024,225,0 +170750970072,225,0 +170750970120,224,0 +170750970169,217,0 +170750970217,215,0 +170750970265,216,0 +170750970315,216,0 +170750970364,216,0 +170750970414,216,0 +170750970462,216,0 +170750970510,217,0 +170750970558,217,0 +170750970606,223,0 +170750970653,218,0 +170750970701,220,0 +170750970751,220,0 +170750970799,221,0 +170750970847,222,0 +170750970896,222,0 +170750970944,222,0 +170750970994,222,0 +170750971042,225,0 +170750971090,217,0 +170750971139,215,0 +170750971189,216,0 +170750971237,216,0 +170750971285,216,0 +170750971333,217,0 +170750971381,218,0 +170750971430,219,0 +170750971478,220,0 +170750971526,220,0 +170750971576,222,0 +170750971625,223,0 +170750971673,222,0 +170750971723,223,0 +170750971771,223,0 +170750971820,225,0 +170750971868,225,0 +170750971916,225,0 +170750971966,224,0 +170750972014,223,0 +170750972062,216,0 +170750972109,216,0 +170750972157,216,0 +170750972205,217,0 +170750972253,217,0 +170750972301,218,0 +170750972351,218,0 +170750972399,220,0 +170750972448,219,0 +170750972498,221,0 +170750972546,223,0 +170750972594,224,0 +170750972643,224,0 +170750972691,224,0 +170750972739,225,0 +170750972789,225,0 +170750972836,226,0 +170750972884,225,0 +170750972932,224,0 +170750972980,216,0 +170750973030,217,0 +170750973079,217,0 +170750973129,218,0 +170750973177,219,0 +170750973225,219,0 +170750973273,219,0 +170750973321,221,0 +170750973370,222,0 +170750973420,222,0 +170750973468,224,0 +170750973516,225,0 +170750973564,226,0 +170750973613,225,0 +170750973661,225,0 +170750973709,225,0 +170750973759,225,0 +170750973807,225,0 +170750973855,224,0 +170750973903,217,0 +170750973951,217,0 +170750973998,217,0 +170750974046,218,0 +170750974096,220,0 +170750974146,219,0 +170750974193,220,0 +170750974241,221,0 +170750974289,221,0 +170750974337,221,0 +170750974387,223,0 +170750974435,224,0 +170750974484,224,0 +170750974534,224,0 +170750974582,224,0 +170750974630,225,0 +170750974679,225,0 +170750974727,225,0 +170750974775,224,0 +170750974823,217,0 +170750974873,217,0 +170750974922,218,0 +170750974970,218,0 +170750975018,219,0 +170750975068,219,0 +170750975117,220,0 +170750975165,221,0 +170750975215,222,0 +170750975264,223,0 +170750975312,224,0 +170750975362,226,0 +170750975410,225,0 +170750975457,225,0 +170750975505,226,0 +170750975553,226,0 +170750975601,226,0 +170750975649,226,0 +170750975697,225,0 +170750975745,217,0 +170750975793,216,0 +170750975843,217,0 +170750975892,218,0 +170750975940,220,0 +170750975990,220,0 +170750976037,221,0 +170750976085,222,0 +170750976133,222,0 +170750976181,223,0 +170750976231,224,0 +170750976279,224,0 +170750976327,225,0 +170750976376,226,0 +170750976424,226,0 +170750976472,225,0 +170750976522,226,0 +170750976570,226,0 +170750976619,225,0 +170750976667,218,0 +170750976715,217,0 +170750976765,215,0 +170750976814,217,0 +170750976862,217,0 +170750976910,218,0 +170750976960,219,0 +170750977009,219,0 +170750977057,220,0 +170750977105,220,0 +170750977155,221,0 +170750977203,222,0 +170750977252,223,0 +170750977302,224,0 +170750977350,224,0 +170750977398,225,0 +170750977446,225,0 +170750977495,225,0 +170750977543,224,0 +170750977591,217,0 +170750977639,215,0 +170750977687,216,0 +170750977735,216,0 +170750977783,216,0 +170750977833,216,0 +170750977881,216,0 +170750977930,216,0 +170750977980,217,0 +170750978029,218,0 +170750978079,219,0 +170750978128,220,0 +170750978176,221,0 +170750978224,222,0 +170750978274,222,0 +170750978323,222,0 +170750978371,222,0 +170750978419,223,0 +170750978467,225,0 +170750978515,217,0 +170750978565,215,0 +170750978613,215,0 +170750978661,216,0 +170750978709,216,0 +170750978758,216,0 +170750978806,216,0 +170750978854,217,0 +170750978904,216,0 +170750978953,217,0 +170750979001,218,0 +170750979049,219,0 +170750979099,220,0 +170750979146,221,0 +170750979196,222,0 +170750979244,223,0 +170750979292,223,0 +170750979341,223,0 +170750979391,225,0 +170750979440,218,0 +170750979490,216,0 +170750979539,217,0 +170750979589,217,0 +170750979638,218,0 +170750979686,219,0 +170750979734,220,0 +170750979784,221,0 +170750979832,222,0 +170750979880,222,0 +170750979928,224,0 +170750979976,224,0 +170750980024,225,0 +170750980072,224,0 +170750980120,226,0 +170750980168,228,0 +170750980216,225,0 +170750980264,226,0 +170750980313,225,0 +170750980361,217,0 +170750980411,216,0 +170750980459,216,0 +170750980508,217,0 +170750980556,218,0 +170750980604,218,0 +170750980652,219,0 +170750980702,219,0 +170750980751,220,0 +170750980801,221,0 +170750980849,222,0 +170750980898,223,0 +170750980946,223,0 +170750980996,225,0 +170750981044,224,0 +170750981093,225,0 +170750981141,225,0 +170750981189,225,0 +170750981239,225,0 +170750981286,217,0 +170750981336,216,0 +170750981386,216,0 +170750981434,216,0 +170750981483,217,0 +170750981532,218,0 +170750981582,218,0 +170750981630,219,0 +170750981678,220,0 +170750981726,220,0 +170750981776,221,0 +170750981825,223,0 +170750981875,223,0 +170750981924,225,0 +170750981972,225,0 +170750982022,225,0 +170750982071,225,0 +170750982121,225,0 +170750982170,224,0 +170750982220,216,0 +170750982268,215,0 +170750982316,215,0 +170750982364,216,0 +170750982411,216,0 +170750982459,217,0 +170750982509,218,0 +170750982558,218,0 +170750982608,219,0 +170750982656,220,0 +170750982704,220,0 +170750982752,221,0 +170750982800,222,0 +170750982848,224,0 +170750982896,223,0 +170750982945,224,0 +170750982995,224,0 +170750983044,224,0 +170750983094,225,0 +170750983142,217,0 +170750983191,215,0 +170750983239,215,0 +170750983287,216,0 +170750983337,216,0 +170750983386,216,0 +170750983434,218,0 +170750983482,218,0 +170750983530,219,0 +170750983580,219,0 +170750983628,220,0 +170750983676,221,0 +170750983724,222,0 +170750983773,222,0 +170750983821,224,0 +170750983869,225,0 +170750983917,224,0 +170750983965,224,0 +170750984013,223,0 +170750984063,217,0 +170750984111,215,0 +170750984159,215,0 +170750984208,216,0 +170750984258,216,0 +170750984306,216,0 +170750984354,216,0 +170750984401,216,0 +170750984451,216,0 +170750984499,217,0 +170750984548,218,0 +170750984596,219,0 +170750984644,220,0 +170750984694,222,0 +170750984742,221,0 +170750984791,222,0 +170750984839,222,0 +170750984889,223,0 +170750984938,223,0 +170750984988,217,0 +170750985036,216,0 +170750985085,216,0 +170750985135,216,0 +170750985184,216,0 +170750985234,216,0 +170750985283,217,0 +170750985331,217,0 +170750985379,219,0 +170750985427,220,0 +170750985475,220,0 +170750985523,221,0 +170750985571,222,0 +170750985621,223,0 +170750985669,224,0 +170750985717,223,0 +170750985766,224,0 +170750985814,224,0 +170750985862,225,0 +170750985912,218,0 +170750985960,216,0 +170750986009,217,0 +170750986057,217,0 +170750986105,218,0 +170750986153,219,0 +170750986202,219,0 +170750986252,220,0 +170750986300,220,0 +170750986348,222,0 +170750986396,222,0 +170750986445,223,0 +170750986495,224,0 +170750986543,224,0 +170750986592,225,0 +170750986642,225,0 +170750986690,225,0 +170750986738,225,0 +170750986787,225,0 +170750986835,217,0 +170750986883,216,0 +170750986931,217,0 +170750986981,218,0 +170750987030,219,0 +170750987080,220,0 +170750987127,220,0 +170750987175,221,0 +170750987223,221,0 +170750987273,224,0 +170750987321,225,0 +170750987370,224,0 +170750987418,226,0 +170750987466,226,0 +170750987514,225,0 +170750987562,225,0 +170750987610,225,0 +170750987658,225,0 +170750987706,225,0 +170750987754,223,0 +170750987803,216,0 +170750987851,216,0 +170750987899,217,0 +170750987947,218,0 +170750987997,219,0 +170750988045,219,0 +170750988094,220,0 +170750988142,221,0 +170750988190,221,0 +170750988238,223,0 +170750988286,222,0 +170750988334,225,0 +170750988382,224,0 +170750988431,225,0 +170750988481,225,0 +170750988530,225,0 +170750988578,226,0 +170750988628,225,0 +170750988676,224,0 +170750988724,216,0 +170750988773,215,0 +170750988823,216,0 +170750988871,216,0 +170750988919,217,0 +170750988968,218,0 +170750989018,219,0 +170750989066,218,0 +170750989115,219,0 +170750989163,220,0 +170750989213,220,0 +170750989262,221,0 +170750989312,222,0 +170750989360,223,0 +170750989409,224,0 +170750989459,224,0 +170750989507,224,0 +170750989555,225,0 +170750989603,223,0 +170750989651,216,0 +170750989699,216,0 +170750989748,216,0 +170750989798,216,0 +170750989847,217,0 +170750989897,217,0 +170750989944,218,0 +170750989992,218,0 +170750990040,219,0 +170750990088,220,0 +170750990136,223,0 +170750990184,222,0 +170750990232,223,0 +170750990280,223,0 +170750990330,223,0 +170750990378,225,0 +170750990426,224,0 +170750990475,224,0 +170750990525,224,0 +170750990574,216,0 +170750990622,216,0 +170750990672,216,0 +170750990719,217,0 +170750990769,217,0 +170750990819,218,0 +170750990866,219,0 +170750990916,220,0 +170750990965,221,0 +170750991015,222,0 +170750991065,223,0 +170750991113,223,0 +170750991162,221,0 +170750991210,223,0 +170750991258,224,0 +170750991306,225,0 +170750991354,225,0 +170750991402,225,0 +170750991450,225,0 +170750991499,216,0 +170750991547,216,0 +170750991597,216,0 +170750991645,217,0 +170750991693,217,0 +170750991741,218,0 +170750991788,219,0 +170750991836,219,0 +170750991884,220,0 +170750991934,220,0 +170750991982,221,0 +170750992031,223,0 +170750992081,223,0 +170750992130,223,0 +170750992178,224,0 +170750992226,226,0 +170750992274,225,0 +170750992322,225,0 +170750992370,225,0 +170750992419,216,0 +170750992467,216,0 +170750992515,216,0 +170750992563,217,0 +170750992611,217,0 +170750992661,218,0 +170750992710,219,0 +170750992758,219,0 +170750992806,220,0 +170750992854,220,0 +170750992904,222,0 +170750992952,222,0 +170750993000,222,0 +170750993048,223,0 +170750993097,224,0 +170750993147,224,0 +170750993196,224,0 +170750993246,225,0 +170750993294,225,0 +170750993342,216,0 +170750993391,216,0 +170750993439,216,0 +170750993487,216,0 +170750993535,217,0 +170750993583,218,0 +170750993632,218,0 +170750993680,218,0 +170750993730,220,0 +170750993778,220,0 +170750993826,220,0 +170750993874,222,0 +170750993923,222,0 +170750993973,223,0 +170750994022,224,0 +170750994070,223,0 +170750994118,223,0 +170750994166,224,0 +170750994214,224,0 +170750994262,217,0 +170750994310,215,0 +170750994359,216,0 +170750994407,216,0 +170750994455,217,0 +170750994505,218,0 +170750994553,218,0 +170750994601,219,0 +170750994648,220,0 +170750994696,221,0 +170750994744,222,0 +170750994792,223,0 +170750994842,224,0 +170750994890,223,0 +170750994938,226,0 +170750994987,225,0 +170750995035,224,0 +170750995083,225,0 +170750995131,225,0 +170750995179,218,0 +170750995229,216,0 +170750995278,216,0 +170750995326,218,0 +170750995374,218,0 +170750995422,219,0 +170750995471,220,0 +170750995521,220,0 +170750995570,221,0 +170750995618,220,0 +170750995668,222,0 +170750995717,223,0 +170750995765,224,0 +170750995815,225,0 +170750995865,224,0 +170750995913,224,0 +170750995960,225,0 +170750996010,225,0 +170750996060,225,0 +170750996107,218,0 +170750996157,216,0 +170750996205,217,0 +170750996253,218,0 +170750996301,220,0 +170750996349,220,0 +170750996397,221,0 +170750996445,222,0 +170750996494,222,0 +170750996544,223,0 +170750996593,223,0 +170750996643,224,0 +170750996692,224,0 +170750996742,224,0 +170750996791,225,0 +170750996841,225,0 +170750996889,225,0 +170750996938,225,0 +170750996986,224,0 +170750997034,217,0 +170750997084,215,0 +170750997133,216,0 +170750997181,217,0 +170750997229,218,0 +170750997279,219,0 +170750997327,219,0 +170750997375,220,0 +170750997424,221,0 +170750997472,222,0 +170750997520,223,0 +170750997568,223,0 +170750997617,224,0 +170750997665,224,0 +170750997713,225,0 +170750997761,226,0 +170750997809,225,0 +170750997857,226,0 +170750997907,224,0 +170750997955,217,0 +170750998003,216,0 +170750998051,216,0 +170750998099,216,0 +170750998147,217,0 +170750998194,218,0 +170750998244,218,0 +170750998292,219,0 +170750998340,220,0 +170750998388,221,0 +170750998436,222,0 +170750998485,223,0 +170750998533,224,0 +170750998581,224,0 +170750998629,225,0 +170750998677,226,0 +170750998725,225,0 +170750998775,225,0 +170750998823,226,0 +170750998872,224,0 +170750998922,216,0 +170750998970,216,0 +170750999018,216,0 +170750999066,217,0 +170750999115,217,0 +170750999165,219,0 +170750999212,219,0 +170750999260,220,0 +170750999308,220,0 +170750999358,221,0 +170750999407,223,0 +170750999455,223,0 +170750999505,226,0 +170750999553,227,0 +170750999602,225,0 +170750999650,225,0 +170750999698,225,0 +170750999746,226,0 +170750999796,224,0 +170750999845,216,0 +170750999893,217,0 +170750999943,217,0 +170750999991,218,0 +170751000039,218,0 +170751000088,220,0 +170751000136,220,0 +170751000184,220,0 +170751000232,221,0 +170751000281,222,0 +170751000331,222,0 +170751000379,223,0 +170751000427,226,0 +170751000475,224,0 +170751000524,223,0 +170751000574,224,0 +170751000623,225,0 +170751000673,225,0 +170751000722,222,0 +170751000770,216,0 +170751000820,216,0 +170751000868,217,0 +170751000916,217,0 +170751000964,218,0 +170751001012,219,0 +170751001060,220,0 +170751001109,220,0 +170751001157,220,0 +170751001206,222,0 +170751001254,223,0 +170751001302,222,0 +170751001350,223,0 +170751001398,225,0 +170751001446,223,0 +170751001494,225,0 +170751001544,225,0 +170751001592,226,0 +170751001641,224,0 +170751001689,216,0 +170751001737,216,0 +170751001785,217,0 +170751001835,217,0 +170751001884,218,0 +170751001934,219,0 +170751001982,219,0 +170751002030,220,0 +170751002079,221,0 +170751002127,221,0 +170751002177,222,0 +170751002224,225,0 +170751002274,226,0 +170751002323,226,0 +170751002371,225,0 +170751002419,225,0 +170751002469,224,0 +170751002517,225,0 +170751002565,225,0 +170751002614,216,0 +170751002664,216,0 +170751002713,217,0 +170751002761,218,0 +170751002811,219,0 +170751002859,219,0 +170751002907,221,0 +170751002956,221,0 +170751003004,221,0 +170751003052,223,0 +170751003102,224,0 +170751003151,224,0 +170751003199,225,0 +170751003249,225,0 +170751003297,226,0 +170751003346,226,0 +170751003394,226,0 +170751003442,225,0 +170751003492,224,0 +170751003541,216,0 +170751003589,215,0 +170751003638,216,0 +170751003686,217,0 +170751003736,218,0 +170751003784,218,0 +170751003833,219,0 +170751003881,219,0 +170751003929,220,0 +170751003979,221,0 +170751004027,222,0 +170751004075,223,0 +170751004124,223,0 +170751004172,225,0 +170751004220,225,0 +170751004268,226,0 +170751004316,226,0 +170751004364,225,0 +170751004412,224,0 +170751004461,216,0 +170751004509,216,0 +170751004557,216,0 +170751004605,216,0 +170751004653,217,0 +170751004701,218,0 +170751004749,218,0 +170751004799,219,0 +170751004848,218,0 +170751004898,220,0 +170751004947,220,0 +170751004995,221,0 +170751005045,222,0 +170751005093,222,0 +170751005141,222,0 +170751005190,224,0 +170751005238,223,0 +170751005286,223,0 +170751005334,226,0 +170751005382,218,0 +170751005429,215,0 +170751005477,215,0 +170751005527,216,0 +170751005575,217,0 +170751005622,218,0 +170751005670,219,0 +170751005718,219,0 +170751005766,220,0 +170751005814,222,0 +170751005862,221,0 +170751005911,222,0 +170751005961,223,0 +170751006010,224,0 +170751006058,225,0 +170751006106,224,0 +170751006156,223,0 +170751006204,224,0 +170751006253,225,0 +170751006303,217,0 +170751006352,216,0 +170751006400,216,0 +170751006448,217,0 +170751006498,217,0 +170751006547,218,0 +170751006597,219,0 +170751006645,219,0 +170751006693,220,0 +170751006741,221,0 +170751006790,222,0 +170751006840,222,0 +170751006888,223,0 +170751006935,224,0 +170751006983,223,0 +170751007033,224,0 +170751007082,224,0 +170751007132,224,0 +170751007182,224,0 +170751007230,217,0 +170751007279,216,0 +170751007327,217,0 +170751007377,218,0 +170751007426,219,0 +170751007474,220,0 +170751007522,220,0 +170751007570,221,0 +170751007619,222,0 +170751007667,223,0 +170751007715,223,0 +170751007763,224,0 +170751007811,224,0 +170751007859,224,0 +170751007907,225,0 +170751007954,225,0 +170751008002,225,0 +170751008050,226,0 +170751008098,223,0 +170751008146,217,0 +170751008194,216,0 +170751008242,217,0 +170751008291,218,0 +170751008341,219,0 +170751008390,220,0 +170751008438,220,0 +170751008488,221,0 +170751008537,222,0 +170751008587,222,0 +170751008635,223,0 +170751008684,224,0 +170751008734,226,0 +170751008782,225,0 +170751008831,224,0 +170751008879,226,0 +170751008927,225,0 +170751008975,225,0 +170751009025,226,0 +170751009073,217,0 +170751009122,216,0 +170751009170,216,0 +170751009220,217,0 +170751009269,218,0 +170751009319,219,0 +170751009367,220,0 +170751009415,220,0 +170751009463,221,0 +170751009512,222,0 +170751009562,222,0 +170751009610,222,0 +170751009658,222,0 +170751009707,223,0 +170751009755,224,0 +170751009805,225,0 +170751009853,224,0 +170751009902,224,0 +170751009950,225,0 +170751009998,217,0 +170751010046,215,0 +170751010094,215,0 +170751010144,216,0 +170751010193,217,0 +170751010241,218,0 +170751010289,218,0 +170751010338,219,0 +170751010386,219,0 +170751010436,220,0 +170751010484,220,0 +170751010532,222,0 +170751010581,222,0 +170751010629,223,0 +170751010677,223,0 +170751010727,223,0 +170751010776,224,0 +170751010826,225,0 +170751010874,225,0 +170751010922,217,0 +170751010970,216,0 +170751011017,215,0 +170751011067,216,0 +170751011117,216,0 +170751011166,216,0 +170751011216,217,0 +170751011264,218,0 +170751011313,219,0 +170751011363,220,0 +170751011412,220,0 +170751011460,221,0 +170751011508,222,0 +170751011558,223,0 +170751011606,223,0 +170751011654,224,0 +170751011703,223,0 +170751011753,224,0 +170751011802,224,0 +170751011850,217,0 +170751011898,216,0 +170751011946,215,0 +170751011995,215,0 +170751012045,216,0 +170751012093,216,0 +170751012141,216,0 +170751012189,217,0 +170751012237,218,0 +170751012285,219,0 +170751012333,219,0 +170751012381,220,0 +170751012430,221,0 +170751012478,222,0 +170751012526,223,0 +170751012574,223,0 +170751012622,223,0 +170751012670,222,0 +170751012718,224,0 +170751012765,220,0 +170751012813,215,0 +170751012861,215,0 +170751012909,215,0 +170751012959,216,0 +170751013006,216,0 +170751013054,216,0 +170751013102,216,0 +170751013150,217,0 +170751013198,218,0 +170751013246,219,0 +170751013294,220,0 +170751013342,220,0 +170751013390,222,0 +170751013437,221,0 +170751013485,223,0 +170751013533,223,0 +170751013581,224,0 +170751013631,225,0 +170751013678,224,0 +170751013726,216,0 +170751013774,215,0 +170751013822,215,0 +170751013870,216,0 +170751013918,216,0 +170751013966,216,0 +170751014013,217,0 +170751014061,217,0 +170751014111,219,0 +170751014159,219,0 +170751014207,220,0 +170751014256,222,0 +170751014304,222,0 +170751014352,222,0 +170751014400,223,0 +170751014450,225,0 +170751014499,224,0 +170751014547,224,0 +170751014596,225,0 +170751014646,217,0 +170751014695,216,0 +170751014745,216,0 +170751014793,216,0 +170751014841,217,0 +170751014889,218,0 +170751014938,218,0 +170751014986,218,0 +170751015034,219,0 +170751015082,219,0 +170751015132,220,0 +170751015179,221,0 +170751015227,222,0 +170751015275,222,0 +170751015323,223,0 +170751015371,224,0 +170751015419,225,0 +170751015467,224,0 +170751015515,226,0 +170751015563,218,0 +170751015612,216,0 +170751015662,216,0 +170751015711,217,0 +170751015759,218,0 +170751015807,219,0 +170751015855,220,0 +170751015903,220,0 +170751015951,220,0 +170751016001,221,0 +170751016049,221,0 +170751016098,222,0 +170751016146,223,0 +170751016194,223,0 +170751016244,223,0 +170751016292,224,0 +170751016340,224,0 +170751016388,224,0 +170751016436,225,0 +170751016484,218,0 +170751016531,216,0 +170751016579,217,0 +170751016627,218,0 +170751016675,219,0 +170751016725,219,0 +170751016773,219,0 +170751016821,221,0 +170751016870,221,0 +170751016918,222,0 +170751016966,223,0 +170751017014,223,0 +170751017062,224,0 +170751017110,226,0 +170751017158,224,0 +170751017207,225,0 +170751017255,225,0 +170751017303,226,0 +170751017351,225,0 +170751017399,217,0 +170751017447,216,0 +170751017495,217,0 +170751017543,218,0 +170751017591,219,0 +170751017639,219,0 +170751017687,219,0 +170751017735,220,0 +170751017783,220,0 +170751017832,223,0 +170751017880,222,0 +170751017928,224,0 +170751017976,223,0 +170751018024,224,0 +170751018073,226,0 +170751018121,227,0 +170751018171,226,0 +170751018219,226,0 +170751018267,225,0 +170751018315,224,0 +170751018363,217,0 +170751018412,218,0 +170751018460,218,0 +170751018510,220,0 +170751018558,220,0 +170751018606,221,0 +170751018654,222,0 +170751018702,221,0 +170751018751,223,0 +170751018799,223,0 +170751018849,224,0 +170751018896,225,0 +170751018946,224,0 +170751018995,225,0 +170751019043,225,0 +170751019091,225,0 +170751019139,226,0 +170751019189,225,0 +170751019237,224,0 +170751019285,217,0 +170751019333,217,0 +170751019381,218,0 +170751019430,219,0 +170751019478,220,0 +170751019526,220,0 +170751019576,222,0 +170751019625,222,0 +170751019673,223,0 +170751019721,223,0 +170751019769,225,0 +170751019819,226,0 +170751019868,226,0 +170751019916,226,0 +170751019966,227,0 +170751020015,225,0 +170751020063,227,0 +170751020111,225,0 +170751020159,226,0 +170751020207,216,0 +170751020257,216,0 +170751020305,217,0 +170751020353,218,0 +170751020402,218,0 +170751020450,220,0 +170751020498,220,0 +170751020546,220,0 +170751020596,222,0 +170751020644,222,0 +170751020692,223,0 +170751020740,225,0 +170751020787,224,0 +170751020835,225,0 +170751020885,225,0 +170751020933,225,0 +170751020981,225,0 +170751021029,225,0 +170751021077,225,0 +170751021126,217,0 +170751021174,215,0 +170751021224,216,0 +170751021273,217,0 +170751021321,216,0 +170751021369,218,0 +170751021417,219,0 +170751021465,219,0 +170751021515,220,0 +170751021564,221,0 +170751021612,222,0 +170751021662,223,0 +170751021710,224,0 +170751021759,225,0 +170751021807,226,0 +170751021857,226,0 +170751021907,225,0 +170751021955,225,0 +170751022002,224,0 +170751022052,217,0 +170751022100,215,0 +170751022149,216,0 +170751022199,217,0 +170751022247,217,0 +170751022296,218,0 +170751022346,219,0 +170751022394,219,0 +170751022443,220,0 +170751022491,220,0 +170751022541,221,0 +170751022589,222,0 +170751022637,224,0 +170751022685,224,0 +170751022732,224,0 +170751022780,225,0 +170751022828,225,0 +170751022878,226,0 +170751022926,225,0 +170751022973,217,0 +170751023021,215,0 +170751023069,216,0 +170751023117,217,0 +170751023165,217,0 +170751023213,218,0 +170751023261,218,0 +170751023309,218,0 +170751023357,219,0 +170751023406,219,0 +170751023456,220,0 +170751023505,221,0 +170751023553,222,0 +170751023601,222,0 +170751023649,223,0 +170751023697,223,0 +170751023745,224,0 +170751023793,224,0 +170751023842,224,0 +170751023890,217,0 +170751023938,216,0 +170751023986,215,0 +170751024034,216,0 +170751024084,216,0 +170751024132,217,0 +170751024179,218,0 +170751024227,218,0 +170751024275,219,0 +170751024323,220,0 +170751024371,218,0 +170751024419,221,0 +170751024467,222,0 +170751024515,223,0 +170751024563,223,0 +170751024610,224,0 +170751024660,225,0 +170751024708,225,0 +170751024756,224,0 +170751024804,224,0 +170751024851,216,0 +170751024901,215,0 +170751024950,215,0 +170751024998,216,0 +170751025048,216,0 +170751025097,217,0 +170751025147,217,0 +170751025196,219,0 +170751025246,219,0 +170751025296,220,0 +170751025345,221,0 +170751025393,223,0 +170751025441,224,0 +170751025489,224,0 +170751025538,224,0 +170751025586,224,0 +170751025636,224,0 +170751025686,225,0 +170751025733,224,0 +170751025781,215,0 +170751025829,216,0 +170751025879,215,0 +170751025927,215,0 +170751025975,216,0 +170751026023,216,0 +170751026072,216,0 +170751026120,216,0 +170751026168,216,0 +170751026216,217,0 +170751026264,218,0 +170751026312,219,0 +170751026362,220,0 +170751026411,221,0 +170751026461,222,0 +170751026509,222,0 +170751026557,222,0 +170751026605,223,0 +170751026652,224,0 +170751026700,216,0 +170751026748,216,0 +170751026796,217,0 +170751026844,218,0 +170751026892,219,0 +170751026942,219,0 +170751026989,219,0 +170751027037,220,0 +170751027087,220,0 +170751027135,221,0 +170751027183,222,0 +170751027232,223,0 +170751027280,223,0 +170751027330,223,0 +170751027379,224,0 +170751027427,225,0 +170751027477,223,0 +170751027525,224,0 +170751027574,224,0 +170751027622,217,0 +170751027671,215,0 +170751027719,216,0 +170751027767,217,0 +170751027815,217,0 +170751027865,218,0 +170751027913,218,0 +170751027961,219,0 +170751028008,220,0 +170751028056,220,0 +170751028104,221,0 +170751028152,223,0 +170751028200,223,0 +170751028248,225,0 +170751028297,225,0 +170751028345,224,0 +170751028395,224,0 +170751028443,225,0 +170751028492,225,0 +170751028540,217,0 +170751028590,215,0 +170751028638,216,0 +170751028687,217,0 +170751028737,218,0 +170751028786,218,0 +170751028834,219,0 +170751028882,219,0 +170751028930,220,0 +170751028978,221,0 +170751029026,222,0 +170751029074,223,0 +170751029121,223,0 +170751029169,225,0 +170751029219,224,0 +170751029267,225,0 +170751029315,225,0 +170751029364,224,0 +170751029412,224,0 +170751029460,217,0 +170751029509,216,0 +170751029559,217,0 +170751029608,218,0 +170751029658,218,0 +170751029706,219,0 +170751029755,220,0 +170751029803,221,0 +170751029853,222,0 +170751029900,222,0 +170751029948,222,0 +170751029996,223,0 +170751030044,224,0 +170751030092,224,0 +170751030140,225,0 +170751030189,225,0 +170751030239,225,0 +170751030287,225,0 +170751030335,224,0 +170751030383,218,0 +170751030431,217,0 +170751030480,218,0 +170751030528,219,0 +170751030578,220,0 +170751030627,220,0 +170751030677,222,0 +170751030726,221,0 +170751030774,222,0 +170751030822,222,0 +170751030872,223,0 +170751030920,224,0 +170751030967,225,0 +170751031015,226,0 +170751031063,225,0 +170751031111,225,0 +170751031161,225,0 +170751031208,225,0 +170751031256,224,0 +170751031304,220,0 +170751031352,217,0 +170751031400,217,0 +170751031448,218,0 +170751031496,219,0 +170751031544,219,0 +170751031592,220,0 +170751031639,220,0 +170751031689,220,0 +170751031737,222,0 +170751031784,222,0 +170751031832,223,0 +170751031880,224,0 +170751031928,224,0 +170751031976,224,0 +170751032024,225,0 +170751032072,224,0 +170751032120,225,0 +170751032168,225,0 +170751032217,223,0 +170751032265,218,0 +170751032313,218,0 +170751032361,219,0 +170751032408,220,0 +170751032456,220,0 +170751032504,221,0 +170751032552,222,0 +170751032600,223,0 +170751032648,223,0 +170751032696,224,0 +170751032744,225,0 +170751032792,225,0 +170751032840,226,0 +170751032888,225,0 +170751032936,226,0 +170751032984,225,0 +170751033032,226,0 +170751033080,225,0 +170751033128,224,0 +170751033176,217,0 +170751033224,217,0 +170751033271,217,0 +170751033321,218,0 +170751033369,219,0 +170751033417,220,0 +170751033465,220,0 +170751033513,222,0 +170751033561,221,0 +170751033609,222,0 +170751033658,224,0 +170751033706,223,0 +170751033754,225,0 +170751033802,225,0 +170751033850,227,0 +170751033898,225,0 +170751033948,225,0 +170751033997,226,0 +170751034047,224,0 +170751034096,217,0 +170751034146,215,0 +170751034195,216,0 +170751034243,216,0 +170751034291,217,0 +170751034339,218,0 +170751034387,218,0 +170751034436,219,0 +170751034484,219,0 +170751034532,221,0 +170751034580,222,0 +170751034628,222,0 +170751034676,223,0 +170751034724,223,0 +170751034772,226,0 +170751034820,224,0 +170751034868,225,0 +170751034916,224,0 +170751034964,225,0 +170751035012,223,0 +170751035061,215,0 +170751035111,215,0 +170751035160,216,0 +170751035208,216,0 +170751035258,217,0 +170751035307,218,0 +170751035355,218,0 +170751035405,219,0 +170751035453,219,0 +170751035501,220,0 +170751035550,221,0 +170751035598,223,0 +170751035646,222,0 +170751035694,223,0 +170751035743,222,0 +170751035791,222,0 +170751035839,222,0 +170751035887,223,0 +170751035935,224,0 +170751035984,215,0 +170751036034,215,0 +170751036083,216,0 +170751036133,216,0 +170751036181,216,0 +170751036229,216,0 +170751036277,217,0 +170751036325,217,0 +170751036374,218,0 +170751036423,219,0 +170751036471,221,0 +170751036519,220,0 +170751036567,221,0 +170751036617,222,0 +170751036665,222,0 +170751036712,223,0 +170751036760,223,0 +170751036810,224,0 +170751036858,224,0 +170751036906,216,0 +170751036954,215,0 +170751037002,216,0 +170751037049,216,0 +170751037097,216,0 +170751037145,217,0 +170751037195,217,0 +170751037243,218,0 +170751037291,219,0 +170751037340,219,0 +170751037390,221,0 +170751037438,222,0 +170751037487,222,0 +170751037537,223,0 +170751037585,224,0 +170751037633,224,0 +170751037682,224,0 +170751037730,224,0 +170751037778,224,0 +170751037826,215,0 +170751037874,216,0 +170751037922,216,0 +170751037970,216,0 +170751038019,217,0 +170751038067,218,0 +170751038115,218,0 +170751038165,219,0 +170751038214,220,0 +170751038262,221,0 +170751038310,223,0 +170751038358,222,0 +170751038408,223,0 +170751038457,224,0 +170751038505,224,0 +170751038555,223,0 +170751038603,225,0 +170751038651,224,0 +170751038698,224,0 +170751038746,216,0 +170751038794,215,0 +170751038842,216,0 +170751038892,217,0 +170751038940,218,0 +170751038988,217,0 +170751039037,219,0 +170751039087,220,0 +170751039135,220,0 +170751039184,221,0 +170751039232,222,0 +170751039280,222,0 +170751039328,223,0 +170751039376,223,0 +170751039425,225,0 +170751039475,224,0 +170751039522,224,0 +170751039570,224,0 +170751039618,225,0 +170751039666,217,0 +170751039714,217,0 +170751039762,217,0 +170751039810,218,0 +170751039858,219,0 +170751039906,219,0 +170751039955,220,0 +170751040005,220,0 +170751040054,221,0 +170751040102,223,0 +170751040150,225,0 +170751040198,224,0 +170751040246,226,0 +170751040295,227,0 +170751040343,228,0 +170751040391,226,0 +170751040441,225,0 +170751040490,225,0 +170751040540,225,0 +170751040588,217,0 +170751040636,215,0 +170751040685,217,0 +170751040735,217,0 +170751040784,218,0 +170751040832,218,0 +170751040880,219,0 +170751040930,220,0 +170751040980,221,0 +170751041027,222,0 +170751041075,224,0 +170751041125,224,0 +170751041175,225,0 +170751041224,225,0 +170751041272,226,0 +170751041322,225,0 +170751041370,227,0 +170751041418,225,0 +170751041467,224,0 +170751041515,216,0 +170751041564,215,0 +170751041612,215,0 +170751041660,216,0 +170751041708,216,0 +170751041756,216,0 +170751041804,217,0 +170751041851,218,0 +170751041899,219,0 +170751041947,220,0 +170751041995,220,0 +170751042043,222,0 +170751042091,223,0 +170751042139,221,0 +170751042188,222,0 +170751042236,223,0 +170751042286,224,0 +170751042334,224,0 +170751042383,224,0 +170751042433,217,0 +170751042482,215,0 +170751042530,215,0 +170751042578,216,0 +170751042627,216,0 +170751042675,216,0 +170751042723,216,0 +170751042771,217,0 +170751042820,217,0 +170751042868,218,0 +170751042918,219,0 +170751042966,220,0 +170751043013,220,0 +170751043063,222,0 +170751043111,223,0 +170751043159,222,0 +170751043207,223,0 +170751043254,223,0 +170751043302,224,0 +170751043350,218,0 +170751043398,215,0 +170751043446,215,0 +170751043496,215,0 +170751043545,216,0 +170751043593,216,0 +170751043643,216,0 +170751043691,217,0 +170751043740,217,0 +170751043788,218,0 +170751043838,220,0 +170751043886,220,0 +170751043934,221,0 +170751043982,222,0 +170751044030,223,0 +170751044079,226,0 +170751044129,224,0 +170751044177,225,0 +170751044225,225,0 +170751044274,220,0 +170751044324,215,0 +170751044372,215,0 +170751044421,216,0 +170751044469,216,0 +170751044517,216,0 +170751044565,216,0 +170751044613,217,0 +170751044661,217,0 +170751044709,218,0 +170751044757,218,0 +170751044806,219,0 +170751044856,220,0 +170751044905,222,0 +170751044953,220,0 +170751045001,221,0 +170751045051,224,0 +170751045099,224,0 +170751045147,230,0 +170751045195,225,0 +170751045243,216,0 +170751045292,216,0 +170751045342,217,0 +170751045389,218,0 +170751045437,218,0 +170751045485,220,0 +170751045535,219,0 +170751045584,221,0 +170751045632,220,0 +170751045680,222,0 +170751045730,222,0 +170751045778,223,0 +170751045826,224,0 +170751045875,225,0 +170751045925,225,0 +170751045973,225,0 +170751046021,225,0 +170751046070,225,0 +170751046120,224,0 +170751046168,216,0 +170751046217,216,0 +170751046265,217,0 +170751046313,218,0 +170751046361,218,0 +170751046411,219,0 +170751046459,220,0 +170751046507,221,0 +170751046555,221,0 +170751046604,222,0 +170751046654,223,0 +170751046702,223,0 +170751046750,224,0 +170751046798,224,0 +170751046847,225,0 +170751046897,225,0 +170751046945,227,0 +170751046994,224,0 +170751047042,224,0 +170751047090,216,0 +170751047140,217,0 +170751047188,217,0 +170751047237,218,0 +170751047285,219,0 +170751047333,220,0 +170751047382,220,0 +170751047430,222,0 +170751047478,222,0 +170751047528,222,0 +170751047577,224,0 +170751047627,223,0 +170751047675,225,0 +170751047723,225,0 +170751047772,224,0 +170751047822,225,0 +170751047870,225,0 +170751047919,224,0 +170751047967,225,0 +170751048017,216,0 +170751048065,215,0 +170751048113,216,0 +170751048161,216,0 +170751048210,217,0 +170751048260,218,0 +170751048309,219,0 +170751048359,219,0 +170751048407,220,0 +170751048456,221,0 +170751048504,221,0 +170751048552,222,0 +170751048600,222,0 +170751048648,223,0 +170751048696,224,0 +170751048744,224,0 +170751048792,225,0 +170751048840,226,0 +170751048888,224,0 +170751048937,216,0 +170751048985,215,0 +170751049035,215,0 +170751049083,216,0 +170751049132,217,0 +170751049180,218,0 +170751049228,218,0 +170751049276,219,0 +170751049324,219,0 +170751049372,221,0 +170751049420,221,0 +170751049468,222,0 +170751049518,224,0 +170751049566,224,0 +170751049614,224,0 +170751049662,225,0 +170751049710,223,0 +170751049759,225,0 +170751049808,224,0 +170751049856,216,0 +170751049904,216,0 +170751049954,217,0 +170751050002,218,0 +170751050051,219,0 +170751050099,219,0 +170751050147,220,0 +170751050197,221,0 +170751050245,222,0 +170751050294,222,0 +170751050342,223,0 +170751050390,224,0 +170751050440,223,0 +170751050489,225,0 +170751050537,225,0 +170751050585,225,0 +170751050635,225,0 +170751050683,225,0 +170751050731,225,0 +170751050779,217,0 +170751050827,217,0 +170751050876,218,0 +170751050924,218,0 +170751050972,219,0 +170751051020,220,0 +170751051068,221,0 +170751051118,222,0 +170751051167,222,0 +170751051215,223,0 +170751051263,223,0 +170751051313,223,0 +170751051361,224,0 +170751051409,225,0 +170751051457,226,0 +170751051506,225,0 +170751051554,225,0 +170751051604,225,0 +170751051652,224,0 +170751051701,217,0 +170751051749,217,0 +170751051799,218,0 +170751051847,219,0 +170751051896,219,0 +170751051944,220,0 +170751051992,221,0 +170751052040,221,0 +170751052090,222,0 +170751052138,224,0 +170751052187,224,0 +170751052236,225,0 +170751052284,225,0 +170751052334,224,0 +170751052384,224,0 +170751052431,224,0 +170751052479,225,0 +170751052529,225,0 +170751052577,224,0 +170751052626,217,0 +170751052674,215,0 +170751052724,215,0 +170751052772,216,0 +170751052821,217,0 +170751052871,219,0 +170751052920,219,0 +170751052968,219,0 +170751053018,220,0 +170751053067,222,0 +170751053115,222,0 +170751053165,223,0 +170751053214,223,0 +170751053264,223,0 +170751053312,223,0 +170751053360,226,0 +170751053408,225,0 +170751053456,225,0 +170751053504,224,0 +170751053552,217,0 +170751053601,215,0 +170751053649,216,0 +170751053697,215,0 +170751053745,216,0 +170751053795,217,0 +170751053843,217,0 +170751053890,217,0 +170751053940,219,0 +170751053988,220,0 +170751054036,221,0 +170751054084,222,0 +170751054133,222,0 +170751054181,223,0 +170751054231,223,0 +170751054281,223,0 +170751054328,223,0 +170751054378,224,0 +170751054428,224,0 +170751054475,216,0 +170751054523,215,0 +170751054571,215,0 +170751054621,216,0 +170751054669,216,0 +170751054717,216,0 +170751054765,217,0 +170751054814,218,0 +170751054862,218,0 +170751054910,219,0 +170751054960,220,0 +170751055008,220,0 +170751055057,222,0 +170751055105,222,0 +170751055153,221,0 +170751055201,222,0 +170751055250,224,0 +170751055300,224,0 +170751055348,224,0 +170751055396,217,0 +170751055444,216,0 +170751055492,217,0 +170751055541,216,0 +170751055589,216,0 +170751055637,217,0 +170751055685,219,0 +170751055734,219,0 +170751055782,220,0 +170751055830,220,0 +170751055880,221,0 +170751055928,221,0 +170751055976,223,0 +170751056024,223,0 +170751056073,224,0 +170751056121,223,0 +170751056171,224,0 +170751056220,224,0 +170751056268,225,0 +170751056316,217,0 +170751056366,215,0 +170751056413,215,0 +170751056461,216,0 +170751056511,216,0 +170751056559,216,0 +170751056607,217,0 +170751056656,218,0 +170751056704,218,0 +170751056752,219,0 +170751056800,220,0 +170751056850,221,0 +170751056898,222,0 +170751056947,223,0 +170751056997,222,0 +170751057046,223,0 +170751057096,224,0 +170751057145,224,0 +170751057193,224,0 +170751057241,217,0 +170751057291,215,0 +170751057339,216,0 +170751057387,215,0 +170751057434,215,0 +170751057482,216,0 +170751057530,216,0 +170751057578,216,0 +170751057626,217,0 +170751057674,218,0 +170751057722,219,0 +170751057770,221,0 +170751057820,221,0 +170751057868,223,0 +170751057916,223,0 +170751057964,224,0 +170751058012,224,0 +170751058061,223,0 +170751058110,224,0 +170751058160,217,0 +170751058208,215,0 +170751058257,216,0 +170751058307,216,0 +170751058355,216,0 +170751058404,216,0 +170751058452,216,0 +170751058500,217,0 +170751058548,217,0 +170751058596,218,0 +170751058646,219,0 +170751058694,220,0 +170751058742,221,0 +170751058790,222,0 +170751058839,222,0 +170751058887,222,0 +170751058935,222,0 +170751058983,224,0 +170751059031,224,0 +170751059078,222,0 +170751059126,216,0 +170751059174,216,0 +170751059222,216,0 +170751059270,217,0 +170751059318,217,0 +170751059366,218,0 +170751059414,218,0 +170751059462,219,0 +170751059509,220,0 +170751059557,221,0 +170751059605,221,0 +170751059653,221,0 +170751059701,222,0 +170751059749,223,0 +170751059797,223,0 +170751059847,224,0 +170751059896,225,0 +170751059946,225,0 +170751059994,224,0 +170751060042,216,0 +170751060091,216,0 +170751060141,217,0 +170751060189,216,0 +170751060238,218,0 +170751060286,219,0 +170751060334,219,0 +170751060384,219,0 +170751060432,220,0 +170751060479,222,0 +170751060527,222,0 +170751060575,225,0 +170751060623,223,0 +170751060671,225,0 +170751060719,226,0 +170751060767,225,0 +170751060816,225,0 +170751060866,225,0 +170751060915,224,0 +170751060965,216,0 +170751061014,217,0 +170751061064,218,0 +170751061112,218,0 +170751061161,218,0 +170751061209,219,0 +170751061259,221,0 +170751061308,221,0 +170751061356,221,0 +170751061404,222,0 +170751061454,223,0 +170751061502,223,0 +170751061549,225,0 +170751061597,225,0 +170751061647,225,0 +170751061696,226,0 +170751061744,225,0 +170751061792,225,0 +170751061840,224,0 +170751061890,218,0 +170751061938,218,0 +170751061986,219,0 +170751062035,220,0 +170751062085,221,0 +170751062134,221,0 +170751062184,224,0 +170751062233,223,0 +170751062283,223,0 +170751062331,224,0 +170751062379,224,0 +170751062428,226,0 +170751062476,228,0 +170751062524,228,0 +170751062572,226,0 +170751062620,226,0 +170751062668,226,0 +170751062717,226,0 +170751062765,225,0 +170751062813,217,0 +170751062861,217,0 +170751062909,217,0 +170751062957,218,0 +170751063005,219,0 +170751063053,220,0 +170751063101,221,0 +170751063149,222,0 +170751063198,222,0 +170751063246,225,0 +170751063294,225,0 +170751063342,224,0 +170751063390,225,0 +170751063440,224,0 +170751063489,225,0 +170751063537,226,0 +170751063587,226,0 +170751063636,225,0 +170751063686,225,0 +170751063735,216,0 +170751063783,216,0 +170751063831,216,0 +170751063879,216,0 +170751063927,216,0 +170751063975,217,0 +170751064025,217,0 +170751064073,218,0 +170751064121,219,0 +170751064170,219,0 +170751064218,220,0 +170751064268,221,0 +170751064317,222,0 +170751064367,222,0 +170751064416,223,0 +170751064464,224,0 +170751064512,224,0 +170751064560,224,0 +170751064608,224,0 +170751064658,216,0 +170751064707,215,0 +170751064755,216,0 +170751064805,217,0 +170751064854,217,0 +170751064902,218,0 +170751064950,219,0 +170751064998,219,0 +170751065046,220,0 +170751065094,221,0 +170751065142,222,0 +170751065190,222,0 +170751065239,223,0 +170751065289,223,0 +170751065338,224,0 +170751065388,224,0 +170751065437,224,0 +170751065487,225,0 +170751065535,225,0 +170751065583,216,0 +170751065631,216,0 +170751065680,216,0 +170751065728,217,0 +170751065776,218,0 +170751065824,219,0 +170751065872,219,0 +170751065920,220,0 +170751065968,221,0 +170751066016,221,0 +170751066064,223,0 +170751066114,223,0 +170751066163,223,0 +170751066211,225,0 +170751066261,225,0 +170751066309,225,0 +170751066358,225,0 +170751066406,227,0 +170751066456,224,0 +170751066504,217,0 +170751066552,216,0 +170751066600,216,0 +170751066648,216,0 +170751066697,217,0 +170751066747,217,0 +170751066796,218,0 +170751066844,219,0 +170751066894,219,0 +170751066942,225,0 +170751066990,220,0 +170751067038,221,0 +170751067086,221,0 +170751067134,222,0 +170751067181,222,0 +170751067229,223,0 +170751067279,223,0 +170751067328,223,0 +170751067376,225,0 +170751067427,217,0 +170751067476,216,0 +170751067524,216,0 +170751067572,216,0 +170751067622,216,0 +170751067670,216,0 +170751067719,217,0 +170751067767,215,0 +170751067815,217,0 +170751067863,218,0 +170751067911,220,0 +170751067960,220,0 +170751068010,222,0 +170751068058,222,0 +170751068106,222,0 +170751068154,225,0 +170751068203,219,0 +170751068251,222,0 +170751068299,225,0 +170751068349,217,0 +170751068397,216,0 +170751068445,216,0 +170751068492,216,0 +170751068540,217,0 +170751068588,217,0 +170751068638,217,0 +170751068686,218,0 +170751068735,219,0 +170751068783,219,0 +170751068833,220,0 +170751068882,221,0 +170751068930,224,0 +170751068978,222,0 +170751069028,224,0 +170751069076,224,0 +170751069125,225,0 +170751069173,225,0 +170751069221,224,0 +170751069269,218,0 +170751069317,216,0 +170751069367,216,0 +170751069415,216,0 +170751069464,217,0 +170751069512,218,0 +170751069560,219,0 +170751069608,220,0 +170751069656,220,0 +170751069704,221,0 +170751069752,221,0 +170751069800,222,0 +170751069849,222,0 +170751069899,222,0 +170751069947,223,0 +170751069996,223,0 +170751070044,225,0 +170751070094,224,0 +170751070142,226,0 +170751070190,218,0 +170751070238,215,0 +170751070286,216,0 +170751070335,216,0 +170751070385,216,0 +170751070434,216,0 +170751070482,217,0 +170751070532,219,0 +170751070580,219,0 +170751070629,220,0 +170751070677,222,0 +170751070725,224,0 +170751070773,223,0 +170751070823,223,0 +170751070871,223,0 +170751070920,224,0 +170751070968,224,0 +170751071016,225,0 +170751071066,224,0 +170751071113,217,0 +170751071161,216,0 +170751071211,216,0 +170751071260,216,0 +170751071308,216,0 +170751071356,217,0 +170751071406,218,0 +170751071455,219,0 +170751071503,219,0 +170751071553,221,0 +170751071602,222,0 +170751071650,223,0 +170751071698,223,0 +170751071748,225,0 +170751071796,225,0 +170751071843,225,0 +170751071893,226,0 +170751071941,225,0 +170751071989,224,0 +170751072038,217,0 +170751072088,216,0 +170751072136,216,0 +170751072185,216,0 +170751072233,216,0 +170751072281,217,0 +170751072331,218,0 +170751072379,219,0 +170751072428,219,0 +170751072476,220,0 +170751072524,222,0 +170751072574,222,0 +170751072623,223,0 +170751072671,223,0 +170751072719,223,0 +170751072767,224,0 +170751072815,225,0 +170751072863,225,0 +170751072911,225,0 +170751072959,219,0 +170751073007,215,0 +170751073056,216,0 +170751073104,216,0 +170751073152,217,0 +170751073200,217,0 +170751073250,219,0 +170751073298,219,0 +170751073346,220,0 +170751073394,221,0 +170751073442,223,0 +170751073490,224,0 +170751073538,223,0 +170751073586,225,0 +170751073634,224,0 +170751073683,224,0 +170751073731,224,0 +170751073779,224,0 +170751073827,225,0 +170751073876,221,0 +170751073924,216,0 +170751073972,216,0 +170751074022,216,0 +170751074070,217,0 +170751074118,218,0 +170751074166,219,0 +170751074214,219,0 +170751074262,219,0 +170751074311,220,0 +170751074361,221,0 +170751074410,221,0 +170751074458,222,0 +170751074506,224,0 +170751074554,225,0 +170751074602,224,0 +170751074652,224,0 +170751074701,225,0 +170751074749,225,0 +170751074799,219,0 +170751074847,216,0 +170751074896,216,0 +170751074944,217,0 +170751074994,218,0 +170751075042,219,0 +170751075091,219,0 +170751075141,220,0 +170751075189,221,0 +170751075237,220,0 +170751075286,221,0 +170751075334,221,0 +170751075384,222,0 +170751075433,223,0 +170751075483,224,0 +170751075531,224,0 +170751075580,225,0 +170751075630,224,0 +170751075678,225,0 +170751075725,223,0 +170751075775,218,0 +170751075823,218,0 +170751075871,220,0 +170751075919,220,0 +170751075968,221,0 +170751076016,220,0 +170751076064,222,0 +170751076114,223,0 +170751076163,223,0 +170751076211,223,0 +170751076259,223,0 +170751076307,224,0 +170751076355,225,0 +170751076403,225,0 +170751076452,226,0 +170751076500,226,0 +170751076548,225,0 +170751076596,224,0 +170751076644,224,0 +170751076692,218,0 +170751076740,218,0 +170751076788,219,0 +170751076836,220,0 +170751076883,220,0 +170751076931,222,0 +170751076979,222,0 +170751077027,222,0 +170751077075,223,0 +170751077123,224,0 +170751077172,224,0 +170751077220,224,0 +170751077268,225,0 +170751077316,226,0 +170751077364,225,0 +170751077413,225,0 +170751077461,225,0 +170751077509,224,0 +170751077557,224,0 +170751077606,216,0 +170751077654,217,0 +170751077702,218,0 +170751077750,218,0 +170751077799,219,0 +170751077847,219,0 +170751077895,220,0 +170751077943,221,0 +170751077991,221,0 +170751078039,224,0 +170751078088,224,0 +170751078136,224,0 +170751078184,223,0 +170751078232,225,0 +170751078280,225,0 +170751078328,225,0 +170751078376,225,0 +170751078425,226,0 +170751078473,225,0 +170751078521,216,0 +170751078569,216,0 +170751078617,217,0 +170751078665,218,0 +170751078714,218,0 +170751078762,220,0 +170751078810,219,0 +170751078858,221,0 +170751078906,221,0 +170751078954,221,0 +170751079002,221,0 +170751079051,223,0 +170751079101,224,0 +170751079149,224,0 +170751079197,225,0 +170751079246,226,0 +170751079294,226,0 +170751079344,226,0 +170751079392,224,0 +170751079440,217,0 +170751079489,216,0 +170751079539,215,0 +170751079588,215,0 +170751079636,217,0 +170751079684,218,0 +170751079734,218,0 +170751079781,219,0 +170751079831,220,0 +170751079881,220,0 +170751079930,221,0 +170751079980,222,0 +170751080028,223,0 +170751080075,224,0 +170751080125,224,0 +170751080174,224,0 +170751080222,225,0 +170751080272,224,0 +170751080320,224,0 +170751080369,216,0 +170751080417,215,0 +170751080465,216,0 +170751080513,216,0 +170751080562,217,0 +170751080612,217,0 +170751080660,218,0 +170751080707,218,0 +170751080755,219,0 +170751080803,220,0 +170751080851,221,0 +170751080900,222,0 +170751080950,223,0 +170751080998,225,0 +170751081046,223,0 +170751081096,225,0 +170751081144,225,0 +170751081193,225,0 +170751081241,224,0 +170751081289,217,0 +170751081338,216,0 +170751081386,216,0 +170751081434,216,0 +170751081482,216,0 +170751081530,217,0 +170751081578,217,0 +170751081626,219,0 +170751081674,219,0 +170751081724,219,0 +170751081773,220,0 +170751081823,221,0 +170751081872,222,0 +170751081922,223,0 +170751081971,224,0 +170751082019,225,0 +170751082067,224,0 +170751082117,224,0 +170751082165,224,0 +170751082213,217,0 +170751082261,215,0 +170751082309,216,0 +170751082356,216,0 +170751082404,216,0 +170751082454,217,0 +170751082502,219,0 +170751082550,218,0 +170751082597,218,0 +170751082645,219,0 +170751082693,220,0 +170751082741,220,0 +170751082789,222,0 +170751082837,222,0 +170751082885,222,0 +170751082933,223,0 +170751082980,224,0 +170751083028,224,0 +170751083076,224,0 +170751083126,218,0 +170751083174,216,0 +170751083223,217,0 +170751083273,218,0 +170751083321,219,0 +170751083370,219,0 +170751083420,220,0 +170751083469,221,0 +170751083517,222,0 +170751083567,223,0 +170751083615,225,0 +170751083662,224,0 +170751083710,225,0 +170751083758,224,0 +170751083806,225,0 +170751083854,226,0 +170751083903,225,0 +170751083951,225,0 +170751083999,224,0 +170751084049,217,0 +170751084097,216,0 +170751084145,217,0 +170751084193,218,0 +170751084240,218,0 +170751084288,219,0 +170751084338,219,0 +170751084386,219,0 +170751084434,221,0 +170751084481,221,0 +170751084529,222,0 +170751084579,222,0 +170751084627,223,0 +170751084675,225,0 +170751084722,226,0 +170751084770,226,0 +170751084818,227,0 +170751084866,225,0 +170751084915,224,0 +170751084963,222,0 +170751085012,216,0 +170751085061,216,0 +170751085109,217,0 +170751085157,217,0 +170751085205,217,0 +170751085253,218,0 +170751085301,218,0 +170751085349,219,0 +170751085397,219,0 +170751085445,221,0 +170751085494,220,0 +170751085542,223,0 +170751085590,223,0 +170751085638,223,0 +170751085686,226,0 +170751085734,224,0 +170751085783,225,0 +170751085831,226,0 +170751085879,223,0 +170751085927,216,0 +170751085975,215,0 +170751086023,216,0 +170751086070,216,0 +170751086118,218,0 +170751086166,218,0 +170751086214,218,0 +170751086264,219,0 +170751086312,221,0 +170751086361,221,0 +170751086409,222,0 +170751086459,222,0 +170751086507,224,0 +170751086555,224,0 +170751086603,225,0 +170751086652,225,0 +170751086700,225,0 +170751086748,226,0 +170751086798,225,0 +170751086846,217,0 +170751086895,216,0 +170751086945,216,0 +170751086993,216,0 +170751087042,217,0 +170751087092,217,0 +170751087141,218,0 +170751087189,219,0 +170751087237,219,0 +170751087285,219,0 +170751087335,220,0 +170751087384,222,0 +170751087432,222,0 +170751087480,223,0 +170751087528,224,0 +170751087578,225,0 +170751087627,223,0 +170751087675,224,0 +170751087723,225,0 +170751087773,216,0 +170751087821,215,0 +170751087869,215,0 +170751087917,215,0 +170751087966,215,0 +170751088014,215,0 +170751088062,215,0 +170751088111,215,0 +170751088161,216,0 +170751088209,216,0 +170751088258,216,0 +170751088306,216,0 +170751088356,217,0 +170751088404,217,0 +170751088453,217,0 +170751088501,219,0 +170751088549,219,0 +170751088597,219,0 +170751088647,220,0 +170751088695,221,0 +170751088743,222,0 +170751088792,222,0 +170751088840,223,0 +170751088890,224,0 +170751088938,224,0 +170751088987,225,0 +170751089035,225,0 +170751089085,225,0 +170751089133,222,0 +170751089181,216,0 +170751089229,215,0 +170751089277,216,0 +170751089324,217,0 +170751089372,218,0 +170751089420,218,0 +170751089470,219,0 +170751089519,219,0 +170751089567,220,0 +170751089615,221,0 +170751089663,222,0 +170751089711,222,0 +170751089759,223,0 +170751089806,224,0 +170751089854,224,0 +170751089902,224,0 +170751089952,225,0 +170751090001,224,0 +170751090051,224,0 +170751090100,216,0 +170751090148,216,0 +170751090196,217,0 +170751090244,218,0 +170751090292,218,0 +170751090340,219,0 +170751090387,219,0 +170751090437,219,0 +170751090485,221,0 +170751090533,222,0 +170751090581,222,0 +170751090628,225,0 +170751090676,223,0 +170751090726,225,0 +170751090774,224,0 +170751090823,224,0 +170751090873,225,0 +170751090921,225,0 +170751090969,224,0 +170751091017,217,0 +170751091066,216,0 +170751091116,217,0 +170751091164,218,0 +170751091211,218,0 +170751091261,219,0 +170751091309,219,0 +170751091358,221,0 +170751091406,222,0 +170751091456,223,0 +170751091506,223,0 +170751091554,223,0 +170751091602,224,0 +170751091650,225,0 +170751091699,224,0 +170751091747,224,0 +170751091797,224,0 +170751091844,225,0 +170751091892,224,0 +170751091940,216,0 +170751091988,216,0 +170751092036,216,0 +170751092086,218,0 +170751092134,218,0 +170751092183,220,0 +170751092233,220,0 +170751092281,221,0 +170751092330,221,0 +170751092378,222,0 +170751092428,223,0 +170751092476,223,0 +170751092525,224,0 +170751092575,225,0 +170751092623,225,0 +170751092671,225,0 +170751092719,225,0 +170751092768,225,0 +170751092816,224,0 +170751092864,218,0 +170751092912,216,0 +170751092960,217,0 +170751093008,218,0 +170751093056,219,0 +170751093104,220,0 +170751093153,220,0 +170751093201,222,0 +170751093249,222,0 +170751093299,222,0 +170751093346,224,0 +170751093394,224,0 +170751093442,224,0 +170751093490,224,0 +170751093538,225,0 +170751093587,224,0 +170751093635,225,0 +170751093683,225,0 +170751093733,225,0 +170751093781,217,0 +170751093830,216,0 +170751093878,217,0 +170751093926,218,0 +170751093974,219,0 +170751094022,219,0 +170751094070,219,0 +170751094117,221,0 +170751094165,221,0 +170751094213,222,0 +170751094261,222,0 +170751094309,223,0 +170751094357,224,0 +170751094407,224,0 +170751094455,224,0 +170751094503,224,0 +170751094551,225,0 +170751094600,225,0 +170751094648,225,0 +170751094697,222,0 +170751094745,215,0 +170751094793,216,0 +170751094843,216,0 +170751094892,216,0 +170751094942,217,0 +170751094990,218,0 +170751095038,219,0 +170751095086,220,0 +170751095135,221,0 +170751095185,221,0 +170751095234,222,0 +170751095284,218,0 +170751095332,216,0 +170751095381,218,0 +170751095431,224,0 +170751095480,224,0 +170751095528,225,0 +170751095576,224,0 +170751095626,218,0 +170751095674,215,0 +170751095722,215,0 +170751095771,216,0 +170751095819,216,0 +170751095869,217,0 +170751095917,217,0 +170751095965,218,0 +170751096013,219,0 +170751096062,219,0 +170751096110,220,0 +170751096158,220,0 +170751096207,221,0 +170751096255,222,0 +170751096305,223,0 +170751096354,223,0 +170751096404,223,0 +170751096452,223,0 +170751096500,224,0 +170751096549,223,0 +170751096597,216,0 +170751096645,216,0 +170751096695,217,0 +170751096744,218,0 +170751096794,219,0 +170751096842,219,0 +170751096890,220,0 +170751096938,220,0 +170751096986,221,0 +170751097033,222,0 +170751097081,222,0 +170751097129,223,0 +170751097177,224,0 +170751097225,223,0 +170751097273,224,0 +170751097321,224,0 +170751097369,224,0 +170751097418,224,0 +170751097466,224,0 +170751097514,216,0 +170751097561,215,0 +170751097609,215,0 +170751097657,216,0 +170751097705,217,0 +170751097753,218,0 +170751097801,219,0 +170751097849,219,0 +170751097897,219,0 +170751097945,220,0 +170751097992,221,0 +170751098040,222,0 +170751098090,223,0 +170751098139,223,0 +170751098189,224,0 +170751098237,224,0 +170751098285,224,0 +170751098332,224,0 +170751098380,224,0 +170751098428,217,0 +170751098478,216,0 +170751098526,215,0 +170751098574,216,0 +170751098621,216,0 +170751098669,216,0 +170751098717,216,0 +170751098765,216,0 +170751098813,218,0 +170751098861,219,0 +170751098909,219,0 +170751098958,221,0 +170751099008,221,0 +170751099056,221,0 +170751099104,222,0 +170751099152,223,0 +170751099201,224,0 +170751099249,224,0 +170751099299,225,0 +170751099347,217,0 +170751099395,215,0 +170751099444,215,0 +170751099494,215,0 +170751099542,216,0 +170751099591,216,0 +170751099639,216,0 +170751099687,216,0 +170751099735,216,0 +170751099783,216,0 +170751099831,217,0 +170751099881,219,0 +170751099930,220,0 +170751099978,220,0 +170751100028,221,0 +170751100077,222,0 +170751100127,223,0 +170751100176,223,0 +170751100226,224,0 +170751100275,217,0 +170751100325,215,0 +170751100373,215,0 +170751100421,215,0 +170751100470,216,0 +170751100520,216,0 +170751100569,217,0 +170751100619,216,0 +170751100667,217,0 +170751100714,217,0 +170751100762,218,0 +170751100810,220,0 +170751100858,220,0 +170751100908,220,0 +170751100956,221,0 +170751101003,222,0 +170751101051,222,0 +170751101099,223,0 +170751101147,224,0 +170751101197,217,0 +170751101244,216,0 +170751101292,215,0 +170751101342,216,0 +170751101390,215,0 +170751101438,216,0 +170751101487,217,0 +170751101535,217,0 +170751101583,218,0 +170751101631,219,0 +170751101679,220,0 +170751101729,222,0 +170751101776,220,0 +170751101824,221,0 +170751101874,222,0 +170751101924,223,0 +170751101972,223,0 +170751102020,224,0 +170751102069,225,0 +170751102117,224,0 +170751102165,216,0 +170751102214,216,0 +170751102262,217,0 +170751102310,217,0 +170751102358,218,0 +170751102406,219,0 +170751102454,219,0 +170751102502,219,0 +170751102549,220,0 +170751102597,222,0 +170751102645,223,0 +170751102693,223,0 +170751102741,224,0 +170751102789,224,0 +170751102837,224,0 +170751102885,224,0 +170751102932,225,0 +170751102980,225,0 +170751103028,225,0 +170751103076,217,0 +170751103124,216,0 +170751103172,217,0 +170751103220,217,0 +170751103268,218,0 +170751103315,218,0 +170751103363,220,0 +170751103411,219,0 +170751103459,220,0 +170751103507,221,0 +170751103556,221,0 +170751103604,222,0 +170751103652,222,0 +170751103700,223,0 +170751103748,225,0 +170751103796,224,0 +170751103844,224,0 +170751103891,225,0 +170751103939,225,0 +170751103989,218,0 +170751104038,217,0 +170751104086,218,0 +170751104134,219,0 +170751104182,219,0 +170751104230,223,0 +170751104278,221,0 +170751104327,221,0 +170751104375,222,0 +170751104423,222,0 +170751104471,223,0 +170751104519,225,0 +170751104568,225,0 +170751104616,224,0 +170751104664,226,0 +170751104713,225,0 +170751104763,225,0 +170751104812,224,0 +170751104860,225,0 +170751104908,217,0 +170751104958,218,0 +170751105007,218,0 +170751105055,219,0 +170751105104,220,0 +170751105152,221,0 +170751105200,221,0 +170751105248,222,0 +170751105296,223,0 +170751105344,224,0 +170751105392,224,0 +170751105440,225,0 +170751105487,226,0 +170751105537,225,0 +170751105585,225,0 +170751105633,226,0 +170751105681,225,0 +170751105729,225,0 +170751105777,225,0 +170751105824,223,0 +170751105872,216,0 +170751105920,216,0 +170751105968,217,0 +170751106016,218,0 +170751106064,218,0 +170751106112,219,0 +170751106160,220,0 +170751106208,218,0 +170751106256,222,0 +170751106305,222,0 +170751106353,223,0 +170751106403,225,0 +170751106451,222,0 +170751106499,224,0 +170751106547,225,0 +170751106595,225,0 +170751106644,225,0 +170751106692,225,0 +170751106740,224,0 +170751106790,217,0 +170751106839,216,0 +170751106887,216,0 +170751106935,217,0 +170751106983,218,0 +170751107031,219,0 +170751107081,219,0 +170751107129,220,0 +170751107177,221,0 +170751107226,221,0 +170751107274,223,0 +170751107322,224,0 +170751107370,224,0 +170751107418,225,0 +170751107467,225,0 +170751107515,226,0 +170751107565,225,0 +170751107613,225,0 +170751107661,225,0 +170751107708,217,0 +170751107756,216,0 +170751107804,216,0 +170751107852,218,0 +170751107900,218,0 +170751107948,219,0 +170751107996,220,0 +170751108044,220,0 +170751108092,221,0 +170751108141,221,0 +170751108189,221,0 +170751108237,223,0 +170751108285,223,0 +170751108332,225,0 +170751108380,226,0 +170751108428,225,0 +170751108476,225,0 +170751108524,225,0 +170751108572,225,0 +170751108621,220,0 +170751108669,216,0 +170751108717,217,0 +170751108765,218,0 +170751108813,219,0 +170751108863,219,0 +170751108912,219,0 +170751108962,220,0 +170751109010,221,0 +170751109060,221,0 +170751109109,222,0 +170751109157,226,0 +170751109205,224,0 +170751109255,224,0 +170751109303,225,0 +170751109352,224,0 +170751109400,225,0 +170751109449,225,0 +170751109499,224,0 +170751109547,222,0 +170751109595,216,0 +170751109644,216,0 +170751109694,216,0 +170751109742,218,0 +170751109790,218,0 +170751109838,220,0 +170751109887,220,0 +170751109937,220,0 +170751109985,221,0 +170751110033,222,0 +170751110081,223,0 +170751110129,223,0 +170751110177,226,0 +170751110225,224,0 +170751110273,225,0 +170751110323,224,0 +170751110372,225,0 +170751110420,225,0 +170751110470,223,0 +170751110519,216,0 +170751110569,216,0 +170751110618,216,0 +170751110666,217,0 +170751110716,218,0 +170751110764,218,0 +170751110812,220,0 +170751110861,220,0 +170751110909,221,0 +170751110957,222,0 +170751111005,222,0 +170751111053,224,0 +170751111101,224,0 +170751111149,225,0 +170751111198,224,0 +170751111246,225,0 +170751111294,226,0 +170751111344,226,0 +170751111392,224,0 +170751111440,216,0 +170751111488,216,0 +170751111535,216,0 +170751111585,217,0 +170751111633,217,0 +170751111681,219,0 +170751111730,219,0 +170751111778,219,0 +170751111826,221,0 +170751111874,221,0 +170751111923,223,0 +170751111971,224,0 +170751112021,224,0 +170751112068,224,0 +170751112116,225,0 +170751112164,225,0 +170751112214,224,0 +170751112262,225,0 +170751112310,224,0 +170751112359,216,0 +170751112409,215,0 +170751112457,216,0 +170751112506,216,0 +170751112554,216,0 +170751112604,217,0 +170751112653,217,0 +170751112703,218,0 +170751112751,218,0 +170751112800,218,0 +170751112848,219,0 +170751112898,220,0 +170751112947,221,0 +170751112997,222,0 +170751113045,223,0 +170751113093,223,0 +170751113140,223,0 +170751113190,223,0 +170751113238,224,0 +170751113287,217,0 +170751113335,215,0 +170751113385,216,0 +170751113434,216,0 +170751113484,216,0 +170751113532,216,0 +170751113580,216,0 +170751113628,218,0 +170751113676,218,0 +170751113725,219,0 +170751113773,219,0 +170751113823,220,0 +170751113872,221,0 +170751113922,221,0 +170751113970,222,0 +170751114018,222,0 +170751114065,223,0 +170751114113,224,0 +170751114161,224,0 +170751114209,216,0 +170751114257,216,0 +170751114305,216,0 +170751114352,216,0 +170751114402,217,0 +170751114450,218,0 +170751114498,219,0 +170751114547,219,0 +170751114595,219,0 +170751114643,220,0 +170751114691,221,0 +170751114741,222,0 +170751114790,222,0 +170751114838,224,0 +170751114887,224,0 +170751114935,223,0 +170751114985,225,0 +170751115033,224,0 +170751115081,224,0 +170751115129,217,0 +170751115178,216,0 +170751115226,217,0 +170751115276,218,0 +170751115324,219,0 +170751115373,219,0 +170751115421,220,0 +170751115469,221,0 +170751115519,222,0 +170751115567,223,0 +170751115615,223,0 +170751115663,224,0 +170751115712,224,0 +170751115760,223,0 +170751115810,224,0 +170751115859,224,0 +170751115907,224,0 +170751115955,224,0 +170751116003,224,0 +170751116051,217,0 +170751116099,215,0 +170751116148,215,0 +170751116198,216,0 +170751116247,217,0 +170751116295,219,0 +170751116343,219,0 +170751116391,220,0 +170751116439,220,0 +170751116489,221,0 +170751116537,222,0 +170751116586,222,0 +170751116634,223,0 +170751116682,224,0 +170751116732,223,0 +170751116780,224,0 +170751116829,224,0 +170751116879,225,0 +170751116927,225,0 +170751116976,217,0 +170751117026,216,0 +170751117074,216,0 +170751117123,217,0 +170751117171,218,0 +170751117221,218,0 +170751117269,219,0 +170751117317,220,0 +170751117365,220,0 +170751117414,222,0 +170751117462,222,0 +170751117510,223,0 +170751117558,223,0 +170751117606,224,0 +170751117655,223,0 +170751117705,224,0 +170751117753,224,0 +170751117803,224,0 +170751117852,225,0 +170751117900,217,0 +170751117949,215,0 +170751117997,216,0 +170751118045,216,0 +170751118095,217,0 +170751118143,218,0 +170751118191,219,0 +170751118240,219,0 +170751118288,221,0 +170751118336,220,0 +170751118384,221,0 +170751118432,222,0 +170751118480,223,0 +170751118529,224,0 +170751118577,225,0 +170751118625,224,0 +170751118675,224,0 +170751118724,224,0 +170751118772,224,0 +170751118822,221,0 +170751118870,215,0 +170751118917,215,0 +170751118967,216,0 +170751119016,216,0 +170751119066,217,0 +170751119114,217,0 +170751119162,218,0 +170751119210,218,0 +170751119259,219,0 +170751119309,220,0 +170751119358,221,0 +170751119406,221,0 +170751119454,222,0 +170751119503,223,0 +170751119551,222,0 +170751119599,223,0 +170751119647,223,0 +170751119697,223,0 +170751119745,223,0 +170751119794,215,0 +170751119842,215,0 +170751119892,216,0 +170751119941,217,0 +170751119989,217,0 +170751120037,217,0 +170751120085,219,0 +170751120135,219,0 +170751120183,220,0 +170751120232,221,0 +170751120282,223,0 +170751120330,223,0 +170751120379,224,0 +170751120427,224,0 +170751120477,224,0 +170751120526,224,0 +170751120574,225,0 +170751120622,224,0 +170751120670,224,0 +170751120720,216,0 +170751120768,215,0 +170751120816,216,0 +170751120864,216,0 +170751120913,216,0 +170751120961,215,0 +170751121009,217,0 +170751121057,219,0 +170751121106,219,0 +170751121156,220,0 +170751121204,221,0 +170751121252,222,0 +170751121301,222,0 +170751121351,225,0 +170751121400,224,0 +170751121448,224,0 +170751121498,224,0 +170751121546,224,0 +170751121595,221,0 +170751121645,215,0 +170751121694,216,0 +170751121742,216,0 +170751121792,216,0 +170751121840,216,0 +170751121888,217,0 +170751121936,218,0 +170751121985,218,0 +170751122033,220,0 +170751122083,220,0 +170751122131,222,0 +170751122179,222,0 +170751122227,224,0 +170751122275,223,0 +170751122323,224,0 +170751122372,223,0 +170751122420,224,0 +170751122468,224,0 +170751122516,222,0 +170751122564,216,0 +170751122612,216,0 +170751122660,216,0 +170751122709,216,0 +170751122757,217,0 +170751122805,217,0 +170751122853,218,0 +170751122901,219,0 +170751122949,219,0 +170751122997,219,0 +170751123045,220,0 +170751123095,221,0 +170751123143,221,0 +170751123192,222,0 +170751123240,223,0 +170751123288,223,0 +170751123337,225,0 +170751123385,225,0 +170751123433,224,0 +170751123483,216,0 +170751123531,216,0 +170751123580,217,0 +170751123630,218,0 +170751123678,219,0 +170751123726,219,0 +170751123774,220,0 +170751123822,222,0 +170751123871,221,0 +170751123919,222,0 +170751123967,224,0 +170751124017,225,0 +170751124066,224,0 +170751124114,224,0 +170751124162,225,0 +170751124212,224,0 +170751124261,225,0 +170751124309,225,0 +170751124359,224,0 +170751124408,216,0 +170751124456,216,0 +170751124504,217,0 +170751124552,218,0 +170751124600,219,0 +170751124648,219,0 +170751124696,219,0 +170751124744,221,0 +170751124793,221,0 +170751124841,222,0 +170751124891,223,0 +170751124939,224,0 +170751124987,224,0 +170751125036,225,0 +170751125086,224,0 +170751125135,225,0 +170751125185,225,0 +170751125233,226,0 +170751125282,225,0 +170751125332,216,0 +170751125381,217,0 +170751125429,218,0 +170751125479,219,0 +170751125528,219,0 +170751125578,220,0 +170751125626,220,0 +170751125676,221,0 +170751125725,221,0 +170751125773,222,0 +170751125821,224,0 +170751125869,223,0 +170751125918,224,0 +170751125966,224,0 +170751126014,223,0 +170751126064,225,0 +170751126113,225,0 +170751126161,225,0 +170751126209,224,0 +170751126257,218,0 +170751126307,217,0 +170751126355,218,0 +170751126403,218,0 +170751126451,219,0 +170751126499,220,0 +170751126547,220,0 +170751126595,221,0 +170751126644,222,0 +170751126692,222,0 +170751126742,224,0 +170751126789,225,0 +170751126839,224,0 +170751126889,225,0 +170751126938,225,0 +170751126988,225,0 +170751127037,225,0 +170751127087,224,0 +170751127135,224,0 +170751127184,216,0 +170751127232,215,0 +170751127280,217,0 +170751127328,217,0 +170751127376,218,0 +170751127424,219,0 +170751127473,219,0 +170751127523,220,0 +170751127571,221,0 +170751127620,221,0 +170751127668,222,0 +170751127716,223,0 +170751127764,224,0 +170751127812,223,0 +170751127861,223,0 +170751127909,224,0 +170751127957,226,0 +170751128005,226,0 +170751128053,224,0 +170751128102,217,0 +170751128151,216,0 +170751128199,216,0 +170751128247,217,0 +170751128295,217,0 +170751128343,218,0 +170751128393,218,0 +170751128441,219,0 +170751128489,220,0 +170751128538,221,0 +170751128586,222,0 +170751128636,224,0 +170751128685,225,0 +170751128733,224,0 +170751128781,223,0 +170751128829,225,0 +170751128879,225,0 +170751128926,226,0 +170751128976,225,0 +170751129024,217,0 +170751129073,216,0 +170751129123,217,0 +170751129171,218,0 +170751129219,218,0 +170751129267,220,0 +170751129315,220,0 +170751129363,220,0 +170751129411,222,0 +170751129459,224,0 +170751129508,223,0 +170751129556,224,0 +170751129604,224,0 +170751129652,225,0 +170751129700,226,0 +170751129748,225,0 +170751129797,226,0 +170751129845,224,0 +170751129894,224,0 +170751129942,217,0 +170751129992,216,0 +170751130040,216,0 +170751130088,216,0 +170751130137,218,0 +170751130187,218,0 +170751130234,219,0 +170751130282,219,0 +170751130332,220,0 +170751130380,221,0 +170751130428,223,0 +170751130476,223,0 +170751130523,224,0 +170751130573,225,0 +170751130623,224,0 +170751130671,225,0 +170751130718,224,0 +170751130766,225,0 +170751130814,224,0 +170751130862,217,0 +170751130910,216,0 +170751130958,215,0 +170751131006,216,0 +170751131055,216,0 +170751131103,217,0 +170751131151,218,0 +170751131201,219,0 +170751131249,219,0 +170751131297,222,0 +170751131344,222,0 +170751131392,222,0 +170751131440,223,0 +170751131488,224,0 +170751131538,224,0 +170751131587,224,0 +170751131637,225,0 +170751131685,225,0 +170751131734,225,0 +170751131782,222,0 +170751131832,216,0 +170751131882,216,0 +170751131929,216,0 +170751131979,217,0 +170751132027,218,0 +170751132077,218,0 +170751132125,218,0 +170751132174,219,0 +170751132222,220,0 +170751132270,221,0 +170751132318,221,0 +170751132366,222,0 +170751132414,222,0 +170751132463,223,0 +170751132511,224,0 +170751132559,224,0 +170751132607,224,0 +170751132655,225,0 +170751132703,224,0 +170751132751,216,0 +170751132799,216,0 +170751132847,216,0 +170751132895,217,0 +170751132943,217,0 +170751132991,218,0 +170751133039,218,0 +170751133088,220,0 +170751133136,219,0 +170751133184,221,0 +170751133234,222,0 +170751133282,225,0 +170751133329,223,0 +170751133377,225,0 +170751133425,225,0 +170751133473,226,0 +170751133521,225,0 +170751133571,225,0 +170751133619,224,0 +170751133666,216,0 +170751133716,215,0 +170751133765,216,0 +170751133813,217,0 +170751133861,217,0 +170751133909,218,0 +170751133957,219,0 +170751134006,219,0 +170751134054,220,0 +170751134102,221,0 +170751134150,221,0 +170751134200,223,0 +170751134249,223,0 +170751134297,224,0 +170751134347,223,0 +170751134395,224,0 +170751134443,225,0 +170751134491,225,0 +170751134539,224,0 +170751134588,216,0 +170751134638,215,0 +170751134686,216,0 +170751134734,217,0 +170751134782,217,0 +170751134829,217,0 +170751134877,219,0 +170751134925,219,0 +170751134973,220,0 +170751135021,220,0 +170751135069,221,0 +170751135117,223,0 +170751135165,223,0 +170751135213,223,0 +170751135261,223,0 +170751135311,225,0 +170751135359,224,0 +170751135407,224,0 +170751135456,224,0 +170751135504,217,0 +170751135552,216,0 +170751135602,217,0 +170751135650,217,0 +170751135697,219,0 +170751135747,220,0 +170751135795,220,0 +170751135843,221,0 +170751135891,221,0 +170751135940,221,0 +170751135988,223,0 +170751136036,224,0 +170751136084,224,0 +170751136132,225,0 +170751136180,225,0 +170751136228,225,0 +170751136278,225,0 +170751136325,225,0 +170751136373,225,0 +170751136421,217,0 +170751136469,216,0 +170751136517,218,0 +170751136565,218,0 +170751136613,219,0 +170751136661,219,0 +170751136711,220,0 +170751136760,221,0 +170751136808,222,0 +170751136856,223,0 +170751136904,223,0 +170751136952,224,0 +170751137002,224,0 +170751137051,225,0 +170751137101,225,0 +170751137149,223,0 +170751137197,226,0 +170751137245,225,0 +170751137294,224,0 +170751137344,217,0 +170751137393,216,0 +170751137443,217,0 +170751137491,217,0 +170751137539,219,0 +170751137587,219,0 +170751137635,220,0 +170751137684,221,0 +170751137734,221,0 +170751137782,221,0 +170751137831,224,0 +170751137879,223,0 +170751137927,224,0 +170751137975,225,0 +170751138023,223,0 +170751138071,225,0 +170751138119,225,0 +170751138167,224,0 +170751138216,225,0 +170751138266,221,0 +170751138316,216,0 +170751138364,215,0 +170751138411,216,0 +170751138461,217,0 +170751138511,218,0 +170751138559,219,0 +170751138608,220,0 +170751138658,220,0 +170751138707,221,0 +170751138755,222,0 +170751138804,222,0 +170751138852,223,0 +170751138902,224,0 +170751138950,225,0 +170751138998,224,0 +170751139046,224,0 +170751139094,224,0 +170751139142,224,0 +170751139190,219,0 +170751139238,216,0 +170751139287,216,0 +170751139337,216,0 +170751139385,217,0 +170751139433,217,0 +170751139481,218,0 +170751139529,219,0 +170751139577,219,0 +170751139626,220,0 +170751139674,220,0 +170751139722,222,0 +170751139772,222,0 +170751139821,223,0 +170751139869,223,0 +170751139917,223,0 +170751139967,223,0 +170751140015,224,0 +170751140063,225,0 +170751140111,218,0 +170751140160,215,0 +170751140208,216,0 +170751140256,216,0 +170751140304,216,0 +170751140352,217,0 +170751140400,218,0 +170751140448,219,0 +170751140495,219,0 +170751140545,220,0 +170751140593,221,0 +170751140641,224,0 +170751140689,223,0 +170751140736,224,0 +170751140784,224,0 +170751140832,225,0 +170751140880,225,0 +170751140928,226,0 +170751140976,225,0 +170751141024,223,0 +170751141072,216,0 +170751141120,215,0 +170751141169,216,0 +170751141219,218,0 +170751141267,216,0 +170751141315,217,0 +170751141363,218,0 +170751141411,218,0 +170751141460,220,0 +170751141508,220,0 +170751141558,221,0 +170751141606,223,0 +170751141655,223,0 +170751141703,223,0 +170751141751,224,0 +170751141799,224,0 +170751141847,222,0 +170751141895,224,0 +170751141945,224,0 +170751141994,216,0 +170751142044,215,0 +170751142093,216,0 +170751142141,215,0 +170751142191,216,0 +170751142238,217,0 +170751142286,217,0 +170751142334,217,0 +170751142382,219,0 +170751142430,219,0 +170751142478,220,0 +170751142526,221,0 +170751142575,222,0 +170751142623,222,0 +170751142671,222,0 +170751142719,224,0 +170751142767,223,0 +170751142816,224,0 +170751142866,223,0 +170751142915,217,0 +170751142963,215,0 +170751143013,215,0 +170751143062,216,0 +170751143110,216,0 +170751143158,216,0 +170751143208,217,0 +170751143256,217,0 +170751143305,218,0 +170751143353,219,0 +170751143401,220,0 +170751143451,222,0 +170751143500,222,0 +170751143548,222,0 +170751143596,223,0 +170751143644,224,0 +170751143694,224,0 +170751143743,225,0 +170751143791,225,0 +170751143841,216,0 +170751143890,215,0 +170751143940,215,0 +170751143989,215,0 +170751144037,216,0 +170751144086,216,0 +170751144134,217,0 +170751144184,217,0 +170751144232,218,0 +170751144281,219,0 +170751144331,220,0 +170751144379,221,0 +170751144428,221,0 +170751144478,222,0 +170751144526,223,0 +170751144574,223,0 +170751144624,223,0 +170751144671,224,0 +170751144719,224,0 +170751144769,217,0 +170751144818,216,0 +170751144866,216,0 +170751144914,216,0 +170751144962,216,0 +170751145010,216,0 +170751145060,217,0 +170751145108,218,0 +170751145156,219,0 +170751145204,220,0 +170751145252,222,0 +170751145300,222,0 +170751145348,222,0 +170751145395,223,0 +170751145443,223,0 +170751145491,224,0 +170751145539,224,0 +170751145587,225,0 +170751145636,224,0 +170751145684,217,0 +170751145734,215,0 +170751145783,215,0 +170751145833,216,0 +170751145882,216,0 +170751145932,216,0 +170751145980,217,0 +170751146029,218,0 +170751146077,219,0 +170751146125,220,0 +170751146173,221,0 +170751146221,221,0 +170751146269,222,0 +170751146317,223,0 +170751146367,224,0 +170751146415,224,0 +170751146464,224,0 +170751146512,223,0 +170751146560,224,0 +170751146608,217,0 +170751146657,215,0 +170751146705,216,0 +170751146755,216,0 +170751146803,216,0 +170751146851,216,0 +170751146899,217,0 +170751146947,218,0 +170751146995,218,0 +170751147044,219,0 +170751147092,219,0 +170751147140,220,0 +170751147188,220,0 +170751147238,221,0 +170751147287,221,0 +170751147335,222,0 +170751147383,224,0 +170751147433,224,0 +170751147481,224,0 +170751147528,217,0 +170751147576,216,0 +170751147624,217,0 +170751147674,218,0 +170751147722,219,0 +170751147770,219,0 +170751147819,220,0 +170751147867,221,0 +170751147915,222,0 +170751147963,223,0 +170751148011,224,0 +170751148059,225,0 +170751148107,224,0 +170751148155,225,0 +170751148203,224,0 +170751148252,226,0 +170751148300,225,0 +170751148348,225,0 +170751148396,224,0 +170751148444,219,0 +170751148492,216,0 +170751148541,217,0 +170751148589,218,0 +170751148638,218,0 +170751148686,219,0 +170751148734,220,0 +170751148784,221,0 +170751148832,221,0 +170751148881,221,0 +170751148929,222,0 +170751148977,224,0 +170751149027,224,0 +170751149076,224,0 +170751149124,224,0 +170751149172,225,0 +170751149220,225,0 +170751149268,222,0 +170751149316,225,0 +170751149364,224,0 +170751149414,217,0 +170751149462,217,0 +170751149511,218,0 +170751149561,218,0 +170751149610,219,0 +170751149658,218,0 +170751149708,219,0 +170751149756,220,0 +170751149803,222,0 +170751149853,222,0 +170751149903,223,0 +170751149952,223,0 +170751150002,224,0 +170751150050,225,0 +170751150099,226,0 +170751150147,225,0 +170751150197,225,0 +170751150246,224,0 +170751150294,223,0 +170751150344,216,0 +170751150392,217,0 +170751150440,218,0 +170751150487,219,0 +170751150537,219,0 +170751150586,220,0 +170751150634,220,0 +170751150682,221,0 +170751150730,221,0 +170751150778,223,0 +170751150826,223,0 +170751150874,223,0 +170751150922,224,0 +170751150970,224,0 +170751151018,226,0 +170751151068,225,0 +170751151117,225,0 +170751151167,225,0 +170751151216,223,0 +170751151264,217,0 +170751151314,217,0 +170751151361,218,0 +170751151411,220,0 +170751151459,220,0 +170751151508,222,0 +170751151556,221,0 +170751151604,222,0 +170751151654,224,0 +170751151702,224,0 +170751151750,225,0 +170751151798,226,0 +170751151847,225,0 +170751151897,226,0 +170751151945,226,0 +170751151994,226,0 +170751152044,226,0 +170751152092,225,0 +170751152142,224,0 +170751152190,217,0 +170751152239,217,0 +170751152289,218,0 +170751152337,219,0 +170751152385,219,0 +170751152434,220,0 +170751152482,221,0 +170751152530,221,0 +170751152578,222,0 +170751152627,221,0 +170751152675,223,0 +170751152725,224,0 +170751152774,225,0 +170751152824,225,0 +170751152872,226,0 +170751152920,225,0 +170751152969,225,0 +170751153017,225,0 +170751153067,224,0 +170751153116,216,0 +170751153166,216,0 +170751153215,216,0 +170751153265,217,0 +170751153314,218,0 +170751153362,219,0 +170751153410,219,0 +170751153458,219,0 +170751153506,220,0 +170751153554,221,0 +170751153604,222,0 +170751153653,223,0 +170751153701,223,0 +170751153749,224,0 +170751153797,224,0 +170751153845,224,0 +170751153895,224,0 +170751153943,224,0 +170751153991,225,0 +170751154040,216,0 +170751154088,216,0 +170751154136,216,0 +170751154186,217,0 +170751154234,218,0 +170751154282,218,0 +170751154330,219,0 +170751154379,219,0 +170751154427,220,0 +170751154477,221,0 +170751154526,222,0 +170751154574,224,0 +170751154623,225,0 +170751154671,223,0 +170751154721,225,0 +170751154770,226,0 +170751154818,225,0 +170751154866,225,0 +170751154914,224,0 +170751154964,216,0 +170751155013,216,0 +170751155063,217,0 +170751155111,218,0 +170751155160,218,0 +170751155208,218,0 +170751155256,219,0 +170751155304,220,0 +170751155354,220,0 +170751155402,221,0 +170751155450,222,0 +170751155498,222,0 +170751155546,223,0 +170751155594,224,0 +170751155642,223,0 +170751155691,223,0 +170751155739,224,0 +170751155787,225,0 +170751155835,225,0 +170751155883,217,0 +170751155931,217,0 +170751155980,218,0 +170751156028,218,0 +170751156076,220,0 +170751156126,219,0 +170751156175,221,0 +170751156223,220,0 +170751156271,221,0 +170751156319,223,0 +170751156367,223,0 +170751156415,223,0 +170751156463,224,0 +170751156513,225,0 +170751156562,223,0 +170751156610,225,0 +170751156658,225,0 +170751156706,225,0 +170751156754,225,0 +170751156804,218,0 +170751156851,217,0 +170751156899,218,0 +170751156947,218,0 +170751156995,219,0 +170751157043,220,0 +170751157091,220,0 +170751157139,221,0 +170751157187,222,0 +170751157237,223,0 +170751157285,224,0 +170751157332,224,0 +170751157381,225,0 +170751157430,225,0 +170751157478,224,0 +170751157528,225,0 +170751157577,227,0 +170751157625,225,0 +170751157673,225,0 +170751157721,218,0 +170751157770,217,0 +170751157818,218,0 +170751157868,218,0 +170751157917,219,0 +170751157965,220,0 +170751158013,220,0 +170751158061,221,0 +170751158109,221,0 +170751158159,222,0 +170751158207,223,0 +170751158255,223,0 +170751158304,224,0 +170751158354,223,0 +170751158403,225,0 +170751158453,225,0 +170751158502,226,0 +170751158550,225,0 +170751158600,224,0 +170751158649,218,0 +170751158697,217,0 +170751158745,218,0 +170751158795,219,0 +170751158843,219,0 +170751158892,221,0 +170751158940,221,0 +170751158988,221,0 +170751159037,222,0 +170751159085,224,0 +170751159133,224,0 +170751159181,224,0 +170751159229,224,0 +170751159277,224,0 +170751159325,224,0 +170751159373,225,0 +170751159421,225,0 +170751159469,225,0 +170751159517,224,0 +170751159565,217,0 +170751159613,216,0 +170751159661,216,0 +170751159709,218,0 +170751159756,219,0 +170751159804,219,0 +170751159852,219,0 +170751159900,219,0 +170751159948,220,0 +170751159996,221,0 +170751160044,221,0 +170751160094,222,0 +170751160142,223,0 +170751160191,224,0 +170751160239,224,0 +170751160289,223,0 +170751160337,224,0 +170751160386,223,0 +170751160436,224,0 +170751160484,220,0 +170751160533,215,0 +170751160583,215,0 +170751160632,216,0 +170751160682,216,0 +170751160731,217,0 +170751160779,218,0 +170751160827,218,0 +170751160875,219,0 +170751160923,219,0 +170751160972,221,0 +170751161020,221,0 +170751161068,222,0 +170751161117,223,0 +170751161165,223,0 +170751161215,224,0 +170751161262,224,0 +170751161310,224,0 +170751161358,224,0 +170751161406,223,0 +170751161454,215,0 +170751161502,216,0 +170751161550,216,0 +170751161597,216,0 +170751161645,217,0 +170751161693,218,0 +170751161741,217,0 +170751161789,220,0 +170751161837,220,0 +170751161885,220,0 +170751161935,223,0 +170751161983,223,0 +170751162032,223,0 +170751162082,223,0 +170751162131,224,0 +170751162179,224,0 +170751162227,224,0 +170751162277,225,0 +170751162326,223,0 +170751162374,216,0 +170751162422,216,0 +170751162470,216,0 +170751162520,216,0 +170751162568,216,0 +170751162617,217,0 +170751162665,217,0 +170751162713,218,0 +170751162761,219,0 +170751162810,220,0 +170751162860,221,0 +170751162908,223,0 +170751162958,222,0 +170751163007,222,0 +170751163055,223,0 +170751163103,223,0 +170751163153,224,0 +170751163202,224,0 +170751163250,224,0 +170751163300,215,0 +170751163349,215,0 +170751163397,216,0 +170751163445,216,0 +170751163495,217,0 +170751163543,217,0 +170751163591,218,0 +170751163639,218,0 +170751163686,219,0 +170751163736,220,0 +170751163785,220,0 +170751163835,221,0 +170751163883,222,0 +170751163931,223,0 +170751163979,223,0 +170751164028,223,0 +170751164078,223,0 +170751164126,224,0 +170751164174,224,0 +170751164223,216,0 +170751164273,215,0 +170751164322,216,0 +170751164372,216,0 +170751164421,217,0 +170751164469,218,0 +170751164517,218,0 +170751164565,218,0 +170751164613,219,0 +170751164663,219,0 +170751164711,220,0 +170751164759,221,0 +170751164808,222,0 +170751164856,222,0 +170751164904,223,0 +170751164952,223,0 +170751165000,224,0 +170751165050,225,0 +170751165099,223,0 +170751165147,216,0 +170751165197,216,0 +170751165245,217,0 +170751165294,217,0 +170751165342,219,0 +170751165390,219,0 +170751165438,220,0 +170751165488,220,0 +170751165537,221,0 +170751165587,221,0 +170751165636,223,0 +170751165684,223,0 +170751165734,223,0 +170751165782,224,0 +170751165830,224,0 +170751165879,223,0 +170751165927,222,0 +170751165975,225,0 +170751166023,224,0 +170751166071,217,0 +170751166119,217,0 +170751166167,217,0 +170751166215,219,0 +170751166263,219,0 +170751166311,219,0 +170751166358,220,0 +170751166406,221,0 +170751166456,222,0 +170751166505,222,0 +170751166553,223,0 +170751166603,224,0 +170751166651,224,0 +170751166699,225,0 +170751166747,224,0 +170751166794,225,0 +170751166842,224,0 +170751166890,224,0 +170751166940,224,0 +170751166988,216,0 +170751167037,216,0 +170751167085,217,0 +170751167133,218,0 +170751167181,218,0 +170751167229,219,0 +170751167276,220,0 +170751167324,221,0 +170751167372,221,0 +170751167420,222,0 +170751167470,223,0 +170751167518,224,0 +170751167566,224,0 +170751167613,225,0 +170751167661,226,0 +170751167709,224,0 +170751167757,224,0 +170751167807,224,0 +170751167856,224,0 +170751167906,217,0 +170751167954,216,0 +170751168003,217,0 +170751168051,217,0 +170751168099,218,0 +170751168149,219,0 +170751168198,219,0 +170751168246,220,0 +170751168296,221,0 +170751168345,221,0 +170751168395,222,0 +170751168443,223,0 +170751168492,224,0 +170751168540,224,0 +170751168588,225,0 +170751168636,224,0 +170751168684,225,0 +170751168732,225,0 +170751168782,224,0 +170751168831,217,0 +170751168881,216,0 +170751168929,217,0 +170751168977,219,0 +170751169025,219,0 +170751169073,219,0 +170751169121,220,0 +170751169169,221,0 +170751169217,223,0 +170751169266,222,0 +170751169316,223,0 +170751169364,224,0 +170751169412,225,0 +170751169460,226,0 +170751169508,226,0 +170751169556,224,0 +170751169604,225,0 +170751169653,225,0 +170751169701,224,0 +170751169751,217,0 +170751169799,216,0 +170751169848,217,0 +170751169896,218,0 +170751169944,219,0 +170751169993,219,0 +170751170043,220,0 +170751170091,221,0 +170751170139,222,0 +170751170188,222,0 +170751170236,223,0 +170751170284,224,0 +170751170334,224,0 +170751170384,225,0 +170751170432,226,0 +170751170481,225,0 +170751170531,223,0 +170751170579,225,0 +170751170627,224,0 +170751170675,217,0 +170751170722,216,0 +170751170770,216,0 +170751170820,216,0 +170751170868,217,0 +170751170916,217,0 +170751170965,218,0 +170751171015,219,0 +170751171064,219,0 +170751171114,220,0 +170751171164,221,0 +170751171213,223,0 +170751171263,223,0 +170751171311,224,0 +170751171358,225,0 +170751171406,225,0 +170751171456,225,0 +170751171506,225,0 +170751171553,223,0 +170751171603,217,0 +170751171652,215,0 +170751171700,216,0 +170751171748,216,0 +170751171796,217,0 +170751171844,218,0 +170751171892,218,0 +170751171940,218,0 +170751171988,218,0 +170751172036,220,0 +170751172085,221,0 +170751172133,220,0 +170751172181,222,0 +170751172231,222,0 +170751172279,222,0 +170751172327,223,0 +170751172376,223,0 +170751172426,223,0 +170751172474,224,0 +170751172522,217,0 +170751172570,216,0 +170751172618,215,0 +170751172666,216,0 +170751172714,217,0 +170751172762,217,0 +170751172809,218,0 +170751172859,219,0 +170751172909,220,0 +170751172957,221,0 +170751173005,220,0 +170751173053,222,0 +170751173102,223,0 +170751173152,223,0 +170751173201,224,0 +170751173249,224,0 +170751173299,224,0 +170751173348,225,0 +170751173396,224,0 +170751173446,217,0 +170751173494,215,0 +170751173543,215,0 +170751173591,216,0 +170751173641,217,0 +170751173690,218,0 +170751173740,218,0 +170751173788,218,0 +170751173836,219,0 +170751173884,220,0 +170751173932,220,0 +170751173980,221,0 +170751174027,222,0 +170751174075,222,0 +170751174125,223,0 +170751174174,224,0 +170751174222,223,0 +170751174270,224,0 +170751174318,225,0 +170751174368,217,0 +170751174417,215,0 +170751174467,215,0 +170751174515,216,0 +170751174564,215,0 +170751174612,216,0 +170751174662,217,0 +170751174710,217,0 +170751174758,218,0 +170751174807,219,0 +170751174855,220,0 +170751174905,221,0 +170751174953,221,0 +170751175001,222,0 +170751175050,223,0 +170751175100,224,0 +170751175148,224,0 +170751175197,224,0 +170751175247,224,0 +170751175296,217,0 +170751175344,215,0 +170751175394,215,0 +170751175443,216,0 +170751175491,216,0 +170751175539,216,0 +170751175589,217,0 +170751175638,218,0 +170751175688,218,0 +170751175737,220,0 +170751175785,219,0 +170751175835,221,0 +170751175883,221,0 +170751175932,222,0 +170751175982,223,0 +170751176030,223,0 +170751176079,224,0 +170751176127,224,0 +170751176175,224,0 +170751176225,217,0 +170751176273,215,0 +170751176321,216,0 +170751176369,215,0 +170751176418,216,0 +170751176466,216,0 +170751176516,217,0 +170751176564,217,0 +170751176613,218,0 +170751176663,219,0 +170751176711,220,0 +170751176758,221,0 +170751176806,222,0 +170751176854,222,0 +170751176904,223,0 +170751176953,223,0 +170751177001,224,0 +170751177051,224,0 +170751177099,225,0 +170751177148,217,0 +170751177198,215,0 +170751177246,216,0 +170751177294,216,0 +170751177342,217,0 +170751177390,217,0 +170751177438,218,0 +170751177487,219,0 +170751177535,219,0 +170751177585,219,0 +170751177634,220,0 +170751177682,221,0 +170751177732,222,0 +170751177780,222,0 +170751177829,222,0 +170751177879,224,0 +170751177927,222,0 +170751177975,223,0 +170751178023,225,0 +170751178070,217,0 +170751178120,215,0 +170751178168,216,0 +170751178217,216,0 +170751178267,216,0 +170751178315,217,0 +170751178363,218,0 +170751178412,218,0 +170751178460,219,0 +170751178510,220,0 +170751178558,221,0 +170751178607,223,0 +170751178655,222,0 +170751178705,223,0 +170751178754,223,0 +170751178804,224,0 +170751178852,224,0 +170751178900,225,0 +170751178949,224,0 +170751178997,217,0 +170751179045,216,0 +170751179093,216,0 +170751179143,217,0 +170751179190,218,0 +170751179240,219,0 +170751179288,219,0 +170751179336,220,0 +170751179384,221,0 +170751179431,221,0 +170751179479,221,0 +170751179527,223,0 +170751179577,223,0 +170751179625,224,0 +170751179673,224,0 +170751179722,225,0 +170751179770,224,0 +170751179818,223,0 +170751179866,223,0 +170751179914,217,0 +170751179962,217,0 +170751180010,217,0 +170751180058,219,0 +170751180105,219,0 +170751180155,220,0 +170751180203,221,0 +170751180252,221,0 +170751180300,222,0 +170751180348,223,0 +170751180396,223,0 +170751180444,224,0 +170751180492,226,0 +170751180540,225,0 +170751180588,224,0 +170751180636,223,0 +170751180684,225,0 +170751180732,223,0 +170751180779,224,0 +170751180827,218,0 +170751180875,217,0 +170751180925,218,0 +170751180973,219,0 +170751181021,219,0 +170751181069,220,0 +170751181117,220,0 +170751181166,220,0 +170751181216,222,0 +170751181265,221,0 +170751181313,223,0 +170751181361,223,0 +170751181409,224,0 +170751181457,224,0 +170751181505,225,0 +170751181553,225,0 +170751181603,224,0 +170751181651,224,0 +170751181698,224,0 +170751181748,223,0 +170751181796,216,0 +170751181845,217,0 +170751181895,217,0 +170751181943,218,0 +170751181991,218,0 +170751182040,219,0 +170751182088,219,0 +170751182136,220,0 +170751182184,220,0 +170751182232,221,0 +170751182280,222,0 +170751182328,222,0 +170751182376,223,0 +170751182424,224,0 +170751182472,224,0 +170751182520,224,0 +170751182569,224,0 +170751182617,225,0 +170751182665,224,0 +170751182713,217,0 +170751182762,216,0 +170751182810,217,0 +170751182858,218,0 +170751182908,218,0 +170751182956,220,0 +170751183004,220,0 +170751183052,220,0 +170751183101,221,0 +170751183149,222,0 +170751183198,222,0 +170751183248,223,0 +170751183296,225,0 +170751183344,223,0 +170751183392,224,0 +170751183441,224,0 +170751183491,224,0 +170751183539,224,0 +170751183588,224,0 +170751183638,217,0 +170751183687,217,0 +170751183735,218,0 +170751183785,218,0 +170751183833,219,0 +170751183881,220,0 +170751183930,221,0 +170751183980,221,0 +170751184029,222,0 +170751184079,222,0 +170751184127,222,0 +170751184175,223,0 +170751184224,224,0 +170751184274,224,0 +170751184322,224,0 +170751184371,224,0 +170751184421,224,0 +170751184470,225,0 +170751184518,223,0 +170751184566,216,0 +170751184616,216,0 +170751184665,217,0 +170751184715,218,0 +170751184763,219,0 +170751184811,219,0 +170751184860,220,0 +170751184910,221,0 +170751184959,222,0 +170751185007,222,0 +170751185057,222,0 +170751185106,224,0 +170751185156,225,0 +170751185204,224,0 +170751185252,224,0 +170751185300,225,0 +170751185349,224,0 +170751185399,224,0 +170751185447,223,0 +170751185496,216,0 +170751185544,216,0 +170751185592,216,0 +170751185640,217,0 +170751185688,218,0 +170751185736,218,0 +170751185784,219,0 +170751185832,219,0 +170751185880,220,0 +170751185929,221,0 +170751185977,222,0 +170751186025,223,0 +170751186073,225,0 +170751186123,224,0 +170751186172,225,0 +170751186222,223,0 +170751186270,224,0 +170751186318,224,0 +170751186367,224,0 +170751186417,216,0 +170751186465,215,0 +170751186513,215,0 +170751186562,215,0 +170751186610,216,0 +170751186658,216,0 +170751186708,216,0 +170751186756,216,0 +170751186805,218,0 +170751186853,219,0 +170751186903,220,0 +170751186951,221,0 +170751186999,222,0 +170751187048,222,0 +170751187098,223,0 +170751187147,223,0 +170751187197,223,0 +170751187246,224,0 +170751187296,223,0 +170751187344,215,0 +170751187392,215,0 +170751187440,215,0 +170751187488,215,0 +170751187537,215,0 +170751187585,216,0 +170751187633,217,0 +170751187681,217,0 +170751187731,218,0 +170751187780,219,0 +170751187830,219,0 +170751187878,220,0 +170751187927,220,0 +170751187977,221,0 +170751188025,222,0 +170751188073,222,0 +170751188121,223,0 +170751188169,224,0 +170751188217,222,0 +170751188264,215,0 +170751188312,215,0 +170751188360,216,0 +170751188408,216,0 +170751188456,217,0 +170751188505,217,0 +170751188553,218,0 +170751188601,219,0 +170751188649,219,0 +170751188699,219,0 +170751188748,220,0 +170751188798,221,0 +170751188847,221,0 +170751188897,222,0 +170751188946,223,0 +170751188994,222,0 +170751189042,223,0 +170751189092,224,0 +170751189140,224,0 +170751189188,216,0 +170751189237,215,0 +170751189285,216,0 +170751189333,217,0 +170751189381,217,0 +170751189429,218,0 +170751189477,218,0 +170751189525,219,0 +170751189573,220,0 +170751189621,220,0 +170751189669,222,0 +170751189717,222,0 +170751189765,223,0 +170751189814,224,0 +170751189862,224,0 +170751189912,224,0 +170751189960,225,0 +170751190008,225,0 +170751190056,224,0 +170751190105,217,0 +170751190153,216,0 +170751190203,217,0 +170751190252,217,0 +170751190300,218,0 +170751190348,219,0 +170751190398,219,0 +170751190446,220,0 +170751190494,220,0 +170751190543,222,0 +170751190591,222,0 +170751190639,223,0 +170751190687,224,0 +170751190737,224,0 +170751190785,225,0 +170751190833,224,0 +170751190882,225,0 +170751190930,225,0 +170751190980,224,0 +170751191029,216,0 +170751191079,216,0 +170751191126,217,0 +170751191174,218,0 +170751191224,219,0 +170751191272,220,0 +170751191322,220,0 +170751191371,221,0 +170751191419,222,0 +170751191467,223,0 +170751191515,224,0 +170751191563,224,0 +170751191612,226,0 +170751191660,225,0 +170751191708,225,0 +170751191756,225,0 +170751191804,225,0 +170751191852,226,0 +170751191900,224,0 +170751191950,217,0 +170751191998,215,0 +170751192046,216,0 +170751192095,216,0 +170751192145,217,0 +170751192193,218,0 +170751192242,218,0 +170751192290,219,0 +170751192340,219,0 +170751192388,220,0 +170751192437,220,0 +170751192485,221,0 +170751192535,221,0 +170751192583,223,0 +170751192631,223,0 +170751192679,224,0 +170751192728,224,0 +170751192776,225,0 +170751192824,224,0 +170751192872,217,0 +170751192922,215,0 +170751192971,216,0 +170751193019,216,0 +170751193069,216,0 +170751193117,216,0 +170751193165,216,0 +170751193214,217,0 +170751193264,217,0 +170751193312,218,0 +170751193359,219,0 +170751193409,220,0 +170751193457,221,0 +170751193505,222,0 +170751193554,222,0 +170751193602,222,0 +170751193652,222,0 +170751193700,222,0 +170751193748,223,0 +170751193797,217,0 +170751193847,215,0 +170751193895,216,0 +170751193943,217,0 +170751193991,217,0 +170751194038,218,0 +170751194086,219,0 +170751194134,219,0 +170751194184,221,0 +170751194232,221,0 +170751194280,222,0 +170751194328,222,0 +170751194376,223,0 +170751194424,224,0 +170751194473,224,0 +170751194523,224,0 +170751194572,225,0 +170751194622,224,0 +170751194671,224,0 +170751194719,216,0 +170751194769,216,0 +170751194818,216,0 +170751194866,217,0 +170751194916,217,0 +170751194964,218,0 +170751195013,218,0 +170751195061,219,0 +170751195111,220,0 +170751195160,221,0 +170751195208,223,0 +170751195257,223,0 +170751195305,223,0 +170751195353,224,0 +170751195401,225,0 +170751195451,224,0 +170751195499,224,0 +170751195547,225,0 +170751195595,224,0 +170751195643,217,0 +170751195692,215,0 +170751195742,216,0 +170751195791,217,0 +170751195839,217,0 +170751195889,218,0 +170751195938,219,0 +170751195986,220,0 +170751196034,220,0 +170751196084,221,0 +170751196132,223,0 +170751196180,224,0 +170751196228,223,0 +170751196276,224,0 +170751196324,223,0 +170751196373,226,0 +170751196421,224,0 +170751196469,224,0 +170751196518,224,0 +170751196567,217,0 +170751196615,216,0 +170751196663,216,0 +170751196713,216,0 +170751196762,217,0 +170751196812,217,0 +170751196860,218,0 +170751196909,219,0 +170751196959,219,0 +170751197007,220,0 +170751197056,221,0 +170751197104,223,0 +170751197154,222,0 +170751197203,224,0 +170751197251,224,0 +170751197301,224,0 +170751197350,225,0 +170751197398,225,0 +170751197448,223,0 +170751197496,217,0 +170751197544,215,0 +170751197593,215,0 +170751197643,216,0 +170751197692,216,0 +170751197741,216,0 +170751197789,216,0 +170751197839,218,0 +170751197887,218,0 +170751197935,219,0 +170751197983,220,0 +170751198030,222,0 +170751198078,222,0 +170751198126,223,0 +170751198174,223,0 +170751198223,224,0 +170751198271,224,0 +170751198319,224,0 +170751198367,224,0 +170751198415,217,0 +170751198463,215,0 +170751198511,215,0 +170751198559,215,0 +170751198608,216,0 +170751198656,215,0 +170751198704,216,0 +170751198752,216,0 +170751198800,216,0 +170751198849,217,0 +170751198899,218,0 +170751198947,219,0 +170751198996,220,0 +170751199044,221,0 +170751199093,221,0 +170751199143,222,0 +170751199191,223,0 +170751199239,223,0 +170751199286,223,0 +170751199334,217,0 +170751199382,215,0 +170751199430,215,0 +170751199478,215,0 +170751199526,215,0 +170751199574,216,0 +170751199622,216,0 +170751199670,216,0 +170751199719,216,0 +170751199769,217,0 +170751199816,217,0 +170751199864,218,0 +170751199912,219,0 +170751199960,220,0 +170751200010,220,0 +170751200057,221,0 +170751200105,221,0 +170751200155,222,0 +170751200203,224,0 +170751200251,218,0 +170751200300,216,0 +170751200348,217,0 +170751200397,218,0 +170751200445,218,0 +170751200493,219,0 +170751200541,220,0 +170751200590,220,0 +170751200638,221,0 +170751200686,222,0 +170751200734,222,0 +170751200782,223,0 +170751200830,224,0 +170751200878,224,0 +170751200926,224,0 +170751200974,225,0 +170751201021,225,0 +170751201071,224,0 +170751201119,224,0 +170751201167,219,0 +170751201214,218,0 +170751201262,218,0 +170751201310,220,0 +170751201360,221,0 +170751201407,221,0 +170751201457,221,0 +170751201505,223,0 +170751201553,223,0 +170751201601,223,0 +170751201648,224,0 +170751201698,224,0 +170751201747,226,0 +170751201795,225,0 +170751201845,224,0 +170751201893,225,0 +170751201940,224,0 +170751201988,223,0 +170751202036,225,0 +170751202084,223,0 +170751202133,216,0 +170751202181,216,0 +170751202229,217,0 +170751202277,218,0 +170751202327,219,0 +170751202376,219,0 +170751202424,221,0 +170751202472,221,0 +170751202520,221,0 +170751202568,223,0 +170751202616,223,0 +170751202665,224,0 +170751202713,224,0 +170751202762,225,0 +170751202810,224,0 +170751202860,226,0 +170751202907,224,0 +170751202955,225,0 +170751203003,223,0 +170751203051,217,0 +170751203101,216,0 +170751203149,216,0 +170751203196,215,0 +170751203244,216,0 +170751203294,216,0 +170751203343,216,0 +170751203391,216,0 +170751203439,218,0 +170751203487,218,0 +170751203535,220,0 +170751203583,220,0 +170751203630,221,0 +170751203678,221,0 +170751203726,223,0 +170751203774,222,0 +170751203824,223,0 +170751203872,225,0 +170751203921,225,0 +170751203970,217,0 +170751204019,215,0 +170751204068,216,0 +170751204116,216,0 +170751204164,216,0 +170751204212,216,0 +170751204260,216,0 +170751204309,217,0 +170751204357,218,0 +170751204405,219,0 +170751204455,219,0 +170751204503,220,0 +170751204551,221,0 +170751204599,221,0 +170751204648,222,0 +170751204696,223,0 +170751204745,223,0 +170751204793,224,0 +170751204841,224,0 +170751204889,217,0 +170751204937,215,0 +170751204985,215,0 +170751205032,216,0 +170751205080,216,0 +170751205128,217,0 +170751205176,218,0 +170751205224,218,0 +170751205272,219,0 +170751205322,220,0 +170751205369,220,0 +170751205417,221,0 +170751205465,220,0 +170751205513,223,0 +170751205561,223,0 +170751205609,224,0 +170751205657,224,0 +170751205705,224,0 +170751205753,225,0 +170751205802,218,0 +170751205852,216,0 +170751205900,216,0 +170751205947,216,0 +170751205997,217,0 +170751206045,217,0 +170751206093,218,0 +170751206141,218,0 +170751206190,218,0 +170751206240,219,0 +170751206288,220,0 +170751206336,221,0 +170751206384,221,0 +170751206433,222,0 +170751206481,223,0 +170751206529,222,0 +170751206577,223,0 +170751206625,224,0 +170751206673,224,0 +170751206720,220,0 +170751206768,216,0 +170751206816,217,0 +170751206864,217,0 +170751206912,218,0 +170751206960,218,0 +170751207008,219,0 +170751207057,220,0 +170751207105,220,0 +170751207153,221,0 +170751207201,222,0 +170751207250,223,0 +170751207300,223,0 +170751207348,223,0 +170751207397,224,0 +170751207447,224,0 +170751207495,224,0 +170751207543,224,0 +170751207591,224,0 +170751207639,222,0 +170751207688,216,0 +170751207736,216,0 +170751207784,217,0 +170751207832,218,0 +170751207882,218,0 +170751207931,219,0 +170751207979,219,0 +170751208027,219,0 +170751208075,221,0 +170751208124,222,0 +170751208174,221,0 +170751208222,223,0 +170751208271,224,0 +170751208319,224,0 +170751208367,224,0 +170751208415,225,0 +170751208463,224,0 +170751208513,224,0 +170751208561,224,0 +170751208609,216,0 +170751208658,217,0 +170751208708,217,0 +170751208756,218,0 +170751208804,218,0 +170751208852,218,0 +170751208901,220,0 +170751208949,220,0 +170751208997,220,0 +170751209045,221,0 +170751209093,221,0 +170751209141,222,0 +170751209189,222,0 +170751209237,223,0 +170751209284,226,0 +170751209334,224,0 +170751209382,224,0 +170751209430,224,0 +170751209479,224,0 +170751209529,218,0 +170751209577,218,0 +170751209625,219,0 +170751209673,220,0 +170751209721,220,0 +170751209770,221,0 +170751209818,221,0 +170751209866,221,0 +170751209914,222,0 +170751209962,222,0 +170751210012,223,0 +170751210061,224,0 +170751210111,224,0 +170751210160,225,0 +170751210208,224,0 +170751210256,225,0 +170751210304,224,0 +170751210352,225,0 +170751210400,225,0 +170751210448,218,0 +170751210496,218,0 +170751210544,219,0 +170751210593,220,0 +170751210643,221,0 +170751210692,221,0 +170751210740,221,0 +170751210788,222,0 +170751210836,223,0 +170751210884,224,0 +170751210933,225,0 +170751210981,224,0 +170751211029,226,0 +170751211079,226,0 +170751211127,226,0 +170751211175,225,0 +170751211223,225,0 +170751211271,225,0 +170751211320,224,0 +170751211368,219,0 +170751211416,220,0 +170751211464,219,0 +170751211512,221,0 +170751211560,222,0 +170751211609,222,0 +170751211659,223,0 +170751211707,224,0 +170751211755,224,0 +170751211803,224,0 +170751211851,224,0 +170751211899,225,0 +170751211947,224,0 +170751211995,226,0 +170751212044,225,0 +170751212092,226,0 +170751212142,225,0 +170751212190,225,0 +170751212239,224,0 +170751212287,218,0 +170751212335,217,0 +170751212385,218,0 +170751212433,219,0 +170751212480,221,0 +170751212528,221,0 +170751212576,221,0 +170751212624,221,0 +170751212672,223,0 +170751212720,224,0 +170751212768,222,0 +170751212816,224,0 +170751212864,226,0 +170751212911,225,0 +170751212959,226,0 +170751213007,225,0 +170751213055,226,0 +170751213103,225,0 +170751213151,224,0 +170751213199,217,0 +170751213247,216,0 +170751213295,217,0 +170751213343,218,0 +170751213392,219,0 +170751213440,218,0 +170751213488,219,0 +170751213536,220,0 +170751213584,220,0 +170751213632,221,0 +170751213680,222,0 +170751213729,222,0 +170751213777,223,0 +170751213827,224,0 +170751213875,224,0 +170751213924,226,0 +170751213974,225,0 +170751214022,224,0 +170751214070,224,0 +170751214118,217,0 +170751214165,216,0 +170751214213,216,0 +170751214261,217,0 +170751214309,217,0 +170751214357,218,0 +170751214405,219,0 +170751214453,219,0 +170751214501,219,0 +170751214549,220,0 +170751214597,221,0 +170751214644,221,0 +170751214694,228,0 +170751214742,223,0 +170751214790,223,0 +170751214838,224,0 +170751214886,224,0 +170751214935,225,0 +170751214983,224,0 +170751215031,223,0 +170751215081,215,0 +170751215129,216,0 +170751215178,217,0 +170751215226,217,0 +170751215276,217,0 +170751215325,217,0 +170751215373,219,0 +170751215423,220,0 +170751215471,221,0 +170751215520,221,0 +170751215570,222,0 +170751215619,223,0 +170751215669,223,0 +170751215718,223,0 +170751215766,224,0 +170751215814,224,0 +170751215862,225,0 +170751215910,225,0 +170751215960,224,0 +170751216008,216,0 +170751216056,215,0 +170751216105,216,0 +170751216155,218,0 +170751216203,218,0 +170751216251,219,0 +170751216298,219,0 +170751216346,220,0 +170751216396,221,0 +170751216444,222,0 +170751216492,223,0 +170751216540,223,0 +170751216588,223,0 +170751216636,224,0 +170751216685,224,0 +170751216733,224,0 +170751216781,224,0 +170751216829,224,0 +170751216877,223,0 +170751216925,216,0 +170751216972,215,0 +170751217022,216,0 +170751217070,216,0 +170751217119,216,0 +170751217167,217,0 +170751217215,218,0 +170751217263,219,0 +170751217311,222,0 +170751217359,220,0 +170751217407,222,0 +170751217455,221,0 +170751217503,222,0 +170751217551,223,0 +170751217599,224,0 +170751217647,224,0 +170751217696,225,0 +170751217746,224,0 +170751217794,224,0 +170751217844,215,0 +170751217892,215,0 +170751217939,215,0 +170751217987,215,0 +170751218035,216,0 +170751218083,216,0 +170751218133,216,0 +170751218181,217,0 +170751218229,217,0 +170751218277,218,0 +170751218325,219,0 +170751218372,220,0 +170751218422,221,0 +170751218470,222,0 +170751218519,222,0 +170751218567,222,0 +170751218617,222,0 +170751218665,224,0 +170751218713,224,0 +170751218761,216,0 +170751218810,215,0 +170751218860,216,0 +170751218908,216,0 +170751218957,216,0 +170751219005,217,0 +170751219053,217,0 +170751219101,218,0 +170751219149,219,0 +170751219197,219,0 +170751219247,221,0 +170751219296,221,0 +170751219344,222,0 +170751219392,223,0 +170751219440,223,0 +170751219488,225,0 +170751219538,224,0 +170751219586,224,0 +170751219634,224,0 +170751219682,216,0 +170751219731,216,0 +170751219779,216,0 +170751219829,216,0 +170751219877,216,0 +170751219926,216,0 +170751219974,217,0 +170751220022,217,0 +170751220072,218,0 +170751220119,218,0 +170751220167,219,0 +170751220215,220,0 +170751220263,221,0 +170751220313,222,0 +170751220361,223,0 +170751220410,223,0 +170751220458,224,0 +170751220508,224,0 +170751220557,225,0 +170751220607,216,0 +170751220656,216,0 +170751220706,216,0 +170751220755,216,0 +170751220803,216,0 +170751220851,216,0 +170751220901,217,0 +170751220950,218,0 +170751220998,219,0 +170751221046,220,0 +170751221096,217,0 +170751221144,221,0 +170751221192,221,0 +170751221240,222,0 +170751221289,223,0 +170751221337,224,0 +170751221385,223,0 +170751221433,224,0 +170751221481,228,0 +170751221529,217,0 +170751221577,216,0 +170751221625,216,0 +170751221675,217,0 +170751221724,218,0 +170751221772,219,0 +170751221820,219,0 +170751221868,220,0 +170751221918,220,0 +170751221967,221,0 +170751222017,222,0 +170751222066,222,0 +170751222114,222,0 +170751222162,222,0 +170751222212,222,0 +170751222260,221,0 +170751222308,221,0 +170751222357,221,0 +170751222407,221,0 +170751222456,221,0 +170751222504,222,0 +170751222552,222,0 +170751222602,222,0 +170751222651,221,0 +170751222699,222,0 +170751222747,222,0 +170751222797,221,0 +170751222844,221,0 +170751222892,222,0 +170751222940,222,0 +170751222988,222,0 +170751223036,222,0 +170751223084,221,0 +170751223132,222,0 +170751223180,221,0 +170751223227,222,0 +170751223275,222,0 +170751223323,221,0 +170751223371,222,0 +170751223421,221,0 +170751223469,222,0 +170751223516,221,0 +170751223566,221,0 +170751223616,221,0 +170751223664,221,0 +170751223713,221,0 +170751223761,221,0 +170751223809,221,0 +170751223859,221,0 +170751223906,222,0 +170751223954,222,0 +170751224002,222,0 +170751224050,221,0 +170751224098,221,0 +170751224148,222,0 +170751224196,221,0 +170751224245,222,0 +170751224293,221,0 +170751224343,222,0 +170751224391,221,0 +170751224438,222,0 +170751224486,222,0 +170751224536,221,0 +170751224584,221,0 +170751224633,221,0 +170751224681,221,0 +170751224729,221,0 +170751224777,222,0 +170751224825,222,0 +170751224873,221,0 +170751224921,221,0 +170751224969,221,0 +170751225018,221,0 +170751225068,221,0 +170751225116,222,0 +170751225163,221,0 +170751225213,221,0 +170751225263,221,0 +170751225312,222,0 +170751225360,222,0 +170751225408,222,0 +170751225456,222,0 +170751225505,222,0 +170751225555,222,0 +170751225603,221,0 +170751225651,222,0 +170751225699,221,0 +170751225746,221,0 +170751225794,221,0 +170751225842,221,0 +170751225890,221,0 +170751225940,221,0 +170751225988,222,0 +170751226037,222,0 +170751226087,222,0 +170751226136,222,0 +170751226186,221,0 +170751226235,222,0 +170751226283,222,0 +170751226331,221,0 +170751226379,222,0 +170751226427,222,0 +170751226475,221,0 +170751226525,222,0 +170751226573,221,0 +170751226622,221,0 +170751226670,221,0 +170751226720,221,0 +170751226768,221,0 +170751226817,222,0 +170751226865,221,0 +170751226915,222,0 +170751226964,221,0 +170751227012,221,0 +170751227062,221,0 +170751227111,222,0 +170751227159,221,0 +170751227207,221,0 +170751227255,222,0 +170751227303,221,0 +170751227353,221,0 +170751227401,222,0 +170751227448,221,0 +170751227496,222,0 +170751227544,221,0 +170751227592,221,0 +170751227640,221,0 +170751227690,221,0 +170751227738,221,0 +170751227786,221,0 +170751227834,221,0 +170751227882,221,0 +170751227930,221,0 +170751227978,222,0 +170751228026,221,0 +170751228073,222,0 +170751228121,221,0 +170751228169,221,0 +170751228217,221,0 +170751228265,221,0 +170751228313,221,0 +170751228361,221,0 +170751228411,221,0 +170751228460,221,0 +170751228508,221,0 +170751228556,222,0 +170751228606,221,0 +170751228654,221,0 +170751228701,222,0 +170751228751,221,0 +170751228799,221,0 +170751228847,222,0 +170751228897,221,0 +170751228946,221,0 +170751228994,221,0 +170751229044,221,0 +170751229092,221,0 +170751229140,221,0 +170751229188,221,0 +170751229236,222,0 +170751229285,222,0 +170751229335,221,0 +170751229384,221,0 +170751229432,221,0 +170751229480,222,0 +170751229528,221,0 +170751229576,221,0 +170751229624,221,0 +170751229674,222,0 +170751229723,221,0 +170751229773,222,0 +170751229822,222,0 +170751229872,221,0 +170751229921,221,0 +170751229971,221,0 +170751230020,221,0 +170751230070,221,0 +170751230119,221,0 +170751230167,222,0 +170751230217,221,0 +170751230265,222,0 +170751230313,222,0 +170751230361,222,0 +170751230410,221,0 +170751230460,221,0 +170751230509,221,0 +170751230559,222,0 +170751230608,221,0 +170751230656,221,0 +170751230706,221,0 +170751230755,221,0 +170751230803,221,0 +170751230853,221,0 +170751230901,221,0 +170751230950,221,0 +170751231000,221,0 +170751231049,221,0 +170751231097,221,0 +170751231147,222,0 +170751231195,221,0 +170751231243,221,0 +170751231290,221,0 +170751231340,221,0 +170751231390,222,0 +170751231439,221,0 +170751231489,221,0 +170751231538,221,0 +170751231588,221,0 +170751231636,221,0 +170751231684,221,0 +170751231732,221,0 +170751231780,221,0 +170751231827,221,0 +170751231875,222,0 +170751231925,221,0 +170751231975,221,0 +170751232022,221,0 +170751232070,221,0 +170751232118,222,0 +170751232166,221,0 +170751232214,221,0 +170751232262,221,0 +170751232310,221,0 +170751232358,222,0 +170751232406,221,0 +170751232454,221,0 +170751232504,221,0 +170751232553,221,0 +170751232601,222,0 +170751232649,222,0 +170751232697,221,0 +170751232745,222,0 +170751232793,222,0 +170751232842,221,0 +170751232890,221,0 +170751232938,222,0 +170751232986,221,0 +170751233034,222,0 +170751233082,221,0 +170751233132,221,0 +170751233181,222,0 +170751233229,221,0 +170751233277,221,0 +170751233325,222,0 +170751233373,221,0 +170751233423,222,0 +170751233472,222,0 +170751233520,221,0 +170751233568,221,0 +170751233616,221,0 +170751233666,222,0 +170751233714,222,0 +170751233762,221,0 +170751233809,222,0 +170751233859,222,0 +170751233909,221,0 +170751233958,222,0 +170751234008,221,0 +170751234056,222,0 +170751234104,222,0 +170751234153,222,0 +170751234203,222,0 +170751234251,222,0 +170751234300,221,0 +170751234348,222,0 +170751234398,221,0 +170751234446,222,0 +170751234495,222,0 +170751234543,221,0 +170751234591,222,0 +170751234639,222,0 +170751234687,221,0 +170751234735,221,0 +170751234785,222,0 +170751234833,222,0 +170751234882,222,0 +170751234930,222,0 +170751234978,221,0 +170751235026,222,0 +170751235076,222,0 +170751235123,222,0 +170751235171,221,0 +170751235219,222,0 +170751235267,222,0 +170751235317,221,0 +170751235365,222,0 +170751235414,222,0 +170751235464,221,0 +170751235512,222,0 +170751235560,221,0 +170751235609,222,0 +170751235657,222,0 +170751235705,221,0 +170751235753,222,0 +170751235801,221,0 +170751235849,222,0 +170751235899,222,0 +170751235948,221,0 +170751235998,222,0 +170751236046,222,0 +170751236094,222,0 +170751236142,221,0 +170751236190,222,0 +170751236238,222,0 +170751236286,222,0 +170751236335,222,0 +170751236383,222,0 +170751236431,222,0 +170751236479,222,0 +170751236529,222,0 +170751236578,222,0 +170751236628,222,0 +170751236675,222,0 +170751236723,222,0 +170751236773,222,0 +170751236822,222,0 +170751236872,222,0 +170751236921,222,0 +170751236969,221,0 +170751237019,222,0 +170751237067,222,0 +170751237117,222,0 +170751237166,222,0 +170751237214,222,0 +170751237262,222,0 +170751237310,222,0 +170751237358,222,0 +170751237407,222,0 +170751237457,222,0 +170751237505,222,0 +170751237554,222,0 +170751237604,222,0 +170751237653,222,0 +170751237701,222,0 +170751237749,222,0 +170751237797,222,0 +170751237845,222,0 +170751237893,222,0 +170751237941,222,0 +170751237989,222,0 +170751238037,222,0 +170751238084,222,0 +170751238132,222,0 +170751238180,222,0 +170751238230,222,0 +170751238278,222,0 +170751238325,222,0 +170751238375,222,0 +170751238423,222,0 +170751238472,222,0 +170751238520,222,0 +170751238570,222,0 +170751238619,222,0 +170751238667,222,0 +170751238715,222,0 +170751238765,222,0 +170751238814,222,0 +170751238862,221,0 +170751238910,222,0 +170751238958,222,0 +170751239007,222,0 +170751239055,222,0 +170751239103,222,0 +170751239153,222,0 +170751239201,222,0 +170751239250,222,0 +170751239298,222,0 +170751239346,222,0 +170751239394,222,0 +170751239442,222,0 +170751239490,222,0 +170751239537,222,0 +170751239585,222,0 +170751239633,222,0 +170751239681,222,0 +170751239729,222,0 +170751239777,222,0 +170751239826,222,0 +170751239874,222,0 +170751239922,222,0 +170751239972,222,0 +170751240020,222,0 diff --git a/laser_value/0210-07.csv b/laser_value/0210-07.csv new file mode 100644 index 0000000..4a6ec29 --- /dev/null +++ b/laser_value/0210-07.csv @@ -0,0 +1,7425 @@ +timestamp,laser_value,event +170751240068,222,0 +170751240118,222,0 +170751240166,222,0 +170751240214,222,0 +170751240262,222,0 +170751240309,222,0 +170751240359,222,0 +170751240407,222,0 +170751240456,222,0 +170751240506,222,0 +170751240556,222,0 +170751240604,222,0 +170751240653,222,0 +170751240703,222,0 +170751240751,222,0 +170751240799,222,0 +170751240848,222,0 +170751240898,222,0 +170751240946,222,0 +170751240994,222,0 +170751241043,222,0 +170751241093,222,0 +170751241142,222,0 +170751241190,222,0 +170751241238,222,0 +170751241286,222,0 +170751241335,222,0 +170751241383,222,0 +170751241431,222,0 +170751241479,222,0 +170751241529,222,0 +170751241577,222,0 +170751241625,222,0 +170751241674,222,0 +170751241722,222,0 +170751241772,222,0 +170751241821,222,0 +170751241869,222,0 +170751241919,222,0 +170751241966,222,0 +170751242014,222,0 +170751242062,222,0 +170751242110,222,0 +170751242159,222,0 +170751242207,222,0 +170751242255,222,0 +170751242303,222,0 +170751242352,222,0 +170751242400,222,0 +170751242450,222,0 +170751242498,222,0 +170751242546,222,0 +170751242594,222,0 +170751242642,222,0 +170751242690,221,0 +170751242739,222,0 +170751242789,222,0 +170751242838,222,0 +170751242888,222,0 +170751242936,222,0 +170751242985,222,0 +170751243033,222,0 +170751243083,222,0 +170751243131,222,0 +170751243179,222,0 +170751243227,222,0 +170751243275,222,0 +170751243324,222,0 +170751243372,222,0 +170751243421,222,0 +170751243469,222,0 +170751243519,222,0 +170751243567,222,0 +170751243615,222,0 +170751243663,222,0 +170751243711,222,0 +170751243760,222,0 +170751243810,222,0 +170751243859,222,0 +170751243907,222,0 +170751243955,222,0 +170751244005,222,0 +170751244053,222,0 +170751244101,222,0 +170751244149,222,0 +170751244197,222,0 +170751244246,222,0 +170751244294,222,0 +170751244342,222,0 +170751244390,222,0 +170751244439,222,0 +170751244487,222,0 +170751244535,222,0 +170751244583,222,0 +170751244632,222,0 +170751244680,222,0 +170751244730,222,0 +170751244778,222,0 +170751244827,222,0 +170751244877,222,0 +170751244926,222,0 +170751244976,222,0 +170751245025,222,0 +170751245073,222,0 +170751245121,222,0 +170751245169,222,0 +170751245219,222,0 +170751245267,222,0 +170751245316,222,0 +170751245364,222,0 +170751245412,222,0 +170751245462,222,0 +170751245510,222,0 +170751245557,222,0 +170751245605,222,0 +170751245655,222,0 +170751245703,222,0 +170751245752,222,0 +170751245800,222,0 +170751245848,222,0 +170751245896,223,0 +170751245944,222,0 +170751245992,222,0 +170751246040,222,0 +170751246088,222,0 +170751246138,222,0 +170751246186,222,0 +170751246234,222,0 +170751246282,222,0 +170751246330,222,0 +170751246378,222,0 +170751246427,222,0 +170751246475,222,0 +170751246524,222,0 +170751246572,222,0 +170751246620,222,0 +170751246668,222,0 +170751246716,222,0 +170751246766,222,0 +170751246814,222,0 +170751246863,222,0 +170751246911,222,0 +170751246959,222,0 +170751247007,222,0 +170751247057,222,0 +170751247105,222,0 +170751247153,222,0 +170751247201,222,0 +170751247249,222,0 +170751247297,222,0 +170751247344,222,0 +170751247392,222,0 +170751247440,222,0 +170751247490,222,0 +170751247538,222,0 +170751247586,222,0 +170751247634,222,0 +170751247682,222,0 +170751247729,222,0 +170751247777,222,0 +170751247825,222,0 +170751247873,222,0 +170751247921,222,0 +170751247969,222,0 +170751248018,222,0 +170751248066,222,0 +170751248116,222,0 +170751248166,222,0 +170751248213,222,0 +170751248261,222,0 +170751248311,222,0 +170751248361,222,0 +170751248408,222,0 +170751248458,222,0 +170751248506,222,0 +170751248554,222,0 +170751248602,222,0 +170751248650,222,0 +170751248698,222,0 +170751248746,223,0 +170751248794,222,0 +170751248842,222,0 +170751248890,222,0 +170751248937,223,0 +170751248985,222,0 +170751249033,222,0 +170751249083,222,0 +170751249131,222,0 +170751249179,222,0 +170751249227,222,0 +170751249275,222,0 +170751249323,222,0 +170751249371,222,0 +170751249418,222,0 +170751249466,222,0 +170751249516,222,0 +170751249564,222,0 +170751249612,222,0 +170751249660,222,0 +170751249709,222,0 +170751249759,222,0 +170751249807,222,0 +170751249855,222,0 +170751249904,222,0 +170751249952,222,0 +170751250000,222,0 +170751250048,222,0 +170751250096,222,0 +170751250145,222,0 +170751250193,222,0 +170751250241,222,0 +170751250289,222,0 +170751250338,222,0 +170751250386,222,0 +170751250434,222,0 +170751250482,222,0 +170751250530,223,0 +170751250578,222,0 +170751250626,222,0 +170751250673,223,0 +170751250721,222,0 +170751250771,222,0 +170751250819,222,0 +170751250868,222,0 +170751250916,222,0 +170751250964,222,0 +170751251012,222,0 +170751251060,222,0 +170751251108,222,0 +170751251157,222,0 +170751251207,222,0 +170751251256,222,0 +170751251306,222,0 +170751251355,222,0 +170751251403,222,0 +170751251451,222,0 +170751251499,222,0 +170751251549,222,0 +170751251597,222,0 +170751251645,222,0 +170751251694,222,0 +170751251743,222,0 +170751251791,222,0 +170751251841,222,0 +170751251889,222,0 +170751251938,222,0 +170751251988,222,0 +170751252036,222,0 +170751252085,222,0 +170751252133,222,0 +170751252183,222,0 +170751252232,222,0 +170751252282,222,0 +170751252330,222,0 +170751252378,222,0 +170751252426,222,0 +170751252475,222,0 +170751252523,222,0 +170751252571,222,0 +170751252619,222,0 +170751252669,222,0 +170751252718,222,0 +170751252766,222,0 +170751252814,222,0 +170751252862,222,0 +170751252911,222,0 +170751252959,222,0 +170751253009,222,0 +170751253056,222,0 +170751253104,222,0 +170751253152,222,0 +170751253200,222,0 +170751253249,222,0 +170751253297,222,0 +170751253345,222,0 +170751253393,222,0 +170751253441,222,0 +170751253489,222,0 +170751253537,222,0 +170751253585,222,0 +170751253634,222,0 +170751253682,222,0 +170751253732,222,0 +170751253780,222,0 +170751253828,222,0 +170751253877,223,0 +170751253925,222,0 +170751253974,222,0 +170751254022,222,0 +170751254072,222,0 +170751254122,222,0 +170751254171,222,0 +170751254219,222,0 +170751254269,222,0 +170751254318,222,0 +170751254366,222,0 +170751254416,222,0 +170751254464,222,0 +170751254512,222,0 +170751254561,222,0 +170751254611,222,0 +170751254659,222,0 +170751254707,222,0 +170751254755,222,0 +170751254802,222,0 +170751254850,222,0 +170751254898,222,0 +170751254946,222,0 +170751254996,222,0 +170751255045,222,0 +170751255093,222,0 +170751255141,222,0 +170751255191,222,0 +170751255239,222,0 +170751255287,222,0 +170751255336,222,0 +170751255384,222,0 +170751255432,222,0 +170751255480,222,0 +170751255528,222,0 +170751255576,222,0 +170751255625,222,0 +170751255673,222,0 +170751255723,222,0 +170751255771,222,0 +170751255820,222,0 +170751255868,222,0 +170751255916,222,0 +170751255966,222,0 +170751256014,222,0 +170751256062,222,0 +170751256111,222,0 +170751256159,222,0 +170751256209,222,0 +170751256258,222,0 +170751256308,222,0 +170751256357,222,0 +170751256405,222,0 +170751256453,222,0 +170751256503,222,0 +170751256551,222,0 +170751256599,222,0 +170751256647,222,0 +170751256695,222,0 +170751256743,222,0 +170751256791,222,0 +170751256839,222,0 +170751256887,222,0 +170751256936,222,0 +170751256986,222,0 +170751257035,222,0 +170751257083,222,0 +170751257133,222,0 +170751257182,222,0 +170751257232,222,0 +170751257280,222,0 +170751257328,222,0 +170751257375,223,0 +170751257425,222,0 +170751257473,222,0 +170751257521,222,0 +170751257570,222,0 +170751257618,222,0 +170751257668,222,0 +170751257717,222,0 +170751257767,222,0 +170751257817,222,0 +170751257864,222,0 +170751257912,222,0 +170751257962,223,0 +170751258010,222,0 +170751258059,222,0 +170751258107,222,0 +170751258155,222,0 +170751258205,223,0 +170751258253,222,0 +170751258301,222,0 +170751258349,222,0 +170751258397,223,0 +170751258445,223,0 +170751258493,222,0 +170751258542,223,0 +170751258590,223,0 +170751258638,222,0 +170751258686,222,0 +170751258734,222,0 +170751258782,222,0 +170751258832,222,0 +170751258881,223,0 +170751258929,222,0 +170751258977,222,0 +170751259027,222,0 +170751259075,222,0 +170751259124,222,0 +170751259172,222,0 +170751259222,222,0 +170751259270,222,0 +170751259318,223,0 +170751259367,222,0 +170751259415,223,0 +170751259463,223,0 +170751259511,222,0 +170751259560,223,0 +170751259610,222,0 +170751259658,223,0 +170751259706,222,0 +170751259755,222,0 +170751259803,222,0 +170751259851,223,0 +170751259901,223,0 +170751259949,222,0 +170751259996,222,0 +170751260046,222,0 +170751260094,222,0 +170751260142,223,0 +170751260191,223,0 +170751260239,222,0 +170751260289,222,0 +170751260338,222,0 +170751260388,222,0 +170751260437,223,0 +170751260485,223,0 +170751260533,222,0 +170751260583,223,0 +170751260631,223,0 +170751260679,223,0 +170751260727,222,0 +170751260775,223,0 +170751260823,222,0 +170751260871,223,0 +170751260919,222,0 +170751260967,222,0 +170751261016,222,0 +170751261064,223,0 +170751261114,222,0 +170751261161,223,0 +170751261209,222,0 +170751261257,222,0 +170751261307,222,0 +170751261355,222,0 +170751261403,222,0 +170751261451,222,0 +170751261500,222,0 +170751261548,223,0 +170751261596,222,0 +170751261646,222,0 +170751261695,222,0 +170751261743,223,0 +170751261791,222,0 +170751261839,223,0 +170751261887,223,0 +170751261935,222,0 +170751261984,222,0 +170751262032,223,0 +170751262080,223,0 +170751262130,223,0 +170751262179,223,0 +170751262227,222,0 +170751262275,222,0 +170751262325,223,0 +170751262373,222,0 +170751262422,223,0 +170751262470,222,0 +170751262518,222,0 +170751262566,223,0 +170751262614,222,0 +170751262662,223,0 +170751262710,223,0 +170751262759,222,0 +170751262807,223,0 +170751262855,222,0 +170751262905,222,0 +170751262953,222,0 +170751263002,222,0 +170751263050,222,0 +170751263098,223,0 +170751263148,222,0 +170751263196,222,0 +170751263245,222,0 +170751263294,223,0 +170751263344,222,0 +170751263393,223,0 +170751263443,222,0 +170751263491,222,0 +170751263539,222,0 +170751263587,222,0 +170751263635,222,0 +170751263683,222,0 +170751263732,222,0 +170751263780,222,0 +170751263828,223,0 +170751263876,222,0 +170751263926,222,0 +170751263974,222,0 +170751264023,222,0 +170751264073,223,0 +170751264121,222,0 +170751264170,222,0 +170751264218,223,0 +170751264268,223,0 +170751264318,222,0 +170751264367,223,0 +170751264417,223,0 +170751264465,223,0 +170751264514,222,0 +170751264562,222,0 +170751264610,223,0 +170751264658,222,0 +170751264706,223,0 +170751264754,222,0 +170751264802,223,0 +170751264851,222,0 +170751264899,222,0 +170751264947,222,0 +170751264997,223,0 +170751265046,222,0 +170751265096,222,0 +170751265144,223,0 +170751265192,223,0 +170751265240,222,0 +170751265288,223,0 +170751265336,222,0 +170751265384,222,0 +170751265433,222,0 +170751265483,223,0 +170751265532,223,0 +170751265580,223,0 +170751265628,223,0 +170751265677,222,0 +170751265725,223,0 +170751265773,222,0 +170751265821,223,0 +170751265869,223,0 +170751265917,223,0 +170751265967,223,0 +170751266016,223,0 +170751266066,223,0 +170751266115,223,0 +170751266165,223,0 +170751266213,223,0 +170751266262,222,0 +170751266310,222,0 +170751266358,222,0 +170751266406,223,0 +170751266456,223,0 +170751266505,222,0 +170751266555,223,0 +170751266604,223,0 +170751266654,223,0 +170751266702,223,0 +170751266751,223,0 +170751266801,222,0 +170751266849,223,0 +170751266898,223,0 +170751266946,223,0 +170751266994,223,0 +170751267042,223,0 +170751267090,222,0 +170751267140,223,0 +170751267188,222,0 +170751267237,223,0 +170751267287,223,0 +170751267336,223,0 +170751267386,222,0 +170751267434,223,0 +170751267482,222,0 +170751267530,223,0 +170751267578,223,0 +170751267627,223,0 +170751267675,223,0 +170751267723,223,0 +170751267771,223,0 +170751267819,223,0 +170751267867,223,0 +170751267917,223,0 +170751267966,223,0 +170751268014,222,0 +170751268062,223,0 +170751268110,223,0 +170751268158,223,0 +170751268206,223,0 +170751268254,222,0 +170751268302,223,0 +170751268352,223,0 +170751268400,223,0 +170751268448,223,0 +170751268496,223,0 +170751268545,223,0 +170751268595,222,0 +170751268643,223,0 +170751268692,223,0 +170751268742,223,0 +170751268790,223,0 +170751268839,223,0 +170751268887,223,0 +170751268937,223,0 +170751268984,223,0 +170751269034,222,0 +170751269083,222,0 +170751269133,223,0 +170751269183,223,0 +170751269232,222,0 +170751269282,223,0 +170751269331,223,0 +170751269381,222,0 +170751269429,223,0 +170751269478,223,0 +170751269528,223,0 +170751269577,223,0 +170751269625,222,0 +170751269673,223,0 +170751269721,223,0 +170751269769,223,0 +170751269817,223,0 +170751269864,223,0 +170751269912,223,0 +170751269960,223,0 +170751270008,223,0 +170751270058,223,0 +170751270106,223,0 +170751270154,223,0 +170751270203,223,0 +170751270253,223,0 +170751270302,223,0 +170751270350,223,0 +170751270400,223,0 +170751270449,223,0 +170751270499,223,0 +170751270548,223,0 +170751270596,223,0 +170751270644,223,0 +170751270692,223,0 +170751270740,223,0 +170751270788,223,0 +170751270837,223,0 +170751270885,223,0 +170751270933,223,0 +170751270981,223,0 +170751271029,223,0 +170751271079,223,0 +170751271127,223,0 +170751271176,223,0 +170751271224,223,0 +170751271274,223,0 +170751271323,223,0 +170751271373,223,0 +170751271421,223,0 +170751271469,223,0 +170751271517,223,0 +170751271566,223,0 +170751271614,223,0 +170751271662,223,0 +170751271712,223,0 +170751271760,223,0 +170751271808,223,0 +170751271857,223,0 +170751271905,223,0 +170751271953,223,0 +170751272001,222,0 +170751272051,223,0 +170751272100,222,0 +170751272148,223,0 +170751272196,223,0 +170751272246,223,0 +170751272294,223,0 +170751272342,223,0 +170751272389,223,0 +170751272437,222,0 +170751272485,223,0 +170751272535,222,0 +170751272584,223,0 +170751272632,223,0 +170751272680,222,0 +170751272728,222,0 +170751272778,222,0 +170751272826,223,0 +170751272875,223,0 +170751272923,223,0 +170751272971,223,0 +170751273019,223,0 +170751273067,223,0 +170751273115,223,0 +170751273165,223,0 +170751273212,222,0 +170751273262,223,0 +170751273310,223,0 +170751273358,223,0 +170751273408,223,0 +170751273455,223,0 +170751273505,223,0 +170751273553,223,0 +170751273601,223,0 +170751273649,222,0 +170751273697,222,0 +170751273745,223,0 +170751273793,223,0 +170751273841,223,0 +170751273889,223,0 +170751273938,223,0 +170751273986,223,0 +170751274034,223,0 +170751274082,223,0 +170751274130,223,0 +170751274179,223,0 +170751274227,223,0 +170751274277,223,0 +170751274324,223,0 +170751274374,222,0 +170751274423,223,0 +170751274471,223,0 +170751274521,223,0 +170751274569,223,0 +170751274618,223,0 +170751274666,223,0 +170751274716,223,0 +170751274764,223,0 +170751274812,222,0 +170751274860,223,0 +170751274908,223,0 +170751274956,223,0 +170751275004,223,0 +170751275053,223,0 +170751275103,223,0 +170751275151,223,0 +170751275199,222,0 +170751275248,223,0 +170751275298,223,0 +170751275346,223,0 +170751275395,222,0 +170751275445,223,0 +170751275493,223,0 +170751275541,223,0 +170751275590,222,0 +170751275638,223,0 +170751275686,223,0 +170751275734,223,0 +170751275784,223,0 +170751275832,223,0 +170751275881,223,0 +170751275931,223,0 +170751275980,223,0 +170751276028,223,0 +170751276078,223,0 +170751276126,223,0 +170751276175,223,0 +170751276225,223,0 +170751276274,223,0 +170751276322,223,0 +170751276372,223,0 +170751276420,223,0 +170751276468,223,0 +170751276515,223,0 +170751276563,223,0 +170751276611,223,0 +170751276661,222,0 +170751276709,223,0 +170751276758,223,0 +170751276808,223,0 +170751276856,223,0 +170751276904,223,0 +170751276952,223,0 +170751277001,223,0 +170751277049,223,0 +170751277097,223,0 +170751277147,223,0 +170751277195,223,0 +170751277243,223,0 +170751277292,223,0 +170751277342,223,0 +170751277390,223,0 +170751277438,223,0 +170751277487,223,0 +170751277535,223,0 +170751277583,223,0 +170751277632,223,0 +170751277682,222,0 +170751277730,223,0 +170751277778,223,0 +170751277827,223,0 +170751277875,223,0 +170751277923,223,0 +170751277971,223,0 +170751278019,223,0 +170751278067,223,0 +170751278115,223,0 +170751278163,223,0 +170751278212,223,0 +170751278262,223,0 +170751278312,223,0 +170751278361,223,0 +170751278409,223,0 +170751278457,223,0 +170751278505,223,0 +170751278553,223,0 +170751278601,223,0 +170751278650,223,0 +170751278698,223,0 +170751278746,223,0 +170751278794,223,0 +170751278842,223,0 +170751278892,223,0 +170751278940,223,0 +170751278988,223,0 +170751279036,223,0 +170751279085,223,0 +170751279133,223,0 +170751279181,223,0 +170751279229,223,0 +170751279277,223,0 +170751279327,223,0 +170751279375,223,0 +170751279424,223,0 +170751279472,223,0 +170751279520,223,0 +170751279568,223,0 +170751279618,223,0 +170751279665,223,0 +170751279713,223,0 +170751279762,223,0 +170751279811,223,0 +170751279861,223,0 +170751279910,223,0 +170751279958,223,0 +170751280006,223,0 +170751280055,223,0 +170751280103,223,0 +170751280151,223,0 +170751280199,223,0 +170751280249,223,0 +170751280297,223,0 +170751280346,223,0 +170751280396,223,0 +170751280444,223,0 +170751280492,223,0 +170751280540,223,0 +170751280588,223,0 +170751280636,223,0 +170751280683,223,0 +170751280731,223,0 +170751280779,223,0 +170751280827,223,0 +170751280877,223,0 +170751280927,223,0 +170751280975,223,0 +170751281024,223,0 +170751281074,223,0 +170751281121,223,0 +170751281171,223,0 +170751281219,223,0 +170751281269,223,0 +170751281316,223,0 +170751281366,223,0 +170751281416,223,0 +170751281465,223,0 +170751281514,223,0 +170751281564,223,0 +170751281614,223,0 +170751281663,223,0 +170751281711,223,0 +170751281759,223,0 +170751281807,223,0 +170751281855,223,0 +170751281903,223,0 +170751281951,223,0 +170751282000,223,0 +170751282048,223,0 +170751282098,223,0 +170751282147,223,0 +170751282195,223,0 +170751282245,223,0 +170751282294,223,0 +170751282342,223,0 +170751282390,223,0 +170751282438,223,0 +170751282486,223,0 +170751282534,223,0 +170751282584,223,0 +170751282632,223,0 +170751282680,223,0 +170751282728,223,0 +170751282776,223,0 +170751282824,223,0 +170751282872,223,0 +170751282921,223,0 +170751282969,223,0 +170751283017,223,0 +170751283065,223,0 +170751283114,223,0 +170751283164,223,0 +170751283213,223,0 +170751283261,223,0 +170751283311,223,0 +170751283360,223,0 +170751283408,223,0 +170751283458,223,0 +170751283506,223,0 +170751283554,223,0 +170751283602,223,0 +170751283651,223,0 +170751283699,223,0 +170751283747,223,0 +170751283795,223,0 +170751283843,223,0 +170751283893,223,0 +170751283941,223,0 +170751283990,223,0 +170751284038,223,0 +170751284088,223,0 +170751284136,223,0 +170751284184,223,0 +170751284233,223,0 +170751284281,223,0 +170751284329,223,0 +170751284379,223,0 +170751284428,223,0 +170751284476,223,0 +170751284526,223,0 +170751284574,223,0 +170751284623,223,0 +170751284671,223,0 +170751284719,223,0 +170751284767,223,0 +170751284815,223,0 +170751284863,223,0 +170751284911,223,0 +170751284959,223,0 +170751285007,223,0 +170751285055,223,0 +170751285102,223,0 +170751285150,223,0 +170751285198,223,0 +170751285248,223,0 +170751285297,223,0 +170751285347,223,0 +170751285395,223,0 +170751285444,223,0 +170751285494,223,0 +170751285542,223,0 +170751285590,223,0 +170751285639,223,0 +170751285687,223,0 +170751285735,223,0 +170751285783,223,0 +170751285833,223,0 +170751285881,223,0 +170751285930,223,0 +170751285978,223,0 +170751286028,223,0 +170751286076,223,0 +170751286123,223,0 +170751286173,223,0 +170751286221,223,0 +170751286269,223,0 +170751286317,223,0 +170751286366,223,0 +170751286416,223,0 +170751286464,223,0 +170751286513,223,0 +170751286561,223,0 +170751286609,223,0 +170751286657,223,0 +170751286707,223,0 +170751286756,223,0 +170751286806,223,0 +170751286854,223,0 +170751286902,223,0 +170751286950,223,0 +170751286999,223,0 +170751287049,223,0 +170751287098,223,0 +170751287146,223,0 +170751287196,223,0 +170751287244,223,0 +170751287293,223,0 +170751287341,223,0 +170751287391,223,0 +170751287439,223,0 +170751287487,223,0 +170751287536,223,0 +170751287584,223,0 +170751287634,223,0 +170751287683,223,0 +170751287733,223,0 +170751287781,223,0 +170751287830,223,0 +170751287880,223,0 +170751287928,223,0 +170751287976,223,0 +170751288024,223,0 +170751288073,223,0 +170751288121,223,0 +170751288171,223,0 +170751288220,223,0 +170751288270,223,0 +170751288319,223,0 +170751288367,223,0 +170751288415,223,0 +170751288463,223,0 +170751288513,223,0 +170751288562,223,0 +170751288612,223,0 +170751288661,223,0 +170751288709,223,0 +170751288759,223,0 +170751288808,223,0 +170751288858,223,0 +170751288907,223,0 +170751288955,223,0 +170751289005,223,0 +170751289054,223,0 +170751289102,223,0 +170751289152,223,0 +170751289200,223,0 +170751289248,223,0 +170751289296,223,0 +170751289344,223,0 +170751289393,223,0 +170751289443,223,0 +170751289492,223,0 +170751289540,223,0 +170751289588,223,0 +170751289636,223,0 +170751289684,223,0 +170751289732,223,0 +170751289782,223,0 +170751289830,223,0 +170751289878,223,0 +170751289927,223,0 +170751289977,223,0 +170751290025,223,0 +170751290073,223,0 +170751290121,223,0 +170751290169,223,0 +170751290218,223,0 +170751290268,223,0 +170751290316,223,0 +170751290363,223,0 +170751290411,223,0 +170751290459,223,0 +170751290509,223,0 +170751290557,223,0 +170751290604,223,0 +170751290652,223,0 +170751290700,223,0 +170751290748,223,0 +170751290796,223,0 +170751290844,223,0 +170751290894,223,0 +170751290943,223,0 +170751290993,223,0 +170751291042,223,0 +170751291090,223,0 +170751291138,223,0 +170751291186,223,0 +170751291236,223,0 +170751291285,223,0 +170751291335,223,0 +170751291383,223,0 +170751291431,223,0 +170751291478,223,0 +170751291526,223,0 +170751291574,223,0 +170751291624,223,0 +170751291672,223,0 +170751291720,223,0 +170751291768,223,0 +170751291816,223,0 +170751291864,223,0 +170751291913,223,0 +170751291963,223,0 +170751292011,223,0 +170751292059,223,0 +170751292107,223,0 +170751292155,223,0 +170751292203,223,0 +170751292252,223,0 +170751292302,223,0 +170751292351,223,0 +170751292401,223,0 +170751292450,223,0 +170751292498,223,0 +170751292546,223,0 +170751292594,223,0 +170751292644,223,0 +170751292692,223,0 +170751292740,223,0 +170751292788,223,0 +170751292835,223,0 +170751292883,223,0 +170751292931,223,0 +170751292979,223,0 +170751293027,223,0 +170751293075,223,0 +170751293123,223,0 +170751293171,223,0 +170751293219,223,0 +170751293267,223,0 +170751293315,223,0 +170751293363,223,0 +170751293412,223,0 +170751293460,223,0 +170751293510,223,0 +170751293558,223,0 +170751293605,223,0 +170751293653,223,0 +170751293703,223,0 +170751293753,223,0 +170751293800,223,0 +170751293850,223,0 +170751293899,223,0 +170751293947,223,0 +170751293995,223,0 +170751294043,223,0 +170751294093,223,0 +170751294142,223,0 +170751294192,223,0 +170751294241,223,0 +170751294291,223,0 +170751294340,223,0 +170751294388,223,0 +170751294438,223,0 +170751294486,223,0 +170751294534,223,0 +170751294583,223,0 +170751294633,223,0 +170751294683,223,0 +170751294731,223,0 +170751294780,223,0 +170751294828,223,0 +170751294876,223,0 +170751294924,223,0 +170751294973,223,0 +170751295021,223,0 +170751295069,223,0 +170751295119,223,0 +170751295167,223,0 +170751295215,223,0 +170751295264,223,0 +170751295314,223,0 +170751295362,223,0 +170751295410,223,0 +170751295458,223,0 +170751295507,223,0 +170751295555,223,0 +170751295603,223,0 +170751295651,223,0 +170751295699,223,0 +170751295747,223,0 +170751295796,223,0 +170751295846,223,0 +170751295894,223,0 +170751295942,223,0 +170751295990,223,0 +170751296038,223,0 +170751296086,223,0 +170751296135,223,0 +170751296183,223,0 +170751296231,223,0 +170751296279,223,0 +170751296327,223,0 +170751296375,223,0 +170751296423,223,0 +170751296471,223,0 +170751296520,222,0 +170751296568,223,0 +170751296618,223,0 +170751296666,223,0 +170751296715,223,0 +170751296765,223,0 +170751296814,223,0 +170751296862,223,0 +170751296910,223,0 +170751296958,223,0 +170751297008,223,0 +170751297056,223,0 +170751297105,223,0 +170751297153,223,0 +170751297203,223,0 +170751297251,223,0 +170751297299,223,0 +170751297348,223,0 +170751297396,223,0 +170751297445,223,0 +170751297495,223,0 +170751297543,223,0 +170751297591,223,0 +170751297639,223,0 +170751297687,223,0 +170751297735,223,0 +170751297783,223,0 +170751297832,223,0 +170751297880,223,0 +170751297928,223,0 +170751297978,223,0 +170751298027,223,0 +170751298075,223,0 +170751298125,223,0 +170751298172,223,0 +170751298220,223,0 +170751298270,223,0 +170751298318,223,0 +170751298366,223,0 +170751298413,223,0 +170751298463,223,0 +170751298511,223,0 +170751298559,223,0 +170751298607,223,0 +170751298654,223,0 +170751298704,223,0 +170751298753,223,0 +170751298801,223,0 +170751298849,223,0 +170751298897,223,0 +170751298945,223,0 +170751298993,223,0 +170751299041,223,0 +170751299089,223,0 +170751299137,223,0 +170751299186,223,0 +170751299234,223,0 +170751299282,223,0 +170751299330,223,0 +170751299378,223,0 +170751299425,223,0 +170751299473,223,0 +170751299521,223,0 +170751299571,223,0 +170751299619,223,0 +170751299667,223,0 +170751299716,223,0 +170751299764,223,0 +170751299812,223,0 +170751299860,223,0 +170751299909,223,0 +170751299959,223,0 +170751300007,223,0 +170751300054,223,0 +170751300102,223,0 +170751300150,223,0 +170751300198,223,0 +170751300246,223,0 +170751300296,223,0 +170751300344,223,0 +170751300392,223,0 +170751300439,223,0 +170751300487,223,0 +170751300535,223,0 +170751300585,223,0 +170751300634,223,0 +170751300684,223,0 +170751300732,223,0 +170751300780,223,0 +170751300829,223,0 +170751300879,223,0 +170751300928,223,0 +170751300978,223,0 +170751301026,223,0 +170751301074,223,0 +170751301122,223,0 +170751301171,223,0 +170751301219,223,0 +170751301267,223,0 +170751301316,223,0 +170751301366,223,0 +170751301414,223,0 +170751301462,223,0 +170751301510,223,0 +170751301558,223,0 +170751301606,223,0 +170751301653,223,0 +170751301701,223,0 +170751301749,223,0 +170751301797,223,0 +170751301845,223,0 +170751301893,223,0 +170751301941,223,0 +170751301990,223,0 +170751302038,223,0 +170751302086,223,0 +170751302134,223,0 +170751302182,223,0 +170751302230,223,0 +170751302278,223,0 +170751302326,223,0 +170751302374,223,0 +170751302421,223,0 +170751302471,223,0 +170751302519,223,0 +170751302567,223,0 +170751302615,223,0 +170751302663,223,0 +170751302712,223,0 +170751302760,223,0 +170751302808,223,0 +170751302858,223,0 +170751302906,223,0 +170751302954,223,0 +170751303002,223,0 +170751303051,223,0 +170751303101,223,0 +170751303150,223,0 +170751303198,223,0 +170751303246,223,0 +170751303296,223,0 +170751303345,223,0 +170751303395,223,0 +170751303443,223,0 +170751303490,223,0 +170751303538,223,0 +170751303588,223,0 +170751303636,223,0 +170751303684,223,0 +170751303732,223,0 +170751303780,223,0 +170751303829,223,0 +170751303877,223,0 +170751303925,223,0 +170751303975,223,0 +170751304023,223,0 +170751304070,223,0 +170751304118,223,0 +170751304168,223,0 +170751304216,223,0 +170751304264,223,0 +170751304312,223,0 +170751304360,223,0 +170751304408,223,0 +170751304456,223,0 +170751304505,223,0 +170751304553,223,0 +170751304601,223,0 +170751304649,223,0 +170751304699,223,0 +170751304747,223,0 +170751304795,223,0 +170751304843,223,0 +170751304891,223,0 +170751304939,223,0 +170751304988,223,0 +170751305036,223,0 +170751305086,223,0 +170751305133,223,0 +170751305181,223,0 +170751305229,223,0 +170751305277,223,0 +170751305325,223,0 +170751305373,223,0 +170751305423,223,0 +170751305472,223,0 +170751305520,223,0 +170751305568,223,0 +170751305616,223,0 +170751305664,223,0 +170751305714,223,0 +170751305763,223,0 +170751305813,223,0 +170751305861,223,0 +170751305910,223,0 +170751305958,223,0 +170751306006,223,0 +170751306056,223,0 +170751306105,223,0 +170751306153,223,0 +170751306201,223,0 +170751306251,223,0 +170751306299,223,0 +170751306347,223,0 +170751306396,223,0 +170751306446,223,0 +170751306495,223,0 +170751306543,223,0 +170751306591,223,0 +170751306641,223,0 +170751306689,223,0 +170751306737,223,0 +170751306786,223,0 +170751306834,223,0 +170751306882,223,0 +170751306932,223,0 +170751306981,223,0 +170751307029,223,0 +170751307077,223,0 +170751307127,223,0 +170751307174,223,0 +170751307222,223,0 +170751307270,223,0 +170751307318,223,0 +170751307366,223,0 +170751307414,223,0 +170751307462,223,0 +170751307512,223,0 +170751307561,223,0 +170751307609,223,0 +170751307659,223,0 +170751307708,223,0 +170751307758,223,0 +170751307807,223,0 +170751307855,223,0 +170751307903,223,0 +170751307951,223,0 +170751307999,223,0 +170751308047,223,0 +170751308095,223,0 +170751308143,223,0 +170751308193,223,0 +170751308241,223,0 +170751308290,223,0 +170751308338,223,0 +170751308388,223,0 +170751308436,223,0 +170751308484,223,0 +170751308532,223,0 +170751308580,223,0 +170751308629,223,0 +170751308677,223,0 +170751308725,223,0 +170751308773,223,0 +170751308821,223,0 +170751308869,223,0 +170751308918,223,0 +170751308966,223,0 +170751309016,223,0 +170751309065,223,0 +170751309115,223,0 +170751309163,223,0 +170751309211,223,0 +170751309260,223,0 +170751309310,223,0 +170751309358,223,0 +170751309406,223,0 +170751309454,223,0 +170751309502,223,0 +170751309550,223,0 +170751309598,223,0 +170751309645,223,0 +170751309693,223,0 +170751309743,223,0 +170751309791,223,0 +170751309840,223,0 +170751309890,223,0 +170751309939,223,0 +170751309989,223,0 +170751310039,223,0 +170751310087,223,0 +170751310136,223,0 +170751310186,223,0 +170751310235,223,0 +170751310285,223,0 +170751310333,223,0 +170751310382,223,0 +170751310430,223,0 +170751310478,223,0 +170751310526,223,0 +170751310576,223,0 +170751310625,223,0 +170751310673,223,0 +170751310723,223,0 +170751310772,223,0 +170751310820,223,0 +170751310868,223,0 +170751310918,223,0 +170751310967,223,0 +170751311017,223,0 +170751311065,223,0 +170751311114,223,0 +170751311162,223,0 +170751311210,223,0 +170751311258,223,0 +170751311306,223,0 +170751311354,223,0 +170751311404,223,0 +170751311453,223,0 +170751311501,223,0 +170751311549,223,0 +170751311599,223,0 +170751311647,223,0 +170751311695,223,0 +170751311744,223,0 +170751311794,223,0 +170751311842,223,0 +170751311890,223,0 +170751311939,223,0 +170751311987,223,0 +170751312037,223,0 +170751312086,223,0 +170751312136,223,0 +170751312184,223,0 +170751312233,223,0 +170751312281,223,0 +170751312329,223,0 +170751312379,223,0 +170751312428,223,0 +170751312476,223,0 +170751312526,223,0 +170751312575,223,0 +170751312625,223,0 +170751312673,223,0 +170751312722,223,0 +170751312772,223,0 +170751312820,223,0 +170751312868,223,0 +170751312916,223,0 +170751312965,223,0 +170751313013,223,0 +170751313061,223,0 +170751313109,223,0 +170751313159,223,0 +170751313207,223,0 +170751313256,223,0 +170751313304,223,0 +170751313352,223,0 +170751313400,223,0 +170751313448,223,0 +170751313498,223,0 +170751313547,223,0 +170751313595,223,0 +170751313645,223,0 +170751313693,223,0 +170751313740,223,0 +170751313788,223,0 +170751313838,223,0 +170751313888,223,0 +170751313936,223,0 +170751313984,223,0 +170751314033,223,0 +170751314081,223,0 +170751314129,223,0 +170751314179,223,0 +170751314228,223,0 +170751314276,223,0 +170751314324,223,0 +170751314372,223,0 +170751314420,223,0 +170751314469,223,0 +170751314517,223,0 +170751314565,223,0 +170751314613,223,0 +170751314661,223,0 +170751314711,223,0 +170751314760,223,0 +170751314808,223,0 +170751314857,223,0 +170751314905,223,0 +170751314953,223,0 +170751315003,223,0 +170751315051,223,0 +170751315099,223,0 +170751315148,223,0 +170751315196,223,0 +170751315244,223,0 +170751315294,223,0 +170751315342,223,0 +170751315390,223,0 +170751315437,223,0 +170751315487,223,0 +170751315535,223,0 +170751315584,223,0 +170751315632,223,0 +170751315680,223,0 +170751315728,223,0 +170751315776,223,0 +170751315824,223,0 +170751315871,223,0 +170751315919,223,0 +170751315969,223,0 +170751316017,223,0 +170751316065,223,0 +170751316112,223,0 +170751316162,223,0 +170751316210,223,0 +170751316258,223,0 +170751316307,223,0 +170751316355,223,0 +170751316405,223,0 +170751316453,223,0 +170751316501,223,0 +170751316549,223,0 +170751316598,223,0 +170751316648,223,0 +170751316696,223,0 +170751316744,223,0 +170751316792,223,0 +170751316840,223,0 +170751316889,223,0 +170751316939,223,0 +170751316987,223,0 +170751317035,223,0 +170751317084,223,0 +170751317132,223,0 +170751317182,223,0 +170751317231,223,0 +170751317279,223,0 +170751317327,223,0 +170751317377,223,0 +170751317425,223,0 +170751317474,223,0 +170751317522,223,0 +170751317570,223,0 +170751317618,223,0 +170751317666,223,0 +170751317714,223,0 +170751317762,223,0 +170751317810,223,0 +170751317859,223,0 +170751317907,223,0 +170751317955,223,0 +170751318003,223,0 +170751318052,223,0 +170751318100,223,0 +170751318150,223,0 +170751318198,223,0 +170751318246,223,0 +170751318293,223,0 +170751318343,223,0 +170751318391,223,0 +170751318439,223,0 +170751318487,223,0 +170751318536,223,0 +170751318584,223,0 +170751318632,223,0 +170751318680,223,0 +170751318729,223,0 +170751318777,223,0 +170751318825,223,0 +170751318873,223,0 +170751318921,223,0 +170751318970,223,0 +170751319018,223,0 +170751319066,223,0 +170751319115,223,0 +170751319163,223,0 +170751319213,223,0 +170751319262,223,0 +170751319312,223,0 +170751319360,223,0 +170751319407,223,0 +170751319455,223,0 +170751319503,223,0 +170751319551,223,0 +170751319599,223,0 +170751319647,223,0 +170751319695,223,0 +170751319743,223,0 +170751319792,223,0 +170751319840,223,0 +170751319888,223,0 +170751319936,223,0 +170751319984,223,0 +170751320033,223,0 +170751320081,223,0 +170751320129,223,0 +170751320177,223,0 +170751320226,223,0 +170751320274,223,0 +170751320324,223,0 +170751320372,223,0 +170751320421,223,0 +170751320469,223,0 +170751320518,223,0 +170751320566,223,0 +170751320614,223,0 +170751320662,223,0 +170751320710,223,0 +170751320758,223,0 +170751320806,223,0 +170751320854,223,0 +170751320902,223,0 +170751320951,223,0 +170751320999,223,0 +170751321047,223,0 +170751321095,223,0 +170751321145,223,0 +170751321193,223,0 +170751321241,223,0 +170751321289,223,0 +170751321336,223,0 +170751321384,223,0 +170751321432,223,0 +170751321480,223,0 +170751321530,223,0 +170751321578,223,0 +170751321625,223,0 +170751321673,223,0 +170751321721,223,0 +170751321769,223,0 +170751321817,223,0 +170751321865,223,0 +170751321913,223,0 +170751321961,223,0 +170751322009,223,0 +170751322057,223,0 +170751322105,223,0 +170751322153,223,0 +170751322201,223,0 +170751322249,223,0 +170751322298,223,0 +170751322346,223,0 +170751322394,223,0 +170751322442,223,0 +170751322490,223,0 +170751322538,223,0 +170751322586,223,0 +170751322633,223,0 +170751322681,223,0 +170751322731,223,0 +170751322779,223,0 +170751322828,223,0 +170751322878,223,0 +170751322926,223,0 +170751322975,223,0 +170751323023,223,0 +170751323071,223,0 +170751323121,223,0 +170751323169,223,0 +170751323218,223,0 +170751323266,223,0 +170751323316,223,0 +170751323364,223,0 +170751323412,223,0 +170751323460,223,0 +170751323507,223,0 +170751323555,223,0 +170751323603,223,0 +170751323651,223,0 +170751323699,223,0 +170751323747,223,0 +170751323795,223,0 +170751323843,223,0 +170751323891,223,0 +170751323939,223,0 +170751323987,223,0 +170751324034,223,0 +170751324082,223,0 +170751324132,223,0 +170751324180,223,0 +170751324228,223,0 +170751324277,223,0 +170751324325,223,0 +170751324373,223,0 +170751324421,223,0 +170751324468,223,0 +170751324516,223,0 +170751324566,223,0 +170751324614,223,0 +170751324663,223,0 +170751324711,223,0 +170751324759,223,0 +170751324809,223,0 +170751324857,223,0 +170751324905,223,0 +170751324954,223,0 +170751325004,223,0 +170751325053,223,0 +170751325101,223,0 +170751325151,223,0 +170751325199,223,0 +170751325247,223,0 +170751325296,223,0 +170751325346,223,0 +170751325394,223,0 +170751325441,223,0 +170751325489,223,0 +170751325537,223,0 +170751325585,223,0 +170751325633,223,0 +170751325681,223,0 +170751325729,223,0 +170751325777,223,0 +170751325825,223,0 +170751325872,223,0 +170751325920,223,0 +170751325968,223,0 +170751326018,223,0 +170751326065,223,0 +170751326115,223,0 +170751326163,223,0 +170751326211,223,0 +170751326260,223,0 +170751326310,223,0 +170751326357,223,0 +170751326405,223,0 +170751326453,223,0 +170751326501,223,0 +170751326549,223,0 +170751326597,223,0 +170751326644,223,0 +170751326692,223,0 +170751326740,223,0 +170751326788,223,0 +170751326835,223,0 +170751326883,223,0 +170751326933,223,0 +170751326981,223,0 +170751327029,223,0 +170751327078,223,0 +170751327127,223,0 +170751327175,223,0 +170751327223,223,0 +170751327271,223,0 +170751327321,223,0 +170751327369,223,0 +170751327418,223,0 +170751327466,223,0 +170751327514,223,0 +170751327562,223,0 +170751327609,223,0 +170751327657,223,0 +170751327705,223,0 +170751327753,223,0 +170751327801,223,0 +170751327849,223,0 +170751327897,223,0 +170751327945,223,0 +170751327994,223,0 +170751328042,223,0 +170751328090,223,0 +170751328138,223,0 +170751328187,223,0 +170751328235,223,0 +170751328283,223,0 +170751328331,223,0 +170751328379,223,0 +170751328427,223,0 +170751328475,223,0 +170751328523,223,0 +170751328573,223,0 +170751328620,223,0 +170751328670,223,0 +170751328719,223,0 +170751328769,223,0 +170751328818,223,0 +170751328868,223,0 +170751328916,223,0 +170751328966,223,0 +170751329013,223,0 +170751329061,223,0 +170751329111,223,0 +170751329159,223,0 +170751329207,223,0 +170751329257,223,0 +170751329304,223,0 +170751329354,223,0 +170751329403,223,0 +170751329451,223,0 +170751329501,223,0 +170751329550,223,0 +170751329598,223,0 +170751329648,223,0 +170751329696,223,0 +170751329744,223,0 +170751329792,223,0 +170751329841,223,0 +170751329889,223,0 +170751329937,223,0 +170751329987,223,0 +170751330036,223,0 +170751330084,223,0 +170751330132,223,0 +170751330181,223,0 +170751330229,223,0 +170751330277,223,0 +170751330325,223,0 +170751330375,223,0 +170751330423,223,0 +170751330471,223,0 +170751330518,223,0 +170751330566,223,0 +170751330616,223,0 +170751330664,223,0 +170751330713,223,0 +170751330763,223,0 +170751330811,223,0 +170751330860,223,0 +170751330908,223,0 +170751330956,223,0 +170751331004,223,0 +170751331054,223,0 +170751331102,223,0 +170751331151,223,0 +170751331201,223,0 +170751331249,223,0 +170751331297,223,0 +170751331345,223,0 +170751331394,223,0 +170751331442,223,0 +170751331492,223,0 +170751331540,222,0 +170751331587,223,0 +170751331635,223,0 +170751331683,223,0 +170751331733,223,0 +170751331782,223,0 +170751331832,223,0 +170751331881,223,0 +170751331929,223,0 +170751331979,223,0 +170751332027,223,0 +170751332075,223,0 +170751332123,223,0 +170751332171,223,0 +170751332220,223,0 +170751332268,223,0 +170751332316,223,0 +170751332364,223,0 +170751332412,223,0 +170751332461,223,0 +170751332509,223,0 +170751332557,223,0 +170751332605,223,0 +170751332653,223,0 +170751332701,223,0 +170751332749,223,0 +170751332797,223,0 +170751332845,223,0 +170751332893,223,0 +170751332941,223,0 +170751332989,223,0 +170751333036,223,0 +170751333084,223,0 +170751333134,223,0 +170751333184,223,0 +170751333232,223,0 +170751333279,223,0 +170751333327,223,0 +170751333375,223,0 +170751333423,223,0 +170751333473,223,0 +170751333521,223,0 +170751333569,223,0 +170751333617,223,0 +170751333666,223,0 +170751333714,223,0 +170751333764,223,0 +170751333812,223,0 +170751333861,223,0 +170751333909,223,0 +170751333959,223,0 +170751334007,223,0 +170751334056,223,0 +170751334104,223,0 +170751334152,223,0 +170751334202,223,0 +170751334251,223,0 +170751334299,223,0 +170751334347,223,0 +170751334397,223,0 +170751334446,223,0 +170751334496,223,0 +170751334544,223,0 +170751334593,223,0 +170751334641,223,0 +170751334689,223,0 +170751334737,223,0 +170751334787,223,0 +170751334835,223,0 +170751334883,223,0 +170751334931,223,0 +170751334979,223,0 +170751335027,223,0 +170751335075,223,0 +170751335122,223,0 +170751335170,223,0 +170751335220,223,0 +170751335268,223,0 +170751335316,223,0 +170751335364,223,0 +170751335413,223,0 +170751335461,223,0 +170751335511,223,0 +170751335559,223,0 +170751335607,223,0 +170751335655,223,0 +170751335704,223,0 +170751335754,223,0 +170751335802,223,0 +170751335850,223,0 +170751335898,223,0 +170751335947,223,0 +170751335995,223,0 +170751336043,223,0 +170751336092,223,0 +170751336140,223,0 +170751336188,223,0 +170751336238,223,0 +170751336287,223,0 +170751336337,223,0 +170751336386,223,0 +170751336434,223,0 +170751336484,223,0 +170751336534,223,0 +170751336581,223,0 +170751336629,223,0 +170751336679,223,0 +170751336727,223,0 +170751336777,223,0 +170751336824,223,0 +170751336874,223,0 +170751336922,223,0 +170751336972,223,0 +170751337019,223,0 +170751337067,223,0 +170751337115,223,0 +170751337165,223,0 +170751337213,223,0 +170751337260,223,0 +170751337308,223,0 +170751337356,223,0 +170751337404,223,0 +170751337452,223,0 +170751337502,223,0 +170751337550,223,0 +170751337599,223,0 +170751337649,223,0 +170751337697,223,0 +170751337745,223,0 +170751337793,223,0 +170751337842,223,0 +170751337892,223,0 +170751337940,223,0 +170751337988,223,0 +170751338036,223,0 +170751338084,223,0 +170751338133,223,0 +170751338183,223,0 +170751338231,223,0 +170751338279,223,0 +170751338327,223,0 +170751338375,223,0 +170751338423,223,0 +170751338472,223,0 +170751338522,223,0 +170751338571,223,0 +170751338621,223,0 +170751338669,223,0 +170751338718,223,0 +170751338768,223,0 +170751338816,223,0 +170751338865,223,0 +170751338915,223,0 +170751338963,223,0 +170751339013,223,0 +170751339062,223,0 +170751339110,223,0 +170751339159,223,0 +170751339209,223,0 +170751339257,223,0 +170751339305,223,0 +170751339353,223,0 +170751339402,223,0 +170751339452,223,0 +170751339501,223,0 +170751339549,223,0 +170751339599,223,0 +170751339647,223,0 +170751339697,223,0 +170751339746,223,0 +170751339796,223,0 +170751339844,223,0 +170751339893,223,0 +170751339941,223,0 +170751339991,223,0 +170751340039,223,0 +170751340087,223,0 +170751340136,223,0 +170751340186,223,0 +170751340235,223,0 +170751340283,223,0 +170751340331,223,0 +170751340381,223,0 +170751340430,223,0 +170751340478,223,0 +170751340526,223,0 +170751340574,223,0 +170751340624,223,0 +170751340673,223,0 +170751340721,223,0 +170751340769,223,0 +170751340819,223,0 +170751340867,223,0 +170751340915,223,0 +170751340962,223,0 +170751341012,223,0 +170751341060,223,0 +170751341108,223,0 +170751341157,223,0 +170751341205,223,0 +170751341253,223,0 +170751341303,223,0 +170751341351,223,0 +170751341400,223,0 +170751341448,223,0 +170751341498,223,0 +170751341547,223,0 +170751341595,223,0 +170751341645,223,0 +170751341693,223,0 +170751341742,223,0 +170751341792,223,0 +170751341841,223,0 +170751341889,223,0 +170751341937,223,0 +170751341987,223,0 +170751342036,223,0 +170751342084,223,0 +170751342134,223,0 +170751342183,223,0 +170751342231,223,0 +170751342281,223,0 +170751342330,223,0 +170751342378,223,0 +170751342426,223,0 +170751342476,223,0 +170751342525,223,0 +170751342575,223,0 +170751342623,223,0 +170751342672,223,0 +170751342720,223,0 +170751342768,223,0 +170751342816,223,0 +170751342866,223,0 +170751342914,223,0 +170751342962,223,0 +170751343010,223,0 +170751343058,223,0 +170751343107,223,0 +170751343157,223,0 +170751343206,223,0 +170751343254,223,0 +170751343304,223,0 +170751343352,223,0 +170751343399,223,0 +170751343447,223,0 +170751343495,223,0 +170751343543,223,0 +170751343591,223,0 +170751343641,223,0 +170751343690,223,0 +170751343740,223,0 +170751343788,223,0 +170751343837,223,0 +170751343885,223,0 +170751343933,223,0 +170751343983,223,0 +170751344031,223,0 +170751344080,223,0 +170751344130,223,0 +170751344178,223,0 +170751344225,223,0 +170751344273,223,0 +170751344321,223,0 +170751344369,223,0 +170751344418,223,0 +170751344466,223,0 +170751344516,223,0 +170751344565,223,0 +170751344615,223,0 +170751344663,223,0 +170751344711,223,0 +170751344760,223,0 +170751344808,223,0 +170751344858,223,0 +170751344907,223,0 +170751344955,223,0 +170751345003,223,0 +170751345053,223,0 +170751345101,223,0 +170751345148,223,0 +170751345196,223,0 +170751345244,223,0 +170751345292,223,0 +170751345340,223,0 +170751345390,223,0 +170751345438,223,0 +170751345487,223,0 +170751345535,223,0 +170751345583,223,0 +170751345631,223,0 +170751345679,223,0 +170751345728,223,0 +170751345776,223,0 +170751345824,223,0 +170751345872,223,0 +170751345920,224,0 +170751345968,224,0 +170751346018,225,0 +170751346067,225,0 +170751346117,225,0 +170751346166,225,0 +170751346216,225,0 +170751346265,225,0 +170751346313,226,0 +170751346361,225,0 +170751346411,226,0 +170751346460,226,0 +170751346508,226,0 +170751346558,225,0 +170751346607,227,0 +170751346657,217,0 +170751346707,215,0 +170751346754,216,0 +170751346802,217,0 +170751346852,218,0 +170751346901,220,0 +170751346949,219,0 +170751346997,220,0 +170751347045,220,0 +170751347095,221,0 +170751347144,222,0 +170751347194,222,0 +170751347242,223,0 +170751347290,223,0 +170751347338,224,0 +170751347387,222,0 +170751347435,224,0 +170751347483,224,0 +170751347533,225,0 +170751347582,225,0 +170751347630,226,0 +170751347680,225,0 +170751347729,217,0 +170751347779,217,0 +170751347828,219,0 +170751347876,219,0 +170751347926,221,0 +170751347974,220,0 +170751348023,222,0 +170751348073,217,0 +170751348121,222,0 +170751348169,223,0 +170751348218,224,0 +170751348266,224,0 +170751348316,224,0 +170751348365,224,0 +170751348415,225,0 +170751348463,225,0 +170751348511,226,0 +170751348559,226,0 +170751348608,225,0 +170751348656,215,0 +170751348704,216,0 +170751348752,216,0 +170751348802,217,0 +170751348851,219,0 +170751348899,219,0 +170751348949,221,0 +170751348998,222,0 +170751349048,221,0 +170751349097,223,0 +170751349147,224,0 +170751349195,225,0 +170751349243,226,0 +170751349292,226,0 +170751349340,226,0 +170751349390,229,0 +170751349438,227,0 +170751349487,227,0 +170751349537,217,0 +170751349586,215,0 +170751349636,215,0 +170751349684,215,0 +170751349733,216,0 +170751349783,216,0 +170751349832,217,0 +170751349880,217,0 +170751349928,218,0 +170751349976,219,0 +170751350026,221,0 +170751350075,222,0 +170751350123,222,0 +170751350171,224,0 +170751350219,224,0 +170751350269,225,0 +170751350317,226,0 +170751350365,226,0 +170751350413,227,0 +170751350461,224,0 +170751350509,215,0 +170751350557,215,0 +170751350605,215,0 +170751350654,216,0 +170751350702,216,0 +170751350750,218,0 +170751350798,218,0 +170751350848,220,0 +170751350897,220,0 +170751350945,221,0 +170751350995,222,0 +170751351044,225,0 +170751351094,224,0 +170751351142,226,0 +170751351190,227,0 +170751351238,225,0 +170751351286,226,0 +170751351334,227,0 +170751351383,223,0 +170751351431,215,0 +170751351479,215,0 +170751351527,216,0 +170751351575,216,0 +170751351625,217,0 +170751351673,216,0 +170751351722,218,0 +170751351770,220,0 +170751351818,220,0 +170751351868,221,0 +170751351916,224,0 +170751351965,224,0 +170751352015,224,0 +170751352064,226,0 +170751352114,226,0 +170751352162,225,0 +170751352211,227,0 +170751352259,228,0 +170751352307,226,0 +170751352357,216,0 +170751352405,216,0 +170751352453,216,0 +170751352501,219,0 +170751352548,218,0 +170751352598,220,0 +170751352648,219,0 +170751352697,220,0 +170751352745,222,0 +170751352793,222,0 +170751352842,223,0 +170751352890,223,0 +170751352938,224,0 +170751352988,225,0 +170751353036,225,0 +170751353085,226,0 +170751353133,221,0 +170751353183,225,0 +170751353231,227,0 +170751353278,215,0 +170751353326,216,0 +170751353374,215,0 +170751353422,216,0 +170751353470,217,0 +170751353518,218,0 +170751353566,219,0 +170751353614,220,0 +170751353662,221,0 +170751353710,221,0 +170751353759,223,0 +170751353807,223,0 +170751353855,224,0 +170751353903,226,0 +170751353953,225,0 +170751354002,225,0 +170751354050,226,0 +170751354098,225,0 +170751354146,226,0 +170751354194,216,0 +170751354242,215,0 +170751354292,215,0 +170751354339,215,0 +170751354387,216,0 +170751354436,216,0 +170751354484,216,0 +170751354531,217,0 +170751354581,218,0 +170751354630,220,0 +170751354678,221,0 +170751354726,222,0 +170751354776,222,0 +170751354824,224,0 +170751354873,224,0 +170751354921,226,0 +170751354971,225,0 +170751355021,219,0 +170751355068,224,0 +170751355116,215,0 +170751355164,215,0 +170751355212,215,0 +170751355260,215,0 +170751355308,216,0 +170751355356,216,0 +170751355404,217,0 +170751355454,217,0 +170751355502,218,0 +170751355551,220,0 +170751355601,221,0 +170751355650,223,0 +170751355700,224,0 +170751355749,224,0 +170751355797,224,0 +170751355845,225,0 +170751355893,228,0 +170751355941,226,0 +170751355989,226,0 +170751356037,216,0 +170751356087,215,0 +170751356135,215,0 +170751356184,215,0 +170751356232,216,0 +170751356282,217,0 +170751356330,216,0 +170751356377,217,0 +170751356426,217,0 +170751356475,218,0 +170751356525,220,0 +170751356573,221,0 +170751356620,221,0 +170751356670,220,0 +170751356718,220,0 +170751356766,223,0 +170751356814,224,0 +170751356862,224,0 +170751356910,225,0 +170751356958,217,0 +170751357007,215,0 +170751357055,215,0 +170751357105,216,0 +170751357153,216,0 +170751357201,216,0 +170751357249,217,0 +170751357298,218,0 +170751357346,219,0 +170751357394,220,0 +170751357444,220,0 +170751357492,222,0 +170751357540,224,0 +170751357588,224,0 +170751357637,224,0 +170751357685,224,0 +170751357735,225,0 +170751357783,225,0 +170751357831,227,0 +170751357878,217,0 +170751357928,215,0 +170751357978,216,0 +170751358026,216,0 +170751358075,217,0 +170751358125,218,0 +170751358173,218,0 +170751358222,219,0 +170751358270,220,0 +170751358318,221,0 +170751358366,221,0 +170751358416,222,0 +170751358465,224,0 +170751358513,225,0 +170751358563,226,0 +170751358612,226,0 +170751358660,226,0 +170751358710,225,0 +170751358758,226,0 +170751358806,217,0 +170751358855,216,0 +170751358905,216,0 +170751358954,217,0 +170751359004,219,0 +170751359052,219,0 +170751359101,220,0 +170751359149,220,0 +170751359199,223,0 +170751359248,223,0 +170751359298,224,0 +170751359346,224,0 +170751359394,225,0 +170751359442,228,0 +170751359490,227,0 +170751359539,226,0 +170751359589,226,0 +170751359638,227,0 +170751359686,227,0 +170751359734,218,0 +170751359782,218,0 +170751359832,220,0 +170751359880,220,0 +170751359928,220,0 +170751359976,221,0 +170751360025,222,0 +170751360075,223,0 +170751360123,223,0 +170751360171,225,0 +170751360220,227,0 +170751360268,227,0 +170751360316,226,0 +170751360364,229,0 +170751360412,229,0 +170751360461,227,0 +170751360511,227,0 +170751360561,227,0 +170751360608,226,0 +170751360656,217,0 +170751360704,216,0 +170751360752,217,0 +170751360800,218,0 +170751360848,220,0 +170751360898,219,0 +170751360947,221,0 +170751360997,221,0 +170751361046,222,0 +170751361096,222,0 +170751361145,223,0 +170751361193,225,0 +170751361241,225,0 +170751361289,225,0 +170751361339,226,0 +170751361387,226,0 +170751361435,228,0 +170751361483,227,0 +170751361531,226,0 +170751361580,217,0 +170751361630,216,0 +170751361678,217,0 +170751361726,218,0 +170751361775,220,0 +170751361825,220,0 +170751361874,220,0 +170751361922,221,0 +170751361970,221,0 +170751362020,223,0 +170751362069,224,0 +170751362117,224,0 +170751362167,226,0 +170751362216,225,0 +170751362264,226,0 +170751362312,226,0 +170751362360,227,0 +170751362409,227,0 +170751362457,226,0 +170751362507,217,0 +170751362555,217,0 +170751362604,217,0 +170751362652,218,0 +170751362700,219,0 +170751362748,220,0 +170751362798,220,0 +170751362847,221,0 +170751362895,222,0 +170751362945,223,0 +170751362993,225,0 +170751363041,224,0 +170751363089,225,0 +170751363136,226,0 +170751363184,225,0 +170751363234,226,0 +170751363284,226,0 +170751363333,226,0 +170751363381,226,0 +170751363429,217,0 +170751363477,216,0 +170751363525,217,0 +170751363573,218,0 +170751363621,219,0 +170751363669,220,0 +170751363718,220,0 +170751363766,222,0 +170751363814,221,0 +170751363862,222,0 +170751363912,223,0 +170751363960,224,0 +170751364009,225,0 +170751364057,225,0 +170751364105,227,0 +170751364155,226,0 +170751364204,228,0 +170751364252,227,0 +170751364300,226,0 +170751364348,217,0 +170751364398,215,0 +170751364447,216,0 +170751364495,217,0 +170751364545,218,0 +170751364593,219,0 +170751364641,219,0 +170751364690,220,0 +170751364738,221,0 +170751364786,223,0 +170751364836,224,0 +170751364884,225,0 +170751364932,225,0 +170751364979,226,0 +170751365027,227,0 +170751365077,226,0 +170751365125,227,0 +170751365173,223,0 +170751365222,223,0 +170751365272,223,0 +170751365320,215,0 +170751365368,215,0 +170751365416,216,0 +170751365464,217,0 +170751365513,218,0 +170751365561,220,0 +170751365609,220,0 +170751365657,221,0 +170751365705,223,0 +170751365755,222,0 +170751365803,223,0 +170751365851,226,0 +170751365899,226,0 +170751365948,224,0 +170751365996,225,0 +170751366044,223,0 +170751366094,222,0 +170751366142,225,0 +170751366190,225,0 +170751366238,215,0 +170751366285,214,0 +170751366333,214,0 +170751366381,215,0 +170751366431,215,0 +170751366479,216,0 +170751366528,215,0 +170751366578,216,0 +170751366626,217,0 +170751366674,217,0 +170751366722,217,0 +170751366771,218,0 +170751366819,219,0 +170751366867,220,0 +170751366917,219,0 +170751366966,220,0 +170751367015,221,0 +170751367062,223,0 +170751367112,222,0 +170751367162,225,0 +170751367211,225,0 +170751367261,225,0 +170751367310,229,0 +170751367358,227,0 +170751367406,225,0 +170751367456,227,0 +170751367505,227,0 +170751367555,225,0 +170751367603,217,0 +170751367651,215,0 +170751367699,216,0 +170751367748,216,0 +170751367796,216,0 +170751367844,217,0 +170751367894,218,0 +170751367941,218,0 +170751367989,219,0 +170751368037,219,0 +170751368085,221,0 +170751368135,223,0 +170751368184,224,0 +170751368232,225,0 +170751368280,224,0 +170751368328,224,0 +170751368376,225,0 +170751368424,224,0 +170751368472,226,0 +170751368522,217,0 +170751368571,216,0 +170751368619,217,0 +170751368669,218,0 +170751368717,219,0 +170751368765,220,0 +170751368814,221,0 +170751368864,222,0 +170751368913,223,0 +170751368963,223,0 +170751369012,224,0 +170751369062,225,0 +170751369110,226,0 +170751369159,227,0 +170751369209,227,0 +170751369259,226,0 +170751369308,225,0 +170751369356,226,0 +170751369404,226,0 +170751369452,217,0 +170751369502,216,0 +170751369551,217,0 +170751369599,219,0 +170751369647,219,0 +170751369695,220,0 +170751369743,222,0 +170751369793,222,0 +170751369842,223,0 +170751369890,224,0 +170751369938,224,0 +170751369986,225,0 +170751370034,225,0 +170751370082,226,0 +170751370130,225,0 +170751370178,226,0 +170751370227,225,0 +170751370277,226,0 +170751370325,225,0 +170751370374,217,0 +170751370424,215,0 +170751370472,215,0 +170751370520,216,0 +170751370568,217,0 +170751370616,218,0 +170751370665,219,0 +170751370713,220,0 +170751370763,221,0 +170751370812,221,0 +170751370862,222,0 +170751370910,223,0 +170751370958,223,0 +170751371006,225,0 +170751371055,222,0 +170751371105,224,0 +170751371154,226,0 +170751371204,226,0 +170751371253,226,0 +170751371301,216,0 +170751371349,215,0 +170751371399,215,0 +170751371447,216,0 +170751371496,217,0 +170751371544,218,0 +170751371594,219,0 +170751371643,220,0 +170751371691,221,0 +170751371739,221,0 +170751371787,223,0 +170751371835,223,0 +170751371883,225,0 +170751371931,224,0 +170751371981,225,0 +170751372030,225,0 +170751372078,226,0 +170751372126,226,0 +170751372176,226,0 +170751372225,217,0 +170751372273,215,0 +170751372323,215,0 +170751372372,217,0 +170751372422,218,0 +170751372470,219,0 +170751372519,220,0 +170751372569,220,0 +170751372617,220,0 +170751372665,221,0 +170751372713,223,0 +170751372761,223,0 +170751372809,224,0 +170751372858,226,0 +170751372906,224,0 +170751372955,227,0 +170751373005,226,0 +170751373054,226,0 +170751373102,228,0 +170751373150,217,0 +170751373198,215,0 +170751373246,216,0 +170751373294,214,0 +170751373342,216,0 +170751373390,217,0 +170751373438,218,0 +170751373486,219,0 +170751373534,220,0 +170751373582,219,0 +170751373629,221,0 +170751373677,221,0 +170751373725,222,0 +170751373773,223,0 +170751373821,224,0 +170751373871,224,0 +170751373918,226,0 +170751373966,226,0 +170751374014,225,0 +170751374062,218,0 +170751374110,215,0 +170751374160,215,0 +170751374208,216,0 +170751374256,216,0 +170751374304,217,0 +170751374352,218,0 +170751374400,218,0 +170751374449,219,0 +170751374497,220,0 +170751374545,221,0 +170751374593,223,0 +170751374643,224,0 +170751374691,224,0 +170751374738,225,0 +170751374786,225,0 +170751374834,228,0 +170751374884,229,0 +170751374931,227,0 +170751374979,218,0 +170751375027,216,0 +170751375075,215,0 +170751375123,216,0 +170751375173,216,0 +170751375220,217,0 +170751375268,219,0 +170751375316,219,0 +170751375364,219,0 +170751375412,220,0 +170751375460,222,0 +170751375508,223,0 +170751375557,224,0 +170751375607,225,0 +170751375655,225,0 +170751375703,225,0 +170751375752,225,0 +170751375800,225,0 +170751375848,226,0 +170751375898,224,0 +170751375947,215,0 +170751375995,215,0 +170751376045,215,0 +170751376094,216,0 +170751376144,216,0 +170751376192,217,0 +170751376240,217,0 +170751376289,218,0 +170751376339,219,0 +170751376387,220,0 +170751376435,221,0 +170751376485,222,0 +170751376534,222,0 +170751376582,223,0 +170751376632,225,0 +170751376680,225,0 +170751376728,226,0 +170751376777,226,0 +170751376825,219,0 +170751376875,215,0 +170751376922,215,0 +170751376970,216,0 +170751377018,216,0 +170751377066,217,0 +170751377114,216,0 +170751377162,217,0 +170751377212,217,0 +170751377260,218,0 +170751377309,219,0 +170751377357,220,0 +170751377405,221,0 +170751377453,222,0 +170751377503,222,0 +170751377552,223,0 +170751377600,223,0 +170751377650,224,0 +170751377699,225,0 +170751377747,226,0 +170751377797,215,0 +170751377845,216,0 +170751377893,217,0 +170751377941,218,0 +170751377988,219,0 +170751378036,220,0 +170751378084,221,0 +170751378134,220,0 +170751378181,221,0 +170751378229,222,0 +170751378279,224,0 +170751378328,223,0 +170751378376,225,0 +170751378424,227,0 +170751378472,227,0 +170751378520,221,0 +170751378568,225,0 +170751378616,226,0 +170751378664,226,0 +170751378711,218,0 +170751378759,218,0 +170751378809,219,0 +170751378858,219,0 +170751378906,221,0 +170751378954,222,0 +170751379004,222,0 +170751379052,222,0 +170751379100,223,0 +170751379148,224,0 +170751379196,224,0 +170751379244,226,0 +170751379291,232,0 +170751379339,226,0 +170751379387,226,0 +170751379437,227,0 +170751379486,226,0 +170751379536,227,0 +170751379585,226,0 +170751379633,218,0 +170751379681,219,0 +170751379731,220,0 +170751379780,221,0 +170751379828,221,0 +170751379878,223,0 +170751379926,223,0 +170751379974,225,0 +170751380022,223,0 +170751380071,225,0 +170751380119,225,0 +170751380167,226,0 +170751380215,227,0 +170751380263,226,0 +170751380311,226,0 +170751380361,227,0 +170751380410,227,0 +170751380458,226,0 +170751380506,226,0 +170751380554,220,0 +170751380604,219,0 +170751380652,220,0 +170751380701,222,0 +170751380749,223,0 +170751380799,223,0 +170751380846,224,0 +170751380894,227,0 +170751380944,226,0 +170751380992,226,0 +170751381040,226,0 +170751381089,226,0 +170751381139,227,0 +170751381188,227,0 +170751381236,226,0 +170751381284,227,0 +170751381334,227,0 +170751381382,226,0 +170751381430,226,0 +170751381478,217,0 +170751381527,217,0 +170751381575,218,0 +170751381623,219,0 +170751381671,219,0 +170751381719,221,0 +170751381769,221,0 +170751381817,222,0 +170751381866,223,0 +170751381916,224,0 +170751381964,225,0 +170751382013,225,0 +170751382061,226,0 +170751382111,228,0 +170751382159,227,0 +170751382208,226,0 +170751382258,227,0 +170751382306,227,0 +170751382355,225,0 +170751382403,216,0 +170751382451,215,0 +170751382501,216,0 +170751382548,217,0 +170751382596,218,0 +170751382644,219,0 +170751382694,220,0 +170751382742,220,0 +170751382790,222,0 +170751382838,224,0 +170751382886,224,0 +170751382934,225,0 +170751382982,225,0 +170751383029,224,0 +170751383077,226,0 +170751383125,225,0 +170751383173,226,0 +170751383221,227,0 +170751383271,225,0 +170751383319,217,0 +170751383367,215,0 +170751383416,216,0 +170751383464,216,0 +170751383512,217,0 +170751383560,217,0 +170751383608,218,0 +170751383656,219,0 +170751383704,220,0 +170751383752,221,0 +170751383801,223,0 +170751383849,223,0 +170751383897,226,0 +170751383947,225,0 +170751383996,225,0 +170751384044,221,0 +170751384094,225,0 +170751384143,225,0 +170751384191,226,0 +170751384239,217,0 +170751384287,216,0 +170751384337,216,0 +170751384385,216,0 +170751384432,217,0 +170751384480,218,0 +170751384528,220,0 +170751384576,219,0 +170751384626,220,0 +170751384674,221,0 +170751384721,222,0 +170751384769,223,0 +170751384819,223,0 +170751384867,224,0 +170751384915,225,0 +170751384964,225,0 +170751385014,227,0 +170751385062,226,0 +170751385110,226,0 +170751385159,224,0 +170751385207,215,0 +170751385255,216,0 +170751385303,216,0 +170751385351,217,0 +170751385399,217,0 +170751385447,218,0 +170751385495,219,0 +170751385543,220,0 +170751385591,219,0 +170751385639,221,0 +170751385688,222,0 +170751385736,224,0 +170751385784,223,0 +170751385832,225,0 +170751385880,225,0 +170751385928,225,0 +170751385978,226,0 +170751386026,226,0 +170751386075,224,0 +170751386123,216,0 +170751386173,215,0 +170751386222,216,0 +170751386270,216,0 +170751386318,217,0 +170751386366,218,0 +170751386416,218,0 +170751386465,219,0 +170751386515,220,0 +170751386563,220,0 +170751386611,222,0 +170751386660,222,0 +170751386708,223,0 +170751386756,223,0 +170751386806,225,0 +170751386855,224,0 +170751386903,225,0 +170751386951,226,0 +170751387001,225,0 +170751387050,216,0 +170751387098,215,0 +170751387146,217,0 +170751387194,216,0 +170751387242,218,0 +170751387292,219,0 +170751387341,219,0 +170751387391,219,0 +170751387439,220,0 +170751387488,221,0 +170751387538,224,0 +170751387587,224,0 +170751387637,224,0 +170751387686,225,0 +170751387734,224,0 +170751387782,223,0 +170751387832,227,0 +170751387880,226,0 +170751387928,226,0 +170751387976,215,0 +170751388023,216,0 +170751388073,217,0 +170751388121,217,0 +170751388169,217,0 +170751388218,218,0 +170751388266,220,0 +170751388316,221,0 +170751388364,223,0 +170751388412,223,0 +170751388461,230,0 +170751388511,224,0 +170751388559,225,0 +170751388607,227,0 +170751388657,227,0 +170751388705,226,0 +170751388753,227,0 +170751388800,227,0 +170751388848,225,0 +170751388896,216,0 +170751388944,216,0 +170751388994,217,0 +170751389042,218,0 +170751389091,218,0 +170751389139,219,0 +170751389187,219,0 +170751389237,220,0 +170751389285,222,0 +170751389334,222,0 +170751389382,223,0 +170751389430,225,0 +170751389478,224,0 +170751389526,224,0 +170751389576,226,0 +170751389624,226,0 +170751389673,227,0 +170751389721,226,0 +170751389771,225,0 +170751389819,216,0 +170751389868,215,0 +170751389916,215,0 +170751389964,215,0 +170751390014,216,0 +170751390062,217,0 +170751390110,217,0 +170751390159,218,0 +170751390207,219,0 +170751390255,220,0 +170751390303,221,0 +170751390351,222,0 +170751390399,223,0 +170751390449,224,0 +170751390497,224,0 +170751390544,224,0 +170751390594,224,0 +170751390642,225,0 +170751390690,225,0 +170751390739,217,0 +170751390787,215,0 +170751390835,215,0 +170751390883,216,0 +170751390933,216,0 +170751390982,217,0 +170751391030,217,0 +170751391078,218,0 +170751391128,219,0 +170751391176,219,0 +170751391224,222,0 +170751391272,223,0 +170751391321,223,0 +170751391371,224,0 +170751391419,224,0 +170751391467,224,0 +170751391516,225,0 +170751391564,224,0 +170751391612,226,0 +170751391660,218,0 +170751391708,216,0 +170751391758,217,0 +170751391807,218,0 +170751391855,220,0 +170751391903,222,0 +170751391951,221,0 +170751391999,222,0 +170751392049,223,0 +170751392096,223,0 +170751392144,224,0 +170751392192,224,0 +170751392240,225,0 +170751392288,226,0 +170751392338,226,0 +170751392386,226,0 +170751392434,226,0 +170751392483,227,0 +170751392531,227,0 +170751392579,219,0 +170751392629,218,0 +170751392677,217,0 +170751392725,220,0 +170751392774,221,0 +170751392824,220,0 +170751392872,218,0 +170751392921,222,0 +170751392971,224,0 +170751393019,224,0 +170751393067,225,0 +170751393116,226,0 +170751393166,228,0 +170751393214,226,0 +170751393262,227,0 +170751393310,231,0 +170751393358,226,0 +170751393407,226,0 +170751393455,226,0 +170751393503,217,0 +170751393553,216,0 +170751393601,216,0 +170751393649,217,0 +170751393697,219,0 +170751393746,220,0 +170751393795,220,0 +170751393845,221,0 +170751393895,222,0 +170751393944,222,0 +170751393992,225,0 +170751394040,223,0 +170751394088,224,0 +170751394137,225,0 +170751394187,226,0 +170751394236,225,0 +170751394286,225,0 +170751394336,226,0 +170751394384,226,0 +170751394433,223,0 +170751394481,216,0 +170751394531,217,0 +170751394578,218,0 +170751394626,219,0 +170751394676,221,0 +170751394725,222,0 +170751394775,222,0 +170751394823,223,0 +170751394871,222,0 +170751394920,223,0 +170751394968,224,0 +170751395018,224,0 +170751395066,226,0 +170751395114,226,0 +170751395163,226,0 +170751395213,226,0 +170751395262,225,0 +170751395310,226,0 +170751395358,225,0 +170751395406,216,0 +170751395454,216,0 +170751395502,218,0 +170751395552,219,0 +170751395601,219,0 +170751395651,221,0 +170751395698,222,0 +170751395746,222,0 +170751395796,224,0 +170751395844,223,0 +170751395894,224,0 +170751395943,225,0 +170751395993,226,0 +170751396041,225,0 +170751396088,227,0 +170751396136,227,0 +170751396186,226,0 +170751396234,226,0 +170751396283,225,0 +170751396331,216,0 +170751396381,216,0 +170751396429,218,0 +170751396477,218,0 +170751396526,219,0 +170751396574,220,0 +170751396622,220,0 +170751396670,221,0 +170751396718,223,0 +170751396766,224,0 +170751396814,225,0 +170751396864,224,0 +170751396913,225,0 +170751396963,225,0 +170751397012,226,0 +170751397062,226,0 +170751397111,226,0 +170751397160,227,0 +170751397208,226,0 +170751397258,217,0 +170751397307,215,0 +170751397355,216,0 +170751397405,218,0 +170751397453,218,0 +170751397501,214,0 +170751397549,218,0 +170751397597,220,0 +170751397645,221,0 +170751397693,221,0 +170751397741,223,0 +170751397789,223,0 +170751397837,226,0 +170751397886,226,0 +170751397934,226,0 +170751397984,226,0 +170751398032,226,0 +170751398081,226,0 +170751398131,225,0 +170751398179,217,0 +170751398228,215,0 +170751398276,216,0 +170751398324,217,0 +170751398374,218,0 +170751398422,219,0 +170751398470,219,0 +170751398518,219,0 +170751398567,220,0 +170751398617,221,0 +170751398665,221,0 +170751398713,222,0 +170751398761,222,0 +170751398810,224,0 +170751398858,225,0 +170751398906,226,0 +170751398954,225,0 +170751399002,227,0 +170751399050,226,0 +170751399097,226,0 +170751399147,216,0 +170751399195,216,0 +170751399243,217,0 +170751399291,218,0 +170751399339,218,0 +170751399386,219,0 +170751399434,221,0 +170751399482,221,0 +170751399532,223,0 +170751399580,222,0 +170751399628,225,0 +170751399675,223,0 +170751399723,223,0 +170751399773,224,0 +170751399821,227,0 +170751399869,228,0 +170751399916,226,0 +170751399964,226,0 +170751400014,226,0 +170751400062,217,0 +170751400110,217,0 +170751400158,217,0 +170751400207,218,0 +170751400255,219,0 +170751400305,219,0 +170751400353,220,0 +170751400401,221,0 +170751400450,221,0 +170751400500,223,0 +170751400548,223,0 +170751400597,223,0 +170751400647,225,0 +170751400695,225,0 +170751400743,226,0 +170751400791,226,0 +170751400838,228,0 +170751400886,226,0 +170751400936,225,0 +170751400985,217,0 +170751401035,216,0 +170751401083,217,0 +170751401131,218,0 +170751401180,219,0 +170751401228,220,0 +170751401278,221,0 +170751401327,222,0 +170751401377,223,0 +170751401425,224,0 +170751401474,224,0 +170751401522,225,0 +170751401570,226,0 +170751401618,227,0 +170751401666,228,0 +170751401714,228,0 +170751401762,230,0 +170751401811,229,0 +170751401859,225,0 +170751401907,217,0 +170751401955,215,0 +170751402003,215,0 +170751402051,216,0 +170751402100,218,0 +170751402148,218,0 +170751402198,219,0 +170751402246,221,0 +170751402295,220,0 +170751402343,221,0 +170751402391,225,0 +170751402439,223,0 +170751402489,237,0 +170751402537,224,0 +170751402585,223,0 +170751402632,224,0 +170751402680,224,0 +170751402730,225,0 +170751402778,226,0 +170751402825,225,0 +170751402875,215,0 +170751402923,215,0 +170751402971,216,0 +170751403020,216,0 +170751403068,217,0 +170751403116,217,0 +170751403164,218,0 +170751403213,219,0 +170751403261,220,0 +170751403309,220,0 +170751403357,221,0 +170751403405,222,0 +170751403453,223,0 +170751403502,225,0 +170751403550,226,0 +170751403600,221,0 +170751403648,226,0 +170751403695,225,0 +170751403743,225,0 +170751403791,217,0 +170751403839,216,0 +170751403888,217,0 +170751403936,217,0 +170751403984,219,0 +170751404032,219,0 +170751404080,220,0 +170751404128,221,0 +170751404176,221,0 +170751404224,222,0 +170751404272,223,0 +170751404319,223,0 +170751404367,225,0 +170751404415,226,0 +170751404465,225,0 +170751404513,227,0 +170751404560,227,0 +170751404608,226,0 +170751404656,226,0 +170751404704,224,0 +170751404752,215,0 +170751404800,215,0 +170751404848,215,0 +170751404896,216,0 +170751404943,217,0 +170751404991,217,0 +170751405039,218,0 +170751405087,218,0 +170751405135,219,0 +170751405184,220,0 +170751405232,222,0 +170751405280,224,0 +170751405328,225,0 +170751405376,225,0 +170751405424,226,0 +170751405472,225,0 +170751405520,226,0 +170751405567,226,0 +170751405615,226,0 +170751405663,217,0 +170751405711,215,0 +170751405759,215,0 +170751405807,216,0 +170751405855,216,0 +170751405904,217,0 +170751405952,217,0 +170751406000,218,0 +170751406050,219,0 +170751406097,219,0 +170751406145,220,0 +170751406193,222,0 +170751406241,222,0 +170751406289,223,0 +170751406337,224,0 +170751406385,224,0 +170751406433,225,0 +170751406481,226,0 +170751406530,225,0 +170751406580,217,0 +170751406629,216,0 +170751406679,216,0 +170751406727,216,0 +170751406775,216,0 +170751406823,216,0 +170751406871,217,0 +170751406918,217,0 +170751406966,217,0 +170751407014,218,0 +170751407062,219,0 +170751407112,220,0 +170751407160,221,0 +170751407209,222,0 +170751407257,224,0 +170751407305,223,0 +170751407353,224,0 +170751407401,225,0 +170751407449,225,0 +170751407497,225,0 +170751407546,216,0 +170751407596,216,0 +170751407643,216,0 +170751407691,216,0 +170751407741,217,0 +170751407789,217,0 +170751407837,217,0 +170751407884,218,0 +170751407932,219,0 +170751407980,220,0 +170751408028,220,0 +170751408076,221,0 +170751408125,222,0 +170751408173,224,0 +170751408221,224,0 +170751408269,226,0 +170751408317,225,0 +170751408366,225,0 +170751408414,225,0 +170751408462,217,0 +170751408510,216,0 +170751408558,216,0 +170751408608,217,0 +170751408656,217,0 +170751408703,219,0 +170751408753,219,0 +170751408803,220,0 +170751408852,222,0 +170751408902,222,0 +170751408951,222,0 +170751408999,224,0 +170751409049,224,0 +170751409097,224,0 +170751409146,224,0 +170751409196,224,0 +170751409244,224,0 +170751409292,225,0 +170751409341,225,0 +170751409391,217,0 +170751409439,216,0 +170751409486,216,0 +170751409536,217,0 +170751409584,218,0 +170751409633,218,0 +170751409683,219,0 +170751409733,219,0 +170751409782,220,0 +170751409830,222,0 +170751409878,222,0 +170751409926,223,0 +170751409974,224,0 +170751410022,224,0 +170751410071,227,0 +170751410119,225,0 +170751410167,227,0 +170751410217,225,0 +170751410265,225,0 +170751410313,217,0 +170751410361,215,0 +170751410409,216,0 +170751410458,216,0 +170751410506,217,0 +170751410556,218,0 +170751410604,219,0 +170751410653,219,0 +170751410701,221,0 +170751410751,222,0 +170751410799,224,0 +170751410847,225,0 +170751410896,225,0 +170751410944,227,0 +170751410992,226,0 +170751411040,226,0 +170751411089,225,0 +170751411137,228,0 +170751411187,226,0 +170751411236,225,0 +170751411284,217,0 +170751411334,216,0 +170751411382,216,0 +170751411429,217,0 +170751411479,218,0 +170751411527,219,0 +170751411575,220,0 +170751411624,220,0 +170751411672,223,0 +170751411720,223,0 +170751411768,225,0 +170751411817,224,0 +170751411865,224,0 +170751411915,226,0 +170751411963,225,0 +170751412010,225,0 +170751412058,226,0 +170751412106,226,0 +170751412156,222,0 +170751412205,217,0 +170751412253,217,0 +170751412301,218,0 +170751412351,218,0 +170751412399,220,0 +170751412447,223,0 +170751412495,222,0 +170751412543,224,0 +170751412590,223,0 +170751412638,225,0 +170751412688,225,0 +170751412736,225,0 +170751412785,226,0 +170751412833,227,0 +170751412881,226,0 +170751412929,227,0 +170751412979,226,0 +170751413027,227,0 +170751413076,226,0 +170751413124,222,0 +170751413172,221,0 +170751413220,221,0 +170751413268,222,0 +170751413316,222,0 +170751413364,223,0 +170751413412,223,0 +170751413459,225,0 +170751413507,225,0 +170751413557,225,0 +170751413605,225,0 +170751413653,226,0 +170751413701,227,0 +170751413749,226,0 +170751413798,226,0 +170751413846,225,0 +170751413894,226,0 +170751413944,226,0 +170751413992,227,0 +170751414040,225,0 +170751414089,218,0 +170751414139,218,0 +170751414188,219,0 +170751414236,221,0 +170751414286,222,0 +170751414335,222,0 +170751414383,223,0 +170751414433,224,0 +170751414482,223,0 +170751414532,225,0 +170751414581,225,0 +170751414629,225,0 +170751414677,226,0 +170751414727,226,0 +170751414777,226,0 +170751414824,226,0 +170751414872,226,0 +170751414922,226,0 +170751414971,226,0 +170751415019,217,0 +170751415069,216,0 +170751415117,217,0 +170751415166,218,0 +170751415214,219,0 +170751415262,221,0 +170751415310,221,0 +170751415358,221,0 +170751415406,222,0 +170751415454,223,0 +170751415502,223,0 +170751415550,224,0 +170751415598,225,0 +170751415646,224,0 +170751415695,225,0 +170751415743,227,0 +170751415791,227,0 +170751415839,227,0 +170751415887,225,0 +170751415935,217,0 +170751415982,215,0 +170751416030,216,0 +170751416078,216,0 +170751416126,217,0 +170751416174,218,0 +170751416224,219,0 +170751416273,220,0 +170751416323,223,0 +170751416370,222,0 +170751416420,223,0 +170751416468,223,0 +170751416516,224,0 +170751416564,225,0 +170751416613,225,0 +170751416661,225,0 +170751416709,226,0 +170751416757,226,0 +170751416805,226,0 +170751416854,220,0 +170751416902,215,0 +170751416950,215,0 +170751417000,215,0 +170751417049,216,0 +170751417097,216,0 +170751417147,217,0 +170751417196,219,0 +170751417244,220,0 +170751417292,220,0 +170751417342,221,0 +170751417390,222,0 +170751417439,223,0 +170751417489,224,0 +170751417538,224,0 +170751417586,225,0 +170751417636,226,0 +170751417685,225,0 +170751417733,225,0 +170751417783,225,0 +170751417833,216,0 +170751417882,216,0 +170751417932,215,0 +170751417979,216,0 +170751418029,216,0 +170751418078,216,0 +170751418126,217,0 +170751418174,218,0 +170751418222,219,0 +170751418270,221,0 +170751418318,222,0 +170751418366,222,0 +170751418414,226,0 +170751418461,223,0 +170751418511,225,0 +170751418559,224,0 +170751418607,225,0 +170751418655,226,0 +170751418702,225,0 +170751418750,217,0 +170751418798,214,0 +170751418846,214,0 +170751418894,214,0 +170751418944,214,0 +170751418991,215,0 +170751419039,215,0 +170751419089,215,0 +170751419137,216,0 +170751419186,216,0 +170751419234,216,0 +170751419282,217,0 +170751419330,218,0 +170751419378,220,0 +170751419426,221,0 +170751419474,222,0 +170751419523,223,0 +170751419571,222,0 +170751419619,229,0 +170751419667,217,0 +170751419715,216,0 +170751419762,217,0 +170751419810,217,0 +170751419858,216,0 +170751419906,217,0 +170751419954,218,0 +170751420002,218,0 +170751420050,223,0 +170751420098,221,0 +170751420145,221,0 +170751420193,224,0 +170751420241,223,0 +170751420289,223,0 +170751420337,224,0 +170751420387,226,0 +170751420434,226,0 +170751420482,226,0 +170751420530,226,0 +170751420578,225,0 +170751420628,217,0 +170751420675,216,0 +170751420723,216,0 +170751420771,215,0 +170751420819,217,0 +170751420867,218,0 +170751420917,219,0 +170751420965,219,0 +170751421012,220,0 +170751421060,221,0 +170751421108,222,0 +170751421156,222,0 +170751421204,223,0 +170751421252,224,0 +170751421301,224,0 +170751421349,225,0 +170751421397,226,0 +170751421447,225,0 +170751421494,226,0 +170751421542,217,0 +170751421590,217,0 +170751421638,217,0 +170751421686,218,0 +170751421734,218,0 +170751421782,219,0 +170751421832,222,0 +170751421880,220,0 +170751421929,221,0 +170751421977,221,0 +170751422025,223,0 +170751422073,225,0 +170751422121,224,0 +170751422169,225,0 +170751422217,227,0 +170751422265,225,0 +170751422313,226,0 +170751422362,227,0 +170751422412,227,0 +170751422460,227,0 +170751422509,216,0 +170751422557,216,0 +170751422607,217,0 +170751422656,218,0 +170751422706,219,0 +170751422754,219,0 +170751422802,220,0 +170751422850,220,0 +170751422899,221,0 +170751422947,221,0 +170751422997,223,0 +170751423045,226,0 +170751423094,223,0 +170751423144,225,0 +170751423192,225,0 +170751423240,226,0 +170751423288,226,0 +170751423337,226,0 +170751423385,226,0 +170751423433,218,0 +170751423481,218,0 +170751423529,218,0 +170751423577,219,0 +170751423627,220,0 +170751423675,221,0 +170751423723,220,0 +170751423772,222,0 +170751423822,222,0 +170751423871,222,0 +170751423921,223,0 +170751423969,226,0 +170751424017,224,0 +170751424065,224,0 +170751424113,228,0 +170751424161,226,0 +170751424210,226,0 +170751424258,227,0 +170751424308,226,0 +170751424357,218,0 +170751424407,218,0 +170751424456,218,0 +170751424506,219,0 +170751424555,220,0 +170751424603,221,0 +170751424653,222,0 +170751424702,221,0 +170751424750,222,0 +170751424798,224,0 +170751424848,223,0 +170751424897,226,0 +170751424947,225,0 +170751424997,225,0 +170751425044,225,0 +170751425092,225,0 +170751425140,226,0 +170751425190,226,0 +170751425238,225,0 +170751425286,218,0 +170751425335,219,0 +170751425383,220,0 +170751425433,220,0 +170751425481,221,0 +170751425529,223,0 +170751425577,222,0 +170751425626,225,0 +170751425674,224,0 +170751425722,225,0 +170751425772,226,0 +170751425820,227,0 +170751425869,226,0 +170751425917,225,0 +170751425965,226,0 +170751426015,226,0 +170751426063,226,0 +170751426111,226,0 +170751426159,226,0 +170751426208,220,0 +170751426258,218,0 +170751426307,219,0 +170751426357,220,0 +170751426405,222,0 +170751426453,222,0 +170751426502,223,0 +170751426550,223,0 +170751426598,224,0 +170751426646,224,0 +170751426694,225,0 +170751426743,225,0 +170751426791,226,0 +170751426839,227,0 +170751426887,226,0 +170751426935,226,0 +170751426983,226,0 +170751427031,226,0 +170751427080,226,0 +170751427128,224,0 +170751427176,216,0 +170751427224,216,0 +170751427273,217,0 +170751427321,218,0 +170751427369,218,0 +170751427417,219,0 +170751427465,220,0 +170751427512,220,0 +170751427560,222,0 +170751427608,223,0 +170751427656,223,0 +170751427706,223,0 +170751427754,224,0 +170751427802,226,0 +170751427851,226,0 +170751427901,228,0 +170751427950,226,0 +170751428000,226,0 +170751428049,226,0 +170751428099,217,0 +170751428147,216,0 +170751428195,216,0 +170751428244,216,0 +170751428292,217,0 +170751428340,218,0 +170751428390,219,0 +170751428438,220,0 +170751428487,220,0 +170751428535,221,0 +170751428583,223,0 +170751428633,223,0 +170751428682,224,0 +170751428732,225,0 +170751428781,225,0 +170751428831,226,0 +170751428879,225,0 +170751428927,225,0 +170751428975,225,0 +170751429022,217,0 +170751429070,215,0 +170751429118,215,0 +170751429166,216,0 +170751429214,216,0 +170751429264,217,0 +170751429312,218,0 +170751429361,219,0 +170751429409,220,0 +170751429459,222,0 +170751429507,222,0 +170751429556,223,0 +170751429604,224,0 +170751429652,223,0 +170751429702,220,0 +170751429751,226,0 +170751429801,227,0 +170751429851,226,0 +170751429899,226,0 +170751429947,223,0 +170751429996,215,0 +170751430044,215,0 +170751430092,216,0 +170751430142,215,0 +170751430189,216,0 +170751430237,217,0 +170751430285,217,0 +170751430333,219,0 +170751430383,220,0 +170751430433,220,0 +170751430480,221,0 +170751430528,222,0 +170751430576,223,0 +170751430626,223,0 +170751430675,225,0 +170751430723,224,0 +170751430771,224,0 +170751430821,224,0 +170751430869,225,0 +170751430917,217,0 +170751430966,215,0 +170751431016,215,0 +170751431064,216,0 +170751431112,216,0 +170751431161,216,0 +170751431211,217,0 +170751431259,217,0 +170751431308,218,0 +170751431356,220,0 +170751431406,221,0 +170751431454,221,0 +170751431503,225,0 +170751431553,222,0 +170751431601,224,0 +170751431649,224,0 +170751431697,225,0 +170751431745,225,0 +170751431794,225,0 +170751431844,217,0 +170751431893,215,0 +170751431943,215,0 +170751431991,215,0 +170751432039,216,0 +170751432088,216,0 +170751432138,216,0 +170751432186,217,0 +170751432235,219,0 +170751432285,220,0 +170751432333,220,0 +170751432381,223,0 +170751432430,222,0 +170751432478,223,0 +170751432528,224,0 +170751432576,225,0 +170751432624,225,0 +170751432671,225,0 +170751432719,225,0 +170751432767,217,0 +170751432815,215,0 +170751432863,215,0 +170751432911,215,0 +170751432959,215,0 +170751433007,216,0 +170751433055,217,0 +170751433103,218,0 +170751433150,218,0 +170751433198,219,0 +170751433246,220,0 +170751433294,222,0 +170751433343,221,0 +170751433391,223,0 +170751433439,223,0 +170751433489,225,0 +170751433538,225,0 +170751433588,225,0 +170751433636,226,0 +170751433684,225,0 +170751433732,216,0 +170751433780,215,0 +170751433827,215,0 +170751433875,216,0 +170751433923,217,0 +170751433971,218,0 +170751434019,220,0 +170751434067,221,0 +170751434115,221,0 +170751434163,221,0 +170751434211,224,0 +170751434259,223,0 +170751434307,225,0 +170751434355,226,0 +170751434403,225,0 +170751434451,227,0 +170751434500,225,0 +170751434548,223,0 +170751434596,225,0 +170751434644,217,0 +170751434692,215,0 +170751434740,215,0 +170751434788,215,0 +170751434836,216,0 +170751434884,216,0 +170751434933,218,0 +170751434981,219,0 +170751435029,220,0 +170751435077,220,0 +170751435125,221,0 +170751435173,222,0 +170751435220,223,0 +170751435268,224,0 +170751435316,224,0 +170751435364,225,0 +170751435412,226,0 +170751435460,227,0 +170751435508,225,0 +170751435556,225,0 +170751435604,215,0 +170751435652,216,0 +170751435699,215,0 +170751435749,217,0 +170751435797,218,0 +170751435845,218,0 +170751435892,220,0 +170751435940,221,0 +170751435988,221,0 +170751436036,222,0 +170751436084,224,0 +170751436132,224,0 +170751436181,226,0 +170751436229,226,0 +170751436277,224,0 +170751436327,225,0 +170751436375,225,0 +170751436422,226,0 +170751436470,224,0 +170751436518,216,0 +170751436568,216,0 +170751436617,216,0 +170751436665,217,0 +170751436713,218,0 +170751436761,218,0 +170751436809,219,0 +170751436858,219,0 +170751436906,221,0 +170751436954,222,0 +170751437002,223,0 +170751437050,223,0 +170751437098,225,0 +170751437145,224,0 +170751437193,225,0 +170751437241,225,0 +170751437289,225,0 +170751437337,225,0 +170751437385,226,0 +170751437433,226,0 +170751437481,216,0 +170751437529,215,0 +170751437576,215,0 +170751437624,216,0 +170751437672,216,0 +170751437720,218,0 +170751437768,218,0 +170751437816,219,0 +170751437864,221,0 +170751437913,220,0 +170751437961,221,0 +170751438011,223,0 +170751438059,223,0 +170751438108,224,0 +170751438156,224,0 +170751438205,227,0 +170751438253,227,0 +170751438303,225,0 +170751438352,225,0 +170751438402,216,0 +170751438451,216,0 +170751438499,216,0 +170751438547,217,0 +170751438595,217,0 +170751438643,218,0 +170751438691,219,0 +170751438739,220,0 +170751438789,220,0 +170751438838,222,0 +170751438886,222,0 +170751438935,222,0 +170751438983,223,0 +170751439031,225,0 +170751439081,224,0 +170751439130,224,0 +170751439178,224,0 +170751439228,225,0 +170751439277,225,0 +170751439325,217,0 +170751439375,216,0 +170751439423,217,0 +170751439471,218,0 +170751439519,219,0 +170751439566,219,0 +170751439616,220,0 +170751439665,221,0 +170751439715,221,0 +170751439763,222,0 +170751439812,223,0 +170751439860,223,0 +170751439910,224,0 +170751439959,224,0 +170751440009,226,0 +170751440057,225,0 +170751440105,226,0 +170751440153,227,0 +170751440201,226,0 +170751440249,217,0 +170751440297,216,0 +170751440345,217,0 +170751440393,219,0 +170751440441,219,0 +170751440489,219,0 +170751440538,220,0 +170751440586,221,0 +170751440634,221,0 +170751440682,222,0 +170751440730,223,0 +170751440778,224,0 +170751440826,225,0 +170751440874,224,0 +170751440923,226,0 +170751440973,226,0 +170751441022,225,0 +170751441070,225,0 +170751441120,226,0 +170751441169,225,0 +170751441219,216,0 +170751441268,216,0 +170751441316,216,0 +170751441364,217,0 +170751441414,218,0 +170751441463,218,0 +170751441513,219,0 +170751441562,221,0 +170751441612,221,0 +170751441660,222,0 +170751441708,223,0 +170751441757,224,0 +170751441805,224,0 +170751441853,224,0 +170751441903,225,0 +170751441951,226,0 +170751442000,226,0 +170751442048,225,0 +170751442098,225,0 +170751442147,215,0 +170751442197,215,0 +170751442246,215,0 +170751442296,215,0 +170751442344,216,0 +170751442392,216,0 +170751442440,216,0 +170751442489,216,0 +170751442539,217,0 +170751442588,219,0 +170751442636,220,0 +170751442684,220,0 +170751442732,222,0 +170751442782,222,0 +170751442831,223,0 +170751442881,223,0 +170751442930,223,0 +170751442980,224,0 +170751443028,225,0 +170751443076,216,0 +170751443124,216,0 +170751443172,215,0 +170751443220,216,0 +170751443269,217,0 +170751443319,218,0 +170751443368,218,0 +170751443416,219,0 +170751443464,221,0 +170751443514,223,0 +170751443563,222,0 +170751443611,223,0 +170751443659,224,0 +170751443709,224,0 +170751443757,224,0 +170751443806,224,0 +170751443854,224,0 +170751443902,225,0 +170751443950,225,0 +170751444000,217,0 +170751444048,216,0 +170751444096,217,0 +170751444145,218,0 +170751444193,218,0 +170751444241,220,0 +170751444289,220,0 +170751444337,221,0 +170751444385,222,0 +170751444433,224,0 +170751444481,224,0 +170751444529,224,0 +170751444577,225,0 +170751444625,225,0 +170751444673,227,0 +170751444721,225,0 +170751444771,227,0 +170751444819,229,0 +170751444867,227,0 +170751444915,224,0 +170751444964,216,0 +170751445012,216,0 +170751445061,217,0 +170751445109,218,0 +170751445157,219,0 +170751445205,219,0 +170751445253,220,0 +170751445302,220,0 +170751445352,221,0 +170751445400,222,0 +170751445448,222,0 +170751445496,224,0 +170751445544,224,0 +170751445591,225,0 +170751445639,224,0 +170751445689,225,0 +170751445737,225,0 +170751445785,226,0 +170751445834,225,0 +170751445882,216,0 +170751445931,215,0 +170751445979,216,0 +170751446027,217,0 +170751446077,218,0 +170751446126,218,0 +170751446174,219,0 +170751446222,220,0 +170751446272,220,0 +170751446321,222,0 +170751446369,223,0 +170751446417,224,0 +170751446467,225,0 +170751446517,225,0 +170751446564,226,0 +170751446612,226,0 +170751446662,225,0 +170751446710,224,0 +170751446759,225,0 +170751446807,217,0 +170751446857,216,0 +170751446907,217,0 +170751446956,218,0 +170751447004,219,0 +170751447052,220,0 +170751447102,220,0 +170751447151,223,0 +170751447199,221,0 +170751447247,222,0 +170751447295,222,0 +170751447343,225,0 +170751447393,225,0 +170751447442,226,0 +170751447492,226,0 +170751447541,227,0 +170751447591,226,0 +170751447640,226,0 +170751447690,226,0 +170751447738,218,0 +170751447786,217,0 +170751447835,218,0 +170751447883,218,0 +170751447931,219,0 +170751447979,220,0 +170751448027,220,0 +170751448077,222,0 +170751448125,222,0 +170751448174,223,0 +170751448224,224,0 +170751448273,224,0 +170751448321,224,0 +170751448371,224,0 +170751448419,226,0 +170751448467,226,0 +170751448516,227,0 +170751448566,227,0 +170751448614,226,0 +170751448663,218,0 +170751448711,217,0 +170751448759,217,0 +170751448807,219,0 +170751448855,220,0 +170751448905,221,0 +170751448952,222,0 +170751449002,222,0 +170751449050,223,0 +170751449099,225,0 +170751449148,225,0 +170751449197,225,0 +170751449246,225,0 +170751449296,225,0 +170751449346,226,0 +170751449393,226,0 +170751449441,226,0 +170751449489,226,0 +170751449539,225,0 +170751449588,218,0 +170751449638,215,0 +170751449686,216,0 +170751449734,217,0 +170751449782,218,0 +170751449831,219,0 +170751449881,220,0 +170751449929,221,0 +170751449977,222,0 +170751450025,222,0 +170751450074,223,0 +170751450124,225,0 +170751450172,224,0 +170751450221,226,0 +170751450271,225,0 +170751450319,227,0 +170751450368,225,0 +170751450416,224,0 +170751450466,226,0 +170751450514,224,0 +170751450562,215,0 +170751450610,215,0 +170751450658,216,0 +170751450706,216,0 +170751450755,216,0 +170751450803,216,0 +170751450853,217,0 +170751450901,218,0 +170751450949,219,0 +170751450998,220,0 +170751451046,221,0 +170751451094,222,0 +170751451142,223,0 +170751451192,224,0 +170751451241,225,0 +170751451289,224,0 +170751451338,225,0 +170751451386,226,0 +170751451434,224,0 +170751451482,217,0 +170751451530,215,0 +170751451580,216,0 +170751451629,216,0 +170751451677,217,0 +170751451725,216,0 +170751451773,217,0 +170751451821,218,0 +170751451871,218,0 +170751451920,219,0 +170751451968,220,0 +170751452016,221,0 +170751452064,222,0 +170751452114,223,0 +170751452162,224,0 +170751452210,224,0 +170751452258,224,0 +170751452306,224,0 +170751452355,225,0 +170751452403,222,0 +170751452451,216,0 +170751452499,216,0 +170751452547,217,0 +170751452595,218,0 +170751452643,219,0 +170751452693,219,0 +170751452741,220,0 +170751452789,221,0 +170751452838,223,0 +170751452886,222,0 +170751452936,224,0 +170751452983,224,0 +170751453031,224,0 +170751453081,226,0 +170751453129,227,0 +170751453178,226,0 +170751453226,227,0 +170751453274,226,0 +170751453324,225,0 +170751453372,217,0 +170751453420,217,0 +170751453469,217,0 +170751453519,219,0 +170751453568,219,0 +170751453616,220,0 +170751453666,220,0 +170751453715,223,0 +170751453763,223,0 +170751453811,224,0 +170751453859,225,0 +170751453909,225,0 +170751453958,225,0 +170751454008,225,0 +170751454057,226,0 +170751454105,227,0 +170751454153,226,0 +170751454203,226,0 +170751454251,225,0 +170751454299,217,0 +170751454347,216,0 +170751454395,216,0 +170751454443,218,0 +170751454491,218,0 +170751454539,219,0 +170751454586,221,0 +170751454634,221,0 +170751454682,221,0 +170751454730,222,0 +170751454780,224,0 +170751454828,224,0 +170751454876,225,0 +170751454925,226,0 +170751454975,224,0 +170751455023,226,0 +170751455071,226,0 +170751455119,226,0 +170751455167,226,0 +170751455216,218,0 +170751455264,216,0 +170751455312,216,0 +170751455360,217,0 +170751455409,218,0 +170751455457,220,0 +170751455505,220,0 +170751455553,222,0 +170751455601,221,0 +170751455649,222,0 +170751455698,223,0 +170751455746,223,0 +170751455796,225,0 +170751455844,225,0 +170751455891,226,0 +170751455939,227,0 +170751455987,226,0 +170751456035,227,0 +170751456083,226,0 +170751456132,225,0 +170751456182,216,0 +170751456230,217,0 +170751456278,218,0 +170751456325,218,0 +170751456373,220,0 +170751456421,219,0 +170751456469,221,0 +170751456517,220,0 +170751456565,221,0 +170751456614,222,0 +170751456662,223,0 +170751456710,223,0 +170751456758,226,0 +170751456808,232,0 +170751456855,226,0 +170751456903,226,0 +170751456951,225,0 +170751456999,225,0 +170751457049,225,0 +170751457097,218,0 +170751457144,217,0 +170751457192,219,0 +170751457240,220,0 +170751457290,220,0 +170751457338,221,0 +170751457386,222,0 +170751457433,222,0 +170751457481,224,0 +170751457529,223,0 +170751457579,224,0 +170751457627,225,0 +170751457675,225,0 +170751457724,224,0 +170751457772,225,0 +170751457820,224,0 +170751457868,225,0 +170751457916,225,0 +170751457964,225,0 +170751458011,224,0 +170751458061,216,0 +170751458109,216,0 +170751458158,216,0 +170751458206,217,0 +170751458254,218,0 +170751458302,220,0 +170751458350,221,0 +170751458400,221,0 +170751458448,222,0 +170751458497,222,0 +170751458547,224,0 +170751458596,226,0 +170751458644,224,0 +170751458692,224,0 +170751458740,224,0 +170751458788,225,0 +170751458836,225,0 +170751458886,226,0 +170751458934,226,0 +170751458983,217,0 +170751459033,215,0 +170751459081,216,0 +170751459129,217,0 +170751459178,218,0 +170751459226,219,0 +170751459274,219,0 +170751459324,220,0 +170751459372,221,0 +170751459420,221,0 +170751459469,225,0 +170751459517,223,0 +170751459565,223,0 +170751459615,224,0 +170751459664,224,0 +170751459712,224,0 +170751459760,225,0 +170751459810,226,0 +170751459859,225,0 +170751459909,217,0 +170751459957,215,0 +170751460005,215,0 +170751460054,216,0 +170751460104,217,0 +170751460152,218,0 +170751460200,219,0 +170751460248,219,0 +170751460295,220,0 +170751460343,221,0 +170751460391,222,0 +170751460439,222,0 +170751460487,223,0 +170751460535,224,0 +170751460583,224,0 +170751460631,225,0 +170751460679,226,0 +170751460728,225,0 +170751460778,226,0 +170751460826,226,0 +170751460874,216,0 +170751460922,216,0 +170751460970,216,0 +170751461018,216,0 +170751461067,217,0 +170751461117,217,0 +170751461166,218,0 +170751461214,219,0 +170751461264,220,0 +170751461312,220,0 +170751461360,222,0 +170751461409,222,0 +170751461459,222,0 +170751461507,223,0 +170751461555,224,0 +170751461604,225,0 +170751461652,225,0 +170751461700,225,0 +170751461750,225,0 +170751461798,218,0 +170751461846,215,0 +170751461894,215,0 +170751461941,215,0 +170751461991,216,0 +170751462039,216,0 +170751462088,216,0 +170751462136,216,0 +170751462186,217,0 +170751462235,218,0 +170751462285,219,0 +170751462333,220,0 +170751462381,221,0 +170751462429,222,0 +170751462478,223,0 +170751462526,223,0 +170751462574,224,0 +170751462622,225,0 +170751462670,226,0 +170751462718,216,0 +170751462766,215,0 +170751462814,215,0 +170751462862,216,0 +170751462912,216,0 +170751462960,216,0 +170751463008,216,0 +170751463056,217,0 +170751463104,218,0 +170751463153,219,0 +170751463203,219,0 +170751463252,220,0 +170751463300,222,0 +170751463350,223,0 +170751463399,224,0 +170751463447,225,0 +170751463497,224,0 +170751463546,225,0 +170751463594,225,0 +170751463642,224,0 +170751463690,216,0 +170751463738,215,0 +170751463786,215,0 +170751463834,215,0 +170751463884,216,0 +170751463933,217,0 +170751463981,217,0 +170751464031,218,0 +170751464080,219,0 +170751464128,220,0 +170751464178,221,0 +170751464227,221,0 +170751464277,223,0 +170751464325,223,0 +170751464374,224,0 +170751464424,225,0 +170751464473,224,0 +170751464521,225,0 +170751464569,225,0 +170751464619,216,0 +170751464667,214,0 +170751464715,214,0 +170751464763,215,0 +170751464811,216,0 +170751464859,216,0 +170751464907,216,0 +170751464955,216,0 +170751465003,217,0 +170751465051,218,0 +170751465100,220,0 +170751465148,222,0 +170751465198,222,0 +170751465246,225,0 +170751465295,223,0 +170751465343,224,0 +170751465393,224,0 +170751465441,224,0 +170751465490,225,0 +170751465540,217,0 +170751465588,215,0 +170751465635,215,0 +170751465685,216,0 +170751465733,216,0 +170751465783,216,0 +170751465831,216,0 +170751465880,217,0 +170751465930,216,0 +170751465977,217,0 +170751466027,219,0 +170751466075,220,0 +170751466123,221,0 +170751466172,222,0 +170751466222,223,0 +170751466272,224,0 +170751466321,224,0 +170751466369,225,0 +170751466417,224,0 +170751466465,225,0 +170751466513,215,0 +170751466561,215,0 +170751466609,216,0 +170751466657,216,0 +170751466705,216,0 +170751466753,216,0 +170751466801,216,0 +170751466849,218,0 +170751466898,219,0 +170751466948,220,0 +170751466996,222,0 +170751467045,223,0 +170751467095,223,0 +170751467143,223,0 +170751467192,224,0 +170751467240,224,0 +170751467288,224,0 +170751467338,223,0 +170751467386,226,0 +170751467434,217,0 +170751467483,215,0 +170751467531,216,0 +170751467579,216,0 +170751467629,216,0 +170751467678,217,0 +170751467728,218,0 +170751467777,218,0 +170751467825,220,0 +170751467875,222,0 +170751467924,223,0 +170751467974,222,0 +170751468022,223,0 +170751468070,223,0 +170751468118,224,0 +170751468166,224,0 +170751468215,225,0 +170751468265,226,0 +170751468314,226,0 +170751468362,217,0 +170751468412,215,0 +170751468460,215,0 +170751468507,215,0 +170751468555,216,0 +170751468603,217,0 +170751468651,219,0 +170751468699,218,0 +170751468747,219,0 +170751468795,219,0 +170751468844,221,0 +170751468892,222,0 +170751468940,223,0 +170751468988,222,0 +170751469036,223,0 +170751469084,224,0 +170751469134,225,0 +170751469182,225,0 +170751469230,225,0 +170751469279,225,0 +170751469327,215,0 +170751469375,215,0 +170751469425,215,0 +170751469474,216,0 +170751469524,217,0 +170751469572,218,0 +170751469620,220,0 +170751469668,219,0 +170751469717,221,0 +170751469765,221,0 +170751469815,223,0 +170751469864,224,0 +170751469912,224,0 +170751469960,225,0 +170751470008,225,0 +170751470056,225,0 +170751470104,225,0 +170751470153,226,0 +170751470201,224,0 +170751470251,217,0 +170751470300,215,0 +170751470348,216,0 +170751470398,217,0 +170751470446,219,0 +170751470494,219,0 +170751470542,221,0 +170751470590,221,0 +170751470638,223,0 +170751470687,223,0 +170751470735,223,0 +170751470783,223,0 +170751470832,225,0 +170751470880,225,0 +170751470928,225,0 +170751470978,225,0 +170751471027,226,0 +170751471075,226,0 +170751471123,226,0 +170751471173,225,0 +170751471221,216,0 +170751471270,217,0 +170751471318,217,0 +170751471366,218,0 +170751471414,219,0 +170751471463,220,0 +170751471513,220,0 +170751471562,221,0 +170751471610,222,0 +170751471660,218,0 +170751471708,223,0 +170751471757,224,0 +170751471807,224,0 +170751471855,224,0 +170751471903,224,0 +170751471952,225,0 +170751472000,225,0 +170751472048,226,0 +170751472096,225,0 +170751472144,217,0 +170751472192,216,0 +170751472242,217,0 +170751472290,219,0 +170751472338,219,0 +170751472385,220,0 +170751472435,221,0 +170751472484,220,0 +170751472532,221,0 +170751472580,222,0 +170751472630,221,0 +170751472678,223,0 +170751472726,224,0 +170751472774,225,0 +170751472822,224,0 +170751472871,225,0 +170751472921,226,0 +170751472969,225,0 +170751473018,225,0 +170751473068,219,0 +170751473117,218,0 +170751473165,219,0 +170751473213,219,0 +170751473263,220,0 +170751473312,223,0 +170751473360,221,0 +170751473408,222,0 +170751473458,223,0 +170751473507,225,0 +170751473557,224,0 +170751473606,225,0 +170751473656,228,0 +170751473704,227,0 +170751473752,227,0 +170751473801,227,0 +170751473851,226,0 +170751473899,226,0 +170751473948,226,0 +170751473998,217,0 +170751474047,216,0 +170751474097,218,0 +170751474145,218,0 +170751474194,220,0 +170751474242,219,0 +170751474290,222,0 +170751474338,222,0 +170751474387,222,0 +170751474435,224,0 +170751474485,226,0 +170751474534,224,0 +170751474584,226,0 +170751474632,226,0 +170751474680,226,0 +170751474728,227,0 +170751474777,226,0 +170751474827,227,0 +170751474876,225,0 +170751474924,225,0 +170751474972,216,0 +170751475020,216,0 +170751475068,217,0 +170751475118,218,0 +170751475166,219,0 +170751475214,220,0 +170751475261,221,0 +170751475309,222,0 +170751475357,222,0 +170751475405,222,0 +170751475455,224,0 +170751475503,225,0 +170751475550,226,0 +170751475598,225,0 +170751475646,227,0 +170751475694,227,0 +170751475742,226,0 +170751475790,226,0 +170751475838,226,0 +170751475886,217,0 +170751475933,216,0 +170751475981,217,0 +170751476029,218,0 +170751476079,219,0 +170751476127,220,0 +170751476176,221,0 +170751476224,222,0 +170751476272,222,0 +170751476320,222,0 +170751476368,224,0 +170751476416,225,0 +170751476463,225,0 +170751476511,225,0 +170751476559,226,0 +170751476607,225,0 +170751476657,226,0 +170751476704,226,0 +170751476752,226,0 +170751476800,226,0 +170751476848,216,0 +170751476898,216,0 +170751476947,216,0 +170751476995,216,0 +170751477043,217,0 +170751477091,217,0 +170751477139,218,0 +170751477188,219,0 +170751477238,221,0 +170751477287,220,0 +170751477335,222,0 +170751477383,224,0 +170751477431,225,0 +170751477481,228,0 +170751477529,226,0 +170751477577,225,0 +170751477626,226,0 +170751477676,233,0 +170751477724,226,0 +170751477772,217,0 +170751477820,216,0 +170751477868,216,0 +170751477917,216,0 +170751477967,217,0 +170751478016,218,0 +170751478064,218,0 +170751478112,220,0 +170751478162,220,0 +170751478210,221,0 +170751478258,222,0 +170751478306,225,0 +170751478355,224,0 +170751478405,224,0 +170751478454,225,0 +170751478504,226,0 +170751478552,226,0 +170751478601,227,0 +170751478651,226,0 +170751478699,223,0 +170751478747,215,0 +170751478796,216,0 +170751478844,216,0 +170751478892,217,0 +170751478940,218,0 +170751478988,219,0 +170751479038,220,0 +170751479086,221,0 +170751479133,222,0 +170751479183,223,0 +170751479233,224,0 +170751479280,224,0 +170751479330,225,0 +170751479379,225,0 +170751479429,225,0 +170751479477,226,0 +170751479525,226,0 +170751479573,225,0 +170751479622,225,0 +170751479670,216,0 +170751479718,216,0 +170751479768,215,0 +170751479817,216,0 +170751479865,216,0 +170751479913,217,0 +170751479963,218,0 +170751480011,222,0 +170751480058,220,0 +170751480108,221,0 +170751480156,223,0 +170751480204,226,0 +170751480252,224,0 +170751480300,224,0 +170751480348,224,0 +170751480396,224,0 +170751480444,225,0 +170751480492,225,0 +170751480539,225,0 +170751480587,217,0 +170751480637,215,0 +170751480685,216,0 +170751480733,216,0 +170751480782,217,0 +170751480832,218,0 +170751480880,219,0 +170751480928,219,0 +170751480976,220,0 +170751481024,222,0 +170751481072,224,0 +170751481120,225,0 +170751481167,226,0 +170751481215,224,0 +170751481263,224,0 +170751481313,224,0 +170751481361,230,0 +170751481409,227,0 +170751481457,226,0 +170751481506,225,0 +170751481554,216,0 +170751481602,216,0 +170751481650,216,0 +170751481700,216,0 +170751481748,217,0 +170751481795,218,0 +170751481845,219,0 +170751481893,220,0 +170751481941,220,0 +170751481989,221,0 +170751482038,221,0 +170751482086,222,0 +170751482134,224,0 +170751482182,224,0 +170751482230,224,0 +170751482279,225,0 +170751482327,225,0 +170751482375,223,0 +170751482423,225,0 +170751482471,217,0 +170751482519,216,0 +170751482567,216,0 +170751482615,218,0 +170751482664,218,0 +170751482712,219,0 +170751482760,220,0 +170751482808,220,0 +170751482856,222,0 +170751482905,221,0 +170751482953,222,0 +170751483003,223,0 +170751483051,224,0 +170751483099,225,0 +170751483147,225,0 +170751483195,226,0 +170751483243,226,0 +170751483291,225,0 +170751483340,226,0 +170751483388,225,0 +170751483436,216,0 +170751483484,216,0 +170751483531,217,0 +170751483579,218,0 +170751483627,219,0 +170751483675,220,0 +170751483723,220,0 +170751483771,220,0 +170751483820,221,0 +170751483868,222,0 +170751483916,223,0 +170751483965,224,0 +170751484015,225,0 +170751484063,225,0 +170751484112,225,0 +170751484160,225,0 +170751484208,227,0 +170751484256,227,0 +170751484304,225,0 +170751484353,217,0 +170751484401,215,0 +170751484449,216,0 +170751484497,217,0 +170751484544,218,0 +170751484592,219,0 +170751484640,219,0 +170751484688,220,0 +170751484736,220,0 +170751484784,220,0 +170751484833,224,0 +170751484881,224,0 +170751484929,224,0 +170751484977,225,0 +170751485026,225,0 +170751485074,226,0 +170751485122,226,0 +170751485171,225,0 +170751485219,225,0 +170751485269,225,0 +170751485318,216,0 +170751485366,216,0 +170751485416,217,0 +170751485464,218,0 +170751485512,218,0 +170751485559,220,0 +170751485607,220,0 +170751485655,221,0 +170751485703,222,0 +170751485751,222,0 +170751485799,225,0 +170751485847,226,0 +170751485895,229,0 +170751485943,225,0 +170751485991,227,0 +170751486038,227,0 +170751486086,226,0 +170751486134,225,0 +170751486182,225,0 +170751486230,216,0 +170751486278,215,0 +170751486326,216,0 +170751486373,217,0 +170751486421,218,0 +170751486469,218,0 +170751486517,220,0 +170751486565,220,0 +170751486614,220,0 +170751486662,221,0 +170751486710,222,0 +170751486758,222,0 +170751486806,221,0 +170751486856,224,0 +170751486904,225,0 +170751486952,223,0 +170751486999,225,0 +170751487047,225,0 +170751487095,225,0 +170751487143,225,0 +170751487192,216,0 +170751487242,216,0 +170751487291,216,0 +170751487339,217,0 +170751487389,219,0 +170751487436,219,0 +170751487484,219,0 +170751487534,222,0 +170751487582,221,0 +170751487631,222,0 +170751487679,223,0 +170751487727,225,0 +170751487775,225,0 +170751487822,226,0 +170751487870,225,0 +170751487918,226,0 +170751487968,229,0 +170751488016,225,0 +170751488063,227,0 +170751488111,217,0 +170751488159,215,0 +170751488207,215,0 +170751488255,216,0 +170751488303,217,0 +170751488352,218,0 +170751488402,219,0 +170751488450,219,0 +170751488497,221,0 +170751488545,222,0 +170751488593,222,0 +170751488641,223,0 +170751488689,225,0 +170751488737,225,0 +170751488786,224,0 +170751488834,224,0 +170751488883,228,0 +170751488933,226,0 +170751488982,225,0 +170751489030,225,0 +170751489078,216,0 +170751489126,215,0 +170751489174,215,0 +170751489222,216,0 +170751489272,217,0 +170751489321,218,0 +170751489369,218,0 +170751489417,219,0 +170751489465,220,0 +170751489513,221,0 +170751489561,221,0 +170751489611,224,0 +170751489658,223,0 +170751489706,223,0 +170751489754,224,0 +170751489802,224,0 +170751489852,225,0 +170751489900,224,0 +170751489948,226,0 +170751489996,217,0 +170751490045,215,0 +170751490093,215,0 +170751490143,215,0 +170751490192,215,0 +170751490240,215,0 +170751490290,216,0 +170751490337,216,0 +170751490387,217,0 +170751490437,218,0 +170751490486,219,0 +170751490534,220,0 +170751490582,222,0 +170751490630,222,0 +170751490678,222,0 +170751490726,223,0 +170751490774,224,0 +170751490822,226,0 +170751490871,225,0 +170751490919,224,0 +170751490968,215,0 +170751491016,215,0 +170751491064,215,0 +170751491112,216,0 +170751491160,216,0 +170751491208,216,0 +170751491256,216,0 +170751491304,216,0 +170751491352,217,0 +170751491400,217,0 +170751491448,218,0 +170751491496,220,0 +170751491545,221,0 +170751491593,221,0 +170751491641,222,0 +170751491689,222,0 +170751491737,223,0 +170751491785,223,0 +170751491833,226,0 +170751491882,217,0 +170751491932,215,0 +170751491980,215,0 +170751492028,216,0 +170751492076,216,0 +170751492124,216,0 +170751492172,216,0 +170751492221,217,0 +170751492269,218,0 +170751492318,219,0 +170751492366,219,0 +170751492416,220,0 +170751492464,221,0 +170751492513,223,0 +170751492561,224,0 +170751492611,223,0 +170751492659,223,0 +170751492708,223,0 +170751492756,224,0 +170751492804,224,0 +170751492852,215,0 +170751492900,215,0 +170751492949,215,0 +170751492997,216,0 +170751493045,215,0 +170751493094,216,0 +170751493144,215,0 +170751493192,217,0 +170751493241,218,0 +170751493291,220,0 +170751493340,220,0 +170751493388,222,0 +170751493436,222,0 +170751493484,223,0 +170751493532,225,0 +170751493580,225,0 +170751493628,224,0 +170751493676,225,0 +170751493726,227,0 +170751493773,216,0 +170751493821,215,0 +170751493871,215,0 +170751493919,215,0 +170751493968,215,0 +170751494018,216,0 +170751494068,216,0 +170751494115,216,0 +170751494165,216,0 +170751494213,216,0 +170751494261,218,0 +170751494310,219,0 +170751494360,220,0 +170751494408,221,0 +170751494457,222,0 +170751494507,222,0 +170751494555,229,0 +170751494603,224,0 +170751494651,225,0 +170751494700,217,0 +170751494748,215,0 +170751494796,215,0 +170751494844,216,0 +170751494894,216,0 +170751494942,217,0 +170751494990,217,0 +170751495039,218,0 +170751495089,218,0 +170751495137,219,0 +170751495186,219,0 +170751495234,220,0 +170751495284,221,0 +170751495332,223,0 +170751495379,223,0 +170751495429,224,0 +170751495477,226,0 +170751495525,224,0 +170751495574,225,0 +170751495624,225,0 +170751495672,216,0 +170751495720,215,0 +170751495768,216,0 +170751495816,217,0 +170751495864,218,0 +170751495912,219,0 +170751495961,220,0 +170751496009,220,0 +170751496057,221,0 +170751496105,221,0 +170751496155,222,0 +170751496203,224,0 +170751496250,224,0 +170751496298,225,0 +170751496346,226,0 +170751496394,225,0 +170751496444,226,0 +170751496492,225,0 +170751496540,225,0 +170751496588,217,0 +170751496637,216,0 +170751496685,216,0 +170751496733,217,0 +170751496783,218,0 +170751496832,218,0 +170751496880,219,0 +170751496928,220,0 +170751496976,220,0 +170751497026,221,0 +170751497075,222,0 +170751497123,223,0 +170751497173,224,0 +170751497221,225,0 +170751497270,225,0 +170751497318,225,0 +170751497366,225,0 +170751497414,226,0 +170751497462,226,0 +170751497510,226,0 +170751497558,216,0 +170751497606,215,0 +170751497655,216,0 +170751497705,217,0 +170751497753,218,0 +170751497802,219,0 +170751497850,220,0 +170751497898,220,0 +170751497948,220,0 +170751497997,222,0 +170751498045,223,0 +170751498093,226,0 +170751498141,225,0 +170751498189,225,0 +170751498237,226,0 +170751498286,225,0 +170751498334,225,0 +170751498384,225,0 +170751498432,225,0 +170751498480,217,0 +170751498528,216,0 +170751498577,217,0 +170751498627,218,0 +170751498675,219,0 +170751498723,219,0 +170751498772,221,0 +170751498820,222,0 +170751498870,223,0 +170751498918,224,0 +170751498967,224,0 +170751499017,225,0 +170751499065,225,0 +170751499114,226,0 +170751499162,227,0 +170751499210,227,0 +170751499258,227,0 +170751499306,226,0 +170751499354,225,0 +170751499402,217,0 +170751499451,216,0 +170751499499,217,0 +170751499547,218,0 +170751499595,218,0 +170751499643,218,0 +170751499691,219,0 +170751499739,220,0 +170751499787,221,0 +170751499835,222,0 +170751499885,222,0 +170751499933,225,0 +170751499981,225,0 +170751500030,224,0 +170751500078,224,0 +170751500128,224,0 +170751500176,225,0 +170751500225,223,0 +170751500273,226,0 +170751500323,225,0 +170751500370,216,0 +170751500418,216,0 +170751500468,216,0 +170751500516,217,0 +170751500566,218,0 +170751500613,219,0 +170751500661,220,0 +170751500711,221,0 +170751500759,221,0 +170751500808,223,0 +170751500856,223,0 +170751500904,224,0 +170751500952,225,0 +170751501002,224,0 +170751501051,225,0 +170751501099,224,0 +170751501147,226,0 +170751501195,226,0 +170751501243,224,0 +170751501293,216,0 +170751501341,215,0 +170751501390,215,0 +170751501438,216,0 +170751501488,217,0 +170751501537,218,0 +170751501585,219,0 +170751501633,220,0 +170751501681,221,0 +170751501731,222,0 +170751501779,223,0 +170751501828,225,0 +170751501876,225,0 +170751501924,225,0 +170751501974,225,0 +170751502023,225,0 +170751502071,225,0 +170751502121,227,0 +170751502169,225,0 +170751502218,217,0 +170751502266,216,0 +170751502314,217,0 +170751502363,218,0 +170751502411,219,0 +170751502461,220,0 +170751502509,221,0 +170751502557,221,0 +170751502606,223,0 +170751502656,231,0 +170751502704,222,0 +170751502752,223,0 +170751502800,224,0 +170751502848,225,0 +170751502896,225,0 +170751502945,225,0 +170751502995,225,0 +170751503043,227,0 +170751503091,227,0 +170751503140,224,0 +170751503188,216,0 +170751503236,217,0 +170751503285,217,0 +170751503333,218,0 +170751503381,219,0 +170751503429,220,0 +170751503477,220,0 +170751503525,220,0 +170751503573,221,0 +170751503621,222,0 +170751503669,223,0 +170751503717,224,0 +170751503765,224,0 +170751503814,224,0 +170751503862,225,0 +170751503912,225,0 +170751503961,227,0 +170751504009,225,0 +170751504057,225,0 +170751504107,217,0 +170751504155,216,0 +170751504203,216,0 +170751504251,217,0 +170751504299,217,0 +170751504347,218,0 +170751504395,218,0 +170751504444,219,0 +170751504492,220,0 +170751504542,221,0 +170751504590,221,0 +170751504639,223,0 +170751504687,224,0 +170751504736,224,0 +170751504786,225,0 +170751504834,225,0 +170751504882,225,0 +170751504931,227,0 +170751504981,225,0 +170751505030,223,0 +170751505078,216,0 +170751505126,216,0 +170751505174,217,0 +170751505222,218,0 +170751505270,219,0 +170751505318,219,0 +170751505368,220,0 +170751505416,221,0 +170751505465,222,0 +170751505515,222,0 +170751505564,223,0 +170751505612,224,0 +170751505660,224,0 +170751505708,224,0 +170751505756,225,0 +170751505804,225,0 +170751505853,226,0 +170751505903,225,0 +170751505951,224,0 +170751505999,217,0 +170751506048,216,0 +170751506098,218,0 +170751506146,218,0 +170751506194,220,0 +170751506242,220,0 +170751506291,220,0 +170751506339,221,0 +170751506387,221,0 +170751506435,223,0 +170751506483,223,0 +170751506531,224,0 +170751506581,224,0 +170751506628,225,0 +170751506676,226,0 +170751506726,225,0 +170751506774,226,0 +170751506822,225,0 +170751506870,225,0 +170751506918,217,0 +170751506966,216,0 +170751507015,217,0 +170751507063,217,0 +170751507111,218,0 +170751507161,219,0 +170751507210,220,0 +170751507258,221,0 +170751507306,222,0 +170751507354,222,0 +170751507402,223,0 +170751507452,224,0 +170751507500,226,0 +170751507548,224,0 +170751507596,226,0 +170751507645,224,0 +170751507693,225,0 +170751507741,226,0 +170751507789,226,0 +170751507837,225,0 +170751507885,216,0 +170751507934,216,0 +170751507984,216,0 +170751508032,217,0 +170751508081,218,0 +170751508129,219,0 +170751508177,220,0 +170751508227,221,0 +170751508275,221,0 +170751508324,222,0 +170751508374,224,0 +170751508422,224,0 +170751508470,224,0 +170751508518,225,0 +170751508567,224,0 +170751508615,225,0 +170751508663,226,0 +170751508712,226,0 +170751508762,225,0 +170751508811,217,0 +170751508861,215,0 +170751508910,215,0 +170751508959,215,0 +170751509008,216,0 +170751509056,216,0 +170751509104,216,0 +170751509153,217,0 +170751509201,218,0 +170751509249,219,0 +170751509299,221,0 +170751509347,222,0 +170751509395,222,0 +170751509443,223,0 +170751509492,223,0 +170751509540,225,0 +170751509588,226,0 +170751509636,225,0 +170751509684,225,0 +170751509732,216,0 +170751509779,215,0 +170751509827,215,0 +170751509875,216,0 +170751509923,215,0 +170751509973,215,0 +170751510022,216,0 +170751510070,216,0 +170751510118,216,0 +170751510166,217,0 +170751510214,217,0 +170751510262,218,0 +170751510310,219,0 +170751510358,219,0 +170751510406,221,0 +170751510454,221,0 +170751510503,222,0 +170751510551,223,0 +170751510601,224,0 +170751510650,225,0 +170751510698,216,0 +170751510746,215,0 +170751510794,216,0 +170751510844,216,0 +170751510892,216,0 +170751510940,216,0 +170751510988,217,0 +170751511036,217,0 +170751511083,217,0 +170751511131,219,0 +170751511179,219,0 +170751511227,221,0 +170751511275,221,0 +170751511323,223,0 +170751511373,225,0 +170751511422,225,0 +170751511470,224,0 +170751511518,225,0 +170751511566,225,0 +170751511616,217,0 +170751511665,215,0 +170751511713,215,0 +170751511763,216,0 +170751511811,216,0 +170751511858,216,0 +170751511908,217,0 +170751511956,218,0 +170751512004,218,0 +170751512053,219,0 +170751512103,220,0 +170751512151,221,0 +170751512200,222,0 +170751512248,224,0 +170751512298,224,0 +170751512348,224,0 +170751512395,225,0 +170751512443,225,0 +170751512491,226,0 +170751512539,225,0 +170751512587,216,0 +170751512636,216,0 +170751512684,216,0 +170751512732,217,0 +170751512780,217,0 +170751512828,218,0 +170751512876,219,0 +170751512924,220,0 +170751512973,220,0 +170751513023,221,0 +170751513071,223,0 +170751513118,223,0 +170751513166,223,0 +170751513214,224,0 +170751513262,224,0 +170751513310,224,0 +170751513358,225,0 +170751513406,225,0 +170751513454,225,0 +170751513501,217,0 +170751513549,216,0 +170751513599,216,0 +170751513647,216,0 +170751513695,217,0 +170751513743,218,0 +170751513791,218,0 +170751513840,219,0 +170751513888,220,0 +170751513936,220,0 +170751513986,221,0 +170751514034,222,0 +170751514083,223,0 +170751514133,224,0 +170751514181,225,0 +170751514229,224,0 +170751514277,224,0 +170751514325,225,0 +170751514373,225,0 +170751514421,218,0 +170751514468,215,0 +170751514516,215,0 +170751514564,216,0 +170751514612,217,0 +170751514660,218,0 +170751514710,218,0 +170751514759,219,0 +170751514807,219,0 +170751514855,225,0 +170751514903,222,0 +170751514951,223,0 +170751514999,225,0 +170751515047,224,0 +170751515095,227,0 +170751515144,221,0 +170751515192,226,0 +170751515240,225,0 +170751515288,226,0 +170751515336,225,0 +170751515384,217,0 +170751515432,216,0 +170751515481,217,0 +170751515529,218,0 +170751515578,219,0 +170751515628,220,0 +170751515677,219,0 +170751515725,221,0 +170751515773,221,0 +170751515821,223,0 +170751515870,222,0 +170751515918,223,0 +170751515968,224,0 +170751516016,227,0 +170751516064,225,0 +170751516113,225,0 +170751516161,226,0 +170751516209,226,0 +170751516257,226,0 +170751516307,217,0 +170751516354,215,0 +170751516404,216,0 +170751516452,216,0 +170751516500,218,0 +170751516548,219,0 +170751516596,219,0 +170751516645,220,0 +170751516693,221,0 +170751516741,222,0 +170751516789,223,0 +170751516837,223,0 +170751516886,226,0 +170751516934,225,0 +170751516982,225,0 +170751517032,230,0 +170751517081,226,0 +170751517129,225,0 +170751517177,225,0 +170751517226,225,0 +170751517274,215,0 +170751517322,215,0 +170751517370,215,0 +170751517418,216,0 +170751517468,217,0 +170751517516,217,0 +170751517565,218,0 +170751517613,219,0 +170751517663,219,0 +170751517711,220,0 +170751517759,222,0 +170751517808,223,0 +170751517856,223,0 +170751517906,223,0 +170751517954,224,0 +170751518002,225,0 +170751518050,225,0 +170751518098,225,0 +170751518145,225,0 +170751518193,217,0 +170751518243,215,0 +170751518292,215,0 +170751518340,216,0 +170751518388,215,0 +170751518438,216,0 +170751518487,216,0 +170751518537,216,0 +170751518585,217,0 +170751518633,217,0 +170751518681,220,0 +170751518729,220,0 +170751518778,222,0 +170751518828,222,0 +170751518876,224,0 +170751518924,223,0 +170751518972,224,0 +170751519021,224,0 +170751519070,225,0 +170751519118,216,0 +170751519168,215,0 +170751519216,215,0 +170751519264,215,0 +170751519313,215,0 +170751519363,215,0 +170751519411,216,0 +170751519460,217,0 +170751519510,217,0 +170751519558,218,0 +170751519607,219,0 +170751519657,221,0 +170751519706,222,0 +170751519754,227,0 +170751519802,225,0 +170751519852,227,0 +170751519900,225,0 +170751519948,228,0 +170751519996,224,0 +170751520044,224,0 +170751520093,216,0 +170751520141,215,0 +170751520191,215,0 +170751520240,216,0 +170751520290,216,0 +170751520339,217,0 +170751520387,217,0 +170751520437,217,0 +170751520484,217,0 +170751520534,219,0 +170751520582,219,0 +170751520630,222,0 +170751520678,224,0 +170751520727,222,0 +170751520777,226,0 +170751520826,225,0 +170751520876,224,0 +170751520924,225,0 +170751520973,225,0 +170751521023,216,0 +170751521072,216,0 +170751521122,216,0 +170751521170,216,0 +170751521218,217,0 +170751521267,217,0 +170751521315,217,0 +170751521363,218,0 +170751521411,220,0 +170751521461,220,0 +170751521508,221,0 +170751521558,223,0 +170751521606,225,0 +170751521654,224,0 +170751521704,225,0 +170751521753,225,0 +170751521801,226,0 +170751521850,227,0 +170751521898,226,0 +170751521946,217,0 +170751521994,216,0 +170751522042,216,0 +170751522090,216,0 +170751522138,217,0 +170751522186,214,0 +170751522235,217,0 +170751522285,218,0 +170751522332,218,0 +170751522380,219,0 +170751522428,220,0 +170751522478,220,0 +170751522526,221,0 +170751522573,221,0 +170751522621,222,0 +170751522669,222,0 +170751522717,224,0 +170751522765,224,0 +170751522813,224,0 +170751522861,225,0 +170751522910,226,0 +170751522958,226,0 +170751523006,225,0 +170751523054,226,0 +170751523101,227,0 +170751523151,225,0 +170751523200,226,0 +170751523248,227,0 +170751523296,226,0 +170751523344,217,0 +170751523392,217,0 +170751523440,217,0 +170751523488,218,0 +170751523537,220,0 +170751523585,220,0 +170751523633,221,0 +170751523682,222,0 +170751523732,223,0 +170751523780,224,0 +170751523828,224,0 +170751523875,224,0 +170751523923,226,0 +170751523973,226,0 +170751524021,226,0 +170751524069,226,0 +170751524116,226,0 +170751524166,225,0 +170751524214,226,0 +170751524262,224,0 +170751524310,215,0 +170751524359,216,0 +170751524409,216,0 +170751524457,219,0 +170751524506,219,0 +170751524554,220,0 +170751524602,222,0 +170751524650,221,0 +170751524700,223,0 +170751524748,223,0 +170751524797,224,0 +170751524845,226,0 +170751524895,227,0 +170751524944,225,0 +170751524992,224,0 +170751525040,225,0 +170751525088,225,0 +170751525136,226,0 +170751525185,225,0 +170751525233,216,0 +170751525283,216,0 +170751525332,215,0 +170751525382,216,0 +170751525431,216,0 +170751525479,216,0 +170751525527,217,0 +170751525577,218,0 +170751525625,219,0 +170751525674,221,0 +170751525724,221,0 +170751525773,222,0 +170751525821,224,0 +170751525869,223,0 +170751525919,225,0 +170751525968,225,0 +170751526018,226,0 +170751526066,225,0 +170751526114,225,0 +170751526162,217,0 +170751526210,215,0 +170751526258,215,0 +170751526307,215,0 +170751526357,216,0 +170751526405,216,0 +170751526454,216,0 +170751526502,216,0 +170751526550,216,0 +170751526598,217,0 +170751526647,219,0 +170751526695,220,0 +170751526743,220,0 +170751526791,222,0 +170751526839,223,0 +170751526888,223,0 +170751526936,224,0 +170751526986,225,0 +170751527034,225,0 +170751527081,220,0 +170751527131,215,0 +170751527179,215,0 +170751527227,216,0 +170751527274,216,0 +170751527322,217,0 +170751527370,218,0 +170751527418,220,0 +170751527466,220,0 +170751527514,220,0 +170751527562,221,0 +170751527611,223,0 +170751527661,222,0 +170751527708,224,0 +170751527758,224,0 +170751527806,224,0 +170751527854,225,0 +170751527901,225,0 +170751527949,226,0 +170751527997,225,0 +170751528047,216,0 +170751528095,215,0 +170751528142,216,0 +170751528190,216,0 +170751528238,216,0 +170751528286,217,0 +170751528334,218,0 +170751528382,220,0 +170751528430,219,0 +170751528479,220,0 +170751528527,221,0 +170751528575,222,0 +170751528623,223,0 +170751528671,223,0 +170751528720,224,0 +170751528768,224,0 +170751528816,224,0 +170751528864,225,0 +170751528912,226,0 +170751528960,219,0 +170751529008,215,0 +170751529055,216,0 +170751529103,216,0 +170751529151,216,0 +170751529199,217,0 +170751529247,218,0 +170751529295,219,0 +170751529343,219,0 +170751529390,221,0 +170751529438,221,0 +170751529486,222,0 +170751529536,225,0 +170751529584,223,0 +170751529633,224,0 +170751529683,224,0 +170751529731,224,0 +170751529780,226,0 +170751529828,226,0 +170751529876,225,0 +170751529926,216,0 +170751529975,215,0 +170751530025,216,0 +170751530073,217,0 +170751530121,217,0 +170751530170,219,0 +170751530218,219,0 +170751530266,220,0 +170751530314,221,0 +170751530363,223,0 +170751530413,221,0 +170751530461,223,0 +170751530509,224,0 +170751530558,225,0 +170751530606,225,0 +170751530654,226,0 +170751530704,226,0 +170751530753,226,0 +170751530803,225,0 +170751530851,217,0 +170751530900,215,0 +170751530948,216,0 +170751530998,215,0 +170751531046,216,0 +170751531094,217,0 +170751531142,218,0 +170751531191,219,0 +170751531239,220,0 +170751531289,222,0 +170751531338,222,0 +170751531386,223,0 +170751531436,224,0 +170751531484,224,0 +170751531532,225,0 +170751531581,225,0 +170751531631,226,0 +170751531679,226,0 +170751531728,225,0 +170751531776,217,0 +170751531824,215,0 +170751531872,215,0 +170751531920,215,0 +170751531968,216,0 +170751532016,216,0 +170751532065,217,0 +170751532113,218,0 +170751532163,219,0 +170751532213,221,0 +170751532262,221,0 +170751532312,221,0 +170751532361,222,0 +170751532411,226,0 +170751532460,223,0 +170751532508,224,0 +170751532558,224,0 +170751532606,226,0 +170751532654,225,0 +170751532701,226,0 +170751532749,216,0 +170751532797,215,0 +170751532847,216,0 +170751532896,216,0 +170751532946,217,0 +170751532994,218,0 +170751533044,219,0 +170751533091,220,0 +170751533141,220,0 +170751533189,221,0 +170751533239,238,0 +170751533287,223,0 +170751533335,225,0 +170751533383,224,0 +170751533430,224,0 +170751533478,224,0 +170751533528,225,0 +170751533577,226,0 +170751533625,225,0 +170751533673,217,0 +170751533721,216,0 +170751533771,216,0 +170751533820,216,0 +170751533870,218,0 +170751533918,218,0 +170751533967,219,0 +170751534015,220,0 +170751534065,220,0 +170751534114,222,0 +170751534162,223,0 +170751534210,223,0 +170751534258,225,0 +170751534306,225,0 +170751534356,226,0 +170751534404,225,0 +170751534453,225,0 +170751534501,226,0 +170751534549,226,0 +170751534598,217,0 +170751534648,216,0 +170751534697,216,0 +170751534745,217,0 +170751534793,217,0 +170751534843,218,0 +170751534891,219,0 +170751534940,220,0 +170751534988,220,0 +170751535036,220,0 +170751535084,221,0 +170751535134,222,0 +170751535182,223,0 +170751535230,223,0 +170751535279,225,0 +170751535327,228,0 +170751535375,226,0 +170751535423,226,0 +170751535473,226,0 +170751535522,224,0 +170751535570,216,0 +170751535618,216,0 +170751535668,217,0 +170751535716,217,0 +170751535765,218,0 +170751535813,220,0 +170751535863,221,0 +170751535910,221,0 +170751535958,221,0 +170751536008,222,0 +170751536056,223,0 +170751536105,223,0 +170751536153,226,0 +170751536203,226,0 +170751536251,227,0 +170751536299,228,0 +170751536347,226,0 +170751536395,226,0 +170751536443,225,0 +170751536492,217,0 +170751536542,216,0 +170751536591,216,0 +170751536639,217,0 +170751536689,219,0 +170751536737,220,0 +170751536785,220,0 +170751536832,220,0 +170751536880,222,0 +170751536928,222,0 +170751536976,224,0 +170751537024,225,0 +170751537072,227,0 +170751537120,226,0 +170751537170,225,0 +170751537218,225,0 +170751537266,226,0 +170751537314,225,0 +170751537362,226,0 +170751537409,223,0 +170751537457,216,0 +170751537507,216,0 +170751537555,216,0 +170751537603,217,0 +170751537652,218,0 +170751537700,218,0 +170751537748,220,0 +170751537798,221,0 +170751537846,220,0 +170751537894,221,0 +170751537943,223,0 +170751537991,225,0 +170751538041,227,0 +170751538089,224,0 +170751538138,225,0 +170751538188,225,0 +170751538236,226,0 +170751538284,226,0 +170751538332,224,0 +170751538379,216,0 +170751538429,215,0 +170751538478,215,0 +170751538526,216,0 +170751538576,216,0 +170751538624,216,0 +170751538673,217,0 +170751538721,218,0 +170751538769,218,0 +170751538817,220,0 +170751538867,220,0 +170751538915,222,0 +170751538963,224,0 +170751539010,226,0 +170751539058,225,0 +170751539106,226,0 +170751539154,226,0 +170751539204,224,0 +170751539253,226,0 +170751539301,217,0 +170751539349,215,0 +170751539397,215,0 +170751539445,215,0 +170751539493,216,0 +170751539541,216,0 +170751539590,217,0 +170751539640,218,0 +170751539688,218,0 +170751539736,219,0 +170751539785,220,0 +170751539835,222,0 +170751539884,222,0 +170751539932,224,0 +170751539980,225,0 +170751540028,225,0 +170751540076,225,0 +170751540124,226,0 +170751540172,225,0 +170751540220,225,0 +170751540269,216,0 +170751540317,216,0 +170751540365,216,0 +170751540413,217,0 +170751540462,217,0 +170751540512,217,0 +170751540560,218,0 +170751540608,218,0 +170751540656,220,0 +170751540705,222,0 +170751540753,222,0 +170751540801,224,0 +170751540849,226,0 +170751540896,225,0 +170751540944,225,0 +170751540994,227,0 +170751541042,227,0 +170751541090,226,0 +170751541138,225,0 +170751541185,217,0 +170751541233,215,0 +170751541281,216,0 +170751541329,216,0 +170751541377,217,0 +170751541425,217,0 +170751541473,217,0 +170751541521,219,0 +170751541570,221,0 +170751541618,220,0 +170751541666,222,0 +170751541714,223,0 +170751541763,223,0 +170751541811,225,0 +170751541859,224,0 +170751541909,225,0 +170751541958,232,0 +170751542008,227,0 +170751542055,225,0 +170751542103,225,0 +170751542153,215,0 +170751542202,216,0 +170751542250,216,0 +170751542300,217,0 +170751542348,219,0 +170751542397,218,0 +170751542445,219,0 +170751542495,220,0 +170751542544,220,0 +170751542592,221,0 +170751542640,223,0 +170751542688,223,0 +170751542736,224,0 +170751542786,223,0 +170751542834,224,0 +170751542882,225,0 +170751542931,225,0 +170751542979,225,0 +170751543029,226,0 +170751543077,217,0 +170751543125,215,0 +170751543172,216,0 +170751543222,216,0 +170751543270,217,0 +170751543318,218,0 +170751543366,219,0 +170751543414,219,0 +170751543463,220,0 +170751543511,221,0 +170751543561,225,0 +170751543609,223,0 +170751543657,224,0 +170751543705,225,0 +170751543753,225,0 +170751543801,224,0 +170751543849,226,0 +170751543898,226,0 +170751543946,226,0 +170751543996,217,0 +170751544044,215,0 +170751544093,216,0 +170751544141,216,0 +170751544190,216,0 +170751544238,216,0 +170751544286,217,0 +170751544334,218,0 +170751544382,219,0 +170751544430,220,0 +170751544478,220,0 +170751544525,223,0 +170751544573,223,0 +170751544621,224,0 +170751544669,224,0 +170751544717,224,0 +170751544765,225,0 +170751544813,225,0 +170751544861,226,0 +170751544908,224,0 +170751544956,217,0 +170751545004,215,0 +170751545052,216,0 +170751545100,217,0 +170751545148,217,0 +170751545196,218,0 +170751545244,219,0 +170751545292,220,0 +170751545340,221,0 +170751545387,221,0 +170751545435,223,0 +170751545483,222,0 +170751545531,223,0 +170751545580,224,0 +170751545628,225,0 +170751545676,225,0 +170751545724,224,0 +170751545772,226,0 +170751545820,227,0 +170751545868,218,0 +170751545917,217,0 +170751545965,218,0 +170751546013,219,0 +170751546061,219,0 +170751546109,220,0 +170751546158,221,0 +170751546208,222,0 +170751546258,223,0 +170751546307,223,0 +170751546356,223,0 +170751546404,226,0 +170751546452,226,0 +170751546500,225,0 +170751546548,225,0 +170751546596,227,0 +170751546644,226,0 +170751546692,226,0 +170751546740,225,0 +170751546788,225,0 +170751546836,220,0 +170751546884,219,0 +170751546932,221,0 +170751546980,222,0 +170751547028,222,0 +170751547076,223,0 +170751547125,224,0 +170751547173,223,0 +170751547221,226,0 +170751547269,221,0 +170751547317,226,0 +170751547366,227,0 +170751547414,227,0 +170751547462,227,0 +170751547510,226,0 +170751547558,227,0 +170751547606,226,0 +170751547654,225,0 +170751547702,225,0 +170751547749,217,0 +170751547797,217,0 +170751547845,218,0 +170751547895,219,0 +170751547944,218,0 +170751547992,221,0 +170751548040,223,0 +170751548090,222,0 +170751548138,222,0 +170751548187,224,0 +170751548235,224,0 +170751548283,225,0 +170751548331,225,0 +170751548379,226,0 +170751548428,227,0 +170751548476,227,0 +170751548526,227,0 +170751548575,226,0 +170751548625,228,0 +170751548673,225,0 +170751548722,216,0 +170751548770,216,0 +170751548818,217,0 +170751548866,219,0 +170751548916,219,0 +170751548964,220,0 +170751549012,220,0 +170751549061,223,0 +170751549111,223,0 +170751549159,222,0 +170751549207,222,0 +170751549255,225,0 +170751549304,225,0 +170751549352,225,0 +170751549401,227,0 +170751549449,226,0 +170751549497,225,0 +170751549545,226,0 +170751549593,225,0 +170751549642,217,0 +170751549690,216,0 +170751549738,216,0 +170751549786,216,0 +170751549834,216,0 +170751549883,217,0 +170751549931,218,0 +170751549979,219,0 +170751550027,220,0 +170751550075,221,0 +170751550123,223,0 +170751550171,222,0 +170751550220,223,0 +170751550268,224,0 +170751550316,225,0 +170751550364,224,0 +170751550412,224,0 +170751550459,225,0 +170751550507,226,0 +170751550555,225,0 +170751550603,216,0 +170751550651,215,0 +170751550699,216,0 +170751550749,216,0 +170751550798,216,0 +170751550848,216,0 +170751550897,217,0 +170751550947,218,0 +170751550996,220,0 +170751551044,221,0 +170751551092,222,0 +170751551140,223,0 +170751551190,223,0 +170751551239,224,0 +170751551287,225,0 +170751551335,224,0 +170751551383,225,0 +170751551432,225,0 +170751551480,225,0 +170751551528,217,0 +170751551576,216,0 +170751551624,216,0 +170751551672,217,0 +170751551720,216,0 +170751551768,217,0 +170751551816,217,0 +170751551863,218,0 +170751551911,219,0 +170751551961,224,0 +170751552009,221,0 +170751552058,221,0 +170751552106,222,0 +170751552154,224,0 +170751552202,223,0 +170751552251,225,0 +170751552299,223,0 +170751552347,222,0 +170751552397,226,0 +170751552445,222,0 +170751552493,216,0 +170751552542,216,0 +170751552590,216,0 +170751552639,216,0 +170751552689,216,0 +170751552737,217,0 +170751552785,217,0 +170751552834,218,0 +170751552884,220,0 +170751552932,222,0 +170751552981,223,0 +170751553030,227,0 +170751553078,225,0 +170751553126,224,0 +170751553174,227,0 +170751553222,225,0 +170751553270,225,0 +170751553318,225,0 +170751553366,225,0 +170751553413,217,0 +170751553461,215,0 +170751553509,215,0 +170751553557,215,0 +170751553607,216,0 +170751553656,216,0 +170751553704,216,0 +170751553753,217,0 +170751553801,220,0 +170751553849,220,0 +170751553899,221,0 +170751553949,222,0 +170751553997,225,0 +170751554044,224,0 +170751554092,226,0 +170751554140,225,0 +170751554188,225,0 +170751554236,224,0 +170751554284,225,0 +170751554332,217,0 +170751554380,216,0 +170751554428,216,0 +170751554477,216,0 +170751554525,216,0 +170751554575,216,0 +170751554622,217,0 +170751554670,217,0 +170751554718,218,0 +170751554766,219,0 +170751554815,220,0 +170751554865,221,0 +170751554914,221,0 +170751554962,224,0 +170751555010,224,0 +170751555060,225,0 +170751555107,225,0 +170751555155,225,0 +170751555203,225,0 +170751555251,225,0 +170751555301,217,0 +170751555350,215,0 +170751555398,215,0 +170751555446,215,0 +170751555494,216,0 +170751555542,216,0 +170751555590,216,0 +170751555640,216,0 +170751555688,217,0 +170751555735,218,0 +170751555783,220,0 +170751555833,221,0 +170751555881,220,0 +170751555928,226,0 +170751555976,224,0 +170751556024,224,0 +170751556072,225,0 +170751556120,227,0 +170751556168,225,0 +170751556216,222,0 +170751556264,215,0 +170751556313,215,0 +170751556363,215,0 +170751556410,216,0 +170751556458,216,0 +170751556506,216,0 +170751556554,216,0 +170751556602,216,0 +170751556650,217,0 +170751556698,219,0 +170751556747,219,0 +170751556797,220,0 +170751556845,222,0 +170751556893,223,0 +170751556941,223,0 +170751556990,223,0 +170751557038,223,0 +170751557088,225,0 +170751557135,224,0 +170751557185,216,0 +170751557233,216,0 +170751557283,215,0 +170751557332,217,0 +170751557380,217,0 +170751557430,218,0 +170751557478,219,0 +170751557525,220,0 +170751557575,222,0 +170751557625,221,0 +170751557673,222,0 +170751557722,223,0 +170751557770,223,0 +170751557818,223,0 +170751557867,224,0 +170751557915,225,0 +170751557963,225,0 +170751558011,225,0 +170751558061,225,0 +170751558109,216,0 +170751558158,215,0 +170751558206,216,0 +170751558254,217,0 +170751558302,219,0 +170751558350,219,0 +170751558398,219,0 +170751558446,220,0 +170751558495,220,0 +170751558543,222,0 +170751558591,222,0 +170751558639,223,0 +170751558687,223,0 +170751558735,227,0 +170751558782,225,0 +170751558830,227,0 +170751558878,226,0 +170751558926,226,0 +170751558974,226,0 +170751559022,223,0 +170751559070,216,0 +170751559118,218,0 +170751559167,218,0 +170751559215,220,0 +170751559263,220,0 +170751559311,221,0 +170751559359,221,0 +170751559408,222,0 +170751559456,223,0 +170751559506,223,0 +170751559554,224,0 +170751559601,225,0 +170751559651,226,0 +170751559699,226,0 +170751559747,228,0 +170751559796,226,0 +170751559844,226,0 +170751559892,227,0 +170751559940,225,0 +170751559988,217,0 +170751560035,216,0 +170751560083,217,0 +170751560133,218,0 +170751560182,219,0 +170751560232,221,0 +170751560282,222,0 +170751560331,221,0 +170751560379,222,0 +170751560429,223,0 +170751560477,224,0 +170751560525,224,0 +170751560573,225,0 +170751560620,225,0 +170751560668,227,0 +170751560718,225,0 +170751560768,226,0 +170751560817,225,0 +170751560866,225,0 +170751560914,217,0 +170751560962,215,0 +170751561010,215,0 +170751561058,216,0 +170751561106,217,0 +170751561154,218,0 +170751561204,218,0 +170751561252,219,0 +170751561300,219,0 +170751561349,221,0 +170751561397,221,0 +170751561445,221,0 +170751561493,223,0 +170751561541,224,0 +170751561589,223,0 +170751561637,226,0 +170751561685,225,0 +170751561733,226,0 +170751561783,225,0 +170751561832,225,0 +170751561880,215,0 +170751561930,215,0 +170751561978,215,0 +170751562027,215,0 +170751562077,216,0 +170751562125,216,0 +170751562173,216,0 +170751562221,217,0 +170751562268,217,0 +170751562316,219,0 +170751562364,220,0 +170751562412,221,0 +170751562460,222,0 +170751562508,223,0 +170751562556,223,0 +170751562604,224,0 +170751562652,224,0 +170751562700,224,0 +170751562748,225,0 +170751562796,217,0 +170751562846,215,0 +170751562894,216,0 +170751562942,215,0 +170751562990,216,0 +170751563037,216,0 +170751563085,215,0 +170751563133,216,0 +170751563183,216,0 +170751563231,217,0 +170751563280,218,0 +170751563328,219,0 +170751563376,222,0 +170751563424,222,0 +170751563472,223,0 +170751563522,223,0 +170751563570,224,0 +170751563618,225,0 +170751563667,225,0 +170751563717,226,0 +170751563766,216,0 +170751563816,216,0 +170751563864,216,0 +170751563912,216,0 +170751563961,216,0 +170751564009,216,0 +170751564059,217,0 +170751564108,218,0 +170751564156,218,0 +170751564206,217,0 +170751564255,221,0 +170751564303,222,0 +170751564351,224,0 +170751564399,224,0 +170751564447,224,0 +170751564496,225,0 +170751564544,226,0 +170751564592,226,0 +170751564640,225,0 +170751564689,217,0 +170751564739,215,0 +170751564787,215,0 +170751564836,215,0 +170751564884,216,0 +170751564932,216,0 +170751564980,216,0 +170751565028,217,0 +170751565076,217,0 +170751565124,218,0 +170751565173,220,0 +170751565221,219,0 +170751565269,222,0 +170751565318,222,0 +170751565368,222,0 +170751565415,223,0 +170751565463,224,0 +170751565511,224,0 +170751565559,225,0 +170751565607,225,0 +170751565655,215,0 +170751565703,215,0 +170751565751,216,0 +170751565798,216,0 +170751565846,217,0 +170751565896,217,0 +170751565944,218,0 +170751565992,219,0 +170751566039,219,0 +170751566087,221,0 +170751566135,221,0 +170751566183,223,0 +170751566233,224,0 +170751566281,224,0 +170751566330,224,0 +170751566380,225,0 +170751566429,225,0 +170751566477,226,0 +170751566527,225,0 +170751566576,217,0 +170751566626,215,0 +170751566674,216,0 +170751566723,217,0 +170751566771,218,0 +170751566821,218,0 +170751566869,220,0 +170751566918,219,0 +170751566968,221,0 +170751567016,221,0 +170751567064,222,0 +170751567113,224,0 +170751567161,224,0 +170751567209,225,0 +170751567257,227,0 +170751567305,225,0 +170751567355,233,0 +170751567404,226,0 +170751567454,226,0 +170751567502,217,0 +170751567551,216,0 +170751567599,217,0 +170751567647,218,0 +170751567697,220,0 +170751567745,220,0 +170751567793,221,0 +170751567841,221,0 +170751567889,222,0 +170751567938,223,0 +170751567986,224,0 +170751568036,224,0 +170751568084,226,0 +170751568133,225,0 +170751568181,225,0 +170751568229,225,0 +170751568279,226,0 +170751568328,226,0 +170751568376,226,0 +170751568425,224,0 +170751568475,216,0 +170751568523,217,0 +170751568572,217,0 +170751568620,219,0 +170751568668,220,0 +170751568718,220,0 +170751568767,221,0 +170751568817,221,0 +170751568865,222,0 +170751568913,224,0 +170751568962,224,0 +170751569010,225,0 +170751569058,225,0 +170751569108,226,0 +170751569156,225,0 +170751569204,225,0 +170751569252,226,0 +170751569300,226,0 +170751569349,225,0 +170751569399,217,0 +170751569447,215,0 +170751569496,216,0 +170751569546,217,0 +170751569595,218,0 +170751569643,219,0 +170751569693,220,0 +170751569741,222,0 +170751569789,221,0 +170751569837,222,0 +170751569886,223,0 +170751569934,223,0 +170751569984,223,0 +170751570032,225,0 +170751570080,225,0 +170751570129,225,0 +170751570179,226,0 +170751570226,226,0 +170751570274,225,0 +170751570322,224,0 +170751570370,215,0 +170751570420,215,0 +170751570467,215,0 +170751570515,217,0 +170751570563,217,0 +170751570611,219,0 +170751570659,219,0 +170751570707,220,0 +170751570757,220,0 +170751570805,221,0 +170751570853,223,0 +170751570901,224,0 +170751570950,224,0 +170751571000,223,0 +170751571048,224,0 +170751571097,225,0 +170751571147,225,0 +170751571196,225,0 +170751571246,225,0 +170751571295,216,0 +170751571343,216,0 +170751571393,216,0 +170751571442,217,0 +170751571492,218,0 +170751571541,219,0 +170751571591,219,0 +170751571639,220,0 +170751571687,220,0 +170751571736,221,0 +170751571784,222,0 +170751571833,222,0 +170751571881,223,0 +170751571929,224,0 +170751571977,223,0 +170751572025,224,0 +170751572073,224,0 +170751572121,225,0 +170751572169,226,0 +170751572217,217,0 +170751572264,215,0 +170751572314,216,0 +170751572362,217,0 +170751572410,217,0 +170751572457,219,0 +170751572505,219,0 +170751572553,220,0 +170751572601,220,0 +170751572651,221,0 +170751572699,222,0 +170751572747,223,0 +170751572796,223,0 +170751572844,224,0 +170751572892,224,0 +170751572940,225,0 +170751572988,225,0 +170751573036,226,0 +170751573084,225,0 +170751573132,224,0 +170751573180,217,0 +170751573227,217,0 +170751573275,218,0 +170751573325,219,0 +170751573373,220,0 +170751573421,221,0 +170751573468,221,0 +170751573516,223,0 +170751573564,222,0 +170751573612,224,0 +170751573660,225,0 +170751573708,225,0 +170751573757,225,0 +170751573805,226,0 +170751573853,226,0 +170751573901,227,0 +170751573949,226,0 +170751573998,226,0 +170751574046,226,0 +170751574094,217,0 +170751574142,217,0 +170751574191,218,0 +170751574239,218,0 +170751574287,219,0 +170751574335,220,0 +170751574383,221,0 +170751574431,222,0 +170751574479,224,0 +170751574526,224,0 +170751574574,225,0 +170751574624,226,0 +170751574672,226,0 +170751574720,226,0 +170751574768,226,0 +170751574815,226,0 +170751574863,226,0 +170751574911,225,0 +170751574959,225,0 +170751575009,225,0 +170751575058,218,0 +170751575107,217,0 +170751575155,218,0 +170751575203,219,0 +170751575253,219,0 +170751575301,220,0 +170751575348,221,0 +170751575396,222,0 +170751575444,222,0 +170751575492,223,0 +170751575542,223,0 +170751575590,226,0 +170751575639,225,0 +170751575687,224,0 +170751575735,226,0 +170751575783,226,0 +170751575832,226,0 +170751575880,226,0 +170751575928,225,0 +170751575976,225,0 +170751576025,215,0 +170751576073,216,0 +170751576121,217,0 +170751576169,218,0 +170751576217,219,0 +170751576265,220,0 +170751576314,221,0 +170751576362,221,0 +170751576410,221,0 +170751576458,223,0 +170751576506,223,0 +170751576554,226,0 +170751576602,224,0 +170751576650,225,0 +170751576698,224,0 +170751576747,225,0 +170751576795,226,0 +170751576843,225,0 +170751576891,224,0 +170751576939,216,0 +170751576988,215,0 +170751577036,215,0 +170751577084,217,0 +170751577132,217,0 +170751577180,219,0 +170751577229,219,0 +170751577277,220,0 +170751577325,220,0 +170751577373,221,0 +170751577420,221,0 +170751577468,222,0 +170751577518,223,0 +170751577566,225,0 +170751577615,225,0 +170751577663,225,0 +170751577711,224,0 +170751577761,224,0 +170751577809,226,0 +170751577856,226,0 +170751577904,215,0 +170751577952,215,0 +170751578000,216,0 +170751578048,216,0 +170751578096,217,0 +170751578144,218,0 +170751578192,218,0 +170751578240,219,0 +170751578289,220,0 +170751578337,220,0 +170751578385,222,0 +170751578433,222,0 +170751578481,223,0 +170751578529,224,0 +170751578577,224,0 +170751578626,224,0 +170751578674,225,0 +170751578724,225,0 +170751578772,225,0 +170751578820,217,0 +170751578869,215,0 +170751578919,215,0 +170751578968,215,0 +170751579016,216,0 +170751579064,216,0 +170751579112,216,0 +170751579162,216,0 +170751579211,217,0 +170751579261,219,0 +170751579309,220,0 +170751579358,221,0 +170751579406,221,0 +170751579456,223,0 +170751579503,223,0 +170751579551,224,0 +170751579599,225,0 +170751579647,226,0 +170751579695,226,0 +170751579745,217,0 +170751579793,215,0 +170751579841,215,0 +170751579888,215,0 +170751579936,216,0 +170751579986,216,0 +170751580035,216,0 +170751580085,216,0 +170751580133,217,0 +170751580181,218,0 +170751580229,219,0 +170751580277,221,0 +170751580326,222,0 +170751580374,223,0 +170751580422,223,0 +170751580472,225,0 +170751580520,226,0 +170751580567,224,0 +170751580617,225,0 +170751580667,225,0 +170751580716,216,0 +170751580764,215,0 +170751580812,215,0 +170751580861,216,0 +170751580909,216,0 +170751580959,216,0 +170751581007,216,0 +170751581055,216,0 +170751581103,216,0 +170751581152,217,0 +170751581202,219,0 +170751581250,220,0 +170751581299,222,0 +170751581349,222,0 +170751581398,223,0 +170751581448,224,0 +170751581496,225,0 +170751581544,225,0 +170751581593,224,0 +170751581641,216,0 +170751581689,215,0 +170751581737,215,0 +170751581785,216,0 +170751581835,216,0 +170751581884,217,0 +170751581934,217,0 +170751581983,217,0 +170751582033,218,0 +170751582081,220,0 +170751582129,221,0 +170751582177,221,0 +170751582225,222,0 +170751582273,224,0 +170751582322,223,0 +170751582370,226,0 +170751582418,224,0 +170751582466,225,0 +170751582514,228,0 +170751582561,225,0 +170751582611,216,0 +170751582659,215,0 +170751582707,215,0 +170751582755,215,0 +170751582802,216,0 +170751582850,216,0 +170751582898,216,0 +170751582946,217,0 +170751582994,219,0 +170751583042,220,0 +170751583090,220,0 +170751583139,221,0 +170751583189,223,0 +170751583236,224,0 +170751583284,225,0 +170751583332,224,0 +170751583382,225,0 +170751583431,225,0 +170751583481,226,0 +170751583530,217,0 +170751583578,216,0 +170751583628,216,0 +170751583676,216,0 +170751583724,216,0 +170751583773,216,0 +170751583823,217,0 +170751583871,218,0 +170751583920,218,0 +170751583968,220,0 +170751584016,222,0 +170751584064,222,0 +170751584112,223,0 +170751584160,226,0 +170751584209,224,0 +170751584257,226,0 +170751584307,227,0 +170751584355,226,0 +170751584403,225,0 +170751584452,225,0 +170751584500,216,0 +170751584548,215,0 +170751584596,215,0 +170751584644,215,0 +170751584692,216,0 +170751584742,216,0 +170751584790,216,0 +170751584838,217,0 +170751584887,218,0 +170751584935,219,0 +170751584983,221,0 +170751585032,222,0 +170751585080,224,0 +170751585130,223,0 +170751585180,225,0 +170751585229,224,0 +170751585279,224,0 +170751585328,224,0 +170751585378,225,0 +170751585426,216,0 +170751585475,215,0 +170751585523,215,0 +170751585571,216,0 +170751585621,216,0 +170751585670,216,0 +170751585718,216,0 +170751585767,217,0 +170751585815,218,0 +170751585863,218,0 +170751585911,218,0 +170751585961,221,0 +170751586010,220,0 +170751586058,222,0 +170751586106,222,0 +170751586154,223,0 +170751586204,223,0 +170751586253,225,0 +170751586301,226,0 +170751586349,217,0 +170751586397,216,0 +170751586447,216,0 +170751586496,217,0 +170751586544,218,0 +170751586594,218,0 +170751586643,219,0 +170751586693,220,0 +170751586741,220,0 +170751586790,221,0 +170751586838,222,0 +170751586888,223,0 +170751586937,223,0 +170751586985,225,0 +170751587035,225,0 +170751587083,225,0 +170751587132,224,0 +170751587180,226,0 +170751587228,226,0 +170751587278,226,0 +170751587326,217,0 +170751587375,217,0 +170751587425,217,0 +170751587473,218,0 +170751587521,219,0 +170751587570,220,0 +170751587620,223,0 +170751587669,221,0 +170751587719,222,0 +170751587767,222,0 +170751587815,223,0 +170751587864,226,0 +170751587912,226,0 +170751587960,226,0 +170751588008,227,0 +170751588056,234,0 +170751588105,228,0 +170751588153,227,0 +170751588201,226,0 +170751588251,217,0 +170751588300,215,0 +170751588348,216,0 +170751588396,217,0 +170751588444,218,0 +170751588494,219,0 +170751588543,219,0 +170751588591,220,0 +170751588639,220,0 +170751588687,221,0 +170751588735,223,0 +170751588783,224,0 +170751588832,224,0 +170751588882,224,0 +170751588931,226,0 +170751588979,224,0 +170751589029,226,0 +170751589079,227,0 +170751589128,226,0 +170751589178,221,0 +170751589227,216,0 +170751589275,217,0 +170751589325,217,0 +170751589373,218,0 +170751589421,219,0 +170751589469,220,0 +170751589517,221,0 +170751589565,221,0 +170751589614,222,0 +170751589662,222,0 +170751589710,223,0 +170751589758,225,0 +170751589807,224,0 +170751589855,224,0 +170751589903,225,0 +170751589951,226,0 +170751589999,226,0 +170751590047,225,0 +170751590095,224,0 +170751590144,217,0 +170751590192,216,0 +170751590240,218,0 +170751590288,218,0 +170751590336,219,0 +170751590384,220,0 +170751590431,220,0 +170751590479,221,0 +170751590529,223,0 +170751590577,224,0 +170751590625,224,0 +170751590673,224,0 +170751590722,225,0 +170751590770,226,0 +170751590818,225,0 +170751590867,225,0 +170751590915,226,0 +170751590963,226,0 +170751591011,225,0 +170751591059,224,0 +170751591106,215,0 +170751591156,216,0 +170751591204,216,0 +170751591254,217,0 +170751591303,219,0 +170751591351,220,0 +170751591399,221,0 +170751591449,221,0 +170751591498,222,0 +170751591548,223,0 +170751591596,223,0 +170751591645,224,0 +170751591693,227,0 +170751591741,224,0 +170751591789,225,0 +170751591837,225,0 +170751591885,225,0 +170751591933,225,0 +170751591981,225,0 +170751592030,217,0 +170751592080,215,0 +170751592128,215,0 +170751592177,216,0 +170751592225,216,0 +170751592273,217,0 +170751592321,217,0 +170751592369,219,0 +170751592419,219,0 +170751592467,221,0 +170751592515,222,0 +170751592564,222,0 +170751592612,222,0 +170751592662,224,0 +170751592710,224,0 +170751592758,223,0 +170751592807,224,0 +170751592855,223,0 +170751592905,224,0 +170751592953,217,0 +170751593001,215,0 +170751593050,215,0 +170751593100,216,0 +170751593149,217,0 +170751593197,216,0 +170751593245,216,0 +170751593295,218,0 +170751593343,220,0 +170751593391,219,0 +170751593438,221,0 +170751593488,222,0 +170751593536,222,0 +170751593584,223,0 +170751593632,224,0 +170751593681,224,0 +170751593730,224,0 +170751593779,226,0 +170751593827,224,0 +170751593875,224,0 +170751593923,216,0 +170751593972,216,0 +170751594020,216,0 +170751594068,216,0 +170751594118,216,0 +170751594167,217,0 +170751594217,217,0 +170751594265,219,0 +170751594314,220,0 +170751594362,220,0 +170751594410,221,0 +170751594458,222,0 +170751594506,223,0 +170751594556,223,0 +170751594605,225,0 +170751594653,226,0 +170751594703,225,0 +170751594751,225,0 +170751594799,225,0 +170751594848,217,0 +170751594898,215,0 +170751594947,215,0 +170751594997,216,0 +170751595045,215,0 +170751595092,217,0 +170751595140,217,0 +170751595190,219,0 +170751595238,220,0 +170751595288,220,0 +170751595336,220,0 +170751595384,221,0 +170751595433,222,0 +170751595481,223,0 +170751595529,222,0 +170751595579,226,0 +170751595627,225,0 +170751595676,226,0 +170751595726,224,0 +170751595775,225,0 +170751595825,216,0 +170751595872,215,0 +170751595920,216,0 +170751595968,216,0 +170751596016,214,0 +170751596064,216,0 +170751596112,218,0 +170751596160,220,0 +170751596208,219,0 +170751596256,221,0 +170751596306,221,0 +170751596354,222,0 +170751596402,222,0 +170751596450,222,0 +170751596499,224,0 +170751596548,226,0 +170751596598,225,0 +170751596646,225,0 +170751596694,225,0 +170751596742,217,0 +170751596790,215,0 +170751596838,216,0 +170751596887,215,0 +170751596935,217,0 +170751596983,217,0 +170751597031,218,0 +170751597081,219,0 +170751597129,220,0 +170751597177,220,0 +170751597226,221,0 +170751597274,222,0 +170751597324,224,0 +170751597372,223,0 +170751597420,224,0 +170751597468,224,0 +170751597515,225,0 +170751597563,225,0 +170751597611,226,0 +170751597659,225,0 +170751597707,216,0 +170751597755,215,0 +170751597803,216,0 +170751597851,216,0 +170751597899,217,0 +170751597946,218,0 +170751597994,218,0 +170751598042,219,0 +170751598090,221,0 +170751598138,221,0 +170751598186,221,0 +170751598235,222,0 +170751598283,224,0 +170751598333,224,0 +170751598380,225,0 +170751598428,223,0 +170751598478,225,0 +170751598526,227,0 +170751598573,225,0 +170751598621,217,0 +170751598671,216,0 +170751598719,216,0 +170751598767,217,0 +170751598815,218,0 +170751598862,219,0 +170751598910,220,0 +170751598958,220,0 +170751599006,221,0 +170751599056,222,0 +170751599104,224,0 +170751599151,225,0 +170751599201,227,0 +170751599250,226,0 +170751599298,226,0 +170751599346,225,0 +170751599394,228,0 +170751599444,226,0 +170751599493,226,0 +170751599543,225,0 +170751599592,216,0 +170751599642,217,0 +170751599691,217,0 +170751599741,218,0 +170751599790,220,0 +170751599840,221,0 +170751599888,220,0 +170751599936,221,0 +170751599984,222,0 diff --git a/laser_value/0210-08.csv b/laser_value/0210-08.csv new file mode 100644 index 0000000..f11898b --- /dev/null +++ b/laser_value/0210-08.csv @@ -0,0 +1,7424 @@ +timestamp,laser_value,event +170751600032,223,0 +170751600080,223,0 +170751600128,225,0 +170751600176,225,0 +170751600224,226,0 +170751600272,226,0 +170751600320,226,0 +170751600368,226,0 +170751600417,226,0 +170751600467,224,0 +170751600515,216,0 +170751600564,216,0 +170751600612,217,0 +170751600662,218,0 +170751600710,219,0 +170751600758,219,0 +170751600806,219,0 +170751600853,221,0 +170751600901,221,0 +170751600949,222,0 +170751600997,222,0 +170751601045,226,0 +170751601095,225,0 +170751601143,226,0 +170751601191,225,0 +170751601239,225,0 +170751601286,225,0 +170751601336,226,0 +170751601385,226,0 +170751601433,224,0 +170751601481,216,0 +170751601529,216,0 +170751601577,217,0 +170751601625,218,0 +170751601673,219,0 +170751601723,221,0 +170751601772,221,0 +170751601822,222,0 +170751601870,223,0 +170751601918,224,0 +170751601966,224,0 +170751602014,225,0 +170751602062,227,0 +170751602109,227,0 +170751602159,227,0 +170751602209,226,0 +170751602257,227,0 +170751602304,226,0 +170751602352,224,0 +170751602400,216,0 +170751602450,215,0 +170751602497,216,0 +170751602545,216,0 +170751602593,216,0 +170751602641,218,0 +170751602689,218,0 +170751602737,219,0 +170751602785,220,0 +170751602833,222,0 +170751602881,222,0 +170751602928,224,0 +170751602976,223,0 +170751603026,226,0 +170751603075,226,0 +170751603123,225,0 +170751603171,225,0 +170751603221,226,0 +170751603269,226,0 +170751603317,224,0 +170751603365,216,0 +170751603413,216,0 +170751603462,216,0 +170751603512,217,0 +170751603560,218,0 +170751603608,218,0 +170751603656,219,0 +170751603703,220,0 +170751603751,221,0 +170751603799,221,0 +170751603849,223,0 +170751603897,223,0 +170751603946,224,0 +170751603994,225,0 +170751604044,227,0 +170751604093,225,0 +170751604141,225,0 +170751604189,226,0 +170751604239,225,0 +170751604287,217,0 +170751604336,215,0 +170751604384,216,0 +170751604432,217,0 +170751604480,217,0 +170751604528,219,0 +170751604576,219,0 +170751604625,220,0 +170751604673,221,0 +170751604721,221,0 +170751604769,225,0 +170751604819,224,0 +170751604868,224,0 +170751604916,224,0 +170751604966,226,0 +170751605014,228,0 +170751605062,225,0 +170751605109,226,0 +170751605157,225,0 +170751605205,225,0 +170751605253,215,0 +170751605301,214,0 +170751605349,214,0 +170751605397,215,0 +170751605445,215,0 +170751605494,216,0 +170751605543,216,0 +170751605591,216,0 +170751605639,217,0 +170751605687,218,0 +170751605737,219,0 +170751605785,220,0 +170751605832,221,0 +170751605882,222,0 +170751605930,221,0 +170751605978,223,0 +170751606027,223,0 +170751606077,224,0 +170751606126,225,0 +170751606174,217,0 +170751606222,215,0 +170751606270,216,0 +170751606318,216,0 +170751606366,216,0 +170751606413,217,0 +170751606461,218,0 +170751606511,219,0 +170751606559,220,0 +170751606607,221,0 +170751606654,221,0 +170751606702,223,0 +170751606750,223,0 +170751606800,224,0 +170751606848,224,0 +170751606896,225,0 +170751606944,226,0 +170751606992,226,0 +170751607039,225,0 +170751607087,218,0 +170751607135,216,0 +170751607185,216,0 +170751607233,217,0 +170751607282,218,0 +170751607330,219,0 +170751607378,218,0 +170751607426,219,0 +170751607476,220,0 +170751607525,221,0 +170751607573,222,0 +170751607623,224,0 +170751607672,223,0 +170751607722,226,0 +170751607770,225,0 +170751607818,225,0 +170751607865,227,0 +170751607915,224,0 +170751607964,225,0 +170751608014,225,0 +170751608062,216,0 +170751608110,215,0 +170751608159,216,0 +170751608207,217,0 +170751608255,216,0 +170751608303,217,0 +170751608351,217,0 +170751608399,218,0 +170751608449,218,0 +170751608497,220,0 +170751608545,220,0 +170751608592,221,0 +170751608642,224,0 +170751608690,223,0 +170751608738,223,0 +170751608786,216,0 +170751608835,223,0 +170751608883,225,0 +170751608931,229,0 +170751608979,225,0 +170751609027,216,0 +170751609077,216,0 +170751609126,216,0 +170751609176,216,0 +170751609223,216,0 +170751609271,218,0 +170751609319,218,0 +170751609367,218,0 +170751609415,220,0 +170751609464,220,0 +170751609512,222,0 +170751609560,222,0 +170751609610,226,0 +170751609658,224,0 +170751609705,226,0 +170751609753,225,0 +170751609801,226,0 +170751609849,225,0 +170751609897,225,0 +170751609946,216,0 +170751609994,215,0 +170751610042,215,0 +170751610090,216,0 +170751610138,215,0 +170751610186,216,0 +170751610235,217,0 +170751610283,218,0 +170751610331,219,0 +170751610379,221,0 +170751610427,221,0 +170751610475,222,0 +170751610523,223,0 +170751610570,223,0 +170751610618,224,0 +170751610668,226,0 +170751610717,225,0 +170751610767,225,0 +170751610816,224,0 +170751610866,216,0 +170751610914,215,0 +170751610963,215,0 +170751611011,215,0 +170751611059,215,0 +170751611109,215,0 +170751611157,216,0 +170751611206,216,0 +170751611256,216,0 +170751611304,215,0 +170751611352,217,0 +170751611400,219,0 +170751611448,219,0 +170751611497,220,0 +170751611545,222,0 +170751611595,222,0 +170751611643,223,0 +170751611692,224,0 +170751611740,224,0 +170751611788,226,0 +170751611836,216,0 +170751611885,215,0 +170751611933,216,0 +170751611983,216,0 +170751612032,216,0 +170751612080,217,0 +170751612128,218,0 +170751612176,219,0 +170751612226,220,0 +170751612274,221,0 +170751612323,222,0 +170751612371,223,0 +170751612421,224,0 +170751612469,225,0 +170751612517,225,0 +170751612565,225,0 +170751612613,225,0 +170751612661,226,0 +170751612709,225,0 +170751612758,217,0 +170751612808,215,0 +170751612856,217,0 +170751612903,216,0 +170751612953,216,0 +170751613001,218,0 +170751613050,218,0 +170751613100,221,0 +170751613148,221,0 +170751613195,221,0 +170751613243,222,0 +170751613291,223,0 +170751613339,225,0 +170751613387,225,0 +170751613435,225,0 +170751613482,225,0 +170751613530,225,0 +170751613578,227,0 +170751613626,226,0 +170751613674,225,0 +170751613722,216,0 +170751613770,215,0 +170751613819,216,0 +170751613867,216,0 +170751613915,216,0 +170751613963,217,0 +170751614012,217,0 +170751614062,220,0 +170751614110,220,0 +170751614159,221,0 +170751614207,221,0 +170751614255,222,0 +170751614303,225,0 +170751614351,224,0 +170751614400,224,0 +170751614449,226,0 +170751614499,225,0 +170751614547,225,0 +170751614595,225,0 +170751614643,217,0 +170751614691,215,0 +170751614738,216,0 +170751614788,215,0 +170751614836,216,0 +170751614884,218,0 +170751614932,218,0 +170751614980,219,0 +170751615029,220,0 +170751615077,220,0 +170751615125,221,0 +170751615173,221,0 +170751615222,224,0 +170751615270,224,0 +170751615318,222,0 +170751615366,223,0 +170751615416,222,0 +170751615465,222,0 +170751615515,224,0 +170751615563,225,0 +170751615611,216,0 +170751615659,215,0 +170751615708,216,0 +170751615756,216,0 +170751615804,216,0 +170751615852,217,0 +170751615900,218,0 +170751615948,219,0 +170751615996,220,0 +170751616044,221,0 +170751616092,222,0 +170751616140,222,0 +170751616188,222,0 +170751616236,224,0 +170751616285,224,0 +170751616333,226,0 +170751616381,225,0 +170751616429,225,0 +170751616477,226,0 +170751616525,222,0 +170751616574,215,0 +170751616622,215,0 +170751616672,215,0 +170751616721,216,0 +170751616769,217,0 +170751616817,218,0 +170751616865,219,0 +170751616913,219,0 +170751616963,220,0 +170751617010,223,0 +170751617058,222,0 +170751617108,224,0 +170751617158,225,0 +170751617205,225,0 +170751617253,225,0 +170751617303,226,0 +170751617351,225,0 +170751617399,225,0 +170751617447,225,0 +170751617495,216,0 +170751617544,216,0 +170751617594,216,0 +170751617643,216,0 +170751617693,217,0 +170751617741,218,0 +170751617789,218,0 +170751617837,221,0 +170751617886,219,0 +170751617936,221,0 +170751617984,222,0 +170751618032,224,0 +170751618081,224,0 +170751618129,225,0 +170751618179,226,0 +170751618227,226,0 +170751618275,226,0 +170751618324,226,0 +170751618374,225,0 +170751618423,217,0 +170751618473,215,0 +170751618522,216,0 +170751618572,217,0 +170751618620,218,0 +170751618668,218,0 +170751618716,218,0 +170751618765,219,0 +170751618813,220,0 +170751618861,221,0 +170751618909,222,0 +170751618957,224,0 +170751619005,225,0 +170751619053,225,0 +170751619101,224,0 +170751619150,225,0 +170751619198,225,0 +170751619248,230,0 +170751619297,226,0 +170751619345,225,0 +170751619393,216,0 +170751619441,216,0 +170751619491,216,0 +170751619539,218,0 +170751619587,218,0 +170751619635,219,0 +170751619683,221,0 +170751619732,220,0 +170751619782,220,0 +170751619831,222,0 +170751619879,223,0 +170751619929,224,0 +170751619977,225,0 +170751620025,225,0 +170751620073,224,0 +170751620121,224,0 +170751620169,225,0 +170751620218,225,0 +170751620266,225,0 +170751620314,216,0 +170751620364,215,0 +170751620412,215,0 +170751620460,215,0 +170751620508,216,0 +170751620556,217,0 +170751620605,218,0 +170751620653,218,0 +170751620703,221,0 +170751620751,220,0 +170751620799,221,0 +170751620847,224,0 +170751620895,222,0 +170751620943,224,0 +170751620992,224,0 +170751621040,227,0 +170751621088,225,0 +170751621136,225,0 +170751621185,224,0 +170751621233,223,0 +170751621281,216,0 +170751621329,216,0 +170751621379,216,0 +170751621428,216,0 +170751621476,217,0 +170751621524,218,0 +170751621572,219,0 +170751621620,221,0 +170751621668,222,0 +170751621716,221,0 +170751621766,222,0 +170751621815,223,0 +170751621865,223,0 +170751621914,225,0 +170751621962,226,0 +170751622010,228,0 +170751622058,225,0 +170751622106,225,0 +170751622156,226,0 +170751622204,217,0 +170751622253,216,0 +170751622301,216,0 +170751622351,216,0 +170751622398,217,0 +170751622446,215,0 +170751622496,217,0 +170751622546,218,0 +170751622595,218,0 +170751622643,220,0 +170751622693,221,0 +170751622740,221,0 +170751622788,222,0 +170751622838,223,0 +170751622887,223,0 +170751622937,224,0 +170751622985,224,0 +170751623033,225,0 +170751623082,226,0 +170751623132,217,0 +170751623180,216,0 +170751623228,215,0 +170751623277,216,0 +170751623325,216,0 +170751623373,216,0 +170751623423,217,0 +170751623472,217,0 +170751623520,218,0 +170751623568,219,0 +170751623616,220,0 +170751623664,221,0 +170751623712,222,0 +170751623760,222,0 +170751623808,223,0 +170751623856,223,0 +170751623905,224,0 +170751623953,224,0 +170751624001,226,0 +170751624049,225,0 +170751624098,216,0 +170751624146,216,0 +170751624194,216,0 +170751624242,216,0 +170751624290,218,0 +170751624338,218,0 +170751624388,218,0 +170751624437,219,0 +170751624487,219,0 +170751624536,222,0 +170751624584,221,0 +170751624634,222,0 +170751624682,224,0 +170751624731,224,0 +170751624781,225,0 +170751624829,224,0 +170751624877,225,0 +170751624925,225,0 +170751624974,225,0 +170751625022,220,0 +170751625071,216,0 +170751625119,216,0 +170751625167,216,0 +170751625215,217,0 +170751625263,218,0 +170751625313,219,0 +170751625361,219,0 +170751625410,220,0 +170751625458,221,0 +170751625506,221,0 +170751625554,222,0 +170751625602,223,0 +170751625650,226,0 +170751625700,224,0 +170751625748,225,0 +170751625796,227,0 +170751625844,225,0 +170751625892,226,0 +170751625941,225,0 +170751625989,216,0 +170751626037,216,0 +170751626085,217,0 +170751626133,218,0 +170751626181,218,0 +170751626230,220,0 +170751626280,221,0 +170751626328,221,0 +170751626377,222,0 +170751626425,222,0 +170751626475,225,0 +170751626523,224,0 +170751626571,225,0 +170751626620,224,0 +170751626668,226,0 +170751626716,225,0 +170751626764,225,0 +170751626812,225,0 +170751626862,225,0 +170751626911,217,0 +170751626959,215,0 +170751627008,216,0 +170751627056,217,0 +170751627104,218,0 +170751627154,218,0 +170751627203,221,0 +170751627251,220,0 +170751627301,221,0 +170751627350,222,0 +170751627398,223,0 +170751627448,223,0 +170751627496,223,0 +170751627544,224,0 +170751627592,224,0 +170751627640,225,0 +170751627688,225,0 +170751627736,225,0 +170751627783,225,0 +170751627831,225,0 +170751627881,215,0 +170751627929,215,0 +170751627978,217,0 +170751628026,217,0 +170751628074,218,0 +170751628122,219,0 +170751628170,220,0 +170751628218,221,0 +170751628268,222,0 +170751628317,222,0 +170751628365,224,0 +170751628413,224,0 +170751628463,224,0 +170751628511,225,0 +170751628558,225,0 +170751628606,225,0 +170751628654,225,0 +170751628702,225,0 +170751628752,225,0 +170751628801,219,0 +170751628849,216,0 +170751628897,216,0 +170751628947,216,0 +170751628996,217,0 +170751629046,217,0 +170751629095,219,0 +170751629143,219,0 +170751629191,220,0 +170751629239,221,0 +170751629289,222,0 +170751629338,222,0 +170751629386,224,0 +170751629434,225,0 +170751629482,225,0 +170751629530,225,0 +170751629580,226,0 +170751629629,226,0 +170751629677,226,0 +170751629725,225,0 +170751629774,216,0 +170751629824,216,0 +170751629873,217,0 +170751629921,218,0 +170751629969,218,0 +170751630017,218,0 +170751630065,219,0 +170751630115,220,0 +170751630163,220,0 +170751630212,223,0 +170751630262,223,0 +170751630310,224,0 +170751630358,224,0 +170751630406,224,0 +170751630455,225,0 +170751630503,225,0 +170751630553,225,0 +170751630601,226,0 +170751630649,225,0 +170751630697,216,0 +170751630745,216,0 +170751630793,217,0 +170751630842,218,0 +170751630890,219,0 +170751630938,221,0 +170751630988,220,0 +170751631036,221,0 +170751631084,222,0 +170751631133,222,0 +170751631182,224,0 +170751631230,226,0 +170751631278,225,0 +170751631326,225,0 +170751631374,226,0 +170751631424,225,0 +170751631473,226,0 +170751631521,226,0 +170751631569,226,0 +170751631619,220,0 +170751631667,216,0 +170751631715,216,0 +170751631763,217,0 +170751631812,218,0 +170751631860,219,0 +170751631910,219,0 +170751631959,220,0 +170751632009,220,0 +170751632057,222,0 +170751632106,223,0 +170751632154,223,0 +170751632202,225,0 +170751632250,226,0 +170751632298,226,0 +170751632346,225,0 +170751632394,226,0 +170751632443,226,0 +170751632491,225,0 +170751632539,225,0 +170751632589,217,0 +170751632638,215,0 +170751632686,216,0 +170751632734,216,0 +170751632784,216,0 +170751632833,217,0 +170751632881,219,0 +170751632929,218,0 +170751632979,220,0 +170751633027,220,0 +170751633076,222,0 +170751633126,224,0 +170751633174,225,0 +170751633223,225,0 +170751633273,224,0 +170751633322,227,0 +170751633372,227,0 +170751633420,227,0 +170751633469,225,0 +170751633517,217,0 +170751633566,216,0 +170751633616,216,0 +170751633665,217,0 +170751633713,215,0 +170751633763,219,0 +170751633811,219,0 +170751633859,220,0 +170751633907,221,0 +170751633955,224,0 +170751634002,224,0 +170751634050,223,0 +170751634098,224,0 +170751634146,225,0 +170751634194,225,0 +170751634244,225,0 +170751634293,226,0 +170751634341,225,0 +170751634391,226,0 +170751634439,225,0 +170751634487,216,0 +170751634535,216,0 +170751634583,217,0 +170751634632,218,0 +170751634680,218,0 +170751634728,220,0 +170751634776,221,0 +170751634824,221,0 +170751634873,222,0 +170751634921,223,0 +170751634969,223,0 +170751635018,224,0 +170751635066,225,0 +170751635114,224,0 +170751635162,225,0 +170751635211,225,0 +170751635260,226,0 +170751635308,226,0 +170751635356,225,0 +170751635406,217,0 +170751635454,217,0 +170751635501,218,0 +170751635549,219,0 +170751635599,218,0 +170751635648,221,0 +170751635698,221,0 +170751635746,222,0 +170751635794,222,0 +170751635843,223,0 +170751635891,224,0 +170751635939,224,0 +170751635987,225,0 +170751636036,226,0 +170751636084,227,0 +170751636132,225,0 +170751636180,224,0 +170751636228,224,0 +170751636276,225,0 +170751636324,226,0 +170751636371,216,0 +170751636419,215,0 +170751636467,216,0 +170751636515,217,0 +170751636563,219,0 +170751636612,220,0 +170751636660,222,0 +170751636708,220,0 +170751636756,223,0 +170751636804,223,0 +170751636853,224,0 +170751636901,226,0 +170751636949,225,0 +170751636999,227,0 +170751637047,226,0 +170751637095,225,0 +170751637143,225,0 +170751637191,227,0 +170751637239,225,0 +170751637286,216,0 +170751637334,215,0 +170751637382,216,0 +170751637432,216,0 +170751637479,217,0 +170751637527,217,0 +170751637577,218,0 +170751637625,219,0 +170751637674,220,0 +170751637724,221,0 +170751637772,222,0 +170751637819,224,0 +170751637869,224,0 +170751637917,224,0 +170751637966,225,0 +170751638014,223,0 +170751638062,225,0 +170751638110,225,0 +170751638158,226,0 +170751638207,225,0 +170751638255,216,0 +170751638303,216,0 +170751638351,216,0 +170751638399,216,0 +170751638446,216,0 +170751638494,217,0 +170751638544,217,0 +170751638593,218,0 +170751638643,217,0 +170751638691,219,0 +170751638739,221,0 +170751638786,222,0 +170751638836,223,0 +170751638884,223,0 +170751638932,223,0 +170751638980,223,0 +170751639027,225,0 +170751639075,225,0 +170751639123,225,0 +170751639171,218,0 +170751639220,215,0 +170751639268,216,0 +170751639316,216,0 +170751639364,216,0 +170751639412,218,0 +170751639460,218,0 +170751639508,218,0 +170751639556,220,0 +170751639605,220,0 +170751639653,222,0 +170751639701,223,0 +170751639749,223,0 +170751639798,224,0 +170751639848,224,0 +170751639897,225,0 +170751639945,227,0 +170751639993,228,0 +170751640041,226,0 +170751640088,225,0 +170751640136,216,0 +170751640184,216,0 +170751640232,216,0 +170751640280,217,0 +170751640328,218,0 +170751640377,219,0 +170751640425,219,0 +170751640475,221,0 +170751640522,220,0 +170751640572,221,0 +170751640621,223,0 +170751640669,223,0 +170751640717,225,0 +170751640765,225,0 +170751640813,225,0 +170751640862,225,0 +170751640910,225,0 +170751640958,225,0 +170751641006,226,0 +170751641054,224,0 +170751641102,215,0 +170751641151,215,0 +170751641199,216,0 +170751641247,216,0 +170751641295,216,0 +170751641343,217,0 +170751641391,218,0 +170751641438,219,0 +170751641488,219,0 +170751641536,220,0 +170751641584,221,0 +170751641633,222,0 +170751641683,223,0 +170751641732,223,0 +170751641782,224,0 +170751641830,225,0 +170751641878,224,0 +170751641927,226,0 +170751641977,225,0 +170751642026,216,0 +170751642074,215,0 +170751642124,215,0 +170751642173,215,0 +170751642221,215,0 +170751642269,216,0 +170751642319,216,0 +170751642367,216,0 +170751642415,216,0 +170751642464,216,0 +170751642514,217,0 +170751642562,218,0 +170751642610,219,0 +170751642658,221,0 +170751642706,221,0 +170751642755,222,0 +170751642803,223,0 +170751642853,223,0 +170751642901,225,0 +170751642950,222,0 +170751642998,215,0 +170751643046,215,0 +170751643095,215,0 +170751643145,216,0 +170751643193,216,0 +170751643242,216,0 +170751643290,216,0 +170751643338,217,0 +170751643386,218,0 +170751643436,220,0 +170751643484,221,0 +170751643533,221,0 +170751643583,221,0 +170751643633,222,0 +170751643682,225,0 +170751643732,226,0 +170751643781,224,0 +170751643829,226,0 +170751643877,223,0 +170751643925,215,0 +170751643974,215,0 +170751644024,215,0 +170751644074,216,0 +170751644121,216,0 +170751644171,216,0 +170751644219,216,0 +170751644268,216,0 +170751644316,218,0 +170751644366,219,0 +170751644414,219,0 +170751644462,221,0 +170751644512,222,0 +170751644561,222,0 +170751644610,222,0 +170751644660,224,0 +170751644708,224,0 +170751644756,224,0 +170751644804,226,0 +170751644853,217,0 +170751644903,215,0 +170751644952,215,0 +170751645000,215,0 +170751645050,216,0 +170751645099,215,0 +170751645149,217,0 +170751645197,218,0 +170751645246,219,0 +170751645296,219,0 +170751645344,221,0 +170751645393,222,0 +170751645441,225,0 +170751645489,224,0 +170751645537,225,0 +170751645587,226,0 +170751645635,226,0 +170751645684,224,0 +170751645732,226,0 +170751645780,217,0 +170751645828,215,0 +170751645877,215,0 +170751645925,215,0 +170751645973,216,0 +170751646022,215,0 +170751646070,216,0 +170751646118,216,0 +170751646166,218,0 +170751646214,219,0 +170751646262,219,0 +170751646310,221,0 +170751646358,221,0 +170751646407,223,0 +170751646455,224,0 +170751646505,223,0 +170751646554,224,0 +170751646602,224,0 +170751646652,226,0 +170751646701,225,0 +170751646751,216,0 +170751646799,215,0 +170751646848,217,0 +170751646896,217,0 +170751646946,218,0 +170751646995,219,0 +170751647043,219,0 +170751647091,221,0 +170751647141,221,0 +170751647188,221,0 +170751647238,223,0 +170751647288,222,0 +170751647336,235,0 +170751647385,224,0 +170751647434,225,0 +170751647482,225,0 +170751647530,226,0 +170751647580,225,0 +170751647629,226,0 +170751647677,218,0 +170751647727,215,0 +170751647775,216,0 +170751647824,218,0 +170751647872,218,0 +170751647920,219,0 +170751647970,220,0 +170751648018,220,0 +170751648066,220,0 +170751648115,223,0 +170751648163,223,0 +170751648213,224,0 +170751648261,225,0 +170751648310,224,0 +170751648358,225,0 +170751648406,227,0 +170751648454,226,0 +170751648503,225,0 +170751648553,226,0 +170751648603,225,0 +170751648652,215,0 +170751648700,215,0 +170751648748,217,0 +170751648798,218,0 +170751648847,218,0 +170751648895,220,0 +170751648943,220,0 +170751648991,221,0 +170751649039,222,0 +170751649089,222,0 +170751649136,223,0 +170751649184,224,0 +170751649234,225,0 +170751649282,226,0 +170751649330,225,0 +170751649380,227,0 +170751649428,227,0 +170751649477,226,0 +170751649525,224,0 +170751649573,217,0 +170751649621,215,0 +170751649671,215,0 +170751649720,216,0 +170751649768,217,0 +170751649816,218,0 +170751649865,218,0 +170751649915,219,0 +170751649964,221,0 +170751650014,222,0 +170751650062,223,0 +170751650110,223,0 +170751650158,223,0 +170751650206,225,0 +170751650254,224,0 +170751650303,227,0 +170751650351,226,0 +170751650401,225,0 +170751650449,226,0 +170751650498,218,0 +170751650548,215,0 +170751650596,216,0 +170751650645,216,0 +170751650693,216,0 +170751650741,217,0 +170751650789,218,0 +170751650837,218,0 +170751650887,219,0 +170751650935,220,0 +170751650983,221,0 +170751651032,222,0 +170751651080,223,0 +170751651128,223,0 +170751651178,224,0 +170751651227,223,0 +170751651275,224,0 +170751651325,224,0 +170751651372,225,0 +170751651422,225,0 +170751651470,216,0 +170751651518,215,0 +170751651566,216,0 +170751651615,217,0 +170751651665,218,0 +170751651715,219,0 +170751651764,220,0 +170751651812,220,0 +170751651860,221,0 +170751651908,221,0 +170751651957,222,0 +170751652005,223,0 +170751652053,224,0 +170751652101,225,0 +170751652149,228,0 +170751652199,226,0 +170751652247,227,0 +170751652295,227,0 +170751652344,227,0 +170751652392,217,0 +170751652440,215,0 +170751652488,216,0 +170751652538,217,0 +170751652587,218,0 +170751652635,219,0 +170751652685,219,0 +170751652734,220,0 +170751652784,220,0 +170751652833,222,0 +170751652881,224,0 +170751652931,224,0 +170751652979,224,0 +170751653027,225,0 +170751653075,225,0 +170751653123,227,0 +170751653172,226,0 +170751653222,225,0 +170751653270,226,0 +170751653318,225,0 +170751653366,216,0 +170751653415,215,0 +170751653463,216,0 +170751653513,217,0 +170751653562,217,0 +170751653610,218,0 +170751653658,220,0 +170751653706,222,0 +170751653753,221,0 +170751653801,221,0 +170751653851,222,0 +170751653900,223,0 +170751653948,224,0 +170751653998,225,0 +170751654046,225,0 +170751654093,225,0 +170751654141,227,0 +170751654189,226,0 +170751654237,225,0 +170751654285,217,0 +170751654333,215,0 +170751654381,216,0 +170751654429,216,0 +170751654477,216,0 +170751654525,216,0 +170751654574,217,0 +170751654622,217,0 +170751654670,217,0 +170751654718,219,0 +170751654767,220,0 +170751654817,221,0 +170751654865,223,0 +170751654912,223,0 +170751654960,224,0 +170751655008,226,0 +170751655056,225,0 +170751655104,225,0 +170751655153,225,0 +170751655203,224,0 +170751655252,215,0 +170751655300,215,0 +170751655348,215,0 +170751655398,215,0 +170751655446,215,0 +170751655495,216,0 +170751655543,217,0 +170751655593,217,0 +170751655641,217,0 +170751655690,219,0 +170751655738,220,0 +170751655786,221,0 +170751655834,221,0 +170751655882,223,0 +170751655929,223,0 +170751655977,224,0 +170751656025,225,0 +170751656075,223,0 +170751656124,225,0 +170751656174,217,0 +170751656223,216,0 +170751656273,216,0 +170751656322,216,0 +170751656370,217,0 +170751656420,216,0 +170751656468,217,0 +170751656517,218,0 +170751656565,218,0 +170751656615,220,0 +170751656664,221,0 +170751656714,222,0 +170751656762,222,0 +170751656810,224,0 +170751656859,224,0 +170751656909,225,0 +170751656958,225,0 +170751657008,226,0 +170751657057,227,0 +170751657105,217,0 +170751657155,216,0 +170751657203,216,0 +170751657251,217,0 +170751657299,217,0 +170751657348,218,0 +170751657398,219,0 +170751657446,221,0 +170751657495,221,0 +170751657545,223,0 +170751657593,223,0 +170751657642,223,0 +170751657692,223,0 +170751657741,226,0 +170751657791,225,0 +170751657839,225,0 +170751657887,225,0 +170751657936,225,0 +170751657984,225,0 +170751658032,223,0 +170751658080,215,0 +170751658128,216,0 +170751658176,216,0 +170751658226,216,0 +170751658274,217,0 +170751658322,218,0 +170751658371,220,0 +170751658419,220,0 +170751658467,221,0 +170751658515,222,0 +170751658563,222,0 +170751658611,217,0 +170751658658,219,0 +170751658708,223,0 +170751658757,225,0 +170751658805,225,0 +170751658853,225,0 +170751658901,226,0 +170751658949,226,0 +170751658997,217,0 +170751659046,214,0 +170751659094,216,0 +170751659142,216,0 +170751659190,218,0 +170751659238,218,0 +170751659286,218,0 +170751659333,219,0 +170751659381,219,0 +170751659429,220,0 +170751659477,220,0 +170751659525,221,0 +170751659573,223,0 +170751659621,223,0 +170751659669,223,0 +170751659717,224,0 +170751659765,224,0 +170751659812,224,0 +170751659860,225,0 +170751659908,225,0 +170751659956,218,0 +170751660004,217,0 +170751660053,218,0 +170751660101,219,0 +170751660149,220,0 +170751660197,220,0 +170751660245,221,0 +170751660294,221,0 +170751660342,217,0 +170751660392,223,0 +170751660440,224,0 +170751660487,224,0 +170751660535,225,0 +170751660583,226,0 +170751660631,226,0 +170751660679,225,0 +170751660727,226,0 +170751660775,226,0 +170751660823,225,0 +170751660870,224,0 +170751660918,217,0 +170751660966,217,0 +170751661014,219,0 +170751661064,220,0 +170751661111,220,0 +170751661159,221,0 +170751661207,221,0 +170751661256,222,0 +170751661304,222,0 +170751661352,222,0 +170751661400,225,0 +170751661448,224,0 +170751661498,224,0 +170751661546,225,0 +170751661593,225,0 +170751661641,225,0 +170751661691,225,0 +170751661739,225,0 +170751661788,226,0 +170751661838,218,0 +170751661888,218,0 +170751661937,218,0 +170751661987,219,0 +170751662036,220,0 +170751662086,221,0 +170751662135,222,0 +170751662183,222,0 +170751662231,223,0 +170751662281,223,0 +170751662329,223,0 +170751662378,225,0 +170751662427,224,0 +170751662475,225,0 +170751662525,225,0 +170751662575,226,0 +170751662622,225,0 +170751662672,225,0 +170751662721,225,0 +170751662771,218,0 +170751662819,219,0 +170751662867,220,0 +170751662914,220,0 +170751662964,220,0 +170751663013,221,0 +170751663061,222,0 +170751663109,222,0 +170751663157,223,0 +170751663205,224,0 +170751663253,224,0 +170751663301,225,0 +170751663349,225,0 +170751663396,226,0 +170751663446,226,0 +170751663494,225,0 +170751663541,227,0 +170751663589,226,0 +170751663637,225,0 +170751663685,225,0 +170751663733,218,0 +170751663782,218,0 +170751663830,218,0 +170751663880,219,0 +170751663928,220,0 +170751663976,221,0 +170751664023,222,0 +170751664071,224,0 +170751664119,225,0 +170751664167,224,0 +170751664215,226,0 +170751664263,225,0 +170751664311,226,0 +170751664359,226,0 +170751664407,228,0 +170751664454,226,0 +170751664502,225,0 +170751664550,226,0 +170751664598,225,0 +170751664648,223,0 +170751664695,215,0 +170751664743,215,0 +170751664791,216,0 +170751664839,217,0 +170751664888,218,0 +170751664936,220,0 +170751664984,220,0 +170751665032,219,0 +170751665080,222,0 +170751665129,222,0 +170751665179,224,0 +170751665227,223,0 +170751665275,224,0 +170751665322,224,0 +170751665370,225,0 +170751665418,225,0 +170751665466,225,0 +170751665514,225,0 +170751665562,225,0 +170751665610,216,0 +170751665658,215,0 +170751665706,215,0 +170751665754,215,0 +170751665802,215,0 +170751665851,216,0 +170751665899,216,0 +170751665949,217,0 +170751665997,217,0 +170751666046,216,0 +170751666094,220,0 +170751666144,221,0 +170751666193,222,0 +170751666241,222,0 +170751666289,223,0 +170751666339,224,0 +170751666387,224,0 +170751666435,224,0 +170751666483,228,0 +170751666532,222,0 +170751666582,216,0 +170751666630,216,0 +170751666678,216,0 +170751666726,216,0 +170751666775,217,0 +170751666823,218,0 +170751666872,219,0 +170751666922,220,0 +170751666970,219,0 +170751667018,220,0 +170751667067,223,0 +170751667117,225,0 +170751667166,223,0 +170751667214,225,0 +170751667262,224,0 +170751667312,225,0 +170751667361,226,0 +170751667411,225,0 +170751667459,225,0 +170751667509,216,0 +170751667556,215,0 +170751667604,215,0 +170751667652,216,0 +170751667700,216,0 +170751667750,217,0 +170751667798,218,0 +170751667847,219,0 +170751667895,219,0 +170751667945,219,0 +170751667994,221,0 +170751668042,221,0 +170751668092,223,0 +170751668141,224,0 +170751668191,224,0 +170751668240,226,0 +170751668290,227,0 +170751668339,225,0 +170751668387,225,0 +170751668437,217,0 +170751668486,215,0 +170751668534,215,0 +170751668582,215,0 +170751668630,216,0 +170751668678,216,0 +170751668728,216,0 +170751668776,217,0 +170751668825,218,0 +170751668873,219,0 +170751668921,221,0 +170751668971,222,0 +170751669019,223,0 +170751669066,223,0 +170751669114,224,0 +170751669162,225,0 +170751669210,225,0 +170751669258,226,0 +170751669306,225,0 +170751669354,225,0 +170751669403,216,0 +170751669453,215,0 +170751669502,216,0 +170751669552,216,0 +170751669600,216,0 +170751669649,217,0 +170751669698,218,0 +170751669746,219,0 +170751669796,219,0 +170751669844,220,0 +170751669893,221,0 +170751669943,223,0 +170751669992,224,0 +170751670040,223,0 +170751670088,224,0 +170751670136,225,0 +170751670184,225,0 +170751670234,225,0 +170751670282,225,0 +170751670330,217,0 +170751670379,215,0 +170751670427,215,0 +170751670475,216,0 +170751670524,216,0 +170751670572,216,0 +170751670622,217,0 +170751670670,218,0 +170751670717,219,0 +170751670765,221,0 +170751670815,221,0 +170751670865,223,0 +170751670912,223,0 +170751670960,224,0 +170751671008,224,0 +170751671056,224,0 +170751671104,226,0 +170751671152,225,0 +170751671202,225,0 +170751671251,225,0 +170751671301,216,0 +170751671349,215,0 +170751671398,216,0 +170751671448,216,0 +170751671497,216,0 +170751671547,217,0 +170751671595,218,0 +170751671643,219,0 +170751671691,220,0 +170751671739,220,0 +170751671787,221,0 +170751671836,222,0 +170751671884,224,0 +170751671932,225,0 +170751671980,224,0 +170751672028,225,0 +170751672077,225,0 +170751672125,225,0 +170751672173,225,0 +170751672221,216,0 +170751672268,215,0 +170751672316,215,0 +170751672364,215,0 +170751672412,215,0 +170751672460,216,0 +170751672508,216,0 +170751672556,217,0 +170751672605,217,0 +170751672654,217,0 +170751672702,219,0 +170751672750,220,0 +170751672800,220,0 +170751672848,224,0 +170751672897,223,0 +170751672945,223,0 +170751672995,223,0 +170751673042,224,0 +170751673090,226,0 +170751673138,224,0 +170751673186,215,0 +170751673234,215,0 +170751673282,215,0 +170751673330,215,0 +170751673380,215,0 +170751673429,214,0 +170751673479,216,0 +170751673527,217,0 +170751673574,218,0 +170751673622,218,0 +170751673670,219,0 +170751673718,220,0 +170751673766,223,0 +170751673814,223,0 +170751673862,222,0 +170751673910,225,0 +170751673957,224,0 +170751674005,223,0 +170751674053,225,0 +170751674101,217,0 +170751674149,215,0 +170751674199,215,0 +170751674248,215,0 +170751674296,215,0 +170751674344,216,0 +170751674392,216,0 +170751674439,216,0 +170751674487,215,0 +170751674537,217,0 +170751674586,219,0 +170751674636,219,0 +170751674685,220,0 +170751674733,221,0 +170751674781,222,0 +170751674830,223,0 +170751674878,224,0 +170751674926,223,0 +170751674974,225,0 +170751675024,225,0 +170751675072,215,0 +170751675121,214,0 +170751675171,215,0 +170751675219,215,0 +170751675268,216,0 +170751675318,216,0 +170751675366,216,0 +170751675415,217,0 +170751675465,217,0 +170751675513,216,0 +170751675561,217,0 +170751675610,219,0 +170751675659,219,0 +170751675707,222,0 +170751675755,222,0 +170751675803,223,0 +170751675852,223,0 +170751675902,223,0 +170751675951,225,0 +170751676001,217,0 +170751676049,214,0 +170751676097,214,0 +170751676144,214,0 +170751676192,215,0 +170751676240,215,0 +170751676288,215,0 +170751676336,215,0 +170751676384,216,0 +170751676434,216,0 +170751676483,216,0 +170751676533,217,0 +170751676581,218,0 +170751676630,219,0 +170751676678,220,0 +170751676726,221,0 +170751676774,222,0 +170751676823,223,0 +170751676871,225,0 +170751676919,225,0 +170751676969,215,0 +170751677017,214,0 +170751677066,215,0 +170751677114,215,0 +170751677164,215,0 +170751677212,215,0 +170751677259,217,0 +170751677309,216,0 +170751677357,217,0 +170751677406,217,0 +170751677456,217,0 +170751677504,218,0 +170751677552,220,0 +170751677600,221,0 +170751677649,221,0 +170751677699,222,0 +170751677748,222,0 +170751677796,222,0 +170751677844,226,0 +170751677892,217,0 +170751677942,215,0 +170751677990,216,0 +170751678037,216,0 +170751678085,217,0 +170751678133,218,0 +170751678181,218,0 +170751678231,220,0 +170751678278,220,0 +170751678326,221,0 +170751678374,221,0 +170751678422,222,0 +170751678471,223,0 +170751678519,223,0 +170751678569,224,0 +170751678617,225,0 +170751678665,226,0 +170751678712,226,0 +170751678760,226,0 +170751678808,225,0 +170751678856,216,0 +170751678905,216,0 +170751678953,217,0 +170751679001,218,0 +170751679051,219,0 +170751679100,219,0 +170751679148,220,0 +170751679196,222,0 +170751679244,222,0 +170751679294,223,0 +170751679343,223,0 +170751679393,226,0 +170751679442,225,0 +170751679490,225,0 +170751679538,224,0 +170751679587,226,0 +170751679635,227,0 +170751679683,225,0 +170751679733,226,0 +170751679782,225,0 +170751679830,225,0 +170751679878,225,0 +170751679926,225,0 +170751679974,225,0 +170751680022,226,0 +170751680070,226,0 +170751680118,226,0 +170751680166,225,0 +170751680214,225,0 +170751680262,219,0 +170751680310,218,0 +170751680359,219,0 +170751680407,220,0 +170751680455,222,0 +170751680504,222,0 +170751680552,222,0 +170751680600,223,0 +170751680650,223,0 +170751680697,227,0 +170751680745,225,0 +170751680793,226,0 +170751680841,226,0 +170751680889,226,0 +170751680939,226,0 +170751680987,226,0 +170751681036,225,0 +170751681084,225,0 +170751681132,226,0 +170751681180,225,0 +170751681228,217,0 +170751681276,217,0 +170751681323,218,0 +170751681371,219,0 +170751681419,219,0 +170751681469,218,0 +170751681516,221,0 +170751681564,223,0 +170751681612,223,0 +170751681660,223,0 +170751681708,224,0 +170751681756,225,0 +170751681805,225,0 +170751681855,224,0 +170751681903,227,0 +170751681951,225,0 +170751682000,225,0 +170751682048,226,0 +170751682096,225,0 +170751682144,216,0 +170751682193,215,0 +170751682241,215,0 +170751682289,215,0 +170751682338,216,0 +170751682388,217,0 +170751682436,218,0 +170751682483,219,0 +170751682533,220,0 +170751682581,220,0 +170751682629,221,0 +170751682677,223,0 +170751682725,224,0 +170751682772,225,0 +170751682820,224,0 +170751682868,225,0 +170751682916,225,0 +170751682966,226,0 +170751683014,226,0 +170751683063,225,0 +170751683111,215,0 +170751683159,215,0 +170751683207,215,0 +170751683257,215,0 +170751683306,216,0 +170751683356,216,0 +170751683405,217,0 +170751683455,219,0 +170751683504,220,0 +170751683554,220,0 +170751683603,221,0 +170751683651,222,0 +170751683699,223,0 +170751683747,224,0 +170751683795,224,0 +170751683843,225,0 +170751683891,225,0 +170751683939,225,0 +170751683987,225,0 +170751684034,217,0 +170751684082,215,0 +170751684130,215,0 +170751684178,215,0 +170751684226,216,0 +170751684275,216,0 +170751684323,216,0 +170751684373,217,0 +170751684421,218,0 +170751684469,219,0 +170751684516,220,0 +170751684564,221,0 +170751684612,222,0 +170751684660,222,0 +170751684710,223,0 +170751684757,223,0 +170751684805,224,0 +170751684855,224,0 +170751684904,225,0 +170751684952,225,0 +170751685000,217,0 +170751685048,215,0 +170751685096,216,0 +170751685144,216,0 +170751685193,216,0 +170751685242,216,0 +170751685290,216,0 +170751685340,217,0 +170751685388,218,0 +170751685435,219,0 +170751685483,220,0 +170751685533,221,0 +170751685582,223,0 +170751685630,223,0 +170751685680,224,0 +170751685729,225,0 +170751685777,224,0 +170751685825,224,0 +170751685873,224,0 +170751685922,225,0 +170751685970,216,0 +170751686018,215,0 +170751686066,215,0 +170751686114,215,0 +170751686161,216,0 +170751686209,216,0 +170751686259,216,0 +170751686307,217,0 +170751686355,217,0 +170751686403,217,0 +170751686452,219,0 +170751686500,220,0 +170751686548,221,0 +170751686596,222,0 +170751686643,223,0 +170751686693,223,0 +170751686742,224,0 +170751686790,225,0 +170751686838,224,0 +170751686886,216,0 +170751686934,215,0 +170751686983,215,0 +170751687031,215,0 +170751687079,215,0 +170751687127,215,0 +170751687176,216,0 +170751687224,216,0 +170751687272,216,0 +170751687320,217,0 +170751687368,218,0 +170751687416,219,0 +170751687464,221,0 +170751687511,221,0 +170751687559,222,0 +170751687607,223,0 +170751687655,223,0 +170751687703,225,0 +170751687751,224,0 +170751687799,225,0 +170751687847,225,0 +170751687895,215,0 +170751687942,215,0 +170751687990,215,0 +170751688038,216,0 +170751688086,216,0 +170751688136,216,0 +170751688183,216,0 +170751688233,217,0 +170751688281,218,0 +170751688329,219,0 +170751688377,221,0 +170751688424,222,0 +170751688472,222,0 +170751688520,224,0 +170751688568,222,0 +170751688616,224,0 +170751688664,225,0 +170751688712,224,0 +170751688760,226,0 +170751688807,218,0 +170751688857,215,0 +170751688905,215,0 +170751688953,215,0 +170751689000,216,0 +170751689048,216,0 +170751689096,216,0 +170751689144,217,0 +170751689192,218,0 +170751689240,219,0 +170751689288,219,0 +170751689335,221,0 +170751689383,221,0 +170751689431,223,0 +170751689481,223,0 +170751689528,225,0 +170751689576,224,0 +170751689624,225,0 +170751689672,224,0 +170751689722,225,0 +170751689771,217,0 +170751689819,215,0 +170751689868,216,0 +170751689916,216,0 +170751689966,216,0 +170751690014,217,0 +170751690061,217,0 +170751690109,218,0 +170751690157,219,0 +170751690205,220,0 +170751690253,221,0 +170751690301,221,0 +170751690349,221,0 +170751690397,222,0 +170751690444,224,0 +170751690492,224,0 +170751690540,224,0 +170751690588,224,0 +170751690636,226,0 +170751690684,225,0 +170751690732,218,0 +170751690781,216,0 +170751690829,217,0 +170751690877,218,0 +170751690926,218,0 +170751690974,219,0 +170751691022,220,0 +170751691071,220,0 +170751691119,220,0 +170751691167,223,0 +170751691215,221,0 +170751691263,224,0 +170751691311,224,0 +170751691358,223,0 +170751691406,224,0 +170751691454,222,0 +170751691504,226,0 +170751691552,226,0 +170751691601,226,0 +170751691649,226,0 +170751691697,219,0 +170751691745,218,0 +170751691793,219,0 +170751691841,220,0 +170751691889,220,0 +170751691936,222,0 +170751691986,221,0 +170751692034,223,0 +170751692082,222,0 +170751692131,223,0 +170751692181,224,0 +170751692229,225,0 +170751692277,224,0 +170751692325,226,0 +170751692372,225,0 +170751692420,226,0 +170751692468,226,0 +170751692518,225,0 +170751692565,225,0 +170751692613,224,0 +170751692661,217,0 +170751692709,218,0 +170751692759,219,0 +170751692806,219,0 +170751692854,221,0 +170751692904,221,0 +170751692952,222,0 +170751693001,224,0 +170751693049,223,0 +170751693098,225,0 +170751693146,226,0 +170751693194,225,0 +170751693242,225,0 +170751693290,227,0 +170751693338,226,0 +170751693386,226,0 +170751693433,226,0 +170751693481,227,0 +170751693529,225,0 +170751693579,220,0 +170751693627,217,0 +170751693676,217,0 +170751693725,219,0 +170751693773,219,0 +170751693821,220,0 +170751693869,221,0 +170751693919,221,0 +170751693968,223,0 +170751694016,223,0 +170751694065,224,0 +170751694113,225,0 +170751694161,224,0 +170751694211,226,0 +170751694259,227,0 +170751694307,225,0 +170751694355,226,0 +170751694403,226,0 +170751694451,226,0 +170751694500,225,0 +170751694548,217,0 +170751694598,215,0 +170751694645,216,0 +170751694693,217,0 +170751694741,218,0 +170751694791,218,0 +170751694839,218,0 +170751694887,220,0 +170751694936,221,0 +170751694986,223,0 +170751695035,222,0 +170751695083,225,0 +170751695133,224,0 +170751695181,225,0 +170751695230,226,0 +170751695280,226,0 +170751695328,226,0 +170751695375,227,0 +170751695425,226,0 +170751695473,226,0 +170751695521,216,0 +170751695570,215,0 +170751695618,215,0 +170751695666,216,0 +170751695714,217,0 +170751695762,218,0 +170751695810,219,0 +170751695858,219,0 +170751695908,219,0 +170751695957,220,0 +170751696005,221,0 +170751696053,222,0 +170751696101,223,0 +170751696149,223,0 +170751696198,223,0 +170751696246,224,0 +170751696296,226,0 +170751696344,225,0 +170751696391,225,0 +170751696441,221,0 +170751696491,215,0 +170751696538,215,0 +170751696586,216,0 +170751696634,217,0 +170751696684,218,0 +170751696732,219,0 +170751696780,220,0 +170751696828,220,0 +170751696876,221,0 +170751696924,222,0 +170751696973,223,0 +170751697023,223,0 +170751697071,225,0 +170751697120,225,0 +170751697170,225,0 +170751697219,226,0 +170751697267,225,0 +170751697315,226,0 +170751697363,225,0 +170751697413,217,0 +170751697461,215,0 +170751697509,215,0 +170751697557,215,0 +170751697605,217,0 +170751697654,217,0 +170751697702,218,0 +170751697750,219,0 +170751697799,220,0 +170751697849,222,0 +170751697898,222,0 +170751697946,223,0 +170751697994,223,0 +170751698042,224,0 +170751698090,224,0 +170751698138,224,0 +170751698187,226,0 +170751698237,226,0 +170751698286,225,0 +170751698334,225,0 +170751698384,217,0 +170751698433,216,0 +170751698483,216,0 +170751698531,217,0 +170751698580,217,0 +170751698629,218,0 +170751698677,219,0 +170751698725,220,0 +170751698775,221,0 +170751698823,222,0 +170751698872,223,0 +170751698920,223,0 +170751698968,223,0 +170751699018,224,0 +170751699066,226,0 +170751699113,224,0 +170751699161,225,0 +170751699209,226,0 +170751699258,225,0 +170751699306,224,0 +170751699354,216,0 +170751699404,215,0 +170751699452,216,0 +170751699499,216,0 +170751699547,217,0 +170751699595,218,0 +170751699643,219,0 +170751699691,219,0 +170751699739,220,0 +170751699788,220,0 +170751699836,222,0 +170751699884,223,0 +170751699932,223,0 +170751699980,223,0 +170751700028,223,0 +170751700077,224,0 +170751700125,223,0 +170751700173,225,0 +170751700221,226,0 +170751700268,223,0 +170751700318,215,0 +170751700367,215,0 +170751700417,215,0 +170751700465,216,0 +170751700513,217,0 +170751700562,220,0 +170751700610,219,0 +170751700658,220,0 +170751700706,221,0 +170751700754,221,0 +170751700804,222,0 +170751700853,223,0 +170751700903,224,0 +170751700952,224,0 +170751701002,225,0 +170751701051,225,0 +170751701099,225,0 +170751701147,226,0 +170751701197,225,0 +170751701245,216,0 +170751701294,215,0 +170751701342,215,0 +170751701390,216,0 +170751701438,216,0 +170751701487,218,0 +170751701535,219,0 +170751701583,219,0 +170751701633,221,0 +170751701681,222,0 +170751701729,222,0 +170751701777,223,0 +170751701825,224,0 +170751701872,224,0 +170751701920,224,0 +170751701968,225,0 +170751702016,225,0 +170751702066,225,0 +170751702115,225,0 +170751702165,225,0 +170751702214,217,0 +170751702264,215,0 +170751702313,216,0 +170751702361,216,0 +170751702409,216,0 +170751702457,217,0 +170751702505,217,0 +170751702555,218,0 +170751702604,219,0 +170751702654,220,0 +170751702702,221,0 +170751702750,222,0 +170751702798,223,0 +170751702847,222,0 +170751702897,223,0 +170751702945,224,0 +170751702993,225,0 +170751703040,225,0 +170751703088,225,0 +170751703138,225,0 +170751703186,216,0 +170751703234,216,0 +170751703283,216,0 +170751703333,216,0 +170751703381,216,0 +170751703429,217,0 +170751703477,217,0 +170751703525,217,0 +170751703573,218,0 +170751703621,219,0 +170751703670,220,0 +170751703720,222,0 +170751703767,221,0 +170751703817,223,0 +170751703865,223,0 +170751703913,224,0 +170751703961,225,0 +170751704010,224,0 +170751704060,225,0 +170751704108,217,0 +170751704156,215,0 +170751704204,215,0 +170751704252,215,0 +170751704300,216,0 +170751704347,216,0 +170751704395,217,0 +170751704445,217,0 +170751704493,218,0 +170751704542,219,0 +170751704590,220,0 +170751704638,221,0 +170751704686,222,0 +170751704736,223,0 +170751704784,223,0 +170751704832,225,0 +170751704879,224,0 +170751704929,224,0 +170751704978,225,0 +170751705026,225,0 +170751705074,216,0 +170751705124,215,0 +170751705173,215,0 +170751705223,216,0 +170751705272,216,0 +170751705322,216,0 +170751705370,216,0 +170751705418,217,0 +170751705467,218,0 +170751705517,219,0 +170751705565,220,0 +170751705613,220,0 +170751705661,221,0 +170751705709,222,0 +170751705757,222,0 +170751705805,222,0 +170751705852,223,0 +170751705902,223,0 +170751705950,224,0 +170751706000,226,0 +170751706049,217,0 +170751706097,216,0 +170751706145,217,0 +170751706194,219,0 +170751706242,219,0 +170751706292,219,0 +170751706340,220,0 +170751706388,220,0 +170751706435,221,0 +170751706483,224,0 +170751706533,223,0 +170751706582,225,0 +170751706632,225,0 +170751706680,225,0 +170751706730,226,0 +170751706779,225,0 +170751706829,225,0 +170751706876,226,0 +170751706924,226,0 +170751706974,224,0 +170751707022,216,0 +170751707071,216,0 +170751707119,218,0 +170751707167,218,0 +170751707217,219,0 +170751707266,220,0 +170751707314,219,0 +170751707364,221,0 +170751707413,222,0 +170751707463,223,0 +170751707511,224,0 +170751707559,225,0 +170751707608,224,0 +170751707658,225,0 +170751707706,225,0 +170751707755,227,0 +170751707803,226,0 +170751707851,226,0 +170751707899,226,0 +170751707948,217,0 +170751707998,215,0 +170751708046,216,0 +170751708094,216,0 +170751708142,217,0 +170751708191,219,0 +170751708241,218,0 +170751708289,220,0 +170751708337,221,0 +170751708386,221,0 +170751708434,222,0 +170751708484,223,0 +170751708532,224,0 +170751708580,224,0 +170751708627,224,0 +170751708677,225,0 +170751708725,224,0 +170751708773,226,0 +170751708821,227,0 +170751708869,226,0 +170751708918,218,0 +170751708966,216,0 +170751709014,217,0 +170751709064,217,0 +170751709112,218,0 +170751709160,219,0 +170751709209,220,0 +170751709257,220,0 +170751709307,221,0 +170751709356,223,0 +170751709406,223,0 +170751709454,223,0 +170751709503,224,0 +170751709553,224,0 +170751709602,225,0 +170751709650,225,0 +170751709698,226,0 +170751709746,222,0 +170751709794,222,0 +170751709842,224,0 +170751709890,215,0 +170751709938,215,0 +170751709985,216,0 +170751710035,216,0 +170751710085,217,0 +170751710132,218,0 +170751710182,218,0 +170751710230,219,0 +170751710279,220,0 +170751710327,220,0 +170751710375,221,0 +170751710423,222,0 +170751710473,223,0 +170751710521,225,0 +170751710570,224,0 +170751710618,225,0 +170751710666,224,0 +170751710714,224,0 +170751710764,225,0 +170751710813,218,0 +170751710861,215,0 +170751710909,214,0 +170751710957,215,0 +170751711005,216,0 +170751711053,215,0 +170751711101,217,0 +170751711150,217,0 +170751711200,219,0 +170751711248,220,0 +170751711297,221,0 +170751711347,223,0 +170751711395,222,0 +170751711443,223,0 +170751711491,224,0 +170751711540,224,0 +170751711590,224,0 +170751711639,225,0 +170751711689,224,0 +170751711737,225,0 +170751711786,217,0 +170751711834,215,0 +170751711882,216,0 +170751711930,216,0 +170751711978,216,0 +170751712028,216,0 +170751712075,217,0 +170751712123,218,0 +170751712171,219,0 +170751712219,219,0 +170751712267,221,0 +170751712317,222,0 +170751712365,222,0 +170751712413,222,0 +170751712462,223,0 +170751712512,224,0 +170751712561,225,0 +170751712609,224,0 +170751712659,226,0 +170751712708,225,0 +170751712758,217,0 +170751712806,216,0 +170751712855,215,0 +170751712903,216,0 +170751712951,216,0 +170751712999,217,0 +170751713049,218,0 +170751713098,219,0 +170751713146,220,0 +170751713196,221,0 +170751713243,222,0 +170751713291,224,0 +170751713339,222,0 +170751713387,224,0 +170751713437,224,0 +170751713485,224,0 +170751713534,224,0 +170751713584,225,0 +170751713632,225,0 +170751713681,219,0 +170751713729,215,0 +170751713777,216,0 +170751713825,215,0 +170751713875,216,0 +170751713922,216,0 +170751713972,217,0 +170751714020,217,0 +170751714068,218,0 +170751714117,219,0 +170751714166,220,0 +170751714214,221,0 +170751714262,222,0 +170751714310,223,0 +170751714358,223,0 +170751714407,222,0 +170751714455,226,0 +170751714503,225,0 +170751714551,227,0 +170751714599,225,0 +170751714648,218,0 +170751714698,215,0 +170751714746,215,0 +170751714794,215,0 +170751714841,216,0 +170751714889,216,0 +170751714939,218,0 +170751714987,218,0 +170751715036,218,0 +170751715086,219,0 +170751715135,221,0 +170751715183,221,0 +170751715233,222,0 +170751715281,222,0 +170751715331,223,0 +170751715380,224,0 +170751715428,225,0 +170751715476,226,0 +170751715524,222,0 +170751715572,226,0 +170751715622,217,0 +170751715670,215,0 +170751715719,215,0 +170751715769,215,0 +170751715818,216,0 +170751715868,216,0 +170751715917,219,0 +170751715967,219,0 +170751716016,221,0 +170751716066,220,0 +170751716116,222,0 +170751716164,224,0 +170751716211,226,0 +170751716259,224,0 +170751716307,225,0 +170751716355,222,0 +170751716405,226,0 +170751716453,226,0 +170751716502,226,0 +170751716552,224,0 +170751716600,215,0 +170751716648,215,0 +170751716696,215,0 +170751716743,216,0 +170751716791,216,0 +170751716839,216,0 +170751716887,217,0 +170751716935,218,0 +170751716983,218,0 +170751717032,220,0 +170751717080,220,0 +170751717128,222,0 +170751717176,222,0 +170751717224,224,0 +170751717273,224,0 +170751717323,224,0 +170751717371,224,0 +170751717420,224,0 +170751717468,225,0 +170751717516,216,0 +170751717564,215,0 +170751717613,215,0 +170751717661,215,0 +170751717709,215,0 +170751717757,216,0 +170751717807,216,0 +170751717856,216,0 +170751717904,217,0 +170751717952,217,0 +170751718000,217,0 +170751718047,217,0 +170751718095,218,0 +170751718143,220,0 +170751718191,220,0 +170751718241,221,0 +170751718288,222,0 +170751718336,223,0 +170751718384,223,0 +170751718432,225,0 +170751718480,220,0 +170751718528,215,0 +170751718576,215,0 +170751718624,215,0 +170751718672,216,0 +170751718720,215,0 +170751718767,216,0 +170751718815,216,0 +170751718863,216,0 +170751718911,214,0 +170751718959,217,0 +170751719008,219,0 +170751719056,220,0 +170751719104,221,0 +170751719152,224,0 +170751719200,224,0 +170751719248,224,0 +170751719298,224,0 +170751719347,223,0 +170751719395,225,0 +170751719443,217,0 +170751719493,215,0 +170751719541,216,0 +170751719589,216,0 +170751719637,215,0 +170751719685,216,0 +170751719733,217,0 +170751719781,218,0 +170751719830,220,0 +170751719880,221,0 +170751719927,221,0 +170751719975,222,0 +170751720023,222,0 +170751720073,224,0 +170751720122,224,0 +170751720170,225,0 +170751720218,225,0 +170751720268,225,0 +170751720316,225,0 +170751720364,225,0 +170751720413,217,0 +170751720463,216,0 +170751720511,216,0 +170751720559,216,0 +170751720608,216,0 +170751720658,215,0 +170751720706,217,0 +170751720754,217,0 +170751720801,218,0 +170751720849,220,0 +170751720897,220,0 +170751720947,221,0 +170751720997,225,0 +170751721045,223,0 +170751721092,224,0 +170751721142,226,0 +170751721190,225,0 +170751721239,226,0 +170751721287,225,0 +170751721337,225,0 +170751721385,216,0 +170751721434,215,0 +170751721484,216,0 +170751721533,216,0 +170751721583,216,0 +170751721631,216,0 +170751721680,218,0 +170751721728,218,0 +170751721776,220,0 +170751721826,221,0 +170751721875,221,0 +170751721923,222,0 +170751721973,224,0 +170751722021,224,0 +170751722070,224,0 +170751722118,224,0 +170751722166,225,0 +170751722214,226,0 +170751722264,226,0 +170751722312,224,0 +170751722361,216,0 +170751722409,216,0 +170751722457,215,0 +170751722505,217,0 +170751722555,217,0 +170751722603,218,0 +170751722651,219,0 +170751722700,220,0 +170751722750,221,0 +170751722798,222,0 +170751722847,223,0 +170751722895,223,0 +170751722945,223,0 +170751722993,224,0 +170751723042,225,0 +170751723090,225,0 +170751723138,225,0 +170751723186,226,0 +170751723235,225,0 +170751723283,217,0 +170751723333,215,0 +170751723382,216,0 +170751723432,216,0 +170751723482,217,0 +170751723530,219,0 +170751723578,219,0 +170751723627,220,0 +170751723675,221,0 +170751723723,221,0 +170751723771,223,0 +170751723820,223,0 +170751723868,224,0 +170751723918,225,0 +170751723967,225,0 +170751724015,225,0 +170751724065,226,0 +170751724113,226,0 +170751724161,225,0 +170751724209,224,0 +170751724257,216,0 +170751724304,215,0 +170751724352,215,0 +170751724400,215,0 +170751724450,217,0 +170751724498,217,0 +170751724547,218,0 +170751724597,219,0 +170751724646,221,0 +170751724696,221,0 +170751724745,222,0 +170751724793,223,0 +170751724841,224,0 +170751724891,224,0 +170751724940,224,0 +170751724988,224,0 +170751725038,225,0 +170751725086,225,0 +170751725134,225,0 +170751725183,223,0 +170751725233,215,0 +170751725281,215,0 +170751725330,215,0 +170751725380,216,0 +170751725428,217,0 +170751725476,218,0 +170751725524,219,0 +170751725573,219,0 +170751725623,220,0 +170751725671,221,0 +170751725720,223,0 +170751725768,223,0 +170751725816,224,0 +170751725864,224,0 +170751725913,224,0 +170751725961,224,0 +170751726009,225,0 +170751726057,226,0 +170751726105,225,0 +170751726153,217,0 +170751726200,215,0 +170751726248,215,0 +170751726296,215,0 +170751726344,216,0 +170751726392,216,0 +170751726440,216,0 +170751726488,217,0 +170751726537,218,0 +170751726585,219,0 +170751726633,220,0 +170751726681,222,0 +170751726729,222,0 +170751726776,222,0 +170751726824,224,0 +170751726872,224,0 +170751726920,224,0 +170751726969,225,0 +170751727017,225,0 +170751727065,222,0 +170751727113,216,0 +170751727163,215,0 +170751727212,215,0 +170751727260,215,0 +170751727308,216,0 +170751727355,216,0 +170751727405,216,0 +170751727453,216,0 +170751727501,217,0 +170751727549,218,0 +170751727596,219,0 +170751727646,221,0 +170751727694,221,0 +170751727742,222,0 +170751727791,223,0 +170751727839,223,0 +170751727887,225,0 +170751727935,224,0 +170751727982,225,0 +170751728030,225,0 +170751728078,217,0 +170751728128,216,0 +170751728176,215,0 +170751728223,216,0 +170751728271,216,0 +170751728319,217,0 +170751728367,216,0 +170751728415,217,0 +170751728464,218,0 +170751728512,220,0 +170751728560,221,0 +170751728608,223,0 +170751728656,222,0 +170751728704,223,0 +170751728752,224,0 +170751728801,225,0 +170751728849,225,0 +170751728897,226,0 +170751728945,225,0 +170751728993,225,0 +170751729041,217,0 +170751729088,215,0 +170751729136,216,0 +170751729184,216,0 +170751729232,216,0 +170751729280,217,0 +170751729328,217,0 +170751729377,218,0 +170751729425,218,0 +170751729473,219,0 +170751729521,220,0 +170751729570,222,0 +170751729618,222,0 +170751729668,223,0 +170751729716,224,0 +170751729764,224,0 +170751729811,225,0 +170751729859,225,0 +170751729909,225,0 +170751729957,225,0 +170751730006,216,0 +170751730054,215,0 +170751730102,215,0 +170751730151,216,0 +170751730199,217,0 +170751730247,216,0 +170751730295,217,0 +170751730343,218,0 +170751730392,220,0 +170751730440,220,0 +170751730488,221,0 +170751730536,221,0 +170751730584,223,0 +170751730632,224,0 +170751730679,224,0 +170751730727,226,0 +170751730775,225,0 +170751730823,225,0 +170751730871,225,0 +170751730919,225,0 +170751730967,216,0 +170751731016,215,0 +170751731064,216,0 +170751731112,216,0 +170751731160,216,0 +170751731208,216,0 +170751731256,216,0 +170751731304,217,0 +170751731353,218,0 +170751731401,219,0 +170751731449,220,0 +170751731497,221,0 +170751731545,222,0 +170751731593,227,0 +170751731640,223,0 +170751731690,225,0 +170751731738,224,0 +170751731786,225,0 +170751731834,225,0 +170751731883,225,0 +170751731931,215,0 +170751731979,215,0 +170751732027,215,0 +170751732075,215,0 +170751732124,216,0 +170751732172,216,0 +170751732221,216,0 +170751732269,217,0 +170751732317,216,0 +170751732365,217,0 +170751732413,219,0 +170751732461,220,0 +170751732509,221,0 +170751732557,221,0 +170751732604,222,0 +170751732652,222,0 +170751732700,223,0 +170751732750,224,0 +170751732799,226,0 +170751732847,226,0 +170751732895,215,0 +170751732943,215,0 +170751732991,215,0 +170751733038,216,0 +170751733086,216,0 +170751733134,216,0 +170751733182,217,0 +170751733230,217,0 +170751733278,218,0 +170751733327,219,0 +170751733377,221,0 +170751733425,222,0 +170751733474,222,0 +170751733522,224,0 +170751733572,224,0 +170751733621,226,0 +170751733669,224,0 +170751733717,224,0 +170751733765,225,0 +170751733814,217,0 +170751733864,216,0 +170751733912,216,0 +170751733960,216,0 +170751734008,217,0 +170751734055,218,0 +170751734103,218,0 +170751734151,219,0 +170751734199,220,0 +170751734247,221,0 +170751734295,221,0 +170751734343,223,0 +170751734391,224,0 +170751734438,224,0 +170751734486,226,0 +170751734534,225,0 +170751734582,225,0 +170751734630,226,0 +170751734679,225,0 +170751734729,226,0 +170751734777,217,0 +170751734826,216,0 +170751734876,216,0 +170751734925,217,0 +170751734975,218,0 +170751735023,219,0 +170751735071,220,0 +170751735120,219,0 +170751735168,221,0 +170751735216,222,0 +170751735264,222,0 +170751735312,222,0 +170751735360,222,0 +170751735409,226,0 +170751735459,224,0 +170751735508,225,0 +170751735557,225,0 +170751735607,225,0 +170751735655,225,0 +170751735704,225,0 +170751735752,218,0 +170751735800,216,0 +170751735848,216,0 +170751735896,218,0 +170751735943,218,0 +170751735991,219,0 +170751736039,220,0 +170751736087,220,0 +170751736135,222,0 +170751736183,221,0 +170751736231,222,0 +170751736279,223,0 +170751736326,225,0 +170751736374,224,0 +170751736422,228,0 +170751736470,226,0 +170751736518,226,0 +170751736566,225,0 +170751736614,225,0 +170751736662,225,0 +170751736709,217,0 +170751736757,215,0 +170751736805,215,0 +170751736855,217,0 +170751736903,218,0 +170751736950,218,0 +170751737000,220,0 +170751737048,220,0 +170751737096,222,0 +170751737143,222,0 +170751737191,221,0 +170751737239,223,0 +170751737289,225,0 +170751737338,225,0 +170751737386,227,0 +170751737434,226,0 +170751737482,225,0 +170751737529,225,0 +170751737579,226,0 +170751737627,225,0 +170751737675,217,0 +170751737723,216,0 +170751737770,217,0 +170751737818,217,0 +170751737866,219,0 +170751737914,220,0 +170751737962,221,0 +170751738011,221,0 +170751738059,223,0 +170751738107,224,0 +170751738155,223,0 +170751738204,224,0 +170751738252,226,0 +170751738300,225,0 +170751738348,225,0 +170751738396,225,0 +170751738445,226,0 +170751738495,226,0 +170751738543,226,0 +170751738591,225,0 +170751738639,218,0 +170751738688,217,0 +170751738736,218,0 +170751738784,219,0 +170751738833,219,0 +170751738881,220,0 +170751738931,221,0 +170751738979,222,0 +170751739027,224,0 +170751739075,222,0 +170751739124,222,0 +170751739174,224,0 +170751739223,226,0 +170751739271,225,0 +170751739319,226,0 +170751739367,228,0 +170751739415,228,0 +170751739463,227,0 +170751739511,226,0 +170751739561,226,0 +170751739610,216,0 +170751739660,215,0 +170751739709,216,0 +170751739757,217,0 +170751739805,217,0 +170751739853,219,0 +170751739901,220,0 +170751739949,220,0 +170751739997,220,0 +170751740047,221,0 +170751740095,222,0 +170751740143,223,0 +170751740191,223,0 +170751740238,223,0 +170751740286,223,0 +170751740334,225,0 +170751740382,225,0 +170751740431,225,0 +170751740479,224,0 +170751740528,217,0 +170751740576,215,0 +170751740624,215,0 +170751740672,215,0 +170751740720,216,0 +170751740769,216,0 +170751740817,216,0 +170751740865,216,0 +170751740913,216,0 +170751740962,217,0 +170751741010,219,0 +170751741060,219,0 +170751741109,220,0 +170751741159,220,0 +170751741206,222,0 +170751741256,221,0 +170751741304,223,0 +170751741352,223,0 +170751741401,222,0 +170751741449,225,0 +170751741497,217,0 +170751741547,216,0 +170751741595,217,0 +170751741644,217,0 +170751741692,218,0 +170751741742,219,0 +170751741791,220,0 +170751741839,220,0 +170751741889,222,0 +170751741937,222,0 +170751741985,223,0 +170751742034,223,0 +170751742082,223,0 +170751742130,225,0 +170751742178,225,0 +170751742226,226,0 +170751742275,228,0 +170751742323,226,0 +170751742371,227,0 +170751742419,226,0 +170751742467,217,0 +170751742514,215,0 +170751742562,216,0 +170751742610,217,0 +170751742658,218,0 +170751742707,219,0 +170751742755,219,0 +170751742803,220,0 +170751742851,222,0 +170751742899,221,0 +170751742947,223,0 +170751742995,224,0 +170751743043,225,0 +170751743090,225,0 +170751743140,225,0 +170751743188,227,0 +170751743236,226,0 +170751743284,225,0 +170751743331,226,0 +170751743379,225,0 +170751743427,217,0 +170751743477,215,0 +170751743525,216,0 +170751743572,216,0 +170751743620,216,0 +170751743670,217,0 +170751743718,218,0 +170751743765,219,0 +170751743815,220,0 +170751743863,222,0 +170751743911,222,0 +170751743959,222,0 +170751744008,224,0 +170751744057,224,0 +170751744107,224,0 +170751744155,226,0 +170751744203,225,0 +170751744251,226,0 +170751744299,226,0 +170751744346,225,0 +170751744394,216,0 +170751744444,215,0 +170751744493,215,0 +170751744541,215,0 +170751744590,216,0 +170751744638,217,0 +170751744688,218,0 +170751744737,220,0 +170751744786,219,0 +170751744834,220,0 +170751744882,221,0 +170751744930,222,0 +170751744978,223,0 +170751745028,224,0 +170751745076,225,0 +170751745124,225,0 +170751745173,219,0 +170751745221,225,0 +170751745269,224,0 +170751745317,225,0 +170751745366,216,0 +170751745414,216,0 +170751745463,218,0 +170751745511,218,0 +170751745559,225,0 +170751745607,220,0 +170751745655,221,0 +170751745703,222,0 +170751745753,222,0 +170751745801,223,0 +170751745850,223,0 +170751745900,224,0 +170751745948,225,0 +170751745997,226,0 +170751746045,225,0 +170751746093,226,0 +170751746141,226,0 +170751746189,226,0 +170751746239,226,0 +170751746288,222,0 +170751746336,215,0 +170751746384,215,0 +170751746432,215,0 +170751746481,216,0 +170751746531,217,0 +170751746581,218,0 +170751746630,220,0 +170751746678,221,0 +170751746728,221,0 +170751746776,222,0 +170751746825,223,0 +170751746873,224,0 +170751746921,225,0 +170751746969,225,0 +170751747017,225,0 +170751747065,225,0 +170751747114,226,0 +170751747162,226,0 +170751747212,226,0 +170751747261,217,0 +170751747309,215,0 +170751747359,215,0 +170751747408,216,0 +170751747458,216,0 +170751747508,216,0 +170751747555,217,0 +170751747603,219,0 +170751747651,220,0 +170751747699,223,0 +170751747747,220,0 +170751747795,222,0 +170751747843,222,0 +170751747891,223,0 +170751747939,223,0 +170751747988,223,0 +170751748036,223,0 +170751748084,224,0 +170751748132,226,0 +170751748180,224,0 +170751748228,217,0 +170751748277,216,0 +170751748325,215,0 +170751748373,216,0 +170751748422,216,0 +170751748470,216,0 +170751748518,217,0 +170751748566,217,0 +170751748614,219,0 +170751748662,219,0 +170751748710,220,0 +170751748757,221,0 +170751748805,222,0 +170751748853,224,0 +170751748901,224,0 +170751748949,224,0 +170751748997,224,0 +170751749045,224,0 +170751749094,224,0 +170751749144,225,0 +170751749192,217,0 +170751749240,215,0 +170751749287,215,0 +170751749335,216,0 +170751749383,216,0 +170751749431,216,0 +170751749479,217,0 +170751749527,218,0 +170751749575,220,0 +170751749623,220,0 +170751749672,221,0 +170751749720,220,0 +170751749768,222,0 +170751749816,225,0 +170751749864,224,0 +170751749912,224,0 +170751749961,224,0 +170751750009,225,0 +170751750057,224,0 +170751750105,224,0 +170751750153,216,0 +170751750200,215,0 +170751750248,215,0 +170751750298,216,0 +170751750346,217,0 +170751750393,218,0 +170751750441,219,0 +170751750489,219,0 +170751750537,220,0 +170751750586,220,0 +170751750634,221,0 +170751750682,222,0 +170751750730,222,0 +170751750778,223,0 +170751750826,225,0 +170751750874,225,0 +170751750923,225,0 +170751750973,225,0 +170751751021,224,0 +170751751069,225,0 +170751751118,217,0 +170751751166,216,0 +170751751214,216,0 +170751751264,217,0 +170751751312,218,0 +170751751360,220,0 +170751751408,220,0 +170751751456,220,0 +170751751504,221,0 +170751751553,223,0 +170751751603,223,0 +170751751651,223,0 +170751751699,225,0 +170751751747,225,0 +170751751796,225,0 +170751751844,227,0 +170751751892,226,0 +170751751940,223,0 +170751751988,225,0 +170751752036,226,0 +170751752083,217,0 +170751752131,215,0 +170751752179,216,0 +170751752227,217,0 +170751752275,218,0 +170751752323,219,0 +170751752371,219,0 +170751752420,220,0 +170751752468,221,0 +170751752517,220,0 +170751752565,221,0 +170751752613,222,0 +170751752662,225,0 +170751752712,223,0 +170751752760,225,0 +170751752809,224,0 +170751752859,225,0 +170751752907,226,0 +170751752955,226,0 +170751753004,225,0 +170751753054,216,0 +170751753102,215,0 +170751753150,216,0 +170751753197,216,0 +170751753245,218,0 +170751753295,218,0 +170751753343,219,0 +170751753391,219,0 +170751753439,221,0 +170751753486,221,0 +170751753534,223,0 +170751753582,222,0 +170751753630,224,0 +170751753678,224,0 +170751753726,223,0 +170751753774,225,0 +170751753821,227,0 +170751753869,224,0 +170751753917,225,0 +170751753967,225,0 +170751754015,217,0 +170751754063,215,0 +170751754110,215,0 +170751754158,215,0 +170751754206,216,0 +170751754254,217,0 +170751754302,218,0 +170751754350,219,0 +170751754398,219,0 +170751754448,220,0 +170751754496,221,0 +170751754543,222,0 +170751754591,222,0 +170751754641,222,0 +170751754689,223,0 +170751754737,224,0 +170751754786,223,0 +170751754836,224,0 +170751754884,224,0 +170751754932,225,0 +170751754981,217,0 +170751755029,215,0 +170751755077,215,0 +170751755127,215,0 +170751755176,215,0 +170751755226,216,0 +170751755274,216,0 +170751755323,217,0 +170751755371,218,0 +170751755419,219,0 +170751755469,220,0 +170751755518,220,0 +170751755566,222,0 +170751755614,222,0 +170751755664,222,0 +170751755713,221,0 +170751755761,223,0 +170751755809,222,0 +170751755857,223,0 +170751755905,225,0 +170751755953,216,0 +170751756002,214,0 +170751756052,214,0 +170751756101,214,0 +170751756151,215,0 +170751756199,215,0 +170751756247,215,0 +170751756296,215,0 +170751756344,215,0 +170751756394,216,0 +170751756442,216,0 +170751756490,217,0 +170751756538,218,0 +170751756586,219,0 +170751756635,221,0 +170751756685,221,0 +170751756734,222,0 +170751756782,222,0 +170751756832,224,0 +170751756880,226,0 +170751756929,216,0 +170751756979,214,0 +170751757026,214,0 +170751757076,214,0 +170751757124,214,0 +170751757173,214,0 +170751757221,214,0 +170751757269,214,0 +170751757317,214,0 +170751757365,215,0 +170751757413,215,0 +170751757463,215,0 +170751757511,216,0 +170751757559,217,0 +170751757607,219,0 +170751757655,219,0 +170751757702,220,0 +170751757752,220,0 +170751757801,223,0 +170751757851,225,0 +170751757899,216,0 +170751757947,216,0 +170751757995,216,0 +170751758043,216,0 +170751758092,217,0 +170751758140,216,0 +170751758190,217,0 +170751758239,218,0 +170751758287,219,0 +170751758335,219,0 +170751758385,221,0 +170751758433,222,0 +170751758481,222,0 +170751758531,225,0 +170751758581,223,0 +170751758628,225,0 +170751758676,225,0 +170751758724,226,0 +170751758772,225,0 +170751758822,226,0 +170751758870,215,0 +170751758918,216,0 +170751758966,216,0 +170751759014,216,0 +170751759063,216,0 +170751759113,217,0 +170751759162,217,0 +170751759212,218,0 +170751759261,219,0 +170751759309,220,0 +170751759357,221,0 +170751759407,223,0 +170751759456,223,0 +170751759504,224,0 +170751759554,225,0 +170751759603,227,0 +170751759653,226,0 +170751759702,224,0 +170751759750,226,0 +170751759800,216,0 +170751759848,215,0 +170751759897,215,0 +170751759945,215,0 +170751759993,216,0 +170751760041,216,0 +170751760089,216,0 +170751760139,218,0 +170751760187,219,0 +170751760235,220,0 +170751760284,221,0 +170751760334,221,0 +170751760382,222,0 +170751760430,223,0 +170751760479,224,0 +170751760529,225,0 +170751760576,224,0 +170751760624,225,0 +170751760672,225,0 +170751760720,225,0 +170751760768,217,0 +170751760818,215,0 +170751760867,215,0 +170751760915,215,0 +170751760963,216,0 +170751761013,216,0 +170751761061,216,0 +170751761110,216,0 +170751761160,216,0 +170751761209,218,0 +170751761259,219,0 +170751761308,221,0 +170751761358,221,0 +170751761406,222,0 +170751761454,224,0 +170751761503,225,0 +170751761553,224,0 +170751761602,224,0 +170751761652,225,0 +170751761700,225,0 +170751761748,218,0 +170751761796,216,0 +170751761845,216,0 +170751761893,217,0 +170751761941,216,0 +170751761989,216,0 +170751762039,217,0 +170751762088,217,0 +170751762138,217,0 +170751762186,218,0 +170751762234,219,0 +170751762281,220,0 +170751762329,221,0 +170751762379,222,0 +170751762427,223,0 +170751762475,224,0 +170751762523,223,0 +170751762572,224,0 +170751762620,224,0 +170751762668,225,0 +170751762716,217,0 +170751762764,215,0 +170751762814,215,0 +170751762863,215,0 +170751762913,216,0 +170751762961,216,0 +170751763010,216,0 +170751763058,217,0 +170751763108,218,0 +170751763156,219,0 +170751763205,220,0 +170751763253,220,0 +170751763301,221,0 +170751763350,223,0 +170751763398,223,0 +170751763448,223,0 +170751763496,224,0 +170751763545,225,0 +170751763593,225,0 +170751763643,227,0 +170751763691,215,0 +170751763739,215,0 +170751763788,215,0 +170751763836,215,0 +170751763884,216,0 +170751763933,216,0 +170751763983,216,0 +170751764031,218,0 +170751764080,218,0 +170751764128,218,0 +170751764178,219,0 +170751764225,220,0 +170751764273,220,0 +170751764321,221,0 +170751764371,222,0 +170751764419,222,0 +170751764466,223,0 +170751764514,224,0 +170751764562,225,0 +170751764610,225,0 +170751764660,216,0 +170751764708,215,0 +170751764756,215,0 +170751764805,215,0 +170751764853,216,0 +170751764901,216,0 +170751764949,216,0 +170751764997,216,0 +170751765046,214,0 +170751765094,218,0 +170751765142,220,0 +170751765190,221,0 +170751765238,222,0 +170751765286,222,0 +170751765334,222,0 +170751765382,222,0 +170751765432,224,0 +170751765481,225,0 +170751765531,223,0 +170751765580,224,0 +170751765628,216,0 +170751765676,216,0 +170751765726,216,0 +170751765775,216,0 +170751765823,216,0 +170751765873,217,0 +170751765922,218,0 +170751765970,218,0 +170751766018,220,0 +170751766066,222,0 +170751766114,221,0 +170751766162,223,0 +170751766210,223,0 +170751766258,224,0 +170751766308,225,0 +170751766356,225,0 +170751766404,225,0 +170751766453,224,0 +170751766501,226,0 +170751766549,224,0 +170751766599,215,0 +170751766647,215,0 +170751766696,215,0 +170751766746,215,0 +170751766795,216,0 +170751766843,217,0 +170751766893,218,0 +170751766941,219,0 +170751766989,220,0 +170751767037,220,0 +170751767086,221,0 +170751767136,222,0 +170751767185,224,0 +170751767235,224,0 +170751767284,224,0 +170751767332,225,0 +170751767382,224,0 +170751767430,225,0 +170751767477,226,0 +170751767527,217,0 +170751767575,215,0 +170751767623,215,0 +170751767671,216,0 +170751767719,217,0 +170751767767,217,0 +170751767816,219,0 +170751767864,220,0 +170751767914,221,0 +170751767962,221,0 +170751768010,222,0 +170751768058,222,0 +170751768107,223,0 +170751768155,223,0 +170751768203,225,0 +170751768253,224,0 +170751768301,225,0 +170751768349,225,0 +170751768397,226,0 +170751768446,225,0 +170751768494,219,0 +170751768542,217,0 +170751768590,218,0 +170751768638,219,0 +170751768686,222,0 +170751768734,222,0 +170751768782,223,0 +170751768830,223,0 +170751768879,223,0 +170751768927,223,0 +170751768977,223,0 +170751769025,224,0 +170751769073,224,0 +170751769122,224,0 +170751769172,225,0 +170751769220,225,0 +170751769268,226,0 +170751769316,226,0 +170751769364,225,0 +170751769411,225,0 +170751769461,216,0 +170751769509,215,0 +170751769557,216,0 +170751769605,217,0 +170751769653,218,0 +170751769701,220,0 +170751769750,220,0 +170751769800,221,0 +170751769848,221,0 +170751769895,221,0 +170751769943,222,0 +170751769993,222,0 +170751770041,225,0 +170751770089,223,0 +170751770138,225,0 +170751770186,225,0 +170751770236,225,0 +170751770284,225,0 +170751770332,225,0 +170751770380,225,0 +170751770429,223,0 +170751770477,215,0 +170751770525,216,0 +170751770575,216,0 +170751770623,217,0 +170751770671,217,0 +170751770719,218,0 +170751770767,219,0 +170751770816,219,0 +170751770864,220,0 +170751770912,221,0 +170751770960,222,0 +170751771008,223,0 +170751771057,224,0 +170751771105,225,0 +170751771153,224,0 +170751771201,227,0 +170751771249,225,0 +170751771299,226,0 +170751771348,225,0 +170751771396,220,0 +170751771444,215,0 +170751771492,215,0 +170751771540,215,0 +170751771588,216,0 +170751771636,217,0 +170751771685,218,0 +170751771733,219,0 +170751771781,220,0 +170751771829,221,0 +170751771877,221,0 +170751771925,222,0 +170751771975,223,0 +170751772024,224,0 +170751772072,224,0 +170751772121,224,0 +170751772171,224,0 +170751772219,225,0 +170751772268,226,0 +170751772318,225,0 +170751772366,217,0 +170751772416,215,0 +170751772464,215,0 +170751772513,215,0 +170751772561,215,0 +170751772609,217,0 +170751772658,218,0 +170751772706,218,0 +170751772756,219,0 +170751772806,220,0 +170751772855,221,0 +170751772903,221,0 +170751772952,221,0 +170751773002,223,0 +170751773050,224,0 +170751773099,226,0 +170751773147,224,0 +170751773195,225,0 +170751773243,225,0 +170751773291,225,0 +170751773339,217,0 +170751773387,215,0 +170751773435,215,0 +170751773485,215,0 +170751773534,215,0 +170751773584,216,0 +170751773632,216,0 +170751773680,217,0 +170751773729,218,0 +170751773778,220,0 +170751773828,219,0 +170751773876,220,0 +170751773924,222,0 +170751773972,222,0 +170751774021,223,0 +170751774071,223,0 +170751774120,224,0 +170751774168,224,0 +170751774216,224,0 +170751774264,226,0 +170751774314,217,0 +170751774363,215,0 +170751774413,215,0 +170751774463,215,0 +170751774512,216,0 +170751774560,217,0 +170751774608,218,0 +170751774657,218,0 +170751774705,219,0 +170751774753,219,0 +170751774801,220,0 +170751774851,222,0 +170751774900,225,0 +170751774950,223,0 +170751774999,223,0 +170751775047,224,0 +170751775097,223,0 +170751775145,226,0 +170751775194,225,0 +170751775242,225,0 +170751775292,216,0 +170751775341,216,0 +170751775389,216,0 +170751775437,217,0 +170751775485,218,0 +170751775535,219,0 +170751775583,220,0 +170751775632,221,0 +170751775680,221,0 +170751775728,222,0 +170751775776,223,0 +170751775824,224,0 +170751775872,224,0 +170751775921,225,0 +170751775971,225,0 +170751776019,225,0 +170751776067,226,0 +170751776115,225,0 +170751776163,225,0 +170751776211,225,0 +170751776259,217,0 +170751776307,216,0 +170751776356,216,0 +170751776406,217,0 +170751776455,217,0 +170751776503,219,0 +170751776551,219,0 +170751776601,220,0 +170751776649,220,0 +170751776698,221,0 +170751776746,223,0 +170751776796,222,0 +170751776844,223,0 +170751776893,224,0 +170751776941,225,0 +170751776989,226,0 +170751777037,225,0 +170751777085,226,0 +170751777133,226,0 +170751777181,225,0 +170751777230,216,0 +170751777280,215,0 +170751777329,215,0 +170751777377,215,0 +170751777427,216,0 +170751777475,217,0 +170751777523,217,0 +170751777571,218,0 +170751777620,219,0 +170751777668,221,0 +170751777718,222,0 +170751777767,222,0 +170751777817,223,0 +170751777866,224,0 +170751777914,226,0 +170751777962,224,0 +170751778012,226,0 +170751778060,224,0 +170751778109,225,0 +170751778159,225,0 +170751778208,215,0 +170751778256,215,0 +170751778306,216,0 +170751778354,216,0 +170751778403,216,0 +170751778453,216,0 +170751778501,216,0 +170751778549,217,0 +170751778597,218,0 +170751778646,219,0 +170751778694,220,0 +170751778742,221,0 +170751778791,223,0 +170751778839,224,0 +170751778887,224,0 +170751778935,223,0 +170751778983,223,0 +170751779033,226,0 +170751779082,225,0 +170751779130,218,0 +170751779178,215,0 +170751779228,215,0 +170751779276,216,0 +170751779324,216,0 +170751779371,216,0 +170751779421,217,0 +170751779469,217,0 +170751779517,219,0 +170751779566,219,0 +170751779614,221,0 +170751779662,220,0 +170751779710,221,0 +170751779758,221,0 +170751779807,223,0 +170751779855,223,0 +170751779903,223,0 +170751779953,225,0 +170751780001,224,0 +170751780049,225,0 +170751780097,224,0 +170751780146,215,0 +170751780196,218,0 +170751780243,216,0 +170751780293,218,0 +170751780341,219,0 +170751780389,218,0 +170751780437,220,0 +170751780485,220,0 +170751780533,221,0 +170751780582,222,0 +170751780630,225,0 +170751780678,225,0 +170751780726,226,0 +170751780776,225,0 +170751780825,226,0 +170751780873,226,0 +170751780923,226,0 +170751780971,223,0 +170751781018,225,0 +170751781068,225,0 +170751781118,216,0 +170751781166,215,0 +170751781214,215,0 +170751781262,216,0 +170751781310,217,0 +170751781359,218,0 +170751781407,219,0 +170751781457,220,0 +170751781506,221,0 +170751781554,222,0 +170751781602,223,0 +170751781652,223,0 +170751781701,224,0 +170751781749,225,0 +170751781797,226,0 +170751781845,225,0 +170751781893,225,0 +170751781942,225,0 +170751781990,226,0 +170751782038,224,0 +170751782086,216,0 +170751782134,215,0 +170751782182,216,0 +170751782230,216,0 +170751782278,216,0 +170751782327,218,0 +170751782377,219,0 +170751782426,218,0 +170751782474,220,0 +170751782522,220,0 +170751782570,222,0 +170751782620,221,0 +170751782668,223,0 +170751782716,224,0 +170751782764,225,0 +170751782813,225,0 +170751782861,225,0 +170751782911,226,0 +170751782960,227,0 +170751783008,229,0 +170751783058,216,0 +170751783106,216,0 +170751783154,216,0 +170751783202,217,0 +170751783251,218,0 +170751783299,218,0 +170751783347,219,0 +170751783395,219,0 +170751783443,221,0 +170751783493,221,0 +170751783542,223,0 +170751783592,223,0 +170751783640,224,0 +170751783689,224,0 +170751783737,225,0 +170751783785,225,0 +170751783835,226,0 +170751783884,226,0 +170751783932,226,0 +170751783982,226,0 +170751784029,217,0 +170751784079,216,0 +170751784127,216,0 +170751784176,217,0 +170751784224,219,0 +170751784272,219,0 +170751784320,219,0 +170751784368,221,0 +170751784416,220,0 +170751784464,222,0 +170751784514,222,0 +170751784562,222,0 +170751784611,222,0 +170751784659,224,0 +170751784709,225,0 +170751784758,226,0 +170751784808,225,0 +170751784856,224,0 +170751784905,224,0 +170751784955,226,0 +170751785003,217,0 +170751785051,215,0 +170751785100,215,0 +170751785148,215,0 +170751785196,216,0 +170751785244,216,0 +170751785294,216,0 +170751785342,217,0 +170751785389,218,0 +170751785437,218,0 +170751785485,219,0 +170751785533,219,0 +170751785581,220,0 +170751785629,221,0 +170751785677,223,0 +170751785727,223,0 +170751785775,223,0 +170751785823,224,0 +170751785872,224,0 +170751785920,225,0 +170751785968,216,0 +170751786016,214,0 +170751786066,215,0 +170751786114,215,0 +170751786162,215,0 +170751786211,215,0 +170751786259,215,0 +170751786307,216,0 +170751786355,216,0 +170751786403,216,0 +170751786451,217,0 +170751786499,217,0 +170751786548,219,0 +170751786596,220,0 +170751786646,222,0 +170751786695,221,0 +170751786745,222,0 +170751786793,223,0 +170751786841,225,0 +170751786890,225,0 +170751786938,216,0 +170751786986,215,0 +170751787034,215,0 +170751787082,216,0 +170751787132,216,0 +170751787181,216,0 +170751787229,217,0 +170751787277,219,0 +170751787325,219,0 +170751787373,220,0 +170751787421,222,0 +170751787469,222,0 +170751787518,221,0 +170751787566,223,0 +170751787614,225,0 +170751787662,225,0 +170751787710,224,0 +170751787758,225,0 +170751787807,223,0 +170751787857,226,0 +170751787906,217,0 +170751787956,215,0 +170751788005,215,0 +170751788053,215,0 +170751788101,216,0 +170751788150,217,0 +170751788200,218,0 +170751788248,218,0 +170751788296,220,0 +170751788345,219,0 +170751788393,220,0 +170751788441,223,0 +170751788489,223,0 +170751788539,223,0 +170751788587,227,0 +170751788635,224,0 +170751788684,225,0 +170751788732,226,0 +170751788780,226,0 +170751788829,226,0 +170751788879,217,0 +170751788928,216,0 +170751788976,216,0 +170751789024,216,0 +170751789072,216,0 +170751789120,218,0 +170751789168,220,0 +170751789217,220,0 +170751789267,221,0 +170751789317,221,0 +170751789365,222,0 +170751789413,223,0 +170751789460,223,0 +170751789508,226,0 +170751789556,225,0 +170751789604,225,0 +170751789654,225,0 +170751789703,225,0 +170751789751,225,0 +170751789799,225,0 +170751789849,217,0 +170751789898,215,0 +170751789946,215,0 +170751789996,216,0 +170751790045,217,0 +170751790095,219,0 +170751790144,219,0 +170751790192,220,0 +170751790240,221,0 +170751790288,222,0 +170751790336,222,0 +170751790384,224,0 +170751790434,223,0 +170751790483,226,0 +170751790531,227,0 +170751790581,226,0 +170751790629,224,0 +170751790678,225,0 +170751790726,225,0 +170751790774,225,0 +170751790822,217,0 +170751790872,216,0 +170751790920,215,0 +170751790969,216,0 +170751791017,216,0 +170751791066,217,0 +170751791114,218,0 +170751791164,219,0 +170751791212,220,0 +170751791260,221,0 +170751791308,222,0 +170751791356,222,0 +170751791404,223,0 +170751791453,225,0 +170751791503,225,0 +170751791552,224,0 +170751791602,224,0 +170751791650,225,0 +170751791698,227,0 +170751791747,226,0 +170751791795,216,0 +170751791843,215,0 +170751791893,215,0 +170751791942,216,0 +170751791990,216,0 +170751792040,216,0 +170751792088,217,0 +170751792137,217,0 +170751792187,218,0 +170751792236,220,0 +170751792286,220,0 +170751792334,221,0 +170751792382,223,0 +170751792430,222,0 +170751792478,225,0 +170751792526,223,0 +170751792575,224,0 +170751792623,225,0 +170751792671,224,0 +170751792719,225,0 +170751792767,217,0 +170751792815,215,0 +170751792863,216,0 +170751792912,216,0 +170751792962,216,0 +170751793010,216,0 +170751793058,216,0 +170751793107,216,0 +170751793155,218,0 +170751793203,218,0 +170751793253,220,0 +170751793302,220,0 +170751793350,221,0 +170751793400,224,0 +170751793449,222,0 +170751793499,226,0 +170751793548,223,0 +170751793598,224,0 +170751793646,225,0 +170751793694,226,0 +170751793743,216,0 +170751793793,215,0 +170751793841,215,0 +170751793890,215,0 +170751793938,215,0 +170751793988,216,0 +170751794036,216,0 +170751794084,217,0 +170751794132,218,0 +170751794181,217,0 +170751794231,218,0 +170751794280,219,0 +170751794328,220,0 +170751794376,221,0 +170751794424,222,0 +170751794471,223,0 +170751794519,223,0 +170751794569,223,0 +170751794617,225,0 +170751794666,225,0 +170751794714,216,0 +170751794762,215,0 +170751794811,215,0 +170751794859,215,0 +170751794907,215,0 +170751794955,216,0 +170751795003,216,0 +170751795053,216,0 +170751795102,217,0 +170751795152,217,0 +170751795202,219,0 +170751795250,220,0 +170751795297,221,0 +170751795345,222,0 +170751795393,223,0 +170751795441,224,0 +170751795489,224,0 +170751795537,224,0 +170751795587,224,0 +170751795636,226,0 +170751795684,217,0 +170751795734,215,0 +170751795783,215,0 +170751795831,215,0 +170751795881,216,0 +170751795929,215,0 +170751795978,216,0 +170751796026,217,0 +170751796076,218,0 +170751796123,219,0 +170751796173,220,0 +170751796221,222,0 +170751796269,222,0 +170751796319,222,0 +170751796366,222,0 +170751796414,223,0 +170751796462,225,0 +170751796510,225,0 +170751796558,226,0 +170751796608,225,0 +170751796656,217,0 +170751796704,215,0 +170751796751,215,0 +170751796799,216,0 +170751796847,216,0 +170751796897,216,0 +170751796947,217,0 +170751796995,219,0 +170751797042,219,0 +170751797092,220,0 +170751797142,220,0 +170751797191,222,0 +170751797241,223,0 +170751797289,223,0 +170751797337,224,0 +170751797386,226,0 +170751797435,225,0 +170751797483,226,0 +170751797531,225,0 +170751797581,226,0 +170751797629,217,0 +170751797677,215,0 +170751797725,215,0 +170751797774,215,0 +170751797822,217,0 +170751797872,216,0 +170751797920,216,0 +170751797968,217,0 +170751798016,218,0 +170751798064,218,0 +170751798112,220,0 +170751798159,221,0 +170751798207,222,0 +170751798255,223,0 +170751798303,224,0 +170751798351,226,0 +170751798401,226,0 +170751798450,224,0 +170751798498,224,0 +170751798548,225,0 +170751798597,217,0 +170751798645,215,0 +170751798695,216,0 +170751798744,216,0 +170751798794,216,0 +170751798843,217,0 +170751798893,217,0 +170751798941,218,0 +170751798990,218,0 +170751799038,219,0 +170751799086,220,0 +170751799136,221,0 +170751799185,222,0 +170751799235,223,0 +170751799284,224,0 +170751799334,224,0 +170751799382,225,0 +170751799431,225,0 +170751799479,224,0 +170751799527,225,0 +170751799575,217,0 +170751799623,215,0 +170751799671,215,0 +170751799719,216,0 +170751799767,217,0 +170751799815,218,0 +170751799863,219,0 +170751799911,219,0 +170751799961,220,0 +170751800010,221,0 +170751800058,221,0 +170751800108,222,0 +170751800156,222,0 +170751800204,224,0 +170751800252,224,0 +170751800300,226,0 +170751800349,225,0 +170751800397,225,0 +170751800445,225,0 +170751800493,225,0 +170751800541,217,0 +170751800589,215,0 +170751800637,215,0 +170751800686,216,0 +170751800736,216,0 +170751800786,216,0 +170751800834,216,0 +170751800882,218,0 +170751800929,219,0 +170751800977,220,0 +170751801025,220,0 +170751801073,222,0 +170751801121,223,0 +170751801169,223,0 +170751801217,224,0 +170751801267,226,0 +170751801315,225,0 +170751801363,225,0 +170751801412,224,0 +170751801460,225,0 +170751801508,222,0 +170751801556,215,0 +170751801605,215,0 +170751801653,215,0 +170751801703,216,0 +170751801751,216,0 +170751801799,216,0 +170751801848,216,0 +170751801898,218,0 +170751801946,218,0 +170751801995,220,0 +170751802043,221,0 +170751802093,222,0 +170751802142,224,0 +170751802192,223,0 +170751802240,225,0 +170751802289,224,0 +170751802339,226,0 +170751802387,226,0 +170751802436,225,0 +170751802484,224,0 +170751802532,215,0 +170751802580,215,0 +170751802628,215,0 +170751802678,215,0 +170751802727,216,0 +170751802775,216,0 +170751802823,216,0 +170751802873,216,0 +170751802920,217,0 +170751802970,218,0 +170751803018,220,0 +170751803066,221,0 +170751803114,223,0 +170751803163,222,0 +170751803211,222,0 +170751803261,223,0 +170751803310,224,0 +170751803360,225,0 +170751803408,226,0 +170751803457,224,0 +170751803507,215,0 +170751803556,215,0 +170751803606,216,0 +170751803655,216,0 +170751803705,216,0 +170751803753,217,0 +170751803802,217,0 +170751803852,218,0 +170751803900,218,0 +170751803948,220,0 +170751803997,221,0 +170751804045,221,0 +170751804093,222,0 +170751804141,223,0 +170751804191,225,0 +170751804238,226,0 +170751804288,225,0 +170751804338,225,0 +170751804386,226,0 +170751804435,216,0 +170751804483,215,0 +170751804531,215,0 +170751804581,216,0 +170751804629,216,0 +170751804676,216,0 +170751804724,217,0 +170751804774,217,0 +170751804822,217,0 +170751804871,218,0 +170751804919,219,0 +170751804969,221,0 +170751805019,221,0 +170751805068,224,0 +170751805118,222,0 +170751805167,224,0 +170751805217,224,0 +170751805266,225,0 +170751805316,225,0 +170751805365,225,0 +170751805415,217,0 +170751805464,215,0 +170751805512,215,0 +170751805562,215,0 +170751805610,215,0 +170751805659,216,0 +170751805707,216,0 +170751805757,216,0 +170751805805,215,0 +170751805854,218,0 +170751805904,220,0 +170751805952,222,0 +170751806001,221,0 +170751806051,222,0 +170751806099,223,0 +170751806147,224,0 +170751806196,224,0 +170751806244,225,0 +170751806292,224,0 +170751806342,226,0 +170751806391,217,0 +170751806439,215,0 +170751806487,215,0 +170751806536,215,0 +170751806586,216,0 +170751806634,216,0 +170751806684,216,0 +170751806732,216,0 +170751806781,216,0 +170751806831,218,0 +170751806880,219,0 +170751806930,220,0 +170751806978,221,0 +170751807027,223,0 +170751807075,224,0 +170751807123,223,0 +170751807171,225,0 +170751807219,224,0 +170751807268,224,0 +170751807316,225,0 +170751807364,216,0 +170751807412,215,0 +170751807460,215,0 +170751807508,215,0 +170751807556,215,0 +170751807604,216,0 +170751807652,216,0 +170751807700,217,0 +170751807749,217,0 +170751807797,217,0 +170751807846,217,0 +170751807896,219,0 +170751807944,220,0 +170751807992,221,0 +170751808040,222,0 +170751808088,224,0 +170751808136,223,0 +170751808184,223,0 +170751808232,223,0 +170751808280,226,0 +170751808328,217,0 +170751808376,215,0 +170751808423,216,0 +170751808471,215,0 +170751808521,216,0 +170751808570,216,0 +170751808618,216,0 +170751808666,216,0 +170751808716,217,0 +170751808765,218,0 +170751808813,219,0 +170751808861,220,0 +170751808909,221,0 +170751808957,220,0 +170751809005,223,0 +170751809053,225,0 +170751809101,225,0 +170751809150,224,0 +170751809198,226,0 +170751809248,227,0 +170751809297,224,0 +170751809347,216,0 +170751809395,215,0 +170751809443,215,0 +170751809491,216,0 +170751809539,216,0 +170751809587,216,0 +170751809636,217,0 +170751809684,217,0 +170751809732,218,0 +170751809782,219,0 +170751809830,220,0 +170751809879,222,0 +170751809927,223,0 +170751809977,223,0 +170751810025,224,0 +170751810074,225,0 +170751810122,225,0 +170751810170,225,0 +170751810218,226,0 +170751810268,225,0 +170751810316,216,0 +170751810365,215,0 +170751810415,215,0 +170751810463,215,0 +170751810510,216,0 +170751810558,216,0 +170751810608,217,0 +170751810656,221,0 +170751810704,218,0 +170751810752,219,0 +170751810800,220,0 +170751810848,222,0 +170751810896,223,0 +170751810944,223,0 +170751810993,223,0 +170751811043,225,0 +170751811091,225,0 +170751811140,226,0 +170751811190,225,0 +170751811238,226,0 +170751811286,216,0 +170751811335,215,0 +170751811383,215,0 +170751811433,218,0 +170751811482,219,0 +170751811530,219,0 +170751811578,220,0 +170751811626,221,0 +170751811676,221,0 +170751811724,223,0 +170751811772,223,0 +170751811820,224,0 +170751811867,225,0 +170751811915,225,0 +170751811963,225,0 +170751812013,226,0 +170751812061,225,0 +170751812109,226,0 +170751812158,227,0 +170751812208,225,0 +170751812256,218,0 +170751812304,217,0 +170751812352,218,0 +170751812399,219,0 +170751812449,220,0 +170751812499,221,0 +170751812548,221,0 +170751812598,223,0 +170751812647,223,0 +170751812695,223,0 +170751812745,224,0 +170751812793,225,0 +170751812842,224,0 +170751812890,225,0 +170751812938,226,0 +170751812987,226,0 +170751813037,227,0 +170751813085,226,0 +170751813133,225,0 +170751813181,225,0 +170751813230,218,0 +170751813278,216,0 +170751813328,217,0 +170751813377,217,0 +170751813425,218,0 +170751813473,219,0 +170751813521,222,0 +170751813571,221,0 +170751813620,223,0 +170751813668,223,0 +170751813718,224,0 +170751813766,225,0 +170751813815,225,0 +170751813863,226,0 +170751813913,226,0 +170751813962,223,0 +170751814012,225,0 +170751814059,226,0 +170751814107,225,0 +170751814157,225,0 +170751814207,217,0 +170751814255,215,0 +170751814302,215,0 +170751814350,216,0 +170751814398,217,0 +170751814446,218,0 +170751814494,218,0 +170751814542,220,0 +170751814590,220,0 +170751814638,221,0 +170751814687,221,0 +170751814735,223,0 +170751814785,223,0 +170751814833,225,0 +170751814881,225,0 +170751814930,226,0 +170751814980,225,0 +170751815028,225,0 +170751815077,225,0 +170751815127,224,0 +170751815175,219,0 +170751815223,215,0 +170751815271,215,0 +170751815319,215,0 +170751815368,216,0 +170751815416,216,0 +170751815464,217,0 +170751815514,218,0 +170751815563,219,0 +170751815611,220,0 +170751815659,221,0 +170751815707,222,0 +170751815755,224,0 +170751815803,223,0 +170751815851,223,0 +170751815899,224,0 +170751815949,226,0 +170751815998,225,0 +170751816046,225,0 +170751816096,225,0 +170751816145,224,0 +170751816193,217,0 +170751816241,216,0 +170751816291,216,0 +170751816340,216,0 +170751816388,216,0 +170751816436,217,0 +170751816484,218,0 +170751816532,218,0 +170751816580,220,0 +170751816628,221,0 +170751816676,222,0 +170751816723,223,0 +170751816773,224,0 +170751816821,224,0 +170751816869,226,0 +170751816917,225,0 +170751816964,227,0 +170751817012,226,0 +170751817060,227,0 +170751817108,226,0 +170751817157,217,0 +170751817205,216,0 +170751817253,216,0 +170751817301,216,0 +170751817349,214,0 +170751817397,218,0 +170751817445,218,0 +170751817493,219,0 +170751817541,219,0 +170751817589,221,0 +170751817636,221,0 +170751817684,221,0 +170751817734,224,0 +170751817782,223,0 +170751817830,224,0 +170751817879,225,0 +170751817927,225,0 +170751817977,226,0 +170751818025,225,0 +170751818073,226,0 +170751818121,219,0 +170751818170,215,0 +170751818218,215,0 +170751818266,216,0 +170751818314,217,0 +170751818362,218,0 +170751818412,219,0 +170751818461,219,0 +170751818509,220,0 +170751818558,220,0 +170751818606,221,0 +170751818654,223,0 +170751818702,225,0 +170751818750,224,0 +170751818799,224,0 +170751818847,225,0 +170751818895,225,0 +170751818943,226,0 +170751818991,228,0 +170751819039,226,0 +170751819087,227,0 +170751819135,216,0 +170751819182,216,0 +170751819230,216,0 +170751819278,217,0 +170751819326,218,0 +170751819374,219,0 +170751819422,220,0 +170751819470,221,0 +170751819518,221,0 +170751819565,222,0 +170751819613,223,0 +170751819661,225,0 +170751819711,223,0 +170751819759,225,0 +170751819807,225,0 +170751819854,227,0 +170751819902,227,0 +170751819950,226,0 +170751819998,226,0 +170751820046,225,0 +170751820094,217,0 +170751820142,215,0 +170751820191,216,0 +170751820239,215,0 +170751820287,216,0 +170751820335,218,0 +170751820383,218,0 +170751820432,224,0 +170751820482,221,0 +170751820530,220,0 +170751820579,222,0 +170751820627,224,0 +170751820675,223,0 +170751820724,223,0 +170751820772,226,0 +170751820820,225,0 +170751820868,225,0 +170751820916,226,0 +170751820964,225,0 +170751821012,226,0 +170751821061,222,0 +170751821109,215,0 +170751821157,215,0 +170751821205,216,0 +170751821253,216,0 +170751821301,217,0 +170751821348,218,0 +170751821396,219,0 +170751821446,219,0 +170751821494,219,0 +170751821542,221,0 +170751821590,221,0 +170751821638,222,0 +170751821685,222,0 +170751821733,225,0 +170751821783,226,0 +170751821830,224,0 +170751821880,226,0 +170751821928,226,0 +170751821976,226,0 +170751822024,225,0 +170751822071,216,0 +170751822119,215,0 +170751822167,216,0 +170751822217,217,0 +170751822265,218,0 +170751822312,219,0 +170751822360,218,0 +170751822408,219,0 +170751822458,220,0 +170751822506,221,0 +170751822553,221,0 +170751822601,222,0 +170751822649,223,0 +170751822697,223,0 +170751822746,224,0 +170751822794,226,0 +170751822842,228,0 +170751822890,227,0 +170751822940,227,0 +170751822987,226,0 +170751823035,217,0 +170751823083,215,0 +170751823131,215,0 +170751823179,215,0 +170751823227,215,0 +170751823275,216,0 +170751823323,217,0 +170751823371,218,0 +170751823419,219,0 +170751823468,220,0 +170751823516,220,0 +170751823564,222,0 +170751823611,222,0 +170751823659,222,0 +170751823707,223,0 +170751823755,224,0 +170751823803,224,0 +170751823853,224,0 +170751823900,225,0 +170751823948,225,0 +170751823998,226,0 +170751824046,215,0 +170751824093,214,0 +170751824141,215,0 +170751824191,215,0 +170751824240,215,0 +170751824290,215,0 +170751824339,216,0 +170751824389,216,0 +170751824439,216,0 +170751824486,217,0 +170751824536,218,0 +170751824584,220,0 +170751824632,220,0 +170751824681,221,0 +170751824729,222,0 +170751824779,223,0 +170751824827,224,0 +170751824876,223,0 +170751824924,225,0 +170751824972,224,0 +170751825022,215,0 +170751825071,215,0 +170751825119,215,0 +170751825167,216,0 +170751825217,216,0 +170751825265,216,0 +170751825314,217,0 +170751825364,218,0 +170751825413,219,0 +170751825462,219,0 +170751825511,221,0 +170751825559,221,0 +170751825608,223,0 +170751825656,224,0 +170751825704,225,0 +170751825752,224,0 +170751825802,224,0 +170751825850,225,0 +170751825898,225,0 +170751825947,225,0 +170751825995,216,0 +170751826045,216,0 +170751826094,216,0 +170751826142,216,0 +170751826190,217,0 +170751826238,217,0 +170751826288,218,0 +170751826337,218,0 +170751826385,219,0 +170751826433,220,0 +170751826483,223,0 +170751826532,222,0 +170751826580,224,0 +170751826628,224,0 +170751826675,224,0 +170751826723,225,0 +170751826773,226,0 +170751826822,225,0 +170751826870,226,0 +170751826918,227,0 +170751826966,218,0 +170751827014,215,0 +170751827063,216,0 +170751827111,217,0 +170751827159,217,0 +170751827207,218,0 +170751827255,219,0 +170751827303,220,0 +170751827352,220,0 +170751827400,221,0 +170751827448,222,0 +170751827497,224,0 +170751827547,224,0 +170751827595,226,0 +170751827643,226,0 +170751827692,225,0 +170751827740,225,0 +170751827788,225,0 +170751827837,226,0 +170751827887,226,0 +170751827936,217,0 +170751827984,215,0 +170751828032,214,0 +170751828081,216,0 +170751828129,217,0 +170751828177,219,0 +170751828225,218,0 +170751828274,219,0 +170751828322,220,0 +170751828370,220,0 +170751828418,221,0 +170751828466,223,0 +170751828514,224,0 +170751828562,224,0 +170751828610,226,0 +170751828657,228,0 +170751828705,226,0 +170751828753,225,0 +170751828803,226,0 +170751828851,226,0 +170751828899,223,0 +170751828946,215,0 +170751828994,215,0 +170751829044,215,0 +170751829093,216,0 +170751829143,216,0 +170751829191,217,0 +170751829239,219,0 +170751829287,219,0 +170751829334,220,0 +170751829382,220,0 +170751829432,222,0 +170751829480,222,0 +170751829528,223,0 +170751829575,223,0 +170751829623,223,0 +170751829671,223,0 +170751829719,221,0 +170751829769,221,0 +170751829817,224,0 +170751829866,225,0 +170751829914,216,0 +170751829963,215,0 +170751830011,216,0 +170751830059,216,0 +170751830107,216,0 +170751830157,216,0 +170751830205,216,0 +170751830253,216,0 +170751830301,216,0 +170751830349,216,0 +170751830396,217,0 +170751830444,218,0 +170751830492,221,0 +170751830542,222,0 +170751830590,222,0 +170751830639,223,0 +170751830687,223,0 +170751830735,225,0 +170751830783,223,0 +170751830832,226,0 +170751830882,217,0 +170751830929,215,0 +170751830977,215,0 +170751831025,215,0 +170751831073,215,0 +170751831121,216,0 +170751831169,216,0 +170751831218,216,0 +170751831266,217,0 +170751831314,217,0 +170751831362,217,0 +170751831410,217,0 +170751831458,219,0 +170751831507,220,0 +170751831557,221,0 +170751831605,222,0 +170751831652,223,0 +170751831700,223,0 +170751831748,222,0 +170751831796,225,0 +170751831844,218,0 +170751831892,216,0 +170751831940,216,0 +170751831988,216,0 +170751832035,216,0 +170751832083,216,0 +170751832131,217,0 +170751832179,217,0 +170751832229,216,0 +170751832278,218,0 +170751832328,219,0 +170751832376,220,0 +170751832423,220,0 +170751832471,223,0 +170751832519,223,0 +170751832567,224,0 +170751832615,226,0 +170751832665,225,0 +170751832713,225,0 +170751832761,225,0 +170751832808,225,0 +170751832858,215,0 +170751832907,216,0 +170751832955,216,0 +170751833003,216,0 +170751833053,215,0 +170751833101,216,0 +170751833149,217,0 +170751833197,218,0 +170751833245,219,0 +170751833293,220,0 +170751833342,222,0 +170751833390,221,0 +170751833438,223,0 +170751833488,224,0 +170751833536,225,0 +170751833585,224,0 +170751833633,225,0 +170751833681,225,0 +170751833731,226,0 +170751833779,227,0 +170751833826,217,0 +170751833876,215,0 +170751833924,216,0 +170751833973,216,0 +170751834023,217,0 +170751834071,218,0 +170751834119,219,0 +170751834168,220,0 +170751834218,221,0 +170751834266,222,0 +170751834314,225,0 +170751834363,224,0 +170751834413,224,0 +170751834462,225,0 +170751834512,226,0 +170751834560,226,0 +170751834609,226,0 +170751834657,226,0 +170751834705,225,0 +170751834753,226,0 +170751834803,217,0 +170751834852,215,0 +170751834902,216,0 +170751834950,215,0 +170751834998,217,0 +170751835047,218,0 +170751835097,219,0 +170751835145,220,0 +170751835195,221,0 +170751835244,222,0 +170751835292,222,0 +170751835340,223,0 +170751835388,224,0 +170751835436,224,0 +170751835483,227,0 +170751835531,226,0 +170751835581,227,0 +170751835629,225,0 +170751835677,225,0 +170751835726,226,0 +170751835774,217,0 +170751835824,215,0 +170751835872,215,0 +170751835920,215,0 +170751835968,216,0 +170751836017,216,0 +170751836065,217,0 +170751836113,216,0 +170751836161,217,0 +170751836211,219,0 +170751836258,219,0 +170751836306,220,0 +170751836356,221,0 +170751836404,223,0 +170751836452,223,0 +170751836502,225,0 +170751836549,225,0 +170751836599,225,0 +170751836647,226,0 +170751836695,225,0 +170751836743,225,0 +170751836792,215,0 +170751836840,214,0 +170751836890,215,0 +170751836939,215,0 +170751836989,215,0 +170751837037,215,0 +170751837085,216,0 +170751837134,215,0 +170751837184,216,0 +170751837232,216,0 +170751837281,217,0 +170751837331,218,0 +170751837379,219,0 +170751837428,220,0 +170751837476,221,0 +170751837526,222,0 +170751837575,223,0 +170751837623,224,0 +170751837671,225,0 +170751837721,225,0 +170751837770,215,0 +170751837818,215,0 +170751837867,215,0 +170751837915,216,0 +170751837963,216,0 +170751838013,216,0 +170751838061,217,0 +170751838108,218,0 +170751838158,219,0 +170751838206,220,0 +170751838254,221,0 +170751838302,222,0 +170751838349,222,0 +170751838397,222,0 +170751838445,224,0 +170751838493,223,0 +170751838543,226,0 +170751838592,227,0 +170751838640,225,0 +170751838689,224,0 +170751838737,216,0 +170751838785,215,0 +170751838833,215,0 +170751838881,216,0 +170751838929,216,0 +170751838977,216,0 +170751839026,217,0 +170751839074,217,0 +170751839122,217,0 +170751839170,218,0 +170751839218,219,0 +170751839268,220,0 +170751839317,221,0 +170751839365,223,0 +170751839415,223,0 +170751839464,223,0 +170751839512,226,0 +170751839560,225,0 +170751839608,225,0 +170751839656,227,0 +170751839704,217,0 +170751839753,215,0 +170751839801,215,0 +170751839851,215,0 +170751839900,215,0 +170751839950,215,0 +170751840000,216,0 +170751840047,216,0 +170751840097,216,0 +170751840146,217,0 +170751840196,217,0 +170751840244,218,0 +170751840293,218,0 +170751840341,219,0 +170751840389,220,0 +170751840439,221,0 +170751840487,221,0 +170751840535,221,0 +170751840583,222,0 +170751840631,224,0 +170751840679,225,0 +170751840727,224,0 +170751840774,225,0 +170751840822,226,0 +170751840870,225,0 +170751840920,227,0 +170751840968,225,0 +170751841016,226,0 +170751841064,227,0 +170751841112,226,0 +170751841159,223,0 +170751841209,216,0 +170751841257,216,0 +170751841305,217,0 +170751841353,217,0 +170751841401,218,0 +170751841448,218,0 +170751841496,219,0 +170751841544,220,0 +170751841592,222,0 +170751841640,220,0 +170751841688,223,0 +170751841737,223,0 +170751841785,225,0 +170751841833,225,0 +170751841881,228,0 +170751841931,227,0 +170751841980,226,0 +170751842030,226,0 +170751842078,226,0 +170751842127,224,0 +170751842175,216,0 +170751842223,217,0 +170751842271,218,0 +170751842321,218,0 +170751842369,220,0 +170751842417,220,0 +170751842465,220,0 +170751842513,222,0 +170751842560,222,0 +170751842610,222,0 +170751842658,224,0 +170751842708,225,0 +170751842756,226,0 +170751842804,227,0 +170751842851,227,0 +170751842901,228,0 +170751842950,226,0 +170751843000,224,0 +170751843048,226,0 +170751843096,225,0 +170751843143,216,0 +170751843191,215,0 +170751843239,215,0 +170751843287,217,0 +170751843335,217,0 +170751843383,218,0 +170751843431,220,0 +170751843479,219,0 +170751843527,220,0 +170751843575,220,0 +170751843624,221,0 +170751843672,222,0 +170751843720,225,0 +170751843768,222,0 +170751843816,226,0 +170751843864,225,0 +170751843913,228,0 +170751843963,226,0 +170751844011,226,0 +170751844058,226,0 +170751844106,217,0 +170751844154,215,0 +170751844204,215,0 +170751844252,215,0 +170751844300,216,0 +170751844347,216,0 +170751844395,216,0 +170751844445,216,0 +170751844493,216,0 +170751844541,217,0 +170751844589,218,0 +170751844636,219,0 +170751844684,220,0 +170751844732,222,0 +170751844780,221,0 +170751844828,224,0 +170751844876,223,0 +170751844925,224,0 +170751844973,225,0 +170751845021,225,0 +170751845069,225,0 +170751845118,216,0 +170751845168,215,0 +170751845217,215,0 +170751845265,215,0 +170751845315,216,0 +170751845363,216,0 +170751845411,217,0 +170751845459,218,0 +170751845508,219,0 +170751845556,220,0 +170751845606,220,0 +170751845655,221,0 +170751845703,223,0 +170751845753,223,0 +170751845802,223,0 +170751845852,224,0 +170751845900,224,0 +170751845949,222,0 +170751845997,226,0 +170751846047,226,0 +170751846096,217,0 +170751846144,216,0 +170751846192,216,0 +170751846242,217,0 +170751846290,216,0 +170751846338,217,0 +170751846386,218,0 +170751846435,218,0 +170751846483,220,0 +170751846533,221,0 +170751846582,222,0 +170751846630,222,0 +170751846678,223,0 +170751846726,226,0 +170751846774,225,0 +170751846822,227,0 +170751846872,225,0 +170751846920,225,0 +170751846969,227,0 +170751847019,226,0 +170751847067,217,0 +170751847115,215,0 +170751847162,215,0 +170751847210,216,0 +170751847260,216,0 +170751847310,216,0 +170751847359,215,0 +170751847409,217,0 +170751847457,218,0 +170751847505,219,0 +170751847552,221,0 +170751847602,221,0 +170751847651,222,0 +170751847699,224,0 +170751847747,226,0 +170751847797,225,0 +170751847845,225,0 +170751847893,225,0 +170751847941,225,0 +170751847989,225,0 +170751848038,217,0 +170751848086,215,0 +170751848134,216,0 +170751848184,215,0 +170751848232,216,0 +170751848280,217,0 +170751848329,217,0 +170751848378,217,0 +170751848428,218,0 +170751848477,218,0 +170751848527,219,0 +170751848576,221,0 +170751848626,221,0 +170751848674,222,0 +170751848723,223,0 +170751848771,224,0 +170751848821,224,0 +170751848869,224,0 +170751848917,224,0 +170751848965,225,0 +170751849013,216,0 +170751849060,215,0 +170751849110,215,0 +170751849158,215,0 +170751849206,215,0 +170751849254,216,0 +170751849302,216,0 +170751849351,216,0 +170751849401,216,0 +170751849449,217,0 +170751849497,218,0 +170751849545,220,0 +170751849593,220,0 +170751849642,221,0 +170751849690,222,0 +170751849738,224,0 +170751849786,225,0 +170751849834,225,0 +170751849883,225,0 +170751849931,226,0 +170751849979,222,0 +170751850029,215,0 +170751850077,215,0 +170751850126,216,0 +170751850174,216,0 +170751850224,216,0 +170751850273,216,0 +170751850321,216,0 +170751850371,216,0 +170751850421,217,0 +170751850470,217,0 +170751850518,218,0 +170751850566,219,0 +170751850614,221,0 +170751850664,221,0 +170751850713,225,0 +170751850761,224,0 +170751850809,224,0 +170751850857,224,0 +170751850905,224,0 +170751850954,225,0 +170751851004,216,0 +170751851054,215,0 +170751851102,215,0 +170751851150,216,0 +170751851197,216,0 +170751851247,216,0 +170751851297,216,0 +170751851346,216,0 +170751851394,217,0 +170751851442,217,0 +170751851490,217,0 +170751851538,219,0 +170751851586,220,0 +170751851634,221,0 +170751851682,222,0 +170751851731,222,0 +170751851779,224,0 +170751851827,224,0 +170751851877,225,0 +170751851925,226,0 +170751851974,216,0 +170751852024,214,0 +170751852072,215,0 +170751852121,215,0 +170751852171,215,0 +170751852220,215,0 +170751852270,216,0 +170751852319,216,0 +170751852367,217,0 +170751852415,217,0 +170751852463,217,0 +170751852511,218,0 +170751852559,218,0 +170751852607,220,0 +170751852655,222,0 +170751852705,221,0 +170751852754,223,0 +170751852804,225,0 +170751852853,225,0 +170751852903,226,0 +170751852952,217,0 +170751853002,216,0 +170751853050,215,0 +170751853098,216,0 +170751853146,216,0 +170751853194,216,0 +170751853243,217,0 +170751853291,218,0 +170751853339,219,0 +170751853387,219,0 +170751853437,220,0 +170751853486,222,0 +170751853534,222,0 +170751853584,223,0 +170751853632,224,0 +170751853680,224,0 +170751853728,225,0 +170751853777,224,0 +170751853825,225,0 +170751853873,225,0 +170751853922,217,0 +170751853970,216,0 +170751854018,216,0 +170751854068,216,0 +170751854116,216,0 +170751854164,217,0 +170751854213,217,0 +170751854263,218,0 +170751854311,219,0 +170751854359,222,0 +170751854409,222,0 +170751854458,222,0 +170751854508,223,0 +170751854555,223,0 +170751854603,225,0 +170751854651,225,0 +170751854699,226,0 +170751854749,226,0 +170751854798,226,0 +170751854846,225,0 +170751854894,223,0 +170751854942,216,0 +170751854992,216,0 +170751855040,215,0 +170751855089,216,0 +170751855139,216,0 +170751855187,216,0 +170751855235,217,0 +170751855283,218,0 +170751855331,220,0 +170751855379,220,0 +170751855427,221,0 +170751855476,222,0 +170751855524,224,0 +170751855572,225,0 +170751855620,224,0 +170751855670,225,0 +170751855719,225,0 +170751855767,225,0 +170751855815,225,0 +170751855865,224,0 +170751855914,215,0 +170751855962,216,0 +170751856012,217,0 +170751856060,217,0 +170751856108,217,0 +170751856157,218,0 +170751856205,220,0 +170751856255,220,0 +170751856303,220,0 +170751856352,221,0 +170751856402,223,0 +170751856451,224,0 +170751856501,224,0 +170751856550,224,0 +170751856598,225,0 +170751856648,225,0 +170751856696,226,0 +170751856744,226,0 +170751856793,225,0 +170751856843,225,0 +170751856892,216,0 +170751856942,216,0 +170751856990,217,0 +170751857038,218,0 +170751857087,219,0 +170751857137,221,0 +170751857185,220,0 +170751857234,222,0 +170751857282,223,0 +170751857330,224,0 +170751857378,223,0 +170751857426,225,0 +170751857474,225,0 +170751857522,226,0 +170751857570,226,0 +170751857619,227,0 +170751857667,226,0 +170751857715,226,0 +170751857763,226,0 +170751857813,224,0 +170751857861,217,0 +170751857909,215,0 +170751857957,215,0 +170751858005,215,0 +170751858053,216,0 +170751858102,217,0 +170751858150,218,0 +170751858200,219,0 +170751858249,219,0 +170751858297,220,0 +170751858345,221,0 +170751858393,222,0 +170751858441,224,0 +170751858489,223,0 +170751858539,226,0 +170751858588,224,0 +170751858636,224,0 +170751858684,225,0 +170751858733,226,0 +170751858783,225,0 +170751858833,217,0 +170751858880,215,0 +170751858928,216,0 +170751858978,215,0 +170751859026,216,0 +170751859074,215,0 +170751859122,216,0 +170751859171,216,0 +170751859219,218,0 +170751859267,219,0 +170751859315,220,0 +170751859365,220,0 +170751859414,222,0 +170751859464,223,0 +170751859513,222,0 +170751859563,223,0 +170751859612,224,0 +170751859660,224,0 +170751859708,223,0 +170751859758,225,0 +170751859806,216,0 +170751859854,215,0 +170751859903,215,0 +170751859951,215,0 +170751859999,216,0 +170751860047,216,0 +170751860095,215,0 +170751860143,217,0 +170751860192,218,0 +170751860242,219,0 +170751860290,220,0 +170751860338,221,0 +170751860386,224,0 +170751860434,223,0 +170751860483,223,0 +170751860533,224,0 +170751860580,224,0 +170751860630,224,0 +170751860678,224,0 +170751860727,226,0 +170751860777,224,0 +170751860827,216,0 +170751860876,215,0 +170751860924,216,0 +170751860972,216,0 +170751861020,216,0 +170751861070,216,0 +170751861119,217,0 +170751861167,218,0 +170751861217,219,0 +170751861265,220,0 +170751861314,222,0 +170751861362,222,0 +170751861410,223,0 +170751861460,224,0 +170751861508,224,0 +170751861556,226,0 +170751861603,227,0 +170751861651,225,0 +170751861699,225,0 +170751861749,225,0 +170751861797,216,0 +170751861845,216,0 +170751861894,216,0 +170751861944,216,0 +170751861992,216,0 +170751862040,216,0 +170751862089,217,0 +170751862137,218,0 +170751862185,218,0 +170751862235,220,0 +170751862284,221,0 +170751862334,224,0 +170751862383,223,0 +170751862433,224,0 +170751862481,227,0 +170751862529,226,0 +170751862578,224,0 +170751862626,225,0 +170751862674,225,0 +170751862724,225,0 +170751862772,216,0 +170751862821,215,0 +170751862869,215,0 +170751862919,215,0 +170751862967,216,0 +170751863016,216,0 +170751863064,216,0 +170751863112,216,0 +170751863160,217,0 +170751863208,218,0 +170751863256,219,0 +170751863304,220,0 +170751863352,221,0 +170751863400,221,0 +170751863448,223,0 +170751863496,224,0 +170751863544,223,0 +170751863592,224,0 +170751863640,224,0 +170751863689,225,0 +170751863739,217,0 +170751863788,214,0 +170751863838,214,0 +170751863888,215,0 +170751863936,215,0 +170751863984,215,0 +170751864032,215,0 +170751864080,215,0 +170751864127,215,0 +170751864177,215,0 +170751864225,216,0 +170751864273,216,0 +170751864322,217,0 +170751864372,218,0 +170751864420,220,0 +170751864469,220,0 +170751864519,221,0 +170751864568,221,0 +170751864616,222,0 +170751864666,225,0 +170751864716,217,0 +170751864763,216,0 +170751864811,216,0 +170751864861,216,0 +170751864909,216,0 +170751864957,216,0 +170751865005,216,0 +170751865054,216,0 +170751865104,217,0 +170751865153,218,0 +170751865203,219,0 +170751865251,220,0 +170751865299,221,0 +170751865347,223,0 +170751865395,223,0 +170751865443,223,0 +170751865491,227,0 +170751865539,225,0 +170751865588,225,0 +170751865636,225,0 +170751865684,225,0 +170751865732,216,0 +170751865780,215,0 +170751865828,216,0 +170751865876,216,0 +170751865924,217,0 +170751865972,216,0 +170751866021,217,0 +170751866071,218,0 +170751866119,218,0 +170751866168,219,0 +170751866216,222,0 +170751866264,222,0 +170751866314,224,0 +170751866362,224,0 +170751866409,223,0 +170751866457,224,0 +170751866507,226,0 +170751866555,225,0 +170751866603,226,0 +170751866652,226,0 +170751866700,217,0 +170751866750,215,0 +170751866800,215,0 +170751866847,216,0 +170751866897,216,0 +170751866945,216,0 +170751866995,216,0 +170751867044,217,0 +170751867094,219,0 +170751867142,219,0 +170751867190,220,0 +170751867237,222,0 +170751867287,223,0 +170751867335,224,0 +170751867384,225,0 +170751867432,224,0 +170751867480,225,0 +170751867530,225,0 +170751867580,226,0 +170751867628,226,0 +170751867675,216,0 +170751867725,216,0 +170751867773,216,0 +170751867821,216,0 +170751867869,216,0 +170751867917,217,0 +170751867966,217,0 +170751868014,218,0 +170751868064,218,0 +170751868112,219,0 +170751868160,223,0 +170751868208,221,0 +170751868256,222,0 +170751868305,223,0 +170751868353,224,0 +170751868401,225,0 +170751868449,224,0 +170751868499,224,0 +170751868547,226,0 +170751868596,225,0 +170751868646,217,0 +170751868693,215,0 +170751868741,216,0 +170751868789,215,0 +170751868837,216,0 +170751868885,216,0 +170751868933,217,0 +170751868981,218,0 +170751869029,219,0 +170751869079,219,0 +170751869127,220,0 +170751869176,221,0 +170751869224,223,0 +170751869274,222,0 +170751869322,222,0 +170751869370,225,0 +170751869418,224,0 +170751869466,224,0 +170751869514,224,0 +170751869561,225,0 +170751869611,225,0 +170751869660,215,0 +170751869708,215,0 +170751869758,216,0 +170751869807,216,0 +170751869857,216,0 +170751869905,217,0 +170751869954,218,0 +170751870002,219,0 +170751870052,219,0 +170751870101,219,0 +170751870151,220,0 +170751870199,222,0 +170751870248,224,0 +170751870296,223,0 +170751870346,224,0 +170751870394,224,0 +170751870443,224,0 +170751870493,225,0 +170751870541,226,0 +170751870591,224,0 +170751870638,216,0 +170751870686,216,0 +170751870734,216,0 +170751870782,216,0 +170751870832,219,0 +170751870881,218,0 +170751870930,220,0 +170751870979,219,0 +170751871029,220,0 +170751871078,221,0 +170751871126,223,0 +170751871174,224,0 +170751871222,225,0 +170751871270,224,0 +170751871318,226,0 +170751871367,225,0 +170751871417,226,0 +170751871465,225,0 +170751871513,227,0 +170751871561,225,0 +170751871609,216,0 +170751871658,215,0 +170751871706,217,0 +170751871754,218,0 +170751871804,219,0 +170751871852,219,0 +170751871901,220,0 +170751871949,221,0 +170751871999,221,0 +170751872047,223,0 +170751872095,224,0 +170751872143,224,0 +170751872192,223,0 +170751872240,225,0 +170751872290,226,0 +170751872338,226,0 +170751872387,227,0 +170751872435,227,0 +170751872483,226,0 +170751872531,225,0 +170751872579,217,0 +170751872629,215,0 +170751872678,215,0 +170751872726,216,0 +170751872774,217,0 +170751872822,218,0 +170751872870,219,0 +170751872920,220,0 +170751872969,220,0 +170751873017,221,0 +170751873065,222,0 +170751873113,223,0 +170751873162,224,0 +170751873212,224,0 +170751873260,224,0 +170751873308,227,0 +170751873356,225,0 +170751873405,226,0 +170751873453,226,0 +170751873503,225,0 +170751873552,217,0 +170751873600,215,0 +170751873648,215,0 +170751873696,215,0 +170751873744,216,0 +170751873794,216,0 +170751873843,218,0 +170751873893,218,0 +170751873941,219,0 +170751873989,220,0 +170751874037,220,0 +170751874085,223,0 +170751874132,223,0 +170751874182,225,0 +170751874230,225,0 +170751874279,225,0 +170751874327,227,0 +170751874375,224,0 +170751874423,226,0 +170751874473,226,0 +170751874521,225,0 +170751874569,216,0 +170751874618,215,0 +170751874668,215,0 +170751874716,216,0 +170751874765,216,0 +170751874813,217,0 +170751874861,217,0 +170751874909,218,0 +170751874957,220,0 +170751875007,219,0 +170751875055,221,0 +170751875103,222,0 +170751875152,222,0 +170751875200,223,0 +170751875250,225,0 +170751875298,226,0 +170751875347,225,0 +170751875397,226,0 +170751875445,226,0 +170751875494,224,0 +170751875544,215,0 +170751875592,215,0 +170751875640,215,0 +170751875688,216,0 +170751875737,216,0 +170751875785,216,0 +170751875833,217,0 +170751875881,218,0 +170751875929,220,0 +170751875978,221,0 +170751876026,221,0 +170751876074,224,0 +170751876122,224,0 +170751876170,224,0 +170751876218,224,0 +170751876266,225,0 +170751876314,226,0 +170751876362,227,0 +170751876412,226,0 +170751876460,226,0 +170751876508,217,0 +170751876557,216,0 +170751876605,217,0 +170751876655,217,0 +170751876703,218,0 +170751876751,219,0 +170751876800,220,0 +170751876848,220,0 +170751876898,221,0 +170751876946,223,0 +170751876994,223,0 +170751877043,224,0 +170751877091,226,0 +170751877139,226,0 +170751877187,226,0 +170751877235,225,0 +170751877283,226,0 +170751877331,227,0 +170751877379,227,0 +170751877428,225,0 +170751877476,217,0 +170751877526,216,0 +170751877574,217,0 +170751877623,216,0 +170751877673,218,0 +170751877722,219,0 +170751877770,219,0 +170751877818,219,0 +170751877868,221,0 +170751877916,222,0 +170751877965,223,0 +170751878013,223,0 +170751878063,225,0 +170751878113,224,0 +170751878161,226,0 +170751878209,225,0 +170751878257,227,0 +170751878305,226,0 +170751878354,226,0 +170751878402,225,0 +170751878452,216,0 +170751878501,216,0 +170751878549,216,0 +170751878597,218,0 +170751878645,219,0 +170751878695,220,0 +170751878742,220,0 +170751878790,221,0 +170751878838,221,0 +170751878888,223,0 +170751878936,224,0 +170751878984,225,0 +170751879033,225,0 +170751879081,224,0 +170751879131,225,0 +170751879179,225,0 +170751879228,226,0 +170751879276,225,0 +170751879324,228,0 +170751879372,225,0 +170751879420,224,0 +170751879470,216,0 +170751879519,216,0 +170751879569,215,0 +170751879617,216,0 +170751879665,217,0 +170751879714,217,0 +170751879762,218,0 +170751879812,219,0 +170751879860,220,0 +170751879908,221,0 +170751879955,222,0 +170751880003,224,0 +170751880053,223,0 +170751880101,224,0 +170751880149,225,0 +170751880198,225,0 +170751880248,226,0 +170751880297,226,0 +170751880347,226,0 +170751880397,225,0 +170751880445,216,0 +170751880494,215,0 +170751880542,215,0 +170751880592,215,0 +170751880639,216,0 +170751880687,216,0 +170751880737,217,0 +170751880786,217,0 +170751880834,217,0 +170751880882,219,0 +170751880932,219,0 +170751880980,223,0 +170751881029,222,0 +170751881077,223,0 +170751881125,221,0 +170751881175,224,0 +170751881223,228,0 +170751881271,226,0 +170751881320,226,0 +170751881368,225,0 +170751881416,217,0 +170751881464,215,0 +170751881512,216,0 +170751881562,216,0 +170751881611,217,0 +170751881661,216,0 +170751881709,217,0 +170751881756,217,0 +170751881806,218,0 +170751881854,218,0 +170751881902,220,0 +170751881950,220,0 +170751881998,222,0 +170751882046,223,0 +170751882093,223,0 +170751882143,224,0 +170751882191,224,0 +170751882239,226,0 +170751882287,225,0 +170751882334,225,0 +170751882382,218,0 +170751882432,215,0 +170751882481,215,0 +170751882531,216,0 +170751882579,216,0 +170751882627,217,0 +170751882675,218,0 +170751882724,219,0 +170751882774,220,0 +170751882822,220,0 +170751882871,222,0 +170751882921,223,0 +170751882969,223,0 +170751883018,226,0 +170751883066,224,0 +170751883116,226,0 +170751883165,226,0 +170751883215,225,0 +170751883263,225,0 +170751883312,226,0 +170751883360,225,0 +170751883408,216,0 +170751883458,216,0 +170751883506,216,0 +170751883555,216,0 +170751883603,216,0 +170751883651,217,0 +170751883699,217,0 +170751883749,217,0 +170751883797,219,0 +170751883845,219,0 +170751883893,220,0 +170751883940,221,0 +170751883988,223,0 +170751884038,223,0 +170751884087,223,0 +170751884137,225,0 +170751884185,225,0 +170751884234,224,0 +170751884282,225,0 +170751884330,225,0 +170751884378,216,0 +170751884428,215,0 +170751884476,215,0 +170751884525,214,0 +170751884575,215,0 +170751884624,215,0 +170751884674,216,0 +170751884722,216,0 +170751884770,217,0 +170751884818,216,0 +170751884866,217,0 +170751884915,219,0 +170751884965,220,0 +170751885014,220,0 +170751885062,221,0 +170751885110,222,0 +170751885158,223,0 +170751885206,223,0 +170751885256,225,0 +170751885304,225,0 +170751885353,217,0 +170751885401,216,0 +170751885451,216,0 +170751885499,216,0 +170751885548,216,0 +170751885598,216,0 +170751885647,217,0 +170751885697,217,0 +170751885746,218,0 +170751885796,220,0 +170751885844,220,0 +170751885893,222,0 +170751885943,224,0 +170751885991,223,0 +170751886039,223,0 +170751886088,224,0 +170751886136,225,0 +170751886186,226,0 +170751886234,225,0 +170751886283,225,0 +170751886333,217,0 +170751886382,215,0 +170751886432,215,0 +170751886481,216,0 +170751886529,216,0 +170751886579,216,0 +170751886628,217,0 +170751886676,219,0 +170751886726,219,0 +170751886775,220,0 +170751886823,223,0 +170751886873,222,0 +170751886923,223,0 +170751886972,223,0 +170751887022,224,0 +170751887070,225,0 +170751887118,225,0 +170751887167,227,0 +170751887217,226,0 +170751887266,226,0 +170751887314,219,0 +170751887364,215,0 +170751887413,215,0 +170751887462,216,0 +170751887510,216,0 +170751887558,216,0 +170751887608,218,0 +170751887658,218,0 +170751887707,219,0 +170751887755,221,0 +170751887803,220,0 +170751887851,221,0 +170751887899,223,0 +170751887947,223,0 +170751887995,224,0 +170751888043,225,0 +170751888091,226,0 +170751888140,226,0 +170751888188,225,0 +170751888236,226,0 +170751888286,227,0 +170751888335,216,0 +170751888385,216,0 +170751888434,216,0 +170751888484,216,0 +170751888532,216,0 +170751888581,217,0 +170751888629,219,0 +170751888677,218,0 +170751888725,220,0 +170751888775,221,0 +170751888824,222,0 +170751888874,223,0 +170751888922,223,0 +170751888970,224,0 +170751889019,226,0 +170751889069,226,0 +170751889117,226,0 +170751889165,225,0 +170751889214,226,0 +170751889262,225,0 +170751889310,216,0 +170751889358,216,0 +170751889406,216,0 +170751889456,216,0 +170751889505,216,0 +170751889553,217,0 +170751889601,217,0 +170751889650,218,0 +170751889698,220,0 +170751889746,220,0 +170751889796,221,0 +170751889844,221,0 +170751889892,222,0 +170751889940,225,0 +170751889988,225,0 +170751890037,224,0 +170751890087,225,0 +170751890135,225,0 +170751890184,226,0 +170751890232,226,0 +170751890280,217,0 +170751890328,215,0 +170751890378,216,0 +170751890426,215,0 +170751890475,216,0 +170751890523,218,0 +170751890572,218,0 +170751890620,219,0 +170751890668,220,0 +170751890718,221,0 +170751890768,222,0 +170751890815,222,0 +170751890865,223,0 +170751890913,224,0 +170751890961,225,0 +170751891009,224,0 +170751891058,225,0 +170751891106,227,0 +170751891156,226,0 +170751891206,226,0 +170751891254,224,0 +170751891301,216,0 +170751891349,216,0 +170751891399,216,0 +170751891447,216,0 +170751891495,216,0 +170751891543,217,0 +170751891592,218,0 +170751891640,219,0 +170751891690,220,0 +170751891739,220,0 +170751891789,221,0 +170751891837,222,0 +170751891886,222,0 +170751891934,223,0 +170751891984,224,0 +170751892032,224,0 +170751892081,226,0 +170751892129,226,0 +170751892177,226,0 +170751892225,226,0 +170751892273,216,0 +170751892321,215,0 +170751892371,216,0 +170751892419,216,0 +170751892468,217,0 +170751892516,217,0 +170751892566,217,0 +170751892614,218,0 +170751892661,219,0 +170751892711,220,0 +170751892760,221,0 +170751892808,223,0 +170751892856,223,0 +170751892904,224,0 +170751892952,225,0 +170751893002,224,0 +170751893051,225,0 +170751893099,225,0 +170751893147,225,0 +170751893195,225,0 +170751893243,217,0 +170751893293,215,0 +170751893342,215,0 +170751893392,215,0 +170751893441,216,0 +170751893489,216,0 +170751893537,216,0 +170751893585,217,0 +170751893633,216,0 +170751893683,219,0 +170751893731,220,0 +170751893779,220,0 +170751893827,221,0 +170751893875,222,0 +170751893923,224,0 +170751893972,225,0 +170751894022,225,0 +170751894071,224,0 +170751894119,225,0 +170751894167,226,0 +170751894217,219,0 +170751894265,215,0 +170751894312,215,0 +170751894360,215,0 +170751894410,215,0 +170751894458,215,0 +170751894507,216,0 +170751894555,216,0 +170751894605,216,0 +170751894653,216,0 +170751894701,216,0 +170751894749,217,0 +170751894797,218,0 +170751894845,219,0 +170751894894,220,0 +170751894942,221,0 +170751894990,221,0 +170751895038,223,0 +170751895088,222,0 +170751895136,224,0 +170751895183,226,0 +170751895233,216,0 +170751895281,214,0 +170751895331,214,0 +170751895378,214,0 +170751895428,215,0 +170751895476,215,0 +170751895525,216,0 +170751895573,216,0 +170751895621,217,0 +170751895669,215,0 +170751895717,217,0 +170751895765,217,0 +170751895813,219,0 +170751895861,220,0 +170751895911,220,0 +170751895959,222,0 +170751896007,222,0 +170751896055,222,0 +170751896102,223,0 +170751896152,225,0 +170751896202,217,0 +170751896250,215,0 +170751896297,215,0 +170751896347,217,0 +170751896397,216,0 +170751896445,216,0 +170751896494,217,0 +170751896544,218,0 +170751896593,218,0 +170751896643,219,0 +170751896690,221,0 +170751896740,221,0 +170751896788,223,0 +170751896836,224,0 +170751896885,224,0 +170751896933,226,0 +170751896983,227,0 +170751897031,226,0 +170751897079,225,0 +170751897127,225,0 +170751897175,217,0 +170751897224,215,0 +170751897272,216,0 +170751897320,216,0 +170751897370,215,0 +170751897418,216,0 +170751897466,216,0 +170751897515,216,0 +170751897565,217,0 +170751897614,217,0 +170751897662,218,0 +170751897710,219,0 +170751897758,220,0 +170751897806,221,0 +170751897856,222,0 +170751897905,223,0 +170751897953,224,0 +170751898003,224,0 +170751898052,225,0 +170751898102,225,0 +170751898152,225,0 +170751898200,216,0 +170751898249,215,0 +170751898299,215,0 +170751898348,216,0 +170751898396,216,0 +170751898444,217,0 +170751898492,217,0 +170751898540,217,0 +170751898590,217,0 +170751898639,217,0 +170751898689,219,0 +170751898738,222,0 +170751898786,221,0 +170751898834,223,0 +170751898882,223,0 +170751898932,223,0 +170751898981,224,0 +170751899029,225,0 +170751899077,226,0 +170751899125,226,0 +170751899173,216,0 +170751899223,216,0 +170751899271,216,0 +170751899319,216,0 +170751899368,217,0 +170751899418,217,0 +170751899466,216,0 +170751899515,218,0 +170751899565,218,0 +170751899614,220,0 +170751899662,221,0 +170751899710,222,0 +170751899758,224,0 +170751899806,225,0 +170751899854,223,0 +170751899904,226,0 +170751899953,224,0 +170751900001,222,0 +170751900049,225,0 +170751900098,226,0 +170751900148,217,0 +170751900196,215,0 +170751900244,216,0 +170751900292,218,0 +170751900340,218,0 +170751900389,219,0 +170751900437,220,0 +170751900485,221,0 +170751900533,222,0 +170751900581,223,0 +170751900629,224,0 +170751900679,225,0 +170751900727,227,0 +170751900775,224,0 +170751900824,225,0 +170751900872,225,0 +170751900922,226,0 +170751900970,227,0 +170751901019,225,0 +170751901067,227,0 +170751901117,225,0 +170751901165,217,0 +170751901214,217,0 +170751901264,218,0 +170751901312,219,0 +170751901360,220,0 +170751901408,220,0 +170751901456,222,0 +170751901505,222,0 +170751901555,223,0 +170751901603,223,0 +170751901652,225,0 +170751901702,226,0 +170751901750,226,0 +170751901798,226,0 +170751901847,226,0 +170751901897,225,0 +170751901945,224,0 +170751901993,226,0 +170751902042,227,0 +170751902090,225,0 +170751902138,216,0 +170751902186,215,0 +170751902234,217,0 +170751902283,218,0 +170751902333,218,0 +170751902382,219,0 +170751902432,220,0 +170751902480,221,0 +170751902529,221,0 +170751902579,222,0 +170751902629,224,0 +170751902678,225,0 +170751902726,224,0 +170751902774,225,0 +170751902822,227,0 +170751902870,225,0 +170751902920,227,0 +170751902969,225,0 +170751903017,227,0 +170751903065,226,0 +170751903114,216,0 +170751903164,215,0 +170751903212,215,0 +170751903261,216,0 +170751903311,216,0 +170751903360,217,0 +170751903410,218,0 +170751903458,219,0 +170751903507,220,0 +170751903555,220,0 +170751903603,221,0 +170751903653,223,0 +170751903702,222,0 +170751903750,225,0 +170751903800,223,0 +170751903848,225,0 +170751903896,224,0 +170751903945,224,0 +170751903993,224,0 +170751904041,226,0 +170751904089,216,0 +170751904139,214,0 +170751904187,214,0 +170751904235,215,0 +170751904284,215,0 +170751904332,215,0 +170751904380,216,0 +170751904428,216,0 +170751904478,216,0 +170751904526,216,0 +170751904575,216,0 +170751904623,217,0 +170751904671,218,0 +170751904719,219,0 +170751904767,220,0 +170751904815,221,0 +170751904863,221,0 +170751904912,222,0 +170751904962,223,0 +170751905010,226,0 +170751905058,226,0 +170751905108,216,0 +170751905155,216,0 +170751905203,216,0 +170751905251,216,0 +170751905299,217,0 +170751905349,216,0 +170751905397,217,0 +170751905446,217,0 +170751905494,217,0 +170751905542,218,0 +170751905590,219,0 +170751905640,221,0 +170751905688,223,0 +170751905737,224,0 +170751905785,222,0 +170751905834,220,0 +170751905884,224,0 +170751905932,226,0 +170751905980,226,0 +170751906030,228,0 +170751906078,218,0 +170751906125,216,0 +170751906175,216,0 +170751906223,216,0 +170751906271,216,0 +170751906320,217,0 +170751906368,217,0 +170751906418,220,0 +170751906466,220,0 +170751906514,221,0 +170751906563,222,0 +170751906613,223,0 +170751906662,224,0 +170751906712,224,0 +170751906761,225,0 +170751906811,226,0 +170751906860,226,0 +170751906908,226,0 +170751906958,226,0 +170751907006,227,0 +170751907055,217,0 +170751907103,215,0 +170751907151,216,0 +170751907199,215,0 +170751907247,216,0 +170751907297,216,0 +170751907346,217,0 +170751907394,218,0 +170751907442,217,0 +170751907492,224,0 +170751907540,220,0 +170751907589,221,0 +170751907637,223,0 +170751907685,223,0 +170751907733,225,0 +170751907781,224,0 +170751907831,224,0 +170751907879,226,0 +170751907927,225,0 +170751907975,226,0 +170751908022,225,0 +170751908070,216,0 +170751908118,215,0 +170751908168,217,0 +170751908216,216,0 +170751908265,216,0 +170751908315,216,0 +170751908363,216,0 +170751908411,217,0 +170751908459,218,0 +170751908508,219,0 +170751908558,220,0 +170751908606,222,0 +170751908654,222,0 +170751908703,223,0 +170751908751,224,0 +170751908801,224,0 +170751908850,225,0 +170751908900,226,0 +170751908948,225,0 +170751908996,226,0 +170751909044,216,0 +170751909093,215,0 +170751909141,215,0 +170751909189,216,0 +170751909238,216,0 +170751909288,216,0 +170751909336,216,0 +170751909384,217,0 +170751909432,218,0 +170751909482,218,0 +170751909529,220,0 +170751909579,221,0 +170751909627,222,0 +170751909675,222,0 +170751909723,223,0 +170751909771,224,0 +170751909819,224,0 +170751909868,225,0 +170751909918,225,0 +170751909967,226,0 +170751910015,217,0 +170751910063,215,0 +170751910111,215,0 +170751910161,215,0 +170751910209,215,0 +170751910257,216,0 +170751910306,216,0 +170751910356,217,0 +170751910404,217,0 +170751910453,218,0 +170751910501,219,0 +170751910551,220,0 +170751910600,221,0 +170751910650,224,0 +170751910698,223,0 +170751910746,225,0 +170751910795,225,0 +170751910843,225,0 +170751910891,225,0 +170751910939,225,0 +170751910989,217,0 +170751911037,215,0 +170751911084,215,0 +170751911134,215,0 +170751911184,215,0 +170751911233,216,0 +170751911283,215,0 +170751911331,217,0 +170751911379,217,0 +170751911428,217,0 +170751911478,218,0 +170751911527,219,0 +170751911575,220,0 +170751911625,221,0 +170751911673,222,0 +170751911721,223,0 +170751911769,224,0 +170751911816,225,0 +170751911864,224,0 +170751911912,226,0 +170751911960,225,0 +170751912008,216,0 +170751912056,215,0 +170751912104,216,0 +170751912153,216,0 +170751912201,216,0 +170751912249,216,0 +170751912297,216,0 +170751912347,217,0 +170751912396,217,0 +170751912444,217,0 +170751912492,218,0 +170751912540,220,0 +170751912588,222,0 +170751912637,224,0 +170751912685,224,0 +170751912735,224,0 +170751912783,225,0 +170751912830,226,0 +170751912878,226,0 +170751912926,225,0 +170751912974,217,0 +170751913022,215,0 +170751913070,215,0 +170751913119,215,0 +170751913167,216,0 +170751913215,216,0 +170751913263,216,0 +170751913311,216,0 +170751913360,217,0 +170751913408,217,0 +170751913456,219,0 +170751913504,221,0 +170751913552,221,0 +170751913600,221,0 +170751913648,223,0 +170751913695,224,0 +170751913743,225,0 +170751913791,225,0 +170751913839,225,0 +170751913887,224,0 +170751913935,225,0 +170751913983,215,0 +170751914031,215,0 +170751914079,215,0 +170751914128,215,0 +170751914176,216,0 +170751914224,216,0 +170751914272,216,0 +170751914321,218,0 +170751914371,218,0 +170751914419,220,0 +170751914467,221,0 +170751914515,222,0 +170751914563,223,0 +170751914611,225,0 +170751914660,226,0 +170751914710,225,0 +170751914759,226,0 +170751914807,226,0 +170751914855,225,0 +170751914905,226,0 +170751914954,216,0 +170751915004,215,0 +170751915053,215,0 +170751915101,216,0 +170751915151,215,0 +170751915200,216,0 +170751915248,216,0 +170751915296,217,0 +170751915344,216,0 +170751915392,218,0 +170751915440,219,0 +170751915488,220,0 +170751915538,221,0 +170751915586,224,0 +170751915634,223,0 +170751915682,223,0 +170751915730,227,0 +170751915779,226,0 +170751915827,225,0 +170751915875,225,0 +170751915925,216,0 +170751915974,215,0 +170751916024,215,0 +170751916072,215,0 +170751916120,215,0 +170751916169,216,0 +170751916219,214,0 +170751916267,216,0 +170751916315,217,0 +170751916364,219,0 +170751916412,220,0 +170751916460,220,0 +170751916509,222,0 +170751916559,223,0 +170751916607,224,0 +170751916654,224,0 +170751916702,223,0 +170751916752,224,0 +170751916800,226,0 +170751916847,217,0 +170751916897,215,0 +170751916945,215,0 +170751916994,215,0 +170751917042,215,0 +170751917090,215,0 +170751917138,216,0 +170751917187,216,0 +170751917235,217,0 +170751917283,219,0 +170751917331,220,0 +170751917379,220,0 +170751917427,222,0 +170751917477,222,0 +170751917526,224,0 +170751917576,224,0 +170751917625,226,0 +170751917673,225,0 +170751917721,226,0 +170751917769,218,0 +170751917817,215,0 +170751917865,215,0 +170751917914,215,0 +170751917962,216,0 +170751918012,215,0 +170751918062,216,0 +170751918111,216,0 +170751918159,217,0 +170751918208,217,0 +170751918258,218,0 +170751918306,219,0 +170751918355,221,0 +170751918405,223,0 +170751918453,224,0 +170751918501,223,0 +170751918551,224,0 +170751918599,226,0 +170751918647,227,0 +170751918696,225,0 +170751918744,216,0 +170751918793,216,0 +170751918843,216,0 +170751918893,216,0 +170751918942,217,0 +170751918990,217,0 +170751919039,220,0 +170751919089,220,0 +170751919139,222,0 +170751919188,225,0 +170751919238,223,0 +170751919286,224,0 +170751919335,224,0 +170751919383,224,0 +170751919431,224,0 +170751919479,225,0 +170751919527,225,0 +170751919575,227,0 +170751919623,225,0 +170751919671,216,0 +170751919719,215,0 +170751919767,215,0 +170751919814,216,0 +170751919862,216,0 +170751919910,216,0 +170751919958,217,0 +170751920006,217,0 +170751920056,218,0 +170751920104,219,0 +170751920153,220,0 +170751920201,221,0 +170751920251,221,0 +170751920300,224,0 +170751920350,224,0 +170751920398,224,0 +170751920447,224,0 +170751920495,224,0 +170751920545,225,0 +170751920594,216,0 +170751920642,215,0 +170751920690,215,0 +170751920740,215,0 +170751920789,216,0 +170751920837,216,0 +170751920885,216,0 +170751920933,216,0 +170751920981,217,0 +170751921029,218,0 +170751921077,219,0 +170751921125,220,0 +170751921174,222,0 +170751921224,223,0 +170751921272,223,0 +170751921321,224,0 +170751921369,225,0 +170751921419,224,0 +170751921468,225,0 +170751921518,217,0 +170751921566,215,0 +170751921615,215,0 +170751921665,216,0 +170751921714,216,0 +170751921764,217,0 +170751921812,218,0 +170751921860,220,0 +170751921909,219,0 +170751921959,221,0 +170751922008,223,0 +170751922058,222,0 +170751922106,225,0 +170751922154,224,0 +170751922202,225,0 +170751922251,225,0 +170751922299,226,0 +170751922349,225,0 +170751922398,226,0 +170751922448,217,0 +170751922496,214,0 +170751922545,216,0 +170751922595,216,0 +170751922643,216,0 +170751922691,217,0 +170751922740,218,0 +170751922788,219,0 +170751922836,221,0 +170751922884,221,0 +170751922932,222,0 +170751922982,222,0 +170751923030,224,0 +170751923079,224,0 +170751923129,224,0 +170751923178,225,0 +170751923226,224,0 +170751923274,225,0 +170751923322,225,0 +170751923372,217,0 +170751923421,216,0 +170751923469,216,0 +170751923517,216,0 +170751923567,217,0 +170751923616,218,0 +170751923666,219,0 +170751923714,222,0 +170751923763,222,0 +170751923813,223,0 +170751923862,223,0 +170751923912,225,0 +170751923961,225,0 +170751924011,224,0 +170751924060,225,0 +170751924110,227,0 +170751924159,226,0 +170751924207,225,0 +170751924257,226,0 +170751924305,216,0 +170751924353,216,0 +170751924402,216,0 +170751924450,216,0 +170751924498,216,0 +170751924546,218,0 +170751924596,218,0 +170751924645,219,0 +170751924695,220,0 +170751924743,220,0 +170751924791,222,0 +170751924840,223,0 +170751924890,223,0 +170751924938,223,0 +170751924986,225,0 +170751925034,225,0 +170751925082,224,0 +170751925129,223,0 +170751925177,225,0 +170751925225,217,0 +170751925275,215,0 +170751925325,215,0 +170751925373,216,0 +170751925420,216,0 +170751925470,216,0 +170751925518,217,0 +170751925567,219,0 +170751925615,220,0 +170751925663,220,0 +170751925711,222,0 +170751925759,222,0 +170751925807,223,0 +170751925855,225,0 +170751925905,225,0 +170751925953,225,0 +170751926001,227,0 +170751926050,225,0 +170751926098,226,0 +170751926146,217,0 +170751926196,216,0 +170751926244,216,0 +170751926292,216,0 +170751926340,216,0 +170751926388,218,0 +170751926437,219,0 +170751926485,219,0 +170751926535,220,0 +170751926582,220,0 +170751926632,221,0 +170751926682,223,0 +170751926730,223,0 +170751926779,224,0 +170751926827,224,0 +170751926875,225,0 +170751926924,225,0 +170751926974,226,0 +170751927024,225,0 +170751927072,217,0 +170751927121,216,0 +170751927171,217,0 +170751927219,218,0 +170751927266,219,0 +170751927316,219,0 +170751927364,224,0 +170751927412,221,0 +170751927460,222,0 +170751927508,222,0 +170751927557,223,0 +170751927607,223,0 +170751927655,224,0 +170751927703,224,0 +170751927751,227,0 +170751927799,225,0 +170751927847,225,0 +170751927896,225,0 +170751927944,226,0 +170751927994,217,0 +170751928042,216,0 +170751928090,217,0 +170751928139,218,0 +170751928187,219,0 +170751928235,219,0 +170751928283,221,0 +170751928332,219,0 +170751928380,223,0 +170751928430,223,0 +170751928479,223,0 +170751928527,224,0 +170751928575,225,0 +170751928623,226,0 +170751928671,226,0 +170751928719,226,0 +170751928769,225,0 +170751928817,228,0 +170751928866,226,0 +170751928914,224,0 +170751928964,216,0 +170751929013,217,0 +170751929061,218,0 +170751929111,219,0 +170751929159,220,0 +170751929207,226,0 +170751929255,221,0 +170751929303,222,0 +170751929352,222,0 +170751929402,223,0 +170751929451,223,0 +170751929499,224,0 +170751929547,225,0 +170751929597,227,0 +170751929645,227,0 +170751929694,225,0 +170751929744,226,0 +170751929793,226,0 +170751929841,219,0 +170751929889,218,0 +170751929937,219,0 +170751929985,220,0 +170751930033,221,0 +170751930081,222,0 +170751930131,221,0 +170751930179,222,0 +170751930226,222,0 +170751930276,224,0 +170751930326,226,0 +170751930375,225,0 +170751930423,227,0 +170751930473,225,0 +170751930520,227,0 +170751930568,226,0 +170751930616,226,0 +170751930664,226,0 +170751930712,226,0 +170751930760,221,0 +170751930808,216,0 +170751930856,217,0 +170751930904,218,0 +170751930952,219,0 +170751931000,219,0 +170751931048,220,0 +170751931098,221,0 +170751931147,222,0 +170751931195,222,0 +170751931243,222,0 +170751931291,224,0 +170751931339,225,0 +170751931387,225,0 +170751931436,226,0 +170751931484,227,0 +170751931534,226,0 +170751931582,228,0 +170751931631,226,0 +170751931679,224,0 +170751931727,217,0 +170751931777,217,0 +170751931825,218,0 +170751931873,219,0 +170751931921,220,0 +170751931969,221,0 +170751932017,222,0 +170751932066,221,0 +170751932116,224,0 +170751932164,224,0 +170751932213,224,0 +170751932261,225,0 +170751932311,226,0 +170751932360,226,0 +170751932410,226,0 +170751932459,225,0 +170751932507,226,0 +170751932555,226,0 +170751932603,226,0 +170751932651,217,0 +170751932699,216,0 +170751932747,217,0 +170751932795,218,0 +170751932843,219,0 +170751932891,220,0 +170751932939,221,0 +170751932988,221,0 +170751933038,222,0 +170751933087,224,0 +170751933135,223,0 +170751933185,225,0 +170751933234,226,0 +170751933284,227,0 +170751933333,227,0 +170751933381,227,0 +170751933431,230,0 +170751933479,227,0 +170751933527,227,0 +170751933576,216,0 +170751933624,215,0 +170751933674,216,0 +170751933723,216,0 +170751933773,218,0 +170751933822,218,0 +170751933870,219,0 +170751933920,220,0 +170751933968,221,0 +170751934017,223,0 +170751934065,222,0 +170751934115,223,0 +170751934164,224,0 +170751934212,225,0 +170751934260,225,0 +170751934308,225,0 +170751934356,223,0 +170751934406,224,0 +170751934454,225,0 +170751934503,216,0 +170751934553,215,0 +170751934601,215,0 +170751934649,216,0 +170751934697,216,0 +170751934746,216,0 +170751934796,216,0 +170751934844,217,0 +170751934892,218,0 +170751934940,219,0 +170751934989,222,0 +170751935039,222,0 +170751935088,223,0 +170751935138,224,0 +170751935186,226,0 +170751935234,225,0 +170751935283,225,0 +170751935333,225,0 +170751935381,225,0 +170751935430,217,0 +170751935478,216,0 +170751935526,216,0 +170751935574,216,0 +170751935622,217,0 +170751935670,218,0 +170751935718,218,0 +170751935766,219,0 +170751935815,219,0 +170751935863,220,0 +170751935911,221,0 +170751935959,224,0 +170751936007,225,0 +170751936055,226,0 +170751936103,225,0 +170751936151,226,0 +170751936200,225,0 +170751936250,226,0 +170751936298,225,0 +170751936346,217,0 +170751936395,216,0 +170751936445,217,0 +170751936493,218,0 +170751936542,218,0 +170751936590,219,0 +170751936638,219,0 +170751936686,221,0 +170751936734,221,0 +170751936784,222,0 +170751936833,223,0 +170751936883,224,0 +170751936931,226,0 +170751936979,225,0 +170751937026,227,0 +170751937076,227,0 +170751937125,227,0 +170751937175,226,0 +170751937223,226,0 +170751937271,217,0 +170751937320,215,0 +170751937368,216,0 +170751937416,216,0 +170751937464,217,0 +170751937512,218,0 +170751937560,219,0 +170751937610,219,0 +170751937658,220,0 +170751937707,221,0 +170751937755,222,0 +170751937803,224,0 +170751937853,223,0 +170751937902,224,0 +170751937950,226,0 +170751937998,228,0 +170751938046,226,0 +170751938096,225,0 +170751938143,225,0 +170751938191,222,0 +170751938239,215,0 +170751938287,215,0 +170751938335,215,0 +170751938383,215,0 +170751938431,215,0 +170751938480,216,0 +170751938528,217,0 +170751938576,219,0 +170751938624,220,0 +170751938674,221,0 +170751938722,221,0 +170751938769,223,0 +170751938817,223,0 +170751938865,226,0 +170751938913,225,0 +170751938961,225,0 +170751939011,224,0 +170751939059,227,0 +170751939108,225,0 +170751939156,215,0 +170751939204,215,0 +170751939252,216,0 +170751939300,216,0 +170751939348,216,0 +170751939396,216,0 +170751939444,217,0 +170751939492,218,0 +170751939540,217,0 +170751939588,219,0 +170751939636,220,0 +170751939683,222,0 +170751939731,224,0 +170751939779,223,0 +170751939827,223,0 +170751939877,224,0 +170751939925,225,0 +170751939973,225,0 +170751940022,225,0 +170751940072,216,0 +170751940120,215,0 +170751940168,216,0 +170751940216,215,0 +170751940264,216,0 +170751940313,216,0 +170751940363,216,0 +170751940411,217,0 +170751940459,218,0 +170751940507,219,0 +170751940556,221,0 +170751940604,222,0 +170751940652,222,0 +170751940700,223,0 +170751940748,223,0 +170751940796,225,0 +170751940844,225,0 +170751940892,226,0 +170751940940,225,0 +170751940989,217,0 +170751941037,215,0 +170751941085,215,0 +170751941134,216,0 +170751941184,216,0 +170751941232,216,0 +170751941280,216,0 +170751941328,217,0 +170751941377,217,0 +170751941425,218,0 +170751941473,220,0 +170751941520,220,0 +170751941568,221,0 +170751941616,223,0 +170751941664,223,0 +170751941712,223,0 +170751941760,224,0 +170751941808,227,0 +170751941856,225,0 +170751941903,220,0 +170751941951,215,0 +170751941999,215,0 +170751942049,215,0 +170751942097,216,0 +170751942144,216,0 +170751942192,216,0 +170751942240,216,0 +170751942288,217,0 +170751942338,218,0 +170751942385,219,0 +170751942433,219,0 +170751942481,220,0 +170751942529,222,0 +170751942577,222,0 +170751942625,224,0 +170751942673,223,0 +170751942721,225,0 +170751942769,225,0 +170751942817,222,0 +170751942865,215,0 +170751942914,216,0 +170751942962,216,0 +170751943010,217,0 +170751943058,218,0 +170751943107,219,0 +170751943157,219,0 +170751943205,220,0 +170751943253,222,0 +170751943303,221,0 +170751943350,222,0 +170751943398,223,0 +170751943448,224,0 +170751943497,224,0 +170751943545,224,0 +170751943593,225,0 +170751943641,225,0 +170751943691,225,0 +170751943739,223,0 +170751943788,218,0 +170751943836,219,0 +170751943884,220,0 +170751943933,221,0 +170751943983,222,0 +170751944031,223,0 +170751944079,223,0 +170751944126,225,0 +170751944176,224,0 +170751944224,224,0 +170751944272,225,0 +170751944320,225,0 +170751944368,225,0 +170751944416,226,0 +170751944465,227,0 +170751944514,226,0 +170751944564,226,0 +170751944612,225,0 +170751944660,224,0 +170751944708,218,0 +170751944755,218,0 +170751944803,219,0 +170751944851,221,0 +170751944899,221,0 +170751944947,222,0 +170751944995,222,0 +170751945043,223,0 +170751945091,225,0 +170751945139,224,0 +170751945187,225,0 +170751945235,227,0 +170751945284,226,0 +170751945332,226,0 +170751945380,226,0 +170751945428,226,0 +170751945476,226,0 +170751945526,232,0 +170751945573,225,0 +170751945621,217,0 +170751945669,216,0 +170751945717,217,0 +170751945765,219,0 +170751945815,219,0 +170751945863,220,0 +170751945911,221,0 +170751945959,222,0 +170751946006,222,0 +170751946054,224,0 +170751946102,223,0 +170751946150,226,0 +170751946198,226,0 +170751946246,225,0 +170751946294,226,0 +170751946342,225,0 +170751946390,227,0 +170751946438,231,0 +170751946487,225,0 +170751946537,217,0 +170751946585,215,0 +170751946633,216,0 +170751946682,217,0 +170751946730,218,0 +170751946780,219,0 +170751946829,219,0 +170751946879,219,0 +170751946927,221,0 +170751946975,221,0 +170751947023,221,0 +170751947071,222,0 +170751947120,223,0 +170751947170,224,0 +170751947219,224,0 +170751947269,224,0 +170751947318,224,0 +170751947366,225,0 +170751947416,225,0 +170751947465,217,0 +170751947513,216,0 +170751947561,216,0 +170751947611,217,0 +170751947660,218,0 +170751947708,218,0 +170751947756,219,0 +170751947804,219,0 +170751947854,220,0 +170751947903,222,0 +170751947953,222,0 +170751948001,223,0 +170751948049,225,0 +170751948098,225,0 +170751948148,224,0 +170751948196,225,0 +170751948244,225,0 +170751948291,226,0 +170751948339,226,0 +170751948389,221,0 +170751948437,218,0 +170751948487,218,0 +170751948536,219,0 +170751948584,222,0 +170751948634,222,0 +170751948682,222,0 +170751948729,222,0 +170751948779,223,0 +170751948829,223,0 +170751948878,224,0 +170751948928,225,0 +170751948977,225,0 +170751949027,226,0 +170751949076,225,0 +170751949124,230,0 +170751949172,226,0 +170751949220,228,0 +170751949268,225,0 +170751949316,217,0 +170751949364,215,0 +170751949412,217,0 +170751949460,217,0 +170751949508,218,0 +170751949557,220,0 +170751949605,220,0 +170751949653,222,0 +170751949703,221,0 +170751949752,224,0 +170751949800,223,0 +170751949850,225,0 +170751949898,224,0 +170751949947,225,0 +170751949997,225,0 +170751950046,225,0 +170751950094,226,0 +170751950142,228,0 +170751950190,225,0 +170751950238,217,0 +170751950287,216,0 +170751950335,216,0 +170751950385,217,0 +170751950433,217,0 +170751950481,219,0 +170751950530,220,0 +170751950578,220,0 +170751950626,221,0 +170751950674,222,0 +170751950724,224,0 +170751950772,224,0 +170751950819,225,0 +170751950867,225,0 +170751950915,225,0 +170751950963,227,0 +170751951011,226,0 +170751951060,226,0 +170751951108,226,0 +170751951156,221,0 +170751951204,215,0 +170751951252,215,0 +170751951300,216,0 +170751951348,216,0 +170751951396,217,0 +170751951445,219,0 +170751951493,219,0 +170751951541,219,0 +170751951589,220,0 +170751951637,221,0 +170751951685,221,0 +170751951733,224,0 +170751951780,223,0 +170751951828,225,0 +170751951878,225,0 +170751951927,226,0 +170751951977,225,0 +170751952026,225,0 +170751952076,226,0 +170751952124,217,0 +170751952174,216,0 +170751952222,216,0 +170751952269,217,0 +170751952317,218,0 +170751952367,219,0 +170751952417,219,0 +170751952466,220,0 +170751952514,220,0 +170751952562,222,0 +170751952610,223,0 +170751952658,223,0 +170751952707,225,0 +170751952755,224,0 +170751952803,224,0 +170751952851,226,0 +170751952900,226,0 +170751952948,227,0 +170751952996,225,0 +170751953044,217,0 +170751953092,215,0 +170751953140,215,0 +170751953188,216,0 +170751953237,217,0 +170751953285,219,0 +170751953333,220,0 +170751953383,220,0 +170751953432,221,0 +170751953482,221,0 +170751953531,222,0 +170751953581,223,0 +170751953630,221,0 +170751953680,224,0 +170751953728,224,0 +170751953776,225,0 +170751953825,225,0 +170751953873,226,0 +170751953923,225,0 +170751953971,216,0 +170751954020,215,0 +170751954068,215,0 +170751954116,216,0 +170751954164,216,0 +170751954212,217,0 +170751954261,218,0 +170751954311,218,0 +170751954359,220,0 +170751954407,221,0 +170751954455,219,0 +170751954503,222,0 +170751954551,222,0 +170751954599,222,0 +170751954648,223,0 +170751954698,224,0 +170751954746,224,0 +170751954794,225,0 +170751954842,224,0 +170751954890,217,0 +170751954939,215,0 +170751954987,216,0 +170751955037,216,0 +170751955086,216,0 +170751955134,217,0 +170751955182,216,0 +170751955230,217,0 +170751955280,217,0 +170751955330,217,0 +170751955378,218,0 +170751955425,219,0 +170751955473,219,0 +170751955523,221,0 +170751955572,222,0 +170751955620,221,0 +170751955668,222,0 +170751955716,223,0 +170751955764,225,0 +170751955812,217,0 +170751955862,216,0 +170751955910,216,0 +170751955958,217,0 +170751956006,216,0 +170751956054,216,0 +170751956103,217,0 +170751956153,217,0 +170751956203,219,0 +170751956250,220,0 +170751956300,220,0 +170751956350,222,0 +170751956398,222,0 +170751956446,224,0 +170751956493,224,0 +170751956541,224,0 +170751956589,225,0 +170751956637,224,0 +170751956687,226,0 +170751956736,216,0 +170751956786,215,0 +170751956834,216,0 +170751956882,217,0 +170751956930,218,0 +170751956978,218,0 +170751957026,219,0 +170751957075,219,0 +170751957123,220,0 +170751957171,221,0 +170751957221,222,0 +170751957269,223,0 +170751957317,224,0 +170751957365,225,0 +170751957413,224,0 +170751957461,225,0 +170751957509,225,0 +170751957558,224,0 +170751957608,226,0 +170751957657,217,0 +170751957707,219,0 +170751957755,219,0 +170751957804,220,0 +170751957852,221,0 +170751957902,224,0 +170751957950,223,0 +170751957999,224,0 +170751958047,225,0 +170751958095,223,0 +170751958143,226,0 +170751958193,227,0 +170751958241,227,0 +170751958289,226,0 +170751958338,226,0 +170751958386,226,0 +170751958436,226,0 +170751958485,226,0 +170751958533,226,0 +170751958583,217,0 +170751958632,217,0 +170751958682,218,0 +170751958731,219,0 +170751958781,221,0 +170751958831,222,0 +170751958879,222,0 +170751958926,224,0 +170751958976,223,0 +170751959024,225,0 +170751959073,224,0 +170751959121,227,0 +170751959169,226,0 +170751959219,226,0 +170751959268,227,0 +170751959318,227,0 +170751959366,226,0 +170751959415,226,0 +170751959463,225,0 +170751959513,218,0 +170751959561,217,0 +170751959609,218,0 +170751959658,219,0 +170751959706,220,0 +170751959756,221,0 +170751959804,221,0 +170751959853,223,0 +170751959903,222,0 +170751959951,224,0 +170751960000,229,0 diff --git a/laser_value/0210-09.csv b/laser_value/0210-09.csv new file mode 100644 index 0000000..867ed14 --- /dev/null +++ b/laser_value/0210-09.csv @@ -0,0 +1,7419 @@ +timestamp,laser_value,event +170751960049,226,0 +170751960097,227,0 +170751960146,227,0 +170751960194,226,0 +170751960244,227,0 +170751960292,225,0 +170751960341,226,0 +170751960391,227,0 +170751960439,217,0 +170751960486,215,0 +170751960534,215,0 +170751960582,217,0 +170751960630,218,0 +170751960678,219,0 +170751960726,219,0 +170751960774,219,0 +170751960822,221,0 +170751960870,221,0 +170751960918,222,0 +170751960965,224,0 +170751961013,224,0 +170751961061,225,0 +170751961109,226,0 +170751961157,225,0 +170751961206,226,0 +170751961254,226,0 +170751961302,226,0 +170751961350,217,0 +170751961398,215,0 +170751961446,215,0 +170751961494,216,0 +170751961542,216,0 +170751961589,216,0 +170751961637,217,0 +170751961685,218,0 +170751961733,220,0 +170751961781,221,0 +170751961829,221,0 +170751961877,222,0 +170751961925,222,0 +170751961972,225,0 +170751962020,224,0 +170751962070,226,0 +170751962119,226,0 +170751962169,227,0 +170751962218,227,0 +170751962266,225,0 +170751962314,215,0 +170751962362,215,0 +170751962410,216,0 +170751962458,216,0 +170751962505,216,0 +170751962553,216,0 +170751962601,218,0 +170751962649,218,0 +170751962697,220,0 +170751962745,221,0 +170751962793,221,0 +170751962841,222,0 +170751962888,223,0 +170751962936,224,0 +170751962986,225,0 +170751963035,225,0 +170751963083,226,0 +170751963133,226,0 +170751963181,225,0 +170751963229,216,0 +170751963276,215,0 +170751963324,215,0 +170751963374,214,0 +170751963423,215,0 +170751963473,216,0 +170751963521,217,0 +170751963570,219,0 +170751963618,219,0 +170751963666,219,0 +170751963714,222,0 +170751963762,222,0 +170751963811,223,0 +170751963859,223,0 +170751963907,224,0 +170751963957,227,0 +170751964005,224,0 +170751964054,226,0 +170751964102,226,0 +170751964150,217,0 +170751964198,215,0 +170751964248,215,0 +170751964297,216,0 +170751964345,217,0 +170751964393,218,0 +170751964443,219,0 +170751964492,219,0 +170751964540,221,0 +170751964588,221,0 +170751964636,223,0 +170751964684,223,0 +170751964732,224,0 +170751964780,225,0 +170751964830,225,0 +170751964878,225,0 +170751964927,224,0 +170751964977,225,0 +170751965025,225,0 +170751965073,217,0 +170751965122,216,0 +170751965170,216,0 +170751965218,217,0 +170751965266,218,0 +170751965316,219,0 +170751965364,220,0 +170751965413,221,0 +170751965461,222,0 +170751965511,223,0 +170751965560,224,0 +170751965608,224,0 +170751965656,224,0 +170751965704,226,0 +170751965754,225,0 +170751965803,224,0 +170751965851,226,0 +170751965899,235,0 +170751965948,225,0 +170751965998,218,0 +170751966046,217,0 +170751966095,217,0 +170751966145,219,0 +170751966193,220,0 +170751966241,222,0 +170751966289,221,0 +170751966338,222,0 +170751966388,223,0 +170751966436,223,0 +170751966484,223,0 +170751966533,226,0 +170751966583,225,0 +170751966631,227,0 +170751966680,222,0 +170751966730,229,0 +170751966778,225,0 +170751966826,225,0 +170751966875,225,0 +170751966923,218,0 +170751966971,217,0 +170751967021,217,0 +170751967069,218,0 +170751967118,219,0 +170751967166,221,0 +170751967214,219,0 +170751967262,222,0 +170751967310,222,0 +170751967360,222,0 +170751967408,223,0 +170751967455,223,0 +170751967503,225,0 +170751967553,225,0 +170751967602,225,0 +170751967652,225,0 +170751967700,225,0 +170751967748,225,0 +170751967796,226,0 +170751967844,217,0 +170751967893,215,0 +170751967941,216,0 +170751967991,217,0 +170751968039,218,0 +170751968087,219,0 +170751968134,219,0 +170751968184,220,0 +170751968232,221,0 +170751968280,221,0 +170751968328,222,0 +170751968376,227,0 +170751968423,224,0 +170751968471,227,0 +170751968521,225,0 +170751968569,225,0 +170751968616,227,0 +170751968664,225,0 +170751968712,226,0 +170751968762,217,0 +170751968810,216,0 +170751968859,216,0 +170751968909,217,0 +170751968958,218,0 +170751969008,219,0 +170751969056,225,0 +170751969105,220,0 +170751969155,220,0 +170751969203,221,0 +170751969252,222,0 +170751969300,223,0 +170751969350,222,0 +170751969398,224,0 +170751969447,224,0 +170751969497,223,0 +170751969545,225,0 +170751969593,225,0 +170751969642,225,0 +170751969690,217,0 +170751969740,217,0 +170751969789,218,0 +170751969839,218,0 +170751969887,219,0 +170751969935,220,0 +170751969983,221,0 +170751970031,222,0 +170751970079,222,0 +170751970127,223,0 +170751970175,224,0 +170751970224,223,0 +170751970272,226,0 +170751970320,225,0 +170751970368,225,0 +170751970417,225,0 +170751970466,226,0 +170751970513,226,0 +170751970561,226,0 +170751970609,217,0 +170751970657,218,0 +170751970707,219,0 +170751970755,219,0 +170751970804,220,0 +170751970854,221,0 +170751970901,224,0 +170751970949,223,0 +170751970997,223,0 +170751971045,224,0 +170751971093,225,0 +170751971141,226,0 +170751971190,228,0 +170751971238,229,0 +170751971286,227,0 +170751971336,227,0 +170751971384,226,0 +170751971433,227,0 +170751971481,226,0 +170751971531,224,0 +170751971579,216,0 +170751971628,216,0 +170751971678,217,0 +170751971726,219,0 +170751971774,220,0 +170751971822,220,0 +170751971870,221,0 +170751971918,221,0 +170751971966,222,0 +170751972014,224,0 +170751972061,225,0 +170751972111,225,0 +170751972160,226,0 +170751972208,225,0 +170751972258,226,0 +170751972308,228,0 +170751972355,228,0 +170751972405,227,0 +170751972455,224,0 +170751972503,216,0 +170751972551,216,0 +170751972600,217,0 +170751972648,218,0 +170751972698,219,0 +170751972746,219,0 +170751972794,219,0 +170751972843,220,0 +170751972893,221,0 +170751972941,222,0 +170751972988,223,0 +170751973038,223,0 +170751973086,225,0 +170751973135,226,0 +170751973183,226,0 +170751973231,225,0 +170751973281,226,0 +170751973330,226,0 +170751973380,225,0 +170751973428,216,0 +170751973477,217,0 +170751973525,218,0 +170751973575,219,0 +170751973623,219,0 +170751973671,220,0 +170751973719,219,0 +170751973767,222,0 +170751973815,223,0 +170751973863,224,0 +170751973911,223,0 +170751973960,224,0 +170751974008,225,0 +170751974056,225,0 +170751974104,227,0 +170751974153,225,0 +170751974203,227,0 +170751974251,225,0 +170751974300,224,0 +170751974350,216,0 +170751974397,217,0 +170751974445,218,0 +170751974493,220,0 +170751974541,220,0 +170751974589,221,0 +170751974637,222,0 +170751974685,222,0 +170751974733,223,0 +170751974781,226,0 +170751974828,224,0 +170751974876,225,0 +170751974924,226,0 +170751974972,227,0 +170751975020,226,0 +170751975070,225,0 +170751975118,226,0 +170751975167,226,0 +170751975215,225,0 +170751975263,217,0 +170751975313,215,0 +170751975362,215,0 +170751975410,217,0 +170751975458,220,0 +170751975506,218,0 +170751975554,219,0 +170751975602,220,0 +170751975649,222,0 +170751975697,222,0 +170751975745,223,0 +170751975793,224,0 +170751975841,225,0 +170751975889,226,0 +170751975937,225,0 +170751975987,226,0 +170751976036,226,0 +170751976086,226,0 +170751976135,225,0 +170751976183,217,0 +170751976231,215,0 +170751976280,216,0 +170751976330,215,0 +170751976379,216,0 +170751976427,216,0 +170751976475,217,0 +170751976525,219,0 +170751976574,220,0 +170751976622,221,0 +170751976670,221,0 +170751976718,222,0 +170751976766,222,0 +170751976814,223,0 +170751976862,226,0 +170751976911,225,0 +170751976959,224,0 +170751977009,225,0 +170751977057,228,0 +170751977105,218,0 +170751977154,216,0 +170751977204,216,0 +170751977253,216,0 +170751977303,216,0 +170751977351,217,0 +170751977400,218,0 +170751977450,220,0 +170751977499,215,0 +170751977547,221,0 +170751977595,222,0 +170751977645,222,0 +170751977693,224,0 +170751977741,224,0 +170751977790,227,0 +170751977838,227,0 +170751977888,227,0 +170751977936,225,0 +170751977984,225,0 +170751978032,217,0 +170751978080,215,0 +170751978129,216,0 +170751978179,216,0 +170751978228,218,0 +170751978278,219,0 +170751978326,220,0 +170751978374,220,0 +170751978422,221,0 +170751978470,222,0 +170751978519,223,0 +170751978567,224,0 +170751978617,225,0 +170751978665,226,0 +170751978713,226,0 +170751978762,226,0 +170751978810,226,0 +170751978858,227,0 +170751978908,226,0 +170751978957,217,0 +170751979005,215,0 +170751979054,215,0 +170751979104,215,0 +170751979152,217,0 +170751979200,217,0 +170751979248,217,0 +170751979297,218,0 +170751979347,220,0 +170751979395,220,0 +170751979443,221,0 +170751979491,222,0 +170751979539,225,0 +170751979588,222,0 +170751979636,225,0 +170751979686,225,0 +170751979735,225,0 +170751979785,225,0 +170751979834,226,0 +170751979882,217,0 +170751979932,215,0 +170751979980,215,0 +170751980028,215,0 +170751980076,216,0 +170751980125,216,0 +170751980175,216,0 +170751980223,217,0 +170751980270,218,0 +170751980318,220,0 +170751980366,221,0 +170751980414,222,0 +170751980462,223,0 +170751980510,223,0 +170751980558,225,0 +170751980606,226,0 +170751980654,225,0 +170751980702,225,0 +170751980750,225,0 +170751980798,217,0 +170751980846,215,0 +170751980894,216,0 +170751980942,216,0 +170751980992,216,0 +170751981040,216,0 +170751981088,216,0 +170751981136,217,0 +170751981185,218,0 +170751981235,218,0 +170751981283,220,0 +170751981331,222,0 +170751981379,222,0 +170751981427,225,0 +170751981476,223,0 +170751981526,224,0 +170751981574,225,0 +170751981623,225,0 +170751981673,226,0 +170751981722,217,0 +170751981770,216,0 +170751981818,216,0 +170751981868,216,0 +170751981917,216,0 +170751981965,217,0 +170751982015,217,0 +170751982064,218,0 +170751982114,219,0 +170751982162,220,0 +170751982211,222,0 +170751982259,222,0 +170751982309,223,0 +170751982359,224,0 +170751982408,225,0 +170751982456,226,0 +170751982504,225,0 +170751982552,226,0 +170751982601,225,0 +170751982649,217,0 +170751982697,215,0 +170751982747,216,0 +170751982795,216,0 +170751982843,216,0 +170751982891,216,0 +170751982939,217,0 +170751982987,217,0 +170751983036,219,0 +170751983084,221,0 +170751983134,220,0 +170751983183,222,0 +170751983233,222,0 +170751983282,224,0 +170751983330,225,0 +170751983380,225,0 +170751983428,225,0 +170751983475,227,0 +170751983523,225,0 +170751983571,224,0 +170751983619,215,0 +170751983667,215,0 +170751983715,216,0 +170751983763,217,0 +170751983811,217,0 +170751983861,218,0 +170751983910,219,0 +170751983960,218,0 +170751984008,220,0 +170751984056,221,0 +170751984105,223,0 +170751984153,224,0 +170751984203,225,0 +170751984252,224,0 +170751984300,225,0 +170751984348,225,0 +170751984398,227,0 +170751984446,225,0 +170751984494,225,0 +170751984542,215,0 +170751984591,216,0 +170751984639,215,0 +170751984689,216,0 +170751984738,218,0 +170751984786,218,0 +170751984834,219,0 +170751984884,220,0 +170751984933,220,0 +170751984981,221,0 +170751985031,222,0 +170751985080,223,0 +170751985128,225,0 +170751985178,225,0 +170751985227,227,0 +170751985275,228,0 +170751985325,227,0 +170751985374,226,0 +170751985424,217,0 +170751985472,216,0 +170751985521,216,0 +170751985571,216,0 +170751985620,216,0 +170751985668,218,0 +170751985716,217,0 +170751985764,218,0 +170751985814,219,0 +170751985863,220,0 +170751985913,222,0 +170751985962,222,0 +170751986010,223,0 +170751986058,224,0 +170751986106,224,0 +170751986156,226,0 +170751986204,225,0 +170751986252,227,0 +170751986300,227,0 +170751986348,222,0 +170751986397,215,0 +170751986445,215,0 +170751986493,216,0 +170751986541,217,0 +170751986589,218,0 +170751986637,218,0 +170751986685,220,0 +170751986735,221,0 +170751986783,222,0 +170751986831,222,0 +170751986879,225,0 +170751986926,224,0 +170751986976,224,0 +170751987025,225,0 +170751987075,225,0 +170751987125,226,0 +170751987174,227,0 +170751987222,226,0 +170751987272,225,0 +170751987320,216,0 +170751987368,217,0 +170751987417,219,0 +170751987467,219,0 +170751987515,220,0 +170751987564,221,0 +170751987612,221,0 +170751987662,223,0 +170751987710,223,0 +170751987758,223,0 +170751987807,225,0 +170751987855,226,0 +170751987905,226,0 +170751987954,225,0 +170751988002,226,0 +170751988050,227,0 +170751988098,225,0 +170751988146,225,0 +170751988195,221,0 +170751988243,216,0 +170751988293,218,0 +170751988342,219,0 +170751988390,220,0 +170751988438,221,0 +170751988486,222,0 +170751988534,221,0 +170751988582,223,0 +170751988630,224,0 +170751988680,224,0 +170751988729,223,0 +170751988777,225,0 +170751988825,224,0 +170751988873,225,0 +170751988921,226,0 +170751988969,227,0 +170751989019,226,0 +170751989068,225,0 +170751989118,218,0 +170751989166,215,0 +170751989214,216,0 +170751989262,217,0 +170751989311,218,0 +170751989359,219,0 +170751989407,220,0 +170751989455,221,0 +170751989505,222,0 +170751989553,222,0 +170751989603,224,0 +170751989650,224,0 +170751989698,225,0 +170751989746,224,0 +170751989794,225,0 +170751989844,225,0 +170751989893,225,0 +170751989943,226,0 +170751989993,227,0 +170751990040,225,0 +170751990090,217,0 +170751990140,217,0 +170751990189,218,0 +170751990237,219,0 +170751990285,220,0 +170751990333,220,0 +170751990383,221,0 +170751990432,222,0 +170751990482,222,0 +170751990530,222,0 +170751990578,224,0 +170751990626,224,0 +170751990675,224,0 +170751990725,226,0 +170751990773,226,0 +170751990822,226,0 +170751990870,224,0 +170751990918,227,0 +170751990966,224,0 +170751991016,216,0 +170751991064,217,0 +170751991113,217,0 +170751991161,220,0 +170751991211,220,0 +170751991259,220,0 +170751991308,220,0 +170751991358,222,0 +170751991407,222,0 +170751991457,224,0 +170751991505,224,0 +170751991554,224,0 +170751991602,226,0 +170751991652,225,0 +170751991700,226,0 +170751991748,226,0 +170751991796,225,0 +170751991844,225,0 +170751991892,225,0 +170751991941,216,0 +170751991991,217,0 +170751992040,219,0 +170751992090,219,0 +170751992138,220,0 +170751992186,221,0 +170751992235,222,0 +170751992285,223,0 +170751992333,224,0 +170751992382,225,0 +170751992432,224,0 +170751992481,225,0 +170751992529,225,0 +170751992577,223,0 +170751992625,226,0 +170751992675,226,0 +170751992722,225,0 +170751992770,225,0 +170751992818,225,0 +170751992868,217,0 +170751992917,218,0 +170751992967,219,0 +170751993016,220,0 +170751993064,221,0 +170751993114,221,0 +170751993162,223,0 +170751993211,223,0 +170751993261,223,0 +170751993309,224,0 +170751993359,225,0 +170751993408,225,0 +170751993456,225,0 +170751993506,226,0 +170751993555,225,0 +170751993603,226,0 +170751993653,225,0 +170751993702,226,0 +170751993750,223,0 +170751993800,216,0 +170751993847,216,0 +170751993895,218,0 +170751993943,218,0 +170751993991,218,0 +170751994039,220,0 +170751994089,221,0 +170751994137,222,0 +170751994185,223,0 +170751994234,222,0 +170751994282,225,0 +170751994332,225,0 +170751994381,225,0 +170751994429,226,0 +170751994479,225,0 +170751994527,225,0 +170751994576,225,0 +170751994624,225,0 +170751994673,219,0 +170751994723,215,0 +170751994771,216,0 +170751994820,216,0 +170751994870,218,0 +170751994920,219,0 +170751994969,220,0 +170751995017,220,0 +170751995067,220,0 +170751995115,220,0 +170751995164,221,0 +170751995212,222,0 +170751995260,224,0 +170751995310,224,0 +170751995359,225,0 +170751995407,225,0 +170751995455,225,0 +170751995504,225,0 +170751995554,225,0 +170751995602,217,0 +170751995650,215,0 +170751995698,216,0 +170751995746,218,0 +170751995794,218,0 +170751995843,219,0 +170751995893,221,0 +170751995942,221,0 +170751995990,220,0 +170751996038,223,0 +170751996086,224,0 +170751996135,223,0 +170751996185,225,0 +170751996233,226,0 +170751996283,227,0 +170751996332,226,0 +170751996382,227,0 +170751996431,226,0 +170751996479,225,0 +170751996529,224,0 +170751996578,215,0 +170751996628,216,0 +170751996675,216,0 +170751996723,216,0 +170751996773,217,0 +170751996821,218,0 +170751996871,218,0 +170751996918,215,0 +170751996966,219,0 +170751997014,220,0 +170751997064,221,0 +170751997113,222,0 +170751997161,224,0 +170751997209,224,0 +170751997257,224,0 +170751997305,225,0 +170751997355,226,0 +170751997404,225,0 +170751997454,224,0 +170751997502,215,0 +170751997550,215,0 +170751997599,215,0 +170751997647,215,0 +170751997695,216,0 +170751997743,216,0 +170751997793,217,0 +170751997842,217,0 +170751997890,217,0 +170751997940,218,0 +170751997987,219,0 +170751998035,221,0 +170751998083,222,0 +170751998131,223,0 +170751998181,224,0 +170751998230,224,0 +170751998280,226,0 +170751998328,225,0 +170751998376,223,0 +170751998424,215,0 +170751998473,215,0 +170751998523,216,0 +170751998571,216,0 +170751998620,216,0 +170751998670,216,0 +170751998718,217,0 +170751998766,216,0 +170751998814,217,0 +170751998862,217,0 +170751998911,218,0 +170751998961,218,0 +170751999009,218,0 +170751999057,219,0 +170751999105,221,0 +170751999153,221,0 +170751999201,222,0 +170751999249,222,0 +170751999298,223,0 +170751999348,224,0 +170751999395,226,0 +170751999443,226,0 +170751999491,227,0 +170751999541,226,0 +170751999590,230,0 +170751999638,227,0 +170751999688,225,0 +170751999738,226,0 +170751999785,217,0 +170751999835,215,0 +170751999885,216,0 +170751999934,215,0 +170751999982,217,0 +170752000030,218,0 +170752000078,218,0 +170752000126,219,0 +170752000175,221,0 +170752000225,223,0 +170752000273,222,0 +170752000321,223,0 +170752000370,224,0 +170752000418,224,0 +170752000466,228,0 +170752000516,227,0 +170752000564,226,0 +170752000613,226,0 +170752000661,226,0 +170752000709,217,0 +170752000757,215,0 +170752000805,216,0 +170752000853,216,0 +170752000901,216,0 +170752000949,217,0 +170752000998,218,0 +170752001046,219,0 +170752001094,220,0 +170752001142,220,0 +170752001190,222,0 +170752001240,222,0 +170752001289,224,0 +170752001339,224,0 +170752001387,225,0 +170752001435,225,0 +170752001483,225,0 +170752001531,226,0 +170752001579,225,0 +170752001628,217,0 +170752001676,215,0 +170752001726,215,0 +170752001775,216,0 +170752001825,217,0 +170752001874,217,0 +170752001924,219,0 +170752001972,219,0 +170752002020,220,0 +170752002068,222,0 +170752002116,223,0 +170752002165,223,0 +170752002215,224,0 +170752002264,224,0 +170752002314,226,0 +170752002362,225,0 +170752002411,226,0 +170752002461,226,0 +170752002509,226,0 +170752002557,217,0 +170752002606,216,0 +170752002654,216,0 +170752002702,217,0 +170752002750,218,0 +170752002800,218,0 +170752002849,219,0 +170752002897,219,0 +170752002945,220,0 +170752002993,221,0 +170752003043,223,0 +170752003091,222,0 +170752003140,223,0 +170752003188,225,0 +170752003238,226,0 +170752003286,226,0 +170752003334,226,0 +170752003383,225,0 +170752003433,225,0 +170752003481,217,0 +170752003530,215,0 +170752003578,216,0 +170752003628,216,0 +170752003675,217,0 +170752003723,219,0 +170752003773,218,0 +170752003821,220,0 +170752003870,220,0 +170752003918,221,0 +170752003966,223,0 +170752004014,225,0 +170752004062,235,0 +170752004110,225,0 +170752004158,226,0 +170752004206,227,0 +170752004256,226,0 +170752004305,226,0 +170752004353,225,0 +170752004401,216,0 +170752004449,215,0 +170752004498,215,0 +170752004548,215,0 +170752004596,216,0 +170752004644,217,0 +170752004692,218,0 +170752004741,220,0 +170752004791,221,0 +170752004839,223,0 +170752004888,221,0 +170752004936,224,0 +170752004984,225,0 +170752005032,224,0 +170752005080,226,0 +170752005128,226,0 +170752005176,226,0 +170752005226,227,0 +170752005275,225,0 +170752005325,217,0 +170752005372,215,0 +170752005422,215,0 +170752005470,215,0 +170752005518,216,0 +170752005566,216,0 +170752005615,219,0 +170752005663,219,0 +170752005711,219,0 +170752005761,220,0 +170752005809,222,0 +170752005857,222,0 +170752005906,222,0 +170752005954,223,0 +170752006002,225,0 +170752006050,225,0 +170752006098,224,0 +170752006148,224,0 +170752006196,226,0 +170752006244,217,0 +170752006293,215,0 +170752006343,218,0 +170752006392,215,0 +170752006440,216,0 +170752006488,216,0 +170752006538,216,0 +170752006586,216,0 +170752006636,216,0 +170752006684,216,0 +170752006733,217,0 +170752006781,219,0 +170752006829,220,0 +170752006877,221,0 +170752006925,222,0 +170752006975,223,0 +170752007022,224,0 +170752007070,225,0 +170752007118,225,0 +170752007168,219,0 +170752007216,215,0 +170752007265,215,0 +170752007313,216,0 +170752007363,217,0 +170752007411,216,0 +170752007459,217,0 +170752007508,217,0 +170752007556,217,0 +170752007604,219,0 +170752007652,219,0 +170752007700,220,0 +170752007748,222,0 +170752007795,223,0 +170752007843,223,0 +170752007891,223,0 +170752007939,224,0 +170752007989,224,0 +170752008038,225,0 +170752008088,222,0 +170752008136,215,0 +170752008184,216,0 +170752008232,216,0 +170752008279,217,0 +170752008327,218,0 +170752008377,219,0 +170752008426,220,0 +170752008474,221,0 +170752008524,222,0 +170752008573,222,0 +170752008621,224,0 +170752008671,224,0 +170752008719,225,0 +170752008767,225,0 +170752008814,226,0 +170752008862,226,0 +170752008910,226,0 +170752008958,225,0 +170752009008,224,0 +170752009055,217,0 +170752009103,217,0 +170752009151,219,0 +170752009199,219,0 +170752009247,220,0 +170752009295,220,0 +170752009343,222,0 +170752009391,222,0 +170752009439,223,0 +170752009487,223,0 +170752009535,225,0 +170752009583,225,0 +170752009633,225,0 +170752009681,225,0 +170752009730,227,0 +170752009778,228,0 +170752009826,227,0 +170752009874,226,0 +170752009924,225,0 +170752009973,218,0 +170752010021,217,0 +170752010071,218,0 +170752010120,220,0 +170752010170,221,0 +170752010219,221,0 +170752010269,222,0 +170752010318,222,0 +170752010366,222,0 +170752010416,223,0 +170752010464,224,0 +170752010512,225,0 +170752010561,226,0 +170752010611,225,0 +170752010659,225,0 +170752010708,226,0 +170752010756,226,0 +170752010806,226,0 +170752010854,225,0 +170752010902,217,0 +170752010951,217,0 +170752010999,217,0 +170752011047,219,0 +170752011095,219,0 +170752011143,219,0 +170752011191,220,0 +170752011240,221,0 +170752011290,222,0 +170752011338,222,0 +170752011386,224,0 +170752011434,224,0 +170752011483,225,0 +170752011531,225,0 +170752011579,226,0 +170752011627,226,0 +170752011675,226,0 +170752011724,226,0 +170752011772,225,0 +170752011822,218,0 +170752011870,217,0 +170752011918,218,0 +170752011965,219,0 +170752012013,219,0 +170752012061,219,0 +170752012109,220,0 +170752012157,221,0 +170752012205,222,0 +170752012253,222,0 +170752012301,224,0 +170752012348,225,0 +170752012398,224,0 +170752012446,225,0 +170752012494,225,0 +170752012542,226,0 +170752012591,227,0 +170752012641,226,0 +170752012690,225,0 +170752012740,219,0 +170752012788,218,0 +170752012836,219,0 +170752012885,220,0 +170752012935,221,0 +170752012985,220,0 +170752013034,221,0 +170752013084,223,0 +170752013132,224,0 +170752013179,225,0 +170752013227,224,0 +170752013275,225,0 +170752013323,225,0 +170752013373,227,0 +170752013420,226,0 +170752013468,226,0 +170752013518,224,0 +170752013566,226,0 +170752013615,225,0 +170752013665,219,0 +170752013714,218,0 +170752013762,219,0 +170752013810,220,0 +170752013858,221,0 +170752013907,222,0 +170752013955,222,0 +170752014003,223,0 +170752014051,224,0 +170752014099,225,0 +170752014149,225,0 +170752014198,227,0 +170752014248,227,0 +170752014297,227,0 +170752014347,226,0 +170752014395,226,0 +170752014443,226,0 +170752014492,231,0 +170752014542,225,0 +170752014590,217,0 +170752014638,216,0 +170752014686,217,0 +170752014734,217,0 +170752014782,219,0 +170752014830,219,0 +170752014878,219,0 +170752014926,220,0 +170752014975,221,0 +170752015025,222,0 +170752015074,223,0 +170752015122,223,0 +170752015172,224,0 +170752015220,226,0 +170752015269,224,0 +170752015317,227,0 +170752015367,227,0 +170752015416,227,0 +170752015466,225,0 +170752015515,218,0 +170752015563,215,0 +170752015611,216,0 +170752015661,217,0 +170752015709,218,0 +170752015758,218,0 +170752015806,218,0 +170752015856,219,0 +170752015905,221,0 +170752015953,221,0 +170752016003,221,0 +170752016052,225,0 +170752016102,224,0 +170752016152,225,0 +170752016200,226,0 +170752016249,227,0 +170752016297,226,0 +170752016345,227,0 +170752016393,225,0 +170752016441,217,0 +170752016490,215,0 +170752016538,216,0 +170752016588,217,0 +170752016637,218,0 +170752016685,219,0 +170752016733,220,0 +170752016781,220,0 +170752016829,221,0 +170752016877,221,0 +170752016925,221,0 +170752016973,224,0 +170752017022,223,0 +170752017072,223,0 +170752017120,226,0 +170752017169,225,0 +170752017217,225,0 +170752017265,226,0 +170752017313,224,0 +170752017363,223,0 +170752017411,216,0 +170752017459,217,0 +170752017509,218,0 +170752017558,220,0 +170752017606,219,0 +170752017654,220,0 +170752017702,222,0 +170752017750,222,0 +170752017798,223,0 +170752017846,223,0 +170752017894,224,0 +170752017943,226,0 +170752017991,226,0 +170752018041,225,0 +170752018090,225,0 +170752018138,228,0 +170752018188,227,0 +170752018237,226,0 +170752018287,221,0 +170752018335,216,0 +170752018385,217,0 +170752018433,217,0 +170752018482,218,0 +170752018532,218,0 +170752018580,220,0 +170752018628,222,0 +170752018677,224,0 +170752018727,223,0 +170752018776,222,0 +170752018826,223,0 +170752018874,225,0 +170752018923,225,0 +170752018971,226,0 +170752019021,226,0 +170752019070,227,0 +170752019120,227,0 +170752019168,226,0 +170752019217,225,0 +170752019265,215,0 +170752019315,215,0 +170752019364,216,0 +170752019412,217,0 +170752019460,217,0 +170752019510,219,0 +170752019558,220,0 +170752019606,220,0 +170752019654,221,0 +170752019703,224,0 +170752019751,225,0 +170752019801,223,0 +170752019849,225,0 +170752019897,226,0 +170752019946,226,0 +170752019996,226,0 +170752020045,226,0 +170752020093,225,0 +170752020141,223,0 +170752020189,215,0 +170752020239,215,0 +170752020287,216,0 +170752020336,217,0 +170752020386,218,0 +170752020435,219,0 +170752020485,220,0 +170752020534,221,0 +170752020582,220,0 +170752020630,223,0 +170752020678,223,0 +170752020728,225,0 +170752020776,224,0 +170752020824,226,0 +170752020872,225,0 +170752020920,226,0 +170752020969,225,0 +170752021017,225,0 +170752021065,224,0 +170752021113,215,0 +170752021162,216,0 +170752021212,216,0 +170752021260,217,0 +170752021309,219,0 +170752021357,219,0 +170752021405,220,0 +170752021455,220,0 +170752021505,222,0 +170752021554,223,0 +170752021602,223,0 +170752021652,224,0 +170752021700,224,0 +170752021747,225,0 +170752021795,226,0 +170752021845,225,0 +170752021895,226,0 +170752021942,226,0 +170752021990,222,0 +170752022038,215,0 +170752022086,215,0 +170752022136,216,0 +170752022184,217,0 +170752022232,217,0 +170752022280,219,0 +170752022328,219,0 +170752022376,220,0 +170752022424,220,0 +170752022473,221,0 +170752022521,222,0 +170752022571,223,0 +170752022620,224,0 +170752022670,224,0 +170752022719,224,0 +170752022769,224,0 +170752022818,225,0 +170752022868,226,0 +170752022916,225,0 +170752022964,216,0 +170752023012,215,0 +170752023060,215,0 +170752023109,216,0 +170752023159,216,0 +170752023209,217,0 +170752023257,219,0 +170752023305,220,0 +170752023354,221,0 +170752023402,221,0 +170752023450,224,0 +170752023500,223,0 +170752023547,223,0 +170752023597,224,0 +170752023645,225,0 +170752023694,226,0 +170752023744,226,0 +170752023794,226,0 +170752023843,225,0 +170752023893,215,0 +170752023942,215,0 +170752023992,215,0 +170752024040,215,0 +170752024089,216,0 +170752024137,217,0 +170752024187,218,0 +170752024235,219,0 +170752024284,220,0 +170752024332,221,0 +170752024382,224,0 +170752024430,223,0 +170752024477,226,0 +170752024525,225,0 +170752024573,227,0 +170752024623,223,0 +170752024671,225,0 +170752024720,226,0 +170752024770,225,0 +170752024818,216,0 +170752024867,215,0 +170752024917,216,0 +170752024965,216,0 +170752025013,218,0 +170752025061,218,0 +170752025110,220,0 +170752025158,220,0 +170752025208,221,0 +170752025257,222,0 +170752025305,223,0 +170752025353,224,0 +170752025401,225,0 +170752025451,225,0 +170752025499,225,0 +170752025548,225,0 +170752025598,226,0 +170752025646,225,0 +170752025695,225,0 +170752025745,216,0 +170752025794,215,0 +170752025844,216,0 +170752025893,216,0 +170752025941,216,0 +170752025991,219,0 +170752026039,219,0 +170752026088,220,0 +170752026136,221,0 +170752026184,221,0 +170752026232,222,0 +170752026280,223,0 +170752026330,224,0 +170752026379,225,0 +170752026427,225,0 +170752026475,226,0 +170752026525,225,0 +170752026574,225,0 +170752026622,225,0 +170752026672,216,0 +170752026720,215,0 +170752026768,215,0 +170752026816,216,0 +170752026865,216,0 +170752026915,217,0 +170752026963,217,0 +170752027012,218,0 +170752027060,219,0 +170752027108,220,0 +170752027158,221,0 +170752027206,222,0 +170752027254,223,0 +170752027303,224,0 +170752027351,224,0 +170752027399,225,0 +170752027447,225,0 +170752027497,225,0 +170752027545,224,0 +170752027594,214,0 +170752027642,214,0 +170752027692,215,0 +170752027739,215,0 +170752027789,215,0 +170752027838,216,0 +170752027886,215,0 +170752027934,216,0 +170752027984,217,0 +170752028034,218,0 +170752028081,219,0 +170752028131,220,0 +170752028179,221,0 +170752028227,222,0 +170752028275,223,0 +170752028325,225,0 +170752028373,225,0 +170752028422,225,0 +170752028471,225,0 +170752028521,215,0 +170752028569,216,0 +170752028618,216,0 +170752028666,216,0 +170752028716,216,0 +170752028764,216,0 +170752028812,216,0 +170752028860,217,0 +170752028909,216,0 +170752028959,218,0 +170752029007,219,0 +170752029056,219,0 +170752029106,221,0 +170752029155,222,0 +170752029205,224,0 +170752029253,223,0 +170752029302,224,0 +170752029350,225,0 +170752029400,225,0 +170752029449,216,0 +170752029497,216,0 +170752029547,216,0 +170752029596,216,0 +170752029644,218,0 +170752029692,219,0 +170752029740,220,0 +170752029788,220,0 +170752029836,221,0 +170752029884,222,0 +170752029932,224,0 +170752029980,224,0 +170752030028,226,0 +170752030076,225,0 +170752030125,226,0 +170752030173,226,0 +170752030223,226,0 +170752030272,226,0 +170752030320,225,0 +170752030368,217,0 +170752030416,216,0 +170752030464,218,0 +170752030514,218,0 +170752030562,219,0 +170752030610,221,0 +170752030659,221,0 +170752030709,222,0 +170752030757,224,0 +170752030805,224,0 +170752030852,224,0 +170752030900,226,0 +170752030948,225,0 +170752030996,225,0 +170752031046,226,0 +170752031095,226,0 +170752031145,229,0 +170752031193,226,0 +170752031241,225,0 +170752031290,217,0 +170752031340,217,0 +170752031388,219,0 +170752031437,219,0 +170752031485,221,0 +170752031535,221,0 +170752031583,222,0 +170752031631,223,0 +170752031679,223,0 +170752031727,223,0 +170752031774,224,0 +170752031824,225,0 +170752031874,225,0 +170752031923,226,0 +170752031971,227,0 +170752032020,225,0 +170752032068,226,0 +170752032118,226,0 +170752032166,226,0 +170752032214,216,0 +170752032263,216,0 +170752032311,217,0 +170752032359,218,0 +170752032407,219,0 +170752032457,220,0 +170752032505,219,0 +170752032553,220,0 +170752032601,221,0 +170752032650,222,0 +170752032700,224,0 +170752032748,224,0 +170752032797,225,0 +170752032847,225,0 +170752032895,225,0 +170752032942,226,0 +170752032992,227,0 +170752033041,226,0 +170752033091,225,0 +170752033141,216,0 +170752033190,215,0 +170752033238,216,0 +170752033287,218,0 +170752033337,218,0 +170752033387,220,0 +170752033434,219,0 +170752033482,221,0 +170752033532,223,0 +170752033581,223,0 +170752033629,224,0 +170752033679,223,0 +170752033727,223,0 +170752033776,226,0 +170752033826,226,0 +170752033874,227,0 +170752033922,225,0 +170752033970,221,0 +170752034019,225,0 +170752034069,217,0 +170752034117,217,0 +170752034166,217,0 +170752034216,219,0 +170752034264,219,0 +170752034312,221,0 +170752034360,221,0 +170752034408,224,0 +170752034457,224,0 +170752034507,224,0 +170752034556,224,0 +170752034606,227,0 +170752034654,225,0 +170752034702,225,0 +170752034750,228,0 +170752034797,227,0 +170752034845,226,0 +170752034895,226,0 +170752034944,225,0 +170752034992,218,0 +170752035040,219,0 +170752035088,219,0 +170752035136,220,0 +170752035184,221,0 +170752035232,222,0 +170752035280,223,0 +170752035328,222,0 +170752035376,224,0 +170752035425,224,0 +170752035473,225,0 +170752035521,228,0 +170752035571,226,0 +170752035620,226,0 +170752035670,227,0 +170752035719,225,0 +170752035769,227,0 +170752035817,227,0 +170752035866,225,0 +170752035914,219,0 +170752035964,219,0 +170752036013,219,0 +170752036061,220,0 +170752036109,222,0 +170752036157,221,0 +170752036205,222,0 +170752036253,224,0 +170752036302,224,0 +170752036350,224,0 +170752036398,226,0 +170752036446,226,0 +170752036496,226,0 +170752036544,225,0 +170752036592,226,0 +170752036641,228,0 +170752036691,226,0 +170752036739,226,0 +170752036788,227,0 +170752036836,218,0 +170752036886,216,0 +170752036935,218,0 +170752036985,219,0 +170752037033,220,0 +170752037081,220,0 +170752037129,221,0 +170752037178,222,0 +170752037226,222,0 +170752037275,225,0 +170752037323,224,0 +170752037373,225,0 +170752037421,226,0 +170752037469,226,0 +170752037517,227,0 +170752037566,226,0 +170752037616,226,0 +170752037665,226,0 +170752037715,225,0 +170752037764,217,0 +170752037812,216,0 +170752037862,217,0 +170752037910,218,0 +170752037958,219,0 +170752038007,219,0 +170752038055,220,0 +170752038103,221,0 +170752038151,224,0 +170752038199,222,0 +170752038249,226,0 +170752038298,225,0 +170752038348,225,0 +170752038397,225,0 +170752038445,226,0 +170752038493,228,0 +170752038541,226,0 +170752038591,226,0 +170752038639,225,0 +170752038687,217,0 +170752038736,216,0 +170752038784,217,0 +170752038832,218,0 +170752038880,219,0 +170752038929,220,0 +170752038977,220,0 +170752039025,221,0 +170752039073,222,0 +170752039123,222,0 +170752039171,223,0 +170752039220,224,0 +170752039270,224,0 +170752039318,226,0 +170752039366,226,0 +170752039415,224,0 +170752039463,227,0 +170752039511,226,0 +170752039559,227,0 +170752039609,224,0 +170752039657,215,0 +170752039706,217,0 +170752039754,218,0 +170752039802,219,0 +170752039852,221,0 +170752039901,221,0 +170752039949,223,0 +170752039997,223,0 +170752040047,223,0 +170752040094,224,0 +170752040142,224,0 +170752040190,226,0 +170752040238,226,0 +170752040286,226,0 +170752040334,226,0 +170752040382,226,0 +170752040430,226,0 +170752040478,225,0 +170752040527,220,0 +170752040575,215,0 +170752040623,215,0 +170752040673,215,0 +170752040721,216,0 +170752040769,216,0 +170752040816,218,0 +170752040864,219,0 +170752040914,220,0 +170752040962,222,0 +170752041011,222,0 +170752041061,223,0 +170752041109,224,0 +170752041157,224,0 +170752041205,225,0 +170752041254,225,0 +170752041302,226,0 +170752041352,226,0 +170752041400,226,0 +170752041448,224,0 +170752041496,215,0 +170752041545,215,0 +170752041595,215,0 +170752041643,216,0 +170752041691,216,0 +170752041740,218,0 +170752041790,218,0 +170752041839,219,0 +170752041889,220,0 +170752041938,222,0 +170752041988,223,0 +170752042036,224,0 +170752042084,224,0 +170752042133,227,0 +170752042183,226,0 +170752042231,226,0 +170752042279,225,0 +170752042327,226,0 +170752042376,225,0 +170752042426,215,0 +170752042474,215,0 +170752042523,216,0 +170752042571,215,0 +170752042621,216,0 +170752042669,217,0 +170752042717,218,0 +170752042765,218,0 +170752042814,220,0 +170752042864,220,0 +170752042912,221,0 +170752042959,222,0 +170752043007,222,0 +170752043057,223,0 +170752043107,224,0 +170752043155,225,0 +170752043202,226,0 +170752043252,224,0 +170752043300,225,0 +170752043348,216,0 +170752043397,215,0 +170752043445,215,0 +170752043495,216,0 +170752043543,216,0 +170752043591,215,0 +170752043640,217,0 +170752043688,219,0 +170752043738,219,0 +170752043787,219,0 +170752043835,221,0 +170752043883,221,0 +170752043931,223,0 +170752043979,224,0 +170752044029,224,0 +170752044078,225,0 +170752044126,224,0 +170752044174,225,0 +170752044222,225,0 +170752044270,216,0 +170752044318,216,0 +170752044367,217,0 +170752044415,218,0 +170752044463,219,0 +170752044511,220,0 +170752044559,220,0 +170752044609,222,0 +170752044657,221,0 +170752044706,223,0 +170752044754,224,0 +170752044804,224,0 +170752044852,225,0 +170752044901,225,0 +170752044949,225,0 +170752044999,224,0 +170752045047,227,0 +170752045096,226,0 +170752045146,225,0 +170752045194,215,0 +170752045242,215,0 +170752045290,215,0 +170752045339,214,0 +170752045387,216,0 +170752045435,218,0 +170752045485,220,0 +170752045533,221,0 +170752045581,220,0 +170752045629,222,0 +170752045676,223,0 +170752045724,223,0 +170752045772,225,0 +170752045820,226,0 +170752045868,226,0 +170752045918,227,0 +170752045966,227,0 +170752046015,226,0 +170752046065,225,0 +170752046114,217,0 +170752046164,215,0 +170752046213,215,0 +170752046263,216,0 +170752046313,217,0 +170752046362,217,0 +170752046410,218,0 +170752046460,219,0 +170752046508,219,0 +170752046556,220,0 +170752046605,223,0 +170752046653,222,0 +170752046703,224,0 +170752046751,227,0 +170752046798,225,0 +170752046846,226,0 +170752046894,225,0 +170752046942,225,0 +170752046990,225,0 +170752047040,217,0 +170752047089,215,0 +170752047137,215,0 +170752047185,216,0 +170752047233,217,0 +170752047281,217,0 +170752047329,219,0 +170752047379,219,0 +170752047428,220,0 +170752047478,222,0 +170752047527,224,0 +170752047577,223,0 +170752047625,226,0 +170752047674,225,0 +170752047724,226,0 +170752047773,225,0 +170752047821,225,0 +170752047871,225,0 +170752047920,225,0 +170752047968,216,0 +170752048018,215,0 +170752048066,216,0 +170752048114,217,0 +170752048163,218,0 +170752048213,219,0 +170752048261,221,0 +170752048310,220,0 +170752048360,221,0 +170752048409,221,0 +170752048459,223,0 +170752048507,224,0 +170752048555,224,0 +170752048603,224,0 +170752048652,225,0 +170752048700,226,0 +170752048748,227,0 +170752048796,225,0 +170752048844,225,0 +170752048892,217,0 +170752048942,215,0 +170752048991,215,0 +170752049039,216,0 +170752049087,217,0 +170752049137,218,0 +170752049186,219,0 +170752049236,220,0 +170752049284,220,0 +170752049333,223,0 +170752049383,222,0 +170752049431,225,0 +170752049479,224,0 +170752049527,224,0 +170752049575,225,0 +170752049622,224,0 +170752049670,226,0 +170752049718,226,0 +170752049768,225,0 +170752049817,217,0 +170752049865,215,0 +170752049915,215,0 +170752049964,215,0 +170752050014,216,0 +170752050062,217,0 +170752050110,217,0 +170752050159,218,0 +170752050207,219,0 +170752050255,220,0 +170752050303,221,0 +170752050353,223,0 +170752050402,223,0 +170752050450,224,0 +170752050500,224,0 +170752050548,225,0 +170752050596,225,0 +170752050644,226,0 +170752050692,225,0 +170752050741,217,0 +170752050791,215,0 +170752050840,215,0 +170752050888,216,0 +170752050936,217,0 +170752050984,218,0 +170752051034,219,0 +170752051083,219,0 +170752051131,221,0 +170752051181,221,0 +170752051230,222,0 +170752051280,223,0 +170752051328,228,0 +170752051376,225,0 +170752051425,224,0 +170752051473,225,0 +170752051521,226,0 +170752051571,227,0 +170752051619,226,0 +170752051667,217,0 +170752051715,215,0 +170752051763,215,0 +170752051811,217,0 +170752051860,217,0 +170752051910,218,0 +170752051958,219,0 +170752052007,220,0 +170752052057,221,0 +170752052106,223,0 +170752052156,223,0 +170752052204,224,0 +170752052252,224,0 +170752052301,225,0 +170752052349,225,0 +170752052397,225,0 +170752052447,226,0 +170752052495,226,0 +170752052544,225,0 +170752052594,220,0 +170752052643,216,0 +170752052693,216,0 +170752052741,218,0 +170752052788,219,0 +170752052837,219,0 +170752052885,220,0 +170752052933,221,0 +170752052983,222,0 +170752053031,224,0 +170752053079,226,0 +170752053127,225,0 +170752053176,225,0 +170752053224,225,0 +170752053274,226,0 +170752053323,225,0 +170752053371,225,0 +170752053419,226,0 +170752053467,225,0 +170752053515,218,0 +170752053564,215,0 +170752053614,216,0 +170752053664,217,0 +170752053713,218,0 +170752053763,219,0 +170752053812,221,0 +170752053860,221,0 +170752053908,222,0 +170752053956,222,0 +170752054005,224,0 +170752054054,224,0 +170752054102,225,0 +170752054150,225,0 +170752054198,226,0 +170752054247,226,0 +170752054297,225,0 +170752054346,228,0 +170752054394,225,0 +170752054442,219,0 +170752054490,215,0 +170752054538,215,0 +170752054586,218,0 +170752054634,217,0 +170752054682,218,0 +170752054729,219,0 +170752054777,219,0 +170752054827,220,0 +170752054875,221,0 +170752054923,223,0 +170752054970,222,0 +170752055020,223,0 +170752055068,224,0 +170752055117,225,0 +170752055165,225,0 +170752055213,226,0 +170752055261,227,0 +170752055309,225,0 +170752055357,225,0 +170752055405,216,0 +170752055453,217,0 +170752055500,217,0 +170752055548,218,0 +170752055596,219,0 +170752055644,220,0 +170752055692,221,0 +170752055740,221,0 +170752055789,222,0 +170752055839,222,0 +170752055888,223,0 +170752055936,223,0 +170752055984,223,0 +170752056032,225,0 +170752056081,225,0 +170752056129,226,0 +170752056177,226,0 +170752056227,226,0 +170752056276,226,0 +170752056325,217,0 +170752056373,216,0 +170752056421,217,0 +170752056471,218,0 +170752056519,220,0 +170752056567,219,0 +170752056614,221,0 +170752056662,223,0 +170752056712,222,0 +170752056760,223,0 +170752056807,224,0 +170752056855,225,0 +170752056903,226,0 +170752056951,227,0 +170752056999,226,0 +170752057047,227,0 +170752057095,228,0 +170752057143,226,0 +170752057192,226,0 +170752057242,217,0 +170752057290,215,0 +170752057338,216,0 +170752057385,218,0 +170752057433,218,0 +170752057481,219,0 +170752057529,220,0 +170752057577,220,0 +170752057627,223,0 +170752057675,222,0 +170752057722,223,0 +170752057770,225,0 +170752057818,226,0 +170752057866,225,0 +170752057915,226,0 +170752057965,225,0 +170752058013,226,0 +170752058061,227,0 +170752058109,225,0 +170752058156,221,0 +170752058204,215,0 +170752058252,216,0 +170752058300,217,0 +170752058350,218,0 +170752058398,218,0 +170752058446,220,0 +170752058493,221,0 +170752058541,220,0 +170752058589,225,0 +170752058637,223,0 +170752058685,224,0 +170752058735,224,0 +170752058783,224,0 +170752058832,225,0 +170752058880,226,0 +170752058928,225,0 +170752058977,225,0 +170752059027,225,0 +170752059075,224,0 +170752059123,215,0 +170752059172,215,0 +170752059222,216,0 +170752059271,217,0 +170752059319,219,0 +170752059367,219,0 +170752059415,219,0 +170752059463,221,0 +170752059513,221,0 +170752059561,221,0 +170752059610,226,0 +170752059658,224,0 +170752059706,225,0 +170752059754,225,0 +170752059802,226,0 +170752059850,226,0 +170752059898,227,0 +170752059946,225,0 +170752059995,226,0 +170752060045,216,0 +170752060094,215,0 +170752060142,217,0 +170752060190,217,0 +170752060240,218,0 +170752060288,219,0 +170752060336,220,0 +170752060384,220,0 +170752060432,221,0 +170752060479,221,0 +170752060529,225,0 +170752060579,226,0 +170752060628,224,0 +170752060678,224,0 +170752060727,226,0 +170752060775,224,0 +170752060823,226,0 +170752060871,225,0 +170752060919,226,0 +170752060969,216,0 +170752061018,215,0 +170752061068,216,0 +170752061116,217,0 +170752061165,219,0 +170752061215,220,0 +170752061263,220,0 +170752061312,219,0 +170752061360,220,0 +170752061408,221,0 +170752061456,223,0 +170752061506,223,0 +170752061554,226,0 +170752061602,224,0 +170752061649,228,0 +170752061699,227,0 +170752061749,226,0 +170752061798,226,0 +170752061846,227,0 +170752061895,216,0 +170752061943,216,0 +170752061993,217,0 +170752062043,218,0 +170752062092,218,0 +170752062140,219,0 +170752062188,219,0 +170752062236,220,0 +170752062284,222,0 +170752062332,221,0 +170752062381,223,0 +170752062431,224,0 +170752062479,225,0 +170752062528,225,0 +170752062578,225,0 +170752062626,226,0 +170752062675,226,0 +170752062725,226,0 +170752062773,225,0 +170752062821,217,0 +170752062870,216,0 +170752062920,217,0 +170752062969,217,0 +170752063019,218,0 +170752063068,219,0 +170752063116,219,0 +170752063166,221,0 +170752063214,222,0 +170752063262,222,0 +170752063310,224,0 +170752063359,224,0 +170752063409,224,0 +170752063457,227,0 +170752063505,229,0 +170752063553,225,0 +170752063601,228,0 +170752063650,226,0 +170752063698,226,0 +170752063746,217,0 +170752063794,216,0 +170752063843,217,0 +170752063891,218,0 +170752063939,219,0 +170752063987,220,0 +170752064037,220,0 +170752064085,220,0 +170752064134,221,0 +170752064182,222,0 +170752064230,224,0 +170752064280,223,0 +170752064329,224,0 +170752064377,226,0 +170752064427,227,0 +170752064475,227,0 +170752064523,226,0 +170752064572,226,0 +170752064622,225,0 +170752064670,216,0 +170752064718,216,0 +170752064766,217,0 +170752064815,218,0 +170752064865,219,0 +170752064913,219,0 +170752064962,220,0 +170752065010,222,0 +170752065058,222,0 +170752065106,223,0 +170752065156,224,0 +170752065204,224,0 +170752065253,224,0 +170752065303,226,0 +170752065351,227,0 +170752065399,226,0 +170752065447,225,0 +170752065496,225,0 +170752065544,225,0 +170752065594,217,0 +170752065642,217,0 +170752065691,218,0 +170752065741,219,0 +170752065790,221,0 +170752065838,220,0 +170752065886,221,0 +170752065934,222,0 +170752065984,222,0 +170752066033,224,0 +170752066081,224,0 +170752066131,225,0 +170752066180,225,0 +170752066228,226,0 +170752066278,226,0 +170752066326,226,0 +170752066374,226,0 +170752066423,226,0 +170752066471,225,0 +170752066519,217,0 +170752066569,216,0 +170752066618,216,0 +170752066666,218,0 +170752066714,220,0 +170752066762,219,0 +170752066810,220,0 +170752066859,222,0 +170752066909,223,0 +170752066957,223,0 +170752067005,225,0 +170752067053,226,0 +170752067102,226,0 +170752067150,231,0 +170752067198,226,0 +170752067248,226,0 +170752067296,226,0 +170752067345,227,0 +170752067393,226,0 +170752067441,221,0 +170752067490,215,0 +170752067538,215,0 +170752067586,216,0 +170752067634,216,0 +170752067682,218,0 +170752067731,218,0 +170752067779,220,0 +170752067827,220,0 +170752067875,222,0 +170752067923,222,0 +170752067971,224,0 +170752068020,225,0 +170752068068,225,0 +170752068116,225,0 +170752068164,225,0 +170752068212,228,0 +170752068260,226,0 +170752068308,226,0 +170752068355,225,0 +170752068403,216,0 +170752068451,215,0 +170752068499,215,0 +170752068547,216,0 +170752068595,217,0 +170752068643,218,0 +170752068691,218,0 +170752068740,219,0 +170752068790,220,0 +170752068838,221,0 +170752068885,222,0 +170752068933,222,0 +170752068981,223,0 +170752069029,226,0 +170752069077,226,0 +170752069125,227,0 +170752069174,225,0 +170752069222,226,0 +170752069270,225,0 +170752069318,217,0 +170752069366,215,0 +170752069414,215,0 +170752069461,215,0 +170752069509,217,0 +170752069557,218,0 +170752069605,220,0 +170752069655,219,0 +170752069703,220,0 +170752069751,220,0 +170752069798,220,0 +170752069846,223,0 +170752069894,224,0 +170752069942,224,0 +170752069990,224,0 +170752070038,225,0 +170752070086,226,0 +170752070133,226,0 +170752070181,226,0 +170752070229,223,0 +170752070277,215,0 +170752070326,215,0 +170752070374,216,0 +170752070422,217,0 +170752070470,218,0 +170752070520,219,0 +170752070569,220,0 +170752070619,221,0 +170752070667,221,0 +170752070715,222,0 +170752070763,223,0 +170752070810,223,0 +170752070858,224,0 +170752070908,224,0 +170752070956,226,0 +170752071005,225,0 +170752071053,224,0 +170752071101,226,0 +170752071149,225,0 +170752071198,215,0 +170752071247,216,0 +170752071295,215,0 +170752071343,216,0 +170752071391,217,0 +170752071439,218,0 +170752071487,219,0 +170752071535,219,0 +170752071583,220,0 +170752071631,220,0 +170752071678,222,0 +170752071726,223,0 +170752071774,223,0 +170752071822,224,0 +170752071870,227,0 +170752071918,225,0 +170752071967,224,0 +170752072015,226,0 +170752072063,225,0 +170752072111,216,0 +170752072161,215,0 +170752072209,215,0 +170752072256,216,0 +170752072304,216,0 +170752072352,217,0 +170752072400,217,0 +170752072448,217,0 +170752072496,219,0 +170752072544,220,0 +170752072592,223,0 +170752072640,222,0 +170752072688,222,0 +170752072735,223,0 +170752072783,224,0 +170752072833,224,0 +170752072881,225,0 +170752072928,225,0 +170752072978,225,0 +170752073028,217,0 +170752073077,214,0 +170752073127,215,0 +170752073175,215,0 +170752073224,216,0 +170752073274,216,0 +170752073323,217,0 +170752073373,218,0 +170752073421,219,0 +170752073470,221,0 +170752073518,223,0 +170752073568,223,0 +170752073616,222,0 +170752073664,224,0 +170752073712,224,0 +170752073760,225,0 +170752073809,225,0 +170752073857,226,0 +170752073905,225,0 +170752073955,217,0 +170752074004,215,0 +170752074054,215,0 +170752074102,216,0 +170752074150,218,0 +170752074198,218,0 +170752074246,219,0 +170752074294,219,0 +170752074342,221,0 +170752074390,221,0 +170752074439,222,0 +170752074487,223,0 +170752074537,224,0 +170752074584,224,0 +170752074634,225,0 +170752074684,226,0 +170752074732,226,0 +170752074779,226,0 +170752074827,225,0 +170752074877,217,0 +170752074927,215,0 +170752074976,215,0 +170752075024,216,0 +170752075072,217,0 +170752075120,219,0 +170752075170,219,0 +170752075217,220,0 +170752075267,221,0 +170752075317,222,0 +170752075364,223,0 +170752075412,223,0 +170752075460,223,0 +170752075508,223,0 +170752075558,226,0 +170752075606,226,0 +170752075654,225,0 +170752075702,224,0 +170752075751,225,0 +170752075799,217,0 +170752075847,216,0 +170752075897,217,0 +170752075946,219,0 +170752075994,220,0 +170752076042,218,0 +170752076090,220,0 +170752076138,222,0 +170752076186,221,0 +170752076234,223,0 +170752076284,223,0 +170752076333,224,0 +170752076383,224,0 +170752076432,224,0 +170752076480,225,0 +170752076528,226,0 +170752076576,226,0 +170752076626,226,0 +170752076674,226,0 +170752076722,217,0 +170752076770,217,0 +170752076819,218,0 +170752076867,219,0 +170752076916,220,0 +170752076966,221,0 +170752077016,221,0 +170752077063,222,0 +170752077111,222,0 +170752077159,222,0 +170752077209,224,0 +170752077257,225,0 +170752077305,225,0 +170752077354,226,0 +170752077404,226,0 +170752077453,222,0 +170752077501,227,0 +170752077551,226,0 +170752077600,225,0 +170752077648,216,0 +170752077696,217,0 +170752077744,217,0 +170752077794,218,0 +170752077842,219,0 +170752077890,220,0 +170752077938,220,0 +170752077987,222,0 +170752078037,223,0 +170752078086,223,0 +170752078134,224,0 +170752078182,227,0 +170752078232,225,0 +170752078281,226,0 +170752078331,225,0 +170752078379,224,0 +170752078427,226,0 +170752078476,227,0 +170752078524,227,0 +170752078572,222,0 +170752078620,218,0 +170752078670,219,0 +170752078719,220,0 +170752078767,220,0 +170752078815,221,0 +170752078863,222,0 +170752078911,224,0 +170752078959,224,0 +170752079007,225,0 +170752079056,226,0 +170752079104,226,0 +170752079152,227,0 +170752079200,227,0 +170752079248,227,0 +170752079296,226,0 +170752079346,226,0 +170752079394,227,0 +170752079441,225,0 +170752079489,224,0 +170752079537,219,0 +170752079585,219,0 +170752079633,221,0 +170752079681,221,0 +170752079729,222,0 +170752079777,223,0 +170752079825,224,0 +170752079875,225,0 +170752079924,225,0 +170752079972,225,0 +170752080020,225,0 +170752080068,226,0 +170752080116,227,0 +170752080165,226,0 +170752080213,226,0 +170752080261,227,0 +170752080309,225,0 +170752080359,225,0 +170752080408,225,0 +170752080456,216,0 +170752080504,215,0 +170752080554,216,0 +170752080604,217,0 +170752080651,218,0 +170752080701,220,0 +170752080750,219,0 +170752080800,221,0 +170752080848,222,0 +170752080898,223,0 +170752080947,223,0 +170752080995,224,0 +170752081043,224,0 +170752081092,225,0 +170752081140,226,0 +170752081190,226,0 +170752081240,224,0 +170752081289,225,0 +170752081337,225,0 +170752081387,215,0 +170752081435,215,0 +170752081483,215,0 +170752081531,215,0 +170752081580,215,0 +170752081628,216,0 +170752081678,216,0 +170752081727,217,0 +170752081775,218,0 +170752081823,219,0 +170752081871,220,0 +170752081920,220,0 +170752081970,223,0 +170752082019,223,0 +170752082069,222,0 +170752082117,225,0 +170752082165,225,0 +170752082214,225,0 +170752082264,224,0 +170752082313,215,0 +170752082363,216,0 +170752082411,215,0 +170752082459,216,0 +170752082509,217,0 +170752082558,218,0 +170752082608,217,0 +170752082656,219,0 +170752082703,219,0 +170752082751,219,0 +170752082801,221,0 +170752082849,223,0 +170752082898,224,0 +170752082946,223,0 +170752082994,226,0 +170752083044,225,0 +170752083092,226,0 +170752083141,225,0 +170752083191,225,0 +170752083239,216,0 +170752083287,215,0 +170752083335,215,0 +170752083383,215,0 +170752083432,216,0 +170752083482,217,0 +170752083530,218,0 +170752083578,219,0 +170752083626,220,0 +170752083675,221,0 +170752083723,222,0 +170752083771,225,0 +170752083819,223,0 +170752083869,224,0 +170752083916,224,0 +170752083964,226,0 +170752084012,225,0 +170752084060,226,0 +170752084108,225,0 +170752084156,217,0 +170752084204,216,0 +170752084254,216,0 +170752084303,216,0 +170752084353,216,0 +170752084402,217,0 +170752084450,218,0 +170752084498,218,0 +170752084548,219,0 +170752084596,220,0 +170752084645,222,0 +170752084695,222,0 +170752084743,224,0 +170752084791,224,0 +170752084839,226,0 +170752084888,224,0 +170752084938,226,0 +170752084987,226,0 +170752085035,225,0 +170752085085,217,0 +170752085133,216,0 +170752085182,216,0 +170752085230,216,0 +170752085280,217,0 +170752085329,218,0 +170752085377,218,0 +170752085427,219,0 +170752085476,220,0 +170752085526,221,0 +170752085574,222,0 +170752085622,224,0 +170752085671,224,0 +170752085721,226,0 +170752085769,226,0 +170752085817,228,0 +170752085865,226,0 +170752085912,225,0 +170752085960,226,0 +170752086010,217,0 +170752086058,215,0 +170752086107,216,0 +170752086157,216,0 +170752086205,218,0 +170752086254,218,0 +170752086304,219,0 +170752086353,220,0 +170752086401,221,0 +170752086449,222,0 +170752086497,224,0 +170752086547,224,0 +170752086595,225,0 +170752086643,226,0 +170752086692,226,0 +170752086740,226,0 +170752086788,226,0 +170752086836,226,0 +170752086884,225,0 +170752086934,217,0 +170752086983,215,0 +170752087031,216,0 +170752087079,215,0 +170752087127,216,0 +170752087177,217,0 +170752087225,217,0 +170752087274,218,0 +170752087322,221,0 +170752087370,222,0 +170752087418,223,0 +170752087466,223,0 +170752087514,223,0 +170752087563,226,0 +170752087613,226,0 +170752087661,226,0 +170752087709,226,0 +170752087757,226,0 +170752087806,226,0 +170752087856,220,0 +170752087904,215,0 +170752087952,215,0 +170752088001,215,0 +170752088051,215,0 +170752088099,216,0 +170752088147,216,0 +170752088195,217,0 +170752088244,217,0 +170752088294,218,0 +170752088342,219,0 +170752088390,221,0 +170752088438,222,0 +170752088486,221,0 +170752088534,223,0 +170752088581,223,0 +170752088629,225,0 +170752088679,226,0 +170752088728,225,0 +170752088776,219,0 +170752088826,215,0 +170752088874,215,0 +170752088923,216,0 +170752088971,216,0 +170752089019,216,0 +170752089069,217,0 +170752089117,217,0 +170752089165,218,0 +170752089213,220,0 +170752089261,219,0 +170752089308,220,0 +170752089356,222,0 +170752089404,222,0 +170752089454,223,0 +170752089502,223,0 +170752089550,224,0 +170752089599,224,0 +170752089649,225,0 +170752089698,225,0 +170752089746,215,0 +170752089794,216,0 +170752089844,216,0 +170752089893,217,0 +170752089941,218,0 +170752089989,219,0 +170752090037,219,0 +170752090087,220,0 +170752090135,220,0 +170752090184,222,0 +170752090232,223,0 +170752090282,223,0 +170752090331,225,0 +170752090379,224,0 +170752090427,227,0 +170752090475,225,0 +170752090524,225,0 +170752090572,227,0 +170752090620,225,0 +170752090668,216,0 +170752090716,216,0 +170752090766,218,0 +170752090815,218,0 +170752090865,219,0 +170752090914,219,0 +170752090964,220,0 +170752091012,220,0 +170752091061,221,0 +170752091109,223,0 +170752091159,222,0 +170752091207,223,0 +170752091255,225,0 +170752091303,225,0 +170752091351,225,0 +170752091399,225,0 +170752091447,226,0 +170752091495,226,0 +170752091543,225,0 +170752091591,217,0 +170752091639,217,0 +170752091687,218,0 +170752091735,218,0 +170752091783,220,0 +170752091832,221,0 +170752091882,221,0 +170752091929,222,0 +170752091977,223,0 +170752092027,225,0 +170752092077,225,0 +170752092126,225,0 +170752092174,226,0 +170752092222,226,0 +170752092271,227,0 +170752092321,226,0 +170752092369,227,0 +170752092417,226,0 +170752092467,225,0 +170752092516,218,0 +170752092564,218,0 +170752092612,219,0 +170752092661,220,0 +170752092711,221,0 +170752092760,221,0 +170752092810,223,0 +170752092858,224,0 +170752092906,223,0 +170752092955,224,0 +170752093003,224,0 +170752093051,225,0 +170752093099,227,0 +170752093149,226,0 +170752093197,226,0 +170752093245,226,0 +170752093294,225,0 +170752093342,226,0 +170752093390,225,0 +170752093438,217,0 +170752093486,216,0 +170752093534,218,0 +170752093582,219,0 +170752093631,220,0 +170752093679,220,0 +170752093729,221,0 +170752093778,222,0 +170752093826,223,0 +170752093874,223,0 +170752093923,226,0 +170752093971,225,0 +170752094019,226,0 +170752094067,227,0 +170752094115,226,0 +170752094165,227,0 +170752094214,227,0 +170752094264,227,0 +170752094312,224,0 +170752094361,217,0 +170752094409,214,0 +170752094459,216,0 +170752094508,217,0 +170752094556,219,0 +170752094604,220,0 +170752094652,221,0 +170752094700,222,0 +170752094748,224,0 +170752094796,223,0 +170752094844,225,0 +170752094892,224,0 +170752094939,225,0 +170752094989,225,0 +170752095037,226,0 +170752095086,224,0 +170752095136,226,0 +170752095184,226,0 +170752095232,225,0 +170752095280,223,0 +170752095328,215,0 +170752095376,216,0 +170752095425,217,0 +170752095473,218,0 +170752095521,219,0 +170752095569,220,0 +170752095617,221,0 +170752095665,222,0 +170752095714,222,0 +170752095762,223,0 +170752095810,224,0 +170752095860,224,0 +170752095908,223,0 +170752095957,225,0 +170752096007,225,0 +170752096057,225,0 +170752096104,226,0 +170752096154,226,0 +170752096203,223,0 +170752096253,216,0 +170752096302,216,0 +170752096350,217,0 +170752096398,219,0 +170752096448,220,0 +170752096497,220,0 +170752096547,221,0 +170752096595,222,0 +170752096644,223,0 +170752096694,223,0 +170752096742,224,0 +170752096790,226,0 +170752096838,226,0 +170752096886,225,0 +170752096935,225,0 +170752096983,227,0 +170752097031,226,0 +170752097079,226,0 +170752097129,225,0 +170752097177,216,0 +170752097226,216,0 +170752097274,217,0 +170752097322,218,0 +170752097370,219,0 +170752097418,219,0 +170752097468,221,0 +170752097517,222,0 +170752097567,221,0 +170752097615,223,0 +170752097663,225,0 +170752097712,224,0 +170752097762,225,0 +170752097810,226,0 +170752097858,226,0 +170752097906,226,0 +170752097953,226,0 +170752098001,226,0 +170752098051,225,0 +170752098099,216,0 +170752098147,216,0 +170752098196,217,0 +170752098244,217,0 +170752098294,221,0 +170752098343,220,0 +170752098393,220,0 +170752098442,222,0 +170752098490,222,0 +170752098538,224,0 +170752098588,224,0 +170752098636,225,0 +170752098684,225,0 +170752098733,227,0 +170752098783,227,0 +170752098831,225,0 +170752098879,226,0 +170752098927,226,0 +170752098976,225,0 +170752099024,217,0 +170752099074,217,0 +170752099123,218,0 +170752099171,219,0 +170752099219,220,0 +170752099268,220,0 +170752099318,222,0 +170752099366,221,0 +170752099415,223,0 +170752099463,224,0 +170752099511,225,0 +170752099559,224,0 +170752099607,226,0 +170752099655,226,0 +170752099703,226,0 +170752099753,226,0 +170752099802,226,0 +170752099851,227,0 +170752099901,225,0 +170752099949,217,0 +170752099999,217,0 +170752100048,217,0 +170752100096,218,0 +170752100145,219,0 +170752100193,220,0 +170752100241,221,0 +170752100289,222,0 +170752100337,222,0 +170752100385,222,0 +170752100433,224,0 +170752100481,224,0 +170752100529,224,0 +170752100577,226,0 +170752100625,226,0 +170752100674,228,0 +170752100722,223,0 +170752100770,226,0 +170752100818,225,0 +170752100865,217,0 +170752100913,215,0 +170752100961,216,0 +170752101009,218,0 +170752101057,218,0 +170752101105,219,0 +170752101154,220,0 +170752101204,221,0 +170752101254,221,0 +170752101303,223,0 +170752101353,223,0 +170752101401,224,0 +170752101450,225,0 +170752101500,226,0 +170752101549,225,0 +170752101597,226,0 +170752101645,227,0 +170752101693,226,0 +170752101741,226,0 +170752101789,217,0 +170752101837,215,0 +170752101885,215,0 +170752101933,216,0 +170752101981,217,0 +170752102030,218,0 +170752102080,219,0 +170752102128,220,0 +170752102176,221,0 +170752102225,222,0 +170752102275,222,0 +170752102324,224,0 +170752102372,227,0 +170752102422,225,0 +170752102472,224,0 +170752102521,225,0 +170752102569,226,0 +170752102617,226,0 +170752102665,225,0 +170752102714,217,0 +170752102762,215,0 +170752102812,215,0 +170752102861,215,0 +170752102909,215,0 +170752102959,216,0 +170752103007,217,0 +170752103055,216,0 +170752103104,219,0 +170752103152,219,0 +170752103200,219,0 +170752103250,222,0 +170752103298,221,0 +170752103346,222,0 +170752103395,224,0 +170752103443,224,0 +170752103491,225,0 +170752103541,225,0 +170752103589,225,0 +170752103637,219,0 +170752103685,215,0 +170752103734,215,0 +170752103782,215,0 +170752103830,215,0 +170752103880,216,0 +170752103929,216,0 +170752103977,217,0 +170752104027,217,0 +170752104076,218,0 +170752104126,220,0 +170752104175,221,0 +170752104225,221,0 +170752104274,221,0 +170752104322,225,0 +170752104370,223,0 +170752104418,224,0 +170752104468,223,0 +170752104516,226,0 +170752104564,221,0 +170752104612,215,0 +170752104661,216,0 +170752104711,218,0 +170752104759,219,0 +170752104806,219,0 +170752104854,221,0 +170752104902,220,0 +170752104950,221,0 +170752105000,222,0 +170752105048,225,0 +170752105096,224,0 +170752105144,224,0 +170752105194,225,0 +170752105241,226,0 +170752105289,224,0 +170752105339,226,0 +170752105387,226,0 +170752105436,226,0 +170752105486,217,0 +170752105535,216,0 +170752105585,216,0 +170752105635,217,0 +170752105682,218,0 +170752105732,219,0 +170752105782,219,0 +170752105831,219,0 +170752105879,220,0 +170752105927,222,0 +170752105977,222,0 +170752106026,222,0 +170752106074,222,0 +170752106122,225,0 +170752106170,225,0 +170752106219,225,0 +170752106269,226,0 +170752106317,227,0 +170752106366,226,0 +170752106414,225,0 +170752106464,217,0 +170752106512,218,0 +170752106560,219,0 +170752106609,220,0 +170752106657,221,0 +170752106705,222,0 +170752106753,230,0 +170752106801,223,0 +170752106849,222,0 +170752106899,223,0 +170752106948,225,0 +170752106996,227,0 +170752107044,228,0 +170752107092,229,0 +170752107142,227,0 +170752107191,227,0 +170752107239,227,0 +170752107287,226,0 +170752107335,227,0 +170752107383,217,0 +170752107431,218,0 +170752107479,219,0 +170752107527,220,0 +170752107575,221,0 +170752107624,222,0 +170752107672,222,0 +170752107720,224,0 +170752107768,224,0 +170752107816,225,0 +170752107864,225,0 +170752107912,226,0 +170752107961,226,0 +170752108009,227,0 +170752108059,227,0 +170752108108,227,0 +170752108156,226,0 +170752108204,226,0 +170752108253,226,0 +170752108301,217,0 +170752108349,217,0 +170752108397,218,0 +170752108446,220,0 +170752108494,220,0 +170752108542,221,0 +170752108592,221,0 +170752108640,222,0 +170752108688,224,0 +170752108736,224,0 +170752108783,225,0 +170752108831,227,0 +170752108879,226,0 +170752108929,226,0 +170752108977,227,0 +170752109025,227,0 +170752109074,227,0 +170752109122,226,0 +170752109172,225,0 +170752109221,216,0 +170752109271,216,0 +170752109320,217,0 +170752109368,219,0 +170752109416,220,0 +170752109466,220,0 +170752109515,220,0 +170752109565,221,0 +170752109614,222,0 +170752109662,224,0 +170752109712,224,0 +170752109760,225,0 +170752109808,226,0 +170752109856,226,0 +170752109905,229,0 +170752109955,226,0 +170752110005,223,0 +170752110054,228,0 +170752110104,226,0 +170752110152,218,0 +170752110201,215,0 +170752110249,216,0 +170752110298,216,0 +170752110348,218,0 +170752110396,220,0 +170752110444,220,0 +170752110493,222,0 +170752110543,221,0 +170752110593,222,0 +170752110641,220,0 +170752110689,224,0 +170752110738,225,0 +170752110786,225,0 +170752110834,226,0 +170752110882,225,0 +170752110931,226,0 +170752110979,226,0 +170752111027,225,0 +170752111077,216,0 +170752111126,216,0 +170752111174,216,0 +170752111224,217,0 +170752111273,218,0 +170752111321,219,0 +170752111371,220,0 +170752111420,222,0 +170752111470,222,0 +170752111518,223,0 +170752111566,223,0 +170752111614,225,0 +170752111662,224,0 +170752111710,225,0 +170752111758,225,0 +170752111807,225,0 +170752111855,226,0 +170752111905,226,0 +170752111954,227,0 +170752112004,216,0 +170752112052,215,0 +170752112101,216,0 +170752112149,216,0 +170752112197,218,0 +170752112245,218,0 +170752112293,219,0 +170752112341,219,0 +170752112391,220,0 +170752112439,221,0 +170752112488,222,0 +170752112536,224,0 +170752112584,224,0 +170752112632,225,0 +170752112681,225,0 +170752112729,224,0 +170752112777,226,0 +170752112825,225,0 +170752112873,226,0 +170752112921,217,0 +170752112968,215,0 +170752113018,215,0 +170752113066,215,0 +170752113116,216,0 +170752113165,217,0 +170752113213,217,0 +170752113261,218,0 +170752113309,218,0 +170752113358,221,0 +170752113406,221,0 +170752113454,222,0 +170752113502,222,0 +170752113550,224,0 +170752113598,224,0 +170752113646,225,0 +170752113694,225,0 +170752113742,225,0 +170752113791,225,0 +170752113839,225,0 +170752113889,215,0 +170752113936,215,0 +170752113984,215,0 +170752114032,216,0 +170752114080,218,0 +170752114130,218,0 +170752114178,218,0 +170752114226,220,0 +170752114275,220,0 +170752114325,222,0 +170752114373,223,0 +170752114422,224,0 +170752114470,226,0 +170752114520,225,0 +170752114568,225,0 +170752114616,226,0 +170752114665,226,0 +170752114713,225,0 +170752114763,225,0 +170752114811,215,0 +170752114859,215,0 +170752114908,216,0 +170752114956,216,0 +170752115004,217,0 +170752115052,218,0 +170752115101,219,0 +170752115151,219,0 +170752115199,219,0 +170752115247,220,0 +170752115295,222,0 +170752115343,225,0 +170752115392,224,0 +170752115440,224,0 +170752115490,226,0 +170752115538,227,0 +170752115587,226,0 +170752115637,226,0 +170752115685,227,0 +170752115733,215,0 +170752115781,215,0 +170752115828,216,0 +170752115876,216,0 +170752115926,216,0 +170752115975,216,0 +170752116023,218,0 +170752116071,218,0 +170752116119,219,0 +170752116167,220,0 +170752116215,222,0 +170752116263,223,0 +170752116311,223,0 +170752116359,224,0 +170752116406,225,0 +170752116454,226,0 +170752116502,225,0 +170752116550,225,0 +170752116600,225,0 +170752116648,216,0 +170752116696,215,0 +170752116744,215,0 +170752116793,216,0 +170752116841,216,0 +170752116889,217,0 +170752116937,219,0 +170752116985,219,0 +170752117035,221,0 +170752117083,221,0 +170752117131,224,0 +170752117180,224,0 +170752117230,223,0 +170752117278,225,0 +170752117327,225,0 +170752117377,225,0 +170752117426,225,0 +170752117474,226,0 +170752117524,226,0 +170752117572,217,0 +170752117621,215,0 +170752117669,216,0 +170752117719,216,0 +170752117766,217,0 +170752117814,218,0 +170752117864,219,0 +170752117912,220,0 +170752117960,221,0 +170752118008,221,0 +170752118057,222,0 +170752118105,223,0 +170752118153,224,0 +170752118201,224,0 +170752118251,225,0 +170752118299,225,0 +170752118348,226,0 +170752118396,225,0 +170752118444,226,0 +170752118492,217,0 +170752118540,215,0 +170752118588,215,0 +170752118638,216,0 +170752118686,218,0 +170752118734,218,0 +170752118783,220,0 +170752118833,221,0 +170752118882,223,0 +170752118930,223,0 +170752118980,223,0 +170752119028,224,0 +170752119076,224,0 +170752119125,225,0 +170752119173,225,0 +170752119221,227,0 +170752119269,225,0 +170752119319,226,0 +170752119368,225,0 +170752119416,217,0 +170752119464,215,0 +170752119512,217,0 +170752119561,218,0 +170752119611,218,0 +170752119659,219,0 +170752119707,220,0 +170752119755,221,0 +170752119803,221,0 +170752119853,223,0 +170752119902,222,0 +170752119950,222,0 +170752120000,225,0 +170752120049,224,0 +170752120099,227,0 +170752120148,226,0 +170752120198,225,0 +170752120246,225,0 +170752120295,225,0 +170752120345,217,0 +170752120393,217,0 +170752120442,218,0 +170752120490,219,0 +170752120540,220,0 +170752120588,221,0 +170752120637,221,0 +170752120685,222,0 +170752120735,222,0 +170752120784,225,0 +170752120832,223,0 +170752120882,225,0 +170752120929,225,0 +170752120977,227,0 +170752121025,226,0 +170752121073,228,0 +170752121121,226,0 +170752121169,225,0 +170752121217,226,0 +170752121266,224,0 +170752121316,219,0 +170752121364,219,0 +170752121413,220,0 +170752121461,221,0 +170752121511,223,0 +170752121559,222,0 +170752121607,222,0 +170752121656,223,0 +170752121706,225,0 +170752121756,225,0 +170752121804,226,0 +170752121853,227,0 +170752121903,228,0 +170752121951,227,0 +170752121999,227,0 +170752122047,227,0 +170752122096,227,0 +170752122145,225,0 +170752122193,221,0 +170752122241,220,0 +170752122289,220,0 +170752122337,221,0 +170752122387,222,0 +170752122435,222,0 +170752122484,222,0 +170752122532,225,0 +170752122580,225,0 +170752122628,224,0 +170752122676,227,0 +170752122724,227,0 +170752122774,227,0 +170752122822,226,0 +170752122869,228,0 +170752122919,229,0 +170752122967,227,0 +170752123016,227,0 +170752123064,226,0 +170752123114,228,0 +170752123163,220,0 +170752123211,219,0 +170752123261,220,0 +170752123309,221,0 +170752123357,222,0 +170752123405,223,0 +170752123452,225,0 +170752123500,224,0 +170752123548,225,0 +170752123596,226,0 +170752123646,226,0 +170752123695,226,0 +170752123745,226,0 +170752123793,226,0 +170752123841,226,0 +170752123889,227,0 +170752123937,226,0 +170752123985,227,0 +170752124034,225,0 +170752124084,217,0 +170752124133,217,0 +170752124181,218,0 +170752124230,219,0 +170752124278,220,0 +170752124326,221,0 +170752124374,222,0 +170752124424,222,0 +170752124472,224,0 +170752124521,224,0 +170752124571,226,0 +170752124619,225,0 +170752124667,225,0 +170752124716,227,0 +170752124764,226,0 +170752124812,227,0 +170752124862,234,0 +170752124910,225,0 +170752124959,225,0 +170752125007,216,0 +170752125055,215,0 +170752125105,216,0 +170752125154,217,0 +170752125202,218,0 +170752125250,219,0 +170752125300,220,0 +170752125349,219,0 +170752125397,221,0 +170752125447,222,0 +170752125496,223,0 +170752125544,224,0 +170752125594,224,0 +170752125643,225,0 +170752125691,225,0 +170752125739,227,0 +170752125787,228,0 +170752125837,226,0 +170752125886,226,0 +170752125934,215,0 +170752125984,216,0 +170752126032,217,0 +170752126081,218,0 +170752126131,219,0 +170752126179,220,0 +170752126226,219,0 +170752126276,220,0 +170752126324,221,0 +170752126372,221,0 +170752126420,223,0 +170752126469,223,0 +170752126517,225,0 +170752126565,226,0 +170752126613,226,0 +170752126661,226,0 +170752126711,227,0 +170752126760,226,0 +170752126808,225,0 +170752126856,217,0 +170752126904,215,0 +170752126952,215,0 +170752127002,217,0 +170752127051,218,0 +170752127101,218,0 +170752127150,219,0 +170752127200,220,0 +170752127249,221,0 +170752127297,221,0 +170752127345,222,0 +170752127393,226,0 +170752127441,225,0 +170752127491,225,0 +170752127540,227,0 +170752127588,227,0 +170752127636,224,0 +170752127684,224,0 +170752127732,227,0 +170752127780,217,0 +170752127830,215,0 +170752127877,215,0 +170752127927,215,0 +170752127977,216,0 +170752128026,216,0 +170752128075,218,0 +170752128123,218,0 +170752128173,219,0 +170752128221,220,0 +170752128270,222,0 +170752128318,223,0 +170752128368,224,0 +170752128416,224,0 +170752128465,224,0 +170752128513,224,0 +170752128561,225,0 +170752128609,223,0 +170752128659,226,0 +170752128708,217,0 +170752128756,215,0 +170752128804,215,0 +170752128852,216,0 +170752128902,216,0 +170752128950,218,0 +170752128998,219,0 +170752129046,219,0 +170752129094,220,0 +170752129143,221,0 +170752129193,222,0 +170752129242,224,0 +170752129290,225,0 +170752129338,225,0 +170752129388,226,0 +170752129437,228,0 +170752129485,226,0 +170752129535,225,0 +170752129583,226,0 +170752129631,217,0 +170752129679,215,0 +170752129727,215,0 +170752129775,215,0 +170752129824,216,0 +170752129874,217,0 +170752129922,216,0 +170752129971,219,0 +170752130021,219,0 +170752130069,220,0 +170752130117,221,0 +170752130166,222,0 +170752130216,223,0 +170752130265,225,0 +170752130315,225,0 +170752130363,225,0 +170752130411,225,0 +170752130460,229,0 +170752130508,225,0 +170752130558,221,0 +170752130607,215,0 +170752130655,216,0 +170752130705,216,0 +170752130754,217,0 +170752130802,217,0 +170752130850,218,0 +170752130898,219,0 +170752130946,219,0 +170752130994,220,0 +170752131044,220,0 +170752131093,222,0 +170752131141,223,0 +170752131191,224,0 +170752131239,225,0 +170752131288,225,0 +170752131336,226,0 +170752131386,226,0 +170752131434,225,0 +170752131482,216,0 +170752131530,215,0 +170752131578,216,0 +170752131627,216,0 +170752131675,216,0 +170752131725,216,0 +170752131773,218,0 +170752131822,217,0 +170752131870,218,0 +170752131919,219,0 +170752131967,220,0 +170752132015,222,0 +170752132063,222,0 +170752132111,223,0 +170752132159,223,0 +170752132207,224,0 +170752132255,225,0 +170752132304,225,0 +170752132352,227,0 +170752132400,225,0 +170752132448,215,0 +170752132496,215,0 +170752132545,215,0 +170752132593,215,0 +170752132641,216,0 +170752132690,216,0 +170752132740,216,0 +170752132788,217,0 +170752132836,218,0 +170752132884,218,0 +170752132931,221,0 +170752132979,222,0 +170752133027,222,0 +170752133075,222,0 +170752133123,224,0 +170752133172,225,0 +170752133220,225,0 +170752133268,226,0 +170752133316,226,0 +170752133364,216,0 +170752133412,216,0 +170752133460,215,0 +170752133507,216,0 +170752133555,216,0 +170752133605,217,0 +170752133653,219,0 +170752133701,218,0 +170752133748,219,0 +170752133796,220,0 +170752133844,221,0 +170752133892,223,0 +170752133940,224,0 +170752133988,224,0 +170752134037,225,0 +170752134087,225,0 +170752134135,226,0 +170752134183,225,0 +170752134231,226,0 +170752134279,217,0 +170752134327,215,0 +170752134376,215,0 +170752134424,215,0 +170752134472,216,0 +170752134522,217,0 +170752134571,218,0 +170752134621,218,0 +170752134670,219,0 +170752134718,221,0 +170752134768,223,0 +170752134817,224,0 +170752134865,224,0 +170752134913,224,0 +170752134961,226,0 +170752135009,227,0 +170752135059,226,0 +170752135108,226,0 +170752135156,225,0 +170752135206,217,0 +170752135255,215,0 +170752135303,215,0 +170752135353,215,0 +170752135402,216,0 +170752135452,218,0 +170752135499,223,0 +170752135547,219,0 +170752135597,220,0 +170752135645,220,0 +170752135693,222,0 +170752135740,223,0 +170752135790,225,0 +170752135838,225,0 +170752135887,226,0 +170752135935,226,0 +170752135983,225,0 +170752136031,227,0 +170752136079,226,0 +170752136127,217,0 +170752136177,215,0 +170752136225,215,0 +170752136273,216,0 +170752136321,216,0 +170752136369,216,0 +170752136418,217,0 +170752136466,219,0 +170752136516,219,0 +170752136564,220,0 +170752136612,221,0 +170752136660,222,0 +170752136708,223,0 +170752136755,224,0 +170752136805,225,0 +170752136855,224,0 +170752136904,225,0 +170752136952,227,0 +170752137000,226,0 +170752137048,221,0 +170752137097,215,0 +170752137147,215,0 +170752137195,216,0 +170752137244,217,0 +170752137293,218,0 +170752137342,218,0 +170752137392,219,0 +170752137440,221,0 +170752137488,222,0 +170752137537,222,0 +170752137587,224,0 +170752137636,224,0 +170752137684,226,0 +170752137732,225,0 +170752137780,225,0 +170752137828,227,0 +170752137876,227,0 +170752137925,227,0 +170752137975,224,0 +170752138024,215,0 +170752138072,216,0 +170752138122,216,0 +170752138170,217,0 +170752138219,218,0 +170752138267,218,0 +170752138315,220,0 +170752138363,220,0 +170752138411,221,0 +170752138461,225,0 +170752138509,223,0 +170752138558,224,0 +170752138608,224,0 +170752138656,225,0 +170752138705,225,0 +170752138753,226,0 +170752138803,226,0 +170752138851,226,0 +170752138900,224,0 +170752138948,215,0 +170752138998,217,0 +170752139046,217,0 +170752139094,220,0 +170752139142,220,0 +170752139191,220,0 +170752139239,221,0 +170752139289,223,0 +170752139337,223,0 +170752139386,226,0 +170752139434,224,0 +170752139482,225,0 +170752139530,226,0 +170752139578,228,0 +170752139626,226,0 +170752139674,225,0 +170752139723,228,0 +170752139773,225,0 +170752139821,225,0 +170752139869,216,0 +170752139918,217,0 +170752139966,218,0 +170752140014,219,0 +170752140062,220,0 +170752140112,221,0 +170752140160,222,0 +170752140209,223,0 +170752140259,224,0 +170752140308,224,0 +170752140356,225,0 +170752140406,225,0 +170752140455,225,0 +170752140503,225,0 +170752140551,227,0 +170752140599,226,0 +170752140649,225,0 +170752140697,227,0 +170752140745,225,0 +170752140794,217,0 +170752140842,219,0 +170752140892,219,0 +170752140941,220,0 +170752140989,221,0 +170752141037,221,0 +170752141085,222,0 +170752141133,223,0 +170752141181,224,0 +170752141230,224,0 +170752141278,225,0 +170752141326,225,0 +170752141374,226,0 +170752141422,225,0 +170752141470,226,0 +170752141518,226,0 +170752141566,226,0 +170752141614,226,0 +170752141662,230,0 +170752141710,217,0 +170752141758,215,0 +170752141806,217,0 +170752141854,217,0 +170752141903,218,0 +170752141951,219,0 +170752141999,220,0 +170752142049,222,0 +170752142098,220,0 +170752142148,222,0 +170752142197,223,0 +170752142247,225,0 +170752142296,224,0 +170752142344,225,0 +170752142392,225,0 +170752142440,226,0 +170752142490,226,0 +170752142538,226,0 +170752142587,224,0 +170752142635,216,0 +170752142685,215,0 +170752142733,216,0 +170752142781,217,0 +170752142829,218,0 +170752142878,219,0 +170752142926,219,0 +170752142974,220,0 +170752143022,221,0 +170752143072,221,0 +170752143121,223,0 +170752143169,223,0 +170752143217,224,0 +170752143267,224,0 +170752143316,225,0 +170752143366,225,0 +170752143414,225,0 +170752143462,226,0 +170752143511,226,0 +170752143561,217,0 +170752143609,215,0 +170752143658,216,0 +170752143708,218,0 +170752143756,218,0 +170752143805,220,0 +170752143855,220,0 +170752143904,221,0 +170752143954,221,0 +170752144004,222,0 +170752144052,223,0 +170752144099,223,0 +170752144147,224,0 +170752144197,225,0 +170752144245,226,0 +170752144293,225,0 +170752144341,226,0 +170752144390,225,0 +170752144439,225,0 +170752144487,217,0 +170752144537,216,0 +170752144586,217,0 +170752144636,218,0 +170752144684,219,0 +170752144732,220,0 +170752144780,221,0 +170752144828,222,0 +170752144876,223,0 +170752144925,224,0 +170752144973,223,0 +170752145021,226,0 +170752145071,225,0 +170752145119,226,0 +170752145167,227,0 +170752145215,226,0 +170752145264,226,0 +170752145312,228,0 +170752145362,226,0 +170752145411,218,0 +170752145461,216,0 +170752145510,217,0 +170752145560,219,0 +170752145607,220,0 +170752145655,221,0 +170752145703,221,0 +170752145751,227,0 +170752145799,223,0 +170752145849,224,0 +170752145896,226,0 +170752145944,228,0 +170752145992,227,0 +170752146040,227,0 +170752146088,226,0 +170752146136,227,0 +170752146184,227,0 +170752146232,227,0 +170752146280,226,0 +170752146329,219,0 +170752146377,217,0 +170752146427,218,0 +170752146476,219,0 +170752146524,219,0 +170752146574,221,0 +170752146623,221,0 +170752146673,222,0 +170752146722,222,0 +170752146772,223,0 +170752146821,224,0 +170752146869,224,0 +170752146919,225,0 +170752146967,227,0 +170752147015,226,0 +170752147063,228,0 +170752147111,227,0 +170752147160,227,0 +170752147208,226,0 +170752147256,225,0 +170752147304,216,0 +170752147353,217,0 +170752147403,218,0 +170752147452,219,0 +170752147500,221,0 +170752147548,221,0 +170752147598,222,0 +170752147648,223,0 +170752147697,224,0 +170752147745,224,0 +170752147793,225,0 +170752147843,225,0 +170752147892,227,0 +170752147942,226,0 +170752147991,226,0 +170752148039,226,0 +170752148087,226,0 +170752148135,225,0 +170752148184,223,0 +170752148232,215,0 +170752148280,215,0 +170752148330,216,0 +170752148378,216,0 +170752148425,218,0 +170752148475,218,0 +170752148525,219,0 +170752148574,221,0 +170752148622,222,0 +170752148670,223,0 +170752148718,223,0 +170752148768,224,0 +170752148817,226,0 +170752148867,226,0 +170752148915,226,0 +170752148962,226,0 +170752149010,226,0 +170752149058,226,0 +170752149108,225,0 +170752149158,215,0 +170752149207,215,0 +170752149255,215,0 +170752149303,216,0 +170752149351,216,0 +170752149399,216,0 +170752149447,217,0 +170752149495,218,0 +170752149543,219,0 +170752149592,221,0 +170752149640,223,0 +170752149690,223,0 +170752149738,223,0 +170752149786,225,0 +170752149835,226,0 +170752149885,225,0 +170752149934,226,0 +170752149982,226,0 +170752150032,225,0 +170752150080,216,0 +170752150129,216,0 +170752150177,216,0 +170752150225,216,0 +170752150275,216,0 +170752150323,216,0 +170752150371,218,0 +170752150419,219,0 +170752150468,221,0 +170752150516,221,0 +170752150566,223,0 +170752150614,223,0 +170752150662,224,0 +170752150711,227,0 +170752150759,228,0 +170752150807,227,0 +170752150855,226,0 +170752150904,226,0 +170752150952,226,0 +170752151000,216,0 +170752151048,215,0 +170752151096,216,0 +170752151144,216,0 +170752151192,217,0 +170752151240,217,0 +170752151288,218,0 +170752151336,218,0 +170752151383,220,0 +170752151431,222,0 +170752151479,222,0 +170752151527,223,0 +170752151575,224,0 +170752151623,226,0 +170752151671,225,0 +170752151719,227,0 +170752151767,227,0 +170752151816,228,0 +170752151864,226,0 +170752151912,217,0 +170752151962,215,0 +170752152010,215,0 +170752152058,216,0 +170752152107,217,0 +170752152157,218,0 +170752152205,218,0 +170752152254,220,0 +170752152304,219,0 +170752152352,220,0 +170752152400,221,0 +170752152448,222,0 +170752152497,223,0 +170752152545,224,0 +170752152595,224,0 +170752152644,225,0 +170752152692,226,0 +170752152740,226,0 +170752152788,226,0 +170752152836,218,0 +170752152884,215,0 +170752152932,215,0 +170752152980,215,0 +170752153030,216,0 +170752153078,217,0 +170752153125,218,0 +170752153175,218,0 +170752153223,220,0 +170752153272,220,0 +170752153322,221,0 +170752153372,222,0 +170752153420,223,0 +170752153469,224,0 +170752153517,225,0 +170752153567,225,0 +170752153616,225,0 +170752153666,228,0 +170752153715,227,0 +170752153763,227,0 +170752153813,226,0 +170752153861,227,0 +170752153910,227,0 +170752153958,227,0 +170752154008,226,0 +170752154057,226,0 +170752154107,226,0 +170752154156,226,0 +170752154204,225,0 +170752154254,216,0 +170752154302,216,0 +170752154351,217,0 +170752154399,218,0 +170752154447,219,0 +170752154497,220,0 +170752154545,222,0 +170752154593,221,0 +170752154641,222,0 +170752154690,223,0 +170752154740,224,0 +170752154789,226,0 +170752154837,226,0 +170752154887,228,0 +170752154935,227,0 +170752154982,227,0 +170752155032,227,0 +170752155082,226,0 +170752155129,225,0 +170752155177,215,0 +170752155227,216,0 +170752155277,217,0 +170752155324,218,0 +170752155374,219,0 +170752155424,219,0 +170752155473,220,0 +170752155523,220,0 +170752155571,221,0 +170752155620,223,0 +170752155668,223,0 +170752155716,225,0 +170752155764,225,0 +170752155812,229,0 +170752155861,224,0 +170752155909,226,0 +170752155957,226,0 +170752156007,226,0 +170752156055,225,0 +170752156104,216,0 +170752156154,216,0 +170752156203,217,0 +170752156253,218,0 +170752156302,219,0 +170752156350,219,0 +170752156400,220,0 +170752156448,223,0 +170752156496,223,0 +170752156544,223,0 +170752156592,224,0 +170752156640,224,0 +170752156689,225,0 +170752156737,227,0 +170752156785,227,0 +170752156833,227,0 +170752156881,226,0 +170752156931,227,0 +170752156979,225,0 +170752157028,217,0 +170752157078,216,0 +170752157126,217,0 +170752157175,218,0 +170752157225,220,0 +170752157274,220,0 +170752157322,223,0 +170752157370,222,0 +170752157418,222,0 +170752157467,223,0 +170752157517,224,0 +170752157565,225,0 +170752157613,226,0 +170752157661,227,0 +170752157710,227,0 +170752157760,227,0 +170752157808,228,0 +170752157856,226,0 +170752157905,225,0 +170752157953,216,0 +170752158003,215,0 +170752158052,215,0 +170752158102,216,0 +170752158151,217,0 +170752158199,218,0 +170752158247,218,0 +170752158295,220,0 +170752158343,220,0 +170752158393,224,0 +170752158441,222,0 +170752158489,224,0 +170752158538,225,0 +170752158588,225,0 +170752158637,225,0 +170752158685,226,0 +170752158735,226,0 +170752158783,226,0 +170752158831,225,0 +170752158879,216,0 +170752158927,215,0 +170752158975,216,0 +170752159024,216,0 +170752159072,216,0 +170752159120,217,0 +170752159168,218,0 +170752159218,218,0 +170752159266,219,0 +170752159313,220,0 +170752159363,220,0 +170752159413,225,0 +170752159462,224,0 +170752159510,225,0 +170752159560,225,0 +170752159608,225,0 +170752159655,225,0 +170752159703,225,0 +170752159751,226,0 +170752159800,217,0 +170752159849,216,0 +170752159899,216,0 +170752159947,216,0 +170752159995,216,0 +170752160044,217,0 +170752160092,217,0 +170752160140,218,0 +170752160190,220,0 +170752160238,220,0 +170752160285,221,0 +170752160335,222,0 +170752160383,225,0 +170752160431,224,0 +170752160479,224,0 +170752160528,224,0 +170752160578,225,0 +170752160626,225,0 +170752160674,226,0 +170752160722,217,0 +170752160770,215,0 +170752160818,215,0 +170752160866,215,0 +170752160913,216,0 +170752160961,217,0 +170752161009,218,0 +170752161057,220,0 +170752161105,221,0 +170752161153,221,0 +170752161201,222,0 +170752161249,222,0 +170752161298,224,0 +170752161348,225,0 +170752161397,227,0 +170752161447,226,0 +170752161495,226,0 +170752161544,227,0 +170752161592,226,0 +170752161640,217,0 +170752161688,215,0 +170752161736,215,0 +170752161786,216,0 +170752161835,217,0 +170752161883,218,0 +170752161933,219,0 +170752161982,219,0 +170752162030,220,0 +170752162080,223,0 +170752162130,223,0 +170752162177,224,0 +170752162225,224,0 +170752162275,227,0 +170752162323,226,0 +170752162372,226,0 +170752162422,227,0 +170752162470,226,0 +170752162519,225,0 +170752162567,219,0 +170752162615,215,0 +170752162663,215,0 +170752162711,215,0 +170752162761,216,0 +170752162809,216,0 +170752162858,217,0 +170752162906,217,0 +170752162954,219,0 +170752163002,219,0 +170752163050,221,0 +170752163098,223,0 +170752163148,223,0 +170752163195,224,0 +170752163243,228,0 +170752163293,224,0 +170752163341,226,0 +170752163388,225,0 +170752163438,226,0 +170752163487,224,0 +170752163535,215,0 +170752163583,215,0 +170752163631,216,0 +170752163679,216,0 +170752163727,216,0 +170752163775,218,0 +170752163823,219,0 +170752163872,219,0 +170752163920,221,0 +170752163970,221,0 +170752164018,222,0 +170752164067,223,0 +170752164115,222,0 +170752164163,223,0 +170752164212,223,0 +170752164262,226,0 +170752164310,224,0 +170752164358,225,0 +170752164406,225,0 +170752164453,217,0 +170752164501,216,0 +170752164549,217,0 +170752164599,219,0 +170752164648,219,0 +170752164698,220,0 +170752164746,221,0 +170752164795,222,0 +170752164843,222,0 +170752164891,223,0 +170752164939,224,0 +170752164988,224,0 +170752165036,225,0 +170752165084,226,0 +170752165132,226,0 +170752165180,226,0 +170752165227,229,0 +170752165275,225,0 +170752165323,218,0 +170752165373,217,0 +170752165421,218,0 +170752165469,219,0 +170752165517,220,0 +170752165566,221,0 +170752165614,221,0 +170752165662,222,0 +170752165710,222,0 +170752165758,223,0 +170752165806,224,0 +170752165853,225,0 +170752165901,225,0 +170752165949,227,0 +170752165997,226,0 +170752166045,226,0 +170752166093,226,0 +170752166143,226,0 +170752166192,225,0 +170752166242,218,0 +170752166289,218,0 +170752166337,220,0 +170752166387,221,0 +170752166437,222,0 +170752166485,222,0 +170752166532,222,0 +170752166580,224,0 +170752166630,224,0 +170752166679,225,0 +170752166729,226,0 +170752166777,226,0 +170752166825,227,0 +170752166873,227,0 +170752166921,226,0 +170752166968,227,0 +170752167016,226,0 +170752167066,225,0 +170752167114,220,0 +170752167162,219,0 +170752167210,219,0 +170752167258,220,0 +170752167306,222,0 +170752167355,221,0 +170752167403,222,0 +170752167453,224,0 +170752167501,225,0 +170752167550,226,0 +170752167598,227,0 +170752167646,225,0 +170752167694,226,0 +170752167744,226,0 +170752167793,226,0 +170752167843,227,0 +170752167891,226,0 +170752167939,226,0 +170752167988,224,0 +170752168036,217,0 +170752168084,218,0 +170752168134,218,0 +170752168183,219,0 +170752168231,220,0 +170752168281,221,0 +170752168329,223,0 +170752168377,223,0 +170752168426,223,0 +170752168474,225,0 +170752168524,225,0 +170752168573,226,0 +170752168621,225,0 +170752168669,227,0 +170752168717,227,0 +170752168765,227,0 +170752168813,226,0 +170752168861,225,0 +170752168909,215,0 +170752168959,216,0 +170752169008,217,0 +170752169056,218,0 +170752169104,219,0 +170752169152,219,0 +170752169201,220,0 +170752169249,220,0 +170752169297,221,0 +170752169345,221,0 +170752169393,223,0 +170752169441,223,0 +170752169489,225,0 +170752169537,228,0 +170752169586,225,0 +170752169635,226,0 +170752169683,226,0 +170752169731,225,0 +170752169779,217,0 +170752169827,215,0 +170752169875,215,0 +170752169923,217,0 +170752169971,217,0 +170752170019,218,0 +170752170067,219,0 +170752170114,219,0 +170752170164,220,0 +170752170213,222,0 +170752170261,222,0 +170752170309,222,0 +170752170357,224,0 +170752170407,225,0 +170752170455,225,0 +170752170503,226,0 +170752170551,227,0 +170752170600,227,0 +170752170648,224,0 +170752170696,216,0 +170752170744,215,0 +170752170794,216,0 +170752170842,218,0 +170752170891,218,0 +170752170939,218,0 +170752170989,219,0 +170752171037,221,0 +170752171085,221,0 +170752171133,222,0 +170752171181,223,0 +170752171229,226,0 +170752171278,225,0 +170752171328,228,0 +170752171377,228,0 +170752171427,226,0 +170752171475,226,0 +170752171523,226,0 +170752171571,217,0 +170752171620,216,0 +170752171670,216,0 +170752171718,216,0 +170752171767,218,0 +170752171815,218,0 +170752171863,219,0 +170752171911,221,0 +170752171961,221,0 +170752172010,222,0 +170752172060,223,0 +170752172109,223,0 +170752172157,223,0 +170752172207,224,0 +170752172256,225,0 +170752172304,225,0 +170752172352,226,0 +170752172400,225,0 +170752172448,217,0 +170752172497,215,0 +170752172545,215,0 +170752172594,216,0 +170752172642,216,0 +170752172690,217,0 +170752172738,218,0 +170752172786,218,0 +170752172834,219,0 +170752172882,220,0 +170752172930,221,0 +170752172979,222,0 +170752173028,222,0 +170752173076,224,0 +170752173124,225,0 +170752173172,224,0 +170752173220,224,0 +170752173268,228,0 +170752173317,225,0 +170752173365,216,0 +170752173413,215,0 +170752173463,216,0 +170752173511,216,0 +170752173559,217,0 +170752173608,218,0 +170752173656,219,0 +170752173706,220,0 +170752173754,220,0 +170752173803,221,0 +170752173853,223,0 +170752173901,225,0 +170752173949,224,0 +170752173997,225,0 +170752174045,225,0 +170752174093,225,0 +170752174141,226,0 +170752174189,226,0 +170752174237,217,0 +170752174285,215,0 +170752174334,216,0 +170752174382,217,0 +170752174430,218,0 +170752174478,219,0 +170752174526,220,0 +170752174575,221,0 +170752174625,221,0 +170752174675,222,0 +170752174724,224,0 +170752174772,224,0 +170752174822,225,0 +170752174870,225,0 +170752174919,226,0 +170752174969,226,0 +170752175018,225,0 +170752175066,226,0 +170752175116,217,0 +170752175164,215,0 +170752175211,215,0 +170752175259,216,0 +170752175307,217,0 +170752175355,218,0 +170752175403,219,0 +170752175451,220,0 +170752175499,220,0 +170752175549,223,0 +170752175597,222,0 +170752175646,223,0 +170752175694,225,0 +170752175742,225,0 +170752175790,224,0 +170752175840,226,0 +170752175889,225,0 +170752175937,226,0 +170752175985,225,0 +170752176033,215,0 +170752176081,215,0 +170752176129,216,0 +170752176178,216,0 +170752176226,217,0 +170752176276,218,0 +170752176324,218,0 +170752176373,219,0 +170752176421,221,0 +170752176471,222,0 +170752176519,223,0 +170752176567,223,0 +170752176615,223,0 +170752176663,225,0 +170752176712,224,0 +170752176762,226,0 +170752176810,226,0 +170752176858,226,0 +170752176907,217,0 +170752176957,215,0 +170752177005,215,0 +170752177052,215,0 +170752177100,215,0 +170752177148,216,0 +170752177196,217,0 +170752177244,218,0 +170752177294,219,0 +170752177343,220,0 +170752177392,222,0 +170752177440,222,0 +170752177488,224,0 +170752177538,223,0 +170752177587,225,0 +170752177635,226,0 +170752177683,222,0 +170752177731,226,0 +170752177779,225,0 +170752177827,215,0 +170752177875,215,0 +170752177925,215,0 +170752177974,216,0 +170752178024,216,0 +170752178072,215,0 +170752178120,216,0 +170752178168,218,0 +170752178217,218,0 +170752178267,219,0 +170752178315,219,0 +170752178363,222,0 +170752178412,223,0 +170752178462,224,0 +170752178511,223,0 +170752178559,223,0 +170752178607,225,0 +170752178657,225,0 +170752178704,216,0 +170752178754,215,0 +170752178802,215,0 +170752178850,217,0 +170752178898,217,0 +170752178946,219,0 +170752178994,219,0 +170752179043,220,0 +170752179093,220,0 +170752179142,222,0 +170752179190,223,0 +170752179238,224,0 +170752179286,224,0 +170752179334,224,0 +170752179384,225,0 +170752179432,225,0 +170752179480,226,0 +170752179529,225,0 +170752179579,217,0 +170752179628,215,0 +170752179676,215,0 +170752179726,216,0 +170752179774,217,0 +170752179822,218,0 +170752179870,218,0 +170752179919,219,0 +170752179967,220,0 +170752180015,221,0 +170752180063,222,0 +170752180111,223,0 +170752180159,223,0 +170752180207,226,0 +170752180254,225,0 +170752180302,225,0 +170752180350,226,0 +170752180398,225,0 +170752180446,224,0 +170752180494,215,0 +170752180542,215,0 +170752180590,215,0 +170752180639,215,0 +170752180689,216,0 +170752180736,217,0 +170752180784,218,0 +170752180832,219,0 +170752180880,220,0 +170752180928,222,0 +170752180978,224,0 +170752181025,223,0 +170752181075,224,0 +170752181123,223,0 +170752181172,224,0 +170752181222,226,0 +170752181270,227,0 +170752181317,225,0 +170752181365,217,0 +170752181415,215,0 +170752181463,215,0 +170752181511,216,0 +170752181559,217,0 +170752181608,217,0 +170752181656,218,0 +170752181704,219,0 +170752181754,222,0 +170752181803,222,0 +170752181853,224,0 +170752181900,224,0 +170752181950,225,0 +170752181998,224,0 +170752182047,226,0 +170752182097,226,0 +170752182146,225,0 +170752182196,226,0 +170752182244,217,0 +170752182293,216,0 +170752182341,217,0 +170752182389,217,0 +170752182439,218,0 +170752182487,219,0 +170752182536,219,0 +170752182584,221,0 +170752182634,222,0 +170752182682,223,0 +170752182730,223,0 +170752182778,224,0 +170752182827,224,0 +170752182875,225,0 +170752182924,225,0 +170752182971,225,0 +170752183021,224,0 +170752183070,225,0 +170752183118,224,0 +170752183166,217,0 +170752183214,218,0 +170752183264,218,0 +170752183312,219,0 +170752183361,220,0 +170752183409,221,0 +170752183459,222,0 +170752183507,222,0 +170752183555,223,0 +170752183603,224,0 +170752183650,224,0 +170752183698,225,0 +170752183748,225,0 +170752183796,225,0 +170752183844,226,0 +170752183891,224,0 +170752183939,225,0 +170752183987,228,0 +170752184035,218,0 +170752184083,218,0 +170752184131,219,0 +170752184180,219,0 +170752184230,221,0 +170752184278,222,0 +170752184327,223,0 +170752184377,223,0 +170752184425,224,0 +170752184473,223,0 +170752184521,224,0 +170752184569,225,0 +170752184617,228,0 +170752184666,229,0 +170752184714,226,0 +170752184762,226,0 +170752184812,226,0 +170752184860,226,0 +170752184908,224,0 +170752184957,217,0 +170752185005,218,0 +170752185053,219,0 +170752185101,220,0 +170752185149,220,0 +170752185197,221,0 +170752185245,222,0 +170752185294,223,0 +170752185342,223,0 +170752185390,224,0 +170752185438,225,0 +170752185486,225,0 +170752185536,224,0 +170752185584,226,0 +170752185632,226,0 +170752185681,227,0 +170752185729,226,0 +170752185779,224,0 +170752185828,216,0 +170752185878,215,0 +170752185927,216,0 +170752185977,218,0 +170752186025,219,0 +170752186074,218,0 +170752186122,219,0 +170752186170,220,0 +170752186220,222,0 +170752186269,223,0 +170752186319,224,0 +170752186367,224,0 +170752186416,224,0 +170752186464,225,0 +170752186512,226,0 +170752186562,226,0 +170752186611,226,0 +170752186661,225,0 +170752186709,216,0 +170752186758,215,0 +170752186806,215,0 +170752186854,216,0 +170752186904,217,0 +170752186953,218,0 +170752187003,219,0 +170752187051,219,0 +170752187099,221,0 +170752187148,221,0 +170752187196,222,0 +170752187244,223,0 +170752187292,224,0 +170752187340,224,0 +170752187390,224,0 +170752187439,225,0 +170752187487,226,0 +170752187535,226,0 +170752187583,217,0 +170752187633,215,0 +170752187682,216,0 +170752187732,217,0 +170752187781,218,0 +170752187829,218,0 +170752187879,221,0 +170752187928,222,0 +170752187976,223,0 +170752188026,223,0 +170752188075,222,0 +170752188123,224,0 +170752188171,224,0 +170752188221,225,0 +170752188269,226,0 +170752188318,227,0 +170752188368,224,0 +170752188418,225,0 +170752188465,217,0 +170752188513,216,0 +170752188563,217,0 +170752188612,218,0 +170752188660,220,0 +170752188710,221,0 +170752188758,221,0 +170752188807,221,0 +170752188855,222,0 +170752188905,222,0 +170752188953,225,0 +170752189002,224,0 +170752189050,226,0 +170752189098,226,0 +170752189147,226,0 +170752189195,226,0 +170752189243,227,0 +170752189291,227,0 +170752189339,224,0 +170752189387,216,0 +170752189435,215,0 +170752189483,217,0 +170752189531,219,0 +170752189579,219,0 +170752189626,221,0 +170752189674,222,0 +170752189722,222,0 +170752189770,221,0 +170752189818,224,0 +170752189866,224,0 +170752189915,225,0 +170752189965,225,0 +170752190013,227,0 +170752190062,226,0 +170752190112,226,0 +170752190161,226,0 +170752190209,225,0 +170752190259,217,0 +170752190307,216,0 +170752190355,216,0 +170752190403,216,0 +170752190451,217,0 +170752190500,218,0 +170752190550,219,0 +170752190599,220,0 +170752190649,222,0 +170752190698,225,0 +170752190748,223,0 +170752190797,224,0 +170752190845,225,0 +170752190893,226,0 +170752190941,226,0 +170752190991,226,0 +170752191039,224,0 +170752191088,227,0 +170752191138,220,0 +170752191187,215,0 +170752191235,215,0 +170752191285,215,0 +170752191333,216,0 +170752191381,216,0 +170752191429,216,0 +170752191478,218,0 +170752191526,219,0 +170752191576,219,0 +170752191624,221,0 +170752191673,222,0 +170752191721,222,0 +170752191771,222,0 +170752191820,223,0 +170752191868,225,0 +170752191916,223,0 +170752191964,225,0 +170752192012,225,0 +170752192060,215,0 +170752192110,215,0 +170752192159,214,0 +170752192209,215,0 +170752192257,215,0 +170752192305,216,0 +170752192354,214,0 +170752192402,217,0 +170752192450,218,0 +170752192500,219,0 +170752192548,220,0 +170752192596,223,0 +170752192644,225,0 +170752192692,224,0 +170752192739,223,0 +170752192787,224,0 +170752192835,223,0 +170752192883,225,0 +170752192931,217,0 +170752192980,215,0 +170752193028,216,0 +170752193076,216,0 +170752193124,216,0 +170752193172,217,0 +170752193221,218,0 +170752193271,219,0 +170752193319,220,0 +170752193367,220,0 +170752193415,222,0 +170752193464,222,0 +170752193512,225,0 +170752193562,224,0 +170752193609,226,0 +170752193659,224,0 +170752193707,225,0 +170752193756,227,0 +170752193804,225,0 +170752193852,215,0 +170752193902,215,0 +170752193952,216,0 +170752193999,215,0 +170752194047,217,0 +170752194097,219,0 +170752194145,219,0 +170752194193,220,0 +170752194241,221,0 +170752194289,222,0 +170752194337,223,0 +170752194385,223,0 +170752194433,224,0 +170752194482,225,0 +170752194532,224,0 +170752194581,226,0 +170752194629,225,0 +170752194677,225,0 +170752194725,215,0 +170752194773,215,0 +170752194821,216,0 +170752194869,217,0 +170752194916,218,0 +170752194964,218,0 +170752195012,219,0 +170752195060,219,0 +170752195110,221,0 +170752195159,221,0 +170752195207,224,0 +170752195255,222,0 +170752195303,224,0 +170752195351,224,0 +170752195399,225,0 +170752195449,226,0 +170752195496,225,0 +170752195544,227,0 +170752195592,216,0 +170752195640,216,0 +170752195688,217,0 +170752195736,218,0 +170752195784,220,0 +170752195833,220,0 +170752195881,220,0 +170752195929,220,0 +170752195977,220,0 +170752196025,222,0 +170752196074,223,0 +170752196122,225,0 +170752196170,226,0 +170752196220,224,0 +170752196269,226,0 +170752196319,226,0 +170752196369,225,0 +170752196416,225,0 +170752196464,226,0 +170752196512,216,0 +170752196562,217,0 +170752196610,217,0 +170752196657,218,0 +170752196705,218,0 +170752196753,221,0 +170752196801,222,0 +170752196851,221,0 +170752196898,223,0 +170752196946,224,0 +170752196994,224,0 +170752197042,225,0 +170752197090,226,0 +170752197138,225,0 +170752197187,225,0 +170752197235,226,0 +170752197283,225,0 +170752197331,225,0 +170752197379,217,0 +170752197429,216,0 +170752197477,217,0 +170752197525,218,0 +170752197574,219,0 +170752197624,219,0 +170752197673,220,0 +170752197723,222,0 +170752197772,223,0 +170752197820,222,0 +170752197868,224,0 +170752197918,224,0 +170752197966,225,0 +170752198015,226,0 +170752198063,228,0 +170752198111,226,0 +170752198159,226,0 +170752198209,225,0 +170752198258,219,0 +170752198306,215,0 +170752198354,216,0 +170752198404,216,0 +170752198452,218,0 +170752198499,218,0 +170752198549,218,0 +170752198597,219,0 +170752198645,220,0 +170752198694,221,0 +170752198742,222,0 +170752198790,223,0 +170752198838,224,0 +170752198886,224,0 +170752198934,226,0 +170752198984,225,0 +170752199032,226,0 +170752199080,230,0 +170752199129,224,0 +170752199177,216,0 +170752199225,215,0 +170752199273,215,0 +170752199321,216,0 +170752199371,216,0 +170752199419,218,0 +170752199466,219,0 +170752199514,219,0 +170752199564,220,0 +170752199612,221,0 +170752199660,222,0 +170752199708,224,0 +170752199755,224,0 +170752199803,224,0 +170752199851,226,0 +170752199899,228,0 +170752199947,226,0 +170752199997,228,0 +170752200045,217,0 +170752200093,215,0 +170752200140,215,0 +170752200188,216,0 +170752200236,217,0 +170752200286,218,0 +170752200335,218,0 +170752200385,218,0 +170752200433,219,0 +170752200482,221,0 +170752200532,223,0 +170752200581,223,0 +170752200631,224,0 +170752200681,226,0 +170752200729,224,0 +170752200776,226,0 +170752200824,226,0 +170752200872,226,0 +170752200922,224,0 +170752200971,215,0 +170752201019,215,0 +170752201067,216,0 +170752201115,216,0 +170752201163,217,0 +170752201211,217,0 +170752201261,218,0 +170752201310,219,0 +170752201358,220,0 +170752201406,220,0 +170752201454,222,0 +170752201504,222,0 +170752201552,223,0 +170752201601,223,0 +170752201651,224,0 +170752201699,224,0 +170752201747,225,0 +170752201796,224,0 +170752201844,216,0 +170752201892,215,0 +170752201940,214,0 +170752201989,216,0 +170752202039,219,0 +170752202087,217,0 +170752202135,219,0 +170752202183,219,0 +170752202231,220,0 +170752202279,221,0 +170752202328,223,0 +170752202378,222,0 +170752202427,223,0 +170752202477,225,0 +170752202526,226,0 +170752202576,226,0 +170752202624,226,0 +170752202673,226,0 +170752202723,216,0 +170752202772,215,0 +170752202820,216,0 +170752202870,216,0 +170752202918,216,0 +170752202965,217,0 +170752203015,218,0 +170752203065,219,0 +170752203113,221,0 +170752203162,222,0 +170752203210,223,0 +170752203260,223,0 +170752203308,223,0 +170752203357,225,0 +170752203407,223,0 +170752203455,223,0 +170752203503,225,0 +170752203551,224,0 +170752203599,224,0 +170752203648,215,0 +170752203698,215,0 +170752203747,215,0 +170752203797,215,0 +170752203844,217,0 +170752203892,217,0 +170752203940,217,0 +170752203988,219,0 +170752204036,219,0 +170752204084,221,0 +170752204132,222,0 +170752204179,222,0 +170752204229,224,0 +170752204277,225,0 +170752204325,226,0 +170752204374,225,0 +170752204422,225,0 +170752204470,225,0 +170752204519,216,0 +170752204567,215,0 +170752204615,215,0 +170752204663,216,0 +170752204711,217,0 +170752204758,218,0 +170752204806,219,0 +170752204856,219,0 +170752204904,221,0 +170752204953,222,0 +170752205001,222,0 +170752205051,224,0 +170752205098,225,0 +170752205146,225,0 +170752205194,225,0 +170752205244,226,0 +170752205293,224,0 +170752205343,224,0 +170752205391,217,0 +170752205439,215,0 +170752205488,216,0 +170752205536,217,0 +170752205584,218,0 +170752205632,219,0 +170752205680,220,0 +170752205730,221,0 +170752205778,222,0 +170752205826,222,0 +170752205874,223,0 +170752205923,224,0 +170752205973,224,0 +170752206022,225,0 +170752206070,225,0 +170752206120,225,0 +170752206169,227,0 +170752206217,226,0 +170752206265,224,0 +170752206313,215,0 +170752206361,216,0 +170752206409,217,0 +170752206457,217,0 +170752206505,219,0 +170752206554,220,0 +170752206602,221,0 +170752206651,223,0 +170752206701,224,0 +170752206749,223,0 +170752206797,224,0 +170752206845,225,0 +170752206895,224,0 +170752206944,225,0 +170752206992,226,0 +170752207040,225,0 +170752207088,226,0 +170752207137,225,0 +170752207187,216,0 +170752207235,215,0 +170752207283,215,0 +170752207333,215,0 +170752207380,217,0 +170752207430,218,0 +170752207480,218,0 +170752207529,219,0 +170752207577,220,0 +170752207625,221,0 +170752207673,222,0 +170752207722,223,0 +170752207770,223,0 +170752207818,224,0 +170752207866,223,0 +170752207914,224,0 +170752207964,224,0 +170752208013,225,0 +170752208061,217,0 +170752208111,215,0 +170752208159,215,0 +170752208206,216,0 +170752208256,217,0 +170752208304,218,0 +170752208352,219,0 +170752208401,219,0 +170752208451,220,0 +170752208499,221,0 +170752208547,222,0 +170752208595,223,0 +170752208644,224,0 +170752208694,224,0 +170752208743,224,0 +170752208793,225,0 +170752208841,225,0 +170752208889,226,0 +170752208937,225,0 +170752208985,216,0 +170752209033,216,0 +170752209081,217,0 +170752209129,219,0 +170752209177,219,0 +170752209225,219,0 +170752209273,220,0 +170752209322,220,0 +170752209370,221,0 +170752209420,221,0 +170752209469,222,0 +170752209519,223,0 +170752209568,224,0 +170752209616,225,0 +170752209664,225,0 +170752209714,225,0 +170752209762,226,0 +170752209810,226,0 +170752209859,218,0 +170752209907,217,0 +170752209957,218,0 +170752210005,219,0 +170752210053,221,0 +170752210101,222,0 +170752210149,221,0 +170752210197,223,0 +170752210245,223,0 +170752210294,224,0 +170752210342,224,0 +170752210390,225,0 +170752210438,227,0 +170752210486,227,0 +170752210534,228,0 +170752210582,226,0 +170752210630,225,0 +170752210677,226,0 +170752210725,220,0 +170752210775,220,0 +170752210823,220,0 +170752210871,221,0 +170752210918,222,0 +170752210968,223,0 +170752211016,225,0 +170752211064,225,0 +170752211113,226,0 +170752211161,226,0 +170752211209,226,0 +170752211257,227,0 +170752211305,226,0 +170752211353,226,0 +170752211401,225,0 +170752211449,227,0 +170752211496,226,0 +170752211544,226,0 +170752211592,225,0 +170752211640,217,0 +170752211688,217,0 +170752211736,218,0 +170752211784,219,0 +170752211832,220,0 +170752211880,220,0 +170752211929,222,0 +170752211977,222,0 +170752212025,224,0 +170752212074,229,0 +170752212122,224,0 +170752212170,226,0 +170752212218,226,0 +170752212266,227,0 +170752212314,227,0 +170752212362,227,0 +170752212411,226,0 +170752212459,225,0 +170752212507,224,0 +170752212555,215,0 +170752212605,215,0 +170752212654,216,0 +170752212702,217,0 +170752212750,219,0 +170752212800,220,0 +170752212848,220,0 +170752212897,220,0 +170752212945,222,0 +170752212993,223,0 +170752213041,223,0 +170752213089,225,0 +170752213138,226,0 +170752213188,226,0 +170752213236,225,0 +170752213284,225,0 +170752213332,226,0 +170752213382,224,0 +170752213431,215,0 +170752213481,215,0 +170752213530,215,0 +170752213580,215,0 +170752213628,216,0 +170752213676,216,0 +170752213725,217,0 +170752213775,217,0 +170752213823,220,0 +170752213871,220,0 +170752213920,221,0 +170752213968,223,0 +170752214018,222,0 +170752214066,223,0 +170752214114,224,0 +170752214162,225,0 +170752214209,225,0 +170752214259,225,0 +170752214308,216,0 +170752214356,215,0 +170752214404,215,0 +170752214452,216,0 +170752214501,217,0 +170752214549,218,0 +170752214597,219,0 +170752214645,219,0 +170752214693,220,0 +170752214741,222,0 +170752214789,221,0 +170752214838,222,0 +170752214886,223,0 +170752214934,224,0 +170752214982,223,0 +170752215030,224,0 +170752215078,224,0 +170752215126,224,0 +170752215173,225,0 +170752215221,216,0 +170752215271,215,0 +170752215319,216,0 +170752215368,216,0 +170752215416,218,0 +170752215464,219,0 +170752215512,219,0 +170752215560,221,0 +170752215608,221,0 +170752215656,222,0 +170752215704,223,0 +170752215752,225,0 +170752215800,227,0 +170752215849,226,0 +170752215897,226,0 +170752215945,226,0 +170752215994,227,0 +170752216042,226,0 +170752216092,216,0 +170752216139,216,0 +170752216187,216,0 +170752216237,216,0 +170752216286,218,0 +170752216334,218,0 +170752216382,220,0 +170752216430,220,0 +170752216478,222,0 +170752216526,223,0 +170752216576,223,0 +170752216624,224,0 +170752216673,226,0 +170752216721,225,0 +170752216771,226,0 +170752216820,226,0 +170752216870,226,0 +170752216919,226,0 +170752216967,217,0 +170752217017,216,0 +170752217065,216,0 +170752217113,217,0 +170752217161,218,0 +170752217209,219,0 +170752217256,219,0 +170752217304,221,0 +170752217352,220,0 +170752217400,222,0 +170752217448,224,0 +170752217496,223,0 +170752217544,224,0 +170752217594,225,0 +170752217642,225,0 +170752217690,229,0 +170752217738,227,0 +170752217787,226,0 +170752217835,225,0 +170752217885,215,0 +170752217933,215,0 +170752217982,216,0 +170752218030,217,0 +170752218078,218,0 +170752218128,219,0 +170752218176,219,0 +170752218224,220,0 +170752218273,221,0 +170752218321,222,0 +170752218369,223,0 +170752218417,223,0 +170752218465,224,0 +170752218514,225,0 +170752218562,225,0 +170752218610,224,0 +170752218658,225,0 +170752218708,225,0 +170752218756,217,0 +170752218804,214,0 +170752218853,215,0 +170752218903,216,0 +170752218951,217,0 +170752219001,218,0 +170752219050,220,0 +170752219100,221,0 +170752219148,220,0 +170752219197,222,0 +170752219246,223,0 +170752219294,224,0 +170752219344,224,0 +170752219392,224,0 +170752219440,225,0 +170752219488,225,0 +170752219536,226,0 +170752219585,225,0 +170752219633,221,0 +170752219683,215,0 +170752219731,215,0 +170752219779,215,0 +170752219826,216,0 +170752219874,217,0 +170752219922,218,0 +170752219972,219,0 +170752220021,219,0 +170752220069,220,0 +170752220119,223,0 +170752220168,222,0 +170752220218,222,0 +170752220268,225,0 +170752220317,224,0 +170752220365,226,0 +170752220413,225,0 +170752220461,225,0 +170752220509,225,0 +170752220559,215,0 +170752220608,215,0 +170752220656,216,0 +170752220704,217,0 +170752220752,218,0 +170752220800,218,0 +170752220849,219,0 +170752220897,220,0 +170752220945,220,0 +170752220995,221,0 +170752221043,223,0 +170752221092,223,0 +170752221142,225,0 +170752221190,226,0 +170752221239,224,0 +170752221287,226,0 +170752221335,227,0 +170752221383,224,0 +170752221431,217,0 +170752221479,215,0 +170752221527,215,0 +170752221577,216,0 +170752221625,216,0 +170752221673,217,0 +170752221722,217,0 +170752221770,219,0 +170752221820,218,0 +170752221868,219,0 +170752221916,220,0 +170752221965,220,0 +170752222013,223,0 +170752222061,223,0 +170752222109,224,0 +170752222159,224,0 +170752222207,224,0 +170752222254,225,0 +170752222304,225,0 +170752222352,215,0 +170752222401,214,0 +170752222449,214,0 +170752222497,214,0 +170752222547,215,0 +170752222595,215,0 +170752222644,215,0 +170752222692,216,0 +170752222740,216,0 +170752222788,216,0 +170752222836,216,0 +170752222886,217,0 +170752222935,218,0 +170752222983,219,0 +170752223033,220,0 +170752223081,222,0 +170752223129,223,0 +170752223176,225,0 +170752223226,216,0 +170752223276,215,0 +170752223325,216,0 +170752223375,215,0 +170752223423,216,0 +170752223472,216,0 +170752223522,216,0 +170752223570,218,0 +170752223618,219,0 +170752223666,223,0 +170752223713,221,0 +170752223761,222,0 +170752223809,222,0 +170752223857,224,0 +170752223907,224,0 +170752223955,225,0 +170752224003,224,0 +170752224052,225,0 +170752224100,217,0 +170752224148,215,0 +170752224196,215,0 +170752224244,216,0 +170752224294,216,0 +170752224343,217,0 +170752224391,218,0 +170752224441,218,0 +170752224489,220,0 +170752224538,222,0 +170752224586,222,0 +170752224636,223,0 +170752224685,225,0 +170752224735,224,0 +170752224784,225,0 +170752224834,226,0 +170752224882,226,0 +170752224930,222,0 +170752224979,218,0 +170752225027,215,0 +170752225077,216,0 +170752225125,216,0 +170752225174,217,0 +170752225222,217,0 +170752225270,218,0 +170752225318,220,0 +170752225367,219,0 +170752225415,221,0 +170752225463,221,0 +170752225511,222,0 +170752225560,224,0 +170752225608,225,0 +170752225656,227,0 +170752225706,225,0 +170752225754,226,0 +170752225803,226,0 +170752225851,226,0 +170752225899,215,0 +170752225947,215,0 +170752225995,216,0 +170752226043,218,0 +170752226092,217,0 +170752226140,218,0 +170752226188,219,0 +170752226238,220,0 +170752226285,222,0 +170752226333,223,0 +170752226381,223,0 +170752226429,224,0 +170752226477,224,0 +170752226525,225,0 +170752226574,227,0 +170752226622,226,0 +170752226672,227,0 +170752226720,225,0 +170752226767,218,0 +170752226815,217,0 +170752226863,218,0 +170752226911,219,0 +170752226959,220,0 +170752227007,221,0 +170752227056,222,0 +170752227104,222,0 +170752227152,223,0 +170752227200,223,0 +170752227250,225,0 +170752227297,225,0 +170752227345,226,0 +170752227395,226,0 +170752227443,225,0 +170752227491,226,0 +170752227538,225,0 +170752227586,221,0 +170752227634,225,0 +170752227682,223,0 +170752227730,218,0 +170752227778,219,0 +170752227826,219,0 +170752227874,221,0 +170752227922,221,0 +170752227970,221,0 +170752228019,223,0 +170752228067,224,0 +170752228117,224,0 +170752228166,225,0 +170752228214,225,0 +170752228264,226,0 +170752228313,226,0 +170752228361,228,0 +170752228411,226,0 +170752228459,226,0 +170752228508,225,0 +170752228556,217,0 +170752228604,216,0 +170752228652,217,0 +170752228702,217,0 +170752228750,219,0 +170752228798,220,0 +170752228847,221,0 +170752228897,222,0 +170752228945,222,0 +170752228993,223,0 +170752229042,223,0 +170752229092,225,0 +170752229141,225,0 +170752229191,225,0 +170752229240,225,0 +170752229290,224,0 +170752229338,226,0 +170752229387,224,0 +170752229437,217,0 +170752229485,215,0 +170752229533,216,0 +170752229581,217,0 +170752229629,218,0 +170752229677,219,0 +170752229725,221,0 +170752229774,220,0 +170752229822,224,0 +170752229870,223,0 +170752229920,223,0 +170752229968,224,0 +170752230016,225,0 +170752230064,225,0 +170752230111,226,0 +170752230159,226,0 +170752230207,226,0 +170752230255,226,0 +170752230305,225,0 +170752230352,215,0 +170752230400,216,0 +170752230448,217,0 +170752230496,218,0 +170752230546,218,0 +170752230593,219,0 +170752230641,219,0 +170752230689,220,0 +170752230739,221,0 +170752230787,223,0 +170752230834,224,0 +170752230882,224,0 +170752230930,225,0 +170752230978,225,0 +170752231026,226,0 +170752231074,225,0 +170752231122,226,0 +170752231170,225,0 +170752231219,217,0 +170752231267,215,0 +170752231315,216,0 +170752231363,217,0 +170752231411,218,0 +170752231459,219,0 +170752231507,220,0 +170752231555,221,0 +170752231603,221,0 +170752231650,221,0 +170752231700,223,0 +170752231750,225,0 +170752231799,224,0 +170752231849,224,0 +170752231897,228,0 +170752231946,225,0 +170752231996,225,0 +170752232045,226,0 +170752232093,224,0 +170752232141,215,0 +170752232189,216,0 +170752232239,217,0 +170752232288,218,0 +170752232336,220,0 +170752232384,220,0 +170752232432,221,0 +170752232480,221,0 +170752232529,223,0 +170752232577,224,0 +170752232627,224,0 +170752232675,225,0 +170752232724,225,0 +170752232772,226,0 +170752232820,226,0 +170752232868,227,0 +170752232918,228,0 +170752232967,224,0 +170752233017,216,0 +170752233065,215,0 +170752233113,215,0 +170752233162,217,0 +170752233210,218,0 +170752233260,219,0 +170752233308,220,0 +170752233356,221,0 +170752233405,221,0 +170752233453,223,0 +170752233503,224,0 +170752233552,225,0 +170752233602,225,0 +170752233650,226,0 +170752233699,227,0 +170752233749,226,0 +170752233798,227,0 +170752233846,226,0 +170752233894,217,0 +170752233944,215,0 +170752233992,214,0 +170752234041,215,0 +170752234089,217,0 +170752234137,218,0 +170752234185,219,0 +170752234233,221,0 +170752234281,220,0 +170752234330,222,0 +170752234378,221,0 +170752234428,221,0 +170752234476,221,0 +170752234524,224,0 +170752234572,225,0 +170752234620,224,0 +170752234669,224,0 +170752234719,225,0 +170752234767,224,0 +170752234815,216,0 +170752234863,216,0 +170752234912,216,0 +170752234960,218,0 +170752235008,218,0 +170752235058,218,0 +170752235107,220,0 +170752235155,220,0 +170752235203,221,0 +170752235251,222,0 +170752235301,223,0 +170752235350,224,0 +170752235398,224,0 +170752235446,225,0 +170752235494,226,0 +170752235544,226,0 +170752235592,225,0 +170752235640,225,0 +170752235689,216,0 +170752235739,215,0 +170752235788,215,0 +170752235838,215,0 +170752235886,216,0 +170752235935,218,0 +170752235984,218,0 +170752236032,219,0 +170752236082,220,0 +170752236131,221,0 +170752236181,222,0 +170752236229,223,0 +170752236277,224,0 +170752236326,225,0 +170752236374,224,0 +170752236424,226,0 +170752236472,226,0 +170752236520,225,0 +170752236568,217,0 +170752236617,215,0 +170752236665,215,0 +170752236715,216,0 +170752236763,217,0 +170752236812,217,0 +170752236860,217,0 +170752236908,219,0 +170752236956,220,0 +170752237006,222,0 +170752237054,222,0 +170752237102,222,0 +170752237151,225,0 +170752237201,225,0 +170752237249,225,0 +170752237297,225,0 +170752237346,224,0 +170752237394,225,0 +170752237444,226,0 +170752237493,215,0 +170752237541,215,0 +170752237589,215,0 +170752237637,215,0 +170752237687,216,0 +170752237736,217,0 +170752237784,215,0 +170752237832,218,0 +170752237880,220,0 +170752237930,220,0 +170752237978,222,0 +170752238026,222,0 +170752238074,225,0 +170752238123,226,0 +170752238171,225,0 +170752238221,224,0 +170752238269,223,0 +170752238317,225,0 +170752238364,217,0 +170752238412,215,0 +170752238460,215,0 +170752238508,216,0 +170752238558,217,0 +170752238607,217,0 +170752238657,218,0 +170752238705,220,0 +170752238752,219,0 +170752238800,221,0 +170752238848,223,0 +170752238896,222,0 +170752238945,224,0 +170752238993,226,0 +170752239041,225,0 +170752239091,226,0 +170752239139,226,0 +170752239187,228,0 +170752239235,216,0 +170752239283,215,0 +170752239332,215,0 +170752239382,216,0 +170752239430,217,0 +170752239478,218,0 +170752239526,219,0 +170752239574,219,0 +170752239623,220,0 +170752239671,221,0 +170752239719,221,0 +170752239767,223,0 +170752239815,223,0 +170752239863,224,0 +170752239911,226,0 +170752239959,225,0 +170752240009,225,0 +170752240057,226,0 +170752240106,226,0 +170752240156,216,0 +170752240205,215,0 +170752240255,217,0 +170752240304,217,0 +170752240352,218,0 +170752240400,218,0 +170752240448,219,0 +170752240498,220,0 +170752240547,221,0 +170752240597,221,0 +170752240645,223,0 +170752240693,224,0 +170752240742,225,0 +170752240790,226,0 +170752240838,226,0 +170752240888,226,0 +170752240937,226,0 +170752240987,225,0 +170752241035,217,0 +170752241083,215,0 +170752241131,216,0 +170752241179,217,0 +170752241229,218,0 +170752241277,218,0 +170752241326,220,0 +170752241374,221,0 +170752241422,220,0 +170752241470,222,0 +170752241519,223,0 +170752241569,224,0 +170752241617,225,0 +170752241665,225,0 +170752241715,227,0 +170752241764,225,0 +170752241812,227,0 +170752241862,226,0 +170752241910,222,0 +170752241958,215,0 +170752242005,216,0 +170752242053,218,0 +170752242103,219,0 +170752242151,219,0 +170752242199,219,0 +170752242247,221,0 +170752242295,220,0 +170752242343,223,0 +170752242392,223,0 +170752242440,223,0 +170752242488,223,0 +170752242536,225,0 +170752242584,228,0 +170752242634,226,0 +170752242682,225,0 +170752242730,225,0 +170752242778,224,0 +170752242827,216,0 +170752242877,215,0 +170752242926,216,0 +170752242976,217,0 +170752243025,218,0 +170752243075,218,0 +170752243124,219,0 +170752243174,220,0 +170752243222,221,0 +170752243271,221,0 +170752243319,221,0 +170752243367,223,0 +170752243417,224,0 +170752243465,224,0 +170752243513,224,0 +170752243561,226,0 +170752243609,224,0 +170752243657,225,0 +170752243705,217,0 +170752243753,215,0 +170752243802,215,0 +170752243850,216,0 +170752243898,217,0 +170752243947,218,0 +170752243995,218,0 +170752244045,220,0 +170752244095,221,0 +170752244143,222,0 +170752244190,222,0 +170752244240,223,0 +170752244288,224,0 +170752244336,225,0 +170752244384,225,0 +170752244432,225,0 +170752244481,225,0 +170752244529,226,0 +170752244577,225,0 +170752244625,215,0 +170752244673,215,0 +170752244721,215,0 +170752244769,216,0 +170752244816,217,0 +170752244864,218,0 +170752244912,217,0 +170752244960,219,0 +170752245008,220,0 +170752245057,221,0 +170752245107,222,0 +170752245155,223,0 +170752245203,223,0 +170752245250,224,0 +170752245298,225,0 +170752245348,224,0 +170752245396,225,0 +170752245444,224,0 +170752245491,216,0 +170752245539,214,0 +170752245587,215,0 +170752245635,215,0 +170752245683,215,0 +170752245731,216,0 +170752245779,216,0 +170752245828,217,0 +170752245876,217,0 +170752245924,219,0 +170752245972,220,0 +170752246020,222,0 +170752246068,223,0 +170752246117,222,0 +170752246165,223,0 +170752246213,224,0 +170752246263,225,0 +170752246312,225,0 +170752246360,217,0 +170752246410,215,0 +170752246459,215,0 +170752246507,216,0 +170752246555,215,0 +170752246603,216,0 +170752246651,216,0 +170752246699,216,0 +170752246747,217,0 +170752246797,217,0 +170752246846,218,0 +170752246894,219,0 +170752246942,220,0 +170752246992,220,0 +170752247040,221,0 +170752247087,222,0 +170752247135,222,0 +170752247183,224,0 +170752247231,225,0 +170752247281,216,0 +170752247330,215,0 +170752247378,215,0 +170752247426,216,0 +170752247474,215,0 +170752247521,216,0 +170752247569,217,0 +170752247617,218,0 +170752247665,219,0 +170752247713,220,0 +170752247761,226,0 +170752247809,221,0 +170752247857,222,0 +170752247906,223,0 +170752247954,225,0 +170752248004,231,0 +170752248052,225,0 +170752248099,225,0 +170752248147,225,0 +170752248195,216,0 +170752248243,216,0 +170752248291,217,0 +170752248339,216,0 +170752248387,219,0 +170752248436,219,0 +170752248484,219,0 +170752248532,220,0 +170752248582,221,0 +170752248630,222,0 +170752248678,221,0 +170752248726,222,0 +170752248775,225,0 +170752248825,224,0 +170752248873,225,0 +170752248921,225,0 +170752248970,225,0 +170752249018,224,0 +170752249066,216,0 +170752249114,215,0 +170752249164,216,0 +170752249213,218,0 +170752249261,220,0 +170752249310,219,0 +170752249360,220,0 +170752249409,220,0 +170752249457,221,0 +170752249505,222,0 +170752249553,223,0 +170752249601,223,0 +170752249649,224,0 +170752249697,227,0 +170752249745,227,0 +170752249792,224,0 +170752249840,226,0 +170752249888,225,0 +170752249936,217,0 +170752249984,214,0 +170752250033,216,0 +170752250081,217,0 +170752250129,218,0 +170752250177,218,0 +170752250227,219,0 +170752250275,220,0 +170752250323,222,0 +170752250371,222,0 +170752250419,224,0 +170752250467,224,0 +170752250516,224,0 +170752250564,226,0 +170752250614,227,0 +170752250662,225,0 +170752250710,226,0 +170752250758,226,0 +170752250806,224,0 +170752250854,215,0 +170752250901,215,0 +170752250949,215,0 +170752250997,215,0 +170752251045,216,0 +170752251095,217,0 +170752251144,218,0 +170752251192,219,0 +170752251241,220,0 +170752251289,221,0 +170752251337,223,0 +170752251387,223,0 +170752251435,223,0 +170752251484,225,0 +170752251532,222,0 +170752251580,226,0 +170752251628,224,0 +170752251677,225,0 +170752251725,217,0 +170752251775,215,0 +170752251823,215,0 +170752251872,216,0 +170752251920,216,0 +170752251968,219,0 +170752252016,217,0 +170752252064,218,0 +170752252112,220,0 +170752252159,222,0 +170752252207,223,0 +170752252255,223,0 +170752252303,224,0 +170752252351,225,0 +170752252400,224,0 +170752252448,224,0 +170752252496,225,0 +170752252546,225,0 +170752252594,225,0 +170752252643,215,0 +170752252691,215,0 +170752252741,215,0 +170752252790,216,0 +170752252840,216,0 +170752252889,217,0 +170752252939,217,0 +170752252987,218,0 +170752253035,219,0 +170752253084,220,0 +170752253134,221,0 +170752253181,222,0 +170752253229,223,0 +170752253277,223,0 +170752253325,224,0 +170752253373,224,0 +170752253421,224,0 +170752253471,225,0 +170752253518,216,0 +170752253566,215,0 +170752253614,216,0 +170752253662,217,0 +170752253712,219,0 +170752253760,218,0 +170752253807,219,0 +170752253855,219,0 +170752253903,221,0 +170752253951,221,0 +170752253999,222,0 +170752254047,223,0 +170752254096,224,0 +170752254144,224,0 +170752254192,226,0 +170752254240,225,0 +170752254289,226,0 +170752254337,223,0 +170752254385,217,0 +170752254435,215,0 +170752254484,217,0 +170752254534,217,0 +170752254582,218,0 +170752254629,220,0 +170752254677,219,0 +170752254727,220,0 +170752254776,220,0 +170752254824,221,0 +170752254873,222,0 +170752254921,224,0 +170752254969,224,0 +170752255017,224,0 +170752255065,224,0 +170752255113,225,0 +170752255161,225,0 +170752255209,226,0 +170752255256,225,0 +170752255304,218,0 +170752255354,219,0 +170752255402,220,0 +170752255450,220,0 +170752255499,222,0 +170752255547,222,0 +170752255595,223,0 +170752255643,223,0 +170752255691,225,0 +170752255740,224,0 +170752255790,226,0 +170752255837,226,0 +170752255885,226,0 +170752255933,225,0 +170752255981,226,0 +170752256029,226,0 +170752256077,226,0 +170752256125,226,0 +170752256173,218,0 +170752256221,218,0 +170752256269,219,0 +170752256317,221,0 +170752256365,221,0 +170752256412,222,0 +170752256460,223,0 +170752256508,224,0 +170752256556,225,0 +170752256604,224,0 +170752256654,225,0 +170752256703,227,0 +170752256751,227,0 +170752256801,225,0 +170752256850,225,0 +170752256898,226,0 +170752256946,226,0 +170752256996,227,0 +170752257043,224,0 +170752257093,217,0 +170752257141,218,0 +170752257189,219,0 +170752257237,220,0 +170752257285,220,0 +170752257332,221,0 +170752257380,221,0 +170752257428,223,0 +170752257478,223,0 +170752257526,224,0 +170752257574,224,0 +170752257623,225,0 +170752257673,226,0 +170752257722,226,0 +170752257770,225,0 +170752257820,227,0 +170752257869,225,0 +170752257917,224,0 +170752257965,216,0 +170752258013,216,0 +170752258061,217,0 +170752258111,218,0 +170752258158,220,0 +170752258208,220,0 +170752258258,220,0 +170752258306,221,0 +170752258355,222,0 +170752258403,222,0 +170752258451,223,0 +170752258501,224,0 +170752258550,224,0 +170752258598,225,0 +170752258648,225,0 +170752258697,225,0 +170752258747,225,0 +170752258795,225,0 +170752258843,217,0 +170752258892,215,0 +170752258940,216,0 +170752258988,217,0 +170752259036,218,0 +170752259085,219,0 +170752259133,219,0 +170752259181,220,0 +170752259229,221,0 +170752259279,221,0 +170752259327,223,0 +170752259375,224,0 +170752259423,225,0 +170752259472,224,0 +170752259522,224,0 +170752259570,225,0 +170752259618,225,0 +170752259666,225,0 +170752259715,223,0 +170752259763,215,0 +170752259813,215,0 +170752259860,216,0 +170752259910,217,0 +170752259958,218,0 +170752260006,218,0 +170752260054,218,0 +170752260102,219,0 +170752260150,219,0 +170752260199,220,0 +170752260247,222,0 +170752260295,223,0 +170752260343,223,0 +170752260393,224,0 +170752260441,225,0 +170752260491,224,0 +170752260538,224,0 +170752260586,225,0 +170752260634,216,0 +170752260682,215,0 +170752260730,215,0 +170752260780,214,0 +170752260830,216,0 +170752260879,216,0 +170752260927,216,0 +170752260975,218,0 +170752261023,219,0 +170752261071,220,0 +170752261119,223,0 +170752261168,221,0 +170752261218,222,0 +170752261266,224,0 +170752261316,225,0 +170752261365,224,0 +170752261415,224,0 +170752261464,225,0 +170752261514,216,0 +170752261563,215,0 +170752261611,215,0 +170752261659,215,0 +170752261709,215,0 +170752261758,217,0 +170752261806,217,0 +170752261854,218,0 +170752261902,219,0 +170752261950,219,0 +170752261998,220,0 +170752262046,222,0 +170752262096,223,0 +170752262145,223,0 +170752262193,223,0 +170752262241,224,0 +170752262289,225,0 +170752262339,225,0 +170752262388,224,0 +170752262438,215,0 +170752262487,215,0 +170752262535,215,0 +170752262585,217,0 +170752262634,216,0 +170752262684,218,0 +170752262732,218,0 +170752262781,219,0 +170752262831,220,0 +170752262879,221,0 +170752262928,224,0 +170752262978,223,0 +170752263026,223,0 +170752263076,224,0 +170752263125,225,0 +170752263173,225,0 +170752263222,224,0 +170752263270,224,0 +170752263320,215,0 +170752263370,215,0 +170752263417,215,0 +170752263467,215,0 +170752263515,216,0 +170752263565,217,0 +170752263613,218,0 +170752263660,218,0 +170752263708,220,0 +170752263758,222,0 +170752263806,221,0 +170752263854,222,0 +170752263902,223,0 +170752263949,224,0 +170752263997,225,0 +170752264045,225,0 +170752264093,225,0 +170752264141,224,0 +170752264189,216,0 +170752264239,215,0 +170752264286,215,0 +170752264334,215,0 +170752264382,215,0 +170752264430,216,0 +170752264478,216,0 +170752264528,216,0 +170752264575,218,0 +170752264623,218,0 +170752264673,217,0 +170752264721,221,0 +170752264768,222,0 +170752264816,223,0 +170752264864,223,0 +170752264912,224,0 +170752264960,224,0 +170752265008,224,0 +170752265056,224,0 +170752265104,215,0 +170752265153,215,0 +170752265201,215,0 +170752265249,215,0 +170752265297,216,0 +170752265347,217,0 +170752265394,218,0 +170752265442,219,0 +170752265492,219,0 +170752265540,221,0 +170752265589,222,0 +170752265637,225,0 +170752265685,224,0 +170752265735,224,0 +170752265782,225,0 +170752265830,225,0 +170752265878,227,0 +170752265926,225,0 +170752265976,217,0 +170752266023,215,0 +170752266071,215,0 +170752266121,216,0 +170752266170,217,0 +170752266218,217,0 +170752266266,218,0 +170752266314,218,0 +170752266362,219,0 +170752266411,222,0 +170752266459,222,0 +170752266507,223,0 +170752266555,223,0 +170752266603,223,0 +170752266651,224,0 +170752266699,227,0 +170752266747,224,0 +170752266795,225,0 +170752266845,219,0 +170752266893,215,0 +170752266941,215,0 +170752266990,215,0 +170752267038,217,0 +170752267086,218,0 +170752267135,219,0 +170752267183,219,0 +170752267231,220,0 +170752267279,223,0 +170752267327,221,0 +170752267375,223,0 +170752267424,223,0 +170752267474,223,0 +170752267521,225,0 +170752267569,226,0 +170752267617,225,0 +170752267667,225,0 +170752267715,225,0 +170752267763,216,0 +170752267812,215,0 +170752267860,215,0 +170752267908,216,0 +170752267956,218,0 +170752268004,218,0 +170752268053,218,0 +170752268101,219,0 +170752268149,221,0 +170752268197,223,0 +170752268245,224,0 +170752268292,225,0 +170752268340,223,0 +170752268388,226,0 +170752268436,225,0 +170752268484,226,0 +170752268532,225,0 +170752268580,226,0 +170752268629,216,0 +170752268677,215,0 +170752268727,217,0 +170752268775,217,0 +170752268824,218,0 +170752268872,219,0 +170752268920,220,0 +170752268968,221,0 +170752269017,221,0 +170752269065,222,0 +170752269113,223,0 +170752269161,223,0 +170752269209,224,0 +170752269257,225,0 +170752269305,226,0 +170752269352,225,0 +170752269400,227,0 +170752269448,227,0 +170752269496,225,0 +170752269544,215,0 +170752269593,215,0 +170752269641,216,0 +170752269689,217,0 +170752269737,219,0 +170752269785,218,0 +170752269833,218,0 +170752269881,220,0 +170752269928,221,0 +170752269976,221,0 +170752270024,222,0 +170752270072,224,0 +170752270120,224,0 +170752270168,226,0 +170752270216,225,0 +170752270264,225,0 +170752270313,225,0 +170752270361,225,0 +170752270411,217,0 +170752270459,215,0 +170752270508,217,0 +170752270556,218,0 +170752270604,220,0 +170752270652,219,0 +170752270700,221,0 +170752270748,222,0 +170752270797,222,0 +170752270845,223,0 +170752270893,223,0 +170752270941,224,0 +170752270990,224,0 +170752271040,225,0 +170752271088,226,0 +170752271136,224,0 +170752271184,226,0 +170752271233,226,0 +170752271281,225,0 +170752271329,216,0 +170752271377,216,0 +170752271425,218,0 +170752271473,218,0 +170752271521,220,0 +170752271568,220,0 +170752271616,221,0 +170752271664,222,0 +170752271712,223,0 +170752271762,223,0 +170752271811,224,0 +170752271859,225,0 +170752271909,225,0 +170752271956,225,0 +170752272006,226,0 +170752272054,225,0 +170752272102,226,0 +170752272150,224,0 +170752272197,217,0 +170752272245,215,0 +170752272293,216,0 +170752272341,217,0 +170752272389,219,0 +170752272437,219,0 +170752272486,220,0 +170752272534,221,0 +170752272582,222,0 +170752272630,220,0 +170752272678,223,0 +170752272726,224,0 +170752272774,225,0 +170752272822,225,0 +170752272871,224,0 +170752272919,223,0 +170752272967,222,0 +170752273015,224,0 +170752273063,224,0 +170752273111,215,0 +170752273158,215,0 +170752273208,215,0 +170752273256,215,0 +170752273304,216,0 +170752273352,217,0 +170752273400,218,0 +170752273447,219,0 +170752273495,221,0 +170752273543,222,0 +170752273591,222,0 +170752273639,223,0 +170752273687,222,0 +170752273735,225,0 +170752273783,224,0 +170752273831,224,0 +170752273879,223,0 +170752273927,225,0 +170752273975,216,0 +170752274023,215,0 +170752274072,215,0 +170752274120,215,0 +170752274168,216,0 +170752274216,217,0 +170752274266,216,0 +170752274315,220,0 +170752274363,218,0 +170752274411,219,0 +170752274459,221,0 +170752274507,223,0 +170752274555,222,0 +170752274603,223,0 +170752274650,223,0 +170752274698,223,0 +170752274746,224,0 +170752274796,224,0 +170752274844,227,0 +170752274892,216,0 +170752274940,215,0 +170752274987,215,0 +170752275035,216,0 +170752275083,217,0 +170752275131,218,0 +170752275181,219,0 +170752275229,219,0 +170752275277,220,0 +170752275325,221,0 +170752275373,222,0 +170752275421,222,0 +170752275470,224,0 +170752275520,224,0 +170752275569,223,0 +170752275617,225,0 +170752275667,224,0 +170752275715,225,0 +170752275764,216,0 +170752275814,216,0 +170752275863,217,0 +170752275911,218,0 +170752275959,218,0 +170752276007,220,0 +170752276055,221,0 +170752276103,222,0 +170752276151,224,0 +170752276198,224,0 +170752276246,223,0 +170752276294,225,0 +170752276342,225,0 +170752276390,225,0 +170752276438,227,0 +170752276486,226,0 +170752276534,225,0 +170752276583,224,0 +170752276631,224,0 +170752276679,216,0 +170752276727,217,0 +170752276776,219,0 +170752276824,220,0 +170752276874,219,0 +170752276923,220,0 +170752276973,221,0 +170752277021,222,0 +170752277069,223,0 +170752277116,225,0 +170752277166,226,0 +170752277214,225,0 +170752277262,226,0 +170752277310,233,0 +170752277357,229,0 +170752277407,226,0 +170752277456,226,0 +170752277504,224,0 +170752277552,217,0 +170752277602,216,0 +170752277650,217,0 +170752277697,218,0 +170752277745,220,0 +170752277793,220,0 +170752277841,220,0 +170752277889,221,0 +170752277937,222,0 +170752277985,223,0 +170752278033,223,0 +170752278080,224,0 +170752278128,226,0 +170752278176,225,0 +170752278224,225,0 +170752278272,224,0 +170752278320,224,0 +170752278368,224,0 +170752278416,223,0 +170752278464,215,0 +170752278513,216,0 +170752278561,215,0 +170752278609,216,0 +170752278657,217,0 +170752278706,214,0 +170752278754,215,0 +170752278802,215,0 +170752278850,221,0 +170752278900,221,0 +170752278949,222,0 +170752278999,222,0 +170752279049,226,0 +170752279096,225,0 +170752279146,223,0 +170752279196,224,0 +170752279245,224,0 +170752279293,223,0 +170752279341,215,0 +170752279391,215,0 +170752279439,215,0 +170752279487,215,0 +170752279536,216,0 +170752279586,216,0 +170752279633,217,0 +170752279683,217,0 +170752279732,218,0 +170752279782,220,0 +170752279830,216,0 +170752279879,220,0 +170752279927,222,0 +170752279975,223,0 +170752280023,223,0 +170752280071,223,0 +170752280119,222,0 +170752280167,225,0 +170752280215,216,0 +170752280264,215,0 +170752280314,215,0 +170752280361,215,0 +170752280409,216,0 +170752280457,216,0 +170752280507,216,0 +170752280556,217,0 +170752280604,220,0 +170752280654,220,0 +170752280704,221,0 +170752280751,221,0 +170752280801,222,0 +170752280849,222,0 +170752280898,224,0 +170752280948,225,0 +170752280996,225,0 +170752281045,225,0 +170752281095,216,0 +170752281144,215,0 +170752281194,215,0 +170752281243,215,0 +170752281291,216,0 +170752281339,217,0 +170752281387,218,0 +170752281435,219,0 +170752281483,221,0 +170752281531,220,0 +170752281579,222,0 +170752281629,221,0 +170752281677,222,0 +170752281726,224,0 +170752281774,226,0 +170752281824,225,0 +170752281873,225,0 +170752281921,225,0 +170752281969,224,0 +170752282017,215,0 +170752282067,215,0 +170752282115,216,0 +170752282162,217,0 +170752282212,218,0 +170752282260,218,0 +170752282310,218,0 +170752282358,219,0 +170752282405,220,0 +170752282455,222,0 +170752282504,221,0 +170752282554,226,0 +170752282602,224,0 +170752282650,224,0 +170752282699,224,0 +170752282747,224,0 +170752282795,224,0 +170752282843,224,0 +170752282891,215,0 +170752282939,216,0 +170752282987,217,0 +170752283035,217,0 +170752283085,218,0 +170752283134,219,0 +170752283184,220,0 +170752283233,220,0 +170752283283,221,0 +170752283331,222,0 +170752283379,222,0 +170752283428,222,0 +170752283476,223,0 +170752283524,223,0 +170752283572,224,0 +170752283620,226,0 +170752283670,225,0 +170752283718,225,0 +170752283766,217,0 +170752283814,215,0 +170752283863,216,0 +170752283913,217,0 +170752283962,219,0 +170752284010,219,0 +170752284059,219,0 +170752284107,220,0 +170752284155,221,0 +170752284203,222,0 +170752284251,222,0 +170752284299,223,0 +170752284347,224,0 +170752284395,225,0 +170752284443,226,0 +170752284490,225,0 +170752284538,225,0 +170752284586,226,0 +170752284634,224,0 +170752284682,216,0 +170752284730,216,0 +170752284780,217,0 +170752284828,218,0 +170752284877,223,0 +170752284925,220,0 +170752284975,219,0 +170752285023,221,0 +170752285072,221,0 +170752285120,222,0 +170752285168,223,0 +170752285216,225,0 +170752285264,224,0 +170752285312,225,0 +170752285360,225,0 +170752285409,225,0 +170752285457,227,0 +170752285505,225,0 +170752285553,217,0 +170752285601,215,0 +170752285649,215,0 +170752285698,217,0 +170752285746,218,0 +170752285794,219,0 +170752285842,220,0 +170752285890,220,0 +170752285940,221,0 +170752285988,223,0 +170752286035,224,0 +170752286083,224,0 +170752286131,225,0 +170752286179,227,0 +170752286227,226,0 +170752286275,226,0 +170752286323,225,0 +170752286371,225,0 +170752286419,222,0 +170752286467,215,0 +170752286514,215,0 +170752286562,216,0 +170752286610,216,0 +170752286658,218,0 +170752286706,218,0 +170752286756,219,0 +170752286804,219,0 +170752286852,220,0 +170752286900,222,0 +170752286947,222,0 +170752286997,224,0 +170752287047,225,0 +170752287094,225,0 +170752287144,225,0 +170752287193,225,0 +170752287243,225,0 +170752287291,225,0 +170752287339,216,0 +170752287387,215,0 +170752287436,215,0 +170752287484,216,0 +170752287532,217,0 +170752287580,217,0 +170752287628,218,0 +170752287676,220,0 +170752287724,220,0 +170752287772,221,0 +170752287822,222,0 +170752287871,222,0 +170752287921,224,0 +170752287970,223,0 +170752288020,225,0 +170752288069,226,0 +170752288119,225,0 +170752288167,225,0 +170752288215,217,0 +170752288264,215,0 +170752288312,215,0 +170752288360,215,0 +170752288408,216,0 +170752288458,217,0 +170752288507,217,0 +170752288555,218,0 +170752288603,220,0 +170752288651,221,0 +170752288701,222,0 +170752288749,223,0 +170752288797,223,0 +170752288846,225,0 +170752288895,226,0 +170752288943,227,0 +170752288992,226,0 +170752289042,225,0 +170752289090,220,0 +170752289138,215,0 +170752289187,215,0 +170752289235,215,0 +170752289285,215,0 +170752289334,216,0 +170752289382,216,0 +170752289432,216,0 +170752289481,217,0 +170752289529,218,0 +170752289577,220,0 +170752289627,221,0 +170752289675,223,0 +170752289725,223,0 +170752289773,224,0 +170752289820,224,0 +170752289870,225,0 +170752289918,225,0 +170752289966,224,0 +170752290014,216,0 +170752290062,215,0 +170752290110,215,0 +170752290158,216,0 +170752290206,216,0 +170752290253,216,0 +170752290301,217,0 +170752290351,218,0 +170752290399,218,0 +170752290447,220,0 +170752290494,220,0 +170752290542,218,0 +170752290592,224,0 +170752290640,224,0 +170752290688,223,0 +170752290737,225,0 +170752290787,225,0 +170752290837,226,0 +170752290884,217,0 +170752290932,216,0 +170752290980,216,0 +170752291029,217,0 +170752291076,217,0 +170752291124,219,0 +170752291172,219,0 +170752291220,219,0 +170752291268,220,0 +170752291316,220,0 +170752291364,221,0 +170752291414,222,0 +170752291463,223,0 +170752291511,223,0 +170752291561,224,0 +170752291609,224,0 +170752291657,224,0 +170752291706,224,0 +170752291754,222,0 +170752291802,215,0 +170752291852,216,0 +170752291901,217,0 +170752291949,218,0 +170752291997,219,0 +170752292045,219,0 +170752292093,219,0 +170752292142,221,0 +170752292190,221,0 +170752292238,221,0 +170752292286,223,0 +170752292334,223,0 +170752292382,225,0 +170752292430,225,0 +170752292478,225,0 +170752292526,225,0 +170752292573,226,0 +170752292621,226,0 +170752292669,216,0 +170752292719,216,0 +170752292767,217,0 +170752292815,218,0 +170752292864,218,0 +170752292914,220,0 +170752292962,221,0 +170752293010,221,0 +170752293059,222,0 +170752293109,223,0 +170752293158,224,0 +170752293206,224,0 +170752293256,224,0 +170752293305,225,0 +170752293355,225,0 +170752293403,225,0 +170752293451,227,0 +170752293499,225,0 +170752293548,217,0 +170752293596,215,0 +170752293644,217,0 +170752293692,219,0 +170752293742,218,0 +170752293790,220,0 +170752293839,220,0 +170752293889,221,0 +170752293938,222,0 +170752293988,222,0 +170752294037,224,0 +170752294087,224,0 +170752294137,224,0 +170752294186,225,0 +170752294236,225,0 +170752294284,226,0 +170752294331,226,0 +170752294379,226,0 +170752294429,224,0 +170752294477,216,0 +170752294525,216,0 +170752294575,217,0 +170752294622,218,0 +170752294672,219,0 +170752294722,219,0 +170752294771,221,0 +170752294819,222,0 +170752294867,223,0 +170752294915,223,0 +170752294963,223,0 +170752295011,227,0 +170752295061,226,0 +170752295109,224,0 +170752295156,223,0 +170752295204,225,0 +170752295254,225,0 +170752295304,224,0 +170752295353,215,0 +170752295401,215,0 +170752295449,215,0 +170752295499,215,0 +170752295547,216,0 +170752295594,216,0 +170752295642,216,0 +170752295690,215,0 +170752295738,218,0 +170752295786,218,0 +170752295834,221,0 +170752295884,221,0 +170752295933,221,0 +170752295983,222,0 +170752296031,224,0 +170752296078,224,0 +170752296126,224,0 +170752296176,225,0 +170752296224,217,0 +170752296272,215,0 +170752296319,216,0 +170752296367,216,0 +170752296417,217,0 +170752296466,218,0 +170752296516,218,0 +170752296563,219,0 +170752296611,220,0 +170752296661,221,0 +170752296709,222,0 +170752296757,223,0 +170752296805,222,0 +170752296854,225,0 +170752296902,223,0 +170752296950,225,0 +170752296998,226,0 +170752297048,225,0 +170752297097,224,0 +170752297145,216,0 +170752297195,215,0 +170752297242,215,0 +170752297292,216,0 +170752297340,218,0 +170752297389,219,0 +170752297439,219,0 +170752297489,220,0 +170752297537,221,0 +170752297586,221,0 +170752297636,221,0 +170752297684,222,0 +170752297732,222,0 +170752297779,225,0 +170752297827,225,0 +170752297877,224,0 +170752297925,224,0 +170752297974,225,0 +170752298022,216,0 +170752298072,216,0 +170752298120,217,0 +170752298169,218,0 +170752298217,218,0 +170752298265,219,0 +170752298313,220,0 +170752298361,220,0 +170752298409,221,0 +170752298457,223,0 +170752298505,223,0 +170752298553,225,0 +170752298601,226,0 +170752298649,225,0 +170752298699,225,0 +170752298747,226,0 +170752298795,226,0 +170752298843,225,0 +170752298892,217,0 +170752298942,216,0 +170752298990,218,0 +170752299037,219,0 +170752299087,220,0 +170752299136,221,0 +170752299184,222,0 +170752299234,222,0 +170752299282,223,0 +170752299330,223,0 +170752299378,226,0 +170752299427,224,0 +170752299475,225,0 +170752299525,226,0 +170752299573,225,0 +170752299622,225,0 +170752299672,225,0 +170752299720,225,0 +170752299768,223,0 +170752299816,215,0 +170752299865,216,0 +170752299915,219,0 +170752299964,218,0 +170752300012,219,0 +170752300060,219,0 +170752300108,221,0 +170752300156,222,0 +170752300204,222,0 +170752300252,224,0 +170752300300,224,0 +170752300347,225,0 +170752300395,225,0 +170752300443,225,0 +170752300493,226,0 +170752300542,225,0 +170752300592,225,0 +170752300640,224,0 +170752300688,216,0 +170752300736,215,0 +170752300784,215,0 +170752300833,215,0 +170752300881,216,0 +170752300929,216,0 +170752300977,217,0 +170752301025,217,0 +170752301074,219,0 +170752301122,220,0 +170752301171,222,0 +170752301219,221,0 +170752301267,222,0 +170752301315,223,0 +170752301363,224,0 +170752301411,224,0 +170752301459,225,0 +170752301508,225,0 +170752301556,217,0 +170752301604,215,0 +170752301652,215,0 +170752301701,215,0 +170752301749,215,0 +170752301797,216,0 +170752301845,216,0 +170752301893,216,0 +170752301940,217,0 +170752301988,218,0 +170752302036,218,0 +170752302084,219,0 +170752302132,221,0 +170752302182,220,0 +170752302230,221,0 +170752302277,222,0 +170752302325,221,0 +170752302373,223,0 +170752302421,223,0 +170752302469,224,0 +170752302517,226,0 +170752302565,227,0 +170752302613,232,0 +170752302661,226,0 +170752302708,226,0 +170752302758,225,0 +170752302806,224,0 +170752302854,224,0 +170752302901,216,0 +170752302949,215,0 +170752302997,215,0 +170752303045,215,0 +170752303093,216,0 +170752303141,217,0 +170752303190,218,0 +170752303240,219,0 +170752303288,220,0 +170752303336,220,0 +170752303384,220,0 +170752303432,223,0 +170752303480,222,0 +170752303529,224,0 +170752303579,224,0 +170752303627,224,0 +170752303676,224,0 +170752303726,226,0 +170752303775,217,0 +170752303825,216,0 +170752303873,217,0 +170752303922,216,0 +170752303971,217,0 +170752304019,218,0 +170752304069,218,0 +170752304119,219,0 +170752304168,220,0 +170752304216,220,0 +170752304264,220,0 +170752304314,223,0 +170752304361,223,0 +170752304409,224,0 +170752304457,226,0 +170752304507,225,0 +170752304554,224,0 +170752304604,226,0 +170752304652,226,0 +170752304699,215,0 +170752304747,215,0 +170752304795,215,0 +170752304843,216,0 +170752304891,216,0 +170752304939,217,0 +170752304987,218,0 +170752305034,218,0 +170752305082,219,0 +170752305130,220,0 +170752305178,222,0 +170752305226,221,0 +170752305274,223,0 +170752305323,223,0 +170752305371,224,0 +170752305419,225,0 +170752305467,225,0 +170752305515,225,0 +170752305563,217,0 +170752305611,215,0 +170752305658,216,0 +170752305706,216,0 +170752305754,217,0 +170752305802,218,0 +170752305850,219,0 +170752305898,219,0 +170752305948,221,0 +170752305996,221,0 +170752306045,222,0 +170752306095,223,0 +170752306144,225,0 +170752306194,224,0 +170752306242,224,0 +170752306290,225,0 +170752306339,227,0 +170752306387,225,0 +170752306435,222,0 +170752306485,215,0 +170752306534,215,0 +170752306584,215,0 +170752306632,216,0 +170752306680,217,0 +170752306728,217,0 +170752306776,218,0 +170752306824,220,0 +170752306873,220,0 +170752306923,221,0 +170752306972,223,0 +170752307022,223,0 +170752307070,224,0 +170752307118,225,0 +170752307167,224,0 +170752307215,225,0 +170752307265,225,0 +170752307314,224,0 +170752307362,216,0 +170752307411,216,0 +170752307461,216,0 +170752307510,216,0 +170752307558,216,0 +170752307608,216,0 +170752307656,217,0 +170752307706,218,0 +170752307753,218,0 +170752307801,220,0 +170752307851,222,0 +170752307899,224,0 +170752307947,224,0 +170752307995,225,0 +170752308043,226,0 +170752308091,226,0 +170752308140,225,0 +170752308188,226,0 +170752308236,216,0 +170752308286,215,0 +170752308334,216,0 +170752308382,216,0 +170752308430,216,0 +170752308478,216,0 +170752308526,217,0 +170752308574,216,0 +170752308622,217,0 +170752308671,219,0 +170752308721,220,0 +170752308770,221,0 +170752308818,222,0 +170752308866,223,0 +170752308914,224,0 +170752308962,225,0 +170752309010,225,0 +170752309058,225,0 +170752309106,219,0 +170752309155,214,0 +170752309203,214,0 +170752309253,214,0 +170752309301,215,0 +170752309350,215,0 +170752309398,216,0 +170752309448,216,0 +170752309496,216,0 +170752309544,216,0 +170752309593,216,0 +170752309643,218,0 +170752309692,220,0 +170752309740,221,0 +170752309790,220,0 +170752309838,222,0 +170752309886,223,0 +170752309934,224,0 +170752309982,225,0 +170752310029,216,0 +170752310079,215,0 +170752310129,215,0 +170752310176,215,0 +170752310224,216,0 +170752310274,216,0 +170752310324,217,0 +170752310371,217,0 +170752310419,217,0 +170752310469,218,0 +170752310517,220,0 +170752310564,220,0 +170752310614,221,0 +170752310662,223,0 +170752310711,223,0 +170752310759,224,0 +170752310807,223,0 +170752310855,224,0 +170752310905,217,0 +170752310954,215,0 +170752311004,215,0 +170752311052,215,0 +170752311101,215,0 +170752311149,217,0 +170752311197,217,0 +170752311247,218,0 +170752311295,220,0 +170752311344,220,0 +170752311392,221,0 +170752311440,222,0 +170752311489,223,0 +170752311539,224,0 +170752311587,223,0 +170752311635,227,0 +170752311684,224,0 +170752311734,225,0 +170752311784,217,0 +170752311832,216,0 +170752311879,218,0 +170752311927,218,0 +170752311977,219,0 +170752312025,219,0 +170752312074,220,0 +170752312122,220,0 +170752312172,221,0 +170752312220,222,0 +170752312269,220,0 +170752312317,225,0 +170752312367,225,0 +170752312415,225,0 +170752312463,225,0 +170752312511,226,0 +170752312559,225,0 +170752312606,225,0 +170752312656,224,0 +170752312706,214,0 +170752312755,216,0 +170752312805,216,0 +170752312854,217,0 +170752312904,220,0 +170752312952,218,0 +170752312999,220,0 +170752313047,221,0 +170752313097,221,0 +170752313146,224,0 +170752313194,224,0 +170752313244,224,0 +170752313292,225,0 +170752313340,225,0 +170752313388,226,0 +170752313436,225,0 +170752313484,226,0 +170752313532,225,0 +170752313580,217,0 +170752313629,216,0 +170752313677,218,0 +170752313727,218,0 +170752313776,219,0 +170752313824,220,0 +170752313872,220,0 +170752313922,223,0 +170752313969,222,0 +170752314017,224,0 +170752314067,224,0 +170752314116,225,0 +170752314164,226,0 +170752314212,227,0 +170752314262,228,0 +170752314311,227,0 +170752314359,227,0 +170752314409,225,0 +170752314458,217,0 +170752314506,216,0 +170752314554,217,0 +170752314604,218,0 +170752314652,219,0 +170752314700,220,0 +170752314749,220,0 +170752314797,221,0 +170752314845,221,0 +170752314893,222,0 +170752314941,222,0 +170752314990,223,0 +170752315038,225,0 +170752315086,219,0 +170752315136,225,0 +170752315185,225,0 +170752315233,226,0 +170752315281,226,0 +170752315329,224,0 +170752315379,216,0 +170752315428,217,0 +170752315476,217,0 +170752315526,219,0 +170752315574,220,0 +170752315621,220,0 +170752315671,221,0 +170752315721,223,0 +170752315768,223,0 +170752315816,223,0 +170752315864,223,0 +170752315912,224,0 +170752315960,225,0 +170752316010,225,0 +170752316058,226,0 +170752316106,225,0 +170752316154,225,0 +170752316202,224,0 +170752316250,219,0 +170752316299,219,0 +170752316348,219,0 +170752316396,219,0 +170752316446,220,0 +170752316494,221,0 +170752316544,222,0 +170752316593,222,0 +170752316643,223,0 +170752316691,224,0 +170752316739,224,0 +170752316786,225,0 +170752316835,225,0 +170752316884,225,0 +170752316932,225,0 +170752316982,226,0 +170752317029,224,0 +170752317077,224,0 +170752317127,217,0 +170752317176,218,0 +170752317224,218,0 +170752317272,219,0 +170752317320,220,0 +170752317370,225,0 +170752317419,222,0 +170752317467,223,0 +170752317517,223,0 +170752317565,224,0 +170752317613,224,0 +170752317661,225,0 +170752317710,225,0 +170752317758,226,0 +170752317806,225,0 +170752317854,225,0 +170752317903,225,0 +170752317953,224,0 +170752318001,224,0 +170752318050,216,0 +170752318100,217,0 +170752318149,218,0 +170752318197,219,0 +170752318245,219,0 +170752318293,220,0 +170752318343,221,0 +170752318391,221,0 +170752318440,222,0 +170752318488,222,0 +170752318538,223,0 +170752318587,224,0 +170752318637,224,0 +170752318685,225,0 +170752318733,225,0 +170752318780,225,0 +170752318828,225,0 +170752318878,225,0 +170752318926,216,0 +170752318975,216,0 +170752319023,217,0 +170752319071,218,0 +170752319119,219,0 +170752319169,220,0 +170752319218,220,0 +170752319266,221,0 +170752319314,222,0 +170752319362,221,0 +170752319412,223,0 +170752319461,223,0 +170752319509,224,0 +170752319559,225,0 +170752319607,225,0 +170752319655,226,0 +170752319704,226,0 +170752319752,225,0 +170752319800,217,0 +170752319848,216,0 +170752319896,217,0 +170752319944,218,0 +170752319993,219,0 diff --git a/laser_value/0210-10.csv b/laser_value/0210-10.csv new file mode 100644 index 0000000..e54722d --- /dev/null +++ b/laser_value/0210-10.csv @@ -0,0 +1,7432 @@ +timestamp,laser_value,event +170752320042,219,0 +170752320092,220,0 +170752320140,220,0 +170752320189,222,0 +170752320237,222,0 +170752320285,223,0 +170752320333,224,0 +170752320381,224,0 +170752320429,225,0 +170752320477,225,0 +170752320525,225,0 +170752320573,225,0 +170752320622,226,0 +170752320670,224,0 +170752320718,215,0 +170752320766,217,0 +170752320816,217,0 +170752320864,219,0 +170752320911,218,0 +170752320961,220,0 +170752321009,220,0 +170752321057,221,0 +170752321104,222,0 +170752321152,223,0 +170752321200,223,0 +170752321250,224,0 +170752321299,224,0 +170752321347,230,0 +170752321395,226,0 +170752321443,225,0 +170752321491,226,0 +170752321539,225,0 +170752321587,217,0 +170752321635,215,0 +170752321683,215,0 +170752321731,216,0 +170752321779,217,0 +170752321826,218,0 +170752321874,218,0 +170752321924,219,0 +170752321972,220,0 +170752322020,221,0 +170752322069,222,0 +170752322117,222,0 +170752322165,224,0 +170752322213,224,0 +170752322261,224,0 +170752322311,224,0 +170752322360,223,0 +170752322410,224,0 +170752322458,224,0 +170752322506,215,0 +170752322554,215,0 +170752322602,215,0 +170752322651,215,0 +170752322701,216,0 +170752322749,217,0 +170752322796,218,0 +170752322844,219,0 +170752322894,219,0 +170752322944,220,0 +170752322991,221,0 +170752323041,222,0 +170752323089,224,0 +170752323137,223,0 +170752323185,223,0 +170752323235,224,0 +170752323284,224,0 +170752323332,224,0 +170752323380,215,0 +170752323429,215,0 +170752323477,215,0 +170752323527,216,0 +170752323575,216,0 +170752323623,217,0 +170752323671,218,0 +170752323720,219,0 +170752323768,220,0 +170752323818,221,0 +170752323867,222,0 +170752323915,222,0 +170752323963,224,0 +170752324013,223,0 +170752324062,223,0 +170752324110,224,0 +170752324158,224,0 +170752324208,224,0 +170752324255,217,0 +170752324305,215,0 +170752324353,215,0 +170752324401,216,0 +170752324449,216,0 +170752324498,217,0 +170752324548,217,0 +170752324597,218,0 +170752324645,218,0 +170752324695,220,0 +170752324744,220,0 +170752324792,220,0 +170752324840,221,0 +170752324888,219,0 +170752324938,220,0 +170752324986,220,0 +170752325035,219,0 +170752325083,224,0 +170752325131,216,0 +170752325179,215,0 +170752325229,216,0 +170752325276,215,0 +170752325324,216,0 +170752325372,216,0 +170752325422,216,0 +170752325469,216,0 +170752325517,217,0 +170752325565,218,0 +170752325613,220,0 +170752325661,221,0 +170752325709,220,0 +170752325757,223,0 +170752325807,225,0 +170752325855,224,0 +170752325902,224,0 +170752325950,224,0 +170752325998,224,0 +170752326046,216,0 +170752326094,215,0 +170752326142,215,0 +170752326190,215,0 +170752326239,215,0 +170752326289,216,0 +170752326337,216,0 +170752326385,218,0 +170752326434,219,0 +170752326482,220,0 +170752326530,221,0 +170752326578,222,0 +170752326626,223,0 +170752326676,223,0 +170752326724,223,0 +170752326772,225,0 +170752326820,225,0 +170752326869,225,0 +170752326917,216,0 +170752326965,215,0 +170752327013,215,0 +170752327062,215,0 +170752327110,216,0 +170752327158,217,0 +170752327208,216,0 +170752327255,217,0 +170752327303,218,0 +170752327351,219,0 +170752327399,219,0 +170752327448,221,0 +170752327496,222,0 +170752327544,222,0 +170752327592,222,0 +170752327640,223,0 +170752327688,222,0 +170752327736,224,0 +170752327784,224,0 +170752327831,215,0 +170752327879,215,0 +170752327927,215,0 +170752327975,215,0 +170752328023,216,0 +170752328072,217,0 +170752328120,217,0 +170752328170,218,0 +170752328219,219,0 +170752328267,220,0 +170752328315,221,0 +170752328364,223,0 +170752328412,223,0 +170752328460,224,0 +170752328508,224,0 +170752328556,224,0 +170752328606,225,0 +170752328655,225,0 +170752328705,217,0 +170752328753,215,0 +170752328801,216,0 +170752328849,217,0 +170752328897,218,0 +170752328945,219,0 +170752328993,219,0 +170752329040,220,0 +170752329090,220,0 +170752329139,222,0 +170752329187,222,0 +170752329237,223,0 +170752329285,224,0 +170752329333,226,0 +170752329381,224,0 +170752329429,227,0 +170752329478,226,0 +170752329528,227,0 +170752329577,224,0 +170752329625,216,0 +170752329673,216,0 +170752329721,217,0 +170752329769,218,0 +170752329817,219,0 +170752329866,220,0 +170752329916,221,0 +170752329966,222,0 +170752330014,222,0 +170752330063,222,0 +170752330111,224,0 +170752330160,224,0 +170752330208,224,0 +170752330256,225,0 +170752330304,226,0 +170752330354,225,0 +170752330402,225,0 +170752330450,226,0 +170752330498,216,0 +170752330547,215,0 +170752330595,216,0 +170752330643,217,0 +170752330691,218,0 +170752330740,219,0 +170752330790,219,0 +170752330838,221,0 +170752330886,221,0 +170752330934,221,0 +170752330982,222,0 +170752331031,224,0 +170752331079,224,0 +170752331127,224,0 +170752331175,224,0 +170752331223,225,0 +170752331273,227,0 +170752331322,225,0 +170752331372,216,0 +170752331421,216,0 +170752331469,217,0 +170752331518,218,0 +170752331566,219,0 +170752331616,220,0 +170752331665,221,0 +170752331713,221,0 +170752331763,222,0 +170752331812,222,0 +170752331862,223,0 +170752331910,223,0 +170752331958,223,0 +170752332007,225,0 +170752332055,225,0 +170752332105,225,0 +170752332153,225,0 +170752332201,225,0 +170752332249,216,0 +170752332296,215,0 +170752332346,215,0 +170752332394,216,0 +170752332442,217,0 +170752332490,218,0 +170752332538,219,0 +170752332586,219,0 +170752332635,220,0 +170752332685,221,0 +170752332733,222,0 +170752332781,224,0 +170752332830,225,0 +170752332880,224,0 +170752332928,225,0 +170752332977,227,0 +170752333027,225,0 +170752333076,224,0 +170752333126,224,0 +170752333174,215,0 +170752333222,215,0 +170752333270,215,0 +170752333319,216,0 +170752333367,216,0 +170752333415,217,0 +170752333465,217,0 +170752333514,219,0 +170752333562,219,0 +170752333610,220,0 +170752333660,221,0 +170752333709,222,0 +170752333759,223,0 +170752333807,225,0 +170752333854,224,0 +170752333904,226,0 +170752333952,225,0 +170752334001,225,0 +170752334049,216,0 +170752334099,215,0 +170752334148,215,0 +170752334198,214,0 +170752334246,216,0 +170752334295,217,0 +170752334345,217,0 +170752334393,217,0 +170752334441,218,0 +170752334490,220,0 +170752334538,220,0 +170752334586,221,0 +170752334636,222,0 +170752334683,223,0 +170752334731,223,0 +170752334779,224,0 +170752334829,223,0 +170752334878,225,0 +170752334926,217,0 +170752334974,216,0 +170752335022,216,0 +170752335072,217,0 +170752335120,218,0 +170752335168,219,0 +170752335216,219,0 +170752335265,219,0 +170752335313,220,0 +170752335363,221,0 +170752335411,222,0 +170752335460,224,0 +170752335510,223,0 +170752335558,224,0 +170752335606,225,0 +170752335655,226,0 +170752335703,225,0 +170752335753,225,0 +170752335801,218,0 +170752335848,215,0 +170752335896,215,0 +170752335944,216,0 +170752335992,217,0 +170752336042,218,0 +170752336090,218,0 +170752336138,218,0 +170752336186,221,0 +170752336234,221,0 +170752336282,223,0 +170752336329,225,0 +170752336377,224,0 +170752336425,224,0 +170752336475,225,0 +170752336523,225,0 +170752336571,225,0 +170752336619,225,0 +170752336667,225,0 +170752336714,216,0 +170752336762,215,0 +170752336812,216,0 +170752336861,217,0 +170752336911,217,0 +170752336959,219,0 +170752337007,220,0 +170752337054,220,0 +170752337104,221,0 +170752337154,221,0 +170752337202,223,0 +170752337251,224,0 +170752337299,224,0 +170752337347,225,0 +170752337395,225,0 +170752337443,225,0 +170752337492,226,0 +170752337540,225,0 +170752337588,216,0 +170752337638,215,0 +170752337686,216,0 +170752337735,217,0 +170752337783,218,0 +170752337833,220,0 +170752337881,220,0 +170752337930,220,0 +170752337980,221,0 +170752338028,222,0 +170752338076,223,0 +170752338123,223,0 +170752338171,224,0 +170752338221,225,0 +170752338270,225,0 +170752338320,226,0 +170752338369,224,0 +170752338419,225,0 +170752338468,219,0 +170752338516,215,0 +170752338566,215,0 +170752338615,215,0 +170752338665,217,0 +170752338713,218,0 +170752338761,219,0 +170752338809,220,0 +170752338857,221,0 +170752338904,222,0 +170752338952,223,0 +170752339000,224,0 +170752339048,225,0 +170752339096,225,0 +170752339145,224,0 +170752339193,225,0 +170752339241,225,0 +170752339290,225,0 +170752339338,224,0 +170752339388,216,0 +170752339436,217,0 +170752339484,217,0 +170752339531,218,0 +170752339579,219,0 +170752339627,220,0 +170752339675,221,0 +170752339725,222,0 +170752339773,221,0 +170752339821,222,0 +170752339869,224,0 +170752339917,225,0 +170752339964,225,0 +170752340012,225,0 +170752340060,225,0 +170752340108,225,0 +170752340156,225,0 +170752340204,225,0 +170752340252,217,0 +170752340300,215,0 +170752340348,215,0 +170752340396,217,0 +170752340445,217,0 +170752340495,218,0 +170752340543,218,0 +170752340591,221,0 +170752340640,220,0 +170752340690,222,0 +170752340738,222,0 +170752340787,223,0 +170752340835,224,0 +170752340885,224,0 +170752340934,225,0 +170752340982,226,0 +170752341030,224,0 +170752341078,225,0 +170752341125,224,0 +170752341173,216,0 +170752341221,215,0 +170752341271,216,0 +170752341320,217,0 +170752341368,218,0 +170752341416,219,0 +170752341464,220,0 +170752341512,219,0 +170752341561,221,0 +170752341611,221,0 +170752341659,223,0 +170752341707,224,0 +170752341756,224,0 +170752341806,223,0 +170752341855,226,0 +170752341905,225,0 +170752341953,226,0 +170752342001,225,0 +170752342050,217,0 +170752342098,217,0 +170752342148,216,0 +170752342197,219,0 +170752342245,219,0 +170752342295,219,0 +170752342344,221,0 +170752342394,220,0 +170752342442,221,0 +170752342490,221,0 +170752342538,222,0 +170752342586,223,0 +170752342634,223,0 +170752342683,225,0 +170752342731,225,0 +170752342781,225,0 +170752342828,225,0 +170752342876,225,0 +170752342924,218,0 +170752342972,218,0 +170752343022,218,0 +170752343070,220,0 +170752343118,221,0 +170752343166,221,0 +170752343215,221,0 +170752343263,221,0 +170752343313,223,0 +170752343362,225,0 +170752343412,226,0 +170752343460,225,0 +170752343508,225,0 +170752343556,226,0 +170752343604,226,0 +170752343651,225,0 +170752343701,226,0 +170752343749,226,0 +170752343797,225,0 +170752343845,217,0 +170752343894,217,0 +170752343944,219,0 +170752343992,220,0 +170752344040,220,0 +170752344087,222,0 +170752344135,223,0 +170752344185,223,0 +170752344233,225,0 +170752344281,224,0 +170752344329,226,0 +170752344378,227,0 +170752344428,226,0 +170752344477,225,0 +170752344525,226,0 +170752344573,225,0 +170752344623,226,0 +170752344671,224,0 +170752344719,217,0 +170752344767,215,0 +170752344815,216,0 +170752344862,218,0 +170752344910,218,0 +170752344958,219,0 +170752345006,220,0 +170752345054,221,0 +170752345102,223,0 +170752345150,223,0 +170752345198,224,0 +170752345247,225,0 +170752345297,226,0 +170752345345,225,0 +170752345393,226,0 +170752345441,227,0 +170752345489,226,0 +170752345536,225,0 +170752345584,219,0 +170752345632,216,0 +170752345680,217,0 +170752345728,218,0 +170752345776,219,0 +170752345826,220,0 +170752345874,219,0 +170752345923,221,0 +170752345971,221,0 +170752346021,222,0 +170752346069,223,0 +170752346117,224,0 +170752346164,225,0 +170752346214,224,0 +170752346262,225,0 +170752346310,226,0 +170752346359,225,0 +170752346409,225,0 +170752346457,224,0 +170752346505,216,0 +170752346553,216,0 +170752346601,216,0 +170752346650,217,0 +170752346698,218,0 +170752346748,219,0 +170752346797,220,0 +170752346847,221,0 +170752346895,222,0 +170752346943,221,0 +170752346991,223,0 +170752347039,223,0 +170752347088,225,0 +170752347136,225,0 +170752347184,225,0 +170752347232,225,0 +170752347281,225,0 +170752347329,225,0 +170752347379,217,0 +170752347428,215,0 +170752347478,215,0 +170752347526,216,0 +170752347574,218,0 +170752347622,218,0 +170752347670,218,0 +170752347719,219,0 +170752347767,220,0 +170752347815,221,0 +170752347863,222,0 +170752347911,223,0 +170752347959,224,0 +170752348009,224,0 +170752348056,225,0 +170752348104,224,0 +170752348152,224,0 +170752348202,225,0 +170752348251,224,0 +170752348299,215,0 +170752348347,217,0 +170752348395,215,0 +170752348445,216,0 +170752348494,218,0 +170752348544,218,0 +170752348592,218,0 +170752348641,219,0 +170752348689,221,0 +170752348739,222,0 +170752348787,224,0 +170752348835,224,0 +170752348883,225,0 +170752348931,227,0 +170752348980,225,0 +170752349028,226,0 +170752349076,226,0 +170752349124,226,0 +170752349172,216,0 +170752349220,215,0 +170752349269,216,0 +170752349317,216,0 +170752349367,217,0 +170752349415,218,0 +170752349464,218,0 +170752349514,219,0 +170752349563,221,0 +170752349613,220,0 +170752349662,221,0 +170752349710,222,0 +170752349758,223,0 +170752349806,222,0 +170752349856,223,0 +170752349904,222,0 +170752349952,222,0 +170752350000,225,0 +170752350048,217,0 +170752350095,215,0 +170752350143,215,0 +170752350191,215,0 +170752350241,216,0 +170752350289,216,0 +170752350337,216,0 +170752350386,217,0 +170752350434,218,0 +170752350484,219,0 +170752350532,220,0 +170752350581,221,0 +170752350630,222,0 +170752350678,224,0 +170752350728,224,0 +170752350776,224,0 +170752350824,224,0 +170752350872,224,0 +170752350920,225,0 +170752350968,215,0 +170752351016,215,0 +170752351065,216,0 +170752351115,216,0 +170752351163,217,0 +170752351211,217,0 +170752351258,218,0 +170752351308,219,0 +170752351356,220,0 +170752351404,221,0 +170752351453,222,0 +170752351503,223,0 +170752351551,223,0 +170752351599,224,0 +170752351647,224,0 +170752351695,225,0 +170752351743,225,0 +170752351790,226,0 +170752351838,216,0 +170752351886,215,0 +170752351936,216,0 +170752351985,217,0 +170752352035,217,0 +170752352084,219,0 +170752352134,218,0 +170752352183,221,0 +170752352233,220,0 +170752352281,221,0 +170752352329,222,0 +170752352378,223,0 +170752352426,224,0 +170752352474,225,0 +170752352524,225,0 +170752352573,225,0 +170752352621,225,0 +170752352671,225,0 +170752352720,216,0 +170752352770,215,0 +170752352818,215,0 +170752352866,216,0 +170752352915,216,0 +170752352965,217,0 +170752353014,219,0 +170752353062,219,0 +170752353112,220,0 +170752353160,221,0 +170752353208,222,0 +170752353257,223,0 +170752353305,224,0 +170752353355,225,0 +170752353403,224,0 +170752353451,225,0 +170752353500,224,0 +170752353550,227,0 +170752353598,224,0 +170752353646,215,0 +170752353694,215,0 +170752353743,216,0 +170752353793,216,0 +170752353841,217,0 +170752353889,218,0 +170752353938,218,0 +170752353986,219,0 +170752354034,221,0 +170752354082,222,0 +170752354130,222,0 +170752354179,227,0 +170752354227,225,0 +170752354275,224,0 +170752354323,225,0 +170752354373,225,0 +170752354421,225,0 +170752354469,226,0 +170752354517,216,0 +170752354565,215,0 +170752354614,215,0 +170752354664,216,0 +170752354713,217,0 +170752354761,216,0 +170752354811,219,0 +170752354860,219,0 +170752354910,220,0 +170752354959,220,0 +170752355009,222,0 +170752355058,224,0 +170752355108,225,0 +170752355156,227,0 +170752355205,225,0 +170752355253,226,0 +170752355301,218,0 +170752355351,225,0 +170752355400,216,0 +170752355450,215,0 +170752355498,215,0 +170752355547,215,0 +170752355595,215,0 +170752355643,216,0 +170752355693,216,0 +170752355741,216,0 +170752355788,217,0 +170752355838,218,0 +170752355888,220,0 +170752355937,221,0 +170752355985,222,0 +170752356035,222,0 +170752356082,223,0 +170752356130,224,0 +170752356180,225,0 +170752356229,226,0 +170752356277,217,0 +170752356325,215,0 +170752356373,215,0 +170752356421,215,0 +170752356469,215,0 +170752356517,216,0 +170752356565,216,0 +170752356615,217,0 +170752356663,218,0 +170752356710,219,0 +170752356758,220,0 +170752356808,221,0 +170752356857,223,0 +170752356905,224,0 +170752356953,224,0 +170752357001,225,0 +170752357051,225,0 +170752357099,224,0 +170752357148,225,0 +170752357196,215,0 +170752357244,215,0 +170752357294,216,0 +170752357342,216,0 +170752357390,216,0 +170752357438,216,0 +170752357485,217,0 +170752357533,218,0 +170752357581,218,0 +170752357629,219,0 +170752357677,222,0 +170752357725,222,0 +170752357775,224,0 +170752357823,223,0 +170752357871,224,0 +170752357920,224,0 +170752357968,224,0 +170752358018,225,0 +170752358065,217,0 +170752358115,215,0 +170752358163,215,0 +170752358212,216,0 +170752358260,216,0 +170752358310,217,0 +170752358359,218,0 +170752358407,218,0 +170752358455,218,0 +170752358503,220,0 +170752358553,222,0 +170752358602,222,0 +170752358652,222,0 +170752358700,223,0 +170752358748,224,0 +170752358797,225,0 +170752358847,225,0 +170752358896,225,0 +170752358944,218,0 +170752358992,216,0 +170752359040,216,0 +170752359088,217,0 +170752359136,218,0 +170752359185,219,0 +170752359233,220,0 +170752359281,221,0 +170752359330,221,0 +170752359380,222,0 +170752359429,223,0 +170752359477,224,0 +170752359525,225,0 +170752359574,226,0 +170752359624,225,0 +170752359673,226,0 +170752359721,225,0 +170752359770,226,0 +170752359820,225,0 +170752359868,216,0 +170752359916,217,0 +170752359964,218,0 +170752360013,218,0 +170752360061,220,0 +170752360109,221,0 +170752360157,221,0 +170752360205,222,0 +170752360254,224,0 +170752360302,223,0 +170752360352,224,0 +170752360400,224,0 +170752360448,224,0 +170752360497,225,0 +170752360545,225,0 +170752360593,225,0 +170752360643,225,0 +170752360692,224,0 +170752360742,216,0 +170752360790,215,0 +170752360839,217,0 +170752360887,217,0 +170752360937,219,0 +170752360985,219,0 +170752361033,221,0 +170752361081,222,0 +170752361129,225,0 +170752361178,224,0 +170752361228,225,0 +170752361276,225,0 +170752361325,225,0 +170752361373,225,0 +170752361421,225,0 +170752361469,226,0 +170752361518,226,0 +170752361568,225,0 +170752361616,218,0 +170752361665,214,0 +170752361713,215,0 +170752361763,214,0 +170752361812,216,0 +170752361862,218,0 +170752361910,218,0 +170752361958,219,0 +170752362006,221,0 +170752362054,221,0 +170752362103,222,0 +170752362153,222,0 +170752362202,223,0 +170752362250,225,0 +170752362300,224,0 +170752362348,225,0 +170752362396,224,0 +170752362444,225,0 +170752362493,224,0 +170752362541,215,0 +170752362589,215,0 +170752362639,215,0 +170752362688,216,0 +170752362736,217,0 +170752362786,218,0 +170752362835,218,0 +170752362883,219,0 +170752362933,219,0 +170752362981,221,0 +170752363030,221,0 +170752363078,222,0 +170752363126,223,0 +170752363176,223,0 +170752363224,223,0 +170752363271,224,0 +170752363319,224,0 +170752363369,224,0 +170752363418,216,0 +170752363466,215,0 +170752363514,216,0 +170752363562,217,0 +170752363610,218,0 +170752363660,218,0 +170752363708,219,0 +170752363756,220,0 +170752363803,219,0 +170752363851,220,0 +170752363899,221,0 +170752363947,222,0 +170752363995,223,0 +170752364045,225,0 +170752364093,223,0 +170752364141,225,0 +170752364189,224,0 +170752364238,225,0 +170752364288,217,0 +170752364336,216,0 +170752364383,217,0 +170752364431,218,0 +170752364479,220,0 +170752364529,220,0 +170752364577,220,0 +170752364625,221,0 +170752364673,222,0 +170752364722,222,0 +170752364770,224,0 +170752364818,224,0 +170752364866,225,0 +170752364914,225,0 +170752364962,226,0 +170752365010,229,0 +170752365059,226,0 +170752365109,225,0 +170752365157,226,0 +170752365205,217,0 +170752365253,218,0 +170752365301,218,0 +170752365350,219,0 +170752365400,220,0 +170752365448,221,0 +170752365496,223,0 +170752365545,222,0 +170752365593,224,0 +170752365643,225,0 +170752365692,226,0 +170752365741,225,0 +170752365789,225,0 +170752365838,226,0 +170752365886,225,0 +170752365936,225,0 +170752365984,225,0 +170752366031,225,0 +170752366079,217,0 +170752366129,216,0 +170752366179,218,0 +170752366226,219,0 +170752366274,221,0 +170752366322,222,0 +170752366372,221,0 +170752366420,222,0 +170752366468,224,0 +170752366517,224,0 +170752366567,224,0 +170752366616,225,0 +170752366664,225,0 +170752366714,225,0 +170752366762,224,0 +170752366810,226,0 +170752366859,225,0 +170752366909,225,0 +170752366956,223,0 +170752367004,215,0 +170752367054,216,0 +170752367102,217,0 +170752367151,218,0 +170752367199,219,0 +170752367249,219,0 +170752367297,220,0 +170752367345,220,0 +170752367393,221,0 +170752367441,222,0 +170752367488,224,0 +170752367536,224,0 +170752367584,224,0 +170752367634,225,0 +170752367682,225,0 +170752367731,226,0 +170752367781,225,0 +170752367829,226,0 +170752367877,216,0 +170752367925,215,0 +170752367973,216,0 +170752368022,218,0 +170752368072,218,0 +170752368121,219,0 +170752368169,219,0 +170752368217,220,0 +170752368265,221,0 +170752368314,223,0 +170752368364,223,0 +170752368412,223,0 +170752368460,224,0 +170752368510,226,0 +170752368559,225,0 +170752368609,225,0 +170752368657,225,0 +170752368705,225,0 +170752368752,217,0 +170752368800,215,0 +170752368850,216,0 +170752368898,218,0 +170752368947,218,0 +170752368997,220,0 +170752369045,219,0 +170752369094,220,0 +170752369142,221,0 +170752369190,221,0 +170752369240,221,0 +170752369288,223,0 +170752369337,223,0 +170752369385,224,0 +170752369435,224,0 +170752369483,225,0 +170752369532,224,0 +170752369580,225,0 +170752369628,217,0 +170752369678,216,0 +170752369727,217,0 +170752369777,218,0 +170752369825,219,0 +170752369873,220,0 +170752369921,220,0 +170752369970,220,0 +170752370018,220,0 +170752370068,222,0 +170752370116,223,0 +170752370164,224,0 +170752370212,225,0 +170752370261,224,0 +170752370311,225,0 +170752370359,225,0 +170752370408,225,0 +170752370458,226,0 +170752370506,225,0 +170752370555,215,0 +170752370605,215,0 +170752370652,216,0 +170752370702,217,0 +170752370750,218,0 +170752370798,219,0 +170752370846,219,0 +170752370894,219,0 +170752370943,220,0 +170752370991,221,0 +170752371039,223,0 +170752371087,223,0 +170752371135,223,0 +170752371185,225,0 +170752371234,225,0 +170752371282,226,0 +170752371330,225,0 +170752371378,225,0 +170752371428,217,0 +170752371475,215,0 +170752371525,215,0 +170752371575,215,0 +170752371623,215,0 +170752371671,217,0 +170752371720,217,0 +170752371770,219,0 +170752371818,219,0 +170752371866,220,0 +170752371913,221,0 +170752371961,222,0 +170752372009,223,0 +170752372057,224,0 +170752372105,223,0 +170752372153,225,0 +170752372203,224,0 +170752372252,225,0 +170752372300,216,0 +170752372350,215,0 +170752372398,215,0 +170752372447,216,0 +170752372497,216,0 +170752372547,216,0 +170752372595,217,0 +170752372642,215,0 +170752372690,217,0 +170752372740,218,0 +170752372788,220,0 +170752372837,222,0 +170752372885,222,0 +170752372933,222,0 +170752372981,223,0 +170752373031,224,0 +170752373080,225,0 +170752373130,225,0 +170752373178,222,0 +170752373227,215,0 +170752373277,215,0 +170752373325,215,0 +170752373373,216,0 +170752373422,217,0 +170752373470,219,0 +170752373518,219,0 +170752373568,220,0 +170752373616,221,0 +170752373665,222,0 +170752373715,222,0 +170752373764,223,0 +170752373812,225,0 +170752373862,225,0 +170752373910,225,0 +170752373958,225,0 +170752374006,226,0 +170752374055,225,0 +170752374105,216,0 +170752374154,216,0 +170752374204,217,0 +170752374253,218,0 +170752374301,219,0 +170752374349,220,0 +170752374399,220,0 +170752374447,224,0 +170752374496,222,0 +170752374544,223,0 +170752374592,225,0 +170752374640,224,0 +170752374690,225,0 +170752374738,227,0 +170752374786,228,0 +170752374834,226,0 +170752374882,226,0 +170752374931,226,0 +170752374981,218,0 +170752375029,216,0 +170752375077,217,0 +170752375126,220,0 +170752375174,220,0 +170752375224,219,0 +170752375273,221,0 +170752375323,222,0 +170752375371,222,0 +170752375419,224,0 +170752375467,225,0 +170752375516,225,0 +170752375564,226,0 +170752375612,226,0 +170752375660,225,0 +170752375708,226,0 +170752375756,227,0 +170752375804,225,0 +170752375852,217,0 +170752375900,217,0 +170752375949,218,0 +170752375999,219,0 +170752376047,220,0 +170752376096,221,0 +170752376146,221,0 +170752376194,222,0 +170752376243,223,0 +170752376293,224,0 +170752376342,224,0 +170752376390,225,0 +170752376438,225,0 +170752376488,227,0 +170752376537,227,0 +170752376587,226,0 +170752376635,226,0 +170752376684,225,0 +170752376732,221,0 +170752376782,215,0 +170752376831,216,0 +170752376879,217,0 +170752376927,218,0 +170752376977,219,0 +170752377026,220,0 +170752377074,220,0 +170752377124,221,0 +170752377172,222,0 +170752377221,222,0 +170752377269,224,0 +170752377319,225,0 +170752377368,224,0 +170752377416,225,0 +170752377466,226,0 +170752377514,225,0 +170752377562,225,0 +170752377611,225,0 +170752377659,216,0 +170752377707,215,0 +170752377755,216,0 +170752377804,216,0 +170752377852,217,0 +170752377902,218,0 +170752377951,219,0 +170752377999,220,0 +170752378047,220,0 +170752378095,221,0 +170752378145,222,0 +170752378194,225,0 +170752378242,224,0 +170752378290,225,0 +170752378338,224,0 +170752378386,224,0 +170752378434,224,0 +170752378483,225,0 +170752378531,217,0 +170752378581,215,0 +170752378630,215,0 +170752378680,216,0 +170752378728,216,0 +170752378776,218,0 +170752378824,219,0 +170752378872,220,0 +170752378921,220,0 +170752378969,221,0 +170752379017,221,0 +170752379065,222,0 +170752379113,222,0 +170752379163,223,0 +170752379210,220,0 +170752379258,222,0 +170752379306,222,0 +170752379354,224,0 +170752379402,225,0 +170752379452,215,0 +170752379500,215,0 +170752379548,215,0 +170752379597,215,0 +170752379645,215,0 +170752379693,215,0 +170752379742,216,0 +170752379792,215,0 +170752379840,217,0 +170752379888,218,0 +170752379936,219,0 +170752379984,220,0 +170752380032,222,0 +170752380081,222,0 +170752380129,223,0 +170752380179,225,0 +170752380227,225,0 +170752380276,225,0 +170752380324,216,0 +170752380372,215,0 +170752380420,215,0 +170752380468,215,0 +170752380518,216,0 +170752380567,215,0 +170752380615,216,0 +170752380665,216,0 +170752380714,216,0 +170752380762,219,0 +170752380812,220,0 +170752380860,220,0 +170752380909,222,0 +170752380959,222,0 +170752381006,223,0 +170752381056,223,0 +170752381106,223,0 +170752381153,225,0 +170752381201,217,0 +170752381251,215,0 +170752381300,215,0 +170752381348,215,0 +170752381396,216,0 +170752381446,216,0 +170752381495,218,0 +170752381545,219,0 +170752381593,219,0 +170752381642,221,0 +170752381690,222,0 +170752381738,224,0 +170752381786,225,0 +170752381836,225,0 +170752381885,224,0 +170752381933,225,0 +170752381983,226,0 +170752382031,223,0 +170752382080,217,0 +170752382130,215,0 +170752382178,216,0 +170752382227,215,0 +170752382275,217,0 +170752382325,217,0 +170752382373,218,0 +170752382420,220,0 +170752382470,221,0 +170752382518,221,0 +170752382566,223,0 +170752382614,224,0 +170752382662,224,0 +170752382711,224,0 +170752382759,225,0 +170752382809,225,0 +170752382857,225,0 +170752382904,225,0 +170752382952,224,0 +170752383000,215,0 +170752383050,215,0 +170752383098,217,0 +170752383146,217,0 +170752383195,218,0 +170752383243,219,0 +170752383292,220,0 +170752383342,221,0 +170752383391,223,0 +170752383439,222,0 +170752383487,223,0 +170752383535,224,0 +170752383585,224,0 +170752383633,224,0 +170752383681,223,0 +170752383729,224,0 +170752383778,225,0 +170752383826,225,0 +170752383874,217,0 +170752383922,215,0 +170752383972,215,0 +170752384021,216,0 +170752384071,217,0 +170752384120,217,0 +170752384170,218,0 +170752384219,219,0 +170752384267,220,0 +170752384317,221,0 +170752384366,221,0 +170752384416,222,0 +170752384465,222,0 +170752384513,225,0 +170752384561,223,0 +170752384611,224,0 +170752384660,225,0 +170752384708,225,0 +170752384756,216,0 +170752384804,214,0 +170752384852,215,0 +170752384900,215,0 +170752384949,215,0 +170752384997,216,0 +170752385047,217,0 +170752385095,218,0 +170752385144,220,0 +170752385194,220,0 +170752385241,222,0 +170752385291,221,0 +170752385339,224,0 +170752385389,224,0 +170752385438,225,0 +170752385486,224,0 +170752385534,227,0 +170752385582,226,0 +170752385631,221,0 +170752385681,215,0 +170752385730,215,0 +170752385778,216,0 +170752385826,217,0 +170752385874,217,0 +170752385922,218,0 +170752385970,218,0 +170752386020,219,0 +170752386067,221,0 +170752386117,221,0 +170752386165,221,0 +170752386213,221,0 +170752386261,222,0 +170752386310,222,0 +170752386358,223,0 +170752386408,224,0 +170752386458,225,0 +170752386507,224,0 +170752386556,216,0 +170752386606,216,0 +170752386654,216,0 +170752386703,218,0 +170752386751,218,0 +170752386799,219,0 +170752386849,220,0 +170752386898,221,0 +170752386948,221,0 +170752386996,222,0 +170752387044,223,0 +170752387093,223,0 +170752387141,224,0 +170752387191,224,0 +170752387240,222,0 +170752387290,225,0 +170752387338,224,0 +170752387386,225,0 +170752387435,217,0 +170752387483,215,0 +170752387531,217,0 +170752387579,218,0 +170752387627,218,0 +170752387675,219,0 +170752387723,221,0 +170752387771,222,0 +170752387819,221,0 +170752387868,223,0 +170752387918,223,0 +170752387967,225,0 +170752388015,225,0 +170752388063,225,0 +170752388111,227,0 +170752388161,226,0 +170752388209,226,0 +170752388257,225,0 +170752388306,216,0 +170752388354,216,0 +170752388402,214,0 +170752388450,217,0 +170752388499,219,0 +170752388547,220,0 +170752388597,221,0 +170752388645,220,0 +170752388693,221,0 +170752388741,222,0 +170752388789,223,0 +170752388837,224,0 +170752388886,224,0 +170752388934,224,0 +170752388982,225,0 +170752389030,225,0 +170752389079,225,0 +170752389129,224,0 +170752389177,225,0 +170752389227,218,0 +170752389276,218,0 +170752389326,219,0 +170752389374,220,0 +170752389423,221,0 +170752389471,221,0 +170752389521,222,0 +170752389569,223,0 +170752389617,225,0 +170752389666,224,0 +170752389714,226,0 +170752389764,225,0 +170752389812,225,0 +170752389860,225,0 +170752389909,225,0 +170752389957,225,0 +170752390005,226,0 +170752390055,226,0 +170752390104,216,0 +170752390154,216,0 +170752390202,218,0 +170752390250,218,0 +170752390298,220,0 +170752390347,219,0 +170752390397,220,0 +170752390446,221,0 +170752390494,222,0 +170752390542,223,0 +170752390590,224,0 +170752390638,225,0 +170752390686,225,0 +170752390735,226,0 +170752390785,227,0 +170752390833,226,0 +170752390882,225,0 +170752390930,225,0 +170752390978,218,0 +170752391026,215,0 +170752391074,217,0 +170752391124,218,0 +170752391173,218,0 +170752391221,220,0 +170752391269,220,0 +170752391317,220,0 +170752391367,221,0 +170752391416,221,0 +170752391464,222,0 +170752391512,224,0 +170752391560,224,0 +170752391608,225,0 +170752391656,225,0 +170752391704,227,0 +170752391752,225,0 +170752391801,225,0 +170752391851,226,0 +170752391899,215,0 +170752391946,215,0 +170752391996,216,0 +170752392044,217,0 +170752392092,217,0 +170752392141,219,0 +170752392191,218,0 +170752392240,220,0 +170752392288,220,0 +170752392336,220,0 +170752392386,222,0 +170752392436,223,0 +170752392483,223,0 +170752392533,223,0 +170752392581,226,0 +170752392629,225,0 +170752392678,225,0 +170752392728,225,0 +170752392777,216,0 +170752392825,216,0 +170752392875,217,0 +170752392923,218,0 +170752392971,219,0 +170752393020,219,0 +170752393068,220,0 +170752393116,221,0 +170752393164,222,0 +170752393214,223,0 +170752393262,222,0 +170752393310,224,0 +170752393360,225,0 +170752393407,224,0 +170752393457,223,0 +170752393505,225,0 +170752393553,226,0 +170752393601,225,0 +170752393650,219,0 +170752393698,215,0 +170752393746,216,0 +170752393796,222,0 +170752393845,219,0 +170752393893,220,0 +170752393941,220,0 +170752393989,220,0 +170752394037,221,0 +170752394085,224,0 +170752394135,223,0 +170752394184,224,0 +170752394232,224,0 +170752394280,225,0 +170752394328,225,0 +170752394376,225,0 +170752394426,226,0 +170752394474,225,0 +170752394523,224,0 +170752394573,214,0 +170752394621,216,0 +170752394669,217,0 +170752394718,218,0 +170752394766,218,0 +170752394814,219,0 +170752394862,220,0 +170752394910,221,0 +170752394959,222,0 +170752395009,223,0 +170752395057,223,0 +170752395106,225,0 +170752395154,226,0 +170752395204,227,0 +170752395252,227,0 +170752395301,227,0 +170752395349,226,0 +170752395397,224,0 +170752395445,216,0 +170752395495,216,0 +170752395544,216,0 +170752395594,217,0 +170752395642,219,0 +170752395689,218,0 +170752395739,219,0 +170752395787,219,0 +170752395836,220,0 +170752395884,221,0 +170752395932,222,0 +170752395982,223,0 +170752396030,223,0 +170752396079,224,0 +170752396127,224,0 +170752396177,226,0 +170752396225,224,0 +170752396273,225,0 +170752396322,216,0 +170752396372,215,0 +170752396420,216,0 +170752396468,216,0 +170752396516,217,0 +170752396565,218,0 +170752396613,218,0 +170752396661,219,0 +170752396710,219,0 +170752396758,220,0 +170752396806,222,0 +170752396854,223,0 +170752396902,224,0 +170752396952,223,0 +170752397001,226,0 +170752397049,225,0 +170752397097,225,0 +170752397147,225,0 +170752397196,225,0 +170752397246,215,0 +170752397295,215,0 +170752397343,216,0 +170752397391,216,0 +170752397441,217,0 +170752397489,218,0 +170752397536,220,0 +170752397584,221,0 +170752397634,220,0 +170752397682,221,0 +170752397730,224,0 +170752397778,223,0 +170752397826,226,0 +170752397874,225,0 +170752397921,225,0 +170752397969,226,0 +170752398017,226,0 +170752398065,225,0 +170752398113,216,0 +170752398161,215,0 +170752398209,215,0 +170752398257,215,0 +170752398305,216,0 +170752398354,217,0 +170752398402,217,0 +170752398452,219,0 +170752398500,220,0 +170752398549,220,0 +170752398598,220,0 +170752398646,221,0 +170752398696,222,0 +170752398744,224,0 +170752398793,224,0 +170752398841,224,0 +170752398889,223,0 +170752398937,224,0 +170752398985,216,0 +170752399035,215,0 +170752399083,215,0 +170752399131,215,0 +170752399180,216,0 +170752399230,214,0 +170752399279,216,0 +170752399327,218,0 +170752399375,217,0 +170752399425,219,0 +170752399474,220,0 +170752399522,222,0 +170752399570,223,0 +170752399618,224,0 +170752399668,224,0 +170752399716,224,0 +170752399763,225,0 +170752399811,225,0 +170752399859,223,0 +170752399909,215,0 +170752399957,215,0 +170752400006,215,0 +170752400054,216,0 +170752400104,217,0 +170752400153,218,0 +170752400201,219,0 +170752400249,219,0 +170752400299,220,0 +170752400348,221,0 +170752400398,222,0 +170752400446,223,0 +170752400494,224,0 +170752400542,226,0 +170752400591,225,0 +170752400639,225,0 +170752400687,225,0 +170752400735,223,0 +170752400785,216,0 +170752400834,215,0 +170752400884,215,0 +170752400933,216,0 +170752400981,215,0 +170752401029,217,0 +170752401077,217,0 +170752401125,219,0 +170752401173,219,0 +170752401221,220,0 +170752401269,221,0 +170752401318,221,0 +170752401368,222,0 +170752401418,223,0 +170752401467,224,0 +170752401515,224,0 +170752401565,225,0 +170752401612,224,0 +170752401660,216,0 +170752401710,215,0 +170752401760,215,0 +170752401807,216,0 +170752401857,215,0 +170752401905,216,0 +170752401954,217,0 +170752402004,219,0 +170752402052,219,0 +170752402100,221,0 +170752402148,222,0 +170752402197,223,0 +170752402245,224,0 +170752402293,224,0 +170752402341,224,0 +170752402389,224,0 +170752402437,225,0 +170752402485,225,0 +170752402533,224,0 +170752402581,216,0 +170752402630,216,0 +170752402678,216,0 +170752402726,216,0 +170752402776,217,0 +170752402824,218,0 +170752402873,219,0 +170752402923,220,0 +170752402972,220,0 +170752403020,221,0 +170752403070,223,0 +170752403118,225,0 +170752403166,223,0 +170752403214,225,0 +170752403262,225,0 +170752403310,225,0 +170752403359,226,0 +170752403407,224,0 +170752403455,217,0 +170752403505,217,0 +170752403553,218,0 +170752403602,219,0 +170752403650,220,0 +170752403700,221,0 +170752403748,221,0 +170752403797,222,0 +170752403847,223,0 +170752403895,223,0 +170752403943,225,0 +170752403991,225,0 +170752404039,225,0 +170752404088,226,0 +170752404136,225,0 +170752404185,225,0 +170752404233,227,0 +170752404283,227,0 +170752404333,218,0 +170752404382,218,0 +170752404430,219,0 +170752404478,219,0 +170752404528,221,0 +170752404577,221,0 +170752404625,221,0 +170752404673,222,0 +170752404723,223,0 +170752404772,223,0 +170752404820,224,0 +170752404870,224,0 +170752404918,224,0 +170752404967,225,0 +170752405015,224,0 +170752405063,225,0 +170752405112,226,0 +170752405162,224,0 +170752405211,218,0 +170752405261,216,0 +170752405309,217,0 +170752405358,218,0 +170752405406,219,0 +170752405456,220,0 +170752405504,220,0 +170752405553,221,0 +170752405601,223,0 +170752405651,223,0 +170752405701,223,0 +170752405749,225,0 +170752405797,225,0 +170752405844,226,0 +170752405892,226,0 +170752405940,224,0 +170752405988,225,0 +170752406038,222,0 +170752406087,225,0 +170752406135,215,0 +170752406185,216,0 +170752406234,217,0 +170752406282,218,0 +170752406332,219,0 +170752406380,220,0 +170752406429,221,0 +170752406479,221,0 +170752406527,222,0 +170752406575,223,0 +170752406623,224,0 +170752406671,224,0 +170752406719,225,0 +170752406767,226,0 +170752406816,225,0 +170752406864,225,0 +170752406912,227,0 +170752406960,224,0 +170752407008,217,0 +170752407056,215,0 +170752407104,216,0 +170752407152,216,0 +170752407200,218,0 +170752407249,218,0 +170752407297,218,0 +170752407345,219,0 +170752407395,221,0 +170752407444,221,0 +170752407492,221,0 +170752407542,223,0 +170752407590,223,0 +170752407638,224,0 +170752407685,224,0 +170752407735,224,0 +170752407785,225,0 +170752407833,226,0 +170752407882,217,0 +170752407930,215,0 +170752407980,216,0 +170752408028,216,0 +170752408075,218,0 +170752408123,219,0 +170752408171,219,0 +170752408219,221,0 +170752408269,220,0 +170752408317,222,0 +170752408366,220,0 +170752408414,223,0 +170752408464,225,0 +170752408512,224,0 +170752408560,226,0 +170752408608,225,0 +170752408656,226,0 +170752408704,228,0 +170752408752,225,0 +170752408801,216,0 +170752408849,216,0 +170752408897,217,0 +170752408945,218,0 +170752408995,219,0 +170752409043,219,0 +170752409092,220,0 +170752409140,220,0 +170752409190,222,0 +170752409239,220,0 +170752409289,222,0 +170752409337,224,0 +170752409385,225,0 +170752409433,224,0 +170752409480,224,0 +170752409528,224,0 +170752409576,225,0 +170752409624,224,0 +170752409674,216,0 +170752409722,215,0 +170752409770,216,0 +170752409818,217,0 +170752409866,218,0 +170752409914,219,0 +170752409961,220,0 +170752410011,220,0 +170752410059,221,0 +170752410108,222,0 +170752410158,223,0 +170752410206,223,0 +170752410254,224,0 +170752410303,225,0 +170752410353,225,0 +170752410403,222,0 +170752410452,225,0 +170752410500,225,0 +170752410550,217,0 +170752410597,215,0 +170752410647,215,0 +170752410695,216,0 +170752410745,217,0 +170752410794,217,0 +170752410842,218,0 +170752410890,219,0 +170752410938,221,0 +170752410987,222,0 +170752411035,222,0 +170752411083,222,0 +170752411131,224,0 +170752411181,224,0 +170752411229,224,0 +170752411277,226,0 +170752411325,226,0 +170752411374,225,0 +170752411422,224,0 +170752411470,216,0 +170752411518,215,0 +170752411566,215,0 +170752411614,216,0 +170752411662,216,0 +170752411710,218,0 +170752411760,217,0 +170752411807,219,0 +170752411857,220,0 +170752411905,221,0 +170752411953,222,0 +170752412002,223,0 +170752412050,223,0 +170752412098,223,0 +170752412148,224,0 +170752412197,226,0 +170752412247,224,0 +170752412296,225,0 +170752412344,217,0 +170752412392,215,0 +170752412440,215,0 +170752412490,215,0 +170752412538,216,0 +170752412587,217,0 +170752412637,217,0 +170752412685,218,0 +170752412733,220,0 +170752412782,220,0 +170752412830,221,0 +170752412878,223,0 +170752412928,222,0 +170752412977,224,0 +170752413025,225,0 +170752413073,224,0 +170752413123,225,0 +170752413172,225,0 +170752413222,224,0 +170752413270,215,0 +170752413319,215,0 +170752413367,215,0 +170752413415,215,0 +170752413465,216,0 +170752413514,217,0 +170752413562,218,0 +170752413612,219,0 +170752413661,219,0 +170752413709,221,0 +170752413757,221,0 +170752413805,223,0 +170752413853,222,0 +170752413901,223,0 +170752413950,224,0 +170752413998,224,0 +170752414048,224,0 +170752414096,224,0 +170752414144,215,0 +170752414192,215,0 +170752414240,215,0 +170752414287,215,0 +170752414335,216,0 +170752414385,217,0 +170752414433,218,0 +170752414481,219,0 +170752414530,219,0 +170752414578,220,0 +170752414626,223,0 +170752414674,223,0 +170752414722,222,0 +170752414770,223,0 +170752414819,224,0 +170752414869,225,0 +170752414917,224,0 +170752414966,224,0 +170752415016,216,0 +170752415064,215,0 +170752415112,216,0 +170752415160,216,0 +170752415208,218,0 +170752415256,218,0 +170752415304,219,0 +170752415351,219,0 +170752415401,219,0 +170752415449,221,0 +170752415498,222,0 +170752415548,222,0 +170752415598,223,0 +170752415645,224,0 +170752415693,224,0 +170752415743,226,0 +170752415792,226,0 +170752415840,225,0 +170752415888,221,0 +170752415938,215,0 +170752415986,216,0 +170752416035,217,0 +170752416083,218,0 +170752416131,218,0 +170752416181,219,0 +170752416230,220,0 +170752416280,220,0 +170752416328,223,0 +170752416376,222,0 +170752416425,223,0 +170752416473,223,0 +170752416523,224,0 +170752416571,224,0 +170752416619,224,0 +170752416667,225,0 +170752416715,224,0 +170752416764,225,0 +170752416812,216,0 +170752416860,216,0 +170752416908,216,0 +170752416956,217,0 +170752417004,217,0 +170752417052,218,0 +170752417101,218,0 +170752417149,220,0 +170752417198,221,0 +170752417246,221,0 +170752417294,224,0 +170752417342,223,0 +170752417392,225,0 +170752417440,225,0 +170752417487,225,0 +170752417535,225,0 +170752417583,225,0 +170752417631,225,0 +170752417679,216,0 +170752417727,214,0 +170752417777,215,0 +170752417825,215,0 +170752417874,215,0 +170752417922,215,0 +170752417972,215,0 +170752418020,216,0 +170752418068,216,0 +170752418115,216,0 +170752418163,216,0 +170752418211,217,0 +170752418261,219,0 +170752418309,219,0 +170752418358,220,0 +170752418406,221,0 +170752418454,222,0 +170752418502,224,0 +170752418550,225,0 +170752418598,215,0 +170752418646,214,0 +170752418694,216,0 +170752418743,216,0 +170752418791,217,0 +170752418840,218,0 +170752418888,218,0 +170752418938,219,0 +170752418986,220,0 +170752419035,221,0 +170752419085,222,0 +170752419133,223,0 +170752419181,223,0 +170752419230,224,0 +170752419280,224,0 +170752419328,224,0 +170752419377,225,0 +170752419425,224,0 +170752419475,216,0 +170752419522,216,0 +170752419570,217,0 +170752419618,217,0 +170752419668,218,0 +170752419717,219,0 +170752419767,220,0 +170752419815,220,0 +170752419864,221,0 +170752419912,223,0 +170752419960,223,0 +170752420008,226,0 +170752420056,225,0 +170752420104,225,0 +170752420152,227,0 +170752420200,227,0 +170752420249,225,0 +170752420299,225,0 +170752420347,218,0 +170752420395,217,0 +170752420443,218,0 +170752420491,218,0 +170752420538,220,0 +170752420586,221,0 +170752420634,221,0 +170752420682,222,0 +170752420732,223,0 +170752420780,223,0 +170752420828,224,0 +170752420876,225,0 +170752420925,224,0 +170752420973,226,0 +170752421023,225,0 +170752421072,225,0 +170752421122,228,0 +170752421170,226,0 +170752421219,224,0 +170752421267,216,0 +170752421315,217,0 +170752421363,218,0 +170752421412,218,0 +170752421462,220,0 +170752421510,220,0 +170752421559,221,0 +170752421607,221,0 +170752421655,222,0 +170752421705,223,0 +170752421754,225,0 +170752421802,224,0 +170752421850,225,0 +170752421898,225,0 +170752421946,224,0 +170752421994,225,0 +170752422044,224,0 +170752422091,225,0 +170752422141,216,0 +170752422189,216,0 +170752422238,218,0 +170752422288,218,0 +170752422337,220,0 +170752422385,225,0 +170752422433,220,0 +170752422481,220,0 +170752422529,222,0 +170752422579,223,0 +170752422627,224,0 +170752422676,225,0 +170752422724,224,0 +170752422774,225,0 +170752422823,225,0 +170752422873,225,0 +170752422921,226,0 +170752422968,225,0 +170752423016,216,0 +170752423066,214,0 +170752423115,216,0 +170752423165,217,0 +170752423213,218,0 +170752423262,218,0 +170752423310,219,0 +170752423358,219,0 +170752423408,221,0 +170752423456,222,0 +170752423505,222,0 +170752423553,224,0 +170752423601,224,0 +170752423649,224,0 +170752423697,225,0 +170752423747,225,0 +170752423794,224,0 +170752423844,225,0 +170752423894,224,0 +170752423941,215,0 +170752423989,215,0 +170752424039,215,0 +170752424088,216,0 +170752424138,217,0 +170752424188,218,0 +170752424237,219,0 +170752424285,221,0 +170752424333,220,0 +170752424381,221,0 +170752424429,222,0 +170752424477,223,0 +170752424525,223,0 +170752424574,223,0 +170752424624,224,0 +170752424672,224,0 +170752424720,224,0 +170752424769,224,0 +170752424817,215,0 +170752424867,215,0 +170752424915,215,0 +170752424964,215,0 +170752425014,216,0 +170752425062,218,0 +170752425110,219,0 +170752425158,219,0 +170752425206,221,0 +170752425254,222,0 +170752425301,223,0 +170752425351,223,0 +170752425399,224,0 +170752425447,224,0 +170752425496,224,0 +170752425544,225,0 +170752425592,225,0 +170752425642,224,0 +170752425691,217,0 +170752425741,215,0 +170752425789,216,0 +170752425837,217,0 +170752425885,217,0 +170752425933,219,0 +170752425982,220,0 +170752426030,220,0 +170752426078,222,0 +170752426126,222,0 +170752426175,223,0 +170752426223,224,0 +170752426271,225,0 +170752426321,225,0 +170752426370,225,0 +170752426418,225,0 +170752426468,225,0 +170752426516,225,0 +170752426564,220,0 +170752426613,215,0 +170752426663,215,0 +170752426711,216,0 +170752426760,217,0 +170752426808,218,0 +170752426858,219,0 +170752426907,220,0 +170752426955,220,0 +170752427003,223,0 +170752427053,224,0 +170752427101,223,0 +170752427150,223,0 +170752427198,224,0 +170752427246,224,0 +170752427294,224,0 +170752427342,225,0 +170752427390,225,0 +170752427438,224,0 +170752427486,216,0 +170752427535,215,0 +170752427583,215,0 +170752427633,216,0 +170752427681,217,0 +170752427730,218,0 +170752427778,220,0 +170752427828,220,0 +170752427877,221,0 +170752427925,222,0 +170752427975,222,0 +170752428023,225,0 +170752428071,223,0 +170752428119,225,0 +170752428168,224,0 +170752428216,225,0 +170752428266,226,0 +170752428314,225,0 +170752428362,216,0 +170752428411,215,0 +170752428459,216,0 +170752428507,217,0 +170752428555,217,0 +170752428603,218,0 +170752428653,218,0 +170752428702,220,0 +170752428750,220,0 +170752428798,220,0 +170752428846,221,0 +170752428894,222,0 +170752428942,223,0 +170752428990,224,0 +170752429038,224,0 +170752429086,225,0 +170752429135,225,0 +170752429183,225,0 +170752429231,219,0 +170752429281,215,0 +170752429329,216,0 +170752429377,217,0 +170752429426,218,0 +170752429476,218,0 +170752429524,219,0 +170752429572,220,0 +170752429621,221,0 +170752429669,222,0 +170752429719,223,0 +170752429768,223,0 +170752429818,223,0 +170752429865,224,0 +170752429913,225,0 +170752429963,225,0 +170752430012,225,0 +170752430060,225,0 +170752430108,224,0 +170752430156,215,0 +170752430204,216,0 +170752430252,217,0 +170752430300,218,0 +170752430348,219,0 +170752430396,220,0 +170752430446,220,0 +170752430495,220,0 +170752430545,221,0 +170752430593,222,0 +170752430641,223,0 +170752430688,224,0 +170752430738,224,0 +170752430786,225,0 +170752430834,227,0 +170752430882,225,0 +170752430930,225,0 +170752430979,224,0 +170752431027,216,0 +170752431077,215,0 +170752431126,215,0 +170752431174,215,0 +170752431222,216,0 +170752431272,217,0 +170752431320,218,0 +170752431368,219,0 +170752431417,220,0 +170752431465,221,0 +170752431513,223,0 +170752431563,223,0 +170752431611,223,0 +170752431659,224,0 +170752431708,225,0 +170752431756,225,0 +170752431804,225,0 +170752431853,224,0 +170752431901,217,0 +170752431949,215,0 +170752431999,215,0 +170752432048,215,0 +170752432096,216,0 +170752432144,216,0 +170752432192,217,0 +170752432240,218,0 +170752432288,219,0 +170752432336,219,0 +170752432384,220,0 +170752432434,221,0 +170752432482,224,0 +170752432531,224,0 +170752432579,224,0 +170752432627,224,0 +170752432675,224,0 +170752432723,224,0 +170752432771,225,0 +170752432819,216,0 +170752432867,215,0 +170752432915,216,0 +170752432963,217,0 +170752433011,218,0 +170752433058,218,0 +170752433108,219,0 +170752433156,220,0 +170752433204,222,0 +170752433252,222,0 +170752433301,223,0 +170752433349,224,0 +170752433397,226,0 +170752433445,224,0 +170752433495,225,0 +170752433544,225,0 +170752433594,225,0 +170752433643,225,0 +170752433693,217,0 +170752433741,215,0 +170752433789,215,0 +170752433837,216,0 +170752433885,217,0 +170752433933,218,0 +170752433981,218,0 +170752434031,218,0 +170752434079,219,0 +170752434128,220,0 +170752434176,221,0 +170752434224,222,0 +170752434273,223,0 +170752434323,224,0 +170752434373,225,0 +170752434422,225,0 +170752434470,225,0 +170752434518,225,0 +170752434568,220,0 +170752434616,215,0 +170752434665,215,0 +170752434715,216,0 +170752434763,217,0 +170752434811,217,0 +170752434859,218,0 +170752434907,219,0 +170752434954,220,0 +170752435002,220,0 +170752435050,222,0 +170752435100,222,0 +170752435148,223,0 +170752435196,226,0 +170752435245,226,0 +170752435293,225,0 +170752435343,225,0 +170752435391,225,0 +170752435439,225,0 +170752435487,214,0 +170752435536,215,0 +170752435586,215,0 +170752435634,216,0 +170752435682,217,0 +170752435730,218,0 +170752435779,219,0 +170752435827,219,0 +170752435875,220,0 +170752435925,221,0 +170752435974,222,0 +170752436024,222,0 +170752436073,225,0 +170752436123,225,0 +170752436172,225,0 +170752436222,226,0 +170752436271,225,0 +170752436321,225,0 +170752436370,216,0 +170752436418,215,0 +170752436468,215,0 +170752436516,215,0 +170752436564,216,0 +170752436612,217,0 +170752436661,218,0 +170752436709,219,0 +170752436759,220,0 +170752436808,221,0 +170752436856,222,0 +170752436906,224,0 +170752436955,224,0 +170752437003,224,0 +170752437051,224,0 +170752437101,225,0 +170752437149,225,0 +170752437197,225,0 +170752437246,217,0 +170752437296,215,0 +170752437344,216,0 +170752437393,216,0 +170752437443,217,0 +170752437491,218,0 +170752437539,219,0 +170752437588,220,0 +170752437636,221,0 +170752437686,221,0 +170752437735,222,0 +170752437783,223,0 +170752437833,224,0 +170752437880,224,0 +170752437930,227,0 +170752437978,224,0 +170752438027,225,0 +170752438075,225,0 +170752438125,216,0 +170752438174,215,0 +170752438222,215,0 +170752438270,215,0 +170752438318,216,0 +170752438368,216,0 +170752438417,218,0 +170752438467,217,0 +170752438515,219,0 +170752438563,220,0 +170752438610,221,0 +170752438658,221,0 +170752438706,222,0 +170752438754,223,0 +170752438802,224,0 +170752438850,226,0 +170752438898,224,0 +170752438947,225,0 +170752438997,224,0 +170752439045,215,0 +170752439093,215,0 +170752439141,216,0 +170752439189,215,0 +170752439237,216,0 +170752439285,216,0 +170752439333,218,0 +170752439380,218,0 +170752439430,219,0 +170752439478,221,0 +170752439527,221,0 +170752439577,222,0 +170752439625,225,0 +170752439673,226,0 +170752439722,225,0 +170752439772,224,0 +170752439820,224,0 +170752439868,226,0 +170752439916,217,0 +170752439963,215,0 +170752440013,215,0 +170752440061,215,0 +170752440110,216,0 +170752440158,217,0 +170752440206,218,0 +170752440256,218,0 +170752440305,218,0 +170752440355,219,0 +170752440403,220,0 +170752440452,221,0 +170752440502,223,0 +170752440550,224,0 +170752440598,224,0 +170752440647,225,0 +170752440697,228,0 +170752440746,225,0 +170752440794,216,0 +170752440842,215,0 +170752440890,216,0 +170752440938,215,0 +170752440988,216,0 +170752441036,216,0 +170752441084,218,0 +170752441132,218,0 +170752441179,218,0 +170752441227,218,0 +170752441275,220,0 +170752441323,221,0 +170752441371,221,0 +170752441419,222,0 +170752441467,223,0 +170752441515,224,0 +170752441563,224,0 +170752441612,224,0 +170752441660,224,0 +170752441708,215,0 +170752441756,215,0 +170752441806,215,0 +170752441855,215,0 +170752441903,215,0 +170752441951,215,0 +170752441999,216,0 +170752442047,217,0 +170752442095,218,0 +170752442143,219,0 +170752442191,221,0 +170752442239,221,0 +170752442288,222,0 +170752442336,223,0 +170752442386,224,0 +170752442435,225,0 +170752442485,224,0 +170752442533,224,0 +170752442581,217,0 +170752442629,215,0 +170752442677,215,0 +170752442725,217,0 +170752442773,216,0 +170752442822,216,0 +170752442870,217,0 +170752442918,217,0 +170752442966,218,0 +170752443014,219,0 +170752443062,219,0 +170752443109,221,0 +170752443157,221,0 +170752443205,222,0 +170752443253,223,0 +170752443303,224,0 +170752443352,224,0 +170752443401,224,0 +170752443449,224,0 +170752443497,215,0 +170752443545,215,0 +170752443593,215,0 +170752443641,215,0 +170752443690,215,0 +170752443738,216,0 +170752443786,216,0 +170752443834,216,0 +170752443882,217,0 +170752443930,219,0 +170752443978,219,0 +170752444025,220,0 +170752444075,221,0 +170752444123,222,0 +170752444171,223,0 +170752444219,224,0 +170752444267,225,0 +170752444315,225,0 +170752444364,216,0 +170752444413,215,0 +170752444461,215,0 +170752444509,216,0 +170752444557,216,0 +170752444605,216,0 +170752444653,217,0 +170752444700,218,0 +170752444748,218,0 +170752444796,219,0 +170752444844,220,0 +170752444892,221,0 +170752444940,221,0 +170752444988,218,0 +170752445036,217,0 +170752445084,224,0 +170752445132,225,0 +170752445179,225,0 +170752445229,216,0 +170752445278,215,0 +170752445328,216,0 +170752445376,216,0 +170752445424,216,0 +170752445472,216,0 +170752445521,217,0 +170752445569,218,0 +170752445617,218,0 +170752445665,219,0 +170752445713,220,0 +170752445761,221,0 +170752445809,222,0 +170752445857,224,0 +170752445905,224,0 +170752445952,226,0 +170752446000,225,0 +170752446048,225,0 +170752446096,224,0 +170752446144,216,0 +170752446192,215,0 +170752446240,215,0 +170752446288,215,0 +170752446336,216,0 +170752446384,216,0 +170752446431,217,0 +170752446479,218,0 +170752446529,219,0 +170752446577,220,0 +170752446624,220,0 +170752446672,221,0 +170752446720,222,0 +170752446770,223,0 +170752446818,223,0 +170752446866,224,0 +170752446914,225,0 +170752446962,225,0 +170752447010,217,0 +170752447057,216,0 +170752447105,217,0 +170752447155,219,0 +170752447203,220,0 +170752447252,221,0 +170752447300,222,0 +170752447350,222,0 +170752447399,222,0 +170752447447,223,0 +170752447495,224,0 +170752447545,226,0 +170752447594,225,0 +170752447643,225,0 +170752447693,220,0 +170752447742,225,0 +170752447790,225,0 +170752447840,224,0 +170752447887,223,0 +170752447937,218,0 +170752447985,220,0 +170752448033,221,0 +170752448081,221,0 +170752448129,222,0 +170752448177,223,0 +170752448225,223,0 +170752448273,224,0 +170752448321,224,0 +170752448369,226,0 +170752448418,224,0 +170752448466,224,0 +170752448514,225,0 +170752448563,227,0 +170752448613,225,0 +170752448663,225,0 +170752448712,225,0 +170752448762,225,0 +170752448811,217,0 +170752448859,217,0 +170752448908,218,0 +170752448956,219,0 +170752449004,219,0 +170752449052,222,0 +170752449101,221,0 +170752449149,222,0 +170752449197,222,0 +170752449245,224,0 +170752449293,225,0 +170752449342,223,0 +170752449392,227,0 +170752449440,225,0 +170752449488,224,0 +170752449536,225,0 +170752449585,225,0 +170752449635,224,0 +170752449683,217,0 +170752449732,215,0 +170752449782,216,0 +170752449831,217,0 +170752449879,218,0 +170752449929,219,0 +170752449978,219,0 +170752450026,219,0 +170752450074,220,0 +170752450123,221,0 +170752450173,223,0 +170752450223,222,0 +170752450271,223,0 +170752450318,224,0 +170752450366,223,0 +170752450414,224,0 +170752450464,225,0 +170752450513,225,0 +170752450561,226,0 +170752450609,225,0 +170752450659,227,0 +170752450708,226,0 +170752450758,226,0 +170752450806,226,0 +170752450854,225,0 +170752450903,225,0 +170752450953,224,0 +170752451001,217,0 +170752451050,216,0 +170752451100,218,0 +170752451148,218,0 +170752451196,219,0 +170752451245,220,0 +170752451293,220,0 +170752451343,221,0 +170752451391,221,0 +170752451440,223,0 +170752451488,223,0 +170752451538,224,0 +170752451585,224,0 +170752451635,225,0 +170752451683,225,0 +170752451731,226,0 +170752451779,225,0 +170752451828,226,0 +170752451876,224,0 +170752451924,216,0 +170752451972,217,0 +170752452022,217,0 +170752452070,219,0 +170752452118,218,0 +170752452166,219,0 +170752452213,229,0 +170752452263,221,0 +170752452311,222,0 +170752452360,224,0 +170752452408,224,0 +170752452458,225,0 +170752452506,225,0 +170752452555,225,0 +170752452605,223,0 +170752452653,227,0 +170752452701,225,0 +170752452749,224,0 +170752452797,216,0 +170752452844,215,0 +170752452894,216,0 +170752452942,217,0 +170752452990,220,0 +170752453038,219,0 +170752453085,220,0 +170752453133,222,0 +170752453181,222,0 +170752453229,222,0 +170752453277,225,0 +170752453325,224,0 +170752453373,225,0 +170752453421,225,0 +170752453469,225,0 +170752453516,225,0 +170752453566,223,0 +170752453614,225,0 +170752453663,217,0 +170752453711,215,0 +170752453761,215,0 +170752453809,216,0 +170752453857,217,0 +170752453906,218,0 +170752453954,219,0 +170752454002,219,0 +170752454050,221,0 +170752454098,223,0 +170752454146,222,0 +170752454194,226,0 +170752454242,224,0 +170752454289,225,0 +170752454339,224,0 +170752454387,225,0 +170752454436,224,0 +170752454484,225,0 +170752454533,224,0 +170752454581,215,0 +170752454629,215,0 +170752454677,215,0 +170752454725,215,0 +170752454774,215,0 +170752454822,216,0 +170752454870,217,0 +170752454918,215,0 +170752454967,218,0 +170752455015,219,0 +170752455063,221,0 +170752455111,221,0 +170752455159,223,0 +170752455207,224,0 +170752455255,224,0 +170752455303,226,0 +170752455350,225,0 +170752455398,225,0 +170752455446,217,0 +170752455494,215,0 +170752455542,215,0 +170752455592,215,0 +170752455639,215,0 +170752455689,216,0 +170752455737,218,0 +170752455784,218,0 +170752455832,220,0 +170752455880,219,0 +170752455930,222,0 +170752455978,223,0 +170752456025,223,0 +170752456073,225,0 +170752456121,225,0 +170752456169,225,0 +170752456217,226,0 +170752456265,226,0 +170752456314,224,0 +170752456362,216,0 +170752456410,215,0 +170752456458,216,0 +170752456506,216,0 +170752456554,217,0 +170752456603,218,0 +170752456651,219,0 +170752456699,220,0 +170752456747,221,0 +170752456795,221,0 +170752456843,222,0 +170752456891,226,0 +170752456939,224,0 +170752456988,225,0 +170752457036,224,0 +170752457084,224,0 +170752457132,225,0 +170752457180,224,0 +170752457228,217,0 +170752457276,215,0 +170752457325,215,0 +170752457373,216,0 +170752457422,217,0 +170752457470,218,0 +170752457520,219,0 +170752457567,218,0 +170752457615,220,0 +170752457663,221,0 +170752457711,221,0 +170752457759,222,0 +170752457809,222,0 +170752457857,224,0 +170752457906,225,0 +170752457956,225,0 +170752458005,226,0 +170752458053,224,0 +170752458101,220,0 +170752458149,215,0 +170752458197,215,0 +170752458245,216,0 +170752458293,217,0 +170752458341,217,0 +170752458389,218,0 +170752458438,219,0 +170752458486,220,0 +170752458534,220,0 +170752458582,222,0 +170752458630,222,0 +170752458678,223,0 +170752458726,223,0 +170752458774,224,0 +170752458821,225,0 +170752458871,225,0 +170752458920,224,0 +170752458968,224,0 +170752459016,216,0 +170752459066,215,0 +170752459114,215,0 +170752459163,216,0 +170752459211,217,0 +170752459261,217,0 +170752459310,219,0 +170752459360,219,0 +170752459408,220,0 +170752459457,222,0 +170752459505,221,0 +170752459553,222,0 +170752459601,223,0 +170752459651,223,0 +170752459699,224,0 +170752459747,224,0 +170752459795,226,0 +170752459843,225,0 +170752459892,216,0 +170752459940,215,0 +170752459990,215,0 +170752460037,216,0 +170752460087,217,0 +170752460137,217,0 +170752460186,217,0 +170752460236,217,0 +170752460285,218,0 +170752460333,220,0 +170752460383,221,0 +170752460431,222,0 +170752460480,224,0 +170752460528,223,0 +170752460576,221,0 +170752460626,224,0 +170752460675,224,0 +170752460725,226,0 +170752460773,216,0 +170752460821,214,0 +170752460869,215,0 +170752460916,216,0 +170752460966,217,0 +170752461015,217,0 +170752461064,218,0 +170752461113,219,0 +170752461161,219,0 +170752461209,221,0 +170752461257,221,0 +170752461305,223,0 +170752461353,224,0 +170752461402,224,0 +170752461452,223,0 +170752461501,225,0 +170752461551,228,0 +170752461599,227,0 +170752461649,225,0 +170752461699,216,0 +170752461746,216,0 +170752461794,217,0 +170752461844,219,0 +170752461892,220,0 +170752461940,220,0 +170752461987,220,0 +170752462035,221,0 +170752462083,222,0 +170752462131,223,0 +170752462179,223,0 +170752462227,224,0 +170752462276,224,0 +170752462324,226,0 +170752462372,224,0 +170752462420,226,0 +170752462467,226,0 +170752462515,224,0 +170752462563,216,0 +170752462611,215,0 +170752462659,216,0 +170752462707,217,0 +170752462755,218,0 +170752462803,219,0 +170752462850,221,0 +170752462898,220,0 +170752462946,221,0 +170752462994,222,0 +170752463042,224,0 +170752463090,224,0 +170752463138,225,0 +170752463186,225,0 +170752463233,226,0 +170752463283,226,0 +170752463331,225,0 +170752463379,226,0 +170752463426,225,0 +170752463474,216,0 +170752463522,216,0 +170752463570,218,0 +170752463618,218,0 +170752463668,220,0 +170752463717,220,0 +170752463765,220,0 +170752463813,221,0 +170752463861,222,0 +170752463911,223,0 +170752463960,223,0 +170752464010,223,0 +170752464059,225,0 +170752464107,225,0 +170752464155,225,0 +170752464203,225,0 +170752464251,226,0 +170752464299,225,0 +170752464347,216,0 +170752464395,215,0 +170752464443,216,0 +170752464491,217,0 +170752464539,218,0 +170752464588,219,0 +170752464636,220,0 +170752464684,221,0 +170752464732,223,0 +170752464779,222,0 +170752464827,224,0 +170752464875,224,0 +170752464923,226,0 +170752464971,226,0 +170752465019,226,0 +170752465067,225,0 +170752465115,226,0 +170752465163,225,0 +170752465211,227,0 +170752465259,216,0 +170752465306,214,0 +170752465354,215,0 +170752465402,215,0 +170752465450,216,0 +170752465498,217,0 +170752465546,218,0 +170752465594,219,0 +170752465642,219,0 +170752465691,220,0 +170752465739,221,0 +170752465787,223,0 +170752465836,223,0 +170752465886,224,0 +170752465934,224,0 +170752465982,225,0 +170752466030,225,0 +170752466078,226,0 +170752466125,225,0 +170752466173,215,0 +170752466223,215,0 +170752466271,215,0 +170752466319,216,0 +170752466367,215,0 +170752466416,216,0 +170752466464,217,0 +170752466514,218,0 +170752466562,219,0 +170752466610,220,0 +170752466658,221,0 +170752466707,223,0 +170752466757,223,0 +170752466806,226,0 +170752466856,225,0 +170752466905,225,0 +170752466953,225,0 +170752467003,226,0 +170752467051,217,0 +170752467100,215,0 +170752467148,215,0 +170752467196,216,0 +170752467244,216,0 +170752467294,217,0 +170752467341,218,0 +170752467391,219,0 +170752467439,221,0 +170752467487,219,0 +170752467535,221,0 +170752467582,222,0 +170752467630,224,0 +170752467680,223,0 +170752467728,223,0 +170752467776,224,0 +170752467824,224,0 +170752467872,225,0 +170752467919,224,0 +170752467967,216,0 +170752468015,215,0 +170752468063,215,0 +170752468111,215,0 +170752468159,215,0 +170752468209,215,0 +170752468257,216,0 +170752468305,217,0 +170752468354,217,0 +170752468404,219,0 +170752468451,219,0 +170752468499,221,0 +170752468547,221,0 +170752468597,222,0 +170752468644,223,0 +170752468694,223,0 +170752468742,224,0 +170752468790,225,0 +170752468837,217,0 +170752468887,214,0 +170752468935,214,0 +170752468983,215,0 +170752469031,216,0 +170752469078,216,0 +170752469126,216,0 +170752469176,217,0 +170752469224,217,0 +170752469271,219,0 +170752469321,219,0 +170752469370,221,0 +170752469418,222,0 +170752469468,223,0 +170752469515,237,0 +170752469563,225,0 +170752469611,224,0 +170752469659,224,0 +170752469707,225,0 +170752469755,216,0 +170752469803,215,0 +170752469851,216,0 +170752469898,214,0 +170752469946,217,0 +170752469994,218,0 +170752470042,219,0 +170752470090,219,0 +170752470140,220,0 +170752470187,222,0 +170752470235,222,0 +170752470283,223,0 +170752470331,218,0 +170752470379,217,0 +170752470427,226,0 +170752470475,223,0 +170752470523,225,0 +170752470571,224,0 +170752470620,224,0 +170752470668,215,0 +170752470717,215,0 +170752470765,216,0 +170752470813,216,0 +170752470861,218,0 +170752470909,219,0 +170752470957,219,0 +170752471005,220,0 +170752471053,221,0 +170752471101,222,0 +170752471149,223,0 +170752471197,223,0 +170752471246,224,0 +170752471294,225,0 +170752471342,224,0 +170752471390,225,0 +170752471439,222,0 +170752471487,225,0 +170752471535,220,0 +170752471583,215,0 +170752471631,215,0 +170752471679,215,0 +170752471726,215,0 +170752471774,215,0 +170752471824,216,0 +170752471873,218,0 +170752471921,219,0 +170752471969,219,0 +170752472019,221,0 +170752472067,221,0 +170752472115,222,0 +170752472163,223,0 +170752472211,225,0 +170752472259,223,0 +170752472308,224,0 +170752472356,225,0 +170752472405,224,0 +170752472453,216,0 +170752472501,214,0 +170752472549,215,0 +170752472597,215,0 +170752472645,215,0 +170752472693,216,0 +170752472741,216,0 +170752472790,217,0 +170752472838,217,0 +170752472886,219,0 +170752472934,220,0 +170752472982,221,0 +170752473030,221,0 +170752473078,221,0 +170752473126,223,0 +170752473175,223,0 +170752473223,223,0 +170752473271,225,0 +170752473319,221,0 +170752473367,215,0 +170752473416,215,0 +170752473464,215,0 +170752473513,217,0 +170752473561,218,0 +170752473609,219,0 +170752473659,218,0 +170752473706,219,0 +170752473754,220,0 +170752473802,221,0 +170752473852,221,0 +170752473900,221,0 +170752473948,222,0 +170752473996,223,0 +170752474045,224,0 +170752474093,224,0 +170752474143,224,0 +170752474192,225,0 +170752474240,217,0 +170752474288,215,0 +170752474338,216,0 +170752474387,217,0 +170752474437,218,0 +170752474485,219,0 +170752474534,219,0 +170752474582,219,0 +170752474632,221,0 +170752474681,222,0 +170752474729,223,0 +170752474777,223,0 +170752474825,224,0 +170752474874,233,0 +170752474922,225,0 +170752474970,225,0 +170752475018,224,0 +170752475066,225,0 +170752475116,226,0 +170752475164,217,0 +170752475211,217,0 +170752475259,219,0 +170752475307,219,0 +170752475355,220,0 +170752475403,221,0 +170752475451,222,0 +170752475499,223,0 +170752475547,224,0 +170752475595,225,0 +170752475645,224,0 +170752475693,225,0 +170752475741,225,0 +170752475789,225,0 +170752475838,227,0 +170752475888,225,0 +170752475937,226,0 +170752475985,224,0 +170752476033,218,0 +170752476083,218,0 +170752476131,219,0 +170752476180,219,0 +170752476228,220,0 +170752476276,221,0 +170752476326,222,0 +170752476375,224,0 +170752476423,223,0 +170752476471,224,0 +170752476521,224,0 +170752476568,224,0 +170752476616,225,0 +170752476666,225,0 +170752476714,226,0 +170752476764,226,0 +170752476812,226,0 +170752476861,225,0 +170752476909,226,0 +170752476957,216,0 +170752477005,217,0 +170752477054,217,0 +170752477102,218,0 +170752477150,219,0 +170752477198,221,0 +170752477248,222,0 +170752477296,221,0 +170752477345,221,0 +170752477393,222,0 +170752477441,223,0 +170752477489,224,0 +170752477537,225,0 +170752477587,224,0 +170752477635,225,0 +170752477684,225,0 +170752477732,226,0 +170752477780,225,0 +170752477828,223,0 +170752477876,215,0 +170752477926,215,0 +170752477975,217,0 +170752478025,218,0 +170752478074,218,0 +170752478124,219,0 +170752478172,220,0 +170752478221,221,0 +170752478269,222,0 +170752478317,223,0 +170752478365,223,0 +170752478415,224,0 +170752478463,224,0 +170752478511,225,0 +170752478558,227,0 +170752478608,226,0 +170752478656,225,0 +170752478705,225,0 +170752478755,216,0 +170752478805,215,0 +170752478854,216,0 +170752478902,217,0 +170752478950,219,0 +170752478998,219,0 +170752479047,221,0 +170752479097,220,0 +170752479146,222,0 +170752479194,222,0 +170752479242,223,0 +170752479290,224,0 +170752479338,225,0 +170752479388,224,0 +170752479436,226,0 +170752479485,225,0 +170752479533,226,0 +170752479583,225,0 +170752479631,216,0 +170752479678,215,0 +170752479726,216,0 +170752479774,217,0 +170752479824,218,0 +170752479872,219,0 +170752479919,219,0 +170752479969,220,0 +170752480019,222,0 +170752480068,222,0 +170752480118,222,0 +170752480166,223,0 +170752480213,224,0 +170752480261,224,0 +170752480309,224,0 +170752480357,227,0 +170752480405,226,0 +170752480453,226,0 +170752480502,225,0 +170752480552,216,0 +170752480601,215,0 +170752480649,216,0 +170752480697,217,0 +170752480745,218,0 +170752480793,218,0 +170752480841,219,0 +170752480891,219,0 +170752480939,221,0 +170752480987,221,0 +170752481035,221,0 +170752481084,222,0 +170752481132,224,0 +170752481180,225,0 +170752481228,225,0 +170752481277,224,0 +170752481325,223,0 +170752481373,225,0 +170752481421,225,0 +170752481469,216,0 +170752481519,216,0 +170752481566,217,0 +170752481614,218,0 +170752481662,219,0 +170752481710,220,0 +170752481758,220,0 +170752481806,220,0 +170752481854,222,0 +170752481902,222,0 +170752481951,224,0 +170752482000,224,0 +170752482048,224,0 +170752482098,223,0 +170752482146,225,0 +170752482195,225,0 +170752482243,225,0 +170752482291,225,0 +170752482339,217,0 +170752482389,215,0 +170752482438,216,0 +170752482486,216,0 +170752482534,217,0 +170752482582,218,0 +170752482631,219,0 +170752482679,220,0 +170752482729,221,0 +170752482777,221,0 +170752482825,222,0 +170752482873,224,0 +170752482920,224,0 +170752482968,225,0 +170752483016,226,0 +170752483064,225,0 +170752483112,226,0 +170752483160,225,0 +170752483208,225,0 +170752483256,216,0 +170752483303,215,0 +170752483351,215,0 +170752483399,216,0 +170752483447,217,0 +170752483495,218,0 +170752483543,218,0 +170752483591,219,0 +170752483639,219,0 +170752483686,220,0 +170752483734,221,0 +170752483782,221,0 +170752483832,222,0 +170752483880,224,0 +170752483927,224,0 +170752483975,225,0 +170752484023,225,0 +170752484071,225,0 +170752484119,224,0 +170752484167,215,0 +170752484216,215,0 +170752484264,215,0 +170752484312,215,0 +170752484360,215,0 +170752484408,215,0 +170752484457,216,0 +170752484505,217,0 +170752484553,219,0 +170752484601,220,0 +170752484649,220,0 +170752484698,220,0 +170752484748,221,0 +170752484797,223,0 +170752484845,222,0 +170752484895,221,0 +170752484943,223,0 +170752484991,224,0 +170752485038,222,0 +170752485086,215,0 +170752485134,215,0 +170752485182,216,0 +170752485230,215,0 +170752485278,217,0 +170752485326,217,0 +170752485373,218,0 +170752485421,220,0 +170752485469,220,0 +170752485517,222,0 +170752485566,224,0 +170752485614,224,0 +170752485662,226,0 +170752485710,224,0 +170752485760,228,0 +170752485808,226,0 +170752485856,225,0 +170752485904,225,0 +170752485952,217,0 +170752485999,215,0 +170752486049,215,0 +170752486098,215,0 +170752486148,216,0 +170752486196,216,0 +170752486244,217,0 +170752486292,220,0 +170752486340,219,0 +170752486389,220,0 +170752486437,221,0 +170752486485,222,0 +170752486533,223,0 +170752486581,223,0 +170752486629,225,0 +170752486677,225,0 +170752486725,225,0 +170752486773,226,0 +170752486820,225,0 +170752486868,216,0 +170752486916,215,0 +170752486964,215,0 +170752487012,215,0 +170752487060,216,0 +170752487108,216,0 +170752487156,218,0 +170752487204,218,0 +170752487251,219,0 +170752487299,220,0 +170752487347,221,0 +170752487397,223,0 +170752487444,223,0 +170752487492,223,0 +170752487540,224,0 +170752487588,225,0 +170752487636,224,0 +170752487684,225,0 +170752487732,224,0 +170752487779,217,0 +170752487827,215,0 +170752487875,215,0 +170752487923,215,0 +170752487971,216,0 +170752488020,216,0 +170752488070,216,0 +170752488118,217,0 +170752488166,217,0 +170752488213,219,0 +170752488263,220,0 +170752488311,220,0 +170752488359,222,0 +170752488408,224,0 +170752488456,223,0 +170752488504,224,0 +170752488552,225,0 +170752488600,224,0 +170752488648,225,0 +170752488696,217,0 +170752488745,215,0 +170752488795,215,0 +170752488842,215,0 +170752488890,216,0 +170752488938,216,0 +170752488986,217,0 +170752489034,217,0 +170752489082,218,0 +170752489130,218,0 +170752489178,220,0 +170752489226,220,0 +170752489274,221,0 +170752489321,222,0 +170752489369,223,0 +170752489417,222,0 +170752489465,225,0 +170752489513,224,0 +170752489561,225,0 +170752489609,215,0 +170752489657,215,0 +170752489705,215,0 +170752489752,215,0 +170752489800,215,0 +170752489848,216,0 +170752489896,217,0 +170752489946,218,0 +170752489993,218,0 +170752490041,219,0 +170752490089,221,0 +170752490137,222,0 +170752490185,222,0 +170752490233,224,0 +170752490281,225,0 +170752490329,224,0 +170752490376,226,0 +170752490424,223,0 +170752490472,225,0 +170752490520,217,0 +170752490568,215,0 +170752490617,215,0 +170752490665,215,0 +170752490713,216,0 +170752490761,216,0 +170752490811,217,0 +170752490858,218,0 +170752490908,220,0 +170752490956,221,0 +170752491005,222,0 +170752491053,223,0 +170752491101,223,0 +170752491149,222,0 +170752491197,224,0 +170752491245,224,0 +170752491294,226,0 +170752491342,225,0 +170752491392,226,0 +170752491440,216,0 +170752491489,215,0 +170752491537,216,0 +170752491587,216,0 +170752491636,217,0 +170752491684,219,0 +170752491732,219,0 +170752491782,220,0 +170752491830,221,0 +170752491878,221,0 +170752491926,223,0 +170752491974,224,0 +170752492023,224,0 +170752492071,224,0 +170752492121,225,0 +170752492170,224,0 +170752492220,225,0 +170752492269,225,0 +170752492319,223,0 +170752492367,216,0 +170752492416,216,0 +170752492464,217,0 +170752492512,217,0 +170752492560,219,0 +170752492608,219,0 +170752492658,220,0 +170752492707,221,0 +170752492755,221,0 +170752492803,221,0 +170752492853,223,0 +170752492901,224,0 +170752492950,224,0 +170752492998,224,0 +170752493046,224,0 +170752493094,224,0 +170752493142,224,0 +170752493191,224,0 +170752493241,217,0 +170752493289,215,0 +170752493338,216,0 +170752493388,216,0 +170752493438,217,0 +170752493485,219,0 +170752493533,220,0 +170752493583,220,0 +170752493631,221,0 +170752493680,221,0 +170752493730,223,0 +170752493779,223,0 +170752493829,224,0 +170752493877,225,0 +170752493925,226,0 +170752493973,226,0 +170752494021,225,0 +170752494069,225,0 +170752494117,225,0 +170752494165,217,0 +170752494214,215,0 +170752494262,215,0 +170752494310,216,0 +170752494358,217,0 +170752494406,218,0 +170752494455,219,0 +170752494505,219,0 +170752494553,220,0 +170752494603,221,0 +170752494651,220,0 +170752494700,222,0 +170752494748,223,0 +170752494797,223,0 +170752494845,226,0 +170752494895,225,0 +170752494943,226,0 +170752494992,225,0 +170752495040,226,0 +170752495090,216,0 +170752495138,214,0 +170752495187,215,0 +170752495235,216,0 +170752495285,216,0 +170752495334,217,0 +170752495384,218,0 +170752495432,219,0 +170752495481,220,0 +170752495529,220,0 +170752495577,222,0 +170752495625,223,0 +170752495675,222,0 +170752495722,224,0 +170752495770,224,0 +170752495818,224,0 +170752495866,224,0 +170752495914,225,0 +170752495962,225,0 +170752496010,216,0 +170752496059,215,0 +170752496107,215,0 +170752496156,216,0 +170752496204,217,0 +170752496252,217,0 +170752496300,218,0 +170752496350,219,0 +170752496397,219,0 +170752496445,221,0 +170752496493,221,0 +170752496541,224,0 +170752496591,222,0 +170752496639,224,0 +170752496687,223,0 +170752496735,222,0 +170752496783,221,0 +170752496832,223,0 +170752496880,224,0 +170752496928,216,0 +170752496976,215,0 +170752497026,215,0 +170752497075,216,0 +170752497123,216,0 +170752497173,217,0 +170752497222,217,0 +170752497270,218,0 +170752497318,219,0 +170752497366,220,0 +170752497414,221,0 +170752497462,221,0 +170752497510,222,0 +170752497559,222,0 +170752497607,223,0 +170752497655,224,0 +170752497703,224,0 +170752497753,224,0 +170752497801,225,0 +170752497848,216,0 +170752497898,215,0 +170752497946,215,0 +170752497995,215,0 +170752498043,216,0 +170752498091,216,0 +170752498139,216,0 +170752498187,218,0 +170752498237,218,0 +170752498285,219,0 +170752498334,221,0 +170752498382,221,0 +170752498430,222,0 +170752498480,223,0 +170752498529,222,0 +170752498579,223,0 +170752498628,225,0 +170752498678,225,0 +170752498727,225,0 +170752498777,215,0 +170752498825,215,0 +170752498874,215,0 +170752498922,215,0 +170752498970,215,0 +170752499020,216,0 +170752499068,216,0 +170752499116,216,0 +170752499164,216,0 +170752499212,217,0 +170752499261,217,0 +170752499311,219,0 +170752499360,219,0 +170752499410,220,0 +170752499458,220,0 +170752499507,221,0 +170752499557,222,0 +170752499606,224,0 +170752499654,218,0 +170752499702,215,0 +170752499750,215,0 +170752499798,215,0 +170752499846,216,0 +170752499896,216,0 +170752499944,216,0 +170752499993,216,0 +170752500043,216,0 +170752500092,217,0 +170752500140,218,0 +170752500190,220,0 +170752500238,221,0 +170752500286,221,0 +170752500335,223,0 +170752500383,222,0 +170752500433,223,0 +170752500481,223,0 +170752500530,225,0 +170752500578,217,0 +170752500626,215,0 +170752500674,215,0 +170752500722,215,0 +170752500770,215,0 +170752500819,216,0 +170752500867,217,0 +170752500915,217,0 +170752500965,219,0 +170752501012,219,0 +170752501060,221,0 +170752501108,222,0 +170752501156,223,0 +170752501204,224,0 +170752501252,224,0 +170752501300,225,0 +170752501348,225,0 +170752501396,226,0 +170752501444,225,0 +170752501491,222,0 +170752501539,215,0 +170752501587,215,0 +170752501635,215,0 +170752501683,216,0 +170752501731,216,0 +170752501779,217,0 +170752501826,218,0 +170752501874,218,0 +170752501922,219,0 +170752501970,220,0 +170752502018,221,0 +170752502067,222,0 +170752502115,222,0 +170752502163,223,0 +170752502211,224,0 +170752502259,225,0 +170752502308,225,0 +170752502358,225,0 +170752502407,222,0 +170752502457,214,0 +170752502505,214,0 +170752502553,214,0 +170752502600,215,0 +170752502648,215,0 +170752502696,215,0 +170752502744,216,0 +170752502794,216,0 +170752502843,216,0 +170752502893,216,0 +170752502941,218,0 +170752502989,219,0 +170752503037,221,0 +170752503086,221,0 +170752503134,221,0 +170752503184,222,0 +170752503232,223,0 +170752503280,224,0 +170752503329,224,0 +170752503379,215,0 +170752503428,215,0 +170752503476,215,0 +170752503524,216,0 +170752503572,216,0 +170752503620,216,0 +170752503669,217,0 +170752503718,217,0 +170752503766,218,0 +170752503814,219,0 +170752503864,221,0 +170752503911,221,0 +170752503961,221,0 +170752504009,224,0 +170752504057,222,0 +170752504106,225,0 +170752504154,224,0 +170752504202,225,0 +170752504250,225,0 +170752504298,215,0 +170752504346,215,0 +170752504393,215,0 +170752504441,215,0 +170752504489,216,0 +170752504537,217,0 +170752504585,217,0 +170752504633,218,0 +170752504683,219,0 +170752504730,219,0 +170752504778,220,0 +170752504828,221,0 +170752504876,222,0 +170752504924,223,0 +170752504973,225,0 +170752505023,224,0 +170752505073,224,0 +170752505122,225,0 +170752505170,224,0 +170752505218,216,0 +170752505266,215,0 +170752505314,215,0 +170752505363,216,0 +170752505411,216,0 +170752505459,218,0 +170752505509,218,0 +170752505557,219,0 +170752505605,220,0 +170752505653,221,0 +170752505701,223,0 +170752505750,224,0 +170752505798,223,0 +170752505846,224,0 +170752505895,225,0 +170752505945,224,0 +170752505995,224,0 +170752506043,225,0 +170752506092,224,0 +170752506142,216,0 +170752506190,215,0 +170752506238,215,0 +170752506287,216,0 +170752506335,216,0 +170752506384,217,0 +170752506432,218,0 +170752506480,218,0 +170752506528,219,0 +170752506576,222,0 +170752506624,222,0 +170752506672,224,0 +170752506720,223,0 +170752506768,225,0 +170752506815,224,0 +170752506863,224,0 +170752506911,226,0 +170752506959,225,0 +170752507009,226,0 +170752507057,216,0 +170752507106,216,0 +170752507154,216,0 +170752507202,216,0 +170752507250,217,0 +170752507298,219,0 +170752507345,219,0 +170752507395,220,0 +170752507443,221,0 +170752507491,221,0 +170752507539,223,0 +170752507588,223,0 +170752507636,224,0 +170752507684,224,0 +170752507732,225,0 +170752507780,224,0 +170752507828,224,0 +170752507875,225,0 +170752507923,224,0 +170752507971,216,0 +170752508019,215,0 +170752508068,216,0 +170752508116,217,0 +170752508164,218,0 +170752508212,219,0 +170752508260,219,0 +170752508308,221,0 +170752508356,221,0 +170752508405,222,0 +170752508453,223,0 +170752508501,224,0 +170752508551,225,0 +170752508599,225,0 +170752508646,226,0 +170752508694,225,0 +170752508742,226,0 +170752508790,228,0 +170752508839,225,0 +170752508889,218,0 +170752508938,217,0 +170752508986,218,0 +170752509034,219,0 +170752509082,219,0 +170752509130,220,0 +170752509179,221,0 +170752509227,221,0 +170752509275,221,0 +170752509325,222,0 +170752509373,223,0 +170752509421,223,0 +170752509469,224,0 +170752509517,225,0 +170752509566,226,0 +170752509614,226,0 +170752509664,226,0 +170752509712,225,0 +170752509759,225,0 +170752509809,217,0 +170752509859,216,0 +170752509908,217,0 +170752509956,217,0 +170752510006,218,0 +170752510053,219,0 +170752510103,221,0 +170752510151,220,0 +170752510199,221,0 +170752510248,223,0 +170752510296,223,0 +170752510346,223,0 +170752510394,223,0 +170752510442,225,0 +170752510490,225,0 +170752510539,225,0 +170752510587,225,0 +170752510635,225,0 +170752510683,225,0 +170752510731,216,0 +170752510781,216,0 +170752510829,216,0 +170752510876,217,0 +170752510924,218,0 +170752510972,218,0 +170752511020,220,0 +170752511068,220,0 +170752511116,221,0 +170752511165,221,0 +170752511213,223,0 +170752511261,223,0 +170752511309,224,0 +170752511357,224,0 +170752511405,225,0 +170752511454,225,0 +170752511504,225,0 +170752511551,224,0 +170752511599,226,0 +170752511647,225,0 +170752511695,215,0 +170752511745,215,0 +170752511794,215,0 +170752511842,216,0 +170752511890,217,0 +170752511938,218,0 +170752511986,219,0 +170752512035,219,0 +170752512083,222,0 +170752512131,221,0 +170752512179,224,0 +170752512227,224,0 +170752512275,225,0 +170752512323,225,0 +170752512371,224,0 +170752512419,227,0 +170752512467,226,0 +170752512516,224,0 +170752512566,225,0 +170752512615,215,0 +170752512663,215,0 +170752512713,215,0 +170752512762,216,0 +170752512812,217,0 +170752512861,218,0 +170752512911,219,0 +170752512959,219,0 +170752513007,220,0 +170752513056,221,0 +170752513104,221,0 +170752513154,223,0 +170752513203,225,0 +170752513251,225,0 +170752513299,225,0 +170752513347,225,0 +170752513395,224,0 +170752513443,225,0 +170752513493,225,0 +170752513540,215,0 +170752513588,215,0 +170752513638,215,0 +170752513686,217,0 +170752513734,217,0 +170752513782,219,0 +170752513830,219,0 +170752513878,220,0 +170752513926,221,0 +170752513973,222,0 +170752514023,222,0 +170752514071,223,0 +170752514120,223,0 +170752514168,224,0 +170752514218,225,0 +170752514266,225,0 +170752514315,224,0 +170752514363,226,0 +170752514411,226,0 +170752514459,217,0 +170752514507,215,0 +170752514555,215,0 +170752514603,216,0 +170752514651,218,0 +170752514700,218,0 +170752514750,219,0 +170752514799,220,0 +170752514849,222,0 +170752514898,222,0 +170752514948,223,0 +170752514996,223,0 +170752515045,224,0 +170752515093,224,0 +170752515141,225,0 +170752515189,224,0 +170752515237,224,0 +170752515285,224,0 +170752515333,222,0 +170752515383,217,0 +170752515432,214,0 +170752515482,215,0 +170752515531,215,0 +170752515581,215,0 +170752515628,215,0 +170752515678,216,0 +170752515726,217,0 +170752515774,217,0 +170752515823,218,0 +170752515873,219,0 +170752515922,220,0 +170752515972,223,0 +170752516021,222,0 +170752516071,222,0 +170752516120,224,0 +170752516170,225,0 +170752516219,223,0 +170752516267,230,0 +170752516315,216,0 +170752516365,214,0 +170752516414,215,0 +170752516464,215,0 +170752516512,215,0 +170752516560,215,0 +170752516608,216,0 +170752516656,216,0 +170752516704,216,0 +170752516752,216,0 +170752516801,217,0 +170752516849,218,0 +170752516899,218,0 +170752516947,220,0 +170752516995,221,0 +170752517044,222,0 +170752517094,222,0 +170752517143,222,0 +170752517193,225,0 +170752517241,216,0 +170752517288,215,0 +170752517338,215,0 +170752517386,215,0 +170752517435,216,0 +170752517485,216,0 +170752517533,216,0 +170752517581,217,0 +170752517630,216,0 +170752517680,217,0 +170752517728,218,0 +170752517777,218,0 +170752517827,219,0 +170752517876,221,0 +170752517924,221,0 +170752517974,222,0 +170752518022,222,0 +170752518070,222,0 +170752518118,225,0 +170752518167,217,0 +170752518215,215,0 +170752518265,215,0 +170752518313,215,0 +170752518362,215,0 +170752518412,215,0 +170752518461,215,0 +170752518509,216,0 +170752518559,216,0 +170752518607,217,0 +170752518656,219,0 +170752518706,220,0 +170752518754,220,0 +170752518803,222,0 +170752518853,223,0 +170752518902,222,0 +170752518950,223,0 +170752519000,223,0 +170752519048,224,0 +170752519096,216,0 +170752519143,214,0 +170752519191,214,0 +170752519239,214,0 +170752519289,214,0 +170752519339,214,0 +170752519388,215,0 +170752519438,214,0 +170752519486,215,0 +170752519534,215,0 +170752519581,216,0 +170752519629,216,0 +170752519677,217,0 +170752519725,218,0 +170752519773,219,0 +170752519823,220,0 +170752519871,221,0 +170752519919,221,0 +170752519968,224,0 +170752520016,217,0 +170752520064,215,0 +170752520114,215,0 +170752520162,216,0 +170752520210,215,0 +170752520258,216,0 +170752520306,216,0 +170752520355,216,0 +170752520403,216,0 +170752520451,217,0 +170752520501,218,0 +170752520550,219,0 +170752520598,220,0 +170752520646,221,0 +170752520694,222,0 +170752520742,222,0 +170752520790,223,0 +170752520837,223,0 +170752520885,224,0 +170752520935,216,0 +170752520983,215,0 +170752521031,215,0 +170752521078,215,0 +170752521128,215,0 +170752521176,216,0 +170752521223,216,0 +170752521271,216,0 +170752521319,217,0 +170752521367,217,0 +170752521417,218,0 +170752521464,219,0 +170752521512,221,0 +170752521562,221,0 +170752521610,221,0 +170752521657,222,0 +170752521705,223,0 +170752521755,224,0 +170752521804,224,0 +170752521852,224,0 +170752521902,215,0 +170752521950,215,0 +170752521997,215,0 +170752522045,216,0 +170752522095,217,0 +170752522144,218,0 +170752522194,218,0 +170752522243,218,0 +170752522291,220,0 +170752522339,220,0 +170752522387,221,0 +170752522435,222,0 +170752522483,223,0 +170752522533,224,0 +170752522581,223,0 +170752522629,223,0 +170752522678,224,0 +170752522726,224,0 +170752522774,224,0 +170752522822,215,0 +170752522871,215,0 +170752522921,215,0 +170752522969,216,0 +170752523017,218,0 +170752523065,219,0 +170752523112,219,0 +170752523160,219,0 +170752523208,220,0 +170752523256,221,0 +170752523304,221,0 +170752523352,222,0 +170752523400,223,0 +170752523448,223,0 +170752523495,224,0 +170752523545,225,0 +170752523594,224,0 +170752523642,225,0 +170752523692,224,0 +170752523739,216,0 +170752523787,215,0 +170752523835,217,0 +170752523885,217,0 +170752523933,218,0 +170752523983,219,0 +170752524030,220,0 +170752524078,220,0 +170752524126,223,0 +170752524174,221,0 +170752524222,222,0 +170752524270,224,0 +170752524318,223,0 +170752524367,225,0 +170752524415,225,0 +170752524463,225,0 +170752524511,225,0 +170752524560,226,0 +170752524608,225,0 +170752524656,224,0 +170752524705,216,0 +170752524753,216,0 +170752524801,216,0 +170752524851,217,0 +170752524898,218,0 +170752524946,218,0 +170752524996,219,0 +170752525044,221,0 +170752525091,221,0 +170752525139,221,0 +170752525187,222,0 +170752525235,223,0 +170752525284,223,0 +170752525332,224,0 +170752525380,225,0 +170752525428,226,0 +170752525476,226,0 +170752525524,226,0 +170752525572,226,0 +170752525620,224,0 +170752525667,217,0 +170752525715,215,0 +170752525763,215,0 +170752525811,216,0 +170752525859,217,0 +170752525908,218,0 +170752525956,219,0 +170752526004,219,0 +170752526054,219,0 +170752526102,220,0 +170752526149,220,0 +170752526197,221,0 +170752526245,221,0 +170752526293,222,0 +170752526341,224,0 +170752526389,223,0 +170752526437,223,0 +170752526485,224,0 +170752526532,223,0 +170752526580,224,0 +170752526628,223,0 +170752526676,215,0 +170752526724,214,0 +170752526772,214,0 +170752526820,215,0 +170752526869,215,0 +170752526917,215,0 +170752526966,215,0 +170752527016,216,0 +170752527064,216,0 +170752527112,216,0 +170752527159,217,0 +170752527207,218,0 +170752527255,219,0 +170752527303,219,0 +170752527353,220,0 +170752527402,221,0 +170752527450,220,0 +170752527498,222,0 +170752527547,223,0 +170752527597,224,0 +170752527646,216,0 +170752527694,215,0 +170752527742,215,0 +170752527791,215,0 +170752527839,216,0 +170752527887,216,0 +170752527935,217,0 +170752527983,217,0 +170752528031,218,0 +170752528079,219,0 +170752528127,219,0 +170752528175,222,0 +170752528222,221,0 +170752528270,222,0 +170752528318,223,0 +170752528366,222,0 +170752528414,223,0 +170752528462,223,0 +170752528511,223,0 +170752528559,224,0 +170752528607,224,0 +170752528655,216,0 +170752528704,215,0 +170752528752,215,0 +170752528800,216,0 +170752528848,215,0 +170752528896,217,0 +170752528944,217,0 +170752528992,218,0 +170752529040,219,0 +170752529088,220,0 +170752529136,221,0 +170752529183,221,0 +170752529231,223,0 +170752529279,223,0 +170752529327,224,0 +170752529375,223,0 +170752529425,224,0 +170752529474,224,0 +170752529524,224,0 +170752529573,224,0 +170752529621,216,0 +170752529669,215,0 +170752529717,215,0 +170752529764,215,0 +170752529812,217,0 +170752529860,217,0 +170752529908,217,0 +170752529956,218,0 +170752530004,219,0 +170752530052,219,0 +170752530100,220,0 +170752530147,221,0 +170752530195,221,0 +170752530243,223,0 +170752530293,224,0 +170752530342,224,0 +170752530392,224,0 +170752530440,224,0 +170752530487,225,0 +170752530537,225,0 +170752530586,217,0 +170752530634,215,0 +170752530682,215,0 +170752530730,215,0 +170752530778,215,0 +170752530826,215,0 +170752530874,217,0 +170752530922,217,0 +170752530971,218,0 +170752531021,219,0 +170752531070,220,0 +170752531118,220,0 +170752531166,221,0 +170752531214,221,0 +170752531262,221,0 +170752531310,223,0 +170752531357,222,0 +170752531405,222,0 +170752531453,223,0 +170752531503,223,0 +170752531551,224,0 +170752531599,216,0 +170752531647,215,0 +170752531696,215,0 +170752531744,215,0 +170752531793,216,0 +170752531841,217,0 +170752531889,218,0 +170752531937,218,0 +170752531985,219,0 +170752532033,219,0 +170752532081,219,0 +170752532129,220,0 +170752532177,220,0 +170752532225,220,0 +170752532273,222,0 +170752532321,223,0 +170752532368,224,0 +170752532416,224,0 +170752532464,224,0 +170752532512,224,0 +170752532562,223,0 +170752532610,214,0 +170752532658,214,0 +170752532707,214,0 +170752532755,214,0 +170752532803,214,0 +170752532851,214,0 +170752532899,214,0 +170752532947,214,0 +170752532997,214,0 +170752533046,214,0 +170752533096,214,0 +170752533145,214,0 +170752533193,214,0 +170752533242,214,0 +170752533290,214,0 +170752533338,215,0 +170752533386,215,0 +170752533434,216,0 +170752533482,224,0 +170752533531,224,0 +170752533579,216,0 +170752533627,215,0 +170752533675,215,0 +170752533723,215,0 +170752533771,215,0 +170752533819,216,0 +170752533868,216,0 +170752533916,216,0 +170752533964,216,0 +170752534014,216,0 +170752534063,217,0 +170752534111,218,0 +170752534159,220,0 +170752534207,220,0 +170752534255,221,0 +170752534303,222,0 +170752534351,222,0 +170752534401,223,0 +170752534449,223,0 +170752534497,224,0 +170752534545,216,0 +170752534593,214,0 +170752534641,214,0 +170752534688,215,0 +170752534736,215,0 +170752534784,215,0 +170752534834,215,0 +170752534883,215,0 +170752534933,216,0 +170752534981,216,0 +170752535031,216,0 +170752535081,216,0 +170752535130,218,0 +170752535179,218,0 +170752535227,219,0 +170752535277,220,0 +170752535326,221,0 +170752535374,221,0 +170752535424,224,0 +170752535471,224,0 +170752535519,225,0 +170752535567,216,0 +170752535615,215,0 +170752535664,215,0 +170752535712,215,0 +170752535760,215,0 +170752535808,216,0 +170752535856,216,0 +170752535904,216,0 +170752535952,217,0 +170752536000,217,0 +170752536048,218,0 +170752536096,219,0 +170752536143,220,0 +170752536191,221,0 +170752536239,221,0 +170752536287,222,0 +170752536335,223,0 +170752536383,223,0 +170752536433,224,0 +170752536482,224,0 +170752536532,216,0 +170752536581,215,0 +170752536631,215,0 +170752536680,216,0 +170752536730,216,0 +170752536778,216,0 +170752536826,216,0 +170752536874,217,0 +170752536923,218,0 +170752536973,219,0 +170752537021,219,0 +170752537069,220,0 +170752537117,222,0 +170752537165,221,0 +170752537214,222,0 +170752537264,223,0 +170752537313,223,0 +170752537361,224,0 +170752537409,223,0 +170752537457,224,0 +170752537505,217,0 +170752537555,216,0 +170752537603,216,0 +170752537652,216,0 +170752537702,216,0 +170752537751,218,0 +170752537799,219,0 +170752537849,219,0 +170752537898,220,0 +170752537946,220,0 +170752537994,222,0 +170752538042,222,0 +170752538090,223,0 +170752538138,225,0 +170752538186,224,0 +170752538234,225,0 +170752538282,223,0 +170752538330,224,0 +170752538379,223,0 +170752538427,224,0 +170752538475,224,0 +170752538525,216,0 +170752538574,216,0 +170752538624,216,0 +170752538672,217,0 +170752538720,217,0 +170752538769,218,0 +170752538819,220,0 +170752538868,220,0 +170752538918,221,0 +170752538966,222,0 +170752539015,223,0 +170752539063,223,0 +170752539113,223,0 +170752539162,223,0 +170752539212,224,0 +170752539260,224,0 +170752539309,224,0 +170752539359,225,0 +170752539408,225,0 +170752539456,224,0 +170752539504,216,0 +170752539553,215,0 +170752539603,216,0 +170752539653,217,0 +170752539700,218,0 +170752539748,218,0 +170752539796,218,0 +170752539846,218,0 +170752539894,220,0 +170752539942,220,0 +170752539991,221,0 +170752540039,222,0 +170752540087,223,0 +170752540137,224,0 +170752540185,224,0 +170752540234,224,0 +170752540284,225,0 +170752540332,225,0 +170752540381,224,0 +170752540429,225,0 +170752540477,216,0 +170752540525,216,0 +170752540573,216,0 +170752540621,216,0 +170752540669,217,0 +170752540717,219,0 +170752540765,219,0 +170752540813,220,0 +170752540860,220,0 +170752540908,220,0 +170752540956,221,0 +170752541004,220,0 +170752541052,221,0 +170752541100,223,0 +170752541149,223,0 +170752541197,223,0 +170752541245,223,0 +170752541293,225,0 +170752541342,224,0 +170752541392,225,0 +170752541440,218,0 +170752541489,214,0 +170752541537,215,0 +170752541585,215,0 +170752541633,216,0 +170752541681,215,0 +170752541729,216,0 +170752541777,217,0 +170752541825,217,0 +170752541874,218,0 +170752541922,219,0 +170752541970,221,0 +170752542018,222,0 +170752542066,221,0 +170752542114,223,0 +170752542162,224,0 +170752542210,223,0 +170752542258,223,0 +170752542305,223,0 +170752542355,224,0 +170752542404,224,0 +170752542454,216,0 +170752542503,215,0 +170752542551,215,0 +170752542599,215,0 +170752542647,215,0 +170752542695,216,0 +170752542743,216,0 +170752542791,216,0 +170752542839,216,0 +170752542889,216,0 +170752542937,217,0 +170752542986,218,0 +170752543034,219,0 +170752543084,220,0 +170752543133,221,0 +170752543181,221,0 +170752543231,223,0 +170752543280,223,0 +170752543328,222,0 +170752543378,225,0 +170752543426,226,0 +170752543474,215,0 +170752543522,215,0 +170752543570,215,0 +170752543619,215,0 +170752543667,216,0 +170752543715,216,0 +170752543763,216,0 +170752543811,217,0 +170752543859,217,0 +170752543907,218,0 +170752543957,220,0 +170752544005,220,0 +170752544053,222,0 +170752544102,222,0 +170752544152,223,0 +170752544201,224,0 +170752544249,224,0 +170752544297,225,0 +170752544345,225,0 +170752544393,225,0 +170752544441,216,0 +170752544490,215,0 +170752544540,215,0 +170752544589,215,0 +170752544637,216,0 +170752544685,216,0 +170752544733,216,0 +170752544783,217,0 +170752544832,216,0 +170752544882,217,0 +170752544930,219,0 +170752544979,220,0 +170752545029,221,0 +170752545077,221,0 +170752545125,222,0 +170752545173,222,0 +170752545221,222,0 +170752545270,223,0 +170752545320,225,0 +170752545368,226,0 +170752545417,216,0 +170752545467,215,0 +170752545515,215,0 +170752545564,216,0 +170752545612,216,0 +170752545660,216,0 +170752545710,216,0 +170752545759,216,0 +170752545809,217,0 +170752545857,217,0 +170752545905,218,0 +170752545953,219,0 +170752546001,221,0 +170752546049,221,0 +170752546097,221,0 +170752546145,222,0 +170752546194,223,0 +170752546244,223,0 +170752546292,223,0 +170752546341,224,0 +170752546389,219,0 +170752546437,215,0 +170752546485,216,0 +170752546535,215,0 +170752546582,216,0 +170752546630,216,0 +170752546678,216,0 +170752546726,217,0 +170752546774,217,0 +170752546822,219,0 +170752546870,219,0 +170752546918,220,0 +170752546966,221,0 +170752547013,222,0 +170752547061,222,0 +170752547109,224,0 +170752547159,224,0 +170752547207,223,0 +170752547254,225,0 +170752547302,225,0 +170752547350,225,0 +170752547398,216,0 +170752547446,215,0 +170752547496,215,0 +170752547544,215,0 +170752547592,216,0 +170752547640,216,0 +170752547687,216,0 +170752547735,217,0 +170752547783,217,0 +170752547833,217,0 +170752547881,220,0 +170752547929,221,0 +170752547977,222,0 +170752548025,222,0 +170752548073,222,0 +170752548121,224,0 +170752548169,223,0 +170752548218,225,0 +170752548268,225,0 +170752548317,225,0 +170752548365,216,0 +170752548415,215,0 +170752548463,215,0 +170752548511,215,0 +170752548559,215,0 +170752548608,215,0 +170752548658,216,0 +170752548707,216,0 +170752548755,217,0 +170752548803,218,0 +170752548853,218,0 +170752548901,219,0 +170752548950,220,0 +170752548998,223,0 +170752549046,224,0 +170752549096,223,0 +170752549145,223,0 +170752549193,226,0 +170752549241,224,0 +170752549290,225,0 +170752549338,225,0 +170752549386,215,0 +170752549434,215,0 +170752549482,215,0 +170752549530,216,0 +170752549578,215,0 +170752549626,215,0 +170752549674,216,0 +170752549721,216,0 +170752549769,217,0 +170752549817,217,0 +170752549865,219,0 +170752549913,220,0 +170752549962,221,0 +170752550010,221,0 +170752550060,221,0 +170752550108,222,0 +170752550157,223,0 +170752550205,222,0 +170752550253,221,0 +170752550301,221,0 +170752550350,216,0 +170752550398,214,0 +170752550446,214,0 +170752550495,215,0 +170752550543,215,0 +170752550591,215,0 +170752550641,215,0 +170752550689,216,0 +170752550737,216,0 +170752550786,216,0 +170752550836,217,0 +170752550884,217,0 +170752550932,218,0 +170752550980,219,0 +170752551028,220,0 +170752551075,222,0 +170752551123,220,0 +170752551173,220,0 +170752551222,219,0 +170752551270,223,0 +170752551318,223,0 +170752551366,215,0 +170752551414,216,0 +170752551462,215,0 +170752551512,215,0 +170752551561,215,0 +170752551609,215,0 +170752551657,216,0 +170752551705,216,0 +170752551755,217,0 +170752551804,217,0 +170752551854,218,0 +170752551902,219,0 +170752551950,220,0 +170752551998,221,0 +170752552046,222,0 +170752552094,223,0 +170752552142,223,0 +170752552190,225,0 +170752552237,224,0 +170752552287,225,0 +170752552335,216,0 +170752552383,214,0 +170752552431,215,0 +170752552479,215,0 +170752552528,215,0 +170752552576,216,0 +170752552624,217,0 +170752552674,216,0 +170752552723,216,0 +170752552773,217,0 +170752552822,219,0 +170752552872,220,0 +170752552921,221,0 +170752552969,222,0 +170752553019,224,0 +170752553067,224,0 +170752553116,225,0 +170752553166,224,0 +170752553214,224,0 +170752553262,226,0 +170752553310,219,0 +170752553358,215,0 +170752553407,215,0 +170752553455,215,0 +170752553503,215,0 +170752553551,216,0 +170752553600,215,0 +170752553648,216,0 +170752553696,216,0 +170752553744,216,0 +170752553794,217,0 +170752553842,218,0 +170752553890,219,0 +170752553938,220,0 +170752553986,222,0 +170752554035,223,0 +170752554083,223,0 +170752554131,223,0 +170752554179,224,0 +170752554229,225,0 +170752554278,225,0 +170752554326,216,0 +170752554374,215,0 +170752554422,216,0 +170752554470,215,0 +170752554518,216,0 +170752554566,217,0 +170752554614,218,0 +170752554662,218,0 +170752554710,220,0 +170752554758,221,0 +170752554807,221,0 +170752554855,223,0 +170752554903,223,0 +170752554951,225,0 +170752554999,226,0 +170752555047,224,0 +170752555095,225,0 +170752555144,225,0 +170752555192,226,0 +170752555240,225,0 +170752555288,217,0 +170752555338,215,0 +170752555387,215,0 +170752555435,215,0 +170752555485,215,0 +170752555533,216,0 +170752555580,218,0 +170752555630,218,0 +170752555679,219,0 +170752555729,220,0 +170752555779,221,0 +170752555828,222,0 +170752555876,222,0 +170752555924,222,0 +170752555972,225,0 +170752556021,225,0 +170752556071,226,0 +170752556120,223,0 +170752556170,221,0 +170752556218,225,0 +170752556266,217,0 +170752556315,215,0 +170752556365,215,0 +170752556414,216,0 +170752556462,216,0 +170752556510,217,0 +170752556558,218,0 +170752556606,218,0 +170752556654,220,0 +170752556702,220,0 +170752556752,220,0 +170752556800,221,0 +170752556849,217,0 +170752556897,222,0 +170752556947,222,0 +170752556995,223,0 +170752557044,225,0 +170752557092,224,0 +170752557140,225,0 +170752557188,224,0 +170752557238,224,0 +170752557286,216,0 +170752557335,215,0 +170752557385,215,0 +170752557433,215,0 +170752557482,216,0 +170752557532,217,0 +170752557581,218,0 +170752557629,219,0 +170752557679,220,0 +170752557727,221,0 +170752557776,222,0 +170752557824,223,0 +170752557872,223,0 +170752557920,224,0 +170752557968,225,0 +170752558018,224,0 +170752558065,224,0 +170752558115,225,0 +170752558163,224,0 +170752558212,225,0 +170752558260,217,0 +170752558308,215,0 +170752558356,215,0 +170752558404,216,0 +170752558452,217,0 +170752558500,218,0 +170752558550,219,0 +170752558598,219,0 +170752558646,220,0 +170752558695,221,0 +170752558743,222,0 +170752558791,224,0 +170752558839,223,0 +170752558887,224,0 +170752558935,224,0 +170752558983,224,0 +170752559031,225,0 +170752559079,225,0 +170752559127,225,0 +170752559175,225,0 +170752559223,222,0 +170752559271,215,0 +170752559319,215,0 +170752559366,215,0 +170752559414,216,0 +170752559464,217,0 +170752559513,218,0 +170752559563,218,0 +170752559611,219,0 +170752559659,219,0 +170752559708,221,0 +170752559756,221,0 +170752559806,222,0 +170752559855,224,0 +170752559905,225,0 +170752559954,225,0 +170752560004,224,0 +170752560052,223,0 +170752560102,225,0 +170752560150,224,0 +170752560198,224,0 +170752560246,216,0 +170752560295,215,0 +170752560345,215,0 +170752560393,215,0 +170752560441,216,0 +170752560490,216,0 +170752560540,216,0 +170752560589,217,0 +170752560639,218,0 +170752560688,219,0 +170752560736,220,0 +170752560786,221,0 +170752560834,221,0 +170752560883,223,0 +170752560933,224,0 +170752560982,223,0 +170752561032,224,0 +170752561081,223,0 +170752561131,223,0 +170752561181,223,0 +170752561229,216,0 +170752561278,215,0 +170752561326,215,0 +170752561374,216,0 +170752561423,216,0 +170752561471,216,0 +170752561519,216,0 +170752561567,216,0 +170752561615,217,0 +170752561663,218,0 +170752561710,219,0 +170752561758,220,0 +170752561806,221,0 +170752561854,222,0 +170752561902,222,0 +170752561950,223,0 +170752561998,224,0 +170752562046,224,0 +170752562094,224,0 +170752562141,224,0 +170752562189,217,0 +170752562237,215,0 +170752562285,215,0 +170752562333,216,0 +170752562381,216,0 +170752562429,216,0 +170752562477,216,0 +170752562525,216,0 +170752562573,217,0 +170752562622,218,0 +170752562671,219,0 +170752562719,219,0 +170752562767,221,0 +170752562815,223,0 +170752562863,222,0 +170752562911,222,0 +170752562959,223,0 +170752563007,223,0 +170752563056,223,0 +170752563106,225,0 +170752563153,225,0 +170752563201,216,0 +170752563249,215,0 +170752563297,215,0 +170752563345,215,0 +170752563393,216,0 +170752563441,216,0 +170752563489,217,0 +170752563539,217,0 +170752563587,219,0 +170752563634,219,0 +170752563684,220,0 +170752563732,221,0 +170752563780,221,0 +170752563828,223,0 +170752563875,223,0 +170752563923,224,0 +170752563971,224,0 +170752564019,224,0 +170752564067,224,0 +170752564116,225,0 +170752564164,217,0 +170752564212,215,0 +170752564260,215,0 +170752564308,216,0 +170752564356,215,0 +170752564403,216,0 +170752564451,216,0 +170752564499,216,0 +170752564547,218,0 +170752564595,220,0 +170752564643,220,0 +170752564691,221,0 +170752564739,222,0 +170752564787,222,0 +170752564834,223,0 +170752564882,223,0 +170752564930,224,0 +170752564978,224,0 +170752565026,225,0 +170752565074,225,0 +170752565122,224,0 +170752565170,216,0 +170752565218,215,0 +170752565266,215,0 +170752565313,216,0 +170752565363,216,0 +170752565411,216,0 +170752565460,217,0 +170752565510,217,0 +170752565559,218,0 +170752565607,219,0 +170752565655,219,0 +170752565703,221,0 +170752565751,221,0 +170752565801,222,0 +170752565850,223,0 +170752565898,224,0 +170752565946,224,0 +170752565994,225,0 +170752566042,225,0 +170752566090,225,0 +170752566138,216,0 +170752566187,215,0 +170752566237,215,0 +170752566285,215,0 +170752566335,216,0 +170752566382,217,0 +170752566430,218,0 +170752566478,218,0 +170752566526,218,0 +170752566574,220,0 +170752566622,221,0 +170752566672,222,0 +170752566721,223,0 +170752566769,221,0 +170752566819,223,0 +170752566867,224,0 +170752566915,224,0 +170752566963,225,0 +170752567011,223,0 +170752567059,225,0 +170752567108,217,0 +170752567158,216,0 +170752567206,217,0 +170752567254,218,0 +170752567302,219,0 +170752567351,219,0 +170752567401,221,0 +170752567449,220,0 +170752567497,219,0 +170752567545,222,0 +170752567592,221,0 +170752567640,221,0 +170752567690,222,0 +170752567738,223,0 +170752567787,223,0 +170752567835,226,0 +170752567883,224,0 +170752567933,224,0 +170752567981,226,0 +170752568029,226,0 +170752568077,223,0 +170752568126,215,0 +170752568174,216,0 +170752568222,216,0 +170752568270,218,0 +170752568318,218,0 +170752568366,219,0 +170752568415,219,0 +170752568465,219,0 +170752568514,220,0 +170752568564,221,0 +170752568612,223,0 +170752568659,222,0 +170752568707,220,0 +170752568755,223,0 +170752568803,224,0 +170752568853,225,0 +170752568901,225,0 +170752568949,225,0 +170752568998,226,0 +170752569046,226,0 +170752569094,216,0 +170752569144,216,0 +170752569192,218,0 +170752569240,219,0 +170752569287,219,0 +170752569335,219,0 +170752569385,221,0 +170752569433,222,0 +170752569481,221,0 +170752569529,222,0 +170752569577,223,0 +170752569625,222,0 +170752569673,224,0 +170752569720,225,0 +170752569768,225,0 +170752569816,226,0 +170752569864,226,0 +170752569912,226,0 +170752569960,226,0 +170752570008,225,0 +170752570056,218,0 +170752570105,216,0 +170752570153,217,0 +170752570201,218,0 +170752570249,218,0 +170752570297,219,0 +170752570345,220,0 +170752570393,220,0 +170752570440,221,0 +170752570488,222,0 +170752570538,223,0 +170752570586,224,0 +170752570633,224,0 +170752570683,225,0 +170752570731,224,0 +170752570780,225,0 +170752570828,226,0 +170752570876,226,0 +170752570924,227,0 +170752570972,225,0 +170752571020,221,0 +170752571069,216,0 +170752571119,215,0 +170752571167,218,0 +170752571215,219,0 +170752571263,220,0 +170752571311,220,0 +170752571358,219,0 +170752571406,220,0 +170752571454,221,0 +170752571502,222,0 +170752571550,222,0 +170752571598,223,0 +170752571646,225,0 +170752571694,224,0 +170752571742,225,0 +170752571789,223,0 +170752571837,226,0 +170752571887,224,0 +170752571935,226,0 +170752571984,225,0 +170752572032,216,0 +170752572082,215,0 +170752572130,216,0 +170752572178,218,0 +170752572227,218,0 +170752572275,219,0 +170752572323,219,0 +170752572371,224,0 +170752572419,221,0 +170752572468,221,0 +170752572518,223,0 +170752572566,223,0 +170752572614,219,0 +170752572662,224,0 +170752572710,223,0 +170752572759,226,0 +170752572807,225,0 +170752572857,225,0 +170752572905,224,0 +170752572953,224,0 +170752573001,216,0 +170752573050,215,0 +170752573098,215,0 +170752573146,216,0 +170752573194,217,0 +170752573242,217,0 +170752573290,218,0 +170752573340,218,0 +170752573388,221,0 +170752573436,220,0 +170752573483,221,0 +170752573531,222,0 +170752573579,223,0 +170752573627,223,0 +170752573677,223,0 +170752573725,223,0 +170752573773,225,0 +170752573821,224,0 +170752573870,224,0 +170752573920,226,0 +170752573968,216,0 +170752574016,215,0 +170752574065,215,0 +170752574113,216,0 +170752574163,216,0 +170752574212,215,0 +170752574260,216,0 +170752574310,216,0 +170752574358,217,0 +170752574405,219,0 +170752574455,219,0 +170752574504,220,0 +170752574554,222,0 +170752574604,222,0 +170752574652,223,0 +170752574700,224,0 +170752574747,226,0 +170752574797,225,0 +170752574845,226,0 +170752574893,226,0 +170752574940,224,0 +170752574988,215,0 +170752575036,215,0 +170752575084,215,0 +170752575134,214,0 +170752575182,215,0 +170752575230,215,0 +170752575277,216,0 +170752575325,216,0 +170752575373,217,0 +170752575423,218,0 +170752575471,219,0 +170752575519,219,0 +170752575567,220,0 +170752575616,221,0 +170752575666,221,0 +170752575714,221,0 +170752575762,221,0 +170752575811,218,0 +170752575861,223,0 +170752575910,225,0 +170752575958,216,0 +170752576006,214,0 +170752576056,214,0 +170752576104,214,0 +170752576152,214,0 +170752576200,215,0 +170752576249,215,0 +170752576297,215,0 +170752576345,215,0 +170752576393,216,0 +170752576440,216,0 +170752576488,216,0 +170752576536,217,0 +170752576584,218,0 +170752576633,219,0 +170752576681,221,0 +170752576729,222,0 +170752576777,222,0 +170752576825,222,0 +170752576873,225,0 +170752576921,216,0 +170752576968,214,0 +170752577016,215,0 +170752577064,215,0 +170752577112,215,0 +170752577160,215,0 +170752577208,215,0 +170752577256,216,0 +170752577304,216,0 +170752577352,216,0 +170752577399,216,0 +170752577447,216,0 +170752577495,218,0 +170752577545,219,0 +170752577593,220,0 +170752577640,221,0 +170752577688,221,0 +170752577736,222,0 +170752577784,223,0 +170752577832,225,0 +170752577880,225,0 +170752577928,217,0 +170752577976,215,0 +170752578024,216,0 +170752578071,216,0 +170752578119,216,0 +170752578167,217,0 +170752578215,216,0 +170752578263,216,0 +170752578311,217,0 +170752578360,218,0 +170752578408,218,0 +170752578456,219,0 +170752578506,221,0 +170752578555,222,0 +170752578603,222,0 +170752578651,224,0 +170752578699,225,0 +170752578748,223,0 +170752578798,225,0 +170752578846,224,0 +170752578893,221,0 +170752578943,214,0 +170752578991,214,0 +170752579039,215,0 +170752579087,215,0 +170752579135,215,0 +170752579183,216,0 +170752579232,216,0 +170752579280,216,0 +170752579330,217,0 +170752579378,218,0 +170752579427,219,0 +170752579475,220,0 +170752579523,221,0 +170752579571,221,0 +170752579621,222,0 +170752579669,224,0 +170752579718,224,0 +170752579768,225,0 +170752579816,225,0 +170752579864,226,0 +170752579913,215,0 +170752579963,215,0 +170752580011,215,0 +170752580060,215,0 +170752580108,215,0 +170752580157,216,0 +170752580204,216,0 +170752580254,217,0 +170752580302,218,0 +170752580350,219,0 +170752580398,220,0 +170752580446,222,0 +170752580494,222,0 +170752580543,223,0 +170752580591,223,0 +170752580639,223,0 +170752580688,224,0 +170752580736,224,0 +170752580784,225,0 +170752580832,224,0 +170752580880,217,0 +170752580928,216,0 +170752580977,217,0 +170752581025,218,0 +170752581073,219,0 +170752581121,220,0 +170752581171,220,0 +170752581220,221,0 +170752581269,222,0 +170752581319,222,0 +170752581367,223,0 +170752581415,223,0 +170752581463,225,0 +170752581511,225,0 +170752581560,225,0 +170752581610,225,0 +170752581659,225,0 +170752581707,225,0 +170752581757,225,0 +170752581805,224,0 +170752581853,217,0 +170752581902,216,0 +170752581950,217,0 +170752582000,218,0 +170752582049,219,0 +170752582099,219,0 +170752582148,220,0 +170752582196,222,0 +170752582244,222,0 +170752582294,222,0 +170752582341,221,0 +170752582389,223,0 +170752582437,224,0 +170752582485,224,0 +170752582535,224,0 +170752582583,223,0 +170752582631,226,0 +170752582680,224,0 +170752582730,226,0 +170752582778,225,0 +170752582826,217,0 +170752582874,215,0 +170752582922,216,0 +170752582970,217,0 +170752583019,218,0 +170752583067,218,0 +170752583116,219,0 +170752583164,220,0 +170752583212,221,0 +170752583260,221,0 +170752583308,221,0 +170752583356,222,0 +170752583404,224,0 +170752583452,223,0 +170752583499,224,0 +170752583547,225,0 +170752583595,224,0 +170752583643,224,0 +170752583691,225,0 +170752583739,225,0 +170752583787,225,0 +170752583835,215,0 +170752583883,215,0 +170752583931,216,0 +170752583979,216,0 +170752584028,217,0 +170752584076,219,0 +170752584125,219,0 +170752584173,218,0 +170752584221,220,0 +170752584269,220,0 +170752584318,222,0 +170752584366,222,0 +170752584414,224,0 +170752584464,223,0 +170752584512,223,0 +170752584559,223,0 +170752584607,225,0 +170752584655,225,0 +170752584703,225,0 +170752584751,224,0 +170752584800,216,0 +170752584848,215,0 +170752584896,216,0 +170752584944,216,0 +170752584994,218,0 +170752585041,219,0 +170752585089,218,0 +170752585137,219,0 +170752585185,219,0 +170752585233,221,0 +170752585281,222,0 +170752585329,220,0 +170752585377,223,0 +170752585425,223,0 +170752585473,225,0 +170752585520,225,0 +170752585568,226,0 +170752585618,224,0 +170752585666,225,0 +170752585714,225,0 +170752585762,224,0 +170752585809,215,0 +170752585857,215,0 +170752585905,215,0 +170752585953,216,0 +170752586002,217,0 +170752586050,218,0 +170752586098,219,0 +170752586146,218,0 +170752586194,219,0 +170752586242,219,0 +170752586290,219,0 +170752586339,221,0 +170752586387,221,0 +170752586435,222,0 +170752586483,223,0 +170752586531,223,0 +170752586580,223,0 +170752586628,227,0 +170752586676,224,0 +170752586724,224,0 +170752586772,216,0 +170752586820,214,0 +170752586868,215,0 +170752586915,215,0 +170752586963,215,0 +170752587011,215,0 +170752587059,216,0 +170752587109,217,0 +170752587158,219,0 +170752587207,218,0 +170752587255,220,0 +170752587305,221,0 +170752587353,221,0 +170752587401,223,0 +170752587448,224,0 +170752587496,224,0 +170752587544,224,0 +170752587592,223,0 +170752587640,222,0 +170752587688,225,0 +170752587736,217,0 +170752587784,215,0 +170752587832,216,0 +170752587880,216,0 +170752587928,215,0 +170752587975,216,0 +170752588023,216,0 +170752588071,216,0 +170752588119,217,0 +170752588167,217,0 +170752588217,218,0 +170752588265,220,0 +170752588314,220,0 +170752588362,220,0 +170752588411,222,0 +170752588459,222,0 +170752588507,222,0 +170752588557,225,0 +170752588604,223,0 +170752588652,225,0 +170752588700,232,0 +170752588748,215,0 +170752588796,215,0 +170752588844,215,0 +170752588892,215,0 +170752588940,215,0 +170752588987,216,0 +170752589035,216,0 +170752589083,217,0 +170752589131,217,0 +170752589179,218,0 +170752589227,220,0 +170752589275,221,0 +170752589323,221,0 +170752589371,221,0 +170752589419,221,0 +170752589466,223,0 +170752589516,223,0 +170752589564,224,0 +170752589612,224,0 +170752589660,225,0 +170752589707,217,0 +170752589755,215,0 +170752589803,215,0 +170752589851,216,0 +170752589901,215,0 +170752589948,216,0 +170752589998,216,0 +170752590046,216,0 +170752590094,217,0 +170752590142,217,0 +170752590189,218,0 +170752590239,219,0 +170752590287,221,0 +170752590335,222,0 +170752590382,224,0 +170752590432,222,0 +170752590481,222,0 +170752590529,222,0 +170752590577,223,0 +170752590625,225,0 +170752590673,218,0 +170752590721,215,0 +170752590769,215,0 +170752590818,216,0 +170752590866,216,0 +170752590914,217,0 +170752590962,217,0 +170752591010,218,0 +170752591057,222,0 +170752591105,219,0 +170752591153,220,0 +170752591201,219,0 +170752591249,221,0 +170752591297,222,0 +170752591346,223,0 +170752591394,225,0 +170752591442,226,0 +170752591490,224,0 +170752591538,225,0 +170752591587,224,0 +170752591637,225,0 +170752591684,215,0 +170752591732,214,0 +170752591780,214,0 +170752591828,214,0 +170752591876,214,0 +170752591924,215,0 +170752591972,215,0 +170752592020,215,0 +170752592068,216,0 +170752592116,216,0 +170752592163,218,0 +170752592211,218,0 +170752592261,221,0 +170752592309,220,0 +170752592358,221,0 +170752592406,222,0 +170752592454,222,0 +170752592503,222,0 +170752592551,223,0 +170752592599,225,0 +170752592647,216,0 +170752592695,215,0 +170752592743,215,0 +170752592791,215,0 +170752592839,215,0 +170752592886,216,0 +170752592934,216,0 +170752592982,216,0 +170752593030,216,0 +170752593078,218,0 +170752593126,218,0 +170752593176,219,0 +170752593223,220,0 +170752593273,221,0 +170752593321,221,0 +170752593370,221,0 +170752593420,222,0 +170752593469,223,0 +170752593519,223,0 +170752593567,225,0 +170752593615,216,0 +170752593663,214,0 +170752593712,215,0 +170752593762,215,0 +170752593810,215,0 +170752593858,215,0 +170752593906,216,0 +170752593954,215,0 +170752594002,216,0 +170752594050,217,0 +170752594098,216,0 +170752594146,218,0 +170752594195,219,0 +170752594243,219,0 +170752594293,220,0 +170752594342,221,0 +170752594392,222,0 +170752594440,223,0 +170752594487,223,0 +170752594535,224,0 +170752594583,223,0 +170752594633,215,0 +170752594682,215,0 +170752594730,215,0 +170752594780,216,0 +170752594829,216,0 +170752594879,216,0 +170752594927,217,0 +170752594975,217,0 +170752595024,218,0 +170752595072,221,0 +170752595122,221,0 +170752595170,222,0 +170752595218,222,0 +170752595266,222,0 +170752595315,225,0 +170752595363,226,0 +170752595411,225,0 +170752595459,225,0 +170752595509,217,0 +170752595558,215,0 +170752595606,215,0 +170752595656,215,0 +170752595704,215,0 +170752595752,216,0 +170752595800,216,0 +170752595849,216,0 +170752595897,217,0 +170752595945,218,0 +170752595993,219,0 +170752596041,221,0 +170752596090,222,0 +170752596140,223,0 +170752596189,223,0 +170752596237,223,0 +170752596285,224,0 +170752596333,224,0 +170752596383,225,0 +170752596431,216,0 +170752596479,215,0 +170752596527,215,0 +170752596575,215,0 +170752596624,215,0 +170752596674,216,0 +170752596723,216,0 +170752596773,216,0 +170752596820,216,0 +170752596870,218,0 +170752596918,218,0 +170752596966,219,0 +170752597016,220,0 +170752597063,222,0 +170752597111,223,0 +170752597159,222,0 +170752597207,223,0 +170752597257,223,0 +170752597305,225,0 +170752597354,217,0 +170752597402,215,0 +170752597450,215,0 +170752597498,216,0 +170752597546,216,0 +170752597594,216,0 +170752597644,216,0 +170752597693,218,0 +170752597741,218,0 +170752597789,219,0 +170752597837,220,0 +170752597885,222,0 +170752597933,223,0 +170752597981,222,0 +170752598031,223,0 +170752598078,224,0 +170752598126,225,0 +170752598174,224,0 +170752598222,224,0 +170752598272,217,0 +170752598320,215,0 +170752598369,215,0 +170752598417,215,0 +170752598467,216,0 +170752598515,217,0 +170752598563,218,0 +170752598611,218,0 +170752598659,220,0 +170752598707,221,0 +170752598756,221,0 +170752598804,223,0 +170752598854,223,0 +170752598903,224,0 +170752598951,225,0 +170752599001,225,0 +170752599050,225,0 +170752599100,225,0 +170752599148,225,0 +170752599196,216,0 +170752599245,215,0 +170752599293,215,0 +170752599341,216,0 +170752599389,217,0 +170752599437,217,0 +170752599485,219,0 +170752599533,220,0 +170752599581,220,0 +170752599629,221,0 +170752599679,222,0 +170752599727,223,0 +170752599776,225,0 +170752599824,224,0 +170752599874,225,0 +170752599923,226,0 +170752599971,225,0 +170752600019,222,0 +170752600067,225,0 +170752600117,216,0 +170752600165,216,0 +170752600212,217,0 +170752600262,217,0 +170752600310,218,0 +170752600359,218,0 +170752600409,219,0 +170752600458,219,0 +170752600506,220,0 +170752600554,221,0 +170752600602,223,0 +170752600650,224,0 +170752600698,224,0 +170752600745,225,0 +170752600795,225,0 +170752600843,224,0 +170752600892,226,0 +170752600942,226,0 +170752600990,225,0 +170752601038,215,0 +170752601086,215,0 +170752601135,215,0 +170752601185,216,0 +170752601233,218,0 +170752601281,218,0 +170752601330,219,0 +170752601378,220,0 +170752601426,220,0 +170752601474,221,0 +170752601522,221,0 +170752601570,222,0 +170752601618,224,0 +170752601665,225,0 +170752601713,226,0 +170752601761,225,0 +170752601809,226,0 +170752601857,225,0 +170752601906,224,0 +170752601954,215,0 +170752602002,215,0 +170752602051,217,0 +170752602099,217,0 +170752602147,218,0 +170752602195,219,0 +170752602245,221,0 +170752602293,221,0 +170752602342,222,0 +170752602392,224,0 +170752602440,224,0 +170752602489,224,0 +170752602537,225,0 +170752602587,224,0 +170752602635,225,0 +170752602684,224,0 +170752602732,225,0 +170752602780,224,0 +170752602828,223,0 +170752602876,215,0 +170752602926,215,0 +170752602973,216,0 +170752603021,217,0 +170752603071,218,0 +170752603119,219,0 +170752603167,219,0 +170752603215,220,0 +170752603263,221,0 +170752603312,222,0 +170752603360,223,0 +170752603408,224,0 +170752603456,225,0 +170752603504,228,0 +170752603552,226,0 +170752603600,224,0 +170752603650,227,0 +170752603697,224,0 +170752603745,225,0 +170752603795,216,0 +170752603844,217,0 +170752603892,217,0 +170752603942,219,0 +170752603990,219,0 +170752604038,220,0 +170752604086,220,0 +170752604134,221,0 +170752604182,221,0 +170752604230,223,0 +170752604278,222,0 +170752604326,223,0 +170752604375,226,0 +170752604425,224,0 +170752604473,225,0 +170752604520,224,0 +170752604570,225,0 +170752604619,224,0 +170752604667,218,0 +170752604717,215,0 +170752604766,215,0 +170752604814,215,0 +170752604862,217,0 +170752604912,218,0 +170752604961,218,0 +170752605011,219,0 +170752605060,220,0 +170752605108,220,0 +170752605158,223,0 +170752605206,222,0 +170752605254,221,0 +170752605302,224,0 +170752605350,222,0 +170752605399,224,0 +170752605449,225,0 +170752605498,225,0 +170752605546,225,0 +170752605596,217,0 +170752605644,215,0 +170752605692,215,0 +170752605740,215,0 +170752605789,216,0 +170752605839,218,0 +170752605887,218,0 +170752605935,219,0 +170752605984,219,0 +170752606034,220,0 +170752606082,221,0 +170752606130,222,0 +170752606177,222,0 +170752606227,223,0 +170752606276,225,0 +170752606324,224,0 +170752606374,223,0 +170752606423,225,0 +170752606471,224,0 +170752606519,216,0 +170752606569,214,0 +170752606617,214,0 +170752606665,214,0 +170752606714,214,0 +170752606762,215,0 +170752606810,215,0 +170752606860,215,0 +170752606909,216,0 +170752606959,216,0 +170752607007,216,0 +170752607055,217,0 +170752607103,217,0 +170752607151,219,0 +170752607198,219,0 +170752607246,219,0 +170752607294,220,0 +170752607344,220,0 +170752607392,221,0 +170752607441,222,0 +170752607489,222,0 +170752607539,223,0 +170752607588,224,0 +170752607636,225,0 +170752607684,223,0 +170752607732,224,0 +170752607780,224,0 +170752607828,224,0 +170752607877,217,0 +170752607925,216,0 +170752607975,217,0 +170752608023,217,0 +170752608072,218,0 +170752608120,218,0 +170752608170,219,0 +170752608219,219,0 +170752608267,220,0 +170752608317,222,0 +170752608365,222,0 +170752608413,222,0 +170752608461,223,0 +170752608510,224,0 +170752608558,225,0 +170752608606,224,0 +170752608654,224,0 +170752608704,223,0 +170752608752,224,0 +170752608800,216,0 +170752608847,216,0 +170752608895,217,0 +170752608945,218,0 +170752608994,219,0 +170752609042,219,0 +170752609092,220,0 +170752609141,221,0 +170752609189,222,0 +170752609237,222,0 +170752609287,224,0 +170752609335,224,0 +170752609384,225,0 +170752609434,227,0 +170752609482,225,0 +170752609531,227,0 +170752609581,226,0 +170752609630,225,0 +170752609678,224,0 +170752609726,216,0 +170752609774,217,0 +170752609824,218,0 +170752609872,223,0 +170752609921,221,0 +170752609971,220,0 +170752610019,222,0 +170752610067,222,0 +170752610116,223,0 +170752610164,224,0 +170752610214,225,0 +170752610263,224,0 +170752610311,225,0 +170752610359,225,0 +170752610409,226,0 +170752610458,226,0 +170752610506,226,0 +170752610554,225,0 +170752610603,216,0 +170752610651,215,0 +170752610699,216,0 +170752610747,217,0 +170752610795,218,0 +170752610845,218,0 +170752610893,220,0 +170752610941,221,0 +170752610989,220,0 +170752611037,222,0 +170752611084,223,0 +170752611132,223,0 +170752611180,223,0 +170752611228,225,0 +170752611276,224,0 +170752611324,225,0 +170752611372,224,0 +170752611420,225,0 +170752611467,225,0 +170752611517,217,0 +170752611565,215,0 +170752611614,217,0 +170752611662,217,0 +170752611710,218,0 +170752611758,218,0 +170752611806,219,0 +170752611854,220,0 +170752611901,221,0 +170752611949,221,0 +170752611999,222,0 +170752612047,223,0 +170752612095,224,0 +170752612144,225,0 +170752612192,227,0 +170752612240,227,0 +170752612288,225,0 +170752612337,226,0 +170752612385,225,0 +170752612433,225,0 +170752612481,225,0 +170752612529,224,0 +170752612577,218,0 +170752612625,218,0 +170752612673,220,0 +170752612721,221,0 +170752612770,222,0 +170752612818,221,0 +170752612866,221,0 +170752612916,222,0 +170752612964,224,0 +170752613012,225,0 +170752613060,224,0 +170752613108,223,0 +170752613156,225,0 +170752613203,225,0 +170752613251,224,0 +170752613299,225,0 +170752613347,217,0 +170752613395,216,0 +170752613443,217,0 +170752613491,217,0 +170752613539,218,0 +170752613587,219,0 +170752613635,219,0 +170752613682,220,0 +170752613730,221,0 +170752613780,222,0 +170752613828,224,0 +170752613876,224,0 +170752613923,225,0 +170752613971,224,0 +170752614019,226,0 +170752614067,225,0 +170752614115,225,0 +170752614165,225,0 +170752614213,225,0 +170752614261,217,0 +170752614309,216,0 +170752614356,216,0 +170752614404,217,0 +170752614454,218,0 +170752614502,218,0 +170752614550,219,0 +170752614598,221,0 +170752614646,221,0 +170752614694,222,0 +170752614743,223,0 +170752614791,224,0 +170752614839,223,0 +170752614887,224,0 +170752614935,224,0 +170752614983,224,0 +170752615031,225,0 +170752615080,225,0 +170752615128,225,0 +170752615176,216,0 +170752615224,216,0 +170752615272,216,0 +170752615319,217,0 +170752615367,218,0 +170752615415,218,0 +170752615463,219,0 +170752615511,221,0 +170752615559,221,0 +170752615609,222,0 +170752615657,222,0 +170752615705,223,0 +170752615753,224,0 +170752615802,224,0 +170752615850,224,0 +170752615898,224,0 +170752615946,225,0 +170752615995,226,0 +170752616043,225,0 +170752616091,216,0 +170752616139,215,0 +170752616187,215,0 +170752616235,217,0 +170752616283,218,0 +170752616331,218,0 +170752616379,220,0 +170752616428,220,0 +170752616478,221,0 +170752616527,221,0 +170752616577,223,0 +170752616625,226,0 +170752616674,225,0 +170752616722,225,0 +170752616770,225,0 +170752616818,225,0 +170752616866,227,0 +170752616914,225,0 +170752616962,225,0 +170752617009,216,0 +170752617057,215,0 +170752617105,216,0 +170752617153,217,0 +170752617201,217,0 +170752617249,218,0 +170752617297,220,0 +170752617344,221,0 +170752617392,221,0 +170752617440,223,0 +170752617488,223,0 +170752617536,225,0 +170752617584,224,0 +170752617632,225,0 +170752617680,225,0 +170752617729,224,0 +170752617778,227,0 +170752617826,230,0 +170752617874,225,0 +170752617922,216,0 +170752617970,215,0 +170752618019,215,0 +170752618067,216,0 +170752618117,217,0 +170752618165,218,0 +170752618213,218,0 +170752618260,219,0 +170752618310,220,0 +170752618358,221,0 +170752618407,223,0 +170752618455,225,0 +170752618503,225,0 +170752618551,225,0 +170752618599,233,0 +170752618647,225,0 +170752618695,227,0 +170752618744,226,0 +170752618792,217,0 +170752618840,215,0 +170752618888,215,0 +170752618936,216,0 +170752618984,217,0 +170752619031,217,0 +170752619079,218,0 +170752619127,218,0 +170752619175,220,0 +170752619223,220,0 +170752619271,220,0 +170752619320,221,0 +170752619368,224,0 +170752619418,224,0 +170752619466,225,0 +170752619513,224,0 +170752619561,225,0 +170752619609,224,0 +170752619657,226,0 +170752619705,218,0 +170752619753,215,0 +170752619803,215,0 +170752619852,216,0 +170752619900,216,0 +170752619950,218,0 +170752619999,220,0 +170752620049,219,0 +170752620097,219,0 +170752620145,221,0 +170752620193,222,0 +170752620241,222,0 +170752620290,222,0 +170752620338,222,0 +170752620386,224,0 +170752620434,225,0 +170752620482,224,0 +170752620530,231,0 +170752620579,224,0 +170752620627,216,0 +170752620675,215,0 +170752620723,216,0 +170752620771,217,0 +170752620821,218,0 +170752620869,219,0 +170752620916,219,0 +170752620966,220,0 +170752621015,221,0 +170752621063,222,0 +170752621113,223,0 +170752621162,223,0 +170752621212,224,0 +170752621260,225,0 +170752621308,224,0 +170752621356,225,0 +170752621405,225,0 +170752621455,225,0 +170752621503,224,0 +170752621551,216,0 +170752621599,217,0 +170752621647,218,0 +170752621695,219,0 +170752621744,220,0 +170752621792,220,0 +170752621840,222,0 +170752621890,222,0 +170752621938,223,0 +170752621987,223,0 +170752622037,223,0 +170752622086,226,0 +170752622134,224,0 +170752622182,226,0 +170752622230,226,0 +170752622278,225,0 +170752622326,224,0 +170752622376,225,0 +170752622425,217,0 +170752622473,217,0 +170752622521,218,0 +170752622569,218,0 +170752622619,220,0 +170752622666,221,0 +170752622716,221,0 +170752622764,222,0 +170752622813,221,0 +170752622863,222,0 +170752622911,223,0 +170752622959,223,0 +170752623008,225,0 +170752623058,224,0 +170752623106,226,0 +170752623154,225,0 +170752623203,227,0 +170752623251,226,0 +170752623299,224,0 +170752623347,217,0 +170752623397,216,0 +170752623445,217,0 +170752623493,217,0 +170752623542,219,0 +170752623590,220,0 +170752623638,220,0 +170752623687,222,0 +170752623737,222,0 +170752623785,222,0 +170752623833,223,0 +170752623882,224,0 +170752623930,225,0 +170752623978,224,0 +170752624028,225,0 +170752624077,225,0 +170752624127,225,0 +170752624175,225,0 +170752624223,224,0 +170752624272,215,0 +170752624322,216,0 +170752624371,217,0 +170752624419,218,0 +170752624467,219,0 +170752624517,220,0 +170752624565,220,0 +170752624614,224,0 +170752624662,222,0 +170752624710,223,0 +170752624759,223,0 +170752624807,224,0 +170752624855,225,0 +170752624903,223,0 +170752624951,224,0 +170752625001,224,0 +170752625050,225,0 +170752625098,224,0 +170752625146,217,0 +170752625196,216,0 +170752625244,217,0 +170752625293,218,0 +170752625343,220,0 +170752625392,220,0 +170752625440,221,0 +170752625488,221,0 +170752625536,221,0 +170752625586,222,0 +170752625633,223,0 +170752625681,223,0 +170752625731,224,0 +170752625781,224,0 +170752625828,224,0 +170752625876,224,0 +170752625924,224,0 +170752625972,225,0 +170752626020,224,0 +170752626070,216,0 +170752626119,215,0 +170752626167,216,0 +170752626217,217,0 +170752626266,218,0 +170752626316,219,0 +170752626365,220,0 +170752626415,220,0 +170752626463,221,0 +170752626512,222,0 +170752626560,223,0 +170752626608,224,0 +170752626656,224,0 +170752626706,224,0 +170752626755,224,0 +170752626803,225,0 +170752626851,225,0 +170752626899,225,0 +170752626949,223,0 +170752626996,217,0 +170752627044,218,0 +170752627094,219,0 +170752627143,219,0 +170752627191,220,0 +170752627241,221,0 +170752627291,220,0 +170752627340,224,0 +170752627390,224,0 +170752627438,225,0 +170752627487,226,0 +170752627537,224,0 +170752627584,225,0 +170752627632,226,0 +170752627680,224,0 +170752627728,226,0 +170752627776,224,0 +170752627824,224,0 +170752627872,220,0 +170752627920,219,0 +170752627969,219,0 +170752628017,219,0 +170752628065,222,0 +170752628115,222,0 +170752628163,223,0 +170752628211,224,0 +170752628259,224,0 +170752628307,224,0 +170752628354,226,0 +170752628403,226,0 +170752628451,227,0 +170752628499,226,0 +170752628548,225,0 +170752628596,226,0 +170752628644,225,0 +170752628692,224,0 +170752628741,223,0 +170752628789,219,0 +170752628837,221,0 +170752628885,221,0 +170752628933,222,0 +170752628981,223,0 +170752629029,222,0 +170752629077,223,0 +170752629125,224,0 +170752629174,224,0 +170752629222,224,0 +170752629270,225,0 +170752629318,224,0 +170752629366,225,0 +170752629413,228,0 +170752629461,226,0 +170752629509,225,0 +170752629557,222,0 +170752629605,224,0 +170752629653,224,0 +170752629701,218,0 +170752629749,218,0 +170752629798,218,0 +170752629846,220,0 +170752629894,221,0 +170752629942,220,0 +170752629990,222,0 +170752630038,223,0 +170752630087,224,0 +170752630135,225,0 +170752630185,224,0 +170752630233,225,0 +170752630282,226,0 +170752630330,226,0 +170752630378,225,0 +170752630426,225,0 +170752630474,225,0 +170752630522,224,0 +170752630571,216,0 +170752630621,215,0 +170752630668,216,0 +170752630716,217,0 +170752630764,217,0 +170752630812,218,0 +170752630860,220,0 +170752630908,220,0 +170752630956,221,0 +170752631004,222,0 +170752631053,222,0 +170752631101,223,0 +170752631149,224,0 +170752631197,224,0 +170752631246,225,0 +170752631294,227,0 +170752631344,227,0 +170752631392,225,0 +170752631439,224,0 +170752631487,215,0 +170752631535,215,0 +170752631585,216,0 +170752631633,216,0 +170752631681,217,0 +170752631729,218,0 +170752631777,219,0 +170752631826,219,0 +170752631876,220,0 +170752631924,221,0 +170752631973,222,0 +170752632023,223,0 +170752632071,223,0 +170752632119,224,0 +170752632168,224,0 +170752632218,223,0 +170752632266,226,0 +170752632314,225,0 +170752632363,216,0 +170752632413,215,0 +170752632462,215,0 +170752632510,215,0 +170752632558,216,0 +170752632606,217,0 +170752632654,218,0 +170752632702,220,0 +170752632750,220,0 +170752632799,221,0 +170752632847,221,0 +170752632895,222,0 +170752632943,223,0 +170752632991,224,0 +170752633040,226,0 +170752633090,224,0 +170752633138,226,0 +170752633186,227,0 +170752633235,224,0 +170752633285,215,0 +170752633334,215,0 +170752633382,215,0 +170752633430,216,0 +170752633480,217,0 +170752633527,219,0 +170752633575,218,0 +170752633623,219,0 +170752633673,220,0 +170752633722,222,0 +170752633770,222,0 +170752633818,223,0 +170752633866,223,0 +170752633914,225,0 +170752633962,225,0 +170752634010,225,0 +170752634058,226,0 +170752634106,225,0 +170752634155,216,0 +170752634205,215,0 +170752634254,215,0 +170752634302,215,0 +170752634350,216,0 +170752634400,217,0 +170752634448,219,0 +170752634496,220,0 +170752634545,221,0 +170752634593,220,0 +170752634643,223,0 +170752634691,224,0 +170752634740,224,0 +170752634788,225,0 +170752634836,224,0 +170752634884,225,0 +170752634932,227,0 +170752634981,226,0 +170752635031,217,0 +170752635079,215,0 +170752635127,215,0 +170752635176,215,0 +170752635226,215,0 +170752635275,215,0 +170752635323,217,0 +170752635371,219,0 +170752635421,219,0 +170752635470,221,0 +170752635518,222,0 +170752635566,223,0 +170752635614,224,0 +170752635663,224,0 +170752635713,224,0 +170752635761,224,0 +170752635808,225,0 +170752635856,224,0 +170752635904,225,0 +170752635952,216,0 +170752636000,215,0 +170752636048,216,0 +170752636096,216,0 +170752636146,216,0 +170752636194,217,0 +170752636242,217,0 +170752636289,217,0 +170752636339,218,0 +170752636387,219,0 +170752636436,220,0 +170752636484,223,0 +170752636532,223,0 +170752636580,222,0 +170752636628,223,0 +170752636676,223,0 +170752636724,223,0 +170752636772,225,0 +170752636820,217,0 +170752636868,215,0 +170752636916,215,0 +170752636964,216,0 +170752637012,216,0 +170752637061,217,0 +170752637111,218,0 +170752637160,218,0 +170752637210,219,0 +170752637258,220,0 +170752637306,222,0 +170752637354,222,0 +170752637402,224,0 +170752637450,223,0 +170752637498,227,0 +170752637547,226,0 +170752637595,227,0 +170752637643,225,0 +170752637691,224,0 +170752637739,216,0 +170752637787,216,0 +170752637837,215,0 +170752637885,216,0 +170752637934,217,0 +170752637982,218,0 +170752638030,218,0 +170752638078,219,0 +170752638126,219,0 +170752638175,219,0 +170752638225,221,0 +170752638273,222,0 +170752638321,223,0 +170752638371,223,0 +170752638420,223,0 +170752638468,224,0 +170752638516,222,0 +170752638565,223,0 +170752638615,217,0 +170752638665,215,0 +170752638712,217,0 +170752638762,217,0 +170752638810,219,0 +170752638858,220,0 +170752638906,221,0 +170752638954,222,0 +170752639002,222,0 +170752639049,222,0 +170752639097,223,0 +170752639145,225,0 +170752639193,225,0 +170752639241,226,0 +170752639289,226,0 +170752639337,225,0 +170752639385,225,0 +170752639433,225,0 +170752639480,224,0 +170752639528,216,0 +170752639578,217,0 +170752639627,218,0 +170752639677,219,0 +170752639725,220,0 +170752639773,221,0 +170752639821,222,0 +170752639868,222,0 +170752639916,223,0 +170752639964,225,0 +170752640012,224,0 +170752640060,226,0 +170752640108,225,0 +170752640156,225,0 +170752640203,225,0 +170752640253,225,0 +170752640301,225,0 +170752640349,224,0 +170752640397,218,0 +170752640445,226,0 +170752640492,219,0 +170752640540,220,0 +170752640588,221,0 +170752640636,222,0 +170752640684,221,0 +170752640733,222,0 +170752640781,222,0 +170752640829,223,0 +170752640877,224,0 +170752640925,225,0 +170752640973,226,0 +170752641021,225,0 +170752641068,223,0 +170752641116,224,0 +170752641164,225,0 +170752641212,224,0 +170752641260,217,0 +170752641308,218,0 +170752641356,218,0 +170752641403,219,0 +170752641453,220,0 +170752641502,222,0 +170752641550,222,0 +170752641598,222,0 +170752641646,223,0 +170752641696,223,0 +170752641745,226,0 +170752641793,225,0 +170752641841,224,0 +170752641889,225,0 +170752641937,225,0 +170752641984,222,0 +170752642032,225,0 +170752642080,225,0 +170752642128,224,0 +170752642176,220,0 +170752642224,220,0 +170752642271,222,0 +170752642319,221,0 +170752642369,222,0 +170752642418,223,0 +170752642466,223,0 +170752642516,224,0 +170752642565,223,0 +170752642613,225,0 +170752642662,225,0 +170752642710,224,0 +170752642758,225,0 +170752642806,227,0 +170752642856,226,0 +170752642903,227,0 +170752642951,225,0 +170752642999,225,0 +170752643047,219,0 +170752643095,218,0 +170752643143,220,0 +170752643191,221,0 +170752643240,220,0 +170752643288,221,0 +170752643336,222,0 +170752643384,224,0 +170752643432,223,0 +170752643480,224,0 +170752643529,225,0 +170752643578,226,0 +170752643626,225,0 +170752643674,226,0 +170752643722,226,0 +170752643770,225,0 +170752643818,225,0 +170752643867,225,0 +170752643917,224,0 +170752643966,217,0 +170752644016,217,0 +170752644064,219,0 +170752644111,220,0 +170752644159,221,0 +170752644207,222,0 +170752644257,222,0 +170752644306,222,0 +170752644356,223,0 +170752644405,224,0 +170752644453,224,0 +170752644502,225,0 +170752644550,225,0 +170752644600,226,0 +170752644649,225,0 +170752644699,226,0 +170752644747,226,0 +170752644794,225,0 +170752644844,218,0 +170752644893,218,0 +170752644943,219,0 +170752644991,219,0 +170752645039,221,0 +170752645087,223,0 +170752645134,222,0 +170752645182,223,0 +170752645230,223,0 +170752645278,226,0 +170752645326,230,0 +170752645376,226,0 +170752645424,226,0 +170752645473,226,0 +170752645521,226,0 +170752645569,224,0 +170752645619,225,0 +170752645667,225,0 +170752645716,216,0 +170752645764,218,0 +170752645814,219,0 +170752645862,220,0 +170752645911,221,0 +170752645959,222,0 +170752646007,223,0 +170752646055,224,0 +170752646105,225,0 +170752646154,224,0 +170752646202,228,0 +170752646250,227,0 +170752646298,225,0 +170752646346,225,0 +170752646395,226,0 +170752646445,225,0 +170752646493,225,0 +170752646542,224,0 +170752646590,216,0 +170752646640,216,0 +170752646689,217,0 +170752646737,218,0 +170752646787,219,0 +170752646836,220,0 +170752646886,220,0 +170752646934,222,0 +170752646982,222,0 +170752647030,222,0 +170752647079,223,0 +170752647129,224,0 +170752647177,226,0 +170752647225,225,0 +170752647274,226,0 +170752647324,226,0 +170752647372,225,0 +170752647420,224,0 +170752647468,216,0 +170752647516,216,0 +170752647563,218,0 +170752647611,218,0 +170752647659,219,0 +170752647707,220,0 +170752647755,221,0 +170752647803,222,0 +170752647852,222,0 +170752647900,222,0 +170752647948,228,0 +170752647996,224,0 +170752648044,225,0 +170752648092,225,0 +170752648141,225,0 +170752648189,225,0 +170752648237,225,0 +170752648287,224,0 +170752648334,216,0 +170752648382,216,0 +170752648430,217,0 +170752648478,218,0 +170752648527,219,0 +170752648575,220,0 +170752648625,221,0 +170752648673,221,0 +170752648722,222,0 +170752648772,221,0 +170752648821,224,0 +170752648869,224,0 +170752648917,225,0 +170752648965,226,0 +170752649013,226,0 +170752649061,226,0 +170752649108,225,0 +170752649156,225,0 +170752649204,216,0 +170752649254,215,0 +170752649302,216,0 +170752649349,217,0 +170752649397,218,0 +170752649445,219,0 +170752649493,219,0 +170752649541,219,0 +170752649589,219,0 +170752649637,221,0 +170752649685,222,0 +170752649732,223,0 +170752649782,224,0 +170752649831,226,0 +170752649881,225,0 +170752649930,225,0 +170752649978,224,0 +170752650027,224,0 +170752650075,216,0 +170752650123,215,0 +170752650171,216,0 +170752650219,217,0 +170752650267,218,0 +170752650315,219,0 +170752650363,219,0 +170752650410,220,0 +170752650460,222,0 +170752650509,223,0 +170752650557,224,0 +170752650607,224,0 +170752650655,225,0 +170752650703,224,0 +170752650750,226,0 +170752650798,225,0 +170752650846,225,0 +170752650894,225,0 +170752650942,216,0 +170752650990,216,0 +170752651038,217,0 +170752651087,217,0 +170752651137,219,0 +170752651184,219,0 +170752651234,221,0 +170752651282,221,0 +170752651330,221,0 +170752651377,223,0 +170752651425,223,0 +170752651475,224,0 +170752651523,224,0 +170752651571,225,0 +170752651618,225,0 +170752651666,225,0 +170752651714,225,0 +170752651762,224,0 +170752651810,216,0 +170752651859,216,0 +170752651907,217,0 +170752651955,217,0 +170752652003,218,0 +170752652052,220,0 +170752652100,220,0 +170752652148,222,0 +170752652198,225,0 +170752652246,222,0 +170752652293,226,0 +170752652341,224,0 +170752652389,225,0 +170752652437,225,0 +170752652485,226,0 +170752652533,226,0 +170752652581,225,0 +170752652628,224,0 +170752652678,216,0 +170752652728,216,0 +170752652775,217,0 +170752652825,218,0 +170752652873,219,0 +170752652922,220,0 +170752652972,221,0 +170752653020,222,0 +170752653068,222,0 +170752653116,225,0 +170752653165,224,0 +170752653213,224,0 +170752653261,225,0 +170752653311,226,0 +170752653359,225,0 +170752653407,226,0 +170752653455,225,0 +170752653504,222,0 +170752653552,215,0 +170752653600,215,0 +170752653650,216,0 +170752653698,218,0 +170752653747,218,0 +170752653795,219,0 +170752653843,220,0 +170752653891,221,0 +170752653939,221,0 +170752653987,221,0 +170752654035,223,0 +170752654083,221,0 +170752654132,226,0 +170752654182,225,0 +170752654230,224,0 +170752654280,225,0 +170752654327,225,0 +170752654375,224,0 +170752654423,215,0 +170752654471,215,0 +170752654521,215,0 +170752654571,217,0 +170752654620,216,0 +170752654668,218,0 +170752654716,219,0 +170752654764,221,0 +170752654812,220,0 +170752654861,222,0 +170752654911,224,0 +170752654959,224,0 +170752655007,224,0 +170752655055,224,0 +170752655103,224,0 +170752655151,223,0 +170752655200,225,0 +170752655248,224,0 +170752655296,216,0 +170752655344,217,0 +170752655394,218,0 +170752655442,219,0 +170752655490,219,0 +170752655538,220,0 +170752655587,222,0 +170752655637,222,0 +170752655686,223,0 +170752655736,224,0 +170752655785,224,0 +170752655833,225,0 +170752655881,225,0 +170752655929,226,0 +170752655977,225,0 +170752656027,225,0 +170752656074,225,0 +170752656122,218,0 +170752656170,218,0 +170752656218,219,0 +170752656266,220,0 +170752656316,221,0 +170752656364,221,0 +170752656412,222,0 +170752656460,222,0 +170752656508,223,0 +170752656556,225,0 +170752656603,225,0 +170752656651,226,0 +170752656699,225,0 +170752656747,225,0 +170752656795,225,0 +170752656843,226,0 +170752656892,226,0 +170752656940,223,0 +170752656988,223,0 +170752657036,217,0 +170752657084,217,0 +170752657133,218,0 +170752657183,218,0 +170752657231,220,0 +170752657279,220,0 +170752657327,221,0 +170752657375,222,0 +170752657422,224,0 +170752657470,223,0 +170752657518,223,0 +170752657566,224,0 +170752657614,224,0 +170752657662,226,0 +170752657710,225,0 +170752657758,225,0 +170752657805,225,0 +170752657853,223,0 +170752657901,215,0 +170752657949,216,0 +170752657997,217,0 +170752658045,218,0 +170752658093,218,0 +170752658141,220,0 +170752658189,219,0 +170752658237,221,0 +170752658286,221,0 +170752658336,223,0 +170752658384,223,0 +170752658432,224,0 +170752658480,225,0 +170752658529,224,0 +170752658577,226,0 +170752658625,224,0 +170752658675,224,0 +170752658723,220,0 +170752658772,215,0 +170752658822,216,0 +170752658872,217,0 +170752658919,217,0 +170752658969,218,0 +170752659017,219,0 +170752659066,223,0 +170752659116,221,0 +170752659164,221,0 +170752659214,222,0 +170752659261,223,0 +170752659309,224,0 +170752659359,225,0 +170752659407,225,0 +170752659455,225,0 +170752659503,226,0 +170752659551,225,0 +170752659599,217,0 +170752659648,216,0 +170752659696,217,0 +170752659744,217,0 +170752659794,218,0 +170752659842,220,0 +170752659891,220,0 +170752659941,220,0 +170752659990,221,0 +170752660040,223,0 +170752660089,224,0 +170752660137,224,0 +170752660185,225,0 +170752660235,226,0 +170752660283,225,0 +170752660331,226,0 +170752660380,225,0 +170752660430,224,0 +170752660479,218,0 +170752660527,218,0 +170752660577,219,0 +170752660625,219,0 +170752660673,220,0 +170752660721,221,0 +170752660770,222,0 +170752660820,223,0 +170752660869,223,0 +170752660917,223,0 +170752660967,224,0 +170752661015,225,0 +170752661063,225,0 +170752661111,225,0 +170752661160,226,0 +170752661208,225,0 +170752661256,226,0 +170752661304,225,0 +170752661352,218,0 +170752661401,219,0 +170752661449,219,0 +170752661497,220,0 +170752661545,221,0 +170752661593,224,0 +170752661643,225,0 +170752661691,225,0 +170752661739,224,0 +170752661788,225,0 +170752661836,225,0 +170752661884,226,0 +170752661932,226,0 +170752661980,227,0 +170752662029,225,0 +170752662077,225,0 +170752662125,225,0 +170752662173,225,0 +170752662221,224,0 +170752662269,220,0 +170752662317,220,0 +170752662367,221,0 +170752662415,222,0 +170752662462,221,0 +170752662510,222,0 +170752662560,223,0 +170752662609,223,0 +170752662657,225,0 +170752662705,225,0 +170752662753,224,0 +170752662801,226,0 +170752662849,226,0 +170752662897,226,0 +170752662946,225,0 +170752662994,224,0 +170752663042,226,0 +170752663090,224,0 +170752663138,217,0 +170752663186,218,0 +170752663234,219,0 +170752663282,220,0 +170752663329,220,0 +170752663377,222,0 +170752663425,222,0 +170752663473,223,0 +170752663521,223,0 +170752663569,224,0 +170752663617,225,0 +170752663666,225,0 +170752663714,225,0 +170752663762,225,0 +170752663810,225,0 +170752663858,225,0 +170752663906,225,0 +170752663955,225,0 +170752664005,218,0 +170752664054,219,0 +170752664104,220,0 +170752664152,221,0 +170752664201,221,0 +170752664251,222,0 +170752664299,222,0 +170752664347,222,0 +170752664396,223,0 +170752664446,224,0 +170752664495,225,0 +170752664543,226,0 +170752664593,228,0 +170752664641,225,0 +170752664690,226,0 +170752664740,226,0 +170752664788,226,0 +170752664836,225,0 +170752664884,217,0 +170752664932,216,0 +170752664980,217,0 +170752665029,217,0 +170752665077,219,0 +170752665125,218,0 +170752665173,219,0 +170752665222,220,0 +170752665270,222,0 +170752665320,222,0 +170752665368,223,0 +170752665417,224,0 +170752665467,224,0 +170752665515,223,0 +170752665562,225,0 +170752665612,225,0 +170752665662,225,0 +170752665710,225,0 +170752665758,217,0 +170752665805,215,0 +170752665853,216,0 +170752665901,217,0 +170752665949,218,0 +170752665999,219,0 +170752666048,219,0 +170752666096,220,0 +170752666146,221,0 +170752666195,223,0 +170752666243,223,0 +170752666291,224,0 +170752666341,225,0 +170752666390,225,0 +170752666438,226,0 +170752666486,225,0 +170752666536,225,0 +170752666585,222,0 +170752666635,217,0 +170752666683,215,0 +170752666731,216,0 +170752666780,218,0 +170752666828,218,0 +170752666876,220,0 +170752666924,220,0 +170752666972,220,0 +170752667020,220,0 +170752667068,222,0 +170752667116,219,0 +170752667164,222,0 +170752667212,223,0 +170752667260,224,0 +170752667308,224,0 +170752667357,225,0 +170752667407,224,0 +170752667455,225,0 +170752667503,224,0 +170752667551,217,0 +170752667600,217,0 +170752667648,218,0 +170752667696,219,0 +170752667746,220,0 +170752667794,221,0 +170752667843,222,0 +170752667891,221,0 +170752667939,220,0 +170752667988,223,0 +170752668036,223,0 +170752668086,224,0 +170752668134,225,0 +170752668182,225,0 +170752668230,225,0 +170752668278,225,0 +170752668326,225,0 +170752668374,224,0 +170752668422,217,0 +170752668469,217,0 +170752668519,218,0 +170752668568,219,0 +170752668618,219,0 +170752668666,220,0 +170752668714,219,0 +170752668763,220,0 +170752668811,223,0 +170752668859,224,0 +170752668907,224,0 +170752668955,223,0 +170752669003,225,0 +170752669053,226,0 +170752669102,226,0 +170752669150,226,0 +170752669200,226,0 +170752669248,224,0 +170752669297,217,0 +170752669345,217,0 +170752669393,218,0 +170752669441,219,0 +170752669489,220,0 +170752669539,220,0 +170752669587,220,0 +170752669635,222,0 +170752669684,223,0 +170752669734,224,0 +170752669782,225,0 +170752669830,225,0 +170752669878,226,0 +170752669926,225,0 +170752669975,226,0 +170752670023,226,0 +170752670071,225,0 +170752670119,225,0 +170752670169,216,0 +170752670217,216,0 +170752670264,217,0 +170752670312,218,0 +170752670360,219,0 +170752670408,220,0 +170752670456,220,0 +170752670504,221,0 +170752670552,221,0 +170752670600,222,0 +170752670647,223,0 +170752670695,224,0 +170752670743,225,0 +170752670791,225,0 +170752670839,225,0 +170752670889,225,0 +170752670936,225,0 +170752670984,225,0 +170752671032,217,0 +170752671080,216,0 +170752671130,217,0 +170752671179,218,0 +170752671227,218,0 +170752671277,220,0 +170752671326,221,0 +170752671376,221,0 +170752671424,223,0 +170752671472,223,0 +170752671520,224,0 +170752671568,225,0 +170752671617,225,0 +170752671667,225,0 +170752671717,226,0 +170752671766,225,0 +170752671814,226,0 +170752671862,224,0 +170752671912,218,0 +170752671960,217,0 +170752672009,218,0 +170752672057,220,0 +170752672106,220,0 +170752672154,221,0 +170752672202,222,0 +170752672251,222,0 +170752672299,224,0 +170752672347,224,0 +170752672395,225,0 +170752672443,225,0 +170752672490,226,0 +170752672538,225,0 +170752672586,225,0 +170752672634,225,0 +170752672682,225,0 +170752672730,224,0 +170752672778,220,0 +170752672826,217,0 +170752672874,218,0 +170752672923,219,0 +170752672973,221,0 +170752673023,221,0 +170752673070,222,0 +170752673118,222,0 +170752673168,222,0 +170752673216,224,0 +170752673264,224,0 +170752673313,224,0 +170752673363,225,0 +170752673411,225,0 +170752673459,225,0 +170752673507,225,0 +170752673555,225,0 +170752673604,225,0 +170752673654,224,0 +170752673703,217,0 +170752673753,216,0 +170752673802,218,0 +170752673852,218,0 +170752673901,219,0 +170752673951,221,0 +170752673999,221,0 +170752674047,221,0 +170752674095,222,0 +170752674143,224,0 +170752674191,224,0 +170752674240,224,0 +170752674288,224,0 +170752674336,224,0 +170752674384,225,0 +170752674434,226,0 +170752674483,225,0 +170752674531,224,0 +170752674581,216,0 +170752674630,216,0 +170752674679,217,0 +170752674727,218,0 +170752674775,219,0 +170752674825,219,0 +170752674873,220,0 +170752674920,221,0 +170752674968,222,0 +170752675016,223,0 +170752675064,223,0 +170752675112,224,0 +170752675160,224,0 +170752675209,225,0 +170752675257,225,0 +170752675307,226,0 +170752675356,224,0 +170752675404,216,0 +170752675452,216,0 +170752675500,217,0 +170752675548,218,0 +170752675598,218,0 +170752675647,220,0 +170752675697,222,0 +170752675745,220,0 +170752675793,222,0 +170752675842,224,0 +170752675890,224,0 +170752675939,224,0 +170752675989,225,0 +170752676037,225,0 +170752676085,226,0 +170752676133,225,0 +170752676182,227,0 +170752676232,224,0 +170752676280,217,0 +170752676328,216,0 +170752676377,217,0 +170752676425,219,0 +170752676473,220,0 +170752676521,219,0 +170752676571,221,0 +170752676619,220,0 +170752676668,222,0 +170752676718,224,0 +170752676767,224,0 +170752676815,224,0 +170752676865,224,0 +170752676913,227,0 +170752676962,226,0 +170752677010,226,0 +170752677060,226,0 +170752677108,224,0 +170752677157,218,0 +170752677207,218,0 +170752677256,219,0 +170752677304,221,0 +170752677352,221,0 +170752677402,221,0 +170752677450,222,0 +170752677499,223,0 +170752677547,223,0 +170752677597,224,0 +170752677646,225,0 +170752677694,225,0 +170752677742,225,0 +170752677790,225,0 +170752677839,226,0 +170752677887,225,0 +170752677937,225,0 +170752677985,217,0 +170752678034,217,0 +170752678084,218,0 +170752678132,218,0 +170752678180,220,0 +170752678228,220,0 +170752678276,222,0 +170752678324,223,0 +170752678372,223,0 +170752678421,233,0 +170752678469,225,0 +170752678519,225,0 +170752678568,225,0 +170752678616,225,0 +170752678664,225,0 +170752678712,225,0 +170752678760,226,0 +170752678808,225,0 +170752678856,216,0 +170752678904,215,0 +170752678952,216,0 +170752679000,216,0 +170752679048,218,0 +170752679096,220,0 +170752679145,221,0 +170752679195,221,0 +170752679244,222,0 +170752679294,222,0 +170752679342,226,0 +170752679391,224,0 +170752679439,226,0 +170752679487,224,0 +170752679535,224,0 +170752679583,225,0 +170752679633,226,0 +170752679681,225,0 +170752679728,216,0 +170752679776,215,0 +170752679824,216,0 +170752679874,217,0 +170752679923,219,0 +170752679971,219,0 +170752680019,220,0 diff --git a/laser_value/0210-11.csv b/laser_value/0210-11.csv new file mode 100644 index 0000000..d6f8e36 --- /dev/null +++ b/laser_value/0210-11.csv @@ -0,0 +1,7432 @@ +timestamp,laser_value,event +170752680068,220,0 +170752680116,222,0 +170752680164,222,0 +170752680212,223,0 +170752680260,223,0 +170752680307,224,0 +170752680355,225,0 +170752680403,224,0 +170752680451,225,0 +170752680500,225,0 +170752680548,224,0 +170752680596,216,0 +170752680644,217,0 +170752680692,218,0 +170752680740,219,0 +170752680788,219,0 +170752680836,219,0 +170752680884,221,0 +170752680932,222,0 +170752680981,223,0 +170752681030,224,0 +170752681078,223,0 +170752681126,224,0 +170752681174,225,0 +170752681222,225,0 +170752681270,225,0 +170752681320,226,0 +170752681367,226,0 +170752681417,224,0 +170752681466,217,0 +170752681514,218,0 +170752681562,219,0 +170752681612,220,0 +170752681660,220,0 +170752681708,221,0 +170752681756,222,0 +170752681805,224,0 +170752681855,224,0 +170752681903,224,0 +170752681951,227,0 +170752681999,226,0 +170752682047,226,0 +170752682095,226,0 +170752682143,227,0 +170752682192,224,0 +170752682240,225,0 +170752682288,220,0 +170752682336,219,0 +170752682384,220,0 +170752682431,221,0 +170752682481,222,0 +170752682529,222,0 +170752682577,223,0 +170752682625,224,0 +170752682672,224,0 +170752682720,225,0 +170752682768,225,0 +170752682816,226,0 +170752682864,226,0 +170752682912,226,0 +170752682960,226,0 +170752683008,226,0 +170752683055,225,0 +170752683103,225,0 +170752683151,220,0 +170752683199,220,0 +170752683247,222,0 +170752683295,222,0 +170752683343,223,0 +170752683391,222,0 +170752683439,222,0 +170752683487,224,0 +170752683536,225,0 +170752683584,226,0 +170752683632,227,0 +170752683680,227,0 +170752683728,227,0 +170752683776,226,0 +170752683823,226,0 +170752683871,226,0 +170752683919,226,0 +170752683969,225,0 +170752684016,220,0 +170752684064,220,0 +170752684112,221,0 +170752684160,222,0 +170752684208,222,0 +170752684256,222,0 +170752684304,223,0 +170752684352,225,0 +170752684399,224,0 +170752684447,225,0 +170752684495,226,0 +170752684543,227,0 +170752684591,226,0 +170752684639,227,0 +170752684688,226,0 +170752684736,226,0 +170752684786,226,0 +170752684835,225,0 +170752684884,218,0 +170752684932,218,0 +170752684980,219,0 +170752685028,220,0 +170752685076,221,0 +170752685124,222,0 +170752685172,223,0 +170752685220,223,0 +170752685268,225,0 +170752685315,224,0 +170752685365,225,0 +170752685413,225,0 +170752685461,227,0 +170752685509,226,0 +170752685558,226,0 +170752685606,226,0 +170752685654,226,0 +170752685702,222,0 +170752685750,215,0 +170752685798,216,0 +170752685845,217,0 +170752685893,219,0 +170752685941,219,0 +170752685989,220,0 +170752686038,220,0 +170752686086,221,0 +170752686136,220,0 +170752686184,222,0 +170752686231,224,0 +170752686279,224,0 +170752686327,224,0 +170752686375,224,0 +170752686423,224,0 +170752686471,228,0 +170752686519,226,0 +170752686567,217,0 +170752686614,216,0 +170752686664,217,0 +170752686712,217,0 +170752686760,219,0 +170752686808,219,0 +170752686857,221,0 +170752686905,221,0 +170752686955,222,0 +170752687003,223,0 +170752687051,224,0 +170752687099,226,0 +170752687147,226,0 +170752687196,225,0 +170752687246,223,0 +170752687295,226,0 +170752687343,224,0 +170752687393,224,0 +170752687442,218,0 +170752687492,218,0 +170752687541,219,0 +170752687589,220,0 +170752687639,221,0 +170752687687,222,0 +170752687736,222,0 +170752687784,223,0 +170752687832,223,0 +170752687881,224,0 +170752687931,224,0 +170752687979,225,0 +170752688028,225,0 +170752688078,226,0 +170752688128,226,0 +170752688177,225,0 +170752688227,225,0 +170752688276,218,0 +170752688326,216,0 +170752688375,218,0 +170752688423,218,0 +170752688471,219,0 +170752688519,220,0 +170752688567,222,0 +170752688615,223,0 +170752688663,223,0 +170752688712,224,0 +170752688762,224,0 +170752688810,224,0 +170752688859,224,0 +170752688907,224,0 +170752688955,225,0 +170752689005,226,0 +170752689053,226,0 +170752689101,224,0 +170752689149,216,0 +170752689197,215,0 +170752689246,215,0 +170752689296,216,0 +170752689344,217,0 +170752689392,219,0 +170752689440,219,0 +170752689487,220,0 +170752689535,220,0 +170752689583,222,0 +170752689631,223,0 +170752689681,224,0 +170752689730,224,0 +170752689778,225,0 +170752689826,226,0 +170752689876,226,0 +170752689925,221,0 +170752689975,224,0 +170752690024,216,0 +170752690072,215,0 +170752690122,216,0 +170752690171,216,0 +170752690219,217,0 +170752690267,218,0 +170752690317,219,0 +170752690365,221,0 +170752690414,221,0 +170752690462,222,0 +170752690510,223,0 +170752690558,222,0 +170752690606,224,0 +170752690655,224,0 +170752690703,224,0 +170752690751,226,0 +170752690801,226,0 +170752690850,217,0 +170752690898,215,0 +170752690946,216,0 +170752690994,217,0 +170752691042,218,0 +170752691090,218,0 +170752691138,219,0 +170752691188,220,0 +170752691237,220,0 +170752691287,221,0 +170752691335,222,0 +170752691384,223,0 +170752691432,224,0 +170752691480,225,0 +170752691528,224,0 +170752691576,225,0 +170752691625,227,0 +170752691673,224,0 +170752691721,216,0 +170752691769,216,0 +170752691819,217,0 +170752691867,218,0 +170752691915,219,0 +170752691964,219,0 +170752692012,219,0 +170752692060,221,0 +170752692108,221,0 +170752692156,222,0 +170752692205,224,0 +170752692253,225,0 +170752692301,224,0 +170752692351,226,0 +170752692399,224,0 +170752692447,225,0 +170752692495,224,0 +170752692544,220,0 +170752692594,218,0 +170752692643,218,0 +170752692691,220,0 +170752692741,221,0 +170752692789,220,0 +170752692838,222,0 +170752692886,222,0 +170752692934,224,0 +170752692982,223,0 +170752693032,224,0 +170752693081,225,0 +170752693131,226,0 +170752693180,225,0 +170752693228,226,0 +170752693278,226,0 +170752693327,225,0 +170752693375,225,0 +170752693423,217,0 +170752693473,217,0 +170752693522,220,0 +170752693570,220,0 +170752693618,221,0 +170752693668,221,0 +170752693717,222,0 +170752693765,223,0 +170752693813,223,0 +170752693861,224,0 +170752693909,225,0 +170752693957,226,0 +170752694006,224,0 +170752694054,225,0 +170752694102,225,0 +170752694152,224,0 +170752694200,225,0 +170752694247,224,0 +170752694297,218,0 +170752694345,219,0 +170752694394,219,0 +170752694444,221,0 +170752694494,222,0 +170752694541,223,0 +170752694589,222,0 +170752694637,225,0 +170752694685,225,0 +170752694735,225,0 +170752694783,225,0 +170752694832,225,0 +170752694880,233,0 +170752694930,226,0 +170752694979,226,0 +170752695027,225,0 +170752695075,225,0 +170752695123,220,0 +170752695171,219,0 +170752695219,220,0 +170752695269,220,0 +170752695318,221,0 +170752695366,222,0 +170752695414,223,0 +170752695464,224,0 +170752695512,225,0 +170752695561,225,0 +170752695609,226,0 +170752695659,226,0 +170752695707,226,0 +170752695754,227,0 +170752695802,225,0 +170752695852,226,0 +170752695900,224,0 +170752695948,220,0 +170752695997,221,0 +170752696045,221,0 +170752696093,222,0 +170752696141,223,0 +170752696189,224,0 +170752696237,223,0 +170752696285,224,0 +170752696335,224,0 +170752696383,226,0 +170752696431,226,0 +170752696478,226,0 +170752696528,225,0 +170752696578,226,0 +170752696627,226,0 +170752696675,225,0 +170752696723,225,0 +170752696771,222,0 +170752696820,217,0 +170752696868,218,0 +170752696916,219,0 +170752696964,220,0 +170752697012,220,0 +170752697060,221,0 +170752697108,223,0 +170752697156,222,0 +170752697206,224,0 +170752697255,225,0 +170752697303,225,0 +170752697351,226,0 +170752697399,225,0 +170752697447,225,0 +170752697495,230,0 +170752697544,225,0 +170752697592,226,0 +170752697640,223,0 +170752697688,216,0 +170752697736,216,0 +170752697785,217,0 +170752697835,218,0 +170752697883,219,0 +170752697931,219,0 +170752697980,220,0 +170752698030,222,0 +170752698078,222,0 +170752698126,223,0 +170752698175,224,0 +170752698223,225,0 +170752698271,225,0 +170752698321,225,0 +170752698369,225,0 +170752698417,223,0 +170752698465,225,0 +170752698514,221,0 +170752698562,215,0 +170752698612,215,0 +170752698661,217,0 +170752698709,218,0 +170752698757,220,0 +170752698805,220,0 +170752698853,222,0 +170752698901,221,0 +170752698950,222,0 +170752698998,223,0 +170752699046,224,0 +170752699096,225,0 +170752699145,225,0 +170752699193,225,0 +170752699243,225,0 +170752699291,226,0 +170752699339,225,0 +170752699388,216,0 +170752699436,215,0 +170752699486,215,0 +170752699535,216,0 +170752699583,216,0 +170752699631,218,0 +170752699681,219,0 +170752699729,219,0 +170752699776,220,0 +170752699824,222,0 +170752699874,222,0 +170752699922,221,0 +170752699970,224,0 +170752700019,224,0 +170752700067,226,0 +170752700115,226,0 +170752700163,226,0 +170752700211,224,0 +170752700259,216,0 +170752700307,215,0 +170752700354,216,0 +170752700404,217,0 +170752700452,218,0 +170752700500,219,0 +170752700549,220,0 +170752700597,220,0 +170752700645,220,0 +170752700695,222,0 +170752700743,222,0 +170752700791,224,0 +170752700838,225,0 +170752700886,223,0 +170752700936,225,0 +170752700984,226,0 +170752701033,224,0 +170752701081,216,0 +170752701131,216,0 +170752701179,217,0 +170752701228,218,0 +170752701276,219,0 +170752701326,220,0 +170752701374,221,0 +170752701422,221,0 +170752701470,222,0 +170752701519,222,0 +170752701569,225,0 +170752701618,225,0 +170752701668,225,0 +170752701717,226,0 +170752701765,225,0 +170752701815,225,0 +170752701864,225,0 +170752701912,224,0 +170752701960,218,0 +170752702010,218,0 +170752702058,219,0 +170752702107,220,0 +170752702155,221,0 +170752702203,221,0 +170752702251,222,0 +170752702299,223,0 +170752702348,224,0 +170752702398,225,0 +170752702446,225,0 +170752702494,225,0 +170752702542,225,0 +170752702590,225,0 +170752702639,226,0 +170752702689,226,0 +170752702738,226,0 +170752702786,225,0 +170752702834,220,0 +170752702884,220,0 +170752702932,221,0 +170752702980,222,0 +170752703029,223,0 +170752703079,225,0 +170752703127,224,0 +170752703175,226,0 +170752703224,225,0 +170752703274,226,0 +170752703321,225,0 +170752703369,228,0 +170752703419,227,0 +170752703467,227,0 +170752703516,226,0 +170752703566,225,0 +170752703616,225,0 +170752703664,219,0 +170752703713,219,0 +170752703761,219,0 +170752703809,219,0 +170752703857,221,0 +170752703905,223,0 +170752703953,221,0 +170752704001,222,0 +170752704049,223,0 +170752704097,225,0 +170752704146,225,0 +170752704196,224,0 +170752704245,227,0 +170752704293,225,0 +170752704343,225,0 +170752704392,225,0 +170752704442,225,0 +170752704490,217,0 +170752704539,216,0 +170752704587,217,0 +170752704637,218,0 +170752704685,219,0 +170752704735,221,0 +170752704782,222,0 +170752704832,221,0 +170752704880,222,0 +170752704928,223,0 +170752704976,224,0 +170752705024,224,0 +170752705072,225,0 +170752705121,225,0 +170752705171,225,0 +170752705220,226,0 +170752705270,226,0 +170752705318,223,0 +170752705367,217,0 +170752705415,217,0 +170752705465,216,0 +170752705514,219,0 +170752705562,220,0 +170752705610,221,0 +170752705660,222,0 +170752705708,222,0 +170752705757,223,0 +170752705807,224,0 +170752705855,225,0 +170752705904,225,0 +170752705954,225,0 +170752706003,224,0 +170752706051,225,0 +170752706101,225,0 +170752706149,224,0 +170752706198,217,0 +170752706246,218,0 +170752706294,219,0 +170752706344,220,0 +170752706392,220,0 +170752706439,220,0 +170752706487,221,0 +170752706537,223,0 +170752706585,222,0 +170752706633,225,0 +170752706682,224,0 +170752706732,223,0 +170752706781,226,0 +170752706831,226,0 +170752706879,228,0 +170752706928,224,0 +170752706978,225,0 +170752707026,218,0 +170752707075,218,0 +170752707125,220,0 +170752707173,221,0 +170752707223,222,0 +170752707270,224,0 +170752707318,224,0 +170752707366,225,0 +170752707414,226,0 +170752707462,224,0 +170752707512,226,0 +170752707561,226,0 +170752707611,225,0 +170752707660,225,0 +170752707708,225,0 +170752707758,225,0 +170752707806,224,0 +170752707854,221,0 +170752707902,222,0 +170752707951,224,0 +170752707999,222,0 +170752708049,226,0 +170752708097,225,0 +170752708144,224,0 +170752708194,225,0 +170752708242,225,0 +170752708290,226,0 +170752708338,226,0 +170752708386,226,0 +170752708434,226,0 +170752708483,226,0 +170752708531,225,0 +170752708579,225,0 +170752708629,225,0 +170752708678,222,0 +170752708726,222,0 +170752708774,222,0 +170752708822,223,0 +170752708870,224,0 +170752708918,224,0 +170752708968,224,0 +170752709017,225,0 +170752709065,226,0 +170752709114,227,0 +170752709162,227,0 +170752709210,226,0 +170752709258,226,0 +170752709306,228,0 +170752709354,226,0 +170752709402,224,0 +170752709450,225,0 +170752709498,220,0 +170752709546,218,0 +170752709596,219,0 +170752709644,220,0 +170752709692,222,0 +170752709741,222,0 +170752709789,223,0 +170752709839,223,0 +170752709888,224,0 +170752709936,225,0 +170752709984,225,0 +170752710033,227,0 +170752710083,225,0 +170752710131,226,0 +170752710179,224,0 +170752710227,225,0 +170752710275,225,0 +170752710325,224,0 +170752710372,217,0 +170752710420,218,0 +170752710468,219,0 +170752710516,220,0 +170752710564,221,0 +170752710614,219,0 +170752710662,222,0 +170752710711,223,0 +170752710761,223,0 +170752710810,224,0 +170752710858,225,0 +170752710906,225,0 +170752710954,225,0 +170752711004,226,0 +170752711053,225,0 +170752711101,225,0 +170752711151,225,0 +170752711199,216,0 +170752711248,217,0 +170752711298,217,0 +170752711346,219,0 +170752711395,220,0 +170752711443,222,0 +170752711493,221,0 +170752711540,223,0 +170752711588,222,0 +170752711636,224,0 +170752711684,224,0 +170752711732,226,0 +170752711782,225,0 +170752711831,225,0 +170752711881,225,0 +170752711930,226,0 +170752711980,224,0 +170752712029,215,0 +170752712077,216,0 +170752712125,217,0 +170752712173,219,0 +170752712221,219,0 +170752712269,221,0 +170752712317,221,0 +170752712365,223,0 +170752712415,224,0 +170752712462,224,0 +170752712510,225,0 +170752712560,225,0 +170752712608,226,0 +170752712656,225,0 +170752712705,226,0 +170752712755,225,0 +170752712805,224,0 +170752712853,215,0 +170752712900,215,0 +170752712948,216,0 +170752712998,217,0 +170752713046,218,0 +170752713095,219,0 +170752713143,219,0 +170752713191,219,0 +170752713239,221,0 +170752713287,222,0 +170752713335,223,0 +170752713385,223,0 +170752713434,224,0 +170752713482,223,0 +170752713530,225,0 +170752713578,225,0 +170752713628,226,0 +170752713677,216,0 +170752713727,216,0 +170752713775,218,0 +170752713823,218,0 +170752713871,220,0 +170752713919,220,0 +170752713968,221,0 +170752714016,222,0 +170752714066,222,0 +170752714115,224,0 +170752714165,225,0 +170752714213,224,0 +170752714262,224,0 +170752714310,226,0 +170752714358,226,0 +170752714406,226,0 +170752714454,225,0 +170752714503,216,0 +170752714553,215,0 +170752714601,216,0 +170752714649,218,0 +170752714698,218,0 +170752714746,218,0 +170752714794,218,0 +170752714844,220,0 +170752714892,221,0 +170752714940,222,0 +170752714988,224,0 +170752715036,224,0 +170752715084,224,0 +170752715132,225,0 +170752715179,226,0 +170752715229,226,0 +170752715277,225,0 +170752715325,216,0 +170752715373,215,0 +170752715421,216,0 +170752715469,214,0 +170752715517,218,0 +170752715566,218,0 +170752715614,219,0 +170752715662,220,0 +170752715712,221,0 +170752715760,222,0 +170752715807,223,0 +170752715857,224,0 +170752715907,225,0 +170752715956,225,0 +170752716004,225,0 +170752716052,226,0 +170752716100,224,0 +170752716148,217,0 +170752716197,216,0 +170752716247,218,0 +170752716296,219,0 +170752716344,220,0 +170752716392,221,0 +170752716442,221,0 +170752716491,222,0 +170752716541,223,0 +170752716589,225,0 +170752716639,225,0 +170752716688,225,0 +170752716737,225,0 +170752716785,226,0 +170752716833,225,0 +170752716881,223,0 +170752716929,228,0 +170752716977,220,0 +170752717027,216,0 +170752717076,218,0 +170752717124,219,0 +170752717172,220,0 +170752717222,221,0 +170752717269,221,0 +170752717317,222,0 +170752717365,225,0 +170752717413,224,0 +170752717461,224,0 +170752717509,224,0 +170752717559,225,0 +170752717607,225,0 +170752717656,225,0 +170752717704,225,0 +170752717752,225,0 +170752717800,224,0 +170752717849,217,0 +170752717897,218,0 +170752717945,219,0 +170752717993,220,0 +170752718041,220,0 +170752718089,221,0 +170752718137,223,0 +170752718185,223,0 +170752718233,223,0 +170752718281,225,0 +170752718330,226,0 +170752718378,224,0 +170752718426,232,0 +170752718475,225,0 +170752718525,223,0 +170752718573,225,0 +170752718621,224,0 +170752718669,218,0 +170752718717,218,0 +170752718765,218,0 +170752718814,223,0 +170752718862,221,0 +170752718912,222,0 +170752718960,222,0 +170752719009,222,0 +170752719057,224,0 +170752719105,224,0 +170752719155,225,0 +170752719204,227,0 +170752719252,225,0 +170752719300,225,0 +170752719350,224,0 +170752719398,225,0 +170752719447,225,0 +170752719495,219,0 +170752719543,219,0 +170752719591,220,0 +170752719641,222,0 +170752719689,221,0 +170752719737,223,0 +170752719786,223,0 +170752719834,224,0 +170752719882,224,0 +170752719930,225,0 +170752719978,227,0 +170752720028,226,0 +170752720076,225,0 +170752720125,225,0 +170752720173,225,0 +170752720222,223,0 +170752720270,224,0 +170752720319,218,0 +170752720366,218,0 +170752720414,219,0 +170752720462,219,0 +170752720510,220,0 +170752720560,221,0 +170752720609,222,0 +170752720657,223,0 +170752720705,224,0 +170752720753,223,0 +170752720803,224,0 +170752720851,224,0 +170752720899,225,0 +170752720948,226,0 +170752720998,226,0 +170752721046,225,0 +170752721093,225,0 +170752721141,220,0 +170752721189,218,0 +170752721237,220,0 +170752721285,219,0 +170752721333,220,0 +170752721381,222,0 +170752721429,224,0 +170752721477,224,0 +170752721526,224,0 +170752721574,225,0 +170752721622,226,0 +170752721670,228,0 +170752721717,226,0 +170752721765,224,0 +170752721815,225,0 +170752721863,225,0 +170752721911,224,0 +170752721960,222,0 +170752722010,222,0 +170752722058,222,0 +170752722106,222,0 +170752722155,223,0 +170752722205,223,0 +170752722253,224,0 +170752722300,226,0 +170752722350,225,0 +170752722399,225,0 +170752722449,225,0 +170752722498,226,0 +170752722546,226,0 +170752722594,226,0 +170752722644,226,0 +170752722692,225,0 +170752722740,223,0 +170752722789,223,0 +170752722838,218,0 +170752722886,220,0 +170752722935,221,0 +170752722983,221,0 +170752723031,223,0 +170752723081,223,0 +170752723129,224,0 +170752723177,224,0 +170752723225,225,0 +170752723274,224,0 +170752723324,227,0 +170752723373,225,0 +170752723423,226,0 +170752723471,227,0 +170752723519,225,0 +170752723567,227,0 +170752723615,224,0 +170752723664,216,0 +170752723714,217,0 +170752723761,218,0 +170752723811,219,0 +170752723860,220,0 +170752723910,220,0 +170752723960,220,0 +170752724009,222,0 +170752724057,224,0 +170752724105,226,0 +170752724153,225,0 +170752724201,225,0 +170752724250,225,0 +170752724298,225,0 +170752724346,225,0 +170752724394,225,0 +170752724442,223,0 +170752724490,216,0 +170752724538,216,0 +170752724586,218,0 +170752724634,219,0 +170752724682,219,0 +170752724732,221,0 +170752724779,221,0 +170752724829,223,0 +170752724879,223,0 +170752724926,225,0 +170752724976,225,0 +170752725024,225,0 +170752725072,225,0 +170752725120,224,0 +170752725169,225,0 +170752725219,225,0 +170752725268,224,0 +170752725318,216,0 +170752725366,216,0 +170752725415,217,0 +170752725463,217,0 +170752725513,219,0 +170752725562,219,0 +170752725612,221,0 +170752725660,222,0 +170752725707,223,0 +170752725757,224,0 +170752725807,226,0 +170752725856,227,0 +170752725905,225,0 +170752725955,227,0 +170752726005,225,0 +170752726053,225,0 +170752726102,225,0 +170752726151,216,0 +170752726201,216,0 +170752726249,216,0 +170752726299,218,0 +170752726346,219,0 +170752726394,219,0 +170752726442,220,0 +170752726492,220,0 +170752726540,220,0 +170752726589,223,0 +170752726637,224,0 +170752726687,225,0 +170752726735,224,0 +170752726783,226,0 +170752726832,224,0 +170752726882,226,0 +170752726930,224,0 +170752726979,217,0 +170752727027,216,0 +170752727077,217,0 +170752727126,216,0 +170752727174,218,0 +170752727222,218,0 +170752727271,219,0 +170752727319,220,0 +170752727367,221,0 +170752727417,220,0 +170752727466,224,0 +170752727514,224,0 +170752727564,225,0 +170752727612,225,0 +170752727660,226,0 +170752727708,224,0 +170752727756,225,0 +170752727805,217,0 +170752727853,217,0 +170752727903,218,0 +170752727952,218,0 +170752728000,219,0 +170752728048,219,0 +170752728096,221,0 +170752728144,223,0 +170752728192,222,0 +170752728241,223,0 +170752728291,224,0 +170752728339,226,0 +170752728388,226,0 +170752728436,218,0 +170752728484,216,0 +170752728534,227,0 +170752728582,226,0 +170752728629,217,0 +170752728679,217,0 +170752728729,218,0 +170752728776,219,0 +170752728824,220,0 +170752728872,218,0 +170752728922,222,0 +170752728972,222,0 +170752729019,223,0 +170752729069,224,0 +170752729117,222,0 +170752729166,225,0 +170752729214,225,0 +170752729262,223,0 +170752729310,226,0 +170752729358,225,0 +170752729406,225,0 +170752729454,219,0 +170752729503,219,0 +170752729551,220,0 +170752729599,222,0 +170752729648,221,0 +170752729696,222,0 +170752729744,223,0 +170752729792,224,0 +170752729840,226,0 +170752729889,225,0 +170752729937,225,0 +170752729985,226,0 +170752730033,225,0 +170752730081,226,0 +170752730130,225,0 +170752730180,224,0 +170752730228,225,0 +170752730276,223,0 +170752730324,222,0 +170752730372,223,0 +170752730420,223,0 +170752730467,225,0 +170752730517,225,0 +170752730565,224,0 +170752730613,225,0 +170752730661,226,0 +170752730710,225,0 +170752730760,226,0 +170752730808,227,0 +170752730856,226,0 +170752730904,226,0 +170752730953,226,0 +170752731003,225,0 +170752731051,226,0 +170752731100,222,0 +170752731148,221,0 +170752731196,222,0 +170752731246,224,0 +170752731293,223,0 +170752731343,223,0 +170752731391,225,0 +170752731439,226,0 +170752731487,226,0 +170752731536,225,0 +170752731586,225,0 +170752731635,226,0 +170752731683,227,0 +170752731733,227,0 +170752731781,224,0 +170752731829,225,0 +170752731877,225,0 +170752731925,224,0 +170752731973,217,0 +170752732021,219,0 +170752732070,220,0 +170752732120,221,0 +170752732169,220,0 +170752732217,221,0 +170752732265,223,0 +170752732314,222,0 +170752732362,224,0 +170752732410,223,0 +170752732458,224,0 +170752732506,225,0 +170752732554,226,0 +170752732602,222,0 +170752732650,225,0 +170752732698,225,0 +170752732746,224,0 +170752732793,217,0 +170752732841,217,0 +170752732889,218,0 +170752732937,219,0 +170752732985,220,0 +170752733033,220,0 +170752733081,221,0 +170752733129,222,0 +170752733178,222,0 +170752733226,223,0 +170752733274,223,0 +170752733322,224,0 +170752733370,224,0 +170752733418,225,0 +170752733465,226,0 +170752733515,226,0 +170752733563,225,0 +170752733611,218,0 +170752733660,217,0 +170752733708,218,0 +170752733756,219,0 +170752733804,221,0 +170752733852,221,0 +170752733900,221,0 +170752733947,222,0 +170752733995,223,0 +170752734043,224,0 +170752734091,224,0 +170752734139,225,0 +170752734187,227,0 +170752734235,225,0 +170752734284,224,0 +170752734332,225,0 +170752734380,224,0 +170752734428,219,0 +170752734476,219,0 +170752734524,220,0 +170752734572,220,0 +170752734619,221,0 +170752734669,221,0 +170752734719,218,0 +170752734767,223,0 +170752734814,223,0 +170752734864,225,0 +170752734914,225,0 +170752734963,225,0 +170752735013,225,0 +170752735062,224,0 +170752735110,226,0 +170752735158,227,0 +170752735206,225,0 +170752735254,219,0 +170752735302,219,0 +170752735351,221,0 +170752735399,220,0 +170752735447,222,0 +170752735495,223,0 +170752735543,224,0 +170752735593,224,0 +170752735641,224,0 +170752735689,225,0 +170752735737,224,0 +170752735784,226,0 +170752735834,226,0 +170752735882,223,0 +170752735931,226,0 +170752735979,225,0 +170752736029,225,0 +170752736077,218,0 +170752736126,218,0 +170752736176,220,0 +170752736224,222,0 +170752736272,223,0 +170752736320,222,0 +170752736369,223,0 +170752736419,224,0 +170752736467,224,0 +170752736514,224,0 +170752736562,225,0 +170752736612,226,0 +170752736660,225,0 +170752736708,226,0 +170752736757,224,0 +170752736807,225,0 +170752736855,224,0 +170752736903,215,0 +170752736951,216,0 +170752737000,218,0 +170752737048,218,0 +170752737096,219,0 +170752737145,220,0 +170752737193,220,0 +170752737241,222,0 +170752737289,223,0 +170752737337,224,0 +170752737385,224,0 +170752737433,221,0 +170752737482,225,0 +170752737530,225,0 +170752737578,225,0 +170752737628,225,0 +170752737677,222,0 +170752737725,216,0 +170752737773,217,0 +170752737823,218,0 +170752737871,219,0 +170752737920,220,0 +170752737970,221,0 +170752738019,221,0 +170752738067,223,0 +170752738115,223,0 +170752738163,226,0 +170752738210,225,0 +170752738258,226,0 +170752738306,227,0 +170752738354,225,0 +170752738402,225,0 +170752738450,224,0 +170752738498,217,0 +170752738546,217,0 +170752738594,218,0 +170752738642,219,0 +170752738690,219,0 +170752738737,221,0 +170752738785,220,0 +170752738835,222,0 +170752738885,222,0 +170752738932,223,0 +170752738980,226,0 +170752739030,224,0 +170752739080,225,0 +170752739127,225,0 +170752739175,225,0 +170752739223,224,0 +170752739273,225,0 +170752739321,218,0 +170752739370,218,0 +170752739420,219,0 +170752739468,220,0 +170752739516,221,0 +170752739563,223,0 +170752739611,222,0 +170752739659,224,0 +170752739707,223,0 +170752739757,223,0 +170752739806,225,0 +170752739854,225,0 +170752739902,226,0 +170752739950,226,0 +170752739998,226,0 +170752740046,225,0 +170752740094,224,0 +170752740142,220,0 +170752740190,220,0 +170752740238,221,0 +170752740286,221,0 +170752740334,223,0 +170752740382,225,0 +170752740431,225,0 +170752740479,226,0 +170752740529,225,0 +170752740577,225,0 +170752740625,226,0 +170752740673,226,0 +170752740721,227,0 +170752740769,227,0 +170752740818,225,0 +170752740866,225,0 +170752740915,224,0 +170752740965,219,0 +170752741014,219,0 +170752741062,221,0 +170752741110,220,0 +170752741158,222,0 +170752741206,224,0 +170752741256,224,0 +170752741305,224,0 +170752741353,225,0 +170752741403,225,0 +170752741451,225,0 +170752741498,227,0 +170752741546,225,0 +170752741594,226,0 +170752741642,225,0 +170752741690,225,0 +170752741740,217,0 +170752741788,218,0 +170752741837,219,0 +170752741885,220,0 +170752741933,221,0 +170752741981,222,0 +170752742029,223,0 +170752742077,223,0 +170752742127,223,0 +170752742175,224,0 +170752742224,224,0 +170752742272,225,0 +170752742320,225,0 +170752742370,226,0 +170752742418,225,0 +170752742467,224,0 +170752742516,224,0 +170752742564,218,0 +170752742614,218,0 +170752742662,220,0 +170752742710,220,0 +170752742758,221,0 +170752742807,222,0 +170752742857,223,0 +170752742905,223,0 +170752742953,224,0 +170752743002,225,0 +170752743052,226,0 +170752743100,226,0 +170752743148,226,0 +170752743197,226,0 +170752743247,226,0 +170752743295,225,0 +170752743343,224,0 +170752743390,220,0 +170752743438,221,0 +170752743488,222,0 +170752743538,222,0 +170752743587,223,0 +170752743635,224,0 +170752743683,224,0 +170752743731,225,0 +170752743779,225,0 +170752743827,226,0 +170752743875,224,0 +170752743924,225,0 +170752743972,225,0 +170752744020,225,0 +170752744070,225,0 +170752744117,225,0 +170752744167,217,0 +170752744215,218,0 +170752744265,219,0 +170752744313,220,0 +170752744361,221,0 +170752744408,222,0 +170752744458,223,0 +170752744507,224,0 +170752744555,225,0 +170752744603,224,0 +170752744651,225,0 +170752744701,225,0 +170752744749,225,0 +170752744797,225,0 +170752744845,226,0 +170752744894,225,0 +170752744942,225,0 +170752744992,217,0 +170752745041,217,0 +170752745091,219,0 +170752745139,219,0 +170752745187,220,0 +170752745236,220,0 +170752745286,223,0 +170752745335,223,0 +170752745383,223,0 +170752745433,224,0 +170752745481,225,0 +170752745529,224,0 +170752745578,225,0 +170752745626,225,0 +170752745675,226,0 +170752745723,226,0 +170752745771,224,0 +170752745819,216,0 +170752745867,217,0 +170752745917,218,0 +170752745965,219,0 +170752746013,220,0 +170752746062,219,0 +170752746110,222,0 +170752746160,223,0 +170752746209,224,0 +170752746257,223,0 +170752746305,225,0 +170752746355,225,0 +170752746402,227,0 +170752746452,225,0 +170752746500,226,0 +170752746548,224,0 +170752746597,217,0 +170752746645,218,0 +170752746695,219,0 +170752746743,219,0 +170752746792,221,0 +170752746840,221,0 +170752746888,221,0 +170752746936,223,0 +170752746984,224,0 +170752747033,224,0 +170752747081,224,0 +170752747129,225,0 +170752747177,225,0 +170752747226,226,0 +170752747276,225,0 +170752747323,225,0 +170752747371,225,0 +170752747421,217,0 +170752747470,217,0 +170752747520,219,0 +170752747568,219,0 +170752747616,220,0 +170752747664,222,0 +170752747712,221,0 +170752747761,222,0 +170752747809,221,0 +170752747857,223,0 +170752747905,225,0 +170752747955,229,0 +170752748003,228,0 +170752748052,226,0 +170752748100,225,0 +170752748148,226,0 +170752748198,224,0 +170752748246,216,0 +170752748295,217,0 +170752748343,218,0 +170752748391,220,0 +170752748439,221,0 +170752748487,223,0 +170752748535,223,0 +170752748583,223,0 +170752748632,224,0 +170752748680,225,0 +170752748728,225,0 +170752748778,226,0 +170752748825,226,0 +170752748875,227,0 +170752748923,223,0 +170752748971,225,0 +170752749020,224,0 +170752749068,215,0 +170752749118,215,0 +170752749166,216,0 +170752749214,218,0 +170752749263,218,0 +170752749311,220,0 +170752749361,222,0 +170752749410,222,0 +170752749458,224,0 +170752749506,223,0 +170752749554,224,0 +170752749603,224,0 +170752749651,226,0 +170752749701,224,0 +170752749749,225,0 +170752749797,225,0 +170752749846,217,0 +170752749894,215,0 +170752749944,217,0 +170752749993,218,0 +170752750043,219,0 +170752750092,220,0 +170752750140,221,0 +170752750188,221,0 +170752750236,221,0 +170752750284,222,0 +170752750334,224,0 +170752750383,224,0 +170752750431,225,0 +170752750481,224,0 +170752750530,224,0 +170752750578,226,0 +170752750626,226,0 +170752750674,226,0 +170752750722,225,0 +170752750770,226,0 +170752750818,226,0 +170752750866,225,0 +170752750914,226,0 +170752750962,225,0 +170752751010,224,0 +170752751058,219,0 +170752751106,219,0 +170752751155,219,0 +170752751205,221,0 +170752751253,223,0 +170752751301,223,0 +170752751349,223,0 +170752751398,224,0 +170752751446,224,0 +170752751496,225,0 +170752751544,225,0 +170752751592,227,0 +170752751640,225,0 +170752751688,226,0 +170752751736,226,0 +170752751785,225,0 +170752751835,224,0 +170752751884,218,0 +170752751934,218,0 +170752751983,219,0 +170752752031,220,0 +170752752079,220,0 +170752752127,222,0 +170752752175,222,0 +170752752223,223,0 +170752752271,224,0 +170752752319,226,0 +170752752367,226,0 +170752752415,226,0 +170752752462,225,0 +170752752512,227,0 +170752752562,225,0 +170752752611,226,0 +170752752661,219,0 +170752752709,218,0 +170752752757,218,0 +170752752804,219,0 +170752752852,220,0 +170752752900,221,0 +170752752950,221,0 +170752752998,223,0 +170752753046,223,0 +170752753095,224,0 +170752753143,224,0 +170752753191,225,0 +170752753239,226,0 +170752753287,220,0 +170752753337,227,0 +170752753386,226,0 +170752753434,225,0 +170752753484,218,0 +170752753533,217,0 +170752753581,218,0 +170752753629,219,0 +170752753679,219,0 +170752753727,220,0 +170752753776,223,0 +170752753826,223,0 +170752753875,223,0 +170752753925,224,0 +170752753973,227,0 +170752754022,225,0 +170752754070,224,0 +170752754118,225,0 +170752754166,227,0 +170752754214,225,0 +170752754262,223,0 +170752754311,218,0 +170752754361,217,0 +170752754409,219,0 +170752754457,219,0 +170752754505,219,0 +170752754553,220,0 +170752754601,221,0 +170752754650,223,0 +170752754698,222,0 +170752754746,222,0 +170752754796,225,0 +170752754844,224,0 +170752754891,225,0 +170752754941,225,0 +170752754989,226,0 +170752755037,226,0 +170752755085,223,0 +170752755134,216,0 +170752755182,218,0 +170752755232,218,0 +170752755280,221,0 +170752755328,220,0 +170752755377,221,0 +170752755425,222,0 +170752755473,222,0 +170752755521,223,0 +170752755569,224,0 +170752755619,224,0 +170752755668,222,0 +170752755716,225,0 +170752755764,224,0 +170752755814,225,0 +170752755862,225,0 +170752755910,219,0 +170752755959,218,0 +170752756009,219,0 +170752756057,220,0 +170752756106,222,0 +170752756154,223,0 +170752756202,222,0 +170752756252,223,0 +170752756299,224,0 +170752756347,225,0 +170752756397,225,0 +170752756445,226,0 +170752756493,223,0 +170752756542,224,0 +170752756592,226,0 +170752756640,226,0 +170752756689,224,0 +170752756739,218,0 +170752756787,219,0 +170752756835,219,0 +170752756884,220,0 +170752756932,222,0 +170752756980,222,0 +170752757030,222,0 +170752757078,222,0 +170752757127,224,0 +170752757177,224,0 +170752757225,223,0 +170752757274,225,0 +170752757324,225,0 +170752757373,226,0 +170752757421,225,0 +170752757469,225,0 +170752757517,223,0 +170752757567,216,0 +170752757615,217,0 +170752757663,217,0 +170752757712,219,0 +170752757762,220,0 +170752757810,221,0 +170752757859,222,0 +170752757907,222,0 +170752757957,222,0 +170752758006,225,0 +170752758054,225,0 +170752758104,225,0 +170752758152,226,0 +170752758200,226,0 +170752758249,226,0 +170752758297,224,0 +170752758345,217,0 +170752758395,217,0 +170752758444,217,0 +170752758492,219,0 +170752758542,219,0 +170752758590,220,0 +170752758638,222,0 +170752758685,223,0 +170752758733,223,0 +170752758783,223,0 +170752758832,224,0 +170752758880,224,0 +170752758930,226,0 +170752758978,224,0 +170752759027,226,0 +170752759075,225,0 +170752759125,224,0 +170752759174,217,0 +170752759224,217,0 +170752759273,217,0 +170752759321,219,0 +170752759369,221,0 +170752759419,220,0 +170752759467,221,0 +170752759515,221,0 +170752759563,222,0 +170752759611,223,0 +170752759659,223,0 +170752759708,224,0 +170752759756,225,0 +170752759804,225,0 +170752759854,225,0 +170752759903,224,0 +170752759951,224,0 +170752759999,218,0 +170752760047,219,0 +170752760095,220,0 +170752760145,221,0 +170752760193,221,0 +170752760242,221,0 +170752760290,222,0 +170752760338,223,0 +170752760387,224,0 +170752760435,224,0 +170752760485,222,0 +170752760534,225,0 +170752760584,225,0 +170752760632,225,0 +170752760680,225,0 +170752760728,224,0 +170752760777,222,0 +170752760827,219,0 +170752760875,220,0 +170752760923,221,0 +170752760972,222,0 +170752761022,223,0 +170752761072,223,0 +170752761119,224,0 +170752761167,224,0 +170752761217,225,0 +170752761267,226,0 +170752761314,225,0 +170752761364,225,0 +170752761414,225,0 +170752761462,225,0 +170752761511,226,0 +170752761559,224,0 +170752761607,222,0 +170752761656,224,0 +170752761704,225,0 +170752761752,224,0 +170752761802,225,0 +170752761851,225,0 +170752761899,227,0 +170752761947,227,0 +170752761997,226,0 +170752762045,225,0 +170752762093,225,0 +170752762142,225,0 +170752762190,226,0 +170752762238,225,0 +170752762286,225,0 +170752762334,225,0 +170752762382,224,0 +170752762430,221,0 +170752762480,222,0 +170752762528,223,0 +170752762577,223,0 +170752762625,224,0 +170752762675,224,0 +170752762723,225,0 +170752762771,226,0 +170752762819,226,0 +170752762868,225,0 +170752762918,227,0 +170752762965,226,0 +170752763013,226,0 +170752763063,226,0 +170752763111,225,0 +170752763159,225,0 +170752763207,219,0 +170752763256,220,0 +170752763306,221,0 +170752763354,221,0 +170752763402,222,0 +170752763451,222,0 +170752763499,223,0 +170752763547,223,0 +170752763597,225,0 +170752763645,224,0 +170752763694,226,0 +170752763742,223,0 +170752763790,226,0 +170752763838,226,0 +170752763886,226,0 +170752763936,225,0 +170752763984,224,0 +170752764033,219,0 +170752764083,219,0 +170752764131,219,0 +170752764180,221,0 +170752764228,223,0 +170752764276,223,0 +170752764324,223,0 +170752764372,224,0 +170752764420,223,0 +170752764468,224,0 +170752764518,226,0 +170752764565,225,0 +170752764613,226,0 +170752764663,226,0 +170752764713,226,0 +170752764762,225,0 +170752764812,217,0 +170752764860,216,0 +170752764909,217,0 +170752764957,218,0 +170752765005,219,0 +170752765053,220,0 +170752765103,220,0 +170752765152,221,0 +170752765202,222,0 +170752765250,222,0 +170752765299,224,0 +170752765349,224,0 +170752765397,225,0 +170752765444,225,0 +170752765494,226,0 +170752765542,225,0 +170752765590,224,0 +170752765638,216,0 +170752765688,214,0 +170752765737,218,0 +170752765785,219,0 +170752765833,220,0 +170752765882,220,0 +170752765930,221,0 +170752765978,224,0 +170752766026,223,0 +170752766074,224,0 +170752766122,226,0 +170752766170,226,0 +170752766218,225,0 +170752766266,225,0 +170752766315,224,0 +170752766365,226,0 +170752766414,224,0 +170752766462,216,0 +170752766510,217,0 +170752766560,218,0 +170752766608,219,0 +170752766656,221,0 +170752766704,221,0 +170752766752,222,0 +170752766801,224,0 +170752766851,224,0 +170752766899,225,0 +170752766948,224,0 +170752766996,225,0 +170752767044,226,0 +170752767092,225,0 +170752767140,225,0 +170752767190,225,0 +170752767238,218,0 +170752767287,218,0 +170752767335,219,0 +170752767385,219,0 +170752767434,221,0 +170752767482,220,0 +170752767532,222,0 +170752767581,222,0 +170752767629,223,0 +170752767677,225,0 +170752767725,225,0 +170752767773,229,0 +170752767821,226,0 +170752767870,226,0 +170752767918,225,0 +170752767966,226,0 +170752768014,224,0 +170752768062,217,0 +170752768110,218,0 +170752768158,219,0 +170752768206,221,0 +170752768254,221,0 +170752768303,222,0 +170752768351,222,0 +170752768399,223,0 +170752768447,224,0 +170752768495,224,0 +170752768544,224,0 +170752768594,225,0 +170752768641,225,0 +170752768691,225,0 +170752768739,225,0 +170752768787,224,0 +170752768834,218,0 +170752768884,219,0 +170752768932,220,0 +170752768980,222,0 +170752769027,222,0 +170752769075,223,0 +170752769125,223,0 +170752769174,224,0 +170752769222,226,0 +170752769272,226,0 +170752769320,225,0 +170752769368,225,0 +170752769416,225,0 +170752769465,226,0 +170752769513,227,0 +170752769561,226,0 +170752769611,224,0 +170752769659,218,0 +170752769707,218,0 +170752769754,220,0 +170752769802,221,0 +170752769852,221,0 +170752769900,222,0 +170752769948,222,0 +170752769996,223,0 +170752770044,223,0 +170752770093,224,0 +170752770141,225,0 +170752770191,224,0 +170752770240,223,0 +170752770288,226,0 +170752770338,225,0 +170752770386,224,0 +170752770435,218,0 +170752770483,219,0 +170752770531,220,0 +170752770579,220,0 +170752770629,220,0 +170752770678,220,0 +170752770726,219,0 +170752770774,222,0 +170752770822,222,0 +170752770870,223,0 +170752770919,224,0 +170752770967,225,0 +170752771015,224,0 +170752771063,225,0 +170752771113,225,0 +170752771161,226,0 +170752771210,224,0 +170752771258,218,0 +170752771307,219,0 +170752771355,219,0 +170752771403,221,0 +170752771451,221,0 +170752771499,221,0 +170752771547,223,0 +170752771595,221,0 +170752771643,223,0 +170752771691,224,0 +170752771739,225,0 +170752771789,224,0 +170752771836,221,0 +170752771884,225,0 +170752771932,225,0 +170752771980,225,0 +170752772028,218,0 +170752772076,220,0 +170752772124,221,0 +170752772174,221,0 +170752772223,222,0 +170752772273,224,0 +170752772321,223,0 +170752772369,224,0 +170752772418,224,0 +170752772468,224,0 +170752772517,224,0 +170752772567,224,0 +170752772616,225,0 +170752772666,226,0 +170752772714,226,0 +170752772763,224,0 +170752772811,225,0 +170752772861,224,0 +170752772910,222,0 +170752772958,224,0 +170752773006,225,0 +170752773055,225,0 +170752773105,224,0 +170752773153,224,0 +170752773201,224,0 +170752773249,226,0 +170752773297,227,0 +170752773345,227,0 +170752773393,225,0 +170752773441,226,0 +170752773489,224,0 +170752773537,224,0 +170752773585,224,0 +170752773633,221,0 +170752773682,223,0 +170752773730,223,0 +170752773780,224,0 +170752773829,227,0 +170752773877,225,0 +170752773927,225,0 +170752773975,225,0 +170752774024,225,0 +170752774074,225,0 +170752774123,226,0 +170752774171,226,0 +170752774221,226,0 +170752774269,226,0 +170752774316,225,0 +170752774364,224,0 +170752774412,224,0 +170752774462,220,0 +170752774510,220,0 +170752774559,221,0 +170752774607,222,0 +170752774657,223,0 +170752774706,223,0 +170752774754,223,0 +170752774804,224,0 +170752774853,225,0 +170752774901,225,0 +170752774949,226,0 +170752774997,225,0 +170752775046,226,0 +170752775096,226,0 +170752775145,226,0 +170752775193,228,0 +170752775243,217,0 +170752775291,217,0 +170752775340,218,0 +170752775388,219,0 +170752775436,221,0 +170752775484,222,0 +170752775534,223,0 +170752775583,222,0 +170752775631,224,0 +170752775679,224,0 +170752775727,224,0 +170752775775,224,0 +170752775823,226,0 +170752775871,225,0 +170752775919,225,0 +170752775966,225,0 +170752776016,224,0 +170752776065,217,0 +170752776113,218,0 +170752776163,219,0 +170752776211,220,0 +170752776258,221,0 +170752776306,223,0 +170752776354,222,0 +170752776404,223,0 +170752776453,225,0 +170752776501,225,0 +170752776549,225,0 +170752776598,226,0 +170752776646,227,0 +170752776694,226,0 +170752776744,225,0 +170752776792,225,0 +170752776839,217,0 +170752776887,216,0 +170752776935,218,0 +170752776983,218,0 +170752777031,220,0 +170752777081,221,0 +170752777128,221,0 +170752777176,222,0 +170752777226,223,0 +170752777274,223,0 +170752777322,224,0 +170752777370,223,0 +170752777419,225,0 +170752777467,226,0 +170752777517,226,0 +170752777565,225,0 +170752777614,224,0 +170752777664,216,0 +170752777712,216,0 +170752777761,217,0 +170752777811,218,0 +170752777860,220,0 +170752777908,220,0 +170752777958,221,0 +170752778006,222,0 +170752778054,222,0 +170752778103,224,0 +170752778153,224,0 +170752778201,226,0 +170752778250,225,0 +170752778298,224,0 +170752778346,227,0 +170752778394,225,0 +170752778442,223,0 +170752778490,216,0 +170752778540,217,0 +170752778589,218,0 +170752778637,220,0 +170752778685,220,0 +170752778733,220,0 +170752778781,220,0 +170752778831,221,0 +170752778880,222,0 +170752778929,223,0 +170752778977,225,0 +170752779025,224,0 +170752779075,226,0 +170752779124,228,0 +170752779172,227,0 +170752779220,225,0 +170752779268,217,0 +170752779316,218,0 +170752779364,218,0 +170752779414,221,0 +170752779462,221,0 +170752779510,221,0 +170752779558,223,0 +170752779607,222,0 +170752779655,223,0 +170752779703,224,0 +170752779751,224,0 +170752779799,226,0 +170752779848,226,0 +170752779896,226,0 +170752779946,227,0 +170752779994,226,0 +170752780042,217,0 +170752780090,218,0 +170752780138,218,0 +170752780187,219,0 +170752780235,220,0 +170752780283,221,0 +170752780331,222,0 +170752780379,221,0 +170752780429,222,0 +170752780477,223,0 +170752780525,224,0 +170752780572,224,0 +170752780620,225,0 +170752780670,226,0 +170752780719,224,0 +170752780767,225,0 +170752780815,224,0 +170752780863,221,0 +170752780911,222,0 +170752780959,222,0 +170752781009,223,0 +170752781057,222,0 +170752781106,225,0 +170752781156,223,0 +170752781204,225,0 +170752781253,225,0 +170752781303,225,0 +170752781352,226,0 +170752781400,226,0 +170752781448,225,0 +170752781496,225,0 +170752781544,225,0 +170752781592,224,0 +170752781640,224,0 +170752781688,222,0 +170752781737,223,0 +170752781785,224,0 +170752781833,223,0 +170752781883,225,0 +170752781931,225,0 +170752781979,224,0 +170752782027,226,0 +170752782075,226,0 +170752782123,226,0 +170752782172,226,0 +170752782222,226,0 +170752782270,227,0 +170752782318,227,0 +170752782366,225,0 +170752782413,225,0 +170752782461,221,0 +170752782509,220,0 +170752782559,222,0 +170752782607,222,0 +170752782656,223,0 +170752782706,224,0 +170752782755,223,0 +170752782803,224,0 +170752782851,225,0 +170752782899,226,0 +170752782947,226,0 +170752782995,226,0 +170752783043,225,0 +170752783093,225,0 +170752783142,225,0 +170752783190,225,0 +170752783240,221,0 +170752783287,220,0 +170752783335,220,0 +170752783383,221,0 +170752783431,223,0 +170752783481,223,0 +170752783529,224,0 +170752783577,224,0 +170752783626,224,0 +170752783674,225,0 +170752783722,226,0 +170752783770,226,0 +170752783818,227,0 +170752783866,225,0 +170752783916,225,0 +170752783964,224,0 +170752784013,225,0 +170752784061,220,0 +170752784109,219,0 +170752784157,220,0 +170752784205,221,0 +170752784253,221,0 +170752784301,222,0 +170752784351,223,0 +170752784400,224,0 +170752784450,224,0 +170752784498,225,0 +170752784545,225,0 +170752784595,226,0 +170752784645,225,0 +170752784692,227,0 +170752784740,225,0 +170752784788,225,0 +170752784836,223,0 +170752784884,219,0 +170752784934,219,0 +170752784982,221,0 +170752785030,224,0 +170752785079,222,0 +170752785127,223,0 +170752785175,224,0 +170752785223,224,0 +170752785271,225,0 +170752785319,225,0 +170752785367,227,0 +170752785415,226,0 +170752785463,226,0 +170752785512,227,0 +170752785560,225,0 +170752785610,225,0 +170752785658,219,0 +170752785706,220,0 +170752785755,220,0 +170752785803,221,0 +170752785851,221,0 +170752785899,222,0 +170752785948,223,0 +170752785998,224,0 +170752786046,225,0 +170752786094,226,0 +170752786142,226,0 +170752786191,226,0 +170752786239,226,0 +170752786287,227,0 +170752786337,223,0 +170752786385,225,0 +170752786433,224,0 +170752786481,218,0 +170752786529,219,0 +170752786578,220,0 +170752786628,221,0 +170752786676,221,0 +170752786725,223,0 +170752786773,223,0 +170752786821,225,0 +170752786869,226,0 +170752786918,224,0 +170752786968,226,0 +170752787017,225,0 +170752787065,226,0 +170752787113,226,0 +170752787163,225,0 +170752787212,224,0 +170752787260,218,0 +170752787308,217,0 +170752787356,218,0 +170752787406,219,0 +170752787454,221,0 +170752787503,221,0 +170752787553,222,0 +170752787602,222,0 +170752787650,224,0 +170752787700,224,0 +170752787748,225,0 +170752787795,225,0 +170752787843,225,0 +170752787891,225,0 +170752787939,225,0 +170752787989,225,0 +170752788037,225,0 +170752788086,217,0 +170752788134,218,0 +170752788182,219,0 +170752788230,219,0 +170752788278,222,0 +170752788326,221,0 +170752788374,222,0 +170752788423,223,0 +170752788473,223,0 +170752788521,225,0 +170752788569,226,0 +170752788617,225,0 +170752788665,225,0 +170752788714,226,0 +170752788764,227,0 +170752788813,226,0 +170752788863,220,0 +170752788911,220,0 +170752788960,221,0 +170752789010,222,0 +170752789058,222,0 +170752789107,222,0 +170752789157,223,0 +170752789205,224,0 +170752789254,223,0 +170752789302,223,0 +170752789350,224,0 +170752789398,224,0 +170752789448,225,0 +170752789496,225,0 +170752789544,227,0 +170752789593,225,0 +170752789641,223,0 +170752789689,218,0 +170752789737,221,0 +170752789785,220,0 +170752789833,221,0 +170752789881,222,0 +170752789929,223,0 +170752789977,223,0 +170752790025,224,0 +170752790073,224,0 +170752790121,224,0 +170752790169,224,0 +170752790218,225,0 +170752790266,225,0 +170752790314,225,0 +170752790362,225,0 +170752790411,225,0 +170752790461,218,0 +170752790509,217,0 +170752790558,218,0 +170752790606,219,0 +170752790656,220,0 +170752790705,221,0 +170752790753,222,0 +170752790803,223,0 +170752790852,222,0 +170752790900,223,0 +170752790950,225,0 +170752790999,225,0 +170752791047,224,0 +170752791097,227,0 +170752791146,224,0 +170752791196,224,0 +170752791244,223,0 +170752791293,218,0 +170752791341,219,0 +170752791391,221,0 +170752791439,220,0 +170752791487,221,0 +170752791535,222,0 +170752791582,223,0 +170752791632,224,0 +170752791682,219,0 +170752791730,224,0 +170752791777,225,0 +170752791827,226,0 +170752791875,225,0 +170752791923,226,0 +170752791972,226,0 +170752792020,224,0 +170752792068,218,0 +170752792116,219,0 +170752792166,219,0 +170752792214,221,0 +170752792262,221,0 +170752792311,222,0 +170752792359,223,0 +170752792407,223,0 +170752792455,224,0 +170752792505,225,0 +170752792554,225,0 +170752792602,225,0 +170752792650,226,0 +170752792698,227,0 +170752792746,225,0 +170752792794,224,0 +170752792844,224,0 +170752792893,223,0 +170752792941,222,0 +170752792991,224,0 +170752793039,225,0 +170752793088,225,0 +170752793136,224,0 +170752793186,225,0 +170752793233,225,0 +170752793281,225,0 +170752793331,225,0 +170752793379,225,0 +170752793429,225,0 +170752793478,225,0 +170752793526,225,0 +170752793574,225,0 +170752793622,226,0 +170752793672,222,0 +170752793720,223,0 +170752793768,224,0 +170752793817,225,0 +170752793865,224,0 +170752793913,224,0 +170752793961,226,0 +170752794009,225,0 +170752794057,225,0 +170752794105,226,0 +170752794153,226,0 +170752794202,224,0 +170752794250,226,0 +170752794300,225,0 +170752794348,225,0 +170752794397,225,0 +170752794445,224,0 +170752794495,219,0 +170752794543,219,0 +170752794592,220,0 +170752794642,220,0 +170752794690,221,0 +170752794738,221,0 +170752794786,223,0 +170752794834,224,0 +170752794881,223,0 +170752794931,224,0 +170752794980,224,0 +170752795028,225,0 +170752795078,226,0 +170752795126,225,0 +170752795174,226,0 +170752795222,225,0 +170752795270,218,0 +170752795318,217,0 +170752795366,217,0 +170752795414,219,0 +170752795462,220,0 +170752795511,221,0 +170752795561,222,0 +170752795610,222,0 +170752795660,224,0 +170752795708,223,0 +170752795756,224,0 +170752795804,226,0 +170752795851,225,0 +170752795901,224,0 +170752795949,225,0 +170752795997,225,0 +170752796045,224,0 +170752796093,218,0 +170752796141,218,0 +170752796189,218,0 +170752796238,220,0 +170752796288,220,0 +170752796335,221,0 +170752796383,222,0 +170752796431,222,0 +170752796479,223,0 +170752796529,223,0 +170752796577,224,0 +170752796626,225,0 +170752796674,224,0 +170752796724,224,0 +170752796772,224,0 +170752796821,224,0 +170752796869,223,0 +170752796917,217,0 +170752796966,217,0 +170752797014,218,0 +170752797062,219,0 +170752797110,220,0 +170752797158,220,0 +170752797206,222,0 +170752797254,223,0 +170752797302,223,0 +170752797350,224,0 +170752797398,224,0 +170752797446,224,0 +170752797495,225,0 +170752797543,225,0 +170752797591,225,0 +170752797639,224,0 +170752797687,219,0 +170752797735,218,0 +170752797783,219,0 +170752797832,220,0 +170752797882,221,0 +170752797930,220,0 +170752797978,224,0 +170752798027,223,0 +170752798077,224,0 +170752798124,224,0 +170752798174,224,0 +170752798222,225,0 +170752798270,224,0 +170752798318,225,0 +170752798366,224,0 +170752798415,223,0 +170752798463,223,0 +170752798511,218,0 +170752798559,219,0 +170752798609,219,0 +170752798657,219,0 +170752798706,221,0 +170752798754,222,0 +170752798804,224,0 +170752798853,224,0 +170752798901,224,0 +170752798951,224,0 +170752799000,226,0 +170752799048,224,0 +170752799096,225,0 +170752799144,224,0 +170752799193,225,0 +170752799241,224,0 +170752799289,217,0 +170752799339,216,0 +170752799388,217,0 +170752799436,218,0 +170752799484,218,0 +170752799532,220,0 +170752799580,220,0 +170752799628,221,0 +170752799676,222,0 +170752799724,223,0 +170752799772,224,0 +170752799820,223,0 +170752799868,225,0 +170752799916,224,0 +170752799964,226,0 +170752800012,224,0 +170752800061,231,0 +170752800109,216,0 +170752800159,215,0 +170752800207,216,0 +170752800255,218,0 +170752800304,219,0 +170752800354,219,0 +170752800401,220,0 +170752800451,222,0 +170752800499,222,0 +170752800548,223,0 +170752800596,223,0 +170752800646,224,0 +170752800693,223,0 +170752800741,223,0 +170752800789,225,0 +170752800837,224,0 +170752800885,217,0 +170752800933,216,0 +170752800981,217,0 +170752801029,218,0 +170752801078,219,0 +170752801126,220,0 +170752801174,220,0 +170752801222,221,0 +170752801270,222,0 +170752801318,222,0 +170752801367,224,0 +170752801415,225,0 +170752801463,225,0 +170752801511,226,0 +170752801559,226,0 +170752801608,226,0 +170752801657,224,0 +170752801705,218,0 +170752801753,217,0 +170752801801,218,0 +170752801851,219,0 +170752801900,220,0 +170752801948,221,0 +170752801996,218,0 +170752802044,222,0 +170752802092,223,0 +170752802140,223,0 +170752802188,223,0 +170752802236,225,0 +170752802285,224,0 +170752802334,225,0 +170752802382,225,0 +170752802430,224,0 +170752802478,223,0 +170752802526,218,0 +170752802574,218,0 +170752802622,219,0 +170752802671,220,0 +170752802719,221,0 +170752802767,222,0 +170752802815,223,0 +170752802863,224,0 +170752802911,224,0 +170752802959,224,0 +170752803008,224,0 +170752803056,225,0 +170752803104,225,0 +170752803153,224,0 +170752803201,224,0 +170752803249,224,0 +170752803297,217,0 +170752803346,216,0 +170752803394,217,0 +170752803442,218,0 +170752803490,219,0 +170752803538,220,0 +170752803586,220,0 +170752803634,220,0 +170752803683,221,0 +170752803731,222,0 +170752803779,223,0 +170752803828,225,0 +170752803876,225,0 +170752803924,224,0 +170752803972,225,0 +170752804020,224,0 +170752804068,224,0 +170752804116,216,0 +170752804164,216,0 +170752804211,218,0 +170752804259,218,0 +170752804307,219,0 +170752804355,220,0 +170752804405,221,0 +170752804453,221,0 +170752804500,222,0 +170752804548,225,0 +170752804596,223,0 +170752804644,225,0 +170752804694,226,0 +170752804742,224,0 +170752804789,225,0 +170752804837,225,0 +170752804885,224,0 +170752804933,218,0 +170752804982,219,0 +170752805030,219,0 +170752805078,220,0 +170752805128,220,0 +170752805176,222,0 +170752805223,223,0 +170752805271,224,0 +170752805321,227,0 +170752805369,226,0 +170752805418,226,0 +170752805466,225,0 +170752805515,225,0 +170752805565,226,0 +170752805613,226,0 +170752805661,225,0 +170752805709,220,0 +170752805756,222,0 +170752805806,224,0 +170752805854,223,0 +170752805903,225,0 +170752805953,225,0 +170752806001,225,0 +170752806049,225,0 +170752806099,226,0 +170752806148,224,0 +170752806196,225,0 +170752806244,224,0 +170752806292,226,0 +170752806340,225,0 +170752806388,225,0 +170752806437,226,0 +170752806487,226,0 +170752806535,222,0 +170752806584,224,0 +170752806632,224,0 +170752806682,225,0 +170752806731,225,0 +170752806779,225,0 +170752806827,226,0 +170752806875,228,0 +170752806923,226,0 +170752806971,226,0 +170752807021,225,0 +170752807070,225,0 +170752807118,230,0 +170752807166,226,0 +170752807214,225,0 +170752807263,224,0 +170752807311,219,0 +170752807359,218,0 +170752807407,219,0 +170752807455,220,0 +170752807503,221,0 +170752807552,221,0 +170752807600,223,0 +170752807648,224,0 +170752807696,224,0 +170752807744,224,0 +170752807792,226,0 +170752807839,226,0 +170752807887,227,0 +170752807935,226,0 +170752807983,226,0 +170752808031,226,0 +170752808079,224,0 +170752808128,217,0 +170752808176,217,0 +170752808224,218,0 +170752808272,220,0 +170752808321,219,0 +170752808371,220,0 +170752808419,221,0 +170752808467,222,0 +170752808515,223,0 +170752808564,225,0 +170752808613,224,0 +170752808661,225,0 +170752808711,227,0 +170752808759,226,0 +170752808806,226,0 +170752808854,223,0 +170752808902,225,0 +170752808950,217,0 +170752808998,218,0 +170752809046,219,0 +170752809094,220,0 +170752809143,220,0 +170752809191,221,0 +170752809239,222,0 +170752809288,222,0 +170752809336,222,0 +170752809384,224,0 +170752809432,224,0 +170752809480,225,0 +170752809528,224,0 +170752809576,223,0 +170752809624,226,0 +170752809672,225,0 +170752809720,219,0 +170752809767,217,0 +170752809815,219,0 +170752809863,220,0 +170752809911,220,0 +170752809959,221,0 +170752810008,223,0 +170752810058,224,0 +170752810106,224,0 +170752810154,226,0 +170752810203,224,0 +170752810251,225,0 +170752810301,226,0 +170752810349,226,0 +170752810397,224,0 +170752810445,225,0 +170752810494,225,0 +170752810542,222,0 +170752810592,220,0 +170752810639,221,0 +170752810687,221,0 +170752810736,223,0 +170752810784,224,0 +170752810832,224,0 +170752810880,225,0 +170752810928,227,0 +170752810977,226,0 +170752811027,227,0 +170752811076,226,0 +170752811124,226,0 +170752811174,226,0 +170752811222,225,0 +170752811269,225,0 +170752811317,224,0 +170752811365,223,0 +170752811413,224,0 +170752811461,223,0 +170752811509,225,0 +170752811557,225,0 +170752811605,224,0 +170752811653,225,0 +170752811701,227,0 +170752811749,226,0 +170752811798,227,0 +170752811846,224,0 +170752811895,226,0 +170752811945,226,0 +170752811993,226,0 +170752812041,224,0 +170752812088,224,0 +170752812136,222,0 +170752812186,222,0 +170752812234,222,0 +170752812282,223,0 +170752812329,223,0 +170752812377,223,0 +170752812425,224,0 +170752812473,225,0 +170752812521,226,0 +170752812569,226,0 +170752812617,225,0 +170752812665,226,0 +170752812713,226,0 +170752812762,227,0 +170752812810,226,0 +170752812859,227,0 +170752812907,225,0 +170752812955,223,0 +170752813003,222,0 +170752813053,221,0 +170752813102,225,0 +170752813152,225,0 +170752813201,223,0 +170752813251,226,0 +170752813300,225,0 +170752813348,228,0 +170752813396,226,0 +170752813444,227,0 +170752813491,226,0 +170752813539,226,0 +170752813587,224,0 +170752813635,226,0 +170752813683,225,0 +170752813732,222,0 +170752813780,220,0 +170752813828,221,0 +170752813876,223,0 +170752813924,222,0 +170752813972,223,0 +170752814020,223,0 +170752814069,224,0 +170752814117,225,0 +170752814167,227,0 +170752814216,226,0 +170752814264,226,0 +170752814314,228,0 +170752814362,226,0 +170752814409,228,0 +170752814458,226,0 +170752814507,225,0 +170752814555,217,0 +170752814603,217,0 +170752814651,218,0 +170752814701,219,0 +170752814749,221,0 +170752814798,221,0 +170752814846,222,0 +170752814896,222,0 +170752814943,224,0 +170752814993,223,0 +170752815041,226,0 +170752815090,226,0 +170752815138,224,0 +170752815188,225,0 +170752815236,224,0 +170752815285,225,0 +170752815333,223,0 +170752815381,215,0 +170752815431,217,0 +170752815480,218,0 +170752815528,218,0 +170752815576,221,0 +170752815624,220,0 +170752815672,220,0 +170752815720,222,0 +170752815768,221,0 +170752815815,223,0 +170752815863,220,0 +170752815911,222,0 +170752815959,223,0 +170752816007,224,0 +170752816055,225,0 +170752816103,224,0 +170752816151,216,0 +170752816200,215,0 +170752816248,214,0 +170752816296,215,0 +170752816344,216,0 +170752816393,216,0 +170752816441,217,0 +170752816489,218,0 +170752816537,219,0 +170752816585,220,0 +170752816633,219,0 +170752816681,221,0 +170752816728,221,0 +170752816776,222,0 +170752816824,222,0 +170752816874,222,0 +170752816922,225,0 +170752816970,216,0 +170752817018,214,0 +170752817065,217,0 +170752817113,218,0 +170752817161,219,0 +170752817209,220,0 +170752817257,220,0 +170752817305,221,0 +170752817353,222,0 +170752817400,222,0 +170752817448,223,0 +170752817496,224,0 +170752817544,224,0 +170752817592,225,0 +170752817640,224,0 +170752817688,225,0 +170752817736,224,0 +170752817784,220,0 +170752817832,221,0 +170752817881,221,0 +170752817931,222,0 +170752817978,222,0 +170752818026,224,0 +170752818076,225,0 +170752818124,225,0 +170752818172,226,0 +170752818220,225,0 +170752818267,225,0 +170752818315,226,0 +170752818363,226,0 +170752818411,225,0 +170752818461,225,0 +170752818509,224,0 +170752818557,218,0 +170752818605,218,0 +170752818653,218,0 +170752818700,221,0 +170752818750,221,0 +170752818799,223,0 +170752818847,222,0 +170752818897,223,0 +170752818946,224,0 +170752818996,225,0 +170752819046,224,0 +170752819094,225,0 +170752819142,226,0 +170752819189,227,0 +170752819239,227,0 +170752819287,225,0 +170752819335,225,0 +170752819384,217,0 +170752819432,219,0 +170752819480,220,0 +170752819528,221,0 +170752819576,220,0 +170752819626,221,0 +170752819674,223,0 +170752819722,223,0 +170752819770,222,0 +170752819819,224,0 +170752819869,224,0 +170752819917,224,0 +170752819965,225,0 +170752820013,226,0 +170752820062,226,0 +170752820110,225,0 +170752820158,218,0 +170752820206,218,0 +170752820254,219,0 +170752820302,220,0 +170752820351,221,0 +170752820401,222,0 +170752820450,223,0 +170752820500,222,0 +170752820549,224,0 +170752820597,225,0 +170752820645,225,0 +170752820693,226,0 +170752820741,225,0 +170752820789,225,0 +170752820837,225,0 +170752820885,225,0 +170752820933,224,0 +170752820981,218,0 +170752821031,218,0 +170752821080,220,0 +170752821130,221,0 +170752821178,221,0 +170752821227,224,0 +170752821277,223,0 +170752821324,223,0 +170752821374,225,0 +170752821423,225,0 +170752821471,225,0 +170752821519,226,0 +170752821569,226,0 +170752821617,226,0 +170752821665,225,0 +170752821714,225,0 +170752821764,221,0 +170752821813,221,0 +170752821861,221,0 +170752821911,222,0 +170752821959,223,0 +170752822007,223,0 +170752822055,224,0 +170752822103,224,0 +170752822152,225,0 +170752822202,226,0 +170752822250,226,0 +170752822298,226,0 +170752822346,226,0 +170752822394,226,0 +170752822442,226,0 +170752822490,225,0 +170752822539,224,0 +170752822587,222,0 +170752822635,223,0 +170752822683,223,0 +170752822732,224,0 +170752822782,225,0 +170752822831,225,0 +170752822879,226,0 +170752822927,226,0 +170752822977,225,0 +170752823026,227,0 +170752823074,228,0 +170752823122,226,0 +170752823172,225,0 +170752823220,226,0 +170752823268,225,0 +170752823317,225,0 +170752823367,224,0 +170752823417,225,0 +170752823464,226,0 +170752823512,224,0 +170752823562,226,0 +170752823611,225,0 +170752823659,225,0 +170752823707,224,0 +170752823757,224,0 +170752823806,224,0 +170752823856,224,0 +170752823904,227,0 +170752823952,227,0 +170752824000,226,0 +170752824048,225,0 +170752824097,223,0 +170752824147,224,0 +170752824196,221,0 +170752824244,221,0 +170752824292,222,0 +170752824342,222,0 +170752824391,223,0 +170752824439,223,0 +170752824487,223,0 +170752824535,224,0 +170752824585,224,0 +170752824634,225,0 +170752824682,224,0 +170752824731,224,0 +170752824779,224,0 +170752824827,223,0 +170752824875,222,0 +170752824923,223,0 +170752824971,218,0 +170752825019,218,0 +170752825069,219,0 +170752825117,220,0 +170752825165,220,0 +170752825213,220,0 +170752825261,222,0 +170752825310,222,0 +170752825358,223,0 +170752825406,223,0 +170752825454,223,0 +170752825502,224,0 +170752825551,224,0 +170752825601,224,0 +170752825649,223,0 +170752825697,224,0 +170752825746,223,0 +170752825794,216,0 +170752825842,217,0 +170752825892,218,0 +170752825941,219,0 +170752825989,220,0 +170752826037,221,0 +170752826087,221,0 +170752826136,223,0 +170752826184,222,0 +170752826232,223,0 +170752826280,224,0 +170752826328,225,0 +170752826376,224,0 +170752826426,224,0 +170752826474,224,0 +170752826523,223,0 +170752826573,216,0 +170752826621,216,0 +170752826669,217,0 +170752826718,217,0 +170752826768,218,0 +170752826817,219,0 +170752826865,219,0 +170752826915,220,0 +170752826964,221,0 +170752827012,222,0 +170752827060,223,0 +170752827110,223,0 +170752827159,223,0 +170752827209,224,0 +170752827257,225,0 +170752827306,224,0 +170752827354,223,0 +170752827402,215,0 +170752827451,216,0 +170752827499,216,0 +170752827547,217,0 +170752827595,217,0 +170752827645,218,0 +170752827693,219,0 +170752827742,220,0 +170752827792,220,0 +170752827840,222,0 +170752827889,223,0 +170752827937,224,0 +170752827985,224,0 +170752828033,224,0 +170752828081,224,0 +170752828129,224,0 +170752828179,216,0 +170752828228,216,0 +170752828278,217,0 +170752828326,217,0 +170752828375,218,0 +170752828425,219,0 +170752828473,220,0 +170752828521,219,0 +170752828570,218,0 +170752828618,223,0 +170752828666,222,0 +170752828714,223,0 +170752828762,223,0 +170752828810,223,0 +170752828859,224,0 +170752828907,224,0 +170752828955,224,0 +170752829003,217,0 +170752829051,217,0 +170752829099,219,0 +170752829146,219,0 +170752829194,220,0 +170752829244,221,0 +170752829292,222,0 +170752829339,221,0 +170752829387,223,0 +170752829435,223,0 +170752829483,223,0 +170752829531,224,0 +170752829580,224,0 +170752829628,224,0 +170752829676,224,0 +170752829726,223,0 +170752829774,217,0 +170752829823,219,0 +170752829873,219,0 +170752829922,220,0 +170752829970,220,0 +170752830020,220,0 +170752830069,221,0 +170752830117,223,0 +170752830165,222,0 +170752830213,223,0 +170752830263,223,0 +170752830311,224,0 +170752830359,224,0 +170752830408,225,0 +170752830458,224,0 +170752830506,229,0 +170752830554,223,0 +170752830602,220,0 +170752830651,221,0 +170752830699,221,0 +170752830747,222,0 +170752830795,222,0 +170752830843,223,0 +170752830891,224,0 +170752830939,224,0 +170752830987,225,0 +170752831035,225,0 +170752831083,224,0 +170752831131,224,0 +170752831179,224,0 +170752831228,222,0 +170752831278,222,0 +170752831327,224,0 +170752831377,222,0 +170752831425,219,0 +170752831474,220,0 +170752831522,220,0 +170752831570,222,0 +170752831618,222,0 +170752831668,222,0 +170752831715,223,0 +170752831763,223,0 +170752831813,225,0 +170752831861,225,0 +170752831909,224,0 +170752831958,224,0 +170752832006,226,0 +170752832054,225,0 +170752832102,224,0 +170752832150,224,0 +170752832197,219,0 +170752832245,219,0 +170752832293,219,0 +170752832341,221,0 +170752832389,220,0 +170752832437,221,0 +170752832485,222,0 +170752832534,222,0 +170752832582,224,0 +170752832630,225,0 +170752832678,225,0 +170752832726,224,0 +170752832774,224,0 +170752832822,224,0 +170752832871,225,0 +170752832920,224,0 +170752832968,224,0 +170752833016,219,0 +170752833066,219,0 +170752833115,220,0 +170752833163,221,0 +170752833211,222,0 +170752833259,222,0 +170752833306,222,0 +170752833354,223,0 +170752833402,224,0 +170752833450,223,0 +170752833500,224,0 +170752833547,225,0 +170752833597,226,0 +170752833645,224,0 +170752833693,225,0 +170752833742,224,0 +170752833790,222,0 +170752833838,216,0 +170752833887,217,0 +170752833935,218,0 +170752833985,219,0 +170752834034,217,0 +170752834084,219,0 +170752834132,220,0 +170752834181,219,0 +170752834231,221,0 +170752834279,221,0 +170752834328,221,0 +170752834376,223,0 +170752834426,223,0 +170752834474,222,0 +170752834523,222,0 +170752834573,223,0 +170752834621,217,0 +170752834670,217,0 +170752834720,218,0 +170752834768,218,0 +170752834816,219,0 +170752834865,220,0 +170752834915,221,0 +170752834963,222,0 +170752835012,223,0 +170752835060,222,0 +170752835110,223,0 +170752835159,223,0 +170752835207,225,0 +170752835255,224,0 +170752835303,223,0 +170752835351,223,0 +170752835401,220,0 +170752835449,218,0 +170752835497,219,0 +170752835545,219,0 +170752835593,220,0 +170752835641,221,0 +170752835690,221,0 +170752835738,221,0 +170752835786,222,0 +170752835834,223,0 +170752835882,222,0 +170752835930,224,0 +170752835979,224,0 +170752836027,224,0 +170752836075,223,0 +170752836125,223,0 +170752836173,223,0 +170752836222,219,0 +170752836270,219,0 +170752836318,220,0 +170752836368,221,0 +170752836417,222,0 +170752836467,222,0 +170752836515,222,0 +170752836564,223,0 +170752836614,223,0 +170752836663,224,0 +170752836711,223,0 +170752836761,223,0 +170752836809,223,0 +170752836857,224,0 +170752836905,224,0 +170752836953,223,0 +170752837001,222,0 +170752837050,218,0 +170752837098,219,0 +170752837146,219,0 +170752837194,220,0 +170752837242,221,0 +170752837290,221,0 +170752837339,223,0 +170752837387,223,0 +170752837435,223,0 +170752837483,223,0 +170752837533,224,0 +170752837581,223,0 +170752837629,223,0 +170752837677,224,0 +170752837725,225,0 +170752837773,224,0 +170752837821,218,0 +170752837869,218,0 +170752837918,218,0 +170752837968,218,0 +170752838017,219,0 +170752838065,220,0 +170752838113,221,0 +170752838161,221,0 +170752838209,222,0 +170752838257,223,0 +170752838306,223,0 +170752838356,224,0 +170752838405,223,0 +170752838453,224,0 +170752838501,224,0 +170752838549,223,0 +170752838599,223,0 +170752838647,218,0 +170752838695,218,0 +170752838743,219,0 +170752838792,220,0 +170752838842,220,0 +170752838892,221,0 +170752838939,221,0 +170752838987,222,0 +170752839035,223,0 +170752839085,224,0 +170752839133,223,0 +170752839182,224,0 +170752839230,225,0 +170752839280,224,0 +170752839329,224,0 +170752839379,223,0 +170752839428,218,0 +170752839476,218,0 +170752839524,219,0 +170752839572,220,0 +170752839620,221,0 +170752839668,221,0 +170752839718,222,0 +170752839767,224,0 +170752839815,225,0 +170752839863,223,0 +170752839913,224,0 +170752839961,224,0 +170752840009,224,0 +170752840056,224,0 +170752840106,224,0 +170752840156,224,0 +170752840203,223,0 +170752840253,219,0 +170752840301,219,0 +170752840350,219,0 +170752840400,220,0 +170752840448,220,0 +170752840496,221,0 +170752840545,221,0 +170752840593,221,0 +170752840641,222,0 +170752840691,223,0 +170752840740,224,0 +170752840788,224,0 +170752840836,225,0 +170752840884,224,0 +170752840932,223,0 +170752840980,223,0 +170752841028,218,0 +170752841076,218,0 +170752841124,219,0 +170752841174,220,0 +170752841222,220,0 +170752841270,221,0 +170752841319,221,0 +170752841367,221,0 +170752841415,222,0 +170752841463,223,0 +170752841511,222,0 +170752841559,224,0 +170752841608,224,0 +170752841656,224,0 +170752841704,225,0 +170752841752,224,0 +170752841802,222,0 +170752841850,220,0 +170752841898,220,0 +170752841946,220,0 +170752841994,221,0 +170752842042,221,0 +170752842090,222,0 +170752842138,224,0 +170752842187,223,0 +170752842235,223,0 +170752842285,224,0 +170752842334,224,0 +170752842382,224,0 +170752842432,224,0 +170752842480,224,0 +170752842529,224,0 +170752842577,223,0 +170752842625,221,0 +170752842674,221,0 +170752842724,222,0 +170752842772,222,0 +170752842821,223,0 +170752842869,223,0 +170752842917,223,0 +170752842965,224,0 +170752843015,225,0 +170752843063,224,0 +170752843111,225,0 +170752843159,224,0 +170752843207,226,0 +170752843256,224,0 +170752843304,224,0 +170752843354,224,0 +170752843402,224,0 +170752843451,218,0 +170752843499,218,0 +170752843549,219,0 +170752843597,220,0 +170752843645,221,0 +170752843693,222,0 +170752843742,223,0 +170752843790,223,0 +170752843838,223,0 +170752843887,224,0 +170752843935,224,0 +170752843985,224,0 +170752844033,223,0 +170752844081,224,0 +170752844130,224,0 +170752844178,224,0 +170752844226,221,0 +170752844274,216,0 +170752844324,217,0 +170752844372,218,0 +170752844420,219,0 +170752844469,220,0 +170752844517,220,0 +170752844565,221,0 +170752844615,221,0 +170752844663,224,0 +170752844711,224,0 +170752844760,223,0 +170752844810,226,0 +170752844858,225,0 +170752844907,225,0 +170752844955,224,0 +170752845005,223,0 +170752845053,217,0 +170752845101,217,0 +170752845150,218,0 +170752845198,218,0 +170752845246,219,0 +170752845296,220,0 +170752845345,221,0 +170752845393,222,0 +170752845441,223,0 +170752845489,224,0 +170752845537,224,0 +170752845586,224,0 +170752845634,226,0 +170752845684,225,0 +170752845733,225,0 +170752845783,224,0 +170752845831,218,0 +170752845879,216,0 +170752845928,217,0 +170752845976,219,0 +170752846024,219,0 +170752846072,220,0 +170752846120,218,0 +170752846170,222,0 +170752846218,222,0 +170752846265,221,0 +170752846315,223,0 +170752846363,222,0 +170752846411,224,0 +170752846460,224,0 +170752846510,225,0 +170752846559,225,0 +170752846607,224,0 +170752846655,218,0 +170752846705,218,0 +170752846754,218,0 +170752846802,219,0 +170752846852,220,0 +170752846900,221,0 +170752846948,222,0 +170752846996,222,0 +170752847045,223,0 +170752847095,225,0 +170752847144,225,0 +170752847192,226,0 +170752847242,227,0 +170752847290,226,0 +170752847339,225,0 +170752847387,225,0 +170752847437,220,0 +170752847486,218,0 +170752847534,220,0 +170752847582,220,0 +170752847630,222,0 +170752847678,221,0 +170752847726,222,0 +170752847774,223,0 +170752847823,224,0 +170752847873,224,0 +170752847920,224,0 +170752847968,225,0 +170752848016,225,0 +170752848064,225,0 +170752848112,225,0 +170752848160,225,0 +170752848208,224,0 +170752848256,219,0 +170752848304,218,0 +170752848351,220,0 +170752848399,220,0 +170752848447,221,0 +170752848495,221,0 +170752848543,222,0 +170752848593,224,0 +170752848641,225,0 +170752848689,225,0 +170752848737,226,0 +170752848785,224,0 +170752848834,226,0 +170752848882,225,0 +170752848930,225,0 +170752848978,225,0 +170752849028,224,0 +170752849077,217,0 +170752849125,217,0 +170752849175,218,0 +170752849223,219,0 +170752849271,219,0 +170752849319,221,0 +170752849366,221,0 +170752849416,221,0 +170752849466,223,0 +170752849514,223,0 +170752849562,225,0 +170752849611,223,0 +170752849659,224,0 +170752849707,224,0 +170752849757,226,0 +170752849804,225,0 +170752849854,220,0 +170752849902,217,0 +170752849950,218,0 +170752849999,219,0 +170752850047,220,0 +170752850095,222,0 +170752850143,221,0 +170752850193,222,0 +170752850242,224,0 +170752850290,224,0 +170752850340,224,0 +170752850388,227,0 +170752850436,225,0 +170752850484,224,0 +170752850532,225,0 +170752850581,226,0 +170752850629,225,0 +170752850677,220,0 +170752850725,220,0 +170752850773,221,0 +170752850822,221,0 +170752850872,222,0 +170752850920,223,0 +170752850970,223,0 +170752851019,224,0 +170752851067,225,0 +170752851117,226,0 +170752851165,225,0 +170752851213,225,0 +170752851262,225,0 +170752851310,226,0 +170752851360,225,0 +170752851409,225,0 +170752851457,220,0 +170752851507,220,0 +170752851556,221,0 +170752851604,222,0 +170752851652,222,0 +170752851700,222,0 +170752851748,224,0 +170752851797,225,0 +170752851845,224,0 +170752851893,224,0 +170752851943,225,0 +170752851992,225,0 +170752852040,225,0 +170752852088,224,0 +170752852136,225,0 +170752852186,225,0 +170752852234,224,0 +170752852283,220,0 +170752852331,219,0 +170752852379,220,0 +170752852427,222,0 +170752852475,221,0 +170752852525,222,0 +170752852574,225,0 +170752852624,224,0 +170752852672,223,0 +170752852720,223,0 +170752852768,222,0 +170752852815,225,0 +170752852863,225,0 +170752852911,225,0 +170752852959,224,0 +170752853007,225,0 +170752853055,223,0 +170752853103,217,0 +170752853151,218,0 +170752853200,218,0 +170752853250,220,0 +170752853297,220,0 +170752853345,221,0 +170752853393,222,0 +170752853441,224,0 +170752853489,224,0 +170752853537,224,0 +170752853585,224,0 +170752853633,224,0 +170752853681,225,0 +170752853730,225,0 +170752853778,225,0 +170752853826,224,0 +170752853874,217,0 +170752853922,216,0 +170752853969,217,0 +170752854017,218,0 +170752854065,219,0 +170752854113,219,0 +170752854161,221,0 +170752854209,221,0 +170752854257,222,0 +170752854305,224,0 +170752854352,224,0 +170752854400,224,0 +170752854448,225,0 +170752854496,224,0 +170752854544,226,0 +170752854592,224,0 +170752854640,223,0 +170752854688,218,0 +170752854735,219,0 +170752854785,220,0 +170752854833,221,0 +170752854881,222,0 +170752854929,223,0 +170752854978,222,0 +170752855028,224,0 +170752855075,223,0 +170752855125,221,0 +170752855173,218,0 +170752855221,224,0 +170752855270,227,0 +170752855318,224,0 +170752855368,225,0 +170752855417,225,0 +170752855467,224,0 +170752855515,220,0 +170752855563,221,0 +170752855611,222,0 +170752855659,222,0 +170752855707,223,0 +170752855756,223,0 +170752855804,224,0 +170752855852,225,0 +170752855902,224,0 +170752855949,224,0 +170752855997,225,0 +170752856047,225,0 +170752856096,226,0 +170752856144,225,0 +170752856192,224,0 +170752856240,224,0 +170752856290,218,0 +170752856338,219,0 +170752856387,220,0 +170752856435,220,0 +170752856484,221,0 +170752856532,224,0 +170752856580,224,0 +170752856630,223,0 +170752856678,224,0 +170752856727,225,0 +170752856777,225,0 +170752856826,225,0 +170752856874,225,0 +170752856924,224,0 +170752856972,225,0 +170752857020,224,0 +170752857069,223,0 +170752857118,217,0 +170752857168,217,0 +170752857217,218,0 +170752857265,218,0 +170752857313,221,0 +170752857361,221,0 +170752857409,223,0 +170752857459,223,0 +170752857508,223,0 +170752857558,225,0 +170752857607,225,0 +170752857655,225,0 +170752857705,224,0 +170752857753,225,0 +170752857801,225,0 +170752857849,224,0 +170752857898,217,0 +170752857948,217,0 +170752857996,218,0 +170752858044,219,0 +170752858092,219,0 +170752858140,221,0 +170752858189,220,0 +170752858237,221,0 +170752858285,223,0 +170752858334,223,0 +170752858382,224,0 +170752858430,223,0 +170752858478,225,0 +170752858526,224,0 +170752858574,225,0 +170752858624,224,0 +170752858673,223,0 +170752858723,217,0 +170752858772,217,0 +170752858820,219,0 +170752858868,218,0 +170752858918,220,0 +170752858967,221,0 +170752859017,220,0 +170752859065,221,0 +170752859113,223,0 +170752859160,223,0 +170752859210,224,0 +170752859258,224,0 +170752859306,224,0 +170752859354,224,0 +170752859402,225,0 +170752859451,224,0 +170752859499,219,0 +170752859547,219,0 +170752859595,222,0 +170752859643,222,0 +170752859692,223,0 +170752859742,223,0 +170752859790,224,0 +170752859839,223,0 +170752859887,226,0 +170752859937,225,0 +170752859986,225,0 +170752860034,225,0 +170752860082,225,0 +170752860132,224,0 +170752860180,224,0 +170752860228,225,0 +170752860276,224,0 +170752860324,221,0 +170752860371,221,0 +170752860421,223,0 +170752860469,223,0 +170752860518,224,0 +170752860566,223,0 +170752860614,223,0 +170752860662,224,0 +170752860710,226,0 +170752860757,226,0 +170752860805,225,0 +170752860855,227,0 +170752860904,223,0 +170752860952,223,0 +170752861000,225,0 +170752861048,224,0 +170752861097,219,0 +170752861145,220,0 +170752861193,219,0 +170752861241,220,0 +170752861289,221,0 +170752861337,222,0 +170752861386,223,0 +170752861434,224,0 +170752861482,224,0 +170752861532,224,0 +170752861581,225,0 +170752861629,225,0 +170752861678,225,0 +170752861726,225,0 +170752861776,224,0 +170752861824,224,0 +170752861872,224,0 +170752861920,218,0 +170752861968,218,0 +170752862017,219,0 +170752862067,220,0 +170752862115,221,0 +170752862162,223,0 +170752862212,222,0 +170752862260,223,0 +170752862308,225,0 +170752862356,224,0 +170752862403,223,0 +170752862453,226,0 +170752862502,225,0 +170752862550,225,0 +170752862598,226,0 +170752862646,224,0 +170752862694,222,0 +170752862742,217,0 +170752862790,219,0 +170752862839,219,0 +170752862887,219,0 +170752862935,221,0 +170752862983,221,0 +170752863031,222,0 +170752863080,222,0 +170752863128,224,0 +170752863176,224,0 +170752863224,224,0 +170752863272,225,0 +170752863320,225,0 +170752863368,225,0 +170752863417,225,0 +170752863467,224,0 +170752863516,218,0 +170752863564,217,0 +170752863614,219,0 +170752863662,220,0 +170752863711,221,0 +170752863761,221,0 +170752863809,222,0 +170752863857,223,0 +170752863906,223,0 +170752863956,225,0 +170752864004,224,0 +170752864052,225,0 +170752864101,225,0 +170752864151,225,0 +170752864199,224,0 +170752864248,224,0 +170752864296,223,0 +170752864344,215,0 +170752864392,216,0 +170752864440,218,0 +170752864488,219,0 +170752864536,221,0 +170752864584,220,0 +170752864632,221,0 +170752864680,222,0 +170752864728,223,0 +170752864775,225,0 +170752864823,225,0 +170752864871,225,0 +170752864919,225,0 +170752864967,225,0 +170752865015,224,0 +170752865063,224,0 +170752865112,216,0 +170752865160,216,0 +170752865208,216,0 +170752865256,217,0 +170752865306,219,0 +170752865355,219,0 +170752865403,220,0 +170752865453,220,0 +170752865501,222,0 +170752865549,223,0 +170752865598,224,0 +170752865646,224,0 +170752865696,225,0 +170752865744,225,0 +170752865793,225,0 +170752865841,224,0 +170752865889,224,0 +170752865939,216,0 +170752865988,217,0 +170752866038,218,0 +170752866086,218,0 +170752866134,219,0 +170752866182,220,0 +170752866231,220,0 +170752866279,221,0 +170752866327,223,0 +170752866375,223,0 +170752866424,224,0 +170752866474,226,0 +170752866524,224,0 +170752866573,224,0 +170752866621,225,0 +170752866671,226,0 +170752866719,217,0 +170752866766,217,0 +170752866814,217,0 +170752866862,218,0 +170752866910,220,0 +170752866960,220,0 +170752867009,221,0 +170752867057,224,0 +170752867107,223,0 +170752867156,224,0 +170752867204,224,0 +170752867252,224,0 +170752867300,225,0 +170752867348,225,0 +170752867395,226,0 +170752867443,224,0 +170752867491,224,0 +170752867539,220,0 +170752867589,220,0 +170752867638,221,0 +170752867686,222,0 +170752867735,222,0 +170752867783,223,0 +170752867831,224,0 +170752867881,226,0 +170752867930,224,0 +170752867978,225,0 +170752868026,224,0 +170752868075,224,0 +170752868123,225,0 +170752868171,223,0 +170752868220,225,0 +170752868268,225,0 +170752868316,225,0 +170752868364,224,0 +170752868412,223,0 +170752868460,218,0 +170752868510,219,0 +170752868558,220,0 +170752868606,221,0 +170752868654,220,0 +170752868701,222,0 +170752868751,222,0 +170752868800,222,0 +170752868850,223,0 +170752868898,224,0 +170752868946,225,0 +170752868994,225,0 +170752869043,224,0 +170752869091,224,0 +170752869141,226,0 +170752869190,225,0 +170752869240,223,0 +170752869290,224,0 +170752869338,218,0 +170752869386,216,0 +170752869433,217,0 +170752869481,218,0 +170752869531,218,0 +170752869579,219,0 +170752869627,219,0 +170752869676,221,0 +170752869724,221,0 +170752869772,221,0 +170752869820,223,0 +170752869868,222,0 +170752869916,223,0 +170752869964,223,0 +170752870012,223,0 +170752870060,224,0 +170752870108,224,0 +170752870156,225,0 +170752870204,224,0 +170752870253,224,0 +170752870301,218,0 +170752870350,220,0 +170752870398,219,0 +170752870448,220,0 +170752870497,220,0 +170752870545,222,0 +170752870593,222,0 +170752870641,222,0 +170752870689,222,0 +170752870739,224,0 +170752870787,225,0 +170752870836,223,0 +170752870884,224,0 +170752870932,225,0 +170752870982,224,0 +170752871029,225,0 +170752871077,225,0 +170752871125,224,0 +170752871175,224,0 +170752871223,221,0 +170752871272,221,0 +170752871322,221,0 +170752871371,222,0 +170752871421,222,0 +170752871470,223,0 +170752871518,223,0 +170752871568,224,0 +170752871616,223,0 +170752871664,225,0 +170752871713,226,0 +170752871761,225,0 +170752871809,226,0 +170752871858,225,0 +170752871906,225,0 +170752871954,225,0 +170752872002,225,0 +170752872050,224,0 +170752872098,224,0 +170752872146,223,0 +170752872194,223,0 +170752872242,223,0 +170752872291,224,0 +170752872339,224,0 +170752872387,224,0 +170752872435,224,0 +170752872484,225,0 +170752872532,225,0 +170752872582,226,0 +170752872631,225,0 +170752872681,226,0 +170752872729,226,0 +170752872777,224,0 +170752872824,225,0 +170752872872,225,0 +170752872922,223,0 +170752872971,225,0 +170752873019,224,0 +170752873067,221,0 +170752873115,222,0 +170752873163,223,0 +170752873211,222,0 +170752873259,224,0 +170752873307,225,0 +170752873355,225,0 +170752873403,225,0 +170752873451,224,0 +170752873499,225,0 +170752873547,226,0 +170752873595,225,0 +170752873642,226,0 +170752873692,225,0 +170752873740,225,0 +170752873788,224,0 +170752873837,224,0 +170752873887,225,0 +170752873935,224,0 +170752873984,219,0 +170752874032,220,0 +170752874080,220,0 +170752874129,220,0 +170752874179,221,0 +170752874228,223,0 +170752874278,223,0 +170752874327,223,0 +170752874377,223,0 +170752874426,223,0 +170752874474,225,0 +170752874524,225,0 +170752874573,226,0 +170752874621,225,0 +170752874669,225,0 +170752874717,225,0 +170752874765,225,0 +170752874813,224,0 +170752874861,224,0 +170752874911,218,0 +170752874959,217,0 +170752875007,218,0 +170752875056,219,0 +170752875104,220,0 +170752875152,220,0 +170752875200,220,0 +170752875250,220,0 +170752875298,222,0 +170752875345,222,0 +170752875393,222,0 +170752875443,224,0 +170752875491,224,0 +170752875539,227,0 +170752875586,226,0 +170752875634,224,0 +170752875682,224,0 +170752875730,224,0 +170752875778,224,0 +170752875826,216,0 +170752875874,215,0 +170752875922,216,0 +170752875971,217,0 +170752876021,218,0 +170752876069,219,0 +170752876117,219,0 +170752876165,220,0 +170752876213,221,0 +170752876261,221,0 +170752876309,222,0 +170752876356,224,0 +170752876404,224,0 +170752876452,224,0 +170752876500,225,0 +170752876548,227,0 +170752876596,225,0 +170752876644,224,0 +170752876692,224,0 +170752876740,223,0 +170752876788,217,0 +170752876837,217,0 +170752876885,218,0 +170752876933,219,0 +170752876981,220,0 +170752877030,220,0 +170752877078,222,0 +170752877126,221,0 +170752877174,222,0 +170752877222,223,0 +170752877270,224,0 +170752877318,224,0 +170752877366,224,0 +170752877415,224,0 +170752877463,228,0 +170752877511,226,0 +170752877559,226,0 +170752877608,224,0 +170752877656,224,0 +170752877704,216,0 +170752877752,216,0 +170752877801,217,0 +170752877849,218,0 +170752877897,219,0 +170752877945,219,0 +170752877993,220,0 +170752878041,220,0 +170752878089,221,0 +170752878137,222,0 +170752878184,224,0 +170752878234,224,0 +170752878282,224,0 +170752878330,224,0 +170752878378,226,0 +170752878426,225,0 +170752878474,225,0 +170752878522,225,0 +170752878571,224,0 +170752878619,216,0 +170752878667,216,0 +170752878715,217,0 +170752878763,217,0 +170752878810,217,0 +170752878858,218,0 +170752878906,219,0 +170752878954,219,0 +170752879002,221,0 +170752879050,223,0 +170752879098,221,0 +170752879146,222,0 +170752879193,224,0 +170752879241,224,0 +170752879289,225,0 +170752879337,225,0 +170752879385,225,0 +170752879433,226,0 +170752879481,224,0 +170752879530,217,0 +170752879578,216,0 +170752879626,216,0 +170752879674,217,0 +170752879724,218,0 +170752879773,218,0 +170752879821,219,0 +170752879869,220,0 +170752879917,220,0 +170752879966,221,0 +170752880016,222,0 +170752880064,222,0 +170752880112,222,0 +170752880161,224,0 +170752880209,223,0 +170752880257,224,0 +170752880305,222,0 +170752880353,224,0 +170752880401,224,0 +170752880449,216,0 +170752880497,215,0 +170752880544,216,0 +170752880594,216,0 +170752880642,218,0 +170752880690,217,0 +170752880737,219,0 +170752880785,219,0 +170752880833,220,0 +170752880881,221,0 +170752880929,224,0 +170752880977,222,0 +170752881025,223,0 +170752881073,224,0 +170752881121,224,0 +170752881169,224,0 +170752881216,225,0 +170752881264,224,0 +170752881312,225,0 +170752881360,224,0 +170752881408,215,0 +170752881456,216,0 +170752881504,217,0 +170752881552,218,0 +170752881601,219,0 +170752881649,219,0 +170752881697,219,0 +170752881745,220,0 +170752881793,222,0 +170752881843,222,0 +170752881892,223,0 +170752881940,223,0 +170752881988,223,0 +170752882036,224,0 +170752882086,225,0 +170752882133,224,0 +170752882181,225,0 +170752882229,225,0 +170752882277,224,0 +170752882326,215,0 +170752882374,216,0 +170752882422,217,0 +170752882470,219,0 +170752882518,218,0 +170752882566,220,0 +170752882614,220,0 +170752882662,222,0 +170752882710,222,0 +170752882758,222,0 +170752882806,223,0 +170752882853,224,0 +170752882901,225,0 +170752882949,226,0 +170752882997,225,0 +170752883045,225,0 +170752883093,226,0 +170752883141,225,0 +170752883189,224,0 +170752883237,216,0 +170752883285,216,0 +170752883335,217,0 +170752883384,218,0 +170752883434,218,0 +170752883483,221,0 +170752883533,220,0 +170752883582,221,0 +170752883632,222,0 +170752883681,223,0 +170752883729,223,0 +170752883779,225,0 +170752883828,226,0 +170752883876,226,0 +170752883924,225,0 +170752883972,225,0 +170752884020,225,0 +170752884068,225,0 +170752884117,224,0 +170752884165,215,0 +170752884213,216,0 +170752884263,218,0 +170752884312,218,0 +170752884362,218,0 +170752884411,219,0 +170752884459,219,0 +170752884507,222,0 +170752884556,222,0 +170752884606,222,0 +170752884654,222,0 +170752884703,225,0 +170752884751,224,0 +170752884799,224,0 +170752884849,224,0 +170752884896,223,0 +170752884946,225,0 +170752884994,224,0 +170752885042,224,0 +170752885091,216,0 +170752885141,215,0 +170752885189,214,0 +170752885236,216,0 +170752885284,216,0 +170752885332,217,0 +170752885380,218,0 +170752885428,220,0 +170752885476,220,0 +170752885524,220,0 +170752885572,221,0 +170752885619,223,0 +170752885667,224,0 +170752885715,223,0 +170752885765,224,0 +170752885814,225,0 +170752885862,225,0 +170752885912,225,0 +170752885960,225,0 +170752886009,216,0 +170752886059,215,0 +170752886108,215,0 +170752886156,215,0 +170752886204,215,0 +170752886252,216,0 +170752886300,216,0 +170752886349,216,0 +170752886397,216,0 +170752886445,217,0 +170752886495,218,0 +170752886543,219,0 +170752886592,220,0 +170752886640,220,0 +170752886688,221,0 +170752886738,222,0 +170752886786,222,0 +170752886834,222,0 +170752886882,223,0 +170752886931,224,0 +170752886981,224,0 +170752887029,226,0 +170752887076,225,0 +170752887126,224,0 +170752887176,225,0 +170752887223,223,0 +170752887271,224,0 +170752887321,224,0 +170752887369,217,0 +170752887417,216,0 +170752887465,217,0 +170752887513,219,0 +170752887560,220,0 +170752887608,220,0 +170752887658,220,0 +170752887706,220,0 +170752887755,221,0 +170752887803,222,0 +170752887851,223,0 +170752887899,223,0 +170752887949,224,0 +170752887997,224,0 +170752888045,224,0 +170752888092,225,0 +170752888142,222,0 +170752888190,225,0 +170752888238,224,0 +170752888287,223,0 +170752888337,215,0 +170752888385,215,0 +170752888433,215,0 +170752888482,217,0 +170752888532,217,0 +170752888580,218,0 +170752888629,219,0 +170752888679,220,0 +170752888727,221,0 +170752888775,221,0 +170752888823,221,0 +170752888872,221,0 +170752888922,222,0 +170752888970,223,0 +170752889017,223,0 +170752889065,225,0 +170752889113,224,0 +170752889163,224,0 +170752889212,223,0 +170752889261,215,0 +170752889309,215,0 +170752889357,215,0 +170752889407,215,0 +170752889455,216,0 +170752889502,217,0 +170752889550,217,0 +170752889600,218,0 +170752889648,219,0 +170752889696,220,0 +170752889744,221,0 +170752889793,221,0 +170752889841,221,0 +170752889889,222,0 +170752889937,224,0 +170752889985,222,0 +170752890034,223,0 +170752890084,224,0 +170752890132,224,0 +170752890180,216,0 +170752890228,215,0 +170752890276,216,0 +170752890325,216,0 +170752890375,217,0 +170752890423,218,0 +170752890472,219,0 +170752890520,219,0 +170752890568,219,0 +170752890618,220,0 +170752890667,222,0 +170752890715,222,0 +170752890763,223,0 +170752890811,224,0 +170752890861,223,0 +170752890910,224,0 +170752890958,225,0 +170752891006,224,0 +170752891055,223,0 +170752891103,215,0 +170752891153,216,0 +170752891201,217,0 +170752891249,217,0 +170752891297,218,0 +170752891345,218,0 +170752891394,220,0 +170752891442,219,0 +170752891491,221,0 +170752891539,221,0 +170752891589,221,0 +170752891638,222,0 +170752891686,223,0 +170752891734,226,0 +170752891784,222,0 +170752891832,224,0 +170752891880,223,0 +170752891928,222,0 +170752891976,223,0 +170752892023,217,0 +170752892073,216,0 +170752892121,217,0 +170752892169,219,0 +170752892218,218,0 +170752892266,219,0 +170752892314,219,0 +170752892364,220,0 +170752892412,221,0 +170752892460,221,0 +170752892509,222,0 +170752892557,222,0 +170752892605,223,0 +170752892655,224,0 +170752892703,223,0 +170752892751,224,0 +170752892799,223,0 +170752892847,225,0 +170752892894,225,0 +170752892942,218,0 +170752892992,217,0 +170752893040,218,0 +170752893088,218,0 +170752893136,219,0 +170752893184,220,0 +170752893232,221,0 +170752893280,221,0 +170752893329,224,0 +170752893379,223,0 +170752893427,224,0 +170752893475,225,0 +170752893523,225,0 +170752893572,225,0 +170752893620,224,0 +170752893669,224,0 +170752893719,225,0 +170752893767,224,0 +170752893815,224,0 +170752893864,218,0 +170752893914,218,0 +170752893962,218,0 +170752894010,219,0 +170752894058,220,0 +170752894106,220,0 +170752894154,222,0 +170752894202,221,0 +170752894250,222,0 +170752894299,223,0 +170752894349,225,0 +170752894398,224,0 +170752894446,224,0 +170752894494,224,0 +170752894544,226,0 +170752894592,225,0 +170752894640,225,0 +170752894688,225,0 +170752894736,225,0 +170752894784,217,0 +170752894832,217,0 +170752894881,218,0 +170752894931,219,0 +170752894979,219,0 +170752895028,220,0 +170752895078,221,0 +170752895126,221,0 +170752895174,221,0 +170752895222,222,0 +170752895269,222,0 +170752895317,223,0 +170752895367,223,0 +170752895415,225,0 +170752895463,226,0 +170752895511,225,0 +170752895559,224,0 +170752895606,225,0 +170752895654,222,0 +170752895702,223,0 +170752895750,216,0 +170752895798,217,0 +170752895846,218,0 +170752895895,218,0 +170752895943,219,0 +170752895991,219,0 +170752896039,220,0 +170752896087,221,0 +170752896135,220,0 +170752896183,223,0 +170752896231,223,0 +170752896279,224,0 +170752896328,223,0 +170752896378,224,0 +170752896427,224,0 +170752896475,225,0 +170752896525,225,0 +170752896573,225,0 +170752896621,224,0 +170752896670,215,0 +170752896720,216,0 +170752896768,218,0 +170752896816,218,0 +170752896864,219,0 +170752896912,219,0 +170752896961,221,0 +170752897009,220,0 +170752897057,223,0 +170752897105,222,0 +170752897153,224,0 +170752897201,224,0 +170752897249,224,0 +170752897298,225,0 +170752897346,225,0 +170752897396,224,0 +170752897444,225,0 +170752897492,224,0 +170752897541,223,0 +170752897589,217,0 +170752897637,216,0 +170752897685,216,0 +170752897735,217,0 +170752897782,217,0 +170752897830,218,0 +170752897880,218,0 +170752897929,220,0 +170752897977,220,0 +170752898025,221,0 +170752898073,222,0 +170752898121,223,0 +170752898169,223,0 +170752898217,223,0 +170752898265,223,0 +170752898313,222,0 +170752898361,222,0 +170752898409,223,0 +170752898456,224,0 +170752898504,216,0 +170752898552,215,0 +170752898600,215,0 +170752898650,215,0 +170752898698,216,0 +170752898746,216,0 +170752898794,217,0 +170752898842,218,0 +170752898891,219,0 +170752898939,218,0 +170752898989,220,0 +170752899036,221,0 +170752899084,221,0 +170752899132,222,0 +170752899182,223,0 +170752899231,223,0 +170752899279,223,0 +170752899327,223,0 +170752899375,224,0 +170752899424,217,0 +170752899472,215,0 +170752899522,215,0 +170752899571,215,0 +170752899619,215,0 +170752899669,216,0 +170752899717,216,0 +170752899766,217,0 +170752899814,218,0 +170752899864,219,0 +170752899912,220,0 +170752899961,220,0 +170752900009,221,0 +170752900057,224,0 +170752900105,223,0 +170752900155,223,0 +170752900204,224,0 +170752900254,223,0 +170752900302,225,0 +170752900350,216,0 +170752900399,215,0 +170752900447,215,0 +170752900497,215,0 +170752900546,216,0 +170752900594,216,0 +170752900644,217,0 +170752900692,218,0 +170752900740,218,0 +170752900789,219,0 +170752900837,220,0 +170752900885,220,0 +170752900933,221,0 +170752900982,221,0 +170752901030,223,0 +170752901078,224,0 +170752901128,224,0 +170752901176,223,0 +170752901224,224,0 +170752901272,216,0 +170752901321,215,0 +170752901369,215,0 +170752901417,216,0 +170752901467,217,0 +170752901515,218,0 +170752901563,219,0 +170752901611,220,0 +170752901659,221,0 +170752901706,221,0 +170752901756,223,0 +170752901804,224,0 +170752901854,225,0 +170752901902,224,0 +170752901951,224,0 +170752902001,226,0 +170752902050,226,0 +170752902098,225,0 +170752902148,223,0 +170752902195,216,0 +170752902243,214,0 +170752902291,215,0 +170752902341,216,0 +170752902390,217,0 +170752902440,218,0 +170752902488,218,0 +170752902536,219,0 +170752902584,219,0 +170752902633,220,0 +170752902683,222,0 +170752902732,222,0 +170752902780,222,0 +170752902828,222,0 +170752902878,224,0 +170752902927,226,0 +170752902975,223,0 +170752903023,225,0 +170752903071,225,0 +170752903119,222,0 +170752903167,215,0 +170752903215,215,0 +170752903263,215,0 +170752903311,215,0 +170752903359,216,0 +170752903407,217,0 +170752903456,217,0 +170752903504,219,0 +170752903552,219,0 +170752903602,221,0 +170752903650,222,0 +170752903698,222,0 +170752903747,223,0 +170752903797,223,0 +170752903845,225,0 +170752903894,225,0 +170752903942,224,0 +170752903990,225,0 +170752904040,217,0 +170752904088,215,0 +170752904136,214,0 +170752904185,215,0 +170752904233,215,0 +170752904283,216,0 +170752904331,216,0 +170752904379,216,0 +170752904428,217,0 +170752904476,219,0 +170752904524,220,0 +170752904574,221,0 +170752904621,221,0 +170752904671,221,0 +170752904720,223,0 +170752904768,223,0 +170752904816,223,0 +170752904864,224,0 +170752904914,224,0 +170752904962,223,0 +170752905011,214,0 +170752905061,215,0 +170752905109,215,0 +170752905157,215,0 +170752905206,215,0 +170752905254,216,0 +170752905302,215,0 +170752905352,216,0 +170752905400,218,0 +170752905448,218,0 +170752905496,220,0 +170752905545,221,0 +170752905593,223,0 +170752905641,223,0 +170752905689,223,0 +170752905739,223,0 +170752905788,223,0 +170752905836,224,0 +170752905886,225,0 +170752905934,216,0 +170752905982,215,0 +170752906030,215,0 +170752906079,215,0 +170752906127,216,0 +170752906175,216,0 +170752906223,217,0 +170752906271,218,0 +170752906319,218,0 +170752906367,219,0 +170752906415,220,0 +170752906464,221,0 +170752906512,222,0 +170752906560,222,0 +170752906610,224,0 +170752906658,224,0 +170752906707,223,0 +170752906757,224,0 +170752906805,224,0 +170752906853,216,0 +170752906901,214,0 +170752906950,215,0 +170752906998,215,0 +170752907046,216,0 +170752907096,217,0 +170752907144,218,0 +170752907192,219,0 +170752907241,219,0 +170752907289,220,0 +170752907337,222,0 +170752907387,222,0 +170752907436,222,0 +170752907484,224,0 +170752907532,223,0 +170752907580,224,0 +170752907628,224,0 +170752907676,224,0 +170752907725,224,0 +170752907773,216,0 +170752907823,215,0 +170752907871,216,0 +170752907920,216,0 +170752907970,218,0 +170752908018,218,0 +170752908067,219,0 +170752908117,220,0 +170752908165,221,0 +170752908213,222,0 +170752908261,222,0 +170752908309,224,0 +170752908357,223,0 +170752908405,223,0 +170752908454,224,0 +170752908504,225,0 +170752908553,224,0 +170752908601,225,0 +170752908649,223,0 +170752908697,217,0 +170752908745,216,0 +170752908793,217,0 +170752908842,218,0 +170752908892,219,0 +170752908941,219,0 +170752908989,220,0 +170752909037,220,0 +170752909086,221,0 +170752909134,221,0 +170752909182,223,0 +170752909232,223,0 +170752909280,223,0 +170752909327,223,0 +170752909375,223,0 +170752909423,224,0 +170752909473,224,0 +170752909521,224,0 +170752909568,224,0 +170752909616,220,0 +170752909664,215,0 +170752909712,215,0 +170752909760,216,0 +170752909808,217,0 +170752909856,219,0 +170752909904,220,0 +170752909952,219,0 +170752910001,220,0 +170752910049,222,0 +170752910097,221,0 +170752910146,222,0 +170752910196,225,0 +170752910244,224,0 +170752910292,224,0 +170752910340,224,0 +170752910388,224,0 +170752910436,225,0 +170752910484,224,0 +170752910532,222,0 +170752910581,215,0 +170752910631,217,0 +170752910680,217,0 +170752910728,218,0 +170752910778,218,0 +170752910827,219,0 +170752910875,220,0 +170752910923,221,0 +170752910971,221,0 +170752911019,222,0 +170752911067,223,0 +170752911117,224,0 +170752911165,224,0 +170752911213,223,0 +170752911261,225,0 +170752911310,225,0 +170752911358,225,0 +170752911406,224,0 +170752911454,223,0 +170752911502,215,0 +170752911551,216,0 +170752911599,217,0 +170752911649,218,0 +170752911697,218,0 +170752911745,219,0 +170752911793,219,0 +170752911841,220,0 +170752911890,220,0 +170752911938,222,0 +170752911988,222,0 +170752912036,223,0 +170752912083,224,0 +170752912131,224,0 +170752912179,224,0 +170752912227,223,0 +170752912275,225,0 +170752912323,224,0 +170752912371,223,0 +170752912419,217,0 +170752912467,216,0 +170752912516,217,0 +170752912564,218,0 +170752912612,218,0 +170752912660,219,0 +170752912708,220,0 +170752912755,220,0 +170752912803,220,0 +170752912851,221,0 +170752912899,222,0 +170752912947,222,0 +170752912997,223,0 +170752913044,223,0 +170752913092,224,0 +170752913140,223,0 +170752913188,224,0 +170752913236,224,0 +170752913286,224,0 +170752913333,217,0 +170752913381,216,0 +170752913429,216,0 +170752913477,217,0 +170752913525,218,0 +170752913574,219,0 +170752913622,219,0 +170752913672,220,0 +170752913721,220,0 +170752913769,221,0 +170752913817,221,0 +170752913867,221,0 +170752913915,223,0 +170752913964,223,0 +170752914012,224,0 +170752914060,224,0 +170752914110,224,0 +170752914159,225,0 +170752914209,223,0 +170752914258,216,0 +170752914306,214,0 +170752914354,214,0 +170752914404,215,0 +170752914452,216,0 +170752914501,217,0 +170752914549,218,0 +170752914597,218,0 +170752914645,220,0 +170752914693,220,0 +170752914743,221,0 +170752914792,221,0 +170752914840,223,0 +170752914890,223,0 +170752914938,223,0 +170752914986,224,0 +170752915034,224,0 +170752915081,224,0 +170752915129,224,0 +170752915179,222,0 +170752915227,214,0 +170752915275,215,0 +170752915324,216,0 +170752915372,217,0 +170752915422,218,0 +170752915470,218,0 +170752915518,220,0 +170752915567,222,0 +170752915617,221,0 +170752915665,222,0 +170752915714,222,0 +170752915764,224,0 +170752915812,224,0 +170752915860,225,0 +170752915908,223,0 +170752915957,224,0 +170752916005,224,0 +170752916055,224,0 +170752916104,224,0 +170752916152,215,0 +170752916200,215,0 +170752916248,214,0 +170752916296,216,0 +170752916344,217,0 +170752916394,217,0 +170752916441,218,0 +170752916489,218,0 +170752916539,219,0 +170752916587,220,0 +170752916635,221,0 +170752916682,222,0 +170752916730,223,0 +170752916778,224,0 +170752916826,222,0 +170752916874,224,0 +170752916922,224,0 +170752916972,224,0 +170752917021,224,0 +170752917071,216,0 +170752917119,215,0 +170752917167,215,0 +170752917215,215,0 +170752917263,216,0 +170752917312,217,0 +170752917360,218,0 +170752917410,219,0 +170752917458,219,0 +170752917507,220,0 +170752917556,221,0 +170752917604,222,0 +170752917652,222,0 +170752917700,223,0 +170752917748,224,0 +170752917796,224,0 +170752917844,224,0 +170752917892,224,0 +170752917941,224,0 +170752917989,216,0 +170752918039,215,0 +170752918086,215,0 +170752918134,215,0 +170752918182,216,0 +170752918230,217,0 +170752918280,218,0 +170752918328,218,0 +170752918376,219,0 +170752918424,220,0 +170752918473,221,0 +170752918521,221,0 +170752918569,222,0 +170752918619,224,0 +170752918667,224,0 +170752918716,224,0 +170752918764,223,0 +170752918814,223,0 +170752918862,224,0 +170752918911,217,0 +170752918959,215,0 +170752919007,216,0 +170752919055,217,0 +170752919104,217,0 +170752919152,218,0 +170752919200,218,0 +170752919248,219,0 +170752919296,220,0 +170752919344,221,0 +170752919392,221,0 +170752919442,223,0 +170752919490,223,0 +170752919539,223,0 +170752919589,225,0 +170752919638,224,0 +170752919688,225,0 +170752919736,225,0 +170752919784,224,0 +170752919832,219,0 +170752919880,215,0 +170752919928,214,0 +170752919976,216,0 +170752920025,216,0 +170752920075,217,0 +170752920124,219,0 +170752920172,219,0 +170752920220,219,0 +170752920269,220,0 +170752920317,221,0 +170752920365,222,0 +170752920415,223,0 +170752920465,225,0 +170752920512,224,0 +170752920562,224,0 +170752920610,224,0 +170752920658,224,0 +170752920706,223,0 +170752920754,216,0 +170752920802,215,0 +170752920850,215,0 +170752920898,215,0 +170752920946,216,0 +170752920995,217,0 +170752921045,218,0 +170752921094,218,0 +170752921142,218,0 +170752921192,219,0 +170752921241,219,0 +170752921289,220,0 +170752921337,222,0 +170752921385,222,0 +170752921433,223,0 +170752921481,226,0 +170752921531,224,0 +170752921578,225,0 +170752921626,224,0 +170752921674,223,0 +170752921724,215,0 +170752921773,215,0 +170752921821,215,0 +170752921869,215,0 +170752921917,217,0 +170752921965,218,0 +170752922013,218,0 +170752922060,218,0 +170752922108,219,0 +170752922156,220,0 +170752922204,220,0 +170752922252,221,0 +170752922300,221,0 +170752922348,223,0 +170752922397,222,0 +170752922445,224,0 +170752922493,223,0 +170752922541,224,0 +170752922589,224,0 +170752922637,216,0 +170752922685,215,0 +170752922733,216,0 +170752922781,217,0 +170752922830,218,0 +170752922878,220,0 +170752922926,220,0 +170752922974,221,0 +170752923024,222,0 +170752923072,223,0 +170752923120,225,0 +170752923168,224,0 +170752923217,224,0 +170752923265,226,0 +170752923313,225,0 +170752923363,225,0 +170752923412,224,0 +170752923460,225,0 +170752923508,224,0 +170752923556,216,0 +170752923604,215,0 +170752923652,216,0 +170752923700,217,0 +170752923748,217,0 +170752923796,218,0 +170752923844,219,0 +170752923893,220,0 +170752923943,221,0 +170752923991,222,0 +170752924040,221,0 +170752924088,223,0 +170752924138,223,0 +170752924186,225,0 +170752924234,225,0 +170752924281,225,0 +170752924331,225,0 +170752924379,225,0 +170752924427,224,0 +170752924476,216,0 +170752924526,216,0 +170752924574,216,0 +170752924623,217,0 +170752924671,218,0 +170752924721,219,0 +170752924769,220,0 +170752924818,220,0 +170752924868,221,0 +170752924916,221,0 +170752924965,222,0 +170752925013,222,0 +170752925063,223,0 +170752925111,223,0 +170752925160,225,0 +170752925208,224,0 +170752925256,224,0 +170752925306,224,0 +170752925354,224,0 +170752925402,217,0 +170752925450,215,0 +170752925498,216,0 +170752925546,217,0 +170752925594,218,0 +170752925642,219,0 +170752925691,219,0 +170752925739,218,0 +170752925787,222,0 +170752925835,221,0 +170752925883,222,0 +170752925931,223,0 +170752925981,224,0 +170752926029,225,0 +170752926078,226,0 +170752926128,226,0 +170752926176,225,0 +170752926224,225,0 +170752926272,224,0 +170752926319,223,0 +170752926367,215,0 +170752926417,215,0 +170752926466,216,0 +170752926516,217,0 +170752926564,217,0 +170752926613,218,0 +170752926661,218,0 +170752926711,220,0 +170752926759,220,0 +170752926808,221,0 +170752926858,222,0 +170752926907,224,0 +170752926955,224,0 +170752927005,225,0 +170752927053,226,0 +170752927102,225,0 +170752927152,225,0 +170752927200,226,0 +170752927248,223,0 +170752927296,215,0 +170752927345,215,0 +170752927393,215,0 +170752927441,217,0 +170752927489,217,0 +170752927539,218,0 +170752927587,219,0 +170752927636,219,0 +170752927686,219,0 +170752927735,220,0 +170752927785,222,0 +170752927834,222,0 +170752927882,222,0 +170752927930,224,0 +170752927980,224,0 +170752928027,224,0 +170752928075,222,0 +170752928125,224,0 +170752928173,224,0 +170752928221,215,0 +170752928269,215,0 +170752928318,215,0 +170752928368,215,0 +170752928416,216,0 +170752928464,216,0 +170752928512,217,0 +170752928560,218,0 +170752928608,219,0 +170752928655,219,0 +170752928705,219,0 +170752928753,222,0 +170752928802,222,0 +170752928850,222,0 +170752928898,223,0 +170752928946,222,0 +170752928994,221,0 +170752929042,223,0 +170752929090,225,0 +170752929139,216,0 +170752929187,215,0 +170752929235,215,0 +170752929283,215,0 +170752929333,217,0 +170752929381,217,0 +170752929430,218,0 +170752929478,219,0 +170752929526,220,0 +170752929574,222,0 +170752929624,221,0 +170752929672,222,0 +170752929720,222,0 +170752929767,223,0 +170752929815,223,0 +170752929863,224,0 +170752929911,224,0 +170752929959,224,0 +170752930007,224,0 +170752930055,217,0 +170752930103,215,0 +170752930151,215,0 +170752930199,215,0 +170752930246,216,0 +170752930294,217,0 +170752930342,218,0 +170752930390,219,0 +170752930438,220,0 +170752930486,221,0 +170752930536,222,0 +170752930583,222,0 +170752930633,222,0 +170752930681,223,0 +170752930730,224,0 +170752930780,224,0 +170752930828,224,0 +170752930876,224,0 +170752930924,225,0 +170752930972,221,0 +170752931019,215,0 +170752931067,215,0 +170752931115,215,0 +170752931163,216,0 +170752931211,216,0 +170752931259,218,0 +170752931308,218,0 +170752931356,219,0 +170752931406,220,0 +170752931453,220,0 +170752931501,227,0 +170752931549,222,0 +170752931597,223,0 +170752931645,224,0 +170752931693,224,0 +170752931742,225,0 +170752931792,223,0 +170752931841,224,0 +170752931889,224,0 +170752931937,215,0 +170752931986,215,0 +170752932034,215,0 +170752932084,215,0 +170752932132,217,0 +170752932179,216,0 +170752932227,218,0 +170752932275,218,0 +170752932323,219,0 +170752932371,220,0 +170752932419,222,0 +170752932467,221,0 +170752932516,225,0 +170752932564,222,0 +170752932612,222,0 +170752932660,223,0 +170752932708,224,0 +170752932755,223,0 +170752932803,224,0 +170752932853,216,0 +170752932901,215,0 +170752932948,215,0 +170752932996,216,0 +170752933044,217,0 +170752933092,217,0 +170752933142,218,0 +170752933189,221,0 +170752933237,219,0 +170752933285,220,0 +170752933335,221,0 +170752933383,222,0 +170752933431,223,0 +170752933478,224,0 +170752933526,224,0 +170752933574,224,0 +170752933622,224,0 +170752933670,224,0 +170752933718,224,0 +170752933765,224,0 +170752933813,214,0 +170752933861,215,0 +170752933909,215,0 +170752933959,217,0 +170752934007,217,0 +170752934057,218,0 +170752934104,218,0 +170752934154,219,0 +170752934202,219,0 +170752934250,220,0 +170752934299,221,0 +170752934347,223,0 +170752934397,224,0 +170752934445,223,0 +170752934494,224,0 +170752934544,225,0 +170752934592,222,0 +170752934640,223,0 +170752934689,219,0 +170752934737,215,0 +170752934787,215,0 +170752934835,215,0 +170752934884,216,0 +170752934932,217,0 +170752934980,217,0 +170752935028,218,0 +170752935078,218,0 +170752935127,219,0 +170752935177,220,0 +170752935225,221,0 +170752935273,222,0 +170752935321,222,0 +170752935370,223,0 +170752935420,222,0 +170752935469,224,0 +170752935517,223,0 +170752935566,222,0 +170752935616,223,0 +170752935664,215,0 +170752935713,215,0 +170752935761,215,0 +170752935809,216,0 +170752935857,218,0 +170752935905,218,0 +170752935953,218,0 +170752936001,219,0 +170752936049,219,0 +170752936096,220,0 +170752936144,221,0 +170752936192,222,0 +170752936242,224,0 +170752936290,224,0 +170752936338,223,0 +170752936385,223,0 +170752936433,224,0 +170752936481,225,0 +170752936531,223,0 +170752936580,215,0 +170752936630,215,0 +170752936678,215,0 +170752936727,217,0 +170752936777,217,0 +170752936826,218,0 +170752936876,219,0 +170752936925,219,0 +170752936974,220,0 +170752937023,221,0 +170752937071,221,0 +170752937121,222,0 +170752937170,223,0 +170752937220,224,0 +170752937269,226,0 +170752937317,224,0 +170752937367,225,0 +170752937415,224,0 +170752937463,223,0 +170752937512,215,0 +170752937562,215,0 +170752937609,215,0 +170752937659,216,0 +170752937709,217,0 +170752937756,218,0 +170752937804,219,0 +170752937854,221,0 +170752937902,223,0 +170752937950,222,0 +170752937998,223,0 +170752938046,224,0 +170752938094,223,0 +170752938142,223,0 +170752938190,223,0 +170752938238,224,0 +170752938286,223,0 +170752938335,223,0 +170752938383,223,0 +170752938431,215,0 +170752938479,214,0 +170752938527,215,0 +170752938576,215,0 +170752938624,216,0 +170752938672,216,0 +170752938720,217,0 +170752938769,217,0 +170752938817,218,0 +170752938867,220,0 +170752938914,219,0 +170752938962,220,0 +170752939010,221,0 +170752939058,221,0 +170752939108,222,0 +170752939156,223,0 +170752939205,222,0 +170752939255,223,0 +170752939304,224,0 +170752939354,216,0 +170752939403,215,0 +170752939453,215,0 +170752939502,217,0 +170752939550,218,0 +170752939598,218,0 +170752939646,218,0 +170752939694,220,0 +170752939742,217,0 +170752939792,221,0 +170752939840,221,0 +170752939889,225,0 +170752939937,225,0 +170752939985,224,0 +170752940035,223,0 +170752940082,224,0 +170752940130,224,0 +170752940178,224,0 +170752940226,223,0 +170752940276,216,0 +170752940324,215,0 +170752940373,216,0 +170752940423,217,0 +170752940471,218,0 +170752940519,218,0 +170752940567,220,0 +170752940615,220,0 +170752940663,220,0 +170752940711,221,0 +170752940759,222,0 +170752940808,223,0 +170752940856,224,0 +170752940906,224,0 +170752940954,225,0 +170752941002,224,0 +170752941050,225,0 +170752941097,225,0 +170752941145,224,0 +170752941193,218,0 +170752941241,215,0 +170752941289,215,0 +170752941337,217,0 +170752941385,217,0 +170752941435,218,0 +170752941484,219,0 +170752941532,220,0 +170752941582,220,0 +170752941630,220,0 +170752941679,222,0 +170752941727,223,0 +170752941777,223,0 +170752941826,223,0 +170752941874,224,0 +170752941922,224,0 +170752941970,224,0 +170752942018,224,0 +170752942066,224,0 +170752942114,223,0 +170752942162,215,0 +170752942209,215,0 +170752942257,216,0 +170752942305,217,0 +170752942353,217,0 +170752942403,218,0 +170752942451,219,0 +170752942500,219,0 +170752942550,221,0 +170752942598,221,0 +170752942646,222,0 +170752942694,225,0 +170752942742,223,0 +170752942790,224,0 +170752942838,224,0 +170752942887,225,0 +170752942935,225,0 +170752942983,222,0 +170752943033,223,0 +170752943082,215,0 +170752943132,215,0 +170752943181,215,0 +170752943229,217,0 +170752943279,218,0 +170752943327,218,0 +170752943375,218,0 +170752943423,218,0 +170752943471,219,0 +170752943519,222,0 +170752943568,221,0 +170752943618,223,0 +170752943667,224,0 +170752943715,222,0 +170752943763,224,0 +170752943811,224,0 +170752943861,223,0 +170752943908,221,0 +170752943956,224,0 +170752944004,216,0 +170752944052,215,0 +170752944100,214,0 +170752944148,215,0 +170752944196,216,0 +170752944244,217,0 +170752944293,218,0 +170752944341,219,0 +170752944389,219,0 +170752944438,219,0 +170752944486,220,0 +170752944536,221,0 +170752944585,222,0 +170752944633,223,0 +170752944681,222,0 +170752944731,224,0 +170752944779,224,0 +170752944827,224,0 +170752944875,224,0 +170752944923,216,0 +170752944972,214,0 +170752945022,215,0 +170752945069,215,0 +170752945117,216,0 +170752945165,216,0 +170752945213,217,0 +170752945261,219,0 +170752945309,219,0 +170752945357,220,0 +170752945405,220,0 +170752945453,221,0 +170752945500,222,0 +170752945548,222,0 +170752945596,225,0 +170752945646,224,0 +170752945693,222,0 +170752945741,223,0 +170752945789,223,0 +170752945837,222,0 +170752945885,215,0 +170752945933,214,0 +170752945981,215,0 +170752946029,216,0 +170752946077,217,0 +170752946125,218,0 +170752946172,219,0 +170752946220,219,0 +170752946268,220,0 +170752946316,220,0 +170752946364,222,0 +170752946412,222,0 +170752946461,222,0 +170752946509,225,0 +170752946557,224,0 +170752946605,224,0 +170752946653,225,0 +170752946701,225,0 +170752946749,225,0 +170752946797,216,0 +170752946844,215,0 +170752946894,216,0 +170752946942,215,0 +170752946990,216,0 +170752947037,217,0 +170752947085,217,0 +170752947133,218,0 +170752947181,218,0 +170752947229,219,0 +170752947277,220,0 +170752947326,222,0 +170752947374,222,0 +170752947422,222,0 +170752947472,224,0 +170752947519,225,0 +170752947567,224,0 +170752947615,224,0 +170752947663,223,0 +170752947711,216,0 +170752947759,215,0 +170752947807,215,0 +170752947855,215,0 +170752947903,215,0 +170752947952,216,0 +170752948000,218,0 +170752948048,218,0 +170752948096,220,0 +170752948144,220,0 +170752948192,222,0 +170752948242,222,0 +170752948291,223,0 +170752948339,224,0 +170752948387,224,0 +170752948435,224,0 +170752948483,224,0 +170752948533,224,0 +170752948580,223,0 +170752948628,224,0 +170752948678,214,0 +170752948726,214,0 +170752948774,214,0 +170752948823,215,0 +170752948873,215,0 +170752948921,215,0 +170752948970,216,0 +170752949018,217,0 +170752949068,219,0 +170752949116,220,0 +170752949165,220,0 +170752949215,222,0 +170752949263,221,0 +170752949312,222,0 +170752949360,223,0 +170752949408,224,0 +170752949458,223,0 +170752949507,225,0 +170752949555,221,0 +170752949605,215,0 +170752949653,215,0 +170752949702,215,0 +170752949750,215,0 +170752949798,215,0 +170752949846,216,0 +170752949895,217,0 +170752949943,217,0 +170752949991,218,0 +170752950041,219,0 +170752950089,220,0 +170752950137,222,0 +170752950185,222,0 +170752950233,222,0 +170752950281,223,0 +170752950329,224,0 +170752950377,224,0 +170752950426,224,0 +170752950476,224,0 +170752950525,215,0 +170752950573,215,0 +170752950621,216,0 +170752950669,216,0 +170752950719,216,0 +170752950767,218,0 +170752950815,219,0 +170752950862,219,0 +170752950910,220,0 +170752950958,220,0 +170752951006,221,0 +170752951054,224,0 +170752951104,223,0 +170752951153,223,0 +170752951203,224,0 +170752951251,224,0 +170752951299,224,0 +170752951348,224,0 +170752951396,223,0 +170752951444,216,0 +170752951492,215,0 +170752951542,215,0 +170752951591,216,0 +170752951639,217,0 +170752951689,218,0 +170752951737,219,0 +170752951785,219,0 +170752951832,220,0 +170752951880,221,0 +170752951928,222,0 +170752951976,223,0 +170752952024,223,0 +170752952072,223,0 +170752952120,224,0 +170752952168,224,0 +170752952215,225,0 +170752952263,224,0 +170752952311,224,0 +170752952359,216,0 +170752952407,215,0 +170752952455,216,0 +170752952503,216,0 +170752952551,217,0 +170752952598,218,0 +170752952646,218,0 +170752952694,220,0 +170752952742,221,0 +170752952790,221,0 +170752952838,221,0 +170752952886,222,0 +170752952934,223,0 +170752952981,225,0 +170752953029,224,0 +170752953077,224,0 +170752953125,223,0 +170752953173,224,0 +170752953221,224,0 +170752953269,223,0 +170752953317,215,0 +170752953366,215,0 +170752953416,216,0 +170752953464,217,0 +170752953513,218,0 +170752953561,218,0 +170752953609,219,0 +170752953657,220,0 +170752953707,221,0 +170752953755,221,0 +170752953803,221,0 +170752953851,223,0 +170752953899,223,0 +170752953947,223,0 +170752953995,224,0 +170752954044,225,0 +170752954094,224,0 +170752954143,224,0 +170752954191,223,0 +170752954239,216,0 +170752954287,214,0 +170752954335,215,0 +170752954384,216,0 +170752954432,218,0 +170752954480,218,0 +170752954530,218,0 +170752954578,219,0 +170752954626,220,0 +170752954674,220,0 +170752954722,222,0 +170752954770,223,0 +170752954818,224,0 +170752954866,223,0 +170752954914,223,0 +170752954961,224,0 +170752955009,225,0 +170752955057,224,0 +170752955105,223,0 +170752955153,216,0 +170752955201,216,0 +170752955249,217,0 +170752955297,218,0 +170752955345,220,0 +170752955393,219,0 +170752955441,221,0 +170752955489,220,0 +170752955537,221,0 +170752955585,222,0 +170752955635,222,0 +170752955684,223,0 +170752955732,223,0 +170752955782,224,0 +170752955830,223,0 +170752955879,224,0 +170752955927,223,0 +170752955975,224,0 +170752956023,223,0 +170752956071,216,0 +170752956119,217,0 +170752956167,217,0 +170752956216,219,0 +170752956264,219,0 +170752956314,219,0 +170752956363,220,0 +170752956411,220,0 +170752956461,221,0 +170752956509,222,0 +170752956557,223,0 +170752956605,224,0 +170752956654,225,0 +170752956702,224,0 +170752956750,224,0 +170752956798,222,0 +170752956847,224,0 +170752956897,224,0 +170752956945,223,0 +170752956993,221,0 +170752957041,216,0 +170752957089,217,0 +170752957138,217,0 +170752957188,218,0 +170752957237,220,0 +170752957287,220,0 +170752957335,221,0 +170752957383,221,0 +170752957431,221,0 +170752957479,222,0 +170752957527,223,0 +170752957576,223,0 +170752957626,224,0 +170752957674,223,0 +170752957722,224,0 +170752957770,224,0 +170752957819,224,0 +170752957867,224,0 +170752957915,224,0 +170752957963,216,0 +170752958011,216,0 +170752958060,217,0 +170752958110,218,0 +170752958159,219,0 +170752958209,219,0 +170752958258,220,0 +170752958308,220,0 +170752958356,221,0 +170752958405,222,0 +170752958453,222,0 +170752958503,224,0 +170752958551,225,0 +170752958599,225,0 +170752958647,223,0 +170752958696,224,0 +170752958744,224,0 +170752958792,224,0 +170752958842,222,0 +170752958890,215,0 +170752958939,215,0 +170752958989,216,0 +170752959037,217,0 +170752959085,218,0 +170752959132,219,0 +170752959180,219,0 +170752959228,220,0 +170752959276,221,0 +170752959324,222,0 +170752959373,222,0 +170752959423,224,0 +170752959472,224,0 +170752959520,224,0 +170752959568,224,0 +170752959616,223,0 +170752959664,225,0 +170752959712,225,0 +170752959760,224,0 +170752959807,216,0 +170752959855,215,0 +170752959903,215,0 +170752959953,217,0 +170752960001,217,0 +170752960048,218,0 +170752960096,220,0 +170752960146,220,0 +170752960193,221,0 +170752960241,220,0 +170752960289,221,0 +170752960337,222,0 +170752960385,224,0 +170752960433,224,0 +170752960481,224,0 +170752960528,224,0 +170752960576,223,0 +170752960624,223,0 +170752960672,224,0 +170752960722,216,0 +170752960771,214,0 +170752960821,215,0 +170752960869,214,0 +170752960917,215,0 +170752960965,215,0 +170752961013,216,0 +170752961061,216,0 +170752961110,217,0 +170752961158,218,0 +170752961208,219,0 +170752961257,220,0 +170752961305,220,0 +170752961353,221,0 +170752961403,223,0 +170752961450,223,0 +170752961500,223,0 +170752961548,223,0 +170752961596,223,0 +170752961644,216,0 +170752961692,214,0 +170752961740,215,0 +170752961787,215,0 +170752961835,215,0 +170752961883,216,0 +170752961931,217,0 +170752961979,218,0 +170752962027,218,0 +170752962075,220,0 +170752962123,220,0 +170752962171,222,0 +170752962220,222,0 +170752962270,222,0 +170752962317,223,0 +170752962365,223,0 +170752962413,224,0 +170752962461,224,0 +170752962509,223,0 +170752962558,216,0 +170752962608,214,0 +170752962656,214,0 +170752962704,215,0 +170752962751,215,0 +170752962799,215,0 +170752962847,216,0 +170752962895,217,0 +170752962943,218,0 +170752962991,218,0 +170752963039,219,0 +170752963087,220,0 +170752963135,221,0 +170752963184,222,0 +170752963232,223,0 +170752963280,223,0 +170752963328,223,0 +170752963377,224,0 +170752963425,224,0 +170752963473,224,0 +170752963523,215,0 +170752963572,215,0 +170752963622,215,0 +170752963670,215,0 +170752963718,214,0 +170752963767,216,0 +170752963815,217,0 +170752963863,218,0 +170752963913,220,0 +170752963961,220,0 +170752964010,221,0 +170752964060,221,0 +170752964109,223,0 +170752964157,224,0 +170752964207,223,0 +170752964256,223,0 +170752964304,224,0 +170752964354,224,0 +170752964401,224,0 +170752964449,214,0 +170752964499,214,0 +170752964547,215,0 +170752964595,215,0 +170752964643,215,0 +170752964692,215,0 +170752964740,216,0 +170752964789,217,0 +170752964837,218,0 +170752964885,219,0 +170752964933,220,0 +170752964981,221,0 +170752965030,222,0 +170752965078,222,0 +170752965126,222,0 +170752965174,222,0 +170752965224,224,0 +170752965272,224,0 +170752965319,223,0 +170752965367,215,0 +170752965417,215,0 +170752965465,215,0 +170752965513,215,0 +170752965560,216,0 +170752965608,216,0 +170752965658,216,0 +170752965706,216,0 +170752965754,217,0 +170752965802,218,0 +170752965849,219,0 +170752965897,220,0 +170752965945,222,0 +170752965993,222,0 +170752966041,223,0 +170752966089,225,0 +170752966139,225,0 +170752966186,223,0 +170752966236,224,0 +170752966284,215,0 +170752966332,214,0 +170752966381,214,0 +170752966429,215,0 +170752966477,215,0 +170752966526,215,0 +170752966574,216,0 +170752966624,216,0 +170752966672,217,0 +170752966719,218,0 +170752966767,219,0 +170752966815,220,0 +170752966863,221,0 +170752966911,223,0 +170752966959,222,0 +170752967008,222,0 +170752967058,222,0 +170752967106,222,0 +170752967155,223,0 +170752967203,216,0 +170752967251,214,0 +170752967300,214,0 +170752967348,215,0 +170752967396,216,0 +170752967444,217,0 +170752967493,218,0 +170752967543,218,0 +170752967591,218,0 +170752967639,220,0 +170752967687,220,0 +170752967736,221,0 +170752967785,222,0 +170752967833,222,0 +170752967881,224,0 +170752967929,224,0 +170752967977,225,0 +170752968025,224,0 +170752968073,223,0 +170752968121,216,0 +170752968169,214,0 +170752968217,215,0 +170752968265,215,0 +170752968312,216,0 +170752968360,217,0 +170752968408,218,0 +170752968456,218,0 +170752968504,219,0 +170752968552,220,0 +170752968601,221,0 +170752968649,223,0 +170752968697,222,0 +170752968745,223,0 +170752968793,223,0 +170752968841,222,0 +170752968889,224,0 +170752968937,224,0 +170752968985,225,0 +170752969033,216,0 +170752969082,215,0 +170752969130,216,0 +170752969178,217,0 +170752969226,217,0 +170752969274,218,0 +170752969322,219,0 +170752969370,220,0 +170752969417,219,0 +170752969465,220,0 +170752969515,222,0 +170752969563,223,0 +170752969610,223,0 +170752969658,223,0 +170752969706,224,0 +170752969756,224,0 +170752969804,224,0 +170752969852,223,0 +170752969899,225,0 +170752969947,224,0 +170752969995,216,0 +170752970043,215,0 +170752970091,217,0 +170752970139,217,0 +170752970187,217,0 +170752970236,219,0 +170752970284,220,0 +170752970332,220,0 +170752970381,221,0 +170752970431,221,0 +170752970479,222,0 +170752970527,223,0 +170752970575,224,0 +170752970623,224,0 +170752970671,225,0 +170752970720,225,0 +170752970768,225,0 +170752970816,224,0 +170752970866,223,0 +170752970915,216,0 +170752970963,216,0 +170752971011,217,0 +170752971059,218,0 +170752971109,218,0 +170752971157,219,0 +170752971205,219,0 +170752971253,220,0 +170752971301,221,0 +170752971348,222,0 +170752971396,222,0 +170752971444,224,0 +170752971492,225,0 +170752971542,224,0 +170752971590,225,0 +170752971637,224,0 +170752971687,225,0 +170752971735,225,0 +170752971783,225,0 +170752971831,216,0 +170752971880,215,0 +170752971928,216,0 +170752971976,217,0 +170752972024,218,0 +170752972071,219,0 +170752972119,219,0 +170752972167,219,0 +170752972215,220,0 +170752972263,221,0 +170752972312,222,0 +170752972360,221,0 +170752972408,223,0 +170752972456,223,0 +170752972504,225,0 +170752972552,225,0 +170752972600,224,0 +170752972649,224,0 +170752972699,223,0 +170752972746,216,0 +170752972796,214,0 +170752972844,215,0 +170752972893,216,0 +170752972941,217,0 +170752972991,218,0 +170752973038,219,0 +170752973086,220,0 +170752973134,221,0 +170752973184,221,0 +170752973232,222,0 +170752973279,223,0 +170752973327,224,0 +170752973375,223,0 +170752973423,224,0 +170752973473,224,0 +170752973521,225,0 +170752973570,223,0 +170752973618,226,0 +170752973666,217,0 +170752973714,216,0 +170752973762,216,0 +170752973811,218,0 +170752973859,218,0 +170752973907,219,0 +170752973957,220,0 +170752974007,221,0 +170752974054,221,0 +170752974104,222,0 +170752974152,222,0 +170752974200,224,0 +170752974248,224,0 +170752974295,224,0 +170752974343,224,0 +170752974393,225,0 +170752974441,228,0 +170752974490,227,0 +170752974538,224,0 +170752974586,223,0 +170752974634,216,0 +170752974682,217,0 +170752974730,218,0 +170752974778,219,0 +170752974825,219,0 +170752974873,219,0 +170752974921,219,0 +170752974969,221,0 +170752975017,221,0 +170752975065,222,0 +170752975113,223,0 +170752975161,225,0 +170752975208,224,0 +170752975256,224,0 +170752975306,223,0 +170752975354,224,0 +170752975402,224,0 +170752975449,225,0 +170752975497,223,0 +170752975545,215,0 +170752975593,215,0 +170752975641,216,0 +170752975689,217,0 +170752975737,218,0 +170752975785,218,0 +170752975833,219,0 +170752975881,220,0 +170752975928,220,0 +170752975976,221,0 +170752976024,223,0 +170752976074,223,0 +170752976121,223,0 +170752976171,223,0 +170752976219,225,0 +170752976268,224,0 +170752976318,224,0 +170752976366,224,0 +170752976414,223,0 +170752976462,216,0 +170752976510,216,0 +170752976558,216,0 +170752976606,217,0 +170752976653,218,0 +170752976701,219,0 +170752976749,220,0 +170752976797,220,0 +170752976847,221,0 +170752976895,222,0 +170752976942,222,0 +170752976990,222,0 +170752977038,223,0 +170752977086,223,0 +170752977136,224,0 +170752977183,223,0 +170752977231,224,0 +170752977279,224,0 +170752977327,223,0 +170752977375,219,0 +170752977423,215,0 +170752977472,216,0 +170752977520,217,0 +170752977570,218,0 +170752977619,219,0 +170752977667,220,0 +170752977717,220,0 +170752977766,221,0 +170752977814,222,0 +170752977864,223,0 +170752977912,222,0 +170752977960,222,0 +170752978008,224,0 +170752978056,224,0 +170752978104,224,0 +170752978152,223,0 +170752978200,225,0 +170752978248,223,0 +170752978295,223,0 +170752978343,216,0 +170752978391,216,0 +170752978439,217,0 +170752978487,218,0 +170752978535,218,0 +170752978585,218,0 +170752978634,218,0 +170752978684,219,0 +170752978732,220,0 +170752978780,222,0 +170752978829,222,0 +170752978879,222,0 +170752978927,223,0 +170752978975,223,0 +170752979023,224,0 +170752979071,223,0 +170752979119,224,0 +170752979166,224,0 +170752979214,223,0 +170752979262,216,0 +170752979310,216,0 +170752979358,217,0 +170752979406,218,0 +170752979454,218,0 +170752979502,219,0 +170752979550,220,0 +170752979598,220,0 +170752979647,221,0 +170752979695,221,0 +170752979744,222,0 +170752979794,223,0 +170752979842,224,0 +170752979891,223,0 +170752979939,224,0 +170752979987,224,0 +170752980037,224,0 +170752980085,224,0 +170752980134,222,0 +170752980182,215,0 +170752980230,215,0 +170752980280,215,0 +170752980328,216,0 +170752980377,217,0 +170752980427,218,0 +170752980475,218,0 +170752980524,220,0 +170752980574,221,0 +170752980623,224,0 +170752980671,223,0 +170752980719,224,0 +170752980769,223,0 +170752980818,224,0 +170752980866,225,0 +170752980914,224,0 +170752980962,223,0 +170752981010,224,0 +170752981058,223,0 +170752981108,216,0 +170752981157,214,0 +170752981207,215,0 +170752981255,215,0 +170752981303,215,0 +170752981351,217,0 +170752981399,218,0 +170752981448,218,0 +170752981498,219,0 +170752981546,220,0 +170752981594,220,0 +170752981641,221,0 +170752981689,223,0 +170752981737,223,0 +170752981785,223,0 +170752981833,223,0 +170752981883,222,0 +170752981931,223,0 +170752981980,223,0 +170752982028,216,0 +170752982078,215,0 +170752982125,215,0 +170752982173,215,0 +170752982221,215,0 +170752982269,216,0 +170752982317,216,0 +170752982365,217,0 +170752982413,218,0 +170752982461,218,0 +170752982510,220,0 +170752982558,221,0 +170752982608,221,0 +170752982657,222,0 +170752982705,222,0 +170752982755,223,0 +170752982803,222,0 +170752982852,224,0 +170752982900,223,0 +170752982948,215,0 +170752982996,215,0 +170752983046,216,0 +170752983094,217,0 +170752983142,217,0 +170752983190,218,0 +170752983239,218,0 +170752983287,219,0 +170752983337,220,0 +170752983386,220,0 +170752983434,221,0 +170752983482,221,0 +170752983531,222,0 +170752983579,223,0 +170752983627,223,0 +170752983675,224,0 +170752983724,224,0 +170752983772,224,0 +170752983820,224,0 +170752983868,217,0 +170752983916,216,0 +170752983964,217,0 +170752984012,218,0 +170752984060,218,0 +170752984108,219,0 +170752984155,220,0 +170752984203,220,0 +170752984251,221,0 +170752984299,221,0 +170752984349,223,0 +170752984396,223,0 +170752984444,223,0 +170752984492,224,0 +170752984540,223,0 +170752984588,225,0 +170752984636,224,0 +170752984684,225,0 +170752984732,224,0 +170752984780,224,0 +170752984829,217,0 +170752984879,217,0 +170752984927,218,0 +170752984975,219,0 +170752985024,219,0 +170752985072,220,0 +170752985120,221,0 +170752985168,221,0 +170752985216,221,0 +170752985264,223,0 +170752985312,224,0 +170752985360,224,0 +170752985407,224,0 +170752985457,223,0 +170752985505,224,0 +170752985555,226,0 +170752985602,224,0 +170752985652,224,0 +170752985700,223,0 +170752985748,217,0 +170752985796,218,0 +170752985844,218,0 +170752985891,220,0 +170752985939,220,0 +170752985987,222,0 +170752986035,221,0 +170752986083,222,0 +170752986131,222,0 +170752986179,224,0 +170752986226,223,0 +170752986274,225,0 +170752986324,224,0 +170752986372,225,0 +170752986420,224,0 +170752986467,225,0 +170752986515,226,0 +170752986563,224,0 +170752986611,223,0 +170752986659,216,0 +170752986708,216,0 +170752986758,217,0 +170752986806,219,0 +170752986854,219,0 +170752986901,221,0 +170752986949,220,0 +170752986997,221,0 +170752987045,221,0 +170752987095,223,0 +170752987143,224,0 +170752987192,225,0 +170752987240,225,0 +170752987290,224,0 +170752987338,224,0 +170752987386,224,0 +170752987434,225,0 +170752987482,224,0 +170752987531,223,0 +170752987581,215,0 +170752987629,214,0 +170752987677,215,0 +170752987725,216,0 +170752987773,217,0 +170752987821,217,0 +170752987870,218,0 +170752987918,219,0 +170752987966,220,0 +170752988016,219,0 +170752988064,221,0 +170752988113,222,0 +170752988163,222,0 +170752988212,224,0 +170752988260,223,0 +170752988308,224,0 +170752988358,222,0 +170752988407,221,0 +170752988457,224,0 +170752988505,216,0 +170752988554,215,0 +170752988602,215,0 +170752988650,215,0 +170752988699,215,0 +170752988749,216,0 +170752988797,216,0 +170752988845,218,0 +170752988894,217,0 +170752988942,219,0 +170752988990,220,0 +170752989038,221,0 +170752989088,223,0 +170752989136,222,0 +170752989184,224,0 +170752989233,223,0 +170752989281,224,0 +170752989329,223,0 +170752989379,226,0 +170752989427,216,0 +170752989475,214,0 +170752989522,214,0 +170752989572,215,0 +170752989622,215,0 +170752989670,216,0 +170752989719,217,0 +170752989769,218,0 +170752989818,219,0 +170752989866,218,0 +170752989916,221,0 +170752989964,222,0 +170752990013,225,0 +170752990062,223,0 +170752990112,224,0 +170752990160,223,0 +170752990209,224,0 +170752990257,224,0 +170752990305,224,0 +170752990353,215,0 +170752990401,215,0 +170752990449,215,0 +170752990497,215,0 +170752990545,216,0 +170752990595,217,0 +170752990643,217,0 +170752990692,218,0 +170752990740,219,0 +170752990788,220,0 +170752990836,222,0 +170752990884,222,0 +170752990932,224,0 +170752990980,224,0 +170752991029,226,0 +170752991077,224,0 +170752991125,225,0 +170752991173,225,0 +170752991221,223,0 +170752991269,215,0 +170752991317,214,0 +170752991367,214,0 +170752991415,215,0 +170752991464,216,0 +170752991512,216,0 +170752991560,217,0 +170752991608,218,0 +170752991656,218,0 +170752991705,219,0 +170752991753,219,0 +170752991803,221,0 +170752991851,221,0 +170752991899,222,0 +170752991947,223,0 +170752991995,223,0 +170752992044,224,0 +170752992092,224,0 +170752992140,224,0 +170752992188,216,0 +170752992237,215,0 +170752992285,215,0 +170752992333,215,0 +170752992381,216,0 +170752992429,216,0 +170752992479,217,0 +170752992528,217,0 +170752992576,218,0 +170752992624,219,0 +170752992672,220,0 +170752992720,221,0 +170752992768,224,0 +170752992816,223,0 +170752992864,223,0 +170752992913,225,0 +170752992961,224,0 +170752993011,223,0 +170752993059,224,0 +170752993107,216,0 +170752993156,215,0 +170752993204,215,0 +170752993254,215,0 +170752993303,214,0 +170752993351,216,0 +170752993399,217,0 +170752993447,217,0 +170752993495,218,0 +170752993543,219,0 +170752993593,220,0 +170752993641,221,0 +170752993689,223,0 +170752993738,223,0 +170752993786,224,0 +170752993836,224,0 +170752993884,224,0 +170752993933,228,0 +170752993981,224,0 +170752994029,216,0 +170752994077,215,0 +170752994127,215,0 +170752994175,215,0 +170752994223,216,0 +170752994271,218,0 +170752994320,218,0 +170752994368,219,0 +170752994418,220,0 +170752994466,221,0 +170752994515,221,0 +170752994565,222,0 +170752994612,223,0 +170752994660,225,0 +170752994708,224,0 +170752994756,223,0 +170752994804,224,0 +170752994852,224,0 +170752994900,224,0 +170752994950,216,0 +170752994998,214,0 +170752995046,215,0 +170752995093,215,0 +170752995141,215,0 +170752995189,217,0 +170752995237,218,0 +170752995285,218,0 +170752995335,219,0 +170752995383,220,0 +170752995432,221,0 +170752995482,221,0 +170752995529,222,0 +170752995577,223,0 +170752995625,223,0 +170752995673,224,0 +170752995721,224,0 +170752995769,224,0 +170752995817,224,0 +170752995865,222,0 +170752995912,214,0 +170752995960,214,0 +170752996008,214,0 +170752996056,215,0 +170752996104,215,0 +170752996152,216,0 +170752996200,216,0 +170752996248,217,0 +170752996296,218,0 +170752996344,219,0 +170752996392,220,0 +170752996439,221,0 +170752996487,222,0 +170752996535,222,0 +170752996583,224,0 +170752996633,222,0 +170752996681,223,0 +170752996729,224,0 +170752996777,223,0 +170752996826,215,0 +170752996874,214,0 +170752996922,215,0 +170752996972,215,0 +170752997019,215,0 +170752997067,215,0 +170752997117,216,0 +170752997165,217,0 +170752997213,218,0 +170752997262,218,0 +170752997310,219,0 +170752997358,221,0 +170752997406,221,0 +170752997456,221,0 +170752997505,224,0 +170752997553,222,0 +170752997601,224,0 +170752997649,223,0 +170752997699,224,0 +170752997746,215,0 +170752997794,216,0 +170752997842,216,0 +170752997892,216,0 +170752997940,217,0 +170752997988,217,0 +170752998037,218,0 +170752998086,219,0 +170752998134,219,0 +170752998184,220,0 +170752998232,221,0 +170752998280,222,0 +170752998329,222,0 +170752998379,223,0 +170752998428,224,0 +170752998478,223,0 +170752998526,224,0 +170752998576,224,0 +170752998623,224,0 +170752998673,216,0 +170752998721,216,0 +170752998769,217,0 +170752998818,218,0 +170752998866,219,0 +170752998914,219,0 +170752998962,220,0 +170752999012,221,0 +170752999060,221,0 +170752999108,222,0 +170752999156,222,0 +170752999205,222,0 +170752999253,223,0 +170752999303,224,0 +170752999352,224,0 +170752999402,224,0 +170752999451,224,0 +170752999501,224,0 +170752999549,223,0 +170752999597,216,0 +170752999646,217,0 +170752999694,218,0 +170752999744,219,0 +170752999793,219,0 +170752999841,220,0 +170752999889,221,0 +170752999937,221,0 +170752999986,221,0 +170753000036,222,0 +170753000084,223,0 +170753000132,224,0 +170753000182,224,0 +170753000229,225,0 +170753000279,225,0 +170753000327,224,0 +170753000375,226,0 +170753000423,224,0 +170753000472,223,0 +170753000522,218,0 +170753000570,219,0 +170753000619,220,0 +170753000667,221,0 +170753000715,221,0 +170753000765,221,0 +170753000814,223,0 +170753000862,224,0 +170753000912,224,0 +170753000960,225,0 +170753001009,224,0 +170753001059,226,0 +170753001108,224,0 +170753001156,224,0 +170753001204,225,0 +170753001252,224,0 +170753001302,225,0 +170753001350,224,0 +170753001398,223,0 +170753001445,218,0 +170753001493,218,0 +170753001541,220,0 +170753001589,220,0 +170753001639,221,0 +170753001687,222,0 +170753001735,222,0 +170753001784,224,0 +170753001832,224,0 +170753001882,224,0 +170753001930,225,0 +170753001978,225,0 +170753002027,224,0 +170753002075,225,0 +170753002123,225,0 +170753002171,225,0 +170753002219,225,0 +170753002269,224,0 +170753002317,223,0 +170753002365,217,0 +170753002413,217,0 +170753002462,218,0 +170753002512,219,0 +170753002560,220,0 +170753002609,221,0 +170753002657,221,0 +170753002705,222,0 +170753002753,222,0 +170753002801,223,0 +170753002850,223,0 +170753002900,224,0 +170753002948,224,0 +170753002996,223,0 +170753003045,224,0 +170753003093,224,0 +170753003141,224,0 +170753003189,224,0 +170753003237,223,0 +170753003287,215,0 +170753003335,215,0 +170753003383,216,0 +170753003432,216,0 +170753003480,217,0 +170753003528,218,0 +170753003576,219,0 +170753003624,219,0 +170753003672,220,0 +170753003721,221,0 +170753003769,222,0 +170753003819,222,0 +170753003869,223,0 +170753003917,224,0 +170753003965,224,0 +170753004014,224,0 +170753004062,224,0 +170753004110,224,0 +170753004159,223,0 +170753004207,216,0 +170753004257,215,0 +170753004305,216,0 +170753004353,217,0 +170753004400,217,0 +170753004450,218,0 +170753004498,218,0 +170753004546,219,0 +170753004594,219,0 +170753004641,222,0 +170753004689,222,0 +170753004737,222,0 +170753004787,223,0 +170753004835,223,0 +170753004883,224,0 +170753004931,224,0 +170753004978,224,0 +170753005026,224,0 +170753005074,224,0 +170753005124,216,0 +170753005172,215,0 +170753005220,215,0 +170753005268,216,0 +170753005315,217,0 +170753005365,218,0 +170753005414,218,0 +170753005462,219,0 +170753005510,219,0 +170753005558,219,0 +170753005606,221,0 +170753005654,221,0 +170753005702,223,0 +170753005750,223,0 +170753005799,222,0 +170753005847,225,0 +170753005895,224,0 +170753005943,225,0 +170753005991,224,0 +170753006038,217,0 +170753006086,215,0 +170753006134,215,0 +170753006182,215,0 +170753006230,216,0 +170753006278,217,0 +170753006326,218,0 +170753006374,218,0 +170753006422,220,0 +170753006470,220,0 +170753006519,222,0 +170753006569,222,0 +170753006618,223,0 +170753006666,223,0 +170753006714,224,0 +170753006762,225,0 +170753006812,225,0 +170753006860,225,0 +170753006909,224,0 +170753006959,216,0 +170753007007,215,0 +170753007055,215,0 +170753007103,215,0 +170753007152,215,0 +170753007200,216,0 +170753007248,217,0 +170753007296,218,0 +170753007344,219,0 +170753007392,220,0 +170753007440,220,0 +170753007488,221,0 +170753007536,223,0 +170753007585,223,0 +170753007635,224,0 +170753007684,224,0 +170753007732,224,0 +170753007780,223,0 +170753007828,224,0 +170753007877,216,0 +170753007927,214,0 +170753007975,214,0 +170753008023,215,0 +170753008071,215,0 +170753008118,217,0 +170753008166,218,0 +170753008216,218,0 +170753008264,219,0 +170753008312,220,0 +170753008359,220,0 +170753008407,222,0 +170753008455,222,0 +170753008503,224,0 +170753008551,223,0 +170753008599,223,0 +170753008647,223,0 +170753008696,223,0 +170753008746,223,0 +170753008794,216,0 +170753008843,215,0 +170753008891,215,0 +170753008939,215,0 +170753008989,215,0 +170753009038,215,0 +170753009088,216,0 +170753009136,217,0 +170753009184,217,0 +170753009232,220,0 +170753009280,219,0 +170753009328,220,0 +170753009376,221,0 +170753009424,222,0 +170753009473,223,0 +170753009521,222,0 +170753009569,224,0 +170753009619,224,0 +170753009668,224,0 +170753009716,222,0 +170753009764,215,0 +170753009812,215,0 +170753009860,215,0 +170753009908,216,0 +170753009957,216,0 +170753010005,217,0 +170753010054,218,0 +170753010102,218,0 +170753010152,219,0 +170753010201,219,0 +170753010249,221,0 +170753010297,221,0 +170753010347,223,0 +170753010396,224,0 +170753010446,221,0 +170753010494,224,0 +170753010543,224,0 +170753010591,224,0 +170753010639,216,0 +170753010689,214,0 +170753010737,215,0 +170753010785,215,0 +170753010834,215,0 +170753010882,217,0 +170753010930,217,0 +170753010980,218,0 +170753011029,219,0 +170753011077,219,0 +170753011127,221,0 +170753011176,221,0 +170753011224,223,0 +170753011272,222,0 +170753011322,223,0 +170753011370,224,0 +170753011418,225,0 +170753011466,224,0 +170753011514,224,0 +170753011562,216,0 +170753011611,214,0 +170753011659,214,0 +170753011709,215,0 +170753011756,216,0 +170753011804,217,0 +170753011854,218,0 +170753011904,218,0 +170753011951,219,0 +170753011999,219,0 +170753012047,220,0 +170753012097,221,0 +170753012146,223,0 +170753012194,223,0 +170753012244,223,0 +170753012292,223,0 +170753012341,224,0 +170753012389,223,0 +170753012437,224,0 +170753012485,217,0 +170753012535,214,0 +170753012584,215,0 +170753012632,216,0 +170753012682,217,0 +170753012730,217,0 +170753012778,218,0 +170753012827,218,0 +170753012875,219,0 +170753012925,220,0 +170753012973,222,0 +170753013021,221,0 +170753013070,222,0 +170753013118,222,0 +170753013166,223,0 +170753013214,226,0 +170753013264,224,0 +170753013313,224,0 +170753013363,223,0 +170753013412,216,0 +170753013460,215,0 +170753013510,216,0 +170753013558,217,0 +170753013605,217,0 +170753013653,217,0 +170753013701,218,0 +170753013751,219,0 +170753013799,220,0 +170753013848,220,0 +170753013896,222,0 +170753013946,222,0 +170753013996,223,0 +170753014043,224,0 +170753014091,225,0 +170753014139,225,0 +170753014189,224,0 +170753014238,225,0 +170753014288,224,0 +170753014336,216,0 +170753014384,215,0 +170753014433,215,0 +170753014481,216,0 +170753014529,217,0 +170753014577,218,0 +170753014627,219,0 +170753014675,219,0 +170753014723,220,0 +170753014771,221,0 +170753014819,223,0 +170753014868,221,0 +170753014916,223,0 +170753014964,225,0 +170753015012,225,0 +170753015062,225,0 +170753015110,225,0 +170753015159,221,0 +170753015207,224,0 +170753015255,216,0 +170753015303,216,0 +170753015351,217,0 +170753015400,217,0 +170753015450,219,0 +170753015498,219,0 +170753015547,220,0 +170753015597,221,0 +170753015645,221,0 +170753015693,222,0 +170753015741,223,0 +170753015789,223,0 +170753015837,223,0 +170753015886,223,0 +170753015934,225,0 +170753015983,225,0 +170753016031,224,0 +170753016081,224,0 +170753016129,223,0 +170753016178,216,0 +170753016226,217,0 +170753016274,218,0 +170753016322,218,0 +170753016370,220,0 +170753016418,220,0 +170753016466,221,0 +170753016514,222,0 +170753016562,222,0 +170753016610,223,0 +170753016658,223,0 +170753016706,224,0 +170753016756,224,0 +170753016804,224,0 +170753016852,224,0 +170753016901,224,0 +170753016949,224,0 +170753016997,223,0 +170753017045,217,0 +170753017093,218,0 +170753017141,218,0 +170753017189,219,0 +170753017238,220,0 +170753017286,221,0 +170753017334,221,0 +170753017382,223,0 +170753017432,224,0 +170753017480,224,0 +170753017527,225,0 +170753017575,226,0 +170753017623,225,0 +170753017673,224,0 +170753017722,224,0 +170753017770,226,0 +170753017818,225,0 +170753017866,225,0 +170753017914,223,0 +170753017962,216,0 +170753018010,214,0 +170753018057,215,0 +170753018107,216,0 +170753018155,217,0 +170753018203,217,0 +170753018251,218,0 +170753018298,219,0 +170753018346,219,0 +170753018394,220,0 +170753018442,220,0 +170753018490,222,0 +170753018538,224,0 +170753018586,223,0 +170753018633,223,0 +170753018681,223,0 +170753018729,224,0 +170753018777,224,0 +170753018825,225,0 +170753018873,216,0 +170753018923,214,0 +170753018972,214,0 +170753019022,214,0 +170753019070,215,0 +170753019119,215,0 +170753019169,215,0 +170753019218,215,0 +170753019266,215,0 +170753019316,216,0 +170753019365,218,0 +170753019413,219,0 +170753019462,219,0 +170753019512,220,0 +170753019562,221,0 +170753019609,222,0 +170753019659,224,0 +170753019707,223,0 +170753019755,224,0 +170753019804,215,0 +170753019852,215,0 +170753019900,215,0 +170753019948,215,0 +170753019998,216,0 +170753020046,217,0 +170753020095,218,0 +170753020143,219,0 +170753020193,219,0 +170753020241,220,0 +170753020289,221,0 +170753020337,221,0 +170753020385,223,0 +170753020432,222,0 +170753020482,223,0 +170753020532,223,0 +170753020581,224,0 +170753020629,224,0 +170753020677,218,0 +170753020727,215,0 +170753020775,215,0 +170753020823,216,0 +170753020870,217,0 +170753020918,218,0 +170753020968,218,0 +170753021017,218,0 +170753021065,220,0 +170753021115,220,0 +170753021163,221,0 +170753021211,222,0 +170753021259,223,0 +170753021306,224,0 +170753021354,224,0 +170753021404,225,0 +170753021452,224,0 +170753021500,224,0 +170753021548,224,0 +170753021595,217,0 +170753021643,215,0 +170753021691,216,0 +170753021739,217,0 +170753021787,218,0 +170753021835,218,0 +170753021883,219,0 +170753021931,219,0 +170753021979,220,0 +170753022028,222,0 +170753022078,221,0 +170753022127,224,0 +170753022175,222,0 +170753022225,225,0 +170753022274,224,0 +170753022322,225,0 +170753022370,224,0 +170753022418,224,0 +170753022466,224,0 +170753022514,216,0 +170753022563,215,0 +170753022611,216,0 +170753022659,217,0 +170753022707,218,0 +170753022755,219,0 +170753022805,220,0 +170753022853,220,0 +170753022901,220,0 +170753022949,222,0 +170753022998,223,0 +170753023048,224,0 +170753023097,224,0 +170753023145,224,0 +170753023193,225,0 +170753023241,224,0 +170753023289,224,0 +170753023337,224,0 +170753023387,223,0 +170753023434,215,0 +170753023484,215,0 +170753023532,215,0 +170753023580,215,0 +170753023629,216,0 +170753023677,217,0 +170753023727,218,0 +170753023775,218,0 +170753023823,220,0 +170753023871,221,0 +170753023919,221,0 +170753023967,222,0 +170753024015,223,0 +170753024064,225,0 +170753024112,224,0 +170753024160,225,0 +170753024208,223,0 +170753024257,225,0 +170753024307,222,0 +170753024356,215,0 +170753024405,215,0 +170753024452,215,0 +170753024500,215,0 +170753024548,215,0 +170753024596,216,0 +170753024646,217,0 +170753024694,218,0 +170753024743,219,0 +170753024791,220,0 +170753024841,220,0 +170753024889,222,0 +170753024938,223,0 +170753024988,224,0 +170753025037,223,0 +170753025085,224,0 +170753025135,223,0 +170753025183,225,0 +170753025232,216,0 +170753025280,215,0 +170753025328,215,0 +170753025378,215,0 +170753025426,216,0 +170753025474,216,0 +170753025523,216,0 +170753025573,217,0 +170753025622,218,0 +170753025672,218,0 +170753025720,219,0 +170753025769,222,0 +170753025817,222,0 +170753025867,222,0 +170753025916,224,0 +170753025966,223,0 +170753026014,225,0 +170753026063,226,0 +170753026113,223,0 +170753026161,215,0 +170753026209,215,0 +170753026257,216,0 +170753026306,216,0 +170753026356,218,0 +170753026405,219,0 +170753026453,219,0 +170753026501,220,0 +170753026549,220,0 +170753026597,221,0 +170753026645,222,0 +170753026693,221,0 +170753026743,223,0 +170753026791,224,0 +170753026839,224,0 +170753026887,224,0 +170753026936,224,0 +170753026985,225,0 +170753027033,217,0 +170753027081,217,0 +170753027129,217,0 +170753027177,219,0 +170753027225,219,0 +170753027273,221,0 +170753027323,221,0 +170753027371,222,0 +170753027418,222,0 +170753027466,223,0 +170753027514,224,0 +170753027564,224,0 +170753027613,225,0 +170753027661,225,0 +170753027709,225,0 +170753027757,225,0 +170753027807,225,0 +170753027856,224,0 +170753027904,224,0 +170753027952,218,0 +170753028002,217,0 +170753028050,218,0 +170753028098,219,0 +170753028147,220,0 +170753028195,221,0 +170753028244,222,0 +170753028292,222,0 +170753028340,222,0 +170753028388,223,0 +170753028438,223,0 +170753028487,224,0 +170753028535,224,0 +170753028583,224,0 +170753028633,225,0 +170753028681,225,0 +170753028729,225,0 +170753028778,225,0 +170753028826,224,0 +170753028874,219,0 +170753028922,218,0 +170753028972,220,0 +170753029021,220,0 +170753029069,221,0 +170753029119,221,0 +170753029168,223,0 +170753029218,223,0 +170753029266,224,0 +170753029313,223,0 +170753029361,224,0 +170753029409,224,0 +170753029457,225,0 +170753029505,225,0 +170753029553,224,0 +170753029601,224,0 +170753029649,224,0 +170753029697,223,0 +170753029745,220,0 +170753029792,217,0 +170753029840,218,0 +170753029888,218,0 +170753029936,220,0 +170753029984,221,0 +170753030032,222,0 +170753030080,223,0 +170753030128,223,0 +170753030175,223,0 +170753030225,223,0 +170753030273,224,0 +170753030322,225,0 +170753030372,224,0 +170753030421,225,0 +170753030469,224,0 +170753030519,224,0 +170753030567,224,0 +170753030615,223,0 +170753030663,216,0 +170753030711,216,0 +170753030759,217,0 +170753030807,218,0 +170753030856,218,0 +170753030904,221,0 +170753030952,220,0 +170753031000,221,0 +170753031048,220,0 +170753031096,222,0 +170753031144,223,0 +170753031192,224,0 +170753031240,224,0 +170753031288,224,0 +170753031337,224,0 +170753031385,225,0 +170753031433,224,0 +170753031483,224,0 +170753031531,224,0 +170753031579,216,0 +170753031627,215,0 +170753031676,215,0 +170753031724,217,0 +170753031774,216,0 +170753031823,217,0 +170753031873,218,0 +170753031921,219,0 +170753031970,220,0 +170753032020,221,0 +170753032068,221,0 +170753032116,221,0 +170753032164,223,0 +170753032212,224,0 +170753032261,224,0 +170753032309,223,0 +170753032357,224,0 +170753032405,225,0 +170753032455,224,0 +170753032503,216,0 +170753032551,215,0 +170753032599,216,0 +170753032647,217,0 +170753032696,217,0 +170753032746,218,0 +170753032794,219,0 +170753032843,219,0 +170753032893,220,0 +170753032941,221,0 +170753032989,222,0 +170753033037,222,0 +170753033084,224,0 +170753033132,223,0 +170753033180,224,0 +170753033228,225,0 +170753033276,225,0 +170753033324,225,0 +170753033374,222,0 +170753033422,215,0 +170753033470,215,0 +170753033518,217,0 +170753033567,217,0 +170753033615,216,0 +170753033665,218,0 +170753033714,219,0 +170753033764,220,0 +170753033813,220,0 +170753033861,221,0 +170753033909,222,0 +170753033959,223,0 +170753034008,224,0 +170753034056,223,0 +170753034104,224,0 +170753034152,224,0 +170753034200,224,0 +170753034248,224,0 +170753034296,217,0 +170753034344,216,0 +170753034392,217,0 +170753034442,218,0 +170753034489,220,0 +170753034537,220,0 +170753034587,222,0 +170753034635,221,0 +170753034683,223,0 +170753034731,222,0 +170753034780,223,0 +170753034828,224,0 +170753034876,224,0 +170753034924,225,0 +170753034974,224,0 +170753035023,226,0 +170753035071,224,0 +170753035119,224,0 +170753035167,222,0 +170753035215,218,0 +170753035263,217,0 +170753035312,218,0 +170753035362,219,0 +170753035410,219,0 +170753035459,220,0 +170753035509,221,0 +170753035557,222,0 +170753035605,224,0 +170753035654,223,0 +170753035702,223,0 +170753035750,224,0 +170753035798,223,0 +170753035846,223,0 +170753035894,224,0 +170753035942,225,0 +170753035990,224,0 +170753036038,224,0 +170753036086,223,0 +170753036135,215,0 +170753036183,214,0 +170753036231,215,0 +170753036281,216,0 +170753036329,216,0 +170753036377,218,0 +170753036425,220,0 +170753036473,220,0 +170753036521,219,0 +170753036569,221,0 +170753036617,222,0 +170753036665,222,0 +170753036713,222,0 +170753036761,223,0 +170753036809,224,0 +170753036857,224,0 +170753036906,222,0 +170753036956,223,0 +170753037003,220,0 +170753037051,214,0 +170753037101,214,0 +170753037149,215,0 +170753037198,215,0 +170753037246,215,0 +170753037294,216,0 +170753037344,216,0 +170753037394,216,0 +170753037441,217,0 +170753037489,218,0 +170753037539,220,0 +170753037587,220,0 +170753037635,220,0 +170753037683,221,0 +170753037732,222,0 +170753037780,223,0 +170753037828,222,0 +170753037878,224,0 +170753037927,216,0 +170753037975,214,0 +170753038023,215,0 +170753038073,214,0 +170753038121,215,0 +170753038169,215,0 +170753038218,215,0 +170753038266,216,0 +170753038314,217,0 +170753038364,218,0 +170753038412,219,0 +170753038461,220,0 +170753038509,220,0 +170753038557,221,0 +170753038607,221,0 +170753038656,223,0 +170753038704,223,0 +170753038754,223,0 +170753038803,223,0 +170753038853,215,0 +170753038901,214,0 +170753038949,215,0 +170753038998,215,0 +170753039048,215,0 +170753039096,215,0 +170753039144,215,0 +170753039192,215,0 +170753039240,215,0 +170753039289,216,0 +170753039337,216,0 +170753039387,218,0 +170753039436,219,0 +170753039484,219,0 +170753039532,220,0 +170753039582,220,0 +170753039630,222,0 +170753039678,223,0 +170753039726,218,0 +170753039774,215,0 +170753039821,215,0 +170753039871,215,0 +170753039921,215,0 +170753039970,216,0 +170753040018,216,0 diff --git a/laser_value/0210-12.csv b/laser_value/0210-12.csv new file mode 100644 index 0000000..c64e0ba --- /dev/null +++ b/laser_value/0210-12.csv @@ -0,0 +1,7434 @@ +timestamp,laser_value,event +170753040067,216,0 +170753040116,216,0 +170753040164,217,0 +170753040213,218,0 +170753040263,218,0 +170753040311,219,0 +170753040361,220,0 +170753040410,221,0 +170753040458,222,0 +170753040506,221,0 +170753040555,222,0 +170753040603,221,0 +170753040651,223,0 +170753040701,224,0 +170753040749,225,0 +170753040797,226,0 +170753040845,224,0 +170753040893,224,0 +170753040942,227,0 +170753040990,226,0 +170753041038,224,0 +170753041086,217,0 +170753041134,215,0 +170753041182,216,0 +170753041232,217,0 +170753041280,218,0 +170753041328,219,0 +170753041377,220,0 +170753041425,221,0 +170753041473,221,0 +170753041523,222,0 +170753041571,225,0 +170753041618,224,0 +170753041666,224,0 +170753041714,224,0 +170753041762,224,0 +170753041810,225,0 +170753041860,224,0 +170753041909,224,0 +170753041959,225,0 +170753042007,216,0 +170753042055,215,0 +170753042103,216,0 +170753042151,217,0 +170753042198,218,0 +170753042246,219,0 +170753042294,220,0 +170753042342,219,0 +170753042390,221,0 +170753042439,221,0 +170753042489,222,0 +170753042537,222,0 +170753042585,223,0 +170753042633,222,0 +170753042680,224,0 +170753042728,224,0 +170753042778,224,0 +170753042826,224,0 +170753042873,223,0 +170753042921,216,0 +170753042969,215,0 +170753043017,216,0 +170753043065,217,0 +170753043113,218,0 +170753043161,218,0 +170753043209,218,0 +170753043258,220,0 +170753043308,220,0 +170753043356,222,0 +170753043405,222,0 +170753043455,222,0 +170753043503,224,0 +170753043551,224,0 +170753043599,224,0 +170753043647,224,0 +170753043696,224,0 +170753043744,224,0 +170753043792,222,0 +170753043842,216,0 +170753043890,216,0 +170753043938,217,0 +170753043987,218,0 +170753044035,219,0 +170753044083,220,0 +170753044131,220,0 +170753044179,220,0 +170753044227,221,0 +170753044275,222,0 +170753044322,223,0 +170753044370,223,0 +170753044418,224,0 +170753044466,224,0 +170753044515,224,0 +170753044563,225,0 +170753044613,224,0 +170753044661,224,0 +170753044709,221,0 +170753044757,216,0 +170753044804,217,0 +170753044852,218,0 +170753044900,219,0 +170753044948,219,0 +170753044996,220,0 +170753045046,221,0 +170753045095,221,0 +170753045143,222,0 +170753045192,223,0 +170753045240,224,0 +170753045288,224,0 +170753045336,224,0 +170753045386,224,0 +170753045434,224,0 +170753045481,225,0 +170753045529,225,0 +170753045577,224,0 +170753045625,216,0 +170753045673,215,0 +170753045721,216,0 +170753045769,217,0 +170753045817,218,0 +170753045865,219,0 +170753045915,220,0 +170753045964,220,0 +170753046014,221,0 +170753046063,221,0 +170753046111,222,0 +170753046159,223,0 +170753046207,224,0 +170753046255,224,0 +170753046303,224,0 +170753046351,225,0 +170753046400,224,0 +170753046450,225,0 +170753046498,224,0 +170753046546,216,0 +170753046594,215,0 +170753046643,216,0 +170753046691,217,0 +170753046741,218,0 +170753046790,218,0 +170753046838,219,0 +170753046888,220,0 +170753046936,221,0 +170753046985,222,0 +170753047035,221,0 +170753047084,223,0 +170753047132,222,0 +170753047180,222,0 +170753047228,223,0 +170753047276,222,0 +170753047325,223,0 +170753047375,223,0 +170753047423,223,0 +170753047471,215,0 +170753047519,215,0 +170753047567,215,0 +170753047615,216,0 +170753047662,217,0 +170753047710,217,0 +170753047760,218,0 +170753047810,219,0 +170753047858,220,0 +170753047907,220,0 +170753047955,222,0 +170753048003,222,0 +170753048052,223,0 +170753048102,223,0 +170753048150,224,0 +170753048198,225,0 +170753048247,226,0 +170753048297,224,0 +170753048346,217,0 +170753048394,215,0 +170753048442,214,0 +170753048492,214,0 +170753048541,217,0 +170753048591,218,0 +170753048639,218,0 +170753048688,219,0 +170753048736,220,0 +170753048784,221,0 +170753048832,222,0 +170753048882,223,0 +170753048930,223,0 +170753048979,224,0 +170753049027,224,0 +170753049077,224,0 +170753049124,224,0 +170753049172,225,0 +170753049222,223,0 +170753049271,216,0 +170753049319,215,0 +170753049369,216,0 +170753049417,217,0 +170753049466,217,0 +170753049514,218,0 +170753049564,218,0 +170753049612,219,0 +170753049660,220,0 +170753049709,222,0 +170753049759,223,0 +170753049808,225,0 +170753049858,224,0 +170753049906,224,0 +170753049954,225,0 +170753050002,224,0 +170753050050,225,0 +170753050099,224,0 +170753050147,219,0 +170753050197,215,0 +170753050245,215,0 +170753050294,217,0 +170753050342,218,0 +170753050392,218,0 +170753050439,219,0 +170753050487,219,0 +170753050535,220,0 +170753050583,221,0 +170753050633,222,0 +170753050681,222,0 +170753050730,223,0 +170753050778,223,0 +170753050826,223,0 +170753050874,224,0 +170753050924,224,0 +170753050972,224,0 +170753051020,224,0 +170753051069,217,0 +170753051117,215,0 +170753051165,215,0 +170753051214,216,0 +170753051262,218,0 +170753051310,217,0 +170753051358,218,0 +170753051408,219,0 +170753051456,221,0 +170753051504,221,0 +170753051552,223,0 +170753051601,223,0 +170753051649,224,0 +170753051699,223,0 +170753051747,224,0 +170753051795,225,0 +170753051844,225,0 +170753051892,224,0 +170753051940,224,0 +170753051988,216,0 +170753052036,215,0 +170753052084,216,0 +170753052132,218,0 +170753052181,219,0 +170753052229,220,0 +170753052277,221,0 +170753052327,221,0 +170753052375,222,0 +170753052423,223,0 +170753052472,223,0 +170753052520,224,0 +170753052570,224,0 +170753052617,223,0 +170753052667,223,0 +170753052715,224,0 +170753052763,223,0 +170753052811,224,0 +170753052859,217,0 +170753052908,215,0 +170753052958,216,0 +170753053006,217,0 +170753053055,219,0 +170753053103,220,0 +170753053151,220,0 +170753053199,221,0 +170753053249,221,0 +170753053298,222,0 +170753053346,223,0 +170753053396,223,0 +170753053443,223,0 +170753053491,225,0 +170753053541,223,0 +170753053590,224,0 +170753053638,224,0 +170753053686,224,0 +170753053734,223,0 +170753053783,215,0 +170753053833,219,0 +170753053881,220,0 +170753053929,221,0 +170753053977,221,0 +170753054025,221,0 +170753054073,222,0 +170753054122,222,0 +170753054171,225,0 +170753054219,224,0 +170753054267,224,0 +170753054315,224,0 +170753054363,225,0 +170753054411,224,0 +170753054459,224,0 +170753054507,225,0 +170753054554,225,0 +170753054602,225,0 +170753054650,223,0 +170753054700,216,0 +170753054748,215,0 +170753054796,216,0 +170753054843,217,0 +170753054891,217,0 +170753054939,218,0 +170753054987,219,0 +170753055035,219,0 +170753055083,219,0 +170753055131,221,0 +170753055179,221,0 +170753055227,222,0 +170753055274,223,0 +170753055322,224,0 +170753055370,225,0 +170753055418,224,0 +170753055466,224,0 +170753055514,225,0 +170753055562,224,0 +170753055610,214,0 +170753055658,214,0 +170753055706,214,0 +170753055754,214,0 +170753055802,215,0 +170753055849,216,0 +170753055897,215,0 +170753055945,215,0 +170753055993,216,0 +170753056041,217,0 +170753056089,218,0 +170753056137,220,0 +170753056185,220,0 +170753056233,220,0 +170753056280,221,0 +170753056330,221,0 +170753056378,224,0 +170753056426,223,0 +170753056474,216,0 +170753056521,215,0 +170753056569,215,0 +170753056617,216,0 +170753056665,217,0 +170753056713,218,0 +170753056761,218,0 +170753056809,219,0 +170753056857,219,0 +170753056905,220,0 +170753056952,218,0 +170753057000,221,0 +170753057048,221,0 +170753057096,222,0 +170753057144,223,0 +170753057192,224,0 +170753057240,223,0 +170753057288,224,0 +170753057336,224,0 +170753057384,216,0 +170753057432,215,0 +170753057481,216,0 +170753057529,218,0 +170753057577,218,0 +170753057625,219,0 +170753057674,218,0 +170753057722,220,0 +170753057772,222,0 +170753057821,223,0 +170753057869,223,0 +170753057917,224,0 +170753057967,223,0 +170753058016,222,0 +170753058064,224,0 +170753058113,224,0 +170753058163,224,0 +170753058211,224,0 +170753058261,224,0 +170753058309,218,0 +170753058358,217,0 +170753058406,218,0 +170753058454,219,0 +170753058504,219,0 +170753058552,221,0 +170753058600,221,0 +170753058647,221,0 +170753058697,221,0 +170753058745,222,0 +170753058794,222,0 +170753058844,224,0 +170753058892,224,0 +170753058940,224,0 +170753058988,225,0 +170753059036,224,0 +170753059085,224,0 +170753059133,224,0 +170753059181,221,0 +170753059229,218,0 +170753059279,219,0 +170753059328,220,0 +170753059376,220,0 +170753059424,222,0 +170753059472,222,0 +170753059520,224,0 +170753059569,224,0 +170753059617,223,0 +170753059665,224,0 +170753059715,226,0 +170753059764,225,0 +170753059814,226,0 +170753059862,224,0 +170753059910,224,0 +170753059958,225,0 +170753060006,224,0 +170753060055,223,0 +170753060103,218,0 +170753060151,218,0 +170753060200,219,0 +170753060248,220,0 +170753060296,221,0 +170753060346,221,0 +170753060395,222,0 +170753060443,223,0 +170753060493,223,0 +170753060541,225,0 +170753060590,223,0 +170753060638,224,0 +170753060686,226,0 +170753060734,226,0 +170753060784,225,0 +170753060832,224,0 +170753060881,225,0 +170753060929,225,0 +170753060977,224,0 +170753061025,216,0 +170753061075,215,0 +170753061124,215,0 +170753061172,216,0 +170753061222,217,0 +170753061271,218,0 +170753061319,220,0 +170753061367,218,0 +170753061415,220,0 +170753061463,222,0 +170753061511,221,0 +170753061559,222,0 +170753061607,224,0 +170753061656,224,0 +170753061704,224,0 +170753061754,223,0 +170753061802,225,0 +170753061850,224,0 +170753061899,217,0 +170753061947,214,0 +170753061995,215,0 +170753062045,215,0 +170753062093,215,0 +170753062141,215,0 +170753062189,216,0 +170753062237,217,0 +170753062286,217,0 +170753062334,222,0 +170753062382,219,0 +170753062430,221,0 +170753062478,221,0 +170753062526,222,0 +170753062575,222,0 +170753062623,223,0 +170753062673,222,0 +170753062721,224,0 +170753062770,224,0 +170753062820,216,0 +170753062869,215,0 +170753062917,216,0 +170753062967,217,0 +170753063016,217,0 +170753063064,219,0 +170753063112,219,0 +170753063160,220,0 +170753063208,221,0 +170753063256,221,0 +170753063306,222,0 +170753063355,222,0 +170753063403,224,0 +170753063451,224,0 +170753063499,224,0 +170753063549,224,0 +170753063598,225,0 +170753063648,224,0 +170753063697,216,0 +170753063745,214,0 +170753063795,214,0 +170753063843,216,0 +170753063892,215,0 +170753063940,216,0 +170753063988,217,0 +170753064036,217,0 +170753064086,219,0 +170753064134,220,0 +170753064183,222,0 +170753064233,222,0 +170753064281,223,0 +170753064330,224,0 +170753064378,223,0 +170753064428,224,0 +170753064477,224,0 +170753064527,224,0 +170753064575,223,0 +170753064623,216,0 +170753064671,215,0 +170753064719,215,0 +170753064768,215,0 +170753064816,216,0 +170753064864,217,0 +170753064912,218,0 +170753064960,218,0 +170753065007,219,0 +170753065057,221,0 +170753065105,221,0 +170753065153,222,0 +170753065201,221,0 +170753065249,223,0 +170753065297,223,0 +170753065346,224,0 +170753065394,224,0 +170753065443,224,0 +170753065493,222,0 +170753065541,214,0 +170753065589,215,0 +170753065638,215,0 +170753065686,215,0 +170753065734,216,0 +170753065782,218,0 +170753065830,218,0 +170753065878,219,0 +170753065926,220,0 +170753065976,220,0 +170753066023,221,0 +170753066073,224,0 +170753066122,223,0 +170753066170,224,0 +170753066220,224,0 +170753066268,224,0 +170753066316,224,0 +170753066365,223,0 +170753066413,216,0 +170753066461,215,0 +170753066509,215,0 +170753066559,215,0 +170753066607,216,0 +170753066655,217,0 +170753066704,219,0 +170753066752,220,0 +170753066800,219,0 +170753066848,220,0 +170753066898,222,0 +170753066946,222,0 +170753066995,224,0 +170753067043,223,0 +170753067091,224,0 +170753067139,223,0 +170753067187,224,0 +170753067235,223,0 +170753067283,224,0 +170753067332,215,0 +170753067380,215,0 +170753067428,216,0 +170753067476,216,0 +170753067524,217,0 +170753067572,218,0 +170753067620,218,0 +170753067668,218,0 +170753067716,220,0 +170753067766,221,0 +170753067814,223,0 +170753067862,222,0 +170753067910,223,0 +170753067958,224,0 +170753068006,224,0 +170753068054,224,0 +170753068101,224,0 +170753068151,224,0 +170753068199,224,0 +170753068248,215,0 +170753068298,215,0 +170753068346,215,0 +170753068395,215,0 +170753068443,216,0 +170753068493,217,0 +170753068541,217,0 +170753068589,218,0 +170753068637,218,0 +170753068685,219,0 +170753068733,222,0 +170753068782,221,0 +170753068832,222,0 +170753068880,222,0 +170753068928,222,0 +170753068977,221,0 +170753069027,224,0 +170753069076,223,0 +170753069126,216,0 +170753069175,214,0 +170753069225,214,0 +170753069273,215,0 +170753069321,215,0 +170753069370,216,0 +170753069418,215,0 +170753069466,216,0 +170753069514,217,0 +170753069562,218,0 +170753069610,219,0 +170753069658,220,0 +170753069706,221,0 +170753069754,222,0 +170753069803,222,0 +170753069851,224,0 +170753069901,225,0 +170753069949,223,0 +170753069997,216,0 +170753070045,215,0 +170753070093,214,0 +170753070141,215,0 +170753070189,215,0 +170753070237,215,0 +170753070285,215,0 +170753070333,216,0 +170753070380,218,0 +170753070428,219,0 +170753070476,218,0 +170753070524,220,0 +170753070572,220,0 +170753070620,221,0 +170753070668,221,0 +170753070716,222,0 +170753070764,224,0 +170753070812,223,0 +170753070860,219,0 +170753070908,215,0 +170753070956,215,0 +170753071003,215,0 +170753071053,216,0 +170753071101,217,0 +170753071149,218,0 +170753071197,219,0 +170753071244,220,0 +170753071292,222,0 +170753071340,221,0 +170753071388,222,0 +170753071436,224,0 +170753071485,223,0 +170753071535,224,0 +170753071584,224,0 +170753071632,224,0 +170753071680,224,0 +170753071728,223,0 +170753071778,218,0 +170753071826,218,0 +170753071874,219,0 +170753071922,220,0 +170753071971,221,0 +170753072019,221,0 +170753072067,222,0 +170753072117,223,0 +170753072165,223,0 +170753072213,224,0 +170753072262,224,0 +170753072310,224,0 +170753072358,224,0 +170753072406,225,0 +170753072454,224,0 +170753072502,224,0 +170753072550,225,0 +170753072598,224,0 +170753072646,218,0 +170753072693,219,0 +170753072741,219,0 +170753072789,220,0 +170753072839,221,0 +170753072888,223,0 +170753072938,222,0 +170753072986,223,0 +170753073034,222,0 +170753073082,224,0 +170753073130,225,0 +170753073178,225,0 +170753073227,225,0 +170753073275,224,0 +170753073323,225,0 +170753073373,226,0 +170753073421,225,0 +170753073469,223,0 +170753073517,218,0 +170753073565,217,0 +170753073613,218,0 +170753073661,219,0 +170753073709,219,0 +170753073756,220,0 +170753073806,221,0 +170753073854,223,0 +170753073903,223,0 +170753073951,223,0 +170753073999,223,0 +170753074047,225,0 +170753074095,224,0 +170753074143,225,0 +170753074191,225,0 +170753074241,225,0 +170753074290,220,0 +170753074340,223,0 +170753074388,217,0 +170753074435,217,0 +170753074483,217,0 +170753074531,218,0 +170753074581,220,0 +170753074630,220,0 +170753074678,220,0 +170753074726,221,0 +170753074776,221,0 +170753074824,223,0 +170753074872,224,0 +170753074920,223,0 +170753074969,225,0 +170753075017,224,0 +170753075065,224,0 +170753075113,224,0 +170753075162,224,0 +170753075210,226,0 +170753075260,217,0 +170753075308,216,0 +170753075356,216,0 +170753075404,218,0 +170753075452,218,0 +170753075500,219,0 +170753075549,220,0 +170753075599,220,0 +170753075647,221,0 +170753075695,221,0 +170753075744,223,0 +170753075792,223,0 +170753075840,223,0 +170753075890,223,0 +170753075937,225,0 +170753075985,226,0 +170753076035,224,0 +170753076083,224,0 +170753076132,223,0 +170753076182,217,0 +170753076230,217,0 +170753076279,218,0 +170753076327,220,0 +170753076375,221,0 +170753076425,221,0 +170753076474,220,0 +170753076524,221,0 +170753076573,222,0 +170753076623,222,0 +170753076671,223,0 +170753076719,224,0 +170753076767,224,0 +170753076816,223,0 +170753076864,224,0 +170753076912,223,0 +170753076960,225,0 +170753077008,223,0 +170753077056,217,0 +170753077106,219,0 +170753077155,219,0 +170753077203,220,0 +170753077251,221,0 +170753077299,221,0 +170753077348,223,0 +170753077396,222,0 +170753077444,224,0 +170753077492,223,0 +170753077540,224,0 +170753077588,225,0 +170753077636,225,0 +170753077685,224,0 +170753077733,225,0 +170753077783,224,0 +170753077831,224,0 +170753077879,223,0 +170753077926,215,0 +170753077976,216,0 +170753078026,217,0 +170753078075,218,0 +170753078123,219,0 +170753078172,220,0 +170753078220,221,0 +170753078268,221,0 +170753078316,222,0 +170753078364,222,0 +170753078414,224,0 +170753078462,224,0 +170753078510,225,0 +170753078558,225,0 +170753078606,225,0 +170753078654,225,0 +170753078703,224,0 +170753078751,223,0 +170753078799,216,0 +170753078847,215,0 +170753078897,216,0 +170753078945,217,0 +170753078993,218,0 +170753079040,219,0 +170753079088,219,0 +170753079136,220,0 +170753079184,222,0 +170753079232,222,0 +170753079280,222,0 +170753079328,224,0 +170753079376,225,0 +170753079424,225,0 +170753079472,223,0 +170753079520,220,0 +170753079568,224,0 +170753079618,224,0 +170753079665,216,0 +170753079715,215,0 +170753079763,215,0 +170753079811,216,0 +170753079859,217,0 +170753079907,218,0 +170753079956,219,0 +170753080004,219,0 +170753080054,220,0 +170753080102,222,0 +170753080151,223,0 +170753080199,226,0 +170753080249,223,0 +170753080296,224,0 +170753080344,224,0 +170753080392,225,0 +170753080440,224,0 +170753080490,224,0 +170753080538,222,0 +170753080587,215,0 +170753080635,215,0 +170753080685,215,0 +170753080732,215,0 +170753080782,216,0 +170753080830,217,0 +170753080878,217,0 +170753080926,219,0 +170753080974,220,0 +170753081021,222,0 +170753081069,223,0 +170753081117,223,0 +170753081165,223,0 +170753081213,224,0 +170753081261,224,0 +170753081310,224,0 +170753081358,224,0 +170753081406,223,0 +170753081454,215,0 +170753081502,216,0 +170753081550,215,0 +170753081598,216,0 +170753081647,217,0 +170753081695,218,0 +170753081743,218,0 +170753081791,219,0 +170753081841,221,0 +170753081890,221,0 +170753081938,222,0 +170753081986,222,0 +170753082034,224,0 +170753082082,223,0 +170753082130,225,0 +170753082177,224,0 +170753082225,224,0 +170753082273,221,0 +170753082321,216,0 +170753082369,216,0 +170753082417,216,0 +170753082465,217,0 +170753082513,217,0 +170753082561,218,0 +170753082608,219,0 +170753082656,219,0 +170753082704,220,0 +170753082752,221,0 +170753082800,222,0 +170753082848,222,0 +170753082898,222,0 +170753082945,224,0 +170753082993,223,0 +170753083043,224,0 +170753083092,225,0 +170753083140,224,0 +170753083190,216,0 +170753083238,215,0 +170753083287,215,0 +170753083335,215,0 +170753083383,215,0 +170753083432,216,0 +170753083480,217,0 +170753083528,218,0 +170753083576,219,0 +170753083624,221,0 +170753083672,222,0 +170753083721,221,0 +170753083769,223,0 +170753083817,223,0 +170753083865,224,0 +170753083913,223,0 +170753083961,224,0 +170753084011,223,0 +170753084059,216,0 +170753084107,214,0 +170753084154,215,0 +170753084202,215,0 +170753084250,214,0 +170753084298,216,0 +170753084346,216,0 +170753084394,217,0 +170753084441,218,0 +170753084489,221,0 +170753084539,219,0 +170753084587,220,0 +170753084635,221,0 +170753084683,222,0 +170753084731,222,0 +170753084778,221,0 +170753084826,224,0 +170753084874,225,0 +170753084922,223,0 +170753084970,215,0 +170753085018,215,0 +170753085068,216,0 +170753085116,217,0 +170753085163,218,0 +170753085211,219,0 +170753085259,220,0 +170753085307,219,0 +170753085357,220,0 +170753085405,221,0 +170753085454,223,0 +170753085502,224,0 +170753085550,224,0 +170753085599,224,0 +170753085647,224,0 +170753085695,225,0 +170753085743,224,0 +170753085791,224,0 +170753085840,216,0 +170753085888,216,0 +170753085936,216,0 +170753085984,218,0 +170753086032,219,0 +170753086080,216,0 +170753086128,219,0 +170753086176,220,0 +170753086225,221,0 +170753086273,222,0 +170753086321,222,0 +170753086369,222,0 +170753086417,224,0 +170753086465,224,0 +170753086512,224,0 +170753086560,225,0 +170753086608,225,0 +170753086656,224,0 +170753086706,216,0 +170753086754,216,0 +170753086803,216,0 +170753086851,218,0 +170753086899,220,0 +170753086948,220,0 +170753086996,220,0 +170753087044,221,0 +170753087094,221,0 +170753087142,222,0 +170753087191,224,0 +170753087239,224,0 +170753087287,224,0 +170753087335,224,0 +170753087383,225,0 +170753087431,225,0 +170753087480,224,0 +170753087529,224,0 +170753087577,218,0 +170753087625,218,0 +170753087675,218,0 +170753087723,219,0 +170753087770,220,0 +170753087820,221,0 +170753087868,221,0 +170753087916,222,0 +170753087965,222,0 +170753088013,224,0 +170753088061,224,0 +170753088109,223,0 +170753088156,224,0 +170753088206,225,0 +170753088254,225,0 +170753088302,225,0 +170753088350,223,0 +170753088397,223,0 +170753088445,221,0 +170753088493,218,0 +170753088541,219,0 +170753088589,220,0 +170753088637,220,0 +170753088686,221,0 +170753088734,223,0 +170753088784,222,0 +170753088833,223,0 +170753088881,224,0 +170753088930,224,0 +170753088978,224,0 +170753089026,225,0 +170753089076,224,0 +170753089124,224,0 +170753089173,225,0 +170753089221,224,0 +170753089269,223,0 +170753089317,223,0 +170753089365,216,0 +170753089412,217,0 +170753089460,218,0 +170753089508,218,0 +170753089558,219,0 +170753089606,220,0 +170753089653,220,0 +170753089701,221,0 +170753089751,222,0 +170753089799,223,0 +170753089848,223,0 +170753089898,225,0 +170753089946,224,0 +170753089994,224,0 +170753090042,224,0 +170753090090,221,0 +170753090138,224,0 +170753090186,223,0 +170753090234,216,0 +170753090281,216,0 +170753090331,216,0 +170753090379,217,0 +170753090427,218,0 +170753090475,217,0 +170753090523,219,0 +170753090571,220,0 +170753090620,221,0 +170753090668,222,0 +170753090716,223,0 +170753090764,223,0 +170753090812,223,0 +170753090860,224,0 +170753090908,223,0 +170753090957,223,0 +170753091006,224,0 +170753091054,223,0 +170753091102,216,0 +170753091150,215,0 +170753091198,215,0 +170753091246,216,0 +170753091294,217,0 +170753091342,217,0 +170753091390,217,0 +170753091438,218,0 +170753091485,220,0 +170753091533,220,0 +170753091581,220,0 +170753091631,222,0 +170753091680,222,0 +170753091728,223,0 +170753091777,223,0 +170753091827,222,0 +170753091875,223,0 +170753091923,223,0 +170753091970,216,0 +170753092018,215,0 +170753092068,216,0 +170753092116,216,0 +170753092164,217,0 +170753092211,218,0 +170753092259,219,0 +170753092307,218,0 +170753092355,220,0 +170753092403,221,0 +170753092451,222,0 +170753092499,222,0 +170753092547,223,0 +170753092595,225,0 +170753092642,223,0 +170753092692,223,0 +170753092740,224,0 +170753092788,221,0 +170753092835,224,0 +170753092885,216,0 +170753092933,216,0 +170753092981,217,0 +170753093030,218,0 +170753093078,219,0 +170753093128,220,0 +170753093175,221,0 +170753093225,221,0 +170753093273,222,0 +170753093321,222,0 +170753093368,223,0 +170753093418,224,0 +170753093466,224,0 +170753093514,225,0 +170753093563,225,0 +170753093611,224,0 +170753093659,225,0 +170753093707,224,0 +170753093755,218,0 +170753093803,219,0 +170753093850,219,0 +170753093898,220,0 +170753093946,220,0 +170753093994,221,0 +170753094042,222,0 +170753094090,222,0 +170753094138,223,0 +170753094187,223,0 +170753094235,224,0 +170753094283,225,0 +170753094331,225,0 +170753094379,224,0 +170753094427,225,0 +170753094475,225,0 +170753094523,225,0 +170753094570,224,0 +170753094618,217,0 +170753094666,217,0 +170753094714,217,0 +170753094762,218,0 +170753094810,220,0 +170753094858,221,0 +170753094906,221,0 +170753094953,221,0 +170753095001,223,0 +170753095051,223,0 +170753095099,222,0 +170753095148,225,0 +170753095196,225,0 +170753095244,225,0 +170753095293,225,0 +170753095343,224,0 +170753095391,225,0 +170753095439,224,0 +170753095487,216,0 +170753095536,216,0 +170753095584,217,0 +170753095632,217,0 +170753095680,219,0 +170753095728,222,0 +170753095776,219,0 +170753095823,220,0 +170753095871,221,0 +170753095919,223,0 +170753095967,223,0 +170753096015,226,0 +170753096063,225,0 +170753096111,224,0 +170753096159,224,0 +170753096208,224,0 +170753096256,224,0 +170753096304,224,0 +170753096352,219,0 +170753096399,215,0 +170753096447,215,0 +170753096495,217,0 +170753096543,218,0 +170753096591,219,0 +170753096639,219,0 +170753096688,220,0 +170753096736,221,0 +170753096784,223,0 +170753096832,222,0 +170753096880,223,0 +170753096928,224,0 +170753096976,223,0 +170753097024,224,0 +170753097072,224,0 +170753097119,224,0 +170753097167,225,0 +170753097215,223,0 +170753097263,216,0 +170753097311,216,0 +170753097359,217,0 +170753097407,218,0 +170753097455,219,0 +170753097502,219,0 +170753097552,219,0 +170753097601,220,0 +170753097651,221,0 +170753097699,223,0 +170753097747,223,0 +170753097794,223,0 +170753097842,224,0 +170753097890,224,0 +170753097938,225,0 +170753097986,225,0 +170753098034,225,0 +170753098082,224,0 +170753098130,216,0 +170753098177,215,0 +170753098225,216,0 +170753098273,217,0 +170753098321,218,0 +170753098371,219,0 +170753098420,220,0 +170753098468,221,0 +170753098516,221,0 +170753098564,222,0 +170753098613,223,0 +170753098661,224,0 +170753098709,225,0 +170753098758,225,0 +170753098808,225,0 +170753098856,225,0 +170753098904,224,0 +170753098951,225,0 +170753099001,217,0 +170753099049,216,0 +170753099097,216,0 +170753099145,218,0 +170753099193,219,0 +170753099240,218,0 +170753099288,219,0 +170753099336,221,0 +170753099384,220,0 +170753099433,221,0 +170753099481,222,0 +170753099529,223,0 +170753099577,223,0 +170753099625,225,0 +170753099673,225,0 +170753099722,225,0 +170753099770,225,0 +170753099818,224,0 +170753099866,216,0 +170753099914,216,0 +170753099962,218,0 +170753100011,217,0 +170753100059,219,0 +170753100107,219,0 +170753100155,218,0 +170753100203,220,0 +170753100251,221,0 +170753100299,221,0 +170753100347,223,0 +170753100394,223,0 +170753100442,225,0 +170753100490,225,0 +170753100538,224,0 +170753100586,225,0 +170753100634,224,0 +170753100682,225,0 +170753100730,221,0 +170753100777,219,0 +170753100825,220,0 +170753100875,220,0 +170753100924,221,0 +170753100972,221,0 +170753101021,222,0 +170753101069,222,0 +170753101117,222,0 +170753101165,223,0 +170753101213,224,0 +170753101262,224,0 +170753101310,224,0 +170753101358,224,0 +170753101406,224,0 +170753101454,225,0 +170753101502,224,0 +170753101550,224,0 +170753101599,221,0 +170753101647,218,0 +170753101695,219,0 +170753101743,221,0 +170753101791,221,0 +170753101840,221,0 +170753101888,223,0 +170753101936,222,0 +170753101985,224,0 +170753102035,222,0 +170753102083,225,0 +170753102131,224,0 +170753102179,223,0 +170753102227,226,0 +170753102274,225,0 +170753102324,224,0 +170753102372,223,0 +170753102420,223,0 +170753102468,221,0 +170753102515,217,0 +170753102563,219,0 +170753102611,219,0 +170753102659,220,0 +170753102709,220,0 +170753102756,221,0 +170753102804,222,0 +170753102852,223,0 +170753102900,222,0 +170753102950,223,0 +170753102997,224,0 +170753103045,225,0 +170753103095,224,0 +170753103143,226,0 +170753103191,225,0 +170753103238,225,0 +170753103286,224,0 +170753103334,223,0 +170753103382,216,0 +170753103430,216,0 +170753103478,217,0 +170753103527,219,0 +170753103575,219,0 +170753103623,221,0 +170753103673,221,0 +170753103721,221,0 +170753103769,222,0 +170753103818,224,0 +170753103866,224,0 +170753103914,224,0 +170753103962,224,0 +170753104010,224,0 +170753104057,224,0 +170753104105,223,0 +170753104155,224,0 +170753104203,223,0 +170753104251,216,0 +170753104298,216,0 +170753104346,217,0 +170753104394,217,0 +170753104442,218,0 +170753104492,219,0 +170753104539,221,0 +170753104589,222,0 +170753104637,222,0 +170753104685,223,0 +170753104733,223,0 +170753104781,224,0 +170753104828,225,0 +170753104876,226,0 +170753104924,224,0 +170753104974,224,0 +170753105022,225,0 +170753105069,223,0 +170753105117,216,0 +170753105165,214,0 +170753105215,214,0 +170753105263,216,0 +170753105310,217,0 +170753105358,218,0 +170753105406,219,0 +170753105454,220,0 +170753105502,222,0 +170753105550,222,0 +170753105598,222,0 +170753105646,224,0 +170753105693,223,0 +170753105741,224,0 +170753105791,223,0 +170753105839,224,0 +170753105887,225,0 +170753105936,224,0 +170753105986,217,0 +170753106034,215,0 +170753106083,215,0 +170753106131,215,0 +170753106180,217,0 +170753106228,218,0 +170753106278,218,0 +170753106325,219,0 +170753106375,220,0 +170753106423,220,0 +170753106471,222,0 +170753106520,221,0 +170753106568,223,0 +170753106618,223,0 +170753106667,223,0 +170753106715,223,0 +170753106763,224,0 +170753106811,224,0 +170753106858,216,0 +170753106906,215,0 +170753106954,215,0 +170753107002,216,0 +170753107052,217,0 +170753107100,218,0 +170753107147,221,0 +170753107195,218,0 +170753107245,220,0 +170753107293,221,0 +170753107342,222,0 +170753107390,222,0 +170753107438,224,0 +170753107486,223,0 +170753107534,223,0 +170753107581,224,0 +170753107629,224,0 +170753107677,224,0 +170753107727,216,0 +170753107776,216,0 +170753107826,216,0 +170753107874,218,0 +170753107923,218,0 +170753107971,219,0 +170753108019,219,0 +170753108067,220,0 +170753108115,221,0 +170753108163,222,0 +170753108210,222,0 +170753108258,222,0 +170753108306,223,0 +170753108354,225,0 +170753108402,223,0 +170753108450,224,0 +170753108498,224,0 +170753108546,224,0 +170753108594,216,0 +170753108642,215,0 +170753108689,217,0 +170753108737,218,0 +170753108785,218,0 +170753108833,219,0 +170753108881,219,0 +170753108930,220,0 +170753108978,221,0 +170753109026,222,0 +170753109074,222,0 +170753109122,225,0 +170753109170,223,0 +170753109218,224,0 +170753109266,224,0 +170753109315,225,0 +170753109365,224,0 +170753109414,224,0 +170753109464,223,0 +170753109513,215,0 +170753109561,215,0 +170753109611,217,0 +170753109660,217,0 +170753109710,218,0 +170753109758,219,0 +170753109806,219,0 +170753109855,221,0 +170753109903,221,0 +170753109951,222,0 +170753109999,223,0 +170753110047,224,0 +170753110097,224,0 +170753110145,225,0 +170753110193,225,0 +170753110241,225,0 +170753110289,225,0 +170753110338,225,0 +170753110386,216,0 +170753110434,216,0 +170753110482,217,0 +170753110530,219,0 +170753110580,219,0 +170753110628,220,0 +170753110676,221,0 +170753110725,222,0 +170753110773,222,0 +170753110821,223,0 +170753110870,223,0 +170753110920,224,0 +170753110968,224,0 +170753111016,224,0 +170753111064,224,0 +170753111112,225,0 +170753111161,224,0 +170753111209,223,0 +170753111257,216,0 +170753111305,216,0 +170753111353,217,0 +170753111401,219,0 +170753111451,220,0 +170753111500,221,0 +170753111548,221,0 +170753111596,222,0 +170753111644,222,0 +170753111692,223,0 +170753111740,224,0 +170753111789,224,0 +170753111839,224,0 +170753111887,226,0 +170753111935,223,0 +170753111983,226,0 +170753112031,223,0 +170753112080,224,0 +170753112130,216,0 +170753112179,216,0 +170753112227,217,0 +170753112275,217,0 +170753112323,218,0 +170753112372,219,0 +170753112422,220,0 +170753112470,220,0 +170753112519,221,0 +170753112567,221,0 +170753112615,222,0 +170753112665,225,0 +170753112713,223,0 +170753112760,225,0 +170753112808,224,0 +170753112856,224,0 +170753112904,225,0 +170753112952,223,0 +170753113000,217,0 +170753113048,217,0 +170753113097,218,0 +170753113147,219,0 +170753113195,220,0 +170753113244,221,0 +170753113292,221,0 +170753113340,230,0 +170753113388,222,0 +170753113436,223,0 +170753113485,223,0 +170753113535,224,0 +170753113583,225,0 +170753113631,226,0 +170753113679,224,0 +170753113728,225,0 +170753113778,224,0 +170753113827,223,0 +170753113875,217,0 +170753113925,218,0 +170753113973,219,0 +170753114022,220,0 +170753114070,221,0 +170753114120,221,0 +170753114168,221,0 +170753114216,222,0 +170753114265,223,0 +170753114313,224,0 +170753114362,223,0 +170753114412,224,0 +170753114460,224,0 +170753114508,224,0 +170753114557,225,0 +170753114605,224,0 +170753114653,225,0 +170753114701,221,0 +170753114751,219,0 +170753114799,219,0 +170753114848,220,0 +170753114896,221,0 +170753114945,222,0 +170753114995,222,0 +170753115043,222,0 +170753115091,224,0 +170753115138,224,0 +170753115188,225,0 +170753115237,225,0 +170753115285,225,0 +170753115335,225,0 +170753115384,225,0 +170753115434,225,0 +170753115482,225,0 +170753115530,224,0 +170753115578,223,0 +170753115626,220,0 +170753115674,220,0 +170753115722,220,0 +170753115771,221,0 +170753115821,222,0 +170753115869,223,0 +170753115918,223,0 +170753115966,224,0 +170753116014,224,0 +170753116064,225,0 +170753116113,226,0 +170753116161,225,0 +170753116209,225,0 +170753116257,225,0 +170753116307,225,0 +170753116355,224,0 +170753116404,224,0 +170753116454,223,0 +170753116502,216,0 +170753116550,218,0 +170753116599,219,0 +170753116649,219,0 +170753116697,221,0 +170753116746,222,0 +170753116796,222,0 +170753116844,222,0 +170753116892,222,0 +170753116940,226,0 +170753116988,224,0 +170753117037,224,0 +170753117085,226,0 +170753117133,224,0 +170753117181,226,0 +170753117229,225,0 +170753117279,224,0 +170753117328,221,0 +170753117376,215,0 +170753117424,216,0 +170753117472,217,0 +170753117522,218,0 +170753117571,219,0 +170753117619,220,0 +170753117669,221,0 +170753117717,222,0 +170753117765,222,0 +170753117813,223,0 +170753117860,224,0 +170753117908,224,0 +170753117958,224,0 +170753118007,225,0 +170753118055,224,0 +170753118103,224,0 +170753118151,224,0 +170753118199,216,0 +170753118247,216,0 +170753118295,216,0 +170753118343,217,0 +170753118391,218,0 +170753118438,219,0 +170753118488,218,0 +170753118536,221,0 +170753118586,221,0 +170753118635,221,0 +170753118685,221,0 +170753118732,224,0 +170753118782,226,0 +170753118830,226,0 +170753118879,225,0 +170753118927,224,0 +170753118975,224,0 +170753119025,224,0 +170753119073,217,0 +170753119121,215,0 +170753119169,216,0 +170753119217,217,0 +170753119265,218,0 +170753119313,219,0 +170753119362,220,0 +170753119410,221,0 +170753119458,221,0 +170753119506,222,0 +170753119554,222,0 +170753119603,223,0 +170753119651,223,0 +170753119699,224,0 +170753119748,223,0 +170753119796,224,0 +170753119846,224,0 +170753119894,223,0 +170753119942,216,0 +170753119990,215,0 +170753120037,216,0 +170753120085,218,0 +170753120133,218,0 +170753120181,220,0 +170753120231,220,0 +170753120278,221,0 +170753120326,222,0 +170753120374,222,0 +170753120424,223,0 +170753120472,223,0 +170753120520,223,0 +170753120569,223,0 +170753120617,224,0 +170753120665,223,0 +170753120713,224,0 +170753120761,224,0 +170753120809,216,0 +170753120856,216,0 +170753120906,216,0 +170753120954,219,0 +170753121002,218,0 +170753121049,219,0 +170753121097,220,0 +170753121145,222,0 +170753121193,222,0 +170753121241,222,0 +170753121289,222,0 +170753121337,224,0 +170753121385,224,0 +170753121434,224,0 +170753121482,224,0 +170753121530,224,0 +170753121578,224,0 +170753121626,222,0 +170753121674,216,0 +170753121722,216,0 +170753121769,217,0 +170753121817,218,0 +170753121865,218,0 +170753121915,220,0 +170753121964,220,0 +170753122012,221,0 +170753122060,223,0 +170753122108,223,0 +170753122157,222,0 +170753122207,223,0 +170753122254,224,0 +170753122302,225,0 +170753122350,226,0 +170753122398,226,0 +170753122446,225,0 +170753122494,224,0 +170753122542,218,0 +170753122591,215,0 +170753122639,216,0 +170753122687,217,0 +170753122735,218,0 +170753122783,218,0 +170753122831,219,0 +170753122879,220,0 +170753122928,221,0 +170753122978,222,0 +170753123026,222,0 +170753123074,223,0 +170753123122,225,0 +170753123171,224,0 +170753123219,224,0 +170753123267,225,0 +170753123315,222,0 +170753123363,223,0 +170753123411,216,0 +170753123460,215,0 +170753123508,216,0 +170753123556,216,0 +170753123606,217,0 +170753123655,218,0 +170753123703,219,0 +170753123753,219,0 +170753123801,219,0 +170753123850,220,0 +170753123900,221,0 +170753123949,223,0 +170753123999,223,0 +170753124048,223,0 +170753124096,224,0 +170753124144,224,0 +170753124192,223,0 +170753124242,221,0 +170753124291,215,0 +170753124341,215,0 +170753124389,216,0 +170753124437,217,0 +170753124485,218,0 +170753124533,218,0 +170753124580,219,0 +170753124628,219,0 +170753124676,219,0 +170753124724,220,0 +170753124772,221,0 +170753124820,222,0 +170753124868,223,0 +170753124916,222,0 +170753124963,224,0 +170753125013,224,0 +170753125061,218,0 +170753125109,224,0 +170753125158,217,0 +170753125206,216,0 +170753125254,218,0 +170753125302,219,0 +170753125350,220,0 +170753125397,220,0 +170753125445,220,0 +170753125495,223,0 +170753125543,224,0 +170753125590,223,0 +170753125638,224,0 +170753125686,225,0 +170753125736,225,0 +170753125784,226,0 +170753125831,224,0 +170753125879,225,0 +170753125927,224,0 +170753125975,225,0 +170753126025,219,0 +170753126072,220,0 +170753126120,220,0 +170753126168,221,0 +170753126216,222,0 +170753126266,223,0 +170753126313,223,0 +170753126361,223,0 +170753126409,225,0 +170753126457,226,0 +170753126505,224,0 +170753126553,224,0 +170753126601,225,0 +170753126649,224,0 +170753126696,225,0 +170753126744,225,0 +170753126792,224,0 +170753126840,224,0 +170753126888,218,0 +170753126936,218,0 +170753126984,219,0 +170753127032,221,0 +170753127079,221,0 +170753127127,223,0 +170753127175,222,0 +170753127225,224,0 +170753127273,223,0 +170753127320,224,0 +170753127368,224,0 +170753127418,225,0 +170753127467,225,0 +170753127515,225,0 +170753127563,224,0 +170753127611,225,0 +170753127659,224,0 +170753127706,225,0 +170753127754,218,0 +170753127802,217,0 +170753127850,217,0 +170753127898,218,0 +170753127947,219,0 +170753127997,219,0 +170753128045,220,0 +170753128092,222,0 +170753128140,223,0 +170753128188,224,0 +170753128236,223,0 +170753128284,224,0 +170753128332,225,0 +170753128380,225,0 +170753128429,225,0 +170753128477,225,0 +170753128525,224,0 +170753128573,224,0 +170753128621,223,0 +170753128669,215,0 +170753128716,215,0 +170753128764,214,0 +170753128812,216,0 +170753128860,218,0 +170753128908,219,0 +170753128956,220,0 +170753129004,220,0 +170753129052,222,0 +170753129100,223,0 +170753129147,222,0 +170753129195,223,0 +170753129243,223,0 +170753129291,223,0 +170753129340,224,0 +170753129388,225,0 +170753129438,222,0 +170753129486,221,0 +170753129533,215,0 +170753129581,215,0 +170753129629,215,0 +170753129677,217,0 +170753129725,218,0 +170753129774,218,0 +170753129822,219,0 +170753129870,219,0 +170753129918,220,0 +170753129966,221,0 +170753130014,220,0 +170753130063,222,0 +170753130111,223,0 +170753130161,226,0 +170753130209,222,0 +170753130256,222,0 +170753130304,224,0 +170753130354,216,0 +170753130402,215,0 +170753130450,216,0 +170753130498,217,0 +170753130545,217,0 +170753130595,219,0 +170753130643,219,0 +170753130692,220,0 +170753130740,220,0 +170753130788,221,0 +170753130836,222,0 +170753130884,222,0 +170753130933,224,0 +170753130981,224,0 +170753131029,223,0 +170753131077,224,0 +170753131126,226,0 +170753131174,225,0 +170753131222,222,0 +170753131270,215,0 +170753131317,216,0 +170753131367,217,0 +170753131415,218,0 +170753131463,218,0 +170753131511,219,0 +170753131560,219,0 +170753131608,221,0 +170753131657,222,0 +170753131707,222,0 +170753131756,225,0 +170753131806,223,0 +170753131854,224,0 +170753131901,225,0 +170753131951,224,0 +170753132000,225,0 +170753132048,224,0 +170753132096,216,0 +170753132144,215,0 +170753132192,215,0 +170753132240,217,0 +170753132288,218,0 +170753132335,218,0 +170753132383,219,0 +170753132433,217,0 +170753132481,220,0 +170753132529,222,0 +170753132577,222,0 +170753132624,224,0 +170753132674,224,0 +170753132722,225,0 +170753132770,224,0 +170753132817,225,0 +170753132867,225,0 +170753132916,224,0 +170753132964,217,0 +170753133014,215,0 +170753133063,215,0 +170753133111,216,0 +170753133160,218,0 +170753133208,218,0 +170753133256,220,0 +170753133306,223,0 +170753133354,222,0 +170753133403,223,0 +170753133451,224,0 +170753133499,224,0 +170753133546,225,0 +170753133594,224,0 +170753133642,226,0 +170753133690,224,0 +170753133738,226,0 +170753133786,223,0 +170753133835,216,0 +170753133883,215,0 +170753133933,215,0 +170753133980,215,0 +170753134028,216,0 +170753134076,217,0 +170753134124,217,0 +170753134172,218,0 +170753134220,221,0 +170753134268,221,0 +170753134316,221,0 +170753134363,221,0 +170753134411,223,0 +170753134459,223,0 +170753134507,224,0 +170753134555,224,0 +170753134603,225,0 +170753134651,224,0 +170753134699,223,0 +170753134746,215,0 +170753134794,215,0 +170753134842,215,0 +170753134890,216,0 +170753134939,218,0 +170753134987,218,0 +170753135035,220,0 +170753135083,219,0 +170753135131,221,0 +170753135179,223,0 +170753135227,224,0 +170753135275,224,0 +170753135322,224,0 +170753135370,224,0 +170753135418,225,0 +170753135466,222,0 +170753135514,224,0 +170753135562,223,0 +170753135610,215,0 +170753135658,215,0 +170753135705,217,0 +170753135753,217,0 +170753135801,218,0 +170753135849,219,0 +170753135897,220,0 +170753135945,220,0 +170753135993,221,0 +170753136041,222,0 +170753136089,223,0 +170753136136,224,0 +170753136184,223,0 +170753136232,224,0 +170753136280,223,0 +170753136329,224,0 +170753136377,224,0 +170753136425,223,0 +170753136473,218,0 +170753136522,218,0 +170753136570,219,0 +170753136618,219,0 +170753136668,221,0 +170753136716,221,0 +170753136765,222,0 +170753136813,223,0 +170753136861,224,0 +170753136909,223,0 +170753136956,225,0 +170753137006,224,0 +170753137054,224,0 +170753137103,226,0 +170753137151,224,0 +170753137199,223,0 +170753137247,224,0 +170753137296,222,0 +170753137344,216,0 +170753137392,217,0 +170753137440,218,0 +170753137488,220,0 +170753137537,219,0 +170753137585,220,0 +170753137633,221,0 +170753137681,221,0 +170753137729,222,0 +170753137778,222,0 +170753137826,222,0 +170753137874,223,0 +170753137922,223,0 +170753137970,224,0 +170753138017,224,0 +170753138065,225,0 +170753138113,225,0 +170753138161,224,0 +170753138209,219,0 +170753138257,219,0 +170753138304,219,0 +170753138352,220,0 +170753138400,222,0 +170753138448,221,0 +170753138496,221,0 +170753138544,222,0 +170753138592,223,0 +170753138640,223,0 +170753138688,224,0 +170753138736,224,0 +170753138785,225,0 +170753138833,224,0 +170753138881,224,0 +170753138928,224,0 +170753138978,224,0 +170753139026,223,0 +170753139074,219,0 +170753139122,219,0 +170753139169,219,0 +170753139219,221,0 +170753139267,223,0 +170753139315,221,0 +170753139364,222,0 +170753139412,223,0 +170753139460,223,0 +170753139508,224,0 +170753139557,225,0 +170753139605,224,0 +170753139653,224,0 +170753139701,224,0 +170753139749,225,0 +170753139797,224,0 +170753139845,224,0 +170753139893,217,0 +170753139940,219,0 +170753139988,219,0 +170753140036,219,0 +170753140084,220,0 +170753140132,221,0 +170753140180,221,0 +170753140228,223,0 +170753140277,222,0 +170753140325,223,0 +170753140373,224,0 +170753140421,225,0 +170753140469,225,0 +170753140517,225,0 +170753140564,225,0 +170753140612,227,0 +170753140660,224,0 +170753140710,224,0 +170753140758,219,0 +170753140805,219,0 +170753140853,219,0 +170753140901,219,0 +170753140951,220,0 +170753140998,221,0 +170753141046,223,0 +170753141094,223,0 +170753141142,223,0 +170753141190,224,0 +170753141238,225,0 +170753141286,225,0 +170753141333,223,0 +170753141383,226,0 +170753141431,224,0 +170753141479,225,0 +170753141527,224,0 +170753141576,223,0 +170753141624,218,0 +170753141672,218,0 +170753141720,218,0 +170753141767,220,0 +170753141815,221,0 +170753141865,222,0 +170753141913,221,0 +170753141961,222,0 +170753142010,223,0 +170753142058,224,0 +170753142108,223,0 +170753142156,224,0 +170753142205,226,0 +170753142253,225,0 +170753142303,225,0 +170753142352,224,0 +170753142400,224,0 +170753142448,218,0 +170753142496,217,0 +170753142545,218,0 +170753142595,219,0 +170753142644,219,0 +170753142692,220,0 +170753142740,221,0 +170753142788,223,0 +170753142836,223,0 +170753142886,222,0 +170753142935,223,0 +170753142985,224,0 +170753143033,225,0 +170753143082,224,0 +170753143130,224,0 +170753143178,224,0 +170753143226,224,0 +170753143274,223,0 +170753143322,217,0 +170753143370,218,0 +170753143418,219,0 +170753143465,219,0 +170753143513,220,0 +170753143563,220,0 +170753143612,221,0 +170753143660,223,0 +170753143708,223,0 +170753143756,224,0 +170753143805,224,0 +170753143853,225,0 +170753143901,226,0 +170753143949,225,0 +170753143997,224,0 +170753144045,225,0 +170753144093,224,0 +170753144142,216,0 +170753144190,216,0 +170753144239,217,0 +170753144287,219,0 +170753144337,220,0 +170753144386,220,0 +170753144434,221,0 +170753144484,221,0 +170753144533,223,0 +170753144583,223,0 +170753144632,223,0 +170753144682,223,0 +170753144730,224,0 +170753144777,225,0 +170753144825,224,0 +170753144873,224,0 +170753144921,224,0 +170753144969,224,0 +170753145018,215,0 +170753145066,216,0 +170753145114,217,0 +170753145164,219,0 +170753145211,219,0 +170753145259,220,0 +170753145307,221,0 +170753145355,221,0 +170753145403,223,0 +170753145451,223,0 +170753145499,225,0 +170753145546,223,0 +170753145594,224,0 +170753145642,224,0 +170753145692,225,0 +170753145741,224,0 +170753145791,225,0 +170753145839,216,0 +170753145887,214,0 +170753145935,215,0 +170753145982,216,0 +170753146032,218,0 +170753146080,219,0 +170753146128,219,0 +170753146176,219,0 +170753146224,222,0 +170753146272,222,0 +170753146320,224,0 +170753146369,225,0 +170753146417,224,0 +170753146465,224,0 +170753146515,225,0 +170753146564,224,0 +170753146612,224,0 +170753146660,224,0 +170753146710,215,0 +170753146758,215,0 +170753146805,215,0 +170753146855,215,0 +170753146904,215,0 +170753146952,216,0 +170753147000,217,0 +170753147048,217,0 +170753147096,219,0 +170753147145,220,0 +170753147193,220,0 +170753147243,223,0 +170753147290,222,0 +170753147338,224,0 +170753147386,223,0 +170753147436,223,0 +170753147484,224,0 +170753147532,217,0 +170753147579,215,0 +170753147627,215,0 +170753147675,215,0 +170753147723,216,0 +170753147771,217,0 +170753147819,218,0 +170753147867,219,0 +170753147916,222,0 +170753147966,222,0 +170753148015,221,0 +170753148063,221,0 +170753148111,222,0 +170753148161,223,0 +170753148209,223,0 +170753148256,224,0 +170753148306,223,0 +170753148354,224,0 +170753148402,216,0 +170753148450,216,0 +170753148498,217,0 +170753148545,217,0 +170753148595,218,0 +170753148643,219,0 +170753148691,219,0 +170753148739,220,0 +170753148788,223,0 +170753148836,221,0 +170753148884,222,0 +170753148932,223,0 +170753148980,224,0 +170753149028,224,0 +170753149076,225,0 +170753149124,222,0 +170753149172,224,0 +170753149222,220,0 +170753149269,215,0 +170753149319,215,0 +170753149368,216,0 +170753149418,222,0 +170753149466,217,0 +170753149514,219,0 +170753149562,220,0 +170753149609,221,0 +170753149657,221,0 +170753149705,222,0 +170753149753,223,0 +170753149801,223,0 +170753149851,223,0 +170753149900,223,0 +170753149950,228,0 +170753149998,225,0 +170753150047,224,0 +170753150097,216,0 +170753150145,217,0 +170753150192,218,0 +170753150240,219,0 +170753150288,220,0 +170753150338,220,0 +170753150387,221,0 +170753150435,221,0 +170753150483,223,0 +170753150531,223,0 +170753150581,224,0 +170753150629,224,0 +170753150677,224,0 +170753150725,224,0 +170753150773,225,0 +170753150820,224,0 +170753150870,224,0 +170753150918,221,0 +170753150966,218,0 +170753151014,219,0 +170753151062,219,0 +170753151111,220,0 +170753151159,221,0 +170753151207,222,0 +170753151255,222,0 +170753151303,224,0 +170753151353,223,0 +170753151401,223,0 +170753151450,224,0 +170753151498,225,0 +170753151546,224,0 +170753151594,225,0 +170753151643,223,0 +170753151691,224,0 +170753151741,224,0 +170753151790,218,0 +170753151838,218,0 +170753151886,219,0 +170753151936,220,0 +170753151984,220,0 +170753152032,221,0 +170753152079,223,0 +170753152127,223,0 +170753152175,223,0 +170753152223,224,0 +170753152271,224,0 +170753152321,224,0 +170753152369,222,0 +170753152417,228,0 +170753152466,227,0 +170753152514,224,0 +170753152562,224,0 +170753152610,223,0 +170753152658,217,0 +170753152706,218,0 +170753152755,218,0 +170753152805,219,0 +170753152853,220,0 +170753152901,220,0 +170753152950,221,0 +170753152998,223,0 +170753153048,222,0 +170753153095,223,0 +170753153143,222,0 +170753153193,225,0 +170753153243,224,0 +170753153291,224,0 +170753153338,224,0 +170753153388,223,0 +170753153436,223,0 +170753153484,217,0 +170753153532,217,0 +170753153580,217,0 +170753153628,218,0 +170753153675,219,0 +170753153725,221,0 +170753153774,221,0 +170753153822,221,0 +170753153872,225,0 +170753153920,223,0 +170753153969,222,0 +170753154017,224,0 +170753154065,224,0 +170753154113,224,0 +170753154163,224,0 +170753154211,224,0 +170753154260,223,0 +170753154308,223,0 +170753154358,216,0 +170753154406,217,0 +170753154455,217,0 +170753154503,218,0 +170753154551,219,0 +170753154599,220,0 +170753154647,220,0 +170753154695,221,0 +170753154744,222,0 +170753154792,222,0 +170753154840,223,0 +170753154890,225,0 +170753154938,224,0 +170753154987,224,0 +170753155035,225,0 +170753155083,228,0 +170753155133,223,0 +170753155182,218,0 +170753155230,217,0 +170753155280,218,0 +170753155329,219,0 +170753155379,221,0 +170753155427,220,0 +170753155475,221,0 +170753155523,222,0 +170753155570,223,0 +170753155618,221,0 +170753155666,225,0 +170753155714,225,0 +170753155762,225,0 +170753155810,224,0 +170753155858,225,0 +170753155908,225,0 +170753155957,224,0 +170753156005,219,0 +170753156053,219,0 +170753156101,220,0 +170753156151,219,0 +170753156199,220,0 +170753156248,222,0 +170753156296,224,0 +170753156344,223,0 +170753156392,224,0 +170753156441,223,0 +170753156491,225,0 +170753156539,225,0 +170753156587,226,0 +170753156635,226,0 +170753156683,225,0 +170753156732,225,0 +170753156782,224,0 +170753156830,224,0 +170753156878,218,0 +170753156926,219,0 +170753156974,220,0 +170753157021,222,0 +170753157071,222,0 +170753157119,223,0 +170753157167,223,0 +170753157215,224,0 +170753157263,226,0 +170753157312,224,0 +170753157360,226,0 +170753157408,224,0 +170753157456,223,0 +170753157506,224,0 +170753157554,223,0 +170753157603,233,0 +170753157653,224,0 +170753157702,223,0 +170753157750,219,0 +170753157798,220,0 +170753157846,221,0 +170753157894,221,0 +170753157943,221,0 +170753157993,222,0 +170753158041,222,0 +170753158090,224,0 +170753158138,223,0 +170753158186,224,0 +170753158236,224,0 +170753158284,225,0 +170753158333,224,0 +170753158381,224,0 +170753158431,224,0 +170753158480,225,0 +170753158528,223,0 +170753158576,217,0 +170753158625,216,0 +170753158673,217,0 +170753158723,218,0 +170753158771,220,0 +170753158819,222,0 +170753158867,222,0 +170753158915,221,0 +170753158963,223,0 +170753159012,223,0 +170753159060,225,0 +170753159108,224,0 +170753159156,224,0 +170753159204,225,0 +170753159252,224,0 +170753159301,223,0 +170753159351,224,0 +170753159399,218,0 +170753159447,214,0 +170753159496,215,0 +170753159544,216,0 +170753159594,217,0 +170753159642,218,0 +170753159690,219,0 +170753159739,219,0 +170753159789,221,0 +170753159837,221,0 +170753159884,222,0 +170753159932,222,0 +170753159980,224,0 +170753160030,222,0 +170753160078,224,0 +170753160126,224,0 +170753160174,224,0 +170753160222,223,0 +170753160270,216,0 +170753160319,214,0 +170753160367,215,0 +170753160417,216,0 +170753160466,217,0 +170753160514,218,0 +170753160562,218,0 +170753160612,220,0 +170753160661,220,0 +170753160709,221,0 +170753160757,222,0 +170753160807,224,0 +170753160855,224,0 +170753160903,224,0 +170753160951,223,0 +170753160999,224,0 +170753161048,224,0 +170753161096,216,0 +170753161146,214,0 +170753161195,215,0 +170753161245,216,0 +170753161293,217,0 +170753161340,218,0 +170753161390,219,0 +170753161438,219,0 +170753161487,220,0 +170753161535,220,0 +170753161583,222,0 +170753161631,222,0 +170753161679,222,0 +170753161727,223,0 +170753161775,225,0 +170753161823,225,0 +170753161871,224,0 +170753161920,224,0 +170753161968,215,0 +170753162018,215,0 +170753162066,216,0 +170753162114,217,0 +170753162162,218,0 +170753162211,219,0 +170753162259,219,0 +170753162307,220,0 +170753162355,221,0 +170753162403,222,0 +170753162453,223,0 +170753162500,223,0 +170753162548,225,0 +170753162598,224,0 +170753162646,224,0 +170753162695,224,0 +170753162743,223,0 +170753162791,217,0 +170753162839,217,0 +170753162887,217,0 +170753162935,218,0 +170753162983,220,0 +170753163031,221,0 +170753163080,220,0 +170753163128,222,0 +170753163178,222,0 +170753163226,223,0 +170753163274,223,0 +170753163322,224,0 +170753163370,225,0 +170753163417,224,0 +170753163465,225,0 +170753163513,225,0 +170753163561,224,0 +170753163609,223,0 +170753163658,216,0 +170753163706,216,0 +170753163754,217,0 +170753163802,219,0 +170753163851,220,0 +170753163899,220,0 +170753163947,221,0 +170753163997,222,0 +170753164044,223,0 +170753164092,223,0 +170753164140,224,0 +170753164188,227,0 +170753164238,224,0 +170753164286,225,0 +170753164334,225,0 +170753164383,224,0 +170753164431,223,0 +170753164479,216,0 +170753164527,216,0 +170753164575,218,0 +170753164623,219,0 +170753164670,218,0 +170753164718,219,0 +170753164766,222,0 +170753164814,222,0 +170753164862,223,0 +170753164910,223,0 +170753164958,224,0 +170753165006,224,0 +170753165053,225,0 +170753165101,224,0 +170753165149,225,0 +170753165197,224,0 +170753165245,225,0 +170753165293,224,0 +170753165342,220,0 +170753165390,220,0 +170753165438,221,0 +170753165486,222,0 +170753165536,222,0 +170753165585,224,0 +170753165634,223,0 +170753165684,224,0 +170753165732,225,0 +170753165780,225,0 +170753165828,225,0 +170753165877,226,0 +170753165925,224,0 +170753165973,226,0 +170753166021,225,0 +170753166069,228,0 +170753166117,223,0 +170753166164,217,0 +170753166214,218,0 +170753166262,219,0 +170753166310,220,0 +170753166358,221,0 +170753166405,221,0 +170753166455,221,0 +170753166504,223,0 +170753166552,222,0 +170753166600,224,0 +170753166648,224,0 +170753166696,224,0 +170753166744,224,0 +170753166792,223,0 +170753166840,226,0 +170753166888,225,0 +170753166938,225,0 +170753166985,224,0 +170753167035,216,0 +170753167083,216,0 +170753167131,217,0 +170753167179,218,0 +170753167227,218,0 +170753167275,219,0 +170753167323,221,0 +170753167372,221,0 +170753167422,221,0 +170753167470,221,0 +170753167517,222,0 +170753167567,223,0 +170753167616,224,0 +170753167666,225,0 +170753167715,224,0 +170753167763,224,0 +170753167813,224,0 +170753167861,216,0 +170753167910,215,0 +170753167958,216,0 +170753168006,217,0 +170753168054,218,0 +170753168102,219,0 +170753168150,219,0 +170753168198,220,0 +170753168246,221,0 +170753168294,221,0 +170753168342,223,0 +170753168391,224,0 +170753168439,223,0 +170753168488,223,0 +170753168536,225,0 +170753168584,224,0 +170753168632,224,0 +170753168680,224,0 +170753168728,215,0 +170753168775,216,0 +170753168823,216,0 +170753168871,217,0 +170753168919,220,0 +170753168967,220,0 +170753169017,220,0 +170753169064,221,0 +170753169112,221,0 +170753169160,223,0 +170753169208,224,0 +170753169257,223,0 +170753169307,224,0 +170753169355,225,0 +170753169403,225,0 +170753169451,224,0 +170753169499,224,0 +170753169546,221,0 +170753169594,215,0 +170753169644,216,0 +170753169693,217,0 +170753169741,218,0 +170753169791,218,0 +170753169838,220,0 +170753169886,220,0 +170753169936,222,0 +170753169984,222,0 +170753170033,222,0 +170753170083,224,0 +170753170132,224,0 +170753170182,223,0 +170753170231,225,0 +170753170279,224,0 +170753170327,224,0 +170753170375,224,0 +170753170425,217,0 +170753170474,217,0 +170753170522,218,0 +170753170570,218,0 +170753170618,220,0 +170753170666,220,0 +170753170716,221,0 +170753170765,221,0 +170753170813,222,0 +170753170863,224,0 +170753170911,225,0 +170753170958,224,0 +170753171006,228,0 +170753171054,225,0 +170753171104,224,0 +170753171152,225,0 +170753171201,223,0 +170753171249,216,0 +170753171297,215,0 +170753171345,216,0 +170753171393,218,0 +170753171441,219,0 +170753171489,219,0 +170753171539,220,0 +170753171587,222,0 +170753171635,222,0 +170753171683,222,0 +170753171731,224,0 +170753171778,224,0 +170753171826,225,0 +170753171874,225,0 +170753171924,224,0 +170753171972,224,0 +170753172020,224,0 +170753172068,220,0 +170753172116,216,0 +170753172164,216,0 +170753172212,218,0 +170753172259,219,0 +170753172309,219,0 +170753172357,220,0 +170753172405,221,0 +170753172454,222,0 +170753172504,222,0 +170753172553,224,0 +170753172601,225,0 +170753172651,224,0 +170753172699,224,0 +170753172747,224,0 +170753172795,224,0 +170753172843,225,0 +170753172891,223,0 +170753172939,217,0 +170753172988,216,0 +170753173038,217,0 +170753173086,218,0 +170753173135,220,0 +170753173183,222,0 +170753173231,221,0 +170753173280,222,0 +170753173328,221,0 +170753173376,223,0 +170753173426,223,0 +170753173475,225,0 +170753173525,223,0 +170753173574,223,0 +170753173622,226,0 +170753173670,224,0 +170753173718,224,0 +170753173768,217,0 +170753173817,218,0 +170753173865,219,0 +170753173913,220,0 +170753173963,220,0 +170753174011,221,0 +170753174060,221,0 +170753174110,222,0 +170753174157,220,0 +170753174207,225,0 +170753174255,225,0 +170753174304,226,0 +170753174352,224,0 +170753174400,226,0 +170753174448,226,0 +170753174496,226,0 +170753174544,224,0 +170753174592,224,0 +170753174640,222,0 +170753174688,222,0 +170753174736,223,0 +170753174784,223,0 +170753174833,223,0 +170753174883,224,0 +170753174931,224,0 +170753174979,224,0 +170753175028,224,0 +170753175078,225,0 +170753175126,225,0 +170753175175,224,0 +170753175225,225,0 +170753175273,225,0 +170753175322,225,0 +170753175370,223,0 +170753175418,224,0 +170753175466,220,0 +170753175514,220,0 +170753175564,221,0 +170753175613,221,0 +170753175661,222,0 +170753175711,223,0 +170753175759,224,0 +170753175807,224,0 +170753175856,224,0 +170753175904,225,0 +170753175952,227,0 +170753176002,224,0 +170753176050,225,0 +170753176098,226,0 +170753176147,225,0 +170753176195,225,0 +170753176244,225,0 +170753176292,224,0 +170753176340,219,0 +170753176390,220,0 +170753176438,220,0 +170753176487,221,0 +170753176535,221,0 +170753176585,222,0 +170753176634,223,0 +170753176682,223,0 +170753176730,223,0 +170753176778,224,0 +170753176827,224,0 +170753176875,226,0 +170753176923,225,0 +170753176972,225,0 +170753177020,225,0 +170753177068,224,0 +170753177118,224,0 +170753177167,219,0 +170753177217,219,0 +170753177265,217,0 +170753177312,221,0 +170753177360,222,0 +170753177408,219,0 +170753177456,223,0 +170753177504,225,0 +170753177552,225,0 +170753177602,225,0 +170753177650,225,0 +170753177699,225,0 +170753177747,225,0 +170753177795,226,0 +170753177843,225,0 +170753177891,224,0 +170753177939,223,0 +170753177987,216,0 +170753178035,215,0 +170753178083,217,0 +170753178132,218,0 +170753178180,217,0 +170753178228,219,0 +170753178278,220,0 +170753178327,220,0 +170753178375,221,0 +170753178423,223,0 +170753178471,223,0 +170753178520,223,0 +170753178568,225,0 +170753178616,223,0 +170753178664,224,0 +170753178714,224,0 +170753178761,226,0 +170753178809,224,0 +170753178859,216,0 +170753178909,215,0 +170753178958,216,0 +170753179006,218,0 +170753179054,220,0 +170753179102,219,0 +170753179150,221,0 +170753179198,222,0 +170753179246,222,0 +170753179294,223,0 +170753179343,225,0 +170753179393,223,0 +170753179441,225,0 +170753179489,225,0 +170753179537,224,0 +170753179585,224,0 +170753179633,224,0 +170753179681,216,0 +170753179728,216,0 +170753179778,217,0 +170753179826,218,0 +170753179875,219,0 +170753179923,220,0 +170753179971,221,0 +170753180019,222,0 +170753180067,222,0 +170753180115,223,0 +170753180163,224,0 +170753180211,224,0 +170753180259,225,0 +170753180306,225,0 +170753180354,225,0 +170753180404,225,0 +170753180452,224,0 +170753180500,223,0 +170753180547,218,0 +170753180595,219,0 +170753180643,220,0 +170753180693,221,0 +170753180740,222,0 +170753180788,221,0 +170753180836,222,0 +170753180884,223,0 +170753180932,223,0 +170753180981,224,0 +170753181029,223,0 +170753181077,224,0 +170753181125,225,0 +170753181174,225,0 +170753181222,224,0 +170753181270,224,0 +170753181320,224,0 +170753181368,216,0 +170753181417,215,0 +170753181467,216,0 +170753181516,217,0 +170753181566,219,0 +170753181614,219,0 +170753181661,220,0 +170753181709,220,0 +170753181759,222,0 +170753181807,222,0 +170753181855,222,0 +170753181903,225,0 +170753181951,224,0 +170753181998,223,0 +170753182046,224,0 +170753182094,225,0 +170753182144,224,0 +170753182192,225,0 +170753182240,215,0 +170753182287,215,0 +170753182337,215,0 +170753182386,216,0 +170753182436,217,0 +170753182484,218,0 +170753182532,219,0 +170753182580,220,0 +170753182628,220,0 +170753182675,222,0 +170753182723,221,0 +170753182771,222,0 +170753182819,222,0 +170753182867,223,0 +170753182915,226,0 +170753182964,223,0 +170753183012,223,0 +170753183060,216,0 +170753183110,215,0 +170753183158,215,0 +170753183207,215,0 +170753183255,216,0 +170753183305,217,0 +170753183354,218,0 +170753183402,218,0 +170753183452,219,0 +170753183500,220,0 +170753183547,221,0 +170753183595,222,0 +170753183643,222,0 +170753183693,224,0 +170753183741,223,0 +170753183789,223,0 +170753183837,224,0 +170753183885,223,0 +170753183934,215,0 +170753183983,216,0 +170753184032,217,0 +170753184081,218,0 +170753184129,218,0 +170753184177,220,0 +170753184226,220,0 +170753184274,220,0 +170753184324,221,0 +170753184372,223,0 +170753184420,223,0 +170753184468,225,0 +170753184517,224,0 +170753184565,224,0 +170753184613,225,0 +170753184661,224,0 +170753184709,224,0 +170753184757,216,0 +170753184804,215,0 +170753184854,214,0 +170753184902,215,0 +170753184951,215,0 +170753185001,216,0 +170753185049,217,0 +170753185098,219,0 +170753185148,219,0 +170753185197,219,0 +170753185245,220,0 +170753185293,220,0 +170753185343,221,0 +170753185391,221,0 +170753185439,221,0 +170753185486,223,0 +170753185534,224,0 +170753185582,225,0 +170753185630,224,0 +170753185678,224,0 +170753185727,224,0 +170753185775,224,0 +170753185823,226,0 +170753185871,223,0 +170753185919,224,0 +170753185967,224,0 +170753186015,219,0 +170753186063,219,0 +170753186111,220,0 +170753186160,221,0 +170753186208,221,0 +170753186256,223,0 +170753186304,222,0 +170753186352,223,0 +170753186402,222,0 +170753186450,224,0 +170753186498,224,0 +170753186546,224,0 +170753186595,224,0 +170753186645,224,0 +170753186693,225,0 +170753186741,224,0 +170753186789,225,0 +170753186838,222,0 +170753186886,218,0 +170753186935,220,0 +170753186983,220,0 +170753187033,221,0 +170753187081,221,0 +170753187129,222,0 +170753187178,223,0 +170753187226,224,0 +170753187276,223,0 +170753187325,225,0 +170753187373,224,0 +170753187421,226,0 +170753187469,225,0 +170753187518,224,0 +170753187566,224,0 +170753187616,225,0 +170753187663,224,0 +170753187711,219,0 +170753187761,219,0 +170753187809,220,0 +170753187857,220,0 +170753187906,222,0 +170753187954,223,0 +170753188002,222,0 +170753188051,223,0 +170753188099,224,0 +170753188149,224,0 +170753188196,224,0 +170753188244,224,0 +170753188292,225,0 +170753188340,225,0 +170753188388,225,0 +170753188437,225,0 +170753188485,224,0 +170753188533,222,0 +170753188581,218,0 +170753188630,219,0 +170753188680,220,0 +170753188728,220,0 +170753188776,221,0 +170753188824,221,0 +170753188871,222,0 +170753188921,223,0 +170753188969,225,0 +170753189017,224,0 +170753189065,224,0 +170753189113,225,0 +170753189160,224,0 +170753189208,225,0 +170753189256,225,0 +170753189306,224,0 +170753189355,224,0 +170753189405,217,0 +170753189452,217,0 +170753189500,217,0 +170753189548,218,0 +170753189598,219,0 +170753189645,219,0 +170753189693,221,0 +170753189743,221,0 +170753189791,222,0 +170753189838,223,0 +170753189886,224,0 +170753189934,224,0 +170753189982,224,0 +170753190030,224,0 +170753190078,225,0 +170753190126,225,0 +170753190174,222,0 +170753190222,223,0 +170753190270,215,0 +170753190319,216,0 +170753190367,217,0 +170753190415,218,0 +170753190463,219,0 +170753190512,218,0 +170753190562,220,0 +170753190610,220,0 +170753190658,223,0 +170753190706,222,0 +170753190753,223,0 +170753190801,223,0 +170753190849,223,0 +170753190897,224,0 +170753190947,225,0 +170753190995,225,0 +170753191043,224,0 +170753191091,216,0 +170753191140,215,0 +170753191188,216,0 +170753191236,217,0 +170753191284,218,0 +170753191332,219,0 +170753191380,219,0 +170753191428,220,0 +170753191478,220,0 +170753191526,221,0 +170753191574,222,0 +170753191622,223,0 +170753191670,223,0 +170753191717,223,0 +170753191765,224,0 +170753191813,223,0 +170753191861,223,0 +170753191911,232,0 +170753191960,215,0 +170753192008,215,0 +170753192058,215,0 +170753192106,217,0 +170753192154,216,0 +170753192203,218,0 +170753192253,218,0 +170753192302,220,0 +170753192350,221,0 +170753192398,221,0 +170753192448,227,0 +170753192497,223,0 +170753192545,224,0 +170753192593,225,0 +170753192643,224,0 +170753192692,224,0 +170753192740,223,0 +170753192788,215,0 +170753192836,215,0 +170753192884,217,0 +170753192934,217,0 +170753192983,218,0 +170753193031,220,0 +170753193081,220,0 +170753193129,222,0 +170753193176,222,0 +170753193226,223,0 +170753193274,224,0 +170753193322,225,0 +170753193371,224,0 +170753193421,225,0 +170753193470,223,0 +170753193520,224,0 +170753193568,224,0 +170753193617,218,0 +170753193665,218,0 +170753193713,218,0 +170753193761,219,0 +170753193811,220,0 +170753193859,221,0 +170753193907,221,0 +170753193955,222,0 +170753194004,222,0 +170753194054,223,0 +170753194103,223,0 +170753194151,224,0 +170753194199,225,0 +170753194249,224,0 +170753194298,224,0 +170753194348,226,0 +170753194396,224,0 +170753194445,224,0 +170753194493,219,0 +170753194543,219,0 +170753194591,220,0 +170753194639,221,0 +170753194688,221,0 +170753194736,223,0 +170753194784,222,0 +170753194832,223,0 +170753194881,225,0 +170753194931,224,0 +170753194981,224,0 +170753195030,225,0 +170753195078,226,0 +170753195126,226,0 +170753195174,224,0 +170753195222,224,0 +170753195270,223,0 +170753195318,217,0 +170753195366,216,0 +170753195414,217,0 +170753195462,217,0 +170753195510,220,0 +170753195558,220,0 +170753195606,220,0 +170753195654,221,0 +170753195702,222,0 +170753195749,224,0 +170753195797,226,0 +170753195847,224,0 +170753195895,225,0 +170753195943,225,0 +170753195992,224,0 +170753196042,225,0 +170753196090,225,0 +170753196139,223,0 +170753196187,215,0 +170753196237,215,0 +170753196285,217,0 +170753196334,218,0 +170753196382,219,0 +170753196430,220,0 +170753196478,220,0 +170753196527,221,0 +170753196577,221,0 +170753196625,223,0 +170753196674,224,0 +170753196722,223,0 +170753196772,226,0 +170753196820,223,0 +170753196868,224,0 +170753196917,224,0 +170753196967,223,0 +170753197015,218,0 +170753197063,217,0 +170753197111,218,0 +170753197160,219,0 +170753197208,220,0 +170753197256,221,0 +170753197304,221,0 +170753197354,222,0 +170753197402,221,0 +170753197449,222,0 +170753197497,224,0 +170753197545,224,0 +170753197595,226,0 +170753197643,224,0 +170753197692,224,0 +170753197740,224,0 +170753197790,223,0 +170753197838,217,0 +170753197887,216,0 +170753197935,217,0 +170753197983,219,0 +170753198031,220,0 +170753198080,219,0 +170753198128,220,0 +170753198176,222,0 +170753198226,222,0 +170753198274,222,0 +170753198323,223,0 +170753198373,223,0 +170753198421,224,0 +170753198468,225,0 +170753198516,226,0 +170753198566,223,0 +170753198614,225,0 +170753198662,224,0 +170753198711,218,0 +170753198759,218,0 +170753198809,220,0 +170753198857,221,0 +170753198906,221,0 +170753198956,222,0 +170753199004,223,0 +170753199052,222,0 +170753199101,223,0 +170753199151,224,0 +170753199198,225,0 +170753199248,225,0 +170753199296,223,0 +170753199345,225,0 +170753199393,224,0 +170753199441,225,0 +170753199490,224,0 +170753199537,221,0 +170753199585,221,0 +170753199635,221,0 +170753199683,222,0 +170753199731,223,0 +170753199779,222,0 +170753199826,223,0 +170753199876,227,0 +170753199924,224,0 +170753199973,224,0 +170753200021,225,0 +170753200069,225,0 +170753200117,224,0 +170753200165,226,0 +170753200213,225,0 +170753200261,224,0 +170753200309,224,0 +170753200359,223,0 +170753200408,221,0 +170753200456,223,0 +170753200506,225,0 +170753200554,224,0 +170753200603,223,0 +170753200651,225,0 +170753200699,224,0 +170753200747,225,0 +170753200795,226,0 +170753200843,225,0 +170753200891,225,0 +170753200939,224,0 +170753200987,224,0 +170753201035,225,0 +170753201082,224,0 +170753201130,225,0 +170753201178,223,0 +170753201226,219,0 +170753201274,218,0 +170753201322,219,0 +170753201372,222,0 +170753201420,221,0 +170753201468,221,0 +170753201516,222,0 +170753201565,222,0 +170753201613,225,0 +170753201661,226,0 +170753201711,224,0 +170753201759,225,0 +170753201808,224,0 +170753201856,225,0 +170753201905,225,0 +170753201953,224,0 +170753202003,224,0 +170753202051,223,0 +170753202099,216,0 +170753202148,217,0 +170753202196,219,0 +170753202244,219,0 +170753202292,220,0 +170753202342,221,0 +170753202391,221,0 +170753202439,222,0 +170753202489,222,0 +170753202538,222,0 +170753202586,223,0 +170753202634,224,0 +170753202684,225,0 +170753202732,222,0 +170753202781,225,0 +170753202829,224,0 +170753202877,223,0 +170753202927,216,0 +170753202975,217,0 +170753203022,218,0 +170753203072,218,0 +170753203120,219,0 +170753203168,220,0 +170753203216,221,0 +170753203265,222,0 +170753203313,222,0 +170753203361,222,0 +170753203409,223,0 +170753203457,224,0 +170753203505,225,0 +170753203553,225,0 +170753203601,224,0 +170753203650,225,0 +170753203700,224,0 +170753203748,223,0 +170753203796,215,0 +170753203845,216,0 +170753203893,217,0 +170753203941,218,0 +170753203991,218,0 +170753204039,219,0 +170753204087,221,0 +170753204134,220,0 +170753204184,221,0 +170753204232,222,0 +170753204280,223,0 +170753204328,224,0 +170753204376,225,0 +170753204424,225,0 +170753204473,225,0 +170753204523,224,0 +170753204570,223,0 +170753204620,216,0 +170753204669,217,0 +170753204717,217,0 +170753204765,217,0 +170753204815,218,0 +170753204864,219,0 +170753204912,220,0 +170753204960,220,0 +170753205008,221,0 +170753205058,222,0 +170753205106,222,0 +170753205154,223,0 +170753205203,223,0 +170753205253,225,0 +170753205301,224,0 +170753205350,225,0 +170753205398,225,0 +170753205448,216,0 +170753205496,215,0 +170753205544,216,0 +170753205592,217,0 +170753205639,218,0 +170753205687,218,0 +170753205735,219,0 +170753205785,219,0 +170753205833,220,0 +170753205882,221,0 +170753205932,222,0 +170753205981,222,0 +170753206029,223,0 +170753206079,224,0 +170753206127,224,0 +170753206175,225,0 +170753206223,224,0 +170753206272,223,0 +170753206320,215,0 +170753206368,215,0 +170753206416,216,0 +170753206465,217,0 +170753206515,218,0 +170753206563,218,0 +170753206611,219,0 +170753206659,220,0 +170753206707,222,0 +170753206756,221,0 +170753206804,222,0 +170753206852,222,0 +170753206900,224,0 +170753206948,223,0 +170753206998,225,0 +170753207046,224,0 +170753207094,226,0 +170753207142,216,0 +170753207190,215,0 +170753207237,216,0 +170753207285,217,0 +170753207333,218,0 +170753207381,218,0 +170753207429,218,0 +170753207479,220,0 +170753207527,221,0 +170753207576,221,0 +170753207624,223,0 +170753207672,223,0 +170753207720,223,0 +170753207770,224,0 +170753207819,225,0 +170753207867,224,0 +170753207915,225,0 +170753207963,223,0 +170753208011,215,0 +170753208060,216,0 +170753208108,217,0 +170753208156,218,0 +170753208204,219,0 +170753208252,220,0 +170753208300,220,0 +170753208348,221,0 +170753208396,222,0 +170753208445,223,0 +170753208493,224,0 +170753208541,224,0 +170753208589,224,0 +170753208637,225,0 +170753208685,225,0 +170753208733,226,0 +170753208781,224,0 +170753208829,217,0 +170753208877,217,0 +170753208925,218,0 +170753208974,222,0 +170753209022,220,0 +170753209072,222,0 +170753209120,222,0 +170753209168,222,0 +170753209216,223,0 +170753209264,224,0 +170753209311,224,0 +170753209359,224,0 +170753209407,224,0 +170753209455,226,0 +170753209505,224,0 +170753209553,224,0 +170753209602,224,0 +170753209652,222,0 +170753209700,216,0 +170753209747,220,0 +170753209795,217,0 +170753209845,219,0 +170753209893,219,0 +170753209942,219,0 +170753209992,221,0 +170753210040,222,0 +170753210088,222,0 +170753210136,223,0 +170753210184,223,0 +170753210232,223,0 +170753210280,223,0 +170753210328,224,0 +170753210376,224,0 +170753210423,224,0 +170753210471,224,0 +170753210521,216,0 +170753210570,216,0 +170753210620,217,0 +170753210668,218,0 +170753210717,218,0 +170753210765,219,0 +170753210813,219,0 +170753210863,221,0 +170753210911,221,0 +170753210959,222,0 +170753211007,223,0 +170753211055,223,0 +170753211104,225,0 +170753211152,224,0 +170753211200,225,0 +170753211248,224,0 +170753211296,224,0 +170753211344,223,0 +170753211392,219,0 +170753211441,219,0 +170753211489,219,0 +170753211537,221,0 +170753211587,223,0 +170753211635,222,0 +170753211684,223,0 +170753211734,223,0 +170753211782,224,0 +170753211831,224,0 +170753211879,223,0 +170753211927,224,0 +170753211975,224,0 +170753212023,225,0 +170753212071,224,0 +170753212121,224,0 +170753212169,223,0 +170753212218,218,0 +170753212266,218,0 +170753212314,218,0 +170753212363,220,0 +170753212411,220,0 +170753212459,222,0 +170753212509,223,0 +170753212558,222,0 +170753212608,223,0 +170753212656,225,0 +170753212704,224,0 +170753212752,223,0 +170753212801,224,0 +170753212849,224,0 +170753212899,224,0 +170753212948,222,0 +170753212996,225,0 +170753213044,217,0 +170753213092,219,0 +170753213142,220,0 +170753213190,220,0 +170753213238,221,0 +170753213286,222,0 +170753213334,224,0 +170753213383,224,0 +170753213433,223,0 +170753213481,224,0 +170753213529,225,0 +170753213577,225,0 +170753213624,225,0 +170753213672,226,0 +170753213722,226,0 +170753213770,224,0 +170753213818,224,0 +170753213867,223,0 +170753213915,221,0 +170753213963,221,0 +170753214011,222,0 +170753214061,223,0 +170753214109,225,0 +170753214158,225,0 +170753214208,224,0 +170753214257,225,0 +170753214305,224,0 +170753214353,225,0 +170753214403,224,0 +170753214452,224,0 +170753214500,224,0 +170753214548,224,0 +170753214598,224,0 +170753214647,223,0 +170753214697,222,0 +170753214745,221,0 +170753214793,220,0 +170753214842,223,0 +170753214890,221,0 +170753214938,223,0 +170753214986,222,0 +170753215034,224,0 +170753215082,223,0 +170753215130,228,0 +170753215178,224,0 +170753215226,224,0 +170753215274,226,0 +170753215322,227,0 +170753215371,225,0 +170753215419,224,0 +170753215467,223,0 +170753215515,223,0 +170753215563,217,0 +170753215611,217,0 +170753215659,217,0 +170753215707,218,0 +170753215756,219,0 +170753215804,220,0 +170753215854,221,0 +170753215902,221,0 +170753215951,222,0 +170753215999,222,0 +170753216049,222,0 +170753216097,223,0 +170753216146,225,0 +170753216196,224,0 +170753216245,224,0 +170753216295,224,0 +170753216343,226,0 +170753216392,223,0 +170753216440,215,0 +170753216488,216,0 +170753216538,217,0 +170753216586,218,0 +170753216635,219,0 +170753216683,219,0 +170753216733,220,0 +170753216781,221,0 +170753216830,221,0 +170753216878,222,0 +170753216928,223,0 +170753216977,224,0 +170753217027,222,0 +170753217075,224,0 +170753217123,224,0 +170753217171,225,0 +170753217219,224,0 +170753217267,219,0 +170753217314,215,0 +170753217364,215,0 +170753217413,216,0 +170753217463,217,0 +170753217511,218,0 +170753217559,219,0 +170753217607,220,0 +170753217656,221,0 +170753217706,222,0 +170753217754,222,0 +170753217802,224,0 +170753217851,224,0 +170753217899,224,0 +170753217947,224,0 +170753217995,224,0 +170753218043,225,0 +170753218091,223,0 +170753218140,215,0 +170753218188,216,0 +170753218236,216,0 +170753218284,217,0 +170753218332,218,0 +170753218380,219,0 +170753218428,220,0 +170753218477,222,0 +170753218525,221,0 +170753218575,223,0 +170753218624,224,0 +170753218672,224,0 +170753218720,225,0 +170753218768,224,0 +170753218816,224,0 +170753218866,224,0 +170753218914,224,0 +170753218962,216,0 +170753219010,215,0 +170753219058,216,0 +170753219105,217,0 +170753219155,218,0 +170753219203,218,0 +170753219252,219,0 +170753219302,220,0 +170753219350,219,0 +170753219398,222,0 +170753219446,223,0 +170753219495,222,0 +170753219543,222,0 +170753219593,224,0 +170753219641,223,0 +170753219689,224,0 +170753219738,223,0 +170753219786,223,0 +170753219836,215,0 +170753219884,215,0 +170753219933,216,0 +170753219981,216,0 +170753220031,217,0 +170753220079,217,0 +170753220127,218,0 +170753220175,219,0 +170753220223,219,0 +170753220272,220,0 +170753220320,222,0 +170753220370,223,0 +170753220419,223,0 +170753220469,224,0 +170753220517,224,0 +170753220566,224,0 +170753220614,223,0 +170753220664,216,0 +170753220712,217,0 +170753220761,217,0 +170753220809,219,0 +170753220857,219,0 +170753220905,219,0 +170753220954,221,0 +170753221004,222,0 +170753221053,221,0 +170753221101,222,0 +170753221149,224,0 +170753221197,225,0 +170753221245,226,0 +170753221293,225,0 +170753221341,225,0 +170753221389,224,0 +170753221439,231,0 +170753221488,217,0 +170753221538,217,0 +170753221586,218,0 +170753221634,219,0 +170753221683,220,0 +170753221733,220,0 +170753221782,236,0 +170753221830,222,0 +170753221878,222,0 +170753221928,223,0 +170753221976,223,0 +170753222025,225,0 +170753222075,225,0 +170753222123,224,0 +170753222171,224,0 +170753222219,225,0 +170753222267,224,0 +170753222315,223,0 +170753222362,216,0 +170753222410,217,0 +170753222458,218,0 +170753222506,219,0 +170753222554,219,0 +170753222602,220,0 +170753222651,221,0 +170753222699,221,0 +170753222747,222,0 +170753222797,223,0 +170753222845,223,0 +170753222893,224,0 +170753222941,224,0 +170753222990,224,0 +170753223038,225,0 +170753223086,224,0 +170753223134,223,0 +170753223182,219,0 +170753223230,220,0 +170753223278,220,0 +170753223326,222,0 +170753223374,224,0 +170753223423,222,0 +170753223473,223,0 +170753223522,224,0 +170753223572,224,0 +170753223620,223,0 +170753223667,225,0 +170753223715,225,0 +170753223763,225,0 +170753223811,224,0 +170753223861,224,0 +170753223910,224,0 +170753223958,224,0 +170753224008,218,0 +170753224055,220,0 +170753224105,221,0 +170753224153,220,0 +170753224201,221,0 +170753224249,221,0 +170753224296,223,0 +170753224344,223,0 +170753224392,225,0 +170753224440,225,0 +170753224490,224,0 +170753224538,224,0 +170753224587,225,0 +170753224637,225,0 +170753224685,224,0 +170753224733,224,0 +170753224781,224,0 +170753224828,222,0 +170753224876,218,0 +170753224924,218,0 +170753224972,219,0 +170753225020,220,0 +170753225070,220,0 +170753225119,221,0 +170753225167,222,0 +170753225215,222,0 +170753225263,224,0 +170753225311,223,0 +170753225361,224,0 +170753225409,224,0 +170753225457,225,0 +170753225505,224,0 +170753225553,225,0 +170753225601,225,0 +170753225649,224,0 +170753225698,218,0 +170753225748,217,0 +170753225796,217,0 +170753225844,219,0 +170753225891,219,0 +170753225941,219,0 +170753225991,221,0 +170753226038,221,0 +170753226086,223,0 +170753226134,223,0 +170753226184,223,0 +170753226234,224,0 +170753226281,223,0 +170753226329,224,0 +170753226379,225,0 +170753226427,224,0 +170753226475,224,0 +170753226523,221,0 +170753226571,216,0 +170753226620,217,0 +170753226670,218,0 +170753226718,218,0 +170753226766,219,0 +170753226814,220,0 +170753226863,221,0 +170753226911,222,0 +170753226961,223,0 +170753227009,224,0 +170753227057,224,0 +170753227105,224,0 +170753227153,225,0 +170753227202,224,0 +170753227252,225,0 +170753227301,224,0 +170753227351,223,0 +170753227399,217,0 +170753227447,217,0 +170753227495,218,0 +170753227544,220,0 +170753227592,220,0 +170753227640,222,0 +170753227688,221,0 +170753227737,221,0 +170753227785,222,0 +170753227833,223,0 +170753227883,224,0 +170753227931,224,0 +170753227978,224,0 +170753228028,224,0 +170753228076,225,0 +170753228124,225,0 +170753228172,224,0 +170753228221,223,0 +170753228269,217,0 +170753228317,218,0 +170753228367,219,0 +170753228415,220,0 +170753228463,221,0 +170753228512,222,0 +170753228560,222,0 +170753228608,223,0 +170753228658,223,0 +170753228706,223,0 +170753228755,223,0 +170753228805,224,0 +170753228853,223,0 +170753228902,224,0 +170753228952,223,0 +170753229000,224,0 +170753229048,224,0 +170753229097,217,0 +170753229145,216,0 +170753229195,217,0 +170753229243,219,0 +170753229290,219,0 +170753229340,220,0 +170753229388,221,0 +170753229436,222,0 +170753229484,222,0 +170753229532,223,0 +170753229581,224,0 +170753229629,224,0 +170753229679,224,0 +170753229728,225,0 +170753229778,226,0 +170753229826,224,0 +170753229874,224,0 +170753229922,216,0 +170753229971,215,0 +170753230019,216,0 +170753230069,216,0 +170753230118,219,0 +170753230166,218,0 +170753230215,219,0 +170753230263,221,0 +170753230311,221,0 +170753230359,222,0 +170753230407,222,0 +170753230455,224,0 +170753230505,225,0 +170753230553,224,0 +170753230601,224,0 +170753230650,224,0 +170753230700,224,0 +170753230748,223,0 +170753230796,215,0 +170753230845,216,0 +170753230894,218,0 +170753230942,218,0 +170753230990,218,0 +170753231038,220,0 +170753231086,220,0 +170753231136,222,0 +170753231184,222,0 +170753231232,222,0 +170753231281,223,0 +170753231329,225,0 +170753231377,226,0 +170753231425,223,0 +170753231473,224,0 +170753231521,224,0 +170753231569,223,0 +170753231617,217,0 +170753231665,216,0 +170753231713,217,0 +170753231761,219,0 +170753231809,220,0 +170753231857,220,0 +170753231905,220,0 +170753231953,222,0 +170753232001,221,0 +170753232050,223,0 +170753232100,224,0 +170753232147,224,0 +170753232197,224,0 +170753232245,224,0 +170753232293,224,0 +170753232341,224,0 +170753232389,224,0 +170753232438,223,0 +170753232486,215,0 +170753232534,218,0 +170753232582,218,0 +170753232631,219,0 +170753232679,220,0 +170753232729,222,0 +170753232778,221,0 +170753232826,224,0 +170753232876,224,0 +170753232924,225,0 +170753232973,223,0 +170753233021,225,0 +170753233071,225,0 +170753233120,224,0 +170753233168,225,0 +170753233216,224,0 +170753233264,224,0 +170753233314,219,0 +170753233361,219,0 +170753233409,221,0 +170753233459,222,0 +170753233508,221,0 +170753233558,220,0 +170753233607,224,0 +170753233657,223,0 +170753233706,224,0 +170753233754,224,0 +170753233802,225,0 +170753233850,225,0 +170753233900,225,0 +170753233948,225,0 +170753233997,226,0 +170753234045,224,0 +170753234093,223,0 +170753234143,219,0 +170753234191,218,0 +170753234239,219,0 +170753234287,219,0 +170753234334,222,0 +170753234382,221,0 +170753234432,222,0 +170753234479,223,0 +170753234527,223,0 +170753234575,224,0 +170753234623,224,0 +170753234671,224,0 +170753234719,225,0 +170753234767,224,0 +170753234815,225,0 +170753234862,224,0 +170753234910,224,0 +170753234960,224,0 +170753235009,218,0 +170753235057,218,0 +170753235107,218,0 +170753235156,220,0 +170753235205,221,0 +170753235253,222,0 +170753235301,222,0 +170753235349,222,0 +170753235397,223,0 +170753235445,225,0 +170753235493,223,0 +170753235541,227,0 +170753235588,225,0 +170753235636,225,0 +170753235684,225,0 +170753235734,223,0 +170753235783,223,0 +170753235833,216,0 +170753235880,215,0 +170753235928,216,0 +170753235978,217,0 +170753236026,219,0 +170753236074,219,0 +170753236122,220,0 +170753236170,222,0 +170753236218,222,0 +170753236266,223,0 +170753236313,221,0 +170753236363,224,0 +170753236411,223,0 +170753236459,224,0 +170753236507,224,0 +170753236554,224,0 +170753236604,224,0 +170753236652,223,0 +170753236700,216,0 +170753236748,217,0 +170753236795,219,0 +170753236843,219,0 +170753236893,220,0 +170753236942,221,0 +170753236990,222,0 +170753237038,222,0 +170753237086,223,0 +170753237134,224,0 +170753237184,223,0 +170753237233,224,0 +170753237281,224,0 +170753237329,224,0 +170753237377,224,0 +170753237425,223,0 +170753237475,224,0 +170753237522,218,0 +170753237570,217,0 +170753237618,218,0 +170753237668,219,0 +170753237715,220,0 +170753237763,223,0 +170753237811,221,0 +170753237859,223,0 +170753237907,223,0 +170753237955,224,0 +170753238003,224,0 +170753238050,224,0 +170753238098,224,0 +170753238146,225,0 +170753238196,224,0 +170753238244,224,0 +170753238293,225,0 +170753238341,223,0 +170753238389,216,0 +170753238439,216,0 +170753238488,217,0 +170753238536,219,0 +170753238584,220,0 +170753238632,219,0 +170753238682,221,0 +170753238731,222,0 +170753238781,222,0 +170753238830,222,0 +170753238880,223,0 +170753238928,224,0 +170753238977,223,0 +170753239025,224,0 +170753239075,226,0 +170753239124,225,0 +170753239174,223,0 +170753239223,216,0 +170753239273,216,0 +170753239321,217,0 +170753239369,218,0 +170753239418,219,0 +170753239468,219,0 +170753239516,219,0 +170753239563,220,0 +170753239611,221,0 +170753239661,221,0 +170753239709,222,0 +170753239757,222,0 +170753239806,223,0 +170753239854,224,0 +170753239902,224,0 +170753239950,224,0 +170753239998,224,0 +170753240048,216,0 +170753240097,215,0 +170753240145,216,0 +170753240195,217,0 +170753240243,217,0 +170753240292,219,0 +170753240340,219,0 +170753240388,218,0 +170753240437,220,0 +170753240485,220,0 +170753240535,221,0 +170753240583,222,0 +170753240631,223,0 +170753240679,224,0 +170753240727,224,0 +170753240777,226,0 +170753240825,224,0 +170753240873,223,0 +170753240922,216,0 +170753240970,216,0 +170753241018,218,0 +170753241068,218,0 +170753241117,218,0 +170753241165,220,0 +170753241215,219,0 +170753241262,220,0 +170753241310,221,0 +170753241358,220,0 +170753241408,222,0 +170753241458,222,0 +170753241505,224,0 +170753241553,223,0 +170753241603,226,0 +170753241651,223,0 +170753241699,223,0 +170753241748,218,0 +170753241796,218,0 +170753241846,218,0 +170753241894,219,0 +170753241942,218,0 +170753241991,220,0 +170753242039,220,0 +170753242087,222,0 +170753242137,224,0 +170753242184,220,0 +170753242232,224,0 +170753242282,225,0 +170753242331,225,0 +170753242381,224,0 +170753242429,223,0 +170753242477,224,0 +170753242524,224,0 +170753242572,217,0 +170753242622,218,0 +170753242670,219,0 +170753242717,220,0 +170753242765,220,0 +170753242813,222,0 +170753242861,222,0 +170753242909,223,0 +170753242957,224,0 +170753243005,224,0 +170753243053,222,0 +170753243101,225,0 +170753243149,225,0 +170753243197,224,0 +170753243246,223,0 +170753243294,223,0 +170753243342,223,0 +170753243390,223,0 +170753243440,217,0 +170753243489,217,0 +170753243537,218,0 +170753243585,220,0 +170753243633,220,0 +170753243683,221,0 +170753243731,223,0 +170753243780,222,0 +170753243830,224,0 +170753243879,224,0 +170753243929,224,0 +170753243977,225,0 +170753244025,225,0 +170753244073,225,0 +170753244122,225,0 +170753244170,224,0 +170753244218,223,0 +170753244266,217,0 +170753244314,218,0 +170753244362,218,0 +170753244410,219,0 +170753244459,221,0 +170753244507,221,0 +170753244555,222,0 +170753244603,222,0 +170753244651,224,0 +170753244699,222,0 +170753244747,224,0 +170753244796,224,0 +170753244844,224,0 +170753244894,224,0 +170753244943,225,0 +170753244993,224,0 +170753245042,223,0 +170753245090,222,0 +170753245140,217,0 +170753245188,218,0 +170753245236,218,0 +170753245284,220,0 +170753245332,221,0 +170753245380,221,0 +170753245429,223,0 +170753245479,222,0 +170753245528,223,0 +170753245578,224,0 +170753245626,224,0 +170753245675,225,0 +170753245723,224,0 +170753245771,226,0 +170753245819,225,0 +170753245869,223,0 +170753245918,224,0 +170753245966,218,0 +170753246016,217,0 +170753246064,218,0 +170753246112,218,0 +170753246159,220,0 +170753246207,220,0 +170753246255,221,0 +170753246303,221,0 +170753246351,223,0 +170753246399,223,0 +170753246447,225,0 +170753246495,224,0 +170753246545,223,0 +170753246593,226,0 +170753246642,224,0 +170753246692,225,0 +170753246740,223,0 +170753246789,218,0 +170753246837,217,0 +170753246885,217,0 +170753246933,218,0 +170753246981,220,0 +170753247029,221,0 +170753247077,221,0 +170753247125,221,0 +170753247173,222,0 +170753247222,224,0 +170753247272,224,0 +170753247320,224,0 +170753247369,224,0 +170753247417,225,0 +170753247467,227,0 +170753247515,224,0 +170753247564,223,0 +170753247612,223,0 +170753247660,217,0 +170753247710,217,0 +170753247758,218,0 +170753247807,218,0 +170753247855,220,0 +170753247903,220,0 +170753247953,221,0 +170753248002,221,0 +170753248050,222,0 +170753248098,221,0 +170753248146,223,0 +170753248194,225,0 +170753248242,224,0 +170753248290,224,0 +170753248339,224,0 +170753248387,224,0 +170753248435,224,0 +170753248483,224,0 +170753248531,216,0 +170753248579,217,0 +170753248629,217,0 +170753248677,220,0 +170753248726,219,0 +170753248776,219,0 +170753248824,221,0 +170753248872,220,0 +170753248921,221,0 +170753248969,222,0 +170753249017,223,0 +170753249065,224,0 +170753249113,224,0 +170753249161,223,0 +170753249209,224,0 +170753249257,225,0 +170753249305,222,0 +170753249353,224,0 +170753249401,228,0 +170753249449,224,0 +170753249497,217,0 +170753249546,217,0 +170753249594,217,0 +170753249642,218,0 +170753249692,220,0 +170753249741,220,0 +170753249789,220,0 +170753249839,220,0 +170753249887,222,0 +170753249935,221,0 +170753249983,224,0 +170753250032,224,0 +170753250082,224,0 +170753250130,225,0 +170753250178,224,0 +170753250227,225,0 +170753250277,225,0 +170753250325,224,0 +170753250372,224,0 +170753250422,216,0 +170753250470,217,0 +170753250518,219,0 +170753250567,218,0 +170753250617,219,0 +170753250665,220,0 +170753250713,220,0 +170753250761,222,0 +170753250810,221,0 +170753250860,222,0 +170753250908,222,0 +170753250956,224,0 +170753251005,224,0 +170753251053,224,0 +170753251101,223,0 +170753251151,223,0 +170753251199,224,0 +170753251248,224,0 +170753251298,223,0 +170753251347,218,0 +170753251395,218,0 +170753251443,219,0 +170753251493,220,0 +170753251542,221,0 +170753251590,221,0 +170753251638,222,0 +170753251686,222,0 +170753251734,222,0 +170753251782,223,0 +170753251830,225,0 +170753251878,223,0 +170753251926,224,0 +170753251974,223,0 +170753252022,224,0 +170753252070,223,0 +170753252118,223,0 +170753252167,225,0 +170753252217,223,0 +170753252265,219,0 +170753252313,217,0 +170753252361,218,0 +170753252409,219,0 +170753252457,220,0 +170753252506,221,0 +170753252554,222,0 +170753252602,221,0 +170753252650,222,0 +170753252698,224,0 +170753252746,223,0 +170753252794,224,0 +170753252842,226,0 +170753252891,225,0 +170753252939,226,0 +170753252987,223,0 +170753253035,224,0 +170753253085,224,0 +170753253133,223,0 +170753253181,222,0 +170753253229,217,0 +170753253276,218,0 +170753253324,220,0 +170753253372,219,0 +170753253420,220,0 +170753253468,218,0 +170753253518,222,0 +170753253566,223,0 +170753253614,223,0 +170753253662,223,0 +170753253710,223,0 +170753253758,223,0 +170753253807,224,0 +170753253855,224,0 +170753253903,225,0 +170753253951,224,0 +170753253999,224,0 +170753254047,223,0 +170753254095,224,0 +170753254143,216,0 +170753254192,215,0 +170753254242,217,0 +170753254290,217,0 +170753254340,218,0 +170753254389,219,0 +170753254437,220,0 +170753254485,220,0 +170753254533,220,0 +170753254581,221,0 +170753254629,222,0 +170753254678,223,0 +170753254726,224,0 +170753254774,223,0 +170753254824,225,0 +170753254873,224,0 +170753254921,224,0 +170753254969,224,0 +170753255017,223,0 +170753255065,216,0 +170753255113,215,0 +170753255161,215,0 +170753255210,216,0 +170753255258,217,0 +170753255306,218,0 +170753255354,218,0 +170753255404,219,0 +170753255453,220,0 +170753255501,221,0 +170753255549,221,0 +170753255597,223,0 +170753255645,222,0 +170753255693,222,0 +170753255741,224,0 +170753255789,224,0 +170753255838,224,0 +170753255886,224,0 +170753255934,223,0 +170753255983,217,0 +170753256031,216,0 +170753256081,217,0 +170753256130,217,0 +170753256178,218,0 +170753256228,219,0 +170753256276,219,0 +170753256324,219,0 +170753256372,220,0 +170753256420,220,0 +170753256468,222,0 +170753256517,222,0 +170753256565,222,0 +170753256613,222,0 +170753256663,223,0 +170753256711,224,0 +170753256760,224,0 +170753256808,224,0 +170753256858,223,0 +170753256907,222,0 +170753256955,216,0 +170753257003,216,0 +170753257053,218,0 +170753257102,218,0 +170753257150,219,0 +170753257198,220,0 +170753257246,221,0 +170753257294,221,0 +170753257342,221,0 +170753257390,223,0 +170753257438,224,0 +170753257486,223,0 +170753257535,223,0 +170753257585,224,0 +170753257633,224,0 +170753257681,224,0 +170753257730,224,0 +170753257778,224,0 +170753257828,223,0 +170753257877,217,0 +170753257925,217,0 +170753257973,218,0 +170753258021,219,0 +170753258069,219,0 +170753258119,220,0 +170753258168,220,0 +170753258216,222,0 +170753258265,224,0 +170753258313,223,0 +170753258361,223,0 +170753258409,224,0 +170753258457,224,0 +170753258507,225,0 +170753258556,225,0 +170753258606,224,0 +170753258654,224,0 +170753258702,224,0 +170753258750,223,0 +170753258798,219,0 +170753258847,218,0 +170753258897,219,0 +170753258945,221,0 +170753258993,222,0 +170753259041,221,0 +170753259089,222,0 +170753259137,222,0 +170753259185,223,0 +170753259232,223,0 +170753259282,226,0 +170753259330,223,0 +170753259380,225,0 +170753259427,224,0 +170753259475,224,0 +170753259523,224,0 +170753259571,225,0 +170753259621,223,0 +170753259669,223,0 +170753259718,219,0 +170753259768,219,0 +170753259816,219,0 +170753259864,219,0 +170753259912,220,0 +170753259960,221,0 +170753260008,222,0 +170753260057,221,0 +170753260107,223,0 +170753260155,224,0 +170753260204,224,0 +170753260254,225,0 +170753260303,223,0 +170753260351,223,0 +170753260399,225,0 +170753260447,224,0 +170753260495,225,0 +170753260543,224,0 +170753260590,224,0 +170753260638,223,0 +170753260686,215,0 +170753260734,215,0 +170753260784,216,0 +170753260831,217,0 +170753260879,218,0 +170753260927,218,0 +170753260975,219,0 +170753261023,220,0 +170753261071,221,0 +170753261119,222,0 +170753261168,221,0 +170753261218,222,0 +170753261267,224,0 +170753261315,223,0 +170753261363,224,0 +170753261411,225,0 +170753261460,225,0 +170753261509,224,0 +170753261557,222,0 +170753261605,215,0 +170753261653,215,0 +170753261702,215,0 +170753261752,216,0 +170753261800,217,0 +170753261848,217,0 +170753261896,218,0 +170753261944,218,0 +170753261991,219,0 +170753262039,220,0 +170753262087,220,0 +170753262135,221,0 +170753262183,223,0 +170753262231,222,0 +170753262279,223,0 +170753262327,224,0 +170753262375,224,0 +170753262423,224,0 +170753262472,223,0 +170753262520,216,0 +170753262568,215,0 +170753262616,216,0 +170753262665,217,0 +170753262715,218,0 +170753262764,218,0 +170753262812,219,0 +170753262860,220,0 +170753262908,220,0 +170753262957,222,0 +170753263007,222,0 +170753263054,223,0 +170753263102,223,0 +170753263150,223,0 +170753263198,224,0 +170753263246,224,0 +170753263295,224,0 +170753263343,224,0 +170753263391,224,0 +170753263439,216,0 +170753263487,215,0 +170753263535,215,0 +170753263583,216,0 +170753263630,217,0 +170753263678,218,0 +170753263726,218,0 +170753263774,218,0 +170753263822,220,0 +170753263870,221,0 +170753263918,221,0 +170753263966,221,0 +170753264013,222,0 +170753264063,223,0 +170753264111,224,0 +170753264160,224,0 +170753264208,225,0 +170753264256,224,0 +170753264304,224,0 +170753264352,223,0 +170753264400,216,0 +170753264447,215,0 +170753264495,215,0 +170753264545,216,0 +170753264593,217,0 +170753264642,218,0 +170753264690,218,0 +170753264738,219,0 +170753264787,220,0 +170753264835,220,0 +170753264885,221,0 +170753264933,223,0 +170753264982,224,0 +170753265030,224,0 +170753265078,226,0 +170753265126,229,0 +170753265173,225,0 +170753265221,225,0 +170753265271,223,0 +170753265320,216,0 +170753265368,215,0 +170753265416,215,0 +170753265464,215,0 +170753265513,215,0 +170753265561,215,0 +170753265611,216,0 +170753265659,218,0 +170753265708,217,0 +170753265756,218,0 +170753265805,220,0 +170753265853,221,0 +170753265901,221,0 +170753265949,222,0 +170753265997,222,0 +170753266046,222,0 +170753266094,223,0 +170753266142,224,0 +170753266190,223,0 +170753266239,222,0 +170753266287,215,0 +170753266335,215,0 +170753266383,215,0 +170753266431,215,0 +170753266479,215,0 +170753266527,216,0 +170753266576,217,0 +170753266626,217,0 +170753266674,219,0 +170753266723,219,0 +170753266771,220,0 +170753266819,221,0 +170753266867,220,0 +170753266914,222,0 +170753266964,224,0 +170753267012,223,0 +170753267060,224,0 +170753267108,225,0 +170753267155,224,0 +170753267203,215,0 +170753267251,214,0 +170753267301,214,0 +170753267350,215,0 +170753267398,215,0 +170753267446,213,0 +170753267494,216,0 +170753267542,216,0 +170753267590,217,0 +170753267638,218,0 +170753267687,220,0 +170753267735,220,0 +170753267783,220,0 +170753267831,221,0 +170753267879,223,0 +170753267927,223,0 +170753267974,223,0 +170753268024,223,0 +170753268073,223,0 +170753268123,216,0 +170753268171,214,0 +170753268219,215,0 +170753268266,215,0 +170753268316,215,0 +170753268364,215,0 +170753268412,216,0 +170753268460,216,0 +170753268507,217,0 +170753268555,218,0 +170753268603,219,0 +170753268651,219,0 +170753268699,219,0 +170753268747,220,0 +170753268795,222,0 +170753268844,222,0 +170753268892,223,0 +170753268940,223,0 +170753268988,223,0 +170753269036,225,0 +170753269084,215,0 +170753269132,215,0 +170753269181,215,0 +170753269229,215,0 +170753269277,216,0 +170753269325,217,0 +170753269373,218,0 +170753269421,218,0 +170753269470,218,0 +170753269518,221,0 +170753269566,220,0 +170753269614,221,0 +170753269662,222,0 +170753269709,222,0 +170753269757,223,0 +170753269805,223,0 +170753269855,223,0 +170753269904,225,0 +170753269952,223,0 +170753270000,216,0 +170753270048,215,0 +170753270096,214,0 +170753270144,215,0 +170753270193,216,0 +170753270241,217,0 +170753270289,217,0 +170753270337,218,0 +170753270386,218,0 +170753270434,219,0 +170753270482,221,0 +170753270531,221,0 +170753270579,223,0 +170753270629,223,0 +170753270677,223,0 +170753270725,224,0 +170753270774,224,0 +170753270822,225,0 +170753270872,224,0 +170753270920,216,0 +170753270968,215,0 +170753271016,216,0 +170753271065,216,0 +170753271113,218,0 +170753271163,217,0 +170753271211,219,0 +170753271259,219,0 +170753271308,219,0 +170753271356,220,0 +170753271406,221,0 +170753271455,221,0 +170753271505,223,0 +170753271554,224,0 +170753271602,223,0 +170753271650,224,0 +170753271698,225,0 +170753271748,224,0 +170753271796,224,0 +170753271844,223,0 +170753271893,215,0 +170753271942,216,0 +170753271990,217,0 +170753272040,218,0 +170753272088,218,0 +170753272137,220,0 +170753272185,221,0 +170753272235,221,0 +170753272283,221,0 +170753272330,222,0 +170753272378,223,0 +170753272426,224,0 +170753272474,224,0 +170753272522,225,0 +170753272570,225,0 +170753272619,223,0 +170753272669,224,0 +170753272718,223,0 +170753272766,223,0 +170753272814,216,0 +170753272862,216,0 +170753272912,218,0 +170753272960,219,0 +170753273008,220,0 +170753273057,220,0 +170753273107,220,0 +170753273155,222,0 +170753273204,222,0 +170753273254,223,0 +170753273301,224,0 +170753273349,224,0 +170753273397,224,0 +170753273447,225,0 +170753273496,224,0 +170753273544,224,0 +170753273592,224,0 +170753273640,224,0 +170753273688,223,0 +170753273736,218,0 +170753273786,218,0 +170753273834,218,0 +170753273883,219,0 +170753273933,219,0 +170753273982,220,0 +170753274030,221,0 +170753274078,221,0 +170753274126,221,0 +170753274175,223,0 +170753274223,224,0 +170753274273,224,0 +170753274321,222,0 +170753274369,225,0 +170753274417,224,0 +170753274465,225,0 +170753274512,224,0 +170753274560,224,0 +170753274608,223,0 +170753274658,218,0 +170753274705,218,0 +170753274753,218,0 +170753274803,219,0 +170753274851,220,0 +170753274899,220,0 +170753274947,221,0 +170753274994,221,0 +170753275042,222,0 +170753275090,222,0 +170753275140,223,0 +170753275188,224,0 +170753275235,224,0 +170753275285,224,0 +170753275333,227,0 +170753275381,224,0 +170753275429,225,0 +170753275479,223,0 +170753275526,224,0 +170753275574,224,0 +170753275622,217,0 +170753275670,215,0 +170753275718,217,0 +170753275768,217,0 +170753275816,218,0 +170753275864,219,0 +170753275912,219,0 +170753275959,221,0 +170753276007,221,0 +170753276055,221,0 +170753276103,222,0 +170753276151,222,0 +170753276199,224,0 +170753276249,224,0 +170753276298,228,0 +170753276348,224,0 +170753276397,223,0 +170753276445,224,0 +170753276493,223,0 +170753276543,216,0 +170753276592,214,0 +170753276640,215,0 +170753276690,215,0 +170753276738,215,0 +170753276787,216,0 +170753276837,217,0 +170753276885,218,0 +170753276933,218,0 +170753276981,218,0 +170753277030,220,0 +170753277080,222,0 +170753277129,222,0 +170753277177,223,0 +170753277225,224,0 +170753277273,223,0 +170753277323,223,0 +170753277372,223,0 +170753277422,223,0 +170753277470,216,0 +170753277519,215,0 +170753277569,215,0 +170753277618,215,0 +170753277666,215,0 +170753277714,215,0 +170753277763,215,0 +170753277813,217,0 +170753277861,218,0 +170753277910,218,0 +170753277958,219,0 +170753278006,220,0 +170753278054,217,0 +170753278102,221,0 +170753278150,221,0 +170753278198,222,0 +170753278248,222,0 +170753278297,222,0 +170753278345,223,0 +170753278393,222,0 +170753278443,215,0 +170753278491,215,0 +170753278539,215,0 +170753278587,215,0 +170753278636,217,0 +170753278684,217,0 +170753278732,217,0 +170753278780,217,0 +170753278830,219,0 +170753278877,220,0 +170753278925,220,0 +170753278973,220,0 +170753279023,221,0 +170753279072,222,0 +170753279120,223,0 +170753279170,222,0 +170753279219,223,0 +170753279267,222,0 +170753279315,223,0 +170753279365,216,0 +170753279413,214,0 +170753279462,215,0 +170753279510,216,0 +170753279558,216,0 +170753279608,217,0 +170753279656,218,0 +170753279704,219,0 +170753279752,220,0 +170753279800,221,0 +170753279849,221,0 +170753279897,222,0 +170753279946,222,0 +170753279996,223,0 +170753280044,225,0 +170753280093,224,0 +170753280143,225,0 +170753280193,223,0 +170753280242,224,0 +170753280292,216,0 +170753280340,214,0 +170753280389,215,0 +170753280439,216,0 +170753280487,217,0 +170753280535,218,0 +170753280583,219,0 +170753280632,218,0 +170753280680,220,0 +170753280730,220,0 +170753280779,222,0 +170753280827,222,0 +170753280877,222,0 +170753280925,223,0 +170753280973,224,0 +170753281021,224,0 +170753281068,223,0 +170753281118,223,0 +170753281168,223,0 +170753281217,216,0 +170753281267,215,0 +170753281316,215,0 +170753281364,216,0 +170753281412,216,0 +170753281460,217,0 +170753281508,219,0 +170753281556,218,0 +170753281605,219,0 +170753281653,220,0 +170753281701,221,0 +170753281749,221,0 +170753281799,223,0 +170753281847,222,0 +170753281896,224,0 +170753281946,223,0 +170753281995,224,0 +170753282045,224,0 +170753282094,224,0 +170753282142,223,0 +170753282190,215,0 +170753282240,215,0 +170753282288,216,0 +170753282336,216,0 +170753282385,217,0 +170753282433,218,0 +170753282481,219,0 +170753282531,219,0 +170753282580,221,0 +170753282628,221,0 +170753282678,221,0 +170753282727,223,0 +170753282777,224,0 +170753282825,226,0 +170753282873,224,0 +170753282922,224,0 +170753282972,224,0 +170753283021,225,0 +170753283071,224,0 +170753283121,215,0 +170753283169,215,0 +170753283218,216,0 +170753283266,217,0 +170753283315,218,0 +170753283365,218,0 +170753283413,219,0 +170753283461,220,0 +170753283509,221,0 +170753283558,221,0 +170753283608,224,0 +170753283656,223,0 +170753283704,223,0 +170753283753,223,0 +170753283801,223,0 +170753283851,224,0 +170753283899,224,0 +170753283947,223,0 +170753283995,223,0 +170753284044,216,0 +170753284092,216,0 +170753284142,217,0 +170753284190,217,0 +170753284238,216,0 +170753284286,219,0 +170753284334,219,0 +170753284382,220,0 +170753284430,221,0 +170753284477,222,0 +170753284525,221,0 +170753284575,222,0 +170753284623,223,0 +170753284671,222,0 +170753284720,224,0 +170753284768,224,0 +170753284816,224,0 +170753284864,224,0 +170753284912,223,0 +170753284960,216,0 +170753285007,216,0 +170753285057,216,0 +170753285105,217,0 +170753285153,218,0 +170753285202,218,0 +170753285252,219,0 +170753285300,220,0 +170753285347,221,0 +170753285395,221,0 +170753285443,223,0 +170753285492,223,0 +170753285540,224,0 +170753285590,223,0 +170753285639,224,0 +170753285689,224,0 +170753285738,225,0 +170753285786,224,0 +170753285834,223,0 +170753285882,223,0 +170753285930,216,0 +170753285978,216,0 +170753286027,217,0 +170753286075,217,0 +170753286123,218,0 +170753286171,219,0 +170753286219,219,0 +170753286269,220,0 +170753286318,221,0 +170753286367,221,0 +170753286415,222,0 +170753286465,222,0 +170753286513,223,0 +170753286561,223,0 +170753286610,224,0 +170753286660,225,0 +170753286708,224,0 +170753286757,223,0 +170753286805,224,0 +170753286853,216,0 +170753286903,216,0 +170753286951,217,0 +170753286999,217,0 +170753287048,218,0 +170753287098,218,0 +170753287147,219,0 +170753287195,219,0 +170753287245,221,0 +170753287294,222,0 +170753287344,222,0 +170753287392,223,0 +170753287441,223,0 +170753287491,223,0 +170753287539,225,0 +170753287588,224,0 +170753287636,224,0 +170753287684,224,0 +170753287732,223,0 +170753287782,216,0 +170753287830,215,0 +170753287878,216,0 +170753287925,217,0 +170753287975,217,0 +170753288024,218,0 +170753288074,219,0 +170753288123,221,0 +170753288171,221,0 +170753288219,220,0 +170753288267,221,0 +170753288317,222,0 +170753288365,222,0 +170753288413,223,0 +170753288461,223,0 +170753288509,223,0 +170753288558,224,0 +170753288608,224,0 +170753288657,223,0 +170753288705,217,0 +170753288755,214,0 +170753288803,215,0 +170753288852,215,0 +170753288900,216,0 +170753288948,216,0 +170753288996,218,0 +170753289043,218,0 +170753289091,219,0 +170753289139,220,0 +170753289187,220,0 +170753289237,221,0 +170753289285,222,0 +170753289333,222,0 +170753289380,223,0 +170753289428,224,0 +170753289476,223,0 +170753289524,224,0 +170753289572,223,0 +170753289620,224,0 +170753289668,215,0 +170753289717,215,0 +170753289767,214,0 +170753289815,214,0 +170753289863,216,0 +170753289911,216,0 +170753289959,217,0 +170753290007,217,0 +170753290055,219,0 +170753290103,219,0 +170753290152,220,0 +170753290202,221,0 +170753290250,222,0 +170753290297,222,0 +170753290345,223,0 +170753290393,223,0 +170753290441,223,0 +170753290489,223,0 +170753290537,223,0 +170753290587,216,0 +170753290635,214,0 +170753290683,215,0 +170753290732,215,0 +170753290782,215,0 +170753290831,216,0 +170753290881,217,0 +170753290930,217,0 +170753290980,216,0 +170753291029,219,0 +170753291079,220,0 +170753291128,223,0 +170753291178,222,0 +170753291226,223,0 +170753291275,222,0 +170753291323,223,0 +170753291371,219,0 +170753291421,223,0 +170753291469,224,0 +170753291517,216,0 +170753291565,214,0 +170753291614,214,0 +170753291662,215,0 +170753291712,215,0 +170753291761,215,0 +170753291811,215,0 +170753291858,217,0 +170753291906,217,0 +170753291954,219,0 +170753292002,219,0 +170753292050,222,0 +170753292098,221,0 +170753292146,223,0 +170753292194,224,0 +170753292242,223,0 +170753292291,224,0 +170753292339,225,0 +170753292387,225,0 +170753292437,223,0 +170753292485,214,0 +170753292532,214,0 +170753292582,215,0 +170753292630,214,0 +170753292678,215,0 +170753292727,215,0 +170753292775,214,0 +170753292825,215,0 +170753292873,217,0 +170753292920,217,0 +170753292970,219,0 +170753293018,220,0 +170753293066,221,0 +170753293114,222,0 +170753293162,222,0 +170753293210,221,0 +170753293258,224,0 +170753293306,223,0 +170753293354,223,0 +170753293403,215,0 +170753293451,215,0 +170753293499,215,0 +170753293549,215,0 +170753293598,215,0 +170753293646,215,0 +170753293694,216,0 +170753293742,217,0 +170753293790,218,0 +170753293838,219,0 +170753293887,220,0 +170753293937,222,0 +170753293985,222,0 +170753294033,225,0 +170753294082,225,0 +170753294130,224,0 +170753294180,224,0 +170753294228,223,0 +170753294276,223,0 +170753294324,216,0 +170753294373,214,0 +170753294421,215,0 +170753294469,215,0 +170753294517,215,0 +170753294565,216,0 +170753294614,215,0 +170753294664,216,0 +170753294712,216,0 +170753294760,216,0 +170753294808,218,0 +170753294856,218,0 +170753294904,219,0 +170753294953,220,0 +170753295003,221,0 +170753295051,221,0 +170753295099,222,0 +170753295147,223,0 +170753295196,225,0 +170753295246,216,0 +170753295294,215,0 +170753295341,215,0 +170753295389,215,0 +170753295437,215,0 +170753295487,216,0 +170753295535,216,0 +170753295584,216,0 +170753295634,217,0 +170753295682,218,0 +170753295730,218,0 +170753295779,219,0 +170753295829,220,0 +170753295878,220,0 +170753295928,220,0 +170753295976,221,0 +170753296024,222,0 +170753296072,222,0 +170753296120,223,0 +170753296169,224,0 +170753296219,215,0 +170753296267,215,0 +170753296315,216,0 +170753296364,217,0 +170753296414,218,0 +170753296462,219,0 +170753296510,220,0 +170753296559,220,0 +170753296609,221,0 +170753296657,222,0 +170753296706,222,0 +170753296754,224,0 +170753296804,224,0 +170753296852,224,0 +170753296899,224,0 +170753296947,225,0 +170753296995,225,0 +170753297045,224,0 +170753297093,224,0 +170753297140,215,0 +170753297188,215,0 +170753297236,216,0 +170753297284,218,0 +170753297332,218,0 +170753297380,220,0 +170753297428,220,0 +170753297476,220,0 +170753297525,221,0 +170753297573,221,0 +170753297622,223,0 +170753297670,223,0 +170753297718,225,0 +170753297766,224,0 +170753297814,224,0 +170753297863,223,0 +170753297913,223,0 +170753297961,224,0 +170753298009,223,0 +170753298058,215,0 +170753298106,214,0 +170753298154,215,0 +170753298202,215,0 +170753298251,216,0 +170753298299,217,0 +170753298347,217,0 +170753298395,218,0 +170753298443,219,0 +170753298491,220,0 +170753298540,220,0 +170753298588,221,0 +170753298636,222,0 +170753298684,222,0 +170753298733,222,0 +170753298782,225,0 +170753298832,224,0 +170753298880,223,0 +170753298928,224,0 +170753298976,222,0 +170753299025,214,0 +170753299073,215,0 +170753299121,215,0 +170753299169,215,0 +170753299218,216,0 +170753299266,217,0 +170753299314,217,0 +170753299362,218,0 +170753299410,218,0 +170753299458,219,0 +170753299505,220,0 +170753299553,222,0 +170753299601,222,0 +170753299649,225,0 +170753299697,222,0 +170753299746,223,0 +170753299794,222,0 +170753299842,223,0 +170753299890,223,0 +170753299939,215,0 +170753299989,214,0 +170753300037,215,0 +170753300085,214,0 +170753300133,215,0 +170753300180,216,0 +170753300228,217,0 +170753300276,217,0 +170753300324,218,0 +170753300373,218,0 +170753300423,219,0 +170753300471,221,0 +170753300519,221,0 +170753300567,222,0 +170753300614,222,0 +170753300664,222,0 +170753300712,222,0 +170753300760,223,0 +170753300807,223,0 +170753300855,217,0 +170753300903,216,0 +170753300951,217,0 +170753300999,218,0 +170753301047,216,0 +170753301095,218,0 +170753301143,219,0 +170753301193,222,0 +170753301242,221,0 +170753301290,222,0 +170753301338,222,0 +170753301386,223,0 +170753301434,223,0 +170753301481,225,0 +170753301531,224,0 +170753301580,224,0 +170753301628,224,0 +170753301676,224,0 +170753301724,223,0 +170753301774,218,0 +170753301821,216,0 +170753301869,217,0 +170753301917,218,0 +170753301967,219,0 +170753302016,220,0 +170753302064,220,0 +170753302112,220,0 +170753302161,221,0 +170753302209,221,0 +170753302257,224,0 +170753302305,222,0 +170753302354,223,0 +170753302402,224,0 +170753302450,224,0 +170753302498,228,0 +170753302546,225,0 +170753302594,224,0 +170753302642,224,0 +170753302691,224,0 +170753302739,216,0 +170753302789,216,0 +170753302838,217,0 +170753302888,218,0 +170753302937,218,0 +170753302987,219,0 +170753303036,220,0 +170753303086,221,0 +170753303135,221,0 +170753303183,222,0 +170753303231,223,0 +170753303281,223,0 +170753303329,224,0 +170753303378,224,0 +170753303426,224,0 +170753303474,226,0 +170753303524,222,0 +170753303571,221,0 +170753303619,223,0 +170753303667,217,0 +170753303715,216,0 +170753303763,217,0 +170753303811,218,0 +170753303859,218,0 +170753303907,220,0 +170753303955,222,0 +170753304004,220,0 +170753304052,221,0 +170753304100,221,0 +170753304148,223,0 +170753304196,223,0 +170753304244,224,0 +170753304293,225,0 +170753304343,224,0 +170753304392,224,0 +170753304442,224,0 +170753304492,224,0 +170753304541,223,0 +170753304589,218,0 +170753304637,217,0 +170753304685,217,0 +170753304733,218,0 +170753304781,219,0 +170753304829,219,0 +170753304878,220,0 +170753304928,220,0 +170753304976,223,0 +170753305024,222,0 +170753305074,222,0 +170753305123,223,0 +170753305173,225,0 +170753305221,224,0 +170753305268,226,0 +170753305316,225,0 +170753305364,225,0 +170753305414,224,0 +170753305463,223,0 +170753305513,216,0 +170753305561,216,0 +170753305610,216,0 +170753305659,217,0 +170753305707,217,0 +170753305755,218,0 +170753305803,220,0 +170753305851,220,0 +170753305899,221,0 +170753305948,223,0 +170753305996,223,0 +170753306046,224,0 +170753306093,223,0 +170753306141,223,0 +170753306191,224,0 +170753306240,224,0 +170753306288,224,0 +170753306336,223,0 +170753306384,224,0 +170753306432,223,0 +170753306480,215,0 +170753306528,215,0 +170753306576,215,0 +170753306623,216,0 +170753306671,217,0 +170753306719,218,0 +170753306767,219,0 +170753306816,219,0 +170753306864,219,0 +170753306914,221,0 +170753306963,224,0 +170753307013,222,0 +170753307061,223,0 +170753307108,224,0 +170753307156,224,0 +170753307206,224,0 +170753307254,225,0 +170753307302,224,0 +170753307351,223,0 +170753307399,215,0 +170753307447,215,0 +170753307495,215,0 +170753307543,216,0 +170753307592,217,0 +170753307640,218,0 +170753307689,219,0 +170753307737,220,0 +170753307785,220,0 +170753307833,220,0 +170753307883,221,0 +170753307931,222,0 +170753307980,223,0 +170753308028,224,0 +170753308076,224,0 +170753308124,225,0 +170753308173,224,0 +170753308223,223,0 +170753308271,223,0 +170753308319,216,0 +170753308367,215,0 +170753308416,215,0 +170753308464,217,0 +170753308514,217,0 +170753308562,219,0 +170753308611,219,0 +170753308661,220,0 +170753308709,220,0 +170753308757,219,0 +170753308806,220,0 +170753308856,221,0 +170753308905,222,0 +170753308953,223,0 +170753309001,223,0 +170753309049,221,0 +170753309097,223,0 +170753309147,224,0 +170753309196,224,0 +170753309246,216,0 +170753309294,215,0 +170753309343,214,0 +170753309393,215,0 +170753309441,217,0 +170753309489,217,0 +170753309537,219,0 +170753309585,218,0 +170753309633,219,0 +170753309681,221,0 +170753309729,221,0 +170753309778,222,0 +170753309828,223,0 +170753309876,223,0 +170753309923,222,0 +170753309971,226,0 +170753310019,223,0 +170753310067,224,0 +170753310115,224,0 +170753310163,223,0 +170753310213,215,0 +170753310262,215,0 +170753310312,215,0 +170753310361,216,0 +170753310409,217,0 +170753310457,217,0 +170753310505,218,0 +170753310555,219,0 +170753310604,220,0 +170753310652,220,0 +170753310700,221,0 +170753310748,222,0 +170753310796,222,0 +170753310846,221,0 +170753310894,223,0 +170753310942,223,0 +170753310991,225,0 +170753311041,224,0 +170753311088,222,0 +170753311136,214,0 +170753311184,215,0 +170753311232,214,0 +170753311280,215,0 +170753311328,215,0 +170753311376,216,0 +170753311424,217,0 +170753311474,217,0 +170753311523,218,0 +170753311571,219,0 +170753311621,219,0 +170753311669,220,0 +170753311717,221,0 +170753311765,222,0 +170753311812,222,0 +170753311860,223,0 +170753311908,224,0 +170753311958,223,0 +170753312006,223,0 +170753312054,215,0 +170753312103,214,0 +170753312151,214,0 +170753312199,214,0 +170753312249,215,0 +170753312297,216,0 +170753312345,216,0 +170753312394,217,0 +170753312444,218,0 +170753312492,218,0 +170753312540,220,0 +170753312588,220,0 +170753312637,221,0 +170753312685,222,0 +170753312735,222,0 +170753312783,223,0 +170753312831,222,0 +170753312880,222,0 +170753312930,225,0 +170753312979,216,0 +170753313027,215,0 +170753313075,215,0 +170753313123,215,0 +170753313171,216,0 +170753313219,217,0 +170753313266,218,0 +170753313314,218,0 +170753313364,219,0 +170753313413,220,0 +170753313461,220,0 +170753313509,222,0 +170753313559,222,0 +170753313608,222,0 +170753313658,224,0 +170753313706,223,0 +170753313754,223,0 +170753313802,224,0 +170753313850,224,0 +170753313898,216,0 +170753313947,215,0 +170753313995,216,0 +170753314043,217,0 +170753314093,218,0 +170753314142,218,0 +170753314191,218,0 +170753314239,218,0 +170753314289,220,0 +170753314337,220,0 +170753314386,223,0 +170753314434,221,0 +170753314484,223,0 +170753314533,223,0 +170753314583,224,0 +170753314631,223,0 +170753314680,224,0 +170753314728,225,0 +170753314776,224,0 +170753314824,216,0 +170753314872,215,0 +170753314922,216,0 +170753314971,217,0 +170753315019,217,0 +170753315067,218,0 +170753315115,216,0 +170753315163,219,0 +170753315211,220,0 +170753315260,221,0 +170753315308,220,0 +170753315356,222,0 +170753315404,220,0 +170753315453,222,0 +170753315503,223,0 +170753315553,223,0 +170753315602,224,0 +170753315652,224,0 +170753315700,223,0 +170753315749,216,0 +170753315797,214,0 +170753315845,215,0 +170753315893,216,0 +170753315941,216,0 +170753315989,217,0 +170753316038,218,0 +170753316088,219,0 +170753316136,220,0 +170753316185,221,0 +170753316233,221,0 +170753316283,222,0 +170753316332,223,0 +170753316382,223,0 +170753316431,223,0 +170753316479,224,0 +170753316527,223,0 +170753316575,224,0 +170753316623,224,0 +170753316671,225,0 +170753316719,215,0 +170753316767,214,0 +170753316815,215,0 +170753316863,216,0 +170753316911,216,0 +170753316959,218,0 +170753317006,218,0 +170753317054,219,0 +170753317102,219,0 +170753317152,220,0 +170753317200,221,0 +170753317248,224,0 +170753317297,223,0 +170753317347,224,0 +170753317396,226,0 +170753317444,225,0 +170753317492,224,0 +170753317540,224,0 +170753317590,224,0 +170753317639,215,0 +170753317687,215,0 +170753317735,216,0 +170753317783,216,0 +170753317831,217,0 +170753317881,218,0 +170753317930,219,0 +170753317980,219,0 +170753318029,219,0 +170753318077,219,0 +170753318125,221,0 +170753318173,222,0 +170753318221,222,0 +170753318269,223,0 +170753318319,225,0 +170753318366,223,0 +170753318416,223,0 +170753318464,223,0 +170753318513,223,0 +170753318563,216,0 +170753318612,216,0 +170753318660,216,0 +170753318710,218,0 +170753318758,218,0 +170753318807,220,0 +170753318855,220,0 +170753318903,221,0 +170753318953,222,0 +170753319001,222,0 +170753319050,223,0 +170753319098,223,0 +170753319146,224,0 +170753319194,224,0 +170753319242,223,0 +170753319290,225,0 +170753319340,224,0 +170753319388,223,0 +170753319437,220,0 +170753319485,218,0 +170753319535,216,0 +170753319582,216,0 +170753319630,217,0 +170753319678,219,0 +170753319728,219,0 +170753319777,220,0 +170753319825,220,0 +170753319875,221,0 +170753319923,221,0 +170753319972,225,0 +170753320020,223,0 +170753320068,223,0 +170753320116,224,0 +170753320164,224,0 +170753320212,225,0 +170753320261,224,0 +170753320309,223,0 +170753320357,223,0 +170753320405,216,0 +170753320453,214,0 +170753320501,214,0 +170753320549,215,0 +170753320597,216,0 +170753320645,217,0 +170753320695,217,0 +170753320743,218,0 +170753320791,218,0 +170753320839,219,0 +170753320888,220,0 +170753320938,222,0 +170753320986,221,0 +170753321035,221,0 +170753321083,222,0 +170753321133,223,0 +170753321181,223,0 +170753321228,223,0 +170753321276,223,0 +170753321326,216,0 +170753321374,214,0 +170753321422,214,0 +170753321470,215,0 +170753321518,215,0 +170753321566,217,0 +170753321614,216,0 +170753321662,218,0 +170753321710,219,0 +170753321758,219,0 +170753321805,220,0 +170753321853,221,0 +170753321901,227,0 +170753321951,222,0 +170753321999,225,0 +170753322047,224,0 +170753322095,223,0 +170753322143,223,0 +170753322191,223,0 +170753322240,221,0 +170753322288,214,0 +170753322338,214,0 +170753322387,214,0 +170753322435,215,0 +170753322483,215,0 +170753322531,216,0 +170753322579,216,0 +170753322627,217,0 +170753322675,218,0 +170753322723,218,0 +170753322772,219,0 +170753322820,221,0 +170753322870,221,0 +170753322918,220,0 +170753322967,223,0 +170753323015,222,0 +170753323065,222,0 +170753323114,223,0 +170753323162,223,0 +170753323210,215,0 +170753323258,214,0 +170753323306,214,0 +170753323355,215,0 +170753323403,215,0 +170753323451,215,0 +170753323499,216,0 +170753323547,215,0 +170753323595,216,0 +170753323643,218,0 +170753323691,218,0 +170753323739,219,0 +170753323787,220,0 +170753323836,221,0 +170753323884,221,0 +170753323932,221,0 +170753323981,222,0 +170753324031,223,0 +170753324079,223,0 +170753324128,216,0 +170753324178,215,0 +170753324226,215,0 +170753324275,216,0 +170753324323,215,0 +170753324371,214,0 +170753324419,216,0 +170753324467,218,0 +170753324516,218,0 +170753324564,219,0 +170753324612,220,0 +170753324662,221,0 +170753324709,222,0 +170753324757,222,0 +170753324805,224,0 +170753324853,223,0 +170753324903,220,0 +170753324952,223,0 +170753325000,222,0 +170753325048,216,0 +170753325096,215,0 +170753325144,215,0 +170753325194,215,0 +170753325243,215,0 +170753325293,216,0 +170753325342,217,0 +170753325392,218,0 +170753325440,219,0 +170753325489,219,0 +170753325537,220,0 +170753325587,222,0 +170753325636,222,0 +170753325684,224,0 +170753325732,224,0 +170753325782,224,0 +170753325831,223,0 +170753325879,223,0 +170753325927,223,0 +170753325975,216,0 +170753326025,214,0 +170753326072,215,0 +170753326120,216,0 +170753326168,216,0 +170753326216,217,0 +170753326264,218,0 +170753326314,218,0 +170753326361,219,0 +170753326409,219,0 +170753326457,220,0 +170753326507,220,0 +170753326556,220,0 +170753326606,221,0 +170753326654,223,0 +170753326703,223,0 +170753326751,222,0 +170753326801,223,0 +170753326850,223,0 +170753326900,216,0 +170753326948,215,0 +170753326996,215,0 +170753327045,216,0 +170753327093,217,0 +170753327141,218,0 +170753327189,218,0 +170753327239,220,0 +170753327288,219,0 +170753327338,221,0 +170753327386,220,0 +170753327434,223,0 +170753327483,222,0 +170753327531,223,0 +170753327579,223,0 +170753327629,225,0 +170753327678,223,0 +170753327728,224,0 +170753327776,224,0 +170753327824,216,0 +170753327872,215,0 +170753327920,215,0 +170753327967,216,0 +170753328015,217,0 +170753328063,217,0 +170753328111,218,0 +170753328159,218,0 +170753328207,219,0 +170753328255,220,0 +170753328303,221,0 +170753328353,222,0 +170753328402,224,0 +170753328452,224,0 +170753328501,225,0 +170753328549,224,0 +170753328597,223,0 +170753328645,224,0 +170753328695,224,0 +170753328742,216,0 +170753328792,215,0 +170753328840,216,0 +170753328890,217,0 +170753328939,217,0 +170753328989,218,0 +170753329038,218,0 +170753329088,220,0 +170753329137,221,0 +170753329185,219,0 +170753329233,221,0 +170753329282,222,0 +170753329332,221,0 +170753329380,224,0 +170753329429,223,0 +170753329477,224,0 +170753329525,225,0 +170753329573,223,0 +170753329621,225,0 +170753329669,216,0 +170753329717,216,0 +170753329767,217,0 +170753329816,218,0 +170753329864,218,0 +170753329912,219,0 +170753329962,219,0 +170753330010,220,0 +170753330059,221,0 +170753330109,222,0 +170753330157,223,0 +170753330205,224,0 +170753330253,223,0 +170753330301,224,0 +170753330349,224,0 +170753330397,224,0 +170753330444,224,0 +170753330492,224,0 +170753330540,224,0 +170753330588,223,0 +170753330636,215,0 +170753330686,215,0 +170753330734,216,0 +170753330782,217,0 +170753330831,218,0 +170753330881,218,0 +170753330929,220,0 +170753330978,221,0 +170753331026,221,0 +170753331074,223,0 +170753331122,223,0 +170753331170,223,0 +170753331218,222,0 +170753331268,224,0 +170753331315,223,0 +170753331363,223,0 +170753331413,223,0 +170753331461,223,0 +170753331509,223,0 +170753331558,215,0 +170753331606,215,0 +170753331654,216,0 +170753331702,217,0 +170753331750,218,0 +170753331798,219,0 +170753331846,220,0 +170753331895,222,0 +170753331943,221,0 +170753331991,222,0 +170753332039,224,0 +170753332087,222,0 +170753332135,223,0 +170753332183,224,0 +170753332233,225,0 +170753332282,224,0 +170753332332,224,0 +170753332381,224,0 +170753332431,223,0 +170753332480,215,0 +170753332528,215,0 +170753332576,215,0 +170753332624,215,0 +170753332672,216,0 +170753332720,216,0 +170753332769,217,0 +170753332819,218,0 +170753332869,221,0 +170753332916,220,0 +170753332964,221,0 +170753333012,223,0 +170753333062,224,0 +170753333110,225,0 +170753333158,221,0 +170753333207,223,0 +170753333255,224,0 +170753333305,222,0 +170753333353,223,0 +170753333401,216,0 +170753333449,215,0 +170753333496,215,0 +170753333546,216,0 +170753333594,215,0 +170753333642,216,0 +170753333690,216,0 +170753333737,217,0 +170753333785,218,0 +170753333835,220,0 +170753333883,219,0 +170753333931,219,0 +170753333978,219,0 +170753334026,221,0 +170753334074,222,0 +170753334124,221,0 +170753334173,222,0 +170753334221,224,0 +170753334269,224,0 +170753334319,224,0 +170753334368,225,0 +170753334416,224,0 +170753334464,225,0 +170753334512,225,0 +170753334560,224,0 +170753334608,225,0 +170753334658,224,0 +170753334706,224,0 +170753334754,223,0 +170753334803,215,0 +170753334851,216,0 +170753334899,217,0 +170753334949,217,0 +170753334998,218,0 +170753335046,218,0 +170753335094,219,0 +170753335142,220,0 +170753335190,221,0 +170753335238,221,0 +170753335286,222,0 +170753335334,222,0 +170753335383,224,0 +170753335433,224,0 +170753335483,224,0 +170753335532,225,0 +170753335580,224,0 +170753335630,224,0 +170753335678,223,0 +170753335726,215,0 +170753335774,215,0 +170753335823,216,0 +170753335871,216,0 +170753335921,218,0 +170753335969,217,0 +170753336017,219,0 +170753336066,220,0 +170753336115,220,0 +170753336163,221,0 +170753336211,220,0 +170753336259,222,0 +170753336307,222,0 +170753336357,223,0 +170753336405,222,0 +170753336453,223,0 +170753336501,223,0 +170753336550,224,0 +170753336598,222,0 +170753336646,216,0 +170753336694,215,0 +170753336742,215,0 +170753336792,215,0 +170753336840,216,0 +170753336887,216,0 +170753336935,217,0 +170753336983,217,0 +170753337033,219,0 +170753337083,219,0 +170753337130,221,0 +170753337178,221,0 +170753337226,221,0 +170753337274,224,0 +170753337322,224,0 +170753337372,225,0 +170753337421,223,0 +170753337469,224,0 +170753337519,224,0 +170753337567,216,0 +170753337616,214,0 +170753337664,215,0 +170753337712,215,0 +170753337760,215,0 +170753337810,216,0 +170753337859,217,0 +170753337909,217,0 +170753337958,218,0 +170753338006,220,0 +170753338056,220,0 +170753338105,221,0 +170753338153,222,0 +170753338201,223,0 +170753338249,224,0 +170753338299,223,0 +170753338346,224,0 +170753338394,223,0 +170753338444,223,0 +170753338492,216,0 +170753338541,215,0 +170753338591,215,0 +170753338641,215,0 +170753338690,215,0 +170753338740,215,0 +170753338789,216,0 +170753338837,216,0 +170753338885,218,0 +170753338933,219,0 +170753338981,219,0 +170753339031,221,0 +170753339079,222,0 +170753339127,222,0 +170753339174,222,0 +170753339222,223,0 +170753339270,224,0 +170753339318,224,0 +170753339366,225,0 +170753339414,216,0 +170753339464,215,0 +170753339513,215,0 +170753339561,216,0 +170753339609,217,0 +170753339659,218,0 +170753339708,218,0 +170753339758,219,0 +170753339806,220,0 +170753339854,220,0 +170753339901,221,0 +170753339950,222,0 +170753339999,228,0 +170753340049,224,0 +170753340098,224,0 +170753340148,223,0 +170753340196,224,0 +170753340244,223,0 +170753340291,224,0 +170753340339,216,0 +170753340387,214,0 +170753340437,215,0 +170753340485,216,0 +170753340534,216,0 +170753340582,217,0 +170753340632,218,0 +170753340682,218,0 +170753340731,220,0 +170753340779,220,0 +170753340827,222,0 +170753340875,222,0 +170753340923,223,0 +170753340971,224,0 +170753341019,223,0 +170753341066,224,0 +170753341114,224,0 +170753341164,226,0 +170753341212,223,0 +170753341260,220,0 +170753341308,215,0 +170753341356,216,0 +170753341404,217,0 +170753341453,217,0 +170753341501,218,0 +170753341551,219,0 +170753341599,220,0 +170753341648,221,0 +170753341696,220,0 +170753341744,221,0 +170753341792,222,0 +170753341840,223,0 +170753341888,224,0 +170753341936,223,0 +170753341984,223,0 +170753342032,223,0 +170753342080,224,0 +170753342128,224,0 +170753342177,223,0 +170753342225,215,0 +170753342273,215,0 +170753342321,215,0 +170753342370,216,0 +170753342420,216,0 +170753342468,217,0 +170753342517,218,0 +170753342565,219,0 +170753342613,219,0 +170753342661,220,0 +170753342709,221,0 +170753342759,221,0 +170753342808,224,0 +170753342856,223,0 +170753342906,224,0 +170753342954,223,0 +170753343003,223,0 +170753343053,223,0 +170753343102,223,0 +170753343150,215,0 +170753343198,214,0 +170753343248,215,0 +170753343296,214,0 +170753343345,215,0 +170753343393,215,0 +170753343441,216,0 +170753343489,217,0 +170753343537,217,0 +170753343587,219,0 +170753343635,220,0 +170753343682,220,0 +170753343732,222,0 +170753343780,221,0 +170753343828,222,0 +170753343876,223,0 +170753343924,223,0 +170753343972,223,0 +170753344020,223,0 +170753344067,216,0 +170753344115,215,0 +170753344163,215,0 +170753344213,216,0 +170753344263,216,0 +170753344312,216,0 +170753344362,217,0 +170753344410,217,0 +170753344458,218,0 +170753344505,218,0 +170753344553,219,0 +170753344603,219,0 +170753344652,221,0 +170753344700,222,0 +170753344748,222,0 +170753344796,222,0 +170753344846,223,0 +170753344894,223,0 +170753344942,223,0 +170753344990,216,0 +170753345038,215,0 +170753345087,216,0 +170753345137,217,0 +170753345186,217,0 +170753345234,217,0 +170753345282,219,0 +170753345330,219,0 +170753345378,220,0 +170753345426,220,0 +170753345474,222,0 +170753345522,222,0 +170753345572,225,0 +170753345619,224,0 +170753345669,224,0 +170753345717,225,0 +170753345767,225,0 +170753345814,224,0 +170753345864,225,0 +170753345914,217,0 +170753345962,215,0 +170753346009,217,0 +170753346057,217,0 +170753346105,218,0 +170753346153,219,0 +170753346203,219,0 +170753346251,220,0 +170753346299,220,0 +170753346347,222,0 +170753346395,222,0 +170753346442,223,0 +170753346492,223,0 +170753346540,222,0 +170753346589,223,0 +170753346639,224,0 +170753346686,223,0 +170753346734,224,0 +170753346782,223,0 +170753346832,217,0 +170753346880,215,0 +170753346929,215,0 +170753346978,216,0 +170753347026,217,0 +170753347074,216,0 +170753347124,218,0 +170753347172,221,0 +170753347221,219,0 +170753347269,222,0 +170753347317,221,0 +170753347364,221,0 +170753347414,223,0 +170753347462,223,0 +170753347511,226,0 +170753347561,224,0 +170753347610,224,0 +170753347660,224,0 +170753347709,223,0 +170753347757,219,0 +170753347805,215,0 +170753347853,215,0 +170753347902,215,0 +170753347952,216,0 +170753348001,216,0 +170753348051,216,0 +170753348099,218,0 +170753348147,219,0 +170753348196,219,0 +170753348244,220,0 +170753348292,221,0 +170753348340,221,0 +170753348388,224,0 +170753348435,222,0 +170753348485,224,0 +170753348533,223,0 +170753348581,223,0 +170753348629,224,0 +170753348676,222,0 +170753348724,214,0 +170753348772,215,0 +170753348820,215,0 +170753348869,216,0 +170753348919,217,0 +170753348968,218,0 +170753349016,218,0 +170753349064,220,0 +170753349112,220,0 +170753349161,220,0 +170753349208,221,0 +170753349256,221,0 +170753349306,222,0 +170753349354,223,0 +170753349401,223,0 +170753349449,223,0 +170753349497,223,0 +170753349545,224,0 +170753349595,223,0 +170753349642,215,0 +170753349690,214,0 +170753349740,215,0 +170753349788,215,0 +170753349836,216,0 +170753349885,216,0 +170753349933,217,0 +170753349981,218,0 +170753350030,219,0 +170753350078,221,0 +170753350126,221,0 +170753350174,228,0 +170753350222,222,0 +170753350270,223,0 +170753350320,223,0 +170753350369,223,0 +170753350417,223,0 +170753350465,222,0 +170753350513,223,0 +170753350563,216,0 +170753350611,215,0 +170753350660,216,0 +170753350709,217,0 +170753350759,220,0 +170753350807,219,0 +170753350855,220,0 +170753350904,221,0 +170753350952,226,0 +170753351001,222,0 +170753351051,223,0 +170753351100,224,0 +170753351148,224,0 +170753351198,223,0 +170753351246,223,0 +170753351293,224,0 +170753351341,224,0 +170753351389,224,0 +170753351437,221,0 +170753351486,216,0 +170753351534,214,0 +170753351582,216,0 +170753351630,217,0 +170753351678,218,0 +170753351726,219,0 +170753351774,220,0 +170753351822,220,0 +170753351871,221,0 +170753351919,221,0 +170753351967,222,0 +170753352016,225,0 +170753352066,223,0 +170753352114,224,0 +170753352161,222,0 +170753352209,225,0 +170753352257,223,0 +170753352307,223,0 +170753352356,224,0 +170753352406,216,0 +170753352453,214,0 +170753352501,215,0 +170753352549,214,0 +170753352599,215,0 +170753352647,216,0 +170753352696,217,0 +170753352744,218,0 +170753352794,219,0 +170753352842,220,0 +170753352890,221,0 +170753352939,221,0 +170753352987,222,0 +170753353035,223,0 +170753353085,224,0 +170753353134,225,0 +170753353182,223,0 +170753353230,223,0 +170753353280,223,0 +170753353329,216,0 +170753353377,214,0 +170753353425,214,0 +170753353474,214,0 +170753353524,215,0 +170753353574,215,0 +170753353623,215,0 +170753353673,215,0 +170753353721,216,0 +170753353770,217,0 +170753353820,218,0 +170753353868,219,0 +170753353917,220,0 +170753353965,221,0 +170753354013,222,0 +170753354063,223,0 +170753354111,222,0 +170753354160,222,0 +170753354210,224,0 +170753354258,216,0 +170753354307,214,0 +170753354355,214,0 +170753354403,214,0 +170753354453,214,0 +170753354502,215,0 +170753354552,215,0 +170753354601,215,0 +170753354649,216,0 +170753354699,216,0 +170753354748,216,0 +170753354798,217,0 +170753354846,218,0 +170753354894,219,0 +170753354942,220,0 +170753354990,220,0 +170753355039,220,0 +170753355089,220,0 +170753355138,223,0 +170753355186,216,0 +170753355236,214,0 +170753355284,215,0 +170753355333,215,0 +170753355381,215,0 +170753355429,216,0 +170753355477,216,0 +170753355527,218,0 +170753355576,218,0 +170753355626,220,0 +170753355674,221,0 +170753355722,221,0 +170753355770,222,0 +170753355819,222,0 +170753355869,224,0 +170753355918,223,0 +170753355968,222,0 +170753356017,222,0 +170753356065,224,0 +170753356113,216,0 +170753356161,215,0 +170753356211,215,0 +170753356259,215,0 +170753356308,216,0 +170753356356,217,0 +170753356406,218,0 +170753356454,218,0 +170753356503,219,0 +170753356553,219,0 +170753356601,221,0 +170753356649,221,0 +170753356698,221,0 +170753356748,222,0 +170753356797,222,0 +170753356847,223,0 +170753356896,223,0 +170753356944,224,0 +170753356992,223,0 +170753357040,216,0 +170753357088,215,0 +170753357137,215,0 +170753357185,216,0 +170753357235,217,0 +170753357284,217,0 +170753357334,217,0 +170753357384,219,0 +170753357432,219,0 +170753357480,220,0 +170753357528,221,0 +170753357577,222,0 +170753357627,222,0 +170753357675,224,0 +170753357724,223,0 +170753357772,224,0 +170753357821,224,0 +170753357871,224,0 +170753357919,224,0 +170753357967,216,0 +170753358016,215,0 +170753358064,215,0 +170753358112,216,0 +170753358162,217,0 +170753358210,217,0 +170753358258,218,0 +170753358306,218,0 +170753358354,219,0 +170753358402,220,0 +170753358450,221,0 +170753358499,223,0 +170753358549,223,0 +170753358598,224,0 +170753358646,223,0 +170753358696,224,0 +170753358745,226,0 +170753358793,225,0 +170753358841,223,0 +170753358889,216,0 +170753358937,215,0 +170753358986,216,0 +170753359034,217,0 +170753359082,218,0 +170753359130,218,0 +170753359178,220,0 +170753359226,220,0 +170753359273,220,0 +170753359321,221,0 +170753359371,222,0 +170753359419,222,0 +170753359468,223,0 +170753359518,224,0 +170753359568,223,0 +170753359617,225,0 +170753359665,228,0 +170753359715,225,0 +170753359764,223,0 +170753359812,219,0 +170753359862,215,0 +170753359909,216,0 +170753359959,216,0 +170753360007,218,0 +170753360055,218,0 +170753360103,219,0 +170753360151,219,0 +170753360199,219,0 +170753360246,221,0 +170753360294,222,0 +170753360342,223,0 +170753360390,224,0 +170753360438,223,0 +170753360486,224,0 +170753360534,224,0 +170753360581,224,0 +170753360631,225,0 +170753360679,223,0 +170753360727,223,0 +170753360774,215,0 +170753360822,215,0 +170753360870,216,0 +170753360918,217,0 +170753360966,218,0 +170753361014,218,0 +170753361062,219,0 +170753361110,221,0 +170753361158,221,0 +170753361205,223,0 +170753361253,222,0 +170753361303,223,0 +170753361351,226,0 +170753361399,224,0 +170753361446,224,0 +170753361496,224,0 +170753361544,224,0 +170753361592,225,0 +170753361640,223,0 +170753361688,216,0 +170753361735,217,0 +170753361783,218,0 +170753361833,218,0 +170753361881,219,0 +170753361929,220,0 +170753361976,220,0 +170753362024,221,0 +170753362072,222,0 +170753362122,222,0 +170753362169,223,0 +170753362218,223,0 +170753362266,224,0 +170753362314,223,0 +170753362362,224,0 +170753362411,226,0 +170753362461,223,0 +170753362508,223,0 +170753362556,222,0 +170753362604,216,0 +170753362654,216,0 +170753362701,216,0 +170753362749,218,0 +170753362797,218,0 +170753362845,220,0 +170753362893,220,0 +170753362942,220,0 +170753362990,220,0 +170753363038,222,0 +170753363087,223,0 +170753363135,225,0 +170753363183,223,0 +170753363231,225,0 +170753363279,225,0 +170753363327,223,0 +170753363375,224,0 +170753363424,224,0 +170753363472,224,0 +170753363522,216,0 +170753363569,215,0 +170753363617,215,0 +170753363665,215,0 +170753363713,216,0 +170753363763,217,0 +170753363812,218,0 +170753363860,219,0 +170753363909,219,0 +170753363957,220,0 +170753364005,220,0 +170753364053,220,0 +170753364103,221,0 +170753364150,223,0 +170753364198,223,0 +170753364246,221,0 +170753364294,224,0 +170753364342,224,0 +170753364392,224,0 +170753364441,216,0 +170753364489,215,0 +170753364538,215,0 +170753364586,215,0 +170753364634,216,0 +170753364682,217,0 +170753364730,218,0 +170753364778,219,0 +170753364827,219,0 +170753364875,220,0 +170753364923,221,0 +170753364971,221,0 +170753365020,221,0 +170753365070,223,0 +170753365118,223,0 +170753365165,223,0 +170753365213,224,0 +170753365261,223,0 +170753365309,223,0 +170753365357,221,0 +170753365405,215,0 +170753365453,215,0 +170753365500,216,0 +170753365548,216,0 +170753365596,217,0 +170753365644,218,0 +170753365692,218,0 +170753365740,221,0 +170753365788,219,0 +170753365836,221,0 +170753365884,221,0 +170753365932,222,0 +170753365980,223,0 +170753366027,223,0 +170753366077,224,0 +170753366125,225,0 +170753366174,224,0 +170753366224,224,0 +170753366272,223,0 +170753366320,216,0 +170753366367,215,0 +170753366417,215,0 +170753366465,215,0 +170753366514,215,0 +170753366562,217,0 +170753366610,217,0 +170753366658,217,0 +170753366706,219,0 +170753366754,219,0 +170753366802,220,0 +170753366851,221,0 +170753366899,221,0 +170753366948,223,0 +170753366996,223,0 +170753367046,223,0 +170753367094,224,0 +170753367141,224,0 +170753367189,223,0 +170753367237,216,0 +170753367285,215,0 +170753367333,214,0 +170753367381,215,0 +170753367430,216,0 +170753367478,217,0 +170753367526,217,0 +170753367575,218,0 +170753367623,220,0 +170753367671,219,0 +170753367719,221,0 +170753367767,222,0 +170753367816,222,0 +170753367864,222,0 +170753367912,223,0 +170753367960,222,0 +170753368008,223,0 +170753368056,223,0 +170753368104,223,0 +170753368152,216,0 +170753368200,215,0 +170753368247,215,0 +170753368297,215,0 +170753368346,216,0 +170753368394,217,0 +170753368444,218,0 +170753368493,219,0 +170753368541,219,0 +170753368591,219,0 +170753368639,221,0 +170753368688,222,0 +170753368736,221,0 +170753368784,224,0 +170753368832,223,0 +170753368882,223,0 +170753368930,223,0 +170753368979,224,0 +170753369029,224,0 +170753369077,216,0 +170753369125,215,0 +170753369173,215,0 +170753369222,215,0 +170753369270,217,0 +170753369318,217,0 +170753369366,217,0 +170753369414,219,0 +170753369463,219,0 +170753369513,220,0 +170753369561,219,0 +170753369609,220,0 +170753369657,220,0 +170753369706,223,0 +170753369754,222,0 +170753369802,223,0 +170753369852,223,0 +170753369900,225,0 +170753369949,224,0 +170753369999,216,0 +170753370048,215,0 +170753370096,215,0 +170753370144,216,0 +170753370192,216,0 +170753370240,217,0 +170753370288,217,0 +170753370336,218,0 +170753370385,220,0 +170753370433,220,0 +170753370481,220,0 +170753370529,220,0 +170753370578,216,0 +170753370626,221,0 +170753370674,223,0 +170753370724,223,0 +170753370772,223,0 +170753370820,225,0 +170753370868,224,0 +170753370916,218,0 +170753370964,215,0 +170753371012,215,0 +170753371061,216,0 +170753371109,217,0 +170753371157,218,0 +170753371205,218,0 +170753371253,219,0 +170753371301,220,0 +170753371349,220,0 +170753371398,221,0 +170753371446,221,0 +170753371496,222,0 +170753371544,223,0 +170753371592,225,0 +170753371641,223,0 +170753371691,224,0 +170753371739,223,0 +170753371789,223,0 +170753371836,221,0 +170753371886,215,0 +170753371934,215,0 +170753371982,216,0 +170753372031,217,0 +170753372079,217,0 +170753372129,219,0 +170753372177,220,0 +170753372226,221,0 +170753372274,221,0 +170753372322,221,0 +170753372370,222,0 +170753372420,223,0 +170753372468,223,0 +170753372517,223,0 +170753372567,225,0 +170753372615,224,0 +170753372663,224,0 +170753372712,224,0 +170753372760,222,0 +170753372810,215,0 +170753372859,215,0 +170753372909,216,0 +170753372958,218,0 +170753373006,217,0 +170753373054,219,0 +170753373102,220,0 +170753373152,220,0 +170753373200,220,0 +170753373249,221,0 +170753373297,222,0 +170753373345,223,0 +170753373393,224,0 +170753373443,224,0 +170753373492,224,0 +170753373540,224,0 +170753373588,225,0 +170753373638,223,0 +170753373687,218,0 +170753373735,215,0 +170753373783,215,0 +170753373831,216,0 +170753373879,216,0 +170753373927,217,0 +170753373975,218,0 +170753374024,219,0 +170753374074,220,0 +170753374122,220,0 +170753374170,221,0 +170753374219,223,0 +170753374267,223,0 +170753374317,223,0 +170753374365,223,0 +170753374413,224,0 +170753374462,223,0 +170753374510,223,0 +170753374558,223,0 +170753374608,216,0 +170753374657,215,0 +170753374707,216,0 +170753374755,218,0 +170753374803,217,0 +170753374852,218,0 +170753374902,218,0 +170753374951,220,0 +170753374999,221,0 +170753375047,222,0 +170753375097,222,0 +170753375146,223,0 +170753375196,223,0 +170753375244,224,0 +170753375292,224,0 +170753375341,224,0 +170753375389,224,0 +170753375437,224,0 +170753375487,223,0 +170753375535,216,0 +170753375583,215,0 +170753375632,216,0 +170753375680,216,0 +170753375728,218,0 +170753375778,218,0 +170753375826,219,0 +170753375875,220,0 +170753375925,219,0 +170753375973,221,0 +170753376022,222,0 +170753376070,222,0 +170753376118,223,0 +170753376166,223,0 +170753376214,223,0 +170753376264,224,0 +170753376312,223,0 +170753376360,225,0 +170753376409,223,0 +170753376457,223,0 +170753376507,215,0 +170753376555,215,0 +170753376604,216,0 +170753376652,217,0 +170753376702,217,0 +170753376750,218,0 +170753376799,218,0 +170753376849,219,0 +170753376897,221,0 +170753376946,221,0 +170753376996,221,0 +170753377044,223,0 +170753377092,222,0 +170753377140,224,0 +170753377188,224,0 +170753377237,223,0 +170753377287,224,0 +170753377336,223,0 +170753377386,217,0 +170753377434,214,0 +170753377482,215,0 +170753377530,215,0 +170753377578,216,0 +170753377627,217,0 +170753377675,218,0 +170753377723,219,0 +170753377771,219,0 +170753377819,220,0 +170753377867,220,0 +170753377915,222,0 +170753377965,222,0 +170753378013,224,0 +170753378061,224,0 +170753378110,224,0 +170753378160,225,0 +170753378208,224,0 +170753378257,223,0 +170753378305,217,0 +170753378353,215,0 +170753378401,215,0 +170753378449,216,0 +170753378499,216,0 +170753378546,217,0 +170753378594,218,0 +170753378644,219,0 +170753378694,219,0 +170753378743,220,0 +170753378791,220,0 +170753378839,221,0 +170753378887,222,0 +170753378935,222,0 +170753378983,223,0 +170753379031,223,0 +170753379079,224,0 +170753379128,226,0 +170753379176,223,0 +170753379224,223,0 +170753379273,214,0 +170753379323,215,0 +170753379373,215,0 +170753379421,215,0 +170753379470,216,0 +170753379518,217,0 +170753379568,217,0 +170753379617,218,0 +170753379667,219,0 +170753379715,220,0 +170753379763,221,0 +170753379811,221,0 +170753379860,222,0 +170753379910,224,0 +170753379959,223,0 +170753380007,224,0 +170753380057,224,0 +170753380105,223,0 +170753380153,223,0 +170753380202,214,0 +170753380252,214,0 +170753380301,215,0 +170753380351,215,0 +170753380399,215,0 +170753380448,215,0 +170753380498,216,0 +170753380547,217,0 +170753380597,218,0 +170753380645,220,0 +170753380693,221,0 +170753380742,221,0 +170753380792,222,0 +170753380840,224,0 +170753380888,223,0 +170753380936,223,0 +170753380985,222,0 +170753381035,224,0 +170753381083,222,0 +170753381132,214,0 +170753381180,214,0 +170753381230,214,0 +170753381278,214,0 +170753381325,215,0 +170753381375,216,0 +170753381425,215,0 +170753381472,216,0 +170753381520,217,0 +170753381570,220,0 +170753381620,220,0 +170753381669,222,0 +170753381719,221,0 +170753381767,222,0 +170753381816,221,0 +170753381864,223,0 +170753381912,223,0 +170753381960,223,0 +170753382008,220,0 +170753382057,215,0 +170753382107,215,0 +170753382156,215,0 +170753382204,215,0 +170753382252,216,0 +170753382302,216,0 +170753382350,217,0 +170753382399,217,0 +170753382449,218,0 +170753382498,220,0 +170753382548,220,0 +170753382596,221,0 +170753382644,222,0 +170753382693,222,0 +170753382743,223,0 +170753382792,223,0 +170753382840,224,0 +170753382890,223,0 +170753382939,224,0 +170753382987,215,0 +170753383035,216,0 +170753383083,217,0 +170753383131,218,0 +170753383179,218,0 +170753383228,219,0 +170753383276,221,0 +170753383324,220,0 +170753383372,221,0 +170753383420,221,0 +170753383468,223,0 +170753383517,223,0 +170753383567,223,0 +170753383616,223,0 +170753383666,223,0 +170753383714,224,0 +170753383762,224,0 +170753383811,224,0 +170753383861,222,0 +170753383909,216,0 +170753383958,217,0 +170753384008,218,0 +170753384056,218,0 +170753384105,219,0 +170753384153,220,0 +170753384203,221,0 +170753384252,222,0 +170753384300,223,0 +170753384348,223,0 +170753384396,223,0 +170753384444,223,0 +170753384494,224,0 +170753384542,224,0 +170753384590,224,0 +170753384638,224,0 +170753384686,224,0 +170753384734,224,0 +170753384782,223,0 +170753384831,215,0 +170753384879,215,0 +170753384929,217,0 +170753384977,217,0 +170753385026,217,0 +170753385074,219,0 +170753385122,220,0 +170753385170,220,0 +170753385218,221,0 +170753385266,225,0 +170753385315,222,0 +170753385363,223,0 +170753385411,223,0 +170753385459,224,0 +170753385509,224,0 +170753385557,224,0 +170753385606,221,0 +170753385654,224,0 +170753385702,223,0 +170753385752,216,0 +170753385800,215,0 +170753385848,216,0 +170753385897,217,0 +170753385945,218,0 +170753385995,218,0 +170753386044,220,0 +170753386094,219,0 +170753386142,220,0 +170753386191,222,0 +170753386239,222,0 +170753386289,222,0 +170753386338,223,0 +170753386388,223,0 +170753386437,224,0 +170753386487,223,0 +170753386536,223,0 +170753386586,223,0 +170753386635,223,0 +170753386685,215,0 +170753386733,215,0 +170753386781,216,0 +170753386829,217,0 +170753386878,217,0 +170753386928,218,0 +170753386977,219,0 +170753387027,220,0 +170753387077,221,0 +170753387126,222,0 +170753387176,222,0 +170753387223,223,0 +170753387271,223,0 +170753387319,223,0 +170753387369,223,0 +170753387418,223,0 +170753387468,223,0 +170753387516,224,0 +170753387566,216,0 +170753387614,215,0 +170753387663,215,0 +170753387713,216,0 +170753387761,216,0 +170753387809,217,0 +170753387858,217,0 +170753387906,218,0 +170753387956,219,0 +170753388005,220,0 +170753388053,221,0 +170753388101,221,0 +170753388151,222,0 +170753388199,223,0 +170753388247,223,0 +170753388295,223,0 +170753388344,223,0 +170753388392,226,0 +170753388442,223,0 +170753388490,216,0 +170753388538,215,0 +170753388587,215,0 +170753388637,216,0 +170753388686,217,0 +170753388734,218,0 +170753388782,219,0 +170753388830,219,0 +170753388879,220,0 +170753388929,220,0 +170753388977,221,0 +170753389025,223,0 +170753389074,223,0 +170753389124,224,0 +170753389174,223,0 +170753389223,224,0 +170753389271,223,0 +170753389319,223,0 +170753389367,225,0 +170753389416,216,0 +170753389466,215,0 +170753389514,215,0 +170753389563,216,0 +170753389613,217,0 +170753389662,217,0 +170753389710,218,0 +170753389760,219,0 +170753389809,220,0 +170753389857,220,0 +170753389905,221,0 +170753389953,222,0 +170753390001,223,0 +170753390051,223,0 +170753390100,224,0 +170753390150,225,0 +170753390199,223,0 +170753390249,224,0 +170753390297,221,0 +170753390345,216,0 +170753390394,215,0 +170753390442,215,0 +170753390492,215,0 +170753390540,216,0 +170753390587,217,0 +170753390637,217,0 +170753390686,218,0 +170753390734,219,0 +170753390784,220,0 +170753390833,221,0 +170753390883,222,0 +170753390932,221,0 +170753390982,224,0 +170753391031,223,0 +170753391079,223,0 +170753391129,223,0 +170753391176,223,0 +170753391224,223,0 +170753391272,216,0 +170753391320,215,0 +170753391368,216,0 +170753391416,217,0 +170753391466,217,0 +170753391514,218,0 +170753391563,219,0 +170753391613,219,0 +170753391661,220,0 +170753391709,221,0 +170753391758,223,0 +170753391806,224,0 +170753391856,223,0 +170753391904,223,0 +170753391952,223,0 +170753391999,224,0 +170753392047,224,0 +170753392095,223,0 +170753392145,222,0 +170753392193,217,0 +170753392240,216,0 +170753392288,217,0 +170753392336,217,0 +170753392384,219,0 +170753392434,219,0 +170753392482,220,0 +170753392530,220,0 +170753392577,221,0 +170753392625,222,0 +170753392673,222,0 +170753392723,223,0 +170753392771,224,0 +170753392818,225,0 +170753392866,225,0 +170753392914,224,0 +170753392962,224,0 +170753393010,223,0 +170753393059,223,0 +170753393107,221,0 +170753393157,215,0 +170753393204,215,0 +170753393254,216,0 +170753393303,218,0 +170753393351,218,0 +170753393399,219,0 +170753393449,219,0 +170753393497,221,0 +170753393545,221,0 +170753393594,221,0 +170753393642,222,0 +170753393690,222,0 +170753393740,223,0 +170753393789,225,0 +170753393837,223,0 +170753393887,226,0 +170753393936,224,0 +170753393986,223,0 +170753394034,216,0 +170753394083,215,0 +170753394133,215,0 +170753394181,215,0 +170753394229,216,0 +170753394278,217,0 +170753394328,218,0 +170753394377,218,0 +170753394425,220,0 +170753394475,220,0 +170753394523,222,0 +170753394571,222,0 +170753394619,222,0 +170753394667,222,0 +170753394715,223,0 +170753394763,226,0 +170753394811,226,0 +170753394858,223,0 +170753394906,223,0 +170753394956,216,0 +170753395004,214,0 +170753395053,215,0 +170753395103,216,0 +170753395153,217,0 +170753395202,217,0 +170753395250,217,0 +170753395299,221,0 +170753395347,220,0 +170753395397,219,0 +170753395445,221,0 +170753395493,221,0 +170753395540,223,0 +170753395588,223,0 +170753395636,224,0 +170753395686,223,0 +170753395734,223,0 +170753395782,223,0 +170753395831,223,0 +170753395881,221,0 +170753395929,215,0 +170753395978,215,0 +170753396028,215,0 +170753396076,216,0 +170753396124,217,0 +170753396173,218,0 +170753396223,218,0 +170753396272,219,0 +170753396320,220,0 +170753396368,220,0 +170753396416,221,0 +170753396464,223,0 +170753396512,223,0 +170753396560,224,0 +170753396609,224,0 +170753396657,223,0 +170753396705,223,0 +170753396753,223,0 +170753396801,223,0 +170753396850,215,0 +170753396898,214,0 +170753396947,214,0 +170753396995,215,0 +170753397043,216,0 +170753397093,217,0 +170753397141,217,0 +170753397190,219,0 +170753397238,220,0 +170753397286,222,0 +170753397334,221,0 +170753397382,220,0 +170753397431,223,0 +170753397479,224,0 +170753397528,217,0 +170753397576,223,0 +170753397624,225,0 +170753397672,222,0 +170753397720,222,0 +170753397768,215,0 +170753397816,214,0 +170753397864,215,0 +170753397912,215,0 +170753397959,217,0 +170753398009,218,0 +170753398057,217,0 +170753398105,218,0 +170753398153,219,0 +170753398200,220,0 +170753398248,220,0 +170753398296,221,0 +170753398346,221,0 +170753398394,223,0 +170753398442,222,0 +170753398491,223,0 +170753398539,223,0 +170753398587,224,0 +170753398635,223,0 +170753398684,215,0 +170753398732,215,0 +170753398780,215,0 +170753398828,215,0 +170753398876,216,0 +170753398926,216,0 +170753398974,218,0 +170753399023,218,0 +170753399073,219,0 +170753399122,220,0 +170753399170,220,0 +170753399220,222,0 +170753399268,222,0 +170753399316,222,0 +170753399364,223,0 +170753399412,223,0 +170753399460,223,0 +170753399509,223,0 +170753399557,223,0 +170753399607,215,0 +170753399655,214,0 +170753399703,215,0 +170753399752,215,0 +170753399800,216,0 +170753399850,216,0 +170753399898,217,0 +170753399947,217,0 +170753399997,218,0 diff --git a/laser_value/0210-13.csv b/laser_value/0210-13.csv new file mode 100644 index 0000000..9b879fc --- /dev/null +++ b/laser_value/0210-13.csv @@ -0,0 +1,7420 @@ +timestamp,laser_value,event +170753400047,219,0 +170753400096,220,0 +170753400144,221,0 +170753400192,221,0 +170753400240,221,0 +170753400288,223,0 +170753400338,223,0 +170753400385,223,0 +170753400435,223,0 +170753400485,223,0 +170753400534,215,0 +170753400584,215,0 +170753400633,215,0 +170753400681,215,0 +170753400729,216,0 +170753400778,218,0 +170753400826,218,0 +170753400874,217,0 +170753400922,218,0 +170753400970,219,0 +170753401020,220,0 +170753401068,222,0 +170753401116,221,0 +170753401164,223,0 +170753401212,222,0 +170753401260,223,0 +170753401309,223,0 +170753401357,223,0 +170753401406,223,0 +170753401456,214,0 +170753401504,215,0 +170753401552,215,0 +170753401600,216,0 +170753401648,216,0 +170753401696,216,0 +170753401744,217,0 +170753401792,217,0 +170753401840,218,0 +170753401889,220,0 +170753401937,220,0 +170753401987,221,0 +170753402035,221,0 +170753402083,223,0 +170753402132,223,0 +170753402180,224,0 +170753402229,224,0 +170753402279,224,0 +170753402329,224,0 +170753402378,215,0 +170753402428,214,0 +170753402476,214,0 +170753402524,215,0 +170753402571,216,0 +170753402619,217,0 +170753402669,217,0 +170753402717,219,0 +170753402766,218,0 +170753402814,219,0 +170753402864,219,0 +170753402913,221,0 +170753402961,221,0 +170753403009,221,0 +170753403057,222,0 +170753403105,224,0 +170753403155,224,0 +170753403203,223,0 +170753403251,223,0 +170753403299,216,0 +170753403348,213,0 +170753403396,213,0 +170753403444,215,0 +170753403492,216,0 +170753403540,217,0 +170753403588,218,0 +170753403637,218,0 +170753403685,220,0 +170753403735,219,0 +170753403784,221,0 +170753403832,222,0 +170753403882,222,0 +170753403931,223,0 +170753403981,223,0 +170753404029,223,0 +170753404077,223,0 +170753404125,223,0 +170753404173,223,0 +170753404221,216,0 +170753404269,216,0 +170753404317,217,0 +170753404366,218,0 +170753404416,219,0 +170753404464,219,0 +170753404512,220,0 +170753404560,220,0 +170753404609,222,0 +170753404657,222,0 +170753404705,222,0 +170753404753,223,0 +170753404802,223,0 +170753404850,224,0 +170753404898,224,0 +170753404948,224,0 +170753404997,224,0 +170753405045,223,0 +170753405093,223,0 +170753405141,217,0 +170753405189,217,0 +170753405239,218,0 +170753405288,218,0 +170753405338,219,0 +170753405387,219,0 +170753405437,221,0 +170753405485,220,0 +170753405534,223,0 +170753405584,222,0 +170753405633,224,0 +170753405683,225,0 +170753405731,223,0 +170753405779,224,0 +170753405827,223,0 +170753405876,224,0 +170753405926,223,0 +170753405974,223,0 +170753406022,223,0 +170753406071,216,0 +170753406119,215,0 +170753406167,216,0 +170753406216,216,0 +170753406264,217,0 +170753406312,218,0 +170753406362,219,0 +170753406412,222,0 +170753406460,221,0 +170753406509,221,0 +170753406559,222,0 +170753406606,223,0 +170753406656,224,0 +170753406704,224,0 +170753406752,224,0 +170753406800,223,0 +170753406849,224,0 +170753406899,224,0 +170753406947,223,0 +170753406996,215,0 +170753407044,215,0 +170753407092,214,0 +170753407142,215,0 +170753407190,216,0 +170753407239,216,0 +170753407287,217,0 +170753407335,218,0 +170753407383,218,0 +170753407431,220,0 +170753407479,221,0 +170753407527,222,0 +170753407575,223,0 +170753407623,222,0 +170753407671,226,0 +170753407719,223,0 +170753407767,223,0 +170753407814,223,0 +170753407862,223,0 +170753407910,215,0 +170753407960,214,0 +170753408009,215,0 +170753408057,215,0 +170753408107,215,0 +170753408155,216,0 +170753408204,216,0 +170753408254,217,0 +170753408302,219,0 +170753408349,219,0 +170753408399,220,0 +170753408447,221,0 +170753408495,222,0 +170753408542,223,0 +170753408592,223,0 +170753408641,222,0 +170753408689,223,0 +170753408739,223,0 +170753408787,223,0 +170753408834,215,0 +170753408882,215,0 +170753408930,215,0 +170753408980,216,0 +170753409028,216,0 +170753409075,217,0 +170753409123,217,0 +170753409171,218,0 +170753409219,220,0 +170753409268,219,0 +170753409316,222,0 +170753409364,220,0 +170753409412,221,0 +170753409460,221,0 +170753409508,222,0 +170753409558,222,0 +170753409607,222,0 +170753409657,223,0 +170753409705,223,0 +170753409754,216,0 +170753409802,214,0 +170753409850,214,0 +170753409898,215,0 +170753409946,216,0 +170753409994,216,0 +170753410043,217,0 +170753410093,218,0 +170753410140,219,0 +170753410188,220,0 +170753410236,220,0 +170753410286,221,0 +170753410334,221,0 +170753410381,221,0 +170753410431,223,0 +170753410480,223,0 +170753410530,223,0 +170753410578,224,0 +170753410626,223,0 +170753410674,216,0 +170753410722,215,0 +170753410771,214,0 +170753410819,215,0 +170753410869,216,0 +170753410918,217,0 +170753410966,218,0 +170753411016,219,0 +170753411064,219,0 +170753411112,220,0 +170753411161,222,0 +170753411209,221,0 +170753411257,223,0 +170753411305,222,0 +170753411353,224,0 +170753411401,224,0 +170753411449,226,0 +170753411497,225,0 +170753411546,223,0 +170753411594,216,0 +170753411642,215,0 +170753411690,215,0 +170753411738,216,0 +170753411787,217,0 +170753411837,217,0 +170753411885,219,0 +170753411933,218,0 +170753411982,220,0 +170753412030,220,0 +170753412078,220,0 +170753412126,221,0 +170753412176,221,0 +170753412223,222,0 +170753412273,223,0 +170753412323,223,0 +170753412370,223,0 +170753412418,222,0 +170753412468,222,0 +170753412516,216,0 +170753412564,217,0 +170753412612,217,0 +170753412660,218,0 +170753412707,219,0 +170753412755,220,0 +170753412803,219,0 +170753412851,220,0 +170753412899,222,0 +170753412947,222,0 +170753412997,224,0 +170753413044,223,0 +170753413094,224,0 +170753413142,225,0 +170753413190,224,0 +170753413238,225,0 +170753413286,224,0 +170753413335,223,0 +170753413383,223,0 +170753413433,216,0 +170753413481,216,0 +170753413529,217,0 +170753413578,218,0 +170753413628,219,0 +170753413677,219,0 +170753413725,220,0 +170753413775,221,0 +170753413823,219,0 +170753413872,221,0 +170753413920,222,0 +170753413968,224,0 +170753414016,224,0 +170753414066,224,0 +170753414113,224,0 +170753414161,225,0 +170753414209,224,0 +170753414257,223,0 +170753414305,222,0 +170753414353,216,0 +170753414401,216,0 +170753414451,217,0 +170753414499,217,0 +170753414546,219,0 +170753414594,220,0 +170753414642,220,0 +170753414692,221,0 +170753414740,221,0 +170753414787,223,0 +170753414835,224,0 +170753414885,224,0 +170753414933,223,0 +170753414981,223,0 +170753415028,224,0 +170753415078,224,0 +170753415126,223,0 +170753415174,224,0 +170753415221,220,0 +170753415269,214,0 +170753415317,215,0 +170753415367,216,0 +170753415414,218,0 +170753415464,218,0 +170753415512,219,0 +170753415560,220,0 +170753415607,219,0 +170753415655,221,0 +170753415703,222,0 +170753415753,222,0 +170753415800,223,0 +170753415848,224,0 +170753415898,224,0 +170753415946,223,0 +170753415995,224,0 +170753416043,224,0 +170753416093,223,0 +170753416141,222,0 +170753416189,215,0 +170753416237,215,0 +170753416285,215,0 +170753416333,216,0 +170753416381,217,0 +170753416429,217,0 +170753416477,218,0 +170753416526,218,0 +170753416576,220,0 +170753416624,220,0 +170753416672,221,0 +170753416719,221,0 +170753416767,220,0 +170753416815,217,0 +170753416865,223,0 +170753416915,224,0 +170753416962,223,0 +170753417010,223,0 +170753417058,216,0 +170753417108,215,0 +170753417156,216,0 +170753417204,217,0 +170753417252,217,0 +170753417301,217,0 +170753417351,218,0 +170753417400,218,0 +170753417448,220,0 +170753417498,220,0 +170753417546,221,0 +170753417594,222,0 +170753417642,222,0 +170753417689,223,0 +170753417739,223,0 +170753417788,224,0 +170753417836,223,0 +170753417884,224,0 +170753417932,223,0 +170753417982,216,0 +170753418030,215,0 +170753418078,216,0 +170753418126,216,0 +170753418174,217,0 +170753418223,217,0 +170753418271,218,0 +170753418319,219,0 +170753418367,219,0 +170753418415,220,0 +170753418463,222,0 +170753418511,222,0 +170753418559,222,0 +170753418607,222,0 +170753418654,224,0 +170753418704,223,0 +170753418753,224,0 +170753418801,224,0 +170753418849,224,0 +170753418899,216,0 +170753418948,215,0 +170753418996,216,0 +170753419046,217,0 +170753419093,217,0 +170753419141,218,0 +170753419191,219,0 +170753419240,219,0 +170753419288,219,0 +170753419336,220,0 +170753419384,221,0 +170753419432,222,0 +170753419481,225,0 +170753419531,223,0 +170753419579,223,0 +170753419628,223,0 +170753419678,223,0 +170753419727,224,0 +170753419775,224,0 +170753419823,216,0 +170753419872,217,0 +170753419920,217,0 +170753419968,216,0 +170753420016,218,0 +170753420064,219,0 +170753420113,221,0 +170753420163,221,0 +170753420211,221,0 +170753420259,222,0 +170753420308,222,0 +170753420356,223,0 +170753420404,223,0 +170753420452,224,0 +170753420500,224,0 +170753420547,224,0 +170753420595,224,0 +170753420645,223,0 +170753420693,219,0 +170753420741,215,0 +170753420788,216,0 +170753420838,217,0 +170753420886,217,0 +170753420934,218,0 +170753420981,219,0 +170753421029,220,0 +170753421077,221,0 +170753421127,221,0 +170753421176,221,0 +170753421224,224,0 +170753421272,223,0 +170753421320,223,0 +170753421368,223,0 +170753421416,223,0 +170753421463,224,0 +170753421513,223,0 +170753421561,223,0 +170753421609,217,0 +170753421656,215,0 +170753421704,215,0 +170753421754,216,0 +170753421802,217,0 +170753421850,218,0 +170753421898,217,0 +170753421946,218,0 +170753421993,220,0 +170753422041,220,0 +170753422089,221,0 +170753422139,222,0 +170753422188,222,0 +170753422236,222,0 +170753422284,223,0 +170753422333,223,0 +170753422383,224,0 +170753422431,224,0 +170753422478,223,0 +170753422526,222,0 +170753422576,214,0 +170753422624,215,0 +170753422671,216,0 +170753422721,217,0 +170753422769,217,0 +170753422817,218,0 +170753422865,218,0 +170753422914,219,0 +170753422962,220,0 +170753423010,221,0 +170753423059,222,0 +170753423107,222,0 +170753423155,224,0 +170753423203,224,0 +170753423251,224,0 +170753423299,224,0 +170753423347,225,0 +170753423395,224,0 +170753423443,216,0 +170753423491,215,0 +170753423539,215,0 +170753423587,215,0 +170753423636,215,0 +170753423684,216,0 +170753423734,217,0 +170753423783,217,0 +170753423833,218,0 +170753423882,220,0 +170753423930,220,0 +170753423978,221,0 +170753424026,222,0 +170753424074,222,0 +170753424122,223,0 +170753424172,222,0 +170753424220,224,0 +170753424269,224,0 +170753424317,223,0 +170753424367,215,0 +170753424416,215,0 +170753424464,216,0 +170753424512,217,0 +170753424560,217,0 +170753424608,218,0 +170753424658,219,0 +170753424705,220,0 +170753424755,220,0 +170753424804,221,0 +170753424852,222,0 +170753424900,222,0 +170753424948,223,0 +170753424996,222,0 +170753425046,220,0 +170753425095,223,0 +170753425145,224,0 +170753425193,223,0 +170753425241,223,0 +170753425289,215,0 +170753425338,215,0 +170753425388,217,0 +170753425437,217,0 +170753425487,218,0 +170753425536,219,0 +170753425586,219,0 +170753425635,220,0 +170753425683,221,0 +170753425733,221,0 +170753425781,221,0 +170753425830,222,0 +170753425878,222,0 +170753425928,223,0 +170753425977,223,0 +170753426025,223,0 +170753426073,223,0 +170753426123,223,0 +170753426171,221,0 +170753426219,215,0 +170753426268,215,0 +170753426318,215,0 +170753426366,216,0 +170753426414,219,0 +170753426463,218,0 +170753426513,219,0 +170753426562,224,0 +170753426610,220,0 +170753426660,221,0 +170753426709,222,0 +170753426757,222,0 +170753426807,223,0 +170753426855,223,0 +170753426903,223,0 +170753426950,225,0 +170753427000,225,0 +170753427050,223,0 +170753427099,216,0 +170753427149,215,0 +170753427196,215,0 +170753427244,215,0 +170753427294,216,0 +170753427342,216,0 +170753427391,217,0 +170753427439,218,0 +170753427487,219,0 +170753427537,220,0 +170753427585,220,0 +170753427633,221,0 +170753427681,222,0 +170753427729,223,0 +170753427778,223,0 +170753427826,223,0 +170753427874,224,0 +170753427922,224,0 +170753427970,223,0 +170753428020,215,0 +170753428067,214,0 +170753428115,215,0 +170753428165,216,0 +170753428213,216,0 +170753428262,217,0 +170753428310,218,0 +170753428358,218,0 +170753428406,219,0 +170753428453,220,0 +170753428501,220,0 +170753428551,221,0 +170753428599,222,0 +170753428648,223,0 +170753428696,224,0 +170753428744,222,0 +170753428792,224,0 +170753428840,224,0 +170753428888,223,0 +170753428937,215,0 +170753428985,215,0 +170753429033,215,0 +170753429081,215,0 +170753429129,215,0 +170753429177,216,0 +170753429225,216,0 +170753429273,218,0 +170753429321,219,0 +170753429369,219,0 +170753429417,220,0 +170753429465,220,0 +170753429512,221,0 +170753429560,221,0 +170753429610,222,0 +170753429659,222,0 +170753429709,222,0 +170753429759,222,0 +170753429808,222,0 +170753429858,215,0 +170753429906,215,0 +170753429953,215,0 +170753430001,215,0 +170753430049,215,0 +170753430097,216,0 +170753430145,215,0 +170753430193,216,0 +170753430241,216,0 +170753430289,216,0 +170753430337,217,0 +170753430386,219,0 +170753430436,221,0 +170753430484,220,0 +170753430533,221,0 +170753430581,222,0 +170753430629,222,0 +170753430677,223,0 +170753430725,223,0 +170753430774,215,0 +170753430824,215,0 +170753430873,216,0 +170753430923,216,0 +170753430971,216,0 +170753431019,217,0 +170753431068,218,0 +170753431118,219,0 +170753431168,219,0 +170753431216,219,0 +170753431265,220,0 +170753431315,221,0 +170753431363,222,0 +170753431410,223,0 +170753431460,221,0 +170753431510,222,0 +170753431559,225,0 +170753431609,223,0 +170753431657,216,0 +170753431706,216,0 +170753431754,216,0 +170753431803,216,0 +170753431853,218,0 +170753431901,218,0 +170753431951,219,0 +170753432000,220,0 +170753432048,220,0 +170753432097,220,0 +170753432145,221,0 +170753432195,222,0 +170753432243,223,0 +170753432291,222,0 +170753432339,224,0 +170753432388,223,0 +170753432436,224,0 +170753432484,224,0 +170753432532,223,0 +170753432580,217,0 +170753432628,217,0 +170753432676,217,0 +170753432724,218,0 +170753432773,218,0 +170753432823,220,0 +170753432872,222,0 +170753432920,221,0 +170753432970,220,0 +170753433018,223,0 +170753433066,222,0 +170753433114,221,0 +170753433163,223,0 +170753433211,224,0 +170753433259,224,0 +170753433309,223,0 +170753433358,223,0 +170753433408,224,0 +170753433457,223,0 +170753433505,218,0 +170753433555,218,0 +170753433604,218,0 +170753433654,219,0 +170753433703,220,0 +170753433751,222,0 +170753433801,222,0 +170753433850,222,0 +170753433900,224,0 +170753433948,222,0 +170753433996,223,0 +170753434044,223,0 +170753434092,223,0 +170753434140,223,0 +170753434188,223,0 +170753434236,223,0 +170753434285,223,0 +170753434333,223,0 +170753434383,217,0 +170753434431,217,0 +170753434480,217,0 +170753434530,218,0 +170753434579,219,0 +170753434629,221,0 +170753434677,221,0 +170753434726,222,0 +170753434774,222,0 +170753434824,222,0 +170753434872,223,0 +170753434921,223,0 +170753434969,224,0 +170753435017,225,0 +170753435067,224,0 +170753435115,224,0 +170753435164,223,0 +170753435212,224,0 +170753435262,223,0 +170753435310,216,0 +170753435358,215,0 +170753435406,216,0 +170753435453,217,0 +170753435501,219,0 +170753435551,219,0 +170753435600,219,0 +170753435650,220,0 +170753435700,220,0 +170753435747,222,0 +170753435795,223,0 +170753435843,224,0 +170753435893,225,0 +170753435942,224,0 +170753435992,226,0 +170753436040,225,0 +170753436088,223,0 +170753436137,223,0 +170753436185,223,0 +170753436235,216,0 +170753436284,216,0 +170753436332,217,0 +170753436382,217,0 +170753436430,218,0 +170753436478,219,0 +170753436527,219,0 +170753436577,220,0 +170753436626,221,0 +170753436674,221,0 +170753436724,222,0 +170753436772,223,0 +170753436820,225,0 +170753436868,223,0 +170753436915,223,0 +170753436965,223,0 +170753437013,223,0 +170753437061,224,0 +170753437110,218,0 +170753437158,215,0 +170753437208,216,0 +170753437256,217,0 +170753437305,218,0 +170753437353,219,0 +170753437403,220,0 +170753437451,220,0 +170753437499,221,0 +170753437548,221,0 +170753437596,222,0 +170753437644,223,0 +170753437692,223,0 +170753437742,221,0 +170753437791,222,0 +170753437839,224,0 +170753437889,223,0 +170753437938,224,0 +170753437986,223,0 +170753438034,216,0 +170753438083,216,0 +170753438131,217,0 +170753438181,218,0 +170753438229,219,0 +170753438277,219,0 +170753438325,220,0 +170753438374,221,0 +170753438424,221,0 +170753438473,221,0 +170753438521,222,0 +170753438571,223,0 +170753438619,223,0 +170753438668,224,0 +170753438716,224,0 +170753438766,228,0 +170753438814,224,0 +170753438862,224,0 +170753438910,223,0 +170753438957,216,0 +170753439007,217,0 +170753439055,217,0 +170753439103,218,0 +170753439151,218,0 +170753439199,219,0 +170753439248,220,0 +170753439298,221,0 +170753439346,222,0 +170753439394,221,0 +170753439442,222,0 +170753439490,226,0 +170753439539,226,0 +170753439589,224,0 +170753439637,224,0 +170753439685,226,0 +170753439733,224,0 +170753439780,223,0 +170753439828,223,0 +170753439876,215,0 +170753439926,216,0 +170753439974,216,0 +170753440022,217,0 +170753440070,218,0 +170753440119,219,0 +170753440167,220,0 +170753440215,221,0 +170753440263,221,0 +170753440313,222,0 +170753440362,223,0 +170753440410,223,0 +170753440458,223,0 +170753440508,223,0 +170753440556,223,0 +170753440603,224,0 +170753440651,223,0 +170753440701,223,0 +170753440749,216,0 +170753440799,215,0 +170753440848,215,0 +170753440898,215,0 +170753440946,216,0 +170753440994,217,0 +170753441043,218,0 +170753441091,218,0 +170753441139,219,0 +170753441187,219,0 +170753441235,220,0 +170753441283,224,0 +170753441331,223,0 +170753441379,223,0 +170753441427,223,0 +170753441475,224,0 +170753441524,225,0 +170753441572,223,0 +170753441622,224,0 +170753441670,216,0 +170753441718,215,0 +170753441767,215,0 +170753441815,216,0 +170753441863,216,0 +170753441913,218,0 +170753441962,218,0 +170753442012,218,0 +170753442061,219,0 +170753442111,220,0 +170753442159,221,0 +170753442207,222,0 +170753442254,222,0 +170753442304,223,0 +170753442354,223,0 +170753442403,224,0 +170753442451,224,0 +170753442499,223,0 +170753442547,223,0 +170753442595,216,0 +170753442643,215,0 +170753442692,215,0 +170753442740,216,0 +170753442788,217,0 +170753442838,218,0 +170753442887,218,0 +170753442937,219,0 +170753442986,220,0 +170753443034,220,0 +170753443082,222,0 +170753443131,223,0 +170753443179,216,0 +170753443227,223,0 +170753443275,223,0 +170753443323,223,0 +170753443371,223,0 +170753443421,223,0 +170753443468,221,0 +170753443516,215,0 +170753443566,216,0 +170753443615,216,0 +170753443665,218,0 +170753443713,218,0 +170753443762,220,0 +170753443810,219,0 +170753443858,220,0 +170753443906,221,0 +170753443956,222,0 +170753444005,222,0 +170753444053,223,0 +170753444103,223,0 +170753444152,223,0 +170753444200,223,0 +170753444250,224,0 +170753444299,223,0 +170753444349,222,0 +170753444397,216,0 +170753444445,215,0 +170753444493,216,0 +170753444542,218,0 +170753444590,218,0 +170753444638,219,0 +170753444686,219,0 +170753444734,221,0 +170753444782,220,0 +170753444830,221,0 +170753444878,222,0 +170753444927,222,0 +170753444975,223,0 +170753445024,224,0 +170753445072,223,0 +170753445120,224,0 +170753445168,224,0 +170753445216,223,0 +170753445264,222,0 +170753445312,215,0 +170753445360,214,0 +170753445408,215,0 +170753445456,215,0 +170753445503,215,0 +170753445551,215,0 +170753445601,216,0 +170753445649,216,0 +170753445697,218,0 +170753445744,219,0 +170753445792,219,0 +170753445840,220,0 +170753445888,221,0 +170753445936,221,0 +170753445984,222,0 +170753446031,222,0 +170753446079,222,0 +170753446127,223,0 +170753446175,224,0 +170753446223,216,0 +170753446271,214,0 +170753446319,214,0 +170753446369,215,0 +170753446417,215,0 +170753446465,215,0 +170753446512,215,0 +170753446562,216,0 +170753446612,217,0 +170753446659,217,0 +170753446707,218,0 +170753446757,218,0 +170753446807,220,0 +170753446856,221,0 +170753446904,220,0 +170753446954,220,0 +170753447002,221,0 +170753447049,222,0 +170753447097,222,0 +170753447147,215,0 +170753447195,215,0 +170753447243,215,0 +170753447292,216,0 +170753447340,217,0 +170753447390,217,0 +170753447437,218,0 +170753447485,218,0 +170753447533,219,0 +170753447581,219,0 +170753447629,220,0 +170753447678,220,0 +170753447726,221,0 +170753447776,222,0 +170753447823,221,0 +170753447871,223,0 +170753447919,222,0 +170753447969,223,0 +170753448018,224,0 +170753448066,215,0 +170753448114,216,0 +170753448162,217,0 +170753448211,217,0 +170753448261,218,0 +170753448309,219,0 +170753448357,219,0 +170753448406,220,0 +170753448454,222,0 +170753448504,222,0 +170753448552,223,0 +170753448601,222,0 +170753448649,223,0 +170753448699,223,0 +170753448747,224,0 +170753448795,223,0 +170753448844,223,0 +170753448894,222,0 +170753448942,216,0 +170753448990,215,0 +170753449038,216,0 +170753449087,218,0 +170753449135,217,0 +170753449183,218,0 +170753449233,219,0 +170753449282,220,0 +170753449330,219,0 +170753449380,221,0 +170753449428,223,0 +170753449476,223,0 +170753449525,223,0 +170753449573,223,0 +170753449621,223,0 +170753449669,223,0 +170753449719,223,0 +170753449767,223,0 +170753449815,224,0 +170753449864,216,0 +170753449912,215,0 +170753449962,217,0 +170753450009,217,0 +170753450057,218,0 +170753450107,219,0 +170753450157,220,0 +170753450205,220,0 +170753450252,220,0 +170753450300,221,0 +170753450350,222,0 +170753450400,222,0 +170753450449,223,0 +170753450497,224,0 +170753450547,224,0 +170753450596,224,0 +170753450644,224,0 +170753450692,224,0 +170753450739,222,0 +170753450787,216,0 +170753450835,216,0 +170753450883,217,0 +170753450931,218,0 +170753450980,218,0 +170753451030,219,0 +170753451078,219,0 +170753451127,220,0 +170753451175,221,0 +170753451223,222,0 +170753451271,222,0 +170753451319,222,0 +170753451368,223,0 +170753451416,222,0 +170753451464,223,0 +170753451512,222,0 +170753451562,224,0 +170753451611,222,0 +170753451659,217,0 +170753451707,218,0 +170753451757,218,0 +170753451806,218,0 +170753451854,219,0 +170753451902,220,0 +170753451952,221,0 +170753452001,222,0 +170753452049,222,0 +170753452099,222,0 +170753452147,222,0 +170753452195,222,0 +170753452242,223,0 +170753452290,224,0 +170753452340,224,0 +170753452388,223,0 +170753452437,223,0 +170753452485,223,0 +170753452533,223,0 +170753452581,217,0 +170753452629,217,0 +170753452677,218,0 +170753452725,218,0 +170753452775,220,0 +170753452823,220,0 +170753452871,221,0 +170753452920,222,0 +170753452968,222,0 +170753453016,223,0 +170753453066,224,0 +170753453114,224,0 +170753453163,223,0 +170753453213,223,0 +170753453261,223,0 +170753453308,224,0 +170753453356,224,0 +170753453404,223,0 +170753453454,222,0 +170753453502,215,0 +170753453551,215,0 +170753453601,216,0 +170753453649,217,0 +170753453697,219,0 +170753453745,219,0 +170753453793,220,0 +170753453841,220,0 +170753453890,221,0 +170753453938,221,0 +170753453986,224,0 +170753454034,225,0 +170753454084,225,0 +170753454132,224,0 +170753454179,223,0 +170753454227,224,0 +170753454275,223,0 +170753454323,223,0 +170753454371,222,0 +170753454419,215,0 +170753454467,215,0 +170753454516,216,0 +170753454564,217,0 +170753454612,217,0 +170753454660,218,0 +170753454709,219,0 +170753454757,220,0 +170753454805,220,0 +170753454853,221,0 +170753454903,222,0 +170753454951,222,0 +170753455000,222,0 +170753455048,222,0 +170753455096,223,0 +170753455144,226,0 +170753455192,223,0 +170753455240,223,0 +170753455288,216,0 +170753455337,215,0 +170753455387,215,0 +170753455436,215,0 +170753455484,216,0 +170753455532,216,0 +170753455582,217,0 +170753455630,218,0 +170753455679,220,0 +170753455729,220,0 +170753455778,220,0 +170753455828,222,0 +170753455876,223,0 +170753455925,222,0 +170753455973,224,0 +170753456021,223,0 +170753456069,223,0 +170753456117,224,0 +170753456167,223,0 +170753456215,216,0 +170753456263,214,0 +170753456312,214,0 +170753456362,215,0 +170753456410,215,0 +170753456458,215,0 +170753456507,216,0 +170753456557,217,0 +170753456606,217,0 +170753456654,218,0 +170753456704,219,0 +170753456752,220,0 +170753456800,221,0 +170753456848,222,0 +170753456896,223,0 +170753456944,222,0 +170753456993,224,0 +170753457043,224,0 +170753457092,223,0 +170753457140,215,0 +170753457190,215,0 +170753457239,215,0 +170753457289,215,0 +170753457338,215,0 +170753457386,217,0 +170753457434,218,0 +170753457482,218,0 +170753457530,219,0 +170753457579,220,0 +170753457629,221,0 +170753457677,221,0 +170753457725,222,0 +170753457773,223,0 +170753457822,222,0 +170753457870,222,0 +170753457918,222,0 +170753457968,223,0 +170753458017,216,0 +170753458067,215,0 +170753458114,215,0 +170753458162,215,0 +170753458212,216,0 +170753458260,217,0 +170753458309,217,0 +170753458357,218,0 +170753458407,218,0 +170753458457,220,0 +170753458505,221,0 +170753458553,223,0 +170753458600,223,0 +170753458648,224,0 +170753458696,224,0 +170753458744,224,0 +170753458794,223,0 +170753458842,224,0 +170753458890,223,0 +170753458938,215,0 +170753458986,215,0 +170753459035,216,0 +170753459085,217,0 +170753459134,216,0 +170753459184,218,0 +170753459233,218,0 +170753459281,220,0 +170753459329,220,0 +170753459379,220,0 +170753459428,215,0 +170753459476,221,0 +170753459524,222,0 +170753459574,224,0 +170753459623,222,0 +170753459671,224,0 +170753459720,224,0 +170753459770,223,0 +170753459820,217,0 +170753459869,214,0 +170753459917,215,0 +170753459965,216,0 +170753460015,217,0 +170753460062,217,0 +170753460110,218,0 +170753460160,219,0 +170753460209,219,0 +170753460259,220,0 +170753460309,221,0 +170753460356,223,0 +170753460404,225,0 +170753460452,223,0 +170753460500,224,0 +170753460550,222,0 +170753460598,224,0 +170753460646,223,0 +170753460695,223,0 +170753460745,216,0 +170753460793,215,0 +170753460842,215,0 +170753460890,217,0 +170753460940,217,0 +170753460988,218,0 +170753461038,218,0 +170753461087,219,0 +170753461137,220,0 +170753461185,220,0 +170753461233,221,0 +170753461281,222,0 +170753461329,224,0 +170753461377,223,0 +170753461424,223,0 +170753461472,224,0 +170753461522,224,0 +170753461570,223,0 +170753461618,222,0 +170753461666,217,0 +170753461714,217,0 +170753461763,218,0 +170753461813,220,0 +170753461862,220,0 +170753461912,222,0 +170753461960,221,0 +170753462008,222,0 +170753462056,222,0 +170753462104,223,0 +170753462152,223,0 +170753462199,224,0 +170753462247,224,0 +170753462295,223,0 +170753462345,224,0 +170753462394,223,0 +170753462442,224,0 +170753462492,223,0 +170753462540,219,0 +170753462588,220,0 +170753462636,220,0 +170753462685,221,0 +170753462733,223,0 +170753462781,221,0 +170753462829,222,0 +170753462877,222,0 +170753462927,223,0 +170753462976,224,0 +170753463024,224,0 +170753463072,224,0 +170753463120,225,0 +170753463168,224,0 +170753463216,224,0 +170753463264,224,0 +170753463312,223,0 +170753463360,223,0 +170753463409,223,0 +170753463457,219,0 +170753463507,219,0 +170753463555,219,0 +170753463603,220,0 +170753463651,220,0 +170753463699,221,0 +170753463748,222,0 +170753463798,222,0 +170753463846,223,0 +170753463895,222,0 +170753463945,222,0 +170753463993,223,0 +170753464041,224,0 +170753464089,223,0 +170753464138,223,0 +170753464186,221,0 +170753464236,223,0 +170753464284,222,0 +170753464332,221,0 +170753464381,217,0 +170753464429,218,0 +170753464477,218,0 +170753464525,219,0 +170753464575,223,0 +170753464623,220,0 +170753464672,221,0 +170753464720,221,0 +170753464768,221,0 +170753464816,222,0 +170753464864,222,0 +170753464912,223,0 +170753464960,223,0 +170753465008,223,0 +170753465056,224,0 +170753465103,224,0 +170753465153,224,0 +170753465201,223,0 +170753465249,217,0 +170753465298,215,0 +170753465348,216,0 +170753465397,217,0 +170753465445,217,0 +170753465495,218,0 +170753465544,219,0 +170753465592,220,0 +170753465640,220,0 +170753465690,220,0 +170753465738,222,0 +170753465787,221,0 +170753465837,222,0 +170753465885,223,0 +170753465934,224,0 +170753465982,224,0 +170753466030,224,0 +170753466079,225,0 +170753466127,222,0 +170753466175,216,0 +170753466223,215,0 +170753466273,215,0 +170753466322,216,0 +170753466370,217,0 +170753466418,218,0 +170753466466,218,0 +170753466514,220,0 +170753466562,220,0 +170753466610,220,0 +170753466658,220,0 +170753466707,221,0 +170753466757,222,0 +170753466805,223,0 +170753466854,222,0 +170753466904,223,0 +170753466953,223,0 +170753467003,223,0 +170753467053,223,0 +170753467101,215,0 +170753467148,214,0 +170753467196,215,0 +170753467244,215,0 +170753467292,215,0 +170753467340,215,0 +170753467388,216,0 +170753467438,218,0 +170753467487,219,0 +170753467535,219,0 +170753467585,220,0 +170753467633,222,0 +170753467681,221,0 +170753467730,222,0 +170753467780,222,0 +170753467828,223,0 +170753467876,223,0 +170753467925,223,0 +170753467973,216,0 +170753468023,215,0 +170753468071,215,0 +170753468119,215,0 +170753468166,215,0 +170753468214,216,0 +170753468262,217,0 +170753468312,218,0 +170753468360,219,0 +170753468408,219,0 +170753468456,220,0 +170753468504,220,0 +170753468553,221,0 +170753468601,222,0 +170753468649,223,0 +170753468697,223,0 +170753468745,224,0 +170753468793,224,0 +170753468842,223,0 +170753468892,216,0 +170753468940,214,0 +170753468988,215,0 +170753469036,216,0 +170753469083,216,0 +170753469131,217,0 +170753469181,219,0 +170753469229,219,0 +170753469278,219,0 +170753469326,220,0 +170753469374,221,0 +170753469422,221,0 +170753469470,222,0 +170753469518,222,0 +170753469565,223,0 +170753469613,223,0 +170753469663,223,0 +170753469711,222,0 +170753469760,223,0 +170753469808,217,0 +170753469857,216,0 +170753469905,217,0 +170753469955,217,0 +170753470003,218,0 +170753470051,218,0 +170753470099,220,0 +170753470148,220,0 +170753470196,220,0 +170753470244,222,0 +170753470292,222,0 +170753470340,223,0 +170753470388,223,0 +170753470438,224,0 +170753470487,225,0 +170753470535,224,0 +170753470583,224,0 +170753470631,223,0 +170753470679,223,0 +170753470728,216,0 +170753470776,216,0 +170753470824,217,0 +170753470872,219,0 +170753470920,219,0 +170753470970,220,0 +170753471019,221,0 +170753471069,221,0 +170753471117,221,0 +170753471165,222,0 +170753471214,223,0 +170753471264,223,0 +170753471313,224,0 +170753471361,223,0 +170753471409,223,0 +170753471459,223,0 +170753471507,223,0 +170753471556,223,0 +170753471604,216,0 +170753471652,216,0 +170753471702,216,0 +170753471750,218,0 +170753471798,218,0 +170753471847,219,0 +170753471895,220,0 +170753471943,221,0 +170753471993,221,0 +170753472042,221,0 +170753472092,222,0 +170753472141,223,0 +170753472191,222,0 +170753472238,223,0 +170753472286,223,0 +170753472336,223,0 +170753472384,223,0 +170753472432,223,0 +170753472481,222,0 +170753472529,215,0 +170753472577,214,0 +170753472627,215,0 +170753472675,215,0 +170753472723,216,0 +170753472771,218,0 +170753472819,218,0 +170753472867,219,0 +170753472916,219,0 +170753472964,220,0 +170753473012,221,0 +170753473060,222,0 +170753473108,224,0 +170753473158,224,0 +170753473207,223,0 +170753473255,222,0 +170753473305,223,0 +170753473354,223,0 +170753473402,220,0 +170753473450,215,0 +170753473498,214,0 +170753473548,215,0 +170753473596,215,0 +170753473645,217,0 +170753473693,217,0 +170753473741,218,0 +170753473789,219,0 +170753473837,220,0 +170753473885,220,0 +170753473935,221,0 +170753473984,222,0 +170753474034,222,0 +170753474083,222,0 +170753474131,222,0 +170753474179,223,0 +170753474227,223,0 +170753474275,223,0 +170753474323,216,0 +170753474373,215,0 +170753474422,215,0 +170753474470,215,0 +170753474518,215,0 +170753474568,216,0 +170753474617,217,0 +170753474667,218,0 +170753474716,218,0 +170753474764,221,0 +170753474812,221,0 +170753474860,221,0 +170753474910,221,0 +170753474958,223,0 +170753475006,223,0 +170753475054,224,0 +170753475102,223,0 +170753475151,223,0 +170753475201,222,0 +170753475250,215,0 +170753475300,214,0 +170753475349,214,0 +170753475399,215,0 +170753475448,215,0 +170753475498,215,0 +170753475547,216,0 +170753475597,217,0 +170753475645,218,0 +170753475693,219,0 +170753475741,219,0 +170753475790,220,0 +170753475838,222,0 +170753475886,222,0 +170753475934,222,0 +170753475984,222,0 +170753476033,223,0 +170753476083,224,0 +170753476132,216,0 +170753476180,215,0 +170753476230,215,0 +170753476279,215,0 +170753476329,216,0 +170753476378,217,0 +170753476428,217,0 +170753476478,217,0 +170753476525,220,0 +170753476573,219,0 +170753476621,220,0 +170753476669,222,0 +170753476717,221,0 +170753476765,223,0 +170753476813,223,0 +170753476863,223,0 +170753476911,224,0 +170753476960,225,0 +170753477010,222,0 +170753477058,215,0 +170753477106,216,0 +170753477155,216,0 +170753477203,217,0 +170753477253,217,0 +170753477302,218,0 +170753477350,218,0 +170753477400,218,0 +170753477448,220,0 +170753477496,221,0 +170753477543,221,0 +170753477591,222,0 +170753477639,223,0 +170753477687,224,0 +170753477737,223,0 +170753477786,223,0 +170753477834,223,0 +170753477882,225,0 +170753477930,216,0 +170753477980,217,0 +170753478028,216,0 +170753478076,218,0 +170753478125,221,0 +170753478173,218,0 +170753478223,220,0 +170753478272,221,0 +170753478320,222,0 +170753478368,221,0 +170753478418,221,0 +170753478467,222,0 +170753478515,223,0 +170753478565,224,0 +170753478614,223,0 +170753478664,224,0 +170753478712,224,0 +170753478760,224,0 +170753478808,223,0 +170753478856,215,0 +170753478904,215,0 +170753478953,216,0 +170753479001,215,0 +170753479049,217,0 +170753479097,219,0 +170753479145,219,0 +170753479193,219,0 +170753479241,220,0 +170753479289,221,0 +170753479337,222,0 +170753479386,222,0 +170753479434,223,0 +170753479482,224,0 +170753479532,221,0 +170753479580,223,0 +170753479628,225,0 +170753479676,223,0 +170753479724,223,0 +170753479772,215,0 +170753479820,216,0 +170753479868,217,0 +170753479917,217,0 +170753479967,219,0 +170753480016,219,0 +170753480064,220,0 +170753480114,220,0 +170753480162,220,0 +170753480211,221,0 +170753480259,222,0 +170753480307,222,0 +170753480355,223,0 +170753480403,225,0 +170753480451,223,0 +170753480499,224,0 +170753480548,223,0 +170753480596,224,0 +170753480645,216,0 +170753480695,216,0 +170753480743,216,0 +170753480791,218,0 +170753480839,219,0 +170753480887,220,0 +170753480934,220,0 +170753480984,221,0 +170753481032,221,0 +170753481081,222,0 +170753481131,223,0 +170753481179,223,0 +170753481228,225,0 +170753481276,223,0 +170753481324,223,0 +170753481373,224,0 +170753481423,223,0 +170753481471,222,0 +170753481519,223,0 +170753481566,216,0 +170753481614,215,0 +170753481662,217,0 +170753481710,217,0 +170753481760,218,0 +170753481809,219,0 +170753481857,220,0 +170753481905,220,0 +170753481953,221,0 +170753482001,222,0 +170753482049,222,0 +170753482097,223,0 +170753482145,223,0 +170753482193,224,0 +170753482243,223,0 +170753482292,223,0 +170753482340,223,0 +170753482389,224,0 +170753482437,223,0 +170753482485,214,0 +170753482535,215,0 +170753482584,215,0 +170753482632,215,0 +170753482682,216,0 +170753482730,217,0 +170753482778,218,0 +170753482828,220,0 +170753482877,219,0 +170753482925,220,0 +170753482973,222,0 +170753483021,222,0 +170753483069,222,0 +170753483119,223,0 +170753483167,222,0 +170753483215,223,0 +170753483263,223,0 +170753483312,222,0 +170753483360,215,0 +170753483408,215,0 +170753483456,215,0 +170753483504,215,0 +170753483553,216,0 +170753483601,216,0 +170753483651,217,0 +170753483700,217,0 +170753483750,219,0 +170753483799,220,0 +170753483847,220,0 +170753483895,221,0 +170753483945,222,0 +170753483993,222,0 +170753484042,222,0 +170753484092,223,0 +170753484140,225,0 +170753484188,223,0 +170753484236,216,0 +170753484284,215,0 +170753484332,215,0 +170753484380,216,0 +170753484429,217,0 +170753484477,218,0 +170753484525,218,0 +170753484574,220,0 +170753484624,220,0 +170753484672,221,0 +170753484720,222,0 +170753484769,222,0 +170753484819,223,0 +170753484867,224,0 +170753484915,223,0 +170753484964,223,0 +170753485012,223,0 +170753485062,223,0 +170753485110,216,0 +170753485158,214,0 +170753485206,215,0 +170753485255,215,0 +170753485303,215,0 +170753485353,216,0 +170753485402,216,0 +170753485452,218,0 +170753485501,218,0 +170753485551,219,0 +170753485599,219,0 +170753485647,221,0 +170753485695,222,0 +170753485744,222,0 +170753485792,223,0 +170753485840,222,0 +170753485888,222,0 +170753485936,223,0 +170753485984,223,0 +170753486034,214,0 +170753486082,215,0 +170753486131,215,0 +170753486179,215,0 +170753486229,216,0 +170753486278,216,0 +170753486326,217,0 +170753486376,217,0 +170753486425,218,0 +170753486475,218,0 +170753486523,219,0 +170753486572,219,0 +170753486620,220,0 +170753486668,221,0 +170753486718,222,0 +170753486767,222,0 +170753486815,222,0 +170753486865,223,0 +170753486913,223,0 +170753486962,224,0 +170753487010,223,0 +170753487058,224,0 +170753487106,223,0 +170753487156,223,0 +170753487203,223,0 +170753487253,223,0 +170753487301,223,0 +170753487349,216,0 +170753487396,217,0 +170753487444,218,0 +170753487492,218,0 +170753487540,219,0 +170753487590,219,0 +170753487639,219,0 +170753487687,220,0 +170753487737,221,0 +170753487785,221,0 +170753487834,224,0 +170753487884,224,0 +170753487932,223,0 +170753487981,225,0 +170753488031,223,0 +170753488078,223,0 +170753488126,223,0 +170753488174,222,0 +170753488222,215,0 +170753488271,216,0 +170753488321,216,0 +170753488369,216,0 +170753488417,218,0 +170753488465,219,0 +170753488514,219,0 +170753488562,219,0 +170753488610,220,0 +170753488658,221,0 +170753488708,223,0 +170753488756,223,0 +170753488804,223,0 +170753488853,224,0 +170753488901,224,0 +170753488949,224,0 +170753488997,224,0 +170753489045,223,0 +170753489093,217,0 +170753489141,217,0 +170753489189,218,0 +170753489237,218,0 +170753489284,220,0 +170753489332,220,0 +170753489382,220,0 +170753489431,222,0 +170753489481,222,0 +170753489531,222,0 +170753489580,222,0 +170753489628,224,0 +170753489676,224,0 +170753489724,224,0 +170753489772,222,0 +170753489820,224,0 +170753489868,220,0 +170753489917,222,0 +170753489967,216,0 +170753490015,216,0 +170753490063,217,0 +170753490112,218,0 +170753490162,220,0 +170753490211,220,0 +170753490259,220,0 +170753490309,221,0 +170753490358,222,0 +170753490406,223,0 +170753490454,223,0 +170753490502,224,0 +170753490550,222,0 +170753490598,224,0 +170753490646,223,0 +170753490694,222,0 +170753490742,223,0 +170753490791,222,0 +170753490839,222,0 +170753490887,215,0 +170753490935,216,0 +170753490983,216,0 +170753491033,217,0 +170753491082,217,0 +170753491132,218,0 +170753491180,219,0 +170753491228,219,0 +170753491277,221,0 +170753491325,222,0 +170753491373,222,0 +170753491423,221,0 +170753491471,221,0 +170753491520,223,0 +170753491568,223,0 +170753491616,223,0 +170753491664,223,0 +170753491713,223,0 +170753491761,215,0 +170753491810,215,0 +170753491858,216,0 +170753491908,219,0 +170753491956,218,0 +170753492004,218,0 +170753492051,218,0 +170753492101,220,0 +170753492149,221,0 +170753492197,221,0 +170753492244,222,0 +170753492292,223,0 +170753492342,223,0 +170753492391,224,0 +170753492441,225,0 +170753492489,223,0 +170753492538,223,0 +170753492586,222,0 +170753492634,215,0 +170753492684,215,0 +170753492733,216,0 +170753492783,216,0 +170753492832,217,0 +170753492880,218,0 +170753492930,219,0 +170753492979,220,0 +170753493029,220,0 +170753493077,222,0 +170753493126,222,0 +170753493174,222,0 +170753493222,223,0 +170753493272,223,0 +170753493320,224,0 +170753493368,224,0 +170753493417,223,0 +170753493467,223,0 +170753493516,217,0 +170753493566,216,0 +170753493615,216,0 +170753493665,217,0 +170753493713,218,0 +170753493761,218,0 +170753493810,220,0 +170753493860,219,0 +170753493909,220,0 +170753493959,221,0 +170753494008,222,0 +170753494056,223,0 +170753494106,224,0 +170753494155,223,0 +170753494205,224,0 +170753494253,224,0 +170753494302,223,0 +170753494352,223,0 +170753494401,216,0 +170753494449,215,0 +170753494497,215,0 +170753494545,216,0 +170753494593,217,0 +170753494643,218,0 +170753494692,217,0 +170753494740,218,0 +170753494788,220,0 +170753494836,221,0 +170753494884,221,0 +170753494934,222,0 +170753494982,223,0 +170753495030,223,0 +170753495079,224,0 +170753495129,224,0 +170753495178,224,0 +170753495226,223,0 +170753495274,223,0 +170753495322,215,0 +170753495370,215,0 +170753495418,216,0 +170753495466,217,0 +170753495514,217,0 +170753495562,218,0 +170753495611,219,0 +170753495659,220,0 +170753495707,220,0 +170753495755,221,0 +170753495802,221,0 +170753495850,221,0 +170753495898,223,0 +170753495946,224,0 +170753495996,223,0 +170753496044,224,0 +170753496091,223,0 +170753496139,223,0 +170753496189,215,0 +170753496237,214,0 +170753496286,215,0 +170753496335,216,0 +170753496383,217,0 +170753496431,217,0 +170753496479,218,0 +170753496528,219,0 +170753496578,220,0 +170753496626,220,0 +170753496674,221,0 +170753496722,222,0 +170753496769,222,0 +170753496817,223,0 +170753496865,223,0 +170753496913,224,0 +170753496962,223,0 +170753497010,223,0 +170753497058,216,0 +170753497108,215,0 +170753497156,215,0 +170753497203,215,0 +170753497251,216,0 +170753497299,216,0 +170753497347,218,0 +170753497395,219,0 +170753497443,219,0 +170753497491,219,0 +170753497538,220,0 +170753497586,222,0 +170753497634,222,0 +170753497682,222,0 +170753497730,223,0 +170753497778,221,0 +170753497827,224,0 +170753497875,223,0 +170753497923,222,0 +170753497973,216,0 +170753498022,216,0 +170753498070,216,0 +170753498119,218,0 +170753498167,218,0 +170753498217,219,0 +170753498265,221,0 +170753498314,220,0 +170753498364,221,0 +170753498413,223,0 +170753498463,223,0 +170753498511,223,0 +170753498560,224,0 +170753498608,223,0 +170753498658,225,0 +170753498708,223,0 +170753498755,223,0 +170753498803,223,0 +170753498851,217,0 +170753498899,216,0 +170753498947,217,0 +170753498997,218,0 +170753499045,218,0 +170753499093,219,0 +170753499140,219,0 +170753499190,220,0 +170753499239,221,0 +170753499289,220,0 +170753499337,221,0 +170753499386,223,0 +170753499434,222,0 +170753499482,223,0 +170753499530,223,0 +170753499578,224,0 +170753499625,223,0 +170753499673,223,0 +170753499721,216,0 +170753499769,216,0 +170753499817,216,0 +170753499866,217,0 +170753499916,218,0 +170753499964,218,0 +170753500013,220,0 +170753500063,220,0 +170753500110,220,0 +170753500158,222,0 +170753500208,222,0 +170753500256,222,0 +170753500304,224,0 +170753500351,224,0 +170753500399,222,0 +170753500449,222,0 +170753500497,223,0 +170753500545,223,0 +170753500594,220,0 +170753500642,214,0 +170753500690,215,0 +170753500738,216,0 +170753500786,217,0 +170753500835,217,0 +170753500883,219,0 +170753500931,219,0 +170753500980,220,0 +170753501028,220,0 +170753501076,221,0 +170753501125,222,0 +170753501173,221,0 +170753501221,222,0 +170753501269,223,0 +170753501317,223,0 +170753501365,225,0 +170753501413,224,0 +170753501461,223,0 +170753501509,215,0 +170753501558,215,0 +170753501606,215,0 +170753501654,216,0 +170753501702,217,0 +170753501750,218,0 +170753501798,217,0 +170753501846,218,0 +170753501895,219,0 +170753501943,220,0 +170753501993,221,0 +170753502042,221,0 +170753502090,222,0 +170753502140,222,0 +170753502189,222,0 +170753502239,222,0 +170753502288,223,0 +170753502338,223,0 +170753502387,215,0 +170753502437,215,0 +170753502485,214,0 +170753502533,215,0 +170753502581,216,0 +170753502629,217,0 +170753502677,218,0 +170753502725,219,0 +170753502774,219,0 +170753502822,220,0 +170753502870,221,0 +170753502918,221,0 +170753502966,222,0 +170753503014,222,0 +170753503063,223,0 +170753503113,222,0 +170753503162,223,0 +170753503212,223,0 +170753503262,216,0 +170753503311,215,0 +170753503359,215,0 +170753503407,215,0 +170753503455,216,0 +170753503504,216,0 +170753503554,217,0 +170753503602,215,0 +170753503650,219,0 +170753503698,220,0 +170753503747,221,0 +170753503795,222,0 +170753503843,220,0 +170753503891,222,0 +170753503939,223,0 +170753503987,223,0 +170753504035,224,0 +170753504083,223,0 +170753504133,221,0 +170753504181,215,0 +170753504229,215,0 +170753504277,216,0 +170753504325,216,0 +170753504372,223,0 +170753504420,219,0 +170753504468,218,0 +170753504518,219,0 +170753504566,219,0 +170753504615,220,0 +170753504665,222,0 +170753504713,221,0 +170753504760,224,0 +170753504810,224,0 +170753504858,224,0 +170753504906,224,0 +170753504954,224,0 +170753505003,223,0 +170753505053,216,0 +170753505101,217,0 +170753505149,218,0 +170753505198,218,0 +170753505246,219,0 +170753505294,220,0 +170753505342,219,0 +170753505390,221,0 +170753505438,220,0 +170753505488,220,0 +170753505536,222,0 +170753505584,221,0 +170753505632,222,0 +170753505679,222,0 +170753505727,223,0 +170753505775,223,0 +170753505823,223,0 +170753505873,222,0 +170753505920,218,0 +170753505970,217,0 +170753506018,219,0 +170753506066,219,0 +170753506114,221,0 +170753506163,220,0 +170753506213,220,0 +170753506262,222,0 +170753506312,223,0 +170753506362,224,0 +170753506409,224,0 +170753506457,224,0 +170753506505,223,0 +170753506555,224,0 +170753506604,224,0 +170753506652,224,0 +170753506702,223,0 +170753506749,223,0 +170753506797,220,0 +170753506845,220,0 +170753506895,221,0 +170753506942,223,0 +170753506990,223,0 +170753507040,223,0 +170753507089,223,0 +170753507139,219,0 +170753507187,222,0 +170753507235,224,0 +170753507283,224,0 +170753507331,223,0 +170753507378,223,0 +170753507428,223,0 +170753507477,223,0 +170753507525,222,0 +170753507573,223,0 +170753507621,222,0 +170753507669,218,0 +170753507718,219,0 +170753507766,219,0 +170753507814,221,0 +170753507862,221,0 +170753507911,222,0 +170753507961,222,0 +170753508009,223,0 +170753508056,223,0 +170753508106,223,0 +170753508154,224,0 +170753508203,223,0 +170753508251,223,0 +170753508299,224,0 +170753508347,223,0 +170753508397,224,0 +170753508445,223,0 +170753508493,223,0 +170753508542,217,0 +170753508592,217,0 +170753508640,219,0 +170753508689,219,0 +170753508739,220,0 +170753508787,221,0 +170753508835,220,0 +170753508884,221,0 +170753508932,223,0 +170753508980,222,0 +170753509028,225,0 +170753509075,224,0 +170753509123,224,0 +170753509171,224,0 +170753509219,223,0 +170753509267,223,0 +170753509315,223,0 +170753509363,222,0 +170753509411,217,0 +170753509459,216,0 +170753509507,216,0 +170753509555,217,0 +170753509603,218,0 +170753509651,219,0 +170753509699,220,0 +170753509747,222,0 +170753509795,221,0 +170753509843,222,0 +170753509891,222,0 +170753509939,223,0 +170753509988,223,0 +170753510036,224,0 +170753510084,222,0 +170753510132,224,0 +170753510182,223,0 +170753510230,224,0 +170753510279,223,0 +170753510329,215,0 +170753510377,215,0 +170753510425,215,0 +170753510474,215,0 +170753510522,216,0 +170753510570,217,0 +170753510619,218,0 +170753510667,218,0 +170753510717,219,0 +170753510767,221,0 +170753510815,221,0 +170753510862,222,0 +170753510910,222,0 +170753510958,222,0 +170753511006,223,0 +170753511054,223,0 +170753511104,224,0 +170753511152,223,0 +170753511201,215,0 +170753511251,215,0 +170753511299,215,0 +170753511347,215,0 +170753511395,216,0 +170753511444,217,0 +170753511492,218,0 +170753511540,218,0 +170753511590,219,0 +170753511639,221,0 +170753511687,222,0 +170753511735,222,0 +170753511783,223,0 +170753511833,223,0 +170753511882,223,0 +170753511932,223,0 +170753511980,223,0 +170753512029,223,0 +170753512077,216,0 +170753512127,215,0 +170753512176,215,0 +170753512224,216,0 +170753512274,217,0 +170753512323,218,0 +170753512371,219,0 +170753512419,219,0 +170753512469,220,0 +170753512518,221,0 +170753512566,222,0 +170753512614,223,0 +170753512664,223,0 +170753512713,224,0 +170753512763,223,0 +170753512811,224,0 +170753512860,226,0 +170753512910,223,0 +170753512959,215,0 +170753513007,214,0 +170753513055,215,0 +170753513105,216,0 +170753513154,217,0 +170753513204,217,0 +170753513252,215,0 +170753513300,219,0 +170753513348,220,0 +170753513396,221,0 +170753513444,221,0 +170753513491,222,0 +170753513539,223,0 +170753513587,222,0 +170753513635,223,0 +170753513683,223,0 +170753513731,222,0 +170753513780,224,0 +170753513830,216,0 +170753513879,215,0 +170753513927,216,0 +170753513975,217,0 +170753514023,217,0 +170753514071,218,0 +170753514121,220,0 +170753514169,220,0 +170753514216,220,0 +170753514264,222,0 +170753514314,223,0 +170753514362,223,0 +170753514411,224,0 +170753514461,224,0 +170753514510,224,0 +170753514560,224,0 +170753514608,224,0 +170753514657,223,0 +170753514705,217,0 +170753514753,217,0 +170753514803,218,0 +170753514851,218,0 +170753514900,219,0 +170753514948,221,0 +170753514996,221,0 +170753515044,222,0 +170753515092,221,0 +170753515140,222,0 +170753515188,224,0 +170753515237,222,0 +170753515287,228,0 +170753515336,224,0 +170753515384,223,0 +170753515434,223,0 +170753515484,223,0 +170753515533,223,0 +170753515583,216,0 +170753515631,217,0 +170753515680,217,0 +170753515728,218,0 +170753515776,218,0 +170753515826,219,0 +170753515875,219,0 +170753515925,221,0 +170753515973,221,0 +170753516021,222,0 +170753516069,222,0 +170753516118,223,0 +170753516166,226,0 +170753516214,223,0 +170753516264,223,0 +170753516313,223,0 +170753516361,223,0 +170753516409,223,0 +170753516459,216,0 +170753516506,215,0 +170753516554,215,0 +170753516604,216,0 +170753516652,219,0 +170753516700,217,0 +170753516749,218,0 +170753516799,219,0 +170753516847,220,0 +170753516895,221,0 +170753516944,222,0 +170753516992,222,0 +170753517040,223,0 +170753517090,223,0 +170753517138,224,0 +170753517185,223,0 +170753517233,223,0 +170753517283,223,0 +170753517331,224,0 +170753517379,215,0 +170753517427,215,0 +170753517476,215,0 +170753517526,215,0 +170753517575,217,0 +170753517625,217,0 +170753517673,218,0 +170753517722,219,0 +170753517770,220,0 +170753517820,221,0 +170753517869,222,0 +170753517917,222,0 +170753517965,222,0 +170753518013,223,0 +170753518063,223,0 +170753518111,223,0 +170753518159,223,0 +170753518208,217,0 +170753518258,214,0 +170753518307,215,0 +170753518357,215,0 +170753518405,216,0 +170753518453,217,0 +170753518501,218,0 +170753518549,218,0 +170753518598,219,0 +170753518646,219,0 +170753518694,221,0 +170753518743,221,0 +170753518793,224,0 +170753518841,223,0 +170753518890,224,0 +170753518938,224,0 +170753518986,223,0 +170753519034,223,0 +170753519082,221,0 +170753519132,214,0 +170753519181,215,0 +170753519230,216,0 +170753519278,217,0 +170753519326,217,0 +170753519376,217,0 +170753519425,219,0 +170753519473,219,0 +170753519523,219,0 +170753519571,220,0 +170753519620,220,0 +170753519668,221,0 +170753519716,222,0 +170753519765,223,0 +170753519813,223,0 +170753519863,222,0 +170753519910,223,0 +170753519958,216,0 +170753520006,215,0 +170753520054,216,0 +170753520102,217,0 +170753520151,218,0 +170753520201,219,0 +170753520250,218,0 +170753520298,219,0 +170753520346,219,0 +170753520394,221,0 +170753520442,221,0 +170753520490,221,0 +170753520538,222,0 +170753520587,222,0 +170753520635,223,0 +170753520683,223,0 +170753520731,223,0 +170753520779,223,0 +170753520827,222,0 +170753520876,216,0 +170753520924,217,0 +170753520972,217,0 +170753521022,217,0 +170753521070,219,0 +170753521117,219,0 +170753521167,220,0 +170753521215,221,0 +170753521263,222,0 +170753521312,222,0 +170753521360,223,0 +170753521409,222,0 +170753521457,223,0 +170753521507,222,0 +170753521556,223,0 +170753521604,223,0 +170753521652,223,0 +170753521702,223,0 +170753521751,217,0 +170753521799,217,0 +170753521847,218,0 +170753521895,218,0 +170753521943,219,0 +170753521991,219,0 +170753522039,221,0 +170753522087,221,0 +170753522134,222,0 +170753522184,223,0 +170753522232,223,0 +170753522281,223,0 +170753522329,224,0 +170753522379,223,0 +170753522427,224,0 +170753522475,223,0 +170753522523,223,0 +170753522571,222,0 +170753522619,219,0 +170753522668,219,0 +170753522716,219,0 +170753522765,219,0 +170753522813,220,0 +170753522863,220,0 +170753522911,223,0 +170753522960,222,0 +170753523010,222,0 +170753523058,222,0 +170753523107,222,0 +170753523155,224,0 +170753523203,223,0 +170753523253,224,0 +170753523301,223,0 +170753523350,223,0 +170753523398,223,0 +170753523446,223,0 +170753523496,218,0 +170753523544,217,0 +170753523593,218,0 +170753523643,218,0 +170753523691,220,0 +170753523739,220,0 +170753523788,221,0 +170753523836,221,0 +170753523886,222,0 +170753523934,222,0 +170753523982,224,0 +170753524031,224,0 +170753524079,224,0 +170753524129,224,0 +170753524177,225,0 +170753524226,224,0 +170753524274,223,0 +170753524324,222,0 +170753524372,217,0 +170753524420,216,0 +170753524467,216,0 +170753524515,217,0 +170753524565,218,0 +170753524613,218,0 +170753524661,219,0 +170753524708,220,0 +170753524756,221,0 +170753524804,221,0 +170753524852,221,0 +170753524900,222,0 +170753524948,222,0 +170753524996,223,0 +170753525045,223,0 +170753525093,224,0 +170753525141,223,0 +170753525189,223,0 +170753525237,222,0 +170753525285,215,0 +170753525333,216,0 +170753525381,217,0 +170753525429,217,0 +170753525477,218,0 +170753525525,219,0 +170753525574,220,0 +170753525622,219,0 +170753525670,220,0 +170753525720,221,0 +170753525768,222,0 +170753525817,224,0 +170753525865,223,0 +170753525915,223,0 +170753525962,224,0 +170753526012,223,0 +170753526061,223,0 +170753526109,226,0 +170753526159,216,0 +170753526208,215,0 +170753526256,216,0 +170753526304,219,0 +170753526354,218,0 +170753526402,218,0 +170753526450,219,0 +170753526497,220,0 +170753526545,220,0 +170753526593,220,0 +170753526641,223,0 +170753526689,222,0 +170753526737,222,0 +170753526785,223,0 +170753526832,223,0 +170753526880,223,0 +170753526928,223,0 +170753526976,222,0 +170753527024,216,0 +170753527072,215,0 +170753527120,216,0 +170753527168,216,0 +170753527217,218,0 +170753527265,217,0 +170753527313,218,0 +170753527361,219,0 +170753527410,220,0 +170753527458,220,0 +170753527508,221,0 +170753527557,222,0 +170753527605,224,0 +170753527653,223,0 +170753527703,223,0 +170753527751,225,0 +170753527799,223,0 +170753527846,224,0 +170753527894,218,0 +170753527942,216,0 +170753527990,216,0 +170753528040,216,0 +170753528088,217,0 +170753528137,218,0 +170753528187,218,0 +170753528235,218,0 +170753528283,219,0 +170753528332,220,0 +170753528380,222,0 +170753528430,222,0 +170753528478,223,0 +170753528526,223,0 +170753528575,223,0 +170753528623,223,0 +170753528673,224,0 +170753528722,224,0 +170753528770,223,0 +170753528818,215,0 +170753528868,216,0 +170753528917,217,0 +170753528965,216,0 +170753529015,218,0 +170753529064,219,0 +170753529112,219,0 +170753529160,221,0 +170753529210,222,0 +170753529258,223,0 +170753529307,221,0 +170753529357,222,0 +170753529406,223,0 +170753529456,224,0 +170753529504,224,0 +170753529553,225,0 +170753529601,223,0 +170753529649,223,0 +170753529699,215,0 +170753529747,216,0 +170753529796,217,0 +170753529846,218,0 +170753529894,219,0 +170753529942,220,0 +170753529990,220,0 +170753530038,222,0 +170753530086,222,0 +170753530136,222,0 +170753530185,221,0 +170753530233,226,0 +170753530281,224,0 +170753530329,224,0 +170753530379,224,0 +170753530426,224,0 +170753530474,223,0 +170753530522,222,0 +170753530570,216,0 +170753530620,217,0 +170753530668,218,0 +170753530716,219,0 +170753530765,219,0 +170753530815,220,0 +170753530863,221,0 +170753530911,220,0 +170753530958,222,0 +170753531006,222,0 +170753531054,222,0 +170753531102,224,0 +170753531150,224,0 +170753531198,224,0 +170753531246,223,0 +170753531295,224,0 +170753531343,223,0 +170753531391,223,0 +170753531439,218,0 +170753531488,218,0 +170753531536,219,0 +170753531584,220,0 +170753531632,220,0 +170753531681,221,0 +170753531729,222,0 +170753531777,222,0 +170753531825,222,0 +170753531875,222,0 +170753531924,223,0 +170753531972,224,0 +170753532020,226,0 +170753532070,227,0 +170753532118,224,0 +170753532166,223,0 +170753532213,223,0 +170753532261,223,0 +170753532309,216,0 +170753532357,215,0 +170753532405,216,0 +170753532455,217,0 +170753532504,218,0 +170753532554,219,0 +170753532602,220,0 +170753532650,220,0 +170753532699,221,0 +170753532747,223,0 +170753532795,223,0 +170753532843,222,0 +170753532891,225,0 +170753532941,222,0 +170753532990,224,0 +170753533038,223,0 +170753533087,223,0 +170753533137,223,0 +170753533187,216,0 +170753533234,215,0 +170753533282,215,0 +170753533330,216,0 +170753533380,217,0 +170753533430,218,0 +170753533478,218,0 +170753533526,219,0 +170753533575,220,0 +170753533625,221,0 +170753533674,221,0 +170753533722,222,0 +170753533770,223,0 +170753533818,222,0 +170753533866,222,0 +170753533914,223,0 +170753533964,223,0 +170753534013,223,0 +170753534061,216,0 +170753534109,215,0 +170753534159,215,0 +170753534208,216,0 +170753534258,217,0 +170753534306,219,0 +170753534355,218,0 +170753534405,220,0 +170753534453,220,0 +170753534501,221,0 +170753534549,221,0 +170753534597,222,0 +170753534645,222,0 +170753534693,223,0 +170753534742,222,0 +170753534792,223,0 +170753534840,223,0 +170753534887,223,0 +170753534935,220,0 +170753534985,216,0 +170753535033,217,0 +170753535081,217,0 +170753535129,219,0 +170753535176,219,0 +170753535224,220,0 +170753535272,221,0 +170753535320,221,0 +170753535370,222,0 +170753535419,222,0 +170753535469,223,0 +170753535518,223,0 +170753535566,224,0 +170753535614,223,0 +170753535662,224,0 +170753535710,221,0 +170753535758,222,0 +170753535808,221,0 +170753535857,214,0 +170753535905,216,0 +170753535955,217,0 +170753536003,217,0 +170753536052,218,0 +170753536102,218,0 +170753536150,220,0 +170753536199,221,0 +170753536249,220,0 +170753536297,222,0 +170753536345,221,0 +170753536394,223,0 +170753536444,223,0 +170753536492,223,0 +170753536541,224,0 +170753536589,224,0 +170753536637,223,0 +170753536687,217,0 +170753536735,215,0 +170753536784,216,0 +170753536832,217,0 +170753536882,218,0 +170753536930,218,0 +170753536979,219,0 +170753537028,220,0 +170753537078,220,0 +170753537127,222,0 +170753537175,221,0 +170753537223,222,0 +170753537273,223,0 +170753537322,223,0 +170753537370,223,0 +170753537418,222,0 +170753537466,223,0 +170753537514,223,0 +170753537562,217,0 +170753537612,216,0 +170753537661,217,0 +170753537711,217,0 +170753537759,218,0 +170753537808,219,0 +170753537856,219,0 +170753537904,220,0 +170753537952,223,0 +170753538000,221,0 +170753538048,221,0 +170753538096,222,0 +170753538144,223,0 +170753538192,223,0 +170753538240,223,0 +170753538288,223,0 +170753538336,225,0 +170753538384,223,0 +170753538433,223,0 +170753538483,217,0 +170753538531,219,0 +170753538579,218,0 +170753538628,219,0 +170753538678,220,0 +170753538726,220,0 +170753538775,222,0 +170753538823,221,0 +170753538873,222,0 +170753538921,222,0 +170753538969,224,0 +170753539017,224,0 +170753539065,224,0 +170753539113,225,0 +170753539161,224,0 +170753539208,223,0 +170753539256,228,0 +170753539304,221,0 +170753539352,216,0 +170753539400,218,0 +170753539448,219,0 +170753539498,218,0 +170753539546,219,0 +170753539595,220,0 +170753539645,221,0 +170753539693,222,0 +170753539741,223,0 +170753539789,222,0 +170753539836,222,0 +170753539884,221,0 +170753539934,223,0 +170753539983,223,0 +170753540031,224,0 +170753540079,223,0 +170753540129,223,0 +170753540178,222,0 +170753540226,215,0 +170753540276,215,0 +170753540324,216,0 +170753540373,216,0 +170753540421,218,0 +170753540469,218,0 +170753540517,220,0 +170753540567,220,0 +170753540615,220,0 +170753540663,224,0 +170753540710,222,0 +170753540758,222,0 +170753540806,222,0 +170753540854,223,0 +170753540902,223,0 +170753540952,223,0 +170753541000,223,0 +170753541048,222,0 +170753541096,215,0 +170753541144,214,0 +170753541193,214,0 +170753541241,215,0 +170753541289,215,0 +170753541337,217,0 +170753541386,218,0 +170753541434,218,0 +170753541482,219,0 +170753541530,220,0 +170753541580,220,0 +170753541628,220,0 +170753541676,222,0 +170753541724,221,0 +170753541772,223,0 +170753541821,223,0 +170753541869,223,0 +170753541917,223,0 +170753541967,216,0 +170753542015,215,0 +170753542063,215,0 +170753542112,215,0 +170753542162,216,0 +170753542209,217,0 +170753542257,218,0 +170753542305,219,0 +170753542353,219,0 +170753542401,221,0 +170753542449,220,0 +170753542497,222,0 +170753542545,223,0 +170753542592,225,0 +170753542640,222,0 +170753542688,221,0 +170753542736,223,0 +170753542784,222,0 +170753542832,216,0 +170753542880,215,0 +170753542927,215,0 +170753542975,215,0 +170753543025,215,0 +170753543074,216,0 +170753543122,217,0 +170753543170,218,0 +170753543218,218,0 +170753543266,219,0 +170753543315,220,0 +170753543363,221,0 +170753543411,222,0 +170753543459,222,0 +170753543508,222,0 +170753543558,222,0 +170753543606,223,0 +170753543654,223,0 +170753543701,216,0 +170753543751,215,0 +170753543800,215,0 +170753543850,215,0 +170753543899,215,0 +170753543949,216,0 +170753543998,217,0 +170753544046,217,0 +170753544096,219,0 +170753544145,220,0 +170753544193,220,0 +170753544242,222,0 +170753544292,222,0 +170753544341,222,0 +170753544389,224,0 +170753544437,224,0 +170753544485,224,0 +170753544533,223,0 +170753544581,215,0 +170753544630,215,0 +170753544678,215,0 +170753544726,215,0 +170753544775,215,0 +170753544823,216,0 +170753544871,217,0 +170753544919,217,0 +170753544969,219,0 +170753545016,221,0 +170753545064,221,0 +170753545112,220,0 +170753545160,218,0 +170753545208,222,0 +170753545257,224,0 +170753545305,223,0 +170753545353,224,0 +170753545401,224,0 +170753545449,216,0 +170753545497,215,0 +170753545546,215,0 +170753545595,215,0 +170753545645,216,0 +170753545693,216,0 +170753545742,217,0 +170753545790,218,0 +170753545838,218,0 +170753545886,219,0 +170753545934,219,0 +170753545982,222,0 +170753546029,222,0 +170753546079,219,0 +170753546128,222,0 +170753546178,223,0 +170753546226,222,0 +170753546274,223,0 +170753546321,216,0 +170753546371,215,0 +170753546419,216,0 +170753546468,217,0 +170753546518,218,0 +170753546567,219,0 +170753546615,219,0 +170753546663,220,0 +170753546711,220,0 +170753546758,221,0 +170753546806,223,0 +170753546856,222,0 +170753546905,224,0 +170753546953,223,0 +170753547001,223,0 +170753547049,224,0 +170753547098,223,0 +170753547146,220,0 +170753547196,223,0 +170753547245,218,0 +170753547293,219,0 +170753547341,220,0 +170753547389,220,0 +170753547437,221,0 +170753547485,221,0 +170753547532,221,0 +170753547580,222,0 +170753547628,222,0 +170753547676,223,0 +170753547725,223,0 +170753547773,224,0 +170753547821,223,0 +170753547871,224,0 +170753547920,223,0 +170753547968,223,0 +170753548016,223,0 +170753548064,222,0 +170753548113,220,0 +170753548162,220,0 +170753548210,220,0 +170753548258,221,0 +170753548306,221,0 +170753548355,222,0 +170753548403,220,0 +170753548451,223,0 +170753548501,223,0 +170753548549,223,0 +170753548598,223,0 +170753548646,223,0 +170753548694,223,0 +170753548743,224,0 +170753548791,224,0 +170753548839,224,0 +170753548887,222,0 +170753548935,223,0 +170753548982,219,0 +170753549030,218,0 +170753549078,219,0 +170753549126,220,0 +170753549176,220,0 +170753549225,220,0 +170753549273,222,0 +170753549321,222,0 +170753549370,222,0 +170753549420,222,0 +170753549468,223,0 +170753549517,223,0 +170753549565,223,0 +170753549613,224,0 +170753549661,223,0 +170753549710,222,0 +170753549760,222,0 +170753549809,222,0 +170753549858,218,0 +170753549906,218,0 +170753549954,219,0 +170753550002,219,0 +170753550050,220,0 +170753550098,221,0 +170753550147,222,0 +170753550197,222,0 +170753550246,222,0 +170753550296,223,0 +170753550343,224,0 +170753550391,224,0 +170753550441,224,0 +170753550489,224,0 +170753550536,223,0 +170753550586,224,0 +170753550635,223,0 +170753550685,223,0 +170753550733,217,0 +170753550781,217,0 +170753550829,218,0 +170753550878,218,0 +170753550926,219,0 +170753550976,220,0 +170753551025,220,0 +170753551073,220,0 +170753551121,221,0 +170753551169,222,0 +170753551217,222,0 +170753551265,222,0 +170753551314,223,0 +170753551364,223,0 +170753551411,222,0 +170753551459,223,0 +170753551507,222,0 +170753551555,222,0 +170753551603,216,0 +170753551652,216,0 +170753551700,217,0 +170753551750,218,0 +170753551799,219,0 +170753551847,219,0 +170753551895,221,0 +170753551944,221,0 +170753551994,221,0 +170753552042,223,0 +170753552090,224,0 +170753552137,222,0 +170753552187,223,0 +170753552235,222,0 +170753552283,223,0 +170753552331,223,0 +170753552378,223,0 +170753552428,222,0 +170753552477,215,0 +170753552525,215,0 +170753552573,216,0 +170753552621,218,0 +170753552669,218,0 +170753552717,219,0 +170753552765,219,0 +170753552814,219,0 +170753552862,221,0 +170753552910,222,0 +170753552958,222,0 +170753553006,221,0 +170753553054,223,0 +170753553101,223,0 +170753553149,223,0 +170753553197,223,0 +170753553245,223,0 +170753553293,222,0 +170753553342,215,0 +170753553390,216,0 +170753553438,217,0 +170753553488,218,0 +170753553537,219,0 +170753553587,219,0 +170753553635,220,0 +170753553683,222,0 +170753553730,220,0 +170753553778,219,0 +170753553828,222,0 +170753553876,222,0 +170753553924,223,0 +170753553972,224,0 +170753554020,224,0 +170753554069,225,0 +170753554117,223,0 +170753554166,216,0 +170753554214,216,0 +170753554262,217,0 +170753554312,217,0 +170753554360,218,0 +170753554408,219,0 +170753554456,219,0 +170753554505,221,0 +170753554555,222,0 +170753554604,224,0 +170753554652,223,0 +170753554700,226,0 +170753554748,224,0 +170753554796,224,0 +170753554844,224,0 +170753554893,224,0 +170753554941,222,0 +170753554991,222,0 +170753555040,216,0 +170753555090,217,0 +170753555139,217,0 +170753555189,218,0 +170753555237,219,0 +170753555285,219,0 +170753555333,221,0 +170753555382,220,0 +170753555432,221,0 +170753555482,222,0 +170753555531,222,0 +170753555581,223,0 +170753555628,223,0 +170753555678,223,0 +170753555728,223,0 +170753555777,223,0 +170753555827,223,0 +170753555876,216,0 +170753555924,215,0 +170753555972,216,0 +170753556020,217,0 +170753556068,218,0 +170753556118,219,0 +170753556166,219,0 +170753556213,219,0 +170753556263,221,0 +170753556311,222,0 +170753556360,222,0 +170753556408,222,0 +170753556456,222,0 +170753556504,222,0 +170753556552,222,0 +170753556600,224,0 +170753556648,222,0 +170753556696,223,0 +170753556744,216,0 +170753556792,215,0 +170753556839,216,0 +170753556889,217,0 +170753556937,218,0 +170753556984,219,0 +170753557032,219,0 +170753557080,220,0 +170753557128,222,0 +170753557178,222,0 +170753557226,223,0 +170753557274,224,0 +170753557321,225,0 +170753557369,224,0 +170753557417,223,0 +170753557465,222,0 +170753557513,224,0 +170753557561,222,0 +170753557610,215,0 +170753557660,215,0 +170753557708,215,0 +170753557757,216,0 +170753557805,217,0 +170753557853,217,0 +170753557901,218,0 +170753557949,218,0 +170753557999,220,0 +170753558047,220,0 +170753558096,221,0 +170753558144,223,0 +170753558194,222,0 +170753558242,223,0 +170753558291,223,0 +170753558339,223,0 +170753558389,223,0 +170753558437,216,0 +170753558485,215,0 +170753558534,215,0 +170753558582,216,0 +170753558632,217,0 +170753558680,217,0 +170753558729,219,0 +170753558777,219,0 +170753558825,220,0 +170753558873,220,0 +170753558922,222,0 +170753558970,222,0 +170753559020,223,0 +170753559068,222,0 +170753559116,223,0 +170753559165,224,0 +170753559213,223,0 +170753559261,223,0 +170753559309,215,0 +170753559359,215,0 +170753559408,216,0 +170753559458,216,0 +170753559506,217,0 +170753559554,218,0 +170753559602,218,0 +170753559651,219,0 +170753559701,222,0 +170753559749,221,0 +170753559797,221,0 +170753559845,222,0 +170753559894,223,0 +170753559944,224,0 +170753559992,225,0 +170753560040,223,0 +170753560088,223,0 +170753560135,219,0 +170753560183,215,0 +170753560231,217,0 +170753560279,217,0 +170753560327,218,0 +170753560375,219,0 +170753560423,219,0 +170753560471,221,0 +170753560519,220,0 +170753560569,223,0 +170753560617,223,0 +170753560664,224,0 +170753560712,223,0 +170753560762,223,0 +170753560810,224,0 +170753560858,223,0 +170753560906,224,0 +170753560953,222,0 +170753561001,216,0 +170753561049,217,0 +170753561099,217,0 +170753561147,218,0 +170753561194,219,0 +170753561242,219,0 +170753561290,220,0 +170753561338,221,0 +170753561386,221,0 +170753561435,222,0 +170753561485,221,0 +170753561534,220,0 +170753561584,224,0 +170753561631,223,0 +170753561679,223,0 +170753561727,223,0 +170753561775,223,0 +170753561823,223,0 +170753561871,217,0 +170753561919,217,0 +170753561968,218,0 +170753562016,218,0 +170753562064,219,0 +170753562114,219,0 +170753562162,220,0 +170753562210,221,0 +170753562259,222,0 +170753562307,223,0 +170753562355,223,0 +170753562403,222,0 +170753562452,223,0 +170753562502,229,0 +170753562550,225,0 +170753562599,224,0 +170753562647,224,0 +170753562695,222,0 +170753562743,217,0 +170753562791,219,0 +170753562839,219,0 +170753562888,220,0 +170753562936,220,0 +170753562984,220,0 +170753563032,221,0 +170753563080,222,0 +170753563129,222,0 +170753563177,223,0 +170753563225,223,0 +170753563273,223,0 +170753563321,224,0 +170753563368,223,0 +170753563416,223,0 +170753563466,224,0 +170753563514,222,0 +170753563561,217,0 +170753563609,218,0 +170753563657,218,0 +170753563705,219,0 +170753563753,219,0 +170753563801,220,0 +170753563849,221,0 +170753563897,221,0 +170753563945,221,0 +170753563994,222,0 +170753564042,223,0 +170753564092,223,0 +170753564140,223,0 +170753564189,223,0 +170753564239,223,0 +170753564288,225,0 +170753564338,223,0 +170753564386,223,0 +170753564435,216,0 +170753564483,216,0 +170753564531,216,0 +170753564579,217,0 +170753564629,218,0 +170753564677,220,0 +170753564726,220,0 +170753564776,221,0 +170753564825,221,0 +170753564873,221,0 +170753564923,222,0 +170753564971,222,0 +170753565020,223,0 +170753565070,221,0 +170753565118,222,0 +170753565168,222,0 +170753565216,222,0 +170753565265,216,0 +170753565315,216,0 +170753565363,217,0 +170753565411,218,0 +170753565460,218,0 +170753565510,219,0 +170753565559,220,0 +170753565607,220,0 +170753565657,223,0 +170753565705,222,0 +170753565754,223,0 +170753565804,223,0 +170753565852,223,0 +170753565901,223,0 +170753565951,223,0 +170753566001,224,0 +170753566050,223,0 +170753566100,223,0 +170753566148,215,0 +170753566196,215,0 +170753566244,216,0 +170753566293,217,0 +170753566343,217,0 +170753566392,218,0 +170753566440,219,0 +170753566490,220,0 +170753566539,220,0 +170753566589,221,0 +170753566638,220,0 +170753566688,222,0 +170753566737,223,0 +170753566787,223,0 +170753566836,223,0 +170753566884,223,0 +170753566932,223,0 +170753566980,216,0 +170753567030,215,0 +170753567080,215,0 +170753567129,216,0 +170753567177,217,0 +170753567225,219,0 +170753567273,218,0 +170753567322,219,0 +170753567370,219,0 +170753567420,221,0 +170753567469,221,0 +170753567517,223,0 +170753567567,223,0 +170753567617,224,0 +170753567666,223,0 +170753567716,223,0 +170753567765,223,0 +170753567813,223,0 +170753567861,215,0 +170753567911,216,0 +170753567958,217,0 +170753568006,217,0 +170753568054,218,0 +170753568102,219,0 +170753568151,219,0 +170753568199,220,0 +170753568249,221,0 +170753568297,221,0 +170753568345,222,0 +170753568393,222,0 +170753568440,223,0 +170753568488,222,0 +170753568538,224,0 +170753568586,223,0 +170753568635,223,0 +170753568683,217,0 +170753568731,216,0 +170753568780,217,0 +170753568828,218,0 +170753568876,219,0 +170753568924,219,0 +170753568972,219,0 +170753569020,220,0 +170753569068,221,0 +170753569115,222,0 +170753569163,223,0 +170753569211,222,0 +170753569261,222,0 +170753569309,223,0 +170753569358,222,0 +170753569406,223,0 +170753569454,223,0 +170753569503,222,0 +170753569551,218,0 +170753569599,217,0 +170753569647,218,0 +170753569696,219,0 +170753569744,219,0 +170753569792,221,0 +170753569840,222,0 +170753569888,222,0 +170753569936,222,0 +170753569985,223,0 +170753570033,223,0 +170753570081,224,0 +170753570129,223,0 +170753570178,224,0 +170753570228,224,0 +170753570276,223,0 +170753570324,224,0 +170753570371,222,0 +170753570421,220,0 +170753570469,220,0 +170753570517,220,0 +170753570565,220,0 +170753570612,221,0 +170753570662,221,0 +170753570711,222,0 +170753570761,223,0 +170753570809,224,0 +170753570857,223,0 +170753570906,223,0 +170753570955,223,0 +170753571003,223,0 +170753571051,224,0 +170753571099,223,0 +170753571149,223,0 +170753571196,223,0 +170753571246,218,0 +170753571295,221,0 +170753571343,220,0 +170753571391,220,0 +170753571439,220,0 +170753571488,222,0 +170753571536,222,0 +170753571584,223,0 +170753571634,224,0 +170753571681,224,0 +170753571731,223,0 +170753571780,225,0 +170753571830,225,0 +170753571879,224,0 +170753571927,223,0 +170753571975,223,0 +170753572023,223,0 +170753572071,222,0 +170753572119,216,0 +170753572167,216,0 +170753572214,217,0 +170753572262,218,0 +170753572310,218,0 +170753572360,219,0 +170753572407,220,0 +170753572455,223,0 +170753572505,221,0 +170753572553,222,0 +170753572602,223,0 +170753572652,224,0 +170753572700,224,0 +170753572749,223,0 +170753572797,223,0 +170753572845,223,0 +170753572895,223,0 +170753572943,222,0 +170753572992,217,0 +170753573042,217,0 +170753573090,218,0 +170753573138,219,0 +170753573186,220,0 +170753573235,220,0 +170753573283,221,0 +170753573332,223,0 +170753573380,223,0 +170753573430,223,0 +170753573478,222,0 +170753573526,224,0 +170753573574,223,0 +170753573624,223,0 +170753573671,224,0 +170753573721,223,0 +170753573771,224,0 +170753573819,217,0 +170753573866,216,0 +170753573916,218,0 +170753573964,218,0 +170753574013,219,0 +170753574061,219,0 +170753574109,219,0 +170753574157,221,0 +170753574205,222,0 +170753574253,221,0 +170753574302,223,0 +170753574352,225,0 +170753574401,224,0 +170753574451,224,0 +170753574499,224,0 +170753574548,223,0 +170753574596,224,0 +170753574646,221,0 +170753574695,215,0 +170753574745,216,0 +170753574793,217,0 +170753574841,217,0 +170753574890,218,0 +170753574938,220,0 +170753574986,220,0 +170753575035,221,0 +170753575083,221,0 +170753575131,222,0 +170753575179,223,0 +170753575227,223,0 +170753575276,223,0 +170753575324,223,0 +170753575374,224,0 +170753575421,223,0 +170753575469,225,0 +170753575517,216,0 +170753575565,215,0 +170753575613,216,0 +170753575662,216,0 +170753575710,217,0 +170753575758,214,0 +170753575806,219,0 +170753575854,219,0 +170753575903,220,0 +170753575951,221,0 +170753575999,223,0 +170753576049,222,0 +170753576097,223,0 +170753576144,223,0 +170753576192,224,0 +170753576242,224,0 +170753576291,224,0 +170753576339,222,0 +170753576387,214,0 +170753576435,215,0 +170753576483,215,0 +170753576531,215,0 +170753576579,218,0 +170753576626,218,0 +170753576674,219,0 +170753576722,220,0 +170753576772,220,0 +170753576820,221,0 +170753576867,222,0 +170753576915,222,0 +170753576963,223,0 +170753577013,224,0 +170753577061,225,0 +170753577109,224,0 +170753577158,223,0 +170753577207,216,0 +170753577257,216,0 +170753577305,217,0 +170753577353,218,0 +170753577400,218,0 +170753577448,219,0 +170753577496,222,0 +170753577544,220,0 +170753577594,220,0 +170753577642,222,0 +170753577691,223,0 +170753577739,222,0 +170753577789,224,0 +170753577837,223,0 +170753577885,223,0 +170753577933,224,0 +170753577982,224,0 +170753578030,224,0 +170753578078,217,0 +170753578126,216,0 +170753578174,217,0 +170753578222,218,0 +170753578272,219,0 +170753578320,220,0 +170753578369,222,0 +170753578417,220,0 +170753578465,222,0 +170753578514,222,0 +170753578564,223,0 +170753578613,222,0 +170753578663,223,0 +170753578713,222,0 +170753578761,224,0 +170753578810,223,0 +170753578860,223,0 +170753578908,222,0 +170753578957,215,0 +170753579007,216,0 +170753579055,217,0 +170753579103,218,0 +170753579151,219,0 +170753579199,219,0 +170753579248,221,0 +170753579296,221,0 +170753579344,222,0 +170753579392,221,0 +170753579440,223,0 +170753579488,223,0 +170753579536,223,0 +170753579586,223,0 +170753579635,224,0 +170753579685,223,0 +170753579734,222,0 +170753579782,216,0 +170753579830,216,0 +170753579878,216,0 +170753579926,218,0 +170753579976,218,0 +170753580024,219,0 +170753580073,219,0 +170753580123,219,0 +170753580171,221,0 +170753580220,222,0 +170753580270,221,0 +170753580318,223,0 +170753580367,223,0 +170753580415,223,0 +170753580465,222,0 +170753580514,224,0 +170753580564,224,0 +170753580613,217,0 +170753580663,216,0 +170753580711,217,0 +170753580759,218,0 +170753580808,218,0 +170753580858,219,0 +170753580907,219,0 +170753580957,221,0 +170753581005,221,0 +170753581053,221,0 +170753581101,222,0 +170753581149,223,0 +170753581197,223,0 +170753581246,223,0 +170753581294,222,0 +170753581342,223,0 +170753581392,223,0 +170753581439,222,0 +170753581489,215,0 +170753581537,215,0 +170753581586,215,0 +170753581634,216,0 +170753581682,217,0 +170753581730,219,0 +170753581778,220,0 +170753581826,219,0 +170753581874,221,0 +170753581924,221,0 +170753581972,223,0 +170753582021,222,0 +170753582069,223,0 +170753582119,223,0 +170753582167,222,0 +170753582214,222,0 +170753582262,222,0 +170753582310,219,0 +170753582360,215,0 +170753582408,215,0 +170753582456,216,0 +170753582505,217,0 +170753582553,217,0 +170753582601,218,0 +170753582651,220,0 +170753582700,220,0 +170753582750,220,0 +170753582799,221,0 +170753582847,222,0 +170753582895,225,0 +170753582943,223,0 +170753582991,223,0 +170753583039,223,0 +170753583089,222,0 +170753583138,222,0 +170753583188,216,0 +170753583237,216,0 +170753583285,216,0 +170753583333,217,0 +170753583381,218,0 +170753583429,218,0 +170753583477,218,0 +170753583525,219,0 +170753583573,220,0 +170753583623,220,0 +170753583671,224,0 +170753583718,222,0 +170753583766,222,0 +170753583814,223,0 +170753583862,223,0 +170753583910,223,0 +170753583958,222,0 +170753584006,222,0 +170753584054,216,0 +170753584104,217,0 +170753584153,218,0 +170753584201,219,0 +170753584249,219,0 +170753584297,219,0 +170753584346,220,0 +170753584394,220,0 +170753584442,221,0 +170753584490,221,0 +170753584538,222,0 +170753584586,222,0 +170753584634,223,0 +170753584683,224,0 +170753584731,223,0 +170753584779,222,0 +170753584827,224,0 +170753584875,216,0 +170753584924,219,0 +170753584972,220,0 +170753585022,221,0 +170753585070,220,0 +170753585118,221,0 +170753585166,223,0 +170753585214,223,0 +170753585262,223,0 +170753585310,223,0 +170753585358,224,0 +170753585406,224,0 +170753585455,225,0 +170753585503,224,0 +170753585553,224,0 +170753585601,218,0 +170753585650,222,0 +170753585698,222,0 +170753585747,220,0 +170753585795,221,0 +170753585843,220,0 +170753585891,221,0 +170753585940,222,0 +170753585990,222,0 +170753586039,223,0 +170753586087,223,0 +170753586135,223,0 +170753586185,224,0 +170753586233,224,0 +170753586281,224,0 +170753586328,223,0 +170753586376,223,0 +170753586424,224,0 +170753586472,223,0 +170753586520,223,0 +170753586568,217,0 +170753586616,217,0 +170753586664,218,0 +170753586712,218,0 +170753586762,219,0 +170753586810,220,0 +170753586858,220,0 +170753586907,221,0 +170753586955,221,0 +170753587005,224,0 +170753587053,223,0 +170753587100,223,0 +170753587148,223,0 +170753587198,222,0 +170753587247,223,0 +170753587297,223,0 +170753587345,224,0 +170753587393,222,0 +170753587442,216,0 +170753587490,216,0 +170753587540,217,0 +170753587588,218,0 +170753587636,219,0 +170753587684,220,0 +170753587733,220,0 +170753587781,222,0 +170753587829,221,0 +170753587877,223,0 +170753587925,223,0 +170753587973,223,0 +170753588021,224,0 +170753588070,223,0 +170753588118,224,0 +170753588166,224,0 +170753588214,223,0 +170753588264,218,0 +170753588313,218,0 +170753588363,218,0 +170753588411,219,0 +170753588459,220,0 +170753588507,220,0 +170753588555,222,0 +170753588604,220,0 +170753588652,221,0 +170753588700,223,0 +170753588748,224,0 +170753588796,223,0 +170753588844,227,0 +170753588892,223,0 +170753588940,225,0 +170753588988,223,0 +170753589036,224,0 +170753589084,222,0 +170753589133,215,0 +170753589181,217,0 +170753589229,219,0 +170753589277,219,0 +170753589325,221,0 +170753589373,221,0 +170753589423,224,0 +170753589471,223,0 +170753589519,223,0 +170753589566,223,0 +170753589616,223,0 +170753589664,223,0 +170753589714,224,0 +170753589761,223,0 +170753589809,224,0 +170753589859,223,0 +170753589908,224,0 +170753589958,220,0 +170753590006,217,0 +170753590054,217,0 +170753590103,218,0 +170753590151,218,0 +170753590201,219,0 +170753590250,220,0 +170753590298,221,0 +170753590348,222,0 +170753590396,221,0 +170753590444,222,0 +170753590492,223,0 +170753590541,225,0 +170753590589,223,0 +170753590639,223,0 +170753590687,224,0 +170753590735,224,0 +170753590783,222,0 +170753590832,215,0 +170753590882,216,0 +170753590930,217,0 +170753590979,218,0 +170753591029,219,0 +170753591078,219,0 +170753591128,221,0 +170753591176,221,0 +170753591224,222,0 +170753591273,222,0 +170753591321,223,0 +170753591369,223,0 +170753591419,224,0 +170753591466,223,0 +170753591516,224,0 +170753591566,223,0 +170753591614,223,0 +170753591661,216,0 +170753591711,216,0 +170753591760,218,0 +170753591810,218,0 +170753591860,219,0 +170753591908,219,0 +170753591956,222,0 +170753592005,222,0 +170753592055,222,0 +170753592103,223,0 +170753592151,223,0 +170753592200,223,0 +170753592250,223,0 +170753592299,224,0 +170753592347,224,0 +170753592395,224,0 +170753592445,224,0 +170753592492,222,0 +170753592540,218,0 +170753592588,219,0 +170753592638,220,0 +170753592686,220,0 +170753592733,221,0 +170753592781,221,0 +170753592829,223,0 +170753592877,222,0 +170753592927,222,0 +170753592975,222,0 +170753593024,223,0 +170753593072,223,0 +170753593122,224,0 +170753593171,224,0 +170753593221,224,0 +170753593269,223,0 +170753593317,222,0 +170753593365,219,0 +170753593414,216,0 +170753593464,218,0 +170753593512,219,0 +170753593560,219,0 +170753593609,219,0 +170753593659,221,0 +170753593709,220,0 +170753593756,220,0 +170753593806,222,0 +170753593856,223,0 +170753593905,223,0 +170753593955,223,0 +170753594003,223,0 +170753594052,223,0 +170753594100,224,0 +170753594148,222,0 +170753594196,224,0 +170753594246,215,0 +170753594295,216,0 +170753594345,217,0 +170753594393,217,0 +170753594442,218,0 +170753594490,218,0 +170753594538,222,0 +170753594586,220,0 +170753594635,222,0 +170753594683,221,0 +170753594733,222,0 +170753594782,224,0 +170753594830,225,0 +170753594878,224,0 +170753594926,223,0 +170753594974,223,0 +170753595021,224,0 +170753595071,216,0 +170753595119,215,0 +170753595167,216,0 +170753595215,217,0 +170753595263,218,0 +170753595311,218,0 +170753595359,219,0 +170753595406,220,0 +170753595454,220,0 +170753595502,221,0 +170753595550,223,0 +170753595598,222,0 +170753595646,222,0 +170753595694,223,0 +170753595743,224,0 +170753595791,223,0 +170753595839,223,0 +170753595887,222,0 +170753595936,217,0 +170753595984,216,0 +170753596032,217,0 +170753596082,218,0 +170753596130,219,0 +170753596179,219,0 +170753596227,220,0 +170753596276,220,0 +170753596324,222,0 +170753596372,221,0 +170753596422,222,0 +170753596470,223,0 +170753596517,223,0 +170753596565,224,0 +170753596613,223,0 +170753596661,224,0 +170753596709,223,0 +170753596757,222,0 +170753596806,217,0 +170753596856,217,0 +170753596905,218,0 +170753596955,219,0 +170753597004,219,0 +170753597054,219,0 +170753597102,221,0 +170753597150,220,0 +170753597198,221,0 +170753597247,222,0 +170753597295,224,0 +170753597343,223,0 +170753597391,223,0 +170753597439,223,0 +170753597487,222,0 +170753597534,223,0 +170753597584,223,0 +170753597632,218,0 +170753597680,217,0 +170753597728,218,0 +170753597776,219,0 +170753597825,219,0 +170753597873,220,0 +170753597923,220,0 +170753597972,221,0 +170753598022,224,0 +170753598070,222,0 +170753598118,225,0 +170753598166,223,0 +170753598215,224,0 +170753598263,224,0 +170753598311,223,0 +170753598360,222,0 +170753598408,222,0 +170753598456,222,0 +170753598504,218,0 +170753598552,219,0 +170753598601,219,0 +170753598649,220,0 +170753598697,220,0 +170753598745,221,0 +170753598793,221,0 +170753598841,222,0 +170753598890,222,0 +170753598940,224,0 +170753598989,222,0 +170753599037,224,0 +170753599085,223,0 +170753599135,223,0 +170753599184,222,0 +170753599234,223,0 +170753599282,222,0 +170753599331,219,0 +170753599379,219,0 +170753599427,219,0 +170753599477,221,0 +170753599526,220,0 +170753599574,221,0 +170753599622,221,0 +170753599670,222,0 +170753599718,224,0 +170753599766,224,0 +170753599814,224,0 +170753599862,223,0 +170753599910,223,0 +170753599958,223,0 +170753600006,222,0 +170753600055,223,0 +170753600103,223,0 +170753600153,222,0 +170753600201,218,0 +170753600250,218,0 +170753600298,219,0 +170753600346,220,0 +170753600396,220,0 +170753600445,222,0 +170753600493,221,0 +170753600541,222,0 +170753600589,223,0 +170753600637,223,0 +170753600687,223,0 +170753600736,225,0 +170753600784,224,0 +170753600832,225,0 +170753600880,223,0 +170753600928,224,0 +170753600977,224,0 +170753601027,216,0 +170753601075,216,0 +170753601123,217,0 +170753601171,218,0 +170753601219,220,0 +170753601268,220,0 +170753601318,220,0 +170753601367,221,0 +170753601417,221,0 +170753601465,222,0 +170753601514,224,0 +170753601564,224,0 +170753601612,224,0 +170753601660,224,0 +170753601708,224,0 +170753601756,224,0 +170753601804,223,0 +170753601852,222,0 +170753601899,214,0 +170753601947,215,0 +170753601997,216,0 +170753602045,216,0 +170753602093,217,0 +170753602142,219,0 +170753602192,220,0 +170753602240,220,0 +170753602288,220,0 +170753602336,222,0 +170753602386,222,0 +170753602435,223,0 +170753602485,223,0 +170753602534,225,0 +170753602584,223,0 +170753602632,223,0 +170753602681,222,0 +170753602729,216,0 +170753602779,215,0 +170753602827,215,0 +170753602874,216,0 +170753602922,218,0 +170753602970,217,0 +170753603018,218,0 +170753603066,220,0 +170753603114,217,0 +170753603162,220,0 +170753603210,221,0 +170753603260,221,0 +170753603308,223,0 +170753603356,223,0 +170753603405,223,0 +170753603455,222,0 +170753603504,223,0 +170753603552,222,0 +170753603600,214,0 +170753603650,214,0 +170753603698,215,0 +170753603746,216,0 +170753603794,216,0 +170753603843,217,0 +170753603893,222,0 +170753603942,219,0 +170753603990,219,0 +170753604040,220,0 +170753604088,224,0 +170753604136,223,0 +170753604185,222,0 +170753604233,223,0 +170753604283,223,0 +170753604332,223,0 +170753604380,223,0 +170753604430,215,0 +170753604478,214,0 +170753604526,216,0 +170753604574,216,0 +170753604622,217,0 +170753604670,217,0 +170753604718,218,0 +170753604765,219,0 +170753604814,216,0 +170753604863,220,0 +170753604913,222,0 +170753604961,222,0 +170753605009,228,0 +170753605056,222,0 +170753605104,227,0 +170753605152,223,0 +170753605202,224,0 +170753605251,217,0 +170753605299,214,0 +170753605347,215,0 +170753605395,216,0 +170753605443,216,0 +170753605493,217,0 +170753605542,218,0 +170753605590,219,0 +170753605638,219,0 +170753605686,221,0 +170753605736,220,0 +170753605785,222,0 +170753605835,222,0 +170753605883,223,0 +170753605932,224,0 +170753605980,223,0 +170753606028,223,0 +170753606076,223,0 +170753606126,216,0 +170753606173,216,0 +170753606221,217,0 +170753606269,218,0 +170753606317,218,0 +170753606367,219,0 +170753606415,220,0 +170753606463,221,0 +170753606511,221,0 +170753606559,222,0 +170753606607,222,0 +170753606656,223,0 +170753606704,223,0 +170753606754,224,0 +170753606803,223,0 +170753606851,224,0 +170753606901,223,0 +170753606950,218,0 +170753607000,218,0 +170753607048,219,0 +170753607096,220,0 +170753607146,221,0 +170753607195,221,0 +170753607245,222,0 +170753607293,223,0 +170753607342,223,0 +170753607390,223,0 +170753607438,223,0 +170753607488,224,0 +170753607537,223,0 +170753607587,224,0 +170753607635,222,0 +170753607684,223,0 +170753607734,224,0 +170753607782,222,0 +170753607830,218,0 +170753607878,220,0 +170753607926,220,0 +170753607975,220,0 +170753608025,222,0 +170753608074,221,0 +170753608124,221,0 +170753608172,222,0 +170753608221,222,0 +170753608269,224,0 +170753608317,225,0 +170753608367,225,0 +170753608416,224,0 +170753608466,223,0 +170753608514,223,0 +170753608562,223,0 +170753608609,222,0 +170753608657,218,0 +170753608705,218,0 +170753608755,220,0 +170753608804,219,0 +170753608852,221,0 +170753608902,221,0 +170753608951,222,0 +170753608999,223,0 +170753609047,223,0 +170753609095,223,0 +170753609145,223,0 +170753609193,224,0 +170753609242,223,0 +170753609290,223,0 +170753609338,223,0 +170753609386,223,0 +170753609436,223,0 +170753609484,222,0 +170753609533,218,0 +170753609583,220,0 +170753609631,219,0 +170753609679,219,0 +170753609728,220,0 +170753609778,220,0 +170753609826,222,0 +170753609874,221,0 +170753609923,223,0 +170753609973,222,0 +170753610022,223,0 +170753610070,224,0 +170753610120,223,0 +170753610168,223,0 +170753610216,223,0 +170753610264,222,0 +170753610313,223,0 +170753610363,216,0 +170753610412,216,0 +170753610460,216,0 +170753610510,218,0 +170753610558,218,0 +170753610607,219,0 +170753610657,219,0 +170753610705,220,0 +170753610753,221,0 +170753610802,223,0 +170753610850,223,0 +170753610900,225,0 +170753610949,226,0 +170753610997,224,0 +170753611045,224,0 +170753611093,224,0 +170753611143,223,0 +170753611192,220,0 +170753611240,217,0 +170753611290,216,0 +170753611339,216,0 +170753611389,218,0 +170753611438,218,0 +170753611486,219,0 +170753611534,220,0 +170753611582,220,0 +170753611630,220,0 +170753611680,221,0 +170753611729,222,0 +170753611777,222,0 +170753611827,222,0 +170753611875,223,0 +170753611923,223,0 +170753611971,223,0 +170753612019,223,0 +170753612067,216,0 +170753612114,215,0 +170753612164,217,0 +170753612214,217,0 +170753612263,217,0 +170753612311,219,0 +170753612361,219,0 +170753612409,221,0 +170753612457,220,0 +170753612504,222,0 +170753612554,222,0 +170753612602,222,0 +170753612651,224,0 +170753612699,224,0 +170753612749,224,0 +170753612798,224,0 +170753612848,223,0 +170753612898,220,0 +170753612945,216,0 +170753612995,216,0 +170753613043,218,0 +170753613093,218,0 +170753613141,219,0 +170753613189,220,0 +170753613236,221,0 +170753613284,221,0 +170753613334,221,0 +170753613384,222,0 +170753613433,223,0 +170753613481,223,0 +170753613529,224,0 +170753613579,223,0 +170753613628,223,0 +170753613676,223,0 +170753613726,223,0 +170753613774,217,0 +170753613822,217,0 +170753613870,217,0 +170753613918,218,0 +170753613967,219,0 +170753614015,219,0 +170753614063,222,0 +170753614111,221,0 +170753614159,221,0 +170753614208,222,0 +170753614258,222,0 +170753614306,224,0 +170753614355,223,0 +170753614403,224,0 +170753614453,223,0 +170753614502,223,0 +170753614552,223,0 +170753614601,220,0 +170753614649,217,0 +170753614699,218,0 +170753614748,218,0 +170753614798,220,0 +170753614848,220,0 +170753614895,221,0 +170753614943,221,0 +170753614993,222,0 +170753615041,223,0 +170753615090,223,0 +170753615138,222,0 +170753615186,224,0 +170753615234,224,0 +170753615282,224,0 +170753615332,223,0 +170753615380,223,0 +170753615428,224,0 +170753615476,216,0 +170753615524,215,0 +170753615572,217,0 +170753615621,217,0 +170753615669,218,0 +170753615717,219,0 +170753615765,219,0 +170753615813,220,0 +170753615861,221,0 +170753615909,222,0 +170753615957,223,0 +170753616007,223,0 +170753616056,225,0 +170753616104,223,0 +170753616154,222,0 +170753616203,222,0 +170753616251,222,0 +170753616299,215,0 +170753616347,215,0 +170753616394,215,0 +170753616442,216,0 +170753616490,218,0 +170753616538,218,0 +170753616586,218,0 +170753616634,219,0 +170753616684,219,0 +170753616732,221,0 +170753616780,220,0 +170753616828,222,0 +170753616877,222,0 +170753616925,222,0 +170753616973,224,0 +170753617021,223,0 +170753617069,223,0 +170753617117,223,0 +170753617164,216,0 +170753617212,217,0 +170753617262,218,0 +170753617310,219,0 +170753617358,219,0 +170753617405,220,0 +170753617453,222,0 +170753617501,222,0 +170753617549,221,0 +170753617599,223,0 +170753617646,224,0 +170753617696,223,0 +170753617744,223,0 +170753617792,223,0 +170753617839,225,0 +170753617887,223,0 +170753617937,223,0 +170753617986,222,0 +170753618034,216,0 +170753618082,216,0 +170753618130,217,0 +170753618178,218,0 +170753618226,219,0 +170753618273,219,0 +170753618321,220,0 +170753618369,221,0 +170753618417,223,0 +170753618465,221,0 +170753618513,223,0 +170753618561,223,0 +170753618611,223,0 +170753618660,222,0 +170753618708,224,0 +170753618758,223,0 +170753618806,222,0 +170753618854,217,0 +170753618902,215,0 +170753618950,217,0 +170753618998,218,0 +170753619046,218,0 +170753619093,218,0 +170753619143,221,0 +170753619191,220,0 +170753619239,221,0 +170753619287,222,0 +170753619335,223,0 +170753619383,223,0 +170753619431,224,0 +170753619479,224,0 +170753619528,223,0 +170753619578,223,0 +170753619626,224,0 +170753619674,224,0 +170753619723,215,0 +170753619771,215,0 +170753619819,217,0 +170753619867,217,0 +170753619915,217,0 +170753619963,219,0 +170753620011,219,0 +170753620059,220,0 +170753620107,220,0 +170753620154,222,0 +170753620202,221,0 +170753620252,222,0 +170753620300,222,0 +170753620348,224,0 +170753620396,224,0 +170753620443,223,0 +170753620491,222,0 +170753620541,216,0 +170753620590,216,0 +170753620638,217,0 +170753620686,218,0 +170753620736,218,0 +170753620783,220,0 +170753620831,220,0 +170753620879,222,0 +170753620927,222,0 +170753620975,222,0 +170753621025,222,0 +170753621073,222,0 +170753621122,223,0 +170753621170,223,0 +170753621220,223,0 +170753621269,224,0 +170753621317,223,0 +170753621367,223,0 +170753621415,219,0 +170753621463,218,0 +170753621510,219,0 +170753621560,220,0 +170753621608,220,0 +170753621656,222,0 +170753621704,221,0 +170753621751,221,0 +170753621799,222,0 +170753621847,222,0 +170753621895,223,0 +170753621943,223,0 +170753621993,223,0 +170753622041,223,0 +170753622090,223,0 +170753622138,223,0 +170753622186,223,0 +170753622234,219,0 +170753622282,218,0 +170753622330,219,0 +170753622379,220,0 +170753622429,220,0 +170753622478,222,0 +170753622526,222,0 +170753622576,223,0 +170753622625,224,0 +170753622675,223,0 +170753622723,223,0 +170753622771,224,0 +170753622821,225,0 +170753622868,224,0 +170753622918,225,0 +170753622966,224,0 +170753623014,224,0 +170753623062,220,0 +170753623110,216,0 +170753623158,216,0 +170753623208,218,0 +170753623256,219,0 +170753623305,219,0 +170753623353,219,0 +170753623403,220,0 +170753623452,221,0 +170753623502,222,0 +170753623550,222,0 +170753623598,222,0 +170753623646,224,0 +170753623694,223,0 +170753623742,223,0 +170753623790,225,0 +170753623837,222,0 +170753623885,222,0 +170753623935,216,0 +170753623985,216,0 +170753624033,217,0 +170753624080,218,0 +170753624130,219,0 +170753624180,219,0 +170753624228,220,0 +170753624276,220,0 +170753624325,222,0 +170753624373,222,0 +170753624421,223,0 +170753624469,222,0 +170753624519,224,0 +170753624568,223,0 +170753624618,223,0 +170753624666,223,0 +170753624715,223,0 +170753624763,216,0 +170753624811,216,0 +170753624861,217,0 +170753624910,218,0 +170753624960,219,0 +170753625009,219,0 +170753625059,220,0 +170753625107,220,0 +170753625155,221,0 +170753625204,222,0 +170753625252,222,0 +170753625300,223,0 +170753625348,223,0 +170753625398,223,0 +170753625446,223,0 +170753625494,223,0 +170753625541,222,0 +170753625589,216,0 +170753625637,216,0 +170753625685,217,0 +170753625733,218,0 +170753625781,220,0 +170753625829,219,0 +170753625877,219,0 +170753625925,220,0 +170753625973,220,0 +170753626021,221,0 +170753626069,222,0 +170753626119,223,0 +170753626168,223,0 +170753626216,224,0 +170753626266,223,0 +170753626315,223,0 +170753626365,222,0 +170753626414,216,0 +170753626464,217,0 +170753626513,218,0 +170753626563,218,0 +170753626611,219,0 +170753626659,220,0 +170753626707,221,0 +170753626755,221,0 +170753626804,221,0 +170753626854,223,0 +170753626902,222,0 +170753626950,227,0 +170753626998,222,0 +170753627046,223,0 +170753627095,223,0 +170753627145,223,0 +170753627194,222,0 +170753627244,218,0 +170753627292,217,0 +170753627340,218,0 +170753627388,219,0 +170753627436,220,0 +170753627485,220,0 +170753627533,221,0 +170753627583,221,0 +170753627631,221,0 +170753627679,222,0 +170753627726,222,0 +170753627774,222,0 +170753627822,223,0 +170753627870,222,0 +170753627920,223,0 +170753627969,224,0 +170753628017,222,0 +170753628067,217,0 +170753628115,217,0 +170753628163,218,0 +170753628210,219,0 +170753628258,219,0 +170753628306,220,0 +170753628354,220,0 +170753628403,221,0 +170753628451,222,0 +170753628499,223,0 +170753628547,223,0 +170753628595,224,0 +170753628643,224,0 +170753628691,224,0 +170753628739,223,0 +170753628787,223,0 +170753628836,223,0 +170753628886,216,0 +170753628934,216,0 +170753628982,217,0 +170753629031,218,0 +170753629081,219,0 +170753629130,219,0 +170753629178,221,0 +170753629226,220,0 +170753629276,222,0 +170753629325,222,0 +170753629375,225,0 +170753629423,223,0 +170753629471,224,0 +170753629520,224,0 +170753629570,224,0 +170753629618,223,0 +170753629665,223,0 +170753629713,216,0 +170753629761,214,0 +170753629809,215,0 +170753629857,216,0 +170753629905,216,0 +170753629955,217,0 +170753630003,218,0 +170753630051,218,0 +170753630099,219,0 +170753630148,220,0 +170753630196,221,0 +170753630246,221,0 +170753630293,222,0 +170753630341,223,0 +170753630389,222,0 +170753630437,222,0 +170753630487,223,0 +170753630534,224,0 +170753630582,224,0 +170753630630,223,0 +170753630678,224,0 +170753630726,224,0 +170753630776,223,0 +170753630825,223,0 +170753630873,223,0 +170753630921,221,0 +170753630970,217,0 +170753631018,218,0 +170753631068,219,0 +170753631116,219,0 +170753631165,219,0 +170753631213,220,0 +170753631263,221,0 +170753631310,221,0 +170753631360,222,0 +170753631409,223,0 +170753631457,223,0 +170753631505,223,0 +170753631554,223,0 +170753631604,224,0 +170753631653,224,0 +170753631701,223,0 +170753631749,222,0 +170753631797,218,0 +170753631847,217,0 +170753631896,218,0 +170753631944,218,0 +170753631993,219,0 +170753632041,219,0 +170753632089,221,0 +170753632137,221,0 +170753632185,221,0 +170753632233,222,0 +170753632281,223,0 +170753632328,223,0 +170753632376,223,0 +170753632424,223,0 +170753632472,224,0 +170753632520,223,0 +170753632568,223,0 +170753632616,216,0 +170753632664,216,0 +170753632711,217,0 +170753632759,218,0 +170753632807,219,0 +170753632855,221,0 +170753632903,220,0 +170753632951,220,0 +170753632999,221,0 +170753633048,222,0 +170753633098,223,0 +170753633147,223,0 +170753633195,223,0 +170753633245,224,0 +170753633292,224,0 +170753633340,223,0 +170753633388,223,0 +170753633436,222,0 +170753633484,217,0 +170753633533,218,0 +170753633583,219,0 +170753633631,219,0 +170753633678,220,0 +170753633726,220,0 +170753633774,222,0 +170753633822,221,0 +170753633872,223,0 +170753633920,224,0 +170753633968,225,0 +170753634015,222,0 +170753634063,223,0 +170753634113,224,0 +170753634161,223,0 +170753634209,223,0 +170753634256,224,0 +170753634304,217,0 +170753634352,219,0 +170753634402,219,0 +170753634450,219,0 +170753634499,222,0 +170753634549,221,0 +170753634597,221,0 +170753634644,223,0 +170753634692,222,0 +170753634740,223,0 +170753634788,222,0 +170753634837,223,0 +170753634885,223,0 +170753634935,226,0 +170753634983,223,0 +170753635030,224,0 +170753635080,222,0 +170753635129,219,0 +170753635177,218,0 +170753635225,221,0 +170753635273,220,0 +170753635321,220,0 +170753635369,221,0 +170753635417,221,0 +170753635466,222,0 +170753635514,223,0 +170753635562,222,0 +170753635611,223,0 +170753635661,223,0 +170753635710,224,0 +170753635758,224,0 +170753635806,223,0 +170753635854,224,0 +170753635902,223,0 +170753635950,218,0 +170753635998,218,0 +170753636046,218,0 +170753636093,219,0 +170753636141,221,0 +170753636191,222,0 +170753636239,221,0 +170753636287,223,0 +170753636335,221,0 +170753636383,222,0 +170753636430,223,0 +170753636478,224,0 +170753636526,225,0 +170753636576,223,0 +170753636624,223,0 +170753636671,223,0 +170753636719,223,0 +170753636767,216,0 +170753636815,214,0 +170753636863,215,0 +170753636912,216,0 +170753636962,217,0 +170753637010,217,0 +170753637059,218,0 +170753637107,219,0 +170753637155,219,0 +170753637203,219,0 +170753637251,221,0 +170753637300,222,0 +170753637349,223,0 +170753637397,223,0 +170753637445,223,0 +170753637493,223,0 +170753637542,223,0 +170753637590,216,0 +170753637640,215,0 +170753637688,215,0 +170753637736,217,0 +170753637783,218,0 +170753637833,218,0 +170753637881,219,0 +170753637929,219,0 +170753637976,220,0 +170753638026,221,0 +170753638074,222,0 +170753638122,222,0 +170753638170,223,0 +170753638217,222,0 +170753638265,223,0 +170753638313,222,0 +170753638361,223,0 +170753638409,220,0 +170753638459,215,0 +170753638508,215,0 +170753638556,215,0 +170753638604,216,0 +170753638652,216,0 +170753638701,218,0 +170753638749,218,0 +170753638797,220,0 +170753638845,220,0 +170753638893,221,0 +170753638940,223,0 +170753638988,222,0 +170753639036,222,0 +170753639084,222,0 +170753639132,223,0 +170753639180,224,0 +170753639229,222,0 +170753639277,215,0 +170753639327,215,0 +170753639376,215,0 +170753639424,216,0 +170753639472,217,0 +170753639520,218,0 +170753639568,219,0 +170753639615,219,0 +170753639663,220,0 +170753639711,220,0 +170753639759,221,0 +170753639807,222,0 +170753639855,223,0 +170753639903,223,0 +170753639950,224,0 +170753639998,224,0 +170753640048,223,0 +170753640096,216,0 +170753640143,216,0 +170753640191,216,0 +170753640239,218,0 +170753640287,218,0 +170753640335,219,0 +170753640383,219,0 +170753640431,221,0 +170753640480,222,0 +170753640528,222,0 +170753640576,223,0 +170753640625,223,0 +170753640675,223,0 +170753640724,223,0 +170753640772,223,0 +170753640820,223,0 +170753640868,223,0 +170753640916,216,0 +170753640966,216,0 +170753641014,217,0 +170753641063,218,0 +170753641113,218,0 +170753641160,219,0 +170753641210,219,0 +170753641258,220,0 +170753641307,220,0 +170753641355,221,0 +170753641405,222,0 +170753641452,222,0 +170753641500,223,0 +170753641550,223,0 +170753641598,222,0 +170753641647,223,0 +170753641697,223,0 +170753641746,218,0 +170753641795,216,0 +170753641843,220,0 +170753641891,218,0 +170753641939,220,0 +170753641989,220,0 +170753642038,220,0 +170753642086,222,0 +170753642134,222,0 +170753642184,223,0 +170753642233,222,0 +170753642282,223,0 +170753642330,223,0 +170753642378,224,0 +170753642426,223,0 +170753642474,224,0 +170753642522,224,0 +170753642570,222,0 +170753642618,218,0 +170753642666,218,0 +170753642715,219,0 +170753642765,221,0 +170753642814,221,0 +170753642862,221,0 +170753642910,222,0 +170753642958,223,0 +170753643006,223,0 +170753643054,223,0 +170753643104,224,0 +170753643152,223,0 +170753643200,223,0 +170753643249,223,0 +170753643299,223,0 +170753643347,223,0 +170753643396,217,0 +170753643444,219,0 +170753643492,220,0 +170753643542,221,0 +170753643589,221,0 +170753643639,222,0 +170753643687,223,0 +170753643735,223,0 +170753643783,224,0 +170753643832,223,0 +170753643882,224,0 +170753643929,224,0 +170753643979,223,0 +170753644027,223,0 +170753644075,223,0 +170753644123,223,0 +170753644172,222,0 +170753644220,219,0 +170753644268,219,0 +170753644316,220,0 +170753644365,219,0 +170753644413,221,0 +170753644461,220,0 +170753644509,222,0 +170753644557,223,0 +170753644606,223,0 +170753644654,223,0 +170753644702,224,0 +170753644751,224,0 +170753644799,224,0 +170753644847,224,0 +170753644895,223,0 +170753644943,223,0 +170753644991,222,0 +170753645039,223,0 +170753645086,220,0 +170753645134,219,0 +170753645182,220,0 +170753645230,221,0 +170753645278,221,0 +170753645326,221,0 +170753645374,222,0 +170753645421,223,0 +170753645469,222,0 +170753645519,224,0 +170753645568,224,0 +170753645618,225,0 +170753645666,224,0 +170753645713,223,0 +170753645761,223,0 +170753645811,223,0 +170753645859,222,0 +170753645908,219,0 +170753645956,219,0 +170753646005,219,0 +170753646055,221,0 +170753646104,221,0 +170753646152,223,0 +170753646200,223,0 +170753646250,223,0 +170753646298,223,0 +170753646345,223,0 +170753646393,224,0 +170753646441,224,0 +170753646489,225,0 +170753646537,224,0 +170753646585,224,0 +170753646633,223,0 +170753646681,222,0 +170753646730,218,0 +170753646780,219,0 +170753646827,218,0 +170753646875,219,0 +170753646925,221,0 +170753646973,221,0 +170753647022,222,0 +170753647070,222,0 +170753647119,222,0 +170753647167,222,0 +170753647215,223,0 +170753647265,223,0 +170753647314,223,0 +170753647362,225,0 +170753647410,223,0 +170753647458,224,0 +170753647506,222,0 +170753647555,216,0 +170753647603,216,0 +170753647651,217,0 +170753647699,218,0 +170753647748,218,0 +170753647798,218,0 +170753647846,219,0 +170753647895,220,0 +170753647945,220,0 +170753647994,222,0 +170753648042,222,0 +170753648090,222,0 +170753648140,222,0 +170753648189,224,0 +170753648239,224,0 +170753648287,223,0 +170753648336,223,0 +170753648384,217,0 +170753648432,215,0 +170753648480,216,0 +170753648528,218,0 +170753648576,220,0 +170753648624,219,0 +170753648673,220,0 +170753648721,221,0 +170753648771,222,0 +170753648820,223,0 +170753648868,223,0 +170753648916,223,0 +170753648964,224,0 +170753649014,223,0 +170753649061,223,0 +170753649109,223,0 +170753649157,223,0 +170753649205,217,0 +170753649253,217,0 +170753649301,218,0 +170753649349,219,0 +170753649398,220,0 +170753649446,222,0 +170753649496,221,0 +170753649545,222,0 +170753649593,223,0 +170753649641,224,0 +170753649689,224,0 +170753649738,225,0 +170753649788,223,0 +170753649836,223,0 +170753649883,223,0 +170753649931,223,0 +170753649981,223,0 +170753650029,216,0 +170753650078,217,0 +170753650128,218,0 +170753650176,219,0 +170753650223,219,0 +170753650271,219,0 +170753650319,220,0 +170753650367,220,0 +170753650415,222,0 +170753650463,222,0 +170753650511,223,0 +170753650560,223,0 +170753650608,223,0 +170753650656,223,0 +170753650704,223,0 +170753650752,222,0 +170753650800,222,0 +170753650848,222,0 +170753650897,217,0 +170753650945,217,0 +170753650993,218,0 +170753651041,218,0 +170753651089,219,0 +170753651137,220,0 +170753651185,220,0 +170753651234,221,0 +170753651282,221,0 +170753651330,222,0 +170753651378,222,0 +170753651426,222,0 +170753651473,223,0 +170753651521,223,0 +170753651569,224,0 +170753651617,222,0 +170753651667,223,0 +170753651714,215,0 +170753651764,215,0 +170753651812,216,0 +170753651860,217,0 +170753651909,218,0 +170753651957,219,0 +170753652005,219,0 +170753652055,220,0 +170753652104,221,0 +170753652152,222,0 +170753652202,222,0 +170753652250,224,0 +170753652300,222,0 +170753652348,224,0 +170753652395,223,0 +170753652445,224,0 +170753652493,223,0 +170753652542,214,0 +170753652590,215,0 +170753652638,216,0 +170753652686,217,0 +170753652734,219,0 +170753652782,218,0 +170753652830,218,0 +170753652880,220,0 +170753652928,220,0 +170753652976,221,0 +170753653025,221,0 +170753653075,223,0 +170753653124,222,0 +170753653174,223,0 +170753653222,222,0 +170753653270,222,0 +170753653319,222,0 +170753653367,216,0 +170753653415,216,0 +170753653465,217,0 +170753653514,219,0 +170753653564,218,0 +170753653613,219,0 +170753653661,219,0 +170753653711,220,0 +170753653760,221,0 +170753653810,222,0 +170753653858,223,0 +170753653906,222,0 +170753653956,223,0 +170753654003,223,0 +170753654051,224,0 +170753654099,223,0 +170753654147,223,0 +170753654195,217,0 +170753654245,217,0 +170753654293,217,0 +170753654342,217,0 +170753654390,218,0 +170753654438,220,0 +170753654488,221,0 +170753654536,222,0 +170753654584,221,0 +170753654632,221,0 +170753654681,222,0 +170753654729,224,0 +170753654777,224,0 +170753654825,223,0 +170753654873,224,0 +170753654921,224,0 +170753654969,223,0 +170753655019,218,0 +170753655067,215,0 +170753655114,218,0 +170753655164,219,0 +170753655212,219,0 +170753655262,220,0 +170753655311,221,0 +170753655361,223,0 +170753655410,222,0 +170753655460,223,0 +170753655508,223,0 +170753655557,222,0 +170753655605,223,0 +170753655655,224,0 +170753655703,223,0 +170753655752,222,0 +170753655800,222,0 +170753655850,218,0 +170753655898,218,0 +170753655947,219,0 +170753655995,220,0 +170753656043,220,0 +170753656093,220,0 +170753656142,222,0 +170753656191,222,0 +170753656241,222,0 +170753656291,223,0 +170753656338,223,0 +170753656386,224,0 +170753656434,224,0 +170753656484,223,0 +170753656532,222,0 +170753656581,223,0 +170753656631,222,0 +170753656679,218,0 +170753656727,219,0 +170753656775,219,0 +170753656823,220,0 +170753656872,221,0 +170753656922,222,0 +170753656970,222,0 +170753657018,223,0 +170753657067,223,0 +170753657115,224,0 +170753657163,224,0 +170753657211,224,0 +170753657259,225,0 +170753657308,223,0 +170753657358,223,0 +170753657406,223,0 +170753657454,223,0 +170753657503,217,0 +170753657551,217,0 +170753657599,218,0 +170753657649,219,0 +170753657698,219,0 +170753657746,220,0 +170753657796,220,0 +170753657845,222,0 +170753657895,222,0 +170753657945,222,0 +170753657992,223,0 +170753658042,223,0 +170753658090,223,0 +170753658139,224,0 +170753658189,223,0 +170753658239,223,0 +170753658288,221,0 +170753658336,216,0 +170753658384,215,0 +170753658432,216,0 +170753658481,216,0 +170753658529,217,0 +170753658579,218,0 +170753658628,219,0 +170753658678,219,0 +170753658726,222,0 +170753658774,222,0 +170753658822,221,0 +170753658870,223,0 +170753658918,225,0 +170753658967,223,0 +170753659015,224,0 +170753659063,223,0 +170753659113,223,0 +170753659162,215,0 +170753659210,215,0 +170753659258,216,0 +170753659306,216,0 +170753659354,218,0 +170753659404,219,0 +170753659453,218,0 +170753659501,220,0 +170753659549,220,0 +170753659599,221,0 +170753659647,223,0 +170753659696,222,0 +170753659746,223,0 +170753659795,221,0 +170753659845,223,0 +170753659893,224,0 +170753659941,223,0 +170753659989,220,0 +170753660037,215,0 +170753660086,216,0 +170753660136,217,0 +170753660184,218,0 +170753660233,218,0 +170753660283,219,0 +170753660331,220,0 +170753660379,222,0 +170753660427,221,0 +170753660475,222,0 +170753660523,222,0 +170753660570,226,0 +170753660620,225,0 +170753660670,224,0 +170753660719,223,0 +170753660768,223,0 +170753660816,216,0 +170753660866,216,0 +170753660914,216,0 +170753660962,217,0 +170753661011,218,0 +170753661061,219,0 +170753661109,220,0 +170753661157,219,0 +170753661205,221,0 +170753661254,223,0 +170753661302,222,0 +170753661350,223,0 +170753661398,224,0 +170753661448,224,0 +170753661496,224,0 +170753661545,225,0 +170753661595,223,0 +170753661643,215,0 +170753661691,216,0 +170753661740,216,0 +170753661788,217,0 +170753661836,218,0 +170753661886,220,0 +170753661935,220,0 +170753661985,220,0 +170753662034,221,0 +170753662084,223,0 +170753662132,222,0 +170753662180,224,0 +170753662228,224,0 +170753662277,223,0 +170753662325,223,0 +170753662373,223,0 +170753662423,223,0 +170753662471,217,0 +170753662520,220,0 +170753662568,219,0 +170753662616,221,0 +170753662664,220,0 +170753662712,221,0 +170753662760,221,0 +170753662808,221,0 +170753662856,222,0 +170753662904,224,0 +170753662952,222,0 +170753663000,223,0 +170753663048,223,0 +170753663096,222,0 +170753663145,222,0 +170753663195,223,0 +170753663244,223,0 +170753663292,222,0 +170753663340,221,0 +170753663390,221,0 +170753663439,222,0 +170753663487,222,0 +170753663535,222,0 +170753663583,223,0 +170753663631,222,0 +170753663679,225,0 +170753663726,224,0 +170753663774,223,0 +170753663822,224,0 +170753663870,225,0 +170753663918,222,0 +170753663966,223,0 +170753664014,223,0 +170753664062,222,0 +170753664110,222,0 +170753664157,218,0 +170753664205,219,0 +170753664253,220,0 +170753664301,220,0 +170753664349,220,0 +170753664398,220,0 +170753664446,222,0 +170753664496,224,0 +170753664544,223,0 +170753664592,224,0 +170753664640,223,0 +170753664689,223,0 +170753664737,223,0 +170753664785,222,0 +170753664835,223,0 +170753664883,223,0 +170753664931,222,0 +170753664980,219,0 +170753665030,219,0 +170753665079,219,0 +170753665127,219,0 +170753665177,220,0 +170753665225,221,0 +170753665273,221,0 +170753665322,222,0 +170753665372,223,0 +170753665420,222,0 +170753665468,223,0 +170753665515,224,0 +170753665564,223,0 +170753665613,223,0 +170753665661,223,0 +170753665711,222,0 +170753665759,223,0 +170753665806,217,0 +170753665854,216,0 +170753665904,217,0 +170753665952,218,0 +170753666000,219,0 +170753666048,221,0 +170753666096,220,0 +170753666144,221,0 +170753666193,222,0 +170753666241,223,0 +170753666291,223,0 +170753666339,223,0 +170753666387,222,0 +170753666435,223,0 +170753666483,223,0 +170753666531,223,0 +170753666580,222,0 +170753666628,219,0 +170753666676,216,0 +170753666726,218,0 +170753666775,219,0 +170753666823,219,0 +170753666871,220,0 +170753666919,220,0 +170753666967,220,0 +170753667017,222,0 +170753667066,223,0 +170753667114,223,0 +170753667162,223,0 +170753667210,223,0 +170753667260,224,0 +170753667308,223,0 +170753667356,223,0 +170753667404,222,0 +170753667451,218,0 +170753667499,218,0 +170753667549,218,0 +170753667599,220,0 +170753667647,220,0 +170753667696,221,0 +170753667746,220,0 +170753667795,222,0 +170753667843,222,0 +170753667893,222,0 +170753667941,223,0 +170753667990,224,0 +170753668040,224,0 +170753668088,224,0 +170753668137,224,0 +170753668185,222,0 +170753668233,222,0 +170753668283,216,0 +170753668331,216,0 +170753668380,217,0 +170753668430,218,0 +170753668479,219,0 +170753668529,219,0 +170753668577,220,0 +170753668626,221,0 +170753668674,222,0 +170753668722,222,0 +170753668770,223,0 +170753668818,222,0 +170753668866,223,0 +170753668915,224,0 +170753668965,222,0 +170753669015,222,0 +170753669064,223,0 +170753669112,218,0 +170753669160,218,0 +170753669208,219,0 +170753669256,220,0 +170753669304,221,0 +170753669353,221,0 +170753669401,221,0 +170753669449,221,0 +170753669497,223,0 +170753669547,222,0 +170753669596,223,0 +170753669646,223,0 +170753669694,224,0 +170753669743,223,0 +170753669793,223,0 +170753669842,222,0 +170753669892,222,0 +170753669940,219,0 +170753669988,218,0 +170753670036,219,0 +170753670084,219,0 +170753670133,220,0 +170753670181,221,0 +170753670229,222,0 +170753670277,222,0 +170753670327,221,0 +170753670376,223,0 +170753670424,223,0 +170753670474,224,0 +170753670523,221,0 +170753670571,223,0 +170753670619,223,0 +170753670669,222,0 +170753670718,226,0 +170753670766,217,0 +170753670814,218,0 +170753670864,218,0 +170753670912,219,0 +170753670961,220,0 +170753671011,221,0 +170753671060,221,0 +170753671110,221,0 +170753671159,222,0 +170753671207,222,0 +170753671255,224,0 +170753671303,224,0 +170753671353,223,0 +170753671401,223,0 +170753671449,223,0 +170753671497,223,0 +170753671545,223,0 +170753671594,216,0 +170753671642,216,0 +170753671690,217,0 +170753671740,218,0 +170753671789,219,0 +170753671837,219,0 +170753671887,220,0 +170753671935,221,0 +170753671984,221,0 +170753672032,223,0 +170753672080,223,0 +170753672128,223,0 +170753672176,223,0 +170753672224,223,0 +170753672273,224,0 +170753672321,223,0 +170753672369,223,0 +170753672417,223,0 +170753672465,215,0 +170753672513,216,0 +170753672563,217,0 +170753672612,218,0 +170753672660,221,0 +170753672708,218,0 +170753672758,220,0 +170753672806,221,0 +170753672854,221,0 +170753672902,222,0 +170753672951,223,0 +170753673001,223,0 +170753673050,224,0 +170753673098,223,0 +170753673146,224,0 +170753673196,223,0 +170753673245,222,0 +170753673293,215,0 +170753673341,215,0 +170753673389,215,0 +170753673439,216,0 +170753673487,217,0 +170753673536,218,0 +170753673586,219,0 +170753673635,219,0 +170753673685,220,0 +170753673734,222,0 +170753673784,222,0 +170753673833,223,0 +170753673883,223,0 +170753673931,222,0 +170753673979,223,0 +170753674029,223,0 +170753674078,219,0 +170753674126,213,0 +170753674176,215,0 +170753674225,216,0 +170753674275,216,0 +170753674324,219,0 +170753674372,217,0 +170753674420,218,0 +170753674469,218,0 +170753674517,219,0 +170753674565,221,0 +170753674613,221,0 +170753674663,222,0 +170753674710,223,0 +170753674758,223,0 +170753674806,222,0 +170753674856,223,0 +170753674904,218,0 +170753674951,215,0 +170753674999,216,0 +170753675049,217,0 +170753675098,219,0 +170753675146,217,0 +170753675196,219,0 +170753675245,220,0 +170753675295,220,0 +170753675343,223,0 +170753675391,222,0 +170753675439,222,0 +170753675488,223,0 +170753675536,224,0 +170753675584,226,0 +170753675632,223,0 +170753675680,223,0 +170753675728,222,0 +170753675776,217,0 +170753675825,218,0 +170753675873,220,0 +170753675921,220,0 +170753675971,221,0 +170753676020,221,0 +170753676070,222,0 +170753676119,222,0 +170753676167,223,0 +170753676215,222,0 +170753676263,222,0 +170753676311,223,0 +170753676360,223,0 +170753676408,224,0 +170753676458,224,0 +170753676505,223,0 +170753676553,222,0 +170753676603,216,0 +170753676652,219,0 +170753676702,221,0 +170753676751,222,0 +170753676801,221,0 +170753676851,222,0 +170753676900,226,0 +170753676948,223,0 +170753676996,226,0 +170753677044,224,0 +170753677094,223,0 +170753677142,222,0 +170753677191,223,0 +170753677239,223,0 +170753677287,223,0 +170753677335,222,0 +170753677383,222,0 +170753677432,217,0 +170753677480,218,0 +170753677528,219,0 +170753677577,219,0 +170753677625,220,0 +170753677673,221,0 +170753677722,220,0 +170753677770,221,0 +170753677818,223,0 +170753677866,222,0 +170753677914,222,0 +170753677963,222,0 +170753678013,222,0 +170753678061,222,0 +170753678109,222,0 +170753678158,222,0 +170753678206,222,0 +170753678254,217,0 +170753678303,217,0 +170753678351,217,0 +170753678401,222,0 +170753678449,219,0 +170753678497,219,0 +170753678545,221,0 +170753678592,222,0 +170753678640,221,0 +170753678690,221,0 +170753678738,223,0 +170753678787,224,0 +170753678837,223,0 +170753678884,223,0 +170753678932,223,0 +170753678980,223,0 +170753679030,223,0 +170753679078,216,0 +170753679125,216,0 +170753679175,218,0 +170753679223,218,0 +170753679271,219,0 +170753679320,219,0 +170753679368,221,0 +170753679418,221,0 +170753679465,221,0 +170753679513,222,0 +170753679561,222,0 +170753679609,223,0 +170753679659,224,0 +170753679707,223,0 +170753679756,223,0 +170753679805,222,0 +170753679853,222,0 +170753679903,218,0 +170753679952,217,0 +170753680000,218,0 +170753680048,219,0 +170753680096,219,0 +170753680144,221,0 +170753680193,221,0 +170753680243,221,0 +170753680293,221,0 +170753680340,222,0 +170753680388,222,0 +170753680436,223,0 +170753680484,225,0 +170753680532,224,0 +170753680580,223,0 +170753680628,223,0 +170753680676,222,0 +170753680725,218,0 +170753680773,218,0 +170753680821,219,0 +170753680869,219,0 +170753680917,220,0 +170753680966,221,0 +170753681014,221,0 +170753681062,221,0 +170753681110,222,0 +170753681160,222,0 +170753681209,224,0 +170753681257,223,0 +170753681305,223,0 +170753681355,223,0 +170753681403,224,0 +170753681451,222,0 +170753681500,223,0 +170753681548,218,0 +170753681596,217,0 +170753681646,219,0 +170753681695,219,0 +170753681745,220,0 +170753681794,221,0 +170753681842,221,0 +170753681892,222,0 +170753681940,225,0 +170753681988,223,0 +170753682036,224,0 +170753682085,224,0 +170753682133,222,0 +170753682181,224,0 +170753682229,223,0 +170753682279,224,0 +170753682328,222,0 +170753682378,218,0 +170753682426,218,0 +170753682474,219,0 +170753682522,220,0 +170753682571,220,0 +170753682620,220,0 +170753682668,221,0 +170753682716,221,0 +170753682764,221,0 +170753682812,224,0 +170753682860,223,0 +170753682909,224,0 +170753682957,223,0 +170753683005,222,0 +170753683053,223,0 +170753683101,223,0 +170753683150,223,0 +170753683200,218,0 +170753683249,219,0 +170753683297,220,0 +170753683345,220,0 +170753683393,222,0 +170753683441,221,0 +170753683489,223,0 +170753683537,223,0 +170753683585,222,0 +170753683632,223,0 +170753683680,223,0 +170753683728,223,0 +170753683776,224,0 +170753683824,223,0 +170753683872,224,0 +170753683920,223,0 +170753683967,223,0 +170753684015,222,0 +170753684063,218,0 +170753684111,219,0 +170753684161,220,0 +170753684209,219,0 +170753684257,221,0 +170753684304,221,0 +170753684354,222,0 +170753684402,222,0 +170753684450,223,0 +170753684497,223,0 +170753684545,224,0 +170753684593,224,0 +170753684641,223,0 +170753684691,223,0 +170753684739,223,0 +170753684787,223,0 +170753684836,224,0 +170753684884,217,0 +170753684932,217,0 +170753684980,218,0 +170753685030,219,0 +170753685078,220,0 +170753685126,221,0 +170753685174,220,0 +170753685222,223,0 +170753685270,222,0 +170753685319,222,0 +170753685367,223,0 +170753685415,222,0 +170753685463,223,0 +170753685510,222,0 +170753685558,222,0 +170753685608,223,0 +170753685656,222,0 +170753685704,216,0 +170753685752,216,0 +170753685801,217,0 +170753685849,218,0 +170753685897,219,0 +170753685945,219,0 +170753685993,221,0 +170753686043,221,0 +170753686091,221,0 +170753686139,221,0 +170753686187,222,0 +170753686235,223,0 +170753686284,223,0 +170753686334,223,0 +170753686382,223,0 +170753686430,223,0 +170753686479,224,0 +170753686527,217,0 +170753686575,217,0 +170753686624,218,0 +170753686674,217,0 +170753686724,219,0 +170753686772,219,0 +170753686821,220,0 +170753686871,220,0 +170753686920,221,0 +170753686968,221,0 +170753687016,222,0 +170753687066,223,0 +170753687115,224,0 +170753687163,222,0 +170753687213,223,0 +170753687261,223,0 +170753687309,223,0 +170753687357,217,0 +170753687404,216,0 +170753687454,217,0 +170753687504,218,0 +170753687553,219,0 +170753687601,220,0 +170753687649,220,0 +170753687699,220,0 +170753687748,221,0 +170753687796,222,0 +170753687844,223,0 +170753687892,224,0 +170753687941,224,0 +170753687989,222,0 +170753688039,224,0 +170753688087,224,0 +170753688135,223,0 +170753688184,215,0 +170753688234,216,0 +170753688283,217,0 +170753688333,215,0 +170753688381,219,0 +170753688430,220,0 +170753688478,221,0 +170753688526,220,0 +170753688574,222,0 +170753688622,223,0 +170753688670,223,0 +170753688720,224,0 +170753688768,224,0 +170753688817,224,0 +170753688865,224,0 +170753688913,224,0 +170753688963,223,0 +170753689011,216,0 +170753689058,217,0 +170753689106,221,0 +170753689154,220,0 +170753689202,220,0 +170753689252,222,0 +170753689300,221,0 +170753689348,222,0 +170753689396,223,0 +170753689445,223,0 +170753689495,224,0 +170753689544,223,0 +170753689592,224,0 +170753689642,224,0 +170753689691,223,0 +170753689741,223,0 +170753689789,223,0 +170753689839,219,0 +170753689888,219,0 +170753689936,219,0 +170753689984,220,0 +170753690033,221,0 +170753690083,221,0 +170753690130,221,0 +170753690178,223,0 +170753690226,222,0 +170753690274,223,0 +170753690322,224,0 +170753690370,222,0 +170753690418,223,0 +170753690466,223,0 +170753690514,222,0 +170753690561,223,0 +170753690611,222,0 +170753690660,216,0 +170753690710,217,0 +170753690758,218,0 +170753690806,218,0 +170753690855,220,0 +170753690905,221,0 +170753690952,220,0 +170753691000,221,0 +170753691048,221,0 +170753691096,223,0 +170753691144,223,0 +170753691192,223,0 +170753691240,223,0 +170753691288,225,0 +170753691336,224,0 +170753691384,223,0 +170753691432,223,0 +170753691480,219,0 +170753691527,215,0 +170753691577,216,0 +170753691627,216,0 +170753691675,217,0 +170753691724,218,0 +170753691772,220,0 +170753691822,220,0 +170753691870,220,0 +170753691918,221,0 +170753691967,223,0 +170753692015,224,0 +170753692065,223,0 +170753692112,223,0 +170753692162,223,0 +170753692210,223,0 +170753692259,223,0 +170753692307,218,0 +170753692357,215,0 +170753692405,216,0 +170753692453,217,0 +170753692501,218,0 +170753692549,219,0 +170753692597,220,0 +170753692645,220,0 +170753692693,222,0 +170753692741,223,0 +170753692789,222,0 +170753692838,223,0 +170753692888,223,0 +170753692935,222,0 +170753692983,223,0 +170753693033,223,0 +170753693083,223,0 +170753693131,222,0 +170753693178,215,0 +170753693226,216,0 +170753693274,217,0 +170753693324,218,0 +170753693372,219,0 +170753693421,219,0 +170753693469,219,0 +170753693517,220,0 +170753693565,221,0 +170753693613,222,0 +170753693663,222,0 +170753693711,222,0 +170753693760,223,0 +170753693810,222,0 +170753693858,223,0 +170753693906,224,0 +170753693955,222,0 +170753694003,216,0 +170753694051,216,0 +170753694100,217,0 +170753694148,217,0 +170753694196,218,0 +170753694244,218,0 +170753694292,219,0 +170753694340,219,0 +170753694388,219,0 +170753694436,221,0 +170753694484,221,0 +170753694533,222,0 +170753694581,222,0 +170753694629,224,0 +170753694679,222,0 +170753694728,222,0 +170753694776,221,0 +170753694824,216,0 +170753694874,216,0 +170753694922,217,0 +170753694969,218,0 +170753695017,218,0 +170753695065,219,0 +170753695115,219,0 +170753695163,220,0 +170753695211,221,0 +170753695259,222,0 +170753695307,222,0 +170753695355,221,0 +170753695403,223,0 +170753695451,223,0 +170753695499,223,0 +170753695548,223,0 +170753695596,222,0 +170753695646,217,0 +170753695695,217,0 +170753695745,218,0 +170753695793,218,0 +170753695841,219,0 +170753695889,220,0 +170753695937,216,0 +170753695985,221,0 +170753696033,222,0 +170753696082,222,0 +170753696132,222,0 +170753696181,224,0 +170753696229,223,0 +170753696279,223,0 +170753696327,224,0 +170753696374,223,0 +170753696424,222,0 +170753696474,218,0 +170753696523,218,0 +170753696573,219,0 +170753696621,219,0 +170753696669,221,0 +170753696717,221,0 +170753696766,222,0 +170753696816,222,0 +170753696864,223,0 +170753696913,222,0 +170753696961,223,0 +170753697009,224,0 +170753697059,224,0 +170753697108,224,0 +170753697156,224,0 +170753697204,223,0 +170753697254,223,0 +170753697302,219,0 +170753697350,219,0 +170753697399,219,0 +170753697447,221,0 +170753697497,221,0 +170753697545,221,0 +170753697594,224,0 +170753697644,223,0 +170753697692,224,0 +170753697741,223,0 +170753697789,223,0 +170753697837,223,0 +170753697885,225,0 +170753697935,223,0 +170753697983,223,0 +170753698031,223,0 +170753698080,223,0 +170753698130,219,0 +170753698179,220,0 +170753698229,221,0 +170753698278,220,0 +170753698328,221,0 +170753698376,221,0 +170753698425,222,0 +170753698473,223,0 +170753698523,223,0 +170753698573,223,0 +170753698622,225,0 +170753698670,224,0 +170753698718,224,0 +170753698768,225,0 +170753698817,223,0 +170753698865,223,0 +170753698913,225,0 +170753698962,221,0 +170753699010,222,0 +170753699058,219,0 +170753699108,218,0 +170753699157,218,0 +170753699205,220,0 +170753699255,221,0 +170753699303,222,0 +170753699351,223,0 +170753699399,223,0 +170753699448,224,0 +170753699498,224,0 +170753699546,223,0 +170753699595,223,0 +170753699645,223,0 +170753699694,223,0 +170753699742,223,0 +170753699790,221,0 +170753699840,223,0 +170753699889,223,0 +170753699939,222,0 +170753699988,219,0 +170753700036,218,0 +170753700084,219,0 +170753700134,220,0 +170753700182,220,0 +170753700231,222,0 +170753700281,223,0 +170753700330,223,0 +170753700378,222,0 +170753700426,223,0 +170753700476,224,0 +170753700525,225,0 +170753700573,224,0 +170753700623,224,0 +170753700673,224,0 +170753700721,224,0 +170753700769,224,0 +170753700817,223,0 +170753700866,222,0 +170753700914,218,0 +170753700964,218,0 +170753701011,219,0 +170753701059,221,0 +170753701107,221,0 +170753701157,222,0 +170753701205,221,0 +170753701252,224,0 +170753701300,223,0 +170753701348,224,0 +170753701396,223,0 +170753701446,224,0 +170753701493,225,0 +170753701541,223,0 +170753701591,224,0 +170753701639,224,0 +170753701687,224,0 +170753701736,223,0 +170753701784,223,0 +170753701832,218,0 +170753701881,217,0 +170753701929,217,0 +170753701977,218,0 +170753702027,219,0 +170753702074,219,0 +170753702122,220,0 +170753702170,220,0 +170753702218,220,0 +170753702266,221,0 +170753702314,222,0 +170753702362,223,0 +170753702410,223,0 +170753702458,223,0 +170753702505,223,0 +170753702555,222,0 +170753702604,224,0 +170753702652,225,0 +170753702702,224,0 +170753702750,216,0 +170753702797,216,0 +170753702845,216,0 +170753702893,217,0 +170753702943,217,0 +170753702992,218,0 +170753703042,219,0 +170753703091,220,0 +170753703139,220,0 +170753703189,220,0 +170753703239,221,0 +170753703287,223,0 +170753703335,223,0 +170753703384,223,0 +170753703434,223,0 +170753703483,223,0 +170753703531,224,0 +170753703579,224,0 +170753703629,223,0 +170753703678,219,0 +170753703726,215,0 +170753703774,216,0 +170753703824,217,0 +170753703872,218,0 +170753703920,219,0 +170753703968,220,0 +170753704015,220,0 +170753704065,221,0 +170753704113,221,0 +170753704161,222,0 +170753704211,222,0 +170753704260,223,0 +170753704310,223,0 +170753704357,223,0 +170753704407,223,0 +170753704457,224,0 +170753704505,223,0 +170753704554,223,0 +170753704602,220,0 +170753704650,216,0 +170753704700,217,0 +170753704749,217,0 +170753704797,218,0 +170753704847,219,0 +170753704896,219,0 +170753704944,220,0 +170753704992,221,0 +170753705040,222,0 +170753705088,222,0 +170753705138,222,0 +170753705185,223,0 +170753705233,223,0 +170753705283,223,0 +170753705331,222,0 +170753705380,223,0 +170753705428,223,0 +170753705476,223,0 +170753705526,218,0 +170753705574,215,0 +170753705624,216,0 +170753705671,217,0 +170753705721,217,0 +170753705769,218,0 +170753705817,219,0 +170753705867,219,0 +170753705916,221,0 +170753705966,222,0 +170753706015,221,0 +170753706065,221,0 +170753706114,222,0 +170753706164,222,0 +170753706213,223,0 +170753706261,224,0 +170753706309,224,0 +170753706357,223,0 +170753706405,223,0 +170753706453,222,0 +170753706501,215,0 +170753706549,215,0 +170753706597,215,0 +170753706645,217,0 +170753706695,217,0 +170753706744,217,0 +170753706794,219,0 +170753706843,219,0 +170753706891,220,0 +170753706939,220,0 +170753706989,222,0 +170753707038,222,0 +170753707086,223,0 +170753707134,222,0 +170753707184,229,0 +170753707233,223,0 +170753707281,223,0 +170753707329,223,0 +170753707377,222,0 +170753707425,216,0 +170753707473,215,0 +170753707522,215,0 +170753707572,217,0 +170753707622,217,0 +170753707669,217,0 +170753707717,218,0 +170753707767,219,0 +170753707817,220,0 +170753707866,221,0 +170753707916,222,0 +170753707965,222,0 +170753708015,222,0 +170753708064,222,0 +170753708114,222,0 +170753708162,223,0 +170753708210,223,0 +170753708259,223,0 +170753708307,223,0 +170753708355,216,0 +170753708405,216,0 +170753708453,216,0 +170753708502,218,0 +170753708552,218,0 +170753708601,220,0 +170753708651,219,0 +170753708700,220,0 +170753708748,220,0 +170753708796,221,0 +170753708844,222,0 +170753708894,222,0 +170753708942,222,0 +170753708991,224,0 +170753709039,223,0 +170753709087,223,0 +170753709135,224,0 +170753709184,223,0 +170753709232,223,0 +170753709282,215,0 +170753709332,215,0 +170753709381,216,0 +170753709431,216,0 +170753709479,216,0 +170753709528,218,0 +170753709576,219,0 +170753709624,218,0 +170753709672,220,0 +170753709720,221,0 +170753709768,221,0 +170753709816,221,0 +170753709865,221,0 +170753709913,222,0 +170753709961,223,0 +170753710011,223,0 +170753710059,223,0 +170753710107,223,0 +170753710156,223,0 +170753710204,216,0 +170753710252,215,0 +170753710300,216,0 +170753710348,217,0 +170753710396,218,0 +170753710446,218,0 +170753710494,218,0 +170753710543,219,0 +170753710591,219,0 +170753710639,221,0 +170753710689,220,0 +170753710737,222,0 +170753710786,223,0 +170753710836,224,0 +170753710885,223,0 +170753710935,223,0 +170753710983,223,0 +170753711031,223,0 +170753711079,222,0 +170753711128,216,0 +170753711176,215,0 +170753711224,216,0 +170753711272,216,0 +170753711322,217,0 +170753711370,219,0 +170753711418,218,0 +170753711466,221,0 +170753711514,220,0 +170753711563,222,0 +170753711613,221,0 +170753711661,222,0 +170753711709,223,0 +170753711757,224,0 +170753711805,223,0 +170753711854,224,0 +170753711902,223,0 +170753711952,223,0 +170753712000,223,0 +170753712048,216,0 +170753712097,215,0 +170753712147,217,0 +170753712196,217,0 +170753712244,218,0 +170753712294,218,0 +170753712343,219,0 +170753712393,219,0 +170753712441,221,0 +170753712490,220,0 +170753712538,221,0 +170753712588,222,0 +170753712637,222,0 +170753712685,223,0 +170753712735,224,0 +170753712783,225,0 +170753712831,224,0 +170753712879,224,0 +170753712927,223,0 +170753712976,223,0 +170753713026,215,0 +170753713074,216,0 +170753713123,216,0 +170753713173,218,0 +170753713222,217,0 +170753713272,218,0 +170753713321,220,0 +170753713371,220,0 +170753713420,222,0 +170753713470,222,0 +170753713518,222,0 +170753713566,223,0 +170753713615,223,0 +170753713663,223,0 +170753713713,223,0 +170753713761,223,0 +170753713810,224,0 +170753713860,223,0 +170753713908,222,0 +170753713956,218,0 +170753714005,218,0 +170753714055,218,0 +170753714104,219,0 +170753714154,220,0 +170753714202,221,0 +170753714251,221,0 +170753714299,222,0 +170753714347,222,0 +170753714395,223,0 +170753714443,224,0 +170753714491,223,0 +170753714540,224,0 +170753714588,225,0 +170753714636,224,0 +170753714684,223,0 +170753714732,223,0 +170753714780,223,0 +170753714830,222,0 +170753714879,215,0 +170753714929,216,0 +170753714978,217,0 +170753715028,218,0 +170753715076,219,0 +170753715125,220,0 +170753715175,220,0 +170753715223,221,0 +170753715272,222,0 +170753715320,222,0 +170753715368,224,0 +170753715416,223,0 +170753715464,223,0 +170753715512,223,0 +170753715560,225,0 +170753715610,225,0 +170753715659,224,0 +170753715709,224,0 +170753715758,222,0 +170753715806,215,0 +170753715856,215,0 +170753715905,216,0 +170753715955,217,0 +170753716004,217,0 +170753716054,218,0 +170753716103,218,0 +170753716151,219,0 +170753716199,220,0 +170753716249,221,0 +170753716297,222,0 +170753716345,221,0 +170753716393,222,0 +170753716442,224,0 +170753716490,224,0 +170753716538,224,0 +170753716588,223,0 +170753716636,224,0 +170753716685,222,0 +170753716733,216,0 +170753716781,215,0 +170753716829,216,0 +170753716879,217,0 +170753716928,217,0 +170753716978,217,0 +170753717026,218,0 +170753717075,218,0 +170753717125,220,0 +170753717174,220,0 +170753717224,221,0 +170753717272,222,0 +170753717321,222,0 +170753717369,222,0 +170753717417,224,0 +170753717467,223,0 +170753717516,223,0 +170753717566,225,0 +170753717615,222,0 +170753717665,215,0 +170753717714,215,0 +170753717762,216,0 +170753717810,217,0 +170753717858,217,0 +170753717906,217,0 +170753717956,218,0 +170753718003,219,0 +170753718051,220,0 +170753718099,220,0 +170753718149,222,0 +170753718199,221,0 +170753718248,222,0 +170753718296,223,0 +170753718344,223,0 +170753718392,223,0 +170753718439,223,0 +170753718487,223,0 +170753718537,223,0 +170753718587,216,0 +170753718636,216,0 +170753718684,216,0 +170753718734,218,0 +170753718783,218,0 +170753718833,220,0 +170753718883,219,0 +170753718931,219,0 +170753718980,220,0 +170753719030,220,0 +170753719077,221,0 +170753719125,222,0 +170753719175,222,0 +170753719225,222,0 +170753719272,223,0 +170753719320,223,0 +170753719370,225,0 +170753719420,223,0 +170753719469,227,0 +170753719517,218,0 +170753719567,215,0 +170753719615,216,0 +170753719664,216,0 +170753719712,217,0 +170753719762,218,0 +170753719809,221,0 +170753719859,220,0 +170753719907,220,0 +170753719956,221,0 +170753720006,221,0 +170753720056,222,0 +170753720105,222,0 +170753720153,222,0 +170753720203,224,0 +170753720252,223,0 +170753720302,222,0 +170753720351,222,0 +170753720401,222,0 +170753720450,216,0 +170753720498,215,0 +170753720546,216,0 +170753720594,217,0 +170753720642,217,0 +170753720690,218,0 +170753720738,218,0 +170753720788,218,0 +170753720836,219,0 +170753720885,221,0 +170753720935,221,0 +170753720983,222,0 +170753721032,222,0 +170753721080,223,0 +170753721128,223,0 +170753721176,224,0 +170753721224,224,0 +170753721273,223,0 +170753721323,223,0 +170753721371,216,0 +170753721419,216,0 +170753721467,216,0 +170753721516,217,0 +170753721564,218,0 +170753721612,218,0 +170753721660,219,0 +170753721710,219,0 +170753721759,220,0 +170753721807,221,0 +170753721857,222,0 +170753721904,222,0 +170753721954,222,0 +170753722004,223,0 +170753722051,223,0 +170753722101,224,0 +170753722149,224,0 +170753722198,223,0 +170753722246,223,0 +170753722294,215,0 +170753722342,215,0 +170753722392,215,0 +170753722440,216,0 +170753722489,217,0 +170753722539,218,0 +170753722589,219,0 +170753722638,220,0 +170753722687,220,0 +170753722737,221,0 +170753722787,223,0 +170753722835,224,0 +170753722884,223,0 +170753722932,222,0 +170753722980,222,0 +170753723029,222,0 +170753723077,223,0 +170753723125,223,0 +170753723173,223,0 +170753723223,216,0 +170753723272,214,0 +170753723322,216,0 +170753723370,216,0 +170753723419,216,0 +170753723467,217,0 +170753723515,219,0 +170753723565,220,0 +170753723614,221,0 +170753723662,222,0 +170753723710,222,0 +170753723758,222,0 +170753723806,223,0 +170753723854,223,0 +170753723902,224,0 +170753723952,224,0 +170753724001,223,0 +170753724051,223,0 +170753724099,223,0 +170753724148,220,0 +170753724198,214,0 +170753724246,215,0 +170753724294,215,0 +170753724342,216,0 +170753724391,216,0 +170753724439,218,0 +170753724489,219,0 +170753724537,219,0 +170753724586,219,0 +170753724634,220,0 +170753724682,222,0 +170753724730,223,0 +170753724778,223,0 +170753724826,223,0 +170753724875,223,0 +170753724923,224,0 +170753724973,222,0 +170753725021,223,0 +170753725069,222,0 +170753725118,215,0 +170753725166,215,0 +170753725216,216,0 +170753725266,216,0 +170753725315,217,0 +170753725365,218,0 +170753725415,219,0 +170753725464,219,0 +170753725514,220,0 +170753725563,220,0 +170753725613,221,0 +170753725662,222,0 +170753725710,222,0 +170753725758,223,0 +170753725808,223,0 +170753725857,224,0 +170753725907,223,0 +170753725955,223,0 +170753726003,220,0 +170753726051,215,0 +170753726099,215,0 +170753726147,215,0 +170753726195,218,0 +170753726244,217,0 +170753726294,218,0 +170753726342,219,0 +170753726391,219,0 +170753726439,220,0 +170753726489,221,0 +170753726537,222,0 +170753726586,222,0 +170753726634,223,0 +170753726684,222,0 +170753726733,222,0 +170753726781,223,0 +170753726829,223,0 +170753726877,224,0 +170753726927,223,0 +170753726975,215,0 +170753727023,215,0 +170753727071,216,0 +170753727119,217,0 +170753727167,218,0 +170753727216,218,0 +170753727264,219,0 +170753727314,219,0 +170753727363,220,0 +170753727411,222,0 +170753727461,221,0 +170753727510,222,0 +170753727558,222,0 +170753727606,222,0 +170753727654,222,0 +170753727704,222,0 +170753727753,223,0 +170753727801,223,0 +170753727849,222,0 +170753727897,216,0 +170753727947,216,0 +170753727994,217,0 +170753728042,218,0 +170753728092,217,0 +170753728141,219,0 +170753728191,220,0 +170753728241,221,0 +170753728288,221,0 +170753728336,221,0 +170753728386,221,0 +170753728434,223,0 +170753728482,224,0 +170753728529,223,0 +170753728579,224,0 +170753728629,224,0 +170753728678,224,0 +170753728726,224,0 +170753728774,223,0 +170753728822,215,0 +170753728870,215,0 +170753728919,216,0 +170753728967,216,0 +170753729017,217,0 +170753729065,218,0 +170753729114,218,0 +170753729162,219,0 +170753729210,219,0 +170753729259,220,0 +170753729307,222,0 +170753729355,221,0 +170753729403,222,0 +170753729451,222,0 +170753729501,222,0 +170753729550,222,0 +170753729598,223,0 +170753729646,219,0 +170753729694,222,0 +170753729742,216,0 +170753729790,214,0 +170753729839,214,0 +170753729889,215,0 +170753729937,215,0 +170753729986,216,0 +170753730034,216,0 +170753730082,217,0 +170753730130,218,0 +170753730178,219,0 +170753730228,219,0 +170753730275,220,0 +170753730323,221,0 +170753730373,221,0 +170753730422,221,0 +170753730470,223,0 +170753730518,223,0 +170753730568,223,0 +170753730616,223,0 +170753730665,216,0 +170753730713,215,0 +170753730761,215,0 +170753730809,215,0 +170753730859,215,0 +170753730908,216,0 +170753730958,217,0 +170753731007,217,0 +170753731055,219,0 +170753731105,219,0 +170753731153,220,0 +170753731202,220,0 +170753731252,221,0 +170753731300,222,0 +170753731348,221,0 +170753731397,222,0 +170753731447,222,0 +170753731495,222,0 +170753731544,223,0 +170753731594,216,0 +170753731642,214,0 +170753731691,215,0 +170753731739,215,0 +170753731789,215,0 +170753731838,217,0 +170753731886,217,0 +170753731934,218,0 +170753731984,218,0 +170753732033,219,0 +170753732081,221,0 +170753732131,221,0 +170753732179,222,0 +170753732228,222,0 +170753732276,223,0 +170753732324,224,0 +170753732374,222,0 +170753732423,224,0 +170753732471,223,0 +170753732521,216,0 +170753732569,215,0 +170753732618,215,0 +170753732668,215,0 +170753732716,216,0 +170753732765,216,0 +170753732813,217,0 +170753732861,218,0 +170753732911,219,0 +170753732959,219,0 +170753733008,219,0 +170753733056,219,0 +170753733104,221,0 +170753733154,223,0 +170753733203,222,0 +170753733251,223,0 +170753733301,223,0 +170753733349,223,0 +170753733398,221,0 +170753733446,222,0 +170753733494,214,0 +170753733544,215,0 +170753733593,215,0 +170753733643,216,0 +170753733691,216,0 +170753733739,217,0 +170753733787,217,0 +170753733836,218,0 +170753733886,219,0 +170753733935,220,0 +170753733983,220,0 +170753734033,221,0 +170753734081,223,0 +170753734129,223,0 +170753734177,224,0 +170753734226,224,0 +170753734276,224,0 +170753734325,224,0 +170753734373,222,0 +170753734421,215,0 +170753734471,215,0 +170753734520,216,0 +170753734568,216,0 +170753734618,217,0 +170753734667,219,0 +170753734715,219,0 +170753734763,220,0 +170753734811,221,0 +170753734859,221,0 +170753734909,222,0 +170753734957,222,0 +170753735006,223,0 +170753735054,223,0 +170753735102,223,0 +170753735150,223,0 +170753735200,224,0 +170753735249,225,0 +170753735299,216,0 +170753735348,215,0 +170753735396,216,0 +170753735446,216,0 +170753735495,217,0 +170753735545,218,0 +170753735593,218,0 +170753735641,219,0 +170753735690,219,0 +170753735740,220,0 +170753735789,221,0 +170753735839,221,0 +170753735887,221,0 +170753735936,222,0 +170753735984,222,0 +170753736032,223,0 +170753736080,222,0 +170753736128,224,0 +170753736178,223,0 +170753736226,222,0 +170753736274,214,0 +170753736323,215,0 +170753736373,216,0 +170753736421,217,0 +170753736470,218,0 +170753736518,219,0 +170753736566,219,0 +170753736614,220,0 +170753736662,221,0 +170753736712,221,0 +170753736761,220,0 +170753736811,222,0 +170753736860,223,0 +170753736908,223,0 +170753736956,223,0 +170753737004,222,0 +170753737054,223,0 +170753737102,223,0 +170753737151,222,0 +170753737201,215,0 +170753737250,213,0 +170753737298,215,0 +170753737346,216,0 +170753737394,217,0 +170753737442,216,0 +170753737490,218,0 +170753737538,220,0 +170753737586,220,0 +170753737635,221,0 +170753737685,222,0 +170753737733,223,0 +170753737781,223,0 +170753737830,223,0 +170753737880,223,0 +170753737929,223,0 +170753737979,223,0 +170753738028,223,0 +170753738078,223,0 +170753738126,215,0 +170753738175,215,0 +170753738225,215,0 +170753738273,216,0 +170753738321,217,0 +170753738370,217,0 +170753738418,217,0 +170753738467,218,0 +170753738515,218,0 +170753738563,220,0 +170753738611,220,0 +170753738659,220,0 +170753738707,221,0 +170753738755,222,0 +170753738803,223,0 +170753738852,223,0 +170753738900,223,0 +170753738948,223,0 +170753738996,222,0 +170753739045,215,0 +170753739095,215,0 +170753739144,216,0 +170753739192,216,0 +170753739240,217,0 +170753739288,218,0 +170753739336,218,0 +170753739385,218,0 +170753739434,220,0 +170753739482,221,0 +170753739529,221,0 +170753739577,222,0 +170753739627,223,0 +170753739675,222,0 +170753739724,223,0 +170753739772,223,0 +170753739820,223,0 +170753739868,223,0 +170753739916,223,0 +170753739965,216,0 +170753740015,215,0 +170753740064,215,0 +170753740114,216,0 +170753740163,216,0 +170753740211,216,0 +170753740259,218,0 +170753740307,219,0 +170753740355,220,0 +170753740403,220,0 +170753740451,220,0 +170753740499,221,0 +170753740546,223,0 +170753740596,222,0 +170753740644,223,0 +170753740692,223,0 +170753740739,223,0 +170753740787,223,0 +170753740835,223,0 +170753740883,218,0 +170753740931,215,0 +170753740979,214,0 +170753741027,215,0 +170753741077,217,0 +170753741126,217,0 +170753741176,217,0 +170753741225,218,0 +170753741275,219,0 +170753741323,221,0 +170753741371,221,0 +170753741419,221,0 +170753741468,222,0 +170753741516,222,0 +170753741564,222,0 +170753741612,223,0 +170753741662,224,0 +170753741711,223,0 +170753741759,222,0 +170753741807,216,0 +170753741855,214,0 +170753741903,215,0 +170753741952,214,0 +170753742001,215,0 +170753742051,216,0 +170753742100,216,0 +170753742148,217,0 +170753742198,218,0 +170753742246,219,0 +170753742293,220,0 +170753742343,220,0 +170753742392,221,0 +170753742440,220,0 +170753742488,222,0 +170753742536,220,0 +170753742586,223,0 +170753742635,222,0 +170753742683,222,0 +170753742731,216,0 +170753742781,215,0 +170753742830,215,0 +170753742880,215,0 +170753742928,215,0 +170753742976,217,0 +170753743024,217,0 +170753743073,217,0 +170753743121,218,0 +170753743171,219,0 +170753743219,221,0 +170753743267,221,0 +170753743316,222,0 +170753743364,222,0 +170753743412,223,0 +170753743460,224,0 +170753743508,223,0 +170753743556,224,0 +170753743604,223,0 +170753743652,223,0 +170753743699,215,0 +170753743747,215,0 +170753743795,215,0 +170753743843,215,0 +170753743891,216,0 +170753743939,219,0 +170753743987,218,0 +170753744035,218,0 +170753744082,218,0 +170753744130,220,0 +170753744178,221,0 +170753744226,221,0 +170753744276,222,0 +170753744323,222,0 +170753744371,222,0 +170753744421,222,0 +170753744469,222,0 +170753744517,223,0 +170753744564,223,0 +170753744612,216,0 +170753744660,214,0 +170753744710,215,0 +170753744758,216,0 +170753744807,216,0 +170753744855,217,0 +170753744903,217,0 +170753744951,218,0 +170753744999,219,0 +170753745047,220,0 +170753745097,220,0 +170753745146,221,0 +170753745196,222,0 +170753745245,223,0 +170753745295,224,0 +170753745345,224,0 +170753745394,223,0 +170753745442,223,0 +170753745492,223,0 +170753745540,216,0 +170753745589,214,0 +170753745639,214,0 +170753745688,215,0 +170753745736,215,0 +170753745786,216,0 +170753745834,217,0 +170753745882,218,0 +170753745931,218,0 +170753745981,218,0 +170753746030,220,0 +170753746078,221,0 +170753746126,221,0 +170753746176,224,0 +170753746225,222,0 +170753746275,225,0 +170753746324,223,0 +170753746374,224,0 +170753746424,223,0 +170753746471,215,0 +170753746519,215,0 +170753746569,215,0 +170753746617,216,0 +170753746665,216,0 +170753746714,217,0 +170753746762,218,0 +170753746810,217,0 +170753746858,219,0 +170753746906,220,0 +170753746954,220,0 +170753747002,221,0 +170753747050,222,0 +170753747098,222,0 +170753747147,222,0 +170753747197,224,0 +170753747244,222,0 +170753747292,223,0 +170753747340,223,0 +170753747388,216,0 +170753747436,215,0 +170753747484,215,0 +170753747532,216,0 +170753747580,217,0 +170753747629,218,0 +170753747677,218,0 +170753747725,219,0 +170753747773,220,0 +170753747821,219,0 +170753747869,221,0 +170753747917,223,0 +170753747965,222,0 +170753748014,223,0 +170753748062,223,0 +170753748110,223,0 +170753748158,223,0 +170753748205,224,0 +170753748253,223,0 +170753748301,222,0 +170753748349,215,0 +170753748397,215,0 +170753748445,216,0 +170753748493,216,0 +170753748541,217,0 +170753748589,218,0 +170753748637,219,0 +170753748685,219,0 +170753748734,220,0 +170753748782,221,0 +170753748830,221,0 +170753748879,221,0 +170753748927,223,0 +170753748975,223,0 +170753749023,223,0 +170753749072,224,0 +170753749120,222,0 +170753749168,223,0 +170753749216,223,0 +170753749264,215,0 +170753749312,215,0 +170753749361,216,0 +170753749409,217,0 +170753749457,217,0 +170753749507,218,0 +170753749554,219,0 +170753749602,220,0 +170753749650,219,0 +170753749698,221,0 +170753749746,221,0 +170753749794,221,0 +170753749842,223,0 +170753749891,222,0 +170753749941,224,0 +170753749989,222,0 +170753750037,222,0 +170753750084,223,0 +170753750132,223,0 +170753750180,217,0 +170753750228,217,0 +170753750276,218,0 +170753750324,218,0 +170753750372,219,0 +170753750420,219,0 +170753750469,221,0 +170753750519,220,0 +170753750567,220,0 +170753750616,221,0 +170753750664,222,0 +170753750712,222,0 +170753750761,223,0 +170753750809,222,0 +170753750859,223,0 +170753750907,224,0 +170753750954,223,0 +170753751002,223,0 +170753751050,223,0 +170753751098,216,0 +170753751146,215,0 +170753751194,216,0 +170753751243,217,0 +170753751291,219,0 +170753751339,219,0 +170753751387,219,0 +170753751435,220,0 +170753751483,219,0 +170753751531,221,0 +170753751578,221,0 +170753751626,221,0 +170753751674,223,0 +170753751724,224,0 +170753751772,223,0 +170753751820,222,0 +170753751867,223,0 +170753751915,222,0 +170753751965,222,0 +170753752014,219,0 +170753752062,216,0 +170753752112,216,0 +170753752160,217,0 +170753752209,218,0 +170753752257,218,0 +170753752305,219,0 +170753752353,219,0 +170753752401,220,0 +170753752449,220,0 +170753752496,220,0 +170753752544,221,0 +170753752592,222,0 +170753752640,223,0 +170753752690,222,0 +170753752738,222,0 +170753752785,222,0 +170753752833,222,0 +170753752883,222,0 +170753752931,222,0 +170753752980,216,0 +170753753028,216,0 +170753753077,217,0 +170753753127,217,0 +170753753175,218,0 +170753753223,219,0 +170753753270,219,0 +170753753320,220,0 +170753753368,221,0 +170753753417,221,0 +170753753465,222,0 +170753753513,223,0 +170753753561,224,0 +170753753609,224,0 +170753753658,224,0 +170753753708,223,0 +170753753755,223,0 +170753753803,223,0 +170753753853,222,0 +170753753902,216,0 +170753753952,215,0 +170753754000,216,0 +170753754049,217,0 +170753754097,217,0 +170753754146,218,0 +170753754194,219,0 +170753754242,219,0 +170753754290,220,0 +170753754338,219,0 +170753754386,221,0 +170753754435,221,0 +170753754483,222,0 +170753754531,222,0 +170753754579,223,0 +170753754629,223,0 +170753754677,223,0 +170753754725,223,0 +170753754774,223,0 +170753754824,216,0 +170753754873,214,0 +170753754923,215,0 +170753754971,216,0 +170753755019,217,0 +170753755067,217,0 +170753755114,218,0 +170753755162,219,0 +170753755210,219,0 +170753755260,220,0 +170753755309,221,0 +170753755359,221,0 +170753755407,225,0 +170753755456,223,0 +170753755506,224,0 +170753755554,224,0 +170753755602,223,0 +170753755650,223,0 +170753755699,222,0 +170753755749,216,0 +170753755797,215,0 +170753755845,215,0 +170753755893,216,0 +170753755941,217,0 +170753755990,217,0 +170753756038,218,0 +170753756086,219,0 +170753756136,219,0 +170753756184,220,0 +170753756232,220,0 +170753756281,221,0 +170753756331,223,0 +170753756379,222,0 +170753756428,223,0 +170753756476,223,0 +170753756524,225,0 +170753756572,224,0 +170753756620,223,0 +170753756668,217,0 +170753756716,215,0 +170753756764,216,0 +170753756812,216,0 +170753756859,217,0 +170753756907,217,0 +170753756955,218,0 +170753757003,219,0 +170753757051,219,0 +170753757099,221,0 +170753757147,221,0 +170753757195,222,0 +170753757244,222,0 +170753757292,222,0 +170753757342,222,0 +170753757390,224,0 +170753757437,223,0 +170753757485,223,0 +170753757533,223,0 +170753757581,219,0 +170753757630,215,0 +170753757678,215,0 +170753757726,216,0 +170753757774,219,0 +170753757822,217,0 +170753757870,218,0 +170753757918,219,0 +170753757967,219,0 +170753758015,220,0 +170753758065,222,0 +170753758113,221,0 +170753758160,222,0 +170753758208,224,0 +170753758256,223,0 +170753758306,225,0 +170753758353,226,0 +170753758401,225,0 +170753758451,224,0 +170753758499,223,0 +170753758547,216,0 +170753758596,215,0 +170753758644,217,0 +170753758692,216,0 +170753758741,217,0 +170753758789,217,0 +170753758839,218,0 +170753758887,219,0 +170753758936,219,0 +170753758984,217,0 +170753759032,222,0 +170753759080,223,0 +170753759128,222,0 +170753759175,222,0 +170753759225,223,0 +170753759273,224,0 +170753759321,222,0 +170753759370,222,0 +170753759418,222,0 +170753759466,216,0 +170753759514,215,0 +170753759562,216,0 +170753759611,217,0 +170753759661,218,0 +170753759710,219,0 +170753759758,220,0 +170753759806,220,0 +170753759854,221,0 +170753759902,221,0 +170753759951,222,0 +170753760001,223,0 diff --git a/laser_value/0210-14.csv b/laser_value/0210-14.csv new file mode 100644 index 0000000..cc808d6 --- /dev/null +++ b/laser_value/0210-14.csv @@ -0,0 +1,7418 @@ +timestamp,laser_value,event +170753760050,222,0 +170753760098,223,0 +170753760147,224,0 +170753760195,223,0 +170753760243,223,0 +170753760291,223,0 +170753760339,222,0 +170753760388,216,0 +170753760436,214,0 +170753760485,214,0 +170753760535,216,0 +170753760584,217,0 +170753760632,218,0 +170753760680,218,0 +170753760730,219,0 +170753760778,220,0 +170753760825,220,0 +170753760873,222,0 +170753760921,222,0 +170753760969,222,0 +170753761017,223,0 +170753761065,223,0 +170753761113,223,0 +170753761161,223,0 +170753761209,222,0 +170753761258,223,0 +170753761307,216,0 +170753761357,214,0 +170753761406,214,0 +170753761456,215,0 +170753761504,214,0 +170753761553,215,0 +170753761603,215,0 +170753761652,216,0 +170753761700,217,0 +170753761748,217,0 +170753761796,219,0 +170753761844,220,0 +170753761892,220,0 +170753761940,220,0 +170753761987,222,0 +170753762037,222,0 +170753762085,221,0 +170753762132,222,0 +170753762180,223,0 +170753762228,216,0 +170753762278,215,0 +170753762325,214,0 +170753762373,215,0 +170753762423,214,0 +170753762471,215,0 +170753762519,215,0 +170753762568,215,0 +170753762616,216,0 +170753762664,217,0 +170753762713,221,0 +170753762761,221,0 +170753762809,220,0 +170753762857,221,0 +170753762906,222,0 +170753762956,222,0 +170753763004,222,0 +170753763052,223,0 +170753763101,223,0 +170753763149,216,0 +170753763197,215,0 +170753763246,215,0 +170753763294,215,0 +170753763344,216,0 +170753763391,216,0 +170753763439,216,0 +170753763487,217,0 +170753763535,218,0 +170753763583,219,0 +170753763631,219,0 +170753763679,220,0 +170753763727,221,0 +170753763775,221,0 +170753763823,223,0 +170753763871,222,0 +170753763918,222,0 +170753763968,223,0 +170753764016,223,0 +170753764064,223,0 +170753764112,215,0 +170753764159,215,0 +170753764209,215,0 +170753764258,215,0 +170753764306,215,0 +170753764354,216,0 +170753764402,217,0 +170753764450,217,0 +170753764498,218,0 +170753764547,219,0 +170753764595,219,0 +170753764645,221,0 +170753764692,220,0 +170753764740,220,0 +170753764788,222,0 +170753764836,223,0 +170753764885,222,0 +170753764935,223,0 +170753764983,223,0 +170753765031,216,0 +170753765080,216,0 +170753765128,216,0 +170753765176,216,0 +170753765226,218,0 +170753765274,217,0 +170753765322,218,0 +170753765370,219,0 +170753765419,219,0 +170753765467,219,0 +170753765517,221,0 +170753765565,221,0 +170753765614,222,0 +170753765664,222,0 +170753765713,223,0 +170753765763,222,0 +170753765811,224,0 +170753765860,222,0 +170753765910,222,0 +170753765959,216,0 +170753766009,215,0 +170753766059,216,0 +170753766109,216,0 +170753766158,218,0 +170753766208,217,0 +170753766256,219,0 +170753766304,219,0 +170753766353,219,0 +170753766401,221,0 +170753766449,223,0 +170753766497,223,0 +170753766545,223,0 +170753766594,224,0 +170753766642,223,0 +170753766690,224,0 +170753766740,224,0 +170753766788,224,0 +170753766837,223,0 +170753766887,215,0 +170753766935,214,0 +170753766984,215,0 +170753767032,216,0 +170753767080,216,0 +170753767129,217,0 +170753767179,218,0 +170753767227,218,0 +170753767275,218,0 +170753767322,219,0 +170753767372,220,0 +170753767420,221,0 +170753767470,221,0 +170753767517,222,0 +170753767567,222,0 +170753767615,223,0 +170753767663,223,0 +170753767712,223,0 +170753767760,223,0 +170753767809,216,0 +170753767857,215,0 +170753767907,215,0 +170753767955,214,0 +170753768003,215,0 +170753768050,216,0 +170753768098,217,0 +170753768148,218,0 +170753768196,219,0 +170753768245,219,0 +170753768293,220,0 +170753768341,220,0 +170753768389,221,0 +170753768437,221,0 +170753768484,222,0 +170753768532,223,0 +170753768580,224,0 +170753768630,222,0 +170753768677,223,0 +170753768725,216,0 +170753768773,214,0 +170753768821,215,0 +170753768869,215,0 +170753768917,216,0 +170753768965,217,0 +170753769013,216,0 +170753769061,217,0 +170753769110,220,0 +170753769160,220,0 +170753769208,220,0 +170753769257,221,0 +170753769307,222,0 +170753769356,223,0 +170753769404,224,0 +170753769452,224,0 +170753769502,222,0 +170753769550,224,0 +170753769597,224,0 +170753769645,216,0 +170753769695,214,0 +170753769744,215,0 +170753769794,215,0 +170753769844,216,0 +170753769892,216,0 +170753769940,218,0 +170753769989,218,0 +170753770039,218,0 +170753770087,220,0 +170753770134,220,0 +170753770184,221,0 +170753770232,222,0 +170753770280,223,0 +170753770328,223,0 +170753770377,224,0 +170753770425,223,0 +170753770473,224,0 +170753770522,222,0 +170753770570,216,0 +170753770620,215,0 +170753770668,216,0 +170753770716,217,0 +170753770765,218,0 +170753770815,218,0 +170753770864,219,0 +170753770914,220,0 +170753770962,221,0 +170753771011,221,0 +170753771061,222,0 +170753771109,221,0 +170753771157,223,0 +170753771205,224,0 +170753771253,223,0 +170753771301,223,0 +170753771350,224,0 +170753771400,223,0 +170753771449,222,0 +170753771499,216,0 +170753771549,215,0 +170753771596,215,0 +170753771644,216,0 +170753771692,218,0 +170753771742,219,0 +170753771790,219,0 +170753771839,220,0 +170753771889,221,0 +170753771937,221,0 +170753771986,222,0 +170753772036,223,0 +170753772084,223,0 +170753772132,222,0 +170753772180,223,0 +170753772229,223,0 +170753772279,223,0 +170753772328,223,0 +170753772378,223,0 +170753772428,216,0 +170753772476,215,0 +170753772523,215,0 +170753772571,215,0 +170753772621,216,0 +170753772669,217,0 +170753772717,217,0 +170753772765,219,0 +170753772813,219,0 +170753772861,221,0 +170753772909,221,0 +170753772957,223,0 +170753773006,222,0 +170753773054,223,0 +170753773102,222,0 +170753773152,223,0 +170753773200,224,0 +170753773249,222,0 +170753773299,223,0 +170753773347,216,0 +170753773394,215,0 +170753773442,214,0 +170753773490,214,0 +170753773538,215,0 +170753773586,215,0 +170753773634,215,0 +170753773682,216,0 +170753773730,216,0 +170753773778,217,0 +170753773826,219,0 +170753773875,220,0 +170753773925,220,0 +170753773973,220,0 +170753774021,221,0 +170753774069,222,0 +170753774118,222,0 +170753774166,223,0 +170753774216,223,0 +170753774265,221,0 +170753774315,215,0 +170753774364,214,0 +170753774412,215,0 +170753774462,215,0 +170753774511,215,0 +170753774561,216,0 +170753774611,216,0 +170753774660,217,0 +170753774710,218,0 +170753774758,219,0 +170753774806,220,0 +170753774853,221,0 +170753774901,222,0 +170753774951,223,0 +170753774999,223,0 +170753775047,223,0 +170753775095,223,0 +170753775144,223,0 +170753775194,224,0 +170753775242,215,0 +170753775291,215,0 +170753775341,215,0 +170753775389,215,0 +170753775438,216,0 +170753775486,218,0 +170753775534,218,0 +170753775582,219,0 +170753775630,220,0 +170753775678,220,0 +170753775726,221,0 +170753775776,222,0 +170753775825,223,0 +170753775873,224,0 +170753775921,222,0 +170753775969,223,0 +170753776017,223,0 +170753776067,223,0 +170753776115,222,0 +170753776164,215,0 +170753776214,215,0 +170753776263,215,0 +170753776311,215,0 +170753776361,215,0 +170753776409,215,0 +170753776457,216,0 +170753776506,217,0 +170753776554,218,0 +170753776604,218,0 +170753776653,218,0 +170753776701,219,0 +170753776751,219,0 +170753776800,219,0 +170753776849,221,0 +170753776897,221,0 +170753776945,222,0 +170753776993,222,0 +170753777041,223,0 +170753777089,223,0 +170753777137,224,0 +170753777185,224,0 +170753777234,224,0 +170753777282,225,0 +170753777330,224,0 +170753777378,225,0 +170753777426,223,0 +170753777474,223,0 +170753777522,216,0 +170753777569,215,0 +170753777617,216,0 +170753777665,216,0 +170753777713,217,0 +170753777763,218,0 +170753777811,218,0 +170753777858,219,0 +170753777906,219,0 +170753777954,220,0 +170753778002,220,0 +170753778052,221,0 +170753778099,222,0 +170753778149,223,0 +170753778198,222,0 +170753778246,224,0 +170753778296,224,0 +170753778345,223,0 +170753778393,224,0 +170753778443,218,0 +170753778491,215,0 +170753778539,214,0 +170753778587,214,0 +170753778635,216,0 +170753778683,216,0 +170753778731,217,0 +170753778779,218,0 +170753778828,219,0 +170753778876,219,0 +170753778924,221,0 +170753778972,220,0 +170753779020,222,0 +170753779070,223,0 +170753779117,225,0 +170753779165,223,0 +170753779213,227,0 +170753779261,223,0 +170753779311,223,0 +170753779360,223,0 +170753779410,215,0 +170753779459,215,0 +170753779509,216,0 +170753779557,216,0 +170753779605,217,0 +170753779653,217,0 +170753779700,218,0 +170753779750,219,0 +170753779798,220,0 +170753779846,221,0 +170753779894,222,0 +170753779942,223,0 +170753779990,222,0 +170753780037,223,0 +170753780087,223,0 +170753780136,223,0 +170753780184,223,0 +170753780232,224,0 +170753780280,223,0 +170753780328,215,0 +170753780377,215,0 +170753780425,216,0 +170753780475,216,0 +170753780523,217,0 +170753780571,217,0 +170753780619,217,0 +170753780667,220,0 +170753780716,221,0 +170753780764,220,0 +170753780812,220,0 +170753780860,222,0 +170753780910,222,0 +170753780957,224,0 +170753781005,223,0 +170753781053,224,0 +170753781103,223,0 +170753781151,222,0 +170753781200,221,0 +170753781248,217,0 +170753781297,218,0 +170753781345,218,0 +170753781393,218,0 +170753781441,219,0 +170753781489,220,0 +170753781537,220,0 +170753781586,222,0 +170753781634,221,0 +170753781682,222,0 +170753781730,222,0 +170753781778,223,0 +170753781826,223,0 +170753781874,223,0 +170753781922,225,0 +170753781971,223,0 +170753782020,223,0 +170753782068,223,0 +170753782116,222,0 +170753782166,217,0 +170753782214,216,0 +170753782262,217,0 +170753782309,217,0 +170753782357,218,0 +170753782407,219,0 +170753782455,219,0 +170753782504,220,0 +170753782554,220,0 +170753782602,220,0 +170753782650,221,0 +170753782698,221,0 +170753782747,222,0 +170753782797,222,0 +170753782846,222,0 +170753782896,227,0 +170753782944,223,0 +170753782993,223,0 +170753783041,222,0 +170753783089,216,0 +170753783139,215,0 +170753783188,217,0 +170753783236,217,0 +170753783284,218,0 +170753783334,219,0 +170753783381,219,0 +170753783431,220,0 +170753783481,220,0 +170753783530,222,0 +170753783580,221,0 +170753783629,222,0 +170753783677,223,0 +170753783725,223,0 +170753783773,222,0 +170753783821,225,0 +170753783869,223,0 +170753783918,223,0 +170753783968,223,0 +170753784016,216,0 +170753784064,215,0 +170753784112,216,0 +170753784160,216,0 +170753784208,217,0 +170753784256,218,0 +170753784304,218,0 +170753784351,221,0 +170753784401,220,0 +170753784449,221,0 +170753784497,221,0 +170753784545,221,0 +170753784594,223,0 +170753784644,223,0 +170753784692,222,0 +170753784740,223,0 +170753784789,223,0 +170753784839,223,0 +170753784888,222,0 +170753784936,217,0 +170753784984,215,0 +170753785034,216,0 +170753785082,217,0 +170753785130,217,0 +170753785179,218,0 +170753785227,218,0 +170753785277,219,0 +170753785325,219,0 +170753785373,220,0 +170753785422,222,0 +170753785470,221,0 +170753785520,222,0 +170753785569,222,0 +170753785617,222,0 +170753785667,224,0 +170753785715,223,0 +170753785763,223,0 +170753785812,223,0 +170753785860,216,0 +170753785910,214,0 +170753785959,215,0 +170753786009,215,0 +170753786057,215,0 +170753786106,216,0 +170753786154,217,0 +170753786202,219,0 +170753786252,219,0 +170753786300,219,0 +170753786348,220,0 +170753786395,222,0 +170753786443,224,0 +170753786491,222,0 +170753786539,223,0 +170753786589,222,0 +170753786639,223,0 +170753786688,223,0 +170753786738,222,0 +170753786786,215,0 +170753786835,214,0 +170753786885,215,0 +170753786934,215,0 +170753786984,216,0 +170753787032,216,0 +170753787081,217,0 +170753787131,218,0 +170753787180,219,0 +170753787228,221,0 +170753787276,221,0 +170753787326,221,0 +170753787374,221,0 +170753787421,222,0 +170753787469,222,0 +170753787519,222,0 +170753787567,224,0 +170753787615,224,0 +170753787664,222,0 +170753787712,217,0 +170753787762,214,0 +170753787810,215,0 +170753787859,215,0 +170753787907,215,0 +170753787957,215,0 +170753788006,217,0 +170753788054,217,0 +170753788102,218,0 +170753788150,219,0 +170753788198,221,0 +170753788246,221,0 +170753788296,222,0 +170753788345,223,0 +170753788395,223,0 +170753788444,224,0 +170753788492,223,0 +170753788542,224,0 +170753788590,223,0 +170753788638,216,0 +170753788686,214,0 +170753788735,215,0 +170753788785,214,0 +170753788833,216,0 +170753788881,216,0 +170753788929,217,0 +170753788977,217,0 +170753789026,218,0 +170753789074,218,0 +170753789122,219,0 +170753789170,220,0 +170753789219,222,0 +170753789269,222,0 +170753789317,223,0 +170753789365,223,0 +170753789413,223,0 +170753789461,224,0 +170753789510,223,0 +170753789560,216,0 +170753789609,214,0 +170753789657,214,0 +170753789705,215,0 +170753789753,214,0 +170753789801,215,0 +170753789849,216,0 +170753789897,216,0 +170753789945,218,0 +170753789993,218,0 +170753790042,219,0 +170753790092,221,0 +170753790139,221,0 +170753790189,222,0 +170753790237,221,0 +170753790285,222,0 +170753790333,223,0 +170753790380,223,0 +170753790428,223,0 +170753790478,222,0 +170753790526,215,0 +170753790574,215,0 +170753790622,215,0 +170753790670,215,0 +170753790718,215,0 +170753790766,215,0 +170753790815,215,0 +170753790865,216,0 +170753790914,217,0 +170753790962,219,0 +170753791012,219,0 +170753791060,221,0 +170753791108,223,0 +170753791157,222,0 +170753791205,222,0 +170753791253,222,0 +170753791301,222,0 +170753791349,223,0 +170753791397,223,0 +170753791445,216,0 +170753791494,215,0 +170753791544,215,0 +170753791592,215,0 +170753791640,216,0 +170753791688,218,0 +170753791737,217,0 +170753791785,218,0 +170753791835,219,0 +170753791883,219,0 +170753791932,221,0 +170753791982,221,0 +170753792031,222,0 +170753792081,223,0 +170753792129,222,0 +170753792177,223,0 +170753792225,223,0 +170753792273,223,0 +170753792321,222,0 +170753792369,215,0 +170753792417,215,0 +170753792466,216,0 +170753792514,217,0 +170753792562,217,0 +170753792610,219,0 +170753792658,219,0 +170753792706,219,0 +170753792754,221,0 +170753792802,221,0 +170753792852,222,0 +170753792901,223,0 +170753792951,222,0 +170753793000,223,0 +170753793048,223,0 +170753793096,223,0 +170753793144,223,0 +170753793192,223,0 +170753793240,222,0 +170753793288,215,0 +170753793336,215,0 +170753793384,216,0 +170753793434,217,0 +170753793482,217,0 +170753793530,218,0 +170753793579,218,0 +170753793627,219,0 +170753793677,221,0 +170753793726,222,0 +170753793774,222,0 +170753793824,223,0 +170753793872,222,0 +170753793920,223,0 +170753793967,223,0 +170753794017,223,0 +170753794065,223,0 +170753794113,224,0 +170753794161,222,0 +170753794209,216,0 +170753794258,214,0 +170753794306,214,0 +170753794354,215,0 +170753794402,215,0 +170753794452,216,0 +170753794500,217,0 +170753794549,218,0 +170753794599,218,0 +170753794647,220,0 +170753794696,220,0 +170753794746,221,0 +170753794795,222,0 +170753794843,223,0 +170753794891,223,0 +170753794941,222,0 +170753794990,223,0 +170753795038,224,0 +170753795086,223,0 +170753795134,216,0 +170753795182,215,0 +170753795232,215,0 +170753795280,215,0 +170753795327,216,0 +170753795377,216,0 +170753795425,217,0 +170753795473,218,0 +170753795522,218,0 +170753795572,220,0 +170753795621,220,0 +170753795669,221,0 +170753795719,221,0 +170753795768,222,0 +170753795818,222,0 +170753795866,223,0 +170753795915,223,0 +170753795963,223,0 +170753796013,224,0 +170753796061,216,0 +170753796109,215,0 +170753796157,214,0 +170753796206,215,0 +170753796256,216,0 +170753796305,217,0 +170753796355,217,0 +170753796405,218,0 +170753796454,219,0 +170753796504,219,0 +170753796553,220,0 +170753796603,221,0 +170753796652,222,0 +170753796700,222,0 +170753796748,219,0 +170753796796,223,0 +170753796846,223,0 +170753796895,224,0 +170753796945,223,0 +170753796993,216,0 +170753797040,215,0 +170753797088,215,0 +170753797136,216,0 +170753797184,217,0 +170753797232,217,0 +170753797280,218,0 +170753797328,219,0 +170753797378,220,0 +170753797426,220,0 +170753797475,221,0 +170753797525,221,0 +170753797573,221,0 +170753797621,222,0 +170753797669,224,0 +170753797718,223,0 +170753797766,223,0 +170753797816,223,0 +170753797863,223,0 +170753797913,216,0 +170753797962,215,0 +170753798012,216,0 +170753798062,217,0 +170753798109,218,0 +170753798157,218,0 +170753798205,218,0 +170753798253,219,0 +170753798301,220,0 +170753798351,220,0 +170753798399,221,0 +170753798447,222,0 +170753798496,223,0 +170753798546,224,0 +170753798595,224,0 +170753798643,223,0 +170753798691,224,0 +170753798739,223,0 +170753798787,224,0 +170753798837,216,0 +170753798885,216,0 +170753798934,216,0 +170753798984,218,0 +170753799031,216,0 +170753799081,219,0 +170753799131,220,0 +170753799179,220,0 +170753799227,221,0 +170753799274,222,0 +170753799322,222,0 +170753799370,223,0 +170753799418,224,0 +170753799466,223,0 +170753799514,223,0 +170753799562,225,0 +170753799612,225,0 +170753799661,225,0 +170753799711,224,0 +170753799759,216,0 +170753799808,215,0 +170753799856,217,0 +170753799904,217,0 +170753799952,219,0 +170753800002,219,0 +170753800050,219,0 +170753800099,219,0 +170753800149,220,0 +170753800197,220,0 +170753800246,221,0 +170753800294,222,0 +170753800342,222,0 +170753800392,223,0 +170753800440,225,0 +170753800489,222,0 +170753800537,224,0 +170753800587,223,0 +170753800635,223,0 +170753800684,216,0 +170753800732,216,0 +170753800780,216,0 +170753800828,217,0 +170753800876,217,0 +170753800924,217,0 +170753800973,219,0 +170753801023,219,0 +170753801073,220,0 +170753801120,221,0 +170753801170,222,0 +170753801218,221,0 +170753801266,222,0 +170753801314,223,0 +170753801363,223,0 +170753801411,223,0 +170753801461,223,0 +170753801509,223,0 +170753801558,222,0 +170753801608,216,0 +170753801658,216,0 +170753801705,218,0 +170753801755,218,0 +170753801803,219,0 +170753801853,220,0 +170753801900,220,0 +170753801948,221,0 +170753801996,222,0 +170753802046,222,0 +170753802095,223,0 +170753802143,222,0 +170753802191,224,0 +170753802239,220,0 +170753802289,224,0 +170753802338,223,0 +170753802386,223,0 +170753802436,224,0 +170753802485,222,0 +170753802533,217,0 +170753802581,216,0 +170753802631,218,0 +170753802680,218,0 +170753802730,219,0 +170753802778,219,0 +170753802826,220,0 +170753802874,220,0 +170753802922,221,0 +170753802970,223,0 +170753803019,222,0 +170753803069,223,0 +170753803117,222,0 +170753803165,223,0 +170753803212,223,0 +170753803262,223,0 +170753803312,223,0 +170753803361,224,0 +170753803411,222,0 +170753803460,215,0 +170753803508,215,0 +170753803556,216,0 +170753803604,217,0 +170753803652,218,0 +170753803702,218,0 +170753803751,219,0 +170753803799,221,0 +170753803849,220,0 +170753803898,221,0 +170753803946,223,0 +170753803994,223,0 +170753804042,224,0 +170753804090,223,0 +170753804140,224,0 +170753804189,223,0 +170753804237,223,0 +170753804285,223,0 +170753804333,223,0 +170753804381,221,0 +170753804431,215,0 +170753804479,215,0 +170753804528,216,0 +170753804578,216,0 +170753804627,216,0 +170753804676,217,0 +170753804724,217,0 +170753804772,219,0 +170753804820,219,0 +170753804868,220,0 +170753804916,220,0 +170753804966,222,0 +170753805014,221,0 +170753805062,223,0 +170753805111,224,0 +170753805159,222,0 +170753805207,223,0 +170753805257,223,0 +170753805306,216,0 +170753805356,215,0 +170753805405,215,0 +170753805455,216,0 +170753805504,217,0 +170753805554,217,0 +170753805603,218,0 +170753805651,221,0 +170753805701,220,0 +170753805751,220,0 +170753805800,222,0 +170753805848,223,0 +170753805898,223,0 +170753805947,223,0 +170753805997,226,0 +170753806046,223,0 +170753806094,224,0 +170753806144,224,0 +170753806193,223,0 +170753806241,216,0 +170753806291,215,0 +170753806340,214,0 +170753806390,215,0 +170753806439,215,0 +170753806489,217,0 +170753806538,217,0 +170753806588,219,0 +170753806636,219,0 +170753806685,220,0 +170753806735,221,0 +170753806783,223,0 +170753806832,223,0 +170753806882,224,0 +170753806930,223,0 +170753806979,223,0 +170753807027,224,0 +170753807077,224,0 +170753807126,224,0 +170753807176,216,0 +170753807224,214,0 +170753807273,214,0 +170753807321,214,0 +170753807369,216,0 +170753807417,216,0 +170753807465,216,0 +170753807513,218,0 +170753807561,219,0 +170753807611,219,0 +170753807660,220,0 +170753807708,221,0 +170753807756,222,0 +170753807805,221,0 +170753807853,223,0 +170753807901,222,0 +170753807951,224,0 +170753808000,223,0 +170753808048,223,0 +170753808096,216,0 +170753808144,214,0 +170753808194,215,0 +170753808243,215,0 +170753808291,216,0 +170753808341,216,0 +170753808390,217,0 +170753808438,217,0 +170753808486,218,0 +170753808536,219,0 +170753808584,220,0 +170753808633,220,0 +170753808681,221,0 +170753808729,222,0 +170753808777,222,0 +170753808827,222,0 +170753808876,223,0 +170753808924,222,0 +170753808972,222,0 +170753809022,216,0 +170753809070,214,0 +170753809117,215,0 +170753809167,216,0 +170753809215,215,0 +170753809263,216,0 +170753809311,217,0 +170753809360,217,0 +170753809408,219,0 +170753809456,219,0 +170753809506,220,0 +170753809555,219,0 +170753809605,221,0 +170753809653,221,0 +170753809701,223,0 +170753809750,223,0 +170753809800,223,0 +170753809848,223,0 +170753809896,222,0 +170753809944,216,0 +170753809992,214,0 +170753810040,215,0 +170753810088,216,0 +170753810137,216,0 +170753810187,218,0 +170753810235,217,0 +170753810284,219,0 +170753810334,219,0 +170753810382,220,0 +170753810430,220,0 +170753810478,221,0 +170753810526,223,0 +170753810575,223,0 +170753810625,224,0 +170753810674,223,0 +170753810724,224,0 +170753810772,223,0 +170753810820,226,0 +170753810868,216,0 +170753810916,215,0 +170753810965,215,0 +170753811015,216,0 +170753811064,216,0 +170753811112,217,0 +170753811160,218,0 +170753811210,218,0 +170753811258,218,0 +170753811307,220,0 +170753811357,220,0 +170753811404,221,0 +170753811452,222,0 +170753811502,223,0 +170753811551,222,0 +170753811601,222,0 +170753811651,222,0 +170753811700,222,0 +170753811748,219,0 +170753811796,216,0 +170753811844,215,0 +170753811892,216,0 +170753811941,217,0 +170753811989,217,0 +170753812039,218,0 +170753812087,219,0 +170753812136,219,0 +170753812184,220,0 +170753812232,220,0 +170753812280,220,0 +170753812330,222,0 +170753812378,223,0 +170753812426,223,0 +170753812475,223,0 +170753812525,224,0 +170753812573,223,0 +170753812621,223,0 +170753812670,224,0 +170753812720,216,0 +170753812769,215,0 +170753812817,216,0 +170753812865,217,0 +170753812915,218,0 +170753812963,219,0 +170753813011,219,0 +170753813058,220,0 +170753813106,220,0 +170753813154,221,0 +170753813202,222,0 +170753813250,223,0 +170753813298,223,0 +170753813346,223,0 +170753813396,223,0 +170753813444,223,0 +170753813491,223,0 +170753813539,223,0 +170753813589,223,0 +170753813639,216,0 +170753813688,216,0 +170753813736,217,0 +170753813784,217,0 +170753813832,218,0 +170753813881,219,0 +170753813931,219,0 +170753813981,220,0 +170753814030,221,0 +170753814080,221,0 +170753814129,221,0 +170753814177,222,0 +170753814226,224,0 +170753814276,223,0 +170753814324,223,0 +170753814372,224,0 +170753814420,224,0 +170753814469,223,0 +170753814517,223,0 +170753814565,216,0 +170753814613,215,0 +170753814661,215,0 +170753814710,216,0 +170753814760,218,0 +170753814808,219,0 +170753814856,219,0 +170753814905,220,0 +170753814955,221,0 +170753815003,221,0 +170753815052,221,0 +170753815100,223,0 +170753815148,222,0 +170753815196,222,0 +170753815246,223,0 +170753815293,223,0 +170753815341,223,0 +170753815391,223,0 +170753815439,223,0 +170753815487,215,0 +170753815537,215,0 +170753815586,215,0 +170753815636,216,0 +170753815685,217,0 +170753815733,218,0 +170753815781,218,0 +170753815830,220,0 +170753815878,220,0 +170753815926,218,0 +170753815976,222,0 +170753816025,222,0 +170753816073,222,0 +170753816121,223,0 +170753816169,223,0 +170753816219,222,0 +170753816267,222,0 +170753816316,223,0 +170753816364,223,0 +170753816412,216,0 +170753816461,214,0 +170753816511,215,0 +170753816559,215,0 +170753816606,215,0 +170753816654,216,0 +170753816702,216,0 +170753816750,217,0 +170753816800,219,0 +170753816848,219,0 +170753816897,220,0 +170753816945,220,0 +170753816993,221,0 +170753817041,221,0 +170753817091,222,0 +170753817140,222,0 +170753817188,222,0 +170753817238,222,0 +170753817286,222,0 +170753817334,215,0 +170753817382,214,0 +170753817431,214,0 +170753817479,214,0 +170753817529,215,0 +170753817577,215,0 +170753817626,215,0 +170753817676,215,0 +170753817724,216,0 +170753817773,217,0 +170753817823,218,0 +170753817872,219,0 +170753817922,219,0 +170753817970,222,0 +170753818018,222,0 +170753818066,221,0 +170753818115,223,0 +170753818165,222,0 +170753818214,223,0 +170753818264,216,0 +170753818312,215,0 +170753818361,214,0 +170753818409,215,0 +170753818457,215,0 +170753818505,216,0 +170753818553,216,0 +170753818601,218,0 +170753818649,218,0 +170753818696,218,0 +170753818746,219,0 +170753818794,221,0 +170753818842,222,0 +170753818890,222,0 +170753818938,222,0 +170753818987,222,0 +170753819035,223,0 +170753819084,223,0 +170753819132,223,0 +170753819180,221,0 +170753819229,214,0 +170753819277,215,0 +170753819325,215,0 +170753819373,215,0 +170753819423,216,0 +170753819472,216,0 +170753819520,217,0 +170753819568,218,0 +170753819616,218,0 +170753819665,218,0 +170753819713,220,0 +170753819761,221,0 +170753819809,222,0 +170753819858,222,0 +170753819906,221,0 +170753819954,218,0 +170753820002,223,0 +170753820051,223,0 +170753820101,222,0 +170753820150,215,0 +170753820198,215,0 +170753820246,215,0 +170753820294,215,0 +170753820343,216,0 +170753820391,216,0 +170753820439,216,0 +170753820487,217,0 +170753820536,217,0 +170753820584,218,0 +170753820632,219,0 +170753820682,220,0 +170753820730,221,0 +170753820778,222,0 +170753820827,221,0 +170753820875,221,0 +170753820923,222,0 +170753820971,223,0 +170753821019,223,0 +170753821067,215,0 +170753821116,215,0 +170753821164,215,0 +170753821212,215,0 +170753821260,215,0 +170753821308,216,0 +170753821357,216,0 +170753821405,217,0 +170753821455,218,0 +170753821504,219,0 +170753821552,221,0 +170753821600,221,0 +170753821650,222,0 +170753821697,221,0 +170753821745,222,0 +170753821793,222,0 +170753821841,222,0 +170753821890,223,0 +170753821938,222,0 +170753821986,215,0 +170753822034,215,0 +170753822082,215,0 +170753822130,216,0 +170753822178,217,0 +170753822226,217,0 +170753822274,217,0 +170753822321,218,0 +170753822369,219,0 +170753822417,219,0 +170753822465,219,0 +170753822513,221,0 +170753822563,221,0 +170753822610,221,0 +170753822658,223,0 +170753822706,224,0 +170753822754,224,0 +170753822802,223,0 +170753822851,222,0 +170753822899,216,0 +170753822949,215,0 +170753822997,216,0 +170753823046,216,0 +170753823096,218,0 +170753823145,219,0 +170753823195,219,0 +170753823243,220,0 +170753823291,221,0 +170753823340,222,0 +170753823390,222,0 +170753823439,222,0 +170753823487,224,0 +170753823535,223,0 +170753823585,223,0 +170753823633,224,0 +170753823681,223,0 +170753823730,223,0 +170753823778,222,0 +170753823826,216,0 +170753823874,216,0 +170753823922,215,0 +170753823971,216,0 +170753824021,217,0 +170753824070,217,0 +170753824120,219,0 +170753824169,219,0 +170753824217,220,0 +170753824265,221,0 +170753824315,223,0 +170753824364,222,0 +170753824414,224,0 +170753824462,222,0 +170753824510,223,0 +170753824558,222,0 +170753824606,221,0 +170753824654,222,0 +170753824702,222,0 +170753824750,215,0 +170753824798,214,0 +170753824847,215,0 +170753824895,216,0 +170753824943,216,0 +170753824991,217,0 +170753825040,218,0 +170753825090,218,0 +170753825138,219,0 +170753825186,220,0 +170753825234,221,0 +170753825283,216,0 +170753825331,222,0 +170753825379,221,0 +170753825427,222,0 +170753825477,223,0 +170753825525,222,0 +170753825573,223,0 +170753825621,222,0 +170753825669,216,0 +170753825718,214,0 +170753825766,215,0 +170753825816,215,0 +170753825865,216,0 +170753825913,217,0 +170753825961,218,0 +170753826011,218,0 +170753826060,219,0 +170753826110,219,0 +170753826158,222,0 +170753826207,222,0 +170753826255,222,0 +170753826305,222,0 +170753826353,222,0 +170753826402,222,0 +170753826450,222,0 +170753826500,222,0 +170753826549,223,0 +170753826599,216,0 +170753826648,215,0 +170753826696,215,0 +170753826746,216,0 +170753826795,217,0 +170753826845,217,0 +170753826894,218,0 +170753826942,218,0 +170753826990,218,0 +170753827038,220,0 +170753827086,220,0 +170753827134,221,0 +170753827182,220,0 +170753827230,222,0 +170753827277,222,0 +170753827325,223,0 +170753827373,222,0 +170753827421,224,0 +170753827469,223,0 +170753827517,217,0 +170753827565,216,0 +170753827614,217,0 +170753827662,218,0 +170753827712,217,0 +170753827760,218,0 +170753827808,219,0 +170753827856,220,0 +170753827903,220,0 +170753827951,220,0 +170753828001,222,0 +170753828051,222,0 +170753828100,224,0 +170753828148,223,0 +170753828196,224,0 +170753828244,223,0 +170753828294,223,0 +170753828343,223,0 +170753828393,223,0 +170753828441,216,0 +170753828490,217,0 +170753828538,217,0 +170753828586,218,0 +170753828634,219,0 +170753828682,219,0 +170753828730,221,0 +170753828779,221,0 +170753828827,221,0 +170753828877,222,0 +170753828925,223,0 +170753828973,222,0 +170753829022,224,0 +170753829071,223,0 +170753829121,223,0 +170753829169,223,0 +170753829217,224,0 +170753829266,223,0 +170753829316,223,0 +170753829364,217,0 +170753829413,217,0 +170753829461,218,0 +170753829509,218,0 +170753829557,219,0 +170753829607,219,0 +170753829656,220,0 +170753829704,221,0 +170753829752,220,0 +170753829800,221,0 +170753829848,223,0 +170753829896,222,0 +170753829944,222,0 +170753829992,222,0 +170753830040,223,0 +170753830088,223,0 +170753830136,223,0 +170753830184,222,0 +170753830232,223,0 +170753830279,216,0 +170753830327,215,0 +170753830375,217,0 +170753830423,217,0 +170753830471,218,0 +170753830520,218,0 +170753830568,219,0 +170753830616,221,0 +170753830664,221,0 +170753830713,222,0 +170753830763,222,0 +170753830811,223,0 +170753830859,225,0 +170753830907,223,0 +170753830955,224,0 +170753831004,223,0 +170753831052,223,0 +170753831102,223,0 +170753831150,222,0 +170753831199,215,0 +170753831247,215,0 +170753831297,216,0 +170753831345,216,0 +170753831393,216,0 +170753831441,218,0 +170753831488,218,0 +170753831538,220,0 +170753831586,220,0 +170753831634,220,0 +170753831682,221,0 +170753831731,220,0 +170753831779,221,0 +170753831827,222,0 +170753831877,222,0 +170753831926,223,0 +170753831976,222,0 +170753832024,223,0 +170753832072,222,0 +170753832121,216,0 +170753832171,215,0 +170753832219,215,0 +170753832267,214,0 +170753832315,217,0 +170753832363,217,0 +170753832411,218,0 +170753832459,219,0 +170753832507,220,0 +170753832556,220,0 +170753832604,221,0 +170753832652,221,0 +170753832700,222,0 +170753832748,221,0 +170753832796,222,0 +170753832844,223,0 +170753832893,221,0 +170753832941,219,0 +170753832991,223,0 +170753833039,222,0 +170753833087,214,0 +170753833135,215,0 +170753833184,216,0 +170753833232,216,0 +170753833280,217,0 +170753833330,218,0 +170753833378,218,0 +170753833427,219,0 +170753833477,219,0 +170753833525,221,0 +170753833573,222,0 +170753833621,221,0 +170753833670,222,0 +170753833720,223,0 +170753833769,222,0 +170753833817,222,0 +170753833865,222,0 +170753833915,223,0 +170753833964,221,0 +170753834012,215,0 +170753834062,214,0 +170753834112,215,0 +170753834161,216,0 +170753834209,217,0 +170753834259,217,0 +170753834306,218,0 +170753834354,219,0 +170753834402,218,0 +170753834452,221,0 +170753834501,221,0 +170753834551,223,0 +170753834599,223,0 +170753834649,223,0 +170753834697,223,0 +170753834746,220,0 +170753834796,221,0 +170753834845,222,0 +170753834895,216,0 +170753834944,214,0 +170753834992,215,0 +170753835042,216,0 +170753835090,217,0 +170753835138,218,0 +170753835186,218,0 +170753835233,218,0 +170753835281,219,0 +170753835331,220,0 +170753835381,221,0 +170753835429,221,0 +170753835478,221,0 +170753835526,221,0 +170753835574,222,0 +170753835623,222,0 +170753835673,223,0 +170753835721,223,0 +170753835769,223,0 +170753835818,217,0 +170753835866,214,0 +170753835916,215,0 +170753835964,215,0 +170753836012,216,0 +170753836060,217,0 +170753836109,218,0 +170753836157,219,0 +170753836207,220,0 +170753836256,220,0 +170753836306,220,0 +170753836355,222,0 +170753836405,223,0 +170753836453,222,0 +170753836502,223,0 +170753836552,223,0 +170753836600,222,0 +170753836649,223,0 +170753836697,223,0 +170753836747,215,0 +170753836795,214,0 +170753836843,215,0 +170753836892,215,0 +170753836942,216,0 +170753836990,217,0 +170753837037,217,0 +170753837087,217,0 +170753837137,218,0 +170753837185,218,0 +170753837233,219,0 +170753837282,221,0 +170753837332,222,0 +170753837381,222,0 +170753837431,223,0 +170753837480,223,0 +170753837528,223,0 +170753837576,222,0 +170753837626,223,0 +170753837674,216,0 +170753837722,214,0 +170753837769,215,0 +170753837817,215,0 +170753837865,215,0 +170753837913,216,0 +170753837961,217,0 +170753838009,217,0 +170753838057,217,0 +170753838107,219,0 +170753838156,219,0 +170753838204,220,0 +170753838252,220,0 +170753838300,222,0 +170753838348,223,0 +170753838397,222,0 +170753838447,223,0 +170753838495,222,0 +170753838543,222,0 +170753838591,215,0 +170753838640,214,0 +170753838688,215,0 +170753838736,215,0 +170753838786,217,0 +170753838835,216,0 +170753838885,217,0 +170753838933,218,0 +170753838982,219,0 +170753839030,219,0 +170753839078,220,0 +170753839126,221,0 +170753839174,221,0 +170753839224,222,0 +170753839272,223,0 +170753839320,222,0 +170753839369,223,0 +170753839419,222,0 +170753839467,222,0 +170753839515,219,0 +170753839563,214,0 +170753839611,214,0 +170753839658,215,0 +170753839706,216,0 +170753839754,216,0 +170753839802,218,0 +170753839850,217,0 +170753839900,218,0 +170753839949,219,0 +170753839999,220,0 +170753840048,221,0 +170753840096,221,0 +170753840146,222,0 +170753840195,222,0 +170753840243,222,0 +170753840291,225,0 +170753840341,223,0 +170753840390,221,0 +170753840440,216,0 +170753840488,214,0 +170753840536,214,0 +170753840584,215,0 +170753840633,215,0 +170753840681,216,0 +170753840729,217,0 +170753840777,218,0 +170753840827,219,0 +170753840875,220,0 +170753840923,219,0 +170753840971,221,0 +170753841019,222,0 +170753841067,222,0 +170753841116,223,0 +170753841164,222,0 +170753841212,223,0 +170753841262,223,0 +170753841311,223,0 +170753841359,216,0 +170753841408,214,0 +170753841456,215,0 +170753841506,216,0 +170753841554,216,0 +170753841602,217,0 +170753841651,217,0 +170753841701,217,0 +170753841749,219,0 +170753841797,219,0 +170753841846,221,0 +170753841894,221,0 +170753841942,222,0 +170753841990,222,0 +170753842038,222,0 +170753842086,225,0 +170753842136,223,0 +170753842185,223,0 +170753842233,223,0 +170753842281,216,0 +170753842331,215,0 +170753842379,215,0 +170753842427,216,0 +170753842475,217,0 +170753842523,217,0 +170753842572,218,0 +170753842622,218,0 +170753842670,219,0 +170753842719,220,0 +170753842769,224,0 +170753842817,221,0 +170753842865,221,0 +170753842913,222,0 +170753842961,221,0 +170753843009,223,0 +170753843057,223,0 +170753843106,223,0 +170753843156,223,0 +170753843204,222,0 +170753843253,215,0 +170753843303,216,0 +170753843352,216,0 +170753843402,217,0 +170753843451,218,0 +170753843499,218,0 +170753843549,218,0 +170753843598,219,0 +170753843648,221,0 +170753843696,220,0 +170753843744,222,0 +170753843792,222,0 +170753843840,222,0 +170753843888,224,0 +170753843937,223,0 +170753843987,223,0 +170753844036,223,0 +170753844086,222,0 +170753844135,216,0 +170753844183,215,0 +170753844231,217,0 +170753844279,216,0 +170753844327,218,0 +170753844377,220,0 +170753844425,220,0 +170753844474,220,0 +170753844524,222,0 +170753844573,221,0 +170753844621,222,0 +170753844671,222,0 +170753844719,223,0 +170753844767,222,0 +170753844816,224,0 +170753844866,221,0 +170753844913,222,0 +170753844961,223,0 +170753845009,223,0 +170753845059,216,0 +170753845107,216,0 +170753845155,217,0 +170753845203,218,0 +170753845251,219,0 +170753845299,219,0 +170753845347,219,0 +170753845396,221,0 +170753845444,221,0 +170753845494,222,0 +170753845543,222,0 +170753845593,222,0 +170753845641,223,0 +170753845691,223,0 +170753845738,223,0 +170753845786,223,0 +170753845834,224,0 +170753845884,223,0 +170753845933,222,0 +170753845981,215,0 +170753846029,215,0 +170753846077,215,0 +170753846127,216,0 +170753846175,217,0 +170753846224,218,0 +170753846274,218,0 +170753846322,220,0 +170753846370,220,0 +170753846418,221,0 +170753846466,221,0 +170753846515,221,0 +170753846565,222,0 +170753846614,223,0 +170753846664,222,0 +170753846712,222,0 +170753846761,223,0 +170753846809,223,0 +170753846859,222,0 +170753846908,216,0 +170753846958,214,0 +170753847007,214,0 +170753847055,215,0 +170753847103,215,0 +170753847152,216,0 +170753847202,217,0 +170753847250,216,0 +170753847297,218,0 +170753847345,219,0 +170753847393,220,0 +170753847441,220,0 +170753847489,221,0 +170753847537,222,0 +170753847585,223,0 +170753847634,224,0 +170753847682,223,0 +170753847730,223,0 +170753847778,223,0 +170753847827,216,0 +170753847875,215,0 +170753847923,215,0 +170753847971,215,0 +170753848019,216,0 +170753848067,216,0 +170753848115,217,0 +170753848162,217,0 +170753848210,218,0 +170753848258,219,0 +170753848306,220,0 +170753848354,222,0 +170753848402,221,0 +170753848450,223,0 +170753848497,223,0 +170753848545,223,0 +170753848593,223,0 +170753848641,223,0 +170753848689,223,0 +170753848737,216,0 +170753848785,214,0 +170753848834,215,0 +170753848884,215,0 +170753848933,216,0 +170753848983,216,0 +170753849031,216,0 +170753849079,217,0 +170753849126,218,0 +170753849174,219,0 +170753849222,220,0 +170753849270,221,0 +170753849318,222,0 +170753849368,224,0 +170753849417,222,0 +170753849465,224,0 +170753849513,222,0 +170753849562,220,0 +170753849612,223,0 +170753849662,221,0 +170753849711,214,0 +170753849761,215,0 +170753849809,215,0 +170753849858,215,0 +170753849908,215,0 +170753849956,215,0 +170753850004,216,0 +170753850053,217,0 +170753850101,217,0 +170753850149,219,0 +170753850197,219,0 +170753850246,220,0 +170753850294,222,0 +170753850342,221,0 +170753850390,222,0 +170753850439,222,0 +170753850489,223,0 +170753850537,223,0 +170753850586,215,0 +170753850634,214,0 +170753850684,214,0 +170753850731,215,0 +170753850779,215,0 +170753850829,215,0 +170753850877,215,0 +170753850925,213,0 +170753850972,214,0 +170753851020,214,0 +170753851068,218,0 +170753851118,219,0 +170753851166,219,0 +170753851214,220,0 +170753851261,222,0 +170753851311,222,0 +170753851360,221,0 +170753851408,223,0 +170753851456,223,0 +170753851504,216,0 +170753851552,214,0 +170753851600,214,0 +170753851649,214,0 +170753851699,215,0 +170753851748,216,0 +170753851796,217,0 +170753851844,217,0 +170753851892,217,0 +170753851941,219,0 +170753851991,219,0 +170753852039,220,0 +170753852088,221,0 +170753852136,221,0 +170753852184,222,0 +170753852232,223,0 +170753852280,222,0 +170753852327,223,0 +170753852375,223,0 +170753852423,222,0 +170753852471,214,0 +170753852521,215,0 +170753852568,215,0 +170753852616,216,0 +170753852664,217,0 +170753852712,217,0 +170753852760,218,0 +170753852809,219,0 +170753852857,219,0 +170753852905,220,0 +170753852953,222,0 +170753853001,222,0 +170753853049,223,0 +170753853097,222,0 +170753853146,223,0 +170753853194,223,0 +170753853242,223,0 +170753853290,222,0 +170753853338,222,0 +170753853387,214,0 +170753853437,215,0 +170753853486,216,0 +170753853534,216,0 +170753853582,217,0 +170753853630,217,0 +170753853679,218,0 +170753853727,220,0 +170753853775,220,0 +170753853825,220,0 +170753853872,222,0 +170753853920,222,0 +170753853968,222,0 +170753854018,223,0 +170753854067,224,0 +170753854115,223,0 +170753854163,223,0 +170753854213,223,0 +170753854260,222,0 +170753854308,214,0 +170753854356,215,0 +170753854404,215,0 +170753854454,216,0 +170753854501,217,0 +170753854549,218,0 +170753854599,217,0 +170753854647,218,0 +170753854696,219,0 +170753854744,220,0 +170753854793,221,0 +170753854843,221,0 +170753854892,222,0 +170753854940,222,0 +170753854988,224,0 +170753855036,223,0 +170753855084,223,0 +170753855132,223,0 +170753855180,222,0 +170753855229,215,0 +170753855277,216,0 +170753855326,217,0 +170753855376,217,0 +170753855424,218,0 +170753855472,218,0 +170753855521,219,0 +170753855569,220,0 +170753855617,222,0 +170753855666,221,0 +170753855716,221,0 +170753855765,223,0 +170753855813,223,0 +170753855861,222,0 +170753855910,223,0 +170753855958,223,0 +170753856006,223,0 +170753856054,223,0 +170753856102,222,0 +170753856150,217,0 +170753856198,217,0 +170753856246,218,0 +170753856294,218,0 +170753856341,218,0 +170753856389,220,0 +170753856437,221,0 +170753856487,221,0 +170753856536,221,0 +170753856586,222,0 +170753856634,222,0 +170753856682,223,0 +170753856731,222,0 +170753856779,223,0 +170753856827,224,0 +170753856875,223,0 +170753856925,223,0 +170753856974,223,0 +170753857022,223,0 +170753857071,219,0 +170753857119,220,0 +170753857169,219,0 +170753857217,221,0 +170753857264,221,0 +170753857312,221,0 +170753857360,221,0 +170753857410,223,0 +170753857458,224,0 +170753857507,224,0 +170753857555,225,0 +170753857603,224,0 +170753857652,225,0 +170753857700,224,0 +170753857748,223,0 +170753857796,224,0 +170753857846,223,0 +170753857893,223,0 +170753857941,222,0 +170753857989,217,0 +170753858037,217,0 +170753858085,218,0 +170753858133,219,0 +170753858181,218,0 +170753858229,219,0 +170753858277,220,0 +170753858326,221,0 +170753858375,222,0 +170753858425,222,0 +170753858473,224,0 +170753858521,224,0 +170753858570,224,0 +170753858618,224,0 +170753858666,224,0 +170753858714,224,0 +170753858762,224,0 +170753858810,224,0 +170753858858,221,0 +170753858906,216,0 +170753858954,215,0 +170753859003,216,0 +170753859051,216,0 +170753859099,217,0 +170753859147,218,0 +170753859197,219,0 +170753859246,220,0 +170753859296,219,0 +170753859344,221,0 +170753859393,221,0 +170753859441,223,0 +170753859491,222,0 +170753859540,226,0 +170753859590,223,0 +170753859638,222,0 +170753859686,224,0 +170753859735,223,0 +170753859783,223,0 +170753859831,215,0 +170753859880,215,0 +170753859928,215,0 +170753859976,215,0 +170753860026,216,0 +170753860074,217,0 +170753860123,218,0 +170753860171,219,0 +170753860221,220,0 +170753860268,220,0 +170753860318,221,0 +170753860367,221,0 +170753860416,222,0 +170753860465,222,0 +170753860515,222,0 +170753860564,224,0 +170753860612,223,0 +170753860662,223,0 +170753860711,222,0 +170753860761,215,0 +170753860809,214,0 +170753860858,215,0 +170753860906,215,0 +170753860956,216,0 +170753861004,216,0 +170753861053,217,0 +170753861101,218,0 +170753861149,218,0 +170753861197,219,0 +170753861245,220,0 +170753861295,221,0 +170753861343,221,0 +170753861390,222,0 +170753861438,222,0 +170753861486,223,0 +170753861534,222,0 +170753861582,222,0 +170753861630,222,0 +170753861680,215,0 +170753861729,215,0 +170753861779,214,0 +170753861827,216,0 +170753861876,216,0 +170753861924,217,0 +170753861974,218,0 +170753862023,218,0 +170753862071,218,0 +170753862121,220,0 +170753862171,221,0 +170753862218,222,0 +170753862268,223,0 +170753862316,222,0 +170753862365,222,0 +170753862413,224,0 +170753862461,224,0 +170753862511,223,0 +170753862560,221,0 +170753862610,215,0 +170753862658,215,0 +170753862707,215,0 +170753862755,216,0 +170753862803,216,0 +170753862851,217,0 +170753862901,218,0 +170753862950,218,0 +170753863000,219,0 +170753863048,219,0 +170753863097,220,0 +170753863145,221,0 +170753863193,222,0 +170753863241,222,0 +170753863289,223,0 +170753863339,224,0 +170753863386,223,0 +170753863436,223,0 +170753863484,222,0 +170753863532,215,0 +170753863581,215,0 +170753863631,215,0 +170753863680,216,0 +170753863728,217,0 +170753863776,217,0 +170753863824,218,0 +170753863874,218,0 +170753863922,219,0 +170753863970,220,0 +170753864018,221,0 +170753864066,221,0 +170753864113,223,0 +170753864161,222,0 +170753864211,223,0 +170753864261,222,0 +170753864308,223,0 +170753864356,223,0 +170753864406,222,0 +170753864454,214,0 +170753864503,216,0 +170753864551,216,0 +170753864599,216,0 +170753864647,217,0 +170753864695,218,0 +170753864743,218,0 +170753864792,218,0 +170753864840,219,0 +170753864888,220,0 +170753864938,220,0 +170753864986,222,0 +170753865035,223,0 +170753865085,224,0 +170753865133,223,0 +170753865182,223,0 +170753865232,222,0 +170753865281,222,0 +170753865331,222,0 +170753865379,216,0 +170753865427,216,0 +170753865475,217,0 +170753865524,218,0 +170753865572,219,0 +170753865620,219,0 +170753865670,220,0 +170753865719,221,0 +170753865769,221,0 +170753865817,222,0 +170753865866,223,0 +170753865916,223,0 +170753865964,225,0 +170753866013,223,0 +170753866061,223,0 +170753866109,227,0 +170753866157,224,0 +170753866207,223,0 +170753866256,219,0 +170753866306,215,0 +170753866355,216,0 +170753866405,217,0 +170753866454,218,0 +170753866504,219,0 +170753866553,220,0 +170753866601,220,0 +170753866651,221,0 +170753866700,221,0 +170753866750,222,0 +170753866799,223,0 +170753866849,223,0 +170753866899,223,0 +170753866948,224,0 +170753866996,223,0 +170753867044,222,0 +170753867094,223,0 +170753867142,222,0 +170753867189,216,0 +170753867237,215,0 +170753867285,215,0 +170753867333,215,0 +170753867381,216,0 +170753867429,216,0 +170753867479,217,0 +170753867528,218,0 +170753867578,218,0 +170753867626,219,0 +170753867674,220,0 +170753867722,221,0 +170753867771,221,0 +170753867821,222,0 +170753867870,221,0 +170753867918,222,0 +170753867966,223,0 +170753868014,222,0 +170753868063,222,0 +170753868113,216,0 +170753868163,215,0 +170753868212,215,0 +170753868262,216,0 +170753868311,217,0 +170753868359,217,0 +170753868407,218,0 +170753868455,218,0 +170753868503,219,0 +170753868551,220,0 +170753868600,220,0 +170753868648,221,0 +170753868696,221,0 +170753868744,222,0 +170753868793,222,0 +170753868841,220,0 +170753868889,223,0 +170753868937,223,0 +170753868987,223,0 +170753869036,216,0 +170753869084,215,0 +170753869132,215,0 +170753869180,216,0 +170753869229,217,0 +170753869279,217,0 +170753869327,218,0 +170753869376,218,0 +170753869424,219,0 +170753869474,220,0 +170753869522,220,0 +170753869570,221,0 +170753869618,221,0 +170753869665,223,0 +170753869713,221,0 +170753869761,223,0 +170753869809,223,0 +170753869857,223,0 +170753869905,223,0 +170753869955,216,0 +170753870004,214,0 +170753870052,215,0 +170753870100,216,0 +170753870148,216,0 +170753870196,217,0 +170753870243,216,0 +170753870293,219,0 +170753870341,218,0 +170753870389,218,0 +170753870437,219,0 +170753870484,221,0 +170753870532,222,0 +170753870580,223,0 +170753870628,223,0 +170753870676,222,0 +170753870724,222,0 +170753870772,223,0 +170753870820,223,0 +170753870867,217,0 +170753870915,215,0 +170753870963,215,0 +170753871012,216,0 +170753871060,217,0 +170753871108,217,0 +170753871158,218,0 +170753871206,218,0 +170753871254,219,0 +170753871302,219,0 +170753871349,221,0 +170753871397,221,0 +170753871445,222,0 +170753871495,222,0 +170753871543,223,0 +170753871591,223,0 +170753871640,223,0 +170753871690,224,0 +170753871739,223,0 +170753871787,222,0 +170753871837,215,0 +170753871885,216,0 +170753871934,216,0 +170753871984,216,0 +170753872032,217,0 +170753872081,218,0 +170753872129,218,0 +170753872177,220,0 +170753872227,222,0 +170753872275,221,0 +170753872323,221,0 +170753872372,222,0 +170753872420,223,0 +170753872470,223,0 +170753872518,226,0 +170753872566,223,0 +170753872614,225,0 +170753872662,223,0 +170753872710,222,0 +170753872759,215,0 +170753872809,216,0 +170753872858,217,0 +170753872908,219,0 +170753872956,217,0 +170753873003,219,0 +170753873051,219,0 +170753873101,220,0 +170753873149,221,0 +170753873197,223,0 +170753873246,222,0 +170753873295,224,0 +170753873345,223,0 +170753873394,224,0 +170753873444,223,0 +170753873492,223,0 +170753873540,224,0 +170753873589,223,0 +170753873637,216,0 +170753873685,213,0 +170753873733,215,0 +170753873781,215,0 +170753873829,216,0 +170753873879,217,0 +170753873927,217,0 +170753873976,218,0 +170753874024,218,0 +170753874072,220,0 +170753874122,221,0 +170753874170,222,0 +170753874218,223,0 +170753874267,228,0 +170753874317,224,0 +170753874365,224,0 +170753874414,223,0 +170753874462,224,0 +170753874512,223,0 +170753874560,216,0 +170753874608,215,0 +170753874655,215,0 +170753874703,216,0 +170753874751,217,0 +170753874799,216,0 +170753874847,218,0 +170753874896,218,0 +170753874944,222,0 +170753874992,219,0 +170753875040,220,0 +170753875088,221,0 +170753875136,221,0 +170753875184,222,0 +170753875233,222,0 +170753875281,222,0 +170753875329,223,0 +170753875378,223,0 +170753875426,223,0 +170753875474,222,0 +170753875522,214,0 +170753875570,215,0 +170753875618,215,0 +170753875666,216,0 +170753875714,217,0 +170753875762,218,0 +170753875809,218,0 +170753875857,219,0 +170753875907,219,0 +170753875955,221,0 +170753876004,222,0 +170753876054,222,0 +170753876103,222,0 +170753876153,223,0 +170753876203,223,0 +170753876252,223,0 +170753876300,223,0 +170753876348,222,0 +170753876396,221,0 +170753876444,215,0 +170753876493,216,0 +170753876541,217,0 +170753876589,218,0 +170753876637,218,0 +170753876685,219,0 +170753876733,219,0 +170753876782,221,0 +170753876830,221,0 +170753876878,221,0 +170753876926,221,0 +170753876976,223,0 +170753877024,222,0 +170753877072,224,0 +170753877119,223,0 +170753877169,224,0 +170753877217,224,0 +170753877265,223,0 +170753877313,220,0 +170753877361,215,0 +170753877410,216,0 +170753877458,217,0 +170753877506,217,0 +170753877554,218,0 +170753877602,218,0 +170753877650,221,0 +170753877697,221,0 +170753877745,221,0 +170753877793,222,0 +170753877841,222,0 +170753877889,224,0 +170753877937,225,0 +170753877985,223,0 +170753878033,223,0 +170753878081,223,0 +170753878130,222,0 +170753878178,224,0 +170753878226,222,0 +170753878274,215,0 +170753878322,215,0 +170753878370,215,0 +170753878418,215,0 +170753878467,216,0 +170753878515,217,0 +170753878563,218,0 +170753878611,218,0 +170753878661,220,0 +170753878710,221,0 +170753878760,222,0 +170753878808,222,0 +170753878856,223,0 +170753878905,222,0 +170753878953,223,0 +170753879001,224,0 +170753879049,223,0 +170753879097,223,0 +170753879147,222,0 +170753879196,215,0 +170753879246,215,0 +170753879295,216,0 +170753879345,217,0 +170753879394,217,0 +170753879442,218,0 +170753879490,218,0 +170753879540,219,0 +170753879588,220,0 +170753879636,220,0 +170753879685,220,0 +170753879733,222,0 +170753879783,222,0 +170753879832,221,0 +170753879880,223,0 +170753879928,223,0 +170753879976,223,0 +170753880024,222,0 +170753880072,216,0 +170753880120,214,0 +170753880168,215,0 +170753880216,216,0 +170753880264,217,0 +170753880312,217,0 +170753880359,218,0 +170753880407,218,0 +170753880455,219,0 +170753880503,219,0 +170753880552,220,0 +170753880600,221,0 +170753880648,222,0 +170753880696,222,0 +170753880744,223,0 +170753880792,222,0 +170753880840,222,0 +170753880889,223,0 +170753880939,223,0 +170753880987,216,0 +170753881035,215,0 +170753881083,216,0 +170753881132,217,0 +170753881182,217,0 +170753881231,220,0 +170753881279,220,0 +170753881327,220,0 +170753881377,220,0 +170753881426,220,0 +170753881476,220,0 +170753881525,221,0 +170753881575,223,0 +170753881623,222,0 +170753881671,223,0 +170753881720,223,0 +170753881770,223,0 +170753881819,223,0 +170753881867,223,0 +170753881917,215,0 +170753881966,215,0 +170753882014,216,0 +170753882062,216,0 +170753882110,218,0 +170753882158,218,0 +170753882206,218,0 +170753882256,219,0 +170753882304,220,0 +170753882352,221,0 +170753882401,222,0 +170753882451,223,0 +170753882499,222,0 +170753882547,224,0 +170753882595,223,0 +170753882644,223,0 +170753882692,223,0 +170753882740,223,0 +170753882788,222,0 +170753882836,215,0 +170753882884,215,0 +170753882932,215,0 +170753882981,215,0 +170753883031,217,0 +170753883080,218,0 +170753883128,218,0 +170753883178,219,0 +170753883227,219,0 +170753883277,220,0 +170753883325,221,0 +170753883374,222,0 +170753883424,222,0 +170753883473,223,0 +170753883521,224,0 +170753883571,224,0 +170753883619,222,0 +170753883667,223,0 +170753883715,216,0 +170753883763,215,0 +170753883811,215,0 +170753883859,216,0 +170753883908,217,0 +170753883957,216,0 +170753884007,217,0 +170753884055,217,0 +170753884105,218,0 +170753884154,219,0 +170753884204,221,0 +170753884252,220,0 +170753884301,221,0 +170753884349,222,0 +170753884397,222,0 +170753884446,223,0 +170753884494,223,0 +170753884544,223,0 +170753884592,228,0 +170753884641,216,0 +170753884689,216,0 +170753884737,216,0 +170753884787,217,0 +170753884835,217,0 +170753884883,219,0 +170753884931,219,0 +170753884980,220,0 +170753885030,220,0 +170753885079,221,0 +170753885127,222,0 +170753885175,222,0 +170753885223,222,0 +170753885273,222,0 +170753885321,223,0 +170753885369,224,0 +170753885417,222,0 +170753885466,222,0 +170753885516,222,0 +170753885565,216,0 +170753885613,218,0 +170753885663,218,0 +170753885712,219,0 +170753885762,220,0 +170753885810,221,0 +170753885859,221,0 +170753885907,222,0 +170753885957,223,0 +170753886006,223,0 +170753886054,224,0 +170753886102,224,0 +170753886152,223,0 +170753886201,224,0 +170753886249,224,0 +170753886299,224,0 +170753886347,223,0 +170753886395,222,0 +170753886443,218,0 +170753886492,216,0 +170753886542,218,0 +170753886591,219,0 +170753886641,220,0 +170753886689,222,0 +170753886737,221,0 +170753886786,220,0 +170753886834,222,0 +170753886884,222,0 +170753886932,222,0 +170753886980,223,0 +170753887027,223,0 +170753887075,223,0 +170753887123,223,0 +170753887173,223,0 +170753887222,223,0 +170753887272,224,0 +170753887320,222,0 +170753887370,217,0 +170753887419,219,0 +170753887467,219,0 +170753887517,219,0 +170753887564,220,0 +170753887612,221,0 +170753887660,222,0 +170753887708,222,0 +170753887756,222,0 +170753887804,222,0 +170753887853,223,0 +170753887901,223,0 +170753887949,222,0 +170753887997,222,0 +170753888047,224,0 +170753888094,223,0 +170753888142,223,0 +170753888190,223,0 +170753888238,222,0 +170753888286,215,0 +170753888334,215,0 +170753888383,217,0 +170753888433,217,0 +170753888481,218,0 +170753888529,218,0 +170753888578,219,0 +170753888626,220,0 +170753888675,221,0 +170753888723,221,0 +170753888771,224,0 +170753888821,223,0 +170753888870,224,0 +170753888918,218,0 +170753888966,224,0 +170753889014,223,0 +170753889062,225,0 +170753889111,222,0 +170753889159,217,0 +170753889207,214,0 +170753889255,215,0 +170753889303,216,0 +170753889352,217,0 +170753889400,217,0 +170753889448,218,0 +170753889496,219,0 +170753889544,219,0 +170753889592,219,0 +170753889641,220,0 +170753889691,222,0 +170753889741,221,0 +170753889789,222,0 +170753889837,222,0 +170753889886,222,0 +170753889936,221,0 +170753889984,223,0 +170753890033,222,0 +170753890083,215,0 +170753890132,215,0 +170753890180,216,0 +170753890228,215,0 +170753890278,217,0 +170753890327,218,0 +170753890375,219,0 +170753890423,219,0 +170753890471,219,0 +170753890521,221,0 +170753890568,221,0 +170753890616,223,0 +170753890666,223,0 +170753890716,223,0 +170753890763,223,0 +170753890811,223,0 +170753890861,223,0 +170753890910,224,0 +170753890958,224,0 +170753891006,215,0 +170753891056,214,0 +170753891105,215,0 +170753891155,216,0 +170753891204,217,0 +170753891252,217,0 +170753891302,218,0 +170753891350,219,0 +170753891398,220,0 +170753891446,220,0 +170753891494,221,0 +170753891542,222,0 +170753891590,223,0 +170753891638,223,0 +170753891687,222,0 +170753891737,223,0 +170753891785,223,0 +170753891833,224,0 +170753891881,220,0 +170753891930,215,0 +170753891980,215,0 +170753892029,216,0 +170753892079,216,0 +170753892127,217,0 +170753892176,218,0 +170753892224,218,0 +170753892272,219,0 +170753892322,220,0 +170753892371,221,0 +170753892421,222,0 +170753892469,223,0 +170753892517,216,0 +170753892566,221,0 +170753892616,223,0 +170753892663,223,0 +170753892713,223,0 +170753892763,223,0 +170753892812,216,0 +170753892860,215,0 +170753892908,215,0 +170753892958,215,0 +170753893007,216,0 +170753893057,217,0 +170753893106,217,0 +170753893154,218,0 +170753893204,219,0 +170753893253,220,0 +170753893301,221,0 +170753893351,221,0 +170753893399,222,0 +170753893448,221,0 +170753893498,222,0 +170753893546,223,0 +170753893595,224,0 +170753893645,223,0 +170753893694,215,0 +170753893744,214,0 +170753893792,214,0 +170753893840,215,0 +170753893889,216,0 +170753893939,217,0 +170753893987,217,0 +170753894035,218,0 +170753894084,219,0 +170753894132,220,0 +170753894182,219,0 +170753894231,220,0 +170753894281,221,0 +170753894328,223,0 +170753894376,223,0 +170753894426,223,0 +170753894475,222,0 +170753894525,223,0 +170753894572,223,0 +170753894620,216,0 +170753894670,215,0 +170753894718,215,0 +170753894766,216,0 +170753894815,216,0 +170753894863,217,0 +170753894911,218,0 +170753894959,218,0 +170753895008,219,0 +170753895056,220,0 +170753895106,220,0 +170753895154,221,0 +170753895203,222,0 +170753895251,222,0 +170753895301,224,0 +170753895349,224,0 +170753895397,223,0 +170753895445,225,0 +170753895493,223,0 +170753895541,216,0 +170753895589,216,0 +170753895636,216,0 +170753895684,217,0 +170753895732,218,0 +170753895780,219,0 +170753895830,219,0 +170753895878,219,0 +170753895927,221,0 +170753895975,221,0 +170753896023,222,0 +170753896071,222,0 +170753896120,222,0 +170753896168,223,0 +170753896218,223,0 +170753896267,223,0 +170753896317,222,0 +170753896365,223,0 +170753896414,222,0 +170753896464,215,0 +170753896512,217,0 +170753896560,218,0 +170753896608,218,0 +170753896656,219,0 +170753896704,220,0 +170753896753,222,0 +170753896803,222,0 +170753896852,222,0 +170753896900,222,0 +170753896950,222,0 +170753896999,222,0 +170753897049,222,0 +170753897097,223,0 +170753897146,222,0 +170753897196,224,0 +170753897246,223,0 +170753897294,222,0 +170753897341,216,0 +170753897389,214,0 +170753897439,214,0 +170753897488,214,0 +170753897536,215,0 +170753897586,215,0 +170753897635,216,0 +170753897685,218,0 +170753897734,219,0 +170753897782,219,0 +170753897830,219,0 +170753897880,220,0 +170753897929,222,0 +170753897979,221,0 +170753898029,224,0 +170753898078,222,0 +170753898126,224,0 +170753898176,223,0 +170753898225,223,0 +170753898273,215,0 +170753898321,214,0 +170753898371,214,0 +170753898420,214,0 +170753898468,215,0 +170753898518,215,0 +170753898567,216,0 +170753898615,216,0 +170753898665,217,0 +170753898714,218,0 +170753898762,218,0 +170753898810,219,0 +170753898858,220,0 +170753898906,220,0 +170753898956,221,0 +170753899005,221,0 +170753899053,222,0 +170753899101,223,0 +170753899149,216,0 +170753899197,214,0 +170753899245,215,0 +170753899294,215,0 +170753899342,216,0 +170753899390,217,0 +170753899438,218,0 +170753899486,218,0 +170753899534,219,0 +170753899582,220,0 +170753899630,221,0 +170753899678,221,0 +170753899726,221,0 +170753899774,222,0 +170753899824,222,0 +170753899873,222,0 +170753899923,222,0 +170753899972,223,0 +170753900020,223,0 +170753900068,216,0 +170753900116,215,0 +170753900166,215,0 +170753900215,216,0 +170753900263,217,0 +170753900313,217,0 +170753900361,218,0 +170753900410,219,0 +170753900458,219,0 +170753900506,220,0 +170753900554,222,0 +170753900602,222,0 +170753900651,222,0 +170753900699,221,0 +170753900749,223,0 +170753900797,223,0 +170753900845,222,0 +170753900894,225,0 +170753900942,223,0 +170753900990,216,0 +170753901040,216,0 +170753901088,217,0 +170753901137,217,0 +170753901187,218,0 +170753901235,218,0 +170753901284,219,0 +170753901332,220,0 +170753901380,219,0 +170753901430,221,0 +170753901479,220,0 +170753901527,220,0 +170753901577,222,0 +170753901625,222,0 +170753901673,224,0 +170753901722,223,0 +170753901772,223,0 +170753901820,223,0 +170753901868,223,0 +170753901917,216,0 +170753901965,216,0 +170753902015,217,0 +170753902063,218,0 +170753902111,218,0 +170753902160,219,0 +170753902208,220,0 +170753902258,221,0 +170753902306,220,0 +170753902354,221,0 +170753902402,222,0 +170753902450,224,0 +170753902499,223,0 +170753902549,223,0 +170753902598,223,0 +170753902648,225,0 +170753902697,223,0 +170753902745,222,0 +170753902793,217,0 +170753902843,216,0 +170753902891,217,0 +170753902939,218,0 +170753902988,218,0 +170753903036,219,0 +170753903085,220,0 +170753903135,220,0 +170753903185,220,0 +170753903232,222,0 +170753903282,221,0 +170753903332,222,0 +170753903381,224,0 +170753903429,222,0 +170753903479,223,0 +170753903528,224,0 +170753903576,223,0 +170753903626,223,0 +170753903675,222,0 +170753903725,217,0 +170753903773,217,0 +170753903821,217,0 +170753903869,219,0 +170753903917,219,0 +170753903966,219,0 +170753904016,219,0 +170753904064,221,0 +170753904112,221,0 +170753904160,221,0 +170753904209,222,0 +170753904257,223,0 +170753904305,222,0 +170753904353,222,0 +170753904401,223,0 +170753904450,223,0 +170753904500,223,0 +170753904548,222,0 +170753904596,217,0 +170753904644,218,0 +170753904692,218,0 +170753904741,219,0 +170753904791,220,0 +170753904839,220,0 +170753904887,220,0 +170753904935,220,0 +170753904983,222,0 +170753905031,221,0 +170753905078,223,0 +170753905126,222,0 +170753905174,224,0 +170753905224,223,0 +170753905272,224,0 +170753905321,223,0 +170753905371,223,0 +170753905421,224,0 +170753905470,225,0 +170753905520,218,0 +170753905569,217,0 +170753905617,218,0 +170753905665,219,0 +170753905713,221,0 +170753905762,220,0 +170753905812,220,0 +170753905860,221,0 +170753905909,222,0 +170753905959,222,0 +170753906007,223,0 +170753906055,223,0 +170753906104,224,0 +170753906154,224,0 +170753906202,224,0 +170753906251,222,0 +170753906299,223,0 +170753906347,222,0 +170753906397,222,0 +170753906446,215,0 +170753906494,216,0 +170753906542,217,0 +170753906590,218,0 +170753906638,219,0 +170753906687,218,0 +170753906735,221,0 +170753906784,221,0 +170753906832,220,0 +170753906880,221,0 +170753906928,223,0 +170753906976,223,0 +170753907024,224,0 +170753907073,224,0 +170753907121,224,0 +170753907169,224,0 +170753907217,222,0 +170753907265,223,0 +170753907314,221,0 +170753907364,215,0 +170753907412,216,0 +170753907461,216,0 +170753907509,217,0 +170753907557,218,0 +170753907605,218,0 +170753907653,219,0 +170753907703,220,0 +170753907752,221,0 +170753907800,221,0 +170753907848,221,0 +170753907896,222,0 +170753907946,222,0 +170753907994,222,0 +170753908043,224,0 +170753908091,223,0 +170753908139,224,0 +170753908187,223,0 +170753908237,216,0 +170753908286,215,0 +170753908334,215,0 +170753908382,216,0 +170753908432,217,0 +170753908481,217,0 +170753908529,218,0 +170753908579,219,0 +170753908627,219,0 +170753908676,221,0 +170753908724,221,0 +170753908772,222,0 +170753908822,223,0 +170753908870,222,0 +170753908917,223,0 +170753908965,224,0 +170753909013,224,0 +170753909063,223,0 +170753909111,222,0 +170753909160,215,0 +170753909208,215,0 +170753909256,216,0 +170753909304,217,0 +170753909354,218,0 +170753909402,219,0 +170753909451,220,0 +170753909499,221,0 +170753909547,221,0 +170753909595,222,0 +170753909643,222,0 +170753909693,222,0 +170753909741,222,0 +170753909790,223,0 +170753909838,224,0 +170753909886,221,0 +170753909936,223,0 +170753909984,222,0 +170753910031,221,0 +170753910079,214,0 +170753910127,215,0 +170753910175,216,0 +170753910223,216,0 +170753910271,218,0 +170753910319,219,0 +170753910367,218,0 +170753910415,218,0 +170753910462,219,0 +170753910510,221,0 +170753910558,221,0 +170753910606,222,0 +170753910654,222,0 +170753910702,222,0 +170753910752,223,0 +170753910801,223,0 +170753910849,222,0 +170753910899,222,0 +170753910947,216,0 +170753910995,215,0 +170753911043,215,0 +170753911090,216,0 +170753911140,217,0 +170753911190,218,0 +170753911239,218,0 +170753911287,219,0 +170753911337,220,0 +170753911385,220,0 +170753911433,221,0 +170753911481,222,0 +170753911528,223,0 +170753911576,223,0 +170753911624,223,0 +170753911674,223,0 +170753911721,223,0 +170753911769,223,0 +170753911817,222,0 +170753911867,216,0 +170753911915,214,0 +170753911963,214,0 +170753912011,215,0 +170753912060,216,0 +170753912110,216,0 +170753912159,217,0 +170753912207,218,0 +170753912257,218,0 +170753912306,219,0 +170753912356,220,0 +170753912405,221,0 +170753912453,222,0 +170753912503,222,0 +170753912552,222,0 +170753912600,223,0 +170753912650,223,0 +170753912698,223,0 +170753912746,222,0 +170753912795,214,0 +170753912843,215,0 +170753912893,216,0 +170753912942,217,0 +170753912992,217,0 +170753913041,216,0 +170753913091,218,0 +170753913139,219,0 +170753913187,221,0 +170753913236,220,0 +170753913286,221,0 +170753913334,222,0 +170753913382,222,0 +170753913430,222,0 +170753913479,223,0 +170753913527,223,0 +170753913575,222,0 +170753913623,223,0 +170753913673,216,0 +170753913722,215,0 +170753913770,216,0 +170753913818,216,0 +170753913868,218,0 +170753913917,216,0 +170753913967,218,0 +170753914015,219,0 +170753914064,219,0 +170753914114,220,0 +170753914162,221,0 +170753914210,222,0 +170753914258,223,0 +170753914307,223,0 +170753914357,223,0 +170753914406,223,0 +170753914454,223,0 +170753914502,222,0 +170753914552,222,0 +170753914600,217,0 +170753914648,217,0 +170753914697,218,0 +170753914745,218,0 +170753914795,219,0 +170753914844,220,0 +170753914892,220,0 +170753914942,220,0 +170753914990,223,0 +170753915039,222,0 +170753915087,222,0 +170753915135,222,0 +170753915185,223,0 +170753915234,223,0 +170753915282,222,0 +170753915330,223,0 +170753915378,223,0 +170753915426,223,0 +170753915475,218,0 +170753915525,218,0 +170753915575,218,0 +170753915623,218,0 +170753915670,219,0 +170753915718,220,0 +170753915768,222,0 +170753915816,222,0 +170753915864,222,0 +170753915912,223,0 +170753915960,223,0 +170753916009,224,0 +170753916059,224,0 +170753916108,223,0 +170753916158,223,0 +170753916208,225,0 +170753916256,223,0 +170753916305,224,0 +170753916355,223,0 +170753916403,216,0 +170753916451,216,0 +170753916498,216,0 +170753916548,217,0 +170753916598,219,0 +170753916647,220,0 +170753916697,220,0 +170753916745,219,0 +170753916792,221,0 +170753916840,221,0 +170753916888,218,0 +170753916936,222,0 +170753916984,223,0 +170753917034,223,0 +170753917083,224,0 +170753917131,223,0 +170753917181,223,0 +170753917229,223,0 +170753917277,216,0 +170753917325,215,0 +170753917373,216,0 +170753917421,217,0 +170753917470,218,0 +170753917520,218,0 +170753917568,218,0 +170753917616,222,0 +170753917663,220,0 +170753917711,221,0 +170753917761,222,0 +170753917809,222,0 +170753917858,224,0 +170753917908,223,0 +170753917957,223,0 +170753918007,223,0 +170753918056,223,0 +170753918106,223,0 +170753918155,223,0 +170753918205,215,0 +170753918255,215,0 +170753918303,216,0 +170753918351,217,0 +170753918399,218,0 +170753918447,218,0 +170753918496,220,0 +170753918546,220,0 +170753918595,221,0 +170753918645,220,0 +170753918694,222,0 +170753918744,222,0 +170753918792,223,0 +170753918841,223,0 +170753918889,224,0 +170753918939,223,0 +170753918987,223,0 +170753919035,223,0 +170753919084,216,0 +170753919134,215,0 +170753919182,215,0 +170753919230,216,0 +170753919279,217,0 +170753919327,215,0 +170753919375,218,0 +170753919423,218,0 +170753919473,219,0 +170753919521,220,0 +170753919569,220,0 +170753919617,223,0 +170753919666,223,0 +170753919716,223,0 +170753919764,222,0 +170753919811,221,0 +170753919861,224,0 +170753919910,222,0 +170753919958,222,0 +170753920006,216,0 +170753920056,215,0 +170753920104,215,0 +170753920152,216,0 +170753920201,216,0 +170753920251,221,0 +170753920299,218,0 +170753920347,219,0 +170753920396,219,0 +170753920444,219,0 +170753920492,221,0 +170753920540,222,0 +170753920590,223,0 +170753920639,224,0 +170753920689,223,0 +170753920738,224,0 +170753920788,224,0 +170753920837,223,0 +170753920887,220,0 +170753920936,215,0 +170753920984,215,0 +170753921032,216,0 +170753921080,217,0 +170753921128,218,0 +170753921178,219,0 +170753921226,219,0 +170753921275,219,0 +170753921325,219,0 +170753921373,222,0 +170753921422,222,0 +170753921470,221,0 +170753921520,224,0 +170753921569,223,0 +170753921619,223,0 +170753921667,224,0 +170753921714,223,0 +170753921764,224,0 +170753921812,217,0 +170753921860,216,0 +170753921909,217,0 +170753921957,217,0 +170753922005,218,0 +170753922053,218,0 +170753922101,218,0 +170753922150,219,0 +170753922198,219,0 +170753922246,220,0 +170753922296,221,0 +170753922345,222,0 +170753922393,222,0 +170753922441,223,0 +170753922491,224,0 +170753922539,225,0 +170753922587,224,0 +170753922636,223,0 +170753922686,223,0 +170753922734,215,0 +170753922783,216,0 +170753922833,216,0 +170753922881,217,0 +170753922929,218,0 +170753922977,218,0 +170753923026,219,0 +170753923076,220,0 +170753923125,220,0 +170753923173,221,0 +170753923221,222,0 +170753923269,222,0 +170753923317,223,0 +170753923365,223,0 +170753923415,226,0 +170753923463,224,0 +170753923512,223,0 +170753923562,223,0 +170753923611,217,0 +170753923659,215,0 +170753923707,215,0 +170753923757,216,0 +170753923805,217,0 +170753923853,218,0 +170753923901,219,0 +170753923950,219,0 +170753923998,219,0 +170753924048,220,0 +170753924096,221,0 +170753924144,221,0 +170753924191,222,0 +170753924239,223,0 +170753924287,223,0 +170753924335,224,0 +170753924383,223,0 +170753924431,223,0 +170753924479,223,0 +170753924527,215,0 +170753924577,214,0 +170753924625,215,0 +170753924674,215,0 +170753924722,216,0 +170753924770,217,0 +170753924818,217,0 +170753924868,219,0 +170753924917,219,0 +170753924967,221,0 +170753925016,221,0 +170753925064,222,0 +170753925112,221,0 +170753925160,222,0 +170753925208,223,0 +170753925256,223,0 +170753925306,223,0 +170753925354,223,0 +170753925403,223,0 +170753925451,215,0 +170753925499,214,0 +170753925549,215,0 +170753925598,215,0 +170753925648,215,0 +170753925696,216,0 +170753925745,217,0 +170753925793,217,0 +170753925841,218,0 +170753925891,219,0 +170753925939,220,0 +170753925988,222,0 +170753926036,221,0 +170753926086,221,0 +170753926135,221,0 +170753926185,222,0 +170753926234,223,0 +170753926282,224,0 +170753926332,216,0 +170753926381,214,0 +170753926431,215,0 +170753926479,214,0 +170753926526,215,0 +170753926574,216,0 +170753926622,216,0 +170753926670,218,0 +170753926720,218,0 +170753926770,219,0 +170753926819,221,0 +170753926867,220,0 +170753926917,220,0 +170753926966,222,0 +170753927014,222,0 +170753927062,223,0 +170753927110,223,0 +170753927159,223,0 +170753927207,223,0 +170753927257,215,0 +170753927306,215,0 +170753927356,215,0 +170753927404,216,0 +170753927452,217,0 +170753927500,218,0 +170753927549,218,0 +170753927599,220,0 +170753927647,219,0 +170753927695,221,0 +170753927744,224,0 +170753927794,223,0 +170753927842,222,0 +170753927890,223,0 +170753927938,223,0 +170753927985,223,0 +170753928033,229,0 +170753928083,224,0 +170753928131,216,0 +170753928180,215,0 +170753928230,216,0 +170753928278,216,0 +170753928327,217,0 +170753928377,218,0 +170753928426,218,0 +170753928474,219,0 +170753928522,218,0 +170753928572,221,0 +170753928620,221,0 +170753928669,219,0 +170753928717,222,0 +170753928765,224,0 +170753928815,223,0 +170753928864,222,0 +170753928912,223,0 +170753928960,223,0 +170753929008,222,0 +170753929056,216,0 +170753929104,215,0 +170753929152,215,0 +170753929201,216,0 +170753929251,216,0 +170753929300,217,0 +170753929350,218,0 +170753929398,218,0 +170753929447,218,0 +170753929497,219,0 +170753929546,220,0 +170753929594,220,0 +170753929642,222,0 +170753929690,221,0 +170753929740,222,0 +170753929788,223,0 +170753929836,222,0 +170753929884,224,0 +170753929932,223,0 +170753929980,224,0 +170753930028,225,0 +170753930077,224,0 +170753930127,224,0 +170753930175,224,0 +170753930224,224,0 +170753930274,223,0 +170753930323,223,0 +170753930373,222,0 +170753930421,217,0 +170753930469,217,0 +170753930518,218,0 +170753930568,219,0 +170753930617,221,0 +170753930665,221,0 +170753930715,221,0 +170753930764,223,0 +170753930812,223,0 +170753930862,222,0 +170753930912,223,0 +170753930961,223,0 +170753931009,224,0 +170753931059,222,0 +170753931108,224,0 +170753931158,222,0 +170753931206,223,0 +170753931253,223,0 +170753931301,217,0 +170753931351,217,0 +170753931401,218,0 +170753931450,219,0 +170753931498,220,0 +170753931546,220,0 +170753931596,221,0 +170753931645,222,0 +170753931693,222,0 +170753931741,222,0 +170753931791,223,0 +170753931839,223,0 +170753931887,224,0 +170753931936,224,0 +170753931986,224,0 +170753932035,224,0 +170753932085,224,0 +170753932133,223,0 +170753932182,222,0 +170753932232,217,0 +170753932280,217,0 +170753932328,218,0 +170753932377,218,0 +170753932427,220,0 +170753932475,220,0 +170753932523,221,0 +170753932572,221,0 +170753932621,222,0 +170753932669,222,0 +170753932719,223,0 +170753932768,224,0 +170753932816,222,0 +170753932864,223,0 +170753932914,222,0 +170753932963,224,0 +170753933011,224,0 +170753933060,222,0 +170753933108,217,0 +170753933156,215,0 +170753933206,217,0 +170753933255,217,0 +170753933303,219,0 +170753933351,220,0 +170753933401,221,0 +170753933450,221,0 +170753933498,221,0 +170753933548,221,0 +170753933597,222,0 +170753933647,223,0 +170753933697,223,0 +170753933745,223,0 +170753933793,223,0 +170753933842,223,0 +170753933892,223,0 +170753933940,223,0 +170753933989,222,0 +170753934037,216,0 +170753934087,216,0 +170753934135,217,0 +170753934183,219,0 +170753934231,220,0 +170753934280,221,0 +170753934328,220,0 +170753934376,221,0 +170753934426,222,0 +170753934474,221,0 +170753934521,223,0 +170753934569,223,0 +170753934619,223,0 +170753934667,223,0 +170753934716,223,0 +170753934764,224,0 +170753934812,224,0 +170753934860,223,0 +170753934910,220,0 +170753934960,214,0 +170753935009,215,0 +170753935057,215,0 +170753935107,216,0 +170753935156,217,0 +170753935204,218,0 +170753935252,219,0 +170753935302,219,0 +170753935350,220,0 +170753935398,224,0 +170753935447,221,0 +170753935497,222,0 +170753935546,222,0 +170753935594,222,0 +170753935644,222,0 +170753935692,224,0 +170753935741,223,0 +170753935789,222,0 +170753935837,216,0 +170753935885,215,0 +170753935934,215,0 +170753935984,215,0 +170753936034,216,0 +170753936083,217,0 +170753936133,217,0 +170753936182,218,0 +170753936232,218,0 +170753936281,219,0 +170753936331,220,0 +170753936379,221,0 +170753936427,222,0 +170753936475,222,0 +170753936524,223,0 +170753936574,222,0 +170753936623,223,0 +170753936671,222,0 +170753936719,216,0 +170753936769,215,0 +170753936817,215,0 +170753936866,216,0 +170753936916,216,0 +170753936965,217,0 +170753937013,218,0 +170753937061,218,0 +170753937109,219,0 +170753937157,220,0 +170753937207,221,0 +170753937255,223,0 +170753937304,223,0 +170753937352,223,0 +170753937402,223,0 +170753937450,224,0 +170753937498,224,0 +170753937547,223,0 +170753937595,222,0 +170753937645,215,0 +170753937694,214,0 +170753937742,214,0 +170753937792,215,0 +170753937840,215,0 +170753937888,216,0 +170753937937,217,0 +170753937985,217,0 +170753938033,218,0 +170753938081,219,0 +170753938129,220,0 +170753938179,221,0 +170753938228,222,0 +170753938276,223,0 +170753938326,223,0 +170753938375,223,0 +170753938425,222,0 +170753938474,223,0 +170753938524,218,0 +170753938572,215,0 +170753938621,215,0 +170753938671,216,0 +170753938720,216,0 +170753938770,217,0 +170753938819,218,0 +170753938869,218,0 +170753938917,219,0 +170753938966,219,0 +170753939016,221,0 +170753939065,222,0 +170753939115,221,0 +170753939163,224,0 +170753939212,223,0 +170753939262,223,0 +170753939311,223,0 +170753939361,223,0 +170753939409,223,0 +170753939458,215,0 +170753939508,215,0 +170753939557,215,0 +170753939607,216,0 +170753939655,217,0 +170753939703,218,0 +170753939752,218,0 +170753939802,219,0 +170753939851,219,0 +170753939899,220,0 +170753939949,221,0 +170753939997,221,0 +170753940046,223,0 +170753940094,222,0 +170753940144,223,0 +170753940194,223,0 +170753940243,223,0 +170753940293,222,0 +170753940342,216,0 +170753940392,215,0 +170753940440,217,0 +170753940488,217,0 +170753940537,218,0 +170753940587,218,0 +170753940636,219,0 +170753940686,219,0 +170753940734,220,0 +170753940782,220,0 +170753940831,221,0 +170753940879,222,0 +170753940927,223,0 +170753940975,223,0 +170753941025,224,0 +170753941072,225,0 +170753941120,224,0 +170753941168,223,0 +170753941216,223,0 +170753941264,216,0 +170753941312,217,0 +170753941360,217,0 +170753941409,219,0 +170753941459,220,0 +170753941508,221,0 +170753941556,220,0 +170753941604,221,0 +170753941652,221,0 +170753941700,222,0 +170753941748,222,0 +170753941796,224,0 +170753941844,223,0 +170753941892,223,0 +170753941940,224,0 +170753941988,222,0 +170753942037,223,0 +170753942087,223,0 +170753942135,221,0 +170753942184,216,0 +170753942232,217,0 +170753942280,218,0 +170753942328,219,0 +170753942376,220,0 +170753942424,220,0 +170753942474,222,0 +170753942523,222,0 +170753942571,223,0 +170753942621,223,0 +170753942668,222,0 +170753942716,223,0 +170753942764,225,0 +170753942814,224,0 +170753942863,223,0 +170753942911,223,0 +170753942959,224,0 +170753943007,223,0 +170753943055,216,0 +170753943105,215,0 +170753943154,216,0 +170753943202,218,0 +170753943250,218,0 +170753943298,219,0 +170753943347,219,0 +170753943395,219,0 +170753943445,221,0 +170753943493,221,0 +170753943542,222,0 +170753943590,222,0 +170753943639,223,0 +170753943687,223,0 +170753943737,223,0 +170753943786,223,0 +170753943834,223,0 +170753943882,224,0 +170753943932,218,0 +170753943981,215,0 +170753944029,215,0 +170753944079,216,0 +170753944127,216,0 +170753944176,217,0 +170753944226,218,0 +170753944275,219,0 +170753944325,219,0 +170753944375,220,0 +170753944424,221,0 +170753944473,221,0 +170753944521,220,0 +170753944571,222,0 +170753944621,222,0 +170753944669,223,0 +170753944718,222,0 +170753944766,223,0 +170753944814,223,0 +170753944862,216,0 +170753944911,215,0 +170753944961,216,0 +170753945011,216,0 +170753945059,217,0 +170753945106,217,0 +170753945156,218,0 +170753945206,218,0 +170753945255,218,0 +170753945303,219,0 +170753945353,220,0 +170753945402,221,0 +170753945452,222,0 +170753945500,222,0 +170753945549,224,0 +170753945599,222,0 +170753945647,223,0 +170753945695,222,0 +170753945744,216,0 +170753945792,215,0 +170753945842,216,0 +170753945890,217,0 +170753945938,217,0 +170753945987,218,0 +170753946037,218,0 +170753946086,221,0 +170753946136,221,0 +170753946184,221,0 +170753946232,220,0 +170753946281,221,0 +170753946329,223,0 +170753946379,222,0 +170753946428,224,0 +170753946476,223,0 +170753946526,223,0 +170753946574,223,0 +170753946623,223,0 +170753946673,215,0 +170753946722,215,0 +170753946772,216,0 +170753946820,217,0 +170753946870,218,0 +170753946918,219,0 +170753946966,219,0 +170753947014,220,0 +170753947063,220,0 +170753947113,222,0 +170753947161,222,0 +170753947210,224,0 +170753947258,225,0 +170753947308,223,0 +170753947357,223,0 +170753947405,224,0 +170753947453,221,0 +170753947501,223,0 +170753947549,216,0 +170753947599,215,0 +170753947648,215,0 +170753947698,215,0 +170753947747,217,0 +170753947797,217,0 +170753947846,218,0 +170753947894,220,0 +170753947942,219,0 +170753947990,220,0 +170753948040,222,0 +170753948089,222,0 +170753948137,224,0 +170753948185,225,0 +170753948233,224,0 +170753948283,224,0 +170753948332,224,0 +170753948380,223,0 +170753948430,223,0 +170753948478,215,0 +170753948526,214,0 +170753948575,216,0 +170753948625,216,0 +170753948674,217,0 +170753948722,218,0 +170753948772,218,0 +170753948821,220,0 +170753948871,220,0 +170753948920,221,0 +170753948968,222,0 +170753949016,221,0 +170753949066,223,0 +170753949114,223,0 +170753949162,224,0 +170753949210,224,0 +170753949259,224,0 +170753949307,223,0 +170753949355,215,0 +170753949403,214,0 +170753949453,215,0 +170753949501,216,0 +170753949549,217,0 +170753949598,217,0 +170753949648,218,0 +170753949697,219,0 +170753949747,220,0 +170753949796,220,0 +170753949844,222,0 +170753949894,222,0 +170753949942,221,0 +170753949991,223,0 +170753950039,223,0 +170753950087,223,0 +170753950135,223,0 +170753950185,222,0 +170753950234,215,0 +170753950284,215,0 +170753950332,216,0 +170753950380,217,0 +170753950428,218,0 +170753950476,218,0 +170753950524,219,0 +170753950573,219,0 +170753950623,221,0 +170753950672,221,0 +170753950722,224,0 +170753950771,223,0 +170753950819,222,0 +170753950867,223,0 +170753950915,223,0 +170753950963,223,0 +170753951013,222,0 +170753951062,222,0 +170753951112,217,0 +170753951160,219,0 +170753951209,217,0 +170753951257,219,0 +170753951305,219,0 +170753951355,219,0 +170753951403,222,0 +170753951452,221,0 +170753951502,222,0 +170753951550,222,0 +170753951598,223,0 +170753951647,225,0 +170753951697,224,0 +170753951745,223,0 +170753951794,223,0 +170753951844,223,0 +170753951893,224,0 +170753951941,222,0 +170753951991,218,0 +170753952039,217,0 +170753952087,218,0 +170753952135,218,0 +170753952184,219,0 +170753952232,220,0 +170753952282,221,0 +170753952331,220,0 +170753952379,223,0 +170753952427,222,0 +170753952475,222,0 +170753952525,223,0 +170753952574,223,0 +170753952624,223,0 +170753952672,224,0 +170753952720,223,0 +170753952767,224,0 +170753952817,224,0 +170753952867,217,0 +170753952914,217,0 +170753952962,217,0 +170753953010,218,0 +170753953058,219,0 +170753953106,220,0 +170753953154,220,0 +170753953202,221,0 +170753953252,221,0 +170753953301,222,0 +170753953351,224,0 +170753953400,223,0 +170753953448,223,0 +170753953496,223,0 +170753953545,224,0 +170753953593,222,0 +170753953643,223,0 +170753953691,222,0 +170753953739,217,0 +170753953787,217,0 +170753953835,217,0 +170753953883,219,0 +170753953931,219,0 +170753953980,219,0 +170753954028,220,0 +170753954076,221,0 +170753954124,222,0 +170753954172,222,0 +170753954220,223,0 +170753954268,224,0 +170753954316,222,0 +170753954364,223,0 +170753954412,223,0 +170753954461,224,0 +170753954509,223,0 +170753954557,223,0 +170753954605,221,0 +170753954653,215,0 +170753954701,216,0 +170753954751,217,0 +170753954800,218,0 +170753954848,219,0 +170753954898,220,0 +170753954946,220,0 +170753954994,220,0 +170753955042,221,0 +170753955090,222,0 +170753955139,222,0 +170753955187,223,0 +170753955235,222,0 +170753955285,224,0 +170753955334,224,0 +170753955384,226,0 +170753955432,223,0 +170753955480,222,0 +170753955528,215,0 +170753955576,215,0 +170753955625,216,0 +170753955673,217,0 +170753955721,217,0 +170753955769,217,0 +170753955818,219,0 +170753955866,220,0 +170753955914,220,0 +170753955962,220,0 +170753956012,222,0 +170753956060,222,0 +170753956108,223,0 +170753956157,221,0 +170753956205,222,0 +170753956253,222,0 +170753956301,223,0 +170753956349,222,0 +170753956398,215,0 +170753956446,215,0 +170753956496,216,0 +170753956544,216,0 +170753956592,217,0 +170753956641,218,0 +170753956689,219,0 +170753956737,219,0 +170753956787,219,0 +170753956836,220,0 +170753956884,222,0 +170753956932,221,0 +170753956980,222,0 +170753957029,223,0 +170753957079,224,0 +170753957127,223,0 +170753957176,223,0 +170753957224,223,0 +170753957272,216,0 +170753957320,215,0 +170753957368,216,0 +170753957416,216,0 +170753957464,217,0 +170753957512,216,0 +170753957560,218,0 +170753957608,218,0 +170753957656,219,0 +170753957704,220,0 +170753957752,221,0 +170753957801,221,0 +170753957851,221,0 +170753957900,222,0 +170753957948,224,0 +170753957996,223,0 +170753958046,223,0 +170753958095,223,0 +170753958145,216,0 +170753958193,216,0 +170753958242,217,0 +170753958290,217,0 +170753958338,217,0 +170753958386,218,0 +170753958434,220,0 +170753958484,220,0 +170753958532,220,0 +170753958580,221,0 +170753958628,223,0 +170753958677,222,0 +170753958725,223,0 +170753958775,225,0 +170753958823,222,0 +170753958871,223,0 +170753958919,223,0 +170753958968,223,0 +170753959018,216,0 +170753959066,217,0 +170753959115,218,0 +170753959163,218,0 +170753959211,220,0 +170753959259,223,0 +170753959307,221,0 +170753959355,222,0 +170753959402,223,0 +170753959452,224,0 +170753959500,223,0 +170753959548,223,0 +170753959596,224,0 +170753959645,224,0 +170753959693,224,0 +170753959741,224,0 +170753959789,224,0 +170753959838,223,0 +170753959886,217,0 +170753959934,217,0 +170753959982,217,0 +170753960030,220,0 +170753960077,220,0 +170753960125,222,0 +170753960173,221,0 +170753960221,222,0 +170753960269,223,0 +170753960317,223,0 +170753960365,223,0 +170753960413,223,0 +170753960460,224,0 +170753960508,224,0 +170753960556,224,0 +170753960604,223,0 +170753960652,222,0 +170753960700,224,0 +170753960748,223,0 +170753960795,217,0 +170753960843,216,0 +170753960891,217,0 +170753960939,217,0 +170753960987,219,0 +170753961035,220,0 +170753961084,221,0 +170753961132,222,0 +170753961180,222,0 +170753961228,222,0 +170753961276,223,0 +170753961323,227,0 +170753961371,224,0 +170753961421,223,0 +170753961470,223,0 +170753961518,223,0 +170753961566,223,0 +170753961614,223,0 +170753961662,216,0 +170753961710,215,0 +170753961757,216,0 +170753961805,217,0 +170753961853,217,0 +170753961901,218,0 +170753961949,218,0 +170753961998,220,0 +170753962046,220,0 +170753962096,222,0 +170753962144,223,0 +170753962192,223,0 +170753962240,223,0 +170753962289,223,0 +170753962337,223,0 +170753962385,223,0 +170753962435,223,0 +170753962483,223,0 +170753962532,216,0 +170753962582,215,0 +170753962630,216,0 +170753962677,217,0 +170753962725,217,0 +170753962773,218,0 +170753962821,218,0 +170753962869,219,0 +170753962917,220,0 +170753962967,220,0 +170753963015,221,0 +170753963064,222,0 +170753963112,222,0 +170753963161,222,0 +170753963209,227,0 +170753963257,224,0 +170753963305,228,0 +170753963354,224,0 +170753963404,223,0 +170753963452,215,0 +170753963500,216,0 +170753963547,217,0 +170753963597,218,0 +170753963646,219,0 +170753963694,219,0 +170753963742,220,0 +170753963790,220,0 +170753963838,220,0 +170753963887,221,0 +170753963935,221,0 +170753963983,222,0 +170753964031,227,0 +170753964079,223,0 +170753964128,224,0 +170753964178,224,0 +170753964226,224,0 +170753964275,223,0 +170753964324,216,0 +170753964372,215,0 +170753964420,216,0 +170753964468,217,0 +170753964516,217,0 +170753964564,218,0 +170753964612,219,0 +170753964661,220,0 +170753964709,220,0 +170753964757,222,0 +170753964806,223,0 +170753964854,223,0 +170753964902,224,0 +170753964952,224,0 +170753965000,225,0 +170753965049,223,0 +170753965097,224,0 +170753965147,222,0 +170753965196,216,0 +170753965246,214,0 +170753965295,215,0 +170753965345,217,0 +170753965393,217,0 +170753965441,218,0 +170753965489,218,0 +170753965538,219,0 +170753965586,220,0 +170753965634,220,0 +170753965682,221,0 +170753965730,222,0 +170753965779,223,0 +170753965827,223,0 +170753965875,223,0 +170753965923,224,0 +170753965970,223,0 +170753966020,223,0 +170753966068,216,0 +170753966116,214,0 +170753966163,215,0 +170753966211,216,0 +170753966259,216,0 +170753966309,218,0 +170753966357,219,0 +170753966405,219,0 +170753966453,220,0 +170753966500,220,0 +170753966548,221,0 +170753966598,221,0 +170753966646,223,0 +170753966694,224,0 +170753966741,223,0 +170753966789,223,0 +170753966839,223,0 +170753966887,223,0 +170753966935,219,0 +170753966983,215,0 +170753967031,216,0 +170753967080,217,0 +170753967128,217,0 +170753967177,218,0 +170753967227,220,0 +170753967275,221,0 +170753967324,220,0 +170753967372,221,0 +170753967420,222,0 +170753967468,223,0 +170753967518,222,0 +170753967566,222,0 +170753967614,223,0 +170753967662,224,0 +170753967709,222,0 +170753967757,224,0 +170753967807,222,0 +170753967855,215,0 +170753967904,216,0 +170753967952,218,0 +170753968002,219,0 +170753968050,220,0 +170753968098,222,0 +170753968146,221,0 +170753968193,221,0 +170753968241,219,0 +170753968289,223,0 +170753968337,223,0 +170753968385,223,0 +170753968433,223,0 +170753968481,224,0 +170753968528,224,0 +170753968576,223,0 +170753968626,223,0 +170753968675,222,0 +170753968723,215,0 +170753968771,215,0 +170753968820,216,0 +170753968868,217,0 +170753968916,217,0 +170753968964,219,0 +170753969012,220,0 +170753969060,220,0 +170753969108,221,0 +170753969156,222,0 +170753969205,222,0 +170753969253,222,0 +170753969301,223,0 +170753969349,222,0 +170753969397,222,0 +170753969446,223,0 +170753969494,224,0 +170753969542,222,0 +170753969590,216,0 +170753969638,214,0 +170753969686,215,0 +170753969736,216,0 +170753969784,217,0 +170753969832,217,0 +170753969881,218,0 +170753969929,218,0 +170753969977,219,0 +170753970025,220,0 +170753970074,221,0 +170753970122,222,0 +170753970170,223,0 +170753970218,223,0 +170753970266,224,0 +170753970316,223,0 +170753970364,223,0 +170753970412,223,0 +170753970460,216,0 +170753970509,215,0 +170753970557,216,0 +170753970605,216,0 +170753970653,217,0 +170753970701,217,0 +170753970749,218,0 +170753970797,219,0 +170753970846,219,0 +170753970894,220,0 +170753970944,221,0 +170753970993,223,0 +170753971041,222,0 +170753971091,222,0 +170753971140,223,0 +170753971188,222,0 +170753971236,222,0 +170753971284,223,0 +170753971332,221,0 +170753971380,214,0 +170753971428,215,0 +170753971476,216,0 +170753971524,217,0 +170753971572,217,0 +170753971620,218,0 +170753971668,219,0 +170753971718,219,0 +170753971765,220,0 +170753971815,221,0 +170753971863,222,0 +170753971911,222,0 +170753971960,222,0 +170753972008,223,0 +170753972056,223,0 +170753972104,223,0 +170753972152,223,0 +170753972200,222,0 +170753972250,215,0 +170753972298,216,0 +170753972345,217,0 +170753972395,217,0 +170753972444,218,0 +170753972494,218,0 +170753972542,218,0 +170753972590,218,0 +170753972638,220,0 +170753972687,220,0 +170753972735,221,0 +170753972783,222,0 +170753972831,223,0 +170753972879,224,0 +170753972927,224,0 +170753972975,224,0 +170753973023,223,0 +170753973072,223,0 +170753973120,216,0 +170753973168,216,0 +170753973216,217,0 +170753973264,218,0 +170753973312,220,0 +170753973360,219,0 +170753973408,220,0 +170753973456,221,0 +170753973505,222,0 +170753973553,221,0 +170753973601,222,0 +170753973650,223,0 +170753973698,223,0 +170753973746,223,0 +170753973794,221,0 +170753973842,223,0 +170753973892,224,0 +170753973939,223,0 +170753973987,218,0 +170753974037,218,0 +170753974087,219,0 +170753974134,221,0 +170753974184,220,0 +170753974233,221,0 +170753974281,221,0 +170753974329,222,0 +170753974377,223,0 +170753974425,223,0 +170753974473,222,0 +170753974523,223,0 +170753974572,223,0 +170753974620,223,0 +170753974670,224,0 +170753974718,223,0 +170753974766,223,0 +170753974815,223,0 +170753974863,219,0 +170753974911,220,0 +170753974961,219,0 +170753975010,221,0 +170753975058,221,0 +170753975106,221,0 +170753975156,222,0 +170753975205,222,0 +170753975255,223,0 +170753975303,224,0 +170753975351,223,0 +170753975399,223,0 +170753975447,225,0 +170753975496,224,0 +170753975544,224,0 +170753975592,224,0 +170753975640,223,0 +170753975688,222,0 +170753975736,222,0 +170753975784,219,0 +170753975832,220,0 +170753975881,222,0 +170753975929,221,0 +170753975979,223,0 +170753976027,222,0 +170753976076,223,0 +170753976126,223,0 +170753976175,224,0 +170753976223,224,0 +170753976271,223,0 +170753976321,223,0 +170753976369,224,0 +170753976416,224,0 +170753976466,223,0 +170753976516,222,0 +170753976565,223,0 +170753976613,222,0 +170753976661,217,0 +170753976709,218,0 +170753976757,220,0 +170753976805,220,0 +170753976854,221,0 +170753976902,222,0 +170753976950,221,0 +170753976998,223,0 +170753977048,223,0 +170753977096,224,0 +170753977145,223,0 +170753977193,222,0 +170753977243,223,0 +170753977291,223,0 +170753977340,224,0 +170753977388,222,0 +170753977436,223,0 +170753977484,223,0 +170753977534,216,0 +170753977581,216,0 +170753977631,217,0 +170753977679,217,0 +170753977728,217,0 +170753977776,219,0 +170753977824,220,0 +170753977872,221,0 +170753977922,220,0 +170753977970,221,0 +170753978018,222,0 +170753978066,222,0 +170753978115,223,0 +170753978163,223,0 +170753978211,223,0 +170753978261,223,0 +170753978310,223,0 +170753978360,222,0 +170753978409,215,0 +170753978457,215,0 +170753978507,216,0 +170753978555,217,0 +170753978603,217,0 +170753978651,218,0 +170753978700,218,0 +170753978748,218,0 +170753978798,220,0 +170753978846,220,0 +170753978895,220,0 +170753978943,221,0 +170753978993,222,0 +170753979041,223,0 +170753979090,223,0 +170753979140,224,0 +170753979188,223,0 +170753979235,222,0 +170753979283,216,0 +170753979333,216,0 +170753979383,216,0 +170753979431,217,0 +170753979480,218,0 +170753979528,219,0 +170753979578,220,0 +170753979626,219,0 +170753979673,221,0 +170753979723,222,0 +170753979771,222,0 +170753979819,224,0 +170753979868,224,0 +170753979916,224,0 +170753979964,224,0 +170753980012,224,0 +170753980060,222,0 +170753980108,223,0 +170753980158,216,0 +170753980207,216,0 +170753980257,216,0 +170753980305,218,0 +170753980353,220,0 +170753980401,219,0 +170753980450,220,0 +170753980498,221,0 +170753980546,221,0 +170753980595,222,0 +170753980643,223,0 +170753980691,223,0 +170753980739,224,0 +170753980789,223,0 +170753980836,224,0 +170753980884,223,0 +170753980932,223,0 +170753980982,223,0 +170753981030,216,0 +170753981078,215,0 +170753981126,215,0 +170753981174,215,0 +170753981222,216,0 +170753981272,217,0 +170753981320,218,0 +170753981367,219,0 +170753981417,220,0 +170753981465,220,0 +170753981513,221,0 +170753981561,220,0 +170753981609,223,0 +170753981657,223,0 +170753981705,223,0 +170753981752,223,0 +170753981802,223,0 +170753981852,225,0 +170753981900,220,0 +170753981947,215,0 +170753981995,215,0 +170753982043,215,0 +170753982093,217,0 +170753982141,217,0 +170753982190,218,0 +170753982238,218,0 +170753982286,219,0 +170753982334,220,0 +170753982382,220,0 +170753982430,221,0 +170753982478,222,0 +170753982526,223,0 +170753982574,223,0 +170753982622,224,0 +170753982669,223,0 +170753982717,223,0 +170753982765,223,0 +170753982814,215,0 +170753982864,215,0 +170753982912,215,0 +170753982960,216,0 +170753983008,216,0 +170753983055,219,0 +170753983103,217,0 +170753983151,220,0 +170753983199,220,0 +170753983247,220,0 +170753983295,221,0 +170753983343,222,0 +170753983391,222,0 +170753983438,223,0 +170753983486,223,0 +170753983536,223,0 +170753983584,223,0 +170753983633,223,0 +170753983681,216,0 +170753983729,216,0 +170753983777,218,0 +170753983826,218,0 +170753983876,218,0 +170753983923,219,0 +170753983971,220,0 +170753984019,220,0 +170753984069,221,0 +170753984118,221,0 +170753984166,222,0 +170753984214,222,0 +170753984262,222,0 +170753984310,223,0 +170753984357,223,0 +170753984405,223,0 +170753984453,223,0 +170753984501,223,0 +170753984550,222,0 +170753984600,216,0 +170753984648,217,0 +170753984697,218,0 +170753984747,219,0 +170753984795,220,0 +170753984844,220,0 +170753984892,222,0 +170753984940,222,0 +170753984988,226,0 +170753985035,222,0 +170753985083,222,0 +170753985133,224,0 +170753985181,223,0 +170753985229,224,0 +170753985278,225,0 +170753985326,223,0 +170753985374,224,0 +170753985422,222,0 +170753985470,215,0 +170753985517,216,0 +170753985567,217,0 +170753985615,217,0 +170753985663,218,0 +170753985710,219,0 +170753985758,219,0 +170753985806,220,0 +170753985856,221,0 +170753985903,222,0 +170753985951,221,0 +170753985999,223,0 +170753986049,222,0 +170753986096,223,0 +170753986146,226,0 +170753986194,224,0 +170753986242,224,0 +170753986291,222,0 +170753986339,216,0 +170753986387,216,0 +170753986435,216,0 +170753986483,217,0 +170753986530,218,0 +170753986578,219,0 +170753986626,220,0 +170753986674,220,0 +170753986722,221,0 +170753986770,221,0 +170753986818,222,0 +170753986866,222,0 +170753986913,222,0 +170753986961,223,0 +170753987009,223,0 +170753987057,223,0 +170753987105,222,0 +170753987153,222,0 +170753987200,216,0 +170753987248,215,0 +170753987296,216,0 +170753987344,217,0 +170753987392,218,0 +170753987440,219,0 +170753987488,219,0 +170753987536,220,0 +170753987583,220,0 +170753987633,221,0 +170753987682,222,0 +170753987732,222,0 +170753987781,222,0 +170753987829,223,0 +170753987877,223,0 +170753987925,222,0 +170753987973,222,0 +170753988021,222,0 +170753988069,222,0 +170753988116,216,0 +170753988164,216,0 +170753988212,217,0 +170753988260,218,0 +170753988308,218,0 +170753988356,220,0 +170753988403,220,0 +170753988451,220,0 +170753988499,221,0 +170753988547,222,0 +170753988595,222,0 +170753988645,222,0 +170753988694,223,0 +170753988742,224,0 +170753988790,224,0 +170753988838,223,0 +170753988886,233,0 +170753988934,225,0 +170753988982,217,0 +170753989031,215,0 +170753989081,216,0 +170753989130,217,0 +170753989178,217,0 +170753989226,218,0 +170753989276,220,0 +170753989324,219,0 +170753989372,220,0 +170753989421,222,0 +170753989471,222,0 +170753989519,223,0 +170753989567,223,0 +170753989615,223,0 +170753989664,223,0 +170753989712,222,0 +170753989762,223,0 +170753989810,222,0 +170753989859,215,0 +170753989907,216,0 +170753989957,216,0 +170753990006,217,0 +170753990054,217,0 +170753990102,218,0 +170753990150,219,0 +170753990199,222,0 +170753990247,220,0 +170753990297,222,0 +170753990347,224,0 +170753990394,222,0 +170753990442,223,0 +170753990490,223,0 +170753990540,223,0 +170753990588,223,0 +170753990635,224,0 +170753990683,224,0 +170753990733,225,0 +170753990781,215,0 +170753990828,216,0 +170753990876,217,0 +170753990924,218,0 +170753990972,218,0 +170753991020,219,0 +170753991068,219,0 +170753991116,220,0 +170753991164,221,0 +170753991211,221,0 +170753991259,223,0 +170753991307,223,0 +170753991355,224,0 +170753991403,222,0 +170753991451,224,0 +170753991499,224,0 +170753991547,224,0 +170753991595,223,0 +170753991644,218,0 +170753991692,217,0 +170753991740,217,0 +170753991788,218,0 +170753991836,219,0 +170753991884,219,0 +170753991932,220,0 +170753991981,222,0 +170753992029,223,0 +170753992077,222,0 +170753992124,223,0 +170753992172,223,0 +170753992220,223,0 +170753992268,225,0 +170753992316,224,0 +170753992364,222,0 +170753992412,223,0 +170753992460,223,0 +170753992509,217,0 +170753992557,216,0 +170753992605,217,0 +170753992653,218,0 +170753992701,218,0 +170753992749,219,0 +170753992798,221,0 +170753992847,221,0 +170753992895,221,0 +170753992945,222,0 +170753992993,222,0 +170753993042,223,0 +170753993092,223,0 +170753993141,223,0 +170753993189,223,0 +170753993237,225,0 +170753993285,224,0 +170753993332,223,0 +170753993382,223,0 +170753993430,215,0 +170753993478,216,0 +170753993527,216,0 +170753993575,218,0 +170753993623,218,0 +170753993671,219,0 +170753993720,220,0 +170753993768,220,0 +170753993816,222,0 +170753993864,222,0 +170753993911,227,0 +170753993959,223,0 +170753994007,225,0 +170753994057,223,0 +170753994104,224,0 +170753994152,223,0 +170753994202,223,0 +170753994250,222,0 +170753994297,217,0 +170753994345,219,0 +170753994393,218,0 +170753994441,218,0 +170753994489,219,0 +170753994537,221,0 +170753994585,220,0 +170753994633,222,0 +170753994682,223,0 +170753994730,222,0 +170753994778,223,0 +170753994826,222,0 +170753994874,222,0 +170753994921,223,0 +170753994969,223,0 +170753995017,224,0 +170753995067,224,0 +170753995115,223,0 +170753995163,218,0 +170753995211,217,0 +170753995259,218,0 +170753995307,218,0 +170753995356,219,0 +170753995404,219,0 +170753995454,220,0 +170753995502,221,0 +170753995551,222,0 +170753995599,224,0 +170753995648,224,0 +170753995696,223,0 +170753995744,223,0 +170753995792,223,0 +170753995840,222,0 +170753995888,225,0 +170753995937,225,0 +170753995985,223,0 +170753996033,216,0 +170753996081,216,0 +170753996129,216,0 +170753996177,217,0 +170753996225,218,0 +170753996273,225,0 +170753996320,220,0 +170753996370,221,0 +170753996418,221,0 +170753996467,222,0 +170753996517,222,0 +170753996565,224,0 +170753996613,222,0 +170753996661,223,0 +170753996710,224,0 +170753996759,224,0 +170753996807,224,0 +170753996857,223,0 +170753996905,222,0 +170753996953,215,0 +170753997002,216,0 +170753997050,217,0 +170753997100,218,0 +170753997148,218,0 +170753997196,219,0 +170753997244,220,0 +170753997292,220,0 +170753997339,221,0 +170753997389,222,0 +170753997437,223,0 +170753997485,224,0 +170753997533,223,0 +170753997581,224,0 +170753997629,224,0 +170753997678,223,0 +170753997726,223,0 +170753997774,222,0 +170753997822,215,0 +170753997871,215,0 +170753997919,215,0 +170753997969,217,0 +170753998017,217,0 +170753998065,217,0 +170753998113,219,0 +170753998162,219,0 +170753998212,219,0 +170753998260,221,0 +170753998308,225,0 +170753998356,222,0 +170753998404,222,0 +170753998452,223,0 +170753998501,223,0 +170753998549,222,0 +170753998597,223,0 +170753998645,223,0 +170753998693,216,0 +170753998741,215,0 +170753998789,217,0 +170753998837,217,0 +170753998885,218,0 +170753998933,218,0 +170753998981,218,0 +170753999029,219,0 +170753999078,220,0 +170753999126,221,0 +170753999174,223,0 +170753999222,222,0 +170753999272,223,0 +170753999321,223,0 +170753999369,224,0 +170753999418,224,0 +170753999466,223,0 +170753999516,220,0 +170753999564,217,0 +170753999612,217,0 +170753999661,217,0 +170753999709,218,0 +170753999757,219,0 +170753999805,219,0 +170753999853,220,0 +170753999901,221,0 +170753999951,221,0 +170753999999,222,0 +170754000048,224,0 +170754000096,223,0 +170754000144,223,0 +170754000193,222,0 +170754000241,223,0 +170754000289,223,0 +170754000337,223,0 +170754000385,222,0 +170754000433,221,0 +170754000481,218,0 +170754000529,218,0 +170754000577,219,0 +170754000625,221,0 +170754000673,220,0 +170754000722,222,0 +170754000772,221,0 +170754000820,222,0 +170754000868,222,0 +170754000916,223,0 +170754000964,223,0 +170754001011,223,0 +170754001059,223,0 +170754001107,223,0 +170754001155,223,0 +170754001205,223,0 +170754001253,223,0 +170754001302,222,0 +170754001352,217,0 +170754001399,218,0 +170754001447,220,0 +170754001495,220,0 +170754001543,221,0 +170754001593,222,0 +170754001642,224,0 +170754001690,223,0 +170754001738,224,0 +170754001786,221,0 +170754001834,223,0 +170754001882,225,0 +170754001930,224,0 +170754001978,223,0 +170754002027,224,0 +170754002075,224,0 +170754002123,223,0 +170754002171,222,0 +170754002219,217,0 +170754002267,217,0 +170754002315,217,0 +170754002363,218,0 +170754002411,219,0 +170754002459,220,0 +170754002508,220,0 +170754002556,220,0 +170754002604,221,0 +170754002652,222,0 +170754002700,222,0 +170754002750,223,0 +170754002799,224,0 +170754002849,224,0 +170754002897,224,0 +170754002945,227,0 +170754002993,224,0 +170754003041,221,0 +170754003090,216,0 +170754003140,215,0 +170754003189,216,0 +170754003237,217,0 +170754003287,218,0 +170754003336,218,0 +170754003384,219,0 +170754003432,220,0 +170754003482,221,0 +170754003530,222,0 +170754003577,221,0 +170754003625,223,0 +170754003673,222,0 +170754003723,222,0 +170754003771,223,0 +170754003819,223,0 +170754003868,225,0 +170754003916,223,0 +170754003964,221,0 +170754004012,215,0 +170754004060,215,0 +170754004108,216,0 +170754004156,217,0 +170754004205,218,0 +170754004253,219,0 +170754004301,219,0 +170754004351,219,0 +170754004400,220,0 +170754004450,221,0 +170754004498,221,0 +170754004546,222,0 +170754004595,221,0 +170754004645,223,0 +170754004693,223,0 +170754004741,223,0 +170754004789,223,0 +170754004838,222,0 +170754004888,215,0 +170754004936,216,0 +170754004984,217,0 +170754005032,217,0 +170754005079,218,0 +170754005127,219,0 +170754005175,219,0 +170754005223,220,0 +170754005273,220,0 +170754005322,222,0 +170754005370,222,0 +170754005420,222,0 +170754005468,224,0 +170754005517,223,0 +170754005565,224,0 +170754005613,223,0 +170754005663,223,0 +170754005711,222,0 +170754005759,215,0 +170754005807,215,0 +170754005856,217,0 +170754005906,217,0 +170754005954,218,0 +170754006003,218,0 +170754006051,219,0 +170754006101,220,0 +170754006150,220,0 +170754006198,221,0 +170754006246,221,0 +170754006296,223,0 +170754006344,223,0 +170754006393,223,0 +170754006443,223,0 +170754006491,224,0 +170754006540,223,0 +170754006588,223,0 +170754006638,216,0 +170754006686,215,0 +170754006735,216,0 +170754006783,217,0 +170754006832,217,0 +170754006880,218,0 +170754006930,219,0 +170754006979,220,0 +170754007027,220,0 +170754007075,223,0 +170754007123,222,0 +170754007171,223,0 +170754007219,222,0 +170754007267,224,0 +170754007317,224,0 +170754007366,223,0 +170754007414,223,0 +170754007462,223,0 +170754007510,217,0 +170754007558,215,0 +170754007608,217,0 +170754007655,218,0 +170754007703,218,0 +170754007751,219,0 +170754007799,219,0 +170754007847,220,0 +170754007895,220,0 +170754007943,222,0 +170754007993,221,0 +170754008041,223,0 +170754008088,223,0 +170754008136,223,0 +170754008186,223,0 +170754008234,223,0 +170754008283,223,0 +170754008331,226,0 +170754008379,221,0 +170754008429,217,0 +170754008478,217,0 +170754008526,218,0 +170754008574,220,0 +170754008622,219,0 +170754008670,219,0 +170754008720,221,0 +170754008768,221,0 +170754008816,223,0 +170754008863,223,0 +170754008911,224,0 +170754008961,221,0 +170754009010,224,0 +170754009058,223,0 +170754009108,217,0 +170754009157,223,0 +170754009207,223,0 +170754009255,223,0 +170754009303,215,0 +170754009352,215,0 +170754009402,215,0 +170754009451,217,0 +170754009499,218,0 +170754009549,219,0 +170754009597,222,0 +170754009645,220,0 +170754009694,222,0 +170754009742,222,0 +170754009792,222,0 +170754009840,224,0 +170754009889,224,0 +170754009937,223,0 +170754009986,223,0 +170754010034,224,0 +170754010084,223,0 +170754010133,223,0 +170754010181,216,0 +170754010231,214,0 +170754010279,215,0 +170754010327,216,0 +170754010375,216,0 +170754010424,218,0 +170754010472,218,0 +170754010520,220,0 +170754010568,219,0 +170754010616,221,0 +170754010666,221,0 +170754010715,221,0 +170754010765,222,0 +170754010814,222,0 +170754010862,223,0 +170754010912,224,0 +170754010960,225,0 +170754011009,223,0 +170754011057,216,0 +170754011107,214,0 +170754011156,216,0 +170754011206,216,0 +170754011254,217,0 +170754011303,218,0 +170754011351,219,0 +170754011401,220,0 +170754011450,220,0 +170754011500,222,0 +170754011549,222,0 +170754011597,222,0 +170754011647,221,0 +170754011696,223,0 +170754011744,225,0 +170754011792,223,0 +170754011840,223,0 +170754011890,222,0 +170754011938,216,0 +170754011985,215,0 +170754012033,214,0 +170754012083,217,0 +170754012133,218,0 +170754012181,218,0 +170754012228,218,0 +170754012276,220,0 +170754012326,220,0 +170754012374,221,0 +170754012422,221,0 +170754012470,222,0 +170754012518,222,0 +170754012567,222,0 +170754012615,223,0 +170754012663,223,0 +170754012712,222,0 +170754012762,223,0 +170754012810,222,0 +170754012858,215,0 +170754012906,216,0 +170754012954,217,0 +170754013002,218,0 +170754013051,218,0 +170754013099,219,0 +170754013147,219,0 +170754013196,220,0 +170754013244,220,0 +170754013292,222,0 +170754013340,222,0 +170754013390,222,0 +170754013439,223,0 +170754013489,223,0 +170754013537,224,0 +170754013585,224,0 +170754013633,223,0 +170754013681,223,0 +170754013729,216,0 +170754013777,216,0 +170754013826,218,0 +170754013874,218,0 +170754013922,218,0 +170754013970,219,0 +170754014019,220,0 +170754014067,220,0 +170754014115,220,0 +170754014163,222,0 +170754014213,223,0 +170754014261,223,0 +170754014310,222,0 +170754014358,223,0 +170754014406,224,0 +170754014454,223,0 +170754014504,223,0 +170754014553,223,0 +170754014601,217,0 +170754014649,217,0 +170754014697,218,0 +170754014747,218,0 +170754014795,219,0 +170754014843,219,0 +170754014891,221,0 +170754014939,222,0 +170754014987,221,0 +170754015034,222,0 +170754015082,222,0 +170754015130,223,0 +170754015178,224,0 +170754015226,223,0 +170754015274,225,0 +170754015324,224,0 +170754015372,223,0 +170754015419,223,0 +170754015467,216,0 +170754015517,216,0 +170754015567,217,0 +170754015615,218,0 +170754015664,219,0 +170754015712,219,0 +170754015760,219,0 +170754015808,221,0 +170754015856,221,0 +170754015904,223,0 +170754015953,222,0 +170754016003,223,0 +170754016052,223,0 +170754016100,223,0 +170754016150,223,0 +170754016199,223,0 +170754016247,224,0 +170754016297,223,0 +170754016345,223,0 +170754016393,217,0 +170754016441,218,0 +170754016489,219,0 +170754016536,219,0 +170754016584,220,0 +170754016634,221,0 +170754016682,222,0 +170754016730,221,0 +170754016779,223,0 +170754016827,223,0 +170754016875,222,0 +170754016925,223,0 +170754016973,223,0 +170754017022,223,0 +170754017070,223,0 +170754017120,223,0 +170754017168,224,0 +170754017217,223,0 +170754017265,219,0 +170754017315,219,0 +170754017363,219,0 +170754017412,220,0 +170754017460,220,0 +170754017508,222,0 +170754017556,221,0 +170754017604,221,0 +170754017653,223,0 +170754017703,223,0 +170754017751,222,0 +170754017799,223,0 +170754017847,224,0 +170754017895,223,0 +170754017944,224,0 +170754017992,224,0 +170754018042,224,0 +170754018090,223,0 +170754018139,216,0 +170754018187,218,0 +170754018235,219,0 +170754018283,220,0 +170754018331,220,0 +170754018379,220,0 +170754018427,221,0 +170754018475,222,0 +170754018523,223,0 +170754018571,222,0 +170754018620,223,0 +170754018670,223,0 +170754018718,223,0 +170754018766,223,0 +170754018815,223,0 +170754018865,224,0 +170754018913,223,0 +170754018961,223,0 +170754019010,216,0 +170754019058,216,0 +170754019106,217,0 +170754019154,217,0 +170754019202,218,0 +170754019250,220,0 +170754019298,220,0 +170754019347,220,0 +170754019395,221,0 +170754019443,222,0 +170754019491,222,0 +170754019539,223,0 +170754019587,223,0 +170754019637,223,0 +170754019685,223,0 +170754019734,224,0 +170754019782,222,0 +170754019831,223,0 +170754019879,216,0 +170754019927,214,0 +170754019977,215,0 +170754020025,216,0 +170754020073,217,0 +170754020122,218,0 +170754020170,218,0 +170754020220,219,0 +170754020268,220,0 +170754020316,221,0 +170754020364,221,0 +170754020413,221,0 +170754020461,222,0 +170754020511,222,0 +170754020559,223,0 +170754020607,222,0 +170754020656,222,0 +170754020704,223,0 +170754020752,215,0 +170754020800,215,0 +170754020849,215,0 +170754020897,215,0 +170754020947,215,0 +170754020995,216,0 +170754021044,217,0 +170754021092,218,0 +170754021140,219,0 +170754021188,220,0 +170754021236,221,0 +170754021286,222,0 +170754021335,222,0 +170754021385,224,0 +170754021433,222,0 +170754021482,224,0 +170754021530,223,0 +170754021578,222,0 +170754021626,214,0 +170754021675,214,0 +170754021723,215,0 +170754021771,215,0 +170754021821,215,0 +170754021869,216,0 +170754021917,217,0 +170754021965,217,0 +170754022013,218,0 +170754022062,219,0 +170754022110,219,0 +170754022160,221,0 +170754022208,220,0 +170754022255,221,0 +170754022303,223,0 +170754022351,223,0 +170754022401,223,0 +170754022451,223,0 +170754022499,215,0 +170754022548,215,0 +170754022598,216,0 +170754022647,217,0 +170754022697,217,0 +170754022744,219,0 +170754022794,219,0 +170754022842,219,0 +170754022890,219,0 +170754022938,222,0 +170754022987,223,0 +170754023037,222,0 +170754023086,223,0 +170754023136,224,0 +170754023184,223,0 +170754023233,224,0 +170754023281,223,0 +170754023329,217,0 +170754023377,215,0 +170754023426,216,0 +170754023474,216,0 +170754023522,217,0 +170754023570,219,0 +170754023618,218,0 +170754023668,219,0 +170754023716,219,0 +170754023764,222,0 +170754023811,222,0 +170754023859,223,0 +170754023909,223,0 +170754023959,223,0 +170754024008,223,0 +170754024056,223,0 +170754024104,223,0 +170754024152,223,0 +170754024201,216,0 +170754024251,217,0 +170754024299,217,0 +170754024347,218,0 +170754024396,218,0 +170754024444,220,0 +170754024494,221,0 +170754024542,221,0 +170754024591,220,0 +170754024641,222,0 +170754024689,222,0 +170754024737,223,0 +170754024785,223,0 +170754024833,222,0 +170754024882,224,0 +170754024930,223,0 +170754024978,223,0 +170754025027,223,0 +170754025075,218,0 +170754025123,218,0 +170754025171,219,0 +170754025221,218,0 +170754025269,220,0 +170754025317,220,0 +170754025365,220,0 +170754025414,221,0 +170754025462,223,0 +170754025510,223,0 +170754025558,224,0 +170754025606,223,0 +170754025656,223,0 +170754025705,222,0 +170754025753,224,0 +170754025803,223,0 +170754025851,224,0 +170754025899,222,0 +170754025947,217,0 +170754025994,218,0 +170754026042,218,0 +170754026092,219,0 +170754026140,219,0 +170754026188,220,0 +170754026236,221,0 +170754026284,221,0 +170754026331,221,0 +170754026379,223,0 +170754026427,224,0 +170754026475,223,0 +170754026523,224,0 +170754026572,225,0 +170754026620,223,0 +170754026668,223,0 +170754026716,224,0 +170754026764,222,0 +170754026812,215,0 +170754026860,216,0 +170754026908,217,0 +170754026956,217,0 +170754027004,219,0 +170754027052,221,0 +170754027100,221,0 +170754027149,221,0 +170754027197,222,0 +170754027245,223,0 +170754027295,223,0 +170754027344,223,0 +170754027392,223,0 +170754027440,223,0 +170754027488,223,0 +170754027538,224,0 +170754027585,223,0 +170754027635,219,0 +170754027684,216,0 +170754027733,218,0 +170754027781,218,0 +170754027830,219,0 +170754027880,219,0 +170754027928,220,0 +170754027977,220,0 +170754028027,221,0 +170754028075,222,0 +170754028123,222,0 +170754028172,223,0 +170754028222,223,0 +170754028270,221,0 +170754028318,223,0 +170754028366,224,0 +170754028414,223,0 +170754028463,222,0 +170754028511,220,0 +170754028561,215,0 +170754028609,216,0 +170754028657,217,0 +170754028705,219,0 +170754028752,219,0 +170754028800,220,0 +170754028848,221,0 +170754028896,221,0 +170754028944,223,0 +170754028994,222,0 +170754029043,223,0 +170754029091,223,0 +170754029139,224,0 +170754029187,223,0 +170754029236,223,0 +170754029284,224,0 +170754029332,222,0 +170754029380,217,0 +170754029428,216,0 +170754029478,217,0 +170754029527,217,0 +170754029577,218,0 +170754029626,219,0 +170754029676,219,0 +170754029725,220,0 +170754029773,221,0 +170754029823,221,0 +170754029871,223,0 +170754029919,223,0 +170754029968,223,0 +170754030018,223,0 +170754030067,223,0 +170754030115,224,0 +170754030165,223,0 +170754030214,222,0 +170754030262,215,0 +170754030310,217,0 +170754030360,217,0 +170754030408,217,0 +170754030456,218,0 +170754030505,219,0 +170754030555,220,0 +170754030603,220,0 +170754030651,220,0 +170754030699,222,0 +170754030746,222,0 +170754030794,223,0 +170754030844,223,0 +170754030892,223,0 +170754030941,224,0 +170754030989,224,0 +170754031039,224,0 +170754031087,222,0 +170754031135,215,0 +170754031183,215,0 +170754031232,216,0 +170754031282,217,0 +170754031330,217,0 +170754031379,219,0 +170754031429,219,0 +170754031478,220,0 +170754031528,221,0 +170754031576,217,0 +170754031625,222,0 +170754031673,223,0 +170754031723,217,0 +170754031772,223,0 +170754031820,224,0 +170754031868,223,0 +170754031916,223,0 +170754031964,222,0 +170754032012,215,0 +170754032062,215,0 +170754032110,216,0 +170754032159,216,0 +170754032207,217,0 +170754032255,218,0 +170754032303,219,0 +170754032351,219,0 +170754032399,220,0 +170754032448,222,0 +170754032498,223,0 +170754032545,222,0 +170754032593,222,0 +170754032643,223,0 +170754032693,224,0 +170754032740,224,0 +170754032788,223,0 +170754032836,215,0 +170754032884,215,0 +170754032932,216,0 +170754032980,217,0 +170754033029,218,0 +170754033079,218,0 +170754033128,218,0 +170754033176,219,0 +170754033226,221,0 +170754033274,221,0 +170754033322,221,0 +170754033371,222,0 +170754033421,222,0 +170754033470,222,0 +170754033518,223,0 +170754033568,223,0 +170754033616,223,0 +170754033664,224,0 +170754033712,216,0 +170754033761,217,0 +170754033811,217,0 +170754033860,219,0 +170754033908,219,0 +170754033956,221,0 +170754034006,220,0 +170754034055,221,0 +170754034105,221,0 +170754034153,223,0 +170754034202,223,0 +170754034252,224,0 +170754034300,224,0 +170754034349,225,0 +170754034397,223,0 +170754034447,224,0 +170754034495,223,0 +170754034543,222,0 +170754034591,215,0 +170754034640,216,0 +170754034688,217,0 +170754034736,218,0 +170754034784,218,0 +170754034832,218,0 +170754034882,219,0 +170754034931,221,0 +170754034979,221,0 +170754035027,221,0 +170754035075,222,0 +170754035125,222,0 +170754035174,224,0 +170754035222,223,0 +170754035270,222,0 +170754035318,223,0 +170754035366,223,0 +170754035414,224,0 +170754035462,215,0 +170754035510,216,0 +170754035558,216,0 +170754035606,217,0 +170754035655,218,0 +170754035703,218,0 +170754035751,219,0 +170754035801,220,0 +170754035850,223,0 +170754035898,221,0 +170754035946,222,0 +170754035996,222,0 +170754036044,222,0 +170754036093,223,0 +170754036143,223,0 +170754036192,223,0 +170754036242,223,0 +170754036291,216,0 +170754036339,215,0 +170754036387,216,0 +170754036437,217,0 +170754036485,217,0 +170754036533,218,0 +170754036580,219,0 +170754036628,219,0 +170754036676,219,0 +170754036726,220,0 +170754036774,220,0 +170754036822,221,0 +170754036870,223,0 +170754036918,222,0 +170754036966,223,0 +170754037014,223,0 +170754037062,224,0 +170754037109,223,0 +170754037157,216,0 +170754037205,217,0 +170754037253,217,0 +170754037303,219,0 +170754037352,219,0 +170754037400,220,0 +170754037448,220,0 +170754037496,220,0 +170754037546,221,0 +170754037595,222,0 +170754037643,222,0 +170754037691,222,0 +170754037741,224,0 +170754037790,225,0 +170754037838,224,0 +170754037888,223,0 +170754037937,226,0 +170754037985,222,0 +170754038033,216,0 +170754038083,216,0 +170754038131,217,0 +170754038179,218,0 +170754038227,219,0 +170754038276,220,0 +170754038324,220,0 +170754038372,220,0 +170754038420,221,0 +170754038468,222,0 +170754038516,223,0 +170754038566,224,0 +170754038615,225,0 +170754038665,224,0 +170754038714,222,0 +170754038762,223,0 +170754038810,224,0 +170754038860,223,0 +170754038909,217,0 +170754038957,218,0 +170754039007,219,0 +170754039056,219,0 +170754039104,220,0 +170754039152,221,0 +170754039202,220,0 +170754039250,222,0 +170754039297,222,0 +170754039347,222,0 +170754039397,222,0 +170754039446,224,0 +170754039496,223,0 +170754039545,223,0 +170754039593,223,0 +170754039641,222,0 +170754039691,224,0 +170754039740,218,0 +170754039788,218,0 +170754039837,218,0 +170754039887,218,0 +170754039937,220,0 +170754039986,220,0 +170754040036,221,0 +170754040084,221,0 +170754040132,221,0 +170754040181,223,0 +170754040231,226,0 +170754040279,224,0 +170754040328,223,0 +170754040376,225,0 +170754040426,225,0 +170754040474,224,0 +170754040523,223,0 +170754040571,223,0 +170754040619,221,0 +170754040667,220,0 +170754040717,221,0 +170754040765,221,0 +170754040814,222,0 +170754040862,223,0 +170754040911,223,0 +170754040959,225,0 +170754041007,224,0 +170754041055,224,0 +170754041103,224,0 +170754041151,223,0 +170754041199,223,0 +170754041248,224,0 +170754041296,224,0 +170754041344,223,0 +170754041394,223,0 +170754041442,222,0 +170754041491,220,0 +170754041541,220,0 +170754041589,221,0 +170754041637,223,0 +170754041686,222,0 +170754041734,224,0 +170754041782,223,0 +170754041832,224,0 +170754041880,225,0 +170754041928,226,0 +170754041977,225,0 +170754042027,224,0 +170754042076,223,0 +170754042126,223,0 +170754042175,223,0 +170754042225,223,0 +170754042273,222,0 +170754042321,220,0 +170754042369,219,0 +170754042418,220,0 +170754042466,220,0 +170754042514,221,0 +170754042562,223,0 +170754042611,222,0 +170754042661,223,0 +170754042711,222,0 +170754042760,224,0 +170754042809,224,0 +170754042857,223,0 +170754042905,223,0 +170754042953,223,0 +170754043003,223,0 +170754043051,223,0 +170754043099,223,0 +170754043148,221,0 +170754043198,217,0 +170754043246,217,0 +170754043295,218,0 +170754043343,219,0 +170754043393,219,0 +170754043441,222,0 +170754043490,221,0 +170754043540,221,0 +170754043588,223,0 +170754043636,222,0 +170754043685,223,0 +170754043733,225,0 +170754043783,224,0 +170754043832,224,0 +170754043882,223,0 +170754043930,223,0 +170754043979,223,0 +170754044027,223,0 +170754044075,216,0 +170754044123,215,0 +170754044171,217,0 +170754044221,217,0 +170754044270,219,0 +170754044320,220,0 +170754044369,220,0 +170754044417,221,0 +170754044467,221,0 +170754044515,222,0 +170754044564,223,0 +170754044612,223,0 +170754044662,223,0 +170754044710,224,0 +170754044759,223,0 +170754044807,224,0 +170754044855,223,0 +170754044905,221,0 +170754044953,215,0 +170754045002,215,0 +170754045052,216,0 +170754045100,217,0 +170754045148,218,0 +170754045196,219,0 +170754045244,219,0 +170754045293,220,0 +170754045343,221,0 +170754045392,222,0 +170754045440,222,0 +170754045490,222,0 +170754045538,222,0 +170754045587,223,0 +170754045637,223,0 +170754045685,223,0 +170754045733,223,0 +170754045780,216,0 +170754045828,215,0 +170754045876,215,0 +170754045924,216,0 +170754045972,216,0 +170754046020,217,0 +170754046070,217,0 +170754046118,217,0 +170754046166,218,0 +170754046214,220,0 +170754046262,220,0 +170754046310,221,0 +170754046359,224,0 +170754046407,223,0 +170754046455,222,0 +170754046505,223,0 +170754046553,222,0 +170754046600,223,0 +170754046650,214,0 +170754046700,215,0 +170754046748,216,0 +170754046795,217,0 +170754046843,217,0 +170754046891,218,0 +170754046939,218,0 +170754046987,220,0 +170754047037,220,0 +170754047085,220,0 +170754047133,221,0 +170754047181,223,0 +170754047230,223,0 +170754047280,226,0 +170754047328,223,0 +170754047376,223,0 +170754047424,223,0 +170754047473,222,0 +170754047521,215,0 +170754047569,216,0 +170754047617,217,0 +170754047665,217,0 +170754047713,219,0 +170754047761,219,0 +170754047809,220,0 +170754047857,220,0 +170754047906,221,0 +170754047956,222,0 +170754048004,221,0 +170754048053,226,0 +170754048101,223,0 +170754048149,223,0 +170754048197,223,0 +170754048247,224,0 +170754048296,224,0 +170754048344,216,0 +170754048392,216,0 +170754048440,215,0 +170754048488,218,0 +170754048536,219,0 +170754048586,219,0 +170754048635,220,0 +170754048685,220,0 +170754048733,221,0 +170754048781,222,0 +170754048829,222,0 +170754048877,222,0 +170754048926,223,0 +170754048974,222,0 +170754049023,223,0 +170754049073,222,0 +170754049122,222,0 +170754049170,222,0 +170754049220,216,0 +170754049268,216,0 +170754049316,216,0 +170754049364,218,0 +170754049412,219,0 +170754049460,219,0 +170754049508,220,0 +170754049556,221,0 +170754049604,222,0 +170754049652,221,0 +170754049700,223,0 +170754049749,222,0 +170754049799,223,0 +170754049847,222,0 +170754049895,224,0 +170754049943,223,0 +170754049991,223,0 +170754050039,222,0 +170754050086,216,0 +170754050136,214,0 +170754050184,215,0 +170754050232,216,0 +170754050281,217,0 +170754050331,218,0 +170754050379,219,0 +170754050429,220,0 +170754050478,220,0 +170754050526,221,0 +170754050574,222,0 +170754050622,222,0 +170754050670,224,0 +170754050719,222,0 +170754050767,223,0 +170754050815,223,0 +170754050865,224,0 +170754050914,223,0 +170754050962,215,0 +170754051012,216,0 +170754051062,216,0 +170754051109,217,0 +170754051157,218,0 +170754051205,218,0 +170754051255,218,0 +170754051303,221,0 +170754051352,220,0 +170754051402,220,0 +170754051451,221,0 +170754051499,222,0 +170754051547,222,0 +170754051597,222,0 +170754051645,222,0 +170754051693,222,0 +170754051742,222,0 +170754051792,216,0 +170754051841,216,0 +170754051889,216,0 +170754051937,217,0 +170754051987,218,0 +170754052036,219,0 +170754052086,219,0 +170754052135,221,0 +170754052185,221,0 +170754052233,221,0 +170754052281,223,0 +170754052329,222,0 +170754052378,222,0 +170754052428,224,0 +170754052477,224,0 +170754052527,223,0 +170754052576,224,0 +170754052626,222,0 +170754052676,215,0 +170754052725,215,0 +170754052773,217,0 +170754052821,217,0 +170754052871,218,0 +170754052918,218,0 +170754052968,219,0 +170754053016,221,0 +170754053064,221,0 +170754053112,222,0 +170754053160,223,0 +170754053209,222,0 +170754053259,224,0 +170754053307,224,0 +170754053355,225,0 +170754053403,223,0 +170754053451,224,0 +170754053500,216,0 +170754053550,217,0 +170754053598,217,0 +170754053647,218,0 +170754053697,218,0 +170754053745,219,0 +170754053794,219,0 +170754053842,220,0 +170754053890,221,0 +170754053938,220,0 +170754053988,223,0 +170754054036,222,0 +170754054084,224,0 +170754054132,224,0 +170754054181,224,0 +170754054229,223,0 +170754054277,223,0 +170754054327,223,0 +170754054375,218,0 +170754054422,217,0 +170754054472,217,0 +170754054522,219,0 +170754054571,220,0 +170754054621,219,0 +170754054669,221,0 +170754054716,221,0 +170754054766,221,0 +170754054814,223,0 +170754054863,222,0 +170754054911,223,0 +170754054959,223,0 +170754055007,222,0 +170754055055,224,0 +170754055103,224,0 +170754055152,223,0 +170754055200,222,0 +170754055248,218,0 +170754055296,219,0 +170754055345,219,0 +170754055393,219,0 +170754055441,220,0 +170754055491,221,0 +170754055539,222,0 +170754055587,222,0 +170754055635,222,0 +170754055683,224,0 +170754055731,224,0 +170754055779,225,0 +170754055827,224,0 +170754055876,224,0 +170754055924,223,0 +170754055974,225,0 +170754056022,223,0 +170754056069,223,0 +170754056117,219,0 +170754056165,219,0 +170754056213,220,0 +170754056262,221,0 +170754056312,221,0 +170754056361,222,0 +170754056409,222,0 +170754056457,224,0 +170754056505,223,0 +170754056553,223,0 +170754056602,224,0 +170754056652,224,0 +170754056700,224,0 +170754056748,225,0 +170754056797,223,0 +170754056845,222,0 +170754056893,223,0 +170754056941,222,0 +170754056989,220,0 +170754057037,220,0 +170754057085,220,0 +170754057132,221,0 +170754057180,222,0 +170754057230,223,0 +170754057278,223,0 +170754057326,224,0 +170754057373,224,0 +170754057421,224,0 +170754057469,223,0 +170754057517,224,0 +170754057567,224,0 +170754057616,224,0 +170754057664,224,0 +170754057712,223,0 +170754057760,223,0 +170754057808,218,0 +170754057858,217,0 +170754057907,218,0 +170754057955,218,0 +170754058005,220,0 +170754058053,221,0 +170754058102,221,0 +170754058152,221,0 +170754058201,222,0 +170754058251,222,0 +170754058299,224,0 +170754058347,223,0 +170754058395,223,0 +170754058443,225,0 +170754058490,225,0 +170754058540,223,0 +170754058590,223,0 +170754058637,222,0 +170754058685,217,0 +170754058733,217,0 +170754058781,218,0 +170754058829,219,0 +170754058877,219,0 +170754058925,220,0 +170754058973,220,0 +170754059020,221,0 +170754059068,221,0 +170754059118,222,0 +170754059167,222,0 +170754059215,224,0 +170754059265,224,0 +170754059315,224,0 +170754059362,224,0 +170754059412,223,0 +170754059461,224,0 +170754059509,222,0 +170754059557,215,0 +170754059605,216,0 +170754059655,216,0 +170754059704,218,0 +170754059754,218,0 +170754059802,218,0 +170754059851,219,0 +170754059901,220,0 +170754059949,221,0 +170754059998,222,0 +170754060046,222,0 +170754060094,224,0 +170754060142,224,0 +170754060192,223,0 +170754060241,224,0 +170754060291,223,0 +170754060339,224,0 +170754060388,218,0 +170754060436,216,0 +170754060484,216,0 +170754060532,217,0 +170754060580,218,0 +170754060628,219,0 +170754060676,219,0 +170754060724,220,0 +170754060773,220,0 +170754060823,221,0 +170754060872,222,0 +170754060922,222,0 +170754060970,223,0 +170754061018,223,0 +170754061066,225,0 +170754061116,224,0 +170754061165,223,0 +170754061213,222,0 +170754061261,216,0 +170754061309,215,0 +170754061357,215,0 +170754061405,217,0 +170754061453,218,0 +170754061502,218,0 +170754061550,219,0 +170754061598,220,0 +170754061646,220,0 +170754061695,221,0 +170754061743,222,0 +170754061791,223,0 +170754061841,223,0 +170754061888,224,0 +170754061936,223,0 +170754061984,223,0 +170754062032,223,0 +170754062082,222,0 +170754062131,216,0 +170754062179,215,0 +170754062228,216,0 +170754062278,217,0 +170754062326,217,0 +170754062375,219,0 +170754062423,218,0 +170754062473,220,0 +170754062520,222,0 +170754062568,222,0 +170754062618,222,0 +170754062667,222,0 +170754062715,223,0 +170754062763,222,0 +170754062811,223,0 +170754062860,223,0 +170754062908,223,0 +170754062956,221,0 +170754063004,216,0 +170754063052,216,0 +170754063101,217,0 +170754063149,217,0 +170754063197,219,0 +170754063245,220,0 +170754063293,220,0 +170754063342,220,0 +170754063391,222,0 +170754063440,222,0 +170754063490,223,0 +170754063538,223,0 +170754063587,223,0 +170754063635,223,0 +170754063683,223,0 +170754063731,224,0 +170754063779,223,0 +170754063827,217,0 +170754063875,219,0 +170754063923,219,0 +170754063971,219,0 +170754064019,220,0 +170754064067,221,0 +170754064115,221,0 +170754064162,223,0 +170754064212,223,0 +170754064260,223,0 +170754064309,223,0 +170754064357,224,0 +170754064406,224,0 +170754064454,223,0 +170754064502,224,0 +170754064550,223,0 +170754064600,223,0 +170754064649,223,0 +170754064697,219,0 +170754064745,218,0 +170754064794,219,0 +170754064842,219,0 +170754064890,219,0 +170754064940,221,0 +170754064987,221,0 +170754065035,222,0 +170754065083,223,0 +170754065131,222,0 +170754065181,223,0 +170754065229,224,0 +170754065276,223,0 +170754065324,223,0 +170754065372,224,0 +170754065420,224,0 +170754065468,222,0 +170754065516,223,0 +170754065566,216,0 +170754065615,217,0 +170754065663,218,0 +170754065711,219,0 +170754065761,219,0 +170754065809,220,0 +170754065858,221,0 +170754065906,222,0 +170754065954,222,0 +170754066002,222,0 +170754066050,222,0 +170754066098,223,0 +170754066146,226,0 +170754066194,224,0 +170754066243,224,0 +170754066291,223,0 +170754066339,223,0 +170754066387,222,0 +170754066436,215,0 +170754066484,215,0 +170754066532,216,0 +170754066580,217,0 +170754066628,218,0 +170754066676,218,0 +170754066725,219,0 +170754066773,220,0 +170754066821,220,0 +170754066869,222,0 +170754066917,221,0 +170754066967,221,0 +170754067014,223,0 +170754067062,222,0 +170754067110,223,0 +170754067160,224,0 +170754067209,223,0 +170754067259,222,0 +170754067309,214,0 +170754067356,214,0 +170754067404,215,0 +170754067452,215,0 +170754067502,217,0 +170754067551,217,0 +170754067601,219,0 +170754067650,219,0 +170754067698,219,0 +170754067748,220,0 +170754067797,220,0 +170754067845,222,0 +170754067895,223,0 +170754067944,222,0 +170754067992,224,0 +170754068040,223,0 +170754068088,223,0 +170754068136,216,0 +170754068184,215,0 +170754068232,215,0 +170754068280,216,0 +170754068328,216,0 +170754068376,217,0 +170754068423,218,0 +170754068471,219,0 +170754068519,219,0 +170754068569,221,0 +170754068617,222,0 +170754068666,221,0 +170754068714,222,0 +170754068762,221,0 +170754068810,224,0 +170754068858,224,0 +170754068908,225,0 +170754068957,222,0 +170754069007,216,0 +170754069055,215,0 +170754069104,217,0 +170754069152,217,0 +170754069202,218,0 +170754069250,218,0 +170754069298,219,0 +170754069345,220,0 +170754069393,219,0 +170754069441,221,0 +170754069489,221,0 +170754069539,222,0 +170754069588,223,0 +170754069638,222,0 +170754069687,224,0 +170754069737,223,0 +170754069787,224,0 +170754069836,223,0 +170754069886,217,0 +170754069935,217,0 +170754069983,217,0 +170754070033,220,0 +170754070081,220,0 +170754070130,221,0 +170754070180,222,0 +170754070228,223,0 +170754070276,221,0 +170754070325,223,0 +170754070373,225,0 +170754070423,223,0 +170754070470,224,0 +170754070518,224,0 +170754070568,226,0 +170754070616,224,0 +170754070664,223,0 +170754070712,217,0 +170754070762,217,0 +170754070809,218,0 +170754070857,219,0 +170754070905,220,0 +170754070953,221,0 +170754071003,221,0 +170754071051,221,0 +170754071099,223,0 +170754071147,222,0 +170754071195,222,0 +170754071244,224,0 +170754071292,222,0 +170754071340,223,0 +170754071390,223,0 +170754071438,223,0 +170754071485,223,0 +170754071535,222,0 +170754071583,218,0 +170754071633,219,0 +170754071682,219,0 +170754071731,220,0 +170754071781,220,0 +170754071831,221,0 +170754071879,222,0 +170754071929,223,0 +170754071978,226,0 +170754072026,224,0 +170754072074,223,0 +170754072123,224,0 +170754072171,219,0 +170754072219,223,0 +170754072267,223,0 +170754072315,223,0 +170754072363,224,0 +170754072411,216,0 +170754072461,217,0 +170754072509,218,0 +170754072558,219,0 +170754072606,220,0 +170754072654,221,0 +170754072702,223,0 +170754072752,222,0 +170754072801,223,0 +170754072849,223,0 +170754072897,224,0 +170754072945,223,0 +170754072994,225,0 +170754073042,224,0 +170754073090,224,0 +170754073138,223,0 +170754073186,223,0 +170754073236,222,0 +170754073285,216,0 +170754073335,215,0 +170754073383,216,0 +170754073431,217,0 +170754073479,218,0 +170754073528,218,0 +170754073576,220,0 +170754073624,220,0 +170754073672,221,0 +170754073722,221,0 +170754073770,223,0 +170754073819,222,0 +170754073867,224,0 +170754073915,223,0 +170754073963,224,0 +170754074013,225,0 +170754074060,223,0 +170754074108,223,0 +170754074158,215,0 +170754074207,214,0 +170754074255,214,0 +170754074305,215,0 +170754074353,216,0 +170754074401,218,0 +170754074449,217,0 +170754074498,219,0 +170754074546,219,0 +170754074596,220,0 +170754074645,221,0 +170754074695,221,0 +170754074744,221,0 +170754074794,223,0 +170754074843,223,0 +170754074891,223,0 +170754074939,223,0 +170754074987,221,0 +170754075037,214,0 +170754075086,214,0 +170754075136,214,0 +170754075184,214,0 +170754075233,215,0 +170754075281,215,0 +170754075329,215,0 +170754075377,216,0 +170754075425,216,0 +170754075475,216,0 +170754075524,217,0 +170754075572,217,0 +170754075622,218,0 +170754075671,218,0 +170754075721,219,0 +170754075769,220,0 +170754075818,221,0 +170754075868,222,0 +170754075915,222,0 +170754075965,222,0 +170754076014,223,0 +170754076064,223,0 +170754076113,224,0 +170754076161,224,0 +170754076211,223,0 +170754076259,223,0 +170754076309,216,0 +170754076356,216,0 +170754076404,217,0 +170754076452,217,0 +170754076502,219,0 +170754076551,219,0 +170754076601,221,0 +170754076651,221,0 +170754076700,222,0 +170754076748,222,0 +170754076796,222,0 +170754076844,222,0 +170754076892,224,0 +170754076940,223,0 +170754076988,223,0 +170754077037,223,0 +170754077087,223,0 +170754077135,216,0 +170754077183,218,0 +170754077230,218,0 +170754077278,218,0 +170754077326,219,0 +170754077374,219,0 +170754077422,220,0 +170754077472,221,0 +170754077520,222,0 +170754077568,223,0 +170754077617,223,0 +170754077665,225,0 +170754077715,223,0 +170754077764,224,0 +170754077812,223,0 +170754077862,224,0 +170754077910,223,0 +170754077958,223,0 +170754078007,220,0 +170754078055,220,0 +170754078105,220,0 +170754078153,222,0 +170754078200,222,0 +170754078248,223,0 +170754078296,222,0 +170754078346,222,0 +170754078395,223,0 +170754078443,223,0 +170754078491,224,0 +170754078541,224,0 +170754078590,223,0 +170754078638,223,0 +170754078686,223,0 +170754078734,224,0 +170754078784,223,0 +170754078833,223,0 +170754078881,221,0 +170754078929,221,0 +170754078979,221,0 +170754079027,222,0 +170754079074,222,0 +170754079124,223,0 +170754079173,223,0 +170754079221,224,0 +170754079269,223,0 +170754079319,224,0 +170754079368,224,0 +170754079418,223,0 +170754079467,223,0 +170754079515,223,0 +170754079563,223,0 +170754079613,222,0 +170754079662,223,0 +170754079710,222,0 +170754079758,219,0 +170754079806,220,0 +170754079854,222,0 +170754079902,222,0 +170754079950,222,0 +170754079998,222,0 +170754080046,223,0 +170754080094,223,0 +170754080143,223,0 +170754080191,225,0 +170754080239,224,0 +170754080289,224,0 +170754080337,223,0 +170754080385,224,0 +170754080434,223,0 +170754080484,225,0 +170754080531,223,0 +170754080579,217,0 +170754080629,216,0 +170754080677,217,0 +170754080724,218,0 +170754080772,218,0 +170754080820,219,0 +170754080870,220,0 +170754080918,220,0 +170754080966,221,0 +170754081013,221,0 +170754081061,222,0 +170754081109,223,0 +170754081157,223,0 +170754081205,223,0 +170754081253,223,0 +170754081301,223,0 +170754081349,223,0 +170754081398,223,0 +170754081448,216,0 +170754081496,215,0 +170754081545,215,0 +170754081593,216,0 +170754081641,217,0 +170754081691,218,0 +170754081740,218,0 +170754081788,219,0 +170754081838,220,0 +170754081886,220,0 +170754081934,222,0 +170754081983,222,0 +170754082031,222,0 +170754082081,223,0 +170754082130,225,0 +170754082180,223,0 +170754082228,224,0 +170754082276,223,0 +170754082324,217,0 +170754082372,216,0 +170754082421,217,0 +170754082469,218,0 +170754082517,219,0 +170754082567,219,0 +170754082614,220,0 +170754082664,221,0 +170754082712,221,0 +170754082761,223,0 +170754082809,223,0 +170754082857,223,0 +170754082905,223,0 +170754082953,224,0 +170754083003,223,0 +170754083052,223,0 +170754083100,223,0 +170754083150,220,0 +170754083198,215,0 +170754083246,215,0 +170754083295,216,0 +170754083343,217,0 +170754083391,217,0 +170754083441,218,0 +170754083489,218,0 +170754083537,219,0 +170754083586,220,0 +170754083634,222,0 +170754083682,221,0 +170754083732,222,0 +170754083781,222,0 +170754083831,222,0 +170754083880,224,0 +170754083930,224,0 +170754083979,223,0 +170754084029,216,0 +170754084078,215,0 +170754084126,216,0 +170754084176,217,0 +170754084224,218,0 +170754084272,219,0 +170754084320,219,0 +170754084369,220,0 +170754084417,219,0 +170754084465,221,0 +170754084513,222,0 +170754084563,222,0 +170754084610,222,0 +170754084658,222,0 +170754084706,224,0 +170754084756,225,0 +170754084806,223,0 +170754084855,223,0 +170754084903,217,0 +170754084951,217,0 +170754085000,218,0 +170754085048,218,0 +170754085096,217,0 +170754085146,220,0 +170754085195,220,0 +170754085245,221,0 +170754085294,221,0 +170754085342,222,0 +170754085390,222,0 +170754085438,223,0 +170754085486,224,0 +170754085534,222,0 +170754085582,224,0 +170754085630,223,0 +170754085680,224,0 +170754085728,218,0 +170754085776,216,0 +170754085825,217,0 +170754085873,218,0 +170754085922,219,0 +170754085972,219,0 +170754086021,219,0 +170754086069,221,0 +170754086119,220,0 +170754086167,222,0 +170754086215,222,0 +170754086264,222,0 +170754086312,223,0 +170754086362,224,0 +170754086411,223,0 +170754086459,223,0 +170754086507,223,0 +170754086557,223,0 +170754086605,217,0 +170754086653,219,0 +170754086702,218,0 +170754086752,218,0 +170754086800,219,0 +170754086848,219,0 +170754086895,221,0 +170754086943,220,0 +170754086993,222,0 +170754087042,222,0 +170754087090,223,0 +170754087140,222,0 +170754087188,223,0 +170754087237,224,0 +170754087285,224,0 +170754087333,223,0 +170754087381,223,0 +170754087431,223,0 +170754087480,216,0 +170754087530,216,0 +170754087579,217,0 +170754087627,218,0 +170754087675,218,0 +170754087723,222,0 +170754087771,221,0 +170754087819,221,0 +170754087867,222,0 +170754087916,222,0 +170754087966,222,0 +170754088015,224,0 +170754088065,225,0 +170754088115,223,0 +170754088162,223,0 +170754088210,223,0 +170754088258,223,0 +170754088306,222,0 +170754088356,216,0 +170754088405,218,0 +170754088453,218,0 +170754088503,219,0 +170754088553,220,0 +170754088600,221,0 +170754088648,223,0 +170754088698,222,0 +170754088746,222,0 +170754088795,223,0 +170754088843,223,0 +170754088891,223,0 +170754088939,223,0 +170754088989,224,0 +170754089037,224,0 +170754089086,223,0 +170754089136,223,0 +170754089186,216,0 +170754089233,217,0 +170754089281,218,0 +170754089329,218,0 +170754089379,219,0 +170754089427,220,0 +170754089475,220,0 +170754089523,221,0 +170754089572,222,0 +170754089622,222,0 +170754089671,224,0 +170754089721,223,0 +170754089769,224,0 +170754089817,225,0 +170754089864,224,0 +170754089912,223,0 +170754089960,222,0 +170754090008,217,0 +170754090057,216,0 +170754090105,217,0 +170754090153,218,0 +170754090201,218,0 +170754090249,219,0 +170754090297,220,0 +170754090345,221,0 +170754090392,221,0 +170754090440,222,0 +170754090488,223,0 +170754090536,226,0 +170754090584,223,0 +170754090632,224,0 +170754090680,225,0 +170754090727,224,0 +170754090777,224,0 +170754090825,222,0 +170754090873,216,0 +170754090922,216,0 +170754090970,218,0 +170754091018,218,0 +170754091066,218,0 +170754091114,219,0 +170754091162,220,0 +170754091210,221,0 +170754091258,222,0 +170754091306,223,0 +170754091355,224,0 +170754091405,224,0 +170754091453,224,0 +170754091501,223,0 +170754091549,224,0 +170754091597,224,0 +170754091646,223,0 +170754091696,215,0 +170754091745,215,0 +170754091793,216,0 +170754091841,216,0 +170754091889,218,0 +170754091939,219,0 +170754091986,220,0 +170754092034,220,0 +170754092082,221,0 +170754092130,222,0 +170754092178,223,0 +170754092226,223,0 +170754092274,223,0 +170754092322,225,0 +170754092372,224,0 +170754092421,223,0 +170754092469,223,0 +170754092517,222,0 +170754092565,215,0 +170754092613,215,0 +170754092661,217,0 +170754092709,217,0 +170754092758,218,0 +170754092806,218,0 +170754092854,219,0 +170754092902,216,0 +170754092951,221,0 +170754092999,221,0 +170754093047,222,0 +170754093095,223,0 +170754093143,223,0 +170754093191,223,0 +170754093239,223,0 +170754093287,225,0 +170754093337,223,0 +170754093385,217,0 +170754093434,216,0 +170754093484,217,0 +170754093532,218,0 +170754093580,219,0 +170754093629,220,0 +170754093679,220,0 +170754093728,220,0 +170754093776,222,0 +170754093826,222,0 +170754093874,223,0 +170754093922,223,0 +170754093970,224,0 +170754094018,224,0 +170754094066,223,0 +170754094114,223,0 +170754094163,223,0 +170754094211,222,0 +170754094261,217,0 +170754094309,219,0 +170754094357,219,0 +170754094406,220,0 +170754094454,220,0 +170754094502,221,0 +170754094551,222,0 +170754094599,223,0 +170754094647,224,0 +170754094695,223,0 +170754094743,224,0 +170754094791,224,0 +170754094841,222,0 +170754094889,223,0 +170754094937,223,0 +170754094986,223,0 +170754095036,222,0 +170754095084,217,0 +170754095133,217,0 +170754095181,218,0 +170754095229,219,0 +170754095277,219,0 +170754095325,219,0 +170754095373,220,0 +170754095421,221,0 +170754095470,221,0 +170754095518,223,0 +170754095568,223,0 +170754095616,222,0 +170754095665,222,0 +170754095715,223,0 +170754095763,223,0 +170754095811,222,0 +170754095860,223,0 +170754095908,217,0 +170754095956,216,0 +170754096005,217,0 +170754096053,219,0 +170754096103,218,0 +170754096153,219,0 +170754096200,221,0 +170754096250,220,0 +170754096298,222,0 +170754096346,221,0 +170754096394,223,0 +170754096442,223,0 +170754096490,223,0 +170754096538,224,0 +170754096586,223,0 +170754096635,223,0 +170754096683,223,0 +170754096731,222,0 +170754096779,216,0 +170754096827,216,0 +170754096875,217,0 +170754096923,218,0 +170754096971,219,0 +170754097019,219,0 +170754097068,220,0 +170754097116,220,0 +170754097166,222,0 +170754097214,221,0 +170754097263,222,0 +170754097311,222,0 +170754097361,222,0 +170754097408,222,0 +170754097456,223,0 +170754097506,223,0 +170754097556,220,0 +170754097603,215,0 +170754097653,216,0 +170754097702,218,0 +170754097750,218,0 +170754097798,219,0 +170754097846,220,0 +170754097894,220,0 +170754097942,221,0 +170754097991,222,0 +170754098039,222,0 +170754098087,222,0 +170754098135,223,0 +170754098183,224,0 +170754098231,225,0 +170754098279,224,0 +170754098328,224,0 +170754098376,223,0 +170754098425,221,0 +170754098473,216,0 +170754098521,217,0 +170754098569,218,0 +170754098617,217,0 +170754098665,219,0 +170754098713,221,0 +170754098762,221,0 +170754098812,221,0 +170754098861,222,0 +170754098911,223,0 +170754098959,223,0 +170754099007,225,0 +170754099056,224,0 +170754099106,223,0 +170754099154,223,0 +170754099204,223,0 +170754099251,222,0 +170754099301,216,0 +170754099350,217,0 +170754099398,218,0 +170754099446,218,0 +170754099494,219,0 +170754099544,220,0 +170754099592,220,0 +170754099640,221,0 +170754099687,222,0 +170754099737,223,0 +170754099787,223,0 +170754099835,222,0 +170754099883,223,0 +170754099930,223,0 +170754099980,224,0 +170754100028,223,0 +170754100078,223,0 +170754100127,218,0 +170754100177,216,0 +170754100225,217,0 +170754100272,219,0 +170754100320,219,0 +170754100368,219,0 +170754100418,219,0 +170754100466,221,0 +170754100514,222,0 +170754100562,221,0 +170754100612,222,0 +170754100661,223,0 +170754100711,223,0 +170754100759,224,0 +170754100808,224,0 +170754100856,223,0 +170754100906,223,0 +170754100955,221,0 +170754101005,219,0 +170754101053,219,0 +170754101102,219,0 +170754101150,221,0 +170754101198,221,0 +170754101247,223,0 +170754101297,222,0 +170754101346,222,0 +170754101394,223,0 +170754101442,223,0 +170754101492,224,0 +170754101541,224,0 +170754101589,223,0 +170754101637,225,0 +170754101685,224,0 +170754101735,223,0 +170754101783,223,0 +170754101832,221,0 +170754101882,221,0 +170754101930,221,0 +170754101978,222,0 +170754102026,221,0 +170754102074,225,0 +170754102123,222,0 +170754102171,224,0 +170754102219,224,0 +170754102269,223,0 +170754102318,223,0 +170754102368,224,0 +170754102417,223,0 +170754102467,223,0 +170754102516,223,0 +170754102566,223,0 +170754102615,222,0 +170754102663,219,0 +170754102713,219,0 +170754102762,220,0 +170754102812,220,0 +170754102860,220,0 +170754102908,221,0 +170754102956,222,0 +170754103004,224,0 +170754103051,223,0 +170754103101,224,0 +170754103149,223,0 +170754103197,224,0 +170754103246,224,0 +170754103294,224,0 +170754103342,225,0 +170754103390,224,0 +170754103438,224,0 +170754103486,219,0 +170754103534,217,0 +170754103582,217,0 +170754103630,218,0 +170754103678,219,0 +170754103726,219,0 +170754103774,220,0 +170754103822,220,0 +170754103870,222,0 +170754103919,222,0 +170754103967,222,0 +170754104015,223,0 +170754104063,224,0 +170754104113,223,0 +170754104161,224,0 +170754104209,225,0 +170754104258,224,0 +170754104308,223,0 +170754104356,216,0 +170754104404,217,0 +170754104452,216,0 +170754104500,218,0 +170754104548,220,0 +170754104596,218,0 +170754104645,221,0 +170754104693,220,0 +170754104741,222,0 +170754104789,222,0 +170754104838,224,0 +170754104888,224,0 +170754104937,223,0 +170754104987,222,0 +170754105036,224,0 +170754105086,223,0 +170754105135,223,0 +170754105185,216,0 +170754105233,215,0 +170754105282,216,0 +170754105332,217,0 +170754105380,218,0 +170754105428,219,0 +170754105476,219,0 +170754105525,220,0 +170754105573,221,0 +170754105621,221,0 +170754105669,222,0 +170754105719,223,0 +170754105768,222,0 +170754105816,223,0 +170754105864,223,0 +170754105912,223,0 +170754105960,222,0 +170754106008,221,0 +170754106056,215,0 +170754106106,216,0 +170754106155,217,0 +170754106205,217,0 +170754106253,217,0 +170754106302,218,0 +170754106350,216,0 +170754106400,218,0 +170754106449,219,0 +170754106499,220,0 +170754106547,222,0 +170754106596,222,0 +170754106644,223,0 +170754106692,222,0 +170754106742,223,0 +170754106790,223,0 +170754106837,222,0 +170754106885,215,0 +170754106933,215,0 +170754106981,217,0 +170754107029,218,0 +170754107077,219,0 +170754107127,219,0 +170754107175,219,0 +170754107223,221,0 +170754107271,221,0 +170754107320,222,0 +170754107368,222,0 +170754107418,222,0 +170754107465,223,0 +170754107513,223,0 +170754107563,224,0 +170754107611,223,0 +170754107659,223,0 +170754107708,217,0 +170754107758,218,0 +170754107806,218,0 +170754107854,219,0 +170754107902,220,0 +170754107950,221,0 +170754107998,222,0 +170754108047,221,0 +170754108097,222,0 +170754108145,222,0 +170754108194,223,0 +170754108242,223,0 +170754108290,224,0 +170754108338,224,0 +170754108388,223,0 +170754108437,224,0 +170754108485,222,0 +170754108533,218,0 +170754108581,218,0 +170754108629,220,0 +170754108677,220,0 +170754108725,221,0 +170754108774,222,0 +170754108822,222,0 +170754108872,224,0 +170754108921,223,0 +170754108969,224,0 +170754109017,224,0 +170754109065,224,0 +170754109113,224,0 +170754109161,225,0 +170754109209,225,0 +170754109259,225,0 +170754109307,223,0 +170754109355,222,0 +170754109404,216,0 +170754109454,217,0 +170754109502,217,0 +170754109550,218,0 +170754109599,218,0 +170754109649,219,0 +170754109698,220,0 +170754109748,221,0 +170754109795,222,0 +170754109845,221,0 +170754109893,222,0 +170754109941,223,0 +170754109989,221,0 +170754110038,222,0 +170754110086,224,0 +170754110136,223,0 +170754110184,223,0 +170754110232,216,0 +170754110280,215,0 +170754110328,215,0 +170754110377,216,0 +170754110425,219,0 +170754110473,218,0 +170754110521,219,0 +170754110569,220,0 +170754110619,221,0 +170754110667,221,0 +170754110715,222,0 +170754110764,223,0 +170754110814,223,0 +170754110863,222,0 +170754110913,223,0 +170754110962,223,0 +170754111012,223,0 +170754111061,216,0 +170754111109,215,0 +170754111157,215,0 +170754111205,216,0 +170754111255,217,0 +170754111303,217,0 +170754111352,218,0 +170754111402,219,0 +170754111450,220,0 +170754111498,220,0 +170754111547,221,0 +170754111595,222,0 +170754111643,224,0 +170754111691,224,0 +170754111739,224,0 +170754111786,222,0 +170754111834,223,0 +170754111882,224,0 +170754111930,215,0 +170754111979,215,0 +170754112027,216,0 +170754112075,216,0 +170754112123,217,0 +170754112171,218,0 +170754112220,218,0 +170754112268,219,0 +170754112316,220,0 +170754112364,220,0 +170754112413,221,0 +170754112461,222,0 +170754112509,222,0 +170754112557,223,0 +170754112605,223,0 +170754112653,224,0 +170754112701,223,0 +170754112748,216,0 +170754112796,215,0 +170754112846,216,0 +170754112894,216,0 +170754112942,217,0 +170754112989,217,0 +170754113037,218,0 +170754113085,219,0 +170754113135,220,0 +170754113183,220,0 +170754113232,221,0 +170754113280,221,0 +170754113328,222,0 +170754113377,223,0 +170754113425,224,0 +170754113475,225,0 +170754113524,224,0 +170754113572,222,0 +170754113620,216,0 +170754113668,217,0 +170754113716,218,0 +170754113765,219,0 +170754113813,219,0 +170754113861,218,0 +170754113909,220,0 +170754113957,220,0 +170754114004,222,0 +170754114052,221,0 +170754114102,224,0 +170754114150,222,0 +170754114199,223,0 +170754114247,224,0 +170754114295,223,0 +170754114343,223,0 +170754114391,223,0 +170754114438,216,0 +170754114486,217,0 +170754114534,218,0 +170754114582,219,0 +170754114630,219,0 +170754114678,221,0 +170754114726,221,0 +170754114774,222,0 +170754114822,221,0 +170754114871,222,0 +170754114919,222,0 +170754114968,222,0 +170754115016,223,0 +170754115064,223,0 +170754115112,223,0 +170754115160,224,0 +170754115208,224,0 +170754115256,223,0 +170754115305,223,0 +170754115353,219,0 +170754115401,218,0 +170754115449,219,0 +170754115496,220,0 +170754115544,220,0 +170754115592,221,0 +170754115640,223,0 +170754115690,223,0 +170754115737,224,0 +170754115785,223,0 +170754115835,224,0 +170754115883,224,0 +170754115931,224,0 +170754115978,224,0 +170754116026,222,0 +170754116074,223,0 +170754116122,222,0 +170754116171,224,0 +170754116221,223,0 +170754116269,222,0 +170754116317,222,0 +170754116364,222,0 +170754116412,222,0 +170754116460,223,0 +170754116508,223,0 +170754116556,223,0 +170754116604,225,0 +170754116652,224,0 +170754116699,225,0 +170754116747,224,0 +170754116795,224,0 +170754116843,224,0 +170754116891,223,0 +170754116939,223,0 +170754116987,225,0 +170754117035,223,0 +170754117084,223,0 +170754117133,222,0 +170754117181,222,0 +170754117229,220,0 +170754117277,219,0 +170754117325,219,0 +170754117373,220,0 +170754117421,222,0 +170754117469,222,0 +170754117518,223,0 +170754117566,223,0 +170754117614,224,0 +170754117662,224,0 +170754117710,223,0 +170754117758,223,0 +170754117806,223,0 +170754117853,223,0 +170754117901,222,0 +170754117949,222,0 +170754117997,223,0 +170754118046,222,0 +170754118094,223,0 +170754118142,220,0 +170754118192,217,0 +170754118239,217,0 +170754118287,219,0 +170754118335,220,0 +170754118385,220,0 +170754118433,221,0 +170754118480,221,0 +170754118528,221,0 +170754118576,221,0 +170754118624,224,0 +170754118674,224,0 +170754118723,223,0 +170754118772,224,0 +170754118820,224,0 +170754118868,223,0 +170754118916,224,0 +170754118965,223,0 +170754119013,224,0 +170754119063,222,0 +170754119111,217,0 +170754119159,216,0 +170754119206,217,0 +170754119254,217,0 +170754119302,218,0 +170754119352,219,0 +170754119401,219,0 +170754119449,220,0 +170754119497,221,0 +170754119545,223,0 +170754119593,222,0 +170754119641,221,0 +170754119689,222,0 +170754119738,224,0 +170754119788,223,0 +170754119835,223,0 +170754119883,223,0 +170754119931,223,0 +170754119979,222,0 +170754120029,216,0 diff --git a/laser_value/0210-15.csv b/laser_value/0210-15.csv new file mode 100644 index 0000000..c7224b9 --- /dev/null +++ b/laser_value/0210-15.csv @@ -0,0 +1,7422 @@ +timestamp,laser_value,event +170754120078,215,0 +170754120125,216,0 +170754120175,218,0 +170754120223,218,0 +170754120270,218,0 +170754120318,219,0 +170754120366,220,0 +170754120414,219,0 +170754120462,222,0 +170754120510,222,0 +170754120558,224,0 +170754120607,223,0 +170754120655,223,0 +170754120703,223,0 +170754120750,223,0 +170754120798,224,0 +170754120846,223,0 +170754120894,223,0 +170754120942,221,0 +170754120990,215,0 +170754121039,215,0 +170754121089,215,0 +170754121138,216,0 +170754121188,218,0 +170754121237,218,0 +170754121285,218,0 +170754121333,220,0 +170754121383,220,0 +170754121431,220,0 +170754121480,222,0 +170754121528,222,0 +170754121577,223,0 +170754121625,222,0 +170754121673,223,0 +170754121721,224,0 +170754121770,223,0 +170754121820,223,0 +170754121868,222,0 +170754121915,216,0 +170754121963,215,0 +170754122011,214,0 +170754122059,214,0 +170754122107,215,0 +170754122155,217,0 +170754122205,218,0 +170754122252,218,0 +170754122300,219,0 +170754122350,221,0 +170754122398,220,0 +170754122446,221,0 +170754122495,223,0 +170754122543,222,0 +170754122591,222,0 +170754122639,223,0 +170754122689,223,0 +170754122738,222,0 +170754122786,225,0 +170754122834,216,0 +170754122882,214,0 +170754122930,215,0 +170754122978,216,0 +170754123026,217,0 +170754123073,217,0 +170754123121,218,0 +170754123169,218,0 +170754123217,218,0 +170754123265,220,0 +170754123313,221,0 +170754123361,222,0 +170754123410,221,0 +170754123458,222,0 +170754123506,223,0 +170754123554,222,0 +170754123601,223,0 +170754123651,223,0 +170754123700,224,0 +170754123748,222,0 +170754123796,215,0 +170754123845,215,0 +170754123895,215,0 +170754123943,217,0 +170754123991,217,0 +170754124039,217,0 +170754124087,218,0 +170754124135,219,0 +170754124183,219,0 +170754124231,221,0 +170754124279,221,0 +170754124327,222,0 +170754124375,222,0 +170754124422,221,0 +170754124470,224,0 +170754124518,223,0 +170754124566,223,0 +170754124616,223,0 +170754124664,224,0 +170754124712,217,0 +170754124760,216,0 +170754124808,217,0 +170754124857,218,0 +170754124905,218,0 +170754124953,219,0 +170754125001,220,0 +170754125049,220,0 +170754125097,221,0 +170754125145,221,0 +170754125193,221,0 +170754125241,222,0 +170754125290,222,0 +170754125338,223,0 +170754125386,225,0 +170754125434,223,0 +170754125484,223,0 +170754125533,223,0 +170754125581,223,0 +170754125631,222,0 +170754125679,217,0 +170754125726,218,0 +170754125776,218,0 +170754125825,219,0 +170754125875,220,0 +170754125923,220,0 +170754125971,221,0 +170754126019,221,0 +170754126067,222,0 +170754126115,222,0 +170754126164,223,0 +170754126212,223,0 +170754126260,223,0 +170754126308,224,0 +170754126356,224,0 +170754126404,224,0 +170754126452,223,0 +170754126500,223,0 +170754126549,222,0 +170754126599,216,0 +170754126648,216,0 +170754126696,217,0 +170754126744,218,0 +170754126793,218,0 +170754126843,220,0 +170754126891,220,0 +170754126939,221,0 +170754126987,221,0 +170754127036,222,0 +170754127084,222,0 +170754127132,222,0 +170754127180,222,0 +170754127228,223,0 +170754127276,224,0 +170754127324,224,0 +170754127372,225,0 +170754127421,223,0 +170754127469,222,0 +170754127519,216,0 +170754127568,215,0 +170754127618,217,0 +170754127667,217,0 +170754127717,218,0 +170754127766,219,0 +170754127816,219,0 +170754127864,220,0 +170754127914,221,0 +170754127963,222,0 +170754128013,222,0 +170754128062,222,0 +170754128110,223,0 +170754128158,223,0 +170754128206,222,0 +170754128255,224,0 +170754128303,224,0 +170754128353,223,0 +170754128401,222,0 +170754128449,216,0 +170754128497,215,0 +170754128546,215,0 +170754128596,216,0 +170754128645,216,0 +170754128693,217,0 +170754128741,219,0 +170754128789,219,0 +170754128837,219,0 +170754128885,220,0 +170754128935,221,0 +170754128983,222,0 +170754129031,223,0 +170754129079,222,0 +170754129128,222,0 +170754129176,223,0 +170754129224,222,0 +170754129272,224,0 +170754129322,223,0 +170754129369,222,0 +170754129417,215,0 +170754129465,215,0 +170754129513,216,0 +170754129563,216,0 +170754129611,217,0 +170754129659,218,0 +170754129708,219,0 +170754129756,219,0 +170754129806,222,0 +170754129854,221,0 +170754129902,222,0 +170754129950,222,0 +170754129998,222,0 +170754130047,223,0 +170754130097,224,0 +170754130145,224,0 +170754130193,223,0 +170754130242,223,0 +170754130290,223,0 +170754130340,215,0 +170754130388,215,0 +170754130437,215,0 +170754130485,215,0 +170754130533,216,0 +170754130583,217,0 +170754130631,217,0 +170754130680,219,0 +170754130728,219,0 +170754130776,220,0 +170754130824,218,0 +170754130873,221,0 +170754130921,222,0 +170754130969,221,0 +170754131019,222,0 +170754131068,223,0 +170754131118,223,0 +170754131167,223,0 +170754131215,223,0 +170754131263,216,0 +170754131313,214,0 +170754131361,214,0 +170754131410,215,0 +170754131458,216,0 +170754131506,217,0 +170754131556,218,0 +170754131604,218,0 +170754131651,219,0 +170754131701,220,0 +170754131749,220,0 +170754131797,220,0 +170754131845,222,0 +170754131893,222,0 +170754131940,223,0 +170754131988,223,0 +170754132036,223,0 +170754132084,225,0 +170754132132,223,0 +170754132182,222,0 +170754132230,215,0 +170754132278,215,0 +170754132326,215,0 +170754132374,215,0 +170754132422,216,0 +170754132470,216,0 +170754132518,217,0 +170754132565,217,0 +170754132613,219,0 +170754132661,221,0 +170754132709,220,0 +170754132759,220,0 +170754132808,221,0 +170754132858,221,0 +170754132907,223,0 +170754132955,223,0 +170754133003,223,0 +170754133051,223,0 +170754133101,223,0 +170754133149,216,0 +170754133198,215,0 +170754133246,214,0 +170754133296,215,0 +170754133344,216,0 +170754133393,217,0 +170754133441,218,0 +170754133489,218,0 +170754133537,218,0 +170754133587,220,0 +170754133635,220,0 +170754133684,223,0 +170754133734,221,0 +170754133781,222,0 +170754133831,223,0 +170754133880,224,0 +170754133928,223,0 +170754133978,222,0 +170754134028,223,0 +170754134075,216,0 +170754134123,215,0 +170754134171,215,0 +170754134219,216,0 +170754134267,216,0 +170754134317,216,0 +170754134365,217,0 +170754134414,217,0 +170754134464,219,0 +170754134513,219,0 +170754134561,220,0 +170754134610,221,0 +170754134660,223,0 +170754134708,221,0 +170754134758,222,0 +170754134807,222,0 +170754134855,223,0 +170754134903,224,0 +170754134951,223,0 +170754134999,216,0 +170754135047,215,0 +170754135095,215,0 +170754135143,216,0 +170754135191,217,0 +170754135239,217,0 +170754135287,219,0 +170754135335,218,0 +170754135383,219,0 +170754135432,220,0 +170754135481,219,0 +170754135531,222,0 +170754135579,222,0 +170754135627,223,0 +170754135676,224,0 +170754135724,224,0 +170754135772,224,0 +170754135820,225,0 +170754135868,224,0 +170754135916,223,0 +170754135964,216,0 +170754136012,215,0 +170754136059,216,0 +170754136107,217,0 +170754136157,217,0 +170754136207,219,0 +170754136255,218,0 +170754136304,220,0 +170754136354,221,0 +170754136403,221,0 +170754136451,222,0 +170754136499,222,0 +170754136549,223,0 +170754136597,223,0 +170754136645,223,0 +170754136692,223,0 +170754136742,224,0 +170754136790,224,0 +170754136838,223,0 +170754136885,217,0 +170754136933,215,0 +170754136981,217,0 +170754137029,218,0 +170754137077,218,0 +170754137127,219,0 +170754137176,220,0 +170754137224,220,0 +170754137272,221,0 +170754137322,221,0 +170754137370,222,0 +170754137419,223,0 +170754137467,223,0 +170754137515,224,0 +170754137565,223,0 +170754137614,223,0 +170754137662,223,0 +170754137710,223,0 +170754137758,223,0 +170754137807,216,0 +170754137855,215,0 +170754137905,216,0 +170754137953,217,0 +170754138001,217,0 +170754138049,218,0 +170754138098,218,0 +170754138146,219,0 +170754138196,220,0 +170754138245,221,0 +170754138295,222,0 +170754138344,223,0 +170754138394,223,0 +170754138442,224,0 +170754138490,223,0 +170754138539,223,0 +170754138587,223,0 +170754138637,224,0 +170754138685,223,0 +170754138734,223,0 +170754138782,216,0 +170754138832,216,0 +170754138880,217,0 +170754138928,218,0 +170754138976,219,0 +170754139024,219,0 +170754139073,219,0 +170754139121,220,0 +170754139171,220,0 +170754139220,221,0 +170754139270,222,0 +170754139319,224,0 +170754139367,223,0 +170754139416,224,0 +170754139465,224,0 +170754139512,226,0 +170754139560,224,0 +170754139608,223,0 +170754139658,223,0 +170754139708,217,0 +170754139755,217,0 +170754139803,218,0 +170754139851,218,0 +170754139901,219,0 +170754139950,220,0 +170754140000,222,0 +170754140048,221,0 +170754140096,221,0 +170754140144,223,0 +170754140192,221,0 +170754140240,222,0 +170754140288,223,0 +170754140337,223,0 +170754140385,223,0 +170754140433,223,0 +170754140481,223,0 +170754140529,223,0 +170754140577,223,0 +170754140625,218,0 +170754140674,217,0 +170754140722,218,0 +170754140770,218,0 +170754140820,220,0 +170754140868,220,0 +170754140917,221,0 +170754140967,222,0 +170754141015,223,0 +170754141063,223,0 +170754141112,223,0 +170754141160,223,0 +170754141208,223,0 +170754141256,223,0 +170754141306,223,0 +170754141355,226,0 +170754141403,224,0 +170754141451,222,0 +170754141499,223,0 +170754141547,221,0 +170754141595,215,0 +170754141644,216,0 +170754141694,217,0 +170754141743,218,0 +170754141791,219,0 +170754141841,220,0 +170754141890,220,0 +170754141938,221,0 +170754141988,222,0 +170754142037,222,0 +170754142085,222,0 +170754142133,223,0 +170754142181,224,0 +170754142231,224,0 +170754142280,224,0 +170754142328,224,0 +170754142376,225,0 +170754142424,223,0 +170754142474,222,0 +170754142523,215,0 +170754142571,215,0 +170754142619,215,0 +170754142667,216,0 +170754142716,217,0 +170754142764,218,0 +170754142814,219,0 +170754142863,218,0 +170754142911,219,0 +170754142961,221,0 +170754143009,221,0 +170754143056,223,0 +170754143104,224,0 +170754143152,223,0 +170754143202,224,0 +170754143250,223,0 +170754143297,223,0 +170754143347,223,0 +170754143396,222,0 +170754143446,215,0 +170754143495,214,0 +170754143543,214,0 +170754143591,215,0 +170754143639,215,0 +170754143689,216,0 +170754143737,217,0 +170754143784,218,0 +170754143832,219,0 +170754143882,219,0 +170754143931,220,0 +170754143979,223,0 +170754144027,222,0 +170754144075,222,0 +170754144123,222,0 +170754144173,222,0 +170754144221,223,0 +170754144270,223,0 +170754144318,223,0 +170754144366,216,0 +170754144416,214,0 +170754144465,215,0 +170754144513,215,0 +170754144562,215,0 +170754144612,216,0 +170754144660,216,0 +170754144708,217,0 +170754144756,218,0 +170754144805,219,0 +170754144853,219,0 +170754144903,220,0 +170754144951,221,0 +170754144999,221,0 +170754145047,223,0 +170754145096,222,0 +170754145146,223,0 +170754145193,223,0 +170754145241,224,0 +170754145291,220,0 +170754145340,214,0 +170754145388,214,0 +170754145438,214,0 +170754145487,215,0 +170754145537,214,0 +170754145585,215,0 +170754145634,217,0 +170754145684,218,0 +170754145732,218,0 +170754145780,221,0 +170754145828,220,0 +170754145876,221,0 +170754145925,222,0 +170754145973,223,0 +170754146021,222,0 +170754146071,222,0 +170754146119,226,0 +170754146167,223,0 +170754146216,223,0 +170754146266,215,0 +170754146315,215,0 +170754146363,215,0 +170754146412,216,0 +170754146460,217,0 +170754146508,217,0 +170754146556,218,0 +170754146604,219,0 +170754146652,219,0 +170754146700,220,0 +170754146749,222,0 +170754146797,222,0 +170754146845,222,0 +170754146893,222,0 +170754146941,223,0 +170754146988,223,0 +170754147036,223,0 +170754147084,223,0 +170754147134,222,0 +170754147181,216,0 +170754147229,215,0 +170754147279,215,0 +170754147327,217,0 +170754147375,218,0 +170754147422,218,0 +170754147470,219,0 +170754147518,219,0 +170754147568,220,0 +170754147617,221,0 +170754147667,221,0 +170754147715,221,0 +170754147763,222,0 +170754147812,223,0 +170754147862,222,0 +170754147910,223,0 +170754147959,223,0 +170754148007,223,0 +170754148055,223,0 +170754148105,216,0 +170754148153,216,0 +170754148202,217,0 +170754148252,217,0 +170754148301,219,0 +170754148349,218,0 +170754148397,220,0 +170754148447,221,0 +170754148495,221,0 +170754148544,222,0 +170754148594,223,0 +170754148642,222,0 +170754148691,223,0 +170754148741,222,0 +170754148790,223,0 +170754148838,223,0 +170754148888,222,0 +170754148936,223,0 +170754148985,223,0 +170754149033,217,0 +170754149083,215,0 +170754149131,214,0 +170754149178,215,0 +170754149228,216,0 +170754149278,217,0 +170754149327,218,0 +170754149375,218,0 +170754149425,218,0 +170754149473,220,0 +170754149520,220,0 +170754149570,221,0 +170754149618,222,0 +170754149666,222,0 +170754149714,223,0 +170754149762,223,0 +170754149810,222,0 +170754149858,223,0 +170754149907,223,0 +170754149955,223,0 +170754150003,215,0 +170754150053,214,0 +170754150102,215,0 +170754150152,215,0 +170754150200,215,0 +170754150249,216,0 +170754150299,217,0 +170754150347,217,0 +170754150396,218,0 +170754150444,219,0 +170754150494,220,0 +170754150542,220,0 +170754150590,222,0 +170754150638,223,0 +170754150687,223,0 +170754150737,222,0 +170754150785,224,0 +170754150833,221,0 +170754150881,223,0 +170754150929,215,0 +170754150978,214,0 +170754151026,215,0 +170754151074,215,0 +170754151122,215,0 +170754151170,215,0 +170754151219,216,0 +170754151267,216,0 +170754151315,218,0 +170754151363,218,0 +170754151411,219,0 +170754151459,221,0 +170754151509,222,0 +170754151558,222,0 +170754151606,222,0 +170754151656,222,0 +170754151705,225,0 +170754151753,224,0 +170754151801,222,0 +170754151849,216,0 +170754151897,214,0 +170754151945,214,0 +170754151993,215,0 +170754152041,215,0 +170754152089,215,0 +170754152137,216,0 +170754152185,216,0 +170754152234,216,0 +170754152284,218,0 +170754152333,219,0 +170754152381,220,0 +170754152431,221,0 +170754152479,222,0 +170754152527,222,0 +170754152574,224,0 +170754152622,223,0 +170754152670,223,0 +170754152718,223,0 +170754152766,222,0 +170754152815,214,0 +170754152863,214,0 +170754152911,214,0 +170754152959,214,0 +170754153007,214,0 +170754153055,215,0 +170754153103,216,0 +170754153151,216,0 +170754153200,217,0 +170754153249,218,0 +170754153297,220,0 +170754153345,222,0 +170754153395,221,0 +170754153443,221,0 +170754153491,221,0 +170754153539,222,0 +170754153587,222,0 +170754153635,223,0 +170754153682,223,0 +170754153732,215,0 +170754153780,215,0 +170754153828,215,0 +170754153877,216,0 +170754153927,216,0 +170754153976,217,0 +170754154024,217,0 +170754154072,218,0 +170754154122,218,0 +170754154171,219,0 +170754154221,220,0 +170754154270,221,0 +170754154318,223,0 +170754154366,222,0 +170754154414,224,0 +170754154462,221,0 +170754154510,223,0 +170754154559,224,0 +170754154607,223,0 +170754154655,215,0 +170754154703,215,0 +170754154751,215,0 +170754154801,216,0 +170754154850,215,0 +170754154898,216,0 +170754154946,217,0 +170754154994,217,0 +170754155042,217,0 +170754155090,219,0 +170754155138,219,0 +170754155186,220,0 +170754155234,220,0 +170754155283,222,0 +170754155331,222,0 +170754155381,223,0 +170754155429,225,0 +170754155478,223,0 +170754155526,223,0 +170754155574,217,0 +170754155622,215,0 +170754155672,216,0 +170754155719,216,0 +170754155769,217,0 +170754155817,218,0 +170754155865,218,0 +170754155913,218,0 +170754155961,219,0 +170754156009,220,0 +170754156057,222,0 +170754156105,221,0 +170754156152,222,0 +170754156202,222,0 +170754156250,223,0 +170754156298,223,0 +170754156347,224,0 +170754156395,223,0 +170754156443,224,0 +170754156491,223,0 +170754156539,216,0 +170754156587,215,0 +170754156635,216,0 +170754156683,216,0 +170754156730,217,0 +170754156778,218,0 +170754156826,218,0 +170754156874,219,0 +170754156922,221,0 +170754156970,220,0 +170754157018,221,0 +170754157066,222,0 +170754157114,223,0 +170754157162,224,0 +170754157210,223,0 +170754157258,223,0 +170754157306,224,0 +170754157354,224,0 +170754157401,223,0 +170754157451,216,0 +170754157499,214,0 +170754157547,215,0 +170754157596,215,0 +170754157646,216,0 +170754157694,217,0 +170754157742,218,0 +170754157791,219,0 +170754157839,220,0 +170754157888,220,0 +170754157938,222,0 +170754157987,222,0 +170754158035,222,0 +170754158083,222,0 +170754158131,223,0 +170754158181,223,0 +170754158230,223,0 +170754158278,223,0 +170754158326,223,0 +170754158374,221,0 +170754158423,215,0 +170754158471,216,0 +170754158520,216,0 +170754158570,217,0 +170754158619,218,0 +170754158667,218,0 +170754158715,219,0 +170754158763,219,0 +170754158812,221,0 +170754158860,222,0 +170754158908,222,0 +170754158956,222,0 +170754159004,224,0 +170754159054,223,0 +170754159103,223,0 +170754159153,226,0 +170754159202,224,0 +170754159252,223,0 +170754159300,221,0 +170754159347,216,0 +170754159395,216,0 +170754159443,218,0 +170754159491,217,0 +170754159539,219,0 +170754159587,219,0 +170754159635,219,0 +170754159683,220,0 +170754159731,220,0 +170754159779,221,0 +170754159827,223,0 +170754159875,222,0 +170754159924,223,0 +170754159972,224,0 +170754160022,224,0 +170754160070,224,0 +170754160118,224,0 +170754160166,224,0 +170754160215,222,0 +170754160263,216,0 +170754160311,215,0 +170754160359,216,0 +170754160409,216,0 +170754160458,217,0 +170754160506,218,0 +170754160555,219,0 +170754160603,220,0 +170754160651,221,0 +170754160699,221,0 +170754160747,221,0 +170754160797,222,0 +170754160846,223,0 +170754160894,228,0 +170754160942,224,0 +170754160990,224,0 +170754161038,224,0 +170754161087,223,0 +170754161137,223,0 +170754161185,216,0 +170754161233,215,0 +170754161281,215,0 +170754161330,216,0 +170754161380,216,0 +170754161429,217,0 +170754161477,217,0 +170754161525,219,0 +170754161573,219,0 +170754161621,221,0 +170754161669,221,0 +170754161717,222,0 +170754161765,222,0 +170754161813,223,0 +170754161861,224,0 +170754161910,224,0 +170754161958,224,0 +170754162006,223,0 +170754162054,223,0 +170754162104,222,0 +170754162152,215,0 +170754162201,215,0 +170754162249,215,0 +170754162299,215,0 +170754162347,214,0 +170754162396,216,0 +170754162444,218,0 +170754162494,217,0 +170754162542,217,0 +170754162589,219,0 +170754162639,221,0 +170754162689,221,0 +170754162738,221,0 +170754162786,223,0 +170754162835,222,0 +170754162885,223,0 +170754162933,223,0 +170754162981,223,0 +170754163029,223,0 +170754163078,215,0 +170754163126,215,0 +170754163176,215,0 +170754163225,215,0 +170754163273,216,0 +170754163323,217,0 +170754163371,217,0 +170754163419,219,0 +170754163467,219,0 +170754163516,219,0 +170754163566,220,0 +170754163614,221,0 +170754163662,221,0 +170754163711,223,0 +170754163759,223,0 +170754163807,223,0 +170754163857,224,0 +170754163905,223,0 +170754163953,223,0 +170754164001,216,0 +170754164049,215,0 +170754164096,215,0 +170754164146,215,0 +170754164194,215,0 +170754164242,216,0 +170754164291,217,0 +170754164341,217,0 +170754164389,219,0 +170754164438,219,0 +170754164486,219,0 +170754164534,220,0 +170754164584,221,0 +170754164631,222,0 +170754164679,222,0 +170754164729,222,0 +170754164777,223,0 +170754164825,223,0 +170754164873,222,0 +170754164920,216,0 +170754164968,215,0 +170754165018,214,0 +170754165067,215,0 +170754165115,215,0 +170754165163,215,0 +170754165211,216,0 +170754165261,216,0 +170754165309,218,0 +170754165357,217,0 +170754165406,220,0 +170754165456,219,0 +170754165504,221,0 +170754165552,221,0 +170754165601,221,0 +170754165651,222,0 +170754165699,223,0 +170754165747,221,0 +170754165795,222,0 +170754165843,222,0 +170754165892,214,0 +170754165942,214,0 +170754165991,214,0 +170754166041,215,0 +170754166090,215,0 +170754166138,215,0 +170754166186,215,0 +170754166234,217,0 +170754166282,217,0 +170754166330,218,0 +170754166378,219,0 +170754166427,219,0 +170754166475,220,0 +170754166523,221,0 +170754166573,222,0 +170754166622,222,0 +170754166670,223,0 +170754166718,223,0 +170754166768,223,0 +170754166817,215,0 +170754166867,215,0 +170754166915,214,0 +170754166963,215,0 +170754167012,215,0 +170754167062,216,0 +170754167111,216,0 +170754167159,216,0 +170754167207,218,0 +170754167255,218,0 +170754167303,218,0 +170754167351,219,0 +170754167399,220,0 +170754167447,220,0 +170754167497,221,0 +170754167546,222,0 +170754167596,221,0 +170754167644,222,0 +170754167693,222,0 +170754167743,216,0 +170754167792,217,0 +170754167840,218,0 +170754167890,218,0 +170754167938,219,0 +170754167986,219,0 +170754168035,220,0 +170754168083,221,0 +170754168133,221,0 +170754168182,221,0 +170754168230,222,0 +170754168278,225,0 +170754168328,224,0 +170754168376,224,0 +170754168424,224,0 +170754168473,223,0 +170754168521,225,0 +170754168571,223,0 +170754168619,223,0 +170754168667,217,0 +170754168716,217,0 +170754168766,218,0 +170754168814,218,0 +170754168862,219,0 +170754168911,220,0 +170754168961,220,0 +170754169009,221,0 +170754169057,222,0 +170754169105,221,0 +170754169154,222,0 +170754169202,222,0 +170754169250,223,0 +170754169300,223,0 +170754169348,224,0 +170754169397,223,0 +170754169445,223,0 +170754169493,223,0 +170754169541,222,0 +170754169589,222,0 +170754169637,218,0 +170754169686,218,0 +170754169734,219,0 +170754169782,219,0 +170754169830,220,0 +170754169878,221,0 +170754169926,222,0 +170754169976,221,0 +170754170025,222,0 +170754170073,223,0 +170754170121,223,0 +170754170170,223,0 +170754170220,224,0 +170754170268,224,0 +170754170318,223,0 +170754170366,223,0 +170754170415,223,0 +170754170463,223,0 +170754170512,222,0 +170754170560,217,0 +170754170608,217,0 +170754170656,219,0 +170754170706,219,0 +170754170755,219,0 +170754170803,220,0 +170754170851,221,0 +170754170899,221,0 +170754170949,222,0 +170754170997,223,0 +170754171045,223,0 +170754171093,225,0 +170754171141,221,0 +170754171188,224,0 +170754171236,224,0 +170754171286,228,0 +170754171334,223,0 +170754171382,223,0 +170754171430,222,0 +170754171478,216,0 +170754171526,215,0 +170754171574,215,0 +170754171623,217,0 +170754171673,217,0 +170754171721,218,0 +170754171769,219,0 +170754171817,219,0 +170754171865,220,0 +170754171914,220,0 +170754171962,220,0 +170754172010,225,0 +170754172058,222,0 +170754172108,224,0 +170754172155,224,0 +170754172203,223,0 +170754172251,223,0 +170754172301,223,0 +170754172349,223,0 +170754172397,216,0 +170754172445,214,0 +170754172493,215,0 +170754172541,216,0 +170754172590,217,0 +170754172638,218,0 +170754172688,217,0 +170754172737,219,0 +170754172785,219,0 +170754172833,220,0 +170754172881,220,0 +170754172931,222,0 +170754172979,222,0 +170754173027,222,0 +170754173075,224,0 +170754173124,223,0 +170754173174,224,0 +170754173223,224,0 +170754173271,223,0 +170754173319,223,0 +170754173367,215,0 +170754173415,214,0 +170754173463,216,0 +170754173512,216,0 +170754173560,217,0 +170754173608,217,0 +170754173658,218,0 +170754173706,218,0 +170754173754,219,0 +170754173801,219,0 +170754173849,220,0 +170754173897,222,0 +170754173945,221,0 +170754173993,223,0 +170754174041,222,0 +170754174091,226,0 +170754174140,224,0 +170754174188,224,0 +170754174236,223,0 +170754174284,216,0 +170754174332,215,0 +170754174382,215,0 +170754174431,216,0 +170754174481,216,0 +170754174530,217,0 +170754174578,218,0 +170754174628,217,0 +170754174676,219,0 +170754174724,219,0 +170754174772,220,0 +170754174821,221,0 +170754174869,222,0 +170754174919,222,0 +170754174968,222,0 +170754175017,221,0 +170754175067,222,0 +170754175117,223,0 +170754175166,223,0 +170754175214,216,0 +170754175262,215,0 +170754175310,215,0 +170754175358,216,0 +170754175407,217,0 +170754175455,217,0 +170754175503,218,0 +170754175553,218,0 +170754175601,218,0 +170754175649,219,0 +170754175697,219,0 +170754175745,224,0 +170754175793,223,0 +170754175840,223,0 +170754175888,222,0 +170754175936,223,0 +170754175986,223,0 +170754176034,223,0 +170754176084,223,0 +170754176133,222,0 +170754176183,214,0 +170754176232,215,0 +170754176282,215,0 +170754176330,217,0 +170754176378,217,0 +170754176427,218,0 +170754176477,219,0 +170754176526,218,0 +170754176574,220,0 +170754176622,220,0 +170754176672,220,0 +170754176720,222,0 +170754176769,223,0 +170754176819,222,0 +170754176868,223,0 +170754176916,224,0 +170754176964,225,0 +170754177014,223,0 +170754177062,223,0 +170754177110,215,0 +170754177158,215,0 +170754177205,215,0 +170754177253,216,0 +170754177301,217,0 +170754177349,217,0 +170754177397,217,0 +170754177445,219,0 +170754177494,219,0 +170754177542,220,0 +170754177590,220,0 +170754177638,221,0 +170754177686,221,0 +170754177734,222,0 +170754177782,222,0 +170754177830,223,0 +170754177880,223,0 +170754177929,223,0 +170754177977,226,0 +170754178025,216,0 +170754178073,214,0 +170754178121,214,0 +170754178170,215,0 +170754178218,215,0 +170754178268,216,0 +170754178317,218,0 +170754178367,217,0 +170754178415,219,0 +170754178463,219,0 +170754178511,220,0 +170754178558,221,0 +170754178608,221,0 +170754178656,222,0 +170754178704,224,0 +170754178753,224,0 +170754178801,223,0 +170754178849,223,0 +170754178897,223,0 +170754178945,216,0 +170754178993,215,0 +170754179042,216,0 +170754179090,215,0 +170754179138,216,0 +170754179187,216,0 +170754179235,216,0 +170754179283,216,0 +170754179333,217,0 +170754179381,218,0 +170754179429,219,0 +170754179478,221,0 +170754179526,221,0 +170754179576,220,0 +170754179625,222,0 +170754179673,222,0 +170754179721,222,0 +170754179769,222,0 +170754179818,222,0 +170754179868,222,0 +170754179918,215,0 +170754179967,215,0 +170754180015,215,0 +170754180063,215,0 +170754180111,216,0 +170754180159,215,0 +170754180208,216,0 +170754180258,218,0 +170754180306,217,0 +170754180355,218,0 +170754180403,219,0 +170754180451,219,0 +170754180501,220,0 +170754180549,222,0 +170754180597,223,0 +170754180645,224,0 +170754180694,223,0 +170754180744,223,0 +170754180793,223,0 +170754180841,216,0 +170754180891,215,0 +170754180939,215,0 +170754180988,214,0 +170754181036,216,0 +170754181086,217,0 +170754181134,218,0 +170754181182,217,0 +170754181230,218,0 +170754181278,219,0 +170754181325,223,0 +170754181373,220,0 +170754181421,222,0 +170754181471,221,0 +170754181520,222,0 +170754181568,222,0 +170754181616,223,0 +170754181666,222,0 +170754181714,224,0 +170754181761,216,0 +170754181809,215,0 +170754181859,216,0 +170754181908,217,0 +170754181958,217,0 +170754182006,217,0 +170754182054,218,0 +170754182102,218,0 +170754182150,220,0 +170754182199,220,0 +170754182247,221,0 +170754182295,221,0 +170754182343,223,0 +170754182391,222,0 +170754182441,222,0 +170754182489,223,0 +170754182537,223,0 +170754182586,222,0 +170754182634,223,0 +170754182682,218,0 +170754182730,215,0 +170754182779,216,0 +170754182829,217,0 +170754182879,219,0 +170754182926,218,0 +170754182974,218,0 +170754183022,219,0 +170754183072,220,0 +170754183120,221,0 +170754183167,220,0 +170754183215,222,0 +170754183265,223,0 +170754183313,222,0 +170754183361,222,0 +170754183408,223,0 +170754183456,223,0 +170754183504,223,0 +170754183552,225,0 +170754183600,222,0 +170754183648,216,0 +170754183696,217,0 +170754183744,217,0 +170754183793,218,0 +170754183841,219,0 +170754183889,221,0 +170754183937,220,0 +170754183985,222,0 +170754184033,222,0 +170754184081,222,0 +170754184130,224,0 +170754184178,221,0 +170754184227,223,0 +170754184277,223,0 +170754184326,224,0 +170754184376,224,0 +170754184424,224,0 +170754184472,223,0 +170754184520,222,0 +170754184568,216,0 +170754184617,215,0 +170754184667,216,0 +170754184715,217,0 +170754184762,218,0 +170754184812,218,0 +170754184862,219,0 +170754184909,221,0 +170754184957,221,0 +170754185005,223,0 +170754185053,222,0 +170754185101,223,0 +170754185149,224,0 +170754185197,224,0 +170754185247,225,0 +170754185295,224,0 +170754185343,225,0 +170754185392,223,0 +170754185440,223,0 +170754185488,216,0 +170754185536,214,0 +170754185584,216,0 +170754185632,216,0 +170754185680,217,0 +170754185729,217,0 +170754185779,218,0 +170754185829,219,0 +170754185877,219,0 +170754185926,220,0 +170754185974,221,0 +170754186022,222,0 +170754186072,221,0 +170754186119,222,0 +170754186167,223,0 +170754186215,224,0 +170754186263,223,0 +170754186313,224,0 +170754186361,224,0 +170754186410,224,0 +170754186458,215,0 +170754186508,215,0 +170754186556,215,0 +170754186604,215,0 +170754186653,216,0 +170754186701,217,0 +170754186749,218,0 +170754186799,218,0 +170754186847,219,0 +170754186896,220,0 +170754186946,221,0 +170754186994,222,0 +170754187041,222,0 +170754187091,224,0 +170754187139,223,0 +170754187187,223,0 +170754187236,223,0 +170754187284,223,0 +170754187332,222,0 +170754187380,215,0 +170754187430,214,0 +170754187478,215,0 +170754187526,215,0 +170754187575,215,0 +170754187625,217,0 +170754187673,218,0 +170754187722,219,0 +170754187770,219,0 +170754187818,220,0 +170754187866,221,0 +170754187915,223,0 +170754187963,222,0 +170754188011,223,0 +170754188059,223,0 +170754188108,224,0 +170754188156,223,0 +170754188204,223,0 +170754188252,222,0 +170754188300,216,0 +170754188348,214,0 +170754188397,215,0 +170754188445,215,0 +170754188493,215,0 +170754188541,215,0 +170754188589,216,0 +170754188637,217,0 +170754188684,217,0 +170754188732,218,0 +170754188780,219,0 +170754188828,220,0 +170754188876,221,0 +170754188924,221,0 +170754188972,223,0 +170754189019,223,0 +170754189067,222,0 +170754189115,224,0 +170754189163,223,0 +170754189211,223,0 +170754189260,214,0 +170754189310,215,0 +170754189357,215,0 +170754189405,215,0 +170754189455,216,0 +170754189503,215,0 +170754189551,216,0 +170754189600,216,0 +170754189648,217,0 +170754189696,219,0 +170754189746,219,0 +170754189794,220,0 +170754189842,221,0 +170754189890,222,0 +170754189939,222,0 +170754189987,222,0 +170754190035,222,0 +170754190085,223,0 +170754190134,222,0 +170754190184,216,0 +170754190232,215,0 +170754190280,215,0 +170754190328,215,0 +170754190376,215,0 +170754190424,215,0 +170754190472,216,0 +170754190521,217,0 +170754190569,218,0 +170754190618,218,0 +170754190666,219,0 +170754190714,220,0 +170754190762,221,0 +170754190810,222,0 +170754190858,222,0 +170754190908,222,0 +170754190956,222,0 +170754191004,223,0 +170754191052,223,0 +170754191101,216,0 +170754191149,215,0 +170754191197,215,0 +170754191245,216,0 +170754191293,218,0 +170754191343,218,0 +170754191392,218,0 +170754191442,220,0 +170754191491,220,0 +170754191541,221,0 +170754191590,221,0 +170754191640,221,0 +170754191689,222,0 +170754191739,222,0 +170754191787,223,0 +170754191836,223,0 +170754191884,223,0 +170754191934,223,0 +170754191982,223,0 +170754192030,216,0 +170754192078,216,0 +170754192127,216,0 +170754192177,217,0 +170754192225,218,0 +170754192273,219,0 +170754192322,220,0 +170754192372,220,0 +170754192420,221,0 +170754192469,221,0 +170754192517,222,0 +170754192567,222,0 +170754192615,223,0 +170754192663,225,0 +170754192712,224,0 +170754192762,224,0 +170754192810,223,0 +170754192859,223,0 +170754192909,222,0 +170754192958,216,0 +170754193006,215,0 +170754193056,215,0 +170754193104,216,0 +170754193153,217,0 +170754193201,218,0 +170754193249,219,0 +170754193299,219,0 +170754193348,221,0 +170754193396,222,0 +170754193446,221,0 +170754193494,221,0 +170754193542,222,0 +170754193591,222,0 +170754193641,223,0 +170754193689,223,0 +170754193737,223,0 +170754193786,223,0 +170754193836,223,0 +170754193885,223,0 +170754193935,215,0 +170754193984,215,0 +170754194034,216,0 +170754194082,217,0 +170754194131,217,0 +170754194181,218,0 +170754194229,218,0 +170754194277,219,0 +170754194325,220,0 +170754194374,221,0 +170754194422,221,0 +170754194470,222,0 +170754194518,221,0 +170754194567,222,0 +170754194615,223,0 +170754194665,223,0 +170754194713,222,0 +170754194762,223,0 +170754194812,222,0 +170754194862,215,0 +170754194911,215,0 +170754194959,216,0 +170754195007,217,0 +170754195056,218,0 +170754195106,218,0 +170754195154,218,0 +170754195202,219,0 +170754195251,220,0 +170754195301,221,0 +170754195349,222,0 +170754195397,221,0 +170754195445,223,0 +170754195494,223,0 +170754195542,223,0 +170754195590,223,0 +170754195640,224,0 +170754195689,224,0 +170754195739,223,0 +170754195787,215,0 +170754195835,215,0 +170754195884,216,0 +170754195934,216,0 +170754195983,218,0 +170754196033,217,0 +170754196081,217,0 +170754196130,218,0 +170754196178,220,0 +170754196226,220,0 +170754196276,221,0 +170754196326,222,0 +170754196373,222,0 +170754196421,223,0 +170754196471,223,0 +170754196521,224,0 +170754196570,224,0 +170754196620,223,0 +170754196668,223,0 +170754196716,217,0 +170754196764,217,0 +170754196813,216,0 +170754196861,217,0 +170754196911,217,0 +170754196959,219,0 +170754197007,218,0 +170754197055,219,0 +170754197104,220,0 +170754197154,221,0 +170754197203,221,0 +170754197251,223,0 +170754197299,223,0 +170754197347,223,0 +170754197397,223,0 +170754197445,225,0 +170754197493,223,0 +170754197542,223,0 +170754197592,222,0 +170754197640,216,0 +170754197688,215,0 +170754197737,216,0 +170754197787,217,0 +170754197835,217,0 +170754197884,218,0 +170754197934,220,0 +170754197983,217,0 +170754198031,219,0 +170754198081,221,0 +170754198129,222,0 +170754198177,222,0 +170754198226,223,0 +170754198276,223,0 +170754198325,223,0 +170754198375,224,0 +170754198423,224,0 +170754198471,224,0 +170754198519,223,0 +170754198568,216,0 +170754198616,215,0 +170754198664,214,0 +170754198712,216,0 +170754198760,217,0 +170754198808,218,0 +170754198857,219,0 +170754198905,219,0 +170754198953,220,0 +170754199002,222,0 +170754199050,222,0 +170754199100,222,0 +170754199149,223,0 +170754199197,223,0 +170754199245,224,0 +170754199293,224,0 +170754199341,224,0 +170754199389,224,0 +170754199438,223,0 +170754199488,221,0 +170754199536,215,0 +170754199584,216,0 +170754199633,216,0 +170754199682,217,0 +170754199730,217,0 +170754199780,218,0 +170754199830,219,0 +170754199879,220,0 +170754199929,221,0 +170754199978,222,0 +170754200026,222,0 +170754200074,223,0 +170754200122,222,0 +170754200170,222,0 +170754200218,223,0 +170754200266,223,0 +170754200313,224,0 +170754200361,224,0 +170754200409,223,0 +170754200457,216,0 +170754200505,215,0 +170754200555,216,0 +170754200602,217,0 +170754200650,217,0 +170754200698,218,0 +170754200746,219,0 +170754200794,221,0 +170754200842,220,0 +170754200892,222,0 +170754200940,221,0 +170754200988,223,0 +170754201036,223,0 +170754201085,224,0 +170754201135,224,0 +170754201183,223,0 +170754201231,224,0 +170754201280,224,0 +170754201328,223,0 +170754201378,216,0 +170754201426,215,0 +170754201475,215,0 +170754201523,216,0 +170754201571,216,0 +170754201621,217,0 +170754201669,218,0 +170754201716,218,0 +170754201764,220,0 +170754201812,220,0 +170754201862,220,0 +170754201910,221,0 +170754201959,223,0 +170754202007,225,0 +170754202057,222,0 +170754202107,223,0 +170754202156,223,0 +170754202206,223,0 +170754202254,224,0 +170754202302,215,0 +170754202350,214,0 +170754202398,215,0 +170754202445,215,0 +170754202493,215,0 +170754202541,215,0 +170754202589,216,0 +170754202637,218,0 +170754202685,219,0 +170754202733,219,0 +170754202781,217,0 +170754202829,221,0 +170754202876,222,0 +170754202924,223,0 +170754202974,224,0 +170754203022,223,0 +170754203070,224,0 +170754203119,222,0 +170754203169,224,0 +170754203218,216,0 +170754203266,215,0 +170754203314,215,0 +170754203362,215,0 +170754203410,215,0 +170754203459,216,0 +170754203507,216,0 +170754203557,218,0 +170754203607,218,0 +170754203654,219,0 +170754203702,220,0 +170754203752,221,0 +170754203800,222,0 +170754203847,222,0 +170754203897,224,0 +170754203945,223,0 +170754203994,223,0 +170754204044,223,0 +170754204091,224,0 +170754204141,216,0 +170754204190,214,0 +170754204238,214,0 +170754204286,215,0 +170754204334,216,0 +170754204382,217,0 +170754204430,217,0 +170754204477,218,0 +170754204525,219,0 +170754204573,219,0 +170754204621,220,0 +170754204669,221,0 +170754204717,221,0 +170754204766,222,0 +170754204816,223,0 +170754204864,223,0 +170754204912,231,0 +170754204960,223,0 +170754205007,223,0 +170754205055,215,0 +170754205103,215,0 +170754205153,215,0 +170754205201,216,0 +170754205250,216,0 +170754205298,216,0 +170754205348,218,0 +170754205396,217,0 +170754205445,218,0 +170754205493,221,0 +170754205541,220,0 +170754205589,221,0 +170754205637,222,0 +170754205685,223,0 +170754205733,222,0 +170754205781,223,0 +170754205831,224,0 +170754205878,224,0 +170754205926,223,0 +170754205974,216,0 +170754206022,215,0 +170754206072,216,0 +170754206121,218,0 +170754206169,218,0 +170754206219,219,0 +170754206267,219,0 +170754206316,220,0 +170754206364,221,0 +170754206414,221,0 +170754206463,222,0 +170754206513,222,0 +170754206561,224,0 +170754206610,224,0 +170754206658,224,0 +170754206708,224,0 +170754206756,223,0 +170754206804,224,0 +170754206853,223,0 +170754206903,216,0 +170754206952,215,0 +170754207000,216,0 +170754207048,217,0 +170754207096,219,0 +170754207146,219,0 +170754207194,219,0 +170754207242,221,0 +170754207290,222,0 +170754207337,222,0 +170754207385,222,0 +170754207435,223,0 +170754207485,223,0 +170754207533,224,0 +170754207581,224,0 +170754207630,225,0 +170754207678,224,0 +170754207726,223,0 +170754207774,223,0 +170754207822,217,0 +170754207869,215,0 +170754207919,215,0 +170754207967,217,0 +170754208016,217,0 +170754208064,217,0 +170754208112,218,0 +170754208161,219,0 +170754208209,220,0 +170754208257,221,0 +170754208305,221,0 +170754208353,222,0 +170754208401,222,0 +170754208449,222,0 +170754208497,222,0 +170754208544,224,0 +170754208592,224,0 +170754208640,224,0 +170754208688,222,0 +170754208738,223,0 +170754208787,214,0 +170754208837,214,0 +170754208885,215,0 +170754208933,215,0 +170754208981,215,0 +170754209028,216,0 +170754209076,217,0 +170754209124,218,0 +170754209172,218,0 +170754209220,220,0 +170754209268,220,0 +170754209317,221,0 +170754209365,222,0 +170754209413,222,0 +170754209463,223,0 +170754209512,223,0 +170754209560,224,0 +170754209609,223,0 +170754209657,222,0 +170754209705,215,0 +170754209753,215,0 +170754209801,215,0 +170754209849,215,0 +170754209898,216,0 +170754209948,216,0 +170754209997,216,0 +170754210047,218,0 +170754210095,218,0 +170754210144,219,0 +170754210192,220,0 +170754210240,221,0 +170754210288,222,0 +170754210336,223,0 +170754210384,222,0 +170754210434,222,0 +170754210483,224,0 +170754210533,224,0 +170754210581,222,0 +170754210629,215,0 +170754210677,214,0 +170754210725,215,0 +170754210774,216,0 +170754210824,215,0 +170754210872,215,0 +170754210921,217,0 +170754210969,217,0 +170754211019,218,0 +170754211067,219,0 +170754211115,220,0 +170754211163,220,0 +170754211212,222,0 +170754211260,222,0 +170754211308,222,0 +170754211356,223,0 +170754211404,223,0 +170754211452,223,0 +170754211501,222,0 +170754211549,215,0 +170754211597,215,0 +170754211645,215,0 +170754211693,216,0 +170754211741,217,0 +170754211790,217,0 +170754211838,222,0 +170754211886,219,0 +170754211934,219,0 +170754211981,219,0 +170754212031,220,0 +170754212079,221,0 +170754212127,221,0 +170754212175,222,0 +170754212224,222,0 +170754212272,222,0 +170754212320,223,0 +170754212370,223,0 +170754212419,222,0 +170754212467,215,0 +170754212515,215,0 +170754212563,216,0 +170754212612,217,0 +170754212660,217,0 +170754212708,218,0 +170754212756,219,0 +170754212806,219,0 +170754212854,219,0 +170754212903,221,0 +170754212953,222,0 +170754213001,222,0 +170754213049,222,0 +170754213098,223,0 +170754213148,223,0 +170754213197,223,0 +170754213245,224,0 +170754213295,223,0 +170754213344,222,0 +170754213394,216,0 +170754213442,217,0 +170754213490,218,0 +170754213538,218,0 +170754213587,219,0 +170754213637,220,0 +170754213685,219,0 +170754213733,221,0 +170754213782,221,0 +170754213830,221,0 +170754213878,222,0 +170754213928,222,0 +170754213977,222,0 +170754214025,223,0 +170754214073,223,0 +170754214121,223,0 +170754214169,223,0 +170754214218,223,0 +170754214266,222,0 +170754214314,218,0 +170754214362,218,0 +170754214412,219,0 +170754214461,220,0 +170754214509,223,0 +170754214559,221,0 +170754214607,222,0 +170754214656,222,0 +170754214704,224,0 +170754214752,222,0 +170754214802,224,0 +170754214851,224,0 +170754214899,223,0 +170754214947,223,0 +170754214997,223,0 +170754215046,223,0 +170754215094,220,0 +170754215142,223,0 +170754215192,219,0 +170754215240,216,0 +170754215288,217,0 +170754215337,217,0 +170754215385,219,0 +170754215433,219,0 +170754215481,219,0 +170754215529,220,0 +170754215579,221,0 +170754215628,222,0 +170754215678,225,0 +170754215727,222,0 +170754215775,222,0 +170754215823,223,0 +170754215873,223,0 +170754215922,223,0 +170754215972,223,0 +170754216020,223,0 +170754216068,222,0 +170754216115,219,0 +170754216163,216,0 +170754216213,216,0 +170754216261,217,0 +170754216309,217,0 +170754216359,217,0 +170754216406,218,0 +170754216456,219,0 +170754216504,220,0 +170754216552,221,0 +170754216600,221,0 +170754216648,221,0 +170754216696,224,0 +170754216744,222,0 +170754216792,225,0 +170754216840,224,0 +170754216889,224,0 +170754216939,223,0 +170754216987,224,0 +170754217035,223,0 +170754217083,214,0 +170754217132,214,0 +170754217182,215,0 +170754217230,216,0 +170754217279,216,0 +170754217327,217,0 +170754217375,218,0 +170754217423,218,0 +170754217471,218,0 +170754217521,220,0 +170754217569,220,0 +170754217618,223,0 +170754217666,223,0 +170754217716,224,0 +170754217764,223,0 +170754217812,223,0 +170754217861,223,0 +170754217909,223,0 +170754217957,222,0 +170754218005,214,0 +170754218054,214,0 +170754218102,214,0 +170754218150,215,0 +170754218198,215,0 +170754218246,214,0 +170754218296,216,0 +170754218344,217,0 +170754218393,218,0 +170754218443,218,0 +170754218491,220,0 +170754218539,222,0 +170754218587,220,0 +170754218635,221,0 +170754218683,222,0 +170754218732,222,0 +170754218780,222,0 +170754218828,223,0 +170754218878,222,0 +170754218927,215,0 +170754218975,215,0 +170754219025,215,0 +170754219073,215,0 +170754219120,216,0 +170754219168,216,0 +170754219216,215,0 +170754219264,216,0 +170754219314,217,0 +170754219363,218,0 +170754219413,220,0 +170754219461,219,0 +170754219510,220,0 +170754219558,222,0 +170754219608,221,0 +170754219657,222,0 +170754219707,222,0 +170754219755,224,0 +170754219804,222,0 +170754219852,215,0 +170754219900,215,0 +170754219948,215,0 +170754219996,215,0 +170754220044,216,0 +170754220094,217,0 +170754220142,217,0 +170754220191,218,0 +170754220241,218,0 +170754220289,220,0 +170754220338,221,0 +170754220386,221,0 +170754220436,222,0 +170754220485,223,0 +170754220533,223,0 +170754220581,223,0 +170754220629,224,0 +170754220677,225,0 +170754220725,222,0 +170754220773,215,0 +170754220821,215,0 +170754220869,215,0 +170754220919,215,0 +170754220968,216,0 +170754221016,217,0 +170754221064,218,0 +170754221113,218,0 +170754221161,219,0 +170754221211,220,0 +170754221259,220,0 +170754221308,224,0 +170754221356,221,0 +170754221406,222,0 +170754221453,222,0 +170754221503,224,0 +170754221551,224,0 +170754221599,224,0 +170754221648,220,0 +170754221698,214,0 +170754221745,214,0 +170754221795,215,0 +170754221843,215,0 +170754221891,216,0 +170754221938,217,0 +170754221986,218,0 +170754222034,218,0 +170754222082,220,0 +170754222132,220,0 +170754222180,220,0 +170754222228,222,0 +170754222276,222,0 +170754222324,223,0 +170754222373,224,0 +170754222423,222,0 +170754222470,222,0 +170754222518,223,0 +170754222568,221,0 +170754222616,215,0 +170754222665,215,0 +170754222715,216,0 +170754222764,216,0 +170754222812,217,0 +170754222860,216,0 +170754222908,218,0 +170754222956,219,0 +170754223006,219,0 +170754223054,220,0 +170754223102,222,0 +170754223150,222,0 +170754223198,221,0 +170754223246,222,0 +170754223293,224,0 +170754223341,226,0 +170754223389,224,0 +170754223439,223,0 +170754223488,222,0 +170754223538,215,0 +170754223588,215,0 +170754223637,215,0 +170754223687,215,0 +170754223735,215,0 +170754223784,217,0 +170754223832,218,0 +170754223880,220,0 +170754223928,219,0 +170754223978,221,0 +170754224027,221,0 +170754224077,222,0 +170754224126,222,0 +170754224176,223,0 +170754224225,224,0 +170754224275,223,0 +170754224323,223,0 +170754224371,222,0 +170754224418,216,0 +170754224466,215,0 +170754224514,215,0 +170754224562,214,0 +170754224610,216,0 +170754224658,216,0 +170754224706,216,0 +170754224754,218,0 +170754224802,219,0 +170754224850,219,0 +170754224898,220,0 +170754224946,221,0 +170754224994,222,0 +170754225042,223,0 +170754225090,223,0 +170754225138,224,0 +170754225188,223,0 +170754225235,224,0 +170754225283,224,0 +170754225333,222,0 +170754225381,215,0 +170754225430,215,0 +170754225480,215,0 +170754225529,215,0 +170754225577,215,0 +170754225627,216,0 +170754225675,217,0 +170754225723,216,0 +170754225772,218,0 +170754225820,220,0 +170754225868,220,0 +170754225918,221,0 +170754225967,221,0 +170754226017,223,0 +170754226067,222,0 +170754226115,222,0 +170754226164,223,0 +170754226212,223,0 +170754226261,222,0 +170754226311,215,0 +170754226361,215,0 +170754226410,216,0 +170754226458,216,0 +170754226506,217,0 +170754226555,217,0 +170754226603,217,0 +170754226651,218,0 +170754226699,218,0 +170754226747,219,0 +170754226795,219,0 +170754226843,220,0 +170754226891,221,0 +170754226939,222,0 +170754226988,221,0 +170754227038,222,0 +170754227086,222,0 +170754227134,224,0 +170754227182,225,0 +170754227230,224,0 +170754227279,223,0 +170754227327,224,0 +170754227375,224,0 +170754227424,224,0 +170754227472,223,0 +170754227520,224,0 +170754227568,223,0 +170754227618,223,0 +170754227666,219,0 +170754227715,218,0 +170754227763,219,0 +170754227811,220,0 +170754227861,221,0 +170754227909,224,0 +170754227958,222,0 +170754228008,222,0 +170754228056,223,0 +170754228104,223,0 +170754228151,223,0 +170754228199,221,0 +170754228247,223,0 +170754228295,224,0 +170754228343,224,0 +170754228393,223,0 +170754228440,223,0 +170754228488,224,0 +170754228538,224,0 +170754228586,218,0 +170754228635,218,0 +170754228685,219,0 +170754228733,219,0 +170754228782,220,0 +170754228830,220,0 +170754228878,221,0 +170754228926,221,0 +170754228974,222,0 +170754229024,223,0 +170754229073,223,0 +170754229122,223,0 +170754229170,223,0 +170754229218,225,0 +170754229266,223,0 +170754229314,224,0 +170754229362,223,0 +170754229412,224,0 +170754229460,222,0 +170754229509,216,0 +170754229557,215,0 +170754229606,215,0 +170754229656,216,0 +170754229704,218,0 +170754229752,219,0 +170754229801,219,0 +170754229849,219,0 +170754229899,220,0 +170754229948,221,0 +170754229996,222,0 +170754230044,224,0 +170754230092,224,0 +170754230140,222,0 +170754230190,224,0 +170754230239,224,0 +170754230287,224,0 +170754230337,223,0 +170754230385,223,0 +170754230434,215,0 +170754230482,215,0 +170754230530,215,0 +170754230580,215,0 +170754230629,216,0 +170754230677,217,0 +170754230725,218,0 +170754230775,219,0 +170754230823,219,0 +170754230870,220,0 +170754230918,220,0 +170754230966,221,0 +170754231014,221,0 +170754231062,222,0 +170754231110,222,0 +170754231158,223,0 +170754231206,222,0 +170754231254,223,0 +170754231303,223,0 +170754231353,216,0 +170754231401,214,0 +170754231449,215,0 +170754231498,216,0 +170754231546,216,0 +170754231594,217,0 +170754231644,218,0 +170754231692,219,0 +170754231740,219,0 +170754231788,220,0 +170754231836,221,0 +170754231884,222,0 +170754231932,222,0 +170754231980,223,0 +170754232028,222,0 +170754232076,224,0 +170754232125,225,0 +170754232175,223,0 +170754232223,223,0 +170754232271,216,0 +170754232319,214,0 +170754232368,215,0 +170754232418,216,0 +170754232467,217,0 +170754232515,217,0 +170754232565,218,0 +170754232614,219,0 +170754232662,220,0 +170754232710,220,0 +170754232758,221,0 +170754232806,222,0 +170754232856,223,0 +170754232903,222,0 +170754232953,223,0 +170754233003,223,0 +170754233052,225,0 +170754233102,223,0 +170754233151,223,0 +170754233199,216,0 +170754233247,214,0 +170754233296,215,0 +170754233346,216,0 +170754233394,216,0 +170754233442,217,0 +170754233490,218,0 +170754233538,219,0 +170754233586,219,0 +170754233634,220,0 +170754233682,221,0 +170754233729,221,0 +170754233777,222,0 +170754233825,223,0 +170754233873,223,0 +170754233923,223,0 +170754233971,222,0 +170754234020,223,0 +170754234070,222,0 +170754234118,216,0 +170754234167,216,0 +170754234217,216,0 +170754234266,217,0 +170754234316,218,0 +170754234364,219,0 +170754234411,219,0 +170754234461,220,0 +170754234509,220,0 +170754234557,220,0 +170754234605,222,0 +170754234652,222,0 +170754234700,223,0 +170754234748,222,0 +170754234796,222,0 +170754234844,222,0 +170754234892,222,0 +170754234940,222,0 +170754234988,222,0 +170754235037,216,0 +170754235085,217,0 +170754235133,217,0 +170754235182,217,0 +170754235230,218,0 +170754235278,219,0 +170754235326,221,0 +170754235374,223,0 +170754235423,221,0 +170754235471,222,0 +170754235520,222,0 +170754235568,223,0 +170754235618,222,0 +170754235667,223,0 +170754235717,223,0 +170754235765,224,0 +170754235813,223,0 +170754235860,224,0 +170754235908,222,0 +170754235956,216,0 +170754236004,214,0 +170754236052,215,0 +170754236102,217,0 +170754236151,217,0 +170754236199,218,0 +170754236247,218,0 +170754236295,219,0 +170754236343,220,0 +170754236392,220,0 +170754236440,221,0 +170754236490,223,0 +170754236539,222,0 +170754236589,224,0 +170754236639,223,0 +170754236687,223,0 +170754236736,223,0 +170754236786,223,0 +170754236833,222,0 +170754236881,215,0 +170754236931,215,0 +170754236979,216,0 +170754237027,216,0 +170754237076,218,0 +170754237124,218,0 +170754237172,218,0 +170754237220,219,0 +170754237268,220,0 +170754237316,220,0 +170754237364,221,0 +170754237414,220,0 +170754237463,223,0 +170754237513,223,0 +170754237562,222,0 +170754237612,223,0 +170754237660,223,0 +170754237708,222,0 +170754237755,222,0 +170754237803,215,0 +170754237851,215,0 +170754237899,215,0 +170754237947,216,0 +170754237996,216,0 +170754238044,216,0 +170754238092,216,0 +170754238140,217,0 +170754238189,219,0 +170754238237,220,0 +170754238285,221,0 +170754238333,221,0 +170754238381,222,0 +170754238429,222,0 +170754238477,222,0 +170754238525,223,0 +170754238574,223,0 +170754238622,223,0 +170754238670,222,0 +170754238719,215,0 +170754238769,214,0 +170754238817,214,0 +170754238866,215,0 +170754238916,216,0 +170754238963,216,0 +170754239011,216,0 +170754239059,217,0 +170754239107,218,0 +170754239156,218,0 +170754239204,220,0 +170754239252,220,0 +170754239300,221,0 +170754239350,222,0 +170754239398,222,0 +170754239445,222,0 +170754239495,222,0 +170754239543,223,0 +170754239591,223,0 +170754239638,216,0 +170754239686,215,0 +170754239734,215,0 +170754239784,215,0 +170754239831,215,0 +170754239881,217,0 +170754239929,217,0 +170754239977,218,0 +170754240026,218,0 +170754240074,219,0 +170754240122,220,0 +170754240172,221,0 +170754240220,224,0 +170754240269,224,0 +170754240317,224,0 +170754240365,223,0 +170754240413,224,0 +170754240461,222,0 +170754240509,222,0 +170754240558,216,0 +170754240606,215,0 +170754240654,215,0 +170754240702,216,0 +170754240750,216,0 +170754240798,217,0 +170754240846,216,0 +170754240894,217,0 +170754240942,219,0 +170754240990,220,0 +170754241039,220,0 +170754241087,221,0 +170754241137,222,0 +170754241187,222,0 +170754241236,222,0 +170754241286,223,0 +170754241334,224,0 +170754241382,223,0 +170754241430,223,0 +170754241477,216,0 +170754241525,214,0 +170754241573,214,0 +170754241623,215,0 +170754241671,215,0 +170754241719,217,0 +170754241767,218,0 +170754241815,218,0 +170754241864,219,0 +170754241912,220,0 +170754241960,220,0 +170754242009,220,0 +170754242057,222,0 +170754242105,222,0 +170754242155,223,0 +170754242204,223,0 +170754242254,223,0 +170754242302,224,0 +170754242351,223,0 +170754242401,216,0 +170754242449,214,0 +170754242498,214,0 +170754242546,215,0 +170754242594,215,0 +170754242642,216,0 +170754242690,217,0 +170754242740,217,0 +170754242788,219,0 +170754242836,219,0 +170754242883,220,0 +170754242931,221,0 +170754242979,221,0 +170754243027,221,0 +170754243075,222,0 +170754243123,223,0 +170754243171,222,0 +170754243220,222,0 +170754243268,223,0 +170754243318,216,0 +170754243366,213,0 +170754243414,215,0 +170754243462,215,0 +170754243511,216,0 +170754243559,216,0 +170754243607,217,0 +170754243656,217,0 +170754243706,220,0 +170754243753,219,0 +170754243801,219,0 +170754243849,221,0 +170754243897,222,0 +170754243945,222,0 +170754243993,223,0 +170754244041,223,0 +170754244089,222,0 +170754244137,223,0 +170754244184,223,0 +170754244232,216,0 +170754244280,215,0 +170754244328,215,0 +170754244378,215,0 +170754244427,217,0 +170754244477,216,0 +170754244526,218,0 +170754244576,218,0 +170754244624,219,0 +170754244672,220,0 +170754244721,222,0 +170754244771,221,0 +170754244819,222,0 +170754244867,222,0 +170754244915,222,0 +170754244964,223,0 +170754245014,224,0 +170754245062,224,0 +170754245111,223,0 +170754245161,217,0 +170754245210,214,0 +170754245260,214,0 +170754245308,215,0 +170754245357,217,0 +170754245407,217,0 +170754245455,217,0 +170754245503,218,0 +170754245551,219,0 +170754245599,219,0 +170754245647,221,0 +170754245696,217,0 +170754245744,222,0 +170754245792,223,0 +170754245841,224,0 +170754245889,223,0 +170754245939,224,0 +170754245988,223,0 +170754246038,223,0 +170754246086,216,0 +170754246135,215,0 +170754246183,215,0 +170754246231,216,0 +170754246279,217,0 +170754246327,217,0 +170754246375,217,0 +170754246425,218,0 +170754246474,219,0 +170754246524,221,0 +170754246572,221,0 +170754246621,221,0 +170754246671,222,0 +170754246720,223,0 +170754246768,222,0 +170754246816,222,0 +170754246864,223,0 +170754246912,223,0 +170754246962,223,0 +170754247011,216,0 +170754247059,215,0 +170754247107,216,0 +170754247155,216,0 +170754247205,217,0 +170754247252,218,0 +170754247302,218,0 +170754247352,219,0 +170754247399,219,0 +170754247447,219,0 +170754247495,220,0 +170754247543,222,0 +170754247593,223,0 +170754247642,223,0 +170754247692,221,0 +170754247740,223,0 +170754247787,223,0 +170754247837,223,0 +170754247886,222,0 +170754247936,218,0 +170754247985,218,0 +170754248035,219,0 +170754248083,219,0 +170754248131,219,0 +170754248179,220,0 +170754248227,221,0 +170754248275,223,0 +170754248323,222,0 +170754248370,224,0 +170754248418,224,0 +170754248466,224,0 +170754248516,223,0 +170754248564,224,0 +170754248612,224,0 +170754248660,224,0 +170754248709,223,0 +170754248757,224,0 +170754248807,222,0 +170754248855,215,0 +170754248903,217,0 +170754248951,218,0 +170754248998,220,0 +170754249046,220,0 +170754249096,220,0 +170754249145,221,0 +170754249195,221,0 +170754249244,222,0 +170754249294,225,0 +170754249343,223,0 +170754249393,224,0 +170754249441,223,0 +170754249490,223,0 +170754249538,224,0 +170754249586,224,0 +170754249634,224,0 +170754249682,223,0 +170754249730,225,0 +170754249779,217,0 +170754249827,216,0 +170754249875,217,0 +170754249923,217,0 +170754249971,218,0 +170754250019,219,0 +170754250069,220,0 +170754250117,220,0 +170754250165,221,0 +170754250213,222,0 +170754250261,223,0 +170754250309,223,0 +170754250358,223,0 +170754250408,224,0 +170754250456,224,0 +170754250504,224,0 +170754250552,224,0 +170754250601,222,0 +170754250649,223,0 +170754250697,217,0 +170754250745,215,0 +170754250794,216,0 +170754250842,217,0 +170754250890,218,0 +170754250939,218,0 +170754250987,220,0 +170754251035,220,0 +170754251083,220,0 +170754251131,221,0 +170754251179,220,0 +170754251227,222,0 +170754251275,223,0 +170754251324,223,0 +170754251372,223,0 +170754251420,225,0 +170754251468,224,0 +170754251516,223,0 +170754251564,222,0 +170754251613,216,0 +170754251661,216,0 +170754251711,217,0 +170754251760,217,0 +170754251808,218,0 +170754251856,219,0 +170754251904,220,0 +170754251952,221,0 +170754252002,221,0 +170754252051,221,0 +170754252101,222,0 +170754252149,223,0 +170754252197,226,0 +170754252245,226,0 +170754252294,225,0 +170754252344,224,0 +170754252393,224,0 +170754252441,223,0 +170754252489,223,0 +170754252537,216,0 +170754252586,215,0 +170754252634,216,0 +170754252684,217,0 +170754252732,217,0 +170754252780,219,0 +170754252828,218,0 +170754252876,220,0 +170754252924,221,0 +170754252972,221,0 +170754253020,222,0 +170754253068,222,0 +170754253117,222,0 +170754253166,223,0 +170754253214,224,0 +170754253264,223,0 +170754253312,223,0 +170754253361,223,0 +170754253411,222,0 +170754253459,216,0 +170754253508,214,0 +170754253556,215,0 +170754253604,216,0 +170754253652,217,0 +170754253700,217,0 +170754253748,219,0 +170754253796,219,0 +170754253846,220,0 +170754253895,221,0 +170754253945,222,0 +170754253993,222,0 +170754254042,222,0 +170754254090,222,0 +170754254138,223,0 +170754254186,224,0 +170754254234,223,0 +170754254282,224,0 +170754254331,222,0 +170754254379,216,0 +170754254427,214,0 +170754254475,214,0 +170754254525,216,0 +170754254573,216,0 +170754254622,217,0 +170754254672,218,0 +170754254721,219,0 +170754254769,219,0 +170754254817,220,0 +170754254865,220,0 +170754254913,222,0 +170754254961,222,0 +170754255010,221,0 +170754255058,222,0 +170754255106,223,0 +170754255156,223,0 +170754255204,223,0 +170754255252,222,0 +170754255300,216,0 +170754255349,215,0 +170754255399,216,0 +170754255447,217,0 +170754255496,218,0 +170754255544,219,0 +170754255594,219,0 +170754255642,220,0 +170754255691,220,0 +170754255741,221,0 +170754255789,222,0 +170754255838,222,0 +170754255888,223,0 +170754255936,223,0 +170754255984,222,0 +170754256031,224,0 +170754256081,225,0 +170754256130,223,0 +170754256178,222,0 +170754256226,216,0 +170754256274,216,0 +170754256323,216,0 +170754256373,218,0 +170754256422,218,0 +170754256472,218,0 +170754256520,219,0 +170754256569,219,0 +170754256617,221,0 +170754256665,221,0 +170754256715,224,0 +170754256764,221,0 +170754256812,222,0 +170754256860,223,0 +170754256908,223,0 +170754256956,223,0 +170754257004,223,0 +170754257053,223,0 +170754257101,223,0 +170754257149,216,0 +170754257197,216,0 +170754257245,217,0 +170754257294,217,0 +170754257344,217,0 +170754257394,219,0 +170754257443,218,0 +170754257491,220,0 +170754257541,220,0 +170754257589,220,0 +170754257638,222,0 +170754257686,223,0 +170754257734,223,0 +170754257782,223,0 +170754257830,223,0 +170754257878,224,0 +170754257927,223,0 +170754257975,223,0 +170754258023,222,0 +170754258071,216,0 +170754258119,215,0 +170754258168,216,0 +170754258218,217,0 +170754258267,219,0 +170754258315,218,0 +170754258363,218,0 +170754258411,220,0 +170754258461,219,0 +170754258509,220,0 +170754258557,221,0 +170754258605,224,0 +170754258653,224,0 +170754258701,225,0 +170754258750,223,0 +170754258798,223,0 +170754258847,224,0 +170754258895,223,0 +170754258945,222,0 +170754258992,216,0 +170754259040,215,0 +170754259088,215,0 +170754259136,216,0 +170754259184,217,0 +170754259232,217,0 +170754259280,218,0 +170754259328,219,0 +170754259376,220,0 +170754259424,221,0 +170754259472,221,0 +170754259520,221,0 +170754259569,222,0 +170754259617,221,0 +170754259666,223,0 +170754259714,222,0 +170754259762,223,0 +170754259810,223,0 +170754259858,222,0 +170754259906,216,0 +170754259955,215,0 +170754260003,216,0 +170754260051,216,0 +170754260099,217,0 +170754260147,217,0 +170754260195,217,0 +170754260243,219,0 +170754260290,219,0 +170754260338,220,0 +170754260386,221,0 +170754260434,222,0 +170754260482,222,0 +170754260530,222,0 +170754260579,224,0 +170754260629,224,0 +170754260678,225,0 +170754260726,223,0 +170754260774,223,0 +170754260824,216,0 +170754260871,214,0 +170754260919,215,0 +170754260967,215,0 +170754261015,216,0 +170754261063,216,0 +170754261111,217,0 +170754261159,217,0 +170754261207,218,0 +170754261255,219,0 +170754261303,220,0 +170754261353,221,0 +170754261402,221,0 +170754261450,223,0 +170754261500,224,0 +170754261549,221,0 +170754261597,223,0 +170754261647,223,0 +170754261695,223,0 +170754261743,216,0 +170754261790,214,0 +170754261838,215,0 +170754261888,215,0 +170754261936,216,0 +170754261984,216,0 +170754262033,217,0 +170754262081,218,0 +170754262131,218,0 +170754262180,219,0 +170754262228,220,0 +170754262276,221,0 +170754262326,221,0 +170754262374,222,0 +170754262422,223,0 +170754262471,223,0 +170754262521,223,0 +170754262569,222,0 +170754262618,223,0 +170754262668,216,0 +170754262716,215,0 +170754262763,215,0 +170754262813,216,0 +170754262861,218,0 +170754262909,217,0 +170754262957,218,0 +170754263005,218,0 +170754263053,219,0 +170754263102,220,0 +170754263150,220,0 +170754263198,221,0 +170754263246,223,0 +170754263294,224,0 +170754263342,224,0 +170754263390,222,0 +170754263437,223,0 +170754263485,223,0 +170754263533,223,0 +170754263581,216,0 +170754263630,215,0 +170754263678,215,0 +170754263726,216,0 +170754263774,217,0 +170754263822,217,0 +170754263870,218,0 +170754263918,218,0 +170754263967,219,0 +170754264017,220,0 +170754264065,220,0 +170754264113,222,0 +170754264162,221,0 +170754264210,222,0 +170754264260,222,0 +170754264309,222,0 +170754264358,224,0 +170754264406,224,0 +170754264454,223,0 +170754264502,215,0 +170754264550,215,0 +170754264599,215,0 +170754264647,216,0 +170754264695,216,0 +170754264743,216,0 +170754264793,219,0 +170754264841,220,0 +170754264889,220,0 +170754264936,220,0 +170754264984,220,0 +170754265034,222,0 +170754265082,222,0 +170754265130,222,0 +170754265177,221,0 +170754265225,223,0 +170754265273,224,0 +170754265323,224,0 +170754265370,223,0 +170754265420,216,0 +170754265469,214,0 +170754265519,215,0 +170754265568,216,0 +170754265618,217,0 +170754265666,217,0 +170754265714,217,0 +170754265763,219,0 +170754265811,219,0 +170754265861,221,0 +170754265910,221,0 +170754265960,222,0 +170754266008,220,0 +170754266056,222,0 +170754266105,222,0 +170754266153,222,0 +170754266201,223,0 +170754266249,223,0 +170754266297,223,0 +170754266345,216,0 +170754266393,215,0 +170754266440,214,0 +170754266488,216,0 +170754266536,216,0 +170754266584,217,0 +170754266632,217,0 +170754266680,219,0 +170754266728,218,0 +170754266776,220,0 +170754266823,222,0 +170754266873,221,0 +170754266922,223,0 +170754266972,222,0 +170754267020,223,0 +170754267069,224,0 +170754267119,223,0 +170754267167,222,0 +170754267214,223,0 +170754267264,216,0 +170754267312,215,0 +170754267360,215,0 +170754267409,216,0 +170754267457,217,0 +170754267507,217,0 +170754267555,218,0 +170754267603,219,0 +170754267651,219,0 +170754267699,219,0 +170754267748,220,0 +170754267796,221,0 +170754267844,221,0 +170754267892,222,0 +170754267940,224,0 +170754267989,224,0 +170754268039,223,0 +170754268087,223,0 +170754268135,221,0 +170754268184,216,0 +170754268232,215,0 +170754268280,216,0 +170754268329,216,0 +170754268377,217,0 +170754268425,218,0 +170754268473,219,0 +170754268521,218,0 +170754268570,219,0 +170754268618,221,0 +170754268666,221,0 +170754268714,222,0 +170754268763,223,0 +170754268811,223,0 +170754268859,223,0 +170754268907,223,0 +170754268955,224,0 +170754269003,223,0 +170754269051,222,0 +170754269099,216,0 +170754269147,215,0 +170754269194,215,0 +170754269242,217,0 +170754269290,217,0 +170754269338,218,0 +170754269386,219,0 +170754269434,220,0 +170754269482,220,0 +170754269531,221,0 +170754269579,222,0 +170754269627,222,0 +170754269675,223,0 +170754269723,225,0 +170754269771,224,0 +170754269818,224,0 +170754269866,223,0 +170754269914,223,0 +170754269962,223,0 +170754270011,217,0 +170754270059,214,0 +170754270107,214,0 +170754270155,215,0 +170754270203,215,0 +170754270253,215,0 +170754270300,216,0 +170754270348,217,0 +170754270396,217,0 +170754270444,218,0 +170754270492,220,0 +170754270542,220,0 +170754270589,222,0 +170754270637,222,0 +170754270687,222,0 +170754270734,224,0 +170754270784,224,0 +170754270833,223,0 +170754270881,223,0 +170754270929,221,0 +170754270977,215,0 +170754271025,215,0 +170754271074,215,0 +170754271124,215,0 +170754271172,216,0 +170754271221,216,0 +170754271269,217,0 +170754271317,218,0 +170754271365,218,0 +170754271415,218,0 +170754271464,219,0 +170754271512,220,0 +170754271562,221,0 +170754271611,222,0 +170754271659,223,0 +170754271707,221,0 +170754271757,223,0 +170754271806,223,0 +170754271856,216,0 +170754271904,215,0 +170754271953,215,0 +170754272003,217,0 +170754272052,217,0 +170754272100,218,0 +170754272148,219,0 +170754272198,219,0 +170754272247,220,0 +170754272295,221,0 +170754272343,223,0 +170754272393,223,0 +170754272440,223,0 +170754272488,224,0 +170754272536,223,0 +170754272584,221,0 +170754272632,223,0 +170754272682,222,0 +170754272732,223,0 +170754272781,215,0 +170754272829,215,0 +170754272877,215,0 +170754272925,217,0 +170754272973,217,0 +170754273022,218,0 +170754273070,218,0 +170754273118,219,0 +170754273166,220,0 +170754273214,221,0 +170754273262,221,0 +170754273312,222,0 +170754273361,223,0 +170754273411,223,0 +170754273460,223,0 +170754273510,223,0 +170754273557,223,0 +170754273605,223,0 +170754273653,222,0 +170754273701,216,0 +170754273749,215,0 +170754273798,216,0 +170754273846,217,0 +170754273894,217,0 +170754273944,218,0 +170754273992,218,0 +170754274039,219,0 +170754274087,220,0 +170754274135,220,0 +170754274183,221,0 +170754274232,221,0 +170754274282,222,0 +170754274330,222,0 +170754274380,223,0 +170754274427,223,0 +170754274477,223,0 +170754274526,223,0 +170754274574,222,0 +170754274624,217,0 +170754274674,217,0 +170754274721,217,0 +170754274769,218,0 +170754274817,219,0 +170754274867,219,0 +170754274915,221,0 +170754274964,221,0 +170754275014,222,0 +170754275062,222,0 +170754275111,222,0 +170754275161,222,0 +170754275209,223,0 +170754275258,223,0 +170754275306,223,0 +170754275356,224,0 +170754275405,223,0 +170754275455,224,0 +170754275503,222,0 +170754275552,218,0 +170754275600,218,0 +170754275648,219,0 +170754275696,219,0 +170754275744,220,0 +170754275792,220,0 +170754275842,221,0 +170754275891,221,0 +170754275941,223,0 +170754275989,222,0 +170754276037,223,0 +170754276085,223,0 +170754276132,223,0 +170754276182,223,0 +170754276232,224,0 +170754276279,223,0 +170754276327,223,0 +170754276377,223,0 +170754276425,222,0 +170754276474,219,0 +170754276524,219,0 +170754276572,219,0 +170754276620,221,0 +170754276668,221,0 +170754276717,221,0 +170754276765,222,0 +170754276813,222,0 +170754276861,223,0 +170754276909,224,0 +170754276957,223,0 +170754277005,224,0 +170754277055,224,0 +170754277104,223,0 +170754277152,223,0 +170754277202,223,0 +170754277251,223,0 +170754277299,223,0 +170754277349,223,0 +170754277398,216,0 +170754277446,216,0 +170754277494,217,0 +170754277542,218,0 +170754277590,219,0 +170754277640,220,0 +170754277687,219,0 +170754277735,220,0 +170754277785,221,0 +170754277833,221,0 +170754277881,222,0 +170754277929,223,0 +170754277977,222,0 +170754278025,232,0 +170754278073,223,0 +170754278121,223,0 +170754278168,223,0 +170754278216,224,0 +170754278264,224,0 +170754278312,216,0 +170754278362,215,0 +170754278410,216,0 +170754278459,217,0 +170754278509,218,0 +170754278557,218,0 +170754278605,219,0 +170754278653,220,0 +170754278700,221,0 +170754278748,221,0 +170754278796,221,0 +170754278844,221,0 +170754278892,222,0 +170754278940,222,0 +170754278988,223,0 +170754279036,223,0 +170754279084,223,0 +170754279131,224,0 +170754279179,223,0 +170754279227,216,0 +170754279275,214,0 +170754279323,214,0 +170754279371,215,0 +170754279419,216,0 +170754279467,217,0 +170754279516,218,0 +170754279564,218,0 +170754279612,221,0 +170754279660,220,0 +170754279709,221,0 +170754279757,222,0 +170754279807,224,0 +170754279857,224,0 +170754279906,225,0 +170754279954,222,0 +170754280004,223,0 +170754280053,223,0 +170754280103,223,0 +170754280152,215,0 +170754280200,214,0 +170754280250,215,0 +170754280299,216,0 +170754280347,216,0 +170754280395,217,0 +170754280444,217,0 +170754280492,219,0 +170754280542,220,0 +170754280590,220,0 +170754280638,221,0 +170754280687,225,0 +170754280735,224,0 +170754280785,224,0 +170754280834,224,0 +170754280882,223,0 +170754280932,223,0 +170754280980,223,0 +170754281028,222,0 +170754281077,214,0 +170754281125,215,0 +170754281173,216,0 +170754281223,216,0 +170754281272,217,0 +170754281320,217,0 +170754281368,218,0 +170754281418,219,0 +170754281466,220,0 +170754281514,220,0 +170754281561,222,0 +170754281609,222,0 +170754281659,222,0 +170754281708,223,0 +170754281756,223,0 +170754281804,224,0 +170754281852,223,0 +170754281900,223,0 +170754281948,222,0 +170754281998,214,0 +170754282046,214,0 +170754282094,215,0 +170754282141,216,0 +170754282189,217,0 +170754282239,218,0 +170754282287,218,0 +170754282335,219,0 +170754282383,219,0 +170754282431,219,0 +170754282480,221,0 +170754282528,221,0 +170754282576,221,0 +170754282624,221,0 +170754282672,222,0 +170754282722,223,0 +170754282769,223,0 +170754282817,225,0 +170754282867,219,0 +170754282915,215,0 +170754282964,215,0 +170754283012,215,0 +170754283060,216,0 +170754283110,216,0 +170754283159,217,0 +170754283207,217,0 +170754283257,218,0 +170754283305,219,0 +170754283354,220,0 +170754283404,221,0 +170754283453,222,0 +170754283503,221,0 +170754283551,222,0 +170754283599,224,0 +170754283648,223,0 +170754283698,223,0 +170754283746,221,0 +170754283794,218,0 +170754283843,215,0 +170754283891,215,0 +170754283939,215,0 +170754283989,214,0 +170754284037,216,0 +170754284086,216,0 +170754284134,218,0 +170754284184,217,0 +170754284231,218,0 +170754284279,219,0 +170754284327,220,0 +170754284375,221,0 +170754284425,222,0 +170754284473,222,0 +170754284521,221,0 +170754284569,223,0 +170754284618,224,0 +170754284666,223,0 +170754284716,222,0 +170754284764,215,0 +170754284812,214,0 +170754284860,215,0 +170754284908,215,0 +170754284957,216,0 +170754285005,217,0 +170754285053,217,0 +170754285101,218,0 +170754285149,218,0 +170754285198,219,0 +170754285246,220,0 +170754285294,221,0 +170754285344,221,0 +170754285392,223,0 +170754285440,222,0 +170754285489,223,0 +170754285539,223,0 +170754285588,223,0 +170754285638,216,0 +170754285686,214,0 +170754285734,215,0 +170754285783,215,0 +170754285833,216,0 +170754285882,217,0 +170754285930,217,0 +170754285980,218,0 +170754286028,219,0 +170754286076,220,0 +170754286124,220,0 +170754286172,220,0 +170754286220,222,0 +170754286267,224,0 +170754286315,223,0 +170754286365,223,0 +170754286414,221,0 +170754286462,223,0 +170754286512,223,0 +170754286561,216,0 +170754286609,214,0 +170754286657,215,0 +170754286705,216,0 +170754286753,217,0 +170754286803,217,0 +170754286851,217,0 +170754286899,217,0 +170754286947,219,0 +170754286995,220,0 +170754287044,220,0 +170754287092,221,0 +170754287140,222,0 +170754287190,222,0 +170754287238,222,0 +170754287287,222,0 +170754287335,224,0 +170754287383,223,0 +170754287432,223,0 +170754287480,215,0 +170754287528,215,0 +170754287578,216,0 +170754287626,218,0 +170754287674,217,0 +170754287722,218,0 +170754287770,220,0 +170754287818,220,0 +170754287867,220,0 +170754287915,228,0 +170754287963,221,0 +170754288011,222,0 +170754288061,221,0 +170754288109,223,0 +170754288158,224,0 +170754288208,223,0 +170754288256,223,0 +170754288304,223,0 +170754288352,223,0 +170754288401,217,0 +170754288450,217,0 +170754288498,217,0 +170754288548,217,0 +170754288597,218,0 +170754288647,219,0 +170754288695,220,0 +170754288744,220,0 +170754288792,221,0 +170754288840,221,0 +170754288888,222,0 +170754288938,222,0 +170754288987,222,0 +170754289037,222,0 +170754289086,223,0 +170754289136,223,0 +170754289184,223,0 +170754289232,223,0 +170754289280,223,0 +170754289328,216,0 +170754289377,216,0 +170754289427,218,0 +170754289475,219,0 +170754289524,219,0 +170754289572,220,0 +170754289622,221,0 +170754289670,222,0 +170754289719,222,0 +170754289767,223,0 +170754289815,222,0 +170754289865,223,0 +170754289914,224,0 +170754289962,224,0 +170754290010,222,0 +170754290058,223,0 +170754290106,223,0 +170754290154,224,0 +170754290201,222,0 +170754290249,217,0 +170754290297,216,0 +170754290345,217,0 +170754290393,218,0 +170754290441,218,0 +170754290489,219,0 +170754290537,219,0 +170754290586,221,0 +170754290634,220,0 +170754290682,221,0 +170754290732,222,0 +170754290781,223,0 +170754290831,223,0 +170754290879,223,0 +170754290927,223,0 +170754290976,223,0 +170754291024,224,0 +170754291074,224,0 +170754291122,222,0 +170754291170,215,0 +170754291218,215,0 +170754291266,215,0 +170754291314,216,0 +170754291363,217,0 +170754291411,218,0 +170754291459,219,0 +170754291509,219,0 +170754291556,220,0 +170754291606,221,0 +170754291654,222,0 +170754291703,222,0 +170754291753,223,0 +170754291802,224,0 +170754291852,224,0 +170754291901,225,0 +170754291951,220,0 +170754291999,223,0 +170754292049,223,0 +170754292097,215,0 +170754292144,215,0 +170754292192,215,0 +170754292242,216,0 +170754292290,217,0 +170754292338,218,0 +170754292387,219,0 +170754292435,220,0 +170754292485,220,0 +170754292533,221,0 +170754292582,221,0 +170754292632,223,0 +170754292680,223,0 +170754292729,223,0 +170754292777,223,0 +170754292825,223,0 +170754292873,222,0 +170754292923,222,0 +170754292971,222,0 +170754293018,215,0 +170754293068,215,0 +170754293116,215,0 +170754293164,215,0 +170754293213,216,0 +170754293263,217,0 +170754293312,217,0 +170754293360,217,0 +170754293410,218,0 +170754293458,219,0 +170754293507,220,0 +170754293555,221,0 +170754293603,222,0 +170754293651,221,0 +170754293699,222,0 +170754293747,222,0 +170754293795,223,0 +170754293844,223,0 +170754293892,218,0 +170754293940,214,0 +170754293990,214,0 +170754294039,215,0 +170754294089,216,0 +170754294138,216,0 +170754294188,217,0 +170754294236,218,0 +170754294284,218,0 +170754294333,219,0 +170754294383,220,0 +170754294432,221,0 +170754294480,221,0 +170754294530,222,0 +170754294579,222,0 +170754294629,222,0 +170754294677,223,0 +170754294726,222,0 +170754294774,223,0 +170754294822,216,0 +170754294870,215,0 +170754294918,217,0 +170754294968,217,0 +170754295017,218,0 +170754295067,219,0 +170754295115,219,0 +170754295163,220,0 +170754295212,221,0 +170754295262,223,0 +170754295311,222,0 +170754295359,222,0 +170754295407,223,0 +170754295455,223,0 +170754295503,223,0 +170754295551,223,0 +170754295598,223,0 +170754295646,223,0 +170754295696,223,0 +170754295744,217,0 +170754295793,216,0 +170754295841,217,0 +170754295889,218,0 +170754295936,219,0 +170754295984,219,0 +170754296032,220,0 +170754296082,220,0 +170754296130,221,0 +170754296179,222,0 +170754296227,222,0 +170754296275,223,0 +170754296323,222,0 +170754296371,223,0 +170754296419,224,0 +170754296469,223,0 +170754296518,223,0 +170754296568,223,0 +170754296617,223,0 +170754296665,216,0 +170754296713,215,0 +170754296761,216,0 +170754296809,217,0 +170754296857,218,0 +170754296906,218,0 +170754296954,219,0 +170754297002,220,0 +170754297050,220,0 +170754297100,220,0 +170754297149,221,0 +170754297199,222,0 +170754297247,222,0 +170754297296,223,0 +170754297344,223,0 +170754297394,223,0 +170754297443,223,0 +170754297493,223,0 +170754297542,222,0 +170754297592,215,0 +170754297641,215,0 +170754297691,215,0 +170754297740,215,0 +170754297790,216,0 +170754297838,217,0 +170754297886,217,0 +170754297934,218,0 +170754297983,219,0 +170754298033,220,0 +170754298081,222,0 +170754298130,222,0 +170754298178,223,0 +170754298226,223,0 +170754298276,223,0 +170754298324,223,0 +170754298373,222,0 +170754298421,223,0 +170754298469,222,0 +170754298517,215,0 +170754298565,215,0 +170754298613,215,0 +170754298663,215,0 +170754298710,215,0 +170754298760,216,0 +170754298810,216,0 +170754298857,217,0 +170754298905,218,0 +170754298954,219,0 +170754299003,219,0 +170754299053,219,0 +170754299102,221,0 +170754299150,222,0 +170754299198,222,0 +170754299246,222,0 +170754299294,223,0 +170754299342,223,0 +170754299390,223,0 +170754299438,215,0 +170754299487,215,0 +170754299535,216,0 +170754299583,216,0 +170754299633,217,0 +170754299682,218,0 +170754299732,218,0 +170754299781,219,0 +170754299829,219,0 +170754299879,220,0 +170754299927,221,0 +170754299976,221,0 +170754300026,221,0 +170754300074,222,0 +170754300122,223,0 +170754300170,223,0 +170754300218,224,0 +170754300266,223,0 +170754300315,217,0 +170754300363,215,0 +170754300411,216,0 +170754300459,217,0 +170754300508,217,0 +170754300556,218,0 +170754300604,219,0 +170754300654,219,0 +170754300703,220,0 +170754300751,220,0 +170754300801,221,0 +170754300851,220,0 +170754300899,222,0 +170754300948,222,0 +170754300996,221,0 +170754301045,223,0 +170754301093,225,0 +170754301141,223,0 +170754301189,224,0 +170754301239,216,0 +170754301287,216,0 +170754301336,216,0 +170754301386,217,0 +170754301435,218,0 +170754301483,219,0 +170754301531,219,0 +170754301579,220,0 +170754301629,221,0 +170754301678,222,0 +170754301728,224,0 +170754301776,223,0 +170754301824,222,0 +170754301873,223,0 +170754301921,223,0 +170754301971,225,0 +170754302020,224,0 +170754302068,223,0 +170754302118,223,0 +170754302166,216,0 +170754302215,215,0 +170754302265,218,0 +170754302312,218,0 +170754302360,219,0 +170754302408,219,0 +170754302458,220,0 +170754302506,219,0 +170754302554,220,0 +170754302603,221,0 +170754302651,222,0 +170754302701,222,0 +170754302749,224,0 +170754302797,223,0 +170754302845,223,0 +170754302893,223,0 +170754302941,224,0 +170754302989,223,0 +170754303036,223,0 +170754303086,216,0 +170754303134,217,0 +170754303182,218,0 +170754303231,218,0 +170754303279,218,0 +170754303327,220,0 +170754303375,220,0 +170754303425,222,0 +170754303473,221,0 +170754303522,221,0 +170754303570,222,0 +170754303620,223,0 +170754303669,224,0 +170754303719,224,0 +170754303768,223,0 +170754303818,223,0 +170754303867,223,0 +170754303915,224,0 +170754303965,222,0 +170754304014,216,0 +170754304062,215,0 +170754304112,217,0 +170754304160,217,0 +170754304209,218,0 +170754304257,217,0 +170754304305,219,0 +170754304355,220,0 +170754304404,218,0 +170754304452,222,0 +170754304500,222,0 +170754304548,225,0 +170754304596,222,0 +170754304644,223,0 +170754304694,222,0 +170754304742,221,0 +170754304790,224,0 +170754304838,223,0 +170754304886,224,0 +170754304934,215,0 +170754304983,215,0 +170754305031,216,0 +170754305081,217,0 +170754305128,217,0 +170754305176,218,0 +170754305226,219,0 +170754305276,219,0 +170754305325,220,0 +170754305375,220,0 +170754305423,223,0 +170754305470,222,0 +170754305518,223,0 +170754305568,222,0 +170754305616,223,0 +170754305665,223,0 +170754305715,223,0 +170754305763,223,0 +170754305812,222,0 +170754305862,213,0 +170754305910,215,0 +170754305958,216,0 +170754306007,217,0 +170754306055,217,0 +170754306103,218,0 +170754306151,218,0 +170754306199,220,0 +170754306247,221,0 +170754306295,221,0 +170754306345,221,0 +170754306392,221,0 +170754306442,223,0 +170754306490,223,0 +170754306538,226,0 +170754306586,224,0 +170754306634,224,0 +170754306683,223,0 +170754306731,222,0 +170754306781,215,0 +170754306829,216,0 +170754306878,216,0 +170754306926,217,0 +170754306974,218,0 +170754307021,218,0 +170754307069,218,0 +170754307117,219,0 +170754307165,220,0 +170754307213,219,0 +170754307262,222,0 +170754307312,221,0 +170754307361,224,0 +170754307409,224,0 +170754307457,223,0 +170754307505,224,0 +170754307553,222,0 +170754307601,223,0 +170754307649,216,0 +170754307698,216,0 +170754307746,216,0 +170754307794,215,0 +170754307842,215,0 +170754307891,219,0 +170754307939,219,0 +170754307989,220,0 +170754308037,220,0 +170754308086,221,0 +170754308134,221,0 +170754308184,222,0 +170754308232,223,0 +170754308280,223,0 +170754308328,223,0 +170754308376,229,0 +170754308423,223,0 +170754308471,224,0 +170754308521,222,0 +170754308569,218,0 +170754308617,217,0 +170754308664,218,0 +170754308712,218,0 +170754308760,219,0 +170754308808,219,0 +170754308856,220,0 +170754308904,222,0 +170754308952,221,0 +170754309000,221,0 +170754309049,221,0 +170754309097,222,0 +170754309145,223,0 +170754309193,223,0 +170754309241,222,0 +170754309289,223,0 +170754309338,223,0 +170754309388,223,0 +170754309437,223,0 +170754309487,216,0 +170754309536,217,0 +170754309584,217,0 +170754309632,218,0 +170754309680,218,0 +170754309728,219,0 +170754309778,220,0 +170754309827,221,0 +170754309875,222,0 +170754309923,223,0 +170754309971,222,0 +170754310019,223,0 +170754310067,223,0 +170754310117,223,0 +170754310166,223,0 +170754310214,223,0 +170754310264,224,0 +170754310312,225,0 +170754310360,223,0 +170754310408,216,0 +170754310455,215,0 +170754310503,216,0 +170754310551,216,0 +170754310601,217,0 +170754310649,217,0 +170754310698,218,0 +170754310746,219,0 +170754310794,221,0 +170754310844,221,0 +170754310892,222,0 +170754310940,223,0 +170754310988,222,0 +170754311036,221,0 +170754311084,223,0 +170754311132,224,0 +170754311180,223,0 +170754311229,222,0 +170754311279,223,0 +170754311327,215,0 +170754311374,214,0 +170754311424,215,0 +170754311472,214,0 +170754311520,217,0 +170754311568,216,0 +170754311617,216,0 +170754311667,217,0 +170754311716,218,0 +170754311764,219,0 +170754311812,220,0 +170754311861,220,0 +170754311909,221,0 +170754311957,223,0 +170754312007,222,0 +170754312055,223,0 +170754312103,224,0 +170754312152,223,0 +170754312202,224,0 +170754312250,216,0 +170754312298,215,0 +170754312346,214,0 +170754312394,215,0 +170754312441,215,0 +170754312491,216,0 +170754312539,217,0 +170754312588,217,0 +170754312636,219,0 +170754312684,218,0 +170754312732,219,0 +170754312780,220,0 +170754312830,222,0 +170754312878,222,0 +170754312926,222,0 +170754312975,223,0 +170754313023,223,0 +170754313071,224,0 +170754313121,230,0 +170754313170,215,0 +170754313220,214,0 +170754313268,215,0 +170754313316,215,0 +170754313364,215,0 +170754313412,216,0 +170754313459,217,0 +170754313509,218,0 +170754313557,220,0 +170754313605,220,0 +170754313654,220,0 +170754313702,221,0 +170754313750,222,0 +170754313800,222,0 +170754313849,223,0 +170754313897,222,0 +170754313945,223,0 +170754313995,222,0 +170754314044,215,0 +170754314094,214,0 +170754314143,215,0 +170754314193,216,0 +170754314241,216,0 +170754314290,217,0 +170754314338,218,0 +170754314388,219,0 +170754314436,220,0 +170754314485,222,0 +170754314535,220,0 +170754314583,222,0 +170754314631,223,0 +170754314680,223,0 +170754314728,222,0 +170754314778,223,0 +170754314827,223,0 +170754314877,222,0 +170754314926,214,0 +170754314976,215,0 +170754315025,216,0 +170754315075,217,0 +170754315124,218,0 +170754315174,219,0 +170754315224,220,0 +170754315271,220,0 +170754315319,221,0 +170754315369,221,0 +170754315417,222,0 +170754315465,222,0 +170754315514,222,0 +170754315562,222,0 +170754315610,221,0 +170754315658,223,0 +170754315706,223,0 +170754315754,222,0 +170754315802,216,0 +170754315850,216,0 +170754315898,217,0 +170754315947,218,0 +170754315995,218,0 +170754316043,219,0 +170754316091,219,0 +170754316139,221,0 +170754316187,221,0 +170754316235,221,0 +170754316283,224,0 +170754316331,222,0 +170754316379,224,0 +170754316427,224,0 +170754316477,224,0 +170754316525,224,0 +170754316573,224,0 +170754316621,223,0 +170754316670,217,0 +170754316718,216,0 +170754316766,217,0 +170754316814,218,0 +170754316862,219,0 +170754316910,220,0 +170754316958,220,0 +170754317006,220,0 +170754317054,221,0 +170754317102,223,0 +170754317151,223,0 +170754317199,221,0 +170754317247,223,0 +170754317297,224,0 +170754317346,224,0 +170754317396,223,0 +170754317444,222,0 +170754317491,223,0 +170754317539,216,0 +170754317589,216,0 +170754317638,217,0 +170754317686,218,0 +170754317736,218,0 +170754317784,219,0 +170754317833,219,0 +170754317881,221,0 +170754317931,222,0 +170754317980,221,0 +170754318028,222,0 +170754318076,224,0 +170754318124,224,0 +170754318172,224,0 +170754318220,224,0 +170754318270,223,0 +170754318319,222,0 +170754318367,222,0 +170754318415,220,0 +170754318463,215,0 +170754318511,216,0 +170754318561,216,0 +170754318610,217,0 +170754318660,218,0 +170754318709,219,0 +170754318757,219,0 +170754318805,220,0 +170754318855,221,0 +170754318903,222,0 +170754318952,222,0 +170754319000,223,0 +170754319050,223,0 +170754319099,223,0 +170754319149,222,0 +170754319198,223,0 +170754319248,223,0 +170754319297,221,0 +170754319347,215,0 +170754319396,216,0 +170754319444,217,0 +170754319494,217,0 +170754319542,218,0 +170754319591,220,0 +170754319641,220,0 +170754319690,220,0 +170754319738,221,0 +170754319786,221,0 +170754319834,222,0 +170754319882,223,0 +170754319930,224,0 +170754319978,224,0 +170754320026,224,0 +170754320074,223,0 +170754320123,223,0 +170754320173,222,0 +170754320223,215,0 +170754320271,215,0 +170754320319,216,0 +170754320366,217,0 +170754320414,217,0 +170754320464,218,0 +170754320512,218,0 +170754320561,220,0 +170754320609,220,0 +170754320659,221,0 +170754320708,222,0 +170754320756,223,0 +170754320804,223,0 +170754320852,222,0 +170754320902,223,0 +170754320951,223,0 +170754320999,223,0 +170754321049,222,0 +170754321097,215,0 +170754321146,215,0 +170754321194,215,0 +170754321242,215,0 +170754321290,216,0 +170754321338,219,0 +170754321388,217,0 +170754321437,218,0 +170754321487,220,0 +170754321535,220,0 +170754321583,221,0 +170754321631,223,0 +170754321679,222,0 +170754321726,224,0 +170754321774,222,0 +170754321824,223,0 +170754321872,223,0 +170754321920,222,0 +170754321969,215,0 +170754322017,215,0 +170754322067,215,0 +170754322115,215,0 +170754322164,215,0 +170754322212,217,0 +170754322260,217,0 +170754322310,218,0 +170754322358,219,0 +170754322407,220,0 +170754322455,221,0 +170754322505,221,0 +170754322553,222,0 +170754322601,223,0 +170754322649,223,0 +170754322697,223,0 +170754322746,223,0 +170754322794,223,0 +170754322842,216,0 +170754322890,214,0 +170754322938,214,0 +170754322986,215,0 +170754323034,215,0 +170754323082,216,0 +170754323131,217,0 +170754323179,217,0 +170754323227,218,0 +170754323277,220,0 +170754323326,221,0 +170754323374,220,0 +170754323422,221,0 +170754323472,222,0 +170754323520,222,0 +170754323568,223,0 +170754323616,223,0 +170754323664,224,0 +170754323714,216,0 +170754323763,214,0 +170754323811,214,0 +170754323859,215,0 +170754323909,216,0 +170754323957,214,0 +170754324006,216,0 +170754324054,217,0 +170754324104,218,0 +170754324153,219,0 +170754324201,219,0 +170754324249,221,0 +170754324299,221,0 +170754324347,221,0 +170754324394,222,0 +170754324442,222,0 +170754324490,223,0 +170754324540,222,0 +170754324588,216,0 +170754324637,215,0 +170754324685,215,0 +170754324733,216,0 +170754324781,217,0 +170754324829,217,0 +170754324879,218,0 +170754324927,218,0 +170754324976,219,0 +170754325024,219,0 +170754325072,219,0 +170754325121,220,0 +170754325171,228,0 +170754325219,222,0 +170754325268,224,0 +170754325316,222,0 +170754325364,224,0 +170754325412,223,0 +170754325460,223,0 +170754325509,213,0 +170754325559,215,0 +170754325606,216,0 +170754325654,214,0 +170754325702,216,0 +170754325752,217,0 +170754325799,218,0 +170754325847,219,0 +170754325895,220,0 +170754325943,221,0 +170754325991,220,0 +170754326039,222,0 +170754326087,222,0 +170754326135,222,0 +170754326183,222,0 +170754326231,222,0 +170754326278,223,0 +170754326328,222,0 +170754326376,216,0 +170754326424,216,0 +170754326471,216,0 +170754326521,217,0 +170754326569,218,0 +170754326617,220,0 +170754326664,219,0 +170754326712,220,0 +170754326760,221,0 +170754326808,221,0 +170754326856,221,0 +170754326904,222,0 +170754326952,220,0 +170754327000,224,0 +170754327048,223,0 +170754327097,223,0 +170754327145,223,0 +170754327194,223,0 +170754327242,219,0 +170754327292,218,0 +170754327340,218,0 +170754327387,219,0 +170754327435,220,0 +170754327483,220,0 +170754327531,221,0 +170754327579,221,0 +170754327627,222,0 +170754327675,222,0 +170754327724,224,0 +170754327774,224,0 +170754327822,223,0 +170754327871,224,0 +170754327919,224,0 +170754327967,224,0 +170754328015,223,0 +170754328064,222,0 +170754328112,220,0 +170754328160,219,0 +170754328210,219,0 +170754328257,219,0 +170754328305,221,0 +170754328353,220,0 +170754328403,222,0 +170754328452,222,0 +170754328500,222,0 +170754328548,224,0 +170754328596,224,0 +170754328645,223,0 +170754328693,223,0 +170754328743,224,0 +170754328792,223,0 +170754328840,223,0 +170754328888,224,0 +170754328936,222,0 +170754328984,224,0 +170754329033,221,0 +170754329081,221,0 +170754329131,221,0 +170754329179,222,0 +170754329227,222,0 +170754329276,223,0 +170754329326,223,0 +170754329375,223,0 +170754329425,223,0 +170754329474,223,0 +170754329522,222,0 +170754329570,223,0 +170754329618,224,0 +170754329666,223,0 +170754329714,224,0 +170754329762,223,0 +170754329810,223,0 +170754329860,217,0 +170754329909,217,0 +170754329959,218,0 +170754330007,219,0 +170754330054,221,0 +170754330104,222,0 +170754330153,221,0 +170754330203,222,0 +170754330251,222,0 +170754330299,223,0 +170754330347,225,0 +170754330395,224,0 +170754330444,224,0 +170754330494,224,0 +170754330542,224,0 +170754330590,224,0 +170754330639,223,0 +170754330689,223,0 +170754330736,217,0 +170754330784,216,0 +170754330832,217,0 +170754330882,218,0 +170754330931,218,0 +170754330981,219,0 +170754331030,220,0 +170754331078,221,0 +170754331126,221,0 +170754331175,221,0 +170754331223,222,0 +170754331271,223,0 +170754331320,221,0 +170754331368,223,0 +170754331416,223,0 +170754331464,224,0 +170754331514,223,0 +170754331562,223,0 +170754331611,216,0 +170754331659,215,0 +170754331707,216,0 +170754331755,217,0 +170754331803,217,0 +170754331851,218,0 +170754331899,219,0 +170754331947,220,0 +170754331995,220,0 +170754332042,221,0 +170754332092,223,0 +170754332141,222,0 +170754332189,223,0 +170754332237,223,0 +170754332285,222,0 +170754332333,221,0 +170754332381,222,0 +170754332431,222,0 +170754332479,217,0 +170754332527,216,0 +170754332576,217,0 +170754332626,217,0 +170754332674,218,0 +170754332722,219,0 +170754332769,220,0 +170754332817,221,0 +170754332865,221,0 +170754332915,222,0 +170754332965,222,0 +170754333014,224,0 +170754333062,223,0 +170754333111,223,0 +170754333161,223,0 +170754333209,223,0 +170754333259,222,0 +170754333306,222,0 +170754333354,218,0 +170754333404,217,0 +170754333453,218,0 +170754333501,218,0 +170754333551,220,0 +170754333600,221,0 +170754333650,220,0 +170754333698,223,0 +170754333747,224,0 +170754333797,222,0 +170754333845,222,0 +170754333894,224,0 +170754333944,223,0 +170754333994,223,0 +170754334043,224,0 +170754334093,222,0 +170754334141,223,0 +170754334190,222,0 +170754334238,218,0 +170754334288,218,0 +170754334337,219,0 +170754334387,219,0 +170754334435,220,0 +170754334484,220,0 +170754334534,221,0 +170754334583,222,0 +170754334633,222,0 +170754334681,222,0 +170754334729,223,0 +170754334777,223,0 +170754334825,224,0 +170754334874,223,0 +170754334922,223,0 +170754334970,223,0 +170754335019,223,0 +170754335067,222,0 +170754335117,218,0 +170754335165,218,0 +170754335213,219,0 +170754335262,219,0 +170754335310,221,0 +170754335358,220,0 +170754335406,222,0 +170754335454,222,0 +170754335504,222,0 +170754335553,224,0 +170754335603,224,0 +170754335652,229,0 +170754335702,224,0 +170754335751,223,0 +170754335799,223,0 +170754335847,223,0 +170754335895,223,0 +170754335945,222,0 +170754335994,217,0 +170754336042,218,0 +170754336090,218,0 +170754336138,219,0 +170754336186,220,0 +170754336234,220,0 +170754336282,221,0 +170754336330,221,0 +170754336378,224,0 +170754336426,222,0 +170754336474,223,0 +170754336523,223,0 +170754336573,223,0 +170754336621,223,0 +170754336669,223,0 +170754336717,223,0 +170754336765,223,0 +170754336813,223,0 +170754336862,216,0 +170754336910,216,0 +170754336959,217,0 +170754337007,218,0 +170754337055,219,0 +170754337103,219,0 +170754337153,219,0 +170754337201,221,0 +170754337250,222,0 +170754337300,222,0 +170754337349,225,0 +170754337397,222,0 +170754337447,221,0 +170754337494,224,0 +170754337542,223,0 +170754337590,223,0 +170754337638,223,0 +170754337686,222,0 +170754337734,217,0 +170754337782,217,0 +170754337830,218,0 +170754337879,218,0 +170754337927,219,0 +170754337975,220,0 +170754338023,220,0 +170754338071,220,0 +170754338120,220,0 +170754338168,221,0 +170754338216,223,0 +170754338264,223,0 +170754338312,224,0 +170754338361,224,0 +170754338409,222,0 +170754338457,223,0 +170754338505,223,0 +170754338554,222,0 +170754338602,216,0 +170754338652,216,0 +170754338699,216,0 +170754338747,217,0 +170754338797,218,0 +170754338846,219,0 +170754338894,221,0 +170754338942,220,0 +170754338990,222,0 +170754339039,222,0 +170754339087,222,0 +170754339135,222,0 +170754339185,223,0 +170754339233,224,0 +170754339282,223,0 +170754339330,224,0 +170754339378,224,0 +170754339426,221,0 +170754339475,217,0 +170754339523,218,0 +170754339571,220,0 +170754339619,220,0 +170754339668,221,0 +170754339718,222,0 +170754339766,221,0 +170754339815,222,0 +170754339863,222,0 +170754339913,223,0 +170754339961,223,0 +170754340010,223,0 +170754340060,224,0 +170754340108,224,0 +170754340157,224,0 +170754340205,223,0 +170754340253,223,0 +170754340301,222,0 +170754340349,217,0 +170754340397,217,0 +170754340445,218,0 +170754340493,218,0 +170754340541,220,0 +170754340588,220,0 +170754340636,220,0 +170754340686,221,0 +170754340734,222,0 +170754340783,222,0 +170754340831,223,0 +170754340879,223,0 +170754340927,223,0 +170754340977,223,0 +170754341024,223,0 +170754341074,223,0 +170754341122,223,0 +170754341170,222,0 +170754341219,215,0 +170754341267,216,0 +170754341317,217,0 +170754341365,218,0 +170754341414,217,0 +170754341462,218,0 +170754341510,219,0 +170754341558,220,0 +170754341607,221,0 +170754341657,222,0 +170754341707,222,0 +170754341756,223,0 +170754341804,224,0 +170754341852,224,0 +170754341901,223,0 +170754341949,223,0 +170754341997,224,0 +170754342045,222,0 +170754342093,215,0 +170754342143,216,0 +170754342192,216,0 +170754342242,217,0 +170754342290,219,0 +170754342339,221,0 +170754342389,219,0 +170754342437,221,0 +170754342484,220,0 +170754342532,221,0 +170754342580,222,0 +170754342628,222,0 +170754342676,226,0 +170754342724,223,0 +170754342772,223,0 +170754342820,224,0 +170754342870,223,0 +170754342919,216,0 +170754342967,216,0 +170754343015,217,0 +170754343063,218,0 +170754343113,219,0 +170754343161,219,0 +170754343210,219,0 +170754343258,220,0 +170754343308,221,0 +170754343357,220,0 +170754343407,222,0 +170754343455,222,0 +170754343504,224,0 +170754343554,223,0 +170754343603,223,0 +170754343651,224,0 +170754343699,223,0 +170754343747,223,0 +170754343795,217,0 +170754343843,216,0 +170754343893,216,0 +170754343941,218,0 +170754343989,218,0 +170754344036,218,0 +170754344084,219,0 +170754344132,219,0 +170754344180,220,0 +170754344230,221,0 +170754344278,221,0 +170754344325,223,0 +170754344373,223,0 +170754344421,223,0 +170754344471,223,0 +170754344519,224,0 +170754344566,224,0 +170754344614,223,0 +170754344662,216,0 +170754344710,215,0 +170754344758,216,0 +170754344808,217,0 +170754344857,218,0 +170754344905,218,0 +170754344955,218,0 +170754345003,219,0 +170754345051,220,0 +170754345098,220,0 +170754345148,221,0 +170754345196,222,0 +170754345245,222,0 +170754345295,222,0 +170754345345,222,0 +170754345392,223,0 +170754345440,223,0 +170754345488,223,0 +170754345538,216,0 +170754345586,216,0 +170754345633,217,0 +170754345681,217,0 +170754345729,218,0 +170754345777,218,0 +170754345825,218,0 +170754345875,221,0 +170754345923,221,0 +170754345972,222,0 +170754346020,221,0 +170754346068,223,0 +170754346116,222,0 +170754346164,223,0 +170754346213,223,0 +170754346261,223,0 +170754346311,223,0 +170754346359,223,0 +170754346407,218,0 +170754346455,216,0 +170754346504,217,0 +170754346552,219,0 +170754346602,220,0 +170754346649,220,0 +170754346699,220,0 +170754346747,222,0 +170754346795,222,0 +170754346844,222,0 +170754346894,222,0 +170754346942,223,0 +170754346989,224,0 +170754347037,224,0 +170754347085,224,0 +170754347133,223,0 +170754347181,223,0 +170754347229,223,0 +170754347277,218,0 +170754347325,219,0 +170754347373,220,0 +170754347422,221,0 +170754347470,223,0 +170754347518,222,0 +170754347566,221,0 +170754347614,223,0 +170754347662,222,0 +170754347709,225,0 +170754347757,223,0 +170754347805,224,0 +170754347853,225,0 +170754347903,223,0 +170754347951,223,0 +170754348000,222,0 +170754348048,224,0 +170754348098,223,0 +170754348147,219,0 +170754348195,220,0 +170754348244,220,0 +170754348292,221,0 +170754348340,221,0 +170754348388,222,0 +170754348438,224,0 +170754348487,223,0 +170754348537,223,0 +170754348585,223,0 +170754348634,225,0 +170754348684,224,0 +170754348733,223,0 +170754348781,224,0 +170754348829,223,0 +170754348879,225,0 +170754348926,223,0 +170754348976,223,0 +170754349024,218,0 +170754349073,215,0 +170754349123,218,0 +170754349171,219,0 +170754349219,220,0 +170754349267,219,0 +170754349315,220,0 +170754349364,221,0 +170754349412,221,0 +170754349460,221,0 +170754349510,222,0 +170754349559,223,0 +170754349607,223,0 +170754349655,223,0 +170754349705,223,0 +170754349753,223,0 +170754349801,223,0 +170754349849,222,0 +170754349898,217,0 +170754349946,217,0 +170754349996,218,0 +170754350045,218,0 +170754350093,218,0 +170754350141,222,0 +170754350190,221,0 +170754350238,220,0 +170754350288,222,0 +170754350338,222,0 +170754350386,223,0 +170754350434,224,0 +170754350481,224,0 +170754350529,224,0 +170754350579,223,0 +170754350629,223,0 +170754350676,224,0 +170754350724,223,0 +170754350774,218,0 +170754350824,218,0 +170754350871,219,0 +170754350919,219,0 +170754350967,220,0 +170754351015,220,0 +170754351063,222,0 +170754351112,222,0 +170754351162,222,0 +170754351210,222,0 +170754351258,223,0 +170754351305,223,0 +170754351353,224,0 +170754351401,224,0 +170754351449,224,0 +170754351497,224,0 +170754351547,223,0 +170754351595,223,0 +170754351642,219,0 +170754351690,220,0 +170754351738,220,0 +170754351786,220,0 +170754351836,221,0 +170754351884,222,0 +170754351931,221,0 +170754351979,223,0 +170754352029,223,0 +170754352078,223,0 +170754352126,222,0 +170754352174,224,0 +170754352224,224,0 +170754352273,223,0 +170754352323,223,0 +170754352372,223,0 +170754352420,224,0 +170754352468,223,0 +170754352516,218,0 +170754352564,218,0 +170754352612,219,0 +170754352660,220,0 +170754352709,220,0 +170754352757,222,0 +170754352805,222,0 +170754352853,223,0 +170754352900,223,0 +170754352948,222,0 +170754352996,223,0 +170754353044,223,0 +170754353094,224,0 +170754353141,223,0 +170754353189,223,0 +170754353239,224,0 +170754353287,224,0 +170754353336,222,0 +170754353384,218,0 +170754353432,218,0 +170754353481,220,0 +170754353529,219,0 +170754353579,221,0 +170754353626,221,0 +170754353674,222,0 +170754353722,222,0 +170754353770,223,0 +170754353818,225,0 +170754353866,224,0 +170754353914,223,0 +170754353962,224,0 +170754354010,224,0 +170754354058,224,0 +170754354105,224,0 +170754354155,223,0 +170754354205,222,0 +170754354252,215,0 +170754354302,215,0 +170754354351,217,0 +170754354399,219,0 +170754354447,218,0 +170754354497,219,0 +170754354546,219,0 +170754354594,219,0 +170754354642,221,0 +170754354690,221,0 +170754354738,222,0 +170754354786,222,0 +170754354834,224,0 +170754354884,223,0 +170754354933,223,0 +170754354981,222,0 +170754355029,222,0 +170754355079,218,0 +170754355128,215,0 +170754355176,216,0 +170754355224,217,0 +170754355272,217,0 +170754355320,218,0 +170754355370,219,0 +170754355419,219,0 +170754355468,220,0 +170754355518,220,0 +170754355566,221,0 +170754355614,223,0 +170754355664,223,0 +170754355713,223,0 +170754355763,223,0 +170754355812,224,0 +170754355860,223,0 +170754355910,223,0 +170754355959,216,0 +170754356009,215,0 +170754356057,216,0 +170754356105,217,0 +170754356153,217,0 +170754356201,218,0 +170754356248,218,0 +170754356298,219,0 +170754356346,220,0 +170754356394,221,0 +170754356442,221,0 +170754356491,222,0 +170754356539,222,0 +170754356589,223,0 +170754356638,223,0 +170754356688,223,0 +170754356738,222,0 +170754356787,222,0 +170754356835,216,0 +170754356883,215,0 +170754356933,216,0 +170754356981,216,0 +170754357030,217,0 +170754357079,217,0 +170754357129,218,0 +170754357179,218,0 +170754357227,219,0 +170754357274,220,0 +170754357322,221,0 +170754357372,223,0 +170754357420,224,0 +170754357468,224,0 +170754357516,223,0 +170754357565,224,0 +170754357613,223,0 +170754357663,222,0 +170754357712,215,0 +170754357760,215,0 +170754357810,215,0 +170754357858,217,0 +170754357907,217,0 +170754357957,217,0 +170754358006,219,0 +170754358054,218,0 +170754358102,220,0 +170754358152,221,0 +170754358200,221,0 +170754358249,223,0 +170754358299,222,0 +170754358347,223,0 +170754358395,224,0 +170754358444,224,0 +170754358494,223,0 +170754358541,223,0 +170754358589,215,0 +170754358637,216,0 +170754358687,217,0 +170754358736,217,0 +170754358784,217,0 +170754358832,217,0 +170754358882,218,0 +170754358930,218,0 +170754358978,220,0 +170754359027,220,0 +170754359077,221,0 +170754359127,222,0 +170754359174,223,0 +170754359222,222,0 +170754359270,225,0 +170754359320,223,0 +170754359368,223,0 +170754359417,223,0 +170754359467,216,0 +170754359516,217,0 +170754359564,217,0 +170754359612,218,0 +170754359660,218,0 +170754359709,220,0 +170754359759,220,0 +170754359807,220,0 +170754359855,221,0 +170754359902,221,0 +170754359950,219,0 +170754359998,221,0 +170754360046,222,0 +170754360094,225,0 +170754360143,223,0 +170754360191,224,0 +170754360239,223,0 +170754360287,218,0 +170754360335,217,0 +170754360385,217,0 +170754360433,218,0 +170754360480,218,0 +170754360528,221,0 +170754360576,221,0 +170754360624,220,0 +170754360672,221,0 +170754360720,222,0 +170754360768,222,0 +170754360816,217,0 +170754360864,223,0 +170754360912,224,0 +170754360959,225,0 +170754361009,224,0 +170754361059,223,0 +170754361108,224,0 +170754361158,216,0 +170754361207,217,0 +170754361255,218,0 +170754361303,220,0 +170754361353,220,0 +170754361401,220,0 +170754361448,220,0 +170754361498,222,0 +170754361548,222,0 +170754361597,223,0 +170754361645,224,0 +170754361693,226,0 +170754361742,223,0 +170754361790,223,0 +170754361838,224,0 +170754361888,223,0 +170754361937,223,0 +170754361987,222,0 +170754362035,219,0 +170754362083,218,0 +170754362131,219,0 +170754362180,219,0 +170754362228,220,0 +170754362276,220,0 +170754362326,221,0 +170754362374,223,0 +170754362422,222,0 +170754362469,224,0 +170754362517,224,0 +170754362565,225,0 +170754362615,224,0 +170754362662,224,0 +170754362712,225,0 +170754362761,223,0 +170754362809,223,0 +170754362857,222,0 +170754362905,219,0 +170754362953,219,0 +170754363003,219,0 +170754363052,220,0 +170754363100,219,0 +170754363148,219,0 +170754363198,221,0 +170754363247,221,0 +170754363295,223,0 +170754363345,223,0 +170754363394,224,0 +170754363442,224,0 +170754363490,223,0 +170754363538,223,0 +170754363586,223,0 +170754363634,223,0 +170754363684,221,0 +170754363732,224,0 +170754363780,218,0 +170754363827,218,0 +170754363877,218,0 +170754363925,219,0 +170754363975,219,0 +170754364023,220,0 +170754364071,220,0 +170754364120,221,0 +170754364168,221,0 +170754364216,222,0 +170754364265,224,0 +170754364313,223,0 +170754364361,224,0 +170754364411,225,0 +170754364459,224,0 +170754364507,225,0 +170754364555,223,0 +170754364604,221,0 +170754364652,217,0 +170754364700,218,0 +170754364748,219,0 +170754364798,221,0 +170754364847,221,0 +170754364895,221,0 +170754364943,222,0 +170754364991,221,0 +170754365039,222,0 +170754365087,223,0 +170754365137,224,0 +170754365185,223,0 +170754365233,222,0 +170754365281,223,0 +170754365330,222,0 +170754365380,223,0 +170754365428,224,0 +170754365475,223,0 +170754365523,220,0 +170754365573,219,0 +170754365621,220,0 +170754365670,221,0 +170754365720,222,0 +170754365768,222,0 +170754365816,223,0 +170754365864,223,0 +170754365913,223,0 +170754365961,223,0 +170754366009,223,0 +170754366057,223,0 +170754366107,223,0 +170754366155,223,0 +170754366203,223,0 +170754366252,224,0 +170754366302,222,0 +170754366350,222,0 +170754366399,217,0 +170754366449,217,0 +170754366497,219,0 +170754366546,219,0 +170754366596,220,0 +170754366644,221,0 +170754366692,222,0 +170754366740,221,0 +170754366788,223,0 +170754366835,223,0 +170754366883,223,0 +170754366931,224,0 +170754366979,223,0 +170754367027,223,0 +170754367075,223,0 +170754367123,223,0 +170754367171,223,0 +170754367221,222,0 +170754367269,216,0 +170754367318,217,0 +170754367366,217,0 +170754367415,219,0 +170754367463,221,0 +170754367513,220,0 +170754367563,220,0 +170754367611,220,0 +170754367659,222,0 +170754367706,222,0 +170754367754,223,0 +170754367802,223,0 +170754367852,224,0 +170754367900,224,0 +170754367949,224,0 +170754367997,224,0 +170754368046,224,0 +170754368096,218,0 +170754368144,215,0 +170754368192,215,0 +170754368240,216,0 +170754368288,217,0 +170754368337,218,0 +170754368385,219,0 +170754368433,219,0 +170754368481,220,0 +170754368529,221,0 +170754368577,221,0 +170754368625,221,0 +170754368673,224,0 +170754368722,224,0 +170754368772,223,0 +170754368820,223,0 +170754368868,223,0 +170754368917,223,0 +170754368965,220,0 +170754369013,215,0 +170754369062,215,0 +170754369110,215,0 +170754369158,216,0 +170754369207,217,0 +170754369257,218,0 +170754369305,220,0 +170754369354,220,0 +170754369404,220,0 +170754369453,221,0 +170754369501,221,0 +170754369551,222,0 +170754369599,223,0 +170754369648,222,0 +170754369698,222,0 +170754369746,224,0 +170754369795,222,0 +170754369843,217,0 +170754369891,216,0 +170754369939,217,0 +170754369989,218,0 +170754370038,218,0 +170754370088,219,0 +170754370136,220,0 +170754370185,221,0 +170754370233,222,0 +170754370281,222,0 +170754370330,222,0 +170754370378,224,0 +170754370428,223,0 +170754370476,224,0 +170754370524,223,0 +170754370572,222,0 +170754370620,223,0 +170754370669,223,0 +170754370717,218,0 +170754370765,218,0 +170754370813,219,0 +170754370863,218,0 +170754370912,221,0 +170754370960,221,0 +170754371010,222,0 +170754371058,223,0 +170754371107,222,0 +170754371155,223,0 +170754371204,223,0 +170754371252,223,0 +170754371300,223,0 +170754371348,223,0 +170754371398,224,0 +170754371446,224,0 +170754371493,223,0 +170754371541,223,0 +170754371589,218,0 +170754371637,219,0 +170754371687,219,0 +170754371735,219,0 +170754371783,219,0 +170754371831,220,0 +170754371880,220,0 +170754371928,222,0 +170754371977,221,0 +170754372025,222,0 +170754372075,222,0 +170754372123,223,0 +170754372171,224,0 +170754372219,224,0 +170754372267,223,0 +170754372315,222,0 +170754372364,223,0 +170754372412,223,0 +170754372460,218,0 +170754372508,218,0 +170754372556,219,0 +170754372606,219,0 +170754372655,220,0 +170754372705,220,0 +170754372754,221,0 +170754372802,222,0 +170754372850,221,0 +170754372898,222,0 +170754372946,222,0 +170754372994,222,0 +170754373042,223,0 +170754373090,223,0 +170754373139,224,0 +170754373187,223,0 +170754373235,223,0 +170754373285,223,0 +170754373332,218,0 +170754373382,218,0 +170754373430,219,0 +170754373477,218,0 +170754373525,219,0 +170754373575,221,0 +170754373623,222,0 +170754373672,221,0 +170754373720,223,0 +170754373768,224,0 +170754373816,223,0 +170754373865,223,0 +170754373915,225,0 +170754373963,224,0 +170754374011,224,0 +170754374060,223,0 +170754374108,223,0 +170754374156,222,0 +170754374204,216,0 +170754374252,216,0 +170754374300,216,0 +170754374349,217,0 +170754374397,219,0 +170754374445,220,0 +170754374495,219,0 +170754374544,220,0 +170754374592,221,0 +170754374640,222,0 +170754374690,221,0 +170754374739,223,0 +170754374787,223,0 +170754374837,224,0 +170754374885,223,0 +170754374934,223,0 +170754374982,223,0 +170754375030,222,0 +170754375080,215,0 +170754375128,214,0 +170754375176,215,0 +170754375224,216,0 +170754375272,217,0 +170754375319,218,0 +170754375367,217,0 +170754375415,220,0 +170754375463,220,0 +170754375511,221,0 +170754375559,223,0 +170754375607,222,0 +170754375657,222,0 +170754375706,222,0 +170754375754,223,0 +170754375804,223,0 +170754375852,223,0 +170754375900,222,0 +170754375947,214,0 +170754375995,214,0 +170754376045,215,0 +170754376094,216,0 +170754376142,217,0 +170754376190,218,0 +170754376238,218,0 +170754376288,218,0 +170754376337,218,0 +170754376385,224,0 +170754376433,219,0 +170754376481,220,0 +170754376529,221,0 +170754376577,224,0 +170754376627,222,0 +170754376675,221,0 +170754376722,223,0 +170754376770,224,0 +170754376820,223,0 +170754376870,223,0 +170754376919,224,0 +170754376967,224,0 +170754377015,223,0 +170754377064,224,0 +170754377114,224,0 +170754377162,224,0 +170754377210,216,0 +170754377259,217,0 +170754377309,217,0 +170754377357,219,0 +170754377405,219,0 +170754377453,220,0 +170754377501,221,0 +170754377550,222,0 +170754377600,222,0 +170754377649,223,0 +170754377697,224,0 +170754377745,224,0 +170754377795,224,0 +170754377843,224,0 +170754377892,225,0 +170754377940,224,0 +170754377990,223,0 +170754378038,222,0 +170754378086,216,0 +170754378134,216,0 +170754378181,217,0 +170754378229,218,0 +170754378277,218,0 +170754378325,218,0 +170754378374,220,0 +170754378422,220,0 +170754378470,221,0 +170754378518,221,0 +170754378566,222,0 +170754378614,222,0 +170754378662,222,0 +170754378710,223,0 +170754378758,223,0 +170754378807,223,0 +170754378855,223,0 +170754378905,223,0 +170754378954,216,0 +170754379004,215,0 +170754379052,216,0 +170754379101,217,0 +170754379149,217,0 +170754379197,218,0 +170754379245,220,0 +170754379294,220,0 +170754379344,221,0 +170754379392,221,0 +170754379441,222,0 +170754379491,222,0 +170754379539,224,0 +170754379587,223,0 +170754379635,222,0 +170754379682,223,0 +170754379731,223,0 +170754379778,223,0 +170754379826,217,0 +170754379874,216,0 +170754379924,217,0 +170754379972,218,0 +170754380021,218,0 +170754380071,218,0 +170754380120,219,0 +170754380168,218,0 +170754380218,221,0 +170754380266,222,0 +170754380314,222,0 +170754380363,222,0 +170754380413,222,0 +170754380462,223,0 +170754380512,224,0 +170754380560,223,0 +170754380608,223,0 +170754380656,222,0 +170754380704,217,0 +170754380753,215,0 +170754380803,217,0 +170754380851,217,0 +170754380898,216,0 +170754380948,217,0 +170754380996,219,0 +170754381044,220,0 +170754381092,221,0 +170754381140,222,0 +170754381189,223,0 +170754381237,224,0 +170754381287,223,0 +170754381336,224,0 +170754381384,222,0 +170754381434,223,0 +170754381483,223,0 +170754381531,222,0 +170754381579,217,0 +170754381627,217,0 +170754381675,217,0 +170754381725,218,0 +170754381774,219,0 +170754381822,219,0 +170754381872,221,0 +170754381920,220,0 +170754381969,221,0 +170754382019,221,0 +170754382068,222,0 +170754382118,222,0 +170754382166,222,0 +170754382214,225,0 +170754382263,225,0 +170754382313,225,0 +170754382361,223,0 +170754382409,221,0 +170754382457,219,0 +170754382506,219,0 +170754382554,220,0 +170754382604,221,0 +170754382653,221,0 +170754382701,221,0 +170754382751,222,0 +170754382799,223,0 +170754382847,223,0 +170754382895,224,0 +170754382944,225,0 +170754382992,223,0 +170754383042,222,0 +170754383090,224,0 +170754383138,224,0 +170754383187,223,0 +170754383237,222,0 +170754383285,219,0 +170754383334,220,0 +170754383384,220,0 +170754383433,221,0 +170754383481,221,0 +170754383531,221,0 +170754383580,223,0 +170754383628,223,0 +170754383678,223,0 +170754383727,223,0 +170754383777,223,0 +170754383825,223,0 +170754383874,224,0 +170754383924,224,0 +170754383973,223,0 +170754384021,223,0 +170754384071,222,0 +170754384119,222,0 +170754384168,221,0 +170754384218,220,0 +170754384268,222,0 +170754384315,222,0 +170754384363,222,0 +170754384411,223,0 +170754384461,223,0 +170754384509,221,0 +170754384557,224,0 +170754384605,224,0 +170754384653,225,0 +170754384701,222,0 +170754384749,225,0 +170754384797,224,0 +170754384846,223,0 +170754384894,223,0 +170754384944,224,0 +170754384992,222,0 +170754385040,219,0 +170754385089,219,0 +170754385139,219,0 +170754385187,220,0 +170754385235,221,0 +170754385283,222,0 +170754385332,222,0 +170754385382,221,0 +170754385430,221,0 +170754385479,222,0 +170754385527,223,0 +170754385575,223,0 +170754385625,223,0 +170754385674,224,0 +170754385724,224,0 +170754385773,223,0 +170754385821,222,0 +170754385869,221,0 +170754385917,215,0 +170754385967,216,0 +170754386015,217,0 +170754386064,218,0 +170754386112,218,0 +170754386162,220,0 +170754386211,220,0 +170754386261,220,0 +170754386310,221,0 +170754386358,222,0 +170754386408,223,0 +170754386457,223,0 +170754386507,223,0 +170754386556,225,0 +170754386606,223,0 +170754386654,223,0 +170754386702,222,0 +170754386751,216,0 +170754386801,215,0 +170754386850,216,0 +170754386898,216,0 +170754386946,217,0 +170754386996,216,0 +170754387044,218,0 +170754387093,220,0 +170754387143,219,0 +170754387191,220,0 +170754387240,221,0 +170754387288,222,0 +170754387336,222,0 +170754387384,223,0 +170754387433,223,0 +170754387483,223,0 +170754387533,223,0 +170754387581,222,0 +170754387628,217,0 +170754387678,218,0 +170754387728,217,0 +170754387776,218,0 +170754387825,219,0 +170754387873,219,0 +170754387921,220,0 +170754387970,221,0 +170754388020,222,0 +170754388068,222,0 +170754388117,222,0 +170754388165,223,0 +170754388213,223,0 +170754388263,223,0 +170754388312,223,0 +170754388360,222,0 +170754388408,223,0 +170754388458,222,0 +170754388507,221,0 +170754388555,220,0 +170754388605,220,0 +170754388654,220,0 +170754388704,222,0 +170754388752,221,0 +170754388800,222,0 +170754388849,222,0 +170754388899,224,0 +170754388947,222,0 +170754388995,223,0 +170754389043,223,0 +170754389092,223,0 +170754389140,224,0 +170754389190,223,0 +170754389238,224,0 +170754389287,223,0 +170754389335,223,0 +170754389385,219,0 +170754389433,220,0 +170754389481,221,0 +170754389529,222,0 +170754389578,221,0 +170754389628,222,0 +170754389676,222,0 +170754389725,221,0 +170754389775,223,0 +170754389823,222,0 +170754389871,224,0 +170754389920,223,0 +170754389968,223,0 +170754390016,223,0 +170754390064,224,0 +170754390113,225,0 +170754390163,223,0 +170754390212,223,0 +170754390260,218,0 +170754390308,217,0 +170754390356,217,0 +170754390404,218,0 +170754390452,219,0 +170754390500,220,0 +170754390550,221,0 +170754390598,221,0 +170754390646,222,0 +170754390694,222,0 +170754390742,223,0 +170754390790,223,0 +170754390839,224,0 +170754390887,223,0 +170754390935,224,0 +170754390983,223,0 +170754391033,222,0 +170754391080,220,0 +170754391128,216,0 +170754391178,217,0 +170754391227,218,0 +170754391277,220,0 +170754391325,219,0 +170754391373,221,0 +170754391421,220,0 +170754391469,222,0 +170754391518,222,0 +170754391568,223,0 +170754391617,222,0 +170754391667,222,0 +170754391715,223,0 +170754391763,223,0 +170754391811,223,0 +170754391859,223,0 +170754391907,222,0 +170754391956,216,0 +170754392006,216,0 +170754392055,217,0 +170754392103,218,0 +170754392153,218,0 +170754392202,218,0 +170754392252,218,0 +170754392300,219,0 +170754392348,220,0 +170754392397,221,0 +170754392447,221,0 +170754392495,222,0 +170754392543,222,0 +170754392590,222,0 +170754392638,223,0 +170754392688,223,0 +170754392738,223,0 +170754392787,223,0 +170754392835,216,0 +170754392884,217,0 +170754392934,218,0 +170754392982,218,0 +170754393030,220,0 +170754393078,221,0 +170754393127,220,0 +170754393177,221,0 +170754393227,222,0 +170754393276,224,0 +170754393326,222,0 +170754393375,222,0 +170754393423,223,0 +170754393471,224,0 +170754393519,224,0 +170754393567,224,0 +170754393616,224,0 +170754393664,222,0 +170754393712,217,0 +170754393760,217,0 +170754393808,218,0 +170754393856,219,0 +170754393904,219,0 +170754393952,221,0 +170754394000,221,0 +170754394048,221,0 +170754394097,223,0 +170754394145,223,0 +170754394195,222,0 +170754394243,225,0 +170754394292,225,0 +170754394342,223,0 +170754394391,223,0 +170754394439,223,0 +170754394487,223,0 +170754394535,222,0 +170754394583,216,0 +170754394631,217,0 +170754394679,217,0 +170754394727,219,0 +170754394775,219,0 +170754394823,220,0 +170754394872,220,0 +170754394920,221,0 +170754394970,222,0 +170754395018,221,0 +170754395067,223,0 +170754395117,223,0 +170754395165,223,0 +170754395215,223,0 +170754395264,224,0 +170754395314,223,0 +170754395363,223,0 +170754395411,224,0 +170754395459,216,0 +170754395507,217,0 +170754395555,218,0 +170754395603,218,0 +170754395651,220,0 +170754395701,221,0 +170754395750,219,0 +170754395800,222,0 +170754395848,222,0 +170754395896,223,0 +170754395944,223,0 +170754395993,223,0 +170754396041,223,0 +170754396089,224,0 +170754396137,224,0 +170754396184,223,0 +170754396234,223,0 +170754396284,220,0 +170754396333,217,0 +170754396383,218,0 +170754396430,219,0 +170754396478,220,0 +170754396526,221,0 +170754396574,221,0 +170754396622,222,0 +170754396670,221,0 +170754396718,222,0 +170754396767,222,0 +170754396817,224,0 +170754396866,223,0 +170754396914,223,0 +170754396964,230,0 +170754397012,222,0 +170754397060,222,0 +170754397108,222,0 +170754397156,217,0 +170754397204,216,0 +170754397253,216,0 +170754397301,217,0 +170754397350,218,0 +170754397398,219,0 +170754397446,219,0 +170754397494,219,0 +170754397544,221,0 +170754397591,221,0 +170754397639,222,0 +170754397689,223,0 +170754397737,222,0 +170754397784,223,0 +170754397832,220,0 +170754397880,221,0 +170754397930,224,0 +170754397977,222,0 +170754398027,217,0 +170754398076,216,0 +170754398124,218,0 +170754398174,218,0 +170754398223,218,0 +170754398273,219,0 +170754398323,220,0 +170754398372,221,0 +170754398420,221,0 +170754398469,222,0 +170754398517,221,0 +170754398567,222,0 +170754398615,222,0 +170754398664,223,0 +170754398712,223,0 +170754398760,223,0 +170754398810,222,0 +170754398858,222,0 +170754398906,215,0 +170754398955,216,0 +170754399003,217,0 +170754399052,218,0 +170754399100,218,0 +170754399150,219,0 +170754399198,220,0 +170754399246,220,0 +170754399295,221,0 +170754399345,222,0 +170754399393,222,0 +170754399441,220,0 +170754399489,222,0 +170754399538,223,0 +170754399588,224,0 +170754399637,223,0 +170754399685,223,0 +170754399735,218,0 +170754399783,218,0 +170754399832,218,0 +170754399882,219,0 +170754399930,219,0 +170754399978,220,0 +170754400026,221,0 +170754400075,221,0 +170754400125,222,0 +170754400175,222,0 +170754400223,223,0 +170754400270,223,0 +170754400320,223,0 +170754400369,224,0 +170754400417,223,0 +170754400465,223,0 +170754400513,223,0 +170754400561,222,0 +170754400609,218,0 +170754400657,218,0 +170754400707,219,0 +170754400755,221,0 +170754400803,221,0 +170754400852,221,0 +170754400900,222,0 +170754400948,224,0 +170754400997,224,0 +170754401045,223,0 +170754401093,223,0 +170754401141,224,0 +170754401189,222,0 +170754401238,223,0 +170754401286,223,0 +170754401336,223,0 +170754401384,222,0 +170754401432,217,0 +170754401479,216,0 +170754401529,218,0 +170754401577,219,0 +170754401625,219,0 +170754401672,220,0 +170754401720,220,0 +170754401770,222,0 +170754401818,222,0 +170754401866,222,0 +170754401915,224,0 +170754401965,223,0 +170754402014,223,0 +170754402062,223,0 +170754402110,223,0 +170754402158,223,0 +170754402206,223,0 +170754402256,222,0 +170754402304,216,0 +170754402352,216,0 +170754402400,217,0 +170754402448,218,0 +170754402497,219,0 +170754402545,219,0 +170754402595,219,0 +170754402643,221,0 +170754402692,221,0 +170754402742,222,0 +170754402790,221,0 +170754402839,222,0 +170754402887,223,0 +170754402935,223,0 +170754402983,223,0 +170754403031,224,0 +170754403080,222,0 +170754403128,217,0 +170754403178,216,0 +170754403226,217,0 +170754403274,218,0 +170754403322,218,0 +170754403370,219,0 +170754403419,221,0 +170754403469,221,0 +170754403518,221,0 +170754403566,221,0 +170754403614,223,0 +170754403662,223,0 +170754403712,223,0 +170754403760,223,0 +170754403808,223,0 +170754403857,222,0 +170754403905,222,0 +170754403955,216,0 +170754404003,217,0 +170754404051,218,0 +170754404100,218,0 +170754404148,219,0 +170754404196,218,0 +170754404244,219,0 +170754404292,220,0 +170754404340,220,0 +170754404389,221,0 +170754404437,221,0 +170754404485,222,0 +170754404533,223,0 +170754404582,224,0 +170754404630,223,0 +170754404678,222,0 +170754404728,222,0 +170754404776,223,0 +170754404825,218,0 +170754404873,218,0 +170754404921,219,0 +170754404969,221,0 +170754405017,220,0 +170754405065,221,0 +170754405113,221,0 +170754405161,221,0 +170754405209,222,0 +170754405256,223,0 +170754405304,222,0 +170754405352,224,0 +170754405402,223,0 +170754405450,223,0 +170754405497,223,0 +170754405545,223,0 +170754405593,222,0 +170754405643,222,0 +170754405692,220,0 +170754405740,221,0 +170754405788,221,0 +170754405836,223,0 +170754405884,222,0 +170754405932,223,0 +170754405979,223,0 +170754406029,224,0 +170754406077,224,0 +170754406126,224,0 +170754406174,223,0 +170754406222,223,0 +170754406270,223,0 +170754406318,220,0 +170754406367,222,0 +170754406417,223,0 +170754406465,222,0 +170754406513,221,0 +170754406562,221,0 +170754406610,223,0 +170754406658,222,0 +170754406708,221,0 +170754406756,222,0 +170754406804,223,0 +170754406852,224,0 +170754406900,224,0 +170754406949,225,0 +170754406999,225,0 +170754407047,223,0 +170754407094,223,0 +170754407144,223,0 +170754407193,223,0 +170754407241,223,0 +170754407289,222,0 +170754407338,217,0 +170754407386,218,0 +170754407434,219,0 +170754407482,219,0 +170754407530,220,0 +170754407578,221,0 +170754407626,221,0 +170754407674,222,0 +170754407722,222,0 +170754407769,221,0 +170754407817,223,0 +170754407865,226,0 +170754407915,224,0 +170754407964,223,0 +170754408012,223,0 +170754408060,223,0 +170754408108,222,0 +170754408157,223,0 +170754408207,219,0 +170754408256,218,0 +170754408304,219,0 +170754408354,220,0 +170754408403,220,0 +170754408453,221,0 +170754408501,222,0 +170754408550,222,0 +170754408598,223,0 +170754408646,223,0 +170754408696,223,0 +170754408744,224,0 +170754408793,224,0 +170754408841,224,0 +170754408889,225,0 +170754408939,223,0 +170754408988,225,0 +170754409036,216,0 +170754409084,216,0 +170754409134,217,0 +170754409182,218,0 +170754409230,217,0 +170754409279,218,0 +170754409327,218,0 +170754409375,220,0 +170754409425,221,0 +170754409474,221,0 +170754409522,222,0 +170754409570,222,0 +170754409620,223,0 +170754409669,225,0 +170754409717,224,0 +170754409765,223,0 +170754409813,223,0 +170754409861,222,0 +170754409909,216,0 +170754409957,217,0 +170754410005,218,0 +170754410053,218,0 +170754410101,220,0 +170754410149,220,0 +170754410197,221,0 +170754410246,222,0 +170754410296,220,0 +170754410344,221,0 +170754410393,223,0 +170754410441,223,0 +170754410491,223,0 +170754410539,223,0 +170754410587,224,0 +170754410635,225,0 +170754410682,222,0 +170754410730,216,0 +170754410778,216,0 +170754410826,216,0 +170754410874,217,0 +170754410922,217,0 +170754410970,218,0 +170754411018,218,0 +170754411067,218,0 +170754411117,219,0 +170754411165,221,0 +170754411213,221,0 +170754411261,222,0 +170754411310,222,0 +170754411360,224,0 +170754411408,224,0 +170754411457,223,0 +170754411507,223,0 +170754411555,223,0 +170754411603,215,0 +170754411651,217,0 +170754411699,217,0 +170754411746,218,0 +170754411794,218,0 +170754411842,219,0 +170754411890,219,0 +170754411940,220,0 +170754411989,220,0 +170754412037,222,0 +170754412087,219,0 +170754412136,222,0 +170754412186,223,0 +170754412234,224,0 +170754412283,224,0 +170754412331,222,0 +170754412379,222,0 +170754412427,216,0 +170754412475,215,0 +170754412523,216,0 +170754412573,217,0 +170754412620,218,0 +170754412670,218,0 +170754412720,220,0 +170754412769,220,0 +170754412817,222,0 +170754412865,221,0 +170754412915,222,0 +170754412964,223,0 +170754413014,222,0 +170754413062,224,0 +170754413110,224,0 +170754413159,224,0 +170754413207,222,0 +170754413255,215,0 +170754413303,215,0 +170754413351,215,0 +170754413399,216,0 +170754413447,217,0 +170754413495,216,0 +170754413544,218,0 +170754413592,219,0 +170754413640,220,0 +170754413688,220,0 +170754413736,222,0 +170754413785,223,0 +170754413833,223,0 +170754413883,223,0 +170754413931,223,0 +170754413980,223,0 +170754414028,223,0 +170754414076,222,0 +170754414124,215,0 +170754414172,215,0 +170754414220,216,0 +170754414267,216,0 +170754414315,217,0 +170754414363,219,0 +170754414413,218,0 +170754414460,219,0 +170754414508,220,0 +170754414558,221,0 +170754414607,221,0 +170754414655,222,0 +170754414703,223,0 +170754414751,222,0 +170754414799,223,0 +170754414847,222,0 +170754414896,222,0 +170754414944,221,0 +170754414992,215,0 +170754415040,216,0 +170754415088,217,0 +170754415136,216,0 +170754415184,218,0 +170754415232,218,0 +170754415280,220,0 +170754415327,220,0 +170754415375,222,0 +170754415423,220,0 +170754415471,222,0 +170754415519,221,0 +170754415568,223,0 +170754415616,222,0 +170754415666,223,0 +170754415714,223,0 +170754415762,223,0 +170754415809,218,0 +170754415857,217,0 +170754415905,218,0 +170754415953,218,0 +170754416001,220,0 +170754416050,220,0 +170754416098,220,0 +170754416146,221,0 +170754416194,221,0 +170754416244,221,0 +170754416293,219,0 +170754416341,223,0 +170754416389,223,0 +170754416438,223,0 +170754416486,222,0 +170754416534,224,0 +170754416582,225,0 +170754416630,222,0 +170754416679,220,0 +170754416727,220,0 +170754416775,220,0 +170754416823,221,0 +170754416871,225,0 +170754416919,221,0 +170754416968,222,0 +170754417018,221,0 +170754417067,225,0 +170754417117,223,0 +170754417164,223,0 +170754417214,224,0 +170754417262,223,0 +170754417310,224,0 +170754417358,223,0 +170754417405,224,0 +170754417453,223,0 +170754417501,220,0 +170754417549,222,0 +170754417597,228,0 +170754417645,222,0 +170754417694,223,0 +170754417742,228,0 +170754417790,222,0 +170754417840,224,0 +170754417887,223,0 +170754417935,223,0 +170754417983,224,0 +170754418031,222,0 +170754418079,222,0 +170754418127,223,0 +170754418175,224,0 +170754418223,223,0 +170754418271,222,0 +170754418319,222,0 +170754418368,218,0 +170754418416,222,0 +170754418464,222,0 +170754418512,221,0 +170754418561,224,0 +170754418609,223,0 +170754418657,225,0 +170754418705,224,0 +170754418753,224,0 +170754418802,224,0 +170754418852,223,0 +170754418901,225,0 +170754418949,224,0 +170754418997,223,0 +170754419045,224,0 +170754419094,223,0 +170754419142,222,0 +170754419190,219,0 +170754419238,218,0 +170754419286,221,0 +170754419334,220,0 +170754419382,221,0 +170754419430,221,0 +170754419478,223,0 +170754419527,222,0 +170754419577,221,0 +170754419627,223,0 +170754419674,224,0 +170754419722,223,0 +170754419772,224,0 +170754419820,223,0 +170754419868,223,0 +170754419916,223,0 +170754419965,222,0 +170754420013,221,0 +170754420063,217,0 +170754420111,216,0 +170754420160,218,0 +170754420208,220,0 +170754420258,221,0 +170754420306,221,0 +170754420353,221,0 +170754420403,223,0 +170754420453,223,0 +170754420501,222,0 +170754420548,223,0 +170754420598,223,0 +170754420646,223,0 +170754420694,222,0 +170754420742,224,0 +170754420792,221,0 +170754420841,222,0 +170754420891,218,0 +170754420938,218,0 +170754420988,218,0 +170754421036,219,0 +170754421084,219,0 +170754421132,221,0 +170754421181,221,0 +170754421231,221,0 +170754421280,223,0 +170754421328,223,0 +170754421378,223,0 +170754421427,223,0 +170754421475,223,0 +170754421523,225,0 +170754421571,223,0 +170754421621,223,0 +170754421670,224,0 +170754421720,217,0 +170754421769,220,0 +170754421817,219,0 +170754421867,220,0 +170754421915,221,0 +170754421964,220,0 +170754422014,222,0 +170754422062,221,0 +170754422110,222,0 +170754422158,223,0 +170754422207,223,0 +170754422255,223,0 +170754422303,223,0 +170754422353,223,0 +170754422401,224,0 +170754422450,224,0 +170754422500,224,0 +170754422549,222,0 +170754422599,216,0 +170754422647,217,0 +170754422695,218,0 +170754422743,219,0 +170754422792,219,0 +170754422842,223,0 +170754422890,220,0 +170754422939,221,0 +170754422987,222,0 +170754423036,223,0 +170754423084,223,0 +170754423132,223,0 +170754423180,224,0 +170754423230,222,0 +170754423278,226,0 +170754423326,221,0 +170754423375,222,0 +170754423423,216,0 +170754423471,216,0 +170754423519,217,0 +170754423567,218,0 +170754423615,219,0 +170754423663,219,0 +170754423711,219,0 +170754423758,220,0 +170754423806,220,0 +170754423856,221,0 +170754423904,223,0 +170754423952,223,0 +170754424000,223,0 +170754424049,223,0 +170754424097,224,0 +170754424145,224,0 +170754424193,223,0 +170754424241,222,0 +170754424289,216,0 +170754424337,216,0 +170754424385,217,0 +170754424434,218,0 +170754424482,219,0 +170754424530,219,0 +170754424578,220,0 +170754424628,221,0 +170754424677,221,0 +170754424727,222,0 +170754424776,222,0 +170754424826,224,0 +170754424874,223,0 +170754424922,224,0 +170754424971,223,0 +170754425020,223,0 +170754425068,222,0 +170754425116,216,0 +170754425165,216,0 +170754425215,216,0 +170754425264,217,0 +170754425312,217,0 +170754425360,219,0 +170754425408,218,0 +170754425456,220,0 +170754425506,220,0 +170754425555,224,0 +170754425605,222,0 +170754425654,222,0 +170754425704,223,0 +170754425752,222,0 +170754425801,224,0 +170754425851,223,0 +170754425900,224,0 +170754425948,216,0 +170754425998,215,0 +170754426046,216,0 +170754426094,216,0 +170754426142,219,0 +170754426190,218,0 +170754426238,220,0 +170754426287,220,0 +170754426337,222,0 +170754426385,221,0 +170754426434,221,0 +170754426484,221,0 +170754426533,224,0 +170754426583,222,0 +170754426632,223,0 +170754426682,223,0 +170754426730,223,0 +170754426779,223,0 +170754426829,217,0 +170754426877,217,0 +170754426926,217,0 +170754426976,218,0 +170754427024,219,0 +170754427073,220,0 +170754427121,221,0 +170754427171,220,0 +170754427219,222,0 +170754427268,223,0 +170754427316,223,0 +170754427364,223,0 +170754427414,223,0 +170754427462,223,0 +170754427511,222,0 +170754427561,223,0 +170754427609,223,0 +170754427657,217,0 +170754427706,217,0 +170754427754,218,0 +170754427802,220,0 +170754427852,220,0 +170754427901,220,0 +170754427949,222,0 +170754427999,222,0 +170754428047,222,0 +170754428096,223,0 +170754428144,223,0 +170754428194,224,0 +170754428243,224,0 +170754428291,223,0 +170754428341,224,0 +170754428390,223,0 +170754428440,223,0 +170754428488,217,0 +170754428536,217,0 +170754428584,218,0 +170754428633,221,0 +170754428681,221,0 +170754428729,220,0 +170754428777,221,0 +170754428825,221,0 +170754428873,222,0 +170754428921,223,0 +170754428968,223,0 +170754429016,221,0 +170754429064,224,0 +170754429114,223,0 +170754429162,223,0 +170754429209,223,0 +170754429257,224,0 +170754429305,222,0 +170754429353,219,0 +170754429401,217,0 +170754429451,219,0 +170754429500,221,0 +170754429548,221,0 +170754429598,221,0 +170754429646,222,0 +170754429694,223,0 +170754429741,224,0 +170754429789,223,0 +170754429837,223,0 +170754429885,224,0 +170754429933,223,0 +170754429983,224,0 +170754430031,224,0 +170754430079,223,0 +170754430126,223,0 +170754430176,218,0 +170754430224,218,0 +170754430273,218,0 +170754430321,220,0 +170754430369,220,0 +170754430417,220,0 +170754430467,221,0 +170754430515,223,0 +170754430563,222,0 +170754430612,224,0 +170754430660,223,0 +170754430708,224,0 +170754430756,224,0 +170754430805,223,0 +170754430855,224,0 +170754430903,223,0 +170754430952,221,0 +170754431002,222,0 +170754431050,217,0 +170754431099,217,0 +170754431147,218,0 +170754431197,219,0 +170754431246,219,0 +170754431294,219,0 +170754431344,221,0 +170754431392,222,0 +170754431440,221,0 +170754431488,223,0 +170754431535,224,0 +170754431583,223,0 +170754431633,224,0 +170754431681,224,0 +170754431730,223,0 +170754431780,223,0 +170754431830,222,0 +170754431879,219,0 +170754431929,218,0 +170754431978,219,0 +170754432026,220,0 +170754432076,220,0 +170754432125,221,0 +170754432173,222,0 +170754432221,221,0 +170754432269,222,0 +170754432317,222,0 +170754432365,223,0 +170754432414,224,0 +170754432462,226,0 +170754432510,222,0 +170754432558,223,0 +170754432608,223,0 +170754432655,223,0 +170754432705,222,0 +170754432754,219,0 +170754432804,219,0 +170754432852,219,0 +170754432900,221,0 +170754432948,220,0 +170754432996,221,0 +170754433043,222,0 +170754433093,222,0 +170754433142,223,0 +170754433190,223,0 +170754433238,222,0 +170754433288,223,0 +170754433336,217,0 +170754433383,223,0 +170754433433,223,0 +170754433481,223,0 +170754433528,223,0 +170754433576,219,0 +170754433626,218,0 +170754433674,219,0 +170754433723,220,0 +170754433772,220,0 +170754433820,223,0 +170754433870,222,0 +170754433918,223,0 +170754433966,222,0 +170754434015,222,0 +170754434065,223,0 +170754434114,223,0 +170754434162,223,0 +170754434210,223,0 +170754434260,224,0 +170754434308,224,0 +170754434355,222,0 +170754434403,219,0 +170754434451,217,0 +170754434501,218,0 +170754434548,219,0 +170754434598,219,0 +170754434647,220,0 +170754434695,220,0 +170754434745,222,0 +170754434794,222,0 +170754434842,222,0 +170754434892,223,0 +170754434940,222,0 +170754434989,223,0 +170754435037,224,0 +170754435085,223,0 +170754435135,223,0 +170754435183,223,0 +170754435232,222,0 +170754435280,216,0 +170754435328,216,0 +170754435376,217,0 +170754435424,219,0 +170754435472,218,0 +170754435519,220,0 +170754435567,221,0 +170754435615,221,0 +170754435663,221,0 +170754435711,224,0 +170754435759,224,0 +170754435807,224,0 +170754435856,223,0 +170754435904,223,0 +170754435952,224,0 +170754436002,224,0 +170754436050,223,0 +170754436098,216,0 +170754436146,215,0 +170754436194,217,0 +170754436243,217,0 +170754436293,218,0 +170754436342,218,0 +170754436390,219,0 +170754436438,220,0 +170754436486,220,0 +170754436534,222,0 +170754436582,222,0 +170754436630,223,0 +170754436679,223,0 +170754436729,222,0 +170754436778,223,0 +170754436826,223,0 +170754436876,223,0 +170754436925,222,0 +170754436975,217,0 +170754437023,218,0 +170754437072,218,0 +170754437122,219,0 +170754437170,220,0 +170754437219,221,0 +170754437267,222,0 +170754437315,222,0 +170754437363,222,0 +170754437413,222,0 +170754437461,223,0 +170754437509,223,0 +170754437557,224,0 +170754437604,223,0 +170754437654,223,0 +170754437702,223,0 +170754437750,222,0 +170754437799,219,0 +170754437849,219,0 +170754437898,220,0 +170754437946,221,0 +170754437996,222,0 +170754438045,222,0 +170754438095,222,0 +170754438143,223,0 +170754438192,224,0 +170754438240,224,0 +170754438288,223,0 +170754438338,223,0 +170754438386,223,0 +170754438434,223,0 +170754438483,223,0 +170754438531,223,0 +170754438579,223,0 +170754438629,219,0 +170754438678,218,0 +170754438726,219,0 +170754438776,219,0 +170754438824,220,0 +170754438872,221,0 +170754438920,222,0 +170754438968,222,0 +170754439016,222,0 +170754439064,223,0 +170754439112,223,0 +170754439161,223,0 +170754439209,223,0 +170754439257,223,0 +170754439305,223,0 +170754439354,223,0 +170754439402,225,0 +170754439452,222,0 +170754439501,217,0 +170754439551,218,0 +170754439598,218,0 +170754439646,219,0 +170754439694,218,0 +170754439742,220,0 +170754439790,221,0 +170754439838,220,0 +170754439886,222,0 +170754439935,223,0 +170754439983,223,0 +170754440031,223,0 +170754440079,224,0 +170754440127,224,0 +170754440175,225,0 +170754440224,223,0 +170754440274,222,0 +170754440322,218,0 +170754440370,218,0 +170754440419,219,0 +170754440469,220,0 +170754440517,220,0 +170754440565,221,0 +170754440613,220,0 +170754440661,223,0 +170754440709,223,0 +170754440756,224,0 +170754440804,223,0 +170754440854,224,0 +170754440903,226,0 +170754440951,224,0 +170754440999,223,0 +170754441047,223,0 +170754441095,224,0 +170754441143,222,0 +170754441190,217,0 +170754441238,218,0 +170754441286,217,0 +170754441336,220,0 +170754441383,220,0 +170754441433,219,0 +170754441481,221,0 +170754441529,221,0 +170754441577,221,0 +170754441625,224,0 +170754441672,222,0 +170754441722,222,0 +170754441771,223,0 +170754441819,223,0 +170754441869,224,0 +170754441916,223,0 +170754441964,222,0 +170754442012,217,0 +170754442060,216,0 +170754442108,217,0 +170754442156,219,0 +170754442205,218,0 +170754442255,221,0 +170754442303,221,0 +170754442351,221,0 +170754442399,221,0 +170754442448,223,0 +170754442496,222,0 +170754442546,223,0 +170754442593,223,0 +170754442641,223,0 +170754442689,223,0 +170754442737,223,0 +170754442785,223,0 +170754442833,223,0 +170754442881,217,0 +170754442929,217,0 +170754442976,217,0 +170754443024,218,0 +170754443074,218,0 +170754443122,219,0 +170754443170,220,0 +170754443219,221,0 +170754443267,221,0 +170754443316,222,0 +170754443364,222,0 +170754443412,223,0 +170754443460,223,0 +170754443510,223,0 +170754443557,223,0 +170754443605,224,0 +170754443653,223,0 +170754443701,217,0 +170754443749,216,0 +170754443797,216,0 +170754443845,218,0 +170754443893,219,0 +170754443941,220,0 +170754443990,220,0 +170754444038,220,0 +170754444086,221,0 +170754444134,222,0 +170754444184,224,0 +170754444231,223,0 +170754444279,222,0 +170754444327,223,0 +170754444375,223,0 +170754444423,223,0 +170754444471,223,0 +170754444519,222,0 +170754444567,216,0 +170754444615,217,0 +170754444662,218,0 +170754444710,219,0 +170754444758,219,0 +170754444808,220,0 +170754444856,221,0 +170754444903,221,0 +170754444951,222,0 +170754444999,222,0 +170754445047,223,0 +170754445095,224,0 +170754445143,224,0 +170754445191,224,0 +170754445239,225,0 +170754445287,223,0 +170754445334,223,0 +170754445382,217,0 +170754445430,216,0 +170754445480,217,0 +170754445529,217,0 +170754445577,218,0 +170754445625,220,0 +170754445673,219,0 +170754445721,221,0 +170754445769,221,0 +170754445817,221,0 +170754445865,223,0 +170754445912,222,0 +170754445960,223,0 +170754446008,223,0 +170754446056,223,0 +170754446104,222,0 +170754446152,222,0 +170754446200,222,0 +170754446247,215,0 +170754446295,217,0 +170754446343,217,0 +170754446391,219,0 +170754446441,219,0 +170754446489,220,0 +170754446536,220,0 +170754446584,221,0 +170754446632,221,0 +170754446680,222,0 +170754446728,222,0 +170754446778,222,0 +170754446826,222,0 +170754446875,223,0 +170754446925,224,0 +170754446974,223,0 +170754447022,222,0 +170754447072,217,0 +170754447120,216,0 +170754447168,217,0 +170754447216,218,0 +170754447265,219,0 +170754447315,221,0 +170754447364,220,0 +170754447412,220,0 +170754447460,221,0 +170754447508,221,0 +170754447556,222,0 +170754447605,222,0 +170754447653,223,0 +170754447701,225,0 +170754447749,222,0 +170754447799,223,0 +170754447846,223,0 +170754447896,217,0 +170754447944,217,0 +170754447994,217,0 +170754448043,218,0 +170754448091,219,0 +170754448141,220,0 +170754448190,221,0 +170754448238,222,0 +170754448286,223,0 +170754448334,222,0 +170754448384,223,0 +170754448431,223,0 +170754448479,223,0 +170754448527,225,0 +170754448577,224,0 +170754448625,222,0 +170754448674,223,0 +170754448722,222,0 +170754448772,218,0 +170754448820,218,0 +170754448868,218,0 +170754448916,219,0 +170754448965,221,0 +170754449013,221,0 +170754449061,222,0 +170754449109,222,0 +170754449159,222,0 +170754449207,222,0 +170754449256,223,0 +170754449304,224,0 +170754449354,224,0 +170754449403,223,0 +170754449451,224,0 +170754449500,222,0 +170754449550,223,0 +170754449598,217,0 +170754449648,218,0 +170754449695,219,0 +170754449743,220,0 +170754449793,220,0 +170754449843,221,0 +170754449892,222,0 +170754449942,222,0 +170754449990,222,0 +170754450038,222,0 +170754450085,224,0 +170754450133,223,0 +170754450183,223,0 +170754450233,223,0 +170754450280,223,0 +170754450328,223,0 +170754450378,223,0 +170754450426,221,0 +170754450474,218,0 +170754450522,217,0 +170754450571,218,0 +170754450619,219,0 +170754450669,219,0 +170754450718,220,0 +170754450766,221,0 +170754450814,220,0 +170754450862,221,0 +170754450910,222,0 +170754450960,223,0 +170754451008,223,0 +170754451056,223,0 +170754451104,224,0 +170754451153,223,0 +170754451203,222,0 +170754451252,222,0 +170754451300,218,0 +170754451350,218,0 +170754451399,218,0 +170754451447,220,0 +170754451497,220,0 +170754451545,220,0 +170754451594,221,0 +170754451644,225,0 +170754451693,223,0 +170754451741,222,0 +170754451789,223,0 +170754451839,223,0 +170754451887,223,0 +170754451936,225,0 +170754451986,223,0 +170754452034,223,0 +170754452082,222,0 +170754452130,220,0 +170754452179,219,0 +170754452227,220,0 +170754452275,223,0 +170754452325,222,0 +170754452374,223,0 +170754452423,223,0 +170754452473,223,0 +170754452523,223,0 +170754452572,224,0 +170754452620,223,0 +170754452668,223,0 +170754452716,224,0 +170754452764,218,0 +170754452812,222,0 +170754452860,223,0 +170754452908,223,0 +170754452957,220,0 +170754453005,219,0 +170754453053,220,0 +170754453101,221,0 +170754453151,222,0 +170754453200,222,0 +170754453250,222,0 +170754453299,222,0 +170754453349,222,0 +170754453397,223,0 +170754453445,223,0 +170754453493,223,0 +170754453541,223,0 +170754453589,226,0 +170754453638,223,0 +170754453686,223,0 +170754453736,223,0 +170754453785,223,0 +170754453833,219,0 +170754453883,220,0 +170754453931,221,0 +170754453979,223,0 +170754454028,221,0 +170754454078,222,0 +170754454126,224,0 +170754454173,223,0 +170754454221,223,0 +170754454271,225,0 +170754454319,224,0 +170754454369,223,0 +170754454416,223,0 +170754454464,224,0 +170754454514,223,0 +170754454562,224,0 +170754454610,222,0 +170754454659,218,0 +170754454707,218,0 +170754454755,219,0 +170754454805,220,0 +170754454853,220,0 +170754454901,222,0 +170754454949,220,0 +170754454998,221,0 +170754455046,222,0 +170754455096,223,0 +170754455144,223,0 +170754455193,223,0 +170754455243,224,0 +170754455291,223,0 +170754455338,223,0 +170754455386,223,0 +170754455434,222,0 +170754455484,216,0 +170754455534,216,0 +170754455581,216,0 +170754455629,218,0 +170754455679,219,0 +170754455729,220,0 +170754455777,221,0 +170754455826,221,0 +170754455875,221,0 +170754455923,222,0 +170754455973,222,0 +170754456022,224,0 +170754456070,224,0 +170754456118,224,0 +170754456166,224,0 +170754456216,223,0 +170754456264,225,0 +170754456313,221,0 +170754456361,215,0 +170754456409,216,0 +170754456457,218,0 +170754456505,219,0 +170754456553,219,0 +170754456603,220,0 +170754456651,220,0 +170754456700,221,0 +170754456748,224,0 +170754456798,224,0 +170754456847,223,0 +170754456895,223,0 +170754456943,224,0 +170754456991,225,0 +170754457039,223,0 +170754457087,222,0 +170754457135,223,0 +170754457182,216,0 +170754457230,217,0 +170754457278,218,0 +170754457328,219,0 +170754457375,219,0 +170754457423,219,0 +170754457471,220,0 +170754457519,221,0 +170754457567,221,0 +170754457616,223,0 +170754457664,222,0 +170754457714,224,0 +170754457762,224,0 +170754457810,222,0 +170754457857,223,0 +170754457907,223,0 +170754457955,222,0 +170754458003,215,0 +170754458051,216,0 +170754458100,217,0 +170754458148,217,0 +170754458196,218,0 +170754458244,220,0 +170754458292,220,0 +170754458340,221,0 +170754458389,221,0 +170754458437,222,0 +170754458485,223,0 +170754458533,223,0 +170754458582,224,0 +170754458632,224,0 +170754458680,223,0 +170754458727,222,0 +170754458777,223,0 +170754458825,223,0 +170754458874,216,0 +170754458922,217,0 +170754458972,218,0 +170754459020,216,0 +170754459068,220,0 +170754459117,219,0 +170754459165,221,0 +170754459213,221,0 +170754459263,221,0 +170754459312,222,0 +170754459362,222,0 +170754459411,223,0 +170754459459,223,0 +170754459507,223,0 +170754459555,219,0 +170754459603,223,0 +170754459652,222,0 +170754459700,217,0 +170754459748,217,0 +170754459796,217,0 +170754459844,218,0 +170754459894,219,0 +170754459943,219,0 +170754459991,220,0 +170754460041,220,0 +170754460090,221,0 +170754460140,221,0 +170754460189,222,0 +170754460237,225,0 +170754460285,223,0 +170754460333,226,0 +170754460381,223,0 +170754460431,223,0 +170754460479,223,0 +170754460527,217,0 +170754460575,217,0 +170754460624,218,0 +170754460672,218,0 +170754460720,219,0 +170754460769,219,0 +170754460817,220,0 +170754460867,221,0 +170754460915,220,0 +170754460964,221,0 +170754461014,221,0 +170754461064,221,0 +170754461113,222,0 +170754461163,223,0 +170754461210,222,0 +170754461260,223,0 +170754461310,222,0 +170754461358,222,0 +170754461407,218,0 +170754461455,218,0 +170754461503,219,0 +170754461551,220,0 +170754461599,219,0 +170754461647,221,0 +170754461697,223,0 +170754461746,222,0 +170754461796,222,0 +170754461845,222,0 +170754461893,223,0 +170754461941,223,0 +170754461991,223,0 +170754462038,223,0 +170754462086,224,0 +170754462134,222,0 +170754462182,221,0 +170754462230,219,0 +170754462278,218,0 +170754462326,219,0 +170754462376,220,0 +170754462424,220,0 +170754462471,222,0 +170754462519,221,0 +170754462567,222,0 +170754462617,224,0 +170754462666,223,0 +170754462714,223,0 +170754462762,224,0 +170754462810,223,0 +170754462858,223,0 +170754462906,224,0 +170754462954,223,0 +170754463002,223,0 +170754463050,218,0 +170754463098,219,0 +170754463147,220,0 +170754463195,220,0 +170754463243,220,0 +170754463293,222,0 +170754463342,221,0 +170754463390,222,0 +170754463438,224,0 +170754463486,223,0 +170754463535,223,0 +170754463583,224,0 +170754463631,224,0 +170754463681,223,0 +170754463729,223,0 +170754463777,223,0 +170754463825,223,0 +170754463873,222,0 +170754463921,221,0 +170754463969,221,0 +170754464017,222,0 +170754464066,222,0 +170754464116,223,0 +170754464164,223,0 +170754464212,223,0 +170754464261,223,0 +170754464311,224,0 +170754464360,223,0 +170754464408,224,0 +170754464456,224,0 +170754464504,222,0 +170754464552,223,0 +170754464600,222,0 +170754464650,223,0 +170754464697,224,0 +170754464745,220,0 +170754464793,219,0 +170754464841,220,0 +170754464889,221,0 +170754464937,220,0 +170754464985,221,0 +170754465033,223,0 +170754465082,223,0 +170754465130,222,0 +170754465178,224,0 +170754465228,224,0 +170754465277,224,0 +170754465327,223,0 +170754465376,223,0 +170754465424,224,0 +170754465474,223,0 +170754465522,223,0 +170754465570,220,0 +170754465618,217,0 +170754465667,218,0 +170754465715,219,0 +170754465765,220,0 +170754465813,222,0 +170754465861,220,0 +170754465909,222,0 +170754465957,222,0 +170754466006,222,0 +170754466056,223,0 +170754466105,227,0 +170754466155,224,0 +170754466203,224,0 +170754466251,224,0 +170754466300,223,0 +170754466348,222,0 +170754466398,222,0 +170754466447,216,0 +170754466495,216,0 +170754466545,217,0 +170754466593,219,0 +170754466641,219,0 +170754466690,219,0 +170754466740,222,0 +170754466789,221,0 +170754466839,222,0 +170754466887,222,0 +170754466935,224,0 +170754466983,224,0 +170754467032,223,0 +170754467082,222,0 +170754467130,223,0 +170754467178,224,0 +170754467227,222,0 +170754467275,216,0 +170754467323,215,0 +170754467371,216,0 +170754467421,217,0 +170754467470,218,0 +170754467518,218,0 +170754467568,218,0 +170754467616,219,0 +170754467665,221,0 +170754467715,221,0 +170754467762,221,0 +170754467810,222,0 +170754467858,222,0 +170754467908,224,0 +170754467956,223,0 +170754468005,223,0 +170754468055,222,0 +170754468103,217,0 +170754468151,217,0 +170754468199,218,0 +170754468248,218,0 +170754468296,219,0 +170754468344,219,0 +170754468394,220,0 +170754468443,221,0 +170754468493,222,0 +170754468541,222,0 +170754468589,222,0 +170754468637,222,0 +170754468686,223,0 +170754468734,223,0 +170754468784,223,0 +170754468832,223,0 +170754468880,222,0 +170754468927,219,0 +170754468975,219,0 +170754469023,219,0 +170754469071,219,0 +170754469119,220,0 +170754469167,221,0 +170754469215,221,0 +170754469263,222,0 +170754469313,222,0 +170754469361,223,0 +170754469410,222,0 +170754469460,224,0 +170754469509,224,0 +170754469559,224,0 +170754469608,223,0 +170754469656,223,0 +170754469706,223,0 +170754469754,222,0 +170754469803,220,0 +170754469851,219,0 +170754469899,220,0 +170754469947,220,0 +170754469997,220,0 +170754470046,222,0 +170754470094,222,0 +170754470144,222,0 +170754470192,223,0 +170754470241,224,0 +170754470289,223,0 +170754470337,223,0 +170754470385,224,0 +170754470433,224,0 +170754470481,224,0 +170754470529,223,0 +170754470578,222,0 +170754470628,218,0 +170754470676,218,0 +170754470724,219,0 +170754470772,219,0 +170754470820,220,0 +170754470869,220,0 +170754470917,221,0 +170754470967,222,0 +170754471015,222,0 +170754471063,222,0 +170754471111,224,0 +170754471159,225,0 +170754471206,224,0 +170754471256,224,0 +170754471305,222,0 +170754471353,220,0 +170754471403,221,0 +170754471453,217,0 +170754471501,215,0 +170754471550,219,0 +170754471598,219,0 +170754471646,220,0 +170754471694,220,0 +170754471742,221,0 +170754471790,221,0 +170754471838,223,0 +170754471886,222,0 +170754471935,223,0 +170754471983,222,0 +170754472031,223,0 +170754472079,222,0 +170754472127,223,0 +170754472177,223,0 +170754472225,223,0 +170754472273,217,0 +170754472321,218,0 +170754472369,218,0 +170754472418,219,0 +170754472466,220,0 +170754472514,221,0 +170754472562,221,0 +170754472612,223,0 +170754472659,223,0 +170754472709,225,0 +170754472757,224,0 +170754472805,225,0 +170754472853,224,0 +170754472902,225,0 +170754472950,223,0 +170754472998,223,0 +170754473046,224,0 +170754473094,219,0 +170754473144,219,0 +170754473193,219,0 +170754473241,219,0 +170754473289,221,0 +170754473337,221,0 +170754473385,223,0 +170754473433,222,0 +170754473481,223,0 +170754473530,223,0 +170754473580,222,0 +170754473630,225,0 +170754473679,225,0 +170754473727,224,0 +170754473775,223,0 +170754473823,223,0 +170754473872,223,0 +170754473920,219,0 +170754473968,218,0 +170754474018,220,0 +170754474067,220,0 +170754474115,220,0 +170754474163,222,0 +170754474213,222,0 +170754474261,222,0 +170754474309,222,0 +170754474357,224,0 +170754474406,223,0 +170754474454,223,0 +170754474502,223,0 +170754474550,223,0 +170754474598,223,0 +170754474646,223,0 +170754474696,223,0 +170754474744,216,0 +170754474791,216,0 +170754474841,218,0 +170754474891,219,0 +170754474938,220,0 +170754474986,220,0 +170754475036,221,0 +170754475084,225,0 +170754475132,222,0 +170754475180,224,0 +170754475229,222,0 +170754475277,224,0 +170754475325,224,0 +170754475373,225,0 +170754475421,224,0 +170754475471,222,0 +170754475519,223,0 +170754475567,216,0 +170754475615,216,0 +170754475663,217,0 +170754475712,218,0 +170754475760,218,0 +170754475810,220,0 +170754475858,221,0 +170754475906,220,0 +170754475954,221,0 +170754476003,221,0 +170754476051,222,0 +170754476099,220,0 +170754476147,223,0 +170754476195,224,0 +170754476243,224,0 +170754476291,223,0 +170754476339,223,0 +170754476386,216,0 +170754476434,216,0 +170754476482,216,0 +170754476530,218,0 +170754476578,218,0 +170754476628,219,0 +170754476677,219,0 +170754476725,221,0 +170754476773,223,0 +170754476821,220,0 +170754476869,222,0 +170754476919,222,0 +170754476967,224,0 +170754477016,223,0 +170754477064,221,0 +170754477114,223,0 +170754477163,223,0 +170754477213,216,0 +170754477262,217,0 +170754477312,218,0 +170754477361,218,0 +170754477409,219,0 +170754477457,219,0 +170754477507,219,0 +170754477555,220,0 +170754477604,221,0 +170754477652,221,0 +170754477700,224,0 +170754477748,223,0 +170754477796,223,0 +170754477846,225,0 +170754477895,224,0 +170754477945,223,0 +170754477994,223,0 +170754478044,215,0 +170754478093,217,0 +170754478141,217,0 +170754478191,218,0 +170754478239,218,0 +170754478287,220,0 +170754478335,220,0 +170754478384,220,0 +170754478434,219,0 +170754478482,221,0 +170754478530,221,0 +170754478579,223,0 +170754478629,223,0 +170754478677,223,0 +170754478725,226,0 +170754478773,223,0 +170754478821,223,0 +170754478868,218,0 +170754478916,218,0 +170754478966,219,0 +170754479014,219,0 +170754479061,221,0 +170754479109,220,0 +170754479157,221,0 +170754479207,222,0 +170754479255,222,0 +170754479303,224,0 +170754479350,223,0 +170754479400,224,0 +170754479448,225,0 +170754479496,223,0 +170754479545,223,0 +170754479593,223,0 +170754479641,223,0 +170754479689,217,0 +170754479737,218,0 +170754479785,218,0 +170754479833,219,0 +170754479883,220,0 +170754479932,221,0 +170754479980,223,0 +170754480028,222,0 diff --git a/laser_value/0210-16.csv b/laser_value/0210-16.csv new file mode 100644 index 0000000..dfb191c --- /dev/null +++ b/laser_value/0210-16.csv @@ -0,0 +1,7415 @@ +timestamp,laser_value,event +170754480078,224,0 +170754480126,224,0 +170754480174,223,0 +170754480222,224,0 +170754480270,224,0 +170754480318,229,0 +170754480366,223,0 +170754480414,223,0 +170754480462,223,0 +170754480510,217,0 +170754480559,218,0 +170754480609,218,0 +170754480657,219,0 +170754480705,219,0 +170754480752,220,0 +170754480802,221,0 +170754480850,221,0 +170754480898,222,0 +170754480946,222,0 +170754480994,223,0 +170754481042,223,0 +170754481090,223,0 +170754481139,223,0 +170754481189,223,0 +170754481238,223,0 +170754481286,223,0 +170754481336,217,0 +170754481385,216,0 +170754481435,216,0 +170754481483,217,0 +170754481531,218,0 +170754481578,218,0 +170754481628,219,0 +170754481677,221,0 +170754481725,221,0 +170754481773,221,0 +170754481823,222,0 +170754481871,223,0 +170754481919,223,0 +170754481967,223,0 +170754482015,222,0 +170754482063,225,0 +170754482112,222,0 +170754482162,215,0 +170754482210,215,0 +170754482258,216,0 +170754482306,216,0 +170754482354,218,0 +170754482403,218,0 +170754482452,220,0 +170754482500,220,0 +170754482550,222,0 +170754482598,222,0 +170754482646,222,0 +170754482695,223,0 +170754482743,224,0 +170754482791,223,0 +170754482839,223,0 +170754482889,223,0 +170754482937,223,0 +170754482984,222,0 +170754483032,218,0 +170754483080,219,0 +170754483128,219,0 +170754483176,220,0 +170754483225,220,0 +170754483273,222,0 +170754483321,222,0 +170754483371,222,0 +170754483419,223,0 +170754483467,222,0 +170754483515,223,0 +170754483563,223,0 +170754483612,224,0 +170754483660,224,0 +170754483708,223,0 +170754483758,223,0 +170754483805,222,0 +170754483853,221,0 +170754483901,221,0 +170754483951,222,0 +170754484000,223,0 +170754484048,224,0 +170754484098,224,0 +170754484146,223,0 +170754484194,226,0 +170754484242,223,0 +170754484291,224,0 +170754484341,224,0 +170754484389,223,0 +170754484437,224,0 +170754484485,223,0 +170754484533,222,0 +170754484581,223,0 +170754484629,222,0 +170754484678,223,0 +170754484726,221,0 +170754484774,222,0 +170754484822,222,0 +170754484870,222,0 +170754484918,225,0 +170754484965,222,0 +170754485013,223,0 +170754485061,225,0 +170754485109,224,0 +170754485157,224,0 +170754485205,224,0 +170754485254,223,0 +170754485302,222,0 +170754485350,223,0 +170754485398,223,0 +170754485446,222,0 +170754485494,219,0 +170754485542,219,0 +170754485590,220,0 +170754485639,222,0 +170754485689,222,0 +170754485737,222,0 +170754485785,222,0 +170754485834,223,0 +170754485882,223,0 +170754485932,223,0 +170754485979,224,0 +170754486027,223,0 +170754486075,224,0 +170754486123,223,0 +170754486171,224,0 +170754486219,223,0 +170754486267,223,0 +170754486315,217,0 +170754486364,217,0 +170754486414,219,0 +170754486462,219,0 +170754486511,220,0 +170754486559,221,0 +170754486609,221,0 +170754486657,221,0 +170754486705,223,0 +170754486752,223,0 +170754486800,224,0 +170754486848,223,0 +170754486896,224,0 +170754486946,223,0 +170754486995,223,0 +170754487043,223,0 +170754487091,222,0 +170754487139,216,0 +170754487187,216,0 +170754487235,217,0 +170754487283,218,0 +170754487331,219,0 +170754487379,220,0 +170754487428,222,0 +170754487478,220,0 +170754487528,221,0 +170754487575,221,0 +170754487625,223,0 +170754487674,224,0 +170754487722,224,0 +170754487770,224,0 +170754487820,223,0 +170754487869,223,0 +170754487917,223,0 +170754487967,217,0 +170754488016,217,0 +170754488066,218,0 +170754488114,219,0 +170754488162,219,0 +170754488210,219,0 +170754488258,220,0 +170754488306,221,0 +170754488355,223,0 +170754488404,222,0 +170754488454,222,0 +170754488502,221,0 +170754488550,223,0 +170754488598,225,0 +170754488646,224,0 +170754488694,223,0 +170754488742,222,0 +170754488790,216,0 +170754488838,216,0 +170754488886,217,0 +170754488935,218,0 +170754488983,218,0 +170754489031,219,0 +170754489079,220,0 +170754489127,219,0 +170754489175,221,0 +170754489223,221,0 +170754489272,223,0 +170754489320,221,0 +170754489368,223,0 +170754489416,224,0 +170754489466,224,0 +170754489514,223,0 +170754489563,223,0 +170754489611,217,0 +170754489659,216,0 +170754489707,217,0 +170754489755,218,0 +170754489802,218,0 +170754489850,219,0 +170754489898,221,0 +170754489946,221,0 +170754489994,221,0 +170754490042,223,0 +170754490091,222,0 +170754490139,223,0 +170754490187,222,0 +170754490235,223,0 +170754490283,224,0 +170754490332,223,0 +170754490380,222,0 +170754490428,217,0 +170754490476,217,0 +170754490524,217,0 +170754490572,218,0 +170754490620,218,0 +170754490668,218,0 +170754490716,220,0 +170754490764,220,0 +170754490813,222,0 +170754490861,222,0 +170754490909,223,0 +170754490957,223,0 +170754491007,224,0 +170754491056,224,0 +170754491106,224,0 +170754491155,223,0 +170754491203,223,0 +170754491253,216,0 +170754491301,217,0 +170754491350,218,0 +170754491398,218,0 +170754491448,219,0 +170754491496,220,0 +170754491545,220,0 +170754491593,221,0 +170754491641,222,0 +170754491689,221,0 +170754491737,223,0 +170754491785,223,0 +170754491833,224,0 +170754491882,224,0 +170754491932,224,0 +170754491980,224,0 +170754492028,222,0 +170754492076,217,0 +170754492124,216,0 +170754492172,216,0 +170754492220,218,0 +170754492269,218,0 +170754492317,216,0 +170754492365,220,0 +170754492413,220,0 +170754492461,221,0 +170754492509,222,0 +170754492558,223,0 +170754492606,223,0 +170754492654,223,0 +170754492702,224,0 +170754492750,224,0 +170754492798,223,0 +170754492846,223,0 +170754492896,217,0 +170754492945,216,0 +170754492993,218,0 +170754493041,218,0 +170754493089,218,0 +170754493138,219,0 +170754493186,220,0 +170754493234,220,0 +170754493282,220,0 +170754493330,222,0 +170754493378,222,0 +170754493426,222,0 +170754493474,224,0 +170754493524,223,0 +170754493572,223,0 +170754493621,225,0 +170754493669,223,0 +170754493717,220,0 +170754493767,219,0 +170754493815,219,0 +170754493863,220,0 +170754493912,220,0 +170754493960,222,0 +170754494008,223,0 +170754494056,223,0 +170754494104,223,0 +170754494152,223,0 +170754494201,223,0 +170754494251,224,0 +170754494300,224,0 +170754494350,224,0 +170754494398,223,0 +170754494446,223,0 +170754494494,223,0 +170754494542,220,0 +170754494590,220,0 +170754494638,221,0 +170754494687,221,0 +170754494735,221,0 +170754494785,222,0 +170754494834,224,0 +170754494884,225,0 +170754494933,223,0 +170754494983,224,0 +170754495032,227,0 +170754495080,223,0 +170754495128,224,0 +170754495178,224,0 +170754495227,222,0 +170754495275,223,0 +170754495325,223,0 +170754495374,220,0 +170754495422,219,0 +170754495470,222,0 +170754495518,222,0 +170754495566,223,0 +170754495616,222,0 +170754495665,223,0 +170754495715,225,0 +170754495763,223,0 +170754495811,224,0 +170754495858,223,0 +170754495906,224,0 +170754495954,224,0 +170754496002,223,0 +170754496050,223,0 +170754496098,223,0 +170754496146,223,0 +170754496194,219,0 +170754496242,219,0 +170754496290,219,0 +170754496340,221,0 +170754496387,222,0 +170754496435,223,0 +170754496483,223,0 +170754496531,224,0 +170754496581,223,0 +170754496629,223,0 +170754496677,223,0 +170754496725,223,0 +170754496774,224,0 +170754496822,223,0 +170754496870,223,0 +170754496918,223,0 +170754496968,222,0 +170754497016,221,0 +170754497065,221,0 +170754497113,220,0 +170754497161,222,0 +170754497209,221,0 +170754497259,222,0 +170754497307,222,0 +170754497355,222,0 +170754497402,222,0 +170754497450,220,0 +170754497500,223,0 +170754497548,224,0 +170754497598,223,0 +170754497647,223,0 +170754497695,223,0 +170754497743,222,0 +170754497791,223,0 +170754497840,218,0 +170754497888,220,0 +170754497936,220,0 +170754497984,221,0 +170754498034,222,0 +170754498082,221,0 +170754498130,222,0 +170754498178,223,0 +170754498226,223,0 +170754498275,222,0 +170754498323,223,0 +170754498373,223,0 +170754498422,223,0 +170754498470,222,0 +170754498518,223,0 +170754498566,223,0 +170754498614,223,0 +170754498662,218,0 +170754498711,221,0 +170754498761,222,0 +170754498810,221,0 +170754498858,222,0 +170754498906,223,0 +170754498954,225,0 +170754499002,223,0 +170754499052,223,0 +170754499100,223,0 +170754499148,223,0 +170754499196,225,0 +170754499245,225,0 +170754499295,224,0 +170754499343,224,0 +170754499390,223,0 +170754499440,223,0 +170754499488,218,0 +170754499536,217,0 +170754499584,218,0 +170754499632,219,0 +170754499681,220,0 +170754499731,220,0 +170754499779,221,0 +170754499827,221,0 +170754499876,222,0 +170754499924,224,0 +170754499972,223,0 +170754500020,222,0 +170754500070,223,0 +170754500118,224,0 +170754500166,223,0 +170754500215,223,0 +170754500263,220,0 +170754500311,216,0 +170754500361,216,0 +170754500409,217,0 +170754500457,217,0 +170754500506,218,0 +170754500554,218,0 +170754500604,219,0 +170754500651,219,0 +170754500699,222,0 +170754500747,222,0 +170754500797,222,0 +170754500845,223,0 +170754500893,224,0 +170754500941,224,0 +170754500990,224,0 +170754501040,224,0 +170754501088,223,0 +170754501135,216,0 +170754501183,216,0 +170754501231,216,0 +170754501279,216,0 +170754501327,217,0 +170754501375,218,0 +170754501425,220,0 +170754501473,219,0 +170754501521,220,0 +170754501569,221,0 +170754501616,221,0 +170754501664,222,0 +170754501712,223,0 +170754501760,223,0 +170754501810,224,0 +170754501859,223,0 +170754501909,223,0 +170754501957,217,0 +170754502006,215,0 +170754502056,216,0 +170754502104,216,0 +170754502152,217,0 +170754502199,216,0 +170754502247,218,0 +170754502295,219,0 +170754502343,220,0 +170754502392,221,0 +170754502440,222,0 +170754502488,223,0 +170754502536,223,0 +170754502586,223,0 +170754502634,223,0 +170754502681,223,0 +170754502729,222,0 +170754502777,217,0 +170754502827,216,0 +170754502875,217,0 +170754502922,219,0 +170754502970,218,0 +170754503020,219,0 +170754503068,220,0 +170754503116,220,0 +170754503164,221,0 +170754503213,221,0 +170754503261,224,0 +170754503309,222,0 +170754503357,223,0 +170754503405,223,0 +170754503453,224,0 +170754503501,223,0 +170754503549,223,0 +170754503597,221,0 +170754503646,215,0 +170754503694,217,0 +170754503742,217,0 +170754503790,218,0 +170754503840,218,0 +170754503888,219,0 +170754503936,221,0 +170754503984,221,0 +170754504032,221,0 +170754504081,222,0 +170754504131,222,0 +170754504179,223,0 +170754504227,224,0 +170754504274,223,0 +170754504322,223,0 +170754504370,223,0 +170754504418,221,0 +170754504466,217,0 +170754504515,217,0 +170754504563,218,0 +170754504611,219,0 +170754504659,219,0 +170754504707,221,0 +170754504755,221,0 +170754504804,221,0 +170754504852,221,0 +170754504902,222,0 +170754504949,224,0 +170754504997,223,0 +170754505047,223,0 +170754505095,223,0 +170754505143,223,0 +170754505192,223,0 +170754505240,217,0 +170754505289,217,0 +170754505337,218,0 +170754505385,218,0 +170754505433,218,0 +170754505482,218,0 +170754505530,218,0 +170754505578,219,0 +170754505626,221,0 +170754505674,222,0 +170754505722,222,0 +170754505770,222,0 +170754505817,223,0 +170754505865,225,0 +170754505913,223,0 +170754505961,223,0 +170754506011,222,0 +170754506058,222,0 +170754506106,218,0 +170754506154,218,0 +170754506202,219,0 +170754506250,221,0 +170754506298,220,0 +170754506346,220,0 +170754506395,220,0 +170754506443,222,0 +170754506491,221,0 +170754506539,223,0 +170754506587,223,0 +170754506635,223,0 +170754506683,222,0 +170754506731,223,0 +170754506778,222,0 +170754506826,222,0 +170754506874,222,0 +170754506922,219,0 +170754506972,220,0 +170754507019,221,0 +170754507067,221,0 +170754507115,221,0 +170754507165,223,0 +170754507213,224,0 +170754507262,223,0 +170754507310,223,0 +170754507358,222,0 +170754507406,224,0 +170754507453,224,0 +170754507501,223,0 +170754507549,223,0 +170754507597,223,0 +170754507645,223,0 +170754507693,223,0 +170754507741,221,0 +170754507789,220,0 +170754507838,217,0 +170754507886,222,0 +170754507934,223,0 +170754507984,224,0 +170754508032,224,0 +170754508081,223,0 +170754508129,224,0 +170754508177,224,0 +170754508225,224,0 +170754508275,223,0 +170754508323,223,0 +170754508371,223,0 +170754508419,223,0 +170754508467,225,0 +170754508516,222,0 +170754508566,224,0 +170754508615,223,0 +170754508663,223,0 +170754508711,226,0 +170754508759,224,0 +170754508807,223,0 +170754508855,224,0 +170754508903,224,0 +170754508952,224,0 +170754509000,223,0 +170754509048,224,0 +170754509098,224,0 +170754509146,224,0 +170754509195,223,0 +170754509243,223,0 +170754509291,223,0 +170754509339,223,0 +170754509387,221,0 +170754509435,220,0 +170754509483,221,0 +170754509532,221,0 +170754509580,222,0 +170754509628,222,0 +170754509678,222,0 +170754509725,223,0 +170754509775,224,0 +170754509823,223,0 +170754509872,224,0 +170754509922,223,0 +170754509970,223,0 +170754510017,224,0 +170754510067,223,0 +170754510115,222,0 +170754510163,223,0 +170754510210,218,0 +170754510260,219,0 +170754510308,219,0 +170754510356,221,0 +170754510404,221,0 +170754510453,221,0 +170754510501,222,0 +170754510549,222,0 +170754510597,223,0 +170754510645,223,0 +170754510692,223,0 +170754510740,223,0 +170754510790,223,0 +170754510838,223,0 +170754510885,223,0 +170754510933,223,0 +170754510981,216,0 +170754511031,216,0 +170754511079,216,0 +170754511127,217,0 +170754511174,218,0 +170754511222,219,0 +170754511270,219,0 +170754511318,220,0 +170754511368,220,0 +170754511415,222,0 +170754511463,223,0 +170754511511,222,0 +170754511559,223,0 +170754511607,221,0 +170754511655,224,0 +170754511703,223,0 +170754511751,223,0 +170754511799,222,0 +170754511846,215,0 +170754511894,215,0 +170754511944,216,0 +170754511992,218,0 +170754512040,218,0 +170754512087,219,0 +170754512137,219,0 +170754512185,219,0 +170754512233,222,0 +170754512282,220,0 +170754512330,222,0 +170754512380,222,0 +170754512428,223,0 +170754512476,224,0 +170754512525,223,0 +170754512573,223,0 +170754512621,223,0 +170754512669,216,0 +170754512717,217,0 +170754512766,218,0 +170754512816,219,0 +170754512864,220,0 +170754512912,220,0 +170754512960,221,0 +170754513008,221,0 +170754513057,223,0 +170754513105,223,0 +170754513153,223,0 +170754513201,222,0 +170754513249,223,0 +170754513297,224,0 +170754513346,224,0 +170754513394,223,0 +170754513444,222,0 +170754513493,217,0 +170754513543,217,0 +170754513593,217,0 +170754513640,218,0 +170754513688,220,0 +170754513736,220,0 +170754513784,221,0 +170754513832,222,0 +170754513882,223,0 +170754513930,222,0 +170754513979,223,0 +170754514027,224,0 +170754514075,224,0 +170754514125,223,0 +170754514172,223,0 +170754514222,224,0 +170754514270,221,0 +170754514319,215,0 +170754514367,215,0 +170754514415,216,0 +170754514463,216,0 +170754514513,217,0 +170754514562,218,0 +170754514612,218,0 +170754514660,219,0 +170754514708,220,0 +170754514756,221,0 +170754514803,223,0 +170754514851,222,0 +170754514901,224,0 +170754514951,227,0 +170754515000,222,0 +170754515050,224,0 +170754515099,223,0 +170754515148,215,0 +170754515196,215,0 +170754515246,215,0 +170754515294,215,0 +170754515342,216,0 +170754515390,218,0 +170754515438,217,0 +170754515486,218,0 +170754515535,219,0 +170754515583,221,0 +170754515633,220,0 +170754515681,221,0 +170754515729,222,0 +170754515777,222,0 +170754515826,222,0 +170754515874,223,0 +170754515922,222,0 +170754515970,216,0 +170754516018,216,0 +170754516066,216,0 +170754516114,217,0 +170754516163,218,0 +170754516211,219,0 +170754516261,220,0 +170754516310,220,0 +170754516360,220,0 +170754516408,222,0 +170754516457,221,0 +170754516505,222,0 +170754516553,222,0 +170754516603,222,0 +170754516652,223,0 +170754516702,225,0 +170754516751,228,0 +170754516801,225,0 +170754516850,226,0 +170754516900,226,0 +170754516948,223,0 +170754516997,223,0 +170754517045,223,0 +170754517095,223,0 +170754517143,222,0 +170754517191,219,0 +170754517239,218,0 +170754517287,219,0 +170754517336,220,0 +170754517386,221,0 +170754517435,220,0 +170754517485,222,0 +170754517534,222,0 +170754517582,221,0 +170754517630,222,0 +170754517678,223,0 +170754517726,223,0 +170754517776,224,0 +170754517825,224,0 +170754517875,224,0 +170754517924,223,0 +170754517972,223,0 +170754518022,218,0 +170754518071,219,0 +170754518119,220,0 +170754518167,220,0 +170754518217,221,0 +170754518266,221,0 +170754518316,223,0 +170754518365,222,0 +170754518415,224,0 +170754518464,223,0 +170754518514,223,0 +170754518562,225,0 +170754518610,224,0 +170754518659,225,0 +170754518707,224,0 +170754518757,224,0 +170754518806,223,0 +170754518854,219,0 +170754518904,220,0 +170754518952,220,0 +170754518999,221,0 +170754519047,222,0 +170754519097,222,0 +170754519145,222,0 +170754519193,223,0 +170754519242,224,0 +170754519290,224,0 +170754519338,223,0 +170754519386,223,0 +170754519434,223,0 +170754519484,223,0 +170754519532,223,0 +170754519581,223,0 +170754519631,222,0 +170754519680,220,0 +170754519728,222,0 +170754519778,224,0 +170754519826,222,0 +170754519874,224,0 +170754519923,224,0 +170754519971,223,0 +170754520019,224,0 +170754520067,224,0 +170754520115,223,0 +170754520163,224,0 +170754520211,224,0 +170754520259,224,0 +170754520307,223,0 +170754520355,223,0 +170754520404,222,0 +170754520452,221,0 +170754520500,218,0 +170754520549,218,0 +170754520597,219,0 +170754520645,221,0 +170754520693,220,0 +170754520742,215,0 +170754520792,220,0 +170754520840,223,0 +170754520888,223,0 +170754520937,222,0 +170754520987,223,0 +170754521035,224,0 +170754521084,224,0 +170754521134,223,0 +170754521184,223,0 +170754521233,220,0 +170754521281,217,0 +170754521329,218,0 +170754521377,218,0 +170754521427,219,0 +170754521476,219,0 +170754521526,220,0 +170754521575,221,0 +170754521625,221,0 +170754521674,223,0 +170754521724,222,0 +170754521772,222,0 +170754521820,222,0 +170754521868,222,0 +170754521917,225,0 +170754521967,224,0 +170754522015,223,0 +170754522063,223,0 +170754522112,217,0 +170754522162,217,0 +170754522209,218,0 +170754522259,219,0 +170754522309,220,0 +170754522357,220,0 +170754522404,221,0 +170754522452,220,0 +170754522500,222,0 +170754522548,223,0 +170754522598,223,0 +170754522647,224,0 +170754522697,224,0 +170754522745,224,0 +170754522794,223,0 +170754522844,223,0 +170754522894,222,0 +170754522943,219,0 +170754522993,218,0 +170754523041,220,0 +170754523090,220,0 +170754523138,221,0 +170754523186,221,0 +170754523234,221,0 +170754523282,222,0 +170754523330,224,0 +170754523378,223,0 +170754523426,223,0 +170754523474,223,0 +170754523522,225,0 +170754523570,224,0 +170754523617,223,0 +170754523665,223,0 +170754523713,222,0 +170754523761,218,0 +170754523811,218,0 +170754523859,219,0 +170754523907,219,0 +170754523955,221,0 +170754524002,221,0 +170754524050,221,0 +170754524100,222,0 +170754524148,223,0 +170754524196,223,0 +170754524243,223,0 +170754524293,223,0 +170754524341,223,0 +170754524389,224,0 +170754524437,223,0 +170754524484,223,0 +170754524534,223,0 +170754524582,217,0 +170754524630,216,0 +170754524678,217,0 +170754524725,217,0 +170754524773,218,0 +170754524823,219,0 +170754524872,221,0 +170754524920,221,0 +170754524968,221,0 +170754525016,221,0 +170754525064,224,0 +170754525112,222,0 +170754525160,223,0 +170754525209,223,0 +170754525257,224,0 +170754525305,223,0 +170754525354,222,0 +170754525402,217,0 +170754525452,216,0 +170754525500,217,0 +170754525548,217,0 +170754525597,218,0 +170754525645,219,0 +170754525695,218,0 +170754525743,220,0 +170754525792,220,0 +170754525840,221,0 +170754525888,219,0 +170754525936,223,0 +170754525985,222,0 +170754526035,223,0 +170754526083,223,0 +170754526132,223,0 +170754526180,222,0 +170754526228,217,0 +170754526276,218,0 +170754526326,219,0 +170754526375,221,0 +170754526425,220,0 +170754526473,219,0 +170754526521,221,0 +170754526569,221,0 +170754526618,221,0 +170754526666,222,0 +170754526714,222,0 +170754526762,223,0 +170754526810,223,0 +170754526858,223,0 +170754526906,223,0 +170754526955,222,0 +170754527003,223,0 +170754527052,220,0 +170754527102,220,0 +170754527150,220,0 +170754527199,220,0 +170754527247,221,0 +170754527295,222,0 +170754527343,222,0 +170754527391,223,0 +170754527439,223,0 +170754527487,223,0 +170754527535,224,0 +170754527584,224,0 +170754527632,224,0 +170754527682,223,0 +170754527730,222,0 +170754527778,223,0 +170754527825,223,0 +170754527875,219,0 +170754527925,219,0 +170754527973,221,0 +170754528022,220,0 +170754528070,220,0 +170754528120,221,0 +170754528168,224,0 +170754528215,222,0 +170754528265,223,0 +170754528315,223,0 +170754528364,222,0 +170754528412,224,0 +170754528460,224,0 +170754528509,223,0 +170754528559,223,0 +170754528607,222,0 +170754528655,223,0 +170754528703,218,0 +170754528751,218,0 +170754528799,219,0 +170754528848,218,0 +170754528898,219,0 +170754528947,221,0 +170754528995,221,0 +170754529043,222,0 +170754529091,222,0 +170754529139,223,0 +170754529189,224,0 +170754529237,224,0 +170754529286,223,0 +170754529336,222,0 +170754529385,223,0 +170754529433,223,0 +170754529481,223,0 +170754529529,218,0 +170754529579,216,0 +170754529626,219,0 +170754529674,218,0 +170754529724,220,0 +170754529772,221,0 +170754529820,223,0 +170754529868,221,0 +170754529916,223,0 +170754529964,224,0 +170754530012,222,0 +170754530059,223,0 +170754530107,223,0 +170754530157,223,0 +170754530205,223,0 +170754530253,223,0 +170754530302,222,0 +170754530352,220,0 +170754530400,220,0 +170754530449,221,0 +170754530497,222,0 +170754530545,221,0 +170754530595,225,0 +170754530644,223,0 +170754530692,224,0 +170754530740,224,0 +170754530788,224,0 +170754530836,224,0 +170754530884,223,0 +170754530932,223,0 +170754530979,223,0 +170754531029,222,0 +170754531078,223,0 +170754531128,221,0 +170754531176,220,0 +170754531224,220,0 +170754531273,221,0 +170754531321,225,0 +170754531369,222,0 +170754531417,222,0 +170754531465,223,0 +170754531512,223,0 +170754531560,223,0 +170754531608,224,0 +170754531656,224,0 +170754531704,224,0 +170754531752,223,0 +170754531801,223,0 +170754531851,223,0 +170754531899,223,0 +170754531946,225,0 +170754531994,219,0 +170754532044,219,0 +170754532092,220,0 +170754532141,219,0 +170754532189,221,0 +170754532237,221,0 +170754532285,224,0 +170754532333,222,0 +170754532381,222,0 +170754532429,223,0 +170754532477,222,0 +170754532525,223,0 +170754532573,225,0 +170754532621,223,0 +170754532668,224,0 +170754532716,222,0 +170754532766,222,0 +170754532814,218,0 +170754532861,218,0 +170754532909,218,0 +170754532959,219,0 +170754533007,220,0 +170754533056,220,0 +170754533104,222,0 +170754533152,222,0 +170754533200,223,0 +170754533248,223,0 +170754533297,223,0 +170754533345,224,0 +170754533393,223,0 +170754533441,224,0 +170754533490,223,0 +170754533538,224,0 +170754533586,222,0 +170754533634,217,0 +170754533682,217,0 +170754533730,217,0 +170754533777,219,0 +170754533825,216,0 +170754533873,220,0 +170754533921,221,0 +170754533969,221,0 +170754534017,221,0 +170754534065,222,0 +170754534114,224,0 +170754534162,224,0 +170754534210,224,0 +170754534258,223,0 +170754534306,223,0 +170754534354,224,0 +170754534401,223,0 +170754534449,217,0 +170754534497,217,0 +170754534545,217,0 +170754534593,218,0 +170754534641,219,0 +170754534689,219,0 +170754534737,221,0 +170754534785,221,0 +170754534832,222,0 +170754534880,222,0 +170754534928,223,0 +170754534976,224,0 +170754535024,223,0 +170754535072,224,0 +170754535120,224,0 +170754535168,225,0 +170754535216,222,0 +170754535263,216,0 +170754535313,215,0 +170754535361,217,0 +170754535410,217,0 +170754535458,218,0 +170754535506,219,0 +170754535554,219,0 +170754535602,219,0 +170754535651,220,0 +170754535701,221,0 +170754535748,223,0 +170754535798,222,0 +170754535846,222,0 +170754535895,223,0 +170754535943,223,0 +170754535993,222,0 +170754536040,223,0 +170754536088,217,0 +170754536136,216,0 +170754536184,217,0 +170754536234,218,0 +170754536281,219,0 +170754536329,218,0 +170754536377,220,0 +170754536425,219,0 +170754536473,222,0 +170754536522,222,0 +170754536570,222,0 +170754536620,222,0 +170754536668,223,0 +170754536716,223,0 +170754536763,223,0 +170754536811,222,0 +170754536859,222,0 +170754536907,217,0 +170754536955,217,0 +170754537003,218,0 +170754537051,219,0 +170754537100,219,0 +170754537148,220,0 +170754537196,220,0 +170754537244,222,0 +170754537292,222,0 +170754537340,224,0 +170754537388,223,0 +170754537436,225,0 +170754537483,218,0 +170754537531,223,0 +170754537579,224,0 +170754537627,222,0 +170754537675,222,0 +170754537723,217,0 +170754537771,218,0 +170754537819,219,0 +170754537866,220,0 +170754537914,221,0 +170754537964,221,0 +170754538013,222,0 +170754538061,224,0 +170754538109,222,0 +170754538157,222,0 +170754538205,224,0 +170754538254,223,0 +170754538302,224,0 +170754538350,225,0 +170754538398,224,0 +170754538446,223,0 +170754538494,223,0 +170754538542,221,0 +170754538590,217,0 +170754538637,218,0 +170754538685,218,0 +170754538733,219,0 +170754538781,220,0 +170754538830,221,0 +170754538878,221,0 +170754538926,222,0 +170754538974,222,0 +170754539024,223,0 +170754539071,223,0 +170754539121,224,0 +170754539169,223,0 +170754539217,224,0 +170754539265,224,0 +170754539313,221,0 +170754539362,216,0 +170754539410,215,0 +170754539459,217,0 +170754539507,218,0 +170754539555,218,0 +170754539605,216,0 +170754539654,215,0 +170754539702,220,0 +170754539750,221,0 +170754539799,221,0 +170754539847,219,0 +170754539895,223,0 +170754539945,223,0 +170754539993,223,0 +170754540040,223,0 +170754540088,223,0 +170754540138,222,0 +170754540186,216,0 +170754540234,216,0 +170754540282,218,0 +170754540330,219,0 +170754540378,219,0 +170754540427,221,0 +170754540475,221,0 +170754540523,221,0 +170754540571,221,0 +170754540619,222,0 +170754540666,223,0 +170754540716,218,0 +170754540765,222,0 +170754540813,223,0 +170754540861,223,0 +170754540909,223,0 +170754540957,222,0 +170754541005,219,0 +170754541055,220,0 +170754541104,221,0 +170754541154,221,0 +170754541203,222,0 +170754541251,223,0 +170754541301,222,0 +170754541350,222,0 +170754541398,223,0 +170754541448,223,0 +170754541496,223,0 +170754541545,223,0 +170754541595,224,0 +170754541643,223,0 +170754541692,223,0 +170754541740,224,0 +170754541790,219,0 +170754541839,222,0 +170754541889,222,0 +170754541938,222,0 +170754541986,222,0 +170754542034,223,0 +170754542082,224,0 +170754542130,225,0 +170754542178,223,0 +170754542225,223,0 +170754542273,223,0 +170754542321,224,0 +170754542371,224,0 +170754542420,223,0 +170754542468,222,0 +170754542516,223,0 +170754542564,223,0 +170754542612,222,0 +170754542660,221,0 +170754542709,221,0 +170754542757,221,0 +170754542805,223,0 +170754542853,224,0 +170754542901,223,0 +170754542948,224,0 +170754542998,223,0 +170754543048,225,0 +170754543097,224,0 +170754543145,224,0 +170754543195,223,0 +170754543243,223,0 +170754543291,223,0 +170754543339,222,0 +170754543388,222,0 +170754543438,217,0 +170754543486,221,0 +170754543534,226,0 +170754543583,219,0 +170754543631,220,0 +170754543679,221,0 +170754543729,223,0 +170754543777,222,0 +170754543826,223,0 +170754543874,223,0 +170754543922,226,0 +170754543970,223,0 +170754544018,223,0 +170754544067,224,0 +170754544115,224,0 +170754544163,223,0 +170754544211,217,0 +170754544261,218,0 +170754544309,218,0 +170754544358,220,0 +170754544406,221,0 +170754544456,219,0 +170754544505,221,0 +170754544553,221,0 +170754544603,223,0 +170754544652,223,0 +170754544700,223,0 +170754544748,224,0 +170754544798,224,0 +170754544845,223,0 +170754544893,223,0 +170754544941,223,0 +170754544989,222,0 +170754545037,218,0 +170754545085,218,0 +170754545134,218,0 +170754545182,222,0 +170754545230,220,0 +170754545280,221,0 +170754545329,222,0 +170754545379,223,0 +170754545426,222,0 +170754545476,223,0 +170754545526,223,0 +170754545575,223,0 +170754545623,225,0 +170754545673,224,0 +170754545721,223,0 +170754545768,222,0 +170754545816,221,0 +170754545864,217,0 +170754545912,217,0 +170754545960,218,0 +170754546008,218,0 +170754546057,219,0 +170754546105,220,0 +170754546155,221,0 +170754546204,221,0 +170754546252,222,0 +170754546300,221,0 +170754546348,223,0 +170754546395,223,0 +170754546443,224,0 +170754546491,224,0 +170754546539,225,0 +170754546587,223,0 +170754546637,217,0 +170754546686,216,0 +170754546734,217,0 +170754546782,218,0 +170754546830,219,0 +170754546879,219,0 +170754546929,220,0 +170754546978,221,0 +170754547028,222,0 +170754547078,222,0 +170754547127,223,0 +170754547177,222,0 +170754547225,222,0 +170754547272,224,0 +170754547320,223,0 +170754547370,223,0 +170754547419,222,0 +170754547467,216,0 +170754547517,217,0 +170754547565,217,0 +170754547613,219,0 +170754547661,218,0 +170754547709,220,0 +170754547757,220,0 +170754547805,220,0 +170754547853,222,0 +170754547902,221,0 +170754547950,224,0 +170754547998,224,0 +170754548047,223,0 +170754548097,220,0 +170754548145,223,0 +170754548194,223,0 +170754548242,216,0 +170754548290,216,0 +170754548338,217,0 +170754548386,218,0 +170754548434,219,0 +170754548483,220,0 +170754548533,219,0 +170754548581,222,0 +170754548628,222,0 +170754548678,223,0 +170754548726,223,0 +170754548774,222,0 +170754548822,225,0 +170754548870,224,0 +170754548917,225,0 +170754548965,223,0 +170754549015,223,0 +170754549062,217,0 +170754549110,217,0 +170754549160,216,0 +170754549208,218,0 +170754549257,218,0 +170754549305,219,0 +170754549353,220,0 +170754549401,219,0 +170754549449,221,0 +170754549499,222,0 +170754549546,222,0 +170754549594,223,0 +170754549642,223,0 +170754549690,223,0 +170754549738,223,0 +170754549786,223,0 +170754549834,222,0 +170754549882,217,0 +170754549931,217,0 +170754549979,219,0 +170754550027,218,0 +170754550077,220,0 +170754550125,219,0 +170754550173,221,0 +170754550222,222,0 +170754550270,221,0 +170754550318,222,0 +170754550366,224,0 +170754550414,222,0 +170754550461,223,0 +170754550509,223,0 +170754550557,223,0 +170754550605,223,0 +170754550653,219,0 +170754550701,218,0 +170754550751,218,0 +170754550799,219,0 +170754550848,220,0 +170754550898,220,0 +170754550947,221,0 +170754550995,221,0 +170754551045,223,0 +170754551094,223,0 +170754551142,223,0 +170754551190,224,0 +170754551238,225,0 +170754551286,225,0 +170754551334,223,0 +170754551382,224,0 +170754551431,224,0 +170754551479,219,0 +170754551529,221,0 +170754551578,222,0 +170754551626,221,0 +170754551674,223,0 +170754551722,222,0 +170754551770,222,0 +170754551817,223,0 +170754551865,224,0 +170754551913,224,0 +170754551961,224,0 +170754552009,223,0 +170754552058,224,0 +170754552106,223,0 +170754552154,223,0 +170754552202,223,0 +170754552250,222,0 +170754552298,221,0 +170754552346,221,0 +170754552394,221,0 +170754552441,223,0 +170754552491,222,0 +170754552539,223,0 +170754552588,223,0 +170754552638,223,0 +170754552687,224,0 +170754552737,221,0 +170754552785,223,0 +170754552834,224,0 +170754552883,224,0 +170754552933,223,0 +170754552981,223,0 +170754553029,221,0 +170754553077,222,0 +170754553124,219,0 +170754553172,220,0 +170754553222,220,0 +170754553270,221,0 +170754553318,222,0 +170754553366,222,0 +170754553413,223,0 +170754553463,222,0 +170754553511,222,0 +170754553560,224,0 +170754553608,223,0 +170754553656,224,0 +170754553704,223,0 +170754553753,221,0 +170754553801,223,0 +170754553849,222,0 +170754553897,219,0 +170754553947,218,0 +170754553994,220,0 +170754554042,220,0 +170754554090,221,0 +170754554138,223,0 +170754554188,222,0 +170754554235,224,0 +170754554283,223,0 +170754554331,223,0 +170754554379,223,0 +170754554427,223,0 +170754554475,224,0 +170754554524,224,0 +170754554574,222,0 +170754554622,223,0 +170754554670,222,0 +170754554717,222,0 +170754554765,220,0 +170754554813,221,0 +170754554861,221,0 +170754554909,221,0 +170754554957,224,0 +170754555005,222,0 +170754555053,224,0 +170754555101,223,0 +170754555149,223,0 +170754555198,223,0 +170754555248,224,0 +170754555297,223,0 +170754555345,223,0 +170754555395,222,0 +170754555443,223,0 +170754555492,223,0 +170754555542,222,0 +170754555591,221,0 +170754555639,221,0 +170754555689,221,0 +170754555737,223,0 +170754555786,223,0 +170754555834,222,0 +170754555882,222,0 +170754555932,223,0 +170754555980,223,0 +170754556028,223,0 +170754556076,225,0 +170754556124,223,0 +170754556172,223,0 +170754556221,223,0 +170754556271,222,0 +170754556320,217,0 +170754556368,218,0 +170754556416,218,0 +170754556466,220,0 +170754556513,220,0 +170754556561,221,0 +170754556609,221,0 +170754556659,221,0 +170754556708,222,0 +170754556756,221,0 +170754556804,222,0 +170754556854,224,0 +170754556903,222,0 +170754556953,224,0 +170754557001,227,0 +170754557049,221,0 +170754557098,220,0 +170754557146,216,0 +170754557194,217,0 +170754557244,222,0 +170754557293,219,0 +170754557343,219,0 +170754557391,221,0 +170754557439,222,0 +170754557488,222,0 +170754557538,223,0 +170754557586,223,0 +170754557635,224,0 +170754557683,224,0 +170754557731,225,0 +170754557779,223,0 +170754557827,223,0 +170754557875,223,0 +170754557923,217,0 +170754557971,216,0 +170754558018,217,0 +170754558066,218,0 +170754558114,217,0 +170754558162,223,0 +170754558212,220,0 +170754558261,220,0 +170754558309,222,0 +170754558359,222,0 +170754558408,223,0 +170754558458,223,0 +170754558506,223,0 +170754558555,223,0 +170754558605,223,0 +170754558653,223,0 +170754558701,222,0 +170754558749,216,0 +170754558797,216,0 +170754558845,217,0 +170754558892,218,0 +170754558940,219,0 +170754558988,219,0 +170754559038,218,0 +170754559086,221,0 +170754559135,220,0 +170754559185,223,0 +170754559233,223,0 +170754559281,224,0 +170754559330,224,0 +170754559378,221,0 +170754559426,223,0 +170754559476,222,0 +170754559525,216,0 +170754559575,216,0 +170754559624,216,0 +170754559672,217,0 +170754559722,218,0 +170754559770,218,0 +170754559818,217,0 +170754559865,220,0 +170754559913,222,0 +170754559961,222,0 +170754560009,223,0 +170754560057,224,0 +170754560105,223,0 +170754560153,223,0 +170754560201,223,0 +170754560249,223,0 +170754560298,223,0 +170754560346,217,0 +170754560394,217,0 +170754560443,217,0 +170754560491,218,0 +170754560541,219,0 +170754560588,220,0 +170754560636,220,0 +170754560684,221,0 +170754560732,222,0 +170754560780,221,0 +170754560829,222,0 +170754560879,223,0 +170754560927,225,0 +170754560975,222,0 +170754561023,223,0 +170754561072,223,0 +170754561121,223,0 +170754561171,217,0 +170754561219,217,0 +170754561267,218,0 +170754561315,219,0 +170754561363,218,0 +170754561411,220,0 +170754561460,220,0 +170754561508,220,0 +170754561556,222,0 +170754561606,222,0 +170754561654,222,0 +170754561702,223,0 +170754561750,223,0 +170754561797,223,0 +170754561847,224,0 +170754561895,223,0 +170754561943,221,0 +170754561992,219,0 +170754562040,219,0 +170754562090,219,0 +170754562138,220,0 +170754562186,221,0 +170754562234,221,0 +170754562283,221,0 +170754562331,221,0 +170754562379,222,0 +170754562427,223,0 +170754562475,223,0 +170754562523,222,0 +170754562571,224,0 +170754562619,222,0 +170754562667,223,0 +170754562714,222,0 +170754562762,219,0 +170754562810,219,0 +170754562858,219,0 +170754562906,220,0 +170754562954,221,0 +170754563002,221,0 +170754563050,221,0 +170754563099,224,0 +170754563147,222,0 +170754563195,222,0 +170754563243,223,0 +170754563291,223,0 +170754563340,223,0 +170754563390,222,0 +170754563438,223,0 +170754563487,223,0 +170754563537,222,0 +170754563586,221,0 +170754563634,221,0 +170754563682,221,0 +170754563730,221,0 +170754563779,222,0 +170754563827,222,0 +170754563875,223,0 +170754563923,223,0 +170754563972,223,0 +170754564020,224,0 +170754564070,223,0 +170754564119,223,0 +170754564169,223,0 +170754564217,223,0 +170754564265,223,0 +170754564313,224,0 +170754564362,223,0 +170754564410,222,0 +170754564458,223,0 +170754564506,224,0 +170754564554,224,0 +170754564604,223,0 +170754564653,223,0 +170754564702,223,0 +170754564750,223,0 +170754564800,223,0 +170754564848,223,0 +170754564896,223,0 +170754564945,221,0 +170754564993,224,0 +170754565043,223,0 +170754565091,223,0 +170754565140,223,0 +170754565188,222,0 +170754565238,222,0 +170754565286,223,0 +170754565334,224,0 +170754565383,223,0 +170754565433,223,0 +170754565482,224,0 +170754565530,224,0 +170754565580,224,0 +170754565628,223,0 +170754565676,227,0 +170754565724,221,0 +170754565773,223,0 +170754565821,223,0 +170754565871,223,0 +170754565920,223,0 +170754565968,218,0 +170754566016,218,0 +170754566066,219,0 +170754566115,220,0 +170754566165,220,0 +170754566213,221,0 +170754566262,222,0 +170754566312,223,0 +170754566361,223,0 +170754566409,223,0 +170754566459,224,0 +170754566508,223,0 +170754566558,225,0 +170754566606,224,0 +170754566655,223,0 +170754566703,222,0 +170754566751,222,0 +170754566801,217,0 +170754566850,216,0 +170754566900,218,0 +170754566948,218,0 +170754566997,220,0 +170754567045,221,0 +170754567093,221,0 +170754567141,222,0 +170754567189,222,0 +170754567237,224,0 +170754567284,222,0 +170754567332,222,0 +170754567380,222,0 +170754567428,223,0 +170754567478,223,0 +170754567525,223,0 +170754567573,222,0 +170754567621,217,0 +170754567671,218,0 +170754567719,219,0 +170754567767,220,0 +170754567815,220,0 +170754567863,220,0 +170754567912,222,0 +170754567962,222,0 +170754568010,222,0 +170754568059,223,0 +170754568109,223,0 +170754568158,223,0 +170754568208,223,0 +170754568257,223,0 +170754568307,223,0 +170754568355,222,0 +170754568403,219,0 +170754568452,219,0 +170754568500,220,0 +170754568550,220,0 +170754568598,221,0 +170754568647,222,0 +170754568695,222,0 +170754568743,223,0 +170754568791,222,0 +170754568839,224,0 +170754568889,223,0 +170754568937,224,0 +170754568985,225,0 +170754569033,224,0 +170754569082,222,0 +170754569132,223,0 +170754569181,222,0 +170754569229,217,0 +170754569277,218,0 +170754569327,219,0 +170754569375,219,0 +170754569423,220,0 +170754569472,217,0 +170754569520,221,0 +170754569568,222,0 +170754569618,223,0 +170754569666,222,0 +170754569714,223,0 +170754569763,225,0 +170754569811,225,0 +170754569859,224,0 +170754569909,223,0 +170754569958,223,0 +170754570006,220,0 +170754570054,216,0 +170754570102,216,0 +170754570150,217,0 +170754570200,219,0 +170754570247,218,0 +170754570295,220,0 +170754570345,222,0 +170754570393,221,0 +170754570442,222,0 +170754570490,222,0 +170754570538,222,0 +170754570588,223,0 +170754570636,225,0 +170754570684,223,0 +170754570733,224,0 +170754570781,222,0 +170754570831,216,0 +170754570880,216,0 +170754570928,217,0 +170754570976,217,0 +170754571026,218,0 +170754571074,218,0 +170754571122,220,0 +170754571171,221,0 +170754571221,222,0 +170754571269,222,0 +170754571317,223,0 +170754571365,225,0 +170754571413,223,0 +170754571460,223,0 +170754571508,223,0 +170754571556,223,0 +170754571604,222,0 +170754571654,217,0 +170754571701,217,0 +170754571751,218,0 +170754571799,219,0 +170754571847,220,0 +170754571894,220,0 +170754571942,220,0 +170754571990,221,0 +170754572040,222,0 +170754572088,222,0 +170754572137,222,0 +170754572185,224,0 +170754572235,223,0 +170754572284,223,0 +170754572332,223,0 +170754572380,224,0 +170754572430,217,0 +170754572479,218,0 +170754572529,218,0 +170754572576,218,0 +170754572626,219,0 +170754572676,220,0 +170754572725,222,0 +170754572773,221,0 +170754572821,222,0 +170754572869,223,0 +170754572918,223,0 +170754572966,223,0 +170754573016,223,0 +170754573065,223,0 +170754573113,223,0 +170754573163,223,0 +170754573211,222,0 +170754573260,219,0 +170754573308,218,0 +170754573356,219,0 +170754573404,221,0 +170754573452,222,0 +170754573500,221,0 +170754573548,221,0 +170754573596,221,0 +170754573644,222,0 +170754573692,222,0 +170754573742,224,0 +170754573790,224,0 +170754573839,223,0 +170754573887,223,0 +170754573935,223,0 +170754573983,223,0 +170754574033,218,0 +170754574082,219,0 +170754574130,219,0 +170754574178,220,0 +170754574226,220,0 +170754574275,222,0 +170754574325,221,0 +170754574373,222,0 +170754574421,222,0 +170754574469,223,0 +170754574518,222,0 +170754574568,223,0 +170754574616,224,0 +170754574664,227,0 +170754574712,224,0 +170754574760,222,0 +170754574808,222,0 +170754574855,220,0 +170754574905,220,0 +170754574955,220,0 +170754575004,221,0 +170754575052,222,0 +170754575100,222,0 +170754575148,223,0 +170754575198,224,0 +170754575248,224,0 +170754575296,223,0 +170754575344,224,0 +170754575393,217,0 +170754575443,221,0 +170754575492,226,0 +170754575540,223,0 +170754575590,223,0 +170754575639,222,0 +170754575689,220,0 +170754575738,222,0 +170754575788,221,0 +170754575836,222,0 +170754575884,223,0 +170754575931,224,0 +170754575979,224,0 +170754576027,223,0 +170754576075,224,0 +170754576123,225,0 +170754576173,227,0 +170754576222,224,0 +170754576270,222,0 +170754576320,223,0 +170754576369,223,0 +170754576419,222,0 +170754576467,219,0 +170754576515,219,0 +170754576563,220,0 +170754576611,220,0 +170754576659,221,0 +170754576708,221,0 +170754576756,222,0 +170754576806,222,0 +170754576854,223,0 +170754576902,223,0 +170754576951,222,0 +170754576999,223,0 +170754577049,223,0 +170754577097,224,0 +170754577146,223,0 +170754577196,223,0 +170754577244,222,0 +170754577293,219,0 +170754577343,219,0 +170754577393,220,0 +170754577440,223,0 +170754577488,221,0 +170754577536,221,0 +170754577584,222,0 +170754577632,220,0 +170754577680,223,0 +170754577728,222,0 +170754577776,224,0 +170754577826,223,0 +170754577874,223,0 +170754577923,222,0 +170754577973,222,0 +170754578022,223,0 +170754578070,220,0 +170754578120,219,0 +170754578168,218,0 +170754578216,220,0 +170754578265,222,0 +170754578313,222,0 +170754578363,223,0 +170754578412,223,0 +170754578460,223,0 +170754578510,223,0 +170754578558,223,0 +170754578607,221,0 +170754578655,223,0 +170754578703,223,0 +170754578753,224,0 +170754578802,223,0 +170754578850,222,0 +170754578900,219,0 +170754578948,219,0 +170754578997,220,0 +170754579045,221,0 +170754579095,221,0 +170754579142,221,0 +170754579190,222,0 +170754579238,222,0 +170754579286,224,0 +170754579334,223,0 +170754579382,223,0 +170754579431,223,0 +170754579479,223,0 +170754579527,224,0 +170754579575,222,0 +170754579623,222,0 +170754579671,216,0 +170754579719,217,0 +170754579768,217,0 +170754579816,218,0 +170754579864,218,0 +170754579912,219,0 +170754579960,221,0 +170754580008,221,0 +170754580056,221,0 +170754580105,222,0 +170754580153,222,0 +170754580203,223,0 +170754580251,223,0 +170754580299,223,0 +170754580348,221,0 +170754580396,223,0 +170754580444,222,0 +170754580494,215,0 +170754580542,217,0 +170754580591,217,0 +170754580639,218,0 +170754580687,219,0 +170754580735,220,0 +170754580785,221,0 +170754580834,221,0 +170754580882,221,0 +170754580930,224,0 +170754580980,223,0 +170754581029,223,0 +170754581077,221,0 +170754581125,225,0 +170754581173,223,0 +170754581221,222,0 +170754581269,222,0 +170754581318,220,0 +170754581366,219,0 +170754581416,219,0 +170754581464,220,0 +170754581512,221,0 +170754581560,222,0 +170754581609,221,0 +170754581659,223,0 +170754581707,223,0 +170754581755,223,0 +170754581803,222,0 +170754581852,224,0 +170754581902,223,0 +170754581951,223,0 +170754582001,222,0 +170754582049,223,0 +170754582098,218,0 +170754582146,219,0 +170754582194,220,0 +170754582244,221,0 +170754582292,222,0 +170754582340,221,0 +170754582388,222,0 +170754582436,222,0 +170754582485,222,0 +170754582535,227,0 +170754582584,223,0 +170754582632,225,0 +170754582682,225,0 +170754582730,223,0 +170754582777,223,0 +170754582827,223,0 +170754582877,222,0 +170754582925,217,0 +170754582973,218,0 +170754583020,218,0 +170754583070,219,0 +170754583118,221,0 +170754583167,220,0 +170754583215,220,0 +170754583265,221,0 +170754583314,223,0 +170754583364,222,0 +170754583413,222,0 +170754583463,224,0 +170754583513,223,0 +170754583562,223,0 +170754583610,223,0 +170754583658,223,0 +170754583706,218,0 +170754583755,218,0 +170754583803,218,0 +170754583853,219,0 +170754583903,219,0 +170754583950,220,0 +170754584000,221,0 +170754584050,222,0 +170754584098,223,0 +170754584147,222,0 +170754584195,222,0 +170754584245,223,0 +170754584293,222,0 +170754584342,224,0 +170754584390,223,0 +170754584438,223,0 +170754584486,223,0 +170754584535,218,0 +170754584583,218,0 +170754584631,219,0 +170754584681,219,0 +170754584729,221,0 +170754584777,221,0 +170754584825,221,0 +170754584873,222,0 +170754584920,223,0 +170754584968,222,0 +170754585018,222,0 +170754585066,224,0 +170754585114,223,0 +170754585163,223,0 +170754585211,223,0 +170754585261,223,0 +170754585310,218,0 +170754585360,221,0 +170754585408,219,0 +170754585456,219,0 +170754585505,221,0 +170754585555,221,0 +170754585603,222,0 +170754585652,223,0 +170754585700,223,0 +170754585748,224,0 +170754585796,223,0 +170754585844,224,0 +170754585894,225,0 +170754585943,224,0 +170754585993,223,0 +170754586042,222,0 +170754586092,223,0 +170754586141,217,0 +170754586189,222,0 +170754586237,222,0 +170754586285,223,0 +170754586335,224,0 +170754586383,223,0 +170754586431,222,0 +170754586480,223,0 +170754586528,224,0 +170754586576,223,0 +170754586626,222,0 +170754586674,224,0 +170754586722,224,0 +170754586769,223,0 +170754586819,223,0 +170754586869,223,0 +170754586918,221,0 +170754586966,222,0 +170754587016,222,0 +170754587065,223,0 +170754587113,223,0 +170754587161,223,0 +170754587209,224,0 +170754587257,225,0 +170754587304,223,0 +170754587352,224,0 +170754587400,223,0 +170754587448,223,0 +170754587496,223,0 +170754587544,223,0 +170754587592,223,0 +170754587641,223,0 +170754587689,222,0 +170754587737,216,0 +170754587785,217,0 +170754587833,219,0 +170754587882,219,0 +170754587930,220,0 +170754587978,220,0 +170754588026,222,0 +170754588074,222,0 +170754588122,222,0 +170754588170,223,0 +170754588218,223,0 +170754588267,223,0 +170754588317,224,0 +170754588365,224,0 +170754588413,223,0 +170754588460,223,0 +170754588508,222,0 +170754588558,216,0 +170754588606,217,0 +170754588654,217,0 +170754588702,218,0 +170754588750,220,0 +170754588798,220,0 +170754588846,220,0 +170754588895,221,0 +170754588945,221,0 +170754588993,223,0 +170754589041,223,0 +170754589088,224,0 +170754589136,223,0 +170754589186,224,0 +170754589234,223,0 +170754589282,223,0 +170754589330,216,0 +170754589379,218,0 +170754589429,218,0 +170754589478,218,0 +170754589526,219,0 +170754589576,220,0 +170754589624,222,0 +170754589673,221,0 +170754589721,221,0 +170754589769,223,0 +170754589817,222,0 +170754589867,223,0 +170754589916,222,0 +170754589964,222,0 +170754590012,223,0 +170754590060,223,0 +170754590108,222,0 +170754590156,217,0 +170754590204,218,0 +170754590253,218,0 +170754590301,219,0 +170754590349,219,0 +170754590397,221,0 +170754590445,221,0 +170754590492,222,0 +170754590540,222,0 +170754590590,223,0 +170754590638,222,0 +170754590685,223,0 +170754590735,227,0 +170754590784,223,0 +170754590834,223,0 +170754590883,222,0 +170754590933,217,0 +170754590981,217,0 +170754591030,220,0 +170754591078,220,0 +170754591128,222,0 +170754591177,221,0 +170754591225,222,0 +170754591273,223,0 +170754591323,223,0 +170754591372,224,0 +170754591420,224,0 +170754591468,224,0 +170754591516,224,0 +170754591564,224,0 +170754591612,222,0 +170754591660,223,0 +170754591710,223,0 +170754591758,218,0 +170754591806,219,0 +170754591854,220,0 +170754591903,220,0 +170754591953,221,0 +170754592001,221,0 +170754592049,224,0 +170754592098,223,0 +170754592148,223,0 +170754592197,223,0 +170754592245,224,0 +170754592295,224,0 +170754592343,223,0 +170754592391,222,0 +170754592440,223,0 +170754592488,222,0 +170754592536,222,0 +170754592586,218,0 +170754592634,218,0 +170754592683,219,0 +170754592731,221,0 +170754592781,220,0 +170754592829,220,0 +170754592877,223,0 +170754592926,223,0 +170754592974,223,0 +170754593022,223,0 +170754593072,224,0 +170754593121,223,0 +170754593171,224,0 +170754593220,223,0 +170754593270,222,0 +170754593318,222,0 +170754593367,215,0 +170754593415,215,0 +170754593463,217,0 +170754593511,216,0 +170754593561,220,0 +170754593610,219,0 +170754593660,219,0 +170754593708,220,0 +170754593758,221,0 +170754593806,222,0 +170754593855,222,0 +170754593905,223,0 +170754593954,223,0 +170754594004,223,0 +170754594052,222,0 +170754594099,223,0 +170754594147,223,0 +170754594195,217,0 +170754594245,219,0 +170754594294,219,0 +170754594344,219,0 +170754594394,220,0 +170754594443,220,0 +170754594493,222,0 +170754594541,223,0 +170754594590,222,0 +170754594638,223,0 +170754594688,223,0 +170754594737,223,0 +170754594785,223,0 +170754594833,223,0 +170754594883,223,0 +170754594931,223,0 +170754594979,220,0 +170754595028,220,0 +170754595076,221,0 +170754595124,222,0 +170754595172,222,0 +170754595221,222,0 +170754595269,222,0 +170754595317,224,0 +170754595367,224,0 +170754595416,225,0 +170754595464,223,0 +170754595512,224,0 +170754595560,223,0 +170754595608,224,0 +170754595656,225,0 +170754595706,223,0 +170754595754,218,0 +170754595803,219,0 +170754595851,220,0 +170754595901,221,0 +170754595948,221,0 +170754595996,221,0 +170754596046,223,0 +170754596094,222,0 +170754596141,222,0 +170754596189,223,0 +170754596237,225,0 +170754596285,224,0 +170754596333,224,0 +170754596383,224,0 +170754596430,223,0 +170754596480,222,0 +170754596528,223,0 +170754596577,221,0 +170754596627,220,0 +170754596675,220,0 +170754596723,222,0 +170754596770,222,0 +170754596818,222,0 +170754596868,222,0 +170754596916,223,0 +170754596964,224,0 +170754597014,223,0 +170754597063,223,0 +170754597113,223,0 +170754597161,224,0 +170754597209,223,0 +170754597258,223,0 +170754597308,223,0 +170754597356,222,0 +170754597404,220,0 +170754597453,220,0 +170754597501,223,0 +170754597549,222,0 +170754597599,223,0 +170754597648,224,0 +170754597698,222,0 +170754597747,223,0 +170754597797,223,0 +170754597845,224,0 +170754597893,225,0 +170754597941,223,0 +170754597990,223,0 +170754598038,223,0 +170754598088,223,0 +170754598137,222,0 +170754598185,220,0 +170754598233,219,0 +170754598283,221,0 +170754598332,221,0 +170754598380,222,0 +170754598430,222,0 +170754598478,222,0 +170754598527,223,0 +170754598577,223,0 +170754598625,223,0 +170754598674,222,0 +170754598724,224,0 +170754598772,224,0 +170754598820,224,0 +170754598868,223,0 +170754598915,223,0 +170754598965,222,0 +170754599015,218,0 +170754599063,219,0 +170754599112,219,0 +170754599160,216,0 +170754599210,220,0 +170754599259,220,0 +170754599309,221,0 +170754599358,222,0 +170754599408,225,0 +170754599457,223,0 +170754599505,223,0 +170754599555,224,0 +170754599604,224,0 +170754599654,224,0 +170754599703,223,0 +170754599751,223,0 +170754599799,216,0 +170754599847,218,0 +170754599895,217,0 +170754599943,219,0 +170754599993,220,0 +170754600041,220,0 +170754600090,222,0 +170754600138,222,0 +170754600188,223,0 +170754600236,223,0 +170754600283,223,0 +170754600333,225,0 +170754600382,225,0 +170754600430,224,0 +170754600478,223,0 +170754600526,223,0 +170754600574,221,0 +170754600624,217,0 +170754600672,218,0 +170754600720,218,0 +170754600768,219,0 +170754600817,220,0 +170754600867,221,0 +170754600916,221,0 +170754600966,222,0 +170754601014,222,0 +170754601062,224,0 +170754601110,224,0 +170754601158,224,0 +170754601207,224,0 +170754601255,223,0 +170754601303,223,0 +170754601351,221,0 +170754601399,216,0 +170754601447,216,0 +170754601496,217,0 +170754601544,218,0 +170754601594,221,0 +170754601644,219,0 +170754601691,218,0 +170754601741,221,0 +170754601789,221,0 +170754601837,223,0 +170754601885,223,0 +170754601934,224,0 +170754601982,223,0 +170754602032,227,0 +170754602080,223,0 +170754602128,224,0 +170754602176,221,0 +170754602224,217,0 +170754602273,218,0 +170754602323,219,0 +170754602371,218,0 +170754602419,219,0 +170754602467,220,0 +170754602515,221,0 +170754602564,221,0 +170754602612,222,0 +170754602660,223,0 +170754602708,222,0 +170754602756,224,0 +170754602805,223,0 +170754602855,223,0 +170754602904,223,0 +170754602952,223,0 +170754603000,217,0 +170754603050,216,0 +170754603099,217,0 +170754603147,217,0 +170754603195,218,0 +170754603243,219,0 +170754603293,220,0 +170754603342,220,0 +170754603390,222,0 +170754603440,221,0 +170754603488,222,0 +170754603537,223,0 +170754603587,223,0 +170754603635,223,0 +170754603684,222,0 +170754603732,223,0 +170754603780,222,0 +170754603828,218,0 +170754603876,219,0 +170754603924,220,0 +170754603974,219,0 +170754604023,219,0 +170754604073,221,0 +170754604121,222,0 +170754604169,222,0 +170754604218,222,0 +170754604266,221,0 +170754604316,223,0 +170754604365,223,0 +170754604415,224,0 +170754604463,224,0 +170754604511,223,0 +170754604560,223,0 +170754604608,220,0 +170754604656,220,0 +170754604704,220,0 +170754604752,221,0 +170754604802,221,0 +170754604850,222,0 +170754604899,222,0 +170754604947,222,0 +170754604995,224,0 +170754605043,224,0 +170754605091,224,0 +170754605140,223,0 +170754605188,224,0 +170754605236,223,0 +170754605284,223,0 +170754605334,223,0 +170754605382,222,0 +170754605430,220,0 +170754605478,220,0 +170754605526,220,0 +170754605574,221,0 +170754605622,222,0 +170754605671,225,0 +170754605721,220,0 +170754605769,224,0 +170754605817,224,0 +170754605864,225,0 +170754605912,224,0 +170754605960,223,0 +170754606008,224,0 +170754606056,223,0 +170754606104,223,0 +170754606152,224,0 +170754606200,222,0 +170754606247,217,0 +170754606297,218,0 +170754606345,219,0 +170754606394,220,0 +170754606444,220,0 +170754606493,220,0 +170754606541,223,0 +170754606589,222,0 +170754606637,222,0 +170754606685,221,0 +170754606733,226,0 +170754606781,225,0 +170754606831,223,0 +170754606880,223,0 +170754606928,222,0 +170754606978,224,0 +170754607026,219,0 +170754607075,218,0 +170754607125,220,0 +170754607174,221,0 +170754607224,221,0 +170754607271,222,0 +170754607319,222,0 +170754607369,224,0 +170754607417,223,0 +170754607464,223,0 +170754607512,223,0 +170754607562,223,0 +170754607611,222,0 +170754607659,221,0 +170754607707,223,0 +170754607755,223,0 +170754607803,222,0 +170754607851,221,0 +170754607899,221,0 +170754607946,222,0 +170754607996,222,0 +170754608044,222,0 +170754608092,222,0 +170754608140,222,0 +170754608187,222,0 +170754608235,223,0 +170754608283,224,0 +170754608331,223,0 +170754608379,223,0 +170754608427,224,0 +170754608475,224,0 +170754608524,223,0 +170754608572,224,0 +170754608620,222,0 +170754608668,223,0 +170754608716,223,0 +170754608764,222,0 +170754608812,222,0 +170754608860,223,0 +170754608909,225,0 +170754608957,224,0 +170754609005,223,0 +170754609053,226,0 +170754609101,223,0 +170754609150,224,0 +170754609200,223,0 +170754609248,223,0 +170754609296,223,0 +170754609345,223,0 +170754609393,222,0 +170754609443,221,0 +170754609492,223,0 +170754609540,222,0 +170754609590,222,0 +170754609640,223,0 +170754609689,225,0 +170754609737,222,0 +170754609785,223,0 +170754609833,223,0 +170754609882,224,0 +170754609930,223,0 +170754609980,224,0 +170754610028,224,0 +170754610077,223,0 +170754610127,223,0 +170754610176,222,0 +170754610226,218,0 +170754610275,217,0 +170754610323,219,0 +170754610371,220,0 +170754610419,219,0 +170754610467,219,0 +170754610517,221,0 +170754610564,224,0 +170754610612,223,0 +170754610660,223,0 +170754610708,224,0 +170754610756,224,0 +170754610804,224,0 +170754610852,224,0 +170754610900,223,0 +170754610948,223,0 +170754610995,223,0 +170754611045,217,0 +170754611095,218,0 +170754611144,218,0 +170754611194,219,0 +170754611243,221,0 +170754611293,221,0 +170754611342,221,0 +170754611390,222,0 +170754611438,221,0 +170754611486,223,0 +170754611534,224,0 +170754611582,224,0 +170754611632,223,0 +170754611681,224,0 +170754611729,223,0 +170754611779,222,0 +170754611828,217,0 +170754611878,218,0 +170754611927,219,0 +170754611975,219,0 +170754612023,219,0 +170754612073,220,0 +170754612122,220,0 +170754612172,222,0 +170754612220,222,0 +170754612268,222,0 +170754612315,223,0 +170754612363,224,0 +170754612411,222,0 +170754612459,223,0 +170754612507,223,0 +170754612555,221,0 +170754612604,217,0 +170754612654,218,0 +170754612702,218,0 +170754612750,219,0 +170754612798,219,0 +170754612846,219,0 +170754612894,221,0 +170754612942,221,0 +170754612991,222,0 +170754613039,222,0 +170754613087,223,0 +170754613137,224,0 +170754613186,223,0 +170754613236,223,0 +170754613284,222,0 +170754613333,222,0 +170754613383,216,0 +170754613432,216,0 +170754613480,218,0 +170754613528,219,0 +170754613578,218,0 +170754613626,220,0 +170754613674,220,0 +170754613721,221,0 +170754613769,222,0 +170754613817,223,0 +170754613866,221,0 +170754613914,222,0 +170754613962,224,0 +170754614010,223,0 +170754614060,224,0 +170754614108,223,0 +170754614156,222,0 +170754614203,214,0 +170754614251,216,0 +170754614299,216,0 +170754614347,218,0 +170754614395,219,0 +170754614443,220,0 +170754614491,221,0 +170754614539,221,0 +170754614589,222,0 +170754614637,222,0 +170754614685,224,0 +170754614733,224,0 +170754614782,223,0 +170754614830,223,0 +170754614879,222,0 +170754614927,222,0 +170754614975,216,0 +170754615025,216,0 +170754615073,218,0 +170754615121,218,0 +170754615169,219,0 +170754615218,220,0 +170754615266,220,0 +170754615316,222,0 +170754615364,221,0 +170754615413,223,0 +170754615461,225,0 +170754615511,224,0 +170754615560,224,0 +170754615610,224,0 +170754615658,223,0 +170754615706,222,0 +170754615753,217,0 +170754615803,216,0 +170754615851,217,0 +170754615899,218,0 +170754615948,219,0 +170754615998,219,0 +170754616046,220,0 +170754616094,220,0 +170754616143,220,0 +170754616193,222,0 +170754616242,222,0 +170754616290,222,0 +170754616338,223,0 +170754616387,223,0 +170754616434,224,0 +170754616484,224,0 +170754616533,217,0 +170754616581,219,0 +170754616631,219,0 +170754616680,219,0 +170754616730,220,0 +170754616778,220,0 +170754616826,221,0 +170754616876,223,0 +170754616924,221,0 +170754616973,223,0 +170754617021,223,0 +170754617071,223,0 +170754617120,224,0 +170754617170,225,0 +170754617219,224,0 +170754617267,223,0 +170754617317,222,0 +170754617365,220,0 +170754617413,220,0 +170754617462,219,0 +170754617510,222,0 +170754617560,223,0 +170754617608,223,0 +170754617656,222,0 +170754617705,223,0 +170754617753,223,0 +170754617801,223,0 +170754617851,223,0 +170754617899,223,0 +170754617948,223,0 +170754617996,223,0 +170754618044,224,0 +170754618092,222,0 +170754618140,222,0 +170754618190,221,0 +170754618238,222,0 +170754618287,222,0 +170754618335,223,0 +170754618385,223,0 +170754618433,223,0 +170754618480,223,0 +170754618528,224,0 +170754618576,224,0 +170754618624,223,0 +170754618674,223,0 +170754618722,223,0 +170754618770,223,0 +170754618818,223,0 +170754618865,222,0 +170754618913,220,0 +170754618961,221,0 +170754619009,222,0 +170754619057,222,0 +170754619105,223,0 +170754619153,223,0 +170754619202,222,0 +170754619252,223,0 +170754619301,223,0 +170754619351,222,0 +170754619401,224,0 +170754619450,223,0 +170754619500,224,0 +170754619548,223,0 +170754619596,222,0 +170754619643,223,0 +170754619693,220,0 +170754619741,221,0 +170754619789,221,0 +170754619839,223,0 +170754619888,221,0 +170754619936,221,0 +170754619986,222,0 +170754620035,223,0 +170754620085,223,0 +170754620134,222,0 +170754620182,222,0 +170754620230,221,0 +170754620278,223,0 +170754620327,222,0 +170754620375,222,0 +170754620425,222,0 +170754620475,222,0 +170754620523,222,0 +170754620570,222,0 +170754620620,222,0 +170754620668,222,0 +170754620716,222,0 +170754620765,223,0 +170754620813,223,0 +170754620861,223,0 +170754620909,224,0 +170754620959,223,0 +170754621007,224,0 +170754621055,223,0 +170754621104,223,0 +170754621154,223,0 +170754621202,222,0 +170754621250,222,0 +170754621299,221,0 +170754621349,221,0 +170754621398,222,0 +170754621446,221,0 +170754621496,223,0 +170754621545,223,0 +170754621593,223,0 +170754621641,221,0 +170754621689,223,0 +170754621737,225,0 +170754621787,223,0 +170754621835,224,0 +170754621884,223,0 +170754621932,223,0 +170754621980,223,0 +170754622030,222,0 +170754622078,217,0 +170754622126,216,0 +170754622175,218,0 +170754622225,219,0 +170754622273,220,0 +170754622322,220,0 +170754622370,220,0 +170754622420,222,0 +170754622468,222,0 +170754622517,223,0 +170754622565,222,0 +170754622615,224,0 +170754622662,223,0 +170754622710,223,0 +170754622758,224,0 +170754622808,224,0 +170754622857,216,0 +170754622907,215,0 +170754622955,216,0 +170754623004,216,0 +170754623052,217,0 +170754623100,218,0 +170754623149,220,0 +170754623197,221,0 +170754623247,222,0 +170754623295,222,0 +170754623343,222,0 +170754623390,224,0 +170754623438,223,0 +170754623486,223,0 +170754623534,223,0 +170754623582,223,0 +170754623632,222,0 +170754623679,215,0 +170754623727,216,0 +170754623775,217,0 +170754623823,217,0 +170754623871,218,0 +170754623919,219,0 +170754623967,219,0 +170754624016,221,0 +170754624064,221,0 +170754624114,222,0 +170754624162,222,0 +170754624210,223,0 +170754624258,223,0 +170754624305,222,0 +170754624353,222,0 +170754624403,222,0 +170754624452,217,0 +170754624502,217,0 +170754624550,219,0 +170754624598,219,0 +170754624645,219,0 +170754624695,219,0 +170754624743,220,0 +170754624792,222,0 +170754624840,223,0 +170754624888,222,0 +170754624936,223,0 +170754624984,224,0 +170754625032,221,0 +170754625080,222,0 +170754625129,223,0 +170754625177,223,0 +170754625225,218,0 +170754625273,217,0 +170754625321,218,0 +170754625369,219,0 +170754625416,219,0 +170754625464,219,0 +170754625514,221,0 +170754625562,221,0 +170754625610,222,0 +170754625657,222,0 +170754625705,222,0 +170754625753,224,0 +170754625803,224,0 +170754625851,223,0 +170754625900,225,0 +170754625948,223,0 +170754625996,222,0 +170754626044,217,0 +170754626092,218,0 +170754626141,218,0 +170754626189,219,0 +170754626239,220,0 +170754626288,220,0 +170754626336,221,0 +170754626384,222,0 +170754626432,224,0 +170754626480,223,0 +170754626530,222,0 +170754626578,223,0 +170754626626,223,0 +170754626675,222,0 +170754626723,222,0 +170754626771,222,0 +170754626819,217,0 +170754626867,218,0 +170754626915,218,0 +170754626963,219,0 +170754627013,220,0 +170754627062,221,0 +170754627110,218,0 +170754627158,221,0 +170754627206,223,0 +170754627256,222,0 +170754627305,224,0 +170754627353,223,0 +170754627403,223,0 +170754627451,224,0 +170754627499,223,0 +170754627547,221,0 +170754627595,218,0 +170754627642,218,0 +170754627692,219,0 +170754627740,219,0 +170754627789,220,0 +170754627837,224,0 +170754627887,221,0 +170754627935,221,0 +170754627983,224,0 +170754628031,223,0 +170754628079,224,0 +170754628128,224,0 +170754628178,222,0 +170754628227,224,0 +170754628277,224,0 +170754628326,223,0 +170754628374,219,0 +170754628422,219,0 +170754628470,220,0 +170754628520,221,0 +170754628569,220,0 +170754628617,222,0 +170754628667,222,0 +170754628715,222,0 +170754628764,222,0 +170754628812,223,0 +170754628862,223,0 +170754628910,223,0 +170754628959,224,0 +170754629007,223,0 +170754629057,223,0 +170754629106,223,0 +170754629154,222,0 +170754629202,221,0 +170754629252,220,0 +170754629300,221,0 +170754629350,222,0 +170754629399,220,0 +170754629447,223,0 +170754629495,222,0 +170754629543,222,0 +170754629591,227,0 +170754629640,223,0 +170754629688,223,0 +170754629738,223,0 +170754629786,224,0 +170754629834,224,0 +170754629883,223,0 +170754629933,222,0 +170754629981,221,0 +170754630030,222,0 +170754630080,222,0 +170754630128,222,0 +170754630176,223,0 +170754630224,222,0 +170754630273,223,0 +170754630323,223,0 +170754630371,223,0 +170754630420,224,0 +170754630468,223,0 +170754630516,222,0 +170754630564,223,0 +170754630612,223,0 +170754630660,222,0 +170754630710,223,0 +170754630759,221,0 +170754630809,221,0 +170754630857,223,0 +170754630905,223,0 +170754630954,224,0 +170754631002,224,0 +170754631050,221,0 +170754631098,222,0 +170754631146,223,0 +170754631194,223,0 +170754631244,224,0 +170754631292,223,0 +170754631341,222,0 +170754631391,224,0 +170754631439,222,0 +170754631486,222,0 +170754631534,219,0 +170754631584,220,0 +170754631633,221,0 +170754631683,221,0 +170754631733,220,0 +170754631781,221,0 +170754631828,222,0 +170754631876,222,0 +170754631924,223,0 +170754631972,223,0 +170754632020,223,0 +170754632070,223,0 +170754632119,222,0 +170754632169,224,0 +170754632217,223,0 +170754632266,220,0 +170754632316,222,0 +170754632365,218,0 +170754632413,219,0 +170754632461,220,0 +170754632511,220,0 +170754632560,220,0 +170754632610,222,0 +170754632658,222,0 +170754632706,222,0 +170754632755,222,0 +170754632803,224,0 +170754632853,223,0 +170754632901,223,0 +170754632949,222,0 +170754632997,224,0 +170754633046,223,0 +170754633094,222,0 +170754633144,218,0 +170754633194,219,0 +170754633242,220,0 +170754633289,221,0 +170754633337,221,0 +170754633385,222,0 +170754633435,222,0 +170754633483,223,0 +170754633531,224,0 +170754633580,225,0 +170754633628,224,0 +170754633676,223,0 +170754633724,222,0 +170754633774,222,0 +170754633823,223,0 +170754633873,222,0 +170754633922,218,0 +170754633970,219,0 +170754634020,219,0 +170754634068,220,0 +170754634118,220,0 +170754634167,220,0 +170754634217,222,0 +170754634266,222,0 +170754634314,223,0 +170754634364,222,0 +170754634412,224,0 +170754634461,223,0 +170754634511,222,0 +170754634560,223,0 +170754634610,222,0 +170754634659,222,0 +170754634709,215,0 +170754634757,218,0 +170754634806,218,0 +170754634854,220,0 +170754634902,220,0 +170754634952,222,0 +170754635000,221,0 +170754635049,222,0 +170754635097,223,0 +170754635145,224,0 +170754635193,223,0 +170754635243,224,0 +170754635292,224,0 +170754635340,223,0 +170754635388,221,0 +170754635436,223,0 +170754635486,217,0 +170754635535,217,0 +170754635585,218,0 +170754635633,220,0 +170754635681,220,0 +170754635729,220,0 +170754635778,220,0 +170754635826,220,0 +170754635876,223,0 +170754635925,226,0 +170754635975,224,0 +170754636024,223,0 +170754636074,224,0 +170754636123,226,0 +170754636173,223,0 +170754636221,222,0 +170754636269,217,0 +170754636318,218,0 +170754636368,217,0 +170754636416,218,0 +170754636464,219,0 +170754636512,222,0 +170754636560,220,0 +170754636609,222,0 +170754636659,221,0 +170754636707,221,0 +170754636756,224,0 +170754636804,224,0 +170754636852,224,0 +170754636900,224,0 +170754636948,222,0 +170754636998,223,0 +170754637047,219,0 +170754637097,217,0 +170754637146,217,0 +170754637196,219,0 +170754637244,219,0 +170754637292,220,0 +170754637340,220,0 +170754637388,221,0 +170754637437,221,0 +170754637487,222,0 +170754637536,223,0 +170754637586,223,0 +170754637634,223,0 +170754637682,224,0 +170754637730,223,0 +170754637778,223,0 +170754637826,222,0 +170754637873,218,0 +170754637921,219,0 +170754637969,219,0 +170754638019,220,0 +170754638068,220,0 +170754638116,222,0 +170754638166,221,0 +170754638214,222,0 +170754638263,223,0 +170754638311,223,0 +170754638361,223,0 +170754638409,225,0 +170754638457,223,0 +170754638506,223,0 +170754638554,223,0 +170754638602,222,0 +170754638650,219,0 +170754638698,218,0 +170754638748,220,0 +170754638797,220,0 +170754638845,222,0 +170754638895,220,0 +170754638943,222,0 +170754638992,222,0 +170754639040,223,0 +170754639088,225,0 +170754639138,223,0 +170754639186,223,0 +170754639234,221,0 +170754639282,223,0 +170754639330,222,0 +170754639378,222,0 +170754639426,219,0 +170754639475,219,0 +170754639523,219,0 +170754639571,220,0 +170754639619,220,0 +170754639667,222,0 +170754639716,222,0 +170754639766,222,0 +170754639814,224,0 +170754639863,223,0 +170754639911,223,0 +170754639959,223,0 +170754640009,223,0 +170754640057,223,0 +170754640105,223,0 +170754640153,222,0 +170754640201,221,0 +170754640249,217,0 +170754640297,218,0 +170754640346,218,0 +170754640394,220,0 +170754640442,220,0 +170754640490,221,0 +170754640538,222,0 +170754640588,222,0 +170754640636,222,0 +170754640683,222,0 +170754640731,223,0 +170754640779,222,0 +170754640829,223,0 +170754640878,223,0 +170754640926,223,0 +170754640976,222,0 +170754641025,218,0 +170754641074,219,0 +170754641122,220,0 +170754641171,219,0 +170754641219,221,0 +170754641269,220,0 +170754641317,221,0 +170754641366,221,0 +170754641416,222,0 +170754641465,222,0 +170754641513,223,0 +170754641561,224,0 +170754641611,224,0 +170754641659,224,0 +170754641706,223,0 +170754641754,222,0 +170754641804,220,0 +170754641853,221,0 +170754641901,221,0 +170754641949,221,0 +170754641999,221,0 +170754642047,222,0 +170754642097,222,0 +170754642144,222,0 +170754642192,224,0 +170754642242,225,0 +170754642290,225,0 +170754642339,223,0 +170754642387,223,0 +170754642435,223,0 +170754642485,222,0 +170754642533,224,0 +170754642581,222,0 +170754642630,222,0 +170754642678,222,0 +170754642728,220,0 +170754642776,223,0 +170754642824,223,0 +170754642872,224,0 +170754642920,223,0 +170754642968,223,0 +170754643017,221,0 +170754643065,224,0 +170754643113,224,0 +170754643163,224,0 +170754643212,223,0 +170754643262,222,0 +170754643311,222,0 +170754643361,221,0 +170754643409,221,0 +170754643458,220,0 +170754643508,221,0 +170754643556,222,0 +170754643604,222,0 +170754643652,223,0 +170754643701,222,0 +170754643749,223,0 +170754643799,224,0 +170754643848,224,0 +170754643898,220,0 +170754643947,223,0 +170754643995,223,0 +170754644043,223,0 +170754644091,221,0 +170754644141,222,0 +170754644189,215,0 +170754644238,217,0 +170754644286,218,0 +170754644336,218,0 +170754644384,219,0 +170754644432,221,0 +170754644480,221,0 +170754644529,221,0 +170754644579,222,0 +170754644627,222,0 +170754644675,223,0 +170754644723,223,0 +170754644771,223,0 +170754644820,223,0 +170754644868,222,0 +170754644918,222,0 +170754644967,218,0 +170754645015,219,0 +170754645063,219,0 +170754645111,220,0 +170754645159,221,0 +170754645207,221,0 +170754645257,221,0 +170754645306,221,0 +170754645356,223,0 +170754645404,223,0 +170754645453,223,0 +170754645501,223,0 +170754645549,222,0 +170754645597,223,0 +170754645645,223,0 +170754645693,228,0 +170754645743,220,0 +170754645792,222,0 +170754645840,220,0 +170754645888,221,0 +170754645936,222,0 +170754645984,222,0 +170754646032,223,0 +170754646079,223,0 +170754646127,223,0 +170754646175,223,0 +170754646224,225,0 +170754646273,224,0 +170754646321,223,0 +170754646371,224,0 +170754646420,222,0 +170754646468,221,0 +170754646516,218,0 +170754646564,218,0 +170754646614,219,0 +170754646663,219,0 +170754646711,220,0 +170754646759,221,0 +170754646809,221,0 +170754646858,221,0 +170754646908,221,0 +170754646956,223,0 +170754647005,222,0 +170754647053,223,0 +170754647101,223,0 +170754647149,224,0 +170754647199,223,0 +170754647248,222,0 +170754647296,222,0 +170754647344,217,0 +170754647392,218,0 +170754647440,218,0 +170754647489,219,0 +170754647537,219,0 +170754647587,220,0 +170754647637,221,0 +170754647685,222,0 +170754647734,222,0 +170754647782,224,0 +170754647830,223,0 +170754647880,223,0 +170754647928,223,0 +170754647975,223,0 +170754648025,223,0 +170754648073,222,0 +170754648121,216,0 +170754648170,217,0 +170754648220,218,0 +170754648267,219,0 +170754648315,219,0 +170754648363,222,0 +170754648411,222,0 +170754648459,221,0 +170754648507,225,0 +170754648555,222,0 +170754648604,224,0 +170754648652,223,0 +170754648700,221,0 +170754648748,222,0 +170754648796,223,0 +170754648845,222,0 +170754648893,218,0 +170754648941,217,0 +170754648991,218,0 +170754649039,216,0 +170754649088,218,0 +170754649136,219,0 +170754649184,221,0 +170754649232,219,0 +170754649280,221,0 +170754649328,222,0 +170754649377,223,0 +170754649427,223,0 +170754649476,226,0 +170754649526,223,0 +170754649576,223,0 +170754649625,223,0 +170754649673,216,0 +170754649723,216,0 +170754649771,217,0 +170754649818,218,0 +170754649868,218,0 +170754649916,218,0 +170754649966,219,0 +170754650014,219,0 +170754650061,220,0 +170754650111,221,0 +170754650161,222,0 +170754650210,223,0 +170754650258,224,0 +170754650306,224,0 +170754650356,223,0 +170754650404,224,0 +170754650453,224,0 +170754650501,224,0 +170754650549,223,0 +170754650597,224,0 +170754650645,223,0 +170754650694,223,0 +170754650744,223,0 +170754650794,224,0 +170754650842,222,0 +170754650890,218,0 +170754650939,219,0 +170754650987,219,0 +170754651037,221,0 +170754651084,221,0 +170754651134,221,0 +170754651182,221,0 +170754651230,222,0 +170754651279,223,0 +170754651329,223,0 +170754651377,223,0 +170754651425,223,0 +170754651472,223,0 +170754651522,223,0 +170754651571,224,0 +170754651619,222,0 +170754651667,218,0 +170754651715,218,0 +170754651763,219,0 +170754651813,219,0 +170754651861,220,0 +170754651910,222,0 +170754651960,222,0 +170754652008,222,0 +170754652057,222,0 +170754652105,223,0 +170754652155,224,0 +170754652205,224,0 +170754652254,223,0 +170754652302,223,0 +170754652350,223,0 +170754652398,222,0 +170754652447,218,0 +170754652495,218,0 +170754652545,218,0 +170754652593,220,0 +170754652643,221,0 +170754652691,219,0 +170754652740,221,0 +170754652790,222,0 +170754652839,224,0 +170754652887,223,0 +170754652937,224,0 +170754652986,224,0 +170754653034,223,0 +170754653084,223,0 +170754653132,222,0 +170754653180,222,0 +170754653228,219,0 +170754653277,218,0 +170754653326,220,0 +170754653374,219,0 +170754653422,221,0 +170754653470,221,0 +170754653518,222,0 +170754653568,221,0 +170754653617,224,0 +170754653665,223,0 +170754653713,223,0 +170754653761,223,0 +170754653811,223,0 +170754653859,222,0 +170754653908,223,0 +170754653958,222,0 +170754654007,217,0 +170754654055,220,0 +170754654105,219,0 +170754654154,219,0 +170754654204,220,0 +170754654252,221,0 +170754654301,222,0 +170754654351,223,0 +170754654400,222,0 +170754654450,224,0 +170754654499,224,0 +170754654549,223,0 +170754654599,223,0 +170754654648,222,0 +170754654698,222,0 +170754654747,223,0 +170754654795,219,0 +170754654843,219,0 +170754654893,219,0 +170754654942,220,0 +170754654992,222,0 +170754655040,221,0 +170754655088,229,0 +170754655136,223,0 +170754655183,224,0 +170754655231,223,0 +170754655281,223,0 +170754655330,223,0 +170754655378,223,0 +170754655428,223,0 +170754655475,223,0 +170754655525,222,0 +170754655573,223,0 +170754655622,219,0 +170754655672,219,0 +170754655720,220,0 +170754655769,221,0 +170754655817,219,0 +170754655866,222,0 +170754655914,224,0 +170754655962,223,0 +170754656010,225,0 +170754656060,223,0 +170754656109,224,0 +170754656159,222,0 +170754656208,222,0 +170754656258,221,0 +170754656308,223,0 +170754656356,222,0 +170754656403,219,0 +170754656451,219,0 +170754656501,219,0 +170754656549,220,0 +170754656597,220,0 +170754656646,221,0 +170754656694,222,0 +170754656742,222,0 +170754656792,224,0 +170754656841,223,0 +170754656891,223,0 +170754656939,223,0 +170754656988,223,0 +170754657038,223,0 +170754657086,223,0 +170754657135,221,0 +170754657185,219,0 +170754657234,218,0 +170754657282,220,0 +170754657330,220,0 +170754657380,220,0 +170754657429,221,0 +170754657479,222,0 +170754657527,222,0 +170754657575,223,0 +170754657624,223,0 +170754657674,223,0 +170754657722,222,0 +170754657772,222,0 +170754657821,227,0 +170754657871,223,0 +170754657920,222,0 +170754657970,221,0 +170754658018,221,0 +170754658067,221,0 +170754658115,222,0 +170754658165,223,0 +170754658213,223,0 +170754658261,224,0 +170754658310,223,0 +170754658358,223,0 +170754658406,224,0 +170754658456,223,0 +170754658503,225,0 +170754658551,223,0 +170754658601,222,0 +170754658651,222,0 +170754658700,222,0 +170754658748,221,0 +170754658796,222,0 +170754658844,221,0 +170754658894,222,0 +170754658942,223,0 +170754658990,223,0 +170754659038,222,0 +170754659087,223,0 +170754659137,223,0 +170754659185,223,0 +170754659233,223,0 +170754659282,223,0 +170754659330,224,0 +170754659380,223,0 +170754659428,222,0 +170754659475,222,0 +170754659523,218,0 +170754659571,218,0 +170754659621,218,0 +170754659669,220,0 +170754659718,221,0 +170754659766,220,0 +170754659816,221,0 +170754659864,222,0 +170754659912,223,0 +170754659961,223,0 +170754660009,223,0 +170754660057,224,0 +170754660107,224,0 +170754660155,223,0 +170754660203,223,0 +170754660252,222,0 +170754660300,222,0 +170754660348,218,0 +170754660397,219,0 +170754660445,219,0 +170754660495,220,0 +170754660543,220,0 +170754660591,222,0 +170754660639,222,0 +170754660688,221,0 +170754660736,222,0 +170754660784,224,0 +170754660832,223,0 +170754660881,223,0 +170754660929,225,0 +170754660979,223,0 +170754661028,223,0 +170754661078,223,0 +170754661126,222,0 +170754661175,216,0 +170754661223,216,0 +170754661273,217,0 +170754661322,218,0 +170754661370,219,0 +170754661418,220,0 +170754661466,220,0 +170754661514,220,0 +170754661562,221,0 +170754661610,222,0 +170754661658,223,0 +170754661707,223,0 +170754661755,224,0 +170754661805,225,0 +170754661854,224,0 +170754661904,225,0 +170754661952,224,0 +170754662001,223,0 +170754662049,222,0 +170754662099,218,0 +170754662148,218,0 +170754662198,218,0 +170754662247,219,0 +170754662295,219,0 +170754662345,220,0 +170754662393,220,0 +170754662441,221,0 +170754662490,221,0 +170754662538,222,0 +170754662588,223,0 +170754662636,224,0 +170754662685,223,0 +170754662733,223,0 +170754662783,223,0 +170754662832,223,0 +170754662880,223,0 +170754662928,223,0 +170754662976,217,0 +170754663024,217,0 +170754663074,218,0 +170754663121,218,0 +170754663169,219,0 +170754663219,220,0 +170754663267,220,0 +170754663316,222,0 +170754663366,222,0 +170754663414,221,0 +170754663462,222,0 +170754663510,223,0 +170754663559,223,0 +170754663609,223,0 +170754663657,224,0 +170754663705,223,0 +170754663753,225,0 +170754663802,223,0 +170754663852,218,0 +170754663901,217,0 +170754663951,217,0 +170754663999,219,0 +170754664047,220,0 +170754664096,220,0 +170754664144,219,0 +170754664192,220,0 +170754664240,220,0 +170754664290,221,0 +170754664338,222,0 +170754664385,222,0 +170754664433,222,0 +170754664481,223,0 +170754664531,224,0 +170754664579,224,0 +170754664626,223,0 +170754664676,223,0 +170754664725,222,0 +170754664775,218,0 +170754664824,217,0 +170754664874,217,0 +170754664923,218,0 +170754664973,220,0 +170754665022,220,0 +170754665070,220,0 +170754665118,221,0 +170754665166,222,0 +170754665214,223,0 +170754665264,222,0 +170754665313,223,0 +170754665361,223,0 +170754665409,224,0 +170754665459,224,0 +170754665508,223,0 +170754665556,223,0 +170754665604,222,0 +170754665652,219,0 +170754665702,217,0 +170754665751,218,0 +170754665801,218,0 +170754665849,220,0 +170754665898,220,0 +170754665948,221,0 +170754665997,221,0 +170754666047,221,0 +170754666095,222,0 +170754666144,222,0 +170754666192,224,0 +170754666240,223,0 +170754666290,226,0 +170754666339,226,0 +170754666387,224,0 +170754666437,224,0 +170754666485,225,0 +170754666533,222,0 +170754666582,218,0 +170754666632,218,0 +170754666680,219,0 +170754666729,219,0 +170754666777,220,0 +170754666825,220,0 +170754666875,221,0 +170754666924,222,0 +170754666974,221,0 +170754667022,222,0 +170754667070,221,0 +170754667119,223,0 +170754667167,224,0 +170754667216,223,0 +170754667264,224,0 +170754667312,222,0 +170754667360,223,0 +170754667408,222,0 +170754667456,219,0 +170754667504,218,0 +170754667552,219,0 +170754667601,220,0 +170754667649,220,0 +170754667697,221,0 +170754667747,222,0 +170754667795,222,0 +170754667843,223,0 +170754667891,222,0 +170754667939,223,0 +170754667988,223,0 +170754668038,221,0 +170754668087,225,0 +170754668135,224,0 +170754668183,222,0 +170754668231,222,0 +170754668279,223,0 +170754668328,222,0 +170754668376,220,0 +170754668426,220,0 +170754668474,220,0 +170754668523,222,0 +170754668571,222,0 +170754668621,222,0 +170754668671,222,0 +170754668720,223,0 +170754668768,223,0 +170754668816,224,0 +170754668866,223,0 +170754668913,224,0 +170754668961,224,0 +170754669009,223,0 +170754669059,223,0 +170754669107,224,0 +170754669155,223,0 +170754669203,222,0 +170754669252,221,0 +170754669300,220,0 +170754669350,221,0 +170754669398,222,0 +170754669446,222,0 +170754669493,223,0 +170754669541,223,0 +170754669591,222,0 +170754669640,223,0 +170754669690,222,0 +170754669738,223,0 +170754669787,224,0 +170754669837,222,0 +170754669886,223,0 +170754669936,222,0 +170754669984,223,0 +170754670034,223,0 +170754670082,219,0 +170754670130,218,0 +170754670177,217,0 +170754670225,217,0 +170754670275,219,0 +170754670323,219,0 +170754670372,220,0 +170754670420,220,0 +170754670468,221,0 +170754670518,221,0 +170754670567,221,0 +170754670617,222,0 +170754670666,223,0 +170754670714,223,0 +170754670762,223,0 +170754670810,222,0 +170754670858,223,0 +170754670906,222,0 +170754670956,223,0 +170754671004,221,0 +170754671053,216,0 +170754671101,216,0 +170754671149,217,0 +170754671197,217,0 +170754671245,217,0 +170754671295,218,0 +170754671343,220,0 +170754671391,220,0 +170754671439,220,0 +170754671487,221,0 +170754671536,221,0 +170754671584,222,0 +170754671634,224,0 +170754671683,223,0 +170754671733,224,0 +170754671781,224,0 +170754671830,223,0 +170754671880,222,0 +170754671928,216,0 +170754671976,216,0 +170754672025,216,0 +170754672073,217,0 +170754672121,218,0 +170754672169,219,0 +170754672217,221,0 +170754672266,219,0 +170754672314,220,0 +170754672362,220,0 +170754672411,222,0 +170754672461,221,0 +170754672509,222,0 +170754672558,223,0 +170754672606,223,0 +170754672654,222,0 +170754672702,222,0 +170754672750,223,0 +170754672798,222,0 +170754672847,215,0 +170754672897,215,0 +170754672946,215,0 +170754672994,216,0 +170754673042,217,0 +170754673090,218,0 +170754673139,219,0 +170754673187,220,0 +170754673237,219,0 +170754673285,221,0 +170754673333,221,0 +170754673381,222,0 +170754673428,222,0 +170754673476,221,0 +170754673524,225,0 +170754673572,223,0 +170754673622,222,0 +170754673670,223,0 +170754673719,224,0 +170754673769,216,0 +170754673818,215,0 +170754673868,216,0 +170754673917,217,0 +170754673967,217,0 +170754674015,218,0 +170754674064,218,0 +170754674114,219,0 +170754674162,220,0 +170754674210,221,0 +170754674258,221,0 +170754674306,222,0 +170754674355,222,0 +170754674403,222,0 +170754674451,223,0 +170754674499,222,0 +170754674547,223,0 +170754674596,223,0 +170754674644,222,0 +170754674692,217,0 +170754674740,215,0 +170754674788,216,0 +170754674836,219,0 +170754674883,218,0 +170754674931,218,0 +170754674979,218,0 +170754675027,219,0 +170754675075,220,0 +170754675123,220,0 +170754675171,221,0 +170754675220,221,0 +170754675270,222,0 +170754675319,222,0 +170754675369,223,0 +170754675417,222,0 +170754675465,223,0 +170754675513,222,0 +170754675561,222,0 +170754675610,221,0 +170754675658,217,0 +170754675706,218,0 +170754675755,218,0 +170754675803,219,0 +170754675851,219,0 +170754675901,219,0 +170754675949,223,0 +170754675996,221,0 +170754676044,221,0 +170754676092,221,0 +170754676142,222,0 +170754676190,222,0 +170754676238,223,0 +170754676286,221,0 +170754676335,222,0 +170754676383,222,0 +170754676432,222,0 +170754676480,222,0 +170754676530,222,0 +170754676578,219,0 +170754676626,219,0 +170754676674,219,0 +170754676722,220,0 +170754676771,220,0 +170754676821,220,0 +170754676869,221,0 +170754676916,221,0 +170754676964,222,0 +170754677012,223,0 +170754677062,223,0 +170754677110,223,0 +170754677158,222,0 +170754677206,223,0 +170754677254,223,0 +170754677303,224,0 +170754677351,223,0 +170754677401,223,0 +170754677450,221,0 +170754677500,218,0 +170754677549,219,0 +170754677597,220,0 +170754677645,220,0 +170754677695,221,0 +170754677744,220,0 +170754677792,221,0 +170754677840,221,0 +170754677890,221,0 +170754677938,222,0 +170754677986,223,0 +170754678035,224,0 +170754678083,223,0 +170754678131,224,0 +170754678181,223,0 +170754678228,223,0 +170754678278,227,0 +170754678326,223,0 +170754678374,222,0 +170754678423,222,0 +170754678473,223,0 +170754678521,219,0 +170754678569,218,0 +170754678617,219,0 +170754678666,219,0 +170754678716,221,0 +170754678765,222,0 +170754678815,222,0 +170754678865,222,0 +170754678914,222,0 +170754678964,223,0 +170754679013,223,0 +170754679063,223,0 +170754679111,224,0 +170754679160,224,0 +170754679208,223,0 +170754679256,223,0 +170754679306,223,0 +170754679355,222,0 +170754679405,217,0 +170754679453,218,0 +170754679501,219,0 +170754679549,219,0 +170754679598,220,0 +170754679648,220,0 +170754679697,222,0 +170754679745,222,0 +170754679795,224,0 +170754679844,223,0 +170754679892,223,0 +170754679940,224,0 +170754679990,223,0 +170754680038,224,0 +170754680086,224,0 +170754680134,225,0 +170754680183,223,0 +170754680231,223,0 +170754680279,222,0 +170754680329,217,0 +170754680378,217,0 +170754680428,218,0 +170754680477,218,0 +170754680527,220,0 +170754680576,222,0 +170754680626,221,0 +170754680675,222,0 +170754680725,222,0 +170754680774,222,0 +170754680824,222,0 +170754680874,224,0 +170754680923,223,0 +170754680971,225,0 +170754681021,224,0 +170754681070,223,0 +170754681118,223,0 +170754681168,223,0 +170754681217,223,0 +170754681265,216,0 +170754681313,216,0 +170754681363,217,0 +170754681411,219,0 +170754681459,218,0 +170754681508,219,0 +170754681558,219,0 +170754681607,222,0 +170754681657,221,0 +170754681705,221,0 +170754681754,223,0 +170754681804,222,0 +170754681853,222,0 +170754681903,223,0 +170754681951,223,0 +170754682000,223,0 +170754682050,223,0 +170754682098,223,0 +170754682146,223,0 +170754682195,216,0 +170754682243,216,0 +170754682293,216,0 +170754682341,217,0 +170754682389,218,0 +170754682437,219,0 +170754682485,220,0 +170754682534,219,0 +170754682582,221,0 +170754682630,221,0 +170754682678,221,0 +170754682726,222,0 +170754682774,222,0 +170754682822,224,0 +170754682871,224,0 +170754682920,223,0 +170754682968,223,0 +170754683016,222,0 +170754683066,222,0 +170754683114,216,0 +170754683161,215,0 +170754683209,216,0 +170754683257,217,0 +170754683305,217,0 +170754683353,217,0 +170754683401,218,0 +170754683449,219,0 +170754683497,219,0 +170754683545,220,0 +170754683593,221,0 +170754683640,222,0 +170754683688,222,0 +170754683736,222,0 +170754683784,223,0 +170754683832,223,0 +170754683880,223,0 +170754683928,223,0 +170754683976,223,0 +170754684024,222,0 +170754684073,215,0 +170754684123,214,0 +170754684171,216,0 +170754684220,216,0 +170754684270,217,0 +170754684319,217,0 +170754684367,218,0 +170754684415,219,0 +170754684465,219,0 +170754684513,219,0 +170754684562,221,0 +170754684610,220,0 +170754684658,222,0 +170754684706,221,0 +170754684754,224,0 +170754684802,222,0 +170754684850,224,0 +170754684897,225,0 +170754684945,222,0 +170754684995,216,0 +170754685043,215,0 +170754685092,216,0 +170754685140,216,0 +170754685188,217,0 +170754685236,217,0 +170754685284,218,0 +170754685333,218,0 +170754685383,219,0 +170754685432,219,0 +170754685480,219,0 +170754685528,221,0 +170754685578,221,0 +170754685626,221,0 +170754685673,223,0 +170754685723,222,0 +170754685771,222,0 +170754685819,223,0 +170754685868,223,0 +170754685916,222,0 +170754685964,215,0 +170754686012,215,0 +170754686060,216,0 +170754686108,217,0 +170754686157,216,0 +170754686205,217,0 +170754686253,217,0 +170754686301,219,0 +170754686350,219,0 +170754686398,220,0 +170754686446,220,0 +170754686494,221,0 +170754686544,222,0 +170754686592,221,0 +170754686640,226,0 +170754686689,218,0 +170754686737,223,0 +170754686787,223,0 +170754686836,222,0 +170754686886,215,0 +170754686935,214,0 +170754686985,215,0 +170754687035,216,0 +170754687083,216,0 +170754687132,218,0 +170754687182,218,0 +170754687231,218,0 +170754687281,219,0 +170754687329,219,0 +170754687378,220,0 +170754687426,222,0 +170754687474,223,0 +170754687524,222,0 +170754687573,223,0 +170754687623,221,0 +170754687672,223,0 +170754687722,223,0 +170754687771,222,0 +170754687819,215,0 +170754687867,215,0 +170754687917,215,0 +170754687965,216,0 +170754688013,217,0 +170754688062,217,0 +170754688112,217,0 +170754688160,218,0 +170754688208,218,0 +170754688256,220,0 +170754688305,220,0 +170754688353,222,0 +170754688403,222,0 +170754688451,222,0 +170754688500,223,0 +170754688548,222,0 +170754688596,222,0 +170754688644,223,0 +170754688694,222,0 +170754688743,216,0 +170754688791,214,0 +170754688839,215,0 +170754688889,215,0 +170754688938,216,0 +170754688986,217,0 +170754689034,218,0 +170754689082,218,0 +170754689132,218,0 +170754689180,219,0 +170754689228,219,0 +170754689277,221,0 +170754689325,222,0 +170754689373,222,0 +170754689423,222,0 +170754689472,222,0 +170754689520,222,0 +170754689570,223,0 +170754689619,223,0 +170754689667,218,0 +170754689715,214,0 +170754689763,214,0 +170754689811,215,0 +170754689861,216,0 +170754689909,216,0 +170754689958,216,0 +170754690006,218,0 +170754690055,220,0 +170754690103,221,0 +170754690153,220,0 +170754690203,221,0 +170754690252,221,0 +170754690300,222,0 +170754690349,221,0 +170754690397,222,0 +170754690445,223,0 +170754690495,223,0 +170754690543,222,0 +170754690592,222,0 +170754690640,215,0 +170754690690,215,0 +170754690738,216,0 +170754690787,216,0 +170754690835,218,0 +170754690885,218,0 +170754690934,219,0 +170754690984,218,0 +170754691032,220,0 +170754691080,220,0 +170754691128,222,0 +170754691177,222,0 +170754691227,222,0 +170754691277,223,0 +170754691324,223,0 +170754691372,222,0 +170754691420,223,0 +170754691470,223,0 +170754691518,222,0 +170754691567,214,0 +170754691617,216,0 +170754691666,217,0 +170754691716,218,0 +170754691765,218,0 +170754691813,218,0 +170754691863,219,0 +170754691913,220,0 +170754691960,220,0 +170754692010,220,0 +170754692058,221,0 +170754692106,221,0 +170754692155,222,0 +170754692203,221,0 +170754692251,222,0 +170754692301,222,0 +170754692349,223,0 +170754692398,223,0 +170754692446,222,0 +170754692495,216,0 +170754692543,216,0 +170754692591,217,0 +170754692639,217,0 +170754692687,219,0 +170754692735,219,0 +170754692783,220,0 +170754692831,220,0 +170754692878,220,0 +170754692926,222,0 +170754692974,222,0 +170754693022,222,0 +170754693070,222,0 +170754693118,223,0 +170754693167,223,0 +170754693215,222,0 +170754693263,223,0 +170754693313,222,0 +170754693361,222,0 +170754693409,219,0 +170754693458,215,0 +170754693508,216,0 +170754693557,216,0 +170754693607,217,0 +170754693656,218,0 +170754693706,219,0 +170754693754,219,0 +170754693802,221,0 +170754693851,220,0 +170754693899,225,0 +170754693947,221,0 +170754693995,223,0 +170754694044,223,0 +170754694092,222,0 +170754694142,223,0 +170754694190,223,0 +170754694239,223,0 +170754694287,222,0 +170754694337,221,0 +170754694386,215,0 +170754694436,216,0 +170754694485,216,0 +170754694533,217,0 +170754694581,217,0 +170754694631,218,0 +170754694679,219,0 +170754694727,219,0 +170754694774,220,0 +170754694822,220,0 +170754694870,222,0 +170754694918,221,0 +170754694966,222,0 +170754695015,222,0 +170754695063,223,0 +170754695113,223,0 +170754695161,223,0 +170754695209,222,0 +170754695257,222,0 +170754695305,215,0 +170754695353,214,0 +170754695400,215,0 +170754695448,215,0 +170754695496,217,0 +170754695544,217,0 +170754695592,217,0 +170754695640,218,0 +170754695689,219,0 +170754695737,220,0 +170754695785,220,0 +170754695833,221,0 +170754695881,222,0 +170754695929,222,0 +170754695977,222,0 +170754696025,222,0 +170754696073,223,0 +170754696121,223,0 +170754696170,223,0 +170754696218,215,0 +170754696266,214,0 +170754696314,214,0 +170754696362,215,0 +170754696410,215,0 +170754696458,216,0 +170754696505,217,0 +170754696553,218,0 +170754696603,218,0 +170754696651,220,0 +170754696700,220,0 +170754696748,221,0 +170754696796,220,0 +170754696845,222,0 +170754696895,222,0 +170754696943,223,0 +170754696990,221,0 +170754697038,222,0 +170754697086,222,0 +170754697134,222,0 +170754697184,215,0 +170754697233,215,0 +170754697281,215,0 +170754697329,216,0 +170754697377,217,0 +170754697425,217,0 +170754697473,220,0 +170754697522,218,0 +170754697570,220,0 +170754697618,221,0 +170754697668,220,0 +170754697715,221,0 +170754697763,222,0 +170754697811,222,0 +170754697859,221,0 +170754697907,223,0 +170754697955,225,0 +170754698003,223,0 +170754698051,222,0 +170754698101,216,0 +170754698150,215,0 +170754698200,216,0 +170754698248,217,0 +170754698297,218,0 +170754698345,218,0 +170754698393,218,0 +170754698441,220,0 +170754698489,220,0 +170754698537,221,0 +170754698587,219,0 +170754698636,221,0 +170754698684,223,0 +170754698732,224,0 +170754698780,223,0 +170754698830,223,0 +170754698877,224,0 +170754698927,223,0 +170754698976,221,0 +170754699026,216,0 +170754699076,215,0 +170754699125,216,0 +170754699173,217,0 +170754699221,218,0 +170754699269,218,0 +170754699318,219,0 +170754699368,220,0 +170754699418,223,0 +170754699467,221,0 +170754699515,221,0 +170754699564,221,0 +170754699614,221,0 +170754699664,223,0 +170754699713,223,0 +170754699763,222,0 +170754699811,223,0 +170754699860,222,0 +170754699908,222,0 +170754699957,221,0 +170754700007,215,0 +170754700055,214,0 +170754700103,215,0 +170754700151,216,0 +170754700200,217,0 +170754700250,217,0 +170754700299,217,0 +170754700347,218,0 +170754700395,219,0 +170754700445,219,0 +170754700494,220,0 +170754700544,222,0 +170754700594,222,0 +170754700643,223,0 +170754700691,227,0 +170754700739,223,0 +170754700789,222,0 +170754700837,222,0 +170754700886,222,0 +170754700934,215,0 +170754700984,214,0 +170754701032,215,0 +170754701080,215,0 +170754701129,216,0 +170754701179,216,0 +170754701227,217,0 +170754701276,217,0 +170754701326,218,0 +170754701375,218,0 +170754701423,220,0 +170754701471,221,0 +170754701519,220,0 +170754701567,221,0 +170754701616,224,0 +170754701664,223,0 +170754701712,222,0 +170754701760,223,0 +170754701808,223,0 +170754701856,215,0 +170754701904,215,0 +170754701952,215,0 +170754702002,216,0 +170754702051,216,0 +170754702101,217,0 +170754702150,217,0 +170754702200,220,0 +170754702249,219,0 +170754702297,220,0 +170754702345,221,0 +170754702395,221,0 +170754702444,223,0 +170754702492,223,0 +170754702540,223,0 +170754702588,224,0 +170754702636,224,0 +170754702686,222,0 +170754702733,222,0 +170754702783,216,0 +170754702831,214,0 +170754702879,214,0 +170754702928,215,0 +170754702978,215,0 +170754703027,216,0 +170754703075,216,0 +170754703125,217,0 +170754703174,218,0 +170754703222,219,0 +170754703272,219,0 +170754703321,220,0 +170754703371,221,0 +170754703420,221,0 +170754703469,222,0 +170754703517,221,0 +170754703565,220,0 +170754703613,220,0 +170754703661,221,0 +170754703709,219,0 +170754703757,214,0 +170754703805,215,0 +170754703853,214,0 +170754703901,215,0 +170754703951,215,0 +170754704000,214,0 +170754704048,215,0 +170754704096,216,0 +170754704144,217,0 +170754704192,217,0 +170754704240,220,0 +170754704288,220,0 +170754704336,220,0 +170754704385,222,0 +170754704433,222,0 +170754704483,221,0 +170754704531,222,0 +170754704581,222,0 +170754704630,222,0 +170754704678,214,0 +170754704726,214,0 +170754704776,214,0 +170754704824,215,0 +170754704871,215,0 +170754704919,215,0 +170754704967,216,0 +170754705017,217,0 +170754705065,218,0 +170754705114,218,0 +170754705163,219,0 +170754705211,220,0 +170754705259,220,0 +170754705309,220,0 +170754705357,220,0 +170754705404,222,0 +170754705452,222,0 +170754705502,222,0 +170754705550,223,0 +170754705598,216,0 +170754705647,214,0 +170754705695,215,0 +170754705743,215,0 +170754705791,215,0 +170754705839,215,0 +170754705888,216,0 +170754705936,216,0 +170754705984,217,0 +170754706034,218,0 +170754706082,219,0 +170754706130,220,0 +170754706179,220,0 +170754706229,220,0 +170754706277,221,0 +170754706325,218,0 +170754706374,223,0 +170754706423,222,0 +170754706473,222,0 +170754706523,216,0 +170754706572,214,0 +170754706620,215,0 +170754706668,215,0 +170754706717,215,0 +170754706767,217,0 +170754706817,218,0 +170754706866,218,0 +170754706916,219,0 +170754706964,220,0 +170754707013,219,0 +170754707063,220,0 +170754707112,221,0 +170754707160,221,0 +170754707208,224,0 +170754707256,222,0 +170754707305,222,0 +170754707353,223,0 +170754707403,223,0 +170754707451,220,0 +170754707500,214,0 +170754707550,215,0 +170754707600,215,0 +170754707648,216,0 +170754707697,220,0 +170754707747,216,0 +170754707795,217,0 +170754707843,217,0 +170754707891,217,0 +170754707940,219,0 +170754707988,221,0 +170754708038,221,0 +170754708087,221,0 +170754708137,223,0 +170754708186,223,0 +170754708236,224,0 +170754708284,223,0 +170754708333,222,0 +170754708381,222,0 +170754708429,214,0 +170754708477,215,0 +170754708527,215,0 +170754708574,216,0 +170754708622,217,0 +170754708670,217,0 +170754708718,218,0 +170754708766,218,0 +170754708814,219,0 +170754708862,220,0 +170754708911,221,0 +170754708961,222,0 +170754709009,222,0 +170754709058,223,0 +170754709106,222,0 +170754709156,223,0 +170754709204,222,0 +170754709252,223,0 +170754709300,222,0 +170754709349,215,0 +170754709399,214,0 +170754709448,214,0 +170754709498,215,0 +170754709547,216,0 +170754709597,216,0 +170754709645,217,0 +170754709694,218,0 +170754709742,219,0 +170754709792,219,0 +170754709840,220,0 +170754709889,220,0 +170754709937,222,0 +170754709987,223,0 +170754710035,223,0 +170754710085,224,0 +170754710134,223,0 +170754710182,222,0 +170754710232,223,0 +170754710280,215,0 +170754710327,215,0 +170754710375,214,0 +170754710425,215,0 +170754710473,216,0 +170754710522,217,0 +170754710570,218,0 +170754710620,218,0 +170754710668,218,0 +170754710717,219,0 +170754710767,220,0 +170754710815,221,0 +170754710864,222,0 +170754710914,222,0 +170754710964,223,0 +170754711013,223,0 +170754711063,223,0 +170754711111,223,0 +170754711158,223,0 +170754711206,220,0 +170754711256,214,0 +170754711306,215,0 +170754711355,215,0 +170754711403,216,0 +170754711453,216,0 +170754711501,217,0 +170754711550,218,0 +170754711600,218,0 +170754711649,219,0 +170754711699,220,0 +170754711748,220,0 +170754711798,222,0 +170754711847,223,0 +170754711897,222,0 +170754711947,223,0 +170754711995,222,0 +170754712044,222,0 +170754712094,223,0 +170754712143,216,0 +170754712191,215,0 +170754712241,215,0 +170754712289,216,0 +170754712338,216,0 +170754712388,218,0 +170754712437,216,0 +170754712485,218,0 +170754712535,220,0 +170754712583,220,0 +170754712632,220,0 +170754712680,221,0 +170754712730,220,0 +170754712779,222,0 +170754712829,223,0 +170754712878,222,0 +170754712928,223,0 +170754712977,223,0 +170754713025,223,0 +170754713075,217,0 +170754713124,215,0 +170754713174,215,0 +170754713224,215,0 +170754713273,215,0 +170754713323,216,0 +170754713372,217,0 +170754713422,218,0 +170754713470,218,0 +170754713518,219,0 +170754713567,219,0 +170754713617,220,0 +170754713666,222,0 +170754713716,222,0 +170754713764,223,0 +170754713812,223,0 +170754713860,222,0 +170754713909,222,0 +170754713959,223,0 +170754714008,222,0 +170754714056,215,0 +170754714106,215,0 +170754714155,215,0 +170754714205,215,0 +170754714253,216,0 +170754714302,217,0 +170754714350,217,0 +170754714400,218,0 +170754714450,218,0 +170754714499,219,0 +170754714547,219,0 +170754714595,219,0 +170754714645,221,0 +170754714693,221,0 +170754714742,222,0 +170754714792,222,0 +170754714840,221,0 +170754714889,222,0 +170754714939,223,0 +170754714988,215,0 +170754715038,215,0 +170754715086,214,0 +170754715134,215,0 +170754715183,216,0 +170754715231,216,0 +170754715281,217,0 +170754715330,218,0 +170754715380,218,0 +170754715428,219,0 +170754715476,220,0 +170754715524,221,0 +170754715572,221,0 +170754715621,221,0 +170754715669,222,0 +170754715717,222,0 +170754715765,224,0 +170754715815,223,0 +170754715863,222,0 +170754715911,215,0 +170754715959,215,0 +170754716008,216,0 +170754716056,216,0 +170754716104,217,0 +170754716152,218,0 +170754716200,218,0 +170754716249,218,0 +170754716297,219,0 +170754716345,219,0 +170754716393,220,0 +170754716441,218,0 +170754716489,221,0 +170754716538,221,0 +170754716586,221,0 +170754716634,222,0 +170754716682,223,0 +170754716731,223,0 +170754716781,222,0 +170754716828,219,0 +170754716876,215,0 +170754716926,216,0 +170754716974,216,0 +170754717022,217,0 +170754717070,218,0 +170754717117,219,0 +170754717165,220,0 +170754717215,220,0 +170754717264,221,0 +170754717314,222,0 +170754717362,223,0 +170754717410,223,0 +170754717459,222,0 +170754717507,223,0 +170754717555,223,0 +170754717603,223,0 +170754717653,224,0 +170754717701,223,0 +170754717749,222,0 +170754717797,215,0 +170754717846,215,0 +170754717896,216,0 +170754717944,216,0 +170754717991,217,0 +170754718039,217,0 +170754718087,218,0 +170754718137,219,0 +170754718185,219,0 +170754718234,219,0 +170754718282,220,0 +170754718330,221,0 +170754718380,222,0 +170754718428,222,0 +170754718476,222,0 +170754718524,222,0 +170754718572,222,0 +170754718620,222,0 +170754718668,222,0 +170754718716,215,0 +170754718765,214,0 +170754718813,214,0 +170754718863,214,0 +170754718910,215,0 +170754718958,216,0 +170754719008,216,0 +170754719058,217,0 +170754719107,218,0 +170754719157,218,0 +170754719206,219,0 +170754719256,220,0 +170754719305,221,0 +170754719355,221,0 +170754719404,221,0 +170754719454,222,0 +170754719504,222,0 +170754719551,223,0 +170754719601,222,0 +170754719649,216,0 +170754719699,215,0 +170754719748,215,0 +170754719798,216,0 +170754719847,218,0 +170754719895,217,0 +170754719945,218,0 +170754719994,218,0 +170754720042,218,0 +170754720090,220,0 +170754720140,221,0 +170754720189,221,0 +170754720237,222,0 +170754720287,222,0 +170754720336,223,0 +170754720384,222,0 +170754720434,223,0 +170754720482,223,0 +170754720530,223,0 +170754720579,217,0 +170754720629,216,0 +170754720678,217,0 +170754720728,218,0 +170754720778,218,0 +170754720826,219,0 +170754720873,219,0 +170754720921,220,0 +170754720971,220,0 +170754721020,221,0 +170754721070,221,0 +170754721118,222,0 +170754721166,222,0 +170754721214,223,0 +170754721263,222,0 +170754721313,222,0 +170754721362,222,0 +170754721410,222,0 +170754721460,222,0 +170754721510,216,0 +170754721559,217,0 +170754721609,217,0 +170754721657,218,0 +170754721704,220,0 +170754721754,220,0 +170754721802,220,0 +170754721850,221,0 +170754721898,221,0 +170754721946,223,0 +170754721994,222,0 +170754722043,220,0 +170754722091,223,0 +170754722139,225,0 +170754722187,224,0 +170754722235,223,0 +170754722283,224,0 +170754722330,223,0 +170754722378,223,0 +170754722426,222,0 +170754722474,216,0 +170754722522,215,0 +170754722570,216,0 +170754722618,217,0 +170754722666,217,0 +170754722714,217,0 +170754722762,218,0 +170754722811,218,0 +170754722861,219,0 +170754722910,220,0 +170754722960,221,0 +170754723008,221,0 +170754723056,222,0 +170754723104,223,0 +170754723153,223,0 +170754723203,223,0 +170754723252,223,0 +170754723302,222,0 +170754723351,222,0 +170754723401,216,0 +170754723451,215,0 +170754723500,215,0 +170754723550,215,0 +170754723598,217,0 +170754723646,216,0 +170754723695,218,0 +170754723743,218,0 +170754723793,219,0 +170754723841,220,0 +170754723890,220,0 +170754723938,220,0 +170754723988,221,0 +170754724037,222,0 +170754724087,223,0 +170754724136,222,0 +170754724186,224,0 +170754724234,222,0 +170754724283,222,0 +170754724333,216,0 +170754724382,214,0 +170754724430,215,0 +170754724480,217,0 +170754724528,216,0 +170754724577,217,0 +170754724625,217,0 +170754724673,217,0 +170754724721,219,0 +170754724771,220,0 +170754724820,220,0 +170754724870,220,0 +170754724919,222,0 +170754724969,223,0 +170754725018,225,0 +170754725066,223,0 +170754725114,225,0 +170754725164,223,0 +170754725213,222,0 +170754725261,216,0 +170754725311,215,0 +170754725359,215,0 +170754725409,216,0 +170754725458,217,0 +170754725508,217,0 +170754725557,219,0 +170754725605,218,0 +170754725653,219,0 +170754725702,217,0 +170754725750,221,0 +170754725800,221,0 +170754725850,223,0 +170754725897,223,0 +170754725945,222,0 +170754725993,224,0 +170754726041,224,0 +170754726089,223,0 +170754726139,223,0 +170754726188,216,0 +170754726238,214,0 +170754726288,215,0 +170754726336,216,0 +170754726385,216,0 +170754726435,217,0 +170754726482,218,0 +170754726530,218,0 +170754726580,219,0 +170754726628,220,0 +170754726677,220,0 +170754726725,222,0 +170754726775,222,0 +170754726824,222,0 +170754726874,223,0 +170754726922,223,0 +170754726970,223,0 +170754727018,223,0 +170754727067,222,0 +170754727117,222,0 +170754727165,214,0 +170754727213,213,0 +170754727262,215,0 +170754727312,216,0 +170754727361,216,0 +170754727409,217,0 +170754727459,217,0 +170754727509,218,0 +170754727556,219,0 +170754727605,222,0 +170754727654,221,0 +170754727704,222,0 +170754727753,222,0 +170754727801,222,0 +170754727851,222,0 +170754727900,223,0 +170754727948,223,0 +170754727996,224,0 +170754728044,222,0 +170754728092,215,0 +170754728140,215,0 +170754728189,215,0 +170754728237,216,0 +170754728287,217,0 +170754728336,217,0 +170754728384,217,0 +170754728432,217,0 +170754728481,220,0 +170754728531,220,0 +170754728580,220,0 +170754728630,221,0 +170754728679,222,0 +170754728727,222,0 +170754728775,223,0 +170754728823,222,0 +170754728871,223,0 +170754728919,223,0 +170754728966,222,0 +170754729014,215,0 +170754729062,214,0 +170754729110,214,0 +170754729158,215,0 +170754729206,215,0 +170754729254,217,0 +170754729304,217,0 +170754729352,217,0 +170754729400,218,0 +170754729447,218,0 +170754729495,221,0 +170754729545,220,0 +170754729593,222,0 +170754729641,223,0 +170754729690,222,0 +170754729738,224,0 +170754729788,223,0 +170754729836,222,0 +170754729885,222,0 +170754729935,216,0 +170754729985,214,0 +170754730032,215,0 +170754730082,215,0 +170754730130,215,0 +170754730179,215,0 +170754730227,216,0 +170754730275,216,0 +170754730325,217,0 +170754730375,219,0 +170754730424,219,0 +170754730472,222,0 +170754730520,219,0 +170754730570,221,0 +170754730619,221,0 +170754730667,221,0 +170754730715,223,0 +170754730763,222,0 +170754730811,222,0 +170754730859,222,0 +170754730907,215,0 +170754730955,214,0 +170754731003,214,0 +170754731052,214,0 +170754731100,214,0 +170754731150,215,0 +170754731199,215,0 +170754731249,215,0 +170754731296,215,0 +170754731344,216,0 +170754731392,218,0 +170754731440,219,0 +170754731490,220,0 +170754731540,219,0 +170754731589,220,0 +170754731639,220,0 +170754731688,220,0 +170754731736,222,0 +170754731784,223,0 +170754731832,215,0 +170754731880,214,0 +170754731930,214,0 +170754731978,214,0 +170754732027,215,0 +170754732077,215,0 +170754732126,215,0 +170754732174,217,0 +170754732222,218,0 +170754732270,218,0 +170754732318,220,0 +170754732365,219,0 +170754732413,220,0 +170754732461,222,0 +170754732509,223,0 +170754732557,224,0 +170754732605,222,0 +170754732653,223,0 +170754732702,222,0 +170754732750,216,0 +170754732798,214,0 +170754732846,214,0 +170754732894,215,0 +170754732942,215,0 +170754732991,215,0 +170754733039,215,0 +170754733087,218,0 +170754733135,217,0 +170754733183,217,0 +170754733231,219,0 +170754733279,219,0 +170754733327,220,0 +170754733376,220,0 +170754733426,221,0 +170754733474,222,0 +170754733523,222,0 +170754733573,222,0 +170754733621,223,0 +170754733669,222,0 +170754733718,215,0 +170754733768,215,0 +170754733817,215,0 +170754733867,215,0 +170754733915,215,0 +170754733964,216,0 +170754734014,217,0 +170754734063,218,0 +170754734113,218,0 +170754734163,219,0 +170754734212,220,0 +170754734260,221,0 +170754734308,223,0 +170754734357,221,0 +170754734405,221,0 +170754734453,223,0 +170754734503,224,0 +170754734551,223,0 +170754734599,222,0 +170754734648,215,0 +170754734696,215,0 +170754734744,214,0 +170754734792,215,0 +170754734840,216,0 +170754734888,217,0 +170754734935,217,0 +170754734983,217,0 +170754735031,218,0 +170754735081,219,0 +170754735130,220,0 +170754735178,221,0 +170754735226,222,0 +170754735274,221,0 +170754735322,222,0 +170754735370,222,0 +170754735419,222,0 +170754735467,222,0 +170754735515,222,0 +170754735563,215,0 +170754735611,214,0 +170754735658,214,0 +170754735706,215,0 +170754735754,216,0 +170754735802,216,0 +170754735850,216,0 +170754735898,216,0 +170754735946,218,0 +170754735994,219,0 +170754736042,219,0 +170754736090,220,0 +170754736138,221,0 +170754736187,221,0 +170754736237,221,0 +170754736285,222,0 +170754736333,222,0 +170754736381,222,0 +170754736428,222,0 +170754736476,221,0 +170754736524,214,0 +170754736572,214,0 +170754736622,214,0 +170754736669,215,0 +170754736717,215,0 +170754736765,216,0 +170754736813,216,0 +170754736861,217,0 +170754736910,218,0 +170754736960,218,0 +170754737008,219,0 +170754737057,222,0 +170754737107,220,0 +170754737155,220,0 +170754737203,222,0 +170754737251,222,0 +170754737300,222,0 +170754737350,222,0 +170754737399,222,0 +170754737449,215,0 +170754737497,214,0 +170754737544,215,0 +170754737592,216,0 +170754737640,216,0 +170754737688,216,0 +170754737736,217,0 +170754737784,217,0 +170754737832,217,0 +170754737880,218,0 +170754737927,219,0 +170754737977,220,0 +170754738025,220,0 +170754738074,222,0 +170754738122,222,0 +170754738172,221,0 +170754738220,222,0 +170754738269,222,0 +170754738317,222,0 +170754738365,216,0 +170754738413,215,0 +170754738463,216,0 +170754738510,216,0 +170754738558,216,0 +170754738606,216,0 +170754738656,217,0 +170754738704,218,0 +170754738752,218,0 +170754738800,219,0 +170754738849,220,0 +170754738897,221,0 +170754738945,222,0 +170754738994,223,0 +170754739042,222,0 +170754739092,224,0 +170754739140,222,0 +170754739188,222,0 +170754739237,223,0 +170754739287,220,0 +170754739336,215,0 +170754739386,216,0 +170754739434,217,0 +170754739482,217,0 +170754739530,218,0 +170754739579,217,0 +170754739629,219,0 +170754739678,220,0 +170754739728,220,0 +170754739778,221,0 +170754739827,222,0 +170754739875,222,0 +170754739923,223,0 +170754739971,223,0 +170754740019,223,0 +170754740068,223,0 +170754740116,223,0 +170754740164,223,0 +170754740212,222,0 +170754740261,216,0 +170754740311,216,0 +170754740358,217,0 +170754740406,218,0 +170754740456,218,0 +170754740504,218,0 +170754740552,219,0 +170754740599,220,0 +170754740649,222,0 +170754740699,221,0 +170754740747,222,0 +170754740794,223,0 +170754740842,222,0 +170754740890,223,0 +170754740940,222,0 +170754740987,223,0 +170754741035,223,0 +170754741083,223,0 +170754741131,226,0 +170754741179,216,0 +170754741229,216,0 +170754741278,217,0 +170754741326,217,0 +170754741374,218,0 +170754741422,219,0 +170754741470,219,0 +170754741518,220,0 +170754741566,221,0 +170754741614,220,0 +170754741662,222,0 +170754741710,222,0 +170754741758,222,0 +170754741806,221,0 +170754741855,221,0 +170754741905,223,0 +170754741952,222,0 +170754742002,222,0 +170754742050,222,0 +170754742098,215,0 +170754742146,214,0 +170754742194,215,0 +170754742243,216,0 +170754742292,217,0 +170754742340,218,0 +170754742388,218,0 +170754742438,220,0 +170754742487,220,0 +170754742535,220,0 +170754742584,221,0 +170754742632,221,0 +170754742680,221,0 +170754742728,223,0 +170754742776,222,0 +170754742824,222,0 +170754742872,222,0 +170754742920,222,0 +170754742967,223,0 +170754743015,221,0 +170754743063,215,0 +170754743111,214,0 +170754743160,215,0 +170754743208,215,0 +170754743256,217,0 +170754743304,218,0 +170754743352,218,0 +170754743400,219,0 +170754743448,222,0 +170754743497,220,0 +170754743545,220,0 +170754743593,222,0 +170754743641,221,0 +170754743689,221,0 +170754743737,224,0 +170754743785,222,0 +170754743834,221,0 +170754743882,223,0 +170754743930,223,0 +170754743978,216,0 +170754744025,214,0 +170754744075,214,0 +170754744123,215,0 +170754744171,216,0 +170754744219,216,0 +170754744266,217,0 +170754744314,218,0 +170754744362,218,0 +170754744410,220,0 +170754744458,220,0 +170754744506,220,0 +170754744555,221,0 +170754744603,221,0 +170754744653,223,0 +170754744701,223,0 +170754744750,223,0 +170754744800,222,0 +170754744848,222,0 +170754744896,222,0 +170754744944,214,0 +170754744992,214,0 +170754745040,214,0 +170754745089,215,0 +170754745137,216,0 +170754745185,216,0 +170754745235,217,0 +170754745282,218,0 +170754745330,218,0 +170754745378,219,0 +170754745428,219,0 +170754745476,221,0 +170754745524,220,0 +170754745572,221,0 +170754745620,222,0 +170754745668,221,0 +170754745717,221,0 +170754745765,222,0 +170754745815,223,0 +170754745863,216,0 +170754745912,215,0 +170754745960,215,0 +170754746008,216,0 +170754746058,216,0 +170754746107,217,0 +170754746155,217,0 +170754746205,218,0 +170754746254,218,0 +170754746304,219,0 +170754746353,220,0 +170754746401,221,0 +170754746449,222,0 +170754746499,222,0 +170754746548,222,0 +170754746596,222,0 +170754746646,222,0 +170754746694,222,0 +170754746742,223,0 +170754746790,216,0 +170754746839,214,0 +170754746889,214,0 +170754746938,213,0 +170754746986,216,0 +170754747034,216,0 +170754747082,216,0 +170754747130,217,0 +170754747180,218,0 +170754747228,218,0 +170754747276,219,0 +170754747324,220,0 +170754747372,222,0 +170754747419,221,0 +170754747469,222,0 +170754747517,223,0 +170754747567,223,0 +170754747614,222,0 +170754747662,223,0 +170754747712,218,0 +170754747760,214,0 +170754747808,215,0 +170754747857,216,0 +170754747905,216,0 +170754747953,217,0 +170754748001,218,0 +170754748049,218,0 +170754748099,219,0 +170754748148,219,0 +170754748198,220,0 +170754748246,221,0 +170754748294,222,0 +170754748343,223,0 +170754748391,223,0 +170754748439,223,0 +170754748489,222,0 +170754748538,223,0 +170754748588,223,0 +170754748636,222,0 +170754748684,216,0 +170754748732,215,0 +170754748781,216,0 +170754748831,217,0 +170754748880,216,0 +170754748928,217,0 +170754748978,219,0 +170754749027,219,0 +170754749075,220,0 +170754749125,220,0 +170754749174,221,0 +170754749224,221,0 +170754749273,222,0 +170754749321,223,0 +170754749371,224,0 +170754749421,222,0 +170754749468,222,0 +170754749516,223,0 +170754749564,222,0 +170754749612,215,0 +170754749660,214,0 +170754749708,215,0 +170754749756,215,0 +170754749804,217,0 +170754749854,217,0 +170754749903,218,0 +170754749951,218,0 +170754750001,215,0 +170754750050,220,0 +170754750098,221,0 +170754750146,221,0 +170754750196,221,0 +170754750244,221,0 +170754750292,222,0 +170754750341,222,0 +170754750391,224,0 +170754750440,222,0 +170754750488,223,0 +170754750536,216,0 +170754750586,214,0 +170754750635,214,0 +170754750683,215,0 +170754750731,215,0 +170754750781,217,0 +170754750830,217,0 +170754750878,218,0 +170754750928,218,0 +170754750977,218,0 +170754751025,219,0 +170754751073,220,0 +170754751123,221,0 +170754751171,221,0 +170754751220,222,0 +170754751270,222,0 +170754751319,222,0 +170754751367,222,0 +170754751417,223,0 +170754751465,216,0 +170754751514,214,0 +170754751562,215,0 +170754751610,215,0 +170754751658,216,0 +170754751706,216,0 +170754751754,217,0 +170754751802,218,0 +170754751850,218,0 +170754751898,218,0 +170754751946,220,0 +170754751995,221,0 +170754752043,221,0 +170754752093,222,0 +170754752141,222,0 +170754752189,223,0 +170754752238,223,0 +170754752288,223,0 +170754752336,222,0 +170754752385,220,0 +170754752433,214,0 +170754752483,214,0 +170754752532,215,0 +170754752580,214,0 +170754752628,216,0 +170754752676,216,0 +170754752726,216,0 +170754752775,218,0 +170754752825,218,0 +170754752874,217,0 +170754752924,220,0 +170754752972,221,0 +170754753020,223,0 +170754753069,221,0 +170754753117,221,0 +170754753165,222,0 +170754753213,224,0 +170754753263,223,0 +170754753311,224,0 +170754753359,215,0 +170754753408,214,0 +170754753456,213,0 +170754753506,215,0 +170754753554,216,0 +170754753602,217,0 +170754753650,217,0 +170754753698,217,0 +170754753746,218,0 +170754753795,218,0 +170754753843,220,0 +170754753893,220,0 +170754753942,220,0 +170754753992,221,0 +170754754041,221,0 +170754754091,222,0 +170754754139,221,0 +170754754186,222,0 +170754754236,222,0 +170754754284,215,0 +170754754332,214,0 +170754754381,215,0 +170754754429,216,0 +170754754477,216,0 +170754754525,217,0 +170754754575,218,0 +170754754624,219,0 +170754754674,220,0 +170754754723,220,0 +170754754773,221,0 +170754754822,222,0 +170754754870,221,0 +170754754918,222,0 +170754754966,222,0 +170754755014,222,0 +170754755062,222,0 +170754755110,223,0 +170754755160,221,0 +170754755208,215,0 +170754755256,214,0 +170754755305,215,0 +170754755353,216,0 +170754755403,217,0 +170754755451,217,0 +170754755500,217,0 +170754755548,218,0 +170754755596,218,0 +170754755644,219,0 +170754755692,220,0 +170754755740,220,0 +170754755790,221,0 +170754755839,222,0 +170754755887,222,0 +170754755935,222,0 +170754755985,222,0 +170754756034,223,0 +170754756084,222,0 +170754756132,216,0 +170754756180,214,0 +170754756227,215,0 +170754756275,215,0 +170754756323,216,0 +170754756371,216,0 +170754756419,216,0 +170754756467,217,0 +170754756516,218,0 +170754756564,219,0 +170754756614,221,0 +170754756664,221,0 +170754756713,221,0 +170754756763,221,0 +170754756811,222,0 +170754756859,222,0 +170754756907,223,0 +170754756956,223,0 +170754757006,224,0 +170754757055,223,0 +170754757105,215,0 +170754757153,215,0 +170754757202,215,0 +170754757250,216,0 +170754757298,217,0 +170754757346,217,0 +170754757394,218,0 +170754757442,218,0 +170754757490,218,0 +170754757538,220,0 +170754757585,220,0 +170754757635,221,0 +170754757685,220,0 +170754757734,222,0 +170754757782,222,0 +170754757832,223,0 +170754757881,223,0 +170754757931,222,0 +170754757979,222,0 +170754758027,215,0 +170754758076,214,0 +170754758126,215,0 +170754758175,216,0 +170754758223,217,0 +170754758271,217,0 +170754758321,217,0 +170754758370,218,0 +170754758420,218,0 +170754758469,218,0 +170754758517,222,0 +170754758565,220,0 +170754758615,221,0 +170754758664,222,0 +170754758714,222,0 +170754758763,222,0 +170754758811,222,0 +170754758859,222,0 +170754758909,222,0 +170754758958,215,0 +170754759006,214,0 +170754759054,214,0 +170754759102,215,0 +170754759150,216,0 +170754759198,216,0 +170754759246,217,0 +170754759296,217,0 +170754759343,218,0 +170754759393,219,0 +170754759441,221,0 +170754759489,220,0 +170754759537,220,0 +170754759585,222,0 +170754759633,223,0 +170754759681,223,0 +170754759730,222,0 +170754759780,221,0 +170754759829,222,0 +170754759877,216,0 +170754759927,215,0 +170754759975,215,0 +170754760024,215,0 +170754760074,216,0 +170754760122,217,0 +170754760171,217,0 +170754760219,218,0 +170754760267,218,0 +170754760317,219,0 +170754760365,220,0 +170754760414,220,0 +170754760464,221,0 +170754760513,222,0 +170754760563,222,0 +170754760611,222,0 +170754760659,222,0 +170754760707,223,0 +170754760756,222,0 +170754760806,221,0 +170754760854,214,0 +170754760903,214,0 +170754760951,214,0 +170754761001,214,0 +170754761050,215,0 +170754761098,216,0 +170754761148,217,0 +170754761196,217,0 +170754761245,218,0 +170754761295,219,0 +170754761344,220,0 +170754761392,222,0 +170754761442,220,0 +170754761490,221,0 +170754761539,221,0 +170754761589,220,0 +170754761637,222,0 +170754761686,222,0 +170754761736,222,0 +170754761784,215,0 +170754761833,214,0 +170754761883,215,0 +170754761932,215,0 +170754761980,216,0 +170754762028,217,0 +170754762076,217,0 +170754762126,217,0 +170754762175,217,0 +170754762225,218,0 +170754762274,219,0 +170754762322,219,0 +170754762372,220,0 +170754762420,221,0 +170754762469,221,0 +170754762519,221,0 +170754762569,222,0 +170754762617,222,0 +170754762664,221,0 +170754762714,215,0 +170754762764,215,0 +170754762811,216,0 +170754762859,217,0 +170754762907,217,0 +170754762955,218,0 +170754763003,219,0 +170754763053,220,0 +170754763102,219,0 +170754763152,220,0 +170754763200,221,0 +170754763249,221,0 +170754763299,221,0 +170754763347,223,0 +170754763395,222,0 +170754763444,223,0 +170754763492,222,0 +170754763540,222,0 +170754763588,221,0 +170754763636,215,0 +170754763684,215,0 +170754763732,215,0 +170754763782,216,0 +170754763831,217,0 +170754763879,218,0 +170754763929,218,0 +170754763978,219,0 +170754764026,219,0 +170754764074,220,0 +170754764122,221,0 +170754764170,221,0 +170754764218,222,0 +170754764266,222,0 +170754764314,223,0 +170754764362,222,0 +170754764411,222,0 +170754764461,222,0 +170754764511,223,0 +170754764558,220,0 +170754764606,215,0 +170754764656,216,0 +170754764704,217,0 +170754764752,217,0 +170754764800,218,0 +170754764849,219,0 +170754764897,219,0 +170754764947,220,0 +170754764995,221,0 +170754765042,221,0 +170754765090,222,0 +170754765138,223,0 +170754765186,223,0 +170754765234,222,0 +170754765282,224,0 +170754765331,223,0 +170754765379,222,0 +170754765427,223,0 +170754765475,222,0 +170754765523,216,0 +170754765571,216,0 +170754765620,217,0 +170754765668,217,0 +170754765718,218,0 +170754765767,219,0 +170754765815,220,0 +170754765865,221,0 +170754765913,221,0 +170754765961,221,0 +170754766009,221,0 +170754766058,223,0 +170754766108,222,0 +170754766156,223,0 +170754766204,223,0 +170754766252,224,0 +170754766299,224,0 +170754766347,223,0 +170754766397,222,0 +170754766447,216,0 +170754766495,215,0 +170754766543,216,0 +170754766590,216,0 +170754766640,218,0 +170754766690,218,0 +170754766738,219,0 +170754766787,219,0 +170754766835,219,0 +170754766883,219,0 +170754766933,220,0 +170754766982,221,0 +170754767030,221,0 +170754767078,221,0 +170754767126,221,0 +170754767176,222,0 +170754767224,223,0 +170754767273,223,0 +170754767323,222,0 +170754767372,218,0 +170754767422,215,0 +170754767471,215,0 +170754767521,216,0 +170754767570,216,0 +170754767618,218,0 +170754767666,218,0 +170754767716,218,0 +170754767764,219,0 +170754767813,219,0 +170754767863,220,0 +170754767911,221,0 +170754767959,222,0 +170754768008,219,0 +170754768056,223,0 +170754768106,222,0 +170754768155,223,0 +170754768203,223,0 +170754768251,223,0 +170754768301,222,0 +170754768350,214,0 +170754768400,215,0 +170754768450,216,0 +170754768498,216,0 +170754768545,216,0 +170754768593,217,0 +170754768643,218,0 +170754768693,218,0 +170754768740,219,0 +170754768790,219,0 +170754768838,220,0 +170754768887,221,0 +170754768937,222,0 +170754768985,223,0 +170754769033,223,0 +170754769082,223,0 +170754769130,222,0 +170754769180,223,0 +170754769229,222,0 +170754769277,215,0 +170754769325,215,0 +170754769373,215,0 +170754769423,216,0 +170754769471,216,0 +170754769519,217,0 +170754769567,218,0 +170754769615,219,0 +170754769664,220,0 +170754769714,220,0 +170754769762,220,0 +170754769811,222,0 +170754769861,222,0 +170754769910,222,0 +170754769958,223,0 +170754770006,225,0 +170754770056,223,0 +170754770104,224,0 +170754770152,222,0 +170754770200,215,0 +170754770249,214,0 +170754770297,214,0 +170754770345,215,0 +170754770393,214,0 +170754770441,217,0 +170754770490,216,0 +170754770538,218,0 +170754770588,219,0 +170754770636,223,0 +170754770684,220,0 +170754770732,220,0 +170754770779,221,0 +170754770827,221,0 +170754770875,222,0 +170754770923,224,0 +170754770971,224,0 +170754771021,221,0 +170754771068,222,0 +170754771116,222,0 +170754771164,214,0 +170754771212,214,0 +170754771260,214,0 +170754771308,215,0 +170754771356,215,0 +170754771404,217,0 +170754771451,217,0 +170754771499,217,0 +170754771547,218,0 +170754771597,218,0 +170754771646,220,0 +170754771694,220,0 +170754771742,221,0 +170754771790,221,0 +170754771838,222,0 +170754771886,222,0 +170754771934,222,0 +170754771981,222,0 +170754772029,222,0 +170754772077,216,0 +170754772125,214,0 +170754772173,214,0 +170754772223,215,0 +170754772270,215,0 +170754772318,215,0 +170754772368,216,0 +170754772416,217,0 +170754772465,218,0 +170754772513,220,0 +170754772561,220,0 +170754772609,220,0 +170754772657,220,0 +170754772705,221,0 +170754772754,222,0 +170754772802,224,0 +170754772850,223,0 +170754772898,222,0 +170754772945,224,0 +170754772993,217,0 +170754773041,215,0 +170754773091,215,0 +170754773139,215,0 +170754773187,216,0 +170754773236,217,0 +170754773284,218,0 +170754773332,219,0 +170754773380,218,0 +170754773429,219,0 +170754773479,221,0 +170754773528,220,0 +170754773578,221,0 +170754773628,221,0 +170754773677,222,0 +170754773725,220,0 +170754773773,222,0 +170754773821,225,0 +170754773871,223,0 +170754773919,222,0 +170754773967,215,0 +170754774015,214,0 +170754774063,215,0 +170754774111,215,0 +170754774158,216,0 +170754774208,217,0 +170754774258,217,0 +170754774305,218,0 +170754774353,218,0 +170754774401,219,0 +170754774449,220,0 +170754774497,221,0 +170754774547,220,0 +170754774597,223,0 +170754774644,222,0 +170754774694,223,0 +170754774743,222,0 +170754774791,222,0 +170754774841,222,0 +170754774889,215,0 +170754774938,214,0 +170754774988,214,0 +170754775037,215,0 +170754775085,215,0 +170754775135,215,0 +170754775183,215,0 +170754775232,216,0 +170754775280,216,0 +170754775330,218,0 +170754775378,218,0 +170754775426,220,0 +170754775475,222,0 +170754775523,221,0 +170754775572,222,0 +170754775620,222,0 +170754775668,222,0 +170754775716,223,0 +170754775764,222,0 +170754775812,216,0 +170754775862,215,0 +170754775910,215,0 +170754775959,215,0 +170754776007,215,0 +170754776055,214,0 +170754776105,215,0 +170754776153,216,0 +170754776201,217,0 +170754776249,217,0 +170754776297,218,0 +170754776344,219,0 +170754776392,222,0 +170754776440,222,0 +170754776490,222,0 +170754776538,224,0 +170754776587,222,0 +170754776637,222,0 +170754776685,221,0 +170754776733,222,0 +170754776781,215,0 +170754776829,214,0 +170754776878,214,0 +170754776926,214,0 +170754776974,215,0 +170754777022,216,0 +170754777070,217,0 +170754777118,217,0 +170754777167,218,0 +170754777215,219,0 +170754777263,220,0 +170754777311,220,0 +170754777359,221,0 +170754777407,221,0 +170754777455,222,0 +170754777503,222,0 +170754777552,222,0 +170754777600,223,0 +170754777650,223,0 +170754777698,215,0 +170754777747,214,0 +170754777795,215,0 +170754777843,215,0 +170754777891,215,0 +170754777939,215,0 +170754777989,216,0 +170754778037,216,0 +170754778085,217,0 +170754778133,218,0 +170754778182,219,0 +170754778230,220,0 +170754778278,220,0 +170754778328,223,0 +170754778376,222,0 +170754778425,222,0 +170754778475,222,0 +170754778524,222,0 +170754778572,222,0 +170754778620,216,0 +170754778668,215,0 +170754778716,214,0 +170754778766,215,0 +170754778814,214,0 +170754778863,215,0 +170754778911,216,0 +170754778961,216,0 +170754779009,217,0 +170754779057,218,0 +170754779106,218,0 +170754779156,220,0 +170754779204,221,0 +170754779253,221,0 +170754779301,220,0 +170754779351,221,0 +170754779400,221,0 +170754779450,222,0 +170754779499,222,0 +170754779547,222,0 +170754779595,214,0 +170754779645,215,0 +170754779693,214,0 +170754779741,214,0 +170754779789,215,0 +170754779838,215,0 +170754779888,216,0 +170754779936,217,0 +170754779985,217,0 +170754780033,218,0 +170754780082,220,0 +170754780130,220,0 +170754780178,221,0 +170754780226,222,0 +170754780274,222,0 +170754780322,222,0 +170754780370,222,0 +170754780418,222,0 +170754780466,222,0 +170754780514,215,0 +170754780562,214,0 +170754780609,214,0 +170754780657,215,0 +170754780707,215,0 +170754780756,216,0 +170754780804,216,0 +170754780852,216,0 +170754780900,217,0 +170754780948,218,0 +170754780996,219,0 +170754781045,220,0 +170754781094,220,0 +170754781142,221,0 +170754781190,221,0 +170754781240,222,0 +170754781288,222,0 +170754781337,222,0 +170754781385,222,0 +170754781433,216,0 +170754781481,215,0 +170754781529,215,0 +170754781577,215,0 +170754781626,216,0 +170754781676,217,0 +170754781725,218,0 +170754781775,219,0 +170754781823,219,0 +170754781872,219,0 +170754781920,220,0 +170754781968,222,0 +170754782018,221,0 +170754782066,222,0 +170754782114,222,0 +170754782162,223,0 +170754782210,222,0 +170754782259,223,0 +170754782309,222,0 +170754782357,221,0 +170754782406,214,0 +170754782455,214,0 +170754782503,215,0 +170754782551,215,0 +170754782599,216,0 +170754782649,216,0 +170754782697,217,0 +170754782746,217,0 +170754782796,218,0 +170754782844,218,0 +170754782892,220,0 +170754782940,220,0 +170754782989,220,0 +170754783039,221,0 +170754783087,222,0 +170754783135,223,0 +170754783184,222,0 +170754783232,223,0 +170754783282,223,0 +170754783331,215,0 +170754783381,214,0 +170754783430,215,0 +170754783480,215,0 +170754783528,216,0 +170754783578,217,0 +170754783627,217,0 +170754783675,218,0 +170754783725,218,0 +170754783774,220,0 +170754783822,221,0 +170754783870,221,0 +170754783919,222,0 +170754783967,221,0 +170754784017,222,0 +170754784066,222,0 +170754784114,222,0 +170754784164,222,0 +170754784214,222,0 +170754784263,215,0 +170754784313,215,0 +170754784361,216,0 +170754784409,217,0 +170754784458,217,0 +170754784506,217,0 +170754784554,218,0 +170754784604,218,0 +170754784653,219,0 +170754784701,219,0 +170754784751,221,0 +170754784800,222,0 +170754784850,222,0 +170754784898,222,0 +170754784946,223,0 +170754784994,223,0 +170754785042,221,0 +170754785089,223,0 +170754785137,222,0 +170754785185,216,0 +170754785235,216,0 +170754785285,216,0 +170754785334,217,0 +170754785384,217,0 +170754785432,219,0 +170754785480,219,0 +170754785527,219,0 +170754785577,220,0 +170754785627,220,0 +170754785674,220,0 +170754785722,222,0 +170754785772,222,0 +170754785820,223,0 +170754785869,223,0 +170754785917,223,0 +170754785967,223,0 +170754786015,224,0 +170754786064,222,0 +170754786112,216,0 +170754786160,215,0 +170754786208,216,0 +170754786258,217,0 +170754786306,217,0 +170754786354,219,0 +170754786402,218,0 +170754786451,219,0 +170754786499,220,0 +170754786547,220,0 +170754786595,221,0 +170754786643,222,0 +170754786691,222,0 +170754786739,223,0 +170754786787,222,0 +170754786835,223,0 +170754786883,221,0 +170754786931,222,0 +170754786979,222,0 +170754787027,222,0 +170754787074,217,0 +170754787122,217,0 +170754787170,218,0 +170754787220,218,0 +170754787269,219,0 +170754787319,219,0 +170754787369,220,0 +170754787418,220,0 +170754787468,221,0 +170754787516,222,0 +170754787564,222,0 +170754787612,222,0 +170754787659,222,0 +170754787707,223,0 +170754787757,223,0 +170754787805,223,0 +170754787854,223,0 +170754787904,222,0 +170754787954,222,0 +170754788003,217,0 +170754788053,217,0 +170754788101,218,0 +170754788148,218,0 +170754788196,219,0 +170754788246,219,0 +170754788295,220,0 +170754788345,221,0 +170754788393,222,0 +170754788441,220,0 +170754788490,222,0 +170754788540,222,0 +170754788590,222,0 +170754788637,222,0 +170754788685,223,0 +170754788735,225,0 +170754788784,223,0 +170754788832,223,0 +170754788880,223,0 +170754788930,216,0 +170754788979,215,0 +170754789029,215,0 +170754789078,216,0 +170754789128,217,0 +170754789176,218,0 +170754789224,220,0 +170754789273,220,0 +170754789323,220,0 +170754789372,222,0 +170754789420,221,0 +170754789468,222,0 +170754789518,222,0 +170754789566,222,0 +170754789615,223,0 +170754789663,223,0 +170754789711,222,0 +170754789761,222,0 +170754789810,222,0 +170754789860,216,0 +170754789909,215,0 +170754789959,214,0 +170754790007,215,0 +170754790055,215,0 +170754790104,216,0 +170754790152,217,0 +170754790200,217,0 +170754790250,218,0 +170754790297,219,0 +170754790347,219,0 +170754790397,220,0 +170754790446,221,0 +170754790496,222,0 +170754790544,222,0 +170754790592,222,0 +170754790641,223,0 +170754790691,223,0 +170754790740,222,0 +170754790790,218,0 +170754790839,214,0 +170754790887,215,0 +170754790935,215,0 +170754790985,215,0 +170754791034,216,0 +170754791084,216,0 +170754791132,217,0 +170754791180,218,0 +170754791228,218,0 +170754791276,218,0 +170754791324,220,0 +170754791371,221,0 +170754791419,221,0 +170754791469,221,0 +170754791517,222,0 +170754791565,222,0 +170754791614,223,0 +170754791662,223,0 +170754791712,222,0 +170754791760,215,0 +170754791808,215,0 +170754791857,215,0 +170754791907,215,0 +170754791955,215,0 +170754792004,215,0 +170754792054,217,0 +170754792102,216,0 +170754792150,217,0 +170754792198,217,0 +170754792247,221,0 +170754792295,219,0 +170754792344,220,0 +170754792392,221,0 +170754792440,222,0 +170754792488,221,0 +170754792536,222,0 +170754792586,222,0 +170754792634,222,0 +170754792682,216,0 +170754792730,214,0 +170754792778,215,0 +170754792827,215,0 +170754792875,215,0 +170754792925,216,0 +170754792973,217,0 +170754793021,219,0 +170754793070,218,0 +170754793118,219,0 +170754793166,220,0 +170754793216,221,0 +170754793264,220,0 +170754793312,221,0 +170754793360,222,0 +170754793408,222,0 +170754793455,223,0 +170754793503,222,0 +170754793553,222,0 +170754793603,216,0 +170754793652,214,0 +170754793702,214,0 +170754793751,215,0 +170754793801,215,0 +170754793849,215,0 +170754793897,215,0 +170754793944,216,0 +170754793994,217,0 +170754794042,218,0 +170754794090,219,0 +170754794138,219,0 +170754794186,223,0 +170754794234,223,0 +170754794283,221,0 +170754794331,222,0 +170754794381,223,0 +170754794429,222,0 +170754794477,222,0 +170754794526,221,0 +170754794576,214,0 +170754794624,214,0 +170754794673,215,0 +170754794721,215,0 +170754794769,215,0 +170754794819,215,0 +170754794867,216,0 +170754794914,216,0 +170754794964,217,0 +170754795013,218,0 +170754795063,219,0 +170754795112,220,0 +170754795160,220,0 +170754795210,222,0 +170754795258,222,0 +170754795306,221,0 +170754795355,221,0 +170754795403,222,0 +170754795453,223,0 +170754795501,215,0 +170754795550,214,0 +170754795598,215,0 +170754795648,215,0 +170754795696,215,0 +170754795744,215,0 +170754795793,215,0 +170754795841,217,0 +170754795889,217,0 +170754795938,218,0 +170754795988,219,0 +170754796037,219,0 +170754796085,220,0 +170754796133,222,0 +170754796183,221,0 +170754796232,222,0 +170754796280,223,0 +170754796330,222,0 +170754796378,223,0 +170754796426,216,0 +170754796474,214,0 +170754796522,215,0 +170754796570,215,0 +170754796618,214,0 +170754796666,215,0 +170754796714,216,0 +170754796761,217,0 +170754796811,218,0 +170754796859,218,0 +170754796907,218,0 +170754796956,219,0 +170754797004,220,0 +170754797054,221,0 +170754797102,222,0 +170754797151,224,0 +170754797199,222,0 +170754797247,222,0 +170754797295,223,0 +170754797343,222,0 +170754797393,214,0 +170754797442,214,0 +170754797490,215,0 +170754797540,215,0 +170754797589,216,0 +170754797637,216,0 +170754797687,217,0 +170754797735,218,0 +170754797784,219,0 +170754797832,218,0 +170754797880,220,0 +170754797928,221,0 +170754797976,223,0 +170754798024,221,0 +170754798073,222,0 +170754798123,222,0 +170754798171,222,0 +170754798219,222,0 +170754798267,222,0 +170754798315,215,0 +170754798364,215,0 +170754798414,215,0 +170754798462,216,0 +170754798510,216,0 +170754798558,217,0 +170754798606,218,0 +170754798655,218,0 +170754798703,219,0 +170754798751,219,0 +170754798799,221,0 +170754798847,221,0 +170754798895,222,0 +170754798945,221,0 +170754798994,222,0 +170754799042,223,0 +170754799090,226,0 +170754799138,223,0 +170754799186,223,0 +170754799235,215,0 +170754799285,214,0 +170754799334,214,0 +170754799384,215,0 +170754799432,215,0 +170754799481,216,0 +170754799531,217,0 +170754799581,217,0 +170754799629,218,0 +170754799678,220,0 +170754799726,221,0 +170754799776,221,0 +170754799824,221,0 +170754799873,222,0 +170754799921,221,0 +170754799969,222,0 +170754800017,222,0 +170754800066,223,0 +170754800116,222,0 +170754800166,216,0 +170754800213,215,0 +170754800263,215,0 +170754800313,215,0 +170754800362,215,0 +170754800410,215,0 +170754800460,216,0 +170754800509,217,0 +170754800557,218,0 +170754800607,218,0 +170754800655,220,0 +170754800703,220,0 +170754800752,221,0 +170754800800,221,0 +170754800848,221,0 +170754800897,222,0 +170754800947,222,0 +170754800996,222,0 +170754801044,223,0 +170754801092,216,0 +170754801140,215,0 +170754801188,215,0 +170754801238,215,0 +170754801286,215,0 +170754801334,215,0 +170754801382,215,0 +170754801431,215,0 +170754801481,216,0 +170754801530,217,0 +170754801580,218,0 +170754801629,220,0 +170754801677,220,0 +170754801725,221,0 +170754801775,221,0 +170754801823,220,0 +170754801870,221,0 +170754801918,222,0 +170754801968,223,0 +170754802017,222,0 +170754802065,215,0 +170754802115,215,0 +170754802164,215,0 +170754802214,215,0 +170754802262,215,0 +170754802311,215,0 +170754802359,215,0 +170754802407,216,0 +170754802455,216,0 +170754802503,217,0 +170754802551,217,0 +170754802599,218,0 +170754802649,218,0 +170754802697,220,0 +170754802744,221,0 +170754802794,221,0 +170754802842,221,0 +170754802890,223,0 +170754802938,222,0 +170754802986,215,0 +170754803034,215,0 +170754803081,215,0 +170754803131,215,0 +170754803180,215,0 +170754803230,215,0 +170754803278,215,0 +170754803326,216,0 +170754803375,217,0 +170754803425,218,0 +170754803474,217,0 +170754803524,217,0 +170754803574,218,0 +170754803623,218,0 +170754803671,218,0 +170754803719,219,0 +170754803769,220,0 +170754803818,220,0 +170754803868,221,0 +170754803917,222,0 +170754803965,223,0 +170754804015,223,0 +170754804063,224,0 +170754804110,223,0 +170754804158,223,0 +170754804206,224,0 +170754804254,223,0 +170754804302,222,0 +170754804350,220,0 +170754804400,215,0 +170754804449,215,0 +170754804497,215,0 +170754804545,215,0 +170754804593,216,0 +170754804643,216,0 +170754804692,217,0 +170754804740,218,0 +170754804788,219,0 +170754804836,218,0 +170754804884,220,0 +170754804932,220,0 +170754804981,221,0 +170754805031,222,0 +170754805080,222,0 +170754805130,222,0 +170754805178,222,0 +170754805226,222,0 +170754805274,222,0 +170754805322,215,0 +170754805370,215,0 +170754805417,215,0 +170754805467,215,0 +170754805515,216,0 +170754805564,216,0 +170754805614,217,0 +170754805662,217,0 +170754805711,218,0 +170754805761,218,0 +170754805809,220,0 +170754805857,221,0 +170754805906,221,0 +170754805956,223,0 +170754806004,222,0 +170754806052,222,0 +170754806101,223,0 +170754806151,224,0 +170754806201,222,0 +170754806248,216,0 +170754806296,215,0 +170754806344,215,0 +170754806394,216,0 +170754806442,216,0 +170754806490,216,0 +170754806538,217,0 +170754806586,217,0 +170754806635,218,0 +170754806685,219,0 +170754806734,221,0 +170754806784,220,0 +170754806832,221,0 +170754806881,221,0 +170754806931,222,0 +170754806979,222,0 +170754807028,222,0 +170754807076,223,0 +170754807124,222,0 +170754807172,216,0 +170754807222,214,0 +170754807271,213,0 +170754807319,216,0 +170754807369,216,0 +170754807417,217,0 +170754807465,216,0 +170754807513,217,0 +170754807561,218,0 +170754807610,219,0 +170754807658,220,0 +170754807708,221,0 +170754807757,220,0 +170754807805,220,0 +170754807854,221,0 +170754807902,221,0 +170754807950,223,0 +170754808000,222,0 +170754808049,222,0 +170754808099,221,0 +170754808147,215,0 +170754808196,214,0 +170754808246,216,0 +170754808294,216,0 +170754808342,217,0 +170754808390,217,0 +170754808438,218,0 +170754808487,220,0 +170754808537,219,0 +170754808586,220,0 +170754808634,220,0 +170754808682,221,0 +170754808730,222,0 +170754808778,223,0 +170754808826,223,0 +170754808876,223,0 +170754808925,223,0 +170754808975,223,0 +170754809023,220,0 +170754809071,216,0 +170754809120,215,0 +170754809168,216,0 +170754809217,217,0 +170754809267,218,0 +170754809316,219,0 +170754809366,219,0 +170754809414,220,0 +170754809462,220,0 +170754809510,220,0 +170754809558,222,0 +170754809607,222,0 +170754809657,223,0 +170754809706,222,0 +170754809756,223,0 +170754809806,223,0 +170754809855,223,0 +170754809905,226,0 +170754809954,222,0 +170754810004,216,0 +170754810052,217,0 +170754810101,217,0 +170754810151,218,0 +170754810199,219,0 +170754810248,219,0 +170754810298,220,0 +170754810347,221,0 +170754810395,221,0 +170754810443,221,0 +170754810493,221,0 +170754810541,223,0 +170754810590,223,0 +170754810640,223,0 +170754810689,223,0 +170754810737,222,0 +170754810787,222,0 +170754810835,222,0 +170754810884,222,0 +170754810934,216,0 +170754810983,216,0 +170754811031,218,0 +170754811079,217,0 +170754811128,218,0 +170754811177,218,0 +170754811225,218,0 +170754811273,220,0 +170754811323,220,0 +170754811370,220,0 +170754811418,221,0 +170754811468,222,0 +170754811518,222,0 +170754811566,222,0 +170754811613,222,0 +170754811663,223,0 +170754811711,222,0 +170754811759,222,0 +170754811808,222,0 +170754811858,216,0 +170754811906,216,0 +170754811955,217,0 +170754812005,217,0 +170754812053,218,0 +170754812101,219,0 +170754812149,219,0 +170754812198,219,0 +170754812246,220,0 +170754812294,220,0 +170754812342,221,0 +170754812390,222,0 +170754812438,223,0 +170754812486,222,0 +170754812534,224,0 +170754812582,223,0 +170754812630,223,0 +170754812678,223,0 +170754812725,222,0 +170754812775,221,0 +170754812824,216,0 +170754812872,217,0 +170754812920,218,0 +170754812968,219,0 +170754813016,219,0 +170754813065,219,0 +170754813113,220,0 +170754813163,223,0 +170754813210,225,0 +170754813258,219,0 +170754813306,222,0 +170754813354,222,0 +170754813402,223,0 +170754813450,222,0 +170754813498,224,0 +170754813546,224,0 +170754813594,223,0 +170754813642,223,0 +170754813691,222,0 +170754813739,216,0 +170754813787,216,0 +170754813835,216,0 +170754813883,217,0 +170754813931,218,0 +170754813979,219,0 +170754814028,219,0 +170754814076,219,0 +170754814124,219,0 +170754814173,221,0 +170754814223,222,0 +170754814271,223,0 +170754814319,222,0 +170754814368,223,0 +170754814416,223,0 +170754814464,223,0 +170754814512,224,0 +170754814560,223,0 +170754814610,223,0 +170754814658,216,0 +170754814707,214,0 +170754814755,215,0 +170754814803,216,0 +170754814851,216,0 +170754814901,217,0 +170754814949,216,0 +170754814997,219,0 +170754815044,219,0 +170754815092,219,0 +170754815140,220,0 +170754815188,221,0 +170754815236,220,0 +170754815286,221,0 +170754815335,223,0 +170754815385,222,0 +170754815433,226,0 +170754815482,223,0 +170754815530,222,0 +170754815578,222,0 +170754815628,215,0 +170754815677,214,0 +170754815725,214,0 +170754815773,215,0 +170754815823,216,0 +170754815872,217,0 +170754815920,218,0 +170754815970,218,0 +170754816018,217,0 +170754816067,219,0 +170754816115,220,0 +170754816165,220,0 +170754816214,222,0 +170754816264,221,0 +170754816313,222,0 +170754816363,223,0 +170754816411,222,0 +170754816459,223,0 +170754816508,222,0 +170754816556,215,0 +170754816606,215,0 +170754816654,215,0 +170754816702,215,0 +170754816751,216,0 +170754816801,216,0 +170754816850,216,0 +170754816900,218,0 +170754816949,218,0 +170754816997,219,0 +170754817045,220,0 +170754817093,221,0 +170754817143,221,0 +170754817192,223,0 +170754817240,223,0 +170754817288,223,0 +170754817336,223,0 +170754817386,222,0 +170754817433,223,0 +170754817483,216,0 +170754817533,214,0 +170754817582,215,0 +170754817630,216,0 +170754817678,216,0 +170754817726,217,0 +170754817774,217,0 +170754817822,217,0 +170754817870,218,0 +170754817919,219,0 +170754817967,220,0 +170754818015,219,0 +170754818063,221,0 +170754818113,222,0 +170754818160,221,0 +170754818208,222,0 +170754818258,222,0 +170754818308,222,0 +170754818357,222,0 +170754818405,216,0 +170754818454,214,0 +170754818502,215,0 +170754818550,214,0 +170754818598,215,0 +170754818646,216,0 +170754818694,216,0 +170754818742,217,0 +170754818790,218,0 +170754818838,219,0 +170754818886,220,0 +170754818934,219,0 +170754818983,221,0 +170754819033,220,0 +170754819081,222,0 +170754819129,223,0 +170754819177,223,0 +170754819226,224,0 +170754819274,223,0 +170754819322,220,0 +170754819370,215,0 +170754819419,215,0 +170754819469,215,0 +170754819519,215,0 +170754819567,215,0 +170754819616,216,0 +170754819666,217,0 +170754819714,217,0 +170754819763,218,0 +170754819811,220,0 +170754819859,220,0 +170754819909,220,0 +170754819957,222,0 +170754820006,222,0 +170754820054,222,0 +170754820104,222,0 +170754820152,223,0 +170754820199,223,0 +170754820247,222,0 +170754820295,214,0 +170754820343,215,0 +170754820391,214,0 +170754820439,215,0 +170754820487,216,0 +170754820536,217,0 +170754820584,217,0 +170754820632,218,0 +170754820680,218,0 +170754820728,219,0 +170754820777,219,0 +170754820825,220,0 +170754820873,221,0 +170754820921,221,0 +170754820969,220,0 +170754821017,221,0 +170754821065,220,0 +170754821113,222,0 +170754821160,222,0 +170754821208,216,0 +170754821256,214,0 +170754821306,214,0 +170754821353,216,0 +170754821401,216,0 +170754821449,216,0 +170754821497,217,0 +170754821545,218,0 +170754821594,219,0 +170754821644,219,0 +170754821692,219,0 +170754821740,221,0 +170754821788,221,0 +170754821837,223,0 +170754821885,222,0 +170754821933,222,0 +170754821983,222,0 +170754822031,223,0 +170754822079,223,0 +170754822126,223,0 +170754822174,215,0 +170754822222,214,0 +170754822270,215,0 +170754822318,215,0 +170754822366,214,0 +170754822414,216,0 +170754822462,217,0 +170754822510,217,0 +170754822557,219,0 +170754822605,218,0 +170754822653,219,0 +170754822701,220,0 +170754822749,221,0 +170754822797,224,0 +170754822845,223,0 +170754822893,222,0 +170754822941,222,0 +170754822988,224,0 +170754823036,222,0 +170754823084,216,0 +170754823134,215,0 +170754823183,214,0 +170754823231,215,0 +170754823281,215,0 +170754823329,215,0 +170754823377,215,0 +170754823425,216,0 +170754823474,217,0 +170754823524,218,0 +170754823572,219,0 +170754823620,219,0 +170754823669,220,0 +170754823717,222,0 +170754823765,221,0 +170754823815,221,0 +170754823864,221,0 +170754823914,222,0 +170754823962,222,0 +170754824010,216,0 +170754824057,214,0 +170754824107,215,0 +170754824155,215,0 +170754824203,215,0 +170754824251,215,0 +170754824299,216,0 +170754824347,217,0 +170754824395,218,0 +170754824443,219,0 +170754824491,220,0 +170754824540,220,0 +170754824588,220,0 +170754824636,222,0 +170754824685,221,0 +170754824733,221,0 +170754824781,223,0 +170754824831,222,0 +170754824879,222,0 +170754824927,222,0 +170754824975,215,0 +170754825023,214,0 +170754825071,214,0 +170754825118,215,0 +170754825166,215,0 +170754825214,215,0 +170754825262,215,0 +170754825310,217,0 +170754825360,217,0 +170754825408,218,0 +170754825455,220,0 +170754825505,219,0 +170754825555,220,0 +170754825603,220,0 +170754825652,222,0 +170754825700,224,0 +170754825750,224,0 +170754825798,222,0 +170754825845,222,0 +170754825893,216,0 +170754825941,214,0 +170754825989,214,0 +170754826039,215,0 +170754826088,215,0 +170754826136,215,0 +170754826186,215,0 +170754826234,216,0 +170754826282,217,0 +170754826330,217,0 +170754826379,219,0 +170754826427,219,0 +170754826477,221,0 +170754826525,220,0 +170754826574,222,0 +170754826624,222,0 +170754826672,221,0 +170754826720,222,0 +170754826769,222,0 +170754826817,216,0 +170754826865,214,0 +170754826915,215,0 +170754826963,215,0 +170754827011,215,0 +170754827059,215,0 +170754827108,216,0 +170754827158,217,0 +170754827206,218,0 +170754827255,218,0 +170754827303,220,0 +170754827353,219,0 +170754827401,220,0 +170754827448,221,0 +170754827496,221,0 +170754827544,223,0 +170754827594,222,0 +170754827642,222,0 +170754827691,223,0 +170754827739,222,0 +170754827787,214,0 +170754827836,215,0 +170754827884,215,0 +170754827932,215,0 +170754827980,216,0 +170754828028,217,0 +170754828076,218,0 +170754828123,218,0 +170754828171,218,0 +170754828219,218,0 +170754828267,219,0 +170754828315,219,0 +170754828365,222,0 +170754828412,221,0 +170754828460,221,0 +170754828508,223,0 +170754828558,222,0 +170754828606,222,0 +170754828655,223,0 +170754828704,216,0 +170754828752,215,0 +170754828802,215,0 +170754828850,216,0 +170754828898,217,0 +170754828946,217,0 +170754828994,218,0 +170754829042,218,0 +170754829090,219,0 +170754829137,220,0 +170754829185,220,0 +170754829235,222,0 +170754829283,222,0 +170754829331,222,0 +170754829380,222,0 +170754829428,223,0 +170754829476,223,0 +170754829526,223,0 +170754829574,222,0 +170754829622,221,0 +170754829671,215,0 +170754829721,215,0 +170754829769,216,0 +170754829818,216,0 +170754829868,217,0 +170754829917,218,0 +170754829965,218,0 +170754830013,219,0 +170754830061,220,0 +170754830109,220,0 +170754830157,220,0 +170754830205,221,0 +170754830253,222,0 +170754830302,221,0 +170754830352,223,0 +170754830400,223,0 +170754830449,222,0 +170754830499,222,0 +170754830548,221,0 +170754830596,215,0 +170754830644,215,0 +170754830692,215,0 +170754830742,216,0 +170754830791,218,0 +170754830839,217,0 +170754830887,218,0 +170754830937,218,0 +170754830986,220,0 +170754831036,219,0 +170754831084,221,0 +170754831132,221,0 +170754831179,222,0 +170754831227,222,0 +170754831275,224,0 +170754831325,222,0 +170754831374,223,0 +170754831422,223,0 +170754831472,222,0 +170754831520,216,0 +170754831568,214,0 +170754831617,215,0 +170754831667,215,0 +170754831716,216,0 +170754831766,217,0 +170754831814,218,0 +170754831862,218,0 +170754831910,219,0 +170754831958,220,0 +170754832005,221,0 +170754832053,221,0 +170754832103,222,0 +170754832152,222,0 +170754832200,222,0 +170754832248,223,0 +170754832296,222,0 +170754832344,222,0 +170754832394,223,0 +170754832443,216,0 +170754832493,214,0 +170754832541,215,0 +170754832590,215,0 +170754832638,214,0 +170754832686,216,0 +170754832736,217,0 +170754832784,218,0 +170754832833,218,0 +170754832881,219,0 +170754832931,219,0 +170754832980,221,0 +170754833030,221,0 +170754833079,222,0 +170754833129,221,0 +170754833177,221,0 +170754833225,223,0 +170754833273,222,0 +170754833321,222,0 +170754833369,216,0 +170754833417,215,0 +170754833466,216,0 +170754833514,217,0 +170754833564,217,0 +170754833611,218,0 +170754833661,218,0 +170754833709,219,0 +170754833757,219,0 +170754833805,220,0 +170754833854,220,0 +170754833904,221,0 +170754833952,221,0 +170754834000,222,0 +170754834049,222,0 +170754834097,222,0 +170754834145,222,0 +170754834193,224,0 +170754834243,224,0 +170754834292,222,0 +170754834340,215,0 +170754834390,216,0 +170754834438,216,0 +170754834486,217,0 +170754834534,217,0 +170754834583,218,0 +170754834631,218,0 +170754834679,220,0 +170754834727,222,0 +170754834775,220,0 +170754834823,221,0 +170754834871,222,0 +170754834921,223,0 +170754834969,223,0 +170754835017,224,0 +170754835065,224,0 +170754835112,222,0 +170754835160,223,0 +170754835210,222,0 +170754835260,216,0 +170754835307,215,0 +170754835355,216,0 +170754835403,218,0 +170754835451,217,0 +170754835501,219,0 +170754835550,219,0 +170754835600,219,0 +170754835648,221,0 +170754835697,221,0 +170754835745,222,0 +170754835793,223,0 +170754835843,224,0 +170754835892,223,0 +170754835940,224,0 +170754835988,224,0 +170754836036,223,0 +170754836086,223,0 +170754836134,223,0 +170754836183,221,0 +170754836233,216,0 +170754836282,217,0 +170754836330,217,0 +170754836379,219,0 +170754836427,219,0 +170754836475,219,0 +170754836523,220,0 +170754836571,221,0 +170754836618,222,0 +170754836666,222,0 +170754836716,221,0 +170754836765,224,0 +170754836815,224,0 +170754836863,224,0 +170754836912,224,0 +170754836962,223,0 +170754837010,224,0 +170754837059,222,0 +170754837107,222,0 +170754837157,215,0 +170754837206,216,0 +170754837256,216,0 +170754837304,217,0 +170754837352,218,0 +170754837401,216,0 +170754837449,220,0 +170754837497,221,0 +170754837547,220,0 +170754837595,221,0 +170754837643,221,0 +170754837692,221,0 +170754837741,222,0 +170754837791,223,0 +170754837841,223,0 +170754837890,222,0 +170754837940,224,0 +170754837989,223,0 +170754838037,222,0 +170754838087,215,0 +170754838135,214,0 +170754838184,215,0 +170754838234,215,0 +170754838283,216,0 +170754838331,216,0 +170754838379,216,0 +170754838428,216,0 +170754838476,218,0 +170754838526,219,0 +170754838574,221,0 +170754838623,221,0 +170754838671,221,0 +170754838721,221,0 +170754838769,222,0 +170754838818,221,0 +170754838866,224,0 +170754838914,223,0 +170754838962,223,0 +170754839010,216,0 +170754839058,215,0 +170754839105,215,0 +170754839153,215,0 +170754839201,215,0 +170754839251,216,0 +170754839299,216,0 +170754839348,217,0 +170754839396,218,0 +170754839444,219,0 +170754839492,219,0 +170754839541,220,0 +170754839589,222,0 +170754839637,221,0 +170754839685,221,0 +170754839733,223,0 +170754839781,223,0 +170754839829,223,0 +170754839877,223,0 +170754839926,216,0 +170754839974,215,0 +170754840022,215,0 diff --git a/laser_value/0210-17.csv b/laser_value/0210-17.csv new file mode 100644 index 0000000..c8cc923 --- /dev/null +++ b/laser_value/0210-17.csv @@ -0,0 +1,7417 @@ +timestamp,laser_value,event +170754840070,215,0 +170754840120,216,0 +170754840168,216,0 +170754840216,217,0 +170754840264,218,0 +170754840312,218,0 +170754840360,219,0 +170754840408,219,0 +170754840456,219,0 +170754840504,221,0 +170754840553,221,0 +170754840603,221,0 +170754840651,222,0 +170754840700,222,0 +170754840750,223,0 +170754840799,223,0 +170754840847,222,0 +170754840895,215,0 +170754840943,215,0 +170754840991,215,0 +170754841039,216,0 +170754841087,216,0 +170754841136,217,0 +170754841186,217,0 +170754841234,219,0 +170754841283,218,0 +170754841331,219,0 +170754841379,220,0 +170754841427,221,0 +170754841477,221,0 +170754841526,222,0 +170754841574,222,0 +170754841622,222,0 +170754841670,222,0 +170754841718,222,0 +170754841766,223,0 +170754841814,216,0 +170754841862,214,0 +170754841910,215,0 +170754841959,216,0 +170754842007,216,0 +170754842055,216,0 +170754842103,217,0 +170754842153,218,0 +170754842202,218,0 +170754842250,220,0 +170754842300,219,0 +170754842349,219,0 +170754842399,221,0 +170754842447,221,0 +170754842496,221,0 +170754842546,221,0 +170754842595,222,0 +170754842645,223,0 +170754842693,222,0 +170754842741,220,0 +170754842789,215,0 +170754842837,215,0 +170754842886,215,0 +170754842934,216,0 +170754842984,216,0 +170754843033,218,0 +170754843081,218,0 +170754843129,220,0 +170754843179,220,0 +170754843228,221,0 +170754843276,222,0 +170754843324,222,0 +170754843372,222,0 +170754843421,222,0 +170754843469,222,0 +170754843519,223,0 +170754843568,222,0 +170754843616,222,0 +170754843664,222,0 +170754843712,215,0 +170754843762,215,0 +170754843810,216,0 +170754843858,216,0 +170754843906,216,0 +170754843954,216,0 +170754844002,218,0 +170754844050,219,0 +170754844099,222,0 +170754844147,220,0 +170754844195,222,0 +170754844244,222,0 +170754844294,222,0 +170754844343,222,0 +170754844393,223,0 +170754844442,224,0 +170754844490,223,0 +170754844538,223,0 +170754844586,222,0 +170754844634,215,0 +170754844682,214,0 +170754844732,215,0 +170754844780,215,0 +170754844828,216,0 +170754844876,216,0 +170754844925,218,0 +170754844975,217,0 +170754845023,218,0 +170754845071,219,0 +170754845118,220,0 +170754845166,220,0 +170754845214,222,0 +170754845262,222,0 +170754845312,219,0 +170754845360,221,0 +170754845408,223,0 +170754845457,223,0 +170754845507,223,0 +170754845556,216,0 +170754845604,214,0 +170754845652,214,0 +170754845702,215,0 +170754845750,216,0 +170754845799,215,0 +170754845847,216,0 +170754845897,218,0 +170754845946,218,0 +170754845994,218,0 +170754846044,219,0 +170754846093,220,0 +170754846141,221,0 +170754846191,221,0 +170754846239,222,0 +170754846288,223,0 +170754846336,222,0 +170754846384,222,0 +170754846432,222,0 +170754846480,216,0 +170754846529,214,0 +170754846577,215,0 +170754846625,215,0 +170754846673,215,0 +170754846721,216,0 +170754846769,216,0 +170754846817,217,0 +170754846865,218,0 +170754846914,218,0 +170754846962,217,0 +170754847010,220,0 +170754847058,221,0 +170754847106,221,0 +170754847154,222,0 +170754847202,222,0 +170754847252,222,0 +170754847301,222,0 +170754847349,222,0 +170754847397,222,0 +170754847445,215,0 +170754847493,214,0 +170754847541,215,0 +170754847590,215,0 +170754847640,215,0 +170754847688,215,0 +170754847736,217,0 +170754847784,217,0 +170754847832,217,0 +170754847880,221,0 +170754847928,220,0 +170754847976,219,0 +170754848025,220,0 +170754848073,222,0 +170754848121,221,0 +170754848169,222,0 +170754848218,222,0 +170754848266,222,0 +170754848314,222,0 +170754848362,216,0 +170754848410,215,0 +170754848457,215,0 +170754848507,214,0 +170754848556,215,0 +170754848604,215,0 +170754848652,216,0 +170754848700,217,0 +170754848748,218,0 +170754848798,218,0 +170754848846,219,0 +170754848894,221,0 +170754848941,221,0 +170754848989,222,0 +170754849039,222,0 +170754849087,222,0 +170754849135,222,0 +170754849184,222,0 +170754849233,222,0 +170754849283,222,0 +170754849331,215,0 +170754849379,214,0 +170754849427,215,0 +170754849474,215,0 +170754849522,215,0 +170754849570,215,0 +170754849618,217,0 +170754849666,218,0 +170754849714,218,0 +170754849762,218,0 +170754849811,219,0 +170754849859,220,0 +170754849907,221,0 +170754849955,222,0 +170754850003,222,0 +170754850050,222,0 +170754850098,223,0 +170754850146,223,0 +170754850196,223,0 +170754850243,216,0 +170754850291,214,0 +170754850339,215,0 +170754850387,215,0 +170754850435,215,0 +170754850485,215,0 +170754850532,216,0 +170754850580,216,0 +170754850628,216,0 +170754850677,217,0 +170754850725,218,0 +170754850773,219,0 +170754850823,220,0 +170754850870,221,0 +170754850918,221,0 +170754850966,222,0 +170754851014,223,0 +170754851064,222,0 +170754851112,223,0 +170754851160,222,0 +170754851208,214,0 +170754851255,214,0 +170754851305,215,0 +170754851355,215,0 +170754851402,215,0 +170754851452,215,0 +170754851500,215,0 +170754851548,216,0 +170754851596,217,0 +170754851644,217,0 +170754851692,218,0 +170754851741,219,0 +170754851791,220,0 +170754851839,221,0 +170754851888,220,0 +170754851936,223,0 +170754851984,221,0 +170754852032,221,0 +170754852080,221,0 +170754852130,215,0 +170754852178,214,0 +170754852225,215,0 +170754852273,215,0 +170754852321,215,0 +170754852371,215,0 +170754852419,215,0 +170754852467,216,0 +170754852515,217,0 +170754852564,217,0 +170754852614,218,0 +170754852662,220,0 +170754852710,220,0 +170754852758,221,0 +170754852806,221,0 +170754852855,222,0 +170754852904,221,0 +170754852952,222,0 +170754853000,222,0 +170754853048,216,0 +170754853098,214,0 +170754853146,214,0 +170754853194,215,0 +170754853242,215,0 +170754853290,216,0 +170754853339,216,0 +170754853387,217,0 +170754853435,218,0 +170754853483,219,0 +170754853531,220,0 +170754853580,220,0 +170754853630,221,0 +170754853679,222,0 +170754853729,222,0 +170754853778,222,0 +170754853828,223,0 +170754853876,224,0 +170754853925,223,0 +170754853973,218,0 +170754854021,215,0 +170754854071,215,0 +170754854119,216,0 +170754854167,216,0 +170754854215,217,0 +170754854264,218,0 +170754854312,219,0 +170754854360,219,0 +170754854408,221,0 +170754854457,221,0 +170754854507,222,0 +170754854555,221,0 +170754854604,222,0 +170754854654,223,0 +170754854702,223,0 +170754854751,224,0 +170754854799,222,0 +170754854849,222,0 +170754854897,222,0 +170754854946,215,0 +170754854996,215,0 +170754855045,215,0 +170754855093,216,0 +170754855143,217,0 +170754855192,217,0 +170754855240,217,0 +170754855288,218,0 +170754855336,219,0 +170754855384,219,0 +170754855432,219,0 +170754855480,221,0 +170754855529,222,0 +170754855577,221,0 +170754855625,221,0 +170754855675,222,0 +170754855724,222,0 +170754855772,222,0 +170754855820,223,0 +170754855868,216,0 +170754855918,215,0 +170754855966,215,0 +170754856014,215,0 +170754856062,216,0 +170754856111,216,0 +170754856159,217,0 +170754856207,217,0 +170754856255,218,0 +170754856303,218,0 +170754856351,219,0 +170754856399,221,0 +170754856447,221,0 +170754856495,221,0 +170754856543,222,0 +170754856592,222,0 +170754856642,222,0 +170754856691,223,0 +170754856741,222,0 +170754856790,216,0 +170754856840,215,0 +170754856888,215,0 +170754856937,214,0 +170754856985,215,0 +170754857035,216,0 +170754857084,217,0 +170754857132,217,0 +170754857180,218,0 +170754857228,219,0 +170754857277,220,0 +170754857325,220,0 +170754857375,221,0 +170754857424,221,0 +170754857474,221,0 +170754857522,222,0 +170754857571,223,0 +170754857621,222,0 +170754857669,223,0 +170754857718,221,0 +170754857768,215,0 +170754857816,215,0 +170754857865,215,0 +170754857913,216,0 +170754857961,216,0 +170754858009,217,0 +170754858059,218,0 +170754858107,218,0 +170754858155,218,0 +170754858203,220,0 +170754858250,221,0 +170754858300,220,0 +170754858348,222,0 +170754858396,221,0 +170754858444,221,0 +170754858492,223,0 +170754858540,223,0 +170754858588,223,0 +170754858636,223,0 +170754858684,216,0 +170754858733,215,0 +170754858781,216,0 +170754858829,217,0 +170754858878,217,0 +170754858926,217,0 +170754858976,219,0 +170754859024,219,0 +170754859072,220,0 +170754859120,220,0 +170754859169,221,0 +170754859217,220,0 +170754859265,222,0 +170754859315,222,0 +170754859364,223,0 +170754859414,223,0 +170754859462,223,0 +170754859511,223,0 +170754859559,222,0 +170754859609,216,0 +170754859658,215,0 +170754859706,216,0 +170754859754,216,0 +170754859804,218,0 +170754859853,217,0 +170754859903,219,0 +170754859951,220,0 +170754860000,221,0 +170754860048,222,0 +170754860096,221,0 +170754860144,222,0 +170754860194,222,0 +170754860243,222,0 +170754860291,225,0 +170754860339,224,0 +170754860387,223,0 +170754860435,222,0 +170754860484,222,0 +170754860532,216,0 +170754860580,215,0 +170754860628,216,0 +170754860676,215,0 +170754860726,218,0 +170754860775,218,0 +170754860825,219,0 +170754860874,220,0 +170754860922,222,0 +170754860970,221,0 +170754861018,220,0 +170754861066,223,0 +170754861114,224,0 +170754861164,223,0 +170754861212,224,0 +170754861261,223,0 +170754861309,223,0 +170754861359,223,0 +170754861407,222,0 +170754861456,220,0 +170754861506,215,0 +170754861554,215,0 +170754861601,214,0 +170754861649,215,0 +170754861697,216,0 +170754861745,217,0 +170754861795,218,0 +170754861844,218,0 +170754861892,219,0 +170754861942,219,0 +170754861991,220,0 +170754862039,220,0 +170754862089,221,0 +170754862137,222,0 +170754862185,226,0 +170754862233,222,0 +170754862282,222,0 +170754862330,222,0 +170754862378,223,0 +170754862428,216,0 +170754862475,215,0 +170754862523,215,0 +170754862573,216,0 +170754862622,217,0 +170754862670,217,0 +170754862720,218,0 +170754862768,218,0 +170754862816,219,0 +170754862864,221,0 +170754862913,220,0 +170754862963,221,0 +170754863011,221,0 +170754863060,221,0 +170754863108,223,0 +170754863158,223,0 +170754863207,223,0 +170754863257,223,0 +170754863305,222,0 +170754863353,216,0 +170754863401,214,0 +170754863450,214,0 +170754863500,216,0 +170754863548,217,0 +170754863595,218,0 +170754863643,218,0 +170754863691,218,0 +170754863739,218,0 +170754863789,221,0 +170754863838,220,0 +170754863886,221,0 +170754863934,221,0 +170754863984,222,0 +170754864033,222,0 +170754864083,222,0 +170754864131,222,0 +170754864180,223,0 +170754864230,222,0 +170754864279,216,0 +170754864329,214,0 +170754864378,215,0 +170754864426,215,0 +170754864476,216,0 +170754864524,217,0 +170754864572,216,0 +170754864621,217,0 +170754864671,218,0 +170754864719,219,0 +170754864767,220,0 +170754864816,221,0 +170754864866,222,0 +170754864915,223,0 +170754864963,222,0 +170754865011,223,0 +170754865059,223,0 +170754865109,223,0 +170754865158,222,0 +170754865208,217,0 +170754865256,215,0 +170754865305,214,0 +170754865355,215,0 +170754865403,215,0 +170754865452,216,0 +170754865500,217,0 +170754865550,217,0 +170754865599,217,0 +170754865647,219,0 +170754865695,219,0 +170754865743,220,0 +170754865793,220,0 +170754865841,222,0 +170754865889,222,0 +170754865937,221,0 +170754865985,222,0 +170754866034,222,0 +170754866082,223,0 +170754866131,221,0 +170754866179,215,0 +170754866227,215,0 +170754866275,214,0 +170754866323,215,0 +170754866371,216,0 +170754866419,216,0 +170754866466,217,0 +170754866514,218,0 +170754866562,218,0 +170754866610,219,0 +170754866660,220,0 +170754866707,221,0 +170754866755,221,0 +170754866803,222,0 +170754866853,222,0 +170754866901,222,0 +170754866949,223,0 +170754866997,223,0 +170754867046,222,0 +170754867096,216,0 +170754867145,214,0 +170754867195,215,0 +170754867243,216,0 +170754867291,216,0 +170754867339,216,0 +170754867387,217,0 +170754867436,218,0 +170754867484,219,0 +170754867532,219,0 +170754867581,219,0 +170754867629,221,0 +170754867677,221,0 +170754867725,223,0 +170754867774,223,0 +170754867824,222,0 +170754867872,222,0 +170754867920,223,0 +170754867968,222,0 +170754868016,219,0 +170754868064,215,0 +170754868112,215,0 +170754868159,216,0 +170754868207,216,0 +170754868255,216,0 +170754868305,217,0 +170754868353,217,0 +170754868401,219,0 +170754868449,219,0 +170754868497,219,0 +170754868546,220,0 +170754868596,222,0 +170754868644,222,0 +170754868693,222,0 +170754868741,223,0 +170754868791,222,0 +170754868840,223,0 +170754868890,223,0 +170754868939,221,0 +170754868989,215,0 +170754869037,215,0 +170754869085,214,0 +170754869134,215,0 +170754869182,216,0 +170754869232,217,0 +170754869281,217,0 +170754869331,218,0 +170754869379,219,0 +170754869428,220,0 +170754869476,219,0 +170754869525,220,0 +170754869573,221,0 +170754869621,222,0 +170754869669,221,0 +170754869717,222,0 +170754869767,222,0 +170754869815,222,0 +170754869863,220,0 +170754869910,215,0 +170754869958,214,0 +170754870006,215,0 +170754870054,215,0 +170754870104,215,0 +170754870153,216,0 +170754870203,215,0 +170754870251,215,0 +170754870299,217,0 +170754870347,217,0 +170754870395,217,0 +170754870443,218,0 +170754870492,218,0 +170754870540,220,0 +170754870590,220,0 +170754870637,220,0 +170754870687,220,0 +170754870736,221,0 +170754870784,222,0 +170754870834,216,0 +170754870882,215,0 +170754870930,215,0 +170754870979,216,0 +170754871029,216,0 +170754871078,217,0 +170754871128,217,0 +170754871177,217,0 +170754871225,218,0 +170754871275,219,0 +170754871323,220,0 +170754871371,220,0 +170754871418,221,0 +170754871466,221,0 +170754871514,222,0 +170754871562,223,0 +170754871612,223,0 +170754871660,222,0 +170754871708,222,0 +170754871756,220,0 +170754871805,215,0 +170754871853,215,0 +170754871901,216,0 +170754871951,216,0 +170754872000,217,0 +170754872050,218,0 +170754872098,218,0 +170754872147,218,0 +170754872195,219,0 +170754872243,221,0 +170754872291,221,0 +170754872339,223,0 +170754872389,224,0 +170754872437,224,0 +170754872486,223,0 +170754872535,223,0 +170754872585,223,0 +170754872633,222,0 +170754872682,222,0 +170754872730,215,0 +170754872780,215,0 +170754872828,216,0 +170754872876,217,0 +170754872923,216,0 +170754872971,217,0 +170754873019,217,0 +170754873067,218,0 +170754873115,219,0 +170754873163,220,0 +170754873212,220,0 +170754873260,221,0 +170754873308,221,0 +170754873356,221,0 +170754873404,222,0 +170754873452,223,0 +170754873501,223,0 +170754873549,222,0 +170754873599,222,0 +170754873648,216,0 +170754873698,215,0 +170754873747,215,0 +170754873795,216,0 +170754873845,216,0 +170754873894,217,0 +170754873944,217,0 +170754873992,218,0 +170754874040,219,0 +170754874089,220,0 +170754874139,219,0 +170754874186,222,0 +170754874234,221,0 +170754874282,223,0 +170754874330,223,0 +170754874378,222,0 +170754874427,223,0 +170754874475,222,0 +170754874523,222,0 +170754874571,216,0 +170754874619,214,0 +170754874667,214,0 +170754874715,215,0 +170754874763,215,0 +170754874810,216,0 +170754874858,217,0 +170754874906,217,0 +170754874956,218,0 +170754875003,220,0 +170754875051,220,0 +170754875099,220,0 +170754875147,220,0 +170754875197,221,0 +170754875244,221,0 +170754875292,222,0 +170754875340,222,0 +170754875388,222,0 +170754875436,222,0 +170754875484,222,0 +170754875532,215,0 +170754875580,215,0 +170754875628,215,0 +170754875677,216,0 +170754875725,216,0 +170754875775,217,0 +170754875823,218,0 +170754875871,218,0 +170754875919,220,0 +170754875967,220,0 +170754876016,220,0 +170754876066,221,0 +170754876114,222,0 +170754876163,221,0 +170754876211,223,0 +170754876261,222,0 +170754876310,222,0 +170754876360,222,0 +170754876409,222,0 +170754876459,215,0 +170754876508,214,0 +170754876558,214,0 +170754876606,215,0 +170754876655,215,0 +170754876703,216,0 +170754876751,216,0 +170754876799,216,0 +170754876849,218,0 +170754876898,218,0 +170754876947,220,0 +170754876995,221,0 +170754877045,221,0 +170754877093,221,0 +170754877141,222,0 +170754877190,222,0 +170754877238,222,0 +170754877286,221,0 +170754877334,223,0 +170754877384,216,0 +170754877433,215,0 +170754877481,215,0 +170754877530,216,0 +170754877580,216,0 +170754877628,217,0 +170754877677,218,0 +170754877725,218,0 +170754877773,220,0 +170754877823,220,0 +170754877871,220,0 +170754877919,220,0 +170754877968,221,0 +170754878018,222,0 +170754878066,223,0 +170754878114,222,0 +170754878162,224,0 +170754878211,224,0 +170754878259,222,0 +170754878309,221,0 +170754878357,215,0 +170754878405,215,0 +170754878452,215,0 +170754878500,215,0 +170754878550,216,0 +170754878598,215,0 +170754878646,216,0 +170754878694,218,0 +170754878742,218,0 +170754878789,219,0 +170754878839,219,0 +170754878887,220,0 +170754878936,222,0 +170754878984,222,0 +170754879032,222,0 +170754879080,222,0 +170754879128,223,0 +170754879176,222,0 +170754879224,222,0 +170754879272,215,0 +170754879320,215,0 +170754879368,215,0 +170754879416,215,0 +170754879464,215,0 +170754879513,215,0 +170754879561,216,0 +170754879611,216,0 +170754879660,217,0 +170754879708,218,0 +170754879756,220,0 +170754879804,220,0 +170754879852,221,0 +170754879900,223,0 +170754879948,223,0 +170754879996,222,0 +170754880044,223,0 +170754880093,222,0 +170754880141,224,0 +170754880191,216,0 +170754880239,214,0 +170754880287,214,0 +170754880336,215,0 +170754880384,215,0 +170754880434,215,0 +170754880483,215,0 +170754880533,215,0 +170754880582,216,0 +170754880630,216,0 +170754880678,217,0 +170754880728,219,0 +170754880775,220,0 +170754880823,220,0 +170754880871,220,0 +170754880919,224,0 +170754880967,222,0 +170754881015,222,0 +170754881065,223,0 +170754881113,222,0 +170754881161,215,0 +170754881209,214,0 +170754881258,215,0 +170754881306,215,0 +170754881356,215,0 +170754881404,214,0 +170754881453,215,0 +170754881501,216,0 +170754881550,216,0 +170754881598,217,0 +170754881646,218,0 +170754881696,217,0 +170754881744,219,0 +170754881792,220,0 +170754881840,221,0 +170754881888,220,0 +170754881936,221,0 +170754881984,223,0 +170754882032,222,0 +170754882080,216,0 +170754882127,215,0 +170754882175,216,0 +170754882225,217,0 +170754882273,219,0 +170754882322,216,0 +170754882372,218,0 +170754882421,218,0 +170754882469,219,0 +170754882517,218,0 +170754882567,221,0 +170754882616,223,0 +170754882666,222,0 +170754882715,223,0 +170754882765,223,0 +170754882813,225,0 +170754882861,225,0 +170754882909,224,0 +170754882958,228,0 +170754883008,216,0 +170754883056,216,0 +170754883105,217,0 +170754883155,218,0 +170754883203,218,0 +170754883252,219,0 +170754883300,219,0 +170754883350,219,0 +170754883399,221,0 +170754883447,221,0 +170754883495,221,0 +170754883544,222,0 +170754883592,223,0 +170754883640,222,0 +170754883690,221,0 +170754883738,223,0 +170754883787,225,0 +170754883835,223,0 +170754883885,222,0 +170754883933,217,0 +170754883981,216,0 +170754884029,217,0 +170754884077,217,0 +170754884126,219,0 +170754884174,219,0 +170754884222,219,0 +170754884271,220,0 +170754884319,221,0 +170754884367,221,0 +170754884415,223,0 +170754884463,223,0 +170754884511,223,0 +170754884559,223,0 +170754884609,223,0 +170754884657,225,0 +170754884706,224,0 +170754884755,223,0 +170754884803,223,0 +170754884851,222,0 +170754884899,215,0 +170754884947,216,0 +170754884995,216,0 +170754885045,217,0 +170754885093,217,0 +170754885140,215,0 +170754885188,220,0 +170754885236,219,0 +170754885284,221,0 +170754885334,221,0 +170754885383,221,0 +170754885433,222,0 +170754885481,222,0 +170754885530,223,0 +170754885580,224,0 +170754885629,223,0 +170754885677,223,0 +170754885725,224,0 +170754885773,222,0 +170754885821,215,0 +170754885871,215,0 +170754885920,214,0 +170754885968,216,0 +170754886016,216,0 +170754886064,217,0 +170754886112,217,0 +170754886161,218,0 +170754886209,218,0 +170754886257,219,0 +170754886305,220,0 +170754886353,221,0 +170754886401,221,0 +170754886451,221,0 +170754886498,222,0 +170754886548,225,0 +170754886596,224,0 +170754886645,223,0 +170754886693,222,0 +170754886741,216,0 +170754886789,214,0 +170754886839,215,0 +170754886887,216,0 +170754886935,216,0 +170754886983,216,0 +170754887032,215,0 +170754887082,217,0 +170754887130,218,0 +170754887178,218,0 +170754887227,219,0 +170754887275,219,0 +170754887323,222,0 +170754887373,221,0 +170754887421,222,0 +170754887468,223,0 +170754887518,223,0 +170754887566,222,0 +170754887614,223,0 +170754887662,222,0 +170754887710,215,0 +170754887759,215,0 +170754887809,215,0 +170754887858,216,0 +170754887908,216,0 +170754887956,217,0 +170754888005,217,0 +170754888055,218,0 +170754888103,219,0 +170754888152,220,0 +170754888202,221,0 +170754888250,222,0 +170754888299,222,0 +170754888347,222,0 +170754888395,222,0 +170754888445,222,0 +170754888493,222,0 +170754888541,222,0 +170754888590,223,0 +170754888638,215,0 +170754888686,215,0 +170754888734,215,0 +170754888783,216,0 +170754888833,217,0 +170754888881,218,0 +170754888929,218,0 +170754888978,218,0 +170754889026,219,0 +170754889074,220,0 +170754889122,221,0 +170754889172,222,0 +170754889220,222,0 +170754889267,222,0 +170754889315,223,0 +170754889365,223,0 +170754889415,223,0 +170754889462,223,0 +170754889512,222,0 +170754889560,215,0 +170754889609,214,0 +170754889657,215,0 +170754889707,216,0 +170754889755,218,0 +170754889804,217,0 +170754889852,218,0 +170754889902,218,0 +170754889951,219,0 +170754889999,219,0 +170754890049,220,0 +170754890098,220,0 +170754890146,221,0 +170754890196,223,0 +170754890245,222,0 +170754890295,223,0 +170754890344,222,0 +170754890392,223,0 +170754890442,222,0 +170754890490,216,0 +170754890539,214,0 +170754890587,215,0 +170754890635,214,0 +170754890683,215,0 +170754890731,216,0 +170754890779,216,0 +170754890827,217,0 +170754890877,218,0 +170754890924,218,0 +170754890972,219,0 +170754891020,221,0 +170754891070,221,0 +170754891120,221,0 +170754891169,222,0 +170754891217,222,0 +170754891267,222,0 +170754891316,223,0 +170754891366,222,0 +170754891415,216,0 +170754891465,214,0 +170754891514,214,0 +170754891564,215,0 +170754891612,215,0 +170754891660,215,0 +170754891708,216,0 +170754891755,216,0 +170754891803,217,0 +170754891853,217,0 +170754891902,219,0 +170754891950,219,0 +170754891998,220,0 +170754892048,221,0 +170754892097,222,0 +170754892145,224,0 +170754892193,222,0 +170754892243,222,0 +170754892291,223,0 +170754892339,222,0 +170754892388,215,0 +170754892436,214,0 +170754892484,215,0 +170754892534,215,0 +170754892581,215,0 +170754892629,216,0 +170754892677,216,0 +170754892725,217,0 +170754892773,218,0 +170754892823,218,0 +170754892871,219,0 +170754892919,220,0 +170754892968,221,0 +170754893016,221,0 +170754893064,220,0 +170754893112,221,0 +170754893160,224,0 +170754893208,223,0 +170754893256,222,0 +170754893304,216,0 +170754893353,215,0 +170754893403,215,0 +170754893451,214,0 +170754893499,215,0 +170754893547,216,0 +170754893596,217,0 +170754893644,217,0 +170754893694,218,0 +170754893743,219,0 +170754893791,220,0 +170754893839,221,0 +170754893887,221,0 +170754893935,223,0 +170754893983,222,0 +170754894031,225,0 +170754894079,221,0 +170754894127,223,0 +170754894175,222,0 +170754894222,222,0 +170754894270,215,0 +170754894318,215,0 +170754894368,215,0 +170754894416,215,0 +170754894464,216,0 +170754894513,216,0 +170754894561,217,0 +170754894611,217,0 +170754894659,218,0 +170754894707,219,0 +170754894755,220,0 +170754894804,220,0 +170754894854,222,0 +170754894903,222,0 +170754894953,220,0 +170754895002,222,0 +170754895052,223,0 +170754895101,223,0 +170754895149,223,0 +170754895199,215,0 +170754895247,215,0 +170754895295,214,0 +170754895343,215,0 +170754895392,215,0 +170754895440,216,0 +170754895489,217,0 +170754895537,218,0 +170754895585,219,0 +170754895635,219,0 +170754895684,220,0 +170754895734,221,0 +170754895782,221,0 +170754895831,223,0 +170754895881,223,0 +170754895929,223,0 +170754895979,224,0 +170754896028,223,0 +170754896076,221,0 +170754896124,216,0 +170754896172,214,0 +170754896221,215,0 +170754896269,216,0 +170754896319,216,0 +170754896368,216,0 +170754896418,217,0 +170754896467,217,0 +170754896515,218,0 +170754896563,220,0 +170754896611,220,0 +170754896661,221,0 +170754896709,221,0 +170754896757,222,0 +170754896805,222,0 +170754896853,221,0 +170754896901,222,0 +170754896950,222,0 +170754896998,222,0 +170754897048,216,0 +170754897096,215,0 +170754897144,215,0 +170754897193,215,0 +170754897241,216,0 +170754897291,216,0 +170754897340,218,0 +170754897390,216,0 +170754897438,219,0 +170754897486,221,0 +170754897535,220,0 +170754897583,222,0 +170754897633,222,0 +170754897681,222,0 +170754897729,225,0 +170754897778,219,0 +170754897826,221,0 +170754897876,223,0 +170754897925,222,0 +170754897973,216,0 +170754898021,215,0 +170754898069,216,0 +170754898119,216,0 +170754898168,217,0 +170754898216,218,0 +170754898266,218,0 +170754898315,219,0 +170754898365,220,0 +170754898412,221,0 +170754898460,221,0 +170754898510,221,0 +170754898558,222,0 +170754898607,222,0 +170754898655,223,0 +170754898705,223,0 +170754898753,222,0 +170754898801,222,0 +170754898850,223,0 +170754898898,222,0 +170754898946,214,0 +170754898994,216,0 +170754899042,216,0 +170754899090,217,0 +170754899138,218,0 +170754899186,218,0 +170754899234,219,0 +170754899283,220,0 +170754899331,220,0 +170754899379,220,0 +170754899427,221,0 +170754899477,221,0 +170754899526,221,0 +170754899574,221,0 +170754899622,223,0 +170754899671,222,0 +170754899720,223,0 +170754899768,222,0 +170754899818,222,0 +170754899866,215,0 +170754899913,214,0 +170754899961,214,0 +170754900009,215,0 +170754900059,216,0 +170754900108,216,0 +170754900156,217,0 +170754900204,218,0 +170754900254,218,0 +170754900303,218,0 +170754900351,219,0 +170754900399,221,0 +170754900449,221,0 +170754900497,222,0 +170754900545,222,0 +170754900593,222,0 +170754900641,222,0 +170754900688,223,0 +170754900736,222,0 +170754900784,216,0 +170754900834,215,0 +170754900882,214,0 +170754900931,215,0 +170754900981,215,0 +170754901030,215,0 +170754901078,216,0 +170754901128,216,0 +170754901176,217,0 +170754901224,218,0 +170754901272,218,0 +170754901319,219,0 +170754901367,220,0 +170754901417,220,0 +170754901465,221,0 +170754901513,221,0 +170754901562,221,0 +170754901610,222,0 +170754901658,223,0 +170754901706,222,0 +170754901754,215,0 +170754901802,214,0 +170754901852,215,0 +170754901900,215,0 +170754901948,216,0 +170754901995,217,0 +170754902043,217,0 +170754902093,215,0 +170754902141,218,0 +170754902190,218,0 +170754902238,219,0 +170754902288,220,0 +170754902337,220,0 +170754902385,220,0 +170754902435,221,0 +170754902483,219,0 +170754902531,222,0 +170754902580,222,0 +170754902628,222,0 +170754902676,216,0 +170754902724,215,0 +170754902772,215,0 +170754902822,216,0 +170754902870,217,0 +170754902919,217,0 +170754902967,217,0 +170754903015,218,0 +170754903064,218,0 +170754903114,219,0 +170754903163,220,0 +170754903213,220,0 +170754903263,217,0 +170754903311,219,0 +170754903358,222,0 +170754903406,223,0 +170754903454,224,0 +170754903502,232,0 +170754903552,223,0 +170754903600,215,0 +170754903648,215,0 +170754903697,216,0 +170754903747,214,0 +170754903795,216,0 +170754903843,218,0 +170754903890,218,0 +170754903938,219,0 +170754903988,220,0 +170754904036,220,0 +170754904084,221,0 +170754904133,222,0 +170754904183,223,0 +170754904232,225,0 +170754904280,224,0 +170754904328,223,0 +170754904376,225,0 +170754904424,223,0 +170754904472,223,0 +170754904520,216,0 +170754904569,215,0 +170754904619,216,0 +170754904668,216,0 +170754904716,217,0 +170754904764,218,0 +170754904812,218,0 +170754904860,218,0 +170754904910,219,0 +170754904958,220,0 +170754905007,220,0 +170754905055,222,0 +170754905103,223,0 +170754905151,223,0 +170754905199,222,0 +170754905248,223,0 +170754905296,224,0 +170754905346,224,0 +170754905394,223,0 +170754905442,222,0 +170754905489,215,0 +170754905537,214,0 +170754905587,215,0 +170754905635,216,0 +170754905684,216,0 +170754905734,217,0 +170754905782,217,0 +170754905830,218,0 +170754905878,219,0 +170754905926,219,0 +170754905973,220,0 +170754906021,220,0 +170754906069,222,0 +170754906117,222,0 +170754906167,223,0 +170754906215,223,0 +170754906264,224,0 +170754906312,223,0 +170754906360,223,0 +170754906408,215,0 +170754906456,216,0 +170754906504,216,0 +170754906552,217,0 +170754906601,218,0 +170754906651,217,0 +170754906699,218,0 +170754906747,219,0 +170754906795,220,0 +170754906843,220,0 +170754906892,221,0 +170754906940,221,0 +170754906988,222,0 +170754907037,222,0 +170754907085,222,0 +170754907135,223,0 +170754907184,224,0 +170754907234,223,0 +170754907282,224,0 +170754907330,222,0 +170754907378,216,0 +170754907426,216,0 +170754907474,217,0 +170754907521,218,0 +170754907569,219,0 +170754907619,221,0 +170754907668,221,0 +170754907716,220,0 +170754907764,221,0 +170754907814,222,0 +170754907862,222,0 +170754907910,222,0 +170754907958,223,0 +170754908007,222,0 +170754908055,222,0 +170754908103,223,0 +170754908151,223,0 +170754908199,223,0 +170754908247,222,0 +170754908295,216,0 +170754908343,214,0 +170754908391,215,0 +170754908439,215,0 +170754908487,216,0 +170754908536,217,0 +170754908584,219,0 +170754908632,219,0 +170754908680,220,0 +170754908729,220,0 +170754908777,221,0 +170754908825,221,0 +170754908875,222,0 +170754908924,222,0 +170754908974,225,0 +170754909023,223,0 +170754909071,223,0 +170754909119,223,0 +170754909167,222,0 +170754909215,216,0 +170754909265,215,0 +170754909314,214,0 +170754909364,215,0 +170754909413,215,0 +170754909461,216,0 +170754909511,216,0 +170754909559,216,0 +170754909607,217,0 +170754909656,217,0 +170754909706,221,0 +170754909755,219,0 +170754909803,220,0 +170754909851,221,0 +170754909900,221,0 +170754909950,223,0 +170754909998,223,0 +170754910047,223,0 +170754910095,223,0 +170754910145,216,0 +170754910194,215,0 +170754910244,215,0 +170754910292,215,0 +170754910340,215,0 +170754910388,216,0 +170754910436,217,0 +170754910484,217,0 +170754910533,218,0 +170754910581,219,0 +170754910629,220,0 +170754910677,221,0 +170754910725,220,0 +170754910774,221,0 +170754910824,222,0 +170754910872,222,0 +170754910921,222,0 +170754910969,222,0 +170754911019,223,0 +170754911068,220,0 +170754911116,214,0 +170754911166,214,0 +170754911216,214,0 +170754911264,215,0 +170754911313,216,0 +170754911361,217,0 +170754911409,217,0 +170754911457,218,0 +170754911507,218,0 +170754911555,220,0 +170754911604,219,0 +170754911653,223,0 +170754911701,222,0 +170754911751,222,0 +170754911799,223,0 +170754911847,222,0 +170754911895,222,0 +170754911943,222,0 +170754911991,222,0 +170754912039,216,0 +170754912087,215,0 +170754912136,216,0 +170754912184,215,0 +170754912232,215,0 +170754912280,216,0 +170754912328,216,0 +170754912376,220,0 +170754912424,217,0 +170754912472,218,0 +170754912520,219,0 +170754912569,220,0 +170754912617,221,0 +170754912665,221,0 +170754912713,223,0 +170754912761,224,0 +170754912809,222,0 +170754912859,222,0 +170754912907,223,0 +170754912955,216,0 +170754913004,214,0 +170754913052,214,0 +170754913100,215,0 +170754913150,215,0 +170754913199,215,0 +170754913249,215,0 +170754913297,216,0 +170754913345,217,0 +170754913394,218,0 +170754913442,219,0 +170754913490,219,0 +170754913538,221,0 +170754913587,220,0 +170754913635,221,0 +170754913685,222,0 +170754913734,222,0 +170754913784,222,0 +170754913833,223,0 +170754913881,221,0 +170754913931,214,0 +170754913979,214,0 +170754914027,214,0 +170754914075,214,0 +170754914124,215,0 +170754914172,215,0 +170754914220,215,0 +170754914268,215,0 +170754914316,216,0 +170754914364,217,0 +170754914413,218,0 +170754914463,219,0 +170754914512,220,0 +170754914561,220,0 +170754914609,221,0 +170754914659,222,0 +170754914708,222,0 +170754914756,223,0 +170754914804,222,0 +170754914852,215,0 +170754914900,214,0 +170754914948,214,0 +170754914996,215,0 +170754915045,215,0 +170754915093,215,0 +170754915141,216,0 +170754915189,215,0 +170754915237,214,0 +170754915285,217,0 +170754915334,217,0 +170754915384,218,0 +170754915432,219,0 +170754915481,220,0 +170754915531,221,0 +170754915580,220,0 +170754915630,221,0 +170754915679,221,0 +170754915727,222,0 +170754915775,216,0 +170754915823,215,0 +170754915871,216,0 +170754915920,216,0 +170754915968,216,0 +170754916016,217,0 +170754916064,217,0 +170754916112,218,0 +170754916160,219,0 +170754916208,218,0 +170754916256,220,0 +170754916304,220,0 +170754916353,222,0 +170754916401,222,0 +170754916451,222,0 +170754916499,223,0 +170754916546,223,0 +170754916594,222,0 +170754916642,223,0 +170754916692,219,0 +170754916741,215,0 +170754916789,215,0 +170754916837,216,0 +170754916887,216,0 +170754916935,216,0 +170754916983,217,0 +170754917031,217,0 +170754917080,218,0 +170754917128,220,0 +170754917176,220,0 +170754917224,220,0 +170754917272,221,0 +170754917322,223,0 +170754917370,224,0 +170754917417,222,0 +170754917465,223,0 +170754917513,223,0 +170754917561,223,0 +170754917611,222,0 +170754917660,215,0 +170754917708,216,0 +170754917758,216,0 +170754917807,217,0 +170754917855,217,0 +170754917903,218,0 +170754917951,218,0 +170754917999,217,0 +170754918049,219,0 +170754918097,221,0 +170754918145,221,0 +170754918193,221,0 +170754918240,221,0 +170754918290,222,0 +170754918338,223,0 +170754918387,223,0 +170754918435,223,0 +170754918485,223,0 +170754918534,222,0 +170754918582,216,0 +170754918630,215,0 +170754918678,215,0 +170754918726,216,0 +170754918774,217,0 +170754918822,218,0 +170754918870,218,0 +170754918920,218,0 +170754918968,219,0 +170754919017,220,0 +170754919067,222,0 +170754919115,221,0 +170754919165,222,0 +170754919214,222,0 +170754919262,222,0 +170754919310,223,0 +170754919360,223,0 +170754919408,222,0 +170754919456,222,0 +170754919505,216,0 +170754919555,215,0 +170754919604,215,0 +170754919652,216,0 +170754919702,217,0 +170754919749,218,0 +170754919797,218,0 +170754919847,219,0 +170754919895,220,0 +170754919944,220,0 +170754919992,221,0 +170754920040,220,0 +170754920090,222,0 +170754920138,222,0 +170754920187,222,0 +170754920237,222,0 +170754920285,223,0 +170754920333,223,0 +170754920382,222,0 +170754920432,222,0 +170754920480,215,0 +170754920529,215,0 +170754920577,216,0 +170754920625,217,0 +170754920673,218,0 +170754920721,218,0 +170754920769,219,0 +170754920817,219,0 +170754920865,220,0 +170754920914,221,0 +170754920962,222,0 +170754921012,222,0 +170754921061,222,0 +170754921111,222,0 +170754921159,222,0 +170754921208,223,0 +170754921258,223,0 +170754921308,223,0 +170754921357,222,0 +170754921405,215,0 +170754921454,215,0 +170754921504,215,0 +170754921554,215,0 +170754921603,216,0 +170754921653,217,0 +170754921700,217,0 +170754921750,218,0 +170754921798,219,0 +170754921846,220,0 +170754921894,220,0 +170754921942,221,0 +170754921990,222,0 +170754922038,222,0 +170754922086,221,0 +170754922134,223,0 +170754922183,222,0 +170754922231,223,0 +170754922281,223,0 +170754922329,215,0 +170754922378,215,0 +170754922426,215,0 +170754922474,216,0 +170754922522,217,0 +170754922570,217,0 +170754922619,218,0 +170754922669,219,0 +170754922718,219,0 +170754922766,220,0 +170754922814,220,0 +170754922864,223,0 +170754922912,222,0 +170754922960,223,0 +170754923009,223,0 +170754923057,222,0 +170754923107,222,0 +170754923155,223,0 +170754923204,222,0 +170754923252,216,0 +170754923300,214,0 +170754923348,215,0 +170754923397,215,0 +170754923445,216,0 +170754923493,216,0 +170754923541,217,0 +170754923589,217,0 +170754923637,218,0 +170754923685,219,0 +170754923733,219,0 +170754923781,222,0 +170754923829,221,0 +170754923877,222,0 +170754923925,223,0 +170754923974,223,0 +170754924022,223,0 +170754924070,222,0 +170754924118,223,0 +170754924168,217,0 +170754924216,215,0 +170754924264,215,0 +170754924311,215,0 +170754924361,215,0 +170754924409,216,0 +170754924457,217,0 +170754924505,218,0 +170754924553,218,0 +170754924601,218,0 +170754924650,219,0 +170754924698,220,0 +170754924746,220,0 +170754924794,221,0 +170754924842,221,0 +170754924890,222,0 +170754924938,223,0 +170754924986,223,0 +170754925035,223,0 +170754925083,223,0 +170754925131,215,0 +170754925179,215,0 +170754925227,215,0 +170754925275,217,0 +170754925323,215,0 +170754925372,216,0 +170754925420,217,0 +170754925470,218,0 +170754925519,219,0 +170754925569,218,0 +170754925617,221,0 +170754925665,220,0 +170754925713,223,0 +170754925761,222,0 +170754925810,222,0 +170754925858,224,0 +170754925906,223,0 +170754925954,225,0 +170754926003,223,0 +170754926051,216,0 +170754926099,214,0 +170754926147,215,0 +170754926195,215,0 +170754926243,215,0 +170754926293,216,0 +170754926342,217,0 +170754926390,217,0 +170754926438,217,0 +170754926486,219,0 +170754926534,220,0 +170754926584,220,0 +170754926632,223,0 +170754926680,220,0 +170754926728,222,0 +170754926775,224,0 +170754926823,224,0 +170754926873,223,0 +170754926922,223,0 +170754926970,220,0 +170754927020,214,0 +170754927068,214,0 +170754927116,215,0 +170754927164,216,0 +170754927212,215,0 +170754927260,216,0 +170754927309,217,0 +170754927357,218,0 +170754927405,218,0 +170754927455,219,0 +170754927502,219,0 +170754927550,221,0 +170754927598,220,0 +170754927646,222,0 +170754927696,223,0 +170754927745,222,0 +170754927795,223,0 +170754927843,222,0 +170754927891,222,0 +170754927940,215,0 +170754927990,214,0 +170754928038,215,0 +170754928086,215,0 +170754928134,215,0 +170754928182,215,0 +170754928231,216,0 +170754928279,217,0 +170754928329,217,0 +170754928377,218,0 +170754928425,219,0 +170754928473,220,0 +170754928521,221,0 +170754928569,221,0 +170754928617,221,0 +170754928664,223,0 +170754928712,222,0 +170754928760,222,0 +170754928810,222,0 +170754928858,216,0 +170754928906,215,0 +170754928954,214,0 +170754929003,215,0 +170754929051,215,0 +170754929099,216,0 +170754929147,216,0 +170754929195,217,0 +170754929245,217,0 +170754929293,218,0 +170754929341,218,0 +170754929389,220,0 +170754929438,219,0 +170754929486,219,0 +170754929536,220,0 +170754929585,221,0 +170754929633,221,0 +170754929681,221,0 +170754929729,223,0 +170754929779,216,0 +170754929827,216,0 +170754929876,217,0 +170754929926,217,0 +170754929974,217,0 +170754930022,219,0 +170754930070,220,0 +170754930119,216,0 +170754930169,220,0 +170754930217,220,0 +170754930265,221,0 +170754930313,221,0 +170754930361,222,0 +170754930410,222,0 +170754930460,223,0 +170754930507,224,0 +170754930557,223,0 +170754930605,223,0 +170754930655,223,0 +170754930704,216,0 +170754930752,216,0 +170754930800,216,0 +170754930850,217,0 +170754930898,218,0 +170754930946,218,0 +170754930993,219,0 +170754931041,219,0 +170754931091,221,0 +170754931139,220,0 +170754931187,222,0 +170754931234,222,0 +170754931282,222,0 +170754931330,225,0 +170754931378,223,0 +170754931427,222,0 +170754931475,224,0 +170754931523,223,0 +170754931573,222,0 +170754931622,222,0 +170754931670,217,0 +170754931718,216,0 +170754931766,216,0 +170754931814,219,0 +170754931862,219,0 +170754931910,220,0 +170754931958,220,0 +170754932006,221,0 +170754932054,222,0 +170754932103,222,0 +170754932151,221,0 +170754932199,222,0 +170754932249,222,0 +170754932298,224,0 +170754932346,223,0 +170754932394,223,0 +170754932442,223,0 +170754932491,223,0 +170754932539,222,0 +170754932589,215,0 +170754932637,215,0 +170754932685,215,0 +170754932733,216,0 +170754932781,217,0 +170754932829,217,0 +170754932877,218,0 +170754932926,219,0 +170754932974,221,0 +170754933024,221,0 +170754933072,221,0 +170754933120,222,0 +170754933168,222,0 +170754933216,223,0 +170754933265,222,0 +170754933315,224,0 +170754933363,224,0 +170754933410,223,0 +170754933460,223,0 +170754933509,216,0 +170754933557,215,0 +170754933605,215,0 +170754933653,216,0 +170754933701,216,0 +170754933749,219,0 +170754933799,217,0 +170754933847,218,0 +170754933895,219,0 +170754933943,220,0 +170754933992,220,0 +170754934040,221,0 +170754934088,222,0 +170754934138,222,0 +170754934187,222,0 +170754934236,223,0 +170754934286,225,0 +170754934335,223,0 +170754934385,222,0 +170754934433,222,0 +170754934481,214,0 +170754934529,214,0 +170754934577,215,0 +170754934626,215,0 +170754934674,217,0 +170754934724,218,0 +170754934772,218,0 +170754934820,219,0 +170754934868,219,0 +170754934916,220,0 +170754934965,220,0 +170754935013,222,0 +170754935061,222,0 +170754935111,222,0 +170754935160,220,0 +170754935210,223,0 +170754935258,223,0 +170754935305,222,0 +170754935355,222,0 +170754935403,215,0 +170754935452,214,0 +170754935500,215,0 +170754935550,215,0 +170754935598,216,0 +170754935647,216,0 +170754935695,216,0 +170754935743,217,0 +170754935791,220,0 +170754935841,220,0 +170754935889,220,0 +170754935937,220,0 +170754935986,222,0 +170754936034,223,0 +170754936084,223,0 +170754936133,223,0 +170754936183,222,0 +170754936231,222,0 +170754936280,222,0 +170754936329,215,0 +170754936377,214,0 +170754936425,214,0 +170754936473,215,0 +170754936521,214,0 +170754936569,215,0 +170754936618,216,0 +170754936666,217,0 +170754936714,217,0 +170754936762,219,0 +170754936812,219,0 +170754936860,220,0 +170754936909,219,0 +170754936959,221,0 +170754937008,222,0 +170754937056,221,0 +170754937104,222,0 +170754937152,222,0 +170754937201,223,0 +170754937249,215,0 +170754937297,214,0 +170754937345,214,0 +170754937393,215,0 +170754937441,215,0 +170754937488,216,0 +170754937536,217,0 +170754937584,218,0 +170754937632,217,0 +170754937682,218,0 +170754937731,218,0 +170754937779,220,0 +170754937827,221,0 +170754937875,222,0 +170754937923,222,0 +170754937971,223,0 +170754938020,224,0 +170754938068,224,0 +170754938118,224,0 +170754938166,220,0 +170754938215,215,0 +170754938263,215,0 +170754938313,215,0 +170754938362,215,0 +170754938410,216,0 +170754938460,217,0 +170754938508,217,0 +170754938555,217,0 +170754938603,219,0 +170754938653,221,0 +170754938701,221,0 +170754938749,221,0 +170754938798,221,0 +170754938846,222,0 +170754938894,223,0 +170754938944,223,0 +170754938992,223,0 +170754939040,223,0 +170754939089,222,0 +170754939139,214,0 +170754939188,215,0 +170754939236,215,0 +170754939284,215,0 +170754939332,215,0 +170754939380,217,0 +170754939430,216,0 +170754939478,218,0 +170754939527,218,0 +170754939577,218,0 +170754939625,220,0 +170754939673,223,0 +170754939720,222,0 +170754939768,222,0 +170754939818,223,0 +170754939867,223,0 +170754939915,221,0 +170754939965,222,0 +170754940013,222,0 +170754940061,215,0 +170754940109,215,0 +170754940158,215,0 +170754940206,216,0 +170754940256,216,0 +170754940304,216,0 +170754940352,217,0 +170754940401,218,0 +170754940451,218,0 +170754940498,219,0 +170754940546,220,0 +170754940594,220,0 +170754940642,221,0 +170754940690,221,0 +170754940738,222,0 +170754940786,222,0 +170754940834,222,0 +170754940882,223,0 +170754940930,223,0 +170754940978,216,0 +170754941027,214,0 +170754941075,215,0 +170754941125,215,0 +170754941173,215,0 +170754941222,215,0 +170754941272,216,0 +170754941320,216,0 +170754941368,217,0 +170754941416,218,0 +170754941464,219,0 +170754941512,220,0 +170754941560,221,0 +170754941609,221,0 +170754941659,222,0 +170754941707,223,0 +170754941755,222,0 +170754941804,224,0 +170754941854,223,0 +170754941902,222,0 +170754941950,214,0 +170754941997,214,0 +170754942047,214,0 +170754942096,215,0 +170754942144,216,0 +170754942192,217,0 +170754942240,217,0 +170754942288,218,0 +170754942336,219,0 +170754942384,219,0 +170754942434,220,0 +170754942482,222,0 +170754942531,221,0 +170754942581,222,0 +170754942630,222,0 +170754942680,222,0 +170754942728,223,0 +170754942776,222,0 +170754942825,222,0 +170754942873,215,0 +170754942921,215,0 +170754942969,216,0 +170754943017,217,0 +170754943067,217,0 +170754943115,218,0 +170754943163,219,0 +170754943210,219,0 +170754943260,220,0 +170754943308,221,0 +170754943357,221,0 +170754943407,222,0 +170754943455,223,0 +170754943503,222,0 +170754943552,222,0 +170754943602,222,0 +170754943650,223,0 +170754943699,223,0 +170754943749,222,0 +170754943797,215,0 +170754943845,215,0 +170754943893,215,0 +170754943942,215,0 +170754943992,215,0 +170754944041,217,0 +170754944089,217,0 +170754944137,218,0 +170754944187,218,0 +170754944235,219,0 +170754944282,220,0 +170754944332,220,0 +170754944381,221,0 +170754944429,221,0 +170754944477,222,0 +170754944525,222,0 +170754944575,221,0 +170754944623,223,0 +170754944672,222,0 +170754944722,215,0 +170754944770,214,0 +170754944818,214,0 +170754944865,215,0 +170754944915,215,0 +170754944965,214,0 +170754945014,216,0 +170754945064,217,0 +170754945111,218,0 +170754945161,218,0 +170754945209,218,0 +170754945257,220,0 +170754945305,221,0 +170754945354,221,0 +170754945404,222,0 +170754945452,222,0 +170754945500,223,0 +170754945547,222,0 +170754945597,223,0 +170754945647,216,0 +170754945696,215,0 +170754945746,216,0 +170754945794,214,0 +170754945841,215,0 +170754945891,215,0 +170754945939,215,0 +170754945987,216,0 +170754946035,216,0 +170754946083,216,0 +170754946130,217,0 +170754946178,218,0 +170754946228,219,0 +170754946276,220,0 +170754946324,220,0 +170754946372,221,0 +170754946419,221,0 +170754946467,220,0 +170754946515,222,0 +170754946563,224,0 +170754946611,214,0 +170754946659,215,0 +170754946708,215,0 +170754946756,215,0 +170754946804,215,0 +170754946852,216,0 +170754946900,216,0 +170754946948,217,0 +170754946996,218,0 +170754947044,219,0 +170754947093,219,0 +170754947141,220,0 +170754947189,220,0 +170754947237,222,0 +170754947286,222,0 +170754947336,222,0 +170754947383,222,0 +170754947431,222,0 +170754947479,222,0 +170754947527,215,0 +170754947575,215,0 +170754947623,215,0 +170754947671,215,0 +170754947719,216,0 +170754947769,216,0 +170754947818,217,0 +170754947866,218,0 +170754947914,219,0 +170754947963,220,0 +170754948013,220,0 +170754948061,221,0 +170754948109,221,0 +170754948158,221,0 +170754948206,222,0 +170754948256,222,0 +170754948305,222,0 +170754948353,223,0 +170754948403,222,0 +170754948451,216,0 +170754948500,214,0 +170754948550,215,0 +170754948599,215,0 +170754948647,216,0 +170754948695,216,0 +170754948743,217,0 +170754948791,217,0 +170754948839,219,0 +170754948887,219,0 +170754948936,219,0 +170754948986,220,0 +170754949035,222,0 +170754949083,222,0 +170754949131,223,0 +170754949179,222,0 +170754949229,223,0 +170754949278,224,0 +170754949326,222,0 +170754949376,216,0 +170754949424,215,0 +170754949472,215,0 +170754949521,215,0 +170754949571,216,0 +170754949619,216,0 +170754949668,214,0 +170754949716,214,0 +170754949766,217,0 +170754949814,220,0 +170754949862,220,0 +170754949911,220,0 +170754949959,222,0 +170754950007,222,0 +170754950057,222,0 +170754950104,222,0 +170754950152,222,0 +170754950200,224,0 +170754950250,223,0 +170754950299,216,0 +170754950347,215,0 +170754950397,215,0 +170754950445,215,0 +170754950493,217,0 +170754950541,218,0 +170754950590,218,0 +170754950638,218,0 +170754950686,218,0 +170754950734,218,0 +170754950782,218,0 +170754950832,220,0 +170754950880,221,0 +170754950929,221,0 +170754950979,222,0 +170754951028,223,0 +170754951076,222,0 +170754951125,222,0 +170754951173,223,0 +170754951223,221,0 +170754951272,215,0 +170754951320,215,0 +170754951368,216,0 +170754951418,216,0 +170754951467,217,0 +170754951517,217,0 +170754951565,218,0 +170754951613,219,0 +170754951661,219,0 +170754951709,220,0 +170754951758,221,0 +170754951808,223,0 +170754951857,222,0 +170754951907,223,0 +170754951955,223,0 +170754952004,227,0 +170754952052,223,0 +170754952102,223,0 +170754952150,222,0 +170754952199,215,0 +170754952249,215,0 +170754952298,216,0 +170754952346,217,0 +170754952396,218,0 +170754952444,218,0 +170754952492,219,0 +170754952540,217,0 +170754952588,219,0 +170754952636,220,0 +170754952685,221,0 +170754952733,222,0 +170754952783,223,0 +170754952830,223,0 +170754952880,224,0 +170754952930,223,0 +170754952979,223,0 +170754953029,224,0 +170754953078,222,0 +170754953126,215,0 +170754953176,216,0 +170754953224,216,0 +170754953272,217,0 +170754953321,216,0 +170754953371,217,0 +170754953418,219,0 +170754953466,219,0 +170754953516,219,0 +170754953566,221,0 +170754953613,222,0 +170754953661,221,0 +170754953709,223,0 +170754953757,226,0 +170754953805,223,0 +170754953855,223,0 +170754953904,222,0 +170754953954,223,0 +170754954003,223,0 +170754954051,216,0 +170754954099,216,0 +170754954147,216,0 +170754954195,218,0 +170754954245,218,0 +170754954294,219,0 +170754954344,219,0 +170754954393,220,0 +170754954443,221,0 +170754954492,221,0 +170754954540,222,0 +170754954588,221,0 +170754954638,222,0 +170754954685,223,0 +170754954735,223,0 +170754954783,224,0 +170754954831,223,0 +170754954880,223,0 +170754954928,222,0 +170754954976,216,0 +170754955026,215,0 +170754955074,216,0 +170754955123,216,0 +170754955171,219,0 +170754955221,219,0 +170754955270,219,0 +170754955318,220,0 +170754955366,220,0 +170754955416,221,0 +170754955464,221,0 +170754955513,222,0 +170754955561,222,0 +170754955611,224,0 +170754955660,223,0 +170754955708,223,0 +170754955756,219,0 +170754955804,223,0 +170754955852,222,0 +170754955902,216,0 +170754955951,215,0 +170754955999,214,0 +170754956047,215,0 +170754956097,215,0 +170754956145,215,0 +170754956192,216,0 +170754956240,218,0 +170754956290,218,0 +170754956338,218,0 +170754956386,220,0 +170754956434,220,0 +170754956482,221,0 +170754956529,221,0 +170754956577,222,0 +170754956625,222,0 +170754956673,223,0 +170754956721,222,0 +170754956769,222,0 +170754956817,222,0 +170754956865,215,0 +170754956913,215,0 +170754956960,215,0 +170754957008,215,0 +170754957056,215,0 +170754957104,216,0 +170754957152,217,0 +170754957200,217,0 +170754957248,219,0 +170754957296,219,0 +170754957343,220,0 +170754957391,220,0 +170754957439,221,0 +170754957487,222,0 +170754957535,222,0 +170754957584,222,0 +170754957634,222,0 +170754957683,223,0 +170754957733,224,0 +170754957782,215,0 +170754957832,214,0 +170754957880,215,0 +170754957929,215,0 +170754957977,215,0 +170754958027,215,0 +170754958075,215,0 +170754958123,216,0 +170754958171,217,0 +170754958219,217,0 +170754958266,218,0 +170754958316,219,0 +170754958365,220,0 +170754958413,221,0 +170754958461,222,0 +170754958509,222,0 +170754958557,222,0 +170754958605,222,0 +170754958653,223,0 +170754958701,216,0 +170754958751,214,0 +170754958800,214,0 +170754958850,214,0 +170754958899,215,0 +170754958947,215,0 +170754958997,216,0 +170754959045,215,0 +170754959094,215,0 +170754959144,216,0 +170754959193,216,0 +170754959241,216,0 +170754959291,217,0 +170754959339,217,0 +170754959388,219,0 +170754959436,218,0 +170754959486,218,0 +170754959534,219,0 +170754959582,220,0 +170754959630,220,0 +170754959679,220,0 +170754959727,221,0 +170754959777,221,0 +170754959826,221,0 +170754959874,221,0 +170754959922,223,0 +170754959972,223,0 +170754960021,223,0 +170754960069,221,0 +170754960117,215,0 +170754960165,215,0 +170754960215,215,0 +170754960264,216,0 +170754960312,216,0 +170754960360,217,0 +170754960410,220,0 +170754960459,218,0 +170754960507,218,0 +170754960555,219,0 +170754960603,220,0 +170754960653,221,0 +170754960702,220,0 +170754960752,222,0 +170754960800,225,0 +170754960848,224,0 +170754960896,224,0 +170754960945,223,0 +170754960993,222,0 +170754961043,215,0 +170754961092,215,0 +170754961140,216,0 +170754961190,216,0 +170754961239,217,0 +170754961287,217,0 +170754961337,224,0 +170754961385,219,0 +170754961433,219,0 +170754961481,220,0 +170754961530,220,0 +170754961580,221,0 +170754961628,222,0 +170754961676,222,0 +170754961725,222,0 +170754961773,222,0 +170754961821,223,0 +170754961869,223,0 +170754961918,222,0 +170754961966,216,0 +170754962014,215,0 +170754962062,215,0 +170754962110,215,0 +170754962158,216,0 +170754962206,216,0 +170754962256,217,0 +170754962305,218,0 +170754962355,218,0 +170754962404,220,0 +170754962454,220,0 +170754962503,221,0 +170754962551,223,0 +170754962599,222,0 +170754962647,222,0 +170754962695,220,0 +170754962744,223,0 +170754962794,222,0 +170754962842,222,0 +170754962891,216,0 +170754962939,215,0 +170754962987,215,0 +170754963035,216,0 +170754963084,216,0 +170754963132,216,0 +170754963182,217,0 +170754963230,218,0 +170754963278,218,0 +170754963326,220,0 +170754963373,220,0 +170754963423,221,0 +170754963472,221,0 +170754963520,222,0 +170754963568,223,0 +170754963616,223,0 +170754963666,224,0 +170754963715,223,0 +170754963765,222,0 +170754963814,216,0 +170754963864,215,0 +170754963912,216,0 +170754963961,217,0 +170754964011,218,0 +170754964060,218,0 +170754964110,218,0 +170754964159,220,0 +170754964207,220,0 +170754964257,221,0 +170754964305,221,0 +170754964354,222,0 +170754964404,222,0 +170754964452,222,0 +170754964501,222,0 +170754964549,223,0 +170754964599,224,0 +170754964648,221,0 +170754964696,222,0 +170754964744,216,0 +170754964792,215,0 +170754964842,216,0 +170754964890,217,0 +170754964939,217,0 +170754964987,219,0 +170754965037,218,0 +170754965086,219,0 +170754965134,220,0 +170754965182,221,0 +170754965230,220,0 +170754965280,221,0 +170754965328,222,0 +170754965376,223,0 +170754965425,222,0 +170754965473,222,0 +170754965523,222,0 +170754965571,222,0 +170754965619,221,0 +170754965668,217,0 +170754965716,215,0 +170754965766,215,0 +170754965815,215,0 +170754965863,215,0 +170754965911,216,0 +170754965959,216,0 +170754966007,218,0 +170754966055,219,0 +170754966103,220,0 +170754966151,220,0 +170754966200,221,0 +170754966248,221,0 +170754966298,221,0 +170754966346,222,0 +170754966395,223,0 +170754966445,224,0 +170754966493,223,0 +170754966542,222,0 +170754966590,226,0 +170754966638,215,0 +170754966686,215,0 +170754966734,215,0 +170754966782,215,0 +170754966831,215,0 +170754966881,217,0 +170754966930,216,0 +170754966978,217,0 +170754967028,219,0 +170754967076,219,0 +170754967124,219,0 +170754967172,220,0 +170754967221,220,0 +170754967271,222,0 +170754967320,221,0 +170754967370,222,0 +170754967418,222,0 +170754967466,222,0 +170754967515,223,0 +170754967565,214,0 +170754967614,214,0 +170754967664,214,0 +170754967713,215,0 +170754967763,214,0 +170754967812,216,0 +170754967862,216,0 +170754967910,217,0 +170754967959,217,0 +170754968009,218,0 +170754968058,219,0 +170754968108,221,0 +170754968156,220,0 +170754968204,222,0 +170754968252,223,0 +170754968299,221,0 +170754968347,222,0 +170754968395,223,0 +170754968443,223,0 +170754968491,216,0 +170754968539,214,0 +170754968588,215,0 +170754968638,215,0 +170754968686,216,0 +170754968734,216,0 +170754968782,217,0 +170754968830,218,0 +170754968877,218,0 +170754968925,218,0 +170754968973,220,0 +170754969021,221,0 +170754969069,222,0 +170754969117,222,0 +170754969166,223,0 +170754969214,224,0 +170754969264,223,0 +170754969311,224,0 +170754969359,223,0 +170754969407,216,0 +170754969457,214,0 +170754969505,215,0 +170754969553,215,0 +170754969602,215,0 +170754969650,216,0 +170754969700,218,0 +170754969749,217,0 +170754969797,218,0 +170754969846,218,0 +170754969894,219,0 +170754969944,220,0 +170754969992,220,0 +170754970040,220,0 +170754970087,222,0 +170754970135,221,0 +170754970185,222,0 +170754970233,222,0 +170754970281,222,0 +170754970329,216,0 +170754970376,215,0 +170754970424,215,0 +170754970472,215,0 +170754970520,215,0 +170754970570,216,0 +170754970617,217,0 +170754970665,217,0 +170754970713,218,0 +170754970761,219,0 +170754970811,219,0 +170754970858,220,0 +170754970906,222,0 +170754970954,222,0 +170754971002,222,0 +170754971051,222,0 +170754971099,222,0 +170754971147,222,0 +170754971195,223,0 +170754971243,222,0 +170754971291,215,0 +170754971339,214,0 +170754971388,214,0 +170754971438,215,0 +170754971486,215,0 +170754971535,216,0 +170754971583,216,0 +170754971631,217,0 +170754971679,218,0 +170754971727,219,0 +170754971775,219,0 +170754971823,220,0 +170754971871,220,0 +170754971919,223,0 +170754971968,221,0 +170754972018,223,0 +170754972065,223,0 +170754972113,223,0 +170754972161,223,0 +170754972209,216,0 +170754972258,214,0 +170754972308,214,0 +170754972356,215,0 +170754972404,215,0 +170754972452,215,0 +170754972500,216,0 +170754972549,217,0 +170754972599,217,0 +170754972648,219,0 +170754972696,220,0 +170754972746,219,0 +170754972794,222,0 +170754972842,221,0 +170754972891,224,0 +170754972939,223,0 +170754972987,222,0 +170754973035,223,0 +170754973083,223,0 +170754973131,216,0 +170754973180,214,0 +170754973230,215,0 +170754973278,215,0 +170754973326,215,0 +170754973374,215,0 +170754973422,216,0 +170754973470,216,0 +170754973518,217,0 +170754973567,218,0 +170754973615,219,0 +170754973665,219,0 +170754973714,221,0 +170754973764,221,0 +170754973813,221,0 +170754973861,222,0 +170754973909,222,0 +170754973957,222,0 +170754974005,222,0 +170754974053,219,0 +170754974101,214,0 +170754974150,215,0 +170754974200,214,0 +170754974249,215,0 +170754974297,215,0 +170754974345,216,0 +170754974393,215,0 +170754974441,216,0 +170754974489,216,0 +170754974539,217,0 +170754974586,218,0 +170754974634,219,0 +170754974684,221,0 +170754974733,221,0 +170754974783,222,0 +170754974832,221,0 +170754974882,221,0 +170754974931,222,0 +170754974981,217,0 +170754975029,215,0 +170754975077,214,0 +170754975126,215,0 +170754975174,216,0 +170754975224,216,0 +170754975273,217,0 +170754975323,218,0 +170754975372,217,0 +170754975420,218,0 +170754975468,220,0 +170754975516,221,0 +170754975565,221,0 +170754975613,221,0 +170754975661,222,0 +170754975711,219,0 +170754975760,222,0 +170754975808,224,0 +170754975856,224,0 +170754975904,222,0 +170754975954,215,0 +170754976002,215,0 +170754976050,216,0 +170754976098,216,0 +170754976146,217,0 +170754976196,218,0 +170754976244,218,0 +170754976293,219,0 +170754976341,219,0 +170754976389,219,0 +170754976437,221,0 +170754976485,222,0 +170754976534,223,0 +170754976582,226,0 +170754976632,223,0 +170754976681,224,0 +170754976729,224,0 +170754976779,223,0 +170754976828,222,0 +170754976878,216,0 +170754976926,216,0 +170754976974,218,0 +170754977023,219,0 +170754977071,219,0 +170754977119,220,0 +170754977167,220,0 +170754977215,221,0 +170754977264,222,0 +170754977312,222,0 +170754977362,222,0 +170754977411,221,0 +170754977459,223,0 +170754977509,224,0 +170754977557,223,0 +170754977605,223,0 +170754977654,224,0 +170754977702,223,0 +170754977750,222,0 +170754977798,217,0 +170754977846,217,0 +170754977895,219,0 +170754977943,218,0 +170754977991,219,0 +170754978041,220,0 +170754978089,221,0 +170754978137,222,0 +170754978186,222,0 +170754978236,223,0 +170754978286,222,0 +170754978334,223,0 +170754978382,223,0 +170754978430,223,0 +170754978479,224,0 +170754978529,223,0 +170754978578,223,0 +170754978628,223,0 +170754978676,222,0 +170754978724,216,0 +170754978772,215,0 +170754978820,216,0 +170754978869,217,0 +170754978917,217,0 +170754978965,217,0 +170754979015,218,0 +170754979063,219,0 +170754979112,219,0 +170754979160,220,0 +170754979208,220,0 +170754979256,221,0 +170754979304,221,0 +170754979354,222,0 +170754979401,222,0 +170754979449,222,0 +170754979497,223,0 +170754979545,222,0 +170754979594,223,0 +170754979644,217,0 +170754979692,213,0 +170754979741,215,0 +170754979789,217,0 +170754979839,216,0 +170754979887,217,0 +170754979935,218,0 +170754979983,218,0 +170754980031,219,0 +170754980080,221,0 +170754980128,220,0 +170754980178,220,0 +170754980226,222,0 +170754980274,222,0 +170754980322,222,0 +170754980371,222,0 +170754980421,222,0 +170754980468,223,0 +170754980516,222,0 +170754980564,221,0 +170754980612,214,0 +170754980662,215,0 +170754980712,216,0 +170754980760,217,0 +170754980809,217,0 +170754980859,218,0 +170754980907,219,0 +170754980954,220,0 +170754981002,219,0 +170754981050,220,0 +170754981098,222,0 +170754981146,222,0 +170754981196,224,0 +170754981245,222,0 +170754981295,222,0 +170754981343,223,0 +170754981392,223,0 +170754981440,223,0 +170754981490,222,0 +170754981538,215,0 +170754981586,215,0 +170754981634,215,0 +170754981681,216,0 +170754981731,217,0 +170754981779,217,0 +170754981827,218,0 +170754981875,218,0 +170754981923,218,0 +170754981972,219,0 +170754982022,220,0 +170754982070,220,0 +170754982118,221,0 +170754982167,222,0 +170754982217,222,0 +170754982265,223,0 +170754982314,223,0 +170754982362,223,0 +170754982412,223,0 +170754982461,215,0 +170754982509,215,0 +170754982557,215,0 +170754982605,216,0 +170754982655,218,0 +170754982704,218,0 +170754982752,218,0 +170754982800,220,0 +170754982848,219,0 +170754982896,221,0 +170754982944,221,0 +170754982992,222,0 +170754983041,222,0 +170754983091,223,0 +170754983139,223,0 +170754983187,223,0 +170754983236,221,0 +170754983284,222,0 +170754983332,223,0 +170754983380,216,0 +170754983428,215,0 +170754983476,215,0 +170754983524,215,0 +170754983574,216,0 +170754983622,217,0 +170754983670,217,0 +170754983718,218,0 +170754983767,219,0 +170754983815,221,0 +170754983863,221,0 +170754983911,222,0 +170754983959,222,0 +170754984007,221,0 +170754984055,222,0 +170754984104,222,0 +170754984154,222,0 +170754984203,223,0 +170754984251,223,0 +170754984299,221,0 +170754984349,214,0 +170754984397,214,0 +170754984446,215,0 +170754984496,215,0 +170754984545,216,0 +170754984595,217,0 +170754984643,217,0 +170754984692,218,0 +170754984740,218,0 +170754984788,219,0 +170754984838,219,0 +170754984887,221,0 +170754984937,221,0 +170754984985,222,0 +170754985033,223,0 +170754985081,222,0 +170754985130,222,0 +170754985180,223,0 +170754985228,219,0 +170754985276,215,0 +170754985323,215,0 +170754985373,215,0 +170754985421,215,0 +170754985469,215,0 +170754985518,216,0 +170754985568,216,0 +170754985616,217,0 +170754985665,217,0 +170754985715,219,0 +170754985763,220,0 +170754985811,220,0 +170754985859,220,0 +170754985908,220,0 +170754985956,221,0 +170754986006,222,0 +170754986055,225,0 +170754986105,222,0 +170754986153,221,0 +170754986201,214,0 +170754986249,214,0 +170754986298,215,0 +170754986348,216,0 +170754986397,217,0 +170754986445,218,0 +170754986495,218,0 +170754986544,219,0 +170754986592,220,0 +170754986642,220,0 +170754986690,222,0 +170754986739,221,0 +170754986787,223,0 +170754986835,223,0 +170754986883,222,0 +170754986931,223,0 +170754986979,222,0 +170754987028,223,0 +170754987078,222,0 +170754987126,215,0 +170754987174,214,0 +170754987222,214,0 +170754987270,215,0 +170754987318,214,0 +170754987367,216,0 +170754987415,217,0 +170754987463,218,0 +170754987511,219,0 +170754987559,219,0 +170754987609,220,0 +170754987658,221,0 +170754987706,221,0 +170754987756,221,0 +170754987805,222,0 +170754987853,222,0 +170754987901,222,0 +170754987949,223,0 +170754987997,223,0 +170754988046,215,0 +170754988094,215,0 +170754988144,214,0 +170754988192,215,0 +170754988240,216,0 +170754988289,216,0 +170754988337,218,0 +170754988387,218,0 +170754988435,219,0 +170754988483,220,0 +170754988531,220,0 +170754988579,221,0 +170754988627,222,0 +170754988676,222,0 +170754988724,223,0 +170754988774,222,0 +170754988823,222,0 +170754988871,223,0 +170754988919,222,0 +170754988968,215,0 +170754989016,215,0 +170754989064,215,0 +170754989114,214,0 +170754989162,216,0 +170754989209,217,0 +170754989259,216,0 +170754989307,218,0 +170754989355,219,0 +170754989403,220,0 +170754989450,221,0 +170754989500,223,0 +170754989548,222,0 +170754989596,222,0 +170754989643,224,0 +170754989691,224,0 +170754989739,222,0 +170754989787,223,0 +170754989835,222,0 +170754989883,215,0 +170754989931,214,0 +170754989980,215,0 +170754990030,216,0 +170754990078,216,0 +170754990127,217,0 +170754990175,217,0 +170754990225,218,0 +170754990274,219,0 +170754990324,221,0 +170754990372,220,0 +170754990420,221,0 +170754990468,222,0 +170754990516,222,0 +170754990564,222,0 +170754990612,224,0 +170754990661,223,0 +170754990709,223,0 +170754990757,223,0 +170754990805,215,0 +170754990853,215,0 +170754990903,215,0 +170754990950,214,0 +170754991000,216,0 +170754991048,216,0 +170754991096,217,0 +170754991146,217,0 +170754991193,218,0 +170754991241,219,0 +170754991291,220,0 +170754991339,221,0 +170754991388,223,0 +170754991436,222,0 +170754991486,222,0 +170754991535,223,0 +170754991585,223,0 +170754991633,223,0 +170754991681,223,0 +170754991730,215,0 +170754991780,214,0 +170754991828,215,0 +170754991876,216,0 +170754991924,216,0 +170754991972,216,0 +170754992020,217,0 +170754992068,218,0 +170754992116,219,0 +170754992165,219,0 +170754992213,220,0 +170754992261,222,0 +170754992311,223,0 +170754992360,223,0 +170754992408,223,0 +170754992456,223,0 +170754992504,222,0 +170754992552,223,0 +170754992601,222,0 +170754992651,215,0 +170754992699,215,0 +170754992747,215,0 +170754992796,216,0 +170754992846,216,0 +170754992895,217,0 +170754992943,218,0 +170754992991,218,0 +170754993041,220,0 +170754993089,220,0 +170754993137,221,0 +170754993185,223,0 +170754993234,222,0 +170754993282,223,0 +170754993330,222,0 +170754993378,223,0 +170754993426,223,0 +170754993473,222,0 +170754993521,217,0 +170754993569,214,0 +170754993617,215,0 +170754993665,215,0 +170754993713,216,0 +170754993761,216,0 +170754993809,217,0 +170754993858,218,0 +170754993906,218,0 +170754993956,219,0 +170754994003,220,0 +170754994051,221,0 +170754994099,221,0 +170754994147,222,0 +170754994196,222,0 +170754994244,223,0 +170754994292,224,0 +170754994340,223,0 +170754994388,223,0 +170754994436,223,0 +170754994484,215,0 +170754994532,215,0 +170754994579,215,0 +170754994627,216,0 +170754994675,217,0 +170754994723,217,0 +170754994773,222,0 +170754994821,227,0 +170754994868,220,0 +170754994916,221,0 +170754994964,221,0 +170754995012,221,0 +170754995062,222,0 +170754995111,223,0 +170754995161,222,0 +170754995210,222,0 +170754995260,223,0 +170754995310,222,0 +170754995358,222,0 +170754995405,215,0 +170754995453,215,0 +170754995501,216,0 +170754995551,217,0 +170754995600,218,0 +170754995648,218,0 +170754995696,217,0 +170754995744,219,0 +170754995792,219,0 +170754995840,220,0 +170754995890,221,0 +170754995939,222,0 +170754995989,224,0 +170754996038,222,0 +170754996088,222,0 +170754996136,224,0 +170754996184,223,0 +170754996232,223,0 +170754996281,216,0 +170754996329,214,0 +170754996377,214,0 +170754996425,215,0 +170754996473,216,0 +170754996521,217,0 +170754996569,216,0 +170754996617,218,0 +170754996665,220,0 +170754996714,219,0 +170754996764,220,0 +170754996812,221,0 +170754996860,221,0 +170754996909,222,0 +170754996959,223,0 +170754997007,224,0 +170754997056,223,0 +170754997104,223,0 +170754997154,223,0 +170754997202,218,0 +170754997250,214,0 +170754997298,215,0 +170754997345,216,0 +170754997395,216,0 +170754997445,217,0 +170754997494,217,0 +170754997542,219,0 +170754997590,218,0 +170754997640,220,0 +170754997688,220,0 +170754997737,221,0 +170754997787,221,0 +170754997835,222,0 +170754997883,222,0 +170754997930,224,0 +170754997978,222,0 +170754998028,223,0 +170754998077,224,0 +170754998125,222,0 +170754998173,215,0 +170754998222,215,0 +170754998272,216,0 +170754998320,216,0 +170754998368,217,0 +170754998416,217,0 +170754998465,218,0 +170754998513,219,0 +170754998561,219,0 +170754998611,220,0 +170754998659,224,0 +170754998706,222,0 +170754998754,220,0 +170754998802,223,0 +170754998850,223,0 +170754998898,224,0 +170754998948,224,0 +170754998996,223,0 +170754999044,218,0 +170754999092,215,0 +170754999141,215,0 +170754999191,216,0 +170754999239,217,0 +170754999288,218,0 +170754999338,219,0 +170754999386,219,0 +170754999434,221,0 +170754999483,221,0 +170754999533,222,0 +170754999581,222,0 +170754999630,222,0 +170754999678,222,0 +170754999728,222,0 +170754999777,222,0 +170754999825,222,0 +170754999873,222,0 +170754999923,222,0 +170754999971,216,0 +170755000020,214,0 +170755000070,214,0 +170755000118,214,0 +170755000167,215,0 +170755000215,215,0 +170755000265,215,0 +170755000314,216,0 +170755000362,217,0 +170755000412,218,0 +170755000459,219,0 +170755000509,220,0 +170755000558,222,0 +170755000608,221,0 +170755000656,221,0 +170755000705,223,0 +170755000753,222,0 +170755000801,223,0 +170755000849,223,0 +170755000897,216,0 +170755000947,214,0 +170755000995,214,0 +170755001044,214,0 +170755001092,215,0 +170755001140,215,0 +170755001188,215,0 +170755001236,215,0 +170755001284,216,0 +170755001332,216,0 +170755001382,218,0 +170755001430,219,0 +170755001478,220,0 +170755001526,221,0 +170755001573,221,0 +170755001623,220,0 +170755001673,221,0 +170755001722,222,0 +170755001770,222,0 +170755001818,216,0 +170755001866,215,0 +170755001916,215,0 +170755001965,215,0 +170755002013,215,0 +170755002061,216,0 +170755002109,216,0 +170755002157,218,0 +170755002207,219,0 +170755002256,220,0 +170755002304,221,0 +170755002354,221,0 +170755002403,221,0 +170755002451,223,0 +170755002499,223,0 +170755002547,222,0 +170755002595,223,0 +170755002643,223,0 +170755002692,223,0 +170755002740,215,0 +170755002788,214,0 +170755002836,215,0 +170755002884,215,0 +170755002933,215,0 +170755002981,215,0 +170755003031,215,0 +170755003080,214,0 +170755003128,217,0 +170755003176,218,0 +170755003226,219,0 +170755003275,219,0 +170755003323,221,0 +170755003371,221,0 +170755003419,222,0 +170755003467,222,0 +170755003515,223,0 +170755003565,223,0 +170755003613,222,0 +170755003661,216,0 +170755003708,215,0 +170755003758,215,0 +170755003806,215,0 +170755003855,215,0 +170755003903,216,0 +170755003951,216,0 +170755003999,217,0 +170755004047,218,0 +170755004096,219,0 +170755004144,219,0 +170755004192,220,0 +170755004240,222,0 +170755004288,221,0 +170755004336,221,0 +170755004384,222,0 +170755004432,222,0 +170755004480,222,0 +170755004530,223,0 +170755004579,215,0 +170755004627,214,0 +170755004675,215,0 +170755004723,215,0 +170755004771,216,0 +170755004819,216,0 +170755004867,217,0 +170755004916,217,0 +170755004964,218,0 +170755005014,219,0 +170755005063,219,0 +170755005113,220,0 +170755005161,222,0 +170755005208,223,0 +170755005256,223,0 +170755005304,223,0 +170755005354,223,0 +170755005402,223,0 +170755005450,222,0 +170755005498,215,0 +170755005546,215,0 +170755005594,215,0 +170755005643,216,0 +170755005691,216,0 +170755005739,217,0 +170755005788,217,0 +170755005838,218,0 +170755005886,218,0 +170755005933,218,0 +170755005981,220,0 +170755006031,222,0 +170755006079,220,0 +170755006128,221,0 +170755006178,221,0 +170755006227,222,0 +170755006275,222,0 +170755006323,222,0 +170755006371,222,0 +170755006421,216,0 +170755006469,216,0 +170755006518,217,0 +170755006566,217,0 +170755006614,218,0 +170755006664,219,0 +170755006712,219,0 +170755006759,220,0 +170755006809,220,0 +170755006859,222,0 +170755006906,222,0 +170755006954,222,0 +170755007004,222,0 +170755007052,223,0 +170755007101,223,0 +170755007151,223,0 +170755007200,223,0 +170755007250,222,0 +170755007300,223,0 +170755007347,218,0 +170755007397,218,0 +170755007446,219,0 +170755007494,220,0 +170755007542,220,0 +170755007590,220,0 +170755007640,220,0 +170755007688,222,0 +170755007737,222,0 +170755007785,222,0 +170755007833,222,0 +170755007881,223,0 +170755007931,223,0 +170755007980,222,0 +170755008030,222,0 +170755008078,224,0 +170755008127,222,0 +170755008175,222,0 +170755008223,218,0 +170755008271,217,0 +170755008320,217,0 +170755008370,218,0 +170755008419,218,0 +170755008467,220,0 +170755008517,221,0 +170755008566,220,0 +170755008614,221,0 +170755008664,221,0 +170755008712,221,0 +170755008759,222,0 +170755008807,222,0 +170755008855,222,0 +170755008903,223,0 +170755008953,224,0 +170755009001,224,0 +170755009050,224,0 +170755009100,222,0 +170755009148,216,0 +170755009196,215,0 +170755009244,215,0 +170755009292,216,0 +170755009341,216,0 +170755009389,217,0 +170755009437,218,0 +170755009485,218,0 +170755009535,219,0 +170755009584,221,0 +170755009632,221,0 +170755009680,221,0 +170755009728,221,0 +170755009776,222,0 +170755009825,224,0 +170755009873,222,0 +170755009921,223,0 +170755009971,222,0 +170755010020,222,0 +170755010068,215,0 +170755010118,215,0 +170755010166,214,0 +170755010214,215,0 +170755010263,216,0 +170755010311,217,0 +170755010361,217,0 +170755010409,218,0 +170755010458,218,0 +170755010506,219,0 +170755010554,220,0 +170755010602,220,0 +170755010651,222,0 +170755010699,222,0 +170755010749,223,0 +170755010799,224,0 +170755010848,224,0 +170755010896,224,0 +170755010944,222,0 +170755010994,216,0 +170755011043,215,0 +170755011091,215,0 +170755011139,215,0 +170755011187,215,0 +170755011236,217,0 +170755011284,216,0 +170755011334,218,0 +170755011382,217,0 +170755011431,219,0 +170755011479,220,0 +170755011529,221,0 +170755011577,223,0 +170755011625,221,0 +170755011674,222,0 +170755011722,223,0 +170755011770,222,0 +170755011820,222,0 +170755011869,222,0 +170755011917,216,0 +170755011965,215,0 +170755012013,215,0 +170755012063,215,0 +170755012111,216,0 +170755012159,216,0 +170755012207,217,0 +170755012255,216,0 +170755012303,219,0 +170755012352,218,0 +170755012402,221,0 +170755012450,221,0 +170755012498,221,0 +170755012545,221,0 +170755012593,222,0 +170755012643,223,0 +170755012691,223,0 +170755012739,223,0 +170755012787,222,0 +170755012836,215,0 +170755012884,214,0 +170755012932,215,0 +170755012982,215,0 +170755013030,215,0 +170755013078,216,0 +170755013127,217,0 +170755013175,217,0 +170755013223,219,0 +170755013273,219,0 +170755013321,220,0 +170755013368,220,0 +170755013416,221,0 +170755013464,221,0 +170755013514,222,0 +170755013563,223,0 +170755013613,223,0 +170755013663,222,0 +170755013711,223,0 +170755013760,216,0 +170755013808,214,0 +170755013857,214,0 +170755013905,215,0 +170755013953,216,0 +170755014001,217,0 +170755014049,217,0 +170755014099,218,0 +170755014147,219,0 +170755014194,219,0 +170755014244,220,0 +170755014294,221,0 +170755014343,221,0 +170755014393,223,0 +170755014441,222,0 +170755014490,223,0 +170755014538,223,0 +170755014586,223,0 +170755014634,223,0 +170755014682,215,0 +170755014730,215,0 +170755014778,215,0 +170755014826,216,0 +170755014874,216,0 +170755014923,217,0 +170755014971,218,0 +170755015021,218,0 +170755015069,218,0 +170755015117,220,0 +170755015165,219,0 +170755015213,222,0 +170755015260,224,0 +170755015308,222,0 +170755015356,223,0 +170755015406,222,0 +170755015454,223,0 +170755015502,223,0 +170755015551,222,0 +170755015601,215,0 +170755015649,214,0 +170755015697,215,0 +170755015746,216,0 +170755015796,216,0 +170755015844,217,0 +170755015892,218,0 +170755015941,217,0 +170755015989,219,0 +170755016037,219,0 +170755016085,220,0 +170755016133,221,0 +170755016183,222,0 +170755016232,222,0 +170755016280,221,0 +170755016328,224,0 +170755016377,223,0 +170755016425,223,0 +170755016473,222,0 +170755016521,215,0 +170755016569,214,0 +170755016619,215,0 +170755016668,216,0 +170755016716,217,0 +170755016766,218,0 +170755016815,219,0 +170755016865,219,0 +170755016913,219,0 +170755016962,219,0 +170755017012,220,0 +170755017061,220,0 +170755017109,221,0 +170755017157,221,0 +170755017207,223,0 +170755017255,223,0 +170755017304,224,0 +170755017352,223,0 +170755017402,224,0 +170755017451,215,0 +170755017501,215,0 +170755017549,215,0 +170755017598,217,0 +170755017646,217,0 +170755017694,217,0 +170755017744,218,0 +170755017792,219,0 +170755017840,220,0 +170755017888,221,0 +170755017936,221,0 +170755017983,221,0 +170755018031,222,0 +170755018081,222,0 +170755018130,222,0 +170755018178,223,0 +170755018228,223,0 +170755018276,222,0 +170755018324,218,0 +170755018372,215,0 +170755018421,215,0 +170755018469,216,0 +170755018517,216,0 +170755018565,217,0 +170755018613,217,0 +170755018661,216,0 +170755018710,219,0 +170755018760,220,0 +170755018808,220,0 +170755018856,220,0 +170755018904,222,0 +170755018952,222,0 +170755019000,223,0 +170755019049,223,0 +170755019099,223,0 +170755019148,222,0 +170755019196,223,0 +170755019246,216,0 +170755019295,215,0 +170755019345,215,0 +170755019393,216,0 +170755019442,217,0 +170755019490,218,0 +170755019540,218,0 +170755019588,219,0 +170755019636,219,0 +170755019684,220,0 +170755019732,221,0 +170755019780,221,0 +170755019828,221,0 +170755019876,221,0 +170755019924,223,0 +170755019972,221,0 +170755020021,224,0 +170755020071,224,0 +170755020120,223,0 +170755020168,217,0 +170755020216,214,0 +170755020264,215,0 +170755020312,215,0 +170755020361,216,0 +170755020411,217,0 +170755020460,218,0 +170755020510,218,0 +170755020558,219,0 +170755020606,219,0 +170755020654,220,0 +170755020702,222,0 +170755020750,221,0 +170755020799,223,0 +170755020849,223,0 +170755020898,222,0 +170755020948,223,0 +170755020996,222,0 +170755021044,223,0 +170755021093,216,0 +170755021141,215,0 +170755021189,215,0 +170755021238,215,0 +170755021288,215,0 +170755021336,216,0 +170755021385,220,0 +170755021433,218,0 +170755021481,219,0 +170755021529,220,0 +170755021579,223,0 +170755021628,221,0 +170755021676,222,0 +170755021724,222,0 +170755021774,222,0 +170755021823,223,0 +170755021871,222,0 +170755021919,223,0 +170755021967,223,0 +170755022017,215,0 +170755022065,215,0 +170755022114,216,0 +170755022162,216,0 +170755022210,217,0 +170755022258,217,0 +170755022306,217,0 +170755022354,219,0 +170755022402,219,0 +170755022451,220,0 +170755022499,220,0 +170755022547,221,0 +170755022597,222,0 +170755022646,223,0 +170755022696,222,0 +170755022744,223,0 +170755022793,223,0 +170755022841,223,0 +170755022889,223,0 +170755022937,216,0 +170755022985,215,0 +170755023034,215,0 +170755023084,216,0 +170755023132,216,0 +170755023179,217,0 +170755023227,217,0 +170755023275,219,0 +170755023323,218,0 +170755023371,219,0 +170755023419,221,0 +170755023468,221,0 +170755023518,222,0 +170755023566,223,0 +170755023613,223,0 +170755023661,220,0 +170755023709,223,0 +170755023759,223,0 +170755023807,222,0 +170755023856,216,0 +170755023904,214,0 +170755023952,214,0 +170755024000,214,0 +170755024048,215,0 +170755024097,216,0 +170755024145,216,0 +170755024193,217,0 +170755024241,219,0 +170755024289,219,0 +170755024336,220,0 +170755024384,220,0 +170755024432,219,0 +170755024480,221,0 +170755024528,221,0 +170755024576,222,0 +170755024625,222,0 +170755024675,222,0 +170755024724,223,0 +170755024774,216,0 +170755024822,215,0 +170755024869,215,0 +170755024917,216,0 +170755024967,216,0 +170755025016,216,0 +170755025064,218,0 +170755025112,218,0 +170755025160,219,0 +170755025208,220,0 +170755025256,220,0 +170755025305,221,0 +170755025353,222,0 +170755025401,221,0 +170755025451,223,0 +170755025501,222,0 +170755025549,223,0 +170755025598,223,0 +170755025647,222,0 +170755025695,215,0 +170755025745,214,0 +170755025794,215,0 +170755025842,214,0 +170755025890,215,0 +170755025938,216,0 +170755025986,216,0 +170755026034,217,0 +170755026082,218,0 +170755026130,243,0 +170755026178,220,0 +170755026226,221,0 +170755026274,221,0 +170755026322,221,0 +170755026371,222,0 +170755026419,222,0 +170755026467,223,0 +170755026515,222,0 +170755026563,223,0 +170755026611,216,0 +170755026658,215,0 +170755026706,215,0 +170755026754,215,0 +170755026802,216,0 +170755026850,216,0 +170755026898,217,0 +170755026946,218,0 +170755026995,218,0 +170755027045,219,0 +170755027093,220,0 +170755027141,220,0 +170755027189,221,0 +170755027237,222,0 +170755027285,222,0 +170755027334,222,0 +170755027382,223,0 +170755027430,223,0 +170755027478,222,0 +170755027527,216,0 +170755027575,214,0 +170755027623,216,0 +170755027671,217,0 +170755027719,217,0 +170755027768,218,0 +170755027816,219,0 +170755027866,220,0 +170755027914,220,0 +170755027961,220,0 +170755028009,221,0 +170755028059,222,0 +170755028108,222,0 +170755028156,222,0 +170755028204,222,0 +170755028252,222,0 +170755028302,223,0 +170755028351,223,0 +170755028399,222,0 +170755028449,215,0 +170755028498,215,0 +170755028546,216,0 +170755028594,217,0 +170755028642,218,0 +170755028691,219,0 +170755028739,218,0 +170755028788,219,0 +170755028836,221,0 +170755028884,220,0 +170755028932,221,0 +170755028980,221,0 +170755029030,223,0 +170755029078,223,0 +170755029127,223,0 +170755029177,223,0 +170755029226,222,0 +170755029276,223,0 +170755029325,224,0 +170755029375,218,0 +170755029424,215,0 +170755029472,215,0 +170755029522,216,0 +170755029571,216,0 +170755029619,217,0 +170755029667,218,0 +170755029717,219,0 +170755029765,219,0 +170755029813,220,0 +170755029860,221,0 +170755029908,220,0 +170755029956,222,0 +170755030004,221,0 +170755030054,224,0 +170755030103,223,0 +170755030151,222,0 +170755030199,223,0 +170755030247,222,0 +170755030295,216,0 +170755030345,215,0 +170755030394,215,0 +170755030444,215,0 +170755030492,215,0 +170755030541,216,0 +170755030589,217,0 +170755030637,218,0 +170755030685,218,0 +170755030733,220,0 +170755030783,220,0 +170755030831,222,0 +170755030879,222,0 +170755030927,222,0 +170755030974,223,0 +170755031022,223,0 +170755031070,222,0 +170755031118,223,0 +170755031166,222,0 +170755031216,215,0 +170755031265,215,0 +170755031313,215,0 +170755031361,215,0 +170755031409,215,0 +170755031457,215,0 +170755031505,216,0 +170755031553,218,0 +170755031601,218,0 +170755031649,218,0 +170755031697,221,0 +170755031746,221,0 +170755031796,222,0 +170755031845,221,0 +170755031895,222,0 +170755031944,223,0 +170755031992,223,0 +170755032040,222,0 +170755032088,222,0 +170755032136,215,0 +170755032184,214,0 +170755032232,215,0 +170755032281,215,0 +170755032329,215,0 +170755032377,215,0 +170755032427,216,0 +170755032475,217,0 +170755032523,217,0 +170755032571,218,0 +170755032619,219,0 +170755032668,220,0 +170755032716,222,0 +170755032764,220,0 +170755032812,222,0 +170755032860,222,0 +170755032909,222,0 +170755032957,223,0 +170755033005,223,0 +170755033053,216,0 +170755033101,215,0 +170755033150,215,0 +170755033200,214,0 +170755033247,215,0 +170755033297,216,0 +170755033345,217,0 +170755033393,217,0 +170755033441,218,0 +170755033489,219,0 +170755033537,220,0 +170755033585,220,0 +170755033632,221,0 +170755033682,221,0 +170755033732,223,0 +170755033779,222,0 +170755033827,222,0 +170755033877,222,0 +170755033926,222,0 +170755033976,215,0 +170755034024,215,0 +170755034072,215,0 +170755034120,215,0 +170755034169,216,0 +170755034217,216,0 +170755034265,218,0 +170755034315,219,0 +170755034363,218,0 +170755034412,220,0 +170755034460,221,0 +170755034508,221,0 +170755034556,222,0 +170755034604,221,0 +170755034652,223,0 +170755034700,223,0 +170755034748,222,0 +170755034796,223,0 +170755034844,222,0 +170755034892,215,0 +170755034940,215,0 +170755034989,216,0 +170755035039,216,0 +170755035088,218,0 +170755035136,218,0 +170755035184,218,0 +170755035234,219,0 +170755035283,221,0 +170755035331,220,0 +170755035379,221,0 +170755035427,222,0 +170755035477,222,0 +170755035525,223,0 +170755035574,223,0 +170755035624,224,0 +170755035673,223,0 +170755035721,223,0 +170755035771,216,0 +170755035820,214,0 +170755035870,215,0 +170755035920,216,0 +170755035968,216,0 +170755036017,217,0 +170755036065,222,0 +170755036115,219,0 +170755036164,219,0 +170755036214,221,0 +170755036263,220,0 +170755036313,221,0 +170755036361,221,0 +170755036410,222,0 +170755036458,222,0 +170755036506,222,0 +170755036554,222,0 +170755036603,223,0 +170755036651,223,0 +170755036699,216,0 +170755036749,215,0 +170755036797,215,0 +170755036845,215,0 +170755036894,216,0 +170755036942,217,0 +170755036992,218,0 +170755037041,218,0 +170755037089,219,0 +170755037139,220,0 +170755037187,221,0 +170755037235,220,0 +170755037283,223,0 +170755037331,223,0 +170755037380,224,0 +170755037430,224,0 +170755037478,223,0 +170755037527,223,0 +170755037577,223,0 +170755037626,216,0 +170755037674,215,0 +170755037722,216,0 +170755037770,217,0 +170755037820,217,0 +170755037869,218,0 +170755037919,219,0 +170755037968,219,0 +170755038018,220,0 +170755038067,221,0 +170755038117,221,0 +170755038166,221,0 +170755038214,223,0 +170755038262,223,0 +170755038310,223,0 +170755038360,223,0 +170755038409,223,0 +170755038457,223,0 +170755038505,222,0 +170755038553,216,0 +170755038603,217,0 +170755038651,217,0 +170755038698,219,0 +170755038746,220,0 +170755038796,219,0 +170755038844,219,0 +170755038893,220,0 +170755038941,221,0 +170755038991,221,0 +170755039039,222,0 +170755039088,223,0 +170755039138,223,0 +170755039186,223,0 +170755039235,223,0 +170755039283,223,0 +170755039331,223,0 +170755039381,224,0 +170755039429,223,0 +170755039478,216,0 +170755039528,216,0 +170755039577,217,0 +170755039627,218,0 +170755039675,219,0 +170755039724,221,0 +170755039774,222,0 +170755039823,221,0 +170755039871,222,0 +170755039921,222,0 +170755039969,223,0 +170755040017,223,0 +170755040066,223,0 +170755040114,223,0 +170755040162,223,0 +170755040211,223,0 +170755040259,224,0 +170755040307,223,0 +170755040355,217,0 +170755040403,215,0 +170755040451,215,0 +170755040499,215,0 +170755040546,216,0 +170755040596,217,0 +170755040645,220,0 +170755040695,219,0 +170755040743,219,0 +170755040791,220,0 +170755040839,221,0 +170755040887,222,0 +170755040935,223,0 +170755040983,223,0 +170755041031,223,0 +170755041080,223,0 +170755041130,223,0 +170755041178,222,0 +170755041227,222,0 +170755041277,216,0 +170755041326,214,0 +170755041374,215,0 +170755041422,215,0 +170755041470,216,0 +170755041520,217,0 +170755041567,217,0 +170755041615,218,0 +170755041663,219,0 +170755041711,218,0 +170755041761,220,0 +170755041809,222,0 +170755041857,222,0 +170755041905,222,0 +170755041953,222,0 +170755042002,223,0 +170755042052,223,0 +170755042101,223,0 +170755042151,222,0 +170755042200,216,0 +170755042248,215,0 +170755042298,215,0 +170755042346,215,0 +170755042394,216,0 +170755042442,216,0 +170755042490,217,0 +170755042538,217,0 +170755042586,218,0 +170755042633,220,0 +170755042681,219,0 +170755042729,221,0 +170755042779,221,0 +170755042827,222,0 +170755042876,222,0 +170755042924,223,0 +170755042972,223,0 +170755043020,223,0 +170755043070,222,0 +170755043118,216,0 +170755043166,214,0 +170755043215,215,0 +170755043263,215,0 +170755043311,215,0 +170755043361,216,0 +170755043409,217,0 +170755043456,217,0 +170755043506,218,0 +170755043556,219,0 +170755043603,220,0 +170755043651,221,0 +170755043699,221,0 +170755043749,223,0 +170755043798,222,0 +170755043846,222,0 +170755043894,222,0 +170755043942,223,0 +170755043992,222,0 +170755044040,215,0 +170755044088,214,0 +170755044136,215,0 +170755044184,214,0 +170755044233,216,0 +170755044281,217,0 +170755044331,218,0 +170755044380,218,0 +170755044430,219,0 +170755044478,220,0 +170755044526,221,0 +170755044575,222,0 +170755044625,222,0 +170755044672,223,0 +170755044720,223,0 +170755044768,222,0 +170755044818,223,0 +170755044867,222,0 +170755044915,216,0 +170755044964,215,0 +170755045012,215,0 +170755045060,215,0 +170755045108,215,0 +170755045156,214,0 +170755045204,215,0 +170755045252,216,0 +170755045300,217,0 +170755045349,218,0 +170755045397,219,0 +170755045445,219,0 +170755045493,220,0 +170755045541,221,0 +170755045589,222,0 +170755045637,221,0 +170755045686,222,0 +170755045734,222,0 +170755045783,222,0 +170755045831,222,0 +170755045879,215,0 +170755045927,215,0 +170755045976,215,0 +170755046024,215,0 +170755046074,216,0 +170755046122,217,0 +170755046169,218,0 +170755046219,219,0 +170755046267,220,0 +170755046316,220,0 +170755046364,221,0 +170755046412,221,0 +170755046460,222,0 +170755046508,222,0 +170755046556,223,0 +170755046604,225,0 +170755046652,223,0 +170755046699,223,0 +170755046747,216,0 +170755046795,215,0 +170755046845,215,0 +170755046892,216,0 +170755046940,216,0 +170755046988,218,0 +170755047038,218,0 +170755047086,220,0 +170755047135,220,0 +170755047183,221,0 +170755047231,222,0 +170755047279,221,0 +170755047327,223,0 +170755047375,222,0 +170755047423,223,0 +170755047472,223,0 +170755047522,224,0 +170755047570,224,0 +170755047618,223,0 +170755047667,216,0 +170755047717,215,0 +170755047765,215,0 +170755047814,216,0 +170755047863,217,0 +170755047911,218,0 +170755047961,219,0 +170755048009,220,0 +170755048057,220,0 +170755048105,221,0 +170755048153,221,0 +170755048201,222,0 +170755048248,222,0 +170755048296,223,0 +170755048346,223,0 +170755048394,223,0 +170755048442,221,0 +170755048491,222,0 +170755048539,222,0 +170755048587,216,0 +170755048635,215,0 +170755048683,214,0 +170755048731,215,0 +170755048780,215,0 +170755048830,216,0 +170755048878,216,0 +170755048927,218,0 +170755048977,219,0 +170755049025,218,0 +170755049072,219,0 +170755049120,220,0 +170755049170,220,0 +170755049218,221,0 +170755049266,222,0 +170755049314,222,0 +170755049363,222,0 +170755049411,222,0 +170755049459,223,0 +170755049507,216,0 +170755049557,214,0 +170755049606,215,0 +170755049656,215,0 +170755049705,215,0 +170755049753,215,0 +170755049803,217,0 +170755049851,217,0 +170755049900,217,0 +170755049948,218,0 +170755049996,219,0 +170755050046,218,0 +170755050094,220,0 +170755050143,221,0 +170755050191,221,0 +170755050241,222,0 +170755050289,223,0 +170755050337,222,0 +170755050386,222,0 +170755050434,215,0 +170755050482,215,0 +170755050531,215,0 +170755050579,215,0 +170755050629,216,0 +170755050677,216,0 +170755050725,217,0 +170755050774,218,0 +170755050824,219,0 +170755050872,220,0 +170755050921,220,0 +170755050969,221,0 +170755051019,221,0 +170755051067,222,0 +170755051115,222,0 +170755051164,223,0 +170755051214,224,0 +170755051262,223,0 +170755051311,217,0 +170755051361,215,0 +170755051409,216,0 +170755051458,215,0 +170755051506,216,0 +170755051554,217,0 +170755051602,217,0 +170755051650,218,0 +170755051698,219,0 +170755051747,220,0 +170755051797,220,0 +170755051845,222,0 +170755051893,222,0 +170755051942,221,0 +170755051992,222,0 +170755052041,222,0 +170755052089,223,0 +170755052139,224,0 +170755052188,223,0 +170755052238,216,0 +170755052286,214,0 +170755052334,215,0 +170755052383,215,0 +170755052431,216,0 +170755052481,217,0 +170755052530,217,0 +170755052578,218,0 +170755052626,218,0 +170755052676,219,0 +170755052723,220,0 +170755052773,221,0 +170755052821,222,0 +170755052870,222,0 +170755052918,224,0 +170755052966,222,0 +170755053014,223,0 +170755053062,223,0 +170755053110,223,0 +170755053158,216,0 +170755053207,215,0 +170755053257,215,0 +170755053305,215,0 +170755053354,215,0 +170755053404,217,0 +170755053453,217,0 +170755053501,218,0 +170755053551,219,0 +170755053600,219,0 +170755053650,221,0 +170755053699,221,0 +170755053749,221,0 +170755053797,223,0 +170755053846,222,0 +170755053894,223,0 +170755053942,223,0 +170755053990,223,0 +170755054038,223,0 +170755054086,215,0 +170755054134,215,0 +170755054182,215,0 +170755054230,215,0 +170755054279,215,0 +170755054329,215,0 +170755054377,216,0 +170755054426,217,0 +170755054474,218,0 +170755054522,219,0 +170755054572,220,0 +170755054620,222,0 +170755054669,222,0 +170755054717,223,0 +170755054767,224,0 +170755054815,223,0 +170755054864,222,0 +170755054912,222,0 +170755054962,216,0 +170755055011,214,0 +170755055061,214,0 +170755055110,215,0 +170755055158,215,0 +170755055206,215,0 +170755055256,215,0 +170755055305,215,0 +170755055353,216,0 +170755055401,216,0 +170755055451,218,0 +170755055500,218,0 +170755055548,219,0 +170755055598,220,0 +170755055647,220,0 +170755055697,221,0 +170755055746,220,0 +170755055794,221,0 +170755055843,223,0 +170755055891,216,0 +170755055941,214,0 +170755055989,215,0 +170755056039,216,0 +170755056086,216,0 +170755056134,217,0 +170755056184,217,0 +170755056232,218,0 +170755056280,218,0 +170755056328,219,0 +170755056376,219,0 +170755056425,220,0 +170755056475,222,0 +170755056523,222,0 +170755056571,222,0 +170755056619,221,0 +170755056667,221,0 +170755056715,222,0 +170755056764,222,0 +170755056812,215,0 +170755056860,215,0 +170755056910,216,0 +170755056959,216,0 +170755057007,217,0 +170755057057,216,0 +170755057105,218,0 +170755057154,218,0 +170755057202,219,0 +170755057252,220,0 +170755057300,221,0 +170755057348,222,0 +170755057397,222,0 +170755057447,224,0 +170755057496,224,0 +170755057546,222,0 +170755057596,223,0 +170755057643,222,0 +170755057691,221,0 +170755057739,216,0 +170755057787,217,0 +170755057835,220,0 +170755057885,219,0 +170755057933,221,0 +170755057981,220,0 +170755058030,220,0 +170755058078,221,0 +170755058126,222,0 +170755058175,222,0 +170755058223,222,0 +170755058273,224,0 +170755058322,223,0 +170755058372,225,0 +170755058421,225,0 +170755058469,224,0 +170755058517,223,0 +170755058567,222,0 +170755058615,216,0 +170755058664,216,0 +170755058714,217,0 +170755058762,218,0 +170755058811,219,0 +170755058861,216,0 +170755058909,220,0 +170755058957,221,0 +170755059006,221,0 +170755059054,222,0 +170755059102,222,0 +170755059150,223,0 +170755059200,223,0 +170755059249,224,0 +170755059297,224,0 +170755059345,223,0 +170755059395,223,0 +170755059444,223,0 +170755059492,223,0 +170755059540,216,0 +170755059590,215,0 +170755059638,215,0 +170755059687,216,0 +170755059735,217,0 +170755059783,218,0 +170755059831,219,0 +170755059880,219,0 +170755059930,221,0 +170755059978,220,0 +170755060026,222,0 +170755060074,222,0 +170755060123,222,0 +170755060171,224,0 +170755060219,223,0 +170755060267,223,0 +170755060315,224,0 +170755060365,223,0 +170755060413,222,0 +170755060461,215,0 +170755060509,215,0 +170755060557,215,0 +170755060606,214,0 +170755060654,215,0 +170755060704,216,0 +170755060752,217,0 +170755060799,218,0 +170755060847,219,0 +170755060895,220,0 +170755060943,220,0 +170755060991,220,0 +170755061041,222,0 +170755061090,222,0 +170755061140,222,0 +170755061189,223,0 +170755061237,223,0 +170755061285,222,0 +170755061333,217,0 +170755061381,215,0 +170755061431,215,0 +170755061478,215,0 +170755061526,215,0 +170755061574,215,0 +170755061622,216,0 +170755061670,216,0 +170755061718,216,0 +170755061768,217,0 +170755061816,218,0 +170755061864,220,0 +170755061912,220,0 +170755061960,221,0 +170755062009,221,0 +170755062057,222,0 +170755062106,222,0 +170755062156,223,0 +170755062206,223,0 +170755062255,219,0 +170755062303,214,0 +170755062351,215,0 +170755062399,215,0 +170755062448,215,0 +170755062498,215,0 +170755062547,215,0 +170755062595,215,0 +170755062643,215,0 +170755062691,216,0 +170755062739,216,0 +170755062789,218,0 +170755062838,219,0 +170755062888,219,0 +170755062936,220,0 +170755062984,220,0 +170755063032,222,0 +170755063079,222,0 +170755063127,223,0 +170755063177,215,0 +170755063227,215,0 +170755063275,215,0 +170755063322,216,0 +170755063372,217,0 +170755063422,217,0 +170755063469,217,0 +170755063517,216,0 +170755063567,225,0 +170755063617,218,0 +170755063666,221,0 +170755063716,220,0 +170755063764,222,0 +170755063813,221,0 +170755063861,222,0 +170755063909,222,0 +170755063957,222,0 +170755064007,222,0 +170755064056,223,0 +170755064106,215,0 +170755064154,216,0 +170755064202,215,0 +170755064251,216,0 +170755064301,217,0 +170755064349,217,0 +170755064398,218,0 +170755064448,217,0 +170755064496,217,0 +170755064545,220,0 +170755064595,222,0 +170755064642,223,0 +170755064690,222,0 +170755064738,222,0 +170755064786,222,0 +170755064836,223,0 +170755064884,223,0 +170755064933,223,0 +170755064981,216,0 +170755065029,215,0 +170755065079,214,0 +170755065127,215,0 +170755065175,216,0 +170755065224,216,0 +170755065274,217,0 +170755065323,218,0 +170755065371,218,0 +170755065421,219,0 +170755065470,220,0 +170755065518,220,0 +170755065566,220,0 +170755065616,221,0 +170755065664,223,0 +170755065712,222,0 +170755065761,223,0 +170755065809,223,0 +170755065859,223,0 +170755065906,216,0 +170755065956,216,0 +170755066004,217,0 +170755066054,218,0 +170755066103,218,0 +170755066151,220,0 +170755066201,219,0 +170755066248,220,0 +170755066298,221,0 +170755066346,221,0 +170755066395,222,0 +170755066445,223,0 +170755066494,223,0 +170755066542,224,0 +170755066590,223,0 +170755066638,223,0 +170755066688,223,0 +170755066736,223,0 +170755066784,222,0 +170755066833,215,0 +170755066883,217,0 +170755066931,218,0 +170755066979,218,0 +170755067028,220,0 +170755067076,221,0 +170755067126,220,0 +170755067174,221,0 +170755067223,222,0 +170755067271,222,0 +170755067319,223,0 +170755067367,223,0 +170755067415,224,0 +170755067463,224,0 +170755067513,223,0 +170755067562,223,0 +170755067612,222,0 +170755067660,222,0 +170755067707,216,0 +170755067755,215,0 +170755067803,216,0 +170755067853,217,0 +170755067901,218,0 +170755067949,218,0 +170755067998,219,0 +170755068046,220,0 +170755068094,219,0 +170755068144,222,0 +170755068192,221,0 +170755068240,221,0 +170755068288,222,0 +170755068337,222,0 +170755068385,223,0 +170755068435,223,0 +170755068483,223,0 +170755068531,223,0 +170755068578,222,0 +170755068628,216,0 +170755068676,215,0 +170755068724,216,0 +170755068773,216,0 +170755068821,217,0 +170755068869,217,0 +170755068917,218,0 +170755068966,218,0 +170755069014,219,0 +170755069062,220,0 +170755069110,221,0 +170755069160,220,0 +170755069209,223,0 +170755069259,223,0 +170755069307,223,0 +170755069355,223,0 +170755069404,222,0 +170755069452,223,0 +170755069500,221,0 +170755069549,215,0 +170755069597,215,0 +170755069645,215,0 +170755069693,216,0 +170755069741,217,0 +170755069789,217,0 +170755069837,218,0 +170755069885,219,0 +170755069933,219,0 +170755069981,220,0 +170755070029,221,0 +170755070079,221,0 +170755070128,222,0 +170755070176,223,0 +170755070226,224,0 +170755070274,221,0 +170755070323,223,0 +170755070371,223,0 +170755070419,222,0 +170755070468,214,0 +170755070516,214,0 +170755070564,215,0 +170755070612,215,0 +170755070662,216,0 +170755070710,217,0 +170755070758,218,0 +170755070806,218,0 +170755070855,219,0 +170755070903,217,0 +170755070951,220,0 +170755070999,221,0 +170755071047,223,0 +170755071095,222,0 +170755071143,223,0 +170755071191,222,0 +170755071238,222,0 +170755071286,223,0 +170755071334,221,0 +170755071382,214,0 +170755071430,215,0 +170755071478,215,0 +170755071526,215,0 +170755071573,215,0 +170755071621,216,0 +170755071669,217,0 +170755071717,218,0 +170755071765,219,0 +170755071813,220,0 +170755071862,220,0 +170755071910,220,0 +170755071958,222,0 +170755072006,222,0 +170755072054,223,0 +170755072102,224,0 +170755072150,222,0 +170755072197,223,0 +170755072245,222,0 +170755072293,214,0 +170755072341,214,0 +170755072389,215,0 +170755072438,215,0 +170755072486,215,0 +170755072534,216,0 +170755072584,217,0 +170755072632,219,0 +170755072679,219,0 +170755072727,220,0 +170755072775,220,0 +170755072823,220,0 +170755072873,221,0 +170755072920,221,0 +170755072968,222,0 +170755073016,222,0 +170755073064,222,0 +170755073112,222,0 +170755073162,216,0 +170755073211,214,0 +170755073261,215,0 +170755073308,215,0 +170755073358,215,0 +170755073407,216,0 +170755073457,216,0 +170755073505,217,0 +170755073553,218,0 +170755073601,218,0 +170755073649,220,0 +170755073696,220,0 +170755073744,221,0 +170755073792,221,0 +170755073840,222,0 +170755073888,223,0 +170755073935,222,0 +170755073983,223,0 +170755074031,223,0 +170755074079,215,0 +170755074127,214,0 +170755074175,215,0 +170755074223,215,0 +170755074272,215,0 +170755074320,215,0 +170755074368,215,0 +170755074416,216,0 +170755074466,217,0 +170755074513,219,0 +170755074561,219,0 +170755074609,220,0 +170755074657,220,0 +170755074707,221,0 +170755074754,221,0 +170755074804,222,0 +170755074852,222,0 +170755074900,223,0 +170755074948,222,0 +170755074996,215,0 +170755075043,215,0 +170755075091,215,0 +170755075139,215,0 +170755075187,215,0 +170755075235,215,0 +170755075283,215,0 +170755075331,216,0 +170755075379,216,0 +170755075427,217,0 +170755075476,218,0 +170755075524,219,0 +170755075572,220,0 +170755075620,220,0 +170755075668,220,0 +170755075716,221,0 +170755075764,223,0 +170755075812,223,0 +170755075861,222,0 +170755075911,215,0 +170755075959,216,0 +170755076007,217,0 +170755076055,217,0 +170755076103,218,0 +170755076152,218,0 +170755076200,219,0 +170755076248,220,0 +170755076296,220,0 +170755076344,221,0 +170755076392,221,0 +170755076440,221,0 +170755076489,222,0 +170755076539,224,0 +170755076587,223,0 +170755076636,223,0 +170755076686,223,0 +170755076734,223,0 +170755076782,216,0 +170755076830,215,0 +170755076877,215,0 +170755076925,216,0 +170755076973,217,0 +170755077021,217,0 +170755077071,220,0 +170755077119,219,0 +170755077168,219,0 +170755077218,221,0 +170755077268,221,0 +170755077315,222,0 +170755077363,221,0 +170755077411,222,0 +170755077459,223,0 +170755077507,224,0 +170755077555,223,0 +170755077605,224,0 +170755077653,223,0 +170755077701,216,0 +170755077749,215,0 +170755077797,216,0 +170755077844,217,0 +170755077892,217,0 +170755077940,219,0 +170755077988,218,0 +170755078036,219,0 +170755078084,220,0 +170755078134,221,0 +170755078182,222,0 +170755078230,223,0 +170755078278,222,0 +170755078325,223,0 +170755078373,224,0 +170755078421,221,0 +170755078469,224,0 +170755078519,224,0 +170755078567,223,0 +170755078615,216,0 +170755078663,216,0 +170755078712,217,0 +170755078760,219,0 +170755078808,218,0 +170755078857,219,0 +170755078905,219,0 +170755078953,220,0 +170755079001,221,0 +170755079049,221,0 +170755079097,222,0 +170755079145,222,0 +170755079193,223,0 +170755079240,223,0 +170755079288,223,0 +170755079336,223,0 +170755079384,222,0 +170755079432,222,0 +170755079480,222,0 +170755079528,215,0 +170755079576,216,0 +170755079624,217,0 +170755079673,217,0 +170755079721,219,0 +170755079769,219,0 +170755079817,220,0 +170755079866,220,0 +170755079914,222,0 +170755079962,221,0 +170755080010,223,0 +170755080059,223,0 +170755080109,223,0 +170755080157,223,0 +170755080206,223,0 +170755080256,224,0 +170755080304,225,0 +170755080352,221,0 +170755080399,216,0 +170755080449,215,0 +170755080497,216,0 +170755080545,216,0 +170755080593,217,0 +170755080640,217,0 +170755080690,218,0 +170755080738,219,0 +170755080786,219,0 +170755080834,220,0 +170755080883,221,0 +170755080933,222,0 +170755080982,221,0 +170755081032,223,0 +170755081080,223,0 +170755081129,223,0 +170755081179,223,0 +170755081228,224,0 +170755081276,222,0 +170755081324,215,0 +170755081372,215,0 +170755081422,216,0 +170755081471,216,0 +170755081519,217,0 +170755081567,218,0 +170755081617,218,0 +170755081666,218,0 +170755081714,219,0 +170755081764,220,0 +170755081812,220,0 +170755081861,222,0 +170755081909,222,0 +170755081959,222,0 +170755082008,223,0 +170755082056,222,0 +170755082104,221,0 +170755082152,223,0 +170755082200,222,0 +170755082248,215,0 +170755082298,214,0 +170755082345,215,0 +170755082393,216,0 +170755082441,217,0 +170755082491,217,0 +170755082539,218,0 +170755082588,218,0 +170755082636,219,0 +170755082684,219,0 +170755082732,221,0 +170755082780,221,0 +170755082828,221,0 +170755082878,223,0 +170755082927,223,0 +170755082975,223,0 +170755083023,222,0 +170755083073,223,0 +170755083122,216,0 +170755083170,215,0 +170755083218,214,0 +170755083266,217,0 +170755083316,216,0 +170755083364,217,0 +170755083412,215,0 +170755083460,218,0 +170755083507,220,0 +170755083557,221,0 +170755083605,221,0 +170755083653,221,0 +170755083702,222,0 +170755083750,222,0 +170755083800,223,0 +170755083850,223,0 +170755083898,223,0 +170755083947,222,0 +170755083995,222,0 +170755084044,216,0 +170755084094,216,0 +170755084142,217,0 +170755084190,217,0 +170755084239,218,0 +170755084287,219,0 +170755084335,219,0 +170755084383,221,0 +170755084431,221,0 +170755084479,221,0 +170755084529,222,0 +170755084577,222,0 +170755084626,223,0 +170755084676,223,0 +170755084724,222,0 +170755084772,223,0 +170755084819,223,0 +170755084867,222,0 +170755084915,216,0 +170755084965,216,0 +170755085013,216,0 +170755085062,218,0 +170755085112,218,0 +170755085160,218,0 +170755085209,219,0 +170755085257,221,0 +170755085305,220,0 +170755085355,221,0 +170755085403,223,0 +170755085451,222,0 +170755085499,223,0 +170755085548,224,0 +170755085596,224,0 +170755085646,224,0 +170755085695,223,0 +170755085743,224,0 +170755085793,222,0 +170755085842,215,0 +170755085892,215,0 +170755085940,217,0 +170755085989,217,0 +170755086039,218,0 +170755086087,218,0 +170755086135,220,0 +170755086183,220,0 +170755086232,220,0 +170755086280,220,0 +170755086329,222,0 +170755086377,223,0 +170755086425,223,0 +170755086473,223,0 +170755086521,224,0 +170755086571,223,0 +170755086620,223,0 +170755086670,222,0 +170755086718,216,0 +170755086766,214,0 +170755086815,215,0 +170755086863,215,0 +170755086911,215,0 +170755086961,216,0 +170755087010,218,0 +170755087060,218,0 +170755087109,219,0 +170755087157,220,0 +170755087207,220,0 +170755087255,224,0 +170755087304,221,0 +170755087352,222,0 +170755087400,223,0 +170755087448,222,0 +170755087496,222,0 +170755087544,224,0 +170755087593,222,0 +170755087641,215,0 +170755087689,214,0 +170755087739,215,0 +170755087787,215,0 +170755087835,215,0 +170755087884,215,0 +170755087934,216,0 +170755087982,216,0 +170755088031,217,0 +170755088081,218,0 +170755088130,219,0 +170755088178,219,0 +170755088226,221,0 +170755088274,220,0 +170755088322,223,0 +170755088370,224,0 +170755088418,223,0 +170755088466,224,0 +170755088514,216,0 +170755088562,215,0 +170755088611,215,0 +170755088659,215,0 +170755088707,215,0 +170755088757,215,0 +170755088805,216,0 +170755088853,217,0 +170755088902,217,0 +170755088952,218,0 +170755089000,220,0 +170755089047,221,0 +170755089095,221,0 +170755089143,221,0 +170755089191,222,0 +170755089239,223,0 +170755089289,224,0 +170755089337,223,0 +170755089386,222,0 +170755089434,215,0 +170755089484,215,0 +170755089533,215,0 +170755089581,215,0 +170755089631,216,0 +170755089679,216,0 +170755089728,217,0 +170755089778,218,0 +170755089826,220,0 +170755089875,220,0 +170755089923,221,0 +170755089973,221,0 +170755090021,224,0 +170755090069,223,0 +170755090116,223,0 +170755090164,224,0 +170755090212,223,0 +170755090262,224,0 +170755090310,216,0 +170755090359,214,0 +170755090407,214,0 +170755090455,215,0 +170755090504,215,0 +170755090552,216,0 +170755090600,217,0 +170755090650,217,0 +170755090699,218,0 +170755090747,219,0 +170755090795,220,0 +170755090845,221,0 +170755090893,222,0 +170755090941,221,0 +170755090990,222,0 +170755091038,223,0 +170755091088,224,0 +170755091136,223,0 +170755091183,222,0 +170755091231,215,0 +170755091279,215,0 +170755091327,216,0 +170755091375,215,0 +170755091425,216,0 +170755091472,217,0 +170755091520,218,0 +170755091568,218,0 +170755091616,219,0 +170755091664,220,0 +170755091712,220,0 +170755091761,222,0 +170755091811,222,0 +170755091861,223,0 +170755091910,223,0 +170755091960,225,0 +170755092009,222,0 +170755092059,223,0 +170755092108,216,0 +170755092156,214,0 +170755092206,215,0 +170755092254,215,0 +170755092302,216,0 +170755092350,217,0 +170755092398,217,0 +170755092447,218,0 +170755092495,219,0 +170755092543,220,0 +170755092591,219,0 +170755092639,221,0 +170755092688,223,0 +170755092736,224,0 +170755092784,223,0 +170755092833,223,0 +170755092883,222,0 +170755092933,223,0 +170755092981,221,0 +170755093028,215,0 +170755093076,215,0 +170755093126,216,0 +170755093176,217,0 +170755093224,218,0 +170755093271,218,0 +170755093321,219,0 +170755093369,219,0 +170755093417,224,0 +170755093466,222,0 +170755093514,222,0 +170755093562,221,0 +170755093612,222,0 +170755093661,223,0 +170755093711,223,0 +170755093761,223,0 +170755093808,225,0 +170755093856,223,0 +170755093906,216,0 +170755093954,216,0 +170755094002,217,0 +170755094050,218,0 +170755094098,218,0 +170755094146,218,0 +170755094195,219,0 +170755094243,219,0 +170755094293,219,0 +170755094341,220,0 +170755094389,221,0 +170755094438,222,0 +170755094486,222,0 +170755094534,223,0 +170755094582,224,0 +170755094630,225,0 +170755094678,227,0 +170755094726,223,0 +170755094775,223,0 +170755094823,216,0 +170755094871,216,0 +170755094919,218,0 +170755094967,218,0 +170755095017,219,0 +170755095066,219,0 +170755095116,220,0 +170755095164,220,0 +170755095212,220,0 +170755095260,221,0 +170755095308,222,0 +170755095356,222,0 +170755095404,222,0 +170755095453,223,0 +170755095501,223,0 +170755095549,224,0 +170755095597,223,0 +170755095645,224,0 +170755095694,218,0 +170755095742,216,0 +170755095790,218,0 +170755095838,219,0 +170755095888,220,0 +170755095937,221,0 +170755095987,221,0 +170755096036,221,0 +170755096084,221,0 +170755096132,222,0 +170755096182,223,0 +170755096231,224,0 +170755096279,223,0 +170755096327,225,0 +170755096377,223,0 +170755096426,224,0 +170755096474,223,0 +170755096524,222,0 +170755096572,222,0 +170755096621,216,0 +170755096671,217,0 +170755096720,218,0 +170755096770,219,0 +170755096819,219,0 +170755096869,221,0 +170755096917,220,0 +170755096965,222,0 +170755097012,222,0 +170755097060,223,0 +170755097108,223,0 +170755097156,224,0 +170755097204,221,0 +170755097252,222,0 +170755097300,223,0 +170755097348,223,0 +170755097395,224,0 +170755097443,222,0 +170755097491,216,0 +170755097541,215,0 +170755097589,216,0 +170755097637,216,0 +170755097685,217,0 +170755097732,218,0 +170755097780,218,0 +170755097828,219,0 +170755097876,220,0 +170755097924,222,0 +170755097972,221,0 +170755098020,223,0 +170755098068,223,0 +170755098116,223,0 +170755098164,223,0 +170755098211,223,0 +170755098259,221,0 +170755098307,223,0 +170755098355,222,0 +170755098403,215,0 +170755098451,214,0 +170755098499,215,0 +170755098547,215,0 +170755098595,216,0 +170755098642,216,0 +170755098690,218,0 +170755098738,218,0 +170755098786,219,0 +170755098834,220,0 +170755098882,220,0 +170755098930,221,0 +170755098978,221,0 +170755099026,221,0 +170755099074,223,0 +170755099123,223,0 +170755099171,223,0 +170755099220,223,0 +170755099268,217,0 +170755099318,215,0 +170755099366,215,0 +170755099414,215,0 +170755099463,215,0 +170755099511,215,0 +170755099559,214,0 +170755099607,216,0 +170755099656,217,0 +170755099704,217,0 +170755099752,218,0 +170755099800,219,0 +170755099848,221,0 +170755099896,221,0 +170755099943,222,0 +170755099991,222,0 +170755100041,224,0 +170755100090,223,0 +170755100138,227,0 +170755100186,216,0 +170755100234,214,0 +170755100282,215,0 +170755100330,215,0 +170755100378,215,0 +170755100425,214,0 +170755100473,216,0 +170755100521,216,0 +170755100569,217,0 +170755100619,220,0 +170755100668,220,0 +170755100718,219,0 +170755100766,220,0 +170755100815,222,0 +170755100865,223,0 +170755100913,222,0 +170755100961,223,0 +170755101008,222,0 +170755101056,222,0 +170755101104,214,0 +170755101152,214,0 +170755101200,214,0 +170755101250,215,0 +170755101298,215,0 +170755101347,216,0 +170755101397,216,0 +170755101446,217,0 +170755101494,218,0 +170755101542,219,0 +170755101592,220,0 +170755101640,221,0 +170755101688,221,0 +170755101736,222,0 +170755101785,222,0 +170755101835,222,0 +170755101884,222,0 +170755101932,222,0 +170755101982,214,0 +170755102031,214,0 +170755102079,215,0 +170755102129,215,0 +170755102177,216,0 +170755102226,217,0 +170755102274,218,0 +170755102322,219,0 +170755102370,220,0 +170755102418,220,0 +170755102466,221,0 +170755102515,222,0 +170755102565,222,0 +170755102614,223,0 +170755102663,222,0 +170755102711,224,0 +170755102759,223,0 +170755102807,221,0 +170755102855,215,0 +170755102905,215,0 +170755102954,215,0 +170755103004,215,0 +170755103053,216,0 +170755103103,217,0 +170755103150,218,0 +170755103200,220,0 +170755103250,220,0 +170755103298,221,0 +170755103346,221,0 +170755103394,222,0 +170755103442,223,0 +170755103491,223,0 +170755103539,223,0 +170755103587,223,0 +170755103635,222,0 +170755103683,223,0 +170755103732,215,0 +170755103782,215,0 +170755103830,216,0 +170755103879,217,0 +170755103929,218,0 +170755103977,218,0 +170755104026,220,0 +170755104076,220,0 +170755104125,221,0 +170755104175,222,0 +170755104225,223,0 +170755104272,222,0 +170755104322,223,0 +170755104370,223,0 +170755104420,223,0 +170755104467,225,0 +170755104517,223,0 +170755104567,221,0 +170755104616,215,0 +170755104664,215,0 +170755104714,215,0 +170755104761,215,0 +170755104811,216,0 +170755104861,217,0 +170755104908,218,0 +170755104956,220,0 +170755105006,220,0 +170755105054,221,0 +170755105102,221,0 +170755105151,222,0 +170755105201,221,0 +170755105250,224,0 +170755105300,222,0 +170755105348,223,0 +170755105397,223,0 +170755105445,221,0 +170755105494,215,0 +170755105542,215,0 +170755105590,216,0 +170755105638,216,0 +170755105686,217,0 +170755105735,218,0 +170755105783,218,0 +170755105831,218,0 +170755105880,220,0 +170755105928,219,0 +170755105976,220,0 +170755106024,221,0 +170755106074,222,0 +170755106122,221,0 +170755106170,223,0 +170755106219,222,0 +170755106269,222,0 +170755106318,220,0 +170755106366,214,0 +170755106414,215,0 +170755106464,216,0 +170755106511,218,0 +170755106559,218,0 +170755106607,218,0 +170755106655,219,0 +170755106703,220,0 +170755106751,220,0 +170755106799,221,0 +170755106848,222,0 +170755106896,224,0 +170755106944,222,0 +170755106993,223,0 +170755107041,224,0 +170755107089,224,0 +170755107137,222,0 +170755107185,221,0 +170755107234,215,0 +170755107284,215,0 +170755107332,216,0 +170755107379,217,0 +170755107429,217,0 +170755107477,219,0 +170755107526,219,0 +170755107574,219,0 +170755107622,221,0 +170755107670,220,0 +170755107718,221,0 +170755107766,224,0 +170755107814,223,0 +170755107862,222,0 +170755107910,223,0 +170755107957,223,0 +170755108005,223,0 +170755108053,222,0 +170755108101,215,0 +170755108151,215,0 +170755108199,215,0 +170755108248,216,0 +170755108296,217,0 +170755108345,217,0 +170755108393,218,0 +170755108441,220,0 +170755108489,219,0 +170755108537,220,0 +170755108586,221,0 +170755108634,221,0 +170755108682,222,0 +170755108730,224,0 +170755108779,222,0 +170755108827,222,0 +170755108875,226,0 +170755108923,223,0 +170755108971,215,0 +170755109019,215,0 +170755109067,215,0 +170755109115,216,0 +170755109162,216,0 +170755109210,217,0 +170755109258,218,0 +170755109306,219,0 +170755109354,220,0 +170755109402,221,0 +170755109451,222,0 +170755109501,222,0 +170755109549,222,0 +170755109597,222,0 +170755109645,223,0 +170755109692,224,0 +170755109742,223,0 +170755109790,223,0 +170755109837,215,0 +170755109887,215,0 +170755109935,215,0 +170755109985,216,0 +170755110034,216,0 +170755110082,217,0 +170755110132,216,0 +170755110180,219,0 +170755110228,219,0 +170755110275,220,0 +170755110325,223,0 +170755110373,221,0 +170755110422,222,0 +170755110472,223,0 +170755110520,223,0 +170755110568,223,0 +170755110617,222,0 +170755110665,222,0 +170755110714,216,0 +170755110762,215,0 +170755110810,215,0 +170755110858,216,0 +170755110906,216,0 +170755110956,217,0 +170755111004,217,0 +170755111053,218,0 +170755111101,219,0 +170755111151,220,0 +170755111200,219,0 +170755111248,220,0 +170755111298,218,0 +170755111347,220,0 +170755111395,222,0 +170755111443,223,0 +170755111493,223,0 +170755111541,223,0 +170755111590,224,0 +170755111638,225,0 +170755111686,224,0 +170755111735,224,0 +170755111783,225,0 +170755111831,223,0 +170755111881,223,0 +170755111929,222,0 +170755111977,221,0 +170755112025,216,0 +170755112073,217,0 +170755112121,218,0 +170755112169,219,0 +170755112217,220,0 +170755112265,220,0 +170755112314,220,0 +170755112362,221,0 +170755112412,222,0 +170755112460,222,0 +170755112507,222,0 +170755112557,224,0 +170755112605,224,0 +170755112653,224,0 +170755112703,226,0 +170755112752,224,0 +170755112800,223,0 +170755112849,222,0 +170755112899,216,0 +170755112947,216,0 +170755112996,217,0 +170755113046,218,0 +170755113096,219,0 +170755113143,219,0 +170755113191,220,0 +170755113239,220,0 +170755113287,220,0 +170755113335,222,0 +170755113385,222,0 +170755113434,223,0 +170755113484,223,0 +170755113532,223,0 +170755113581,223,0 +170755113629,224,0 +170755113677,223,0 +170755113725,222,0 +170755113775,215,0 +170755113824,215,0 +170755113872,215,0 +170755113920,216,0 +170755113968,217,0 +170755114016,216,0 +170755114066,218,0 +170755114114,218,0 +170755114161,220,0 +170755114211,219,0 +170755114259,220,0 +170755114309,222,0 +170755114357,222,0 +170755114406,222,0 +170755114456,223,0 +170755114505,223,0 +170755114553,223,0 +170755114601,223,0 +170755114649,215,0 +170755114697,215,0 +170755114746,216,0 +170755114796,217,0 +170755114846,217,0 +170755114893,218,0 +170755114943,218,0 +170755114993,219,0 +170755115040,219,0 +170755115088,220,0 +170755115136,221,0 +170755115186,221,0 +170755115235,224,0 +170755115285,223,0 +170755115333,223,0 +170755115381,223,0 +170755115430,223,0 +170755115480,216,0 +170755115530,215,0 +170755115579,215,0 +170755115629,216,0 +170755115679,216,0 +170755115727,217,0 +170755115775,217,0 +170755115824,219,0 +170755115872,219,0 +170755115922,220,0 +170755115970,221,0 +170755116019,223,0 +170755116067,222,0 +170755116115,222,0 +170755116165,223,0 +170755116214,222,0 +170755116264,223,0 +170755116312,222,0 +170755116361,216,0 +170755116409,214,0 +170755116457,217,0 +170755116505,215,0 +170755116554,216,0 +170755116602,217,0 +170755116652,218,0 +170755116702,219,0 +170755116749,219,0 +170755116799,220,0 +170755116847,221,0 +170755116896,222,0 +170755116946,222,0 +170755116994,222,0 +170755117043,222,0 +170755117091,223,0 +170755117139,221,0 +170755117187,223,0 +170755117235,216,0 +170755117285,215,0 +170755117334,215,0 +170755117384,215,0 +170755117432,216,0 +170755117481,217,0 +170755117531,218,0 +170755117580,218,0 +170755117630,218,0 +170755117679,219,0 +170755117729,220,0 +170755117778,221,0 +170755117826,223,0 +170755117874,222,0 +170755117922,222,0 +170755117972,222,0 +170755118021,220,0 +170755118069,222,0 +170755118117,216,0 +170755118165,215,0 +170755118215,216,0 +170755118263,217,0 +170755118310,218,0 +170755118358,218,0 +170755118408,219,0 +170755118456,220,0 +170755118504,221,0 +170755118552,222,0 +170755118601,222,0 +170755118651,222,0 +170755118700,223,0 +170755118748,223,0 +170755118798,224,0 +170755118846,222,0 +170755118896,223,0 +170755118944,222,0 +170755118993,216,0 +170755119043,215,0 +170755119092,216,0 +170755119140,217,0 +170755119188,218,0 +170755119238,218,0 +170755119286,220,0 +170755119335,220,0 +170755119385,221,0 +170755119434,222,0 +170755119484,222,0 +170755119532,224,0 +170755119580,222,0 +170755119628,224,0 +170755119677,223,0 +170755119727,223,0 +170755119776,222,0 +170755119824,223,0 +170755119872,215,0 +170755119920,215,0 +170755119968,215,0 +170755120017,215,0 +170755120067,216,0 +170755120115,217,0 +170755120165,218,0 +170755120214,220,0 +170755120264,217,0 +170755120313,221,0 +170755120363,221,0 +170755120411,223,0 +170755120459,226,0 +170755120508,222,0 +170755120556,223,0 +170755120604,223,0 +170755120654,222,0 +170755120702,223,0 +170755120750,215,0 +170755120798,215,0 +170755120846,215,0 +170755120893,215,0 +170755120941,215,0 +170755120991,216,0 +170755121041,217,0 +170755121089,217,0 +170755121138,218,0 +170755121188,219,0 +170755121237,221,0 +170755121285,221,0 +170755121335,220,0 +170755121384,222,0 +170755121432,222,0 +170755121482,222,0 +170755121530,221,0 +170755121578,222,0 +170755121627,215,0 +170755121677,215,0 +170755121726,215,0 +170755121776,216,0 +170755121825,216,0 +170755121875,215,0 +170755121923,217,0 +170755121971,218,0 +170755122020,219,0 +170755122070,220,0 +170755122119,221,0 +170755122167,223,0 +170755122215,221,0 +170755122265,223,0 +170755122314,222,0 +170755122364,224,0 +170755122412,223,0 +170755122461,216,0 +170755122509,215,0 +170755122559,216,0 +170755122607,216,0 +170755122656,217,0 +170755122704,217,0 +170755122754,218,0 +170755122802,218,0 +170755122851,219,0 +170755122901,220,0 +170755122950,219,0 +170755123000,221,0 +170755123049,221,0 +170755123099,223,0 +170755123148,224,0 +170755123196,223,0 +170755123246,222,0 +170755123295,222,0 +170755123345,216,0 +170755123395,215,0 +170755123443,216,0 +170755123492,216,0 +170755123540,215,0 +170755123590,218,0 +170755123638,218,0 +170755123687,219,0 +170755123737,219,0 +170755123786,220,0 +170755123834,222,0 +170755123882,222,0 +170755123930,222,0 +170755123980,224,0 +170755124029,223,0 +170755124077,223,0 +170755124125,223,0 +170755124173,222,0 +170755124221,216,0 +170755124269,216,0 +170755124316,216,0 +170755124366,218,0 +170755124414,217,0 +170755124462,217,0 +170755124510,219,0 +170755124557,219,0 +170755124607,220,0 +170755124655,221,0 +170755124703,222,0 +170755124752,222,0 +170755124802,222,0 +170755124850,222,0 +170755124899,224,0 +170755124949,223,0 +170755124997,223,0 +170755125046,222,0 +170755125094,216,0 +170755125142,216,0 +170755125192,216,0 +170755125240,217,0 +170755125288,218,0 +170755125336,217,0 +170755125385,219,0 +170755125433,220,0 +170755125483,222,0 +170755125531,222,0 +170755125580,221,0 +170755125628,222,0 +170755125676,222,0 +170755125724,223,0 +170755125772,222,0 +170755125822,223,0 +170755125870,222,0 +170755125918,222,0 +170755125967,215,0 +170755126015,215,0 +170755126065,216,0 +170755126114,216,0 +170755126162,216,0 +170755126210,218,0 +170755126258,220,0 +170755126306,219,0 +170755126353,220,0 +170755126403,220,0 +170755126451,221,0 +170755126500,222,0 +170755126548,223,0 +170755126596,222,0 +170755126644,222,0 +170755126692,223,0 +170755126740,225,0 +170755126788,221,0 +170755126836,216,0 +170755126883,216,0 +170755126931,217,0 +170755126979,217,0 +170755127029,219,0 +170755127077,218,0 +170755127125,219,0 +170755127172,219,0 +170755127220,220,0 +170755127268,220,0 +170755127318,221,0 +170755127367,223,0 +170755127415,223,0 +170755127465,224,0 +170755127513,223,0 +170755127560,223,0 +170755127608,222,0 +170755127658,221,0 +170755127707,217,0 +170755127755,216,0 +170755127805,219,0 +170755127853,219,0 +170755127902,220,0 +170755127952,220,0 +170755128001,221,0 +170755128051,222,0 +170755128101,223,0 +170755128150,223,0 +170755128198,224,0 +170755128248,223,0 +170755128296,223,0 +170755128345,224,0 +170755128393,224,0 +170755128441,223,0 +170755128489,223,0 +170755128537,222,0 +170755128587,218,0 +170755128636,218,0 +170755128686,219,0 +170755128735,220,0 +170755128783,220,0 +170755128833,220,0 +170755128882,222,0 +170755128930,223,0 +170755128978,222,0 +170755129026,223,0 +170755129076,225,0 +170755129125,222,0 +170755129175,223,0 +170755129224,223,0 +170755129272,223,0 +170755129322,223,0 +170755129370,223,0 +170755129419,222,0 +170755129467,217,0 +170755129516,217,0 +170755129566,218,0 +170755129615,218,0 +170755129665,220,0 +170755129715,220,0 +170755129763,220,0 +170755129810,221,0 +170755129858,223,0 +170755129906,223,0 +170755129954,223,0 +170755130004,222,0 +170755130053,223,0 +170755130101,224,0 +170755130151,223,0 +170755130201,223,0 +170755130250,222,0 +170755130298,219,0 +170755130346,215,0 +170755130395,215,0 +170755130445,216,0 +170755130495,219,0 +170755130543,217,0 +170755130592,218,0 +170755130642,219,0 +170755130690,219,0 +170755130738,220,0 +170755130787,222,0 +170755130837,222,0 +170755130885,225,0 +170755130934,223,0 +170755130984,223,0 +170755131033,223,0 +170755131081,222,0 +170755131129,222,0 +170755131177,216,0 +170755131225,215,0 +170755131273,214,0 +170755131321,216,0 +170755131369,216,0 +170755131417,217,0 +170755131465,218,0 +170755131513,218,0 +170755131560,219,0 +170755131608,220,0 +170755131656,221,0 +170755131704,223,0 +170755131752,223,0 +170755131800,223,0 +170755131848,222,0 +170755131897,224,0 +170755131945,223,0 +170755131995,222,0 +170755132043,215,0 +170755132091,215,0 +170755132139,214,0 +170755132187,216,0 +170755132235,217,0 +170755132283,216,0 +170755132331,216,0 +170755132379,218,0 +170755132427,219,0 +170755132475,220,0 +170755132524,221,0 +170755132572,221,0 +170755132621,223,0 +170755132669,222,0 +170755132719,225,0 +170755132767,225,0 +170755132815,223,0 +170755132863,223,0 +170755132911,215,0 +170755132959,215,0 +170755133007,215,0 +170755133055,215,0 +170755133103,216,0 +170755133150,216,0 +170755133200,217,0 +170755133248,218,0 +170755133297,219,0 +170755133347,221,0 +170755133395,220,0 +170755133443,220,0 +170755133491,223,0 +170755133539,223,0 +170755133587,222,0 +170755133636,223,0 +170755133684,222,0 +170755133732,216,0 +170755133782,215,0 +170755133830,215,0 +170755133878,216,0 +170755133926,217,0 +170755133975,218,0 +170755134023,218,0 +170755134073,219,0 +170755134121,220,0 +170755134170,221,0 +170755134218,221,0 +170755134266,222,0 +170755134314,223,0 +170755134363,223,0 +170755134411,223,0 +170755134459,223,0 +170755134508,223,0 +170755134556,222,0 +170755134604,215,0 +170755134652,216,0 +170755134700,216,0 +170755134748,217,0 +170755134796,218,0 +170755134844,219,0 +170755134891,219,0 +170755134939,221,0 +170755134987,222,0 +170755135035,222,0 +170755135083,223,0 +170755135131,223,0 +170755135179,224,0 +170755135227,223,0 +170755135274,223,0 +170755135322,222,0 +170755135370,223,0 +170755135418,223,0 +170755135466,217,0 +170755135514,218,0 +170755135562,219,0 +170755135610,218,0 +170755135658,220,0 +170755135706,221,0 +170755135754,220,0 +170755135802,226,0 +170755135849,222,0 +170755135897,221,0 +170755135947,223,0 +170755135995,223,0 +170755136043,225,0 +170755136091,224,0 +170755136139,223,0 +170755136188,222,0 +170755136236,222,0 +170755136286,216,0 +170755136335,216,0 +170755136383,217,0 +170755136431,218,0 +170755136479,218,0 +170755136527,219,0 +170755136576,220,0 +170755136624,221,0 +170755136672,221,0 +170755136720,221,0 +170755136768,223,0 +170755136818,222,0 +170755136867,223,0 +170755136915,223,0 +170755136963,224,0 +170755137011,224,0 +170755137059,222,0 +170755137107,222,0 +170755137157,215,0 +170755137204,215,0 +170755137252,215,0 +170755137300,216,0 +170755137348,217,0 +170755137396,217,0 +170755137445,218,0 +170755137493,218,0 +170755137541,220,0 +170755137589,221,0 +170755137637,221,0 +170755137686,222,0 +170755137736,222,0 +170755137784,223,0 +170755137832,223,0 +170755137880,222,0 +170755137928,222,0 +170755137976,223,0 +170755138023,215,0 +170755138073,215,0 +170755138121,216,0 +170755138169,217,0 +170755138217,218,0 +170755138265,219,0 +170755138313,220,0 +170755138361,219,0 +170755138408,222,0 +170755138456,221,0 +170755138504,222,0 +170755138552,223,0 +170755138602,223,0 +170755138650,224,0 +170755138697,223,0 +170755138745,223,0 +170755138793,222,0 +170755138841,216,0 +170755138889,214,0 +170755138939,215,0 +170755138988,216,0 +170755139036,217,0 +170755139084,217,0 +170755139132,218,0 +170755139180,219,0 +170755139229,219,0 +170755139277,220,0 +170755139325,221,0 +170755139373,220,0 +170755139421,223,0 +170755139468,223,0 +170755139518,224,0 +170755139566,223,0 +170755139614,222,0 +170755139663,223,0 +170755139711,216,0 +170755139759,214,0 +170755139807,216,0 +170755139855,217,0 +170755139903,217,0 +170755139950,217,0 +170755139998,220,0 +170755140046,219,0 +170755140094,220,0 +170755140142,221,0 +170755140192,221,0 +170755140239,222,0 +170755140289,223,0 +170755140337,223,0 +170755140385,223,0 +170755140433,223,0 +170755140481,223,0 +170755140528,221,0 +170755140578,215,0 +170755140626,215,0 +170755140674,216,0 +170755140721,217,0 +170755140769,217,0 +170755140819,218,0 +170755140867,220,0 +170755140915,221,0 +170755140962,221,0 +170755141010,219,0 +170755141058,221,0 +170755141108,223,0 +170755141156,222,0 +170755141205,224,0 +170755141253,227,0 +170755141301,223,0 +170755141349,223,0 +170755141397,221,0 +170755141446,215,0 +170755141496,216,0 +170755141543,216,0 +170755141591,217,0 +170755141639,217,0 +170755141687,219,0 +170755141735,218,0 +170755141783,219,0 +170755141831,220,0 +170755141880,221,0 +170755141928,220,0 +170755141977,223,0 +170755142025,223,0 +170755142073,223,0 +170755142121,223,0 +170755142169,225,0 +170755142217,223,0 +170755142265,216,0 +170755142313,215,0 +170755142362,216,0 +170755142412,216,0 +170755142461,216,0 +170755142509,219,0 +170755142557,218,0 +170755142607,219,0 +170755142656,220,0 +170755142704,221,0 +170755142752,220,0 +170755142802,222,0 +170755142851,221,0 +170755142899,223,0 +170755142947,223,0 +170755142997,222,0 +170755143046,223,0 +170755143096,221,0 +170755143145,216,0 +170755143195,216,0 +170755143243,217,0 +170755143291,218,0 +170755143339,219,0 +170755143387,219,0 +170755143436,221,0 +170755143486,221,0 +170755143535,221,0 +170755143585,221,0 +170755143634,223,0 +170755143682,223,0 +170755143730,223,0 +170755143780,225,0 +170755143829,224,0 +170755143877,224,0 +170755143927,223,0 +170755143976,217,0 +170755144026,217,0 +170755144075,218,0 +170755144123,219,0 +170755144173,219,0 +170755144222,220,0 +170755144272,221,0 +170755144321,222,0 +170755144369,221,0 +170755144417,222,0 +170755144465,224,0 +170755144513,223,0 +170755144561,223,0 +170755144610,223,0 +170755144660,222,0 +170755144709,223,0 +170755144757,222,0 +170755144805,217,0 +170755144855,216,0 +170755144904,216,0 +170755144954,217,0 +170755145002,218,0 +170755145051,219,0 +170755145101,220,0 +170755145149,221,0 +170755145198,221,0 +170755145248,222,0 +170755145296,222,0 +170755145345,222,0 +170755145395,223,0 +170755145443,222,0 +170755145492,222,0 +170755145540,223,0 +170755145588,223,0 +170755145638,223,0 +170755145687,215,0 +170755145737,215,0 +170755145785,216,0 +170755145833,217,0 +170755145881,217,0 +170755145930,218,0 +170755145980,220,0 +170755146028,220,0 +170755146076,219,0 +170755146124,220,0 +170755146172,221,0 +170755146219,223,0 +170755146269,222,0 +170755146317,222,0 +170755146366,223,0 +170755146416,224,0 +170755146465,223,0 +170755146513,216,0 +170755146561,216,0 +170755146609,216,0 +170755146659,216,0 +170755146707,217,0 +170755146755,217,0 +170755146802,218,0 +170755146852,219,0 +170755146900,219,0 +170755146948,220,0 +170755146996,221,0 +170755147044,222,0 +170755147091,222,0 +170755147141,223,0 +170755147189,223,0 +170755147237,223,0 +170755147286,224,0 +170755147334,225,0 +170755147382,217,0 +170755147432,217,0 +170755147481,217,0 +170755147531,218,0 +170755147579,218,0 +170755147628,219,0 +170755147676,219,0 +170755147726,218,0 +170755147774,221,0 +170755147822,221,0 +170755147871,223,0 +170755147919,223,0 +170755147967,223,0 +170755148017,223,0 +170755148066,223,0 +170755148114,223,0 +170755148162,222,0 +170755148212,215,0 +170755148260,216,0 +170755148308,216,0 +170755148357,218,0 +170755148405,221,0 +170755148453,219,0 +170755148501,221,0 +170755148551,221,0 +170755148598,221,0 +170755148646,221,0 +170755148694,222,0 +170755148744,222,0 +170755148792,221,0 +170755148840,223,0 +170755148889,224,0 +170755148937,223,0 +170755148985,223,0 +170755149034,221,0 +170755149084,218,0 +170755149132,218,0 +170755149180,219,0 +170755149228,220,0 +170755149275,220,0 +170755149325,221,0 +170755149373,221,0 +170755149421,222,0 +170755149468,222,0 +170755149516,222,0 +170755149564,222,0 +170755149612,223,0 +170755149660,223,0 +170755149709,223,0 +170755149759,223,0 +170755149807,226,0 +170755149855,223,0 +170755149904,217,0 +170755149952,218,0 +170755150000,221,0 +170755150049,220,0 +170755150099,221,0 +170755150149,223,0 +170755150198,222,0 +170755150246,222,0 +170755150296,226,0 +170755150345,223,0 +170755150393,223,0 +170755150443,225,0 +170755150491,226,0 +170755150539,224,0 +170755150587,223,0 +170755150635,225,0 +170755150683,224,0 +170755150730,223,0 +170755150778,216,0 +170755150826,217,0 +170755150874,218,0 +170755150924,218,0 +170755150973,219,0 +170755151023,220,0 +170755151071,220,0 +170755151120,220,0 +170755151170,221,0 +170755151219,222,0 +170755151269,224,0 +170755151319,223,0 +170755151368,223,0 +170755151418,224,0 +170755151467,223,0 +170755151515,222,0 +170755151565,222,0 +170755151614,216,0 +170755151664,215,0 +170755151713,215,0 +170755151763,216,0 +170755151811,217,0 +170755151859,218,0 +170755151908,218,0 +170755151956,218,0 +170755152004,220,0 +170755152054,221,0 +170755152102,221,0 +170755152150,222,0 +170755152199,222,0 +170755152247,222,0 +170755152297,222,0 +170755152346,224,0 +170755152396,223,0 +170755152444,216,0 +170755152492,215,0 +170755152539,215,0 +170755152587,215,0 +170755152635,216,0 +170755152683,217,0 +170755152731,218,0 +170755152779,218,0 +170755152829,220,0 +170755152877,220,0 +170755152925,222,0 +170755152974,223,0 +170755153024,222,0 +170755153073,223,0 +170755153123,223,0 +170755153171,223,0 +170755153219,223,0 +170755153268,222,0 +170755153316,215,0 +170755153366,215,0 +170755153414,216,0 +170755153463,217,0 +170755153511,217,0 +170755153561,218,0 +170755153608,219,0 +170755153656,219,0 +170755153704,221,0 +170755153754,222,0 +170755153803,222,0 +170755153851,220,0 +170755153899,223,0 +170755153947,224,0 +170755153995,223,0 +170755154043,224,0 +170755154091,223,0 +170755154139,222,0 +170755154187,215,0 +170755154237,215,0 +170755154286,216,0 +170755154334,217,0 +170755154382,217,0 +170755154430,218,0 +170755154478,219,0 +170755154526,218,0 +170755154575,221,0 +170755154623,220,0 +170755154673,222,0 +170755154721,223,0 +170755154769,222,0 +170755154818,222,0 +170755154866,224,0 +170755154914,223,0 +170755154962,223,0 +170755155010,216,0 +170755155058,215,0 +170755155106,216,0 +170755155156,217,0 +170755155204,217,0 +170755155251,218,0 +170755155299,218,0 +170755155349,219,0 +170755155397,220,0 +170755155445,220,0 +170755155493,223,0 +170755155541,222,0 +170755155589,224,0 +170755155637,224,0 +170755155685,223,0 +170755155733,222,0 +170755155781,223,0 +170755155829,223,0 +170755155878,215,0 +170755155928,216,0 +170755155977,217,0 +170755156025,217,0 +170755156075,218,0 +170755156123,218,0 +170755156171,220,0 +170755156219,220,0 +170755156267,222,0 +170755156315,222,0 +170755156363,222,0 +170755156410,223,0 +170755156458,225,0 +170755156506,223,0 +170755156556,223,0 +170755156604,224,0 +170755156652,222,0 +170755156700,216,0 +170755156747,215,0 +170755156795,215,0 +170755156843,217,0 +170755156891,219,0 +170755156939,218,0 +170755156987,219,0 +170755157035,222,0 +170755157083,220,0 +170755157130,220,0 +170755157178,223,0 +170755157228,221,0 +170755157276,222,0 +170755157324,222,0 +170755157373,223,0 +170755157423,225,0 +170755157471,223,0 +170755157520,221,0 +170755157568,216,0 +170755157616,215,0 +170755157664,216,0 +170755157714,217,0 +170755157761,218,0 +170755157809,218,0 +170755157857,219,0 +170755157905,219,0 +170755157953,219,0 +170755158003,221,0 +170755158052,221,0 +170755158102,222,0 +170755158151,223,0 +170755158201,223,0 +170755158250,223,0 +170755158298,223,0 +170755158346,222,0 +170755158394,216,0 +170755158444,216,0 +170755158493,216,0 +170755158541,218,0 +170755158589,218,0 +170755158639,218,0 +170755158687,220,0 +170755158735,219,0 +170755158783,222,0 +170755158832,221,0 +170755158882,222,0 +170755158930,223,0 +170755158978,223,0 +170755159026,223,0 +170755159074,223,0 +170755159121,223,0 +170755159171,224,0 +170755159219,222,0 +170755159267,217,0 +170755159315,217,0 +170755159364,218,0 +170755159412,219,0 +170755159462,220,0 +170755159510,221,0 +170755159558,221,0 +170755159607,221,0 +170755159655,223,0 +170755159705,221,0 +170755159754,222,0 +170755159802,220,0 +170755159850,222,0 +170755159898,224,0 +170755159948,223,0 +170755159996,222,0 +170755160044,224,0 +170755160092,220,0 +170755160141,214,0 +170755160191,216,0 +170755160240,217,0 +170755160290,217,0 +170755160338,219,0 +170755160386,221,0 +170755160434,219,0 +170755160483,220,0 +170755160533,221,0 +170755160582,223,0 +170755160630,223,0 +170755160678,222,0 +170755160726,223,0 +170755160776,222,0 +170755160825,222,0 +170755160873,224,0 +170755160921,222,0 +170755160971,215,0 +170755161019,215,0 +170755161067,216,0 +170755161115,218,0 +170755161163,216,0 +170755161210,219,0 +170755161260,219,0 +170755161310,219,0 +170755161358,220,0 +170755161407,220,0 +170755161457,222,0 +170755161506,222,0 +170755161556,223,0 +170755161605,224,0 +170755161653,224,0 +170755161703,223,0 +170755161752,222,0 +170755161800,216,0 +170755161848,215,0 +170755161898,216,0 +170755161947,216,0 +170755161995,216,0 +170755162043,216,0 +170755162091,219,0 +170755162141,218,0 +170755162190,219,0 +170755162240,220,0 +170755162289,220,0 +170755162337,222,0 +170755162385,222,0 +170755162433,220,0 +170755162481,222,0 +170755162529,223,0 +170755162576,223,0 +170755162624,220,0 +170755162672,215,0 +170755162720,215,0 +170755162768,216,0 +170755162816,218,0 +170755162864,218,0 +170755162912,219,0 +170755162961,219,0 +170755163009,219,0 +170755163057,220,0 +170755163105,221,0 +170755163153,221,0 +170755163202,222,0 +170755163250,222,0 +170755163298,223,0 +170755163346,222,0 +170755163394,221,0 +170755163441,222,0 +170755163491,217,0 +170755163539,217,0 +170755163587,218,0 +170755163635,219,0 +170755163683,219,0 +170755163732,220,0 +170755163782,220,0 +170755163830,221,0 +170755163879,221,0 +170755163929,221,0 +170755163977,222,0 +170755164025,222,0 +170755164073,223,0 +170755164122,224,0 +170755164172,223,0 +170755164221,223,0 +170755164269,223,0 +170755164317,221,0 +170755164367,218,0 +170755164415,218,0 +170755164463,219,0 +170755164511,220,0 +170755164558,221,0 +170755164608,221,0 +170755164656,221,0 +170755164705,221,0 +170755164753,222,0 +170755164801,222,0 +170755164849,224,0 +170755164897,224,0 +170755164945,223,0 +170755164995,223,0 +170755165043,225,0 +170755165091,223,0 +170755165140,222,0 +170755165188,217,0 +170755165238,217,0 +170755165285,218,0 +170755165335,218,0 +170755165383,219,0 +170755165431,220,0 +170755165479,220,0 +170755165527,222,0 +170755165575,221,0 +170755165622,222,0 +170755165670,223,0 +170755165718,224,0 +170755165766,223,0 +170755165814,223,0 +170755165862,223,0 +170755165910,223,0 +170755165958,222,0 +170755166006,222,0 +170755166055,216,0 +170755166103,216,0 +170755166151,217,0 +170755166199,218,0 +170755166247,218,0 +170755166296,220,0 +170755166346,220,0 +170755166393,221,0 +170755166441,221,0 +170755166491,223,0 +170755166540,222,0 +170755166588,223,0 +170755166636,224,0 +170755166684,223,0 +170755166732,223,0 +170755166780,222,0 +170755166828,223,0 +170755166875,217,0 +170755166923,215,0 +170755166971,216,0 +170755167019,216,0 +170755167067,217,0 +170755167115,218,0 +170755167163,219,0 +170755167210,219,0 +170755167258,220,0 +170755167306,221,0 +170755167354,221,0 +170755167402,222,0 +170755167452,223,0 +170755167500,225,0 +170755167548,223,0 +170755167597,223,0 +170755167647,224,0 +170755167695,223,0 +170755167743,216,0 +170755167791,215,0 +170755167840,216,0 +170755167890,216,0 +170755167938,218,0 +170755167986,218,0 +170755168035,218,0 +170755168083,223,0 +170755168131,220,0 +170755168180,222,0 +170755168228,221,0 +170755168276,222,0 +170755168326,223,0 +170755168374,225,0 +170755168423,224,0 +170755168471,223,0 +170755168521,221,0 +170755168569,223,0 +170755168618,215,0 +170755168668,216,0 +170755168716,217,0 +170755168764,219,0 +170755168812,219,0 +170755168860,219,0 +170755168909,220,0 +170755168959,220,0 +170755169008,223,0 +170755169056,222,0 +170755169106,222,0 +170755169154,224,0 +170755169203,224,0 +170755169251,223,0 +170755169301,224,0 +170755169350,223,0 +170755169398,222,0 +170755169446,216,0 +170755169494,215,0 +170755169542,216,0 +170755169591,217,0 +170755169639,218,0 +170755169689,219,0 +170755169737,219,0 +170755169785,219,0 +170755169833,220,0 +170755169880,222,0 +170755169928,221,0 +170755169976,222,0 +170755170026,223,0 +170755170074,222,0 +170755170123,222,0 +170755170171,222,0 +170755170219,225,0 +170755170267,222,0 +170755170316,215,0 +170755170366,216,0 +170755170415,218,0 +170755170463,218,0 +170755170513,218,0 +170755170561,218,0 +170755170610,219,0 +170755170658,221,0 +170755170708,220,0 +170755170758,222,0 +170755170807,222,0 +170755170855,222,0 +170755170903,222,0 +170755170952,223,0 +170755171000,223,0 +170755171049,223,0 +170755171099,222,0 +170755171149,216,0 +170755171197,213,0 +170755171245,217,0 +170755171292,217,0 +170755171342,218,0 +170755171392,219,0 +170755171441,218,0 +170755171489,220,0 +170755171537,220,0 +170755171587,221,0 +170755171636,221,0 +170755171686,221,0 +170755171734,222,0 +170755171783,222,0 +170755171831,222,0 +170755171881,223,0 +170755171930,222,0 +170755171980,217,0 +170755172028,216,0 +170755172076,217,0 +170755172124,218,0 +170755172173,220,0 +170755172221,221,0 +170755172269,221,0 +170755172317,220,0 +170755172367,221,0 +170755172415,221,0 +170755172463,222,0 +170755172510,223,0 +170755172558,224,0 +170755172606,223,0 +170755172656,225,0 +170755172706,223,0 +170755172753,223,0 +170755172803,222,0 +170755172853,218,0 +170755172901,218,0 +170755172948,219,0 +170755172998,220,0 +170755173048,221,0 +170755173097,218,0 +170755173145,223,0 +170755173195,225,0 +170755173243,223,0 +170755173291,224,0 +170755173340,224,0 +170755173388,223,0 +170755173438,224,0 +170755173487,236,0 +170755173535,225,0 +170755173583,224,0 +170755173631,223,0 +170755173681,217,0 +170755173729,218,0 +170755173777,218,0 +170755173826,219,0 +170755173876,220,0 +170755173925,221,0 +170755173975,221,0 +170755174023,222,0 +170755174072,223,0 +170755174120,224,0 +170755174168,224,0 +170755174216,223,0 +170755174266,223,0 +170755174315,223,0 +170755174365,223,0 +170755174413,223,0 +170755174461,223,0 +170755174510,222,0 +170755174558,217,0 +170755174606,217,0 +170755174656,218,0 +170755174704,218,0 +170755174753,219,0 +170755174803,219,0 +170755174852,220,0 +170755174902,221,0 +170755174951,222,0 +170755175001,223,0 +170755175050,224,0 +170755175098,224,0 +170755175148,223,0 +170755175197,223,0 +170755175245,223,0 +170755175293,223,0 +170755175341,222,0 +170755175389,216,0 +170755175437,215,0 +170755175487,216,0 +170755175536,217,0 +170755175584,217,0 +170755175632,218,0 +170755175680,217,0 +170755175730,219,0 +170755175779,220,0 +170755175827,220,0 +170755175877,221,0 +170755175925,223,0 +170755175974,223,0 +170755176024,223,0 +170755176073,223,0 +170755176121,223,0 +170755176169,222,0 +170755176219,221,0 +170755176267,215,0 +170755176316,215,0 +170755176366,216,0 +170755176414,217,0 +170755176463,217,0 +170755176513,218,0 +170755176562,219,0 +170755176610,220,0 +170755176658,220,0 +170755176706,220,0 +170755176756,221,0 +170755176804,222,0 +170755176853,222,0 +170755176901,223,0 +170755176949,222,0 +170755176997,223,0 +170755177045,222,0 +170755177093,216,0 +170755177141,216,0 +170755177189,217,0 +170755177238,216,0 +170755177288,215,0 +170755177336,216,0 +170755177384,218,0 +170755177433,218,0 +170755177483,219,0 +170755177531,220,0 +170755177579,220,0 +170755177628,221,0 +170755177678,221,0 +170755177726,222,0 +170755177774,224,0 +170755177822,222,0 +170755177870,223,0 +170755177918,221,0 +170755177967,214,0 +170755178015,216,0 +170755178063,217,0 +170755178113,217,0 +170755178161,218,0 +170755178210,219,0 +170755178260,220,0 +170755178308,221,0 +170755178356,221,0 +170755178405,221,0 +170755178453,221,0 +170755178503,222,0 +170755178551,222,0 +170755178599,221,0 +170755178647,222,0 +170755178696,222,0 +170755178746,223,0 +170755178794,216,0 +170755178843,216,0 +170755178893,217,0 +170755178942,218,0 +170755178990,219,0 +170755179038,219,0 +170755179088,220,0 +170755179136,221,0 +170755179184,221,0 +170755179232,222,0 +170755179281,223,0 +170755179329,223,0 +170755179377,223,0 +170755179427,223,0 +170755179476,225,0 +170755179526,222,0 +170755179575,223,0 +170755179623,221,0 +170755179673,216,0 +170755179722,216,0 +170755179770,217,0 +170755179818,217,0 +170755179868,218,0 +170755179917,219,0 +170755179967,220,0 +170755180015,220,0 +170755180063,221,0 +170755180112,223,0 +170755180162,221,0 +170755180211,221,0 +170755180259,223,0 +170755180307,223,0 +170755180355,224,0 +170755180405,222,0 +170755180453,223,0 +170755180502,215,0 +170755180552,216,0 +170755180600,216,0 +170755180649,216,0 +170755180697,218,0 +170755180747,219,0 +170755180796,219,0 +170755180844,219,0 +170755180892,220,0 +170755180940,221,0 +170755180989,222,0 +170755181037,222,0 +170755181087,223,0 +170755181136,225,0 +170755181186,224,0 +170755181234,224,0 +170755181282,223,0 +170755181331,216,0 +170755181379,215,0 +170755181429,215,0 +170755181478,216,0 +170755181526,217,0 +170755181576,218,0 +170755181624,218,0 +170755181673,218,0 +170755181721,219,0 +170755181771,220,0 +170755181821,221,0 +170755181870,222,0 +170755181918,223,0 +170755181968,223,0 +170755182016,223,0 +170755182063,222,0 +170755182113,223,0 +170755182163,218,0 +170755182212,214,0 +170755182262,215,0 +170755182310,216,0 +170755182357,217,0 +170755182405,217,0 +170755182453,218,0 +170755182503,218,0 +170755182551,219,0 +170755182599,220,0 +170755182648,221,0 +170755182698,221,0 +170755182748,222,0 +170755182797,223,0 +170755182845,223,0 +170755182893,222,0 +170755182941,224,0 +170755182990,222,0 +170755183040,215,0 +170755183088,216,0 +170755183137,217,0 +170755183185,217,0 +170755183235,218,0 +170755183283,219,0 +170755183332,219,0 +170755183382,220,0 +170755183430,221,0 +170755183478,221,0 +170755183527,222,0 +170755183575,222,0 +170755183623,222,0 +170755183673,223,0 +170755183722,223,0 +170755183770,224,0 +170755183820,222,0 +170755183869,217,0 +170755183917,217,0 +170755183965,217,0 +170755184015,219,0 +170755184063,219,0 +170755184112,220,0 +170755184162,220,0 +170755184210,219,0 +170755184259,221,0 +170755184309,221,0 +170755184358,223,0 +170755184406,223,0 +170755184454,223,0 +170755184502,222,0 +170755184550,223,0 +170755184600,223,0 +170755184648,223,0 +170755184696,222,0 +170755184745,216,0 +170755184795,217,0 +170755184843,218,0 +170755184890,218,0 +170755184938,219,0 +170755184986,220,0 +170755185034,220,0 +170755185082,221,0 +170755185130,222,0 +170755185178,221,0 +170755185226,223,0 +170755185274,224,0 +170755185324,224,0 +170755185371,223,0 +170755185421,223,0 +170755185469,224,0 +170755185518,225,0 +170755185568,217,0 +170755185618,217,0 +170755185666,217,0 +170755185715,218,0 +170755185765,220,0 +170755185813,221,0 +170755185862,221,0 +170755185910,221,0 +170755185959,222,0 +170755186008,223,0 +170755186057,223,0 +170755186107,224,0 +170755186154,223,0 +170755186202,226,0 +170755186252,224,0 +170755186300,224,0 +170755186349,223,0 +170755186399,218,0 +170755186447,218,0 +170755186495,218,0 +170755186543,219,0 +170755186592,219,0 +170755186640,220,0 +170755186688,221,0 +170755186736,221,0 +170755186786,222,0 +170755186834,224,0 +170755186883,223,0 +170755186931,228,0 +170755186981,223,0 +170755187030,223,0 +170755187080,223,0 +170755187128,224,0 +170755187176,222,0 +170755187224,222,0 +170755187273,217,0 +170755187321,218,0 +170755187371,219,0 +170755187420,220,0 +170755187468,220,0 +170755187516,221,0 +170755187564,221,0 +170755187612,222,0 +170755187660,223,0 +170755187708,223,0 +170755187756,223,0 +170755187804,224,0 +170755187852,223,0 +170755187901,224,0 +170755187949,222,0 +170755187997,223,0 +170755188045,222,0 +170755188093,216,0 +170755188141,216,0 +170755188189,217,0 +170755188237,217,0 +170755188286,219,0 +170755188336,221,0 +170755188384,220,0 +170755188433,222,0 +170755188483,222,0 +170755188532,221,0 +170755188580,223,0 +170755188628,223,0 +170755188676,224,0 +170755188724,223,0 +170755188772,223,0 +170755188820,224,0 +170755188868,223,0 +170755188916,222,0 +170755188964,216,0 +170755189012,216,0 +170755189060,217,0 +170755189108,218,0 +170755189156,219,0 +170755189204,220,0 +170755189253,220,0 +170755189301,221,0 +170755189351,221,0 +170755189400,221,0 +170755189448,223,0 +170755189496,222,0 +170755189544,223,0 +170755189594,219,0 +170755189642,223,0 +170755189691,223,0 +170755189741,222,0 +170755189790,215,0 +170755189838,215,0 +170755189888,216,0 +170755189937,214,0 +170755189987,217,0 +170755190035,218,0 +170755190084,219,0 +170755190134,219,0 +170755190182,221,0 +170755190231,221,0 +170755190281,222,0 +170755190330,221,0 +170755190378,222,0 +170755190428,223,0 +170755190477,224,0 +170755190525,222,0 +170755190575,223,0 +170755190623,222,0 +170755190672,215,0 +170755190722,216,0 +170755190770,216,0 +170755190818,216,0 +170755190866,217,0 +170755190915,218,0 +170755190965,218,0 +170755191014,219,0 +170755191062,220,0 +170755191112,221,0 +170755191160,221,0 +170755191208,223,0 +170755191257,225,0 +170755191307,223,0 +170755191355,222,0 +170755191404,224,0 +170755191452,222,0 +170755191500,215,0 +170755191548,215,0 +170755191596,216,0 +170755191644,217,0 +170755191692,216,0 +170755191740,217,0 +170755191788,219,0 +170755191837,219,0 +170755191885,220,0 +170755191935,220,0 +170755191983,220,0 +170755192032,221,0 +170755192082,221,0 +170755192130,221,0 +170755192178,221,0 +170755192226,222,0 +170755192275,222,0 +170755192323,217,0 +170755192373,217,0 +170755192422,217,0 +170755192470,218,0 +170755192520,219,0 +170755192568,219,0 +170755192615,220,0 +170755192663,220,0 +170755192713,222,0 +170755192763,221,0 +170755192810,222,0 +170755192858,222,0 +170755192906,222,0 +170755192954,223,0 +170755193004,224,0 +170755193053,223,0 +170755193103,222,0 +170755193152,221,0 +170755193200,217,0 +170755193248,218,0 +170755193298,218,0 +170755193347,219,0 +170755193395,222,0 +170755193443,221,0 +170755193493,222,0 +170755193542,222,0 +170755193590,223,0 +170755193640,223,0 +170755193689,223,0 +170755193737,224,0 +170755193787,223,0 +170755193836,224,0 +170755193884,223,0 +170755193934,223,0 +170755193983,223,0 +170755194031,216,0 +170755194079,217,0 +170755194129,217,0 +170755194177,219,0 +170755194225,219,0 +170755194274,220,0 +170755194322,220,0 +170755194370,221,0 +170755194418,222,0 +170755194468,222,0 +170755194516,223,0 +170755194564,223,0 +170755194612,225,0 +170755194660,224,0 +170755194708,224,0 +170755194757,221,0 +170755194807,222,0 +170755194855,216,0 +170755194903,216,0 +170755194952,216,0 +170755195000,217,0 +170755195048,219,0 +170755195098,219,0 +170755195146,219,0 +170755195195,218,0 +170755195245,220,0 +170755195293,221,0 +170755195342,221,0 +170755195392,222,0 +170755195440,223,0 +170755195488,221,0 +170755195536,223,0 +170755195584,221,0 +170755195633,225,0 +170755195681,222,0 +170755195731,216,0 +170755195780,216,0 +170755195830,217,0 +170755195879,218,0 +170755195929,219,0 +170755195977,219,0 +170755196025,221,0 +170755196073,221,0 +170755196122,220,0 +170755196172,221,0 +170755196220,222,0 +170755196268,223,0 +170755196317,222,0 +170755196365,223,0 +170755196415,225,0 +170755196464,222,0 +170755196512,222,0 +170755196560,216,0 +170755196610,216,0 +170755196658,216,0 +170755196707,218,0 +170755196755,218,0 +170755196803,219,0 +170755196851,219,0 +170755196899,220,0 +170755196948,221,0 +170755196998,221,0 +170755197048,223,0 +170755197096,222,0 +170755197144,223,0 +170755197191,222,0 +170755197239,223,0 +170755197287,223,0 +170755197337,222,0 +170755197385,217,0 +170755197433,215,0 +170755197481,216,0 +170755197529,217,0 +170755197578,218,0 +170755197626,219,0 +170755197676,219,0 +170755197725,219,0 +170755197775,220,0 +170755197823,221,0 +170755197872,222,0 +170755197922,221,0 +170755197971,222,0 +170755198019,223,0 +170755198069,224,0 +170755198119,223,0 +170755198168,223,0 +170755198216,222,0 +170755198264,216,0 +170755198314,216,0 +170755198363,217,0 +170755198413,218,0 +170755198462,219,0 +170755198512,219,0 +170755198561,220,0 +170755198609,221,0 +170755198659,221,0 +170755198707,222,0 +170755198755,223,0 +170755198804,223,0 +170755198854,223,0 +170755198902,224,0 +170755198950,222,0 +170755198998,223,0 +170755199047,222,0 +170755199097,215,0 +170755199146,216,0 +170755199196,216,0 +170755199245,217,0 +170755199293,218,0 +170755199343,218,0 +170755199392,218,0 +170755199440,219,0 +170755199490,221,0 +170755199539,218,0 +170755199589,223,0 +170755199638,222,0 +170755199688,224,0 +170755199736,224,0 +170755199784,221,0 +170755199833,222,0 +170755199883,223,0 +170755199933,216,0 +170755199981,215,0 diff --git a/laser_value/0210-18.csv b/laser_value/0210-18.csv new file mode 100644 index 0000000..e5818e7 --- /dev/null +++ b/laser_value/0210-18.csv @@ -0,0 +1,7412 @@ +timestamp,laser_value,event +170755200031,217,0 +170755200080,217,0 +170755200128,218,0 +170755200176,218,0 +170755200224,218,0 +170755200274,220,0 +170755200323,220,0 +170755200371,221,0 +170755200419,222,0 +170755200467,222,0 +170755200516,223,0 +170755200564,223,0 +170755200612,223,0 +170755200662,223,0 +170755200710,223,0 +170755200758,221,0 +170755200807,216,0 +170755200855,217,0 +170755200903,218,0 +170755200951,219,0 +170755200999,219,0 +170755201047,220,0 +170755201095,221,0 +170755201143,223,0 +170755201192,221,0 +170755201242,221,0 +170755201290,226,0 +170755201338,223,0 +170755201387,225,0 +170755201437,223,0 +170755201486,224,0 +170755201534,224,0 +170755201582,222,0 +170755201632,216,0 +170755201681,217,0 +170755201729,219,0 +170755201777,219,0 +170755201827,218,0 +170755201876,221,0 +170755201924,221,0 +170755201972,221,0 +170755202020,222,0 +170755202068,222,0 +170755202118,223,0 +170755202166,224,0 +170755202215,224,0 +170755202263,224,0 +170755202311,223,0 +170755202361,223,0 +170755202410,222,0 +170755202458,217,0 +170755202508,217,0 +170755202557,218,0 +170755202605,219,0 +170755202654,220,0 +170755202702,220,0 +170755202750,220,0 +170755202798,221,0 +170755202846,221,0 +170755202894,222,0 +170755202943,222,0 +170755202991,224,0 +170755203039,222,0 +170755203087,221,0 +170755203135,222,0 +170755203183,223,0 +170755203230,223,0 +170755203278,222,0 +170755203326,217,0 +170755203376,217,0 +170755203424,218,0 +170755203472,218,0 +170755203519,220,0 +170755203567,220,0 +170755203615,220,0 +170755203663,221,0 +170755203712,222,0 +170755203760,223,0 +170755203808,222,0 +170755203856,225,0 +170755203905,224,0 +170755203953,228,0 +170755204001,221,0 +170755204049,222,0 +170755204097,223,0 +170755204145,222,0 +170755204193,214,0 +170755204241,216,0 +170755204290,217,0 +170755204338,218,0 +170755204388,218,0 +170755204437,220,0 +170755204485,220,0 +170755204533,221,0 +170755204583,222,0 +170755204631,221,0 +170755204679,223,0 +170755204727,223,0 +170755204775,223,0 +170755204824,223,0 +170755204872,223,0 +170755204922,223,0 +170755204970,222,0 +170755205019,216,0 +170755205067,215,0 +170755205115,216,0 +170755205163,217,0 +170755205212,217,0 +170755205262,218,0 +170755205310,218,0 +170755205358,220,0 +170755205406,220,0 +170755205454,222,0 +170755205502,221,0 +170755205550,222,0 +170755205598,221,0 +170755205646,222,0 +170755205694,223,0 +170755205743,222,0 +170755205791,222,0 +170755205841,216,0 +170755205888,214,0 +170755205936,215,0 +170755205984,215,0 +170755206034,218,0 +170755206082,218,0 +170755206130,218,0 +170755206178,219,0 +170755206227,220,0 +170755206275,220,0 +170755206323,220,0 +170755206371,222,0 +170755206419,221,0 +170755206469,221,0 +170755206517,222,0 +170755206566,223,0 +170755206616,222,0 +170755206665,222,0 +170755206715,216,0 +170755206763,216,0 +170755206811,217,0 +170755206859,218,0 +170755206906,218,0 +170755206954,219,0 +170755207002,220,0 +170755207050,220,0 +170755207098,221,0 +170755207146,221,0 +170755207194,222,0 +170755207242,222,0 +170755207290,222,0 +170755207339,222,0 +170755207389,223,0 +170755207437,222,0 +170755207486,222,0 +170755207534,218,0 +170755207582,218,0 +170755207630,219,0 +170755207679,220,0 +170755207727,220,0 +170755207775,221,0 +170755207823,221,0 +170755207872,222,0 +170755207922,222,0 +170755207969,223,0 +170755208017,223,0 +170755208067,224,0 +170755208116,223,0 +170755208164,223,0 +170755208214,224,0 +170755208262,223,0 +170755208309,223,0 +170755208357,222,0 +170755208407,218,0 +170755208455,218,0 +170755208503,219,0 +170755208550,219,0 +170755208598,220,0 +170755208648,220,0 +170755208696,222,0 +170755208746,222,0 +170755208793,222,0 +170755208841,224,0 +170755208889,223,0 +170755208937,222,0 +170755208985,224,0 +170755209033,225,0 +170755209081,224,0 +170755209131,223,0 +170755209178,224,0 +170755209226,222,0 +170755209274,215,0 +170755209322,216,0 +170755209370,216,0 +170755209418,219,0 +170755209466,218,0 +170755209514,220,0 +170755209564,220,0 +170755209613,221,0 +170755209661,221,0 +170755209709,223,0 +170755209757,225,0 +170755209805,222,0 +170755209853,223,0 +170755209901,224,0 +170755209950,224,0 +170755209998,224,0 +170755210048,223,0 +170755210098,216,0 +170755210147,215,0 +170755210197,215,0 +170755210245,215,0 +170755210294,217,0 +170755210343,217,0 +170755210393,218,0 +170755210441,218,0 +170755210489,222,0 +170755210537,220,0 +170755210586,220,0 +170755210634,222,0 +170755210682,221,0 +170755210732,223,0 +170755210780,223,0 +170755210829,223,0 +170755210877,221,0 +170755210925,222,0 +170755210973,216,0 +170755211022,214,0 +170755211070,215,0 +170755211118,216,0 +170755211166,217,0 +170755211214,218,0 +170755211262,218,0 +170755211311,219,0 +170755211361,219,0 +170755211409,219,0 +170755211457,220,0 +170755211506,219,0 +170755211556,222,0 +170755211605,223,0 +170755211653,223,0 +170755211701,222,0 +170755211749,222,0 +170755211797,222,0 +170755211845,215,0 +170755211895,215,0 +170755211944,216,0 +170755211994,217,0 +170755212043,216,0 +170755212093,218,0 +170755212142,218,0 +170755212192,220,0 +170755212241,219,0 +170755212289,222,0 +170755212337,221,0 +170755212385,222,0 +170755212433,225,0 +170755212481,223,0 +170755212529,223,0 +170755212576,223,0 +170755212624,224,0 +170755212672,223,0 +170755212720,216,0 +170755212768,217,0 +170755212818,218,0 +170755212866,219,0 +170755212914,220,0 +170755212962,220,0 +170755213010,221,0 +170755213058,222,0 +170755213107,223,0 +170755213155,223,0 +170755213205,223,0 +170755213254,224,0 +170755213302,224,0 +170755213350,224,0 +170755213398,221,0 +170755213446,222,0 +170755213495,222,0 +170755213545,217,0 +170755213595,214,0 +170755213643,215,0 +170755213690,216,0 +170755213740,217,0 +170755213788,217,0 +170755213836,218,0 +170755213884,219,0 +170755213932,219,0 +170755213979,221,0 +170755214027,221,0 +170755214075,222,0 +170755214125,222,0 +170755214173,222,0 +170755214222,223,0 +170755214272,223,0 +170755214321,223,0 +170755214369,223,0 +170755214417,216,0 +170755214467,215,0 +170755214515,217,0 +170755214563,217,0 +170755214611,217,0 +170755214660,217,0 +170755214710,218,0 +170755214758,218,0 +170755214807,219,0 +170755214855,219,0 +170755214905,220,0 +170755214953,221,0 +170755215002,221,0 +170755215050,223,0 +170755215098,222,0 +170755215148,224,0 +170755215197,222,0 +170755215245,222,0 +170755215294,216,0 +170755215342,215,0 +170755215392,216,0 +170755215441,217,0 +170755215491,217,0 +170755215540,218,0 +170755215590,219,0 +170755215638,219,0 +170755215686,221,0 +170755215734,221,0 +170755215784,222,0 +170755215831,223,0 +170755215879,222,0 +170755215927,224,0 +170755215975,224,0 +170755216023,224,0 +170755216071,223,0 +170755216119,222,0 +170755216169,216,0 +170755216218,216,0 +170755216268,217,0 +170755216317,218,0 +170755216367,219,0 +170755216416,220,0 +170755216464,222,0 +170755216512,221,0 +170755216562,222,0 +170755216610,222,0 +170755216658,223,0 +170755216706,224,0 +170755216754,223,0 +170755216803,223,0 +170755216853,223,0 +170755216902,223,0 +170755216950,223,0 +170755217000,222,0 +170755217048,216,0 +170755217097,217,0 +170755217145,217,0 +170755217193,218,0 +170755217241,220,0 +170755217289,219,0 +170755217337,221,0 +170755217385,222,0 +170755217434,223,0 +170755217482,223,0 +170755217530,223,0 +170755217580,224,0 +170755217628,225,0 +170755217677,225,0 +170755217726,223,0 +170755217774,223,0 +170755217822,222,0 +170755217872,223,0 +170755217921,216,0 +170755217969,216,0 +170755218017,216,0 +170755218067,215,0 +170755218115,217,0 +170755218163,219,0 +170755218212,219,0 +170755218260,222,0 +170755218308,220,0 +170755218356,221,0 +170755218404,227,0 +170755218454,223,0 +170755218502,222,0 +170755218549,223,0 +170755218597,220,0 +170755218647,223,0 +170755218697,222,0 +170755218746,221,0 +170755218796,215,0 +170755218845,217,0 +170755218893,218,0 +170755218941,217,0 +170755218990,219,0 +170755219038,221,0 +170755219088,221,0 +170755219136,221,0 +170755219184,221,0 +170755219233,222,0 +170755219281,223,0 +170755219331,223,0 +170755219380,226,0 +170755219428,224,0 +170755219476,224,0 +170755219526,223,0 +170755219574,223,0 +170755219621,217,0 +170755219669,215,0 +170755219717,216,0 +170755219767,217,0 +170755219817,218,0 +170755219866,219,0 +170755219916,220,0 +170755219965,220,0 +170755220013,221,0 +170755220061,221,0 +170755220111,223,0 +170755220159,221,0 +170755220207,221,0 +170755220256,222,0 +170755220306,222,0 +170755220355,222,0 +170755220405,223,0 +170755220452,222,0 +170755220501,216,0 +170755220550,214,0 +170755220598,216,0 +170755220648,216,0 +170755220697,217,0 +170755220745,217,0 +170755220793,218,0 +170755220842,219,0 +170755220890,220,0 +170755220938,221,0 +170755220988,222,0 +170755221037,222,0 +170755221085,222,0 +170755221133,222,0 +170755221181,222,0 +170755221231,223,0 +170755221280,223,0 +170755221330,222,0 +170755221379,215,0 +170755221429,216,0 +170755221478,215,0 +170755221528,217,0 +170755221578,218,0 +170755221627,218,0 +170755221677,219,0 +170755221725,219,0 +170755221772,220,0 +170755221820,221,0 +170755221868,222,0 +170755221916,222,0 +170755221966,222,0 +170755222014,223,0 +170755222063,223,0 +170755222113,222,0 +170755222161,223,0 +170755222209,222,0 +170755222257,218,0 +170755222306,218,0 +170755222354,219,0 +170755222404,219,0 +170755222452,220,0 +170755222501,220,0 +170755222549,221,0 +170755222599,221,0 +170755222648,221,0 +170755222696,222,0 +170755222744,223,0 +170755222792,223,0 +170755222840,221,0 +170755222888,222,0 +170755222936,224,0 +170755222984,223,0 +170755223032,222,0 +170755223081,223,0 +170755223131,218,0 +170755223181,218,0 +170755223230,220,0 +170755223278,222,0 +170755223326,221,0 +170755223374,221,0 +170755223422,220,0 +170755223470,223,0 +170755223518,222,0 +170755223567,222,0 +170755223617,222,0 +170755223667,223,0 +170755223715,223,0 +170755223763,224,0 +170755223811,224,0 +170755223859,224,0 +170755223907,223,0 +170755223954,221,0 +170755224002,217,0 +170755224050,217,0 +170755224100,217,0 +170755224148,218,0 +170755224196,219,0 +170755224244,220,0 +170755224293,222,0 +170755224343,220,0 +170755224392,221,0 +170755224440,222,0 +170755224490,222,0 +170755224538,223,0 +170755224586,224,0 +170755224635,223,0 +170755224685,224,0 +170755224733,223,0 +170755224782,228,0 +170755224830,222,0 +170755224878,215,0 +170755224928,215,0 +170755224976,217,0 +170755225025,217,0 +170755225073,218,0 +170755225123,218,0 +170755225172,219,0 +170755225222,220,0 +170755225271,221,0 +170755225319,220,0 +170755225367,221,0 +170755225415,221,0 +170755225463,223,0 +170755225511,223,0 +170755225559,223,0 +170755225606,223,0 +170755225654,223,0 +170755225702,223,0 +170755225752,222,0 +170755225801,219,0 +170755225851,215,0 +170755225899,216,0 +170755225947,216,0 +170755225995,217,0 +170755226043,218,0 +170755226091,218,0 +170755226140,218,0 +170755226188,220,0 +170755226236,217,0 +170755226284,217,0 +170755226332,221,0 +170755226380,221,0 +170755226428,223,0 +170755226475,222,0 +170755226525,222,0 +170755226573,223,0 +170755226620,223,0 +170755226668,222,0 +170755226716,222,0 +170755226764,216,0 +170755226812,214,0 +170755226860,215,0 +170755226908,215,0 +170755226957,216,0 +170755227005,217,0 +170755227055,218,0 +170755227103,218,0 +170755227152,219,0 +170755227202,219,0 +170755227251,221,0 +170755227301,220,0 +170755227349,222,0 +170755227397,224,0 +170755227445,222,0 +170755227493,223,0 +170755227542,224,0 +170755227590,223,0 +170755227638,222,0 +170755227686,215,0 +170755227734,215,0 +170755227784,215,0 +170755227833,215,0 +170755227881,216,0 +170755227929,217,0 +170755227979,218,0 +170755228028,219,0 +170755228078,219,0 +170755228127,219,0 +170755228175,221,0 +170755228225,221,0 +170755228274,221,0 +170755228322,222,0 +170755228370,225,0 +170755228418,223,0 +170755228466,223,0 +170755228516,224,0 +170755228565,222,0 +170755228613,216,0 +170755228661,215,0 +170755228709,215,0 +170755228759,216,0 +170755228808,216,0 +170755228858,217,0 +170755228906,217,0 +170755228955,218,0 +170755229005,219,0 +170755229053,220,0 +170755229102,222,0 +170755229152,220,0 +170755229201,221,0 +170755229251,223,0 +170755229299,222,0 +170755229348,222,0 +170755229398,222,0 +170755229446,223,0 +170755229494,223,0 +170755229542,215,0 +170755229591,215,0 +170755229641,215,0 +170755229689,216,0 +170755229736,217,0 +170755229784,217,0 +170755229832,218,0 +170755229880,218,0 +170755229929,219,0 +170755229977,220,0 +170755230027,221,0 +170755230076,220,0 +170755230124,221,0 +170755230172,221,0 +170755230220,222,0 +170755230268,221,0 +170755230315,222,0 +170755230363,222,0 +170755230413,223,0 +170755230462,222,0 +170755230510,215,0 +170755230558,215,0 +170755230606,216,0 +170755230654,214,0 +170755230703,216,0 +170755230751,217,0 +170755230801,218,0 +170755230849,219,0 +170755230896,219,0 +170755230944,220,0 +170755230992,220,0 +170755231040,221,0 +170755231088,222,0 +170755231136,222,0 +170755231184,223,0 +170755231231,223,0 +170755231279,225,0 +170755231329,223,0 +170755231377,223,0 +170755231425,217,0 +170755231472,216,0 +170755231520,215,0 +170755231568,217,0 +170755231618,218,0 +170755231666,219,0 +170755231713,219,0 +170755231761,220,0 +170755231809,220,0 +170755231857,221,0 +170755231905,220,0 +170755231953,221,0 +170755232002,222,0 +170755232052,222,0 +170755232100,223,0 +170755232148,222,0 +170755232195,224,0 +170755232243,224,0 +170755232291,224,0 +170755232339,222,0 +170755232387,218,0 +170755232435,218,0 +170755232483,218,0 +170755232531,220,0 +170755232580,220,0 +170755232628,222,0 +170755232676,221,0 +170755232725,223,0 +170755232775,222,0 +170755232823,225,0 +170755232871,225,0 +170755232919,223,0 +170755232968,224,0 +170755233016,224,0 +170755233064,225,0 +170755233113,223,0 +170755233161,224,0 +170755233210,223,0 +170755233258,220,0 +170755233308,218,0 +170755233356,218,0 +170755233405,218,0 +170755233453,220,0 +170755233503,220,0 +170755233551,220,0 +170755233600,221,0 +170755233648,221,0 +170755233696,222,0 +170755233746,223,0 +170755233795,222,0 +170755233843,224,0 +170755233893,224,0 +170755233941,223,0 +170755233989,224,0 +170755234037,222,0 +170755234086,223,0 +170755234136,222,0 +170755234184,222,0 +170755234233,217,0 +170755234283,216,0 +170755234332,217,0 +170755234380,218,0 +170755234428,218,0 +170755234476,219,0 +170755234524,219,0 +170755234572,221,0 +170755234620,221,0 +170755234667,222,0 +170755234715,222,0 +170755234763,223,0 +170755234811,223,0 +170755234859,223,0 +170755234907,224,0 +170755234955,224,0 +170755235004,223,0 +170755235052,223,0 +170755235100,222,0 +170755235150,220,0 +170755235197,215,0 +170755235247,215,0 +170755235295,216,0 +170755235343,216,0 +170755235390,217,0 +170755235440,218,0 +170755235488,218,0 +170755235537,219,0 +170755235585,219,0 +170755235635,220,0 +170755235683,222,0 +170755235731,222,0 +170755235779,222,0 +170755235828,222,0 +170755235876,222,0 +170755235924,222,0 +170755235972,223,0 +170755236022,222,0 +170755236070,222,0 +170755236118,215,0 +170755236166,214,0 +170755236214,215,0 +170755236262,215,0 +170755236309,215,0 +170755236359,216,0 +170755236409,216,0 +170755236456,217,0 +170755236504,217,0 +170755236552,218,0 +170755236602,220,0 +170755236650,220,0 +170755236699,221,0 +170755236749,221,0 +170755236799,222,0 +170755236848,222,0 +170755236898,224,0 +170755236946,222,0 +170755236994,222,0 +170755237043,216,0 +170755237091,215,0 +170755237139,214,0 +170755237189,215,0 +170755237238,215,0 +170755237288,216,0 +170755237337,216,0 +170755237387,216,0 +170755237435,217,0 +170755237483,218,0 +170755237532,219,0 +170755237580,220,0 +170755237628,220,0 +170755237676,222,0 +170755237724,222,0 +170755237773,223,0 +170755237821,222,0 +170755237869,222,0 +170755237917,222,0 +170755237967,216,0 +170755238016,214,0 +170755238066,214,0 +170755238115,214,0 +170755238165,214,0 +170755238213,215,0 +170755238262,216,0 +170755238312,217,0 +170755238360,217,0 +170755238408,217,0 +170755238456,219,0 +170755238505,219,0 +170755238553,220,0 +170755238601,222,0 +170755238649,222,0 +170755238697,222,0 +170755238747,221,0 +170755238796,222,0 +170755238846,222,0 +170755238894,221,0 +170755238942,215,0 +170755238991,215,0 +170755239039,215,0 +170755239087,215,0 +170755239137,215,0 +170755239185,216,0 +170755239233,216,0 +170755239281,217,0 +170755239329,220,0 +170755239378,218,0 +170755239428,219,0 +170755239476,220,0 +170755239525,220,0 +170755239573,220,0 +170755239623,221,0 +170755239672,223,0 +170755239722,222,0 +170755239771,222,0 +170755239821,220,0 +170755239869,215,0 +170755239917,215,0 +170755239965,215,0 +170755240013,219,0 +170755240062,216,0 +170755240110,217,0 +170755240160,217,0 +170755240209,218,0 +170755240259,219,0 +170755240308,218,0 +170755240358,220,0 +170755240406,220,0 +170755240455,221,0 +170755240503,221,0 +170755240551,222,0 +170755240601,221,0 +170755240650,222,0 +170755240698,222,0 +170755240746,222,0 +170755240796,216,0 +170755240844,215,0 +170755240893,215,0 +170755240941,214,0 +170755240989,216,0 +170755241037,217,0 +170755241085,216,0 +170755241133,217,0 +170755241181,217,0 +170755241229,218,0 +170755241278,219,0 +170755241326,219,0 +170755241374,221,0 +170755241422,221,0 +170755241470,222,0 +170755241518,221,0 +170755241568,221,0 +170755241616,222,0 +170755241664,222,0 +170755241711,220,0 +170755241759,215,0 +170755241809,215,0 +170755241859,214,0 +170755241908,216,0 +170755241956,217,0 +170755242006,217,0 +170755242054,218,0 +170755242102,218,0 +170755242150,220,0 +170755242197,220,0 +170755242247,221,0 +170755242296,221,0 +170755242344,222,0 +170755242394,222,0 +170755242442,222,0 +170755242491,222,0 +170755242541,223,0 +170755242590,223,0 +170755242640,221,0 +170755242689,215,0 +170755242737,216,0 +170755242787,216,0 +170755242835,217,0 +170755242883,218,0 +170755242931,218,0 +170755242979,219,0 +170755243028,220,0 +170755243076,221,0 +170755243126,221,0 +170755243174,221,0 +170755243223,222,0 +170755243271,222,0 +170755243319,222,0 +170755243369,223,0 +170755243418,222,0 +170755243466,222,0 +170755243514,222,0 +170755243564,222,0 +170755243612,216,0 +170755243661,217,0 +170755243709,217,0 +170755243757,218,0 +170755243805,218,0 +170755243853,219,0 +170755243903,221,0 +170755243952,220,0 +170755244000,220,0 +170755244048,221,0 +170755244098,221,0 +170755244147,223,0 +170755244197,221,0 +170755244246,223,0 +170755244294,222,0 +170755244343,223,0 +170755244393,224,0 +170755244443,224,0 +170755244492,223,0 +170755244542,216,0 +170755244590,215,0 +170755244637,216,0 +170755244687,217,0 +170755244737,218,0 +170755244786,218,0 +170755244834,219,0 +170755244882,220,0 +170755244932,219,0 +170755244979,220,0 +170755245027,220,0 +170755245075,224,0 +170755245125,221,0 +170755245173,222,0 +170755245222,222,0 +170755245272,222,0 +170755245321,224,0 +170755245369,224,0 +170755245419,222,0 +170755245467,222,0 +170755245515,216,0 +170755245563,216,0 +170755245612,217,0 +170755245662,217,0 +170755245711,219,0 +170755245759,218,0 +170755245809,219,0 +170755245858,220,0 +170755245906,221,0 +170755245956,222,0 +170755246006,221,0 +170755246054,222,0 +170755246103,223,0 +170755246151,221,0 +170755246201,222,0 +170755246250,223,0 +170755246298,223,0 +170755246348,223,0 +170755246397,222,0 +170755246445,215,0 +170755246493,216,0 +170755246543,216,0 +170755246591,217,0 +170755246639,218,0 +170755246686,218,0 +170755246734,219,0 +170755246784,222,0 +170755246833,220,0 +170755246881,221,0 +170755246931,221,0 +170755246979,223,0 +170755247027,222,0 +170755247077,223,0 +170755247126,222,0 +170755247174,223,0 +170755247222,223,0 +170755247270,221,0 +170755247318,222,0 +170755247367,216,0 +170755247417,215,0 +170755247465,216,0 +170755247514,217,0 +170755247562,217,0 +170755247612,219,0 +170755247660,219,0 +170755247709,219,0 +170755247759,221,0 +170755247807,221,0 +170755247857,221,0 +170755247905,222,0 +170755247953,222,0 +170755248000,222,0 +170755248050,223,0 +170755248098,223,0 +170755248146,223,0 +170755248194,223,0 +170755248243,223,0 +170755248293,222,0 +170755248342,215,0 +170755248392,215,0 +170755248440,216,0 +170755248488,216,0 +170755248536,217,0 +170755248584,217,0 +170755248633,219,0 +170755248681,219,0 +170755248730,220,0 +170755248778,221,0 +170755248827,221,0 +170755248877,221,0 +170755248925,222,0 +170755248973,223,0 +170755249022,225,0 +170755249072,222,0 +170755249121,223,0 +170755249171,223,0 +170755249219,222,0 +170755249268,215,0 +170755249316,214,0 +170755249366,215,0 +170755249414,214,0 +170755249463,215,0 +170755249513,216,0 +170755249561,217,0 +170755249609,217,0 +170755249658,219,0 +170755249708,218,0 +170755249757,219,0 +170755249807,221,0 +170755249855,222,0 +170755249903,222,0 +170755249952,224,0 +170755250002,224,0 +170755250051,222,0 +170755250101,222,0 +170755250149,222,0 +170755250197,216,0 +170755250246,214,0 +170755250294,214,0 +170755250344,214,0 +170755250392,214,0 +170755250439,214,0 +170755250487,215,0 +170755250535,215,0 +170755250583,215,0 +170755250631,216,0 +170755250681,216,0 +170755250730,217,0 +170755250778,218,0 +170755250828,219,0 +170755250876,220,0 +170755250924,219,0 +170755250972,221,0 +170755251021,218,0 +170755251069,223,0 +170755251119,224,0 +170755251168,214,0 +170755251218,214,0 +170755251266,215,0 +170755251314,215,0 +170755251363,215,0 +170755251411,216,0 +170755251459,217,0 +170755251509,218,0 +170755251557,218,0 +170755251606,219,0 +170755251654,220,0 +170755251702,220,0 +170755251750,221,0 +170755251798,220,0 +170755251848,222,0 +170755251895,221,0 +170755251943,222,0 +170755251993,223,0 +170755252041,222,0 +170755252090,215,0 +170755252138,215,0 +170755252188,214,0 +170755252236,215,0 +170755252284,215,0 +170755252332,216,0 +170755252381,216,0 +170755252431,217,0 +170755252479,217,0 +170755252528,219,0 +170755252578,221,0 +170755252626,220,0 +170755252676,220,0 +170755252724,221,0 +170755252773,223,0 +170755252821,221,0 +170755252869,222,0 +170755252917,222,0 +170755252965,222,0 +170755253013,216,0 +170755253062,215,0 +170755253110,215,0 +170755253160,215,0 +170755253208,216,0 +170755253256,218,0 +170755253304,217,0 +170755253352,218,0 +170755253401,218,0 +170755253451,219,0 +170755253499,219,0 +170755253548,221,0 +170755253598,221,0 +170755253647,221,0 +170755253695,222,0 +170755253743,222,0 +170755253791,223,0 +170755253841,224,0 +170755253890,224,0 +170755253940,221,0 +170755253988,214,0 +170755254036,214,0 +170755254085,215,0 +170755254135,215,0 +170755254183,215,0 +170755254230,216,0 +170755254278,217,0 +170755254326,217,0 +170755254376,217,0 +170755254424,218,0 +170755254472,221,0 +170755254521,221,0 +170755254569,221,0 +170755254619,223,0 +170755254668,222,0 +170755254718,228,0 +170755254767,222,0 +170755254815,223,0 +170755254865,223,0 +170755254913,215,0 +170755254961,214,0 +170755255009,214,0 +170755255057,215,0 +170755255105,215,0 +170755255154,215,0 +170755255204,216,0 +170755255252,216,0 +170755255301,216,0 +170755255351,217,0 +170755255399,217,0 +170755255447,218,0 +170755255494,220,0 +170755255542,220,0 +170755255590,221,0 +170755255638,221,0 +170755255686,223,0 +170755255734,221,0 +170755255782,222,0 +170755255830,216,0 +170755255878,214,0 +170755255925,214,0 +170755255973,215,0 +170755256021,215,0 +170755256071,215,0 +170755256118,215,0 +170755256168,215,0 +170755256216,216,0 +170755256264,216,0 +170755256312,214,0 +170755256360,216,0 +170755256408,217,0 +170755256456,218,0 +170755256505,218,0 +170755256553,218,0 +170755256601,220,0 +170755256651,220,0 +170755256699,220,0 +170755256748,220,0 +170755256796,222,0 +170755256844,222,0 +170755256892,223,0 +170755256940,222,0 +170755256988,222,0 +170755257037,222,0 +170755257085,222,0 +170755257133,223,0 +170755257181,222,0 +170755257228,218,0 +170755257278,215,0 +170755257326,215,0 +170755257374,216,0 +170755257422,217,0 +170755257469,218,0 +170755257519,219,0 +170755257569,219,0 +170755257618,220,0 +170755257668,220,0 +170755257716,221,0 +170755257765,221,0 +170755257813,223,0 +170755257861,222,0 +170755257909,223,0 +170755257958,223,0 +170755258006,223,0 +170755258054,223,0 +170755258103,223,0 +170755258151,221,0 +170755258199,215,0 +170755258247,216,0 +170755258295,216,0 +170755258345,219,0 +170755258392,218,0 +170755258440,218,0 +170755258490,220,0 +170755258537,218,0 +170755258587,221,0 +170755258635,220,0 +170755258683,223,0 +170755258732,222,0 +170755258780,223,0 +170755258828,223,0 +170755258876,223,0 +170755258924,225,0 +170755258972,222,0 +170755259021,223,0 +170755259069,222,0 +170755259117,216,0 +170755259165,215,0 +170755259213,215,0 +170755259261,216,0 +170755259308,217,0 +170755259358,218,0 +170755259408,218,0 +170755259457,219,0 +170755259507,220,0 +170755259555,220,0 +170755259604,221,0 +170755259652,222,0 +170755259700,223,0 +170755259748,223,0 +170755259797,223,0 +170755259847,224,0 +170755259897,223,0 +170755259946,225,0 +170755259994,223,0 +170755260042,216,0 +170755260090,214,0 +170755260138,215,0 +170755260186,215,0 +170755260234,216,0 +170755260283,217,0 +170755260333,217,0 +170755260381,218,0 +170755260429,218,0 +170755260477,219,0 +170755260525,220,0 +170755260572,220,0 +170755260622,221,0 +170755260670,221,0 +170755260719,222,0 +170755260769,222,0 +170755260817,222,0 +170755260865,222,0 +170755260913,222,0 +170755260961,216,0 +170755261009,215,0 +170755261057,215,0 +170755261105,215,0 +170755261153,215,0 +170755261201,216,0 +170755261250,217,0 +170755261300,217,0 +170755261349,218,0 +170755261399,219,0 +170755261447,220,0 +170755261496,221,0 +170755261546,222,0 +170755261595,221,0 +170755261645,225,0 +170755261693,223,0 +170755261742,223,0 +170755261792,223,0 +170755261840,222,0 +170755261888,216,0 +170755261936,215,0 +170755261984,215,0 +170755262031,215,0 +170755262079,215,0 +170755262129,216,0 +170755262179,216,0 +170755262226,218,0 +170755262274,218,0 +170755262322,218,0 +170755262370,219,0 +170755262420,220,0 +170755262468,222,0 +170755262516,222,0 +170755262564,223,0 +170755262611,222,0 +170755262659,222,0 +170755262707,223,0 +170755262755,224,0 +170755262805,222,0 +170755262852,215,0 +170755262900,215,0 +170755262950,214,0 +170755262998,215,0 +170755263045,216,0 +170755263095,217,0 +170755263143,217,0 +170755263191,218,0 +170755263239,219,0 +170755263288,220,0 +170755263336,220,0 +170755263385,221,0 +170755263433,219,0 +170755263483,223,0 +170755263532,223,0 +170755263580,223,0 +170755263628,223,0 +170755263676,222,0 +170755263724,223,0 +170755263772,215,0 +170755263820,215,0 +170755263869,216,0 +170755263917,216,0 +170755263965,217,0 +170755264013,218,0 +170755264061,218,0 +170755264108,220,0 +170755264156,221,0 +170755264206,220,0 +170755264254,221,0 +170755264301,221,0 +170755264351,219,0 +170755264399,222,0 +170755264447,223,0 +170755264496,223,0 +170755264546,223,0 +170755264594,223,0 +170755264642,222,0 +170755264691,215,0 +170755264739,215,0 +170755264789,216,0 +170755264838,217,0 +170755264888,218,0 +170755264938,218,0 +170755264987,219,0 +170755265035,219,0 +170755265083,220,0 +170755265131,221,0 +170755265179,222,0 +170755265227,222,0 +170755265275,221,0 +170755265324,223,0 +170755265373,223,0 +170755265423,224,0 +170755265472,223,0 +170755265522,222,0 +170755265571,222,0 +170755265619,216,0 +170755265667,215,0 +170755265715,216,0 +170755265763,217,0 +170755265811,218,0 +170755265861,219,0 +170755265909,219,0 +170755265957,221,0 +170755266005,221,0 +170755266053,220,0 +170755266102,221,0 +170755266152,220,0 +170755266200,223,0 +170755266248,222,0 +170755266297,222,0 +170755266345,223,0 +170755266395,223,0 +170755266444,223,0 +170755266494,222,0 +170755266542,216,0 +170755266589,214,0 +170755266637,215,0 +170755266685,216,0 +170755266733,216,0 +170755266781,217,0 +170755266831,217,0 +170755266879,218,0 +170755266927,219,0 +170755266976,220,0 +170755267024,220,0 +170755267072,219,0 +170755267122,221,0 +170755267171,222,0 +170755267221,223,0 +170755267269,223,0 +170755267319,223,0 +170755267368,223,0 +170755267416,222,0 +170755267466,216,0 +170755267515,215,0 +170755267565,215,0 +170755267613,213,0 +170755267661,216,0 +170755267709,216,0 +170755267758,217,0 +170755267806,217,0 +170755267854,217,0 +170755267902,219,0 +170755267950,219,0 +170755267998,220,0 +170755268046,219,0 +170755268094,221,0 +170755268142,221,0 +170755268190,221,0 +170755268237,223,0 +170755268285,222,0 +170755268333,222,0 +170755268383,222,0 +170755268431,215,0 +170755268480,214,0 +170755268528,215,0 +170755268578,216,0 +170755268626,217,0 +170755268674,217,0 +170755268721,217,0 +170755268769,216,0 +170755268817,219,0 +170755268865,220,0 +170755268915,221,0 +170755268963,221,0 +170755269011,222,0 +170755269059,223,0 +170755269107,221,0 +170755269154,222,0 +170755269202,222,0 +170755269250,223,0 +170755269298,222,0 +170755269348,215,0 +170755269397,214,0 +170755269447,215,0 +170755269495,215,0 +170755269543,216,0 +170755269591,217,0 +170755269639,218,0 +170755269687,218,0 +170755269736,219,0 +170755269784,219,0 +170755269834,220,0 +170755269882,222,0 +170755269930,222,0 +170755269979,222,0 +170755270029,223,0 +170755270077,223,0 +170755270125,223,0 +170755270173,223,0 +170755270221,223,0 +170755270270,215,0 +170755270318,215,0 +170755270366,215,0 +170755270414,215,0 +170755270464,215,0 +170755270512,216,0 +170755270560,216,0 +170755270608,217,0 +170755270656,218,0 +170755270704,219,0 +170755270751,220,0 +170755270799,219,0 +170755270849,220,0 +170755270897,222,0 +170755270946,222,0 +170755270994,221,0 +170755271042,221,0 +170755271090,222,0 +170755271138,223,0 +170755271185,216,0 +170755271233,215,0 +170755271281,215,0 +170755271329,215,0 +170755271379,215,0 +170755271428,216,0 +170755271476,214,0 +170755271526,215,0 +170755271573,217,0 +170755271621,218,0 +170755271669,220,0 +170755271717,219,0 +170755271765,221,0 +170755271813,222,0 +170755271863,223,0 +170755271912,223,0 +170755271960,222,0 +170755272008,223,0 +170755272056,223,0 +170755272106,216,0 +170755272155,214,0 +170755272203,215,0 +170755272251,215,0 +170755272299,215,0 +170755272347,215,0 +170755272395,215,0 +170755272443,216,0 +170755272491,216,0 +170755272540,217,0 +170755272590,217,0 +170755272639,218,0 +170755272689,219,0 +170755272737,220,0 +170755272786,220,0 +170755272835,221,0 +170755272883,221,0 +170755272931,221,0 +170755272981,223,0 +170755273031,216,0 +170755273078,215,0 +170755273126,217,0 +170755273174,215,0 +170755273224,216,0 +170755273272,217,0 +170755273321,217,0 +170755273369,218,0 +170755273417,218,0 +170755273467,218,0 +170755273516,218,0 +170755273566,220,0 +170755273614,221,0 +170755273663,221,0 +170755273713,222,0 +170755273761,222,0 +170755273810,223,0 +170755273858,223,0 +170755273908,224,0 +170755273956,221,0 +170755274004,215,0 +170755274053,215,0 +170755274101,216,0 +170755274149,217,0 +170755274197,218,0 +170755274247,217,0 +170755274296,219,0 +170755274346,219,0 +170755274394,219,0 +170755274441,219,0 +170755274489,221,0 +170755274539,221,0 +170755274587,221,0 +170755274635,221,0 +170755274684,224,0 +170755274734,223,0 +170755274782,224,0 +170755274830,223,0 +170755274878,222,0 +170755274927,215,0 +170755274975,215,0 +170755275023,216,0 +170755275073,216,0 +170755275122,217,0 +170755275172,217,0 +170755275220,218,0 +170755275268,218,0 +170755275316,219,0 +170755275364,219,0 +170755275412,220,0 +170755275460,221,0 +170755275509,222,0 +170755275557,223,0 +170755275605,222,0 +170755275653,222,0 +170755275701,222,0 +170755275751,221,0 +170755275798,222,0 +170755275846,216,0 +170755275896,215,0 +170755275944,216,0 +170755275992,217,0 +170755276041,217,0 +170755276089,219,0 +170755276137,220,0 +170755276185,219,0 +170755276233,220,0 +170755276283,221,0 +170755276332,222,0 +170755276382,222,0 +170755276430,222,0 +170755276478,222,0 +170755276526,223,0 +170755276575,224,0 +170755276623,223,0 +170755276671,223,0 +170755276719,222,0 +170755276769,216,0 +170755276817,215,0 +170755276866,215,0 +170755276916,216,0 +170755276965,217,0 +170755277013,218,0 +170755277063,218,0 +170755277111,218,0 +170755277160,219,0 +170755277208,220,0 +170755277258,221,0 +170755277305,221,0 +170755277353,221,0 +170755277403,221,0 +170755277452,223,0 +170755277502,224,0 +170755277550,224,0 +170755277598,222,0 +170755277647,222,0 +170755277697,216,0 +170755277746,215,0 +170755277794,216,0 +170755277842,217,0 +170755277890,217,0 +170755277938,217,0 +170755277988,217,0 +170755278036,219,0 +170755278085,220,0 +170755278133,221,0 +170755278183,220,0 +170755278231,222,0 +170755278280,222,0 +170755278328,224,0 +170755278376,223,0 +170755278426,223,0 +170755278475,223,0 +170755278523,223,0 +170755278573,223,0 +170755278622,216,0 +170755278672,214,0 +170755278721,216,0 +170755278769,216,0 +170755278819,217,0 +170755278868,218,0 +170755278918,217,0 +170755278966,218,0 +170755279015,220,0 +170755279063,219,0 +170755279113,220,0 +170755279161,221,0 +170755279209,222,0 +170755279258,222,0 +170755279306,224,0 +170755279356,223,0 +170755279404,224,0 +170755279452,222,0 +170755279500,222,0 +170755279548,216,0 +170755279596,215,0 +170755279643,216,0 +170755279691,217,0 +170755279739,217,0 +170755279789,218,0 +170755279837,218,0 +170755279886,219,0 +170755279934,220,0 +170755279984,221,0 +170755280032,221,0 +170755280081,222,0 +170755280129,222,0 +170755280177,223,0 +170755280225,223,0 +170755280273,223,0 +170755280321,221,0 +170755280369,223,0 +170755280418,222,0 +170755280467,219,0 +170755280514,214,0 +170755280562,215,0 +170755280610,217,0 +170755280658,217,0 +170755280706,217,0 +170755280754,219,0 +170755280804,219,0 +170755280852,219,0 +170755280901,221,0 +170755280951,222,0 +170755280999,221,0 +170755281047,221,0 +170755281096,223,0 +170755281144,223,0 +170755281192,223,0 +170755281242,223,0 +170755281291,222,0 +170755281339,223,0 +170755281387,222,0 +170755281435,215,0 +170755281483,214,0 +170755281531,215,0 +170755281580,215,0 +170755281628,215,0 +170755281678,216,0 +170755281727,217,0 +170755281775,214,0 +170755281825,218,0 +170755281874,219,0 +170755281924,222,0 +170755281972,221,0 +170755282021,222,0 +170755282069,222,0 +170755282119,222,0 +170755282167,225,0 +170755282215,222,0 +170755282263,223,0 +170755282311,223,0 +170755282358,216,0 +170755282406,216,0 +170755282456,216,0 +170755282506,217,0 +170755282555,217,0 +170755282603,218,0 +170755282651,218,0 +170755282700,219,0 +170755282748,220,0 +170755282798,221,0 +170755282847,222,0 +170755282895,223,0 +170755282943,222,0 +170755282993,223,0 +170755283041,223,0 +170755283091,223,0 +170755283138,224,0 +170755283188,223,0 +170755283238,222,0 +170755283287,215,0 +170755283335,215,0 +170755283383,214,0 +170755283431,215,0 +170755283479,216,0 +170755283528,216,0 +170755283576,217,0 +170755283624,218,0 +170755283674,218,0 +170755283723,219,0 +170755283771,220,0 +170755283821,221,0 +170755283870,221,0 +170755283918,222,0 +170755283966,225,0 +170755284016,222,0 +170755284064,222,0 +170755284112,222,0 +170755284161,223,0 +170755284211,215,0 +170755284259,214,0 +170755284307,214,0 +170755284356,215,0 +170755284404,215,0 +170755284454,214,0 +170755284503,215,0 +170755284553,215,0 +170755284602,217,0 +170755284652,218,0 +170755284700,218,0 +170755284749,219,0 +170755284797,220,0 +170755284845,222,0 +170755284893,222,0 +170755284941,221,0 +170755284991,220,0 +170755285039,222,0 +170755285088,222,0 +170755285138,216,0 +170755285187,215,0 +170755285235,215,0 +170755285283,215,0 +170755285331,215,0 +170755285379,216,0 +170755285427,216,0 +170755285477,217,0 +170755285526,217,0 +170755285574,218,0 +170755285622,218,0 +170755285670,220,0 +170755285718,220,0 +170755285766,222,0 +170755285815,219,0 +170755285863,222,0 +170755285913,222,0 +170755285962,221,0 +170755286012,222,0 +170755286060,216,0 +170755286108,215,0 +170755286156,215,0 +170755286204,216,0 +170755286252,216,0 +170755286300,217,0 +170755286349,218,0 +170755286399,218,0 +170755286448,220,0 +170755286496,219,0 +170755286546,220,0 +170755286595,221,0 +170755286645,222,0 +170755286693,222,0 +170755286743,222,0 +170755286790,222,0 +170755286838,222,0 +170755286886,222,0 +170755286936,222,0 +170755286985,217,0 +170755287035,215,0 +170755287083,216,0 +170755287131,217,0 +170755287180,218,0 +170755287230,218,0 +170755287279,219,0 +170755287327,219,0 +170755287377,220,0 +170755287426,220,0 +170755287474,220,0 +170755287524,221,0 +170755287572,221,0 +170755287621,222,0 +170755287671,222,0 +170755287720,222,0 +170755287770,223,0 +170755287818,223,0 +170755287867,222,0 +170755287915,216,0 +170755287965,215,0 +170755288014,216,0 +170755288064,217,0 +170755288114,217,0 +170755288161,218,0 +170755288211,219,0 +170755288259,221,0 +170755288308,221,0 +170755288358,220,0 +170755288406,221,0 +170755288455,222,0 +170755288503,223,0 +170755288551,222,0 +170755288599,223,0 +170755288647,224,0 +170755288695,223,0 +170755288743,223,0 +170755288791,223,0 +170755288841,222,0 +170755288889,215,0 +170755288937,215,0 +170755288985,215,0 +170755289032,216,0 +170755289080,216,0 +170755289130,217,0 +170755289178,218,0 +170755289226,220,0 +170755289275,219,0 +170755289323,220,0 +170755289371,220,0 +170755289419,221,0 +170755289469,222,0 +170755289518,221,0 +170755289566,221,0 +170755289616,222,0 +170755289665,222,0 +170755289715,222,0 +170755289763,222,0 +170755289811,215,0 +170755289860,215,0 +170755289908,216,0 +170755289958,217,0 +170755290006,217,0 +170755290054,218,0 +170755290103,218,0 +170755290153,219,0 +170755290202,219,0 +170755290250,220,0 +170755290300,221,0 +170755290349,222,0 +170755290397,221,0 +170755290447,223,0 +170755290496,221,0 +170755290544,223,0 +170755290592,222,0 +170755290640,222,0 +170755290688,222,0 +170755290737,215,0 +170755290785,215,0 +170755290835,215,0 +170755290885,216,0 +170755290932,218,0 +170755290980,217,0 +170755291028,218,0 +170755291078,219,0 +170755291128,220,0 +170755291177,219,0 +170755291225,222,0 +170755291273,221,0 +170755291322,221,0 +170755291372,222,0 +170755291421,223,0 +170755291471,223,0 +170755291519,223,0 +170755291567,222,0 +170755291616,222,0 +170755291664,216,0 +170755291712,215,0 +170755291760,215,0 +170755291810,216,0 +170755291858,217,0 +170755291906,216,0 +170755291955,218,0 +170755292003,219,0 +170755292051,219,0 +170755292099,229,0 +170755292149,220,0 +170755292197,220,0 +170755292246,222,0 +170755292294,222,0 +170755292342,222,0 +170755292392,223,0 +170755292439,223,0 +170755292487,222,0 +170755292535,222,0 +170755292583,220,0 +170755292631,214,0 +170755292681,215,0 +170755292729,215,0 +170755292777,216,0 +170755292826,217,0 +170755292874,217,0 +170755292924,219,0 +170755292973,219,0 +170755293023,219,0 +170755293071,220,0 +170755293120,221,0 +170755293168,223,0 +170755293218,222,0 +170755293266,221,0 +170755293315,223,0 +170755293365,223,0 +170755293414,223,0 +170755293462,222,0 +170755293512,215,0 +170755293561,215,0 +170755293609,214,0 +170755293658,214,0 +170755293706,215,0 +170755293754,216,0 +170755293802,216,0 +170755293850,217,0 +170755293899,218,0 +170755293947,218,0 +170755293997,221,0 +170755294045,220,0 +170755294094,220,0 +170755294142,222,0 +170755294192,223,0 +170755294240,222,0 +170755294289,222,0 +170755294339,222,0 +170755294388,222,0 +170755294436,219,0 +170755294486,214,0 +170755294534,214,0 +170755294582,215,0 +170755294629,214,0 +170755294677,215,0 +170755294725,216,0 +170755294773,215,0 +170755294823,217,0 +170755294872,218,0 +170755294922,218,0 +170755294971,221,0 +170755295021,220,0 +170755295069,221,0 +170755295118,221,0 +170755295168,220,0 +170755295217,224,0 +170755295265,222,0 +170755295313,221,0 +170755295361,223,0 +170755295409,215,0 +170755295457,215,0 +170755295505,214,0 +170755295554,215,0 +170755295602,215,0 +170755295652,217,0 +170755295700,217,0 +170755295749,218,0 +170755295797,218,0 +170755295845,219,0 +170755295893,219,0 +170755295941,220,0 +170755295989,222,0 +170755296037,223,0 +170755296085,224,0 +170755296135,223,0 +170755296183,222,0 +170755296232,221,0 +170755296280,221,0 +170755296328,216,0 +170755296376,214,0 +170755296425,215,0 +170755296475,215,0 +170755296523,215,0 +170755296571,215,0 +170755296619,216,0 +170755296667,216,0 +170755296716,217,0 +170755296764,218,0 +170755296812,219,0 +170755296862,220,0 +170755296910,220,0 +170755296957,223,0 +170755297005,221,0 +170755297055,223,0 +170755297104,223,0 +170755297154,222,0 +170755297203,222,0 +170755297251,216,0 +170755297301,215,0 +170755297349,215,0 +170755297397,215,0 +170755297446,215,0 +170755297494,215,0 +170755297542,215,0 +170755297590,216,0 +170755297638,217,0 +170755297686,217,0 +170755297734,218,0 +170755297783,219,0 +170755297833,220,0 +170755297881,221,0 +170755297929,222,0 +170755297977,221,0 +170755298026,221,0 +170755298076,222,0 +170755298125,222,0 +170755298173,217,0 +170755298221,214,0 +170755298269,215,0 +170755298317,215,0 +170755298367,215,0 +170755298416,216,0 +170755298464,216,0 +170755298514,217,0 +170755298563,218,0 +170755298611,219,0 +170755298659,220,0 +170755298707,220,0 +170755298755,221,0 +170755298804,221,0 +170755298852,221,0 +170755298901,222,0 +170755298950,223,0 +170755298998,223,0 +170755299046,223,0 +170755299094,222,0 +170755299141,215,0 +170755299191,214,0 +170755299239,214,0 +170755299287,214,0 +170755299334,215,0 +170755299382,215,0 +170755299432,215,0 +170755299480,216,0 +170755299527,217,0 +170755299575,218,0 +170755299625,219,0 +170755299673,220,0 +170755299722,220,0 +170755299772,221,0 +170755299821,222,0 +170755299869,222,0 +170755299917,221,0 +170755299965,221,0 +170755300014,222,0 +170755300064,215,0 +170755300112,215,0 +170755300160,215,0 +170755300209,215,0 +170755300257,215,0 +170755300306,215,0 +170755300354,216,0 +170755300402,216,0 +170755300450,217,0 +170755300500,217,0 +170755300548,218,0 +170755300595,219,0 +170755300643,221,0 +170755300693,220,0 +170755300741,221,0 +170755300789,223,0 +170755300836,221,0 +170755300884,222,0 +170755300932,222,0 +170755300980,216,0 +170755301030,214,0 +170755301078,214,0 +170755301126,215,0 +170755301174,216,0 +170755301222,217,0 +170755301269,217,0 +170755301317,218,0 +170755301365,218,0 +170755301413,219,0 +170755301461,220,0 +170755301510,221,0 +170755301560,222,0 +170755301608,221,0 +170755301656,222,0 +170755301705,223,0 +170755301753,223,0 +170755301801,219,0 +170755301849,223,0 +170755301896,216,0 +170755301944,215,0 +170755301992,215,0 +170755302040,217,0 +170755302088,217,0 +170755302136,217,0 +170755302185,217,0 +170755302233,219,0 +170755302281,220,0 +170755302329,220,0 +170755302377,221,0 +170755302425,221,0 +170755302473,223,0 +170755302521,222,0 +170755302569,223,0 +170755302616,224,0 +170755302666,223,0 +170755302714,223,0 +170755302762,222,0 +170755302810,223,0 +170755302859,216,0 +170755302907,216,0 +170755302955,217,0 +170755303005,216,0 +170755303053,218,0 +170755303102,220,0 +170755303150,220,0 +170755303198,221,0 +170755303246,221,0 +170755303296,221,0 +170755303344,222,0 +170755303392,221,0 +170755303439,223,0 +170755303487,223,0 +170755303535,222,0 +170755303583,223,0 +170755303631,223,0 +170755303679,223,0 +170755303727,222,0 +170755303777,216,0 +170755303826,217,0 +170755303876,218,0 +170755303924,218,0 +170755303972,220,0 +170755304020,220,0 +170755304068,220,0 +170755304115,222,0 +170755304163,222,0 +170755304211,222,0 +170755304259,223,0 +170755304307,223,0 +170755304355,223,0 +170755304405,224,0 +170755304453,223,0 +170755304501,223,0 +170755304548,224,0 +170755304598,223,0 +170755304646,222,0 +170755304696,216,0 +170755304745,216,0 +170755304795,217,0 +170755304844,218,0 +170755304892,218,0 +170755304940,219,0 +170755304990,220,0 +170755305039,219,0 +170755305089,221,0 +170755305137,221,0 +170755305185,222,0 +170755305233,222,0 +170755305280,222,0 +170755305328,224,0 +170755305376,223,0 +170755305424,224,0 +170755305472,223,0 +170755305522,223,0 +170755305570,223,0 +170755305618,216,0 +170755305667,215,0 +170755305715,215,0 +170755305763,216,0 +170755305813,217,0 +170755305861,217,0 +170755305910,219,0 +170755305958,219,0 +170755306006,219,0 +170755306054,220,0 +170755306102,221,0 +170755306151,222,0 +170755306199,222,0 +170755306249,222,0 +170755306299,225,0 +170755306348,223,0 +170755306398,223,0 +170755306447,222,0 +170755306497,222,0 +170755306545,216,0 +170755306594,214,0 +170755306644,215,0 +170755306692,215,0 +170755306741,216,0 +170755306791,217,0 +170755306839,217,0 +170755306887,217,0 +170755306934,218,0 +170755306982,219,0 +170755307032,220,0 +170755307082,221,0 +170755307130,222,0 +170755307177,222,0 +170755307225,223,0 +170755307273,222,0 +170755307323,223,0 +170755307371,223,0 +170755307419,223,0 +170755307467,216,0 +170755307516,215,0 +170755307564,215,0 +170755307613,215,0 +170755307661,216,0 +170755307709,217,0 +170755307757,217,0 +170755307805,217,0 +170755307855,218,0 +170755307904,219,0 +170755307954,220,0 +170755308003,220,0 +170755308051,222,0 +170755308099,222,0 +170755308149,222,0 +170755308197,223,0 +170755308245,222,0 +170755308294,223,0 +170755308344,223,0 +170755308393,216,0 +170755308441,216,0 +170755308489,216,0 +170755308537,217,0 +170755308587,218,0 +170755308636,218,0 +170755308684,218,0 +170755308734,220,0 +170755308782,220,0 +170755308829,222,0 +170755308877,221,0 +170755308925,222,0 +170755308975,223,0 +170755309023,224,0 +170755309071,223,0 +170755309119,223,0 +170755309168,223,0 +170755309218,223,0 +170755309267,222,0 +170755309317,221,0 +170755309366,217,0 +170755309414,218,0 +170755309464,218,0 +170755309513,216,0 +170755309561,219,0 +170755309611,221,0 +170755309659,220,0 +170755309708,221,0 +170755309758,221,0 +170755309807,222,0 +170755309857,221,0 +170755309905,223,0 +170755309954,222,0 +170755310002,223,0 +170755310050,223,0 +170755310100,223,0 +170755310148,224,0 +170755310197,223,0 +170755310247,217,0 +170755310296,215,0 +170755310344,216,0 +170755310394,216,0 +170755310442,217,0 +170755310490,218,0 +170755310538,219,0 +170755310587,219,0 +170755310637,221,0 +170755310685,221,0 +170755310733,221,0 +170755310782,221,0 +170755310832,226,0 +170755310880,224,0 +170755310928,223,0 +170755310977,223,0 +170755311025,223,0 +170755311075,222,0 +170755311124,223,0 +170755311172,222,0 +170755311220,215,0 +170755311270,215,0 +170755311318,215,0 +170755311366,215,0 +170755311415,217,0 +170755311463,216,0 +170755311511,216,0 +170755311559,218,0 +170755311608,218,0 +170755311656,219,0 +170755311706,219,0 +170755311754,221,0 +170755311803,221,0 +170755311853,221,0 +170755311901,222,0 +170755311949,222,0 +170755311997,222,0 +170755312046,222,0 +170755312094,222,0 +170755312142,215,0 +170755312190,214,0 +170755312238,214,0 +170755312288,215,0 +170755312337,215,0 +170755312387,215,0 +170755312436,215,0 +170755312484,216,0 +170755312532,217,0 +170755312580,217,0 +170755312628,219,0 +170755312677,220,0 +170755312725,220,0 +170755312773,221,0 +170755312823,222,0 +170755312872,222,0 +170755312922,220,0 +170755312970,222,0 +170755313019,222,0 +170755313067,215,0 +170755313115,215,0 +170755313163,215,0 +170755313212,215,0 +170755313262,215,0 +170755313312,216,0 +170755313361,217,0 +170755313409,217,0 +170755313457,219,0 +170755313505,220,0 +170755313553,220,0 +170755313601,218,0 +170755313648,220,0 +170755313696,223,0 +170755313746,222,0 +170755313795,222,0 +170755313843,223,0 +170755313891,222,0 +170755313941,223,0 +170755313991,215,0 +170755314040,215,0 +170755314088,215,0 +170755314138,215,0 +170755314187,215,0 +170755314237,216,0 +170755314286,217,0 +170755314336,217,0 +170755314384,218,0 +170755314433,219,0 +170755314483,219,0 +170755314531,220,0 +170755314579,220,0 +170755314628,222,0 +170755314678,222,0 +170755314727,222,0 +170755314777,223,0 +170755314825,223,0 +170755314873,222,0 +170755314921,216,0 +170755314969,215,0 +170755315017,215,0 +170755315066,215,0 +170755315116,215,0 +170755315164,216,0 +170755315211,216,0 +170755315259,218,0 +170755315307,218,0 +170755315357,217,0 +170755315405,220,0 +170755315453,221,0 +170755315500,221,0 +170755315548,222,0 +170755315596,223,0 +170755315644,222,0 +170755315692,223,0 +170755315741,222,0 +170755315789,223,0 +170755315839,216,0 +170755315887,215,0 +170755315935,215,0 +170755315983,215,0 +170755316032,215,0 +170755316080,216,0 +170755316128,217,0 +170755316176,218,0 +170755316224,218,0 +170755316273,219,0 +170755316321,220,0 +170755316369,220,0 +170755316419,220,0 +170755316467,221,0 +170755316516,221,0 +170755316566,222,0 +170755316614,223,0 +170755316662,222,0 +170755316710,223,0 +170755316759,216,0 +170755316807,214,0 +170755316855,215,0 +170755316905,215,0 +170755316954,216,0 +170755317004,218,0 +170755317053,217,0 +170755317101,219,0 +170755317151,219,0 +170755317200,220,0 +170755317250,220,0 +170755317299,221,0 +170755317347,221,0 +170755317395,222,0 +170755317443,223,0 +170755317491,222,0 +170755317541,223,0 +170755317589,222,0 +170755317638,223,0 +170755317688,218,0 +170755317737,215,0 +170755317787,215,0 +170755317836,215,0 +170755317884,215,0 +170755317934,215,0 +170755317982,216,0 +170755318031,217,0 +170755318079,217,0 +170755318129,218,0 +170755318178,220,0 +170755318228,223,0 +170755318276,221,0 +170755318324,221,0 +170755318372,221,0 +170755318420,223,0 +170755318469,221,0 +170755318519,223,0 +170755318567,223,0 +170755318616,223,0 +170755318666,215,0 +170755318715,215,0 +170755318765,215,0 +170755318813,215,0 +170755318862,216,0 +170755318910,217,0 +170755318958,218,0 +170755319006,218,0 +170755319054,219,0 +170755319104,219,0 +170755319153,220,0 +170755319201,221,0 +170755319249,221,0 +170755319297,222,0 +170755319345,223,0 +170755319393,222,0 +170755319443,223,0 +170755319491,222,0 +170755319540,222,0 +170755319590,215,0 +170755319638,215,0 +170755319687,215,0 +170755319735,216,0 +170755319783,215,0 +170755319833,217,0 +170755319882,216,0 +170755319932,218,0 +170755319981,219,0 +170755320031,220,0 +170755320079,220,0 +170755320126,221,0 +170755320176,221,0 +170755320224,222,0 +170755320273,223,0 +170755320321,223,0 +170755320369,222,0 +170755320419,223,0 +170755320468,222,0 +170755320518,215,0 +170755320566,215,0 +170755320614,215,0 +170755320662,216,0 +170755320711,216,0 +170755320761,217,0 +170755320809,218,0 +170755320857,219,0 +170755320905,220,0 +170755320953,220,0 +170755321001,221,0 +170755321048,224,0 +170755321096,222,0 +170755321146,223,0 +170755321195,224,0 +170755321245,224,0 +170755321293,224,0 +170755321341,224,0 +170755321389,222,0 +170755321437,215,0 +170755321485,214,0 +170755321533,215,0 +170755321582,215,0 +170755321630,216,0 +170755321680,217,0 +170755321729,217,0 +170755321779,218,0 +170755321827,219,0 +170755321876,219,0 +170755321924,221,0 +170755321974,220,0 +170755322023,221,0 +170755322071,223,0 +170755322119,223,0 +170755322167,223,0 +170755322215,223,0 +170755322264,223,0 +170755322314,222,0 +170755322363,215,0 +170755322411,215,0 +170755322461,215,0 +170755322509,215,0 +170755322558,215,0 +170755322606,216,0 +170755322654,218,0 +170755322702,218,0 +170755322751,218,0 +170755322801,219,0 +170755322849,219,0 +170755322898,221,0 +170755322946,222,0 +170755322994,221,0 +170755323042,222,0 +170755323090,222,0 +170755323138,224,0 +170755323186,223,0 +170755323236,222,0 +170755323285,216,0 +170755323333,215,0 +170755323383,215,0 +170755323433,216,0 +170755323482,216,0 +170755323530,217,0 +170755323578,217,0 +170755323626,218,0 +170755323675,220,0 +170755323725,221,0 +170755323773,221,0 +170755323822,221,0 +170755323872,223,0 +170755323920,224,0 +170755323969,222,0 +170755324017,222,0 +170755324065,222,0 +170755324113,223,0 +170755324161,225,0 +170755324211,217,0 +170755324259,214,0 +170755324308,217,0 +170755324356,217,0 +170755324404,216,0 +170755324452,219,0 +170755324500,221,0 +170755324550,219,0 +170755324598,220,0 +170755324647,222,0 +170755324695,222,0 +170755324745,222,0 +170755324793,223,0 +170755324840,223,0 +170755324888,223,0 +170755324936,223,0 +170755324984,223,0 +170755325032,222,0 +170755325080,223,0 +170755325128,221,0 +170755325176,216,0 +170755325225,217,0 +170755325275,217,0 +170755325325,218,0 +170755325372,219,0 +170755325420,220,0 +170755325470,220,0 +170755325518,221,0 +170755325566,221,0 +170755325614,222,0 +170755325662,222,0 +170755325709,222,0 +170755325757,223,0 +170755325805,224,0 +170755325853,223,0 +170755325901,223,0 +170755325950,223,0 +170755325998,222,0 +170755326046,221,0 +170755326094,215,0 +170755326142,215,0 +170755326190,216,0 +170755326238,216,0 +170755326286,218,0 +170755326333,219,0 +170755326381,219,0 +170755326429,220,0 +170755326477,220,0 +170755326525,220,0 +170755326573,221,0 +170755326623,221,0 +170755326672,221,0 +170755326722,222,0 +170755326770,222,0 +170755326819,222,0 +170755326869,221,0 +170755326916,223,0 +170755326966,223,0 +170755327014,216,0 +170755327064,215,0 +170755327113,215,0 +170755327161,215,0 +170755327209,215,0 +170755327257,216,0 +170755327306,217,0 +170755327354,218,0 +170755327404,218,0 +170755327453,219,0 +170755327503,219,0 +170755327552,220,0 +170755327602,221,0 +170755327652,221,0 +170755327699,223,0 +170755327748,223,0 +170755327797,224,0 +170755327847,223,0 +170755327896,223,0 +170755327944,216,0 +170755327992,215,0 +170755328040,215,0 +170755328088,215,0 +170755328136,215,0 +170755328185,216,0 +170755328233,217,0 +170755328281,217,0 +170755328329,218,0 +170755328378,218,0 +170755328426,218,0 +170755328474,219,0 +170755328524,220,0 +170755328573,221,0 +170755328623,220,0 +170755328670,221,0 +170755328718,221,0 +170755328768,222,0 +170755328816,223,0 +170755328864,216,0 +170755328912,214,0 +170755328961,215,0 +170755329009,215,0 +170755329057,216,0 +170755329105,216,0 +170755329154,216,0 +170755329204,217,0 +170755329254,217,0 +170755329302,218,0 +170755329350,219,0 +170755329399,219,0 +170755329447,220,0 +170755329495,220,0 +170755329543,220,0 +170755329591,222,0 +170755329639,220,0 +170755329688,222,0 +170755329738,222,0 +170755329787,216,0 +170755329835,214,0 +170755329885,214,0 +170755329934,215,0 +170755329982,215,0 +170755330030,215,0 +170755330078,216,0 +170755330126,216,0 +170755330174,218,0 +170755330222,218,0 +170755330270,218,0 +170755330318,219,0 +170755330366,222,0 +170755330414,221,0 +170755330462,221,0 +170755330510,221,0 +170755330559,222,0 +170755330607,222,0 +170755330657,222,0 +170755330706,221,0 +170755330756,215,0 +170755330804,215,0 +170755330852,216,0 +170755330900,217,0 +170755330947,218,0 +170755330997,218,0 +170755331045,219,0 +170755331094,220,0 +170755331142,221,0 +170755331192,222,0 +170755331241,222,0 +170755331289,222,0 +170755331337,222,0 +170755331385,222,0 +170755331433,222,0 +170755331483,223,0 +170755331532,223,0 +170755331580,224,0 +170755331628,222,0 +170755331677,216,0 +170755331725,216,0 +170755331773,216,0 +170755331821,217,0 +170755331869,218,0 +170755331917,219,0 +170755331965,220,0 +170755332013,219,0 +170755332063,219,0 +170755332112,221,0 +170755332162,222,0 +170755332210,221,0 +170755332259,222,0 +170755332309,223,0 +170755332358,222,0 +170755332406,223,0 +170755332454,222,0 +170755332504,222,0 +170755332552,222,0 +170755332600,216,0 +170755332649,216,0 +170755332697,217,0 +170755332745,218,0 +170755332793,218,0 +170755332841,219,0 +170755332889,219,0 +170755332937,220,0 +170755332986,221,0 +170755333034,220,0 +170755333084,223,0 +170755333133,221,0 +170755333183,222,0 +170755333232,222,0 +170755333280,222,0 +170755333330,222,0 +170755333379,224,0 +170755333427,223,0 +170755333475,222,0 +170755333525,216,0 +170755333574,215,0 +170755333622,216,0 +170755333672,217,0 +170755333720,217,0 +170755333768,218,0 +170755333817,219,0 +170755333865,219,0 +170755333915,220,0 +170755333963,220,0 +170755334011,221,0 +170755334059,223,0 +170755334108,222,0 +170755334156,222,0 +170755334204,223,0 +170755334254,223,0 +170755334303,222,0 +170755334351,222,0 +170755334399,223,0 +170755334447,216,0 +170755334495,215,0 +170755334545,217,0 +170755334593,217,0 +170755334641,218,0 +170755334689,218,0 +170755334737,219,0 +170755334786,220,0 +170755334836,220,0 +170755334885,221,0 +170755334935,221,0 +170755334983,222,0 +170755335032,222,0 +170755335080,223,0 +170755335130,222,0 +170755335178,223,0 +170755335225,223,0 +170755335275,223,0 +170755335323,222,0 +170755335371,216,0 +170755335419,215,0 +170755335468,216,0 +170755335518,216,0 +170755335567,218,0 +170755335615,218,0 +170755335663,219,0 +170755335712,218,0 +170755335760,220,0 +170755335808,221,0 +170755335856,221,0 +170755335904,221,0 +170755335952,222,0 +170755336000,225,0 +170755336048,220,0 +170755336097,222,0 +170755336147,223,0 +170755336196,222,0 +170755336244,222,0 +170755336292,216,0 +170755336340,215,0 +170755336388,216,0 +170755336436,217,0 +170755336484,217,0 +170755336532,218,0 +170755336582,218,0 +170755336631,219,0 +170755336681,219,0 +170755336729,220,0 +170755336777,221,0 +170755336825,221,0 +170755336874,222,0 +170755336924,224,0 +170755336972,224,0 +170755337021,223,0 +170755337069,223,0 +170755337117,222,0 +170755337165,223,0 +170755337215,222,0 +170755337262,215,0 +170755337312,215,0 +170755337361,216,0 +170755337411,217,0 +170755337459,218,0 +170755337508,218,0 +170755337558,219,0 +170755337606,217,0 +170755337655,219,0 +170755337705,221,0 +170755337754,221,0 +170755337804,221,0 +170755337853,222,0 +170755337903,223,0 +170755337952,227,0 +170755338002,223,0 +170755338050,223,0 +170755338099,226,0 +170755338149,222,0 +170755338198,215,0 +170755338248,215,0 +170755338296,215,0 +170755338346,216,0 +170755338395,217,0 +170755338443,217,0 +170755338491,218,0 +170755338539,219,0 +170755338587,219,0 +170755338635,221,0 +170755338684,221,0 +170755338732,220,0 +170755338782,222,0 +170755338831,222,0 +170755338879,222,0 +170755338927,223,0 +170755338975,226,0 +170755339023,226,0 +170755339073,221,0 +170755339121,215,0 +170755339169,214,0 +170755339217,214,0 +170755339264,215,0 +170755339312,217,0 +170755339360,217,0 +170755339410,218,0 +170755339458,218,0 +170755339506,219,0 +170755339554,220,0 +170755339602,220,0 +170755339650,222,0 +170755339699,223,0 +170755339749,222,0 +170755339796,223,0 +170755339846,223,0 +170755339894,222,0 +170755339943,223,0 +170755339991,221,0 +170755340039,215,0 +170755340088,215,0 +170755340136,215,0 +170755340186,215,0 +170755340234,215,0 +170755340283,216,0 +170755340333,217,0 +170755340381,218,0 +170755340430,218,0 +170755340478,219,0 +170755340526,220,0 +170755340574,220,0 +170755340623,221,0 +170755340671,222,0 +170755340719,223,0 +170755340767,222,0 +170755340815,223,0 +170755340863,223,0 +170755340910,222,0 +170755340958,216,0 +170755341006,215,0 +170755341054,214,0 +170755341104,214,0 +170755341152,216,0 +170755341201,216,0 +170755341249,217,0 +170755341297,218,0 +170755341345,217,0 +170755341393,218,0 +170755341441,218,0 +170755341490,220,0 +170755341540,221,0 +170755341588,221,0 +170755341636,222,0 +170755341685,222,0 +170755341735,223,0 +170755341783,222,0 +170755341831,222,0 +170755341880,218,0 +170755341930,214,0 +170755341978,215,0 +170755342026,214,0 +170755342075,215,0 +170755342125,215,0 +170755342174,216,0 +170755342224,218,0 +170755342272,218,0 +170755342319,218,0 +170755342369,219,0 +170755342419,220,0 +170755342466,220,0 +170755342514,221,0 +170755342564,223,0 +170755342612,222,0 +170755342660,223,0 +170755342708,224,0 +170755342757,223,0 +170755342805,222,0 +170755342853,215,0 +170755342903,215,0 +170755342951,215,0 +170755342999,216,0 +170755343047,216,0 +170755343095,217,0 +170755343144,217,0 +170755343192,218,0 +170755343242,218,0 +170755343289,220,0 +170755343337,219,0 +170755343387,221,0 +170755343435,222,0 +170755343483,222,0 +170755343530,222,0 +170755343580,223,0 +170755343628,223,0 +170755343676,222,0 +170755343724,223,0 +170755343773,215,0 +170755343821,214,0 +170755343870,215,0 +170755343920,215,0 +170755343968,215,0 +170755344017,215,0 +170755344065,216,0 +170755344113,216,0 +170755344161,217,0 +170755344209,218,0 +170755344258,218,0 +170755344306,219,0 +170755344354,219,0 +170755344403,220,0 +170755344453,220,0 +170755344501,220,0 +170755344550,220,0 +170755344598,221,0 +170755344648,220,0 +170755344697,216,0 +170755344747,215,0 +170755344796,215,0 +170755344844,216,0 +170755344892,218,0 +170755344942,217,0 +170755344990,217,0 +170755345039,218,0 +170755345089,219,0 +170755345138,220,0 +170755345186,220,0 +170755345234,220,0 +170755345282,222,0 +170755345330,223,0 +170755345377,222,0 +170755345425,223,0 +170755345475,224,0 +170755345523,223,0 +170755345571,222,0 +170755345618,219,0 +170755345668,215,0 +170755345716,216,0 +170755345765,216,0 +170755345813,217,0 +170755345861,218,0 +170755345909,218,0 +170755345957,219,0 +170755346005,219,0 +170755346054,220,0 +170755346104,221,0 +170755346152,222,0 +170755346199,221,0 +170755346247,223,0 +170755346295,223,0 +170755346343,221,0 +170755346391,222,0 +170755346439,223,0 +170755346487,222,0 +170755346536,221,0 +170755346584,215,0 +170755346632,215,0 +170755346680,216,0 +170755346728,217,0 +170755346776,217,0 +170755346824,218,0 +170755346872,219,0 +170755346920,219,0 +170755346968,219,0 +170755347016,221,0 +170755347063,222,0 +170755347111,221,0 +170755347159,222,0 +170755347209,223,0 +170755347258,224,0 +170755347306,223,0 +170755347356,225,0 +170755347405,223,0 +170755347453,223,0 +170755347501,216,0 +170755347549,215,0 +170755347599,215,0 +170755347647,216,0 +170755347694,216,0 +170755347744,218,0 +170755347792,218,0 +170755347840,220,0 +170755347887,220,0 +170755347935,220,0 +170755347985,220,0 +170755348033,221,0 +170755348081,223,0 +170755348128,223,0 +170755348176,223,0 +170755348226,223,0 +170755348275,223,0 +170755348325,223,0 +170755348374,222,0 +170755348422,215,0 +170755348472,214,0 +170755348521,215,0 +170755348571,216,0 +170755348619,217,0 +170755348667,218,0 +170755348715,219,0 +170755348763,219,0 +170755348811,219,0 +170755348859,220,0 +170755348907,221,0 +170755348954,222,0 +170755349002,222,0 +170755349052,223,0 +170755349101,223,0 +170755349149,223,0 +170755349197,223,0 +170755349245,223,0 +170755349295,223,0 +170755349344,216,0 +170755349394,215,0 +170755349441,215,0 +170755349489,214,0 +170755349537,216,0 +170755349585,216,0 +170755349635,217,0 +170755349684,218,0 +170755349734,218,0 +170755349782,219,0 +170755349831,219,0 +170755349879,221,0 +170755349929,222,0 +170755349978,222,0 +170755350028,222,0 +170755350078,223,0 +170755350125,224,0 +170755350173,224,0 +170755350223,221,0 +170755350271,222,0 +170755350319,215,0 +170755350368,215,0 +170755350416,215,0 +170755350464,216,0 +170755350512,217,0 +170755350560,217,0 +170755350608,218,0 +170755350656,218,0 +170755350706,219,0 +170755350755,220,0 +170755350805,221,0 +170755350853,221,0 +170755350901,217,0 +170755350950,221,0 +170755350998,223,0 +170755351046,223,0 +170755351096,223,0 +170755351145,223,0 +170755351195,223,0 +170755351244,215,0 +170755351292,215,0 +170755351340,215,0 +170755351390,215,0 +170755351438,216,0 +170755351487,217,0 +170755351535,217,0 +170755351585,218,0 +170755351633,218,0 +170755351680,220,0 +170755351728,220,0 +170755351776,221,0 +170755351824,222,0 +170755351872,221,0 +170755351920,223,0 +170755351970,224,0 +170755352018,222,0 +170755352066,222,0 +170755352114,224,0 +170755352162,216,0 +170755352210,215,0 +170755352259,214,0 +170755352307,215,0 +170755352355,216,0 +170755352403,217,0 +170755352453,217,0 +170755352502,217,0 +170755352550,218,0 +170755352600,220,0 +170755352648,220,0 +170755352696,220,0 +170755352743,220,0 +170755352791,221,0 +170755352839,222,0 +170755352887,222,0 +170755352935,222,0 +170755352985,224,0 +170755353034,222,0 +170755353082,216,0 +170755353130,215,0 +170755353178,215,0 +170755353226,216,0 +170755353276,217,0 +170755353325,217,0 +170755353375,218,0 +170755353424,218,0 +170755353472,219,0 +170755353520,220,0 +170755353568,221,0 +170755353616,221,0 +170755353664,221,0 +170755353712,223,0 +170755353762,223,0 +170755353811,223,0 +170755353861,225,0 +170755353910,222,0 +170755353960,222,0 +170755354008,222,0 +170755354056,214,0 +170755354104,215,0 +170755354153,216,0 +170755354201,216,0 +170755354251,217,0 +170755354300,218,0 +170755354348,219,0 +170755354396,220,0 +170755354444,220,0 +170755354492,221,0 +170755354541,221,0 +170755354589,221,0 +170755354637,221,0 +170755354687,222,0 +170755354735,222,0 +170755354784,222,0 +170755354832,222,0 +170755354882,222,0 +170755354930,222,0 +170755354979,215,0 +170755355027,215,0 +170755355075,215,0 +170755355123,216,0 +170755355173,217,0 +170755355221,218,0 +170755355269,219,0 +170755355317,218,0 +170755355365,219,0 +170755355413,221,0 +170755355460,221,0 +170755355510,220,0 +170755355560,221,0 +170755355608,223,0 +170755355656,222,0 +170755355705,223,0 +170755355753,223,0 +170755355801,222,0 +170755355850,223,0 +170755355898,216,0 +170755355948,215,0 +170755355996,215,0 +170755356045,215,0 +170755356095,216,0 +170755356144,217,0 +170755356194,217,0 +170755356243,218,0 +170755356293,218,0 +170755356343,218,0 +170755356392,219,0 +170755356442,220,0 +170755356490,220,0 +170755356539,221,0 +170755356589,223,0 +170755356638,221,0 +170755356688,223,0 +170755356736,222,0 +170755356785,222,0 +170755356833,216,0 +170755356883,215,0 +170755356932,215,0 +170755356980,216,0 +170755357028,216,0 +170755357076,217,0 +170755357124,217,0 +170755357172,217,0 +170755357222,219,0 +170755357270,220,0 +170755357319,220,0 +170755357369,222,0 +170755357419,222,0 +170755357468,222,0 +170755357516,222,0 +170755357566,223,0 +170755357615,223,0 +170755357665,223,0 +170755357714,222,0 +170755357764,217,0 +170755357812,214,0 +170755357861,215,0 +170755357909,216,0 +170755357959,216,0 +170755358007,216,0 +170755358056,217,0 +170755358106,218,0 +170755358154,218,0 +170755358202,218,0 +170755358251,219,0 +170755358301,220,0 +170755358350,221,0 +170755358398,222,0 +170755358446,223,0 +170755358494,222,0 +170755358544,222,0 +170755358592,223,0 +170755358640,223,0 +170755358689,216,0 +170755358737,215,0 +170755358785,215,0 +170755358833,215,0 +170755358881,216,0 +170755358931,217,0 +170755358979,217,0 +170755359027,217,0 +170755359075,218,0 +170755359123,219,0 +170755359172,219,0 +170755359221,220,0 +170755359271,221,0 +170755359320,222,0 +170755359368,222,0 +170755359416,225,0 +170755359464,224,0 +170755359512,223,0 +170755359560,223,0 +170755359608,220,0 +170755359658,215,0 +170755359706,215,0 +170755359754,216,0 +170755359803,216,0 +170755359853,217,0 +170755359902,218,0 +170755359950,218,0 +170755359998,219,0 +170755360048,219,0 +170755360096,220,0 +170755360144,220,0 +170755360193,221,0 +170755360241,222,0 +170755360289,223,0 +170755360339,222,0 +170755360387,224,0 +170755360435,223,0 +170755360483,223,0 +170755360531,221,0 +170755360580,215,0 +170755360630,215,0 +170755360678,215,0 +170755360726,215,0 +170755360775,216,0 +170755360825,217,0 +170755360873,217,0 +170755360922,218,0 +170755360970,219,0 +170755361018,219,0 +170755361067,221,0 +170755361117,221,0 +170755361167,221,0 +170755361216,222,0 +170755361264,223,0 +170755361314,224,0 +170755361363,223,0 +170755361413,222,0 +170755361462,222,0 +170755361512,215,0 +170755361561,215,0 +170755361609,215,0 +170755361659,216,0 +170755361707,217,0 +170755361756,218,0 +170755361804,218,0 +170755361854,218,0 +170755361903,218,0 +170755361951,220,0 +170755362001,221,0 +170755362050,217,0 +170755362098,222,0 +170755362148,223,0 +170755362196,223,0 +170755362245,222,0 +170755362295,225,0 +170755362343,223,0 +170755362392,222,0 +170755362440,215,0 +170755362488,215,0 +170755362536,215,0 +170755362586,215,0 +170755362635,216,0 +170755362685,217,0 +170755362734,217,0 +170755362784,218,0 +170755362832,218,0 +170755362881,220,0 +170755362929,220,0 +170755362977,223,0 +170755363027,221,0 +170755363076,221,0 +170755363124,222,0 +170755363174,222,0 +170755363222,223,0 +170755363270,222,0 +170755363318,222,0 +170755363367,216,0 +170755363415,215,0 +170755363465,215,0 +170755363514,215,0 +170755363564,215,0 +170755363612,216,0 +170755363660,217,0 +170755363709,217,0 +170755363757,217,0 +170755363805,219,0 +170755363854,219,0 +170755363902,220,0 +170755363952,220,0 +170755364001,221,0 +170755364049,221,0 +170755364097,222,0 +170755364147,221,0 +170755364195,222,0 +170755364244,223,0 +170755364294,215,0 +170755364343,215,0 +170755364391,215,0 +170755364439,216,0 +170755364487,216,0 +170755364537,217,0 +170755364585,218,0 +170755364634,218,0 +170755364684,218,0 +170755364732,218,0 +170755364781,221,0 +170755364829,222,0 +170755364877,221,0 +170755364927,222,0 +170755364976,223,0 +170755365024,221,0 +170755365072,222,0 +170755365120,222,0 +170755365170,222,0 +170755365218,216,0 +170755365266,215,0 +170755365314,215,0 +170755365362,215,0 +170755365410,215,0 +170755365459,215,0 +170755365507,217,0 +170755365555,218,0 +170755365605,218,0 +170755365654,219,0 +170755365704,219,0 +170755365753,222,0 +170755365801,221,0 +170755365851,221,0 +170755365899,223,0 +170755365948,221,0 +170755365996,223,0 +170755366044,222,0 +170755366094,222,0 +170755366142,216,0 +170755366190,215,0 +170755366239,215,0 +170755366289,215,0 +170755366337,214,0 +170755366385,216,0 +170755366433,216,0 +170755366481,217,0 +170755366529,219,0 +170755366577,219,0 +170755366626,219,0 +170755366676,219,0 +170755366725,221,0 +170755366773,221,0 +170755366821,223,0 +170755366869,223,0 +170755366917,222,0 +170755366965,222,0 +170755367013,223,0 +170755367061,216,0 +170755367110,215,0 +170755367158,215,0 +170755367206,215,0 +170755367256,215,0 +170755367304,216,0 +170755367352,217,0 +170755367401,219,0 +170755367449,219,0 +170755367499,220,0 +170755367548,220,0 +170755367596,221,0 +170755367644,221,0 +170755367692,222,0 +170755367742,222,0 +170755367790,223,0 +170755367839,223,0 +170755367889,222,0 +170755367938,223,0 +170755367986,216,0 +170755368036,215,0 +170755368085,215,0 +170755368135,216,0 +170755368184,216,0 +170755368232,216,0 +170755368282,217,0 +170755368332,218,0 +170755368380,219,0 +170755368427,218,0 +170755368475,220,0 +170755368523,220,0 +170755368573,221,0 +170755368621,221,0 +170755368671,222,0 +170755368720,222,0 +170755368768,222,0 +170755368816,222,0 +170755368864,222,0 +170755368913,223,0 +170755368961,216,0 +170755369011,217,0 +170755369061,218,0 +170755369110,218,0 +170755369158,219,0 +170755369206,219,0 +170755369254,220,0 +170755369303,220,0 +170755369351,221,0 +170755369399,221,0 +170755369447,222,0 +170755369495,222,0 +170755369544,224,0 +170755369592,223,0 +170755369642,223,0 +170755369691,223,0 +170755369739,223,0 +170755369789,222,0 +170755369836,221,0 +170755369884,216,0 +170755369932,216,0 +170755369980,217,0 +170755370030,218,0 +170755370078,219,0 +170755370127,220,0 +170755370177,221,0 +170755370225,221,0 +170755370273,223,0 +170755370322,222,0 +170755370372,222,0 +170755370420,222,0 +170755370469,223,0 +170755370519,223,0 +170755370567,223,0 +170755370615,223,0 +170755370664,219,0 +170755370714,222,0 +170755370763,222,0 +170755370811,214,0 +170755370859,216,0 +170755370909,215,0 +170755370958,217,0 +170755371008,219,0 +170755371057,219,0 +170755371105,220,0 +170755371153,220,0 +170755371201,222,0 +170755371251,222,0 +170755371300,223,0 +170755371350,222,0 +170755371398,222,0 +170755371446,223,0 +170755371495,223,0 +170755371543,223,0 +170755371593,223,0 +170755371641,223,0 +170755371690,222,0 +170755371740,215,0 +170755371788,215,0 +170755371837,215,0 +170755371887,216,0 +170755371936,216,0 +170755371986,217,0 +170755372035,217,0 +170755372083,218,0 +170755372131,219,0 +170755372179,220,0 +170755372227,221,0 +170755372277,223,0 +170755372326,222,0 +170755372374,221,0 +170755372424,222,0 +170755372472,222,0 +170755372520,223,0 +170755372569,222,0 +170755372617,223,0 +170755372665,215,0 +170755372713,215,0 +170755372761,215,0 +170755372811,215,0 +170755372859,215,0 +170755372907,216,0 +170755372954,215,0 +170755373002,216,0 +170755373050,217,0 +170755373098,217,0 +170755373146,218,0 +170755373194,219,0 +170755373244,220,0 +170755373293,220,0 +170755373343,221,0 +170755373392,221,0 +170755373440,222,0 +170755373488,222,0 +170755373536,221,0 +170755373584,215,0 +170755373634,215,0 +170755373681,214,0 +170755373729,215,0 +170755373779,216,0 +170755373828,216,0 +170755373876,217,0 +170755373924,218,0 +170755373973,218,0 +170755374021,219,0 +170755374069,219,0 +170755374117,221,0 +170755374165,221,0 +170755374213,221,0 +170755374261,222,0 +170755374309,223,0 +170755374357,221,0 +170755374404,222,0 +170755374452,222,0 +170755374500,216,0 +170755374548,215,0 +170755374596,214,0 +170755374644,216,0 +170755374692,216,0 +170755374739,217,0 +170755374787,217,0 +170755374835,218,0 +170755374885,219,0 +170755374933,220,0 +170755374981,221,0 +170755375030,221,0 +170755375078,221,0 +170755375126,229,0 +170755375174,224,0 +170755375223,222,0 +170755375271,222,0 +170755375319,223,0 +170755375367,222,0 +170755375417,216,0 +170755375466,215,0 +170755375514,216,0 +170755375563,216,0 +170755375611,218,0 +170755375659,218,0 +170755375707,218,0 +170755375755,219,0 +170755375803,220,0 +170755375851,220,0 +170755375899,221,0 +170755375949,222,0 +170755375997,222,0 +170755376045,223,0 +170755376094,223,0 +170755376142,223,0 +170755376190,223,0 +170755376238,223,0 +170755376286,223,0 +170755376335,222,0 +170755376385,215,0 +170755376433,216,0 +170755376481,217,0 +170755376528,217,0 +170755376578,218,0 +170755376626,219,0 +170755376674,219,0 +170755376722,221,0 +170755376769,221,0 +170755376817,221,0 +170755376865,221,0 +170755376913,222,0 +170755376961,223,0 +170755377009,223,0 +170755377057,221,0 +170755377106,224,0 +170755377154,224,0 +170755377202,223,0 +170755377250,223,0 +170755377298,215,0 +170755377347,216,0 +170755377395,216,0 +170755377443,217,0 +170755377491,218,0 +170755377539,217,0 +170755377588,218,0 +170755377638,219,0 +170755377687,219,0 +170755377737,220,0 +170755377785,222,0 +170755377833,221,0 +170755377881,222,0 +170755377930,222,0 +170755377978,223,0 +170755378026,222,0 +170755378074,223,0 +170755378122,223,0 +170755378170,222,0 +170755378220,217,0 +170755378268,216,0 +170755378317,216,0 +170755378367,217,0 +170755378415,218,0 +170755378464,218,0 +170755378514,219,0 +170755378563,219,0 +170755378613,219,0 +170755378661,220,0 +170755378709,222,0 +170755378757,222,0 +170755378805,220,0 +170755378853,222,0 +170755378901,223,0 +170755378949,224,0 +170755378998,223,0 +170755379046,223,0 +170755379094,222,0 +170755379142,216,0 +170755379190,214,0 +170755379238,215,0 +170755379286,216,0 +170755379335,216,0 +170755379383,218,0 +170755379433,217,0 +170755379482,218,0 +170755379532,220,0 +170755379580,219,0 +170755379629,220,0 +170755379677,221,0 +170755379725,222,0 +170755379775,222,0 +170755379824,222,0 +170755379874,223,0 +170755379923,224,0 +170755379973,222,0 +170755380023,222,0 +170755380072,216,0 +170755380120,215,0 +170755380170,215,0 +170755380219,215,0 +170755380269,216,0 +170755380318,216,0 +170755380366,217,0 +170755380416,218,0 +170755380465,219,0 +170755380513,219,0 +170755380561,219,0 +170755380609,220,0 +170755380657,221,0 +170755380705,221,0 +170755380753,221,0 +170755380801,222,0 +170755380851,222,0 +170755380899,223,0 +170755380946,222,0 +170755380996,216,0 +170755381044,215,0 +170755381093,214,0 +170755381143,215,0 +170755381191,216,0 +170755381239,216,0 +170755381287,216,0 +170755381335,217,0 +170755381383,218,0 +170755381432,218,0 +170755381480,219,0 +170755381530,221,0 +170755381578,221,0 +170755381628,221,0 +170755381675,222,0 +170755381725,223,0 +170755381773,222,0 +170755381821,222,0 +170755381869,222,0 +170755381918,217,0 +170755381968,215,0 +170755382017,215,0 +170755382067,214,0 +170755382117,215,0 +170755382166,216,0 +170755382214,217,0 +170755382264,217,0 +170755382313,217,0 +170755382363,218,0 +170755382411,220,0 +170755382460,220,0 +170755382510,221,0 +170755382559,221,0 +170755382607,222,0 +170755382655,222,0 +170755382705,221,0 +170755382754,223,0 +170755382804,222,0 +170755382853,216,0 +170755382903,215,0 +170755382952,216,0 +170755383002,216,0 +170755383050,216,0 +170755383098,217,0 +170755383146,218,0 +170755383194,219,0 +170755383242,218,0 +170755383290,217,0 +170755383339,221,0 +170755383389,221,0 +170755383437,221,0 +170755383485,221,0 +170755383533,223,0 +170755383582,222,0 +170755383630,222,0 +170755383680,223,0 +170755383729,223,0 +170755383779,221,0 +170755383827,214,0 +170755383876,214,0 +170755383926,215,0 +170755383975,216,0 +170755384025,215,0 +170755384073,216,0 +170755384122,217,0 +170755384172,217,0 +170755384220,218,0 +170755384268,221,0 +170755384316,221,0 +170755384364,220,0 +170755384412,219,0 +170755384460,221,0 +170755384507,221,0 +170755384557,221,0 +170755384605,222,0 +170755384655,222,0 +170755384704,216,0 +170755384754,214,0 +170755384801,214,0 +170755384849,215,0 +170755384897,215,0 +170755384945,216,0 +170755384993,216,0 +170755385041,215,0 +170755385089,218,0 +170755385137,219,0 +170755385186,218,0 +170755385234,220,0 +170755385284,221,0 +170755385333,221,0 +170755385383,221,0 +170755385431,221,0 +170755385479,222,0 +170755385526,223,0 +170755385576,222,0 +170755385625,219,0 +170755385675,214,0 +170755385725,215,0 +170755385774,215,0 +170755385824,215,0 +170755385873,216,0 +170755385923,216,0 +170755385972,216,0 +170755386022,218,0 +170755386070,218,0 +170755386118,218,0 +170755386167,220,0 +170755386215,219,0 +170755386263,221,0 +170755386311,221,0 +170755386359,221,0 +170755386408,222,0 +170755386458,221,0 +170755386506,223,0 +170755386553,221,0 +170755386603,214,0 +170755386652,214,0 +170755386702,215,0 +170755386750,215,0 +170755386798,215,0 +170755386847,214,0 +170755386895,215,0 +170755386945,216,0 +170755386993,217,0 +170755387042,218,0 +170755387090,219,0 +170755387140,219,0 +170755387189,220,0 +170755387239,220,0 +170755387288,221,0 +170755387336,220,0 +170755387384,221,0 +170755387432,221,0 +170755387481,216,0 +170755387531,215,0 +170755387580,215,0 +170755387630,215,0 +170755387678,216,0 +170755387725,217,0 +170755387775,217,0 +170755387823,217,0 +170755387871,219,0 +170755387918,219,0 +170755387966,220,0 +170755388014,220,0 +170755388062,221,0 +170755388112,221,0 +170755388161,227,0 +170755388209,223,0 +170755388257,222,0 +170755388306,223,0 +170755388354,222,0 +170755388402,216,0 +170755388450,214,0 +170755388499,215,0 +170755388549,216,0 +170755388597,217,0 +170755388645,217,0 +170755388693,218,0 +170755388741,218,0 +170755388790,219,0 +170755388840,220,0 +170755388888,221,0 +170755388936,221,0 +170755388984,221,0 +170755389033,223,0 +170755389081,223,0 +170755389129,223,0 +170755389179,222,0 +170755389227,223,0 +170755389274,222,0 +170755389322,220,0 +170755389370,215,0 +170755389418,216,0 +170755389466,216,0 +170755389514,217,0 +170755389562,217,0 +170755389612,214,0 +170755389660,218,0 +170755389708,219,0 +170755389756,219,0 +170755389805,220,0 +170755389855,221,0 +170755389903,220,0 +170755389951,222,0 +170755390000,222,0 +170755390050,222,0 +170755390098,223,0 +170755390146,223,0 +170755390194,221,0 +170755390242,223,0 +170755390291,215,0 +170755390339,215,0 +170755390389,216,0 +170755390438,217,0 +170755390486,214,0 +170755390534,218,0 +170755390583,219,0 +170755390631,219,0 +170755390681,219,0 +170755390729,220,0 +170755390778,220,0 +170755390826,222,0 +170755390876,223,0 +170755390924,222,0 +170755390972,223,0 +170755391020,224,0 +170755391068,223,0 +170755391117,223,0 +170755391165,221,0 +170755391215,215,0 +170755391263,215,0 +170755391311,216,0 +170755391360,215,0 +170755391408,217,0 +170755391458,218,0 +170755391506,219,0 +170755391554,219,0 +170755391603,219,0 +170755391653,220,0 +170755391701,220,0 +170755391749,221,0 +170755391796,221,0 +170755391846,221,0 +170755391894,223,0 +170755391942,222,0 +170755391991,222,0 +170755392041,222,0 +170755392090,216,0 +170755392138,215,0 +170755392188,215,0 +170755392236,217,0 +170755392285,217,0 +170755392335,218,0 +170755392383,218,0 +170755392432,219,0 +170755392482,220,0 +170755392530,220,0 +170755392578,221,0 +170755392626,222,0 +170755392674,222,0 +170755392722,223,0 +170755392769,222,0 +170755392819,223,0 +170755392867,223,0 +170755392917,222,0 +170755392964,222,0 +170755393014,221,0 +170755393063,214,0 +170755393111,214,0 +170755393161,215,0 +170755393209,215,0 +170755393257,216,0 +170755393305,217,0 +170755393353,218,0 +170755393401,218,0 +170755393450,220,0 +170755393500,220,0 +170755393549,220,0 +170755393599,220,0 +170755393647,222,0 +170755393695,221,0 +170755393744,222,0 +170755393792,221,0 +170755393840,224,0 +170755393888,221,0 +170755393936,219,0 +170755393985,215,0 +170755394033,215,0 +170755394081,214,0 +170755394129,216,0 +170755394179,216,0 +170755394227,217,0 +170755394276,218,0 +170755394324,220,0 +170755394372,219,0 +170755394420,221,0 +170755394468,221,0 +170755394516,222,0 +170755394565,223,0 +170755394613,222,0 +170755394661,223,0 +170755394709,227,0 +170755394757,223,0 +170755394805,223,0 +170755394853,221,0 +170755394901,215,0 +170755394949,215,0 +170755394998,215,0 +170755395048,216,0 +170755395097,217,0 +170755395145,217,0 +170755395193,219,0 +170755395241,217,0 +170755395290,219,0 +170755395338,220,0 +170755395386,221,0 +170755395434,223,0 +170755395482,221,0 +170755395532,222,0 +170755395581,224,0 +170755395631,223,0 +170755395679,222,0 +170755395727,222,0 +170755395776,221,0 +170755395824,215,0 +170755395872,216,0 +170755395920,217,0 +170755395968,218,0 +170755396016,219,0 +170755396064,219,0 +170755396114,219,0 +170755396161,221,0 +170755396211,222,0 +170755396260,222,0 +170755396308,221,0 +170755396358,221,0 +170755396407,222,0 +170755396456,222,0 +170755396505,222,0 +170755396555,222,0 +170755396603,222,0 +170755396651,221,0 +170755396699,221,0 +170755396748,216,0 +170755396796,216,0 +170755396844,217,0 +170755396892,218,0 +170755396941,218,0 +170755396991,219,0 +170755397039,220,0 +170755397089,220,0 +170755397137,221,0 +170755397186,222,0 +170755397236,222,0 +170755397285,222,0 +170755397335,223,0 +170755397383,223,0 +170755397431,222,0 +170755397480,223,0 +170755397530,223,0 +170755397579,221,0 +170755397629,216,0 +170755397677,215,0 +170755397726,216,0 +170755397774,217,0 +170755397822,217,0 +170755397870,218,0 +170755397920,219,0 +170755397968,220,0 +170755398017,220,0 +170755398065,221,0 +170755398115,221,0 +170755398164,221,0 +170755398214,221,0 +170755398262,222,0 +170755398310,223,0 +170755398359,223,0 +170755398407,223,0 +170755398457,222,0 +170755398506,221,0 +170755398554,216,0 +170755398602,215,0 +170755398651,215,0 +170755398701,216,0 +170755398749,217,0 +170755398796,217,0 +170755398844,218,0 +170755398892,219,0 +170755398940,219,0 +170755398990,219,0 +170755399039,222,0 +170755399089,220,0 +170755399137,222,0 +170755399185,222,0 +170755399234,224,0 +170755399284,223,0 +170755399332,223,0 +170755399381,223,0 +170755399431,222,0 +170755399480,216,0 +170755399530,215,0 +170755399578,215,0 +170755399626,215,0 +170755399674,216,0 +170755399722,218,0 +170755399770,217,0 +170755399819,219,0 +170755399867,219,0 +170755399915,220,0 +170755399964,221,0 +170755400012,222,0 +170755400060,221,0 +170755400108,223,0 +170755400158,223,0 +170755400206,223,0 +170755400255,224,0 +170755400303,223,0 +170755400351,223,0 +170755400399,216,0 +170755400447,215,0 +170755400495,215,0 +170755400545,216,0 +170755400593,216,0 +170755400640,217,0 +170755400690,217,0 +170755400738,217,0 +170755400787,218,0 +170755400837,221,0 +170755400887,220,0 +170755400936,221,0 +170755400984,221,0 +170755401034,221,0 +170755401082,222,0 +170755401131,223,0 +170755401181,223,0 +170755401229,223,0 +170755401278,222,0 +170755401328,216,0 +170755401376,216,0 +170755401424,215,0 +170755401471,216,0 +170755401521,217,0 +170755401571,217,0 +170755401619,218,0 +170755401666,218,0 +170755401716,219,0 +170755401766,220,0 +170755401813,221,0 +170755401863,220,0 +170755401912,221,0 +170755401960,222,0 +170755402008,222,0 +170755402056,223,0 +170755402106,223,0 +170755402154,222,0 +170755402203,222,0 +170755402251,216,0 +170755402301,214,0 +170755402349,215,0 +170755402398,215,0 +170755402446,215,0 +170755402496,217,0 +170755402545,217,0 +170755402595,218,0 +170755402644,220,0 +170755402692,219,0 +170755402740,220,0 +170755402788,221,0 +170755402838,221,0 +170755402886,223,0 +170755402933,223,0 +170755402983,223,0 +170755403031,224,0 +170755403079,223,0 +170755403127,222,0 +170755403175,216,0 +170755403222,215,0 +170755403270,214,0 +170755403318,215,0 +170755403366,216,0 +170755403414,217,0 +170755403462,217,0 +170755403511,218,0 +170755403559,218,0 +170755403609,219,0 +170755403657,220,0 +170755403704,220,0 +170755403752,221,0 +170755403802,221,0 +170755403850,222,0 +170755403899,223,0 +170755403949,223,0 +170755403998,222,0 +170755404046,222,0 +170755404094,216,0 +170755404144,215,0 +170755404192,215,0 +170755404240,215,0 +170755404288,215,0 +170755404336,215,0 +170755404385,216,0 +170755404433,217,0 +170755404483,217,0 +170755404531,219,0 +170755404580,219,0 +170755404628,220,0 +170755404678,221,0 +170755404727,220,0 +170755404775,221,0 +170755404823,221,0 +170755404871,222,0 +170755404920,221,0 +170755404968,224,0 +170755405016,216,0 +170755405066,215,0 +170755405114,215,0 +170755405163,214,0 +170755405213,215,0 +170755405262,216,0 +170755405310,217,0 +170755405360,217,0 +170755405408,218,0 +170755405456,219,0 +170755405505,220,0 +170755405554,220,0 +170755405601,222,0 +170755405651,221,0 +170755405699,220,0 +170755405749,223,0 +170755405797,222,0 +170755405844,222,0 +170755405894,222,0 +170755405943,216,0 +170755405991,215,0 +170755406041,215,0 +170755406089,215,0 +170755406137,215,0 +170755406185,217,0 +170755406234,218,0 +170755406282,217,0 +170755406330,217,0 +170755406378,218,0 +170755406428,219,0 +170755406476,220,0 +170755406524,220,0 +170755406573,221,0 +170755406623,221,0 +170755406671,222,0 +170755406720,222,0 +170755406768,222,0 +170755406818,222,0 +170755406866,216,0 +170755406915,215,0 +170755406965,215,0 +170755407014,215,0 +170755407064,215,0 +170755407113,216,0 +170755407163,217,0 +170755407211,217,0 +170755407260,218,0 +170755407308,219,0 +170755407358,220,0 +170755407408,220,0 +170755407457,220,0 +170755407505,221,0 +170755407555,222,0 +170755407604,223,0 +170755407652,222,0 +170755407700,222,0 +170755407748,223,0 +170755407797,216,0 +170755407845,214,0 +170755407893,215,0 +170755407941,215,0 +170755407989,215,0 +170755408037,214,0 +170755408085,215,0 +170755408135,216,0 +170755408184,217,0 +170755408232,219,0 +170755408280,219,0 +170755408328,221,0 +170755408376,220,0 +170755408426,221,0 +170755408475,220,0 +170755408525,222,0 +170755408574,222,0 +170755408622,222,0 +170755408670,221,0 +170755408718,215,0 +170755408768,215,0 +170755408816,215,0 +170755408865,215,0 +170755408913,215,0 +170755408961,216,0 +170755409011,216,0 +170755409060,217,0 +170755409108,217,0 +170755409156,218,0 +170755409206,219,0 +170755409255,220,0 +170755409305,220,0 +170755409353,221,0 +170755409401,222,0 +170755409449,223,0 +170755409497,222,0 +170755409544,224,0 +170755409594,223,0 +170755409643,215,0 +170755409691,215,0 +170755409741,215,0 +170755409789,215,0 +170755409839,215,0 +170755409887,215,0 +170755409934,216,0 +170755409982,217,0 +170755410032,218,0 +170755410080,219,0 +170755410128,219,0 +170755410176,220,0 +170755410225,219,0 +170755410275,221,0 +170755410323,221,0 +170755410371,221,0 +170755410420,223,0 +170755410470,223,0 +170755410519,216,0 +170755410567,215,0 +170755410615,215,0 +170755410665,214,0 +170755410713,216,0 +170755410761,215,0 +170755410809,216,0 +170755410857,218,0 +170755410906,217,0 +170755410956,219,0 +170755411004,218,0 +170755411053,218,0 +170755411103,219,0 +170755411151,220,0 +170755411199,219,0 +170755411247,218,0 +170755411296,219,0 +170755411346,220,0 +170755411395,220,0 +170755411443,222,0 +170755411493,223,0 +170755411541,223,0 +170755411590,224,0 +170755411638,223,0 +170755411686,222,0 +170755411736,222,0 +170755411785,219,0 +170755411835,221,0 +170755411883,217,0 +170755411931,216,0 +170755411980,218,0 +170755412030,218,0 +170755412078,218,0 +170755412127,219,0 +170755412177,221,0 +170755412225,221,0 +170755412273,221,0 +170755412322,222,0 +170755412370,222,0 +170755412420,223,0 +170755412468,222,0 +170755412516,223,0 +170755412564,223,0 +170755412613,223,0 +170755412663,223,0 +170755412712,223,0 +170755412760,222,0 +170755412808,217,0 +170755412858,217,0 +170755412907,218,0 +170755412955,219,0 +170755413005,219,0 +170755413053,220,0 +170755413101,220,0 +170755413149,223,0 +170755413198,222,0 +170755413248,222,0 +170755413296,220,0 +170755413343,222,0 +170755413393,222,0 +170755413441,222,0 +170755413490,224,0 +170755413538,223,0 +170755413586,223,0 +170755413634,222,0 +170755413683,221,0 +170755413731,216,0 +170755413779,216,0 +170755413827,217,0 +170755413875,218,0 +170755413923,218,0 +170755413971,219,0 +170755414019,220,0 +170755414068,221,0 +170755414116,221,0 +170755414164,221,0 +170755414212,224,0 +170755414261,224,0 +170755414311,223,0 +170755414360,223,0 +170755414408,222,0 +170755414456,223,0 +170755414506,222,0 +170755414554,221,0 +170755414602,216,0 +170755414651,215,0 +170755414701,216,0 +170755414749,216,0 +170755414798,216,0 +170755414846,217,0 +170755414896,218,0 +170755414945,218,0 +170755414993,219,0 +170755415043,221,0 +170755415091,220,0 +170755415139,220,0 +170755415188,221,0 +170755415238,222,0 +170755415287,223,0 +170755415337,223,0 +170755415385,225,0 +170755415434,223,0 +170755415482,221,0 +170755415530,216,0 +170755415578,215,0 +170755415626,215,0 +170755415676,216,0 +170755415725,217,0 +170755415773,218,0 +170755415823,216,0 +170755415871,218,0 +170755415920,220,0 +170755415968,220,0 +170755416016,220,0 +170755416066,222,0 +170755416115,219,0 +170755416163,222,0 +170755416211,222,0 +170755416261,222,0 +170755416309,222,0 +170755416358,222,0 +170755416406,221,0 +170755416454,215,0 +170755416503,215,0 +170755416551,215,0 +170755416601,215,0 +170755416649,217,0 +170755416698,217,0 +170755416746,217,0 +170755416794,218,0 +170755416842,219,0 +170755416890,220,0 +170755416940,221,0 +170755416989,222,0 +170755417037,222,0 +170755417087,222,0 +170755417135,222,0 +170755417184,223,0 +170755417232,223,0 +170755417280,223,0 +170755417330,221,0 +170755417378,216,0 +170755417425,217,0 +170755417473,218,0 +170755417523,218,0 +170755417571,219,0 +170755417621,220,0 +170755417670,221,0 +170755417718,220,0 +170755417766,221,0 +170755417814,222,0 +170755417862,223,0 +170755417910,223,0 +170755417958,223,0 +170755418007,222,0 +170755418055,222,0 +170755418103,222,0 +170755418151,223,0 +170755418200,222,0 +170755418250,218,0 +170755418297,217,0 +170755418347,218,0 +170755418395,218,0 +170755418444,219,0 +170755418494,220,0 +170755418541,220,0 +170755418589,221,0 +170755418637,222,0 +170755418685,221,0 +170755418733,223,0 +170755418781,222,0 +170755418829,222,0 +170755418877,222,0 +170755418926,222,0 +170755418974,223,0 +170755419024,224,0 +170755419073,223,0 +170755419121,221,0 +170755419169,215,0 +170755419217,215,0 +170755419265,216,0 +170755419314,217,0 +170755419364,218,0 +170755419412,218,0 +170755419461,218,0 +170755419509,219,0 +170755419557,220,0 +170755419605,220,0 +170755419655,220,0 +170755419703,221,0 +170755419752,223,0 +170755419802,222,0 +170755419850,222,0 +170755419898,222,0 +170755419946,223,0 +170755419995,222,0 +170755420045,220,0 +170755420094,215,0 +170755420142,215,0 +170755420190,216,0 +170755420240,216,0 +170755420289,216,0 +170755420337,217,0 +170755420387,217,0 +170755420436,218,0 +170755420486,219,0 +170755420535,221,0 +170755420583,221,0 +170755420631,221,0 +170755420681,222,0 +170755420730,221,0 +170755420780,223,0 +170755420828,224,0 +170755420876,222,0 +170755420925,222,0 +170755420975,215,0 +170755421023,214,0 +170755421072,216,0 +170755421120,216,0 +170755421168,217,0 +170755421218,217,0 +170755421267,218,0 +170755421315,218,0 +170755421363,220,0 +170755421413,219,0 +170755421462,219,0 +170755421510,221,0 +170755421558,222,0 +170755421608,221,0 +170755421656,221,0 +170755421705,222,0 +170755421755,222,0 +170755421803,222,0 +170755421851,222,0 +170755421900,215,0 +170755421950,215,0 +170755421998,215,0 +170755422046,216,0 +170755422095,216,0 +170755422143,217,0 +170755422193,218,0 +170755422241,218,0 +170755422290,219,0 +170755422338,220,0 +170755422386,220,0 +170755422436,221,0 +170755422484,223,0 +170755422533,223,0 +170755422581,223,0 +170755422631,223,0 +170755422679,223,0 +170755422728,223,0 +170755422776,216,0 +170755422824,215,0 +170755422872,215,0 +170755422922,217,0 +170755422970,217,0 +170755423019,217,0 +170755423067,218,0 +170755423115,219,0 +170755423164,220,0 +170755423214,220,0 +170755423263,222,0 +170755423313,222,0 +170755423361,222,0 +170755423410,222,0 +170755423460,224,0 +170755423508,223,0 +170755423556,223,0 +170755423604,222,0 +170755423652,222,0 +170755423701,215,0 +170755423751,214,0 +170755423799,215,0 +170755423846,216,0 +170755423894,216,0 +170755423942,216,0 +170755423990,218,0 +170755424040,220,0 +170755424089,220,0 +170755424137,219,0 +170755424187,222,0 +170755424236,222,0 +170755424284,221,0 +170755424332,222,0 +170755424380,222,0 +170755424428,223,0 +170755424476,223,0 +170755424524,223,0 +170755424572,221,0 +170755424620,215,0 +170755424668,215,0 +170755424716,215,0 +170755424765,216,0 +170755424815,216,0 +170755424865,217,0 +170755424912,218,0 +170755424962,218,0 +170755425010,220,0 +170755425058,220,0 +170755425106,220,0 +170755425155,221,0 +170755425203,222,0 +170755425253,222,0 +170755425301,222,0 +170755425350,225,0 +170755425398,221,0 +170755425446,223,0 +170755425494,216,0 +170755425544,215,0 +170755425593,215,0 +170755425641,216,0 +170755425691,217,0 +170755425739,217,0 +170755425787,218,0 +170755425835,219,0 +170755425884,219,0 +170755425932,221,0 +170755425980,220,0 +170755426029,220,0 +170755426077,223,0 +170755426125,223,0 +170755426175,222,0 +170755426223,224,0 +170755426272,223,0 +170755426320,222,0 +170755426370,222,0 +170755426419,215,0 +170755426467,215,0 +170755426515,215,0 +170755426565,216,0 +170755426614,216,0 +170755426662,218,0 +170755426712,218,0 +170755426760,219,0 +170755426809,219,0 +170755426859,221,0 +170755426908,221,0 +170755426958,221,0 +170755427006,222,0 +170755427055,222,0 +170755427103,222,0 +170755427153,224,0 +170755427202,223,0 +170755427252,223,0 +170755427300,216,0 +170755427349,215,0 +170755427399,215,0 +170755427448,215,0 +170755427496,216,0 +170755427544,216,0 +170755427592,217,0 +170755427640,217,0 +170755427690,218,0 +170755427738,220,0 +170755427786,219,0 +170755427833,220,0 +170755427883,222,0 +170755427933,218,0 +170755427980,220,0 +170755428028,223,0 +170755428078,221,0 +170755428126,222,0 +170755428175,221,0 +170755428223,215,0 +170755428271,215,0 +170755428319,215,0 +170755428369,216,0 +170755428417,217,0 +170755428465,217,0 +170755428515,217,0 +170755428563,219,0 +170755428611,219,0 +170755428660,219,0 +170755428708,222,0 +170755428756,219,0 +170755428804,222,0 +170755428852,222,0 +170755428900,223,0 +170755428948,223,0 +170755428996,224,0 +170755429044,222,0 +170755429093,221,0 +170755429143,215,0 +170755429191,215,0 +170755429239,216,0 +170755429288,216,0 +170755429338,216,0 +170755429387,218,0 +170755429437,217,0 +170755429487,219,0 +170755429536,219,0 +170755429584,220,0 +170755429632,220,0 +170755429680,220,0 +170755429730,223,0 +170755429779,225,0 +170755429827,221,0 +170755429875,222,0 +170755429925,222,0 +170755429974,222,0 +170755430024,215,0 +170755430073,215,0 +170755430123,216,0 +170755430172,218,0 +170755430220,218,0 +170755430270,218,0 +170755430318,218,0 +170755430366,220,0 +170755430414,219,0 +170755430462,220,0 +170755430511,222,0 +170755430561,222,0 +170755430610,222,0 +170755430658,222,0 +170755430708,222,0 +170755430757,224,0 +170755430805,223,0 +170755430853,222,0 +170755430901,216,0 +170755430949,215,0 +170755430999,216,0 +170755431048,218,0 +170755431098,216,0 +170755431147,218,0 +170755431195,217,0 +170755431243,219,0 +170755431291,220,0 +170755431339,220,0 +170755431387,220,0 +170755431436,222,0 +170755431484,221,0 +170755431532,222,0 +170755431580,223,0 +170755431630,224,0 +170755431678,224,0 +170755431725,222,0 +170755431775,222,0 +170755431825,215,0 +170755431874,215,0 +170755431923,216,0 +170755431971,217,0 +170755432019,218,0 +170755432067,218,0 +170755432115,218,0 +170755432163,220,0 +170755432211,221,0 +170755432259,221,0 +170755432307,222,0 +170755432357,221,0 +170755432406,221,0 +170755432456,223,0 +170755432504,224,0 +170755432552,224,0 +170755432600,222,0 +170755432647,222,0 +170755432695,217,0 +170755432743,215,0 +170755432791,214,0 +170755432839,215,0 +170755432887,216,0 +170755432937,215,0 +170755432984,218,0 +170755433034,219,0 +170755433082,219,0 +170755433130,220,0 +170755433179,221,0 +170755433229,221,0 +170755433277,221,0 +170755433325,222,0 +170755433374,221,0 +170755433422,221,0 +170755433470,222,0 +170755433518,223,0 +170755433565,222,0 +170755433613,216,0 +170755433663,215,0 +170755433711,215,0 +170755433759,214,0 +170755433808,214,0 +170755433858,215,0 +170755433906,216,0 +170755433953,216,0 +170755434001,217,0 +170755434049,218,0 +170755434097,219,0 +170755434145,219,0 +170755434193,220,0 +170755434241,221,0 +170755434288,221,0 +170755434336,221,0 +170755434384,222,0 +170755434432,223,0 +170755434480,222,0 +170755434528,215,0 +170755434578,215,0 +170755434626,214,0 +170755434674,214,0 +170755434723,216,0 +170755434771,216,0 +170755434819,217,0 +170755434867,218,0 +170755434917,219,0 +170755434965,220,0 +170755435014,220,0 +170755435064,221,0 +170755435112,222,0 +170755435161,222,0 +170755435211,222,0 +170755435259,222,0 +170755435308,223,0 +170755435356,222,0 +170755435406,216,0 +170755435454,215,0 +170755435502,216,0 +170755435551,217,0 +170755435601,218,0 +170755435650,218,0 +170755435700,219,0 +170755435748,219,0 +170755435797,220,0 +170755435845,220,0 +170755435893,221,0 +170755435943,221,0 +170755435992,222,0 +170755436042,222,0 +170755436091,223,0 +170755436141,222,0 +170755436190,223,0 +170755436240,222,0 +170755436288,219,0 +170755436336,219,0 +170755436385,218,0 +170755436435,220,0 +170755436483,219,0 +170755436532,220,0 +170755436580,221,0 +170755436628,221,0 +170755436676,222,0 +170755436725,222,0 +170755436773,223,0 +170755436821,223,0 +170755436871,224,0 +170755436919,223,0 +170755436969,223,0 +170755437018,224,0 +170755437068,225,0 +170755437115,222,0 +170755437165,223,0 +170755437213,217,0 +170755437261,217,0 +170755437310,218,0 +170755437358,219,0 +170755437406,219,0 +170755437454,219,0 +170755437503,219,0 +170755437551,220,0 +170755437599,222,0 +170755437647,222,0 +170755437697,221,0 +170755437746,224,0 +170755437794,223,0 +170755437844,223,0 +170755437893,224,0 +170755437941,225,0 +170755437989,223,0 +170755438039,222,0 +170755438087,218,0 +170755438136,217,0 +170755438184,217,0 +170755438234,219,0 +170755438282,218,0 +170755438331,219,0 +170755438381,220,0 +170755438430,220,0 +170755438480,221,0 +170755438529,222,0 +170755438579,222,0 +170755438627,222,0 +170755438676,224,0 +170755438726,224,0 +170755438775,222,0 +170755438825,222,0 +170755438875,223,0 +170755438924,222,0 +170755438972,218,0 +170755439020,217,0 +170755439068,218,0 +170755439116,219,0 +170755439164,219,0 +170755439213,221,0 +170755439263,221,0 +170755439312,221,0 +170755439360,221,0 +170755439410,221,0 +170755439458,223,0 +170755439506,224,0 +170755439555,222,0 +170755439603,223,0 +170755439651,223,0 +170755439701,223,0 +170755439749,223,0 +170755439798,223,0 +170755439848,222,0 +170755439896,217,0 +170755439945,217,0 +170755439995,218,0 +170755440043,218,0 +170755440090,219,0 +170755440138,220,0 +170755440188,221,0 +170755440238,221,0 +170755440286,222,0 +170755440334,223,0 +170755440382,222,0 +170755440430,223,0 +170755440479,223,0 +170755440529,222,0 +170755440578,224,0 +170755440626,223,0 +170755440676,222,0 +170755440724,220,0 +170755440772,214,0 +170755440819,215,0 +170755440867,216,0 +170755440915,217,0 +170755440965,217,0 +170755441015,218,0 +170755441064,219,0 +170755441112,220,0 +170755441160,219,0 +170755441208,220,0 +170755441256,221,0 +170755441304,223,0 +170755441352,223,0 +170755441401,223,0 +170755441451,222,0 +170755441499,222,0 +170755441547,222,0 +170755441595,218,0 +170755441643,214,0 +170755441691,215,0 +170755441740,215,0 +170755441790,215,0 +170755441839,216,0 +170755441889,217,0 +170755441938,217,0 +170755441988,218,0 +170755442038,219,0 +170755442085,219,0 +170755442133,221,0 +170755442183,222,0 +170755442231,221,0 +170755442279,223,0 +170755442327,222,0 +170755442375,224,0 +170755442423,223,0 +170755442471,221,0 +170755442520,215,0 +170755442568,214,0 +170755442616,215,0 +170755442664,216,0 +170755442712,216,0 +170755442762,217,0 +170755442811,218,0 +170755442861,219,0 +170755442908,219,0 +170755442958,218,0 +170755443008,221,0 +170755443057,221,0 +170755443107,222,0 +170755443155,222,0 +170755443204,222,0 +170755443254,222,0 +170755443303,222,0 +170755443351,215,0 +170755443399,214,0 +170755443449,215,0 +170755443497,216,0 +170755443545,216,0 +170755443594,217,0 +170755443644,218,0 +170755443692,218,0 +170755443739,218,0 +170755443789,220,0 +170755443838,221,0 +170755443886,221,0 +170755443934,222,0 +170755443982,223,0 +170755444030,222,0 +170755444078,223,0 +170755444126,223,0 +170755444174,222,0 +170755444224,216,0 +170755444272,215,0 +170755444321,216,0 +170755444371,216,0 +170755444419,218,0 +170755444467,216,0 +170755444516,218,0 +170755444566,220,0 +170755444614,220,0 +170755444663,222,0 +170755444711,221,0 +170755444759,221,0 +170755444807,223,0 +170755444857,224,0 +170755444905,224,0 +170755444954,223,0 +170755445002,223,0 +170755445050,222,0 +170755445100,215,0 +170755445148,215,0 +170755445196,216,0 +170755445245,217,0 +170755445293,217,0 +170755445341,217,0 +170755445389,218,0 +170755445439,219,0 +170755445488,220,0 +170755445538,221,0 +170755445587,222,0 +170755445635,223,0 +170755445683,223,0 +170755445733,222,0 +170755445781,223,0 +170755445830,224,0 +170755445878,223,0 +170755445926,222,0 +170755445976,215,0 +170755446024,215,0 +170755446072,216,0 +170755446120,216,0 +170755446167,217,0 +170755446215,218,0 +170755446263,219,0 +170755446311,218,0 +170755446359,219,0 +170755446409,221,0 +170755446458,221,0 +170755446508,221,0 +170755446557,223,0 +170755446605,222,0 +170755446655,225,0 +170755446703,222,0 +170755446751,222,0 +170755446799,222,0 +170755446847,217,0 +170755446895,215,0 +170755446944,214,0 +170755446992,217,0 +170755447042,217,0 +170755447090,217,0 +170755447138,218,0 +170755447186,219,0 +170755447234,220,0 +170755447283,220,0 +170755447331,221,0 +170755447381,221,0 +170755447430,223,0 +170755447478,223,0 +170755447526,223,0 +170755447576,222,0 +170755447624,223,0 +170755447672,222,0 +170755447720,215,0 +170755447768,216,0 +170755447816,216,0 +170755447864,217,0 +170755447911,217,0 +170755447959,218,0 +170755448007,219,0 +170755448055,220,0 +170755448104,219,0 +170755448152,223,0 +170755448200,222,0 +170755448250,223,0 +170755448298,223,0 +170755448347,223,0 +170755448395,222,0 +170755448445,224,0 +170755448494,223,0 +170755448542,221,0 +170755448592,215,0 +170755448640,215,0 +170755448689,216,0 +170755448737,217,0 +170755448787,217,0 +170755448836,218,0 +170755448884,218,0 +170755448932,219,0 +170755448980,221,0 +170755449028,220,0 +170755449076,221,0 +170755449124,221,0 +170755449174,222,0 +170755449222,222,0 +170755449270,223,0 +170755449319,223,0 +170755449369,222,0 +170755449418,221,0 +170755449468,215,0 +170755449517,215,0 +170755449565,216,0 +170755449613,216,0 +170755449661,218,0 +170755449711,218,0 +170755449759,218,0 +170755449806,219,0 +170755449854,219,0 +170755449902,220,0 +170755449950,221,0 +170755449998,222,0 +170755450047,222,0 +170755450095,221,0 +170755450145,223,0 +170755450193,222,0 +170755450241,222,0 +170755450289,219,0 +170755450338,215,0 +170755450388,215,0 +170755450436,216,0 +170755450484,216,0 +170755450532,216,0 +170755450581,217,0 +170755450629,218,0 +170755450677,217,0 +170755450726,219,0 +170755450774,220,0 +170755450822,218,0 +170755450870,221,0 +170755450918,221,0 +170755450966,221,0 +170755451014,222,0 +170755451062,221,0 +170755451109,222,0 +170755451157,216,0 +170755451205,216,0 +170755451253,217,0 +170755451301,217,0 +170755451349,218,0 +170755451398,219,0 +170755451448,219,0 +170755451496,220,0 +170755451546,220,0 +170755451595,222,0 +170755451645,222,0 +170755451694,222,0 +170755451742,223,0 +170755451790,222,0 +170755451838,223,0 +170755451886,223,0 +170755451934,222,0 +170755451983,222,0 +170755452031,218,0 +170755452079,218,0 +170755452127,219,0 +170755452177,221,0 +170755452226,220,0 +170755452276,220,0 +170755452324,221,0 +170755452373,221,0 +170755452421,221,0 +170755452469,222,0 +170755452517,222,0 +170755452565,222,0 +170755452614,223,0 +170755452662,223,0 +170755452710,223,0 +170755452758,223,0 +170755452806,222,0 +170755452855,222,0 +170755452903,217,0 +170755452953,218,0 +170755453001,218,0 +170755453050,218,0 +170755453098,219,0 +170755453146,221,0 +170755453194,221,0 +170755453243,220,0 +170755453293,222,0 +170755453342,222,0 +170755453392,222,0 +170755453440,222,0 +170755453489,222,0 +170755453537,222,0 +170755453585,222,0 +170755453633,223,0 +170755453681,222,0 +170755453729,221,0 +170755453777,215,0 +170755453825,216,0 +170755453873,216,0 +170755453920,217,0 +170755453968,218,0 +170755454016,218,0 +170755454066,219,0 +170755454113,220,0 +170755454163,220,0 +170755454211,220,0 +170755454261,221,0 +170755454308,221,0 +170755454358,221,0 +170755454406,225,0 +170755454454,223,0 +170755454503,223,0 +170755454551,223,0 +170755454599,221,0 +170755454647,215,0 +170755454697,216,0 +170755454746,216,0 +170755454794,217,0 +170755454842,218,0 +170755454892,218,0 +170755454939,217,0 +170755454987,219,0 +170755455035,219,0 +170755455083,221,0 +170755455133,222,0 +170755455181,221,0 +170755455229,221,0 +170755455277,222,0 +170755455325,222,0 +170755455373,222,0 +170755455420,222,0 +170755455468,222,0 +170755455516,215,0 +170755455564,215,0 +170755455614,215,0 +170755455662,216,0 +170755455709,216,0 +170755455757,217,0 +170755455805,217,0 +170755455853,218,0 +170755455901,218,0 +170755455949,219,0 +170755455998,220,0 +170755456048,222,0 +170755456098,222,0 +170755456146,222,0 +170755456195,222,0 +170755456243,224,0 +170755456291,222,0 +170755456339,222,0 +170755456387,215,0 +170755456435,215,0 +170755456484,215,0 +170755456534,216,0 +170755456583,217,0 +170755456631,219,0 +170755456681,218,0 +170755456729,219,0 +170755456776,220,0 +170755456824,220,0 +170755456874,226,0 +170755456922,222,0 +170755456970,222,0 +170755457019,223,0 +170755457067,220,0 +170755457117,224,0 +170755457165,223,0 +170755457213,220,0 +170755457262,215,0 +170755457310,216,0 +170755457358,216,0 +170755457408,218,0 +170755457457,219,0 +170755457505,219,0 +170755457553,219,0 +170755457601,220,0 +170755457649,221,0 +170755457697,221,0 +170755457746,221,0 +170755457794,221,0 +170755457842,222,0 +170755457890,224,0 +170755457939,223,0 +170755457987,222,0 +170755458035,222,0 +170755458083,220,0 +170755458131,215,0 +170755458179,216,0 +170755458226,216,0 +170755458274,217,0 +170755458322,217,0 +170755458370,218,0 +170755458418,218,0 +170755458467,219,0 +170755458517,219,0 +170755458565,221,0 +170755458613,221,0 +170755458661,222,0 +170755458709,222,0 +170755458756,222,0 +170755458806,222,0 +170755458854,222,0 +170755458903,223,0 +170755458953,222,0 +170755459000,214,0 +170755459048,216,0 +170755459096,216,0 +170755459144,217,0 +170755459192,218,0 +170755459240,218,0 +170755459288,220,0 +170755459336,219,0 +170755459384,221,0 +170755459431,221,0 +170755459481,222,0 +170755459529,220,0 +170755459577,222,0 +170755459625,222,0 +170755459673,222,0 +170755459721,223,0 +170755459768,222,0 +170755459816,221,0 +170755459864,216,0 +170755459914,216,0 +170755459962,217,0 +170755460009,217,0 +170755460057,219,0 +170755460105,219,0 +170755460153,219,0 +170755460201,220,0 +170755460250,221,0 +170755460298,222,0 +170755460346,222,0 +170755460394,223,0 +170755460442,222,0 +170755460490,223,0 +170755460538,223,0 +170755460585,223,0 +170755460635,223,0 +170755460683,216,0 +170755460731,216,0 +170755460779,217,0 +170755460827,217,0 +170755460874,218,0 +170755460922,219,0 +170755460970,219,0 +170755461018,220,0 +170755461066,221,0 +170755461114,221,0 +170755461163,222,0 +170755461213,222,0 +170755461260,222,0 +170755461308,222,0 +170755461356,223,0 +170755461404,222,0 +170755461452,222,0 +170755461501,222,0 +170755461549,218,0 +170755461597,215,0 +170755461645,215,0 +170755461693,217,0 +170755461742,218,0 +170755461792,219,0 +170755461840,219,0 +170755461888,221,0 +170755461935,219,0 +170755461983,221,0 +170755462031,222,0 +170755462079,222,0 +170755462127,222,0 +170755462175,224,0 +170755462223,223,0 +170755462271,223,0 +170755462320,222,0 +170755462368,222,0 +170755462416,216,0 +170755462464,215,0 +170755462512,216,0 +170755462560,216,0 +170755462608,217,0 +170755462656,217,0 +170755462706,217,0 +170755462753,220,0 +170755462801,220,0 +170755462849,222,0 +170755462897,222,0 +170755462945,221,0 +170755462993,222,0 +170755463041,222,0 +170755463091,222,0 +170755463139,225,0 +170755463187,222,0 +170755463235,221,0 +170755463283,216,0 +170755463330,215,0 +170755463378,216,0 +170755463426,217,0 +170755463476,217,0 +170755463523,218,0 +170755463571,219,0 +170755463619,219,0 +170755463669,218,0 +170755463718,221,0 +170755463768,221,0 +170755463816,222,0 +170755463864,222,0 +170755463913,222,0 +170755463961,222,0 +170755464011,222,0 +170755464058,222,0 +170755464106,222,0 +170755464154,217,0 +170755464202,217,0 +170755464252,218,0 +170755464301,218,0 +170755464351,219,0 +170755464398,220,0 +170755464446,221,0 +170755464496,221,0 +170755464544,222,0 +170755464593,221,0 +170755464643,222,0 +170755464691,223,0 +170755464739,223,0 +170755464788,223,0 +170755464836,223,0 +170755464884,223,0 +170755464932,222,0 +170755464982,222,0 +170755465030,217,0 +170755465078,217,0 +170755465127,218,0 +170755465177,219,0 +170755465225,219,0 +170755465273,219,0 +170755465321,221,0 +170755465370,223,0 +170755465418,221,0 +170755465466,222,0 +170755465514,223,0 +170755465562,222,0 +170755465610,224,0 +170755465658,223,0 +170755465706,223,0 +170755465755,222,0 +170755465803,222,0 +170755465851,221,0 +170755465899,217,0 +170755465949,217,0 +170755465998,217,0 +170755466048,220,0 +170755466096,221,0 +170755466144,221,0 +170755466192,220,0 +170755466241,222,0 +170755466289,221,0 +170755466337,222,0 +170755466387,223,0 +170755466435,222,0 +170755466484,222,0 +170755466534,222,0 +170755466582,223,0 +170755466630,222,0 +170755466678,222,0 +170755466725,217,0 +170755466775,216,0 +170755466823,216,0 +170755466873,217,0 +170755466920,218,0 +170755466968,219,0 +170755467016,220,0 +170755467066,220,0 +170755467114,221,0 +170755467162,221,0 +170755467211,222,0 +170755467261,222,0 +170755467309,222,0 +170755467359,223,0 +170755467408,223,0 +170755467456,222,0 +170755467505,222,0 +170755467553,221,0 +170755467603,218,0 +170755467651,217,0 +170755467699,218,0 +170755467748,219,0 +170755467796,219,0 +170755467846,220,0 +170755467895,221,0 +170755467943,221,0 +170755467991,222,0 +170755468039,221,0 +170755468089,222,0 +170755468137,223,0 +170755468185,223,0 +170755468234,222,0 +170755468284,223,0 +170755468334,222,0 +170755468381,223,0 +170755468429,221,0 +170755468477,218,0 +170755468525,218,0 +170755468573,220,0 +170755468621,217,0 +170755468670,219,0 +170755468720,222,0 +170755468768,221,0 +170755468817,221,0 +170755468865,221,0 +170755468913,222,0 +170755468961,223,0 +170755469009,223,0 +170755469057,223,0 +170755469105,223,0 +170755469154,223,0 +170755469202,222,0 +170755469250,222,0 +170755469300,216,0 +170755469349,215,0 +170755469399,216,0 +170755469448,217,0 +170755469496,219,0 +170755469544,218,0 +170755469592,219,0 +170755469640,219,0 +170755469687,221,0 +170755469735,221,0 +170755469783,222,0 +170755469831,221,0 +170755469879,222,0 +170755469927,222,0 +170755469976,223,0 +170755470024,222,0 +170755470072,222,0 +170755470122,222,0 +170755470169,215,0 +170755470219,216,0 +170755470268,217,0 +170755470316,217,0 +170755470364,218,0 +170755470412,219,0 +170755470462,219,0 +170755470510,219,0 +170755470558,220,0 +170755470606,220,0 +170755470654,222,0 +170755470703,222,0 +170755470753,222,0 +170755470802,223,0 +170755470852,222,0 +170755470900,222,0 +170755470949,222,0 +170755470999,216,0 +170755471048,214,0 +170755471098,215,0 +170755471146,215,0 +170755471194,217,0 +170755471243,219,0 +170755471291,218,0 +170755471339,218,0 +170755471387,219,0 +170755471435,220,0 +170755471484,221,0 +170755471534,221,0 +170755471583,222,0 +170755471631,222,0 +170755471679,222,0 +170755471727,223,0 +170755471775,222,0 +170755471825,216,0 +170755471873,215,0 +170755471921,215,0 +170755471969,216,0 +170755472016,217,0 +170755472066,217,0 +170755472114,218,0 +170755472162,219,0 +170755472210,219,0 +170755472259,221,0 +170755472309,220,0 +170755472357,221,0 +170755472404,221,0 +170755472452,222,0 +170755472500,222,0 +170755472550,222,0 +170755472599,222,0 +170755472649,216,0 +170755472698,215,0 +170755472746,215,0 +170755472794,216,0 +170755472844,217,0 +170755472893,216,0 +170755472941,217,0 +170755472991,219,0 +170755473041,219,0 +170755473090,220,0 +170755473138,220,0 +170755473187,222,0 +170755473235,221,0 +170755473283,221,0 +170755473331,222,0 +170755473379,223,0 +170755473429,222,0 +170755473477,222,0 +170755473524,215,0 +170755473572,215,0 +170755473620,216,0 +170755473668,217,0 +170755473718,218,0 +170755473766,218,0 +170755473814,218,0 +170755473862,218,0 +170755473911,220,0 +170755473961,220,0 +170755474009,221,0 +170755474057,220,0 +170755474105,222,0 +170755474153,222,0 +170755474202,222,0 +170755474252,224,0 +170755474301,221,0 +170755474351,215,0 +170755474400,215,0 +170755474448,215,0 +170755474496,218,0 +170755474544,218,0 +170755474592,218,0 +170755474640,218,0 +170755474690,218,0 +170755474738,220,0 +170755474787,219,0 +170755474835,220,0 +170755474885,222,0 +170755474934,222,0 +170755474984,222,0 +170755475032,222,0 +170755475081,223,0 +170755475131,222,0 +170755475180,216,0 +170755475230,216,0 +170755475278,217,0 +170755475327,217,0 +170755475377,218,0 +170755475426,219,0 +170755475474,220,0 +170755475522,220,0 +170755475570,221,0 +170755475618,222,0 +170755475666,222,0 +170755475716,221,0 +170755475764,222,0 +170755475813,222,0 +170755475861,223,0 +170755475909,222,0 +170755475957,222,0 +170755476007,216,0 +170755476056,216,0 +170755476104,217,0 +170755476152,217,0 +170755476202,218,0 +170755476250,220,0 +170755476298,219,0 +170755476347,220,0 +170755476397,221,0 +170755476445,222,0 +170755476493,222,0 +170755476542,222,0 +170755476592,223,0 +170755476640,222,0 +170755476689,222,0 +170755476737,222,0 +170755476787,221,0 +170755476836,216,0 +170755476886,216,0 +170755476935,217,0 +170755476983,217,0 +170755477031,217,0 +170755477079,217,0 +170755477127,218,0 +170755477177,219,0 +170755477225,219,0 +170755477274,219,0 +170755477322,218,0 +170755477372,219,0 +170755477421,221,0 +170755477471,221,0 +170755477520,221,0 +170755477568,222,0 +170755477616,222,0 +170755477664,216,0 +170755477714,217,0 +170755477762,217,0 +170755477811,218,0 +170755477859,217,0 +170755477907,217,0 +170755477957,219,0 +170755478006,219,0 +170755478056,219,0 +170755478104,221,0 +170755478153,222,0 +170755478201,222,0 +170755478249,222,0 +170755478297,222,0 +170755478345,222,0 +170755478393,222,0 +170755478440,222,0 +170755478488,217,0 +170755478536,218,0 +170755478584,218,0 +170755478632,218,0 +170755478681,219,0 +170755478729,219,0 +170755478777,220,0 +170755478827,220,0 +170755478875,221,0 +170755478924,222,0 +170755478974,222,0 +170755479023,222,0 +170755479071,222,0 +170755479121,221,0 +170755479169,222,0 +170755479217,222,0 +170755479266,221,0 +170755479314,219,0 +170755479362,218,0 +170755479412,220,0 +170755479461,220,0 +170755479509,220,0 +170755479559,222,0 +170755479608,222,0 +170755479658,223,0 +170755479706,222,0 +170755479754,223,0 +170755479803,223,0 +170755479851,223,0 +170755479901,223,0 +170755479949,222,0 +170755479998,222,0 +170755480048,222,0 +170755480097,221,0 +170755480145,219,0 +170755480193,219,0 +170755480241,220,0 +170755480289,220,0 +170755480337,221,0 +170755480384,223,0 +170755480432,221,0 +170755480480,222,0 +170755480530,223,0 +170755480579,223,0 +170755480629,222,0 +170755480676,219,0 +170755480726,222,0 +170755480776,223,0 +170755480825,224,0 +170755480875,222,0 +170755480924,221,0 +170755480974,216,0 +170755481023,217,0 +170755481073,218,0 +170755481121,218,0 +170755481169,219,0 +170755481217,220,0 +170755481265,220,0 +170755481313,221,0 +170755481360,222,0 +170755481410,222,0 +170755481460,222,0 +170755481507,222,0 +170755481555,222,0 +170755481605,224,0 +170755481655,222,0 +170755481704,221,0 +170755481752,221,0 +170755481802,218,0 +170755481851,218,0 +170755481901,218,0 +170755481950,219,0 +170755481998,220,0 +170755482046,221,0 +170755482094,221,0 +170755482144,222,0 +170755482192,223,0 +170755482239,221,0 +170755482287,222,0 +170755482337,222,0 +170755482387,222,0 +170755482436,223,0 +170755482484,222,0 +170755482533,222,0 +170755482583,222,0 +170755482632,218,0 +170755482680,218,0 +170755482730,218,0 +170755482780,219,0 +170755482828,220,0 +170755482875,220,0 +170755482923,220,0 +170755482971,220,0 +170755483021,221,0 +170755483069,221,0 +170755483117,222,0 +170755483166,222,0 +170755483216,221,0 +170755483265,223,0 +170755483315,223,0 +170755483364,222,0 +170755483414,222,0 +170755483462,216,0 +170755483511,216,0 +170755483561,217,0 +170755483611,218,0 +170755483660,219,0 +170755483708,218,0 +170755483756,219,0 +170755483804,220,0 +170755483854,221,0 +170755483903,221,0 +170755483951,221,0 +170755484001,221,0 +170755484049,223,0 +170755484097,222,0 +170755484144,222,0 +170755484192,222,0 +170755484242,222,0 +170755484292,215,0 +170755484339,216,0 +170755484389,216,0 +170755484437,218,0 +170755484485,217,0 +170755484534,218,0 +170755484584,219,0 +170755484632,220,0 +170755484680,220,0 +170755484729,221,0 +170755484777,221,0 +170755484825,221,0 +170755484873,223,0 +170755484923,222,0 +170755484971,222,0 +170755485020,222,0 +170755485068,221,0 +170755485116,215,0 +170755485164,216,0 +170755485212,217,0 +170755485262,217,0 +170755485310,218,0 +170755485359,218,0 +170755485409,219,0 +170755485458,220,0 +170755485508,221,0 +170755485556,221,0 +170755485604,221,0 +170755485653,221,0 +170755485703,222,0 +170755485752,222,0 +170755485802,223,0 +170755485851,223,0 +170755485899,221,0 +170755485949,215,0 +170755485999,214,0 +170755486048,216,0 +170755486098,217,0 +170755486146,218,0 +170755486193,218,0 +170755486241,218,0 +170755486291,219,0 +170755486339,219,0 +170755486387,221,0 +170755486436,221,0 +170755486486,221,0 +170755486535,220,0 +170755486583,222,0 +170755486631,222,0 +170755486681,222,0 +170755486729,221,0 +170755486778,215,0 +170755486828,215,0 +170755486876,216,0 +170755486925,216,0 +170755486975,218,0 +170755487023,218,0 +170755487073,219,0 +170755487121,219,0 +170755487170,219,0 +170755487220,220,0 +170755487268,222,0 +170755487316,224,0 +170755487363,222,0 +170755487413,223,0 +170755487463,224,0 +170755487512,222,0 +170755487562,216,0 +170755487611,216,0 +170755487661,216,0 +170755487710,218,0 +170755487760,216,0 +170755487809,218,0 +170755487857,219,0 +170755487907,219,0 +170755487955,219,0 +170755488003,217,0 +170755488052,219,0 +170755488102,223,0 +170755488151,223,0 +170755488199,222,0 +170755488249,222,0 +170755488297,222,0 +170755488346,223,0 +170755488394,215,0 +170755488444,215,0 +170755488492,216,0 +170755488540,217,0 +170755488588,218,0 +170755488636,218,0 +170755488685,218,0 +170755488735,219,0 +170755488783,220,0 +170755488831,219,0 +170755488880,221,0 +170755488930,222,0 +170755488978,221,0 +170755489026,223,0 +170755489073,223,0 +170755489123,223,0 +170755489171,222,0 +170755489220,216,0 +170755489270,215,0 +170755489319,216,0 +170755489369,216,0 +170755489419,217,0 +170755489467,218,0 +170755489515,219,0 +170755489563,219,0 +170755489610,220,0 +170755489660,220,0 +170755489708,221,0 +170755489758,222,0 +170755489807,222,0 +170755489857,220,0 +170755489906,221,0 +170755489954,223,0 +170755490002,222,0 +170755490050,216,0 +170755490099,215,0 +170755490147,215,0 +170755490197,217,0 +170755490245,217,0 +170755490293,218,0 +170755490341,218,0 +170755490389,218,0 +170755490437,219,0 +170755490484,220,0 +170755490534,220,0 +170755490582,221,0 +170755490630,221,0 +170755490680,221,0 +170755490727,222,0 +170755490775,221,0 +170755490823,221,0 +170755490871,215,0 +170755490919,215,0 +170755490969,217,0 +170755491018,217,0 +170755491068,219,0 +170755491116,218,0 +170755491164,219,0 +170755491213,219,0 +170755491263,220,0 +170755491311,221,0 +170755491360,220,0 +170755491408,223,0 +170755491456,222,0 +170755491506,222,0 +170755491555,222,0 +170755491603,222,0 +170755491651,220,0 +170755491701,217,0 +170755491749,217,0 +170755491798,217,0 +170755491848,217,0 +170755491896,218,0 +170755491944,218,0 +170755491992,220,0 +170755492040,219,0 +170755492088,220,0 +170755492137,220,0 +170755492185,222,0 +170755492233,222,0 +170755492281,221,0 +170755492329,222,0 +170755492377,222,0 +170755492427,222,0 +170755492475,222,0 +170755492524,215,0 +170755492574,215,0 +170755492622,216,0 +170755492669,219,0 +170755492717,219,0 +170755492765,219,0 +170755492813,219,0 +170755492861,219,0 +170755492909,221,0 +170755492957,221,0 +170755493005,219,0 +170755493053,222,0 +170755493101,222,0 +170755493151,224,0 +170755493200,222,0 +170755493248,222,0 +170755493296,223,0 +170755493345,220,0 +170755493395,215,0 +170755493443,217,0 +170755493491,215,0 +170755493539,217,0 +170755493587,219,0 +170755493635,220,0 +170755493684,220,0 +170755493734,221,0 +170755493782,233,0 +170755493831,223,0 +170755493879,222,0 +170755493929,222,0 +170755493978,222,0 +170755494028,223,0 +170755494076,222,0 +170755494124,222,0 +170755494172,221,0 +170755494221,217,0 +170755494269,221,0 +170755494317,218,0 +170755494365,219,0 +170755494413,219,0 +170755494463,220,0 +170755494512,221,0 +170755494562,222,0 +170755494611,221,0 +170755494659,222,0 +170755494707,222,0 +170755494757,222,0 +170755494806,222,0 +170755494856,222,0 +170755494906,222,0 +170755494954,222,0 +170755495003,221,0 +170755495053,218,0 +170755495101,218,0 +170755495149,219,0 +170755495198,220,0 +170755495246,220,0 +170755495296,221,0 +170755495345,221,0 +170755495395,222,0 +170755495444,222,0 +170755495492,223,0 +170755495540,222,0 +170755495590,223,0 +170755495639,222,0 +170755495689,223,0 +170755495738,222,0 +170755495786,222,0 +170755495834,218,0 +170755495884,219,0 +170755495932,220,0 +170755495981,220,0 +170755496031,221,0 +170755496080,221,0 +170755496130,221,0 +170755496178,224,0 +170755496226,222,0 +170755496275,224,0 +170755496325,222,0 +170755496373,223,0 +170755496421,223,0 +170755496469,222,0 +170755496517,222,0 +170755496565,222,0 +170755496614,222,0 +170755496664,223,0 +170755496713,219,0 +170755496761,218,0 +170755496811,219,0 +170755496859,219,0 +170755496908,220,0 +170755496958,220,0 +170755497007,221,0 +170755497055,222,0 +170755497105,222,0 +170755497153,220,0 +170755497201,224,0 +170755497248,221,0 +170755497298,223,0 +170755497348,222,0 +170755497397,222,0 +170755497447,221,0 +170755497496,217,0 +170755497546,217,0 +170755497595,218,0 +170755497643,218,0 +170755497693,219,0 +170755497742,219,0 +170755497790,219,0 +170755497838,220,0 +170755497886,221,0 +170755497934,220,0 +170755497984,222,0 +170755498033,222,0 +170755498081,222,0 +170755498131,223,0 +170755498180,222,0 +170755498230,222,0 +170755498279,221,0 +170755498329,218,0 +170755498377,217,0 +170755498425,219,0 +170755498474,219,0 +170755498524,219,0 +170755498573,219,0 +170755498621,222,0 +170755498669,222,0 +170755498717,221,0 +170755498767,223,0 +170755498815,224,0 +170755498864,221,0 +170755498912,223,0 +170755498962,223,0 +170755499011,222,0 +170755499059,222,0 +170755499107,221,0 +170755499155,216,0 +170755499205,217,0 +170755499253,217,0 +170755499302,218,0 +170755499350,219,0 +170755499400,219,0 +170755499448,220,0 +170755499497,220,0 +170755499547,221,0 +170755499595,221,0 +170755499644,222,0 +170755499694,223,0 +170755499743,222,0 +170755499793,221,0 +170755499841,222,0 +170755499889,222,0 +170755499938,223,0 +170755499988,216,0 +170755500036,217,0 +170755500084,217,0 +170755500132,218,0 +170755500181,218,0 +170755500229,218,0 +170755500277,219,0 +170755500325,220,0 +170755500373,220,0 +170755500421,221,0 +170755500470,221,0 +170755500518,221,0 +170755500568,223,0 +170755500617,222,0 +170755500667,222,0 +170755500717,222,0 +170755500766,221,0 +170755500814,217,0 +170755500864,217,0 +170755500912,217,0 +170755500960,219,0 +170755501009,219,0 +170755501059,219,0 +170755501107,219,0 +170755501154,222,0 +170755501204,222,0 +170755501254,220,0 +170755501303,222,0 +170755501351,222,0 +170755501401,223,0 +170755501450,224,0 +170755501500,221,0 +170755501549,222,0 +170755501597,220,0 +170755501645,217,0 +170755501695,218,0 +170755501743,219,0 +170755501792,219,0 +170755501840,220,0 +170755501890,221,0 +170755501937,222,0 +170755501986,222,0 +170755502035,222,0 +170755502085,222,0 +170755502134,221,0 +170755502184,225,0 +170755502232,223,0 +170755502281,223,0 +170755502331,222,0 +170755502380,222,0 +170755502428,218,0 +170755502478,217,0 +170755502527,218,0 +170755502577,219,0 +170755502626,218,0 +170755502674,221,0 +170755502722,221,0 +170755502770,221,0 +170755502818,221,0 +170755502866,222,0 +170755502916,222,0 +170755502965,223,0 +170755503015,223,0 +170755503063,222,0 +170755503111,223,0 +170755503159,221,0 +170755503207,221,0 +170755503256,218,0 +170755503306,218,0 +170755503354,218,0 +170755503402,219,0 +170755503450,219,0 +170755503499,219,0 +170755503547,220,0 +170755503595,219,0 +170755503645,222,0 +170755503694,221,0 +170755503744,223,0 +170755503793,222,0 +170755503843,222,0 +170755503891,223,0 +170755503939,222,0 +170755503988,222,0 +170755504036,221,0 +170755504084,216,0 +170755504132,217,0 +170755504182,217,0 +170755504230,218,0 +170755504278,218,0 +170755504327,219,0 +170755504375,219,0 +170755504423,220,0 +170755504473,220,0 +170755504522,223,0 +170755504572,222,0 +170755504621,223,0 +170755504669,223,0 +170755504719,223,0 +170755504768,223,0 +170755504818,223,0 +170755504866,216,0 +170755504916,216,0 +170755504965,217,0 +170755505015,217,0 +170755505064,218,0 +170755505114,218,0 +170755505163,219,0 +170755505211,219,0 +170755505261,220,0 +170755505309,220,0 +170755505358,221,0 +170755505406,222,0 +170755505456,223,0 +170755505504,222,0 +170755505553,222,0 +170755505603,222,0 +170755505652,221,0 +170755505702,215,0 +170755505750,216,0 +170755505799,216,0 +170755505849,217,0 +170755505898,217,0 +170755505946,218,0 +170755505996,219,0 +170755506045,220,0 +170755506093,219,0 +170755506141,221,0 +170755506191,222,0 +170755506240,222,0 +170755506288,223,0 +170755506336,223,0 +170755506386,222,0 +170755506435,222,0 +170755506483,220,0 +170755506531,215,0 +170755506581,216,0 +170755506630,218,0 +170755506678,218,0 +170755506726,218,0 +170755506776,219,0 +170755506824,220,0 +170755506872,221,0 +170755506920,223,0 +170755506968,222,0 +170755507017,222,0 +170755507067,221,0 +170755507116,222,0 +170755507166,222,0 +170755507214,221,0 +170755507263,222,0 +170755507313,216,0 +170755507361,215,0 +170755507409,217,0 +170755507458,218,0 +170755507508,217,0 +170755507557,219,0 +170755507607,220,0 +170755507656,221,0 +170755507706,220,0 +170755507754,220,0 +170755507802,221,0 +170755507852,221,0 +170755507901,222,0 +170755507949,222,0 +170755507997,222,0 +170755508045,221,0 +170755508093,221,0 +170755508142,216,0 +170755508192,216,0 +170755508241,216,0 +170755508289,217,0 +170755508339,218,0 +170755508388,219,0 +170755508436,219,0 +170755508486,219,0 +170755508534,220,0 +170755508582,221,0 +170755508631,222,0 +170755508679,220,0 +170755508727,222,0 +170755508777,222,0 +170755508825,222,0 +170755508873,222,0 +170755508921,220,0 +170755508968,217,0 +170755509016,218,0 +170755509064,218,0 +170755509114,219,0 +170755509163,219,0 +170755509211,220,0 +170755509261,220,0 +170755509310,220,0 +170755509358,223,0 +170755509407,222,0 +170755509456,222,0 +170755509504,222,0 +170755509554,222,0 +170755509601,222,0 +170755509651,222,0 +170755509701,221,0 +170755509750,218,0 +170755509800,217,0 +170755509848,220,0 +170755509896,218,0 +170755509945,219,0 +170755509995,220,0 +170755510044,220,0 +170755510092,221,0 +170755510142,221,0 +170755510191,220,0 +170755510241,221,0 +170755510290,222,0 +170755510340,222,0 +170755510390,223,0 +170755510438,223,0 +170755510486,223,0 +170755510534,222,0 +170755510582,217,0 +170755510630,217,0 +170755510678,218,0 +170755510726,218,0 +170755510773,219,0 +170755510821,219,0 +170755510869,220,0 +170755510919,219,0 +170755510967,221,0 +170755511016,221,0 +170755511066,222,0 +170755511114,223,0 +170755511162,223,0 +170755511210,224,0 +170755511260,223,0 +170755511309,222,0 +170755511359,222,0 +170755511408,217,0 +170755511456,217,0 +170755511504,218,0 +170755511552,218,0 +170755511602,219,0 +170755511651,220,0 +170755511699,220,0 +170755511747,221,0 +170755511795,221,0 +170755511845,221,0 +170755511892,222,0 +170755511940,222,0 +170755511988,223,0 +170755512036,223,0 +170755512084,222,0 +170755512132,221,0 +170755512180,216,0 +170755512228,217,0 +170755512276,218,0 +170755512324,218,0 +170755512372,219,0 +170755512420,220,0 +170755512468,220,0 +170755512516,220,0 +170755512564,221,0 +170755512614,222,0 +170755512662,222,0 +170755512711,222,0 +170755512761,222,0 +170755512808,222,0 +170755512858,222,0 +170755512907,222,0 +170755512955,221,0 +170755513005,217,0 +170755513054,218,0 +170755513102,218,0 +170755513150,219,0 +170755513198,220,0 +170755513248,220,0 +170755513296,220,0 +170755513344,220,0 +170755513393,222,0 +170755513441,222,0 +170755513489,225,0 +170755513539,222,0 +170755513588,223,0 +170755513638,223,0 +170755513686,223,0 +170755513735,222,0 +170755513783,221,0 +170755513831,217,0 +170755513881,217,0 +170755513930,219,0 +170755513980,219,0 +170755514030,220,0 +170755514079,220,0 +170755514127,220,0 +170755514177,220,0 +170755514225,222,0 +170755514272,222,0 +170755514320,223,0 +170755514368,223,0 +170755514416,223,0 +170755514466,224,0 +170755514514,222,0 +170755514563,222,0 +170755514613,217,0 +170755514661,217,0 +170755514709,218,0 +170755514758,218,0 +170755514806,219,0 +170755514856,218,0 +170755514904,221,0 +170755514953,221,0 +170755515003,222,0 +170755515052,222,0 +170755515102,223,0 +170755515151,222,0 +170755515199,224,0 +170755515249,223,0 +170755515298,222,0 +170755515348,222,0 +170755515396,222,0 +170755515444,215,0 +170755515493,216,0 +170755515541,217,0 +170755515591,218,0 +170755515641,218,0 +170755515688,219,0 +170755515736,221,0 +170755515786,220,0 +170755515834,220,0 +170755515883,222,0 +170755515933,222,0 +170755515981,222,0 +170755516029,222,0 +170755516078,222,0 +170755516126,222,0 +170755516176,221,0 +170755516225,221,0 +170755516273,215,0 +170755516321,216,0 +170755516369,216,0 +170755516417,217,0 +170755516465,217,0 +170755516513,219,0 +170755516561,220,0 +170755516609,220,0 +170755516658,222,0 +170755516706,223,0 +170755516754,226,0 +170755516802,221,0 +170755516852,223,0 +170755516901,223,0 +170755516951,222,0 +170755516999,222,0 +170755517047,220,0 +170755517094,216,0 +170755517144,218,0 +170755517192,217,0 +170755517240,218,0 +170755517289,219,0 +170755517339,219,0 +170755517388,220,0 +170755517436,220,0 +170755517486,220,0 +170755517535,221,0 +170755517585,221,0 +170755517635,222,0 +170755517684,223,0 +170755517732,222,0 +170755517780,222,0 +170755517828,222,0 +170755517876,216,0 +170755517924,216,0 +170755517972,216,0 +170755518021,217,0 +170755518071,218,0 +170755518120,218,0 +170755518168,219,0 +170755518216,220,0 +170755518264,220,0 +170755518312,221,0 +170755518362,223,0 +170755518411,222,0 +170755518461,222,0 +170755518511,222,0 +170755518560,223,0 +170755518610,222,0 +170755518659,221,0 +170755518707,216,0 +170755518755,217,0 +170755518803,217,0 +170755518853,218,0 +170755518901,218,0 +170755518948,219,0 +170755518998,220,0 +170755519048,221,0 +170755519095,221,0 +170755519145,222,0 +170755519195,222,0 +170755519244,222,0 +170755519292,223,0 +170755519340,223,0 +170755519388,222,0 +170755519437,222,0 +170755519487,216,0 +170755519535,217,0 +170755519585,218,0 +170755519632,218,0 +170755519680,219,0 +170755519730,219,0 +170755519780,221,0 +170755519829,221,0 +170755519877,222,0 +170755519925,224,0 +170755519973,223,0 +170755520022,223,0 +170755520070,223,0 +170755520119,226,0 +170755520167,224,0 +170755520217,222,0 +170755520266,222,0 +170755520316,219,0 +170755520364,220,0 +170755520412,221,0 +170755520461,221,0 +170755520509,220,0 +170755520557,222,0 +170755520607,221,0 +170755520655,222,0 +170755520703,222,0 +170755520751,222,0 +170755520800,223,0 +170755520848,223,0 +170755520896,223,0 +170755520946,223,0 +170755520994,223,0 +170755521043,222,0 +170755521091,217,0 +170755521141,219,0 +170755521188,220,0 +170755521236,220,0 +170755521284,220,0 +170755521332,221,0 +170755521382,222,0 +170755521430,222,0 +170755521478,222,0 +170755521526,222,0 +170755521574,223,0 +170755521622,222,0 +170755521669,223,0 +170755521719,223,0 +170755521769,222,0 +170755521816,222,0 +170755521866,222,0 +170755521915,220,0 +170755521963,220,0 +170755522011,221,0 +170755522061,221,0 +170755522110,221,0 +170755522158,221,0 +170755522206,223,0 +170755522254,221,0 +170755522304,224,0 +170755522353,223,0 +170755522403,222,0 +170755522451,223,0 +170755522500,222,0 +170755522550,223,0 +170755522599,223,0 +170755522647,221,0 +170755522695,222,0 +170755522743,218,0 +170755522791,218,0 +170755522841,219,0 +170755522889,220,0 +170755522937,221,0 +170755522986,221,0 +170755523034,219,0 +170755523082,221,0 +170755523132,222,0 +170755523181,223,0 +170755523229,222,0 +170755523279,223,0 +170755523328,223,0 +170755523376,222,0 +170755523426,222,0 +170755523474,222,0 +170755523523,218,0 +170755523571,218,0 +170755523619,219,0 +170755523669,219,0 +170755523717,221,0 +170755523766,220,0 +170755523816,221,0 +170755523865,221,0 +170755523913,222,0 +170755523963,223,0 +170755524012,222,0 +170755524060,221,0 +170755524108,223,0 +170755524156,223,0 +170755524204,222,0 +170755524252,222,0 +170755524299,221,0 +170755524347,217,0 +170755524395,217,0 +170755524443,219,0 +170755524491,219,0 +170755524539,219,0 +170755524587,220,0 +170755524635,220,0 +170755524683,221,0 +170755524732,221,0 +170755524780,223,0 +170755524829,222,0 +170755524877,222,0 +170755524925,222,0 +170755524973,222,0 +170755525021,222,0 +170755525069,222,0 +170755525118,221,0 +170755525166,215,0 +170755525214,216,0 +170755525263,217,0 +170755525313,217,0 +170755525361,217,0 +170755525409,218,0 +170755525458,219,0 +170755525506,220,0 +170755525554,220,0 +170755525602,221,0 +170755525650,222,0 +170755525699,222,0 +170755525749,222,0 +170755525797,222,0 +170755525845,223,0 +170755525893,221,0 +170755525941,218,0 +170755525989,215,0 +170755526037,216,0 +170755526085,217,0 +170755526134,218,0 +170755526182,218,0 +170755526230,219,0 +170755526280,219,0 +170755526329,220,0 +170755526378,220,0 +170755526426,222,0 +170755526476,222,0 +170755526525,224,0 +170755526575,222,0 +170755526623,222,0 +170755526671,222,0 +170755526718,221,0 +170755526766,216,0 +170755526814,215,0 +170755526862,216,0 +170755526910,217,0 +170755526960,218,0 +170755527009,219,0 +170755527059,219,0 +170755527107,221,0 +170755527156,220,0 +170755527204,220,0 +170755527254,220,0 +170755527303,223,0 +170755527351,221,0 +170755527401,222,0 +170755527450,222,0 +170755527498,220,0 +170755527546,222,0 +170755527596,216,0 +170755527644,217,0 +170755527692,218,0 +170755527741,218,0 +170755527791,219,0 +170755527839,219,0 +170755527888,219,0 +170755527936,220,0 +170755527984,221,0 +170755528032,221,0 +170755528080,223,0 +170755528130,223,0 +170755528179,222,0 +170755528229,223,0 +170755528278,222,0 +170755528328,222,0 +170755528377,217,0 +170755528425,216,0 +170755528473,217,0 +170755528521,217,0 +170755528570,218,0 +170755528620,219,0 +170755528668,218,0 +170755528716,220,0 +170755528765,220,0 +170755528815,221,0 +170755528863,222,0 +170755528912,222,0 +170755528962,223,0 +170755529012,223,0 +170755529061,222,0 +170755529109,222,0 +170755529158,222,0 +170755529206,216,0 +170755529254,217,0 +170755529302,218,0 +170755529350,219,0 +170755529400,218,0 +170755529449,219,0 +170755529497,220,0 +170755529547,220,0 +170755529596,222,0 +170755529644,222,0 +170755529694,221,0 +170755529742,222,0 +170755529791,222,0 +170755529839,223,0 +170755529889,222,0 +170755529936,222,0 +170755529986,217,0 +170755530036,216,0 +170755530083,217,0 +170755530131,218,0 +170755530181,219,0 +170755530231,219,0 +170755530279,220,0 +170755530328,220,0 +170755530376,221,0 +170755530424,221,0 +170755530472,222,0 +170755530520,223,0 +170755530569,221,0 +170755530617,222,0 +170755530667,223,0 +170755530716,222,0 +170755530764,221,0 +170755530814,215,0 +170755530863,216,0 +170755530911,216,0 +170755530959,218,0 +170755531007,218,0 +170755531055,219,0 +170755531103,220,0 +170755531152,220,0 +170755531200,221,0 +170755531248,221,0 +170755531296,222,0 +170755531344,223,0 +170755531392,222,0 +170755531440,223,0 +170755531489,222,0 +170755531537,222,0 +170755531585,218,0 +170755531633,218,0 +170755531681,219,0 +170755531730,219,0 +170755531778,220,0 +170755531826,220,0 +170755531874,221,0 +170755531922,222,0 +170755531970,223,0 +170755532019,223,0 +170755532067,222,0 +170755532115,223,0 +170755532163,223,0 +170755532211,224,0 +170755532259,223,0 +170755532307,221,0 +170755532356,222,0 +170755532404,221,0 +170755532452,218,0 +170755532500,223,0 +170755532548,221,0 +170755532595,222,0 +170755532645,223,0 +170755532694,223,0 +170755532742,223,0 +170755532792,223,0 +170755532840,223,0 +170755532889,223,0 +170755532939,223,0 +170755532987,223,0 +170755533035,223,0 +170755533083,219,0 +170755533131,223,0 +170755533178,222,0 +170755533226,219,0 +170755533274,221,0 +170755533322,222,0 +170755533370,222,0 +170755533418,222,0 +170755533466,222,0 +170755533515,223,0 +170755533563,223,0 +170755533611,223,0 +170755533661,223,0 +170755533709,222,0 +170755533757,223,0 +170755533804,222,0 +170755533852,223,0 +170755533902,218,0 +170755533951,222,0 +170755533999,221,0 +170755534047,223,0 +170755534095,222,0 +170755534143,223,0 +170755534191,222,0 +170755534238,223,0 +170755534286,224,0 +170755534334,224,0 +170755534382,223,0 +170755534430,223,0 +170755534478,222,0 +170755534526,223,0 +170755534575,222,0 +170755534623,223,0 +170755534671,222,0 +170755534721,221,0 +170755534769,221,0 +170755534818,219,0 +170755534867,220,0 +170755534915,219,0 +170755534963,220,0 +170755535011,221,0 +170755535061,222,0 +170755535109,222,0 +170755535157,222,0 +170755535206,223,0 +170755535254,223,0 +170755535302,222,0 +170755535350,221,0 +170755535399,222,0 +170755535447,222,0 +170755535495,222,0 +170755535545,222,0 +170755535594,218,0 +170755535642,217,0 +170755535692,218,0 +170755535741,218,0 +170755535789,219,0 +170755535839,219,0 +170755535887,219,0 +170755535935,222,0 +170755535982,220,0 +170755536030,222,0 +170755536080,221,0 +170755536129,222,0 +170755536177,223,0 +170755536225,223,0 +170755536273,223,0 +170755536321,222,0 +170755536369,223,0 +170755536419,218,0 +170755536468,217,0 +170755536516,218,0 +170755536564,219,0 +170755536612,219,0 +170755536660,220,0 +170755536708,220,0 +170755536755,221,0 +170755536805,222,0 +170755536853,221,0 +170755536901,222,0 +170755536948,223,0 +170755536998,222,0 +170755537046,223,0 +170755537094,223,0 +170755537142,222,0 +170755537190,221,0 +170755537239,217,0 +170755537287,217,0 +170755537337,218,0 +170755537386,219,0 +170755537434,219,0 +170755537482,219,0 +170755537530,220,0 +170755537578,221,0 +170755537626,222,0 +170755537674,222,0 +170755537722,222,0 +170755537771,221,0 +170755537819,222,0 +170755537868,223,0 +170755537916,222,0 +170755537964,221,0 +170755538012,218,0 +170755538062,219,0 +170755538110,217,0 +170755538159,220,0 +170755538207,219,0 +170755538255,218,0 +170755538303,219,0 +170755538351,221,0 +170755538399,220,0 +170755538448,221,0 +170755538498,222,0 +170755538546,222,0 +170755538594,222,0 +170755538641,220,0 +170755538691,222,0 +170755538739,224,0 +170755538787,221,0 +170755538836,217,0 +170755538884,217,0 +170755538932,218,0 +170755538982,218,0 +170755539030,220,0 +170755539078,218,0 +170755539127,221,0 +170755539177,220,0 +170755539226,221,0 +170755539274,221,0 +170755539322,221,0 +170755539370,223,0 +170755539418,222,0 +170755539466,221,0 +170755539513,220,0 +170755539561,222,0 +170755539609,222,0 +170755539657,216,0 +170755539705,216,0 +170755539755,218,0 +170755539802,218,0 +170755539850,218,0 +170755539900,220,0 +170755539948,219,0 +170755539996,220,0 +170755540044,221,0 +170755540092,221,0 +170755540141,222,0 +170755540189,223,0 +170755540239,223,0 +170755540286,222,0 +170755540334,222,0 +170755540384,222,0 +170755540432,216,0 +170755540480,216,0 +170755540528,217,0 +170755540577,218,0 +170755540627,218,0 +170755540675,219,0 +170755540722,219,0 +170755540770,219,0 +170755540818,221,0 +170755540866,222,0 +170755540916,223,0 +170755540963,223,0 +170755541013,222,0 +170755541062,223,0 +170755541112,222,0 +170755541160,222,0 +170755541208,221,0 +170755541256,216,0 +170755541303,216,0 +170755541351,218,0 +170755541399,218,0 +170755541447,219,0 +170755541495,219,0 +170755541544,221,0 +170755541592,221,0 +170755541640,221,0 +170755541688,224,0 +170755541736,222,0 +170755541786,223,0 +170755541835,224,0 +170755541883,222,0 +170755541931,222,0 +170755541979,222,0 +170755542029,218,0 +170755542077,217,0 +170755542125,215,0 +170755542173,218,0 +170755542221,219,0 +170755542270,220,0 +170755542320,220,0 +170755542367,220,0 +170755542415,225,0 +170755542463,221,0 +170755542511,221,0 +170755542559,222,0 +170755542609,221,0 +170755542657,223,0 +170755542704,220,0 +170755542754,221,0 +170755542802,221,0 +170755542850,217,0 +170755542898,217,0 +170755542946,217,0 +170755542993,218,0 +170755543043,219,0 +170755543091,220,0 +170755543139,220,0 +170755543187,221,0 +170755543235,222,0 +170755543284,222,0 +170755543332,222,0 +170755543380,222,0 +170755543428,222,0 +170755543478,223,0 +170755543527,223,0 +170755543577,221,0 +170755543626,220,0 +170755543676,217,0 +170755543725,217,0 +170755543773,218,0 +170755543822,218,0 +170755543872,219,0 +170755543920,221,0 +170755543968,221,0 +170755544015,222,0 +170755544063,222,0 +170755544113,223,0 +170755544161,222,0 +170755544209,222,0 +170755544257,222,0 +170755544304,223,0 +170755544354,222,0 +170755544402,222,0 +170755544451,218,0 +170755544499,218,0 +170755544547,219,0 +170755544595,220,0 +170755544643,220,0 +170755544691,220,0 +170755544739,221,0 +170755544787,223,0 +170755544835,223,0 +170755544883,225,0 +170755544931,222,0 +170755544980,222,0 +170755545028,223,0 +170755545076,223,0 +170755545124,223,0 +170755545173,223,0 +170755545221,222,0 +170755545269,219,0 +170755545317,218,0 +170755545365,219,0 +170755545413,220,0 +170755545461,220,0 +170755545509,221,0 +170755545556,221,0 +170755545606,222,0 +170755545654,222,0 +170755545702,222,0 +170755545751,222,0 +170755545799,223,0 +170755545847,223,0 +170755545897,223,0 +170755545945,222,0 +170755545994,221,0 +170755546044,222,0 +170755546091,218,0 +170755546141,218,0 +170755546189,219,0 +170755546238,220,0 +170755546286,220,0 +170755546336,223,0 +170755546385,222,0 +170755546433,221,0 +170755546481,222,0 +170755546529,222,0 +170755546577,222,0 +170755546626,222,0 +170755546674,223,0 +170755546723,222,0 +170755546771,223,0 +170755546819,223,0 +170755546867,220,0 +170755546916,220,0 +170755546964,218,0 +170755547012,220,0 +170755547060,220,0 +170755547108,221,0 +170755547155,221,0 +170755547205,222,0 +170755547253,222,0 +170755547301,222,0 +170755547348,222,0 +170755547396,224,0 +170755547444,223,0 +170755547492,223,0 +170755547541,223,0 +170755547589,222,0 +170755547639,221,0 +170755547688,217,0 +170755547736,218,0 +170755547786,219,0 +170755547835,220,0 +170755547883,219,0 +170755547933,220,0 +170755547981,221,0 +170755548029,221,0 +170755548077,222,0 +170755548124,222,0 +170755548172,223,0 +170755548222,223,0 +170755548271,223,0 +170755548319,223,0 +170755548367,222,0 +170755548417,222,0 +170755548464,217,0 +170755548512,217,0 +170755548560,218,0 +170755548608,218,0 +170755548656,219,0 +170755548704,219,0 +170755548752,220,0 +170755548802,220,0 +170755548850,222,0 +170755548898,221,0 +170755548945,222,0 +170755548993,222,0 +170755549041,222,0 +170755549089,223,0 +170755549137,222,0 +170755549185,222,0 +170755549235,222,0 +170755549282,218,0 +170755549330,217,0 +170755549380,218,0 +170755549428,220,0 +170755549477,219,0 +170755549525,220,0 +170755549575,221,0 +170755549623,222,0 +170755549672,222,0 +170755549720,222,0 +170755549768,223,0 +170755549817,221,0 +170755549865,222,0 +170755549915,222,0 +170755549964,222,0 +170755550012,222,0 +170755550062,221,0 +170755550110,217,0 +170755550159,217,0 +170755550207,220,0 +170755550257,219,0 +170755550306,219,0 +170755550354,220,0 +170755550404,220,0 +170755550452,221,0 +170755550501,221,0 +170755550551,221,0 +170755550599,222,0 +170755550647,222,0 +170755550694,223,0 +170755550742,223,0 +170755550790,222,0 +170755550838,222,0 +170755550886,216,0 +170755550936,216,0 +170755550985,216,0 +170755551033,218,0 +170755551081,217,0 +170755551129,218,0 +170755551177,220,0 +170755551225,219,0 +170755551274,219,0 +170755551322,220,0 +170755551372,221,0 +170755551420,221,0 +170755551468,220,0 +170755551517,216,0 +170755551567,223,0 +170755551615,222,0 +170755551663,224,0 +170755551711,223,0 +170755551760,224,0 +170755551810,224,0 +170755551859,222,0 +170755551907,223,0 +170755551955,223,0 +170755552003,222,0 +170755552053,221,0 +170755552101,218,0 +170755552149,218,0 +170755552197,218,0 +170755552246,219,0 +170755552294,220,0 +170755552342,220,0 +170755552390,221,0 +170755552438,221,0 +170755552486,222,0 +170755552534,223,0 +170755552582,222,0 +170755552631,222,0 +170755552681,223,0 +170755552729,223,0 +170755552777,223,0 +170755552824,223,0 +170755552872,220,0 +170755552920,218,0 +170755552968,218,0 +170755553016,219,0 +170755553064,220,0 +170755553111,221,0 +170755553159,220,0 +170755553207,221,0 +170755553255,221,0 +170755553303,222,0 +170755553351,223,0 +170755553400,220,0 +170755553448,223,0 +170755553497,222,0 +170755553545,222,0 +170755553595,222,0 +170755553642,222,0 +170755553692,218,0 +170755553740,218,0 +170755553787,218,0 +170755553835,220,0 +170755553883,220,0 +170755553931,221,0 +170755553980,222,0 +170755554028,222,0 +170755554076,223,0 +170755554124,222,0 +170755554174,223,0 +170755554223,223,0 +170755554271,223,0 +170755554319,223,0 +170755554367,222,0 +170755554415,222,0 +170755554463,221,0 +170755554511,216,0 +170755554561,217,0 +170755554610,218,0 +170755554658,218,0 +170755554706,216,0 +170755554754,219,0 +170755554802,219,0 +170755554851,221,0 +170755554901,221,0 +170755554949,222,0 +170755554997,222,0 +170755555045,222,0 +170755555093,222,0 +170755555142,220,0 +170755555190,222,0 +170755555238,223,0 +170755555288,217,0 +170755555336,217,0 +170755555385,218,0 +170755555435,218,0 +170755555484,219,0 +170755555534,220,0 +170755555583,221,0 +170755555633,221,0 +170755555682,222,0 +170755555730,223,0 +170755555778,223,0 +170755555826,223,0 +170755555875,222,0 +170755555923,223,0 +170755555971,222,0 +170755556019,221,0 +170755556069,221,0 +170755556117,216,0 +170755556165,216,0 +170755556214,218,0 +170755556262,218,0 +170755556310,220,0 +170755556360,219,0 +170755556408,220,0 +170755556455,222,0 +170755556505,222,0 +170755556553,221,0 +170755556603,223,0 +170755556651,221,0 +170755556699,223,0 +170755556748,222,0 +170755556796,223,0 +170755556844,222,0 +170755556892,220,0 +170755556940,217,0 +170755556989,217,0 +170755557039,219,0 +170755557088,222,0 +170755557136,220,0 +170755557184,221,0 +170755557232,221,0 +170755557280,221,0 +170755557328,221,0 +170755557378,221,0 +170755557426,222,0 +170755557474,222,0 +170755557521,222,0 +170755557571,222,0 +170755557619,222,0 +170755557667,221,0 +170755557715,216,0 +170755557763,218,0 +170755557811,218,0 +170755557860,219,0 +170755557908,219,0 +170755557958,219,0 +170755558005,220,0 +170755558055,221,0 +170755558104,221,0 +170755558152,222,0 +170755558200,222,0 +170755558248,222,0 +170755558296,223,0 +170755558344,222,0 +170755558392,221,0 +170755558440,221,0 +170755558488,222,0 +170755558536,215,0 +170755558584,218,0 +170755558633,219,0 +170755558681,219,0 +170755558729,220,0 +170755558779,221,0 +170755558828,222,0 +170755558878,222,0 +170755558925,222,0 +170755558973,222,0 +170755559023,223,0 +170755559072,223,0 +170755559122,222,0 +170755559171,222,0 +170755559221,222,0 +170755559269,222,0 +170755559318,219,0 +170755559366,218,0 +170755559414,218,0 +170755559462,218,0 +170755559511,220,0 +170755559559,219,0 +170755559607,221,0 +170755559655,221,0 +170755559703,222,0 +170755559752,221,0 +170755559800,221,0 +170755559848,222,0 +170755559896,222,0 +170755559944,222,0 +170755559992,222,0 diff --git a/laser_value/0210-19.csv b/laser_value/0210-19.csv new file mode 100644 index 0000000..7374732 --- /dev/null +++ b/laser_value/0210-19.csv @@ -0,0 +1,7448 @@ +timestamp,laser_value,event +170755560042,220,0 +170755560091,223,0 +170755560139,217,0 +170755560187,217,0 +170755560237,217,0 +170755560285,219,0 +170755560332,220,0 +170755560380,219,0 +170755560430,220,0 +170755560478,221,0 +170755560525,220,0 +170755560573,221,0 +170755560621,222,0 +170755560669,221,0 +170755560717,223,0 +170755560765,222,0 +170755560812,224,0 +170755560862,223,0 +170755560911,219,0 +170755560961,217,0 +170755561009,218,0 +170755561058,219,0 +170755561106,219,0 +170755561156,220,0 +170755561204,220,0 +170755561251,220,0 +170755561301,222,0 +170755561350,221,0 +170755561400,222,0 +170755561449,222,0 +170755561497,222,0 +170755561545,222,0 +170755561593,222,0 +170755561641,222,0 +170755561689,222,0 +170755561738,218,0 +170755561786,218,0 +170755561834,218,0 +170755561882,219,0 +170755561930,220,0 +170755561978,220,0 +170755562026,221,0 +170755562075,221,0 +170755562123,222,0 +170755562171,222,0 +170755562219,223,0 +170755562267,222,0 +170755562317,222,0 +170755562366,223,0 +170755562416,222,0 +170755562464,222,0 +170755562512,221,0 +170755562560,218,0 +170755562608,218,0 +170755562656,220,0 +170755562703,219,0 +170755562751,219,0 +170755562799,221,0 +170755562847,221,0 +170755562897,222,0 +170755562944,222,0 +170755562994,221,0 +170755563042,222,0 +170755563090,223,0 +170755563139,223,0 +170755563187,222,0 +170755563235,222,0 +170755563283,222,0 +170755563331,217,0 +170755563379,218,0 +170755563427,219,0 +170755563475,220,0 +170755563523,220,0 +170755563573,220,0 +170755563621,221,0 +170755563668,221,0 +170755563716,222,0 +170755563766,222,0 +170755563815,225,0 +170755563863,223,0 +170755563911,223,0 +170755563959,223,0 +170755564007,222,0 +170755564057,223,0 +170755564104,221,0 +170755564154,218,0 +170755564203,218,0 +170755564253,218,0 +170755564301,220,0 +170755564349,221,0 +170755564398,221,0 +170755564446,221,0 +170755564494,221,0 +170755564542,222,0 +170755564590,222,0 +170755564639,223,0 +170755564687,223,0 +170755564737,222,0 +170755564786,222,0 +170755564836,222,0 +170755564884,221,0 +170755564931,217,0 +170755564979,217,0 +170755565027,219,0 +170755565077,219,0 +170755565125,219,0 +170755565173,221,0 +170755565221,220,0 +170755565269,222,0 +170755565317,222,0 +170755565364,222,0 +170755565412,223,0 +170755565460,222,0 +170755565508,222,0 +170755565556,222,0 +170755565604,223,0 +170755565652,222,0 +170755565700,221,0 +170755565748,217,0 +170755565796,217,0 +170755565844,218,0 +170755565893,218,0 +170755565941,227,0 +170755565989,220,0 +170755566037,220,0 +170755566087,220,0 +170755566136,223,0 +170755566184,223,0 +170755566232,223,0 +170755566281,223,0 +170755566329,223,0 +170755566377,222,0 +170755566425,222,0 +170755566473,221,0 +170755566521,223,0 +170755566569,218,0 +170755566617,218,0 +170755566666,218,0 +170755566716,219,0 +170755566764,219,0 +170755566813,219,0 +170755566861,221,0 +170755566911,221,0 +170755566959,221,0 +170755567007,222,0 +170755567054,222,0 +170755567102,222,0 +170755567150,222,0 +170755567198,222,0 +170755567246,222,0 +170755567294,222,0 +170755567342,221,0 +170755567391,217,0 +170755567439,218,0 +170755567487,218,0 +170755567535,219,0 +170755567583,220,0 +170755567631,220,0 +170755567679,221,0 +170755567727,221,0 +170755567774,221,0 +170755567824,222,0 +170755567873,222,0 +170755567921,222,0 +170755567969,222,0 +170755568017,221,0 +170755568065,223,0 +170755568113,222,0 +170755568160,216,0 +170755568208,216,0 +170755568258,218,0 +170755568307,215,0 +170755568355,218,0 +170755568405,219,0 +170755568454,219,0 +170755568502,220,0 +170755568550,221,0 +170755568599,222,0 +170755568649,222,0 +170755568697,221,0 +170755568746,223,0 +170755568794,222,0 +170755568842,223,0 +170755568890,222,0 +170755568938,221,0 +170755568986,217,0 +170755569034,218,0 +170755569083,218,0 +170755569133,220,0 +170755569181,220,0 +170755569229,220,0 +170755569276,220,0 +170755569324,220,0 +170755569372,222,0 +170755569422,222,0 +170755569470,223,0 +170755569519,221,0 +170755569567,223,0 +170755569615,224,0 +170755569663,222,0 +170755569711,222,0 +170755569759,219,0 +170755569807,220,0 +170755569855,219,0 +170755569903,220,0 +170755569952,220,0 +170755570000,220,0 +170755570050,221,0 +170755570099,222,0 +170755570149,219,0 +170755570198,222,0 +170755570246,223,0 +170755570296,222,0 +170755570344,222,0 +170755570393,222,0 +170755570443,223,0 +170755570492,222,0 +170755570540,221,0 +170755570590,220,0 +170755570638,220,0 +170755570685,221,0 +170755570733,222,0 +170755570783,221,0 +170755570831,220,0 +170755570880,222,0 +170755570928,223,0 +170755570976,223,0 +170755571026,223,0 +170755571074,224,0 +170755571122,224,0 +170755571169,223,0 +170755571217,223,0 +170755571265,223,0 +170755571315,222,0 +170755571363,221,0 +170755571412,220,0 +170755571460,221,0 +170755571508,221,0 +170755571556,220,0 +170755571606,221,0 +170755571654,222,0 +170755571701,221,0 +170755571751,221,0 +170755571799,222,0 +170755571847,222,0 +170755571895,221,0 +170755571943,222,0 +170755571990,223,0 +170755572038,221,0 +170755572088,223,0 +170755572136,222,0 +170755572184,218,0 +170755572233,218,0 +170755572281,218,0 +170755572330,219,0 +170755572380,219,0 +170755572428,221,0 +170755572477,220,0 +170755572525,221,0 +170755572575,222,0 +170755572623,222,0 +170755572672,222,0 +170755572720,222,0 +170755572770,223,0 +170755572817,223,0 +170755572867,222,0 +170755572915,222,0 +170755572963,221,0 +170755573011,217,0 +170755573060,216,0 +170755573108,218,0 +170755573156,220,0 +170755573206,220,0 +170755573253,220,0 +170755573301,220,0 +170755573349,221,0 +170755573397,224,0 +170755573445,222,0 +170755573495,221,0 +170755573544,222,0 +170755573594,222,0 +170755573643,222,0 +170755573692,222,0 +170755573742,222,0 +170755573790,216,0 +170755573838,217,0 +170755573886,218,0 +170755573934,218,0 +170755573982,219,0 +170755574031,219,0 +170755574079,220,0 +170755574127,220,0 +170755574175,221,0 +170755574223,221,0 +170755574271,221,0 +170755574320,223,0 +170755574368,221,0 +170755574416,224,0 +170755574464,223,0 +170755574512,221,0 +170755574560,221,0 +170755574609,217,0 +170755574659,217,0 +170755574708,218,0 +170755574756,218,0 +170755574804,219,0 +170755574854,219,0 +170755574901,219,0 +170755574951,220,0 +170755574999,221,0 +170755575048,222,0 +170755575096,222,0 +170755575146,222,0 +170755575195,223,0 +170755575243,222,0 +170755575293,222,0 +170755575340,222,0 +170755575390,221,0 +170755575438,215,0 +170755575486,217,0 +170755575535,217,0 +170755575583,218,0 +170755575631,219,0 +170755575679,219,0 +170755575727,219,0 +170755575777,220,0 +170755575824,221,0 +170755575872,221,0 +170755575920,222,0 +170755575970,222,0 +170755576018,223,0 +170755576067,222,0 +170755576117,222,0 +170755576164,222,0 +170755576212,216,0 +170755576262,216,0 +170755576310,217,0 +170755576358,220,0 +170755576406,218,0 +170755576453,218,0 +170755576501,220,0 +170755576549,220,0 +170755576597,221,0 +170755576645,220,0 +170755576693,221,0 +170755576741,222,0 +170755576789,222,0 +170755576837,223,0 +170755576885,222,0 +170755576934,223,0 +170755576982,221,0 +170755577032,215,0 +170755577080,216,0 +170755577128,216,0 +170755577176,217,0 +170755577224,218,0 +170755577271,219,0 +170755577319,219,0 +170755577367,220,0 +170755577415,220,0 +170755577465,221,0 +170755577513,221,0 +170755577562,222,0 +170755577610,224,0 +170755577659,222,0 +170755577707,222,0 +170755577755,221,0 +170755577803,216,0 +170755577851,216,0 +170755577899,216,0 +170755577947,217,0 +170755577995,218,0 +170755578044,218,0 +170755578092,219,0 +170755578140,220,0 +170755578190,220,0 +170755578237,221,0 +170755578285,222,0 +170755578335,223,0 +170755578384,221,0 +170755578432,222,0 +170755578480,222,0 +170755578528,222,0 +170755578578,222,0 +170755578627,216,0 +170755578675,216,0 +170755578724,217,0 +170755578772,218,0 +170755578820,218,0 +170755578868,220,0 +170755578916,219,0 +170755578964,220,0 +170755579012,220,0 +170755579060,221,0 +170755579108,222,0 +170755579156,222,0 +170755579205,222,0 +170755579255,222,0 +170755579304,223,0 +170755579352,225,0 +170755579400,221,0 +170755579448,217,0 +170755579496,217,0 +170755579544,218,0 +170755579592,219,0 +170755579640,219,0 +170755579688,219,0 +170755579736,219,0 +170755579783,219,0 +170755579831,224,0 +170755579881,223,0 +170755579929,222,0 +170755579977,222,0 +170755580026,222,0 +170755580074,223,0 +170755580123,222,0 +170755580171,222,0 +170755580221,218,0 +170755580269,217,0 +170755580317,218,0 +170755580366,218,0 +170755580414,219,0 +170755580462,220,0 +170755580510,219,0 +170755580558,222,0 +170755580606,220,0 +170755580654,222,0 +170755580702,223,0 +170755580750,222,0 +170755580799,223,0 +170755580848,224,0 +170755580896,222,0 +170755580944,222,0 +170755580992,221,0 +170755581040,217,0 +170755581089,220,0 +170755581137,221,0 +170755581185,220,0 +170755581233,222,0 +170755581283,222,0 +170755581332,222,0 +170755581382,223,0 +170755581430,222,0 +170755581478,223,0 +170755581526,223,0 +170755581575,223,0 +170755581623,222,0 +170755581672,222,0 +170755581720,222,0 +170755581768,223,0 +170755581816,220,0 +170755581864,221,0 +170755581912,228,0 +170755581960,222,0 +170755582008,222,0 +170755582056,222,0 +170755582104,222,0 +170755582152,223,0 +170755582200,223,0 +170755582248,223,0 +170755582296,224,0 +170755582343,222,0 +170755582391,223,0 +170755582439,222,0 +170755582489,222,0 +170755582537,222,0 +170755582585,221,0 +170755582633,220,0 +170755582682,221,0 +170755582730,222,0 +170755582780,221,0 +170755582827,222,0 +170755582875,222,0 +170755582923,222,0 +170755582971,222,0 +170755583021,222,0 +170755583069,222,0 +170755583117,223,0 +170755583164,223,0 +170755583214,223,0 +170755583262,222,0 +170755583310,223,0 +170755583359,222,0 +170755583407,222,0 +170755583457,220,0 +170755583505,220,0 +170755583553,221,0 +170755583602,220,0 +170755583650,222,0 +170755583698,222,0 +170755583746,222,0 +170755583794,223,0 +170755583843,223,0 +170755583891,222,0 +170755583941,223,0 +170755583989,222,0 +170755584037,223,0 +170755584085,222,0 +170755584134,221,0 +170755584182,223,0 +170755584230,221,0 +170755584279,219,0 +170755584327,218,0 +170755584375,219,0 +170755584423,221,0 +170755584471,221,0 +170755584521,221,0 +170755584570,221,0 +170755584620,222,0 +170755584668,222,0 +170755584717,222,0 +170755584767,223,0 +170755584815,223,0 +170755584863,223,0 +170755584912,222,0 +170755584960,222,0 +170755585008,222,0 +170755585057,218,0 +170755585107,217,0 +170755585155,219,0 +170755585203,219,0 +170755585251,220,0 +170755585300,221,0 +170755585349,222,0 +170755585397,222,0 +170755585445,222,0 +170755585493,222,0 +170755585541,222,0 +170755585591,224,0 +170755585639,222,0 +170755585688,223,0 +170755585736,222,0 +170755585784,222,0 +170755585834,221,0 +170755585883,217,0 +170755585933,217,0 +170755585982,218,0 +170755586032,219,0 +170755586079,219,0 +170755586129,220,0 +170755586177,221,0 +170755586226,220,0 +170755586276,221,0 +170755586325,222,0 +170755586375,222,0 +170755586423,222,0 +170755586471,222,0 +170755586520,222,0 +170755586568,222,0 +170755586616,221,0 +170755586664,216,0 +170755586712,217,0 +170755586760,219,0 +170755586809,218,0 +170755586859,219,0 +170755586907,219,0 +170755586956,220,0 +170755587004,220,0 +170755587052,222,0 +170755587100,222,0 +170755587148,222,0 +170755587196,222,0 +170755587244,222,0 +170755587293,222,0 +170755587341,223,0 +170755587389,222,0 +170755587437,221,0 +170755587487,216,0 +170755587536,217,0 +170755587584,217,0 +170755587632,218,0 +170755587680,219,0 +170755587729,225,0 +170755587777,221,0 +170755587827,220,0 +170755587875,217,0 +170755587923,220,0 +170755587971,224,0 +170755588020,223,0 +170755588068,223,0 +170755588116,222,0 +170755588164,222,0 +170755588212,221,0 +170755588261,217,0 +170755588309,216,0 +170755588359,217,0 +170755588407,217,0 +170755588457,218,0 +170755588504,218,0 +170755588552,219,0 +170755588600,220,0 +170755588648,219,0 +170755588698,222,0 +170755588746,220,0 +170755588795,222,0 +170755588845,221,0 +170755588894,222,0 +170755588944,223,0 +170755588992,222,0 +170755589040,221,0 +170755589087,216,0 +170755589137,216,0 +170755589185,217,0 +170755589233,217,0 +170755589281,218,0 +170755589330,219,0 +170755589378,219,0 +170755589426,221,0 +170755589474,222,0 +170755589522,221,0 +170755589572,221,0 +170755589621,222,0 +170755589669,223,0 +170755589717,222,0 +170755589767,222,0 +170755589815,222,0 +170755589864,217,0 +170755589914,215,0 +170755589962,216,0 +170755590010,218,0 +170755590057,219,0 +170755590107,220,0 +170755590156,219,0 +170755590204,219,0 +170755590254,220,0 +170755590302,221,0 +170755590351,222,0 +170755590401,222,0 +170755590450,223,0 +170755590500,222,0 +170755590549,223,0 +170755590599,221,0 +170755590647,222,0 +170755590695,217,0 +170755590744,217,0 +170755590792,217,0 +170755590842,219,0 +170755590889,218,0 +170755590937,219,0 +170755590985,220,0 +170755591033,221,0 +170755591081,220,0 +170755591129,221,0 +170755591178,221,0 +170755591226,222,0 +170755591274,223,0 +170755591322,223,0 +170755591370,222,0 +170755591418,222,0 +170755591467,220,0 +170755591515,217,0 +170755591563,217,0 +170755591611,218,0 +170755591659,219,0 +170755591708,220,0 +170755591756,220,0 +170755591804,221,0 +170755591854,221,0 +170755591902,222,0 +170755591950,222,0 +170755591998,222,0 +170755592047,223,0 +170755592095,222,0 +170755592144,222,0 +170755592192,222,0 +170755592242,222,0 +170755592291,217,0 +170755592339,217,0 +170755592387,217,0 +170755592435,219,0 +170755592483,219,0 +170755592532,219,0 +170755592582,220,0 +170755592630,221,0 +170755592679,222,0 +170755592727,222,0 +170755592775,223,0 +170755592825,222,0 +170755592873,222,0 +170755592921,223,0 +170755592970,222,0 +170755593018,223,0 +170755593066,221,0 +170755593114,217,0 +170755593162,221,0 +170755593211,218,0 +170755593261,219,0 +170755593309,222,0 +170755593357,221,0 +170755593405,222,0 +170755593453,222,0 +170755593502,223,0 +170755593552,222,0 +170755593599,224,0 +170755593647,223,0 +170755593697,223,0 +170755593745,223,0 +170755593793,222,0 +170755593841,221,0 +170755593890,219,0 +170755593940,221,0 +170755593987,220,0 +170755594035,221,0 +170755594083,222,0 +170755594131,223,0 +170755594179,222,0 +170755594227,223,0 +170755594275,222,0 +170755594323,222,0 +170755594371,222,0 +170755594419,223,0 +170755594467,222,0 +170755594515,221,0 +170755594562,222,0 +170755594612,220,0 +170755594660,222,0 +170755594708,218,0 +170755594757,218,0 +170755594805,219,0 +170755594853,219,0 +170755594901,220,0 +170755594950,222,0 +170755594998,221,0 +170755595046,222,0 +170755595094,222,0 +170755595142,222,0 +170755595190,218,0 +170755595239,223,0 +170755595287,222,0 +170755595335,223,0 +170755595383,222,0 +170755595431,222,0 +170755595480,222,0 +170755595528,219,0 +170755595578,220,0 +170755595627,220,0 +170755595675,220,0 +170755595723,222,0 +170755595771,221,0 +170755595819,222,0 +170755595867,222,0 +170755595915,222,0 +170755595963,222,0 +170755596010,223,0 +170755596058,222,0 +170755596106,222,0 +170755596154,222,0 +170755596204,223,0 +170755596253,223,0 +170755596301,221,0 +170755596351,218,0 +170755596399,219,0 +170755596447,220,0 +170755596496,219,0 +170755596544,220,0 +170755596594,220,0 +170755596642,222,0 +170755596691,222,0 +170755596739,222,0 +170755596787,223,0 +170755596835,222,0 +170755596884,223,0 +170755596932,223,0 +170755596982,222,0 +170755597030,222,0 +170755597079,220,0 +170755597129,218,0 +170755597177,218,0 +170755597225,219,0 +170755597273,218,0 +170755597320,219,0 +170755597368,220,0 +170755597416,221,0 +170755597464,221,0 +170755597512,222,0 +170755597562,222,0 +170755597610,222,0 +170755597659,223,0 +170755597707,224,0 +170755597757,223,0 +170755597805,223,0 +170755597852,222,0 +170755597900,222,0 +170755597948,217,0 +170755597996,218,0 +170755598046,219,0 +170755598093,219,0 +170755598141,221,0 +170755598189,221,0 +170755598237,220,0 +170755598285,222,0 +170755598333,221,0 +170755598381,223,0 +170755598429,223,0 +170755598476,223,0 +170755598524,223,0 +170755598572,223,0 +170755598620,222,0 +170755598670,221,0 +170755598718,218,0 +170755598766,217,0 +170755598814,218,0 +170755598863,219,0 +170755598911,219,0 +170755598959,219,0 +170755599008,220,0 +170755599056,221,0 +170755599104,221,0 +170755599152,222,0 +170755599202,222,0 +170755599250,223,0 +170755599298,224,0 +170755599346,222,0 +170755599394,224,0 +170755599442,223,0 +170755599490,221,0 +170755599537,218,0 +170755599585,218,0 +170755599635,218,0 +170755599683,219,0 +170755599732,218,0 +170755599780,221,0 +170755599830,221,0 +170755599878,221,0 +170755599926,221,0 +170755599973,222,0 +170755600021,222,0 +170755600069,223,0 +170755600117,223,0 +170755600167,223,0 +170755600216,222,0 +170755600264,222,0 +170755600314,220,0 +170755600362,218,0 +170755600411,219,0 +170755600459,219,0 +170755600507,220,0 +170755600556,220,0 +170755600604,220,0 +170755600652,221,0 +170755600700,222,0 +170755600748,221,0 +170755600796,222,0 +170755600844,222,0 +170755600893,222,0 +170755600941,222,0 +170755600991,222,0 +170755601038,222,0 +170755601088,221,0 +170755601137,217,0 +170755601187,217,0 +170755601236,218,0 +170755601284,218,0 +170755601332,219,0 +170755601382,220,0 +170755601430,220,0 +170755601479,220,0 +170755601527,222,0 +170755601575,222,0 +170755601623,223,0 +170755601672,223,0 +170755601720,222,0 +170755601768,222,0 +170755601816,223,0 +170755601864,222,0 +170755601912,227,0 +170755601960,217,0 +170755602010,218,0 +170755602057,218,0 +170755602107,220,0 +170755602155,219,0 +170755602203,220,0 +170755602251,221,0 +170755602299,223,0 +170755602347,222,0 +170755602395,223,0 +170755602444,222,0 +170755602492,223,0 +170755602540,222,0 +170755602588,223,0 +170755602636,222,0 +170755602684,222,0 +170755602732,221,0 +170755602780,217,0 +170755602829,218,0 +170755602877,218,0 +170755602925,220,0 +170755602973,219,0 +170755603021,220,0 +170755603069,220,0 +170755603118,221,0 +170755603168,223,0 +170755603216,222,0 +170755603264,223,0 +170755603312,222,0 +170755603360,223,0 +170755603407,222,0 +170755603455,222,0 +170755603503,222,0 +170755603551,218,0 +170755603601,217,0 +170755603649,218,0 +170755603696,218,0 +170755603744,219,0 +170755603794,219,0 +170755603842,221,0 +170755603890,220,0 +170755603938,220,0 +170755603987,221,0 +170755604035,223,0 +170755604085,222,0 +170755604134,222,0 +170755604182,222,0 +170755604230,222,0 +170755604278,222,0 +170755604326,219,0 +170755604374,216,0 +170755604422,217,0 +170755604469,218,0 +170755604519,217,0 +170755604567,218,0 +170755604615,219,0 +170755604664,220,0 +170755604714,220,0 +170755604762,221,0 +170755604810,222,0 +170755604857,222,0 +170755604905,223,0 +170755604953,222,0 +170755605001,222,0 +170755605049,221,0 +170755605097,221,0 +170755605144,217,0 +170755605192,217,0 +170755605240,217,0 +170755605288,218,0 +170755605336,218,0 +170755605383,220,0 +170755605431,219,0 +170755605481,220,0 +170755605529,222,0 +170755605576,221,0 +170755605624,222,0 +170755605672,222,0 +170755605720,222,0 +170755605768,223,0 +170755605816,222,0 +170755605864,222,0 +170755605911,221,0 +170755605959,216,0 +170755606007,218,0 +170755606055,218,0 +170755606103,216,0 +170755606151,219,0 +170755606199,219,0 +170755606246,221,0 +170755606294,221,0 +170755606342,221,0 +170755606390,223,0 +170755606440,222,0 +170755606489,222,0 +170755606537,222,0 +170755606585,222,0 +170755606632,222,0 +170755606682,221,0 +170755606730,220,0 +170755606778,217,0 +170755606825,218,0 +170755606873,218,0 +170755606921,219,0 +170755606969,220,0 +170755607017,220,0 +170755607065,221,0 +170755607113,221,0 +170755607160,222,0 +170755607208,222,0 +170755607256,222,0 +170755607304,223,0 +170755607353,223,0 +170755607403,223,0 +170755607451,222,0 +170755607498,221,0 +170755607546,218,0 +170755607594,218,0 +170755607644,218,0 +170755607692,219,0 +170755607739,219,0 +170755607787,220,0 +170755607835,220,0 +170755607883,222,0 +170755607931,220,0 +170755607979,221,0 +170755608026,222,0 +170755608074,222,0 +170755608124,223,0 +170755608172,222,0 +170755608221,223,0 +170755608269,222,0 +170755608317,222,0 +170755608367,218,0 +170755608415,218,0 +170755608463,218,0 +170755608511,219,0 +170755608559,219,0 +170755608608,221,0 +170755608658,221,0 +170755608707,221,0 +170755608755,221,0 +170755608803,222,0 +170755608851,222,0 +170755608900,222,0 +170755608948,224,0 +170755608998,224,0 +170755609046,222,0 +170755609094,222,0 +170755609142,217,0 +170755609191,217,0 +170755609241,218,0 +170755609289,218,0 +170755609336,219,0 +170755609384,219,0 +170755609432,220,0 +170755609480,220,0 +170755609530,221,0 +170755609578,221,0 +170755609627,222,0 +170755609677,223,0 +170755609726,223,0 +170755609774,223,0 +170755609822,219,0 +170755609872,221,0 +170755609920,221,0 +170755609968,218,0 +170755610016,218,0 +170755610064,218,0 +170755610111,219,0 +170755610159,219,0 +170755610207,219,0 +170755610257,220,0 +170755610306,221,0 +170755610354,221,0 +170755610402,221,0 +170755610450,222,0 +170755610498,223,0 +170755610546,221,0 +170755610594,222,0 +170755610642,222,0 +170755610690,222,0 +170755610738,217,0 +170755610786,217,0 +170755610835,218,0 +170755610883,219,0 +170755610931,219,0 +170755610979,220,0 +170755611028,221,0 +170755611076,221,0 +170755611126,220,0 +170755611174,222,0 +170755611222,222,0 +170755611270,224,0 +170755611318,223,0 +170755611366,223,0 +170755611414,222,0 +170755611463,222,0 +170755611511,222,0 +170755611560,219,0 +170755611608,221,0 +170755611656,219,0 +170755611704,220,0 +170755611752,220,0 +170755611800,220,0 +170755611850,222,0 +170755611898,220,0 +170755611946,223,0 +170755611994,222,0 +170755612043,221,0 +170755612091,222,0 +170755612141,223,0 +170755612190,222,0 +170755612238,222,0 +170755612288,222,0 +170755612335,221,0 +170755612383,218,0 +170755612433,219,0 +170755612481,220,0 +170755612529,220,0 +170755612577,222,0 +170755612625,221,0 +170755612672,222,0 +170755612720,222,0 +170755612768,222,0 +170755612816,224,0 +170755612864,222,0 +170755612912,221,0 +170755612961,222,0 +170755613009,222,0 +170755613057,223,0 +170755613107,221,0 +170755613155,220,0 +170755613204,219,0 +170755613254,220,0 +170755613302,220,0 +170755613351,222,0 +170755613399,222,0 +170755613447,221,0 +170755613495,221,0 +170755613545,222,0 +170755613593,222,0 +170755613642,222,0 +170755613692,223,0 +170755613740,224,0 +170755613788,223,0 +170755613835,222,0 +170755613885,221,0 +170755613934,219,0 +170755613982,218,0 +170755614030,219,0 +170755614078,221,0 +170755614126,221,0 +170755614176,220,0 +170755614225,221,0 +170755614273,222,0 +170755614323,222,0 +170755614371,222,0 +170755614419,223,0 +170755614467,223,0 +170755614516,225,0 +170755614566,222,0 +170755614615,223,0 +170755614665,222,0 +170755614714,221,0 +170755614762,218,0 +170755614810,218,0 +170755614858,220,0 +170755614906,220,0 +170755614954,220,0 +170755615002,221,0 +170755615051,222,0 +170755615099,222,0 +170755615147,222,0 +170755615197,222,0 +170755615245,222,0 +170755615294,222,0 +170755615342,223,0 +170755615390,222,0 +170755615439,222,0 +170755615487,221,0 +170755615537,220,0 +170755615586,217,0 +170755615636,217,0 +170755615685,218,0 +170755615734,218,0 +170755615784,219,0 +170755615832,219,0 +170755615881,220,0 +170755615929,221,0 +170755615979,221,0 +170755616027,221,0 +170755616077,222,0 +170755616126,221,0 +170755616174,222,0 +170755616222,222,0 +170755616270,222,0 +170755616319,221,0 +170755616367,216,0 +170755616416,216,0 +170755616464,217,0 +170755616512,218,0 +170755616562,217,0 +170755616611,218,0 +170755616659,219,0 +170755616707,219,0 +170755616755,220,0 +170755616803,221,0 +170755616850,221,0 +170755616898,221,0 +170755616946,221,0 +170755616994,222,0 +170755617042,222,0 +170755617089,222,0 +170755617137,216,0 +170755617185,216,0 +170755617233,217,0 +170755617281,216,0 +170755617329,218,0 +170755617377,218,0 +170755617426,219,0 +170755617474,219,0 +170755617522,221,0 +170755617571,220,0 +170755617619,222,0 +170755617667,221,0 +170755617715,222,0 +170755617763,223,0 +170755617810,222,0 +170755617860,222,0 +170755617908,222,0 +170755617956,223,0 +170755618003,215,0 +170755618051,218,0 +170755618099,219,0 +170755618147,219,0 +170755618195,220,0 +170755618243,221,0 +170755618291,221,0 +170755618340,222,0 +170755618388,222,0 +170755618436,222,0 +170755618484,221,0 +170755618532,222,0 +170755618580,222,0 +170755618628,222,0 +170755618678,222,0 +170755618725,221,0 +170755618775,216,0 +170755618823,219,0 +170755618871,220,0 +170755618918,221,0 +170755618966,221,0 +170755619014,220,0 +170755619063,220,0 +170755619111,221,0 +170755619159,222,0 +170755619209,222,0 +170755619258,222,0 +170755619306,222,0 +170755619354,221,0 +170755619403,222,0 +170755619451,222,0 +170755619499,221,0 +170755619547,217,0 +170755619597,220,0 +170755619644,220,0 +170755619692,220,0 +170755619740,220,0 +170755619788,221,0 +170755619836,222,0 +170755619884,222,0 +170755619932,221,0 +170755619979,222,0 +170755620027,222,0 +170755620075,222,0 +170755620123,223,0 +170755620171,222,0 +170755620219,222,0 +170755620267,222,0 +170755620314,219,0 +170755620364,219,0 +170755620412,219,0 +170755620459,219,0 +170755620507,219,0 +170755620555,219,0 +170755620603,220,0 +170755620651,222,0 +170755620700,221,0 +170755620750,221,0 +170755620798,222,0 +170755620845,222,0 +170755620893,222,0 +170755620941,221,0 +170755620989,221,0 +170755621037,222,0 +170755621085,221,0 +170755621133,220,0 +170755621181,217,0 +170755621230,218,0 +170755621278,219,0 +170755621326,219,0 +170755621376,220,0 +170755621425,219,0 +170755621473,221,0 +170755621521,221,0 +170755621569,221,0 +170755621617,221,0 +170755621665,222,0 +170755621713,222,0 +170755621761,222,0 +170755621808,222,0 +170755621856,224,0 +170755621904,221,0 +170755621952,217,0 +170755622000,217,0 +170755622048,217,0 +170755622096,218,0 +170755622144,218,0 +170755622192,219,0 +170755622241,220,0 +170755622289,220,0 +170755622338,221,0 +170755622386,222,0 +170755622434,222,0 +170755622482,222,0 +170755622530,222,0 +170755622578,222,0 +170755622626,221,0 +170755622675,222,0 +170755622723,220,0 +170755622771,216,0 +170755622819,217,0 +170755622869,218,0 +170755622918,219,0 +170755622966,218,0 +170755623016,220,0 +170755623065,219,0 +170755623115,220,0 +170755623163,220,0 +170755623212,222,0 +170755623262,221,0 +170755623310,221,0 +170755623359,222,0 +170755623409,222,0 +170755623457,222,0 +170755623506,221,0 +170755623554,215,0 +170755623602,216,0 +170755623652,217,0 +170755623701,217,0 +170755623751,216,0 +170755623798,218,0 +170755623846,218,0 +170755623894,220,0 +170755623942,220,0 +170755623990,221,0 +170755624038,221,0 +170755624086,222,0 +170755624134,223,0 +170755624182,221,0 +170755624230,222,0 +170755624278,222,0 +170755624327,221,0 +170755624377,216,0 +170755624425,217,0 +170755624473,217,0 +170755624522,218,0 +170755624570,218,0 +170755624620,219,0 +170755624668,220,0 +170755624715,220,0 +170755624765,221,0 +170755624813,221,0 +170755624861,222,0 +170755624910,222,0 +170755624958,223,0 +170755625008,222,0 +170755625056,222,0 +170755625104,221,0 +170755625151,217,0 +170755625201,217,0 +170755625249,217,0 +170755625297,218,0 +170755625346,218,0 +170755625394,219,0 +170755625444,219,0 +170755625492,220,0 +170755625540,219,0 +170755625588,221,0 +170755625637,221,0 +170755625685,222,0 +170755625734,222,0 +170755625782,222,0 +170755625832,222,0 +170755625881,222,0 +170755625929,220,0 +170755625979,216,0 +170755626027,217,0 +170755626075,217,0 +170755626123,218,0 +170755626170,219,0 +170755626220,218,0 +170755626269,219,0 +170755626317,220,0 +170755626367,220,0 +170755626416,222,0 +170755626466,220,0 +170755626515,220,0 +170755626563,221,0 +170755626613,222,0 +170755626660,222,0 +170755626708,221,0 +170755626756,216,0 +170755626806,216,0 +170755626854,216,0 +170755626903,217,0 +170755626951,217,0 +170755626999,218,0 +170755627047,219,0 +170755627097,219,0 +170755627145,219,0 +170755627193,220,0 +170755627240,221,0 +170755627288,221,0 +170755627336,221,0 +170755627384,221,0 +170755627432,222,0 +170755627480,222,0 +170755627530,220,0 +170755627578,215,0 +170755627625,217,0 +170755627675,216,0 +170755627723,217,0 +170755627771,218,0 +170755627819,218,0 +170755627867,219,0 +170755627916,218,0 +170755627964,220,0 +170755628014,220,0 +170755628062,221,0 +170755628111,222,0 +170755628159,221,0 +170755628207,222,0 +170755628256,221,0 +170755628304,221,0 +170755628352,216,0 +170755628400,216,0 +170755628449,217,0 +170755628497,217,0 +170755628545,218,0 +170755628593,219,0 +170755628641,218,0 +170755628689,219,0 +170755628736,220,0 +170755628784,220,0 +170755628832,221,0 +170755628880,221,0 +170755628927,221,0 +170755628975,222,0 +170755629023,221,0 +170755629071,221,0 +170755629119,221,0 +170755629166,217,0 +170755629214,216,0 +170755629262,217,0 +170755629310,217,0 +170755629358,218,0 +170755629406,219,0 +170755629454,220,0 +170755629501,221,0 +170755629549,221,0 +170755629597,221,0 +170755629645,221,0 +170755629693,222,0 +170755629741,222,0 +170755629790,223,0 +170755629838,222,0 +170755629886,222,0 +170755629936,221,0 +170755629985,219,0 +170755630033,221,0 +170755630081,220,0 +170755630131,221,0 +170755630179,222,0 +170755630227,221,0 +170755630275,222,0 +170755630323,223,0 +170755630371,224,0 +170755630420,223,0 +170755630468,224,0 +170755630516,223,0 +170755630564,222,0 +170755630613,223,0 +170755630663,222,0 +170755630711,223,0 +170755630759,223,0 +170755630807,220,0 +170755630856,222,0 +170755630904,223,0 +170755630952,225,0 +170755631002,223,0 +170755631049,223,0 +170755631099,223,0 +170755631147,222,0 +170755631195,222,0 +170755631244,222,0 +170755631292,222,0 +170755631340,224,0 +170755631388,223,0 +170755631436,222,0 +170755631484,222,0 +170755631532,223,0 +170755631582,222,0 +170755631631,221,0 +170755631679,222,0 +170755631727,222,0 +170755631775,223,0 +170755631823,222,0 +170755631870,222,0 +170755631918,222,0 +170755631968,222,0 +170755632016,223,0 +170755632065,223,0 +170755632113,222,0 +170755632161,222,0 +170755632209,222,0 +170755632257,222,0 +170755632305,221,0 +170755632355,220,0 +170755632404,221,0 +170755632452,221,0 +170755632500,221,0 +170755632550,222,0 +170755632597,222,0 +170755632647,222,0 +170755632695,223,0 +170755632743,223,0 +170755632791,222,0 +170755632839,223,0 +170755632887,224,0 +170755632936,222,0 +170755632986,222,0 +170755633035,222,0 +170755633084,222,0 +170755633132,221,0 +170755633182,219,0 +170755633230,219,0 +170755633278,219,0 +170755633326,220,0 +170755633375,221,0 +170755633423,221,0 +170755633471,221,0 +170755633519,222,0 +170755633567,222,0 +170755633617,222,0 +170755633665,221,0 +170755633712,224,0 +170755633762,223,0 +170755633810,223,0 +170755633858,222,0 +170755633906,222,0 +170755633954,217,0 +170755634003,217,0 +170755634051,217,0 +170755634101,218,0 +170755634150,218,0 +170755634198,220,0 +170755634247,220,0 +170755634295,220,0 +170755634343,220,0 +170755634393,220,0 +170755634440,220,0 +170755634488,222,0 +170755634536,222,0 +170755634584,222,0 +170755634634,221,0 +170755634682,222,0 +170755634729,221,0 +170755634779,215,0 +170755634827,216,0 +170755634877,217,0 +170755634925,217,0 +170755634972,218,0 +170755635020,218,0 +170755635070,220,0 +170755635118,219,0 +170755635166,221,0 +170755635214,220,0 +170755635263,222,0 +170755635311,222,0 +170755635359,221,0 +170755635409,222,0 +170755635458,222,0 +170755635506,222,0 +170755635554,215,0 +170755635604,215,0 +170755635653,216,0 +170755635703,217,0 +170755635751,217,0 +170755635799,218,0 +170755635847,220,0 +170755635896,219,0 +170755635946,222,0 +170755635994,222,0 +170755636042,221,0 +170755636090,221,0 +170755636139,222,0 +170755636189,222,0 +170755636237,222,0 +170755636285,221,0 +170755636333,220,0 +170755636381,216,0 +170755636430,217,0 +170755636478,216,0 +170755636527,218,0 +170755636577,218,0 +170755636626,219,0 +170755636676,219,0 +170755636724,219,0 +170755636772,220,0 +170755636820,220,0 +170755636868,221,0 +170755636917,222,0 +170755636967,222,0 +170755637016,222,0 +170755637064,221,0 +170755637112,221,0 +170755637160,216,0 +170755637208,217,0 +170755637257,217,0 +170755637305,217,0 +170755637353,218,0 +170755637401,219,0 +170755637449,219,0 +170755637497,220,0 +170755637547,219,0 +170755637595,220,0 +170755637644,222,0 +170755637692,222,0 +170755637740,223,0 +170755637788,222,0 +170755637836,222,0 +170755637884,222,0 +170755637932,220,0 +170755637980,215,0 +170755638029,216,0 +170755638079,216,0 +170755638128,217,0 +170755638178,217,0 +170755638226,218,0 +170755638274,219,0 +170755638322,218,0 +170755638370,218,0 +170755638419,220,0 +170755638469,220,0 +170755638518,221,0 +170755638566,222,0 +170755638616,222,0 +170755638664,221,0 +170755638712,221,0 +170755638761,216,0 +170755638811,216,0 +170755638859,217,0 +170755638906,217,0 +170755638954,219,0 +170755639002,219,0 +170755639050,219,0 +170755639100,220,0 +170755639149,223,0 +170755639197,221,0 +170755639245,221,0 +170755639293,222,0 +170755639341,223,0 +170755639389,222,0 +170755639437,221,0 +170755639486,222,0 +170755639534,222,0 +170755639582,217,0 +170755639632,217,0 +170755639679,218,0 +170755639729,218,0 +170755639777,219,0 +170755639825,219,0 +170755639873,220,0 +170755639921,220,0 +170755639969,220,0 +170755640016,222,0 +170755640064,222,0 +170755640112,222,0 +170755640162,222,0 +170755640210,222,0 +170755640259,222,0 +170755640307,221,0 +170755640356,217,0 +170755640406,216,0 +170755640455,217,0 +170755640503,218,0 +170755640553,217,0 +170755640601,219,0 +170755640650,219,0 +170755640698,220,0 +170755640746,220,0 +170755640794,221,0 +170755640844,221,0 +170755640891,221,0 +170755640941,222,0 +170755640990,222,0 +170755641040,222,0 +170755641088,221,0 +170755641137,220,0 +170755641187,217,0 +170755641234,216,0 +170755641284,218,0 +170755641332,218,0 +170755641381,219,0 +170755641429,219,0 +170755641477,220,0 +170755641525,220,0 +170755641573,221,0 +170755641621,222,0 +170755641671,222,0 +170755641720,222,0 +170755641768,222,0 +170755641816,222,0 +170755641864,222,0 +170755641912,221,0 +170755641960,218,0 +170755642009,218,0 +170755642059,219,0 +170755642108,220,0 +170755642156,221,0 +170755642204,221,0 +170755642252,220,0 +170755642300,221,0 +170755642350,222,0 +170755642399,222,0 +170755642447,223,0 +170755642495,222,0 +170755642544,223,0 +170755642592,223,0 +170755642642,222,0 +170755642690,222,0 +170755642739,218,0 +170755642789,218,0 +170755642838,221,0 +170755642886,219,0 +170755642934,220,0 +170755642982,220,0 +170755643032,221,0 +170755643080,224,0 +170755643128,223,0 +170755643176,223,0 +170755643224,226,0 +170755643272,222,0 +170755643320,222,0 +170755643369,223,0 +170755643417,222,0 +170755643465,222,0 +170755643513,221,0 +170755643562,217,0 +170755643610,218,0 +170755643660,220,0 +170755643708,220,0 +170755643756,220,0 +170755643803,220,0 +170755643851,220,0 +170755643899,221,0 +170755643947,221,0 +170755643997,222,0 +170755644046,222,0 +170755644094,222,0 +170755644142,222,0 +170755644190,222,0 +170755644238,221,0 +170755644287,221,0 +170755644335,221,0 +170755644383,219,0 +170755644431,219,0 +170755644479,220,0 +170755644528,221,0 +170755644578,221,0 +170755644626,221,0 +170755644674,222,0 +170755644722,222,0 +170755644771,223,0 +170755644819,222,0 +170755644867,223,0 +170755644916,222,0 +170755644966,222,0 +170755645014,223,0 +170755645062,221,0 +170755645111,221,0 +170755645161,220,0 +170755645209,218,0 +170755645257,220,0 +170755645306,220,0 +170755645354,220,0 +170755645402,221,0 +170755645452,221,0 +170755645500,221,0 +170755645547,221,0 +170755645597,223,0 +170755645646,222,0 +170755645694,222,0 +170755645742,222,0 +170755645792,222,0 +170755645840,222,0 +170755645889,221,0 +170755645937,218,0 +170755645987,218,0 +170755646035,220,0 +170755646082,219,0 +170755646132,220,0 +170755646181,220,0 +170755646231,221,0 +170755646279,222,0 +170755646327,221,0 +170755646376,223,0 +170755646424,222,0 +170755646474,222,0 +170755646521,222,0 +170755646569,223,0 +170755646617,223,0 +170755646667,221,0 +170755646715,221,0 +170755646763,217,0 +170755646811,218,0 +170755646859,218,0 +170755646906,219,0 +170755646956,219,0 +170755647004,219,0 +170755647052,221,0 +170755647099,221,0 +170755647149,221,0 +170755647197,222,0 +170755647245,222,0 +170755647294,223,0 +170755647342,222,0 +170755647392,222,0 +170755647440,221,0 +170755647488,222,0 +170755647537,221,0 +170755647587,217,0 +170755647636,218,0 +170755647686,218,0 +170755647735,219,0 +170755647785,220,0 +170755647833,219,0 +170755647880,219,0 +170755647928,221,0 +170755647976,221,0 +170755648024,222,0 +170755648072,221,0 +170755648122,222,0 +170755648171,224,0 +170755648219,222,0 +170755648268,222,0 +170755648316,220,0 +170755648364,217,0 +170755648414,218,0 +170755648462,218,0 +170755648510,218,0 +170755648558,219,0 +170755648606,219,0 +170755648655,220,0 +170755648703,221,0 +170755648751,221,0 +170755648799,222,0 +170755648847,222,0 +170755648895,222,0 +170755648944,222,0 +170755648994,222,0 +170755649043,222,0 +170755649091,220,0 +170755649139,217,0 +170755649189,217,0 +170755649236,218,0 +170755649284,219,0 +170755649332,220,0 +170755649380,219,0 +170755649430,220,0 +170755649478,220,0 +170755649526,221,0 +170755649573,221,0 +170755649621,222,0 +170755649671,221,0 +170755649719,222,0 +170755649767,222,0 +170755649814,222,0 +170755649862,221,0 +170755649910,221,0 +170755649958,218,0 +170755650007,218,0 +170755650056,218,0 +170755650104,219,0 +170755650152,219,0 +170755650200,220,0 +170755650249,220,0 +170755650297,220,0 +170755650345,221,0 +170755650393,222,0 +170755650441,222,0 +170755650489,222,0 +170755650537,222,0 +170755650586,223,0 +170755650636,222,0 +170755650685,222,0 +170755650733,220,0 +170755650781,217,0 +170755650831,218,0 +170755650879,218,0 +170755650927,219,0 +170755650974,220,0 +170755651024,221,0 +170755651072,220,0 +170755651120,217,0 +170755651167,223,0 +170755651215,223,0 +170755651263,222,0 +170755651311,223,0 +170755651359,223,0 +170755651406,222,0 +170755651454,221,0 +170755651502,221,0 +170755651552,218,0 +170755651600,218,0 +170755651649,218,0 +170755651699,219,0 +170755651746,220,0 +170755651796,220,0 +170755651844,222,0 +170755651892,222,0 +170755651940,221,0 +170755651989,222,0 +170755652037,222,0 +170755652085,221,0 +170755652132,222,0 +170755652180,221,0 +170755652228,222,0 +170755652276,222,0 +170755652324,221,0 +170755652373,217,0 +170755652421,217,0 +170755652471,218,0 +170755652518,219,0 +170755652566,219,0 +170755652616,220,0 +170755652664,221,0 +170755652711,221,0 +170755652761,223,0 +170755652809,222,0 +170755652857,222,0 +170755652904,223,0 +170755652952,222,0 +170755653000,221,0 +170755653048,222,0 +170755653096,221,0 +170755653144,217,0 +170755653192,217,0 +170755653241,218,0 +170755653289,218,0 +170755653337,219,0 +170755653386,215,0 +170755653434,219,0 +170755653484,221,0 +170755653531,221,0 +170755653579,222,0 +170755653627,221,0 +170755653675,221,0 +170755653723,221,0 +170755653771,221,0 +170755653818,221,0 +170755653868,221,0 +170755653916,221,0 +170755653964,217,0 +170755654012,217,0 +170755654060,217,0 +170755654108,218,0 +170755654156,218,0 +170755654203,219,0 +170755654251,221,0 +170755654299,220,0 +170755654347,221,0 +170755654395,221,0 +170755654443,221,0 +170755654491,222,0 +170755654538,222,0 +170755654586,223,0 +170755654636,222,0 +170755654684,221,0 +170755654731,219,0 +170755654779,215,0 +170755654827,218,0 +170755654875,217,0 +170755654923,218,0 +170755654971,219,0 +170755655020,221,0 +170755655068,220,0 +170755655116,221,0 +170755655164,222,0 +170755655212,224,0 +170755655259,222,0 +170755655307,222,0 +170755655357,223,0 +170755655404,222,0 +170755655452,222,0 +170755655500,221,0 +170755655548,217,0 +170755655596,217,0 +170755655644,220,0 +170755655693,219,0 +170755655741,219,0 +170755655791,220,0 +170755655839,219,0 +170755655887,220,0 +170755655935,221,0 +170755655984,222,0 +170755656032,223,0 +170755656080,223,0 +170755656128,222,0 +170755656176,222,0 +170755656224,221,0 +170755656271,221,0 +170755656319,220,0 +170755656367,218,0 +170755656415,218,0 +170755656463,219,0 +170755656510,219,0 +170755656558,220,0 +170755656606,221,0 +170755656654,221,0 +170755656702,220,0 +170755656750,221,0 +170755656798,222,0 +170755656845,223,0 +170755656893,224,0 +170755656941,222,0 +170755656989,223,0 +170755657037,222,0 +170755657084,222,0 +170755657134,217,0 +170755657182,218,0 +170755657230,218,0 +170755657277,220,0 +170755657325,220,0 +170755657373,220,0 +170755657421,220,0 +170755657469,222,0 +170755657517,221,0 +170755657565,222,0 +170755657612,222,0 +170755657660,222,0 +170755657710,222,0 +170755657760,222,0 +170755657808,221,0 +170755657856,221,0 +170755657903,222,0 +170755657951,217,0 +170755657999,217,0 +170755658047,217,0 +170755658095,218,0 +170755658143,219,0 +170755658191,219,0 +170755658240,219,0 +170755658290,219,0 +170755658338,220,0 +170755658387,220,0 +170755658437,221,0 +170755658485,221,0 +170755658533,225,0 +170755658582,223,0 +170755658630,222,0 +170755658680,223,0 +170755658728,221,0 +170755658776,217,0 +170755658824,217,0 +170755658872,220,0 +170755658921,218,0 +170755658969,219,0 +170755659017,219,0 +170755659066,221,0 +170755659114,220,0 +170755659162,221,0 +170755659210,221,0 +170755659258,221,0 +170755659306,222,0 +170755659354,223,0 +170755659402,222,0 +170755659450,223,0 +170755659498,221,0 +170755659547,217,0 +170755659595,216,0 +170755659643,217,0 +170755659691,218,0 +170755659739,219,0 +170755659787,219,0 +170755659836,219,0 +170755659885,220,0 +170755659935,221,0 +170755659983,221,0 +170755660032,221,0 +170755660080,221,0 +170755660128,221,0 +170755660176,222,0 +170755660224,220,0 +170755660274,222,0 +170755660322,221,0 +170755660370,217,0 +170755660417,218,0 +170755660465,218,0 +170755660513,219,0 +170755660561,219,0 +170755660609,220,0 +170755660657,220,0 +170755660705,221,0 +170755660754,222,0 +170755660802,222,0 +170755660852,222,0 +170755660900,222,0 +170755660948,223,0 +170755660996,223,0 +170755661044,222,0 +170755661093,222,0 +170755661141,218,0 +170755661189,218,0 +170755661237,219,0 +170755661285,219,0 +170755661333,221,0 +170755661382,221,0 +170755661432,221,0 +170755661481,222,0 +170755661531,222,0 +170755661580,222,0 +170755661628,223,0 +170755661676,221,0 +170755661724,223,0 +170755661772,222,0 +170755661820,222,0 +170755661868,221,0 +170755661916,222,0 +170755661964,219,0 +170755662012,219,0 +170755662059,219,0 +170755662107,216,0 +170755662155,220,0 +170755662205,221,0 +170755662253,222,0 +170755662302,221,0 +170755662350,222,0 +170755662398,223,0 +170755662446,223,0 +170755662496,223,0 +170755662543,223,0 +170755662593,223,0 +170755662641,221,0 +170755662690,221,0 +170755662738,218,0 +170755662786,218,0 +170755662836,219,0 +170755662885,220,0 +170755662935,220,0 +170755662984,221,0 +170755663034,221,0 +170755663082,221,0 +170755663130,223,0 +170755663178,223,0 +170755663227,223,0 +170755663277,223,0 +170755663325,222,0 +170755663373,221,0 +170755663421,222,0 +170755663469,222,0 +170755663516,221,0 +170755663564,217,0 +170755663612,217,0 +170755663662,218,0 +170755663710,218,0 +170755663757,219,0 +170755663805,220,0 +170755663853,220,0 +170755663903,221,0 +170755663951,221,0 +170755663999,222,0 +170755664047,222,0 +170755664095,224,0 +170755664144,223,0 +170755664192,221,0 +170755664240,222,0 +170755664288,222,0 +170755664336,220,0 +170755664384,215,0 +170755664433,215,0 +170755664481,216,0 +170755664529,216,0 +170755664577,218,0 +170755664625,218,0 +170755664673,219,0 +170755664722,218,0 +170755664772,219,0 +170755664821,220,0 +170755664869,221,0 +170755664917,222,0 +170755664965,222,0 +170755665013,222,0 +170755665061,222,0 +170755665108,222,0 +170755665158,215,0 +170755665207,215,0 +170755665255,216,0 +170755665303,216,0 +170755665353,217,0 +170755665401,217,0 +170755665450,218,0 +170755665498,218,0 +170755665546,219,0 +170755665594,219,0 +170755665643,220,0 +170755665691,220,0 +170755665741,220,0 +170755665790,221,0 +170755665838,221,0 +170755665888,218,0 +170755665936,216,0 +170755665984,216,0 +170755666032,217,0 +170755666079,216,0 +170755666127,217,0 +170755666177,217,0 +170755666225,219,0 +170755666273,217,0 +170755666321,218,0 +170755666369,219,0 +170755666417,220,0 +170755666465,221,0 +170755666513,222,0 +170755666560,220,0 +170755666608,221,0 +170755666656,221,0 +170755666706,221,0 +170755666754,215,0 +170755666802,217,0 +170755666852,218,0 +170755666899,219,0 +170755666947,219,0 +170755666997,220,0 +170755667046,220,0 +170755667094,222,0 +170755667144,222,0 +170755667192,222,0 +170755667240,222,0 +170755667287,222,0 +170755667335,222,0 +170755667383,222,0 +170755667431,222,0 +170755667479,222,0 +170755667529,219,0 +170755667578,220,0 +170755667626,222,0 +170755667675,220,0 +170755667725,222,0 +170755667774,221,0 +170755667822,221,0 +170755667870,221,0 +170755667918,221,0 +170755667966,222,0 +170755668016,222,0 +170755668064,223,0 +170755668112,223,0 +170755668161,222,0 +170755668211,221,0 +170755668260,222,0 +170755668310,221,0 +170755668358,220,0 +170755668407,220,0 +170755668457,220,0 +170755668505,221,0 +170755668554,221,0 +170755668602,222,0 +170755668650,222,0 +170755668698,221,0 +170755668746,222,0 +170755668794,222,0 +170755668844,221,0 +170755668892,222,0 +170755668941,222,0 +170755668991,222,0 +170755669038,222,0 +170755669088,221,0 +170755669138,220,0 +170755669187,220,0 +170755669237,216,0 +170755669286,222,0 +170755669334,221,0 +170755669382,221,0 +170755669430,222,0 +170755669478,222,0 +170755669528,222,0 +170755669577,222,0 +170755669625,222,0 +170755669673,223,0 +170755669721,223,0 +170755669769,222,0 +170755669817,222,0 +170755669867,221,0 +170755669916,220,0 +170755669964,219,0 +170755670014,220,0 +170755670063,219,0 +170755670111,219,0 +170755670161,219,0 +170755670208,220,0 +170755670256,221,0 +170755670304,221,0 +170755670354,222,0 +170755670402,223,0 +170755670450,222,0 +170755670498,221,0 +170755670547,222,0 +170755670597,221,0 +170755670645,221,0 +170755670693,222,0 +170755670742,217,0 +170755670792,218,0 +170755670840,218,0 +170755670888,218,0 +170755670935,219,0 +170755670985,219,0 +170755671033,221,0 +170755671081,220,0 +170755671130,221,0 +170755671180,220,0 +170755671228,223,0 +170755671276,222,0 +170755671324,222,0 +170755671372,222,0 +170755671421,222,0 +170755671469,222,0 +170755671517,220,0 +170755671565,216,0 +170755671614,216,0 +170755671662,217,0 +170755671710,218,0 +170755671758,219,0 +170755671808,219,0 +170755671856,220,0 +170755671904,220,0 +170755671952,221,0 +170755672000,221,0 +170755672047,222,0 +170755672097,222,0 +170755672145,223,0 +170755672193,222,0 +170755672241,222,0 +170755672288,221,0 +170755672338,216,0 +170755672386,217,0 +170755672435,217,0 +170755672483,217,0 +170755672531,218,0 +170755672581,219,0 +170755672630,219,0 +170755672678,219,0 +170755672727,220,0 +170755672775,221,0 +170755672823,221,0 +170755672873,222,0 +170755672922,222,0 +170755672972,222,0 +170755673020,223,0 +170755673068,222,0 +170755673117,221,0 +170755673165,217,0 +170755673215,216,0 +170755673262,217,0 +170755673310,218,0 +170755673358,219,0 +170755673406,218,0 +170755673454,220,0 +170755673503,219,0 +170755673551,220,0 +170755673601,222,0 +170755673649,222,0 +170755673698,221,0 +170755673746,222,0 +170755673796,222,0 +170755673845,222,0 +170755673893,221,0 +170755673941,217,0 +170755673991,216,0 +170755674040,217,0 +170755674088,216,0 +170755674136,218,0 +170755674186,219,0 +170755674235,219,0 +170755674283,220,0 +170755674331,220,0 +170755674380,221,0 +170755674428,221,0 +170755674476,224,0 +170755674524,222,0 +170755674572,224,0 +170755674622,222,0 +170755674670,221,0 +170755674718,221,0 +170755674765,216,0 +170755674813,217,0 +170755674861,217,0 +170755674911,218,0 +170755674960,219,0 +170755675008,220,0 +170755675056,220,0 +170755675106,221,0 +170755675155,221,0 +170755675205,222,0 +170755675253,222,0 +170755675301,222,0 +170755675350,222,0 +170755675398,223,0 +170755675446,222,0 +170755675496,221,0 +170755675545,217,0 +170755675593,217,0 +170755675641,218,0 +170755675689,218,0 +170755675737,219,0 +170755675786,220,0 +170755675836,219,0 +170755675884,221,0 +170755675933,222,0 +170755675981,222,0 +170755676029,222,0 +170755676077,223,0 +170755676125,223,0 +170755676173,223,0 +170755676221,223,0 +170755676269,222,0 +170755676317,221,0 +170755676366,217,0 +170755676414,219,0 +170755676462,219,0 +170755676510,219,0 +170755676559,220,0 +170755676607,219,0 +170755676655,221,0 +170755676703,222,0 +170755676751,222,0 +170755676799,222,0 +170755676847,223,0 +170755676897,222,0 +170755676944,223,0 +170755676994,222,0 +170755677042,222,0 +170755677090,221,0 +170755677138,216,0 +170755677186,217,0 +170755677234,217,0 +170755677283,218,0 +170755677331,219,0 +170755677379,220,0 +170755677427,220,0 +170755677474,220,0 +170755677522,221,0 +170755677570,222,0 +170755677618,222,0 +170755677666,222,0 +170755677714,222,0 +170755677763,222,0 +170755677811,222,0 +170755677860,221,0 +170755677908,221,0 +170755677956,218,0 +170755678004,218,0 +170755678052,218,0 +170755678100,218,0 +170755678148,219,0 +170755678195,220,0 +170755678243,222,0 +170755678291,221,0 +170755678339,220,0 +170755678387,221,0 +170755678435,221,0 +170755678484,222,0 +170755678532,222,0 +170755678582,221,0 +170755678630,223,0 +170755678678,221,0 +170755678727,219,0 +170755678775,217,0 +170755678823,219,0 +170755678871,219,0 +170755678920,221,0 +170755678970,220,0 +170755679018,221,0 +170755679067,221,0 +170755679117,222,0 +170755679166,222,0 +170755679216,222,0 +170755679264,222,0 +170755679312,223,0 +170755679360,223,0 +170755679409,222,0 +170755679457,222,0 +170755679507,221,0 +170755679554,219,0 +170755679602,218,0 +170755679650,220,0 +170755679700,220,0 +170755679748,222,0 +170755679795,220,0 +170755679843,221,0 +170755679891,221,0 +170755679939,223,0 +170755679987,221,0 +170755680035,222,0 +170755680082,223,0 +170755680130,222,0 +170755680178,223,0 +170755680226,221,0 +170755680274,221,0 +170755680324,220,0 +170755680373,220,0 +170755680421,220,0 +170755680470,221,0 +170755680518,221,0 +170755680566,222,0 +170755680614,222,0 +170755680662,223,0 +170755680710,222,0 +170755680759,223,0 +170755680807,223,0 +170755680857,223,0 +170755680905,221,0 +170755680954,222,0 +170755681004,222,0 +170755681053,223,0 +170755681101,221,0 +170755681149,221,0 +170755681197,221,0 +170755681245,221,0 +170755681293,221,0 +170755681342,222,0 +170755681392,221,0 +170755681440,222,0 +170755681488,222,0 +170755681537,223,0 +170755681585,223,0 +170755681633,223,0 +170755681683,222,0 +170755681731,222,0 +170755681780,222,0 +170755681830,222,0 +170755681879,222,0 +170755681928,219,0 +170755681976,220,0 +170755682026,220,0 +170755682074,220,0 +170755682123,220,0 +170755682173,222,0 +170755682221,220,0 +170755682269,221,0 +170755682318,223,0 +170755682366,222,0 +170755682416,222,0 +170755682464,222,0 +170755682512,223,0 +170755682560,222,0 +170755682607,221,0 +170755682655,222,0 +170755682703,221,0 +170755682753,216,0 +170755682801,216,0 +170755682850,217,0 +170755682898,218,0 +170755682946,219,0 +170755682994,219,0 +170755683041,219,0 +170755683089,220,0 +170755683137,220,0 +170755683185,221,0 +170755683233,222,0 +170755683281,221,0 +170755683330,221,0 +170755683378,220,0 +170755683428,221,0 +170755683476,221,0 +170755683524,216,0 +170755683572,215,0 +170755683619,215,0 +170755683667,216,0 +170755683715,216,0 +170755683763,217,0 +170755683811,218,0 +170755683860,218,0 +170755683910,218,0 +170755683958,219,0 +170755684006,221,0 +170755684054,222,0 +170755684103,222,0 +170755684151,222,0 +170755684201,222,0 +170755684249,222,0 +170755684296,221,0 +170755684344,215,0 +170755684392,215,0 +170755684440,215,0 +170755684488,216,0 +170755684536,216,0 +170755684583,217,0 +170755684631,218,0 +170755684679,218,0 +170755684729,218,0 +170755684778,219,0 +170755684826,219,0 +170755684874,220,0 +170755684923,221,0 +170755684971,220,0 +170755685019,221,0 +170755685067,222,0 +170755685115,221,0 +170755685163,222,0 +170755685211,223,0 +170755685259,221,0 +170755685307,222,0 +170755685356,222,0 +170755685405,221,0 +170755685453,221,0 +170755685501,221,0 +170755685551,216,0 +170755685599,217,0 +170755685647,218,0 +170755685695,218,0 +170755685743,219,0 +170755685792,219,0 +170755685842,220,0 +170755685890,220,0 +170755685939,220,0 +170755685989,221,0 +170755686036,222,0 +170755686086,223,0 +170755686134,224,0 +170755686182,222,0 +170755686230,222,0 +170755686278,222,0 +170755686327,216,0 +170755686377,216,0 +170755686426,216,0 +170755686476,217,0 +170755686525,218,0 +170755686573,220,0 +170755686621,219,0 +170755686669,219,0 +170755686719,220,0 +170755686767,221,0 +170755686816,222,0 +170755686864,222,0 +170755686912,223,0 +170755686960,222,0 +170755687007,223,0 +170755687055,221,0 +170755687103,220,0 +170755687151,215,0 +170755687199,216,0 +170755687248,217,0 +170755687296,218,0 +170755687344,218,0 +170755687392,219,0 +170755687440,219,0 +170755687487,220,0 +170755687535,220,0 +170755687583,221,0 +170755687631,222,0 +170755687681,222,0 +170755687729,223,0 +170755687776,222,0 +170755687824,222,0 +170755687874,221,0 +170755687923,216,0 +170755687971,216,0 +170755688019,217,0 +170755688067,217,0 +170755688115,217,0 +170755688163,218,0 +170755688211,219,0 +170755688259,220,0 +170755688307,220,0 +170755688356,221,0 +170755688404,221,0 +170755688452,222,0 +170755688500,222,0 +170755688550,222,0 +170755688598,221,0 +170755688645,222,0 +170755688693,221,0 +170755688743,215,0 +170755688791,217,0 +170755688839,218,0 +170755688887,218,0 +170755688935,218,0 +170755688983,218,0 +170755689031,219,0 +170755689080,220,0 +170755689128,221,0 +170755689176,221,0 +170755689224,221,0 +170755689272,222,0 +170755689320,222,0 +170755689369,222,0 +170755689419,221,0 +170755689467,221,0 +170755689515,217,0 +170755689563,217,0 +170755689612,218,0 +170755689662,218,0 +170755689710,218,0 +170755689758,219,0 +170755689806,219,0 +170755689854,220,0 +170755689903,221,0 +170755689953,220,0 +170755690001,221,0 +170755690049,222,0 +170755690096,221,0 +170755690146,221,0 +170755690194,222,0 +170755690243,222,0 +170755690291,219,0 +170755690339,217,0 +170755690388,217,0 +170755690436,218,0 +170755690486,218,0 +170755690534,219,0 +170755690582,219,0 +170755690630,221,0 +170755690678,220,0 +170755690725,221,0 +170755690774,222,0 +170755690821,222,0 +170755690869,222,0 +170755690917,222,0 +170755690967,222,0 +170755691015,222,0 +170755691063,221,0 +170755691111,217,0 +170755691160,217,0 +170755691208,215,0 +170755691256,218,0 +170755691304,219,0 +170755691352,220,0 +170755691401,221,0 +170755691449,221,0 +170755691498,221,0 +170755691546,222,0 +170755691594,223,0 +170755691644,222,0 +170755691692,222,0 +170755691740,223,0 +170755691789,222,0 +170755691837,223,0 +170755691885,221,0 +170755691933,217,0 +170755691981,219,0 +170755692029,219,0 +170755692076,220,0 +170755692124,221,0 +170755692172,221,0 +170755692222,221,0 +170755692270,219,0 +170755692319,222,0 +170755692369,221,0 +170755692418,223,0 +170755692468,223,0 +170755692516,223,0 +170755692564,222,0 +170755692611,223,0 +170755692661,221,0 +170755692709,218,0 +170755692757,219,0 +170755692805,220,0 +170755692854,219,0 +170755692902,219,0 +170755692951,220,0 +170755693001,220,0 +170755693050,221,0 +170755693098,222,0 +170755693146,222,0 +170755693194,222,0 +170755693242,221,0 +170755693290,222,0 +170755693338,222,0 +170755693386,222,0 +170755693434,221,0 +170755693483,221,0 +170755693533,215,0 +170755693581,220,0 +170755693628,219,0 +170755693678,221,0 +170755693726,220,0 +170755693774,221,0 +170755693823,221,0 +170755693871,221,0 +170755693919,222,0 +170755693967,223,0 +170755694015,222,0 +170755694063,224,0 +170755694111,222,0 +170755694158,222,0 +170755694206,221,0 +170755694254,221,0 +170755694302,220,0 +170755694350,218,0 +170755694398,219,0 +170755694446,219,0 +170755694494,220,0 +170755694543,221,0 +170755694593,221,0 +170755694640,222,0 +170755694688,221,0 +170755694736,222,0 +170755694784,222,0 +170755694832,223,0 +170755694880,223,0 +170755694927,221,0 +170755694977,222,0 +170755695025,221,0 +170755695072,221,0 +170755695120,218,0 +170755695168,217,0 +170755695216,218,0 +170755695264,219,0 +170755695313,220,0 +170755695361,219,0 +170755695409,220,0 +170755695457,221,0 +170755695505,221,0 +170755695552,221,0 +170755695600,221,0 +170755695648,223,0 +170755695696,222,0 +170755695744,223,0 +170755695792,222,0 +170755695840,221,0 +170755695888,221,0 +170755695935,217,0 +170755695983,217,0 +170755696031,218,0 +170755696081,218,0 +170755696129,219,0 +170755696178,220,0 +170755696226,220,0 +170755696274,220,0 +170755696322,221,0 +170755696370,221,0 +170755696419,221,0 +170755696467,221,0 +170755696515,222,0 +170755696563,224,0 +170755696612,220,0 +170755696660,221,0 +170755696708,217,0 +170755696756,217,0 +170755696806,217,0 +170755696854,218,0 +170755696903,218,0 +170755696951,219,0 +170755697000,220,0 +170755697048,222,0 +170755697098,221,0 +170755697146,221,0 +170755697194,222,0 +170755697242,222,0 +170755697289,221,0 +170755697337,222,0 +170755697387,222,0 +170755697434,222,0 +170755697482,221,0 +170755697530,216,0 +170755697578,217,0 +170755697626,217,0 +170755697674,218,0 +170755697722,219,0 +170755697769,219,0 +170755697817,219,0 +170755697865,221,0 +170755697913,220,0 +170755697961,222,0 +170755698009,222,0 +170755698057,222,0 +170755698104,223,0 +170755698152,222,0 +170755698202,221,0 +170755698250,221,0 +170755698298,218,0 +170755698347,216,0 +170755698395,218,0 +170755698443,218,0 +170755698491,219,0 +170755698539,219,0 +170755698588,218,0 +170755698636,219,0 +170755698684,223,0 +170755698733,222,0 +170755698781,222,0 +170755698829,221,0 +170755698877,222,0 +170755698925,224,0 +170755698973,222,0 +170755699021,222,0 +170755699068,221,0 +170755699116,218,0 +170755699164,217,0 +170755699213,217,0 +170755699261,218,0 +170755699311,219,0 +170755699359,219,0 +170755699406,220,0 +170755699454,220,0 +170755699502,221,0 +170755699552,221,0 +170755699600,221,0 +170755699649,222,0 +170755699697,223,0 +170755699745,222,0 +170755699795,223,0 +170755699842,221,0 +170755699892,221,0 +170755699940,217,0 +170755699989,218,0 +170755700037,218,0 +170755700085,219,0 +170755700133,219,0 +170755700181,220,0 +170755700231,221,0 +170755700279,221,0 +170755700328,226,0 +170755700376,222,0 +170755700425,223,0 +170755700475,222,0 +170755700523,222,0 +170755700571,222,0 +170755700619,222,0 +170755700667,221,0 +170755700716,217,0 +170755700765,217,0 +170755700813,218,0 +170755700861,219,0 +170755700909,219,0 +170755700957,219,0 +170755701005,221,0 +170755701053,220,0 +170755701101,222,0 +170755701149,223,0 +170755701197,221,0 +170755701246,222,0 +170755701296,223,0 +170755701346,223,0 +170755701395,222,0 +170755701445,222,0 +170755701493,222,0 +170755701541,216,0 +170755701589,218,0 +170755701636,218,0 +170755701684,218,0 +170755701734,218,0 +170755701783,219,0 +170755701831,221,0 +170755701879,220,0 +170755701929,221,0 +170755701978,222,0 +170755702028,222,0 +170755702077,222,0 +170755702125,223,0 +170755702173,222,0 +170755702222,221,0 +170755702270,221,0 +170755702318,216,0 +170755702368,216,0 +170755702417,216,0 +170755702467,217,0 +170755702515,217,0 +170755702564,218,0 +170755702614,219,0 +170755702662,220,0 +170755702710,220,0 +170755702759,220,0 +170755702807,221,0 +170755702855,224,0 +170755702903,222,0 +170755702951,222,0 +170755702999,222,0 +170755703046,222,0 +170755703094,221,0 +170755703142,216,0 +170755703190,217,0 +170755703238,217,0 +170755703288,218,0 +170755703336,218,0 +170755703385,219,0 +170755703435,219,0 +170755703483,219,0 +170755703532,221,0 +170755703580,221,0 +170755703628,223,0 +170755703676,221,0 +170755703723,222,0 +170755703771,222,0 +170755703819,222,0 +170755703867,219,0 +170755703915,218,0 +170755703963,217,0 +170755704011,218,0 +170755704060,219,0 +170755704108,220,0 +170755704157,221,0 +170755704205,221,0 +170755704253,221,0 +170755704301,223,0 +170755704350,222,0 +170755704398,222,0 +170755704446,223,0 +170755704494,222,0 +170755704541,224,0 +170755704589,222,0 +170755704637,222,0 +170755704685,221,0 +170755704733,214,0 +170755704782,216,0 +170755704832,218,0 +170755704879,218,0 +170755704927,219,0 +170755704975,218,0 +170755705023,220,0 +170755705071,221,0 +170755705120,221,0 +170755705168,221,0 +170755705216,221,0 +170755705264,222,0 +170755705311,222,0 +170755705359,222,0 +170755705407,222,0 +170755705455,222,0 +170755705503,218,0 +170755705551,218,0 +170755705599,218,0 +170755705646,219,0 +170755705694,220,0 +170755705742,220,0 +170755705790,222,0 +170755705838,221,0 +170755705886,222,0 +170755705933,223,0 +170755705981,222,0 +170755706029,222,0 +170755706077,222,0 +170755706125,222,0 +170755706173,221,0 +170755706220,222,0 +170755706270,222,0 +170755706319,219,0 +170755706367,219,0 +170755706415,220,0 +170755706463,220,0 +170755706511,220,0 +170755706560,221,0 +170755706608,221,0 +170755706656,221,0 +170755706704,221,0 +170755706752,222,0 +170755706799,222,0 +170755706847,222,0 +170755706897,222,0 +170755706945,223,0 +170755706993,222,0 +170755707041,222,0 +170755707088,221,0 +170755707138,216,0 +170755707186,217,0 +170755707235,217,0 +170755707285,218,0 +170755707334,219,0 +170755707382,218,0 +170755707432,219,0 +170755707480,221,0 +170755707529,220,0 +170755707577,220,0 +170755707625,220,0 +170755707675,219,0 +170755707724,221,0 +170755707772,221,0 +170755707820,221,0 +170755707868,221,0 +170755707917,217,0 +170755707967,216,0 +170755708015,217,0 +170755708064,218,0 +170755708112,219,0 +170755708160,219,0 +170755708208,219,0 +170755708256,220,0 +170755708304,222,0 +170755708352,224,0 +170755708400,221,0 +170755708448,222,0 +170755708496,221,0 +170755708544,222,0 +170755708592,221,0 +170755708640,221,0 +170755708689,221,0 +170755708737,217,0 +170755708787,218,0 +170755708835,218,0 +170755708883,218,0 +170755708931,220,0 +170755708980,218,0 +170755709030,220,0 +170755709079,219,0 +170755709127,221,0 +170755709177,223,0 +170755709226,221,0 +170755709274,222,0 +170755709322,222,0 +170755709370,222,0 +170755709418,222,0 +170755709466,221,0 +170755709514,219,0 +170755709562,218,0 +170755709612,219,0 +170755709660,219,0 +170755709708,219,0 +170755709755,221,0 +170755709803,221,0 +170755709853,220,0 +170755709901,222,0 +170755709950,222,0 +170755709998,223,0 +170755710048,222,0 +170755710097,222,0 +170755710145,223,0 +170755710193,221,0 +170755710241,222,0 +170755710291,221,0 +170755710340,219,0 +170755710388,219,0 +170755710436,219,0 +170755710484,219,0 +170755710532,220,0 +170755710580,221,0 +170755710628,221,0 +170755710676,221,0 +170755710725,222,0 +170755710775,223,0 +170755710823,222,0 +170755710871,222,0 +170755710919,223,0 +170755710967,223,0 +170755711016,222,0 +170755711064,222,0 +170755711112,219,0 +170755711160,219,0 +170755711208,219,0 +170755711256,220,0 +170755711304,223,0 +170755711352,221,0 +170755711401,222,0 +170755711451,221,0 +170755711499,222,0 +170755711546,223,0 +170755711594,223,0 +170755711644,223,0 +170755711692,222,0 +170755711741,222,0 +170755711789,222,0 +170755711837,221,0 +170755711885,222,0 +170755711933,219,0 +170755711981,219,0 +170755712029,219,0 +170755712078,220,0 +170755712126,221,0 +170755712174,222,0 +170755712224,221,0 +170755712273,222,0 +170755712321,224,0 +170755712369,222,0 +170755712418,223,0 +170755712468,223,0 +170755712516,223,0 +170755712565,222,0 +170755712615,222,0 +170755712663,221,0 +170755712711,216,0 +170755712760,217,0 +170755712808,218,0 +170755712856,218,0 +170755712904,218,0 +170755712952,219,0 +170755712999,219,0 +170755713047,220,0 +170755713095,221,0 +170755713143,222,0 +170755713192,222,0 +170755713240,222,0 +170755713288,223,0 +170755713335,223,0 +170755713383,223,0 +170755713431,222,0 +170755713479,221,0 +170755713527,216,0 +170755713575,217,0 +170755713622,217,0 +170755713670,217,0 +170755713718,218,0 +170755713766,219,0 +170755713815,220,0 +170755713865,220,0 +170755713913,221,0 +170755713962,221,0 +170755714012,221,0 +170755714060,222,0 +170755714108,222,0 +170755714156,222,0 +170755714204,222,0 +170755714252,221,0 +170755714301,217,0 +170755714349,216,0 +170755714397,217,0 +170755714445,218,0 +170755714493,218,0 +170755714540,219,0 +170755714588,219,0 +170755714636,219,0 +170755714684,220,0 +170755714732,221,0 +170755714780,221,0 +170755714828,221,0 +170755714876,222,0 +170755714925,222,0 +170755714973,222,0 +170755715023,222,0 +170755715071,222,0 +170755715118,217,0 +170755715166,216,0 +170755715214,217,0 +170755715262,217,0 +170755715310,218,0 +170755715358,219,0 +170755715406,220,0 +170755715453,220,0 +170755715503,220,0 +170755715551,220,0 +170755715599,221,0 +170755715647,222,0 +170755715696,222,0 +170755715746,222,0 +170755715795,222,0 +170755715845,221,0 +170755715894,218,0 +170755715944,216,0 +170755715992,218,0 +170755716040,218,0 +170755716088,220,0 +170755716136,221,0 +170755716184,221,0 +170755716231,223,0 +170755716279,222,0 +170755716327,222,0 +170755716377,223,0 +170755716425,223,0 +170755716473,224,0 +170755716522,224,0 +170755716572,222,0 +170755716620,222,0 +170755716669,221,0 +170755716717,217,0 +170755716767,218,0 +170755716815,218,0 +170755716863,220,0 +170755716912,221,0 +170755716962,221,0 +170755717010,222,0 +170755717058,221,0 +170755717107,221,0 +170755717155,221,0 +170755717203,222,0 +170755717251,221,0 +170755717299,222,0 +170755717348,223,0 +170755717396,222,0 +170755717446,221,0 +170755717494,218,0 +170755717542,218,0 +170755717590,219,0 +170755717639,219,0 +170755717689,220,0 +170755717736,220,0 +170755717784,221,0 +170755717834,222,0 +170755717882,221,0 +170755717930,222,0 +170755717979,222,0 +170755718027,222,0 +170755718075,222,0 +170755718123,222,0 +170755718172,222,0 +170755718220,222,0 +170755718268,221,0 +170755718316,219,0 +170755718364,220,0 +170755718412,220,0 +170755718460,220,0 +170755718508,221,0 +170755718556,221,0 +170755718603,222,0 +170755718651,221,0 +170755718699,221,0 +170755718747,222,0 +170755718795,223,0 +170755718843,223,0 +170755718890,223,0 +170755718938,223,0 +170755718986,222,0 +170755719034,221,0 +170755719082,222,0 +170755719131,219,0 +170755719179,219,0 +170755719227,219,0 +170755719276,220,0 +170755719326,220,0 +170755719373,221,0 +170755719423,223,0 +170755719471,222,0 +170755719519,221,0 +170755719568,222,0 +170755719616,223,0 +170755719664,222,0 +170755719712,222,0 +170755719761,221,0 +170755719809,222,0 +170755719857,221,0 +170755719907,219,0 +170755719956,218,0 +170755720004,219,0 +170755720054,219,0 +170755720102,220,0 +170755720149,220,0 +170755720199,222,0 +170755720247,222,0 +170755720297,221,0 +170755720344,222,0 +170755720392,222,0 +170755720440,223,0 +170755720490,222,0 +170755720538,223,0 +170755720586,222,0 +170755720634,222,0 +170755720682,221,0 +170755720729,217,0 +170755720777,217,0 +170755720827,218,0 +170755720876,219,0 +170755720924,219,0 +170755720972,220,0 +170755721020,221,0 +170755721070,221,0 +170755721118,223,0 +170755721166,221,0 +170755721215,222,0 +170755721263,223,0 +170755721313,222,0 +170755721362,223,0 +170755721412,222,0 +170755721461,221,0 +170755721509,217,0 +170755721558,217,0 +170755721606,218,0 +170755721656,218,0 +170755721705,219,0 +170755721755,220,0 +170755721804,221,0 +170755721854,221,0 +170755721902,220,0 +170755721951,221,0 +170755721999,222,0 +170755722047,223,0 +170755722095,223,0 +170755722143,223,0 +170755722192,222,0 +170755722240,222,0 +170755722290,220,0 +170755722339,216,0 +170755722389,217,0 +170755722438,218,0 +170755722488,218,0 +170755722536,219,0 +170755722583,220,0 +170755722631,220,0 +170755722679,221,0 +170755722727,221,0 +170755722775,221,0 +170755722822,222,0 +170755722870,221,0 +170755722918,223,0 +170755722966,222,0 +170755723014,222,0 +170755723062,221,0 +170755723110,216,0 +170755723159,216,0 +170755723207,217,0 +170755723255,217,0 +170755723303,218,0 +170755723350,219,0 +170755723398,219,0 +170755723446,220,0 +170755723494,220,0 +170755723543,221,0 +170755723591,222,0 +170755723639,222,0 +170755723689,222,0 +170755723736,222,0 +170755723784,223,0 +170755723832,222,0 +170755723882,221,0 +170755723929,217,0 +170755723977,217,0 +170755724025,217,0 +170755724073,218,0 +170755724121,219,0 +170755724170,220,0 +170755724218,220,0 +170755724266,220,0 +170755724314,221,0 +170755724362,221,0 +170755724409,222,0 +170755724457,221,0 +170755724507,222,0 +170755724555,222,0 +170755724603,221,0 +170755724651,221,0 +170755724699,216,0 +170755724746,216,0 +170755724796,217,0 +170755724844,218,0 +170755724892,218,0 +170755724940,218,0 +170755724989,219,0 +170755725037,220,0 +170755725085,220,0 +170755725133,221,0 +170755725183,223,0 +170755725231,223,0 +170755725278,222,0 +170755725328,223,0 +170755725376,222,0 +170755725424,221,0 +170755725472,221,0 +170755725520,217,0 +170755725568,217,0 +170755725616,217,0 +170755725664,218,0 +170755725713,218,0 +170755725762,219,0 +170755725810,220,0 +170755725860,220,0 +170755725908,221,0 +170755725956,222,0 +170755726004,222,0 +170755726053,223,0 +170755726101,222,0 +170755726150,222,0 +170755726198,223,0 +170755726246,221,0 +170755726294,216,0 +170755726344,216,0 +170755726392,217,0 +170755726441,217,0 +170755726489,218,0 +170755726537,219,0 +170755726587,220,0 +170755726634,221,0 +170755726682,220,0 +170755726730,220,0 +170755726780,223,0 +170755726828,222,0 +170755726877,222,0 +170755726925,222,0 +170755726973,223,0 +170755727021,222,0 +170755727069,221,0 +170755727119,216,0 +170755727167,220,0 +170755727216,218,0 +170755727264,218,0 +170755727312,219,0 +170755727361,220,0 +170755727409,220,0 +170755727457,220,0 +170755727505,221,0 +170755727555,221,0 +170755727604,222,0 +170755727654,223,0 +170755727702,222,0 +170755727750,223,0 +170755727797,222,0 +170755727845,221,0 +170755727893,216,0 +170755727941,216,0 +170755727989,218,0 +170755728037,221,0 +170755728084,221,0 +170755728132,222,0 +170755728180,221,0 +170755728228,222,0 +170755728277,222,0 +170755728325,219,0 +170755728373,223,0 +170755728421,222,0 +170755728469,222,0 +170755728518,223,0 +170755728566,222,0 +170755728616,222,0 +170755728664,221,0 +170755728713,219,0 +170755728761,219,0 +170755728811,221,0 +170755728859,221,0 +170755728907,221,0 +170755728955,221,0 +170755729003,221,0 +170755729050,222,0 +170755729098,222,0 +170755729146,222,0 +170755729194,222,0 +170755729242,223,0 +170755729290,221,0 +170755729338,222,0 +170755729388,222,0 +170755729437,221,0 +170755729485,221,0 +170755729533,219,0 +170755729581,220,0 +170755729629,221,0 +170755729678,221,0 +170755729726,221,0 +170755729774,222,0 +170755729822,222,0 +170755729872,222,0 +170755729920,222,0 +170755729969,222,0 +170755730019,222,0 +170755730066,222,0 +170755730114,222,0 +170755730162,222,0 +170755730210,222,0 +170755730260,222,0 +170755730309,219,0 +170755730359,220,0 +170755730408,219,0 +170755730456,221,0 +170755730504,222,0 +170755730552,221,0 +170755730600,223,0 +170755730648,222,0 +170755730696,222,0 +170755730746,222,0 +170755730793,223,0 +170755730841,223,0 +170755730891,222,0 +170755730939,222,0 +170755730987,222,0 +170755731035,222,0 +170755731082,221,0 +170755731132,218,0 +170755731180,219,0 +170755731228,219,0 +170755731276,219,0 +170755731326,220,0 +170755731375,221,0 +170755731423,221,0 +170755731471,222,0 +170755731519,221,0 +170755731567,222,0 +170755731615,223,0 +170755731663,223,0 +170755731711,222,0 +170755731759,223,0 +170755731807,221,0 +170755731855,221,0 +170755731903,216,0 +170755731952,216,0 +170755732002,217,0 +170755732050,218,0 +170755732098,219,0 +170755732145,219,0 +170755732195,220,0 +170755732243,220,0 +170755732292,220,0 +170755732340,222,0 +170755732388,221,0 +170755732436,222,0 +170755732484,222,0 +170755732532,223,0 +170755732580,221,0 +170755732628,222,0 +170755732677,222,0 +170755732727,216,0 +170755732775,217,0 +170755732823,217,0 +170755732872,217,0 +170755732922,218,0 +170755732970,220,0 +170755733017,220,0 +170755733065,221,0 +170755733113,221,0 +170755733161,221,0 +170755733211,222,0 +170755733260,221,0 +170755733308,223,0 +170755733358,224,0 +170755733406,223,0 +170755733453,221,0 +170755733501,216,0 +170755733549,216,0 +170755733599,216,0 +170755733647,217,0 +170755733695,219,0 +170755733744,218,0 +170755733792,218,0 +170755733840,218,0 +170755733889,219,0 +170755733937,221,0 +170755733985,222,0 +170755734033,221,0 +170755734083,221,0 +170755734132,224,0 +170755734182,222,0 +170755734231,222,0 +170755734279,221,0 +170755734327,217,0 +170755734375,216,0 +170755734424,217,0 +170755734472,217,0 +170755734522,218,0 +170755734571,219,0 +170755734619,220,0 +170755734667,220,0 +170755734717,220,0 +170755734765,222,0 +170755734813,221,0 +170755734862,222,0 +170755734910,221,0 +170755734958,222,0 +170755735008,221,0 +170755735057,221,0 +170755735105,215,0 +170755735153,217,0 +170755735201,218,0 +170755735249,217,0 +170755735298,218,0 +170755735346,219,0 +170755735394,219,0 +170755735442,220,0 +170755735490,220,0 +170755735538,221,0 +170755735588,222,0 +170755735637,223,0 +170755735687,225,0 +170755735736,223,0 +170755735786,222,0 +170755735834,222,0 +170755735882,221,0 +170755735930,215,0 +170755735978,216,0 +170755736025,216,0 +170755736073,217,0 +170755736121,218,0 +170755736169,218,0 +170755736217,218,0 +170755736265,219,0 +170755736313,221,0 +170755736361,220,0 +170755736409,220,0 +170755736457,222,0 +170755736506,222,0 +170755736554,222,0 +170755736602,224,0 +170755736652,222,0 +170755736699,216,0 +170755736749,216,0 +170755736798,216,0 +170755736846,217,0 +170755736894,218,0 +170755736942,218,0 +170755736990,218,0 +170755737038,220,0 +170755737085,219,0 +170755737135,220,0 +170755737183,222,0 +170755737231,222,0 +170755737279,222,0 +170755737327,223,0 +170755737376,224,0 +170755737426,222,0 +170755737474,221,0 +170755737523,216,0 +170755737573,216,0 +170755737621,217,0 +170755737669,218,0 +170755737716,218,0 +170755737764,219,0 +170755737812,221,0 +170755737862,221,0 +170755737911,221,0 +170755737959,221,0 +170755738007,222,0 +170755738055,222,0 +170755738103,222,0 +170755738151,222,0 +170755738199,222,0 +170755738246,222,0 +170755738294,216,0 +170755738342,216,0 +170755738392,218,0 +170755738439,218,0 +170755738487,219,0 +170755738535,220,0 +170755738583,219,0 +170755738631,220,0 +170755738679,221,0 +170755738727,222,0 +170755738775,222,0 +170755738822,223,0 +170755738870,222,0 +170755738918,221,0 +170755738966,223,0 +170755739014,221,0 +170755739062,222,0 +170755739110,218,0 +170755739158,217,0 +170755739206,218,0 +170755739255,218,0 +170755739303,218,0 +170755739351,219,0 +170755739401,219,0 +170755739449,221,0 +170755739497,221,0 +170755739546,221,0 +170755739596,222,0 +170755739644,223,0 +170755739693,222,0 +170755739743,222,0 +170755739791,222,0 +170755739839,223,0 +170755739888,221,0 +170755739938,218,0 +170755739985,218,0 +170755740033,219,0 +170755740081,220,0 +170755740131,220,0 +170755740179,221,0 +170755740228,221,0 +170755740276,222,0 +170755740324,222,0 +170755740372,223,0 +170755740421,223,0 +170755740469,223,0 +170755740519,222,0 +170755740567,222,0 +170755740615,222,0 +170755740663,222,0 +170755740712,219,0 +170755740760,217,0 +170755740809,219,0 +170755740859,219,0 +170755740907,220,0 +170755740955,223,0 +170755741004,223,0 +170755741052,222,0 +170755741102,224,0 +170755741150,223,0 +170755741198,223,0 +170755741246,223,0 +170755741294,221,0 +170755741342,223,0 +170755741391,221,0 +170755741439,223,0 +170755741489,221,0 +170755741537,218,0 +170755741585,219,0 +170755741632,221,0 +170755741680,222,0 +170755741730,222,0 +170755741779,223,0 +170755741827,223,0 +170755741877,223,0 +170755741925,224,0 +170755741973,222,0 +170755742020,223,0 +170755742068,223,0 +170755742116,223,0 +170755742166,222,0 +170755742214,222,0 +170755742263,223,0 +170755742311,221,0 +170755742359,220,0 +170755742409,221,0 +170755742458,220,0 +170755742506,222,0 +170755742554,222,0 +170755742602,222,0 +170755742650,223,0 +170755742698,222,0 +170755742748,222,0 +170755742795,222,0 +170755742843,222,0 +170755742891,222,0 +170755742939,221,0 +170755742987,222,0 +170755743037,222,0 +170755743084,221,0 +170755743132,221,0 +170755743180,221,0 +170755743228,221,0 +170755743277,222,0 +170755743325,222,0 +170755743375,222,0 +170755743422,221,0 +170755743470,224,0 +170755743518,224,0 +170755743567,222,0 +170755743615,223,0 +170755743665,224,0 +170755743713,222,0 +170755743761,222,0 +170755743808,221,0 +170755743856,222,0 +170755743904,218,0 +170755743952,217,0 +170755744000,218,0 +170755744048,219,0 +170755744096,219,0 +170755744144,220,0 +170755744191,221,0 +170755744239,220,0 +170755744287,222,0 +170755744335,222,0 +170755744383,225,0 +170755744431,221,0 +170755744479,222,0 +170755744527,223,0 +170755744575,222,0 +170755744622,222,0 +170755744672,222,0 +170755744720,217,0 +170755744768,217,0 +170755744816,218,0 +170755744864,218,0 +170755744913,218,0 +170755744963,219,0 +170755745011,220,0 +170755745059,220,0 +170755745107,221,0 +170755745156,222,0 +170755745204,222,0 +170755745254,222,0 +170755745302,222,0 +170755745351,222,0 +170755745399,222,0 +170755745447,222,0 +170755745495,220,0 +170755745543,216,0 +170755745591,217,0 +170755745639,217,0 +170755745687,218,0 +170755745735,219,0 +170755745783,219,0 +170755745831,220,0 +170755745879,221,0 +170755745926,221,0 +170755745974,222,0 +170755746022,222,0 +170755746072,222,0 +170755746121,223,0 +170755746171,222,0 +170755746219,222,0 +170755746267,221,0 +170755746316,217,0 +170755746364,217,0 +170755746412,217,0 +170755746460,218,0 +170755746508,219,0 +170755746556,219,0 +170755746603,220,0 +170755746651,220,0 +170755746699,221,0 +170755746749,221,0 +170755746798,222,0 +170755746846,223,0 +170755746894,222,0 +170755746942,222,0 +170755746992,222,0 +170755747040,221,0 +170755747088,221,0 +170755747136,217,0 +170755747185,217,0 +170755747233,218,0 +170755747281,219,0 +170755747329,219,0 +170755747377,219,0 +170755747424,221,0 +170755747472,220,0 +170755747520,222,0 +170755747568,221,0 +170755747616,221,0 +170755747664,222,0 +170755747712,222,0 +170755747760,224,0 +170755747808,222,0 +170755747855,221,0 +170755747903,217,0 +170755747951,218,0 +170755748001,217,0 +170755748049,219,0 +170755748098,219,0 +170755748148,220,0 +170755748196,220,0 +170755748245,216,0 +170755748293,221,0 +170755748341,222,0 +170755748390,221,0 +170755748438,223,0 +170755748486,222,0 +170755748534,222,0 +170755748582,222,0 +170755748632,221,0 +170755748681,221,0 +170755748731,218,0 +170755748779,218,0 +170755748828,218,0 +170755748876,220,0 +170755748924,220,0 +170755748972,221,0 +170755749020,222,0 +170755749068,223,0 +170755749118,222,0 +170755749165,222,0 +170755749213,223,0 +170755749263,224,0 +170755749311,223,0 +170755749359,222,0 +170755749406,222,0 +170755749456,222,0 +170755749505,217,0 +170755749553,218,0 +170755749601,219,0 +170755749651,219,0 +170755749699,219,0 +170755749747,220,0 +170755749796,222,0 +170755749844,222,0 +170755749892,222,0 +170755749940,222,0 +170755749988,222,0 +170755750035,223,0 +170755750083,223,0 +170755750133,223,0 +170755750180,220,0 +170755750228,222,0 +170755750276,221,0 +170755750324,217,0 +170755750372,217,0 +170755750420,218,0 +170755750468,219,0 +170755750515,219,0 +170755750563,221,0 +170755750611,220,0 +170755750659,223,0 +170755750707,220,0 +170755750755,222,0 +170755750803,223,0 +170755750851,222,0 +170755750900,222,0 +170755750948,222,0 +170755750996,222,0 +170755751044,221,0 +170755751092,218,0 +170755751140,216,0 +170755751188,217,0 +170755751236,218,0 +170755751285,218,0 +170755751335,219,0 +170755751382,221,0 +170755751430,219,0 +170755751480,220,0 +170755751528,221,0 +170755751576,221,0 +170755751623,222,0 +170755751673,221,0 +170755751722,222,0 +170755751770,222,0 +170755751820,221,0 +170755751868,221,0 +170755751916,216,0 +170755751964,217,0 +170755752012,217,0 +170755752060,218,0 +170755752109,218,0 +170755752157,219,0 +170755752205,219,0 +170755752253,220,0 +170755752301,221,0 +170755752349,221,0 +170755752396,221,0 +170755752444,221,0 +170755752492,221,0 +170755752540,222,0 +170755752588,222,0 +170755752636,222,0 +170755752684,221,0 +170755752731,217,0 +170755752779,217,0 +170755752827,218,0 +170755752876,218,0 +170755752924,219,0 +170755752972,219,0 +170755753020,220,0 +170755753070,221,0 +170755753119,223,0 +170755753167,222,0 +170755753215,222,0 +170755753263,222,0 +170755753311,222,0 +170755753359,222,0 +170755753407,222,0 +170755753454,221,0 +170755753502,217,0 +170755753552,217,0 +170755753600,218,0 +170755753649,219,0 +170755753697,221,0 +170755753745,221,0 +170755753793,221,0 +170755753841,220,0 +170755753889,221,0 +170755753938,222,0 +170755753986,222,0 +170755754034,220,0 +170755754082,222,0 +170755754131,222,0 +170755754179,222,0 +170755754227,222,0 +170755754275,221,0 +170755754323,217,0 +170755754371,219,0 +170755754419,219,0 +170755754466,219,0 +170755754516,219,0 +170755754564,220,0 +170755754612,220,0 +170755754660,221,0 +170755754709,222,0 +170755754757,222,0 +170755754805,222,0 +170755754855,222,0 +170755754902,222,0 +170755754950,222,0 +170755754998,222,0 +170755755046,221,0 +170755755094,217,0 +170755755142,219,0 +170755755190,219,0 +170755755237,220,0 +170755755287,219,0 +170755755335,220,0 +170755755384,221,0 +170755755432,221,0 +170755755480,222,0 +170755755530,222,0 +170755755579,222,0 +170755755627,221,0 +170755755677,223,0 +170755755725,222,0 +170755755773,222,0 +170755755822,221,0 +170755755870,221,0 +170755755920,217,0 +170755755968,218,0 +170755756015,219,0 +170755756063,218,0 +170755756113,220,0 +170755756161,219,0 +170755756209,220,0 +170755756257,219,0 +170755756304,221,0 +170755756352,223,0 +170755756400,222,0 +170755756448,223,0 +170755756497,222,0 +170755756545,223,0 +170755756593,223,0 +170755756641,222,0 +170755756689,221,0 +170755756737,217,0 +170755756786,217,0 +170755756834,218,0 +170755756882,218,0 +170755756930,219,0 +170755756978,220,0 +170755757027,219,0 +170755757075,220,0 +170755757123,220,0 +170755757171,221,0 +170755757220,221,0 +170755757268,222,0 +170755757316,222,0 +170755757366,223,0 +170755757415,221,0 +170755757463,222,0 +170755757511,218,0 +170755757559,218,0 +170755757607,219,0 +170755757655,219,0 +170755757703,219,0 +170755757751,219,0 +170755757800,219,0 +170755757848,221,0 +170755757898,221,0 +170755757947,221,0 +170755757995,222,0 +170755758043,222,0 +170755758091,223,0 +170755758139,223,0 +170755758187,222,0 +170755758236,221,0 +170755758284,221,0 +170755758334,218,0 +170755758382,219,0 +170755758431,219,0 +170755758481,219,0 +170755758528,220,0 +170755758576,220,0 +170755758626,221,0 +170755758675,221,0 +170755758725,222,0 +170755758774,222,0 +170755758822,221,0 +170755758872,222,0 +170755758921,223,0 +170755758971,222,0 +170755759019,222,0 +170755759067,222,0 +170755759116,219,0 +170755759166,218,0 +170755759215,218,0 +170755759263,221,0 +170755759313,219,0 +170755759361,221,0 +170755759410,222,0 +170755759458,222,0 +170755759508,223,0 +170755759556,222,0 +170755759603,222,0 +170755759651,223,0 +170755759699,222,0 +170755759749,222,0 +170755759798,222,0 +170755759846,222,0 +170755759894,221,0 +170755759944,220,0 +170755759993,220,0 +170755760041,223,0 +170755760089,221,0 +170755760137,222,0 +170755760187,222,0 +170755760236,222,0 +170755760284,223,0 +170755760332,222,0 +170755760380,223,0 +170755760428,223,0 +170755760476,223,0 +170755760524,222,0 +170755760572,222,0 +170755760620,222,0 +170755760668,221,0 +170755760715,219,0 +170755760765,218,0 +170755760814,218,0 +170755760862,220,0 +170755760910,221,0 +170755760958,221,0 +170755761008,220,0 +170755761056,222,0 +170755761103,223,0 +170755761151,223,0 +170755761199,222,0 +170755761249,224,0 +170755761298,222,0 +170755761348,223,0 +170755761398,224,0 +170755761445,222,0 +170755761493,220,0 +170755761543,215,0 +170755761592,217,0 +170755761640,217,0 +170755761690,218,0 +170755761738,219,0 +170755761786,219,0 +170755761835,220,0 +170755761885,220,0 +170755761933,220,0 +170755761981,220,0 +170755762029,222,0 +170755762077,222,0 +170755762125,221,0 +170755762173,223,0 +170755762222,221,0 +170755762270,221,0 +170755762320,216,0 +170755762368,215,0 +170755762417,216,0 +170755762467,217,0 +170755762516,218,0 +170755762564,218,0 +170755762614,219,0 +170755762662,219,0 +170755762711,220,0 +170755762759,223,0 +170755762807,225,0 +170755762855,222,0 +170755762903,223,0 +170755762953,222,0 +170755763001,222,0 +170755763050,221,0 +170755763100,221,0 +170755763149,216,0 +170755763199,217,0 +170755763247,218,0 +170755763294,218,0 +170755763342,218,0 +170755763392,219,0 +170755763440,220,0 +170755763488,221,0 +170755763536,221,0 +170755763584,222,0 +170755763632,222,0 +170755763680,222,0 +170755763729,222,0 +170755763777,222,0 +170755763827,221,0 +170755763875,221,0 +170755763924,216,0 +170755763973,217,0 +170755764021,218,0 +170755764069,218,0 +170755764119,219,0 +170755764167,219,0 +170755764216,219,0 +170755764266,220,0 +170755764314,220,0 +170755764362,220,0 +170755764410,221,0 +170755764458,222,0 +170755764506,223,0 +170755764554,223,0 +170755764603,223,0 +170755764653,222,0 +170755764701,220,0 +170755764750,217,0 +170755764798,219,0 +170755764846,219,0 +170755764895,220,0 +170755764943,221,0 +170755764991,220,0 +170755765039,221,0 +170755765087,223,0 +170755765135,222,0 +170755765183,223,0 +170755765231,223,0 +170755765279,225,0 +170755765326,223,0 +170755765374,223,0 +170755765424,222,0 +170755765472,221,0 +170755765520,219,0 +170755765569,219,0 +170755765617,220,0 +170755765667,221,0 +170755765715,221,0 +170755765764,222,0 +170755765812,222,0 +170755765862,221,0 +170755765911,223,0 +170755765961,224,0 +170755766009,224,0 +170755766057,223,0 +170755766105,225,0 +170755766154,223,0 +170755766202,221,0 +170755766250,221,0 +170755766299,221,0 +170755766347,217,0 +170755766395,219,0 +170755766443,219,0 +170755766491,220,0 +170755766538,221,0 +170755766586,221,0 +170755766634,221,0 +170755766684,221,0 +170755766731,222,0 +170755766779,222,0 +170755766827,223,0 +170755766877,223,0 +170755766924,222,0 +170755766972,222,0 +170755767020,221,0 +170755767068,221,0 +170755767116,219,0 +170755767164,218,0 +170755767212,219,0 +170755767261,220,0 +170755767309,220,0 +170755767357,221,0 +170755767405,222,0 +170755767453,221,0 +170755767502,222,0 +170755767550,222,0 +170755767598,222,0 +170755767646,222,0 +170755767694,222,0 +170755767742,221,0 +170755767790,222,0 +170755767840,222,0 +170755767888,221,0 +170755767935,220,0 +170755767985,220,0 +170755768035,220,0 +170755768083,221,0 +170755768132,220,0 +170755768180,221,0 +170755768228,221,0 +170755768276,220,0 +170755768325,222,0 +170755768373,222,0 +170755768421,221,0 +170755768469,223,0 +170755768518,222,0 +170755768568,222,0 +170755768616,221,0 +170755768664,222,0 +170755768711,221,0 +170755768759,218,0 +170755768809,218,0 +170755768858,218,0 +170755768906,220,0 +170755768956,220,0 +170755769005,220,0 +170755769055,221,0 +170755769103,222,0 +170755769151,221,0 +170755769199,222,0 +170755769248,222,0 +170755769296,224,0 +170755769345,222,0 +170755769393,222,0 +170755769443,222,0 +170755769491,222,0 +170755769539,217,0 +170755769588,218,0 +170755769638,218,0 +170755769686,219,0 +170755769734,220,0 +170755769783,220,0 +170755769831,221,0 +170755769881,222,0 +170755769930,222,0 +170755769978,222,0 +170755770026,222,0 +170755770074,223,0 +170755770122,224,0 +170755770171,222,0 +170755770219,222,0 +170755770269,221,0 +170755770317,217,0 +170755770365,217,0 +170755770413,218,0 +170755770461,218,0 +170755770509,219,0 +170755770557,219,0 +170755770606,220,0 +170755770654,221,0 +170755770702,220,0 +170755770751,222,0 +170755770801,222,0 +170755770850,222,0 +170755770898,223,0 +170755770946,223,0 +170755770994,223,0 +170755771042,223,0 +170755771092,221,0 +170755771141,217,0 +170755771189,217,0 +170755771237,217,0 +170755771285,218,0 +170755771333,218,0 +170755771382,219,0 +170755771430,220,0 +170755771480,220,0 +170755771529,221,0 +170755771579,222,0 +170755771628,223,0 +170755771676,222,0 +170755771724,222,0 +170755771772,222,0 +170755771820,223,0 +170755771870,220,0 +170755771918,221,0 +170755771967,216,0 +170755772015,217,0 +170755772063,217,0 +170755772112,218,0 +170755772160,219,0 +170755772210,219,0 +170755772259,219,0 +170755772309,219,0 +170755772357,221,0 +170755772405,221,0 +170755772453,221,0 +170755772500,221,0 +170755772548,221,0 +170755772598,222,0 +170755772647,222,0 +170755772697,221,0 +170755772745,216,0 +170755772792,217,0 +170755772840,217,0 +170755772888,218,0 +170755772936,218,0 +170755772984,218,0 +170755773032,220,0 +170755773079,220,0 +170755773127,220,0 +170755773177,222,0 +170755773224,222,0 +170755773272,222,0 +170755773320,222,0 +170755773368,223,0 +170755773416,223,0 +170755773464,223,0 +170755773512,221,0 +170755773560,216,0 +170755773607,217,0 +170755773655,218,0 +170755773703,218,0 +170755773752,220,0 +170755773800,220,0 +170755773848,220,0 +170755773896,220,0 +170755773944,221,0 +170755773992,221,0 +170755774039,223,0 +170755774087,225,0 +170755774135,222,0 +170755774184,222,0 +170755774232,222,0 +170755774280,225,0 +170755774328,217,0 +170755774376,217,0 +170755774424,218,0 +170755774472,218,0 +170755774521,219,0 +170755774570,220,0 +170755774618,220,0 +170755774666,222,0 +170755774714,221,0 +170755774762,222,0 +170755774810,222,0 +170755774857,222,0 +170755774907,223,0 +170755774955,222,0 +170755775003,223,0 +170755775050,222,0 +170755775098,222,0 +170755775146,217,0 +170755775194,217,0 +170755775242,219,0 +170755775290,219,0 +170755775338,220,0 +170755775385,221,0 +170755775433,221,0 +170755775481,221,0 +170755775529,223,0 +170755775577,222,0 +170755775625,222,0 +170755775672,223,0 +170755775720,221,0 +170755775770,223,0 +170755775818,223,0 +170755775866,222,0 +170755775913,221,0 +170755775961,217,0 +170755776009,218,0 +170755776057,218,0 +170755776105,219,0 +170755776154,220,0 +170755776202,220,0 +170755776250,220,0 +170755776298,221,0 +170755776347,222,0 +170755776396,221,0 +170755776444,223,0 +170755776492,224,0 +170755776540,222,0 +170755776589,224,0 +170755776637,222,0 +170755776685,221,0 +170755776733,216,0 +170755776781,217,0 +170755776829,219,0 +170755776876,220,0 +170755776926,220,0 +170755776974,220,0 +170755777022,221,0 +170755777069,222,0 +170755777119,223,0 +170755777168,222,0 +170755777218,222,0 +170755777266,223,0 +170755777315,223,0 +170755777363,223,0 +170755777411,223,0 +170755777459,221,0 +170755777509,221,0 +170755777557,216,0 +170755777606,218,0 +170755777654,227,0 +170755777704,221,0 +170755777752,221,0 +170755777799,221,0 +170755777849,222,0 +170755777897,222,0 +170755777945,222,0 +170755777992,222,0 +170755778040,222,0 +170755778088,222,0 +170755778136,222,0 +170755778184,222,0 +170755778232,222,0 +170755778280,221,0 +170755778327,219,0 +170755778375,219,0 +170755778423,220,0 +170755778471,220,0 +170755778519,219,0 +170755778567,222,0 +170755778614,222,0 +170755778662,222,0 +170755778710,223,0 +170755778758,222,0 +170755778806,222,0 +170755778854,225,0 +170755778902,222,0 +170755778950,221,0 +170755778997,222,0 +170755779045,222,0 +170755779093,221,0 +170755779141,219,0 +170755779189,219,0 +170755779237,220,0 +170755779285,221,0 +170755779334,220,0 +170755779382,221,0 +170755779430,221,0 +170755779478,222,0 +170755779525,222,0 +170755779573,222,0 +170755779621,222,0 +170755779669,222,0 +170755779717,222,0 +170755779766,222,0 +170755779814,222,0 +170755779862,222,0 +170755779910,222,0 +170755779958,218,0 +170755780005,219,0 +170755780053,220,0 +170755780101,220,0 +170755780149,221,0 +170755780197,222,0 +170755780245,222,0 +170755780293,222,0 +170755780341,222,0 +170755780390,221,0 +170755780438,222,0 +170755780487,223,0 +170755780537,223,0 +170755780585,222,0 +170755780634,223,0 +170755780682,222,0 +170755780730,221,0 +170755780778,216,0 +170755780826,217,0 +170755780874,217,0 +170755780924,218,0 +170755780971,219,0 +170755781021,219,0 +170755781070,220,0 +170755781120,221,0 +170755781169,221,0 +170755781217,221,0 +170755781267,221,0 +170755781315,222,0 +170755781364,223,0 +170755781412,222,0 +170755781460,222,0 +170755781508,222,0 +170755781557,217,0 +170755781607,217,0 +170755781655,217,0 +170755781703,218,0 +170755781752,219,0 +170755781800,218,0 +170755781850,220,0 +170755781899,220,0 +170755781949,220,0 +170755781998,222,0 +170755782046,222,0 +170755782096,222,0 +170755782144,223,0 +170755782192,223,0 +170755782241,222,0 +170755782289,222,0 +170755782339,217,0 +170755782387,216,0 +170755782435,217,0 +170755782484,217,0 +170755782533,217,0 +170755782581,218,0 +170755782629,219,0 +170755782679,219,0 +170755782728,220,0 +170755782778,220,0 +170755782827,221,0 +170755782875,222,0 +170755782923,221,0 +170755782971,222,0 +170755783021,223,0 +170755783068,222,0 +170755783118,221,0 +170755783166,217,0 +170755783214,218,0 +170755783261,218,0 +170755783309,218,0 +170755783357,219,0 +170755783406,220,0 +170755783454,220,0 +170755783502,220,0 +170755783550,220,0 +170755783598,222,0 +170755783646,223,0 +170755783694,222,0 +170755783741,221,0 +170755783789,222,0 +170755783837,222,0 +170755783887,222,0 +170755783934,220,0 +170755783982,216,0 +170755784030,218,0 +170755784078,218,0 +170755784126,219,0 +170755784174,220,0 +170755784221,220,0 +170755784269,220,0 +170755784317,220,0 +170755784365,223,0 +170755784413,223,0 +170755784461,222,0 +170755784509,222,0 +170755784556,224,0 +170755784604,222,0 +170755784652,222,0 +170755784702,222,0 +170755784749,216,0 +170755784797,216,0 +170755784845,217,0 +170755784893,217,0 +170755784941,218,0 +170755784989,219,0 +170755785037,219,0 +170755785084,220,0 +170755785132,221,0 +170755785180,222,0 +170755785228,221,0 +170755785275,220,0 +170755785323,221,0 +170755785371,222,0 +170755785421,222,0 +170755785468,222,0 +170755785516,221,0 +170755785564,215,0 +170755785612,216,0 +170755785662,217,0 +170755785710,217,0 +170755785758,218,0 +170755785807,218,0 +170755785857,219,0 +170755785905,219,0 +170755785953,220,0 +170755786000,222,0 +170755786050,221,0 +170755786098,222,0 +170755786146,223,0 +170755786194,223,0 +170755786243,222,0 +170755786293,220,0 +170755786341,221,0 +170755786389,216,0 +170755786437,216,0 +170755786485,217,0 +170755786532,218,0 +170755786580,218,0 +170755786628,219,0 +170755786676,219,0 +170755786724,219,0 +170755786773,220,0 +170755786822,221,0 +170755786871,223,0 +170755786919,223,0 +170755786967,222,0 +170755787015,222,0 +170755787064,222,0 +170755787112,222,0 +170755787160,218,0 +170755787208,217,0 +170755787256,217,0 +170755787306,218,0 +170755787354,218,0 +170755787401,220,0 +170755787449,220,0 +170755787497,221,0 +170755787545,221,0 +170755787593,222,0 +170755787641,222,0 +170755787689,223,0 +170755787739,223,0 +170755787787,223,0 +170755787834,221,0 +170755787882,222,0 +170755787932,221,0 +170755787980,219,0 +170755788028,218,0 +170755788075,219,0 +170755788123,218,0 +170755788171,220,0 +170755788219,220,0 +170755788267,220,0 +170755788314,221,0 +170755788362,221,0 +170755788410,221,0 +170755788458,221,0 +170755788506,222,0 +170755788554,222,0 +170755788602,222,0 +170755788649,219,0 +170755788697,221,0 +170755788745,217,0 +170755788793,221,0 +170755788841,218,0 +170755788889,219,0 +170755788937,219,0 +170755788984,220,0 +170755789032,220,0 +170755789080,220,0 +170755789130,221,0 +170755789179,221,0 +170755789227,223,0 +170755789275,222,0 +170755789325,222,0 +170755789373,222,0 +170755789421,223,0 +170755789468,222,0 +170755789516,222,0 +170755789566,221,0 +170755789614,223,0 +170755789662,222,0 +170755789710,221,0 +170755789757,218,0 +170755789805,217,0 +170755789853,221,0 +170755789901,222,0 +170755789948,220,0 +170755789996,222,0 +170755790044,222,0 +170755790092,222,0 +170755790141,222,0 +170755790189,222,0 +170755790237,225,0 +170755790285,222,0 +170755790333,223,0 +170755790381,222,0 +170755790428,223,0 +170755790476,222,0 +170755790524,222,0 +170755790572,221,0 +170755790620,221,0 +170755790669,219,0 +170755790717,220,0 +170755790765,221,0 +170755790813,222,0 +170755790860,221,0 +170755790908,220,0 +170755790956,222,0 +170755791004,223,0 +170755791052,221,0 +170755791101,222,0 +170755791149,223,0 +170755791197,222,0 +170755791244,223,0 +170755791292,222,0 +170755791340,222,0 +170755791388,222,0 +170755791436,222,0 +170755791484,221,0 +170755791531,217,0 +170755791581,218,0 +170755791629,219,0 +170755791677,220,0 +170755791726,219,0 +170755791774,220,0 +170755791822,221,0 +170755791870,221,0 +170755791917,221,0 +170755791965,222,0 +170755792015,223,0 +170755792064,222,0 +170755792112,222,0 +170755792160,223,0 +170755792209,222,0 +170755792257,222,0 +170755792305,223,0 +170755792353,221,0 +170755792403,221,0 +170755792451,219,0 +170755792499,219,0 +170755792547,219,0 +170755792595,221,0 +170755792644,220,0 +170755792692,221,0 +170755792742,221,0 +170755792791,221,0 +170755792839,222,0 +170755792887,222,0 +170755792934,222,0 +170755792982,223,0 +170755793030,222,0 +170755793078,222,0 +170755793126,222,0 +170755793174,222,0 +170755793222,222,0 +170755793270,222,0 +170755793318,221,0 +170755793366,219,0 +170755793414,219,0 +170755793462,220,0 +170755793509,220,0 +170755793559,221,0 +170755793608,220,0 +170755793656,221,0 +170755793704,222,0 +170755793752,223,0 +170755793802,224,0 +170755793850,221,0 +170755793898,223,0 +170755793946,223,0 +170755793994,223,0 +170755794042,223,0 +170755794091,222,0 +170755794141,222,0 +170755794188,222,0 +170755794238,218,0 +170755794286,218,0 +170755794335,218,0 +170755794385,219,0 +170755794434,220,0 +170755794484,220,0 +170755794533,220,0 +170755794581,221,0 +170755794631,220,0 +170755794678,222,0 +170755794726,221,0 +170755794774,223,0 +170755794824,223,0 +170755794872,223,0 +170755794919,223,0 +170755794967,222,0 +170755795015,223,0 +170755795063,222,0 +170755795113,221,0 +170755795162,217,0 +170755795212,217,0 +170755795260,218,0 +170755795308,218,0 +170755795356,220,0 +170755795404,219,0 +170755795451,220,0 +170755795499,220,0 +170755795549,221,0 +170755795597,221,0 +170755795646,222,0 +170755795694,222,0 +170755795742,222,0 +170755795792,222,0 +170755795840,222,0 +170755795888,222,0 +170755795936,223,0 +170755795984,222,0 +170755796031,216,0 +170755796081,215,0 +170755796129,216,0 +170755796178,216,0 +170755796226,217,0 +170755796274,217,0 +170755796322,218,0 +170755796370,219,0 +170755796418,219,0 +170755796467,220,0 +170755796517,221,0 +170755796565,221,0 +170755796614,222,0 +170755796664,224,0 +170755796713,222,0 +170755796761,223,0 +170755796811,222,0 +170755796859,222,0 +170755796908,223,0 +170755796956,215,0 +170755797004,216,0 +170755797052,217,0 +170755797101,217,0 +170755797149,217,0 +170755797197,218,0 +170755797245,219,0 +170755797295,219,0 +170755797342,220,0 +170755797392,221,0 +170755797440,225,0 +170755797488,223,0 +170755797536,224,0 +170755797584,222,0 +170755797631,222,0 +170755797679,222,0 +170755797727,223,0 +170755797775,221,0 +170755797824,216,0 +170755797872,216,0 +170755797922,217,0 +170755797970,217,0 +170755798019,217,0 +170755798069,218,0 +170755798117,218,0 +170755798165,219,0 +170755798213,220,0 +170755798260,219,0 +170755798308,221,0 +170755798358,221,0 +170755798406,222,0 +170755798455,222,0 +170755798504,222,0 +170755798552,222,0 +170755798600,223,0 +170755798648,222,0 +170755798696,222,0 +170755798744,217,0 +170755798792,217,0 +170755798840,218,0 +170755798888,218,0 +170755798936,218,0 +170755798983,219,0 +170755799033,221,0 +170755799082,220,0 +170755799132,221,0 +170755799180,221,0 +170755799228,221,0 +170755799276,222,0 +170755799323,223,0 +170755799371,223,0 +170755799419,223,0 +170755799467,223,0 +170755799517,221,0 +170755799565,222,0 +170755799613,216,0 +170755799662,216,0 +170755799710,216,0 +170755799760,217,0 +170755799808,218,0 +170755799856,218,0 +170755799905,218,0 +170755799953,219,0 +170755800001,220,0 +170755800049,221,0 +170755800097,221,0 +170755800145,221,0 +170755800194,221,0 +170755800242,222,0 +170755800290,224,0 +170755800338,224,0 +170755800386,222,0 +170755800435,222,0 +170755800485,221,0 +170755800533,216,0 +170755800581,216,0 +170755800629,216,0 +170755800677,218,0 +170755800725,218,0 +170755800774,219,0 +170755800822,219,0 +170755800872,220,0 +170755800921,221,0 +170755800969,221,0 +170755801017,221,0 +170755801065,219,0 +170755801112,222,0 +170755801160,222,0 +170755801208,222,0 +170755801258,223,0 +170755801307,223,0 +170755801355,222,0 +170755801403,216,0 +170755801451,215,0 +170755801499,216,0 +170755801547,217,0 +170755801595,217,0 +170755801643,218,0 +170755801692,218,0 +170755801742,219,0 +170755801790,219,0 +170755801839,220,0 +170755801887,221,0 +170755801935,221,0 +170755801983,222,0 +170755802033,221,0 +170755802081,223,0 +170755802129,222,0 +170755802177,222,0 +170755802226,222,0 +170755802276,221,0 +170755802325,214,0 +170755802373,215,0 +170755802421,216,0 +170755802471,217,0 +170755802520,217,0 +170755802568,218,0 +170755802616,218,0 +170755802664,219,0 +170755802712,221,0 +170755802762,221,0 +170755802810,221,0 +170755802858,222,0 +170755802906,223,0 +170755802953,223,0 +170755803001,222,0 +170755803049,223,0 +170755803097,222,0 +170755803145,221,0 +170755803193,216,0 +170755803241,216,0 +170755803289,216,0 +170755803337,217,0 +170755803385,218,0 +170755803433,219,0 +170755803481,219,0 +170755803529,219,0 +170755803577,220,0 +170755803626,220,0 +170755803676,222,0 +170755803725,222,0 +170755803775,222,0 +170755803823,223,0 +170755803872,223,0 +170755803920,225,0 +170755803970,223,0 +170755804019,222,0 +170755804067,223,0 +170755804115,215,0 +170755804163,215,0 +170755804211,215,0 +170755804259,215,0 +170755804308,217,0 +170755804358,217,0 +170755804406,218,0 +170755804454,218,0 +170755804502,219,0 +170755804550,220,0 +170755804599,221,0 +170755804649,221,0 +170755804696,221,0 +170755804746,222,0 +170755804794,221,0 +170755804844,222,0 +170755804893,223,0 +170755804941,221,0 +170755804991,216,0 +170755805039,214,0 +170755805088,215,0 +170755805138,215,0 +170755805187,216,0 +170755805235,217,0 +170755805283,216,0 +170755805331,217,0 +170755805380,219,0 +170755805428,219,0 +170755805476,220,0 +170755805524,220,0 +170755805572,222,0 +170755805620,221,0 +170755805667,221,0 +170755805715,223,0 +170755805763,222,0 +170755805811,222,0 +170755805859,221,0 +170755805907,215,0 +170755805954,214,0 +170755806002,215,0 +170755806050,215,0 +170755806098,215,0 +170755806146,216,0 +170755806194,217,0 +170755806244,217,0 +170755806291,218,0 +170755806341,219,0 +170755806389,220,0 +170755806437,220,0 +170755806485,221,0 +170755806533,223,0 +170755806582,222,0 +170755806630,220,0 +170755806680,222,0 +170755806728,222,0 +170755806776,215,0 +170755806823,214,0 +170755806871,215,0 +170755806919,216,0 +170755806967,216,0 +170755807015,217,0 +170755807063,217,0 +170755807111,217,0 +170755807159,217,0 +170755807207,219,0 +170755807256,219,0 +170755807306,220,0 +170755807354,220,0 +170755807401,221,0 +170755807449,222,0 +170755807497,221,0 +170755807545,222,0 +170755807593,222,0 +170755807642,222,0 +170755807690,216,0 +170755807738,216,0 +170755807787,217,0 +170755807835,217,0 +170755807883,217,0 +170755807930,218,0 +170755807978,219,0 +170755808026,218,0 +170755808074,221,0 +170755808123,221,0 +170755808171,221,0 +170755808219,222,0 +170755808267,222,0 +170755808315,222,0 +170755808363,223,0 +170755808412,222,0 +170755808462,222,0 +170755808510,222,0 +170755808557,216,0 +170755808607,216,0 +170755808655,217,0 +170755808703,217,0 +170755808752,218,0 +170755808800,218,0 +170755808850,220,0 +170755808897,220,0 +170755808945,221,0 +170755808995,221,0 +170755809042,222,0 +170755809090,221,0 +170755809140,222,0 +170755809187,221,0 +170755809235,222,0 +170755809283,222,0 +170755809331,222,0 +170755809379,221,0 +170755809427,221,0 +170755809474,216,0 +170755809522,216,0 +170755809570,217,0 +170755809618,217,0 +170755809666,218,0 +170755809715,219,0 +170755809763,218,0 +170755809811,220,0 +170755809859,220,0 +170755809907,220,0 +170755809954,221,0 +170755810002,222,0 +170755810050,222,0 +170755810098,222,0 +170755810146,222,0 +170755810194,222,0 +170755810242,222,0 +170755810290,222,0 +170755810337,221,0 +170755810387,216,0 +170755810436,216,0 +170755810484,218,0 +170755810532,217,0 +170755810581,219,0 +170755810631,220,0 +170755810679,219,0 +170755810726,219,0 +170755810774,220,0 +170755810822,221,0 +170755810872,220,0 +170755810919,221,0 +170755810967,220,0 +170755811015,223,0 +170755811063,221,0 +170755811111,222,0 +170755811159,222,0 +170755811208,222,0 +170755811256,217,0 +170755811304,216,0 +170755811353,217,0 +170755811401,218,0 +170755811449,218,0 +170755811497,220,0 +170755811545,220,0 +170755811593,219,0 +170755811640,221,0 +170755811688,220,0 +170755811736,223,0 +170755811784,222,0 +170755811832,222,0 +170755811881,223,0 +170755811929,223,0 +170755811978,221,0 +170755812026,222,0 +170755812074,222,0 +170755812122,222,0 +170755812170,217,0 +170755812218,217,0 +170755812267,218,0 +170755812315,217,0 +170755812365,220,0 +170755812412,220,0 +170755812460,220,0 +170755812508,221,0 +170755812557,222,0 +170755812605,222,0 +170755812653,223,0 +170755812701,223,0 +170755812749,223,0 +170755812796,223,0 +170755812844,222,0 +170755812892,222,0 +170755812940,222,0 +170755812988,222,0 +170755813036,218,0 +170755813084,218,0 +170755813131,218,0 +170755813179,219,0 +170755813227,219,0 +170755813275,220,0 +170755813323,221,0 +170755813371,220,0 +170755813418,222,0 +170755813466,222,0 +170755813514,222,0 +170755813562,222,0 +170755813610,223,0 +170755813658,223,0 +170755813706,223,0 +170755813755,223,0 +170755813803,222,0 +170755813851,222,0 +170755813899,222,0 +170755813948,218,0 +170755813998,217,0 +170755814046,218,0 +170755814095,219,0 +170755814143,219,0 +170755814191,220,0 +170755814241,221,0 +170755814290,221,0 +170755814338,222,0 +170755814388,222,0 +170755814435,222,0 +170755814483,223,0 +170755814531,223,0 +170755814579,223,0 +170755814627,222,0 +170755814675,222,0 +170755814723,222,0 +170755814771,222,0 +170755814819,216,0 +170755814867,216,0 +170755814915,218,0 +170755814964,218,0 +170755815012,218,0 +170755815062,219,0 +170755815112,221,0 +170755815161,220,0 +170755815210,221,0 +170755815258,221,0 +170755815308,221,0 +170755815356,223,0 +170755815404,222,0 +170755815452,222,0 +170755815500,223,0 +170755815549,223,0 +170755815597,221,0 +170755815645,222,0 +170755815695,226,0 +170755815743,215,0 +170755815792,215,0 +170755815840,216,0 +170755815888,217,0 +170755815936,217,0 +170755815984,218,0 +170755816033,219,0 +170755816083,219,0 +170755816131,219,0 +170755816180,221,0 +170755816228,222,0 +170755816278,221,0 +170755816327,223,0 +170755816375,224,0 +170755816425,223,0 +170755816473,223,0 +170755816521,224,0 +170755816570,222,0 +170755816618,216,0 +170755816666,214,0 +170755816716,214,0 +170755816764,214,0 +170755816811,215,0 +170755816859,215,0 +170755816907,216,0 +170755816955,217,0 +170755817003,218,0 +170755817051,218,0 +170755817099,219,0 +170755817147,220,0 +170755817197,221,0 +170755817244,221,0 +170755817292,222,0 +170755817340,222,0 +170755817390,222,0 +170755817439,222,0 +170755817487,222,0 +170755817537,216,0 +170755817586,214,0 +170755817636,214,0 +170755817684,214,0 +170755817732,215,0 +170755817780,215,0 +170755817828,215,0 +170755817877,216,0 +170755817925,217,0 +170755817973,217,0 +170755818021,218,0 +170755818069,219,0 +170755818117,217,0 +170755818165,220,0 +170755818213,221,0 +170755818261,221,0 +170755818309,222,0 +170755818358,222,0 +170755818406,221,0 +170755818454,215,0 +170755818504,215,0 +170755818553,215,0 +170755818601,215,0 +170755818651,215,0 +170755818698,216,0 +170755818746,216,0 +170755818796,216,0 +170755818845,217,0 +170755818895,218,0 +170755818943,218,0 +170755818991,219,0 +170755819039,220,0 +170755819088,221,0 +170755819138,222,0 +170755819186,221,0 +170755819234,222,0 +170755819283,227,0 +170755819331,215,0 +170755819379,215,0 +170755819427,215,0 +170755819475,215,0 +170755819524,215,0 +170755819574,215,0 +170755819623,216,0 +170755819671,217,0 +170755819719,218,0 +170755819769,219,0 +170755819817,219,0 +170755819866,220,0 +170755819916,220,0 +170755819964,221,0 +170755820012,221,0 +170755820060,223,0 +170755820109,221,0 +170755820159,222,0 +170755820208,216,0 +170755820256,214,0 +170755820304,215,0 +170755820352,214,0 +170755820400,215,0 +170755820448,215,0 +170755820496,215,0 +170755820544,215,0 +170755820592,216,0 +170755820639,217,0 +170755820687,218,0 +170755820737,218,0 +170755820786,220,0 +170755820834,220,0 +170755820882,221,0 +170755820932,222,0 +170755820980,221,0 +170755821028,221,0 +170755821075,222,0 +170755821123,215,0 +170755821173,214,0 +170755821221,215,0 +170755821269,215,0 +170755821317,215,0 +170755821366,215,0 +170755821416,215,0 +170755821465,217,0 +170755821513,217,0 +170755821563,218,0 +170755821611,218,0 +170755821660,218,0 +170755821710,219,0 +170755821759,219,0 +170755821807,219,0 +170755821857,221,0 +170755821905,220,0 +170755821953,221,0 +170755822002,221,0 +170755822052,222,0 +170755822100,223,0 +170755822148,224,0 +170755822197,223,0 +170755822245,223,0 +170755822293,223,0 +170755822341,222,0 +170755822390,222,0 +170755822438,215,0 +170755822486,214,0 +170755822536,215,0 +170755822584,216,0 +170755822631,216,0 +170755822679,217,0 +170755822729,218,0 +170755822777,218,0 +170755822826,218,0 +170755822874,218,0 +170755822924,220,0 +170755822972,220,0 +170755823020,221,0 +170755823068,221,0 +170755823116,217,0 +170755823164,222,0 +170755823213,222,0 +170755823261,223,0 +170755823309,219,0 +170755823357,216,0 +170755823405,215,0 +170755823453,216,0 +170755823501,216,0 +170755823550,217,0 +170755823598,217,0 +170755823646,217,0 +170755823694,219,0 +170755823742,219,0 +170755823790,220,0 +170755823838,220,0 +170755823886,221,0 +170755823934,221,0 +170755823982,222,0 +170755824030,222,0 +170755824077,222,0 +170755824125,223,0 +170755824173,222,0 +170755824221,222,0 +170755824271,215,0 +170755824319,215,0 +170755824368,215,0 +170755824416,216,0 +170755824464,217,0 +170755824512,218,0 +170755824560,218,0 +170755824608,218,0 +170755824656,219,0 +170755824706,220,0 +170755824754,221,0 +170755824802,221,0 +170755824850,222,0 +170755824899,222,0 +170755824949,223,0 +170755824997,222,0 +170755825045,222,0 +170755825093,222,0 +170755825141,216,0 +170755825189,215,0 +170755825237,216,0 +170755825286,216,0 +170755825334,217,0 +170755825384,217,0 +170755825433,218,0 +170755825481,218,0 +170755825529,218,0 +170755825577,220,0 +170755825625,221,0 +170755825675,223,0 +170755825724,222,0 +170755825772,222,0 +170755825820,222,0 +170755825868,222,0 +170755825916,222,0 +170755825964,222,0 +170755826012,221,0 +170755826060,215,0 +170755826108,215,0 +170755826156,216,0 +170755826205,217,0 +170755826255,218,0 +170755826303,218,0 +170755826351,218,0 +170755826399,219,0 +170755826448,220,0 +170755826498,220,0 +170755826546,222,0 +170755826595,222,0 +170755826645,223,0 +170755826694,223,0 +170755826742,223,0 +170755826790,223,0 +170755826840,222,0 +170755826889,222,0 +170755826939,216,0 +170755826988,216,0 +170755827036,215,0 +170755827086,216,0 +170755827134,216,0 +170755827181,217,0 +170755827229,218,0 +170755827279,218,0 +170755827327,221,0 +170755827375,220,0 +170755827423,220,0 +170755827471,222,0 +170755827520,223,0 +170755827568,222,0 +170755827616,222,0 +170755827666,224,0 +170755827714,222,0 +170755827762,222,0 +170755827810,221,0 +170755827859,215,0 +170755827907,216,0 +170755827955,216,0 +170755828003,217,0 +170755828051,217,0 +170755828100,215,0 +170755828150,218,0 +170755828198,218,0 +170755828247,219,0 +170755828297,221,0 +170755828346,221,0 +170755828396,221,0 +170755828444,222,0 +170755828492,223,0 +170755828541,222,0 +170755828591,222,0 +170755828638,222,0 +170755828686,222,0 +170755828734,216,0 +170755828784,216,0 +170755828832,216,0 +170755828879,217,0 +170755828927,217,0 +170755828975,217,0 +170755829024,220,0 +170755829072,220,0 +170755829120,219,0 +170755829170,220,0 +170755829218,220,0 +170755829267,221,0 +170755829317,221,0 +170755829365,222,0 +170755829412,221,0 +170755829460,223,0 +170755829510,223,0 +170755829559,221,0 +170755829609,217,0 +170755829657,215,0 +170755829706,215,0 +170755829754,216,0 +170755829802,217,0 +170755829852,217,0 +170755829900,218,0 +170755829947,218,0 +170755829995,220,0 +170755830043,220,0 +170755830091,221,0 +170755830139,223,0 +170755830187,222,0 +170755830235,223,0 +170755830283,221,0 +170755830331,223,0 +170755830378,223,0 +170755830426,222,0 +170755830474,218,0 +170755830522,215,0 +170755830570,214,0 +170755830618,215,0 +170755830665,214,0 +170755830713,215,0 +170755830761,216,0 +170755830809,216,0 +170755830857,217,0 +170755830904,217,0 +170755830952,218,0 +170755831000,219,0 +170755831048,220,0 +170755831096,220,0 +170755831144,221,0 +170755831191,222,0 +170755831239,222,0 +170755831287,221,0 +170755831335,222,0 +170755831383,222,0 +170755831432,215,0 +170755831482,214,0 +170755831530,214,0 +170755831578,215,0 +170755831627,214,0 +170755831675,215,0 +170755831723,216,0 +170755831771,216,0 +170755831819,217,0 +170755831868,217,0 +170755831918,220,0 +170755831966,220,0 +170755832014,220,0 +170755832063,220,0 +170755832111,221,0 +170755832161,221,0 +170755832209,221,0 +170755832257,221,0 +170755832306,216,0 +170755832354,214,0 +170755832402,214,0 +170755832450,214,0 +170755832498,215,0 +170755832545,216,0 +170755832593,216,0 +170755832641,216,0 +170755832689,217,0 +170755832738,217,0 +170755832786,218,0 +170755832836,220,0 +170755832884,220,0 +170755832932,220,0 +170755832980,221,0 +170755833028,222,0 +170755833075,222,0 +170755833123,222,0 +170755833171,222,0 +170755833219,215,0 +170755833267,214,0 +170755833315,214,0 +170755833363,215,0 +170755833412,214,0 +170755833462,215,0 +170755833510,216,0 +170755833558,217,0 +170755833606,218,0 +170755833653,218,0 +170755833701,219,0 +170755833751,220,0 +170755833799,221,0 +170755833847,222,0 +170755833894,221,0 +170755833942,224,0 +170755833990,222,0 +170755834038,222,0 +170755834086,221,0 +170755834134,214,0 +170755834182,214,0 +170755834230,215,0 +170755834278,215,0 +170755834326,216,0 +170755834374,217,0 +170755834422,218,0 +170755834469,219,0 +170755834517,219,0 +170755834567,220,0 +170755834617,220,0 +170755834664,221,0 +170755834712,222,0 +170755834760,221,0 +170755834808,222,0 +170755834856,222,0 +170755834904,223,0 +170755834952,222,0 +170755835002,216,0 +170755835051,215,0 +170755835101,215,0 +170755835150,216,0 +170755835200,217,0 +170755835249,217,0 +170755835297,218,0 +170755835347,218,0 +170755835395,219,0 +170755835443,219,0 +170755835490,220,0 +170755835540,220,0 +170755835588,221,0 +170755835636,221,0 +170755835683,222,0 +170755835733,221,0 +170755835781,222,0 +170755835829,222,0 +170755835876,221,0 +170755835924,216,0 +170755835972,215,0 +170755836022,216,0 +170755836069,217,0 +170755836117,218,0 +170755836167,218,0 +170755836216,219,0 +170755836264,218,0 +170755836314,219,0 +170755836362,222,0 +170755836410,221,0 +170755836459,220,0 +170755836507,221,0 +170755836557,221,0 +170755836604,221,0 +170755836654,222,0 +170755836703,222,0 +170755836753,221,0 +170755836802,215,0 +170755836852,215,0 +170755836901,216,0 +170755836949,216,0 +170755836997,217,0 +170755837045,218,0 +170755837093,217,0 +170755837140,218,0 +170755837188,219,0 +170755837236,219,0 +170755837286,220,0 +170755837334,221,0 +170755837382,221,0 +170755837431,222,0 +170755837479,222,0 +170755837529,222,0 +170755837577,222,0 +170755837625,222,0 +170755837673,222,0 +170755837721,215,0 +170755837770,216,0 +170755837818,216,0 +170755837866,216,0 +170755837914,217,0 +170755837962,217,0 +170755838010,218,0 +170755838058,218,0 +170755838106,219,0 +170755838154,220,0 +170755838203,220,0 +170755838251,222,0 +170755838299,222,0 +170755838347,223,0 +170755838395,222,0 +170755838443,222,0 +170755838492,222,0 +170755838542,225,0 +170755838590,216,0 +170755838638,215,0 +170755838686,216,0 +170755838735,217,0 +170755838783,218,0 +170755838831,218,0 +170755838879,218,0 +170755838927,219,0 +170755838975,220,0 +170755839023,221,0 +170755839072,220,0 +170755839120,221,0 +170755839170,222,0 +170755839217,222,0 +170755839265,223,0 +170755839313,224,0 +170755839361,222,0 +170755839409,222,0 +170755839457,221,0 +170755839505,217,0 +170755839553,216,0 +170755839601,217,0 +170755839649,217,0 +170755839698,217,0 +170755839748,219,0 +170755839796,220,0 +170755839844,221,0 +170755839893,220,0 +170755839941,221,0 +170755839989,221,0 +170755840039,222,0 +170755840087,222,0 +170755840135,222,0 +170755840183,222,0 +170755840231,223,0 +170755840278,222,0 +170755840326,223,0 +170755840374,221,0 +170755840424,217,0 +170755840472,217,0 +170755840521,219,0 +170755840571,219,0 +170755840620,220,0 +170755840669,223,0 +170755840719,221,0 +170755840768,222,0 +170755840818,221,0 +170755840866,222,0 +170755840914,223,0 +170755840962,223,0 +170755841010,223,0 +170755841058,224,0 +170755841105,223,0 +170755841153,222,0 +170755841201,222,0 +170755841251,221,0 +170755841300,216,0 +170755841350,217,0 +170755841398,217,0 +170755841445,218,0 +170755841495,218,0 +170755841543,219,0 +170755841591,218,0 +170755841639,222,0 +170755841687,220,0 +170755841734,222,0 +170755841784,223,0 +170755841833,222,0 +170755841883,222,0 +170755841931,223,0 +170755841979,223,0 +170755842027,223,0 +170755842076,223,0 +170755842124,222,0 +170755842174,220,0 +170755842222,215,0 +170755842271,215,0 +170755842319,216,0 +170755842367,217,0 +170755842415,215,0 +170755842464,218,0 +170755842512,219,0 +170755842562,219,0 +170755842611,220,0 +170755842661,221,0 +170755842710,220,0 +170755842758,221,0 +170755842806,222,0 +170755842856,223,0 +170755842904,222,0 +170755842952,222,0 +170755843000,222,0 +170755843047,221,0 +170755843097,215,0 +170755843145,215,0 +170755843193,216,0 +170755843242,216,0 +170755843290,217,0 +170755843340,218,0 +170755843389,218,0 +170755843439,219,0 +170755843487,219,0 +170755843534,220,0 +170755843582,220,0 +170755843630,222,0 +170755843680,221,0 +170755843729,222,0 +170755843777,222,0 +170755843825,222,0 +170755843873,222,0 +170755843921,222,0 +170755843971,221,0 +170755844019,214,0 +170755844067,214,0 +170755844116,214,0 +170755844166,215,0 +170755844214,216,0 +170755844262,217,0 +170755844311,218,0 +170755844361,218,0 +170755844409,218,0 +170755844457,220,0 +170755844505,221,0 +170755844553,221,0 +170755844600,221,0 +170755844650,221,0 +170755844699,221,0 +170755844747,220,0 +170755844795,222,0 +170755844845,222,0 +170755844893,215,0 +170755844940,214,0 +170755844988,214,0 +170755845038,215,0 +170755845087,216,0 +170755845136,216,0 +170755845184,217,0 +170755845232,217,0 +170755845280,218,0 +170755845328,219,0 +170755845376,220,0 +170755845425,219,0 +170755845475,221,0 +170755845524,221,0 +170755845572,221,0 +170755845622,222,0 +170755845670,222,0 +170755845718,222,0 +170755845766,216,0 +170755845813,214,0 +170755845863,214,0 +170755845911,214,0 +170755845959,215,0 +170755846006,216,0 +170755846054,216,0 +170755846102,217,0 +170755846152,218,0 +170755846200,218,0 +170755846248,220,0 +170755846297,220,0 +170755846345,221,0 +170755846393,222,0 +170755846442,222,0 +170755846490,222,0 +170755846538,222,0 +170755846586,222,0 +170755846634,222,0 +170755846684,215,0 +170755846732,214,0 +170755846779,215,0 +170755846827,214,0 +170755846875,216,0 +170755846923,215,0 +170755846973,216,0 +170755847020,218,0 +170755847070,217,0 +170755847118,218,0 +170755847166,219,0 +170755847214,221,0 +170755847262,221,0 +170755847311,222,0 +170755847359,222,0 +170755847407,224,0 +170755847455,222,0 +170755847503,222,0 +170755847552,222,0 +170755847600,215,0 +170755847648,215,0 +170755847696,215,0 +170755847744,216,0 +170755847794,216,0 +170755847842,217,0 +170755847891,217,0 +170755847939,217,0 +170755847987,218,0 +170755848035,219,0 +170755848083,220,0 +170755848131,220,0 +170755848179,220,0 +170755848227,221,0 +170755848276,222,0 +170755848324,222,0 +170755848374,221,0 +170755848422,222,0 +170755848469,215,0 +170755848519,215,0 +170755848569,215,0 +170755848617,216,0 +170755848665,216,0 +170755848713,217,0 +170755848760,217,0 +170755848810,218,0 +170755848858,219,0 +170755848905,220,0 +170755848953,219,0 +170755849001,220,0 +170755849049,222,0 +170755849097,222,0 +170755849145,222,0 +170755849193,222,0 +170755849240,222,0 +170755849288,222,0 +170755849336,222,0 +170755849384,216,0 +170755849432,215,0 +170755849480,216,0 +170755849527,215,0 +170755849575,217,0 +170755849623,219,0 +170755849671,218,0 +170755849719,219,0 +170755849767,221,0 +170755849816,221,0 +170755849864,221,0 +170755849912,222,0 +170755849960,221,0 +170755850008,222,0 +170755850056,222,0 +170755850103,222,0 +170755850151,222,0 +170755850199,222,0 +170755850247,216,0 +170755850295,216,0 +170755850343,217,0 +170755850391,217,0 +170755850438,217,0 +170755850486,218,0 +170755850534,220,0 +170755850582,220,0 +170755850630,219,0 +170755850677,221,0 +170755850725,221,0 +170755850773,222,0 +170755850821,223,0 +170755850869,223,0 +170755850917,222,0 +170755850964,224,0 +170755851012,223,0 +170755851060,223,0 +170755851109,222,0 +170755851157,216,0 +170755851205,215,0 +170755851253,215,0 +170755851301,216,0 +170755851348,217,0 +170755851396,218,0 +170755851444,218,0 +170755851492,218,0 +170755851540,220,0 +170755851588,220,0 +170755851635,221,0 +170755851683,222,0 +170755851731,222,0 +170755851779,222,0 +170755851827,222,0 +170755851876,223,0 +170755851925,222,0 +170755851973,222,0 +170755852021,221,0 +170755852069,215,0 +170755852117,214,0 +170755852165,214,0 +170755852212,215,0 +170755852260,214,0 +170755852308,216,0 +170755852356,217,0 +170755852405,218,0 +170755852453,218,0 +170755852501,219,0 +170755852549,219,0 +170755852597,221,0 +170755852646,221,0 +170755852696,221,0 +170755852743,221,0 +170755852791,222,0 +170755852841,222,0 +170755852889,223,0 +170755852936,222,0 +170755852986,215,0 +170755853033,214,0 +170755853081,215,0 +170755853129,216,0 +170755853177,216,0 +170755853225,217,0 +170755853272,217,0 +170755853320,217,0 +170755853368,218,0 +170755853416,220,0 +170755853464,220,0 +170755853513,220,0 +170755853561,222,0 +170755853609,222,0 +170755853657,221,0 +170755853706,221,0 +170755853755,221,0 +170755853803,222,0 +170755853851,216,0 +170755853900,215,0 +170755853948,215,0 +170755853996,216,0 +170755854044,217,0 +170755854092,217,0 +170755854140,217,0 +170755854187,218,0 +170755854235,218,0 +170755854283,219,0 +170755854331,221,0 +170755854380,221,0 +170755854430,221,0 +170755854478,221,0 +170755854525,221,0 +170755854573,222,0 +170755854621,222,0 +170755854669,222,0 +170755854717,222,0 +170755854766,215,0 +170755854814,215,0 +170755854862,216,0 +170755854910,217,0 +170755854958,217,0 +170755855007,218,0 +170755855055,219,0 +170755855103,220,0 +170755855151,221,0 +170755855200,220,0 +170755855248,221,0 +170755855298,222,0 +170755855346,222,0 +170755855393,222,0 +170755855441,222,0 +170755855491,222,0 +170755855539,222,0 +170755855586,222,0 +170755855636,217,0 +170755855684,216,0 +170755855732,218,0 +170755855779,218,0 +170755855827,218,0 +170755855875,219,0 +170755855923,219,0 +170755855971,221,0 +170755856019,222,0 +170755856067,222,0 +170755856114,221,0 +170755856164,222,0 +170755856212,222,0 +170755856259,222,0 +170755856307,222,0 +170755856355,225,0 +170755856403,223,0 +170755856452,222,0 +170755856500,221,0 +170755856548,217,0 +170755856596,217,0 +170755856644,217,0 +170755856692,218,0 +170755856739,219,0 +170755856787,220,0 +170755856835,219,0 +170755856883,221,0 +170755856931,221,0 +170755856979,221,0 +170755857026,222,0 +170755857074,223,0 +170755857122,222,0 +170755857170,223,0 +170755857218,223,0 +170755857266,222,0 +170755857313,222,0 +170755857361,223,0 +170755857409,223,0 +170755857457,215,0 +170755857505,215,0 +170755857552,216,0 +170755857600,217,0 +170755857648,217,0 +170755857696,217,0 +170755857745,218,0 +170755857793,219,0 +170755857841,219,0 +170755857889,220,0 +170755857938,221,0 +170755857986,223,0 +170755858034,222,0 +170755858082,223,0 +170755858130,222,0 +170755858178,222,0 +170755858225,223,0 +170755858273,222,0 +170755858321,218,0 +170755858369,214,0 +170755858417,215,0 +170755858465,215,0 +170755858512,216,0 +170755858560,216,0 +170755858609,217,0 +170755858657,218,0 +170755858705,218,0 +170755858755,219,0 +170755858802,220,0 +170755858850,220,0 +170755858900,220,0 +170755858947,221,0 +170755858995,222,0 +170755859043,222,0 +170755859091,221,0 +170755859140,221,0 +170755859188,221,0 +170755859236,215,0 +170755859284,214,0 +170755859332,214,0 +170755859380,215,0 +170755859429,215,0 +170755859477,216,0 +170755859525,216,0 +170755859575,217,0 +170755859623,218,0 +170755859670,218,0 +170755859718,220,0 +170755859766,220,0 +170755859814,220,0 +170755859864,221,0 +170755859911,224,0 +170755859959,222,0 +170755860007,222,0 +170755860055,222,0 +170755860103,222,0 +170755860151,215,0 +170755860198,215,0 +170755860246,214,0 +170755860294,215,0 +170755860342,215,0 +170755860390,215,0 +170755860438,217,0 +170755860486,217,0 +170755860533,218,0 +170755860583,219,0 +170755860631,219,0 +170755860679,219,0 +170755860727,221,0 +170755860775,221,0 +170755860823,220,0 +170755860871,222,0 +170755860919,221,0 +170755860966,221,0 +170755861014,217,0 +170755861062,215,0 +170755861112,214,0 +170755861160,215,0 +170755861209,215,0 +170755861257,215,0 +170755861305,215,0 +170755861353,216,0 +170755861401,216,0 +170755861449,217,0 +170755861497,217,0 +170755861545,218,0 +170755861592,219,0 +170755861640,219,0 +170755861688,219,0 +170755861736,221,0 +170755861784,222,0 +170755861832,220,0 +170755861880,222,0 +170755861928,215,0 +170755861977,214,0 +170755862025,215,0 +170755862074,215,0 +170755862124,215,0 +170755862172,214,0 +170755862220,215,0 +170755862268,216,0 +170755862316,216,0 +170755862364,217,0 +170755862411,218,0 +170755862459,219,0 +170755862509,220,0 +170755862557,221,0 +170755862605,221,0 +170755862653,221,0 +170755862701,221,0 +170755862749,222,0 +170755862798,218,0 +170755862846,215,0 +170755862896,215,0 +170755862944,214,0 +170755862992,215,0 +170755863041,216,0 +170755863091,216,0 +170755863138,217,0 +170755863186,217,0 +170755863236,218,0 +170755863284,219,0 +170755863333,220,0 +170755863381,220,0 +170755863431,220,0 +170755863480,221,0 +170755863528,222,0 +170755863576,222,0 +170755863626,222,0 +170755863675,222,0 +170755863725,216,0 +170755863774,215,0 +170755863822,215,0 +170755863872,216,0 +170755863920,217,0 +170755863969,218,0 +170755864017,216,0 +170755864066,218,0 +170755864116,218,0 +170755864164,219,0 +170755864212,219,0 +170755864261,220,0 +170755864309,220,0 +170755864359,221,0 +170755864408,222,0 +170755864456,221,0 +170755864504,223,0 +170755864552,222,0 +170755864600,219,0 +170755864648,215,0 +170755864697,215,0 +170755864745,216,0 +170755864795,216,0 +170755864842,217,0 +170755864890,216,0 +170755864938,218,0 +170755864987,217,0 +170755865037,219,0 +170755865087,221,0 +170755865135,221,0 +170755865182,221,0 +170755865230,221,0 +170755865280,222,0 +170755865328,225,0 +170755865377,222,0 +170755865425,222,0 +170755865473,223,0 +170755865521,215,0 +170755865571,215,0 +170755865619,215,0 +170755865666,216,0 +170755865714,217,0 +170755865764,219,0 +170755865814,218,0 +170755865863,218,0 +170755865913,219,0 +170755865960,219,0 +170755866008,220,0 +170755866056,221,0 +170755866104,222,0 +170755866152,223,0 +170755866202,223,0 +170755866250,223,0 +170755866298,222,0 +170755866345,222,0 +170755866395,216,0 +170755866445,215,0 +170755866494,216,0 +170755866544,217,0 +170755866593,218,0 +170755866641,217,0 +170755866689,218,0 +170755866738,218,0 +170755866788,220,0 +170755866836,221,0 +170755866885,222,0 +170755866935,221,0 +170755866983,222,0 +170755867032,222,0 +170755867080,222,0 +170755867130,223,0 +170755867178,221,0 +170755867226,223,0 +170755867275,221,0 +170755867325,215,0 +170755867373,215,0 +170755867421,216,0 +170755867470,217,0 +170755867518,217,0 +170755867566,217,0 +170755867616,217,0 +170755867663,218,0 +170755867711,219,0 +170755867759,220,0 +170755867807,221,0 +170755867855,221,0 +170755867903,222,0 +170755867951,223,0 +170755867998,223,0 +170755868046,223,0 +170755868094,223,0 +170755868142,222,0 +170755868190,216,0 +170755868238,214,0 +170755868286,215,0 +170755868334,216,0 +170755868382,216,0 +170755868430,217,0 +170755868478,218,0 +170755868525,218,0 +170755868575,219,0 +170755868623,220,0 +170755868672,221,0 +170755868720,221,0 +170755868770,222,0 +170755868818,223,0 +170755868865,223,0 +170755868913,222,0 +170755868961,219,0 +170755869009,222,0 +170755869057,222,0 +170755869104,215,0 +170755869152,215,0 +170755869200,215,0 +170755869248,216,0 +170755869296,216,0 +170755869344,217,0 +170755869391,218,0 +170755869439,218,0 +170755869487,219,0 +170755869537,219,0 +170755869585,221,0 +170755869634,221,0 +170755869684,221,0 +170755869732,222,0 +170755869779,223,0 +170755869829,222,0 +170755869877,223,0 +170755869925,223,0 +170755869972,221,0 +170755870020,215,0 +170755870068,215,0 +170755870117,216,0 +170755870167,216,0 +170755870215,218,0 +170755870262,217,0 +170755870312,218,0 +170755870360,220,0 +170755870408,218,0 +170755870455,220,0 +170755870503,220,0 +170755870551,221,0 +170755870600,222,0 +170755870648,223,0 +170755870696,222,0 +170755870744,223,0 +170755870792,222,0 +170755870840,224,0 +170755870888,217,0 +170755870937,216,0 +170755870985,216,0 +170755871035,217,0 +170755871083,218,0 +170755871130,218,0 +170755871178,220,0 +170755871228,220,0 +170755871276,221,0 +170755871324,221,0 +170755871373,221,0 +170755871421,222,0 +170755871469,223,0 +170755871517,222,0 +170755871566,222,0 +170755871614,222,0 +170755871662,223,0 +170755871712,222,0 +170755871759,221,0 +170755871809,216,0 +170755871857,218,0 +170755871905,218,0 +170755871954,219,0 +170755872002,220,0 +170755872050,221,0 +170755872100,220,0 +170755872148,221,0 +170755872196,221,0 +170755872244,222,0 +170755872292,222,0 +170755872341,222,0 +170755872391,224,0 +170755872439,222,0 +170755872486,223,0 +170755872536,221,0 +170755872583,223,0 +170755872631,221,0 +170755872679,217,0 +170755872727,217,0 +170755872775,218,0 +170755872823,218,0 +170755872871,219,0 +170755872918,219,0 +170755872966,219,0 +170755873014,222,0 +170755873062,222,0 +170755873110,221,0 +170755873158,221,0 +170755873206,222,0 +170755873253,223,0 +170755873301,219,0 +170755873349,223,0 +170755873397,222,0 +170755873445,223,0 +170755873492,222,0 +170755873542,222,0 +170755873590,215,0 +170755873637,215,0 +170755873685,216,0 +170755873733,216,0 +170755873781,217,0 +170755873829,217,0 +170755873877,217,0 +170755873926,218,0 +170755873974,218,0 +170755874022,220,0 +170755874070,221,0 +170755874118,219,0 +170755874166,222,0 +170755874214,222,0 +170755874263,222,0 +170755874312,222,0 +170755874362,222,0 +170755874411,221,0 +170755874459,222,0 +170755874509,215,0 +170755874558,215,0 +170755874606,216,0 +170755874654,216,0 +170755874702,217,0 +170755874750,218,0 +170755874798,219,0 +170755874846,219,0 +170755874894,219,0 +170755874942,220,0 +170755874989,221,0 +170755875039,222,0 +170755875087,222,0 +170755875135,223,0 +170755875183,222,0 +170755875230,222,0 +170755875278,221,0 +170755875326,221,0 +170755875374,215,0 +170755875422,214,0 +170755875470,214,0 +170755875518,215,0 +170755875567,216,0 +170755875615,216,0 +170755875665,217,0 +170755875712,217,0 +170755875760,219,0 +170755875810,219,0 +170755875858,220,0 +170755875906,224,0 +170755875954,220,0 +170755876003,222,0 +170755876053,221,0 +170755876102,221,0 +170755876150,222,0 +170755876198,222,0 +170755876248,222,0 +170755876296,214,0 +170755876344,213,0 +170755876391,215,0 +170755876439,216,0 +170755876489,217,0 +170755876538,218,0 +170755876588,218,0 +170755876636,219,0 +170755876685,219,0 +170755876733,220,0 +170755876781,220,0 +170755876829,221,0 +170755876877,221,0 +170755876925,222,0 +170755876973,222,0 +170755877020,222,0 +170755877068,225,0 +170755877116,222,0 +170755877166,216,0 +170755877215,215,0 +170755877265,216,0 +170755877313,216,0 +170755877362,217,0 +170755877410,218,0 +170755877460,218,0 +170755877509,219,0 +170755877557,219,0 +170755877605,220,0 +170755877653,221,0 +170755877701,221,0 +170755877749,222,0 +170755877797,222,0 +170755877844,222,0 +170755877892,222,0 +170755877940,222,0 +170755877990,222,0 +170755878038,221,0 +170755878087,214,0 +170755878135,214,0 +170755878183,214,0 +170755878231,216,0 +170755878280,216,0 +170755878328,217,0 +170755878376,218,0 +170755878424,218,0 +170755878472,219,0 +170755878520,219,0 +170755878568,221,0 +170755878616,221,0 +170755878663,220,0 +170755878711,222,0 +170755878759,222,0 +170755878807,221,0 +170755878856,221,0 +170755878904,221,0 +170755878952,215,0 +170755879000,214,0 +170755879048,214,0 +170755879096,215,0 +170755879143,215,0 +170755879191,215,0 +170755879239,215,0 +170755879287,215,0 +170755879335,217,0 +170755879383,217,0 +170755879433,218,0 +170755879482,218,0 +170755879530,219,0 +170755879578,219,0 +170755879626,220,0 +170755879674,220,0 +170755879721,220,0 +170755879769,222,0 +170755879817,221,0 +170755879867,216,0 +170755879915,214,0 +170755879963,215,0 +170755880011,215,0 +170755880058,215,0 +170755880106,216,0 +170755880154,216,0 +170755880204,218,0 +170755880253,217,0 +170755880301,218,0 +170755880349,219,0 +170755880398,221,0 +170755880448,220,0 +170755880496,221,0 +170755880544,223,0 +170755880592,222,0 +170755880639,222,0 +170755880687,222,0 +170755880737,221,0 +170755880785,215,0 +170755880834,215,0 +170755880882,214,0 +170755880930,218,0 +170755880978,217,0 +170755881026,217,0 +170755881074,217,0 +170755881122,217,0 +170755881170,217,0 +170755881218,218,0 +170755881265,218,0 +170755881313,220,0 +170755881361,220,0 +170755881411,221,0 +170755881459,221,0 +170755881507,221,0 +170755881555,221,0 +170755881603,222,0 +170755881651,216,0 +170755881700,214,0 +170755881748,215,0 +170755881798,215,0 +170755881846,216,0 +170755881894,217,0 +170755881943,217,0 +170755881991,218,0 +170755882040,219,0 +170755882088,219,0 +170755882136,219,0 +170755882184,221,0 +170755882234,221,0 +170755882281,223,0 +170755882331,221,0 +170755882379,222,0 +170755882428,224,0 +170755882476,222,0 +170755882524,221,0 +170755882572,215,0 +170755882620,215,0 +170755882670,214,0 +170755882718,215,0 +170755882766,216,0 +170755882813,216,0 +170755882861,217,0 +170755882909,217,0 +170755882957,218,0 +170755883005,219,0 +170755883053,219,0 +170755883101,220,0 +170755883149,221,0 +170755883198,220,0 +170755883246,220,0 +170755883294,221,0 +170755883342,221,0 +170755883390,224,0 +170755883438,223,0 +170755883486,215,0 +170755883534,214,0 +170755883582,215,0 +170755883630,216,0 +170755883679,216,0 +170755883727,216,0 +170755883776,217,0 +170755883824,218,0 +170755883874,218,0 +170755883922,220,0 +170755883970,220,0 +170755884018,221,0 +170755884065,221,0 +170755884113,222,0 +170755884163,222,0 +170755884211,222,0 +170755884258,222,0 +170755884306,222,0 +170755884354,216,0 +170755884402,215,0 +170755884450,216,0 +170755884498,217,0 +170755884546,214,0 +170755884594,218,0 +170755884642,218,0 +170755884690,219,0 +170755884738,220,0 +170755884785,220,0 +170755884833,220,0 +170755884881,222,0 +170755884931,221,0 +170755884980,222,0 +170755885028,231,0 +170755885076,224,0 +170755885124,223,0 +170755885172,222,0 +170755885221,222,0 +170755885269,215,0 +170755885317,215,0 +170755885367,215,0 +170755885416,216,0 +170755885464,217,0 +170755885513,217,0 +170755885561,217,0 +170755885609,218,0 +170755885657,218,0 +170755885705,220,0 +170755885752,220,0 +170755885800,220,0 +170755885848,222,0 +170755885896,221,0 +170755885944,222,0 +170755885993,221,0 +170755886041,221,0 +170755886089,222,0 +170755886137,221,0 +170755886185,215,0 +170755886233,214,0 +170755886282,215,0 +170755886330,216,0 +170755886378,216,0 +170755886427,217,0 +170755886475,216,0 +170755886523,218,0 +170755886571,218,0 +170755886621,219,0 +170755886668,219,0 +170755886716,221,0 +170755886764,222,0 +170755886812,220,0 +170755886860,222,0 +170755886908,222,0 +170755886955,221,0 +170755887003,222,0 +170755887051,216,0 +170755887099,214,0 +170755887147,214,0 +170755887194,214,0 +170755887242,215,0 +170755887290,215,0 +170755887338,216,0 +170755887386,216,0 +170755887434,217,0 +170755887482,218,0 +170755887529,219,0 +170755887577,220,0 +170755887625,221,0 +170755887673,220,0 +170755887721,220,0 +170755887770,221,0 +170755887818,221,0 +170755887866,222,0 +170755887914,221,0 +170755887961,215,0 +170755888011,214,0 +170755888060,215,0 +170755888110,215,0 +170755888160,214,0 +170755888208,215,0 +170755888255,215,0 +170755888303,216,0 +170755888353,217,0 +170755888401,217,0 +170755888449,219,0 +170755888496,220,0 +170755888544,221,0 +170755888592,221,0 +170755888640,221,0 +170755888688,220,0 +170755888735,222,0 +170755888783,222,0 +170755888831,221,0 +170755888881,215,0 +170755888930,215,0 +170755888980,216,0 +170755889029,216,0 +170755889077,216,0 +170755889125,218,0 +170755889173,218,0 +170755889221,217,0 +170755889269,219,0 +170755889317,219,0 +170755889366,221,0 +170755889414,221,0 +170755889462,221,0 +170755889510,221,0 +170755889558,222,0 +170755889605,221,0 +170755889653,222,0 +170755889701,222,0 +170755889749,216,0 +170755889797,215,0 +170755889844,215,0 +170755889892,216,0 +170755889940,216,0 +170755889988,217,0 +170755890036,217,0 +170755890084,217,0 +170755890131,218,0 +170755890179,219,0 +170755890229,219,0 +170755890277,220,0 +170755890325,221,0 +170755890374,222,0 +170755890422,222,0 +170755890471,223,0 +170755890519,222,0 +170755890567,222,0 +170755890615,222,0 +170755890662,215,0 +170755890710,215,0 +170755890758,216,0 +170755890808,216,0 +170755890855,217,0 +170755890903,217,0 +170755890951,218,0 +170755890999,217,0 +170755891047,220,0 +170755891095,220,0 +170755891142,221,0 +170755891190,221,0 +170755891238,221,0 +170755891286,222,0 +170755891335,222,0 +170755891383,222,0 +170755891433,222,0 +170755891481,222,0 +170755891529,216,0 +170755891577,215,0 +170755891624,216,0 +170755891672,217,0 +170755891720,217,0 +170755891768,218,0 +170755891817,218,0 +170755891865,218,0 +170755891913,219,0 +170755891961,220,0 +170755892009,221,0 +170755892057,221,0 +170755892104,222,0 +170755892152,222,0 +170755892200,223,0 +170755892248,222,0 +170755892296,222,0 +170755892344,222,0 +170755892392,222,0 +170755892440,216,0 +170755892488,216,0 +170755892536,216,0 +170755892584,217,0 +170755892631,216,0 +170755892681,218,0 +170755892730,218,0 +170755892780,220,0 +170755892829,220,0 +170755892877,226,0 +170755892925,221,0 +170755892973,223,0 +170755893021,221,0 +170755893069,223,0 +170755893118,223,0 +170755893166,224,0 +170755893216,222,0 +170755893265,222,0 +170755893313,221,0 +170755893361,215,0 +170755893411,215,0 +170755893460,216,0 +170755893510,216,0 +170755893558,217,0 +170755893607,218,0 +170755893656,219,0 +170755893704,217,0 +170755893752,220,0 +170755893802,221,0 +170755893850,219,0 +170755893898,222,0 +170755893946,222,0 +170755893994,222,0 +170755894041,222,0 +170755894089,220,0 +170755894137,221,0 +170755894185,222,0 +170755894235,216,0 +170755894284,214,0 +170755894332,214,0 +170755894380,214,0 +170755894430,215,0 +170755894479,214,0 +170755894529,216,0 +170755894577,217,0 +170755894626,216,0 +170755894674,218,0 +170755894724,219,0 +170755894772,219,0 +170755894821,220,0 +170755894871,220,0 +170755894919,220,0 +170755894967,221,0 +170755895016,221,0 +170755895066,217,0 +170755895114,221,0 +170755895162,215,0 +170755895211,214,0 +170755895259,214,0 +170755895307,216,0 +170755895355,217,0 +170755895403,217,0 +170755895451,218,0 +170755895499,217,0 +170755895547,218,0 +170755895595,219,0 +170755895644,219,0 +170755895692,220,0 +170755895740,221,0 +170755895788,221,0 +170755895838,222,0 +170755895886,222,0 +170755895933,223,0 +170755895983,222,0 +170755896032,216,0 +170755896080,214,0 +170755896130,215,0 +170755896178,216,0 +170755896226,216,0 +170755896275,216,0 +170755896323,216,0 +170755896371,217,0 +170755896419,218,0 +170755896467,219,0 +170755896515,219,0 +170755896564,220,0 +170755896612,220,0 +170755896662,222,0 +170755896711,221,0 +170755896759,222,0 +170755896809,223,0 +170755896857,222,0 +170755896905,222,0 +170755896954,215,0 +170755897002,215,0 +170755897052,215,0 +170755897100,216,0 +170755897148,217,0 +170755897197,217,0 +170755897245,217,0 +170755897293,218,0 +170755897342,218,0 +170755897390,219,0 +170755897438,220,0 +170755897486,221,0 +170755897534,222,0 +170755897582,223,0 +170755897630,221,0 +170755897678,222,0 +170755897726,222,0 +170755897775,221,0 +170755897823,217,0 +170755897871,216,0 +170755897921,217,0 +170755897970,217,0 +170755898018,218,0 +170755898066,218,0 +170755898116,219,0 +170755898165,220,0 +170755898215,220,0 +170755898263,221,0 +170755898312,222,0 +170755898362,222,0 +170755898409,222,0 +170755898459,222,0 +170755898507,222,0 +170755898555,223,0 +170755898604,222,0 +170755898654,222,0 +170755898702,222,0 +170755898751,215,0 +170755898799,217,0 +170755898849,219,0 +170755898897,219,0 +170755898946,220,0 +170755898994,220,0 +170755899044,220,0 +170755899092,221,0 +170755899141,221,0 +170755899190,221,0 +170755899238,222,0 +170755899286,222,0 +170755899336,223,0 +170755899384,222,0 +170755899432,222,0 +170755899479,221,0 +170755899529,222,0 +170755899577,222,0 +170755899625,216,0 +170755899673,217,0 +170755899721,217,0 +170755899769,218,0 +170755899818,219,0 +170755899866,219,0 +170755899914,219,0 +170755899962,220,0 +170755900010,221,0 +170755900058,220,0 +170755900106,221,0 +170755900154,222,0 +170755900202,221,0 +170755900251,223,0 +170755900301,222,0 +170755900349,222,0 +170755900397,223,0 +170755900445,222,0 +170755900494,221,0 +170755900542,216,0 +170755900592,216,0 +170755900641,217,0 +170755900689,218,0 +170755900737,218,0 +170755900785,219,0 +170755900833,219,0 +170755900881,220,0 +170755900929,220,0 +170755900977,220,0 +170755901026,221,0 +170755901074,220,0 +170755901124,222,0 +170755901172,222,0 +170755901220,223,0 +170755901269,222,0 +170755901319,222,0 +170755901367,222,0 +170755901416,216,0 +170755901464,215,0 +170755901514,216,0 +170755901561,217,0 +170755901611,217,0 +170755901661,219,0 +170755901710,218,0 +170755901760,215,0 +170755901808,219,0 +170755901856,220,0 +170755901905,221,0 +170755901955,221,0 +170755902003,221,0 +170755902050,222,0 +170755902098,222,0 +170755902146,223,0 +170755902196,222,0 +170755902244,223,0 +170755902293,221,0 +170755902343,215,0 +170755902392,215,0 +170755902440,215,0 +170755902488,216,0 +170755902536,216,0 +170755902585,219,0 +170755902633,218,0 +170755902681,217,0 +170755902731,219,0 +170755902780,220,0 +170755902828,220,0 +170755902878,220,0 +170755902926,221,0 +170755902974,221,0 +170755903023,221,0 +170755903071,222,0 +170755903119,222,0 +170755903166,221,0 +170755903216,216,0 +170755903264,215,0 +170755903312,214,0 +170755903359,215,0 +170755903407,215,0 +170755903455,215,0 +170755903503,216,0 +170755903551,216,0 +170755903599,217,0 +170755903647,217,0 +170755903695,218,0 +170755903742,219,0 +170755903790,219,0 +170755903840,220,0 +170755903888,221,0 +170755903937,221,0 +170755903986,221,0 +170755904034,221,0 +170755904082,221,0 +170755904130,215,0 +170755904178,215,0 +170755904226,215,0 +170755904274,215,0 +170755904323,215,0 +170755904371,216,0 +170755904419,216,0 +170755904467,217,0 +170755904515,217,0 +170755904563,218,0 +170755904611,219,0 +170755904659,219,0 +170755904708,220,0 +170755904756,221,0 +170755904806,222,0 +170755904853,221,0 +170755904901,221,0 +170755904949,222,0 +170755904997,216,0 +170755905045,214,0 +170755905093,215,0 +170755905143,215,0 +170755905190,216,0 +170755905238,217,0 +170755905286,218,0 +170755905334,217,0 +170755905382,217,0 +170755905430,219,0 +170755905479,219,0 +170755905527,219,0 +170755905575,219,0 +170755905623,220,0 +170755905671,222,0 +170755905719,220,0 +170755905767,222,0 +170755905816,221,0 +170755905864,222,0 +170755905913,216,0 +170755905961,215,0 +170755906009,216,0 +170755906057,217,0 +170755906105,216,0 +170755906153,216,0 +170755906201,218,0 +170755906249,218,0 +170755906298,218,0 +170755906346,219,0 +170755906394,220,0 +170755906444,221,0 +170755906492,221,0 +170755906539,222,0 +170755906587,223,0 +170755906637,222,0 +170755906686,222,0 +170755906734,222,0 +170755906784,222,0 +170755906833,215,0 +170755906881,215,0 +170755906931,215,0 +170755906980,216,0 +170755907030,217,0 +170755907078,216,0 +170755907125,217,0 +170755907173,218,0 +170755907221,219,0 +170755907269,219,0 +170755907317,219,0 +170755907365,221,0 +170755907415,221,0 +170755907464,223,0 +170755907512,221,0 +170755907561,222,0 +170755907609,222,0 +170755907657,222,0 +170755907705,216,0 +170755907753,214,0 +170755907801,215,0 +170755907849,215,0 +170755907897,216,0 +170755907946,217,0 +170755907994,218,0 +170755908042,217,0 +170755908090,218,0 +170755908139,219,0 +170755908187,219,0 +170755908235,221,0 +170755908283,219,0 +170755908333,221,0 +170755908380,222,0 +170755908428,222,0 +170755908476,223,0 +170755908526,222,0 +170755908573,222,0 +170755908623,215,0 +170755908671,214,0 +170755908720,214,0 +170755908768,215,0 +170755908818,215,0 +170755908866,215,0 +170755908915,215,0 +170755908963,216,0 +170755909011,217,0 +170755909060,218,0 +170755909108,218,0 +170755909158,219,0 +170755909207,219,0 +170755909257,222,0 +170755909304,222,0 +170755909354,221,0 +170755909402,221,0 +170755909450,221,0 +170755909499,216,0 +170755909547,214,0 +170755909595,215,0 +170755909645,215,0 +170755909693,215,0 +170755909740,215,0 +170755909790,215,0 +170755909838,216,0 +170755909887,216,0 +170755909937,217,0 +170755909985,218,0 +170755910032,219,0 +170755910080,219,0 +170755910128,219,0 +170755910176,219,0 +170755910224,219,0 +170755910272,220,0 +170755910319,221,0 +170755910369,221,0 +170755910417,215,0 +170755910464,215,0 +170755910512,216,0 +170755910562,216,0 +170755910610,217,0 +170755910657,217,0 +170755910705,218,0 +170755910753,218,0 +170755910801,219,0 +170755910849,220,0 +170755910897,220,0 +170755910945,221,0 +170755910993,221,0 +170755911041,221,0 +170755911090,223,0 +170755911140,223,0 +170755911187,227,0 +170755911235,222,0 +170755911283,216,0 +170755911331,215,0 +170755911379,215,0 +170755911428,216,0 +170755911478,218,0 +170755911526,216,0 +170755911575,217,0 +170755911623,217,0 +170755911673,219,0 +170755911720,218,0 +170755911768,220,0 +170755911816,221,0 +170755911864,221,0 +170755911912,222,0 +170755911960,222,0 +170755912009,222,0 +170755912057,222,0 +170755912105,222,0 +170755912153,221,0 +170755912202,216,0 +170755912251,215,0 +170755912299,216,0 +170755912347,215,0 +170755912395,216,0 +170755912443,217,0 +170755912490,217,0 +170755912538,218,0 +170755912586,219,0 +170755912634,219,0 +170755912683,220,0 +170755912731,221,0 +170755912779,221,0 +170755912827,221,0 +170755912875,221,0 +170755912923,221,0 +170755912972,221,0 +170755913022,222,0 +170755913071,221,0 +170755913119,215,0 +170755913167,215,0 +170755913215,216,0 +170755913263,217,0 +170755913311,217,0 +170755913359,218,0 +170755913407,217,0 +170755913455,219,0 +170755913503,219,0 +170755913550,220,0 +170755913600,221,0 +170755913648,221,0 +170755913696,223,0 +170755913744,222,0 +170755913793,222,0 +170755913841,221,0 +170755913890,222,0 +170755913938,221,0 +170755913986,216,0 +170755914034,216,0 +170755914084,216,0 +170755914133,217,0 +170755914182,217,0 +170755914230,219,0 +170755914278,219,0 +170755914326,220,0 +170755914374,220,0 +170755914423,221,0 +170755914471,222,0 +170755914519,222,0 +170755914567,223,0 +170755914615,222,0 +170755914665,222,0 +170755914713,222,0 +170755914761,222,0 +170755914809,222,0 +170755914857,221,0 +170755914906,216,0 +170755914954,217,0 +170755915002,217,0 +170755915050,218,0 +170755915098,219,0 +170755915147,219,0 +170755915195,220,0 +170755915243,220,0 +170755915291,221,0 +170755915339,221,0 +170755915386,222,0 +170755915434,222,0 +170755915482,222,0 +170755915530,222,0 +170755915578,223,0 +170755915626,222,0 +170755915674,222,0 +170755915721,222,0 +170755915769,221,0 +170755915817,216,0 +170755915865,217,0 +170755915912,216,0 +170755915960,218,0 +170755916010,219,0 +170755916058,219,0 +170755916107,219,0 +170755916155,220,0 +170755916204,221,0 +170755916252,223,0 +170755916300,221,0 +170755916350,222,0 +170755916399,222,0 +170755916447,222,0 +170755916497,222,0 +170755916546,222,0 +170755916594,219,0 +170755916642,221,0 +170755916690,216,0 +170755916739,216,0 +170755916787,217,0 +170755916835,217,0 +170755916885,218,0 +170755916933,218,0 +170755916980,219,0 +170755917030,219,0 +170755917078,220,0 +170755917127,221,0 +170755917177,221,0 +170755917224,222,0 +170755917272,222,0 +170755917320,221,0 +170755917368,222,0 +170755917416,223,0 +170755917463,222,0 +170755917511,222,0 +170755917559,221,0 +170755917607,215,0 +170755917655,216,0 +170755917703,217,0 +170755917752,217,0 +170755917800,217,0 +170755917848,218,0 +170755917896,219,0 +170755917944,220,0 +170755917992,220,0 +170755918040,221,0 +170755918088,221,0 +170755918136,222,0 +170755918185,221,0 +170755918233,222,0 +170755918282,222,0 +170755918332,222,0 +170755918381,222,0 +170755918431,221,0 +170755918479,216,0 +170755918527,215,0 +170755918575,216,0 +170755918624,217,0 +170755918672,218,0 +170755918720,218,0 +170755918768,219,0 +170755918816,219,0 +170755918864,220,0 +170755918913,221,0 +170755918961,221,0 +170755919011,222,0 +170755919059,222,0 +170755919108,221,0 +170755919156,222,0 +170755919204,222,0 +170755919252,222,0 +170755919300,221,0 +170755919348,221,0 +170755919395,217,0 +170755919443,217,0 +170755919493,217,0 +170755919541,218,0 +170755919588,218,0 +170755919636,219,0 +170755919684,220,0 +170755919732,221,0 +170755919780,221,0 +170755919828,221,0 +170755919876,222,0 +170755919924,222,0 +170755919971,222,0 +170755920021,222,0 diff --git a/laser_value/0210-20.csv b/laser_value/0210-20.csv new file mode 100644 index 0000000..5133f74 --- /dev/null +++ b/laser_value/0210-20.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170755920071,222,0 +170755920119,223,0 +170755920167,223,0 +170755920215,221,0 +170755920263,217,0 +170755920312,217,0 +170755920362,217,0 +170755920411,218,0 +170755920461,219,0 +170755920510,220,0 +170755920560,221,0 +170755920607,220,0 +170755920655,220,0 +170755920703,220,0 +170755920751,223,0 +170755920799,222,0 +170755920847,222,0 +170755920897,223,0 +170755920945,222,0 +170755920993,222,0 +170755921040,222,0 +170755921088,221,0 +170755921138,221,0 +170755921186,216,0 +170755921235,215,0 +170755921283,216,0 +170755921333,217,0 +170755921382,217,0 +170755921430,218,0 +170755921478,218,0 +170755921528,219,0 +170755921576,220,0 +170755921624,218,0 +170755921672,221,0 +170755921719,221,0 +170755921769,221,0 +170755921817,222,0 +170755921865,222,0 +170755921913,223,0 +170755921962,222,0 +170755922010,222,0 +170755922058,216,0 +170755922108,215,0 +170755922155,215,0 +170755922205,216,0 +170755922253,217,0 +170755922302,217,0 +170755922350,218,0 +170755922398,218,0 +170755922446,218,0 +170755922493,219,0 +170755922541,220,0 +170755922591,220,0 +170755922639,221,0 +170755922687,220,0 +170755922735,221,0 +170755922782,221,0 +170755922830,222,0 +170755922878,222,0 +170755922928,221,0 +170755922977,215,0 +170755923027,215,0 +170755923074,215,0 +170755923124,216,0 +170755923172,216,0 +170755923219,216,0 +170755923267,217,0 +170755923315,217,0 +170755923363,218,0 +170755923412,219,0 +170755923460,220,0 +170755923508,220,0 +170755923558,221,0 +170755923607,221,0 +170755923655,221,0 +170755923703,223,0 +170755923751,223,0 +170755923801,222,0 +170755923850,216,0 +170755923900,214,0 +170755923949,215,0 +170755923997,216,0 +170755924045,216,0 +170755924095,215,0 +170755924144,217,0 +170755924194,217,0 +170755924242,218,0 +170755924290,221,0 +170755924339,219,0 +170755924387,219,0 +170755924437,221,0 +170755924485,221,0 +170755924532,221,0 +170755924580,222,0 +170755924628,222,0 +170755924678,221,0 +170755924726,221,0 +170755924774,215,0 +170755924822,215,0 +170755924870,215,0 +170755924919,215,0 +170755924967,216,0 +170755925016,216,0 +170755925066,218,0 +170755925115,218,0 +170755925163,219,0 +170755925213,219,0 +170755925261,220,0 +170755925308,221,0 +170755925356,221,0 +170755925406,221,0 +170755925455,222,0 +170755925503,222,0 +170755925551,222,0 +170755925601,222,0 +170755925649,216,0 +170755925697,215,0 +170755925745,215,0 +170755925792,215,0 +170755925840,215,0 +170755925890,215,0 +170755925938,216,0 +170755925986,217,0 +170755926033,218,0 +170755926083,218,0 +170755926131,219,0 +170755926180,219,0 +170755926228,220,0 +170755926278,221,0 +170755926326,221,0 +170755926375,221,0 +170755926423,220,0 +170755926472,222,0 +170755926520,222,0 +170755926570,215,0 +170755926618,214,0 +170755926666,214,0 +170755926715,215,0 +170755926763,215,0 +170755926811,215,0 +170755926859,215,0 +170755926907,216,0 +170755926955,216,0 +170755927002,217,0 +170755927050,218,0 +170755927100,219,0 +170755927148,219,0 +170755927196,220,0 +170755927244,220,0 +170755927292,220,0 +170755927340,221,0 +170755927388,222,0 +170755927436,217,0 +170755927483,214,0 +170755927533,214,0 +170755927583,215,0 +170755927631,215,0 +170755927678,216,0 +170755927728,216,0 +170755927776,216,0 +170755927824,217,0 +170755927873,217,0 +170755927921,218,0 +170755927969,220,0 +170755928019,220,0 +170755928067,221,0 +170755928116,220,0 +170755928166,221,0 +170755928215,222,0 +170755928263,222,0 +170755928311,222,0 +170755928359,215,0 +170755928408,215,0 +170755928456,215,0 +170755928504,216,0 +170755928554,217,0 +170755928602,217,0 +170755928649,218,0 +170755928699,218,0 +170755928747,218,0 +170755928795,218,0 +170755928843,219,0 +170755928890,220,0 +170755928938,220,0 +170755928986,220,0 +170755929036,222,0 +170755929085,221,0 +170755929135,221,0 +170755929183,222,0 +170755929231,216,0 +170755929278,215,0 +170755929328,215,0 +170755929376,216,0 +170755929424,217,0 +170755929472,217,0 +170755929520,218,0 +170755929568,218,0 +170755929617,220,0 +170755929665,220,0 +170755929713,221,0 +170755929763,221,0 +170755929811,222,0 +170755929858,222,0 +170755929908,220,0 +170755929956,222,0 +170755930004,222,0 +170755930052,223,0 +170755930100,222,0 +170755930148,215,0 +170755930196,215,0 +170755930244,216,0 +170755930293,216,0 +170755930343,215,0 +170755930392,217,0 +170755930440,218,0 +170755930488,218,0 +170755930537,219,0 +170755930585,222,0 +170755930633,221,0 +170755930683,221,0 +170755930731,221,0 +170755930780,222,0 +170755930828,221,0 +170755930876,223,0 +170755930926,222,0 +170755930974,222,0 +170755931023,222,0 +170755931071,214,0 +170755931121,215,0 +170755931170,216,0 +170755931218,217,0 +170755931266,217,0 +170755931314,217,0 +170755931362,218,0 +170755931410,219,0 +170755931458,220,0 +170755931506,220,0 +170755931554,221,0 +170755931602,220,0 +170755931650,221,0 +170755931698,223,0 +170755931745,223,0 +170755931795,223,0 +170755931843,223,0 +170755931892,220,0 +170755931942,215,0 +170755931990,215,0 +170755932039,215,0 +170755932089,216,0 +170755932138,216,0 +170755932186,217,0 +170755932234,218,0 +170755932282,219,0 +170755932330,219,0 +170755932378,220,0 +170755932426,221,0 +170755932474,221,0 +170755932522,221,0 +170755932571,223,0 +170755932619,223,0 +170755932667,222,0 +170755932715,222,0 +170755932763,223,0 +170755932811,221,0 +170755932859,215,0 +170755932908,215,0 +170755932956,216,0 +170755933004,218,0 +170755933052,217,0 +170755933100,216,0 +170755933150,218,0 +170755933197,217,0 +170755933247,218,0 +170755933295,219,0 +170755933343,220,0 +170755933391,221,0 +170755933439,220,0 +170755933488,222,0 +170755933538,221,0 +170755933587,221,0 +170755933637,222,0 +170755933685,222,0 +170755933733,216,0 +170755933782,215,0 +170755933832,215,0 +170755933880,215,0 +170755933927,216,0 +170755933975,217,0 +170755934025,217,0 +170755934073,218,0 +170755934121,218,0 +170755934170,219,0 +170755934218,219,0 +170755934268,219,0 +170755934317,220,0 +170755934365,223,0 +170755934413,223,0 +170755934461,222,0 +170755934509,223,0 +170755934557,222,0 +170755934607,222,0 +170755934656,215,0 +170755934704,215,0 +170755934752,217,0 +170755934800,217,0 +170755934850,217,0 +170755934899,218,0 +170755934949,219,0 +170755934998,220,0 +170755935046,220,0 +170755935094,221,0 +170755935142,219,0 +170755935190,222,0 +170755935239,222,0 +170755935287,223,0 +170755935335,222,0 +170755935383,223,0 +170755935431,222,0 +170755935481,222,0 +170755935529,215,0 +170755935577,215,0 +170755935626,216,0 +170755935674,216,0 +170755935722,217,0 +170755935770,218,0 +170755935818,218,0 +170755935866,219,0 +170755935913,220,0 +170755935963,219,0 +170755936011,222,0 +170755936060,221,0 +170755936110,221,0 +170755936159,222,0 +170755936209,222,0 +170755936258,222,0 +170755936308,223,0 +170755936356,221,0 +170755936405,221,0 +170755936453,215,0 +170755936501,215,0 +170755936551,215,0 +170755936600,216,0 +170755936648,216,0 +170755936698,218,0 +170755936746,217,0 +170755936795,218,0 +170755936843,218,0 +170755936893,219,0 +170755936941,220,0 +170755936989,221,0 +170755937036,221,0 +170755937086,223,0 +170755937135,222,0 +170755937183,223,0 +170755937231,223,0 +170755937279,223,0 +170755937327,216,0 +170755937377,214,0 +170755937426,214,0 +170755937474,214,0 +170755937524,214,0 +170755937572,215,0 +170755937620,215,0 +170755937669,216,0 +170755937719,217,0 +170755937766,218,0 +170755937816,219,0 +170755937866,219,0 +170755937913,220,0 +170755937963,221,0 +170755938011,222,0 +170755938059,221,0 +170755938108,221,0 +170755938158,222,0 +170755938206,219,0 +170755938255,214,0 +170755938303,214,0 +170755938353,214,0 +170755938400,215,0 +170755938448,215,0 +170755938496,216,0 +170755938546,215,0 +170755938594,216,0 +170755938643,216,0 +170755938691,217,0 +170755938739,218,0 +170755938787,218,0 +170755938835,219,0 +170755938883,219,0 +170755938931,220,0 +170755938979,220,0 +170755939027,220,0 +170755939076,222,0 +170755939124,215,0 +170755939174,214,0 +170755939223,214,0 +170755939273,214,0 +170755939322,215,0 +170755939370,216,0 +170755939418,216,0 +170755939468,217,0 +170755939517,218,0 +170755939565,219,0 +170755939613,219,0 +170755939661,220,0 +170755939709,220,0 +170755939757,220,0 +170755939805,221,0 +170755939853,221,0 +170755939902,221,0 +170755939950,222,0 +170755939998,221,0 +170755940046,215,0 +170755940095,216,0 +170755940145,217,0 +170755940193,217,0 +170755940242,218,0 +170755940292,218,0 +170755940341,219,0 +170755940391,220,0 +170755940439,220,0 +170755940487,221,0 +170755940535,221,0 +170755940583,222,0 +170755940632,221,0 +170755940680,222,0 +170755940730,221,0 +170755940779,223,0 +170755940827,222,0 +170755940875,221,0 +170755940923,216,0 +170755940971,216,0 +170755941019,216,0 +170755941068,217,0 +170755941116,218,0 +170755941167,218,0 +170755941215,219,0 +170755941264,219,0 +170755941314,220,0 +170755941363,220,0 +170755941413,221,0 +170755941462,221,0 +170755941510,221,0 +170755941560,222,0 +170755941608,222,0 +170755941655,223,0 +170755941705,222,0 +170755941753,222,0 +170755941801,216,0 +170755941850,216,0 +170755941900,217,0 +170755941948,217,0 +170755941996,219,0 +170755942044,218,0 +170755942093,219,0 +170755942142,220,0 +170755942190,220,0 +170755942238,221,0 +170755942286,220,0 +170755942336,221,0 +170755942384,222,0 +170755942433,222,0 +170755942481,223,0 +170755942529,223,0 +170755942577,222,0 +170755942625,222,0 +170755942674,221,0 +170755942722,216,0 +170755942770,216,0 +170755942817,216,0 +170755942867,217,0 +170755942916,217,0 +170755942964,218,0 +170755943014,219,0 +170755943062,219,0 +170755943109,221,0 +170755943157,221,0 +170755943207,220,0 +170755943255,221,0 +170755943303,222,0 +170755943352,221,0 +170755943400,222,0 +170755943450,222,0 +170755943498,221,0 +170755943546,221,0 +170755943595,216,0 +170755943643,215,0 +170755943693,216,0 +170755943742,216,0 +170755943792,217,0 +170755943840,218,0 +170755943888,218,0 +170755943937,219,0 +170755943985,219,0 +170755944033,220,0 +170755944082,220,0 +170755944130,220,0 +170755944180,220,0 +170755944228,221,0 +170755944277,221,0 +170755944327,224,0 +170755944375,222,0 +170755944423,222,0 +170755944471,221,0 +170755944519,215,0 +170755944568,215,0 +170755944618,217,0 +170755944666,217,0 +170755944715,217,0 +170755944765,219,0 +170755944813,220,0 +170755944862,219,0 +170755944910,220,0 +170755944958,218,0 +170755945006,222,0 +170755945056,221,0 +170755945104,222,0 +170755945152,222,0 +170755945201,222,0 +170755945249,222,0 +170755945299,221,0 +170755945346,221,0 +170755945394,216,0 +170755945442,216,0 +170755945492,216,0 +170755945541,217,0 +170755945591,218,0 +170755945639,218,0 +170755945687,220,0 +170755945735,219,0 +170755945783,220,0 +170755945831,221,0 +170755945879,222,0 +170755945927,222,0 +170755945976,223,0 +170755946024,222,0 +170755946074,221,0 +170755946122,223,0 +170755946170,222,0 +170755946219,222,0 +170755946267,221,0 +170755946315,215,0 +170755946363,216,0 +170755946411,216,0 +170755946459,218,0 +170755946508,218,0 +170755946556,218,0 +170755946606,219,0 +170755946653,219,0 +170755946703,220,0 +170755946751,221,0 +170755946799,220,0 +170755946847,221,0 +170755946895,221,0 +170755946943,223,0 +170755946991,223,0 +170755947040,223,0 +170755947088,224,0 +170755947136,222,0 +170755947184,215,0 +170755947232,215,0 +170755947280,216,0 +170755947328,217,0 +170755947376,217,0 +170755947425,218,0 +170755947473,219,0 +170755947521,219,0 +170755947571,220,0 +170755947619,220,0 +170755947667,221,0 +170755947715,221,0 +170755947764,223,0 +170755947812,223,0 +170755947860,222,0 +170755947910,222,0 +170755947958,222,0 +170755948006,222,0 +170755948055,222,0 +170755948103,215,0 +170755948153,215,0 +170755948201,216,0 +170755948248,216,0 +170755948296,217,0 +170755948344,217,0 +170755948392,217,0 +170755948440,218,0 +170755948490,219,0 +170755948538,219,0 +170755948587,220,0 +170755948635,221,0 +170755948683,222,0 +170755948732,222,0 +170755948782,221,0 +170755948831,221,0 +170755948879,222,0 +170755948927,222,0 +170755948977,215,0 +170755949025,214,0 +170755949074,215,0 +170755949124,216,0 +170755949172,216,0 +170755949221,216,0 +170755949269,218,0 +170755949317,218,0 +170755949367,219,0 +170755949416,219,0 +170755949466,222,0 +170755949514,221,0 +170755949563,221,0 +170755949611,221,0 +170755949659,222,0 +170755949709,221,0 +170755949758,221,0 +170755949806,222,0 +170755949856,227,0 +170755949904,215,0 +170755949952,215,0 +170755950000,215,0 +170755950048,216,0 +170755950096,216,0 +170755950144,217,0 +170755950191,217,0 +170755950239,217,0 +170755950287,218,0 +170755950337,219,0 +170755950385,220,0 +170755950433,220,0 +170755950482,220,0 +170755950530,221,0 +170755950578,220,0 +170755950626,223,0 +170755950674,222,0 +170755950722,222,0 +170755950770,215,0 +170755950820,215,0 +170755950869,215,0 +170755950917,215,0 +170755950967,216,0 +170755951016,216,0 +170755951066,217,0 +170755951115,217,0 +170755951163,217,0 +170755951213,218,0 +170755951263,219,0 +170755951311,219,0 +170755951360,219,0 +170755951410,221,0 +170755951458,222,0 +170755951506,222,0 +170755951555,222,0 +170755951603,221,0 +170755951651,221,0 +170755951701,215,0 +170755951750,214,0 +170755951798,214,0 +170755951846,215,0 +170755951894,215,0 +170755951942,216,0 +170755951990,216,0 +170755952038,217,0 +170755952086,217,0 +170755952134,218,0 +170755952183,219,0 +170755952233,220,0 +170755952281,220,0 +170755952328,221,0 +170755952378,221,0 +170755952427,221,0 +170755952477,221,0 +170755952525,221,0 +170755952573,216,0 +170755952622,214,0 +170755952670,214,0 +170755952720,215,0 +170755952768,215,0 +170755952816,215,0 +170755952866,216,0 +170755952914,216,0 +170755952963,217,0 +170755953011,218,0 +170755953059,219,0 +170755953107,219,0 +170755953156,220,0 +170755953204,220,0 +170755953252,221,0 +170755953300,221,0 +170755953348,221,0 +170755953396,222,0 +170755953444,221,0 +170755953494,215,0 +170755953541,214,0 +170755953589,214,0 +170755953639,215,0 +170755953689,216,0 +170755953736,216,0 +170755953786,217,0 +170755953835,217,0 +170755953885,217,0 +170755953933,218,0 +170755953981,219,0 +170755954030,220,0 +170755954078,220,0 +170755954128,220,0 +170755954176,220,0 +170755954224,221,0 +170755954272,221,0 +170755954321,221,0 +170755954369,215,0 +170755954417,214,0 +170755954467,215,0 +170755954516,215,0 +170755954564,216,0 +170755954612,216,0 +170755954662,216,0 +170755954711,217,0 +170755954759,217,0 +170755954808,218,0 +170755954858,218,0 +170755954907,219,0 +170755954957,219,0 +170755955006,220,0 +170755955054,218,0 +170755955102,221,0 +170755955152,220,0 +170755955201,221,0 +170755955249,220,0 +170755955299,215,0 +170755955347,215,0 +170755955395,215,0 +170755955443,215,0 +170755955491,216,0 +170755955539,216,0 +170755955587,217,0 +170755955635,217,0 +170755955683,217,0 +170755955732,218,0 +170755955780,218,0 +170755955828,219,0 +170755955876,219,0 +170755955925,221,0 +170755955973,220,0 +170755956023,220,0 +170755956072,221,0 +170755956122,221,0 +170755956171,215,0 +170755956219,215,0 +170755956267,215,0 +170755956315,216,0 +170755956364,216,0 +170755956412,217,0 +170755956460,217,0 +170755956508,218,0 +170755956556,218,0 +170755956604,219,0 +170755956652,220,0 +170755956702,220,0 +170755956751,221,0 +170755956799,221,0 +170755956847,222,0 +170755956895,221,0 +170755956945,221,0 +170755956994,221,0 +170755957042,220,0 +170755957090,215,0 +170755957140,215,0 +170755957188,215,0 +170755957236,216,0 +170755957284,216,0 +170755957331,217,0 +170755957379,218,0 +170755957427,218,0 +170755957477,219,0 +170755957525,219,0 +170755957574,220,0 +170755957622,221,0 +170755957670,221,0 +170755957718,222,0 +170755957766,222,0 +170755957816,222,0 +170755957864,222,0 +170755957911,221,0 +170755957959,216,0 +170755958009,215,0 +170755958057,215,0 +170755958106,215,0 +170755958154,216,0 +170755958202,216,0 +170755958250,216,0 +170755958298,217,0 +170755958346,217,0 +170755958396,218,0 +170755958444,218,0 +170755958491,219,0 +170755958539,220,0 +170755958587,219,0 +170755958635,220,0 +170755958685,220,0 +170755958732,221,0 +170755958782,221,0 +170755958830,220,0 +170755958880,215,0 +170755958929,215,0 +170755958979,215,0 +170755959028,216,0 +170755959076,216,0 +170755959124,217,0 +170755959174,217,0 +170755959223,217,0 +170755959273,217,0 +170755959322,219,0 +170755959370,219,0 +170755959419,220,0 +170755959467,221,0 +170755959517,221,0 +170755959565,220,0 +170755959614,222,0 +170755959664,221,0 +170755959713,220,0 +170755959761,216,0 +170755959809,215,0 +170755959857,215,0 +170755959905,215,0 +170755959954,216,0 +170755960002,216,0 +170755960050,217,0 +170755960098,218,0 +170755960147,218,0 +170755960195,219,0 +170755960243,220,0 +170755960291,220,0 +170755960341,220,0 +170755960388,222,0 +170755960438,222,0 +170755960486,222,0 +170755960534,221,0 +170755960583,221,0 +170755960631,221,0 +170755960679,216,0 +170755960729,215,0 +170755960777,216,0 +170755960825,216,0 +170755960872,217,0 +170755960920,218,0 +170755960968,218,0 +170755961018,218,0 +170755961066,218,0 +170755961114,219,0 +170755961163,220,0 +170755961211,220,0 +170755961259,220,0 +170755961309,220,0 +170755961358,221,0 +170755961406,221,0 +170755961456,221,0 +170755961504,221,0 +170755961551,221,0 +170755961599,215,0 +170755961647,215,0 +170755961697,216,0 +170755961745,217,0 +170755961792,217,0 +170755961840,218,0 +170755961888,218,0 +170755961936,219,0 +170755961984,220,0 +170755962032,220,0 +170755962082,220,0 +170755962130,221,0 +170755962179,221,0 +170755962227,222,0 +170755962275,221,0 +170755962325,222,0 +170755962372,222,0 +170755962420,221,0 +170755962470,216,0 +170755962518,216,0 +170755962566,217,0 +170755962614,217,0 +170755962663,218,0 +170755962711,218,0 +170755962761,219,0 +170755962810,219,0 +170755962860,220,0 +170755962908,219,0 +170755962956,221,0 +170755963004,221,0 +170755963052,222,0 +170755963100,221,0 +170755963147,222,0 +170755963195,222,0 +170755963243,221,0 +170755963291,221,0 +170755963339,221,0 +170755963387,215,0 +170755963435,214,0 +170755963483,215,0 +170755963531,216,0 +170755963580,216,0 +170755963630,216,0 +170755963679,217,0 +170755963727,217,0 +170755963775,218,0 +170755963823,218,0 +170755963871,219,0 +170755963919,220,0 +170755963967,220,0 +170755964016,221,0 +170755964066,222,0 +170755964114,220,0 +170755964162,222,0 +170755964210,221,0 +170755964259,216,0 +170755964307,215,0 +170755964355,214,0 +170755964403,215,0 +170755964451,215,0 +170755964499,215,0 +170755964547,215,0 +170755964595,215,0 +170755964643,216,0 +170755964692,216,0 +170755964740,217,0 +170755964788,218,0 +170755964836,219,0 +170755964886,220,0 +170755964934,219,0 +170755964982,219,0 +170755965030,220,0 +170755965078,220,0 +170755965126,221,0 +170755965173,215,0 +170755965221,215,0 +170755965269,214,0 +170755965317,215,0 +170755965365,215,0 +170755965415,216,0 +170755965463,216,0 +170755965512,217,0 +170755965562,217,0 +170755965611,217,0 +170755965659,219,0 +170755965709,219,0 +170755965757,220,0 +170755965804,220,0 +170755965852,220,0 +170755965900,221,0 +170755965948,220,0 +170755965996,220,0 +170755966044,217,0 +170755966093,214,0 +170755966141,214,0 +170755966191,215,0 +170755966240,215,0 +170755966288,215,0 +170755966338,216,0 +170755966386,217,0 +170755966434,217,0 +170755966482,218,0 +170755966530,218,0 +170755966577,219,0 +170755966625,219,0 +170755966673,220,0 +170755966721,220,0 +170755966769,220,0 +170755966817,221,0 +170755966867,220,0 +170755966916,221,0 +170755966964,216,0 +170755967014,215,0 +170755967062,215,0 +170755967110,215,0 +170755967158,215,0 +170755967207,215,0 +170755967255,216,0 +170755967303,217,0 +170755967351,217,0 +170755967399,218,0 +170755967447,219,0 +170755967497,220,0 +170755967546,219,0 +170755967596,220,0 +170755967643,220,0 +170755967691,221,0 +170755967741,221,0 +170755967789,220,0 +170755967837,221,0 +170755967886,215,0 +170755967934,215,0 +170755967984,215,0 +170755968032,215,0 +170755968080,216,0 +170755968127,217,0 +170755968176,217,0 +170755968225,217,0 +170755968273,218,0 +170755968321,219,0 +170755968369,219,0 +170755968417,220,0 +170755968465,220,0 +170755968514,221,0 +170755968562,220,0 +170755968610,221,0 +170755968658,221,0 +170755968705,221,0 +170755968753,216,0 +170755968801,215,0 +170755968849,215,0 +170755968897,215,0 +170755968945,215,0 +170755968993,215,0 +170755969040,216,0 +170755969088,216,0 +170755969136,217,0 +170755969184,218,0 +170755969232,219,0 +170755969280,218,0 +170755969328,221,0 +170755969376,220,0 +170755969425,221,0 +170755969473,222,0 +170755969521,222,0 +170755969569,221,0 +170755969617,221,0 +170755969665,215,0 +170755969714,215,0 +170755969762,214,0 +170755969812,215,0 +170755969861,215,0 +170755969909,215,0 +170755969959,215,0 +170755970008,216,0 +170755970058,217,0 +170755970105,216,0 +170755970153,218,0 +170755970203,219,0 +170755970250,219,0 +170755970298,220,0 +170755970346,220,0 +170755970394,220,0 +170755970442,221,0 +170755970490,221,0 +170755970538,221,0 +170755970585,215,0 +170755970633,214,0 +170755970683,215,0 +170755970732,215,0 +170755970780,215,0 +170755970830,216,0 +170755970878,217,0 +170755970926,217,0 +170755970974,217,0 +170755971021,218,0 +170755971069,218,0 +170755971117,218,0 +170755971167,220,0 +170755971216,219,0 +170755971264,219,0 +170755971314,220,0 +170755971362,220,0 +170755971410,220,0 +170755971458,221,0 +170755971506,221,0 +170755971553,222,0 +170755971603,222,0 +170755971651,224,0 +170755971699,223,0 +170755971747,223,0 +170755971795,222,0 +170755971843,222,0 +170755971891,216,0 +170755971939,215,0 +170755971988,216,0 +170755972036,216,0 +170755972084,217,0 +170755972132,218,0 +170755972181,217,0 +170755972229,218,0 +170755972277,219,0 +170755972325,219,0 +170755972373,221,0 +170755972421,221,0 +170755972469,221,0 +170755972517,222,0 +170755972565,222,0 +170755972614,222,0 +170755972662,223,0 +170755972710,222,0 +170755972758,221,0 +170755972806,216,0 +170755972854,216,0 +170755972903,216,0 +170755972951,217,0 +170755973001,218,0 +170755973048,218,0 +170755973096,218,0 +170755973144,219,0 +170755973192,219,0 +170755973240,220,0 +170755973289,221,0 +170755973337,221,0 +170755973385,221,0 +170755973433,221,0 +170755973481,221,0 +170755973529,222,0 +170755973576,222,0 +170755973624,222,0 +170755973672,221,0 +170755973720,216,0 +170755973768,216,0 +170755973815,216,0 +170755973863,217,0 +170755973913,219,0 +170755973961,218,0 +170755974008,218,0 +170755974056,219,0 +170755974104,220,0 +170755974152,220,0 +170755974200,221,0 +170755974248,222,0 +170755974297,223,0 +170755974347,222,0 +170755974395,222,0 +170755974443,222,0 +170755974492,221,0 +170755974542,221,0 +170755974591,217,0 +170755974639,216,0 +170755974687,216,0 +170755974737,217,0 +170755974785,218,0 +170755974834,218,0 +170755974884,219,0 +170755974932,219,0 +170755974980,220,0 +170755975028,220,0 +170755975077,221,0 +170755975125,221,0 +170755975173,222,0 +170755975221,222,0 +170755975269,220,0 +170755975319,222,0 +170755975367,222,0 +170755975415,223,0 +170755975463,221,0 +170755975511,216,0 +170755975560,216,0 +170755975608,217,0 +170755975656,217,0 +170755975706,218,0 +170755975754,218,0 +170755975803,219,0 +170755975853,219,0 +170755975901,220,0 +170755975948,220,0 +170755975996,222,0 +170755976046,222,0 +170755976094,222,0 +170755976142,222,0 +170755976191,222,0 +170755976239,222,0 +170755976287,223,0 +170755976335,222,0 +170755976383,217,0 +170755976431,215,0 +170755976479,217,0 +170755976527,216,0 +170755976575,217,0 +170755976624,217,0 +170755976672,218,0 +170755976720,219,0 +170755976770,219,0 +170755976818,220,0 +170755976865,221,0 +170755976915,221,0 +170755976964,221,0 +170755977012,221,0 +170755977060,223,0 +170755977108,222,0 +170755977156,222,0 +170755977204,222,0 +170755977254,221,0 +170755977302,216,0 +170755977349,215,0 +170755977397,216,0 +170755977447,217,0 +170755977497,216,0 +170755977545,218,0 +170755977594,219,0 +170755977642,219,0 +170755977690,220,0 +170755977738,221,0 +170755977786,221,0 +170755977835,222,0 +170755977885,223,0 +170755977933,222,0 +170755977982,223,0 +170755978032,221,0 +170755978081,222,0 +170755978129,222,0 +170755978177,219,0 +170755978225,216,0 +170755978273,216,0 +170755978322,217,0 +170755978370,217,0 +170755978420,219,0 +170755978469,219,0 +170755978517,219,0 +170755978567,220,0 +170755978616,221,0 +170755978664,224,0 +170755978712,223,0 +170755978762,223,0 +170755978811,222,0 +170755978861,222,0 +170755978909,222,0 +170755978958,221,0 +170755979006,221,0 +170755979054,221,0 +170755979103,215,0 +170755979153,215,0 +170755979203,215,0 +170755979252,216,0 +170755979300,216,0 +170755979348,217,0 +170755979396,217,0 +170755979443,218,0 +170755979491,220,0 +170755979539,219,0 +170755979587,220,0 +170755979635,221,0 +170755979683,221,0 +170755979731,222,0 +170755979778,221,0 +170755979826,221,0 +170755979876,222,0 +170755979924,221,0 +170755979973,216,0 +170755980021,215,0 +170755980069,215,0 +170755980117,214,0 +170755980165,215,0 +170755980213,216,0 +170755980261,216,0 +170755980308,217,0 +170755980356,217,0 +170755980404,217,0 +170755980452,218,0 +170755980501,218,0 +170755980549,221,0 +170755980597,221,0 +170755980645,221,0 +170755980693,222,0 +170755980742,222,0 +170755980790,221,0 +170755980838,221,0 +170755980887,216,0 +170755980935,215,0 +170755980984,215,0 +170755981034,216,0 +170755981082,217,0 +170755981130,216,0 +170755981178,216,0 +170755981225,217,0 +170755981273,218,0 +170755981322,218,0 +170755981370,219,0 +170755981418,219,0 +170755981466,220,0 +170755981514,221,0 +170755981562,222,0 +170755981609,222,0 +170755981657,222,0 +170755981705,222,0 +170755981753,221,0 +170755981801,216,0 +170755981849,215,0 +170755981897,216,0 +170755981944,216,0 +170755981992,217,0 +170755982040,217,0 +170755982088,218,0 +170755982136,218,0 +170755982184,219,0 +170755982231,219,0 +170755982279,220,0 +170755982327,220,0 +170755982375,222,0 +170755982423,222,0 +170755982472,221,0 +170755982520,222,0 +170755982568,222,0 +170755982616,221,0 +170755982663,220,0 +170755982711,215,0 +170755982759,216,0 +170755982807,216,0 +170755982856,216,0 +170755982904,217,0 +170755982952,218,0 +170755983000,218,0 +170755983048,219,0 +170755983096,220,0 +170755983143,221,0 +170755983191,221,0 +170755983239,221,0 +170755983287,221,0 +170755983334,222,0 +170755983382,221,0 +170755983430,221,0 +170755983479,221,0 +170755983527,221,0 +170755983575,216,0 +170755983623,215,0 +170755983672,216,0 +170755983720,216,0 +170755983768,217,0 +170755983816,218,0 +170755983865,219,0 +170755983913,219,0 +170755983961,220,0 +170755984009,220,0 +170755984057,221,0 +170755984105,221,0 +170755984153,221,0 +170755984200,222,0 +170755984250,222,0 +170755984298,223,0 +170755984346,222,0 +170755984393,222,0 +170755984441,221,0 +170755984489,216,0 +170755984537,215,0 +170755984585,216,0 +170755984634,216,0 +170755984682,217,0 +170755984730,218,0 +170755984777,217,0 +170755984825,218,0 +170755984873,219,0 +170755984921,219,0 +170755984969,220,0 +170755985016,220,0 +170755985064,220,0 +170755985113,221,0 +170755985161,221,0 +170755985209,221,0 +170755985257,221,0 +170755985305,220,0 +170755985352,220,0 +170755985400,215,0 +170755985448,214,0 +170755985496,215,0 +170755985544,215,0 +170755985593,216,0 +170755985641,216,0 +170755985689,216,0 +170755985739,217,0 +170755985787,217,0 +170755985835,218,0 +170755985884,219,0 +170755985934,219,0 +170755985982,219,0 +170755986030,221,0 +170755986077,221,0 +170755986125,222,0 +170755986175,221,0 +170755986223,221,0 +170755986272,216,0 +170755986320,215,0 +170755986368,215,0 +170755986416,215,0 +170755986464,215,0 +170755986512,216,0 +170755986560,216,0 +170755986608,217,0 +170755986657,217,0 +170755986705,217,0 +170755986753,218,0 +170755986803,218,0 +170755986852,219,0 +170755986900,219,0 +170755986948,219,0 +170755986996,220,0 +170755987044,220,0 +170755987091,220,0 +170755987139,220,0 +170755987187,216,0 +170755987237,215,0 +170755987285,215,0 +170755987334,216,0 +170755987384,216,0 +170755987432,217,0 +170755987480,217,0 +170755987528,217,0 +170755987575,217,0 +170755987623,218,0 +170755987671,219,0 +170755987721,219,0 +170755987769,219,0 +170755987817,220,0 +170755987867,220,0 +170755987914,220,0 +170755987962,221,0 +170755988010,221,0 +170755988058,221,0 +170755988108,215,0 +170755988156,216,0 +170755988204,216,0 +170755988251,216,0 +170755988301,216,0 +170755988350,218,0 +170755988400,218,0 +170755988448,218,0 +170755988496,219,0 +170755988545,219,0 +170755988595,220,0 +170755988644,219,0 +170755988692,220,0 +170755988742,221,0 +170755988791,221,0 +170755988839,221,0 +170755988887,220,0 +170755988936,220,0 +170755988986,215,0 +170755989034,215,0 +170755989081,215,0 +170755989129,216,0 +170755989177,216,0 +170755989225,216,0 +170755989273,217,0 +170755989321,217,0 +170755989369,218,0 +170755989417,218,0 +170755989464,219,0 +170755989512,219,0 +170755989560,220,0 +170755989610,220,0 +170755989659,221,0 +170755989709,220,0 +170755989758,220,0 +170755989806,221,0 +170755989854,221,0 +170755989902,215,0 +170755989949,215,0 +170755989997,215,0 +170755990045,215,0 +170755990093,215,0 +170755990143,217,0 +170755990191,217,0 +170755990239,217,0 +170755990287,218,0 +170755990336,218,0 +170755990386,219,0 +170755990433,220,0 +170755990481,220,0 +170755990529,220,0 +170755990579,220,0 +170755990628,221,0 +170755990676,221,0 +170755990725,221,0 +170755990773,216,0 +170755990823,214,0 +170755990872,215,0 +170755990920,215,0 +170755990968,215,0 +170755991016,216,0 +170755991064,216,0 +170755991112,217,0 +170755991161,217,0 +170755991209,218,0 +170755991257,218,0 +170755991306,220,0 +170755991356,218,0 +170755991404,221,0 +170755991453,221,0 +170755991501,222,0 +170755991549,221,0 +170755991598,221,0 +170755991648,221,0 +170755991696,214,0 +170755991744,215,0 +170755991793,215,0 +170755991841,215,0 +170755991889,216,0 +170755991937,216,0 +170755991985,216,0 +170755992034,216,0 +170755992082,217,0 +170755992130,218,0 +170755992178,219,0 +170755992226,219,0 +170755992274,220,0 +170755992322,220,0 +170755992369,220,0 +170755992417,221,0 +170755992465,221,0 +170755992513,219,0 +170755992561,216,0 +170755992609,215,0 +170755992657,215,0 +170755992705,215,0 +170755992753,215,0 +170755992802,216,0 +170755992852,216,0 +170755992901,216,0 +170755992951,217,0 +170755993000,218,0 +170755993050,219,0 +170755993098,219,0 +170755993146,219,0 +170755993193,221,0 +170755993243,221,0 +170755993291,220,0 +170755993340,221,0 +170755993390,221,0 +170755993438,222,0 +170755993486,215,0 +170755993534,214,0 +170755993582,215,0 +170755993630,215,0 +170755993678,216,0 +170755993727,216,0 +170755993775,216,0 +170755993823,216,0 +170755993873,217,0 +170755993922,218,0 +170755993970,218,0 +170755994018,219,0 +170755994066,219,0 +170755994114,219,0 +170755994163,219,0 +170755994211,221,0 +170755994261,220,0 +170755994309,221,0 +170755994357,216,0 +170755994406,215,0 +170755994454,214,0 +170755994504,215,0 +170755994552,216,0 +170755994601,216,0 +170755994649,216,0 +170755994697,217,0 +170755994745,217,0 +170755994793,217,0 +170755994841,218,0 +170755994889,218,0 +170755994937,219,0 +170755994985,218,0 +170755995034,221,0 +170755995084,221,0 +170755995132,221,0 +170755995181,221,0 +170755995231,220,0 +170755995280,215,0 +170755995330,214,0 +170755995378,215,0 +170755995426,215,0 +170755995475,216,0 +170755995523,216,0 +170755995571,216,0 +170755995620,216,0 +170755995670,217,0 +170755995718,218,0 +170755995765,219,0 +170755995813,219,0 +170755995861,219,0 +170755995909,220,0 +170755995957,220,0 +170755996006,220,0 +170755996054,220,0 +170755996102,220,0 +170755996152,216,0 +170755996200,215,0 +170755996249,214,0 +170755996299,215,0 +170755996347,215,0 +170755996395,216,0 +170755996443,216,0 +170755996491,216,0 +170755996538,217,0 +170755996588,217,0 +170755996636,218,0 +170755996684,219,0 +170755996732,219,0 +170755996781,219,0 +170755996829,221,0 +170755996877,221,0 +170755996927,221,0 +170755996976,220,0 +170755997026,220,0 +170755997074,215,0 +170755997121,215,0 +170755997169,215,0 +170755997217,216,0 +170755997265,216,0 +170755997313,216,0 +170755997361,217,0 +170755997409,217,0 +170755997458,217,0 +170755997506,218,0 +170755997554,218,0 +170755997604,219,0 +170755997652,219,0 +170755997700,220,0 +170755997748,221,0 +170755997797,221,0 +170755997845,221,0 +170755997893,220,0 +170755997941,220,0 +170755997989,215,0 +170755998038,215,0 +170755998086,216,0 +170755998136,216,0 +170755998184,217,0 +170755998233,217,0 +170755998281,216,0 +170755998329,218,0 +170755998378,218,0 +170755998426,218,0 +170755998476,219,0 +170755998524,220,0 +170755998574,220,0 +170755998622,221,0 +170755998670,221,0 +170755998718,221,0 +170755998767,221,0 +170755998815,220,0 +170755998863,216,0 +170755998911,215,0 +170755998959,216,0 +170755999008,216,0 +170755999058,216,0 +170755999106,217,0 +170755999154,218,0 +170755999202,218,0 +170755999250,219,0 +170755999298,219,0 +170755999346,220,0 +170755999395,220,0 +170755999444,221,0 +170755999492,221,0 +170755999540,220,0 +170755999588,220,0 +170755999638,221,0 +170755999685,220,0 +170755999733,219,0 +170755999781,215,0 +170755999830,215,0 +170755999878,216,0 +170755999926,216,0 +170755999974,216,0 +170756000022,217,0 +170756000069,217,0 +170756000119,218,0 +170756000167,218,0 +170756000214,219,0 +170756000262,219,0 +170756000310,220,0 +170756000360,220,0 +170756000408,220,0 +170756000455,221,0 +170756000503,221,0 +170756000551,221,0 +170756000599,219,0 +170756000647,219,0 +170756000695,215,0 +170756000743,215,0 +170756000793,215,0 +170756000841,215,0 +170756000890,216,0 +170756000938,216,0 +170756000986,216,0 +170756001034,216,0 +170756001082,217,0 +170756001131,217,0 +170756001179,218,0 +170756001227,218,0 +170756001277,218,0 +170756001326,219,0 +170756001374,219,0 +170756001422,220,0 +170756001470,220,0 +170756001518,219,0 +170756001566,216,0 +170756001614,215,0 +170756001663,215,0 +170756001711,215,0 +170756001759,215,0 +170756001809,215,0 +170756001856,216,0 +170756001904,216,0 +170756001954,216,0 +170756002002,217,0 +170756002051,217,0 +170756002101,218,0 +170756002149,219,0 +170756002198,219,0 +170756002246,220,0 +170756002294,220,0 +170756002344,219,0 +170756002392,219,0 +170756002439,219,0 +170756002487,215,0 +170756002535,215,0 +170756002585,215,0 +170756002633,216,0 +170756002681,216,0 +170756002729,216,0 +170756002777,217,0 +170756002824,218,0 +170756002872,218,0 +170756002920,218,0 +170756002968,219,0 +170756003017,219,0 +170756003065,220,0 +170756003113,220,0 +170756003161,220,0 +170756003209,220,0 +170756003257,221,0 +170756003305,219,0 +170756003354,219,0 +170756003404,215,0 +170756003452,215,0 +170756003500,216,0 +170756003549,216,0 +170756003597,216,0 +170756003645,217,0 +170756003694,217,0 +170756003742,218,0 +170756003790,218,0 +170756003838,220,0 +170756003888,219,0 +170756003936,219,0 +170756003984,220,0 +170756004033,220,0 +170756004083,221,0 +170756004131,220,0 +170756004179,220,0 +170756004228,219,0 +170756004277,216,0 +170756004325,216,0 +170756004375,216,0 +170756004423,217,0 +170756004471,217,0 +170756004521,218,0 +170756004570,218,0 +170756004620,219,0 +170756004669,219,0 +170756004719,220,0 +170756004767,220,0 +170756004815,220,0 +170756004864,220,0 +170756004912,220,0 +170756004960,220,0 +170756005010,221,0 +170756005058,221,0 +170756005106,220,0 +170756005155,220,0 +170756005203,216,0 +170756005252,216,0 +170756005300,217,0 +170756005350,217,0 +170756005398,218,0 +170756005446,218,0 +170756005495,219,0 +170756005543,219,0 +170756005591,219,0 +170756005639,220,0 +170756005689,220,0 +170756005737,220,0 +170756005785,221,0 +170756005833,221,0 +170756005882,221,0 +170756005930,221,0 +170756005978,221,0 +170756006028,220,0 +170756006077,216,0 +170756006127,215,0 +170756006175,215,0 +170756006223,216,0 +170756006271,216,0 +170756006320,217,0 +170756006370,216,0 +170756006418,217,0 +170756006467,217,0 +170756006517,218,0 +170756006565,218,0 +170756006613,219,0 +170756006661,219,0 +170756006708,220,0 +170756006756,220,0 +170756006804,216,0 +170756006852,220,0 +170756006900,220,0 +170756006950,220,0 +170756006999,216,0 +170756007049,215,0 +170756007097,215,0 +170756007146,216,0 +170756007196,216,0 +170756007244,216,0 +170756007293,216,0 +170756007343,217,0 +170756007391,217,0 +170756007439,216,0 +170756007487,218,0 +170756007535,217,0 +170756007582,218,0 +170756007630,219,0 +170756007678,218,0 +170756007726,220,0 +170756007776,220,0 +170756007825,219,0 +170756007875,216,0 +170756007923,215,0 +170756007972,215,0 +170756008022,216,0 +170756008070,216,0 +170756008118,216,0 +170756008165,216,0 +170756008213,217,0 +170756008263,217,0 +170756008311,217,0 +170756008359,218,0 +170756008408,219,0 +170756008456,219,0 +170756008506,220,0 +170756008554,219,0 +170756008602,219,0 +170756008650,220,0 +170756008699,220,0 +170756008747,220,0 +170756008797,216,0 +170756008845,215,0 +170756008893,215,0 +170756008941,216,0 +170756008990,216,0 +170756009039,217,0 +170756009089,216,0 +170756009137,217,0 +170756009185,217,0 +170756009234,217,0 +170756009282,218,0 +170756009330,219,0 +170756009378,219,0 +170756009426,220,0 +170756009476,220,0 +170756009523,220,0 +170756009573,221,0 +170756009620,221,0 +170756009668,219,0 +170756009716,215,0 +170756009764,215,0 +170756009812,215,0 +170756009861,215,0 +170756009911,216,0 +170756009958,216,0 +170756010008,217,0 +170756010057,216,0 +170756010105,218,0 +170756010153,218,0 +170756010201,219,0 +170756010249,220,0 +170756010298,220,0 +170756010346,220,0 +170756010394,221,0 +170756010442,220,0 +170756010490,220,0 +170756010539,220,0 +170756010589,216,0 +170756010637,215,0 +170756010684,215,0 +170756010734,215,0 +170756010782,215,0 +170756010830,215,0 +170756010877,216,0 +170756010925,216,0 +170756010973,216,0 +170756011021,217,0 +170756011069,217,0 +170756011117,218,0 +170756011165,218,0 +170756011213,220,0 +170756011261,219,0 +170756011309,220,0 +170756011357,220,0 +170756011406,219,0 +170756011456,220,0 +170756011504,216,0 +170756011552,215,0 +170756011601,215,0 +170756011651,215,0 +170756011698,215,0 +170756011748,215,0 +170756011797,215,0 +170756011845,216,0 +170756011893,216,0 +170756011941,217,0 +170756011989,217,0 +170756012037,218,0 +170756012087,218,0 +170756012134,219,0 +170756012182,219,0 +170756012230,220,0 +170756012280,221,0 +170756012329,220,0 +170756012378,221,0 +170756012426,215,0 +170756012474,215,0 +170756012522,215,0 +170756012570,216,0 +170756012618,216,0 +170756012666,216,0 +170756012714,216,0 +170756012762,216,0 +170756012810,216,0 +170756012857,218,0 +170756012907,219,0 +170756012955,218,0 +170756013004,220,0 +170756013052,220,0 +170756013102,220,0 +170756013151,222,0 +170756013199,221,0 +170756013247,220,0 +170756013297,219,0 +170756013345,215,0 +170756013392,215,0 +170756013440,215,0 +170756013488,215,0 +170756013536,215,0 +170756013584,216,0 +170756013632,216,0 +170756013682,216,0 +170756013730,216,0 +170756013777,217,0 +170756013827,218,0 +170756013875,218,0 +170756013924,218,0 +170756013974,219,0 +170756014022,219,0 +170756014069,220,0 +170756014117,221,0 +170756014165,220,0 +170756014213,216,0 +170756014261,215,0 +170756014309,215,0 +170756014357,215,0 +170756014406,215,0 +170756014456,215,0 +170756014504,216,0 +170756014552,216,0 +170756014601,217,0 +170756014651,217,0 +170756014699,218,0 +170756014746,219,0 +170756014794,219,0 +170756014842,220,0 +170756014892,220,0 +170756014940,220,0 +170756014988,220,0 +170756015036,220,0 +170756015084,220,0 +170756015133,215,0 +170756015181,215,0 +170756015231,215,0 +170756015279,215,0 +170756015327,215,0 +170756015376,215,0 +170756015426,216,0 +170756015473,216,0 +170756015521,217,0 +170756015569,217,0 +170756015617,218,0 +170756015667,219,0 +170756015714,220,0 +170756015762,220,0 +170756015810,220,0 +170756015860,220,0 +170756015909,221,0 +170756015957,221,0 +170756016005,216,0 +170756016053,215,0 +170756016101,215,0 +170756016149,215,0 +170756016197,216,0 +170756016245,216,0 +170756016292,216,0 +170756016340,217,0 +170756016388,217,0 +170756016436,218,0 +170756016484,218,0 +170756016532,219,0 +170756016581,219,0 +170756016629,220,0 +170756016677,220,0 +170756016725,220,0 +170756016773,220,0 +170756016823,220,0 +170756016872,220,0 +170756016920,216,0 +170756016968,215,0 +170756017016,215,0 +170756017064,216,0 +170756017112,216,0 +170756017161,216,0 +170756017211,216,0 +170756017258,216,0 +170756017306,217,0 +170756017356,217,0 +170756017404,218,0 +170756017453,219,0 +170756017501,219,0 +170756017551,221,0 +170756017598,219,0 +170756017646,220,0 +170756017696,222,0 +170756017744,221,0 +170756017792,217,0 +170756017840,215,0 +170756017889,216,0 +170756017938,216,0 +170756017986,217,0 +170756018034,217,0 +170756018082,217,0 +170756018132,217,0 +170756018180,218,0 +170756018229,218,0 +170756018277,218,0 +170756018327,219,0 +170756018375,220,0 +170756018423,220,0 +170756018471,219,0 +170756018519,220,0 +170756018567,220,0 +170756018615,221,0 +170756018662,220,0 +170756018710,216,0 +170756018758,216,0 +170756018806,216,0 +170756018856,216,0 +170756018903,217,0 +170756018951,217,0 +170756018999,218,0 +170756019049,218,0 +170756019096,218,0 +170756019146,219,0 +170756019194,219,0 +170756019242,220,0 +170756019289,220,0 +170756019338,221,0 +170756019385,220,0 +170756019433,221,0 +170756019483,221,0 +170756019531,221,0 +170756019580,220,0 +170756019630,215,0 +170756019679,215,0 +170756019727,216,0 +170756019775,217,0 +170756019823,217,0 +170756019871,218,0 +170756019919,218,0 +170756019967,219,0 +170756020014,219,0 +170756020062,220,0 +170756020110,219,0 +170756020158,221,0 +170756020206,221,0 +170756020256,221,0 +170756020304,221,0 +170756020353,221,0 +170756020401,221,0 +170756020449,220,0 +170756020497,216,0 +170756020545,215,0 +170756020593,216,0 +170756020640,217,0 +170756020688,217,0 +170756020736,218,0 +170756020786,219,0 +170756020835,219,0 +170756020883,219,0 +170756020933,221,0 +170756020981,220,0 +170756021029,221,0 +170756021077,223,0 +170756021125,221,0 +170756021174,221,0 +170756021222,221,0 +170756021271,221,0 +170756021321,221,0 +170756021369,220,0 +170756021418,215,0 +170756021466,216,0 +170756021514,216,0 +170756021563,217,0 +170756021611,216,0 +170756021659,217,0 +170756021707,218,0 +170756021755,219,0 +170756021804,219,0 +170756021854,220,0 +170756021903,220,0 +170756021951,221,0 +170756021999,220,0 +170756022048,219,0 +170756022096,222,0 +170756022144,221,0 +170756022193,221,0 +170756022243,220,0 +170756022291,216,0 +170756022339,215,0 +170756022387,215,0 +170756022436,216,0 +170756022484,216,0 +170756022532,216,0 +170756022582,216,0 +170756022630,217,0 +170756022679,218,0 +170756022727,219,0 +170756022775,219,0 +170756022823,220,0 +170756022871,220,0 +170756022919,220,0 +170756022967,221,0 +170756023016,221,0 +170756023066,221,0 +170756023115,221,0 +170756023163,220,0 +170756023213,215,0 +170756023262,215,0 +170756023310,215,0 +170756023358,216,0 +170756023408,217,0 +170756023455,216,0 +170756023503,217,0 +170756023551,217,0 +170756023601,218,0 +170756023649,219,0 +170756023697,219,0 +170756023746,220,0 +170756023794,221,0 +170756023844,221,0 +170756023892,222,0 +170756023940,221,0 +170756023988,222,0 +170756024037,221,0 +170756024085,216,0 +170756024133,215,0 +170756024182,215,0 +170756024232,216,0 +170756024280,216,0 +170756024329,217,0 +170756024377,217,0 +170756024425,217,0 +170756024473,218,0 +170756024521,219,0 +170756024570,220,0 +170756024618,220,0 +170756024668,221,0 +170756024716,221,0 +170756024764,221,0 +170756024812,221,0 +170756024860,222,0 +170756024909,221,0 +170756024958,220,0 +170756025006,215,0 +170756025056,216,0 +170756025104,216,0 +170756025151,217,0 +170756025199,217,0 +170756025247,217,0 +170756025295,217,0 +170756025343,219,0 +170756025392,219,0 +170756025440,219,0 +170756025488,220,0 +170756025536,221,0 +170756025584,220,0 +170756025634,221,0 +170756025683,221,0 +170756025733,220,0 +170756025781,222,0 +170756025829,221,0 +170756025876,218,0 +170756025924,216,0 +170756025972,216,0 +170756026022,217,0 +170756026070,217,0 +170756026118,219,0 +170756026166,218,0 +170756026214,219,0 +170756026262,220,0 +170756026311,220,0 +170756026361,220,0 +170756026410,221,0 +170756026458,221,0 +170756026506,221,0 +170756026554,221,0 +170756026603,221,0 +170756026651,221,0 +170756026699,221,0 +170756026747,220,0 +170756026795,216,0 +170756026843,216,0 +170756026891,216,0 +170756026939,216,0 +170756026987,217,0 +170756027036,218,0 +170756027084,218,0 +170756027134,218,0 +170756027182,219,0 +170756027231,219,0 +170756027279,220,0 +170756027327,219,0 +170756027377,220,0 +170756027426,221,0 +170756027474,221,0 +170756027524,220,0 +170756027573,221,0 +170756027623,220,0 +170756027671,216,0 +170756027719,214,0 +170756027766,215,0 +170756027814,216,0 +170756027862,216,0 +170756027911,216,0 +170756027961,217,0 +170756028009,217,0 +170756028057,218,0 +170756028106,218,0 +170756028154,218,0 +170756028202,220,0 +170756028250,219,0 +170756028298,220,0 +170756028347,221,0 +170756028395,221,0 +170756028443,221,0 +170756028491,221,0 +170756028539,220,0 +170756028587,215,0 +170756028634,215,0 +170756028682,215,0 +170756028730,215,0 +170756028780,215,0 +170756028828,215,0 +170756028877,216,0 +170756028927,216,0 +170756028975,216,0 +170756029024,217,0 +170756029072,217,0 +170756029120,218,0 +170756029168,219,0 +170756029217,219,0 +170756029267,220,0 +170756029315,220,0 +170756029363,220,0 +170756029412,220,0 +170756029460,216,0 +170756029508,214,0 +170756029556,215,0 +170756029605,215,0 +170756029653,214,0 +170756029703,215,0 +170756029752,215,0 +170756029800,215,0 +170756029848,216,0 +170756029896,216,0 +170756029944,217,0 +170756029992,218,0 +170756030039,215,0 +170756030089,217,0 +170756030137,218,0 +170756030186,219,0 +170756030234,219,0 +170756030284,220,0 +170756030332,219,0 +170756030381,216,0 +170756030429,215,0 +170756030477,216,0 +170756030525,216,0 +170756030573,216,0 +170756030621,217,0 +170756030669,218,0 +170756030717,218,0 +170756030766,219,0 +170756030814,219,0 +170756030862,219,0 +170756030911,220,0 +170756030961,220,0 +170756031010,222,0 +170756031057,221,0 +170756031107,221,0 +170756031156,221,0 +170756031204,221,0 +170756031252,218,0 +170756031300,215,0 +170756031350,216,0 +170756031397,216,0 +170756031447,216,0 +170756031495,216,0 +170756031543,217,0 +170756031591,217,0 +170756031639,218,0 +170756031687,218,0 +170756031736,219,0 +170756031786,219,0 +170756031834,220,0 +170756031883,221,0 +170756031933,222,0 +170756031982,222,0 +170756032030,221,0 +170756032080,221,0 +170756032128,221,0 +170756032177,216,0 +170756032225,215,0 +170756032273,216,0 +170756032323,217,0 +170756032371,217,0 +170756032418,218,0 +170756032466,218,0 +170756032514,218,0 +170756032563,219,0 +170756032611,219,0 +170756032659,220,0 +170756032709,220,0 +170756032757,221,0 +170756032805,221,0 +170756032854,221,0 +170756032902,222,0 +170756032952,222,0 +170756033000,221,0 +170756033049,217,0 +170756033097,215,0 +170756033145,215,0 +170756033193,216,0 +170756033241,217,0 +170756033289,217,0 +170756033337,217,0 +170756033385,218,0 +170756033433,218,0 +170756033482,219,0 +170756033532,220,0 +170756033579,220,0 +170756033629,221,0 +170756033678,220,0 +170756033728,221,0 +170756033776,221,0 +170756033824,221,0 +170756033873,221,0 +170756033921,220,0 +170756033969,215,0 +170756034017,215,0 +170756034067,216,0 +170756034116,216,0 +170756034166,216,0 +170756034215,217,0 +170756034263,218,0 +170756034311,218,0 +170756034359,218,0 +170756034407,220,0 +170756034455,220,0 +170756034503,220,0 +170756034552,221,0 +170756034602,220,0 +170756034651,222,0 +170756034699,220,0 +170756034747,221,0 +170756034797,221,0 +170756034845,216,0 +170756034894,214,0 +170756034942,216,0 +170756034992,216,0 +170756035039,216,0 +170756035089,216,0 +170756035137,216,0 +170756035186,217,0 +170756035234,217,0 +170756035282,218,0 +170756035330,218,0 +170756035378,219,0 +170756035426,220,0 +170756035475,220,0 +170756035523,221,0 +170756035573,221,0 +170756035621,221,0 +170756035670,221,0 +170756035720,221,0 +170756035768,215,0 +170756035816,215,0 +170756035864,215,0 +170756035912,216,0 +170756035959,216,0 +170756036007,217,0 +170756036055,217,0 +170756036103,218,0 +170756036152,218,0 +170756036200,218,0 +170756036248,220,0 +170756036296,220,0 +170756036344,220,0 +170756036392,221,0 +170756036440,221,0 +170756036488,221,0 +170756036537,221,0 +170756036587,220,0 +170756036636,218,0 +170756036684,215,0 +170756036732,215,0 +170756036782,216,0 +170756036829,216,0 +170756036879,216,0 +170756036928,216,0 +170756036978,217,0 +170756037026,218,0 +170756037074,218,0 +170756037123,218,0 +170756037171,219,0 +170756037219,220,0 +170756037267,219,0 +170756037314,221,0 +170756037362,221,0 +170756037410,221,0 +170756037458,220,0 +170756037506,221,0 +170756037555,215,0 +170756037605,215,0 +170756037653,216,0 +170756037702,216,0 +170756037752,216,0 +170756037801,217,0 +170756037849,217,0 +170756037897,218,0 +170756037945,218,0 +170756037995,219,0 +170756038044,219,0 +170756038092,220,0 +170756038140,220,0 +170756038188,221,0 +170756038236,221,0 +170756038284,220,0 +170756038332,221,0 +170756038380,220,0 +170756038429,216,0 +170756038477,215,0 +170756038525,215,0 +170756038573,215,0 +170756038621,216,0 +170756038671,216,0 +170756038720,217,0 +170756038768,217,0 +170756038816,217,0 +170756038864,218,0 +170756038913,219,0 +170756038961,218,0 +170756039009,220,0 +170756039057,220,0 +170756039105,220,0 +170756039153,221,0 +170756039203,221,0 +170756039251,221,0 +170756039298,220,0 +170756039346,216,0 +170756039394,215,0 +170756039444,215,0 +170756039492,215,0 +170756039540,216,0 +170756039588,216,0 +170756039637,216,0 +170756039685,217,0 +170756039733,218,0 +170756039781,218,0 +170756039830,219,0 +170756039880,218,0 +170756039928,219,0 +170756039976,220,0 +170756040024,220,0 +170756040072,220,0 +170756040120,220,0 +170756040168,221,0 +170756040216,221,0 +170756040265,215,0 +170756040315,215,0 +170756040362,216,0 +170756040410,217,0 +170756040458,217,0 +170756040506,218,0 +170756040554,218,0 +170756040602,218,0 +170756040652,220,0 +170756040700,220,0 +170756040748,220,0 +170756040796,221,0 +170756040845,224,0 +170756040895,221,0 +170756040943,221,0 +170756040991,221,0 +170756041040,221,0 +170756041090,220,0 +170756041137,216,0 +170756041185,215,0 +170756041235,216,0 +170756041283,217,0 +170756041332,217,0 +170756041380,219,0 +170756041428,219,0 +170756041476,219,0 +170756041524,219,0 +170756041574,220,0 +170756041622,220,0 +170756041670,221,0 +170756041717,221,0 +170756041767,220,0 +170756041815,222,0 +170756041863,222,0 +170756041911,221,0 +170756041959,221,0 +170756042008,219,0 +170756042056,215,0 +170756042104,215,0 +170756042152,216,0 +170756042200,217,0 +170756042248,217,0 +170756042296,217,0 +170756042343,219,0 +170756042391,221,0 +170756042439,219,0 +170756042487,220,0 +170756042537,220,0 +170756042585,221,0 +170756042632,219,0 +170756042682,222,0 +170756042730,222,0 +170756042778,222,0 +170756042827,221,0 +170756042875,221,0 +170756042925,216,0 +170756042973,214,0 +170756043022,214,0 +170756043070,214,0 +170756043118,215,0 +170756043168,215,0 +170756043216,216,0 +170756043264,216,0 +170756043312,216,0 +170756043359,217,0 +170756043407,218,0 +170756043455,218,0 +170756043503,220,0 +170756043551,220,0 +170756043599,220,0 +170756043647,220,0 +170756043695,221,0 +170756043743,220,0 +170756043791,220,0 +170756043839,215,0 +170756043887,214,0 +170756043936,214,0 +170756043986,214,0 +170756044034,215,0 +170756044083,215,0 +170756044133,215,0 +170756044182,215,0 +170756044230,216,0 +170756044280,217,0 +170756044327,217,0 +170756044375,218,0 +170756044423,218,0 +170756044471,219,0 +170756044519,219,0 +170756044567,219,0 +170756044615,220,0 +170756044663,220,0 +170756044711,216,0 +170756044758,214,0 +170756044806,214,0 +170756044854,215,0 +170756044902,215,0 +170756044950,214,0 +170756045000,215,0 +170756045047,215,0 +170756045097,216,0 +170756045145,216,0 +170756045193,217,0 +170756045241,217,0 +170756045289,217,0 +170756045337,218,0 +170756045385,219,0 +170756045433,219,0 +170756045481,219,0 +170756045529,220,0 +170756045578,220,0 +170756045626,216,0 +170756045674,215,0 +170756045722,215,0 +170756045771,216,0 +170756045819,216,0 +170756045867,216,0 +170756045915,217,0 +170756045964,217,0 +170756046014,217,0 +170756046062,218,0 +170756046110,218,0 +170756046159,219,0 +170756046207,219,0 +170756046255,219,0 +170756046304,220,0 +170756046352,221,0 +170756046400,220,0 +170756046448,221,0 +170756046496,220,0 +170756046544,216,0 +170756046592,216,0 +170756046640,216,0 +170756046689,216,0 +170756046737,217,0 +170756046785,217,0 +170756046835,218,0 +170756046883,219,0 +170756046930,218,0 +170756046978,219,0 +170756047026,220,0 +170756047076,219,0 +170756047124,220,0 +170756047172,220,0 +170756047221,220,0 +170756047269,220,0 +170756047317,220,0 +170756047365,220,0 +170756047414,217,0 +170756047462,216,0 +170756047510,217,0 +170756047558,217,0 +170756047606,218,0 +170756047654,218,0 +170756047702,218,0 +170756047751,218,0 +170756047800,219,0 +170756047849,219,0 +170756047897,220,0 +170756047945,220,0 +170756047993,220,0 +170756048041,219,0 +170756048089,220,0 +170756048138,221,0 +170756048186,222,0 +170756048234,221,0 +170756048283,220,0 +170756048333,216,0 +170756048382,217,0 +170756048430,217,0 +170756048478,218,0 +170756048528,217,0 +170756048576,218,0 +170756048624,218,0 +170756048672,218,0 +170756048719,219,0 +170756048769,219,0 +170756048818,219,0 +170756048866,220,0 +170756048914,222,0 +170756048962,222,0 +170756049010,221,0 +170756049058,221,0 +170756049106,221,0 +170756049154,222,0 +170756049203,220,0 +170756049251,216,0 +170756049300,216,0 +170756049348,217,0 +170756049396,218,0 +170756049446,218,0 +170756049494,218,0 +170756049542,218,0 +170756049590,223,0 +170756049637,220,0 +170756049685,220,0 +170756049735,220,0 +170756049783,220,0 +170756049831,221,0 +170756049879,221,0 +170756049928,222,0 +170756049976,221,0 +170756050026,223,0 +170756050075,220,0 +170756050125,217,0 +170756050173,216,0 +170756050222,216,0 +170756050270,217,0 +170756050318,217,0 +170756050368,218,0 +170756050415,219,0 +170756050463,219,0 +170756050511,219,0 +170756050561,220,0 +170756050609,220,0 +170756050657,221,0 +170756050706,220,0 +170756050754,221,0 +170756050802,221,0 +170756050850,223,0 +170756050898,222,0 +170756050947,221,0 +170756050995,220,0 +170756051045,216,0 +170756051093,216,0 +170756051142,216,0 +170756051192,217,0 +170756051241,217,0 +170756051290,217,0 +170756051338,217,0 +170756051386,218,0 +170756051434,218,0 +170756051482,218,0 +170756051530,220,0 +170756051579,221,0 +170756051627,221,0 +170756051677,222,0 +170756051725,222,0 +170756051773,222,0 +170756051821,221,0 +170756051869,220,0 +170756051917,216,0 +170756051965,214,0 +170756052013,215,0 +170756052062,215,0 +170756052110,216,0 +170756052158,216,0 +170756052208,217,0 +170756052255,217,0 +170756052303,217,0 +170756052351,218,0 +170756052399,219,0 +170756052449,219,0 +170756052497,220,0 +170756052545,220,0 +170756052594,221,0 +170756052642,221,0 +170756052692,221,0 +170756052741,222,0 +170756052789,221,0 +170756052837,215,0 +170756052886,215,0 +170756052936,215,0 +170756052984,215,0 +170756053033,216,0 +170756053081,216,0 +170756053131,217,0 +170756053179,217,0 +170756053227,217,0 +170756053275,218,0 +170756053322,219,0 +170756053372,218,0 +170756053420,224,0 +170756053469,220,0 +170756053517,221,0 +170756053565,221,0 +170756053613,221,0 +170756053661,221,0 +170756053709,221,0 +170756053758,215,0 +170756053806,215,0 +170756053854,216,0 +170756053902,216,0 +170756053950,216,0 +170756054000,216,0 +170756054048,217,0 +170756054096,217,0 +170756054144,218,0 +170756054193,218,0 +170756054243,219,0 +170756054291,219,0 +170756054339,219,0 +170756054386,219,0 +170756054436,220,0 +170756054484,219,0 +170756054533,219,0 +170756054581,219,0 +170756054629,215,0 +170756054677,215,0 +170756054725,215,0 +170756054773,215,0 +170756054821,215,0 +170756054869,216,0 +170756054918,215,0 +170756054966,216,0 +170756055014,216,0 +170756055062,217,0 +170756055111,217,0 +170756055161,218,0 +170756055209,218,0 +170756055257,218,0 +170756055305,219,0 +170756055352,219,0 +170756055400,219,0 +170756055448,219,0 +170756055498,219,0 +170756055547,215,0 +170756055595,215,0 +170756055643,215,0 +170756055691,215,0 +170756055740,215,0 +170756055788,216,0 +170756055836,216,0 +170756055884,216,0 +170756055932,216,0 +170756055980,217,0 +170756056028,217,0 +170756056076,218,0 +170756056125,219,0 +170756056173,220,0 +170756056223,220,0 +170756056272,219,0 +170756056320,219,0 +170756056368,220,0 +170756056416,219,0 +170756056464,215,0 +170756056512,215,0 +170756056560,215,0 +170756056608,217,0 +170756056656,216,0 +170756056704,216,0 +170756056753,217,0 +170756056801,217,0 +170756056849,217,0 +170756056899,218,0 +170756056946,218,0 +170756056994,219,0 +170756057042,219,0 +170756057092,220,0 +170756057140,220,0 +170756057188,220,0 +170756057236,219,0 +170756057284,220,0 +170756057331,216,0 +170756057379,215,0 +170756057429,215,0 +170756057477,216,0 +170756057525,216,0 +170756057573,216,0 +170756057621,216,0 +170756057669,216,0 +170756057717,217,0 +170756057764,217,0 +170756057812,216,0 +170756057862,218,0 +170756057911,219,0 +170756057961,219,0 +170756058009,220,0 +170756058057,219,0 +170756058105,220,0 +170756058153,219,0 +170756058202,219,0 +170756058250,216,0 +170756058298,214,0 +170756058346,215,0 +170756058393,215,0 +170756058441,216,0 +170756058491,216,0 +170756058539,216,0 +170756058588,216,0 +170756058636,217,0 +170756058684,218,0 +170756058732,220,0 +170756058781,219,0 +170756058829,220,0 +170756058877,220,0 +170756058927,220,0 +170756058975,220,0 +170756059022,219,0 +170756059070,220,0 +170756059120,220,0 +170756059168,215,0 +170756059217,214,0 +170756059265,214,0 +170756059313,215,0 +170756059361,215,0 +170756059409,215,0 +170756059457,216,0 +170756059505,216,0 +170756059555,216,0 +170756059603,216,0 +170756059652,217,0 +170756059702,218,0 +170756059749,218,0 +170756059797,219,0 +170756059845,220,0 +170756059893,218,0 +170756059941,217,0 +170756059988,219,0 +170756060036,220,0 +170756060084,215,0 +170756060132,215,0 +170756060180,214,0 +170756060227,215,0 +170756060275,215,0 +170756060323,215,0 +170756060371,215,0 +170756060420,215,0 +170756060468,216,0 +170756060516,217,0 +170756060564,217,0 +170756060612,218,0 +170756060662,218,0 +170756060711,219,0 +170756060759,219,0 +170756060807,220,0 +170756060855,220,0 +170756060903,220,0 +170756060951,216,0 +170756060999,214,0 +170756061048,215,0 +170756061096,215,0 +170756061146,215,0 +170756061195,216,0 +170756061243,216,0 +170756061291,216,0 +170756061341,216,0 +170756061389,217,0 +170756061437,217,0 +170756061485,218,0 +170756061534,218,0 +170756061582,219,0 +170756061630,220,0 +170756061680,221,0 +170756061727,220,0 +170756061775,221,0 +170756061823,221,0 +170756061871,215,0 +170756061921,215,0 +170756061968,215,0 +170756062016,216,0 +170756062064,215,0 +170756062114,216,0 +170756062162,216,0 +170756062210,217,0 +170756062258,218,0 +170756062307,218,0 +170756062355,219,0 +170756062403,221,0 +170756062451,220,0 +170756062499,220,0 +170756062548,220,0 +170756062596,221,0 +170756062646,221,0 +170756062694,219,0 +170756062743,220,0 +170756062791,216,0 +170756062841,216,0 +170756062888,217,0 +170756062936,217,0 +170756062984,217,0 +170756063033,218,0 +170756063081,218,0 +170756063131,219,0 +170756063180,221,0 +170756063230,220,0 +170756063279,221,0 +170756063327,222,0 +170756063377,222,0 +170756063426,221,0 +170756063474,223,0 +170756063523,222,0 +170756063571,222,0 +170756063621,221,0 +170756063669,221,0 +170756063717,215,0 +170756063764,216,0 +170756063812,216,0 +170756063862,216,0 +170756063910,217,0 +170756063958,218,0 +170756064006,218,0 +170756064054,219,0 +170756064102,219,0 +170756064150,220,0 +170756064197,220,0 +170756064245,221,0 +170756064293,223,0 +170756064341,221,0 +170756064391,222,0 +170756064439,222,0 +170756064487,222,0 +170756064534,221,0 +170756064582,216,0 +170756064630,215,0 +170756064678,216,0 +170756064726,217,0 +170756064774,217,0 +170756064822,217,0 +170756064871,219,0 +170756064919,219,0 +170756064967,219,0 +170756065015,219,0 +170756065063,220,0 +170756065111,220,0 +170756065159,221,0 +170756065207,221,0 +170756065255,220,0 +170756065303,221,0 +170756065351,221,0 +170756065399,221,0 +170756065448,221,0 +170756065496,216,0 +170756065544,214,0 +170756065592,215,0 +170756065640,215,0 +170756065688,215,0 +170756065736,216,0 +170756065784,217,0 +170756065831,217,0 +170756065881,218,0 +170756065930,219,0 +170756065980,220,0 +170756066029,219,0 +170756066079,220,0 +170756066127,221,0 +170756066175,221,0 +170756066222,222,0 +170756066270,221,0 +170756066320,221,0 +170756066368,220,0 +170756066416,214,0 +170756066463,214,0 +170756066513,214,0 +170756066561,214,0 +170756066609,215,0 +170756066657,215,0 +170756066706,216,0 +170756066756,216,0 +170756066805,217,0 +170756066853,218,0 +170756066903,218,0 +170756066952,218,0 +170756067000,219,0 +170756067048,219,0 +170756067097,220,0 +170756067145,219,0 +170756067195,219,0 +170756067243,220,0 +170756067292,215,0 +170756067342,214,0 +170756067392,215,0 +170756067439,216,0 +170756067487,216,0 +170756067537,217,0 +170756067585,217,0 +170756067634,218,0 +170756067682,218,0 +170756067730,219,0 +170756067780,220,0 +170756067828,220,0 +170756067876,221,0 +170756067924,221,0 +170756067971,222,0 +170756068019,222,0 +170756068067,221,0 +170756068115,221,0 +170756068165,221,0 +170756068213,216,0 +170756068260,215,0 +170756068308,216,0 +170756068356,216,0 +170756068404,217,0 +170756068452,217,0 +170756068500,218,0 +170756068548,218,0 +170756068596,219,0 +170756068643,220,0 +170756068691,220,0 +170756068739,221,0 +170756068787,221,0 +170756068835,221,0 +170756068883,221,0 +170756068931,222,0 +170756068978,221,0 +170756069026,221,0 +170756069074,221,0 +170756069122,216,0 +170756069172,216,0 +170756069219,217,0 +170756069267,217,0 +170756069315,217,0 +170756069365,218,0 +170756069413,219,0 +170756069462,219,0 +170756069510,219,0 +170756069558,220,0 +170756069606,221,0 +170756069654,220,0 +170756069702,222,0 +170756069751,222,0 +170756069801,222,0 +170756069850,222,0 +170756069899,222,0 +170756069949,234,0 +170756069997,221,0 +170756070045,215,0 +170756070093,214,0 +170756070142,215,0 +170756070190,216,0 +170756070238,216,0 +170756070286,217,0 +170756070334,217,0 +170756070382,218,0 +170756070429,218,0 +170756070477,219,0 +170756070525,220,0 +170756070573,220,0 +170756070623,221,0 +170756070671,222,0 +170756070720,222,0 +170756070768,221,0 +170756070816,221,0 +170756070864,221,0 +170756070912,220,0 +170756070961,214,0 +170756071009,214,0 +170756071057,214,0 +170756071105,215,0 +170756071153,216,0 +170756071201,216,0 +170756071248,216,0 +170756071296,217,0 +170756071344,218,0 +170756071392,218,0 +170756071440,218,0 +170756071487,219,0 +170756071537,220,0 +170756071585,219,0 +170756071632,220,0 +170756071680,220,0 +170756071728,220,0 +170756071777,221,0 +170756071825,220,0 +170756071873,214,0 +170756071921,214,0 +170756071969,214,0 +170756072016,214,0 +170756072064,214,0 +170756072112,215,0 +170756072160,216,0 +170756072207,217,0 +170756072255,217,0 +170756072303,218,0 +170756072351,219,0 +170756072399,220,0 +170756072448,220,0 +170756072498,221,0 +170756072546,221,0 +170756072595,222,0 +170756072643,222,0 +170756072691,221,0 +170756072739,215,0 +170756072787,214,0 +170756072835,214,0 +170756072884,214,0 +170756072932,215,0 +170756072980,215,0 +170756073028,216,0 +170756073076,217,0 +170756073124,217,0 +170756073172,218,0 +170756073221,219,0 +170756073269,219,0 +170756073317,222,0 +170756073366,220,0 +170756073416,220,0 +170756073464,220,0 +170756073511,222,0 +170756073559,221,0 +170756073607,221,0 +170756073655,215,0 +170756073703,214,0 +170756073751,213,0 +170756073800,215,0 +170756073848,215,0 +170756073896,216,0 +170756073944,216,0 +170756073993,216,0 +170756074043,217,0 +170756074091,219,0 +170756074139,219,0 +170756074187,220,0 +170756074234,220,0 +170756074282,220,0 +170756074332,221,0 +170756074381,221,0 +170756074431,225,0 +170756074480,222,0 +170756074528,221,0 +170756074576,214,0 +170756074624,214,0 +170756074672,215,0 +170756074721,215,0 +170756074771,216,0 +170756074818,216,0 +170756074866,216,0 +170756074914,217,0 +170756074962,218,0 +170756075010,219,0 +170756075058,219,0 +170756075107,219,0 +170756075155,220,0 +170756075204,220,0 +170756075252,221,0 +170756075300,221,0 +170756075348,221,0 +170756075396,222,0 +170756075444,221,0 +170756075493,215,0 +170756075541,214,0 +170756075589,213,0 +170756075639,215,0 +170756075688,216,0 +170756075738,216,0 +170756075786,218,0 +170756075835,217,0 +170756075885,218,0 +170756075933,218,0 +170756075981,219,0 +170756076029,219,0 +170756076077,219,0 +170756076125,220,0 +170756076173,221,0 +170756076221,221,0 +170756076269,222,0 +170756076316,221,0 +170756076364,218,0 +170756076414,214,0 +170756076464,214,0 +170756076512,215,0 +170756076559,215,0 +170756076607,216,0 +170756076657,216,0 +170756076705,217,0 +170756076753,217,0 +170756076802,218,0 +170756076850,219,0 +170756076898,220,0 +170756076948,220,0 +170756076996,221,0 +170756077045,221,0 +170756077095,222,0 +170756077144,221,0 +170756077192,221,0 +170756077240,222,0 +170756077288,215,0 +170756077336,215,0 +170756077384,215,0 +170756077432,216,0 +170756077480,217,0 +170756077528,217,0 +170756077576,217,0 +170756077624,218,0 +170756077672,218,0 +170756077720,219,0 +170756077769,218,0 +170756077817,219,0 +170756077865,220,0 +170756077914,220,0 +170756077962,221,0 +170756078010,221,0 +170756078058,221,0 +170756078108,222,0 +170756078157,221,0 +170756078205,215,0 +170756078253,214,0 +170756078301,215,0 +170756078350,215,0 +170756078398,216,0 +170756078446,217,0 +170756078494,215,0 +170756078542,216,0 +170756078589,218,0 +170756078637,218,0 +170756078685,218,0 +170756078733,219,0 +170756078783,219,0 +170756078831,220,0 +170756078878,221,0 +170756078926,221,0 +170756078974,220,0 +170756079022,221,0 +170756079070,221,0 +170756079118,215,0 +170756079167,216,0 +170756079215,216,0 +170756079265,217,0 +170756079313,218,0 +170756079362,218,0 +170756079412,219,0 +170756079461,221,0 +170756079509,219,0 +170756079557,220,0 +170756079605,221,0 +170756079653,223,0 +170756079700,222,0 +170756079748,221,0 +170756079796,222,0 +170756079846,222,0 +170756079895,222,0 +170756079943,221,0 +170756079991,216,0 +170756080039,215,0 +170756080087,216,0 +170756080135,217,0 +170756080184,218,0 +170756080234,218,0 +170756080282,219,0 +170756080330,219,0 +170756080378,219,0 +170756080427,220,0 +170756080475,222,0 +170756080525,221,0 +170756080574,222,0 +170756080622,222,0 +170756080670,222,0 +170756080719,222,0 +170756080769,223,0 +170756080817,222,0 +170756080865,221,0 +170756080914,216,0 +170756080962,215,0 +170756081010,216,0 +170756081060,217,0 +170756081108,217,0 +170756081156,218,0 +170756081204,219,0 +170756081252,220,0 +170756081301,220,0 +170756081349,221,0 +170756081397,220,0 +170756081446,223,0 +170756081496,222,0 +170756081545,223,0 +170756081595,222,0 +170756081643,221,0 +170756081691,222,0 +170756081739,222,0 +170756081788,221,0 +170756081836,215,0 +170756081886,215,0 +170756081933,216,0 +170756081981,217,0 +170756082031,218,0 +170756082079,218,0 +170756082127,219,0 +170756082175,219,0 +170756082224,220,0 +170756082274,221,0 +170756082323,221,0 +170756082371,221,0 +170756082419,222,0 +170756082467,222,0 +170756082515,223,0 +170756082563,222,0 +170756082611,222,0 +170756082659,222,0 +170756082708,215,0 +170756082756,214,0 +170756082804,214,0 +170756082854,215,0 +170756082902,216,0 +170756082949,216,0 +170756082999,217,0 +170756083047,217,0 +170756083096,217,0 +170756083144,217,0 +170756083192,218,0 +170756083240,219,0 +170756083288,219,0 +170756083336,221,0 +170756083384,221,0 +170756083434,221,0 +170756083483,221,0 +170756083531,222,0 +170756083579,220,0 +170756083627,215,0 +170756083676,214,0 +170756083726,215,0 +170756083773,216,0 +170756083821,216,0 +170756083869,217,0 +170756083919,217,0 +170756083967,217,0 +170756084014,223,0 +170756084062,220,0 +170756084112,220,0 +170756084159,220,0 +170756084207,221,0 +170756084255,220,0 +170756084303,222,0 +170756084352,222,0 +170756084400,222,0 +170756084448,222,0 +170756084497,221,0 +170756084547,215,0 +170756084596,215,0 +170756084644,216,0 +170756084692,216,0 +170756084740,218,0 +170756084788,218,0 +170756084836,219,0 +170756084883,219,0 +170756084931,221,0 +170756084981,220,0 +170756085029,221,0 +170756085076,222,0 +170756085124,222,0 +170756085172,222,0 +170756085220,221,0 +170756085268,228,0 +170756085316,222,0 +170756085363,223,0 +170756085411,221,0 +170756085459,216,0 +170756085507,216,0 +170756085557,217,0 +170756085605,218,0 +170756085653,219,0 +170756085701,219,0 +170756085750,220,0 +170756085798,221,0 +170756085848,221,0 +170756085896,221,0 +170756085943,221,0 +170756085991,222,0 +170756086041,222,0 +170756086089,222,0 +170756086137,223,0 +170756086185,224,0 +170756086233,222,0 +170756086282,222,0 +170756086330,216,0 +170756086378,214,0 +170756086428,215,0 +170756086476,215,0 +170756086524,216,0 +170756086573,218,0 +170756086622,217,0 +170756086670,218,0 +170756086718,218,0 +170756086766,219,0 +170756086814,219,0 +170756086863,219,0 +170756086911,220,0 +170756086959,222,0 +170756087007,221,0 +170756087057,222,0 +170756087105,222,0 +170756087153,221,0 +170756087201,222,0 +170756087250,216,0 +170756087300,214,0 +170756087348,214,0 +170756087397,215,0 +170756087445,216,0 +170756087493,216,0 +170756087541,218,0 +170756087591,218,0 +170756087640,220,0 +170756087688,219,0 +170756087737,220,0 +170756087785,221,0 +170756087835,222,0 +170756087883,222,0 +170756087931,222,0 +170756087979,222,0 +170756088027,222,0 +170756088075,222,0 +170756088122,220,0 +170756088170,215,0 +170756088220,214,0 +170756088268,215,0 +170756088316,216,0 +170756088365,216,0 +170756088415,216,0 +170756088463,216,0 +170756088512,217,0 +170756088560,218,0 +170756088608,218,0 +170756088656,220,0 +170756088706,219,0 +170756088755,220,0 +170756088803,221,0 +170756088853,222,0 +170756088901,221,0 +170756088949,221,0 +170756088998,222,0 +170756089048,220,0 +170756089096,214,0 +170756089145,214,0 +170756089193,214,0 +170756089243,215,0 +170756089291,215,0 +170756089340,217,0 +170756089390,217,0 +170756089438,217,0 +170756089485,218,0 +170756089533,219,0 +170756089581,220,0 +170756089631,220,0 +170756089679,220,0 +170756089728,221,0 +170756089776,221,0 +170756089826,221,0 +170756089874,221,0 +170756089922,222,0 +170756089970,215,0 +170756090017,214,0 +170756090065,215,0 +170756090115,216,0 +170756090165,217,0 +170756090212,218,0 +170756090262,218,0 +170756090310,219,0 +170756090359,220,0 +170756090409,220,0 +170756090457,220,0 +170756090506,221,0 +170756090554,221,0 +170756090604,221,0 +170756090652,223,0 +170756090702,222,0 +170756090751,221,0 +170756090801,222,0 +170756090850,221,0 +170756090898,215,0 +170756090946,216,0 +170756090994,216,0 +170756091041,217,0 +170756091089,218,0 +170756091137,218,0 +170756091185,219,0 +170756091233,219,0 +170756091281,220,0 +170756091329,220,0 +170756091376,221,0 +170756091424,221,0 +170756091472,221,0 +170756091520,221,0 +170756091570,222,0 +170756091618,222,0 +170756091665,221,0 +170756091715,224,0 +170756091765,219,0 +170756091813,216,0 +170756091860,216,0 +170756091908,217,0 +170756091956,217,0 +170756092006,218,0 +170756092055,218,0 +170756092103,219,0 +170756092151,219,0 +170756092199,219,0 +170756092249,220,0 +170756092297,220,0 +170756092346,219,0 +170756092394,220,0 +170756092442,221,0 +170756092490,222,0 +170756092538,222,0 +170756092586,223,0 +170756092635,222,0 +170756092685,217,0 +170756092733,216,0 +170756092781,217,0 +170756092828,218,0 +170756092876,220,0 +170756092924,219,0 +170756092972,220,0 +170756093022,219,0 +170756093069,220,0 +170756093117,220,0 +170756093165,221,0 +170756093213,220,0 +170756093261,221,0 +170756093309,222,0 +170756093357,223,0 +170756093405,221,0 +170756093453,222,0 +170756093500,222,0 +170756093548,221,0 +170756093596,217,0 +170756093644,216,0 +170756093692,217,0 +170756093740,217,0 +170756093788,218,0 +170756093836,218,0 +170756093884,219,0 +170756093934,219,0 +170756093982,219,0 +170756094030,222,0 +170756094079,220,0 +170756094129,221,0 +170756094176,222,0 +170756094226,218,0 +170756094275,222,0 +170756094325,223,0 +170756094373,223,0 +170756094421,222,0 +170756094469,221,0 +170756094517,215,0 +170756094565,215,0 +170756094613,216,0 +170756094661,217,0 +170756094709,217,0 +170756094756,218,0 +170756094806,219,0 +170756094854,222,0 +170756094904,222,0 +170756094953,221,0 +170756095001,219,0 +170756095049,221,0 +170756095097,222,0 +170756095145,222,0 +170756095193,222,0 +170756095242,223,0 +170756095292,222,0 +170756095341,222,0 +170756095389,221,0 +170756095439,214,0 +170756095486,215,0 +170756095536,216,0 +170756095586,217,0 +170756095635,217,0 +170756095685,217,0 +170756095734,218,0 +170756095782,218,0 +170756095830,219,0 +170756095878,220,0 +170756095927,220,0 +170756095975,221,0 +170756096023,221,0 +170756096073,222,0 +170756096122,222,0 +170756096172,223,0 +170756096220,222,0 +170756096268,221,0 +170756096316,216,0 +170756096365,215,0 +170756096413,216,0 +170756096461,216,0 +170756096509,216,0 +170756096557,217,0 +170756096605,217,0 +170756096653,218,0 +170756096702,219,0 +170756096752,219,0 +170756096800,220,0 +170756096849,221,0 +170756096899,222,0 +170756096948,223,0 +170756096996,222,0 +170756097044,222,0 +170756097092,222,0 +170756097140,222,0 +170756097188,222,0 +170756097236,216,0 +170756097284,215,0 +170756097333,216,0 +170756097383,216,0 +170756097430,216,0 +170756097480,217,0 +170756097528,217,0 +170756097576,218,0 +170756097625,219,0 +170756097675,220,0 +170756097723,220,0 +170756097772,222,0 +170756097820,220,0 +170756097870,221,0 +170756097918,222,0 +170756097967,222,0 +170756098017,221,0 +170756098066,222,0 +170756098114,215,0 +170756098164,214,0 +170756098213,214,0 +170756098263,215,0 +170756098312,216,0 +170756098360,216,0 +170756098410,217,0 +170756098458,217,0 +170756098505,218,0 +170756098553,218,0 +170756098601,219,0 +170756098651,220,0 +170756098699,221,0 +170756098748,221,0 +170756098796,222,0 +170756098844,222,0 +170756098894,222,0 +170756098942,226,0 +170756098990,222,0 +170756099039,215,0 +170756099087,214,0 +170756099135,215,0 +170756099183,215,0 +170756099231,219,0 +170756099279,217,0 +170756099327,218,0 +170756099375,217,0 +170756099423,219,0 +170756099470,220,0 +170756099520,219,0 +170756099568,220,0 +170756099616,220,0 +170756099664,221,0 +170756099712,222,0 +170756099760,221,0 +170756099808,221,0 +170756099856,221,0 +170756099904,221,0 +170756099953,215,0 +170756100001,214,0 +170756100049,213,0 +170756100099,214,0 +170756100148,214,0 +170756100196,214,0 +170756100246,214,0 +170756100295,214,0 +170756100345,215,0 +170756100393,214,0 +170756100441,216,0 +170756100489,217,0 +170756100538,217,0 +170756100588,218,0 +170756100636,218,0 +170756100684,218,0 +170756100732,219,0 +170756100779,221,0 +170756100827,217,0 +170756100875,214,0 +170756100923,214,0 +170756100971,214,0 +170756101019,215,0 +170756101067,215,0 +170756101115,217,0 +170756101163,217,0 +170756101213,217,0 +170756101261,218,0 +170756101310,219,0 +170756101358,219,0 +170756101406,220,0 +170756101454,219,0 +170756101502,221,0 +170756101550,222,0 +170756101598,222,0 +170756101646,222,0 +170756101693,222,0 +170756101741,215,0 +170756101789,214,0 +170756101837,214,0 +170756101885,214,0 +170756101935,214,0 +170756101983,215,0 +170756102031,216,0 +170756102078,217,0 +170756102126,217,0 +170756102174,218,0 +170756102222,219,0 +170756102270,219,0 +170756102318,221,0 +170756102368,221,0 +170756102416,221,0 +170756102465,221,0 +170756102515,222,0 +170756102562,221,0 +170756102610,222,0 +170756102660,215,0 +170756102709,214,0 +170756102757,215,0 +170756102805,215,0 +170756102853,215,0 +170756102901,216,0 +170756102951,217,0 +170756103000,217,0 +170756103048,218,0 +170756103096,218,0 +170756103144,219,0 +170756103192,220,0 +170756103241,220,0 +170756103289,221,0 +170756103339,221,0 +170756103388,222,0 +170756103438,221,0 +170756103487,222,0 +170756103537,220,0 +170756103585,214,0 +170756103633,214,0 +170756103682,214,0 +170756103732,215,0 +170756103780,216,0 +170756103828,216,0 +170756103876,217,0 +170756103925,217,0 +170756103975,218,0 +170756104023,217,0 +170756104072,219,0 +170756104122,219,0 +170756104170,220,0 +170756104218,221,0 +170756104266,220,0 +170756104314,221,0 +170756104362,221,0 +170756104409,222,0 +170756104458,215,0 +170756104505,215,0 +170756104553,216,0 +170756104603,216,0 +170756104651,217,0 +170756104699,217,0 +170756104747,217,0 +170756104796,218,0 +170756104846,219,0 +170756104894,219,0 +170756104943,220,0 +170756104993,220,0 +170756105042,221,0 +170756105090,221,0 +170756105138,222,0 +170756105186,222,0 +170756105236,220,0 +170756105284,222,0 +170756105332,222,0 +170756105380,217,0 +170756105428,217,0 +170756105477,217,0 +170756105527,219,0 +170756105576,220,0 +170756105624,220,0 +170756105672,221,0 +170756105720,220,0 +170756105770,221,0 +170756105818,222,0 +170756105866,222,0 +170756105913,222,0 +170756105961,222,0 +170756106011,223,0 +170756106059,222,0 +170756106107,223,0 +170756106155,222,0 +170756106204,223,0 +170756106252,221,0 +170756106300,218,0 +170756106349,218,0 +170756106397,219,0 +170756106445,219,0 +170756106493,220,0 +170756106541,220,0 +170756106589,221,0 +170756106637,222,0 +170756106685,222,0 +170756106733,222,0 +170756106781,222,0 +170756106830,222,0 +170756106878,222,0 +170756106927,223,0 +170756106975,224,0 +170756107023,222,0 +170756107073,222,0 +170756107120,221,0 +170756107168,218,0 +170756107218,217,0 +170756107266,218,0 +170756107315,219,0 +170756107365,220,0 +170756107412,220,0 +170756107460,220,0 +170756107508,221,0 +170756107557,222,0 +170756107605,224,0 +170756107653,223,0 +170756107701,223,0 +170756107749,223,0 +170756107797,223,0 +170756107845,222,0 +170756107893,223,0 +170756107940,222,0 +170756107988,222,0 +170756108036,219,0 +170756108084,215,0 +170756108132,215,0 +170756108180,216,0 +170756108228,217,0 +170756108275,217,0 +170756108323,218,0 +170756108371,219,0 +170756108419,219,0 +170756108467,222,0 +170756108515,220,0 +170756108564,221,0 +170756108612,222,0 +170756108660,222,0 +170756108710,223,0 +170756108759,223,0 +170756108809,223,0 +170756108857,223,0 +170756108906,222,0 +170756108954,222,0 +170756109002,215,0 +170756109050,215,0 +170756109098,217,0 +170756109146,217,0 +170756109194,218,0 +170756109242,218,0 +170756109291,218,0 +170756109339,218,0 +170756109387,220,0 +170756109435,221,0 +170756109483,221,0 +170756109531,221,0 +170756109579,222,0 +170756109628,222,0 +170756109678,222,0 +170756109727,222,0 +170756109775,222,0 +170756109825,222,0 +170756109874,221,0 +170756109922,214,0 +170756109970,214,0 +170756110018,215,0 +170756110066,215,0 +170756110113,216,0 +170756110163,217,0 +170756110211,218,0 +170756110259,218,0 +170756110307,219,0 +170756110356,221,0 +170756110404,221,0 +170756110452,222,0 +170756110500,221,0 +170756110548,222,0 +170756110597,222,0 +170756110645,222,0 +170756110693,222,0 +170756110743,221,0 +170756110791,215,0 +170756110839,214,0 +170756110887,215,0 +170756110936,215,0 +170756110986,216,0 +170756111035,216,0 +170756111085,217,0 +170756111133,218,0 +170756111182,218,0 +170756111232,219,0 +170756111280,221,0 +170756111329,222,0 +170756111377,221,0 +170756111425,222,0 +170756111473,221,0 +170756111520,221,0 +170756111568,222,0 +170756111616,222,0 +170756111664,221,0 +170756111712,215,0 +170756111760,215,0 +170756111807,216,0 +170756111855,216,0 +170756111903,217,0 +170756111951,218,0 +170756111999,218,0 +170756112048,219,0 +170756112098,220,0 +170756112145,220,0 +170756112193,220,0 +170756112243,221,0 +170756112292,221,0 +170756112342,221,0 +170756112391,222,0 +170756112441,222,0 +170756112490,221,0 +170756112538,220,0 +170756112588,221,0 +170756112636,216,0 +170756112684,217,0 +170756112733,217,0 +170756112781,218,0 +170756112829,218,0 +170756112877,219,0 +170756112924,220,0 +170756112974,220,0 +170756113021,221,0 +170756113069,221,0 +170756113117,221,0 +170756113165,222,0 +170756113213,222,0 +170756113261,223,0 +170756113308,222,0 +170756113356,222,0 +170756113404,222,0 +170756113452,222,0 +170756113501,216,0 +170756113549,216,0 +170756113597,217,0 +170756113647,218,0 +170756113695,218,0 +170756113742,218,0 +170756113790,218,0 +170756113838,220,0 +170756113886,219,0 +170756113934,221,0 +170756113983,221,0 +170756114031,220,0 +170756114079,221,0 +170756114127,221,0 +170756114175,221,0 +170756114223,223,0 +170756114272,223,0 +170756114322,222,0 +170756114370,221,0 +170756114418,216,0 +170756114466,216,0 +170756114514,217,0 +170756114563,217,0 +170756114611,217,0 +170756114659,218,0 +170756114709,218,0 +170756114757,219,0 +170756114806,219,0 +170756114854,220,0 +170756114902,220,0 +170756114951,221,0 +170756115001,222,0 +170756115050,223,0 +170756115098,221,0 +170756115148,222,0 +170756115196,223,0 +170756115244,221,0 +170756115292,221,0 +170756115341,214,0 +170756115391,214,0 +170756115439,215,0 +170756115487,216,0 +170756115536,216,0 +170756115584,216,0 +170756115632,217,0 +170756115680,217,0 +170756115728,217,0 +170756115778,218,0 +170756115826,219,0 +170756115875,220,0 +170756115923,220,0 +170756115971,222,0 +170756116019,222,0 +170756116067,222,0 +170756116115,223,0 +170756116164,222,0 +170756116212,215,0 +170756116262,214,0 +170756116310,214,0 +170756116358,214,0 +170756116407,214,0 +170756116455,215,0 +170756116503,215,0 +170756116552,215,0 +170756116602,215,0 +170756116650,216,0 +170756116698,217,0 +170756116746,217,0 +170756116794,218,0 +170756116842,219,0 +170756116890,220,0 +170756116938,220,0 +170756116986,220,0 +170756117035,221,0 +170756117083,221,0 +170756117131,215,0 +170756117181,215,0 +170756117230,215,0 +170756117280,215,0 +170756117329,215,0 +170756117379,216,0 +170756117426,217,0 +170756117474,216,0 +170756117522,218,0 +170756117570,218,0 +170756117618,218,0 +170756117666,219,0 +170756117714,219,0 +170756117762,219,0 +170756117809,221,0 +170756117857,222,0 +170756117907,221,0 +170756117955,222,0 +170756118003,221,0 +170756118051,214,0 +170756118098,215,0 +170756118146,215,0 +170756118194,216,0 +170756118242,216,0 +170756118290,218,0 +170756118338,217,0 +170756118386,218,0 +170756118433,218,0 +170756118481,219,0 +170756118529,219,0 +170756118578,222,0 +170756118628,221,0 +170756118676,222,0 +170756118726,222,0 +170756118775,222,0 +170756118823,223,0 +170756118871,221,0 +170756118919,219,0 +170756118968,215,0 +170756119016,214,0 +170756119064,215,0 +170756119112,215,0 +170756119160,216,0 +170756119210,216,0 +170756119258,217,0 +170756119306,218,0 +170756119354,218,0 +170756119403,218,0 +170756119451,219,0 +170756119499,222,0 +170756119548,221,0 +170756119596,221,0 +170756119644,222,0 +170756119692,222,0 +170756119742,224,0 +170756119789,222,0 +170756119837,216,0 +170756119885,214,0 +170756119933,214,0 +170756119981,214,0 +170756120029,215,0 +170756120077,215,0 +170756120127,216,0 +170756120175,216,0 +170756120224,217,0 +170756120272,218,0 +170756120322,218,0 +170756120370,220,0 +170756120419,221,0 +170756120467,220,0 +170756120516,221,0 +170756120564,221,0 +170756120612,222,0 +170756120660,223,0 +170756120708,226,0 +170756120758,215,0 +170756120807,214,0 +170756120855,214,0 +170756120905,214,0 +170756120953,214,0 +170756121001,214,0 +170756121049,215,0 +170756121096,215,0 +170756121144,215,0 +170756121192,216,0 +170756121240,217,0 +170756121288,217,0 +170756121336,219,0 +170756121384,218,0 +170756121432,219,0 +170756121479,219,0 +170756121527,219,0 +170756121575,220,0 +170756121623,221,0 +170756121672,220,0 +170756121720,221,0 +170756121768,220,0 +170756121817,221,0 +170756121867,222,0 +170756121916,221,0 +170756121964,222,0 +170756122012,222,0 +170756122062,222,0 +170756122110,215,0 +170756122158,215,0 +170756122207,216,0 +170756122255,216,0 +170756122303,218,0 +170756122351,217,0 +170756122399,217,0 +170756122447,218,0 +170756122494,218,0 +170756122542,219,0 +170756122592,220,0 +170756122640,220,0 +170756122688,221,0 +170756122736,220,0 +170756122783,221,0 +170756122831,221,0 +170756122881,222,0 +170756122929,222,0 +170756122977,221,0 +170756123026,215,0 +170756123074,215,0 +170756123122,218,0 +170756123170,217,0 +170756123218,217,0 +170756123266,218,0 +170756123314,218,0 +170756123362,218,0 +170756123410,219,0 +170756123458,220,0 +170756123507,221,0 +170756123557,221,0 +170756123605,222,0 +170756123652,221,0 +170756123700,223,0 +170756123750,222,0 +170756123797,222,0 +170756123845,222,0 +170756123893,221,0 +170756123941,215,0 +170756123989,216,0 +170756124037,217,0 +170756124085,218,0 +170756124134,218,0 +170756124182,219,0 +170756124230,220,0 +170756124279,219,0 +170756124327,220,0 +170756124377,221,0 +170756124426,221,0 +170756124474,221,0 +170756124524,222,0 +170756124572,222,0 +170756124621,222,0 +170756124669,222,0 +170756124717,222,0 +170756124765,221,0 +170756124813,215,0 +170756124861,214,0 +170756124909,215,0 +170756124958,216,0 +170756125008,217,0 +170756125056,216,0 +170756125105,217,0 +170756125155,218,0 +170756125204,219,0 +170756125254,219,0 +170756125303,220,0 +170756125351,220,0 +170756125401,221,0 +170756125449,221,0 +170756125498,222,0 +170756125548,222,0 +170756125596,222,0 +170756125644,222,0 +170756125691,222,0 +170756125739,215,0 +170756125789,214,0 +170756125839,214,0 +170756125887,215,0 +170756125936,215,0 +170756125984,216,0 +170756126033,217,0 +170756126081,217,0 +170756126129,218,0 +170756126177,218,0 +170756126225,219,0 +170756126273,220,0 +170756126321,221,0 +170756126369,223,0 +170756126417,221,0 +170756126465,222,0 +170756126513,223,0 +170756126561,221,0 +170756126609,221,0 +170756126658,214,0 +170756126708,214,0 +170756126756,214,0 +170756126804,215,0 +170756126852,216,0 +170756126902,216,0 +170756126949,216,0 +170756126997,218,0 +170756127046,218,0 +170756127093,218,0 +170756127143,219,0 +170756127191,220,0 +170756127239,222,0 +170756127287,220,0 +170756127335,222,0 +170756127383,222,0 +170756127431,223,0 +170756127480,222,0 +170756127528,215,0 +170756127576,214,0 +170756127624,214,0 +170756127674,215,0 +170756127722,215,0 +170756127769,216,0 +170756127817,217,0 +170756127867,217,0 +170756127915,219,0 +170756127963,218,0 +170756128012,220,0 +170756128060,221,0 +170756128110,220,0 +170756128159,222,0 +170756128207,223,0 +170756128255,222,0 +170756128305,222,0 +170756128352,222,0 +170756128400,222,0 +170756128448,215,0 +170756128496,214,0 +170756128546,215,0 +170756128594,214,0 +170756128642,215,0 +170756128690,216,0 +170756128738,216,0 +170756128785,216,0 +170756128833,217,0 +170756128881,219,0 +170756128931,219,0 +170756128979,220,0 +170756129028,221,0 +170756129078,221,0 +170756129126,222,0 +170756129174,224,0 +170756129223,222,0 +170756129271,222,0 +170756129319,222,0 +170756129367,215,0 +170756129414,215,0 +170756129464,215,0 +170756129512,216,0 +170756129560,217,0 +170756129608,217,0 +170756129656,218,0 +170756129705,218,0 +170756129753,220,0 +170756129801,220,0 +170756129851,220,0 +170756129899,221,0 +170756129947,221,0 +170756129995,221,0 +170756130043,222,0 +170756130092,222,0 +170756130142,221,0 +170756130189,222,0 +170756130239,216,0 +170756130288,215,0 +170756130336,215,0 +170756130384,216,0 +170756130434,216,0 +170756130483,217,0 +170756130531,217,0 +170756130579,218,0 +170756130627,218,0 +170756130675,219,0 +170756130723,220,0 +170756130772,221,0 +170756130822,221,0 +170756130870,221,0 +170756130918,222,0 +170756130967,222,0 +170756131015,223,0 +170756131064,223,0 +170756131112,222,0 +170756131162,215,0 +170756131211,215,0 +170756131261,215,0 +170756131309,216,0 +170756131358,216,0 +170756131408,216,0 +170756131456,217,0 +170756131505,218,0 +170756131553,218,0 +170756131601,218,0 +170756131648,220,0 +170756131696,220,0 +170756131744,220,0 +170756131792,221,0 +170756131840,223,0 +170756131889,220,0 +170756131937,222,0 +170756131985,222,0 +170756132035,222,0 +170756132082,215,0 +170756132130,215,0 +170756132178,216,0 +170756132226,217,0 +170756132274,218,0 +170756132322,218,0 +170756132370,219,0 +170756132418,219,0 +170756132467,219,0 +170756132515,220,0 +170756132563,221,0 +170756132611,221,0 +170756132659,220,0 +170756132707,221,0 +170756132755,222,0 +170756132803,220,0 +170756132850,222,0 +170756132900,222,0 +170756132948,221,0 +170756132995,216,0 +170756133043,216,0 +170756133091,216,0 +170756133139,217,0 +170756133187,217,0 +170756133235,217,0 +170756133283,218,0 +170756133331,219,0 +170756133379,220,0 +170756133426,220,0 +170756133474,221,0 +170756133522,221,0 +170756133572,222,0 +170756133621,223,0 +170756133671,222,0 +170756133719,222,0 +170756133769,222,0 +170756133816,221,0 +170756133866,217,0 +170756133914,217,0 +170756133963,218,0 +170756134013,218,0 +170756134061,219,0 +170756134110,219,0 +170756134158,220,0 +170756134208,222,0 +170756134256,221,0 +170756134305,221,0 +170756134353,222,0 +170756134403,221,0 +170756134451,222,0 +170756134500,223,0 +170756134548,222,0 +170756134596,222,0 +170756134645,222,0 +170756134693,222,0 +170756134741,221,0 +170756134791,216,0 +170756134840,216,0 +170756134888,217,0 +170756134938,218,0 +170756134985,219,0 +170756135035,219,0 +170756135083,219,0 +170756135131,220,0 +170756135179,221,0 +170756135227,221,0 +170756135276,222,0 +170756135326,221,0 +170756135373,222,0 +170756135421,222,0 +170756135471,222,0 +170756135519,222,0 +170756135568,223,0 +170756135616,222,0 +170756135664,221,0 +170756135714,215,0 +170756135762,215,0 +170756135809,215,0 +170756135857,216,0 +170756135905,217,0 +170756135953,218,0 +170756136001,219,0 +170756136049,219,0 +170756136099,219,0 +170756136147,220,0 +170756136194,221,0 +170756136242,221,0 +170756136292,221,0 +170756136341,222,0 +170756136389,222,0 +170756136439,222,0 +170756136487,222,0 +170756136535,221,0 +170756136583,216,0 +170756136631,215,0 +170756136679,215,0 +170756136726,216,0 +170756136774,216,0 +170756136822,218,0 +170756136870,217,0 +170756136918,218,0 +170756136965,218,0 +170756137013,219,0 +170756137061,219,0 +170756137109,220,0 +170756137157,221,0 +170756137205,221,0 +170756137253,222,0 +170756137301,221,0 +170756137350,222,0 +170756137398,222,0 +170756137446,222,0 +170756137494,216,0 +170756137541,216,0 +170756137589,216,0 +170756137637,217,0 +170756137685,217,0 +170756137733,216,0 +170756137781,218,0 +170756137829,219,0 +170756137878,219,0 +170756137926,220,0 +170756137976,221,0 +170756138023,221,0 +170756138073,221,0 +170756138121,222,0 +170756138169,224,0 +170756138218,221,0 +170756138266,223,0 +170756138314,222,0 +170756138362,221,0 +170756138410,215,0 +170756138458,215,0 +170756138505,216,0 +170756138555,217,0 +170756138603,216,0 +170756138651,217,0 +170756138699,218,0 +170756138747,219,0 +170756138795,218,0 +170756138842,220,0 +170756138890,220,0 +170756138940,221,0 +170756138989,222,0 +170756139037,222,0 +170756139085,222,0 +170756139133,222,0 +170756139181,225,0 +170756139229,223,0 +170756139277,221,0 +170756139325,216,0 +170756139373,214,0 +170756139422,215,0 +170756139470,216,0 +170756139518,216,0 +170756139566,217,0 +170756139614,218,0 +170756139663,219,0 +170756139711,219,0 +170756139761,220,0 +170756139809,220,0 +170756139857,221,0 +170756139905,222,0 +170756139954,222,0 +170756140002,222,0 +170756140052,222,0 +170756140101,225,0 +170756140151,222,0 +170756140200,220,0 +170756140250,214,0 +170756140298,215,0 +170756140346,215,0 +170756140395,216,0 +170756140444,216,0 +170756140494,217,0 +170756140542,218,0 +170756140590,219,0 +170756140638,218,0 +170756140685,219,0 +170756140733,220,0 +170756140781,221,0 +170756140829,221,0 +170756140877,221,0 +170756140925,222,0 +170756140973,221,0 +170756141021,221,0 +170756141069,221,0 +170756141116,215,0 +170756141164,214,0 +170756141212,214,0 +170756141262,215,0 +170756141310,215,0 +170756141358,216,0 +170756141407,217,0 +170756141455,217,0 +170756141505,217,0 +170756141553,218,0 +170756141602,219,0 +170756141650,220,0 +170756141698,221,0 +170756141746,219,0 +170756141796,221,0 +170756141844,222,0 +170756141891,222,0 +170756141939,221,0 +170756141989,222,0 +170756142037,216,0 +170756142085,214,0 +170756142134,215,0 +170756142184,216,0 +170756142232,216,0 +170756142281,217,0 +170756142329,217,0 +170756142377,218,0 +170756142425,218,0 +170756142473,219,0 +170756142521,219,0 +170756142571,220,0 +170756142620,221,0 +170756142670,221,0 +170756142718,223,0 +170756142767,223,0 +170756142815,221,0 +170756142863,221,0 +170756142913,222,0 +170756142961,215,0 +170756143009,215,0 +170756143058,215,0 +170756143106,217,0 +170756143154,217,0 +170756143204,217,0 +170756143252,218,0 +170756143300,218,0 +170756143348,219,0 +170756143397,219,0 +170756143445,220,0 +170756143494,221,0 +170756143544,221,0 +170756143593,221,0 +170756143641,221,0 +170756143689,222,0 +170756143739,223,0 +170756143787,222,0 +170756143835,216,0 +170756143883,214,0 +170756143931,215,0 +170756143979,215,0 +170756144028,216,0 +170756144076,217,0 +170756144126,217,0 +170756144174,218,0 +170756144222,218,0 +170756144269,220,0 +170756144317,221,0 +170756144365,221,0 +170756144413,221,0 +170756144463,222,0 +170756144511,221,0 +170756144560,223,0 +170756144608,221,0 +170756144656,222,0 +170756144706,222,0 +170756144754,215,0 +170756144802,214,0 +170756144851,214,0 +170756144900,214,0 +170756144950,215,0 +170756144998,215,0 +170756145046,216,0 +170756145094,216,0 +170756145142,217,0 +170756145190,217,0 +170756145237,218,0 +170756145285,220,0 +170756145333,220,0 +170756145381,222,0 +170756145429,222,0 +170756145479,221,0 +170756145527,221,0 +170756145575,221,0 +170756145624,223,0 +170756145672,215,0 +170756145720,214,0 +170756145768,214,0 +170756145817,214,0 +170756145865,215,0 +170756145913,215,0 +170756145963,217,0 +170756146012,217,0 +170756146062,217,0 +170756146110,218,0 +170756146159,219,0 +170756146209,220,0 +170756146258,220,0 +170756146308,221,0 +170756146357,222,0 +170756146405,221,0 +170756146453,222,0 +170756146501,222,0 +170756146549,221,0 +170756146597,214,0 +170756146645,214,0 +170756146693,214,0 +170756146742,215,0 +170756146790,215,0 +170756146838,215,0 +170756146886,216,0 +170756146934,217,0 +170756146982,217,0 +170756147032,219,0 +170756147081,219,0 +170756147129,221,0 +170756147179,222,0 +170756147227,221,0 +170756147275,222,0 +170756147323,224,0 +170756147372,222,0 +170756147420,222,0 +170756147468,215,0 +170756147517,214,0 +170756147567,214,0 +170756147616,214,0 +170756147664,215,0 +170756147712,215,0 +170756147762,215,0 +170756147809,216,0 +170756147857,217,0 +170756147905,217,0 +170756147955,218,0 +170756148003,219,0 +170756148051,220,0 +170756148099,222,0 +170756148146,221,0 +170756148196,221,0 +170756148244,222,0 +170756148292,222,0 +170756148340,221,0 +170756148389,215,0 +170756148437,214,0 +170756148485,214,0 +170756148535,214,0 +170756148584,214,0 +170756148634,215,0 +170756148682,216,0 +170756148729,216,0 +170756148777,217,0 +170756148825,218,0 +170756148875,218,0 +170756148924,217,0 +170756148972,219,0 +170756149020,220,0 +170756149070,221,0 +170756149119,221,0 +170756149167,221,0 +170756149217,222,0 +170756149264,221,0 +170756149312,214,0 +170756149360,214,0 +170756149408,214,0 +170756149456,215,0 +170756149506,215,0 +170756149554,216,0 +170756149602,216,0 +170756149650,216,0 +170756149699,217,0 +170756149747,218,0 +170756149795,219,0 +170756149844,219,0 +170756149892,219,0 +170756149942,221,0 +170756149990,222,0 +170756150038,223,0 +170756150085,222,0 +170756150133,223,0 +170756150181,216,0 +170756150231,214,0 +170756150279,215,0 +170756150328,216,0 +170756150376,217,0 +170756150426,217,0 +170756150474,218,0 +170756150521,219,0 +170756150569,219,0 +170756150619,220,0 +170756150667,221,0 +170756150716,222,0 +170756150764,221,0 +170756150812,222,0 +170756150860,223,0 +170756150908,222,0 +170756150957,222,0 +170756151005,222,0 +170756151055,222,0 +170756151103,216,0 +170756151152,214,0 +170756151200,215,0 +170756151248,216,0 +170756151296,216,0 +170756151344,217,0 +170756151393,218,0 +170756151443,219,0 +170756151492,219,0 +170756151540,220,0 +170756151590,221,0 +170756151639,221,0 +170756151687,221,0 +170756151735,222,0 +170756151783,222,0 +170756151833,223,0 +170756151882,222,0 +170756151932,222,0 +170756151980,222,0 +170756152027,214,0 +170756152075,215,0 +170756152123,215,0 +170756152173,216,0 +170756152221,217,0 +170756152269,217,0 +170756152318,218,0 +170756152366,219,0 +170756152416,219,0 +170756152465,220,0 +170756152513,221,0 +170756152561,222,0 +170756152611,223,0 +170756152659,223,0 +170756152707,222,0 +170756152756,223,0 +170756152806,223,0 +170756152854,223,0 +170756152901,220,0 +170756152949,214,0 +170756152997,215,0 +170756153045,215,0 +170756153094,218,0 +170756153142,217,0 +170756153190,218,0 +170756153238,218,0 +170756153288,220,0 +170756153337,220,0 +170756153385,220,0 +170756153433,221,0 +170756153481,222,0 +170756153531,224,0 +170756153580,223,0 +170756153629,223,0 +170756153677,223,0 +170756153725,223,0 +170756153773,222,0 +170756153821,216,0 +170756153869,214,0 +170756153919,215,0 +170756153968,216,0 +170756154016,216,0 +170756154064,217,0 +170756154112,217,0 +170756154160,218,0 +170756154208,218,0 +170756154256,219,0 +170756154306,220,0 +170756154354,220,0 +170756154403,220,0 +170756154453,222,0 +170756154502,222,0 +170756154550,222,0 +170756154598,221,0 +170756154646,221,0 +170756154694,221,0 +170756154743,215,0 +170756154791,215,0 +170756154839,214,0 +170756154887,215,0 +170756154935,216,0 +170756154983,216,0 +170756155031,217,0 +170756155078,218,0 +170756155126,219,0 +170756155174,219,0 +170756155222,220,0 +170756155270,221,0 +170756155318,221,0 +170756155366,222,0 +170756155414,222,0 +170756155462,223,0 +170756155510,223,0 +170756155557,223,0 +170756155605,221,0 +170756155653,215,0 +170756155701,214,0 +170756155749,215,0 +170756155797,216,0 +170756155846,217,0 +170756155894,217,0 +170756155944,218,0 +170756155993,218,0 +170756156041,219,0 +170756156089,220,0 +170756156137,221,0 +170756156185,221,0 +170756156233,221,0 +170756156281,222,0 +170756156330,222,0 +170756156378,221,0 +170756156426,222,0 +170756156475,222,0 +170756156525,221,0 +170756156573,217,0 +170756156622,217,0 +170756156670,218,0 +170756156718,219,0 +170756156766,219,0 +170756156814,219,0 +170756156862,220,0 +170756156910,221,0 +170756156957,221,0 +170756157007,221,0 +170756157055,222,0 +170756157103,222,0 +170756157151,222,0 +170756157200,223,0 +170756157250,223,0 +170756157298,222,0 +170756157346,223,0 +170756157395,222,0 +170756157445,219,0 +170756157494,214,0 +170756157543,216,0 +170756157591,216,0 +170756157639,218,0 +170756157687,218,0 +170756157735,219,0 +170756157783,220,0 +170756157831,220,0 +170756157880,221,0 +170756157928,221,0 +170756157976,220,0 +170756158024,222,0 +170756158073,222,0 +170756158123,222,0 +170756158173,224,0 +170756158220,223,0 +170756158270,221,0 +170756158318,221,0 +170756158366,216,0 +170756158415,214,0 +170756158463,214,0 +170756158511,215,0 +170756158561,216,0 +170756158609,216,0 +170756158657,216,0 +170756158705,217,0 +170756158753,217,0 +170756158800,218,0 +170756158848,220,0 +170756158898,219,0 +170756158947,219,0 +170756158995,219,0 +170756159043,221,0 +170756159091,219,0 +170756159139,221,0 +170756159187,221,0 +170756159236,222,0 +170756159284,216,0 +170756159334,214,0 +170756159382,215,0 +170756159430,216,0 +170756159479,216,0 +170756159527,217,0 +170756159575,218,0 +170756159623,219,0 +170756159671,220,0 +170756159721,218,0 +170756159770,220,0 +170756159818,223,0 +170756159868,222,0 +170756159916,221,0 +170756159964,221,0 +170756160013,222,0 +170756160061,222,0 +170756160109,222,0 +170756160159,222,0 +170756160208,215,0 +170756160256,215,0 +170756160305,216,0 +170756160353,218,0 +170756160401,218,0 +170756160449,218,0 +170756160497,219,0 +170756160545,218,0 +170756160593,219,0 +170756160641,219,0 +170756160690,220,0 +170756160738,221,0 +170756160786,222,0 +170756160834,223,0 +170756160882,222,0 +170756160930,222,0 +170756160980,221,0 +170756161028,222,0 +170756161076,222,0 +170756161124,215,0 +170756161172,216,0 +170756161221,216,0 +170756161269,217,0 +170756161317,217,0 +170756161365,218,0 +170756161414,219,0 +170756161462,219,0 +170756161510,221,0 +170756161558,220,0 +170756161606,220,0 +170756161653,220,0 +170756161703,222,0 +170756161751,221,0 +170756161800,222,0 +170756161848,222,0 +170756161896,220,0 +170756161944,222,0 +170756161992,215,0 +170756162040,214,0 +170756162088,215,0 +170756162136,215,0 +170756162185,216,0 +170756162233,216,0 +170756162283,218,0 +170756162331,217,0 +170756162379,218,0 +170756162427,219,0 +170756162476,220,0 +170756162526,220,0 +170756162575,221,0 +170756162625,221,0 +170756162673,223,0 +170756162720,221,0 +170756162768,223,0 +170756162818,223,0 +170756162866,222,0 +170756162914,216,0 +170756162963,215,0 +170756163013,215,0 +170756163062,215,0 +170756163112,217,0 +170756163160,217,0 +170756163208,217,0 +170756163256,218,0 +170756163304,218,0 +170756163352,219,0 +170756163400,220,0 +170756163447,220,0 +170756163495,220,0 +170756163543,221,0 +170756163593,221,0 +170756163641,221,0 +170756163690,222,0 +170756163738,222,0 +170756163787,221,0 +170756163837,215,0 +170756163885,215,0 +170756163933,215,0 +170756163982,216,0 +170756164031,217,0 +170756164079,217,0 +170756164127,218,0 +170756164175,217,0 +170756164223,219,0 +170756164271,218,0 +170756164319,220,0 +170756164369,220,0 +170756164417,221,0 +170756164464,221,0 +170756164512,222,0 +170756164562,222,0 +170756164610,222,0 +170756164658,222,0 +170756164706,221,0 +170756164755,214,0 +170756164803,215,0 +170756164851,216,0 +170756164899,216,0 +170756164947,217,0 +170756164995,217,0 +170756165043,218,0 +170756165090,218,0 +170756165138,219,0 +170756165186,219,0 +170756165234,220,0 +170756165282,220,0 +170756165330,222,0 +170756165379,222,0 +170756165427,222,0 +170756165475,222,0 +170756165524,223,0 +170756165572,222,0 +170756165620,216,0 +170756165670,216,0 +170756165719,216,0 +170756165767,218,0 +170756165815,217,0 +170756165864,218,0 +170756165912,219,0 +170756165962,219,0 +170756166010,219,0 +170756166058,220,0 +170756166106,220,0 +170756166155,221,0 +170756166205,221,0 +170756166253,221,0 +170756166302,222,0 +170756166350,223,0 +170756166398,222,0 +170756166448,222,0 +170756166496,222,0 +170756166543,218,0 +170756166591,215,0 +170756166639,217,0 +170756166687,217,0 +170756166737,218,0 +170756166786,218,0 +170756166836,220,0 +170756166884,221,0 +170756166933,220,0 +170756166983,221,0 +170756167031,222,0 +170756167079,222,0 +170756167127,221,0 +170756167176,221,0 +170756167224,222,0 +170756167272,223,0 +170756167321,223,0 +170756167369,222,0 +170756167417,221,0 +170756167465,215,0 +170756167514,215,0 +170756167562,216,0 +170756167610,217,0 +170756167658,218,0 +170756167707,218,0 +170756167755,219,0 +170756167803,219,0 +170756167851,219,0 +170756167899,220,0 +170756167946,221,0 +170756167996,221,0 +170756168043,222,0 +170756168091,223,0 +170756168139,220,0 +170756168187,222,0 +170756168237,222,0 +170756168285,222,0 +170756168332,218,0 +170756168380,214,0 +170756168428,216,0 +170756168476,216,0 +170756168524,217,0 +170756168572,218,0 +170756168621,219,0 +170756168669,219,0 +170756168717,220,0 +170756168765,221,0 +170756168813,220,0 +170756168860,221,0 +170756168908,222,0 +170756168956,222,0 +170756169004,223,0 +170756169053,224,0 +170756169101,224,0 +170756169149,223,0 +170756169198,222,0 +170756169246,215,0 +170756169294,214,0 +170756169342,214,0 +170756169390,215,0 +170756169438,216,0 +170756169485,216,0 +170756169535,219,0 +170756169583,218,0 +170756169631,217,0 +170756169678,220,0 +170756169726,220,0 +170756169776,220,0 +170756169824,220,0 +170756169873,220,0 +170756169921,221,0 +170756169971,222,0 +170756170019,223,0 +170756170067,222,0 +170756170114,222,0 +170756170162,215,0 +170756170212,214,0 +170756170261,214,0 +170756170311,215,0 +170756170359,215,0 +170756170407,215,0 +170756170455,215,0 +170756170503,217,0 +170756170551,217,0 +170756170599,217,0 +170756170647,219,0 +170756170695,220,0 +170756170743,220,0 +170756170792,222,0 +170756170840,221,0 +170756170888,222,0 +170756170937,223,0 +170756170985,222,0 +170756171033,221,0 +170756171083,215,0 +170756171131,214,0 +170756171178,215,0 +170756171226,215,0 +170756171276,216,0 +170756171326,216,0 +170756171374,217,0 +170756171423,217,0 +170756171471,217,0 +170756171519,218,0 +170756171569,220,0 +170756171617,219,0 +170756171664,220,0 +170756171714,220,0 +170756171764,222,0 +170756171811,222,0 +170756171859,223,0 +170756171909,223,0 +170756171958,221,0 +170756172006,214,0 +170756172056,215,0 +170756172105,216,0 +170756172153,215,0 +170756172201,217,0 +170756172249,217,0 +170756172297,217,0 +170756172345,218,0 +170756172393,219,0 +170756172443,219,0 +170756172492,220,0 +170756172540,221,0 +170756172590,222,0 +170756172639,223,0 +170756172689,222,0 +170756172738,222,0 +170756172788,222,0 +170756172837,222,0 +170756172885,215,0 +170756172933,216,0 +170756172983,218,0 +170756173030,219,0 +170756173078,219,0 +170756173128,219,0 +170756173176,222,0 +170756173224,219,0 +170756173272,221,0 +170756173321,222,0 +170756173371,222,0 +170756173420,222,0 +170756173468,223,0 +170756173518,223,0 +170756173566,224,0 +170756173614,223,0 +170756173663,224,0 +170756173713,223,0 +170756173762,221,0 +170756173810,215,0 +170756173858,215,0 +170756173906,216,0 +170756173954,217,0 +170756174002,217,0 +170756174052,217,0 +170756174099,218,0 +170756174149,220,0 +170756174199,219,0 +170756174248,219,0 +170756174298,220,0 +170756174346,221,0 +170756174394,222,0 +170756174442,222,0 +170756174491,222,0 +170756174541,222,0 +170756174589,222,0 +170756174638,222,0 +170756174686,216,0 +170756174736,214,0 +170756174785,215,0 +170756174835,215,0 +170756174883,217,0 +170756174931,217,0 +170756174979,217,0 +170756175026,217,0 +170756175074,218,0 +170756175122,219,0 +170756175170,219,0 +170756175218,220,0 +170756175268,220,0 +170756175316,221,0 +170756175364,222,0 +170756175412,222,0 +170756175461,222,0 +170756175509,221,0 +170756175557,222,0 +170756175606,215,0 +170756175656,215,0 +170756175706,215,0 +170756175753,216,0 +170756175801,216,0 +170756175851,217,0 +170756175901,218,0 +170756175950,218,0 +170756175998,219,0 +170756176047,219,0 +170756176095,220,0 +170756176145,220,0 +170756176193,221,0 +170756176240,221,0 +170756176290,221,0 +170756176339,222,0 +170756176387,223,0 +170756176435,222,0 +170756176483,223,0 +170756176532,215,0 +170756176580,213,0 +170756176628,215,0 +170756176676,216,0 +170756176724,216,0 +170756176773,217,0 +170756176821,217,0 +170756176871,218,0 +170756176919,219,0 +170756176967,220,0 +170756177015,220,0 +170756177063,221,0 +170756177112,221,0 +170756177162,222,0 +170756177210,223,0 +170756177258,222,0 +170756177307,222,0 +170756177355,222,0 +170756177403,221,0 +170756177451,214,0 +170756177499,214,0 +170756177549,216,0 +170756177598,216,0 +170756177646,217,0 +170756177694,218,0 +170756177743,219,0 +170756177791,219,0 +170756177839,220,0 +170756177889,220,0 +170756177937,221,0 +170756177985,222,0 +170756178034,223,0 +170756178082,222,0 +170756178130,223,0 +170756178178,223,0 +170756178226,223,0 +170756178274,222,0 +170756178322,216,0 +170756178369,215,0 +170756178417,216,0 +170756178467,217,0 +170756178515,217,0 +170756178563,218,0 +170756178612,218,0 +170756178660,220,0 +170756178709,220,0 +170756178757,221,0 +170756178805,222,0 +170756178853,222,0 +170756178901,222,0 +170756178949,223,0 +170756178997,222,0 +170756179047,223,0 +170756179094,223,0 +170756179142,222,0 +170756179190,222,0 +170756179238,216,0 +170756179288,215,0 +170756179337,216,0 +170756179385,216,0 +170756179433,217,0 +170756179483,218,0 +170756179531,219,0 +170756179579,219,0 +170756179628,221,0 +170756179678,221,0 +170756179725,220,0 +170756179773,221,0 +170756179823,222,0 +170756179873,222,0 +170756179922,222,0 +170756179972,222,0 +170756180021,223,0 +170756180071,223,0 +170756180120,221,0 +170756180170,214,0 +170756180218,214,0 +170756180267,214,0 +170756180315,215,0 +170756180365,216,0 +170756180413,217,0 +170756180462,218,0 +170756180512,218,0 +170756180560,218,0 +170756180608,220,0 +170756180657,220,0 +170756180705,221,0 +170756180755,222,0 +170756180803,222,0 +170756180851,220,0 +170756180900,222,0 +170756180948,222,0 +170756180996,223,0 +170756181044,216,0 +170756181092,214,0 +170756181140,214,0 +170756181187,214,0 +170756181237,215,0 +170756181286,216,0 +170756181334,216,0 +170756181384,216,0 +170756181433,217,0 +170756181481,218,0 +170756181531,218,0 +170756181581,219,0 +170756181628,220,0 +170756181676,219,0 +170756181726,220,0 +170756181774,220,0 +170756181823,221,0 +170756181873,222,0 +170756181922,221,0 +170756181970,215,0 +170756182020,214,0 +170756182068,215,0 +170756182115,215,0 +170756182165,217,0 +170756182213,216,0 +170756182261,217,0 +170756182309,218,0 +170756182357,218,0 +170756182404,219,0 +170756182452,220,0 +170756182500,220,0 +170756182550,224,0 +170756182598,222,0 +170756182645,222,0 +170756182695,221,0 +170756182743,221,0 +170756182791,222,0 +170756182839,222,0 +170756182887,215,0 +170756182934,215,0 +170756182982,216,0 +170756183030,217,0 +170756183078,217,0 +170756183127,218,0 +170756183175,218,0 +170756183223,219,0 +170756183271,220,0 +170756183319,220,0 +170756183367,222,0 +170756183415,222,0 +170756183463,221,0 +170756183511,222,0 +170756183559,222,0 +170756183606,224,0 +170756183656,222,0 +170756183704,222,0 +170756183752,217,0 +170756183800,215,0 +170756183849,215,0 +170756183899,216,0 +170756183947,217,0 +170756183995,217,0 +170756184043,218,0 +170756184091,219,0 +170756184139,218,0 +170756184188,219,0 +170756184236,221,0 +170756184284,220,0 +170756184332,221,0 +170756184380,221,0 +170756184428,223,0 +170756184477,221,0 +170756184527,223,0 +170756184576,223,0 +170756184624,222,0 +170756184672,216,0 +170756184722,214,0 +170756184771,215,0 +170756184821,216,0 +170756184869,217,0 +170756184917,218,0 +170756184965,218,0 +170756185012,218,0 +170756185060,219,0 +170756185110,220,0 +170756185159,220,0 +170756185209,221,0 +170756185258,221,0 +170756185306,221,0 +170756185354,222,0 +170756185402,223,0 +170756185451,223,0 +170756185501,222,0 +170756185549,219,0 +170756185596,216,0 +170756185644,214,0 +170756185692,215,0 +170756185740,216,0 +170756185788,217,0 +170756185836,218,0 +170756185884,217,0 +170756185932,219,0 +170756185980,219,0 +170756186028,220,0 +170756186077,220,0 +170756186125,222,0 +170756186173,222,0 +170756186221,222,0 +170756186269,223,0 +170756186317,223,0 +170756186366,222,0 +170756186416,223,0 +170756186464,222,0 +170756186513,215,0 +170756186563,215,0 +170756186613,217,0 +170756186661,217,0 +170756186709,217,0 +170756186758,217,0 +170756186808,218,0 +170756186856,218,0 +170756186904,219,0 +170756186953,219,0 +170756187001,219,0 +170756187049,220,0 +170756187097,221,0 +170756187146,222,0 +170756187196,223,0 +170756187245,222,0 +170756187293,223,0 +170756187343,222,0 +170756187391,216,0 +170756187439,214,0 +170756187487,215,0 +170756187535,215,0 +170756187583,217,0 +170756187632,217,0 +170756187681,217,0 +170756187729,217,0 +170756187777,218,0 +170756187825,219,0 +170756187873,219,0 +170756187921,220,0 +170756187969,220,0 +170756188019,222,0 +170756188067,222,0 +170756188114,222,0 +170756188164,222,0 +170756188212,223,0 +170756188260,222,0 +170756188308,216,0 +170756188356,215,0 +170756188404,216,0 +170756188453,217,0 +170756188501,217,0 +170756188549,219,0 +170756188597,218,0 +170756188646,219,0 +170756188694,220,0 +170756188742,220,0 +170756188792,221,0 +170756188840,221,0 +170756188889,222,0 +170756188937,221,0 +170756188985,223,0 +170756189033,222,0 +170756189081,223,0 +170756189130,222,0 +170756189178,222,0 +170756189226,215,0 +170756189274,215,0 +170756189324,216,0 +170756189372,217,0 +170756189420,217,0 +170756189469,218,0 +170756189517,218,0 +170756189565,219,0 +170756189613,220,0 +170756189661,221,0 +170756189711,221,0 +170756189759,221,0 +170756189807,222,0 +170756189855,222,0 +170756189903,222,0 +170756189950,223,0 +170756189998,224,0 +170756190046,224,0 +170756190096,222,0 +170756190144,214,0 +170756190192,215,0 +170756190241,216,0 +170756190291,216,0 +170756190341,217,0 +170756190390,217,0 +170756190438,216,0 +170756190486,218,0 +170756190535,219,0 +170756190585,220,0 +170756190634,220,0 +170756190682,223,0 +170756190732,222,0 +170756190780,222,0 +170756190828,223,0 +170756190877,222,0 +170756190925,223,0 +170756190975,222,0 +170756191023,216,0 +170756191071,214,0 +170756191119,214,0 +170756191167,215,0 +170756191214,216,0 +170756191264,217,0 +170756191313,218,0 +170756191361,217,0 +170756191409,218,0 +170756191459,218,0 +170756191507,219,0 +170756191555,220,0 +170756191603,221,0 +170756191651,221,0 +170756191699,220,0 +170756191748,222,0 +170756191798,223,0 +170756191847,223,0 +170756191897,222,0 +170756191946,222,0 +170756191994,215,0 +170756192044,214,0 +170756192092,214,0 +170756192141,214,0 +170756192189,216,0 +170756192237,217,0 +170756192285,217,0 +170756192333,218,0 +170756192383,219,0 +170756192432,219,0 +170756192480,219,0 +170756192528,220,0 +170756192576,221,0 +170756192624,222,0 +170756192673,222,0 +170756192721,224,0 +170756192769,222,0 +170756192819,222,0 +170756192867,222,0 +170756192915,214,0 +170756192963,214,0 +170756193012,214,0 +170756193062,215,0 +170756193111,216,0 +170756193159,216,0 +170756193209,217,0 +170756193257,217,0 +170756193306,218,0 +170756193354,218,0 +170756193404,219,0 +170756193453,221,0 +170756193501,221,0 +170756193549,221,0 +170756193597,222,0 +170756193645,222,0 +170756193693,222,0 +170756193741,222,0 +170756193789,222,0 +170756193839,215,0 +170756193888,216,0 +170756193938,217,0 +170756193987,218,0 +170756194037,218,0 +170756194085,219,0 +170756194133,218,0 +170756194181,219,0 +170756194230,220,0 +170756194278,221,0 +170756194328,222,0 +170756194376,223,0 +170756194424,223,0 +170756194472,223,0 +170756194520,222,0 +170756194567,224,0 +170756194615,223,0 +170756194665,223,0 +170756194713,222,0 +170756194761,216,0 +170756194810,216,0 +170756194860,217,0 +170756194908,217,0 +170756194957,218,0 +170756195005,220,0 +170756195053,220,0 +170756195101,220,0 +170756195149,221,0 +170756195197,222,0 +170756195246,222,0 +170756195296,223,0 +170756195345,223,0 +170756195395,223,0 +170756195445,223,0 +170756195493,223,0 +170756195542,223,0 +170756195592,223,0 +170756195640,222,0 +170756195689,216,0 +170756195737,215,0 +170756195785,216,0 +170756195833,217,0 +170756195883,219,0 +170756195931,219,0 +170756195980,220,0 +170756196028,220,0 +170756196076,221,0 +170756196125,222,0 +170756196175,222,0 +170756196223,223,0 +170756196273,222,0 +170756196322,224,0 +170756196372,223,0 +170756196420,223,0 +170756196468,223,0 +170756196516,222,0 +170756196565,222,0 +170756196613,216,0 +170756196663,215,0 +170756196711,216,0 +170756196760,217,0 +170756196810,217,0 +170756196857,219,0 +170756196907,219,0 +170756196957,219,0 +170756197005,220,0 +170756197054,221,0 +170756197104,221,0 +170756197153,223,0 +170756197203,222,0 +170756197251,223,0 +170756197300,223,0 +170756197350,222,0 +170756197399,222,0 +170756197449,222,0 +170756197497,222,0 +170756197545,215,0 +170756197593,215,0 +170756197642,216,0 +170756197690,216,0 +170756197738,217,0 +170756197786,217,0 +170756197836,218,0 +170756197884,218,0 +170756197933,220,0 +170756197981,219,0 +170756198031,221,0 +170756198079,222,0 +170756198127,222,0 +170756198176,222,0 +170756198226,222,0 +170756198273,223,0 +170756198321,223,0 +170756198371,222,0 +170756198420,222,0 +170756198468,216,0 +170756198516,215,0 +170756198564,216,0 +170756198612,217,0 +170756198662,217,0 +170756198710,218,0 +170756198758,218,0 +170756198806,219,0 +170756198854,218,0 +170756198901,219,0 +170756198949,219,0 +170756198999,220,0 +170756199048,221,0 +170756199098,222,0 +170756199147,222,0 +170756199195,222,0 +170756199245,222,0 +170756199293,222,0 +170756199342,223,0 +170756199390,216,0 +170756199439,215,0 +170756199489,216,0 +170756199537,217,0 +170756199585,218,0 +170756199634,219,0 +170756199684,219,0 +170756199732,220,0 +170756199780,221,0 +170756199828,221,0 +170756199876,223,0 +170756199925,222,0 +170756199975,222,0 +170756200024,222,0 +170756200074,222,0 +170756200122,222,0 +170756200170,222,0 +170756200218,220,0 +170756200266,221,0 +170756200314,216,0 +170756200363,216,0 +170756200413,216,0 +170756200461,217,0 +170756200509,218,0 +170756200558,219,0 +170756200606,219,0 +170756200656,220,0 +170756200703,220,0 +170756200751,221,0 +170756200799,222,0 +170756200847,222,0 +170756200895,223,0 +170756200943,222,0 +170756200993,222,0 +170756201041,222,0 +170756201089,222,0 +170756201137,223,0 +170756201186,222,0 +170756201236,215,0 +170756201285,215,0 +170756201333,215,0 +170756201383,216,0 +170756201430,217,0 +170756201478,217,0 +170756201526,218,0 +170756201574,220,0 +170756201624,219,0 +170756201672,220,0 +170756201720,222,0 +170756201768,222,0 +170756201817,221,0 +170756201865,222,0 +170756201913,223,0 +170756201962,223,0 +170756202011,223,0 +170756202058,223,0 +170756202106,223,0 +170756202154,219,0 +170756202204,214,0 +170756202253,215,0 +170756202301,215,0 +170756202351,216,0 +170756202400,216,0 +170756202450,217,0 +170756202498,218,0 +170756202547,218,0 +170756202597,219,0 +170756202645,219,0 +170756202694,220,0 +170756202742,221,0 +170756202792,221,0 +170756202840,223,0 +170756202888,223,0 +170756202935,222,0 +170756202983,222,0 +170756203031,223,0 +170756203081,216,0 +170756203130,214,0 +170756203178,215,0 +170756203226,216,0 +170756203274,216,0 +170756203322,217,0 +170756203371,217,0 +170756203421,218,0 +170756203469,218,0 +170756203517,219,0 +170756203565,220,0 +170756203614,220,0 +170756203664,223,0 +170756203712,222,0 +170756203760,223,0 +170756203808,223,0 +170756203856,223,0 +170756203904,222,0 +170756203951,222,0 +170756203999,217,0 +170756204049,214,0 +170756204098,215,0 +170756204146,215,0 +170756204194,216,0 +170756204244,217,0 +170756204293,217,0 +170756204341,218,0 +170756204389,218,0 +170756204437,218,0 +170756204485,219,0 +170756204533,224,0 +170756204581,221,0 +170756204629,221,0 +170756204678,222,0 +170756204726,222,0 +170756204774,222,0 +170756204823,222,0 +170756204871,222,0 +170756204919,221,0 +170756204969,215,0 +170756205018,214,0 +170756205068,215,0 +170756205117,216,0 +170756205165,216,0 +170756205213,217,0 +170756205261,218,0 +170756205309,218,0 +170756205357,218,0 +170756205405,219,0 +170756205454,220,0 +170756205502,220,0 +170756205550,220,0 +170756205598,221,0 +170756205646,221,0 +170756205694,223,0 +170756205741,223,0 +170756205789,222,0 +170756205837,222,0 +170756205887,215,0 +170756205935,214,0 +170756205982,214,0 +170756206030,215,0 +170756206078,215,0 +170756206126,216,0 +170756206174,217,0 +170756206222,217,0 +170756206270,218,0 +170756206319,219,0 +170756206369,220,0 +170756206418,220,0 +170756206468,221,0 +170756206517,221,0 +170756206567,221,0 +170756206615,222,0 +170756206664,221,0 +170756206712,222,0 +170756206762,223,0 +170756206811,215,0 +170756206859,214,0 +170756206907,214,0 +170756206955,215,0 +170756207003,215,0 +170756207051,215,0 +170756207099,216,0 +170756207148,216,0 +170756207196,217,0 +170756207244,217,0 +170756207292,220,0 +170756207339,220,0 +170756207387,220,0 +170756207435,221,0 +170756207485,221,0 +170756207533,223,0 +170756207582,223,0 +170756207630,222,0 +170756207678,222,0 +170756207726,216,0 +170756207773,215,0 +170756207823,215,0 +170756207873,216,0 +170756207922,216,0 +170756207970,217,0 +170756208018,217,0 +170756208066,218,0 +170756208115,218,0 +170756208165,219,0 +170756208213,219,0 +170756208261,220,0 +170756208309,220,0 +170756208356,221,0 +170756208404,223,0 +170756208452,222,0 +170756208500,221,0 +170756208550,222,0 +170756208598,222,0 +170756208645,222,0 +170756208693,214,0 +170756208741,214,0 +170756208789,215,0 +170756208837,215,0 +170756208885,217,0 +170756208932,217,0 +170756208980,218,0 +170756209030,218,0 +170756209077,219,0 +170756209127,219,0 +170756209175,219,0 +170756209224,220,0 +170756209272,221,0 +170756209322,221,0 +170756209371,221,0 +170756209419,223,0 +170756209469,222,0 +170756209517,222,0 +170756209565,221,0 +170756209613,215,0 +170756209661,215,0 +170756209709,215,0 +170756209756,216,0 +170756209806,217,0 +170756209854,217,0 +170756209902,217,0 +170756209949,218,0 +170756209997,218,0 +170756210045,219,0 +170756210093,220,0 +170756210141,220,0 +170756210191,221,0 +170756210240,221,0 +170756210288,222,0 +170756210336,222,0 +170756210385,223,0 +170756210433,223,0 +170756210481,222,0 +170756210529,215,0 +170756210579,214,0 +170756210627,215,0 +170756210676,216,0 +170756210724,216,0 +170756210772,217,0 +170756210820,217,0 +170756210868,217,0 +170756210916,218,0 +170756210965,219,0 +170756211013,219,0 +170756211061,220,0 +170756211109,221,0 +170756211157,221,0 +170756211205,221,0 +170756211254,222,0 +170756211302,222,0 +170756211350,223,0 +170756211398,222,0 +170756211448,215,0 +170756211495,214,0 +170756211543,215,0 +170756211591,216,0 +170756211639,216,0 +170756211687,216,0 +170756211737,217,0 +170756211784,217,0 +170756211832,218,0 +170756211880,218,0 +170756211928,219,0 +170756211976,221,0 +170756212024,221,0 +170756212072,222,0 +170756212119,222,0 +170756212167,223,0 +170756212215,222,0 +170756212263,222,0 +170756212311,222,0 +170756212359,221,0 +170756212407,214,0 +170756212455,215,0 +170756212502,215,0 +170756212550,215,0 +170756212598,216,0 +170756212646,217,0 +170756212694,217,0 +170756212743,217,0 +170756212791,218,0 +170756212839,219,0 +170756212889,220,0 +170756212938,220,0 +170756212986,222,0 +170756213034,222,0 +170756213084,222,0 +170756213132,223,0 +170756213180,222,0 +170756213227,222,0 +170756213275,222,0 +170756213323,214,0 +170756213371,214,0 +170756213419,215,0 +170756213469,215,0 +170756213517,216,0 +170756213564,216,0 +170756213612,217,0 +170756213660,217,0 +170756213710,218,0 +170756213759,219,0 +170756213807,219,0 +170756213857,220,0 +170756213905,221,0 +170756213953,223,0 +170756214001,222,0 +170756214048,224,0 +170756214096,222,0 +170756214146,225,0 +170756214194,222,0 +170756214243,215,0 +170756214291,215,0 +170756214339,216,0 +170756214387,216,0 +170756214435,217,0 +170756214483,217,0 +170756214531,218,0 +170756214580,219,0 +170756214628,220,0 +170756214676,221,0 +170756214726,221,0 +170756214774,222,0 +170756214823,220,0 +170756214871,222,0 +170756214919,222,0 +170756214967,222,0 +170756215014,223,0 +170756215062,224,0 +170756215110,222,0 +170756215158,217,0 +170756215206,216,0 +170756215255,216,0 +170756215305,218,0 +170756215354,218,0 +170756215402,219,0 +170756215451,219,0 +170756215499,220,0 +170756215547,221,0 +170756215595,221,0 +170756215643,222,0 +170756215691,222,0 +170756215739,223,0 +170756215788,223,0 +170756215836,224,0 +170756215884,223,0 +170756215932,224,0 +170756215982,223,0 +170756216031,223,0 +170756216079,218,0 +170756216127,218,0 +170756216175,219,0 +170756216223,219,0 +170756216271,219,0 +170756216319,220,0 +170756216368,222,0 +170756216416,222,0 +170756216466,223,0 +170756216515,223,0 +170756216563,225,0 +170756216613,225,0 +170756216662,225,0 +170756216710,224,0 +170756216758,225,0 +170756216808,224,0 +170756216857,223,0 +170756216905,222,0 +170756216953,222,0 +170756217001,217,0 +170756217050,217,0 +170756217100,217,0 +170756217148,221,0 +170756217196,219,0 +170756217244,219,0 +170756217293,220,0 +170756217343,220,0 +170756217392,221,0 +170756217442,223,0 +170756217491,222,0 +170756217541,224,0 +170756217590,224,0 +170756217638,223,0 +170756217686,223,0 +170756217736,224,0 +170756217784,223,0 +170756217832,223,0 +170756217879,222,0 +170756217927,216,0 +170756217975,215,0 +170756218025,216,0 +170756218073,217,0 +170756218122,217,0 +170756218170,218,0 +170756218219,219,0 +170756218267,218,0 +170756218317,220,0 +170756218364,220,0 +170756218412,222,0 +170756218462,221,0 +170756218510,224,0 +170756218559,222,0 +170756218609,225,0 +170756218657,224,0 +170756218705,224,0 +170756218753,223,0 +170756218800,223,0 +170756218848,222,0 +170756218896,214,0 +170756218944,215,0 +170756218992,216,0 +170756219040,217,0 +170756219088,217,0 +170756219136,217,0 +170756219184,218,0 +170756219232,219,0 +170756219280,219,0 +170756219327,220,0 +170756219377,221,0 +170756219425,222,0 +170756219473,222,0 +170756219522,222,0 +170756219572,222,0 +170756219620,224,0 +170756219668,222,0 +170756219716,223,0 +170756219764,221,0 +170756219812,215,0 +170756219859,215,0 +170756219909,216,0 +170756219957,217,0 +170756220007,217,0 +170756220054,218,0 +170756220104,218,0 +170756220152,219,0 +170756220199,220,0 +170756220247,219,0 +170756220297,221,0 +170756220346,223,0 +170756220394,222,0 +170756220442,223,0 +170756220490,222,0 +170756220539,223,0 +170756220589,222,0 +170756220637,223,0 +170756220686,222,0 +170756220734,214,0 +170756220782,215,0 +170756220830,214,0 +170756220878,215,0 +170756220926,215,0 +170756220974,216,0 +170756221022,216,0 +170756221071,217,0 +170756221119,218,0 +170756221168,218,0 +170756221218,219,0 +170756221266,220,0 +170756221314,220,0 +170756221363,221,0 +170756221411,222,0 +170756221459,222,0 +170756221507,223,0 +170756221555,223,0 +170756221605,222,0 +170756221653,216,0 +170756221701,214,0 +170756221749,215,0 +170756221797,215,0 +170756221846,216,0 +170756221895,216,0 +170756221945,217,0 +170756221993,218,0 +170756222043,219,0 +170756222092,219,0 +170756222142,219,0 +170756222191,221,0 +170756222239,222,0 +170756222289,222,0 +170756222337,222,0 +170756222385,223,0 +170756222433,222,0 +170756222480,223,0 +170756222528,222,0 +170756222578,217,0 +170756222628,216,0 +170756222676,217,0 +170756222725,218,0 +170756222773,218,0 +170756222823,219,0 +170756222872,220,0 +170756222922,221,0 +170756222971,220,0 +170756223019,221,0 +170756223067,222,0 +170756223117,222,0 +170756223164,222,0 +170756223212,222,0 +170756223260,223,0 +170756223310,224,0 +170756223359,222,0 +170756223409,223,0 +170756223457,221,0 +170756223505,217,0 +170756223552,216,0 +170756223601,216,0 +170756223648,217,0 +170756223698,218,0 +170756223746,220,0 +170756223794,219,0 +170756223843,221,0 +170756223891,220,0 +170756223939,220,0 +170756223987,221,0 +170756224035,222,0 +170756224083,222,0 +170756224131,222,0 +170756224179,222,0 +170756224227,224,0 +170756224275,223,0 +170756224325,222,0 +170756224373,222,0 +170756224420,216,0 +170756224468,215,0 +170756224518,215,0 +170756224566,217,0 +170756224614,217,0 +170756224663,218,0 +170756224713,219,0 +170756224762,220,0 +170756224810,220,0 +170756224858,220,0 +170756224906,221,0 +170756224954,221,0 +170756225002,221,0 +170756225052,221,0 +170756225101,222,0 +170756225149,223,0 +170756225199,223,0 +170756225247,222,0 +170756225295,222,0 +170756225344,216,0 +170756225394,215,0 +170756225442,216,0 +170756225490,216,0 +170756225537,216,0 +170756225585,218,0 +170756225635,218,0 +170756225683,218,0 +170756225733,218,0 +170756225780,219,0 +170756225828,220,0 +170756225876,221,0 +170756225924,221,0 +170756225972,222,0 +170756226022,222,0 +170756226071,223,0 +170756226121,224,0 +170756226170,222,0 +170756226218,222,0 +170756226266,216,0 +170756226314,215,0 +170756226362,216,0 +170756226410,217,0 +170756226458,217,0 +170756226508,218,0 +170756226556,218,0 +170756226604,220,0 +170756226652,219,0 +170756226699,220,0 +170756226747,220,0 +170756226797,221,0 +170756226845,222,0 +170756226893,223,0 +170756226942,221,0 +170756226990,223,0 +170756227038,224,0 +170756227086,223,0 +170756227136,221,0 +170756227185,219,0 +170756227235,214,0 +170756227283,215,0 +170756227331,216,0 +170756227378,217,0 +170756227428,218,0 +170756227476,218,0 +170756227525,219,0 +170756227575,219,0 +170756227624,220,0 +170756227672,221,0 +170756227720,221,0 +170756227770,222,0 +170756227819,223,0 +170756227867,222,0 +170756227915,223,0 +170756227963,222,0 +170756228012,223,0 +170756228060,222,0 +170756228108,222,0 +170756228156,215,0 +170756228204,215,0 +170756228252,216,0 +170756228300,216,0 +170756228348,217,0 +170756228396,218,0 +170756228444,218,0 +170756228492,219,0 +170756228540,219,0 +170756228588,220,0 +170756228636,220,0 +170756228683,222,0 +170756228731,222,0 +170756228779,222,0 +170756228827,223,0 +170756228875,222,0 +170756228923,224,0 +170756228972,223,0 +170756229020,222,0 +170756229070,215,0 +170756229118,215,0 +170756229166,215,0 +170756229213,217,0 +170756229261,218,0 +170756229309,219,0 +170756229357,218,0 +170756229405,218,0 +170756229453,219,0 +170756229501,219,0 +170756229550,220,0 +170756229598,221,0 +170756229646,221,0 +170756229694,222,0 +170756229742,223,0 +170756229790,223,0 +170756229838,222,0 +170756229886,223,0 +170756229934,223,0 +170756229982,216,0 +170756230029,215,0 +170756230077,216,0 +170756230125,216,0 +170756230173,217,0 +170756230221,217,0 +170756230271,218,0 +170756230319,219,0 +170756230368,220,0 +170756230416,219,0 +170756230464,219,0 +170756230512,221,0 +170756230560,221,0 +170756230609,222,0 +170756230657,222,0 +170756230705,223,0 +170756230753,223,0 +170756230803,224,0 +170756230851,222,0 +170756230900,219,0 +170756230948,215,0 +170756230998,215,0 +170756231045,216,0 +170756231095,217,0 +170756231144,218,0 +170756231194,217,0 +170756231242,218,0 +170756231291,218,0 +170756231339,219,0 +170756231389,220,0 +170756231438,220,0 +170756231488,222,0 +170756231536,222,0 +170756231584,221,0 +170756231633,222,0 +170756231683,222,0 +170756231732,222,0 +170756231780,222,0 +170756231828,216,0 +170756231876,214,0 +170756231924,215,0 +170756231972,216,0 +170756232021,217,0 +170756232069,217,0 +170756232117,217,0 +170756232167,218,0 +170756232214,218,0 +170756232264,220,0 +170756232312,219,0 +170756232360,220,0 +170756232408,221,0 +170756232456,222,0 +170756232504,222,0 +170756232552,223,0 +170756232600,222,0 +170756232647,222,0 +170756232695,222,0 +170756232743,221,0 +170756232793,215,0 +170756232842,214,0 +170756232890,215,0 +170756232938,215,0 +170756232988,216,0 +170756233036,217,0 +170756233085,217,0 +170756233133,218,0 +170756233182,218,0 +170756233230,220,0 +170756233278,220,0 +170756233328,221,0 +170756233376,221,0 +170756233424,221,0 +170756233472,222,0 +170756233520,222,0 +170756233568,222,0 +170756233617,222,0 +170756233665,221,0 +170756233713,214,0 +170756233761,214,0 +170756233809,214,0 +170756233857,215,0 +170756233905,214,0 +170756233953,216,0 +170756234001,216,0 +170756234049,217,0 +170756234097,216,0 +170756234144,218,0 +170756234192,218,0 +170756234242,218,0 +170756234290,220,0 +170756234338,220,0 +170756234387,222,0 +170756234435,222,0 +170756234483,223,0 +170756234531,221,0 +170756234579,222,0 +170756234627,216,0 +170756234677,214,0 +170756234724,214,0 +170756234772,215,0 +170756234822,215,0 +170756234871,215,0 +170756234919,216,0 +170756234967,217,0 +170756235017,217,0 +170756235065,218,0 +170756235114,219,0 +170756235162,220,0 +170756235210,221,0 +170756235258,221,0 +170756235307,222,0 +170756235355,224,0 +170756235405,222,0 +170756235453,223,0 +170756235501,222,0 +170756235550,216,0 +170756235598,214,0 +170756235646,214,0 +170756235696,215,0 +170756235743,215,0 +170756235791,215,0 +170756235839,216,0 +170756235887,217,0 +170756235935,218,0 +170756235983,218,0 +170756236031,219,0 +170756236079,219,0 +170756236129,220,0 +170756236177,220,0 +170756236224,221,0 +170756236272,222,0 +170756236320,222,0 +170756236368,222,0 +170756236416,223,0 +170756236464,220,0 +170756236514,215,0 +170756236561,216,0 +170756236609,217,0 +170756236659,218,0 +170756236708,218,0 +170756236756,218,0 +170756236804,219,0 +170756236854,220,0 +170756236903,220,0 +170756236951,221,0 +170756237000,221,0 +170756237048,221,0 +170756237098,222,0 +170756237146,223,0 +170756237194,223,0 +170756237243,223,0 +170756237291,222,0 +170756237339,222,0 +170756237387,216,0 +170756237435,215,0 +170756237483,216,0 +170756237532,217,0 +170756237582,218,0 +170756237630,218,0 +170756237678,218,0 +170756237726,218,0 +170756237774,219,0 +170756237822,220,0 +170756237870,222,0 +170756237919,223,0 +170756237967,222,0 +170756238015,223,0 +170756238065,223,0 +170756238114,224,0 +170756238162,224,0 +170756238210,224,0 +170756238260,223,0 +170756238308,221,0 +170756238355,215,0 +170756238403,216,0 +170756238453,217,0 +170756238501,217,0 +170756238549,218,0 +170756238597,219,0 +170756238646,220,0 +170756238694,220,0 +170756238744,222,0 +170756238793,222,0 +170756238841,223,0 +170756238889,223,0 +170756238937,225,0 +170756238985,224,0 +170756239033,222,0 +170756239081,223,0 +170756239129,223,0 +170756239178,222,0 +170756239226,222,0 +170756239274,215,0 +170756239322,215,0 +170756239370,216,0 +170756239418,217,0 +170756239466,217,0 +170756239515,217,0 +170756239563,218,0 +170756239613,219,0 +170756239661,219,0 +170756239709,221,0 +170756239758,221,0 +170756239806,222,0 +170756239854,222,0 +170756239902,223,0 +170756239952,222,0 +170756240000,222,0 +170756240048,223,0 +170756240097,223,0 +170756240147,222,0 +170756240196,215,0 +170756240244,214,0 +170756240294,215,0 +170756240343,216,0 +170756240391,217,0 +170756240439,218,0 +170756240489,218,0 +170756240538,217,0 +170756240586,218,0 +170756240634,219,0 +170756240683,219,0 +170756240731,220,0 +170756240779,220,0 +170756240827,222,0 +170756240875,223,0 +170756240925,222,0 +170756240972,222,0 +170756241020,222,0 +170756241070,223,0 +170756241118,216,0 +170756241166,215,0 +170756241215,216,0 +170756241263,217,0 +170756241311,217,0 +170756241359,218,0 +170756241407,219,0 +170756241456,218,0 +170756241504,220,0 +170756241554,220,0 +170756241602,221,0 +170756241651,221,0 +170756241699,221,0 +170756241747,222,0 +170756241795,223,0 +170756241843,224,0 +170756241892,223,0 +170756241940,221,0 +170756241988,222,0 +170756242038,217,0 +170756242086,216,0 +170756242134,217,0 +170756242183,218,0 +170756242231,218,0 +170756242279,218,0 +170756242327,219,0 +170756242375,219,0 +170756242423,220,0 +170756242472,221,0 +170756242520,221,0 +170756242568,222,0 +170756242618,222,0 +170756242667,222,0 +170756242715,222,0 +170756242765,222,0 +170756242813,223,0 +170756242861,222,0 +170756242909,222,0 +170756242958,219,0 +170756243006,219,0 +170756243054,219,0 +170756243102,220,0 +170756243150,221,0 +170756243197,220,0 +170756243245,222,0 +170756243295,221,0 +170756243342,222,0 +170756243390,222,0 +170756243438,221,0 +170756243488,223,0 +170756243535,223,0 +170756243585,223,0 +170756243632,223,0 +170756243680,222,0 +170756243728,223,0 +170756243776,223,0 +170756243824,223,0 +170756243872,222,0 +170756243920,219,0 +170756243969,219,0 +170756244017,219,0 +170756244065,220,0 +170756244113,220,0 +170756244160,221,0 +170756244208,221,0 +170756244256,221,0 +170756244304,222,0 +170756244352,222,0 +170756244399,223,0 +170756244447,223,0 +170756244495,224,0 +170756244543,224,0 +170756244591,223,0 +170756244639,223,0 +170756244686,222,0 +170756244734,222,0 +170756244782,222,0 +170756244830,217,0 +170756244878,217,0 +170756244926,217,0 +170756244973,218,0 +170756245021,218,0 +170756245069,219,0 +170756245117,220,0 +170756245165,220,0 +170756245213,222,0 +170756245260,221,0 +170756245308,222,0 +170756245356,222,0 +170756245404,223,0 +170756245452,222,0 +170756245500,222,0 +170756245548,224,0 +170756245595,222,0 +170756245643,222,0 +170756245691,222,0 +170756245739,216,0 +170756245787,215,0 +170756245836,216,0 +170756245886,216,0 +170756245933,217,0 +170756245981,217,0 +170756246031,219,0 +170756246079,219,0 +170756246126,220,0 +170756246174,219,0 +170756246222,220,0 +170756246270,221,0 +170756246319,222,0 +170756246367,222,0 +170756246417,223,0 +170756246466,222,0 +170756246516,223,0 +170756246563,223,0 +170756246611,222,0 +170756246659,216,0 +170756246707,215,0 +170756246755,216,0 +170756246803,217,0 +170756246850,218,0 +170756246898,218,0 +170756246946,218,0 +170756246994,219,0 +170756247043,220,0 +170756247093,219,0 +170756247142,220,0 +170756247192,220,0 +170756247240,221,0 +170756247288,222,0 +170756247336,222,0 +170756247384,223,0 +170756247433,222,0 +170756247481,223,0 +170756247529,222,0 +170756247577,222,0 +170756247625,214,0 +170756247673,216,0 +170756247720,216,0 +170756247768,217,0 +170756247816,217,0 +170756247864,218,0 +170756247912,218,0 +170756247960,218,0 +170756248008,218,0 +170756248055,219,0 +170756248103,218,0 +170756248153,222,0 +170756248201,222,0 +170756248248,223,0 +170756248296,222,0 +170756248344,222,0 +170756248392,222,0 +170756248440,222,0 +170756248488,223,0 +170756248536,215,0 +170756248584,214,0 +170756248631,215,0 +170756248679,216,0 +170756248729,216,0 +170756248776,217,0 +170756248824,218,0 +170756248872,218,0 +170756248920,218,0 +170756248968,219,0 +170756249016,219,0 +170756249063,221,0 +170756249113,220,0 +170756249161,222,0 +170756249209,222,0 +170756249256,222,0 +170756249304,224,0 +170756249352,222,0 +170756249400,222,0 +170756249448,215,0 +170756249496,214,0 +170756249543,214,0 +170756249591,214,0 +170756249639,214,0 +170756249687,215,0 +170756249737,215,0 +170756249784,216,0 +170756249832,216,0 +170756249880,216,0 +170756249928,218,0 +170756249976,218,0 +170756250024,219,0 +170756250073,223,0 +170756250121,220,0 +170756250169,219,0 +170756250216,220,0 +170756250264,221,0 +170756250312,222,0 +170756250360,219,0 +170756250408,214,0 +170756250456,214,0 +170756250504,215,0 +170756250552,216,0 +170756250599,216,0 +170756250647,217,0 +170756250697,217,0 +170756250745,217,0 +170756250792,217,0 +170756250840,218,0 +170756250888,218,0 +170756250936,220,0 +170756250984,220,0 +170756251032,222,0 +170756251079,221,0 +170756251127,221,0 +170756251175,222,0 +170756251223,222,0 +170756251271,222,0 +170756251319,214,0 +170756251367,215,0 +170756251415,216,0 +170756251462,217,0 +170756251510,218,0 +170756251558,218,0 +170756251607,218,0 +170756251655,219,0 +170756251703,219,0 +170756251751,219,0 +170756251800,220,0 +170756251848,222,0 +170756251896,221,0 +170756251944,222,0 +170756251992,222,0 +170756252039,222,0 +170756252087,223,0 +170756252135,222,0 +170756252183,223,0 +170756252231,215,0 +170756252279,215,0 +170756252327,215,0 +170756252374,216,0 +170756252422,216,0 +170756252470,217,0 +170756252518,217,0 +170756252566,217,0 +170756252614,218,0 +170756252661,219,0 +170756252709,220,0 +170756252759,220,0 +170756252807,221,0 +170756252855,222,0 +170756252904,221,0 +170756252954,223,0 +170756253001,222,0 +170756253051,222,0 +170756253100,222,0 +170756253148,216,0 +170756253196,214,0 +170756253244,214,0 +170756253293,215,0 +170756253343,216,0 +170756253390,217,0 +170756253438,217,0 +170756253486,217,0 +170756253534,218,0 +170756253582,219,0 +170756253630,219,0 +170756253679,220,0 +170756253727,220,0 +170756253775,220,0 +170756253823,222,0 +170756253871,222,0 +170756253919,224,0 +170756253967,224,0 +170756254014,222,0 +170756254064,216,0 +170756254112,214,0 +170756254160,215,0 +170756254207,216,0 +170756254255,217,0 +170756254303,218,0 +170756254351,217,0 +170756254400,218,0 +170756254448,219,0 +170756254496,220,0 +170756254544,220,0 +170756254592,220,0 +170756254640,222,0 +170756254687,221,0 +170756254737,222,0 +170756254785,222,0 +170756254833,222,0 +170756254881,221,0 +170756254930,224,0 +170756254978,221,0 +170756255027,215,0 +170756255075,215,0 +170756255123,216,0 +170756255171,216,0 +170756255219,217,0 +170756255267,217,0 +170756255315,219,0 +170756255364,219,0 +170756255412,220,0 +170756255460,219,0 +170756255508,221,0 +170756255556,222,0 +170756255603,222,0 +170756255651,222,0 +170756255699,222,0 +170756255747,222,0 +170756255795,222,0 +170756255844,223,0 +170756255892,222,0 +170756255940,215,0 +170756255989,215,0 +170756256037,215,0 +170756256085,217,0 +170756256133,217,0 +170756256182,218,0 +170756256230,218,0 +170756256278,218,0 +170756256326,219,0 +170756256374,219,0 +170756256421,220,0 +170756256469,221,0 +170756256519,222,0 +170756256567,221,0 +170756256615,223,0 +170756256664,222,0 +170756256712,223,0 +170756256760,222,0 +170756256807,222,0 +170756256857,215,0 +170756256905,215,0 +170756256952,216,0 +170756257000,217,0 +170756257048,217,0 +170756257096,218,0 +170756257144,218,0 +170756257193,220,0 +170756257241,219,0 +170756257289,220,0 +170756257337,221,0 +170756257385,222,0 +170756257434,222,0 +170756257482,224,0 +170756257530,222,0 +170756257577,222,0 +170756257627,223,0 +170756257675,225,0 +170756257724,223,0 +170756257772,216,0 +170756257820,215,0 +170756257868,216,0 +170756257916,217,0 +170756257963,218,0 +170756258013,218,0 +170756258061,219,0 +170756258108,219,0 +170756258156,220,0 +170756258204,220,0 +170756258252,221,0 +170756258301,222,0 +170756258349,222,0 +170756258397,223,0 +170756258445,223,0 +170756258493,224,0 +170756258542,222,0 +170756258592,222,0 +170756258641,222,0 +170756258689,216,0 +170756258737,216,0 +170756258785,216,0 +170756258834,217,0 +170756258882,218,0 +170756258930,218,0 +170756258978,219,0 +170756259025,219,0 +170756259073,220,0 +170756259121,221,0 +170756259169,223,0 +170756259218,221,0 +170756259266,224,0 +170756259314,223,0 +170756259362,223,0 +170756259410,223,0 +170756259458,223,0 +170756259506,223,0 +170756259555,222,0 +170756259603,220,0 +170756259651,216,0 +170756259699,216,0 +170756259747,217,0 +170756259794,218,0 +170756259844,218,0 +170756259892,219,0 +170756259939,220,0 +170756259987,221,0 +170756260035,222,0 +170756260083,222,0 +170756260132,223,0 +170756260180,222,0 +170756260228,223,0 +170756260276,223,0 +170756260324,223,0 +170756260371,223,0 +170756260419,223,0 +170756260467,223,0 +170756260515,222,0 +170756260563,216,0 +170756260611,215,0 +170756260658,216,0 +170756260706,216,0 +170756260754,218,0 +170756260802,219,0 +170756260850,220,0 +170756260898,219,0 +170756260945,220,0 +170756260993,221,0 +170756261041,223,0 +170756261089,224,0 +170756261137,223,0 +170756261185,223,0 +170756261233,223,0 +170756261280,224,0 +170756261328,224,0 +170756261376,224,0 +170756261424,223,0 +170756261472,216,0 +170756261520,215,0 +170756261567,216,0 +170756261617,217,0 +170756261665,218,0 +170756261713,219,0 +170756261760,219,0 +170756261808,218,0 +170756261856,220,0 +170756261904,222,0 +170756261952,222,0 +170756262000,223,0 +170756262048,223,0 +170756262095,223,0 +170756262143,225,0 +170756262191,225,0 +170756262239,224,0 +170756262288,225,0 +170756262336,222,0 +170756262384,218,0 +170756262432,215,0 +170756262479,215,0 +170756262529,216,0 +170756262577,217,0 +170756262625,216,0 +170756262672,217,0 +170756262720,217,0 +170756262768,218,0 +170756262816,219,0 +170756262864,220,0 +170756262912,219,0 +170756262959,219,0 +170756263007,222,0 +170756263057,221,0 +170756263104,220,0 +170756263154,222,0 +170756263202,222,0 +170756263251,222,0 +170756263299,222,0 +170756263347,215,0 +170756263395,215,0 +170756263443,216,0 +170756263491,216,0 +170756263539,217,0 +170756263588,216,0 +170756263636,217,0 +170756263684,218,0 +170756263732,219,0 +170756263780,219,0 +170756263829,220,0 +170756263879,220,0 +170756263928,221,0 +170756263976,222,0 +170756264024,222,0 +170756264074,222,0 +170756264122,223,0 +170756264171,222,0 +170756264219,222,0 +170756264269,215,0 +170756264318,215,0 +170756264368,216,0 +170756264417,216,0 +170756264467,217,0 +170756264515,218,0 +170756264564,218,0 +170756264612,218,0 +170756264662,220,0 +170756264710,220,0 +170756264758,220,0 +170756264807,222,0 +170756264855,221,0 +170756264903,222,0 +170756264951,223,0 +170756264999,223,0 +170756265048,222,0 +170756265096,223,0 +170756265144,221,0 +170756265192,215,0 +170756265240,215,0 +170756265288,216,0 +170756265336,216,0 +170756265386,218,0 +170756265434,218,0 +170756265482,219,0 +170756265531,219,0 +170756265581,220,0 +170756265629,221,0 +170756265678,221,0 +170756265726,221,0 +170756265774,222,0 +170756265822,221,0 +170756265870,222,0 +170756265918,222,0 +170756265966,222,0 +170756266015,222,0 +170756266063,222,0 +170756266113,215,0 +170756266162,214,0 +170756266212,215,0 +170756266262,216,0 +170756266311,217,0 +170756266361,217,0 +170756266410,218,0 +170756266458,219,0 +170756266506,219,0 +170756266554,221,0 +170756266602,221,0 +170756266650,221,0 +170756266698,222,0 +170756266747,222,0 +170756266795,222,0 +170756266845,222,0 +170756266894,222,0 +170756266944,222,0 +170756266993,222,0 +170756267043,215,0 +170756267092,214,0 +170756267140,214,0 +170756267188,216,0 +170756267236,217,0 +170756267284,217,0 +170756267332,217,0 +170756267380,218,0 +170756267428,218,0 +170756267476,219,0 +170756267524,219,0 +170756267572,219,0 +170756267620,221,0 +170756267668,221,0 +170756267717,221,0 +170756267765,222,0 +170756267813,221,0 +170756267861,223,0 +170756267909,222,0 +170756267957,216,0 +170756268005,214,0 +170756268053,215,0 +170756268100,215,0 +170756268148,216,0 +170756268196,216,0 +170756268244,217,0 +170756268294,217,0 +170756268342,218,0 +170756268389,219,0 +170756268437,220,0 +170756268485,220,0 +170756268533,221,0 +170756268581,222,0 +170756268630,221,0 +170756268678,222,0 +170756268726,223,0 +170756268775,221,0 +170756268823,221,0 +170756268871,215,0 +170756268919,214,0 +170756268967,214,0 +170756269014,214,0 +170756269062,215,0 +170756269110,214,0 +170756269158,214,0 +170756269206,215,0 +170756269254,215,0 +170756269301,215,0 +170756269349,215,0 +170756269397,215,0 +170756269445,216,0 +170756269493,216,0 +170756269541,216,0 +170756269588,217,0 +170756269636,216,0 +170756269684,217,0 +170756269732,218,0 +170756269780,217,0 +170756269828,214,0 +170756269876,215,0 +170756269924,216,0 +170756269971,216,0 +170756270019,216,0 +170756270067,217,0 +170756270115,217,0 +170756270164,218,0 +170756270212,218,0 +170756270260,219,0 +170756270308,220,0 +170756270356,220,0 +170756270404,221,0 +170756270452,221,0 +170756270501,221,0 +170756270549,222,0 +170756270597,221,0 +170756270644,221,0 +170756270692,222,0 +170756270740,215,0 +170756270790,214,0 +170756270837,215,0 +170756270885,215,0 +170756270933,216,0 +170756270981,216,0 +170756271030,218,0 +170756271078,218,0 +170756271126,219,0 +170756271174,219,0 +170756271222,220,0 +170756271269,220,0 +170756271319,221,0 +170756271367,221,0 +170756271415,222,0 +170756271462,222,0 +170756271510,222,0 +170756271558,222,0 +170756271606,222,0 +170756271654,215,0 +170756271702,214,0 +170756271752,215,0 +170756271800,216,0 +170756271849,216,0 +170756271897,218,0 +170756271945,218,0 +170756271993,219,0 +170756272041,218,0 +170756272089,219,0 +170756272139,221,0 +170756272186,220,0 +170756272234,222,0 +170756272284,222,0 +170756272334,221,0 +170756272381,222,0 +170756272429,222,0 +170756272477,222,0 +170756272525,222,0 +170756272575,214,0 +170756272623,215,0 +170756272673,216,0 +170756272722,216,0 +170756272770,217,0 +170756272818,217,0 +170756272866,218,0 +170756272914,218,0 +170756272962,219,0 +170756273010,219,0 +170756273058,220,0 +170756273107,216,0 +170756273155,221,0 +170756273203,221,0 +170756273251,225,0 +170756273301,223,0 +170756273349,222,0 +170756273398,222,0 +170756273446,222,0 +170756273494,216,0 +170756273542,215,0 +170756273589,215,0 +170756273637,217,0 +170756273685,217,0 +170756273734,217,0 +170756273782,217,0 +170756273830,218,0 +170756273878,218,0 +170756273927,218,0 +170756273975,219,0 +170756274023,220,0 +170756274071,221,0 +170756274119,220,0 +170756274167,221,0 +170756274215,222,0 +170756274263,223,0 +170756274310,223,0 +170756274358,224,0 +170756274406,224,0 +170756274454,223,0 +170756274502,224,0 +170756274552,223,0 +170756274600,223,0 +170756274648,223,0 +170756274696,223,0 +170756274743,222,0 +170756274791,222,0 +170756274839,222,0 +170756274887,216,0 +170756274935,216,0 +170756274983,217,0 +170756275033,217,0 +170756275081,218,0 +170756275129,218,0 +170756275177,219,0 +170756275225,220,0 +170756275274,220,0 +170756275322,221,0 +170756275370,222,0 +170756275419,221,0 +170756275469,222,0 +170756275517,222,0 +170756275566,222,0 +170756275614,222,0 +170756275662,222,0 +170756275712,222,0 +170756275759,222,0 +170756275807,215,0 +170756275855,215,0 +170756275905,215,0 +170756275952,216,0 +170756276002,217,0 +170756276051,217,0 +170756276101,218,0 +170756276148,219,0 +170756276196,219,0 +170756276244,219,0 +170756276292,220,0 +170756276340,222,0 +170756276388,219,0 +170756276436,220,0 +170756276483,222,0 +170756276531,223,0 +170756276581,222,0 +170756276629,221,0 +170756276676,221,0 +170756276724,216,0 +170756276774,215,0 +170756276821,214,0 +170756276869,215,0 +170756276917,215,0 +170756276965,216,0 +170756277013,216,0 +170756277061,217,0 +170756277108,218,0 +170756277156,218,0 +170756277204,219,0 +170756277252,219,0 +170756277300,220,0 +170756277349,221,0 +170756277397,222,0 +170756277445,222,0 +170756277493,223,0 +170756277542,223,0 +170756277592,222,0 +170756277640,218,0 +170756277689,214,0 +170756277739,214,0 +170756277787,215,0 +170756277835,215,0 +170756277884,215,0 +170756277934,216,0 +170756277982,216,0 +170756278030,216,0 +170756278078,217,0 +170756278126,218,0 +170756278174,219,0 +170756278221,219,0 +170756278271,220,0 +170756278319,221,0 +170756278367,222,0 +170756278415,223,0 +170756278463,222,0 +170756278511,222,0 +170756278559,217,0 +170756278607,214,0 +170756278655,214,0 +170756278703,214,0 +170756278751,215,0 +170756278798,215,0 +170756278846,216,0 +170756278894,216,0 +170756278944,216,0 +170756278992,215,0 +170756279041,218,0 +170756279090,218,0 +170756279140,219,0 +170756279188,220,0 +170756279236,222,0 +170756279284,221,0 +170756279332,220,0 +170756279382,221,0 +170756279431,221,0 +170756279481,219,0 +170756279529,215,0 +170756279578,215,0 +170756279628,215,0 +170756279677,216,0 +170756279727,217,0 +170756279776,217,0 +170756279826,218,0 +170756279874,218,0 +170756279922,219,0 +170756279971,220,0 +170756280019,220,0 diff --git a/laser_value/0210-21.csv b/laser_value/0210-21.csv new file mode 100644 index 0000000..2d788e7 --- /dev/null +++ b/laser_value/0210-21.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170756280069,220,0 +170756280119,222,0 +170756280167,222,0 +170756280215,221,0 +170756280264,222,0 +170756280312,222,0 +170756280362,222,0 +170756280411,222,0 +170756280459,214,0 +170756280508,216,0 +170756280558,216,0 +170756280608,216,0 +170756280657,217,0 +170756280705,218,0 +170756280754,218,0 +170756280802,219,0 +170756280850,221,0 +170756280898,220,0 +170756280946,221,0 +170756280994,221,0 +170756281042,222,0 +170756281090,223,0 +170756281140,222,0 +170756281188,223,0 +170756281236,222,0 +170756281284,223,0 +170756281333,222,0 +170756281383,215,0 +170756281431,215,0 +170756281479,216,0 +170756281528,216,0 +170756281576,217,0 +170756281624,218,0 +170756281673,219,0 +170756281723,220,0 +170756281771,219,0 +170756281819,220,0 +170756281867,221,0 +170756281915,221,0 +170756281963,221,0 +170756282012,222,0 +170756282060,223,0 +170756282108,222,0 +170756282156,221,0 +170756282206,221,0 +170756282255,222,0 +170756282303,215,0 +170756282353,215,0 +170756282400,215,0 +170756282450,216,0 +170756282498,216,0 +170756282546,216,0 +170756282594,217,0 +170756282643,218,0 +170756282693,218,0 +170756282742,219,0 +170756282790,222,0 +170756282840,220,0 +170756282888,222,0 +170756282937,222,0 +170756282985,222,0 +170756283035,223,0 +170756283083,223,0 +170756283131,223,0 +170756283180,223,0 +170756283228,215,0 +170756283276,216,0 +170756283324,216,0 +170756283374,217,0 +170756283421,218,0 +170756283471,219,0 +170756283519,220,0 +170756283567,218,0 +170756283615,221,0 +170756283664,219,0 +170756283714,220,0 +170756283763,222,0 +170756283811,222,0 +170756283861,222,0 +170756283909,223,0 +170756283957,223,0 +170756284005,224,0 +170756284053,223,0 +170756284103,222,0 +170756284152,215,0 +170756284200,215,0 +170756284250,215,0 +170756284298,216,0 +170756284346,216,0 +170756284395,218,0 +170756284444,217,0 +170756284494,217,0 +170756284542,219,0 +170756284590,219,0 +170756284639,219,0 +170756284687,221,0 +170756284735,222,0 +170756284783,221,0 +170756284831,221,0 +170756284879,222,0 +170756284929,223,0 +170756284978,223,0 +170756285028,221,0 +170756285077,215,0 +170756285125,215,0 +170756285175,216,0 +170756285223,216,0 +170756285272,217,0 +170756285322,218,0 +170756285371,218,0 +170756285419,219,0 +170756285467,221,0 +170756285517,220,0 +170756285565,221,0 +170756285614,221,0 +170756285664,222,0 +170756285713,222,0 +170756285761,222,0 +170756285811,223,0 +170756285860,222,0 +170756285908,222,0 +170756285956,222,0 +170756286004,217,0 +170756286054,217,0 +170756286101,218,0 +170756286149,219,0 +170756286199,219,0 +170756286247,219,0 +170756286295,220,0 +170756286343,220,0 +170756286391,221,0 +170756286440,221,0 +170756286488,222,0 +170756286536,222,0 +170756286586,222,0 +170756286635,222,0 +170756286683,223,0 +170756286733,222,0 +170756286782,223,0 +170756286830,222,0 +170756286878,221,0 +170756286926,218,0 +170756286974,218,0 +170756287023,219,0 +170756287073,219,0 +170756287121,221,0 +170756287169,220,0 +170756287217,220,0 +170756287266,221,0 +170756287314,222,0 +170756287364,221,0 +170756287411,223,0 +170756287461,222,0 +170756287509,223,0 +170756287558,223,0 +170756287606,223,0 +170756287654,222,0 +170756287702,222,0 +170756287750,223,0 +170756287798,222,0 +170756287846,219,0 +170756287894,218,0 +170756287942,218,0 +170756287991,218,0 +170756288041,220,0 +170756288089,221,0 +170756288138,220,0 +170756288186,220,0 +170756288234,221,0 +170756288282,222,0 +170756288329,221,0 +170756288377,222,0 +170756288425,219,0 +170756288473,222,0 +170756288521,222,0 +170756288571,222,0 +170756288620,222,0 +170756288670,223,0 +170756288718,221,0 +170756288767,217,0 +170756288815,216,0 +170756288863,216,0 +170756288911,217,0 +170756288959,218,0 +170756289007,218,0 +170756289055,219,0 +170756289103,220,0 +170756289152,220,0 +170756289200,220,0 +170756289250,221,0 +170756289298,222,0 +170756289346,222,0 +170756289394,222,0 +170756289441,223,0 +170756289491,222,0 +170756289540,222,0 +170756289588,222,0 +170756289636,222,0 +170756289685,216,0 +170756289733,214,0 +170756289781,215,0 +170756289829,217,0 +170756289877,217,0 +170756289925,217,0 +170756289973,217,0 +170756290021,218,0 +170756290069,218,0 +170756290116,218,0 +170756290164,220,0 +170756290212,220,0 +170756290260,219,0 +170756290308,221,0 +170756290356,221,0 +170756290404,222,0 +170756290451,221,0 +170756290499,222,0 +170756290547,222,0 +170756290595,222,0 +170756290643,215,0 +170756290691,214,0 +170756290739,214,0 +170756290787,215,0 +170756290834,215,0 +170756290882,217,0 +170756290930,216,0 +170756290978,217,0 +170756291026,217,0 +170756291074,218,0 +170756291122,219,0 +170756291170,220,0 +170756291218,221,0 +170756291267,221,0 +170756291315,222,0 +170756291365,222,0 +170756291413,221,0 +170756291461,222,0 +170756291508,221,0 +170756291556,215,0 +170756291604,214,0 +170756291654,214,0 +170756291702,215,0 +170756291750,216,0 +170756291799,217,0 +170756291847,217,0 +170756291896,219,0 +170756291946,218,0 +170756291995,219,0 +170756292043,220,0 +170756292093,220,0 +170756292142,221,0 +170756292190,225,0 +170756292238,221,0 +170756292286,223,0 +170756292334,223,0 +170756292382,222,0 +170756292430,222,0 +170756292478,215,0 +170756292528,214,0 +170756292576,214,0 +170756292625,216,0 +170756292675,216,0 +170756292723,216,0 +170756292772,220,0 +170756292822,217,0 +170756292871,219,0 +170756292919,219,0 +170756292969,219,0 +170756293016,220,0 +170756293064,221,0 +170756293112,222,0 +170756293160,221,0 +170756293208,223,0 +170756293258,222,0 +170756293307,222,0 +170756293357,222,0 +170756293405,215,0 +170756293454,214,0 +170756293502,214,0 +170756293550,215,0 +170756293598,215,0 +170756293646,217,0 +170756293694,216,0 +170756293742,218,0 +170756293790,218,0 +170756293839,219,0 +170756293887,220,0 +170756293935,220,0 +170756293983,221,0 +170756294031,220,0 +170756294079,221,0 +170756294127,222,0 +170756294177,222,0 +170756294224,222,0 +170756294272,222,0 +170756294320,216,0 +170756294368,214,0 +170756294418,215,0 +170756294466,215,0 +170756294515,216,0 +170756294565,216,0 +170756294613,218,0 +170756294661,217,0 +170756294709,218,0 +170756294757,218,0 +170756294806,219,0 +170756294854,221,0 +170756294902,221,0 +170756294950,221,0 +170756294998,220,0 +170756295046,222,0 +170756295094,222,0 +170756295143,222,0 +170756295191,222,0 +170756295239,216,0 +170756295287,214,0 +170756295335,215,0 +170756295384,215,0 +170756295432,216,0 +170756295480,217,0 +170756295528,217,0 +170756295576,217,0 +170756295624,218,0 +170756295673,219,0 +170756295723,220,0 +170756295771,219,0 +170756295820,220,0 +170756295868,220,0 +170756295918,221,0 +170756295966,222,0 +170756296015,221,0 +170756296063,222,0 +170756296111,221,0 +170756296159,216,0 +170756296207,215,0 +170756296255,215,0 +170756296304,217,0 +170756296352,217,0 +170756296402,217,0 +170756296450,217,0 +170756296498,218,0 +170756296547,218,0 +170756296595,219,0 +170756296643,219,0 +170756296691,220,0 +170756296739,221,0 +170756296786,221,0 +170756296834,221,0 +170756296882,221,0 +170756296932,223,0 +170756296980,223,0 +170756297028,222,0 +170756297077,222,0 +170756297125,214,0 +170756297174,214,0 +170756297222,215,0 +170756297270,216,0 +170756297318,216,0 +170756297366,217,0 +170756297414,217,0 +170756297462,218,0 +170756297511,218,0 +170756297559,219,0 +170756297607,220,0 +170756297655,222,0 +170756297702,222,0 +170756297750,222,0 +170756297798,221,0 +170756297846,223,0 +170756297894,222,0 +170756297942,223,0 +170756297989,222,0 +170756298037,214,0 +170756298085,214,0 +170756298133,214,0 +170756298181,215,0 +170756298230,216,0 +170756298278,216,0 +170756298326,217,0 +170756298374,218,0 +170756298423,219,0 +170756298471,219,0 +170756298519,219,0 +170756298567,221,0 +170756298616,221,0 +170756298664,221,0 +170756298714,222,0 +170756298763,223,0 +170756298813,222,0 +170756298861,222,0 +170756298909,222,0 +170756298957,215,0 +170756299004,214,0 +170756299052,215,0 +170756299102,215,0 +170756299150,216,0 +170756299198,217,0 +170756299247,217,0 +170756299297,218,0 +170756299346,218,0 +170756299394,218,0 +170756299444,220,0 +170756299492,221,0 +170756299540,221,0 +170756299589,222,0 +170756299637,222,0 +170756299685,222,0 +170756299735,222,0 +170756299783,222,0 +170756299832,222,0 +170756299880,216,0 +170756299928,215,0 +170756299976,216,0 +170756300024,217,0 +170756300074,217,0 +170756300121,218,0 +170756300169,218,0 +170756300219,219,0 +170756300269,219,0 +170756300318,219,0 +170756300366,220,0 +170756300414,220,0 +170756300462,221,0 +170756300512,222,0 +170756300559,222,0 +170756300607,222,0 +170756300655,226,0 +170756300705,223,0 +170756300753,222,0 +170756300801,217,0 +170756300849,216,0 +170756300898,217,0 +170756300946,218,0 +170756300996,218,0 +170756301044,218,0 +170756301092,219,0 +170756301140,220,0 +170756301187,219,0 +170756301235,219,0 +170756301283,221,0 +170756301331,221,0 +170756301379,223,0 +170756301427,224,0 +170756301474,222,0 +170756301522,222,0 +170756301570,223,0 +170756301618,223,0 +170756301667,224,0 +170756301717,217,0 +170756301767,218,0 +170756301815,219,0 +170756301862,219,0 +170756301912,221,0 +170756301960,220,0 +170756302009,221,0 +170756302057,221,0 +170756302105,222,0 +170756302153,224,0 +170756302201,222,0 +170756302249,223,0 +170756302299,225,0 +170756302348,223,0 +170756302396,223,0 +170756302444,224,0 +170756302492,223,0 +170756302542,222,0 +170756302590,223,0 +170756302638,217,0 +170756302685,219,0 +170756302735,220,0 +170756302783,221,0 +170756302832,221,0 +170756302880,221,0 +170756302930,222,0 +170756302978,222,0 +170756303026,223,0 +170756303075,222,0 +170756303123,223,0 +170756303171,223,0 +170756303219,223,0 +170756303267,224,0 +170756303315,223,0 +170756303363,224,0 +170756303412,223,0 +170756303462,222,0 +170756303510,222,0 +170756303558,217,0 +170756303606,216,0 +170756303655,217,0 +170756303703,218,0 +170756303753,219,0 +170756303802,220,0 +170756303852,220,0 +170756303902,222,0 +170756303949,222,0 +170756303997,222,0 +170756304045,222,0 +170756304093,222,0 +170756304141,223,0 +170756304189,223,0 +170756304237,225,0 +170756304285,223,0 +170756304334,222,0 +170756304382,224,0 +170756304431,223,0 +170756304479,220,0 +170756304527,214,0 +170756304575,214,0 +170756304623,214,0 +170756304671,214,0 +170756304718,214,0 +170756304766,215,0 +170756304814,216,0 +170756304864,216,0 +170756304912,217,0 +170756304961,218,0 +170756305009,218,0 +170756305059,218,0 +170756305108,219,0 +170756305156,219,0 +170756305204,220,0 +170756305254,221,0 +170756305301,221,0 +170756305349,222,0 +170756305399,222,0 +170756305447,215,0 +170756305495,215,0 +170756305543,216,0 +170756305592,217,0 +170756305640,217,0 +170756305688,217,0 +170756305736,218,0 +170756305784,219,0 +170756305834,219,0 +170756305883,220,0 +170756305933,221,0 +170756305981,221,0 +170756306029,223,0 +170756306078,222,0 +170756306128,222,0 +170756306177,222,0 +170756306225,225,0 +170756306273,222,0 +170756306323,223,0 +170756306372,215,0 +170756306420,215,0 +170756306470,215,0 +170756306519,216,0 +170756306567,217,0 +170756306615,217,0 +170756306663,218,0 +170756306711,218,0 +170756306760,219,0 +170756306808,220,0 +170756306856,221,0 +170756306904,222,0 +170756306952,222,0 +170756307002,222,0 +170756307051,222,0 +170756307101,222,0 +170756307150,222,0 +170756307198,221,0 +170756307247,222,0 +170756307295,215,0 +170756307343,215,0 +170756307391,215,0 +170756307439,216,0 +170756307487,217,0 +170756307535,217,0 +170756307583,218,0 +170756307631,219,0 +170756307679,219,0 +170756307727,220,0 +170756307776,220,0 +170756307824,221,0 +170756307874,222,0 +170756307922,222,0 +170756307970,222,0 +170756308017,223,0 +170756308065,222,0 +170756308113,222,0 +170756308163,222,0 +170756308212,215,0 +170756308260,214,0 +170756308310,214,0 +170756308359,215,0 +170756308409,216,0 +170756308458,216,0 +170756308506,217,0 +170756308554,218,0 +170756308602,219,0 +170756308650,219,0 +170756308698,220,0 +170756308746,221,0 +170756308794,221,0 +170756308843,222,0 +170756308891,222,0 +170756308939,225,0 +170756308989,224,0 +170756309038,222,0 +170756309086,222,0 +170756309134,215,0 +170756309184,214,0 +170756309233,216,0 +170756309281,216,0 +170756309329,216,0 +170756309379,217,0 +170756309427,218,0 +170756309475,218,0 +170756309522,219,0 +170756309570,219,0 +170756309618,220,0 +170756309668,220,0 +170756309716,222,0 +170756309765,222,0 +170756309813,222,0 +170756309861,221,0 +170756309909,223,0 +170756309957,222,0 +170756310005,223,0 +170756310055,216,0 +170756310103,215,0 +170756310152,215,0 +170756310202,215,0 +170756310249,216,0 +170756310299,217,0 +170756310347,217,0 +170756310396,218,0 +170756310444,219,0 +170756310492,218,0 +170756310540,219,0 +170756310588,219,0 +170756310635,219,0 +170756310683,221,0 +170756310731,221,0 +170756310779,221,0 +170756310827,222,0 +170756310875,221,0 +170756310923,221,0 +170756310971,219,0 +170756311018,214,0 +170756311068,215,0 +170756311116,215,0 +170756311164,216,0 +170756311211,217,0 +170756311259,217,0 +170756311307,218,0 +170756311355,219,0 +170756311403,219,0 +170756311451,220,0 +170756311498,220,0 +170756311546,221,0 +170756311596,220,0 +170756311644,221,0 +170756311692,222,0 +170756311740,221,0 +170756311788,221,0 +170756311836,222,0 +170756311883,221,0 +170756311933,214,0 +170756311981,214,0 +170756312030,215,0 +170756312080,215,0 +170756312130,216,0 +170756312179,217,0 +170756312229,217,0 +170756312277,218,0 +170756312325,218,0 +170756312373,218,0 +170756312422,220,0 +170756312470,219,0 +170756312520,220,0 +170756312569,221,0 +170756312617,221,0 +170756312667,223,0 +170756312715,222,0 +170756312764,221,0 +170756312812,222,0 +170756312861,215,0 +170756312909,214,0 +170756312957,214,0 +170756313007,215,0 +170756313055,215,0 +170756313104,215,0 +170756313154,216,0 +170756313203,217,0 +170756313251,217,0 +170756313301,218,0 +170756313350,219,0 +170756313400,219,0 +170756313449,221,0 +170756313497,222,0 +170756313545,221,0 +170756313595,221,0 +170756313643,223,0 +170756313691,222,0 +170756313739,221,0 +170756313788,215,0 +170756313838,214,0 +170756313887,214,0 +170756313937,215,0 +170756313985,214,0 +170756314033,215,0 +170756314081,214,0 +170756314129,216,0 +170756314177,216,0 +170756314225,217,0 +170756314272,218,0 +170756314320,219,0 +170756314368,220,0 +170756314416,220,0 +170756314466,221,0 +170756314514,221,0 +170756314562,221,0 +170756314611,222,0 +170756314659,223,0 +170756314707,215,0 +170756314755,214,0 +170756314805,217,0 +170756314854,215,0 +170756314902,215,0 +170756314950,216,0 +170756315000,217,0 +170756315049,218,0 +170756315099,218,0 +170756315147,219,0 +170756315195,219,0 +170756315243,220,0 +170756315292,220,0 +170756315340,219,0 +170756315388,221,0 +170756315437,222,0 +170756315485,223,0 +170756315533,222,0 +170756315581,222,0 +170756315629,216,0 +170756315679,214,0 +170756315728,215,0 +170756315776,216,0 +170756315826,216,0 +170756315874,217,0 +170756315922,217,0 +170756315970,217,0 +170756316017,218,0 +170756316065,218,0 +170756316113,220,0 +170756316163,219,0 +170756316212,219,0 +170756316262,220,0 +170756316310,220,0 +170756316359,220,0 +170756316409,222,0 +170756316457,221,0 +170756316506,223,0 +170756316554,216,0 +170756316602,215,0 +170756316650,215,0 +170756316700,217,0 +170756316748,217,0 +170756316797,218,0 +170756316845,218,0 +170756316895,218,0 +170756316944,218,0 +170756316992,219,0 +170756317040,219,0 +170756317088,221,0 +170756317136,222,0 +170756317184,230,0 +170756317232,225,0 +170756317280,223,0 +170756317329,223,0 +170756317377,222,0 +170756317425,222,0 +170756317475,215,0 +170756317524,215,0 +170756317572,215,0 +170756317620,217,0 +170756317670,217,0 +170756317717,219,0 +170756317765,218,0 +170756317813,218,0 +170756317861,219,0 +170756317909,221,0 +170756317957,221,0 +170756318005,221,0 +170756318053,222,0 +170756318102,223,0 +170756318150,223,0 +170756318198,223,0 +170756318246,223,0 +170756318296,222,0 +170756318345,222,0 +170756318395,221,0 +170756318443,215,0 +170756318492,215,0 +170756318542,216,0 +170756318591,217,0 +170756318639,218,0 +170756318687,218,0 +170756318735,218,0 +170756318783,220,0 +170756318831,220,0 +170756318879,220,0 +170756318927,221,0 +170756318975,222,0 +170756319023,221,0 +170756319071,222,0 +170756319119,222,0 +170756319168,222,0 +170756319218,222,0 +170756319266,222,0 +170756319314,221,0 +170756319363,215,0 +170756319413,215,0 +170756319461,216,0 +170756319509,216,0 +170756319557,216,0 +170756319606,217,0 +170756319654,218,0 +170756319702,218,0 +170756319750,218,0 +170756319800,219,0 +170756319848,220,0 +170756319896,221,0 +170756319944,222,0 +170756319993,221,0 +170756320043,221,0 +170756320091,222,0 +170756320138,222,0 +170756320188,222,0 +170756320238,221,0 +170756320287,215,0 +170756320336,214,0 +170756320384,215,0 +170756320432,216,0 +170756320480,216,0 +170756320528,216,0 +170756320578,217,0 +170756320626,218,0 +170756320673,220,0 +170756320721,220,0 +170756320769,221,0 +170756320817,221,0 +170756320865,222,0 +170756320915,222,0 +170756320963,223,0 +170756321011,223,0 +170756321059,222,0 +170756321107,222,0 +170756321155,222,0 +170756321203,215,0 +170756321250,215,0 +170756321298,215,0 +170756321346,216,0 +170756321396,217,0 +170756321444,217,0 +170756321492,218,0 +170756321539,218,0 +170756321587,219,0 +170756321637,219,0 +170756321685,220,0 +170756321733,221,0 +170756321781,221,0 +170756321829,223,0 +170756321877,222,0 +170756321925,224,0 +170756321973,222,0 +170756322021,223,0 +170756322070,222,0 +170756322120,217,0 +170756322168,216,0 +170756322216,216,0 +170756322264,217,0 +170756322313,217,0 +170756322361,218,0 +170756322409,218,0 +170756322457,219,0 +170756322505,219,0 +170756322553,220,0 +170756322601,220,0 +170756322649,221,0 +170756322697,222,0 +170756322745,222,0 +170756322794,221,0 +170756322844,222,0 +170756322892,222,0 +170756322939,222,0 +170756322987,222,0 +170756323035,217,0 +170756323083,216,0 +170756323131,217,0 +170756323179,217,0 +170756323227,218,0 +170756323277,218,0 +170756323326,219,0 +170756323374,219,0 +170756323422,219,0 +170756323470,221,0 +170756323520,220,0 +170756323569,222,0 +170756323618,221,0 +170756323666,223,0 +170756323714,223,0 +170756323762,222,0 +170756323810,224,0 +170756323858,222,0 +170756323907,222,0 +170756323957,216,0 +170756324005,216,0 +170756324054,216,0 +170756324102,218,0 +170756324152,218,0 +170756324200,219,0 +170756324248,219,0 +170756324297,222,0 +170756324347,220,0 +170756324395,222,0 +170756324442,222,0 +170756324490,222,0 +170756324538,223,0 +170756324586,223,0 +170756324636,222,0 +170756324685,222,0 +170756324733,223,0 +170756324783,223,0 +170756324831,222,0 +170756324879,220,0 +170756324927,216,0 +170756324974,216,0 +170756325022,217,0 +170756325072,217,0 +170756325120,219,0 +170756325168,219,0 +170756325217,220,0 +170756325265,220,0 +170756325313,222,0 +170756325361,222,0 +170756325409,223,0 +170756325458,222,0 +170756325508,224,0 +170756325556,223,0 +170756325604,222,0 +170756325652,223,0 +170756325701,223,0 +170756325749,222,0 +170756325797,221,0 +170756325845,215,0 +170756325893,215,0 +170756325941,215,0 +170756325990,216,0 +170756326040,217,0 +170756326090,218,0 +170756326137,218,0 +170756326185,219,0 +170756326233,219,0 +170756326281,221,0 +170756326331,221,0 +170756326380,221,0 +170756326428,223,0 +170756326476,223,0 +170756326524,223,0 +170756326572,222,0 +170756326620,223,0 +170756326668,223,0 +170756326718,224,0 +170756326766,215,0 +170756326814,214,0 +170756326863,215,0 +170756326913,216,0 +170756326962,216,0 +170756327012,217,0 +170756327060,219,0 +170756327108,218,0 +170756327156,219,0 +170756327204,219,0 +170756327252,220,0 +170756327301,222,0 +170756327350,221,0 +170756327400,222,0 +170756327448,222,0 +170756327496,222,0 +170756327545,223,0 +170756327595,223,0 +170756327645,221,0 +170756327692,215,0 +170756327742,214,0 +170756327791,214,0 +170756327839,215,0 +170756327889,215,0 +170756327937,216,0 +170756327985,217,0 +170756328033,217,0 +170756328081,217,0 +170756328130,218,0 +170756328178,218,0 +170756328228,219,0 +170756328275,220,0 +170756328325,221,0 +170756328373,221,0 +170756328422,222,0 +170756328472,223,0 +170756328520,223,0 +170756328568,222,0 +170756328618,215,0 +170756328666,214,0 +170756328715,216,0 +170756328765,216,0 +170756328813,217,0 +170756328860,217,0 +170756328910,218,0 +170756328958,218,0 +170756329006,219,0 +170756329056,220,0 +170756329104,220,0 +170756329151,220,0 +170756329199,221,0 +170756329249,222,0 +170756329299,222,0 +170756329348,222,0 +170756329396,222,0 +170756329444,222,0 +170756329494,221,0 +170756329543,219,0 +170756329591,219,0 +170756329640,220,0 +170756329690,220,0 +170756329740,220,0 +170756329787,221,0 +170756329835,222,0 +170756329883,222,0 +170756329931,222,0 +170756329979,222,0 +170756330027,223,0 +170756330075,222,0 +170756330123,222,0 +170756330173,222,0 +170756330221,224,0 +170756330270,222,0 +170756330318,222,0 +170756330368,222,0 +170756330416,222,0 +170756330464,219,0 +170756330512,220,0 +170756330561,219,0 +170756330609,219,0 +170756330659,220,0 +170756330708,222,0 +170756330758,221,0 +170756330807,221,0 +170756330855,221,0 +170756330903,221,0 +170756330951,222,0 +170756330999,225,0 +170756331047,224,0 +170756331095,223,0 +170756331144,223,0 +170756331192,222,0 +170756331242,222,0 +170756331290,223,0 +170756331338,222,0 +170756331387,217,0 +170756331435,217,0 +170756331483,218,0 +170756331533,219,0 +170756331582,219,0 +170756331630,219,0 +170756331680,228,0 +170756331729,221,0 +170756331779,221,0 +170756331827,222,0 +170756331875,221,0 +170756331923,222,0 +170756331971,223,0 +170756332020,223,0 +170756332070,223,0 +170756332119,223,0 +170756332167,222,0 +170756332217,222,0 +170756332266,221,0 +170756332316,219,0 +170756332365,218,0 +170756332415,219,0 +170756332464,219,0 +170756332514,220,0 +170756332564,219,0 +170756332611,220,0 +170756332659,222,0 +170756332709,222,0 +170756332759,222,0 +170756332806,223,0 +170756332854,222,0 +170756332902,223,0 +170756332950,224,0 +170756332998,224,0 +170756333048,223,0 +170756333095,223,0 +170756333143,222,0 +170756333191,221,0 +170756333241,216,0 +170756333289,216,0 +170756333337,217,0 +170756333386,218,0 +170756333434,217,0 +170756333482,218,0 +170756333530,218,0 +170756333578,219,0 +170756333627,221,0 +170756333675,222,0 +170756333725,222,0 +170756333773,222,0 +170756333823,222,0 +170756333872,223,0 +170756333922,222,0 +170756333970,224,0 +170756334019,224,0 +170756334067,223,0 +170756334115,222,0 +170756334164,215,0 +170756334212,214,0 +170756334260,215,0 +170756334308,215,0 +170756334356,217,0 +170756334404,217,0 +170756334454,218,0 +170756334502,218,0 +170756334549,220,0 +170756334599,219,0 +170756334647,220,0 +170756334696,221,0 +170756334744,222,0 +170756334792,223,0 +170756334840,223,0 +170756334890,224,0 +170756334939,223,0 +170756334987,222,0 +170756335035,222,0 +170756335083,215,0 +170756335131,214,0 +170756335179,214,0 +170756335229,215,0 +170756335277,216,0 +170756335325,216,0 +170756335374,217,0 +170756335424,218,0 +170756335472,218,0 +170756335519,219,0 +170756335569,220,0 +170756335617,220,0 +170756335665,221,0 +170756335714,221,0 +170756335762,221,0 +170756335812,222,0 +170756335860,222,0 +170756335908,223,0 +170756335956,222,0 +170756336004,215,0 +170756336052,214,0 +170756336100,214,0 +170756336148,215,0 +170756336196,216,0 +170756336244,216,0 +170756336292,217,0 +170756336341,217,0 +170756336389,217,0 +170756336437,218,0 +170756336485,218,0 +170756336533,219,0 +170756336582,220,0 +170756336632,220,0 +170756336680,220,0 +170756336728,222,0 +170756336778,222,0 +170756336825,222,0 +170756336873,223,0 +170756336921,217,0 +170756336971,214,0 +170756337019,214,0 +170756337067,214,0 +170756337116,215,0 +170756337166,216,0 +170756337215,216,0 +170756337263,216,0 +170756337313,218,0 +170756337361,217,0 +170756337410,219,0 +170756337458,220,0 +170756337506,220,0 +170756337554,220,0 +170756337604,221,0 +170756337652,220,0 +170756337699,221,0 +170756337747,220,0 +170756337797,222,0 +170756337845,222,0 +170756337893,215,0 +170756337941,214,0 +170756337988,214,0 +170756338038,215,0 +170756338086,215,0 +170756338133,216,0 +170756338181,216,0 +170756338229,217,0 +170756338277,218,0 +170756338325,218,0 +170756338373,219,0 +170756338421,219,0 +170756338469,221,0 +170756338518,222,0 +170756338566,221,0 +170756338614,222,0 +170756338662,222,0 +170756338710,221,0 +170756338758,222,0 +170756338807,216,0 +170756338857,214,0 +170756338906,214,0 +170756338956,215,0 +170756339005,216,0 +170756339053,216,0 +170756339101,217,0 +170756339149,217,0 +170756339197,217,0 +170756339245,218,0 +170756339293,219,0 +170756339341,219,0 +170756339390,220,0 +170756339438,221,0 +170756339488,222,0 +170756339537,221,0 +170756339585,222,0 +170756339634,221,0 +170756339682,222,0 +170756339730,216,0 +170756339778,214,0 +170756339828,214,0 +170756339877,214,0 +170756339927,215,0 +170756339975,216,0 +170756340024,217,0 +170756340072,217,0 +170756340120,218,0 +170756340169,217,0 +170756340219,218,0 +170756340267,219,0 +170756340316,220,0 +170756340364,221,0 +170756340412,221,0 +170756340462,221,0 +170756340510,220,0 +170756340558,221,0 +170756340605,222,0 +170756340655,216,0 +170756340705,214,0 +170756340754,214,0 +170756340802,214,0 +170756340850,215,0 +170756340900,215,0 +170756340949,216,0 +170756340997,217,0 +170756341045,217,0 +170756341093,217,0 +170756341141,218,0 +170756341190,218,0 +170756341240,219,0 +170756341288,219,0 +170756341337,221,0 +170756341385,221,0 +170756341433,224,0 +170756341481,221,0 +170756341531,221,0 +170756341579,219,0 +170756341627,214,0 +170756341674,214,0 +170756341724,214,0 +170756341772,215,0 +170756341820,216,0 +170756341868,216,0 +170756341917,217,0 +170756341967,217,0 +170756342015,218,0 +170756342063,218,0 +170756342111,220,0 +170756342159,220,0 +170756342206,221,0 +170756342254,221,0 +170756342302,224,0 +170756342350,222,0 +170756342400,224,0 +170756342448,222,0 +170756342496,222,0 +170756342544,214,0 +170756342593,214,0 +170756342641,215,0 +170756342690,216,0 +170756342738,216,0 +170756342788,217,0 +170756342836,218,0 +170756342885,218,0 +170756342933,219,0 +170756342981,219,0 +170756343029,221,0 +170756343079,221,0 +170756343126,221,0 +170756343176,222,0 +170756343224,222,0 +170756343272,222,0 +170756343321,223,0 +170756343369,223,0 +170756343417,221,0 +170756343465,214,0 +170756343513,214,0 +170756343563,214,0 +170756343612,215,0 +170756343660,216,0 +170756343710,216,0 +170756343758,217,0 +170756343806,218,0 +170756343855,219,0 +170756343905,219,0 +170756343952,219,0 +170756344000,220,0 +170756344050,222,0 +170756344098,221,0 +170756344146,222,0 +170756344194,222,0 +170756344243,222,0 +170756344291,222,0 +170756344341,222,0 +170756344388,215,0 +170756344438,214,0 +170756344486,214,0 +170756344534,215,0 +170756344582,215,0 +170756344629,216,0 +170756344677,216,0 +170756344725,217,0 +170756344773,218,0 +170756344823,218,0 +170756344872,219,0 +170756344922,219,0 +170756344971,220,0 +170756345021,220,0 +170756345070,221,0 +170756345120,221,0 +170756345169,221,0 +170756345217,221,0 +170756345265,222,0 +170756345315,217,0 +170756345364,216,0 +170756345414,217,0 +170756345462,218,0 +170756345511,218,0 +170756345561,219,0 +170756345610,219,0 +170756345658,219,0 +170756345706,220,0 +170756345754,220,0 +170756345804,221,0 +170756345853,222,0 +170756345903,223,0 +170756345952,223,0 +170756346000,223,0 +170756346048,223,0 +170756346096,223,0 +170756346146,223,0 +170756346194,222,0 +170756346242,219,0 +170756346290,219,0 +170756346339,220,0 +170756346387,220,0 +170756346435,220,0 +170756346483,221,0 +170756346531,222,0 +170756346579,222,0 +170756346628,223,0 +170756346678,223,0 +170756346727,226,0 +170756346775,223,0 +170756346825,223,0 +170756346873,224,0 +170756346921,224,0 +170756346970,223,0 +170756347018,223,0 +170756347066,222,0 +170756347116,223,0 +170756347163,218,0 +170756347211,219,0 +170756347261,219,0 +170756347310,219,0 +170756347358,220,0 +170756347406,220,0 +170756347454,221,0 +170756347502,222,0 +170756347550,222,0 +170756347599,223,0 +170756347647,222,0 +170756347695,223,0 +170756347743,223,0 +170756347793,223,0 +170756347842,224,0 +170756347890,223,0 +170756347939,224,0 +170756347989,223,0 +170756348037,223,0 +170756348086,216,0 +170756348134,216,0 +170756348182,216,0 +170756348230,217,0 +170756348278,218,0 +170756348326,218,0 +170756348374,219,0 +170756348423,219,0 +170756348471,219,0 +170756348521,220,0 +170756348569,221,0 +170756348618,222,0 +170756348666,222,0 +170756348714,223,0 +170756348764,222,0 +170756348812,222,0 +170756348859,222,0 +170756348909,222,0 +170756348958,222,0 +170756349006,216,0 +170756349056,215,0 +170756349105,215,0 +170756349155,215,0 +170756349204,216,0 +170756349252,216,0 +170756349302,216,0 +170756349352,217,0 +170756349400,219,0 +170756349447,219,0 +170756349497,219,0 +170756349545,219,0 +170756349593,220,0 +170756349641,221,0 +170756349690,222,0 +170756349738,221,0 +170756349786,221,0 +170756349836,222,0 +170756349883,222,0 +170756349931,215,0 +170756349979,214,0 +170756350027,215,0 +170756350075,216,0 +170756350123,217,0 +170756350171,217,0 +170756350220,218,0 +170756350268,220,0 +170756350318,219,0 +170756350366,220,0 +170756350414,221,0 +170756350461,221,0 +170756350509,222,0 +170756350559,223,0 +170756350608,221,0 +170756350658,222,0 +170756350706,224,0 +170756350754,222,0 +170756350803,222,0 +170756350851,220,0 +170756350899,218,0 +170756350947,217,0 +170756350996,218,0 +170756351046,218,0 +170756351094,220,0 +170756351143,219,0 +170756351191,220,0 +170756351241,220,0 +170756351289,221,0 +170756351337,222,0 +170756351385,221,0 +170756351434,221,0 +170756351482,222,0 +170756351530,221,0 +170756351578,222,0 +170756351626,222,0 +170756351675,223,0 +170756351723,222,0 +170756351773,221,0 +170756351821,217,0 +170756351869,217,0 +170756351918,218,0 +170756351966,219,0 +170756352014,219,0 +170756352062,220,0 +170756352110,220,0 +170756352158,220,0 +170756352208,219,0 +170756352257,222,0 +170756352305,221,0 +170756352353,222,0 +170756352401,222,0 +170756352451,222,0 +170756352500,222,0 +170756352548,222,0 +170756352596,222,0 +170756352644,222,0 +170756352692,222,0 +170756352740,216,0 +170756352788,216,0 +170756352836,217,0 +170756352886,217,0 +170756352935,221,0 +170756352983,219,0 +170756353031,220,0 +170756353079,220,0 +170756353127,221,0 +170756353175,220,0 +170756353224,220,0 +170756353272,221,0 +170756353320,223,0 +170756353370,222,0 +170756353418,222,0 +170756353466,223,0 +170756353514,221,0 +170756353561,222,0 +170756353609,222,0 +170756353659,215,0 +170756353708,215,0 +170756353758,216,0 +170756353806,218,0 +170756353854,217,0 +170756353902,217,0 +170756353950,219,0 +170756353998,218,0 +170756354045,220,0 +170756354093,220,0 +170756354141,220,0 +170756354189,221,0 +170756354237,222,0 +170756354285,223,0 +170756354333,223,0 +170756354381,223,0 +170756354429,225,0 +170756354477,223,0 +170756354526,222,0 +170756354576,216,0 +170756354626,214,0 +170756354674,215,0 +170756354723,215,0 +170756354773,216,0 +170756354821,216,0 +170756354869,217,0 +170756354916,217,0 +170756354964,217,0 +170756355012,219,0 +170756355060,219,0 +170756355108,221,0 +170756355157,220,0 +170756355205,221,0 +170756355253,221,0 +170756355301,221,0 +170756355350,222,0 +170756355398,222,0 +170756355446,222,0 +170756355496,216,0 +170756355544,214,0 +170756355593,214,0 +170756355641,214,0 +170756355689,214,0 +170756355737,215,0 +170756355787,215,0 +170756355835,215,0 +170756355882,216,0 +170756355930,217,0 +170756355980,217,0 +170756356029,217,0 +170756356077,220,0 +170756356125,220,0 +170756356173,220,0 +170756356221,220,0 +170756356271,221,0 +170756356319,221,0 +170756356367,222,0 +170756356415,215,0 +170756356462,214,0 +170756356510,214,0 +170756356558,214,0 +170756356606,215,0 +170756356654,216,0 +170756356702,216,0 +170756356750,216,0 +170756356799,217,0 +170756356847,218,0 +170756356895,218,0 +170756356943,219,0 +170756356991,221,0 +170756357040,221,0 +170756357088,221,0 +170756357136,220,0 +170756357186,221,0 +170756357235,221,0 +170756357285,222,0 +170756357333,222,0 +170756357382,214,0 +170756357432,214,0 +170756357480,215,0 +170756357528,216,0 +170756357577,216,0 +170756357625,216,0 +170756357675,217,0 +170756357724,218,0 +170756357774,218,0 +170756357822,220,0 +170756357871,220,0 +170756357921,220,0 +170756357970,221,0 +170756358020,221,0 +170756358069,222,0 +170756358117,222,0 +170756358165,222,0 +170756358213,222,0 +170756358263,222,0 +170756358310,215,0 +170756358360,214,0 +170756358409,215,0 +170756358457,215,0 +170756358507,216,0 +170756358555,216,0 +170756358603,217,0 +170756358651,217,0 +170756358700,219,0 +170756358750,218,0 +170756358800,220,0 +170756358849,220,0 +170756358899,220,0 +170756358948,222,0 +170756358996,222,0 +170756359044,221,0 +170756359092,221,0 +170756359142,221,0 +170756359191,222,0 +170756359241,215,0 +170756359290,214,0 +170756359338,215,0 +170756359388,216,0 +170756359437,217,0 +170756359487,218,0 +170756359535,218,0 +170756359583,218,0 +170756359632,219,0 +170756359680,219,0 +170756359728,219,0 +170756359778,220,0 +170756359826,220,0 +170756359874,221,0 +170756359921,221,0 +170756359969,222,0 +170756360019,222,0 +170756360067,221,0 +170756360115,222,0 +170756360163,215,0 +170756360211,215,0 +170756360259,216,0 +170756360307,217,0 +170756360355,216,0 +170756360403,217,0 +170756360450,218,0 +170756360498,218,0 +170756360546,219,0 +170756360596,219,0 +170756360644,220,0 +170756360692,221,0 +170756360741,221,0 +170756360789,221,0 +170756360839,221,0 +170756360888,222,0 +170756360936,223,0 +170756360984,222,0 +170756361034,222,0 +170756361082,216,0 +170756361129,216,0 +170756361179,216,0 +170756361229,217,0 +170756361277,217,0 +170756361325,218,0 +170756361374,218,0 +170756361424,219,0 +170756361472,222,0 +170756361520,221,0 +170756361569,222,0 +170756361617,222,0 +170756361665,222,0 +170756361714,224,0 +170756361762,223,0 +170756361810,223,0 +170756361860,222,0 +170756361908,222,0 +170756361956,222,0 +170756362005,216,0 +170756362055,216,0 +170756362103,217,0 +170756362152,217,0 +170756362200,218,0 +170756362250,219,0 +170756362299,219,0 +170756362347,219,0 +170756362395,221,0 +170756362443,223,0 +170756362491,222,0 +170756362539,222,0 +170756362587,225,0 +170756362636,224,0 +170756362684,223,0 +170756362734,223,0 +170756362782,223,0 +170756362830,223,0 +170756362878,222,0 +170756362927,216,0 +170756362975,215,0 +170756363023,215,0 +170756363071,216,0 +170756363121,216,0 +170756363169,217,0 +170756363216,218,0 +170756363266,219,0 +170756363316,219,0 +170756363364,220,0 +170756363412,220,0 +170756363459,220,0 +170756363507,221,0 +170756363555,222,0 +170756363605,222,0 +170756363653,223,0 +170756363701,222,0 +170756363750,221,0 +170756363798,222,0 +170756363846,216,0 +170756363894,214,0 +170756363942,214,0 +170756363991,215,0 +170756364041,215,0 +170756364091,216,0 +170756364140,216,0 +170756364188,217,0 +170756364236,217,0 +170756364284,218,0 +170756364332,218,0 +170756364380,219,0 +170756364429,221,0 +170756364477,220,0 +170756364525,221,0 +170756364575,222,0 +170756364624,222,0 +170756364674,222,0 +170756364723,223,0 +170756364773,222,0 +170756364821,214,0 +170756364869,215,0 +170756364917,215,0 +170756364965,216,0 +170756365013,217,0 +170756365061,217,0 +170756365110,218,0 +170756365160,219,0 +170756365208,219,0 +170756365256,219,0 +170756365305,220,0 +170756365353,221,0 +170756365403,221,0 +170756365451,222,0 +170756365500,221,0 +170756365548,221,0 +170756365596,222,0 +170756365646,222,0 +170756365694,222,0 +170756365743,215,0 +170756365791,215,0 +170756365841,216,0 +170756365889,216,0 +170756365937,217,0 +170756365984,217,0 +170756366032,218,0 +170756366080,219,0 +170756366128,219,0 +170756366176,219,0 +170756366224,220,0 +170756366273,221,0 +170756366321,221,0 +170756366371,222,0 +170756366420,222,0 +170756366470,222,0 +170756366518,223,0 +170756366566,222,0 +170756366613,221,0 +170756366661,215,0 +170756366709,215,0 +170756366757,216,0 +170756366805,216,0 +170756366855,217,0 +170756366904,218,0 +170756366952,219,0 +170756367002,218,0 +170756367051,220,0 +170756367099,220,0 +170756367147,221,0 +170756367195,222,0 +170756367245,223,0 +170756367294,223,0 +170756367342,225,0 +170756367392,222,0 +170756367440,223,0 +170756367488,223,0 +170756367537,222,0 +170756367585,215,0 +170756367633,215,0 +170756367682,215,0 +170756367730,216,0 +170756367780,217,0 +170756367828,217,0 +170756367876,219,0 +170756367924,219,0 +170756367972,220,0 +170756368019,220,0 +170756368067,220,0 +170756368115,223,0 +170756368163,222,0 +170756368213,221,0 +170756368261,223,0 +170756368309,222,0 +170756368358,223,0 +170756368406,223,0 +170756368456,222,0 +170756368505,215,0 +170756368553,214,0 +170756368601,215,0 +170756368649,215,0 +170756368696,217,0 +170756368744,218,0 +170756368792,219,0 +170756368840,219,0 +170756368890,219,0 +170756368938,219,0 +170756368986,220,0 +170756369035,221,0 +170756369083,222,0 +170756369131,224,0 +170756369179,223,0 +170756369227,223,0 +170756369275,223,0 +170756369323,224,0 +170756369371,222,0 +170756369418,216,0 +170756369466,214,0 +170756369514,214,0 +170756369562,215,0 +170756369610,215,0 +170756369658,217,0 +170756369706,217,0 +170756369755,217,0 +170756369803,218,0 +170756369851,219,0 +170756369899,220,0 +170756369947,220,0 +170756369994,221,0 +170756370042,222,0 +170756370090,223,0 +170756370138,223,0 +170756370186,222,0 +170756370234,222,0 +170756370283,222,0 +170756370331,222,0 +170756370379,214,0 +170756370427,214,0 +170756370475,214,0 +170756370523,213,0 +170756370572,214,0 +170756370620,215,0 +170756370668,216,0 +170756370716,217,0 +170756370763,217,0 +170756370811,219,0 +170756370859,218,0 +170756370907,220,0 +170756370955,220,0 +170756371004,221,0 +170756371052,221,0 +170756371101,221,0 +170756371149,222,0 +170756371197,222,0 +170756371245,222,0 +170756371293,215,0 +170756371341,214,0 +170756371390,214,0 +170756371438,215,0 +170756371486,215,0 +170756371534,216,0 +170756371581,216,0 +170756371629,216,0 +170756371677,216,0 +170756371725,217,0 +170756371773,218,0 +170756371821,219,0 +170756371869,220,0 +170756371917,219,0 +170756371964,219,0 +170756372012,221,0 +170756372060,220,0 +170756372108,221,0 +170756372158,221,0 +170756372206,218,0 +170756372253,215,0 +170756372301,216,0 +170756372349,216,0 +170756372397,217,0 +170756372445,218,0 +170756372493,218,0 +170756372542,219,0 +170756372590,219,0 +170756372638,220,0 +170756372686,221,0 +170756372734,221,0 +170756372782,222,0 +170756372830,223,0 +170756372877,222,0 +170756372925,223,0 +170756372973,222,0 +170756373021,223,0 +170756373069,223,0 +170756373117,222,0 +170756373166,216,0 +170756373214,217,0 +170756373262,217,0 +170756373310,217,0 +170756373357,219,0 +170756373405,218,0 +170756373453,219,0 +170756373501,220,0 +170756373549,219,0 +170756373597,220,0 +170756373645,221,0 +170756373692,223,0 +170756373740,222,0 +170756373788,222,0 +170756373836,222,0 +170756373884,222,0 +170756373932,223,0 +170756373980,222,0 +170756374027,222,0 +170756374075,217,0 +170756374123,217,0 +170756374171,217,0 +170756374219,218,0 +170756374268,219,0 +170756374318,218,0 +170756374366,219,0 +170756374414,220,0 +170756374461,220,0 +170756374509,220,0 +170756374557,219,0 +170756374605,221,0 +170756374653,221,0 +170756374701,222,0 +170756374749,222,0 +170756374796,224,0 +170756374844,223,0 +170756374892,225,0 +170756374940,222,0 +170756374988,221,0 +170756375036,217,0 +170756375083,218,0 +170756375131,218,0 +170756375179,218,0 +170756375227,219,0 +170756375276,220,0 +170756375324,221,0 +170756375372,220,0 +170756375420,222,0 +170756375468,221,0 +170756375516,221,0 +170756375564,221,0 +170756375613,221,0 +170756375661,222,0 +170756375709,221,0 +170756375759,229,0 +170756375808,223,0 +170756375856,223,0 +170756375904,222,0 +170756375954,216,0 +170756376001,216,0 +170756376049,216,0 +170756376097,218,0 +170756376145,218,0 +170756376193,219,0 +170756376243,219,0 +170756376291,220,0 +170756376340,222,0 +170756376388,221,0 +170756376436,222,0 +170756376484,222,0 +170756376532,223,0 +170756376582,223,0 +170756376630,223,0 +170756376678,223,0 +170756376726,221,0 +170756376773,222,0 +170756376821,221,0 +170756376869,216,0 +170756376917,216,0 +170756376967,217,0 +170756377015,217,0 +170756377062,218,0 +170756377110,218,0 +170756377158,219,0 +170756377206,220,0 +170756377254,221,0 +170756377303,222,0 +170756377351,222,0 +170756377399,222,0 +170756377447,222,0 +170756377495,223,0 +170756377543,223,0 +170756377591,223,0 +170756377639,224,0 +170756377687,222,0 +170756377735,221,0 +170756377784,219,0 +170756377834,215,0 +170756377882,216,0 +170756377930,216,0 +170756377978,217,0 +170756378027,218,0 +170756378077,219,0 +170756378125,219,0 +170756378173,219,0 +170756378220,220,0 +170756378268,222,0 +170756378316,222,0 +170756378364,222,0 +170756378412,224,0 +170756378462,219,0 +170756378509,222,0 +170756378559,223,0 +170756378608,223,0 +170756378656,222,0 +170756378706,221,0 +170756378754,215,0 +170756378803,215,0 +170756378853,217,0 +170756378902,216,0 +170756378950,219,0 +170756378998,218,0 +170756379048,218,0 +170756379096,218,0 +170756379143,219,0 +170756379191,222,0 +170756379239,221,0 +170756379287,222,0 +170756379337,222,0 +170756379386,222,0 +170756379436,222,0 +170756379485,222,0 +170756379535,222,0 +170756379584,221,0 +170756379632,219,0 +170756379680,215,0 +170756379730,216,0 +170756379778,217,0 +170756379826,217,0 +170756379875,218,0 +170756379923,220,0 +170756379971,219,0 +170756380019,219,0 +170756380067,220,0 +170756380116,220,0 +170756380164,221,0 +170756380214,222,0 +170756380263,223,0 +170756380313,220,0 +170756380363,222,0 +170756380412,223,0 +170756380460,224,0 +170756380510,222,0 +170756380558,216,0 +170756380605,214,0 +170756380653,214,0 +170756380701,214,0 +170756380751,216,0 +170756380801,216,0 +170756380850,217,0 +170756380900,218,0 +170756380949,219,0 +170756380997,219,0 +170756381045,220,0 +170756381093,220,0 +170756381141,221,0 +170756381189,221,0 +170756381237,222,0 +170756381285,222,0 +170756381332,222,0 +170756381380,223,0 +170756381430,224,0 +170756381478,222,0 +170756381527,214,0 +170756381575,214,0 +170756381623,214,0 +170756381671,214,0 +170756381721,215,0 +170756381770,215,0 +170756381820,216,0 +170756381868,217,0 +170756381917,217,0 +170756381965,218,0 +170756382013,219,0 +170756382062,219,0 +170756382110,220,0 +170756382158,220,0 +170756382206,221,0 +170756382256,222,0 +170756382305,222,0 +170756382355,221,0 +170756382403,221,0 +170756382451,215,0 +170756382500,214,0 +170756382548,214,0 +170756382598,214,0 +170756382646,214,0 +170756382694,214,0 +170756382741,214,0 +170756382789,214,0 +170756382837,215,0 +170756382885,215,0 +170756382933,215,0 +170756382981,215,0 +170756383029,215,0 +170756383079,216,0 +170756383126,218,0 +170756383174,218,0 +170756383224,217,0 +170756383272,221,0 +170756383320,222,0 +170756383368,216,0 +170756383416,214,0 +170756383464,214,0 +170756383512,214,0 +170756383561,215,0 +170756383611,215,0 +170756383659,215,0 +170756383707,215,0 +170756383755,215,0 +170756383804,216,0 +170756383852,217,0 +170756383900,218,0 +170756383948,219,0 +170756383996,220,0 +170756384045,220,0 +170756384094,220,0 +170756384144,221,0 +170756384192,221,0 +170756384240,222,0 +170756384288,216,0 +170756384335,214,0 +170756384385,214,0 +170756384433,215,0 +170756384482,215,0 +170756384530,216,0 +170756384578,216,0 +170756384626,218,0 +170756384674,218,0 +170756384722,219,0 +170756384771,218,0 +170756384819,219,0 +170756384869,219,0 +170756384918,220,0 +170756384966,219,0 +170756385016,221,0 +170756385064,218,0 +170756385113,220,0 +170756385162,223,0 +170756385210,223,0 +170756385258,215,0 +170756385306,215,0 +170756385356,216,0 +170756385405,217,0 +170756385453,217,0 +170756385503,217,0 +170756385552,218,0 +170756385600,220,0 +170756385648,220,0 +170756385696,222,0 +170756385744,221,0 +170756385792,222,0 +170756385842,222,0 +170756385889,222,0 +170756385937,222,0 +170756385987,223,0 +170756386035,222,0 +170756386084,222,0 +170756386132,218,0 +170756386182,215,0 +170756386231,215,0 +170756386279,216,0 +170756386329,216,0 +170756386377,217,0 +170756386426,217,0 +170756386476,217,0 +170756386523,218,0 +170756386571,218,0 +170756386619,219,0 +170756386667,219,0 +170756386715,222,0 +170756386763,221,0 +170756386811,223,0 +170756386859,223,0 +170756386907,223,0 +170756386955,223,0 +170756387004,222,0 +170756387054,223,0 +170756387102,215,0 +170756387149,215,0 +170756387197,216,0 +170756387245,217,0 +170756387295,218,0 +170756387343,218,0 +170756387391,219,0 +170756387439,220,0 +170756387487,219,0 +170756387535,220,0 +170756387584,220,0 +170756387632,221,0 +170756387681,222,0 +170756387731,222,0 +170756387779,222,0 +170756387827,223,0 +170756387875,222,0 +170756387923,222,0 +170756387971,222,0 +170756388020,215,0 +170756388069,215,0 +170756388117,216,0 +170756388165,217,0 +170756388213,217,0 +170756388263,217,0 +170756388312,218,0 +170756388362,217,0 +170756388411,218,0 +170756388459,220,0 +170756388507,221,0 +170756388555,221,0 +170756388602,222,0 +170756388650,222,0 +170756388698,222,0 +170756388746,222,0 +170756388794,222,0 +170756388842,222,0 +170756388890,222,0 +170756388938,217,0 +170756388985,216,0 +170756389033,217,0 +170756389081,218,0 +170756389129,219,0 +170756389177,218,0 +170756389225,218,0 +170756389273,220,0 +170756389320,221,0 +170756389368,224,0 +170756389416,221,0 +170756389464,222,0 +170756389513,224,0 +170756389561,224,0 +170756389609,224,0 +170756389657,223,0 +170756389706,224,0 +170756389755,223,0 +170756389803,222,0 +170756389851,217,0 +170756389899,216,0 +170756389947,217,0 +170756389995,218,0 +170756390042,219,0 +170756390090,219,0 +170756390138,220,0 +170756390188,221,0 +170756390237,221,0 +170756390285,222,0 +170756390333,223,0 +170756390381,223,0 +170756390429,223,0 +170756390477,223,0 +170756390526,224,0 +170756390574,223,0 +170756390622,223,0 +170756390672,224,0 +170756390721,223,0 +170756390769,223,0 +170756390817,219,0 +170756390865,218,0 +170756390915,219,0 +170756390963,221,0 +170756391011,220,0 +170756391060,221,0 +170756391108,222,0 +170756391157,222,0 +170756391205,224,0 +170756391255,224,0 +170756391303,224,0 +170756391352,223,0 +170756391400,223,0 +170756391450,223,0 +170756391498,223,0 +170756391546,223,0 +170756391593,222,0 +170756391641,223,0 +170756391689,222,0 +170756391737,215,0 +170756391787,215,0 +170756391836,216,0 +170756391884,216,0 +170756391934,217,0 +170756391982,219,0 +170756392031,219,0 +170756392081,220,0 +170756392130,219,0 +170756392180,221,0 +170756392229,222,0 +170756392279,222,0 +170756392328,222,0 +170756392376,223,0 +170756392424,223,0 +170756392472,222,0 +170756392522,223,0 +170756392570,223,0 +170756392619,222,0 +170756392669,215,0 +170756392717,214,0 +170756392766,214,0 +170756392816,214,0 +170756392865,215,0 +170756392913,216,0 +170756392961,216,0 +170756393009,217,0 +170756393059,220,0 +170756393108,219,0 +170756393156,220,0 +170756393205,220,0 +170756393253,221,0 +170756393301,222,0 +170756393349,222,0 +170756393397,224,0 +170756393445,226,0 +170756393493,223,0 +170756393541,222,0 +170756393589,215,0 +170756393637,214,0 +170756393686,215,0 +170756393734,217,0 +170756393782,217,0 +170756393830,218,0 +170756393878,219,0 +170756393926,219,0 +170756393974,219,0 +170756394021,220,0 +170756394069,220,0 +170756394119,220,0 +170756394167,220,0 +170756394215,221,0 +170756394263,222,0 +170756394311,222,0 +170756394360,222,0 +170756394410,222,0 +170756394458,222,0 +170756394506,216,0 +170756394555,215,0 +170756394603,216,0 +170756394651,216,0 +170756394699,217,0 +170756394748,218,0 +170756394798,218,0 +170756394846,219,0 +170756394894,220,0 +170756394942,220,0 +170756394991,220,0 +170756395039,221,0 +170756395087,221,0 +170756395136,222,0 +170756395186,222,0 +170756395235,222,0 +170756395283,220,0 +170756395331,224,0 +170756395381,222,0 +170756395428,216,0 +170756395478,215,0 +170756395526,216,0 +170756395574,216,0 +170756395622,217,0 +170756395670,218,0 +170756395719,219,0 +170756395769,220,0 +170756395817,219,0 +170756395866,221,0 +170756395914,221,0 +170756395962,221,0 +170756396011,222,0 +170756396059,222,0 +170756396107,222,0 +170756396157,222,0 +170756396206,222,0 +170756396254,221,0 +170756396302,221,0 +170756396350,218,0 +170756396398,215,0 +170756396448,215,0 +170756396495,216,0 +170756396543,217,0 +170756396591,219,0 +170756396639,218,0 +170756396689,218,0 +170756396737,219,0 +170756396785,220,0 +170756396833,220,0 +170756396882,221,0 +170756396930,221,0 +170756396980,222,0 +170756397028,222,0 +170756397076,223,0 +170756397123,225,0 +170756397171,224,0 +170756397221,223,0 +170756397269,222,0 +170756397317,215,0 +170756397366,215,0 +170756397416,215,0 +170756397464,216,0 +170756397514,217,0 +170756397561,217,0 +170756397609,217,0 +170756397659,217,0 +170756397707,218,0 +170756397755,218,0 +170756397803,219,0 +170756397852,221,0 +170756397900,220,0 +170756397949,220,0 +170756397997,221,0 +170756398045,221,0 +170756398093,222,0 +170756398141,222,0 +170756398189,222,0 +170756398238,215,0 +170756398286,215,0 +170756398334,216,0 +170756398384,219,0 +170756398432,217,0 +170756398481,217,0 +170756398529,219,0 +170756398577,218,0 +170756398625,219,0 +170756398673,220,0 +170756398722,220,0 +170756398770,220,0 +170756398818,221,0 +170756398866,222,0 +170756398914,222,0 +170756398964,222,0 +170756399012,223,0 +170756399059,223,0 +170756399109,222,0 +170756399157,215,0 +170756399205,215,0 +170756399253,216,0 +170756399302,216,0 +170756399350,217,0 +170756399398,217,0 +170756399447,217,0 +170756399497,218,0 +170756399546,219,0 +170756399594,218,0 +170756399642,220,0 +170756399690,220,0 +170756399739,221,0 +170756399787,220,0 +170756399835,221,0 +170756399883,224,0 +170756399931,223,0 +170756399979,221,0 +170756400027,222,0 +170756400077,216,0 +170756400125,214,0 +170756400173,214,0 +170756400220,215,0 +170756400270,215,0 +170756400319,216,0 +170756400369,217,0 +170756400417,218,0 +170756400465,217,0 +170756400513,219,0 +170756400561,219,0 +170756400610,219,0 +170756400658,222,0 +170756400706,221,0 +170756400755,222,0 +170756400805,223,0 +170756400854,222,0 +170756400902,221,0 +170756400952,221,0 +170756401001,216,0 +170756401049,214,0 +170756401097,214,0 +170756401145,215,0 +170756401193,215,0 +170756401241,215,0 +170756401289,215,0 +170756401337,215,0 +170756401386,217,0 +170756401434,217,0 +170756401482,217,0 +170756401532,218,0 +170756401581,218,0 +170756401629,219,0 +170756401677,221,0 +170756401725,220,0 +170756401773,221,0 +170756401821,221,0 +170756401869,221,0 +170756401918,218,0 +170756401968,213,0 +170756402017,213,0 +170756402066,213,0 +170756402114,214,0 +170756402162,213,0 +170756402210,213,0 +170756402260,213,0 +170756402308,214,0 +170756402356,214,0 +170756402404,214,0 +170756402453,215,0 +170756402501,215,0 +170756402549,216,0 +170756402597,217,0 +170756402646,217,0 +170756402696,218,0 +170756402744,218,0 +170756402793,221,0 +170756402841,222,0 +170756402889,215,0 +170756402937,215,0 +170756402985,215,0 +170756403033,215,0 +170756403082,216,0 +170756403130,216,0 +170756403180,217,0 +170756403229,218,0 +170756403277,224,0 +170756403325,218,0 +170756403373,219,0 +170756403422,220,0 +170756403470,221,0 +170756403518,220,0 +170756403566,222,0 +170756403614,222,0 +170756403662,222,0 +170756403710,223,0 +170756403758,222,0 +170756403806,216,0 +170756403853,216,0 +170756403901,217,0 +170756403949,217,0 +170756403997,217,0 +170756404045,218,0 +170756404093,218,0 +170756404141,220,0 +170756404190,220,0 +170756404238,221,0 +170756404286,219,0 +170756404334,220,0 +170756404382,221,0 +170756404430,221,0 +170756404478,222,0 +170756404526,222,0 +170756404574,224,0 +170756404622,222,0 +170756404670,222,0 +170756404718,217,0 +170756404766,216,0 +170756404814,217,0 +170756404861,218,0 +170756404911,218,0 +170756404959,219,0 +170756405007,219,0 +170756405055,219,0 +170756405104,219,0 +170756405154,220,0 +170756405202,220,0 +170756405250,222,0 +170756405298,222,0 +170756405347,223,0 +170756405397,223,0 +170756405445,222,0 +170756405493,223,0 +170756405541,223,0 +170756405590,223,0 +170756405638,217,0 +170756405688,218,0 +170756405736,219,0 +170756405784,219,0 +170756405831,219,0 +170756405879,220,0 +170756405929,220,0 +170756405977,221,0 +170756406025,221,0 +170756406073,222,0 +170756406121,224,0 +170756406169,224,0 +170756406217,224,0 +170756406265,224,0 +170756406314,223,0 +170756406363,222,0 +170756406413,223,0 +170756406462,222,0 +170756406512,222,0 +170756406560,217,0 +170756406609,217,0 +170756406657,218,0 +170756406705,218,0 +170756406755,219,0 +170756406802,220,0 +170756406850,220,0 +170756406898,221,0 +170756406948,222,0 +170756406996,221,0 +170756407044,222,0 +170756407092,220,0 +170756407140,222,0 +170756407189,223,0 +170756407237,223,0 +170756407285,223,0 +170756407333,223,0 +170756407381,224,0 +170756407429,222,0 +170756407477,222,0 +170756407526,215,0 +170756407574,215,0 +170756407622,217,0 +170756407670,217,0 +170756407718,218,0 +170756407767,217,0 +170756407815,219,0 +170756407863,219,0 +170756407911,221,0 +170756407961,221,0 +170756408009,221,0 +170756408058,222,0 +170756408106,222,0 +170756408156,224,0 +170756408204,225,0 +170756408251,223,0 +170756408299,223,0 +170756408349,222,0 +170756408397,222,0 +170756408445,215,0 +170756408494,214,0 +170756408544,215,0 +170756408593,216,0 +170756408641,217,0 +170756408689,217,0 +170756408739,217,0 +170756408788,218,0 +170756408836,219,0 +170756408884,219,0 +170756408932,220,0 +170756408981,220,0 +170756409029,221,0 +170756409079,222,0 +170756409127,223,0 +170756409175,229,0 +170756409224,224,0 +170756409272,223,0 +170756409320,223,0 +170756409368,216,0 +170756409416,215,0 +170756409465,216,0 +170756409513,217,0 +170756409561,217,0 +170756409609,218,0 +170756409657,218,0 +170756409704,219,0 +170756409754,219,0 +170756409802,219,0 +170756409850,219,0 +170756409898,220,0 +170756409945,221,0 +170756409993,222,0 +170756410041,222,0 +170756410089,222,0 +170756410137,222,0 +170756410185,224,0 +170756410233,222,0 +170756410281,218,0 +170756410330,218,0 +170756410378,219,0 +170756410426,219,0 +170756410476,220,0 +170756410523,220,0 +170756410571,223,0 +170756410619,222,0 +170756410667,221,0 +170756410715,222,0 +170756410763,223,0 +170756410811,223,0 +170756410859,224,0 +170756410907,225,0 +170756410955,223,0 +170756411003,224,0 +170756411050,224,0 +170756411100,223,0 +170756411148,223,0 +170756411196,221,0 +170756411244,216,0 +170756411292,217,0 +170756411340,218,0 +170756411388,219,0 +170756411435,220,0 +170756411485,219,0 +170756411535,221,0 +170756411583,223,0 +170756411630,222,0 +170756411678,222,0 +170756411726,224,0 +170756411776,223,0 +170756411824,223,0 +170756411872,224,0 +170756411920,224,0 +170756411967,223,0 +170756412015,223,0 +170756412063,222,0 +170756412111,222,0 +170756412161,215,0 +170756412209,215,0 +170756412257,216,0 +170756412306,217,0 +170756412356,217,0 +170756412404,219,0 +170756412452,220,0 +170756412501,220,0 +170756412549,220,0 +170756412599,221,0 +170756412647,221,0 +170756412695,222,0 +170756412743,223,0 +170756412791,223,0 +170756412839,224,0 +170756412888,225,0 +170756412938,223,0 +170756412986,223,0 +170756413034,222,0 +170756413081,215,0 +170756413129,215,0 +170756413177,215,0 +170756413225,215,0 +170756413273,216,0 +170756413323,217,0 +170756413371,217,0 +170756413419,217,0 +170756413467,219,0 +170756413515,219,0 +170756413562,219,0 +170756413610,220,0 +170756413660,222,0 +170756413709,222,0 +170756413757,223,0 +170756413805,225,0 +170756413853,223,0 +170756413901,223,0 +170756413949,222,0 +170756413996,216,0 +170756414044,214,0 +170756414092,215,0 +170756414140,215,0 +170756414190,215,0 +170756414238,215,0 +170756414287,216,0 +170756414335,217,0 +170756414383,217,0 +170756414431,218,0 +170756414479,219,0 +170756414527,219,0 +170756414575,221,0 +170756414623,221,0 +170756414671,220,0 +170756414718,221,0 +170756414766,222,0 +170756414814,222,0 +170756414862,222,0 +170756414911,216,0 +170756414959,214,0 +170756415007,214,0 +170756415055,214,0 +170756415103,215,0 +170756415151,216,0 +170756415199,216,0 +170756415247,217,0 +170756415295,217,0 +170756415342,218,0 +170756415390,218,0 +170756415440,219,0 +170756415488,220,0 +170756415536,220,0 +170756415584,220,0 +170756415633,221,0 +170756415681,221,0 +170756415729,221,0 +170756415778,221,0 +170756415826,222,0 +170756415874,215,0 +170756415924,215,0 +170756415972,216,0 +170756416021,217,0 +170756416071,218,0 +170756416119,219,0 +170756416167,219,0 +170756416215,219,0 +170756416263,220,0 +170756416312,220,0 +170756416360,221,0 +170756416408,221,0 +170756416456,221,0 +170756416504,221,0 +170756416552,222,0 +170756416600,222,0 +170756416648,222,0 +170756416696,223,0 +170756416744,222,0 +170756416792,216,0 +170756416840,215,0 +170756416889,217,0 +170756416939,217,0 +170756416986,218,0 +170756417034,218,0 +170756417084,219,0 +170756417132,220,0 +170756417180,220,0 +170756417229,221,0 +170756417277,222,0 +170756417325,221,0 +170756417373,221,0 +170756417421,222,0 +170756417470,223,0 +170756417518,223,0 +170756417566,223,0 +170756417614,222,0 +170756417662,222,0 +170756417710,216,0 +170756417759,216,0 +170756417807,216,0 +170756417857,217,0 +170756417904,218,0 +170756417952,219,0 +170756418000,219,0 +170756418048,220,0 +170756418096,220,0 +170756418144,221,0 +170756418192,221,0 +170756418240,221,0 +170756418287,222,0 +170756418335,223,0 +170756418383,224,0 +170756418431,223,0 +170756418479,223,0 +170756418529,223,0 +170756418578,222,0 +170756418628,216,0 +170756418677,215,0 +170756418727,216,0 +170756418776,217,0 +170756418824,217,0 +170756418872,218,0 +170756418920,218,0 +170756418970,219,0 +170756419019,220,0 +170756419067,221,0 +170756419115,221,0 +170756419165,221,0 +170756419213,221,0 +170756419262,221,0 +170756419312,221,0 +170756419361,223,0 +170756419409,222,0 +170756419459,221,0 +170756419507,223,0 +170756419555,221,0 +170756419604,215,0 +170756419654,216,0 +170756419701,217,0 +170756419751,217,0 +170756419800,218,0 +170756419850,220,0 +170756419899,219,0 +170756419947,219,0 +170756419995,220,0 +170756420043,220,0 +170756420091,221,0 +170756420139,222,0 +170756420189,222,0 +170756420237,222,0 +170756420286,223,0 +170756420334,223,0 +170756420382,224,0 +170756420430,222,0 +170756420478,220,0 +170756420526,215,0 +170756420575,216,0 +170756420625,217,0 +170756420673,218,0 +170756420721,218,0 +170756420769,218,0 +170756420817,219,0 +170756420866,219,0 +170756420914,222,0 +170756420964,223,0 +170756421011,221,0 +170756421061,222,0 +170756421109,222,0 +170756421157,223,0 +170756421205,223,0 +170756421254,224,0 +170756421302,225,0 +170756421350,224,0 +170756421398,221,0 +170756421445,215,0 +170756421493,215,0 +170756421541,216,0 +170756421589,216,0 +170756421637,217,0 +170756421686,218,0 +170756421734,218,0 +170756421782,220,0 +170756421830,220,0 +170756421879,221,0 +170756421927,220,0 +170756421975,220,0 +170756422023,222,0 +170756422071,223,0 +170756422118,225,0 +170756422166,224,0 +170756422214,223,0 +170756422262,222,0 +170756422309,221,0 +170756422357,216,0 +170756422407,215,0 +170756422455,215,0 +170756422503,215,0 +170756422552,216,0 +170756422600,216,0 +170756422648,217,0 +170756422696,217,0 +170756422744,218,0 +170756422792,219,0 +170756422840,220,0 +170756422889,221,0 +170756422939,220,0 +170756422987,221,0 +170756423035,222,0 +170756423083,222,0 +170756423131,221,0 +170756423179,222,0 +170756423226,222,0 +170756423274,216,0 +170756423322,214,0 +170756423370,214,0 +170756423418,215,0 +170756423465,214,0 +170756423513,215,0 +170756423561,215,0 +170756423609,216,0 +170756423657,216,0 +170756423705,217,0 +170756423753,219,0 +170756423801,220,0 +170756423850,220,0 +170756423899,220,0 +170756423947,220,0 +170756423995,221,0 +170756424043,223,0 +170756424092,223,0 +170756424140,222,0 +170756424188,216,0 +170756424236,214,0 +170756424284,214,0 +170756424334,215,0 +170756424381,214,0 +170756424431,215,0 +170756424480,216,0 +170756424528,216,0 +170756424578,218,0 +170756424626,218,0 +170756424675,219,0 +170756424725,219,0 +170756424774,220,0 +170756424822,221,0 +170756424870,221,0 +170756424918,221,0 +170756424966,222,0 +170756425016,222,0 +170756425064,222,0 +170756425113,216,0 +170756425163,214,0 +170756425212,214,0 +170756425262,214,0 +170756425310,215,0 +170756425358,215,0 +170756425406,215,0 +170756425455,216,0 +170756425503,215,0 +170756425553,216,0 +170756425602,218,0 +170756425650,218,0 +170756425698,220,0 +170756425747,219,0 +170756425795,219,0 +170756425845,220,0 +170756425893,221,0 +170756425941,222,0 +170756425989,221,0 +170756426037,221,0 +170756426085,215,0 +170756426134,215,0 +170756426182,215,0 +170756426230,216,0 +170756426278,217,0 +170756426326,217,0 +170756426374,219,0 +170756426423,218,0 +170756426471,219,0 +170756426519,219,0 +170756426567,221,0 +170756426615,221,0 +170756426663,222,0 +170756426711,221,0 +170756426760,226,0 +170756426808,223,0 +170756426856,222,0 +170756426904,222,0 +170756426954,221,0 +170756427003,215,0 +170756427051,215,0 +170756427099,215,0 +170756427149,215,0 +170756427196,215,0 +170756427244,216,0 +170756427294,216,0 +170756427343,217,0 +170756427393,217,0 +170756427441,218,0 +170756427489,219,0 +170756427536,219,0 +170756427584,220,0 +170756427632,220,0 +170756427682,221,0 +170756427729,221,0 +170756427777,221,0 +170756427825,222,0 +170756427873,222,0 +170756427923,214,0 +170756427971,214,0 +170756428018,214,0 +170756428068,215,0 +170756428117,215,0 +170756428165,215,0 +170756428213,215,0 +170756428263,215,0 +170756428311,215,0 +170756428360,215,0 +170756428410,216,0 +170756428459,217,0 +170756428507,218,0 +170756428555,218,0 +170756428603,219,0 +170756428651,219,0 +170756428699,219,0 +170756428748,219,0 +170756428796,219,0 +170756428844,221,0 +170756428892,221,0 +170756428939,222,0 +170756428987,223,0 +170756429035,222,0 +170756429083,224,0 +170756429131,225,0 +170756429179,223,0 +170756429227,223,0 +170756429274,223,0 +170756429324,215,0 +170756429372,216,0 +170756429420,217,0 +170756429469,217,0 +170756429517,217,0 +170756429565,218,0 +170756429613,218,0 +170756429661,220,0 +170756429709,220,0 +170756429757,220,0 +170756429804,224,0 +170756429852,221,0 +170756429900,222,0 +170756429948,222,0 +170756429996,223,0 +170756430044,223,0 +170756430092,223,0 +170756430141,223,0 +170756430189,223,0 +170756430239,216,0 +170756430288,217,0 +170756430338,217,0 +170756430385,218,0 +170756430433,219,0 +170756430483,221,0 +170756430530,219,0 +170756430578,221,0 +170756430626,220,0 +170756430674,222,0 +170756430722,221,0 +170756430770,221,0 +170756430817,229,0 +170756430865,223,0 +170756430913,223,0 +170756430961,223,0 +170756431009,223,0 +170756431057,224,0 +170756431104,222,0 +170756431152,217,0 +170756431202,216,0 +170756431250,217,0 +170756431297,218,0 +170756431345,220,0 +170756431393,220,0 +170756431441,220,0 +170756431491,222,0 +170756431540,221,0 +170756431588,226,0 +170756431636,222,0 +170756431684,223,0 +170756431732,223,0 +170756431780,223,0 +170756431830,223,0 +170756431878,223,0 +170756431926,224,0 +170756431974,224,0 +170756432023,223,0 +170756432073,217,0 +170756432121,217,0 +170756432168,217,0 +170756432216,218,0 +170756432264,218,0 +170756432312,219,0 +170756432362,219,0 +170756432410,220,0 +170756432458,221,0 +170756432507,222,0 +170756432556,222,0 +170756432606,223,0 +170756432655,223,0 +170756432703,223,0 +170756432753,224,0 +170756432800,223,0 +170756432848,223,0 +170756432896,223,0 +170756432944,222,0 +170756432992,218,0 +170756433041,219,0 +170756433091,220,0 +170756433139,220,0 +170756433188,221,0 +170756433236,220,0 +170756433284,221,0 +170756433334,222,0 +170756433382,223,0 +170756433430,223,0 +170756433478,224,0 +170756433526,222,0 +170756433574,224,0 +170756433622,225,0 +170756433669,223,0 +170756433717,223,0 +170756433765,223,0 +170756433813,223,0 +170756433861,223,0 +170756433911,221,0 +170756433960,219,0 +170756434010,220,0 +170756434057,220,0 +170756434105,219,0 +170756434153,221,0 +170756434203,224,0 +170756434252,223,0 +170756434300,222,0 +170756434350,225,0 +170756434398,224,0 +170756434445,223,0 +170756434493,224,0 +170756434541,224,0 +170756434589,223,0 +170756434637,224,0 +170756434685,224,0 +170756434735,223,0 +170756434783,223,0 +170756434832,222,0 +170756434880,217,0 +170756434929,219,0 +170756434977,218,0 +170756435025,219,0 +170756435073,220,0 +170756435121,221,0 +170756435169,222,0 +170756435217,220,0 +170756435264,222,0 +170756435312,222,0 +170756435360,222,0 +170756435408,223,0 +170756435456,222,0 +170756435504,224,0 +170756435552,224,0 +170756435599,224,0 +170756435647,223,0 +170756435695,222,0 +170756435743,222,0 +170756435791,216,0 +170756435839,216,0 +170756435887,216,0 +170756435934,217,0 +170756435982,217,0 +170756436032,219,0 +170756436080,218,0 +170756436129,219,0 +170756436177,220,0 +170756436225,221,0 +170756436274,221,0 +170756436322,221,0 +170756436370,222,0 +170756436418,223,0 +170756436466,222,0 +170756436514,224,0 +170756436562,222,0 +170756436610,222,0 +170756436657,223,0 +170756436705,218,0 +170756436753,214,0 +170756436801,215,0 +170756436849,216,0 +170756436899,216,0 +170756436947,217,0 +170756436996,217,0 +170756437046,218,0 +170756437094,218,0 +170756437143,219,0 +170756437192,220,0 +170756437242,221,0 +170756437290,222,0 +170756437338,222,0 +170756437386,222,0 +170756437435,222,0 +170756437483,223,0 +170756437531,222,0 +170756437581,222,0 +170756437630,215,0 +170756437680,214,0 +170756437727,215,0 +170756437777,216,0 +170756437825,216,0 +170756437874,217,0 +170756437924,218,0 +170756437972,220,0 +170756438019,219,0 +170756438067,220,0 +170756438117,220,0 +170756438165,221,0 +170756438213,222,0 +170756438260,223,0 +170756438308,222,0 +170756438358,222,0 +170756438407,223,0 +170756438455,224,0 +170756438503,223,0 +170756438551,221,0 +170756438599,216,0 +170756438647,216,0 +170756438697,217,0 +170756438744,217,0 +170756438792,218,0 +170756438840,219,0 +170756438888,220,0 +170756438938,219,0 +170756438986,220,0 +170756439033,220,0 +170756439081,222,0 +170756439131,222,0 +170756439179,223,0 +170756439227,221,0 +170756439275,222,0 +170756439323,222,0 +170756439372,221,0 +170756439420,223,0 +170756439468,221,0 +170756439517,215,0 +170756439565,216,0 +170756439613,216,0 +170756439661,217,0 +170756439709,218,0 +170756439757,218,0 +170756439805,219,0 +170756439853,220,0 +170756439901,221,0 +170756439950,221,0 +170756439998,221,0 +170756440046,222,0 +170756440094,222,0 +170756440142,223,0 +170756440190,224,0 +170756440238,223,0 +170756440287,225,0 +170756440335,222,0 +170756440385,222,0 +170756440433,215,0 +170756440482,214,0 +170756440530,215,0 +170756440578,216,0 +170756440626,216,0 +170756440674,217,0 +170756440722,217,0 +170756440770,218,0 +170756440817,219,0 +170756440865,220,0 +170756440915,220,0 +170756440963,220,0 +170756441011,222,0 +170756441060,222,0 +170756441110,223,0 +170756441158,225,0 +170756441207,221,0 +170756441255,222,0 +170756441303,222,0 +170756441351,216,0 +170756441399,214,0 +170756441446,214,0 +170756441494,215,0 +170756441544,215,0 +170756441593,215,0 +170756441641,216,0 +170756441689,217,0 +170756441737,218,0 +170756441785,219,0 +170756441834,218,0 +170756441884,219,0 +170756441933,221,0 +170756441981,220,0 +170756442029,221,0 +170756442079,222,0 +170756442127,222,0 +170756442175,222,0 +170756442223,223,0 +170756442272,216,0 +170756442322,215,0 +170756442370,214,0 +170756442418,214,0 +170756442465,215,0 +170756442513,215,0 +170756442561,215,0 +170756442609,216,0 +170756442657,216,0 +170756442705,217,0 +170756442752,218,0 +170756442800,219,0 +170756442848,220,0 +170756442896,220,0 +170756442944,221,0 +170756442992,221,0 +170756443039,220,0 +170756443087,221,0 +170756443135,222,0 +170756443183,222,0 +170756443231,215,0 +170756443279,215,0 +170756443327,215,0 +170756443377,215,0 +170756443425,216,0 +170756443472,216,0 +170756443520,217,0 +170756443568,218,0 +170756443618,219,0 +170756443666,219,0 +170756443714,219,0 +170756443763,222,0 +170756443813,222,0 +170756443862,222,0 +170756443910,222,0 +170756443958,222,0 +170756444008,224,0 +170756444055,224,0 +170756444103,223,0 +170756444151,216,0 +170756444199,215,0 +170756444247,217,0 +170756444295,216,0 +170756444343,217,0 +170756444391,217,0 +170756444439,218,0 +170756444487,218,0 +170756444535,218,0 +170756444584,219,0 +170756444634,220,0 +170756444682,220,0 +170756444731,222,0 +170756444779,224,0 +170756444828,223,0 +170756444878,223,0 +170756444927,222,0 +170756444975,223,0 +170756445025,223,0 +170756445073,216,0 +170756445120,214,0 +170756445168,215,0 +170756445216,215,0 +170756445266,216,0 +170756445314,217,0 +170756445361,217,0 +170756445409,217,0 +170756445457,218,0 +170756445505,218,0 +170756445553,220,0 +170756445601,220,0 +170756445649,221,0 +170756445696,221,0 +170756445744,221,0 +170756445792,221,0 +170756445840,223,0 +170756445890,221,0 +170756445939,223,0 +170756445987,216,0 +170756446036,214,0 +170756446084,215,0 +170756446132,216,0 +170756446180,216,0 +170756446228,217,0 +170756446276,216,0 +170756446324,217,0 +170756446372,219,0 +170756446420,220,0 +170756446468,219,0 +170756446516,220,0 +170756446564,222,0 +170756446611,221,0 +170756446659,221,0 +170756446709,222,0 +170756446756,222,0 +170756446804,223,0 +170756446854,222,0 +170756446903,222,0 +170756446951,215,0 +170756446999,215,0 +170756447047,215,0 +170756447096,216,0 +170756447144,217,0 +170756447192,217,0 +170756447240,217,0 +170756447288,218,0 +170756447336,218,0 +170756447385,219,0 +170756447433,220,0 +170756447482,220,0 +170756447530,221,0 +170756447580,222,0 +170756447628,221,0 +170756447675,223,0 +170756447723,222,0 +170756447773,222,0 +170756447822,223,0 +170756447872,216,0 +170756447921,215,0 +170756447971,216,0 +170756448019,216,0 +170756448067,218,0 +170756448116,217,0 +170756448166,218,0 +170756448214,218,0 +170756448261,218,0 +170756448311,220,0 +170756448360,220,0 +170756448408,222,0 +170756448458,222,0 +170756448506,222,0 +170756448555,223,0 +170756448603,224,0 +170756448653,222,0 +170756448700,224,0 +170756448748,224,0 +170756448796,215,0 +170756448846,215,0 +170756448894,215,0 +170756448943,217,0 +170756448993,217,0 +170756449042,217,0 +170756449090,218,0 +170756449140,219,0 +170756449188,227,0 +170756449236,220,0 +170756449283,221,0 +170756449331,221,0 +170756449379,222,0 +170756449427,222,0 +170756449477,222,0 +170756449524,223,0 +170756449574,224,0 +170756449624,222,0 +170756449673,222,0 +170756449721,215,0 +170756449769,215,0 +170756449817,216,0 +170756449865,216,0 +170756449913,217,0 +170756449961,218,0 +170756450010,219,0 +170756450058,219,0 +170756450106,220,0 +170756450154,221,0 +170756450202,221,0 +170756450250,222,0 +170756450298,222,0 +170756450345,223,0 +170756450393,223,0 +170756450441,223,0 +170756450491,223,0 +170756450539,223,0 +170756450588,222,0 +170756450636,216,0 +170756450685,216,0 +170756450733,217,0 +170756450781,217,0 +170756450831,218,0 +170756450879,218,0 +170756450928,219,0 +170756450976,219,0 +170756451024,220,0 +170756451073,220,0 +170756451123,220,0 +170756451171,222,0 +170756451220,222,0 +170756451270,223,0 +170756451318,223,0 +170756451366,222,0 +170756451414,223,0 +170756451463,222,0 +170756451511,222,0 +170756451559,216,0 +170756451607,215,0 +170756451655,216,0 +170756451703,215,0 +170756451751,217,0 +170756451799,218,0 +170756451848,218,0 +170756451896,220,0 +170756451944,220,0 +170756451992,220,0 +170756452040,220,0 +170756452088,223,0 +170756452137,226,0 +170756452185,223,0 +170756452235,223,0 +170756452284,223,0 +170756452334,223,0 +170756452382,223,0 +170756452430,222,0 +170756452478,221,0 +170756452526,215,0 +170756452574,216,0 +170756452621,217,0 +170756452669,217,0 +170756452717,218,0 +170756452765,219,0 +170756452813,220,0 +170756452861,219,0 +170756452911,220,0 +170756452958,221,0 +170756453006,222,0 +170756453054,223,0 +170756453104,222,0 +170756453152,223,0 +170756453200,223,0 +170756453247,223,0 +170756453295,223,0 +170756453343,223,0 +170756453393,222,0 +170756453441,217,0 +170756453489,216,0 +170756453538,217,0 +170756453588,218,0 +170756453635,218,0 +170756453683,219,0 +170756453731,219,0 +170756453779,220,0 +170756453829,220,0 +170756453877,220,0 +170756453924,221,0 +170756453972,222,0 +170756454020,223,0 +170756454068,223,0 +170756454116,222,0 +170756454164,222,0 +170756454213,222,0 +170756454261,222,0 +170756454309,221,0 +170756454359,216,0 +170756454408,216,0 +170756454456,216,0 +170756454505,218,0 +170756454553,217,0 +170756454601,219,0 +170756454649,219,0 +170756454697,219,0 +170756454745,219,0 +170756454793,221,0 +170756454841,222,0 +170756454889,220,0 +170756454937,222,0 +170756454986,223,0 +170756455036,223,0 +170756455084,222,0 +170756455132,221,0 +170756455181,222,0 +170756455231,222,0 +170756455279,215,0 +170756455326,216,0 +170756455374,217,0 +170756455422,218,0 +170756455470,219,0 +170756455518,219,0 +170756455566,219,0 +170756455614,220,0 +170756455662,221,0 +170756455710,221,0 +170756455758,222,0 +170756455806,222,0 +170756455853,222,0 +170756455903,221,0 +170756455951,223,0 +170756455999,223,0 +170756456047,223,0 +170756456096,223,0 +170756456144,222,0 +170756456192,221,0 +170756456240,214,0 +170756456289,214,0 +170756456339,215,0 +170756456388,216,0 +170756456436,217,0 +170756456484,218,0 +170756456532,218,0 +170756456580,219,0 +170756456628,220,0 +170756456676,220,0 +170756456724,221,0 +170756456772,221,0 +170756456819,222,0 +170756456867,223,0 +170756456915,222,0 +170756456965,222,0 +170756457014,222,0 +170756457064,221,0 +170756457112,221,0 +170756457160,215,0 +170756457207,214,0 +170756457255,214,0 +170756457303,214,0 +170756457351,215,0 +170756457399,215,0 +170756457447,215,0 +170756457496,215,0 +170756457546,216,0 +170756457594,218,0 +170756457641,218,0 +170756457691,219,0 +170756457739,220,0 +170756457787,220,0 +170756457834,220,0 +170756457882,220,0 +170756457930,220,0 +170756457978,222,0 +170756458026,222,0 +170756458073,215,0 +170756458121,215,0 +170756458171,215,0 +170756458218,215,0 +170756458266,215,0 +170756458314,216,0 +170756458362,216,0 +170756458411,217,0 +170756458459,218,0 +170756458507,219,0 +170756458557,220,0 +170756458605,218,0 +170756458652,220,0 +170756458700,222,0 +170756458748,222,0 +170756458797,221,0 +170756458845,221,0 +170756458893,222,0 +170756458941,222,0 +170756458989,215,0 +170756459037,215,0 +170756459086,215,0 +170756459134,216,0 +170756459184,216,0 +170756459232,217,0 +170756459281,217,0 +170756459329,218,0 +170756459377,219,0 +170756459425,218,0 +170756459472,219,0 +170756459520,221,0 +170756459568,221,0 +170756459616,221,0 +170756459664,222,0 +170756459711,222,0 +170756459759,222,0 +170756459807,222,0 +170756459855,223,0 +170756459904,220,0 +170756459952,216,0 +170756460000,217,0 +170756460050,218,0 +170756460097,218,0 +170756460147,219,0 +170756460195,219,0 +170756460243,220,0 +170756460290,220,0 +170756460340,220,0 +170756460388,221,0 +170756460436,221,0 +170756460484,221,0 +170756460533,222,0 +170756460581,222,0 +170756460630,222,0 +170756460678,222,0 +170756460726,222,0 +170756460774,223,0 +170756460822,222,0 +170756460870,217,0 +170756460918,217,0 +170756460965,219,0 +170756461013,218,0 +170756461061,219,0 +170756461111,219,0 +170756461158,220,0 +170756461206,220,0 +170756461254,220,0 +170756461304,222,0 +170756461352,222,0 +170756461399,223,0 +170756461447,226,0 +170756461497,223,0 +170756461546,223,0 +170756461594,223,0 +170756461642,222,0 +170756461690,222,0 +170756461738,222,0 +170756461787,216,0 +170756461835,216,0 +170756461883,217,0 +170756461931,218,0 +170756461980,218,0 +170756462029,219,0 +170756462077,220,0 +170756462127,221,0 +170756462175,221,0 +170756462223,221,0 +170756462270,222,0 +170756462318,222,0 +170756462366,223,0 +170756462414,223,0 +170756462462,222,0 +170756462511,224,0 +170756462559,224,0 +170756462607,222,0 +170756462655,223,0 +170756462703,216,0 +170756462751,216,0 +170756462799,217,0 +170756462847,217,0 +170756462895,217,0 +170756462943,219,0 +170756462991,219,0 +170756463038,219,0 +170756463086,219,0 +170756463134,220,0 +170756463184,220,0 +170756463233,221,0 +170756463283,221,0 +170756463330,221,0 +170756463378,223,0 +170756463426,221,0 +170756463476,223,0 +170756463524,224,0 +170756463573,221,0 +170756463621,217,0 +170756463669,215,0 +170756463717,216,0 +170756463766,217,0 +170756463814,218,0 +170756463863,218,0 +170756463911,218,0 +170756463959,219,0 +170756464007,220,0 +170756464055,219,0 +170756464105,220,0 +170756464153,222,0 +170756464201,222,0 +170756464249,223,0 +170756464296,223,0 +170756464346,223,0 +170756464395,223,0 +170756464443,223,0 +170756464491,222,0 +170756464539,222,0 +170756464587,214,0 +170756464635,215,0 +170756464685,215,0 +170756464734,217,0 +170756464782,217,0 +170756464830,217,0 +170756464878,217,0 +170756464926,219,0 +170756464974,219,0 +170756465022,220,0 +170756465070,221,0 +170756465118,221,0 +170756465165,221,0 +170756465213,221,0 +170756465261,222,0 +170756465309,223,0 +170756465357,222,0 +170756465405,223,0 +170756465453,222,0 +170756465501,216,0 +170756465549,216,0 +170756465597,217,0 +170756465645,218,0 +170756465694,218,0 +170756465742,218,0 +170756465792,219,0 +170756465841,219,0 +170756465889,220,0 +170756465937,221,0 +170756465985,221,0 +170756466033,222,0 +170756466082,222,0 +170756466132,223,0 +170756466180,222,0 +170756466228,222,0 +170756466277,222,0 +170756466325,223,0 +170756466375,222,0 +170756466423,217,0 +170756466470,216,0 +170756466518,216,0 +170756466566,218,0 +170756466616,217,0 +170756466665,219,0 +170756466713,219,0 +170756466761,220,0 +170756466809,222,0 +170756466857,221,0 +170756466906,222,0 +170756466954,224,0 +170756467004,223,0 +170756467051,223,0 +170756467101,224,0 +170756467150,223,0 +170756467200,223,0 +170756467249,223,0 +170756467297,222,0 +170756467345,215,0 +170756467393,214,0 +170756467441,215,0 +170756467490,216,0 +170756467540,217,0 +170756467588,217,0 +170756467636,218,0 +170756467684,218,0 +170756467731,218,0 +170756467779,218,0 +170756467829,219,0 +170756467877,220,0 +170756467925,220,0 +170756467974,220,0 +170756468024,221,0 +170756468072,222,0 +170756468121,222,0 +170756468169,222,0 +170756468217,222,0 +170756468265,216,0 +170756468313,214,0 +170756468361,214,0 +170756468409,214,0 +170756468456,215,0 +170756468504,215,0 +170756468552,216,0 +170756468600,217,0 +170756468648,218,0 +170756468696,218,0 +170756468745,218,0 +170756468793,219,0 +170756468841,221,0 +170756468889,222,0 +170756468939,221,0 +170756468987,221,0 +170756469036,221,0 +170756469084,223,0 +170756469134,224,0 +170756469182,217,0 +170756469230,215,0 +170756469278,216,0 +170756469327,217,0 +170756469375,217,0 +170756469423,218,0 +170756469472,218,0 +170756469520,219,0 +170756469570,218,0 +170756469618,219,0 +170756469666,220,0 +170756469714,221,0 +170756469761,221,0 +170756469809,222,0 +170756469857,222,0 +170756469905,223,0 +170756469953,223,0 +170756470003,223,0 +170756470051,223,0 +170756470099,222,0 +170756470147,216,0 +170756470196,216,0 +170756470244,217,0 +170756470292,218,0 +170756470340,218,0 +170756470389,218,0 +170756470437,219,0 +170756470485,219,0 +170756470533,220,0 +170756470582,221,0 +170756470630,221,0 +170756470678,222,0 +170756470728,223,0 +170756470776,234,0 +170756470824,226,0 +170756470872,223,0 +170756470921,224,0 +170756470971,223,0 +170756471019,222,0 +170756471067,215,0 +170756471115,215,0 +170756471163,215,0 +170756471212,217,0 +170756471260,217,0 +170756471309,217,0 +170756471359,218,0 +170756471408,218,0 +170756471456,219,0 +170756471504,220,0 +170756471554,221,0 +170756471602,222,0 +170756471650,222,0 +170756471697,222,0 +170756471747,221,0 +170756471795,219,0 +170756471842,222,0 +170756471890,222,0 +170756471938,222,0 +170756471986,215,0 +170756472034,214,0 +170756472082,214,0 +170756472131,214,0 +170756472181,216,0 +170756472229,216,0 +170756472277,217,0 +170756472325,217,0 +170756472373,219,0 +170756472421,218,0 +170756472470,219,0 +170756472518,219,0 +170756472566,220,0 +170756472615,220,0 +170756472663,221,0 +170756472711,220,0 +170756472760,220,0 +170756472808,221,0 +170756472856,222,0 +170756472904,215,0 +170756472953,213,0 +170756473001,213,0 +170756473049,214,0 +170756473097,214,0 +170756473146,214,0 +170756473194,214,0 +170756473242,215,0 +170756473289,215,0 +170756473337,215,0 +170756473387,216,0 +170756473435,217,0 +170756473484,217,0 +170756473532,218,0 +170756473580,219,0 +170756473628,219,0 +170756473676,219,0 +170756473724,221,0 +170756473772,222,0 +170756473821,216,0 +170756473869,215,0 +170756473917,215,0 +170756473966,216,0 +170756474016,217,0 +170756474064,218,0 +170756474112,218,0 +170756474160,218,0 +170756474208,218,0 +170756474257,219,0 +170756474307,220,0 +170756474355,221,0 +170756474403,222,0 +170756474450,222,0 +170756474498,222,0 +170756474548,223,0 +170756474596,223,0 +170756474644,223,0 +170756474692,222,0 +170756474739,222,0 +170756474787,215,0 +170756474835,215,0 +170756474885,216,0 +170756474934,217,0 +170756474984,218,0 +170756475033,221,0 +170756475081,218,0 +170756475131,222,0 +170756475178,220,0 +170756475228,221,0 +170756475277,222,0 +170756475325,224,0 +170756475373,224,0 +170756475423,223,0 +170756475471,223,0 +170756475519,225,0 +170756475567,224,0 +170756475615,224,0 +170756475662,222,0 +170756475710,215,0 +170756475758,216,0 +170756475806,217,0 +170756475856,218,0 +170756475904,218,0 +170756475952,220,0 +170756476001,219,0 +170756476051,220,0 +170756476099,219,0 +170756476147,222,0 +170756476196,221,0 +170756476244,223,0 +170756476293,223,0 +170756476343,226,0 +170756476391,224,0 +170756476439,224,0 +170756476486,224,0 +170756476536,223,0 +170756476585,223,0 +170756476633,215,0 +170756476681,215,0 +170756476731,216,0 +170756476780,217,0 +170756476830,217,0 +170756476879,218,0 +170756476927,219,0 +170756476977,220,0 +170756477026,220,0 +170756477074,220,0 +170756477122,222,0 +170756477170,222,0 +170756477219,224,0 +170756477269,223,0 +170756477317,223,0 +170756477365,223,0 +170756477412,223,0 +170756477460,222,0 +170756477508,222,0 +170756477556,215,0 +170756477604,215,0 +170756477654,215,0 +170756477703,216,0 +170756477751,217,0 +170756477801,218,0 +170756477850,218,0 +170756477898,219,0 +170756477946,219,0 +170756477993,221,0 +170756478041,221,0 +170756478091,221,0 +170756478139,222,0 +170756478187,222,0 +170756478236,223,0 +170756478284,223,0 +170756478334,221,0 +170756478382,223,0 +170756478430,222,0 +170756478478,215,0 +170756478526,215,0 +170756478574,215,0 +170756478623,217,0 +170756478671,217,0 +170756478719,218,0 +170756478768,219,0 +170756478816,218,0 +170756478866,219,0 +170756478914,220,0 +170756478963,220,0 +170756479011,222,0 +170756479061,228,0 +170756479108,222,0 +170756479156,221,0 +170756479206,223,0 +170756479254,224,0 +170756479302,222,0 +170756479350,223,0 +170756479399,216,0 +170756479447,216,0 +170756479495,217,0 +170756479545,218,0 +170756479594,219,0 +170756479644,219,0 +170756479692,219,0 +170756479739,225,0 +170756479787,220,0 +170756479835,220,0 +170756479885,222,0 +170756479934,224,0 +170756479982,223,0 +170756480032,222,0 +170756480080,224,0 +170756480129,222,0 +170756480177,223,0 +170756480226,224,0 +170756480274,220,0 +170756480322,216,0 +170756480372,216,0 +170756480420,217,0 +170756480468,217,0 +170756480517,218,0 +170756480565,219,0 +170756480614,219,0 +170756480662,220,0 +170756480710,220,0 +170756480760,221,0 +170756480809,222,0 +170756480857,222,0 +170756480907,223,0 +170756480956,223,0 +170756481006,223,0 +170756481054,222,0 +170756481102,223,0 +170756481150,222,0 +170756481198,222,0 +170756481246,215,0 +170756481296,215,0 +170756481344,217,0 +170756481392,216,0 +170756481439,217,0 +170756481489,219,0 +170756481537,218,0 +170756481585,220,0 +170756481633,221,0 +170756481681,220,0 +170756481729,221,0 +170756481776,222,0 +170756481824,222,0 +170756481872,222,0 +170756481922,221,0 +170756481970,223,0 +170756482018,223,0 +170756482067,222,0 +170756482115,222,0 +170756482163,216,0 +170756482213,215,0 +170756482262,215,0 +170756482312,216,0 +170756482361,217,0 +170756482411,217,0 +170756482458,218,0 +170756482506,219,0 +170756482554,219,0 +170756482602,220,0 +170756482652,220,0 +170756482701,221,0 +170756482749,221,0 +170756482797,222,0 +170756482845,222,0 +170756482894,223,0 +170756482942,222,0 +170756482990,222,0 +170756483038,222,0 +170756483086,216,0 +170756483135,215,0 +170756483183,216,0 +170756483233,216,0 +170756483281,217,0 +170756483329,218,0 +170756483377,218,0 +170756483425,218,0 +170756483473,219,0 +170756483522,220,0 +170756483570,221,0 +170756483618,220,0 +170756483666,221,0 +170756483714,221,0 +170756483763,221,0 +170756483811,223,0 +170756483859,225,0 +170756483909,222,0 +170756483958,222,0 +170756484006,222,0 +170756484056,215,0 +170756484105,216,0 +170756484153,217,0 +170756484203,217,0 +170756484252,218,0 +170756484300,219,0 +170756484350,219,0 +170756484398,220,0 +170756484446,219,0 +170756484493,219,0 +170756484543,221,0 +170756484591,222,0 +170756484640,221,0 +170756484688,221,0 +170756484736,222,0 +170756484784,222,0 +170756484832,224,0 +170756484880,222,0 +170756484928,222,0 +170756484978,215,0 +170756485026,215,0 +170756485075,216,0 +170756485123,217,0 +170756485171,217,0 +170756485221,218,0 +170756485269,218,0 +170756485318,219,0 +170756485368,219,0 +170756485417,220,0 +170756485465,220,0 +170756485514,220,0 +170756485564,220,0 +170756485612,221,0 +170756485660,222,0 +170756485709,223,0 +170756485757,223,0 +170756485805,223,0 +170756485855,216,0 +170756485904,215,0 +170756485952,215,0 +170756486000,217,0 +170756486050,217,0 +170756486098,218,0 +170756486146,218,0 +170756486195,220,0 +170756486243,219,0 +170756486292,220,0 +170756486342,219,0 +170756486391,222,0 +170756486439,222,0 +170756486487,221,0 +170756486537,222,0 +170756486585,223,0 +170756486633,223,0 +170756486682,225,0 +170756486730,221,0 +170756486778,216,0 +170756486827,216,0 +170756486877,218,0 +170756486926,219,0 +170756486976,219,0 +170756487024,219,0 +170756487073,219,0 +170756487121,220,0 +170756487169,219,0 +170756487217,220,0 +170756487267,223,0 +170756487316,222,0 +170756487366,222,0 +170756487414,223,0 +170756487462,223,0 +170756487510,223,0 +170756487558,223,0 +170756487605,222,0 +170756487655,216,0 +170756487704,216,0 +170756487754,216,0 +170756487802,217,0 +170756487852,217,0 +170756487901,218,0 +170756487951,218,0 +170756487998,219,0 +170756488048,220,0 +170756488097,221,0 +170756488147,222,0 +170756488195,224,0 +170756488244,223,0 +170756488294,223,0 +170756488343,223,0 +170756488391,222,0 +170756488439,223,0 +170756488489,222,0 +170756488537,216,0 +170756488585,215,0 +170756488634,215,0 +170756488682,216,0 +170756488732,217,0 +170756488780,217,0 +170756488829,218,0 +170756488877,218,0 +170756488925,219,0 +170756488975,219,0 +170756489023,220,0 +170756489071,220,0 +170756489118,221,0 +170756489166,223,0 +170756489214,223,0 +170756489262,222,0 +170756489310,222,0 +170756489358,223,0 +170756489406,227,0 +170756489454,214,0 +170756489502,215,0 +170756489551,216,0 +170756489599,217,0 +170756489647,217,0 +170756489697,217,0 +170756489745,218,0 +170756489793,218,0 +170756489841,219,0 +170756489890,219,0 +170756489938,220,0 +170756489986,221,0 +170756490036,222,0 +170756490084,221,0 +170756490131,221,0 +170756490181,221,0 +170756490229,222,0 +170756490278,222,0 +170756490326,215,0 +170756490374,214,0 +170756490424,214,0 +170756490471,215,0 +170756490521,215,0 +170756490571,216,0 +170756490620,217,0 +170756490670,217,0 +170756490718,219,0 +170756490766,218,0 +170756490813,219,0 +170756490861,220,0 +170756490911,220,0 +170756490959,221,0 +170756491007,221,0 +170756491055,221,0 +170756491104,221,0 +170756491154,222,0 +170756491202,216,0 +170756491251,214,0 +170756491301,214,0 +170756491350,214,0 +170756491398,215,0 +170756491446,215,0 +170756491494,216,0 +170756491542,216,0 +170756491590,217,0 +170756491640,217,0 +170756491689,218,0 +170756491739,219,0 +170756491788,219,0 +170756491836,220,0 +170756491886,221,0 +170756491935,221,0 +170756491984,221,0 +170756492032,223,0 +170756492080,220,0 +170756492128,216,0 +170756492176,216,0 +170756492226,217,0 +170756492274,217,0 +170756492323,218,0 +170756492371,219,0 +170756492419,219,0 +170756492467,219,0 +170756492515,220,0 +170756492562,222,0 +170756492612,219,0 +170756492661,221,0 +170756492711,222,0 +170756492760,222,0 +170756492808,222,0 +170756492858,222,0 +170756492907,222,0 +170756492955,222,0 +170756493005,215,0 +170756493053,215,0 +170756493102,216,0 +170756493150,217,0 +170756493198,218,0 +170756493246,218,0 +170756493294,219,0 +170756493342,219,0 +170756493389,220,0 +170756493437,222,0 +170756493485,221,0 +170756493533,222,0 +170756493581,223,0 +170756493629,223,0 +170756493676,223,0 +170756493724,223,0 +170756493772,223,0 +170756493820,222,0 +170756493868,221,0 +170756493916,216,0 +170756493963,216,0 +170756494013,217,0 +170756494062,218,0 +170756494112,219,0 +170756494161,219,0 +170756494209,219,0 +170756494257,220,0 +170756494307,225,0 +170756494355,222,0 +170756494403,223,0 +170756494451,224,0 +170756494499,224,0 +170756494548,224,0 +170756494597,223,0 +170756494645,225,0 +170756494693,223,0 +170756494741,222,0 +170756494789,216,0 +170756494839,216,0 +170756494888,217,0 +170756494936,217,0 +170756494984,219,0 +170756495031,219,0 +170756495079,220,0 +170756495127,220,0 +170756495176,221,0 +170756495224,221,0 +170756495272,223,0 +170756495320,222,0 +170756495368,223,0 +170756495416,223,0 +170756495464,223,0 +170756495513,222,0 +170756495561,223,0 +170756495609,222,0 +170756495657,217,0 +170756495704,216,0 +170756495752,217,0 +170756495802,217,0 +170756495849,218,0 +170756495897,218,0 +170756495947,220,0 +170756495995,222,0 +170756496042,220,0 +170756496092,221,0 +170756496140,222,0 +170756496188,223,0 +170756496237,223,0 +170756496285,223,0 +170756496333,222,0 +170756496381,223,0 +170756496430,223,0 +170756496478,222,0 +170756496526,221,0 +170756496574,217,0 +170756496622,217,0 +170756496671,218,0 +170756496719,219,0 +170756496767,218,0 +170756496815,220,0 +170756496863,220,0 +170756496911,220,0 +170756496958,221,0 +170756497006,221,0 +170756497054,222,0 +170756497102,223,0 +170756497149,222,0 +170756497197,223,0 +170756497245,222,0 +170756497293,224,0 +170756497341,223,0 +170756497390,223,0 +170756497438,217,0 +170756497486,216,0 +170756497534,217,0 +170756497581,218,0 +170756497631,219,0 +170756497679,220,0 +170756497727,220,0 +170756497776,222,0 +170756497824,222,0 +170756497872,223,0 +170756497920,225,0 +170756497968,226,0 +170756498017,226,0 +170756498067,224,0 +170756498116,224,0 +170756498164,223,0 +170756498212,223,0 +170756498261,223,0 +170756498311,216,0 +170756498360,217,0 +170756498410,218,0 +170756498458,218,0 +170756498506,219,0 +170756498555,220,0 +170756498603,220,0 +170756498651,221,0 +170756498700,223,0 +170756498750,222,0 +170756498798,222,0 +170756498846,224,0 +170756498894,224,0 +170756498942,224,0 +170756498990,225,0 +170756499039,223,0 +170756499087,223,0 +170756499136,230,0 +170756499184,223,0 +170756499232,216,0 +170756499280,216,0 +170756499328,217,0 +170756499376,218,0 +170756499424,219,0 +170756499472,219,0 +170756499520,219,0 +170756499567,220,0 +170756499615,222,0 +170756499663,221,0 +170756499711,222,0 +170756499759,222,0 +170756499806,222,0 +170756499854,224,0 +170756499902,224,0 +170756499950,223,0 +170756499998,223,0 +170756500045,222,0 +170756500093,220,0 +170756500141,214,0 +170756500189,215,0 +170756500238,215,0 +170756500286,216,0 +170756500334,216,0 +170756500382,217,0 +170756500430,218,0 +170756500478,218,0 +170756500527,217,0 +170756500576,219,0 +170756500626,220,0 +170756500673,220,0 +170756500721,221,0 +170756500769,222,0 +170756500818,221,0 +170756500866,222,0 +170756500914,223,0 +170756500962,222,0 +170756501010,215,0 +170756501058,215,0 +170756501105,215,0 +170756501153,216,0 +170756501203,216,0 +170756501250,218,0 +170756501298,217,0 +170756501346,218,0 +170756501395,217,0 +170756501443,221,0 +170756501491,221,0 +170756501541,220,0 +170756501589,222,0 +170756501637,222,0 +170756501685,222,0 +170756501732,223,0 +170756501780,222,0 +170756501830,222,0 +170756501878,216,0 +170756501926,214,0 +170756501974,215,0 +170756502022,216,0 +170756502072,216,0 +170756502119,217,0 +170756502169,217,0 +170756502217,218,0 +170756502266,218,0 +170756502316,219,0 +170756502365,220,0 +170756502413,220,0 +170756502463,221,0 +170756502512,221,0 +170756502561,222,0 +170756502609,221,0 +170756502659,221,0 +170756502708,221,0 +170756502756,222,0 +170756502804,214,0 +170756502852,214,0 +170756502900,214,0 +170756502949,214,0 +170756502997,214,0 +170756503045,215,0 +170756503094,216,0 +170756503144,217,0 +170756503192,218,0 +170756503240,219,0 +170756503288,219,0 +170756503337,219,0 +170756503386,221,0 +170756503434,221,0 +170756503482,221,0 +170756503532,222,0 +170756503580,222,0 +170756503629,221,0 +170756503679,215,0 +170756503728,214,0 +170756503777,215,0 +170756503825,215,0 +170756503873,216,0 +170756503921,216,0 +170756503971,217,0 +170756504019,218,0 +170756504067,218,0 +170756504115,219,0 +170756504164,219,0 +170756504212,221,0 +170756504261,221,0 +170756504309,221,0 +170756504357,221,0 +170756504405,222,0 +170756504453,223,0 +170756504501,222,0 +170756504549,216,0 +170756504597,215,0 +170756504645,216,0 +170756504693,216,0 +170756504741,217,0 +170756504790,218,0 +170756504840,219,0 +170756504887,220,0 +170756504935,220,0 +170756504983,221,0 +170756505033,220,0 +170756505082,221,0 +170756505132,221,0 +170756505180,222,0 +170756505229,222,0 +170756505277,223,0 +170756505325,222,0 +170756505373,222,0 +170756505423,219,0 +170756505472,214,0 +170756505520,214,0 +170756505568,214,0 +170756505615,215,0 +170756505665,215,0 +170756505714,217,0 +170756505762,217,0 +170756505812,218,0 +170756505860,219,0 +170756505908,219,0 +170756505955,220,0 +170756506005,220,0 +170756506053,221,0 +170756506102,220,0 +170756506150,222,0 +170756506198,221,0 +170756506248,221,0 +170756506296,222,0 +170756506344,216,0 +170756506391,214,0 +170756506439,214,0 +170756506487,214,0 +170756506537,215,0 +170756506585,215,0 +170756506633,216,0 +170756506681,217,0 +170756506728,218,0 +170756506778,218,0 +170756506827,219,0 +170756506875,220,0 +170756506923,221,0 +170756506971,221,0 +170756507019,220,0 +170756507069,221,0 +170756507118,221,0 +170756507168,222,0 +170756507217,221,0 +170756507267,214,0 +170756507315,215,0 +170756507363,215,0 +170756507411,216,0 +170756507459,216,0 +170756507507,217,0 +170756507555,217,0 +170756507602,217,0 +170756507650,218,0 +170756507698,218,0 +170756507748,221,0 +170756507797,221,0 +170756507845,221,0 +170756507893,221,0 +170756507942,221,0 +170756507990,222,0 +170756508040,222,0 +170756508089,219,0 +170756508137,215,0 +170756508185,216,0 +170756508233,216,0 +170756508281,217,0 +170756508329,217,0 +170756508377,218,0 +170756508425,218,0 +170756508472,219,0 +170756508520,220,0 +170756508570,220,0 +170756508618,221,0 +170756508666,222,0 +170756508713,222,0 +170756508761,221,0 +170756508809,222,0 +170756508859,222,0 +170756508906,222,0 +170756508954,221,0 +170756509002,218,0 +170756509052,216,0 +170756509100,217,0 +170756509147,218,0 +170756509195,218,0 +170756509245,219,0 +170756509293,220,0 +170756509342,220,0 +170756509390,220,0 +170756509440,220,0 +170756509489,220,0 +170756509538,221,0 +170756509586,222,0 +170756509634,223,0 +170756509682,222,0 +170756509732,222,0 +170756509780,222,0 +170756509828,221,0 +170756509877,222,0 +170756509925,217,0 +170756509975,217,0 +170756510022,219,0 +170756510072,218,0 +170756510120,220,0 +170756510168,220,0 +170756510218,220,0 +170756510266,223,0 +170756510313,227,0 +170756510361,222,0 +170756510409,222,0 +170756510457,222,0 +170756510507,221,0 +170756510555,226,0 +170756510602,222,0 +170756510652,224,0 +170756510701,222,0 +170756510749,221,0 +170756510797,216,0 +170756510845,216,0 +170756510893,217,0 +170756510943,217,0 +170756510991,218,0 +170756511040,219,0 +170756511088,219,0 +170756511136,219,0 +170756511184,221,0 +170756511232,221,0 +170756511280,220,0 +170756511328,221,0 +170756511376,224,0 +170756511425,220,0 +170756511475,222,0 +170756511522,222,0 +170756511570,222,0 +170756511618,223,0 +170756511666,215,0 +170756511714,214,0 +170756511764,215,0 +170756511812,215,0 +170756511861,216,0 +170756511909,217,0 +170756511957,217,0 +170756512005,218,0 +170756512055,218,0 +170756512102,226,0 +170756512150,219,0 +170756512198,218,0 +170756512246,221,0 +170756512294,222,0 +170756512344,221,0 +170756512392,222,0 +170756512441,222,0 +170756512490,221,0 +170756512538,223,0 +170756512588,214,0 +170756512636,216,0 +170756512685,216,0 +170756512735,217,0 +170756512784,217,0 +170756512832,217,0 +170756512880,218,0 +170756512928,219,0 +170756512977,218,0 +170756513027,219,0 +170756513074,221,0 +170756513124,221,0 +170756513172,222,0 +170756513221,222,0 +170756513271,223,0 +170756513320,224,0 +170756513368,221,0 +170756513416,222,0 +170756513464,215,0 +170756513513,214,0 +170756513563,215,0 +170756513611,216,0 +170756513659,216,0 +170756513707,217,0 +170756513754,218,0 +170756513802,218,0 +170756513850,218,0 +170756513898,221,0 +170756513946,220,0 +170756513995,221,0 +170756514043,222,0 +170756514093,222,0 +170756514141,223,0 +170756514189,223,0 +170756514237,222,0 +170756514285,222,0 +170756514334,215,0 +170756514384,214,0 +170756514431,214,0 +170756514481,215,0 +170756514529,215,0 +170756514577,216,0 +170756514624,216,0 +170756514672,217,0 +170756514720,217,0 +170756514770,218,0 +170756514818,218,0 +170756514866,219,0 +170756514914,221,0 +170756514962,221,0 +170756515010,222,0 +170756515059,221,0 +170756515109,221,0 +170756515158,221,0 +170756515208,222,0 +170756515256,214,0 +170756515303,214,0 +170756515351,214,0 +170756515399,215,0 +170756515447,216,0 +170756515495,216,0 +170756515544,217,0 +170756515592,217,0 +170756515640,219,0 +170756515688,219,0 +170756515736,220,0 +170756515784,220,0 +170756515831,221,0 +170756515879,222,0 +170756515929,222,0 +170756515978,226,0 +170756516027,222,0 +170756516077,221,0 +170756516126,215,0 +170756516174,214,0 +170756516222,214,0 +170756516270,215,0 +170756516319,216,0 +170756516367,217,0 +170756516416,217,0 +170756516466,219,0 +170756516515,218,0 +170756516563,219,0 +170756516611,220,0 +170756516659,221,0 +170756516707,221,0 +170756516756,219,0 +170756516806,222,0 +170756516855,222,0 +170756516905,222,0 +170756516952,220,0 +170756517002,219,0 +170756517050,214,0 +170756517098,215,0 +170756517146,215,0 +170756517194,216,0 +170756517242,216,0 +170756517290,217,0 +170756517338,216,0 +170756517385,218,0 +170756517433,218,0 +170756517483,218,0 +170756517531,220,0 +170756517580,221,0 +170756517628,222,0 +170756517677,222,0 +170756517725,221,0 +170756517773,222,0 +170756517823,221,0 +170756517871,222,0 +170756517918,215,0 +170756517966,216,0 +170756518014,216,0 +170756518062,217,0 +170756518110,217,0 +170756518158,217,0 +170756518206,218,0 +170756518253,218,0 +170756518301,218,0 +170756518349,219,0 +170756518399,220,0 +170756518446,220,0 +170756518494,220,0 +170756518542,224,0 +170756518590,223,0 +170756518639,223,0 +170756518687,222,0 +170756518735,222,0 +170756518782,216,0 +170756518830,216,0 +170756518878,217,0 +170756518926,217,0 +170756518974,219,0 +170756519022,220,0 +170756519069,221,0 +170756519119,221,0 +170756519167,221,0 +170756519215,221,0 +170756519262,222,0 +170756519310,222,0 +170756519358,224,0 +170756519406,224,0 +170756519454,223,0 +170756519501,223,0 +170756519549,225,0 +170756519597,223,0 +170756519645,222,0 +170756519693,217,0 +170756519741,216,0 +170756519790,216,0 +170756519838,217,0 +170756519886,217,0 +170756519935,218,0 +170756519983,219,0 +170756520031,220,0 +170756520079,221,0 +170756520127,222,0 +170756520175,223,0 +170756520222,222,0 +170756520272,222,0 +170756520320,221,0 +170756520367,222,0 +170756520415,222,0 +170756520463,222,0 +170756520512,222,0 +170756520560,216,0 +170756520608,214,0 +170756520656,214,0 +170756520704,216,0 +170756520751,216,0 +170756520799,217,0 +170756520849,218,0 +170756520897,218,0 +170756520944,220,0 +170756520992,219,0 +170756521042,221,0 +170756521090,220,0 +170756521137,221,0 +170756521185,221,0 +170756521233,222,0 +170756521281,222,0 +170756521329,222,0 +170756521377,223,0 +170756521426,221,0 +170756521476,215,0 +170756521525,214,0 +170756521573,216,0 +170756521621,217,0 +170756521669,217,0 +170756521717,217,0 +170756521765,217,0 +170756521812,218,0 +170756521860,219,0 +170756521908,219,0 +170756521956,220,0 +170756522004,221,0 +170756522051,222,0 +170756522099,222,0 +170756522147,221,0 +170756522195,222,0 +170756522243,222,0 +170756522292,222,0 +170756522340,216,0 +170756522388,215,0 +170756522436,216,0 +170756522484,216,0 +170756522531,218,0 +170756522579,218,0 +170756522627,219,0 +170756522675,219,0 +170756522722,220,0 +170756522770,220,0 +170756522818,220,0 +170756522867,220,0 +170756522915,224,0 +170756522963,222,0 +170756523011,222,0 +170756523059,223,0 +170756523106,222,0 +170756523154,223,0 +170756523202,223,0 +170756523250,215,0 +170756523299,215,0 +170756523349,215,0 +170756523396,217,0 +170756523444,217,0 +170756523494,217,0 +170756523542,218,0 +170756523591,219,0 +170756523639,220,0 +170756523687,220,0 +170756523735,220,0 +170756523783,221,0 +170756523831,221,0 +170756523878,222,0 +170756523926,221,0 +170756523974,221,0 +170756524022,222,0 +170756524069,223,0 +170756524117,215,0 +170756524165,214,0 +170756524213,215,0 +170756524261,216,0 +170756524309,217,0 +170756524356,217,0 +170756524404,219,0 +170756524452,219,0 +170756524502,219,0 +170756524549,220,0 +170756524597,220,0 +170756524645,222,0 +170756524693,222,0 +170756524741,221,0 +170756524789,222,0 +170756524837,222,0 +170756524885,222,0 +170756524933,222,0 +170756524982,221,0 +170756525030,216,0 +170756525078,216,0 +170756525127,217,0 +170756525175,217,0 +170756525223,218,0 +170756525271,219,0 +170756525319,220,0 +170756525367,220,0 +170756525415,220,0 +170756525463,220,0 +170756525511,221,0 +170756525559,221,0 +170756525608,223,0 +170756525656,222,0 +170756525706,222,0 +170756525754,222,0 +170756525802,222,0 +170756525851,221,0 +170756525899,216,0 +170756525948,216,0 +170756525996,216,0 +170756526046,217,0 +170756526094,218,0 +170756526142,218,0 +170756526190,218,0 +170756526238,219,0 +170756526286,219,0 +170756526335,220,0 +170756526383,221,0 +170756526432,223,0 +170756526480,221,0 +170756526528,222,0 +170756526576,221,0 +170756526626,224,0 +170756526675,222,0 +170756526724,221,0 +170756526774,221,0 +170756526822,216,0 +170756526870,217,0 +170756526918,217,0 +170756526967,217,0 +170756527015,218,0 +170756527065,219,0 +170756527113,219,0 +170756527161,220,0 +170756527210,221,0 +170756527259,220,0 +170756527307,222,0 +170756527357,222,0 +170756527405,222,0 +170756527453,223,0 +170756527501,221,0 +170756527550,223,0 +170756527598,223,0 +170756527647,220,0 +170756527695,215,0 +170756527743,214,0 +170756527790,215,0 +170756527838,216,0 +170756527886,216,0 +170756527934,217,0 +170756527982,217,0 +170756528029,217,0 +170756528077,218,0 +170756528125,219,0 +170756528173,219,0 +170756528221,219,0 +170756528269,221,0 +170756528316,222,0 +170756528364,221,0 +170756528412,221,0 +170756528460,221,0 +170756528508,222,0 +170756528558,216,0 +170756528607,214,0 +170756528655,214,0 +170756528703,214,0 +170756528752,215,0 +170756528800,215,0 +170756528850,216,0 +170756528897,216,0 +170756528945,217,0 +170756528993,218,0 +170756529041,218,0 +170756529089,220,0 +170756529137,220,0 +170756529186,221,0 +170756529236,221,0 +170756529284,221,0 +170756529332,221,0 +170756529380,221,0 +170756529428,222,0 +170756529476,214,0 +170756529523,214,0 +170756529571,214,0 +170756529621,214,0 +170756529670,215,0 +170756529720,216,0 +170756529768,217,0 +170756529817,217,0 +170756529865,219,0 +170756529913,219,0 +170756529961,220,0 +170756530009,221,0 +170756530057,221,0 +170756530105,221,0 +170756530154,221,0 +170756530202,220,0 +170756530250,221,0 +170756530298,222,0 +170756530347,216,0 +170756530397,214,0 +170756530445,214,0 +170756530494,214,0 +170756530542,215,0 +170756530591,215,0 +170756530639,215,0 +170756530689,216,0 +170756530737,217,0 +170756530785,217,0 +170756530834,218,0 +170756530884,219,0 +170756530933,220,0 +170756530983,220,0 +170756531032,221,0 +170756531080,221,0 +170756531128,222,0 +170756531178,222,0 +170756531227,217,0 +170756531277,214,0 +170756531326,214,0 +170756531374,214,0 +170756531422,214,0 +170756531470,215,0 +170756531518,216,0 +170756531568,216,0 +170756531616,217,0 +170756531664,217,0 +170756531712,218,0 +170756531759,219,0 +170756531809,219,0 +170756531857,220,0 +170756531906,221,0 +170756531954,221,0 +170756532002,222,0 +170756532050,221,0 +170756532099,222,0 +170756532147,214,0 +170756532195,214,0 +170756532245,215,0 +170756532293,215,0 +170756532342,215,0 +170756532390,216,0 +170756532438,216,0 +170756532487,217,0 +170756532535,218,0 +170756532583,218,0 +170756532631,219,0 +170756532679,219,0 +170756532727,220,0 +170756532775,221,0 +170756532823,222,0 +170756532871,222,0 +170756532919,221,0 +170756532966,222,0 +170756533014,216,0 +170756533062,214,0 +170756533110,215,0 +170756533158,215,0 +170756533206,216,0 +170756533254,217,0 +170756533303,217,0 +170756533351,217,0 +170756533399,218,0 +170756533446,219,0 +170756533494,219,0 +170756533542,220,0 +170756533590,221,0 +170756533638,221,0 +170756533686,222,0 +170756533733,223,0 +170756533781,221,0 +170756533829,228,0 +170756533877,221,0 +170756533925,214,0 +170756533975,214,0 +170756534024,214,0 +170756534072,215,0 +170756534120,216,0 +170756534168,216,0 +170756534217,216,0 +170756534265,217,0 +170756534315,217,0 +170756534364,218,0 +170756534412,218,0 +170756534462,220,0 +170756534509,221,0 +170756534557,221,0 +170756534605,221,0 +170756534653,222,0 +170756534701,222,0 +170756534748,223,0 +170756534796,215,0 +170756534844,214,0 +170756534892,214,0 +170756534940,214,0 +170756534987,214,0 +170756535037,214,0 +170756535085,215,0 +170756535133,215,0 +170756535180,215,0 +170756535228,215,0 +170756535276,216,0 +170756535324,217,0 +170756535372,217,0 +170756535420,218,0 +170756535468,220,0 +170756535517,219,0 +170756535565,220,0 +170756535615,222,0 +170756535662,216,0 +170756535710,214,0 +170756535760,214,0 +170756535808,215,0 +170756535856,215,0 +170756535904,216,0 +170756535953,216,0 +170756536003,217,0 +170756536051,218,0 +170756536099,218,0 +170756536148,218,0 +170756536196,220,0 +170756536244,219,0 +170756536292,220,0 +170756536342,220,0 +170756536391,220,0 +170756536439,220,0 +170756536487,222,0 +170756536535,222,0 +170756536583,215,0 +170756536630,215,0 +170756536678,216,0 +170756536726,219,0 +170756536775,218,0 +170756536823,218,0 +170756536873,218,0 +170756536921,219,0 +170756536968,220,0 +170756537016,220,0 +170756537064,222,0 +170756537112,221,0 +170756537160,223,0 +170756537208,223,0 +170756537256,223,0 +170756537304,222,0 +170756537352,223,0 +170756537401,222,0 +170756537449,216,0 +170756537498,214,0 +170756537546,215,0 +170756537596,216,0 +170756537644,217,0 +170756537691,217,0 +170756537739,219,0 +170756537789,219,0 +170756537838,221,0 +170756537886,221,0 +170756537934,222,0 +170756537982,223,0 +170756538030,221,0 +170756538078,224,0 +170756538126,222,0 +170756538176,223,0 +170756538224,222,0 +170756538273,222,0 +170756538321,223,0 +170756538369,215,0 +170756538417,215,0 +170756538465,216,0 +170756538513,218,0 +170756538562,218,0 +170756538610,218,0 +170756538658,220,0 +170756538706,220,0 +170756538754,221,0 +170756538801,221,0 +170756538849,221,0 +170756538897,222,0 +170756538945,222,0 +170756538993,221,0 +170756539040,223,0 +170756539088,222,0 +170756539136,222,0 +170756539184,222,0 +170756539232,217,0 +170756539282,216,0 +170756539330,216,0 +170756539378,217,0 +170756539426,218,0 +170756539474,219,0 +170756539521,220,0 +170756539571,220,0 +170756539620,221,0 +170756539670,221,0 +170756539719,221,0 +170756539769,223,0 +170756539817,223,0 +170756539865,222,0 +170756539913,224,0 +170756539961,222,0 +170756540009,222,0 +170756540058,222,0 +170756540106,217,0 +170756540155,216,0 +170756540205,218,0 +170756540253,218,0 +170756540301,219,0 +170756540348,219,0 +170756540396,221,0 +170756540444,221,0 +170756540494,221,0 +170756540542,221,0 +170756540590,222,0 +170756540637,222,0 +170756540687,223,0 +170756540737,224,0 +170756540785,224,0 +170756540832,223,0 +170756540880,222,0 +170756540930,222,0 +170756540978,220,0 +170756541026,217,0 +170756541074,218,0 +170756541122,219,0 +170756541169,219,0 +170756541217,219,0 +170756541265,220,0 +170756541313,221,0 +170756541363,221,0 +170756541412,222,0 +170756541460,222,0 +170756541510,224,0 +170756541557,224,0 +170756541605,223,0 +170756541655,223,0 +170756541703,223,0 +170756541751,222,0 +170756541800,224,0 +170756541848,222,0 +170756541896,216,0 +170756541946,216,0 +170756541994,217,0 +170756542042,218,0 +170756542090,219,0 +170756542138,219,0 +170756542185,220,0 +170756542235,220,0 +170756542283,221,0 +170756542332,221,0 +170756542380,223,0 +170756542428,223,0 +170756542476,222,0 +170756542524,223,0 +170756542572,223,0 +170756542622,222,0 +170756542670,222,0 +170756542718,222,0 +170756542766,221,0 +170756542814,215,0 +170756542861,216,0 +170756542909,217,0 +170756542959,218,0 +170756543008,218,0 +170756543058,220,0 +170756543107,219,0 +170756543155,220,0 +170756543203,221,0 +170756543251,221,0 +170756543299,223,0 +170756543346,223,0 +170756543394,222,0 +170756543442,223,0 +170756543490,223,0 +170756543538,223,0 +170756543586,222,0 +170756543633,222,0 +170756543681,215,0 +170756543729,214,0 +170756543777,215,0 +170756543825,215,0 +170756543874,216,0 +170756543924,217,0 +170756543972,218,0 +170756544020,218,0 +170756544069,219,0 +170756544117,220,0 +170756544165,219,0 +170756544213,221,0 +170756544261,221,0 +170756544310,223,0 +170756544358,222,0 +170756544406,222,0 +170756544454,223,0 +170756544502,222,0 +170756544552,216,0 +170756544600,214,0 +170756544648,214,0 +170756544695,214,0 +170756544743,215,0 +170756544791,215,0 +170756544841,215,0 +170756544890,216,0 +170756544940,216,0 +170756544989,218,0 +170756545039,218,0 +170756545087,219,0 +170756545135,220,0 +170756545183,220,0 +170756545231,221,0 +170756545278,221,0 +170756545326,221,0 +170756545374,222,0 +170756545422,222,0 +170756545470,214,0 +170756545517,214,0 +170756545565,214,0 +170756545613,214,0 +170756545661,215,0 +170756545710,216,0 +170756545758,218,0 +170756545806,217,0 +170756545854,217,0 +170756545902,219,0 +170756545949,219,0 +170756545997,220,0 +170756546045,220,0 +170756546094,220,0 +170756546144,222,0 +170756546192,222,0 +170756546239,222,0 +170756546287,222,0 +170756546337,215,0 +170756546385,214,0 +170756546433,215,0 +170756546480,215,0 +170756546528,217,0 +170756546576,217,0 +170756546624,218,0 +170756546672,219,0 +170756546721,219,0 +170756546769,220,0 +170756546817,220,0 +170756546864,220,0 +170756546914,222,0 +170756546962,221,0 +170756547010,222,0 +170756547057,221,0 +170756547105,222,0 +170756547153,222,0 +170756547201,221,0 +170756547250,216,0 +170756547298,216,0 +170756547346,217,0 +170756547394,217,0 +170756547442,218,0 +170756547490,219,0 +170756547538,219,0 +170756547588,220,0 +170756547636,220,0 +170756547685,222,0 +170756547733,221,0 +170756547781,223,0 +170756547830,222,0 +170756547878,221,0 +170756547928,221,0 +170756547976,222,0 +170756548025,222,0 +170756548073,221,0 +170756548121,217,0 +170756548171,216,0 +170756548219,217,0 +170756548266,218,0 +170756548314,218,0 +170756548362,220,0 +170756548410,220,0 +170756548458,220,0 +170756548507,222,0 +170756548557,223,0 +170756548606,221,0 +170756548656,222,0 +170756548705,223,0 +170756548753,222,0 +170756548803,223,0 +170756548850,224,0 +170756548898,222,0 +170756548946,222,0 +170756548994,215,0 +170756549042,214,0 +170756549090,214,0 +170756549138,215,0 +170756549186,216,0 +170756549234,217,0 +170756549283,218,0 +170756549333,219,0 +170756549382,218,0 +170756549432,219,0 +170756549481,218,0 +170756549529,219,0 +170756549578,220,0 +170756549626,220,0 +170756549674,219,0 +170756549724,220,0 +170756549772,218,0 +170756549821,221,0 +170756549869,221,0 +170756549917,214,0 +170756549965,214,0 +170756550013,215,0 +170756550061,216,0 +170756550109,217,0 +170756550158,216,0 +170756550206,217,0 +170756550256,220,0 +170756550304,219,0 +170756550351,218,0 +170756550399,219,0 +170756550449,220,0 +170756550498,220,0 +170756550548,220,0 +170756550595,221,0 +170756550643,222,0 +170756550691,222,0 +170756550739,222,0 +170756550787,215,0 +170756550835,214,0 +170756550883,215,0 +170756550933,215,0 +170756550980,216,0 +170756551030,217,0 +170756551078,218,0 +170756551126,217,0 +170756551175,218,0 +170756551225,219,0 +170756551275,219,0 +170756551323,221,0 +170756551371,220,0 +170756551418,221,0 +170756551466,222,0 +170756551514,223,0 +170756551562,223,0 +170756551610,223,0 +170756551658,215,0 +170756551708,214,0 +170756551756,216,0 +170756551805,216,0 +170756551853,216,0 +170756551901,217,0 +170756551949,217,0 +170756551997,217,0 +170756552045,218,0 +170756552093,218,0 +170756552142,219,0 +170756552190,220,0 +170756552238,222,0 +170756552286,221,0 +170756552334,221,0 +170756552382,220,0 +170756552430,222,0 +170756552478,222,0 +170756552526,221,0 +170756552574,215,0 +170756552622,216,0 +170756552670,216,0 +170756552717,219,0 +170756552767,217,0 +170756552815,218,0 +170756552863,219,0 +170756552910,219,0 +170756552958,219,0 +170756553006,220,0 +170756553056,221,0 +170756553104,221,0 +170756553151,221,0 +170756553201,222,0 +170756553250,221,0 +170756553300,223,0 +170756553348,222,0 +170756553397,222,0 +170756553447,216,0 +170756553495,216,0 +170756553543,216,0 +170756553591,217,0 +170756553639,218,0 +170756553687,219,0 +170756553736,219,0 +170756553784,219,0 +170756553832,220,0 +170756553880,222,0 +170756553928,222,0 +170756553976,223,0 +170756554025,223,0 +170756554073,223,0 +170756554123,222,0 +170756554171,222,0 +170756554218,222,0 +170756554268,222,0 +170756554316,217,0 +170756554364,216,0 +170756554413,216,0 +170756554461,218,0 +170756554511,218,0 +170756554559,218,0 +170756554608,219,0 +170756554656,219,0 +170756554705,219,0 +170756554753,223,0 +170756554803,221,0 +170756554851,222,0 +170756554899,222,0 +170756554946,221,0 +170756554996,223,0 +170756555045,222,0 +170756555095,222,0 +170756555143,222,0 +170756555192,219,0 +170756555242,215,0 +170756555290,216,0 +170756555337,217,0 +170756555385,217,0 +170756555433,217,0 +170756555481,218,0 +170756555529,219,0 +170756555579,219,0 +170756555628,220,0 +170756555676,220,0 +170756555725,224,0 +170756555773,222,0 +170756555823,223,0 +170756555871,221,0 +170756555918,222,0 +170756555966,225,0 +170756556016,224,0 +170756556064,222,0 +170756556112,215,0 +170756556161,215,0 +170756556209,215,0 +170756556258,216,0 +170756556306,217,0 +170756556356,217,0 +170756556404,218,0 +170756556453,219,0 +170756556501,219,0 +170756556550,220,0 +170756556600,221,0 +170756556648,221,0 +170756556696,221,0 +170756556744,221,0 +170756556791,221,0 +170756556841,222,0 +170756556889,221,0 +170756556938,223,0 +170756556988,215,0 +170756557036,214,0 +170756557084,214,0 +170756557132,215,0 +170756557180,215,0 +170756557228,216,0 +170756557276,217,0 +170756557323,217,0 +170756557373,218,0 +170756557421,219,0 +170756557469,219,0 +170756557518,219,0 +170756557566,221,0 +170756557614,222,0 +170756557662,221,0 +170756557712,222,0 +170756557761,222,0 +170756557809,224,0 +170756557857,216,0 +170756557905,214,0 +170756557955,214,0 +170756558004,214,0 +170756558052,214,0 +170756558100,215,0 +170756558148,216,0 +170756558198,217,0 +170756558246,217,0 +170756558294,218,0 +170756558343,220,0 +170756558391,220,0 +170756558440,220,0 +170756558488,220,0 +170756558538,223,0 +170756558587,222,0 +170756558637,224,0 +170756558685,222,0 +170756558733,223,0 +170756558781,215,0 +170756558828,214,0 +170756558876,214,0 +170756558924,215,0 +170756558972,216,0 +170756559020,216,0 +170756559069,217,0 +170756559119,217,0 +170756559167,218,0 +170756559215,219,0 +170756559264,220,0 +170756559312,219,0 +170756559360,220,0 +170756559408,222,0 +170756559456,223,0 +170756559503,221,0 +170756559551,222,0 +170756559601,222,0 +170756559649,215,0 +170756559698,214,0 +170756559746,214,0 +170756559795,214,0 +170756559843,215,0 +170756559891,215,0 +170756559939,216,0 +170756559987,216,0 +170756560037,217,0 +170756560086,218,0 +170756560135,218,0 +170756560183,220,0 +170756560233,220,0 +170756560282,221,0 +170756560330,221,0 +170756560378,222,0 +170756560426,222,0 +170756560474,221,0 +170756560522,215,0 +170756560571,214,0 +170756560619,215,0 +170756560667,216,0 +170756560717,216,0 +170756560766,217,0 +170756560816,218,0 +170756560863,218,0 +170756560913,218,0 +170756560962,219,0 +170756561012,221,0 +170756561060,221,0 +170756561108,221,0 +170756561157,221,0 +170756561205,222,0 +170756561253,226,0 +170756561301,222,0 +170756561349,221,0 +170756561398,221,0 +170756561446,214,0 +170756561496,215,0 +170756561544,216,0 +170756561592,218,0 +170756561640,218,0 +170756561687,217,0 +170756561737,219,0 +170756561785,219,0 +170756561834,220,0 +170756561882,220,0 +170756561930,221,0 +170756561978,221,0 +170756562027,222,0 +170756562075,222,0 +170756562123,222,0 +170756562171,222,0 +170756562219,223,0 +170756562267,223,0 +170756562315,217,0 +170756562363,217,0 +170756562411,218,0 +170756562459,218,0 +170756562508,217,0 +170756562556,219,0 +170756562605,220,0 +170756562653,221,0 +170756562701,224,0 +170756562749,222,0 +170756562799,222,0 +170756562848,224,0 +170756562898,225,0 +170756562945,223,0 +170756562993,224,0 +170756563041,224,0 +170756563089,223,0 +170756563139,223,0 +170756563187,216,0 +170756563236,214,0 +170756563286,215,0 +170756563334,215,0 +170756563382,216,0 +170756563429,217,0 +170756563477,217,0 +170756563525,218,0 +170756563573,219,0 +170756563623,219,0 +170756563672,220,0 +170756563720,221,0 +170756563768,222,0 +170756563816,223,0 +170756563866,223,0 +170756563914,222,0 +170756563961,222,0 +170756564009,222,0 +170756564057,221,0 +170756564105,214,0 +170756564153,214,0 +170756564201,214,0 +170756564249,214,0 +170756564297,215,0 +170756564345,215,0 +170756564394,216,0 +170756564442,216,0 +170756564490,217,0 +170756564538,218,0 +170756564588,219,0 +170756564636,219,0 +170756564683,223,0 +170756564733,221,0 +170756564781,222,0 +170756564830,222,0 +170756564880,222,0 +170756564928,222,0 +170756564976,215,0 +170756565025,214,0 +170756565075,214,0 +170756565124,214,0 +170756565172,215,0 +170756565220,215,0 +170756565268,216,0 +170756565318,216,0 +170756565365,217,0 +170756565415,217,0 +170756565463,218,0 +170756565511,219,0 +170756565560,219,0 +170756565610,220,0 +170756565658,220,0 +170756565707,221,0 +170756565757,221,0 +170756565805,222,0 +170756565854,215,0 +170756565904,214,0 +170756565951,214,0 +170756565999,215,0 +170756566047,215,0 +170756566097,216,0 +170756566146,216,0 +170756566196,216,0 +170756566244,217,0 +170756566293,217,0 +170756566341,218,0 +170756566389,219,0 +170756566437,220,0 +170756566485,221,0 +170756566533,223,0 +170756566583,223,0 +170756566631,222,0 +170756566678,221,0 +170756566726,220,0 +170756566776,214,0 +170756566824,215,0 +170756566872,216,0 +170756566921,216,0 +170756566969,217,0 +170756567019,218,0 +170756567067,218,0 +170756567114,219,0 +170756567162,220,0 +170756567210,220,0 +170756567260,220,0 +170756567309,221,0 +170756567359,222,0 +170756567407,222,0 +170756567456,222,0 +170756567504,222,0 +170756567554,222,0 +170756567603,221,0 +170756567651,217,0 +170756567700,217,0 +170756567750,218,0 +170756567798,218,0 +170756567847,219,0 +170756567895,220,0 +170756567943,221,0 +170756567992,220,0 +170756568040,222,0 +170756568090,222,0 +170756568138,222,0 +170756568187,222,0 +170756568237,222,0 +170756568286,223,0 +170756568334,223,0 +170756568384,223,0 +170756568432,222,0 +170756568481,221,0 +170756568529,220,0 +170756568579,220,0 +170756568627,220,0 +170756568675,221,0 +170756568723,221,0 +170756568771,222,0 +170756568818,222,0 +170756568866,223,0 +170756568914,224,0 +170756568962,223,0 +170756569010,223,0 +170756569058,224,0 +170756569107,223,0 +170756569155,224,0 +170756569203,224,0 +170756569251,222,0 +170756569299,222,0 +170756569347,223,0 +170756569395,221,0 +170756569443,221,0 +170756569491,220,0 +170756569540,221,0 +170756569590,222,0 +170756569638,221,0 +170756569687,223,0 +170756569735,223,0 +170756569783,224,0 +170756569832,223,0 +170756569882,223,0 +170756569930,223,0 +170756569978,224,0 +170756570026,223,0 +170756570074,223,0 +170756570122,223,0 +170756570169,222,0 +170756570219,222,0 +170756570268,221,0 +170756570316,217,0 +170756570366,220,0 +170756570414,218,0 +170756570463,218,0 +170756570513,219,0 +170756570560,219,0 +170756570608,220,0 +170756570658,220,0 +170756570707,221,0 +170756570755,222,0 +170756570803,222,0 +170756570851,222,0 +170756570901,222,0 +170756570949,223,0 +170756570998,223,0 +170756571048,225,0 +170756571096,223,0 +170756571144,222,0 +170756571192,215,0 +170756571240,215,0 +170756571287,216,0 +170756571337,217,0 +170756571385,217,0 +170756571433,217,0 +170756571481,218,0 +170756571529,219,0 +170756571578,220,0 +170756571628,219,0 +170756571677,219,0 +170756571725,220,0 +170756571773,221,0 +170756571821,222,0 +170756571869,222,0 +170756571918,221,0 +170756571968,223,0 +170756572016,222,0 +170756572064,222,0 +170756572113,214,0 +170756572161,216,0 +170756572209,215,0 +170756572257,216,0 +170756572305,216,0 +170756572353,217,0 +170756572401,218,0 +170756572449,218,0 +170756572498,221,0 +170756572546,219,0 +170756572594,219,0 +170756572644,220,0 +170756572692,221,0 +170756572741,220,0 +170756572791,221,0 +170756572838,221,0 +170756572888,223,0 +170756572937,222,0 +170756572987,215,0 +170756573035,214,0 +170756573084,214,0 +170756573132,214,0 +170756573180,215,0 +170756573230,216,0 +170756573279,216,0 +170756573327,217,0 +170756573375,218,0 +170756573424,218,0 +170756573474,219,0 +170756573523,220,0 +170756573573,221,0 +170756573621,221,0 +170756573669,220,0 +170756573717,222,0 +170756573766,223,0 +170756573816,221,0 +170756573864,215,0 +170756573913,214,0 +170756573961,213,0 +170756574009,214,0 +170756574058,214,0 +170756574108,215,0 +170756574156,216,0 +170756574204,216,0 +170756574253,217,0 +170756574301,217,0 +170756574349,218,0 +170756574397,219,0 +170756574445,219,0 +170756574493,221,0 +170756574541,220,0 +170756574589,222,0 +170756574637,222,0 +170756574685,222,0 +170756574735,223,0 +170756574784,214,0 +170756574832,214,0 +170756574880,214,0 +170756574928,214,0 +170756574977,215,0 +170756575025,216,0 +170756575075,216,0 +170756575123,217,0 +170756575172,217,0 +170756575220,217,0 +170756575268,218,0 +170756575316,219,0 +170756575364,220,0 +170756575412,221,0 +170756575461,221,0 +170756575509,221,0 +170756575559,221,0 +170756575607,222,0 +170756575656,215,0 +170756575704,214,0 +170756575752,214,0 +170756575800,214,0 +170756575849,214,0 +170756575897,215,0 +170756575945,215,0 +170756575993,215,0 +170756576041,216,0 +170756576089,217,0 +170756576137,218,0 +170756576185,218,0 +170756576233,218,0 +170756576281,219,0 +170756576330,219,0 +170756576380,220,0 +170756576428,220,0 +170756576476,221,0 +170756576525,215,0 +170756576575,214,0 +170756576624,214,0 +170756576674,214,0 +170756576722,215,0 +170756576770,216,0 +170756576819,217,0 +170756576867,217,0 +170756576915,217,0 +170756576963,218,0 +170756577011,219,0 +170756577059,219,0 +170756577107,220,0 +170756577155,220,0 +170756577204,222,0 +170756577252,221,0 +170756577300,222,0 +170756577348,221,0 +170756577396,222,0 +170756577444,215,0 +170756577492,214,0 +170756577541,214,0 +170756577589,214,0 +170756577639,214,0 +170756577687,214,0 +170756577735,215,0 +170756577783,215,0 +170756577832,216,0 +170756577880,216,0 +170756577928,217,0 +170756577977,218,0 +170756578025,220,0 +170756578075,220,0 +170756578123,220,0 +170756578171,221,0 +170756578219,222,0 +170756578268,221,0 +170756578316,215,0 +170756578364,214,0 +170756578412,214,0 +170756578462,214,0 +170756578511,214,0 +170756578561,214,0 +170756578609,214,0 +170756578656,215,0 +170756578706,215,0 +170756578754,215,0 +170756578803,215,0 +170756578853,215,0 +170756578901,215,0 +170756578949,216,0 +170756578997,217,0 +170756579045,218,0 +170756579094,218,0 +170756579144,218,0 +170756579191,220,0 +170756579239,221,0 +170756579289,222,0 +170756579338,222,0 +170756579386,221,0 +170756579434,222,0 +170756579482,222,0 +170756579530,224,0 +170756579578,223,0 +170756579626,219,0 +170756579674,214,0 +170756579723,214,0 +170756579773,214,0 +170756579821,215,0 +170756579869,215,0 +170756579918,216,0 +170756579966,217,0 +170756580014,217,0 +170756580063,218,0 +170756580111,218,0 +170756580159,219,0 +170756580209,220,0 +170756580258,222,0 +170756580306,221,0 +170756580354,225,0 +170756580404,222,0 +170756580452,222,0 +170756580500,222,0 +170756580548,215,0 +170756580595,215,0 +170756580643,216,0 +170756580691,216,0 +170756580739,216,0 +170756580787,217,0 +170756580835,217,0 +170756580883,217,0 +170756580931,218,0 +170756580980,218,0 +170756581028,219,0 +170756581078,219,0 +170756581125,220,0 +170756581175,221,0 +170756581225,221,0 +170756581274,220,0 +170756581323,221,0 +170756581372,222,0 +170756581419,219,0 +170756581467,215,0 +170756581515,216,0 +170756581563,217,0 +170756581613,217,0 +170756581661,219,0 +170756581710,218,0 +170756581758,219,0 +170756581806,219,0 +170756581856,220,0 +170756581905,221,0 +170756581953,222,0 +170756582001,222,0 +170756582050,222,0 +170756582098,222,0 +170756582146,222,0 +170756582196,222,0 +170756582244,222,0 +170756582293,221,0 +170756582341,216,0 +170756582390,216,0 +170756582438,217,0 +170756582486,217,0 +170756582534,218,0 +170756582582,218,0 +170756582632,219,0 +170756582680,221,0 +170756582728,220,0 +170756582776,220,0 +170756582823,222,0 +170756582873,223,0 +170756582921,222,0 +170756582968,223,0 +170756583016,223,0 +170756583064,225,0 +170756583112,223,0 +170756583160,222,0 +170756583208,218,0 +170756583256,217,0 +170756583304,219,0 +170756583352,218,0 +170756583401,220,0 +170756583449,219,0 +170756583497,219,0 +170756583546,222,0 +170756583596,222,0 +170756583644,223,0 +170756583692,223,0 +170756583741,223,0 +170756583789,224,0 +170756583837,225,0 +170756583886,224,0 +170756583934,224,0 +170756583982,225,0 +170756584030,223,0 +170756584078,221,0 +170756584128,219,0 +170756584176,219,0 +170756584223,220,0 +170756584273,220,0 +170756584321,221,0 +170756584370,222,0 +170756584418,222,0 +170756584468,224,0 +170756584516,223,0 +170756584565,223,0 +170756584615,224,0 +170756584663,224,0 +170756584712,224,0 +170756584760,224,0 +170756584808,224,0 +170756584856,223,0 +170756584904,223,0 +170756584952,222,0 +170756585001,218,0 +170756585051,218,0 +170756585100,219,0 +170756585148,219,0 +170756585196,220,0 +170756585246,222,0 +170756585294,221,0 +170756585342,222,0 +170756585390,223,0 +170756585437,223,0 +170756585487,223,0 +170756585536,224,0 +170756585586,229,0 +170756585635,225,0 +170756585683,223,0 +170756585731,224,0 +170756585779,223,0 +170756585827,223,0 +170756585875,216,0 +170756585923,216,0 +170756585971,218,0 +170756586019,217,0 +170756586066,218,0 +170756586114,219,0 +170756586162,219,0 +170756586210,220,0 +170756586258,221,0 +170756586307,220,0 +170756586355,221,0 +170756586403,222,0 +170756586451,223,0 +170756586501,223,0 +170756586549,224,0 +170756586598,224,0 +170756586646,222,0 +170756586695,222,0 +170756586743,221,0 +170756586791,214,0 +170756586839,214,0 +170756586887,214,0 +170756586935,216,0 +170756586983,216,0 +170756587033,217,0 +170756587081,217,0 +170756587130,217,0 +170756587178,217,0 +170756587227,218,0 +170756587277,218,0 +170756587325,219,0 +170756587373,219,0 +170756587421,220,0 +170756587469,221,0 +170756587518,221,0 +170756587566,222,0 +170756587616,223,0 +170756587664,215,0 +170756587713,214,0 +170756587761,214,0 +170756587809,214,0 +170756587857,214,0 +170756587905,214,0 +170756587954,215,0 +170756588002,218,0 +170756588050,216,0 +170756588098,217,0 +170756588146,217,0 +170756588196,218,0 +170756588244,219,0 +170756588292,219,0 +170756588341,220,0 +170756588389,220,0 +170756588438,219,0 +170756588486,221,0 +170756588536,216,0 +170756588584,214,0 +170756588632,215,0 +170756588679,215,0 +170756588729,216,0 +170756588777,217,0 +170756588826,218,0 +170756588874,218,0 +170756588922,219,0 +170756588970,219,0 +170756589018,222,0 +170756589066,222,0 +170756589115,221,0 +170756589163,222,0 +170756589211,221,0 +170756589259,222,0 +170756589307,223,0 +170756589355,224,0 +170756589403,222,0 +170756589452,215,0 +170756589502,214,0 +170756589550,214,0 +170756589598,213,0 +170756589647,217,0 +170756589695,218,0 +170756589745,218,0 +170756589793,219,0 +170756589842,220,0 +170756589890,220,0 +170756589938,221,0 +170756589988,224,0 +170756590035,221,0 +170756590085,222,0 +170756590133,222,0 +170756590181,222,0 +170756590229,222,0 +170756590278,222,0 +170756590326,215,0 +170756590374,214,0 +170756590422,214,0 +170756590470,214,0 +170756590520,214,0 +170756590567,215,0 +170756590615,216,0 +170756590665,216,0 +170756590713,217,0 +170756590761,218,0 +170756590810,219,0 +170756590860,219,0 +170756590908,220,0 +170756590956,220,0 +170756591004,219,0 +170756591052,221,0 +170756591101,221,0 +170756591149,221,0 +170756591199,215,0 +170756591247,215,0 +170756591295,215,0 +170756591343,216,0 +170756591391,217,0 +170756591440,217,0 +170756591488,218,0 +170756591536,219,0 +170756591585,220,0 +170756591635,220,0 +170756591683,220,0 +170756591731,221,0 +170756591778,221,0 +170756591828,222,0 +170756591876,221,0 +170756591924,221,0 +170756591972,222,0 +170756592021,223,0 +170756592071,221,0 +170756592118,214,0 +170756592168,215,0 +170756592216,216,0 +170756592264,217,0 +170756592313,217,0 +170756592363,218,0 +170756592411,218,0 +170756592458,218,0 +170756592506,219,0 +170756592554,219,0 +170756592603,219,0 +170756592651,221,0 +170756592699,221,0 +170756592747,221,0 +170756592795,220,0 +170756592843,219,0 +170756592891,222,0 +170756592940,222,0 +170756592988,215,0 +170756593035,214,0 +170756593083,215,0 +170756593131,215,0 +170756593179,216,0 +170756593227,217,0 +170756593277,217,0 +170756593325,217,0 +170756593373,218,0 +170756593421,219,0 +170756593470,219,0 +170756593518,219,0 +170756593566,220,0 +170756593615,220,0 +170756593665,222,0 +170756593713,222,0 +170756593761,223,0 +170756593809,222,0 +170756593857,222,0 +170756593905,215,0 +170756593954,214,0 +170756594002,215,0 +170756594050,216,0 +170756594098,216,0 +170756594145,217,0 +170756594193,217,0 +170756594241,218,0 +170756594289,218,0 +170756594339,219,0 +170756594388,220,0 +170756594436,221,0 +170756594484,221,0 +170756594533,221,0 +170756594581,221,0 +170756594631,222,0 +170756594680,222,0 +170756594728,220,0 +170756594777,215,0 +170756594825,214,0 +170756594873,215,0 +170756594923,216,0 +170756594970,216,0 +170756595018,216,0 +170756595066,217,0 +170756595114,218,0 +170756595163,218,0 +170756595211,219,0 +170756595259,220,0 +170756595307,220,0 +170756595354,220,0 +170756595404,221,0 +170756595453,223,0 +170756595501,221,0 +170756595549,223,0 +170756595597,223,0 +170756595646,218,0 +170756595694,214,0 +170756595742,215,0 +170756595790,216,0 +170756595837,216,0 +170756595885,217,0 +170756595935,217,0 +170756595984,218,0 +170756596032,219,0 +170756596080,219,0 +170756596128,220,0 +170756596177,221,0 +170756596225,221,0 +170756596275,221,0 +170756596323,222,0 +170756596371,222,0 +170756596420,223,0 +170756596468,223,0 +170756596518,221,0 +170756596565,216,0 +170756596615,216,0 +170756596664,216,0 +170756596712,216,0 +170756596760,217,0 +170756596810,218,0 +170756596858,218,0 +170756596905,218,0 +170756596953,218,0 +170756597001,220,0 +170756597049,219,0 +170756597097,221,0 +170756597145,222,0 +170756597193,221,0 +170756597242,223,0 +170756597290,222,0 +170756597339,222,0 +170756597387,221,0 +170756597435,217,0 +170756597485,216,0 +170756597534,217,0 +170756597582,217,0 +170756597630,218,0 +170756597678,218,0 +170756597727,218,0 +170756597775,219,0 +170756597823,219,0 +170756597871,220,0 +170756597919,220,0 +170756597967,221,0 +170756598014,222,0 +170756598062,223,0 +170756598110,222,0 +170756598158,223,0 +170756598205,223,0 +170756598255,222,0 +170756598303,221,0 +170756598351,217,0 +170756598398,216,0 +170756598448,217,0 +170756598496,218,0 +170756598544,219,0 +170756598593,219,0 +170756598643,219,0 +170756598690,220,0 +170756598738,220,0 +170756598788,221,0 +170756598836,221,0 +170756598885,223,0 +170756598933,222,0 +170756598983,223,0 +170756599030,221,0 +170756599078,223,0 +170756599128,222,0 +170756599176,222,0 +170756599224,217,0 +170756599272,217,0 +170756599321,217,0 +170756599369,218,0 +170756599417,219,0 +170756599465,219,0 +170756599514,220,0 +170756599562,220,0 +170756599610,222,0 +170756599658,221,0 +170756599706,222,0 +170756599755,221,0 +170756599803,222,0 +170756599851,223,0 +170756599901,224,0 +170756599949,223,0 +170756599998,223,0 +170756600046,223,0 +170756600094,221,0 +170756600142,215,0 +170756600190,215,0 +170756600238,215,0 +170756600285,217,0 +170756600333,218,0 +170756600383,218,0 +170756600431,218,0 +170756600479,219,0 +170756600528,219,0 +170756600578,220,0 +170756600625,220,0 +170756600673,221,0 +170756600723,222,0 +170756600771,221,0 +170756600818,222,0 +170756600866,222,0 +170756600914,223,0 +170756600962,222,0 +170756601010,215,0 +170756601059,214,0 +170756601109,215,0 +170756601157,216,0 +170756601205,216,0 +170756601253,216,0 +170756601301,217,0 +170756601351,217,0 +170756601399,218,0 +170756601447,220,0 +170756601495,220,0 +170756601544,221,0 +170756601592,220,0 +170756601640,222,0 +170756601688,221,0 +170756601736,222,0 +170756601785,222,0 +170756601833,223,0 +170756601881,215,0 +170756601931,214,0 +170756601978,215,0 +170756602028,216,0 +170756602077,217,0 +170756602127,217,0 +170756602175,217,0 +170756602223,218,0 +170756602270,218,0 +170756602318,221,0 +170756602366,220,0 +170756602414,221,0 +170756602462,222,0 +170756602510,223,0 +170756602558,223,0 +170756602606,221,0 +170756602653,223,0 +170756602701,224,0 +170756602749,222,0 +170756602797,215,0 +170756602845,214,0 +170756602893,215,0 +170756602941,215,0 +170756602988,216,0 +170756603038,217,0 +170756603086,217,0 +170756603135,218,0 +170756603183,220,0 +170756603233,219,0 +170756603282,219,0 +170756603332,221,0 +170756603381,222,0 +170756603429,222,0 +170756603479,221,0 +170756603527,223,0 +170756603575,223,0 +170756603622,223,0 +170756603672,216,0 +170756603720,214,0 +170756603769,215,0 +170756603819,216,0 +170756603867,216,0 +170756603915,217,0 +170756603963,217,0 +170756604011,218,0 +170756604059,219,0 +170756604107,219,0 +170756604156,220,0 +170756604204,220,0 +170756604252,222,0 +170756604302,222,0 +170756604350,222,0 +170756604397,221,0 +170756604445,223,0 +170756604493,222,0 +170756604541,218,0 +170756604589,215,0 +170756604637,216,0 +170756604685,216,0 +170756604735,217,0 +170756604784,217,0 +170756604832,217,0 +170756604882,219,0 +170756604929,220,0 +170756604979,220,0 +170756605029,221,0 +170756605077,221,0 +170756605126,223,0 +170756605176,223,0 +170756605223,223,0 +170756605272,223,0 +170756605321,223,0 +170756605371,222,0 +170756605420,222,0 +170756605468,215,0 +170756605516,215,0 +170756605564,216,0 +170756605612,216,0 +170756605659,217,0 +170756605707,217,0 +170756605755,218,0 +170756605803,219,0 +170756605851,219,0 +170756605899,220,0 +170756605947,221,0 +170756605994,221,0 +170756606042,221,0 +170756606090,222,0 +170756606140,223,0 +170756606187,223,0 +170756606235,222,0 +170756606283,222,0 +170756606331,221,0 +170756606379,214,0 +170756606429,215,0 +170756606477,215,0 +170756606526,217,0 +170756606576,217,0 +170756606624,218,0 +170756606672,218,0 +170756606721,218,0 +170756606769,220,0 +170756606817,220,0 +170756606865,221,0 +170756606913,222,0 +170756606961,223,0 +170756607009,223,0 +170756607057,223,0 +170756607106,222,0 +170756607154,223,0 +170756607204,222,0 +170756607252,214,0 +170756607301,214,0 +170756607351,215,0 +170756607399,216,0 +170756607448,218,0 +170756607496,217,0 +170756607546,218,0 +170756607594,218,0 +170756607642,219,0 +170756607690,221,0 +170756607737,220,0 +170756607787,220,0 +170756607835,222,0 +170756607883,222,0 +170756607932,221,0 +170756607982,222,0 +170756608030,222,0 +170756608079,222,0 +170756608127,215,0 +170756608175,214,0 +170756608223,214,0 +170756608273,214,0 +170756608321,215,0 +170756608369,216,0 +170756608417,216,0 +170756608465,217,0 +170756608514,217,0 +170756608562,218,0 +170756608610,219,0 +170756608658,219,0 +170756608707,220,0 +170756608757,220,0 +170756608805,221,0 +170756608853,222,0 +170756608902,222,0 +170756608952,223,0 +170756608999,215,0 +170756609047,214,0 +170756609097,214,0 +170756609145,215,0 +170756609193,215,0 +170756609241,215,0 +170756609291,215,0 +170756609340,216,0 +170756609388,217,0 +170756609436,218,0 +170756609484,219,0 +170756609532,219,0 +170756609580,220,0 +170756609628,219,0 +170756609676,221,0 +170756609724,219,0 +170756609771,222,0 +170756609821,223,0 +170756609869,221,0 +170756609917,214,0 +170756609966,214,0 +170756610014,214,0 +170756610064,215,0 +170756610112,215,0 +170756610161,216,0 +170756610209,216,0 +170756610257,216,0 +170756610305,217,0 +170756610355,218,0 +170756610404,220,0 +170756610452,219,0 +170756610500,221,0 +170756610550,221,0 +170756610598,221,0 +170756610645,221,0 +170756610695,222,0 +170756610743,222,0 +170756610791,214,0 +170756610839,214,0 +170756610887,215,0 +170756610935,215,0 +170756610982,216,0 +170756611030,216,0 +170756611078,217,0 +170756611126,217,0 +170756611174,218,0 +170756611222,219,0 +170756611270,220,0 +170756611317,220,0 +170756611365,221,0 +170756611413,221,0 +170756611461,222,0 +170756611509,222,0 +170756611557,222,0 +170756611606,221,0 +170756611654,217,0 +170756611702,215,0 +170756611750,215,0 +170756611797,216,0 +170756611845,217,0 +170756611893,218,0 +170756611941,218,0 +170756611989,219,0 +170756612038,219,0 +170756612086,220,0 +170756612134,220,0 +170756612182,222,0 +170756612230,222,0 +170756612277,222,0 +170756612327,223,0 +170756612375,223,0 +170756612423,223,0 +170756612470,222,0 +170756612518,222,0 +170756612566,218,0 +170756612614,217,0 +170756612663,217,0 +170756612711,218,0 +170756612759,219,0 +170756612807,220,0 +170756612856,219,0 +170756612904,220,0 +170756612951,221,0 +170756612999,221,0 +170756613047,221,0 +170756613095,223,0 +170756613143,223,0 +170756613190,222,0 +170756613238,222,0 +170756613286,222,0 +170756613334,222,0 +170756613382,222,0 +170756613429,221,0 +170756613479,217,0 +170756613527,218,0 +170756613575,219,0 +170756613622,219,0 +170756613670,219,0 +170756613718,220,0 +170756613766,220,0 +170756613814,221,0 +170756613863,220,0 +170756613911,221,0 +170756613959,223,0 +170756614008,223,0 +170756614056,222,0 +170756614104,223,0 +170756614152,224,0 +170756614199,223,0 +170756614247,222,0 +170756614297,221,0 +170756614344,215,0 +170756614392,215,0 +170756614440,215,0 +170756614488,217,0 +170756614536,217,0 +170756614583,217,0 +170756614631,219,0 +170756614679,219,0 +170756614727,219,0 +170756614775,219,0 +170756614823,221,0 +170756614870,221,0 +170756614918,222,0 +170756614966,223,0 +170756615014,221,0 +170756615062,221,0 +170756615110,223,0 +170756615157,222,0 +170756615205,221,0 +170756615255,214,0 +170756615304,215,0 +170756615352,215,0 +170756615401,217,0 +170756615449,216,0 +170756615497,217,0 +170756615545,217,0 +170756615593,218,0 +170756615640,219,0 +170756615688,219,0 +170756615736,220,0 +170756615785,222,0 +170756615833,221,0 +170756615881,223,0 +170756615929,221,0 +170756615978,222,0 +170756616026,222,0 +170756616076,222,0 +170756616124,215,0 +170756616172,214,0 +170756616219,215,0 +170756616267,216,0 +170756616315,216,0 +170756616363,218,0 +170756616411,218,0 +170756616460,217,0 +170756616509,218,0 +170756616557,220,0 +170756616605,220,0 +170756616653,221,0 +170756616701,220,0 +170756616749,221,0 +170756616798,221,0 +170756616846,221,0 +170756616894,224,0 +170756616941,222,0 +170756616991,216,0 +170756617039,214,0 +170756617088,214,0 +170756617136,215,0 +170756617184,216,0 +170756617233,216,0 +170756617281,216,0 +170756617331,217,0 +170756617380,218,0 +170756617428,218,0 +170756617476,218,0 +170756617524,220,0 +170756617572,220,0 +170756617621,221,0 +170756617669,221,0 +170756617717,222,0 +170756617765,222,0 +170756617813,223,0 +170756617861,224,0 +170756617909,215,0 +170756617957,214,0 +170756618005,216,0 +170756618054,216,0 +170756618102,219,0 +170756618150,217,0 +170756618200,218,0 +170756618248,218,0 +170756618297,219,0 +170756618345,221,0 +170756618395,221,0 +170756618443,221,0 +170756618492,222,0 +170756618540,221,0 +170756618589,223,0 +170756618637,221,0 +170756618687,223,0 +170756618735,224,0 +170756618782,216,0 +170756618830,214,0 +170756618878,214,0 +170756618926,215,0 +170756618974,215,0 +170756619021,215,0 +170756619071,216,0 +170756619119,216,0 +170756619167,218,0 +170756619214,217,0 +170756619264,218,0 +170756619312,219,0 +170756619360,220,0 +170756619407,220,0 +170756619455,220,0 +170756619503,221,0 +170756619551,221,0 +170756619600,222,0 +170756619648,216,0 +170756619698,214,0 +170756619745,215,0 +170756619793,215,0 +170756619841,216,0 +170756619890,216,0 +170756619938,216,0 +170756619986,217,0 +170756620034,218,0 +170756620083,219,0 +170756620131,219,0 +170756620179,220,0 +170756620227,221,0 +170756620274,221,0 +170756620322,221,0 +170756620370,222,0 +170756620418,222,0 +170756620466,223,0 +170756620514,222,0 +170756620561,215,0 +170756620609,214,0 +170756620659,214,0 +170756620706,215,0 +170756620754,216,0 +170756620802,217,0 +170756620851,217,0 +170756620899,218,0 +170756620947,218,0 +170756620995,218,0 +170756621043,219,0 +170756621091,219,0 +170756621138,221,0 +170756621186,224,0 +170756621234,222,0 +170756621283,222,0 +170756621331,223,0 +170756621379,221,0 +170756621427,221,0 +170756621475,214,0 +170756621523,214,0 +170756621571,215,0 +170756621618,216,0 +170756621666,216,0 +170756621714,217,0 +170756621762,217,0 +170756621810,218,0 +170756621858,218,0 +170756621905,219,0 +170756621953,221,0 +170756622001,220,0 +170756622049,221,0 +170756622097,220,0 +170756622145,222,0 +170756622194,221,0 +170756622242,223,0 +170756622290,222,0 +170756622339,215,0 +170756622387,214,0 +170756622435,214,0 +170756622484,215,0 +170756622532,216,0 +170756622580,214,0 +170756622628,217,0 +170756622675,217,0 +170756622723,218,0 +170756622771,219,0 +170756622819,220,0 +170756622867,221,0 +170756622915,221,0 +170756622962,221,0 +170756623010,222,0 +170756623060,222,0 +170756623107,222,0 +170756623155,222,0 +170756623203,216,0 +170756623251,214,0 +170756623299,215,0 +170756623347,216,0 +170756623395,216,0 +170756623442,218,0 +170756623490,218,0 +170756623538,218,0 +170756623586,219,0 +170756623634,220,0 +170756623684,221,0 +170756623733,221,0 +170756623782,221,0 +170756623830,221,0 +170756623880,222,0 +170756623929,222,0 +170756623979,223,0 +170756624028,221,0 +170756624078,222,0 +170756624127,214,0 +170756624175,214,0 +170756624225,215,0 +170756624274,216,0 +170756624322,216,0 +170756624370,216,0 +170756624417,216,0 +170756624465,217,0 +170756624515,218,0 +170756624562,219,0 +170756624610,219,0 +170756624658,219,0 +170756624706,221,0 +170756624753,222,0 +170756624803,222,0 +170756624851,222,0 +170756624898,223,0 +170756624946,221,0 +170756624996,216,0 +170756625043,214,0 +170756625091,215,0 +170756625139,215,0 +170756625187,216,0 +170756625234,216,0 +170756625282,217,0 +170756625331,217,0 +170756625379,218,0 +170756625427,219,0 +170756625477,220,0 +170756625524,221,0 +170756625572,220,0 +170756625620,222,0 +170756625668,222,0 +170756625716,222,0 +170756625763,227,0 +170756625811,222,0 +170756625859,221,0 +170756625909,215,0 +170756625956,215,0 +170756626004,216,0 +170756626052,217,0 +170756626100,219,0 +170756626148,218,0 +170756626196,219,0 +170756626243,220,0 +170756626293,221,0 +170756626341,222,0 +170756626388,221,0 +170756626436,222,0 +170756626484,223,0 +170756626532,223,0 +170756626580,223,0 +170756626628,223,0 +170756626676,223,0 +170756626725,223,0 +170756626773,216,0 +170756626821,217,0 +170756626869,217,0 +170756626917,217,0 +170756626965,218,0 +170756627014,219,0 +170756627062,219,0 +170756627111,220,0 +170756627159,221,0 +170756627207,221,0 +170756627255,222,0 +170756627304,223,0 +170756627352,222,0 +170756627402,224,0 +170756627449,223,0 +170756627497,224,0 +170756627545,223,0 +170756627593,223,0 +170756627641,220,0 +170756627690,215,0 +170756627738,218,0 +170756627786,219,0 +170756627835,220,0 +170756627885,223,0 +170756627934,221,0 +170756627982,222,0 +170756628030,223,0 +170756628080,223,0 +170756628128,223,0 +170756628175,223,0 +170756628223,225,0 +170756628271,224,0 +170756628321,225,0 +170756628369,224,0 +170756628417,224,0 +170756628465,223,0 +170756628514,222,0 +170756628564,215,0 +170756628612,220,0 +170756628660,220,0 +170756628708,220,0 +170756628757,221,0 +170756628807,221,0 +170756628854,222,0 +170756628904,222,0 +170756628952,222,0 +170756629000,223,0 +170756629048,223,0 +170756629096,225,0 +170756629144,223,0 +170756629192,225,0 +170756629241,224,0 +170756629291,224,0 +170756629339,223,0 +170756629387,223,0 +170756629436,217,0 +170756629486,216,0 +170756629535,217,0 +170756629585,218,0 +170756629634,219,0 +170756629682,219,0 +170756629730,220,0 +170756629778,221,0 +170756629826,224,0 +170756629874,221,0 +170756629923,221,0 +170756629973,223,0 +170756630021,222,0 +170756630069,223,0 +170756630117,223,0 +170756630165,223,0 +170756630213,224,0 +170756630260,222,0 +170756630308,216,0 +170756630358,215,0 +170756630406,215,0 +170756630453,216,0 +170756630501,217,0 +170756630549,218,0 +170756630597,219,0 +170756630645,219,0 +170756630693,220,0 +170756630741,220,0 +170756630789,222,0 +170756630838,222,0 +170756630887,223,0 +170756630935,223,0 +170756630983,223,0 +170756631033,224,0 +170756631082,224,0 +170756631131,222,0 +170756631181,222,0 +170756631230,214,0 +170756631280,214,0 +170756631329,214,0 +170756631377,215,0 +170756631425,216,0 +170756631473,216,0 +170756631521,217,0 +170756631569,218,0 +170756631619,218,0 +170756631667,219,0 +170756631716,219,0 +170756631766,221,0 +170756631813,221,0 +170756631861,222,0 +170756631909,222,0 +170756631958,223,0 +170756632006,222,0 +170756632054,222,0 +170756632102,215,0 +170756632150,214,0 +170756632198,214,0 +170756632245,215,0 +170756632293,215,0 +170756632343,215,0 +170756632392,216,0 +170756632440,216,0 +170756632490,217,0 +170756632537,218,0 +170756632585,218,0 +170756632633,220,0 +170756632681,220,0 +170756632731,221,0 +170756632780,221,0 +170756632828,221,0 +170756632878,222,0 +170756632926,223,0 +170756632975,216,0 +170756633023,214,0 +170756633071,215,0 +170756633119,216,0 +170756633168,216,0 +170756633216,217,0 +170756633266,218,0 +170756633315,218,0 +170756633365,219,0 +170756633413,220,0 +170756633460,220,0 +170756633508,221,0 +170756633558,221,0 +170756633608,221,0 +170756633657,222,0 +170756633705,222,0 +170756633753,222,0 +170756633801,222,0 +170756633849,222,0 +170756633896,215,0 +170756633944,216,0 +170756633994,217,0 +170756634042,217,0 +170756634091,218,0 +170756634139,218,0 +170756634187,219,0 +170756634234,220,0 +170756634282,220,0 +170756634330,221,0 +170756634378,221,0 +170756634427,221,0 +170756634475,222,0 +170756634523,221,0 +170756634571,222,0 +170756634619,223,0 +170756634667,223,0 +170756634715,223,0 +170756634764,215,0 +170756634812,214,0 +170756634862,216,0 +170756634910,216,0 +170756634959,217,0 +170756635009,218,0 +170756635058,218,0 +170756635108,219,0 +170756635156,220,0 +170756635203,220,0 +170756635253,221,0 +170756635301,221,0 +170756635350,223,0 +170756635398,221,0 +170756635446,222,0 +170756635494,223,0 +170756635543,222,0 +170756635591,222,0 +170756635641,215,0 +170756635689,214,0 +170756635738,214,0 +170756635788,214,0 +170756635836,215,0 +170756635884,216,0 +170756635932,217,0 +170756635981,217,0 +170756636031,217,0 +170756636080,218,0 +170756636129,219,0 +170756636179,220,0 +170756636228,221,0 +170756636276,220,0 +170756636324,220,0 +170756636372,222,0 +170756636421,223,0 +170756636471,224,0 +170756636520,218,0 +170756636570,213,0 +170756636619,213,0 +170756636669,213,0 +170756636718,214,0 +170756636766,214,0 +170756636814,214,0 +170756636864,214,0 +170756636913,215,0 +170756636961,215,0 +170756637009,216,0 +170756637059,217,0 +170756637107,217,0 +170756637155,218,0 +170756637202,220,0 +170756637250,222,0 +170756637298,221,0 +170756637346,222,0 +170756637396,221,0 +170756637445,214,0 +170756637495,214,0 +170756637543,214,0 +170756637592,214,0 +170756637640,214,0 +170756637688,215,0 +170756637736,215,0 +170756637784,216,0 +170756637834,217,0 +170756637881,217,0 +170756637931,218,0 +170756637979,219,0 +170756638027,220,0 +170756638075,220,0 +170756638124,221,0 +170756638172,221,0 +170756638220,221,0 +170756638268,223,0 +170756638315,215,0 +170756638363,214,0 +170756638411,214,0 +170756638459,214,0 +170756638509,214,0 +170756638558,215,0 +170756638606,215,0 +170756638655,216,0 +170756638703,217,0 +170756638751,217,0 +170756638799,217,0 +170756638847,219,0 +170756638895,220,0 +170756638943,220,0 +170756638992,220,0 +170756639040,221,0 +170756639088,222,0 +170756639136,223,0 +170756639184,216,0 +170756639232,214,0 +170756639282,214,0 +170756639331,214,0 +170756639381,216,0 +170756639428,215,0 +170756639478,215,0 +170756639526,216,0 +170756639575,216,0 +170756639625,221,0 +170756639674,218,0 +170756639722,222,0 +170756639770,221,0 +170756639818,220,0 +170756639866,221,0 +170756639914,222,0 +170756639964,223,0 +170756640013,221,0 diff --git a/laser_value/0210-22.csv b/laser_value/0210-22.csv new file mode 100644 index 0000000..158b93e --- /dev/null +++ b/laser_value/0210-22.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170756640062,222,0 +170756640110,214,0 +170756640159,215,0 +170756640207,215,0 +170756640255,216,0 +170756640303,217,0 +170756640352,216,0 +170756640400,217,0 +170756640448,217,0 +170756640496,218,0 +170756640545,218,0 +170756640593,219,0 +170756640641,220,0 +170756640691,221,0 +170756640738,220,0 +170756640788,221,0 +170756640836,220,0 +170756640884,222,0 +170756640931,222,0 +170756640979,215,0 +170756641027,215,0 +170756641077,216,0 +170756641125,217,0 +170756641174,217,0 +170756641222,218,0 +170756641272,218,0 +170756641319,219,0 +170756641367,219,0 +170756641415,221,0 +170756641465,219,0 +170756641513,221,0 +170756641560,221,0 +170756641608,221,0 +170756641658,221,0 +170756641706,221,0 +170756641754,222,0 +170756641803,223,0 +170756641851,216,0 +170756641899,216,0 +170756641947,217,0 +170756641995,217,0 +170756642045,217,0 +170756642093,218,0 +170756642141,219,0 +170756642188,219,0 +170756642236,219,0 +170756642284,223,0 +170756642332,220,0 +170756642380,221,0 +170756642428,223,0 +170756642477,222,0 +170756642525,221,0 +170756642573,222,0 +170756642621,223,0 +170756642669,222,0 +170756642718,215,0 +170756642766,215,0 +170756642814,216,0 +170756642862,217,0 +170756642911,217,0 +170756642959,219,0 +170756643007,219,0 +170756643055,220,0 +170756643103,220,0 +170756643151,220,0 +170756643199,220,0 +170756643247,223,0 +170756643296,223,0 +170756643346,223,0 +170756643395,224,0 +170756643443,222,0 +170756643491,224,0 +170756643541,222,0 +170756643589,219,0 +170756643636,215,0 +170756643684,216,0 +170756643732,216,0 +170756643780,217,0 +170756643828,217,0 +170756643876,219,0 +170756643924,218,0 +170756643972,220,0 +170756644020,220,0 +170756644068,221,0 +170756644116,220,0 +170756644164,223,0 +170756644212,222,0 +170756644261,222,0 +170756644311,222,0 +170756644358,222,0 +170756644406,222,0 +170756644454,222,0 +170756644502,215,0 +170756644550,215,0 +170756644598,216,0 +170756644646,217,0 +170756644694,217,0 +170756644742,218,0 +170756644791,218,0 +170756644839,219,0 +170756644887,220,0 +170756644935,220,0 +170756644983,222,0 +170756645032,222,0 +170756645080,222,0 +170756645128,222,0 +170756645177,223,0 +170756645225,222,0 +170756645273,223,0 +170756645323,222,0 +170756645372,215,0 +170756645421,215,0 +170756645469,216,0 +170756645517,216,0 +170756645566,218,0 +170756645614,217,0 +170756645664,219,0 +170756645712,219,0 +170756645760,220,0 +170756645808,221,0 +170756645856,221,0 +170756645904,223,0 +170756645951,221,0 +170756645999,222,0 +170756646047,222,0 +170756646097,221,0 +170756646146,222,0 +170756646196,222,0 +170756646244,215,0 +170756646292,214,0 +170756646340,214,0 +170756646389,214,0 +170756646437,215,0 +170756646485,215,0 +170756646534,216,0 +170756646582,216,0 +170756646630,217,0 +170756646678,218,0 +170756646726,219,0 +170756646774,219,0 +170756646822,220,0 +170756646870,220,0 +170756646918,220,0 +170756646966,222,0 +170756647013,221,0 +170756647061,222,0 +170756647111,215,0 +170756647159,215,0 +170756647206,215,0 +170756647256,216,0 +170756647304,217,0 +170756647352,218,0 +170756647400,217,0 +170756647448,218,0 +170756647496,219,0 +170756647544,219,0 +170756647592,221,0 +170756647639,220,0 +170756647687,221,0 +170756647735,222,0 +170756647785,222,0 +170756647833,222,0 +170756647882,224,0 +170756647932,223,0 +170756647980,217,0 +170756648029,216,0 +170756648077,217,0 +170756648125,218,0 +170756648173,219,0 +170756648221,218,0 +170756648269,219,0 +170756648317,222,0 +170756648365,221,0 +170756648413,221,0 +170756648462,221,0 +170756648510,222,0 +170756648558,222,0 +170756648608,223,0 +170756648657,223,0 +170756648707,223,0 +170756648754,223,0 +170756648804,222,0 +170756648852,216,0 +170756648900,217,0 +170756648947,218,0 +170756648995,218,0 +170756649045,220,0 +170756649093,220,0 +170756649140,220,0 +170756649188,221,0 +170756649236,221,0 +170756649286,223,0 +170756649334,223,0 +170756649381,223,0 +170756649429,225,0 +170756649477,224,0 +170756649525,224,0 +170756649573,223,0 +170756649621,223,0 +170756649668,222,0 +170756649718,221,0 +170756649766,216,0 +170756649813,217,0 +170756649861,218,0 +170756649911,218,0 +170756649959,219,0 +170756650006,220,0 +170756650054,220,0 +170756650104,222,0 +170756650152,222,0 +170756650199,222,0 +170756650247,224,0 +170756650295,224,0 +170756650343,224,0 +170756650391,224,0 +170756650439,224,0 +170756650486,223,0 +170756650534,222,0 +170756650582,222,0 +170756650630,215,0 +170756650678,214,0 +170756650726,215,0 +170756650774,216,0 +170756650822,217,0 +170756650870,217,0 +170756650919,218,0 +170756650967,219,0 +170756651015,220,0 +170756651064,221,0 +170756651114,221,0 +170756651162,222,0 +170756651210,222,0 +170756651258,223,0 +170756651306,222,0 +170756651355,223,0 +170756651403,224,0 +170756651453,222,0 +170756651500,215,0 +170756651550,214,0 +170756651599,214,0 +170756651647,215,0 +170756651695,216,0 +170756651743,216,0 +170756651791,217,0 +170756651839,217,0 +170756651888,218,0 +170756651936,218,0 +170756651986,220,0 +170756652035,221,0 +170756652085,220,0 +170756652134,221,0 +170756652182,222,0 +170756652230,222,0 +170756652278,222,0 +170756652325,223,0 +170756652373,215,0 +170756652421,214,0 +170756652469,214,0 +170756652517,215,0 +170756652565,215,0 +170756652612,215,0 +170756652660,216,0 +170756652708,216,0 +170756652756,217,0 +170756652804,218,0 +170756652852,219,0 +170756652901,219,0 +170756652949,220,0 +170756652997,220,0 +170756653045,221,0 +170756653092,221,0 +170756653142,221,0 +170756653190,222,0 +170756653239,215,0 +170756653289,214,0 +170756653337,214,0 +170756653386,215,0 +170756653434,215,0 +170756653482,216,0 +170756653530,217,0 +170756653579,218,0 +170756653627,218,0 +170756653675,219,0 +170756653723,220,0 +170756653772,220,0 +170756653820,221,0 +170756653868,221,0 +170756653916,221,0 +170756653964,222,0 +170756654012,222,0 +170756654062,223,0 +170756654111,216,0 +170756654161,214,0 +170756654209,216,0 +170756654256,216,0 +170756654304,217,0 +170756654354,218,0 +170756654402,219,0 +170756654451,220,0 +170756654499,221,0 +170756654547,221,0 +170756654595,221,0 +170756654645,221,0 +170756654694,222,0 +170756654742,223,0 +170756654791,223,0 +170756654839,222,0 +170756654887,222,0 +170756654935,221,0 +170756654983,218,0 +170756655032,217,0 +170756655080,219,0 +170756655130,219,0 +170756655177,219,0 +170756655225,220,0 +170756655275,221,0 +170756655323,220,0 +170756655372,221,0 +170756655420,222,0 +170756655468,222,0 +170756655516,223,0 +170756655565,223,0 +170756655613,223,0 +170756655663,223,0 +170756655711,223,0 +170756655760,223,0 +170756655810,223,0 +170756655857,218,0 +170756655905,217,0 +170756655953,218,0 +170756656001,219,0 +170756656049,219,0 +170756656097,220,0 +170756656145,219,0 +170756656192,219,0 +170756656240,221,0 +170756656288,221,0 +170756656336,222,0 +170756656384,223,0 +170756656432,223,0 +170756656479,223,0 +170756656529,222,0 +170756656577,223,0 +170756656625,223,0 +170756656672,222,0 +170756656720,221,0 +170756656768,218,0 +170756656816,218,0 +170756656864,219,0 +170756656913,220,0 +170756656961,220,0 +170756657009,220,0 +170756657058,221,0 +170756657106,222,0 +170756657154,221,0 +170756657204,223,0 +170756657253,222,0 +170756657301,223,0 +170756657349,224,0 +170756657399,224,0 +170756657447,223,0 +170756657496,225,0 +170756657546,222,0 +170756657594,222,0 +170756657641,218,0 +170756657689,218,0 +170756657737,219,0 +170756657785,219,0 +170756657833,220,0 +170756657883,221,0 +170756657932,222,0 +170756657982,222,0 +170756658031,223,0 +170756658079,221,0 +170756658129,223,0 +170756658176,224,0 +170756658224,222,0 +170756658272,223,0 +170756658322,223,0 +170756658370,222,0 +170756658418,223,0 +170756658466,219,0 +170756658515,217,0 +170756658563,217,0 +170756658611,218,0 +170756658659,218,0 +170756658709,220,0 +170756658758,221,0 +170756658808,221,0 +170756658857,221,0 +170756658905,221,0 +170756658953,222,0 +170756659000,221,0 +170756659048,225,0 +170756659096,223,0 +170756659144,223,0 +170756659192,224,0 +170756659241,223,0 +170756659291,223,0 +170756659339,222,0 +170756659388,217,0 +170756659436,217,0 +170756659484,218,0 +170756659532,219,0 +170756659582,219,0 +170756659631,220,0 +170756659681,220,0 +170756659730,221,0 +170756659778,221,0 +170756659826,221,0 +170756659874,222,0 +170756659923,224,0 +170756659973,225,0 +170756660022,223,0 +170756660070,223,0 +170756660120,224,0 +170756660168,223,0 +170756660217,222,0 +170756660265,215,0 +170756660313,215,0 +170756660361,215,0 +170756660410,216,0 +170756660458,217,0 +170756660506,218,0 +170756660554,218,0 +170756660602,218,0 +170756660650,219,0 +170756660699,219,0 +170756660747,219,0 +170756660795,222,0 +170756660843,222,0 +170756660893,223,0 +170756660942,223,0 +170756660990,222,0 +170756661038,223,0 +170756661086,222,0 +170756661135,215,0 +170756661183,214,0 +170756661231,215,0 +170756661279,215,0 +170756661329,215,0 +170756661377,216,0 +170756661425,217,0 +170756661472,217,0 +170756661522,217,0 +170756661570,218,0 +170756661619,219,0 +170756661667,220,0 +170756661715,220,0 +170756661763,220,0 +170756661811,220,0 +170756661858,221,0 +170756661906,221,0 +170756661956,221,0 +170756662003,215,0 +170756662051,214,0 +170756662099,215,0 +170756662147,216,0 +170756662195,217,0 +170756662243,217,0 +170756662291,218,0 +170756662338,218,0 +170756662388,220,0 +170756662436,220,0 +170756662484,219,0 +170756662531,222,0 +170756662579,223,0 +170756662627,222,0 +170756662675,223,0 +170756662723,224,0 +170756662772,224,0 +170756662820,222,0 +170756662868,215,0 +170756662916,214,0 +170756662966,215,0 +170756663013,215,0 +170756663061,216,0 +170756663109,217,0 +170756663157,217,0 +170756663205,217,0 +170756663253,218,0 +170756663302,219,0 +170756663350,220,0 +170756663399,221,0 +170756663447,220,0 +170756663495,222,0 +170756663543,222,0 +170756663591,222,0 +170756663638,222,0 +170756663686,222,0 +170756663734,222,0 +170756663782,214,0 +170756663830,214,0 +170756663879,215,0 +170756663927,215,0 +170756663975,215,0 +170756664023,216,0 +170756664071,216,0 +170756664121,217,0 +170756664170,218,0 +170756664218,218,0 +170756664266,220,0 +170756664314,221,0 +170756664362,221,0 +170756664410,221,0 +170756664458,222,0 +170756664507,222,0 +170756664557,222,0 +170756664606,222,0 +170756664656,214,0 +170756664704,214,0 +170756664751,214,0 +170756664799,214,0 +170756664847,215,0 +170756664895,215,0 +170756664945,215,0 +170756664993,216,0 +170756665041,217,0 +170756665090,217,0 +170756665140,218,0 +170756665188,218,0 +170756665235,218,0 +170756665285,220,0 +170756665333,221,0 +170756665381,220,0 +170756665429,222,0 +170756665478,222,0 +170756665526,214,0 +170756665574,214,0 +170756665624,215,0 +170756665672,215,0 +170756665719,215,0 +170756665769,216,0 +170756665818,216,0 +170756665866,217,0 +170756665914,217,0 +170756665964,219,0 +170756666013,220,0 +170756666061,220,0 +170756666111,221,0 +170756666159,220,0 +170756666207,221,0 +170756666255,222,0 +170756666304,222,0 +170756666352,222,0 +170756666401,215,0 +170756666449,214,0 +170756666497,215,0 +170756666547,215,0 +170756666595,215,0 +170756666644,215,0 +170756666692,216,0 +170756666740,217,0 +170756666788,218,0 +170756666836,219,0 +170756666886,219,0 +170756666933,220,0 +170756666983,221,0 +170756667031,221,0 +170756667080,222,0 +170756667128,223,0 +170756667176,222,0 +170756667226,222,0 +170756667275,215,0 +170756667323,214,0 +170756667373,215,0 +170756667422,215,0 +170756667471,217,0 +170756667519,217,0 +170756667569,217,0 +170756667618,218,0 +170756667666,218,0 +170756667714,219,0 +170756667762,220,0 +170756667810,220,0 +170756667859,221,0 +170756667907,221,0 +170756667955,223,0 +170756668003,222,0 +170756668051,221,0 +170756668101,222,0 +170756668148,215,0 +170756668198,215,0 +170756668246,216,0 +170756668294,217,0 +170756668342,218,0 +170756668391,218,0 +170756668439,218,0 +170756668487,220,0 +170756668537,220,0 +170756668585,222,0 +170756668632,222,0 +170756668680,223,0 +170756668730,223,0 +170756668778,222,0 +170756668826,223,0 +170756668874,224,0 +170756668922,223,0 +170756668971,222,0 +170756669019,216,0 +170756669067,214,0 +170756669115,215,0 +170756669163,216,0 +170756669212,217,0 +170756669262,217,0 +170756669310,218,0 +170756669358,219,0 +170756669407,220,0 +170756669455,220,0 +170756669503,220,0 +170756669551,221,0 +170756669600,221,0 +170756669648,222,0 +170756669696,222,0 +170756669744,222,0 +170756669794,222,0 +170756669842,222,0 +170756669889,216,0 +170756669937,214,0 +170756669985,215,0 +170756670033,217,0 +170756670081,216,0 +170756670129,216,0 +170756670176,217,0 +170756670224,218,0 +170756670272,219,0 +170756670320,219,0 +170756670368,220,0 +170756670416,220,0 +170756670464,222,0 +170756670513,221,0 +170756670561,221,0 +170756670609,222,0 +170756670657,222,0 +170756670705,222,0 +170756670753,216,0 +170756670802,216,0 +170756670850,216,0 +170756670899,217,0 +170756670947,218,0 +170756670995,218,0 +170756671043,220,0 +170756671091,220,0 +170756671139,220,0 +170756671186,222,0 +170756671234,222,0 +170756671282,225,0 +170756671330,222,0 +170756671379,221,0 +170756671429,222,0 +170756671477,222,0 +170756671525,222,0 +170756671573,222,0 +170756671621,216,0 +170756671668,216,0 +170756671716,217,0 +170756671764,218,0 +170756671814,218,0 +170756671863,219,0 +170756671913,220,0 +170756671962,219,0 +170756672010,222,0 +170756672058,221,0 +170756672106,222,0 +170756672154,224,0 +170756672203,225,0 +170756672251,224,0 +170756672301,223,0 +170756672350,223,0 +170756672400,222,0 +170756672448,222,0 +170756672497,221,0 +170756672545,219,0 +170756672593,220,0 +170756672641,219,0 +170756672691,220,0 +170756672740,221,0 +170756672790,221,0 +170756672837,221,0 +170756672885,222,0 +170756672933,222,0 +170756672981,223,0 +170756673031,223,0 +170756673079,223,0 +170756673128,223,0 +170756673176,223,0 +170756673224,223,0 +170756673272,222,0 +170756673319,222,0 +170756673367,222,0 +170756673415,221,0 +170756673463,222,0 +170756673510,222,0 +170756673558,223,0 +170756673606,223,0 +170756673654,223,0 +170756673702,224,0 +170756673750,223,0 +170756673797,226,0 +170756673845,224,0 +170756673893,224,0 +170756673941,223,0 +170756673989,223,0 +170756674037,219,0 +170756674085,223,0 +170756674132,222,0 +170756674180,223,0 +170756674228,222,0 +170756674276,220,0 +170756674325,220,0 +170756674373,220,0 +170756674421,221,0 +170756674469,221,0 +170756674517,221,0 +170756674564,222,0 +170756674612,222,0 +170756674660,222,0 +170756674710,225,0 +170756674758,223,0 +170756674807,226,0 +170756674857,223,0 +170756674906,223,0 +170756674954,224,0 +170756675002,225,0 +170756675051,223,0 +170756675099,222,0 +170756675147,216,0 +170756675195,216,0 +170756675243,217,0 +170756675291,217,0 +170756675339,217,0 +170756675387,219,0 +170756675436,219,0 +170756675484,219,0 +170756675532,220,0 +170756675580,220,0 +170756675629,221,0 +170756675677,220,0 +170756675725,221,0 +170756675773,221,0 +170756675820,222,0 +170756675868,224,0 +170756675916,222,0 +170756675964,223,0 +170756676013,216,0 +170756676061,215,0 +170756676111,216,0 +170756676158,217,0 +170756676208,218,0 +170756676256,218,0 +170756676304,219,0 +170756676353,219,0 +170756676401,221,0 +170756676449,220,0 +170756676498,222,0 +170756676546,221,0 +170756676594,222,0 +170756676644,222,0 +170756676693,224,0 +170756676741,223,0 +170756676789,223,0 +170756676837,222,0 +170756676885,217,0 +170756676933,214,0 +170756676981,215,0 +170756677028,216,0 +170756677076,217,0 +170756677124,216,0 +170756677172,217,0 +170756677220,218,0 +170756677268,219,0 +170756677316,219,0 +170756677365,220,0 +170756677415,221,0 +170756677464,221,0 +170756677512,222,0 +170756677562,221,0 +170756677610,224,0 +170756677657,224,0 +170756677707,222,0 +170756677755,216,0 +170756677804,214,0 +170756677852,215,0 +170756677900,215,0 +170756677948,216,0 +170756677998,217,0 +170756678046,217,0 +170756678095,218,0 +170756678144,218,0 +170756678194,219,0 +170756678244,221,0 +170756678291,221,0 +170756678339,222,0 +170756678389,221,0 +170756678437,222,0 +170756678486,222,0 +170756678534,221,0 +170756678582,222,0 +170756678630,215,0 +170756678678,214,0 +170756678728,215,0 +170756678777,215,0 +170756678827,215,0 +170756678874,216,0 +170756678922,217,0 +170756678970,217,0 +170756679020,217,0 +170756679069,219,0 +170756679117,219,0 +170756679165,220,0 +170756679215,221,0 +170756679263,223,0 +170756679312,222,0 +170756679360,222,0 +170756679409,223,0 +170756679457,222,0 +170756679505,216,0 +170756679555,214,0 +170756679603,215,0 +170756679651,216,0 +170756679699,216,0 +170756679746,216,0 +170756679796,217,0 +170756679845,218,0 +170756679893,218,0 +170756679943,218,0 +170756679991,220,0 +170756680039,220,0 +170756680087,221,0 +170756680136,221,0 +170756680184,223,0 +170756680234,224,0 +170756680281,221,0 +170756680331,222,0 +170756680379,220,0 +170756680427,214,0 +170756680475,214,0 +170756680523,215,0 +170756680571,214,0 +170756680618,215,0 +170756680666,215,0 +170756680714,217,0 +170756680762,217,0 +170756680810,218,0 +170756680858,219,0 +170756680907,221,0 +170756680957,221,0 +170756681006,220,0 +170756681054,220,0 +170756681102,221,0 +170756681150,222,0 +170756681200,222,0 +170756681247,222,0 +170756681295,214,0 +170756681343,214,0 +170756681393,215,0 +170756681441,214,0 +170756681489,216,0 +170756681537,216,0 +170756681585,216,0 +170756681632,216,0 +170756681682,217,0 +170756681730,218,0 +170756681778,218,0 +170756681826,219,0 +170756681874,219,0 +170756681922,220,0 +170756681970,220,0 +170756682018,220,0 +170756682065,223,0 +170756682113,222,0 +170756682161,215,0 +170756682209,215,0 +170756682259,216,0 +170756682308,217,0 +170756682358,217,0 +170756682406,217,0 +170756682455,218,0 +170756682503,219,0 +170756682551,219,0 +170756682599,221,0 +170756682647,221,0 +170756682696,221,0 +170756682744,222,0 +170756682792,224,0 +170756682840,224,0 +170756682888,222,0 +170756682936,222,0 +170756682984,222,0 +170756683032,215,0 +170756683081,214,0 +170756683131,215,0 +170756683179,215,0 +170756683227,216,0 +170756683275,217,0 +170756683323,216,0 +170756683371,217,0 +170756683419,218,0 +170756683467,218,0 +170756683514,220,0 +170756683562,220,0 +170756683610,223,0 +170756683658,219,0 +170756683706,222,0 +170756683754,222,0 +170756683802,223,0 +170756683852,222,0 +170756683900,215,0 +170756683948,214,0 +170756683997,214,0 +170756684045,214,0 +170756684095,214,0 +170756684143,214,0 +170756684192,215,0 +170756684240,215,0 +170756684288,216,0 +170756684337,217,0 +170756684385,220,0 +170756684435,218,0 +170756684483,218,0 +170756684531,219,0 +170756684580,219,0 +170756684630,220,0 +170756684678,220,0 +170756684726,221,0 +170756684774,215,0 +170756684823,215,0 +170756684871,215,0 +170756684919,216,0 +170756684968,217,0 +170756685016,218,0 +170756685066,220,0 +170756685114,218,0 +170756685163,219,0 +170756685211,220,0 +170756685261,221,0 +170756685309,222,0 +170756685356,222,0 +170756685404,222,0 +170756685452,222,0 +170756685500,223,0 +170756685548,223,0 +170756685596,224,0 +170756685644,217,0 +170756685694,216,0 +170756685742,217,0 +170756685791,217,0 +170756685839,222,0 +170756685887,219,0 +170756685936,220,0 +170756685984,220,0 +170756686032,220,0 +170756686082,221,0 +170756686130,220,0 +170756686179,222,0 +170756686227,222,0 +170756686275,222,0 +170756686323,222,0 +170756686371,222,0 +170756686420,223,0 +170756686468,222,0 +170756686518,216,0 +170756686566,216,0 +170756686615,216,0 +170756686664,217,0 +170756686712,217,0 +170756686762,218,0 +170756686810,219,0 +170756686858,219,0 +170756686907,221,0 +170756686955,221,0 +170756687003,222,0 +170756687051,222,0 +170756687100,224,0 +170756687150,222,0 +170756687198,223,0 +170756687246,224,0 +170756687294,222,0 +170756687343,222,0 +170756687391,218,0 +170756687441,217,0 +170756687489,219,0 +170756687537,219,0 +170756687584,219,0 +170756687632,219,0 +170756687680,221,0 +170756687728,221,0 +170756687776,222,0 +170756687823,223,0 +170756687871,222,0 +170756687919,225,0 +170756687967,224,0 +170756688015,223,0 +170756688063,224,0 +170756688110,223,0 +170756688160,222,0 +170756688208,222,0 +170756688256,217,0 +170756688303,217,0 +170756688351,218,0 +170756688401,220,0 +170756688450,219,0 +170756688498,220,0 +170756688548,221,0 +170756688597,221,0 +170756688645,221,0 +170756688695,223,0 +170756688742,222,0 +170756688790,222,0 +170756688838,223,0 +170756688886,224,0 +170756688934,223,0 +170756688982,222,0 +170756689030,222,0 +170756689078,223,0 +170756689127,219,0 +170756689175,214,0 +170756689225,215,0 +170756689273,215,0 +170756689322,216,0 +170756689370,217,0 +170756689418,217,0 +170756689466,218,0 +170756689513,219,0 +170756689561,220,0 +170756689609,220,0 +170756689657,221,0 +170756689704,223,0 +170756689752,222,0 +170756689800,222,0 +170756689848,223,0 +170756689896,222,0 +170756689945,222,0 +170756689995,217,0 +170756690043,214,0 +170756690091,214,0 +170756690139,215,0 +170756690188,215,0 +170756690236,215,0 +170756690284,216,0 +170756690332,216,0 +170756690380,216,0 +170756690429,216,0 +170756690479,218,0 +170756690528,219,0 +170756690576,220,0 +170756690624,219,0 +170756690673,219,0 +170756690721,222,0 +170756690769,220,0 +170756690817,221,0 +170756690865,221,0 +170756690914,214,0 +170756690962,214,0 +170756691011,215,0 +170756691059,216,0 +170756691107,216,0 +170756691155,216,0 +170756691203,217,0 +170756691251,216,0 +170756691298,219,0 +170756691346,219,0 +170756691394,221,0 +170756691442,221,0 +170756691490,222,0 +170756691537,222,0 +170756691585,223,0 +170756691633,223,0 +170756691681,222,0 +170756691729,223,0 +170756691777,216,0 +170756691824,216,0 +170756691874,216,0 +170756691922,218,0 +170756691971,218,0 +170756692019,219,0 +170756692067,220,0 +170756692115,220,0 +170756692165,221,0 +170756692213,221,0 +170756692261,222,0 +170756692310,223,0 +170756692360,223,0 +170756692409,224,0 +170756692457,223,0 +170756692507,223,0 +170756692554,222,0 +170756692604,223,0 +170756692652,215,0 +170756692700,215,0 +170756692749,216,0 +170756692799,217,0 +170756692847,217,0 +170756692895,218,0 +170756692943,218,0 +170756692992,220,0 +170756693040,222,0 +170756693088,222,0 +170756693138,222,0 +170756693186,223,0 +170756693234,222,0 +170756693284,224,0 +170756693333,222,0 +170756693381,223,0 +170756693429,223,0 +170756693478,222,0 +170756693528,215,0 +170756693576,216,0 +170756693624,217,0 +170756693672,218,0 +170756693719,218,0 +170756693769,220,0 +170756693818,220,0 +170756693868,220,0 +170756693916,222,0 +170756693965,224,0 +170756694015,222,0 +170756694063,222,0 +170756694111,224,0 +170756694160,223,0 +170756694208,223,0 +170756694256,223,0 +170756694305,223,0 +170756694353,222,0 +170756694403,215,0 +170756694452,215,0 +170756694502,216,0 +170756694550,217,0 +170756694599,218,0 +170756694647,218,0 +170756694696,218,0 +170756694744,219,0 +170756694792,221,0 +170756694842,222,0 +170756694890,222,0 +170756694938,221,0 +170756694985,222,0 +170756695035,223,0 +170756695084,224,0 +170756695134,223,0 +170756695183,223,0 +170756695231,222,0 +170756695279,215,0 +170756695327,215,0 +170756695375,216,0 +170756695423,217,0 +170756695472,218,0 +170756695522,218,0 +170756695569,218,0 +170756695617,220,0 +170756695665,219,0 +170756695715,224,0 +170756695764,221,0 +170756695812,222,0 +170756695861,222,0 +170756695909,224,0 +170756695959,223,0 +170756696007,225,0 +170756696056,222,0 +170756696106,222,0 +170756696153,215,0 +170756696201,215,0 +170756696251,215,0 +170756696300,215,0 +170756696348,217,0 +170756696396,217,0 +170756696444,217,0 +170756696492,220,0 +170756696540,219,0 +170756696588,219,0 +170756696636,221,0 +170756696684,222,0 +170756696733,222,0 +170756696783,223,0 +170756696831,223,0 +170756696878,222,0 +170756696926,222,0 +170756696976,223,0 +170756697026,214,0 +170756697074,214,0 +170756697122,215,0 +170756697170,215,0 +170756697218,216,0 +170756697265,216,0 +170756697313,217,0 +170756697361,218,0 +170756697411,218,0 +170756697459,219,0 +170756697507,219,0 +170756697556,222,0 +170756697606,220,0 +170756697655,221,0 +170756697703,221,0 +170756697751,222,0 +170756697801,221,0 +170756697849,223,0 +170756697896,216,0 +170756697946,215,0 +170756697994,216,0 +170756698042,217,0 +170756698090,217,0 +170756698138,217,0 +170756698186,218,0 +170756698234,218,0 +170756698281,219,0 +170756698329,219,0 +170756698379,221,0 +170756698427,220,0 +170756698476,222,0 +170756698526,220,0 +170756698574,222,0 +170756698622,222,0 +170756698671,222,0 +170756698719,222,0 +170756698767,215,0 +170756698815,216,0 +170756698863,216,0 +170756698911,217,0 +170756698959,217,0 +170756699007,217,0 +170756699055,218,0 +170756699104,219,0 +170756699152,219,0 +170756699200,219,0 +170756699248,220,0 +170756699296,221,0 +170756699344,219,0 +170756699392,222,0 +170756699440,223,0 +170756699487,222,0 +170756699537,222,0 +170756699585,224,0 +170756699634,216,0 +170756699684,216,0 +170756699733,217,0 +170756699781,218,0 +170756699829,218,0 +170756699877,219,0 +170756699925,221,0 +170756699973,220,0 +170756700021,221,0 +170756700070,221,0 +170756700120,222,0 +170756700168,222,0 +170756700215,222,0 +170756700265,223,0 +170756700313,223,0 +170756700361,224,0 +170756700410,223,0 +170756700458,222,0 +170756700508,217,0 +170756700556,217,0 +170756700605,217,0 +170756700655,218,0 +170756700702,219,0 +170756700750,219,0 +170756700798,219,0 +170756700846,220,0 +170756700894,221,0 +170756700944,222,0 +170756700991,221,0 +170756701039,223,0 +170756701089,223,0 +170756701137,223,0 +170756701184,223,0 +170756701234,222,0 +170756701282,223,0 +170756701330,222,0 +170756701378,217,0 +170756701426,216,0 +170756701474,217,0 +170756701523,217,0 +170756701571,218,0 +170756701619,218,0 +170756701667,220,0 +170756701715,221,0 +170756701763,220,0 +170756701811,220,0 +170756701860,221,0 +170756701908,223,0 +170756701956,223,0 +170756702004,222,0 +170756702054,223,0 +170756702103,222,0 +170756702151,223,0 +170756702199,221,0 +170756702247,216,0 +170756702295,215,0 +170756702343,216,0 +170756702391,217,0 +170756702439,218,0 +170756702487,218,0 +170756702535,218,0 +170756702584,218,0 +170756702632,220,0 +170756702680,221,0 +170756702728,221,0 +170756702778,221,0 +170756702826,223,0 +170756702875,223,0 +170756702925,222,0 +170756702974,223,0 +170756703022,223,0 +170756703072,222,0 +170756703119,216,0 +170756703167,215,0 +170756703215,216,0 +170756703265,218,0 +170756703313,218,0 +170756703362,219,0 +170756703410,220,0 +170756703458,221,0 +170756703507,221,0 +170756703555,222,0 +170756703605,221,0 +170756703653,221,0 +170756703702,222,0 +170756703750,222,0 +170756703798,224,0 +170756703846,223,0 +170756703894,221,0 +170756703944,223,0 +170756703992,216,0 +170756704039,215,0 +170756704089,216,0 +170756704137,217,0 +170756704185,218,0 +170756704234,218,0 +170756704282,219,0 +170756704332,219,0 +170756704380,220,0 +170756704428,220,0 +170756704476,222,0 +170756704524,220,0 +170756704573,220,0 +170756704621,222,0 +170756704670,222,0 +170756704718,222,0 +170756704766,223,0 +170756704816,223,0 +170756704864,216,0 +170756704912,216,0 +170756704960,217,0 +170756705007,218,0 +170756705055,218,0 +170756705103,219,0 +170756705151,219,0 +170756705199,218,0 +170756705247,220,0 +170756705295,221,0 +170756705343,221,0 +170756705392,221,0 +170756705440,221,0 +170756705488,222,0 +170756705538,222,0 +170756705586,223,0 +170756705634,223,0 +170756705683,223,0 +170756705733,216,0 +170756705781,216,0 +170756705830,217,0 +170756705880,218,0 +170756705927,218,0 +170756705977,219,0 +170756706026,220,0 +170756706076,220,0 +170756706124,221,0 +170756706172,221,0 +170756706220,220,0 +170756706268,222,0 +170756706317,222,0 +170756706367,223,0 +170756706414,223,0 +170756706464,224,0 +170756706512,222,0 +170756706561,223,0 +170756706611,217,0 +170756706659,217,0 +170756706707,218,0 +170756706754,219,0 +170756706802,220,0 +170756706852,220,0 +170756706901,219,0 +170756706951,221,0 +170756707000,222,0 +170756707050,222,0 +170756707098,222,0 +170756707147,223,0 +170756707195,223,0 +170756707243,224,0 +170756707292,223,0 +170756707340,223,0 +170756707390,223,0 +170756707438,221,0 +170756707486,216,0 +170756707534,215,0 +170756707582,215,0 +170756707629,217,0 +170756707677,217,0 +170756707725,218,0 +170756707775,219,0 +170756707822,219,0 +170756707870,219,0 +170756707918,221,0 +170756707967,223,0 +170756708015,221,0 +170756708063,224,0 +170756708113,224,0 +170756708161,224,0 +170756708209,224,0 +170756708258,223,0 +170756708306,222,0 +170756708354,215,0 +170756708402,214,0 +170756708450,215,0 +170756708497,216,0 +170756708545,216,0 +170756708595,217,0 +170756708643,218,0 +170756708691,220,0 +170756708739,219,0 +170756708786,220,0 +170756708834,221,0 +170756708882,221,0 +170756708930,221,0 +170756708978,222,0 +170756709026,222,0 +170756709075,222,0 +170756709123,223,0 +170756709171,222,0 +170756709219,214,0 +170756709268,214,0 +170756709316,214,0 +170756709366,214,0 +170756709415,214,0 +170756709463,215,0 +170756709511,215,0 +170756709559,216,0 +170756709607,217,0 +170756709655,217,0 +170756709703,218,0 +170756709752,218,0 +170756709800,219,0 +170756709850,219,0 +170756709900,222,0 +170756709949,219,0 +170756709997,220,0 +170756710045,222,0 +170756710093,215,0 +170756710142,214,0 +170756710190,214,0 +170756710238,215,0 +170756710286,216,0 +170756710334,216,0 +170756710383,216,0 +170756710432,217,0 +170756710480,217,0 +170756710530,218,0 +170756710578,218,0 +170756710625,220,0 +170756710673,220,0 +170756710723,220,0 +170756710772,221,0 +170756710820,221,0 +170756710868,222,0 +170756710916,222,0 +170756710966,216,0 +170756711014,215,0 +170756711061,216,0 +170756711109,217,0 +170756711157,217,0 +170756711205,218,0 +170756711253,218,0 +170756711301,219,0 +170756711351,220,0 +170756711398,220,0 +170756711446,222,0 +170756711496,221,0 +170756711544,222,0 +170756711593,222,0 +170756711641,222,0 +170756711689,223,0 +170756711737,223,0 +170756711785,222,0 +170756711833,216,0 +170756711881,215,0 +170756711929,216,0 +170756711978,217,0 +170756712028,218,0 +170756712077,218,0 +170756712125,219,0 +170756712173,221,0 +170756712221,220,0 +170756712271,221,0 +170756712319,221,0 +170756712368,222,0 +170756712416,222,0 +170756712464,222,0 +170756712512,222,0 +170756712561,223,0 +170756712611,223,0 +170756712660,221,0 +170756712708,214,0 +170756712756,214,0 +170756712804,214,0 +170756712852,215,0 +170756712902,216,0 +170756712949,216,0 +170756712999,217,0 +170756713048,218,0 +170756713096,218,0 +170756713144,219,0 +170756713192,220,0 +170756713240,220,0 +170756713288,220,0 +170756713336,220,0 +170756713384,221,0 +170756713432,221,0 +170756713482,221,0 +170756713531,222,0 +170756713581,214,0 +170756713629,215,0 +170756713678,216,0 +170756713726,217,0 +170756713774,217,0 +170756713823,217,0 +170756713871,218,0 +170756713921,218,0 +170756713969,218,0 +170756714018,219,0 +170756714068,220,0 +170756714117,220,0 +170756714165,220,0 +170756714215,222,0 +170756714263,224,0 +170756714312,222,0 +170756714360,221,0 +170756714408,216,0 +170756714458,216,0 +170756714506,216,0 +170756714555,217,0 +170756714603,217,0 +170756714652,218,0 +170756714700,219,0 +170756714750,218,0 +170756714799,220,0 +170756714847,219,0 +170756714897,220,0 +170756714946,221,0 +170756714994,222,0 +170756715044,223,0 +170756715093,223,0 +170756715141,222,0 +170756715189,222,0 +170756715239,220,0 +170756715288,217,0 +170756715336,217,0 +170756715385,218,0 +170756715433,219,0 +170756715481,219,0 +170756715529,219,0 +170756715577,220,0 +170756715625,221,0 +170756715673,221,0 +170756715723,222,0 +170756715772,222,0 +170756715820,223,0 +170756715870,223,0 +170756715918,222,0 +170756715967,222,0 +170756716015,222,0 +170756716065,222,0 +170756716114,217,0 +170756716164,218,0 +170756716213,218,0 +170756716261,219,0 +170756716310,220,0 +170756716358,220,0 +170756716408,221,0 +170756716456,222,0 +170756716505,222,0 +170756716555,223,0 +170756716604,222,0 +170756716652,222,0 +170756716700,223,0 +170756716750,225,0 +170756716799,225,0 +170756716847,222,0 +170756716895,222,0 +170756716944,222,0 +170756716994,219,0 +170756717042,218,0 +170756717090,219,0 +170756717139,219,0 +170756717187,221,0 +170756717235,220,0 +170756717283,221,0 +170756717332,222,0 +170756717380,221,0 +170756717429,222,0 +170756717477,224,0 +170756717525,222,0 +170756717573,223,0 +170756717623,224,0 +170756717672,222,0 +170756717720,221,0 +170756717768,222,0 +170756717816,221,0 +170756717863,218,0 +170756717913,219,0 +170756717961,218,0 +170756718009,221,0 +170756718056,222,0 +170756718104,221,0 +170756718152,224,0 +170756718202,223,0 +170756718250,223,0 +170756718299,223,0 +170756718347,222,0 +170756718397,224,0 +170756718444,223,0 +170756718492,223,0 +170756718540,223,0 +170756718590,222,0 +170756718639,222,0 +170756718687,217,0 +170756718735,216,0 +170756718785,216,0 +170756718834,217,0 +170756718884,218,0 +170756718932,219,0 +170756718980,219,0 +170756719028,219,0 +170756719076,221,0 +170756719125,226,0 +170756719173,226,0 +170756719221,222,0 +170756719270,222,0 +170756719320,224,0 +170756719368,223,0 +170756719416,223,0 +170756719465,224,0 +170756719513,222,0 +170756719561,215,0 +170756719609,214,0 +170756719658,214,0 +170756719708,214,0 +170756719756,215,0 +170756719805,215,0 +170756719855,216,0 +170756719904,217,0 +170756719954,218,0 +170756720002,218,0 +170756720050,221,0 +170756720099,221,0 +170756720147,221,0 +170756720195,222,0 +170756720243,221,0 +170756720292,221,0 +170756720340,222,0 +170756720388,225,0 +170756720436,214,0 +170756720486,214,0 +170756720534,214,0 +170756720582,215,0 +170756720631,215,0 +170756720680,216,0 +170756720728,216,0 +170756720776,217,0 +170756720824,218,0 +170756720874,219,0 +170756720922,219,0 +170756720970,222,0 +170756721017,221,0 +170756721065,222,0 +170756721113,223,0 +170756721161,221,0 +170756721209,222,0 +170756721257,215,0 +170756721307,214,0 +170756721356,215,0 +170756721404,216,0 +170756721452,216,0 +170756721502,217,0 +170756721551,217,0 +170756721599,220,0 +170756721648,224,0 +170756721696,220,0 +170756721746,222,0 +170756721795,222,0 +170756721843,222,0 +170756721891,222,0 +170756721939,223,0 +170756721987,223,0 +170756722036,223,0 +170756722084,222,0 +170756722132,215,0 +170756722182,215,0 +170756722231,215,0 +170756722279,215,0 +170756722327,216,0 +170756722375,217,0 +170756722424,217,0 +170756722474,217,0 +170756722522,218,0 +170756722570,218,0 +170756722619,219,0 +170756722669,221,0 +170756722717,222,0 +170756722765,221,0 +170756722814,222,0 +170756722862,223,0 +170756722910,222,0 +170756722958,222,0 +170756723006,214,0 +170756723054,214,0 +170756723103,214,0 +170756723153,214,0 +170756723201,215,0 +170756723249,215,0 +170756723297,216,0 +170756723345,216,0 +170756723394,218,0 +170756723442,218,0 +170756723490,219,0 +170756723540,219,0 +170756723587,220,0 +170756723637,220,0 +170756723685,220,0 +170756723735,220,0 +170756723782,221,0 +170756723830,216,0 +170756723878,214,0 +170756723926,215,0 +170756723974,216,0 +170756724024,216,0 +170756724071,217,0 +170756724121,218,0 +170756724169,218,0 +170756724217,219,0 +170756724266,221,0 +170756724316,221,0 +170756724364,221,0 +170756724412,222,0 +170756724462,221,0 +170756724509,221,0 +170756724557,221,0 +170756724607,221,0 +170756724656,222,0 +170756724706,215,0 +170756724754,214,0 +170756724803,215,0 +170756724851,216,0 +170756724899,217,0 +170756724947,217,0 +170756724995,218,0 +170756725043,219,0 +170756725092,219,0 +170756725142,220,0 +170756725191,221,0 +170756725241,222,0 +170756725290,222,0 +170756725338,223,0 +170756725386,223,0 +170756725434,222,0 +170756725482,223,0 +170756725532,225,0 +170756725581,225,0 +170756725631,223,0 +170756725680,222,0 +170756725728,222,0 +170756725776,222,0 +170756725826,223,0 +170756725874,224,0 +170756725922,221,0 +170756725970,216,0 +170756726019,214,0 +170756726067,214,0 +170756726115,214,0 +170756726164,214,0 +170756726212,215,0 +170756726262,215,0 +170756726310,216,0 +170756726359,217,0 +170756726407,217,0 +170756726455,218,0 +170756726504,219,0 +170756726554,221,0 +170756726602,221,0 +170756726649,221,0 +170756726697,222,0 +170756726745,223,0 +170756726793,222,0 +170756726841,215,0 +170756726890,214,0 +170756726940,214,0 +170756726989,215,0 +170756727037,215,0 +170756727087,215,0 +170756727135,216,0 +170756727184,217,0 +170756727232,217,0 +170756727280,217,0 +170756727328,219,0 +170756727376,219,0 +170756727424,220,0 +170756727472,220,0 +170756727521,221,0 +170756727571,221,0 +170756727618,222,0 +170756727666,218,0 +170756727716,214,0 +170756727764,215,0 +170756727813,216,0 +170756727863,217,0 +170756727910,217,0 +170756727960,217,0 +170756728008,218,0 +170756728057,219,0 +170756728107,220,0 +170756728155,221,0 +170756728204,222,0 +170756728254,222,0 +170756728301,223,0 +170756728349,222,0 +170756728399,223,0 +170756728447,223,0 +170756728495,222,0 +170756728543,217,0 +170756728590,216,0 +170756728640,217,0 +170756728688,218,0 +170756728737,219,0 +170756728785,220,0 +170756728833,220,0 +170756728882,220,0 +170756728930,221,0 +170756728978,221,0 +170756729028,223,0 +170756729077,222,0 +170756729125,222,0 +170756729173,223,0 +170756729221,223,0 +170756729270,223,0 +170756729318,223,0 +170756729366,221,0 +170756729414,218,0 +170756729464,219,0 +170756729513,218,0 +170756729561,220,0 +170756729609,220,0 +170756729658,222,0 +170756729706,221,0 +170756729754,222,0 +170756729802,223,0 +170756729850,223,0 +170756729898,223,0 +170756729947,223,0 +170756729995,223,0 +170756730043,224,0 +170756730091,224,0 +170756730139,223,0 +170756730187,222,0 +170756730235,216,0 +170756730283,217,0 +170756730331,217,0 +170756730380,217,0 +170756730430,219,0 +170756730478,219,0 +170756730527,220,0 +170756730576,220,0 +170756730624,221,0 +170756730674,221,0 +170756730722,223,0 +170756730770,222,0 +170756730819,223,0 +170756730867,224,0 +170756730915,223,0 +170756730964,222,0 +170756731012,223,0 +170756731060,221,0 +170756731110,217,0 +170756731157,218,0 +170756731205,217,0 +170756731253,218,0 +170756731301,218,0 +170756731351,220,0 +170756731399,220,0 +170756731448,219,0 +170756731496,221,0 +170756731546,222,0 +170756731593,222,0 +170756731643,222,0 +170756731692,223,0 +170756731742,223,0 +170756731791,222,0 +170756731839,222,0 +170756731887,223,0 +170756731935,221,0 +170756731983,216,0 +170756732031,218,0 +170756732078,218,0 +170756732126,218,0 +170756732176,220,0 +170756732224,221,0 +170756732271,221,0 +170756732319,220,0 +170756732367,222,0 +170756732415,221,0 +170756732465,223,0 +170756732513,222,0 +170756732560,222,0 +170756732608,224,0 +170756732656,224,0 +170756732706,221,0 +170756732753,222,0 +170756732803,216,0 +170756732852,216,0 +170756732900,218,0 +170756732948,218,0 +170756732997,219,0 +170756733045,219,0 +170756733093,220,0 +170756733142,221,0 +170756733190,221,0 +170756733238,221,0 +170756733286,222,0 +170756733334,223,0 +170756733382,222,0 +170756733431,224,0 +170756733479,224,0 +170756733527,225,0 +170756733576,223,0 +170756733624,221,0 +170756733672,216,0 +170756733722,215,0 +170756733771,216,0 +170756733819,217,0 +170756733868,217,0 +170756733916,218,0 +170756733964,219,0 +170756734012,219,0 +170756734060,221,0 +170756734108,221,0 +170756734156,222,0 +170756734203,222,0 +170756734253,224,0 +170756734302,220,0 +170756734350,222,0 +170756734399,222,0 +170756734447,225,0 +170756734495,223,0 +170756734543,214,0 +170756734590,214,0 +170756734638,215,0 +170756734686,217,0 +170756734734,217,0 +170756734783,217,0 +170756734831,218,0 +170756734879,218,0 +170756734927,219,0 +170756734974,220,0 +170756735022,220,0 +170756735070,221,0 +170756735118,221,0 +170756735166,221,0 +170756735215,221,0 +170756735263,221,0 +170756735311,223,0 +170756735359,222,0 +170756735407,214,0 +170756735454,215,0 +170756735504,216,0 +170756735552,216,0 +170756735600,217,0 +170756735647,218,0 +170756735695,218,0 +170756735743,218,0 +170756735791,219,0 +170756735839,219,0 +170756735889,222,0 +170756735938,221,0 +170756735988,221,0 +170756736036,222,0 +170756736083,223,0 +170756736133,223,0 +170756736181,222,0 +170756736230,216,0 +170756736278,214,0 +170756736326,216,0 +170756736376,216,0 +170756736424,217,0 +170756736473,217,0 +170756736521,218,0 +170756736569,220,0 +170756736617,219,0 +170756736665,220,0 +170756736713,220,0 +170756736761,222,0 +170756736809,223,0 +170756736857,223,0 +170756736905,223,0 +170756736953,222,0 +170756737002,222,0 +170756737052,222,0 +170756737100,216,0 +170756737148,216,0 +170756737195,217,0 +170756737245,217,0 +170756737293,218,0 +170756737341,218,0 +170756737389,219,0 +170756737437,221,0 +170756737485,221,0 +170756737534,220,0 +170756737582,223,0 +170756737630,223,0 +170756737678,224,0 +170756737726,223,0 +170756737773,223,0 +170756737823,223,0 +170756737873,222,0 +170756737921,217,0 +170756737968,215,0 +170756738018,216,0 +170756738066,217,0 +170756738113,217,0 +170756738161,218,0 +170756738209,219,0 +170756738257,220,0 +170756738305,221,0 +170756738353,220,0 +170756738400,222,0 +170756738448,222,0 +170756738496,223,0 +170756738544,226,0 +170756738592,224,0 +170756738640,223,0 +170756738688,222,0 +170756738735,222,0 +170756738783,216,0 +170756738831,215,0 +170756738879,215,0 +170756738929,216,0 +170756738978,216,0 +170756739028,217,0 +170756739076,218,0 +170756739125,219,0 +170756739175,219,0 +170756739224,222,0 +170756739272,222,0 +170756739320,222,0 +170756739368,221,0 +170756739415,223,0 +170756739463,224,0 +170756739511,222,0 +170756739559,223,0 +170756739607,221,0 +170756739655,215,0 +170756739702,216,0 +170756739750,216,0 +170756739798,217,0 +170756739846,216,0 +170756739894,218,0 +170756739942,218,0 +170756739991,218,0 +170756740039,219,0 +170756740087,220,0 +170756740136,220,0 +170756740186,221,0 +170756740234,223,0 +170756740282,222,0 +170756740329,224,0 +170756740377,222,0 +170756740427,223,0 +170756740475,221,0 +170756740523,215,0 +170756740572,216,0 +170756740620,217,0 +170756740669,217,0 +170756740717,218,0 +170756740765,218,0 +170756740813,220,0 +170756740861,220,0 +170756740910,221,0 +170756740958,223,0 +170756741006,222,0 +170756741056,223,0 +170756741104,223,0 +170756741152,224,0 +170756741200,224,0 +170756741247,224,0 +170756741297,223,0 +170756741345,215,0 +170756741393,215,0 +170756741441,216,0 +170756741489,216,0 +170756741536,217,0 +170756741584,218,0 +170756741632,218,0 +170756741680,219,0 +170756741728,220,0 +170756741776,220,0 +170756741825,221,0 +170756741873,222,0 +170756741921,222,0 +170756741970,222,0 +170756742018,223,0 +170756742065,222,0 +170756742113,222,0 +170756742161,222,0 +170756742209,215,0 +170756742257,214,0 +170756742306,215,0 +170756742354,216,0 +170756742403,218,0 +170756742451,218,0 +170756742499,218,0 +170756742547,219,0 +170756742595,220,0 +170756742644,220,0 +170756742692,221,0 +170756742740,221,0 +170756742787,222,0 +170756742835,222,0 +170756742883,221,0 +170756742931,220,0 +170756742979,222,0 +170756743026,215,0 +170756743074,216,0 +170756743122,216,0 +170756743170,217,0 +170756743219,216,0 +170756743267,218,0 +170756743317,219,0 +170756743366,219,0 +170756743416,221,0 +170756743464,220,0 +170756743512,221,0 +170756743561,222,0 +170756743611,222,0 +170756743660,225,0 +170756743708,223,0 +170756743756,223,0 +170756743804,223,0 +170756743854,221,0 +170756743902,216,0 +170756743949,217,0 +170756743997,217,0 +170756744045,218,0 +170756744093,218,0 +170756744143,219,0 +170756744191,220,0 +170756744239,220,0 +170756744287,220,0 +170756744336,221,0 +170756744384,222,0 +170756744434,222,0 +170756744482,223,0 +170756744529,222,0 +170756744579,223,0 +170756744627,223,0 +170756744675,222,0 +170756744724,219,0 +170756744774,219,0 +170756744822,219,0 +170756744869,220,0 +170756744917,221,0 +170756744965,221,0 +170756745015,222,0 +170756745063,222,0 +170756745111,223,0 +170756745160,222,0 +170756745210,224,0 +170756745259,223,0 +170756745309,224,0 +170756745358,223,0 +170756745406,223,0 +170756745454,223,0 +170756745503,223,0 +170756745551,220,0 +170756745599,220,0 +170756745649,221,0 +170756745698,222,0 +170756745748,222,0 +170756745796,221,0 +170756745844,222,0 +170756745893,222,0 +170756745941,223,0 +170756745989,222,0 +170756746038,224,0 +170756746086,224,0 +170756746136,223,0 +170756746185,224,0 +170756746233,221,0 +170756746281,223,0 +170756746329,222,0 +170756746377,221,0 +170756746426,218,0 +170756746476,217,0 +170756746524,219,0 +170756746572,220,0 +170756746621,221,0 +170756746669,221,0 +170756746717,220,0 +170756746767,221,0 +170756746815,222,0 +170756746864,222,0 +170756746912,222,0 +170756746960,224,0 +170756747008,222,0 +170756747056,223,0 +170756747104,223,0 +170756747151,222,0 +170756747199,222,0 +170756747249,217,0 +170756747297,217,0 +170756747345,218,0 +170756747394,218,0 +170756747442,220,0 +170756747490,220,0 +170756747538,220,0 +170756747586,220,0 +170756747635,221,0 +170756747683,222,0 +170756747731,222,0 +170756747779,222,0 +170756747828,222,0 +170756747876,221,0 +170756747926,220,0 +170756747974,220,0 +170756748022,220,0 +170756748070,216,0 +170756748119,214,0 +170756748167,215,0 +170756748215,216,0 +170756748264,217,0 +170756748314,217,0 +170756748362,218,0 +170756748411,219,0 +170756748461,219,0 +170756748509,220,0 +170756748557,220,0 +170756748605,223,0 +170756748654,223,0 +170756748704,223,0 +170756748751,222,0 +170756748801,222,0 +170756748849,227,0 +170756748898,215,0 +170756748946,215,0 +170756748994,216,0 +170756749044,218,0 +170756749093,217,0 +170756749141,219,0 +170756749189,218,0 +170756749237,219,0 +170756749285,221,0 +170756749333,222,0 +170756749381,223,0 +170756749430,222,0 +170756749478,222,0 +170756749526,222,0 +170756749574,223,0 +170756749622,222,0 +170756749670,223,0 +170756749718,221,0 +170756749767,215,0 +170756749815,215,0 +170756749865,216,0 +170756749913,217,0 +170756749961,218,0 +170756750009,219,0 +170756750058,219,0 +170756750108,219,0 +170756750156,220,0 +170756750203,220,0 +170756750251,222,0 +170756750299,220,0 +170756750347,222,0 +170756750395,220,0 +170756750443,220,0 +170756750493,221,0 +170756750540,223,0 +170756750588,215,0 +170756750636,214,0 +170756750684,214,0 +170756750734,215,0 +170756750782,215,0 +170756750830,217,0 +170756750878,218,0 +170756750926,220,0 +170756750974,220,0 +170756751023,220,0 +170756751073,221,0 +170756751122,222,0 +170756751170,222,0 +170756751218,222,0 +170756751267,222,0 +170756751315,222,0 +170756751363,222,0 +170756751411,215,0 +170756751459,214,0 +170756751508,214,0 +170756751558,214,0 +170756751606,214,0 +170756751655,215,0 +170756751705,216,0 +170756751753,216,0 +170756751801,217,0 +170756751849,215,0 +170756751896,219,0 +170756751944,219,0 +170756751992,220,0 +170756752040,221,0 +170756752088,221,0 +170756752137,221,0 +170756752187,223,0 +170756752235,222,0 +170756752284,214,0 +170756752332,214,0 +170756752380,215,0 +170756752428,216,0 +170756752476,216,0 +170756752524,217,0 +170756752572,217,0 +170756752621,219,0 +170756752671,220,0 +170756752720,220,0 +170756752770,223,0 +170756752818,223,0 +170756752866,222,0 +170756752913,222,0 +170756752961,222,0 +170756753009,222,0 +170756753059,223,0 +170756753107,214,0 +170756753156,215,0 +170756753204,216,0 +170756753254,216,0 +170756753303,217,0 +170756753353,217,0 +170756753400,219,0 +170756753448,219,0 +170756753496,220,0 +170756753544,220,0 +170756753594,222,0 +170756753642,222,0 +170756753690,222,0 +170756753737,222,0 +170756753785,224,0 +170756753833,222,0 +170756753881,223,0 +170756753929,215,0 +170756753979,215,0 +170756754027,215,0 +170756754076,215,0 +170756754126,216,0 +170756754174,217,0 +170756754222,217,0 +170756754269,218,0 +170756754317,219,0 +170756754365,220,0 +170756754413,220,0 +170756754461,220,0 +170756754511,223,0 +170756754559,222,0 +170756754608,222,0 +170756754656,223,0 +170756754704,222,0 +170756754752,217,0 +170756754801,214,0 +170756754849,214,0 +170756754899,214,0 +170756754947,215,0 +170756754996,216,0 +170756755044,216,0 +170756755092,216,0 +170756755140,217,0 +170756755189,219,0 +170756755237,219,0 +170756755285,220,0 +170756755335,221,0 +170756755383,231,0 +170756755431,223,0 +170756755480,223,0 +170756755530,222,0 +170756755578,221,0 +170756755626,215,0 +170756755675,215,0 +170756755723,216,0 +170756755772,217,0 +170756755820,217,0 +170756755868,218,0 +170756755918,218,0 +170756755966,219,0 +170756756015,219,0 +170756756063,221,0 +170756756112,221,0 +170756756160,222,0 +170756756208,222,0 +170756756256,222,0 +170756756304,222,0 +170756756352,222,0 +170756756400,222,0 +170756756448,217,0 +170756756496,217,0 +170756756544,219,0 +170756756592,219,0 +170756756641,220,0 +170756756689,220,0 +170756756737,220,0 +170756756785,222,0 +170756756835,221,0 +170756756883,222,0 +170756756931,223,0 +170756756979,225,0 +170756757027,224,0 +170756757076,223,0 +170756757126,223,0 +170756757175,225,0 +170756757224,222,0 +170756757274,220,0 +170756757323,220,0 +170756757371,220,0 +170756757419,221,0 +170756757467,223,0 +170756757517,222,0 +170756757565,223,0 +170756757613,223,0 +170756757660,221,0 +170756757708,224,0 +170756757756,224,0 +170756757804,224,0 +170756757853,224,0 +170756757901,225,0 +170756757949,223,0 +170756757997,222,0 +170756758045,222,0 +170756758093,221,0 +170756758142,223,0 +170756758190,221,0 +170756758238,223,0 +170756758286,224,0 +170756758334,222,0 +170756758383,226,0 +170756758431,225,0 +170756758479,224,0 +170756758527,224,0 +170756758575,225,0 +170756758624,224,0 +170756758673,224,0 +170756758721,224,0 +170756758769,225,0 +170756758817,223,0 +170756758865,223,0 +170756758913,224,0 +170756758960,221,0 +170756759008,220,0 +170756759056,221,0 +170756759104,222,0 +170756759152,222,0 +170756759200,222,0 +170756759248,223,0 +170756759297,223,0 +170756759345,223,0 +170756759393,223,0 +170756759442,224,0 +170756759490,223,0 +170756759538,223,0 +170756759586,225,0 +170756759636,223,0 +170756759684,222,0 +170756759732,222,0 +170756759781,220,0 +170756759829,220,0 +170756759878,220,0 +170756759928,220,0 +170756759976,223,0 +170756760024,222,0 +170756760073,222,0 +170756760121,222,0 +170756760171,223,0 +170756760219,223,0 +170756760266,223,0 +170756760314,224,0 +170756760362,223,0 +170756760412,222,0 +170756760461,222,0 +170756760509,222,0 +170756760558,221,0 +170756760608,218,0 +170756760656,219,0 +170756760705,219,0 +170756760753,219,0 +170756760801,219,0 +170756760851,219,0 +170756760900,220,0 +170756760950,220,0 +170756760999,220,0 +170756761049,221,0 +170756761098,221,0 +170756761146,221,0 +170756761194,221,0 +170756761242,221,0 +170756761290,221,0 +170756761338,220,0 +170756761387,220,0 +170756761435,217,0 +170756761485,216,0 +170756761533,217,0 +170756761581,218,0 +170756761629,218,0 +170756761677,219,0 +170756761725,220,0 +170756761773,220,0 +170756761820,220,0 +170756761868,220,0 +170756761916,221,0 +170756761964,220,0 +170756762014,223,0 +170756762062,222,0 +170756762110,221,0 +170756762158,222,0 +170756762206,222,0 +170756762253,220,0 +170756762301,214,0 +170756762349,214,0 +170756762397,214,0 +170756762445,215,0 +170756762493,216,0 +170756762541,216,0 +170756762589,217,0 +170756762637,217,0 +170756762686,221,0 +170756762734,219,0 +170756762782,219,0 +170756762830,220,0 +170756762878,220,0 +170756762926,220,0 +170756762973,221,0 +170756763021,221,0 +170756763069,221,0 +170756763117,215,0 +170756763166,214,0 +170756763214,215,0 +170756763262,215,0 +170756763312,216,0 +170756763360,216,0 +170756763408,218,0 +170756763456,218,0 +170756763505,218,0 +170756763553,218,0 +170756763603,221,0 +170756763650,220,0 +170756763698,221,0 +170756763746,221,0 +170756763796,221,0 +170756763845,222,0 +170756763893,220,0 +170756763943,215,0 +170756763992,215,0 +170756764042,215,0 +170756764090,215,0 +170756764138,216,0 +170756764186,216,0 +170756764235,217,0 +170756764283,217,0 +170756764333,218,0 +170756764382,219,0 +170756764431,219,0 +170756764479,219,0 +170756764527,220,0 +170756764575,221,0 +170756764625,221,0 +170756764672,221,0 +170756764722,223,0 +170756764771,216,0 +170756764819,215,0 +170756764869,215,0 +170756764917,215,0 +170756764965,216,0 +170756765014,216,0 +170756765062,217,0 +170756765110,218,0 +170756765158,218,0 +170756765206,219,0 +170756765254,220,0 +170756765303,220,0 +170756765351,220,0 +170756765399,220,0 +170756765448,219,0 +170756765496,219,0 +170756765544,221,0 +170756765592,218,0 +170756765640,214,0 +170756765688,215,0 +170756765738,215,0 +170756765786,216,0 +170756765834,217,0 +170756765883,217,0 +170756765931,217,0 +170756765979,218,0 +170756766027,219,0 +170756766077,218,0 +170756766126,219,0 +170756766174,219,0 +170756766222,220,0 +170756766271,221,0 +170756766319,221,0 +170756766367,222,0 +170756766415,221,0 +170756766463,215,0 +170756766511,215,0 +170756766560,215,0 +170756766608,217,0 +170756766656,217,0 +170756766704,217,0 +170756766752,218,0 +170756766800,218,0 +170756766848,219,0 +170756766895,219,0 +170756766943,220,0 +170756766992,221,0 +170756767040,222,0 +170756767088,222,0 +170756767138,221,0 +170756767185,221,0 +170756767233,221,0 +170756767283,216,0 +170756767330,217,0 +170756767378,216,0 +170756767426,217,0 +170756767476,217,0 +170756767523,218,0 +170756767571,218,0 +170756767619,219,0 +170756767667,220,0 +170756767715,220,0 +170756767764,221,0 +170756767812,221,0 +170756767860,222,0 +170756767908,222,0 +170756767955,222,0 +170756768003,222,0 +170756768051,221,0 +170756768099,216,0 +170756768146,215,0 +170756768194,216,0 +170756768244,216,0 +170756768291,217,0 +170756768339,217,0 +170756768388,218,0 +170756768436,218,0 +170756768484,219,0 +170756768532,220,0 +170756768580,221,0 +170756768627,222,0 +170756768675,222,0 +170756768725,221,0 +170756768772,222,0 +170756768820,222,0 +170756768868,223,0 +170756768918,222,0 +170756768966,215,0 +170756769014,216,0 +170756769061,217,0 +170756769109,217,0 +170756769159,217,0 +170756769207,218,0 +170756769256,218,0 +170756769304,219,0 +170756769354,220,0 +170756769402,221,0 +170756769451,221,0 +170756769500,222,0 +170756769548,224,0 +170756769596,223,0 +170756769644,223,0 +170756769692,222,0 +170756769740,222,0 +170756769788,216,0 +170756769836,216,0 +170756769884,216,0 +170756769932,217,0 +170756769980,218,0 +170756770028,218,0 +170756770075,219,0 +170756770123,219,0 +170756770171,221,0 +170756770219,221,0 +170756770267,221,0 +170756770317,223,0 +170756770365,223,0 +170756770413,223,0 +170756770462,223,0 +170756770510,223,0 +170756770558,222,0 +170756770606,216,0 +170756770654,217,0 +170756770702,217,0 +170756770751,220,0 +170756770801,219,0 +170756770849,219,0 +170756770897,220,0 +170756770946,222,0 +170756770994,220,0 +170756771043,221,0 +170756771091,221,0 +170756771139,221,0 +170756771189,222,0 +170756771237,223,0 +170756771286,222,0 +170756771334,223,0 +170756771382,223,0 +170756771431,219,0 +170756771479,220,0 +170756771527,221,0 +170756771575,220,0 +170756771622,221,0 +170756771670,222,0 +170756771718,222,0 +170756771766,223,0 +170756771814,224,0 +170756771861,223,0 +170756771909,223,0 +170756771957,225,0 +170756772005,224,0 +170756772053,224,0 +170756772100,225,0 +170756772148,223,0 +170756772196,223,0 +170756772244,223,0 +170756772293,220,0 +170756772343,221,0 +170756772391,221,0 +170756772438,221,0 +170756772486,222,0 +170756772536,222,0 +170756772585,223,0 +170756772633,223,0 +170756772681,223,0 +170756772729,223,0 +170756772777,224,0 +170756772825,224,0 +170756772873,223,0 +170756772920,223,0 +170756772968,224,0 +170756773016,223,0 +170756773064,223,0 +170756773112,219,0 +170756773160,219,0 +170756773208,220,0 +170756773256,220,0 +170756773304,220,0 +170756773352,220,0 +170756773400,219,0 +170756773449,220,0 +170756773497,220,0 +170756773547,221,0 +170756773595,221,0 +170756773642,220,0 +170756773692,222,0 +170756773740,221,0 +170756773789,222,0 +170756773837,221,0 +170756773887,221,0 +170756773935,216,0 +170756773983,215,0 +170756774031,216,0 +170756774079,217,0 +170756774128,218,0 +170756774178,217,0 +170756774227,218,0 +170756774276,219,0 +170756774326,220,0 +170756774374,220,0 +170756774422,220,0 +170756774470,221,0 +170756774517,222,0 +170756774565,221,0 +170756774615,222,0 +170756774664,222,0 +170756774712,222,0 +170756774760,216,0 +170756774809,214,0 +170756774857,215,0 +170756774905,216,0 +170756774953,217,0 +170756775001,217,0 +170756775049,218,0 +170756775096,219,0 +170756775144,219,0 +170756775192,220,0 +170756775240,221,0 +170756775288,222,0 +170756775336,222,0 +170756775384,222,0 +170756775432,222,0 +170756775480,223,0 +170756775527,222,0 +170756775575,222,0 +170756775625,216,0 +170756775673,216,0 +170756775721,218,0 +170756775770,218,0 +170756775820,219,0 +170756775869,220,0 +170756775917,220,0 +170756775966,223,0 +170756776014,222,0 +170756776062,223,0 +170756776110,223,0 +170756776158,223,0 +170756776206,224,0 +170756776255,224,0 +170756776303,225,0 +170756776351,224,0 +170756776401,223,0 +170756776449,216,0 +170756776497,216,0 +170756776544,217,0 +170756776592,218,0 +170756776640,218,0 +170756776688,220,0 +170756776736,220,0 +170756776784,221,0 +170756776832,221,0 +170756776880,221,0 +170756776928,221,0 +170756776975,222,0 +170756777025,223,0 +170756777074,223,0 +170756777122,225,0 +170756777172,223,0 +170756777221,222,0 +170756777269,216,0 +170756777319,215,0 +170756777367,216,0 +170756777415,217,0 +170756777463,218,0 +170756777510,217,0 +170756777558,219,0 +170756777608,219,0 +170756777656,220,0 +170756777705,221,0 +170756777755,221,0 +170756777803,222,0 +170756777850,222,0 +170756777898,223,0 +170756777946,224,0 +170756777994,223,0 +170756778044,223,0 +170756778092,216,0 +170756778140,216,0 +170756778188,217,0 +170756778236,218,0 +170756778284,219,0 +170756778332,219,0 +170756778379,219,0 +170756778427,220,0 +170756778475,220,0 +170756778523,221,0 +170756778572,222,0 +170756778620,223,0 +170756778668,223,0 +170756778716,225,0 +170756778764,223,0 +170756778814,223,0 +170756778862,224,0 +170756778911,222,0 +170756778960,217,0 +170756779008,217,0 +170756779056,218,0 +170756779106,219,0 +170756779154,220,0 +170756779202,222,0 +170756779251,221,0 +170756779301,222,0 +170756779349,223,0 +170756779396,222,0 +170756779444,223,0 +170756779492,224,0 +170756779541,224,0 +170756779591,224,0 +170756779640,223,0 +170756779688,225,0 +170756779736,223,0 +170756779784,217,0 +170756779832,217,0 +170756779882,218,0 +170756779930,218,0 +170756779979,219,0 +170756780029,219,0 +170756780077,221,0 +170756780125,220,0 +170756780173,223,0 +170756780221,221,0 +170756780269,221,0 +170756780317,222,0 +170756780366,223,0 +170756780416,221,0 +170756780465,222,0 +170756780513,221,0 +170756780561,221,0 +170756780610,215,0 +170756780658,215,0 +170756780706,215,0 +170756780754,216,0 +170756780802,217,0 +170756780850,217,0 +170756780898,217,0 +170756780945,217,0 +170756780993,218,0 +170756781043,218,0 +170756781092,219,0 +170756781140,220,0 +170756781188,220,0 +170756781236,220,0 +170756781284,221,0 +170756781334,221,0 +170756781382,221,0 +170756781431,215,0 +170756781479,215,0 +170756781527,216,0 +170756781575,216,0 +170756781623,217,0 +170756781671,217,0 +170756781719,217,0 +170756781768,218,0 +170756781818,219,0 +170756781866,219,0 +170756781913,219,0 +170756781961,221,0 +170756782009,221,0 +170756782057,221,0 +170756782105,221,0 +170756782153,221,0 +170756782201,221,0 +170756782249,221,0 +170756782298,216,0 +170756782347,216,0 +170756782395,218,0 +170756782443,217,0 +170756782491,218,0 +170756782539,218,0 +170756782587,220,0 +170756782635,219,0 +170756782682,220,0 +170756782730,221,0 +170756782778,221,0 +170756782826,222,0 +170756782874,223,0 +170756782923,223,0 +170756782971,223,0 +170756783019,221,0 +170756783067,221,0 +170756783114,218,0 +170756783162,217,0 +170756783212,218,0 +170756783261,219,0 +170756783309,219,0 +170756783357,220,0 +170756783406,221,0 +170756783454,220,0 +170756783502,222,0 +170756783550,221,0 +170756783598,221,0 +170756783647,222,0 +170756783695,222,0 +170756783743,222,0 +170756783793,222,0 +170756783841,223,0 +170756783889,222,0 +170756783938,217,0 +170756783986,217,0 +170756784035,218,0 +170756784083,218,0 +170756784131,219,0 +170756784179,219,0 +170756784229,220,0 +170756784277,222,0 +170756784325,221,0 +170756784372,222,0 +170756784420,224,0 +170756784468,222,0 +170756784516,222,0 +170756784566,222,0 +170756784614,221,0 +170756784662,220,0 +170756784709,221,0 +170756784757,217,0 +170756784805,215,0 +170756784853,216,0 +170756784901,216,0 +170756784949,216,0 +170756784997,217,0 +170756785045,217,0 +170756785094,217,0 +170756785144,218,0 +170756785192,218,0 +170756785240,218,0 +170756785289,219,0 +170756785337,218,0 +170756785385,219,0 +170756785435,218,0 +170756785483,218,0 +170756785531,219,0 +170756785580,219,0 +170756785630,215,0 +170756785679,215,0 +170756785727,215,0 +170756785775,215,0 +170756785824,215,0 +170756785874,216,0 +170756785922,216,0 +170756785970,217,0 +170756786018,217,0 +170756786066,218,0 +170756786114,218,0 +170756786161,218,0 +170756786209,218,0 +170756786259,218,0 +170756786308,218,0 +170756786356,220,0 +170756786404,218,0 +170756786452,215,0 +170756786500,215,0 +170756786548,215,0 +170756786596,216,0 +170756786645,216,0 +170756786695,216,0 +170756786743,217,0 +170756786791,217,0 +170756786840,218,0 +170756786888,219,0 +170756786936,219,0 +170756786984,220,0 +170756787032,220,0 +170756787082,220,0 +170756787130,220,0 +170756787179,221,0 +170756787227,220,0 +170756787277,217,0 +170756787326,215,0 +170756787374,216,0 +170756787422,217,0 +170756787470,218,0 +170756787519,218,0 +170756787567,220,0 +170756787615,220,0 +170756787663,220,0 +170756787711,221,0 +170756787760,221,0 +170756787808,222,0 +170756787856,221,0 +170756787904,223,0 +170756787951,223,0 +170756787999,222,0 +170756788047,222,0 +170756788095,217,0 +170756788143,216,0 +170756788191,217,0 +170756788239,218,0 +170756788286,219,0 +170756788334,218,0 +170756788382,219,0 +170756788430,222,0 +170756788478,222,0 +170756788526,221,0 +170756788575,222,0 +170756788623,222,0 +170756788671,222,0 +170756788718,222,0 +170756788766,223,0 +170756788816,223,0 +170756788865,222,0 +170756788913,221,0 +170756788961,216,0 +170756789009,215,0 +170756789057,216,0 +170756789105,217,0 +170756789154,218,0 +170756789204,218,0 +170756789252,220,0 +170756789300,220,0 +170756789348,221,0 +170756789395,221,0 +170756789443,221,0 +170756789493,222,0 +170756789542,222,0 +170756789592,223,0 +170756789641,222,0 +170756789689,222,0 +170756789737,219,0 +170756789787,215,0 +170756789836,216,0 +170756789884,218,0 +170756789932,218,0 +170756789982,218,0 +170756790031,219,0 +170756790079,220,0 +170756790127,220,0 +170756790175,221,0 +170756790225,222,0 +170756790274,222,0 +170756790322,222,0 +170756790372,223,0 +170756790421,223,0 +170756790469,222,0 +170756790517,222,0 +170756790565,221,0 +170756790613,215,0 +170756790662,215,0 +170756790710,216,0 +170756790758,216,0 +170756790806,217,0 +170756790854,220,0 +170756790902,219,0 +170756790951,221,0 +170756790999,220,0 +170756791049,221,0 +170756791097,222,0 +170756791145,222,0 +170756791192,222,0 +170756791242,222,0 +170756791291,222,0 +170756791339,222,0 +170756791387,222,0 +170756791435,216,0 +170756791483,215,0 +170756791531,216,0 +170756791580,216,0 +170756791628,217,0 +170756791676,218,0 +170756791724,218,0 +170756791772,219,0 +170756791820,219,0 +170756791868,220,0 +170756791916,221,0 +170756791966,221,0 +170756792014,221,0 +170756792062,222,0 +170756792110,221,0 +170756792158,221,0 +170756792206,221,0 +170756792253,216,0 +170756792303,214,0 +170756792352,215,0 +170756792400,216,0 +170756792448,216,0 +170756792498,217,0 +170756792546,217,0 +170756792594,218,0 +170756792643,218,0 +170756792691,219,0 +170756792740,220,0 +170756792790,220,0 +170756792838,221,0 +170756792887,220,0 +170756792935,221,0 +170756792985,222,0 +170756793033,222,0 +170756793081,221,0 +170756793129,215,0 +170756793177,216,0 +170756793225,216,0 +170756793273,217,0 +170756793322,217,0 +170756793370,218,0 +170756793420,218,0 +170756793469,219,0 +170756793517,219,0 +170756793566,220,0 +170756793614,221,0 +170756793662,222,0 +170756793712,222,0 +170756793760,221,0 +170756793809,222,0 +170756793857,222,0 +170756793905,221,0 +170756793953,216,0 +170756794001,217,0 +170756794051,218,0 +170756794099,218,0 +170756794148,220,0 +170756794196,219,0 +170756794244,220,0 +170756794294,220,0 +170756794342,220,0 +170756794390,221,0 +170756794437,220,0 +170756794487,222,0 +170756794536,223,0 +170756794586,221,0 +170756794636,222,0 +170756794683,222,0 +170756794731,222,0 +170756794779,217,0 +170756794827,217,0 +170756794875,218,0 +170756794925,219,0 +170756794972,218,0 +170756795020,218,0 +170756795068,220,0 +170756795116,221,0 +170756795164,221,0 +170756795212,224,0 +170756795260,222,0 +170756795308,223,0 +170756795356,222,0 +170756795405,222,0 +170756795455,223,0 +170756795503,223,0 +170756795551,222,0 +170756795599,218,0 +170756795648,218,0 +170756795696,218,0 +170756795744,219,0 +170756795792,219,0 +170756795841,220,0 +170756795891,221,0 +170756795939,222,0 +170756795987,221,0 +170756796036,222,0 +170756796086,221,0 +170756796134,223,0 +170756796181,223,0 +170756796229,222,0 +170756796277,224,0 +170756796325,223,0 +170756796375,222,0 +170756796423,219,0 +170756796471,219,0 +170756796520,219,0 +170756796568,220,0 +170756796616,220,0 +170756796664,219,0 +170756796714,220,0 +170756796762,220,0 +170756796809,223,0 +170756796859,223,0 +170756796907,223,0 +170756796956,223,0 +170756797004,225,0 +170756797054,224,0 +170756797103,223,0 +170756797153,223,0 +170756797201,222,0 +170756797250,217,0 +170756797300,219,0 +170756797349,220,0 +170756797399,220,0 +170756797446,221,0 +170756797496,221,0 +170756797545,222,0 +170756797593,223,0 +170756797641,224,0 +170756797691,222,0 +170756797739,224,0 +170756797787,223,0 +170756797834,225,0 +170756797882,224,0 +170756797932,223,0 +170756797980,224,0 +170756798029,222,0 +170756798077,216,0 +170756798127,216,0 +170756798175,216,0 +170756798224,218,0 +170756798272,219,0 +170756798320,219,0 +170756798369,220,0 +170756798419,220,0 +170756798468,222,0 +170756798516,222,0 +170756798564,223,0 +170756798612,224,0 +170756798661,224,0 +170756798709,224,0 +170756798757,224,0 +170756798807,224,0 +170756798855,223,0 +170756798902,221,0 +170756798950,215,0 +170756799000,216,0 +170756799048,217,0 +170756799097,218,0 +170756799145,219,0 +170756799195,218,0 +170756799243,222,0 +170756799290,221,0 +170756799338,222,0 +170756799386,222,0 +170756799436,221,0 +170756799485,224,0 +170756799533,223,0 +170756799581,223,0 +170756799629,223,0 +170756799677,223,0 +170756799725,223,0 +170756799773,215,0 +170756799821,215,0 +170756799870,217,0 +170756799920,217,0 +170756799969,217,0 +170756800019,218,0 +170756800068,219,0 +170756800116,220,0 +170756800166,221,0 +170756800215,222,0 +170756800265,225,0 +170756800314,223,0 +170756800362,224,0 +170756800411,223,0 +170756800461,223,0 +170756800510,223,0 +170756800558,223,0 +170756800606,215,0 +170756800656,214,0 +170756800705,215,0 +170756800753,215,0 +170756800803,216,0 +170756800850,217,0 +170756800900,218,0 +170756800949,218,0 +170756800997,219,0 +170756801047,219,0 +170756801095,221,0 +170756801143,221,0 +170756801192,222,0 +170756801240,225,0 +170756801288,222,0 +170756801336,222,0 +170756801384,223,0 +170756801433,215,0 +170756801481,215,0 +170756801529,216,0 +170756801577,217,0 +170756801625,217,0 +170756801674,218,0 +170756801722,220,0 +170756801770,220,0 +170756801818,221,0 +170756801867,221,0 +170756801915,220,0 +170756801965,222,0 +170756802014,224,0 +170756802062,222,0 +170756802110,224,0 +170756802158,223,0 +170756802206,223,0 +170756802253,217,0 +170756802301,216,0 +170756802349,217,0 +170756802397,217,0 +170756802445,219,0 +170756802493,219,0 +170756802540,221,0 +170756802588,220,0 +170756802636,223,0 +170756802686,222,0 +170756802734,223,0 +170756802783,224,0 +170756802831,223,0 +170756802879,224,0 +170756802927,224,0 +170756802974,225,0 +170756803022,224,0 +170756803070,218,0 +170756803118,215,0 +170756803166,216,0 +170756803215,218,0 +170756803263,219,0 +170756803311,220,0 +170756803359,221,0 +170756803409,221,0 +170756803457,222,0 +170756803504,222,0 +170756803552,223,0 +170756803600,223,0 +170756803648,223,0 +170756803696,222,0 +170756803744,223,0 +170756803792,224,0 +170756803840,224,0 +170756803888,222,0 +170756803936,215,0 +170756803984,215,0 +170756804032,219,0 +170756804081,217,0 +170756804129,218,0 +170756804177,219,0 +170756804227,220,0 +170756804276,221,0 +170756804324,221,0 +170756804372,221,0 +170756804421,222,0 +170756804471,223,0 +170756804520,223,0 +170756804568,224,0 +170756804616,224,0 +170756804666,228,0 +170756804714,222,0 +170756804762,217,0 +170756804810,217,0 +170756804859,218,0 +170756804907,219,0 +170756804955,219,0 +170756805003,221,0 +170756805051,221,0 +170756805098,223,0 +170756805146,222,0 +170756805194,222,0 +170756805243,223,0 +170756805293,223,0 +170756805341,223,0 +170756805388,223,0 +170756805436,223,0 +170756805484,223,0 +170756805532,222,0 +170756805580,220,0 +170756805628,220,0 +170756805676,220,0 +170756805723,221,0 +170756805771,222,0 +170756805819,222,0 +170756805867,223,0 +170756805915,222,0 +170756805963,223,0 +170756806011,223,0 +170756806058,223,0 +170756806106,223,0 +170756806154,224,0 +170756806202,224,0 +170756806250,223,0 +170756806298,223,0 +170756806346,222,0 +170756806393,222,0 +170756806441,219,0 +170756806489,219,0 +170756806539,220,0 +170756806587,220,0 +170756806635,221,0 +170756806684,222,0 +170756806733,222,0 +170756806783,223,0 +170756806831,224,0 +170756806880,223,0 +170756806928,224,0 +170756806976,222,0 +170756807025,222,0 +170756807073,224,0 +170756807123,225,0 +170756807171,224,0 +170756807219,222,0 +170756807267,218,0 +170756807315,217,0 +170756807363,218,0 +170756807412,219,0 +170756807460,220,0 +170756807508,220,0 +170756807557,221,0 +170756807607,221,0 +170756807656,222,0 +170756807706,221,0 +170756807755,223,0 +170756807803,223,0 +170756807851,224,0 +170756807899,224,0 +170756807947,224,0 +170756807995,223,0 +170756808044,223,0 +170756808092,217,0 +170756808141,218,0 +170756808191,218,0 +170756808239,220,0 +170756808287,220,0 +170756808336,220,0 +170756808384,222,0 +170756808432,223,0 +170756808481,222,0 +170756808531,223,0 +170756808580,225,0 +170756808628,222,0 +170756808678,224,0 +170756808727,223,0 +170756808775,224,0 +170756808823,222,0 +170756808871,223,0 +170756808919,217,0 +170756808968,217,0 +170756809016,218,0 +170756809064,219,0 +170756809114,219,0 +170756809163,220,0 +170756809213,221,0 +170756809262,221,0 +170756809311,221,0 +170756809359,222,0 +170756809407,222,0 +170756809455,223,0 +170756809505,224,0 +170756809553,224,0 +170756809601,225,0 +170756809648,225,0 +170756809696,223,0 +170756809744,216,0 +170756809794,215,0 +170756809843,215,0 +170756809893,215,0 +170756809941,216,0 +170756809989,217,0 +170756810037,217,0 +170756810086,218,0 +170756810134,219,0 +170756810182,219,0 +170756810230,220,0 +170756810278,221,0 +170756810326,222,0 +170756810374,220,0 +170756810422,222,0 +170756810471,219,0 +170756810519,221,0 +170756810567,222,0 +170756810615,215,0 +170756810663,215,0 +170756810712,215,0 +170756810762,215,0 +170756810810,215,0 +170756810859,216,0 +170756810907,216,0 +170756810955,216,0 +170756811003,217,0 +170756811052,218,0 +170756811100,219,0 +170756811148,220,0 +170756811196,219,0 +170756811244,220,0 +170756811293,221,0 +170756811341,223,0 +170756811389,222,0 +170756811437,215,0 +170756811487,216,0 +170756811534,218,0 +170756811582,217,0 +170756811630,218,0 +170756811678,218,0 +170756811726,219,0 +170756811776,220,0 +170756811823,221,0 +170756811873,221,0 +170756811922,222,0 +170756811972,222,0 +170756812021,225,0 +170756812071,223,0 +170756812120,223,0 +170756812168,223,0 +170756812216,226,0 +170756812264,215,0 +170756812314,216,0 +170756812362,217,0 +170756812410,218,0 +170756812459,218,0 +170756812507,219,0 +170756812555,220,0 +170756812603,220,0 +170756812652,220,0 +170756812700,222,0 +170756812750,222,0 +170756812799,223,0 +170756812847,223,0 +170756812895,223,0 +170756812943,223,0 +170756812991,222,0 +170756813040,222,0 +170756813088,215,0 +170756813136,215,0 +170756813184,216,0 +170756813232,217,0 +170756813280,217,0 +170756813328,218,0 +170756813376,218,0 +170756813424,219,0 +170756813473,220,0 +170756813523,221,0 +170756813571,222,0 +170756813619,222,0 +170756813668,225,0 +170756813716,224,0 +170756813765,223,0 +170756813813,223,0 +170756813863,222,0 +170756813911,216,0 +170756813960,216,0 +170756814008,217,0 +170756814056,218,0 +170756814106,219,0 +170756814154,220,0 +170756814202,220,0 +170756814251,220,0 +170756814299,223,0 +170756814347,222,0 +170756814395,223,0 +170756814444,222,0 +170756814492,223,0 +170756814540,223,0 +170756814590,224,0 +170756814638,222,0 +170756814686,216,0 +170756814735,215,0 +170756814783,216,0 +170756814831,217,0 +170756814879,217,0 +170756814928,218,0 +170756814976,218,0 +170756815026,219,0 +170756815074,220,0 +170756815122,220,0 +170756815170,222,0 +170756815217,221,0 +170756815265,223,0 +170756815315,222,0 +170756815363,223,0 +170756815411,223,0 +170756815459,223,0 +170756815507,217,0 +170756815555,215,0 +170756815603,217,0 +170756815650,217,0 +170756815700,218,0 +170756815748,218,0 +170756815796,219,0 +170756815844,220,0 +170756815891,220,0 +170756815939,220,0 +170756815987,221,0 +170756816035,222,0 +170756816083,221,0 +170756816133,223,0 +170756816182,222,0 +170756816230,223,0 +170756816278,223,0 +170756816326,222,0 +170756816375,216,0 +170756816425,216,0 +170756816473,217,0 +170756816521,218,0 +170756816569,218,0 +170756816617,219,0 +170756816665,218,0 +170756816713,220,0 +170756816760,221,0 +170756816808,221,0 +170756816856,224,0 +170756816906,222,0 +170756816955,222,0 +170756817005,223,0 +170756817053,223,0 +170756817101,222,0 +170756817149,220,0 +170756817198,217,0 +170756817246,217,0 +170756817294,218,0 +170756817344,219,0 +170756817391,219,0 +170756817439,220,0 +170756817487,220,0 +170756817535,221,0 +170756817583,221,0 +170756817631,223,0 +170756817679,223,0 +170756817727,224,0 +170756817776,224,0 +170756817826,223,0 +170756817874,222,0 +170756817922,223,0 +170756817970,221,0 +170756818019,220,0 +170756818067,222,0 +170756818117,224,0 +170756818165,220,0 +170756818214,221,0 +170756818262,223,0 +170756818310,223,0 +170756818358,224,0 +170756818406,223,0 +170756818454,223,0 +170756818502,223,0 +170756818550,224,0 +170756818598,224,0 +170756818645,223,0 +170756818695,223,0 +170756818743,223,0 +170756818791,221,0 +170756818839,221,0 +170756818887,224,0 +170756818935,221,0 +170756818983,221,0 +170756819032,224,0 +170756819082,223,0 +170756819131,223,0 +170756819179,223,0 +170756819227,223,0 +170756819275,223,0 +170756819324,224,0 +170756819372,224,0 +170756819422,224,0 +170756819470,224,0 +170756819519,223,0 +170756819567,224,0 +170756819617,220,0 +170756819665,220,0 +170756819714,221,0 +170756819762,222,0 +170756819812,221,0 +170756819860,224,0 +170756819909,222,0 +170756819957,223,0 +170756820005,222,0 +170756820055,224,0 +170756820103,224,0 +170756820150,224,0 +170756820198,224,0 +170756820246,224,0 +170756820294,224,0 +170756820342,222,0 +170756820392,222,0 +170756820440,221,0 +170756820489,221,0 +170756820537,221,0 +170756820585,222,0 +170756820633,221,0 +170756820680,223,0 +170756820728,223,0 +170756820778,224,0 +170756820826,226,0 +170756820874,223,0 +170756820922,225,0 +170756820970,224,0 +170756821018,224,0 +170756821066,224,0 +170756821113,224,0 +170756821161,223,0 +170756821209,222,0 +170756821259,218,0 +170756821307,218,0 +170756821356,218,0 +170756821404,219,0 +170756821452,220,0 +170756821500,221,0 +170756821548,221,0 +170756821598,221,0 +170756821646,222,0 +170756821694,222,0 +170756821742,222,0 +170756821791,228,0 +170756821841,224,0 +170756821890,224,0 +170756821938,226,0 +170756821988,224,0 +170756822035,222,0 +170756822083,216,0 +170756822133,215,0 +170756822181,216,0 +170756822230,216,0 +170756822278,217,0 +170756822326,219,0 +170756822374,218,0 +170756822424,219,0 +170756822472,220,0 +170756822520,224,0 +170756822567,222,0 +170756822617,222,0 +170756822665,222,0 +170756822713,222,0 +170756822761,226,0 +170756822809,223,0 +170756822857,222,0 +170756822905,215,0 +170756822954,215,0 +170756823002,216,0 +170756823052,216,0 +170756823100,217,0 +170756823149,218,0 +170756823199,218,0 +170756823247,220,0 +170756823296,220,0 +170756823344,221,0 +170756823392,222,0 +170756823440,222,0 +170756823488,222,0 +170756823536,223,0 +170756823586,223,0 +170756823634,223,0 +170756823682,222,0 +170756823729,215,0 +170756823777,215,0 +170756823827,217,0 +170756823875,218,0 +170756823923,218,0 +170756823971,219,0 +170756824019,219,0 +170756824068,220,0 +170756824116,221,0 +170756824164,221,0 +170756824212,222,0 +170756824262,221,0 +170756824311,223,0 +170756824359,223,0 +170756824407,225,0 +170756824455,223,0 +170756824503,223,0 +170756824551,215,0 +170756824600,214,0 +170756824650,216,0 +170756824698,216,0 +170756824746,217,0 +170756824794,218,0 +170756824843,220,0 +170756824891,219,0 +170756824941,221,0 +170756824989,220,0 +170756825038,220,0 +170756825086,224,0 +170756825136,221,0 +170756825183,224,0 +170756825231,224,0 +170756825281,224,0 +170756825331,223,0 +170756825380,215,0 +170756825428,214,0 +170756825478,215,0 +170756825527,216,0 +170756825575,217,0 +170756825623,217,0 +170756825672,218,0 +170756825720,219,0 +170756825768,221,0 +170756825818,221,0 +170756825866,222,0 +170756825914,223,0 +170756825961,223,0 +170756826009,224,0 +170756826059,223,0 +170756826108,223,0 +170756826156,222,0 +170756826204,214,0 +170756826252,215,0 +170756826300,216,0 +170756826350,217,0 +170756826398,217,0 +170756826446,218,0 +170756826495,218,0 +170756826543,219,0 +170756826593,220,0 +170756826641,221,0 +170756826690,221,0 +170756826738,223,0 +170756826786,227,0 +170756826834,222,0 +170756826882,222,0 +170756826930,223,0 +170756826979,221,0 +170756827027,214,0 +170756827075,215,0 +170756827125,215,0 +170756827173,217,0 +170756827221,217,0 +170756827269,218,0 +170756827316,218,0 +170756827366,219,0 +170756827414,221,0 +170756827463,219,0 +170756827513,221,0 +170756827561,221,0 +170756827608,221,0 +170756827658,221,0 +170756827706,223,0 +170756827754,222,0 +170756827802,222,0 +170756827850,215,0 +170756827897,216,0 +170756827945,217,0 +170756827993,219,0 +170756828041,218,0 +170756828089,218,0 +170756828137,219,0 +170756828186,219,0 +170756828234,221,0 +170756828284,222,0 +170756828332,222,0 +170756828380,223,0 +170756828428,222,0 +170756828477,222,0 +170756828525,223,0 +170756828573,223,0 +170756828622,218,0 +170756828672,214,0 +170756828720,214,0 +170756828768,215,0 +170756828817,216,0 +170756828865,217,0 +170756828913,217,0 +170756828961,218,0 +170756829010,219,0 +170756829058,220,0 +170756829106,221,0 +170756829155,222,0 +170756829203,221,0 +170756829252,221,0 +170756829300,222,0 +170756829348,223,0 +170756829396,222,0 +170756829444,216,0 +170756829492,215,0 +170756829539,216,0 +170756829587,216,0 +170756829635,217,0 +170756829683,217,0 +170756829731,218,0 +170756829779,219,0 +170756829827,219,0 +170756829875,221,0 +170756829922,221,0 +170756829970,221,0 +170756830018,223,0 +170756830066,222,0 +170756830115,223,0 +170756830163,225,0 +170756830211,225,0 +170756830259,217,0 +170756830307,215,0 +170756830355,216,0 +170756830402,217,0 +170756830452,218,0 +170756830500,218,0 +170756830548,219,0 +170756830595,220,0 +170756830643,220,0 +170756830691,220,0 +170756830739,222,0 +170756830787,222,0 +170756830835,223,0 +170756830882,222,0 +170756830932,222,0 +170756830980,224,0 +170756831027,222,0 +170756831075,221,0 +170756831123,216,0 +170756831172,217,0 +170756831220,218,0 +170756831268,218,0 +170756831316,220,0 +170756831365,220,0 +170756831413,221,0 +170756831461,222,0 +170756831509,222,0 +170756831557,223,0 +170756831604,225,0 +170756831652,224,0 +170756831700,225,0 +170756831748,223,0 +170756831796,224,0 +170756831843,223,0 +170756831891,222,0 +170756831939,218,0 +170756831987,219,0 +170756832035,218,0 +170756832083,221,0 +170756832130,222,0 +170756832180,222,0 +170756832228,222,0 +170756832275,222,0 +170756832323,223,0 +170756832371,224,0 +170756832419,223,0 +170756832467,225,0 +170756832514,224,0 +170756832562,224,0 +170756832610,223,0 +170756832658,223,0 +170756832706,221,0 +170756832754,218,0 +170756832801,219,0 +170756832849,220,0 +170756832897,220,0 +170756832946,222,0 +170756832994,222,0 +170756833042,222,0 +170756833090,223,0 +170756833138,223,0 +170756833185,223,0 +170756833235,223,0 +170756833282,224,0 +170756833330,223,0 +170756833378,224,0 +170756833426,225,0 +170756833474,223,0 +170756833522,222,0 +170756833569,221,0 +170756833617,221,0 +170756833665,221,0 +170756833713,222,0 +170756833761,224,0 +170756833808,223,0 +170756833856,222,0 +170756833904,223,0 +170756833952,223,0 +170756834000,224,0 +170756834048,223,0 +170756834096,223,0 +170756834145,223,0 +170756834193,225,0 +170756834243,223,0 +170756834290,223,0 +170756834338,223,0 +170756834386,223,0 +170756834434,223,0 +170756834482,222,0 +170756834530,224,0 +170756834580,223,0 +170756834629,224,0 +170756834677,224,0 +170756834725,225,0 +170756834773,224,0 +170756834821,223,0 +170756834870,224,0 +170756834918,224,0 +170756834966,224,0 +170756835014,223,0 +170756835062,223,0 +170756835111,223,0 +170756835159,222,0 +170756835207,223,0 +170756835255,223,0 +170756835303,223,0 +170756835351,222,0 +170756835399,223,0 +170756835448,226,0 +170756835498,224,0 +170756835546,223,0 +170756835593,223,0 +170756835641,225,0 +170756835691,226,0 +170756835738,225,0 +170756835786,223,0 +170756835834,224,0 +170756835883,223,0 +170756835931,222,0 +170756835979,222,0 +170756836027,219,0 +170756836077,219,0 +170756836125,220,0 +170756836172,222,0 +170756836220,222,0 +170756836270,222,0 +170756836318,224,0 +170756836365,222,0 +170756836413,222,0 +170756836461,224,0 +170756836511,224,0 +170756836560,225,0 +170756836610,225,0 +170756836659,224,0 +170756836707,224,0 +170756836756,222,0 +170756836804,222,0 +170756836852,218,0 +170756836902,218,0 +170756836950,219,0 +170756836998,220,0 +170756837046,220,0 +170756837093,221,0 +170756837141,222,0 +170756837191,223,0 +170756837240,223,0 +170756837288,225,0 +170756837338,224,0 +170756837386,224,0 +170756837433,223,0 +170756837481,224,0 +170756837530,223,0 +170756837578,223,0 +170756837626,216,0 +170756837674,217,0 +170756837723,217,0 +170756837771,218,0 +170756837821,219,0 +170756837869,223,0 +170756837916,220,0 +170756837964,220,0 +170756838012,221,0 +170756838060,221,0 +170756838108,222,0 +170756838156,223,0 +170756838203,224,0 +170756838251,224,0 +170756838299,223,0 +170756838347,223,0 +170756838395,224,0 +170756838443,217,0 +170756838490,215,0 +170756838538,216,0 +170756838586,217,0 +170756838634,216,0 +170756838682,218,0 +170756838730,219,0 +170756838777,220,0 +170756838825,220,0 +170756838873,222,0 +170756838923,216,0 +170756838972,216,0 +170756839020,224,0 +170756839068,222,0 +170756839116,222,0 +170756839164,221,0 +170756839212,223,0 +170756839261,217,0 +170756839311,214,0 +170756839360,214,0 +170756839408,214,0 +170756839458,216,0 +170756839506,217,0 +170756839554,217,0 +170756839603,218,0 +170756839652,219,0 +170756839700,219,0 +170756839750,221,0 +170756839799,220,0 +170756839847,221,0 +170756839895,222,0 +170756839944,222,0 +170756839994,222,0 +170756840042,223,0 +170756840090,216,0 +170756840137,215,0 +170756840187,216,0 +170756840235,217,0 +170756840283,217,0 +170756840331,218,0 +170756840379,218,0 +170756840427,218,0 +170756840475,219,0 +170756840523,219,0 +170756840572,220,0 +170756840620,222,0 +170756840670,221,0 +170756840718,222,0 +170756840766,224,0 +170756840813,223,0 +170756840861,222,0 +170756840911,217,0 +170756840959,216,0 +170756841007,217,0 +170756841055,219,0 +170756841103,218,0 +170756841151,218,0 +170756841198,222,0 +170756841246,220,0 +170756841294,220,0 +170756841342,221,0 +170756841390,222,0 +170756841438,225,0 +170756841488,224,0 +170756841536,223,0 +170756841585,222,0 +170756841633,224,0 +170756841681,223,0 +170756841731,217,0 +170756841778,217,0 +170756841826,217,0 +170756841876,218,0 +170756841924,219,0 +170756841972,220,0 +170756842021,220,0 +170756842069,221,0 +170756842119,220,0 +170756842166,221,0 +170756842216,222,0 +170756842264,222,0 +170756842312,224,0 +170756842360,223,0 +170756842408,223,0 +170756842456,222,0 +170756842505,223,0 +170756842553,217,0 +170756842602,216,0 +170756842650,217,0 +170756842698,218,0 +170756842748,220,0 +170756842796,220,0 +170756842844,220,0 +170756842892,221,0 +170756842940,222,0 +170756842987,221,0 +170756843037,222,0 +170756843085,223,0 +170756843133,224,0 +170756843182,224,0 +170756843232,223,0 +170756843281,223,0 +170756843331,223,0 +170756843380,217,0 +170756843428,218,0 +170756843476,218,0 +170756843526,220,0 +170756843575,221,0 +170756843625,221,0 +170756843674,223,0 +170756843724,222,0 +170756843772,224,0 +170756843821,225,0 +170756843869,224,0 +170756843917,225,0 +170756843965,224,0 +170756844013,223,0 +170756844060,224,0 +170756844110,223,0 +170756844158,219,0 +170756844206,217,0 +170756844254,218,0 +170756844302,218,0 +170756844351,220,0 +170756844399,219,0 +170756844447,221,0 +170756844496,220,0 +170756844544,221,0 +170756844592,223,0 +170756844640,224,0 +170756844688,223,0 +170756844736,224,0 +170756844786,224,0 +170756844834,224,0 +170756844883,223,0 +170756844931,224,0 +170756844981,219,0 +170756845029,216,0 +170756845078,217,0 +170756845126,217,0 +170756845176,218,0 +170756845224,218,0 +170756845271,219,0 +170756845321,219,0 +170756845369,220,0 +170756845417,221,0 +170756845465,221,0 +170756845513,223,0 +170756845562,222,0 +170756845612,222,0 +170756845660,228,0 +170756845707,222,0 +170756845755,223,0 +170756845803,220,0 +170756845851,216,0 +170756845899,216,0 +170756845947,218,0 +170756845997,219,0 +170756846045,219,0 +170756846093,221,0 +170756846142,221,0 +170756846192,222,0 +170756846241,222,0 +170756846289,222,0 +170756846339,223,0 +170756846388,222,0 +170756846438,223,0 +170756846486,225,0 +170756846533,224,0 +170756846581,222,0 +170756846629,222,0 +170756846677,216,0 +170756846725,219,0 +170756846775,219,0 +170756846823,218,0 +170756846872,220,0 +170756846920,220,0 +170756846968,221,0 +170756847016,221,0 +170756847066,223,0 +170756847115,221,0 +170756847165,222,0 +170756847213,223,0 +170756847262,223,0 +170756847312,223,0 +170756847359,223,0 +170756847407,222,0 +170756847455,222,0 +170756847503,217,0 +170756847552,218,0 +170756847602,218,0 +170756847650,219,0 +170756847698,219,0 +170756847746,220,0 +170756847794,220,0 +170756847843,221,0 +170756847891,222,0 +170756847939,222,0 +170756847987,223,0 +170756848035,224,0 +170756848083,223,0 +170756848131,223,0 +170756848179,223,0 +170756848226,223,0 +170756848276,222,0 +170756848325,217,0 +170756848373,218,0 +170756848421,219,0 +170756848471,219,0 +170756848519,220,0 +170756848566,221,0 +170756848614,221,0 +170756848662,222,0 +170756848710,221,0 +170756848760,222,0 +170756848808,222,0 +170756848856,223,0 +170756848904,222,0 +170756848952,223,0 +170756848999,223,0 +170756849049,223,0 +170756849098,222,0 +170756849146,221,0 +170756849194,217,0 +170756849242,217,0 +170756849290,218,0 +170756849340,219,0 +170756849387,218,0 +170756849435,220,0 +170756849483,221,0 +170756849531,221,0 +170756849579,220,0 +170756849627,221,0 +170756849675,222,0 +170756849723,222,0 +170756849771,223,0 +170756849819,223,0 +170756849867,221,0 +170756849916,221,0 +170756849964,221,0 +170756850012,216,0 +170756850062,216,0 +170756850110,217,0 +170756850159,216,0 +170756850209,218,0 +170756850256,218,0 +170756850306,219,0 +170756850354,219,0 +170756850403,219,0 +170756850451,220,0 +170756850499,220,0 +170756850549,221,0 +170756850596,222,0 +170756850644,225,0 +170756850692,223,0 +170756850742,223,0 +170756850790,222,0 +170756850838,216,0 +170756850887,216,0 +170756850935,216,0 +170756850983,217,0 +170756851033,218,0 +170756851080,218,0 +170756851128,218,0 +170756851176,219,0 +170756851224,220,0 +170756851274,222,0 +170756851322,221,0 +170756851370,222,0 +170756851419,222,0 +170756851467,222,0 +170756851515,221,0 +170756851563,222,0 +170756851611,223,0 +170756851661,221,0 +170756851708,216,0 +170756851756,216,0 +170756851804,217,0 +170756851854,219,0 +170756851902,218,0 +170756851951,221,0 +170756851999,219,0 +170756852047,220,0 +170756852095,220,0 +170756852143,222,0 +170756852191,223,0 +170756852240,222,0 +170756852288,224,0 +170756852336,222,0 +170756852386,223,0 +170756852434,222,0 +170756852482,222,0 +170756852531,216,0 +170756852581,216,0 +170756852629,217,0 +170756852677,217,0 +170756852725,218,0 +170756852772,218,0 +170756852820,219,0 +170756852868,220,0 +170756852916,220,0 +170756852964,220,0 +170756853014,221,0 +170756853062,222,0 +170756853110,223,0 +170756853158,222,0 +170756853207,223,0 +170756853257,223,0 +170756853304,223,0 +170756853354,217,0 +170756853402,218,0 +170756853451,218,0 +170756853499,218,0 +170756853547,219,0 +170756853595,223,0 +170756853643,220,0 +170756853691,220,0 +170756853740,221,0 +170756853788,221,0 +170756853838,222,0 +170756853886,222,0 +170756853934,223,0 +170756853982,222,0 +170756854030,223,0 +170756854077,222,0 +170756854127,222,0 +170756854176,222,0 +170756854224,220,0 +170756854272,221,0 +170756854320,221,0 +170756854370,222,0 +170756854418,221,0 +170756854466,221,0 +170756854514,222,0 +170756854562,222,0 +170756854609,223,0 +170756854657,223,0 +170756854707,224,0 +170756854755,224,0 +170756854803,224,0 +170756854851,224,0 +170756854899,223,0 +170756854947,224,0 +170756854996,223,0 +170756855046,226,0 +170756855093,218,0 +170756855143,220,0 +170756855191,221,0 +170756855239,221,0 +170756855288,224,0 +170756855336,222,0 +170756855384,222,0 +170756855432,223,0 +170756855480,224,0 +170756855528,223,0 +170756855576,224,0 +170756855626,224,0 +170756855674,224,0 +170756855721,224,0 +170756855771,225,0 +170756855819,223,0 +170756855867,223,0 +170756855915,222,0 +170756855964,222,0 +170756856012,219,0 +170756856060,219,0 +170756856108,221,0 +170756856156,221,0 +170756856204,221,0 +170756856252,222,0 +170756856301,223,0 +170756856349,222,0 +170756856397,224,0 +170756856447,226,0 +170756856496,224,0 +170756856544,224,0 +170756856592,224,0 +170756856642,224,0 +170756856690,224,0 +170756856738,224,0 +170756856787,223,0 +170756856835,219,0 +170756856885,218,0 +170756856934,219,0 +170756856982,219,0 +170756857032,220,0 +170756857079,220,0 +170756857129,220,0 +170756857177,221,0 +170756857225,222,0 +170756857273,223,0 +170756857321,224,0 +170756857369,224,0 +170756857416,223,0 +170756857466,224,0 +170756857514,225,0 +170756857563,225,0 +170756857611,223,0 +170756857659,222,0 +170756857707,220,0 +170756857757,216,0 +170756857806,216,0 +170756857854,217,0 +170756857904,217,0 +170756857952,218,0 +170756858000,219,0 +170756858048,219,0 +170756858095,220,0 +170756858145,220,0 +170756858193,220,0 +170756858241,221,0 +170756858289,222,0 +170756858337,222,0 +170756858385,223,0 +170756858434,223,0 +170756858482,224,0 +170756858530,223,0 +170756858578,223,0 +170756858626,215,0 +170756858675,216,0 +170756858725,216,0 +170756858773,218,0 +170756858821,219,0 +170756858869,218,0 +170756858917,219,0 +170756858965,220,0 +170756859013,220,0 +170756859062,223,0 +170756859110,224,0 +170756859158,222,0 +170756859206,223,0 +170756859255,223,0 +170756859303,222,0 +170756859351,218,0 +170756859401,223,0 +170756859449,222,0 +170756859498,215,0 +170756859546,216,0 +170756859594,217,0 +170756859642,217,0 +170756859690,220,0 +170756859738,219,0 +170756859786,220,0 +170756859834,220,0 +170756859883,222,0 +170756859931,221,0 +170756859979,222,0 +170756860029,224,0 +170756860077,223,0 +170756860126,224,0 +170756860174,225,0 +170756860222,223,0 +170756860271,222,0 +170756860319,222,0 +170756860369,214,0 +170756860417,215,0 +170756860465,215,0 +170756860514,215,0 +170756860564,217,0 +170756860613,218,0 +170756860663,218,0 +170756860712,218,0 +170756860760,219,0 +170756860808,220,0 +170756860856,221,0 +170756860904,222,0 +170756860952,224,0 +170756861002,222,0 +170756861049,228,0 +170756861097,225,0 +170756861147,223,0 +170756861197,218,0 +170756861244,214,0 +170756861292,214,0 +170756861340,215,0 +170756861388,215,0 +170756861436,216,0 +170756861484,217,0 +170756861534,218,0 +170756861583,221,0 +170756861631,218,0 +170756861679,219,0 +170756861727,220,0 +170756861775,221,0 +170756861824,221,0 +170756861872,222,0 +170756861922,222,0 +170756861970,221,0 +170756862019,225,0 +170756862067,222,0 +170756862117,215,0 +170756862166,214,0 +170756862216,214,0 +170756862264,217,0 +170756862313,219,0 +170756862363,217,0 +170756862412,218,0 +170756862462,219,0 +170756862509,220,0 +170756862557,220,0 +170756862607,221,0 +170756862655,221,0 +170756862703,222,0 +170756862752,223,0 +170756862800,224,0 +170756862848,223,0 +170756862896,222,0 +170756862946,222,0 +170756862994,215,0 +170756863043,216,0 +170756863093,217,0 +170756863141,218,0 +170756863190,220,0 +170756863238,220,0 +170756863286,220,0 +170756863334,221,0 +170756863382,222,0 +170756863431,222,0 +170756863479,223,0 +170756863527,223,0 +170756863577,223,0 +170756863625,224,0 +170756863673,224,0 +170756863721,223,0 +170756863770,223,0 +170756863818,222,0 +170756863868,216,0 +170756863915,216,0 +170756863965,218,0 +170756864013,218,0 +170756864062,219,0 +170756864112,219,0 +170756864160,220,0 +170756864208,221,0 +170756864256,221,0 +170756864304,221,0 +170756864353,221,0 +170756864401,221,0 +170756864449,221,0 +170756864499,225,0 +170756864546,223,0 +170756864594,223,0 +170756864642,222,0 +170756864692,223,0 +170756864741,224,0 +170756864789,224,0 +170756864837,225,0 +170756864887,224,0 +170756864935,224,0 +170756864984,225,0 +170756865034,224,0 +170756865082,222,0 +170756865130,223,0 +170756865178,218,0 +170756865225,218,0 +170756865273,218,0 +170756865321,219,0 +170756865369,220,0 +170756865419,219,0 +170756865467,221,0 +170756865515,222,0 +170756865563,222,0 +170756865612,224,0 +170756865662,223,0 +170756865709,223,0 +170756865757,224,0 +170756865805,223,0 +170756865853,227,0 +170756865901,223,0 +170756865951,223,0 +170756865999,222,0 +170756866046,217,0 +170756866096,219,0 +170756866144,219,0 +170756866193,221,0 +170756866243,220,0 +170756866292,221,0 +170756866342,221,0 +170756866390,221,0 +170756866438,223,0 +170756866486,224,0 +170756866534,222,0 +170756866582,221,0 +170756866629,223,0 +170756866677,223,0 +170756866727,223,0 +170756866774,224,0 +170756866824,223,0 +170756866872,221,0 +170756866919,219,0 +170756866967,219,0 +170756867015,219,0 +170756867063,220,0 +170756867111,222,0 +170756867159,222,0 +170756867207,222,0 +170756867256,222,0 +170756867304,222,0 +170756867352,222,0 +170756867400,223,0 +170756867447,225,0 +170756867495,226,0 +170756867543,226,0 +170756867591,225,0 +170756867639,224,0 +170756867687,224,0 +170756867735,222,0 +170756867783,220,0 +170756867831,219,0 +170756867878,220,0 +170756867926,221,0 +170756867976,220,0 +170756868025,222,0 +170756868073,222,0 +170756868121,222,0 +170756868169,225,0 +170756868217,222,0 +170756868265,223,0 +170756868314,224,0 +170756868362,225,0 +170756868410,224,0 +170756868458,224,0 +170756868506,224,0 +170756868554,223,0 +170756868602,222,0 +170756868649,220,0 +170756868697,219,0 +170756868745,220,0 +170756868795,221,0 +170756868843,220,0 +170756868890,221,0 +170756868938,222,0 +170756868986,222,0 +170756869034,223,0 +170756869082,222,0 +170756869130,222,0 +170756869178,224,0 +170756869228,224,0 +170756869276,224,0 +170756869325,223,0 +170756869375,223,0 +170756869424,224,0 +170756869472,223,0 +170756869522,218,0 +170756869570,217,0 +170756869618,217,0 +170756869665,219,0 +170756869713,219,0 +170756869761,220,0 +170756869809,220,0 +170756869859,219,0 +170756869908,221,0 +170756869958,221,0 +170756870007,223,0 +170756870057,223,0 +170756870104,223,0 +170756870152,226,0 +170756870202,222,0 +170756870250,223,0 +170756870299,221,0 +170756870347,223,0 +170756870395,216,0 +170756870443,215,0 +170756870491,215,0 +170756870540,216,0 +170756870590,217,0 +170756870638,218,0 +170756870687,218,0 +170756870737,219,0 +170756870785,219,0 +170756870834,220,0 +170756870882,221,0 +170756870930,221,0 +170756870978,224,0 +170756871026,222,0 +170756871074,222,0 +170756871123,223,0 +170756871171,224,0 +170756871221,222,0 +170756871268,216,0 +170756871316,215,0 +170756871364,216,0 +170756871412,217,0 +170756871460,218,0 +170756871510,218,0 +170756871559,218,0 +170756871609,220,0 +170756871657,220,0 +170756871705,221,0 +170756871753,222,0 +170756871801,221,0 +170756871849,223,0 +170756871898,224,0 +170756871946,223,0 +170756871994,223,0 +170756872042,223,0 +170756872090,222,0 +170756872138,216,0 +170756872186,215,0 +170756872235,216,0 +170756872285,217,0 +170756872332,218,0 +170756872382,217,0 +170756872430,219,0 +170756872478,220,0 +170756872527,221,0 +170756872575,221,0 +170756872623,223,0 +170756872673,222,0 +170756872721,222,0 +170756872770,224,0 +170756872820,225,0 +170756872869,224,0 +170756872917,224,0 +170756872965,222,0 +170756873013,216,0 +170756873063,215,0 +170756873112,216,0 +170756873162,218,0 +170756873210,218,0 +170756873257,219,0 +170756873305,220,0 +170756873353,221,0 +170756873401,221,0 +170756873449,221,0 +170756873497,224,0 +170756873545,223,0 +170756873593,225,0 +170756873642,226,0 +170756873690,227,0 +170756873738,224,0 +170756873788,223,0 +170756873837,222,0 +170756873887,216,0 +170756873935,216,0 +170756873983,216,0 +170756874032,216,0 +170756874082,218,0 +170756874129,218,0 +170756874179,219,0 +170756874228,218,0 +170756874276,220,0 +170756874324,220,0 +170756874372,222,0 +170756874420,221,0 +170756874468,222,0 +170756874518,222,0 +170756874566,223,0 +170756874614,223,0 +170756874663,223,0 +170756874711,223,0 +170756874759,216,0 +170756874807,215,0 +170756874855,216,0 +170756874903,217,0 +170756874951,218,0 +170756874999,218,0 +170756875048,215,0 +170756875096,220,0 +170756875144,220,0 +170756875192,221,0 +170756875240,221,0 +170756875289,221,0 +170756875337,222,0 +170756875387,224,0 +170756875435,224,0 +170756875483,223,0 +170756875531,224,0 +170756875579,222,0 +170756875627,216,0 +170756875675,214,0 +170756875724,214,0 +170756875772,215,0 +170756875820,215,0 +170756875868,216,0 +170756875916,217,0 +170756875964,217,0 +170756876012,218,0 +170756876060,218,0 +170756876108,219,0 +170756876156,219,0 +170756876205,220,0 +170756876253,221,0 +170756876301,221,0 +170756876349,221,0 +170756876399,222,0 +170756876447,222,0 +170756876495,218,0 +170756876543,214,0 +170756876592,215,0 +170756876642,216,0 +170756876691,216,0 +170756876739,217,0 +170756876787,217,0 +170756876836,218,0 +170756876886,217,0 +170756876934,219,0 +170756876982,220,0 +170756877029,220,0 +170756877079,221,0 +170756877127,221,0 +170756877176,222,0 +170756877224,222,0 +170756877274,223,0 +170756877322,223,0 +170756877370,222,0 +170756877419,218,0 +170756877469,219,0 +170756877517,219,0 +170756877566,220,0 +170756877614,221,0 +170756877662,221,0 +170756877711,222,0 +170756877759,224,0 +170756877807,223,0 +170756877855,223,0 +170756877903,223,0 +170756877951,223,0 +170756878001,223,0 +170756878050,224,0 +170756878098,224,0 +170756878146,225,0 +170756878194,223,0 +170756878242,222,0 +170756878290,221,0 +170756878338,221,0 +170756878387,222,0 +170756878435,223,0 +170756878484,223,0 +170756878532,223,0 +170756878580,222,0 +170756878628,223,0 +170756878676,223,0 +170756878726,223,0 +170756878775,224,0 +170756878825,224,0 +170756878873,223,0 +170756878920,223,0 +170756878968,225,0 +170756879016,224,0 +170756879064,222,0 +170756879112,219,0 +170756879162,220,0 +170756879210,220,0 +170756879257,223,0 +170756879305,219,0 +170756879353,224,0 +170756879401,223,0 +170756879449,222,0 +170756879498,224,0 +170756879546,225,0 +170756879594,225,0 +170756879642,225,0 +170756879690,224,0 +170756879738,224,0 +170756879786,224,0 +170756879834,224,0 +170756879881,223,0 +170756879929,222,0 +170756879977,223,0 +170756880025,221,0 +170756880073,221,0 +170756880120,221,0 +170756880168,222,0 +170756880218,223,0 +170756880266,224,0 +170756880315,222,0 +170756880363,224,0 +170756880411,224,0 +170756880459,225,0 +170756880507,226,0 +170756880555,224,0 +170756880603,222,0 +170756880651,224,0 +170756880699,223,0 +170756880748,224,0 +170756880798,223,0 +170756880845,222,0 +170756880893,217,0 +170756880941,217,0 +170756880989,218,0 +170756881037,219,0 +170756881085,219,0 +170756881133,220,0 +170756881182,220,0 +170756881230,221,0 +170756881280,221,0 +170756881328,222,0 +170756881375,222,0 +170756881423,223,0 +170756881473,223,0 +170756881521,223,0 +170756881569,223,0 +170756881618,224,0 +170756881666,224,0 +170756881714,222,0 +170756881762,216,0 +170756881810,216,0 +170756881858,216,0 +170756881905,218,0 +170756881953,218,0 +170756882001,218,0 +170756882049,219,0 +170756882098,219,0 +170756882146,219,0 +170756882194,220,0 +170756882242,221,0 +170756882290,222,0 +170756882338,222,0 +170756882386,223,0 +170756882433,222,0 +170756882481,222,0 +170756882529,223,0 +170756882577,223,0 +170756882627,216,0 +170756882674,216,0 +170756882722,216,0 +170756882770,217,0 +170756882820,218,0 +170756882868,219,0 +170756882916,218,0 +170756882963,219,0 +170756883011,220,0 +170756883061,220,0 +170756883110,221,0 +170756883160,224,0 +170756883208,223,0 +170756883256,222,0 +170756883305,224,0 +170756883353,223,0 +170756883403,223,0 +170756883452,223,0 +170756883500,216,0 +170756883549,216,0 +170756883597,216,0 +170756883647,217,0 +170756883695,218,0 +170756883744,219,0 +170756883794,219,0 +170756883842,220,0 +170756883891,221,0 +170756883939,221,0 +170756883987,222,0 +170756884035,223,0 +170756884085,223,0 +170756884133,223,0 +170756884182,224,0 +170756884230,224,0 +170756884280,224,0 +170756884329,224,0 +170756884377,215,0 +170756884425,215,0 +170756884473,215,0 +170756884522,216,0 +170756884570,217,0 +170756884618,218,0 +170756884668,218,0 +170756884716,218,0 +170756884765,219,0 +170756884815,219,0 +170756884863,219,0 +170756884912,220,0 +170756884962,221,0 +170756885010,222,0 +170756885057,222,0 +170756885105,221,0 +170756885153,220,0 +170756885203,222,0 +170756885251,216,0 +170756885299,214,0 +170756885347,214,0 +170756885396,214,0 +170756885444,215,0 +170756885494,215,0 +170756885542,216,0 +170756885591,216,0 +170756885641,216,0 +170756885689,217,0 +170756885737,218,0 +170756885785,220,0 +170756885834,220,0 +170756885882,220,0 +170756885930,220,0 +170756885978,221,0 +170756886027,221,0 +170756886077,224,0 +170756886126,216,0 +170756886174,214,0 +170756886222,215,0 +170756886270,216,0 +170756886318,217,0 +170756886366,217,0 +170756886414,217,0 +170756886462,218,0 +170756886510,219,0 +170756886558,220,0 +170756886605,221,0 +170756886655,220,0 +170756886703,222,0 +170756886751,223,0 +170756886800,223,0 +170756886850,222,0 +170756886899,224,0 +170756886947,223,0 +170756886995,217,0 +170756887043,215,0 +170756887091,215,0 +170756887139,216,0 +170756887188,217,0 +170756887236,217,0 +170756887284,218,0 +170756887332,219,0 +170756887380,219,0 +170756887427,220,0 +170756887475,220,0 +170756887523,220,0 +170756887571,222,0 +170756887620,222,0 +170756887670,223,0 +170756887720,224,0 +170756887767,223,0 +170756887817,223,0 +170756887865,222,0 +170756887915,214,0 +170756887962,216,0 +170756888010,216,0 +170756888058,217,0 +170756888106,218,0 +170756888154,219,0 +170756888202,219,0 +170756888250,220,0 +170756888298,220,0 +170756888345,221,0 +170756888393,222,0 +170756888441,222,0 +170756888489,223,0 +170756888537,222,0 +170756888584,223,0 +170756888634,223,0 +170756888682,223,0 +170756888730,227,0 +170756888778,216,0 +170756888825,216,0 +170756888873,217,0 +170756888921,218,0 +170756888970,220,0 +170756889020,220,0 +170756889068,220,0 +170756889116,220,0 +170756889165,222,0 +170756889213,222,0 +170756889261,221,0 +170756889311,226,0 +170756889359,223,0 +170756889407,224,0 +170756889456,223,0 +170756889504,225,0 +170756889554,224,0 +170756889602,222,0 +170756889651,217,0 +170756889699,217,0 +170756889749,218,0 +170756889798,219,0 +170756889846,219,0 +170756889894,220,0 +170756889944,220,0 +170756889992,220,0 +170756890040,221,0 +170756890089,222,0 +170756890139,222,0 +170756890188,223,0 +170756890236,224,0 +170756890284,223,0 +170756890332,225,0 +170756890380,225,0 +170756890428,223,0 +170756890477,222,0 +170756890527,218,0 +170756890575,218,0 +170756890624,218,0 +170756890672,218,0 +170756890720,220,0 +170756890768,221,0 +170756890817,220,0 +170756890865,222,0 +170756890913,222,0 +170756890961,227,0 +170756891009,221,0 +170756891057,224,0 +170756891107,222,0 +170756891156,223,0 +170756891206,224,0 +170756891254,223,0 +170756891301,223,0 +170756891351,222,0 +170756891399,217,0 +170756891447,217,0 +170756891495,218,0 +170756891544,218,0 +170756891594,220,0 +170756891643,220,0 +170756891691,220,0 +170756891739,222,0 +170756891789,221,0 +170756891837,223,0 +170756891884,223,0 +170756891932,223,0 +170756891980,224,0 +170756892028,224,0 +170756892076,224,0 +170756892124,224,0 +170756892173,224,0 +170756892221,222,0 +170756892269,221,0 +170756892319,221,0 +170756892366,221,0 +170756892416,222,0 +170756892464,222,0 +170756892513,223,0 +170756892563,223,0 +170756892611,223,0 +170756892659,223,0 +170756892706,224,0 +170756892754,224,0 +170756892802,224,0 +170756892850,227,0 +170756892899,224,0 +170756892947,223,0 +170756892995,224,0 +170756893043,223,0 +170756893091,223,0 +170756893139,222,0 +170756893187,222,0 +170756893234,222,0 +170756893282,223,0 +170756893330,222,0 +170756893378,223,0 +170756893427,223,0 +170756893477,223,0 +170756893525,224,0 +170756893572,224,0 +170756893620,224,0 +170756893668,224,0 +170756893716,224,0 +170756893764,224,0 +170756893812,224,0 +170756893860,224,0 +170756893907,223,0 +170756893955,223,0 +170756894005,219,0 +170756894052,219,0 +170756894100,219,0 +170756894148,220,0 +170756894196,220,0 +170756894245,223,0 +170756894293,222,0 +170756894342,222,0 +170756894390,222,0 +170756894438,223,0 +170756894486,224,0 +170756894534,224,0 +170756894581,224,0 +170756894629,224,0 +170756894679,223,0 +170756894728,223,0 +170756894776,224,0 +170756894824,223,0 +170756894873,219,0 +170756894921,216,0 +170756894969,218,0 +170756895017,218,0 +170756895065,219,0 +170756895113,219,0 +170756895161,220,0 +170756895208,221,0 +170756895256,222,0 +170756895304,221,0 +170756895352,222,0 +170756895400,223,0 +170756895448,222,0 +170756895495,224,0 +170756895543,224,0 +170756895591,223,0 +170756895639,224,0 +170756895687,223,0 +170756895735,217,0 +170756895783,216,0 +170756895831,217,0 +170756895878,217,0 +170756895926,217,0 +170756895974,219,0 +170756896024,219,0 +170756896071,219,0 +170756896119,219,0 +170756896167,220,0 +170756896215,223,0 +170756896265,220,0 +170756896313,222,0 +170756896362,221,0 +170756896412,224,0 +170756896461,222,0 +170756896511,225,0 +170756896558,223,0 +170756896606,217,0 +170756896656,215,0 +170756896704,216,0 +170756896752,217,0 +170756896800,217,0 +170756896849,218,0 +170756896899,218,0 +170756896947,218,0 +170756896996,219,0 +170756897045,220,0 +170756897093,220,0 +170756897141,221,0 +170756897189,222,0 +170756897237,223,0 +170756897285,222,0 +170756897332,223,0 +170756897382,223,0 +170756897430,222,0 +170756897477,224,0 +170756897525,216,0 +170756897573,217,0 +170756897621,217,0 +170756897669,218,0 +170756897717,218,0 +170756897764,219,0 +170756897812,219,0 +170756897862,221,0 +170756897909,221,0 +170756897957,223,0 +170756898005,223,0 +170756898053,223,0 +170756898101,223,0 +170756898149,223,0 +170756898196,224,0 +170756898244,224,0 +170756898292,224,0 +170756898340,223,0 +170756898388,216,0 +170756898435,217,0 +170756898483,219,0 +170756898531,219,0 +170756898579,219,0 +170756898627,220,0 +170756898676,222,0 +170756898724,222,0 +170756898772,222,0 +170756898820,223,0 +170756898867,223,0 +170756898915,223,0 +170756898963,223,0 +170756899011,223,0 +170756899059,225,0 +170756899108,224,0 +170756899156,223,0 +170756899204,222,0 +170756899253,216,0 +170756899301,217,0 +170756899349,217,0 +170756899397,219,0 +170756899444,219,0 +170756899492,220,0 +170756899540,220,0 +170756899588,221,0 +170756899636,221,0 +170756899684,221,0 +170756899733,225,0 +170756899781,224,0 +170756899829,223,0 +170756899877,224,0 +170756899925,224,0 +170756899972,223,0 +170756900020,223,0 +170756900068,223,0 +170756900116,216,0 +170756900164,215,0 +170756900211,216,0 +170756900259,217,0 +170756900307,218,0 +170756900355,218,0 +170756900403,218,0 +170756900451,218,0 +170756900498,219,0 +170756900546,219,0 +170756900594,222,0 +170756900642,221,0 +170756900690,222,0 +170756900737,223,0 +170756900785,223,0 +170756900833,223,0 +170756900881,225,0 +170756900929,224,0 +170756900977,223,0 +170756901024,215,0 +170756901072,217,0 +170756901120,217,0 +170756901168,218,0 +170756901216,218,0 +170756901264,219,0 +170756901313,219,0 +170756901361,220,0 +170756901409,221,0 +170756901456,222,0 +170756901504,222,0 +170756901552,222,0 +170756901601,224,0 +170756901649,224,0 +170756901697,225,0 +170756901745,224,0 +170756901793,223,0 +170756901842,222,0 +170756901890,215,0 +170756901938,216,0 +170756901986,218,0 +170756902034,218,0 +170756902082,218,0 +170756902130,218,0 +170756902179,220,0 +170756902228,220,0 +170756902278,220,0 +170756902326,223,0 +170756902374,223,0 +170756902422,225,0 +170756902471,223,0 +170756902519,225,0 +170756902567,223,0 +170756902615,223,0 +170756902663,223,0 +170756902711,222,0 +170756902759,215,0 +170756902807,217,0 +170756902857,217,0 +170756902906,217,0 +170756902954,219,0 +170756903002,220,0 +170756903050,220,0 +170756903098,220,0 +170756903146,221,0 +170756903194,221,0 +170756903241,221,0 +170756903289,221,0 +170756903337,224,0 +170756903385,219,0 +170756903433,224,0 +170756903481,223,0 +170756903528,222,0 +170756903576,223,0 +170756903624,216,0 +170756903672,215,0 +170756903721,216,0 +170756903769,217,0 +170756903819,217,0 +170756903867,218,0 +170756903915,218,0 +170756903964,220,0 +170756904012,219,0 +170756904060,219,0 +170756904108,221,0 +170756904156,221,0 +170756904204,221,0 +170756904252,222,0 +170756904301,223,0 +170756904349,222,0 +170756904398,222,0 +170756904446,224,0 +170756904496,216,0 +170756904544,215,0 +170756904593,216,0 +170756904643,217,0 +170756904691,218,0 +170756904739,218,0 +170756904788,219,0 +170756904838,220,0 +170756904886,221,0 +170756904934,220,0 +170756904983,222,0 +170756905033,223,0 +170756905081,222,0 +170756905128,223,0 +170756905176,223,0 +170756905224,224,0 +170756905274,222,0 +170756905323,223,0 +170756905373,216,0 +170756905422,216,0 +170756905472,217,0 +170756905521,218,0 +170756905571,219,0 +170756905619,219,0 +170756905667,219,0 +170756905715,219,0 +170756905763,220,0 +170756905812,221,0 +170756905860,222,0 +170756905909,222,0 +170756905957,222,0 +170756906005,224,0 +170756906053,224,0 +170756906101,224,0 +170756906149,223,0 +170756906199,222,0 +170756906247,217,0 +170756906294,218,0 +170756906344,217,0 +170756906392,219,0 +170756906440,219,0 +170756906489,219,0 +170756906537,221,0 +170756906585,220,0 +170756906635,221,0 +170756906683,222,0 +170756906732,222,0 +170756906782,223,0 +170756906831,224,0 +170756906879,224,0 +170756906927,223,0 +170756906977,224,0 +170756907025,224,0 +170756907073,222,0 +170756907120,220,0 +170756907170,220,0 +170756907220,220,0 +170756907268,221,0 +170756907315,221,0 +170756907365,222,0 +170756907413,223,0 +170756907461,224,0 +170756907510,223,0 +170756907558,224,0 +170756907607,223,0 +170756907655,223,0 +170756907705,224,0 +170756907753,224,0 +170756907801,224,0 +170756907849,224,0 +170756907897,222,0 +170756907944,222,0 +170756907992,221,0 +170756908042,222,0 +170756908090,222,0 +170756908138,222,0 +170756908186,223,0 +170756908235,222,0 +170756908283,224,0 +170756908331,223,0 +170756908379,224,0 +170756908427,224,0 +170756908475,223,0 +170756908523,223,0 +170756908571,225,0 +170756908618,224,0 +170756908666,224,0 +170756908716,223,0 +170756908765,223,0 +170756908813,223,0 +170756908861,219,0 +170756908909,223,0 +170756908959,220,0 +170756909008,220,0 +170756909056,222,0 +170756909106,221,0 +170756909155,222,0 +170756909203,222,0 +170756909251,222,0 +170756909301,222,0 +170756909350,223,0 +170756909398,224,0 +170756909446,222,0 +170756909494,225,0 +170756909543,224,0 +170756909591,223,0 +170756909639,223,0 +170756909689,223,0 +170756909738,216,0 +170756909786,216,0 +170756909835,216,0 +170756909883,217,0 +170756909931,218,0 +170756909979,218,0 +170756910029,220,0 +170756910076,220,0 +170756910124,219,0 +170756910172,221,0 +170756910220,221,0 +170756910268,222,0 +170756910316,223,0 +170756910365,223,0 +170756910413,223,0 +170756910461,225,0 +170756910511,222,0 +170756910560,223,0 +170756910610,216,0 +170756910658,215,0 +170756910707,216,0 +170756910755,217,0 +170756910803,219,0 +170756910851,219,0 +170756910901,219,0 +170756910950,220,0 +170756911000,220,0 +170756911047,221,0 +170756911095,222,0 +170756911143,223,0 +170756911191,224,0 +170756911241,224,0 +170756911290,225,0 +170756911340,225,0 +170756911389,223,0 +170756911437,222,0 +170756911487,217,0 +170756911535,216,0 +170756911583,216,0 +170756911631,217,0 +170756911679,218,0 +170756911726,219,0 +170756911776,220,0 +170756911824,220,0 +170756911872,221,0 +170756911920,221,0 +170756911968,222,0 +170756912016,222,0 +170756912065,224,0 +170756912113,223,0 +170756912161,221,0 +170756912210,223,0 +170756912258,223,0 +170756912306,222,0 +170756912356,216,0 +170756912405,216,0 +170756912454,216,0 +170756912502,217,0 +170756912550,219,0 +170756912598,218,0 +170756912646,219,0 +170756912696,219,0 +170756912744,221,0 +170756912792,220,0 +170756912839,221,0 +170756912887,221,0 +170756912935,223,0 +170756912983,222,0 +170756913031,223,0 +170756913079,223,0 +170756913127,223,0 +170756913175,223,0 +170756913223,222,0 +170756913271,218,0 +170756913320,218,0 +170756913370,218,0 +170756913418,219,0 +170756913466,221,0 +170756913513,220,0 +170756913561,222,0 +170756913609,220,0 +170756913657,221,0 +170756913705,222,0 +170756913755,221,0 +170756913804,223,0 +170756913852,223,0 +170756913900,223,0 +170756913948,224,0 +170756913997,223,0 +170756914047,224,0 +170756914095,222,0 +170756914143,216,0 +170756914192,216,0 +170756914240,218,0 +170756914288,218,0 +170756914336,219,0 +170756914384,219,0 +170756914433,221,0 +170756914483,221,0 +170756914531,222,0 +170756914580,222,0 +170756914630,222,0 +170756914678,223,0 +170756914727,223,0 +170756914777,223,0 +170756914825,223,0 +170756914873,223,0 +170756914921,223,0 +170756914969,219,0 +170756915018,215,0 +170756915068,215,0 +170756915117,216,0 +170756915167,217,0 +170756915215,218,0 +170756915264,218,0 +170756915312,219,0 +170756915361,219,0 +170756915411,221,0 +170756915459,222,0 +170756915507,221,0 +170756915556,222,0 +170756915606,223,0 +170756915653,223,0 +170756915701,224,0 +170756915749,223,0 +170756915797,223,0 +170756915845,219,0 +170756915893,214,0 +170756915943,214,0 +170756915991,214,0 +170756916040,215,0 +170756916088,215,0 +170756916136,216,0 +170756916186,216,0 +170756916234,217,0 +170756916283,218,0 +170756916331,219,0 +170756916379,219,0 +170756916428,220,0 +170756916478,220,0 +170756916527,221,0 +170756916577,222,0 +170756916625,223,0 +170756916673,222,0 +170756916721,222,0 +170756916769,215,0 +170756916818,216,0 +170756916866,217,0 +170756916914,218,0 +170756916962,218,0 +170756917010,219,0 +170756917058,219,0 +170756917106,219,0 +170756917155,221,0 +170756917203,221,0 +170756917251,222,0 +170756917300,222,0 +170756917348,223,0 +170756917398,223,0 +170756917445,223,0 +170756917493,223,0 +170756917541,224,0 +170756917589,222,0 +170756917638,217,0 +170756917686,217,0 +170756917734,218,0 +170756917784,219,0 +170756917832,220,0 +170756917880,220,0 +170756917929,221,0 +170756917977,222,0 +170756918025,222,0 +170756918073,222,0 +170756918122,224,0 +170756918172,224,0 +170756918220,224,0 +170756918269,225,0 +170756918317,223,0 +170756918367,226,0 +170756918415,223,0 +170756918464,222,0 +170756918514,221,0 +170756918563,220,0 +170756918611,221,0 +170756918659,221,0 +170756918707,220,0 +170756918755,222,0 +170756918803,221,0 +170756918852,223,0 +170756918900,223,0 +170756918948,223,0 +170756918996,224,0 +170756919044,224,0 +170756919092,223,0 +170756919140,224,0 +170756919188,222,0 +170756919236,224,0 +170756919284,223,0 +170756919333,223,0 +170756919383,219,0 +170756919432,219,0 +170756919482,219,0 +170756919531,220,0 +170756919581,220,0 +170756919628,220,0 +170756919676,223,0 +170756919724,224,0 +170756919772,223,0 +170756919820,225,0 +170756919868,223,0 +170756919916,224,0 +170756919964,225,0 +170756920013,224,0 +170756920061,225,0 +170756920109,224,0 +170756920159,223,0 +170756920208,222,0 +170756920256,218,0 +170756920304,218,0 +170756920352,219,0 +170756920400,220,0 +170756920448,220,0 +170756920496,220,0 +170756920544,220,0 +170756920592,221,0 +170756920640,223,0 +170756920688,223,0 +170756920737,223,0 +170756920787,224,0 +170756920834,224,0 +170756920882,225,0 +170756920932,224,0 +170756920981,223,0 +170756921031,223,0 +170756921079,222,0 +170756921128,216,0 +170756921176,216,0 +170756921225,217,0 +170756921273,218,0 +170756921323,218,0 +170756921371,219,0 +170756921420,220,0 +170756921470,220,0 +170756921518,220,0 +170756921565,220,0 +170756921613,223,0 +170756921661,222,0 +170756921709,223,0 +170756921757,223,0 +170756921806,223,0 +170756921854,223,0 +170756921904,223,0 +170756921952,222,0 +170756922001,217,0 +170756922049,217,0 +170756922097,218,0 +170756922146,218,0 +170756922196,219,0 +170756922244,220,0 +170756922292,221,0 +170756922340,221,0 +170756922388,222,0 +170756922437,222,0 +170756922487,223,0 +170756922535,224,0 +170756922582,225,0 +170756922630,223,0 +170756922678,223,0 +170756922726,223,0 +170756922774,224,0 +170756922822,223,0 +170756922872,216,0 +170756922920,216,0 +170756922968,217,0 +170756923015,217,0 +170756923065,219,0 +170756923113,219,0 +170756923161,219,0 +170756923210,221,0 +170756923258,221,0 +170756923307,221,0 +170756923355,221,0 +170756923403,222,0 +170756923453,222,0 +170756923501,223,0 +170756923549,223,0 +170756923597,224,0 +170756923645,224,0 +170756923693,222,0 +170756923740,217,0 +170756923790,217,0 +170756923839,217,0 +170756923887,218,0 +170756923935,219,0 +170756923983,220,0 +170756924031,219,0 +170756924079,221,0 +170756924127,221,0 +170756924174,221,0 +170756924222,221,0 +170756924270,222,0 +170756924318,223,0 +170756924366,225,0 +170756924414,224,0 +170756924462,225,0 +170756924511,223,0 +170756924559,223,0 +170756924607,216,0 +170756924654,215,0 +170756924702,216,0 +170756924750,217,0 +170756924798,218,0 +170756924846,219,0 +170756924894,219,0 +170756924941,219,0 +170756924989,219,0 +170756925037,220,0 +170756925085,219,0 +170756925134,223,0 +170756925184,222,0 +170756925233,224,0 +170756925281,223,0 +170756925329,224,0 +170756925378,225,0 +170756925426,223,0 +170756925474,222,0 +170756925522,215,0 +170756925570,216,0 +170756925619,217,0 +170756925667,217,0 +170756925715,218,0 +170756925765,219,0 +170756925814,220,0 +170756925864,221,0 +170756925912,222,0 +170756925961,221,0 +170756926011,222,0 +170756926058,224,0 +170756926108,224,0 +170756926156,222,0 +170756926204,223,0 +170756926252,223,0 +170756926300,223,0 +170756926348,221,0 +170756926397,215,0 +170756926445,215,0 +170756926493,216,0 +170756926541,217,0 +170756926589,218,0 +170756926637,218,0 +170756926685,220,0 +170756926732,219,0 +170756926780,220,0 +170756926828,221,0 +170756926876,220,0 +170756926924,222,0 +170756926974,222,0 +170756927022,222,0 +170756927069,224,0 +170756927117,223,0 +170756927165,222,0 +170756927213,222,0 +170756927261,215,0 +170756927310,214,0 +170756927360,214,0 +170756927407,215,0 +170756927455,216,0 +170756927503,217,0 +170756927551,217,0 +170756927601,218,0 +170756927649,219,0 +170756927698,220,0 +170756927746,221,0 +170756927794,222,0 +170756927843,221,0 +170756927891,221,0 +170756927939,222,0 +170756927987,222,0 +170756928037,222,0 +170756928085,220,0 +170756928133,215,0 +170756928181,215,0 +170756928228,216,0 +170756928278,216,0 +170756928326,217,0 +170756928374,217,0 +170756928422,218,0 +170756928471,219,0 +170756928521,220,0 +170756928569,220,0 +170756928617,221,0 +170756928665,221,0 +170756928713,221,0 +170756928761,221,0 +170756928809,222,0 +170756928856,223,0 +170756928906,223,0 +170756928954,223,0 +170756929002,216,0 +170756929050,215,0 +170756929099,216,0 +170756929147,217,0 +170756929197,217,0 +170756929246,218,0 +170756929294,218,0 +170756929344,219,0 +170756929392,220,0 +170756929440,220,0 +170756929488,221,0 +170756929537,221,0 +170756929585,221,0 +170756929634,220,0 +170756929682,222,0 +170756929732,222,0 +170756929781,222,0 +170756929829,223,0 +170756929877,218,0 +170756929925,217,0 +170756929972,218,0 +170756930020,219,0 +170756930068,219,0 +170756930116,219,0 +170756930164,219,0 +170756930213,219,0 +170756930261,221,0 +170756930309,220,0 +170756930358,222,0 +170756930406,223,0 +170756930454,223,0 +170756930504,224,0 +170756930552,222,0 +170756930601,224,0 +170756930649,223,0 +170756930699,222,0 +170756930746,216,0 +170756930794,217,0 +170756930842,218,0 +170756930890,218,0 +170756930938,218,0 +170756930986,219,0 +170756931034,220,0 +170756931082,220,0 +170756931130,221,0 +170756931178,221,0 +170756931226,224,0 +170756931273,224,0 +170756931323,223,0 +170756931372,226,0 +170756931420,224,0 +170756931468,224,0 +170756931516,223,0 +170756931563,224,0 +170756931611,218,0 +170756931659,217,0 +170756931707,218,0 +170756931755,219,0 +170756931803,220,0 +170756931850,220,0 +170756931898,220,0 +170756931946,219,0 +170756931996,220,0 +170756932045,221,0 +170756932093,221,0 +170756932141,222,0 +170756932190,223,0 +170756932238,223,0 +170756932286,222,0 +170756932334,224,0 +170756932382,223,0 +170756932431,223,0 +170756932481,220,0 +170756932529,216,0 +170756932577,217,0 +170756932626,218,0 +170756932674,218,0 +170756932722,219,0 +170756932770,221,0 +170756932818,220,0 +170756932865,221,0 +170756932913,222,0 +170756932961,224,0 +170756933009,224,0 +170756933057,223,0 +170756933105,224,0 +170756933153,223,0 +170756933200,225,0 +170756933248,223,0 +170756933298,224,0 +170756933346,222,0 +170756933395,217,0 +170756933443,218,0 +170756933492,218,0 +170756933542,219,0 +170756933592,221,0 +170756933640,220,0 +170756933687,222,0 +170756933737,222,0 +170756933785,222,0 +170756933834,222,0 +170756933882,224,0 +170756933932,222,0 +170756933981,223,0 +170756934029,223,0 +170756934079,224,0 +170756934128,223,0 +170756934176,222,0 +170756934224,216,0 +170756934272,215,0 +170756934321,216,0 +170756934371,218,0 +170756934419,217,0 +170756934466,218,0 +170756934516,219,0 +170756934564,219,0 +170756934612,220,0 +170756934660,219,0 +170756934708,221,0 +170756934755,221,0 +170756934803,223,0 +170756934851,223,0 +170756934899,224,0 +170756934947,229,0 +170756934995,224,0 +170756935043,222,0 +170756935091,221,0 +170756935140,216,0 +170756935188,216,0 +170756935236,218,0 +170756935284,219,0 +170756935332,219,0 +170756935379,219,0 +170756935427,220,0 +170756935477,220,0 +170756935525,222,0 +170756935574,222,0 +170756935622,221,0 +170756935670,222,0 +170756935718,222,0 +170756935768,223,0 +170756935816,222,0 +170756935865,223,0 +170756935915,223,0 +170756935963,221,0 +170756936011,217,0 +170756936060,218,0 +170756936110,218,0 +170756936158,220,0 +170756936205,220,0 +170756936253,220,0 +170756936303,222,0 +170756936352,221,0 +170756936400,223,0 +170756936448,222,0 +170756936496,223,0 +170756936545,224,0 +170756936593,224,0 +170756936641,224,0 +170756936690,224,0 +170756936738,224,0 +170756936788,223,0 +170756936836,222,0 +170756936883,218,0 +170756936933,218,0 +170756936981,219,0 +170756937029,219,0 +170756937077,220,0 +170756937124,220,0 +170756937172,222,0 +170756937220,222,0 +170756937268,222,0 +170756937316,223,0 +170756937364,223,0 +170756937411,223,0 +170756937459,224,0 +170756937507,221,0 +170756937555,224,0 +170756937602,223,0 +170756937650,222,0 +170756937698,222,0 +170756937748,219,0 +170756937795,219,0 +170756937843,220,0 +170756937891,220,0 +170756937939,220,0 +170756937987,221,0 +170756938035,222,0 +170756938083,222,0 +170756938130,223,0 +170756938178,223,0 +170756938228,223,0 +170756938277,224,0 +170756938327,223,0 +170756938375,224,0 +170756938423,223,0 +170756938470,224,0 +170756938520,225,0 +170756938570,222,0 +170756938618,217,0 +170756938665,216,0 +170756938715,218,0 +170756938764,218,0 +170756938814,219,0 +170756938862,218,0 +170756938911,219,0 +170756938959,221,0 +170756939007,221,0 +170756939055,221,0 +170756939103,221,0 +170756939151,222,0 +170756939198,222,0 +170756939246,222,0 +170756939294,222,0 +170756939342,223,0 +170756939392,223,0 +170756939441,224,0 +170756939489,216,0 +170756939537,216,0 +170756939587,216,0 +170756939634,217,0 +170756939682,218,0 +170756939730,218,0 +170756939778,218,0 +170756939826,219,0 +170756939874,220,0 +170756939922,221,0 +170756939970,221,0 +170756940019,221,0 +170756940067,222,0 +170756940115,222,0 +170756940163,222,0 +170756940212,223,0 +170756940260,225,0 +170756940308,223,0 +170756940356,216,0 +170756940404,215,0 +170756940451,216,0 +170756940499,217,0 +170756940547,218,0 +170756940595,220,0 +170756940644,219,0 +170756940694,220,0 +170756940743,220,0 +170756940791,221,0 +170756940839,221,0 +170756940886,222,0 +170756940934,222,0 +170756940982,223,0 +170756941030,223,0 +170756941078,224,0 +170756941125,223,0 +170756941173,223,0 +170756941221,215,0 +170756941269,214,0 +170756941317,215,0 +170756941365,217,0 +170756941414,217,0 +170756941463,217,0 +170756941511,218,0 +170756941559,218,0 +170756941607,220,0 +170756941656,220,0 +170756941704,221,0 +170756941752,221,0 +170756941800,221,0 +170756941848,222,0 +170756941896,221,0 +170756941944,221,0 +170756941992,222,0 +170756942040,223,0 +170756942088,222,0 +170756942136,214,0 +170756942184,215,0 +170756942232,216,0 +170756942281,216,0 +170756942331,218,0 +170756942380,216,0 +170756942428,217,0 +170756942478,218,0 +170756942526,219,0 +170756942575,221,0 +170756942623,221,0 +170756942673,222,0 +170756942720,222,0 +170756942770,222,0 +170756942818,223,0 +170756942866,224,0 +170756942914,223,0 +170756942961,222,0 +170756943009,215,0 +170756943057,215,0 +170756943105,215,0 +170756943153,217,0 +170756943201,218,0 +170756943248,218,0 +170756943296,219,0 +170756943344,219,0 +170756943392,219,0 +170756943440,220,0 +170756943489,220,0 +170756943537,221,0 +170756943585,221,0 +170756943633,224,0 +170756943682,223,0 +170756943730,223,0 +170756943778,222,0 +170756943826,222,0 +170756943874,215,0 +170756943922,215,0 +170756943969,215,0 +170756944019,216,0 +170756944067,217,0 +170756944116,217,0 +170756944164,218,0 +170756944212,219,0 +170756944262,219,0 +170756944309,220,0 +170756944357,220,0 +170756944405,221,0 +170756944453,222,0 +170756944501,222,0 +170756944549,222,0 +170756944599,222,0 +170756944647,222,0 +170756944694,222,0 +170756944744,216,0 +170756944792,215,0 +170756944840,216,0 +170756944889,216,0 +170756944937,217,0 +170756944985,218,0 +170756945033,218,0 +170756945081,219,0 +170756945129,219,0 +170756945177,219,0 +170756945225,221,0 +170756945273,221,0 +170756945321,222,0 +170756945369,221,0 +170756945417,224,0 +170756945464,223,0 +170756945512,223,0 +170756945560,223,0 +170756945608,218,0 +170756945656,217,0 +170756945706,218,0 +170756945754,218,0 +170756945803,220,0 +170756945853,220,0 +170756945902,220,0 +170756945950,221,0 +170756946000,216,0 +170756946049,221,0 +170756946097,222,0 +170756946145,224,0 +170756946193,223,0 +170756946241,224,0 +170756946290,224,0 +170756946338,224,0 +170756946388,224,0 +170756946436,223,0 +170756946485,219,0 +170756946533,218,0 +170756946581,218,0 +170756946631,218,0 +170756946679,221,0 +170756946728,220,0 +170756946776,221,0 +170756946824,221,0 +170756946872,222,0 +170756946921,223,0 +170756946971,223,0 +170756947019,223,0 +170756947067,224,0 +170756947115,224,0 +170756947164,224,0 +170756947212,224,0 +170756947262,224,0 +170756947310,222,0 +170756947358,219,0 +170756947405,218,0 +170756947453,219,0 +170756947503,219,0 +170756947552,219,0 +170756947600,220,0 +170756947648,221,0 +170756947696,222,0 +170756947744,222,0 +170756947793,223,0 +170756947843,226,0 +170756947891,225,0 +170756947939,219,0 +170756947988,222,0 +170756948036,221,0 +170756948084,224,0 +170756948132,225,0 +170756948180,223,0 +170756948228,220,0 +170756948276,216,0 +170756948326,217,0 +170756948374,217,0 +170756948422,219,0 +170756948471,219,0 +170756948521,219,0 +170756948569,221,0 +170756948618,221,0 +170756948666,221,0 +170756948714,223,0 +170756948763,223,0 +170756948813,223,0 +170756948862,223,0 +170756948912,223,0 +170756948960,223,0 +170756949009,223,0 +170756949059,223,0 +170756949108,216,0 +170756949158,215,0 +170756949206,216,0 +170756949254,217,0 +170756949302,217,0 +170756949350,219,0 +170756949399,219,0 +170756949447,219,0 +170756949495,220,0 +170756949543,222,0 +170756949591,221,0 +170756949641,221,0 +170756949688,221,0 +170756949738,215,0 +170756949787,221,0 +170756949835,222,0 +170756949883,221,0 +170756949933,223,0 +170756949982,216,0 +170756950030,215,0 +170756950078,216,0 +170756950126,216,0 +170756950174,218,0 +170756950222,217,0 +170756950271,217,0 +170756950319,218,0 +170756950367,219,0 +170756950415,220,0 +170756950465,221,0 +170756950514,222,0 +170756950562,222,0 +170756950612,222,0 +170756950659,222,0 +170756950707,224,0 +170756950755,223,0 +170756950803,224,0 +170756950851,221,0 +170756950899,215,0 +170756950948,215,0 +170756950998,216,0 +170756951047,217,0 +170756951097,218,0 +170756951146,217,0 +170756951194,219,0 +170756951244,219,0 +170756951293,222,0 +170756951341,222,0 +170756951389,222,0 +170756951437,224,0 +170756951487,223,0 +170756951534,225,0 +170756951584,225,0 +170756951632,223,0 +170756951680,223,0 +170756951729,218,0 +170756951779,214,0 +170756951828,215,0 +170756951876,216,0 +170756951924,217,0 +170756951972,218,0 +170756952022,218,0 +170756952069,220,0 +170756952117,220,0 +170756952165,220,0 +170756952213,220,0 +170756952261,222,0 +170756952309,223,0 +170756952357,227,0 +170756952405,223,0 +170756952453,224,0 +170756952501,224,0 +170756952549,222,0 +170756952596,220,0 +170756952644,218,0 +170756952694,219,0 +170756952743,220,0 +170756952791,220,0 +170756952839,221,0 +170756952887,221,0 +170756952935,222,0 +170756952984,222,0 +170756953034,224,0 +170756953082,223,0 +170756953130,223,0 +170756953179,223,0 +170756953227,224,0 +170756953275,223,0 +170756953323,224,0 +170756953371,224,0 +170756953419,224,0 +170756953467,222,0 +170756953516,223,0 +170756953564,220,0 +170756953612,222,0 +170756953660,221,0 +170756953710,222,0 +170756953758,222,0 +170756953805,224,0 +170756953855,223,0 +170756953903,223,0 +170756953952,224,0 +170756954002,223,0 +170756954051,224,0 +170756954099,224,0 +170756954149,224,0 +170756954197,223,0 +170756954245,223,0 +170756954293,222,0 +170756954342,222,0 +170756954392,217,0 +170756954439,217,0 +170756954489,217,0 +170756954538,218,0 +170756954586,219,0 +170756954634,219,0 +170756954682,221,0 +170756954732,220,0 +170756954781,221,0 +170756954831,220,0 +170756954879,221,0 +170756954927,221,0 +170756954974,223,0 +170756955024,223,0 +170756955072,222,0 +170756955120,222,0 +170756955168,223,0 +170756955215,223,0 +170756955263,217,0 +170756955311,217,0 +170756955360,218,0 +170756955408,218,0 +170756955458,219,0 +170756955506,221,0 +170756955554,223,0 +170756955601,221,0 +170756955649,222,0 +170756955697,222,0 +170756955745,222,0 +170756955793,224,0 +170756955841,223,0 +170756955889,224,0 +170756955937,223,0 +170756955985,222,0 +170756956033,224,0 +170756956082,222,0 +170756956130,217,0 +170756956178,217,0 +170756956227,219,0 +170756956275,219,0 +170756956324,219,0 +170756956372,220,0 +170756956422,221,0 +170756956471,221,0 +170756956519,221,0 +170756956567,222,0 +170756956617,224,0 +170756956665,225,0 +170756956713,224,0 +170756956762,225,0 +170756956810,223,0 +170756956858,223,0 +170756956906,222,0 +170756956955,223,0 +170756957003,216,0 +170756957051,215,0 +170756957099,216,0 +170756957147,217,0 +170756957195,218,0 +170756957243,219,0 +170756957290,218,0 +170756957338,220,0 +170756957386,221,0 +170756957434,221,0 +170756957482,222,0 +170756957530,222,0 +170756957578,223,0 +170756957625,222,0 +170756957673,224,0 +170756957721,223,0 +170756957769,222,0 +170756957817,222,0 +170756957865,216,0 +170756957914,215,0 +170756957962,216,0 +170756958010,217,0 +170756958058,217,0 +170756958106,219,0 +170756958153,219,0 +170756958201,220,0 +170756958249,220,0 +170756958297,220,0 +170756958345,221,0 +170756958393,221,0 +170756958441,222,0 +170756958489,222,0 +170756958537,223,0 +170756958585,223,0 +170756958633,223,0 +170756958682,223,0 +170756958732,216,0 +170756958780,217,0 +170756958829,218,0 +170756958877,219,0 +170756958925,219,0 +170756958973,219,0 +170756959022,219,0 +170756959070,220,0 +170756959118,220,0 +170756959166,223,0 +170756959216,222,0 +170756959264,224,0 +170756959313,223,0 +170756959361,223,0 +170756959409,224,0 +170756959457,224,0 +170756959505,225,0 +170756959553,222,0 +170756959601,216,0 +170756959649,218,0 +170756959697,218,0 +170756959746,222,0 +170756959794,219,0 +170756959842,220,0 +170756959890,220,0 +170756959939,221,0 +170756959989,220,0 +170756960038,222,0 +170756960086,223,0 +170756960134,223,0 +170756960184,226,0 +170756960231,223,0 +170756960279,226,0 +170756960327,226,0 +170756960375,223,0 +170756960423,223,0 +170756960471,223,0 +170756960519,218,0 +170756960567,218,0 +170756960615,218,0 +170756960664,219,0 +170756960712,220,0 +170756960760,221,0 +170756960809,221,0 +170756960857,221,0 +170756960905,220,0 +170756960953,225,0 +170756961002,223,0 +170756961050,225,0 +170756961098,224,0 +170756961146,224,0 +170756961194,224,0 +170756961242,224,0 +170756961291,223,0 +170756961339,222,0 +170756961387,218,0 +170756961436,219,0 +170756961484,219,0 +170756961534,219,0 +170756961581,220,0 +170756961629,220,0 +170756961677,219,0 +170756961725,220,0 +170756961773,222,0 +170756961821,222,0 +170756961869,223,0 +170756961918,223,0 +170756961968,224,0 +170756962017,224,0 +170756962065,223,0 +170756962115,223,0 +170756962163,223,0 +170756962212,222,0 +170756962260,217,0 +170756962308,218,0 +170756962358,218,0 +170756962406,218,0 +170756962455,219,0 +170756962503,220,0 +170756962551,219,0 +170756962599,221,0 +170756962647,222,0 +170756962695,223,0 +170756962743,222,0 +170756962793,223,0 +170756962840,224,0 +170756962890,223,0 +170756962938,224,0 +170756962987,223,0 +170756963037,223,0 +170756963086,222,0 +170756963136,216,0 +170756963184,216,0 +170756963232,217,0 +170756963280,218,0 +170756963327,218,0 +170756963375,219,0 +170756963425,219,0 +170756963473,221,0 +170756963521,223,0 +170756963570,222,0 +170756963619,220,0 +170756963667,222,0 +170756963715,224,0 +170756963764,223,0 +170756963812,224,0 +170756963862,223,0 +170756963910,222,0 +170756963957,222,0 +170756964005,217,0 +170756964053,217,0 +170756964101,217,0 +170756964149,217,0 +170756964197,219,0 +170756964245,219,0 +170756964293,220,0 +170756964342,220,0 +170756964390,220,0 +170756964440,221,0 +170756964488,221,0 +170756964536,221,0 +170756964584,221,0 +170756964632,218,0 +170756964681,219,0 +170756964729,219,0 +170756964777,220,0 +170756964826,223,0 +170756964874,216,0 +170756964924,215,0 +170756964973,215,0 +170756965022,215,0 +170756965070,216,0 +170756965118,216,0 +170756965168,217,0 +170756965216,217,0 +170756965265,219,0 +170756965313,219,0 +170756965363,221,0 +170756965412,221,0 +170756965460,223,0 +170756965508,224,0 +170756965556,223,0 +170756965604,223,0 +170756965652,221,0 +170756965701,222,0 +170756965751,214,0 +170756965800,214,0 +170756965848,214,0 +170756965898,214,0 +170756965946,214,0 +170756965993,214,0 +170756966043,215,0 +170756966093,215,0 +170756966142,216,0 +170756966190,216,0 +170756966238,217,0 +170756966286,217,0 +170756966334,218,0 +170756966383,218,0 +170756966431,219,0 +170756966479,219,0 +170756966527,219,0 +170756966575,223,0 +170756966623,216,0 +170756966672,215,0 +170756966720,215,0 +170756966768,217,0 +170756966816,217,0 +170756966864,218,0 +170756966913,218,0 +170756966961,219,0 +170756967011,219,0 +170756967059,221,0 +170756967108,221,0 +170756967156,222,0 +170756967204,222,0 +170756967252,222,0 +170756967301,222,0 +170756967351,223,0 +170756967400,223,0 +170756967448,222,0 +170756967496,219,0 +170756967546,219,0 +170756967595,219,0 +170756967643,220,0 +170756967691,220,0 +170756967739,220,0 +170756967787,223,0 +170756967835,222,0 +170756967884,222,0 +170756967932,223,0 +170756967982,223,0 +170756968030,223,0 +170756968078,224,0 +170756968125,223,0 +170756968173,225,0 +170756968221,224,0 +170756968269,223,0 +170756968319,222,0 +170756968367,218,0 +170756968416,217,0 +170756968464,219,0 +170756968512,219,0 +170756968560,220,0 +170756968608,220,0 +170756968657,221,0 +170756968705,222,0 +170756968753,221,0 +170756968801,221,0 +170756968849,222,0 +170756968897,221,0 +170756968947,223,0 +170756968996,226,0 +170756969044,223,0 +170756969092,224,0 +170756969140,223,0 +170756969188,222,0 +170756969236,216,0 +170756969286,216,0 +170756969333,216,0 +170756969381,217,0 +170756969431,218,0 +170756969480,218,0 +170756969528,219,0 +170756969576,219,0 +170756969626,220,0 +170756969674,220,0 +170756969723,221,0 +170756969773,222,0 +170756969822,223,0 +170756969870,223,0 +170756969918,223,0 +170756969968,223,0 +170756970017,224,0 +170756970067,223,0 +170756970116,216,0 +170756970164,215,0 +170756970214,217,0 +170756970262,217,0 +170756970310,218,0 +170756970358,219,0 +170756970406,219,0 +170756970454,219,0 +170756970501,222,0 +170756970549,222,0 +170756970599,221,0 +170756970647,223,0 +170756970696,222,0 +170756970744,224,0 +170756970792,222,0 +170756970841,224,0 +170756970891,223,0 +170756970939,224,0 +170756970987,217,0 +170756971035,216,0 +170756971083,218,0 +170756971131,218,0 +170756971178,218,0 +170756971226,219,0 +170756971274,221,0 +170756971322,222,0 +170756971372,221,0 +170756971421,222,0 +170756971471,222,0 +170756971519,223,0 +170756971566,223,0 +170756971616,223,0 +170756971664,223,0 +170756971712,224,0 +170756971760,223,0 +170756971808,222,0 +170756971856,218,0 +170756971905,218,0 +170756971955,218,0 +170756972002,219,0 +170756972050,220,0 +170756972098,220,0 +170756972148,220,0 +170756972197,220,0 +170756972245,222,0 +170756972293,223,0 +170756972341,223,0 +170756972391,222,0 +170756972439,225,0 +170756972488,223,0 +170756972536,223,0 +170756972586,221,0 +170756972634,224,0 +170756972681,224,0 +170756972731,217,0 +170756972781,218,0 +170756972830,218,0 +170756972879,219,0 +170756972927,219,0 +170756972977,220,0 +170756973025,221,0 +170756973073,221,0 +170756973122,222,0 +170756973170,223,0 +170756973220,224,0 +170756973269,223,0 +170756973319,225,0 +170756973368,222,0 +170756973416,223,0 +170756973465,224,0 +170756973513,220,0 +170756973563,223,0 +170756973611,220,0 +170756973659,219,0 +170756973707,219,0 +170756973754,220,0 +170756973802,221,0 +170756973852,221,0 +170756973900,221,0 +170756973948,223,0 +170756973997,222,0 +170756974047,223,0 +170756974096,225,0 +170756974144,224,0 +170756974192,225,0 +170756974240,224,0 +170756974288,224,0 +170756974336,224,0 +170756974384,224,0 +170756974432,223,0 +170756974480,220,0 +170756974528,220,0 +170756974575,220,0 +170756974625,221,0 +170756974675,221,0 +170756974722,222,0 +170756974770,221,0 +170756974820,223,0 +170756974868,223,0 +170756974916,224,0 +170756974964,223,0 +170756975012,223,0 +170756975061,224,0 +170756975109,223,0 +170756975157,225,0 +170756975205,223,0 +170756975253,219,0 +170756975302,223,0 +170756975351,217,0 +170756975399,221,0 +170756975447,219,0 +170756975495,220,0 +170756975543,222,0 +170756975591,221,0 +170756975639,224,0 +170756975687,222,0 +170756975736,223,0 +170756975784,225,0 +170756975832,223,0 +170756975880,223,0 +170756975930,224,0 +170756975978,224,0 +170756976027,224,0 +170756976075,224,0 +170756976125,224,0 +170756976173,223,0 +170756976222,222,0 +170756976272,217,0 +170756976321,218,0 +170756976369,219,0 +170756976417,219,0 +170756976465,220,0 +170756976513,221,0 +170756976561,221,0 +170756976609,222,0 +170756976658,223,0 +170756976706,225,0 +170756976754,223,0 +170756976802,222,0 +170756976850,224,0 +170756976898,223,0 +170756976946,225,0 +170756976994,224,0 +170756977043,223,0 +170756977093,222,0 +170756977142,215,0 +170756977192,216,0 +170756977240,216,0 +170756977288,217,0 +170756977336,218,0 +170756977384,218,0 +170756977431,219,0 +170756977479,219,0 +170756977527,221,0 +170756977577,221,0 +170756977625,222,0 +170756977673,222,0 +170756977722,223,0 +170756977770,224,0 +170756977820,225,0 +170756977867,223,0 +170756977915,224,0 +170756977965,222,0 +170756978013,215,0 +170756978061,215,0 +170756978109,217,0 +170756978157,217,0 +170756978206,218,0 +170756978254,220,0 +170756978302,219,0 +170756978352,219,0 +170756978401,220,0 +170756978449,221,0 +170756978499,222,0 +170756978548,225,0 +170756978596,222,0 +170756978646,224,0 +170756978693,224,0 +170756978741,223,0 +170756978791,223,0 +170756978840,222,0 +170756978888,215,0 +170756978937,215,0 +170756978985,216,0 +170756979033,217,0 +170756979081,218,0 +170756979129,218,0 +170756979177,219,0 +170756979226,221,0 +170756979274,220,0 +170756979322,220,0 +170756979370,221,0 +170756979418,222,0 +170756979467,221,0 +170756979515,221,0 +170756979563,222,0 +170756979612,224,0 +170756979660,222,0 +170756979708,222,0 +170756979758,215,0 +170756979807,214,0 +170756979855,215,0 +170756979905,216,0 +170756979954,216,0 +170756980002,217,0 +170756980050,218,0 +170756980098,218,0 +170756980146,219,0 +170756980194,221,0 +170756980242,223,0 +170756980289,222,0 +170756980337,223,0 +170756980387,223,0 +170756980434,223,0 +170756980482,223,0 +170756980530,224,0 +170756980578,223,0 +170756980626,215,0 +170756980674,214,0 +170756980721,215,0 +170756980769,216,0 +170756980817,216,0 +170756980867,217,0 +170756980916,219,0 +170756980964,218,0 +170756981012,218,0 +170756981060,219,0 +170756981108,221,0 +170756981157,221,0 +170756981205,221,0 +170756981253,222,0 +170756981301,223,0 +170756981349,223,0 +170756981397,224,0 +170756981445,223,0 +170756981493,215,0 +170756981541,214,0 +170756981589,214,0 +170756981637,215,0 +170756981685,215,0 +170756981733,216,0 +170756981781,217,0 +170756981828,217,0 +170756981876,218,0 +170756981926,219,0 +170756981974,220,0 +170756982022,220,0 +170756982070,221,0 +170756982118,222,0 +170756982167,222,0 +170756982215,222,0 +170756982265,222,0 +170756982314,222,0 +170756982364,216,0 +170756982413,215,0 +170756982461,215,0 +170756982509,217,0 +170756982557,218,0 +170756982605,218,0 +170756982653,219,0 +170756982701,220,0 +170756982749,221,0 +170756982797,221,0 +170756982846,222,0 +170756982896,223,0 +170756982944,223,0 +170756982992,223,0 +170756983039,223,0 +170756983087,224,0 +170756983135,223,0 +170756983185,224,0 +170756983233,216,0 +170756983281,215,0 +170756983329,217,0 +170756983378,217,0 +170756983426,218,0 +170756983474,219,0 +170756983522,220,0 +170756983572,221,0 +170756983619,222,0 +170756983669,222,0 +170756983717,221,0 +170756983765,222,0 +170756983813,223,0 +170756983862,223,0 +170756983910,224,0 +170756983960,223,0 +170756984007,222,0 +170756984057,223,0 +170756984105,217,0 +170756984153,216,0 +170756984201,217,0 +170756984250,218,0 +170756984298,219,0 +170756984346,218,0 +170756984394,218,0 +170756984442,217,0 +170756984490,219,0 +170756984538,220,0 +170756984587,221,0 +170756984635,222,0 +170756984683,223,0 +170756984731,222,0 +170756984779,221,0 +170756984827,224,0 +170756984877,223,0 +170756984926,223,0 +170756984974,221,0 +170756985022,217,0 +170756985071,218,0 +170756985121,218,0 +170756985170,219,0 +170756985220,219,0 +170756985268,220,0 +170756985316,221,0 +170756985363,221,0 +170756985411,221,0 +170756985459,222,0 +170756985509,223,0 +170756985557,222,0 +170756985606,223,0 +170756985656,224,0 +170756985704,221,0 +170756985751,224,0 +170756985799,225,0 +170756985849,223,0 +170756985897,217,0 +170756985945,218,0 +170756985993,219,0 +170756986042,219,0 +170756986090,220,0 +170756986138,221,0 +170756986186,221,0 +170756986234,222,0 +170756986283,222,0 +170756986331,222,0 +170756986379,222,0 +170756986427,224,0 +170756986475,225,0 +170756986523,224,0 +170756986570,224,0 +170756986618,223,0 +170756986666,222,0 +170756986714,223,0 +170756986762,219,0 +170756986810,220,0 +170756986859,220,0 +170756986907,220,0 +170756986955,220,0 +170756987003,221,0 +170756987051,222,0 +170756987100,222,0 +170756987148,223,0 +170756987197,223,0 +170756987245,224,0 +170756987293,224,0 +170756987341,225,0 +170756987389,225,0 +170756987437,224,0 +170756987484,224,0 +170756987534,223,0 +170756987582,220,0 +170756987630,217,0 +170756987677,218,0 +170756987725,219,0 +170756987773,222,0 +170756987821,221,0 +170756987869,221,0 +170756987917,223,0 +170756987965,222,0 +170756988012,222,0 +170756988062,224,0 +170756988110,224,0 +170756988159,224,0 +170756988207,224,0 +170756988255,224,0 +170756988303,225,0 +170756988352,223,0 +170756988400,225,0 +170756988448,223,0 +170756988496,219,0 +170756988544,219,0 +170756988593,219,0 +170756988641,220,0 +170756988690,221,0 +170756988738,222,0 +170756988786,224,0 +170756988834,223,0 +170756988882,225,0 +170756988930,222,0 +170756988978,223,0 +170756989026,223,0 +170756989075,223,0 +170756989123,224,0 +170756989171,224,0 +170756989220,224,0 +170756989268,223,0 +170756989316,222,0 +170756989364,219,0 +170756989412,217,0 +170756989459,217,0 +170756989509,219,0 +170756989557,219,0 +170756989606,219,0 +170756989654,220,0 +170756989702,221,0 +170756989750,221,0 +170756989798,222,0 +170756989845,223,0 +170756989895,224,0 +170756989943,226,0 +170756989991,224,0 +170756990039,223,0 +170756990086,224,0 +170756990134,223,0 +170756990182,223,0 +170756990231,217,0 +170756990279,216,0 +170756990329,217,0 +170756990376,218,0 +170756990424,218,0 +170756990474,219,0 +170756990523,219,0 +170756990571,221,0 +170756990620,220,0 +170756990668,221,0 +170756990716,222,0 +170756990766,223,0 +170756990815,224,0 +170756990865,224,0 +170756990914,225,0 +170756990962,224,0 +170756991010,224,0 +170756991060,221,0 +170756991107,216,0 +170756991155,215,0 +170756991203,216,0 +170756991251,218,0 +170756991299,218,0 +170756991348,219,0 +170756991396,219,0 +170756991444,219,0 +170756991493,219,0 +170756991541,220,0 +170756991589,220,0 +170756991636,222,0 +170756991684,224,0 +170756991732,224,0 +170756991780,224,0 +170756991828,224,0 +170756991876,223,0 +170756991924,224,0 +170756991971,222,0 +170756992019,215,0 +170756992067,215,0 +170756992115,216,0 +170756992163,217,0 +170756992211,218,0 +170756992259,218,0 +170756992307,219,0 +170756992354,222,0 +170756992402,222,0 +170756992450,221,0 +170756992500,223,0 +170756992548,223,0 +170756992597,222,0 +170756992645,222,0 +170756992693,225,0 +170756992742,224,0 +170756992792,225,0 +170756992841,224,0 +170756992889,217,0 +170756992939,217,0 +170756992988,218,0 +170756993036,219,0 +170756993084,219,0 +170756993132,220,0 +170756993180,220,0 +170756993227,221,0 +170756993275,221,0 +170756993323,221,0 +170756993371,223,0 +170756993419,222,0 +170756993467,222,0 +170756993515,225,0 +170756993562,225,0 +170756993610,224,0 +170756993658,222,0 +170756993706,222,0 +170756993754,217,0 +170756993801,218,0 +170756993849,219,0 +170756993897,218,0 +170756993945,219,0 +170756993993,219,0 +170756994041,221,0 +170756994089,221,0 +170756994137,222,0 +170756994186,222,0 +170756994234,224,0 +170756994282,225,0 +170756994332,225,0 +170756994380,223,0 +170756994429,224,0 +170756994479,224,0 +170756994526,223,0 +170756994574,221,0 +170756994622,217,0 +170756994670,216,0 +170756994718,216,0 +170756994766,219,0 +170756994816,219,0 +170756994864,220,0 +170756994912,220,0 +170756994959,221,0 +170756995009,222,0 +170756995057,222,0 +170756995105,223,0 +170756995154,222,0 +170756995202,222,0 +170756995250,223,0 +170756995298,223,0 +170756995346,224,0 +170756995394,223,0 +170756995441,222,0 +170756995489,216,0 +170756995537,215,0 +170756995585,216,0 +170756995633,217,0 +170756995683,217,0 +170756995731,217,0 +170756995778,218,0 +170756995826,219,0 +170756995876,220,0 +170756995923,221,0 +170756995971,222,0 +170756996019,222,0 +170756996067,223,0 +170756996115,224,0 +170756996163,224,0 +170756996210,223,0 +170756996258,223,0 +170756996307,223,0 +170756996357,216,0 +170756996405,216,0 +170756996453,217,0 +170756996500,217,0 +170756996548,219,0 +170756996598,219,0 +170756996646,217,0 +170756996694,219,0 +170756996742,220,0 +170756996790,221,0 +170756996839,222,0 +170756996887,222,0 +170756996935,223,0 +170756996982,223,0 +170756997030,224,0 +170756997078,223,0 +170756997126,223,0 +170756997174,224,0 +170756997223,216,0 +170756997271,214,0 +170756997319,214,0 +170756997367,215,0 +170756997415,217,0 +170756997463,217,0 +170756997511,217,0 +170756997560,218,0 +170756997608,219,0 +170756997656,221,0 +170756997704,221,0 +170756997751,221,0 +170756997801,222,0 +170756997849,223,0 +170756997897,223,0 +170756997945,222,0 +170756997994,223,0 +170756998042,222,0 +170756998090,223,0 +170756998139,215,0 +170756998187,216,0 +170756998235,217,0 +170756998283,218,0 +170756998330,219,0 +170756998378,219,0 +170756998426,221,0 +170756998474,220,0 +170756998522,220,0 +170756998570,221,0 +170756998618,222,0 +170756998666,223,0 +170756998715,222,0 +170756998763,222,0 +170756998811,223,0 +170756998859,222,0 +170756998906,223,0 +170756998954,222,0 +170756999002,217,0 +170756999050,217,0 +170756999100,219,0 +170756999147,219,0 +170756999195,219,0 +170756999243,220,0 +170756999291,220,0 +170756999339,221,0 +170756999387,221,0 +170756999435,222,0 +170756999482,223,0 +170756999530,223,0 +170756999578,224,0 +170756999626,225,0 +170756999674,225,0 +170756999722,224,0 +170756999770,224,0 +170756999818,223,0 +170756999866,218,0 +170756999915,218,0 +170756999965,219,0 +170757000013,219,0 diff --git a/laser_value/0210-23.csv b/laser_value/0210-23.csv new file mode 100644 index 0000000..e610b00 --- /dev/null +++ b/laser_value/0210-23.csv @@ -0,0 +1,7448 @@ +timestamp,laser_value,event +170757000063,220,0 +170757000111,220,0 +170757000159,222,0 +170757000207,222,0 +170757000254,222,0 +170757000304,223,0 +170757000352,225,0 +170757000400,224,0 +170757000448,224,0 +170757000497,224,0 +170757000547,224,0 +170757000596,221,0 +170757000644,223,0 +170757000692,222,0 +170757000742,219,0 +170757000791,219,0 +170757000839,218,0 +170757000887,220,0 +170757000935,221,0 +170757000983,222,0 +170757001031,221,0 +170757001080,222,0 +170757001128,230,0 +170757001178,224,0 +170757001225,223,0 +170757001273,224,0 +170757001321,224,0 +170757001369,225,0 +170757001417,224,0 +170757001465,224,0 +170757001514,222,0 +170757001564,222,0 +170757001612,219,0 +170757001660,218,0 +170757001709,218,0 +170757001757,220,0 +170757001807,220,0 +170757001854,220,0 +170757001902,221,0 +170757001952,221,0 +170757002000,222,0 +170757002047,222,0 +170757002095,224,0 +170757002145,223,0 +170757002193,225,0 +170757002241,224,0 +170757002288,224,0 +170757002336,224,0 +170757002386,224,0 +170757002434,223,0 +170757002481,217,0 +170757002531,217,0 +170757002579,217,0 +170757002628,218,0 +170757002676,219,0 +170757002725,218,0 +170757002775,220,0 +170757002825,222,0 +170757002872,221,0 +170757002920,224,0 +170757002968,223,0 +170757003016,222,0 +170757003064,223,0 +170757003112,225,0 +170757003160,223,0 +170757003209,222,0 +170757003259,221,0 +170757003308,223,0 +170757003356,216,0 +170757003405,215,0 +170757003453,216,0 +170757003503,217,0 +170757003551,218,0 +170757003598,219,0 +170757003646,218,0 +170757003694,219,0 +170757003742,220,0 +170757003790,221,0 +170757003838,220,0 +170757003886,222,0 +170757003933,221,0 +170757003981,221,0 +170757004029,224,0 +170757004077,225,0 +170757004125,221,0 +170757004173,222,0 +170757004222,217,0 +170757004270,214,0 +170757004318,214,0 +170757004366,215,0 +170757004413,215,0 +170757004461,216,0 +170757004509,216,0 +170757004557,217,0 +170757004605,217,0 +170757004652,219,0 +170757004700,218,0 +170757004748,219,0 +170757004796,221,0 +170757004845,221,0 +170757004895,220,0 +170757004943,221,0 +170757004990,220,0 +170757005038,223,0 +170757005086,221,0 +170757005134,215,0 +170757005182,216,0 +170757005230,217,0 +170757005277,217,0 +170757005325,218,0 +170757005373,219,0 +170757005422,219,0 +170757005470,220,0 +170757005518,220,0 +170757005566,222,0 +170757005614,221,0 +170757005662,222,0 +170757005709,223,0 +170757005757,223,0 +170757005805,223,0 +170757005853,223,0 +170757005903,223,0 +170757005952,223,0 +170757006002,216,0 +170757006050,217,0 +170757006098,218,0 +170757006146,219,0 +170757006195,219,0 +170757006243,219,0 +170757006291,221,0 +170757006339,221,0 +170757006387,222,0 +170757006435,223,0 +170757006483,223,0 +170757006532,223,0 +170757006582,224,0 +170757006630,223,0 +170757006678,224,0 +170757006726,222,0 +170757006773,223,0 +170757006823,222,0 +170757006873,216,0 +170757006920,216,0 +170757006970,217,0 +170757007018,219,0 +170757007066,219,0 +170757007114,219,0 +170757007163,220,0 +170757007211,221,0 +170757007259,222,0 +170757007309,221,0 +170757007358,224,0 +170757007406,224,0 +170757007456,223,0 +170757007504,224,0 +170757007553,224,0 +170757007601,224,0 +170757007651,224,0 +170757007699,223,0 +170757007746,215,0 +170757007796,216,0 +170757007844,217,0 +170757007892,218,0 +170757007939,219,0 +170757007987,219,0 +170757008035,220,0 +170757008083,220,0 +170757008131,221,0 +170757008179,222,0 +170757008227,222,0 +170757008274,222,0 +170757008322,223,0 +170757008370,224,0 +170757008418,223,0 +170757008466,224,0 +170757008514,224,0 +170757008564,223,0 +170757008612,215,0 +170757008659,215,0 +170757008707,215,0 +170757008757,215,0 +170757008805,217,0 +170757008853,217,0 +170757008901,218,0 +170757008949,218,0 +170757008997,219,0 +170757009046,219,0 +170757009094,220,0 +170757009142,220,0 +170757009191,221,0 +170757009239,221,0 +170757009287,221,0 +170757009337,223,0 +170757009386,222,0 +170757009434,222,0 +170757009484,215,0 +170757009532,214,0 +170757009580,214,0 +170757009627,214,0 +170757009675,215,0 +170757009723,215,0 +170757009773,215,0 +170757009822,215,0 +170757009870,216,0 +170757009918,216,0 +170757009967,216,0 +170757010015,217,0 +170757010063,217,0 +170757010111,218,0 +170757010159,218,0 +170757010209,219,0 +170757010257,221,0 +170757010306,220,0 +170757010354,221,0 +170757010402,222,0 +170757010451,224,0 +170757010501,223,0 +170757010551,222,0 +170757010600,224,0 +170757010649,223,0 +170757010697,223,0 +170757010745,224,0 +170757010793,216,0 +170757010843,214,0 +170757010892,215,0 +170757010941,215,0 +170757010989,215,0 +170757011039,215,0 +170757011087,216,0 +170757011135,217,0 +170757011182,218,0 +170757011230,218,0 +170757011278,220,0 +170757011328,221,0 +170757011376,220,0 +170757011424,222,0 +170757011473,221,0 +170757011521,221,0 +170757011569,223,0 +170757011617,226,0 +170757011665,216,0 +170757011713,216,0 +170757011762,217,0 +170757011810,218,0 +170757011858,219,0 +170757011908,219,0 +170757011957,220,0 +170757012007,221,0 +170757012054,222,0 +170757012104,222,0 +170757012152,223,0 +170757012201,223,0 +170757012251,224,0 +170757012300,223,0 +170757012348,224,0 +170757012396,224,0 +170757012444,223,0 +170757012494,225,0 +170757012541,220,0 +170757012589,220,0 +170757012637,222,0 +170757012685,222,0 +170757012733,222,0 +170757012781,222,0 +170757012829,223,0 +170757012879,224,0 +170757012928,223,0 +170757012976,225,0 +170757013024,225,0 +170757013072,224,0 +170757013121,224,0 +170757013169,224,0 +170757013219,223,0 +170757013267,224,0 +170757013315,223,0 +170757013362,223,0 +170757013412,222,0 +170757013460,222,0 +170757013508,221,0 +170757013556,222,0 +170757013605,222,0 +170757013653,223,0 +170757013703,223,0 +170757013751,223,0 +170757013800,227,0 +170757013849,224,0 +170757013897,224,0 +170757013945,224,0 +170757013993,224,0 +170757014041,224,0 +170757014089,224,0 +170757014138,223,0 +170757014186,222,0 +170757014236,223,0 +170757014284,222,0 +170757014333,223,0 +170757014381,222,0 +170757014429,221,0 +170757014479,223,0 +170757014527,222,0 +170757014575,223,0 +170757014624,222,0 +170757014673,223,0 +170757014721,223,0 +170757014769,223,0 +170757014817,225,0 +170757014867,223,0 +170757014914,224,0 +170757014962,225,0 +170757015010,224,0 +170757015060,223,0 +170757015109,222,0 +170757015157,220,0 +170757015205,219,0 +170757015253,219,0 +170757015301,220,0 +170757015349,221,0 +170757015398,222,0 +170757015446,222,0 +170757015494,222,0 +170757015542,223,0 +170757015590,225,0 +170757015640,223,0 +170757015687,223,0 +170757015735,223,0 +170757015783,223,0 +170757015831,225,0 +170757015879,224,0 +170757015927,222,0 +170757015977,221,0 +170757016026,216,0 +170757016075,215,0 +170757016123,215,0 +170757016171,218,0 +170757016219,218,0 +170757016269,217,0 +170757016317,219,0 +170757016365,220,0 +170757016412,220,0 +170757016462,220,0 +170757016510,221,0 +170757016559,222,0 +170757016609,221,0 +170757016657,221,0 +170757016705,221,0 +170757016753,220,0 +170757016801,219,0 +170757016849,222,0 +170757016898,216,0 +170757016946,214,0 +170757016994,214,0 +170757017043,215,0 +170757017093,216,0 +170757017141,216,0 +170757017188,217,0 +170757017236,217,0 +170757017284,218,0 +170757017332,220,0 +170757017380,220,0 +170757017428,220,0 +170757017476,222,0 +170757017524,221,0 +170757017572,223,0 +170757017620,222,0 +170757017668,222,0 +170757017717,223,0 +170757017765,216,0 +170757017813,214,0 +170757017861,215,0 +170757017909,215,0 +170757017957,217,0 +170757018005,217,0 +170757018053,219,0 +170757018100,218,0 +170757018148,219,0 +170757018196,220,0 +170757018244,220,0 +170757018294,221,0 +170757018342,222,0 +170757018390,222,0 +170757018437,222,0 +170757018487,223,0 +170757018535,224,0 +170757018583,224,0 +170757018632,222,0 +170757018682,214,0 +170757018730,214,0 +170757018779,215,0 +170757018829,215,0 +170757018877,217,0 +170757018925,217,0 +170757018972,217,0 +170757019022,218,0 +170757019071,216,0 +170757019119,220,0 +170757019169,221,0 +170757019217,220,0 +170757019265,222,0 +170757019312,222,0 +170757019360,222,0 +170757019408,223,0 +170757019456,223,0 +170757019504,224,0 +170757019552,215,0 +170757019600,215,0 +170757019648,215,0 +170757019695,216,0 +170757019743,217,0 +170757019791,217,0 +170757019841,217,0 +170757019889,218,0 +170757019937,219,0 +170757019984,220,0 +170757020032,221,0 +170757020082,221,0 +170757020131,222,0 +170757020179,223,0 +170757020227,222,0 +170757020275,222,0 +170757020323,223,0 +170757020371,223,0 +170757020419,215,0 +170757020467,215,0 +170757020515,216,0 +170757020563,216,0 +170757020610,217,0 +170757020658,217,0 +170757020708,219,0 +170757020756,225,0 +170757020805,222,0 +170757020855,221,0 +170757020904,222,0 +170757020954,222,0 +170757021002,222,0 +170757021050,224,0 +170757021099,224,0 +170757021147,223,0 +170757021197,222,0 +170757021245,222,0 +170757021293,215,0 +170757021342,215,0 +170757021390,216,0 +170757021439,217,0 +170757021487,217,0 +170757021535,218,0 +170757021583,218,0 +170757021632,220,0 +170757021680,220,0 +170757021728,220,0 +170757021776,221,0 +170757021824,221,0 +170757021872,223,0 +170757021921,221,0 +170757021971,221,0 +170757022019,220,0 +170757022066,222,0 +170757022114,222,0 +170757022162,215,0 +170757022210,214,0 +170757022258,215,0 +170757022308,215,0 +170757022356,215,0 +170757022405,215,0 +170757022453,216,0 +170757022501,216,0 +170757022551,218,0 +170757022598,218,0 +170757022646,220,0 +170757022694,220,0 +170757022744,221,0 +170757022792,222,0 +170757022840,222,0 +170757022888,223,0 +170757022935,223,0 +170757022983,223,0 +170757023033,216,0 +170757023082,214,0 +170757023132,215,0 +170757023180,215,0 +170757023229,215,0 +170757023277,217,0 +170757023325,217,0 +170757023373,217,0 +170757023422,219,0 +170757023470,219,0 +170757023518,220,0 +170757023566,220,0 +170757023614,223,0 +170757023662,221,0 +170757023712,222,0 +170757023760,222,0 +170757023808,222,0 +170757023856,222,0 +170757023903,216,0 +170757023951,215,0 +170757023999,215,0 +170757024047,215,0 +170757024095,216,0 +170757024143,216,0 +170757024193,217,0 +170757024241,217,0 +170757024289,217,0 +170757024338,219,0 +170757024386,219,0 +170757024435,221,0 +170757024483,221,0 +170757024531,221,0 +170757024579,221,0 +170757024629,222,0 +170757024676,222,0 +170757024724,224,0 +170757024772,226,0 +170757024820,217,0 +170757024869,219,0 +170757024919,218,0 +170757024967,220,0 +170757025014,220,0 +170757025062,221,0 +170757025110,221,0 +170757025158,222,0 +170757025206,223,0 +170757025254,224,0 +170757025302,224,0 +170757025349,223,0 +170757025397,225,0 +170757025445,223,0 +170757025493,223,0 +170757025541,223,0 +170757025589,222,0 +170757025638,216,0 +170757025686,218,0 +170757025734,218,0 +170757025782,219,0 +170757025829,220,0 +170757025877,219,0 +170757025925,220,0 +170757025973,222,0 +170757026021,222,0 +170757026069,222,0 +170757026116,223,0 +170757026166,223,0 +170757026213,224,0 +170757026261,223,0 +170757026309,223,0 +170757026357,224,0 +170757026405,224,0 +170757026454,223,0 +170757026502,223,0 +170757026550,219,0 +170757026598,219,0 +170757026645,220,0 +170757026693,220,0 +170757026741,221,0 +170757026789,222,0 +170757026837,222,0 +170757026885,222,0 +170757026933,222,0 +170757026980,224,0 +170757027030,223,0 +170757027078,224,0 +170757027127,224,0 +170757027175,225,0 +170757027223,224,0 +170757027271,223,0 +170757027319,224,0 +170757027366,223,0 +170757027414,223,0 +170757027464,223,0 +170757027511,224,0 +170757027559,223,0 +170757027607,224,0 +170757027655,223,0 +170757027704,224,0 +170757027752,224,0 +170757027800,224,0 +170757027848,224,0 +170757027896,224,0 +170757027944,224,0 +170757027993,224,0 +170757028041,223,0 +170757028089,223,0 +170757028136,223,0 +170757028184,223,0 +170757028234,222,0 +170757028281,222,0 +170757028331,222,0 +170757028379,223,0 +170757028426,223,0 +170757028474,225,0 +170757028522,225,0 +170757028570,224,0 +170757028620,223,0 +170757028668,224,0 +170757028717,224,0 +170757028765,224,0 +170757028813,226,0 +170757028861,224,0 +170757028909,225,0 +170757028956,224,0 +170757029004,223,0 +170757029052,223,0 +170757029100,223,0 +170757029149,216,0 +170757029197,216,0 +170757029245,216,0 +170757029293,217,0 +170757029341,218,0 +170757029389,219,0 +170757029436,220,0 +170757029484,220,0 +170757029532,220,0 +170757029580,220,0 +170757029628,221,0 +170757029676,223,0 +170757029723,223,0 +170757029771,224,0 +170757029819,224,0 +170757029869,222,0 +170757029918,224,0 +170757029968,224,0 +170757030015,219,0 +170757030063,214,0 +170757030111,215,0 +170757030161,216,0 +170757030209,216,0 +170757030257,217,0 +170757030305,217,0 +170757030354,218,0 +170757030402,219,0 +170757030452,219,0 +170757030501,220,0 +170757030549,221,0 +170757030598,221,0 +170757030646,222,0 +170757030694,221,0 +170757030744,222,0 +170757030793,223,0 +170757030841,223,0 +170757030891,216,0 +170757030939,217,0 +170757030988,218,0 +170757031036,218,0 +170757031084,219,0 +170757031132,220,0 +170757031180,220,0 +170757031227,221,0 +170757031275,221,0 +170757031323,222,0 +170757031373,223,0 +170757031422,236,0 +170757031470,224,0 +170757031518,224,0 +170757031565,223,0 +170757031613,224,0 +170757031661,223,0 +170757031709,223,0 +170757031757,222,0 +170757031806,216,0 +170757031854,216,0 +170757031902,218,0 +170757031950,219,0 +170757031999,219,0 +170757032047,221,0 +170757032095,221,0 +170757032142,221,0 +170757032190,222,0 +170757032238,222,0 +170757032286,223,0 +170757032335,224,0 +170757032383,224,0 +170757032431,225,0 +170757032479,224,0 +170757032527,224,0 +170757032574,223,0 +170757032624,223,0 +170757032672,216,0 +170757032720,217,0 +170757032767,218,0 +170757032815,219,0 +170757032863,220,0 +170757032911,221,0 +170757032959,222,0 +170757033007,221,0 +170757033054,221,0 +170757033102,222,0 +170757033150,223,0 +170757033198,223,0 +170757033246,223,0 +170757033294,222,0 +170757033341,223,0 +170757033389,224,0 +170757033439,223,0 +170757033486,222,0 +170757033534,215,0 +170757033582,215,0 +170757033630,216,0 +170757033678,217,0 +170757033727,218,0 +170757033775,218,0 +170757033823,219,0 +170757033870,219,0 +170757033918,220,0 +170757033966,222,0 +170757034014,223,0 +170757034062,222,0 +170757034110,223,0 +170757034158,222,0 +170757034205,223,0 +170757034253,223,0 +170757034301,223,0 +170757034349,222,0 +170757034397,216,0 +170757034446,215,0 +170757034494,215,0 +170757034542,216,0 +170757034590,217,0 +170757034637,219,0 +170757034685,219,0 +170757034733,218,0 +170757034781,219,0 +170757034829,220,0 +170757034877,221,0 +170757034926,221,0 +170757034974,222,0 +170757035022,225,0 +170757035070,223,0 +170757035117,223,0 +170757035165,223,0 +170757035213,223,0 +170757035261,223,0 +170757035311,215,0 +170757035360,215,0 +170757035410,216,0 +170757035458,216,0 +170757035506,217,0 +170757035555,218,0 +170757035603,220,0 +170757035651,219,0 +170757035699,219,0 +170757035747,221,0 +170757035795,222,0 +170757035844,222,0 +170757035892,223,0 +170757035940,222,0 +170757035988,223,0 +170757036037,224,0 +170757036085,222,0 +170757036133,223,0 +170757036182,215,0 +170757036232,215,0 +170757036281,215,0 +170757036329,216,0 +170757036377,218,0 +170757036425,218,0 +170757036472,219,0 +170757036520,218,0 +170757036568,219,0 +170757036616,218,0 +170757036664,220,0 +170757036713,222,0 +170757036763,222,0 +170757036811,224,0 +170757036859,222,0 +170757036907,222,0 +170757036956,223,0 +170757037004,222,0 +170757037052,215,0 +170757037099,215,0 +170757037147,216,0 +170757037197,217,0 +170757037245,217,0 +170757037292,218,0 +170757037342,218,0 +170757037390,218,0 +170757037438,219,0 +170757037486,220,0 +170757037535,221,0 +170757037583,222,0 +170757037631,222,0 +170757037679,222,0 +170757037727,224,0 +170757037776,222,0 +170757037824,223,0 +170757037872,222,0 +170757037920,215,0 +170757037968,215,0 +170757038016,216,0 +170757038064,217,0 +170757038114,217,0 +170757038161,216,0 +170757038209,216,0 +170757038257,219,0 +170757038307,219,0 +170757038355,221,0 +170757038403,220,0 +170757038450,221,0 +170757038498,223,0 +170757038546,223,0 +170757038594,222,0 +170757038642,225,0 +170757038690,223,0 +170757038738,223,0 +170757038787,217,0 +170757038837,217,0 +170757038886,218,0 +170757038934,218,0 +170757038982,219,0 +170757039032,219,0 +170757039079,220,0 +170757039129,222,0 +170757039177,224,0 +170757039226,221,0 +170757039276,222,0 +170757039324,223,0 +170757039372,223,0 +170757039420,224,0 +170757039469,224,0 +170757039519,223,0 +170757039566,223,0 +170757039614,222,0 +170757039662,218,0 +170757039710,218,0 +170757039758,218,0 +170757039806,219,0 +170757039856,220,0 +170757039904,220,0 +170757039952,221,0 +170757040000,222,0 +170757040049,223,0 +170757040097,223,0 +170757040145,224,0 +170757040193,225,0 +170757040241,224,0 +170757040289,223,0 +170757040336,225,0 +170757040386,224,0 +170757040435,224,0 +170757040483,221,0 +170757040533,218,0 +170757040580,218,0 +170757040628,218,0 +170757040676,222,0 +170757040726,220,0 +170757040774,219,0 +170757040821,221,0 +170757040871,222,0 +170757040919,222,0 +170757040967,221,0 +170757041016,223,0 +170757041064,222,0 +170757041113,223,0 +170757041161,222,0 +170757041209,223,0 +170757041257,223,0 +170757041307,223,0 +170757041355,224,0 +170757041403,219,0 +170757041450,218,0 +170757041500,219,0 +170757041549,220,0 +170757041597,220,0 +170757041645,221,0 +170757041693,222,0 +170757041741,222,0 +170757041789,222,0 +170757041837,223,0 +170757041886,223,0 +170757041934,223,0 +170757041982,223,0 +170757042030,223,0 +170757042078,224,0 +170757042126,223,0 +170757042174,223,0 +170757042222,222,0 +170757042269,218,0 +170757042319,218,0 +170757042368,219,0 +170757042416,219,0 +170757042466,220,0 +170757042515,221,0 +170757042565,221,0 +170757042614,221,0 +170757042662,222,0 +170757042710,223,0 +170757042759,223,0 +170757042807,225,0 +170757042855,223,0 +170757042903,224,0 +170757042952,223,0 +170757043000,223,0 +170757043049,223,0 +170757043097,222,0 +170757043144,217,0 +170757043192,216,0 +170757043242,217,0 +170757043289,218,0 +170757043337,218,0 +170757043385,219,0 +170757043433,220,0 +170757043483,221,0 +170757043531,220,0 +170757043580,221,0 +170757043629,221,0 +170757043677,222,0 +170757043725,224,0 +170757043773,223,0 +170757043821,223,0 +170757043869,222,0 +170757043917,222,0 +170757043965,222,0 +170757044013,216,0 +170757044062,214,0 +170757044112,215,0 +170757044160,216,0 +170757044208,217,0 +170757044255,217,0 +170757044305,218,0 +170757044353,219,0 +170757044401,219,0 +170757044448,221,0 +170757044496,221,0 +170757044546,222,0 +170757044594,222,0 +170757044642,223,0 +170757044690,223,0 +170757044739,222,0 +170757044787,223,0 +170757044836,222,0 +170757044884,216,0 +170757044932,214,0 +170757044981,215,0 +170757045031,216,0 +170757045079,216,0 +170757045127,219,0 +170757045176,217,0 +170757045224,219,0 +170757045272,220,0 +170757045321,219,0 +170757045371,221,0 +170757045419,221,0 +170757045468,221,0 +170757045518,221,0 +170757045565,224,0 +170757045613,223,0 +170757045661,223,0 +170757045709,223,0 +170757045757,216,0 +170757045807,215,0 +170757045854,215,0 +170757045902,216,0 +170757045950,217,0 +170757045998,218,0 +170757046046,218,0 +170757046094,218,0 +170757046141,219,0 +170757046189,219,0 +170757046239,220,0 +170757046287,221,0 +170757046335,221,0 +170757046382,224,0 +170757046430,223,0 +170757046480,223,0 +170757046528,223,0 +170757046577,224,0 +170757046625,217,0 +170757046673,215,0 +170757046721,215,0 +170757046771,216,0 +170757046820,217,0 +170757046868,217,0 +170757046917,218,0 +170757046967,218,0 +170757047016,219,0 +170757047064,219,0 +170757047112,220,0 +170757047160,221,0 +170757047210,223,0 +170757047258,222,0 +170757047307,222,0 +170757047355,223,0 +170757047403,224,0 +170757047451,223,0 +170757047499,224,0 +170757047547,216,0 +170757047595,216,0 +170757047644,217,0 +170757047692,217,0 +170757047740,218,0 +170757047788,218,0 +170757047836,219,0 +170757047885,220,0 +170757047935,219,0 +170757047983,221,0 +170757048032,223,0 +170757048082,224,0 +170757048130,223,0 +170757048178,224,0 +170757048226,223,0 +170757048274,222,0 +170757048322,227,0 +170757048371,223,0 +170757048421,215,0 +170757048468,216,0 +170757048516,217,0 +170757048564,218,0 +170757048612,219,0 +170757048660,219,0 +170757048710,221,0 +170757048758,218,0 +170757048806,221,0 +170757048855,222,0 +170757048905,223,0 +170757048953,223,0 +170757049001,222,0 +170757049049,222,0 +170757049097,223,0 +170757049144,224,0 +170757049194,222,0 +170757049242,224,0 +170757049291,218,0 +170757049339,218,0 +170757049387,218,0 +170757049435,220,0 +170757049485,221,0 +170757049533,220,0 +170757049580,221,0 +170757049630,221,0 +170757049679,222,0 +170757049727,223,0 +170757049777,223,0 +170757049825,224,0 +170757049873,223,0 +170757049922,223,0 +170757049970,224,0 +170757050018,225,0 +170757050066,224,0 +170757050116,222,0 +170757050164,217,0 +170757050212,218,0 +170757050259,219,0 +170757050309,217,0 +170757050357,219,0 +170757050405,219,0 +170757050453,221,0 +170757050501,221,0 +170757050549,220,0 +170757050597,222,0 +170757050646,223,0 +170757050694,223,0 +170757050742,226,0 +170757050791,224,0 +170757050839,225,0 +170757050887,225,0 +170757050935,224,0 +170757050983,223,0 +170757051031,218,0 +170757051079,217,0 +170757051127,218,0 +170757051175,219,0 +170757051224,220,0 +170757051272,221,0 +170757051320,222,0 +170757051368,224,0 +170757051415,222,0 +170757051463,223,0 +170757051511,223,0 +170757051559,223,0 +170757051607,225,0 +170757051656,223,0 +170757051704,224,0 +170757051752,224,0 +170757051800,224,0 +170757051848,224,0 +170757051897,217,0 +170757051945,217,0 +170757051993,217,0 +170757052043,219,0 +170757052092,220,0 +170757052142,221,0 +170757052191,221,0 +170757052239,221,0 +170757052287,222,0 +170757052337,222,0 +170757052385,223,0 +170757052432,223,0 +170757052482,224,0 +170757052529,222,0 +170757052579,223,0 +170757052627,224,0 +170757052676,225,0 +170757052724,222,0 +170757052774,218,0 +170757052823,219,0 +170757052871,219,0 +170757052919,219,0 +170757052969,220,0 +170757053017,221,0 +170757053066,221,0 +170757053114,222,0 +170757053164,222,0 +170757053213,223,0 +170757053261,223,0 +170757053310,222,0 +170757053358,225,0 +170757053406,225,0 +170757053454,223,0 +170757053502,224,0 +170757053551,223,0 +170757053599,222,0 +170757053647,218,0 +170757053695,219,0 +170757053743,219,0 +170757053793,216,0 +170757053841,220,0 +170757053888,221,0 +170757053938,222,0 +170757053986,219,0 +170757054034,223,0 +170757054082,222,0 +170757054130,222,0 +170757054179,222,0 +170757054227,225,0 +170757054275,224,0 +170757054323,224,0 +170757054372,223,0 +170757054422,223,0 +170757054471,222,0 +170757054521,218,0 +170757054569,218,0 +170757054617,218,0 +170757054664,219,0 +170757054712,219,0 +170757054760,220,0 +170757054808,221,0 +170757054856,221,0 +170757054904,222,0 +170757054953,223,0 +170757055001,223,0 +170757055051,224,0 +170757055100,223,0 +170757055148,224,0 +170757055196,223,0 +170757055246,223,0 +170757055294,224,0 +170757055342,221,0 +170757055390,216,0 +170757055439,216,0 +170757055487,217,0 +170757055535,218,0 +170757055583,218,0 +170757055632,219,0 +170757055680,220,0 +170757055730,221,0 +170757055779,221,0 +170757055827,222,0 +170757055875,223,0 +170757055924,222,0 +170757055974,222,0 +170757056022,223,0 +170757056069,222,0 +170757056117,223,0 +170757056165,222,0 +170757056213,223,0 +170757056261,216,0 +170757056310,215,0 +170757056358,216,0 +170757056407,217,0 +170757056455,217,0 +170757056503,220,0 +170757056551,219,0 +170757056599,219,0 +170757056647,220,0 +170757056694,221,0 +170757056742,221,0 +170757056790,222,0 +170757056839,222,0 +170757056887,223,0 +170757056935,223,0 +170757056983,223,0 +170757057032,223,0 +170757057080,223,0 +170757057130,216,0 +170757057177,217,0 +170757057227,218,0 +170757057275,218,0 +170757057323,219,0 +170757057370,221,0 +170757057418,221,0 +170757057466,221,0 +170757057514,222,0 +170757057562,222,0 +170757057611,224,0 +170757057661,223,0 +170757057709,223,0 +170757057757,224,0 +170757057805,224,0 +170757057852,224,0 +170757057902,223,0 +170757057950,225,0 +170757057998,221,0 +170757058046,218,0 +170757058094,219,0 +170757058142,219,0 +170757058190,220,0 +170757058238,221,0 +170757058286,222,0 +170757058335,220,0 +170757058384,221,0 +170757058434,222,0 +170757058482,222,0 +170757058531,223,0 +170757058579,222,0 +170757058627,224,0 +170757058677,223,0 +170757058726,224,0 +170757058774,223,0 +170757058822,223,0 +170757058870,222,0 +170757058920,216,0 +170757058969,218,0 +170757059018,217,0 +170757059066,219,0 +170757059115,219,0 +170757059162,220,0 +170757059210,221,0 +170757059258,221,0 +170757059306,221,0 +170757059356,222,0 +170757059404,222,0 +170757059451,222,0 +170757059501,223,0 +170757059551,222,0 +170757059598,223,0 +170757059648,223,0 +170757059696,223,0 +170757059744,222,0 +170757059793,215,0 +170757059841,215,0 +170757059889,215,0 +170757059937,216,0 +170757059987,217,0 +170757060036,217,0 +170757060084,218,0 +170757060134,219,0 +170757060183,220,0 +170757060233,221,0 +170757060281,221,0 +170757060329,221,0 +170757060376,221,0 +170757060426,221,0 +170757060474,222,0 +170757060522,220,0 +170757060570,222,0 +170757060619,224,0 +170757060667,214,0 +170757060717,214,0 +170757060766,215,0 +170757060816,215,0 +170757060865,215,0 +170757060915,215,0 +170757060964,216,0 +170757061014,217,0 +170757061063,217,0 +170757061111,218,0 +170757061159,219,0 +170757061207,221,0 +170757061255,221,0 +170757061304,222,0 +170757061352,220,0 +170757061402,221,0 +170757061450,222,0 +170757061498,223,0 +170757061546,215,0 +170757061594,215,0 +170757061642,216,0 +170757061691,217,0 +170757061739,217,0 +170757061787,218,0 +170757061835,218,0 +170757061883,219,0 +170757061931,219,0 +170757061979,220,0 +170757062029,221,0 +170757062076,221,0 +170757062124,221,0 +170757062174,222,0 +170757062222,222,0 +170757062270,224,0 +170757062318,224,0 +170757062366,224,0 +170757062415,216,0 +170757062465,217,0 +170757062513,218,0 +170757062562,219,0 +170757062610,219,0 +170757062658,218,0 +170757062708,219,0 +170757062757,219,0 +170757062807,219,0 +170757062855,221,0 +170757062903,221,0 +170757062950,222,0 +170757063000,222,0 +170757063048,223,0 +170757063096,223,0 +170757063144,223,0 +170757063192,223,0 +170757063239,222,0 +170757063289,216,0 +170757063337,216,0 +170757063385,218,0 +170757063433,218,0 +170757063482,218,0 +170757063530,220,0 +170757063578,221,0 +170757063626,221,0 +170757063675,220,0 +170757063723,222,0 +170757063771,223,0 +170757063819,222,0 +170757063867,223,0 +170757063915,223,0 +170757063963,223,0 +170757064011,223,0 +170757064059,223,0 +170757064106,223,0 +170757064154,217,0 +170757064202,217,0 +170757064250,217,0 +170757064298,218,0 +170757064346,219,0 +170757064394,220,0 +170757064443,220,0 +170757064491,220,0 +170757064539,221,0 +170757064587,221,0 +170757064635,222,0 +170757064684,223,0 +170757064732,222,0 +170757064780,224,0 +170757064828,222,0 +170757064876,224,0 +170757064924,223,0 +170757064972,223,0 +170757065020,217,0 +170757065068,217,0 +170757065116,218,0 +170757065163,218,0 +170757065211,219,0 +170757065261,220,0 +170757065309,220,0 +170757065356,220,0 +170757065404,221,0 +170757065452,222,0 +170757065500,223,0 +170757065548,223,0 +170757065596,223,0 +170757065645,223,0 +170757065695,223,0 +170757065744,224,0 +170757065792,223,0 +170757065840,223,0 +170757065888,217,0 +170757065936,217,0 +170757065985,218,0 +170757066033,218,0 +170757066081,219,0 +170757066129,219,0 +170757066178,220,0 +170757066226,221,0 +170757066276,222,0 +170757066324,223,0 +170757066373,223,0 +170757066423,223,0 +170757066471,225,0 +170757066519,225,0 +170757066566,223,0 +170757066614,224,0 +170757066664,224,0 +170757066713,223,0 +170757066761,219,0 +170757066809,216,0 +170757066857,217,0 +170757066905,217,0 +170757066953,219,0 +170757067002,219,0 +170757067050,220,0 +170757067100,221,0 +170757067148,220,0 +170757067195,222,0 +170757067243,223,0 +170757067291,222,0 +170757067339,224,0 +170757067387,225,0 +170757067435,223,0 +170757067482,224,0 +170757067530,224,0 +170757067578,224,0 +170757067626,226,0 +170757067675,215,0 +170757067723,216,0 +170757067771,217,0 +170757067819,219,0 +170757067867,218,0 +170757067915,219,0 +170757067962,220,0 +170757068010,221,0 +170757068058,222,0 +170757068106,222,0 +170757068154,222,0 +170757068202,223,0 +170757068251,224,0 +170757068299,222,0 +170757068347,224,0 +170757068395,223,0 +170757068443,224,0 +170757068492,223,0 +170757068540,217,0 +170757068588,217,0 +170757068636,219,0 +170757068684,219,0 +170757068732,220,0 +170757068780,221,0 +170757068828,222,0 +170757068878,222,0 +170757068926,223,0 +170757068974,223,0 +170757069022,223,0 +170757069071,225,0 +170757069119,224,0 +170757069167,224,0 +170757069215,222,0 +170757069264,224,0 +170757069312,223,0 +170757069360,222,0 +170757069408,218,0 +170757069456,218,0 +170757069505,218,0 +170757069553,219,0 +170757069601,220,0 +170757069649,219,0 +170757069697,221,0 +170757069747,222,0 +170757069796,224,0 +170757069844,223,0 +170757069892,223,0 +170757069940,223,0 +170757069988,223,0 +170757070036,225,0 +170757070086,224,0 +170757070133,223,0 +170757070181,223,0 +170757070231,223,0 +170757070279,217,0 +170757070327,217,0 +170757070375,218,0 +170757070422,218,0 +170757070472,219,0 +170757070520,220,0 +170757070569,221,0 +170757070617,221,0 +170757070666,221,0 +170757070715,222,0 +170757070763,223,0 +170757070813,222,0 +170757070860,223,0 +170757070908,224,0 +170757070958,223,0 +170757071008,223,0 +170757071055,223,0 +170757071103,222,0 +170757071151,219,0 +170757071201,218,0 +170757071249,219,0 +170757071298,219,0 +170757071346,220,0 +170757071396,221,0 +170757071444,221,0 +170757071492,222,0 +170757071540,222,0 +170757071588,222,0 +170757071635,222,0 +170757071683,223,0 +170757071731,223,0 +170757071781,224,0 +170757071829,223,0 +170757071877,223,0 +170757071925,224,0 +170757071973,222,0 +170757072021,218,0 +170757072068,217,0 +170757072116,218,0 +170757072164,219,0 +170757072212,220,0 +170757072260,220,0 +170757072308,222,0 +170757072356,222,0 +170757072405,223,0 +170757072453,223,0 +170757072501,223,0 +170757072550,224,0 +170757072598,224,0 +170757072646,223,0 +170757072696,225,0 +170757072743,224,0 +170757072791,223,0 +170757072839,223,0 +170757072887,220,0 +170757072935,215,0 +170757072983,216,0 +170757073031,217,0 +170757073081,218,0 +170757073128,219,0 +170757073177,219,0 +170757073225,219,0 +170757073273,220,0 +170757073321,222,0 +170757073370,221,0 +170757073420,221,0 +170757073469,223,0 +170757073518,223,0 +170757073568,223,0 +170757073616,225,0 +170757073664,223,0 +170757073713,222,0 +170757073761,220,0 +170757073811,215,0 +170757073859,216,0 +170757073907,217,0 +170757073955,218,0 +170757074003,218,0 +170757074052,219,0 +170757074100,220,0 +170757074148,220,0 +170757074197,221,0 +170757074245,222,0 +170757074293,221,0 +170757074343,222,0 +170757074391,224,0 +170757074439,224,0 +170757074487,223,0 +170757074536,224,0 +170757074584,223,0 +170757074632,219,0 +170757074680,215,0 +170757074729,215,0 +170757074777,216,0 +170757074825,217,0 +170757074873,218,0 +170757074922,218,0 +170757074970,218,0 +170757075018,219,0 +170757075066,218,0 +170757075114,220,0 +170757075162,222,0 +170757075210,221,0 +170757075258,223,0 +170757075306,223,0 +170757075354,224,0 +170757075402,224,0 +170757075451,223,0 +170757075500,222,0 +170757075548,215,0 +170757075596,215,0 +170757075644,215,0 +170757075692,215,0 +170757075740,217,0 +170757075790,218,0 +170757075837,218,0 +170757075887,219,0 +170757075935,219,0 +170757075985,220,0 +170757076032,217,0 +170757076080,221,0 +170757076128,222,0 +170757076178,221,0 +170757076226,221,0 +170757076275,221,0 +170757076325,231,0 +170757076373,222,0 +170757076421,215,0 +170757076469,214,0 +170757076517,214,0 +170757076565,215,0 +170757076614,215,0 +170757076664,216,0 +170757076713,217,0 +170757076763,217,0 +170757076811,218,0 +170757076859,218,0 +170757076908,220,0 +170757076956,220,0 +170757077004,221,0 +170757077052,221,0 +170757077100,221,0 +170757077148,222,0 +170757077196,223,0 +170757077243,223,0 +170757077293,215,0 +170757077341,215,0 +170757077391,215,0 +170757077438,217,0 +170757077486,217,0 +170757077536,217,0 +170757077584,218,0 +170757077633,218,0 +170757077681,218,0 +170757077729,219,0 +170757077778,219,0 +170757077826,221,0 +170757077876,221,0 +170757077925,221,0 +170757077973,222,0 +170757078023,221,0 +170757078070,223,0 +170757078118,222,0 +170757078166,217,0 +170757078214,216,0 +170757078263,217,0 +170757078311,217,0 +170757078359,220,0 +170757078407,218,0 +170757078455,218,0 +170757078503,220,0 +170757078550,221,0 +170757078598,222,0 +170757078646,221,0 +170757078694,224,0 +170757078742,223,0 +170757078790,224,0 +170757078839,224,0 +170757078887,222,0 +170757078935,223,0 +170757078983,223,0 +170757079032,218,0 +170757079080,217,0 +170757079128,218,0 +170757079178,218,0 +170757079226,219,0 +170757079275,219,0 +170757079323,221,0 +170757079373,220,0 +170757079421,221,0 +170757079470,220,0 +170757079518,223,0 +170757079566,223,0 +170757079615,223,0 +170757079665,223,0 +170757079713,223,0 +170757079761,222,0 +170757079808,222,0 +170757079856,223,0 +170757079904,216,0 +170757079952,217,0 +170757080000,218,0 +170757080048,219,0 +170757080098,220,0 +170757080145,220,0 +170757080195,220,0 +170757080243,221,0 +170757080291,221,0 +170757080340,221,0 +170757080390,221,0 +170757080439,223,0 +170757080489,223,0 +170757080537,224,0 +170757080586,224,0 +170757080634,223,0 +170757080682,223,0 +170757080731,222,0 +170757080779,217,0 +170757080829,217,0 +170757080877,218,0 +170757080924,218,0 +170757080972,219,0 +170757081020,222,0 +170757081069,222,0 +170757081117,222,0 +170757081165,223,0 +170757081213,221,0 +170757081261,224,0 +170757081309,222,0 +170757081356,224,0 +170757081404,226,0 +170757081452,225,0 +170757081502,223,0 +170757081549,224,0 +170757081599,222,0 +170757081647,218,0 +170757081695,218,0 +170757081743,219,0 +170757081792,219,0 +170757081840,220,0 +170757081888,220,0 +170757081936,223,0 +170757081983,221,0 +170757082031,222,0 +170757082079,223,0 +170757082127,223,0 +170757082175,225,0 +170757082224,223,0 +170757082272,223,0 +170757082320,224,0 +170757082368,224,0 +170757082417,223,0 +170757082465,223,0 +170757082513,217,0 +170757082561,216,0 +170757082609,217,0 +170757082657,217,0 +170757082704,218,0 +170757082752,219,0 +170757082800,220,0 +170757082848,220,0 +170757082896,221,0 +170757082944,222,0 +170757082992,222,0 +170757083040,222,0 +170757083088,222,0 +170757083136,222,0 +170757083183,223,0 +170757083231,223,0 +170757083279,222,0 +170757083327,223,0 +170757083375,222,0 +170757083423,217,0 +170757083473,216,0 +170757083521,218,0 +170757083569,219,0 +170757083618,218,0 +170757083666,220,0 +170757083714,221,0 +170757083764,221,0 +170757083813,222,0 +170757083861,222,0 +170757083910,222,0 +170757083960,224,0 +170757084008,223,0 +170757084056,223,0 +170757084104,223,0 +170757084152,224,0 +170757084200,223,0 +170757084247,222,0 +170757084295,217,0 +170757084343,218,0 +170757084391,218,0 +170757084439,219,0 +170757084487,219,0 +170757084536,219,0 +170757084584,221,0 +170757084633,222,0 +170757084681,221,0 +170757084729,223,0 +170757084777,222,0 +170757084825,224,0 +170757084872,223,0 +170757084920,224,0 +170757084968,224,0 +170757085018,222,0 +170757085066,223,0 +170757085114,222,0 +170757085161,215,0 +170757085211,215,0 +170757085261,215,0 +170757085309,216,0 +170757085356,220,0 +170757085404,217,0 +170757085452,217,0 +170757085500,219,0 +170757085548,218,0 +170757085596,219,0 +170757085644,221,0 +170757085692,222,0 +170757085741,221,0 +170757085789,221,0 +170757085839,224,0 +170757085888,222,0 +170757085936,222,0 +170757085984,223,0 +170757086032,216,0 +170757086080,214,0 +170757086128,215,0 +170757086176,216,0 +170757086224,221,0 +170757086272,217,0 +170757086321,218,0 +170757086369,219,0 +170757086417,220,0 +170757086467,221,0 +170757086515,223,0 +170757086563,221,0 +170757086611,222,0 +170757086659,222,0 +170757086707,223,0 +170757086756,223,0 +170757086806,224,0 +170757086855,222,0 +170757086903,216,0 +170757086951,214,0 +170757086999,216,0 +170757087047,216,0 +170757087095,217,0 +170757087143,218,0 +170757087191,219,0 +170757087240,220,0 +170757087288,222,0 +170757087337,221,0 +170757087385,222,0 +170757087435,223,0 +170757087484,223,0 +170757087532,224,0 +170757087580,223,0 +170757087628,221,0 +170757087676,223,0 +170757087724,223,0 +170757087774,218,0 +170757087822,217,0 +170757087869,218,0 +170757087919,219,0 +170757087967,219,0 +170757088015,219,0 +170757088063,221,0 +170757088111,221,0 +170757088160,222,0 +170757088208,222,0 +170757088256,224,0 +170757088304,223,0 +170757088352,224,0 +170757088402,224,0 +170757088449,225,0 +170757088497,224,0 +170757088545,223,0 +170757088595,223,0 +170757088643,216,0 +170757088691,214,0 +170757088740,215,0 +170757088788,217,0 +170757088838,217,0 +170757088886,218,0 +170757088934,218,0 +170757088983,219,0 +170757089031,220,0 +170757089079,220,0 +170757089127,221,0 +170757089176,222,0 +170757089224,222,0 +170757089274,224,0 +170757089323,224,0 +170757089373,223,0 +170757089421,223,0 +170757089470,222,0 +170757089520,216,0 +170757089568,215,0 +170757089616,216,0 +170757089664,217,0 +170757089713,217,0 +170757089761,217,0 +170757089809,218,0 +170757089857,218,0 +170757089905,218,0 +170757089954,220,0 +170757090002,220,0 +170757090052,221,0 +170757090100,222,0 +170757090149,222,0 +170757090199,222,0 +170757090247,223,0 +170757090296,223,0 +170757090345,222,0 +170757090393,217,0 +170757090441,217,0 +170757090491,218,0 +170757090540,219,0 +170757090590,219,0 +170757090639,221,0 +170757090687,221,0 +170757090735,223,0 +170757090783,222,0 +170757090833,222,0 +170757090881,223,0 +170757090928,223,0 +170757090976,223,0 +170757091024,223,0 +170757091072,224,0 +170757091120,223,0 +170757091168,224,0 +170757091218,221,0 +170757091267,217,0 +170757091317,217,0 +170757091366,218,0 +170757091416,219,0 +170757091465,219,0 +170757091513,220,0 +170757091561,220,0 +170757091609,223,0 +170757091658,222,0 +170757091708,222,0 +170757091756,222,0 +170757091804,223,0 +170757091852,224,0 +170757091900,224,0 +170757091948,225,0 +170757091997,223,0 +170757092045,223,0 +170757092095,223,0 +170757092143,216,0 +170757092191,218,0 +170757092239,218,0 +170757092288,219,0 +170757092336,220,0 +170757092384,218,0 +170757092432,220,0 +170757092481,221,0 +170757092529,221,0 +170757092579,221,0 +170757092627,222,0 +170757092675,224,0 +170757092723,224,0 +170757092772,223,0 +170757092820,224,0 +170757092869,223,0 +170757092919,224,0 +170757092968,224,0 +170757093016,217,0 +170757093064,217,0 +170757093114,218,0 +170757093162,219,0 +170757093211,219,0 +170757093261,221,0 +170757093309,221,0 +170757093358,221,0 +170757093406,221,0 +170757093454,222,0 +170757093504,223,0 +170757093553,224,0 +170757093602,224,0 +170757093650,223,0 +170757093698,223,0 +170757093748,223,0 +170757093796,223,0 +170757093845,223,0 +170757093895,219,0 +170757093943,219,0 +170757093991,219,0 +170757094039,221,0 +170757094087,221,0 +170757094134,221,0 +170757094182,222,0 +170757094230,223,0 +170757094280,223,0 +170757094328,224,0 +170757094376,224,0 +170757094425,224,0 +170757094475,226,0 +170757094524,224,0 +170757094572,224,0 +170757094620,224,0 +170757094668,223,0 +170757094716,223,0 +170757094764,217,0 +170757094812,218,0 +170757094860,218,0 +170757094908,219,0 +170757094957,219,0 +170757095007,220,0 +170757095056,220,0 +170757095104,221,0 +170757095152,221,0 +170757095202,221,0 +170757095250,222,0 +170757095298,222,0 +170757095347,225,0 +170757095397,224,0 +170757095445,225,0 +170757095492,225,0 +170757095540,223,0 +170757095588,222,0 +170757095636,222,0 +170757095686,216,0 +170757095734,216,0 +170757095783,218,0 +170757095831,219,0 +170757095880,219,0 +170757095930,219,0 +170757095979,220,0 +170757096027,223,0 +170757096075,222,0 +170757096123,222,0 +170757096171,223,0 +170757096221,223,0 +170757096269,225,0 +170757096317,224,0 +170757096366,223,0 +170757096414,224,0 +170757096462,224,0 +170757096511,222,0 +170757096559,214,0 +170757096607,215,0 +170757096655,216,0 +170757096705,217,0 +170757096753,217,0 +170757096802,218,0 +170757096852,218,0 +170757096901,219,0 +170757096949,219,0 +170757096997,221,0 +170757097045,221,0 +170757097093,221,0 +170757097141,222,0 +170757097190,224,0 +170757097238,224,0 +170757097286,223,0 +170757097334,234,0 +170757097384,217,0 +170757097432,214,0 +170757097480,214,0 +170757097528,215,0 +170757097575,215,0 +170757097623,215,0 +170757097671,215,0 +170757097721,217,0 +170757097769,216,0 +170757097819,218,0 +170757097868,219,0 +170757097916,218,0 +170757097966,220,0 +170757098013,220,0 +170757098061,221,0 +170757098109,221,0 +170757098159,221,0 +170757098207,224,0 +170757098255,221,0 +170757098304,215,0 +170757098354,214,0 +170757098403,214,0 +170757098451,215,0 +170757098501,215,0 +170757098548,216,0 +170757098596,216,0 +170757098644,217,0 +170757098694,218,0 +170757098742,219,0 +170757098789,220,0 +170757098837,220,0 +170757098885,224,0 +170757098933,220,0 +170757098981,222,0 +170757099029,221,0 +170757099078,225,0 +170757099126,222,0 +170757099174,215,0 +170757099222,214,0 +170757099270,214,0 +170757099318,215,0 +170757099365,215,0 +170757099413,215,0 +170757099461,216,0 +170757099509,217,0 +170757099557,218,0 +170757099606,219,0 +170757099654,220,0 +170757099704,221,0 +170757099752,222,0 +170757099800,223,0 +170757099847,222,0 +170757099895,222,0 +170757099943,222,0 +170757099991,222,0 +170757100041,216,0 +170757100089,215,0 +170757100137,215,0 +170757100185,215,0 +170757100234,216,0 +170757100282,216,0 +170757100332,217,0 +170757100379,218,0 +170757100427,218,0 +170757100475,219,0 +170757100525,219,0 +170757100574,222,0 +170757100622,221,0 +170757100670,222,0 +170757100718,223,0 +170757100767,223,0 +170757100817,222,0 +170757100865,222,0 +170757100913,215,0 +170757100962,215,0 +170757101012,214,0 +170757101061,215,0 +170757101111,215,0 +170757101159,216,0 +170757101206,217,0 +170757101254,218,0 +170757101302,218,0 +170757101350,219,0 +170757101400,220,0 +170757101448,221,0 +170757101496,224,0 +170757101544,222,0 +170757101593,223,0 +170757101641,223,0 +170757101689,223,0 +170757101738,223,0 +170757101786,217,0 +170757101836,216,0 +170757101884,217,0 +170757101932,218,0 +170757101980,219,0 +170757102029,219,0 +170757102077,220,0 +170757102125,221,0 +170757102173,221,0 +170757102223,222,0 +170757102271,223,0 +170757102320,223,0 +170757102369,224,0 +170757102419,223,0 +170757102467,226,0 +170757102515,224,0 +170757102564,224,0 +170757102614,223,0 +170757102662,220,0 +170757102710,220,0 +170757102759,222,0 +170757102807,221,0 +170757102856,222,0 +170757102904,222,0 +170757102952,224,0 +170757103000,224,0 +170757103048,223,0 +170757103096,224,0 +170757103143,224,0 +170757103191,225,0 +170757103239,223,0 +170757103289,224,0 +170757103337,224,0 +170757103385,224,0 +170757103433,223,0 +170757103482,222,0 +170757103532,220,0 +170757103580,221,0 +170757103629,220,0 +170757103679,221,0 +170757103727,222,0 +170757103774,223,0 +170757103822,223,0 +170757103870,223,0 +170757103918,222,0 +170757103966,223,0 +170757104014,223,0 +170757104062,223,0 +170757104110,223,0 +170757104158,223,0 +170757104206,222,0 +170757104254,223,0 +170757104301,224,0 +170757104349,223,0 +170757104397,221,0 +170757104445,217,0 +170757104493,218,0 +170757104541,218,0 +170757104589,218,0 +170757104637,219,0 +170757104685,219,0 +170757104733,220,0 +170757104782,220,0 +170757104830,221,0 +170757104880,222,0 +170757104928,222,0 +170757104975,223,0 +170757105023,223,0 +170757105071,223,0 +170757105121,224,0 +170757105169,224,0 +170757105217,224,0 +170757105266,223,0 +170757105316,217,0 +170757105364,217,0 +170757105411,218,0 +170757105459,219,0 +170757105509,220,0 +170757105557,220,0 +170757105605,220,0 +170757105653,220,0 +170757105701,221,0 +170757105748,222,0 +170757105796,222,0 +170757105844,223,0 +170757105892,224,0 +170757105940,223,0 +170757105988,224,0 +170757106038,224,0 +170757106085,223,0 +170757106133,222,0 +170757106181,217,0 +170757106229,217,0 +170757106277,218,0 +170757106325,220,0 +170757106372,221,0 +170757106420,221,0 +170757106468,220,0 +170757106518,221,0 +170757106565,223,0 +170757106613,222,0 +170757106663,223,0 +170757106710,223,0 +170757106758,223,0 +170757106806,224,0 +170757106854,222,0 +170757106902,224,0 +170757106949,224,0 +170757106997,223,0 +170757107045,220,0 +170757107093,218,0 +170757107141,219,0 +170757107188,220,0 +170757107236,221,0 +170757107284,221,0 +170757107332,221,0 +170757107380,221,0 +170757107427,222,0 +170757107475,222,0 +170757107525,223,0 +170757107573,223,0 +170757107622,224,0 +170757107670,225,0 +170757107718,229,0 +170757107768,224,0 +170757107817,224,0 +170757107867,222,0 +170757107916,221,0 +170757107964,221,0 +170757108013,221,0 +170757108061,221,0 +170757108111,222,0 +170757108160,222,0 +170757108208,224,0 +170757108256,222,0 +170757108306,223,0 +170757108354,224,0 +170757108403,224,0 +170757108451,224,0 +170757108499,225,0 +170757108547,226,0 +170757108595,224,0 +170757108643,224,0 +170757108691,223,0 +170757108739,223,0 +170757108786,219,0 +170757108834,219,0 +170757108882,220,0 +170757108930,219,0 +170757108978,220,0 +170757109026,220,0 +170757109073,221,0 +170757109123,221,0 +170757109171,222,0 +170757109218,222,0 +170757109266,224,0 +170757109314,224,0 +170757109364,224,0 +170757109413,224,0 +170757109461,224,0 +170757109509,223,0 +170757109557,224,0 +170757109605,223,0 +170757109652,218,0 +170757109700,218,0 +170757109748,218,0 +170757109796,219,0 +170757109844,220,0 +170757109892,220,0 +170757109941,221,0 +170757109989,222,0 +170757110037,223,0 +170757110086,226,0 +170757110134,224,0 +170757110182,225,0 +170757110230,223,0 +170757110278,225,0 +170757110326,224,0 +170757110375,226,0 +170757110423,224,0 +170757110471,224,0 +170757110519,222,0 +170757110567,216,0 +170757110615,217,0 +170757110663,217,0 +170757110710,219,0 +170757110758,219,0 +170757110808,219,0 +170757110856,220,0 +170757110903,221,0 +170757110953,221,0 +170757111001,221,0 +170757111049,223,0 +170757111097,230,0 +170757111146,225,0 +170757111196,224,0 +170757111244,225,0 +170757111292,223,0 +170757111340,223,0 +170757111388,222,0 +170757111435,215,0 +170757111483,216,0 +170757111531,216,0 +170757111581,217,0 +170757111629,218,0 +170757111678,218,0 +170757111728,219,0 +170757111777,218,0 +170757111825,220,0 +170757111875,220,0 +170757111924,221,0 +170757111972,221,0 +170757112022,223,0 +170757112071,223,0 +170757112119,223,0 +170757112169,223,0 +170757112217,222,0 +170757112266,220,0 +170757112314,215,0 +170757112362,215,0 +170757112410,216,0 +170757112458,217,0 +170757112506,218,0 +170757112555,218,0 +170757112603,219,0 +170757112651,218,0 +170757112701,220,0 +170757112750,221,0 +170757112798,220,0 +170757112848,222,0 +170757112896,222,0 +170757112945,222,0 +170757112993,222,0 +170757113042,223,0 +170757113090,223,0 +170757113140,220,0 +170757113189,215,0 +170757113237,217,0 +170757113287,217,0 +170757113336,218,0 +170757113384,218,0 +170757113433,219,0 +170757113483,219,0 +170757113531,221,0 +170757113580,222,0 +170757113628,222,0 +170757113676,223,0 +170757113726,224,0 +170757113774,224,0 +170757113821,223,0 +170757113869,224,0 +170757113917,223,0 +170757113965,223,0 +170757114013,222,0 +170757114063,215,0 +170757114111,216,0 +170757114160,216,0 +170757114208,217,0 +170757114256,218,0 +170757114305,218,0 +170757114353,221,0 +170757114401,220,0 +170757114449,220,0 +170757114499,222,0 +170757114546,222,0 +170757114594,224,0 +170757114644,223,0 +170757114693,223,0 +170757114741,224,0 +170757114791,223,0 +170757114839,224,0 +170757114887,222,0 +170757114936,214,0 +170757114986,215,0 +170757115034,216,0 +170757115082,216,0 +170757115130,216,0 +170757115177,217,0 +170757115225,217,0 +170757115273,218,0 +170757115321,219,0 +170757115369,219,0 +170757115416,219,0 +170757115464,219,0 +170757115512,220,0 +170757115562,220,0 +170757115610,221,0 +170757115658,219,0 +170757115706,222,0 +170757115755,221,0 +170757115803,215,0 +170757115851,215,0 +170757115899,215,0 +170757115947,215,0 +170757115995,215,0 +170757116043,216,0 +170757116091,217,0 +170757116139,219,0 +170757116187,219,0 +170757116235,219,0 +170757116282,220,0 +170757116330,221,0 +170757116378,221,0 +170757116426,221,0 +170757116474,222,0 +170757116522,223,0 +170757116572,222,0 +170757116621,223,0 +170757116669,216,0 +170757116717,216,0 +170757116765,217,0 +170757116813,218,0 +170757116862,219,0 +170757116910,219,0 +170757116960,220,0 +170757117009,222,0 +170757117057,222,0 +170757117105,222,0 +170757117153,222,0 +170757117202,223,0 +170757117252,223,0 +170757117300,223,0 +170757117348,224,0 +170757117396,223,0 +170757117445,225,0 +170757117493,223,0 +170757117541,219,0 +170757117591,219,0 +170757117639,220,0 +170757117687,220,0 +170757117736,221,0 +170757117784,221,0 +170757117832,222,0 +170757117881,222,0 +170757117929,223,0 +170757117977,224,0 +170757118027,224,0 +170757118074,223,0 +170757118122,224,0 +170757118170,225,0 +170757118220,224,0 +170757118268,224,0 +170757118317,223,0 +170757118367,222,0 +170757118416,217,0 +170757118466,217,0 +170757118514,217,0 +170757118562,218,0 +170757118611,219,0 +170757118659,220,0 +170757118707,220,0 +170757118755,221,0 +170757118803,221,0 +170757118852,222,0 +170757118900,222,0 +170757118950,222,0 +170757118998,224,0 +170757119045,224,0 +170757119093,224,0 +170757119141,224,0 +170757119189,224,0 +170757119237,223,0 +170757119287,217,0 +170757119336,217,0 +170757119386,217,0 +170757119434,218,0 +170757119483,219,0 +170757119531,219,0 +170757119579,221,0 +170757119627,220,0 +170757119675,221,0 +170757119723,221,0 +170757119771,222,0 +170757119819,224,0 +170757119868,225,0 +170757119918,223,0 +170757119966,225,0 +170757120014,224,0 +170757120062,225,0 +170757120111,223,0 +170757120159,218,0 +170757120209,218,0 +170757120257,220,0 +170757120306,219,0 +170757120354,220,0 +170757120404,221,0 +170757120451,221,0 +170757120501,222,0 +170757120549,223,0 +170757120598,223,0 +170757120646,223,0 +170757120694,224,0 +170757120742,225,0 +170757120790,223,0 +170757120838,223,0 +170757120886,224,0 +170757120934,223,0 +170757120983,223,0 +170757121033,217,0 +170757121081,216,0 +170757121129,220,0 +170757121178,218,0 +170757121226,220,0 +170757121276,220,0 +170757121324,220,0 +170757121372,222,0 +170757121420,223,0 +170757121468,223,0 +170757121516,223,0 +170757121564,224,0 +170757121612,225,0 +170757121660,225,0 +170757121708,224,0 +170757121756,225,0 +170757121805,224,0 +170757121853,223,0 +170757121901,218,0 +170757121949,218,0 +170757121997,219,0 +170757122045,220,0 +170757122093,220,0 +170757122141,220,0 +170757122190,221,0 +170757122240,221,0 +170757122289,223,0 +170757122337,223,0 +170757122385,223,0 +170757122433,223,0 +170757122481,224,0 +170757122531,225,0 +170757122579,224,0 +170757122626,224,0 +170757122676,224,0 +170757122726,224,0 +170757122773,219,0 +170757122823,217,0 +170757122871,218,0 +170757122919,219,0 +170757122967,220,0 +170757123015,222,0 +170757123062,222,0 +170757123112,223,0 +170757123160,222,0 +170757123209,224,0 +170757123257,223,0 +170757123305,224,0 +170757123353,224,0 +170757123401,225,0 +170757123449,224,0 +170757123497,224,0 +170757123545,225,0 +170757123594,223,0 +170757123644,222,0 +170757123692,215,0 +170757123740,217,0 +170757123788,217,0 +170757123837,219,0 +170757123885,219,0 +170757123935,220,0 +170757123983,222,0 +170757124031,221,0 +170757124078,223,0 +170757124128,222,0 +170757124176,224,0 +170757124224,225,0 +170757124272,225,0 +170757124320,224,0 +170757124368,225,0 +170757124416,224,0 +170757124464,223,0 +170757124512,222,0 +170757124561,215,0 +170757124609,216,0 +170757124658,218,0 +170757124706,218,0 +170757124754,220,0 +170757124804,220,0 +170757124852,220,0 +170757124900,221,0 +170757124948,219,0 +170757124997,222,0 +170757125047,222,0 +170757125096,223,0 +170757125144,223,0 +170757125192,222,0 +170757125242,224,0 +170757125290,224,0 +170757125339,223,0 +170757125387,222,0 +170757125436,216,0 +170757125484,216,0 +170757125532,217,0 +170757125580,218,0 +170757125630,218,0 +170757125678,218,0 +170757125726,219,0 +170757125774,219,0 +170757125823,220,0 +170757125873,221,0 +170757125920,222,0 +170757125968,223,0 +170757126016,222,0 +170757126064,222,0 +170757126112,225,0 +170757126160,223,0 +170757126210,223,0 +170757126259,223,0 +170757126307,215,0 +170757126355,215,0 +170757126403,216,0 +170757126451,217,0 +170757126499,218,0 +170757126547,218,0 +170757126596,218,0 +170757126646,219,0 +170757126695,221,0 +170757126745,220,0 +170757126793,223,0 +170757126842,221,0 +170757126890,223,0 +170757126938,222,0 +170757126986,221,0 +170757127036,223,0 +170757127085,222,0 +170757127135,224,0 +170757127183,215,0 +170757127232,215,0 +170757127280,216,0 +170757127328,217,0 +170757127376,216,0 +170757127424,218,0 +170757127473,216,0 +170757127521,219,0 +170757127571,216,0 +170757127620,217,0 +170757127668,221,0 +170757127716,222,0 +170757127764,223,0 +170757127812,223,0 +170757127860,223,0 +170757127908,224,0 +170757127956,224,0 +170757128004,222,0 +170757128052,215,0 +170757128102,215,0 +170757128151,215,0 +170757128199,216,0 +170757128247,217,0 +170757128296,217,0 +170757128344,217,0 +170757128392,218,0 +170757128440,219,0 +170757128488,220,0 +170757128538,221,0 +170757128585,225,0 +170757128633,221,0 +170757128683,226,0 +170757128731,224,0 +170757128780,223,0 +170757128830,222,0 +170757128878,223,0 +170757128926,215,0 +170757128973,215,0 +170757129021,216,0 +170757129069,217,0 +170757129117,218,0 +170757129165,218,0 +170757129215,220,0 +170757129264,220,0 +170757129312,220,0 +170757129360,222,0 +170757129408,222,0 +170757129456,222,0 +170757129503,223,0 +170757129553,223,0 +170757129601,222,0 +170757129648,225,0 +170757129696,224,0 +170757129744,223,0 +170757129794,216,0 +170757129841,215,0 +170757129889,216,0 +170757129937,221,0 +170757129985,219,0 +170757130034,218,0 +170757130082,219,0 +170757130130,220,0 +170757130178,220,0 +170757130226,221,0 +170757130274,220,0 +170757130321,220,0 +170757130369,223,0 +170757130419,223,0 +170757130467,224,0 +170757130514,223,0 +170757130562,223,0 +170757130610,222,0 +170757130658,217,0 +170757130706,216,0 +170757130755,216,0 +170757130803,218,0 +170757130851,218,0 +170757130899,219,0 +170757130947,219,0 +170757130994,220,0 +170757131042,220,0 +170757131090,221,0 +170757131140,221,0 +170757131187,222,0 +170757131235,222,0 +170757131283,224,0 +170757131331,223,0 +170757131379,222,0 +170757131428,223,0 +170757131476,223,0 +170757131524,216,0 +170757131572,216,0 +170757131621,217,0 +170757131670,218,0 +170757131718,218,0 +170757131766,219,0 +170757131814,220,0 +170757131862,221,0 +170757131910,222,0 +170757131958,222,0 +170757132006,223,0 +170757132054,223,0 +170757132101,223,0 +170757132149,225,0 +170757132197,224,0 +170757132245,223,0 +170757132294,223,0 +170757132342,224,0 +170757132390,222,0 +170757132438,219,0 +170757132486,220,0 +170757132534,220,0 +170757132581,220,0 +170757132629,221,0 +170757132677,221,0 +170757132725,222,0 +170757132773,224,0 +170757132821,224,0 +170757132869,223,0 +170757132917,226,0 +170757132964,224,0 +170757133012,224,0 +170757133062,225,0 +170757133111,224,0 +170757133159,223,0 +170757133208,223,0 +170757133258,222,0 +170757133306,218,0 +170757133355,218,0 +170757133403,219,0 +170757133452,219,0 +170757133500,219,0 +170757133550,220,0 +170757133598,220,0 +170757133646,220,0 +170757133694,221,0 +170757133743,222,0 +170757133792,222,0 +170757133840,224,0 +170757133888,223,0 +170757133936,224,0 +170757133986,224,0 +170757134034,224,0 +170757134082,223,0 +170757134131,221,0 +170757134181,218,0 +170757134229,219,0 +170757134277,219,0 +170757134325,221,0 +170757134374,220,0 +170757134422,221,0 +170757134472,221,0 +170757134521,221,0 +170757134571,222,0 +170757134619,223,0 +170757134667,223,0 +170757134716,222,0 +170757134764,224,0 +170757134814,224,0 +170757134862,223,0 +170757134910,224,0 +170757134959,220,0 +170757135009,222,0 +170757135056,218,0 +170757135106,217,0 +170757135154,218,0 +170757135203,219,0 +170757135251,220,0 +170757135299,222,0 +170757135347,222,0 +170757135395,222,0 +170757135443,222,0 +170757135493,225,0 +170757135542,224,0 +170757135592,223,0 +170757135640,224,0 +170757135689,224,0 +170757135737,224,0 +170757135785,225,0 +170757135835,224,0 +170757135882,222,0 +170757135932,215,0 +170757135980,215,0 +170757136028,216,0 +170757136077,217,0 +170757136125,218,0 +170757136175,218,0 +170757136223,220,0 +170757136271,219,0 +170757136320,221,0 +170757136370,221,0 +170757136418,220,0 +170757136467,223,0 +170757136515,221,0 +170757136563,223,0 +170757136612,224,0 +170757136660,225,0 +170757136708,223,0 +170757136756,222,0 +170757136804,215,0 +170757136854,215,0 +170757136902,216,0 +170757136951,217,0 +170757136999,217,0 +170757137047,217,0 +170757137095,219,0 +170757137143,220,0 +170757137191,219,0 +170757137239,219,0 +170757137287,221,0 +170757137335,221,0 +170757137383,222,0 +170757137431,235,0 +170757137479,223,0 +170757137527,224,0 +170757137575,224,0 +170757137623,223,0 +170757137671,215,0 +170757137718,215,0 +170757137768,215,0 +170757137816,217,0 +170757137864,217,0 +170757137913,219,0 +170757137961,218,0 +170757138009,219,0 +170757138059,220,0 +170757138108,220,0 +170757138156,221,0 +170757138206,222,0 +170757138255,221,0 +170757138305,222,0 +170757138354,223,0 +170757138404,222,0 +170757138452,222,0 +170757138500,222,0 +170757138547,215,0 +170757138597,215,0 +170757138646,215,0 +170757138696,216,0 +170757138746,216,0 +170757138794,217,0 +170757138842,218,0 +170757138891,218,0 +170757138939,220,0 +170757138987,220,0 +170757139035,221,0 +170757139083,221,0 +170757139131,222,0 +170757139179,223,0 +170757139227,223,0 +170757139276,224,0 +170757139326,223,0 +170757139374,223,0 +170757139422,215,0 +170757139470,215,0 +170757139517,216,0 +170757139567,217,0 +170757139615,218,0 +170757139663,217,0 +170757139712,219,0 +170757139762,218,0 +170757139810,220,0 +170757139859,220,0 +170757139909,220,0 +170757139958,222,0 +170757140008,223,0 +170757140056,223,0 +170757140104,223,0 +170757140152,224,0 +170757140200,224,0 +170757140247,223,0 +170757140297,216,0 +170757140346,216,0 +170757140396,216,0 +170757140444,218,0 +170757140492,218,0 +170757140540,219,0 +170757140588,219,0 +170757140636,220,0 +170757140683,220,0 +170757140731,221,0 +170757140779,222,0 +170757140829,222,0 +170757140877,223,0 +170757140925,222,0 +170757140973,224,0 +170757141022,224,0 +170757141072,223,0 +170757141120,221,0 +170757141168,216,0 +170757141217,217,0 +170757141265,217,0 +170757141313,218,0 +170757141361,218,0 +170757141409,219,0 +170757141459,219,0 +170757141507,221,0 +170757141556,221,0 +170757141606,221,0 +170757141655,222,0 +170757141703,222,0 +170757141751,223,0 +170757141801,225,0 +170757141850,223,0 +170757141900,223,0 +170757141947,224,0 +170757141995,223,0 +170757142045,216,0 +170757142093,216,0 +170757142142,218,0 +170757142190,218,0 +170757142240,219,0 +170757142288,220,0 +170757142337,221,0 +170757142385,222,0 +170757142434,222,0 +170757142482,223,0 +170757142532,223,0 +170757142580,223,0 +170757142628,224,0 +170757142676,223,0 +170757142724,223,0 +170757142771,224,0 +170757142819,223,0 +170757142867,230,0 +170757142915,215,0 +170757142963,215,0 +170757143011,215,0 +170757143061,215,0 +170757143108,217,0 +170757143156,218,0 +170757143204,219,0 +170757143252,220,0 +170757143302,220,0 +170757143351,220,0 +170757143399,222,0 +170757143447,222,0 +170757143496,222,0 +170757143544,224,0 +170757143592,223,0 +170757143640,223,0 +170757143690,222,0 +170757143738,222,0 +170757143787,216,0 +170757143835,215,0 +170757143885,215,0 +170757143934,215,0 +170757143982,216,0 +170757144030,217,0 +170757144078,218,0 +170757144127,218,0 +170757144177,218,0 +170757144225,219,0 +170757144273,220,0 +170757144321,219,0 +170757144368,221,0 +170757144416,228,0 +170757144464,222,0 +170757144512,222,0 +170757144560,222,0 +170757144608,222,0 +170757144655,216,0 +170757144703,215,0 +170757144751,216,0 +170757144799,216,0 +170757144848,216,0 +170757144898,216,0 +170757144947,216,0 +170757144995,217,0 +170757145043,217,0 +170757145092,219,0 +170757145142,219,0 +170757145190,220,0 +170757145238,221,0 +170757145285,222,0 +170757145333,222,0 +170757145383,221,0 +170757145431,222,0 +170757145480,222,0 +170757145530,217,0 +170757145579,216,0 +170757145628,216,0 +170757145676,216,0 +170757145724,217,0 +170757145772,217,0 +170757145820,218,0 +170757145868,219,0 +170757145915,220,0 +170757145963,221,0 +170757146011,221,0 +170757146059,222,0 +170757146106,223,0 +170757146154,223,0 +170757146202,223,0 +170757146250,223,0 +170757146298,223,0 +170757146345,223,0 +170757146393,218,0 +170757146441,220,0 +170757146489,220,0 +170757146537,221,0 +170757146584,222,0 +170757146634,222,0 +170757146681,222,0 +170757146731,222,0 +170757146779,223,0 +170757146827,223,0 +170757146876,223,0 +170757146924,224,0 +170757146973,226,0 +170757147021,223,0 +170757147069,223,0 +170757147117,223,0 +170757147165,223,0 +170757147213,224,0 +170757147262,223,0 +170757147310,223,0 +170757147358,224,0 +170757147407,224,0 +170757147455,224,0 +170757147503,224,0 +170757147552,224,0 +170757147600,224,0 +170757147648,224,0 +170757147696,224,0 +170757147744,224,0 +170757147792,224,0 +170757147840,224,0 +170757147888,224,0 +170757147938,224,0 +170757147987,224,0 +170757148037,224,0 +170757148086,224,0 +170757148136,220,0 +170757148184,222,0 +170757148233,221,0 +170757148281,222,0 +170757148329,224,0 +170757148377,223,0 +170757148425,223,0 +170757148474,221,0 +170757148523,223,0 +170757148571,226,0 +170757148619,224,0 +170757148668,224,0 +170757148716,224,0 +170757148764,223,0 +170757148812,224,0 +170757148860,224,0 +170757148908,223,0 +170757148955,223,0 +170757149003,219,0 +170757149051,215,0 +170757149099,216,0 +170757149147,217,0 +170757149194,218,0 +170757149242,218,0 +170757149290,219,0 +170757149338,220,0 +170757149386,221,0 +170757149435,221,0 +170757149483,221,0 +170757149531,221,0 +170757149578,222,0 +170757149626,222,0 +170757149674,221,0 +170757149722,223,0 +170757149770,223,0 +170757149818,225,0 +170757149865,222,0 +170757149913,215,0 +170757149961,215,0 +170757150009,215,0 +170757150057,216,0 +170757150105,217,0 +170757150154,218,0 +170757150202,218,0 +170757150250,219,0 +170757150298,220,0 +170757150345,220,0 +170757150393,220,0 +170757150441,221,0 +170757150489,221,0 +170757150538,221,0 +170757150586,222,0 +170757150634,221,0 +170757150681,221,0 +170757150729,222,0 +170757150777,216,0 +170757150825,215,0 +170757150873,216,0 +170757150920,216,0 +170757150970,217,0 +170757151018,218,0 +170757151066,219,0 +170757151113,219,0 +170757151163,220,0 +170757151210,220,0 +170757151260,221,0 +170757151308,222,0 +170757151355,221,0 +170757151403,222,0 +170757151451,223,0 +170757151499,224,0 +170757151547,223,0 +170757151594,222,0 +170757151642,216,0 +170757151690,215,0 +170757151738,215,0 +170757151786,216,0 +170757151833,217,0 +170757151881,217,0 +170757151929,218,0 +170757151977,220,0 +170757152025,220,0 +170757152073,219,0 +170757152120,221,0 +170757152168,222,0 +170757152218,222,0 +170757152265,222,0 +170757152313,223,0 +170757152361,223,0 +170757152409,224,0 +170757152457,224,0 +170757152504,221,0 +170757152552,215,0 +170757152600,215,0 +170757152648,216,0 +170757152697,216,0 +170757152745,217,0 +170757152793,218,0 +170757152841,219,0 +170757152889,218,0 +170757152938,220,0 +170757152988,220,0 +170757153036,222,0 +170757153083,221,0 +170757153131,222,0 +170757153181,224,0 +170757153230,223,0 +170757153278,223,0 +170757153326,223,0 +170757153375,225,0 +170757153425,214,0 +170757153473,214,0 +170757153521,215,0 +170757153569,216,0 +170757153618,217,0 +170757153666,218,0 +170757153714,219,0 +170757153764,219,0 +170757153813,220,0 +170757153861,220,0 +170757153909,221,0 +170757153958,221,0 +170757154006,221,0 +170757154054,222,0 +170757154102,224,0 +170757154150,223,0 +170757154198,223,0 +170757154246,222,0 +170757154294,214,0 +170757154342,214,0 +170757154390,214,0 +170757154438,215,0 +170757154487,215,0 +170757154535,215,0 +170757154583,216,0 +170757154631,217,0 +170757154679,218,0 +170757154727,219,0 +170757154776,221,0 +170757154826,221,0 +170757154875,221,0 +170757154923,222,0 +170757154971,223,0 +170757155019,222,0 +170757155067,222,0 +170757155115,222,0 +170757155162,214,0 +170757155210,214,0 +170757155258,214,0 +170757155306,214,0 +170757155355,215,0 +170757155403,215,0 +170757155451,216,0 +170757155499,216,0 +170757155547,216,0 +170757155595,218,0 +170757155644,218,0 +170757155692,219,0 +170757155739,219,0 +170757155787,220,0 +170757155835,221,0 +170757155883,221,0 +170757155931,221,0 +170757155980,221,0 +170757156028,222,0 +170757156077,222,0 +170757156125,225,0 +170757156173,224,0 +170757156221,224,0 +170757156269,237,0 +170757156317,226,0 +170757156366,225,0 +170757156414,223,0 +170757156463,215,0 +170757156511,215,0 +170757156559,216,0 +170757156607,217,0 +170757156656,218,0 +170757156706,218,0 +170757156754,219,0 +170757156802,220,0 +170757156850,220,0 +170757156897,221,0 +170757156945,222,0 +170757156993,223,0 +170757157041,223,0 +170757157091,224,0 +170757157139,222,0 +170757157188,223,0 +170757157236,224,0 +170757157284,223,0 +170757157332,217,0 +170757157381,216,0 +170757157429,216,0 +170757157477,217,0 +170757157526,218,0 +170757157574,219,0 +170757157622,219,0 +170757157670,219,0 +170757157718,220,0 +170757157767,221,0 +170757157817,222,0 +170757157865,223,0 +170757157913,223,0 +170757157962,223,0 +170757158010,223,0 +170757158058,224,0 +170757158106,222,0 +170757158154,224,0 +170757158202,217,0 +170757158250,217,0 +170757158297,218,0 +170757158345,218,0 +170757158393,219,0 +170757158441,219,0 +170757158489,220,0 +170757158536,220,0 +170757158584,220,0 +170757158632,221,0 +170757158680,222,0 +170757158728,222,0 +170757158776,224,0 +170757158825,222,0 +170757158873,223,0 +170757158921,222,0 +170757158971,224,0 +170757159019,223,0 +170757159067,216,0 +170757159115,216,0 +170757159163,218,0 +170757159210,218,0 +170757159260,220,0 +170757159308,219,0 +170757159357,221,0 +170757159405,221,0 +170757159453,221,0 +170757159501,227,0 +170757159550,222,0 +170757159598,223,0 +170757159646,223,0 +170757159694,223,0 +170757159744,224,0 +170757159791,223,0 +170757159839,224,0 +170757159887,222,0 +170757159937,219,0 +170757159985,219,0 +170757160033,219,0 +170757160082,220,0 +170757160130,220,0 +170757160178,221,0 +170757160226,222,0 +170757160274,221,0 +170757160322,223,0 +170757160370,223,0 +170757160419,223,0 +170757160467,224,0 +170757160515,224,0 +170757160563,224,0 +170757160611,224,0 +170757160658,224,0 +170757160708,224,0 +170757160757,222,0 +170757160805,219,0 +170757160853,220,0 +170757160901,220,0 +170757160949,220,0 +170757160997,221,0 +170757161044,221,0 +170757161092,223,0 +170757161140,222,0 +170757161188,222,0 +170757161236,223,0 +170757161284,223,0 +170757161332,223,0 +170757161380,224,0 +170757161427,224,0 +170757161477,225,0 +170757161525,223,0 +170757161573,225,0 +170757161622,224,0 +170757161670,222,0 +170757161718,221,0 +170757161766,221,0 +170757161814,221,0 +170757161862,222,0 +170757161912,222,0 +170757161959,223,0 +170757162007,223,0 +170757162057,223,0 +170757162106,224,0 +170757162156,224,0 +170757162204,223,0 +170757162253,223,0 +170757162301,223,0 +170757162349,224,0 +170757162399,224,0 +170757162448,224,0 +170757162498,224,0 +170757162547,224,0 +170757162595,217,0 +170757162643,218,0 +170757162690,219,0 +170757162738,219,0 +170757162786,219,0 +170757162834,220,0 +170757162882,220,0 +170757162929,223,0 +170757162979,221,0 +170757163028,222,0 +170757163078,222,0 +170757163126,223,0 +170757163175,225,0 +170757163223,223,0 +170757163271,225,0 +170757163318,224,0 +170757163366,223,0 +170757163414,222,0 +170757163462,216,0 +170757163510,216,0 +170757163557,217,0 +170757163605,217,0 +170757163653,218,0 +170757163702,219,0 +170757163750,220,0 +170757163798,221,0 +170757163846,220,0 +170757163894,220,0 +170757163941,222,0 +170757163989,222,0 +170757164039,223,0 +170757164088,225,0 +170757164136,225,0 +170757164184,226,0 +170757164234,223,0 +170757164282,223,0 +170757164331,217,0 +170757164379,216,0 +170757164428,217,0 +170757164478,217,0 +170757164526,218,0 +170757164574,219,0 +170757164622,219,0 +170757164671,220,0 +170757164719,220,0 +170757164769,220,0 +170757164818,221,0 +170757164866,221,0 +170757164914,222,0 +170757164962,222,0 +170757165010,223,0 +170757165058,224,0 +170757165107,223,0 +170757165155,223,0 +170757165203,217,0 +170757165251,216,0 +170757165299,217,0 +170757165347,218,0 +170757165395,219,0 +170757165444,219,0 +170757165492,220,0 +170757165540,221,0 +170757165589,221,0 +170757165637,223,0 +170757165685,223,0 +170757165733,223,0 +170757165782,224,0 +170757165830,223,0 +170757165878,224,0 +170757165928,224,0 +170757165977,226,0 +170757166025,222,0 +170757166073,216,0 +170757166123,216,0 +170757166172,217,0 +170757166222,218,0 +170757166271,219,0 +170757166319,220,0 +170757166367,220,0 +170757166416,220,0 +170757166466,221,0 +170757166514,222,0 +170757166561,224,0 +170757166611,224,0 +170757166659,226,0 +170757166707,224,0 +170757166755,225,0 +170757166803,224,0 +170757166851,223,0 +170757166898,222,0 +170757166946,217,0 +170757166994,216,0 +170757167042,217,0 +170757167091,218,0 +170757167139,218,0 +170757167187,219,0 +170757167235,220,0 +170757167283,221,0 +170757167330,221,0 +170757167378,222,0 +170757167426,223,0 +170757167474,223,0 +170757167522,223,0 +170757167570,223,0 +170757167619,224,0 +170757167669,223,0 +170757167717,223,0 +170757167765,223,0 +170757167814,216,0 +170757167864,215,0 +170757167913,215,0 +170757167963,216,0 +170757168012,217,0 +170757168062,218,0 +170757168110,219,0 +170757168158,220,0 +170757168207,221,0 +170757168255,221,0 +170757168304,221,0 +170757168354,221,0 +170757168402,222,0 +170757168450,224,0 +170757168499,223,0 +170757168547,223,0 +170757168597,223,0 +170757168644,224,0 +170757168694,216,0 +170757168742,215,0 +170757168791,215,0 +170757168839,216,0 +170757168887,216,0 +170757168937,217,0 +170757168986,217,0 +170757169034,218,0 +170757169082,219,0 +170757169132,220,0 +170757169179,221,0 +170757169229,220,0 +170757169278,223,0 +170757169328,223,0 +170757169376,223,0 +170757169425,224,0 +170757169473,223,0 +170757169521,223,0 +170757169569,216,0 +170757169619,215,0 +170757169667,215,0 +170757169715,216,0 +170757169762,217,0 +170757169812,218,0 +170757169860,218,0 +170757169908,219,0 +170757169956,219,0 +170757170004,220,0 +170757170053,221,0 +170757170102,224,0 +170757170150,223,0 +170757170198,223,0 +170757170246,223,0 +170757170294,223,0 +170757170344,223,0 +170757170392,224,0 +170757170440,216,0 +170757170488,214,0 +170757170537,215,0 +170757170587,215,0 +170757170636,216,0 +170757170686,216,0 +170757170734,217,0 +170757170782,217,0 +170757170830,219,0 +170757170879,219,0 +170757170927,221,0 +170757170976,220,0 +170757171024,221,0 +170757171072,222,0 +170757171120,222,0 +170757171168,222,0 +170757171218,222,0 +170757171265,223,0 +170757171315,216,0 +170757171363,215,0 +170757171411,215,0 +170757171458,216,0 +170757171508,217,0 +170757171556,217,0 +170757171604,218,0 +170757171652,218,0 +170757171700,219,0 +170757171747,220,0 +170757171797,221,0 +170757171846,222,0 +170757171894,222,0 +170757171944,223,0 +170757171992,224,0 +170757172040,223,0 +170757172088,224,0 +170757172137,225,0 +170757172185,217,0 +170757172233,215,0 +170757172282,216,0 +170757172332,218,0 +170757172380,215,0 +170757172428,220,0 +170757172476,220,0 +170757172523,220,0 +170757172571,221,0 +170757172621,220,0 +170757172669,219,0 +170757172717,221,0 +170757172765,221,0 +170757172812,223,0 +170757172860,223,0 +170757172908,223,0 +170757172956,223,0 +170757173006,224,0 +170757173055,217,0 +170757173103,216,0 +170757173151,218,0 +170757173199,217,0 +170757173247,220,0 +170757173296,219,0 +170757173346,220,0 +170757173394,221,0 +170757173442,221,0 +170757173490,222,0 +170757173537,222,0 +170757173585,223,0 +170757173633,223,0 +170757173683,223,0 +170757173731,225,0 +170757173779,224,0 +170757173827,223,0 +170757173876,225,0 +170757173926,222,0 +170757173975,218,0 +170757174023,217,0 +170757174071,218,0 +170757174119,220,0 +170757174166,220,0 +170757174214,220,0 +170757174262,221,0 +170757174310,223,0 +170757174358,223,0 +170757174406,223,0 +170757174454,222,0 +170757174502,223,0 +170757174550,222,0 +170757174597,223,0 +170757174645,223,0 +170757174693,224,0 +170757174741,222,0 +170757174789,222,0 +170757174837,217,0 +170757174885,217,0 +170757174933,218,0 +170757174980,218,0 +170757175030,219,0 +170757175078,219,0 +170757175126,220,0 +170757175174,221,0 +170757175222,218,0 +170757175270,223,0 +170757175318,223,0 +170757175366,223,0 +170757175414,225,0 +170757175463,222,0 +170757175513,225,0 +170757175562,225,0 +170757175610,223,0 +170757175660,223,0 +170757175709,217,0 +170757175757,217,0 +170757175807,218,0 +170757175855,218,0 +170757175902,219,0 +170757175952,220,0 +170757176000,221,0 +170757176048,221,0 +170757176097,222,0 +170757176145,223,0 +170757176193,224,0 +170757176241,223,0 +170757176289,223,0 +170757176338,222,0 +170757176386,223,0 +170757176434,223,0 +170757176482,224,0 +170757176530,224,0 +170757176579,218,0 +170757176629,218,0 +170757176677,219,0 +170757176725,220,0 +170757176773,220,0 +170757176822,221,0 +170757176870,221,0 +170757176918,222,0 +170757176966,222,0 +170757177016,223,0 +170757177064,223,0 +170757177111,223,0 +170757177159,222,0 +170757177207,224,0 +170757177255,224,0 +170757177303,224,0 +170757177351,224,0 +170757177399,223,0 +170757177446,217,0 +170757177494,218,0 +170757177542,218,0 +170757177590,219,0 +170757177639,219,0 +170757177687,220,0 +170757177735,221,0 +170757177783,221,0 +170757177831,222,0 +170757177879,223,0 +170757177926,223,0 +170757177974,224,0 +170757178022,223,0 +170757178070,223,0 +170757178118,223,0 +170757178166,224,0 +170757178213,223,0 +170757178261,224,0 +170757178309,217,0 +170757178357,217,0 +170757178405,218,0 +170757178452,219,0 +170757178500,220,0 +170757178548,220,0 +170757178596,220,0 +170757178644,220,0 +170757178692,221,0 +170757178740,221,0 +170757178787,222,0 +170757178835,222,0 +170757178883,222,0 +170757178932,223,0 +170757178980,222,0 +170757179028,223,0 +170757179076,224,0 +170757179124,223,0 +170757179173,221,0 +170757179221,215,0 +170757179269,216,0 +170757179317,217,0 +170757179365,218,0 +170757179412,218,0 +170757179460,220,0 +170757179508,219,0 +170757179556,220,0 +170757179604,220,0 +170757179652,221,0 +170757179700,227,0 +170757179748,222,0 +170757179795,223,0 +170757179843,223,0 +170757179891,224,0 +170757179939,223,0 +170757179987,223,0 +170757180035,221,0 +170757180082,215,0 +170757180132,215,0 +170757180180,215,0 +170757180227,216,0 +170757180275,217,0 +170757180323,217,0 +170757180371,219,0 +170757180419,219,0 +170757180468,220,0 +170757180516,220,0 +170757180564,221,0 +170757180612,223,0 +170757180660,222,0 +170757180709,223,0 +170757180757,226,0 +170757180806,223,0 +170757180854,222,0 +170757180903,223,0 +170757180951,216,0 +170757180999,215,0 +170757181047,216,0 +170757181095,216,0 +170757181143,218,0 +170757181190,218,0 +170757181238,219,0 +170757181286,221,0 +170757181334,220,0 +170757181382,220,0 +170757181430,222,0 +170757181478,222,0 +170757181525,222,0 +170757181573,224,0 +170757181622,222,0 +170757181670,224,0 +170757181718,224,0 +170757181766,222,0 +170757181814,223,0 +170757181862,215,0 +170757181909,214,0 +170757181957,215,0 +170757182005,216,0 +170757182053,216,0 +170757182102,217,0 +170757182150,219,0 +170757182199,219,0 +170757182247,222,0 +170757182297,221,0 +170757182345,222,0 +170757182392,221,0 +170757182442,222,0 +170757182490,221,0 +170757182537,221,0 +170757182585,223,0 +170757182633,224,0 +170757182682,223,0 +170757182730,222,0 +170757182780,214,0 +170757182827,214,0 +170757182875,215,0 +170757182923,215,0 +170757182971,216,0 +170757183019,217,0 +170757183066,217,0 +170757183114,218,0 +170757183162,219,0 +170757183210,221,0 +170757183259,221,0 +170757183307,222,0 +170757183355,222,0 +170757183403,223,0 +170757183451,224,0 +170757183501,222,0 +170757183549,223,0 +170757183596,223,0 +170757183644,216,0 +170757183692,214,0 +170757183740,215,0 +170757183790,215,0 +170757183838,216,0 +170757183886,217,0 +170757183933,218,0 +170757183983,219,0 +170757184031,219,0 +170757184079,218,0 +170757184128,219,0 +170757184178,220,0 +170757184227,220,0 +170757184275,220,0 +170757184323,222,0 +170757184373,221,0 +170757184422,222,0 +170757184470,223,0 +170757184518,223,0 +170757184566,218,0 +170757184614,218,0 +170757184662,218,0 +170757184710,219,0 +170757184758,219,0 +170757184806,220,0 +170757184854,220,0 +170757184901,220,0 +170757184949,220,0 +170757184997,222,0 +170757185047,223,0 +170757185096,223,0 +170757185144,224,0 +170757185194,225,0 +170757185241,224,0 +170757185291,224,0 +170757185339,223,0 +170757185387,224,0 +170757185434,222,0 +170757185482,219,0 +170757185530,220,0 +170757185578,220,0 +170757185626,221,0 +170757185675,221,0 +170757185725,224,0 +170757185773,222,0 +170757185820,223,0 +170757185868,220,0 +170757185916,224,0 +170757185966,224,0 +170757186014,224,0 +170757186061,225,0 +170757186109,224,0 +170757186157,226,0 +170757186207,224,0 +170757186256,224,0 +170757186306,223,0 +170757186353,223,0 +170757186403,222,0 +170757186451,222,0 +170757186499,221,0 +170757186546,222,0 +170757186594,222,0 +170757186644,223,0 +170757186693,224,0 +170757186743,223,0 +170757186791,223,0 +170757186839,224,0 +170757186887,223,0 +170757186935,224,0 +170757186983,224,0 +170757187032,224,0 +170757187080,224,0 +170757187128,223,0 +170757187178,223,0 +170757187225,223,0 +170757187273,220,0 +170757187323,220,0 +170757187371,221,0 +170757187419,222,0 +170757187468,221,0 +170757187516,223,0 +170757187564,221,0 +170757187612,223,0 +170757187660,221,0 +170757187708,222,0 +170757187756,224,0 +170757187805,224,0 +170757187853,224,0 +170757187901,225,0 +170757187951,224,0 +170757187999,225,0 +170757188046,224,0 +170757188096,223,0 +170757188145,223,0 +170757188193,219,0 +170757188243,218,0 +170757188291,219,0 +170757188340,220,0 +170757188388,220,0 +170757188436,221,0 +170757188484,221,0 +170757188532,220,0 +170757188582,223,0 +170757188630,223,0 +170757188678,223,0 +170757188728,223,0 +170757188776,223,0 +170757188824,223,0 +170757188871,223,0 +170757188919,225,0 +170757188967,223,0 +170757189017,223,0 +170757189064,221,0 +170757189112,215,0 +170757189160,215,0 +170757189208,216,0 +170757189256,216,0 +170757189304,218,0 +170757189352,217,0 +170757189401,218,0 +170757189449,220,0 +170757189497,220,0 +170757189544,219,0 +170757189592,221,0 +170757189640,222,0 +170757189688,224,0 +170757189736,222,0 +170757189783,222,0 +170757189833,222,0 +170757189881,222,0 +170757189929,222,0 +170757189976,216,0 +170757190026,215,0 +170757190074,214,0 +170757190121,215,0 +170757190171,215,0 +170757190220,216,0 +170757190268,216,0 +170757190316,216,0 +170757190364,216,0 +170757190412,217,0 +170757190462,218,0 +170757190510,218,0 +170757190558,219,0 +170757190606,220,0 +170757190654,220,0 +170757190703,219,0 +170757190753,219,0 +170757190801,221,0 +170757190848,222,0 +170757190898,216,0 +170757190946,215,0 +170757190994,215,0 +170757191042,215,0 +170757191091,216,0 +170757191141,216,0 +170757191189,216,0 +170757191236,218,0 +170757191286,219,0 +170757191334,219,0 +170757191382,220,0 +170757191431,221,0 +170757191479,222,0 +170757191529,222,0 +170757191576,222,0 +170757191624,222,0 +170757191672,223,0 +170757191720,223,0 +170757191770,221,0 +170757191819,216,0 +170757191867,216,0 +170757191915,217,0 +170757191963,218,0 +170757192010,217,0 +170757192058,219,0 +170757192106,219,0 +170757192154,220,0 +170757192202,220,0 +170757192251,221,0 +170757192301,221,0 +170757192348,222,0 +170757192396,223,0 +170757192444,223,0 +170757192492,223,0 +170757192541,223,0 +170757192589,224,0 +170757192637,223,0 +170757192685,217,0 +170757192733,217,0 +170757192782,218,0 +170757192830,219,0 +170757192878,219,0 +170757192926,220,0 +170757192973,221,0 +170757193021,221,0 +170757193069,222,0 +170757193117,222,0 +170757193165,224,0 +170757193215,224,0 +170757193263,223,0 +170757193311,225,0 +170757193359,224,0 +170757193407,224,0 +170757193454,225,0 +170757193502,225,0 +170757193552,223,0 +170757193602,216,0 +170757193649,215,0 +170757193699,216,0 +170757193747,218,0 +170757193795,217,0 +170757193844,219,0 +170757193892,219,0 +170757193940,219,0 +170757193990,220,0 +170757194039,221,0 +170757194087,220,0 +170757194135,221,0 +170757194185,221,0 +170757194233,222,0 +170757194282,223,0 +170757194330,222,0 +170757194380,222,0 +170757194427,222,0 +170757194475,223,0 +170757194523,215,0 +170757194571,214,0 +170757194619,214,0 +170757194667,214,0 +170757194715,214,0 +170757194763,215,0 +170757194812,215,0 +170757194860,216,0 +170757194908,216,0 +170757194956,217,0 +170757195004,218,0 +170757195052,219,0 +170757195100,219,0 +170757195148,220,0 +170757195196,221,0 +170757195244,221,0 +170757195292,220,0 +170757195341,222,0 +170757195389,223,0 +170757195437,215,0 +170757195485,214,0 +170757195534,215,0 +170757195584,215,0 +170757195632,215,0 +170757195680,216,0 +170757195728,217,0 +170757195776,217,0 +170757195823,218,0 +170757195873,219,0 +170757195921,221,0 +170757195969,220,0 +170757196017,222,0 +170757196064,222,0 +170757196114,221,0 +170757196162,222,0 +170757196210,222,0 +170757196259,224,0 +170757196309,216,0 +170757196358,215,0 +170757196406,215,0 +170757196454,215,0 +170757196504,216,0 +170757196551,216,0 +170757196601,217,0 +170757196650,218,0 +170757196698,218,0 +170757196746,219,0 +170757196794,220,0 +170757196844,221,0 +170757196892,220,0 +170757196939,221,0 +170757196987,223,0 +170757197035,223,0 +170757197083,223,0 +170757197133,222,0 +170757197181,224,0 +170757197230,216,0 +170757197278,216,0 +170757197328,216,0 +170757197376,217,0 +170757197423,218,0 +170757197473,217,0 +170757197522,218,0 +170757197570,219,0 +170757197620,219,0 +170757197668,219,0 +170757197716,221,0 +170757197765,220,0 +170757197815,222,0 +170757197863,222,0 +170757197911,222,0 +170757197960,223,0 +170757198010,223,0 +170757198059,223,0 +170757198109,222,0 +170757198157,217,0 +170757198205,217,0 +170757198253,217,0 +170757198301,218,0 +170757198350,218,0 +170757198398,219,0 +170757198446,220,0 +170757198494,219,0 +170757198543,221,0 +170757198591,221,0 +170757198639,221,0 +170757198687,222,0 +170757198737,223,0 +170757198786,222,0 +170757198834,223,0 +170757198884,224,0 +170757198932,222,0 +170757198980,224,0 +170757199027,216,0 +170757199077,218,0 +170757199125,219,0 +170757199173,219,0 +170757199221,219,0 +170757199270,220,0 +170757199318,220,0 +170757199366,221,0 +170757199414,220,0 +170757199462,221,0 +170757199510,222,0 +170757199560,222,0 +170757199607,223,0 +170757199655,223,0 +170757199705,223,0 +170757199753,225,0 +170757199802,224,0 +170757199852,222,0 +170757199900,223,0 +170757199948,219,0 +170757199997,217,0 +170757200045,218,0 +170757200094,219,0 +170757200142,220,0 +170757200190,221,0 +170757200238,221,0 +170757200288,221,0 +170757200336,222,0 +170757200383,223,0 +170757200431,225,0 +170757200479,223,0 +170757200529,223,0 +170757200577,223,0 +170757200625,224,0 +170757200674,224,0 +170757200724,224,0 +170757200772,224,0 +170757200821,223,0 +170757200869,219,0 +170757200917,219,0 +170757200967,220,0 +170757201015,221,0 +170757201063,221,0 +170757201111,224,0 +170757201159,224,0 +170757201207,223,0 +170757201255,222,0 +170757201303,224,0 +170757201351,224,0 +170757201400,224,0 +170757201448,225,0 +170757201497,224,0 +170757201547,221,0 +170757201595,225,0 +170757201644,224,0 +170757201694,223,0 +170757201742,222,0 +170757201791,219,0 +170757201839,218,0 +170757201889,221,0 +170757201938,220,0 +170757201986,224,0 +170757202036,222,0 +170757202085,222,0 +170757202133,222,0 +170757202181,223,0 +170757202231,222,0 +170757202279,225,0 +170757202326,224,0 +170757202374,224,0 +170757202422,224,0 +170757202472,224,0 +170757202520,224,0 +170757202569,223,0 +170757202617,223,0 +170757202667,216,0 +170757202716,216,0 +170757202764,216,0 +170757202812,218,0 +170757202860,218,0 +170757202910,219,0 +170757202957,219,0 +170757203007,221,0 +170757203055,220,0 +170757203103,222,0 +170757203152,222,0 +170757203202,222,0 +170757203250,222,0 +170757203298,224,0 +170757203346,223,0 +170757203394,223,0 +170757203441,224,0 +170757203489,223,0 +170757203537,222,0 +170757203587,216,0 +170757203636,214,0 +170757203684,215,0 +170757203734,216,0 +170757203782,217,0 +170757203831,218,0 +170757203879,220,0 +170757203927,220,0 +170757203975,221,0 +170757204023,219,0 +170757204071,223,0 +170757204118,222,0 +170757204166,222,0 +170757204214,222,0 +170757204264,223,0 +170757204313,223,0 +170757204361,223,0 +170757204409,226,0 +170757204457,224,0 +170757204507,215,0 +170757204556,216,0 +170757204604,217,0 +170757204652,217,0 +170757204702,218,0 +170757204750,218,0 +170757204799,218,0 +170757204847,219,0 +170757204895,219,0 +170757204944,220,0 +170757204992,221,0 +170757205040,222,0 +170757205088,222,0 +170757205136,223,0 +170757205184,224,0 +170757205232,222,0 +170757205280,223,0 +170757205329,222,0 +170757205377,216,0 +170757205425,215,0 +170757205473,216,0 +170757205521,218,0 +170757205569,218,0 +170757205617,219,0 +170757205665,219,0 +170757205712,220,0 +170757205760,221,0 +170757205808,222,0 +170757205856,221,0 +170757205904,222,0 +170757205952,222,0 +170757206000,224,0 +170757206048,225,0 +170757206095,222,0 +170757206145,223,0 +170757206193,222,0 +170757206241,221,0 +170757206290,216,0 +170757206338,216,0 +170757206388,216,0 +170757206437,217,0 +170757206487,218,0 +170757206535,218,0 +170757206583,219,0 +170757206631,220,0 +170757206678,220,0 +170757206726,219,0 +170757206776,220,0 +170757206825,222,0 +170757206873,221,0 +170757206921,223,0 +170757206969,222,0 +170757207017,223,0 +170757207065,222,0 +170757207113,223,0 +170757207161,222,0 +170757207210,216,0 +170757207258,215,0 +170757207306,216,0 +170757207356,217,0 +170757207404,217,0 +170757207452,217,0 +170757207501,218,0 +170757207551,218,0 +170757207600,219,0 +170757207648,220,0 +170757207696,221,0 +170757207744,223,0 +170757207794,222,0 +170757207842,222,0 +170757207890,223,0 +170757207937,224,0 +170757207987,223,0 +170757208036,223,0 +170757208086,219,0 +170757208134,214,0 +170757208182,214,0 +170757208230,215,0 +170757208279,215,0 +170757208328,215,0 +170757208376,216,0 +170757208424,217,0 +170757208472,217,0 +170757208520,217,0 +170757208570,218,0 +170757208619,219,0 +170757208667,221,0 +170757208717,220,0 +170757208765,221,0 +170757208813,221,0 +170757208862,222,0 +170757208912,221,0 +170757208960,223,0 +170757209009,216,0 +170757209057,215,0 +170757209106,215,0 +170757209154,215,0 +170757209202,216,0 +170757209250,219,0 +170757209300,218,0 +170757209348,218,0 +170757209397,219,0 +170757209445,220,0 +170757209493,221,0 +170757209542,223,0 +170757209592,222,0 +170757209641,223,0 +170757209691,225,0 +170757209740,223,0 +170757209788,223,0 +170757209836,224,0 +170757209886,223,0 +170757209933,217,0 +170757209983,217,0 +170757210032,218,0 +170757210082,218,0 +170757210131,219,0 +170757210181,220,0 +170757210230,220,0 +170757210278,222,0 +170757210326,222,0 +170757210374,223,0 +170757210424,222,0 +170757210473,223,0 +170757210521,223,0 +170757210571,224,0 +170757210620,223,0 +170757210670,223,0 +170757210718,223,0 +170757210766,222,0 +170757210814,215,0 +170757210863,214,0 +170757210911,215,0 +170757210959,216,0 +170757211007,217,0 +170757211055,218,0 +170757211103,219,0 +170757211151,219,0 +170757211200,220,0 +170757211250,221,0 +170757211298,221,0 +170757211347,223,0 +170757211395,222,0 +170757211443,222,0 +170757211491,222,0 +170757211539,223,0 +170757211587,224,0 +170757211635,224,0 +170757211684,222,0 +170757211734,215,0 +170757211782,215,0 +170757211829,215,0 +170757211877,215,0 +170757211925,216,0 +170757211975,216,0 +170757212024,217,0 +170757212072,218,0 +170757212122,219,0 +170757212170,219,0 +170757212219,219,0 +170757212267,222,0 +170757212317,223,0 +170757212366,223,0 +170757212414,222,0 +170757212462,222,0 +170757212511,223,0 +170757212559,223,0 +170757212607,222,0 +170757212655,215,0 +170757212703,215,0 +170757212751,215,0 +170757212798,216,0 +170757212846,217,0 +170757212894,217,0 +170757212942,217,0 +170757212990,219,0 +170757213038,220,0 +170757213087,221,0 +170757213135,220,0 +170757213183,221,0 +170757213230,222,0 +170757213278,222,0 +170757213326,223,0 +170757213374,222,0 +170757213422,223,0 +170757213469,223,0 +170757213517,222,0 +170757213565,216,0 +170757213613,215,0 +170757213661,217,0 +170757213708,217,0 +170757213756,218,0 +170757213804,218,0 +170757213852,218,0 +170757213899,219,0 +170757213947,218,0 +170757213995,220,0 +170757214043,222,0 +170757214091,221,0 +170757214139,221,0 +170757214187,222,0 +170757214235,222,0 +170757214284,224,0 +170757214332,224,0 +170757214380,222,0 +170757214428,220,0 +170757214476,216,0 +170757214523,217,0 +170757214571,217,0 +170757214619,219,0 +170757214667,218,0 +170757214715,219,0 +170757214763,220,0 +170757214811,220,0 +170757214860,220,0 +170757214908,220,0 +170757214956,221,0 +170757215004,222,0 +170757215051,222,0 +170757215099,223,0 +170757215147,224,0 +170757215196,225,0 +170757215244,223,0 +170757215292,223,0 +170757215340,218,0 +170757215388,217,0 +170757215436,218,0 +170757215484,217,0 +170757215533,219,0 +170757215581,221,0 +170757215629,221,0 +170757215676,222,0 +170757215724,223,0 +170757215772,223,0 +170757215820,223,0 +170757215870,222,0 +170757215918,223,0 +170757215966,224,0 +170757216014,225,0 +170757216061,224,0 +170757216111,225,0 +170757216160,224,0 +170757216210,223,0 +170757216258,218,0 +170757216306,218,0 +170757216354,218,0 +170757216402,219,0 +170757216449,219,0 +170757216499,220,0 +170757216547,221,0 +170757216596,220,0 +170757216644,221,0 +170757216692,222,0 +170757216740,222,0 +170757216788,222,0 +170757216836,224,0 +170757216883,223,0 +170757216933,223,0 +170757216981,224,0 +170757217028,223,0 +170757217076,224,0 +170757217124,222,0 +170757217172,217,0 +170757217220,217,0 +170757217269,218,0 +170757217319,219,0 +170757217367,220,0 +170757217415,219,0 +170757217464,220,0 +170757217512,221,0 +170757217560,221,0 +170757217608,223,0 +170757217658,223,0 +170757217706,223,0 +170757217754,223,0 +170757217803,224,0 +170757217851,224,0 +170757217899,226,0 +170757217947,225,0 +170757217995,224,0 +170757218044,221,0 +170757218092,216,0 +170757218140,217,0 +170757218188,217,0 +170757218236,218,0 +170757218284,219,0 +170757218332,218,0 +170757218381,219,0 +170757218431,220,0 +170757218478,221,0 +170757218528,222,0 +170757218576,221,0 +170757218625,222,0 +170757218673,223,0 +170757218721,221,0 +170757218771,225,0 +170757218819,222,0 +170757218867,220,0 +170757218916,223,0 +170757218966,216,0 +170757219014,215,0 +170757219063,215,0 +170757219111,216,0 +170757219161,216,0 +170757219210,217,0 +170757219260,218,0 +170757219308,219,0 +170757219356,220,0 +170757219405,221,0 +170757219453,221,0 +170757219501,221,0 +170757219551,221,0 +170757219599,222,0 +170757219647,223,0 +170757219695,223,0 +170757219743,223,0 +170757219790,224,0 +170757219838,223,0 +170757219886,216,0 +170757219934,215,0 +170757219984,215,0 +170757220033,216,0 +170757220083,217,0 +170757220131,218,0 +170757220180,218,0 +170757220228,218,0 +170757220278,219,0 +170757220325,221,0 +170757220373,221,0 +170757220421,221,0 +170757220469,221,0 +170757220519,222,0 +170757220567,222,0 +170757220615,223,0 +170757220663,223,0 +170757220711,223,0 +170757220759,222,0 +170757220807,215,0 +170757220856,215,0 +170757220906,216,0 +170757220954,217,0 +170757221002,217,0 +170757221050,216,0 +170757221099,219,0 +170757221149,219,0 +170757221198,220,0 +170757221246,220,0 +170757221294,221,0 +170757221342,223,0 +170757221390,223,0 +170757221438,223,0 +170757221485,223,0 +170757221533,223,0 +170757221581,224,0 +170757221629,223,0 +170757221677,216,0 +170757221726,215,0 +170757221776,215,0 +170757221823,216,0 +170757221871,216,0 +170757221919,217,0 +170757221967,218,0 +170757222015,219,0 +170757222064,219,0 +170757222112,219,0 +170757222160,221,0 +170757222208,225,0 +170757222257,222,0 +170757222305,223,0 +170757222353,223,0 +170757222401,223,0 +170757222449,222,0 +170757222497,223,0 +170757222545,223,0 +170757222593,216,0 +170757222640,215,0 +170757222688,216,0 +170757222736,216,0 +170757222784,217,0 +170757222834,218,0 +170757222883,218,0 +170757222931,218,0 +170757222979,220,0 +170757223027,220,0 +170757223075,220,0 +170757223124,223,0 +170757223172,222,0 +170757223220,223,0 +170757223268,224,0 +170757223316,224,0 +170757223364,224,0 +170757223412,223,0 +170757223460,222,0 +170757223509,216,0 +170757223557,214,0 +170757223607,215,0 +170757223655,216,0 +170757223702,217,0 +170757223752,219,0 +170757223801,219,0 +170757223849,219,0 +170757223897,219,0 +170757223945,220,0 +170757223994,220,0 +170757224042,222,0 +170757224090,222,0 +170757224138,225,0 +170757224186,222,0 +170757224234,223,0 +170757224281,225,0 +170757224329,222,0 +170757224379,223,0 +170757224427,216,0 +170757224476,216,0 +170757224524,217,0 +170757224573,218,0 +170757224621,218,0 +170757224669,218,0 +170757224717,218,0 +170757224765,219,0 +170757224815,219,0 +170757224863,221,0 +170757224911,221,0 +170757224959,222,0 +170757225007,222,0 +170757225056,223,0 +170757225104,223,0 +170757225152,224,0 +170757225200,223,0 +170757225248,223,0 +170757225295,221,0 +170757225343,216,0 +170757225391,216,0 +170757225439,217,0 +170757225487,218,0 +170757225534,218,0 +170757225582,218,0 +170757225630,219,0 +170757225678,219,0 +170757225726,220,0 +170757225774,220,0 +170757225821,221,0 +170757225871,222,0 +170757225920,223,0 +170757225968,223,0 +170757226017,223,0 +170757226067,223,0 +170757226115,223,0 +170757226162,223,0 +170757226210,221,0 +170757226258,217,0 +170757226306,218,0 +170757226354,219,0 +170757226402,220,0 +170757226451,220,0 +170757226499,221,0 +170757226547,222,0 +170757226596,223,0 +170757226644,223,0 +170757226692,223,0 +170757226740,223,0 +170757226789,224,0 +170757226837,223,0 +170757226885,224,0 +170757226933,224,0 +170757226981,223,0 +170757227028,224,0 +170757227076,223,0 +170757227124,217,0 +170757227172,219,0 +170757227220,220,0 +170757227268,221,0 +170757227316,222,0 +170757227363,222,0 +170757227411,222,0 +170757227459,222,0 +170757227507,223,0 +170757227555,223,0 +170757227603,223,0 +170757227651,223,0 +170757227699,224,0 +170757227747,224,0 +170757227794,224,0 +170757227842,225,0 +170757227892,225,0 +170757227940,223,0 +170757227989,222,0 +170757228039,217,0 +170757228088,217,0 +170757228138,217,0 +170757228186,219,0 +170757228234,220,0 +170757228281,220,0 +170757228331,220,0 +170757228380,221,0 +170757228428,222,0 +170757228478,221,0 +170757228526,222,0 +170757228574,222,0 +170757228622,223,0 +170757228670,224,0 +170757228719,224,0 +170757228767,224,0 +170757228815,224,0 +170757228865,224,0 +170757228912,222,0 +170757228960,216,0 +170757229008,217,0 +170757229056,217,0 +170757229104,220,0 +170757229152,219,0 +170757229200,219,0 +170757229248,219,0 +170757229296,220,0 +170757229346,222,0 +170757229395,221,0 +170757229443,222,0 +170757229493,222,0 +170757229540,224,0 +170757229590,224,0 +170757229638,224,0 +170757229686,223,0 +170757229734,224,0 +170757229783,223,0 +170757229831,221,0 +170757229879,218,0 +170757229928,218,0 +170757229976,218,0 +170757230024,220,0 +170757230073,221,0 +170757230121,221,0 +170757230169,222,0 +170757230217,220,0 +170757230265,223,0 +170757230312,225,0 +170757230360,223,0 +170757230410,225,0 +170757230458,223,0 +170757230505,225,0 +170757230553,224,0 +170757230601,224,0 +170757230649,222,0 +170757230697,223,0 +170757230745,219,0 +170757230792,219,0 +170757230842,219,0 +170757230891,220,0 +170757230939,220,0 +170757230987,221,0 +170757231035,221,0 +170757231083,222,0 +170757231130,223,0 +170757231178,222,0 +170757231228,223,0 +170757231275,224,0 +170757231323,226,0 +170757231371,224,0 +170757231419,223,0 +170757231467,224,0 +170757231515,224,0 +170757231562,224,0 +170757231610,222,0 +170757231658,218,0 +170757231706,218,0 +170757231754,219,0 +170757231803,219,0 +170757231851,220,0 +170757231899,221,0 +170757231946,220,0 +170757231994,222,0 +170757232042,223,0 +170757232090,223,0 +170757232139,224,0 +170757232187,223,0 +170757232235,224,0 +170757232283,224,0 +170757232332,225,0 +170757232380,225,0 +170757232428,224,0 +170757232476,224,0 +170757232524,223,0 +170757232571,218,0 +170757232619,218,0 +170757232667,218,0 +170757232715,218,0 +170757232763,220,0 +170757232811,219,0 +170757232859,223,0 +170757232906,221,0 +170757232954,221,0 +170757233004,222,0 +170757233051,222,0 +170757233099,223,0 +170757233147,223,0 +170757233196,224,0 +170757233244,224,0 +170757233292,223,0 +170757233340,223,0 +170757233388,223,0 +170757233435,223,0 +170757233485,215,0 +170757233533,214,0 +170757233580,214,0 +170757233628,214,0 +170757233676,215,0 +170757233724,215,0 +170757233773,215,0 +170757233821,215,0 +170757233869,217,0 +170757233917,217,0 +170757233966,219,0 +170757234014,220,0 +170757234062,220,0 +170757234110,220,0 +170757234158,220,0 +170757234206,221,0 +170757234254,222,0 +170757234301,224,0 +170757234351,223,0 +170757234399,215,0 +170757234448,215,0 +170757234496,215,0 +170757234544,216,0 +170757234592,217,0 +170757234639,217,0 +170757234687,220,0 +170757234735,219,0 +170757234783,219,0 +170757234831,220,0 +170757234880,220,0 +170757234928,220,0 +170757234976,221,0 +170757235024,223,0 +170757235072,222,0 +170757235119,222,0 +170757235167,222,0 +170757235215,223,0 +170757235263,221,0 +170757235311,214,0 +170757235359,215,0 +170757235407,215,0 +170757235454,216,0 +170757235502,216,0 +170757235550,217,0 +170757235598,217,0 +170757235646,219,0 +170757235693,220,0 +170757235743,221,0 +170757235791,221,0 +170757235839,221,0 +170757235887,223,0 +170757235936,223,0 +170757235984,223,0 +170757236032,223,0 +170757236080,223,0 +170757236129,223,0 +170757236177,216,0 +170757236225,215,0 +170757236274,215,0 +170757236322,215,0 +170757236370,216,0 +170757236417,217,0 +170757236465,218,0 +170757236513,218,0 +170757236561,219,0 +170757236609,220,0 +170757236657,220,0 +170757236704,223,0 +170757236752,223,0 +170757236800,223,0 +170757236848,223,0 +170757236896,223,0 +170757236944,225,0 +170757236992,224,0 +170757237039,223,0 +170757237087,216,0 +170757237137,214,0 +170757237185,215,0 +170757237234,215,0 +170757237282,215,0 +170757237330,215,0 +170757237378,215,0 +170757237426,216,0 +170757237474,216,0 +170757237522,217,0 +170757237570,218,0 +170757237618,220,0 +170757237666,220,0 +170757237715,221,0 +170757237764,222,0 +170757237812,222,0 +170757237862,222,0 +170757237910,223,0 +170757237958,222,0 +170757238006,216,0 +170757238054,214,0 +170757238102,215,0 +170757238150,215,0 +170757238199,215,0 +170757238247,215,0 +170757238295,215,0 +170757238343,215,0 +170757238392,217,0 +170757238440,217,0 +170757238488,218,0 +170757238536,220,0 +170757238585,220,0 +170757238633,220,0 +170757238681,222,0 +170757238731,222,0 +170757238779,222,0 +170757238827,223,0 +170757238875,223,0 +170757238922,215,0 +170757238970,215,0 +170757239020,215,0 +170757239068,215,0 +170757239116,215,0 +170757239164,216,0 +170757239213,216,0 +170757239261,217,0 +170757239309,218,0 +170757239358,218,0 +170757239406,218,0 +170757239454,218,0 +170757239502,221,0 +170757239550,221,0 +170757239598,221,0 +170757239648,222,0 +170757239696,221,0 +170757239743,222,0 +170757239793,216,0 +170757239841,215,0 +170757239889,215,0 +170757239937,215,0 +170757239986,215,0 +170757240034,217,0 +170757240082,217,0 +170757240132,218,0 +170757240179,218,0 +170757240229,219,0 +170757240277,220,0 +170757240325,220,0 +170757240374,222,0 +170757240422,221,0 +170757240472,224,0 +170757240520,223,0 +170757240568,224,0 +170757240616,223,0 +170757240664,223,0 +170757240712,216,0 +170757240761,215,0 +170757240809,215,0 +170757240859,215,0 +170757240908,216,0 +170757240956,217,0 +170757241004,216,0 +170757241052,217,0 +170757241100,218,0 +170757241148,218,0 +170757241196,219,0 +170757241245,222,0 +170757241293,222,0 +170757241341,221,0 +170757241389,222,0 +170757241439,223,0 +170757241487,222,0 +170757241536,222,0 +170757241584,222,0 +170757241632,215,0 +170757241680,214,0 +170757241729,215,0 +170757241777,215,0 +170757241825,216,0 +170757241873,216,0 +170757241921,217,0 +170757241971,218,0 +170757242019,218,0 +170757242066,219,0 +170757242114,219,0 +170757242162,220,0 +170757242212,220,0 +170757242259,221,0 +170757242307,222,0 +170757242355,222,0 +170757242403,222,0 +170757242451,223,0 +170757242499,222,0 +170757242548,216,0 +170757242596,217,0 +170757242644,217,0 +170757242692,219,0 +170757242740,219,0 +170757242788,220,0 +170757242837,220,0 +170757242887,220,0 +170757242935,222,0 +170757242983,222,0 +170757243031,223,0 +170757243080,223,0 +170757243128,223,0 +170757243178,224,0 +170757243225,224,0 +170757243275,224,0 +170757243323,223,0 +170757243371,223,0 +170757243419,221,0 +170757243468,221,0 +170757243516,220,0 +170757243564,221,0 +170757243612,221,0 +170757243662,221,0 +170757243711,223,0 +170757243759,224,0 +170757243807,224,0 +170757243855,224,0 +170757243903,223,0 +170757243951,224,0 +170757243999,223,0 +170757244048,223,0 +170757244096,223,0 +170757244144,225,0 +170757244192,224,0 +170757244240,224,0 +170757244288,224,0 +170757244336,219,0 +170757244384,220,0 +170757244434,220,0 +170757244483,221,0 +170757244531,221,0 +170757244581,222,0 +170757244629,222,0 +170757244678,223,0 +170757244728,223,0 +170757244776,223,0 +170757244824,224,0 +170757244872,224,0 +170757244921,223,0 +170757244971,223,0 +170757245019,224,0 +170757245068,223,0 +170757245116,225,0 +170757245166,223,0 +170757245215,222,0 +170757245265,219,0 +170757245312,219,0 +170757245360,221,0 +170757245408,220,0 +170757245458,221,0 +170757245506,221,0 +170757245554,222,0 +170757245602,222,0 +170757245649,222,0 +170757245699,223,0 +170757245747,223,0 +170757245795,223,0 +170757245842,223,0 +170757245890,224,0 +170757245938,224,0 +170757245986,223,0 +170757246034,223,0 +170757246082,223,0 +170757246130,222,0 +170757246179,220,0 +170757246227,219,0 +170757246275,219,0 +170757246323,220,0 +170757246370,222,0 +170757246418,221,0 +170757246466,223,0 +170757246514,223,0 +170757246563,223,0 +170757246613,222,0 +170757246661,225,0 +170757246708,224,0 +170757246758,224,0 +170757246806,225,0 +170757246854,225,0 +170757246901,224,0 +170757246949,225,0 +170757246997,227,0 +170757247045,218,0 +170757247093,217,0 +170757247141,218,0 +170757247189,218,0 +170757247237,219,0 +170757247285,220,0 +170757247334,221,0 +170757247382,221,0 +170757247430,221,0 +170757247478,223,0 +170757247526,223,0 +170757247574,224,0 +170757247621,223,0 +170757247669,224,0 +170757247717,223,0 +170757247765,225,0 +170757247813,224,0 +170757247862,224,0 +170757247912,223,0 +170757247961,216,0 +170757248009,214,0 +170757248057,215,0 +170757248105,215,0 +170757248153,217,0 +170757248202,217,0 +170757248250,218,0 +170757248298,218,0 +170757248347,219,0 +170757248395,221,0 +170757248443,220,0 +170757248493,221,0 +170757248541,221,0 +170757248589,222,0 +170757248638,222,0 +170757248686,221,0 +170757248734,221,0 +170757248782,220,0 +170757248830,223,0 +170757248880,216,0 +170757248927,215,0 +170757248975,215,0 +170757249023,216,0 +170757249071,216,0 +170757249119,217,0 +170757249169,218,0 +170757249218,219,0 +170757249268,219,0 +170757249316,220,0 +170757249365,221,0 +170757249413,221,0 +170757249461,222,0 +170757249511,222,0 +170757249559,223,0 +170757249607,223,0 +170757249656,222,0 +170757249704,222,0 +170757249752,224,0 +170757249800,215,0 +170757249850,215,0 +170757249897,215,0 +170757249945,216,0 +170757249993,216,0 +170757250041,217,0 +170757250089,218,0 +170757250137,219,0 +170757250185,220,0 +170757250233,224,0 +170757250281,220,0 +170757250330,221,0 +170757250378,223,0 +170757250427,223,0 +170757250475,222,0 +170757250523,222,0 +170757250571,222,0 +170757250621,222,0 +170757250670,216,0 +170757250718,216,0 +170757250767,217,0 +170757250815,217,0 +170757250865,219,0 +170757250913,220,0 +170757250961,220,0 +170757251009,221,0 +170757251058,223,0 +170757251106,221,0 +170757251154,224,0 +170757251202,223,0 +170757251252,223,0 +170757251300,224,0 +170757251347,224,0 +170757251395,224,0 +170757251443,225,0 +170757251491,223,0 +170757251539,223,0 +170757251589,216,0 +170757251637,216,0 +170757251684,216,0 +170757251732,217,0 +170757251780,218,0 +170757251828,219,0 +170757251876,221,0 +170757251924,221,0 +170757251972,222,0 +170757252020,221,0 +170757252067,222,0 +170757252115,223,0 +170757252163,224,0 +170757252211,223,0 +170757252259,224,0 +170757252307,225,0 +170757252354,226,0 +170757252402,223,0 +170757252450,223,0 +170757252498,216,0 +170757252546,214,0 +170757252594,215,0 +170757252642,216,0 +170757252690,217,0 +170757252739,217,0 +170757252789,218,0 +170757252838,220,0 +170757252886,220,0 +170757252934,222,0 +170757252982,222,0 +170757253030,222,0 +170757253078,223,0 +170757253125,223,0 +170757253173,224,0 +170757253221,224,0 +170757253269,224,0 +170757253317,224,0 +170757253365,223,0 +170757253413,215,0 +170757253461,214,0 +170757253509,215,0 +170757253558,215,0 +170757253608,215,0 +170757253657,215,0 +170757253705,215,0 +170757253755,217,0 +170757253802,218,0 +170757253852,219,0 +170757253900,221,0 +170757253949,220,0 +170757253997,218,0 +170757254045,221,0 +170757254093,222,0 +170757254141,222,0 +170757254189,221,0 +170757254237,223,0 +170757254287,222,0 +170757254334,215,0 +170757254382,214,0 +170757254432,214,0 +170757254481,214,0 +170757254529,215,0 +170757254577,215,0 +170757254625,216,0 +170757254673,216,0 +170757254721,216,0 +170757254771,218,0 +170757254819,218,0 +170757254868,219,0 +170757254916,220,0 +170757254964,220,0 +170757255012,221,0 +170757255060,222,0 +170757255109,222,0 +170757255157,223,0 +170757255207,218,0 +170757255254,215,0 +170757255304,215,0 +170757255352,215,0 +170757255400,215,0 +170757255448,216,0 +170757255496,217,0 +170757255543,218,0 +170757255593,219,0 +170757255641,219,0 +170757255689,220,0 +170757255738,223,0 +170757255788,221,0 +170757255837,222,0 +170757255885,222,0 +170757255933,223,0 +170757255981,223,0 +170757256029,223,0 +170757256079,223,0 +170757256128,216,0 +170757256176,215,0 +170757256224,215,0 +170757256272,215,0 +170757256320,216,0 +170757256368,217,0 +170757256416,218,0 +170757256463,218,0 +170757256511,219,0 +170757256559,219,0 +170757256607,221,0 +170757256656,221,0 +170757256704,221,0 +170757256752,222,0 +170757256800,222,0 +170757256850,223,0 +170757256899,223,0 +170757256949,226,0 +170757256996,223,0 +170757257044,215,0 +170757257094,215,0 +170757257141,215,0 +170757257191,216,0 +170757257239,216,0 +170757257288,217,0 +170757257338,217,0 +170757257386,217,0 +170757257435,218,0 +170757257483,219,0 +170757257531,220,0 +170757257579,222,0 +170757257627,221,0 +170757257674,222,0 +170757257722,221,0 +170757257770,222,0 +170757257818,222,0 +170757257866,223,0 +170757257914,223,0 +170757257961,215,0 +170757258011,215,0 +170757258059,215,0 +170757258107,216,0 +170757258155,216,0 +170757258203,217,0 +170757258252,217,0 +170757258301,218,0 +170757258351,218,0 +170757258400,217,0 +170757258448,220,0 +170757258496,221,0 +170757258544,221,0 +170757258592,222,0 +170757258640,222,0 +170757258688,224,0 +170757258737,223,0 +170757258785,222,0 +170757258833,215,0 +170757258881,215,0 +170757258929,216,0 +170757258976,217,0 +170757259024,217,0 +170757259072,218,0 +170757259120,218,0 +170757259169,218,0 +170757259219,219,0 +170757259267,221,0 +170757259314,221,0 +170757259362,222,0 +170757259410,222,0 +170757259458,222,0 +170757259506,222,0 +170757259554,224,0 +170757259602,224,0 +170757259650,224,0 +170757259698,223,0 +170757259746,218,0 +170757259794,217,0 +170757259843,218,0 +170757259891,219,0 +170757259940,219,0 +170757259988,220,0 +170757260036,221,0 +170757260084,221,0 +170757260132,221,0 +170757260181,222,0 +170757260231,224,0 +170757260279,223,0 +170757260328,223,0 +170757260376,223,0 +170757260426,223,0 +170757260474,224,0 +170757260522,223,0 +170757260570,223,0 +170757260619,223,0 +170757260667,218,0 +170757260717,217,0 +170757260766,218,0 +170757260816,220,0 +170757260865,219,0 +170757260913,220,0 +170757260961,221,0 +170757261009,221,0 +170757261057,222,0 +170757261105,222,0 +170757261153,224,0 +170757261200,223,0 +170757261248,224,0 +170757261296,224,0 +170757261344,224,0 +170757261394,226,0 +170757261441,225,0 +170757261489,224,0 +170757261539,223,0 +170757261587,219,0 +170757261634,220,0 +170757261682,220,0 +170757261732,220,0 +170757261779,220,0 +170757261827,222,0 +170757261875,223,0 +170757261923,223,0 +170757261971,222,0 +170757262019,223,0 +170757262067,223,0 +170757262115,224,0 +170757262164,223,0 +170757262213,223,0 +170757262261,225,0 +170757262309,223,0 +170757262359,226,0 +170757262407,223,0 +170757262455,217,0 +170757262503,217,0 +170757262551,217,0 +170757262599,219,0 +170757262646,219,0 +170757262696,219,0 +170757262745,220,0 +170757262793,220,0 +170757262841,221,0 +170757262891,219,0 +170757262940,222,0 +170757262990,222,0 +170757263039,223,0 +170757263087,223,0 +170757263136,223,0 +170757263186,224,0 +170757263234,223,0 +170757263283,223,0 +170757263331,222,0 +170757263381,216,0 +170757263429,215,0 +170757263477,216,0 +170757263525,217,0 +170757263573,218,0 +170757263622,219,0 +170757263672,219,0 +170757263721,219,0 +170757263769,222,0 +170757263817,220,0 +170757263865,221,0 +170757263913,222,0 +170757263961,222,0 +170757264009,224,0 +170757264057,224,0 +170757264105,222,0 +170757264153,225,0 +170757264202,224,0 +170757264250,223,0 +170757264300,217,0 +170757264349,217,0 +170757264397,217,0 +170757264446,219,0 +170757264496,219,0 +170757264544,219,0 +170757264593,220,0 +170757264641,220,0 +170757264691,220,0 +170757264739,221,0 +170757264788,222,0 +170757264836,223,0 +170757264884,223,0 +170757264932,223,0 +170757264980,223,0 +170757265028,224,0 +170757265076,223,0 +170757265125,224,0 +170757265175,216,0 +170757265223,216,0 +170757265271,217,0 +170757265320,217,0 +170757265368,218,0 +170757265416,220,0 +170757265466,220,0 +170757265515,220,0 +170757265565,219,0 +170757265614,223,0 +170757265662,223,0 +170757265712,222,0 +170757265761,223,0 +170757265810,225,0 +170757265858,223,0 +170757265906,224,0 +170757265956,225,0 +170757266004,224,0 +170757266052,222,0 +170757266099,217,0 +170757266147,216,0 +170757266195,217,0 +170757266243,218,0 +170757266291,219,0 +170757266339,219,0 +170757266388,220,0 +170757266438,221,0 +170757266487,221,0 +170757266535,221,0 +170757266585,221,0 +170757266633,223,0 +170757266681,223,0 +170757266730,225,0 +170757266778,223,0 +170757266827,224,0 +170757266875,224,0 +170757266925,224,0 +170757266973,222,0 +170757267022,215,0 +170757267070,215,0 +170757267120,216,0 +170757267169,217,0 +170757267217,218,0 +170757267265,219,0 +170757267313,219,0 +170757267361,219,0 +170757267409,221,0 +170757267457,221,0 +170757267507,221,0 +170757267556,222,0 +170757267604,223,0 +170757267652,224,0 +170757267700,223,0 +170757267748,223,0 +170757267798,224,0 +170757267846,223,0 +170757267893,216,0 +170757267941,215,0 +170757267989,215,0 +170757268037,216,0 +170757268085,217,0 +170757268135,217,0 +170757268183,217,0 +170757268232,218,0 +170757268282,223,0 +170757268331,220,0 +170757268379,220,0 +170757268427,221,0 +170757268476,223,0 +170757268524,223,0 +170757268572,222,0 +170757268620,223,0 +170757268668,222,0 +170757268716,222,0 +170757268766,223,0 +170757268814,215,0 +170757268862,214,0 +170757268910,214,0 +170757268958,215,0 +170757269007,215,0 +170757269055,215,0 +170757269103,215,0 +170757269150,216,0 +170757269198,215,0 +170757269248,216,0 +170757269296,217,0 +170757269344,219,0 +170757269393,220,0 +170757269441,220,0 +170757269489,220,0 +170757269539,221,0 +170757269588,221,0 +170757269636,222,0 +170757269684,223,0 +170757269732,215,0 +170757269780,214,0 +170757269828,215,0 +170757269877,216,0 +170757269925,216,0 +170757269973,218,0 +170757270021,218,0 +170757270069,218,0 +170757270118,219,0 +170757270168,219,0 +170757270216,221,0 +170757270264,221,0 +170757270312,221,0 +170757270359,222,0 +170757270407,223,0 +170757270455,223,0 +170757270504,224,0 +170757270554,224,0 +170757270602,222,0 +170757270650,214,0 +170757270699,214,0 +170757270747,215,0 +170757270796,216,0 +170757270846,216,0 +170757270894,217,0 +170757270942,218,0 +170757270989,218,0 +170757271039,219,0 +170757271087,219,0 +170757271135,220,0 +170757271183,221,0 +170757271232,222,0 +170757271282,222,0 +170757271329,222,0 +170757271377,223,0 +170757271425,223,0 +170757271473,223,0 +170757271521,216,0 +170757271569,215,0 +170757271617,216,0 +170757271664,217,0 +170757271712,217,0 +170757271762,219,0 +170757271811,218,0 +170757271859,219,0 +170757271908,219,0 +170757271958,220,0 +170757272006,220,0 +170757272055,223,0 +170757272105,220,0 +170757272154,221,0 +170757272204,222,0 +170757272252,223,0 +170757272300,223,0 +170757272348,223,0 +170757272396,222,0 +170757272443,216,0 +170757272493,216,0 +170757272541,217,0 +170757272589,217,0 +170757272636,218,0 +170757272684,219,0 +170757272732,219,0 +170757272780,219,0 +170757272828,221,0 +170757272876,221,0 +170757272923,222,0 +170757272971,228,0 +170757273019,223,0 +170757273067,224,0 +170757273115,224,0 +170757273163,226,0 +170757273211,223,0 +170757273258,223,0 +170757273306,222,0 +170757273354,216,0 +170757273402,217,0 +170757273450,218,0 +170757273499,218,0 +170757273549,218,0 +170757273598,219,0 +170757273646,220,0 +170757273696,221,0 +170757273743,222,0 +170757273791,221,0 +170757273839,222,0 +170757273889,221,0 +170757273938,224,0 +170757273986,225,0 +170757274034,223,0 +170757274082,225,0 +170757274130,224,0 +170757274178,223,0 +170757274228,222,0 +170757274276,217,0 +170757274324,218,0 +170757274373,218,0 +170757274421,219,0 +170757274469,219,0 +170757274517,220,0 +170757274565,220,0 +170757274612,224,0 +170757274660,223,0 +170757274708,223,0 +170757274756,222,0 +170757274804,223,0 +170757274852,223,0 +170757274900,224,0 +170757274948,222,0 +170757274996,223,0 +170757275044,223,0 +170757275092,222,0 +170757275139,217,0 +170757275187,217,0 +170757275235,218,0 +170757275283,218,0 +170757275332,218,0 +170757275380,219,0 +170757275428,220,0 +170757275478,220,0 +170757275527,221,0 +170757275575,223,0 +170757275623,224,0 +170757275671,225,0 +170757275720,223,0 +170757275768,224,0 +170757275816,223,0 +170757275864,224,0 +170757275912,224,0 +170757275959,223,0 +170757276007,222,0 +170757276055,219,0 +170757276103,219,0 +170757276151,220,0 +170757276199,220,0 +170757276246,220,0 +170757276294,221,0 +170757276342,223,0 +170757276390,222,0 +170757276438,222,0 +170757276486,223,0 +170757276534,224,0 +170757276582,224,0 +170757276631,223,0 +170757276679,224,0 +170757276728,224,0 +170757276776,224,0 +170757276826,222,0 +170757276874,223,0 +170757276923,224,0 +170757276971,219,0 +170757277019,219,0 +170757277068,219,0 +170757277118,220,0 +170757277168,221,0 +170757277215,222,0 +170757277263,221,0 +170757277311,223,0 +170757277359,223,0 +170757277409,223,0 +170757277457,223,0 +170757277505,223,0 +170757277553,224,0 +170757277602,223,0 +170757277650,223,0 +170757277698,223,0 +170757277747,223,0 +170757277795,223,0 +170757277843,222,0 +170757277893,215,0 +170757277941,215,0 +170757277989,215,0 +170757278037,217,0 +170757278086,218,0 +170757278136,218,0 +170757278185,219,0 +170757278235,219,0 +170757278284,220,0 +170757278334,220,0 +170757278382,221,0 +170757278430,220,0 +170757278477,221,0 +170757278527,223,0 +170757278576,222,0 +170757278624,224,0 +170757278672,222,0 +170757278720,222,0 +170757278768,216,0 +170757278816,215,0 +170757278864,215,0 +170757278912,216,0 +170757278962,216,0 +170757279011,217,0 +170757279059,218,0 +170757279107,218,0 +170757279155,218,0 +170757279203,219,0 +170757279251,220,0 +170757279298,220,0 +170757279346,221,0 +170757279394,222,0 +170757279442,222,0 +170757279490,224,0 +170757279538,222,0 +170757279586,222,0 +170757279634,225,0 +170757279683,215,0 +170757279733,214,0 +170757279781,216,0 +170757279830,217,0 +170757279878,217,0 +170757279926,217,0 +170757279974,218,0 +170757280024,218,0 +170757280072,219,0 +170757280121,220,0 +170757280169,221,0 +170757280218,221,0 +170757280266,222,0 +170757280314,223,0 +170757280362,223,0 +170757280412,223,0 +170757280460,223,0 +170757280508,223,0 +170757280556,223,0 +170757280604,216,0 +170757280653,215,0 +170757280703,216,0 +170757280751,217,0 +170757280799,217,0 +170757280847,217,0 +170757280895,218,0 +170757280942,219,0 +170757280990,220,0 +170757281040,220,0 +170757281088,221,0 +170757281136,221,0 +170757281185,222,0 +170757281233,223,0 +170757281283,224,0 +170757281332,224,0 +170757281382,224,0 +170757281430,223,0 +170757281479,216,0 +170757281527,214,0 +170757281577,215,0 +170757281626,216,0 +170757281674,217,0 +170757281722,217,0 +170757281770,217,0 +170757281820,218,0 +170757281867,218,0 +170757281915,220,0 +170757281963,220,0 +170757282013,221,0 +170757282062,220,0 +170757282110,222,0 +170757282158,222,0 +170757282208,221,0 +170757282256,220,0 +170757282304,224,0 +170757282353,222,0 +170757282401,216,0 +170757282449,214,0 +170757282497,215,0 +170757282547,215,0 +170757282595,216,0 +170757282644,216,0 +170757282692,217,0 +170757282740,218,0 +170757282788,218,0 +170757282836,219,0 +170757282884,220,0 +170757282932,220,0 +170757282980,221,0 +170757283028,221,0 +170757283076,222,0 +170757283124,223,0 +170757283172,222,0 +170757283220,222,0 +170757283268,224,0 +170757283317,215,0 +170757283365,214,0 +170757283413,214,0 +170757283461,215,0 +170757283511,215,0 +170757283560,215,0 +170757283608,215,0 +170757283656,216,0 +170757283704,217,0 +170757283753,218,0 +170757283801,219,0 +170757283851,219,0 +170757283899,221,0 +170757283947,221,0 +170757283996,221,0 +170757284046,222,0 +170757284095,221,0 +170757284143,223,0 +170757284191,222,0 +170757284239,214,0 +170757284287,215,0 +170757284335,215,0 +170757284384,215,0 +170757284434,216,0 +170757284482,217,0 +170757284530,217,0 +170757284579,218,0 +170757284627,219,0 +170757284675,220,0 +170757284723,220,0 +170757284771,221,0 +170757284819,221,0 +170757284868,222,0 +170757284916,222,0 +170757284966,223,0 +170757285013,222,0 +170757285063,226,0 +170757285113,216,0 +170757285162,215,0 +170757285212,215,0 +170757285259,215,0 +170757285307,215,0 +170757285357,216,0 +170757285406,216,0 +170757285456,217,0 +170757285504,217,0 +170757285553,218,0 +170757285601,219,0 +170757285649,220,0 +170757285696,222,0 +170757285744,221,0 +170757285792,221,0 +170757285840,221,0 +170757285888,222,0 +170757285936,223,0 +170757285984,223,0 +170757286031,215,0 +170757286079,215,0 +170757286127,216,0 +170757286177,217,0 +170757286226,218,0 +170757286274,218,0 +170757286322,218,0 +170757286372,219,0 +170757286420,220,0 +170757286468,220,0 +170757286517,222,0 +170757286565,222,0 +170757286613,223,0 +170757286661,224,0 +170757286709,225,0 +170757286757,223,0 +170757286805,223,0 +170757286854,223,0 +170757286902,219,0 +170757286950,216,0 +170757286998,216,0 +170757287045,218,0 +170757287093,218,0 +170757287141,218,0 +170757287189,220,0 +170757287237,220,0 +170757287285,220,0 +170757287333,221,0 +170757287382,221,0 +170757287432,222,0 +170757287479,223,0 +170757287527,223,0 +170757287575,224,0 +170757287623,224,0 +170757287671,223,0 +170757287719,223,0 +170757287767,223,0 +170757287815,216,0 +170757287862,216,0 +170757287910,216,0 +170757287960,217,0 +170757288008,218,0 +170757288056,220,0 +170757288103,220,0 +170757288151,219,0 +170757288199,220,0 +170757288247,220,0 +170757288295,221,0 +170757288344,222,0 +170757288392,222,0 +170757288440,222,0 +170757288488,223,0 +170757288536,223,0 +170757288584,223,0 +170757288633,223,0 +170757288681,223,0 +170757288729,216,0 +170757288777,216,0 +170757288826,217,0 +170757288874,217,0 +170757288923,220,0 +170757288973,219,0 +170757289021,219,0 +170757289069,220,0 +170757289117,221,0 +170757289166,221,0 +170757289216,222,0 +170757289264,223,0 +170757289312,222,0 +170757289361,223,0 +170757289409,224,0 +170757289459,224,0 +170757289506,224,0 +170757289554,224,0 +170757289602,223,0 +170757289652,218,0 +170757289700,217,0 +170757289748,218,0 +170757289797,220,0 +170757289845,220,0 +170757289893,220,0 +170757289941,221,0 +170757289989,221,0 +170757290037,221,0 +170757290086,223,0 +170757290136,223,0 +170757290184,223,0 +170757290233,224,0 +170757290283,224,0 +170757290332,223,0 +170757290380,224,0 +170757290428,223,0 +170757290476,224,0 +170757290524,222,0 +170757290572,216,0 +170757290620,216,0 +170757290668,217,0 +170757290716,218,0 +170757290764,218,0 +170757290812,220,0 +170757290860,220,0 +170757290908,219,0 +170757290956,221,0 +170757291004,223,0 +170757291052,222,0 +170757291100,224,0 +170757291148,224,0 +170757291196,225,0 +170757291244,223,0 +170757291292,223,0 +170757291339,223,0 +170757291387,224,0 +170757291435,223,0 +170757291483,217,0 +170757291531,217,0 +170757291579,218,0 +170757291629,218,0 +170757291678,219,0 +170757291726,219,0 +170757291775,220,0 +170757291823,221,0 +170757291871,221,0 +170757291919,223,0 +170757291967,223,0 +170757292016,227,0 +170757292064,225,0 +170757292114,224,0 +170757292163,224,0 +170757292211,224,0 +170757292259,223,0 +170757292307,222,0 +170757292357,216,0 +170757292406,216,0 +170757292454,217,0 +170757292502,218,0 +170757292551,218,0 +170757292599,219,0 +170757292649,220,0 +170757292697,220,0 +170757292746,221,0 +170757292794,221,0 +170757292842,221,0 +170757292892,222,0 +170757292939,223,0 +170757292989,224,0 +170757293037,223,0 +170757293085,224,0 +170757293133,226,0 +170757293182,223,0 +170757293230,222,0 +170757293278,218,0 +170757293326,218,0 +170757293374,219,0 +170757293422,220,0 +170757293470,220,0 +170757293519,221,0 +170757293569,222,0 +170757293618,222,0 +170757293667,223,0 +170757293714,223,0 +170757293762,224,0 +170757293810,223,0 +170757293858,224,0 +170757293908,224,0 +170757293956,218,0 +170757294004,217,0 +170757294052,222,0 +170757294100,223,0 +170757294149,219,0 +170757294199,219,0 +170757294247,220,0 +170757294295,221,0 +170757294344,221,0 +170757294394,222,0 +170757294442,222,0 +170757294490,222,0 +170757294538,223,0 +170757294587,223,0 +170757294637,224,0 +170757294686,224,0 +170757294734,223,0 +170757294784,224,0 +170757294833,223,0 +170757294883,226,0 +170757294931,224,0 +170757294980,223,0 +170757295030,222,0 +170757295079,218,0 +170757295129,217,0 +170757295177,218,0 +170757295226,222,0 +170757295274,219,0 +170757295322,221,0 +170757295370,220,0 +170757295418,220,0 +170757295467,220,0 +170757295515,222,0 +170757295563,224,0 +170757295613,223,0 +170757295661,223,0 +170757295708,226,0 +170757295756,224,0 +170757295806,225,0 +170757295854,224,0 +170757295902,224,0 +170757295950,221,0 +170757295999,215,0 +170757296047,216,0 +170757296095,217,0 +170757296143,218,0 +170757296192,217,0 +170757296240,218,0 +170757296290,219,0 +170757296338,219,0 +170757296386,220,0 +170757296434,222,0 +170757296481,221,0 +170757296529,223,0 +170757296577,223,0 +170757296627,222,0 +170757296675,224,0 +170757296724,226,0 +170757296774,224,0 +170757296823,223,0 +170757296871,217,0 +170757296919,215,0 +170757296967,215,0 +170757297015,216,0 +170757297062,217,0 +170757297112,217,0 +170757297161,218,0 +170757297209,219,0 +170757297259,220,0 +170757297309,221,0 +170757297356,220,0 +170757297404,222,0 +170757297454,222,0 +170757297503,222,0 +170757297551,222,0 +170757297599,224,0 +170757297647,222,0 +170757297695,227,0 +170757297745,225,0 +170757297792,216,0 +170757297842,215,0 +170757297890,215,0 +170757297938,216,0 +170757297986,216,0 +170757298034,216,0 +170757298082,217,0 +170757298130,217,0 +170757298178,218,0 +170757298227,219,0 +170757298277,220,0 +170757298325,221,0 +170757298373,221,0 +170757298421,221,0 +170757298468,222,0 +170757298518,222,0 +170757298566,224,0 +170757298614,223,0 +170757298661,222,0 +170757298709,215,0 +170757298759,215,0 +170757298807,214,0 +170757298855,215,0 +170757298904,216,0 +170757298952,217,0 +170757299000,218,0 +170757299048,218,0 +170757299096,219,0 +170757299144,219,0 +170757299192,220,0 +170757299240,220,0 +170757299288,223,0 +170757299336,222,0 +170757299384,224,0 +170757299432,224,0 +170757299479,222,0 +170757299527,224,0 +170757299575,222,0 +170757299623,215,0 +170757299671,215,0 +170757299719,215,0 +170757299766,216,0 +170757299814,216,0 +170757299862,217,0 +170757299910,219,0 +170757299957,219,0 +170757300007,219,0 +170757300054,220,0 +170757300102,220,0 +170757300150,221,0 +170757300198,221,0 +170757300246,223,0 +170757300295,225,0 +170757300343,223,0 +170757300391,223,0 +170757300439,223,0 +170757300487,216,0 +170757300535,214,0 +170757300583,214,0 +170757300631,215,0 +170757300679,215,0 +170757300727,216,0 +170757300775,218,0 +170757300824,217,0 +170757300872,218,0 +170757300920,219,0 +170757300967,220,0 +170757301017,221,0 +170757301065,222,0 +170757301113,222,0 +170757301160,222,0 +170757301208,222,0 +170757301256,224,0 +170757301304,223,0 +170757301353,224,0 +170757301401,216,0 +170757301449,215,0 +170757301497,215,0 +170757301545,215,0 +170757301594,215,0 +170757301642,216,0 +170757301690,217,0 +170757301738,218,0 +170757301786,218,0 +170757301834,219,0 +170757301882,220,0 +170757301930,220,0 +170757301979,221,0 +170757302027,221,0 +170757302075,223,0 +170757302123,222,0 +170757302171,224,0 +170757302221,222,0 +170757302269,222,0 +170757302317,216,0 +170757302365,214,0 +170757302414,215,0 +170757302464,215,0 +170757302513,215,0 +170757302561,215,0 +170757302609,216,0 +170757302656,216,0 +170757302706,217,0 +170757302754,218,0 +170757302802,218,0 +170757302849,220,0 +170757302897,220,0 +170757302945,222,0 +170757302993,222,0 +170757303043,222,0 +170757303091,222,0 +170757303138,224,0 +170757303186,233,0 +170757303234,215,0 +170757303282,215,0 +170757303332,215,0 +170757303380,215,0 +170757303427,215,0 +170757303477,215,0 +170757303526,216,0 +170757303574,217,0 +170757303622,218,0 +170757303670,217,0 +170757303720,219,0 +170757303767,220,0 +170757303815,220,0 +170757303865,221,0 +170757303914,223,0 +170757303962,222,0 +170757304010,223,0 +170757304058,224,0 +170757304106,225,0 +170757304154,215,0 +170757304202,215,0 +170757304250,215,0 +170757304299,216,0 +170757304347,216,0 +170757304397,217,0 +170757304446,219,0 +170757304496,219,0 +170757304546,220,0 +170757304593,220,0 +170757304641,221,0 +170757304691,221,0 +170757304739,222,0 +170757304787,222,0 +170757304835,223,0 +170757304883,222,0 +170757304932,223,0 +170757304980,223,0 +170757305028,216,0 +170757305076,215,0 +170757305124,215,0 +170757305172,216,0 +170757305221,217,0 +170757305271,217,0 +170757305319,219,0 +170757305366,218,0 +170757305416,219,0 +170757305464,220,0 +170757305512,220,0 +170757305560,222,0 +170757305607,221,0 +170757305655,222,0 +170757305703,221,0 +170757305751,222,0 +170757305801,222,0 +170757305849,222,0 +170757305896,223,0 +170757305946,223,0 +170757305994,223,0 +170757306042,223,0 +170757306090,224,0 +170757306139,224,0 +170757306187,223,0 +170757306237,221,0 +170757306284,224,0 +170757306334,223,0 +170757306384,219,0 +170757306433,218,0 +170757306481,220,0 +170757306531,219,0 +170757306578,220,0 +170757306626,221,0 +170757306676,223,0 +170757306724,223,0 +170757306772,222,0 +170757306820,223,0 +170757306869,224,0 +170757306917,223,0 +170757306967,224,0 +170757307017,225,0 +170757307066,225,0 +170757307116,224,0 +170757307165,223,0 +170757307213,223,0 +170757307263,222,0 +170757307311,215,0 +170757307359,216,0 +170757307406,217,0 +170757307454,217,0 +170757307502,218,0 +170757307550,218,0 +170757307598,219,0 +170757307646,219,0 +170757307694,221,0 +170757307744,221,0 +170757307792,222,0 +170757307841,222,0 +170757307889,222,0 +170757307937,222,0 +170757307985,223,0 +170757308033,222,0 +170757308081,222,0 +170757308129,230,0 +170757308179,222,0 +170757308228,215,0 +170757308278,215,0 +170757308326,215,0 +170757308373,216,0 +170757308421,217,0 +170757308471,216,0 +170757308519,217,0 +170757308567,217,0 +170757308616,218,0 +170757308666,219,0 +170757308714,222,0 +170757308762,221,0 +170757308811,221,0 +170757308859,221,0 +170757308907,222,0 +170757308956,221,0 +170757309006,221,0 +170757309054,223,0 +170757309102,216,0 +170757309150,214,0 +170757309198,215,0 +170757309246,216,0 +170757309294,217,0 +170757309342,217,0 +170757309391,218,0 +170757309439,219,0 +170757309487,219,0 +170757309535,220,0 +170757309583,221,0 +170757309632,221,0 +170757309682,222,0 +170757309731,222,0 +170757309779,222,0 +170757309827,223,0 +170757309875,222,0 +170757309924,223,0 +170757309972,222,0 +170757310022,217,0 +170757310071,218,0 +170757310119,219,0 +170757310167,220,0 +170757310215,221,0 +170757310263,221,0 +170757310311,221,0 +170757310358,222,0 +170757310406,222,0 +170757310454,223,0 +170757310504,223,0 +170757310551,223,0 +170757310599,223,0 +170757310647,225,0 +170757310697,224,0 +170757310745,223,0 +170757310792,224,0 +170757310840,223,0 +170757310888,222,0 +170757310936,219,0 +170757310984,219,0 +170757311032,219,0 +170757311080,220,0 +170757311128,220,0 +170757311176,221,0 +170757311224,222,0 +170757311272,222,0 +170757311320,225,0 +170757311367,224,0 +170757311415,223,0 +170757311463,223,0 +170757311511,225,0 +170757311561,224,0 +170757311610,224,0 +170757311658,224,0 +170757311706,224,0 +170757311754,223,0 +170757311804,216,0 +170757311853,216,0 +170757311903,217,0 +170757311951,217,0 +170757312000,218,0 +170757312048,220,0 +170757312096,219,0 +170757312146,220,0 +170757312194,220,0 +170757312243,221,0 +170757312291,221,0 +170757312341,222,0 +170757312389,221,0 +170757312438,223,0 +170757312486,223,0 +170757312534,224,0 +170757312582,228,0 +170757312630,223,0 +170757312679,222,0 +170757312727,215,0 +170757312777,215,0 +170757312825,216,0 +170757312874,216,0 +170757312922,218,0 +170757312970,218,0 +170757313019,218,0 +170757313067,219,0 +170757313115,221,0 +170757313165,220,0 +170757313213,226,0 +170757313260,223,0 +170757313308,224,0 +170757313356,224,0 +170757313404,224,0 +170757313452,225,0 +170757313500,224,0 +170757313548,223,0 +170757313598,221,0 +170757313647,215,0 +170757313697,215,0 +170757313745,215,0 +170757313793,216,0 +170757313842,217,0 +170757313892,218,0 +170757313940,218,0 +170757313989,218,0 +170757314037,219,0 +170757314087,219,0 +170757314135,220,0 +170757314183,222,0 +170757314230,223,0 +170757314278,224,0 +170757314326,228,0 +170757314375,224,0 +170757314423,227,0 +170757314471,223,0 +170757314521,217,0 +170757314569,214,0 +170757314617,215,0 +170757314666,215,0 +170757314716,215,0 +170757314763,216,0 +170757314813,216,0 +170757314861,217,0 +170757314909,218,0 +170757314957,218,0 +170757315005,219,0 +170757315054,219,0 +170757315104,221,0 +170757315153,221,0 +170757315201,222,0 +170757315250,222,0 +170757315298,223,0 +170757315348,224,0 +170757315397,223,0 +170757315447,216,0 +170757315496,214,0 +170757315544,215,0 +170757315592,215,0 +170757315640,217,0 +170757315688,218,0 +170757315738,219,0 +170757315786,220,0 +170757315834,219,0 +170757315883,220,0 +170757315931,221,0 +170757315979,222,0 +170757316027,222,0 +170757316075,223,0 +170757316123,223,0 +170757316171,223,0 +170757316218,223,0 +170757316266,224,0 +170757316314,224,0 +170757316362,216,0 +170757316410,217,0 +170757316459,217,0 +170757316507,218,0 +170757316555,218,0 +170757316603,219,0 +170757316651,219,0 +170757316699,219,0 +170757316747,219,0 +170757316794,220,0 +170757316842,222,0 +170757316890,222,0 +170757316938,223,0 +170757316986,223,0 +170757317034,223,0 +170757317081,223,0 +170757317129,222,0 +170757317177,224,0 +170757317225,222,0 +170757317273,217,0 +170757317321,218,0 +170757317370,218,0 +170757317418,219,0 +170757317466,220,0 +170757317515,221,0 +170757317563,220,0 +170757317611,221,0 +170757317659,221,0 +170757317707,222,0 +170757317754,223,0 +170757317802,222,0 +170757317850,223,0 +170757317898,224,0 +170757317946,224,0 +170757317994,224,0 +170757318041,224,0 +170757318089,222,0 +170757318137,222,0 +170757318185,218,0 +170757318235,218,0 +170757318283,220,0 +170757318330,221,0 +170757318378,221,0 +170757318428,222,0 +170757318476,222,0 +170757318525,222,0 +170757318573,223,0 +170757318621,223,0 +170757318669,224,0 +170757318718,224,0 +170757318768,226,0 +170757318816,224,0 +170757318864,224,0 +170757318911,224,0 +170757318959,219,0 +170757319007,222,0 +170757319055,220,0 +170757319105,219,0 +170757319153,219,0 +170757319200,220,0 +170757319248,221,0 +170757319298,221,0 +170757319346,222,0 +170757319395,222,0 +170757319444,223,0 +170757319492,223,0 +170757319542,224,0 +170757319590,224,0 +170757319639,224,0 +170757319689,224,0 +170757319737,225,0 +170757319784,222,0 +170757319832,223,0 +170757319880,223,0 +170757319928,223,0 +170757319976,217,0 +170757320026,217,0 +170757320074,217,0 +170757320123,219,0 +170757320173,220,0 +170757320220,219,0 +170757320269,220,0 +170757320318,220,0 +170757320366,221,0 +170757320414,222,0 +170757320463,223,0 +170757320513,222,0 +170757320561,223,0 +170757320610,225,0 +170757320658,224,0 +170757320708,224,0 +170757320756,225,0 +170757320805,224,0 +170757320853,216,0 +170757320901,215,0 +170757320949,216,0 +170757320997,217,0 +170757321045,218,0 +170757321095,219,0 +170757321143,219,0 +170757321192,219,0 +170757321241,219,0 +170757321289,220,0 +170757321337,221,0 +170757321385,221,0 +170757321433,222,0 +170757321483,222,0 +170757321532,222,0 +170757321580,223,0 +170757321628,223,0 +170757321676,223,0 +170757321726,223,0 +170757321773,216,0 +170757321821,214,0 +170757321869,214,0 +170757321919,215,0 +170757321968,216,0 +170757322016,217,0 +170757322064,220,0 +170757322112,218,0 +170757322161,218,0 +170757322211,219,0 +170757322260,220,0 +170757322308,220,0 +170757322356,220,0 +170757322404,223,0 +170757322452,223,0 +170757322500,222,0 +170757322550,222,0 +170757322599,222,0 +170757322647,223,0 +170757322697,215,0 +170757322744,215,0 +170757322792,216,0 +170757322840,215,0 +170757322890,217,0 +170757322938,218,0 +170757322986,218,0 +170757323034,220,0 +170757323082,219,0 +170757323130,220,0 +170757323179,223,0 +170757323227,223,0 +170757323275,222,0 +170757323323,223,0 +170757323371,223,0 +170757323419,223,0 +170757323467,223,0 +170757323516,224,0 +170757323564,222,0 +170757323614,215,0 +170757323662,216,0 +170757323710,216,0 +170757323758,217,0 +170757323807,216,0 +170757323855,219,0 +170757323903,219,0 +170757323952,220,0 +170757324002,220,0 +170757324051,221,0 +170757324101,221,0 +170757324150,222,0 +170757324198,222,0 +170757324246,224,0 +170757324294,223,0 +170757324342,223,0 +170757324390,223,0 +170757324439,222,0 +170757324489,216,0 +170757324537,214,0 +170757324585,214,0 +170757324633,215,0 +170757324682,216,0 +170757324730,216,0 +170757324778,217,0 +170757324827,216,0 +170757324875,217,0 +170757324923,217,0 +170757324973,218,0 +170757325022,220,0 +170757325070,220,0 +170757325118,221,0 +170757325166,220,0 +170757325214,223,0 +170757325261,223,0 +170757325309,222,0 +170757325357,223,0 +170757325405,216,0 +170757325453,214,0 +170757325501,215,0 +170757325551,215,0 +170757325599,215,0 +170757325646,215,0 +170757325696,215,0 +170757325744,215,0 +170757325794,216,0 +170757325841,216,0 +170757325891,217,0 +170757325939,217,0 +170757325988,218,0 +170757326038,219,0 +170757326086,221,0 +170757326135,220,0 +170757326183,220,0 +170757326231,222,0 +170757326279,221,0 +170757326327,215,0 +170757326375,215,0 +170757326423,216,0 +170757326472,217,0 +170757326522,218,0 +170757326570,218,0 +170757326619,219,0 +170757326667,219,0 +170757326715,220,0 +170757326763,221,0 +170757326811,221,0 +170757326861,222,0 +170757326909,223,0 +170757326957,223,0 +170757327005,223,0 +170757327053,224,0 +170757327101,223,0 +170757327150,223,0 +170757327200,218,0 +170757327249,216,0 +170757327297,218,0 +170757327345,217,0 +170757327395,218,0 +170757327444,219,0 +170757327492,221,0 +170757327542,220,0 +170757327590,222,0 +170757327638,222,0 +170757327686,223,0 +170757327734,225,0 +170757327781,224,0 +170757327831,222,0 +170757327881,223,0 +170757327928,223,0 +170757327976,223,0 +170757328024,223,0 +170757328072,222,0 +170757328122,216,0 +170757328171,215,0 +170757328219,215,0 +170757328269,216,0 +170757328318,218,0 +170757328366,218,0 +170757328416,219,0 +170757328463,220,0 +170757328511,221,0 +170757328559,220,0 +170757328607,223,0 +170757328657,222,0 +170757328706,223,0 +170757328754,224,0 +170757328804,223,0 +170757328852,223,0 +170757328900,223,0 +170757328949,223,0 +170757328997,222,0 +170757329047,215,0 +170757329095,214,0 +170757329144,215,0 +170757329192,216,0 +170757329241,217,0 +170757329291,217,0 +170757329339,218,0 +170757329388,217,0 +170757329436,218,0 +170757329484,219,0 +170757329534,220,0 +170757329582,220,0 +170757329630,221,0 +170757329678,223,0 +170757329726,223,0 +170757329775,223,0 +170757329825,222,0 +170757329874,223,0 +170757329924,216,0 +170757329973,214,0 +170757330021,215,0 +170757330071,216,0 +170757330119,217,0 +170757330168,218,0 +170757330216,217,0 +170757330266,218,0 +170757330315,219,0 +170757330363,220,0 +170757330411,220,0 +170757330459,219,0 +170757330507,220,0 +170757330557,221,0 +170757330606,221,0 +170757330656,222,0 +170757330705,222,0 +170757330755,222,0 +170757330803,223,0 +170757330851,216,0 +170757330900,215,0 +170757330950,217,0 +170757330999,217,0 +170757331049,218,0 +170757331097,218,0 +170757331145,219,0 +170757331193,220,0 +170757331241,220,0 +170757331289,222,0 +170757331337,222,0 +170757331386,222,0 +170757331434,222,0 +170757331483,221,0 +170757331531,224,0 +170757331579,224,0 +170757331629,223,0 +170757331677,224,0 +170757331725,221,0 +170757331773,216,0 +170757331821,217,0 +170757331869,218,0 +170757331916,218,0 +170757331964,218,0 +170757332012,218,0 +170757332060,219,0 +170757332108,220,0 +170757332156,221,0 +170757332204,221,0 +170757332253,222,0 +170757332301,222,0 +170757332349,222,0 +170757332397,222,0 +170757332444,223,0 +170757332492,224,0 +170757332540,224,0 +170757332588,223,0 +170757332636,216,0 +170757332684,215,0 +170757332731,217,0 +170757332779,218,0 +170757332827,218,0 +170757332875,219,0 +170757332924,219,0 +170757332972,219,0 +170757333020,219,0 +170757333068,221,0 +170757333116,221,0 +170757333164,222,0 +170757333212,222,0 +170757333261,224,0 +170757333309,224,0 +170757333357,224,0 +170757333407,225,0 +170757333455,222,0 +170757333503,223,0 +170757333552,218,0 +170757333600,217,0 +170757333648,218,0 +170757333696,218,0 +170757333744,219,0 +170757333792,219,0 +170757333840,221,0 +170757333889,220,0 +170757333937,221,0 +170757333985,221,0 +170757334034,222,0 +170757334082,223,0 +170757334132,223,0 +170757334181,224,0 +170757334229,223,0 +170757334277,223,0 +170757334325,223,0 +170757334373,224,0 +170757334420,223,0 +170757334468,217,0 +170757334516,216,0 +170757334564,217,0 +170757334612,219,0 +170757334660,219,0 +170757334709,219,0 +170757334757,220,0 +170757334805,221,0 +170757334853,221,0 +170757334900,219,0 +170757334948,223,0 +170757334996,223,0 +170757335044,223,0 +170757335094,224,0 +170757335142,225,0 +170757335190,224,0 +170757335239,224,0 +170757335289,223,0 +170757335338,222,0 +170757335386,215,0 +170757335436,216,0 +170757335484,216,0 +170757335532,217,0 +170757335581,221,0 +170757335629,218,0 +170757335677,219,0 +170757335725,220,0 +170757335773,220,0 +170757335821,221,0 +170757335869,222,0 +170757335917,221,0 +170757335966,222,0 +170757336014,223,0 +170757336062,224,0 +170757336110,224,0 +170757336158,223,0 +170757336208,222,0 +170757336256,216,0 +170757336304,214,0 +170757336351,215,0 +170757336399,216,0 +170757336449,216,0 +170757336497,217,0 +170757336545,217,0 +170757336593,218,0 +170757336640,219,0 +170757336690,220,0 +170757336738,220,0 +170757336786,222,0 +170757336834,223,0 +170757336883,222,0 +170757336931,223,0 +170757336979,225,0 +170757337027,223,0 +170757337074,223,0 +170757337122,224,0 +170757337170,216,0 +170757337218,215,0 +170757337266,215,0 +170757337314,216,0 +170757337361,217,0 +170757337409,217,0 +170757337457,218,0 +170757337505,219,0 +170757337553,220,0 +170757337602,221,0 +170757337650,221,0 +170757337698,221,0 +170757337746,222,0 +170757337794,222,0 +170757337841,222,0 +170757337890,224,0 +170757337939,223,0 +170757337987,223,0 +170757338036,223,0 +170757338084,216,0 +170757338132,214,0 +170757338180,216,0 +170757338230,216,0 +170757338278,217,0 +170757338326,218,0 +170757338374,218,0 +170757338422,219,0 +170757338469,219,0 +170757338517,219,0 +170757338565,222,0 +170757338613,221,0 +170757338662,222,0 +170757338710,223,0 +170757338758,223,0 +170757338808,223,0 +170757338856,223,0 +170757338904,222,0 +170757338952,222,0 +170757338999,215,0 +170757339049,215,0 +170757339098,216,0 +170757339148,217,0 +170757339196,218,0 +170757339244,217,0 +170757339292,218,0 +170757339339,219,0 +170757339387,220,0 +170757339435,220,0 +170757339483,222,0 +170757339531,223,0 +170757339580,223,0 +170757339628,224,0 +170757339676,223,0 +170757339723,223,0 +170757339773,223,0 +170757339821,223,0 +170757339869,222,0 +170757339916,216,0 +170757339966,217,0 +170757340014,217,0 +170757340062,218,0 +170757340110,219,0 +170757340157,220,0 +170757340205,220,0 +170757340253,223,0 +170757340301,221,0 +170757340349,222,0 +170757340397,221,0 +170757340445,222,0 +170757340493,223,0 +170757340541,224,0 +170757340588,224,0 +170757340636,223,0 +170757340684,224,0 +170757340732,224,0 +170757340780,217,0 +170757340828,215,0 +170757340875,216,0 +170757340923,217,0 +170757340971,219,0 +170757341019,218,0 +170757341067,219,0 +170757341115,220,0 +170757341162,220,0 +170757341210,221,0 +170757341258,221,0 +170757341306,223,0 +170757341355,225,0 +170757341403,224,0 +170757341451,222,0 +170757341499,223,0 +170757341547,224,0 +170757341594,225,0 +170757341642,223,0 +170757341690,216,0 +170757341739,215,0 +170757341786,216,0 +170757341834,217,0 +170757341882,217,0 +170757341930,218,0 +170757341978,218,0 +170757342026,220,0 +170757342073,221,0 +170757342121,222,0 +170757342169,221,0 +170757342217,224,0 +170757342265,222,0 +170757342312,224,0 +170757342360,222,0 +170757342408,225,0 +170757342456,223,0 +170757342504,224,0 +170757342552,223,0 +170757342601,216,0 +170757342649,215,0 +170757342697,215,0 +170757342744,217,0 +170757342792,218,0 +170757342840,218,0 +170757342890,219,0 +170757342937,219,0 +170757342985,219,0 +170757343033,221,0 +170757343082,221,0 +170757343130,221,0 +170757343178,222,0 +170757343226,222,0 +170757343274,223,0 +170757343322,223,0 +170757343370,223,0 +170757343418,224,0 +170757343466,223,0 +170757343513,216,0 +170757343561,215,0 +170757343609,216,0 +170757343657,217,0 +170757343705,218,0 +170757343753,219,0 +170757343801,219,0 +170757343849,220,0 +170757343898,220,0 +170757343946,222,0 +170757343996,222,0 +170757344045,222,0 +170757344095,224,0 +170757344144,223,0 +170757344192,223,0 +170757344240,223,0 +170757344290,223,0 +170757344339,223,0 +170757344388,222,0 +170757344438,216,0 +170757344486,216,0 +170757344535,217,0 +170757344585,218,0 +170757344633,219,0 +170757344682,220,0 +170757344732,220,0 +170757344780,221,0 +170757344828,222,0 +170757344877,222,0 +170757344925,224,0 +170757344973,223,0 +170757345021,223,0 +170757345069,224,0 +170757345117,227,0 +170757345165,224,0 +170757345214,223,0 +170757345262,224,0 +170757345310,218,0 +170757345359,214,0 +170757345407,215,0 +170757345454,215,0 +170757345502,215,0 +170757345550,216,0 +170757345598,217,0 +170757345646,218,0 +170757345694,218,0 +170757345742,219,0 +170757345789,220,0 +170757345837,220,0 +170757345885,222,0 +170757345933,222,0 +170757345981,221,0 +170757346030,223,0 +170757346078,223,0 +170757346126,223,0 +170757346174,227,0 +170757346223,216,0 +170757346271,215,0 +170757346319,215,0 +170757346367,215,0 +170757346414,216,0 +170757346462,217,0 +170757346510,217,0 +170757346558,218,0 +170757346606,219,0 +170757346654,219,0 +170757346703,220,0 +170757346751,220,0 +170757346799,222,0 +170757346847,223,0 +170757346895,223,0 +170757346942,223,0 +170757346990,223,0 +170757347038,224,0 +170757347086,225,0 +170757347134,216,0 +170757347184,214,0 +170757347232,214,0 +170757347279,215,0 +170757347327,216,0 +170757347375,217,0 +170757347423,217,0 +170757347471,217,0 +170757347519,218,0 +170757347567,218,0 +170757347615,221,0 +170757347663,221,0 +170757347711,221,0 +170757347759,220,0 +170757347807,222,0 +170757347855,221,0 +170757347903,224,0 +170757347952,222,0 +170757348000,223,0 +170757348048,216,0 +170757348096,215,0 +170757348144,215,0 +170757348192,215,0 +170757348240,216,0 +170757348290,217,0 +170757348338,218,0 +170757348386,219,0 +170757348434,220,0 +170757348482,219,0 +170757348531,219,0 +170757348579,220,0 +170757348627,221,0 +170757348675,223,0 +170757348722,222,0 +170757348770,222,0 +170757348818,222,0 +170757348866,222,0 +170757348915,223,0 +170757348963,215,0 +170757349011,215,0 +170757349059,216,0 +170757349107,217,0 +170757349155,217,0 +170757349204,219,0 +170757349252,219,0 +170757349301,219,0 +170757349349,221,0 +170757349397,221,0 +170757349445,222,0 +170757349494,222,0 +170757349542,224,0 +170757349590,223,0 +170757349638,222,0 +170757349685,224,0 +170757349733,222,0 +170757349781,222,0 +170757349829,223,0 +170757349877,217,0 +170757349926,217,0 +170757349974,218,0 +170757350022,219,0 +170757350071,219,0 +170757350120,220,0 +170757350170,220,0 +170757350218,221,0 +170757350265,221,0 +170757350315,223,0 +170757350364,223,0 +170757350412,224,0 +170757350460,224,0 +170757350509,224,0 +170757350557,224,0 +170757350605,222,0 +170757350653,223,0 +170757350702,223,0 +170757350750,217,0 +170757350798,216,0 +170757350846,217,0 +170757350894,218,0 +170757350942,218,0 +170757350990,219,0 +170757351037,220,0 +170757351085,220,0 +170757351135,221,0 +170757351182,222,0 +170757351230,223,0 +170757351278,223,0 +170757351326,223,0 +170757351376,223,0 +170757351423,223,0 +170757351471,223,0 +170757351519,224,0 +170757351567,223,0 +170757351615,223,0 +170757351663,216,0 +170757351711,215,0 +170757351761,216,0 +170757351809,217,0 +170757351857,218,0 +170757351905,218,0 +170757351952,219,0 +170757352000,220,0 +170757352048,221,0 +170757352098,221,0 +170757352147,222,0 +170757352195,222,0 +170757352245,223,0 +170757352293,223,0 +170757352341,224,0 +170757352390,223,0 +170757352440,223,0 +170757352489,222,0 +170757352537,222,0 +170757352586,215,0 +170757352634,214,0 +170757352684,215,0 +170757352732,216,0 +170757352781,217,0 +170757352829,217,0 +170757352879,218,0 +170757352928,219,0 +170757352978,219,0 +170757353026,220,0 +170757353074,222,0 +170757353123,221,0 +170757353171,222,0 +170757353219,222,0 +170757353267,223,0 +170757353314,223,0 +170757353362,224,0 +170757353410,223,0 +170757353458,218,0 +170757353506,214,0 +170757353554,215,0 +170757353602,215,0 +170757353650,216,0 +170757353697,217,0 +170757353745,217,0 +170757353793,218,0 +170757353841,218,0 +170757353889,219,0 +170757353937,220,0 +170757353985,220,0 +170757354033,220,0 +170757354080,223,0 +170757354130,221,0 +170757354179,222,0 +170757354229,222,0 +170757354277,222,0 +170757354325,222,0 +170757354374,221,0 +170757354422,216,0 +170757354470,216,0 +170757354520,217,0 +170757354568,217,0 +170757354616,218,0 +170757354665,219,0 +170757354715,219,0 +170757354764,220,0 +170757354814,221,0 +170757354863,221,0 +170757354911,222,0 +170757354959,222,0 +170757355007,223,0 +170757355055,224,0 +170757355103,224,0 +170757355152,225,0 +170757355200,225,0 +170757355248,223,0 +170757355296,216,0 +170757355344,216,0 +170757355394,216,0 +170757355442,217,0 +170757355489,218,0 +170757355537,218,0 +170757355587,220,0 +170757355636,220,0 +170757355684,221,0 +170757355732,221,0 +170757355782,221,0 +170757355830,223,0 +170757355878,222,0 +170757355926,223,0 +170757355973,224,0 +170757356023,223,0 +170757356071,223,0 +170757356119,224,0 +170757356167,223,0 +170757356215,215,0 +170757356263,215,0 +170757356312,216,0 +170757356362,216,0 +170757356411,217,0 +170757356459,217,0 +170757356507,217,0 +170757356556,218,0 +170757356604,219,0 +170757356654,218,0 +170757356703,220,0 +170757356751,222,0 +170757356801,222,0 +170757356849,222,0 +170757356897,222,0 +170757356944,223,0 +170757356994,223,0 +170757357042,222,0 +170757357090,216,0 +170757357138,214,0 +170757357185,215,0 +170757357235,215,0 +170757357283,216,0 +170757357330,217,0 +170757357380,217,0 +170757357429,218,0 +170757357477,217,0 +170757357526,219,0 +170757357574,220,0 +170757357622,221,0 +170757357670,221,0 +170757357718,220,0 +170757357766,221,0 +170757357813,220,0 +170757357861,221,0 +170757357909,221,0 +170757357959,221,0 +170757358007,216,0 +170757358055,215,0 +170757358103,215,0 +170757358151,217,0 +170757358199,216,0 +170757358247,216,0 +170757358295,216,0 +170757358343,216,0 +170757358392,217,0 +170757358440,217,0 +170757358488,219,0 +170757358537,219,0 +170757358587,220,0 +170757358636,221,0 +170757358684,221,0 +170757358734,222,0 +170757358782,224,0 +170757358830,223,0 +170757358879,225,0 +170757358927,215,0 +170757358975,215,0 +170757359024,215,0 +170757359072,214,0 +170757359120,216,0 +170757359168,216,0 +170757359216,216,0 +170757359265,217,0 +170757359315,218,0 +170757359364,218,0 +170757359412,220,0 +170757359462,219,0 +170757359511,221,0 +170757359559,221,0 +170757359609,222,0 +170757359657,222,0 +170757359706,221,0 +170757359754,221,0 +170757359804,215,0 +170757359852,215,0 +170757359900,215,0 +170757359948,216,0 +170757359995,217,0 diff --git a/laser_value/0211-00.csv b/laser_value/0211-00.csv new file mode 100644 index 0000000..9dd9392 --- /dev/null +++ b/laser_value/0211-00.csv @@ -0,0 +1,7442 @@ +timestamp,laser_value,event +170757360044,218,0 +170757360094,219,0 +170757360143,219,0 +170757360191,220,0 +170757360241,220,0 +170757360289,221,0 +170757360338,222,0 +170757360386,223,0 +170757360435,224,0 +170757360483,223,0 +170757360533,224,0 +170757360581,225,0 +170757360630,224,0 +170757360680,223,0 +170757360728,219,0 +170757360776,218,0 +170757360824,219,0 +170757360871,220,0 +170757360919,220,0 +170757360967,220,0 +170757361017,221,0 +170757361066,222,0 +170757361114,222,0 +170757361164,222,0 +170757361212,223,0 +170757361260,223,0 +170757361308,224,0 +170757361357,225,0 +170757361407,224,0 +170757361456,224,0 +170757361504,223,0 +170757361552,222,0 +170757361600,223,0 +170757361650,219,0 +170757361699,218,0 +170757361748,219,0 +170757361796,219,0 +170757361846,219,0 +170757361894,220,0 +170757361942,220,0 +170757361990,221,0 +170757362038,221,0 +170757362087,222,0 +170757362135,221,0 +170757362183,226,0 +170757362231,223,0 +170757362280,221,0 +170757362328,224,0 +170757362376,225,0 +170757362424,223,0 +170757362472,224,0 +170757362522,216,0 +170757362569,216,0 +170757362619,217,0 +170757362669,218,0 +170757362717,219,0 +170757362764,219,0 +170757362812,220,0 +170757362860,220,0 +170757362908,220,0 +170757362956,222,0 +170757363004,222,0 +170757363052,223,0 +170757363100,223,0 +170757363148,224,0 +170757363196,223,0 +170757363243,223,0 +170757363291,223,0 +170757363339,223,0 +170757363387,223,0 +170757363435,216,0 +170757363483,216,0 +170757363530,217,0 +170757363578,218,0 +170757363626,218,0 +170757363674,219,0 +170757363722,220,0 +170757363770,220,0 +170757363818,221,0 +170757363866,221,0 +170757363914,222,0 +170757363961,223,0 +170757364009,224,0 +170757364057,223,0 +170757364105,224,0 +170757364153,224,0 +170757364202,225,0 +170757364250,223,0 +170757364299,223,0 +170757364347,220,0 +170757364395,219,0 +170757364443,219,0 +170757364491,219,0 +170757364539,220,0 +170757364587,221,0 +170757364635,221,0 +170757364685,221,0 +170757364733,222,0 +170757364782,223,0 +170757364832,223,0 +170757364880,223,0 +170757364929,224,0 +170757364977,224,0 +170757365025,224,0 +170757365073,224,0 +170757365123,223,0 +170757365172,224,0 +170757365220,224,0 +170757365268,217,0 +170757365318,217,0 +170757365366,218,0 +170757365414,219,0 +170757365463,219,0 +170757365511,219,0 +170757365559,219,0 +170757365607,220,0 +170757365655,221,0 +170757365703,221,0 +170757365750,223,0 +170757365800,224,0 +170757365848,224,0 +170757365896,225,0 +170757365944,225,0 +170757365993,224,0 +170757366041,224,0 +170757366089,223,0 +170757366137,223,0 +170757366185,216,0 +170757366235,216,0 +170757366282,217,0 +170757366332,218,0 +170757366380,218,0 +170757366428,219,0 +170757366476,219,0 +170757366525,221,0 +170757366575,220,0 +170757366623,220,0 +170757366672,222,0 +170757366722,223,0 +170757366770,223,0 +170757366818,223,0 +170757366867,223,0 +170757366915,223,0 +170757366965,223,0 +170757367014,222,0 +170757367062,216,0 +170757367110,215,0 +170757367159,216,0 +170757367209,217,0 +170757367257,217,0 +170757367306,217,0 +170757367354,220,0 +170757367404,218,0 +170757367452,219,0 +170757367500,220,0 +170757367547,220,0 +170757367595,221,0 +170757367643,222,0 +170757367691,223,0 +170757367739,228,0 +170757367788,224,0 +170757367836,223,0 +170757367884,223,0 +170757367932,223,0 +170757367981,216,0 +170757368029,215,0 +170757368077,216,0 +170757368125,217,0 +170757368173,219,0 +170757368221,219,0 +170757368269,219,0 +170757368316,220,0 +170757368364,219,0 +170757368414,220,0 +170757368462,221,0 +170757368509,222,0 +170757368557,222,0 +170757368605,222,0 +170757368653,222,0 +170757368701,222,0 +170757368749,223,0 +170757368796,223,0 +170757368846,222,0 +170757368894,215,0 +170757368941,215,0 +170757368989,215,0 +170757369037,215,0 +170757369085,216,0 +170757369133,217,0 +170757369181,217,0 +170757369229,217,0 +170757369276,218,0 +170757369326,219,0 +170757369374,220,0 +170757369421,222,0 +170757369469,221,0 +170757369517,221,0 +170757369565,222,0 +170757369613,221,0 +170757369661,221,0 +170757369708,222,0 +170757369756,223,0 +170757369804,215,0 +170757369852,214,0 +170757369900,214,0 +170757369948,215,0 +170757369996,216,0 +170757370044,216,0 +170757370092,216,0 +170757370140,218,0 +170757370189,217,0 +170757370239,219,0 +170757370287,220,0 +170757370336,221,0 +170757370384,221,0 +170757370432,221,0 +170757370480,223,0 +170757370528,222,0 +170757370575,222,0 +170757370623,222,0 +170757370673,223,0 +170757370721,215,0 +170757370768,215,0 +170757370816,216,0 +170757370865,219,0 +170757370912,218,0 +170757370960,217,0 +170757371008,219,0 +170757371056,218,0 +170757371104,219,0 +170757371152,219,0 +170757371200,219,0 +170757371249,220,0 +170757371297,221,0 +170757371345,222,0 +170757371393,222,0 +170757371440,222,0 +170757371488,222,0 +170757371536,223,0 +170757371585,216,0 +170757371635,215,0 +170757371683,215,0 +170757371731,215,0 +170757371778,215,0 +170757371828,216,0 +170757371876,218,0 +170757371924,217,0 +170757371971,217,0 +170757372019,218,0 +170757372069,219,0 +170757372117,219,0 +170757372164,221,0 +170757372212,220,0 +170757372260,221,0 +170757372310,224,0 +170757372358,222,0 +170757372405,223,0 +170757372453,223,0 +170757372501,216,0 +170757372549,214,0 +170757372597,215,0 +170757372645,215,0 +170757372693,215,0 +170757372741,215,0 +170757372788,216,0 +170757372836,216,0 +170757372884,216,0 +170757372932,217,0 +170757372980,218,0 +170757373029,220,0 +170757373077,221,0 +170757373125,220,0 +170757373173,221,0 +170757373221,220,0 +170757373269,221,0 +170757373318,221,0 +170757373366,222,0 +170757373414,216,0 +170757373462,214,0 +170757373511,215,0 +170757373559,214,0 +170757373607,215,0 +170757373655,215,0 +170757373703,216,0 +170757373751,216,0 +170757373799,216,0 +170757373846,217,0 +170757373894,218,0 +170757373942,220,0 +170757373990,219,0 +170757374038,219,0 +170757374085,221,0 +170757374133,221,0 +170757374181,222,0 +170757374229,224,0 +170757374278,223,0 +170757374326,216,0 +170757374374,215,0 +170757374422,215,0 +170757374470,215,0 +170757374518,215,0 +170757374566,216,0 +170757374614,217,0 +170757374663,217,0 +170757374711,218,0 +170757374759,218,0 +170757374807,218,0 +170757374855,218,0 +170757374904,221,0 +170757374952,219,0 +170757375000,220,0 +170757375049,221,0 +170757375097,222,0 +170757375145,222,0 +170757375193,223,0 +170757375241,214,0 +170757375289,215,0 +170757375337,216,0 +170757375385,216,0 +170757375432,219,0 +170757375480,217,0 +170757375530,216,0 +170757375579,217,0 +170757375629,218,0 +170757375677,219,0 +170757375725,219,0 +170757375774,220,0 +170757375822,220,0 +170757375870,221,0 +170757375920,221,0 +170757375969,221,0 +170757376019,222,0 +170757376067,222,0 +170757376115,219,0 +170757376163,215,0 +170757376211,216,0 +170757376258,217,0 +170757376306,218,0 +170757376354,218,0 +170757376404,219,0 +170757376453,220,0 +170757376501,221,0 +170757376549,220,0 +170757376599,222,0 +170757376648,222,0 +170757376696,222,0 +170757376744,223,0 +170757376792,223,0 +170757376840,223,0 +170757376888,224,0 +170757376936,223,0 +170757376985,223,0 +170757377035,220,0 +170757377082,220,0 +170757377130,220,0 +170757377178,220,0 +170757377226,221,0 +170757377274,221,0 +170757377323,222,0 +170757377373,222,0 +170757377422,222,0 +170757377470,222,0 +170757377518,223,0 +170757377566,224,0 +170757377614,224,0 +170757377663,224,0 +170757377711,225,0 +170757377759,223,0 +170757377809,223,0 +170757377858,223,0 +170757377908,222,0 +170757377955,221,0 +170757378005,221,0 +170757378053,221,0 +170757378101,221,0 +170757378149,221,0 +170757378198,223,0 +170757378246,223,0 +170757378294,223,0 +170757378343,223,0 +170757378391,224,0 +170757378439,224,0 +170757378487,225,0 +170757378535,224,0 +170757378584,225,0 +170757378632,224,0 +170757378680,225,0 +170757378728,224,0 +170757378778,223,0 +170757378827,221,0 +170757378877,218,0 +170757378926,219,0 +170757378974,220,0 +170757379022,220,0 +170757379070,220,0 +170757379118,220,0 +170757379166,222,0 +170757379214,221,0 +170757379262,223,0 +170757379311,223,0 +170757379361,223,0 +170757379409,224,0 +170757379456,224,0 +170757379504,223,0 +170757379554,224,0 +170757379602,224,0 +170757379650,223,0 +170757379698,223,0 +170757379747,217,0 +170757379795,218,0 +170757379843,218,0 +170757379891,219,0 +170757379939,219,0 +170757379987,220,0 +170757380037,221,0 +170757380085,221,0 +170757380133,222,0 +170757380182,221,0 +170757380230,223,0 +170757380280,223,0 +170757380329,222,0 +170757380379,223,0 +170757380426,222,0 +170757380474,227,0 +170757380522,224,0 +170757380570,224,0 +170757380618,222,0 +170757380666,216,0 +170757380714,216,0 +170757380763,217,0 +170757380811,218,0 +170757380859,219,0 +170757380907,219,0 +170757380957,219,0 +170757381004,220,0 +170757381054,220,0 +170757381104,221,0 +170757381152,222,0 +170757381201,223,0 +170757381249,223,0 +170757381297,225,0 +170757381345,223,0 +170757381394,227,0 +170757381444,224,0 +170757381493,224,0 +170757381543,222,0 +170757381591,215,0 +170757381639,216,0 +170757381686,217,0 +170757381734,218,0 +170757381782,218,0 +170757381830,218,0 +170757381878,219,0 +170757381927,220,0 +170757381977,219,0 +170757382025,220,0 +170757382073,221,0 +170757382122,222,0 +170757382170,222,0 +170757382218,222,0 +170757382266,223,0 +170757382314,223,0 +170757382362,222,0 +170757382410,223,0 +170757382458,216,0 +170757382506,215,0 +170757382553,216,0 +170757382601,217,0 +170757382649,217,0 +170757382697,218,0 +170757382747,219,0 +170757382795,218,0 +170757382843,219,0 +170757382891,220,0 +170757382938,221,0 +170757382988,221,0 +170757383036,221,0 +170757383085,223,0 +170757383133,223,0 +170757383181,223,0 +170757383229,223,0 +170757383278,223,0 +170757383326,222,0 +170757383374,217,0 +170757383424,216,0 +170757383472,217,0 +170757383521,218,0 +170757383569,219,0 +170757383617,219,0 +170757383665,220,0 +170757383713,222,0 +170757383762,220,0 +170757383810,222,0 +170757383858,221,0 +170757383908,223,0 +170757383956,222,0 +170757384004,224,0 +170757384052,225,0 +170757384100,223,0 +170757384147,223,0 +170757384195,226,0 +170757384243,224,0 +170757384291,217,0 +170757384339,217,0 +170757384387,217,0 +170757384435,218,0 +170757384483,219,0 +170757384533,219,0 +170757384582,220,0 +170757384630,221,0 +170757384678,220,0 +170757384726,223,0 +170757384774,223,0 +170757384822,224,0 +170757384871,223,0 +170757384919,224,0 +170757384967,224,0 +170757385015,224,0 +170757385063,224,0 +170757385113,223,0 +170757385160,222,0 +170757385210,215,0 +170757385258,216,0 +170757385307,216,0 +170757385357,217,0 +170757385405,218,0 +170757385453,219,0 +170757385501,220,0 +170757385548,220,0 +170757385596,221,0 +170757385644,222,0 +170757385692,222,0 +170757385742,225,0 +170757385789,224,0 +170757385837,225,0 +170757385885,224,0 +170757385933,224,0 +170757385981,223,0 +170757386029,223,0 +170757386077,216,0 +170757386124,215,0 +170757386172,214,0 +170757386220,215,0 +170757386270,215,0 +170757386319,216,0 +170757386369,217,0 +170757386417,218,0 +170757386466,218,0 +170757386514,218,0 +170757386562,220,0 +170757386610,219,0 +170757386658,221,0 +170757386706,223,0 +170757386755,223,0 +170757386805,223,0 +170757386853,221,0 +170757386902,220,0 +170757386952,223,0 +170757387001,216,0 +170757387049,215,0 +170757387097,215,0 +170757387147,216,0 +170757387195,217,0 +170757387242,217,0 +170757387290,218,0 +170757387338,218,0 +170757387386,220,0 +170757387434,220,0 +170757387482,220,0 +170757387529,223,0 +170757387577,223,0 +170757387625,224,0 +170757387673,223,0 +170757387721,223,0 +170757387769,223,0 +170757387817,222,0 +170757387865,223,0 +170757387915,215,0 +170757387963,214,0 +170757388011,216,0 +170757388060,216,0 +170757388108,217,0 +170757388158,217,0 +170757388207,218,0 +170757388257,218,0 +170757388306,219,0 +170757388354,220,0 +170757388404,221,0 +170757388453,222,0 +170757388503,225,0 +170757388552,223,0 +170757388602,222,0 +170757388651,223,0 +170757388699,223,0 +170757388747,222,0 +170757388797,216,0 +170757388846,215,0 +170757388894,215,0 +170757388942,216,0 +170757388990,217,0 +170757389039,218,0 +170757389087,217,0 +170757389135,219,0 +170757389185,218,0 +170757389233,218,0 +170757389281,219,0 +170757389330,221,0 +170757389379,222,0 +170757389427,222,0 +170757389475,223,0 +170757389524,223,0 +170757389572,224,0 +170757389620,224,0 +170757389668,223,0 +170757389716,216,0 +170757389764,215,0 +170757389812,215,0 +170757389859,217,0 +170757389909,217,0 +170757389957,217,0 +170757390004,218,0 +170757390052,218,0 +170757390100,219,0 +170757390148,220,0 +170757390196,220,0 +170757390244,222,0 +170757390292,222,0 +170757390339,224,0 +170757390387,223,0 +170757390435,223,0 +170757390483,223,0 +170757390531,224,0 +170757390579,222,0 +170757390626,216,0 +170757390674,215,0 +170757390722,216,0 +170757390770,216,0 +170757390818,217,0 +170757390866,217,0 +170757390914,217,0 +170757390962,219,0 +170757391011,219,0 +170757391061,219,0 +170757391109,220,0 +170757391157,221,0 +170757391206,223,0 +170757391254,222,0 +170757391304,222,0 +170757391353,223,0 +170757391403,223,0 +170757391451,222,0 +170757391500,223,0 +170757391548,215,0 +170757391596,216,0 +170757391644,216,0 +170757391692,217,0 +170757391740,218,0 +170757391788,218,0 +170757391836,218,0 +170757391884,218,0 +170757391933,222,0 +170757391981,218,0 +170757392029,221,0 +170757392077,220,0 +170757392125,221,0 +170757392173,221,0 +170757392221,222,0 +170757392270,225,0 +170757392318,222,0 +170757392367,222,0 +170757392415,223,0 +170757392463,215,0 +170757392511,215,0 +170757392559,216,0 +170757392607,216,0 +170757392656,217,0 +170757392704,218,0 +170757392754,218,0 +170757392803,218,0 +170757392853,218,0 +170757392901,218,0 +170757392950,220,0 +170757392998,221,0 +170757393046,221,0 +170757393094,221,0 +170757393144,222,0 +170757393193,222,0 +170757393243,222,0 +170757393292,223,0 +170757393342,217,0 +170757393390,216,0 +170757393438,217,0 +170757393486,218,0 +170757393534,219,0 +170757393581,220,0 +170757393631,220,0 +170757393681,222,0 +170757393730,221,0 +170757393778,222,0 +170757393826,223,0 +170757393874,223,0 +170757393922,223,0 +170757393970,224,0 +170757394018,224,0 +170757394066,223,0 +170757394114,224,0 +170757394161,223,0 +170757394209,222,0 +170757394257,220,0 +170757394307,220,0 +170757394356,220,0 +170757394406,220,0 +170757394455,222,0 +170757394503,221,0 +170757394553,222,0 +170757394601,223,0 +170757394649,223,0 +170757394697,223,0 +170757394745,225,0 +170757394794,223,0 +170757394842,225,0 +170757394891,224,0 +170757394939,224,0 +170757394987,224,0 +170757395035,223,0 +170757395083,223,0 +170757395133,220,0 +170757395181,219,0 +170757395230,219,0 +170757395278,220,0 +170757395326,221,0 +170757395376,221,0 +170757395424,221,0 +170757395473,222,0 +170757395521,224,0 +170757395569,223,0 +170757395617,224,0 +170757395665,222,0 +170757395713,225,0 +170757395761,225,0 +170757395810,225,0 +170757395858,224,0 +170757395906,224,0 +170757395956,223,0 +170757396003,222,0 +170757396051,216,0 +170757396099,216,0 +170757396147,216,0 +170757396195,217,0 +170757396243,218,0 +170757396293,218,0 +170757396340,219,0 +170757396390,220,0 +170757396438,220,0 +170757396486,221,0 +170757396534,221,0 +170757396583,222,0 +170757396631,222,0 +170757396679,223,0 +170757396727,223,0 +170757396775,223,0 +170757396825,223,0 +170757396873,224,0 +170757396922,223,0 +170757396970,216,0 +170757397019,215,0 +170757397069,215,0 +170757397117,215,0 +170757397165,216,0 +170757397214,217,0 +170757397262,218,0 +170757397310,219,0 +170757397358,218,0 +170757397407,220,0 +170757397457,221,0 +170757397505,220,0 +170757397553,222,0 +170757397601,223,0 +170757397649,223,0 +170757397697,222,0 +170757397746,223,0 +170757397794,223,0 +170757397842,223,0 +170757397892,215,0 +170757397941,215,0 +170757397989,215,0 +170757398037,216,0 +170757398086,216,0 +170757398134,218,0 +170757398184,218,0 +170757398232,218,0 +170757398280,219,0 +170757398329,219,0 +170757398379,219,0 +170757398427,221,0 +170757398475,221,0 +170757398524,223,0 +170757398572,222,0 +170757398620,222,0 +170757398669,222,0 +170757398719,223,0 +170757398768,216,0 +170757398816,216,0 +170757398864,217,0 +170757398912,217,0 +170757398960,218,0 +170757399008,218,0 +170757399056,219,0 +170757399104,219,0 +170757399152,221,0 +170757399200,220,0 +170757399248,222,0 +170757399297,222,0 +170757399345,224,0 +170757399393,223,0 +170757399443,226,0 +170757399491,223,0 +170757399539,223,0 +170757399588,223,0 +170757399636,222,0 +170757399684,216,0 +170757399732,215,0 +170757399780,216,0 +170757399830,217,0 +170757399879,218,0 +170757399927,219,0 +170757399975,219,0 +170757400025,220,0 +170757400074,223,0 +170757400122,221,0 +170757400170,221,0 +170757400220,222,0 +170757400269,224,0 +170757400317,224,0 +170757400365,223,0 +170757400413,223,0 +170757400462,224,0 +170757400510,224,0 +170757400558,222,0 +170757400606,216,0 +170757400656,215,0 +170757400704,216,0 +170757400752,216,0 +170757400800,217,0 +170757400847,218,0 +170757400895,218,0 +170757400945,219,0 +170757400993,219,0 +170757401041,220,0 +170757401089,222,0 +170757401137,222,0 +170757401185,221,0 +170757401233,222,0 +170757401281,224,0 +170757401328,222,0 +170757401376,223,0 +170757401424,223,0 +170757401474,223,0 +170757401522,214,0 +170757401571,215,0 +170757401619,216,0 +170757401669,216,0 +170757401718,217,0 +170757401766,218,0 +170757401814,218,0 +170757401862,219,0 +170757401910,219,0 +170757401958,220,0 +170757402007,222,0 +170757402055,222,0 +170757402103,221,0 +170757402151,222,0 +170757402199,222,0 +170757402246,221,0 +170757402294,221,0 +170757402342,223,0 +170757402390,216,0 +170757402438,215,0 +170757402486,215,0 +170757402533,216,0 +170757402581,216,0 +170757402629,216,0 +170757402677,217,0 +170757402725,218,0 +170757402772,218,0 +170757402820,219,0 +170757402868,219,0 +170757402916,221,0 +170757402964,221,0 +170757403012,223,0 +170757403061,222,0 +170757403111,222,0 +170757403159,224,0 +170757403207,222,0 +170757403255,223,0 +170757403303,220,0 +170757403352,214,0 +170757403400,215,0 +170757403448,216,0 +170757403496,216,0 +170757403544,217,0 +170757403593,218,0 +170757403643,219,0 +170757403691,218,0 +170757403738,219,0 +170757403786,219,0 +170757403834,220,0 +170757403882,221,0 +170757403932,221,0 +170757403980,222,0 +170757404028,221,0 +170757404076,222,0 +170757404123,221,0 +170757404171,223,0 +170757404219,216,0 +170757404267,216,0 +170757404317,216,0 +170757404366,217,0 +170757404414,218,0 +170757404464,218,0 +170757404511,219,0 +170757404559,219,0 +170757404607,220,0 +170757404655,220,0 +170757404703,221,0 +170757404750,221,0 +170757404798,223,0 +170757404846,223,0 +170757404894,224,0 +170757404942,225,0 +170757404990,223,0 +170757405037,231,0 +170757405085,223,0 +170757405133,215,0 +170757405181,215,0 +170757405229,216,0 +170757405279,217,0 +170757405328,218,0 +170757405378,218,0 +170757405427,218,0 +170757405475,219,0 +170757405523,219,0 +170757405571,221,0 +170757405619,222,0 +170757405667,222,0 +170757405715,222,0 +170757405763,224,0 +170757405812,223,0 +170757405860,225,0 +170757405908,224,0 +170757405956,223,0 +170757406004,223,0 +170757406052,215,0 +170757406101,216,0 +170757406151,217,0 +170757406199,217,0 +170757406247,217,0 +170757406295,218,0 +170757406343,218,0 +170757406391,220,0 +170757406438,220,0 +170757406486,220,0 +170757406536,221,0 +170757406585,221,0 +170757406635,223,0 +170757406684,222,0 +170757406732,224,0 +170757406780,223,0 +170757406830,223,0 +170757406879,224,0 +170757406927,218,0 +170757406977,217,0 +170757407025,218,0 +170757407073,218,0 +170757407120,220,0 +170757407168,220,0 +170757407216,220,0 +170757407264,222,0 +170757407312,222,0 +170757407361,222,0 +170757407409,222,0 +170757407457,223,0 +170757407505,224,0 +170757407553,223,0 +170757407601,224,0 +170757407648,223,0 +170757407696,224,0 +170757407744,223,0 +170757407792,223,0 +170757407840,218,0 +170757407890,217,0 +170757407938,217,0 +170757407986,226,0 +170757408033,219,0 +170757408081,220,0 +170757408129,220,0 +170757408177,220,0 +170757408225,222,0 +170757408273,222,0 +170757408321,222,0 +170757408369,223,0 +170757408416,225,0 +170757408464,223,0 +170757408512,222,0 +170757408560,224,0 +170757408608,223,0 +170757408656,223,0 +170757408705,223,0 +170757408753,219,0 +170757408801,217,0 +170757408849,218,0 +170757408899,218,0 +170757408946,219,0 +170757408994,219,0 +170757409044,219,0 +170757409093,221,0 +170757409141,223,0 +170757409189,222,0 +170757409239,222,0 +170757409287,222,0 +170757409336,224,0 +170757409384,223,0 +170757409433,224,0 +170757409483,223,0 +170757409532,224,0 +170757409582,223,0 +170757409630,223,0 +170757409678,216,0 +170757409726,216,0 +170757409774,217,0 +170757409821,218,0 +170757409871,219,0 +170757409919,219,0 +170757409968,219,0 +170757410016,219,0 +170757410066,222,0 +170757410115,223,0 +170757410163,222,0 +170757410213,222,0 +170757410261,223,0 +170757410310,223,0 +170757410360,225,0 +170757410409,224,0 +170757410457,224,0 +170757410505,223,0 +170757410553,217,0 +170757410601,217,0 +170757410649,218,0 +170757410699,219,0 +170757410747,219,0 +170757410795,220,0 +170757410842,221,0 +170757410892,221,0 +170757410940,222,0 +170757410988,222,0 +170757411037,222,0 +170757411085,223,0 +170757411133,224,0 +170757411183,224,0 +170757411231,224,0 +170757411279,223,0 +170757411328,223,0 +170757411378,224,0 +170757411426,223,0 +170757411474,217,0 +170757411522,217,0 +170757411570,218,0 +170757411617,219,0 +170757411667,220,0 +170757411715,220,0 +170757411764,221,0 +170757411812,220,0 +170757411860,221,0 +170757411908,221,0 +170757411957,223,0 +170757412005,225,0 +170757412055,223,0 +170757412104,223,0 +170757412152,223,0 +170757412200,223,0 +170757412250,223,0 +170757412299,224,0 +170757412347,222,0 +170757412397,215,0 +170757412445,216,0 +170757412494,217,0 +170757412542,218,0 +170757412590,218,0 +170757412639,218,0 +170757412687,219,0 +170757412737,219,0 +170757412786,221,0 +170757412836,221,0 +170757412885,222,0 +170757412934,221,0 +170757412982,223,0 +170757413030,223,0 +170757413078,227,0 +170757413126,224,0 +170757413174,224,0 +170757413222,223,0 +170757413272,216,0 +170757413320,215,0 +170757413368,215,0 +170757413415,215,0 +170757413465,216,0 +170757413513,216,0 +170757413561,217,0 +170757413609,218,0 +170757413656,218,0 +170757413704,219,0 +170757413754,220,0 +170757413802,221,0 +170757413849,223,0 +170757413897,221,0 +170757413945,223,0 +170757413993,223,0 +170757414041,224,0 +170757414089,222,0 +170757414136,223,0 +170757414184,216,0 +170757414232,214,0 +170757414280,215,0 +170757414329,215,0 +170757414377,215,0 +170757414425,216,0 +170757414473,217,0 +170757414520,218,0 +170757414568,218,0 +170757414618,218,0 +170757414667,219,0 +170757414715,220,0 +170757414763,221,0 +170757414813,222,0 +170757414862,222,0 +170757414910,223,0 +170757414958,223,0 +170757415006,223,0 +170757415054,222,0 +170757415102,215,0 +170757415150,215,0 +170757415198,215,0 +170757415245,216,0 +170757415295,216,0 +170757415343,217,0 +170757415392,217,0 +170757415440,219,0 +170757415488,219,0 +170757415538,219,0 +170757415587,221,0 +170757415637,222,0 +170757415685,221,0 +170757415734,223,0 +170757415782,222,0 +170757415830,223,0 +170757415878,223,0 +170757415926,223,0 +170757415974,222,0 +170757416022,215,0 +170757416069,215,0 +170757416119,216,0 +170757416167,217,0 +170757416215,218,0 +170757416264,218,0 +170757416314,219,0 +170757416362,219,0 +170757416410,221,0 +170757416458,220,0 +170757416506,222,0 +170757416554,222,0 +170757416601,221,0 +170757416651,226,0 +170757416699,225,0 +170757416747,223,0 +170757416796,223,0 +170757416844,223,0 +170757416892,216,0 +170757416940,214,0 +170757416987,216,0 +170757417037,216,0 +170757417085,216,0 +170757417133,218,0 +170757417181,219,0 +170757417229,220,0 +170757417276,220,0 +170757417326,220,0 +170757417374,220,0 +170757417423,222,0 +170757417471,222,0 +170757417519,222,0 +170757417567,224,0 +170757417615,222,0 +170757417663,224,0 +170757417713,223,0 +170757417760,223,0 +170757417808,216,0 +170757417856,215,0 +170757417904,215,0 +170757417954,216,0 +170757418002,216,0 +170757418050,217,0 +170757418098,217,0 +170757418145,218,0 +170757418193,218,0 +170757418241,220,0 +170757418291,221,0 +170757418340,221,0 +170757418388,222,0 +170757418438,223,0 +170757418486,223,0 +170757418535,223,0 +170757418585,222,0 +170757418633,223,0 +170757418681,223,0 +170757418730,215,0 +170757418780,215,0 +170757418828,215,0 +170757418876,216,0 +170757418923,216,0 +170757418971,216,0 +170757419019,218,0 +170757419067,220,0 +170757419115,218,0 +170757419163,220,0 +170757419211,220,0 +170757419259,220,0 +170757419307,221,0 +170757419356,221,0 +170757419406,222,0 +170757419455,222,0 +170757419503,222,0 +170757419553,222,0 +170757419602,223,0 +170757419650,215,0 +170757419698,216,0 +170757419746,216,0 +170757419794,218,0 +170757419844,218,0 +170757419891,218,0 +170757419939,218,0 +170757419987,219,0 +170757420035,220,0 +170757420083,220,0 +170757420133,221,0 +170757420181,219,0 +170757420229,223,0 +170757420277,223,0 +170757420326,224,0 +170757420376,223,0 +170757420424,223,0 +170757420471,223,0 +170757420521,216,0 +170757420569,215,0 +170757420617,216,0 +170757420666,217,0 +170757420716,217,0 +170757420765,218,0 +170757420813,218,0 +170757420861,219,0 +170757420909,219,0 +170757420957,220,0 +170757421005,221,0 +170757421053,223,0 +170757421101,222,0 +170757421148,222,0 +170757421196,223,0 +170757421244,222,0 +170757421292,223,0 +170757421342,223,0 +170757421390,223,0 +170757421438,216,0 +170757421486,215,0 +170757421535,215,0 +170757421583,216,0 +170757421632,218,0 +170757421682,218,0 +170757421731,219,0 +170757421779,219,0 +170757421827,220,0 +170757421877,222,0 +170757421926,223,0 +170757421974,221,0 +170757422022,224,0 +170757422072,226,0 +170757422120,224,0 +170757422168,223,0 +170757422215,225,0 +170757422263,223,0 +170757422311,222,0 +170757422359,217,0 +170757422407,218,0 +170757422455,217,0 +170757422503,219,0 +170757422552,219,0 +170757422602,219,0 +170757422651,220,0 +170757422699,221,0 +170757422747,221,0 +170757422795,220,0 +170757422845,223,0 +170757422893,223,0 +170757422942,223,0 +170757422990,223,0 +170757423040,223,0 +170757423089,223,0 +170757423137,223,0 +170757423185,222,0 +170757423233,219,0 +170757423282,215,0 +170757423330,216,0 +170757423380,217,0 +170757423428,217,0 +170757423475,218,0 +170757423525,217,0 +170757423575,220,0 +170757423622,220,0 +170757423672,220,0 +170757423721,221,0 +170757423769,221,0 +170757423819,222,0 +170757423867,225,0 +170757423915,224,0 +170757423963,223,0 +170757424011,224,0 +170757424060,223,0 +170757424108,222,0 +170757424156,216,0 +170757424204,216,0 +170757424252,217,0 +170757424300,217,0 +170757424348,218,0 +170757424397,219,0 +170757424445,220,0 +170757424495,220,0 +170757424543,221,0 +170757424592,222,0 +170757424640,223,0 +170757424688,223,0 +170757424736,223,0 +170757424785,223,0 +170757424833,224,0 +170757424881,224,0 +170757424929,224,0 +170757424977,223,0 +170757425025,221,0 +170757425075,216,0 +170757425124,216,0 +170757425174,217,0 +170757425221,217,0 +170757425271,218,0 +170757425320,217,0 +170757425368,219,0 +170757425416,219,0 +170757425464,221,0 +170757425512,220,0 +170757425560,222,0 +170757425608,222,0 +170757425655,223,0 +170757425703,222,0 +170757425751,222,0 +170757425801,222,0 +170757425850,222,0 +170757425898,221,0 +170757425948,217,0 +170757425996,215,0 +170757426044,215,0 +170757426092,216,0 +170757426139,216,0 +170757426189,216,0 +170757426237,217,0 +170757426286,217,0 +170757426334,218,0 +170757426384,219,0 +170757426433,220,0 +170757426483,220,0 +170757426531,221,0 +170757426579,221,0 +170757426628,222,0 +170757426676,222,0 +170757426724,222,0 +170757426772,222,0 +170757426820,222,0 +170757426868,217,0 +170757426917,216,0 +170757426965,217,0 +170757427013,218,0 +170757427061,218,0 +170757427109,219,0 +170757427157,219,0 +170757427206,220,0 +170757427256,221,0 +170757427304,221,0 +170757427353,222,0 +170757427403,222,0 +170757427452,223,0 +170757427500,223,0 +170757427550,223,0 +170757427597,224,0 +170757427645,223,0 +170757427695,223,0 +170757427743,222,0 +170757427791,217,0 +170757427839,218,0 +170757427888,219,0 +170757427938,219,0 +170757427987,220,0 +170757428037,222,0 +170757428085,221,0 +170757428134,221,0 +170757428182,222,0 +170757428230,223,0 +170757428278,223,0 +170757428327,223,0 +170757428377,223,0 +170757428425,224,0 +170757428473,223,0 +170757428522,223,0 +170757428570,223,0 +170757428618,223,0 +170757428667,217,0 +170757428717,218,0 +170757428765,218,0 +170757428814,219,0 +170757428862,219,0 +170757428912,220,0 +170757428960,221,0 +170757429009,222,0 +170757429057,221,0 +170757429105,222,0 +170757429153,223,0 +170757429201,222,0 +170757429249,224,0 +170757429297,225,0 +170757429345,224,0 +170757429395,226,0 +170757429442,224,0 +170757429490,224,0 +170757429540,223,0 +170757429588,217,0 +170757429637,216,0 +170757429685,217,0 +170757429735,218,0 +170757429783,218,0 +170757429832,220,0 +170757429880,221,0 +170757429928,222,0 +170757429976,221,0 +170757430024,222,0 +170757430072,223,0 +170757430121,225,0 +170757430171,225,0 +170757430219,224,0 +170757430268,225,0 +170757430316,225,0 +170757430364,225,0 +170757430412,225,0 +170757430460,223,0 +170757430508,216,0 +170757430556,215,0 +170757430604,216,0 +170757430652,217,0 +170757430700,218,0 +170757430749,219,0 +170757430797,219,0 +170757430845,220,0 +170757430893,221,0 +170757430942,221,0 +170757430992,221,0 +170757431040,222,0 +170757431089,223,0 +170757431137,223,0 +170757431187,223,0 +170757431236,224,0 +170757431286,223,0 +170757431334,223,0 +170757431383,216,0 +170757431431,215,0 +170757431481,215,0 +170757431529,216,0 +170757431578,217,0 +170757431626,219,0 +170757431674,218,0 +170757431724,218,0 +170757431773,218,0 +170757431821,220,0 +170757431869,220,0 +170757431917,221,0 +170757431965,222,0 +170757432013,223,0 +170757432061,224,0 +170757432109,223,0 +170757432157,223,0 +170757432206,223,0 +170757432256,223,0 +170757432304,216,0 +170757432352,215,0 +170757432400,215,0 +170757432449,216,0 +170757432497,216,0 +170757432545,216,0 +170757432593,216,0 +170757432642,218,0 +170757432690,218,0 +170757432738,220,0 +170757432786,221,0 +170757432834,221,0 +170757432882,221,0 +170757432932,221,0 +170757432980,222,0 +170757433028,222,0 +170757433077,222,0 +170757433127,223,0 +170757433175,222,0 +170757433223,215,0 +170757433271,215,0 +170757433319,215,0 +170757433368,215,0 +170757433416,215,0 +170757433464,217,0 +170757433514,217,0 +170757433563,219,0 +170757433611,219,0 +170757433659,221,0 +170757433709,221,0 +170757433757,219,0 +170757433804,221,0 +170757433852,222,0 +170757433900,222,0 +170757433948,224,0 +170757433996,222,0 +170757434044,223,0 +170757434092,221,0 +170757434140,214,0 +170757434188,214,0 +170757434237,215,0 +170757434285,215,0 +170757434335,215,0 +170757434383,215,0 +170757434431,216,0 +170757434478,216,0 +170757434526,218,0 +170757434574,220,0 +170757434622,219,0 +170757434670,220,0 +170757434718,221,0 +170757434766,221,0 +170757434814,222,0 +170757434861,222,0 +170757434911,222,0 +170757434959,223,0 +170757435007,216,0 +170757435055,215,0 +170757435103,214,0 +170757435152,215,0 +170757435200,215,0 +170757435250,215,0 +170757435297,216,0 +170757435345,216,0 +170757435395,217,0 +170757435442,218,0 +170757435490,219,0 +170757435538,220,0 +170757435586,221,0 +170757435635,220,0 +170757435683,221,0 +170757435731,222,0 +170757435779,222,0 +170757435826,221,0 +170757435874,223,0 +170757435922,217,0 +170757435970,215,0 +170757436018,217,0 +170757436066,218,0 +170757436115,218,0 +170757436165,218,0 +170757436213,219,0 +170757436261,219,0 +170757436309,220,0 +170757436358,220,0 +170757436408,222,0 +170757436456,223,0 +170757436503,222,0 +170757436551,223,0 +170757436601,223,0 +170757436650,225,0 +170757436698,225,0 +170757436746,223,0 +170757436794,223,0 +170757436842,216,0 +170757436890,216,0 +170757436938,218,0 +170757436986,218,0 +170757437034,219,0 +170757437083,219,0 +170757437131,220,0 +170757437181,221,0 +170757437229,221,0 +170757437277,222,0 +170757437325,222,0 +170757437373,223,0 +170757437422,223,0 +170757437472,224,0 +170757437521,223,0 +170757437569,224,0 +170757437619,221,0 +170757437668,223,0 +170757437718,216,0 +170757437766,216,0 +170757437814,217,0 +170757437861,219,0 +170757437909,219,0 +170757437957,221,0 +170757438006,220,0 +170757438054,220,0 +170757438104,221,0 +170757438152,221,0 +170757438199,222,0 +170757438247,223,0 +170757438295,221,0 +170757438345,223,0 +170757438392,225,0 +170757438440,226,0 +170757438488,224,0 +170757438536,223,0 +170757438584,223,0 +170757438632,217,0 +170757438680,217,0 +170757438729,217,0 +170757438777,217,0 +170757438826,218,0 +170757438874,219,0 +170757438922,220,0 +170757438970,221,0 +170757439020,221,0 +170757439069,221,0 +170757439117,222,0 +170757439167,223,0 +170757439215,224,0 +170757439263,225,0 +170757439310,224,0 +170757439360,223,0 +170757439408,224,0 +170757439456,224,0 +170757439504,223,0 +170757439553,217,0 +170757439601,218,0 +170757439651,218,0 +170757439699,220,0 +170757439748,220,0 +170757439798,220,0 +170757439847,221,0 +170757439897,222,0 +170757439947,223,0 +170757439994,222,0 +170757440042,222,0 +170757440090,218,0 +170757440138,225,0 +170757440186,224,0 +170757440236,225,0 +170757440284,223,0 +170757440333,223,0 +170757440383,222,0 +170757440430,219,0 +170757440480,218,0 +170757440528,217,0 +170757440577,217,0 +170757440627,219,0 +170757440675,218,0 +170757440725,221,0 +170757440774,220,0 +170757440822,220,0 +170757440870,221,0 +170757440919,221,0 +170757440967,222,0 +170757441017,224,0 +170757441065,224,0 +170757441114,223,0 +170757441164,222,0 +170757441212,223,0 +170757441260,222,0 +170757441308,222,0 +170757441356,216,0 +170757441405,214,0 +170757441455,214,0 +170757441502,214,0 +170757441550,214,0 +170757441598,214,0 +170757441646,214,0 +170757441696,215,0 +170757441745,215,0 +170757441795,215,0 +170757441844,216,0 +170757441892,217,0 +170757441940,217,0 +170757441988,218,0 +170757442038,218,0 +170757442085,219,0 +170757442133,219,0 +170757442181,223,0 +170757442229,223,0 +170757442277,215,0 +170757442327,215,0 +170757442376,215,0 +170757442424,216,0 +170757442472,216,0 +170757442519,218,0 +170757442567,217,0 +170757442615,218,0 +170757442663,219,0 +170757442711,219,0 +170757442758,220,0 +170757442806,220,0 +170757442854,221,0 +170757442903,222,0 +170757442951,222,0 +170757442999,223,0 +170757443047,222,0 +170757443095,223,0 +170757443143,225,0 +170757443192,215,0 +170757443240,215,0 +170757443288,216,0 +170757443336,217,0 +170757443383,217,0 +170757443431,218,0 +170757443479,218,0 +170757443527,218,0 +170757443575,219,0 +170757443623,220,0 +170757443671,221,0 +170757443718,221,0 +170757443768,222,0 +170757443816,222,0 +170757443865,221,0 +170757443915,222,0 +170757443964,223,0 +170757444014,223,0 +170757444062,217,0 +170757444110,216,0 +170757444159,217,0 +170757444207,218,0 +170757444255,219,0 +170757444303,219,0 +170757444351,220,0 +170757444399,221,0 +170757444447,221,0 +170757444495,221,0 +170757444543,223,0 +170757444592,223,0 +170757444640,223,0 +170757444688,224,0 +170757444736,223,0 +170757444784,224,0 +170757444833,223,0 +170757444881,224,0 +170757444929,224,0 +170757444979,218,0 +170757445027,217,0 +170757445075,218,0 +170757445124,219,0 +170757445172,219,0 +170757445221,220,0 +170757445269,221,0 +170757445317,222,0 +170757445365,221,0 +170757445415,223,0 +170757445463,224,0 +170757445510,224,0 +170757445558,223,0 +170757445606,224,0 +170757445656,224,0 +170757445704,224,0 +170757445752,223,0 +170757445800,223,0 +170757445848,223,0 +170757445896,215,0 +170757445944,215,0 +170757445991,217,0 +170757446039,217,0 +170757446087,218,0 +170757446137,219,0 +170757446186,218,0 +170757446234,219,0 +170757446284,220,0 +170757446333,220,0 +170757446383,222,0 +170757446432,223,0 +170757446480,223,0 +170757446528,222,0 +170757446576,223,0 +170757446624,224,0 +170757446672,223,0 +170757446720,223,0 +170757446769,219,0 +170757446819,215,0 +170757446867,215,0 +170757446914,216,0 +170757446964,220,0 +170757447013,217,0 +170757447061,217,0 +170757447109,218,0 +170757447157,218,0 +170757447205,219,0 +170757447253,220,0 +170757447302,222,0 +170757447350,221,0 +170757447400,222,0 +170757447448,223,0 +170757447497,223,0 +170757447545,224,0 +170757447593,222,0 +170757447641,222,0 +170757447689,216,0 +170757447739,214,0 +170757447786,215,0 +170757447834,216,0 +170757447882,217,0 +170757447930,217,0 +170757447980,218,0 +170757448028,218,0 +170757448075,219,0 +170757448124,220,0 +170757448173,221,0 +170757448221,221,0 +170757448271,221,0 +170757448319,223,0 +170757448366,225,0 +170757448414,223,0 +170757448462,223,0 +170757448510,222,0 +170757448558,223,0 +170757448606,216,0 +170757448656,215,0 +170757448704,216,0 +170757448751,216,0 +170757448799,217,0 +170757448847,217,0 +170757448897,218,0 +170757448946,219,0 +170757448994,219,0 +170757449042,220,0 +170757449090,220,0 +170757449138,221,0 +170757449186,221,0 +170757449235,222,0 +170757449283,222,0 +170757449333,223,0 +170757449381,224,0 +170757449430,223,0 +170757449478,223,0 +170757449526,215,0 +170757449574,216,0 +170757449622,217,0 +170757449670,218,0 +170757449720,217,0 +170757449768,217,0 +170757449815,218,0 +170757449863,219,0 +170757449911,219,0 +170757449961,222,0 +170757450009,221,0 +170757450057,222,0 +170757450106,223,0 +170757450154,223,0 +170757450202,224,0 +170757450250,223,0 +170757450298,224,0 +170757450347,223,0 +170757450395,216,0 +170757450443,216,0 +170757450491,217,0 +170757450539,218,0 +170757450588,218,0 +170757450636,219,0 +170757450687,220,0 +170757450736,221,0 +170757450784,220,0 +170757450832,221,0 +170757450880,221,0 +170757450928,222,0 +170757450976,223,0 +170757451025,223,0 +170757451075,224,0 +170757451123,224,0 +170757451171,223,0 +170757451219,224,0 +170757451267,223,0 +170757451314,217,0 +170757451362,217,0 +170757451412,218,0 +170757451461,219,0 +170757451509,219,0 +170757451559,220,0 +170757451608,221,0 +170757451656,223,0 +170757451706,221,0 +170757451754,221,0 +170757451802,223,0 +170757451850,223,0 +170757451898,223,0 +170757451946,223,0 +170757451993,224,0 +170757452041,224,0 +170757452089,223,0 +170757452139,222,0 +170757452188,222,0 +170757452236,216,0 +170757452284,217,0 +170757452334,217,0 +170757452382,218,0 +170757452430,218,0 +170757452478,220,0 +170757452527,220,0 +170757452575,221,0 +170757452623,221,0 +170757452673,222,0 +170757452721,224,0 +170757452768,224,0 +170757452818,224,0 +170757452866,224,0 +170757452914,223,0 +170757452962,224,0 +170757453009,225,0 +170757453057,223,0 +170757453107,217,0 +170757453155,217,0 +170757453203,217,0 +170757453250,219,0 +170757453298,221,0 +170757453346,220,0 +170757453394,221,0 +170757453442,220,0 +170757453490,222,0 +170757453538,225,0 +170757453586,222,0 +170757453634,225,0 +170757453682,223,0 +170757453729,225,0 +170757453777,224,0 +170757453825,223,0 +170757453873,225,0 +170757453921,223,0 +170757453969,223,0 +170757454017,216,0 +170757454065,216,0 +170757454115,217,0 +170757454164,217,0 +170757454212,219,0 +170757454260,219,0 +170757454309,220,0 +170757454357,221,0 +170757454406,220,0 +170757454454,221,0 +170757454502,221,0 +170757454550,223,0 +170757454598,222,0 +170757454646,224,0 +170757454694,224,0 +170757454743,224,0 +170757454791,223,0 +170757454840,223,0 +170757454890,222,0 +170757454938,216,0 +170757454986,216,0 +170757455035,216,0 +170757455083,217,0 +170757455131,219,0 +170757455179,218,0 +170757455227,220,0 +170757455276,220,0 +170757455324,222,0 +170757455374,221,0 +170757455423,222,0 +170757455471,224,0 +170757455519,224,0 +170757455568,225,0 +170757455616,224,0 +170757455666,224,0 +170757455715,224,0 +170757455763,223,0 +170757455813,222,0 +170757455862,214,0 +170757455910,213,0 +170757455958,213,0 +170757456006,214,0 +170757456054,215,0 +170757456104,214,0 +170757456152,214,0 +170757456199,214,0 +170757456247,215,0 +170757456297,216,0 +170757456344,215,0 +170757456392,216,0 +170757456440,217,0 +170757456488,218,0 +170757456538,218,0 +170757456587,219,0 +170757456635,219,0 +170757456683,220,0 +170757456731,221,0 +170757456778,222,0 +170757456826,221,0 +170757456874,222,0 +170757456924,223,0 +170757456973,222,0 +170757457023,222,0 +170757457071,222,0 +170757457119,222,0 +170757457167,219,0 +170757457216,215,0 +170757457264,214,0 +170757457312,215,0 +170757457362,216,0 +170757457411,216,0 +170757457459,217,0 +170757457507,216,0 +170757457555,218,0 +170757457603,219,0 +170757457651,220,0 +170757457699,221,0 +170757457748,221,0 +170757457796,223,0 +170757457844,222,0 +170757457891,223,0 +170757457939,223,0 +170757457987,223,0 +170757458035,223,0 +170757458083,216,0 +170757458132,214,0 +170757458180,215,0 +170757458228,216,0 +170757458276,217,0 +170757458323,216,0 +170757458371,217,0 +170757458421,219,0 +170757458469,219,0 +170757458516,220,0 +170757458564,221,0 +170757458614,221,0 +170757458662,221,0 +170757458711,222,0 +170757458761,222,0 +170757458809,223,0 +170757458857,223,0 +170757458905,224,0 +170757458953,222,0 +170757459001,216,0 +170757459048,215,0 +170757459098,215,0 +170757459147,216,0 +170757459195,216,0 +170757459243,217,0 +170757459291,217,0 +170757459341,218,0 +170757459390,218,0 +170757459438,219,0 +170757459486,219,0 +170757459534,220,0 +170757459584,220,0 +170757459632,222,0 +170757459679,221,0 +170757459727,222,0 +170757459777,223,0 +170757459827,223,0 +170757459875,222,0 +170757459923,215,0 +170757459970,214,0 +170757460018,215,0 +170757460066,215,0 +170757460114,216,0 +170757460164,216,0 +170757460213,217,0 +170757460263,218,0 +170757460311,218,0 +170757460359,221,0 +170757460408,221,0 +170757460458,221,0 +170757460506,221,0 +170757460555,222,0 +170757460603,223,0 +170757460653,223,0 +170757460701,223,0 +170757460749,223,0 +170757460797,217,0 +170757460845,215,0 +170757460893,216,0 +170757460940,216,0 +170757460988,218,0 +170757461036,218,0 +170757461084,219,0 +170757461134,219,0 +170757461183,220,0 +170757461231,221,0 +170757461279,221,0 +170757461327,222,0 +170757461375,223,0 +170757461425,222,0 +170757461473,223,0 +170757461522,222,0 +170757461570,222,0 +170757461619,222,0 +170757461667,222,0 +170757461717,216,0 +170757461765,215,0 +170757461814,215,0 +170757461864,216,0 +170757461913,217,0 +170757461961,218,0 +170757462009,219,0 +170757462058,219,0 +170757462106,220,0 +170757462154,220,0 +170757462204,221,0 +170757462252,221,0 +170757462300,224,0 +170757462349,223,0 +170757462399,224,0 +170757462446,223,0 +170757462494,223,0 +170757462542,222,0 +170757462592,222,0 +170757462640,217,0 +170757462688,215,0 +170757462737,215,0 +170757462785,216,0 +170757462833,218,0 +170757462881,218,0 +170757462931,218,0 +170757462980,219,0 +170757463030,221,0 +170757463078,220,0 +170757463126,220,0 +170757463174,221,0 +170757463223,222,0 +170757463271,225,0 +170757463319,224,0 +170757463368,224,0 +170757463418,222,0 +170757463467,222,0 +170757463517,216,0 +170757463565,215,0 +170757463613,215,0 +170757463660,216,0 +170757463710,216,0 +170757463758,217,0 +170757463806,218,0 +170757463854,217,0 +170757463901,218,0 +170757463949,219,0 +170757463999,219,0 +170757464047,220,0 +170757464096,220,0 +170757464144,222,0 +170757464192,222,0 +170757464242,222,0 +170757464289,222,0 +170757464337,222,0 +170757464387,224,0 +170757464435,216,0 +170757464484,215,0 +170757464532,216,0 +170757464582,216,0 +170757464631,218,0 +170757464681,217,0 +170757464729,218,0 +170757464776,218,0 +170757464826,220,0 +170757464874,220,0 +170757464923,219,0 +170757464971,220,0 +170757465019,222,0 +170757465067,222,0 +170757465115,224,0 +170757465164,223,0 +170757465214,223,0 +170757465262,222,0 +170757465310,222,0 +170757465358,215,0 +170757465407,215,0 +170757465455,216,0 +170757465505,217,0 +170757465553,217,0 +170757465601,218,0 +170757465649,218,0 +170757465697,217,0 +170757465746,220,0 +170757465794,221,0 +170757465842,221,0 +170757465890,221,0 +170757465938,222,0 +170757465986,223,0 +170757466034,224,0 +170757466083,223,0 +170757466133,223,0 +170757466183,223,0 +170757466232,216,0 +170757466280,216,0 +170757466328,217,0 +170757466376,218,0 +170757466424,218,0 +170757466472,219,0 +170757466520,219,0 +170757466568,219,0 +170757466616,222,0 +170757466665,220,0 +170757466713,221,0 +170757466761,222,0 +170757466809,221,0 +170757466857,223,0 +170757466906,224,0 +170757466954,226,0 +170757467004,223,0 +170757467052,225,0 +170757467100,223,0 +170757467149,218,0 +170757467197,218,0 +170757467245,219,0 +170757467293,219,0 +170757467341,221,0 +170757467389,220,0 +170757467437,221,0 +170757467485,222,0 +170757467535,222,0 +170757467583,221,0 +170757467630,222,0 +170757467678,223,0 +170757467726,223,0 +170757467776,223,0 +170757467823,225,0 +170757467873,222,0 +170757467922,223,0 +170757467970,223,0 +170757468018,222,0 +170757468066,219,0 +170757468114,218,0 +170757468161,218,0 +170757468209,220,0 +170757468257,220,0 +170757468307,221,0 +170757468356,221,0 +170757468404,222,0 +170757468454,222,0 +170757468503,227,0 +170757468553,223,0 +170757468602,224,0 +170757468650,224,0 +170757468700,224,0 +170757468748,225,0 +170757468797,223,0 +170757468845,223,0 +170757468893,223,0 +170757468941,221,0 +170757468990,217,0 +170757469038,217,0 +170757469086,218,0 +170757469136,219,0 +170757469185,220,0 +170757469233,221,0 +170757469281,221,0 +170757469329,222,0 +170757469378,222,0 +170757469428,223,0 +170757469477,225,0 +170757469527,223,0 +170757469575,224,0 +170757469623,225,0 +170757469671,224,0 +170757469718,219,0 +170757469766,223,0 +170757469814,223,0 +170757469864,217,0 +170757469912,216,0 +170757469961,216,0 +170757470009,218,0 +170757470057,218,0 +170757470105,219,0 +170757470153,220,0 +170757470203,219,0 +170757470252,222,0 +170757470300,222,0 +170757470348,223,0 +170757470396,222,0 +170757470444,223,0 +170757470492,223,0 +170757470541,222,0 +170757470591,222,0 +170757470639,223,0 +170757470688,223,0 +170757470736,222,0 +170757470784,215,0 +170757470834,215,0 +170757470882,216,0 +170757470931,217,0 +170757470979,217,0 +170757471027,217,0 +170757471077,218,0 +170757471125,218,0 +170757471173,218,0 +170757471222,219,0 +170757471271,220,0 +170757471320,222,0 +170757471369,222,0 +170757471419,222,0 +170757471466,222,0 +170757471516,223,0 +170757471565,222,0 +170757471615,223,0 +170757471663,216,0 +170757471711,216,0 +170757471760,216,0 +170757471808,216,0 +170757471856,217,0 +170757471904,218,0 +170757471952,218,0 +170757472001,219,0 +170757472051,220,0 +170757472099,221,0 +170757472147,221,0 +170757472194,222,0 +170757472244,223,0 +170757472292,222,0 +170757472340,224,0 +170757472388,223,0 +170757472437,225,0 +170757472487,224,0 +170757472535,223,0 +170757472584,217,0 +170757472632,216,0 +170757472680,217,0 +170757472728,218,0 +170757472778,217,0 +170757472826,218,0 +170757472875,220,0 +170757472923,220,0 +170757472971,220,0 +170757473021,221,0 +170757473070,221,0 +170757473118,223,0 +170757473168,224,0 +170757473216,224,0 +170757473265,223,0 +170757473315,224,0 +170757473364,223,0 +170757473412,222,0 +170757473460,223,0 +170757473510,216,0 +170757473559,216,0 +170757473609,217,0 +170757473658,219,0 +170757473708,219,0 +170757473756,219,0 +170757473804,220,0 +170757473853,221,0 +170757473901,222,0 +170757473949,222,0 +170757473998,222,0 +170757474046,224,0 +170757474094,223,0 +170757474144,223,0 +170757474192,223,0 +170757474241,224,0 +170757474289,224,0 +170757474339,223,0 +170757474387,217,0 +170757474434,215,0 +170757474482,215,0 +170757474532,217,0 +170757474581,217,0 +170757474629,218,0 +170757474677,219,0 +170757474725,219,0 +170757474774,221,0 +170757474822,220,0 +170757474870,221,0 +170757474920,221,0 +170757474968,222,0 +170757475016,221,0 +170757475064,223,0 +170757475113,222,0 +170757475161,224,0 +170757475209,223,0 +170757475257,222,0 +170757475306,216,0 +170757475354,214,0 +170757475402,215,0 +170757475450,216,0 +170757475498,216,0 +170757475546,216,0 +170757475595,217,0 +170757475645,218,0 +170757475694,217,0 +170757475744,218,0 +170757475792,219,0 +170757475841,220,0 +170757475891,221,0 +170757475939,222,0 +170757475987,226,0 +170757476034,223,0 +170757476084,221,0 +170757476132,222,0 +170757476181,222,0 +170757476231,214,0 +170757476279,215,0 +170757476327,215,0 +170757476375,215,0 +170757476424,216,0 +170757476472,216,0 +170757476522,217,0 +170757476569,218,0 +170757476619,219,0 +170757476667,219,0 +170757476716,219,0 +170757476764,220,0 +170757476812,221,0 +170757476860,221,0 +170757476908,221,0 +170757476956,222,0 +170757477004,222,0 +170757477054,223,0 +170757477102,216,0 +170757477151,214,0 +170757477199,215,0 +170757477247,215,0 +170757477297,217,0 +170757477346,217,0 +170757477396,218,0 +170757477444,218,0 +170757477491,219,0 +170757477541,220,0 +170757477589,221,0 +170757477638,222,0 +170757477686,222,0 +170757477734,223,0 +170757477782,222,0 +170757477830,222,0 +170757477880,222,0 +170757477929,223,0 +170757477979,223,0 +170757478027,216,0 +170757478075,215,0 +170757478123,215,0 +170757478170,215,0 +170757478220,216,0 +170757478268,216,0 +170757478316,217,0 +170757478364,219,0 +170757478413,219,0 +170757478461,219,0 +170757478509,221,0 +170757478557,221,0 +170757478605,222,0 +170757478653,222,0 +170757478701,221,0 +170757478749,221,0 +170757478796,221,0 +170757478844,222,0 +170757478894,222,0 +170757478942,215,0 +170757478990,214,0 +170757479039,215,0 +170757479087,215,0 +170757479135,215,0 +170757479185,216,0 +170757479233,216,0 +170757479282,217,0 +170757479330,218,0 +170757479378,219,0 +170757479426,215,0 +170757479474,219,0 +170757479523,220,0 +170757479571,221,0 +170757479619,222,0 +170757479667,221,0 +170757479714,223,0 +170757479762,223,0 +170757479810,222,0 +170757479860,215,0 +170757479908,215,0 +170757479955,216,0 +170757480005,216,0 +170757480053,218,0 +170757480101,218,0 +170757480149,219,0 +170757480198,220,0 +170757480248,219,0 +170757480297,221,0 +170757480345,222,0 +170757480395,221,0 +170757480443,222,0 +170757480491,222,0 +170757480540,223,0 +170757480588,224,0 +170757480638,223,0 +170757480687,223,0 +170757480735,216,0 +170757480783,215,0 +170757480831,216,0 +170757480879,217,0 +170757480928,218,0 +170757480978,218,0 +170757481026,220,0 +170757481075,219,0 +170757481123,219,0 +170757481171,220,0 +170757481220,220,0 +170757481268,221,0 +170757481316,221,0 +170757481364,223,0 +170757481412,224,0 +170757481460,224,0 +170757481510,224,0 +170757481558,223,0 +170757481605,224,0 +170757481653,218,0 +170757481701,217,0 +170757481749,218,0 +170757481799,219,0 +170757481848,219,0 +170757481896,220,0 +170757481944,220,0 +170757481992,220,0 +170757482040,221,0 +170757482088,222,0 +170757482137,221,0 +170757482185,222,0 +170757482235,223,0 +170757482283,222,0 +170757482332,223,0 +170757482382,224,0 +170757482431,223,0 +170757482479,224,0 +170757482527,222,0 +170757482577,216,0 +170757482625,217,0 +170757482674,218,0 +170757482722,218,0 +170757482772,219,0 +170757482821,219,0 +170757482869,220,0 +170757482917,221,0 +170757482967,222,0 +170757483016,221,0 +170757483066,222,0 +170757483115,223,0 +170757483163,224,0 +170757483211,222,0 +170757483259,225,0 +170757483307,224,0 +170757483355,224,0 +170757483403,222,0 +170757483453,217,0 +170757483501,217,0 +170757483550,217,0 +170757483598,218,0 +170757483646,219,0 +170757483695,219,0 +170757483743,221,0 +170757483793,221,0 +170757483841,221,0 +170757483890,221,0 +170757483938,222,0 +170757483988,223,0 +170757484036,223,0 +170757484085,222,0 +170757484133,223,0 +170757484181,225,0 +170757484229,223,0 +170757484279,224,0 +170757484326,222,0 +170757484374,217,0 +170757484424,217,0 +170757484474,218,0 +170757484523,218,0 +170757484572,219,0 +170757484620,220,0 +170757484670,220,0 +170757484718,220,0 +170757484766,221,0 +170757484815,221,0 +170757484865,222,0 +170757484913,222,0 +170757484961,223,0 +170757485010,222,0 +170757485060,227,0 +170757485108,223,0 +170757485156,223,0 +170757485204,224,0 +170757485252,220,0 +170757485301,215,0 +170757485349,216,0 +170757485397,217,0 +170757485445,217,0 +170757485493,218,0 +170757485542,218,0 +170757485592,219,0 +170757485640,220,0 +170757485688,220,0 +170757485737,221,0 +170757485785,221,0 +170757485835,221,0 +170757485882,221,0 +170757485930,223,0 +170757485978,224,0 +170757486028,223,0 +170757486076,222,0 +170757486124,222,0 +170757486173,216,0 +170757486221,215,0 +170757486269,216,0 +170757486317,217,0 +170757486365,217,0 +170757486413,218,0 +170757486461,219,0 +170757486509,219,0 +170757486559,220,0 +170757486606,221,0 +170757486656,222,0 +170757486704,226,0 +170757486753,222,0 +170757486801,224,0 +170757486851,224,0 +170757486899,229,0 +170757486947,227,0 +170757486996,224,0 +170757487046,222,0 +170757487094,216,0 +170757487143,216,0 +170757487191,217,0 +170757487239,217,0 +170757487289,218,0 +170757487337,218,0 +170757487385,219,0 +170757487432,220,0 +170757487480,221,0 +170757487528,221,0 +170757487578,222,0 +170757487626,222,0 +170757487674,223,0 +170757487722,225,0 +170757487770,224,0 +170757487819,223,0 +170757487867,223,0 +170757487915,224,0 +170757487964,222,0 +170757488012,216,0 +170757488060,217,0 +170757488108,218,0 +170757488158,218,0 +170757488206,219,0 +170757488254,219,0 +170757488301,221,0 +170757488349,220,0 +170757488397,221,0 +170757488445,221,0 +170757488493,223,0 +170757488541,224,0 +170757488589,223,0 +170757488637,224,0 +170757488686,224,0 +170757488734,223,0 +170757488782,226,0 +170757488830,223,0 +170757488878,216,0 +170757488926,215,0 +170757488974,216,0 +170757489021,216,0 +170757489069,217,0 +170757489119,225,0 +170757489167,219,0 +170757489214,220,0 +170757489264,221,0 +170757489312,221,0 +170757489361,222,0 +170757489409,222,0 +170757489457,222,0 +170757489505,223,0 +170757489553,222,0 +170757489601,223,0 +170757489649,223,0 +170757489698,223,0 +170757489746,222,0 +170757489794,216,0 +170757489842,215,0 +170757489891,215,0 +170757489939,216,0 +170757489987,216,0 +170757490035,216,0 +170757490085,218,0 +170757490133,219,0 +170757490181,219,0 +170757490228,219,0 +170757490278,220,0 +170757490327,221,0 +170757490377,221,0 +170757490425,222,0 +170757490473,222,0 +170757490522,222,0 +170757490572,221,0 +170757490621,222,0 +170757490669,219,0 +170757490717,215,0 +170757490767,215,0 +170757490814,215,0 +170757490864,215,0 +170757490913,217,0 +170757490961,216,0 +170757491009,217,0 +170757491059,217,0 +170757491107,218,0 +170757491154,218,0 +170757491202,219,0 +170757491250,219,0 +170757491300,217,0 +170757491348,220,0 +170757491396,221,0 +170757491444,221,0 +170757491492,221,0 +170757491541,222,0 +170757491591,217,0 +170757491639,215,0 +170757491687,216,0 +170757491734,216,0 +170757491782,216,0 +170757491830,216,0 +170757491880,217,0 +170757491929,216,0 +170757491977,218,0 +170757492027,219,0 +170757492076,218,0 +170757492124,219,0 +170757492172,220,0 +170757492220,221,0 +170757492268,221,0 +170757492316,222,0 +170757492364,223,0 +170757492412,222,0 +170757492461,223,0 +170757492511,216,0 +170757492560,215,0 +170757492608,216,0 +170757492658,217,0 +170757492708,216,0 +170757492756,216,0 +170757492805,217,0 +170757492853,218,0 +170757492901,219,0 +170757492951,220,0 +170757493000,220,0 +170757493049,221,0 +170757493099,223,0 +170757493147,222,0 +170757493196,221,0 +170757493244,222,0 +170757493294,222,0 +170757493343,221,0 +170757493391,218,0 +170757493441,215,0 +170757493490,216,0 +170757493540,216,0 +170757493588,217,0 +170757493636,217,0 +170757493683,218,0 +170757493733,219,0 +170757493783,219,0 +170757493832,220,0 +170757493882,221,0 +170757493930,223,0 +170757493978,222,0 +170757494025,222,0 +170757494075,223,0 +170757494123,223,0 +170757494172,223,0 +170757494220,223,0 +170757494268,222,0 +170757494318,216,0 +170757494367,216,0 +170757494415,217,0 +170757494463,218,0 +170757494511,218,0 +170757494559,219,0 +170757494607,220,0 +170757494655,220,0 +170757494705,222,0 +170757494754,222,0 +170757494802,222,0 +170757494850,223,0 +170757494899,223,0 +170757494947,223,0 +170757494995,223,0 +170757495043,224,0 +170757495091,223,0 +170757495140,223,0 +170757495190,222,0 +170757495238,217,0 +170757495286,217,0 +170757495335,218,0 +170757495385,219,0 +170757495433,219,0 +170757495482,220,0 +170757495530,221,0 +170757495578,222,0 +170757495628,221,0 +170757495676,221,0 +170757495724,221,0 +170757495771,223,0 +170757495820,223,0 +170757495869,223,0 +170757495919,223,0 +170757495966,223,0 +170757496014,223,0 +170757496062,223,0 +170757496110,222,0 +170757496158,215,0 +170757496206,216,0 +170757496254,217,0 +170757496302,218,0 +170757496352,219,0 +170757496399,219,0 +170757496447,219,0 +170757496495,219,0 +170757496543,221,0 +170757496591,221,0 +170757496639,222,0 +170757496687,222,0 +170757496737,223,0 +170757496785,223,0 +170757496834,223,0 +170757496882,224,0 +170757496932,223,0 +170757496980,223,0 +170757497028,216,0 +170757497075,215,0 +170757497125,216,0 +170757497173,216,0 +170757497222,217,0 +170757497270,218,0 +170757497320,219,0 +170757497369,220,0 +170757497417,221,0 +170757497467,220,0 +170757497515,221,0 +170757497562,223,0 +170757497612,224,0 +170757497660,223,0 +170757497708,223,0 +170757497756,224,0 +170757497804,224,0 +170757497852,222,0 +170757497900,223,0 +170757497948,216,0 +170757497995,215,0 +170757498043,217,0 +170757498093,218,0 +170757498141,218,0 +170757498190,219,0 +170757498238,220,0 +170757498288,221,0 +170757498337,222,0 +170757498387,222,0 +170757498436,222,0 +170757498484,224,0 +170757498532,223,0 +170757498582,224,0 +170757498630,222,0 +170757498677,224,0 +170757498725,223,0 +170757498773,223,0 +170757498821,223,0 +170757498869,215,0 +170757498918,215,0 +170757498968,216,0 +170757499016,217,0 +170757499063,218,0 +170757499111,218,0 +170757499159,219,0 +170757499209,219,0 +170757499257,221,0 +170757499306,221,0 +170757499356,222,0 +170757499404,222,0 +170757499452,222,0 +170757499500,222,0 +170757499548,223,0 +170757499597,223,0 +170757499645,222,0 +170757499695,223,0 +170757499742,216,0 +170757499790,216,0 +170757499840,216,0 +170757499888,217,0 +170757499937,218,0 +170757499985,218,0 +170757500033,218,0 +170757500081,219,0 +170757500129,220,0 +170757500179,221,0 +170757500227,220,0 +170757500275,222,0 +170757500323,223,0 +170757500371,222,0 +170757500420,222,0 +170757500470,223,0 +170757500519,224,0 +170757500569,223,0 +170757500617,223,0 +170757500666,216,0 +170757500714,216,0 +170757500764,216,0 +170757500812,218,0 +170757500859,219,0 +170757500907,220,0 +170757500955,221,0 +170757501003,221,0 +170757501053,221,0 +170757501101,223,0 +170757501149,222,0 +170757501197,221,0 +170757501245,223,0 +170757501292,224,0 +170757501340,223,0 +170757501388,224,0 +170757501436,223,0 +170757501484,224,0 +170757501534,222,0 +170757501582,216,0 +170757501629,216,0 +170757501679,216,0 +170757501728,217,0 +170757501778,218,0 +170757501827,218,0 +170757501875,219,0 +170757501923,219,0 +170757501971,220,0 +170757502021,221,0 +170757502069,222,0 +170757502118,222,0 +170757502168,222,0 +170757502217,223,0 +170757502265,222,0 +170757502313,223,0 +170757502361,224,0 +170757502409,224,0 +170757502457,216,0 +170757502505,214,0 +170757502553,215,0 +170757502602,216,0 +170757502650,216,0 +170757502698,217,0 +170757502746,219,0 +170757502796,219,0 +170757502844,218,0 +170757502892,219,0 +170757502939,220,0 +170757502987,220,0 +170757503035,221,0 +170757503083,223,0 +170757503131,221,0 +170757503180,222,0 +170757503228,222,0 +170757503278,222,0 +170757503326,223,0 +170757503374,216,0 +170757503422,215,0 +170757503470,215,0 +170757503519,217,0 +170757503569,217,0 +170757503618,217,0 +170757503668,222,0 +170757503716,219,0 +170757503765,219,0 +170757503815,220,0 +170757503863,221,0 +170757503911,221,0 +170757503960,224,0 +170757504008,224,0 +170757504056,223,0 +170757504104,222,0 +170757504153,225,0 +170757504201,224,0 +170757504251,224,0 +170757504298,215,0 +170757504348,215,0 +170757504397,216,0 +170757504447,216,0 +170757504496,218,0 +170757504544,217,0 +170757504592,218,0 +170757504640,219,0 +170757504688,222,0 +170757504736,221,0 +170757504785,222,0 +170757504833,223,0 +170757504883,222,0 +170757504931,223,0 +170757504980,223,0 +170757505030,223,0 +170757505078,224,0 +170757505126,223,0 +170757505174,223,0 +170757505223,215,0 +170757505271,215,0 +170757505319,215,0 +170757505369,215,0 +170757505416,215,0 +170757505464,216,0 +170757505514,217,0 +170757505563,217,0 +170757505611,218,0 +170757505659,218,0 +170757505707,219,0 +170757505755,221,0 +170757505803,221,0 +170757505851,222,0 +170757505899,224,0 +170757505947,222,0 +170757505995,222,0 +170757506043,223,0 +170757506093,216,0 +170757506141,215,0 +170757506189,214,0 +170757506237,215,0 +170757506284,215,0 +170757506334,215,0 +170757506383,216,0 +170757506431,217,0 +170757506479,218,0 +170757506529,219,0 +170757506577,220,0 +170757506626,221,0 +170757506674,222,0 +170757506724,222,0 +170757506773,222,0 +170757506823,222,0 +170757506872,223,0 +170757506921,222,0 +170757506969,222,0 +170757507017,215,0 +170757507065,215,0 +170757507113,214,0 +170757507161,215,0 +170757507209,216,0 +170757507257,217,0 +170757507305,217,0 +170757507353,218,0 +170757507402,218,0 +170757507452,219,0 +170757507501,219,0 +170757507549,220,0 +170757507597,221,0 +170757507645,221,0 +170757507695,223,0 +170757507743,221,0 +170757507791,222,0 +170757507839,222,0 +170757507887,221,0 +170757507934,214,0 +170757507982,215,0 +170757508032,215,0 +170757508080,215,0 +170757508128,216,0 +170757508176,218,0 +170757508224,217,0 +170757508272,217,0 +170757508320,217,0 +170757508368,219,0 +170757508417,218,0 +170757508465,220,0 +170757508513,219,0 +170757508561,220,0 +170757508609,221,0 +170757508657,221,0 +170757508705,222,0 +170757508753,222,0 +170757508801,217,0 +170757508850,214,0 +170757508898,214,0 +170757508946,215,0 +170757508996,216,0 +170757509045,216,0 +170757509095,217,0 +170757509142,217,0 +170757509190,218,0 +170757509238,219,0 +170757509286,220,0 +170757509334,220,0 +170757509382,221,0 +170757509430,222,0 +170757509480,222,0 +170757509529,222,0 +170757509577,222,0 +170757509625,222,0 +170757509675,222,0 +170757509723,216,0 +170757509771,215,0 +170757509819,215,0 +170757509867,216,0 +170757509914,216,0 +170757509962,216,0 +170757510010,217,0 +170757510060,217,0 +170757510109,218,0 +170757510157,219,0 +170757510205,219,0 +170757510253,221,0 +170757510303,221,0 +170757510351,221,0 +170757510399,222,0 +170757510447,222,0 +170757510495,224,0 +170757510544,223,0 +170757510592,222,0 +170757510640,216,0 +170757510689,216,0 +170757510739,217,0 +170757510787,217,0 +170757510835,218,0 +170757510884,220,0 +170757510932,220,0 +170757510982,220,0 +170757511030,221,0 +170757511079,221,0 +170757511127,222,0 +170757511177,222,0 +170757511225,223,0 +170757511274,223,0 +170757511324,223,0 +170757511372,224,0 +170757511419,223,0 +170757511467,223,0 +170757511517,221,0 +170757511565,219,0 +170757511613,219,0 +170757511662,221,0 +170757511710,221,0 +170757511758,222,0 +170757511806,222,0 +170757511854,222,0 +170757511902,223,0 +170757511950,223,0 +170757511998,223,0 +170757512046,223,0 +170757512096,223,0 +170757512144,223,0 +170757512191,224,0 +170757512239,223,0 +170757512287,223,0 +170757512337,223,0 +170757512385,223,0 +170757512434,218,0 +170757512482,219,0 +170757512532,219,0 +170757512580,219,0 +170757512628,220,0 +170757512676,221,0 +170757512724,221,0 +170757512773,222,0 +170757512821,222,0 +170757512871,222,0 +170757512919,222,0 +170757512967,223,0 +170757513015,225,0 +170757513063,223,0 +170757513111,223,0 +170757513160,224,0 +170757513208,224,0 +170757513258,223,0 +170757513307,222,0 +170757513355,217,0 +170757513403,216,0 +170757513451,218,0 +170757513499,218,0 +170757513547,219,0 +170757513596,219,0 +170757513644,221,0 +170757513694,222,0 +170757513742,222,0 +170757513790,222,0 +170757513839,224,0 +170757513887,223,0 +170757513935,223,0 +170757513984,224,0 +170757514034,224,0 +170757514082,222,0 +170757514130,223,0 +170757514178,226,0 +170757514226,221,0 +170757514274,217,0 +170757514322,216,0 +170757514369,217,0 +170757514417,218,0 +170757514465,219,0 +170757514513,218,0 +170757514563,219,0 +170757514612,220,0 +170757514662,221,0 +170757514710,222,0 +170757514758,222,0 +170757514807,225,0 +170757514855,223,0 +170757514905,224,0 +170757514953,223,0 +170757515001,223,0 +170757515049,224,0 +170757515098,223,0 +170757515146,216,0 +170757515194,215,0 +170757515242,216,0 +170757515290,216,0 +170757515339,217,0 +170757515389,217,0 +170757515438,218,0 +170757515488,218,0 +170757515537,219,0 +170757515585,220,0 +170757515633,220,0 +170757515681,221,0 +170757515730,220,0 +170757515778,222,0 +170757515828,222,0 +170757515876,222,0 +170757515924,221,0 +170757515972,221,0 +170757516021,223,0 +170757516071,215,0 +170757516119,215,0 +170757516166,216,0 +170757516214,217,0 +170757516264,218,0 +170757516313,218,0 +170757516363,219,0 +170757516411,219,0 +170757516459,220,0 +170757516508,220,0 +170757516556,220,0 +170757516604,222,0 +170757516653,221,0 +170757516701,221,0 +170757516749,223,0 +170757516797,223,0 +170757516847,223,0 +170757516895,225,0 +170757516944,223,0 +170757516992,216,0 +170757517042,216,0 +170757517091,217,0 +170757517139,217,0 +170757517189,218,0 +170757517236,219,0 +170757517284,219,0 +170757517334,220,0 +170757517382,220,0 +170757517431,221,0 +170757517481,221,0 +170757517530,223,0 +170757517578,223,0 +170757517626,223,0 +170757517676,222,0 +170757517725,223,0 +170757517773,223,0 +170757517823,223,0 +170757517870,217,0 +170757517920,217,0 +170757517968,217,0 +170757518018,219,0 +170757518065,219,0 +170757518113,222,0 +170757518161,220,0 +170757518211,221,0 +170757518260,222,0 +170757518308,222,0 +170757518358,223,0 +170757518406,224,0 +170757518454,225,0 +170757518502,225,0 +170757518551,224,0 +170757518599,224,0 +170757518647,223,0 +170757518695,224,0 +170757518743,223,0 +170757518791,218,0 +170757518839,218,0 +170757518887,218,0 +170757518935,219,0 +170757518983,220,0 +170757519032,220,0 +170757519080,221,0 +170757519128,221,0 +170757519177,223,0 +170757519225,222,0 +170757519273,222,0 +170757519323,223,0 +170757519371,224,0 +170757519420,224,0 +170757519470,224,0 +170757519518,228,0 +170757519566,225,0 +170757519615,223,0 +170757519665,222,0 +170757519713,216,0 +170757519761,216,0 +170757519809,217,0 +170757519857,218,0 +170757519905,219,0 +170757519954,219,0 +170757520004,220,0 +170757520051,220,0 +170757520099,221,0 +170757520147,222,0 +170757520195,222,0 +170757520243,225,0 +170757520293,224,0 +170757520340,223,0 +170757520388,224,0 +170757520436,225,0 +170757520484,223,0 +170757520532,223,0 +170757520580,216,0 +170757520628,215,0 +170757520676,215,0 +170757520724,215,0 +170757520772,216,0 +170757520820,216,0 +170757520869,217,0 +170757520919,219,0 +170757520967,219,0 +170757521014,220,0 +170757521064,220,0 +170757521113,223,0 +170757521161,220,0 +170757521209,223,0 +170757521259,223,0 +170757521308,223,0 +170757521358,223,0 +170757521406,223,0 +170757521454,223,0 +170757521503,216,0 +170757521553,215,0 +170757521601,215,0 +170757521650,215,0 +170757521700,215,0 +170757521749,215,0 +170757521797,216,0 +170757521847,217,0 +170757521896,218,0 +170757521946,218,0 +170757521993,220,0 +170757522043,217,0 +170757522091,221,0 +170757522140,220,0 +170757522190,221,0 +170757522239,223,0 +170757522287,222,0 +170757522335,223,0 +170757522385,217,0 +170757522433,214,0 +170757522480,214,0 +170757522528,215,0 +170757522578,215,0 +170757522626,215,0 +170757522674,216,0 +170757522722,216,0 +170757522769,217,0 +170757522819,218,0 +170757522867,218,0 +170757522916,219,0 +170757522964,219,0 +170757523014,220,0 +170757523063,221,0 +170757523113,221,0 +170757523161,222,0 +170757523210,223,0 +170757523260,222,0 +170757523308,216,0 +170757523356,214,0 +170757523404,215,0 +170757523452,215,0 +170757523500,215,0 +170757523549,215,0 +170757523597,216,0 +170757523645,218,0 +170757523694,218,0 +170757523744,218,0 +170757523792,219,0 +170757523840,219,0 +170757523887,220,0 +170757523935,220,0 +170757523983,220,0 +170757524031,220,0 +170757524081,222,0 +170757524130,222,0 +170757524180,222,0 +170757524229,216,0 +170757524277,215,0 +170757524325,215,0 +170757524373,215,0 +170757524422,216,0 +170757524470,216,0 +170757524520,217,0 +170757524568,217,0 +170757524617,217,0 +170757524665,218,0 +170757524713,222,0 +170757524762,220,0 +170757524812,221,0 +170757524860,221,0 +170757524908,221,0 +170757524956,223,0 +170757525005,222,0 +170757525053,222,0 +170757525101,223,0 +170757525148,216,0 +170757525196,215,0 +170757525244,215,0 +170757525292,216,0 +170757525340,217,0 +170757525388,217,0 +170757525436,220,0 +170757525484,219,0 +170757525532,219,0 +170757525581,221,0 +170757525629,221,0 +170757525677,222,0 +170757525725,222,0 +170757525775,223,0 +170757525824,224,0 +170757525872,223,0 +170757525920,223,0 +170757525968,223,0 +170757526016,220,0 +170757526065,215,0 +170757526115,215,0 +170757526164,215,0 +170757526214,215,0 +170757526263,216,0 +170757526313,216,0 +170757526361,217,0 +170757526410,217,0 +170757526458,218,0 +170757526506,220,0 +170757526554,220,0 +170757526601,220,0 +170757526649,220,0 +170757526697,221,0 +170757526745,222,0 +170757526793,221,0 +170757526842,222,0 +170757526890,222,0 +170757526938,216,0 +170757526986,215,0 +170757527035,216,0 +170757527083,216,0 +170757527132,217,0 +170757527180,218,0 +170757527228,218,0 +170757527276,219,0 +170757527324,220,0 +170757527372,219,0 +170757527420,221,0 +170757527469,221,0 +170757527518,222,0 +170757527568,222,0 +170757527616,223,0 +170757527665,222,0 +170757527715,223,0 +170757527764,223,0 +170757527814,222,0 +170757527862,216,0 +170757527911,217,0 +170757527961,217,0 +170757528009,219,0 +170757528058,219,0 +170757528106,220,0 +170757528154,220,0 +170757528202,221,0 +170757528251,222,0 +170757528301,222,0 +170757528349,222,0 +170757528397,223,0 +170757528445,223,0 +170757528494,223,0 +170757528542,223,0 +170757528591,223,0 +170757528639,223,0 +170757528687,223,0 +170757528735,217,0 +170757528784,218,0 +170757528832,219,0 +170757528880,219,0 +170757528930,220,0 +170757528978,220,0 +170757529025,221,0 +170757529075,221,0 +170757529123,222,0 +170757529171,223,0 +170757529220,223,0 +170757529268,222,0 +170757529316,223,0 +170757529366,225,0 +170757529415,225,0 +170757529463,223,0 +170757529512,224,0 +170757529560,223,0 +170757529609,225,0 +170757529657,217,0 +170757529707,217,0 +170757529756,218,0 +170757529804,218,0 +170757529852,219,0 +170757529900,219,0 +170757529948,220,0 +170757529996,220,0 +170757530044,220,0 +170757530092,222,0 +170757530140,222,0 +170757530189,222,0 +170757530237,222,0 +170757530287,225,0 +170757530336,223,0 +170757530384,224,0 +170757530434,224,0 +170757530482,223,0 +170757530530,223,0 +170757530578,215,0 +170757530625,216,0 +170757530673,217,0 +170757530721,218,0 +170757530771,217,0 +170757530819,218,0 +170757530868,219,0 +170757530916,220,0 +170757530965,221,0 +170757531015,220,0 +170757531063,221,0 +170757531111,222,0 +170757531159,223,0 +170757531207,222,0 +170757531255,223,0 +170757531303,221,0 +170757531352,221,0 +170757531400,222,0 +170757531448,221,0 +170757531496,215,0 +170757531545,215,0 +170757531595,216,0 +170757531643,217,0 +170757531691,217,0 +170757531740,218,0 +170757531788,218,0 +170757531838,219,0 +170757531886,219,0 +170757531935,220,0 +170757531983,220,0 +170757532031,221,0 +170757532079,222,0 +170757532127,222,0 +170757532175,223,0 +170757532224,221,0 +170757532274,222,0 +170757532322,223,0 +170757532372,217,0 +170757532419,216,0 +170757532467,217,0 +170757532515,217,0 +170757532565,219,0 +170757532614,219,0 +170757532662,219,0 +170757532710,220,0 +170757532758,221,0 +170757532806,221,0 +170757532854,222,0 +170757532902,222,0 +170757532950,222,0 +170757532998,222,0 +170757533047,223,0 +170757533097,223,0 +170757533145,227,0 +170757533194,224,0 +170757533242,224,0 +170757533292,217,0 +170757533340,217,0 +170757533388,219,0 +170757533436,219,0 +170757533485,220,0 +170757533533,220,0 +170757533581,220,0 +170757533631,221,0 +170757533680,222,0 +170757533730,221,0 +170757533778,222,0 +170757533826,223,0 +170757533874,224,0 +170757533923,222,0 +170757533971,224,0 +170757534019,224,0 +170757534067,225,0 +170757534116,223,0 +170757534166,216,0 +170757534214,216,0 +170757534263,217,0 +170757534313,217,0 +170757534362,220,0 +170757534410,219,0 +170757534458,219,0 +170757534506,220,0 +170757534556,220,0 +170757534604,221,0 +170757534651,223,0 +170757534701,222,0 +170757534750,223,0 +170757534800,224,0 +170757534848,224,0 +170757534896,223,0 +170757534944,224,0 +170757534993,223,0 +170757535041,223,0 +170757535091,216,0 +170757535139,215,0 +170757535188,216,0 +170757535236,217,0 +170757535284,217,0 +170757535332,218,0 +170757535380,220,0 +170757535429,219,0 +170757535477,220,0 +170757535527,219,0 +170757535575,220,0 +170757535624,221,0 +170757535672,222,0 +170757535720,223,0 +170757535770,221,0 +170757535819,220,0 +170757535867,222,0 +170757535915,222,0 +170757535965,223,0 +170757536014,214,0 +170757536062,214,0 +170757536110,214,0 +170757536160,215,0 +170757536208,215,0 +170757536257,215,0 +170757536305,215,0 +170757536353,216,0 +170757536401,216,0 +170757536449,216,0 +170757536497,217,0 +170757536545,218,0 +170757536593,219,0 +170757536642,219,0 +170757536690,219,0 +170757536740,220,0 +170757536788,220,0 +170757536837,222,0 +170757536885,216,0 +170757536933,215,0 +170757536981,216,0 +170757537031,216,0 +170757537079,217,0 +170757537128,218,0 +170757537178,218,0 +170757537227,221,0 +170757537275,219,0 +170757537325,221,0 +170757537373,221,0 +170757537421,221,0 +170757537469,222,0 +170757537516,222,0 +170757537564,223,0 +170757537612,222,0 +170757537660,223,0 +170757537708,224,0 +170757537756,223,0 +170757537804,217,0 +170757537852,215,0 +170757537900,216,0 +170757537947,216,0 +170757537995,217,0 +170757538043,217,0 +170757538093,217,0 +170757538140,218,0 +170757538188,218,0 +170757538238,219,0 +170757538286,219,0 +170757538334,221,0 +170757538382,221,0 +170757538430,222,0 +170757538479,221,0 +170757538527,221,0 +170757538575,222,0 +170757538623,222,0 +170757538671,222,0 +170757538719,216,0 +170757538767,216,0 +170757538815,216,0 +170757538863,218,0 +170757538913,217,0 +170757538960,218,0 +170757539008,218,0 +170757539058,219,0 +170757539108,220,0 +170757539157,220,0 +170757539205,222,0 +170757539253,222,0 +170757539302,223,0 +170757539352,223,0 +170757539402,223,0 +170757539449,224,0 +170757539497,223,0 +170757539545,223,0 +170757539593,222,0 +170757539641,216,0 +170757539690,217,0 +170757539738,218,0 +170757539788,219,0 +170757539836,219,0 +170757539883,220,0 +170757539931,220,0 +170757539979,222,0 +170757540027,222,0 +170757540075,223,0 +170757540123,222,0 +170757540171,225,0 +170757540218,223,0 +170757540266,223,0 +170757540314,224,0 +170757540362,223,0 +170757540410,223,0 +170757540458,223,0 +170757540506,217,0 +170757540553,218,0 +170757540601,218,0 +170757540651,219,0 +170757540699,219,0 +170757540746,221,0 +170757540794,220,0 +170757540842,222,0 +170757540890,222,0 +170757540938,223,0 +170757540986,223,0 +170757541034,225,0 +170757541082,224,0 +170757541131,226,0 +170757541179,224,0 +170757541227,225,0 +170757541275,225,0 +170757541323,221,0 +170757541372,223,0 +170757541422,219,0 +170757541470,218,0 +170757541519,219,0 +170757541567,220,0 +170757541617,219,0 +170757541665,220,0 +170757541713,220,0 +170757541761,221,0 +170757541810,222,0 +170757541858,223,0 +170757541906,223,0 +170757541954,223,0 +170757542004,224,0 +170757542051,223,0 +170757542099,224,0 +170757542147,223,0 +170757542195,224,0 +170757542243,223,0 +170757542291,222,0 +170757542339,217,0 +170757542387,217,0 +170757542436,217,0 +170757542484,218,0 +170757542532,218,0 +170757542580,220,0 +170757542629,219,0 +170757542677,220,0 +170757542727,220,0 +170757542776,222,0 +170757542824,222,0 +170757542874,224,0 +170757542922,223,0 +170757542971,223,0 +170757543019,222,0 +170757543069,224,0 +170757543117,224,0 +170757543165,223,0 +170757543214,223,0 +170757543264,215,0 +170757543312,216,0 +170757543359,216,0 +170757543407,217,0 +170757543455,218,0 +170757543503,218,0 +170757543551,219,0 +170757543599,220,0 +170757543647,220,0 +170757543694,221,0 +170757543742,221,0 +170757543790,223,0 +170757543838,223,0 +170757543886,223,0 +170757543935,223,0 +170757543983,223,0 +170757544032,223,0 +170757544080,223,0 +170757544128,222,0 +170757544176,215,0 +170757544225,216,0 +170757544273,216,0 +170757544321,217,0 +170757544369,218,0 +170757544417,219,0 +170757544465,219,0 +170757544513,220,0 +170757544562,221,0 +170757544611,222,0 +170757544659,222,0 +170757544707,222,0 +170757544755,223,0 +170757544803,223,0 +170757544851,223,0 +170757544899,223,0 +170757544946,223,0 +170757544994,223,0 +170757545042,217,0 +170757545090,215,0 +170757545138,216,0 +170757545186,218,0 +170757545234,219,0 +170757545282,219,0 +170757545332,220,0 +170757545380,222,0 +170757545428,222,0 +170757545475,222,0 +170757545525,222,0 +170757545573,223,0 +170757545621,222,0 +170757545669,223,0 +170757545718,224,0 +170757545766,224,0 +170757545816,224,0 +170757545864,224,0 +170757545913,222,0 +170757545963,216,0 +170757546011,214,0 +170757546059,215,0 +170757546108,216,0 +170757546158,217,0 +170757546208,218,0 +170757546256,219,0 +170757546304,219,0 +170757546353,220,0 +170757546401,221,0 +170757546449,221,0 +170757546497,222,0 +170757546546,222,0 +170757546594,223,0 +170757546642,224,0 +170757546690,226,0 +170757546738,223,0 +170757546786,222,0 +170757546834,215,0 +170757546882,215,0 +170757546930,215,0 +170757546979,215,0 +170757547028,216,0 +170757547076,217,0 +170757547124,218,0 +170757547172,219,0 +170757547220,220,0 +170757547268,221,0 +170757547316,220,0 +170757547363,221,0 +170757547411,221,0 +170757547459,221,0 +170757547507,221,0 +170757547557,222,0 +170757547605,223,0 +170757547652,223,0 +170757547700,222,0 +170757547748,217,0 +170757547796,215,0 +170757547846,215,0 +170757547894,215,0 +170757547941,215,0 +170757547990,216,0 +170757548037,217,0 +170757548085,217,0 +170757548133,217,0 +170757548181,218,0 +170757548229,219,0 +170757548277,221,0 +170757548326,221,0 +170757548374,220,0 +170757548422,222,0 +170757548470,221,0 +170757548518,222,0 +170757548566,224,0 +170757548614,223,0 +170757548662,222,0 +170757548710,215,0 +170757548760,215,0 +170757548809,215,0 +170757548857,217,0 +170757548905,217,0 +170757548953,218,0 +170757549002,218,0 +170757549052,219,0 +170757549100,219,0 +170757549149,220,0 +170757549199,221,0 +170757549247,221,0 +170757549295,221,0 +170757549343,222,0 +170757549391,222,0 +170757549439,222,0 +170757549487,222,0 +170757549535,223,0 +170757549584,216,0 +170757549634,215,0 +170757549683,216,0 +170757549731,217,0 +170757549779,218,0 +170757549827,218,0 +170757549875,218,0 +170757549924,219,0 +170757549972,219,0 +170757550022,220,0 +170757550070,224,0 +170757550120,222,0 +170757550168,222,0 +170757550216,222,0 +170757550264,223,0 +170757550312,225,0 +170757550361,224,0 +170757550409,223,0 +170757550459,223,0 +170757550508,215,0 +170757550556,215,0 +170757550604,216,0 +170757550652,217,0 +170757550702,217,0 +170757550750,218,0 +170757550799,218,0 +170757550847,219,0 +170757550895,219,0 +170757550944,221,0 +170757550992,221,0 +170757551040,221,0 +170757551090,222,0 +170757551138,223,0 +170757551186,225,0 +170757551235,224,0 +170757551283,222,0 +170757551333,223,0 +170757551381,219,0 +170757551430,214,0 +170757551480,215,0 +170757551529,215,0 +170757551579,216,0 +170757551627,216,0 +170757551675,217,0 +170757551722,218,0 +170757551772,218,0 +170757551820,219,0 +170757551868,219,0 +170757551916,220,0 +170757551965,222,0 +170757552013,222,0 +170757552063,223,0 +170757552112,224,0 +170757552162,223,0 +170757552211,223,0 +170757552261,223,0 +170757552309,216,0 +170757552358,214,0 +170757552406,215,0 +170757552454,215,0 +170757552502,215,0 +170757552550,215,0 +170757552600,215,0 +170757552648,216,0 +170757552696,217,0 +170757552743,217,0 +170757552791,218,0 +170757552839,218,0 +170757552887,219,0 +170757552935,220,0 +170757552983,220,0 +170757553032,220,0 +170757553080,219,0 +170757553128,222,0 +170757553176,223,0 +170757553224,215,0 +170757553272,215,0 +170757553319,215,0 +170757553367,216,0 +170757553415,217,0 +170757553463,217,0 +170757553511,217,0 +170757553559,218,0 +170757553607,218,0 +170757553654,219,0 +170757553704,219,0 +170757553753,220,0 +170757553801,220,0 +170757553851,222,0 +170757553899,222,0 +170757553947,223,0 +170757553995,222,0 +170757554043,223,0 +170757554091,222,0 +170757554139,215,0 +170757554187,216,0 +170757554234,216,0 +170757554282,217,0 +170757554332,217,0 +170757554381,218,0 +170757554429,219,0 +170757554479,219,0 +170757554528,220,0 +170757554578,220,0 +170757554626,220,0 +170757554675,221,0 +170757554723,222,0 +170757554771,221,0 +170757554820,223,0 +170757554868,223,0 +170757554916,223,0 +170757554964,223,0 +170757555012,218,0 +170757555060,217,0 +170757555108,217,0 +170757555156,218,0 +170757555205,219,0 +170757555255,219,0 +170757555305,220,0 +170757555352,221,0 +170757555400,221,0 +170757555448,221,0 +170757555498,224,0 +170757555547,224,0 +170757555596,224,0 +170757555645,223,0 +170757555695,224,0 +170757555743,225,0 +170757555792,226,0 +170757555842,223,0 +170757555890,222,0 +170757555939,218,0 +170757555989,218,0 +170757556037,219,0 +170757556086,219,0 +170757556134,219,0 +170757556182,220,0 +170757556230,221,0 +170757556280,221,0 +170757556328,222,0 +170757556376,223,0 +170757556425,223,0 +170757556475,223,0 +170757556524,225,0 +170757556572,225,0 +170757556620,225,0 +170757556669,222,0 +170757556719,222,0 +170757556767,224,0 +170757556816,222,0 +170757556865,218,0 +170757556912,218,0 +170757556960,218,0 +170757557010,219,0 +170757557059,219,0 +170757557109,220,0 +170757557158,220,0 +170757557206,221,0 +170757557254,221,0 +170757557304,221,0 +170757557352,222,0 +170757557400,223,0 +170757557448,224,0 +170757557496,223,0 +170757557544,223,0 +170757557592,223,0 +170757557639,223,0 +170757557689,222,0 +170757557737,217,0 +170757557785,216,0 +170757557832,217,0 +170757557880,217,0 +170757557928,217,0 +170757557978,219,0 +170757558026,221,0 +170757558074,221,0 +170757558123,219,0 +170757558171,222,0 +170757558219,222,0 +170757558269,224,0 +170757558317,222,0 +170757558365,223,0 +170757558412,224,0 +170757558460,223,0 +170757558510,224,0 +170757558558,224,0 +170757558607,220,0 +170757558657,218,0 +170757558705,218,0 +170757558753,218,0 +170757558801,218,0 +170757558849,219,0 +170757558898,219,0 +170757558946,220,0 +170757558994,221,0 +170757559042,220,0 +170757559090,220,0 +170757559139,220,0 +170757559187,222,0 +170757559235,223,0 +170757559283,222,0 +170757559333,222,0 +170757559382,224,0 +170757559432,223,0 +170757559480,222,0 +170757559528,222,0 +170757559576,215,0 +170757559623,215,0 +170757559671,216,0 +170757559719,217,0 +170757559767,217,0 +170757559815,218,0 +170757559863,218,0 +170757559912,219,0 +170757559962,218,0 +170757560011,220,0 +170757560059,220,0 +170757560107,220,0 +170757560155,222,0 +170757560203,222,0 +170757560251,221,0 +170757560299,220,0 +170757560347,222,0 +170757560395,222,0 +170757560442,216,0 +170757560490,215,0 +170757560538,216,0 +170757560586,217,0 +170757560634,218,0 +170757560684,217,0 +170757560732,218,0 +170757560781,219,0 +170757560831,219,0 +170757560879,220,0 +170757560928,220,0 +170757560976,221,0 +170757561024,223,0 +170757561072,223,0 +170757561121,222,0 +170757561171,222,0 +170757561220,223,0 +170757561268,223,0 +170757561316,221,0 +170757561364,220,0 +170757561412,220,0 +170757561460,220,0 +170757561508,220,0 +170757561556,221,0 +170757561603,222,0 +170757561651,222,0 +170757561699,222,0 +170757561747,223,0 +170757561795,223,0 +170757561843,224,0 +170757561891,224,0 +170757561939,223,0 +170757561988,224,0 +170757562036,224,0 +170757562086,224,0 +170757562134,223,0 +170757562181,222,0 +170757562231,223,0 +170757562280,220,0 +170757562328,220,0 +170757562376,221,0 +170757562425,221,0 +170757562473,222,0 +170757562521,223,0 +170757562569,223,0 +170757562617,223,0 +170757562665,223,0 +170757562713,224,0 +170757562761,223,0 +170757562810,224,0 +170757562858,224,0 +170757562906,223,0 +170757562954,224,0 +170757563002,223,0 +170757563050,225,0 +170757563099,223,0 +170757563147,222,0 +170757563195,216,0 +170757563243,216,0 +170757563291,217,0 +170757563340,218,0 +170757563388,219,0 +170757563438,219,0 +170757563486,221,0 +170757563534,222,0 +170757563581,220,0 +170757563631,221,0 +170757563679,222,0 +170757563728,223,0 +170757563778,224,0 +170757563827,224,0 +170757563875,223,0 +170757563923,224,0 +170757563973,224,0 +170757564021,223,0 +170757564070,216,0 +170757564120,214,0 +170757564168,214,0 +170757564216,215,0 +170757564264,215,0 +170757564311,215,0 +170757564359,216,0 +170757564407,216,0 +170757564455,217,0 +170757564503,218,0 +170757564551,219,0 +170757564599,220,0 +170757564647,220,0 +170757564695,220,0 +170757564742,223,0 +170757564790,220,0 +170757564838,219,0 +170757564886,219,0 +170757564934,223,0 +170757564982,217,0 +170757565030,214,0 +170757565078,214,0 +170757565125,215,0 +170757565173,215,0 +170757565221,215,0 +170757565269,216,0 +170757565317,216,0 +170757565365,216,0 +170757565413,217,0 +170757565460,218,0 +170757565508,219,0 +170757565556,220,0 +170757565604,220,0 +170757565652,221,0 +170757565700,220,0 +170757565748,222,0 +170757565796,221,0 +170757565844,222,0 +170757565891,216,0 +170757565939,214,0 +170757565987,215,0 +170757566037,215,0 +170757566085,216,0 +170757566134,217,0 +170757566182,217,0 +170757566231,218,0 +170757566279,218,0 +170757566329,219,0 +170757566377,220,0 +170757566426,221,0 +170757566476,221,0 +170757566525,225,0 +170757566575,223,0 +170757566624,223,0 +170757566674,222,0 +170757566722,222,0 +170757566770,222,0 +170757566818,215,0 +170757566866,215,0 +170757566913,215,0 +170757566963,215,0 +170757567013,217,0 +170757567062,218,0 +170757567110,218,0 +170757567158,218,0 +170757567206,219,0 +170757567255,220,0 +170757567303,219,0 +170757567351,221,0 +170757567399,222,0 +170757567447,223,0 +170757567496,223,0 +170757567544,221,0 +170757567592,222,0 +170757567639,222,0 +170757567687,222,0 +170757567735,215,0 +170757567784,214,0 +170757567832,216,0 +170757567880,215,0 +170757567928,215,0 +170757567976,215,0 +170757568024,215,0 +170757568073,216,0 +170757568121,216,0 +170757568169,217,0 +170757568218,218,0 +170757568266,220,0 +170757568314,221,0 +170757568362,220,0 +170757568410,220,0 +170757568458,220,0 +170757568506,221,0 +170757568553,222,0 +170757568601,219,0 +170757568651,215,0 +170757568699,215,0 +170757568746,216,0 +170757568794,215,0 +170757568842,216,0 +170757568890,217,0 +170757568940,218,0 +170757568987,218,0 +170757569035,219,0 +170757569083,221,0 +170757569131,221,0 +170757569179,222,0 +170757569227,222,0 +170757569277,222,0 +170757569326,222,0 +170757569374,222,0 +170757569424,222,0 +170757569472,223,0 +170757569520,217,0 +170757569567,215,0 +170757569615,216,0 +170757569665,217,0 +170757569713,218,0 +170757569761,218,0 +170757569810,219,0 +170757569858,219,0 +170757569908,220,0 +170757569956,220,0 +170757570004,222,0 +170757570052,221,0 +170757570100,223,0 +170757570148,222,0 +170757570195,223,0 +170757570243,222,0 +170757570291,224,0 +170757570340,224,0 +170757570389,223,0 +170757570437,215,0 +170757570486,215,0 +170757570534,216,0 +170757570582,217,0 +170757570630,217,0 +170757570678,218,0 +170757570726,218,0 +170757570774,219,0 +170757570824,220,0 +170757570872,221,0 +170757570919,221,0 +170757570968,222,0 +170757571015,223,0 +170757571063,223,0 +170757571111,222,0 +170757571159,224,0 +170757571207,224,0 +170757571255,223,0 +170757571303,223,0 +170757571351,216,0 +170757571400,216,0 +170757571448,217,0 +170757571496,217,0 +170757571544,218,0 +170757571594,219,0 +170757571641,219,0 +170757571689,219,0 +170757571737,219,0 +170757571785,220,0 +170757571833,222,0 +170757571881,223,0 +170757571930,222,0 +170757571978,222,0 +170757572028,225,0 +170757572077,223,0 +170757572125,223,0 +170757572173,224,0 +170757572223,216,0 +170757572271,217,0 +170757572320,218,0 +170757572370,218,0 +170757572419,219,0 +170757572467,219,0 +170757572515,221,0 +170757572565,221,0 +170757572613,222,0 +170757572662,221,0 +170757572710,222,0 +170757572758,222,0 +170757572806,224,0 +170757572855,223,0 +170757572903,222,0 +170757572951,223,0 +170757572999,230,0 +170757573047,224,0 +170757573095,222,0 +170757573143,218,0 +170757573193,218,0 +170757573241,218,0 +170757573288,219,0 +170757573338,221,0 +170757573388,220,0 +170757573435,221,0 +170757573483,221,0 +170757573531,221,0 +170757573581,222,0 +170757573629,222,0 +170757573678,222,0 +170757573726,222,0 +170757573776,223,0 +170757573823,223,0 +170757573871,226,0 +170757573919,222,0 +170757573969,223,0 +170757574017,222,0 +170757574065,215,0 +170757574113,215,0 +170757574161,216,0 +170757574208,217,0 +170757574256,217,0 +170757574304,218,0 +170757574352,219,0 +170757574400,219,0 +170757574448,221,0 +170757574496,220,0 +170757574546,221,0 +170757574594,222,0 +170757574642,223,0 +170757574690,223,0 +170757574739,225,0 +170757574787,222,0 +170757574835,222,0 +170757574883,223,0 +170757574933,223,0 +170757574980,215,0 +170757575030,214,0 +170757575079,215,0 +170757575127,216,0 +170757575175,216,0 +170757575223,216,0 +170757575271,217,0 +170757575321,218,0 +170757575370,218,0 +170757575418,219,0 +170757575466,220,0 +170757575514,220,0 +170757575562,220,0 +170757575610,220,0 +170757575658,219,0 +170757575707,220,0 +170757575755,220,0 +170757575805,222,0 +170757575854,216,0 +170757575902,215,0 +170757575952,215,0 +170757576001,215,0 +170757576051,216,0 +170757576100,216,0 +170757576148,216,0 +170757576196,217,0 +170757576244,217,0 +170757576294,218,0 +170757576342,219,0 +170757576390,220,0 +170757576437,220,0 +170757576485,220,0 +170757576533,221,0 +170757576583,221,0 +170757576631,225,0 +170757576679,222,0 +170757576727,223,0 +170757576776,215,0 +170757576826,215,0 +170757576875,216,0 +170757576925,216,0 +170757576973,216,0 +170757577022,217,0 +170757577070,218,0 +170757577120,219,0 +170757577169,220,0 +170757577217,220,0 +170757577265,221,0 +170757577313,222,0 +170757577361,222,0 +170757577410,222,0 +170757577458,223,0 +170757577506,223,0 +170757577554,223,0 +170757577604,223,0 +170757577652,222,0 +170757577699,215,0 +170757577747,215,0 +170757577795,216,0 +170757577843,217,0 +170757577891,218,0 +170757577939,218,0 +170757577987,219,0 +170757578035,219,0 +170757578083,220,0 +170757578131,221,0 +170757578180,222,0 +170757578228,222,0 +170757578276,222,0 +170757578324,225,0 +170757578372,223,0 +170757578420,223,0 +170757578468,223,0 +170757578517,223,0 +170757578565,217,0 +170757578613,217,0 +170757578663,217,0 +170757578711,218,0 +170757578759,219,0 +170757578808,220,0 +170757578856,221,0 +170757578904,221,0 +170757578952,221,0 +170757579002,223,0 +170757579050,222,0 +170757579099,224,0 +170757579149,223,0 +170757579198,223,0 +170757579246,224,0 +170757579294,224,0 +170757579342,223,0 +170757579390,223,0 +170757579438,222,0 +170757579488,218,0 +170757579536,218,0 +170757579585,218,0 +170757579635,219,0 +170757579684,220,0 +170757579732,219,0 +170757579780,221,0 +170757579828,221,0 +170757579876,223,0 +170757579924,222,0 +170757579973,223,0 +170757580021,224,0 +170757580069,223,0 +170757580119,223,0 +170757580167,224,0 +170757580215,223,0 +170757580263,223,0 +170757580311,222,0 +170757580358,222,0 +170757580408,215,0 +170757580457,215,0 +170757580507,215,0 +170757580555,215,0 +170757580603,216,0 +170757580652,217,0 +170757580702,218,0 +170757580750,218,0 +170757580798,220,0 +170757580846,220,0 +170757580894,221,0 +170757580942,222,0 +170757580990,222,0 +170757581037,228,0 +170757581087,222,0 +170757581135,225,0 +170757581183,223,0 +170757581231,223,0 +170757581279,222,0 +170757581327,215,0 +170757581375,215,0 +170757581423,216,0 +170757581471,216,0 +170757581520,217,0 +170757581570,218,0 +170757581618,218,0 +170757581665,220,0 +170757581715,221,0 +170757581765,220,0 +170757581814,220,0 +170757581864,220,0 +170757581912,222,0 +170757581961,224,0 +170757582009,222,0 +170757582057,221,0 +170757582105,222,0 +170757582154,223,0 +170757582204,216,0 +170757582252,215,0 +170757582300,216,0 +170757582349,216,0 +170757582399,217,0 +170757582447,217,0 +170757582495,217,0 +170757582543,218,0 +170757582591,219,0 +170757582640,219,0 +170757582688,220,0 +170757582737,220,0 +170757582787,221,0 +170757582835,221,0 +170757582883,220,0 +170757582932,221,0 +170757582982,224,0 +170757583030,222,0 +170757583078,223,0 +170757583127,215,0 +170757583177,216,0 +170757583225,217,0 +170757583273,217,0 +170757583321,218,0 +170757583369,219,0 +170757583418,219,0 +170757583468,219,0 +170757583515,219,0 +170757583563,220,0 +170757583613,221,0 +170757583661,224,0 +170757583709,222,0 +170757583758,222,0 +170757583806,223,0 +170757583856,222,0 +170757583904,222,0 +170757583953,222,0 +170757584003,216,0 +170757584052,215,0 +170757584102,217,0 +170757584151,217,0 +170757584201,218,0 +170757584250,218,0 +170757584298,219,0 +170757584346,220,0 +170757584396,221,0 +170757584444,221,0 +170757584491,221,0 +170757584539,222,0 +170757584587,223,0 +170757584635,225,0 +170757584683,223,0 +170757584731,224,0 +170757584780,224,0 +170757584828,222,0 +170757584876,222,0 +170757584924,218,0 +170757584973,217,0 +170757585023,217,0 +170757585071,219,0 +170757585120,218,0 +170757585168,220,0 +170757585216,221,0 +170757585264,222,0 +170757585312,221,0 +170757585360,220,0 +170757585409,222,0 +170757585457,223,0 +170757585507,224,0 +170757585555,225,0 +170757585603,225,0 +170757585651,224,0 +170757585700,223,0 +170757585750,222,0 +170757585798,218,0 +170757585847,219,0 +170757585895,220,0 +170757585943,219,0 +170757585991,220,0 +170757586039,221,0 +170757586088,222,0 +170757586136,222,0 +170757586184,222,0 +170757586232,222,0 +170757586281,223,0 +170757586331,223,0 +170757586379,224,0 +170757586427,224,0 +170757586475,225,0 +170757586524,224,0 +170757586572,224,0 +170757586620,224,0 +170757586668,220,0 +170757586717,217,0 +170757586765,216,0 +170757586813,217,0 +170757586863,218,0 +170757586911,219,0 +170757586958,220,0 +170757587006,221,0 +170757587054,221,0 +170757587104,221,0 +170757587152,221,0 +170757587201,222,0 +170757587249,222,0 +170757587299,223,0 +170757587347,223,0 +170757587396,224,0 +170757587446,224,0 +170757587494,223,0 +170757587543,224,0 +170757587591,223,0 +170757587639,216,0 +170757587687,215,0 +170757587737,215,0 +170757587785,217,0 +170757587833,217,0 +170757587882,218,0 +170757587932,219,0 +170757587981,220,0 +170757588031,220,0 +170757588080,221,0 +170757588130,221,0 +170757588178,222,0 +170757588227,224,0 +170757588275,225,0 +170757588324,223,0 +170757588372,224,0 +170757588422,224,0 +170757588472,223,0 +170757588519,220,0 +170757588567,215,0 +170757588615,216,0 +170757588663,217,0 +170757588713,217,0 +170757588761,218,0 +170757588809,218,0 +170757588856,218,0 +170757588904,218,0 +170757588952,220,0 +170757589002,221,0 +170757589051,221,0 +170757589101,222,0 +170757589149,223,0 +170757589197,223,0 +170757589246,224,0 +170757589294,224,0 +170757589342,222,0 +170757589392,222,0 +170757589440,216,0 +170757589488,215,0 +170757589536,215,0 +170757589583,216,0 +170757589631,217,0 +170757589679,217,0 +170757589727,217,0 +170757589775,218,0 +170757589823,219,0 +170757589873,219,0 +170757589922,220,0 +170757589972,221,0 +170757590021,222,0 +170757590069,223,0 +170757590117,223,0 +170757590166,223,0 +170757590216,222,0 +170757590264,220,0 +170757590312,223,0 +170757590361,215,0 +170757590409,215,0 +170757590457,215,0 +170757590507,216,0 +170757590556,217,0 +170757590604,218,0 +170757590652,218,0 +170757590702,219,0 +170757590750,218,0 +170757590797,220,0 +170757590847,218,0 +170757590895,221,0 +170757590944,221,0 +170757590992,222,0 +170757591042,223,0 +170757591090,225,0 +170757591138,223,0 +170757591186,223,0 +170757591234,218,0 +170757591281,215,0 +170757591329,215,0 +170757591379,215,0 +170757591427,216,0 +170757591475,217,0 +170757591522,216,0 +170757591570,217,0 +170757591618,218,0 +170757591668,219,0 +170757591716,219,0 +170757591764,220,0 +170757591812,220,0 +170757591860,222,0 +170757591909,222,0 +170757591957,222,0 +170757592005,222,0 +170757592055,222,0 +170757592103,224,0 +170757592151,216,0 +170757592200,215,0 +170757592248,215,0 +170757592298,216,0 +170757592347,216,0 +170757592395,217,0 +170757592443,217,0 +170757592491,218,0 +170757592539,218,0 +170757592588,219,0 +170757592636,220,0 +170757592684,221,0 +170757592732,222,0 +170757592780,223,0 +170757592829,223,0 +170757592879,223,0 +170757592928,224,0 +170757592976,223,0 +170757593024,222,0 +170757593072,216,0 +170757593121,215,0 +170757593171,215,0 +170757593219,216,0 +170757593267,217,0 +170757593315,218,0 +170757593362,218,0 +170757593410,218,0 +170757593458,219,0 +170757593506,220,0 +170757593554,220,0 +170757593602,222,0 +170757593650,221,0 +170757593699,222,0 +170757593747,222,0 +170757593795,222,0 +170757593845,223,0 +170757593894,223,0 +170757593942,222,0 +170757593990,215,0 +170757594038,215,0 +170757594086,215,0 +170757594134,216,0 +170757594183,216,0 +170757594233,217,0 +170757594281,217,0 +170757594329,218,0 +170757594377,219,0 +170757594425,220,0 +170757594472,221,0 +170757594522,221,0 +170757594570,222,0 +170757594618,223,0 +170757594666,223,0 +170757594714,223,0 +170757594762,222,0 +170757594809,220,0 +170757594859,218,0 +170757594907,215,0 +170757594955,215,0 +170757595004,216,0 +170757595052,217,0 +170757595100,218,0 +170757595149,219,0 +170757595197,219,0 +170757595245,220,0 +170757595293,220,0 +170757595343,222,0 +170757595392,222,0 +170757595440,223,0 +170757595490,222,0 +170757595539,223,0 +170757595587,223,0 +170757595637,223,0 +170757595686,223,0 +170757595736,222,0 +170757595783,217,0 +170757595833,217,0 +170757595881,218,0 +170757595929,218,0 +170757595977,219,0 +170757596025,219,0 +170757596073,220,0 +170757596121,220,0 +170757596170,221,0 +170757596218,222,0 +170757596268,223,0 +170757596316,222,0 +170757596365,223,0 +170757596415,223,0 +170757596463,222,0 +170757596511,223,0 +170757596558,224,0 +170757596608,223,0 +170757596656,223,0 +170757596705,216,0 +170757596753,216,0 +170757596803,218,0 +170757596851,219,0 +170757596900,219,0 +170757596948,220,0 +170757596996,220,0 +170757597044,221,0 +170757597092,220,0 +170757597141,222,0 +170757597191,222,0 +170757597239,222,0 +170757597288,224,0 +170757597336,223,0 +170757597385,222,0 +170757597435,224,0 +170757597483,224,0 +170757597531,224,0 +170757597580,217,0 +170757597628,216,0 +170757597676,217,0 +170757597724,218,0 +170757597772,218,0 +170757597821,219,0 +170757597871,218,0 +170757597919,219,0 +170757597968,220,0 +170757598018,220,0 +170757598066,221,0 +170757598114,221,0 +170757598161,222,0 +170757598209,222,0 +170757598259,222,0 +170757598307,222,0 +170757598355,223,0 +170757598403,222,0 +170757598451,222,0 +170757598499,216,0 +170757598546,215,0 +170757598594,216,0 +170757598642,218,0 +170757598692,218,0 +170757598740,217,0 +170757598788,218,0 +170757598837,219,0 +170757598885,220,0 +170757598933,220,0 +170757598983,222,0 +170757599032,221,0 +170757599080,223,0 +170757599128,224,0 +170757599178,223,0 +170757599226,223,0 +170757599275,224,0 +170757599325,223,0 +170757599374,223,0 +170757599422,216,0 +170757599472,216,0 +170757599521,217,0 +170757599569,218,0 +170757599619,218,0 +170757599666,219,0 +170757599714,220,0 +170757599764,221,0 +170757599812,221,0 +170757599861,222,0 +170757599909,222,0 +170757599959,222,0 +170757600007,223,0 +170757600055,224,0 +170757600104,223,0 +170757600152,222,0 +170757600200,224,0 +170757600248,222,0 +170757600296,216,0 +170757600343,216,0 +170757600393,216,0 +170757600441,217,0 +170757600489,218,0 +170757600537,218,0 +170757600586,219,0 +170757600634,219,0 +170757600684,220,0 +170757600732,220,0 +170757600780,222,0 +170757600829,221,0 +170757600877,222,0 +170757600926,221,0 +170757600974,223,0 +170757601024,223,0 +170757601072,223,0 +170757601121,222,0 +170757601169,223,0 +170757601217,217,0 +170757601265,216,0 +170757601313,217,0 +170757601362,218,0 +170757601410,218,0 +170757601459,219,0 +170757601507,220,0 +170757601555,220,0 +170757601605,219,0 +170757601654,221,0 +170757601702,221,0 +170757601750,221,0 +170757601798,222,0 +170757601846,223,0 +170757601894,223,0 +170757601941,222,0 +170757601989,223,0 +170757602037,223,0 +170757602085,222,0 +170757602133,216,0 +170757602181,218,0 +170757602231,219,0 +170757602279,218,0 +170757602326,219,0 +170757602374,220,0 +170757602424,221,0 +170757602473,221,0 +170757602521,221,0 +170757602571,221,0 +170757602620,222,0 +170757602670,223,0 +170757602719,223,0 +170757602769,223,0 +170757602818,224,0 +170757602866,223,0 +170757602914,224,0 +170757602962,224,0 +170757603010,216,0 +170757603059,215,0 +170757603109,216,0 +170757603157,217,0 +170757603206,218,0 +170757603254,218,0 +170757603302,218,0 +170757603350,219,0 +170757603399,220,0 +170757603447,220,0 +170757603495,222,0 +170757603544,221,0 +170757603592,222,0 +170757603640,224,0 +170757603688,223,0 +170757603737,223,0 +170757603787,223,0 +170757603835,224,0 +170757603882,223,0 +170757603930,215,0 +170757603978,215,0 +170757604026,215,0 +170757604075,216,0 +170757604123,217,0 +170757604171,217,0 +170757604219,218,0 +170757604266,218,0 +170757604314,219,0 +170757604362,220,0 +170757604410,220,0 +170757604458,220,0 +170757604506,221,0 +170757604553,221,0 +170757604601,222,0 +170757604649,222,0 +170757604697,222,0 +170757604745,222,0 +170757604793,222,0 +170757604842,215,0 +170757604891,215,0 +170757604941,215,0 +170757604990,215,0 +170757605040,216,0 +170757605088,217,0 +170757605136,217,0 +170757605185,218,0 +170757605233,218,0 +170757605281,219,0 +170757605329,220,0 +170757605377,223,0 +170757605425,221,0 +170757605475,223,0 +170757605524,223,0 +170757605574,224,0 +170757605622,223,0 +170757605670,223,0 +170757605719,221,0 +170757605769,215,0 +170757605816,215,0 +170757605864,215,0 +170757605912,216,0 +170757605960,218,0 +170757606008,218,0 +170757606056,219,0 +170757606104,220,0 +170757606152,221,0 +170757606201,221,0 +170757606251,221,0 +170757606299,223,0 +170757606348,224,0 +170757606396,223,0 +170757606445,222,0 +170757606495,224,0 +170757606543,223,0 +170757606592,223,0 +170757606640,216,0 +170757606688,215,0 +170757606738,215,0 +170757606786,215,0 +170757606834,216,0 +170757606881,216,0 +170757606929,217,0 +170757606977,218,0 +170757607025,219,0 +170757607073,218,0 +170757607121,220,0 +170757607169,220,0 +170757607217,220,0 +170757607265,219,0 +170757607313,221,0 +170757607361,221,0 +170757607409,220,0 +170757607457,223,0 +170757607504,224,0 +170757607552,231,0 +170757607600,225,0 +170757607648,224,0 +170757607696,225,0 +170757607744,225,0 +170757607791,223,0 +170757607839,224,0 +170757607887,222,0 +170757607935,224,0 +170757607983,216,0 +170757608032,216,0 +170757608080,215,0 +170757608128,216,0 +170757608176,217,0 +170757608224,217,0 +170757608271,218,0 +170757608319,219,0 +170757608367,220,0 +170757608415,220,0 +170757608462,221,0 +170757608510,221,0 +170757608558,222,0 +170757608606,222,0 +170757608654,224,0 +170757608702,225,0 +170757608750,224,0 +170757608797,225,0 +170757608845,223,0 +170757608893,216,0 +170757608941,215,0 +170757608989,215,0 +170757609036,215,0 +170757609084,215,0 +170757609132,216,0 +170757609180,216,0 +170757609229,217,0 +170757609277,217,0 +170757609325,218,0 +170757609373,219,0 +170757609421,219,0 +170757609469,221,0 +170757609518,222,0 +170757609566,222,0 +170757609616,223,0 +170757609664,222,0 +170757609713,223,0 +170757609762,222,0 +170757609810,216,0 +170757609858,215,0 +170757609906,215,0 +170757609956,216,0 +170757610004,216,0 +170757610052,216,0 +170757610101,217,0 +170757610149,217,0 +170757610197,218,0 +170757610245,219,0 +170757610293,219,0 +170757610342,219,0 +170757610390,221,0 +170757610438,222,0 +170757610486,222,0 +170757610534,223,0 +170757610582,222,0 +170757610630,223,0 +170757610679,223,0 +170757610727,215,0 +170757610775,215,0 +170757610823,215,0 +170757610871,216,0 +170757610919,217,0 +170757610967,218,0 +170757611015,218,0 +170757611064,218,0 +170757611114,221,0 +170757611163,220,0 +170757611213,221,0 +170757611261,221,0 +170757611309,221,0 +170757611356,222,0 +170757611404,222,0 +170757611452,224,0 +170757611500,223,0 +170757611548,222,0 +170757611596,224,0 +170757611644,215,0 +170757611691,215,0 +170757611739,216,0 +170757611787,217,0 +170757611835,217,0 +170757611883,218,0 +170757611931,219,0 +170757611979,220,0 +170757612027,221,0 +170757612074,222,0 +170757612122,222,0 +170757612170,222,0 +170757612218,222,0 +170757612266,223,0 +170757612314,223,0 +170757612362,225,0 +170757612409,223,0 +170757612457,223,0 +170757612505,218,0 +170757612553,216,0 +170757612601,217,0 +170757612649,218,0 +170757612697,219,0 +170757612744,219,0 +170757612792,220,0 +170757612842,220,0 +170757612890,221,0 +170757612937,221,0 +170757612985,222,0 +170757613033,223,0 +170757613083,223,0 +170757613130,225,0 +170757613178,223,0 +170757613226,222,0 +170757613274,223,0 +170757613322,224,0 +170757613370,222,0 +170757613418,216,0 +170757613466,215,0 +170757613513,214,0 +170757613561,216,0 +170757613609,216,0 +170757613657,217,0 +170757613705,217,0 +170757613752,218,0 +170757613800,219,0 +170757613848,220,0 +170757613896,221,0 +170757613944,221,0 +170757613991,220,0 +170757614039,222,0 +170757614087,220,0 +170757614135,221,0 +170757614183,221,0 +170757614231,221,0 +170757614279,222,0 +170757614326,216,0 +170757614374,215,0 +170757614422,216,0 +170757614470,216,0 +170757614518,217,0 +170757614566,217,0 +170757614614,218,0 +170757614661,219,0 +170757614709,219,0 +170757614757,221,0 +170757614805,221,0 +170757614853,221,0 +170757614901,222,0 +170757614948,223,0 +170757614996,224,0 +170757615044,223,0 +170757615092,223,0 +170757615141,223,0 +170757615189,223,0 +170757615237,216,0 +170757615285,216,0 +170757615333,217,0 +170757615381,217,0 +170757615430,218,0 +170757615478,218,0 +170757615526,220,0 +170757615573,219,0 +170757615621,219,0 +170757615669,220,0 +170757615717,221,0 +170757615765,221,0 +170757615813,221,0 +170757615862,224,0 +170757615910,223,0 +170757615958,222,0 +170757616006,225,0 +170757616055,224,0 +170757616103,222,0 +170757616151,216,0 +170757616199,216,0 +170757616247,217,0 +170757616294,217,0 +170757616342,217,0 +170757616390,219,0 +170757616438,220,0 +170757616486,219,0 +170757616534,221,0 +170757616582,221,0 +170757616629,222,0 +170757616679,223,0 +170757616727,223,0 +170757616775,223,0 +170757616822,225,0 +170757616870,224,0 +170757616918,224,0 +170757616968,223,0 +170757617015,222,0 +170757617063,216,0 +170757617111,216,0 +170757617159,217,0 +170757617207,218,0 +170757617256,219,0 +170757617304,220,0 +170757617352,221,0 +170757617400,221,0 +170757617448,223,0 +170757617497,222,0 +170757617547,223,0 +170757617594,223,0 +170757617644,223,0 +170757617692,223,0 +170757617740,222,0 +170757617789,223,0 +170757617837,223,0 +170757617885,224,0 +170757617933,222,0 +170757617980,216,0 +170757618028,216,0 +170757618076,217,0 +170757618124,218,0 +170757618172,219,0 +170757618219,220,0 +170757618267,219,0 +170757618315,220,0 +170757618363,220,0 +170757618412,221,0 +170757618462,224,0 +170757618510,223,0 +170757618559,228,0 +170757618607,223,0 +170757618655,222,0 +170757618703,224,0 +170757618751,224,0 +170757618799,223,0 +170757618846,216,0 +170757618894,214,0 +170757618942,214,0 +170757618992,215,0 +170757619040,216,0 +170757619090,217,0 +170757619138,218,0 +170757619185,219,0 +170757619233,219,0 +170757619281,220,0 +170757619329,220,0 +170757619377,222,0 +170757619425,221,0 +170757619472,221,0 +170757619520,223,0 +170757619568,221,0 +170757619616,222,0 +170757619666,222,0 +170757619713,222,0 +170757619763,216,0 +170757619811,214,0 +170757619859,215,0 +170757619906,215,0 +170757619954,215,0 +170757620004,215,0 +170757620052,216,0 +170757620099,217,0 +170757620147,217,0 +170757620195,218,0 +170757620243,219,0 +170757620291,220,0 +170757620339,220,0 +170757620386,220,0 +170757620434,223,0 +170757620482,221,0 +170757620530,222,0 +170757620578,222,0 +170757620625,224,0 +170757620673,216,0 +170757620721,215,0 +170757620769,215,0 +170757620817,216,0 +170757620865,217,0 +170757620913,217,0 +170757620962,217,0 +170757621010,218,0 +170757621058,219,0 +170757621107,219,0 +170757621155,220,0 +170757621203,221,0 +170757621251,222,0 +170757621299,221,0 +170757621347,223,0 +170757621394,222,0 +170757621442,224,0 +170757621490,223,0 +170757621538,222,0 +170757621586,216,0 +170757621634,215,0 +170757621683,216,0 +170757621731,216,0 +170757621779,217,0 +170757621826,217,0 +170757621874,219,0 +170757621922,219,0 +170757621970,219,0 +170757622019,220,0 +170757622067,220,0 +170757622117,222,0 +170757622165,224,0 +170757622212,223,0 +170757622262,223,0 +170757622311,223,0 +170757622361,223,0 +170757622409,223,0 +170757622456,221,0 +170757622504,215,0 +170757622552,215,0 +170757622600,216,0 +170757622649,217,0 +170757622697,218,0 +170757622745,217,0 +170757622793,218,0 +170757622841,218,0 +170757622888,219,0 +170757622936,220,0 +170757622984,222,0 +170757623032,221,0 +170757623080,222,0 +170757623128,224,0 +170757623176,223,0 +170757623225,223,0 +170757623273,223,0 +170757623321,223,0 +170757623368,217,0 +170757623416,216,0 +170757623466,217,0 +170757623513,217,0 +170757623561,218,0 +170757623609,219,0 +170757623657,219,0 +170757623705,220,0 +170757623752,220,0 +170757623800,221,0 +170757623848,222,0 +170757623897,223,0 +170757623945,224,0 +170757623995,224,0 +170757624044,225,0 +170757624092,224,0 +170757624140,223,0 +170757624188,225,0 +170757624235,223,0 +170757624283,216,0 +170757624331,216,0 +170757624379,216,0 +170757624427,217,0 +170757624475,217,0 +170757624523,218,0 +170757624570,218,0 +170757624618,219,0 +170757624668,219,0 +170757624715,220,0 +170757624763,220,0 +170757624813,221,0 +170757624861,221,0 +170757624908,221,0 +170757624956,222,0 +170757625004,224,0 +170757625052,223,0 +170757625100,223,0 +170757625148,223,0 +170757625195,216,0 +170757625245,215,0 +170757625293,215,0 +170757625341,216,0 +170757625388,216,0 +170757625436,216,0 +170757625484,217,0 +170757625532,218,0 +170757625580,218,0 +170757625628,218,0 +170757625676,219,0 +170757625724,220,0 +170757625773,221,0 +170757625821,222,0 +170757625870,222,0 +170757625920,222,0 +170757625967,221,0 +170757626015,222,0 +170757626063,222,0 +170757626111,216,0 +170757626159,215,0 +170757626207,215,0 +170757626255,216,0 +170757626302,216,0 +170757626350,216,0 +170757626398,217,0 +170757626447,218,0 +170757626495,218,0 +170757626543,219,0 +170757626591,219,0 +170757626639,219,0 +170757626687,220,0 +170757626735,221,0 +170757626784,220,0 +170757626834,219,0 +170757626881,220,0 +170757626929,223,0 +170757626979,223,0 +170757627027,216,0 +170757627075,215,0 +170757627123,215,0 +170757627171,216,0 +170757627219,216,0 +170757627266,217,0 +170757627314,217,0 +170757627364,220,0 +170757627412,220,0 +170757627460,219,0 +170757627508,220,0 +170757627556,220,0 +170757627603,221,0 +170757627651,221,0 +170757627699,222,0 +170757627747,222,0 +170757627795,222,0 +170757627845,222,0 +170757627894,222,0 +170757627944,216,0 +170757627991,216,0 +170757628039,217,0 +170757628087,218,0 +170757628135,218,0 +170757628185,219,0 +170757628233,220,0 +170757628281,220,0 +170757628330,222,0 +170757628378,221,0 +170757628426,222,0 +170757628474,222,0 +170757628524,223,0 +170757628571,223,0 +170757628621,223,0 +170757628669,224,0 +170757628717,223,0 +170757628765,223,0 +170757628814,217,0 +170757628862,219,0 +170757628910,220,0 +170757628960,220,0 +170757629007,220,0 +170757629055,222,0 +170757629105,222,0 +170757629154,222,0 +170757629204,222,0 +170757629252,223,0 +170757629300,223,0 +170757629348,223,0 +170757629396,223,0 +170757629444,224,0 +170757629492,224,0 +170757629540,224,0 +170757629589,224,0 +170757629637,222,0 +170757629685,223,0 +170757629735,218,0 +170757629783,218,0 +170757629831,219,0 +170757629879,220,0 +170757629928,221,0 +170757629976,222,0 +170757630025,222,0 +170757630075,224,0 +170757630124,222,0 +170757630174,223,0 +170757630223,223,0 +170757630273,224,0 +170757630321,223,0 +170757630370,223,0 +170757630418,224,0 +170757630466,224,0 +170757630514,224,0 +170757630562,224,0 +170757630611,220,0 +170757630661,216,0 +170757630709,217,0 +170757630757,219,0 +170757630805,219,0 +170757630853,219,0 +170757630900,221,0 +170757630948,220,0 +170757630996,221,0 +170757631045,222,0 +170757631093,222,0 +170757631141,222,0 +170757631189,222,0 +170757631237,223,0 +170757631285,223,0 +170757631333,223,0 +170757631381,223,0 +170757631429,224,0 +170757631478,223,0 +170757631526,221,0 +170757631576,217,0 +170757631623,217,0 +170757631671,217,0 +170757631719,218,0 +170757631769,219,0 +170757631817,220,0 +170757631866,220,0 +170757631916,221,0 +170757631965,223,0 +170757632015,222,0 +170757632063,222,0 +170757632111,222,0 +170757632159,223,0 +170757632208,223,0 +170757632256,223,0 +170757632306,223,0 +170757632354,224,0 +170757632402,222,0 +170757632450,217,0 +170757632499,216,0 +170757632547,217,0 +170757632595,217,0 +170757632643,219,0 +170757632692,219,0 +170757632742,219,0 +170757632790,220,0 +170757632838,220,0 +170757632886,221,0 +170757632934,221,0 +170757632982,222,0 +170757633031,222,0 +170757633079,224,0 +170757633127,222,0 +170757633175,223,0 +170757633223,223,0 +170757633271,222,0 +170757633319,223,0 +170757633368,215,0 +170757633416,215,0 +170757633466,215,0 +170757633515,217,0 +170757633565,217,0 +170757633613,218,0 +170757633662,218,0 +170757633712,219,0 +170757633760,219,0 +170757633808,224,0 +170757633857,221,0 +170757633905,222,0 +170757633953,222,0 +170757634001,222,0 +170757634051,222,0 +170757634100,222,0 +170757634150,222,0 +170757634197,222,0 +170757634247,216,0 +170757634295,214,0 +170757634344,215,0 +170757634394,215,0 +170757634442,216,0 +170757634491,216,0 +170757634541,218,0 +170757634591,218,0 +170757634638,219,0 +170757634686,219,0 +170757634734,220,0 +170757634784,221,0 +170757634833,222,0 +170757634881,222,0 +170757634929,222,0 +170757634977,222,0 +170757635027,222,0 +170757635075,221,0 +170757635124,223,0 +170757635172,216,0 +170757635220,215,0 +170757635268,216,0 +170757635316,217,0 +170757635366,217,0 +170757635414,217,0 +170757635462,218,0 +170757635509,219,0 +170757635559,219,0 +170757635607,219,0 +170757635655,220,0 +170757635703,220,0 +170757635752,221,0 +170757635800,221,0 +170757635850,222,0 +170757635898,223,0 +170757635946,222,0 +170757635994,222,0 +170757636041,223,0 +170757636089,215,0 +170757636137,215,0 +170757636185,215,0 +170757636235,216,0 +170757636284,216,0 +170757636334,217,0 +170757636384,218,0 +170757636433,219,0 +170757636483,219,0 +170757636531,219,0 +170757636579,219,0 +170757636628,221,0 +170757636676,221,0 +170757636724,222,0 +170757636774,223,0 +170757636823,223,0 +170757636871,222,0 +170757636919,223,0 +170757636967,216,0 +170757637015,215,0 +170757637063,215,0 +170757637111,216,0 +170757637160,216,0 +170757637208,217,0 +170757637256,217,0 +170757637304,218,0 +170757637354,219,0 +170757637402,219,0 +170757637450,219,0 +170757637498,221,0 +170757637547,221,0 +170757637596,222,0 +170757637644,224,0 +170757637692,222,0 +170757637740,223,0 +170757637790,222,0 +170757637838,223,0 +170757637886,216,0 +170757637935,215,0 +170757637983,215,0 +170757638031,215,0 +170757638079,215,0 +170757638127,216,0 +170757638177,217,0 +170757638225,218,0 +170757638274,218,0 +170757638322,219,0 +170757638370,220,0 +170757638418,220,0 +170757638468,220,0 +170757638517,222,0 +170757638565,222,0 +170757638615,222,0 +170757638664,222,0 +170757638712,222,0 +170757638760,223,0 +170757638810,216,0 +170757638859,215,0 +170757638909,215,0 +170757638958,215,0 +170757639006,216,0 +170757639054,216,0 +170757639104,217,0 +170757639152,218,0 +170757639199,219,0 +170757639247,219,0 +170757639295,224,0 +170757639343,221,0 +170757639391,221,0 +170757639439,222,0 +170757639489,221,0 +170757639538,222,0 +170757639588,221,0 +170757639636,223,0 +170757639685,216,0 +170757639733,214,0 +170757639783,215,0 +170757639831,215,0 +170757639879,215,0 +170757639928,215,0 +170757639978,216,0 +170757640026,217,0 +170757640074,218,0 +170757640123,219,0 +170757640173,220,0 +170757640220,220,0 +170757640268,221,0 +170757640316,221,0 +170757640366,222,0 +170757640414,223,0 +170757640462,222,0 +170757640510,222,0 +170757640558,223,0 +170757640606,215,0 +170757640654,214,0 +170757640703,215,0 +170757640753,215,0 +170757640801,215,0 +170757640849,216,0 +170757640898,216,0 +170757640948,216,0 +170757640997,217,0 +170757641047,218,0 +170757641096,219,0 +170757641144,220,0 +170757641192,220,0 +170757641240,220,0 +170757641290,221,0 +170757641339,221,0 +170757641387,222,0 +170757641435,223,0 +170757641483,221,0 +170757641530,215,0 +170757641578,215,0 +170757641626,215,0 +170757641674,215,0 +170757641724,216,0 +170757641772,220,0 +170757641820,217,0 +170757641867,217,0 +170757641917,219,0 +170757641966,220,0 +170757642016,219,0 +170757642065,221,0 +170757642115,220,0 +170757642163,221,0 +170757642211,222,0 +170757642260,221,0 +170757642310,222,0 +170757642360,223,0 +170757642407,216,0 +170757642455,215,0 +170757642503,216,0 +170757642551,216,0 +170757642599,217,0 +170757642647,217,0 +170757642697,217,0 +170757642745,217,0 +170757642794,218,0 +170757642842,218,0 +170757642892,219,0 +170757642940,220,0 +170757642989,221,0 +170757643037,221,0 +170757643085,222,0 +170757643133,223,0 +170757643181,222,0 +170757643230,222,0 +170757643278,223,0 +170757643326,215,0 +170757643374,215,0 +170757643422,216,0 +170757643472,217,0 +170757643521,217,0 +170757643569,217,0 +170757643617,217,0 +170757643667,217,0 +170757643714,219,0 +170757643764,219,0 +170757643812,220,0 +170757643861,220,0 +170757643909,221,0 +170757643957,221,0 +170757644007,224,0 +170757644055,221,0 +170757644103,222,0 +170757644151,223,0 +170757644199,220,0 +170757644247,216,0 +170757644296,217,0 +170757644344,217,0 +170757644392,218,0 +170757644440,218,0 +170757644488,219,0 +170757644538,219,0 +170757644585,219,0 +170757644633,220,0 +170757644681,221,0 +170757644729,223,0 +170757644777,223,0 +170757644825,224,0 +170757644873,223,0 +170757644922,224,0 +170757644970,224,0 +170757645018,223,0 +170757645066,223,0 +170757645114,218,0 +170757645162,221,0 +170757645210,221,0 +170757645258,221,0 +170757645306,222,0 +170757645353,223,0 +170757645401,223,0 +170757645449,223,0 +170757645499,223,0 +170757645546,223,0 +170757645596,224,0 +170757645644,225,0 +170757645692,224,0 +170757645739,224,0 +170757645787,223,0 +170757645835,224,0 +170757645883,223,0 +170757645931,224,0 +170757645979,224,0 +170757646027,222,0 +170757646075,221,0 +170757646124,222,0 +170757646174,222,0 +170757646223,224,0 +170757646271,223,0 +170757646319,222,0 +170757646367,223,0 +170757646415,223,0 +170757646463,225,0 +170757646512,224,0 +170757646560,225,0 +170757646608,224,0 +170757646656,225,0 +170757646704,224,0 +170757646752,223,0 +170757646800,223,0 +170757646847,223,0 +170757646895,222,0 +170757646943,219,0 +170757646992,219,0 +170757647040,220,0 +170757647088,221,0 +170757647138,221,0 +170757647186,221,0 +170757647234,221,0 +170757647283,222,0 +170757647333,224,0 +170757647381,222,0 +170757647429,223,0 +170757647476,223,0 +170757647524,224,0 +170757647572,224,0 +170757647622,224,0 +170757647670,225,0 +170757647718,223,0 +170757647766,223,0 +170757647815,222,0 +170757647863,217,0 +170757647911,217,0 +170757647959,218,0 +170757648007,218,0 +170757648055,219,0 +170757648104,219,0 +170757648152,220,0 +170757648202,222,0 +170757648250,222,0 +170757648298,223,0 +170757648346,224,0 +170757648394,226,0 +170757648443,224,0 +170757648491,225,0 +170757648539,224,0 +170757648587,223,0 +170757648637,223,0 +170757648685,223,0 +170757648732,216,0 +170757648780,217,0 +170757648828,217,0 +170757648876,217,0 +170757648924,218,0 +170757648973,219,0 +170757649021,219,0 +170757649069,220,0 +170757649117,221,0 +170757649165,222,0 +170757649213,221,0 +170757649261,222,0 +170757649309,222,0 +170757649357,222,0 +170757649405,223,0 +170757649455,221,0 +170757649504,222,0 +170757649552,221,0 +170757649600,223,0 +170757649649,216,0 +170757649699,216,0 +170757649747,217,0 +170757649796,217,0 +170757649844,219,0 +170757649892,217,0 +170757649940,219,0 +170757649988,220,0 +170757650038,220,0 +170757650086,220,0 +170757650134,222,0 +170757650182,223,0 +170757650231,223,0 +170757650279,224,0 +170757650329,223,0 +170757650376,224,0 +170757650424,224,0 +170757650472,223,0 +170757650520,222,0 +170757650568,217,0 +170757650618,218,0 +170757650666,217,0 +170757650715,218,0 +170757650763,219,0 +170757650813,220,0 +170757650862,220,0 +170757650910,220,0 +170757650960,222,0 +170757651008,223,0 +170757651057,223,0 +170757651105,223,0 +170757651155,224,0 +170757651203,223,0 +170757651251,224,0 +170757651299,224,0 +170757651347,224,0 +170757651395,223,0 +170757651443,222,0 +170757651490,216,0 +170757651538,216,0 +170757651586,218,0 +170757651634,219,0 +170757651684,220,0 +170757651733,220,0 +170757651783,221,0 +170757651833,221,0 +170757651881,223,0 +170757651928,223,0 +170757651976,223,0 +170757652024,224,0 +170757652074,224,0 +170757652122,221,0 +170757652170,222,0 +170757652218,223,0 +170757652267,223,0 +170757652317,222,0 +170757652366,216,0 +170757652416,216,0 +170757652464,216,0 +170757652513,217,0 +170757652563,218,0 +170757652611,219,0 +170757652658,219,0 +170757652706,219,0 +170757652756,221,0 +170757652805,220,0 +170757652853,221,0 +170757652901,222,0 +170757652949,224,0 +170757652997,221,0 +170757653045,224,0 +170757653094,223,0 +170757653144,224,0 +170757653192,223,0 +170757653240,223,0 +170757653289,215,0 +170757653337,215,0 +170757653385,215,0 +170757653434,216,0 +170757653484,217,0 +170757653531,217,0 +170757653579,219,0 +170757653627,219,0 +170757653675,219,0 +170757653723,220,0 +170757653771,221,0 +170757653819,222,0 +170757653866,223,0 +170757653916,225,0 +170757653964,222,0 +170757654012,222,0 +170757654061,222,0 +170757654109,221,0 +170757654158,222,0 +170757654206,215,0 +170757654254,215,0 +170757654302,215,0 +170757654350,215,0 +170757654398,216,0 +170757654446,216,0 +170757654495,216,0 +170757654545,217,0 +170757654593,219,0 +170757654641,219,0 +170757654690,219,0 +170757654738,221,0 +170757654786,221,0 +170757654834,221,0 +170757654882,222,0 +170757654930,221,0 +170757654979,221,0 +170757655029,223,0 +170757655077,216,0 +170757655125,214,0 +170757655173,215,0 +170757655221,215,0 +170757655270,215,0 +170757655320,216,0 +170757655369,217,0 +170757655419,217,0 +170757655468,217,0 +170757655516,218,0 +170757655564,219,0 +170757655614,219,0 +170757655662,221,0 +170757655710,221,0 +170757655757,221,0 +170757655807,222,0 +170757655855,223,0 +170757655902,223,0 +170757655950,224,0 +170757655998,216,0 +170757656046,215,0 +170757656094,216,0 +170757656142,216,0 +170757656190,217,0 +170757656237,218,0 +170757656285,218,0 +170757656333,219,0 +170757656381,220,0 +170757656429,221,0 +170757656477,221,0 +170757656526,221,0 +170757656574,222,0 +170757656622,222,0 +170757656670,223,0 +170757656718,226,0 +170757656767,223,0 +170757656815,223,0 +170757656863,222,0 +170757656912,215,0 +170757656960,215,0 +170757657010,215,0 +170757657058,216,0 +170757657106,216,0 +170757657154,218,0 +170757657202,218,0 +170757657250,218,0 +170757657298,219,0 +170757657345,220,0 +170757657393,220,0 +170757657441,220,0 +170757657489,223,0 +170757657537,221,0 +170757657585,220,0 +170757657633,222,0 +170757657683,222,0 +170757657731,222,0 +170757657779,222,0 +170757657827,215,0 +170757657875,214,0 +170757657923,215,0 +170757657970,215,0 +170757658020,215,0 +170757658068,215,0 +170757658117,215,0 +170757658165,215,0 +170757658213,216,0 +170757658261,216,0 +170757658311,217,0 +170757658359,219,0 +170757658407,218,0 +170757658455,219,0 +170757658503,219,0 +170757658552,219,0 +170757658602,219,0 +170757658650,222,0 +170757658699,216,0 +170757658749,215,0 +170757658797,215,0 +170757658845,216,0 +170757658893,217,0 +170757658940,218,0 +170757658990,218,0 +170757659038,218,0 +170757659086,218,0 +170757659135,219,0 +170757659183,220,0 +170757659233,220,0 +170757659282,221,0 +170757659330,222,0 +170757659378,224,0 +170757659426,222,0 +170757659474,222,0 +170757659522,222,0 +170757659571,222,0 +170757659619,217,0 +170757659667,216,0 +170757659715,217,0 +170757659763,217,0 +170757659812,218,0 +170757659860,218,0 +170757659908,218,0 +170757659956,219,0 +170757660004,219,0 +170757660052,220,0 +170757660100,221,0 +170757660148,221,0 +170757660196,221,0 +170757660243,222,0 +170757660291,222,0 +170757660339,222,0 +170757660388,224,0 +170757660436,222,0 +170757660484,223,0 +170757660532,217,0 +170757660580,216,0 +170757660628,216,0 +170757660676,217,0 +170757660724,218,0 +170757660771,218,0 +170757660819,219,0 +170757660867,219,0 +170757660915,221,0 +170757660963,220,0 +170757661011,221,0 +170757661058,222,0 +170757661106,222,0 +170757661154,222,0 +170757661202,223,0 +170757661250,223,0 +170757661298,223,0 +170757661346,223,0 +170757661394,222,0 +170757661441,218,0 +170757661489,218,0 +170757661537,219,0 +170757661585,220,0 +170757661633,218,0 +170757661682,222,0 +170757661730,222,0 +170757661780,222,0 +170757661827,223,0 +170757661875,223,0 +170757661923,223,0 +170757661971,223,0 +170757662019,223,0 +170757662069,223,0 +170757662116,224,0 +170757662164,224,0 +170757662214,224,0 +170757662262,223,0 +170757662309,222,0 +170757662357,220,0 +170757662405,220,0 +170757662453,220,0 +170757662501,221,0 +170757662550,221,0 +170757662598,222,0 +170757662646,222,0 +170757662694,222,0 +170757662742,224,0 +170757662791,223,0 +170757662841,223,0 +170757662889,223,0 +170757662937,223,0 +170757662984,223,0 +170757663032,223,0 +170757663080,224,0 +170757663128,223,0 +170757663176,223,0 +170757663225,219,0 +170757663273,217,0 +170757663321,218,0 +170757663369,218,0 +170757663417,218,0 +170757663465,219,0 +170757663513,220,0 +170757663562,220,0 +170757663612,221,0 +170757663659,221,0 +170757663707,222,0 +170757663755,222,0 +170757663803,222,0 +170757663851,222,0 +170757663899,223,0 +170757663948,224,0 +170757663996,223,0 +170757664044,223,0 +170757664092,223,0 +170757664140,217,0 +170757664188,216,0 +170757664236,217,0 +170757664284,217,0 +170757664331,218,0 +170757664381,219,0 +170757664429,219,0 +170757664477,219,0 +170757664526,219,0 +170757664576,221,0 +170757664625,221,0 +170757664675,224,0 +170757664723,226,0 +170757664771,223,0 +170757664820,224,0 +170757664868,223,0 +170757664916,225,0 +170757664966,223,0 +170757665014,223,0 +170757665063,216,0 +170757665111,216,0 +170757665161,217,0 +170757665209,218,0 +170757665258,218,0 +170757665308,218,0 +170757665357,219,0 +170757665407,220,0 +170757665455,220,0 +170757665503,222,0 +170757665551,221,0 +170757665600,223,0 +170757665648,224,0 +170757665696,221,0 +170757665744,222,0 +170757665792,222,0 +170757665840,222,0 +170757665888,223,0 +170757665936,225,0 +170757665984,216,0 +170757666033,216,0 +170757666081,217,0 +170757666131,218,0 +170757666180,218,0 +170757666228,219,0 +170757666278,220,0 +170757666326,220,0 +170757666375,221,0 +170757666425,221,0 +170757666473,221,0 +170757666521,223,0 +170757666568,222,0 +170757666616,223,0 +170757666666,223,0 +170757666714,223,0 +170757666762,223,0 +170757666810,224,0 +170757666859,216,0 +170757666907,215,0 +170757666955,216,0 +170757667005,217,0 +170757667054,217,0 +170757667102,219,0 +170757667152,219,0 +170757667200,220,0 +170757667248,220,0 +170757667296,221,0 +170757667345,221,0 +170757667393,222,0 +170757667441,223,0 +170757667491,223,0 +170757667538,223,0 +170757667586,222,0 +170757667636,224,0 +170757667684,223,0 +170757667733,223,0 +170757667781,216,0 +170757667829,215,0 +170757667877,217,0 +170757667927,217,0 +170757667975,218,0 +170757668024,218,0 +170757668072,220,0 +170757668120,219,0 +170757668168,220,0 +170757668216,222,0 +170757668263,221,0 +170757668311,222,0 +170757668359,221,0 +170757668407,223,0 +170757668455,222,0 +170757668503,222,0 +170757668550,222,0 +170757668598,234,0 +170757668646,223,0 +170757668694,215,0 +170757668742,215,0 +170757668790,216,0 +170757668837,217,0 +170757668885,217,0 +170757668933,217,0 +170757668981,220,0 +170757669031,219,0 +170757669078,220,0 +170757669126,221,0 +170757669174,222,0 +170757669222,223,0 +170757669270,224,0 +170757669318,222,0 +170757669366,221,0 +170757669413,223,0 +170757669463,224,0 +170757669511,224,0 +170757669559,221,0 +170757669607,215,0 +170757669655,215,0 +170757669705,216,0 +170757669753,216,0 +170757669801,217,0 +170757669849,218,0 +170757669897,218,0 +170757669945,219,0 +170757669992,220,0 +170757670040,220,0 +170757670088,219,0 +170757670137,221,0 +170757670185,222,0 +170757670235,222,0 +170757670282,225,0 +170757670330,223,0 +170757670378,223,0 +170757670426,223,0 +170757670474,223,0 +170757670523,215,0 +170757670571,215,0 +170757670619,215,0 +170757670667,215,0 +170757670715,216,0 +170757670763,217,0 +170757670812,217,0 +170757670860,217,0 +170757670908,218,0 +170757670956,219,0 +170757671004,218,0 +170757671051,220,0 +170757671099,221,0 +170757671147,221,0 +170757671195,221,0 +170757671243,223,0 +170757671291,220,0 +170757671338,222,0 +170757671386,217,0 +170757671434,215,0 +170757671482,215,0 +170757671531,215,0 +170757671579,215,0 +170757671627,216,0 +170757671675,217,0 +170757671725,217,0 +170757671773,217,0 +170757671820,219,0 +170757671868,219,0 +170757671918,219,0 +170757671966,219,0 +170757672015,220,0 +170757672063,221,0 +170757672111,222,0 +170757672159,224,0 +170757672207,222,0 +170757672254,221,0 +170757672302,216,0 +170757672350,215,0 +170757672398,215,0 +170757672447,216,0 +170757672495,217,0 +170757672543,218,0 +170757672591,217,0 +170757672638,218,0 +170757672686,218,0 +170757672734,218,0 +170757672782,219,0 +170757672831,220,0 +170757672881,221,0 +170757672929,222,0 +170757672977,222,0 +170757673025,224,0 +170757673074,222,0 +170757673122,222,0 +170757673172,223,0 +170757673220,220,0 +170757673267,216,0 +170757673315,217,0 +170757673363,217,0 +170757673413,217,0 +170757673462,219,0 +170757673512,220,0 +170757673560,219,0 +170757673609,221,0 +170757673657,221,0 +170757673707,222,0 +170757673756,223,0 +170757673806,224,0 +170757673855,223,0 +170757673903,223,0 +170757673952,224,0 +170757674002,224,0 +170757674050,223,0 +170757674098,222,0 +170757674146,218,0 +170757674194,219,0 +170757674241,218,0 +170757674289,220,0 +170757674337,220,0 +170757674385,220,0 +170757674433,220,0 +170757674483,221,0 +170757674531,223,0 +170757674578,221,0 +170757674626,223,0 +170757674674,224,0 +170757674722,223,0 +170757674770,223,0 +170757674818,223,0 +170757674868,223,0 +170757674916,224,0 +170757674965,223,0 +170757675013,216,0 +170757675061,216,0 +170757675109,217,0 +170757675157,217,0 +170757675204,219,0 +170757675252,218,0 +170757675300,220,0 +170757675348,220,0 +170757675396,220,0 +170757675444,221,0 +170757675492,221,0 +170757675539,224,0 +170757675587,224,0 +170757675635,223,0 +170757675683,223,0 +170757675731,223,0 +170757675778,224,0 +170757675826,224,0 +170757675874,223,0 +170757675922,216,0 +170757675969,215,0 +170757676017,216,0 +170757676065,217,0 +170757676113,217,0 +170757676161,218,0 +170757676208,218,0 +170757676256,219,0 +170757676304,219,0 +170757676352,220,0 +170757676400,222,0 +170757676447,221,0 +170757676495,221,0 +170757676543,222,0 +170757676591,225,0 +170757676639,222,0 +170757676686,223,0 +170757676734,223,0 +170757676782,222,0 +170757676830,216,0 +170757676878,215,0 +170757676926,216,0 +170757676975,216,0 +170757677023,216,0 +170757677071,217,0 +170757677119,217,0 +170757677167,216,0 +170757677214,219,0 +170757677262,220,0 +170757677310,220,0 +170757677360,221,0 +170757677409,221,0 +170757677457,223,0 +170757677505,222,0 +170757677553,221,0 +170757677601,221,0 +170757677648,223,0 +170757677696,223,0 +170757677744,217,0 +170757677792,215,0 +170757677840,216,0 +170757677888,216,0 +170757677935,217,0 +170757677983,218,0 +170757678031,218,0 +170757678079,219,0 +170757678128,221,0 +170757678176,220,0 +170757678224,221,0 +170757678272,221,0 +170757678320,222,0 +170757678370,222,0 +170757678418,222,0 +170757678466,223,0 +170757678514,223,0 +170757678562,222,0 +170757678610,223,0 +170757678658,217,0 +170757678705,218,0 +170757678753,218,0 +170757678801,220,0 +170757678849,220,0 +170757678897,220,0 +170757678945,220,0 +170757678993,221,0 +170757679040,222,0 +170757679088,222,0 +170757679138,223,0 +170757679185,222,0 +170757679233,223,0 +170757679281,223,0 +170757679329,223,0 +170757679377,225,0 +170757679425,223,0 +170757679474,223,0 +170757679522,222,0 +170757679570,217,0 +170757679618,217,0 +170757679667,218,0 +170757679717,218,0 +170757679766,219,0 +170757679814,220,0 +170757679862,222,0 +170757679910,222,0 +170757679958,221,0 +170757680006,223,0 +170757680054,222,0 +170757680102,223,0 +170757680149,224,0 +170757680197,223,0 +170757680245,226,0 +170757680293,223,0 +170757680341,223,0 +170757680390,223,0 +170757680440,220,0 +170757680489,214,0 +170757680537,216,0 +170757680585,216,0 +170757680635,217,0 +170757680683,218,0 +170757680730,218,0 +170757680780,219,0 +170757680829,219,0 +170757680877,219,0 +170757680925,220,0 +170757680973,221,0 +170757681021,222,0 +170757681069,223,0 +170757681117,223,0 +170757681165,227,0 +170757681214,222,0 +170757681264,222,0 +170757681312,221,0 +170757681361,216,0 +170757681411,215,0 +170757681460,216,0 +170757681510,217,0 +170757681558,217,0 +170757681607,217,0 +170757681657,218,0 +170757681705,217,0 +170757681753,218,0 +170757681802,219,0 +170757681852,221,0 +170757681899,221,0 +170757681947,222,0 +170757681997,222,0 +170757682045,223,0 +170757682094,224,0 +170757682144,222,0 +170757682192,223,0 +170757682240,223,0 +170757682289,215,0 +170757682337,214,0 +170757682385,215,0 +170757682433,214,0 +170757682481,216,0 +170757682529,216,0 +170757682576,217,0 +170757682624,218,0 +170757682672,218,0 +170757682720,219,0 +170757682768,219,0 +170757682815,220,0 +170757682863,220,0 +170757682911,222,0 +170757682959,222,0 +170757683007,221,0 +170757683055,221,0 +170757683102,222,0 +170757683150,222,0 +170757683198,215,0 +170757683246,215,0 +170757683294,215,0 +170757683342,215,0 +170757683390,215,0 +170757683438,216,0 +170757683488,217,0 +170757683536,218,0 +170757683583,220,0 +170757683631,219,0 +170757683679,220,0 +170757683727,220,0 +170757683775,220,0 +170757683823,221,0 +170757683873,224,0 +170757683921,223,0 +170757683968,222,0 +170757684016,223,0 +170757684066,219,0 +170757684115,215,0 +170757684163,215,0 +170757684211,215,0 +170757684259,215,0 +170757684309,216,0 +170757684356,216,0 +170757684404,218,0 +170757684452,218,0 +170757684500,218,0 +170757684548,220,0 +170757684596,220,0 +170757684645,221,0 +170757684693,221,0 +170757684741,222,0 +170757684789,223,0 +170757684837,222,0 +170757684885,223,0 +170757684933,222,0 +170757684983,216,0 +170757685030,215,0 +170757685078,215,0 +170757685126,216,0 +170757685174,216,0 +170757685224,217,0 +170757685273,217,0 +170757685323,218,0 +170757685371,219,0 +170757685419,219,0 +170757685466,219,0 +170757685514,220,0 +170757685562,220,0 +170757685610,222,0 +170757685660,221,0 +170757685709,222,0 +170757685759,223,0 +170757685807,223,0 +170757685854,223,0 +170757685902,216,0 +170757685950,216,0 +170757685998,216,0 +170757686046,217,0 +170757686094,218,0 +170757686141,218,0 +170757686189,219,0 +170757686237,219,0 +170757686285,220,0 +170757686333,221,0 +170757686380,221,0 +170757686430,222,0 +170757686478,222,0 +170757686525,223,0 +170757686573,223,0 +170757686621,223,0 +170757686669,222,0 +170757686717,223,0 +170757686766,223,0 +170757686814,215,0 +170757686862,215,0 +170757686911,216,0 +170757686959,217,0 +170757687007,217,0 +170757687057,218,0 +170757687104,218,0 +170757687152,218,0 +170757687200,219,0 +170757687248,220,0 +170757687296,220,0 +170757687343,221,0 +170757687391,222,0 +170757687441,222,0 +170757687489,222,0 +170757687537,223,0 +170757687584,224,0 +170757687635,224,0 +170757687684,222,0 +170757687732,215,0 +170757687782,216,0 +170757687831,216,0 +170757687880,218,0 +170757687928,218,0 +170757687976,218,0 +170757688024,218,0 +170757688072,220,0 +170757688120,219,0 +170757688168,220,0 +170757688216,221,0 +170757688263,221,0 +170757688313,224,0 +170757688361,221,0 +170757688409,221,0 +170757688457,223,0 +170757688505,224,0 +170757688553,223,0 +170757688601,216,0 +170757688649,218,0 +170757688696,217,0 +170757688744,217,0 +170757688792,218,0 +170757688840,218,0 +170757688890,218,0 +170757688938,221,0 +170757688987,221,0 +170757689035,221,0 +170757689083,222,0 +170757689131,223,0 +170757689181,222,0 +170757689229,222,0 +170757689278,223,0 +170757689326,224,0 +170757689376,223,0 +170757689423,223,0 +170757689471,223,0 +170757689519,218,0 +170757689567,217,0 +170757689617,218,0 +170757689665,218,0 +170757689712,219,0 +170757689760,219,0 +170757689808,219,0 +170757689856,221,0 +170757689904,220,0 +170757689952,222,0 +170757690000,222,0 +170757690049,223,0 +170757690097,222,0 +170757690145,223,0 +170757690193,223,0 +170757690242,223,0 +170757690290,222,0 +170757690338,222,0 +170757690386,222,0 +170757690434,216,0 +170757690484,216,0 +170757690533,216,0 +170757690581,217,0 +170757690629,217,0 +170757690677,218,0 +170757690725,218,0 +170757690773,219,0 +170757690823,220,0 +170757690872,221,0 +170757690920,223,0 +170757690968,222,0 +170757691017,222,0 +170757691065,223,0 +170757691115,223,0 +170757691163,224,0 +170757691212,224,0 +170757691260,223,0 +170757691308,221,0 +170757691356,216,0 +170757691405,216,0 +170757691453,217,0 +170757691501,219,0 +170757691549,217,0 +170757691597,219,0 +170757691647,219,0 +170757691695,219,0 +170757691743,221,0 +170757691792,221,0 +170757691840,222,0 +170757691890,222,0 +170757691938,223,0 +170757691987,222,0 +170757692035,223,0 +170757692083,224,0 +170757692131,224,0 +170757692181,224,0 +170757692228,217,0 +170757692276,216,0 +170757692324,216,0 +170757692372,217,0 +170757692420,218,0 +170757692468,218,0 +170757692518,218,0 +170757692566,221,0 +170757692614,220,0 +170757692661,223,0 +170757692709,222,0 +170757692757,222,0 +170757692805,222,0 +170757692853,224,0 +170757692903,224,0 +170757692950,225,0 +170757692998,223,0 +170757693046,223,0 +170757693094,223,0 +170757693142,217,0 +170757693190,217,0 +170757693238,218,0 +170757693286,219,0 +170757693334,219,0 +170757693383,217,0 +170757693433,222,0 +170757693481,220,0 +170757693530,220,0 +170757693578,221,0 +170757693626,220,0 +170757693674,222,0 +170757693724,222,0 +170757693773,222,0 +170757693821,222,0 +170757693871,223,0 +170757693919,223,0 +170757693966,223,0 +170757694014,222,0 +170757694062,216,0 +170757694110,217,0 +170757694158,216,0 +170757694206,219,0 +170757694256,219,0 +170757694305,218,0 +170757694355,220,0 +170757694404,219,0 +170757694452,220,0 +170757694502,220,0 +170757694551,222,0 +170757694601,222,0 +170757694649,222,0 +170757694697,223,0 +170757694744,224,0 +170757694792,224,0 +170757694842,221,0 +170757694890,223,0 +170757694938,220,0 +170757694986,217,0 +170757695035,218,0 +170757695083,219,0 +170757695133,219,0 +170757695182,220,0 +170757695230,221,0 +170757695278,221,0 +170757695326,222,0 +170757695375,223,0 +170757695425,224,0 +170757695474,223,0 +170757695524,223,0 +170757695573,224,0 +170757695623,224,0 +170757695671,225,0 +170757695719,223,0 +170757695768,224,0 +170757695816,223,0 +170757695866,220,0 +170757695915,220,0 +170757695965,220,0 +170757696014,221,0 +170757696062,222,0 +170757696110,222,0 +170757696158,223,0 +170757696208,222,0 +170757696256,223,0 +170757696304,224,0 +170757696352,224,0 +170757696399,224,0 +170757696447,224,0 +170757696495,227,0 +170757696545,224,0 +170757696593,224,0 +170757696641,223,0 +170757696689,223,0 +170757696736,222,0 +170757696786,215,0 +170757696835,216,0 +170757696885,217,0 +170757696934,218,0 +170757696982,218,0 +170757697030,219,0 +170757697078,220,0 +170757697126,220,0 +170757697174,221,0 +170757697224,223,0 +170757697272,222,0 +170757697320,222,0 +170757697368,222,0 +170757697417,224,0 +170757697465,223,0 +170757697513,224,0 +170757697561,224,0 +170757697610,223,0 +170757697658,218,0 +170757697708,215,0 +170757697756,215,0 +170757697804,216,0 +170757697852,217,0 +170757697900,218,0 +170757697948,216,0 +170757697995,219,0 +170757698043,220,0 +170757698091,222,0 +170757698139,222,0 +170757698187,222,0 +170757698235,223,0 +170757698283,223,0 +170757698333,223,0 +170757698381,224,0 +170757698429,224,0 +170757698477,223,0 +170757698525,222,0 +170757698574,216,0 +170757698622,215,0 +170757698671,215,0 +170757698719,216,0 +170757698769,216,0 +170757698816,217,0 +170757698864,218,0 +170757698914,219,0 +170757698964,220,0 +170757699013,221,0 +170757699061,220,0 +170757699110,221,0 +170757699158,221,0 +170757699206,220,0 +170757699254,221,0 +170757699302,222,0 +170757699351,222,0 +170757699401,222,0 +170757699450,222,0 +170757699498,215,0 +170757699546,215,0 +170757699594,215,0 +170757699642,215,0 +170757699691,215,0 +170757699741,215,0 +170757699789,216,0 +170757699838,217,0 +170757699888,218,0 +170757699936,219,0 +170757699985,220,0 +170757700033,220,0 +170757700081,221,0 +170757700129,221,0 +170757700177,223,0 +170757700225,224,0 +170757700272,223,0 +170757700320,224,0 +170757700368,221,0 +170757700416,215,0 +170757700464,215,0 +170757700512,215,0 +170757700560,215,0 +170757700608,215,0 +170757700656,215,0 +170757700704,216,0 +170757700752,216,0 +170757700800,217,0 +170757700848,219,0 +170757700896,219,0 +170757700945,220,0 +170757700993,220,0 +170757701041,222,0 +170757701089,222,0 +170757701137,223,0 +170757701186,223,0 +170757701234,218,0 +170757701282,221,0 +170757701330,215,0 +170757701378,215,0 +170757701426,215,0 +170757701475,215,0 +170757701523,216,0 +170757701571,216,0 +170757701619,217,0 +170757701667,217,0 +170757701715,218,0 +170757701764,219,0 +170757701812,220,0 +170757701860,222,0 +170757701908,221,0 +170757701956,222,0 +170757702004,222,0 +170757702052,222,0 +170757702101,223,0 +170757702149,222,0 +170757702197,216,0 +170757702245,215,0 +170757702294,215,0 +170757702342,216,0 +170757702390,217,0 +170757702438,217,0 +170757702486,218,0 +170757702534,219,0 +170757702583,220,0 +170757702631,220,0 +170757702679,220,0 +170757702727,221,0 +170757702777,221,0 +170757702826,221,0 +170757702876,222,0 +170757702923,221,0 +170757702973,223,0 +170757703021,224,0 +170757703069,223,0 +170757703116,216,0 +170757703164,217,0 +170757703212,217,0 +170757703262,218,0 +170757703311,219,0 +170757703361,219,0 +170757703410,219,0 +170757703458,221,0 +170757703507,221,0 +170757703557,221,0 +170757703605,222,0 +170757703653,223,0 +170757703700,222,0 +170757703748,223,0 +170757703798,223,0 +170757703846,224,0 +170757703895,226,0 +170757703943,223,0 +170757703991,222,0 +170757704038,216,0 +170757704086,216,0 +170757704134,217,0 +170757704182,218,0 +170757704230,218,0 +170757704279,219,0 +170757704327,220,0 +170757704375,220,0 +170757704423,219,0 +170757704471,222,0 +170757704521,222,0 +170757704570,223,0 +170757704618,223,0 +170757704668,223,0 +170757704717,225,0 +170757704767,224,0 +170757704815,223,0 +170757704864,223,0 +170757704912,216,0 +170757704960,216,0 +170757705010,217,0 +170757705059,217,0 +170757705107,218,0 +170757705155,218,0 +170757705205,219,0 +170757705254,219,0 +170757705302,220,0 +170757705350,221,0 +170757705398,221,0 +170757705447,222,0 +170757705497,223,0 +170757705545,223,0 +170757705594,224,0 +170757705644,224,0 +170757705692,224,0 +170757705741,224,0 +170757705789,224,0 +170757705837,217,0 +170757705885,217,0 +170757705933,219,0 +170757705981,218,0 +170757706030,218,0 +170757706078,221,0 +170757706126,220,0 +170757706174,221,0 +170757706222,222,0 +170757706270,222,0 +170757706318,222,0 +170757706367,223,0 +170757706415,224,0 +170757706463,224,0 +170757706511,224,0 +170757706559,224,0 +170757706608,224,0 +170757706656,223,0 +170757706704,223,0 +170757706752,217,0 +170757706802,217,0 +170757706851,218,0 +170757706901,219,0 +170757706949,219,0 +170757706996,220,0 +170757707046,221,0 +170757707094,221,0 +170757707142,222,0 +170757707189,222,0 +170757707237,223,0 +170757707285,223,0 +170757707333,223,0 +170757707381,224,0 +170757707429,223,0 +170757707477,224,0 +170757707527,225,0 +170757707576,223,0 +170757707624,222,0 +170757707672,215,0 +170757707720,216,0 +170757707768,216,0 +170757707817,217,0 +170757707865,218,0 +170757707915,218,0 +170757707964,219,0 +170757708012,219,0 +170757708060,220,0 +170757708108,221,0 +170757708156,221,0 +170757708204,221,0 +170757708253,222,0 +170757708303,224,0 +170757708350,223,0 +170757708400,223,0 +170757708448,223,0 +170757708496,225,0 +170757708546,217,0 +170757708593,215,0 +170757708643,216,0 +170757708691,217,0 +170757708739,218,0 +170757708786,218,0 +170757708834,219,0 +170757708882,219,0 +170757708930,221,0 +170757708978,220,0 +170757709027,221,0 +170757709075,222,0 +170757709125,221,0 +170757709174,223,0 +170757709223,223,0 +170757709271,223,0 +170757709319,223,0 +170757709369,223,0 +170757709417,222,0 +170757709466,216,0 +170757709516,216,0 +170757709565,216,0 +170757709613,217,0 +170757709661,217,0 +170757709710,217,0 +170757709758,218,0 +170757709808,219,0 +170757709856,220,0 +170757709903,219,0 +170757709951,220,0 +170757710001,221,0 +170757710049,225,0 +170757710097,223,0 +170757710145,222,0 +170757710193,223,0 +170757710242,223,0 +170757710290,224,0 +170757710338,225,0 +170757710387,215,0 +170757710435,215,0 +170757710483,217,0 +170757710533,216,0 +170757710582,216,0 +170757710630,217,0 +170757710678,216,0 +170757710726,218,0 +170757710775,220,0 +170757710825,221,0 +170757710873,222,0 +170757710922,222,0 +170757710970,222,0 +170757711018,223,0 +170757711067,222,0 +170757711115,224,0 +170757711163,222,0 +170757711211,224,0 +170757711259,216,0 +170757711309,215,0 +170757711356,215,0 +170757711404,215,0 +170757711452,216,0 +170757711500,217,0 +170757711548,217,0 +170757711596,218,0 +170757711644,218,0 +170757711692,219,0 +170757711742,220,0 +170757711791,221,0 +170757711839,222,0 +170757711887,222,0 +170757711935,223,0 +170757711983,223,0 +170757712032,223,0 +170757712080,223,0 +170757712128,223,0 +170757712178,216,0 +170757712227,215,0 +170757712277,215,0 +170757712326,216,0 +170757712376,217,0 +170757712425,218,0 +170757712473,219,0 +170757712521,219,0 +170757712571,220,0 +170757712619,221,0 +170757712668,221,0 +170757712716,222,0 +170757712765,222,0 +170757712813,222,0 +170757712863,223,0 +170757712910,223,0 +170757712960,223,0 +170757713008,223,0 +170757713056,219,0 +170757713104,215,0 +170757713153,215,0 +170757713201,216,0 +170757713249,217,0 +170757713297,217,0 +170757713345,218,0 +170757713394,219,0 +170757713442,221,0 +170757713490,220,0 +170757713538,221,0 +170757713586,222,0 +170757713634,222,0 +170757713682,222,0 +170757713730,223,0 +170757713778,223,0 +170757713826,223,0 +170757713874,224,0 +170757713922,223,0 +170757713970,218,0 +170757714019,215,0 +170757714067,216,0 +170757714115,217,0 +170757714163,218,0 +170757714211,218,0 +170757714259,219,0 +170757714307,219,0 +170757714356,219,0 +170757714404,220,0 +170757714452,220,0 +170757714500,221,0 +170757714548,224,0 +170757714596,222,0 +170757714644,223,0 +170757714692,224,0 +170757714741,224,0 +170757714791,223,0 +170757714839,223,0 +170757714888,216,0 +170757714936,216,0 +170757714984,216,0 +170757715034,217,0 +170757715082,218,0 +170757715131,218,0 +170757715179,219,0 +170757715227,218,0 +170757715275,219,0 +170757715324,221,0 +170757715372,220,0 +170757715420,223,0 +170757715468,223,0 +170757715516,222,0 +170757715564,224,0 +170757715612,223,0 +170757715661,222,0 +170757715709,222,0 +170757715757,224,0 +170757715805,217,0 +170757715853,217,0 +170757715901,218,0 +170757715949,220,0 +170757715997,219,0 +170757716045,220,0 +170757716094,220,0 +170757716144,222,0 +170757716194,222,0 +170757716242,222,0 +170757716290,223,0 +170757716338,222,0 +170757716387,224,0 +170757716435,224,0 +170757716483,224,0 +170757716532,226,0 +170757716580,223,0 +170757716628,223,0 +170757716676,221,0 +170757716724,215,0 +170757716772,216,0 +170757716820,217,0 +170757716870,218,0 +170757716918,218,0 +170757716965,219,0 +170757717015,220,0 +170757717064,220,0 +170757717112,222,0 +170757717162,221,0 +170757717210,223,0 +170757717258,224,0 +170757717306,223,0 +170757717355,223,0 +170757717403,223,0 +170757717451,223,0 +170757717499,223,0 +170757717549,222,0 +170757717597,216,0 +170757717645,216,0 +170757717692,216,0 +170757717742,217,0 +170757717790,219,0 +170757717838,219,0 +170757717886,220,0 +170757717934,220,0 +170757717982,220,0 +170757718031,221,0 +170757718079,221,0 +170757718127,222,0 +170757718175,222,0 +170757718225,222,0 +170757718273,222,0 +170757718321,224,0 +170757718370,224,0 +170757718420,224,0 +170757718469,222,0 +170757718517,216,0 +170757718567,216,0 +170757718615,217,0 +170757718663,218,0 +170757718712,219,0 +170757718760,220,0 +170757718808,220,0 +170757718856,220,0 +170757718904,221,0 +170757718952,222,0 +170757719001,222,0 +170757719051,222,0 +170757719099,225,0 +170757719147,224,0 +170757719195,223,0 +170757719243,223,0 +170757719291,223,0 +170757719339,222,0 +170757719388,222,0 +170757719436,215,0 +170757719485,216,0 +170757719535,217,0 +170757719583,218,0 +170757719631,221,0 +170757719680,219,0 +170757719728,220,0 +170757719776,220,0 +170757719824,221,0 +170757719872,222,0 +170757719920,222,0 +170757719969,222,0 +170757720019,223,0 diff --git a/laser_value/0211-01.csv b/laser_value/0211-01.csv new file mode 100644 index 0000000..5bb430d --- /dev/null +++ b/laser_value/0211-01.csv @@ -0,0 +1,7413 @@ +timestamp,laser_value,event +170757721490,219,0 +170757721538,220,0 +170757721586,221,0 +170757721635,221,0 +170757721685,223,0 +170757721734,222,0 +170757721784,223,0 +170757721831,224,0 +170757721881,223,0 +170757721930,224,0 +170757721978,223,0 +170757722026,223,0 +170757722074,223,0 +170757722124,217,0 +170757722173,216,0 +170757722221,217,0 +170757722269,218,0 +170757722319,219,0 +170757722367,219,0 +170757722416,219,0 +170757722464,220,0 +170757722514,221,0 +170757722563,221,0 +170757722613,222,0 +170757722661,223,0 +170757722709,222,0 +170757722758,224,0 +170757722808,222,0 +170757722856,223,0 +170757722905,224,0 +170757722953,222,0 +170757723001,223,0 +170757723051,215,0 +170757723099,215,0 +170757723148,217,0 +170757723198,217,0 +170757723246,217,0 +170757723293,219,0 +170757723341,218,0 +170757723389,219,0 +170757723439,221,0 +170757723486,221,0 +170757723534,222,0 +170757723584,222,0 +170757723633,223,0 +170757723683,223,0 +170757723731,217,0 +170757723780,222,0 +170757723830,223,0 +170757723879,223,0 +170757723927,222,0 +170757723977,214,0 +170757724026,215,0 +170757724074,215,0 +170757724124,216,0 +170757724172,217,0 +170757724220,218,0 +170757724268,218,0 +170757724315,218,0 +170757724363,218,0 +170757724411,220,0 +170757724461,220,0 +170757724510,221,0 +170757724558,221,0 +170757724607,221,0 +170757724655,223,0 +170757724703,221,0 +170757724753,221,0 +170757724802,222,0 +170757724852,216,0 +170757724901,214,0 +170757724951,214,0 +170757724999,215,0 +170757725049,215,0 +170757725097,216,0 +170757725144,217,0 +170757725194,216,0 +170757725242,217,0 +170757725290,218,0 +170757725338,219,0 +170757725386,220,0 +170757725435,220,0 +170757725483,221,0 +170757725531,223,0 +170757725581,222,0 +170757725629,221,0 +170757725677,223,0 +170757725727,222,0 +170757725775,215,0 +170757725824,214,0 +170757725874,215,0 +170757725923,216,0 +170757725971,216,0 +170757726019,217,0 +170757726069,217,0 +170757726117,217,0 +170757726166,218,0 +170757726214,219,0 +170757726262,219,0 +170757726310,221,0 +170757726360,223,0 +170757726407,222,0 +170757726457,222,0 +170757726505,222,0 +170757726553,223,0 +170757726601,222,0 +170757726649,219,0 +170757726697,214,0 +170757726746,214,0 +170757726794,214,0 +170757726842,215,0 +170757726892,215,0 +170757726940,216,0 +170757726988,216,0 +170757727037,217,0 +170757727087,218,0 +170757727136,219,0 +170757727186,221,0 +170757727234,221,0 +170757727282,221,0 +170757727330,222,0 +170757727379,222,0 +170757727429,226,0 +170757727477,222,0 +170757727525,222,0 +170757727574,215,0 +170757727622,214,0 +170757727670,215,0 +170757727720,215,0 +170757727769,215,0 +170757727817,215,0 +170757727867,216,0 +170757727915,216,0 +170757727962,216,0 +170757728010,217,0 +170757728058,219,0 +170757728106,219,0 +170757728154,220,0 +170757728204,220,0 +170757728252,221,0 +170757728300,222,0 +170757728349,221,0 +170757728397,222,0 +170757728445,223,0 +170757728495,214,0 +170757728543,214,0 +170757728592,215,0 +170757728640,217,0 +170757728688,217,0 +170757728736,218,0 +170757728786,218,0 +170757728833,219,0 +170757728881,220,0 +170757728931,220,0 +170757728979,221,0 +170757729027,222,0 +170757729075,222,0 +170757729123,222,0 +170757729171,223,0 +170757729219,223,0 +170757729268,223,0 +170757729316,223,0 +170757729364,221,0 +170757729414,215,0 +170757729463,216,0 +170757729513,217,0 +170757729561,217,0 +170757729609,218,0 +170757729657,219,0 +170757729704,219,0 +170757729754,220,0 +170757729802,221,0 +170757729850,222,0 +170757729898,222,0 +170757729946,223,0 +170757729994,224,0 +170757730042,222,0 +170757730090,222,0 +170757730138,223,0 +170757730186,223,0 +170757730234,223,0 +170757730282,216,0 +170757730330,215,0 +170757730378,216,0 +170757730426,217,0 +170757730475,218,0 +170757730523,218,0 +170757730573,219,0 +170757730622,220,0 +170757730670,221,0 +170757730720,222,0 +170757730769,222,0 +170757730819,222,0 +170757730867,222,0 +170757730914,223,0 +170757730962,223,0 +170757731012,222,0 +170757731061,222,0 +170757731109,222,0 +170757731157,222,0 +170757731205,215,0 +170757731253,215,0 +170757731303,215,0 +170757731352,216,0 +170757731400,217,0 +170757731448,218,0 +170757731498,218,0 +170757731546,218,0 +170757731595,219,0 +170757731645,219,0 +170757731694,220,0 +170757731742,219,0 +170757731792,221,0 +170757731840,221,0 +170757731887,221,0 +170757731937,222,0 +170757731985,222,0 +170757732033,222,0 +170757732081,216,0 +170757732129,215,0 +170757732177,215,0 +170757732225,216,0 +170757732274,217,0 +170757732324,217,0 +170757732372,217,0 +170757732419,218,0 +170757732467,218,0 +170757732515,219,0 +170757732565,220,0 +170757732613,221,0 +170757732661,222,0 +170757732709,221,0 +170757732757,223,0 +170757732805,224,0 +170757732853,223,0 +170757732902,223,0 +170757732952,223,0 +170757733000,216,0 +170757733048,215,0 +170757733096,216,0 +170757733145,217,0 +170757733193,217,0 +170757733241,218,0 +170757733289,218,0 +170757733339,218,0 +170757733388,221,0 +170757733437,219,0 +170757733485,219,0 +170757733535,221,0 +170757733584,221,0 +170757733632,223,0 +170757733680,223,0 +170757733730,223,0 +170757733778,222,0 +170757733825,224,0 +170757733875,222,0 +170757733923,218,0 +170757733971,217,0 +170757734020,217,0 +170757734070,218,0 +170757734118,220,0 +170757734166,220,0 +170757734214,221,0 +170757734261,221,0 +170757734309,222,0 +170757734357,223,0 +170757734405,222,0 +170757734455,222,0 +170757734503,222,0 +170757734551,224,0 +170757734599,223,0 +170757734646,224,0 +170757734696,223,0 +170757734744,223,0 +170757734792,222,0 +170757734840,219,0 +170757734888,219,0 +170757734936,219,0 +170757734984,219,0 +170757735033,220,0 +170757735081,222,0 +170757735129,222,0 +170757735177,222,0 +170757735227,223,0 +170757735274,222,0 +170757735322,223,0 +170757735372,223,0 +170757735420,224,0 +170757735467,229,0 +170757735515,223,0 +170757735563,223,0 +170757735611,223,0 +170757735659,222,0 +170757735707,217,0 +170757735754,217,0 +170757735802,218,0 +170757735850,218,0 +170757735898,220,0 +170757735946,220,0 +170757735994,222,0 +170757736042,223,0 +170757736089,222,0 +170757736139,223,0 +170757736187,222,0 +170757736235,223,0 +170757736284,224,0 +170757736332,223,0 +170757736380,223,0 +170757736428,223,0 +170757736475,224,0 +170757736523,224,0 +170757736571,223,0 +170757736619,216,0 +170757736667,217,0 +170757736715,217,0 +170757736763,218,0 +170757736811,219,0 +170757736859,219,0 +170757736907,219,0 +170757736954,220,0 +170757737002,222,0 +170757737050,222,0 +170757737098,221,0 +170757737146,222,0 +170757737194,223,0 +170757737242,221,0 +170757737290,223,0 +170757737337,223,0 +170757737385,224,0 +170757737433,223,0 +170757737481,222,0 +170757737529,217,0 +170757737577,216,0 +170757737624,216,0 +170757737672,217,0 +170757737720,220,0 +170757737768,220,0 +170757737816,219,0 +170757737864,220,0 +170757737911,220,0 +170757737959,221,0 +170757738007,223,0 +170757738055,223,0 +170757738103,223,0 +170757738151,224,0 +170757738199,223,0 +170757738247,223,0 +170757738295,224,0 +170757738342,223,0 +170757738390,222,0 +170757738438,219,0 +170757738486,218,0 +170757738534,219,0 +170757738582,220,0 +170757738630,220,0 +170757738678,221,0 +170757738726,221,0 +170757738775,221,0 +170757738823,223,0 +170757738871,223,0 +170757738920,222,0 +170757738968,223,0 +170757739018,223,0 +170757739067,224,0 +170757739115,224,0 +170757739165,224,0 +170757739214,223,0 +170757739263,223,0 +170757739311,223,0 +170757739359,217,0 +170757739407,217,0 +170757739456,218,0 +170757739506,219,0 +170757739554,220,0 +170757739602,221,0 +170757739650,222,0 +170757739699,221,0 +170757739749,221,0 +170757739798,222,0 +170757739846,223,0 +170757739894,223,0 +170757739943,223,0 +170757739991,225,0 +170757740041,222,0 +170757740089,224,0 +170757740137,224,0 +170757740185,223,0 +170757740233,221,0 +170757740281,217,0 +170757740328,217,0 +170757740376,219,0 +170757740426,221,0 +170757740474,220,0 +170757740522,220,0 +170757740570,221,0 +170757740619,221,0 +170757740667,223,0 +170757740717,222,0 +170757740765,223,0 +170757740814,225,0 +170757740864,224,0 +170757740912,225,0 +170757740959,223,0 +170757741009,224,0 +170757741058,224,0 +170757741108,223,0 +170757741156,217,0 +170757741204,215,0 +170757741253,216,0 +170757741301,217,0 +170757741351,218,0 +170757741399,218,0 +170757741446,218,0 +170757741494,219,0 +170757741544,219,0 +170757741592,220,0 +170757741639,220,0 +170757741687,221,0 +170757741735,222,0 +170757741785,222,0 +170757741833,223,0 +170757741883,224,0 +170757741931,223,0 +170757741980,223,0 +170757742028,223,0 +170757742077,215,0 +170757742125,214,0 +170757742173,214,0 +170757742221,215,0 +170757742269,215,0 +170757742317,216,0 +170757742365,217,0 +170757742413,217,0 +170757742462,218,0 +170757742512,219,0 +170757742560,220,0 +170757742608,221,0 +170757742656,222,0 +170757742703,222,0 +170757742751,222,0 +170757742801,222,0 +170757742849,223,0 +170757742896,224,0 +170757742944,219,0 +170757742992,214,0 +170757743040,214,0 +170757743088,215,0 +170757743136,215,0 +170757743184,215,0 +170757743233,216,0 +170757743281,216,0 +170757743329,217,0 +170757743378,217,0 +170757743426,218,0 +170757743474,219,0 +170757743524,218,0 +170757743572,219,0 +170757743620,221,0 +170757743667,219,0 +170757743717,219,0 +170757743766,220,0 +170757743814,222,0 +170757743864,216,0 +170757743912,215,0 +170757743960,215,0 +170757744009,215,0 +170757744059,215,0 +170757744106,215,0 +170757744154,217,0 +170757744202,216,0 +170757744252,217,0 +170757744300,217,0 +170757744348,218,0 +170757744395,219,0 +170757744443,221,0 +170757744491,222,0 +170757744539,221,0 +170757744587,222,0 +170757744635,222,0 +170757744683,223,0 +170757744731,221,0 +170757744779,215,0 +170757744827,215,0 +170757744875,215,0 +170757744923,215,0 +170757744972,216,0 +170757745022,216,0 +170757745070,217,0 +170757745118,218,0 +170757745165,219,0 +170757745213,220,0 +170757745261,220,0 +170757745309,220,0 +170757745357,222,0 +170757745405,222,0 +170757745453,223,0 +170757745501,222,0 +170757745550,223,0 +170757745598,223,0 +170757745646,223,0 +170757745695,216,0 +170757745745,217,0 +170757745794,217,0 +170757745842,218,0 +170757745890,219,0 +170757745938,220,0 +170757745986,220,0 +170757746034,220,0 +170757746082,224,0 +170757746130,222,0 +170757746177,224,0 +170757746225,222,0 +170757746273,223,0 +170757746321,224,0 +170757746369,223,0 +170757746417,224,0 +170757746466,223,0 +170757746514,223,0 +170757746562,222,0 +170757746610,218,0 +170757746658,218,0 +170757746707,220,0 +170757746755,220,0 +170757746805,221,0 +170757746853,222,0 +170757746901,222,0 +170757746949,222,0 +170757746998,222,0 +170757747048,222,0 +170757747097,223,0 +170757747145,223,0 +170757747193,223,0 +170757747241,224,0 +170757747289,223,0 +170757747338,224,0 +170757747386,223,0 +170757747434,222,0 +170757747482,217,0 +170757747530,217,0 +170757747580,217,0 +170757747627,218,0 +170757747675,219,0 +170757747725,219,0 +170757747774,220,0 +170757747822,220,0 +170757747872,220,0 +170757747920,222,0 +170757747968,221,0 +170757748017,224,0 +170757748067,222,0 +170757748115,223,0 +170757748164,223,0 +170757748214,223,0 +170757748262,223,0 +170757748310,223,0 +170757748359,224,0 +170757748409,215,0 +170757748457,215,0 +170757748505,216,0 +170757748553,218,0 +170757748602,217,0 +170757748650,218,0 +170757748698,219,0 +170757748748,219,0 +170757748797,219,0 +170757748847,220,0 +170757748895,220,0 +170757748942,221,0 +170757748992,222,0 +170757749040,222,0 +170757749089,222,0 +170757749137,222,0 +170757749185,223,0 +170757749233,222,0 +170757749281,220,0 +170757749329,216,0 +170757749377,216,0 +170757749425,217,0 +170757749472,218,0 +170757749520,218,0 +170757749568,219,0 +170757749618,218,0 +170757749667,220,0 +170757749717,221,0 +170757749764,220,0 +170757749812,221,0 +170757749860,223,0 +170757749908,223,0 +170757749956,221,0 +170757750005,224,0 +170757750053,223,0 +170757750103,224,0 +170757750152,222,0 +170757750200,217,0 +170757750248,216,0 +170757750296,216,0 +170757750344,218,0 +170757750392,219,0 +170757750441,220,0 +170757750489,219,0 +170757750539,219,0 +170757750587,221,0 +170757750636,221,0 +170757750684,222,0 +170757750732,223,0 +170757750780,224,0 +170757750828,224,0 +170757750878,225,0 +170757750927,224,0 +170757750977,225,0 +170757751025,223,0 +170757751074,222,0 +170757751122,216,0 +170757751170,215,0 +170757751218,217,0 +170757751266,217,0 +170757751314,218,0 +170757751362,218,0 +170757751412,219,0 +170757751460,220,0 +170757751507,220,0 +170757751557,221,0 +170757751607,221,0 +170757751655,222,0 +170757751704,223,0 +170757751754,223,0 +170757751802,223,0 +170757751851,225,0 +170757751899,223,0 +170757751947,223,0 +170757751997,222,0 +170757752044,215,0 +170757752092,216,0 +170757752140,217,0 +170757752188,217,0 +170757752236,219,0 +170757752284,218,0 +170757752332,219,0 +170757752382,219,0 +170757752430,220,0 +170757752478,221,0 +170757752526,220,0 +170757752575,222,0 +170757752623,223,0 +170757752671,222,0 +170757752720,222,0 +170757752770,223,0 +170757752820,224,0 +170757752868,223,0 +170757752916,217,0 +170757752964,216,0 +170757753013,217,0 +170757753061,217,0 +170757753109,219,0 +170757753158,218,0 +170757753208,218,0 +170757753256,219,0 +170757753305,219,0 +170757753354,220,0 +170757753402,221,0 +170757753449,222,0 +170757753497,222,0 +170757753545,221,0 +170757753595,223,0 +170757753644,223,0 +170757753694,223,0 +170757753742,224,0 +170757753789,223,0 +170757753837,215,0 +170757753885,215,0 +170757753933,216,0 +170757753983,217,0 +170757754032,217,0 +170757754080,218,0 +170757754130,217,0 +170757754178,218,0 +170757754227,220,0 +170757754275,219,0 +170757754323,221,0 +170757754371,222,0 +170757754419,223,0 +170757754468,222,0 +170757754516,223,0 +170757754564,224,0 +170757754612,224,0 +170757754660,223,0 +170757754708,222,0 +170757754756,215,0 +170757754804,216,0 +170757754852,216,0 +170757754900,217,0 +170757754947,222,0 +170757754997,220,0 +170757755047,219,0 +170757755094,220,0 +170757755142,220,0 +170757755192,222,0 +170757755240,222,0 +170757755288,222,0 +170757755335,222,0 +170757755383,223,0 +170757755431,223,0 +170757755481,223,0 +170757755529,225,0 +170757755577,222,0 +170757755625,216,0 +170757755674,215,0 +170757755722,215,0 +170757755770,216,0 +170757755818,217,0 +170757755867,217,0 +170757755915,219,0 +170757755963,219,0 +170757756013,219,0 +170757756062,221,0 +170757756110,223,0 +170757756158,222,0 +170757756206,222,0 +170757756255,223,0 +170757756305,224,0 +170757756353,223,0 +170757756401,222,0 +170757756449,223,0 +170757756497,222,0 +170757756546,216,0 +170757756596,214,0 +170757756643,215,0 +170757756693,215,0 +170757756741,215,0 +170757756789,215,0 +170757756836,216,0 +170757756884,216,0 +170757756932,217,0 +170757756982,218,0 +170757757030,219,0 +170757757078,220,0 +170757757127,219,0 +170757757175,220,0 +170757757223,221,0 +170757757271,221,0 +170757757319,221,0 +170757757367,222,0 +170757757416,222,0 +170757757464,215,0 +170757757512,214,0 +170757757560,214,0 +170757757608,215,0 +170757757655,215,0 +170757757705,215,0 +170757757754,215,0 +170757757802,215,0 +170757757850,216,0 +170757757898,216,0 +170757757948,216,0 +170757757997,217,0 +170757758047,217,0 +170757758095,218,0 +170757758143,217,0 +170757758191,219,0 +170757758240,219,0 +170757758288,219,0 +170757758338,220,0 +170757758386,220,0 +170757758434,221,0 +170757758481,221,0 +170757758529,221,0 +170757758577,222,0 +170757758625,223,0 +170757758673,222,0 +170757758721,223,0 +170757758769,222,0 +170757758819,215,0 +170757758868,215,0 +170757758918,217,0 +170757758967,217,0 +170757759015,218,0 +170757759065,216,0 +170757759113,218,0 +170757759162,218,0 +170757759210,219,0 +170757759259,219,0 +170757759307,220,0 +170757759355,220,0 +170757759403,222,0 +170757759452,221,0 +170757759500,222,0 +170757759550,225,0 +170757759598,222,0 +170757759647,221,0 +170757759695,216,0 +170757759743,215,0 +170757759791,215,0 +170757759839,216,0 +170757759888,216,0 +170757759936,217,0 +170757759984,218,0 +170757760032,218,0 +170757760080,218,0 +170757760127,220,0 +170757760175,220,0 +170757760223,220,0 +170757760273,222,0 +170757760320,218,0 +170757760368,222,0 +170757760416,223,0 +170757760464,222,0 +170757760512,223,0 +170757760560,223,0 +170757760607,216,0 +170757760657,216,0 +170757760705,216,0 +170757760753,217,0 +170757760800,217,0 +170757760848,217,0 +170757760896,218,0 +170757760944,218,0 +170757760992,220,0 +170757761040,221,0 +170757761089,220,0 +170757761137,224,0 +170757761185,222,0 +170757761233,223,0 +170757761281,224,0 +170757761329,222,0 +170757761378,224,0 +170757761428,222,0 +170757761475,223,0 +170757761523,217,0 +170757761571,216,0 +170757761619,218,0 +170757761667,219,0 +170757761715,219,0 +170757761763,220,0 +170757761810,220,0 +170757761858,221,0 +170757761906,221,0 +170757761956,222,0 +170757762004,222,0 +170757762053,223,0 +170757762103,223,0 +170757762151,224,0 +170757762198,223,0 +170757762246,223,0 +170757762294,223,0 +170757762344,223,0 +170757762393,222,0 +170757762443,218,0 +170757762490,219,0 +170757762538,219,0 +170757762586,220,0 +170757762634,220,0 +170757762684,221,0 +170757762732,221,0 +170757762779,222,0 +170757762827,223,0 +170757762875,223,0 +170757762923,224,0 +170757762972,224,0 +170757763020,224,0 +170757763068,223,0 +170757763116,223,0 +170757763165,223,0 +170757763213,223,0 +170757763261,223,0 +170757763309,217,0 +170757763357,218,0 +170757763406,218,0 +170757763454,219,0 +170757763502,219,0 +170757763550,219,0 +170757763598,220,0 +170757763648,222,0 +170757763695,221,0 +170757763743,222,0 +170757763791,222,0 +170757763841,222,0 +170757763889,223,0 +170757763936,224,0 +170757763986,223,0 +170757764034,223,0 +170757764083,224,0 +170757764133,223,0 +170757764181,222,0 +170757764230,217,0 +170757764278,216,0 +170757764326,217,0 +170757764374,218,0 +170757764424,218,0 +170757764472,219,0 +170757764521,219,0 +170757764571,220,0 +170757764619,221,0 +170757764667,220,0 +170757764715,220,0 +170757764763,222,0 +170757764811,223,0 +170757764860,222,0 +170757764908,223,0 +170757764958,223,0 +170757765006,223,0 +170757765055,222,0 +170757765103,222,0 +170757765151,217,0 +170757765199,217,0 +170757765247,217,0 +170757765297,218,0 +170757765345,219,0 +170757765392,220,0 +170757765440,219,0 +170757765490,221,0 +170757765539,220,0 +170757765587,220,0 +170757765637,222,0 +170757765686,222,0 +170757765734,226,0 +170757765782,223,0 +170757765830,225,0 +170757765878,224,0 +170757765928,223,0 +170757765976,222,0 +170757766024,219,0 +170757766073,216,0 +170757766121,217,0 +170757766171,218,0 +170757766220,219,0 +170757766270,219,0 +170757766318,219,0 +170757766366,220,0 +170757766414,222,0 +170757766462,222,0 +170757766511,222,0 +170757766561,223,0 +170757766609,222,0 +170757766657,222,0 +170757766705,223,0 +170757766754,224,0 +170757766802,222,0 +170757766850,223,0 +170757766900,223,0 +170757766949,216,0 +170757766999,214,0 +170757767047,215,0 +170757767094,216,0 +170757767144,216,0 +170757767192,217,0 +170757767241,218,0 +170757767289,220,0 +170757767337,219,0 +170757767385,219,0 +170757767433,221,0 +170757767483,221,0 +170757767531,221,0 +170757767579,221,0 +170757767627,222,0 +170757767675,223,0 +170757767724,221,0 +170757767772,222,0 +170757767820,222,0 +170757767868,215,0 +170757767916,214,0 +170757767966,214,0 +170757768013,214,0 +170757768061,215,0 +170757768109,215,0 +170757768157,215,0 +170757768205,217,0 +170757768253,216,0 +170757768301,218,0 +170757768349,218,0 +170757768397,219,0 +170757768445,221,0 +170757768494,220,0 +170757768544,222,0 +170757768592,222,0 +170757768639,222,0 +170757768687,223,0 +170757768737,221,0 +170757768786,215,0 +170757768834,215,0 +170757768882,215,0 +170757768930,216,0 +170757768980,217,0 +170757769028,218,0 +170757769077,217,0 +170757769125,218,0 +170757769173,219,0 +170757769221,220,0 +170757769269,221,0 +170757769318,221,0 +170757769366,222,0 +170757769414,223,0 +170757769462,222,0 +170757769510,222,0 +170757769558,223,0 +170757769607,223,0 +170757769655,216,0 +170757769703,215,0 +170757769753,216,0 +170757769802,216,0 +170757769850,217,0 +170757769898,217,0 +170757769948,217,0 +170757769997,218,0 +170757770047,218,0 +170757770095,219,0 +170757770143,221,0 +170757770192,220,0 +170757770242,221,0 +170757770290,221,0 +170757770337,224,0 +170757770385,222,0 +170757770435,222,0 +170757770483,223,0 +170757770531,223,0 +170757770579,216,0 +170757770627,215,0 +170757770676,215,0 +170757770724,216,0 +170757770774,217,0 +170757770822,217,0 +170757770870,218,0 +170757770919,219,0 +170757770967,218,0 +170757771015,219,0 +170757771063,220,0 +170757771112,221,0 +170757771160,221,0 +170757771210,223,0 +170757771258,226,0 +170757771306,224,0 +170757771354,223,0 +170757771403,223,0 +170757771453,222,0 +170757771501,215,0 +170757771549,215,0 +170757771596,216,0 +170757771644,216,0 +170757771694,217,0 +170757771742,217,0 +170757771790,218,0 +170757771837,218,0 +170757771885,219,0 +170757771935,220,0 +170757771984,221,0 +170757772032,221,0 +170757772080,223,0 +170757772130,223,0 +170757772179,223,0 +170757772227,224,0 +170757772275,224,0 +170757772323,223,0 +170757772371,216,0 +170757772419,215,0 +170757772468,215,0 +170757772516,216,0 +170757772566,216,0 +170757772614,217,0 +170757772663,218,0 +170757772711,219,0 +170757772759,220,0 +170757772807,220,0 +170757772855,220,0 +170757772903,221,0 +170757772951,222,0 +170757773000,222,0 +170757773048,219,0 +170757773096,223,0 +170757773144,222,0 +170757773192,222,0 +170757773241,222,0 +170757773289,216,0 +170757773337,215,0 +170757773385,214,0 +170757773435,216,0 +170757773482,216,0 +170757773530,218,0 +170757773578,218,0 +170757773626,218,0 +170757773674,221,0 +170757773722,220,0 +170757773770,220,0 +170757773818,221,0 +170757773868,222,0 +170757773916,222,0 +170757773965,223,0 +170757774013,223,0 +170757774061,224,0 +170757774111,223,0 +170757774158,222,0 +170757774208,215,0 +170757774256,215,0 +170757774304,216,0 +170757774352,218,0 +170757774401,217,0 +170757774451,218,0 +170757774499,217,0 +170757774546,218,0 +170757774594,219,0 +170757774642,220,0 +170757774692,220,0 +170757774740,221,0 +170757774789,225,0 +170757774839,222,0 +170757774888,222,0 +170757774938,224,0 +170757774987,223,0 +170757775035,224,0 +170757775084,216,0 +170757775132,215,0 +170757775180,215,0 +170757775228,217,0 +170757775276,217,0 +170757775324,217,0 +170757775374,219,0 +170757775422,219,0 +170757775470,220,0 +170757775518,220,0 +170757775566,221,0 +170757775615,222,0 +170757775665,222,0 +170757775713,222,0 +170757775762,223,0 +170757775812,223,0 +170757775859,223,0 +170757775907,222,0 +170757775955,223,0 +170757776005,217,0 +170757776053,216,0 +170757776101,217,0 +170757776150,217,0 +170757776198,218,0 +170757776248,218,0 +170757776296,218,0 +170757776345,219,0 +170757776395,221,0 +170757776443,220,0 +170757776491,220,0 +170757776540,221,0 +170757776588,221,0 +170757776636,222,0 +170757776685,222,0 +170757776733,224,0 +170757776781,223,0 +170757776829,225,0 +170757776877,223,0 +170757776924,216,0 +170757776972,216,0 +170757777020,216,0 +170757777068,219,0 +170757777116,218,0 +170757777164,218,0 +170757777213,219,0 +170757777261,219,0 +170757777310,223,0 +170757777358,220,0 +170757777406,221,0 +170757777454,222,0 +170757777502,223,0 +170757777549,223,0 +170757777597,224,0 +170757777645,222,0 +170757777693,224,0 +170757777741,223,0 +170757777789,223,0 +170757777837,215,0 +170757777885,215,0 +170757777933,216,0 +170757777981,216,0 +170757778029,217,0 +170757778077,217,0 +170757778125,219,0 +170757778173,219,0 +170757778221,219,0 +170757778270,219,0 +170757778320,220,0 +170757778368,223,0 +170757778417,222,0 +170757778465,223,0 +170757778513,223,0 +170757778561,223,0 +170757778610,223,0 +170757778658,222,0 +170757778706,219,0 +170757778754,216,0 +170757778803,216,0 +170757778851,217,0 +170757778899,218,0 +170757778947,218,0 +170757778995,219,0 +170757779045,220,0 +170757779093,220,0 +170757779141,220,0 +170757779188,222,0 +170757779236,223,0 +170757779286,223,0 +170757779334,223,0 +170757779383,224,0 +170757779431,223,0 +170757779479,223,0 +170757779527,223,0 +170757779575,223,0 +170757779624,218,0 +170757779672,217,0 +170757779720,218,0 +170757779768,218,0 +170757779816,220,0 +170757779864,220,0 +170757779914,220,0 +170757779961,221,0 +170757780011,221,0 +170757780059,222,0 +170757780107,224,0 +170757780156,224,0 +170757780204,224,0 +170757780252,223,0 +170757780300,223,0 +170757780348,223,0 +170757780396,222,0 +170757780443,225,0 +170757780491,222,0 +170757780539,218,0 +170757780587,218,0 +170757780635,218,0 +170757780683,219,0 +170757780731,220,0 +170757780779,221,0 +170757780828,221,0 +170757780876,222,0 +170757780925,221,0 +170757780973,221,0 +170757781023,221,0 +170757781072,222,0 +170757781122,222,0 +170757781171,223,0 +170757781221,224,0 +170757781269,223,0 +170757781318,224,0 +170757781368,222,0 +170757781416,222,0 +170757781465,216,0 +170757781513,217,0 +170757781561,218,0 +170757781609,219,0 +170757781659,219,0 +170757781708,219,0 +170757781758,219,0 +170757781807,220,0 +170757781855,220,0 +170757781903,221,0 +170757781951,222,0 +170757782001,222,0 +170757782049,223,0 +170757782098,223,0 +170757782146,223,0 +170757782194,222,0 +170757782242,222,0 +170757782291,222,0 +170757782341,217,0 +170757782389,216,0 +170757782437,217,0 +170757782485,217,0 +170757782534,218,0 +170757782582,218,0 +170757782632,220,0 +170757782680,221,0 +170757782728,221,0 +170757782776,221,0 +170757782825,224,0 +170757782873,223,0 +170757782921,222,0 +170757782969,223,0 +170757783019,224,0 +170757783067,224,0 +170757783114,223,0 +170757783164,223,0 +170757783214,222,0 +170757783261,220,0 +170757783309,217,0 +170757783359,218,0 +170757783407,219,0 +170757783457,219,0 +170757783506,219,0 +170757783554,220,0 +170757783602,221,0 +170757783650,221,0 +170757783699,222,0 +170757783747,223,0 +170757783795,223,0 +170757783843,222,0 +170757783891,223,0 +170757783939,224,0 +170757783988,223,0 +170757784036,224,0 +170757784084,222,0 +170757784132,222,0 +170757784180,216,0 +170757784228,217,0 +170757784277,217,0 +170757784325,218,0 +170757784375,219,0 +170757784424,220,0 +170757784472,221,0 +170757784520,220,0 +170757784568,222,0 +170757784616,222,0 +170757784664,221,0 +170757784714,223,0 +170757784763,222,0 +170757784811,224,0 +170757784861,223,0 +170757784909,223,0 +170757784958,223,0 +170757785006,223,0 +170757785056,216,0 +170757785104,215,0 +170757785152,216,0 +170757785200,217,0 +170757785248,218,0 +170757785296,218,0 +170757785345,219,0 +170757785393,219,0 +170757785441,220,0 +170757785489,221,0 +170757785537,221,0 +170757785585,222,0 +170757785633,222,0 +170757785681,223,0 +170757785729,222,0 +170757785778,224,0 +170757785826,223,0 +170757785876,222,0 +170757785925,222,0 +170757785973,216,0 +170757786021,215,0 +170757786069,216,0 +170757786117,216,0 +170757786165,218,0 +170757786213,218,0 +170757786261,218,0 +170757786308,220,0 +170757786356,220,0 +170757786404,220,0 +170757786452,222,0 +170757786500,221,0 +170757786548,222,0 +170757786596,223,0 +170757786644,223,0 +170757786692,223,0 +170757786741,221,0 +170757786789,222,0 +170757786837,222,0 +170757786886,216,0 +170757786934,216,0 +170757786982,216,0 +170757787030,218,0 +170757787077,219,0 +170757787125,218,0 +170757787173,218,0 +170757787223,219,0 +170757787270,219,0 +170757787318,220,0 +170757787366,220,0 +170757787414,222,0 +170757787464,222,0 +170757787511,222,0 +170757787559,223,0 +170757787607,224,0 +170757787655,223,0 +170757787704,223,0 +170757787752,222,0 +170757787800,215,0 +170757787849,215,0 +170757787897,216,0 +170757787945,216,0 +170757787993,217,0 +170757788041,217,0 +170757788089,218,0 +170757788136,219,0 +170757788186,218,0 +170757788235,220,0 +170757788283,220,0 +170757788333,222,0 +170757788381,223,0 +170757788429,223,0 +170757788478,222,0 +170757788526,222,0 +170757788574,222,0 +170757788622,223,0 +170757788672,216,0 +170757788719,214,0 +170757788769,215,0 +170757788817,215,0 +170757788865,215,0 +170757788914,217,0 +170757788964,217,0 +170757789012,218,0 +170757789062,218,0 +170757789110,219,0 +170757789158,219,0 +170757789205,221,0 +170757789253,221,0 +170757789303,220,0 +170757789352,224,0 +170757789402,223,0 +170757789450,222,0 +170757789499,222,0 +170757789547,223,0 +170757789595,216,0 +170757789643,215,0 +170757789691,214,0 +170757789739,215,0 +170757789787,216,0 +170757789837,216,0 +170757789885,218,0 +170757789934,218,0 +170757789984,219,0 +170757790033,219,0 +170757790081,220,0 +170757790129,222,0 +170757790178,222,0 +170757790227,222,0 +170757790274,222,0 +170757790322,221,0 +170757790370,222,0 +170757790418,225,0 +170757790467,222,0 +170757790515,215,0 +170757790563,215,0 +170757790611,215,0 +170757790659,214,0 +170757790707,216,0 +170757790755,216,0 +170757790802,217,0 +170757790850,218,0 +170757790898,219,0 +170757790946,219,0 +170757790996,220,0 +170757791043,222,0 +170757791091,221,0 +170757791139,222,0 +170757791188,222,0 +170757791236,224,0 +170757791284,222,0 +170757791332,224,0 +170757791380,223,0 +170757791428,215,0 +170757791476,215,0 +170757791524,215,0 +170757791571,215,0 +170757791619,216,0 +170757791667,218,0 +170757791715,218,0 +170757791763,218,0 +170757791811,218,0 +170757791860,218,0 +170757791908,219,0 +170757791956,221,0 +170757792004,220,0 +170757792052,221,0 +170757792099,221,0 +170757792147,222,0 +170757792195,221,0 +170757792243,223,0 +170757792291,216,0 +170757792339,214,0 +170757792386,214,0 +170757792434,215,0 +170757792482,215,0 +170757792530,216,0 +170757792578,216,0 +170757792626,217,0 +170757792673,218,0 +170757792721,218,0 +170757792769,219,0 +170757792819,221,0 +170757792866,220,0 +170757792914,221,0 +170757792962,222,0 +170757793010,221,0 +170757793059,222,0 +170757793107,222,0 +170757793155,223,0 +170757793203,216,0 +170757793251,215,0 +170757793299,216,0 +170757793348,215,0 +170757793396,216,0 +170757793444,217,0 +170757793492,218,0 +170757793539,217,0 +170757793587,218,0 +170757793635,219,0 +170757793683,220,0 +170757793731,220,0 +170757793780,222,0 +170757793828,221,0 +170757793876,221,0 +170757793923,222,0 +170757793971,222,0 +170757794019,222,0 +170757794067,222,0 +170757794116,216,0 +170757794164,216,0 +170757794212,216,0 +170757794261,217,0 +170757794309,217,0 +170757794357,218,0 +170757794405,219,0 +170757794453,219,0 +170757794501,219,0 +170757794548,221,0 +170757794596,221,0 +170757794644,221,0 +170757794692,222,0 +170757794740,223,0 +170757794788,223,0 +170757794836,222,0 +170757794883,223,0 +170757794931,223,0 +170757794981,222,0 +170757795029,216,0 +170757795077,215,0 +170757795126,215,0 +170757795174,217,0 +170757795222,218,0 +170757795271,218,0 +170757795319,218,0 +170757795367,220,0 +170757795415,221,0 +170757795463,221,0 +170757795511,221,0 +170757795558,222,0 +170757795606,223,0 +170757795654,223,0 +170757795702,223,0 +170757795750,224,0 +170757795798,223,0 +170757795845,223,0 +170757795895,223,0 +170757795943,218,0 +170757795991,217,0 +170757796038,218,0 +170757796086,219,0 +170757796134,219,0 +170757796182,221,0 +170757796230,221,0 +170757796278,222,0 +170757796326,222,0 +170757796373,222,0 +170757796421,222,0 +170757796469,223,0 +170757796517,223,0 +170757796567,225,0 +170757796615,224,0 +170757796663,223,0 +170757796712,223,0 +170757796760,223,0 +170757796808,222,0 +170757796855,216,0 +170757796903,218,0 +170757796951,218,0 +170757796999,219,0 +170757797047,219,0 +170757797096,219,0 +170757797144,220,0 +170757797192,223,0 +170757797240,221,0 +170757797288,222,0 +170757797336,222,0 +170757797385,222,0 +170757797433,223,0 +170757797482,224,0 +170757797530,223,0 +170757797578,223,0 +170757797626,224,0 +170757797673,222,0 +170757797721,218,0 +170757797769,216,0 +170757797819,217,0 +170757797867,217,0 +170757797915,219,0 +170757797962,219,0 +170757798012,218,0 +170757798060,219,0 +170757798108,219,0 +170757798155,220,0 +170757798203,220,0 +170757798251,221,0 +170757798299,221,0 +170757798347,222,0 +170757798395,223,0 +170757798444,223,0 +170757798492,222,0 +170757798540,222,0 +170757798589,224,0 +170757798638,216,0 +170757798686,216,0 +170757798734,216,0 +170757798784,217,0 +170757798833,218,0 +170757798881,219,0 +170757798929,219,0 +170757798979,219,0 +170757799028,220,0 +170757799078,221,0 +170757799126,222,0 +170757799175,222,0 +170757799223,223,0 +170757799271,222,0 +170757799319,222,0 +170757799367,223,0 +170757799415,223,0 +170757799463,222,0 +170757799513,223,0 +170757799561,216,0 +170757799608,216,0 +170757799658,216,0 +170757799706,217,0 +170757799754,217,0 +170757799803,219,0 +170757799853,219,0 +170757799901,220,0 +170757799949,220,0 +170757799998,221,0 +170757800046,225,0 +170757800096,222,0 +170757800144,223,0 +170757800192,222,0 +170757800241,222,0 +170757800289,221,0 +170757800337,224,0 +170757800385,223,0 +170757800433,222,0 +170757800481,214,0 +170757800531,215,0 +170757800579,215,0 +170757800628,216,0 +170757800676,217,0 +170757800724,217,0 +170757800772,219,0 +170757800820,219,0 +170757800868,219,0 +170757800916,220,0 +170757800963,219,0 +170757801013,222,0 +170757801063,222,0 +170757801112,222,0 +170757801160,223,0 +170757801208,223,0 +170757801257,222,0 +170757801305,222,0 +170757801353,216,0 +170757801401,214,0 +170757801449,215,0 +170757801497,215,0 +170757801546,216,0 +170757801594,216,0 +170757801642,217,0 +170757801692,217,0 +170757801740,218,0 +170757801788,219,0 +170757801835,220,0 +170757801885,220,0 +170757801934,220,0 +170757801982,221,0 +170757802030,221,0 +170757802078,221,0 +170757802126,219,0 +170757802174,222,0 +170757802222,221,0 +170757802270,216,0 +170757802319,215,0 +170757802369,215,0 +170757802417,215,0 +170757802465,216,0 +170757802514,216,0 +170757802562,218,0 +170757802610,217,0 +170757802660,218,0 +170757802709,219,0 +170757802759,220,0 +170757802808,220,0 +170757802856,221,0 +170757802904,220,0 +170757802953,220,0 +170757803001,220,0 +170757803049,220,0 +170757803097,222,0 +170757803147,222,0 +170757803195,215,0 +170757803243,215,0 +170757803291,217,0 +170757803340,216,0 +170757803388,216,0 +170757803436,217,0 +170757803484,218,0 +170757803532,219,0 +170757803580,219,0 +170757803628,220,0 +170757803677,220,0 +170757803727,221,0 +170757803775,221,0 +170757803824,222,0 +170757803872,222,0 +170757803920,223,0 +170757803968,224,0 +170757804018,223,0 +170757804066,217,0 +170757804114,215,0 +170757804163,216,0 +170757804211,216,0 +170757804259,217,0 +170757804307,217,0 +170757804355,217,0 +170757804403,218,0 +170757804452,219,0 +170757804500,220,0 +170757804550,222,0 +170757804600,222,0 +170757804649,222,0 +170757804697,222,0 +170757804746,221,0 +170757804794,223,0 +170757804844,222,0 +170757804892,224,0 +170757804940,222,0 +170757804987,216,0 +170757805035,216,0 +170757805083,217,0 +170757805131,217,0 +170757805181,219,0 +170757805229,219,0 +170757805277,220,0 +170757805325,219,0 +170757805373,222,0 +170757805422,221,0 +170757805471,222,0 +170757805519,223,0 +170757805567,223,0 +170757805615,224,0 +170757805665,224,0 +170757805713,223,0 +170757805761,223,0 +170757805809,222,0 +170757805858,218,0 +170757805908,215,0 +170757805956,216,0 +170757806004,217,0 +170757806052,217,0 +170757806100,217,0 +170757806149,218,0 +170757806197,219,0 +170757806245,220,0 +170757806293,220,0 +170757806341,221,0 +170757806390,222,0 +170757806438,224,0 +170757806486,222,0 +170757806536,221,0 +170757806584,224,0 +170757806633,223,0 +170757806683,223,0 +170757806731,222,0 +170757806779,218,0 +170757806826,215,0 +170757806876,216,0 +170757806925,216,0 +170757806975,217,0 +170757807025,218,0 +170757807073,219,0 +170757807121,220,0 +170757807169,220,0 +170757807217,220,0 +170757807264,221,0 +170757807312,222,0 +170757807362,224,0 +170757807410,223,0 +170757807458,232,0 +170757807506,225,0 +170757807555,222,0 +170757807605,223,0 +170757807653,222,0 +170757807701,215,0 +170757807749,215,0 +170757807797,216,0 +170757807845,217,0 +170757807892,217,0 +170757807942,218,0 +170757807991,218,0 +170757808039,219,0 +170757808087,220,0 +170757808137,221,0 +170757808186,221,0 +170757808234,222,0 +170757808282,222,0 +170757808330,222,0 +170757808378,223,0 +170757808426,223,0 +170757808474,222,0 +170757808523,224,0 +170757808571,222,0 +170757808619,216,0 +170757808669,217,0 +170757808717,217,0 +170757808766,217,0 +170757808814,218,0 +170757808862,220,0 +170757808910,220,0 +170757808958,220,0 +170757809006,221,0 +170757809053,221,0 +170757809101,222,0 +170757809149,223,0 +170757809197,224,0 +170757809245,222,0 +170757809293,223,0 +170757809341,222,0 +170757809388,223,0 +170757809436,223,0 +170757809484,222,0 +170757809532,216,0 +170757809580,216,0 +170757809628,217,0 +170757809676,217,0 +170757809725,217,0 +170757809775,220,0 +170757809824,219,0 +170757809874,220,0 +170757809923,221,0 +170757809972,222,0 +170757810020,222,0 +170757810068,221,0 +170757810116,222,0 +170757810164,223,0 +170757810212,223,0 +170757810260,224,0 +170757810309,223,0 +170757810359,223,0 +170757810407,215,0 +170757810455,215,0 +170757810503,216,0 +170757810551,216,0 +170757810598,219,0 +170757810648,218,0 +170757810698,218,0 +170757810746,219,0 +170757810793,220,0 +170757810841,220,0 +170757810889,221,0 +170757810939,221,0 +170757810988,223,0 +170757811036,223,0 +170757811084,223,0 +170757811132,222,0 +170757811180,224,0 +170757811228,222,0 +170757811276,222,0 +170757811324,216,0 +170757811373,215,0 +170757811421,216,0 +170757811470,218,0 +170757811518,217,0 +170757811566,218,0 +170757811614,219,0 +170757811662,219,0 +170757811709,219,0 +170757811757,220,0 +170757811807,220,0 +170757811855,221,0 +170757811904,222,0 +170757811952,222,0 +170757812000,222,0 +170757812048,223,0 +170757812096,226,0 +170757812145,223,0 +170757812195,221,0 +170757812243,215,0 +170757812291,215,0 +170757812339,215,0 +170757812387,216,0 +170757812435,217,0 +170757812483,218,0 +170757812532,219,0 +170757812580,219,0 +170757812628,220,0 +170757812676,221,0 +170757812724,221,0 +170757812774,222,0 +170757812823,222,0 +170757812871,223,0 +170757812919,222,0 +170757812968,224,0 +170757813016,223,0 +170757813066,223,0 +170757813115,221,0 +170757813163,215,0 +170757813211,215,0 +170757813259,216,0 +170757813307,217,0 +170757813355,217,0 +170757813403,218,0 +170757813451,219,0 +170757813499,220,0 +170757813547,221,0 +170757813595,221,0 +170757813644,223,0 +170757813694,223,0 +170757813742,223,0 +170757813790,224,0 +170757813837,223,0 +170757813885,222,0 +170757813933,222,0 +170757813981,222,0 +170757814029,216,0 +170757814077,216,0 +170757814127,216,0 +170757814176,216,0 +170757814224,219,0 +170757814272,218,0 +170757814320,219,0 +170757814368,220,0 +170757814416,221,0 +170757814464,221,0 +170757814512,223,0 +170757814560,221,0 +170757814608,224,0 +170757814656,223,0 +170757814705,223,0 +170757814755,224,0 +170757814802,222,0 +170757814850,221,0 +170757814900,224,0 +170757814948,216,0 +170757814996,215,0 +170757815044,216,0 +170757815092,216,0 +170757815141,217,0 +170757815189,218,0 +170757815237,217,0 +170757815285,218,0 +170757815333,219,0 +170757815382,219,0 +170757815430,220,0 +170757815480,220,0 +170757815528,221,0 +170757815576,223,0 +170757815623,221,0 +170757815671,222,0 +170757815721,223,0 +170757815770,222,0 +170757815818,221,0 +170757815866,216,0 +170757815914,214,0 +170757815962,215,0 +170757816011,216,0 +170757816059,217,0 +170757816109,217,0 +170757816157,218,0 +170757816206,218,0 +170757816256,219,0 +170757816305,220,0 +170757816353,219,0 +170757816401,222,0 +170757816451,220,0 +170757816498,222,0 +170757816548,221,0 +170757816596,226,0 +170757816645,220,0 +170757816693,221,0 +170757816743,222,0 +170757816791,214,0 +170757816839,215,0 +170757816886,215,0 +170757816934,215,0 +170757816982,215,0 +170757817032,215,0 +170757817080,216,0 +170757817129,217,0 +170757817177,218,0 +170757817225,219,0 +170757817273,220,0 +170757817321,220,0 +170757817371,221,0 +170757817419,222,0 +170757817467,222,0 +170757817515,222,0 +170757817564,222,0 +170757817614,223,0 +170757817663,216,0 +170757817711,215,0 +170757817759,215,0 +170757817809,215,0 +170757817858,215,0 +170757817906,215,0 +170757817954,216,0 +170757818004,217,0 +170757818053,218,0 +170757818101,218,0 +170757818151,219,0 +170757818199,219,0 +170757818247,220,0 +170757818295,221,0 +170757818343,221,0 +170757818390,221,0 +170757818438,221,0 +170757818488,222,0 +170757818536,221,0 +170757818584,216,0 +170757818632,215,0 +170757818681,215,0 +170757818729,216,0 +170757818777,216,0 +170757818827,217,0 +170757818876,218,0 +170757818926,218,0 +170757818975,219,0 +170757819023,220,0 +170757819071,222,0 +170757819121,221,0 +170757819169,222,0 +170757819218,221,0 +170757819268,221,0 +170757819316,223,0 +170757819364,224,0 +170757819412,222,0 +170757819460,223,0 +170757819508,215,0 +170757819555,215,0 +170757819603,216,0 +170757819651,217,0 +170757819701,217,0 +170757819750,217,0 +170757819798,219,0 +170757819848,219,0 +170757819896,220,0 +170757819944,220,0 +170757819992,221,0 +170757820041,222,0 +170757820089,222,0 +170757820139,223,0 +170757820188,225,0 +170757820237,223,0 +170757820285,222,0 +170757820335,222,0 +170757820385,216,0 +170757820432,216,0 +170757820482,217,0 +170757820531,217,0 +170757820579,217,0 +170757820627,218,0 +170757820675,218,0 +170757820725,219,0 +170757820774,219,0 +170757820822,219,0 +170757820870,222,0 +170757820920,221,0 +170757820968,221,0 +170757821017,222,0 +170757821065,223,0 +170757821114,223,0 +170757821162,223,0 +170757821210,223,0 +170757821258,222,0 +170757821308,215,0 +170757821356,215,0 +170757821405,216,0 +170757821453,216,0 +170757821503,218,0 +170757821552,218,0 +170757821602,218,0 +170757821650,219,0 +170757821698,220,0 +170757821745,220,0 +170757821793,222,0 +170757821841,223,0 +170757821889,221,0 +170757821937,221,0 +170757821985,223,0 +170757822033,225,0 +170757822081,223,0 +170757822130,223,0 +170757822178,225,0 +170757822226,215,0 +170757822274,215,0 +170757822321,216,0 +170757822369,216,0 +170757822419,218,0 +170757822467,218,0 +170757822514,219,0 +170757822562,219,0 +170757822610,221,0 +170757822658,221,0 +170757822706,222,0 +170757822754,223,0 +170757822802,223,0 +170757822849,222,0 +170757822897,224,0 +170757822945,223,0 +170757822993,223,0 +170757823041,222,0 +170757823090,222,0 +170757823138,215,0 +170757823186,215,0 +170757823234,216,0 +170757823282,216,0 +170757823330,217,0 +170757823378,217,0 +170757823426,218,0 +170757823474,220,0 +170757823522,220,0 +170757823571,220,0 +170757823621,221,0 +170757823670,224,0 +170757823718,224,0 +170757823766,223,0 +170757823816,223,0 +170757823864,224,0 +170757823912,223,0 +170757823959,223,0 +170757824007,216,0 +170757824055,216,0 +170757824105,216,0 +170757824152,217,0 +170757824200,217,0 +170757824250,218,0 +170757824298,219,0 +170757824346,220,0 +170757824395,221,0 +170757824443,221,0 +170757824491,222,0 +170757824539,223,0 +170757824587,222,0 +170757824635,223,0 +170757824684,223,0 +170757824734,225,0 +170757824782,223,0 +170757824830,222,0 +170757824879,222,0 +170757824927,216,0 +170757824975,216,0 +170757825024,216,0 +170757825074,217,0 +170757825124,218,0 +170757825173,218,0 +170757825221,219,0 +170757825270,218,0 +170757825320,221,0 +170757825369,222,0 +170757825417,222,0 +170757825465,222,0 +170757825513,222,0 +170757825561,223,0 +170757825611,223,0 +170757825659,223,0 +170757825707,228,0 +170757825755,222,0 +170757825804,221,0 +170757825852,215,0 +170757825900,216,0 +170757825949,217,0 +170757825997,217,0 +170757826045,217,0 +170757826093,218,0 +170757826141,219,0 +170757826190,219,0 +170757826238,220,0 +170757826286,221,0 +170757826334,221,0 +170757826382,222,0 +170757826432,223,0 +170757826479,222,0 +170757826528,224,0 +170757826577,223,0 +170757826625,222,0 +170757826673,222,0 +170757826722,216,0 +170757826770,216,0 +170757826818,216,0 +170757826866,222,0 +170757826914,218,0 +170757826962,219,0 +170757827010,220,0 +170757827059,220,0 +170757827107,218,0 +170757827155,222,0 +170757827205,222,0 +170757827254,222,0 +170757827304,221,0 +170757827353,221,0 +170757827403,224,0 +170757827451,222,0 +170757827499,224,0 +170757827547,223,0 +170757827595,222,0 +170757827644,217,0 +170757827692,217,0 +170757827740,219,0 +170757827788,218,0 +170757827836,219,0 +170757827884,218,0 +170757827932,221,0 +170757827980,219,0 +170757828028,221,0 +170757828076,222,0 +170757828124,222,0 +170757828173,223,0 +170757828221,225,0 +170757828270,224,0 +170757828320,223,0 +170757828368,223,0 +170757828416,223,0 +170757828466,223,0 +170757828513,222,0 +170757828561,215,0 +170757828611,216,0 +170757828660,216,0 +170757828708,219,0 +170757828756,217,0 +170757828804,219,0 +170757828853,220,0 +170757828901,220,0 +170757828951,224,0 +170757829000,220,0 +170757829050,222,0 +170757829099,222,0 +170757829147,222,0 +170757829195,222,0 +170757829245,223,0 +170757829294,222,0 +170757829342,223,0 +170757829390,223,0 +170757829440,220,0 +170757829488,215,0 +170757829535,216,0 +170757829583,217,0 +170757829631,218,0 +170757829681,218,0 +170757829729,219,0 +170757829777,220,0 +170757829825,220,0 +170757829873,221,0 +170757829921,222,0 +170757829969,223,0 +170757830016,222,0 +170757830064,223,0 +170757830114,223,0 +170757830163,223,0 +170757830211,222,0 +170757830259,223,0 +170757830309,222,0 +170757830357,216,0 +170757830405,215,0 +170757830453,216,0 +170757830502,217,0 +170757830550,218,0 +170757830600,219,0 +170757830649,219,0 +170757830699,220,0 +170757830747,221,0 +170757830796,222,0 +170757830844,222,0 +170757830894,223,0 +170757830942,223,0 +170757830990,223,0 +170757831038,223,0 +170757831087,225,0 +170757831137,224,0 +170757831185,222,0 +170757831234,221,0 +170757831282,214,0 +170757831330,214,0 +170757831380,214,0 +170757831429,215,0 +170757831477,215,0 +170757831525,216,0 +170757831573,217,0 +170757831621,217,0 +170757831669,218,0 +170757831717,219,0 +170757831765,219,0 +170757831814,220,0 +170757831862,221,0 +170757831910,222,0 +170757831960,222,0 +170757832008,222,0 +170757832056,221,0 +170757832104,222,0 +170757832153,216,0 +170757832203,215,0 +170757832251,216,0 +170757832299,216,0 +170757832347,216,0 +170757832395,217,0 +170757832443,218,0 +170757832492,217,0 +170757832540,220,0 +170757832588,219,0 +170757832636,219,0 +170757832685,222,0 +170757832733,221,0 +170757832783,222,0 +170757832832,219,0 +170757832880,222,0 +170757832928,224,0 +170757832976,223,0 +170757833024,223,0 +170757833072,216,0 +170757833120,215,0 +170757833168,216,0 +170757833216,216,0 +170757833264,217,0 +170757833312,218,0 +170757833360,218,0 +170757833408,219,0 +170757833455,221,0 +170757833503,220,0 +170757833551,220,0 +170757833601,221,0 +170757833649,223,0 +170757833697,222,0 +170757833745,221,0 +170757833794,222,0 +170757833844,223,0 +170757833892,222,0 +170757833941,223,0 +170757833991,215,0 +170757834040,215,0 +170757834088,215,0 +170757834137,216,0 +170757834187,217,0 +170757834236,218,0 +170757834286,218,0 +170757834334,219,0 +170757834382,220,0 +170757834431,222,0 +170757834481,222,0 +170757834529,222,0 +170757834578,223,0 +170757834626,222,0 +170757834674,222,0 +170757834722,224,0 +170757834770,223,0 +170757834820,223,0 +170757834868,219,0 +170757834915,215,0 +170757834965,215,0 +170757835014,216,0 +170757835064,216,0 +170757835114,217,0 +170757835162,217,0 +170757835209,219,0 +170757835257,219,0 +170757835307,219,0 +170757835355,220,0 +170757835404,224,0 +170757835452,221,0 +170757835502,221,0 +170757835550,223,0 +170757835598,222,0 +170757835647,220,0 +170757835695,222,0 +170757835743,223,0 +170757835793,216,0 +170757835842,215,0 +170757835890,215,0 +170757835940,215,0 +170757835989,216,0 +170757836037,217,0 +170757836085,218,0 +170757836133,219,0 +170757836181,220,0 +170757836229,221,0 +170757836277,220,0 +170757836325,221,0 +170757836374,221,0 +170757836422,221,0 +170757836470,221,0 +170757836518,222,0 +170757836566,221,0 +170757836616,222,0 +170757836665,222,0 +170757836713,215,0 +170757836761,214,0 +170757836811,215,0 +170757836859,215,0 +170757836907,216,0 +170757836956,217,0 +170757837004,217,0 +170757837054,219,0 +170757837102,218,0 +170757837150,220,0 +170757837197,221,0 +170757837245,221,0 +170757837295,222,0 +170757837344,221,0 +170757837392,223,0 +170757837442,223,0 +170757837490,223,0 +170757837538,222,0 +170757837587,216,0 +170757837635,215,0 +170757837683,216,0 +170757837731,217,0 +170757837779,218,0 +170757837827,218,0 +170757837877,218,0 +170757837925,219,0 +170757837974,219,0 +170757838022,220,0 +170757838070,220,0 +170757838119,221,0 +170757838167,221,0 +170757838215,222,0 +170757838263,223,0 +170757838311,223,0 +170757838359,221,0 +170757838409,223,0 +170757838457,223,0 +170757838505,217,0 +170757838553,216,0 +170757838601,217,0 +170757838650,217,0 +170757838698,218,0 +170757838746,219,0 +170757838794,219,0 +170757838842,219,0 +170757838890,221,0 +170757838938,221,0 +170757838987,222,0 +170757839035,222,0 +170757839083,222,0 +170757839131,222,0 +170757839179,223,0 +170757839229,225,0 +170757839277,223,0 +170757839326,223,0 +170757839376,223,0 +170757839424,216,0 +170757839473,216,0 +170757839523,217,0 +170757839571,217,0 +170757839619,218,0 +170757839667,218,0 +170757839716,219,0 +170757839766,219,0 +170757839814,220,0 +170757839862,220,0 +170757839911,221,0 +170757839959,221,0 +170757840009,222,0 +170757840058,222,0 +170757840107,223,0 +170757840155,222,0 +170757840203,223,0 +170757840251,222,0 +170757840301,216,0 +170757840349,215,0 +170757840397,217,0 +170757840446,217,0 +170757840496,218,0 +170757840543,218,0 +170757840593,218,0 +170757840641,220,0 +170757840689,220,0 +170757840737,220,0 +170757840785,221,0 +170757840833,222,0 +170757840881,224,0 +170757840929,222,0 +170757840978,223,0 +170757841026,222,0 +170757841074,223,0 +170757841124,223,0 +170757841172,221,0 +170757841220,217,0 +170757841268,216,0 +170757841315,217,0 +170757841363,218,0 +170757841413,217,0 +170757841462,218,0 +170757841510,219,0 +170757841558,219,0 +170757841608,220,0 +170757841656,223,0 +170757841703,221,0 +170757841753,222,0 +170757841801,221,0 +170757841850,223,0 +170757841898,223,0 +170757841946,222,0 +170757841994,223,0 +170757842044,224,0 +170757842092,223,0 +170757842141,216,0 +170757842191,216,0 +170757842239,217,0 +170757842287,217,0 +170757842335,218,0 +170757842384,219,0 +170757842432,220,0 +170757842480,221,0 +170757842528,220,0 +170757842576,221,0 +170757842623,223,0 +170757842671,222,0 +170757842721,222,0 +170757842769,222,0 +170757842817,223,0 +170757842865,221,0 +170757842913,223,0 +170757842962,223,0 +170757843012,222,0 +170757843060,216,0 +170757843108,216,0 +170757843155,217,0 +170757843203,219,0 +170757843251,219,0 +170757843299,219,0 +170757843347,219,0 +170757843395,220,0 +170757843443,221,0 +170757843492,222,0 +170757843542,222,0 +170757843590,223,0 +170757843638,223,0 +170757843686,222,0 +170757843734,220,0 +170757843781,220,0 +170757843829,217,0 +170757843879,216,0 +170757843927,216,0 +170757843975,215,0 +170757844023,216,0 +170757844072,217,0 +170757844122,218,0 +170757844170,218,0 +170757844219,219,0 +170757844269,219,0 +170757844317,219,0 +170757844365,221,0 +170757844412,222,0 +170757844460,222,0 +170757844510,222,0 +170757844558,223,0 +170757844607,223,0 +170757844655,222,0 +170757844703,223,0 +170757844751,223,0 +170757844801,223,0 +170757844850,216,0 +170757844898,215,0 +170757844946,215,0 +170757844996,216,0 +170757845044,216,0 +170757845092,217,0 +170757845139,217,0 +170757845187,218,0 +170757845235,219,0 +170757845283,219,0 +170757845331,221,0 +170757845379,222,0 +170757845427,221,0 +170757845475,223,0 +170757845523,223,0 +170757845571,224,0 +170757845619,223,0 +170757845667,224,0 +170757845715,223,0 +170757845763,216,0 +170757845811,216,0 +170757845860,218,0 +170757845910,218,0 +170757845959,219,0 +170757846007,220,0 +170757846055,220,0 +170757846103,221,0 +170757846151,221,0 +170757846200,222,0 +170757846248,222,0 +170757846296,223,0 +170757846344,223,0 +170757846394,223,0 +170757846442,224,0 +170757846490,223,0 +170757846539,222,0 +170757846587,222,0 +170757846636,222,0 +170757846686,215,0 +170757846735,216,0 +170757846783,217,0 +170757846833,218,0 +170757846881,218,0 +170757846929,219,0 +170757846977,219,0 +170757847026,220,0 +170757847074,221,0 +170757847122,222,0 +170757847170,221,0 +170757847218,222,0 +170757847266,222,0 +170757847314,223,0 +170757847363,223,0 +170757847413,222,0 +170757847462,223,0 +170757847512,222,0 +170757847560,217,0 +170757847609,217,0 +170757847657,217,0 +170757847707,219,0 +170757847756,219,0 +170757847804,220,0 +170757847852,220,0 +170757847900,220,0 +170757847948,221,0 +170757847996,221,0 +170757848045,222,0 +170757848093,223,0 +170757848141,222,0 +170757848189,223,0 +170757848238,225,0 +170757848288,223,0 +170757848337,223,0 +170757848385,222,0 +170757848435,223,0 +170757848483,216,0 +170757848532,215,0 +170757848580,216,0 +170757848630,217,0 +170757848678,218,0 +170757848727,219,0 +170757848775,218,0 +170757848825,220,0 +170757848873,220,0 +170757848922,221,0 +170757848972,221,0 +170757849020,220,0 +170757849068,222,0 +170757849116,222,0 +170757849163,222,0 +170757849211,223,0 +170757849259,224,0 +170757849307,222,0 +170757849357,222,0 +170757849405,216,0 +170757849452,216,0 +170757849500,216,0 +170757849548,217,0 +170757849596,218,0 +170757849646,220,0 +170757849694,219,0 +170757849742,220,0 +170757849789,220,0 +170757849839,221,0 +170757849887,222,0 +170757849935,223,0 +170757849984,221,0 +170757850032,223,0 +170757850080,223,0 +170757850128,224,0 +170757850176,226,0 +170757850226,223,0 +170757850274,216,0 +170757850322,216,0 +170757850370,217,0 +170757850418,219,0 +170757850467,218,0 +170757850517,219,0 +170757850566,220,0 +170757850614,220,0 +170757850662,220,0 +170757850710,221,0 +170757850758,222,0 +170757850806,224,0 +170757850854,223,0 +170757850902,222,0 +170757850952,224,0 +170757851000,223,0 +170757851049,223,0 +170757851097,224,0 +170757851145,222,0 +170757851193,215,0 +170757851241,215,0 +170757851289,216,0 +170757851337,217,0 +170757851386,218,0 +170757851436,220,0 +170757851485,219,0 +170757851535,220,0 +170757851584,221,0 +170757851634,221,0 +170757851682,222,0 +170757851730,222,0 +170757851779,223,0 +170757851827,224,0 +170757851876,223,0 +170757851926,224,0 +170757851974,223,0 +170757852022,224,0 +170757852071,222,0 +170757852119,215,0 +170757852167,215,0 +170757852217,216,0 +170757852265,216,0 +170757852313,217,0 +170757852361,218,0 +170757852409,218,0 +170757852458,219,0 +170757852506,219,0 +170757852556,219,0 +170757852604,221,0 +170757852653,221,0 +170757852702,221,0 +170757852750,223,0 +170757852798,221,0 +170757852848,223,0 +170757852896,221,0 +170757852944,222,0 +170757852993,216,0 +170757853041,215,0 +170757853090,216,0 +170757853140,217,0 +170757853188,218,0 +170757853236,219,0 +170757853285,218,0 +170757853333,219,0 +170757853381,221,0 +170757853431,219,0 +170757853479,220,0 +170757853527,222,0 +170757853575,223,0 +170757853622,223,0 +170757853670,223,0 +170757853718,223,0 +170757853766,223,0 +170757853814,223,0 +170757853862,223,0 +170757853911,216,0 +170757853959,216,0 +170757854007,217,0 +170757854055,217,0 +170757854105,219,0 +170757854153,219,0 +170757854201,219,0 +170757854249,219,0 +170757854297,220,0 +170757854346,221,0 +170757854394,223,0 +170757854443,222,0 +170757854491,223,0 +170757854541,223,0 +170757854589,223,0 +170757854638,222,0 +170757854686,222,0 +170757854734,223,0 +170757854782,222,0 +170757854830,217,0 +170757854880,217,0 +170757854929,218,0 +170757854978,219,0 +170757855028,219,0 +170757855076,220,0 +170757855124,221,0 +170757855172,221,0 +170757855221,221,0 +170757855269,223,0 +170757855317,223,0 +170757855366,222,0 +170757855414,223,0 +170757855463,223,0 +170757855511,225,0 +170757855559,224,0 +170757855607,223,0 +170757855655,222,0 +170757855703,223,0 +170757855752,218,0 +170757855800,217,0 +170757855850,219,0 +170757855897,218,0 +170757855945,220,0 +170757855995,221,0 +170757856042,222,0 +170757856090,221,0 +170757856138,222,0 +170757856187,223,0 +170757856235,223,0 +170757856283,224,0 +170757856331,223,0 +170757856379,223,0 +170757856426,223,0 +170757856474,224,0 +170757856524,223,0 +170757856572,222,0 +170757856619,218,0 +170757856667,214,0 +170757856715,215,0 +170757856763,215,0 +170757856813,217,0 +170757856861,218,0 +170757856909,218,0 +170757856957,218,0 +170757857005,219,0 +170757857053,220,0 +170757857101,221,0 +170757857150,222,0 +170757857198,221,0 +170757857248,221,0 +170757857296,222,0 +170757857344,222,0 +170757857392,220,0 +170757857440,221,0 +170757857487,223,0 +170757857535,216,0 +170757857583,214,0 +170757857632,215,0 +170757857680,215,0 +170757857728,215,0 +170757857776,215,0 +170757857825,217,0 +170757857873,216,0 +170757857921,217,0 +170757857969,218,0 +170757858017,219,0 +170757858066,220,0 +170757858114,220,0 +170757858162,220,0 +170757858212,222,0 +170757858261,221,0 +170757858309,222,0 +170757858357,224,0 +170757858405,223,0 +170757858453,216,0 +170757858501,215,0 +170757858549,215,0 +170757858597,216,0 +170757858645,216,0 +170757858693,217,0 +170757858740,218,0 +170757858788,218,0 +170757858836,219,0 +170757858884,219,0 +170757858932,219,0 +170757858979,220,0 +170757859027,220,0 +170757859075,221,0 +170757859123,222,0 +170757859173,221,0 +170757859220,222,0 +170757859268,222,0 +170757859316,223,0 +170757859364,215,0 +170757859412,215,0 +170757859461,215,0 +170757859511,215,0 +170757859558,215,0 +170757859606,216,0 +170757859654,216,0 +170757859702,217,0 +170757859750,218,0 +170757859799,219,0 +170757859847,220,0 +170757859897,220,0 +170757859944,221,0 +170757859992,221,0 +170757860040,221,0 +170757860088,222,0 +170757860136,223,0 +170757860184,223,0 +170757860232,221,0 +170757860279,215,0 +170757860327,215,0 +170757860375,216,0 +170757860423,217,0 +170757860471,218,0 +170757860519,217,0 +170757860567,217,0 +170757860617,218,0 +170757860664,219,0 +170757860712,219,0 +170757860760,219,0 +170757860808,222,0 +170757860856,221,0 +170757860904,222,0 +170757860952,223,0 +170757860999,223,0 +170757861049,223,0 +170757861097,223,0 +170757861144,216,0 +170757861194,215,0 +170757861243,215,0 +170757861293,216,0 +170757861341,217,0 +170757861390,216,0 +170757861438,219,0 +170757861486,217,0 +170757861535,219,0 +170757861583,219,0 +170757861631,220,0 +170757861679,220,0 +170757861727,222,0 +170757861775,221,0 +170757861823,222,0 +170757861870,222,0 +170757861918,220,0 +170757861966,223,0 +170757862014,223,0 +170757862062,216,0 +170757862110,215,0 +170757862157,215,0 +170757862205,216,0 +170757862253,217,0 +170757862301,217,0 +170757862349,219,0 +170757862397,221,0 +170757862444,219,0 +170757862494,220,0 +170757862542,221,0 +170757862590,222,0 +170757862637,222,0 +170757862685,222,0 +170757862735,223,0 +170757862784,223,0 +170757862832,223,0 +170757862880,223,0 +170757862930,222,0 +170757862978,216,0 +170757863026,215,0 +170757863074,216,0 +170757863121,217,0 +170757863169,217,0 +170757863217,218,0 +170757863265,219,0 +170757863313,219,0 +170757863361,220,0 +170757863410,221,0 +170757863458,221,0 +170757863506,222,0 +170757863554,222,0 +170757863603,223,0 +170757863651,223,0 +170757863699,223,0 +170757863747,223,0 +170757863795,223,0 +170757863843,222,0 +170757863890,217,0 +170757863938,217,0 +170757863986,218,0 +170757864034,219,0 +170757864082,219,0 +170757864130,221,0 +170757864177,221,0 +170757864227,223,0 +170757864275,221,0 +170757864323,222,0 +170757864371,223,0 +170757864419,223,0 +170757864466,223,0 +170757864516,224,0 +170757864564,223,0 +170757864612,223,0 +170757864661,223,0 +170757864709,223,0 +170757864757,221,0 +170757864806,215,0 +170757864854,216,0 +170757864904,217,0 +170757864952,218,0 +170757865000,218,0 +170757865048,219,0 +170757865097,219,0 +170757865145,220,0 +170757865195,220,0 +170757865242,221,0 +170757865292,222,0 +170757865341,222,0 +170757865391,221,0 +170757865439,223,0 +170757865488,224,0 +170757865538,223,0 +170757865587,224,0 +170757865637,224,0 +170757865685,216,0 +170757865733,216,0 +170757865781,216,0 +170757865829,217,0 +170757865877,218,0 +170757865926,218,0 +170757865974,220,0 +170757866022,220,0 +170757866070,221,0 +170757866118,221,0 +170757866166,222,0 +170757866215,223,0 +170757866263,218,0 +170757866311,225,0 +170757866359,223,0 +170757866407,224,0 +170757866457,224,0 +170757866505,224,0 +170757866553,222,0 +170757866600,217,0 +170757866648,216,0 +170757866696,217,0 +170757866744,218,0 +170757866792,218,0 +170757866840,219,0 +170757866890,219,0 +170757866939,219,0 +170757866987,219,0 +170757867035,220,0 +170757867083,221,0 +170757867131,224,0 +170757867179,222,0 +170757867227,222,0 +170757867275,223,0 +170757867324,223,0 +170757867372,223,0 +170757867422,222,0 +170757867471,223,0 +170757867519,216,0 +170757867567,217,0 +170757867617,218,0 +170757867666,218,0 +170757867716,219,0 +170757867764,219,0 +170757867812,219,0 +170757867860,220,0 +170757867907,220,0 +170757867955,221,0 +170757868005,223,0 +170757868053,223,0 +170757868102,222,0 +170757868150,224,0 +170757868198,223,0 +170757868246,224,0 +170757868294,222,0 +170757868342,222,0 +170757868390,216,0 +170757868439,215,0 +170757868487,216,0 +170757868535,217,0 +170757868583,218,0 +170757868631,218,0 +170757868679,219,0 +170757868727,219,0 +170757868775,220,0 +170757868823,222,0 +170757868871,225,0 +170757868919,221,0 +170757868967,223,0 +170757869015,222,0 +170757869064,223,0 +170757869114,223,0 +170757869163,223,0 +170757869211,223,0 +170757869259,222,0 +170757869309,216,0 +170757869357,216,0 +170757869406,217,0 +170757869454,218,0 +170757869503,218,0 +170757869551,218,0 +170757869601,218,0 +170757869650,219,0 +170757869700,220,0 +170757869748,221,0 +170757869796,223,0 +170757869845,222,0 +170757869893,222,0 +170757869941,224,0 +170757869990,223,0 +170757870040,224,0 +170757870088,225,0 +170757870137,224,0 +170757870185,223,0 +170757870233,216,0 +170757870281,217,0 +170757870329,218,0 +170757870377,219,0 +170757870425,219,0 +170757870473,218,0 +170757870522,221,0 +170757870570,219,0 +170757870620,220,0 +170757870669,221,0 +170757870717,221,0 +170757870765,222,0 +170757870815,223,0 +170757870864,222,0 +170757870914,222,0 +170757870962,223,0 +170757871010,223,0 +170757871059,222,0 +170757871107,216,0 +170757871157,217,0 +170757871206,218,0 +170757871256,219,0 +170757871304,220,0 +170757871352,220,0 +170757871400,220,0 +170757871447,221,0 +170757871495,221,0 +170757871543,222,0 +170757871593,222,0 +170757871642,223,0 +170757871690,223,0 +170757871738,225,0 +170757871786,225,0 +170757871834,224,0 +170757871882,223,0 +170757871931,223,0 +170757871981,223,0 +170757872029,217,0 +170757872077,217,0 +170757872126,217,0 +170757872174,216,0 +170757872222,219,0 +170757872270,220,0 +170757872320,219,0 +170757872367,220,0 +170757872417,221,0 +170757872467,222,0 +170757872515,223,0 +170757872563,223,0 +170757872610,224,0 +170757872660,225,0 +170757872709,224,0 +170757872759,225,0 +170757872807,223,0 +170757872856,226,0 +170757872904,222,0 +170757872954,218,0 +170757873002,218,0 +170757873050,218,0 +170757873099,220,0 +170757873147,221,0 +170757873195,221,0 +170757873243,221,0 +170757873291,222,0 +170757873339,222,0 +170757873387,222,0 +170757873435,223,0 +170757873483,223,0 +170757873531,224,0 +170757873579,224,0 +170757873627,224,0 +170757873676,222,0 +170757873724,223,0 +170757873772,223,0 +170757873820,222,0 +170757873868,216,0 +170757873918,216,0 +170757873966,217,0 +170757874013,218,0 +170757874061,219,0 +170757874109,219,0 +170757874157,220,0 +170757874205,220,0 +170757874253,222,0 +170757874301,222,0 +170757874349,224,0 +170757874397,222,0 +170757874447,221,0 +170757874495,223,0 +170757874544,224,0 +170757874592,223,0 +170757874641,223,0 +170757874689,222,0 +170757874739,216,0 +170757874787,215,0 +170757874836,215,0 +170757874884,215,0 +170757874932,217,0 +170757874980,217,0 +170757875028,217,0 +170757875076,217,0 +170757875126,219,0 +170757875175,220,0 +170757875223,219,0 +170757875271,222,0 +170757875319,220,0 +170757875369,221,0 +170757875417,222,0 +170757875466,222,0 +170757875516,223,0 +170757875564,222,0 +170757875613,223,0 +170757875661,215,0 +170757875709,214,0 +170757875757,214,0 +170757875805,214,0 +170757875853,215,0 +170757875901,215,0 +170757875949,215,0 +170757875997,216,0 +170757876045,216,0 +170757876093,218,0 +170757876141,218,0 +170757876190,219,0 +170757876240,219,0 +170757876289,220,0 +170757876337,221,0 +170757876387,222,0 +170757876436,221,0 +170757876486,223,0 +170757876535,222,0 +170757876583,214,0 +170757876633,214,0 +170757876681,215,0 +170757876729,215,0 +170757876778,216,0 +170757876826,216,0 +170757876876,217,0 +170757876923,217,0 +170757876971,218,0 +170757877019,218,0 +170757877069,219,0 +170757877118,221,0 +170757877166,221,0 +170757877214,221,0 +170757877262,222,0 +170757877312,222,0 +170757877360,222,0 +170757877408,222,0 +170757877456,216,0 +170757877504,215,0 +170757877553,215,0 +170757877603,215,0 +170757877651,215,0 +170757877699,216,0 +170757877747,216,0 +170757877795,216,0 +170757877843,217,0 +170757877891,218,0 +170757877940,219,0 +170757877988,220,0 +170757878038,221,0 +170757878087,221,0 +170757878135,222,0 +170757878185,221,0 +170757878232,225,0 +170757878280,222,0 +170757878328,223,0 +170757878376,216,0 +170757878424,215,0 +170757878472,215,0 +170757878522,216,0 +170757878571,215,0 +170757878619,216,0 +170757878667,216,0 +170757878715,216,0 +170757878765,217,0 +170757878814,217,0 +170757878864,218,0 +170757878912,219,0 +170757878960,219,0 +170757879009,221,0 +170757879059,220,0 +170757879107,221,0 +170757879155,220,0 +170757879203,222,0 +170757879252,222,0 +170757879302,215,0 +170757879350,214,0 +170757879398,215,0 +170757879446,216,0 +170757879494,215,0 +170757879543,216,0 +170757879593,217,0 +170757879641,217,0 +170757879690,218,0 +170757879738,219,0 +170757879788,219,0 +170757879835,221,0 +170757879885,221,0 +170757879933,222,0 +170757879982,222,0 +170757880030,224,0 +170757880078,222,0 +170757880128,226,0 +170757880176,216,0 +170757880224,215,0 +170757880272,216,0 +170757880320,217,0 +170757880368,218,0 +170757880415,218,0 +170757880463,220,0 +170757880511,220,0 +170757880559,220,0 +170757880609,221,0 +170757880657,222,0 +170757880705,223,0 +170757880753,222,0 +170757880801,223,0 +170757880849,223,0 +170757880897,223,0 +170757880945,223,0 +170757880994,223,0 +170757881042,223,0 +170757881090,216,0 +170757881138,216,0 +170757881186,217,0 +170757881236,218,0 +170757881284,218,0 +170757881333,219,0 +170757881381,220,0 +170757881429,221,0 +170757881477,222,0 +170757881525,222,0 +170757881573,223,0 +170757881621,222,0 +170757881669,222,0 +170757881718,224,0 +170757881768,223,0 +170757881816,224,0 +170757881865,223,0 +170757881915,223,0 +170757881964,222,0 +170757882012,215,0 +170757882062,215,0 +170757882110,216,0 +170757882158,217,0 +170757882206,218,0 +170757882254,218,0 +170757882303,218,0 +170757882351,219,0 +170757882399,220,0 +170757882449,220,0 +170757882497,220,0 +170757882545,221,0 +170757882592,222,0 +170757882640,221,0 +170757882688,222,0 +170757882736,223,0 +170757882784,223,0 +170757882832,226,0 +170757882880,217,0 +170757882930,215,0 +170757882978,216,0 +170757883026,216,0 +170757883074,216,0 +170757883123,217,0 +170757883171,218,0 +170757883221,218,0 +170757883269,219,0 +170757883317,220,0 +170757883364,221,0 +170757883412,221,0 +170757883462,222,0 +170757883511,222,0 +170757883559,222,0 +170757883609,222,0 +170757883657,223,0 +170757883706,223,0 +170757883754,223,0 +170757883802,217,0 +170757883852,216,0 +170757883900,217,0 +170757883949,217,0 +170757883999,218,0 +170757884046,218,0 +170757884094,218,0 +170757884144,219,0 +170757884192,220,0 +170757884240,220,0 +170757884289,223,0 +170757884337,221,0 +170757884387,222,0 +170757884436,222,0 +170757884486,222,0 +170757884534,222,0 +170757884583,223,0 +170757884633,223,0 +170757884680,222,0 +170757884728,217,0 +170757884778,216,0 +170757884826,217,0 +170757884874,218,0 +170757884923,219,0 +170757884971,219,0 +170757885020,220,0 +170757885070,220,0 +170757885118,221,0 +170757885166,221,0 +170757885215,222,0 +170757885263,223,0 +170757885311,223,0 +170757885361,223,0 +170757885410,223,0 +170757885458,223,0 +170757885506,223,0 +170757885555,223,0 +170757885603,218,0 +170757885653,216,0 +170757885701,216,0 +170757885749,217,0 +170757885798,218,0 +170757885846,218,0 +170757885894,219,0 +170757885944,219,0 +170757885992,220,0 +170757886040,219,0 +170757886087,221,0 +170757886135,223,0 +170757886183,222,0 +170757886233,223,0 +170757886280,223,0 +170757886328,224,0 +170757886378,226,0 +170757886426,222,0 +170757886474,223,0 +170757886522,217,0 +170757886571,216,0 +170757886619,217,0 +170757886667,217,0 +170757886715,217,0 +170757886764,219,0 +170757886812,219,0 +170757886862,219,0 +170757886910,220,0 +170757886957,220,0 +170757887007,221,0 +170757887055,221,0 +170757887103,222,0 +170757887152,222,0 +170757887202,224,0 +170757887250,223,0 +170757887298,224,0 +170757887347,223,0 +170757887395,222,0 +170757887443,216,0 +170757887491,217,0 +170757887539,217,0 +170757887587,218,0 +170757887635,218,0 +170757887683,219,0 +170757887731,219,0 +170757887780,219,0 +170757887828,220,0 +170757887876,220,0 +170757887924,222,0 +170757887972,221,0 +170757888020,222,0 +170757888067,223,0 +170757888117,223,0 +170757888167,223,0 +170757888216,223,0 +170757888266,222,0 +170757888315,216,0 +170757888363,215,0 +170757888412,216,0 +170757888462,217,0 +170757888510,218,0 +170757888558,219,0 +170757888605,220,0 +170757888653,220,0 +170757888701,220,0 +170757888749,221,0 +170757888797,222,0 +170757888845,222,0 +170757888893,223,0 +170757888941,223,0 +170757888989,224,0 +170757889036,224,0 +170757889086,223,0 +170757889134,224,0 +170757889182,222,0 +170757889230,216,0 +170757889278,215,0 +170757889327,216,0 +170757889375,217,0 +170757889425,218,0 +170757889473,218,0 +170757889522,218,0 +170757889572,219,0 +170757889619,220,0 +170757889669,220,0 +170757889717,221,0 +170757889765,221,0 +170757889813,222,0 +170757889860,223,0 +170757889908,223,0 +170757889956,223,0 +170757890004,224,0 +170757890052,223,0 +170757890100,222,0 +170757890148,215,0 +170757890196,216,0 +170757890244,216,0 +170757890291,217,0 +170757890339,217,0 +170757890387,218,0 +170757890435,217,0 +170757890483,218,0 +170757890532,219,0 +170757890580,220,0 +170757890628,219,0 +170757890676,222,0 +170757890724,223,0 +170757890772,222,0 +170757890821,223,0 +170757890871,223,0 +170757890918,223,0 +170757890968,223,0 +170757891016,223,0 +170757891064,215,0 +170757891112,215,0 +170757891160,216,0 +170757891208,216,0 +170757891255,217,0 +170757891303,217,0 +170757891351,217,0 +170757891399,218,0 +170757891447,218,0 +170757891494,220,0 +170757891542,221,0 +170757891590,222,0 +170757891640,221,0 +170757891688,221,0 +170757891737,222,0 +170757891785,222,0 +170757891833,223,0 +170757891881,222,0 +170757891930,221,0 +170757891978,214,0 +170757892026,215,0 +170757892074,215,0 +170757892122,216,0 +170757892170,216,0 +170757892218,216,0 +170757892266,218,0 +170757892314,218,0 +170757892362,218,0 +170757892410,219,0 +170757892459,219,0 +170757892509,219,0 +170757892557,220,0 +170757892605,222,0 +170757892653,221,0 +170757892701,223,0 +170757892750,222,0 +170757892798,220,0 +170757892846,216,0 +170757892895,215,0 +170757892943,214,0 +170757892993,215,0 +170757893042,215,0 +170757893090,215,0 +170757893140,216,0 +170757893188,217,0 +170757893236,217,0 +170757893284,218,0 +170757893331,217,0 +170757893379,219,0 +170757893427,220,0 +170757893477,219,0 +170757893525,221,0 +170757893573,220,0 +170757893621,222,0 +170757893670,222,0 +170757893718,222,0 +170757893768,215,0 +170757893816,215,0 +170757893864,215,0 +170757893913,216,0 +170757893961,218,0 +170757894009,217,0 +170757894057,219,0 +170757894104,218,0 +170757894152,220,0 +170757894200,221,0 +170757894248,222,0 +170757894298,222,0 +170757894346,223,0 +170757894394,222,0 +170757894441,222,0 +170757894489,223,0 +170757894537,224,0 +170757894585,223,0 +170757894633,223,0 +170757894681,215,0 +170757894729,216,0 +170757894779,216,0 +170757894827,217,0 +170757894875,217,0 +170757894923,219,0 +170757894972,219,0 +170757895022,220,0 +170757895071,220,0 +170757895119,221,0 +170757895167,221,0 +170757895215,223,0 +170757895263,223,0 +170757895311,222,0 +170757895359,223,0 +170757895407,223,0 +170757895455,224,0 +170757895503,223,0 +170757895552,217,0 +170757895602,215,0 +170757895650,216,0 +170757895699,216,0 +170757895747,217,0 +170757895796,217,0 +170757895844,218,0 +170757895894,218,0 +170757895942,219,0 +170757895990,219,0 +170757896037,220,0 +170757896085,220,0 +170757896133,221,0 +170757896181,221,0 +170757896229,222,0 +170757896277,222,0 +170757896325,222,0 +170757896374,223,0 +170757896422,223,0 +170757896472,217,0 +170757896520,216,0 +170757896568,217,0 +170757896616,217,0 +170757896663,218,0 +170757896711,220,0 +170757896759,220,0 +170757896807,220,0 +170757896855,220,0 +170757896903,221,0 +170757896951,223,0 +170757896999,223,0 +170757897048,223,0 +170757897096,223,0 +170757897144,224,0 +170757897192,224,0 +170757897240,223,0 +170757897290,223,0 +170757897339,222,0 +170757897387,221,0 +170757897437,220,0 +170757897486,221,0 +170757897534,222,0 +170757897582,222,0 +170757897630,222,0 +170757897678,222,0 +170757897727,223,0 +170757897777,223,0 +170757897825,223,0 +170757897874,224,0 +170757897922,224,0 +170757897970,223,0 +170757898018,224,0 +170757898067,224,0 +170757898117,224,0 +170757898165,223,0 +170757898213,223,0 +170757898262,223,0 +170757898312,220,0 +170757898360,220,0 +170757898408,221,0 +170757898456,222,0 +170757898503,223,0 +170757898551,223,0 +170757898599,223,0 +170757898649,223,0 +170757898698,226,0 +170757898748,224,0 +170757898796,222,0 +170757898844,224,0 +170757898891,225,0 +170757898939,224,0 +170757898987,224,0 +170757899035,223,0 +170757899083,224,0 +170757899131,222,0 +170757899179,218,0 +170757899227,217,0 +170757899274,217,0 +170757899322,218,0 +170757899372,218,0 +170757899421,220,0 +170757899469,220,0 +170757899519,220,0 +170757899566,223,0 +170757899616,222,0 +170757899664,222,0 +170757899712,224,0 +170757899760,223,0 +170757899808,224,0 +170757899855,223,0 +170757899903,222,0 +170757899951,224,0 +170757900001,224,0 +170757900049,222,0 +170757900096,216,0 +170757900144,215,0 +170757900194,215,0 +170757900242,216,0 +170757900291,216,0 +170757900341,217,0 +170757900389,218,0 +170757900437,219,0 +170757900486,219,0 +170757900534,219,0 +170757900582,219,0 +170757900630,223,0 +170757900679,223,0 +170757900727,222,0 +170757900775,221,0 +170757900824,223,0 +170757900872,223,0 +170757900922,223,0 +170757900970,222,0 +170757901019,214,0 +170757901069,215,0 +170757901118,215,0 +170757901166,216,0 +170757901215,216,0 +170757901263,218,0 +170757901311,217,0 +170757901359,219,0 +170757901407,219,0 +170757901455,220,0 +170757901504,220,0 +170757901552,221,0 +170757901600,221,0 +170757901648,225,0 +170757901698,223,0 +170757901746,222,0 +170757901795,221,0 +170757901843,223,0 +170757901893,216,0 +170757901942,215,0 +170757901990,216,0 +170757902038,217,0 +170757902087,220,0 +170757902135,219,0 +170757902183,219,0 +170757902231,219,0 +170757902281,220,0 +170757902329,220,0 +170757902377,221,0 +170757902426,222,0 +170757902474,224,0 +170757902522,222,0 +170757902570,222,0 +170757902617,223,0 +170757902667,224,0 +170757902717,223,0 +170757902765,226,0 +170757902814,216,0 +170757902862,215,0 +170757902910,216,0 +170757902958,217,0 +170757903006,217,0 +170757903054,217,0 +170757903102,218,0 +170757903150,218,0 +170757903198,219,0 +170757903246,219,0 +170757903295,221,0 +170757903343,221,0 +170757903391,222,0 +170757903439,222,0 +170757903488,222,0 +170757903536,223,0 +170757903584,223,0 +170757903632,223,0 +170757903680,223,0 +170757903730,215,0 +170757903778,215,0 +170757903827,215,0 +170757903875,216,0 +170757903923,217,0 +170757903971,218,0 +170757904021,220,0 +170757904070,219,0 +170757904120,219,0 +170757904169,220,0 +170757904217,221,0 +170757904265,221,0 +170757904314,222,0 +170757904362,224,0 +170757904410,223,0 +170757904458,222,0 +170757904506,223,0 +170757904554,223,0 +170757904602,216,0 +170757904651,214,0 +170757904701,215,0 +170757904749,215,0 +170757904798,215,0 +170757904846,215,0 +170757904896,216,0 +170757904943,216,0 +170757904991,217,0 +170757905039,217,0 +170757905087,218,0 +170757905135,219,0 +170757905183,220,0 +170757905231,221,0 +170757905279,219,0 +170757905327,223,0 +170757905376,223,0 +170757905424,223,0 +170757905472,223,0 +170757905520,216,0 +170757905569,214,0 +170757905619,215,0 +170757905667,215,0 +170757905715,215,0 +170757905763,215,0 +170757905811,215,0 +170757905859,216,0 +170757905906,216,0 +170757905956,218,0 +170757906004,218,0 +170757906052,220,0 +170757906100,220,0 +170757906149,220,0 +170757906199,221,0 +170757906247,222,0 +170757906295,222,0 +170757906343,223,0 +170757906392,223,0 +170757906440,215,0 +170757906488,214,0 +170757906538,215,0 +170757906585,215,0 +170757906635,215,0 +170757906683,215,0 +170757906731,215,0 +170757906779,216,0 +170757906827,216,0 +170757906876,217,0 +170757906924,218,0 +170757906972,220,0 +170757907021,219,0 +170757907069,221,0 +170757907119,220,0 +170757907167,221,0 +170757907216,221,0 +170757907266,222,0 +170757907314,217,0 +170757907363,215,0 +170757907411,215,0 +170757907459,215,0 +170757907507,215,0 +170757907557,216,0 +170757907606,216,0 +170757907654,217,0 +170757907702,218,0 +170757907750,219,0 +170757907798,219,0 +170757907846,220,0 +170757907894,220,0 +170757907942,223,0 +170757907990,222,0 +170757908037,221,0 +170757908085,223,0 +170757908133,225,0 +170757908181,223,0 +170757908229,216,0 +170757908277,215,0 +170757908326,215,0 +170757908376,215,0 +170757908424,216,0 +170757908473,217,0 +170757908521,217,0 +170757908571,218,0 +170757908618,219,0 +170757908666,219,0 +170757908716,220,0 +170757908765,219,0 +170757908813,219,0 +170757908861,221,0 +170757908909,220,0 +170757908957,221,0 +170757909005,222,0 +170757909052,222,0 +170757909100,222,0 +170757909148,223,0 +170757909196,222,0 +170757909244,223,0 +170757909292,226,0 +170757909340,224,0 +170757909387,225,0 +170757909435,223,0 +170757909483,224,0 +170757909531,224,0 +170757909579,217,0 +170757909628,216,0 +170757909676,217,0 +170757909724,217,0 +170757909772,218,0 +170757909820,218,0 +170757909869,219,0 +170757909917,219,0 +170757909966,221,0 +170757910016,221,0 +170757910064,221,0 +170757910112,221,0 +170757910160,223,0 +170757910208,222,0 +170757910257,223,0 +170757910305,224,0 +170757910354,224,0 +170757910402,224,0 +170757910450,223,0 +170757910500,216,0 +170757910549,217,0 +170757910597,217,0 +170757910647,217,0 +170757910695,219,0 +170757910743,219,0 +170757910791,220,0 +170757910840,219,0 +170757910888,220,0 +170757910936,221,0 +170757910985,221,0 +170757911033,221,0 +170757911083,223,0 +170757911131,223,0 +170757911178,222,0 +170757911226,225,0 +170757911276,224,0 +170757911324,223,0 +170757911372,222,0 +170757911420,215,0 +170757911469,216,0 +170757911517,217,0 +170757911566,219,0 +170757911614,219,0 +170757911662,220,0 +170757911712,220,0 +170757911760,221,0 +170757911808,220,0 +170757911857,221,0 +170757911905,221,0 +170757911953,223,0 +170757912001,222,0 +170757912049,223,0 +170757912097,222,0 +170757912145,223,0 +170757912192,222,0 +170757912240,223,0 +170757912288,216,0 +170757912336,215,0 +170757912384,216,0 +170757912432,216,0 +170757912482,217,0 +170757912530,217,0 +170757912578,218,0 +170757912625,219,0 +170757912673,219,0 +170757912723,220,0 +170757912771,221,0 +170757912820,222,0 +170757912868,222,0 +170757912916,223,0 +170757912966,223,0 +170757913013,223,0 +170757913061,223,0 +170757913109,223,0 +170757913157,223,0 +170757913205,217,0 +170757913253,217,0 +170757913301,217,0 +170757913348,219,0 +170757913396,219,0 +170757913446,220,0 +170757913495,220,0 +170757913543,221,0 +170757913591,221,0 +170757913641,222,0 +170757913690,222,0 +170757913738,224,0 +170757913786,224,0 +170757913835,223,0 +170757913885,223,0 +170757913933,223,0 +170757913981,223,0 +170757914029,226,0 +170757914076,225,0 +170757914126,219,0 +170757914173,220,0 +170757914221,221,0 +170757914269,221,0 +170757914317,221,0 +170757914365,222,0 +170757914412,222,0 +170757914460,222,0 +170757914508,223,0 +170757914556,224,0 +170757914604,224,0 +170757914651,223,0 +170757914699,224,0 +170757914747,224,0 +170757914796,224,0 +170757914846,223,0 +170757914895,225,0 +170757914943,222,0 +170757914991,222,0 +170757915039,219,0 +170757915087,219,0 +170757915135,220,0 +170757915183,220,0 +170757915230,220,0 +170757915280,221,0 +170757915328,222,0 +170757915375,222,0 +170757915423,223,0 +170757915471,223,0 +170757915519,223,0 +170757915567,224,0 +170757915615,223,0 +170757915662,223,0 +170757915710,223,0 +170757915758,223,0 +170757915806,227,0 +170757915854,224,0 +170757915901,222,0 +170757915949,218,0 +170757915997,218,0 +170757916045,220,0 +170757916093,220,0 +170757916141,221,0 +170757916191,221,0 +170757916239,221,0 +170757916286,224,0 +170757916334,223,0 +170757916382,223,0 +170757916432,223,0 +170757916480,225,0 +170757916528,226,0 +170757916576,225,0 +170757916623,225,0 +170757916671,224,0 +170757916719,223,0 +170757916767,222,0 +170757916817,217,0 +170757916865,218,0 +170757916913,218,0 +170757916960,219,0 +170757917010,219,0 +170757917058,220,0 +170757917106,220,0 +170757917154,220,0 +170757917202,222,0 +170757917250,222,0 +170757917298,222,0 +170757917345,224,0 +170757917393,224,0 +170757917443,225,0 +170757917491,223,0 +170757917539,223,0 +170757917587,223,0 +170757917634,224,0 +170757917684,223,0 +170757917732,216,0 +170757917780,216,0 +170757917827,217,0 +170757917877,219,0 +170757917925,218,0 +170757917972,218,0 +170757918020,219,0 +170757918068,221,0 +170757918116,220,0 +170757918164,221,0 +170757918212,221,0 +170757918260,222,0 +170757918309,222,0 +170757918357,225,0 +170757918405,225,0 +170757918453,224,0 +170757918501,223,0 +170757918550,222,0 +170757918598,226,0 +170757918646,216,0 +170757918694,215,0 +170757918742,216,0 +170757918791,215,0 +170757918839,216,0 +170757918887,217,0 +170757918935,217,0 +170757918983,218,0 +170757919031,218,0 +170757919079,218,0 +170757919127,223,0 +170757919174,221,0 +170757919222,221,0 +170757919270,222,0 +170757919318,222,0 +170757919366,222,0 +170757919414,222,0 +170757919462,223,0 +170757919511,223,0 +170757919559,215,0 +170757919608,215,0 +170757919656,216,0 +170757919706,217,0 +170757919754,217,0 +170757919803,218,0 +170757919852,218,0 +170757919902,219,0 +170757919950,221,0 +170757919999,220,0 +170757920047,223,0 +170757920095,221,0 +170757920143,223,0 +170757920191,222,0 +170757920239,224,0 +170757920287,224,0 +170757920335,223,0 +170757920384,223,0 +170757920432,217,0 +170757920482,216,0 +170757920531,217,0 +170757920581,217,0 +170757920629,218,0 +170757920677,218,0 +170757920726,220,0 +170757920774,220,0 +170757920822,220,0 +170757920870,220,0 +170757920920,221,0 +170757920967,223,0 +170757921015,222,0 +170757921063,223,0 +170757921111,223,0 +170757921159,223,0 +170757921207,223,0 +170757921255,223,0 +170757921305,222,0 +170757921353,216,0 +170757921400,214,0 +170757921448,215,0 +170757921498,216,0 +170757921546,216,0 +170757921594,217,0 +170757921641,217,0 +170757921691,218,0 +170757921739,219,0 +170757921787,219,0 +170757921836,220,0 +170757921886,220,0 +170757921934,222,0 +170757921982,221,0 +170757922031,222,0 +170757922079,221,0 +170757922127,221,0 +170757922175,223,0 +170757922222,222,0 +170757922270,215,0 +170757922318,215,0 +170757922368,215,0 +170757922416,216,0 +170757922464,216,0 +170757922512,217,0 +170757922560,217,0 +170757922607,218,0 +170757922655,220,0 +170757922703,220,0 +170757922751,218,0 +170757922799,221,0 +170757922847,222,0 +170757922895,223,0 +170757922943,224,0 +170757922992,223,0 +170757923040,223,0 +170757923088,223,0 +170757923136,222,0 +170757923186,215,0 +170757923235,215,0 +170757923283,216,0 +170757923333,216,0 +170757923381,217,0 +170757923428,218,0 +170757923476,218,0 +170757923526,219,0 +170757923575,220,0 +170757923625,221,0 +170757923675,221,0 +170757923724,222,0 +170757923772,222,0 +170757923821,223,0 +170757923871,224,0 +170757923919,231,0 +170757923967,227,0 +170757924016,223,0 +170757924064,216,0 +170757924112,215,0 +170757924160,215,0 +170757924208,215,0 +170757924256,216,0 +170757924304,217,0 +170757924352,217,0 +170757924400,218,0 +170757924447,218,0 +170757924495,219,0 +170757924543,219,0 +170757924593,222,0 +170757924641,221,0 +170757924689,222,0 +170757924737,222,0 +170757924784,224,0 +170757924832,223,0 +170757924882,223,0 +170757924930,225,0 +170757924978,216,0 +170757925026,215,0 +170757925074,215,0 +170757925122,216,0 +170757925170,218,0 +170757925218,218,0 +170757925265,218,0 +170757925314,219,0 +170757925363,219,0 +170757925411,218,0 +170757925459,218,0 +170757925507,219,0 +170757925555,219,0 +170757925603,222,0 +170757925651,223,0 +170757925699,222,0 +170757925747,223,0 +170757925794,225,0 +170757925842,223,0 +170757925890,216,0 +170757925938,216,0 +170757925988,217,0 +170757926037,217,0 +170757926085,218,0 +170757926133,218,0 +170757926181,219,0 +170757926231,220,0 +170757926278,220,0 +170757926328,221,0 +170757926377,221,0 +170757926427,224,0 +170757926475,222,0 +170757926523,222,0 +170757926571,224,0 +170757926619,224,0 +170757926666,223,0 +170757926716,224,0 +170757926764,220,0 +170757926812,215,0 +170757926860,215,0 +170757926909,215,0 +170757926959,217,0 +170757927007,217,0 +170757927055,218,0 +170757927103,218,0 +170757927151,218,0 +170757927200,219,0 +170757927248,220,0 +170757927298,220,0 +170757927346,221,0 +170757927395,223,0 +170757927443,224,0 +170757927491,222,0 +170757927539,222,0 +170757927587,223,0 +170757927634,223,0 +170757927684,216,0 +170757927734,215,0 +170757927781,216,0 +170757927831,217,0 +170757927879,218,0 +170757927928,218,0 +170757927976,218,0 +170757928024,219,0 +170757928072,218,0 +170757928120,217,0 +170757928168,218,0 +170757928216,222,0 +170757928264,223,0 +170757928312,223,0 +170757928361,223,0 +170757928411,224,0 +170757928459,223,0 +170757928507,223,0 +170757928556,222,0 +170757928606,216,0 +170757928654,214,0 +170757928702,216,0 +170757928751,216,0 +170757928799,216,0 +170757928847,218,0 +170757928897,218,0 +170757928945,218,0 +170757928993,219,0 +170757929042,220,0 +170757929090,221,0 +170757929138,221,0 +170757929186,221,0 +170757929235,222,0 +170757929283,223,0 +170757929331,222,0 +170757929379,223,0 +170757929427,222,0 +170757929475,222,0 +170757929525,216,0 +170757929572,217,0 +170757929620,217,0 +170757929668,219,0 +170757929716,219,0 +170757929766,219,0 +170757929814,220,0 +170757929863,221,0 +170757929911,221,0 +170757929959,222,0 +170757930008,222,0 +170757930056,223,0 +170757930106,223,0 +170757930154,223,0 +170757930201,223,0 +170757930249,223,0 +170757930297,223,0 +170757930347,223,0 +170757930395,218,0 +170757930442,218,0 +170757930492,219,0 +170757930541,219,0 +170757930589,220,0 +170757930637,221,0 +170757930687,222,0 +170757930734,223,0 +170757930782,223,0 +170757930830,223,0 +170757930878,224,0 +170757930928,223,0 +170757930975,223,0 +170757931023,224,0 +170757931073,224,0 +170757931121,224,0 +170757931169,223,0 +170757931217,223,0 +170757931264,223,0 +170757931312,217,0 +170757931360,217,0 +170757931408,218,0 +170757931456,219,0 +170757931505,219,0 +170757931553,219,0 +170757931601,220,0 +170757931649,220,0 +170757931697,221,0 +170757931745,223,0 +170757931792,223,0 +170757931840,224,0 +170757931888,223,0 +170757931936,223,0 +170757931984,224,0 +170757932033,223,0 +170757932081,223,0 +170757932129,223,0 +170757932176,222,0 +170757932224,216,0 +170757932272,216,0 +170757932321,217,0 +170757932369,217,0 +170757932417,218,0 +170757932465,219,0 +170757932513,219,0 +170757932561,220,0 +170757932610,220,0 +170757932658,221,0 +170757932706,221,0 +170757932754,221,0 +170757932801,222,0 +170757932849,222,0 +170757932897,223,0 +170757932945,223,0 +170757932993,222,0 +170757933040,222,0 +170757933088,222,0 +170757933136,216,0 +170757933184,217,0 +170757933234,218,0 +170757933282,218,0 +170757933331,218,0 +170757933381,219,0 +170757933429,220,0 +170757933478,220,0 +170757933526,220,0 +170757933575,222,0 +170757933625,222,0 +170757933673,223,0 +170757933722,222,0 +170757933770,223,0 +170757933820,223,0 +170757933867,223,0 +170757933915,224,0 +170757933963,223,0 +170757934011,216,0 +170757934059,215,0 +170757934107,215,0 +170757934155,217,0 +170757934203,218,0 +170757934251,217,0 +170757934299,219,0 +170757934348,218,0 +170757934398,219,0 +170757934447,220,0 +170757934497,221,0 +170757934544,222,0 +170757934594,222,0 +170757934642,222,0 +170757934690,223,0 +170757934739,223,0 +170757934787,224,0 +170757934835,224,0 +170757934885,222,0 +170757934933,215,0 +170757934981,215,0 +170757935029,215,0 +170757935077,216,0 +170757935125,217,0 +170757935173,217,0 +170757935222,218,0 +170757935272,218,0 +170757935321,218,0 +170757935369,219,0 +170757935417,219,0 +170757935465,221,0 +170757935514,220,0 +170757935564,222,0 +170757935611,224,0 +170757935659,223,0 +170757935707,222,0 +170757935757,223,0 +170757935804,223,0 +170757935852,216,0 +170757935900,216,0 +170757935948,217,0 +170757935996,217,0 +170757936044,218,0 +170757936092,218,0 +170757936139,219,0 +170757936187,219,0 +170757936237,220,0 +170757936286,221,0 +170757936334,221,0 +170757936382,221,0 +170757936430,222,0 +170757936480,222,0 +170757936528,222,0 +170757936575,223,0 +170757936625,223,0 +170757936674,223,0 +170757936722,216,0 +170757936770,215,0 +170757936818,216,0 +170757936866,217,0 +170757936914,217,0 +170757936962,218,0 +170757937010,219,0 +170757937058,219,0 +170757937106,220,0 +170757937154,220,0 +170757937202,221,0 +170757937251,224,0 +170757937300,223,0 +170757937348,224,0 +170757937396,223,0 +170757937444,224,0 +170757937494,223,0 +170757937541,224,0 +170757937589,223,0 +170757937639,216,0 +170757937687,216,0 +170757937735,216,0 +170757937784,217,0 +170757937834,218,0 +170757937883,218,0 +170757937931,219,0 +170757937981,219,0 +170757938031,220,0 +170757938078,221,0 +170757938126,223,0 +170757938176,223,0 +170757938224,222,0 +170757938272,223,0 +170757938320,223,0 +170757938368,224,0 +170757938417,223,0 +170757938467,223,0 +170757938514,223,0 +170757938562,215,0 +170757938610,216,0 +170757938658,217,0 +170757938706,218,0 +170757938754,218,0 +170757938802,219,0 +170757938851,220,0 +170757938899,220,0 +170757938947,221,0 +170757938996,221,0 +170757939046,222,0 +170757939094,221,0 +170757939141,223,0 +170757939189,223,0 +170757939239,223,0 +170757939287,224,0 +170757939335,223,0 +170757939384,223,0 +170757939434,217,0 +170757939482,215,0 +170757939529,216,0 +170757939579,216,0 +170757939627,217,0 +170757939675,217,0 +170757939723,218,0 +170757939771,219,0 +170757939819,220,0 +170757939868,220,0 +170757939916,221,0 +170757939966,221,0 +170757940015,222,0 +170757940065,223,0 +170757940114,223,0 +170757940162,224,0 +170757940210,224,0 +170757940258,223,0 +170757940307,223,0 +170757940357,216,0 +170757940405,216,0 +170757940454,216,0 +170757940504,217,0 +170757940552,217,0 +170757940601,218,0 +170757940649,219,0 +170757940699,219,0 +170757940747,220,0 +170757940795,221,0 +170757940843,222,0 +170757940891,222,0 +170757940939,223,0 +170757940988,222,0 +170757941036,223,0 +170757941084,224,0 +170757941132,223,0 +170757941179,224,0 +170757941227,222,0 +170757941277,215,0 +170757941325,216,0 +170757941373,216,0 +170757941421,217,0 +170757941469,217,0 +170757941518,218,0 +170757941566,218,0 +170757941614,219,0 +170757941662,219,0 +170757941711,221,0 +170757941759,220,0 +170757941809,221,0 +170757941858,222,0 +170757941906,223,0 +170757941954,223,0 +170757942002,223,0 +170757942050,222,0 +170757942098,222,0 +170757942146,221,0 +170757942196,214,0 +170757942243,215,0 +170757942291,217,0 +170757942339,218,0 +170757942387,217,0 +170757942435,218,0 +170757942485,218,0 +170757942533,218,0 +170757942581,220,0 +170757942628,221,0 +170757942676,221,0 +170757942724,221,0 +170757942772,221,0 +170757942822,221,0 +170757942870,222,0 +170757942919,225,0 +170757942969,223,0 +170757943017,223,0 +170757943066,216,0 +170757943114,215,0 +170757943164,215,0 +170757943212,216,0 +170757943261,217,0 +170757943311,218,0 +170757943359,219,0 +170757943408,219,0 +170757943456,220,0 +170757943506,219,0 +170757943554,220,0 +170757943603,221,0 +170757943653,224,0 +170757943701,223,0 +170757943750,224,0 +170757943800,223,0 +170757943847,223,0 +170757943895,223,0 +170757943943,223,0 +170757943991,216,0 +170757944039,215,0 +170757944087,216,0 +170757944135,216,0 +170757944184,216,0 +170757944234,217,0 +170757944283,218,0 +170757944331,218,0 +170757944381,219,0 +170757944430,221,0 +170757944480,217,0 +170757944528,221,0 +170757944577,221,0 +170757944627,221,0 +170757944675,223,0 +170757944724,223,0 +170757944772,222,0 +170757944822,223,0 +170757944870,216,0 +170757944918,215,0 +170757944966,215,0 +170757945014,216,0 +170757945062,218,0 +170757945111,219,0 +170757945159,219,0 +170757945208,219,0 +170757945256,220,0 +170757945306,221,0 +170757945355,221,0 +170757945405,221,0 +170757945453,222,0 +170757945501,223,0 +170757945549,222,0 +170757945598,220,0 +170757945648,223,0 +170757945696,223,0 +170757945744,223,0 +170757945793,216,0 +170757945841,216,0 +170757945891,217,0 +170757945939,217,0 +170757945986,218,0 +170757946036,219,0 +170757946084,221,0 +170757946132,220,0 +170757946180,221,0 +170757946228,221,0 +170757946276,222,0 +170757946323,222,0 +170757946373,223,0 +170757946421,225,0 +170757946469,224,0 +170757946517,225,0 +170757946565,223,0 +170757946612,224,0 +170757946660,222,0 +170757946710,217,0 +170757946758,217,0 +170757946807,218,0 +170757946855,219,0 +170757946905,220,0 +170757946954,220,0 +170757947002,221,0 +170757947050,222,0 +170757947100,222,0 +170757947147,222,0 +170757947195,223,0 +170757947245,223,0 +170757947294,225,0 +170757947342,224,0 +170757947390,223,0 +170757947440,224,0 +170757947488,224,0 +170757947537,222,0 +170757947587,218,0 +170757947635,217,0 +170757947684,218,0 +170757947732,219,0 +170757947782,220,0 +170757947829,221,0 +170757947877,221,0 +170757947925,221,0 +170757947973,222,0 +170757948021,222,0 +170757948069,223,0 +170757948117,223,0 +170757948165,224,0 +170757948215,223,0 +170757948264,223,0 +170757948312,224,0 +170757948360,223,0 +170757948409,224,0 +170757948459,223,0 +170757948508,216,0 +170757948558,215,0 +170757948606,215,0 +170757948655,216,0 +170757948703,217,0 +170757948751,218,0 +170757948800,219,0 +170757948848,219,0 +170757948896,221,0 +170757948944,221,0 +170757948992,221,0 +170757949040,222,0 +170757949088,223,0 +170757949136,222,0 +170757949184,222,0 +170757949233,222,0 +170757949283,222,0 +170757949331,222,0 +170757949380,224,0 +170757949428,215,0 +170757949476,214,0 +170757949524,215,0 +170757949572,215,0 +170757949620,215,0 +170757949668,215,0 +170757949715,216,0 +170757949763,217,0 +170757949811,218,0 +170757949859,218,0 +170757949907,219,0 +170757949955,220,0 +170757950003,222,0 +170757950050,221,0 +170757950098,221,0 +170757950146,221,0 +170757950194,222,0 +170757950244,222,0 +170757950292,216,0 +170757950340,215,0 +170757950389,215,0 +170757950439,216,0 +170757950488,217,0 +170757950538,218,0 +170757950587,218,0 +170757950637,219,0 +170757950687,219,0 +170757950736,219,0 +170757950785,221,0 +170757950833,221,0 +170757950881,221,0 +170757950931,222,0 +170757950980,222,0 +170757951028,223,0 +170757951076,223,0 +170757951124,223,0 +170757951174,224,0 +170757951222,216,0 +170757951269,215,0 +170757951317,216,0 +170757951367,217,0 +170757951415,217,0 +170757951463,217,0 +170757951510,218,0 +170757951558,220,0 +170757951606,219,0 +170757951656,221,0 +170757951705,222,0 +170757951753,220,0 +170757951801,225,0 +170757951849,224,0 +170757951897,224,0 +170757951945,223,0 +170757951993,224,0 +170757952042,224,0 +170757952092,222,0 +170757952140,215,0 +170757952188,215,0 +170757952236,215,0 +170757952284,216,0 +170757952332,217,0 +170757952379,218,0 +170757952429,218,0 +170757952477,219,0 +170757952525,219,0 +170757952573,220,0 +170757952622,221,0 +170757952672,221,0 +170757952721,222,0 +170757952771,223,0 +170757952819,222,0 +170757952867,222,0 +170757952915,223,0 +170757952963,223,0 +170757953012,217,0 +170757953062,215,0 +170757953109,215,0 +170757953159,216,0 +170757953207,217,0 +170757953256,218,0 +170757953304,218,0 +170757953352,219,0 +170757953400,219,0 +170757953448,219,0 +170757953497,220,0 +170757953547,221,0 +170757953595,221,0 +170757953644,221,0 +170757953692,222,0 +170757953740,223,0 +170757953788,222,0 +170757953838,223,0 +170757953885,223,0 +170757953933,216,0 +170757953981,216,0 +170757954031,217,0 +170757954080,217,0 +170757954128,218,0 +170757954177,218,0 +170757954225,220,0 +170757954275,219,0 +170757954323,222,0 +170757954371,222,0 +170757954419,224,0 +170757954466,223,0 +170757954516,223,0 +170757954564,224,0 +170757954612,223,0 +170757954660,223,0 +170757954708,223,0 +170757954755,223,0 +170757954803,223,0 +170757954851,216,0 +170757954899,216,0 +170757954947,217,0 +170757954995,218,0 +170757955042,219,0 +170757955090,219,0 +170757955138,219,0 +170757955188,220,0 +170757955236,220,0 +170757955283,222,0 +170757955333,222,0 +170757955381,222,0 +170757955428,222,0 +170757955476,223,0 +170757955524,224,0 +170757955572,223,0 +170757955620,223,0 +170757955668,224,0 +170757955717,223,0 +170757955765,215,0 +170757955813,216,0 +170757955861,217,0 +170757955910,218,0 +170757955958,219,0 +170757956006,219,0 +170757956056,219,0 +170757956104,220,0 +170757956152,220,0 +170757956201,222,0 +170757956251,221,0 +170757956300,223,0 +170757956348,223,0 +170757956396,224,0 +170757956444,224,0 +170757956493,224,0 +170757956543,223,0 +170757956591,223,0 +170757956640,217,0 +170757956688,217,0 +170757956736,217,0 +170757956784,220,0 +170757956832,218,0 +170757956880,219,0 +170757956928,220,0 +170757956977,220,0 +170757957025,221,0 +170757957073,221,0 +170757957121,221,0 +170757957170,223,0 +170757957218,222,0 +170757957266,222,0 +170757957314,223,0 +170757957362,224,0 +170757957410,225,0 +170757957458,222,0 +170757957506,223,0 +170757957553,216,0 +170757957601,216,0 +170757957649,216,0 +170757957697,218,0 +170757957745,218,0 +170757957795,219,0 +170757957843,219,0 +170757957892,219,0 +170757957942,219,0 +170757957990,221,0 +170757958038,221,0 +170757958085,222,0 +170757958133,223,0 +170757958181,224,0 +170757958231,223,0 +170757958279,223,0 +170757958326,223,0 +170757958374,223,0 +170757958422,224,0 +170757958470,219,0 +170757958518,219,0 +170757958566,219,0 +170757958613,220,0 +170757958661,221,0 +170757958709,221,0 +170757958757,222,0 +170757958805,222,0 +170757958853,222,0 +170757958902,223,0 +170757958950,223,0 +170757958998,224,0 +170757959046,226,0 +170757959094,224,0 +170757959142,226,0 +170757959190,224,0 +170757959238,224,0 +170757959287,223,0 +170757959335,223,0 +170757959383,220,0 +170757959431,220,0 +170757959479,220,0 +170757959527,221,0 +170757959576,220,0 +170757959626,222,0 +170757959674,222,0 +170757959723,225,0 +170757959771,224,0 +170757959819,223,0 +170757959869,224,0 +170757959917,224,0 +170757959965,226,0 +170757960013,223,0 +170757960061,224,0 +170757960110,223,0 +170757960158,224,0 +170757960208,223,0 +170757960257,218,0 +170757960305,218,0 +170757960353,218,0 +170757960401,218,0 +170757960449,220,0 +170757960498,220,0 +170757960546,221,0 +170757960596,222,0 +170757960643,222,0 +170757960691,223,0 +170757960739,221,0 +170757960787,222,0 +170757960835,223,0 +170757960883,223,0 +170757960931,224,0 +170757960979,224,0 +170757961027,223,0 +170757961075,223,0 +170757961122,226,0 +170757961172,217,0 +170757961220,214,0 +170757961268,215,0 +170757961316,217,0 +170757961365,218,0 +170757961413,218,0 +170757961461,217,0 +170757961509,218,0 +170757961558,219,0 +170757961606,219,0 +170757961656,220,0 +170757961704,220,0 +170757961753,221,0 +170757961803,222,0 +170757961851,221,0 +170757961899,220,0 +170757961947,220,0 +170757961994,222,0 +170757962042,223,0 +170757962090,215,0 +170757962138,215,0 +170757962188,215,0 +170757962236,216,0 +170757962284,216,0 +170757962332,217,0 +170757962380,216,0 +170757962427,218,0 +170757962475,217,0 +170757962523,218,0 +170757962571,218,0 +170757962619,219,0 +170757962667,220,0 +170757962715,229,0 +170757962765,224,0 +170757962813,222,0 +170757962861,221,0 +170757962909,223,0 +170757962958,221,0 +170757963006,214,0 +170757963054,216,0 +170757963102,217,0 +170757963151,218,0 +170757963199,219,0 +170757963247,218,0 +170757963295,220,0 +170757963343,220,0 +170757963391,221,0 +170757963439,222,0 +170757963487,223,0 +170757963535,223,0 +170757963583,223,0 +170757963631,224,0 +170757963678,223,0 +170757963726,223,0 +170757963774,223,0 +170757963822,223,0 +170757963870,216,0 +170757963918,217,0 +170757963965,217,0 +170757964013,219,0 +170757964061,219,0 +170757964111,221,0 +170757964160,221,0 +170757964208,222,0 +170757964256,221,0 +170757964305,223,0 +170757964353,224,0 +170757964401,224,0 +170757964449,223,0 +170757964496,223,0 +170757964544,224,0 +170757964592,224,0 +170757964640,225,0 +170757964688,224,0 +170757964736,223,0 +170757964784,216,0 +170757964831,215,0 +170757964881,216,0 +170757964929,217,0 +170757964976,218,0 +170757965024,218,0 +170757965072,218,0 +170757965120,219,0 +170757965168,220,0 +170757965216,221,0 +170757965263,221,0 +170757965311,222,0 +170757965361,222,0 +170757965409,223,0 +170757965458,222,0 +170757965506,222,0 +170757965554,223,0 +170757965602,222,0 +170757965651,222,0 +170757965699,216,0 +170757965748,215,0 +170757965796,216,0 +170757965844,217,0 +170757965892,218,0 +170757965940,218,0 +170757965989,218,0 +170757966037,219,0 +170757966085,220,0 +170757966133,220,0 +170757966181,221,0 +170757966230,222,0 +170757966278,223,0 +170757966326,222,0 +170757966375,222,0 +170757966423,224,0 +170757966471,224,0 +170757966519,224,0 +170757966567,222,0 +170757966617,215,0 +170757966665,215,0 +170757966713,216,0 +170757966762,217,0 +170757966810,217,0 +170757966860,218,0 +170757966908,218,0 +170757966956,218,0 +170757967004,219,0 +170757967052,220,0 +170757967100,222,0 +170757967148,221,0 +170757967196,223,0 +170757967245,221,0 +170757967293,222,0 +170757967341,222,0 +170757967391,223,0 +170757967438,222,0 +170757967486,218,0 +170757967536,215,0 +170757967585,215,0 +170757967633,216,0 +170757967681,217,0 +170757967729,217,0 +170757967779,218,0 +170757967828,219,0 +170757967878,219,0 +170757967926,220,0 +170757967975,220,0 +170757968023,221,0 +170757968073,221,0 +170757968121,222,0 +170757968169,223,0 +170757968218,223,0 +170757968266,223,0 +170757968316,222,0 +170757968363,224,0 +170757968411,216,0 +170757968459,215,0 +170757968507,215,0 +170757968555,215,0 +170757968603,216,0 +170757968651,217,0 +170757968699,218,0 +170757968748,218,0 +170757968798,219,0 +170757968847,220,0 +170757968895,220,0 +170757968943,221,0 +170757968991,221,0 +170757969038,224,0 +170757969086,222,0 +170757969134,224,0 +170757969184,222,0 +170757969231,223,0 +170757969281,223,0 +170757969331,215,0 +170757969378,214,0 +170757969426,214,0 +170757969474,215,0 +170757969524,215,0 +170757969571,215,0 +170757969619,216,0 +170757969667,216,0 +170757969715,217,0 +170757969763,219,0 +170757969811,218,0 +170757969859,218,0 +170757969908,220,0 +170757969956,219,0 +170757970004,220,0 +170757970054,219,0 +170757970102,219,0 +170757970150,222,0 +170757970198,223,0 +170757970246,215,0 +170757970294,215,0 +170757970342,215,0 +170757970390,214,0 +170757970438,215,0 +170757970486,216,0 +170757970533,217,0 +170757970581,218,0 +170757970629,219,0 +170757970677,221,0 +170757970726,220,0 +170757970774,221,0 +170757970824,221,0 +170757970872,222,0 +170757970919,222,0 +170757970967,222,0 +170757971015,222,0 +170757971063,223,0 +170757971111,219,0 +170757971159,215,0 +170757971208,216,0 +170757971256,217,0 +170757971305,217,0 +170757971353,218,0 +170757971401,219,0 +170757971449,219,0 +170757971499,220,0 +170757971547,221,0 +170757971596,222,0 +170757971644,223,0 +170757971694,221,0 +170757971743,224,0 +170757971793,222,0 +170757971841,224,0 +170757971889,223,0 +170757971937,222,0 +170757971985,223,0 +170757972033,217,0 +170757972081,216,0 +170757972130,217,0 +170757972178,218,0 +170757972228,219,0 +170757972276,219,0 +170757972325,219,0 +170757972375,220,0 +170757972423,220,0 +170757972471,220,0 +170757972519,221,0 +170757972568,221,0 +170757972618,221,0 +170757972667,224,0 +170757972715,224,0 +170757972764,223,0 +170757972812,224,0 +170757972860,223,0 +170757972908,223,0 +170757972956,216,0 +170757973004,216,0 +170757973052,218,0 +170757973100,218,0 +170757973148,220,0 +170757973196,219,0 +170757973244,220,0 +170757973292,220,0 +170757973340,221,0 +170757973389,221,0 +170757973437,223,0 +170757973485,224,0 +170757973533,223,0 +170757973583,224,0 +170757973632,224,0 +170757973680,230,0 +170757973728,224,0 +170757973776,223,0 +170757973825,222,0 +170757973873,215,0 +170757973921,216,0 +170757973971,217,0 +170757974019,218,0 +170757974067,218,0 +170757974115,218,0 +170757974162,218,0 +170757974210,220,0 +170757974260,221,0 +170757974308,221,0 +170757974356,221,0 +170757974405,222,0 +170757974455,222,0 +170757974505,222,0 +170757974552,224,0 +170757974600,224,0 +170757974648,223,0 +170757974696,223,0 +170757974744,216,0 +170757974792,216,0 +170757974840,218,0 +170757974890,218,0 +170757974938,218,0 +170757974985,218,0 +170757975035,219,0 +170757975084,220,0 +170757975132,221,0 +170757975180,221,0 +170757975228,221,0 +170757975276,222,0 +170757975326,223,0 +170757975374,222,0 +170757975421,224,0 +170757975469,222,0 +170757975517,224,0 +170757975565,223,0 +170757975613,223,0 +170757975661,217,0 +170757975709,216,0 +170757975756,217,0 +170757975804,218,0 +170757975854,219,0 +170757975903,219,0 +170757975953,220,0 +170757976001,220,0 +170757976049,220,0 +170757976098,221,0 +170757976146,222,0 +170757976194,222,0 +170757976242,222,0 +170757976290,223,0 +170757976338,223,0 +170757976386,223,0 +170757976434,222,0 +170757976481,223,0 +170757976529,224,0 +170757976578,216,0 +170757976625,216,0 +170757976673,217,0 +170757976723,218,0 +170757976772,219,0 +170757976822,219,0 +170757976871,217,0 +170757976921,220,0 +170757976971,220,0 +170757977020,221,0 +170757977068,222,0 +170757977117,223,0 +170757977167,222,0 +170757977216,223,0 +170757977264,222,0 +170757977312,222,0 +170757977360,223,0 +170757977410,222,0 +170757977457,217,0 +170757977505,216,0 +170757977553,220,0 +170757977601,217,0 +170757977649,218,0 +170757977697,218,0 +170757977744,219,0 +170757977792,220,0 +170757977842,220,0 +170757977890,222,0 +170757977937,223,0 +170757977985,226,0 +170757978033,222,0 +170757978081,223,0 +170757978129,225,0 +170757978177,224,0 +170757978227,225,0 +170757978276,224,0 +170757978324,223,0 +170757978372,217,0 +170757978420,216,0 +170757978468,217,0 +170757978517,218,0 +170757978565,218,0 +170757978613,218,0 +170757978661,218,0 +170757978709,219,0 +170757978757,220,0 +170757978805,222,0 +170757978855,220,0 +170757978904,222,0 +170757978952,222,0 +170757979000,222,0 +170757979048,223,0 +170757979096,224,0 +170757979145,224,0 +170757979193,224,0 +170757979241,224,0 +170757979289,216,0 +170757979337,217,0 +170757979385,217,0 +170757979435,218,0 +170757979482,220,0 +170757979530,219,0 +170757979578,219,0 +170757979626,221,0 +170757979676,221,0 +170757979725,221,0 +170757979773,222,0 +170757979821,223,0 +170757979869,224,0 +170757979919,223,0 +170757979968,224,0 +170757980016,224,0 +170757980064,224,0 +170757980112,223,0 +170757980161,222,0 +170757980209,218,0 +170757980257,218,0 +170757980305,219,0 +170757980353,220,0 +170757980403,221,0 +170757980452,221,0 +170757980502,221,0 +170757980550,221,0 +170757980598,223,0 +170757980646,224,0 +170757980695,224,0 +170757980743,224,0 +170757980793,224,0 +170757980840,224,0 +170757980888,224,0 +170757980936,223,0 +170757980984,223,0 +170757981033,223,0 +170757981081,218,0 +170757981131,218,0 +170757981179,219,0 +170757981227,220,0 +170757981275,220,0 +170757981323,221,0 +170757981370,222,0 +170757981418,222,0 +170757981466,222,0 +170757981514,222,0 +170757981562,224,0 +170757981610,223,0 +170757981658,223,0 +170757981705,224,0 +170757981753,224,0 +170757981801,225,0 +170757981849,224,0 +170757981897,224,0 +170757981945,224,0 +170757981993,216,0 +170757982041,215,0 +170757982089,216,0 +170757982138,217,0 +170757982186,218,0 +170757982236,219,0 +170757982284,219,0 +170757982332,220,0 +170757982381,221,0 +170757982429,220,0 +170757982479,222,0 +170757982527,223,0 +170757982575,222,0 +170757982624,223,0 +170757982672,224,0 +170757982720,223,0 +170757982768,224,0 +170757982817,223,0 +170757982867,222,0 +170757982915,214,0 +170757982964,214,0 +170757983012,214,0 +170757983060,214,0 +170757983110,214,0 +170757983159,215,0 +170757983209,215,0 +170757983257,215,0 +170757983306,216,0 +170757983354,217,0 +170757983404,217,0 +170757983453,218,0 +170757983501,218,0 +170757983551,219,0 +170757983599,220,0 +170757983648,220,0 +170757983696,220,0 +170757983746,223,0 +170757983795,216,0 +170757983845,215,0 +170757983894,215,0 +170757983942,215,0 +170757983990,216,0 +170757984040,216,0 +170757984089,216,0 +170757984139,216,0 +170757984188,217,0 +170757984236,219,0 +170757984284,220,0 +170757984332,221,0 +170757984380,221,0 +170757984428,222,0 +170757984475,223,0 +170757984523,223,0 +170757984571,223,0 +170757984619,223,0 +170757984667,222,0 +170757984715,216,0 +170757984763,216,0 +170757984811,216,0 +170757984861,217,0 +170757984908,217,0 +170757984956,218,0 +170757985004,218,0 +170757985052,218,0 +170757985102,219,0 +170757985151,219,0 +170757985199,220,0 +170757985249,221,0 +170757985297,222,0 +170757985344,224,0 +170757985392,223,0 +170757985440,223,0 +170757985490,223,0 +170757985538,223,0 +170757985586,222,0 +170757985634,216,0 +170757985683,217,0 +170757985733,217,0 +170757985781,218,0 +170757985828,218,0 +170757985876,220,0 +170757985924,220,0 +170757985972,220,0 +170757986020,221,0 +170757986068,221,0 +170757986116,223,0 +170757986164,221,0 +170757986212,223,0 +170757986260,223,0 +170757986308,223,0 +170757986356,223,0 +170757986404,223,0 +170757986452,223,0 +170757986499,220,0 +170757986547,216,0 +170757986595,217,0 +170757986643,218,0 +170757986691,217,0 +170757986739,218,0 +170757986786,218,0 +170757986834,219,0 +170757986882,219,0 +170757986930,220,0 +170757986978,221,0 +170757987026,222,0 +170757987074,221,0 +170757987121,222,0 +170757987169,223,0 +170757987217,222,0 +170757987265,222,0 +170757987313,222,0 +170757987361,225,0 +170757987410,218,0 +170757987458,217,0 +170757987506,218,0 +170757987554,219,0 +170757987603,220,0 +170757987653,220,0 +170757987701,221,0 +170757987749,220,0 +170757987796,221,0 +170757987844,221,0 +170757987892,222,0 +170757987940,222,0 +170757987989,223,0 +170757988037,222,0 +170757988085,223,0 +170757988135,224,0 +170757988184,225,0 +170757988232,224,0 +170757988280,223,0 +170757988327,217,0 +170757988375,217,0 +170757988423,217,0 +170757988471,219,0 +170757988519,220,0 +170757988567,219,0 +170757988616,221,0 +170757988664,224,0 +170757988712,223,0 +170757988760,222,0 +170757988808,222,0 +170757988856,223,0 +170757988905,223,0 +170757988953,225,0 +170757989001,223,0 +170757989048,224,0 +170757989096,224,0 +170757989144,224,0 +170757989192,223,0 +170757989241,217,0 +170757989291,217,0 +170757989339,218,0 +170757989387,218,0 +170757989435,219,0 +170757989483,219,0 +170757989531,219,0 +170757989579,220,0 +170757989627,220,0 +170757989675,222,0 +170757989724,222,0 +170757989772,231,0 +170757989820,229,0 +170757989870,223,0 +170757989918,224,0 +170757989967,224,0 +170757990017,223,0 +170757990066,223,0 +170757990114,221,0 +170757990164,215,0 +170757990212,216,0 +170757990260,217,0 +170757990309,217,0 +170757990357,219,0 +170757990407,219,0 +170757990456,220,0 +170757990506,220,0 +170757990554,221,0 +170757990602,221,0 +170757990651,222,0 +170757990701,222,0 +170757990749,222,0 +170757990798,223,0 +170757990846,222,0 +170757990894,223,0 +170757990942,222,0 +170757990990,223,0 +170757991039,216,0 +170757991089,215,0 +170757991138,215,0 +170757991188,216,0 +170757991236,217,0 +170757991285,217,0 +170757991333,218,0 +170757991381,218,0 +170757991429,219,0 +170757991477,219,0 +170757991525,220,0 +170757991573,221,0 +170757991621,223,0 +170757991669,223,0 +170757991717,223,0 +170757991766,223,0 +170757991816,224,0 +170757991864,223,0 +170757991913,223,0 +170757991961,215,0 +170757992009,215,0 +170757992057,216,0 +170757992105,217,0 +170757992153,217,0 +170757992201,217,0 +170757992249,218,0 +170757992298,219,0 +170757992346,219,0 +170757992394,220,0 +170757992442,219,0 +170757992490,221,0 +170757992538,222,0 +170757992586,222,0 +170757992634,223,0 +170757992682,222,0 +170757992731,223,0 +170757992779,221,0 +170757992829,222,0 +170757992876,215,0 +170757992924,216,0 +170757992974,216,0 +170757993022,218,0 +170757993070,218,0 +170757993118,218,0 +170757993166,219,0 +170757993214,220,0 +170757993261,221,0 +170757993311,221,0 +170757993359,221,0 +170757993408,221,0 +170757993456,221,0 +170757993506,222,0 +170757993554,222,0 +170757993602,223,0 +170757993651,221,0 +170757993701,223,0 +170757993750,216,0 +170757993798,215,0 +170757993846,215,0 +170757993894,215,0 +170757993942,216,0 +170757993990,217,0 +170757994038,218,0 +170757994086,218,0 +170757994135,219,0 +170757994183,219,0 +170757994231,219,0 +170757994279,219,0 +170757994328,220,0 +170757994376,221,0 +170757994424,221,0 +170757994472,221,0 +170757994522,223,0 +170757994570,222,0 +170757994619,223,0 +170757994667,216,0 +170757994717,215,0 +170757994765,215,0 +170757994814,215,0 +170757994862,216,0 +170757994912,216,0 +170757994960,215,0 +170757995008,216,0 +170757995056,216,0 +170757995105,217,0 +170757995155,219,0 +170757995203,218,0 +170757995250,219,0 +170757995300,219,0 +170757995348,219,0 +170757995396,219,0 +170757995445,220,0 +170757995493,222,0 +170757995541,224,0 +170757995591,215,0 +170757995639,215,0 +170757995687,216,0 +170757995736,218,0 +170757995784,217,0 +170757995834,217,0 +170757995881,218,0 +170757995929,218,0 +170757995979,219,0 +170757996027,220,0 +170757996075,221,0 +170757996123,221,0 +170757996172,222,0 +170757996220,221,0 +170757996268,223,0 +170757996316,223,0 +170757996364,224,0 +170757996412,223,0 +170757996461,216,0 +170757996509,215,0 +170757996557,216,0 +170757996605,217,0 +170757996653,219,0 +170757996703,218,0 +170757996752,219,0 +170757996800,220,0 +170757996850,220,0 +170757996898,221,0 +170757996947,221,0 +170757996997,221,0 +170757997045,222,0 +170757997092,222,0 +170757997142,222,0 +170757997191,223,0 +170757997239,224,0 +170757997289,223,0 +170757997337,222,0 +170757997385,217,0 +170757997433,217,0 +170757997482,217,0 +170757997530,218,0 +170757997578,219,0 +170757997626,220,0 +170757997676,220,0 +170757997724,221,0 +170757997772,221,0 +170757997819,222,0 +170757997867,222,0 +170757997915,223,0 +170757997963,223,0 +170757998013,224,0 +170757998061,224,0 +170757998109,223,0 +170757998156,223,0 +170757998206,224,0 +170757998255,223,0 +170757998303,217,0 +170757998351,217,0 +170757998399,217,0 +170757998447,218,0 +170757998495,219,0 +170757998544,219,0 +170757998592,221,0 +170757998640,221,0 +170757998690,221,0 +170757998738,222,0 +170757998785,222,0 +170757998833,223,0 +170757998881,222,0 +170757998929,223,0 +170757998979,224,0 +170757999027,224,0 +170757999076,223,0 +170757999124,223,0 +170757999172,222,0 +170757999220,214,0 +170757999269,215,0 +170757999317,216,0 +170757999365,217,0 +170757999413,218,0 +170757999463,218,0 +170757999511,219,0 +170757999558,220,0 +170757999606,220,0 +170757999656,220,0 +170757999704,220,0 +170757999753,221,0 +170757999803,222,0 +170757999851,221,0 +170757999899,221,0 +170757999946,221,0 +170757999994,221,0 +170758000042,223,0 +170758000090,216,0 +170758000140,215,0 +170758000188,215,0 +170758000236,216,0 +170758000284,217,0 +170758000332,217,0 +170758000380,218,0 +170758000427,218,0 +170758000475,218,0 +170758000525,219,0 +170758000575,220,0 +170758000624,221,0 +170758000672,222,0 +170758000720,223,0 +170758000768,222,0 +170758000818,223,0 +170758000867,223,0 +170758000915,223,0 +170758000963,223,0 +170758001012,216,0 +170758001060,216,0 +170758001108,217,0 +170758001156,217,0 +170758001204,218,0 +170758001252,218,0 +170758001301,219,0 +170758001351,219,0 +170758001399,220,0 +170758001447,220,0 +170758001495,221,0 +170758001545,224,0 +170758001594,222,0 +170758001642,222,0 +170758001692,222,0 +170758001740,225,0 +170758001788,225,0 +170758001837,224,0 +170758001885,222,0 +170758001933,216,0 +170758001981,216,0 +170758002030,217,0 +170758002080,217,0 +170758002128,218,0 +170758002176,219,0 +170758002225,220,0 +170758002275,220,0 +170758002323,221,0 +170758002371,222,0 +170758002419,222,0 +170758002468,223,0 +170758002516,224,0 +170758002564,222,0 +170758002612,224,0 +170758002660,224,0 +170758002710,224,0 +170758002757,223,0 +170758002805,217,0 +170758002853,217,0 +170758002903,218,0 +170758002951,219,0 +170758002998,220,0 +170758003048,219,0 +170758003096,219,0 +170758003144,222,0 +170758003192,223,0 +170758003240,223,0 +170758003289,223,0 +170758003337,224,0 +170758003387,223,0 +170758003435,225,0 +170758003484,223,0 +170758003534,225,0 +170758003582,224,0 +170758003631,223,0 +170758003679,223,0 +170758003727,221,0 +170758003775,221,0 +170758003823,222,0 +170758003871,222,0 +170758003919,222,0 +170758003967,223,0 +170758004015,224,0 +170758004063,225,0 +170758004111,224,0 +170758004159,224,0 +170758004207,225,0 +170758004255,224,0 +170758004304,224,0 +170758004352,225,0 +170758004402,226,0 +170758004451,223,0 +170758004499,223,0 +170758004549,224,0 +170758004597,223,0 +170758004646,218,0 +170758004694,219,0 +170758004742,220,0 +170758004790,220,0 +170758004839,222,0 +170758004889,221,0 +170758004937,222,0 +170758004985,222,0 +170758005033,224,0 +170758005080,223,0 +170758005128,223,0 +170758005176,223,0 +170758005226,224,0 +170758005274,224,0 +170758005323,224,0 +170758005371,224,0 +170758005419,224,0 +170758005468,223,0 +170758005518,217,0 +170758005566,216,0 +170758005614,217,0 +170758005663,218,0 +170758005711,219,0 +170758005761,219,0 +170758005810,220,0 +170758005860,221,0 +170758005908,220,0 +170758005956,221,0 +170758006005,219,0 +170758006053,222,0 +170758006101,223,0 +170758006151,223,0 +170758006200,222,0 +170758006250,223,0 +170758006299,222,0 +170758006347,221,0 +170758006397,223,0 +170758006446,216,0 +170758006494,215,0 +170758006542,216,0 +170758006590,216,0 +170758006638,217,0 +170758006688,218,0 +170758006736,219,0 +170758006784,218,0 +170758006831,219,0 +170758006879,220,0 +170758006927,220,0 +170758006975,220,0 +170758007023,221,0 +170758007071,220,0 +170758007121,224,0 +170758007170,223,0 +170758007220,222,0 +170758007269,223,0 +170758007319,223,0 +170758007367,214,0 +170758007415,214,0 +170758007464,214,0 +170758007514,215,0 +170758007562,216,0 +170758007610,217,0 +170758007658,217,0 +170758007706,218,0 +170758007753,219,0 +170758007803,221,0 +170758007851,220,0 +170758007899,221,0 +170758007947,221,0 +170758007996,223,0 +170758008044,223,0 +170758008094,223,0 +170758008142,224,0 +170758008189,223,0 +170758008239,216,0 +170758008288,215,0 +170758008336,215,0 +170758008386,215,0 +170758008434,216,0 +170758008483,216,0 +170758008531,217,0 +170758008579,217,0 +170758008627,218,0 +170758008675,218,0 +170758008723,219,0 +170758008773,220,0 +170758008820,221,0 +170758008870,221,0 +170758008919,221,0 +170758008969,221,0 +170758009017,222,0 +170758009065,223,0 +170758009114,223,0 +170758009164,215,0 +170758009212,215,0 +170758009260,216,0 +170758009309,217,0 +170758009357,216,0 +170758009407,217,0 +170758009455,218,0 +170758009503,219,0 +170758009551,219,0 +170758009600,220,0 +170758009648,223,0 +170758009698,221,0 +170758009747,222,0 +170758009797,222,0 +170758009846,222,0 +170758009896,224,0 +170758009943,223,0 +170758009991,223,0 +170758010040,216,0 +170758010089,215,0 +170758010137,215,0 +170758010185,216,0 +170758010233,217,0 +170758010281,218,0 +170758010329,219,0 +170758010378,219,0 +170758010428,219,0 +170758010477,220,0 +170758010525,220,0 +170758010575,221,0 +170758010624,221,0 +170758010674,222,0 +170758010722,222,0 +170758010771,222,0 +170758010821,223,0 +170758010869,223,0 +170758010917,223,0 +170758010966,216,0 +170758011014,215,0 +170758011064,216,0 +170758011112,219,0 +170758011160,217,0 +170758011208,217,0 +170758011257,218,0 +170758011305,218,0 +170758011353,219,0 +170758011401,220,0 +170758011450,221,0 +170758011498,221,0 +170758011548,222,0 +170758011596,223,0 +170758011644,223,0 +170758011693,223,0 +170758011741,223,0 +170758011789,223,0 +170758011837,222,0 +170758011885,215,0 +170758011933,215,0 +170758011983,215,0 +170758012030,216,0 +170758012080,216,0 +170758012129,217,0 +170758012177,217,0 +170758012227,218,0 +170758012275,218,0 +170758012325,219,0 +170758012372,220,0 +170758012420,221,0 +170758012468,220,0 +170758012518,221,0 +170758012566,220,0 +170758012615,219,0 +170758012663,218,0 +170758012711,222,0 +170758012759,216,0 +170758012809,215,0 +170758012857,214,0 +170758012904,215,0 +170758012952,214,0 +170758013000,215,0 +170758013048,215,0 +170758013096,216,0 +170758013144,216,0 +170758013192,216,0 +170758013241,217,0 +170758013289,217,0 +170758013337,218,0 +170758013386,219,0 +170758013436,219,0 +170758013484,219,0 +170758013532,220,0 +170758013580,220,0 +170758013629,222,0 +170758013679,217,0 +170758013727,216,0 +170758013776,217,0 +170758013824,218,0 +170758013872,220,0 +170758013920,220,0 +170758013968,220,0 +170758014016,221,0 +170758014065,221,0 +170758014113,222,0 +170758014163,222,0 +170758014211,223,0 +170758014260,223,0 +170758014308,223,0 +170758014356,223,0 +170758014405,224,0 +170758014453,224,0 +170758014503,224,0 +170758014551,222,0 +170758014600,220,0 +170758014650,221,0 +170758014698,221,0 +170758014746,221,0 +170758014795,222,0 +170758014843,222,0 +170758014891,223,0 +170758014939,222,0 +170758014987,225,0 +170758015037,224,0 +170758015085,224,0 +170758015134,225,0 +170758015184,224,0 +170758015233,223,0 +170758015283,224,0 +170758015332,223,0 +170758015380,224,0 +170758015428,222,0 +170758015476,222,0 +170758015524,220,0 +170758015572,220,0 +170758015620,221,0 +170758015668,221,0 +170758015716,222,0 +170758015763,221,0 +170758015811,222,0 +170758015859,222,0 +170758015907,223,0 +170758015955,222,0 +170758016003,223,0 +170758016051,224,0 +170758016099,222,0 +170758016147,223,0 +170758016195,224,0 +170758016244,223,0 +170758016294,224,0 +170758016342,223,0 +170758016391,217,0 +170758016439,216,0 +170758016487,217,0 +170758016535,218,0 +170758016583,218,0 +170758016631,219,0 +170758016681,219,0 +170758016729,219,0 +170758016778,219,0 +170758016828,220,0 +170758016877,221,0 +170758016927,222,0 +170758016975,222,0 +170758017024,223,0 +170758017072,223,0 +170758017120,223,0 +170758017168,223,0 +170758017216,223,0 +170758017264,223,0 +170758017313,215,0 +170758017363,216,0 +170758017412,217,0 +170758017460,218,0 +170758017508,218,0 +170758017558,219,0 +170758017606,219,0 +170758017654,220,0 +170758017702,220,0 +170758017750,221,0 +170758017798,223,0 +170758017845,222,0 +170758017895,223,0 +170758017943,223,0 +170758017991,223,0 +170758018039,223,0 +170758018087,224,0 +170758018136,222,0 +170758018186,221,0 +170758018234,216,0 +170758018282,217,0 +170758018330,218,0 +170758018378,218,0 +170758018425,219,0 +170758018473,220,0 +170758018521,221,0 +170758018569,220,0 +170758018617,220,0 +170758018667,221,0 +170758018716,222,0 +170758018764,223,0 +170758018814,224,0 +170758018862,224,0 +170758018911,224,0 +170758018961,225,0 +170758019009,224,0 +170758019057,222,0 +170758019104,216,0 +170758019152,216,0 +170758019202,217,0 +170758019250,218,0 +170758019298,218,0 +170758019346,219,0 +170758019395,219,0 +170758019445,220,0 +170758019494,220,0 +170758019542,221,0 +170758019590,221,0 +170758019638,223,0 +170758019686,223,0 +170758019734,224,0 +170758019782,223,0 +170758019832,223,0 +170758019880,223,0 +170758019927,223,0 +170758019975,222,0 +170758020023,216,0 +170758020073,217,0 +170758020121,217,0 +170758020169,220,0 +170758020216,218,0 +170758020264,218,0 +170758020312,219,0 +170758020362,220,0 +170758020410,220,0 +170758020459,221,0 +170758020509,222,0 +170758020558,223,0 +170758020606,222,0 +170758020656,224,0 +170758020704,223,0 +170758020753,223,0 +170758020803,223,0 +170758020851,225,0 +170758020899,219,0 +170758020948,216,0 +170758020996,217,0 +170758021044,218,0 +170758021092,218,0 +170758021142,219,0 +170758021190,220,0 +170758021238,220,0 +170758021286,220,0 +170758021335,221,0 +170758021385,221,0 +170758021433,222,0 +170758021481,221,0 +170758021529,223,0 +170758021578,224,0 +170758021628,225,0 +170758021677,224,0 +170758021725,224,0 +170758021773,223,0 +170758021821,216,0 +170758021871,216,0 +170758021918,215,0 +170758021966,218,0 +170758022014,220,0 +170758022064,219,0 +170758022113,220,0 +170758022163,220,0 +170758022211,222,0 +170758022259,221,0 +170758022308,224,0 +170758022356,222,0 +170758022404,224,0 +170758022454,224,0 +170758022501,223,0 +170758022549,226,0 +170758022597,223,0 +170758022647,224,0 +170758022695,222,0 +170758022744,217,0 +170758022794,216,0 +170758022842,218,0 +170758022889,219,0 +170758022937,219,0 +170758022987,220,0 +170758023035,221,0 +170758023085,221,0 +170758023133,221,0 +170758023182,223,0 +170758023230,222,0 +170758023280,223,0 +170758023328,223,0 +170758023377,223,0 +170758023427,223,0 +170758023476,223,0 +170758023524,224,0 +170758023574,223,0 +170758023621,216,0 +170758023669,216,0 +170758023719,216,0 +170758023767,217,0 +170758023815,218,0 +170758023863,218,0 +170758023911,219,0 +170758023959,220,0 +170758024007,220,0 +170758024055,221,0 +170758024104,221,0 +170758024152,222,0 +170758024200,222,0 +170758024248,223,0 +170758024296,223,0 +170758024345,223,0 +170758024395,225,0 +170758024443,223,0 +170758024491,224,0 +170758024539,216,0 +170758024587,214,0 +170758024636,215,0 +170758024684,215,0 +170758024732,215,0 +170758024780,215,0 +170758024828,215,0 +170758024876,217,0 +170758024924,218,0 +170758024972,219,0 +170758025020,220,0 +170758025068,220,0 +170758025116,220,0 +170758025164,220,0 +170758025213,221,0 +170758025261,221,0 +170758025309,221,0 +170758025357,222,0 +170758025405,223,0 +170758025455,215,0 +170758025503,215,0 +170758025551,215,0 +170758025600,215,0 +170758025650,215,0 +170758025697,215,0 +170758025745,216,0 +170758025795,216,0 +170758025843,216,0 +170758025890,217,0 +170758025940,219,0 +170758025989,219,0 +170758026037,220,0 +170758026085,220,0 +170758026133,222,0 +170758026181,221,0 +170758026229,220,0 +170758026278,222,0 +170758026326,218,0 +170758026374,215,0 +170758026422,215,0 +170758026472,215,0 +170758026520,215,0 +170758026568,216,0 +170758026616,215,0 +170758026664,216,0 +170758026711,217,0 +170758026759,218,0 +170758026807,219,0 +170758026855,220,0 +170758026903,220,0 +170758026951,221,0 +170758026999,221,0 +170758027047,222,0 +170758027097,221,0 +170758027146,221,0 +170758027196,223,0 +170758027243,216,0 +170758027293,215,0 +170758027341,215,0 +170758027390,215,0 +170758027438,215,0 +170758027486,215,0 +170758027534,215,0 +170758027582,216,0 +170758027630,216,0 +170758027680,216,0 +170758027728,217,0 +170758027775,218,0 +170758027823,219,0 +170758027871,219,0 +170758027919,220,0 +170758027967,220,0 +170758028015,221,0 +170758028065,221,0 +170758028113,224,0 +170758028161,216,0 +170758028208,215,0 +170758028256,215,0 +170758028304,215,0 +170758028352,216,0 +170758028400,216,0 +170758028448,217,0 +170758028496,217,0 +170758028544,217,0 +170758028591,217,0 +170758028639,218,0 +170758028687,218,0 +170758028737,219,0 +170758028784,220,0 +170758028832,220,0 +170758028880,220,0 +170758028928,220,0 +170758028976,222,0 +170758029024,223,0 +170758029073,215,0 +170758029121,215,0 +170758029171,215,0 +170758029218,216,0 +170758029266,216,0 +170758029314,217,0 +170758029362,217,0 +170758029410,218,0 +170758029458,218,0 +170758029506,218,0 +170758029553,222,0 +170758029601,220,0 +170758029649,221,0 +170758029699,221,0 +170758029748,221,0 +170758029796,222,0 +170758029844,222,0 +170758029892,222,0 +170758029941,223,0 +170758029989,215,0 +170758030037,216,0 +170758030085,217,0 +170758030133,218,0 +170758030180,220,0 +170758030228,220,0 +170758030276,220,0 +170758030326,221,0 +170758030375,222,0 +170758030423,221,0 +170758030471,222,0 +170758030518,224,0 +170758030566,224,0 +170758030614,224,0 +170758030662,224,0 +170758030710,227,0 +170758030759,223,0 +170758030809,223,0 +170758030857,219,0 +170758030907,220,0 +170758030955,220,0 +170758031004,221,0 +170758031052,222,0 +170758031100,222,0 +170758031148,223,0 +170758031196,223,0 +170758031244,223,0 +170758031293,223,0 +170758031341,223,0 +170758031389,224,0 +170758031437,224,0 +170758031485,224,0 +170758031533,224,0 +170758031581,224,0 +170758031628,224,0 +170758031678,224,0 +170758031726,225,0 +170758031774,220,0 +170758031821,221,0 +170758031869,221,0 +170758031917,222,0 +170758031965,222,0 +170758032014,222,0 +170758032062,223,0 +170758032112,223,0 +170758032160,223,0 +170758032209,224,0 +170758032257,224,0 +170758032307,224,0 +170758032355,224,0 +170758032403,224,0 +170758032451,223,0 +170758032499,223,0 +170758032548,223,0 +170758032596,223,0 +170758032644,222,0 +170758032691,219,0 +170758032739,218,0 +170758032789,219,0 +170758032836,220,0 +170758032886,221,0 +170758032934,221,0 +170758032981,221,0 +170758033029,222,0 +170758033077,222,0 +170758033125,222,0 +170758033173,224,0 +170758033220,223,0 +170758033268,224,0 +170758033318,224,0 +170758033367,225,0 +170758033415,224,0 +170758033463,224,0 +170758033511,225,0 +170758033559,223,0 +170758033606,217,0 +170758033654,218,0 +170758033702,219,0 +170758033750,219,0 +170758033799,221,0 +170758033847,221,0 +170758033895,220,0 +170758033943,221,0 +170758033991,222,0 +170758034040,223,0 +170758034088,223,0 +170758034136,224,0 +170758034184,224,0 +170758034232,224,0 +170758034280,225,0 +170758034329,224,0 +170758034377,223,0 +170758034426,223,0 +170758034476,216,0 +170758034524,216,0 +170758034572,217,0 +170758034620,218,0 +170758034669,218,0 +170758034719,219,0 +170758034768,221,0 +170758034816,220,0 +170758034864,221,0 +170758034914,221,0 +170758034962,223,0 +170758035010,224,0 +170758035057,223,0 +170758035105,224,0 +170758035153,222,0 +170758035201,224,0 +170758035249,224,0 +170758035296,223,0 +170758035344,223,0 +170758035392,216,0 +170758035440,215,0 +170758035488,216,0 +170758035535,217,0 +170758035583,217,0 +170758035631,219,0 +170758035679,218,0 +170758035727,219,0 +170758035776,220,0 +170758035824,221,0 +170758035872,221,0 +170758035920,221,0 +170758035970,222,0 +170758036018,222,0 +170758036066,221,0 +170758036114,220,0 +170758036162,221,0 +170758036211,222,0 +170758036259,222,0 +170758036308,215,0 +170758036358,215,0 +170758036407,215,0 +170758036456,216,0 +170758036503,217,0 +170758036551,218,0 +170758036599,217,0 +170758036647,220,0 +170758036695,219,0 +170758036743,220,0 +170758036791,221,0 +170758036839,221,0 +170758036887,220,0 +170758036936,221,0 +170758036986,223,0 +170758037034,221,0 +170758037082,222,0 +170758037131,222,0 +170758037181,220,0 +170758037229,214,0 +170758037278,214,0 +170758037326,215,0 +170758037374,215,0 +170758037422,216,0 +170758037470,216,0 +170758037518,216,0 +170758037566,217,0 +170758037614,217,0 +170758037661,218,0 +170758037709,219,0 +170758037757,219,0 +170758037805,220,0 +170758037853,220,0 +170758037901,221,0 +170758037949,220,0 +170758037998,220,0 +170758038048,222,0 +170758038097,216,0 +170758038145,215,0 +170758038195,215,0 +170758038242,215,0 +170758038292,214,0 +170758038340,216,0 +170758038388,216,0 +170758038436,216,0 +170758038484,217,0 +170758038532,218,0 +170758038580,218,0 +170758038629,219,0 +170758038679,221,0 +170758038726,221,0 +170758038776,221,0 +170758038824,222,0 +170758038872,223,0 +170758038921,223,0 +170758038969,224,0 +170758039017,216,0 +170758039067,215,0 +170758039116,215,0 +170758039166,215,0 +170758039215,216,0 +170758039263,216,0 +170758039311,217,0 +170758039361,218,0 +170758039409,218,0 +170758039457,219,0 +170758039506,220,0 +170758039556,220,0 +170758039604,221,0 +170758039651,222,0 +170758039699,222,0 +170758039747,223,0 +170758039795,222,0 +170758039845,222,0 +170758039894,218,0 +170758039944,215,0 +170758039993,214,0 +170758040041,215,0 +170758040089,214,0 +170758040137,216,0 +170758040186,217,0 +170758040234,217,0 +170758040282,218,0 +170758040330,219,0 +170758040379,219,0 +170758040427,220,0 +170758040475,221,0 +170758040523,221,0 +170758040571,221,0 +170758040619,221,0 +170758040667,223,0 +170758040715,224,0 +170758040763,223,0 +170758040810,216,0 +170758040858,215,0 +170758040906,216,0 +170758040954,217,0 +170758041002,218,0 +170758041049,217,0 +170758041097,218,0 +170758041145,218,0 +170758041195,219,0 +170758041243,222,0 +170758041292,221,0 +170758041340,221,0 +170758041388,222,0 +170758041437,222,0 +170758041487,222,0 +170758041535,223,0 +170758041583,223,0 +170758041631,223,0 +170758041679,222,0 +170758041727,215,0 +170758041776,215,0 +170758041824,215,0 +170758041872,216,0 +170758041922,217,0 +170758041971,217,0 +170758042019,218,0 +170758042067,218,0 +170758042117,219,0 +170758042165,220,0 +170758042212,221,0 +170758042260,221,0 +170758042310,224,0 +170758042359,223,0 +170758042407,223,0 +170758042457,223,0 +170758042505,223,0 +170758042553,223,0 +170758042600,223,0 +170758042648,215,0 +170758042696,215,0 +170758042746,216,0 +170758042794,216,0 +170758042842,217,0 +170758042890,219,0 +170758042938,219,0 +170758042985,218,0 +170758043033,220,0 +170758043081,220,0 +170758043129,221,0 +170758043177,221,0 +170758043227,222,0 +170758043275,222,0 +170758043323,222,0 +170758043370,224,0 +170758043420,221,0 +170758043468,223,0 +170758043515,220,0 +170758043563,215,0 +170758043611,215,0 +170758043659,216,0 +170758043707,217,0 +170758043755,218,0 +170758043802,218,0 +170758043850,219,0 +170758043898,218,0 +170758043946,219,0 +170758043994,219,0 +170758044041,221,0 +170758044089,221,0 +170758044137,222,0 +170758044186,222,0 +170758044234,223,0 +170758044282,224,0 +170758044332,223,0 +170758044381,224,0 +170758044431,216,0 +170758044479,215,0 +170758044529,216,0 +170758044578,216,0 +170758044626,217,0 +170758044674,217,0 +170758044723,218,0 +170758044771,218,0 +170758044819,218,0 +170758044869,219,0 +170758044917,220,0 +170758044965,221,0 +170758045014,221,0 +170758045064,221,0 +170758045112,224,0 +170758045161,222,0 +170758045209,222,0 +170758045257,222,0 +170758045305,222,0 +170758045353,217,0 +170758045401,217,0 +170758045449,218,0 +170758045497,218,0 +170758045546,219,0 +170758045594,219,0 +170758045643,220,0 +170758045691,221,0 +170758045741,223,0 +170758045789,222,0 +170758045836,223,0 +170758045884,223,0 +170758045934,224,0 +170758045982,223,0 +170758046030,224,0 +170758046078,225,0 +170758046127,223,0 +170758046175,223,0 +170758046223,222,0 +170758046271,217,0 +170758046318,218,0 +170758046368,218,0 +170758046416,220,0 +170758046464,221,0 +170758046513,220,0 +170758046561,222,0 +170758046609,222,0 +170758046656,222,0 +170758046704,223,0 +170758046752,222,0 +170758046800,223,0 +170758046848,224,0 +170758046896,223,0 +170758046945,224,0 +170758046995,223,0 +170758047042,223,0 +170758047090,222,0 +170758047140,220,0 +170758047188,221,0 +170758047237,221,0 +170758047285,221,0 +170758047335,222,0 +170758047385,222,0 +170758047432,223,0 +170758047480,223,0 +170758047528,224,0 +170758047576,224,0 +170758047625,224,0 +170758047673,223,0 +170758047721,223,0 +170758047771,225,0 +170758047818,223,0 +170758047866,223,0 +170758047916,223,0 +170758047964,225,0 +170758048012,222,0 +170758048059,221,0 +170758048107,221,0 +170758048155,221,0 +170758048205,222,0 +170758048252,222,0 +170758048300,223,0 +170758048350,226,0 +170758048398,223,0 +170758048446,224,0 +170758048494,224,0 +170758048542,223,0 +170758048591,224,0 +170758048641,224,0 +170758048688,224,0 +170758048736,224,0 +170758048784,224,0 +170758048834,224,0 +170758048883,223,0 +170758048931,221,0 +170758048979,221,0 +170758049027,220,0 +170758049076,221,0 +170758049126,221,0 +170758049174,220,0 +170758049222,222,0 +170758049270,222,0 +170758049318,224,0 +170758049367,223,0 +170758049415,224,0 +170758049463,223,0 +170758049511,223,0 +170758049559,225,0 +170758049609,224,0 +170758049657,224,0 +170758049706,225,0 +170758049754,224,0 +170758049804,223,0 +170758049852,216,0 +170758049899,216,0 +170758049947,217,0 +170758049995,217,0 +170758050043,218,0 +170758050091,219,0 +170758050139,219,0 +170758050188,221,0 +170758050238,222,0 +170758050286,221,0 +170758050334,222,0 +170758050381,222,0 +170758050429,223,0 +170758050477,224,0 +170758050525,223,0 +170758050573,224,0 +170758050621,224,0 +170758050669,223,0 +170758050717,224,0 +170758050765,216,0 +170758050813,215,0 +170758050862,216,0 +170758050910,216,0 +170758050958,217,0 +170758051006,218,0 +170758051054,218,0 +170758051104,219,0 +170758051154,220,0 +170758051201,220,0 +170758051251,220,0 +170758051299,222,0 +170758051347,221,0 +170758051395,221,0 +170758051443,221,0 +170758051492,220,0 +170758051540,219,0 +170758051588,222,0 +170758051636,223,0 +170758051685,215,0 +170758051733,215,0 +170758051783,215,0 +170758051831,217,0 +170758051880,217,0 +170758051928,217,0 +170758051976,218,0 +170758052026,219,0 +170758052074,219,0 +170758052123,219,0 +170758052173,221,0 +170758052221,221,0 +170758052269,222,0 +170758052318,221,0 +170758052368,222,0 +170758052417,223,0 +170758052465,223,0 +170758052515,224,0 +170758052563,216,0 +170758052610,215,0 +170758052658,215,0 +170758052708,217,0 +170758052756,217,0 +170758052804,217,0 +170758052852,218,0 +170758052900,219,0 +170758052947,219,0 +170758052995,220,0 +170758053043,221,0 +170758053091,223,0 +170758053141,223,0 +170758053189,222,0 +170758053237,222,0 +170758053286,223,0 +170758053336,223,0 +170758053384,222,0 +170758053431,223,0 +170758053479,216,0 +170758053527,215,0 +170758053577,216,0 +170758053625,217,0 +170758053673,217,0 +170758053722,218,0 +170758053770,218,0 +170758053820,219,0 +170758053868,220,0 +170758053916,221,0 +170758053965,221,0 +170758054014,222,0 +170758054062,222,0 +170758054110,227,0 +170758054160,224,0 +170758054209,223,0 +170758054258,226,0 +170758054306,223,0 +170758054354,223,0 +170758054402,215,0 +170758054450,215,0 +170758054498,215,0 +170758054546,216,0 +170758054593,217,0 +170758054641,217,0 +170758054691,218,0 +170758054739,218,0 +170758054786,218,0 +170758054834,219,0 +170758054882,220,0 +170758054930,220,0 +170758054978,220,0 +170758055026,222,0 +170758055074,221,0 +170758055121,221,0 +170758055169,221,0 +170758055219,223,0 +170758055267,220,0 +170758055314,214,0 +170758055362,215,0 +170758055410,215,0 +170758055460,215,0 +170758055508,215,0 +170758055557,216,0 +170758055605,216,0 +170758055653,217,0 +170758055701,218,0 +170758055749,219,0 +170758055798,220,0 +170758055846,220,0 +170758055894,221,0 +170758055943,221,0 +170758055993,223,0 +170758056042,224,0 +170758056090,222,0 +170758056140,223,0 +170758056189,216,0 +170758056239,214,0 +170758056288,214,0 +170758056338,215,0 +170758056386,214,0 +170758056434,215,0 +170758056482,215,0 +170758056529,215,0 +170758056577,215,0 +170758056625,215,0 +170758056675,216,0 +170758056723,217,0 +170758056771,218,0 +170758056819,219,0 +170758056868,220,0 +170758056916,221,0 +170758056964,221,0 +170758057014,223,0 +170758057063,223,0 +170758057113,215,0 +170758057162,215,0 +170758057210,215,0 +170758057258,215,0 +170758057308,215,0 +170758057357,216,0 +170758057405,216,0 +170758057453,216,0 +170758057501,217,0 +170758057549,217,0 +170758057597,220,0 +170758057645,219,0 +170758057694,220,0 +170758057744,221,0 +170758057792,222,0 +170758057840,223,0 +170758057888,223,0 +170758057936,222,0 +170758057984,217,0 +170758058032,214,0 +170758058080,214,0 +170758058128,214,0 +170758058177,215,0 +170758058225,215,0 +170758058273,215,0 +170758058323,215,0 +170758058372,216,0 +170758058420,216,0 +170758058468,216,0 +170758058516,217,0 +170758058566,218,0 +170758058614,219,0 +170758058661,220,0 +170758058709,220,0 +170758058757,220,0 +170758058805,220,0 +170758058853,224,0 +170758058901,216,0 +170758058949,215,0 +170758058999,215,0 +170758059048,215,0 +170758059098,216,0 +170758059146,216,0 +170758059195,216,0 +170758059245,216,0 +170758059294,216,0 +170758059342,218,0 +170758059390,219,0 +170758059438,218,0 +170758059486,220,0 +170758059534,219,0 +170758059582,221,0 +170758059630,221,0 +170758059678,221,0 +170758059726,221,0 +170758059774,221,0 +170758059823,222,0 +170758059871,223,0 +170758059919,224,0 +170758059968,223,0 +170758060016,227,0 +170758060066,221,0 +170758060115,220,0 +170758060163,223,0 +170758060211,223,0 +170758060259,216,0 +170758060307,215,0 +170758060355,216,0 +170758060403,217,0 +170758060452,218,0 +170758060500,218,0 +170758060548,219,0 +170758060596,219,0 +170758060644,220,0 +170758060692,221,0 +170758060740,221,0 +170758060787,221,0 +170758060835,221,0 +170758060883,221,0 +170758060931,221,0 +170758060981,221,0 +170758061030,223,0 +170758061078,223,0 +170758061126,223,0 +170758061174,216,0 +170758061222,215,0 +170758061270,217,0 +170758061319,217,0 +170758061369,218,0 +170758061416,219,0 +170758061464,219,0 +170758061512,220,0 +170758061560,221,0 +170758061608,221,0 +170758061656,222,0 +170758061704,225,0 +170758061753,223,0 +170758061801,224,0 +170758061849,223,0 +170758061897,223,0 +170758061945,224,0 +170758061992,223,0 +170758062040,222,0 +170758062090,217,0 +170758062137,217,0 +170758062185,218,0 +170758062233,219,0 +170758062281,219,0 +170758062331,219,0 +170758062378,220,0 +170758062426,221,0 +170758062474,221,0 +170758062522,221,0 +170758062570,221,0 +170758062618,222,0 +170758062667,223,0 +170758062715,224,0 +170758062763,222,0 +170758062811,223,0 +170758062859,224,0 +170758062908,223,0 +170758062956,216,0 +170758063004,216,0 +170758063054,217,0 +170758063101,217,0 +170758063149,219,0 +170758063197,219,0 +170758063245,219,0 +170758063295,220,0 +170758063343,221,0 +170758063391,221,0 +170758063439,222,0 +170758063487,223,0 +170758063535,223,0 +170758063583,224,0 +170758063632,223,0 +170758063680,223,0 +170758063728,225,0 +170758063776,223,0 +170758063823,222,0 +170758063871,218,0 +170758063919,219,0 +170758063969,219,0 +170758064017,221,0 +170758064064,220,0 +170758064114,221,0 +170758064163,222,0 +170758064213,222,0 +170758064261,223,0 +170758064309,223,0 +170758064357,223,0 +170758064406,223,0 +170758064456,224,0 +170758064504,223,0 +170758064552,223,0 +170758064599,224,0 +170758064647,223,0 +170758064695,224,0 +170758064743,222,0 +170758064791,221,0 +170758064839,221,0 +170758064886,225,0 +170758064934,223,0 +170758064982,223,0 +170758065030,222,0 +170758065078,222,0 +170758065127,223,0 +170758065175,223,0 +170758065223,223,0 +170758065271,225,0 +170758065319,223,0 +170758065367,223,0 +170758065414,224,0 +170758065462,225,0 +170758065510,223,0 +170758065560,224,0 +170758065607,222,0 +170758065655,220,0 +170758065703,218,0 +170758065753,218,0 +170758065800,219,0 +170758065848,220,0 +170758065896,220,0 +170758065944,221,0 +170758065992,221,0 +170758066040,223,0 +170758066088,221,0 +170758066136,222,0 +170758066185,223,0 +170758066233,223,0 +170758066281,224,0 +170758066328,226,0 +170758066376,224,0 +170758066424,224,0 +170758066472,224,0 +170758066520,223,0 +170758066568,216,0 +170758066616,217,0 +170758066665,218,0 +170758066713,219,0 +170758066761,220,0 +170758066809,220,0 +170758066857,221,0 +170758066904,221,0 +170758066952,222,0 +170758067002,222,0 +170758067051,223,0 +170758067101,223,0 +170758067149,224,0 +170758067198,224,0 +170758067246,223,0 +170758067294,223,0 +170758067342,224,0 +170758067390,223,0 +170758067438,223,0 +170758067486,219,0 +170758067534,218,0 +170758067583,219,0 +170758067631,219,0 +170758067679,221,0 +170758067729,222,0 +170758067777,222,0 +170758067826,223,0 +170758067874,224,0 +170758067922,224,0 +170758067970,224,0 +170758068020,224,0 +170758068069,224,0 +170758068117,224,0 +170758068165,224,0 +170758068213,224,0 +170758068261,224,0 +170758068308,223,0 +170758068356,222,0 +170758068406,216,0 +170758068455,216,0 +170758068503,217,0 +170758068551,219,0 +170758068600,220,0 +170758068649,220,0 +170758068697,221,0 +170758068747,221,0 +170758068794,222,0 +170758068842,223,0 +170758068890,223,0 +170758068940,223,0 +170758068989,224,0 +170758069037,225,0 +170758069087,224,0 +170758069135,224,0 +170758069183,224,0 +170758069231,223,0 +170758069280,221,0 +170758069328,216,0 +170758069378,217,0 +170758069426,217,0 +170758069475,218,0 +170758069523,219,0 +170758069571,220,0 +170758069619,222,0 +170758069667,221,0 +170758069715,221,0 +170758069763,221,0 +170758069810,222,0 +170758069860,222,0 +170758069909,224,0 +170758069957,223,0 +170758070005,224,0 +170758070053,224,0 +170758070101,224,0 +170758070149,224,0 +170758070197,218,0 +170758070245,217,0 +170758070294,217,0 +170758070342,218,0 +170758070390,219,0 +170758070438,220,0 +170758070486,220,0 +170758070533,221,0 +170758070581,222,0 +170758070629,222,0 +170758070677,223,0 +170758070725,222,0 +170758070773,223,0 +170758070821,224,0 +170758070868,224,0 +170758070916,224,0 +170758070964,224,0 +170758071012,224,0 +170758071060,223,0 +170758071108,216,0 +170758071157,216,0 +170758071205,216,0 +170758071253,218,0 +170758071300,218,0 +170758071350,218,0 +170758071398,219,0 +170758071447,220,0 +170758071497,220,0 +170758071545,221,0 +170758071594,221,0 +170758071642,221,0 +170758071690,221,0 +170758071740,221,0 +170758071788,224,0 +170758071836,222,0 +170758071883,223,0 +170758071931,224,0 +170758071979,225,0 +170758072027,215,0 +170758072075,214,0 +170758072124,214,0 +170758072172,214,0 +170758072220,214,0 +170758072268,215,0 +170758072316,215,0 +170758072364,216,0 +170758072412,216,0 +170758072461,217,0 +170758072509,218,0 +170758072557,218,0 +170758072606,219,0 +170758072654,219,0 +170758072702,220,0 +170758072750,220,0 +170758072798,221,0 +170758072846,222,0 +170758072894,222,0 +170758072941,214,0 +170758072991,214,0 +170758073039,215,0 +170758073087,214,0 +170758073136,215,0 +170758073184,215,0 +170758073232,216,0 +170758073280,216,0 +170758073330,218,0 +170758073379,218,0 +170758073429,219,0 +170758073478,219,0 +170758073526,221,0 +170758073574,220,0 +170758073624,221,0 +170758073673,222,0 +170758073721,221,0 +170758073770,223,0 +170758073818,216,0 +170758073866,215,0 +170758073916,215,0 +170758073965,216,0 +170758074013,216,0 +170758074063,217,0 +170758074111,217,0 +170758074158,218,0 +170758074208,219,0 +170758074257,220,0 +170758074307,220,0 +170758074354,221,0 +170758074402,220,0 +170758074450,222,0 +170758074499,223,0 +170758074547,223,0 +170758074595,223,0 +170758074643,223,0 +170758074691,223,0 +170758074738,216,0 +170758074786,215,0 +170758074834,216,0 +170758074882,218,0 +170758074930,217,0 +170758074977,218,0 +170758075025,218,0 +170758075075,219,0 +170758075123,219,0 +170758075172,220,0 +170758075222,220,0 +170758075271,222,0 +170758075319,222,0 +170758075367,222,0 +170758075415,223,0 +170758075463,224,0 +170758075511,224,0 +170758075560,223,0 +170758075608,223,0 +170758075656,216,0 +170758075704,216,0 +170758075752,218,0 +170758075802,219,0 +170758075851,218,0 +170758075899,219,0 +170758075947,220,0 +170758075995,221,0 +170758076043,221,0 +170758076092,223,0 +170758076140,224,0 +170758076190,223,0 +170758076238,223,0 +170758076286,224,0 +170758076334,224,0 +170758076382,223,0 +170758076431,223,0 +170758076479,222,0 +170758076527,216,0 +170758076575,215,0 +170758076623,216,0 +170758076671,217,0 +170758076718,218,0 +170758076766,219,0 +170758076814,219,0 +170758076862,220,0 +170758076910,220,0 +170758076958,221,0 +170758077005,222,0 +170758077053,218,0 +170758077103,224,0 +170758077150,223,0 +170758077198,223,0 +170758077246,225,0 +170758077294,223,0 +170758077342,224,0 +170758077391,223,0 +170758077439,217,0 +170758077487,217,0 +170758077535,218,0 +170758077582,218,0 +170758077630,219,0 +170758077678,220,0 +170758077728,220,0 +170758077776,221,0 +170758077824,221,0 +170758077872,221,0 +170758077920,222,0 +170758077969,223,0 +170758078017,223,0 +170758078065,222,0 +170758078113,224,0 +170758078162,223,0 +170758078212,224,0 +170758078260,223,0 +170758078308,222,0 +170758078356,218,0 +170758078404,218,0 +170758078451,218,0 +170758078501,218,0 +170758078549,219,0 +170758078596,220,0 +170758078644,220,0 +170758078692,220,0 +170758078740,222,0 +170758078788,222,0 +170758078837,223,0 +170758078887,222,0 +170758078935,224,0 +170758078984,224,0 +170758079032,224,0 +170758079082,225,0 +170758079129,223,0 +170758079177,223,0 +170758079227,222,0 +170758079275,215,0 +170758079324,216,0 +170758079372,217,0 +170758079422,219,0 +170758079471,218,0 +170758079519,219,0 +170758079567,219,0 +170758079615,221,0 +170758079663,222,0 +170758079713,222,0 +170758079762,222,0 +170758079810,222,0 +170758079858,222,0 +170758079905,221,0 +170758079953,225,0 +170758080001,221,0 diff --git a/laser_value/0211-02.csv b/laser_value/0211-02.csv new file mode 100644 index 0000000..30b55aa --- /dev/null +++ b/laser_value/0211-02.csv @@ -0,0 +1,7447 @@ +timestamp,laser_value,event +170758080050,222,0 +170758080099,223,0 +170758080147,219,0 +170758080195,215,0 +170758080243,215,0 +170758080293,215,0 +170758080341,215,0 +170758080389,215,0 +170758080437,216,0 +170758080485,218,0 +170758080532,217,0 +170758080580,218,0 +170758080628,219,0 +170758080676,219,0 +170758080726,220,0 +170758080774,220,0 +170758080823,220,0 +170758080871,221,0 +170758080920,222,0 +170758080968,223,0 +170758081017,223,0 +170758081067,216,0 +170758081115,215,0 +170758081163,215,0 +170758081210,216,0 +170758081258,217,0 +170758081306,218,0 +170758081354,218,0 +170758081402,220,0 +170758081450,220,0 +170758081500,220,0 +170758081547,222,0 +170758081595,222,0 +170758081643,223,0 +170758081691,222,0 +170758081741,223,0 +170758081789,223,0 +170758081837,223,0 +170758081885,224,0 +170758081933,223,0 +170758081980,217,0 +170758082028,216,0 +170758082076,218,0 +170758082124,218,0 +170758082172,219,0 +170758082219,220,0 +170758082267,219,0 +170758082315,221,0 +170758082363,221,0 +170758082411,222,0 +170758082459,223,0 +170758082506,223,0 +170758082554,223,0 +170758082604,224,0 +170758082652,223,0 +170758082700,222,0 +170758082749,223,0 +170758082797,223,0 +170758082847,222,0 +170758082896,215,0 +170758082944,215,0 +170758082992,216,0 +170758083041,216,0 +170758083091,217,0 +170758083139,218,0 +170758083187,219,0 +170758083236,219,0 +170758083286,220,0 +170758083334,220,0 +170758083383,221,0 +170758083431,222,0 +170758083479,222,0 +170758083527,223,0 +170758083575,224,0 +170758083623,223,0 +170758083670,223,0 +170758083720,223,0 +170758083768,216,0 +170758083815,215,0 +170758083863,215,0 +170758083911,215,0 +170758083959,215,0 +170758084007,216,0 +170758084056,216,0 +170758084106,217,0 +170758084155,218,0 +170758084203,218,0 +170758084251,220,0 +170758084300,220,0 +170758084348,220,0 +170758084396,222,0 +170758084446,222,0 +170758084494,222,0 +170758084543,222,0 +170758084591,222,0 +170758084639,223,0 +170758084687,216,0 +170758084734,215,0 +170758084782,215,0 +170758084830,215,0 +170758084878,216,0 +170758084926,217,0 +170758084974,217,0 +170758085021,218,0 +170758085069,219,0 +170758085117,219,0 +170758085165,221,0 +170758085213,221,0 +170758085261,221,0 +170758085308,222,0 +170758085356,222,0 +170758085406,223,0 +170758085454,223,0 +170758085503,222,0 +170758085551,222,0 +170758085599,216,0 +170758085648,215,0 +170758085696,215,0 +170758085744,216,0 +170758085792,217,0 +170758085842,217,0 +170758085890,217,0 +170758085937,218,0 +170758085985,218,0 +170758086033,219,0 +170758086083,220,0 +170758086131,221,0 +170758086179,225,0 +170758086227,222,0 +170758086274,222,0 +170758086322,222,0 +170758086370,222,0 +170758086420,226,0 +170758086468,224,0 +170758086516,216,0 +170758086563,216,0 +170758086611,217,0 +170758086661,218,0 +170758086709,219,0 +170758086758,219,0 +170758086806,220,0 +170758086854,220,0 +170758086902,220,0 +170758086950,220,0 +170758086999,221,0 +170758087047,221,0 +170758087095,221,0 +170758087143,223,0 +170758087191,223,0 +170758087239,223,0 +170758087288,223,0 +170758087338,223,0 +170758087386,217,0 +170758087433,216,0 +170758087481,217,0 +170758087529,218,0 +170758087577,217,0 +170758087625,218,0 +170758087673,218,0 +170758087721,219,0 +170758087769,219,0 +170758087816,220,0 +170758087866,222,0 +170758087914,221,0 +170758087961,222,0 +170758088011,222,0 +170758088059,223,0 +170758088106,223,0 +170758088154,223,0 +170758088202,223,0 +170758088250,224,0 +170758088297,216,0 +170758088345,216,0 +170758088393,217,0 +170758088441,218,0 +170758088488,219,0 +170758088536,219,0 +170758088584,220,0 +170758088632,220,0 +170758088680,222,0 +170758088728,222,0 +170758088775,223,0 +170758088823,223,0 +170758088871,223,0 +170758088919,224,0 +170758088968,224,0 +170758089016,224,0 +170758089064,224,0 +170758089112,223,0 +170758089160,223,0 +170758089208,217,0 +170758089257,217,0 +170758089307,218,0 +170758089356,219,0 +170758089404,219,0 +170758089452,220,0 +170758089500,221,0 +170758089549,221,0 +170758089597,221,0 +170758089647,221,0 +170758089696,223,0 +170758089745,223,0 +170758089793,224,0 +170758089841,223,0 +170758089889,223,0 +170758089937,224,0 +170758089986,223,0 +170758090034,223,0 +170758090082,222,0 +170758090130,216,0 +170758090178,217,0 +170758090228,218,0 +170758090275,218,0 +170758090323,220,0 +170758090371,219,0 +170758090419,220,0 +170758090467,220,0 +170758090516,220,0 +170758090564,222,0 +170758090612,223,0 +170758090660,223,0 +170758090708,224,0 +170758090755,223,0 +170758090803,224,0 +170758090851,223,0 +170758090899,223,0 +170758090946,223,0 +170758090994,222,0 +170758091042,215,0 +170758091092,216,0 +170758091139,217,0 +170758091189,217,0 +170758091236,219,0 +170758091284,219,0 +170758091334,220,0 +170758091381,220,0 +170758091429,221,0 +170758091479,222,0 +170758091527,222,0 +170758091574,222,0 +170758091622,223,0 +170758091670,224,0 +170758091718,224,0 +170758091767,223,0 +170758091815,223,0 +170758091865,223,0 +170758091912,217,0 +170758091960,216,0 +170758092008,216,0 +170758092058,217,0 +170758092105,218,0 +170758092155,219,0 +170758092203,220,0 +170758092250,220,0 +170758092300,221,0 +170758092348,221,0 +170758092395,222,0 +170758092445,222,0 +170758092494,224,0 +170758092542,224,0 +170758092591,223,0 +170758092639,223,0 +170758092688,223,0 +170758092736,224,0 +170758092784,223,0 +170758092833,216,0 +170758092881,216,0 +170758092929,218,0 +170758092977,218,0 +170758093025,219,0 +170758093074,220,0 +170758093122,219,0 +170758093170,222,0 +170758093218,220,0 +170758093267,221,0 +170758093315,223,0 +170758093363,223,0 +170758093411,223,0 +170758093459,223,0 +170758093506,223,0 +170758093554,223,0 +170758093602,224,0 +170758093650,221,0 +170758093698,221,0 +170758093746,215,0 +170758093793,216,0 +170758093841,217,0 +170758093891,218,0 +170758093938,219,0 +170758093986,220,0 +170758094036,220,0 +170758094083,221,0 +170758094131,221,0 +170758094179,221,0 +170758094227,223,0 +170758094275,224,0 +170758094324,223,0 +170758094372,223,0 +170758094420,224,0 +170758094468,223,0 +170758094516,227,0 +170758094564,223,0 +170758094612,222,0 +170758094659,215,0 +170758094707,216,0 +170758094755,216,0 +170758094803,218,0 +170758094853,218,0 +170758094902,217,0 +170758094950,219,0 +170758094998,219,0 +170758095047,220,0 +170758095096,220,0 +170758095144,221,0 +170758095192,221,0 +170758095240,222,0 +170758095288,222,0 +170758095336,221,0 +170758095384,221,0 +170758095432,221,0 +170758095481,223,0 +170758095530,216,0 +170758095578,215,0 +170758095626,215,0 +170758095674,216,0 +170758095722,215,0 +170758095770,217,0 +170758095817,218,0 +170758095867,218,0 +170758095915,219,0 +170758095963,219,0 +170758096010,221,0 +170758096058,221,0 +170758096106,223,0 +170758096154,222,0 +170758096202,223,0 +170758096250,222,0 +170758096297,223,0 +170758096345,225,0 +170758096393,224,0 +170758096441,216,0 +170758096489,215,0 +170758096537,217,0 +170758096586,217,0 +170758096636,218,0 +170758096684,218,0 +170758096732,220,0 +170758096779,220,0 +170758096827,220,0 +170758096875,220,0 +170758096923,221,0 +170758096971,221,0 +170758097019,222,0 +170758097067,222,0 +170758097115,223,0 +170758097163,225,0 +170758097210,223,0 +170758097258,223,0 +170758097306,223,0 +170758097354,215,0 +170758097402,215,0 +170758097450,216,0 +170758097499,217,0 +170758097547,217,0 +170758097595,219,0 +170758097643,219,0 +170758097692,220,0 +170758097742,220,0 +170758097790,221,0 +170758097838,223,0 +170758097885,222,0 +170758097933,223,0 +170758097981,222,0 +170758098029,223,0 +170758098079,224,0 +170758098127,223,0 +170758098174,223,0 +170758098222,222,0 +170758098270,215,0 +170758098319,215,0 +170758098367,217,0 +170758098415,218,0 +170758098463,218,0 +170758098510,219,0 +170758098558,220,0 +170758098606,220,0 +170758098654,221,0 +170758098701,221,0 +170758098749,222,0 +170758098797,224,0 +170758098845,223,0 +170758098892,223,0 +170758098940,223,0 +170758098988,222,0 +170758099036,224,0 +170758099084,223,0 +170758099131,217,0 +170758099179,215,0 +170758099227,215,0 +170758099275,216,0 +170758099323,217,0 +170758099372,218,0 +170758099420,219,0 +170758099468,219,0 +170758099515,219,0 +170758099565,220,0 +170758099613,221,0 +170758099660,222,0 +170758099708,222,0 +170758099756,223,0 +170758099804,223,0 +170758099852,222,0 +170758099900,222,0 +170758099948,222,0 +170758099996,222,0 +170758100044,216,0 +170758100092,214,0 +170758100139,215,0 +170758100187,215,0 +170758100235,215,0 +170758100284,216,0 +170758100332,217,0 +170758100380,217,0 +170758100428,218,0 +170758100476,219,0 +170758100525,219,0 +170758100573,220,0 +170758100621,221,0 +170758100669,222,0 +170758100718,222,0 +170758100768,223,0 +170758100816,223,0 +170758100865,222,0 +170758100913,223,0 +170758100961,216,0 +170758101009,215,0 +170758101057,215,0 +170758101106,216,0 +170758101156,216,0 +170758101204,217,0 +170758101253,217,0 +170758101301,217,0 +170758101349,219,0 +170758101397,220,0 +170758101445,223,0 +170758101493,221,0 +170758101541,221,0 +170758101590,221,0 +170758101638,222,0 +170758101686,223,0 +170758101733,223,0 +170758101783,223,0 +170758101831,223,0 +170758101879,216,0 +170758101926,215,0 +170758101974,215,0 +170758102024,216,0 +170758102071,216,0 +170758102119,217,0 +170758102167,217,0 +170758102216,218,0 +170758102264,218,0 +170758102314,219,0 +170758102362,220,0 +170758102410,221,0 +170758102457,221,0 +170758102505,222,0 +170758102553,224,0 +170758102601,223,0 +170758102649,223,0 +170758102697,224,0 +170758102744,222,0 +170758102792,215,0 +170758102840,214,0 +170758102888,215,0 +170758102936,215,0 +170758102986,216,0 +170758103034,217,0 +170758103082,218,0 +170758103131,218,0 +170758103179,219,0 +170758103229,219,0 +170758103276,221,0 +170758103324,219,0 +170758103372,221,0 +170758103422,221,0 +170758103470,222,0 +170758103517,222,0 +170758103567,222,0 +170758103615,223,0 +170758103663,216,0 +170758103712,214,0 +170758103760,215,0 +170758103808,216,0 +170758103857,216,0 +170758103905,217,0 +170758103953,217,0 +170758104001,218,0 +170758104048,219,0 +170758104096,219,0 +170758104144,219,0 +170758104192,220,0 +170758104240,221,0 +170758104287,223,0 +170758104335,223,0 +170758104383,223,0 +170758104431,222,0 +170758104478,222,0 +170758104526,222,0 +170758104574,216,0 +170758104622,215,0 +170758104670,215,0 +170758104719,217,0 +170758104767,217,0 +170758104815,218,0 +170758104863,218,0 +170758104910,218,0 +170758104958,218,0 +170758105008,219,0 +170758105055,218,0 +170758105105,221,0 +170758105153,221,0 +170758105202,222,0 +170758105250,222,0 +170758105298,223,0 +170758105347,222,0 +170758105397,223,0 +170758105445,222,0 +170758105493,217,0 +170758105541,217,0 +170758105589,219,0 +170758105636,219,0 +170758105684,220,0 +170758105734,220,0 +170758105783,219,0 +170758105833,221,0 +170758105882,221,0 +170758105930,223,0 +170758105978,223,0 +170758106027,223,0 +170758106075,223,0 +170758106123,224,0 +170758106173,225,0 +170758106221,224,0 +170758106269,224,0 +170758106317,223,0 +170758106364,222,0 +170758106412,216,0 +170758106460,216,0 +170758106508,217,0 +170758106558,218,0 +170758106606,219,0 +170758106654,219,0 +170758106703,223,0 +170758106753,220,0 +170758106801,221,0 +170758106849,221,0 +170758106897,221,0 +170758106944,222,0 +170758106992,222,0 +170758107040,224,0 +170758107090,224,0 +170758107138,223,0 +170758107186,224,0 +170758107234,224,0 +170758107282,216,0 +170758107331,216,0 +170758107379,216,0 +170758107428,217,0 +170758107478,218,0 +170758107526,218,0 +170758107574,219,0 +170758107622,219,0 +170758107669,220,0 +170758107717,220,0 +170758107765,221,0 +170758107813,221,0 +170758107863,224,0 +170758107912,223,0 +170758107960,224,0 +170758108010,223,0 +170758108058,223,0 +170758108106,223,0 +170758108155,222,0 +170758108203,216,0 +170758108251,216,0 +170758108300,216,0 +170758108348,217,0 +170758108398,218,0 +170758108446,218,0 +170758108494,219,0 +170758108542,220,0 +170758108591,220,0 +170758108641,222,0 +170758108690,222,0 +170758108738,222,0 +170758108788,222,0 +170758108835,224,0 +170758108883,224,0 +170758108931,223,0 +170758108981,222,0 +170758109029,224,0 +170758109076,223,0 +170758109124,217,0 +170758109172,217,0 +170758109220,219,0 +170758109268,219,0 +170758109316,219,0 +170758109365,220,0 +170758109413,220,0 +170758109461,221,0 +170758109511,221,0 +170758109558,222,0 +170758109606,222,0 +170758109654,223,0 +170758109704,223,0 +170758109752,224,0 +170758109800,224,0 +170758109849,224,0 +170758109897,223,0 +170758109945,224,0 +170758109993,220,0 +170758110041,218,0 +170758110089,218,0 +170758110137,219,0 +170758110186,220,0 +170758110236,220,0 +170758110283,220,0 +170758110333,222,0 +170758110381,222,0 +170758110430,222,0 +170758110478,223,0 +170758110526,224,0 +170758110574,223,0 +170758110622,224,0 +170758110670,224,0 +170758110718,224,0 +170758110767,224,0 +170758110817,224,0 +170758110865,222,0 +170758110912,217,0 +170758110962,216,0 +170758111010,217,0 +170758111059,218,0 +170758111107,220,0 +170758111155,220,0 +170758111203,221,0 +170758111251,221,0 +170758111300,224,0 +170758111348,223,0 +170758111396,223,0 +170758111444,223,0 +170758111491,225,0 +170758111539,223,0 +170758111587,223,0 +170758111635,224,0 +170758111683,224,0 +170758111732,222,0 +170758111780,222,0 +170758111828,216,0 +170758111878,216,0 +170758111925,217,0 +170758111973,218,0 +170758112023,218,0 +170758112070,218,0 +170758112118,220,0 +170758112168,221,0 +170758112216,220,0 +170758112265,222,0 +170758112313,222,0 +170758112362,224,0 +170758112410,223,0 +170758112458,224,0 +170758112506,224,0 +170758112554,224,0 +170758112602,224,0 +170758112649,222,0 +170758112697,223,0 +170758112745,214,0 +170758112793,214,0 +170758112841,215,0 +170758112888,215,0 +170758112936,216,0 +170758112984,216,0 +170758113032,217,0 +170758113080,218,0 +170758113128,220,0 +170758113176,220,0 +170758113224,221,0 +170758113272,221,0 +170758113321,222,0 +170758113371,222,0 +170758113418,223,0 +170758113468,223,0 +170758113516,223,0 +170758113565,224,0 +170758113615,217,0 +170758113663,215,0 +170758113711,215,0 +170758113759,215,0 +170758113808,215,0 +170758113858,216,0 +170758113905,216,0 +170758113953,217,0 +170758114001,218,0 +170758114049,218,0 +170758114097,220,0 +170758114145,221,0 +170758114194,221,0 +170758114243,222,0 +170758114291,222,0 +170758114339,221,0 +170758114387,222,0 +170758114435,222,0 +170758114483,223,0 +170758114531,216,0 +170758114579,216,0 +170758114628,217,0 +170758114676,217,0 +170758114724,218,0 +170758114772,219,0 +170758114820,219,0 +170758114869,220,0 +170758114917,220,0 +170758114966,223,0 +170758115016,222,0 +170758115064,223,0 +170758115112,223,0 +170758115160,224,0 +170758115209,224,0 +170758115259,223,0 +170758115306,225,0 +170758115356,224,0 +170758115404,223,0 +170758115452,219,0 +170758115499,219,0 +170758115547,220,0 +170758115595,220,0 +170758115643,221,0 +170758115691,221,0 +170758115739,222,0 +170758115787,223,0 +170758115836,223,0 +170758115884,225,0 +170758115932,223,0 +170758115980,224,0 +170758116028,224,0 +170758116077,224,0 +170758116125,224,0 +170758116175,224,0 +170758116223,224,0 +170758116272,223,0 +170758116322,220,0 +170758116370,218,0 +170758116417,218,0 +170758116465,218,0 +170758116515,219,0 +170758116563,221,0 +170758116610,221,0 +170758116658,220,0 +170758116706,220,0 +170758116754,222,0 +170758116804,223,0 +170758116853,222,0 +170758116901,223,0 +170758116949,223,0 +170758116997,222,0 +170758117045,222,0 +170758117093,223,0 +170758117142,223,0 +170758117190,223,0 +170758117238,217,0 +170758117286,216,0 +170758117336,216,0 +170758117383,218,0 +170758117431,218,0 +170758117479,219,0 +170758117529,220,0 +170758117577,220,0 +170758117625,221,0 +170758117672,222,0 +170758117720,222,0 +170758117770,222,0 +170758117818,223,0 +170758117866,223,0 +170758117915,223,0 +170758117963,223,0 +170758118011,222,0 +170758118059,222,0 +170758118107,223,0 +170758118155,216,0 +170758118204,215,0 +170758118254,216,0 +170758118301,217,0 +170758118349,217,0 +170758118397,217,0 +170758118445,218,0 +170758118493,218,0 +170758118543,219,0 +170758118592,221,0 +170758118641,221,0 +170758118691,222,0 +170758118739,223,0 +170758118787,223,0 +170758118836,223,0 +170758118884,223,0 +170758118934,224,0 +170758118983,223,0 +170758119031,223,0 +170758119079,215,0 +170758119127,215,0 +170758119177,216,0 +170758119224,217,0 +170758119272,217,0 +170758119320,218,0 +170758119370,219,0 +170758119418,219,0 +170758119467,219,0 +170758119515,220,0 +170758119565,222,0 +170758119614,223,0 +170758119662,222,0 +170758119711,223,0 +170758119761,223,0 +170758119810,223,0 +170758119860,223,0 +170758119908,224,0 +170758119956,216,0 +170758120004,216,0 +170758120052,216,0 +170758120101,216,0 +170758120149,217,0 +170758120198,218,0 +170758120246,219,0 +170758120294,220,0 +170758120342,220,0 +170758120392,221,0 +170758120440,221,0 +170758120489,221,0 +170758120537,221,0 +170758120587,222,0 +170758120636,223,0 +170758120685,224,0 +170758120733,223,0 +170758120781,223,0 +170758120829,222,0 +170758120877,216,0 +170758120925,215,0 +170758120974,216,0 +170758121022,217,0 +170758121072,217,0 +170758121120,218,0 +170758121167,219,0 +170758121215,219,0 +170758121265,219,0 +170758121313,221,0 +170758121362,222,0 +170758121410,222,0 +170758121458,222,0 +170758121506,223,0 +170758121555,223,0 +170758121605,222,0 +170758121653,223,0 +170758121701,223,0 +170758121749,222,0 +170758121796,215,0 +170758121846,216,0 +170758121896,216,0 +170758121945,217,0 +170758121994,218,0 +170758122044,218,0 +170758122092,218,0 +170758122140,219,0 +170758122188,219,0 +170758122236,221,0 +170758122285,221,0 +170758122333,223,0 +170758122381,223,0 +170758122429,223,0 +170758122477,223,0 +170758122525,223,0 +170758122573,224,0 +170758122620,224,0 +170758122670,216,0 +170758122718,215,0 +170758122766,216,0 +170758122814,217,0 +170758122862,218,0 +170758122911,218,0 +170758122961,219,0 +170758123010,219,0 +170758123058,219,0 +170758123108,220,0 +170758123156,220,0 +170758123205,222,0 +170758123253,221,0 +170758123303,222,0 +170758123351,223,0 +170758123400,224,0 +170758123450,225,0 +170758123499,224,0 +170758123547,223,0 +170758123597,215,0 +170758123644,215,0 +170758123694,215,0 +170758123742,216,0 +170758123790,217,0 +170758123839,217,0 +170758123889,217,0 +170758123937,218,0 +170758123985,220,0 +170758124034,219,0 +170758124082,221,0 +170758124130,221,0 +170758124179,222,0 +170758124227,221,0 +170758124277,222,0 +170758124326,221,0 +170758124376,220,0 +170758124423,223,0 +170758124471,225,0 +170758124521,215,0 +170758124569,214,0 +170758124617,214,0 +170758124666,215,0 +170758124714,215,0 +170758124762,215,0 +170758124812,216,0 +170758124861,217,0 +170758124909,218,0 +170758124957,219,0 +170758125005,219,0 +170758125053,220,0 +170758125102,221,0 +170758125150,221,0 +170758125199,222,0 +170758125247,221,0 +170758125295,222,0 +170758125345,223,0 +170758125393,216,0 +170758125442,214,0 +170758125490,215,0 +170758125538,215,0 +170758125586,215,0 +170758125635,215,0 +170758125683,216,0 +170758125731,216,0 +170758125779,217,0 +170758125829,217,0 +170758125878,218,0 +170758125928,219,0 +170758125977,219,0 +170758126025,221,0 +170758126075,221,0 +170758126124,221,0 +170758126174,221,0 +170758126222,222,0 +170758126270,223,0 +170758126318,215,0 +170758126366,215,0 +170758126414,215,0 +170758126463,215,0 +170758126512,215,0 +170758126560,215,0 +170758126608,217,0 +170758126656,217,0 +170758126706,217,0 +170758126754,218,0 +170758126802,219,0 +170758126850,221,0 +170758126899,221,0 +170758126949,221,0 +170758126996,221,0 +170758127046,222,0 +170758127096,222,0 +170758127143,222,0 +170758127191,220,0 +170758127239,215,0 +170758127287,215,0 +170758127335,215,0 +170758127383,215,0 +170758127431,216,0 +170758127479,216,0 +170758127528,217,0 +170758127578,218,0 +170758127627,218,0 +170758127677,220,0 +170758127725,219,0 +170758127773,221,0 +170758127821,221,0 +170758127868,220,0 +170758127918,221,0 +170758127968,222,0 +170758128015,221,0 +170758128063,223,0 +170758128111,217,0 +170758128159,215,0 +170758128207,215,0 +170758128255,215,0 +170758128303,216,0 +170758128353,217,0 +170758128402,217,0 +170758128450,217,0 +170758128498,217,0 +170758128546,218,0 +170758128594,220,0 +170758128642,220,0 +170758128691,221,0 +170758128741,222,0 +170758128789,222,0 +170758128837,222,0 +170758128884,223,0 +170758128932,223,0 +170758128980,221,0 +170758129028,216,0 +170758129076,215,0 +170758129126,215,0 +170758129174,216,0 +170758129222,217,0 +170758129269,218,0 +170758129319,218,0 +170758129367,218,0 +170758129415,219,0 +170758129464,219,0 +170758129514,220,0 +170758129562,221,0 +170758129611,222,0 +170758129659,223,0 +170758129707,223,0 +170758129756,223,0 +170758129806,223,0 +170758129855,223,0 +170758129903,219,0 +170758129951,215,0 +170758130001,215,0 +170758130049,216,0 +170758130098,216,0 +170758130148,217,0 +170758130196,216,0 +170758130245,218,0 +170758130295,218,0 +170758130344,218,0 +170758130392,219,0 +170758130440,220,0 +170758130488,221,0 +170758130536,221,0 +170758130585,222,0 +170758130633,223,0 +170758130681,223,0 +170758130729,222,0 +170758130777,222,0 +170758130825,217,0 +170758130873,215,0 +170758130922,216,0 +170758130970,217,0 +170758131019,218,0 +170758131067,220,0 +170758131115,219,0 +170758131163,220,0 +170758131211,220,0 +170758131259,222,0 +170758131308,222,0 +170758131356,222,0 +170758131405,222,0 +170758131453,223,0 +170758131501,224,0 +170758131551,224,0 +170758131599,224,0 +170758131647,223,0 +170758131696,222,0 +170758131746,219,0 +170758131793,219,0 +170758131841,220,0 +170758131889,221,0 +170758131937,223,0 +170758131985,221,0 +170758132035,222,0 +170758132082,222,0 +170758132130,223,0 +170758132180,223,0 +170758132228,224,0 +170758132277,224,0 +170758132327,224,0 +170758132375,224,0 +170758132424,223,0 +170758132474,223,0 +170758132522,223,0 +170758132571,223,0 +170758132619,221,0 +170758132667,220,0 +170758132715,220,0 +170758132763,221,0 +170758132811,221,0 +170758132859,221,0 +170758132907,223,0 +170758132955,223,0 +170758133004,223,0 +170758133052,223,0 +170758133101,222,0 +170758133149,224,0 +170758133199,223,0 +170758133247,224,0 +170758133296,224,0 +170758133344,225,0 +170758133394,223,0 +170758133442,224,0 +170758133489,224,0 +170758133539,220,0 +170758133587,220,0 +170758133635,220,0 +170758133684,221,0 +170758133734,221,0 +170758133782,223,0 +170758133829,223,0 +170758133877,222,0 +170758133925,223,0 +170758133975,224,0 +170758134023,223,0 +170758134071,223,0 +170758134118,224,0 +170758134166,224,0 +170758134214,225,0 +170758134262,224,0 +170758134310,223,0 +170758134360,224,0 +170758134408,223,0 +170758134456,219,0 +170758134504,218,0 +170758134553,218,0 +170758134601,220,0 +170758134650,220,0 +170758134698,221,0 +170758134746,222,0 +170758134794,221,0 +170758134842,221,0 +170758134891,223,0 +170758134939,223,0 +170758134987,224,0 +170758135037,224,0 +170758135086,223,0 +170758135134,224,0 +170758135182,225,0 +170758135230,224,0 +170758135278,223,0 +170758135326,222,0 +170758135374,217,0 +170758135423,217,0 +170758135471,219,0 +170758135519,219,0 +170758135569,220,0 +170758135617,220,0 +170758135664,221,0 +170758135714,221,0 +170758135762,221,0 +170758135811,223,0 +170758135859,222,0 +170758135907,223,0 +170758135955,224,0 +170758136005,224,0 +170758136053,223,0 +170758136101,225,0 +170758136148,223,0 +170758136196,223,0 +170758136246,218,0 +170758136295,218,0 +170758136345,218,0 +170758136393,219,0 +170758136441,219,0 +170758136489,220,0 +170758136537,220,0 +170758136586,220,0 +170758136634,221,0 +170758136682,222,0 +170758136731,224,0 +170758136779,222,0 +170758136827,223,0 +170758136875,225,0 +170758136923,223,0 +170758136971,224,0 +170758137019,224,0 +170758137069,223,0 +170758137117,223,0 +170758137166,218,0 +170758137214,218,0 +170758137262,219,0 +170758137310,219,0 +170758137358,221,0 +170758137406,221,0 +170758137454,221,0 +170758137501,222,0 +170758137549,222,0 +170758137597,223,0 +170758137645,223,0 +170758137695,224,0 +170758137744,224,0 +170758137793,225,0 +170758137841,224,0 +170758137891,223,0 +170758137940,223,0 +170758137988,223,0 +170758138038,223,0 +170758138086,217,0 +170758138135,218,0 +170758138185,218,0 +170758138234,219,0 +170758138284,220,0 +170758138332,220,0 +170758138381,222,0 +170758138430,222,0 +170758138478,221,0 +170758138526,222,0 +170758138574,222,0 +170758138622,224,0 +170758138670,224,0 +170758138718,223,0 +170758138766,223,0 +170758138813,226,0 +170758138863,221,0 +170758138911,222,0 +170758138958,217,0 +170758139006,216,0 +170758139054,217,0 +170758139102,217,0 +170758139151,218,0 +170758139199,218,0 +170758139247,221,0 +170758139295,219,0 +170758139343,220,0 +170758139390,221,0 +170758139438,222,0 +170758139486,223,0 +170758139534,223,0 +170758139582,223,0 +170758139630,224,0 +170758139677,223,0 +170758139725,222,0 +170758139773,223,0 +170758139821,223,0 +170758139869,216,0 +170758139917,214,0 +170758139964,214,0 +170758140012,214,0 +170758140060,214,0 +170758140108,215,0 +170758140156,215,0 +170758140204,215,0 +170758140251,216,0 +170758140299,217,0 +170758140349,217,0 +170758140396,219,0 +170758140444,219,0 +170758140492,220,0 +170758140540,221,0 +170758140590,220,0 +170758140638,221,0 +170758140687,222,0 +170758140737,223,0 +170758140786,216,0 +170758140836,215,0 +170758140885,216,0 +170758140933,216,0 +170758140981,217,0 +170758141029,218,0 +170758141077,218,0 +170758141126,219,0 +170758141174,220,0 +170758141222,220,0 +170758141270,222,0 +170758141319,221,0 +170758141367,223,0 +170758141417,222,0 +170758141465,224,0 +170758141513,223,0 +170758141562,223,0 +170758141610,223,0 +170758141658,222,0 +170758141706,215,0 +170758141755,215,0 +170758141803,215,0 +170758141851,216,0 +170758141899,216,0 +170758141947,217,0 +170758141996,219,0 +170758142044,218,0 +170758142093,219,0 +170758142141,220,0 +170758142189,221,0 +170758142237,223,0 +170758142287,222,0 +170758142335,223,0 +170758142384,223,0 +170758142432,224,0 +170758142481,223,0 +170758142529,223,0 +170758142579,216,0 +170758142628,215,0 +170758142678,215,0 +170758142727,215,0 +170758142775,215,0 +170758142825,216,0 +170758142874,217,0 +170758142923,218,0 +170758142971,221,0 +170758143021,219,0 +170758143069,220,0 +170758143118,221,0 +170758143166,221,0 +170758143214,222,0 +170758143262,222,0 +170758143310,223,0 +170758143359,223,0 +170758143407,223,0 +170758143455,223,0 +170758143503,215,0 +170758143551,215,0 +170758143599,215,0 +170758143648,215,0 +170758143698,215,0 +170758143747,216,0 +170758143795,216,0 +170758143843,217,0 +170758143893,217,0 +170758143942,218,0 +170758143990,220,0 +170758144038,220,0 +170758144087,220,0 +170758144135,222,0 +170758144183,222,0 +170758144231,222,0 +170758144279,222,0 +170758144327,223,0 +170758144375,222,0 +170758144424,215,0 +170758144474,214,0 +170758144523,214,0 +170758144571,214,0 +170758144619,215,0 +170758144667,215,0 +170758144715,215,0 +170758144763,215,0 +170758144811,215,0 +170758144859,216,0 +170758144907,217,0 +170758144956,218,0 +170758145004,219,0 +170758145052,221,0 +170758145102,221,0 +170758145151,221,0 +170758145201,221,0 +170758145250,223,0 +170758145299,216,0 +170758145347,214,0 +170758145397,214,0 +170758145445,215,0 +170758145493,215,0 +170758145542,215,0 +170758145590,215,0 +170758145638,215,0 +170758145686,216,0 +170758145734,217,0 +170758145781,218,0 +170758145829,219,0 +170758145879,219,0 +170758145927,220,0 +170758145976,221,0 +170758146026,221,0 +170758146075,221,0 +170758146123,222,0 +170758146171,223,0 +170758146219,216,0 +170758146269,214,0 +170758146316,214,0 +170758146364,215,0 +170758146414,215,0 +170758146462,215,0 +170758146511,215,0 +170758146559,216,0 +170758146607,216,0 +170758146655,216,0 +170758146705,217,0 +170758146752,219,0 +170758146800,220,0 +170758146848,220,0 +170758146898,221,0 +170758146946,221,0 +170758146994,221,0 +170758147043,222,0 +170758147092,224,0 +170758147140,215,0 +170758147190,215,0 +170758147238,215,0 +170758147286,215,0 +170758147335,216,0 +170758147383,216,0 +170758147431,216,0 +170758147479,217,0 +170758147527,218,0 +170758147576,219,0 +170758147626,219,0 +170758147674,220,0 +170758147723,221,0 +170758147771,223,0 +170758147821,222,0 +170758147869,222,0 +170758147917,222,0 +170758147965,221,0 +170758148013,217,0 +170758148060,215,0 +170758148108,215,0 +170758148156,216,0 +170758148206,217,0 +170758148255,217,0 +170758148303,218,0 +170758148352,219,0 +170758148402,220,0 +170758148450,220,0 +170758148498,222,0 +170758148546,221,0 +170758148593,222,0 +170758148641,222,0 +170758148689,223,0 +170758148737,223,0 +170758148787,223,0 +170758148835,223,0 +170758148884,223,0 +170758148932,219,0 +170758148980,219,0 +170758149029,219,0 +170758149077,220,0 +170758149125,221,0 +170758149173,221,0 +170758149222,221,0 +170758149270,222,0 +170758149320,223,0 +170758149369,223,0 +170758149419,223,0 +170758149468,224,0 +170758149518,224,0 +170758149567,223,0 +170758149615,224,0 +170758149665,224,0 +170758149713,224,0 +170758149761,223,0 +170758149808,220,0 +170758149858,217,0 +170758149907,219,0 +170758149955,219,0 +170758150003,220,0 +170758150053,221,0 +170758150101,222,0 +170758150150,221,0 +170758150199,222,0 +170758150248,222,0 +170758150295,222,0 +170758150343,223,0 +170758150391,224,0 +170758150439,223,0 +170758150489,224,0 +170758150538,224,0 +170758150586,224,0 +170758150634,223,0 +170758150682,223,0 +170758150731,216,0 +170758150779,216,0 +170758150829,216,0 +170758150877,217,0 +170758150925,218,0 +170758150974,218,0 +170758151024,219,0 +170758151073,220,0 +170758151123,221,0 +170758151171,221,0 +170758151219,223,0 +170758151266,222,0 +170758151314,223,0 +170758151362,224,0 +170758151410,223,0 +170758151458,224,0 +170758151508,224,0 +170758151555,220,0 +170758151605,223,0 +170758151653,217,0 +170758151702,217,0 +170758151752,218,0 +170758151801,219,0 +170758151849,219,0 +170758151899,219,0 +170758151947,219,0 +170758151995,220,0 +170758152042,222,0 +170758152090,221,0 +170758152138,223,0 +170758152186,222,0 +170758152234,223,0 +170758152282,223,0 +170758152332,223,0 +170758152380,224,0 +170758152429,223,0 +170758152477,223,0 +170758152525,222,0 +170758152573,217,0 +170758152621,218,0 +170758152669,220,0 +170758152716,219,0 +170758152764,220,0 +170758152812,220,0 +170758152860,222,0 +170758152908,223,0 +170758152956,222,0 +170758153006,224,0 +170758153055,223,0 +170758153105,223,0 +170758153154,224,0 +170758153204,224,0 +170758153252,224,0 +170758153300,224,0 +170758153347,224,0 +170758153397,223,0 +170758153445,217,0 +170758153494,217,0 +170758153542,218,0 +170758153590,219,0 +170758153638,221,0 +170758153686,220,0 +170758153733,220,0 +170758153781,220,0 +170758153829,223,0 +170758153877,223,0 +170758153925,223,0 +170758153972,223,0 +170758154020,225,0 +170758154070,224,0 +170758154117,223,0 +170758154167,224,0 +170758154216,224,0 +170758154264,223,0 +170758154312,223,0 +170758154362,217,0 +170758154410,217,0 +170758154459,217,0 +170758154509,218,0 +170758154557,219,0 +170758154606,219,0 +170758154656,221,0 +170758154704,220,0 +170758154751,221,0 +170758154799,223,0 +170758154849,222,0 +170758154897,224,0 +170758154945,223,0 +170758154993,224,0 +170758155040,224,0 +170758155088,224,0 +170758155138,226,0 +170758155186,224,0 +170758155235,222,0 +170758155285,216,0 +170758155332,217,0 +170758155380,218,0 +170758155430,219,0 +170758155479,220,0 +170758155527,220,0 +170758155575,221,0 +170758155625,221,0 +170758155674,222,0 +170758155722,222,0 +170758155772,223,0 +170758155820,223,0 +170758155867,224,0 +170758155915,223,0 +170758155963,224,0 +170758156011,225,0 +170758156059,223,0 +170758156107,223,0 +170758156156,217,0 +170758156204,217,0 +170758156254,218,0 +170758156302,218,0 +170758156351,219,0 +170758156399,221,0 +170758156447,220,0 +170758156495,221,0 +170758156544,222,0 +170758156592,223,0 +170758156640,222,0 +170758156688,222,0 +170758156737,223,0 +170758156787,224,0 +170758156835,223,0 +170758156883,223,0 +170758156932,223,0 +170758156982,223,0 +170758157031,222,0 +170758157080,216,0 +170758157128,215,0 +170758157178,216,0 +170758157226,216,0 +170758157275,216,0 +170758157325,217,0 +170758157373,219,0 +170758157420,220,0 +170758157468,220,0 +170758157516,221,0 +170758157566,222,0 +170758157614,222,0 +170758157663,223,0 +170758157712,224,0 +170758157760,222,0 +170758157810,223,0 +170758157859,224,0 +170758157907,223,0 +170758157957,224,0 +170758158006,215,0 +170758158056,215,0 +170758158105,216,0 +170758158154,216,0 +170758158202,216,0 +170758158252,216,0 +170758158301,217,0 +170758158349,217,0 +170758158397,218,0 +170758158445,219,0 +170758158494,220,0 +170758158544,221,0 +170758158593,220,0 +170758158643,221,0 +170758158692,220,0 +170758158740,219,0 +170758158789,219,0 +170758158837,224,0 +170758158885,216,0 +170758158933,214,0 +170758158981,215,0 +170758159028,215,0 +170758159076,215,0 +170758159124,215,0 +170758159172,215,0 +170758159222,216,0 +170758159271,217,0 +170758159319,218,0 +170758159368,218,0 +170758159416,220,0 +170758159464,220,0 +170758159512,221,0 +170758159560,222,0 +170758159608,222,0 +170758159656,222,0 +170758159704,223,0 +170758159752,221,0 +170758159801,215,0 +170758159849,215,0 +170758159897,215,0 +170758159945,215,0 +170758159994,215,0 +170758160044,216,0 +170758160092,216,0 +170758160141,217,0 +170758160189,218,0 +170758160237,219,0 +170758160285,221,0 +170758160333,221,0 +170758160381,222,0 +170758160429,221,0 +170758160478,223,0 +170758160526,222,0 +170758160574,222,0 +170758160624,223,0 +170758160673,224,0 +170758160723,215,0 +170758160770,215,0 +170758160820,215,0 +170758160868,216,0 +170758160916,217,0 +170758160965,217,0 +170758161015,217,0 +170758161063,218,0 +170758161110,220,0 +170758161158,220,0 +170758161208,222,0 +170758161256,223,0 +170758161303,223,0 +170758161353,224,0 +170758161401,223,0 +170758161450,224,0 +170758161500,223,0 +170758161549,223,0 +170758161597,216,0 +170758161645,215,0 +170758161695,214,0 +170758161744,215,0 +170758161792,216,0 +170758161840,217,0 +170758161888,217,0 +170758161936,218,0 +170758161984,219,0 +170758162032,220,0 +170758162079,221,0 +170758162127,222,0 +170758162175,222,0 +170758162223,223,0 +170758162271,222,0 +170758162319,223,0 +170758162368,222,0 +170758162416,223,0 +170758162464,223,0 +170758162512,215,0 +170758162562,215,0 +170758162611,215,0 +170758162659,216,0 +170758162707,217,0 +170758162757,216,0 +170758162805,217,0 +170758162854,218,0 +170758162902,217,0 +170758162950,218,0 +170758162998,220,0 +170758163046,220,0 +170758163093,220,0 +170758163141,220,0 +170758163189,221,0 +170758163237,221,0 +170758163287,221,0 +170758163335,222,0 +170758163384,220,0 +170758163432,215,0 +170758163480,215,0 +170758163528,215,0 +170758163576,214,0 +170758163623,216,0 +170758163671,216,0 +170758163721,217,0 +170758163770,217,0 +170758163818,217,0 +170758163868,218,0 +170758163916,218,0 +170758163965,219,0 +170758164013,220,0 +170758164061,221,0 +170758164110,221,0 +170758164158,223,0 +170758164206,224,0 +170758164254,224,0 +170758164302,221,0 +170758164350,215,0 +170758164398,215,0 +170758164447,217,0 +170758164497,218,0 +170758164545,218,0 +170758164594,218,0 +170758164642,220,0 +170758164690,220,0 +170758164740,221,0 +170758164788,221,0 +170758164837,223,0 +170758164886,222,0 +170758164934,223,0 +170758164982,223,0 +170758165030,223,0 +170758165078,223,0 +170758165126,223,0 +170758165175,222,0 +170758165223,219,0 +170758165273,219,0 +170758165322,219,0 +170758165370,220,0 +170758165418,221,0 +170758165466,221,0 +170758165514,221,0 +170758165562,222,0 +170758165611,224,0 +170758165659,223,0 +170758165707,223,0 +170758165757,224,0 +170758165804,223,0 +170758165852,224,0 +170758165900,224,0 +170758165950,224,0 +170758165998,224,0 +170758166046,224,0 +170758166094,222,0 +170758166142,220,0 +170758166190,220,0 +170758166237,222,0 +170758166287,222,0 +170758166335,222,0 +170758166384,222,0 +170758166432,222,0 +170758166482,223,0 +170758166529,224,0 +170758166577,224,0 +170758166625,223,0 +170758166675,224,0 +170758166724,224,0 +170758166774,224,0 +170758166822,224,0 +170758166869,224,0 +170758166917,224,0 +170758166965,221,0 +170758167013,216,0 +170758167061,216,0 +170758167111,216,0 +170758167160,217,0 +170758167210,218,0 +170758167259,219,0 +170758167307,220,0 +170758167357,221,0 +170758167404,220,0 +170758167454,221,0 +170758167502,221,0 +170758167550,223,0 +170758167598,223,0 +170758167646,224,0 +170758167695,223,0 +170758167743,223,0 +170758167791,224,0 +170758167839,224,0 +170758167888,223,0 +170758167936,216,0 +170758167984,216,0 +170758168032,216,0 +170758168081,217,0 +170758168129,218,0 +170758168179,219,0 +170758168228,218,0 +170758168276,219,0 +170758168326,220,0 +170758168374,220,0 +170758168423,222,0 +170758168471,222,0 +170758168521,223,0 +170758168570,223,0 +170758168618,223,0 +170758168666,224,0 +170758168715,224,0 +170758168765,223,0 +170758168812,220,0 +170758168860,215,0 +170758168908,215,0 +170758168956,215,0 +170758169004,218,0 +170758169054,218,0 +170758169102,218,0 +170758169151,218,0 +170758169199,220,0 +170758169247,221,0 +170758169296,220,0 +170758169344,221,0 +170758169394,222,0 +170758169442,223,0 +170758169491,224,0 +170758169541,222,0 +170758169589,223,0 +170758169638,223,0 +170758169688,223,0 +170758169736,216,0 +170758169785,215,0 +170758169834,215,0 +170758169882,216,0 +170758169930,217,0 +170758169978,217,0 +170758170026,218,0 +170758170074,218,0 +170758170123,219,0 +170758170171,220,0 +170758170221,220,0 +170758170269,222,0 +170758170317,222,0 +170758170364,222,0 +170758170412,222,0 +170758170460,222,0 +170758170510,224,0 +170758170558,222,0 +170758170605,224,0 +170758170653,216,0 +170758170701,215,0 +170758170751,215,0 +170758170800,216,0 +170758170848,216,0 +170758170898,217,0 +170758170945,217,0 +170758170993,218,0 +170758171041,219,0 +170758171091,221,0 +170758171139,220,0 +170758171188,221,0 +170758171236,221,0 +170758171284,222,0 +170758171332,224,0 +170758171379,223,0 +170758171429,223,0 +170758171477,224,0 +170758171524,223,0 +170758171572,215,0 +170758171620,215,0 +170758171668,215,0 +170758171716,216,0 +170758171765,217,0 +170758171813,218,0 +170758171861,219,0 +170758171909,219,0 +170758171958,219,0 +170758172006,220,0 +170758172054,221,0 +170758172102,222,0 +170758172149,221,0 +170758172197,223,0 +170758172245,222,0 +170758172293,224,0 +170758172341,223,0 +170758172389,224,0 +170758172438,216,0 +170758172488,216,0 +170758172535,217,0 +170758172585,218,0 +170758172634,218,0 +170758172682,220,0 +170758172730,220,0 +170758172780,220,0 +170758172829,220,0 +170758172877,221,0 +170758172925,221,0 +170758172973,222,0 +170758173021,222,0 +170758173068,223,0 +170758173116,224,0 +170758173166,223,0 +170758173214,223,0 +170758173263,223,0 +170758173311,223,0 +170758173359,216,0 +170758173407,216,0 +170758173456,217,0 +170758173504,218,0 +170758173552,218,0 +170758173602,219,0 +170758173649,219,0 +170758173697,220,0 +170758173745,220,0 +170758173793,220,0 +170758173842,222,0 +170758173890,221,0 +170758173938,222,0 +170758173986,223,0 +170758174036,223,0 +170758174084,223,0 +170758174133,223,0 +170758174181,223,0 +170758174230,222,0 +170758174278,215,0 +170758174326,215,0 +170758174376,216,0 +170758174424,216,0 +170758174472,217,0 +170758174521,219,0 +170758174571,218,0 +170758174620,219,0 +170758174670,220,0 +170758174719,220,0 +170758174767,223,0 +170758174815,222,0 +170758174863,224,0 +170758174912,223,0 +170758174960,224,0 +170758175008,224,0 +170758175056,223,0 +170758175104,223,0 +170758175152,216,0 +170758175200,216,0 +170758175248,217,0 +170758175296,218,0 +170758175345,219,0 +170758175393,219,0 +170758175441,219,0 +170758175489,221,0 +170758175537,221,0 +170758175585,221,0 +170758175635,222,0 +170758175684,223,0 +170758175734,223,0 +170758175782,223,0 +170758175830,223,0 +170758175877,223,0 +170758175925,223,0 +170758175975,224,0 +170758176024,222,0 +170758176074,219,0 +170758176123,219,0 +170758176173,219,0 +170758176221,220,0 +170758176269,221,0 +170758176317,229,0 +170758176365,222,0 +170758176413,221,0 +170758176460,222,0 +170758176508,222,0 +170758176556,223,0 +170758176606,223,0 +170758176655,223,0 +170758176703,223,0 +170758176751,224,0 +170758176799,223,0 +170758176847,223,0 +170758176894,223,0 +170758176942,222,0 +170758176990,217,0 +170758177040,217,0 +170758177088,218,0 +170758177137,218,0 +170758177185,219,0 +170758177233,220,0 +170758177282,221,0 +170758177330,221,0 +170758177380,221,0 +170758177429,223,0 +170758177477,223,0 +170758177526,223,0 +170758177576,224,0 +170758177625,224,0 +170758177675,223,0 +170758177724,223,0 +170758177774,223,0 +170758177822,223,0 +170758177869,216,0 +170758177917,215,0 +170758177965,216,0 +170758178013,217,0 +170758178061,218,0 +170758178110,218,0 +170758178158,219,0 +170758178206,220,0 +170758178256,220,0 +170758178303,221,0 +170758178353,221,0 +170758178401,222,0 +170758178449,223,0 +170758178497,223,0 +170758178545,223,0 +170758178593,222,0 +170758178642,222,0 +170758178691,220,0 +170758178739,224,0 +170758178787,216,0 +170758178837,215,0 +170758178884,217,0 +170758178932,217,0 +170758178980,218,0 +170758179029,218,0 +170758179079,218,0 +170758179129,219,0 +170758179176,220,0 +170758179224,219,0 +170758179274,220,0 +170758179323,221,0 +170758179371,222,0 +170758179419,222,0 +170758179469,222,0 +170758179517,222,0 +170758179565,223,0 +170758179613,223,0 +170758179662,222,0 +170758179710,216,0 +170758179759,217,0 +170758179807,217,0 +170758179855,218,0 +170758179903,218,0 +170758179953,219,0 +170758180002,219,0 +170758180050,220,0 +170758180098,222,0 +170758180146,221,0 +170758180194,222,0 +170758180242,224,0 +170758180291,224,0 +170758180339,224,0 +170758180387,223,0 +170758180436,223,0 +170758180484,223,0 +170758180532,222,0 +170758180580,218,0 +170758180630,217,0 +170758180677,219,0 +170758180727,218,0 +170758180776,219,0 +170758180826,220,0 +170758180874,220,0 +170758180922,221,0 +170758180970,221,0 +170758181019,222,0 +170758181067,223,0 +170758181117,226,0 +170758181165,224,0 +170758181214,223,0 +170758181262,224,0 +170758181310,225,0 +170758181358,229,0 +170758181407,223,0 +170758181455,223,0 +170758181505,218,0 +170758181554,219,0 +170758181602,220,0 +170758181650,220,0 +170758181698,220,0 +170758181746,222,0 +170758181794,222,0 +170758181842,223,0 +170758181889,224,0 +170758181939,224,0 +170758181987,224,0 +170758182035,225,0 +170758182084,224,0 +170758182132,224,0 +170758182180,224,0 +170758182228,224,0 +170758182276,223,0 +170758182324,223,0 +170758182373,222,0 +170758182421,220,0 +170758182471,220,0 +170758182520,220,0 +170758182568,221,0 +170758182616,222,0 +170758182664,223,0 +170758182712,223,0 +170758182760,224,0 +170758182809,223,0 +170758182857,223,0 +170758182905,222,0 +170758182953,224,0 +170758183003,223,0 +170758183051,224,0 +170758183098,225,0 +170758183146,223,0 +170758183194,223,0 +170758183242,223,0 +170758183290,218,0 +170758183338,217,0 +170758183387,217,0 +170758183435,218,0 +170758183483,219,0 +170758183531,220,0 +170758183579,220,0 +170758183627,221,0 +170758183676,221,0 +170758183724,222,0 +170758183774,223,0 +170758183822,222,0 +170758183871,222,0 +170758183920,223,0 +170758183968,224,0 +170758184016,223,0 +170758184064,224,0 +170758184112,221,0 +170758184160,224,0 +170758184209,216,0 +170758184257,215,0 +170758184305,215,0 +170758184353,215,0 +170758184401,216,0 +170758184449,217,0 +170758184496,218,0 +170758184544,219,0 +170758184594,220,0 +170758184641,221,0 +170758184689,220,0 +170758184737,221,0 +170758184785,222,0 +170758184833,222,0 +170758184882,222,0 +170758184932,222,0 +170758184979,223,0 +170758185027,223,0 +170758185075,222,0 +170758185123,216,0 +170758185171,214,0 +170758185219,215,0 +170758185267,215,0 +170758185314,216,0 +170758185364,217,0 +170758185412,216,0 +170758185461,217,0 +170758185509,218,0 +170758185559,219,0 +170758185608,219,0 +170758185656,219,0 +170758185704,221,0 +170758185754,222,0 +170758185801,222,0 +170758185849,223,0 +170758185899,222,0 +170758185947,223,0 +170758185995,221,0 +170758186044,214,0 +170758186092,215,0 +170758186140,215,0 +170758186189,216,0 +170758186237,217,0 +170758186285,217,0 +170758186333,218,0 +170758186381,218,0 +170758186429,219,0 +170758186477,220,0 +170758186524,220,0 +170758186572,221,0 +170758186622,221,0 +170758186670,225,0 +170758186718,223,0 +170758186766,223,0 +170758186815,224,0 +170758186863,223,0 +170758186911,216,0 +170758186959,215,0 +170758187008,215,0 +170758187056,215,0 +170758187104,216,0 +170758187154,216,0 +170758187201,217,0 +170758187249,219,0 +170758187297,219,0 +170758187345,219,0 +170758187392,220,0 +170758187440,221,0 +170758187490,221,0 +170758187537,221,0 +170758187585,222,0 +170758187633,222,0 +170758187681,221,0 +170758187728,221,0 +170758187776,223,0 +170758187824,216,0 +170758187873,214,0 +170758187921,215,0 +170758187969,215,0 +170758188017,216,0 +170758188065,217,0 +170758188113,217,0 +170758188160,218,0 +170758188210,219,0 +170758188258,219,0 +170758188307,220,0 +170758188357,221,0 +170758188405,220,0 +170758188454,221,0 +170758188504,222,0 +170758188552,224,0 +170758188599,223,0 +170758188647,223,0 +170758188697,223,0 +170758188746,215,0 +170758188796,215,0 +170758188844,216,0 +170758188891,217,0 +170758188939,218,0 +170758188987,218,0 +170758189035,219,0 +170758189084,219,0 +170758189132,220,0 +170758189180,221,0 +170758189228,221,0 +170758189276,222,0 +170758189323,225,0 +170758189371,222,0 +170758189419,223,0 +170758189467,222,0 +170758189515,223,0 +170758189563,224,0 +170758189611,223,0 +170758189659,215,0 +170758189707,215,0 +170758189754,217,0 +170758189802,218,0 +170758189850,218,0 +170758189899,220,0 +170758189947,220,0 +170758189995,220,0 +170758190043,220,0 +170758190092,221,0 +170758190140,223,0 +170758190188,222,0 +170758190236,223,0 +170758190284,224,0 +170758190331,223,0 +170758190379,228,0 +170758190427,224,0 +170758190475,223,0 +170758190523,216,0 +170758190570,215,0 +170758190618,214,0 +170758190666,215,0 +170758190715,214,0 +170758190763,215,0 +170758190813,217,0 +170758190861,217,0 +170758190910,218,0 +170758190958,218,0 +170758191006,219,0 +170758191054,220,0 +170758191103,221,0 +170758191151,222,0 +170758191199,221,0 +170758191247,222,0 +170758191297,222,0 +170758191344,222,0 +170758191392,223,0 +170758191442,216,0 +170758191490,214,0 +170758191538,214,0 +170758191586,214,0 +170758191635,215,0 +170758191683,215,0 +170758191731,215,0 +170758191781,216,0 +170758191828,215,0 +170758191876,216,0 +170758191926,216,0 +170758191974,217,0 +170758192022,217,0 +170758192070,220,0 +170758192117,221,0 +170758192165,221,0 +170758192213,220,0 +170758192261,223,0 +170758192311,223,0 +170758192359,215,0 +170758192408,215,0 +170758192456,215,0 +170758192504,215,0 +170758192552,215,0 +170758192599,215,0 +170758192647,215,0 +170758192695,216,0 +170758192744,216,0 +170758192792,216,0 +170758192842,217,0 +170758192889,218,0 +170758192937,219,0 +170758192985,221,0 +170758193033,220,0 +170758193081,220,0 +170758193130,221,0 +170758193178,223,0 +170758193228,216,0 +170758193276,215,0 +170758193323,215,0 +170758193371,216,0 +170758193419,216,0 +170758193467,218,0 +170758193515,218,0 +170758193564,220,0 +170758193612,220,0 +170758193660,221,0 +170758193708,221,0 +170758193755,222,0 +170758193803,223,0 +170758193851,223,0 +170758193899,222,0 +170758193947,223,0 +170758193995,223,0 +170758194042,223,0 +170758194090,222,0 +170758194138,217,0 +170758194186,216,0 +170758194234,217,0 +170758194282,217,0 +170758194331,219,0 +170758194379,218,0 +170758194427,219,0 +170758194475,219,0 +170758194523,220,0 +170758194573,220,0 +170758194622,220,0 +170758194670,222,0 +170758194719,222,0 +170758194769,222,0 +170758194818,223,0 +170758194866,224,0 +170758194916,222,0 +170758194965,222,0 +170758195013,222,0 +170758195061,216,0 +170758195109,216,0 +170758195157,217,0 +170758195205,217,0 +170758195254,219,0 +170758195304,217,0 +170758195351,219,0 +170758195401,219,0 +170758195451,220,0 +170758195498,220,0 +170758195546,222,0 +170758195596,223,0 +170758195644,223,0 +170758195693,223,0 +170758195743,223,0 +170758195792,223,0 +170758195840,223,0 +170758195888,222,0 +170758195938,222,0 +170758195986,217,0 +170758196034,218,0 +170758196082,219,0 +170758196129,221,0 +170758196177,220,0 +170758196225,221,0 +170758196273,221,0 +170758196323,222,0 +170758196371,223,0 +170758196420,223,0 +170758196468,224,0 +170758196516,222,0 +170758196564,224,0 +170758196613,229,0 +170758196663,225,0 +170758196711,224,0 +170758196759,224,0 +170758196807,223,0 +170758196855,217,0 +170758196904,219,0 +170758196954,219,0 +170758197001,220,0 +170758197051,220,0 +170758197099,221,0 +170758197148,222,0 +170758197196,222,0 +170758197244,223,0 +170758197292,224,0 +170758197342,222,0 +170758197390,223,0 +170758197439,224,0 +170758197489,224,0 +170758197538,224,0 +170758197586,224,0 +170758197634,223,0 +170758197682,222,0 +170758197732,224,0 +170758197781,218,0 +170758197829,219,0 +170758197877,219,0 +170758197925,220,0 +170758197973,221,0 +170758198022,222,0 +170758198071,221,0 +170758198119,219,0 +170758198169,218,0 +170758198217,218,0 +170758198265,223,0 +170758198314,223,0 +170758198362,225,0 +170758198410,224,0 +170758198458,225,0 +170758198506,224,0 +170758198554,223,0 +170758198602,223,0 +170758198649,223,0 +170758198697,218,0 +170758198745,219,0 +170758198795,220,0 +170758198843,220,0 +170758198891,221,0 +170758198940,221,0 +170758198988,222,0 +170758199037,222,0 +170758199085,223,0 +170758199135,223,0 +170758199183,224,0 +170758199232,225,0 +170758199280,224,0 +170758199328,224,0 +170758199378,225,0 +170758199426,224,0 +170758199473,223,0 +170758199521,223,0 +170758199569,220,0 +170758199619,220,0 +170758199667,220,0 +170758199714,221,0 +170758199762,221,0 +170758199812,221,0 +170758199859,222,0 +170758199907,221,0 +170758199957,222,0 +170758200005,222,0 +170758200053,223,0 +170758200100,224,0 +170758200150,224,0 +170758200198,223,0 +170758200247,224,0 +170758200297,225,0 +170758200345,224,0 +170758200393,223,0 +170758200441,222,0 +170758200490,215,0 +170758200538,215,0 +170758200587,216,0 +170758200635,217,0 +170758200683,218,0 +170758200731,218,0 +170758200779,219,0 +170758200827,219,0 +170758200875,220,0 +170758200923,221,0 +170758200971,222,0 +170758201019,224,0 +170758201068,222,0 +170758201116,224,0 +170758201164,223,0 +170758201214,223,0 +170758201262,223,0 +170758201310,223,0 +170758201357,222,0 +170758201407,215,0 +170758201455,215,0 +170758201503,215,0 +170758201552,216,0 +170758201600,218,0 +170758201650,219,0 +170758201698,218,0 +170758201747,219,0 +170758201797,220,0 +170758201845,219,0 +170758201892,221,0 +170758201940,223,0 +170758201988,222,0 +170758202038,223,0 +170758202085,224,0 +170758202133,223,0 +170758202181,223,0 +170758202229,223,0 +170758202279,216,0 +170758202327,215,0 +170758202375,215,0 +170758202424,215,0 +170758202472,216,0 +170758202522,217,0 +170758202570,217,0 +170758202619,218,0 +170758202669,219,0 +170758202718,220,0 +170758202766,220,0 +170758202814,222,0 +170758202864,221,0 +170758202911,220,0 +170758202961,221,0 +170758203009,222,0 +170758203057,221,0 +170758203105,222,0 +170758203154,223,0 +170758203202,215,0 +170758203252,215,0 +170758203300,215,0 +170758203347,216,0 +170758203397,216,0 +170758203445,217,0 +170758203493,217,0 +170758203541,218,0 +170758203589,218,0 +170758203637,219,0 +170758203685,220,0 +170758203734,221,0 +170758203782,221,0 +170758203830,222,0 +170758203878,222,0 +170758203926,224,0 +170758203975,225,0 +170758204025,223,0 +170758204073,218,0 +170758204121,215,0 +170758204170,215,0 +170758204218,215,0 +170758204266,216,0 +170758204314,216,0 +170758204362,216,0 +170758204411,217,0 +170758204459,218,0 +170758204509,219,0 +170758204557,220,0 +170758204605,220,0 +170758204652,221,0 +170758204702,221,0 +170758204751,222,0 +170758204801,223,0 +170758204850,221,0 +170758204900,222,0 +170758204948,223,0 +170758204997,216,0 +170758205045,215,0 +170758205093,215,0 +170758205143,215,0 +170758205190,216,0 +170758205238,216,0 +170758205286,217,0 +170758205334,218,0 +170758205382,218,0 +170758205430,220,0 +170758205478,220,0 +170758205527,220,0 +170758205575,222,0 +170758205623,222,0 +170758205671,221,0 +170758205719,222,0 +170758205769,222,0 +170758205817,223,0 +170758205866,223,0 +170758205914,215,0 +170758205962,215,0 +170758206010,215,0 +170758206060,215,0 +170758206107,215,0 +170758206157,216,0 +170758206205,216,0 +170758206255,217,0 +170758206304,218,0 +170758206352,219,0 +170758206400,219,0 +170758206448,220,0 +170758206496,221,0 +170758206545,220,0 +170758206593,220,0 +170758206641,221,0 +170758206691,223,0 +170758206740,223,0 +170758206788,216,0 +170758206838,214,0 +170758206886,215,0 +170758206935,216,0 +170758206985,217,0 +170758207033,217,0 +170758207082,218,0 +170758207130,221,0 +170758207179,218,0 +170758207227,219,0 +170758207275,220,0 +170758207325,221,0 +170758207373,222,0 +170758207421,221,0 +170758207470,221,0 +170758207520,222,0 +170758207569,220,0 +170758207619,222,0 +170758207667,223,0 +170758207715,216,0 +170758207763,214,0 +170758207812,215,0 +170758207860,215,0 +170758207908,215,0 +170758207957,216,0 +170758208005,217,0 +170758208055,218,0 +170758208104,218,0 +170758208152,219,0 +170758208200,220,0 +170758208248,220,0 +170758208297,221,0 +170758208347,221,0 +170758208396,222,0 +170758208444,221,0 +170758208492,222,0 +170758208542,223,0 +170758208590,226,0 +170758208639,214,0 +170758208687,214,0 +170758208737,215,0 +170758208786,215,0 +170758208834,215,0 +170758208884,215,0 +170758208933,216,0 +170758208981,216,0 +170758209029,217,0 +170758209077,218,0 +170758209125,219,0 +170758209173,219,0 +170758209221,220,0 +170758209269,220,0 +170758209318,221,0 +170758209368,222,0 +170758209416,221,0 +170758209465,223,0 +170758209515,216,0 +170758209563,215,0 +170758209612,215,0 +170758209660,215,0 +170758209710,216,0 +170758209758,217,0 +170758209806,218,0 +170758209854,218,0 +170758209902,219,0 +170758209950,219,0 +170758209999,220,0 +170758210047,220,0 +170758210096,221,0 +170758210144,221,0 +170758210192,222,0 +170758210240,223,0 +170758210290,223,0 +170758210338,223,0 +170758210387,224,0 +170758210435,224,0 +170758210483,224,0 +170758210531,224,0 +170758210579,224,0 +170758210628,224,0 +170758210676,224,0 +170758210724,223,0 +170758210772,223,0 +170758210819,222,0 +170758210867,219,0 +170758210915,217,0 +170758210963,218,0 +170758211011,219,0 +170758211059,219,0 +170758211106,220,0 +170758211154,219,0 +170758211204,222,0 +170758211251,222,0 +170758211299,223,0 +170758211347,223,0 +170758211395,223,0 +170758211443,223,0 +170758211491,223,0 +170758211539,224,0 +170758211587,224,0 +170758211634,224,0 +170758211682,224,0 +170758211730,222,0 +170758211778,218,0 +170758211828,217,0 +170758211877,217,0 +170758211925,220,0 +170758211973,219,0 +170758212022,220,0 +170758212072,220,0 +170758212121,220,0 +170758212169,221,0 +170758212219,222,0 +170758212267,222,0 +170758212315,222,0 +170758212363,223,0 +170758212410,224,0 +170758212458,222,0 +170758212508,223,0 +170758212555,223,0 +170758212603,223,0 +170758212651,221,0 +170758212699,216,0 +170758212747,216,0 +170758212795,217,0 +170758212844,217,0 +170758212894,218,0 +170758212943,218,0 +170758212993,219,0 +170758213040,220,0 +170758213088,221,0 +170758213138,221,0 +170758213186,221,0 +170758213234,223,0 +170758213283,223,0 +170758213332,222,0 +170758213380,224,0 +170758213428,224,0 +170758213476,222,0 +170758213526,222,0 +170758213574,216,0 +170758213622,215,0 +170758213671,216,0 +170758213721,216,0 +170758213769,217,0 +170758213816,217,0 +170758213864,216,0 +170758213912,215,0 +170758213960,216,0 +170758214010,217,0 +170758214059,219,0 +170758214107,221,0 +170758214155,220,0 +170758214203,221,0 +170758214251,222,0 +170758214299,222,0 +170758214347,222,0 +170758214396,222,0 +170758214444,222,0 +170758214492,216,0 +170758214540,214,0 +170758214588,215,0 +170758214636,215,0 +170758214683,216,0 +170758214732,216,0 +170758214782,217,0 +170758214829,219,0 +170758214877,219,0 +170758214925,219,0 +170758214973,221,0 +170758215021,222,0 +170758215070,221,0 +170758215118,222,0 +170758215166,222,0 +170758215214,223,0 +170758215262,223,0 +170758215310,223,0 +170758215358,222,0 +170758215406,216,0 +170758215454,216,0 +170758215502,217,0 +170758215551,218,0 +170758215601,218,0 +170758215649,219,0 +170758215698,220,0 +170758215746,220,0 +170758215794,221,0 +170758215843,221,0 +170758215893,222,0 +170758215942,222,0 +170758215990,224,0 +170758216038,222,0 +170758216086,223,0 +170758216136,224,0 +170758216183,223,0 +170758216233,223,0 +170758216281,216,0 +170758216330,217,0 +170758216380,217,0 +170758216429,218,0 +170758216479,219,0 +170758216527,219,0 +170758216575,220,0 +170758216622,220,0 +170758216672,220,0 +170758216720,221,0 +170758216768,223,0 +170758216816,222,0 +170758216865,223,0 +170758216913,222,0 +170758216961,223,0 +170758217009,223,0 +170758217057,223,0 +170758217105,223,0 +170758217153,222,0 +170758217202,216,0 +170758217252,216,0 +170758217301,217,0 +170758217349,218,0 +170758217397,219,0 +170758217447,219,0 +170758217496,220,0 +170758217544,221,0 +170758217592,220,0 +170758217640,222,0 +170758217688,222,0 +170758217737,223,0 +170758217787,222,0 +170758217835,224,0 +170758217884,223,0 +170758217934,223,0 +170758217983,223,0 +170758218031,223,0 +170758218081,221,0 +170758218129,216,0 +170758218178,217,0 +170758218226,217,0 +170758218274,218,0 +170758218322,219,0 +170758218371,219,0 +170758218419,220,0 +170758218469,221,0 +170758218517,222,0 +170758218566,223,0 +170758218616,223,0 +170758218664,224,0 +170758218713,225,0 +170758218763,225,0 +170758218810,224,0 +170758218858,223,0 +170758218908,222,0 +170758218956,222,0 +170758219004,216,0 +170758219052,215,0 +170758219099,216,0 +170758219149,217,0 +170758219197,218,0 +170758219246,219,0 +170758219294,219,0 +170758219342,219,0 +170758219390,220,0 +170758219438,221,0 +170758219486,222,0 +170758219535,222,0 +170758219583,223,0 +170758219632,222,0 +170758219681,223,0 +170758219729,226,0 +170758219777,224,0 +170758219825,223,0 +170758219873,223,0 +170758219920,215,0 +170758219970,215,0 +170758220018,216,0 +170758220067,217,0 +170758220117,218,0 +170758220164,218,0 +170758220214,219,0 +170758220262,220,0 +170758220310,221,0 +170758220358,220,0 +170758220407,222,0 +170758220455,223,0 +170758220505,223,0 +170758220553,223,0 +170758220601,222,0 +170758220648,223,0 +170758220698,226,0 +170758220746,223,0 +170758220794,222,0 +170758220842,215,0 +170758220890,215,0 +170758220937,215,0 +170758220985,216,0 +170758221035,217,0 +170758221083,217,0 +170758221131,218,0 +170758221178,219,0 +170758221226,220,0 +170758221276,220,0 +170758221324,221,0 +170758221372,222,0 +170758221421,222,0 +170758221469,223,0 +170758221518,224,0 +170758221566,223,0 +170758221614,225,0 +170758221662,223,0 +170758221710,216,0 +170758221760,215,0 +170758221809,215,0 +170758221859,216,0 +170758221907,217,0 +170758221956,218,0 +170758222004,218,0 +170758222054,218,0 +170758222103,219,0 +170758222151,219,0 +170758222199,222,0 +170758222247,221,0 +170758222295,221,0 +170758222343,223,0 +170758222392,222,0 +170758222440,223,0 +170758222488,224,0 +170758222536,223,0 +170758222585,222,0 +170758222633,216,0 +170758222681,215,0 +170758222729,217,0 +170758222777,217,0 +170758222826,218,0 +170758222875,218,0 +170758222922,219,0 +170758222970,219,0 +170758223020,220,0 +170758223068,221,0 +170758223115,221,0 +170758223165,223,0 +170758223213,223,0 +170758223260,223,0 +170758223308,223,0 +170758223356,224,0 +170758223406,223,0 +170758223453,223,0 +170758223503,224,0 +170758223551,215,0 +170758223599,216,0 +170758223647,217,0 +170758223695,218,0 +170758223742,218,0 +170758223792,219,0 +170758223840,219,0 +170758223889,220,0 +170758223937,220,0 +170758223985,221,0 +170758224033,222,0 +170758224082,223,0 +170758224130,224,0 +170758224180,223,0 +170758224228,224,0 +170758224276,224,0 +170758224325,223,0 +170758224373,223,0 +170758224422,217,0 +170758224470,216,0 +170758224518,217,0 +170758224568,218,0 +170758224615,218,0 +170758224663,219,0 +170758224711,219,0 +170758224759,220,0 +170758224807,221,0 +170758224857,222,0 +170758224904,223,0 +170758224952,223,0 +170758225000,222,0 +170758225048,225,0 +170758225098,224,0 +170758225146,224,0 +170758225194,224,0 +170758225242,223,0 +170758225291,223,0 +170758225339,217,0 +170758225387,217,0 +170758225436,218,0 +170758225484,217,0 +170758225532,219,0 +170758225582,222,0 +170758225630,222,0 +170758225679,221,0 +170758225727,223,0 +170758225777,223,0 +170758225824,224,0 +170758225872,223,0 +170758225922,224,0 +170758225970,224,0 +170758226018,223,0 +170758226066,224,0 +170758226114,224,0 +170758226161,223,0 +170758226211,222,0 +170758226259,217,0 +170758226307,218,0 +170758226355,219,0 +170758226402,219,0 +170758226450,220,0 +170758226498,220,0 +170758226546,221,0 +170758226596,221,0 +170758226644,221,0 +170758226693,221,0 +170758226741,222,0 +170758226789,222,0 +170758226838,223,0 +170758226886,224,0 +170758226936,223,0 +170758226984,227,0 +170758227033,224,0 +170758227082,223,0 +170758227130,216,0 +170758227178,216,0 +170758227226,217,0 +170758227276,218,0 +170758227324,219,0 +170758227373,219,0 +170758227421,221,0 +170758227469,221,0 +170758227518,221,0 +170758227566,221,0 +170758227614,222,0 +170758227662,223,0 +170758227709,222,0 +170758227757,223,0 +170758227805,223,0 +170758227853,223,0 +170758227901,223,0 +170758227949,224,0 +170758227996,222,0 +170758228044,216,0 +170758228092,215,0 +170758228140,215,0 +170758228189,217,0 +170758228237,218,0 +170758228285,218,0 +170758228333,219,0 +170758228381,219,0 +170758228430,220,0 +170758228478,222,0 +170758228526,222,0 +170758228575,222,0 +170758228623,221,0 +170758228671,222,0 +170758228719,223,0 +170758228767,222,0 +170758228814,221,0 +170758228862,221,0 +170758228910,223,0 +170758228958,216,0 +170758229006,215,0 +170758229054,215,0 +170758229102,216,0 +170758229149,216,0 +170758229197,217,0 +170758229245,218,0 +170758229293,218,0 +170758229341,218,0 +170758229389,220,0 +170758229438,219,0 +170758229486,221,0 +170758229534,221,0 +170758229582,221,0 +170758229630,222,0 +170758229678,221,0 +170758229726,222,0 +170758229773,223,0 +170758229821,223,0 +170758229871,215,0 +170758229918,215,0 +170758229966,216,0 +170758230014,216,0 +170758230062,217,0 +170758230110,217,0 +170758230158,217,0 +170758230206,219,0 +170758230255,219,0 +170758230303,220,0 +170758230351,220,0 +170758230398,225,0 +170758230446,223,0 +170758230496,224,0 +170758230544,223,0 +170758230591,223,0 +170758230639,224,0 +170758230687,223,0 +170758230735,223,0 +170758230783,215,0 +170758230831,215,0 +170758230879,215,0 +170758230927,216,0 +170758230974,216,0 +170758231022,217,0 +170758231070,217,0 +170758231118,218,0 +170758231166,218,0 +170758231214,219,0 +170758231262,221,0 +170758231309,221,0 +170758231357,222,0 +170758231405,222,0 +170758231453,223,0 +170758231503,223,0 +170758231551,223,0 +170758231598,223,0 +170758231648,221,0 +170758231697,215,0 +170758231747,215,0 +170758231796,216,0 +170758231844,217,0 +170758231894,218,0 +170758231943,219,0 +170758231991,220,0 +170758232039,221,0 +170758232087,221,0 +170758232135,221,0 +170758232184,222,0 +170758232232,222,0 +170758232282,223,0 +170758232330,223,0 +170758232379,224,0 +170758232429,223,0 +170758232478,223,0 +170758232526,222,0 +170758232576,216,0 +170758232625,215,0 +170758232675,216,0 +170758232724,217,0 +170758232774,218,0 +170758232823,219,0 +170758232873,220,0 +170758232921,220,0 +170758232969,221,0 +170758233018,222,0 +170758233066,225,0 +170758233114,223,0 +170758233163,223,0 +170758233213,222,0 +170758233261,224,0 +170758233310,224,0 +170758233358,223,0 +170758233408,223,0 +170758233457,220,0 +170758233505,214,0 +170758233553,215,0 +170758233601,215,0 +170758233649,216,0 +170758233697,218,0 +170758233745,217,0 +170758233794,218,0 +170758233842,219,0 +170758233890,219,0 +170758233938,215,0 +170758233986,221,0 +170758234033,221,0 +170758234081,222,0 +170758234129,222,0 +170758234177,222,0 +170758234225,223,0 +170758234273,223,0 +170758234322,223,0 +170758234370,216,0 +170758234418,215,0 +170758234467,215,0 +170758234515,215,0 +170758234563,215,0 +170758234611,217,0 +170758234659,217,0 +170758234707,217,0 +170758234755,218,0 +170758234804,219,0 +170758234852,219,0 +170758234901,220,0 +170758234949,221,0 +170758234997,221,0 +170758235047,223,0 +170758235096,221,0 +170758235144,221,0 +170758235192,222,0 +170758235242,223,0 +170758235291,216,0 +170758235339,215,0 +170758235387,215,0 +170758235436,215,0 +170758235484,216,0 +170758235534,216,0 +170758235583,217,0 +170758235631,217,0 +170758235679,218,0 +170758235727,219,0 +170758235775,220,0 +170758235825,220,0 +170758235873,221,0 +170758235920,222,0 +170758235968,223,0 +170758236018,223,0 +170758236066,223,0 +170758236114,223,0 +170758236162,223,0 +170758236210,215,0 +170758236259,215,0 +170758236309,215,0 +170758236356,215,0 +170758236404,215,0 +170758236452,216,0 +170758236502,217,0 +170758236550,218,0 +170758236599,218,0 +170758236649,219,0 +170758236697,219,0 +170758236745,221,0 +170758236792,221,0 +170758236840,221,0 +170758236888,223,0 +170758236938,222,0 +170758236987,221,0 +170758237035,223,0 +170758237083,216,0 +170758237133,215,0 +170758237180,215,0 +170758237228,215,0 +170758237278,215,0 +170758237327,216,0 +170758237375,216,0 +170758237423,217,0 +170758237471,218,0 +170758237520,218,0 +170758237568,219,0 +170758237616,219,0 +170758237664,220,0 +170758237712,221,0 +170758237762,221,0 +170758237810,222,0 +170758237858,221,0 +170758237907,222,0 +170758237955,222,0 +170758238004,215,0 +170758238054,215,0 +170758238103,215,0 +170758238151,216,0 +170758238199,217,0 +170758238247,217,0 +170758238295,217,0 +170758238343,218,0 +170758238391,219,0 +170758238438,218,0 +170758238486,219,0 +170758238534,221,0 +170758238582,220,0 +170758238630,221,0 +170758238679,222,0 +170758238729,221,0 +170758238777,223,0 +170758238825,223,0 +170758238873,222,0 +170758238921,217,0 +170758238969,217,0 +170758239017,219,0 +170758239065,219,0 +170758239113,219,0 +170758239160,220,0 +170758239208,222,0 +170758239256,222,0 +170758239306,222,0 +170758239354,222,0 +170758239402,222,0 +170758239450,223,0 +170758239499,224,0 +170758239547,223,0 +170758239597,224,0 +170758239646,224,0 +170758239694,224,0 +170758239742,223,0 +170758239790,217,0 +170758239838,219,0 +170758239886,219,0 +170758239935,220,0 +170758239983,221,0 +170758240031,221,0 +170758240079,223,0 +170758240128,222,0 +170758240176,223,0 +170758240224,223,0 +170758240272,224,0 +170758240320,224,0 +170758240369,224,0 +170758240417,225,0 +170758240465,224,0 +170758240513,223,0 +170758240563,223,0 +170758240611,223,0 +170758240660,223,0 +170758240708,219,0 +170758240756,219,0 +170758240804,219,0 +170758240853,220,0 +170758240903,221,0 +170758240952,221,0 +170758241000,221,0 +170758241048,222,0 +170758241096,223,0 +170758241144,223,0 +170758241192,224,0 +170758241240,223,0 +170758241288,223,0 +170758241336,224,0 +170758241384,224,0 +170758241433,224,0 +170758241481,223,0 +170758241529,223,0 +170758241579,222,0 +170758241626,218,0 +170758241676,218,0 +170758241724,218,0 +170758241772,220,0 +170758241821,219,0 +170758241871,221,0 +170758241919,221,0 +170758241967,222,0 +170758242015,222,0 +170758242064,222,0 +170758242114,223,0 +170758242161,224,0 +170758242209,224,0 +170758242257,224,0 +170758242305,224,0 +170758242355,225,0 +170758242403,224,0 +170758242451,223,0 +170758242498,217,0 +170758242546,216,0 +170758242594,217,0 +170758242644,219,0 +170758242692,219,0 +170758242741,219,0 +170758242791,219,0 +170758242839,221,0 +170758242888,221,0 +170758242936,221,0 +170758242984,221,0 +170758243033,223,0 +170758243081,222,0 +170758243131,224,0 +170758243180,223,0 +170758243228,224,0 +170758243276,224,0 +170758243324,222,0 +170758243373,222,0 +170758243421,216,0 +170758243469,215,0 +170758243517,217,0 +170758243565,217,0 +170758243613,217,0 +170758243661,218,0 +170758243709,220,0 +170758243758,219,0 +170758243806,220,0 +170758243854,221,0 +170758243902,222,0 +170758243951,222,0 +170758243999,223,0 +170758244047,222,0 +170758244095,223,0 +170758244143,224,0 +170758244191,225,0 +170758244239,224,0 +170758244287,222,0 +170758244335,216,0 +170758244384,215,0 +170758244434,217,0 +170758244482,218,0 +170758244530,217,0 +170758244578,218,0 +170758244627,219,0 +170758244675,220,0 +170758244723,220,0 +170758244771,220,0 +170758244819,222,0 +170758244868,223,0 +170758244916,222,0 +170758244964,224,0 +170758245012,224,0 +170758245060,224,0 +170758245109,224,0 +170758245157,221,0 +170758245205,220,0 +170758245253,216,0 +170758245302,216,0 +170758245352,218,0 +170758245400,218,0 +170758245448,218,0 +170758245496,219,0 +170758245545,220,0 +170758245593,221,0 +170758245641,221,0 +170758245689,222,0 +170758245737,223,0 +170758245786,222,0 +170758245834,223,0 +170758245884,223,0 +170758245931,225,0 +170758245979,223,0 +170758246029,223,0 +170758246077,223,0 +170758246126,216,0 +170758246174,216,0 +170758246222,216,0 +170758246272,217,0 +170758246321,218,0 +170758246371,219,0 +170758246420,219,0 +170758246470,220,0 +170758246517,220,0 +170758246566,221,0 +170758246615,221,0 +170758246663,222,0 +170758246711,222,0 +170758246760,223,0 +170758246810,223,0 +170758246859,223,0 +170758246907,224,0 +170758246955,222,0 +170758247003,222,0 +170758247051,215,0 +170758247099,215,0 +170758247147,216,0 +170758247195,217,0 +170758247243,218,0 +170758247291,218,0 +170758247338,219,0 +170758247386,219,0 +170758247434,219,0 +170758247484,222,0 +170758247532,220,0 +170758247581,221,0 +170758247629,221,0 +170758247677,223,0 +170758247727,226,0 +170758247776,223,0 +170758247826,223,0 +170758247874,223,0 +170758247923,217,0 +170758247972,215,0 +170758248020,215,0 +170758248068,216,0 +170758248118,217,0 +170758248166,217,0 +170758248215,218,0 +170758248265,219,0 +170758248312,220,0 +170758248362,220,0 +170758248411,220,0 +170758248461,222,0 +170758248509,222,0 +170758248558,222,0 +170758248606,222,0 +170758248656,223,0 +170758248705,223,0 +170758248755,223,0 +170758248802,223,0 +170758248850,216,0 +170758248900,215,0 +170758248948,216,0 +170758248996,217,0 +170758249045,218,0 +170758249093,219,0 +170758249141,219,0 +170758249191,220,0 +170758249239,221,0 +170758249287,222,0 +170758249334,223,0 +170758249384,223,0 +170758249432,223,0 +170758249481,223,0 +170758249529,223,0 +170758249579,223,0 +170758249627,224,0 +170758249676,223,0 +170758249724,221,0 +170758249772,216,0 +170758249820,216,0 +170758249868,217,0 +170758249917,217,0 +170758249965,219,0 +170758250015,219,0 +170758250063,220,0 +170758250111,220,0 +170758250159,222,0 +170758250206,221,0 +170758250254,222,0 +170758250302,222,0 +170758250352,223,0 +170758250400,223,0 +170758250448,223,0 +170758250496,224,0 +170758250543,224,0 +170758250591,222,0 +170758250641,216,0 +170758250690,215,0 +170758250738,215,0 +170758250788,217,0 +170758250836,218,0 +170758250884,218,0 +170758250932,219,0 +170758250981,219,0 +170758251029,220,0 +170758251077,220,0 +170758251125,221,0 +170758251173,222,0 +170758251222,223,0 +170758251271,224,0 +170758251319,224,0 +170758251367,224,0 +170758251415,224,0 +170758251463,223,0 +170758251511,223,0 +170758251561,215,0 +170758251610,216,0 +170758251660,216,0 +170758251707,217,0 +170758251755,218,0 +170758251805,218,0 +170758251853,219,0 +170758251901,219,0 +170758251950,219,0 +170758252000,220,0 +170758252049,222,0 +170758252097,222,0 +170758252147,221,0 +170758252194,221,0 +170758252242,222,0 +170758252290,222,0 +170758252338,224,0 +170758252387,223,0 +170758252435,222,0 +170758252483,215,0 +170758252531,215,0 +170758252580,216,0 +170758252628,217,0 +170758252676,218,0 +170758252724,218,0 +170758252772,219,0 +170758252820,219,0 +170758252868,219,0 +170758252916,220,0 +170758252965,221,0 +170758253013,223,0 +170758253061,223,0 +170758253109,223,0 +170758253157,222,0 +170758253205,222,0 +170758253253,222,0 +170758253302,223,0 +170758253350,216,0 +170758253399,215,0 +170758253447,215,0 +170758253495,216,0 +170758253543,217,0 +170758253591,217,0 +170758253639,217,0 +170758253687,219,0 +170758253735,218,0 +170758253783,220,0 +170758253831,221,0 +170758253879,221,0 +170758253928,222,0 +170758253978,221,0 +170758254027,223,0 +170758254075,223,0 +170758254123,224,0 +170758254173,223,0 +170758254221,222,0 +170758254270,216,0 +170758254318,215,0 +170758254366,216,0 +170758254414,217,0 +170758254462,218,0 +170758254511,218,0 +170758254559,218,0 +170758254607,221,0 +170758254654,220,0 +170758254702,222,0 +170758254750,222,0 +170758254798,223,0 +170758254846,223,0 +170758254893,223,0 +170758254941,224,0 +170758254989,223,0 +170758255039,223,0 +170758255086,223,0 +170758255136,222,0 +170758255184,216,0 +170758255231,216,0 +170758255279,217,0 +170758255327,217,0 +170758255375,219,0 +170758255423,219,0 +170758255471,220,0 +170758255519,220,0 +170758255568,221,0 +170758255616,221,0 +170758255664,222,0 +170758255713,222,0 +170758255761,224,0 +170758255809,224,0 +170758255857,223,0 +170758255905,224,0 +170758255953,224,0 +170758256003,224,0 +170758256052,224,0 +170758256100,216,0 +170758256148,216,0 +170758256196,217,0 +170758256244,218,0 +170758256292,219,0 +170758256341,219,0 +170758256391,220,0 +170758256439,221,0 +170758256487,221,0 +170758256536,221,0 +170758256586,222,0 +170758256635,222,0 +170758256685,223,0 +170758256734,222,0 +170758256782,224,0 +170758256831,224,0 +170758256879,225,0 +170758256927,222,0 +170758256975,216,0 +170758257025,215,0 +170758257073,215,0 +170758257121,216,0 +170758257169,217,0 +170758257216,217,0 +170758257264,218,0 +170758257312,220,0 +170758257360,220,0 +170758257408,220,0 +170758257456,222,0 +170758257504,221,0 +170758257553,222,0 +170758257601,223,0 +170758257649,223,0 +170758257697,222,0 +170758257745,223,0 +170758257794,221,0 +170758257844,222,0 +170758257892,215,0 +170758257939,214,0 +170758257987,214,0 +170758258035,215,0 +170758258083,215,0 +170758258132,216,0 +170758258180,216,0 +170758258228,216,0 +170758258276,217,0 +170758258324,218,0 +170758258372,218,0 +170758258420,219,0 +170758258469,218,0 +170758258517,221,0 +170758258567,222,0 +170758258615,217,0 +170758258662,218,0 +170758258710,221,0 +170758258758,223,0 +170758258806,215,0 +170758258854,216,0 +170758258902,217,0 +170758258952,217,0 +170758259001,218,0 +170758259051,218,0 +170758259100,218,0 +170758259148,219,0 +170758259196,220,0 +170758259246,221,0 +170758259295,222,0 +170758259345,222,0 +170758259394,222,0 +170758259442,224,0 +170758259492,224,0 +170758259539,224,0 +170758259589,224,0 +170758259637,223,0 +170758259686,217,0 +170758259736,216,0 +170758259784,217,0 +170758259833,219,0 +170758259883,219,0 +170758259931,219,0 +170758259979,219,0 +170758260027,221,0 +170758260075,221,0 +170758260122,221,0 +170758260170,222,0 +170758260220,223,0 +170758260268,224,0 +170758260317,224,0 +170758260367,223,0 +170758260415,223,0 +170758260463,224,0 +170758260511,223,0 +170758260559,222,0 +170758260607,216,0 +170758260654,216,0 +170758260704,217,0 +170758260753,218,0 +170758260801,219,0 +170758260849,219,0 +170758260897,220,0 +170758260945,219,0 +170758260992,220,0 +170758261040,221,0 +170758261090,222,0 +170758261138,222,0 +170758261185,223,0 +170758261235,223,0 +170758261283,223,0 +170758261331,222,0 +170758261379,223,0 +170758261426,222,0 +170758261474,221,0 +170758261522,215,0 +170758261570,215,0 +170758261618,216,0 +170758261666,216,0 +170758261713,217,0 +170758261763,218,0 +170758261811,217,0 +170758261858,218,0 +170758261906,220,0 +170758261954,220,0 +170758262002,221,0 +170758262050,221,0 +170758262098,222,0 +170758262146,223,0 +170758262194,222,0 +170758262241,224,0 +170758262289,224,0 +170758262337,223,0 +170758262385,222,0 +170758262433,215,0 +170758262481,214,0 +170758262529,215,0 +170758262577,216,0 +170758262624,216,0 +170758262672,217,0 +170758262720,217,0 +170758262768,218,0 +170758262816,218,0 +170758262864,219,0 +170758262911,220,0 +170758262959,221,0 +170758263007,221,0 +170758263055,221,0 +170758263103,222,0 +170758263151,222,0 +170758263199,221,0 +170758263247,222,0 +170758263294,216,0 +170758263342,214,0 +170758263390,214,0 +170758263438,215,0 +170758263486,215,0 +170758263534,216,0 +170758263583,217,0 +170758263633,217,0 +170758263682,217,0 +170758263731,218,0 +170758263779,218,0 +170758263827,219,0 +170758263875,220,0 +170758263925,221,0 +170758263974,220,0 +170758264022,221,0 +170758264070,223,0 +170758264118,222,0 +170758264166,223,0 +170758264215,216,0 +170758264263,214,0 +170758264313,214,0 +170758264361,215,0 +170758264410,215,0 +170758264460,216,0 +170758264508,216,0 +170758264556,217,0 +170758264605,218,0 +170758264653,218,0 +170758264701,219,0 +170758264749,220,0 +170758264797,221,0 +170758264845,221,0 +170758264893,221,0 +170758264941,222,0 +170758264989,221,0 +170758265036,223,0 +170758265086,224,0 +170758265136,216,0 +170758265183,216,0 +170758265231,216,0 +170758265279,217,0 +170758265327,217,0 +170758265377,219,0 +170758265425,219,0 +170758265473,220,0 +170758265521,220,0 +170758265568,221,0 +170758265616,222,0 +170758265664,222,0 +170758265714,223,0 +170758265762,222,0 +170758265810,223,0 +170758265859,224,0 +170758265907,223,0 +170758265955,223,0 +170758266003,222,0 +170758266050,218,0 +170758266098,219,0 +170758266146,219,0 +170758266194,219,0 +170758266242,220,0 +170758266291,221,0 +170758266339,221,0 +170758266387,222,0 +170758266435,222,0 +170758266482,223,0 +170758266530,222,0 +170758266578,223,0 +170758266626,225,0 +170758266674,223,0 +170758266723,224,0 +170758266771,224,0 +170758266819,223,0 +170758266867,224,0 +170758266915,217,0 +170758266962,218,0 +170758267010,218,0 +170758267058,219,0 +170758267106,219,0 +170758267155,220,0 +170758267203,221,0 +170758267253,221,0 +170758267300,221,0 +170758267348,222,0 +170758267396,222,0 +170758267444,223,0 +170758267492,223,0 +170758267541,223,0 +170758267589,224,0 +170758267637,223,0 +170758267685,224,0 +170758267734,224,0 +170758267782,223,0 +170758267830,217,0 +170758267878,216,0 +170758267925,217,0 +170758267973,218,0 +170758268021,219,0 +170758268069,217,0 +170758268117,220,0 +170758268165,220,0 +170758268213,221,0 +170758268260,221,0 +170758268308,222,0 +170758268356,223,0 +170758268404,223,0 +170758268452,224,0 +170758268500,224,0 +170758268548,224,0 +170758268597,223,0 +170758268647,224,0 +170758268695,223,0 +170758268744,217,0 +170758268792,217,0 +170758268840,218,0 +170758268888,221,0 +170758268936,220,0 +170758268986,219,0 +170758269034,220,0 +170758269083,219,0 +170758269131,220,0 +170758269179,222,0 +170758269227,222,0 +170758269277,222,0 +170758269325,223,0 +170758269372,223,0 +170758269420,224,0 +170758269470,223,0 +170758269519,223,0 +170758269567,223,0 +170758269615,222,0 +170758269663,217,0 +170758269711,218,0 +170758269761,218,0 +170758269809,219,0 +170758269857,221,0 +170758269904,220,0 +170758269952,220,0 +170758270000,221,0 +170758270048,222,0 +170758270098,222,0 +170758270146,222,0 +170758270193,223,0 +170758270243,224,0 +170758270291,223,0 +170758270339,228,0 +170758270388,224,0 +170758270436,224,0 +170758270486,223,0 +170758270535,217,0 +170758270583,218,0 +170758270631,218,0 +170758270680,218,0 +170758270730,219,0 +170758270778,219,0 +170758270827,221,0 +170758270877,221,0 +170758270926,222,0 +170758270974,223,0 +170758271022,223,0 +170758271072,223,0 +170758271120,223,0 +170758271168,223,0 +170758271216,226,0 +170758271263,225,0 +170758271313,224,0 +170758271361,223,0 +170758271409,224,0 +170758271457,218,0 +170758271505,216,0 +170758271553,219,0 +170758271601,218,0 +170758271650,219,0 +170758271698,219,0 +170758271748,220,0 +170758271795,222,0 +170758271843,222,0 +170758271891,224,0 +170758271939,223,0 +170758271987,223,0 +170758272035,223,0 +170758272083,223,0 +170758272131,224,0 +170758272180,224,0 +170758272228,224,0 +170758272278,223,0 +170758272326,223,0 +170758272375,217,0 +170758272423,216,0 +170758272473,217,0 +170758272521,218,0 +170758272570,220,0 +170758272618,219,0 +170758272666,220,0 +170758272714,220,0 +170758272763,221,0 +170758272811,221,0 +170758272861,221,0 +170758272909,224,0 +170758272958,225,0 +170758273006,224,0 +170758273054,224,0 +170758273102,223,0 +170758273150,223,0 +170758273200,223,0 +170758273249,216,0 +170758273297,215,0 +170758273345,215,0 +170758273393,215,0 +170758273441,216,0 +170758273490,217,0 +170758273538,218,0 +170758273588,218,0 +170758273636,218,0 +170758273685,219,0 +170758273735,222,0 +170758273783,221,0 +170758273830,222,0 +170758273880,222,0 +170758273928,224,0 +170758273976,223,0 +170758274025,222,0 +170758274073,223,0 +170758274121,223,0 +170758274169,222,0 +170758274217,214,0 +170758274266,214,0 +170758274314,214,0 +170758274364,214,0 +170758274412,215,0 +170758274460,215,0 +170758274508,215,0 +170758274556,215,0 +170758274604,215,0 +170758274652,216,0 +170758274701,217,0 +170758274749,218,0 +170758274797,219,0 +170758274844,219,0 +170758274892,219,0 +170758274940,221,0 +170758274990,222,0 +170758275038,223,0 +170758275085,216,0 +170758275133,214,0 +170758275183,215,0 +170758275230,215,0 +170758275278,215,0 +170758275328,214,0 +170758275376,216,0 +170758275424,217,0 +170758275472,218,0 +170758275520,219,0 +170758275569,219,0 +170758275617,220,0 +170758275665,220,0 +170758275715,220,0 +170758275763,221,0 +170758275812,221,0 +170758275860,221,0 +170758275908,222,0 +170758275956,222,0 +170758276004,215,0 +170758276052,215,0 +170758276101,215,0 +170758276149,216,0 +170758276197,216,0 +170758276245,217,0 +170758276295,218,0 +170758276342,218,0 +170758276392,218,0 +170758276440,219,0 +170758276488,220,0 +170758276535,222,0 +170758276583,221,0 +170758276633,222,0 +170758276683,222,0 +170758276730,223,0 +170758276780,222,0 +170758276828,225,0 +170758276877,216,0 +170758276927,215,0 +170758276976,215,0 +170758277026,215,0 +170758277074,215,0 +170758277122,217,0 +170758277171,217,0 +170758277219,218,0 +170758277267,218,0 +170758277315,219,0 +170758277364,219,0 +170758277412,219,0 +170758277462,220,0 +170758277511,222,0 +170758277559,221,0 +170758277607,222,0 +170758277655,222,0 +170758277705,222,0 +170758277753,223,0 +170758277800,215,0 +170758277850,215,0 +170758277898,215,0 +170758277946,215,0 +170758277995,216,0 +170758278043,216,0 +170758278091,218,0 +170758278139,218,0 +170758278187,218,0 +170758278235,218,0 +170758278283,219,0 +170758278332,220,0 +170758278380,221,0 +170758278428,221,0 +170758278476,221,0 +170758278524,223,0 +170758278572,225,0 +170758278621,223,0 +170758278669,223,0 +170758278719,215,0 +170758278767,215,0 +170758278815,216,0 +170758278862,217,0 +170758278910,217,0 +170758278960,218,0 +170758279008,218,0 +170758279056,219,0 +170758279104,219,0 +170758279153,220,0 +170758279201,221,0 +170758279250,221,0 +170758279298,222,0 +170758279348,222,0 +170758279397,222,0 +170758279445,222,0 +170758279493,223,0 +170758279543,223,0 +170758279592,216,0 +170758279640,215,0 +170758279690,217,0 +170758279737,218,0 +170758279785,218,0 +170758279835,218,0 +170758279884,219,0 +170758279934,220,0 +170758279983,220,0 +170758280031,220,0 +170758280081,221,0 +170758280130,223,0 +170758280178,223,0 +170758280226,223,0 +170758280274,224,0 +170758280324,224,0 +170758280373,225,0 +170758280421,224,0 +170758280470,222,0 +170758280520,215,0 +170758280569,216,0 +170758280617,216,0 +170758280665,217,0 +170758280715,218,0 +170758280763,220,0 +170758280812,219,0 +170758280860,219,0 +170758280908,219,0 +170758280956,221,0 +170758281004,222,0 +170758281052,223,0 +170758281100,223,0 +170758281148,222,0 +170758281196,222,0 +170758281243,224,0 +170758281291,224,0 +170758281339,223,0 +170758281389,222,0 +170758281437,215,0 +170758281486,216,0 +170758281534,216,0 +170758281584,218,0 +170758281633,218,0 +170758281681,219,0 +170758281729,219,0 +170758281777,220,0 +170758281826,221,0 +170758281874,221,0 +170758281922,222,0 +170758281972,223,0 +170758282019,222,0 +170758282069,223,0 +170758282117,224,0 +170758282165,223,0 +170758282214,223,0 +170758282264,223,0 +170758282312,217,0 +170758282361,217,0 +170758282411,218,0 +170758282459,218,0 +170758282509,219,0 +170758282556,220,0 +170758282606,221,0 +170758282655,221,0 +170758282703,222,0 +170758282753,223,0 +170758282801,222,0 +170758282850,223,0 +170758282898,223,0 +170758282946,223,0 +170758282994,223,0 +170758283042,223,0 +170758283090,224,0 +170758283138,223,0 +170758283186,223,0 +170758283233,216,0 +170758283283,217,0 +170758283333,218,0 +170758283380,219,0 +170758283428,219,0 +170758283476,219,0 +170758283524,220,0 +170758283572,220,0 +170758283621,221,0 +170758283669,221,0 +170758283717,222,0 +170758283765,223,0 +170758283813,222,0 +170758283862,227,0 +170758283910,223,0 +170758283960,223,0 +170758284008,223,0 +170758284056,223,0 +170758284105,220,0 +170758284153,217,0 +170758284202,217,0 +170758284250,217,0 +170758284298,219,0 +170758284348,218,0 +170758284395,219,0 +170758284445,218,0 +170758284493,219,0 +170758284541,220,0 +170758284589,221,0 +170758284637,222,0 +170758284685,222,0 +170758284734,222,0 +170758284782,224,0 +170758284830,223,0 +170758284878,224,0 +170758284927,224,0 +170758284975,222,0 +170758285023,218,0 +170758285071,217,0 +170758285119,218,0 +170758285167,219,0 +170758285216,220,0 +170758285264,219,0 +170758285312,220,0 +170758285362,221,0 +170758285410,219,0 +170758285458,221,0 +170758285506,221,0 +170758285553,220,0 +170758285601,222,0 +170758285649,222,0 +170758285697,221,0 +170758285745,224,0 +170758285795,223,0 +170758285844,223,0 +170758285892,222,0 +170758285940,218,0 +170758285988,218,0 +170758286036,219,0 +170758286084,220,0 +170758286132,220,0 +170758286180,221,0 +170758286227,221,0 +170758286275,221,0 +170758286323,224,0 +170758286371,223,0 +170758286419,222,0 +170758286467,223,0 +170758286515,223,0 +170758286562,223,0 +170758286610,224,0 +170758286658,224,0 +170758286706,223,0 +170758286754,222,0 +170758286802,222,0 +170758286851,217,0 +170758286899,218,0 +170758286947,219,0 +170758286995,220,0 +170758287044,219,0 +170758287092,220,0 +170758287140,222,0 +170758287188,221,0 +170758287236,222,0 +170758287283,223,0 +170758287331,224,0 +170758287379,224,0 +170758287427,224,0 +170758287477,224,0 +170758287525,225,0 +170758287572,224,0 +170758287620,224,0 +170758287668,223,0 +170758287716,222,0 +170758287764,216,0 +170758287814,217,0 +170758287863,218,0 +170758287913,219,0 +170758287961,219,0 +170758288009,219,0 +170758288058,221,0 +170758288107,222,0 +170758288155,221,0 +170758288203,222,0 +170758288253,223,0 +170758288300,223,0 +170758288348,221,0 +170758288396,224,0 +170758288444,224,0 +170758288494,222,0 +170758288541,223,0 +170758288591,223,0 +170758288639,216,0 +170758288687,215,0 +170758288735,216,0 +170758288783,217,0 +170758288832,218,0 +170758288880,218,0 +170758288930,219,0 +170758288978,219,0 +170758289026,220,0 +170758289075,220,0 +170758289125,222,0 +170758289173,223,0 +170758289222,223,0 +170758289272,223,0 +170758289319,223,0 +170758289369,223,0 +170758289417,225,0 +170758289465,223,0 +170758289513,222,0 +170758289561,215,0 +170758289610,215,0 +170758289660,215,0 +170758289708,216,0 +170758289756,217,0 +170758289803,217,0 +170758289851,218,0 +170758289899,219,0 +170758289947,219,0 +170758289996,221,0 +170758290044,221,0 +170758290092,221,0 +170758290142,223,0 +170758290191,224,0 +170758290239,223,0 +170758290289,223,0 +170758290338,223,0 +170758290386,223,0 +170758290434,216,0 +170758290482,215,0 +170758290530,214,0 +170758290578,215,0 +170758290627,215,0 +170758290675,216,0 +170758290723,217,0 +170758290772,217,0 +170758290820,217,0 +170758290868,219,0 +170758290916,219,0 +170758290964,221,0 +170758291013,221,0 +170758291061,221,0 +170758291110,222,0 +170758291158,222,0 +170758291206,223,0 +170758291254,226,0 +170758291304,223,0 +170758291352,217,0 +170758291400,216,0 +170758291448,217,0 +170758291495,218,0 +170758291545,218,0 +170758291593,219,0 +170758291641,219,0 +170758291689,220,0 +170758291738,220,0 +170758291786,220,0 +170758291834,222,0 +170758291882,221,0 +170758291931,222,0 +170758291979,223,0 +170758292027,224,0 +170758292075,224,0 +170758292123,223,0 +170758292172,225,0 +170758292220,223,0 +170758292270,215,0 +170758292318,216,0 +170758292366,216,0 +170758292414,218,0 +170758292463,217,0 +170758292513,218,0 +170758292562,219,0 +170758292610,219,0 +170758292658,220,0 +170758292706,221,0 +170758292754,221,0 +170758292802,222,0 +170758292850,223,0 +170758292899,223,0 +170758292947,223,0 +170758292995,223,0 +170758293044,222,0 +170758293092,223,0 +170758293140,220,0 +170758293188,215,0 +170758293236,215,0 +170758293286,215,0 +170758293334,216,0 +170758293381,217,0 +170758293429,217,0 +170758293479,218,0 +170758293527,219,0 +170758293575,219,0 +170758293622,220,0 +170758293670,220,0 +170758293718,221,0 +170758293768,222,0 +170758293817,222,0 +170758293867,223,0 +170758293915,223,0 +170758293963,225,0 +170758294010,223,0 +170758294058,216,0 +170758294108,215,0 +170758294156,214,0 +170758294204,215,0 +170758294253,216,0 +170758294303,217,0 +170758294352,217,0 +170758294400,218,0 +170758294448,220,0 +170758294496,220,0 +170758294545,220,0 +170758294593,222,0 +170758294643,221,0 +170758294691,223,0 +170758294739,223,0 +170758294787,222,0 +170758294835,224,0 +170758294883,223,0 +170758294932,223,0 +170758294982,215,0 +170758295030,215,0 +170758295079,215,0 +170758295129,215,0 +170758295178,216,0 +170758295226,217,0 +170758295274,218,0 +170758295324,218,0 +170758295372,218,0 +170758295420,220,0 +170758295468,220,0 +170758295515,219,0 +170758295563,221,0 +170758295613,221,0 +170758295662,222,0 +170758295710,222,0 +170758295758,221,0 +170758295808,223,0 +170758295856,217,0 +170758295904,215,0 +170758295951,215,0 +170758296001,215,0 +170758296050,216,0 +170758296098,216,0 +170758296148,217,0 +170758296196,217,0 +170758296244,218,0 +170758296291,218,0 +170758296339,219,0 +170758296387,221,0 +170758296435,220,0 +170758296483,221,0 +170758296531,222,0 +170758296580,222,0 +170758296628,223,0 +170758296676,222,0 +170758296724,222,0 +170758296772,216,0 +170758296822,215,0 +170758296870,215,0 +170758296919,216,0 +170758296969,217,0 +170758297018,216,0 +170758297066,217,0 +170758297114,218,0 +170758297163,218,0 +170758297211,219,0 +170758297259,220,0 +170758297307,220,0 +170758297355,223,0 +170758297403,222,0 +170758297451,223,0 +170758297499,223,0 +170758297546,224,0 +170758297594,222,0 +170758297642,222,0 +170758297692,216,0 +170758297740,215,0 +170758297788,215,0 +170758297836,216,0 +170758297883,216,0 +170758297931,217,0 +170758297981,218,0 +170758298029,218,0 +170758298077,219,0 +170758298126,219,0 +170758298174,220,0 +170758298224,221,0 +170758298272,222,0 +170758298321,222,0 +170758298371,222,0 +170758298420,223,0 +170758298468,222,0 +170758298516,223,0 +170758298566,222,0 +170758298613,216,0 +170758298661,217,0 +170758298709,217,0 +170758298757,218,0 +170758298805,219,0 +170758298852,219,0 +170758298900,219,0 +170758298948,220,0 +170758298996,220,0 +170758299044,221,0 +170758299092,222,0 +170758299140,222,0 +170758299189,222,0 +170758299239,223,0 +170758299288,224,0 +170758299336,223,0 +170758299384,223,0 +170758299432,223,0 +170758299480,221,0 +170758299528,218,0 +170758299577,219,0 +170758299625,220,0 +170758299673,221,0 +170758299721,222,0 +170758299769,221,0 +170758299818,222,0 +170758299866,223,0 +170758299914,223,0 +170758299964,223,0 +170758300013,225,0 +170758300061,224,0 +170758300111,223,0 +170758300159,224,0 +170758300207,223,0 +170758300254,223,0 +170758300304,223,0 +170758300352,222,0 +170758300401,217,0 +170758300451,219,0 +170758300499,219,0 +170758300547,220,0 +170758300595,221,0 +170758300642,222,0 +170758300692,222,0 +170758300741,223,0 +170758300791,223,0 +170758300840,224,0 +170758300888,224,0 +170758300936,223,0 +170758300984,223,0 +170758301032,224,0 +170758301080,223,0 +170758301128,224,0 +170758301176,223,0 +170758301224,224,0 +170758301272,223,0 +170758301320,216,0 +170758301368,216,0 +170758301417,217,0 +170758301467,218,0 +170758301515,218,0 +170758301564,219,0 +170758301612,220,0 +170758301661,222,0 +170758301709,220,0 +170758301757,221,0 +170758301805,222,0 +170758301853,223,0 +170758301902,223,0 +170758301950,223,0 +170758301998,224,0 +170758302046,222,0 +170758302094,223,0 +170758302142,223,0 +170758302189,223,0 +170758302237,215,0 +170758302287,216,0 +170758302335,216,0 +170758302384,217,0 +170758302432,217,0 +170758302480,218,0 +170758302528,219,0 +170758302576,220,0 +170758302624,218,0 +170758302672,221,0 +170758302720,221,0 +170758302768,222,0 +170758302816,222,0 +170758302864,223,0 +170758302913,223,0 +170758302963,223,0 +170758303012,224,0 +170758303060,222,0 +170758303108,217,0 +170758303156,215,0 +170758303204,215,0 +170758303253,217,0 +170758303301,217,0 +170758303349,218,0 +170758303397,219,0 +170758303445,219,0 +170758303495,220,0 +170758303543,220,0 +170758303591,221,0 +170758303638,222,0 +170758303686,222,0 +170758303734,224,0 +170758303782,223,0 +170758303830,223,0 +170758303878,224,0 +170758303925,223,0 +170758303973,228,0 +170758304023,217,0 +170758304072,215,0 +170758304120,214,0 +170758304169,215,0 +170758304217,216,0 +170758304265,216,0 +170758304315,217,0 +170758304363,217,0 +170758304410,219,0 +170758304458,219,0 +170758304506,220,0 +170758304556,220,0 +170758304604,221,0 +170758304652,221,0 +170758304701,222,0 +170758304751,222,0 +170758304800,223,0 +170758304849,223,0 +170758304899,223,0 +170758304947,215,0 +170758304995,215,0 +170758305043,215,0 +170758305090,216,0 +170758305138,216,0 +170758305186,216,0 +170758305234,218,0 +170758305282,225,0 +170758305329,218,0 +170758305377,219,0 +170758305425,221,0 +170758305473,221,0 +170758305522,222,0 +170758305570,222,0 +170758305618,222,0 +170758305667,223,0 +170758305715,223,0 +170758305763,223,0 +170758305813,222,0 +170758305861,215,0 +170758305908,215,0 +170758305958,216,0 +170758306007,217,0 +170758306055,217,0 +170758306105,218,0 +170758306153,218,0 +170758306202,219,0 +170758306250,220,0 +170758306300,221,0 +170758306347,225,0 +170758306395,222,0 +170758306443,222,0 +170758306491,222,0 +170758306539,223,0 +170758306587,223,0 +170758306635,223,0 +170758306683,224,0 +170758306730,216,0 +170758306778,215,0 +170758306826,216,0 +170758306876,216,0 +170758306924,217,0 +170758306971,218,0 +170758307021,218,0 +170758307069,219,0 +170758307118,220,0 +170758307168,220,0 +170758307216,221,0 +170758307264,222,0 +170758307311,222,0 +170758307359,223,0 +170758307409,223,0 +170758307457,222,0 +170758307505,223,0 +170758307553,223,0 +170758307600,223,0 +170758307648,217,0 +170758307698,215,0 +170758307747,216,0 +170758307795,216,0 +170758307843,217,0 +170758307891,219,0 +170758307939,218,0 +170758307987,219,0 +170758308036,219,0 +170758308084,221,0 +170758308132,221,0 +170758308180,222,0 +170758308228,223,0 +170758308276,223,0 +170758308324,223,0 +170758308372,223,0 +170758308421,223,0 +170758308469,223,0 +170758308517,222,0 +170758308567,215,0 +170758308615,215,0 +170758308664,215,0 +170758308712,215,0 +170758308760,215,0 +170758308810,216,0 +170758308857,216,0 +170758308905,217,0 +170758308953,217,0 +170758309001,218,0 +170758309049,220,0 +170758309097,220,0 +170758309146,222,0 +170758309194,221,0 +170758309242,222,0 +170758309290,222,0 +170758309338,223,0 +170758309386,221,0 +170758309434,225,0 +170758309482,215,0 +170758309531,214,0 +170758309580,215,0 +170758309628,215,0 +170758309676,216,0 +170758309724,216,0 +170758309774,217,0 +170758309823,217,0 +170758309871,218,0 +170758309919,219,0 +170758309967,221,0 +170758310016,221,0 +170758310064,219,0 +170758310112,224,0 +170758310160,223,0 +170758310209,223,0 +170758310257,222,0 +170758310305,223,0 +170758310355,222,0 +170758310404,216,0 +170758310452,216,0 +170758310500,217,0 +170758310549,218,0 +170758310597,218,0 +170758310645,219,0 +170758310693,220,0 +170758310741,220,0 +170758310789,220,0 +170758310837,221,0 +170758310885,222,0 +170758310934,222,0 +170758310982,223,0 +170758311030,224,0 +170758311078,224,0 +170758311126,225,0 +170758311174,223,0 +170758311221,222,0 +170758311269,216,0 +170758311317,215,0 +170758311365,216,0 +170758311413,218,0 +170758311461,218,0 +170758311508,218,0 +170758311556,218,0 +170758311604,219,0 +170758311652,220,0 +170758311700,221,0 +170758311747,221,0 +170758311795,222,0 +170758311843,225,0 +170758311891,223,0 +170758311939,223,0 +170758311988,223,0 +170758312036,226,0 +170758312086,223,0 +170758312135,223,0 +170758312185,216,0 +170758312234,216,0 +170758312282,217,0 +170758312330,217,0 +170758312378,218,0 +170758312426,218,0 +170758312474,220,0 +170758312521,220,0 +170758312571,221,0 +170758312619,221,0 +170758312666,224,0 +170758312714,222,0 +170758312762,223,0 +170758312810,222,0 +170758312858,222,0 +170758312906,224,0 +170758312953,224,0 +170758313001,223,0 +170758313049,221,0 +170758313097,216,0 +170758313145,217,0 +170758313194,217,0 +170758313244,218,0 +170758313292,219,0 +170758313341,219,0 +170758313389,219,0 +170758313437,219,0 +170758313485,220,0 +170758313533,220,0 +170758313580,222,0 +170758313628,222,0 +170758313676,222,0 +170758313724,223,0 +170758313773,224,0 +170758313821,223,0 +170758313871,223,0 +170758313919,223,0 +170758313967,220,0 +170758314015,216,0 +170758314062,217,0 +170758314110,220,0 +170758314160,217,0 +170758314207,218,0 +170758314255,218,0 +170758314303,219,0 +170758314351,219,0 +170758314399,220,0 +170758314447,222,0 +170758314496,221,0 +170758314546,222,0 +170758314593,222,0 +170758314641,223,0 +170758314689,225,0 +170758314738,223,0 +170758314786,224,0 +170758314834,223,0 +170758314882,217,0 +170758314930,215,0 +170758314977,217,0 +170758315025,218,0 +170758315073,218,0 +170758315121,219,0 +170758315169,219,0 +170758315217,220,0 +170758315265,221,0 +170758315312,221,0 +170758315360,224,0 +170758315408,223,0 +170758315456,224,0 +170758315504,223,0 +170758315552,224,0 +170758315599,223,0 +170758315649,222,0 +170758315698,224,0 +170758315746,222,0 +170758315794,217,0 +170758315842,217,0 +170758315890,217,0 +170758315938,219,0 +170758315986,219,0 +170758316034,219,0 +170758316081,219,0 +170758316129,220,0 +170758316177,221,0 +170758316225,222,0 +170758316273,222,0 +170758316321,222,0 +170758316370,223,0 +170758316418,222,0 +170758316466,224,0 +170758316514,224,0 +170758316562,223,0 +170758316612,223,0 +170758316660,223,0 +170758316707,217,0 +170758316755,218,0 +170758316803,219,0 +170758316851,219,0 +170758316901,220,0 +170758316950,221,0 +170758317000,222,0 +170758317048,221,0 +170758317096,222,0 +170758317145,224,0 +170758317194,222,0 +170758317242,222,0 +170758317292,224,0 +170758317340,224,0 +170758317388,223,0 +170758317436,225,0 +170758317484,224,0 +170758317531,223,0 +170758317581,222,0 +170758317629,215,0 +170758317677,215,0 +170758317726,216,0 +170758317776,216,0 +170758317824,218,0 +170758317873,218,0 +170758317921,219,0 +170758317971,221,0 +170758318018,220,0 +170758318068,220,0 +170758318116,221,0 +170758318164,222,0 +170758318212,221,0 +170758318260,223,0 +170758318307,222,0 +170758318355,222,0 +170758318403,222,0 +170758318453,222,0 +170758318501,216,0 +170758318548,215,0 +170758318596,216,0 +170758318644,217,0 +170758318692,217,0 +170758318740,219,0 +170758318788,218,0 +170758318835,219,0 +170758318883,220,0 +170758318931,221,0 +170758318981,222,0 +170758319030,222,0 +170758319078,223,0 +170758319128,222,0 +170758319177,223,0 +170758319225,223,0 +170758319274,223,0 +170758319322,223,0 +170758319370,222,0 +170758319418,215,0 +170758319466,215,0 +170758319513,215,0 +170758319561,216,0 +170758319611,217,0 +170758319658,217,0 +170758319706,218,0 +170758319756,219,0 +170758319804,219,0 +170758319851,219,0 +170758319899,221,0 +170758319947,221,0 +170758319995,221,0 +170758320043,222,0 +170758320092,222,0 +170758320140,223,0 +170758320188,222,0 +170758320236,222,0 +170758320285,224,0 +170758320333,215,0 +170758320382,214,0 +170758320430,214,0 +170758320478,215,0 +170758320526,215,0 +170758320574,215,0 +170758320621,215,0 +170758320669,216,0 +170758320717,217,0 +170758320765,218,0 +170758320813,219,0 +170758320862,220,0 +170758320910,220,0 +170758320959,221,0 +170758321007,221,0 +170758321055,220,0 +170758321103,221,0 +170758321150,222,0 +170758321198,222,0 +170758321246,215,0 +170758321294,215,0 +170758321342,214,0 +170758321390,215,0 +170758321437,215,0 +170758321485,216,0 +170758321533,216,0 +170758321581,216,0 +170758321631,216,0 +170758321680,218,0 +170758321728,218,0 +170758321776,219,0 +170758321824,220,0 +170758321872,222,0 +170758321919,221,0 +170758321967,221,0 +170758322017,222,0 +170758322065,223,0 +170758322113,216,0 +170758322160,214,0 +170758322208,215,0 +170758322256,215,0 +170758322304,215,0 +170758322352,216,0 +170758322400,216,0 +170758322447,217,0 +170758322495,218,0 +170758322543,219,0 +170758322591,220,0 +170758322640,220,0 +170758322688,220,0 +170758322736,223,0 +170758322784,222,0 +170758322832,222,0 +170758322880,222,0 +170758322928,221,0 +170758322975,224,0 +170758323023,217,0 +170758323071,214,0 +170758323119,215,0 +170758323167,216,0 +170758323214,216,0 +170758323262,218,0 +170758323310,218,0 +170758323358,219,0 +170758323406,219,0 +170758323454,220,0 +170758323501,217,0 +170758323549,220,0 +170758323597,222,0 +170758323645,224,0 +170758323693,223,0 +170758323741,221,0 +170758323789,224,0 +170758323836,223,0 +170758323884,223,0 +170758323932,216,0 +170758323980,215,0 +170758324028,215,0 +170758324076,216,0 +170758324123,216,0 +170758324171,218,0 +170758324219,218,0 +170758324267,219,0 +170758324316,219,0 +170758324366,219,0 +170758324414,220,0 +170758324461,220,0 +170758324509,221,0 +170758324557,222,0 +170758324605,222,0 +170758324653,223,0 +170758324701,222,0 +170758324748,223,0 +170758324796,222,0 +170758324844,215,0 +170758324892,215,0 +170758324940,216,0 +170758324989,217,0 +170758325037,217,0 +170758325085,218,0 +170758325133,219,0 +170758325182,220,0 +170758325230,220,0 +170758325278,222,0 +170758325326,222,0 +170758325373,223,0 +170758325421,224,0 +170758325469,223,0 +170758325517,221,0 +170758325565,222,0 +170758325613,223,0 +170758325662,223,0 +170758325710,223,0 +170758325758,215,0 +170758325806,216,0 +170758325853,217,0 +170758325903,218,0 +170758325951,218,0 +170758326000,218,0 +170758326048,218,0 +170758326096,221,0 +170758326144,220,0 +170758326192,222,0 +170758326239,221,0 +170758326287,222,0 +170758326335,222,0 +170758326385,223,0 +170758326434,225,0 +170758326482,224,0 +170758326532,224,0 +170758326580,222,0 +170758326628,221,0 +170758326675,215,0 +170758326723,216,0 +170758326771,216,0 +170758326821,217,0 +170758326868,218,0 +170758326918,219,0 +170758326967,218,0 +170758327015,219,0 +170758327063,220,0 +170758327111,220,0 +170758327158,221,0 +170758327206,222,0 +170758327254,223,0 +170758327302,222,0 +170758327350,223,0 +170758327398,223,0 +170758327445,223,0 +170758327493,223,0 +170758327541,216,0 +170758327589,215,0 +170758327637,217,0 +170758327685,216,0 +170758327733,217,0 +170758327780,218,0 +170758327828,218,0 +170758327876,218,0 +170758327924,219,0 +170758327972,219,0 +170758328020,221,0 +170758328067,219,0 +170758328115,223,0 +170758328163,221,0 +170758328211,222,0 +170758328259,222,0 +170758328306,223,0 +170758328354,224,0 +170758328402,224,0 +170758328450,218,0 +170758328498,217,0 +170758328546,217,0 +170758328594,218,0 +170758328642,218,0 +170758328690,219,0 +170758328739,219,0 +170758328787,221,0 +170758328835,220,0 +170758328885,221,0 +170758328934,221,0 +170758328982,223,0 +170758329030,223,0 +170758329078,222,0 +170758329127,221,0 +170758329177,223,0 +170758329226,223,0 +170758329274,222,0 +170758329322,222,0 +170758329370,217,0 +170758329419,217,0 +170758329469,218,0 +170758329518,219,0 +170758329566,220,0 +170758329614,219,0 +170758329662,220,0 +170758329710,220,0 +170758329758,221,0 +170758329805,222,0 +170758329853,222,0 +170758329901,224,0 +170758329949,223,0 +170758329997,223,0 +170758330045,224,0 +170758330092,223,0 +170758330140,223,0 +170758330189,223,0 +170758330236,222,0 +170758330284,216,0 +170758330332,217,0 +170758330380,218,0 +170758330428,218,0 +170758330477,217,0 +170758330525,220,0 +170758330575,220,0 +170758330624,222,0 +170758330672,222,0 +170758330720,222,0 +170758330768,223,0 +170758330817,224,0 +170758330865,223,0 +170758330913,224,0 +170758330961,224,0 +170758331009,224,0 +170758331057,223,0 +170758331105,222,0 +170758331154,218,0 +170758331202,219,0 +170758331250,220,0 +170758331298,219,0 +170758331348,220,0 +170758331397,220,0 +170758331445,220,0 +170758331493,221,0 +170758331542,222,0 +170758331590,223,0 +170758331638,223,0 +170758331686,224,0 +170758331735,223,0 +170758331785,224,0 +170758331834,223,0 +170758331882,224,0 +170758331932,222,0 +170758331980,223,0 +170758332028,222,0 +170758332075,218,0 +170758332123,218,0 +170758332173,219,0 +170758332220,219,0 +170758332270,219,0 +170758332319,219,0 +170758332367,220,0 +170758332417,222,0 +170758332465,222,0 +170758332512,223,0 +170758332562,223,0 +170758332611,223,0 +170758332661,224,0 +170758332709,223,0 +170758332758,224,0 +170758332808,224,0 +170758332856,223,0 +170758332905,222,0 +170758332953,222,0 +170758333001,218,0 +170758333049,218,0 +170758333097,219,0 +170758333146,221,0 +170758333194,221,0 +170758333242,221,0 +170758333290,221,0 +170758333339,222,0 +170758333387,223,0 +170758333435,224,0 +170758333483,223,0 +170758333533,224,0 +170758333580,224,0 +170758333628,224,0 +170758333676,224,0 +170758333724,223,0 +170758333774,223,0 +170758333823,223,0 +170758333871,216,0 +170758333919,216,0 +170758333967,217,0 +170758334016,217,0 +170758334064,219,0 +170758334114,219,0 +170758334162,220,0 +170758334211,221,0 +170758334259,221,0 +170758334307,222,0 +170758334355,222,0 +170758334403,223,0 +170758334451,223,0 +170758334498,223,0 +170758334548,223,0 +170758334596,224,0 +170758334644,224,0 +170758334692,224,0 +170758334739,223,0 +170758334789,216,0 +170758334838,215,0 +170758334886,215,0 +170758334934,215,0 +170758334984,215,0 +170758335033,216,0 +170758335081,215,0 +170758335129,216,0 +170758335177,217,0 +170758335225,217,0 +170758335272,218,0 +170758335320,219,0 +170758335368,221,0 +170758335416,221,0 +170758335464,221,0 +170758335511,221,0 +170758335559,221,0 +170758335607,223,0 +170758335655,223,0 +170758335704,215,0 +170758335752,215,0 +170758335800,215,0 +170758335848,216,0 +170758335896,216,0 +170758335944,217,0 +170758335991,218,0 +170758336039,218,0 +170758336087,219,0 +170758336136,219,0 +170758336186,219,0 +170758336234,220,0 +170758336282,222,0 +170758336329,222,0 +170758336379,222,0 +170758336427,222,0 +170758336475,221,0 +170758336522,223,0 +170758336572,221,0 +170758336620,214,0 +170758336668,215,0 +170758336716,215,0 +170758336764,215,0 +170758336811,216,0 +170758336859,217,0 +170758336907,217,0 +170758336955,217,0 +170758337003,218,0 +170758337052,219,0 +170758337102,221,0 +170758337151,221,0 +170758337201,222,0 +170758337249,222,0 +170758337298,222,0 +170758337346,222,0 +170758337394,223,0 +170758337442,224,0 +170758337492,216,0 +170758337540,215,0 +170758337588,215,0 +170758337635,215,0 +170758337685,215,0 +170758337733,215,0 +170758337781,215,0 +170758337829,217,0 +170758337877,217,0 +170758337925,218,0 +170758337973,219,0 +170758338021,220,0 +170758338070,220,0 +170758338118,221,0 +170758338167,222,0 +170758338215,221,0 +170758338263,221,0 +170758338311,223,0 +170758338359,223,0 +170758338409,215,0 +170758338456,215,0 +170758338504,215,0 +170758338554,215,0 +170758338602,215,0 +170758338651,215,0 +170758338701,215,0 +170758338750,217,0 +170758338800,217,0 +170758338848,218,0 +170758338896,221,0 +170758338944,220,0 +170758338992,223,0 +170758339040,221,0 +170758339087,221,0 +170758339137,222,0 +170758339185,223,0 +170758339233,223,0 +170758339282,222,0 +170758339330,215,0 +170758339380,215,0 +170758339427,216,0 +170758339475,216,0 +170758339523,217,0 +170758339571,217,0 +170758339621,218,0 +170758339669,218,0 +170758339717,221,0 +170758339765,221,0 +170758339813,221,0 +170758339861,221,0 +170758339910,221,0 +170758339958,222,0 +170758340008,222,0 +170758340055,222,0 +170758340105,223,0 +170758340153,223,0 +170758340202,216,0 +170758340252,215,0 +170758340300,215,0 +170758340349,216,0 +170758340397,217,0 +170758340445,217,0 +170758340495,218,0 +170758340543,218,0 +170758340591,218,0 +170758340639,219,0 +170758340687,220,0 +170758340734,220,0 +170758340784,222,0 +170758340832,224,0 +170758340881,223,0 +170758340931,223,0 +170758340979,223,0 +170758341028,223,0 +170758341076,222,0 +170758341124,215,0 +170758341172,215,0 +170758341220,215,0 +170758341268,217,0 +170758341316,217,0 +170758341364,217,0 +170758341413,217,0 +170758341461,217,0 +170758341509,218,0 +170758341557,219,0 +170758341605,220,0 +170758341654,221,0 +170758341704,221,0 +170758341752,222,0 +170758341800,224,0 +170758341848,224,0 +170758341895,223,0 +170758341943,224,0 +170758341991,222,0 +170758342041,215,0 +170758342089,216,0 +170758342138,217,0 +170758342186,218,0 +170758342234,219,0 +170758342283,218,0 +170758342331,219,0 +170758342381,220,0 +170758342430,220,0 +170758342480,221,0 +170758342528,221,0 +170758342576,221,0 +170758342624,222,0 +170758342673,222,0 +170758342721,223,0 +170758342769,223,0 +170758342817,224,0 +170758342867,223,0 +170758342916,217,0 +170758342966,216,0 +170758343015,217,0 +170758343063,218,0 +170758343111,219,0 +170758343160,219,0 +170758343208,219,0 +170758343256,219,0 +170758343304,220,0 +170758343352,220,0 +170758343400,220,0 +170758343448,221,0 +170758343498,222,0 +170758343545,222,0 +170758343595,224,0 +170758343644,222,0 +170758343692,222,0 +170758343742,222,0 +170758343790,222,0 +170758343838,216,0 +170758343887,216,0 +170758343937,217,0 +170758343985,218,0 +170758344033,219,0 +170758344081,218,0 +170758344129,217,0 +170758344178,220,0 +170758344226,221,0 +170758344274,221,0 +170758344322,222,0 +170758344370,223,0 +170758344418,222,0 +170758344466,223,0 +170758344515,224,0 +170758344563,223,0 +170758344611,223,0 +170758344659,222,0 +170758344707,222,0 +170758344755,218,0 +170758344803,218,0 +170758344851,219,0 +170758344899,220,0 +170758344947,219,0 +170758344995,221,0 +170758345044,221,0 +170758345092,221,0 +170758345140,221,0 +170758345189,223,0 +170758345239,222,0 +170758345287,224,0 +170758345335,224,0 +170758345383,226,0 +170758345432,225,0 +170758345482,224,0 +170758345530,224,0 +170758345579,224,0 +170758345627,219,0 +170758345675,219,0 +170758345724,219,0 +170758345774,220,0 +170758345822,220,0 +170758345871,222,0 +170758345919,221,0 +170758345967,221,0 +170758346015,222,0 +170758346064,224,0 +170758346114,222,0 +170758346163,223,0 +170758346213,223,0 +170758346262,224,0 +170758346310,223,0 +170758346358,223,0 +170758346406,222,0 +170758346454,223,0 +170758346502,222,0 +170758346551,216,0 +170758346600,216,0 +170758346648,217,0 +170758346696,218,0 +170758346744,219,0 +170758346792,217,0 +170758346840,220,0 +170758346889,221,0 +170758346937,221,0 +170758346985,223,0 +170758347033,222,0 +170758347081,222,0 +170758347130,223,0 +170758347178,224,0 +170758347226,223,0 +170758347274,223,0 +170758347322,224,0 +170758347371,223,0 +170758347421,220,0 +170758347469,215,0 +170758347518,215,0 +170758347568,216,0 +170758347616,216,0 +170758347663,217,0 +170758347713,217,0 +170758347761,217,0 +170758347809,217,0 +170758347856,218,0 +170758347904,219,0 +170758347952,220,0 +170758348000,220,0 +170758348048,222,0 +170758348095,222,0 +170758348143,224,0 +170758348191,223,0 +170758348239,223,0 +170758348289,223,0 +170758348336,216,0 +170758348384,215,0 +170758348432,215,0 +170758348481,215,0 +170758348531,216,0 +170758348579,216,0 +170758348627,218,0 +170758348674,218,0 +170758348724,218,0 +170758348772,219,0 +170758348819,219,0 +170758348867,220,0 +170758348915,221,0 +170758348963,222,0 +170758349011,223,0 +170758349059,224,0 +170758349108,223,0 +170758349156,223,0 +170758349204,223,0 +170758349252,216,0 +170758349300,215,0 +170758349349,215,0 +170758349399,215,0 +170758349447,216,0 +170758349495,216,0 +170758349543,218,0 +170758349591,218,0 +170758349638,218,0 +170758349686,220,0 +170758349734,220,0 +170758349782,222,0 +170758349832,222,0 +170758349880,220,0 +170758349929,223,0 +170758349977,223,0 +170758350025,223,0 +170758350073,224,0 +170758350121,222,0 +170758350169,215,0 +170758350218,215,0 +170758350266,215,0 +170758350314,216,0 +170758350362,217,0 +170758350410,217,0 +170758350459,218,0 +170758350507,219,0 +170758350557,220,0 +170758350606,222,0 +170758350656,222,0 +170758350704,222,0 +170758350751,222,0 +170758350799,224,0 +170758350847,223,0 +170758350897,222,0 +170758350945,223,0 +170758350993,222,0 +170758351040,216,0 +170758351090,215,0 +170758351138,216,0 +170758351186,217,0 +170758351235,217,0 +170758351283,218,0 +170758351331,219,0 +170758351379,220,0 +170758351429,219,0 +170758351478,221,0 +170758351526,221,0 +170758351574,222,0 +170758351624,223,0 +170758351673,223,0 +170758351723,224,0 +170758351770,224,0 +170758351820,223,0 +170758351868,223,0 +170758351917,223,0 +170758351965,216,0 +170758352015,216,0 +170758352064,216,0 +170758352114,217,0 +170758352162,217,0 +170758352210,218,0 +170758352258,218,0 +170758352306,219,0 +170758352355,219,0 +170758352403,220,0 +170758352451,221,0 +170758352500,222,0 +170758352550,222,0 +170758352598,222,0 +170758352645,223,0 +170758352693,224,0 +170758352741,223,0 +170758352789,224,0 +170758352837,219,0 +170758352885,215,0 +170758352934,215,0 +170758352982,216,0 +170758353030,216,0 +170758353078,217,0 +170758353127,218,0 +170758353175,218,0 +170758353225,219,0 +170758353274,220,0 +170758353322,221,0 +170758353372,221,0 +170758353420,222,0 +170758353467,221,0 +170758353515,222,0 +170758353563,222,0 +170758353611,224,0 +170758353659,224,0 +170758353707,222,0 +170758353755,216,0 +170758353803,215,0 +170758353851,214,0 +170758353899,215,0 +170758353948,216,0 +170758353998,217,0 +170758354046,217,0 +170758354093,218,0 +170758354141,219,0 +170758354191,219,0 +170758354238,220,0 +170758354286,220,0 +170758354334,222,0 +170758354382,223,0 +170758354430,230,0 +170758354478,224,0 +170758354526,224,0 +170758354574,224,0 +170758354621,222,0 +170758354669,216,0 +170758354719,215,0 +170758354767,215,0 +170758354815,215,0 +170758354863,216,0 +170758354911,217,0 +170758354958,217,0 +170758355006,218,0 +170758355054,219,0 +170758355102,218,0 +170758355150,220,0 +170758355198,222,0 +170758355246,221,0 +170758355293,222,0 +170758355341,222,0 +170758355389,223,0 +170758355438,223,0 +170758355488,222,0 +170758355536,223,0 +170758355583,215,0 +170758355631,215,0 +170758355679,215,0 +170758355727,215,0 +170758355777,216,0 +170758355826,217,0 +170758355874,218,0 +170758355924,218,0 +170758355972,219,0 +170758356020,219,0 +170758356067,220,0 +170758356115,220,0 +170758356163,221,0 +170758356211,222,0 +170758356260,223,0 +170758356308,225,0 +170758356356,222,0 +170758356404,223,0 +170758356453,222,0 +170758356501,215,0 +170758356549,215,0 +170758356597,215,0 +170758356644,216,0 +170758356692,216,0 +170758356740,217,0 +170758356790,218,0 +170758356837,218,0 +170758356887,219,0 +170758356935,219,0 +170758356984,221,0 +170758357032,221,0 +170758357080,221,0 +170758357128,222,0 +170758357176,223,0 +170758357224,223,0 +170758357272,223,0 +170758357320,223,0 +170758357368,216,0 +170758357415,215,0 +170758357463,215,0 +170758357511,215,0 +170758357559,215,0 +170758357609,217,0 +170758357657,217,0 +170758357705,218,0 +170758357753,219,0 +170758357801,220,0 +170758357848,221,0 +170758357898,220,0 +170758357947,221,0 +170758357997,222,0 +170758358045,223,0 +170758358093,223,0 +170758358140,222,0 +170758358188,223,0 +170758358236,223,0 +170758358284,216,0 +170758358332,215,0 +170758358380,215,0 +170758358428,216,0 +170758358476,217,0 +170758358523,218,0 +170758358571,218,0 +170758358619,219,0 +170758358669,219,0 +170758358717,220,0 +170758358766,221,0 +170758358814,222,0 +170758358862,221,0 +170758358910,223,0 +170758358958,223,0 +170758359006,223,0 +170758359055,223,0 +170758359103,223,0 +170758359153,222,0 +170758359201,215,0 +170758359249,215,0 +170758359298,215,0 +170758359346,216,0 +170758359396,217,0 +170758359444,219,0 +170758359493,219,0 +170758359541,218,0 +170758359589,218,0 +170758359637,220,0 +170758359685,219,0 +170758359733,221,0 +170758359781,221,0 +170758359830,222,0 +170758359880,221,0 +170758359929,222,0 +170758359977,224,0 +170758360025,223,0 +170758360073,222,0 +170758360123,215,0 +170758360171,215,0 +170758360218,216,0 +170758360266,217,0 +170758360314,217,0 +170758360362,217,0 +170758360410,217,0 +170758360460,218,0 +170758360508,218,0 +170758360556,218,0 +170758360603,219,0 +170758360653,220,0 +170758360702,222,0 +170758360750,222,0 +170758360798,219,0 +170758360846,223,0 +170758360896,221,0 +170758360944,224,0 +170758360991,224,0 +170758361039,225,0 +170758361089,223,0 +170758361137,225,0 +170758361185,222,0 +170758361233,224,0 +170758361281,223,0 +170758361329,223,0 +170758361377,224,0 +170758361424,220,0 +170758361472,217,0 +170758361522,217,0 +170758361570,218,0 +170758361618,218,0 +170758361667,219,0 +170758361717,219,0 +170758361765,220,0 +170758361813,220,0 +170758361861,221,0 +170758361909,222,0 +170758361958,222,0 +170758362006,222,0 +170758362054,222,0 +170758362102,223,0 +170758362150,222,0 +170758362197,223,0 +170758362245,222,0 +170758362293,223,0 +170758362341,216,0 +170758362391,216,0 +170758362439,217,0 +170758362486,217,0 +170758362534,217,0 +170758362584,218,0 +170758362632,217,0 +170758362681,219,0 +170758362731,220,0 +170758362779,220,0 +170758362826,221,0 +170758362874,221,0 +170758362922,222,0 +170758362970,223,0 +170758363019,223,0 +170758363069,222,0 +170758363118,224,0 +170758363168,223,0 +170758363216,223,0 +170758363264,216,0 +170758363313,216,0 +170758363361,217,0 +170758363409,217,0 +170758363457,217,0 +170758363506,218,0 +170758363554,219,0 +170758363602,220,0 +170758363650,220,0 +170758363699,220,0 +170758363747,222,0 +170758363795,222,0 +170758363845,223,0 +170758363894,223,0 +170758363942,224,0 +170758363990,223,0 +170758364038,224,0 +170758364086,223,0 +170758364133,217,0 +170758364183,215,0 +170758364232,215,0 +170758364280,216,0 +170758364328,217,0 +170758364376,218,0 +170758364424,221,0 +170758364473,218,0 +170758364523,219,0 +170758364571,220,0 +170758364619,220,0 +170758364666,221,0 +170758364714,221,0 +170758364762,221,0 +170758364810,223,0 +170758364860,224,0 +170758364908,223,0 +170758364955,223,0 +170758365003,223,0 +170758365051,216,0 +170758365101,215,0 +170758365148,215,0 +170758365198,217,0 +170758365246,217,0 +170758365295,218,0 +170758365343,219,0 +170758365391,220,0 +170758365439,219,0 +170758365488,220,0 +170758365536,221,0 +170758365584,221,0 +170758365632,222,0 +170758365680,223,0 +170758365730,223,0 +170758365779,223,0 +170758365827,223,0 +170758365875,223,0 +170758365924,222,0 +170758365972,215,0 +170758366022,215,0 +170758366070,217,0 +170758366118,217,0 +170758366166,217,0 +170758366214,218,0 +170758366263,219,0 +170758366311,220,0 +170758366359,220,0 +170758366407,221,0 +170758366455,222,0 +170758366503,222,0 +170758366550,222,0 +170758366598,223,0 +170758366646,224,0 +170758366694,223,0 +170758366742,224,0 +170758366790,223,0 +170758366838,222,0 +170758366886,216,0 +170758366934,216,0 +170758366983,217,0 +170758367033,218,0 +170758367081,218,0 +170758367129,220,0 +170758367177,220,0 +170758367225,221,0 +170758367273,221,0 +170758367322,222,0 +170758367371,224,0 +170758367419,222,0 +170758367467,224,0 +170758367515,223,0 +170758367563,223,0 +170758367611,223,0 +170758367659,223,0 +170758367707,223,0 +170758367754,216,0 +170758367802,215,0 +170758367850,216,0 +170758367898,217,0 +170758367946,218,0 +170758367995,219,0 +170758368043,218,0 +170758368091,220,0 +170758368139,220,0 +170758368187,218,0 +170758368235,221,0 +170758368283,221,0 +170758368332,222,0 +170758368380,223,0 +170758368428,223,0 +170758368476,223,0 +170758368524,223,0 +170758368573,223,0 +170758368621,223,0 +170758368669,216,0 +170758368717,215,0 +170758368765,216,0 +170758368813,217,0 +170758368861,218,0 +170758368909,218,0 +170758368957,218,0 +170758369006,219,0 +170758369054,220,0 +170758369102,220,0 +170758369150,220,0 +170758369198,222,0 +170758369246,222,0 +170758369294,222,0 +170758369342,223,0 +170758369390,223,0 +170758369440,222,0 +170758369487,223,0 +170758369535,222,0 +170758369583,216,0 +170758369631,214,0 +170758369679,215,0 +170758369727,214,0 +170758369775,216,0 +170758369822,217,0 +170758369870,217,0 +170758369918,218,0 +170758369966,218,0 +170758370014,219,0 +170758370062,219,0 +170758370111,220,0 +170758370159,221,0 +170758370207,221,0 +170758370255,222,0 +170758370304,222,0 +170758370352,223,0 +170758370400,223,0 +170758370448,222,0 +170758370495,215,0 +170758370543,214,0 +170758370591,214,0 +170758370641,214,0 +170758370688,213,0 +170758370736,214,0 +170758370784,214,0 +170758370832,214,0 +170758370882,215,0 +170758370931,215,0 +170758370979,215,0 +170758371027,216,0 +170758371075,216,0 +170758371123,217,0 +170758371171,219,0 +170758371219,219,0 +170758371268,219,0 +170758371316,222,0 +170758371366,217,0 +170758371415,214,0 +170758371463,215,0 +170758371511,216,0 +170758371559,216,0 +170758371607,217,0 +170758371655,217,0 +170758371703,218,0 +170758371751,219,0 +170758371800,219,0 +170758371848,219,0 +170758371896,221,0 +170758371944,221,0 +170758371994,221,0 +170758372041,221,0 +170758372089,221,0 +170758372137,222,0 +170758372187,222,0 +170758372235,223,0 +170758372284,217,0 +170758372334,216,0 +170758372382,217,0 +170758372430,217,0 +170758372478,218,0 +170758372527,219,0 +170758372575,218,0 +170758372623,220,0 +170758372671,220,0 +170758372719,221,0 +170758372766,221,0 +170758372816,221,0 +170758372864,221,0 +170758372913,223,0 +170758372961,223,0 +170758373009,223,0 +170758373058,225,0 +170758373106,223,0 +170758373154,223,0 +170758373202,218,0 +170758373250,217,0 +170758373298,217,0 +170758373348,219,0 +170758373397,219,0 +170758373445,219,0 +170758373495,220,0 +170758373543,221,0 +170758373592,222,0 +170758373640,221,0 +170758373688,222,0 +170758373737,222,0 +170758373787,223,0 +170758373835,223,0 +170758373883,223,0 +170758373931,224,0 +170758373980,223,0 +170758374028,223,0 +170758374078,222,0 +170758374125,217,0 +170758374173,217,0 +170758374221,218,0 +170758374271,219,0 +170758374320,220,0 +170758374368,220,0 +170758374416,220,0 +170758374464,221,0 +170758374512,221,0 +170758374560,225,0 +170758374607,224,0 +170758374655,223,0 +170758374703,225,0 +170758374751,225,0 +170758374799,223,0 +170758374847,224,0 +170758374895,224,0 +170758374943,223,0 +170758374993,219,0 +170758375042,219,0 +170758375090,219,0 +170758375140,220,0 +170758375187,220,0 +170758375237,221,0 +170758375285,221,0 +170758375334,222,0 +170758375382,222,0 +170758375430,222,0 +170758375480,223,0 +170758375528,226,0 +170758375575,225,0 +170758375623,224,0 +170758375671,224,0 +170758375721,224,0 +170758375770,224,0 +170758375818,223,0 +170758375866,223,0 +170758375914,218,0 +170758375962,218,0 +170758376010,219,0 +170758376058,219,0 +170758376106,220,0 +170758376155,222,0 +170758376205,220,0 +170758376253,224,0 +170758376302,221,0 +170758376350,222,0 +170758376400,223,0 +170758376448,224,0 +170758376496,223,0 +170758376543,223,0 +170758376593,224,0 +170758376641,224,0 +170758376689,223,0 +170758376738,221,0 +170758376786,222,0 +170758376834,218,0 +170758376884,218,0 +170758376931,219,0 +170758376979,220,0 +170758377027,219,0 +170758377075,221,0 +170758377125,221,0 +170758377173,221,0 +170758377221,223,0 +170758377270,223,0 +170758377320,223,0 +170758377368,223,0 +170758377415,222,0 +170758377463,223,0 +170758377511,223,0 +170758377559,224,0 +170758377607,223,0 +170758377656,222,0 +170758377704,216,0 +170758377752,216,0 +170758377800,216,0 +170758377848,217,0 +170758377896,218,0 +170758377944,218,0 +170758377992,218,0 +170758378041,221,0 +170758378089,220,0 +170758378137,222,0 +170758378185,221,0 +170758378233,222,0 +170758378281,223,0 +170758378330,224,0 +170758378378,223,0 +170758378428,223,0 +170758378476,224,0 +170758378525,223,0 +170758378575,222,0 +170758378623,216,0 +170758378670,215,0 +170758378718,216,0 +170758378766,217,0 +170758378814,218,0 +170758378862,219,0 +170758378912,218,0 +170758378961,219,0 +170758379009,220,0 +170758379058,221,0 +170758379106,221,0 +170758379154,223,0 +170758379204,221,0 +170758379252,222,0 +170758379300,223,0 +170758379348,223,0 +170758379395,222,0 +170758379443,222,0 +170758379491,223,0 +170758379539,216,0 +170758379587,215,0 +170758379635,215,0 +170758379683,216,0 +170758379731,216,0 +170758379779,217,0 +170758379828,218,0 +170758379876,218,0 +170758379924,220,0 +170758379972,219,0 +170758380020,221,0 +170758380069,221,0 +170758380117,221,0 +170758380167,220,0 +170758380215,223,0 +170758380263,223,0 +170758380311,221,0 +170758380359,223,0 +170758380407,222,0 +170758380454,214,0 +170758380502,214,0 +170758380550,214,0 +170758380598,214,0 +170758380646,214,0 +170758380694,215,0 +170758380744,215,0 +170758380791,215,0 +170758380839,215,0 +170758380887,216,0 +170758380937,216,0 +170758380985,216,0 +170758381034,217,0 +170758381084,218,0 +170758381132,218,0 +170758381180,219,0 +170758381227,219,0 +170758381277,222,0 +170758381327,216,0 +170758381374,214,0 +170758381422,215,0 +170758381470,215,0 +170758381518,214,0 +170758381566,216,0 +170758381616,216,0 +170758381664,216,0 +170758381713,217,0 +170758381761,218,0 +170758381810,218,0 +170758381858,220,0 +170758381906,220,0 +170758381956,221,0 +170758382004,222,0 +170758382052,222,0 +170758382101,222,0 +170758382151,222,0 +170758382198,222,0 +170758382246,215,0 +170758382294,215,0 +170758382342,215,0 +170758382392,216,0 +170758382440,217,0 +170758382487,218,0 +170758382535,219,0 +170758382585,219,0 +170758382633,219,0 +170758382682,220,0 +170758382732,220,0 +170758382780,222,0 +170758382828,222,0 +170758382877,223,0 +170758382925,223,0 +170758382973,223,0 +170758383021,223,0 +170758383070,222,0 +170758383120,223,0 +170758383168,216,0 +170758383217,216,0 +170758383265,217,0 +170758383313,218,0 +170758383361,219,0 +170758383411,219,0 +170758383459,220,0 +170758383506,221,0 +170758383554,222,0 +170758383602,222,0 +170758383650,223,0 +170758383700,223,0 +170758383747,223,0 +170758383797,225,0 +170758383846,223,0 +170758383896,224,0 +170758383944,224,0 +170758383992,222,0 +170758384040,216,0 +170758384089,215,0 +170758384137,217,0 +170758384185,217,0 +170758384233,218,0 +170758384282,219,0 +170758384330,219,0 +170758384379,220,0 +170758384427,221,0 +170758384477,222,0 +170758384526,223,0 +170758384574,222,0 +170758384622,222,0 +170758384670,223,0 +170758384719,226,0 +170758384767,225,0 +170758384817,223,0 +170758384866,224,0 +170758384914,223,0 +170758384962,215,0 +170758385010,215,0 +170758385059,216,0 +170758385109,216,0 +170758385157,218,0 +170758385204,218,0 +170758385252,219,0 +170758385300,218,0 +170758385348,218,0 +170758385396,220,0 +170758385444,220,0 +170758385492,220,0 +170758385540,221,0 +170758385589,223,0 +170758385637,223,0 +170758385687,223,0 +170758385736,223,0 +170758385784,223,0 +170758385832,223,0 +170758385880,215,0 +170758385930,216,0 +170758385979,216,0 +170758386027,217,0 +170758386076,218,0 +170758386124,218,0 +170758386174,219,0 +170758386222,220,0 +170758386270,219,0 +170758386318,220,0 +170758386366,221,0 +170758386414,221,0 +170758386461,221,0 +170758386509,222,0 +170758386557,223,0 +170758386605,223,0 +170758386653,223,0 +170758386701,223,0 +170758386749,222,0 +170758386798,216,0 +170758386848,216,0 +170758386896,217,0 +170758386944,218,0 +170758386993,218,0 +170758387041,219,0 +170758387089,219,0 +170758387137,220,0 +170758387186,220,0 +170758387236,221,0 +170758387284,221,0 +170758387333,222,0 +170758387381,223,0 +170758387431,224,0 +170758387478,223,0 +170758387526,224,0 +170758387576,224,0 +170758387624,222,0 +170758387673,218,0 +170758387721,217,0 +170758387771,218,0 +170758387819,219,0 +170758387868,219,0 +170758387918,219,0 +170758387967,220,0 +170758388015,221,0 +170758388065,221,0 +170758388113,223,0 +170758388161,225,0 +170758388208,223,0 +170758388256,223,0 +170758388304,224,0 +170758388352,223,0 +170758388400,224,0 +170758388448,222,0 +170758388496,223,0 +170758388544,222,0 +170758388592,218,0 +170758388640,218,0 +170758388688,219,0 +170758388736,220,0 +170758388783,220,0 +170758388831,221,0 +170758388879,222,0 +170758388927,222,0 +170758388975,222,0 +170758389022,222,0 +170758389070,224,0 +170758389120,224,0 +170758389168,225,0 +170758389215,224,0 +170758389263,224,0 +170758389311,223,0 +170758389359,224,0 +170758389408,223,0 +170758389458,218,0 +170758389507,218,0 +170758389555,218,0 +170758389603,218,0 +170758389651,219,0 +170758389700,220,0 +170758389748,221,0 +170758389796,221,0 +170758389844,223,0 +170758389891,223,0 +170758389939,223,0 +170758389987,223,0 +170758390035,223,0 +170758390083,223,0 +170758390131,225,0 +170758390178,224,0 +170758390226,225,0 +170758390274,224,0 +170758390324,223,0 +170758390371,217,0 +170758390419,216,0 +170758390467,217,0 +170758390515,218,0 +170758390563,218,0 +170758390611,220,0 +170758390659,220,0 +170758390708,220,0 +170758390758,221,0 +170758390806,221,0 +170758390854,221,0 +170758390901,222,0 +170758390949,222,0 +170758390999,225,0 +170758391047,224,0 +170758391096,223,0 +170758391146,223,0 +170758391195,222,0 +170758391243,222,0 +170758391291,215,0 +170758391341,215,0 +170758391389,215,0 +170758391436,217,0 +170758391484,217,0 +170758391532,218,0 +170758391580,219,0 +170758391628,219,0 +170758391676,219,0 +170758391724,219,0 +170758391772,220,0 +170758391819,221,0 +170758391867,221,0 +170758391915,223,0 +170758391963,221,0 +170758392011,222,0 +170758392061,220,0 +170758392108,222,0 +170758392158,223,0 +170758392206,216,0 +170758392255,214,0 +170758392303,215,0 +170758392351,215,0 +170758392399,215,0 +170758392447,216,0 +170758392495,216,0 +170758392543,217,0 +170758392592,217,0 +170758392642,218,0 +170758392691,220,0 +170758392739,220,0 +170758392787,220,0 +170758392837,220,0 +170758392885,222,0 +170758392934,220,0 +170758392982,220,0 +170758393030,222,0 +170758393078,216,0 +170758393126,214,0 +170758393174,214,0 +170758393222,215,0 +170758393271,216,0 +170758393319,215,0 +170758393367,216,0 +170758393416,216,0 +170758393464,216,0 +170758393512,217,0 +170758393562,219,0 +170758393611,219,0 +170758393659,220,0 +170758393707,221,0 +170758393756,221,0 +170758393804,221,0 +170758393852,222,0 +170758393900,222,0 +170758393948,222,0 +170758393996,216,0 +170758394046,214,0 +170758394094,215,0 +170758394143,215,0 +170758394191,216,0 +170758394239,217,0 +170758394288,217,0 +170758394338,218,0 +170758394387,219,0 +170758394437,219,0 +170758394485,221,0 +170758394533,221,0 +170758394581,222,0 +170758394630,221,0 +170758394678,222,0 +170758394727,223,0 +170758394777,222,0 +170758394825,222,0 +170758394873,223,0 +170758394921,214,0 +170758394970,215,0 +170758395020,215,0 +170758395068,216,0 +170758395116,216,0 +170758395165,216,0 +170758395213,217,0 +170758395261,218,0 +170758395309,218,0 +170758395358,219,0 +170758395406,220,0 +170758395454,221,0 +170758395504,221,0 +170758395553,222,0 +170758395601,222,0 +170758395649,222,0 +170758395699,223,0 +170758395747,223,0 +170758395795,216,0 +170758395842,215,0 +170758395890,215,0 +170758395940,216,0 +170758395988,217,0 +170758396036,217,0 +170758396085,218,0 +170758396135,218,0 +170758396183,220,0 +170758396232,220,0 +170758396280,221,0 +170758396328,222,0 +170758396376,221,0 +170758396424,221,0 +170758396472,224,0 +170758396520,221,0 +170758396569,225,0 +170758396619,223,0 +170758396667,222,0 +170758396715,215,0 +170758396764,214,0 +170758396812,215,0 +170758396860,215,0 +170758396908,216,0 +170758396956,217,0 +170758397004,218,0 +170758397053,219,0 +170758397103,219,0 +170758397151,218,0 +170758397199,222,0 +170758397247,221,0 +170758397295,222,0 +170758397343,223,0 +170758397390,222,0 +170758397440,222,0 +170758397488,222,0 +170758397536,222,0 +170758397585,222,0 +170758397633,215,0 +170758397681,215,0 +170758397729,215,0 +170758397777,215,0 +170758397827,216,0 +170758397874,216,0 +170758397922,218,0 +170758397970,218,0 +170758398018,218,0 +170758398066,220,0 +170758398116,220,0 +170758398165,221,0 +170758398213,221,0 +170758398261,223,0 +170758398309,222,0 +170758398359,223,0 +170758398407,223,0 +170758398455,224,0 +170758398503,216,0 +170758398550,215,0 +170758398598,215,0 +170758398646,215,0 +170758398694,215,0 +170758398742,215,0 +170758398790,216,0 +170758398840,217,0 +170758398887,218,0 +170758398935,219,0 +170758398983,220,0 +170758399031,220,0 +170758399079,221,0 +170758399127,223,0 +170758399175,225,0 +170758399224,223,0 +170758399274,223,0 +170758399323,223,0 +170758399371,223,0 +170758399419,216,0 +170758399467,215,0 +170758399515,215,0 +170758399565,216,0 +170758399614,217,0 +170758399662,218,0 +170758399710,219,0 +170758399758,220,0 +170758399806,221,0 +170758399854,221,0 +170758399902,221,0 +170758399950,222,0 +170758399999,222,0 +170758400049,222,0 +170758400097,223,0 +170758400146,223,0 +170758400196,223,0 +170758400244,223,0 +170758400291,222,0 +170758400339,218,0 +170758400387,217,0 +170758400435,219,0 +170758400483,219,0 +170758400531,220,0 +170758400579,222,0 +170758400629,222,0 +170758400678,221,0 +170758400726,223,0 +170758400774,225,0 +170758400822,223,0 +170758400870,224,0 +170758400918,223,0 +170758400967,224,0 +170758401017,224,0 +170758401065,224,0 +170758401113,224,0 +170758401161,223,0 +170758401209,222,0 +170758401257,217,0 +170758401306,218,0 +170758401356,218,0 +170758401404,220,0 +170758401451,220,0 +170758401501,220,0 +170758401549,219,0 +170758401597,220,0 +170758401645,222,0 +170758401694,222,0 +170758401742,221,0 +170758401792,223,0 +170758401841,223,0 +170758401889,223,0 +170758401939,224,0 +170758401988,224,0 +170758402036,225,0 +170758402084,223,0 +170758402132,216,0 +170758402180,216,0 +170758402228,216,0 +170758402277,218,0 +170758402325,218,0 +170758402373,218,0 +170758402423,218,0 +170758402470,219,0 +170758402518,220,0 +170758402566,220,0 +170758402614,221,0 +170758402662,222,0 +170758402710,223,0 +170758402757,227,0 +170758402805,223,0 +170758402853,224,0 +170758402901,224,0 +170758402949,224,0 +170758402997,223,0 +170758403044,215,0 +170758403092,216,0 +170758403140,216,0 +170758403188,217,0 +170758403236,218,0 +170758403285,218,0 +170758403333,219,0 +170758403382,220,0 +170758403430,220,0 +170758403478,221,0 +170758403526,220,0 +170758403573,222,0 +170758403621,222,0 +170758403669,223,0 +170758403717,222,0 +170758403765,223,0 +170758403813,224,0 +170758403861,224,0 +170758403909,221,0 +170758403956,215,0 +170758404004,216,0 +170758404052,217,0 +170758404102,218,0 +170758404149,219,0 +170758404197,219,0 +170758404245,220,0 +170758404293,220,0 +170758404341,221,0 +170758404389,221,0 +170758404437,222,0 +170758404485,223,0 +170758404532,223,0 +170758404580,223,0 +170758404628,224,0 +170758404676,223,0 +170758404724,224,0 +170758404772,223,0 +170758404820,222,0 +170758404868,215,0 +170758404917,215,0 +170758404967,216,0 +170758405014,217,0 +170758405062,218,0 +170758405110,218,0 +170758405158,219,0 +170758405206,220,0 +170758405254,220,0 +170758405302,221,0 +170758405352,221,0 +170758405401,223,0 +170758405449,223,0 +170758405497,223,0 +170758405545,222,0 +170758405595,225,0 +170758405644,223,0 +170758405692,222,0 +170758405740,217,0 +170758405789,216,0 +170758405839,217,0 +170758405887,218,0 +170758405935,218,0 +170758405983,219,0 +170758406031,219,0 +170758406078,219,0 +170758406128,220,0 +170758406177,220,0 +170758406225,221,0 +170758406273,221,0 +170758406321,221,0 +170758406371,221,0 +170758406419,221,0 +170758406467,223,0 +170758406515,223,0 +170758406563,225,0 +170758406612,222,0 +170758406660,216,0 +170758406710,216,0 +170758406758,218,0 +170758406807,218,0 +170758406855,218,0 +170758406903,218,0 +170758406951,218,0 +170758407000,219,0 +170758407048,220,0 +170758407096,221,0 +170758407144,221,0 +170758407192,221,0 +170758407240,222,0 +170758407287,222,0 +170758407335,224,0 +170758407385,223,0 +170758407433,223,0 +170758407482,223,0 +170758407530,223,0 +170758407578,217,0 +170758407626,217,0 +170758407676,218,0 +170758407725,219,0 +170758407773,219,0 +170758407823,220,0 +170758407871,219,0 +170758407919,221,0 +170758407967,221,0 +170758408015,222,0 +170758408063,223,0 +170758408112,225,0 +170758408160,223,0 +170758408208,223,0 +170758408256,224,0 +170758408304,223,0 +170758408352,224,0 +170758408400,223,0 +170758408448,218,0 +170758408497,218,0 +170758408545,218,0 +170758408593,218,0 +170758408640,219,0 +170758408688,221,0 +170758408736,221,0 +170758408784,221,0 +170758408832,223,0 +170758408880,222,0 +170758408928,223,0 +170758408976,224,0 +170758409023,224,0 +170758409071,224,0 +170758409119,224,0 +170758409167,228,0 +170758409215,224,0 +170758409263,224,0 +170758409311,223,0 +170758409359,217,0 +170758409407,216,0 +170758409455,218,0 +170758409503,219,0 +170758409551,219,0 +170758409600,220,0 +170758409648,220,0 +170758409696,220,0 +170758409745,224,0 +170758409793,222,0 +170758409841,223,0 +170758409889,223,0 +170758409939,224,0 +170758409987,225,0 +170758410036,223,0 +170758410086,223,0 +170758410134,224,0 +170758410183,223,0 +170758410231,223,0 +170758410279,216,0 +170758410329,215,0 +170758410376,215,0 +170758410426,216,0 +170758410474,216,0 +170758410522,218,0 +170758410570,218,0 +170758410618,220,0 +170758410666,219,0 +170758410714,220,0 +170758410761,220,0 +170758410811,222,0 +170758410859,222,0 +170758410907,223,0 +170758410955,223,0 +170758411002,223,0 +170758411052,224,0 +170758411100,223,0 +170758411148,221,0 +170758411197,216,0 +170758411247,215,0 +170758411296,216,0 +170758411344,216,0 +170758411392,217,0 +170758411442,217,0 +170758411490,218,0 +170758411539,218,0 +170758411587,220,0 +170758411635,220,0 +170758411683,221,0 +170758411732,221,0 +170758411780,222,0 +170758411830,222,0 +170758411878,222,0 +170758411926,222,0 +170758411974,223,0 +170758412021,224,0 +170758412069,216,0 +170758412117,215,0 +170758412165,215,0 +170758412213,216,0 +170758412261,217,0 +170758412311,217,0 +170758412358,218,0 +170758412408,218,0 +170758412456,218,0 +170758412504,218,0 +170758412552,221,0 +170758412600,221,0 +170758412649,221,0 +170758412699,222,0 +170758412746,222,0 +170758412796,222,0 +170758412844,224,0 +170758412892,223,0 +170758412940,223,0 +170758412988,216,0 +170758413036,215,0 +170758413085,215,0 +170758413135,215,0 +170758413183,215,0 +170758413232,216,0 +170758413280,216,0 +170758413328,217,0 +170758413376,217,0 +170758413424,218,0 +170758413472,218,0 +170758413520,219,0 +170758413569,220,0 +170758413619,220,0 +170758413667,221,0 +170758413716,223,0 +170758413764,223,0 +170758413813,223,0 +170758413861,223,0 +170758413909,214,0 +170758413957,214,0 +170758414005,215,0 +170758414054,215,0 +170758414102,215,0 +170758414152,216,0 +170758414201,217,0 +170758414249,217,0 +170758414297,218,0 +170758414345,219,0 +170758414393,219,0 +170758414441,219,0 +170758414489,221,0 +170758414537,220,0 +170758414585,222,0 +170758414633,223,0 +170758414682,222,0 +170758414732,223,0 +170758414781,216,0 +170758414829,215,0 +170758414877,215,0 +170758414927,215,0 +170758414976,216,0 +170758415024,216,0 +170758415073,216,0 +170758415121,217,0 +170758415169,217,0 +170758415217,218,0 +170758415265,218,0 +170758415315,219,0 +170758415363,221,0 +170758415411,221,0 +170758415458,221,0 +170758415506,222,0 +170758415554,221,0 +170758415602,222,0 +170758415650,222,0 +170758415698,216,0 +170758415746,215,0 +170758415794,215,0 +170758415842,216,0 +170758415890,217,0 +170758415938,218,0 +170758415987,218,0 +170758416036,219,0 +170758416084,219,0 +170758416132,220,0 +170758416180,223,0 +170758416230,222,0 +170758416279,222,0 +170758416327,222,0 +170758416376,222,0 +170758416424,224,0 +170758416472,223,0 +170758416520,223,0 +170758416570,222,0 +170758416617,216,0 +170758416665,216,0 +170758416715,217,0 +170758416763,218,0 +170758416811,218,0 +170758416860,219,0 +170758416908,219,0 +170758416958,220,0 +170758417006,221,0 +170758417054,221,0 +170758417103,223,0 +170758417151,222,0 +170758417200,223,0 +170758417248,223,0 +170758417296,223,0 +170758417344,224,0 +170758417392,223,0 +170758417440,223,0 +170758417488,220,0 +170758417536,217,0 +170758417585,218,0 +170758417633,220,0 +170758417681,219,0 +170758417729,219,0 +170758417777,220,0 +170758417825,221,0 +170758417873,221,0 +170758417922,221,0 +170758417970,222,0 +170758418020,224,0 +170758418069,223,0 +170758418119,224,0 +170758418168,223,0 +170758418218,224,0 +170758418267,223,0 +170758418315,223,0 +170758418365,222,0 +170758418414,216,0 +170758418462,216,0 +170758418510,217,0 +170758418559,218,0 +170758418607,219,0 +170758418656,219,0 +170758418704,219,0 +170758418752,221,0 +170758418802,221,0 +170758418850,222,0 +170758418897,223,0 +170758418945,223,0 +170758418993,223,0 +170758419041,223,0 +170758419089,225,0 +170758419137,224,0 +170758419185,223,0 +170758419233,224,0 +170758419282,222,0 +170758419332,216,0 +170758419381,217,0 +170758419431,218,0 +170758419479,218,0 +170758419527,219,0 +170758419575,220,0 +170758419624,227,0 +170758419673,222,0 +170758419721,221,0 +170758419771,222,0 +170758419820,222,0 +170758419868,222,0 +170758419916,223,0 +170758419964,223,0 +170758420012,224,0 +170758420061,224,0 +170758420109,223,0 +170758420157,223,0 +170758420205,216,0 +170758420255,216,0 +170758420303,216,0 +170758420350,218,0 +170758420398,219,0 +170758420446,221,0 +170758420496,220,0 +170758420544,219,0 +170758420592,222,0 +170758420641,221,0 +170758420689,221,0 +170758420737,222,0 +170758420787,223,0 +170758420836,224,0 +170758420886,224,0 +170758420933,223,0 +170758420981,226,0 +170758421031,223,0 +170758421079,222,0 +170758421127,216,0 +170758421175,216,0 +170758421223,217,0 +170758421271,218,0 +170758421319,218,0 +170758421366,218,0 +170758421414,219,0 +170758421464,221,0 +170758421513,220,0 +170758421561,221,0 +170758421611,221,0 +170758421659,223,0 +170758421707,222,0 +170758421755,223,0 +170758421802,223,0 +170758421850,222,0 +170758421898,223,0 +170758421946,222,0 +170758421994,222,0 +170758422042,216,0 +170758422091,216,0 +170758422141,217,0 +170758422189,218,0 +170758422237,218,0 +170758422285,219,0 +170758422333,220,0 +170758422381,220,0 +170758422430,222,0 +170758422478,221,0 +170758422526,222,0 +170758422575,223,0 +170758422625,223,0 +170758422674,223,0 +170758422724,223,0 +170758422772,224,0 +170758422820,223,0 +170758422869,223,0 +170758422917,216,0 +170758422965,215,0 +170758423015,216,0 +170758423063,217,0 +170758423111,218,0 +170758423159,219,0 +170758423207,220,0 +170758423254,221,0 +170758423304,221,0 +170758423352,222,0 +170758423400,222,0 +170758423448,222,0 +170758423497,223,0 +170758423545,224,0 +170758423593,223,0 +170758423641,225,0 +170758423691,223,0 +170758423739,225,0 +170758423786,223,0 +170758423834,216,0 +170758423882,214,0 +170758423930,215,0 +170758423978,216,0 +170758424025,216,0 +170758424073,217,0 +170758424121,217,0 +170758424169,218,0 +170758424217,220,0 +170758424265,220,0 +170758424315,220,0 +170758424363,221,0 +170758424411,221,0 +170758424458,223,0 +170758424506,224,0 +170758424556,223,0 +170758424606,222,0 +170758424653,222,0 +170758424703,223,0 +170758424751,215,0 +170758424799,215,0 +170758424847,215,0 +170758424895,215,0 +170758424943,217,0 +170758424991,218,0 +170758425039,218,0 +170758425086,219,0 +170758425136,219,0 +170758425184,221,0 +170758425232,221,0 +170758425280,221,0 +170758425328,224,0 +170758425377,222,0 +170758425425,223,0 +170758425473,223,0 +170758425521,223,0 +170758425569,223,0 +170758425617,221,0 +170758425665,215,0 +170758425713,215,0 +170758425762,215,0 +170758425810,215,0 +170758425858,215,0 +170758425908,218,0 +170758425957,217,0 +170758426005,218,0 +170758426053,218,0 +170758426101,220,0 +170758426149,221,0 +170758426197,220,0 +170758426245,222,0 +170758426293,223,0 +170758426341,222,0 +170758426388,224,0 +170758426436,224,0 +170758426484,223,0 +170758426532,216,0 +170758426580,214,0 +170758426627,214,0 +170758426675,214,0 +170758426723,215,0 +170758426771,215,0 +170758426819,216,0 +170758426867,215,0 +170758426916,216,0 +170758426964,216,0 +170758427012,218,0 +170758427059,218,0 +170758427107,219,0 +170758427155,219,0 +170758427203,220,0 +170758427251,221,0 +170758427299,221,0 +170758427346,221,0 +170758427394,222,0 +170758427442,216,0 +170758427490,215,0 +170758427538,216,0 +170758427585,217,0 +170758427633,219,0 +170758427681,218,0 +170758427729,219,0 +170758427777,219,0 +170758427825,220,0 +170758427873,220,0 +170758427922,222,0 +170758427971,222,0 +170758428019,221,0 +170758428069,222,0 +170758428117,223,0 +170758428165,223,0 +170758428212,223,0 +170758428262,223,0 +170758428310,223,0 +170758428357,216,0 +170758428405,215,0 +170758428453,216,0 +170758428501,217,0 +170758428551,217,0 +170758428599,217,0 +170758428647,218,0 +170758428696,218,0 +170758428746,220,0 +170758428793,220,0 +170758428841,220,0 +170758428891,221,0 +170758428939,221,0 +170758428987,221,0 +170758429035,223,0 +170758429082,223,0 +170758429130,223,0 +170758429180,223,0 +170758429228,223,0 +170758429276,215,0 +170758429324,215,0 +170758429373,216,0 +170758429421,217,0 +170758429469,217,0 +170758429517,217,0 +170758429565,218,0 +170758429613,218,0 +170758429661,219,0 +170758429709,220,0 +170758429757,219,0 +170758429806,220,0 +170758429854,221,0 +170758429902,222,0 +170758429950,224,0 +170758429998,223,0 +170758430046,221,0 +170758430094,223,0 +170758430143,223,0 +170758430191,216,0 +170758430239,216,0 +170758430287,217,0 +170758430336,217,0 +170758430384,219,0 +170758430432,219,0 +170758430480,219,0 +170758430528,220,0 +170758430577,221,0 +170758430625,221,0 +170758430673,222,0 +170758430721,222,0 +170758430769,222,0 +170758430817,222,0 +170758430867,223,0 +170758430916,224,0 +170758430964,223,0 +170758431014,222,0 +170758431062,216,0 +170758431111,216,0 +170758431159,217,0 +170758431207,219,0 +170758431255,219,0 +170758431302,219,0 +170758431352,220,0 +170758431400,220,0 +170758431448,222,0 +170758431495,221,0 +170758431543,222,0 +170758431593,222,0 +170758431641,222,0 +170758431690,223,0 +170758431738,223,0 +170758431786,223,0 +170758431834,224,0 +170758431882,224,0 +170758431930,222,0 +170758431978,215,0 +170758432027,216,0 +170758432077,217,0 +170758432126,217,0 +170758432176,218,0 +170758432224,218,0 +170758432272,221,0 +170758432321,220,0 +170758432371,221,0 +170758432419,221,0 +170758432468,223,0 +170758432516,223,0 +170758432564,222,0 +170758432612,223,0 +170758432661,223,0 +170758432709,224,0 +170758432757,224,0 +170758432805,223,0 +170758432855,218,0 +170758432904,216,0 +170758432953,217,0 +170758433001,218,0 +170758433049,219,0 +170758433097,219,0 +170758433145,220,0 +170758433193,220,0 +170758433241,221,0 +170758433289,221,0 +170758433337,223,0 +170758433385,222,0 +170758433433,222,0 +170758433481,223,0 +170758433529,223,0 +170758433577,223,0 +170758433625,223,0 +170758433674,223,0 +170758433722,223,0 +170758433770,217,0 +170758433819,219,0 +170758433867,219,0 +170758433917,221,0 +170758433965,221,0 +170758434013,221,0 +170758434062,221,0 +170758434110,222,0 +170758434158,222,0 +170758434206,223,0 +170758434254,223,0 +170758434303,223,0 +170758434351,224,0 +170758434401,223,0 +170758434449,224,0 +170758434497,223,0 +170758434546,223,0 +170758434594,222,0 +170758434642,222,0 +170758434690,219,0 +170758434738,218,0 +170758434788,219,0 +170758434837,220,0 +170758434885,220,0 +170758434935,220,0 +170758434982,220,0 +170758435030,221,0 +170758435078,221,0 +170758435128,222,0 +170758435176,223,0 +170758435225,223,0 +170758435275,223,0 +170758435324,224,0 +170758435372,224,0 +170758435420,223,0 +170758435468,224,0 +170758435517,223,0 +170758435567,217,0 +170758435617,215,0 +170758435664,216,0 +170758435714,216,0 +170758435763,218,0 +170758435811,218,0 +170758435861,218,0 +170758435909,218,0 +170758435957,219,0 +170758436005,219,0 +170758436053,220,0 +170758436102,221,0 +170758436150,221,0 +170758436198,222,0 +170758436246,222,0 +170758436294,222,0 +170758436342,223,0 +170758436390,223,0 +170758436438,224,0 +170758436485,216,0 +170758436535,215,0 +170758436583,215,0 +170758436632,216,0 +170758436680,217,0 +170758436728,217,0 +170758436776,218,0 +170758436826,219,0 +170758436873,220,0 +170758436921,220,0 +170758436969,221,0 +170758437017,222,0 +170758437065,223,0 +170758437114,222,0 +170758437162,223,0 +170758437212,223,0 +170758437261,223,0 +170758437309,223,0 +170758437357,222,0 +170758437407,216,0 +170758437455,214,0 +170758437502,215,0 +170758437550,215,0 +170758437598,215,0 +170758437646,216,0 +170758437694,217,0 +170758437742,217,0 +170758437790,218,0 +170758437838,219,0 +170758437886,219,0 +170758437934,220,0 +170758437981,221,0 +170758438031,222,0 +170758438079,221,0 +170758438127,222,0 +170758438175,222,0 +170758438223,222,0 +170758438271,223,0 +170758438319,215,0 +170758438367,215,0 +170758438415,215,0 +170758438463,215,0 +170758438511,215,0 +170758438559,216,0 +170758438608,216,0 +170758438656,217,0 +170758438704,218,0 +170758438752,218,0 +170758438800,219,0 +170758438848,220,0 +170758438895,220,0 +170758438943,221,0 +170758438993,221,0 +170758439041,222,0 +170758439090,221,0 +170758439138,222,0 +170758439186,217,0 +170758439236,215,0 +170758439284,216,0 +170758439332,217,0 +170758439381,217,0 +170758439429,218,0 +170758439477,218,0 +170758439525,219,0 +170758439573,220,0 +170758439621,220,0 +170758439669,221,0 +170758439718,221,0 +170758439768,222,0 +170758439816,223,0 +170758439865,222,0 +170758439913,224,0 +170758439961,224,0 +170758440009,223,0 diff --git a/laser_value/0211-03.csv b/laser_value/0211-03.csv new file mode 100644 index 0000000..3ea2fc2 --- /dev/null +++ b/laser_value/0211-03.csv @@ -0,0 +1,7450 @@ +timestamp,laser_value,event +170758440057,222,0 +170758440105,217,0 +170758440153,216,0 +170758440201,216,0 +170758440249,217,0 +170758440297,218,0 +170758440346,218,0 +170758440394,219,0 +170758440442,222,0 +170758440492,220,0 +170758440541,221,0 +170758440589,221,0 +170758440637,222,0 +170758440685,222,0 +170758440733,224,0 +170758440781,224,0 +170758440829,224,0 +170758440877,222,0 +170758440926,223,0 +170758440976,223,0 +170758441025,215,0 +170758441075,216,0 +170758441123,215,0 +170758441171,216,0 +170758441220,217,0 +170758441268,218,0 +170758441316,219,0 +170758441364,218,0 +170758441412,220,0 +170758441460,220,0 +170758441509,221,0 +170758441557,222,0 +170758441605,222,0 +170758441653,222,0 +170758441701,224,0 +170758441749,223,0 +170758441797,223,0 +170758441845,223,0 +170758441893,222,0 +170758441941,215,0 +170758441989,214,0 +170758442037,214,0 +170758442085,214,0 +170758442134,215,0 +170758442184,215,0 +170758442233,215,0 +170758442281,215,0 +170758442329,216,0 +170758442377,216,0 +170758442425,217,0 +170758442473,218,0 +170758442521,220,0 +170758442570,219,0 +170758442618,219,0 +170758442666,219,0 +170758442714,218,0 +170758442762,223,0 +170758442810,216,0 +170758442858,215,0 +170758442906,215,0 +170758442955,215,0 +170758443003,216,0 +170758443051,217,0 +170758443099,218,0 +170758443148,218,0 +170758443196,218,0 +170758443246,219,0 +170758443294,220,0 +170758443342,221,0 +170758443391,221,0 +170758443441,221,0 +170758443490,224,0 +170758443538,222,0 +170758443587,222,0 +170758443637,224,0 +170758443686,224,0 +170758443734,216,0 +170758443782,216,0 +170758443830,216,0 +170758443878,217,0 +170758443925,218,0 +170758443973,219,0 +170758444021,219,0 +170758444071,218,0 +170758444119,221,0 +170758444166,220,0 +170758444214,221,0 +170758444264,221,0 +170758444312,222,0 +170758444359,224,0 +170758444409,223,0 +170758444457,222,0 +170758444506,223,0 +170758444554,223,0 +170758444602,222,0 +170758444650,216,0 +170758444698,217,0 +170758444747,217,0 +170758444795,218,0 +170758444845,219,0 +170758444892,219,0 +170758444940,221,0 +170758444988,221,0 +170758445038,221,0 +170758445086,221,0 +170758445134,222,0 +170758445181,221,0 +170758445229,223,0 +170758445277,223,0 +170758445327,222,0 +170758445375,223,0 +170758445422,223,0 +170758445472,224,0 +170758445520,217,0 +170758445569,215,0 +170758445617,216,0 +170758445667,217,0 +170758445715,217,0 +170758445764,219,0 +170758445812,218,0 +170758445861,219,0 +170758445909,220,0 +170758445959,220,0 +170758446007,221,0 +170758446054,221,0 +170758446102,222,0 +170758446150,222,0 +170758446198,224,0 +170758446246,223,0 +170758446295,223,0 +170758446345,222,0 +170758446393,223,0 +170758446441,217,0 +170758446489,216,0 +170758446538,217,0 +170758446586,218,0 +170758446634,219,0 +170758446682,219,0 +170758446730,219,0 +170758446778,220,0 +170758446825,221,0 +170758446873,221,0 +170758446921,221,0 +170758446971,222,0 +170758447019,222,0 +170758447067,222,0 +170758447116,222,0 +170758447164,223,0 +170758447212,223,0 +170758447260,224,0 +170758447308,223,0 +170758447356,216,0 +170758447404,215,0 +170758447452,216,0 +170758447500,218,0 +170758447549,218,0 +170758447597,218,0 +170758447645,219,0 +170758447694,219,0 +170758447742,220,0 +170758447790,221,0 +170758447838,221,0 +170758447886,222,0 +170758447934,223,0 +170758447982,222,0 +170758448030,223,0 +170758448077,224,0 +170758448125,224,0 +170758448173,223,0 +170758448223,221,0 +170758448271,215,0 +170758448320,216,0 +170758448370,217,0 +170758448417,217,0 +170758448465,218,0 +170758448513,219,0 +170758448561,219,0 +170758448609,220,0 +170758448656,221,0 +170758448704,221,0 +170758448752,221,0 +170758448800,222,0 +170758448848,224,0 +170758448896,227,0 +170758448944,223,0 +170758448992,223,0 +170758449041,222,0 +170758449089,222,0 +170758449137,221,0 +170758449185,215,0 +170758449233,216,0 +170758449281,217,0 +170758449329,218,0 +170758449378,218,0 +170758449426,218,0 +170758449476,220,0 +170758449524,220,0 +170758449572,222,0 +170758449619,221,0 +170758449669,221,0 +170758449717,222,0 +170758449765,223,0 +170758449813,223,0 +170758449861,223,0 +170758449908,223,0 +170758449956,225,0 +170758450004,224,0 +170758450052,216,0 +170758450100,217,0 +170758450147,217,0 +170758450195,218,0 +170758450243,218,0 +170758450291,220,0 +170758450338,221,0 +170758450386,221,0 +170758450434,221,0 +170758450482,222,0 +170758450530,223,0 +170758450578,223,0 +170758450626,223,0 +170758450674,224,0 +170758450723,224,0 +170758450772,224,0 +170758450820,223,0 +170758450868,223,0 +170758450918,222,0 +170758450966,217,0 +170758451014,217,0 +170758451063,218,0 +170758451113,218,0 +170758451161,219,0 +170758451208,220,0 +170758451256,221,0 +170758451304,221,0 +170758451352,222,0 +170758451402,222,0 +170758451449,223,0 +170758451497,222,0 +170758451545,223,0 +170758451593,223,0 +170758451641,224,0 +170758451691,223,0 +170758451739,224,0 +170758451788,224,0 +170758451838,222,0 +170758451886,218,0 +170758451933,218,0 +170758451983,219,0 +170758452031,219,0 +170758452079,221,0 +170758452127,220,0 +170758452175,221,0 +170758452223,224,0 +170758452272,224,0 +170758452320,223,0 +170758452368,222,0 +170758452416,223,0 +170758452464,223,0 +170758452512,223,0 +170758452560,223,0 +170758452609,223,0 +170758452657,223,0 +170758452706,224,0 +170758452754,216,0 +170758452802,215,0 +170758452850,216,0 +170758452898,217,0 +170758452946,217,0 +170758452994,218,0 +170758453043,218,0 +170758453091,220,0 +170758453139,220,0 +170758453187,221,0 +170758453236,221,0 +170758453284,222,0 +170758453332,218,0 +170758453382,222,0 +170758453430,223,0 +170758453479,226,0 +170758453529,222,0 +170758453577,223,0 +170758453625,222,0 +170758453674,216,0 +170758453722,216,0 +170758453770,216,0 +170758453818,217,0 +170758453866,218,0 +170758453915,218,0 +170758453963,219,0 +170758454012,219,0 +170758454060,220,0 +170758454108,221,0 +170758454156,221,0 +170758454204,222,0 +170758454252,222,0 +170758454300,222,0 +170758454348,223,0 +170758454396,224,0 +170758454443,225,0 +170758454493,224,0 +170758454541,222,0 +170758454589,216,0 +170758454637,215,0 +170758454685,215,0 +170758454732,216,0 +170758454782,217,0 +170758454831,217,0 +170758454879,218,0 +170758454927,219,0 +170758454975,219,0 +170758455023,221,0 +170758455071,220,0 +170758455120,222,0 +170758455170,221,0 +170758455219,221,0 +170758455267,223,0 +170758455316,222,0 +170758455364,222,0 +170758455412,223,0 +170758455460,222,0 +170758455508,215,0 +170758455556,215,0 +170758455604,215,0 +170758455653,216,0 +170758455701,217,0 +170758455749,217,0 +170758455798,225,0 +170758455848,218,0 +170758455897,219,0 +170758455945,220,0 +170758455995,220,0 +170758456043,221,0 +170758456091,222,0 +170758456139,221,0 +170758456186,219,0 +170758456234,222,0 +170758456284,223,0 +170758456332,223,0 +170758456380,216,0 +170758456428,214,0 +170758456476,215,0 +170758456524,215,0 +170758456571,215,0 +170758456619,216,0 +170758456667,217,0 +170758456717,217,0 +170758456765,217,0 +170758456813,219,0 +170758456861,220,0 +170758456909,221,0 +170758456956,221,0 +170758457004,222,0 +170758457054,221,0 +170758457102,222,0 +170758457150,222,0 +170758457200,224,0 +170758457248,223,0 +170758457297,216,0 +170758457345,214,0 +170758457393,215,0 +170758457441,215,0 +170758457489,215,0 +170758457537,216,0 +170758457584,217,0 +170758457632,218,0 +170758457682,218,0 +170758457730,219,0 +170758457779,221,0 +170758457829,220,0 +170758457876,222,0 +170758457924,221,0 +170758457972,222,0 +170758458022,220,0 +170758458070,222,0 +170758458119,222,0 +170758458167,223,0 +170758458215,215,0 +170758458263,214,0 +170758458311,214,0 +170758458360,215,0 +170758458408,215,0 +170758458456,216,0 +170758458504,217,0 +170758458552,217,0 +170758458601,218,0 +170758458649,218,0 +170758458699,220,0 +170758458748,220,0 +170758458798,221,0 +170758458845,221,0 +170758458893,221,0 +170758458941,222,0 +170758458989,222,0 +170758459037,222,0 +170758459084,220,0 +170758459132,214,0 +170758459180,215,0 +170758459228,215,0 +170758459276,216,0 +170758459324,217,0 +170758459372,217,0 +170758459420,219,0 +170758459468,219,0 +170758459516,221,0 +170758459565,222,0 +170758459613,221,0 +170758459661,221,0 +170758459708,222,0 +170758459756,223,0 +170758459804,223,0 +170758459852,223,0 +170758459900,224,0 +170758459948,222,0 +170758459995,216,0 +170758460043,214,0 +170758460091,215,0 +170758460139,215,0 +170758460187,216,0 +170758460235,217,0 +170758460283,218,0 +170758460331,219,0 +170758460380,219,0 +170758460428,220,0 +170758460476,221,0 +170758460524,221,0 +170758460573,221,0 +170758460621,222,0 +170758460669,222,0 +170758460717,224,0 +170758460767,222,0 +170758460816,223,0 +170758460864,224,0 +170758460912,216,0 +170758460960,214,0 +170758461008,214,0 +170758461056,215,0 +170758461104,215,0 +170758461151,216,0 +170758461199,217,0 +170758461247,218,0 +170758461295,219,0 +170758461343,219,0 +170758461391,219,0 +170758461440,220,0 +170758461488,219,0 +170758461536,220,0 +170758461584,221,0 +170758461632,221,0 +170758461680,222,0 +170758461727,222,0 +170758461775,223,0 +170758461823,216,0 +170758461871,215,0 +170758461919,215,0 +170758461967,216,0 +170758462015,216,0 +170758462063,218,0 +170758462112,218,0 +170758462160,218,0 +170758462208,219,0 +170758462256,219,0 +170758462304,220,0 +170758462353,220,0 +170758462401,221,0 +170758462451,222,0 +170758462499,227,0 +170758462547,222,0 +170758462595,222,0 +170758462644,223,0 +170758462692,222,0 +170758462740,215,0 +170758462788,216,0 +170758462837,216,0 +170758462885,217,0 +170758462933,218,0 +170758462981,220,0 +170758463029,219,0 +170758463077,220,0 +170758463124,221,0 +170758463172,221,0 +170758463220,223,0 +170758463269,221,0 +170758463317,223,0 +170758463365,224,0 +170758463413,223,0 +170758463460,223,0 +170758463508,223,0 +170758463556,223,0 +170758463604,222,0 +170758463652,216,0 +170758463700,217,0 +170758463747,216,0 +170758463795,217,0 +170758463843,218,0 +170758463891,220,0 +170758463939,219,0 +170758463986,219,0 +170758464034,220,0 +170758464082,221,0 +170758464130,222,0 +170758464180,222,0 +170758464228,223,0 +170758464275,223,0 +170758464325,224,0 +170758464375,225,0 +170758464422,224,0 +170758464470,223,0 +170758464518,218,0 +170758464568,217,0 +170758464616,218,0 +170758464665,218,0 +170758464715,219,0 +170758464764,220,0 +170758464812,220,0 +170758464862,220,0 +170758464910,221,0 +170758464959,221,0 +170758465007,221,0 +170758465057,223,0 +170758465105,223,0 +170758465154,223,0 +170758465202,223,0 +170758465252,223,0 +170758465299,223,0 +170758465349,224,0 +170758465398,222,0 +170758465448,217,0 +170758465497,217,0 +170758465547,218,0 +170758465595,219,0 +170758465643,220,0 +170758465692,220,0 +170758465742,222,0 +170758465789,220,0 +170758465837,222,0 +170758465885,223,0 +170758465933,223,0 +170758465981,223,0 +170758466029,223,0 +170758466078,223,0 +170758466126,223,0 +170758466174,223,0 +170758466222,223,0 +170758466271,223,0 +170758466319,217,0 +170758466367,218,0 +170758466415,218,0 +170758466465,219,0 +170758466513,219,0 +170758466562,220,0 +170758466610,221,0 +170758466658,221,0 +170758466706,222,0 +170758466754,222,0 +170758466802,222,0 +170758466850,224,0 +170758466897,223,0 +170758466945,224,0 +170758466993,223,0 +170758467041,223,0 +170758467091,223,0 +170758467140,222,0 +170758467190,223,0 +170758467238,216,0 +170758467287,217,0 +170758467335,218,0 +170758467383,218,0 +170758467431,219,0 +170758467479,220,0 +170758467527,220,0 +170758467575,221,0 +170758467623,222,0 +170758467672,222,0 +170758467720,223,0 +170758467768,223,0 +170758467816,222,0 +170758467864,223,0 +170758467914,224,0 +170758467961,224,0 +170758468009,224,0 +170758468057,221,0 +170758468105,222,0 +170758468153,216,0 +170758468201,214,0 +170758468249,215,0 +170758468297,216,0 +170758468344,216,0 +170758468392,217,0 +170758468440,218,0 +170758468488,219,0 +170758468535,219,0 +170758468583,220,0 +170758468631,221,0 +170758468679,224,0 +170758468726,222,0 +170758468774,223,0 +170758468822,223,0 +170758468871,224,0 +170758468919,224,0 +170758468967,223,0 +170758469016,223,0 +170758469064,215,0 +170758469112,215,0 +170758469160,216,0 +170758469207,216,0 +170758469255,217,0 +170758469303,218,0 +170758469352,218,0 +170758469402,219,0 +170758469449,219,0 +170758469497,219,0 +170758469545,221,0 +170758469593,222,0 +170758469642,221,0 +170758469690,223,0 +170758469738,222,0 +170758469786,223,0 +170758469834,222,0 +170758469881,223,0 +170758469929,229,0 +170758469977,216,0 +170758470025,216,0 +170758470073,218,0 +170758470120,218,0 +170758470168,218,0 +170758470216,219,0 +170758470264,219,0 +170758470312,220,0 +170758470360,220,0 +170758470407,220,0 +170758470455,220,0 +170758470503,223,0 +170758470553,222,0 +170758470602,224,0 +170758470650,224,0 +170758470698,223,0 +170758470745,224,0 +170758470793,224,0 +170758470841,222,0 +170758470889,216,0 +170758470937,216,0 +170758470984,217,0 +170758471032,218,0 +170758471080,218,0 +170758471128,219,0 +170758471177,219,0 +170758471225,220,0 +170758471273,220,0 +170758471321,222,0 +170758471368,222,0 +170758471418,223,0 +170758471466,222,0 +170758471513,223,0 +170758471561,223,0 +170758471609,224,0 +170758471657,223,0 +170758471705,224,0 +170758471753,216,0 +170758471800,216,0 +170758471848,217,0 +170758471896,218,0 +170758471944,219,0 +170758471993,219,0 +170758472041,220,0 +170758472089,220,0 +170758472136,220,0 +170758472184,221,0 +170758472234,222,0 +170758472281,222,0 +170758472329,225,0 +170758472377,223,0 +170758472425,224,0 +170758472473,224,0 +170758472521,224,0 +170758472568,223,0 +170758472616,223,0 +170758472664,216,0 +170758472714,215,0 +170758472761,216,0 +170758472809,217,0 +170758472857,218,0 +170758472905,218,0 +170758472953,220,0 +170758473000,220,0 +170758473048,220,0 +170758473096,221,0 +170758473144,220,0 +170758473192,222,0 +170758473240,223,0 +170758473287,224,0 +170758473335,223,0 +170758473383,223,0 +170758473431,223,0 +170758473480,225,0 +170758473530,223,0 +170758473579,216,0 +170758473627,215,0 +170758473675,215,0 +170758473723,217,0 +170758473770,218,0 +170758473818,218,0 +170758473866,218,0 +170758473914,219,0 +170758473962,220,0 +170758474010,220,0 +170758474057,222,0 +170758474105,222,0 +170758474153,223,0 +170758474201,223,0 +170758474249,223,0 +170758474297,223,0 +170758474344,223,0 +170758474392,224,0 +170758474440,223,0 +170758474488,216,0 +170758474537,215,0 +170758474585,215,0 +170758474633,216,0 +170758474681,216,0 +170758474729,217,0 +170758474777,218,0 +170758474825,218,0 +170758474873,220,0 +170758474920,221,0 +170758474968,221,0 +170758475016,222,0 +170758475064,222,0 +170758475112,223,0 +170758475160,223,0 +170758475207,223,0 +170758475255,223,0 +170758475303,223,0 +170758475351,223,0 +170758475399,215,0 +170758475447,215,0 +170758475494,215,0 +170758475542,216,0 +170758475590,217,0 +170758475638,217,0 +170758475686,218,0 +170758475734,219,0 +170758475783,220,0 +170758475831,219,0 +170758475880,221,0 +170758475928,222,0 +170758475976,221,0 +170758476024,223,0 +170758476072,223,0 +170758476119,222,0 +170758476167,223,0 +170758476215,223,0 +170758476263,222,0 +170758476311,215,0 +170758476358,215,0 +170758476408,216,0 +170758476456,216,0 +170758476504,217,0 +170758476551,217,0 +170758476599,218,0 +170758476649,218,0 +170758476696,219,0 +170758476744,219,0 +170758476792,221,0 +170758476840,221,0 +170758476888,221,0 +170758476935,223,0 +170758476983,223,0 +170758477031,224,0 +170758477079,222,0 +170758477127,223,0 +170758477175,222,0 +170758477223,216,0 +170758477270,216,0 +170758477318,217,0 +170758477366,218,0 +170758477414,218,0 +170758477462,220,0 +170758477511,220,0 +170758477559,222,0 +170758477607,221,0 +170758477655,221,0 +170758477704,223,0 +170758477752,222,0 +170758477800,222,0 +170758477848,224,0 +170758477896,223,0 +170758477943,223,0 +170758477991,223,0 +170758478041,223,0 +170758478089,216,0 +170758478136,215,0 +170758478184,216,0 +170758478232,217,0 +170758478280,218,0 +170758478328,222,0 +170758478376,219,0 +170758478423,220,0 +170758478471,220,0 +170758478519,222,0 +170758478567,222,0 +170758478615,222,0 +170758478663,222,0 +170758478710,222,0 +170758478758,224,0 +170758478806,224,0 +170758478854,223,0 +170758478902,225,0 +170758478951,223,0 +170758478999,216,0 +170758479047,215,0 +170758479095,216,0 +170758479143,217,0 +170758479190,218,0 +170758479240,218,0 +170758479288,219,0 +170758479337,220,0 +170758479385,221,0 +170758479433,221,0 +170758479480,223,0 +170758479528,222,0 +170758479576,222,0 +170758479624,223,0 +170758479672,223,0 +170758479719,224,0 +170758479767,223,0 +170758479815,223,0 +170758479864,222,0 +170758479912,216,0 +170758479960,215,0 +170758480008,215,0 +170758480056,216,0 +170758480104,217,0 +170758480153,217,0 +170758480201,217,0 +170758480249,218,0 +170758480297,219,0 +170758480344,219,0 +170758480392,220,0 +170758480440,221,0 +170758480490,222,0 +170758480537,222,0 +170758480585,222,0 +170758480633,222,0 +170758480681,222,0 +170758480729,223,0 +170758480777,223,0 +170758480824,215,0 +170758480872,214,0 +170758480920,215,0 +170758480968,214,0 +170758481017,214,0 +170758481065,215,0 +170758481113,215,0 +170758481161,217,0 +170758481209,218,0 +170758481257,218,0 +170758481306,219,0 +170758481354,220,0 +170758481404,221,0 +170758481453,222,0 +170758481503,222,0 +170758481550,222,0 +170758481598,222,0 +170758481646,223,0 +170758481694,222,0 +170758481742,215,0 +170758481790,215,0 +170758481837,215,0 +170758481885,216,0 +170758481935,217,0 +170758481982,217,0 +170758482032,218,0 +170758482080,218,0 +170758482129,219,0 +170758482177,220,0 +170758482227,220,0 +170758482274,221,0 +170758482322,223,0 +170758482370,222,0 +170758482418,223,0 +170758482466,223,0 +170758482516,223,0 +170758482564,223,0 +170758482613,216,0 +170758482661,214,0 +170758482709,215,0 +170758482758,216,0 +170758482808,217,0 +170758482857,217,0 +170758482907,218,0 +170758482955,219,0 +170758483003,219,0 +170758483052,220,0 +170758483100,220,0 +170758483150,222,0 +170758483197,222,0 +170758483247,222,0 +170758483295,223,0 +170758483343,222,0 +170758483391,222,0 +170758483439,223,0 +170758483487,222,0 +170758483535,216,0 +170758483583,215,0 +170758483630,216,0 +170758483678,217,0 +170758483726,218,0 +170758483774,219,0 +170758483824,219,0 +170758483873,220,0 +170758483923,221,0 +170758483971,221,0 +170758484020,222,0 +170758484068,222,0 +170758484117,222,0 +170758484165,223,0 +170758484213,223,0 +170758484261,224,0 +170758484309,223,0 +170758484359,223,0 +170758484408,221,0 +170758484456,215,0 +170758484504,215,0 +170758484553,216,0 +170758484601,217,0 +170758484649,217,0 +170758484697,218,0 +170758484747,219,0 +170758484796,220,0 +170758484844,220,0 +170758484892,222,0 +170758484940,222,0 +170758484988,221,0 +170758485036,222,0 +170758485083,223,0 +170758485131,223,0 +170758485181,223,0 +170758485229,222,0 +170758485278,220,0 +170758485326,216,0 +170758485374,215,0 +170758485422,216,0 +170758485472,217,0 +170758485521,217,0 +170758485571,218,0 +170758485619,218,0 +170758485668,219,0 +170758485716,219,0 +170758485764,220,0 +170758485813,220,0 +170758485863,221,0 +170758485911,222,0 +170758485959,222,0 +170758486008,222,0 +170758486058,224,0 +170758486105,223,0 +170758486153,223,0 +170758486201,222,0 +170758486249,216,0 +170758486297,216,0 +170758486346,217,0 +170758486394,218,0 +170758486442,218,0 +170758486490,221,0 +170758486538,219,0 +170758486586,220,0 +170758486635,219,0 +170758486683,221,0 +170758486733,222,0 +170758486782,222,0 +170758486831,222,0 +170758486879,222,0 +170758486927,223,0 +170758486975,223,0 +170758487023,224,0 +170758487072,223,0 +170758487120,223,0 +170758487168,216,0 +170758487216,217,0 +170758487264,217,0 +170758487312,218,0 +170758487359,218,0 +170758487409,219,0 +170758487457,220,0 +170758487506,220,0 +170758487554,221,0 +170758487604,222,0 +170758487653,222,0 +170758487703,223,0 +170758487753,224,0 +170758487800,223,0 +170758487848,223,0 +170758487898,223,0 +170758487946,224,0 +170758487993,219,0 +170758488041,216,0 +170758488091,215,0 +170758488139,216,0 +170758488188,217,0 +170758488236,218,0 +170758488286,218,0 +170758488334,218,0 +170758488382,219,0 +170758488430,220,0 +170758488478,221,0 +170758488525,223,0 +170758488573,222,0 +170758488621,223,0 +170758488671,224,0 +170758488719,224,0 +170758488767,223,0 +170758488816,224,0 +170758488864,223,0 +170758488913,222,0 +170758488961,215,0 +170758489011,215,0 +170758489058,216,0 +170758489106,216,0 +170758489156,217,0 +170758489203,218,0 +170758489251,218,0 +170758489299,219,0 +170758489347,221,0 +170758489396,220,0 +170758489444,220,0 +170758489494,223,0 +170758489542,223,0 +170758489591,224,0 +170758489641,224,0 +170758489689,224,0 +170758489738,223,0 +170758489786,223,0 +170758489834,216,0 +170758489882,215,0 +170758489930,215,0 +170758489978,216,0 +170758490027,216,0 +170758490077,218,0 +170758490125,217,0 +170758490173,218,0 +170758490220,219,0 +170758490270,220,0 +170758490318,220,0 +170758490366,221,0 +170758490414,221,0 +170758490463,222,0 +170758490511,224,0 +170758490559,222,0 +170758490606,223,0 +170758490654,223,0 +170758490702,223,0 +170758490750,216,0 +170758490798,216,0 +170758490846,217,0 +170758490894,218,0 +170758490942,217,0 +170758490990,218,0 +170758491039,218,0 +170758491089,219,0 +170758491137,220,0 +170758491186,220,0 +170758491234,220,0 +170758491282,222,0 +170758491330,222,0 +170758491377,223,0 +170758491425,222,0 +170758491473,222,0 +170758491521,224,0 +170758491569,224,0 +170758491617,222,0 +170758491665,216,0 +170758491714,216,0 +170758491762,217,0 +170758491810,218,0 +170758491860,219,0 +170758491909,219,0 +170758491957,220,0 +170758492007,221,0 +170758492055,221,0 +170758492103,222,0 +170758492151,222,0 +170758492198,222,0 +170758492248,225,0 +170758492296,223,0 +170758492345,223,0 +170758492393,223,0 +170758492441,223,0 +170758492491,223,0 +170758492539,220,0 +170758492586,218,0 +170758492634,218,0 +170758492682,219,0 +170758492730,219,0 +170758492778,219,0 +170758492826,221,0 +170758492874,221,0 +170758492922,220,0 +170758492971,221,0 +170758493019,221,0 +170758493067,225,0 +170758493115,224,0 +170758493163,224,0 +170758493211,223,0 +170758493259,224,0 +170758493307,223,0 +170758493356,223,0 +170758493406,223,0 +170758493454,217,0 +170758493501,219,0 +170758493549,219,0 +170758493597,220,0 +170758493645,220,0 +170758493693,221,0 +170758493741,222,0 +170758493789,222,0 +170758493837,223,0 +170758493884,223,0 +170758493932,223,0 +170758493982,224,0 +170758494031,222,0 +170758494079,224,0 +170758494127,225,0 +170758494177,224,0 +170758494225,221,0 +170758494272,225,0 +170758494320,223,0 +170758494368,218,0 +170758494416,217,0 +170758494464,219,0 +170758494514,219,0 +170758494562,219,0 +170758494611,221,0 +170758494659,221,0 +170758494707,221,0 +170758494755,223,0 +170758494803,221,0 +170758494852,223,0 +170758494900,224,0 +170758494948,222,0 +170758494996,224,0 +170758495044,224,0 +170758495092,223,0 +170758495141,224,0 +170758495191,223,0 +170758495239,222,0 +170758495288,215,0 +170758495336,215,0 +170758495384,216,0 +170758495432,217,0 +170758495482,217,0 +170758495529,217,0 +170758495579,219,0 +170758495627,220,0 +170758495675,220,0 +170758495724,221,0 +170758495774,221,0 +170758495822,223,0 +170758495869,224,0 +170758495917,222,0 +170758495967,224,0 +170758496016,224,0 +170758496064,223,0 +170758496112,223,0 +170758496160,216,0 +170758496208,214,0 +170758496256,215,0 +170758496304,215,0 +170758496352,216,0 +170758496400,216,0 +170758496449,217,0 +170758496497,217,0 +170758496545,217,0 +170758496593,218,0 +170758496642,220,0 +170758496690,220,0 +170758496738,221,0 +170758496786,221,0 +170758496836,222,0 +170758496885,223,0 +170758496933,225,0 +170758496983,222,0 +170758497031,222,0 +170758497080,216,0 +170758497128,215,0 +170758497178,215,0 +170758497226,216,0 +170758497275,217,0 +170758497323,217,0 +170758497371,217,0 +170758497420,219,0 +170758497468,219,0 +170758497516,220,0 +170758497564,220,0 +170758497612,221,0 +170758497660,222,0 +170758497710,222,0 +170758497759,222,0 +170758497808,223,0 +170758497856,223,0 +170758497906,223,0 +170758497954,222,0 +170758498002,215,0 +170758498050,215,0 +170758498099,215,0 +170758498149,215,0 +170758498197,216,0 +170758498245,217,0 +170758498294,217,0 +170758498344,217,0 +170758498393,218,0 +170758498443,219,0 +170758498492,220,0 +170758498540,221,0 +170758498588,220,0 +170758498638,220,0 +170758498686,222,0 +170758498734,224,0 +170758498782,222,0 +170758498830,223,0 +170758498879,216,0 +170758498927,215,0 +170758498975,215,0 +170758499023,216,0 +170758499071,216,0 +170758499120,216,0 +170758499168,217,0 +170758499218,218,0 +170758499265,219,0 +170758499315,219,0 +170758499364,220,0 +170758499412,221,0 +170758499462,221,0 +170758499511,222,0 +170758499559,222,0 +170758499609,224,0 +170758499658,224,0 +170758499706,223,0 +170758499756,223,0 +170758499805,215,0 +170758499853,215,0 +170758499901,215,0 +170758499949,216,0 +170758499997,217,0 +170758500045,218,0 +170758500094,219,0 +170758500144,220,0 +170758500192,220,0 +170758500241,222,0 +170758500289,222,0 +170758500337,222,0 +170758500385,222,0 +170758500433,224,0 +170758500481,223,0 +170758500529,224,0 +170758500577,223,0 +170758500627,223,0 +170758500676,217,0 +170758500724,216,0 +170758500773,217,0 +170758500821,217,0 +170758500871,218,0 +170758500919,220,0 +170758500967,220,0 +170758501015,220,0 +170758501063,223,0 +170758501111,222,0 +170758501159,223,0 +170758501207,222,0 +170758501255,223,0 +170758501302,223,0 +170758501350,225,0 +170758501398,223,0 +170758501448,223,0 +170758501496,224,0 +170758501544,223,0 +170758501592,216,0 +170758501641,214,0 +170758501689,216,0 +170758501737,216,0 +170758501785,217,0 +170758501833,218,0 +170758501881,218,0 +170758501930,221,0 +170758501978,220,0 +170758502026,221,0 +170758502074,222,0 +170758502123,222,0 +170758502171,223,0 +170758502219,223,0 +170758502267,223,0 +170758502315,222,0 +170758502362,222,0 +170758502410,224,0 +170758502460,222,0 +170758502509,215,0 +170758502557,214,0 +170758502605,215,0 +170758502653,215,0 +170758502701,216,0 +170758502750,217,0 +170758502798,217,0 +170758502847,218,0 +170758502897,219,0 +170758502945,220,0 +170758502993,221,0 +170758503040,221,0 +170758503088,222,0 +170758503136,222,0 +170758503184,222,0 +170758503232,223,0 +170758503279,222,0 +170758503327,223,0 +170758503375,221,0 +170758503423,215,0 +170758503471,215,0 +170758503519,216,0 +170758503568,216,0 +170758503616,217,0 +170758503664,218,0 +170758503712,220,0 +170758503761,219,0 +170758503811,219,0 +170758503858,221,0 +170758503906,221,0 +170758503954,223,0 +170758504002,223,0 +170758504050,223,0 +170758504098,223,0 +170758504146,223,0 +170758504193,223,0 +170758504241,223,0 +170758504289,219,0 +170758504337,215,0 +170758504387,215,0 +170758504434,215,0 +170758504482,216,0 +170758504530,217,0 +170758504578,217,0 +170758504627,218,0 +170758504677,218,0 +170758504726,219,0 +170758504776,220,0 +170758504823,220,0 +170758504871,221,0 +170758504919,222,0 +170758504967,222,0 +170758505015,223,0 +170758505064,223,0 +170758505112,223,0 +170758505160,223,0 +170758505208,216,0 +170758505256,215,0 +170758505304,215,0 +170758505353,215,0 +170758505401,216,0 +170758505449,217,0 +170758505496,217,0 +170758505544,218,0 +170758505592,218,0 +170758505640,219,0 +170758505688,220,0 +170758505736,220,0 +170758505784,224,0 +170758505831,220,0 +170758505879,221,0 +170758505927,221,0 +170758505975,222,0 +170758506023,222,0 +170758506071,223,0 +170758506119,215,0 +170758506166,215,0 +170758506214,215,0 +170758506262,216,0 +170758506312,217,0 +170758506359,217,0 +170758506407,218,0 +170758506455,218,0 +170758506503,219,0 +170758506551,219,0 +170758506599,219,0 +170758506648,221,0 +170758506696,221,0 +170758506744,221,0 +170758506792,222,0 +170758506840,222,0 +170758506888,222,0 +170758506935,223,0 +170758506983,223,0 +170758507031,215,0 +170758507079,215,0 +170758507127,215,0 +170758507176,216,0 +170758507224,217,0 +170758507272,217,0 +170758507320,217,0 +170758507368,219,0 +170758507416,219,0 +170758507465,219,0 +170758507513,221,0 +170758507561,221,0 +170758507609,223,0 +170758507657,222,0 +170758507704,223,0 +170758507752,223,0 +170758507800,223,0 +170758507848,223,0 +170758507897,219,0 +170758507947,215,0 +170758507995,215,0 +170758508043,216,0 +170758508090,218,0 +170758508140,218,0 +170758508188,219,0 +170758508235,220,0 +170758508283,220,0 +170758508333,223,0 +170758508381,222,0 +170758508429,222,0 +170758508477,222,0 +170758508524,222,0 +170758508572,224,0 +170758508620,223,0 +170758508668,222,0 +170758508716,223,0 +170758508765,223,0 +170758508813,216,0 +170758508861,215,0 +170758508909,215,0 +170758508957,216,0 +170758509005,217,0 +170758509053,218,0 +170758509101,219,0 +170758509149,219,0 +170758509198,220,0 +170758509247,221,0 +170758509295,221,0 +170758509345,222,0 +170758509393,221,0 +170758509441,223,0 +170758509489,222,0 +170758509538,222,0 +170758509586,222,0 +170758509634,223,0 +170758509682,222,0 +170758509730,215,0 +170758509779,215,0 +170758509827,216,0 +170758509875,217,0 +170758509923,218,0 +170758509971,218,0 +170758510019,219,0 +170758510069,219,0 +170758510116,221,0 +170758510164,221,0 +170758510212,221,0 +170758510260,221,0 +170758510308,221,0 +170758510356,222,0 +170758510404,221,0 +170758510451,222,0 +170758510499,222,0 +170758510547,223,0 +170758510595,223,0 +170758510643,215,0 +170758510691,215,0 +170758510738,215,0 +170758510786,216,0 +170758510834,217,0 +170758510882,217,0 +170758510930,218,0 +170758510978,219,0 +170758511025,219,0 +170758511073,220,0 +170758511121,220,0 +170758511169,220,0 +170758511217,216,0 +170758511265,221,0 +170758511313,222,0 +170758511360,222,0 +170758511410,223,0 +170758511458,224,0 +170758511507,223,0 +170758511557,224,0 +170758511605,225,0 +170758511654,225,0 +170758511702,224,0 +170758511750,223,0 +170758511798,224,0 +170758511845,223,0 +170758511893,223,0 +170758511943,222,0 +170758511991,215,0 +170758512040,215,0 +170758512090,216,0 +170758512138,217,0 +170758512186,218,0 +170758512233,218,0 +170758512281,218,0 +170758512329,219,0 +170758512377,220,0 +170758512425,220,0 +170758512473,222,0 +170758512521,221,0 +170758512569,222,0 +170758512616,223,0 +170758512664,223,0 +170758512712,223,0 +170758512760,225,0 +170758512808,224,0 +170758512855,222,0 +170758512903,216,0 +170758512951,216,0 +170758512999,216,0 +170758513047,218,0 +170758513095,218,0 +170758513143,218,0 +170758513192,219,0 +170758513240,219,0 +170758513288,219,0 +170758513336,219,0 +170758513383,220,0 +170758513431,223,0 +170758513479,222,0 +170758513527,221,0 +170758513575,222,0 +170758513623,224,0 +170758513672,223,0 +170758513722,222,0 +170758513771,222,0 +170758513821,216,0 +170758513869,216,0 +170758513917,217,0 +170758513965,218,0 +170758514013,217,0 +170758514061,217,0 +170758514108,219,0 +170758514156,218,0 +170758514204,219,0 +170758514254,218,0 +170758514302,221,0 +170758514350,221,0 +170758514398,223,0 +170758514446,223,0 +170758514493,222,0 +170758514541,223,0 +170758514589,223,0 +170758514639,222,0 +170758514686,217,0 +170758514734,216,0 +170758514782,217,0 +170758514830,218,0 +170758514880,218,0 +170758514927,219,0 +170758514977,220,0 +170758515025,222,0 +170758515073,221,0 +170758515122,221,0 +170758515170,222,0 +170758515218,221,0 +170758515266,225,0 +170758515314,223,0 +170758515362,223,0 +170758515411,223,0 +170758515459,223,0 +170758515509,223,0 +170758515557,222,0 +170758515604,216,0 +170758515652,216,0 +170758515700,218,0 +170758515748,217,0 +170758515796,219,0 +170758515844,219,0 +170758515891,220,0 +170758515939,220,0 +170758515987,221,0 +170758516035,223,0 +170758516083,222,0 +170758516131,223,0 +170758516178,223,0 +170758516226,225,0 +170758516274,225,0 +170758516323,223,0 +170758516371,224,0 +170758516421,223,0 +170758516469,222,0 +170758516516,215,0 +170758516564,215,0 +170758516612,215,0 +170758516660,216,0 +170758516708,217,0 +170758516756,218,0 +170758516804,219,0 +170758516851,219,0 +170758516899,220,0 +170758516947,221,0 +170758516995,222,0 +170758517042,222,0 +170758517090,223,0 +170758517140,223,0 +170758517188,223,0 +170758517235,223,0 +170758517283,222,0 +170758517331,223,0 +170758517379,222,0 +170758517427,215,0 +170758517474,216,0 +170758517522,217,0 +170758517570,218,0 +170758517618,219,0 +170758517666,219,0 +170758517714,220,0 +170758517763,221,0 +170758517811,221,0 +170758517859,222,0 +170758517907,224,0 +170758517955,223,0 +170758518002,223,0 +170758518050,223,0 +170758518098,223,0 +170758518146,223,0 +170758518194,222,0 +170758518241,223,0 +170758518289,216,0 +170758518337,216,0 +170758518385,216,0 +170758518433,218,0 +170758518482,217,0 +170758518530,218,0 +170758518578,219,0 +170758518626,220,0 +170758518674,220,0 +170758518722,220,0 +170758518770,221,0 +170758518817,222,0 +170758518865,223,0 +170758518913,223,0 +170758518961,223,0 +170758519009,223,0 +170758519057,224,0 +170758519104,223,0 +170758519152,223,0 +170758519200,216,0 +170758519248,215,0 +170758519296,216,0 +170758519344,217,0 +170758519392,217,0 +170758519439,218,0 +170758519487,218,0 +170758519535,219,0 +170758519583,219,0 +170758519632,220,0 +170758519680,221,0 +170758519728,222,0 +170758519777,222,0 +170758519825,222,0 +170758519873,224,0 +170758519921,223,0 +170758519969,226,0 +170758520018,223,0 +170758520066,222,0 +170758520114,216,0 +170758520161,215,0 +170758520209,216,0 +170758520257,217,0 +170758520305,217,0 +170758520353,218,0 +170758520400,218,0 +170758520448,218,0 +170758520496,220,0 +170758520546,220,0 +170758520593,219,0 +170758520641,220,0 +170758520689,221,0 +170758520739,221,0 +170758520789,220,0 +170758520836,223,0 +170758520884,223,0 +170758520932,223,0 +170758520980,223,0 +170758521028,216,0 +170758521076,216,0 +170758521124,216,0 +170758521172,217,0 +170758521221,217,0 +170758521271,218,0 +170758521319,218,0 +170758521367,218,0 +170758521416,219,0 +170758521464,220,0 +170758521512,221,0 +170758521560,221,0 +170758521608,222,0 +170758521656,222,0 +170758521704,222,0 +170758521752,223,0 +170758521801,225,0 +170758521851,223,0 +170758521899,223,0 +170758521947,217,0 +170758521995,218,0 +170758522042,219,0 +170758522090,219,0 +170758522140,220,0 +170758522188,220,0 +170758522236,221,0 +170758522284,221,0 +170758522332,222,0 +170758522381,221,0 +170758522429,223,0 +170758522477,224,0 +170758522525,223,0 +170758522573,223,0 +170758522621,223,0 +170758522669,223,0 +170758522718,224,0 +170758522766,223,0 +170758522816,217,0 +170758522863,217,0 +170758522911,217,0 +170758522961,218,0 +170758523010,219,0 +170758523058,219,0 +170758523108,220,0 +170758523157,220,0 +170758523207,220,0 +170758523255,221,0 +170758523302,222,0 +170758523352,224,0 +170758523400,223,0 +170758523448,223,0 +170758523495,224,0 +170758523543,223,0 +170758523591,223,0 +170758523639,223,0 +170758523687,223,0 +170758523736,218,0 +170758523784,216,0 +170758523834,217,0 +170758523882,219,0 +170758523930,219,0 +170758523977,219,0 +170758524025,220,0 +170758524073,220,0 +170758524123,221,0 +170758524172,220,0 +170758524222,222,0 +170758524271,222,0 +170758524319,223,0 +170758524367,224,0 +170758524416,221,0 +170758524464,224,0 +170758524512,223,0 +170758524560,223,0 +170758524609,223,0 +170758524657,215,0 +170758524705,216,0 +170758524753,217,0 +170758524801,218,0 +170758524849,218,0 +170758524897,218,0 +170758524944,220,0 +170758524994,220,0 +170758525042,221,0 +170758525089,222,0 +170758525139,222,0 +170758525187,222,0 +170758525236,222,0 +170758525284,223,0 +170758525332,222,0 +170758525380,222,0 +170758525427,224,0 +170758525477,223,0 +170758525525,216,0 +170758525573,215,0 +170758525621,214,0 +170758525668,215,0 +170758525716,215,0 +170758525764,216,0 +170758525812,216,0 +170758525860,217,0 +170758525910,218,0 +170758525957,218,0 +170758526005,219,0 +170758526055,220,0 +170758526104,221,0 +170758526154,221,0 +170758526202,221,0 +170758526251,222,0 +170758526299,222,0 +170758526347,222,0 +170758526395,223,0 +170758526443,216,0 +170758526491,215,0 +170758526540,215,0 +170758526588,215,0 +170758526636,215,0 +170758526684,215,0 +170758526734,215,0 +170758526783,216,0 +170758526831,216,0 +170758526879,217,0 +170758526927,217,0 +170758526977,218,0 +170758527026,220,0 +170758527074,222,0 +170758527124,220,0 +170758527173,220,0 +170758527221,220,0 +170758527269,223,0 +170758527318,223,0 +170758527368,215,0 +170758527416,215,0 +170758527464,215,0 +170758527512,216,0 +170758527560,217,0 +170758527609,217,0 +170758527657,218,0 +170758527707,218,0 +170758527756,220,0 +170758527804,220,0 +170758527854,221,0 +170758527902,221,0 +170758527951,221,0 +170758528001,223,0 +170758528050,223,0 +170758528099,221,0 +170758528147,222,0 +170758528195,223,0 +170758528245,216,0 +170758528293,215,0 +170758528342,215,0 +170758528392,215,0 +170758528440,216,0 +170758528488,217,0 +170758528537,217,0 +170758528587,218,0 +170758528636,219,0 +170758528684,220,0 +170758528732,220,0 +170758528780,221,0 +170758528828,221,0 +170758528876,221,0 +170758528925,222,0 +170758528975,223,0 +170758529024,224,0 +170758529072,225,0 +170758529120,225,0 +170758529170,215,0 +170758529217,214,0 +170758529265,215,0 +170758529313,216,0 +170758529363,216,0 +170758529411,217,0 +170758529459,217,0 +170758529508,217,0 +170758529556,218,0 +170758529604,219,0 +170758529654,219,0 +170758529703,220,0 +170758529751,221,0 +170758529799,222,0 +170758529848,222,0 +170758529898,224,0 +170758529945,222,0 +170758529995,223,0 +170758530044,219,0 +170758530092,215,0 +170758530140,215,0 +170758530188,215,0 +170758530236,215,0 +170758530284,216,0 +170758530333,217,0 +170758530381,217,0 +170758530429,218,0 +170758530479,219,0 +170758530527,219,0 +170758530574,220,0 +170758530622,220,0 +170758530670,220,0 +170758530720,222,0 +170758530767,222,0 +170758530815,223,0 +170758530863,223,0 +170758530911,223,0 +170758530959,216,0 +170758531007,215,0 +170758531057,215,0 +170758531106,215,0 +170758531155,215,0 +170758531203,216,0 +170758531253,216,0 +170758531301,216,0 +170758531348,218,0 +170758531398,219,0 +170758531446,219,0 +170758531494,220,0 +170758531543,221,0 +170758531591,219,0 +170758531639,220,0 +170758531687,223,0 +170758531736,221,0 +170758531784,223,0 +170758531832,222,0 +170758531882,215,0 +170758531930,215,0 +170758531978,215,0 +170758532027,216,0 +170758532076,216,0 +170758532126,218,0 +170758532175,217,0 +170758532223,217,0 +170758532273,218,0 +170758532322,219,0 +170758532370,219,0 +170758532418,220,0 +170758532468,221,0 +170758532515,221,0 +170758532563,222,0 +170758532611,222,0 +170758532659,223,0 +170758532709,224,0 +170758532757,219,0 +170758532805,215,0 +170758532852,216,0 +170758532902,216,0 +170758532950,218,0 +170758532998,218,0 +170758533046,220,0 +170758533094,219,0 +170758533142,220,0 +170758533191,220,0 +170758533239,221,0 +170758533287,220,0 +170758533335,223,0 +170758533383,222,0 +170758533432,223,0 +170758533480,223,0 +170758533530,223,0 +170758533578,223,0 +170758533627,223,0 +170758533675,218,0 +170758533723,217,0 +170758533771,218,0 +170758533819,219,0 +170758533867,219,0 +170758533915,220,0 +170758533964,221,0 +170758534012,221,0 +170758534060,222,0 +170758534108,223,0 +170758534157,223,0 +170758534207,223,0 +170758534255,223,0 +170758534303,223,0 +170758534352,227,0 +170758534402,223,0 +170758534450,223,0 +170758534497,223,0 +170758534545,222,0 +170758534595,220,0 +170758534643,219,0 +170758534691,219,0 +170758534739,220,0 +170758534788,222,0 +170758534836,222,0 +170758534886,221,0 +170758534935,222,0 +170758534985,222,0 +170758535033,223,0 +170758535082,223,0 +170758535130,223,0 +170758535178,223,0 +170758535227,223,0 +170758535275,223,0 +170758535323,223,0 +170758535371,224,0 +170758535419,223,0 +170758535467,219,0 +170758535516,217,0 +170758535564,218,0 +170758535614,220,0 +170758535663,219,0 +170758535711,221,0 +170758535759,220,0 +170758535807,224,0 +170758535856,222,0 +170758535906,221,0 +170758535953,222,0 +170758536001,223,0 +170758536049,222,0 +170758536097,224,0 +170758536145,223,0 +170758536193,223,0 +170758536242,223,0 +170758536290,223,0 +170758536338,223,0 +170758536388,219,0 +170758536436,218,0 +170758536483,219,0 +170758536531,220,0 +170758536581,220,0 +170758536629,221,0 +170758536677,221,0 +170758536725,223,0 +170758536773,223,0 +170758536820,223,0 +170758536868,224,0 +170758536916,223,0 +170758536964,224,0 +170758537012,223,0 +170758537060,223,0 +170758537109,223,0 +170758537159,223,0 +170758537207,224,0 +170758537255,223,0 +170758537303,218,0 +170758537351,218,0 +170758537399,219,0 +170758537447,219,0 +170758537495,220,0 +170758537543,220,0 +170758537592,222,0 +170758537640,226,0 +170758537688,222,0 +170758537736,223,0 +170758537783,223,0 +170758537833,223,0 +170758537881,223,0 +170758537930,223,0 +170758537978,225,0 +170758538026,223,0 +170758538074,223,0 +170758538123,223,0 +170758538173,223,0 +170758538221,215,0 +170758538268,215,0 +170758538316,217,0 +170758538366,217,0 +170758538414,219,0 +170758538462,219,0 +170758538510,220,0 +170758538559,221,0 +170758538607,219,0 +170758538655,222,0 +170758538703,223,0 +170758538751,223,0 +170758538799,223,0 +170758538848,223,0 +170758538896,223,0 +170758538944,223,0 +170758538994,223,0 +170758539041,222,0 +170758539089,216,0 +170758539137,215,0 +170758539187,215,0 +170758539235,216,0 +170758539283,217,0 +170758539330,217,0 +170758539380,218,0 +170758539429,219,0 +170758539477,219,0 +170758539525,219,0 +170758539573,220,0 +170758539621,220,0 +170758539669,222,0 +170758539718,222,0 +170758539766,222,0 +170758539814,222,0 +170758539862,221,0 +170758539910,221,0 +170758539959,223,0 +170758540007,216,0 +170758540055,215,0 +170758540103,215,0 +170758540152,215,0 +170758540200,215,0 +170758540248,216,0 +170758540296,217,0 +170758540344,218,0 +170758540392,217,0 +170758540440,218,0 +170758540488,219,0 +170758540536,219,0 +170758540585,221,0 +170758540635,221,0 +170758540684,221,0 +170758540732,221,0 +170758540782,221,0 +170758540830,222,0 +170758540878,224,0 +170758540926,215,0 +170758540974,215,0 +170758541022,215,0 +170758541070,216,0 +170758541118,216,0 +170758541165,217,0 +170758541215,218,0 +170758541263,219,0 +170758541311,219,0 +170758541360,220,0 +170758541410,220,0 +170758541458,222,0 +170758541507,224,0 +170758541555,223,0 +170758541603,222,0 +170758541651,224,0 +170758541699,221,0 +170758541747,223,0 +170758541796,220,0 +170758541844,215,0 +170758541894,215,0 +170758541942,217,0 +170758541991,217,0 +170758542041,217,0 +170758542089,219,0 +170758542138,219,0 +170758542188,219,0 +170758542236,219,0 +170758542283,220,0 +170758542331,221,0 +170758542379,221,0 +170758542427,223,0 +170758542475,223,0 +170758542523,223,0 +170758542571,223,0 +170758542619,224,0 +170758542666,223,0 +170758542714,216,0 +170758542762,215,0 +170758542810,215,0 +170758542858,216,0 +170758542906,217,0 +170758542953,217,0 +170758543001,218,0 +170758543049,218,0 +170758543097,219,0 +170758543145,219,0 +170758543193,220,0 +170758543241,220,0 +170758543289,220,0 +170758543337,221,0 +170758543386,222,0 +170758543436,221,0 +170758543484,222,0 +170758543532,222,0 +170758543579,223,0 +170758543627,216,0 +170758543677,214,0 +170758543725,214,0 +170758543773,215,0 +170758543821,214,0 +170758543870,216,0 +170758543918,217,0 +170758543966,217,0 +170758544014,218,0 +170758544063,218,0 +170758544111,218,0 +170758544161,220,0 +170758544209,221,0 +170758544257,220,0 +170758544304,222,0 +170758544354,222,0 +170758544402,221,0 +170758544450,222,0 +170758544499,222,0 +170758544549,215,0 +170758544597,215,0 +170758544645,215,0 +170758544694,216,0 +170758544742,217,0 +170758544790,217,0 +170758544840,219,0 +170758544887,219,0 +170758544935,220,0 +170758544983,220,0 +170758545031,221,0 +170758545079,222,0 +170758545127,222,0 +170758545175,222,0 +170758545224,223,0 +170758545272,224,0 +170758545320,223,0 +170758545369,223,0 +170758545417,216,0 +170758545467,215,0 +170758545515,215,0 +170758545563,215,0 +170758545611,216,0 +170758545659,216,0 +170758545707,217,0 +170758545754,217,0 +170758545802,218,0 +170758545850,220,0 +170758545898,220,0 +170758545946,220,0 +170758545994,221,0 +170758546042,221,0 +170758546089,222,0 +170758546137,221,0 +170758546185,222,0 +170758546233,224,0 +170758546283,223,0 +170758546331,216,0 +170758546378,215,0 +170758546426,215,0 +170758546474,215,0 +170758546522,215,0 +170758546570,215,0 +170758546617,216,0 +170758546665,217,0 +170758546713,217,0 +170758546761,218,0 +170758546811,219,0 +170758546860,219,0 +170758546910,220,0 +170758546959,220,0 +170758547009,222,0 +170758547056,222,0 +170758547104,221,0 +170758547154,223,0 +170758547202,224,0 +170758547251,215,0 +170758547299,215,0 +170758547347,215,0 +170758547395,215,0 +170758547443,216,0 +170758547491,217,0 +170758547539,217,0 +170758547587,217,0 +170758547635,218,0 +170758547683,220,0 +170758547731,220,0 +170758547779,220,0 +170758547828,221,0 +170758547876,221,0 +170758547924,223,0 +170758547972,222,0 +170758548020,222,0 +170758548069,224,0 +170758548117,222,0 +170758548165,214,0 +170758548215,215,0 +170758548263,215,0 +170758548311,216,0 +170758548358,216,0 +170758548408,216,0 +170758548457,218,0 +170758548507,218,0 +170758548555,218,0 +170758548604,218,0 +170758548652,219,0 +170758548700,220,0 +170758548748,220,0 +170758548798,221,0 +170758548846,223,0 +170758548895,221,0 +170758548945,220,0 +170758548993,223,0 +170758549042,216,0 +170758549092,215,0 +170758549140,215,0 +170758549188,216,0 +170758549235,216,0 +170758549285,216,0 +170758549333,217,0 +170758549382,217,0 +170758549430,217,0 +170758549480,219,0 +170758549528,219,0 +170758549577,220,0 +170758549625,220,0 +170758549673,222,0 +170758549721,221,0 +170758549769,221,0 +170758549817,224,0 +170758549866,223,0 +170758549914,223,0 +170758549962,216,0 +170758550010,216,0 +170758550058,217,0 +170758550106,217,0 +170758550154,218,0 +170758550202,219,0 +170758550250,219,0 +170758550298,220,0 +170758550346,220,0 +170758550394,221,0 +170758550442,222,0 +170758550490,222,0 +170758550537,222,0 +170758550587,222,0 +170758550635,222,0 +170758550683,223,0 +170758550731,223,0 +170758550779,223,0 +170758550827,223,0 +170758550875,218,0 +170758550924,218,0 +170758550972,218,0 +170758551022,219,0 +170758551070,220,0 +170758551119,220,0 +170758551167,220,0 +170758551215,221,0 +170758551263,222,0 +170758551312,222,0 +170758551360,223,0 +170758551408,223,0 +170758551456,223,0 +170758551504,223,0 +170758551553,223,0 +170758551601,223,0 +170758551649,223,0 +170758551697,223,0 +170758551746,217,0 +170758551796,218,0 +170758551844,218,0 +170758551892,219,0 +170758551940,220,0 +170758551989,221,0 +170758552038,221,0 +170758552086,221,0 +170758552134,222,0 +170758552183,222,0 +170758552231,223,0 +170758552279,224,0 +170758552327,223,0 +170758552377,223,0 +170758552426,223,0 +170758552476,224,0 +170758552525,223,0 +170758552574,223,0 +170758552622,222,0 +170758552670,217,0 +170758552718,217,0 +170758552766,217,0 +170758552814,218,0 +170758552862,220,0 +170758552909,220,0 +170758552957,220,0 +170758553005,221,0 +170758553055,221,0 +170758553102,222,0 +170758553150,222,0 +170758553198,221,0 +170758553246,224,0 +170758553294,223,0 +170758553342,224,0 +170758553390,223,0 +170758553438,224,0 +170758553486,224,0 +170758553533,223,0 +170758553583,216,0 +170758553632,216,0 +170758553680,216,0 +170758553728,217,0 +170758553778,218,0 +170758553827,219,0 +170758553877,219,0 +170758553925,220,0 +170758553973,220,0 +170758554021,221,0 +170758554070,222,0 +170758554118,222,0 +170758554166,222,0 +170758554216,223,0 +170758554264,223,0 +170758554312,223,0 +170758554359,223,0 +170758554407,222,0 +170758554455,221,0 +170758554503,215,0 +170758554551,215,0 +170758554599,216,0 +170758554648,217,0 +170758554696,217,0 +170758554744,217,0 +170758554792,218,0 +170758554840,218,0 +170758554889,220,0 +170758554939,220,0 +170758554988,221,0 +170758555036,222,0 +170758555086,222,0 +170758555134,223,0 +170758555183,222,0 +170758555233,223,0 +170758555281,223,0 +170758555329,223,0 +170758555378,216,0 +170758555426,215,0 +170758555474,215,0 +170758555522,216,0 +170758555570,217,0 +170758555618,218,0 +170758555665,218,0 +170758555715,219,0 +170758555763,219,0 +170758555811,220,0 +170758555860,221,0 +170758555908,221,0 +170758555958,225,0 +170758556006,222,0 +170758556054,222,0 +170758556101,223,0 +170758556149,222,0 +170758556199,222,0 +170758556247,223,0 +170758556295,216,0 +170758556342,215,0 +170758556390,216,0 +170758556440,218,0 +170758556488,218,0 +170758556537,218,0 +170758556587,219,0 +170758556635,219,0 +170758556684,220,0 +170758556732,221,0 +170758556780,221,0 +170758556828,222,0 +170758556876,222,0 +170758556924,223,0 +170758556973,224,0 +170758557023,224,0 +170758557070,224,0 +170758557120,224,0 +170758557168,222,0 +170758557216,216,0 +170758557263,216,0 +170758557311,217,0 +170758557359,218,0 +170758557409,218,0 +170758557457,219,0 +170758557504,221,0 +170758557552,222,0 +170758557600,222,0 +170758557648,223,0 +170758557696,223,0 +170758557744,223,0 +170758557792,224,0 +170758557840,224,0 +170758557888,224,0 +170758557937,223,0 +170758557985,223,0 +170758558033,223,0 +170758558081,216,0 +170758558129,216,0 +170758558178,216,0 +170758558226,217,0 +170758558275,219,0 +170758558325,219,0 +170758558373,219,0 +170758558421,220,0 +170758558470,221,0 +170758558520,222,0 +170758558568,221,0 +170758558617,223,0 +170758558667,223,0 +170758558714,223,0 +170758558762,224,0 +170758558810,224,0 +170758558858,224,0 +170758558908,224,0 +170758558956,223,0 +170758559004,216,0 +170758559053,216,0 +170758559101,217,0 +170758559149,217,0 +170758559197,218,0 +170758559245,218,0 +170758559293,219,0 +170758559342,219,0 +170758559391,219,0 +170758559439,220,0 +170758559487,221,0 +170758559537,222,0 +170758559585,223,0 +170758559634,222,0 +170758559683,223,0 +170758559733,223,0 +170758559781,223,0 +170758559829,223,0 +170758559877,223,0 +170758559924,215,0 +170758559972,215,0 +170758560020,216,0 +170758560068,216,0 +170758560116,218,0 +170758560165,218,0 +170758560213,219,0 +170758560261,219,0 +170758560309,219,0 +170758560357,220,0 +170758560405,222,0 +170758560453,222,0 +170758560503,223,0 +170758560550,222,0 +170758560600,225,0 +170758560648,223,0 +170758560696,225,0 +170758560744,223,0 +170758560793,216,0 +170758560841,215,0 +170758560889,214,0 +170758560937,215,0 +170758560987,216,0 +170758561034,217,0 +170758561084,217,0 +170758561133,218,0 +170758561181,218,0 +170758561229,219,0 +170758561277,221,0 +170758561325,222,0 +170758561373,221,0 +170758561421,222,0 +170758561469,222,0 +170758561516,223,0 +170758561566,223,0 +170758561614,223,0 +170758561661,223,0 +170758561709,216,0 +170758561757,215,0 +170758561805,216,0 +170758561853,217,0 +170758561901,218,0 +170758561951,218,0 +170758562000,218,0 +170758562048,219,0 +170758562096,221,0 +170758562144,221,0 +170758562193,221,0 +170758562242,221,0 +170758562290,222,0 +170758562338,223,0 +170758562386,222,0 +170758562436,222,0 +170758562483,223,0 +170758562533,222,0 +170758562581,222,0 +170758562629,215,0 +170758562677,215,0 +170758562726,215,0 +170758562776,216,0 +170758562824,217,0 +170758562871,217,0 +170758562919,218,0 +170758562967,219,0 +170758563017,219,0 +170758563065,220,0 +170758563112,220,0 +170758563160,221,0 +170758563210,221,0 +170758563258,223,0 +170758563306,224,0 +170758563354,222,0 +170758563402,221,0 +170758563450,224,0 +170758563497,222,0 +170758563547,215,0 +170758563596,215,0 +170758563646,215,0 +170758563694,216,0 +170758563741,217,0 +170758563789,218,0 +170758563837,218,0 +170758563887,219,0 +170758563936,220,0 +170758563984,220,0 +170758564034,221,0 +170758564083,222,0 +170758564131,222,0 +170758564181,223,0 +170758564230,223,0 +170758564278,223,0 +170758564326,223,0 +170758564374,223,0 +170758564421,216,0 +170758564469,215,0 +170758564517,216,0 +170758564565,216,0 +170758564613,217,0 +170758564661,218,0 +170758564708,218,0 +170758564756,218,0 +170758564805,219,0 +170758564853,220,0 +170758564903,219,0 +170758564950,220,0 +170758564998,222,0 +170758565046,223,0 +170758565095,224,0 +170758565143,221,0 +170758565191,222,0 +170758565239,222,0 +170758565289,223,0 +170758565338,216,0 +170758565386,215,0 +170758565435,216,0 +170758565483,216,0 +170758565531,217,0 +170758565579,218,0 +170758565627,218,0 +170758565675,218,0 +170758565724,219,0 +170758565772,221,0 +170758565822,220,0 +170758565869,223,0 +170758565917,222,0 +170758565965,222,0 +170758566013,222,0 +170758566061,223,0 +170758566108,223,0 +170758566156,223,0 +170758566204,222,0 +170758566253,215,0 +170758566301,215,0 +170758566349,215,0 +170758566397,216,0 +170758566445,217,0 +170758566493,218,0 +170758566541,218,0 +170758566588,219,0 +170758566636,219,0 +170758566684,221,0 +170758566733,222,0 +170758566781,221,0 +170758566829,224,0 +170758566877,222,0 +170758566925,223,0 +170758566974,223,0 +170758567022,223,0 +170758567070,222,0 +170758567118,220,0 +170758567166,218,0 +170758567214,218,0 +170758567262,220,0 +170758567310,221,0 +170758567359,221,0 +170758567409,221,0 +170758567456,222,0 +170758567506,223,0 +170758567555,223,0 +170758567603,223,0 +170758567651,223,0 +170758567699,224,0 +170758567749,223,0 +170758567797,223,0 +170758567845,224,0 +170758567893,223,0 +170758567940,225,0 +170758567988,223,0 +170758568038,218,0 +170758568086,218,0 +170758568134,218,0 +170758568183,219,0 +170758568233,221,0 +170758568281,222,0 +170758568328,222,0 +170758568376,221,0 +170758568426,222,0 +170758568474,223,0 +170758568522,223,0 +170758568569,224,0 +170758568617,225,0 +170758568665,225,0 +170758568713,222,0 +170758568761,223,0 +170758568811,223,0 +170758568859,223,0 +170758568907,222,0 +170758568954,216,0 +170758569002,215,0 +170758569050,216,0 +170758569098,217,0 +170758569148,218,0 +170758569196,218,0 +170758569244,219,0 +170758569292,220,0 +170758569340,221,0 +170758569390,220,0 +170758569438,220,0 +170758569485,221,0 +170758569533,221,0 +170758569583,223,0 +170758569631,223,0 +170758569680,223,0 +170758569728,223,0 +170758569776,223,0 +170758569824,223,0 +170758569872,215,0 +170758569920,215,0 +170758569968,215,0 +170758570017,215,0 +170758570067,216,0 +170758570116,217,0 +170758570164,218,0 +170758570212,218,0 +170758570260,218,0 +170758570308,220,0 +170758570358,221,0 +170758570406,221,0 +170758570453,221,0 +170758570501,221,0 +170758570549,223,0 +170758570597,222,0 +170758570645,223,0 +170758570695,222,0 +170758570743,219,0 +170758570791,215,0 +170758570840,215,0 +170758570888,215,0 +170758570936,216,0 +170758570984,218,0 +170758571032,217,0 +170758571081,219,0 +170758571131,219,0 +170758571179,220,0 +170758571228,221,0 +170758571278,221,0 +170758571326,221,0 +170758571373,222,0 +170758571421,224,0 +170758571469,223,0 +170758571519,223,0 +170758571567,224,0 +170758571616,223,0 +170758571664,215,0 +170758571712,215,0 +170758571760,215,0 +170758571808,215,0 +170758571856,216,0 +170758571904,216,0 +170758571953,217,0 +170758572001,218,0 +170758572050,218,0 +170758572098,219,0 +170758572146,219,0 +170758572194,219,0 +170758572242,222,0 +170758572291,220,0 +170758572339,221,0 +170758572387,221,0 +170758572435,222,0 +170758572483,222,0 +170758572531,223,0 +170758572578,215,0 +170758572628,215,0 +170758572676,215,0 +170758572723,215,0 +170758572771,216,0 +170758572819,217,0 +170758572867,217,0 +170758572914,218,0 +170758572962,218,0 +170758573010,219,0 +170758573058,219,0 +170758573106,220,0 +170758573154,220,0 +170758573203,222,0 +170758573251,222,0 +170758573299,222,0 +170758573347,221,0 +170758573395,222,0 +170758573443,223,0 +170758573491,216,0 +170758573538,216,0 +170758573586,216,0 +170758573634,217,0 +170758573684,218,0 +170758573732,218,0 +170758573781,219,0 +170758573829,220,0 +170758573879,219,0 +170758573927,221,0 +170758573976,221,0 +170758574024,222,0 +170758574072,222,0 +170758574122,223,0 +170758574171,224,0 +170758574219,223,0 +170758574267,223,0 +170758574316,224,0 +170758574364,216,0 +170758574414,215,0 +170758574462,216,0 +170758574510,217,0 +170758574559,218,0 +170758574607,218,0 +170758574655,220,0 +170758574703,220,0 +170758574751,221,0 +170758574798,220,0 +170758574846,221,0 +170758574894,222,0 +170758574944,223,0 +170758574992,222,0 +170758575039,223,0 +170758575087,225,0 +170758575135,223,0 +170758575185,223,0 +170758575233,223,0 +170758575281,216,0 +170758575330,215,0 +170758575380,216,0 +170758575428,217,0 +170758575475,217,0 +170758575523,217,0 +170758575573,218,0 +170758575621,219,0 +170758575669,220,0 +170758575717,220,0 +170758575766,220,0 +170758575814,221,0 +170758575864,221,0 +170758575911,222,0 +170758575961,223,0 +170758576009,221,0 +170758576057,223,0 +170758576105,223,0 +170758576154,222,0 +170758576202,215,0 +170758576250,216,0 +170758576298,216,0 +170758576346,217,0 +170758576395,217,0 +170758576443,218,0 +170758576491,218,0 +170758576539,221,0 +170758576587,220,0 +170758576635,221,0 +170758576683,221,0 +170758576731,221,0 +170758576779,222,0 +170758576826,223,0 +170758576874,222,0 +170758576924,223,0 +170758576972,224,0 +170758577020,222,0 +170758577067,222,0 +170758577115,215,0 +170758577163,216,0 +170758577211,217,0 +170758577259,217,0 +170758577307,218,0 +170758577356,218,0 +170758577406,219,0 +170758577455,220,0 +170758577503,220,0 +170758577551,221,0 +170758577599,222,0 +170758577647,223,0 +170758577694,223,0 +170758577742,223,0 +170758577790,224,0 +170758577838,223,0 +170758577888,224,0 +170758577936,223,0 +170758577985,216,0 +170758578033,216,0 +170758578081,216,0 +170758578130,218,0 +170758578178,218,0 +170758578226,220,0 +170758578274,220,0 +170758578322,220,0 +170758578371,220,0 +170758578419,220,0 +170758578467,222,0 +170758578515,223,0 +170758578563,224,0 +170758578611,224,0 +170758578660,224,0 +170758578708,223,0 +170758578758,224,0 +170758578807,224,0 +170758578855,223,0 +170758578904,217,0 +170758578952,217,0 +170758579000,219,0 +170758579048,218,0 +170758579096,219,0 +170758579144,220,0 +170758579194,221,0 +170758579241,223,0 +170758579289,222,0 +170758579339,223,0 +170758579387,223,0 +170758579437,223,0 +170758579486,224,0 +170758579534,224,0 +170758579582,224,0 +170758579630,224,0 +170758579679,222,0 +170758579727,222,0 +170758579777,222,0 +170758579826,216,0 +170758579874,217,0 +170758579924,218,0 +170758579972,218,0 +170758580020,217,0 +170758580067,218,0 +170758580115,218,0 +170758580163,220,0 +170758580211,221,0 +170758580261,222,0 +170758580309,222,0 +170758580358,223,0 +170758580408,222,0 +170758580456,223,0 +170758580505,225,0 +170758580555,223,0 +170758580604,223,0 +170758580652,223,0 +170758580700,216,0 +170758580748,216,0 +170758580796,216,0 +170758580844,217,0 +170758580892,217,0 +170758580940,217,0 +170758580988,218,0 +170758581035,219,0 +170758581083,219,0 +170758581131,220,0 +170758581179,221,0 +170758581227,223,0 +170758581275,222,0 +170758581323,222,0 +170758581371,223,0 +170758581419,221,0 +170758581468,224,0 +170758581516,224,0 +170758581564,223,0 +170758581612,216,0 +170758581660,215,0 +170758581707,216,0 +170758581755,217,0 +170758581803,217,0 +170758581851,218,0 +170758581899,219,0 +170758581947,219,0 +170758581995,220,0 +170758582044,220,0 +170758582094,221,0 +170758582142,221,0 +170758582190,222,0 +170758582238,222,0 +170758582287,223,0 +170758582335,224,0 +170758582384,223,0 +170758582432,224,0 +170758582482,222,0 +170758582530,216,0 +170758582579,216,0 +170758582627,217,0 +170758582675,217,0 +170758582723,219,0 +170758582771,219,0 +170758582819,219,0 +170758582867,221,0 +170758582915,221,0 +170758582963,221,0 +170758583011,221,0 +170758583059,220,0 +170758583108,223,0 +170758583156,222,0 +170758583206,224,0 +170758583255,223,0 +170758583303,225,0 +170758583351,223,0 +170758583399,222,0 +170758583448,218,0 +170758583496,219,0 +170758583544,219,0 +170758583592,220,0 +170758583640,220,0 +170758583688,221,0 +170758583736,221,0 +170758583784,222,0 +170758583832,222,0 +170758583880,223,0 +170758583928,223,0 +170758583976,222,0 +170758584024,224,0 +170758584072,224,0 +170758584119,229,0 +170758584169,224,0 +170758584217,224,0 +170758584266,222,0 +170758584314,218,0 +170758584364,218,0 +170758584412,219,0 +170758584460,219,0 +170758584509,220,0 +170758584557,221,0 +170758584607,221,0 +170758584654,222,0 +170758584704,222,0 +170758584753,222,0 +170758584803,223,0 +170758584851,224,0 +170758584899,223,0 +170758584948,224,0 +170758584998,223,0 +170758585046,224,0 +170758585095,223,0 +170758585143,223,0 +170758585193,222,0 +170758585242,216,0 +170758585292,215,0 +170758585340,216,0 +170758585388,217,0 +170758585437,218,0 +170758585485,220,0 +170758585533,219,0 +170758585582,220,0 +170758585632,220,0 +170758585680,221,0 +170758585728,221,0 +170758585775,222,0 +170758585823,222,0 +170758585871,222,0 +170758585919,221,0 +170758585967,220,0 +170758586015,221,0 +170758586065,222,0 +170758586114,216,0 +170758586162,215,0 +170758586212,214,0 +170758586260,215,0 +170758586309,215,0 +170758586358,216,0 +170758586406,217,0 +170758586454,217,0 +170758586502,218,0 +170758586552,219,0 +170758586600,218,0 +170758586648,221,0 +170758586696,221,0 +170758586744,222,0 +170758586793,222,0 +170758586843,222,0 +170758586892,222,0 +170758586940,221,0 +170758586989,222,0 +170758587039,216,0 +170758587087,215,0 +170758587135,215,0 +170758587183,216,0 +170758587232,217,0 +170758587280,217,0 +170758587328,218,0 +170758587376,218,0 +170758587424,218,0 +170758587472,219,0 +170758587520,220,0 +170758587568,222,0 +170758587616,221,0 +170758587664,222,0 +170758587713,221,0 +170758587761,222,0 +170758587811,222,0 +170758587859,223,0 +170758587908,221,0 +170758587957,215,0 +170758588007,215,0 +170758588055,215,0 +170758588103,215,0 +170758588151,216,0 +170758588199,218,0 +170758588248,218,0 +170758588298,218,0 +170758588346,218,0 +170758588395,219,0 +170758588443,220,0 +170758588491,220,0 +170758588540,222,0 +170758588590,222,0 +170758588638,223,0 +170758588686,222,0 +170758588734,223,0 +170758588782,222,0 +170758588831,216,0 +170758588879,215,0 +170758588929,215,0 +170758588977,215,0 +170758589024,216,0 +170758589072,216,0 +170758589120,217,0 +170758589168,218,0 +170758589216,218,0 +170758589266,218,0 +170758589315,220,0 +170758589363,220,0 +170758589411,221,0 +170758589461,222,0 +170758589509,222,0 +170758589556,222,0 +170758589604,225,0 +170758589654,222,0 +170758589703,223,0 +170758589751,216,0 +170758589801,215,0 +170758589850,214,0 +170758589900,215,0 +170758589948,215,0 +170758589996,215,0 +170758590045,216,0 +170758590095,217,0 +170758590142,218,0 +170758590190,219,0 +170758590240,219,0 +170758590288,220,0 +170758590337,222,0 +170758590387,222,0 +170758590435,222,0 +170758590483,222,0 +170758590531,222,0 +170758590580,223,0 +170758590630,223,0 +170758590677,214,0 +170758590727,215,0 +170758590775,215,0 +170758590823,215,0 +170758590871,215,0 +170758590919,215,0 +170758590967,216,0 +170758591015,216,0 +170758591064,217,0 +170758591112,218,0 +170758591160,218,0 +170758591209,220,0 +170758591257,220,0 +170758591305,220,0 +170758591353,221,0 +170758591401,220,0 +170758591449,221,0 +170758591499,222,0 +170758591546,216,0 +170758591596,215,0 +170758591645,214,0 +170758591693,215,0 +170758591741,215,0 +170758591789,215,0 +170758591839,216,0 +170758591886,216,0 +170758591934,216,0 +170758591984,218,0 +170758592033,219,0 +170758592081,220,0 +170758592129,220,0 +170758592177,223,0 +170758592225,222,0 +170758592273,222,0 +170758592322,223,0 +170758592370,222,0 +170758592418,222,0 +170758592466,216,0 +170758592514,215,0 +170758592562,216,0 +170758592612,215,0 +170758592660,215,0 +170758592707,216,0 +170758592757,217,0 +170758592805,218,0 +170758592853,219,0 +170758592902,220,0 +170758592950,219,0 +170758592998,220,0 +170758593046,221,0 +170758593093,220,0 +170758593141,221,0 +170758593189,222,0 +170758593238,223,0 +170758593286,223,0 +170758593334,223,0 +170758593382,216,0 +170758593430,216,0 +170758593478,217,0 +170758593527,218,0 +170758593575,219,0 +170758593623,219,0 +170758593671,219,0 +170758593718,219,0 +170758593766,219,0 +170758593816,221,0 +170758593864,220,0 +170758593912,222,0 +170758593959,222,0 +170758594007,223,0 +170758594055,223,0 +170758594103,223,0 +170758594151,223,0 +170758594199,223,0 +170758594246,222,0 +170758594294,215,0 +170758594342,216,0 +170758594390,217,0 +170758594438,218,0 +170758594486,217,0 +170758594534,219,0 +170758594581,219,0 +170758594629,221,0 +170758594677,221,0 +170758594725,222,0 +170758594773,223,0 +170758594821,223,0 +170758594869,222,0 +170758594917,223,0 +170758594967,224,0 +170758595014,223,0 +170758595064,222,0 +170758595112,224,0 +170758595161,216,0 +170758595209,217,0 +170758595259,217,0 +170758595307,218,0 +170758595354,218,0 +170758595402,219,0 +170758595450,220,0 +170758595498,220,0 +170758595546,221,0 +170758595594,220,0 +170758595641,221,0 +170758595689,221,0 +170758595739,222,0 +170758595787,222,0 +170758595835,222,0 +170758595883,224,0 +170758595932,224,0 +170758595982,222,0 +170758596030,223,0 +170758596078,218,0 +170758596125,217,0 +170758596173,218,0 +170758596223,219,0 +170758596271,220,0 +170758596319,220,0 +170758596368,221,0 +170758596416,221,0 +170758596464,219,0 +170758596512,221,0 +170758596560,221,0 +170758596610,222,0 +170758596658,223,0 +170758596705,223,0 +170758596753,224,0 +170758596803,224,0 +170758596851,223,0 +170758596900,225,0 +170758596948,222,0 +170758596996,217,0 +170758597045,217,0 +170758597093,218,0 +170758597141,219,0 +170758597189,219,0 +170758597239,220,0 +170758597288,220,0 +170758597336,221,0 +170758597384,221,0 +170758597434,222,0 +170758597482,223,0 +170758597530,224,0 +170758597577,224,0 +170758597627,223,0 +170758597675,222,0 +170758597723,223,0 +170758597771,223,0 +170758597818,223,0 +170758597866,222,0 +170758597914,218,0 +170758597962,218,0 +170758598010,219,0 +170758598058,219,0 +170758598107,220,0 +170758598155,221,0 +170758598203,221,0 +170758598251,221,0 +170758598299,222,0 +170758598347,219,0 +170758598396,224,0 +170758598444,223,0 +170758598494,223,0 +170758598543,223,0 +170758598591,223,0 +170758598639,224,0 +170758598689,222,0 +170758598736,222,0 +170758598786,219,0 +170758598834,219,0 +170758598882,219,0 +170758598930,220,0 +170758598978,220,0 +170758599025,222,0 +170758599073,221,0 +170758599121,222,0 +170758599171,223,0 +170758599219,223,0 +170758599267,223,0 +170758599316,223,0 +170758599365,225,0 +170758599413,223,0 +170758599461,224,0 +170758599509,224,0 +170758599557,225,0 +170758599607,223,0 +170758599654,222,0 +170758599702,219,0 +170758599750,218,0 +170758599798,219,0 +170758599846,220,0 +170758599896,220,0 +170758599945,220,0 +170758599995,221,0 +170758600044,223,0 +170758600092,222,0 +170758600140,222,0 +170758600188,223,0 +170758600236,224,0 +170758600284,223,0 +170758600333,224,0 +170758600383,224,0 +170758600431,224,0 +170758600479,223,0 +170758600527,223,0 +170758600575,222,0 +170758600623,216,0 +170758600672,217,0 +170758600722,218,0 +170758600770,219,0 +170758600818,220,0 +170758600866,220,0 +170758600914,221,0 +170758600962,221,0 +170758601009,222,0 +170758601057,223,0 +170758601105,223,0 +170758601153,223,0 +170758601203,224,0 +170758601251,224,0 +170758601300,223,0 +170758601350,223,0 +170758601398,223,0 +170758601447,223,0 +170758601495,217,0 +170758601544,215,0 +170758601592,216,0 +170758601642,217,0 +170758601691,217,0 +170758601741,218,0 +170758601789,219,0 +170758601836,220,0 +170758601884,220,0 +170758601932,221,0 +170758601980,222,0 +170758602028,222,0 +170758602078,223,0 +170758602125,223,0 +170758602173,224,0 +170758602223,223,0 +170758602272,222,0 +170758602320,223,0 +170758602368,223,0 +170758602416,216,0 +170758602464,216,0 +170758602512,216,0 +170758602560,217,0 +170758602608,218,0 +170758602656,218,0 +170758602704,219,0 +170758602752,219,0 +170758602799,219,0 +170758602847,220,0 +170758602897,221,0 +170758602946,221,0 +170758602996,222,0 +170758603045,223,0 +170758603095,222,0 +170758603143,223,0 +170758603191,223,0 +170758603239,223,0 +170758603288,223,0 +170758603336,216,0 +170758603386,216,0 +170758603433,216,0 +170758603481,217,0 +170758603529,218,0 +170758603577,219,0 +170758603627,219,0 +170758603675,219,0 +170758603723,220,0 +170758603772,220,0 +170758603822,222,0 +170758603871,221,0 +170758603921,222,0 +170758603969,224,0 +170758604018,223,0 +170758604068,223,0 +170758604115,222,0 +170758604163,222,0 +170758604211,217,0 +170758604259,215,0 +170758604307,216,0 +170758604357,217,0 +170758604406,218,0 +170758604456,218,0 +170758604505,218,0 +170758604553,218,0 +170758604603,219,0 +170758604651,219,0 +170758604698,221,0 +170758604746,221,0 +170758604796,222,0 +170758604844,222,0 +170758604892,225,0 +170758604940,221,0 +170758604989,222,0 +170758605037,222,0 +170758605087,223,0 +170758605134,216,0 +170758605184,215,0 +170758605232,215,0 +170758605280,216,0 +170758605329,217,0 +170758605377,217,0 +170758605425,218,0 +170758605473,218,0 +170758605521,219,0 +170758605569,219,0 +170758605617,220,0 +170758605665,220,0 +170758605712,221,0 +170758605760,222,0 +170758605808,222,0 +170758605856,223,0 +170758605904,224,0 +170758605951,223,0 +170758605999,222,0 +170758606047,215,0 +170758606095,215,0 +170758606143,216,0 +170758606191,217,0 +170758606238,217,0 +170758606288,218,0 +170758606336,219,0 +170758606384,219,0 +170758606431,220,0 +170758606479,221,0 +170758606529,222,0 +170758606576,221,0 +170758606624,222,0 +170758606672,222,0 +170758606720,223,0 +170758606768,222,0 +170758606816,224,0 +170758606864,223,0 +170758606912,222,0 +170758606961,215,0 +170758607009,215,0 +170758607057,216,0 +170758607105,217,0 +170758607153,217,0 +170758607200,217,0 +170758607248,218,0 +170758607298,219,0 +170758607346,219,0 +170758607395,219,0 +170758607443,221,0 +170758607491,221,0 +170758607540,221,0 +170758607588,222,0 +170758607636,221,0 +170758607684,222,0 +170758607732,222,0 +170758607780,222,0 +170758607828,222,0 +170758607877,215,0 +170758607925,216,0 +170758607973,217,0 +170758608021,217,0 +170758608071,218,0 +170758608120,218,0 +170758608170,219,0 +170758608218,220,0 +170758608265,221,0 +170758608313,222,0 +170758608361,222,0 +170758608409,223,0 +170758608457,222,0 +170758608507,223,0 +170758608556,224,0 +170758608604,224,0 +170758608652,224,0 +170758608700,223,0 +170758608748,216,0 +170758608796,215,0 +170758608844,217,0 +170758608893,217,0 +170758608941,217,0 +170758608991,218,0 +170758609039,219,0 +170758609088,220,0 +170758609138,220,0 +170758609186,221,0 +170758609234,222,0 +170758609282,222,0 +170758609331,223,0 +170758609379,222,0 +170758609429,222,0 +170758609477,223,0 +170758609524,223,0 +170758609572,223,0 +170758609620,222,0 +170758609668,216,0 +170758609718,215,0 +170758609766,216,0 +170758609814,218,0 +170758609862,219,0 +170758609910,219,0 +170758609959,219,0 +170758610009,220,0 +170758610058,220,0 +170758610106,220,0 +170758610156,222,0 +170758610205,222,0 +170758610253,223,0 +170758610302,223,0 +170758610350,224,0 +170758610398,223,0 +170758610446,223,0 +170758610496,222,0 +170758610545,222,0 +170758610593,215,0 +170758610641,215,0 +170758610689,217,0 +170758610737,217,0 +170758610785,218,0 +170758610835,218,0 +170758610884,220,0 +170758610932,220,0 +170758610980,220,0 +170758611030,221,0 +170758611078,223,0 +170758611127,222,0 +170758611175,223,0 +170758611223,222,0 +170758611271,223,0 +170758611320,223,0 +170758611368,223,0 +170758611418,223,0 +170758611467,216,0 +170758611515,215,0 +170758611563,217,0 +170758611613,216,0 +170758611661,218,0 +170758611710,218,0 +170758611758,218,0 +170758611806,220,0 +170758611856,219,0 +170758611903,221,0 +170758611951,222,0 +170758611999,222,0 +170758612049,222,0 +170758612098,224,0 +170758612148,225,0 +170758612196,224,0 +170758612244,224,0 +170758612292,223,0 +170758612342,223,0 +170758612389,215,0 +170758612437,215,0 +170758612485,214,0 +170758612533,215,0 +170758612581,216,0 +170758612629,217,0 +170758612678,218,0 +170758612728,218,0 +170758612777,219,0 +170758612825,219,0 +170758612873,221,0 +170758612921,222,0 +170758612971,221,0 +170758613019,222,0 +170758613068,222,0 +170758613118,222,0 +170758613167,223,0 +170758613215,223,0 +170758613263,222,0 +170758613312,214,0 +170758613360,214,0 +170758613408,215,0 +170758613456,215,0 +170758613504,215,0 +170758613552,216,0 +170758613602,216,0 +170758613650,217,0 +170758613699,217,0 +170758613749,218,0 +170758613797,219,0 +170758613844,220,0 +170758613892,221,0 +170758613942,221,0 +170758613990,222,0 +170758614038,222,0 +170758614086,223,0 +170758614133,223,0 +170758614183,216,0 +170758614231,214,0 +170758614280,215,0 +170758614328,215,0 +170758614376,215,0 +170758614424,215,0 +170758614472,215,0 +170758614520,216,0 +170758614568,217,0 +170758614617,217,0 +170758614665,219,0 +170758614715,220,0 +170758614763,221,0 +170758614811,221,0 +170758614860,221,0 +170758614910,222,0 +170758614958,223,0 +170758615006,222,0 +170758615054,224,0 +170758615101,216,0 +170758615151,215,0 +170758615199,215,0 +170758615247,216,0 +170758615295,217,0 +170758615342,217,0 +170758615390,218,0 +170758615438,218,0 +170758615486,218,0 +170758615534,219,0 +170758615581,220,0 +170758615629,221,0 +170758615677,221,0 +170758615725,222,0 +170758615773,222,0 +170758615823,224,0 +170758615870,223,0 +170758615918,223,0 +170758615966,222,0 +170758616014,215,0 +170758616064,215,0 +170758616113,215,0 +170758616163,216,0 +170758616211,217,0 +170758616259,217,0 +170758616308,218,0 +170758616356,218,0 +170758616404,219,0 +170758616452,220,0 +170758616499,220,0 +170758616547,221,0 +170758616595,221,0 +170758616643,220,0 +170758616691,222,0 +170758616739,222,0 +170758616788,222,0 +170758616836,223,0 +170758616884,216,0 +170758616932,216,0 +170758616979,216,0 +170758617027,217,0 +170758617075,218,0 +170758617123,219,0 +170758617171,219,0 +170758617218,220,0 +170758617268,220,0 +170758617316,220,0 +170758617363,221,0 +170758617411,222,0 +170758617461,223,0 +170758617510,223,0 +170758617560,223,0 +170758617608,223,0 +170758617657,224,0 +170758617705,223,0 +170758617753,223,0 +170758617801,218,0 +170758617849,218,0 +170758617897,219,0 +170758617945,219,0 +170758617992,220,0 +170758618040,220,0 +170758618088,220,0 +170758618136,222,0 +170758618185,221,0 +170758618233,222,0 +170758618281,223,0 +170758618329,223,0 +170758618376,223,0 +170758618424,225,0 +170758618472,223,0 +170758618520,224,0 +170758618568,223,0 +170758618616,223,0 +170758618665,223,0 +170758618713,217,0 +170758618761,217,0 +170758618809,217,0 +170758618856,218,0 +170758618904,220,0 +170758618952,220,0 +170758619000,221,0 +170758619048,221,0 +170758619096,220,0 +170758619145,221,0 +170758619193,222,0 +170758619240,222,0 +170758619288,222,0 +170758619336,223,0 +170758619384,224,0 +170758619432,223,0 +170758619481,223,0 +170758619529,220,0 +170758619577,222,0 +170758619625,217,0 +170758619672,216,0 +170758619720,217,0 +170758619768,218,0 +170758619816,219,0 +170758619864,219,0 +170758619913,220,0 +170758619961,220,0 +170758620009,221,0 +170758620057,221,0 +170758620105,221,0 +170758620153,223,0 +170758620202,223,0 +170758620252,225,0 +170758620299,222,0 +170758620349,224,0 +170758620397,223,0 +170758620445,224,0 +170758620493,222,0 +170758620541,217,0 +170758620589,217,0 +170758620638,218,0 +170758620686,220,0 +170758620734,219,0 +170758620781,219,0 +170758620829,221,0 +170758620877,221,0 +170758620925,222,0 +170758620974,223,0 +170758621022,222,0 +170758621070,224,0 +170758621117,223,0 +170758621165,224,0 +170758621213,223,0 +170758621261,223,0 +170758621309,224,0 +170758621358,223,0 +170758621406,217,0 +170758621454,216,0 +170758621503,217,0 +170758621551,218,0 +170758621599,219,0 +170758621647,219,0 +170758621695,220,0 +170758621743,220,0 +170758621791,221,0 +170758621838,221,0 +170758621886,222,0 +170758621934,222,0 +170758621983,222,0 +170758622031,224,0 +170758622079,224,0 +170758622127,223,0 +170758622175,222,0 +170758622223,223,0 +170758622271,222,0 +170758622318,217,0 +170758622366,216,0 +170758622414,216,0 +170758622462,217,0 +170758622510,218,0 +170758622558,219,0 +170758622605,220,0 +170758622653,220,0 +170758622701,221,0 +170758622749,221,0 +170758622797,222,0 +170758622845,223,0 +170758622893,222,0 +170758622940,223,0 +170758622988,224,0 +170758623036,224,0 +170758623084,224,0 +170758623133,223,0 +170758623181,222,0 +170758623229,216,0 +170758623279,215,0 +170758623328,216,0 +170758623376,216,0 +170758623424,217,0 +170758623472,218,0 +170758623520,218,0 +170758623568,218,0 +170758623616,221,0 +170758623665,225,0 +170758623713,220,0 +170758623761,221,0 +170758623810,222,0 +170758623858,222,0 +170758623906,222,0 +170758623954,223,0 +170758624002,222,0 +170758624049,223,0 +170758624097,223,0 +170758624145,216,0 +170758624193,215,0 +170758624241,215,0 +170758624289,217,0 +170758624337,218,0 +170758624386,218,0 +170758624434,219,0 +170758624482,219,0 +170758624532,220,0 +170758624581,221,0 +170758624629,221,0 +170758624677,222,0 +170758624725,222,0 +170758624773,223,0 +170758624821,224,0 +170758624870,223,0 +170758624918,223,0 +170758624968,223,0 +170758625017,220,0 +170758625065,216,0 +170758625115,217,0 +170758625163,219,0 +170758625211,218,0 +170758625258,218,0 +170758625308,220,0 +170758625357,220,0 +170758625405,220,0 +170758625453,221,0 +170758625503,222,0 +170758625550,223,0 +170758625598,222,0 +170758625646,223,0 +170758625694,224,0 +170758625742,223,0 +170758625790,223,0 +170758625838,225,0 +170758625886,223,0 +170758625933,219,0 +170758625983,217,0 +170758626031,219,0 +170758626079,218,0 +170758626128,219,0 +170758626178,220,0 +170758626226,221,0 +170758626273,221,0 +170758626323,221,0 +170758626373,222,0 +170758626421,223,0 +170758626469,222,0 +170758626518,223,0 +170758626566,222,0 +170758626616,222,0 +170758626664,222,0 +170758626711,223,0 +170758626759,223,0 +170758626807,222,0 +170758626855,217,0 +170758626905,217,0 +170758626953,218,0 +170758627001,218,0 +170758627050,219,0 +170758627098,219,0 +170758627148,220,0 +170758627196,220,0 +170758627244,220,0 +170758627293,221,0 +170758627341,222,0 +170758627389,223,0 +170758627438,223,0 +170758627488,224,0 +170758627536,223,0 +170758627585,223,0 +170758627635,223,0 +170758627683,223,0 +170758627732,219,0 +170758627780,215,0 +170758627828,216,0 +170758627876,217,0 +170758627926,217,0 +170758627974,218,0 +170758628021,219,0 +170758628071,219,0 +170758628119,220,0 +170758628167,221,0 +170758628215,221,0 +170758628263,222,0 +170758628311,222,0 +170758628358,223,0 +170758628408,223,0 +170758628456,223,0 +170758628505,223,0 +170758628555,224,0 +170758628603,223,0 +170758628650,216,0 +170758628700,215,0 +170758628749,215,0 +170758628797,215,0 +170758628847,217,0 +170758628895,217,0 +170758628944,218,0 +170758628992,218,0 +170758629040,219,0 +170758629088,219,0 +170758629136,220,0 +170758629184,221,0 +170758629231,221,0 +170758629279,222,0 +170758629327,222,0 +170758629377,223,0 +170758629426,224,0 +170758629474,223,0 +170758629523,223,0 +170758629573,216,0 +170758629621,215,0 +170758629670,216,0 +170758629718,217,0 +170758629766,217,0 +170758629814,219,0 +170758629862,218,0 +170758629911,219,0 +170758629961,219,0 +170758630011,220,0 +170758630058,222,0 +170758630106,222,0 +170758630154,222,0 +170758630204,223,0 +170758630253,223,0 +170758630301,223,0 +170758630351,223,0 +170758630399,224,0 +170758630447,221,0 +170758630494,215,0 +170758630542,215,0 +170758630592,216,0 +170758630640,218,0 +170758630689,217,0 +170758630737,219,0 +170758630785,219,0 +170758630835,220,0 +170758630884,221,0 +170758630934,221,0 +170758630983,221,0 +170758631031,223,0 +170758631081,223,0 +170758631129,223,0 +170758631177,224,0 +170758631226,223,0 +170758631274,223,0 +170758631322,223,0 +170758631370,216,0 +170758631418,216,0 +170758631466,215,0 +170758631514,216,0 +170758631562,217,0 +170758631611,216,0 +170758631659,217,0 +170758631709,218,0 +170758631758,218,0 +170758631808,219,0 +170758631855,220,0 +170758631905,221,0 +170758631954,224,0 +170758632004,222,0 +170758632052,222,0 +170758632100,222,0 +170758632148,223,0 +170758632196,223,0 +170758632244,222,0 +170758632293,216,0 +170758632341,215,0 +170758632390,215,0 +170758632438,215,0 +170758632488,215,0 +170758632537,216,0 +170758632585,216,0 +170758632633,216,0 +170758632683,216,0 +170758632731,216,0 +170758632778,218,0 +170758632826,219,0 +170758632874,220,0 +170758632922,220,0 +170758632972,221,0 +170758633020,221,0 +170758633069,221,0 +170758633117,222,0 +170758633166,222,0 +170758633216,214,0 +170758633264,214,0 +170758633312,214,0 +170758633361,215,0 +170758633411,215,0 +170758633459,215,0 +170758633508,215,0 +170758633558,216,0 +170758633606,216,0 +170758633654,216,0 +170758633703,217,0 +170758633751,218,0 +170758633799,219,0 +170758633847,219,0 +170758633895,220,0 +170758633945,220,0 +170758633993,221,0 +170758634041,223,0 +170758634088,216,0 +170758634138,215,0 +170758634186,215,0 +170758634235,215,0 +170758634283,215,0 +170758634331,215,0 +170758634379,216,0 +170758634427,217,0 +170758634475,217,0 +170758634522,218,0 +170758634570,220,0 +170758634618,221,0 +170758634666,221,0 +170758634715,221,0 +170758634763,222,0 +170758634811,223,0 +170758634859,222,0 +170758634909,223,0 +170758634958,217,0 +170758635006,219,0 +170758635054,219,0 +170758635102,219,0 +170758635150,220,0 +170758635198,221,0 +170758635247,221,0 +170758635297,223,0 +170758635345,222,0 +170758635392,224,0 +170758635440,224,0 +170758635488,224,0 +170758635536,224,0 +170758635584,223,0 +170758635632,224,0 +170758635680,224,0 +170758635728,222,0 +170758635775,223,0 +170758635823,221,0 +170758635871,215,0 +170758635919,215,0 +170758635967,216,0 +170758636015,217,0 +170758636063,217,0 +170758636111,219,0 +170758636158,219,0 +170758636206,219,0 +170758636254,221,0 +170758636302,220,0 +170758636350,220,0 +170758636398,223,0 +170758636446,221,0 +170758636494,223,0 +170758636542,224,0 +170758636590,223,0 +170758636637,222,0 +170758636687,222,0 +170758636735,215,0 +170758636783,215,0 +170758636832,216,0 +170758636880,216,0 +170758636928,218,0 +170758636976,218,0 +170758637025,218,0 +170758637073,219,0 +170758637121,220,0 +170758637171,220,0 +170758637219,222,0 +170758637267,221,0 +170758637316,222,0 +170758637364,222,0 +170758637413,224,0 +170758637463,222,0 +170758637511,223,0 +170758637559,222,0 +170758637608,214,0 +170758637656,214,0 +170758637704,215,0 +170758637753,216,0 +170758637801,217,0 +170758637851,217,0 +170758637898,218,0 +170758637946,218,0 +170758637994,219,0 +170758638044,219,0 +170758638092,220,0 +170758638140,219,0 +170758638187,220,0 +170758638235,221,0 +170758638285,222,0 +170758638332,222,0 +170758638380,223,0 +170758638430,222,0 +170758638478,215,0 +170758638525,215,0 +170758638573,215,0 +170758638621,216,0 +170758638669,216,0 +170758638717,217,0 +170758638765,217,0 +170758638813,218,0 +170758638860,219,0 +170758638908,218,0 +170758638956,220,0 +170758639004,221,0 +170758639052,221,0 +170758639101,222,0 +170758639150,223,0 +170758639198,222,0 +170758639246,223,0 +170758639294,222,0 +170758639343,216,0 +170758639393,215,0 +170758639441,215,0 +170758639490,216,0 +170758639540,216,0 +170758639589,217,0 +170758639637,218,0 +170758639686,218,0 +170758639734,219,0 +170758639784,219,0 +170758639833,219,0 +170758639881,220,0 +170758639931,221,0 +170758639979,222,0 +170758640027,221,0 +170758640076,222,0 +170758640124,223,0 +170758640172,222,0 +170758640220,216,0 +170758640269,216,0 +170758640317,217,0 +170758640365,217,0 +170758640413,218,0 +170758640461,218,0 +170758640509,219,0 +170758640557,220,0 +170758640606,220,0 +170758640656,221,0 +170758640704,221,0 +170758640752,222,0 +170758640801,222,0 +170758640851,224,0 +170758640900,223,0 +170758640950,223,0 +170758640998,223,0 +170758641045,223,0 +170758641093,218,0 +170758641141,217,0 +170758641189,218,0 +170758641237,219,0 +170758641284,220,0 +170758641332,221,0 +170758641382,221,0 +170758641431,222,0 +170758641481,221,0 +170758641530,222,0 +170758641578,223,0 +170758641626,223,0 +170758641676,224,0 +170758641723,223,0 +170758641771,223,0 +170758641819,224,0 +170758641869,224,0 +170758641917,222,0 +170758641965,220,0 +170758642014,219,0 +170758642064,220,0 +170758642112,220,0 +170758642159,221,0 +170758642207,222,0 +170758642255,221,0 +170758642303,221,0 +170758642351,226,0 +170758642401,222,0 +170758642449,223,0 +170758642498,224,0 +170758642546,223,0 +170758642595,224,0 +170758642643,224,0 +170758642691,222,0 +170758642739,223,0 +170758642788,222,0 +170758642836,219,0 +170758642884,219,0 +170758642932,221,0 +170758642980,221,0 +170758643027,221,0 +170758643075,222,0 +170758643125,222,0 +170758643174,222,0 +170758643222,222,0 +170758643270,224,0 +170758643318,223,0 +170758643366,224,0 +170758643415,224,0 +170758643463,220,0 +170758643511,224,0 +170758643561,224,0 +170758643608,223,0 +170758643656,223,0 +170758643706,217,0 +170758643755,217,0 +170758643805,218,0 +170758643853,220,0 +170758643900,219,0 +170758643948,220,0 +170758643996,220,0 +170758644044,221,0 +170758644092,222,0 +170758644142,222,0 +170758644190,222,0 +170758644237,223,0 +170758644287,223,0 +170758644335,223,0 +170758644383,223,0 +170758644431,223,0 +170758644479,223,0 +170758644526,223,0 +170758644576,216,0 +170758644624,214,0 +170758644674,215,0 +170758644723,216,0 +170758644771,217,0 +170758644818,217,0 +170758644866,218,0 +170758644914,219,0 +170758644964,219,0 +170758645012,220,0 +170758645060,221,0 +170758645108,221,0 +170758645155,221,0 +170758645203,222,0 +170758645251,222,0 +170758645299,222,0 +170758645347,224,0 +170758645396,222,0 +170758645444,216,0 +170758645494,214,0 +170758645542,215,0 +170758645590,215,0 +170758645638,215,0 +170758645686,216,0 +170758645733,216,0 +170758645781,217,0 +170758645829,218,0 +170758645877,218,0 +170758645925,219,0 +170758645973,220,0 +170758646021,221,0 +170758646069,221,0 +170758646117,222,0 +170758646166,222,0 +170758646216,220,0 +170758646264,222,0 +170758646313,217,0 +170758646361,214,0 +170758646411,214,0 +170758646459,215,0 +170758646507,215,0 +170758646555,215,0 +170758646603,216,0 +170758646652,217,0 +170758646700,217,0 +170758646748,218,0 +170758646796,219,0 +170758646846,219,0 +170758646895,219,0 +170758646945,220,0 +170758646994,221,0 +170758647044,221,0 +170758647091,222,0 +170758647141,223,0 +170758647189,216,0 +170758647238,215,0 +170758647286,215,0 +170758647334,216,0 +170758647384,216,0 +170758647432,218,0 +170758647480,218,0 +170758647528,218,0 +170758647576,220,0 +170758647623,220,0 +170758647673,221,0 +170758647721,222,0 +170758647769,222,0 +170758647817,223,0 +170758647864,224,0 +170758647912,223,0 +170758647960,224,0 +170758648008,223,0 +170758648056,222,0 +170758648104,215,0 +170758648152,215,0 +170758648200,215,0 +170758648247,216,0 +170758648295,217,0 +170758648343,217,0 +170758648393,218,0 +170758648440,219,0 +170758648488,220,0 +170758648536,219,0 +170758648584,222,0 +170758648632,222,0 +170758648680,222,0 +170758648727,225,0 +170758648777,222,0 +170758648825,222,0 +170758648873,223,0 +170758648922,223,0 +170758648970,215,0 +170758649018,214,0 +170758649066,215,0 +170758649114,216,0 +170758649163,217,0 +170758649211,218,0 +170758649259,218,0 +170758649309,218,0 +170758649356,219,0 +170758649406,220,0 +170758649454,219,0 +170758649502,221,0 +170758649550,221,0 +170758649598,222,0 +170758649646,222,0 +170758649693,222,0 +170758649743,222,0 +170758649791,222,0 +170758649839,216,0 +170758649888,215,0 +170758649936,215,0 +170758649984,215,0 +170758650032,215,0 +170758650081,216,0 +170758650129,216,0 +170758650179,217,0 +170758650228,218,0 +170758650276,219,0 +170758650324,219,0 +170758650372,221,0 +170758650422,221,0 +170758650472,222,0 +170758650520,222,0 +170758650568,224,0 +170758650616,220,0 +170758650664,222,0 +170758650711,216,0 +170758650759,215,0 +170758650807,215,0 +170758650855,216,0 +170758650903,216,0 +170758650951,217,0 +170758651000,217,0 +170758651050,219,0 +170758651099,219,0 +170758651147,220,0 +170758651195,221,0 +170758651243,221,0 +170758651291,222,0 +170758651340,223,0 +170758651388,223,0 +170758651436,223,0 +170758651484,223,0 +170758651533,222,0 +170758651581,217,0 +170758651629,218,0 +170758651677,218,0 +170758651725,219,0 +170758651773,219,0 +170758651822,221,0 +170758651870,221,0 +170758651918,222,0 +170758651966,222,0 +170758652014,222,0 +170758652063,223,0 +170758652113,223,0 +170758652162,223,0 +170758652210,223,0 +170758652260,223,0 +170758652308,223,0 +170758652357,223,0 +170758652405,223,0 +170758652453,221,0 +170758652502,219,0 +170758652552,219,0 +170758652600,220,0 +170758652648,220,0 +170758652696,221,0 +170758652745,221,0 +170758652795,222,0 +170758652844,222,0 +170758652892,222,0 +170758652940,223,0 +170758652989,223,0 +170758653037,224,0 +170758653085,223,0 +170758653133,223,0 +170758653183,223,0 +170758653231,224,0 +170758653279,223,0 +170758653327,222,0 +170758653375,218,0 +170758653423,218,0 +170758653472,218,0 +170758653522,220,0 +170758653570,220,0 +170758653618,220,0 +170758653665,221,0 +170758653715,221,0 +170758653763,221,0 +170758653812,222,0 +170758653860,222,0 +170758653908,223,0 +170758653956,223,0 +170758654006,223,0 +170758654054,223,0 +170758654102,223,0 +170758654149,223,0 +170758654197,222,0 +170758654247,217,0 +170758654295,217,0 +170758654343,218,0 +170758654392,218,0 +170758654440,219,0 +170758654488,219,0 +170758654536,221,0 +170758654584,221,0 +170758654632,220,0 +170758654680,221,0 +170758654728,222,0 +170758654777,224,0 +170758654827,223,0 +170758654875,225,0 +170758654924,223,0 +170758654972,224,0 +170758655020,222,0 +170758655070,223,0 +170758655118,217,0 +170758655166,217,0 +170758655215,217,0 +170758655263,218,0 +170758655311,219,0 +170758655359,219,0 +170758655408,219,0 +170758655458,220,0 +170758655506,220,0 +170758655554,221,0 +170758655603,223,0 +170758655653,223,0 +170758655701,223,0 +170758655749,223,0 +170758655796,222,0 +170758655846,223,0 +170758655894,224,0 +170758655942,223,0 +170758655991,218,0 +170758656041,218,0 +170758656089,219,0 +170758656137,220,0 +170758656184,219,0 +170758656232,221,0 +170758656280,220,0 +170758656330,221,0 +170758656379,221,0 +170758656429,222,0 +170758656478,223,0 +170758656528,224,0 +170758656576,224,0 +170758656624,223,0 +170758656671,224,0 +170758656721,225,0 +170758656769,222,0 +170758656817,222,0 +170758656866,218,0 +170758656914,218,0 +170758656964,219,0 +170758657013,219,0 +170758657061,219,0 +170758657109,220,0 +170758657157,220,0 +170758657206,221,0 +170758657254,222,0 +170758657302,223,0 +170758657352,223,0 +170758657401,223,0 +170758657449,224,0 +170758657498,223,0 +170758657546,223,0 +170758657594,223,0 +170758657642,223,0 +170758657690,224,0 +170758657739,218,0 +170758657787,218,0 +170758657837,218,0 +170758657885,221,0 +170758657933,220,0 +170758657981,220,0 +170758658030,221,0 +170758658080,221,0 +170758658129,222,0 +170758658177,221,0 +170758658227,223,0 +170758658276,223,0 +170758658324,224,0 +170758658372,223,0 +170758658421,223,0 +170758658471,223,0 +170758658519,224,0 +170758658566,223,0 +170758658614,216,0 +170758658662,215,0 +170758658710,216,0 +170758658758,217,0 +170758658806,218,0 +170758658855,218,0 +170758658903,219,0 +170758658951,219,0 +170758658999,220,0 +170758659047,221,0 +170758659095,221,0 +170758659143,222,0 +170758659191,222,0 +170758659239,223,0 +170758659288,223,0 +170758659336,223,0 +170758659386,224,0 +170758659435,223,0 +170758659484,219,0 +170758659534,215,0 +170758659582,214,0 +170758659630,215,0 +170758659678,215,0 +170758659727,216,0 +170758659777,216,0 +170758659825,217,0 +170758659873,218,0 +170758659921,219,0 +170758659968,221,0 +170758660016,221,0 +170758660066,221,0 +170758660114,222,0 +170758660162,224,0 +170758660210,223,0 +170758660258,223,0 +170758660306,223,0 +170758660355,223,0 +170758660403,215,0 +170758660451,214,0 +170758660498,215,0 +170758660546,215,0 +170758660594,215,0 +170758660642,216,0 +170758660690,217,0 +170758660738,218,0 +170758660785,218,0 +170758660833,219,0 +170758660881,219,0 +170758660929,219,0 +170758660977,220,0 +170758661025,220,0 +170758661073,220,0 +170758661121,222,0 +170758661169,222,0 +170758661217,224,0 +170758661266,224,0 +170758661314,223,0 +170758661362,223,0 +170758661410,223,0 +170758661458,224,0 +170758661506,223,0 +170758661554,223,0 +170758661603,223,0 +170758661651,222,0 +170758661699,217,0 +170758661749,216,0 +170758661797,216,0 +170758661845,218,0 +170758661892,217,0 +170758661940,218,0 +170758661988,218,0 +170758662036,219,0 +170758662086,220,0 +170758662135,220,0 +170758662185,221,0 +170758662232,223,0 +170758662280,223,0 +170758662328,223,0 +170758662376,224,0 +170758662424,223,0 +170758662473,224,0 +170758662521,223,0 +170758662569,217,0 +170758662619,217,0 +170758662668,217,0 +170758662718,218,0 +170758662767,219,0 +170758662815,219,0 +170758662864,219,0 +170758662912,220,0 +170758662960,221,0 +170758663008,221,0 +170758663056,223,0 +170758663105,223,0 +170758663153,224,0 +170758663202,224,0 +170758663250,227,0 +170758663298,224,0 +170758663348,223,0 +170758663396,223,0 +170758663444,216,0 +170758663491,217,0 +170758663539,218,0 +170758663587,218,0 +170758663635,219,0 +170758663683,220,0 +170758663731,220,0 +170758663779,221,0 +170758663828,221,0 +170758663876,222,0 +170758663924,222,0 +170758663972,222,0 +170758664020,223,0 +170758664068,223,0 +170758664117,224,0 +170758664165,223,0 +170758664213,224,0 +170758664260,223,0 +170758664308,222,0 +170758664356,217,0 +170758664404,219,0 +170758664453,218,0 +170758664501,219,0 +170758664549,219,0 +170758664597,220,0 +170758664646,220,0 +170758664694,222,0 +170758664742,222,0 +170758664790,223,0 +170758664838,223,0 +170758664886,223,0 +170758664934,224,0 +170758664982,225,0 +170758665030,223,0 +170758665078,223,0 +170758665125,224,0 +170758665173,223,0 +170758665223,217,0 +170758665271,216,0 +170758665319,217,0 +170758665367,218,0 +170758665415,218,0 +170758665463,219,0 +170758665510,220,0 +170758665560,220,0 +170758665608,222,0 +170758665656,222,0 +170758665704,223,0 +170758665752,222,0 +170758665800,222,0 +170758665849,224,0 +170758665897,223,0 +170758665945,222,0 +170758665994,223,0 +170758666042,223,0 +170758666092,216,0 +170758666140,215,0 +170758666188,217,0 +170758666236,217,0 +170758666284,217,0 +170758666333,218,0 +170758666381,219,0 +170758666429,218,0 +170758666477,220,0 +170758666525,221,0 +170758666573,221,0 +170758666622,223,0 +170758666670,223,0 +170758666720,223,0 +170758666768,223,0 +170758666816,225,0 +170758666864,224,0 +170758666913,223,0 +170758666963,217,0 +170758667012,216,0 +170758667062,217,0 +170758667111,218,0 +170758667159,218,0 +170758667209,219,0 +170758667258,219,0 +170758667306,220,0 +170758667354,221,0 +170758667402,224,0 +170758667452,222,0 +170758667500,222,0 +170758667547,222,0 +170758667595,223,0 +170758667645,223,0 +170758667693,223,0 +170758667741,224,0 +170758667788,223,0 +170758667836,218,0 +170758667884,219,0 +170758667932,220,0 +170758667982,220,0 +170758668031,220,0 +170758668081,220,0 +170758668129,222,0 +170758668177,222,0 +170758668226,223,0 +170758668276,223,0 +170758668325,223,0 +170758668373,223,0 +170758668421,223,0 +170758668469,220,0 +170758668517,222,0 +170758668566,223,0 +170758668616,222,0 +170758668665,223,0 +170758668715,219,0 +170758668764,219,0 +170758668812,220,0 +170758668862,219,0 +170758668911,221,0 +170758668959,220,0 +170758669009,222,0 +170758669057,221,0 +170758669105,223,0 +170758669154,223,0 +170758669204,225,0 +170758669252,223,0 +170758669300,223,0 +170758669347,223,0 +170758669395,224,0 +170758669443,222,0 +170758669491,223,0 +170758669541,222,0 +170758669590,217,0 +170758669638,218,0 +170758669686,219,0 +170758669734,220,0 +170758669782,220,0 +170758669832,222,0 +170758669879,222,0 +170758669927,221,0 +170758669977,222,0 +170758670026,222,0 +170758670076,223,0 +170758670124,223,0 +170758670173,223,0 +170758670221,222,0 +170758670269,223,0 +170758670317,223,0 +170758670366,222,0 +170758670414,223,0 +170758670462,222,0 +170758670510,217,0 +170758670558,218,0 +170758670605,219,0 +170758670655,220,0 +170758670704,220,0 +170758670752,221,0 +170758670800,221,0 +170758670849,222,0 +170758670897,222,0 +170758670945,224,0 +170758670993,224,0 +170758671041,223,0 +170758671089,224,0 +170758671136,223,0 +170758671184,223,0 +170758671232,223,0 +170758671280,223,0 +170758671328,222,0 +170758671376,217,0 +170758671424,218,0 +170758671472,218,0 +170758671519,219,0 +170758671567,220,0 +170758671615,219,0 +170758671663,221,0 +170758671711,221,0 +170758671759,224,0 +170758671806,222,0 +170758671854,222,0 +170758671902,224,0 +170758671952,223,0 +170758672000,224,0 +170758672048,223,0 +170758672096,223,0 +170758672144,223,0 +170758672192,222,0 +170758672240,217,0 +170758672287,217,0 +170758672335,217,0 +170758672385,219,0 +170758672433,219,0 +170758672482,220,0 +170758672530,229,0 +170758672578,222,0 +170758672626,222,0 +170758672674,222,0 +170758672722,222,0 +170758672771,223,0 +170758672819,222,0 +170758672867,224,0 +170758672915,223,0 +170758672963,224,0 +170758673012,224,0 +170758673060,222,0 +170758673108,216,0 +170758673157,216,0 +170758673207,217,0 +170758673256,217,0 +170758673306,218,0 +170758673355,218,0 +170758673403,219,0 +170758673451,220,0 +170758673499,220,0 +170758673547,222,0 +170758673597,221,0 +170758673645,222,0 +170758673693,223,0 +170758673740,223,0 +170758673788,223,0 +170758673836,223,0 +170758673884,223,0 +170758673932,223,0 +170758673980,216,0 +170758674027,215,0 +170758674075,216,0 +170758674123,217,0 +170758674171,218,0 +170758674219,218,0 +170758674267,218,0 +170758674315,221,0 +170758674364,220,0 +170758674412,221,0 +170758674460,221,0 +170758674507,223,0 +170758674555,221,0 +170758674605,222,0 +170758674653,224,0 +170758674700,223,0 +170758674748,222,0 +170758674796,223,0 +170758674844,222,0 +170758674892,216,0 +170758674942,217,0 +170758674989,217,0 +170758675037,218,0 +170758675085,219,0 +170758675133,219,0 +170758675181,219,0 +170758675229,220,0 +170758675277,221,0 +170758675325,218,0 +170758675372,222,0 +170758675420,223,0 +170758675468,222,0 +170758675516,224,0 +170758675564,222,0 +170758675612,223,0 +170758675659,223,0 +170758675709,222,0 +170758675758,216,0 +170758675806,216,0 +170758675855,217,0 +170758675905,218,0 +170758675953,218,0 +170758676001,218,0 +170758676048,219,0 +170758676096,219,0 +170758676144,219,0 +170758676194,220,0 +170758676241,222,0 +170758676289,222,0 +170758676337,223,0 +170758676385,221,0 +170758676433,223,0 +170758676481,224,0 +170758676529,221,0 +170758676577,223,0 +170758676624,217,0 +170758676672,216,0 +170758676722,217,0 +170758676769,218,0 +170758676817,219,0 +170758676865,219,0 +170758676913,220,0 +170758676961,220,0 +170758677009,221,0 +170758677057,221,0 +170758677105,222,0 +170758677153,222,0 +170758677202,222,0 +170758677252,223,0 +170758677300,223,0 +170758677348,225,0 +170758677396,223,0 +170758677444,223,0 +170758677492,216,0 +170758677540,215,0 +170758677589,216,0 +170758677639,217,0 +170758677686,218,0 +170758677734,218,0 +170758677782,219,0 +170758677830,219,0 +170758677878,220,0 +170758677928,221,0 +170758677976,222,0 +170758678024,223,0 +170758678073,223,0 +170758678121,224,0 +170758678169,224,0 +170758678218,224,0 +170758678266,224,0 +170758678314,223,0 +170758678364,223,0 +170758678412,215,0 +170758678459,216,0 +170758678507,217,0 +170758678555,218,0 +170758678603,219,0 +170758678651,219,0 +170758678699,219,0 +170758678747,220,0 +170758678796,221,0 +170758678846,221,0 +170758678895,221,0 +170758678943,222,0 +170758678991,223,0 +170758679039,222,0 +170758679088,223,0 +170758679136,223,0 +170758679186,223,0 +170758679234,222,0 +170758679282,216,0 +170758679330,216,0 +170758679379,218,0 +170758679427,218,0 +170758679475,219,0 +170758679523,219,0 +170758679571,219,0 +170758679620,220,0 +170758679668,221,0 +170758679716,222,0 +170758679764,222,0 +170758679812,222,0 +170758679860,223,0 +170758679908,223,0 +170758679956,222,0 +170758680004,219,0 +170758680053,220,0 +170758680101,223,0 +170758680149,217,0 +170758680197,216,0 +170758680246,217,0 +170758680294,219,0 +170758680342,219,0 +170758680390,220,0 +170758680438,220,0 +170758680486,221,0 +170758680534,222,0 +170758680582,222,0 +170758680631,223,0 +170758680679,223,0 +170758680727,223,0 +170758680775,223,0 +170758680823,223,0 +170758680872,222,0 +170758680920,222,0 +170758680968,223,0 +170758681016,217,0 +170758681064,216,0 +170758681113,217,0 +170758681161,217,0 +170758681209,218,0 +170758681257,218,0 +170758681305,219,0 +170758681353,220,0 +170758681401,220,0 +170758681448,221,0 +170758681496,222,0 +170758681544,223,0 +170758681592,223,0 +170758681640,222,0 +170758681688,224,0 +170758681737,224,0 +170758681785,222,0 +170758681833,223,0 +170758681881,223,0 +170758681929,215,0 +170758681976,216,0 +170758682024,217,0 +170758682072,217,0 +170758682121,217,0 +170758682169,217,0 +170758682217,218,0 +170758682267,218,0 +170758682315,220,0 +170758682364,220,0 +170758682412,222,0 +170758682460,223,0 +170758682507,222,0 +170758682557,221,0 +170758682605,222,0 +170758682653,222,0 +170758682701,223,0 +170758682749,222,0 +170758682796,216,0 +170758682846,216,0 +170758682894,217,0 +170758682942,217,0 +170758682990,217,0 +170758683038,217,0 +170758683085,218,0 +170758683133,219,0 +170758683181,218,0 +170758683229,220,0 +170758683279,221,0 +170758683328,221,0 +170758683376,222,0 +170758683426,222,0 +170758683474,224,0 +170758683523,223,0 +170758683571,223,0 +170758683619,222,0 +170758683669,217,0 +170758683716,217,0 +170758683764,218,0 +170758683812,218,0 +170758683860,219,0 +170758683908,220,0 +170758683956,221,0 +170758684004,221,0 +170758684052,221,0 +170758684100,223,0 +170758684148,224,0 +170758684196,222,0 +170758684244,226,0 +170758684292,224,0 +170758684340,224,0 +170758684388,225,0 +170758684437,223,0 +170758684487,225,0 +170758684536,220,0 +170758684584,221,0 +170758684632,220,0 +170758684680,221,0 +170758684729,222,0 +170758684777,222,0 +170758684825,223,0 +170758684873,223,0 +170758684921,224,0 +170758684969,223,0 +170758685017,223,0 +170758685065,224,0 +170758685112,224,0 +170758685160,223,0 +170758685210,225,0 +170758685258,224,0 +170758685306,224,0 +170758685354,223,0 +170758685401,222,0 +170758685449,221,0 +170758685497,223,0 +170758685545,222,0 +170758685593,223,0 +170758685643,222,0 +170758685691,224,0 +170758685740,224,0 +170758685788,226,0 +170758685836,224,0 +170758685885,225,0 +170758685933,223,0 +170758685983,224,0 +170758686031,223,0 +170758686079,224,0 +170758686128,223,0 +170758686176,223,0 +170758686224,223,0 +170758686273,222,0 +170758686323,218,0 +170758686371,218,0 +170758686419,219,0 +170758686467,219,0 +170758686516,220,0 +170758686564,222,0 +170758686614,221,0 +170758686663,223,0 +170758686713,222,0 +170758686762,222,0 +170758686812,223,0 +170758686860,223,0 +170758686908,223,0 +170758686956,224,0 +170758687004,223,0 +170758687051,222,0 +170758687101,223,0 +170758687150,223,0 +170758687198,216,0 +170758687248,216,0 +170758687296,217,0 +170758687344,218,0 +170758687392,217,0 +170758687440,219,0 +170758687488,220,0 +170758687536,219,0 +170758687583,220,0 +170758687631,222,0 +170758687679,222,0 +170758687727,222,0 +170758687776,222,0 +170758687824,223,0 +170758687874,224,0 +170758687922,223,0 +170758687971,225,0 +170758688019,223,0 +170758688067,216,0 +170758688115,215,0 +170758688163,216,0 +170758688211,217,0 +170758688259,219,0 +170758688307,218,0 +170758688356,219,0 +170758688406,219,0 +170758688454,220,0 +170758688503,220,0 +170758688551,221,0 +170758688599,223,0 +170758688647,221,0 +170758688695,223,0 +170758688743,224,0 +170758688792,223,0 +170758688840,223,0 +170758688888,223,0 +170758688936,218,0 +170758688984,216,0 +170758689034,217,0 +170758689081,218,0 +170758689131,218,0 +170758689179,219,0 +170758689227,220,0 +170758689275,219,0 +170758689322,220,0 +170758689370,221,0 +170758689418,221,0 +170758689468,222,0 +170758689517,222,0 +170758689565,223,0 +170758689615,223,0 +170758689663,225,0 +170758689711,224,0 +170758689758,225,0 +170758689806,222,0 +170758689854,217,0 +170758689902,217,0 +170758689952,218,0 +170758689999,218,0 +170758690047,219,0 +170758690095,219,0 +170758690143,220,0 +170758690191,220,0 +170758690241,222,0 +170758690289,222,0 +170758690338,222,0 +170758690386,222,0 +170758690435,223,0 +170758690483,223,0 +170758690533,223,0 +170758690581,224,0 +170758690629,224,0 +170758690678,223,0 +170758690726,216,0 +170758690774,216,0 +170758690822,217,0 +170758690870,218,0 +170758690918,218,0 +170758690966,219,0 +170758691014,221,0 +170758691063,220,0 +170758691113,221,0 +170758691161,222,0 +170758691209,222,0 +170758691256,224,0 +170758691304,223,0 +170758691354,223,0 +170758691403,223,0 +170758691451,223,0 +170758691501,223,0 +170758691549,223,0 +170758691598,223,0 +170758691646,217,0 +170758691696,217,0 +170758691745,218,0 +170758691794,218,0 +170758691844,220,0 +170758691892,220,0 +170758691940,221,0 +170758691989,222,0 +170758692037,221,0 +170758692087,222,0 +170758692134,222,0 +170758692182,224,0 +170758692232,224,0 +170758692280,223,0 +170758692328,224,0 +170758692377,224,0 +170758692425,223,0 +170758692473,223,0 +170758692521,222,0 +170758692569,216,0 +170758692618,217,0 +170758692666,217,0 +170758692716,218,0 +170758692764,219,0 +170758692811,220,0 +170758692859,220,0 +170758692907,221,0 +170758692955,221,0 +170758693003,223,0 +170758693052,223,0 +170758693100,223,0 +170758693150,223,0 +170758693198,223,0 +170758693247,223,0 +170758693295,224,0 +170758693345,224,0 +170758693392,222,0 +170758693440,216,0 +170758693488,215,0 +170758693538,216,0 +170758693586,217,0 +170758693634,218,0 +170758693683,218,0 +170758693731,219,0 +170758693779,219,0 +170758693827,220,0 +170758693875,221,0 +170758693923,222,0 +170758693971,223,0 +170758694020,223,0 +170758694068,224,0 +170758694116,224,0 +170758694165,224,0 +170758694215,223,0 +170758694263,224,0 +170758694312,223,0 +170758694362,215,0 +170758694411,216,0 +170758694459,217,0 +170758694509,217,0 +170758694557,219,0 +170758694606,219,0 +170758694654,220,0 +170758694702,220,0 +170758694750,221,0 +170758694798,221,0 +170758694847,222,0 +170758694895,224,0 +170758694943,222,0 +170758694991,223,0 +170758695039,223,0 +170758695087,223,0 +170758695136,224,0 +170758695186,223,0 +170758695235,216,0 +170758695283,216,0 +170758695333,216,0 +170758695382,217,0 +170758695430,217,0 +170758695478,218,0 +170758695526,219,0 +170758695574,219,0 +170758695622,221,0 +170758695670,221,0 +170758695719,222,0 +170758695767,222,0 +170758695817,222,0 +170758695865,223,0 +170758695913,224,0 +170758695961,224,0 +170758696008,223,0 +170758696056,223,0 +170758696104,222,0 +170758696152,216,0 +170758696200,215,0 +170758696248,216,0 +170758696296,217,0 +170758696343,218,0 +170758696391,218,0 +170758696439,219,0 +170758696487,220,0 +170758696535,221,0 +170758696584,220,0 +170758696632,220,0 +170758696680,222,0 +170758696728,222,0 +170758696776,223,0 +170758696824,222,0 +170758696873,222,0 +170758696923,223,0 +170758696971,224,0 +170758697019,221,0 +170758697066,215,0 +170758697114,216,0 +170758697162,217,0 +170758697212,217,0 +170758697260,218,0 +170758697308,217,0 +170758697356,219,0 +170758697403,220,0 +170758697453,220,0 +170758697501,221,0 +170758697549,222,0 +170758697598,221,0 +170758697648,223,0 +170758697696,222,0 +170758697745,223,0 +170758697793,224,0 +170758697841,223,0 +170758697889,224,0 +170758697936,216,0 +170758697984,215,0 +170758698032,216,0 +170758698080,216,0 +170758698128,217,0 +170758698176,218,0 +170758698223,218,0 +170758698271,219,0 +170758698319,220,0 +170758698367,221,0 +170758698415,221,0 +170758698463,222,0 +170758698511,222,0 +170758698558,222,0 +170758698608,224,0 +170758698656,223,0 +170758698705,223,0 +170758698755,224,0 +170758698804,223,0 +170758698852,216,0 +170758698900,216,0 +170758698950,217,0 +170758698998,218,0 +170758699047,218,0 +170758699095,219,0 +170758699145,219,0 +170758699192,220,0 +170758699240,221,0 +170758699288,221,0 +170758699338,222,0 +170758699386,223,0 +170758699435,223,0 +170758699483,222,0 +170758699533,223,0 +170758699582,222,0 +170758699632,224,0 +170758699681,224,0 +170758699729,216,0 +170758699779,218,0 +170758699827,219,0 +170758699876,219,0 +170758699924,220,0 +170758699972,220,0 +170758700020,221,0 +170758700069,221,0 +170758700118,223,0 +170758700168,222,0 +170758700215,222,0 +170758700265,223,0 +170758700313,225,0 +170758700361,224,0 +170758700409,224,0 +170758700458,224,0 +170758700506,224,0 +170758700556,224,0 +170758700604,223,0 +170758700652,217,0 +170758700700,217,0 +170758700748,218,0 +170758700797,218,0 +170758700845,219,0 +170758700893,219,0 +170758700942,219,0 +170758700990,221,0 +170758701038,221,0 +170758701086,221,0 +170758701134,223,0 +170758701182,223,0 +170758701230,224,0 +170758701278,224,0 +170758701327,224,0 +170758701375,226,0 +170758701425,223,0 +170758701473,225,0 +170758701521,216,0 +170758701569,217,0 +170758701617,218,0 +170758701665,219,0 +170758701713,219,0 +170758701762,220,0 +170758701810,220,0 +170758701858,221,0 +170758701906,222,0 +170758701954,222,0 +170758702002,222,0 +170758702051,223,0 +170758702099,223,0 +170758702147,224,0 +170758702197,224,0 +170758702246,225,0 +170758702296,223,0 +170758702345,225,0 +170758702393,223,0 +170758702441,219,0 +170758702489,218,0 +170758702539,219,0 +170758702588,219,0 +170758702636,220,0 +170758702686,221,0 +170758702733,221,0 +170758702781,222,0 +170758702831,222,0 +170758702879,223,0 +170758702927,223,0 +170758702975,222,0 +170758703024,224,0 +170758703072,223,0 +170758703120,224,0 +170758703168,223,0 +170758703218,223,0 +170758703266,223,0 +170758703314,223,0 +170758703362,219,0 +170758703410,220,0 +170758703458,220,0 +170758703507,220,0 +170758703555,220,0 +170758703603,221,0 +170758703651,222,0 +170758703699,222,0 +170758703748,223,0 +170758703796,223,0 +170758703844,224,0 +170758703891,223,0 +170758703939,224,0 +170758703987,224,0 +170758704035,224,0 +170758704083,224,0 +170758704131,223,0 +170758704179,222,0 +170758704227,217,0 +170758704274,217,0 +170758704322,218,0 +170758704370,218,0 +170758704418,219,0 +170758704466,220,0 +170758704514,220,0 +170758704561,221,0 +170758704609,222,0 +170758704659,222,0 +170758704707,223,0 +170758704754,223,0 +170758704802,224,0 +170758704850,223,0 +170758704898,224,0 +170758704946,223,0 +170758704994,223,0 +170758705043,223,0 +170758705093,223,0 +170758705141,216,0 +170758705189,216,0 +170758705237,217,0 +170758705284,217,0 +170758705332,218,0 +170758705382,220,0 +170758705431,219,0 +170758705479,219,0 +170758705527,219,0 +170758705575,221,0 +170758705623,221,0 +170758705673,221,0 +170758705720,221,0 +170758705770,223,0 +170758705818,224,0 +170758705866,223,0 +170758705914,224,0 +170758705962,223,0 +170758706009,223,0 +170758706057,215,0 +170758706105,215,0 +170758706153,215,0 +170758706201,216,0 +170758706249,217,0 +170758706297,217,0 +170758706344,218,0 +170758706392,219,0 +170758706440,219,0 +170758706488,221,0 +170758706536,221,0 +170758706584,222,0 +170758706634,223,0 +170758706681,223,0 +170758706729,223,0 +170758706779,223,0 +170758706827,223,0 +170758706875,223,0 +170758706923,220,0 +170758706971,215,0 +170758707018,216,0 +170758707066,216,0 +170758707114,217,0 +170758707162,217,0 +170758707210,218,0 +170758707258,218,0 +170758707308,220,0 +170758707357,220,0 +170758707405,220,0 +170758707453,221,0 +170758707501,221,0 +170758707549,223,0 +170758707597,223,0 +170758707645,223,0 +170758707692,224,0 +170758707740,223,0 +170758707790,223,0 +170758707839,216,0 +170758707889,215,0 +170758707937,215,0 +170758707985,216,0 +170758708033,217,0 +170758708082,217,0 +170758708130,218,0 +170758708178,218,0 +170758708226,219,0 +170758708274,219,0 +170758708322,221,0 +170758708371,221,0 +170758708419,221,0 +170758708469,222,0 +170758708518,223,0 +170758708568,224,0 +170758708616,223,0 +170758708665,224,0 +170758708713,222,0 +170758708761,215,0 +170758708811,216,0 +170758708860,216,0 +170758708910,218,0 +170758708958,217,0 +170758709006,218,0 +170758709054,218,0 +170758709102,220,0 +170758709149,220,0 +170758709197,220,0 +170758709245,221,0 +170758709293,223,0 +170758709341,223,0 +170758709389,223,0 +170758709436,224,0 +170758709484,223,0 +170758709532,223,0 +170758709582,224,0 +170758709630,216,0 +170758709678,217,0 +170758709727,217,0 +170758709775,218,0 +170758709825,219,0 +170758709873,219,0 +170758709920,220,0 +170758709970,221,0 +170758710018,220,0 +170758710066,221,0 +170758710114,222,0 +170758710163,223,0 +170758710211,223,0 +170758710259,224,0 +170758710309,224,0 +170758710356,227,0 +170758710404,225,0 +170758710452,224,0 +170758710500,223,0 +170758710550,215,0 +170758710597,216,0 +170758710645,218,0 +170758710693,218,0 +170758710741,219,0 +170758710789,219,0 +170758710837,219,0 +170758710885,220,0 +170758710933,221,0 +170758710982,221,0 +170758711030,221,0 +170758711078,222,0 +170758711128,223,0 +170758711176,223,0 +170758711223,223,0 +170758711273,224,0 +170758711321,224,0 +170758711371,223,0 +170758711418,222,0 +170758711466,217,0 +170758711514,218,0 +170758711564,218,0 +170758711612,219,0 +170758711659,219,0 +170758711709,220,0 +170758711759,221,0 +170758711808,221,0 +170758711856,222,0 +170758711905,222,0 +170758711953,223,0 +170758712003,223,0 +170758712051,227,0 +170758712099,224,0 +170758712147,223,0 +170758712196,224,0 +170758712244,225,0 +170758712292,223,0 +170758712341,217,0 +170758712389,217,0 +170758712439,218,0 +170758712487,218,0 +170758712536,218,0 +170758712584,219,0 +170758712632,219,0 +170758712680,220,0 +170758712728,221,0 +170758712776,221,0 +170758712824,221,0 +170758712872,222,0 +170758712920,222,0 +170758712968,223,0 +170758713017,223,0 +170758713067,225,0 +170758713115,224,0 +170758713163,223,0 +170758713212,223,0 +170758713260,217,0 +170758713308,217,0 +170758713356,218,0 +170758713404,219,0 +170758713452,219,0 +170758713500,220,0 +170758713548,220,0 +170758713596,220,0 +170758713645,221,0 +170758713693,222,0 +170758713741,222,0 +170758713789,222,0 +170758713837,223,0 +170758713886,223,0 +170758713934,224,0 +170758713982,226,0 +170758714032,226,0 +170758714080,224,0 +170758714128,217,0 +170758714176,217,0 +170758714224,218,0 +170758714273,218,0 +170758714321,220,0 +170758714371,220,0 +170758714419,220,0 +170758714466,221,0 +170758714514,221,0 +170758714562,222,0 +170758714610,223,0 +170758714658,222,0 +170758714706,224,0 +170758714754,224,0 +170758714802,224,0 +170758714851,224,0 +170758714899,224,0 +170758714947,224,0 +170758714995,223,0 +170758715045,218,0 +170758715093,219,0 +170758715140,220,0 +170758715188,220,0 +170758715236,221,0 +170758715284,223,0 +170758715332,225,0 +170758715380,223,0 +170758715428,223,0 +170758715475,223,0 +170758715523,223,0 +170758715571,225,0 +170758715619,224,0 +170758715668,224,0 +170758715716,224,0 +170758715764,224,0 +170758715814,225,0 +170758715862,223,0 +170758715911,223,0 +170758715959,220,0 +170758716007,220,0 +170758716055,222,0 +170758716103,221,0 +170758716151,222,0 +170758716199,222,0 +170758716247,222,0 +170758716295,222,0 +170758716343,223,0 +170758716391,224,0 +170758716440,223,0 +170758716490,223,0 +170758716538,224,0 +170758716587,225,0 +170758716635,225,0 +170758716685,224,0 +170758716733,223,0 +170758716782,223,0 +170758716832,218,0 +170758716881,218,0 +170758716929,219,0 +170758716979,219,0 +170758717026,220,0 +170758717074,221,0 +170758717124,222,0 +170758717172,222,0 +170758717220,223,0 +170758717268,223,0 +170758717316,223,0 +170758717365,224,0 +170758717413,224,0 +170758717461,223,0 +170758717509,223,0 +170758717557,224,0 +170758717605,224,0 +170758717653,223,0 +170758717702,222,0 +170758717750,216,0 +170758717798,216,0 +170758717848,217,0 +170758717897,218,0 +170758717945,219,0 +170758717994,219,0 +170758718042,219,0 +170758718090,220,0 +170758718138,220,0 +170758718186,221,0 +170758718235,221,0 +170758718285,223,0 +170758718333,223,0 +170758718381,223,0 +170758718428,224,0 +170758718476,223,0 +170758718524,223,0 +170758718572,222,0 +170758718620,223,0 +170758718668,215,0 +170758718715,215,0 +170758718763,216,0 +170758718811,217,0 +170758718861,218,0 +170758718908,219,0 +170758718956,219,0 +170758719006,220,0 +170758719055,221,0 +170758719105,223,0 +170758719153,222,0 +170758719202,223,0 +170758719250,224,0 +170758719300,226,0 +170758719348,224,0 +170758719395,223,0 +170758719443,223,0 +170758719493,224,0 +170758719541,216,0 +170758719589,215,0 +170758719637,216,0 +170758719685,217,0 +170758719733,218,0 +170758719781,218,0 +170758719829,220,0 +170758719877,219,0 +170758719926,220,0 +170758719974,221,0 +170758720023,222,0 +170758720071,222,0 +170758720119,223,0 +170758720169,223,0 +170758720217,223,0 +170758720266,224,0 +170758720315,228,0 +170758720363,229,0 +170758720411,223,0 +170758720459,216,0 +170758720507,215,0 +170758720555,216,0 +170758720603,217,0 +170758720652,217,0 +170758720700,218,0 +170758720748,218,0 +170758720798,219,0 +170758720846,220,0 +170758720894,221,0 +170758720941,220,0 +170758720989,222,0 +170758721037,222,0 +170758721087,222,0 +170758721135,222,0 +170758721182,223,0 +170758721230,223,0 +170758721278,223,0 +170758721326,222,0 +170758721374,215,0 +170758721423,215,0 +170758721471,216,0 +170758721519,217,0 +170758721568,217,0 +170758721616,218,0 +170758721664,219,0 +170758721712,219,0 +170758721760,221,0 +170758721808,221,0 +170758721857,222,0 +170758721905,222,0 +170758721953,223,0 +170758722001,224,0 +170758722049,223,0 +170758722097,223,0 +170758722145,223,0 +170758722193,223,0 +170758722242,220,0 +170758722292,218,0 +170758722341,218,0 +170758722389,219,0 +170758722439,220,0 +170758722486,220,0 +170758722534,221,0 +170758722582,221,0 +170758722630,222,0 +170758722678,222,0 +170758722726,222,0 +170758722774,223,0 +170758722822,223,0 +170758722870,223,0 +170758722918,224,0 +170758722967,224,0 +170758723015,223,0 +170758723063,223,0 +170758723111,222,0 +170758723160,219,0 +170758723208,219,0 +170758723256,219,0 +170758723304,219,0 +170758723352,220,0 +170758723400,221,0 +170758723448,221,0 +170758723496,221,0 +170758723543,223,0 +170758723591,223,0 +170758723639,222,0 +170758723687,222,0 +170758723735,223,0 +170758723784,223,0 +170758723834,223,0 +170758723882,223,0 +170758723930,223,0 +170758723978,224,0 +170758724026,220,0 +170758724073,217,0 +170758724121,218,0 +170758724171,217,0 +170758724219,219,0 +170758724266,220,0 +170758724314,219,0 +170758724362,220,0 +170758724410,222,0 +170758724460,221,0 +170758724507,222,0 +170758724557,223,0 +170758724606,222,0 +170758724654,223,0 +170758724702,223,0 +170758724750,223,0 +170758724798,224,0 +170758724846,223,0 +170758724893,223,0 +170758724941,218,0 +170758724989,215,0 +170758725037,216,0 +170758725085,217,0 +170758725133,217,0 +170758725181,218,0 +170758725229,218,0 +170758725276,219,0 +170758725324,220,0 +170758725374,221,0 +170758725422,221,0 +170758725469,222,0 +170758725519,222,0 +170758725568,223,0 +170758725616,223,0 +170758725664,223,0 +170758725712,223,0 +170758725760,224,0 +170758725808,223,0 +170758725857,216,0 +170758725905,215,0 +170758725953,216,0 +170758726001,216,0 +170758726049,218,0 +170758726097,218,0 +170758726145,218,0 +170758726193,221,0 +170758726241,220,0 +170758726291,222,0 +170758726338,221,0 +170758726388,221,0 +170758726436,222,0 +170758726485,223,0 +170758726533,223,0 +170758726581,222,0 +170758726629,225,0 +170758726677,223,0 +170758726725,222,0 +170758726773,215,0 +170758726821,215,0 +170758726869,215,0 +170758726919,216,0 +170758726967,217,0 +170758727016,217,0 +170758727064,217,0 +170758727112,219,0 +170758727160,219,0 +170758727208,220,0 +170758727255,221,0 +170758727303,222,0 +170758727351,222,0 +170758727399,223,0 +170758727447,225,0 +170758727495,223,0 +170758727543,224,0 +170758727591,223,0 +170758727640,216,0 +170758727688,215,0 +170758727736,216,0 +170758727784,217,0 +170758727834,217,0 +170758727881,218,0 +170758727929,219,0 +170758727977,219,0 +170758728025,220,0 +170758728073,220,0 +170758728121,221,0 +170758728170,221,0 +170758728218,223,0 +170758728266,223,0 +170758728316,223,0 +170758728365,223,0 +170758728413,223,0 +170758728463,223,0 +170758728512,223,0 +170758728560,216,0 +170758728609,215,0 +170758728657,216,0 +170758728707,216,0 +170758728755,218,0 +170758728803,218,0 +170758728852,219,0 +170758728902,219,0 +170758728949,221,0 +170758728997,221,0 +170758729047,221,0 +170758729095,222,0 +170758729143,223,0 +170758729191,223,0 +170758729239,223,0 +170758729287,223,0 +170758729334,224,0 +170758729382,224,0 +170758729432,223,0 +170758729481,215,0 +170758729529,216,0 +170758729577,216,0 +170758729625,217,0 +170758729673,218,0 +170758729722,218,0 +170758729770,219,0 +170758729818,220,0 +170758729866,221,0 +170758729914,221,0 +170758729964,222,0 +170758730012,222,0 +170758730059,223,0 +170758730107,223,0 +170758730157,223,0 +170758730206,223,0 +170758730254,224,0 +170758730302,222,0 +170758730352,216,0 +170758730401,215,0 +170758730451,216,0 +170758730499,217,0 +170758730547,218,0 +170758730595,218,0 +170758730642,218,0 +170758730690,218,0 +170758730738,219,0 +170758730786,220,0 +170758730834,221,0 +170758730883,222,0 +170758730931,221,0 +170758730979,222,0 +170758731027,223,0 +170758731075,223,0 +170758731123,223,0 +170758731171,223,0 +170758731219,223,0 +170758731267,216,0 +170758731316,217,0 +170758731364,217,0 +170758731412,218,0 +170758731460,219,0 +170758731509,219,0 +170758731559,220,0 +170758731607,220,0 +170758731654,220,0 +170758731704,221,0 +170758731752,222,0 +170758731801,221,0 +170758731849,223,0 +170758731896,225,0 +170758731944,224,0 +170758731992,224,0 +170758732040,224,0 +170758732088,223,0 +170758732135,222,0 +170758732183,218,0 +170758732231,219,0 +170758732279,219,0 +170758732327,221,0 +170758732375,220,0 +170758732423,221,0 +170758732472,222,0 +170758732520,223,0 +170758732568,223,0 +170758732615,223,0 +170758732663,224,0 +170758732711,223,0 +170758732759,224,0 +170758732808,224,0 +170758732856,224,0 +170758732904,225,0 +170758732952,223,0 +170758733002,224,0 +170758733050,220,0 +170758733099,220,0 +170758733147,221,0 +170758733195,221,0 +170758733243,222,0 +170758733290,222,0 +170758733338,223,0 +170758733386,223,0 +170758733434,223,0 +170758733482,223,0 +170758733531,224,0 +170758733579,224,0 +170758733627,224,0 +170758733676,224,0 +170758733724,224,0 +170758733772,224,0 +170758733820,224,0 +170758733868,224,0 +170758733916,225,0 +170758733963,221,0 +170758734011,220,0 +170758734059,221,0 +170758734107,221,0 +170758734155,223,0 +170758734203,222,0 +170758734250,223,0 +170758734298,223,0 +170758734346,224,0 +170758734394,224,0 +170758734442,225,0 +170758734491,224,0 +170758734539,225,0 +170758734587,225,0 +170758734635,225,0 +170758734684,225,0 +170758734732,225,0 +170758734781,224,0 +170758734829,223,0 +170758734877,219,0 +170758734927,219,0 +170758734975,220,0 +170758735024,221,0 +170758735072,221,0 +170758735122,222,0 +170758735170,222,0 +170758735219,222,0 +170758735267,222,0 +170758735315,224,0 +170758735364,223,0 +170758735414,223,0 +170758735462,222,0 +170758735511,224,0 +170758735561,224,0 +170758735610,223,0 +170758735658,224,0 +170758735706,223,0 +170758735756,218,0 +170758735804,219,0 +170758735853,218,0 +170758735901,219,0 +170758735949,220,0 +170758735999,220,0 +170758736048,221,0 +170758736096,223,0 +170758736145,222,0 +170758736195,222,0 +170758736243,223,0 +170758736291,224,0 +170758736340,224,0 +170758736388,224,0 +170758736436,224,0 +170758736484,224,0 +170758736532,224,0 +170758736580,224,0 +170758736628,224,0 +170758736676,217,0 +170758736724,218,0 +170758736772,218,0 +170758736821,219,0 +170758736869,219,0 +170758736917,220,0 +170758736965,221,0 +170758737012,222,0 +170758737062,222,0 +170758737109,223,0 +170758737159,224,0 +170758737207,223,0 +170758737255,223,0 +170758737303,225,0 +170758737351,221,0 +170758737399,223,0 +170758737447,224,0 +170758737495,223,0 +170758737543,217,0 +170758737591,217,0 +170758737638,218,0 +170758737688,218,0 +170758737737,220,0 +170758737785,219,0 +170758737835,220,0 +170758737883,222,0 +170758737932,222,0 +170758737980,222,0 +170758738030,224,0 +170758738078,223,0 +170758738127,225,0 +170758738175,224,0 +170758738223,225,0 +170758738271,223,0 +170758738320,224,0 +170758738368,224,0 +170758738416,223,0 +170758738466,216,0 +170758738514,216,0 +170758738561,216,0 +170758738611,218,0 +170758738659,218,0 +170758738708,218,0 +170758738756,219,0 +170758738806,220,0 +170758738855,220,0 +170758738903,221,0 +170758738951,222,0 +170758738999,224,0 +170758739047,220,0 +170758739097,223,0 +170758739145,224,0 +170758739194,223,0 +170758739243,223,0 +170758739291,224,0 +170758739341,222,0 +170758739390,216,0 +170758739440,216,0 +170758739489,217,0 +170758739539,218,0 +170758739587,219,0 +170758739636,219,0 +170758739684,220,0 +170758739734,219,0 +170758739782,220,0 +170758739830,220,0 +170758739878,223,0 +170758739927,222,0 +170758739977,223,0 +170758740026,223,0 +170758740076,223,0 +170758740124,223,0 +170758740173,224,0 +170758740221,222,0 +170758740271,216,0 +170758740319,216,0 +170758740368,217,0 +170758740418,219,0 +170758740465,219,0 +170758740515,220,0 +170758740564,220,0 +170758740612,220,0 +170758740662,221,0 +170758740710,223,0 +170758740758,223,0 +170758740806,223,0 +170758740854,224,0 +170758740902,224,0 +170758740950,223,0 +170758740998,224,0 +170758741045,223,0 +170758741093,223,0 +170758741141,217,0 +170758741189,216,0 +170758741237,216,0 +170758741285,218,0 +170758741333,218,0 +170758741381,219,0 +170758741430,220,0 +170758741478,220,0 +170758741526,220,0 +170758741574,221,0 +170758741624,222,0 +170758741673,224,0 +170758741723,223,0 +170758741772,223,0 +170758741820,224,0 +170758741868,223,0 +170758741916,224,0 +170758741966,224,0 +170758742014,223,0 +170758742063,216,0 +170758742111,216,0 +170758742159,216,0 +170758742207,217,0 +170758742255,217,0 +170758742303,219,0 +170758742351,219,0 +170758742398,220,0 +170758742448,220,0 +170758742496,221,0 +170758742544,221,0 +170758742592,223,0 +170758742640,221,0 +170758742688,223,0 +170758742736,223,0 +170758742785,223,0 +170758742833,223,0 +170758742883,223,0 +170758742930,222,0 +170758742978,215,0 +170758743026,214,0 +170758743076,215,0 +170758743123,215,0 +170758743171,216,0 +170758743219,217,0 +170758743267,218,0 +170758743315,218,0 +170758743363,219,0 +170758743411,220,0 +170758743459,220,0 +170758743506,221,0 +170758743554,221,0 +170758743604,222,0 +170758743652,222,0 +170758743701,225,0 +170758743751,223,0 +170758743799,223,0 +170758743848,216,0 +170758743896,215,0 +170758743944,215,0 +170758743994,215,0 +170758744042,216,0 +170758744089,216,0 +170758744137,217,0 +170758744185,218,0 +170758744233,219,0 +170758744281,219,0 +170758744329,220,0 +170758744377,220,0 +170758744425,222,0 +170758744473,222,0 +170758744521,223,0 +170758744569,222,0 +170758744617,222,0 +170758744664,223,0 +170758744712,223,0 +170758744760,216,0 +170758744808,215,0 +170758744856,216,0 +170758744904,217,0 +170758744951,217,0 +170758744999,218,0 +170758745047,218,0 +170758745095,219,0 +170758745143,219,0 +170758745190,220,0 +170758745238,220,0 +170758745288,220,0 +170758745336,222,0 +170758745384,221,0 +170758745432,222,0 +170758745480,221,0 +170758745529,223,0 +170758745577,223,0 +170758745625,232,0 +170758745673,218,0 +170758745721,217,0 +170758745770,220,0 +170758745818,219,0 +170758745866,219,0 +170758745914,220,0 +170758745963,221,0 +170758746011,221,0 +170758746061,222,0 +170758746111,223,0 +170758746160,222,0 +170758746208,222,0 +170758746256,224,0 +170758746306,224,0 +170758746355,225,0 +170758746403,224,0 +170758746451,223,0 +170758746500,222,0 +170758746548,217,0 +170758746596,217,0 +170758746644,217,0 +170758746692,219,0 +170758746740,219,0 +170758746788,219,0 +170758746836,220,0 +170758746884,222,0 +170758746931,221,0 +170758746979,221,0 +170758747027,222,0 +170758747075,222,0 +170758747123,222,0 +170758747173,223,0 +170758747221,223,0 +170758747269,225,0 +170758747318,224,0 +170758747367,224,0 +170758747415,224,0 +170758747465,217,0 +170758747513,216,0 +170758747561,217,0 +170758747609,218,0 +170758747657,218,0 +170758747704,220,0 +170758747752,219,0 +170758747800,219,0 +170758747848,220,0 +170758747896,221,0 +170758747944,222,0 +170758747994,222,0 +170758748043,224,0 +170758748091,224,0 +170758748139,223,0 +170758748189,224,0 +170758748236,224,0 +170758748284,224,0 +170758748334,223,0 +170758748383,218,0 +170758748431,218,0 +170758748479,219,0 +170758748527,220,0 +170758748575,220,0 +170758748624,221,0 +170758748672,222,0 +170758748720,222,0 +170758748768,223,0 +170758748816,224,0 +170758748864,223,0 +170758748912,224,0 +170758748960,223,0 +170758749008,224,0 +170758749056,223,0 +170758749104,224,0 +170758749151,223,0 +170758749201,223,0 +170758749250,218,0 +170758749298,219,0 +170758749346,219,0 +170758749394,221,0 +170758749444,220,0 +170758749493,221,0 +170758749541,221,0 +170758749589,221,0 +170758749637,225,0 +170758749687,223,0 +170758749736,223,0 +170758749784,223,0 +170758749832,224,0 +170758749881,223,0 +170758749929,222,0 +170758749977,224,0 +170758750025,223,0 +170758750073,223,0 +170758750121,223,0 +170758750168,219,0 +170758750216,218,0 +170758750264,219,0 +170758750313,219,0 +170758750361,220,0 +170758750409,221,0 +170758750457,222,0 +170758750506,222,0 +170758750554,223,0 +170758750602,223,0 +170758750650,223,0 +170758750699,223,0 +170758750747,224,0 +170758750797,224,0 +170758750845,224,0 +170758750894,225,0 +170758750942,224,0 +170758750990,224,0 +170758751038,223,0 +170758751086,217,0 +170758751134,217,0 +170758751182,217,0 +170758751230,218,0 +170758751278,219,0 +170758751326,219,0 +170758751374,220,0 +170758751422,221,0 +170758751470,221,0 +170758751518,221,0 +170758751565,220,0 +170758751615,221,0 +170758751663,224,0 +170758751711,223,0 +170758751759,223,0 +170758751807,223,0 +170758751855,224,0 +170758751902,223,0 +170758751950,223,0 +170758751998,215,0 +170758752046,216,0 +170758752096,217,0 +170758752144,217,0 +170758752192,218,0 +170758752241,218,0 +170758752289,218,0 +170758752337,219,0 +170758752386,220,0 +170758752436,220,0 +170758752484,223,0 +170758752532,222,0 +170758752581,223,0 +170758752629,223,0 +170758752677,222,0 +170758752725,223,0 +170758752773,223,0 +170758752821,223,0 +170758752869,216,0 +170758752917,215,0 +170758752965,216,0 +170758753014,217,0 +170758753064,217,0 +170758753112,217,0 +170758753161,219,0 +170758753209,219,0 +170758753257,219,0 +170758753305,220,0 +170758753355,221,0 +170758753403,221,0 +170758753452,222,0 +170758753500,222,0 +170758753548,223,0 +170758753597,223,0 +170758753645,224,0 +170758753693,222,0 +170758753741,222,0 +170758753789,215,0 +170758753838,215,0 +170758753886,216,0 +170758753934,216,0 +170758753984,217,0 +170758754032,217,0 +170758754080,218,0 +170758754128,219,0 +170758754177,219,0 +170758754225,220,0 +170758754275,221,0 +170758754322,223,0 +170758754370,223,0 +170758754418,223,0 +170758754468,223,0 +170758754517,223,0 +170758754565,223,0 +170758754615,223,0 +170758754663,216,0 +170758754711,215,0 +170758754760,215,0 +170758754808,215,0 +170758754856,215,0 +170758754905,216,0 +170758754955,217,0 +170758755003,218,0 +170758755051,218,0 +170758755099,220,0 +170758755147,219,0 +170758755194,221,0 +170758755242,220,0 +170758755290,222,0 +170758755338,222,0 +170758755388,222,0 +170758755436,224,0 +170758755485,223,0 +170758755535,223,0 +170758755583,215,0 +170758755630,215,0 +170758755680,215,0 +170758755730,215,0 +170758755779,216,0 +170758755827,217,0 +170758755876,218,0 +170758755924,218,0 +170758755972,219,0 +170758756022,219,0 +170758756071,220,0 +170758756119,220,0 +170758756167,221,0 +170758756217,222,0 +170758756265,222,0 +170758756314,222,0 +170758756362,222,0 +170758756412,223,0 +170758756461,216,0 +170758756511,216,0 +170758756558,216,0 +170758756608,217,0 +170758756656,218,0 +170758756705,218,0 +170758756755,218,0 +170758756803,221,0 +170758756850,220,0 +170758756898,220,0 +170758756948,222,0 +170758756996,222,0 +170758757045,223,0 +170758757093,223,0 +170758757141,224,0 +170758757189,225,0 +170758757237,225,0 +170758757285,224,0 +170758757334,223,0 +170758757382,219,0 +170758757430,219,0 +170758757478,219,0 +170758757526,220,0 +170758757574,220,0 +170758757623,221,0 +170758757671,222,0 +170758757719,222,0 +170758757767,223,0 +170758757816,224,0 +170758757864,223,0 +170758757912,224,0 +170758757960,224,0 +170758758008,224,0 +170758758056,223,0 +170758758104,225,0 +170758758152,224,0 +170758758202,226,0 +170758758251,223,0 +170758758299,219,0 +170758758349,219,0 +170758758397,220,0 +170758758446,221,0 +170758758494,220,0 +170758758542,221,0 +170758758590,224,0 +170758758639,222,0 +170758758689,224,0 +170758758738,224,0 +170758758788,223,0 +170758758836,225,0 +170758758884,225,0 +170758758932,224,0 +170758758980,224,0 +170758759027,225,0 +170758759075,223,0 +170758759123,223,0 +170758759171,216,0 +170758759221,218,0 +170758759270,218,0 +170758759320,219,0 +170758759368,219,0 +170758759416,219,0 +170758759464,221,0 +170758759512,222,0 +170758759559,222,0 +170758759607,223,0 +170758759655,223,0 +170758759703,223,0 +170758759753,223,0 +170758759801,224,0 +170758759850,224,0 +170758759900,224,0 +170758759948,224,0 +170758759995,226,0 +170758760045,223,0 +170758760093,217,0 +170758760141,217,0 +170758760189,218,0 +170758760237,219,0 +170758760285,220,0 +170758760334,220,0 +170758760382,221,0 +170758760430,221,0 +170758760478,222,0 +170758760526,223,0 +170758760574,223,0 +170758760621,223,0 +170758760669,224,0 +170758760719,223,0 +170758760768,223,0 +170758760818,223,0 +170758760867,223,0 +170758760915,223,0 +170758760965,220,0 +170758761013,217,0 +170758761062,218,0 +170758761110,219,0 +170758761158,219,0 +170758761206,220,0 +170758761254,220,0 +170758761302,221,0 +170758761350,221,0 +170758761398,222,0 +170758761446,222,0 +170758761494,222,0 +170758761543,223,0 +170758761593,222,0 +170758761642,223,0 +170758761692,223,0 +170758761740,223,0 +170758761788,223,0 +170758761837,223,0 +170758761885,216,0 +170758761935,216,0 +170758761983,217,0 +170758762031,217,0 +170758762079,218,0 +170758762127,219,0 +170758762176,220,0 +170758762224,220,0 +170758762274,220,0 +170758762322,220,0 +170758762370,221,0 +170758762419,222,0 +170758762469,222,0 +170758762516,223,0 +170758762566,222,0 +170758762614,222,0 +170758762662,222,0 +170758762710,223,0 +170758762758,222,0 +170758762806,216,0 +170758762854,215,0 +170758762903,216,0 +170758762952,217,0 +170758763000,218,0 +170758763048,218,0 +170758763098,219,0 +170758763145,219,0 +170758763193,220,0 +170758763241,221,0 +170758763289,221,0 +170758763339,222,0 +170758763387,222,0 +170758763435,222,0 +170758763484,222,0 +170758763532,223,0 +170758763582,223,0 +170758763631,223,0 +170758763679,216,0 +170758763729,215,0 +170758763777,216,0 +170758763826,217,0 +170758763876,218,0 +170758763923,218,0 +170758763971,218,0 +170758764019,219,0 +170758764069,220,0 +170758764118,221,0 +170758764166,222,0 +170758764214,222,0 +170758764262,222,0 +170758764312,222,0 +170758764361,224,0 +170758764409,223,0 +170758764459,223,0 +170758764508,224,0 +170758764558,223,0 +170758764606,216,0 +170758764653,216,0 +170758764701,217,0 +170758764751,218,0 +170758764799,219,0 +170758764847,218,0 +170758764895,219,0 +170758764942,220,0 +170758764992,221,0 +170758765040,220,0 +170758765088,221,0 +170758765137,222,0 +170758765187,222,0 +170758765235,224,0 +170758765283,224,0 +170758765332,223,0 +170758765380,226,0 +170758765430,223,0 +170758765478,221,0 +170758765527,216,0 +170758765577,217,0 +170758765624,218,0 +170758765672,219,0 +170758765722,219,0 +170758765771,219,0 +170758765821,219,0 +170758765869,221,0 +170758765917,221,0 +170758765966,222,0 +170758766014,224,0 +170758766062,224,0 +170758766112,223,0 +170758766161,224,0 +170758766211,224,0 +170758766259,223,0 +170758766308,224,0 +170758766358,223,0 +170758766406,218,0 +170758766454,218,0 +170758766503,218,0 +170758766551,219,0 +170758766599,219,0 +170758766647,220,0 +170758766695,220,0 +170758766743,221,0 +170758766792,223,0 +170758766842,222,0 +170758766890,223,0 +170758766938,223,0 +170758766986,225,0 +170758767035,224,0 +170758767085,224,0 +170758767134,224,0 +170758767184,225,0 +170758767233,223,0 +170758767281,218,0 +170758767329,218,0 +170758767377,219,0 +170758767425,219,0 +170758767473,220,0 +170758767521,220,0 +170758767569,221,0 +170758767616,221,0 +170758767664,221,0 +170758767712,222,0 +170758767760,222,0 +170758767808,224,0 +170758767858,224,0 +170758767907,224,0 +170758767955,224,0 +170758768003,223,0 +170758768051,224,0 +170758768099,223,0 +170758768147,223,0 +170758768195,217,0 +170758768244,217,0 +170758768292,218,0 +170758768342,219,0 +170758768390,220,0 +170758768437,220,0 +170758768485,220,0 +170758768533,220,0 +170758768581,222,0 +170758768631,222,0 +170758768680,222,0 +170758768728,223,0 +170758768776,221,0 +170758768824,220,0 +170758768872,223,0 +170758768920,223,0 +170758768969,223,0 +170758769017,223,0 +170758769065,223,0 +170758769113,217,0 +170758769160,217,0 +170758769210,219,0 +170758769259,218,0 +170758769307,219,0 +170758769357,219,0 +170758769405,221,0 +170758769452,221,0 +170758769500,222,0 +170758769548,221,0 +170758769596,223,0 +170758769644,224,0 +170758769693,223,0 +170758769741,224,0 +170758769789,224,0 +170758769837,224,0 +170758769885,222,0 +170758769933,224,0 +170758769981,222,0 +170758770030,216,0 +170758770078,217,0 +170758770128,218,0 +170758770176,218,0 +170758770225,219,0 +170758770274,220,0 +170758770324,220,0 +170758770372,221,0 +170758770420,221,0 +170758770468,222,0 +170758770517,222,0 +170758770565,223,0 +170758770613,223,0 +170758770661,224,0 +170758770709,225,0 +170758770758,226,0 +170758770808,224,0 +170758770857,223,0 +170758770907,218,0 +170758770955,218,0 +170758771003,218,0 +170758771051,219,0 +170758771098,220,0 +170758771146,221,0 +170758771194,222,0 +170758771242,221,0 +170758771290,220,0 +170758771338,223,0 +170758771386,224,0 +170758771434,223,0 +170758771482,226,0 +170758771530,224,0 +170758771578,224,0 +170758771626,227,0 +170758771675,224,0 +170758771724,225,0 +170758771774,223,0 +170758771823,219,0 +170758771873,219,0 +170758771922,221,0 +170758771970,220,0 +170758772018,221,0 +170758772068,222,0 +170758772116,222,0 +170758772164,222,0 +170758772213,223,0 +170758772261,223,0 +170758772309,224,0 +170758772357,223,0 +170758772407,224,0 +170758772455,224,0 +170758772503,224,0 +170758772551,224,0 +170758772599,223,0 +170758772647,223,0 +170758772695,216,0 +170758772743,215,0 +170758772791,216,0 +170758772839,217,0 +170758772888,218,0 +170758772936,219,0 +170758772985,219,0 +170758773035,220,0 +170758773083,220,0 +170758773132,221,0 +170758773180,222,0 +170758773230,222,0 +170758773279,223,0 +170758773327,223,0 +170758773375,223,0 +170758773425,223,0 +170758773473,224,0 +170758773520,224,0 +170758773568,222,0 +170758773616,215,0 +170758773666,215,0 +170758773715,215,0 +170758773763,215,0 +170758773813,215,0 +170758773863,216,0 +170758773912,217,0 +170758773960,218,0 +170758774008,218,0 +170758774058,223,0 +170758774105,220,0 +170758774155,221,0 +170758774203,222,0 +170758774251,222,0 +170758774300,221,0 +170758774348,222,0 +170758774396,222,0 +170758774444,224,0 +170758774494,216,0 +170758774542,215,0 +170758774591,214,0 +170758774639,215,0 +170758774687,215,0 +170758774737,216,0 +170758774786,216,0 +170758774834,217,0 +170758774884,218,0 +170758774932,219,0 +170758774980,220,0 +170758775027,221,0 +170758775077,222,0 +170758775125,221,0 +170758775173,223,0 +170758775221,223,0 +170758775269,222,0 +170758775317,223,0 +170758775365,222,0 +170758775413,216,0 +170758775460,215,0 +170758775510,215,0 +170758775558,215,0 +170758775606,215,0 +170758775654,216,0 +170758775702,217,0 +170758775750,217,0 +170758775799,218,0 +170758775847,219,0 +170758775895,219,0 +170758775945,220,0 +170758775994,220,0 +170758776042,221,0 +170758776090,221,0 +170758776138,223,0 +170758776187,222,0 +170758776235,222,0 +170758776283,222,0 +170758776331,214,0 +170758776379,215,0 +170758776429,215,0 +170758776477,215,0 +170758776525,215,0 +170758776573,216,0 +170758776621,217,0 +170758776669,217,0 +170758776716,219,0 +170758776766,219,0 +170758776814,219,0 +170758776862,221,0 +170758776910,221,0 +170758776957,221,0 +170758777005,222,0 +170758777053,223,0 +170758777102,223,0 +170758777150,223,0 +170758777198,216,0 +170758777246,215,0 +170758777294,215,0 +170758777344,215,0 +170758777392,215,0 +170758777441,216,0 +170758777489,216,0 +170758777537,218,0 +170758777585,218,0 +170758777633,218,0 +170758777683,220,0 +170758777732,222,0 +170758777782,221,0 +170758777830,221,0 +170758777878,222,0 +170758777926,223,0 +170758777975,222,0 +170758778024,223,0 +170758778074,222,0 +170758778123,215,0 +170758778171,215,0 +170758778221,216,0 +170758778269,216,0 +170758778317,217,0 +170758778365,218,0 +170758778413,218,0 +170758778461,219,0 +170758778510,220,0 +170758778558,221,0 +170758778606,221,0 +170758778656,222,0 +170758778705,223,0 +170758778753,223,0 +170758778801,223,0 +170758778849,222,0 +170758778898,223,0 +170758778946,223,0 +170758778994,221,0 +170758779042,216,0 +170758779090,217,0 +170758779138,218,0 +170758779188,219,0 +170758779236,220,0 +170758779285,220,0 +170758779335,221,0 +170758779383,221,0 +170758779431,221,0 +170758779479,222,0 +170758779528,223,0 +170758779576,222,0 +170758779624,223,0 +170758779674,223,0 +170758779723,224,0 +170758779773,223,0 +170758779820,223,0 +170758779870,223,0 +170758779918,221,0 +170758779967,220,0 +170758780017,220,0 +170758780066,220,0 +170758780116,221,0 +170758780164,221,0 +170758780213,222,0 +170758780263,222,0 +170758780311,222,0 +170758780360,222,0 +170758780408,222,0 +170758780456,224,0 +170758780504,223,0 +170758780552,223,0 +170758780600,223,0 +170758780648,223,0 +170758780696,225,0 +170758780744,222,0 +170758780792,222,0 +170758780840,220,0 +170758780888,220,0 +170758780936,219,0 +170758780983,223,0 +170758781031,221,0 +170758781079,221,0 +170758781129,221,0 +170758781177,221,0 +170758781226,223,0 +170758781274,222,0 +170758781324,223,0 +170758781373,224,0 +170758781421,223,0 +170758781470,225,0 +170758781518,224,0 +170758781568,223,0 +170758781616,224,0 +170758781664,223,0 +170758781711,220,0 +170758781759,221,0 +170758781807,220,0 +170758781855,221,0 +170758781903,221,0 +170758781953,222,0 +170758782002,223,0 +170758782052,223,0 +170758782100,222,0 +170758782148,223,0 +170758782197,223,0 +170758782245,223,0 +170758782293,223,0 +170758782342,224,0 +170758782390,223,0 +170758782438,224,0 +170758782486,223,0 +170758782536,223,0 +170758782583,222,0 +170758782631,221,0 +170758782679,221,0 +170758782729,223,0 +170758782777,222,0 +170758782826,223,0 +170758782876,223,0 +170758782924,223,0 +170758782972,223,0 +170758783021,224,0 +170758783071,223,0 +170758783120,224,0 +170758783168,223,0 +170758783216,223,0 +170758783264,223,0 +170758783312,224,0 +170758783359,223,0 +170758783407,223,0 +170758783457,222,0 +170758783505,219,0 +170758783553,220,0 +170758783600,220,0 +170758783648,221,0 +170758783696,222,0 +170758783744,222,0 +170758783792,222,0 +170758783839,224,0 +170758783887,222,0 +170758783935,224,0 +170758783983,224,0 +170758784031,224,0 +170758784080,224,0 +170758784128,224,0 +170758784178,224,0 +170758784225,224,0 +170758784273,224,0 +170758784321,224,0 +170758784369,221,0 +170758784417,218,0 +170758784465,219,0 +170758784513,219,0 +170758784561,220,0 +170758784608,221,0 +170758784656,221,0 +170758784704,221,0 +170758784752,222,0 +170758784800,223,0 +170758784848,222,0 +170758784895,221,0 +170758784943,222,0 +170758784991,223,0 +170758785039,224,0 +170758785088,224,0 +170758785136,224,0 +170758785184,223,0 +170758785232,223,0 +170758785281,222,0 +170758785329,216,0 +170758785378,215,0 +170758785426,216,0 +170758785474,217,0 +170758785522,217,0 +170758785570,218,0 +170758785618,219,0 +170758785666,220,0 +170758785715,221,0 +170758785763,221,0 +170758785811,223,0 +170758785861,222,0 +170758785909,223,0 +170758785957,223,0 +170758786005,224,0 +170758786053,224,0 +170758786100,223,0 +170758786150,223,0 +170758786200,216,0 +170758786249,215,0 +170758786297,215,0 +170758786347,215,0 +170758786394,216,0 +170758786442,217,0 +170758786490,218,0 +170758786538,218,0 +170758786586,219,0 +170758786634,219,0 +170758786682,220,0 +170758786730,221,0 +170758786778,221,0 +170758786826,221,0 +170758786874,222,0 +170758786922,222,0 +170758786970,223,0 +170758787018,222,0 +170758787067,222,0 +170758787115,216,0 +170758787165,215,0 +170758787214,215,0 +170758787262,216,0 +170758787310,217,0 +170758787358,217,0 +170758787406,218,0 +170758787454,218,0 +170758787502,219,0 +170758787550,220,0 +170758787598,220,0 +170758787647,221,0 +170758787695,222,0 +170758787743,223,0 +170758787791,222,0 +170758787839,223,0 +170758787886,223,0 +170758787934,224,0 +170758787982,225,0 +170758788032,215,0 +170758788080,215,0 +170758788129,216,0 +170758788177,216,0 +170758788225,217,0 +170758788275,218,0 +170758788323,218,0 +170758788372,219,0 +170758788420,219,0 +170758788468,220,0 +170758788517,221,0 +170758788565,221,0 +170758788613,222,0 +170758788661,223,0 +170758788709,223,0 +170758788757,223,0 +170758788806,223,0 +170758788854,223,0 +170758788902,218,0 +170758788950,215,0 +170758788998,215,0 +170758789046,216,0 +170758789095,217,0 +170758789143,218,0 +170758789192,218,0 +170758789240,218,0 +170758789288,219,0 +170758789338,219,0 +170758789387,220,0 +170758789435,221,0 +170758789483,222,0 +170758789531,222,0 +170758789579,223,0 +170758789627,222,0 +170758789676,223,0 +170758789724,223,0 +170758789772,223,0 +170758789820,215,0 +170758789868,215,0 +170758789916,216,0 +170758789964,218,0 +170758790014,218,0 +170758790062,219,0 +170758790111,219,0 +170758790160,220,0 +170758790208,220,0 +170758790258,221,0 +170758790306,222,0 +170758790354,223,0 +170758790403,222,0 +170758790451,223,0 +170758790499,222,0 +170758790549,222,0 +170758790598,222,0 +170758790648,224,0 +170758790696,217,0 +170758790745,215,0 +170758790793,215,0 +170758790843,216,0 +170758790892,217,0 +170758790940,217,0 +170758790988,218,0 +170758791036,219,0 +170758791084,220,0 +170758791133,221,0 +170758791181,222,0 +170758791231,222,0 +170758791278,222,0 +170758791326,223,0 +170758791376,224,0 +170758791424,223,0 +170758791472,224,0 +170758791520,223,0 +170758791568,222,0 +170758791616,216,0 +170758791664,215,0 +170758791713,216,0 +170758791763,216,0 +170758791810,217,0 +170758791858,218,0 +170758791906,218,0 +170758791954,219,0 +170758792002,220,0 +170758792052,221,0 +170758792101,221,0 +170758792151,222,0 +170758792199,222,0 +170758792247,223,0 +170758792296,223,0 +170758792344,223,0 +170758792392,223,0 +170758792441,223,0 +170758792489,221,0 +170758792539,214,0 +170758792587,214,0 +170758792635,215,0 +170758792683,216,0 +170758792732,217,0 +170758792780,217,0 +170758792830,218,0 +170758792878,218,0 +170758792926,219,0 +170758792974,221,0 +170758793021,221,0 +170758793069,222,0 +170758793117,223,0 +170758793165,223,0 +170758793215,223,0 +170758793263,223,0 +170758793312,223,0 +170758793360,223,0 +170758793408,216,0 +170758793457,215,0 +170758793505,216,0 +170758793554,216,0 +170758793603,218,0 +170758793651,218,0 +170758793699,218,0 +170758793748,218,0 +170758793796,219,0 +170758793844,220,0 +170758793892,221,0 +170758793942,221,0 +170758793991,221,0 +170758794039,222,0 +170758794088,223,0 +170758794136,224,0 +170758794184,223,0 +170758794232,223,0 +170758794282,223,0 +170758794330,217,0 +170758794378,217,0 +170758794425,217,0 +170758794473,218,0 +170758794521,219,0 +170758794571,219,0 +170758794619,219,0 +170758794667,220,0 +170758794714,221,0 +170758794762,221,0 +170758794810,221,0 +170758794858,221,0 +170758794906,222,0 +170758794955,222,0 +170758795003,223,0 +170758795053,224,0 +170758795102,223,0 +170758795150,223,0 +170758795200,221,0 +170758795248,216,0 +170758795295,217,0 +170758795343,218,0 +170758795391,218,0 +170758795439,218,0 +170758795487,219,0 +170758795535,220,0 +170758795582,220,0 +170758795630,221,0 +170758795680,221,0 +170758795728,222,0 +170758795777,223,0 +170758795825,224,0 +170758795873,223,0 +170758795921,223,0 +170758795970,223,0 +170758796018,223,0 +170758796066,222,0 +170758796114,217,0 +170758796162,216,0 +170758796212,217,0 +170758796260,218,0 +170758796307,219,0 +170758796355,218,0 +170758796403,219,0 +170758796451,219,0 +170758796501,220,0 +170758796549,221,0 +170758796596,221,0 +170758796644,222,0 +170758796692,222,0 +170758796740,223,0 +170758796788,225,0 +170758796836,223,0 +170758796885,223,0 +170758796935,223,0 +170758796983,222,0 +170758797032,216,0 +170758797080,217,0 +170758797128,218,0 +170758797176,218,0 +170758797225,219,0 +170758797275,219,0 +170758797323,220,0 +170758797371,220,0 +170758797419,222,0 +170758797467,222,0 +170758797515,222,0 +170758797563,223,0 +170758797611,227,0 +170758797659,224,0 +170758797707,223,0 +170758797754,223,0 +170758797802,223,0 +170758797850,223,0 +170758797900,221,0 +170758797948,218,0 +170758797997,220,0 +170758798045,220,0 +170758798093,220,0 +170758798141,221,0 +170758798189,221,0 +170758798238,223,0 +170758798288,222,0 +170758798336,222,0 +170758798384,223,0 +170758798433,223,0 +170758798481,224,0 +170758798531,223,0 +170758798579,223,0 +170758798627,223,0 +170758798674,223,0 +170758798724,224,0 +170758798772,222,0 +170758798820,220,0 +170758798869,221,0 +170758798917,220,0 +170758798965,222,0 +170758799013,222,0 +170758799061,223,0 +170758799109,223,0 +170758799157,223,0 +170758799206,224,0 +170758799254,223,0 +170758799302,223,0 +170758799352,224,0 +170758799402,223,0 +170758799449,223,0 +170758799499,225,0 +170758799547,223,0 +170758799595,224,0 +170758799644,226,0 +170758799694,220,0 +170758799742,219,0 +170758799791,220,0 +170758799841,220,0 +170758799889,222,0 +170758799936,222,0 +170758799986,222,0 diff --git a/laser_value/0211-04.csv b/laser_value/0211-04.csv new file mode 100644 index 0000000..c5b046e --- /dev/null +++ b/laser_value/0211-04.csv @@ -0,0 +1,7454 @@ +timestamp,laser_value,event +170758800035,221,0 +170758800084,222,0 +170758800133,223,0 +170758800183,224,0 +170758800232,223,0 +170758800280,223,0 +170758800328,223,0 +170758800378,224,0 +170758800426,223,0 +170758800475,223,0 +170758800523,223,0 +170758800571,222,0 +170758800619,217,0 +170758800666,216,0 +170758800714,218,0 +170758800764,219,0 +170758800812,218,0 +170758800859,219,0 +170758800907,220,0 +170758800957,220,0 +170758801006,221,0 +170758801054,221,0 +170758801102,222,0 +170758801149,222,0 +170758801197,222,0 +170758801245,222,0 +170758801293,223,0 +170758801341,223,0 +170758801389,222,0 +170758801437,223,0 +170758801484,223,0 +170758801532,216,0 +170758801580,216,0 +170758801628,217,0 +170758801676,217,0 +170758801724,219,0 +170758801771,219,0 +170758801819,219,0 +170758801869,220,0 +170758801916,221,0 +170758801964,221,0 +170758802012,221,0 +170758802060,222,0 +170758802108,222,0 +170758802156,223,0 +170758802204,223,0 +170758802252,223,0 +170758802302,223,0 +170758802349,222,0 +170758802399,221,0 +170758802447,216,0 +170758802495,216,0 +170758802544,218,0 +170758802592,218,0 +170758802641,218,0 +170758802689,219,0 +170758802738,219,0 +170758802786,219,0 +170758802834,220,0 +170758802882,220,0 +170758802931,220,0 +170758802979,224,0 +170758803027,221,0 +170758803075,222,0 +170758803122,223,0 +170758803172,222,0 +170758803220,223,0 +170758803269,223,0 +170758803317,217,0 +170758803365,217,0 +170758803413,218,0 +170758803462,218,0 +170758803510,218,0 +170758803558,220,0 +170758803606,220,0 +170758803653,220,0 +170758803701,222,0 +170758803751,221,0 +170758803798,221,0 +170758803846,222,0 +170758803894,222,0 +170758803944,224,0 +170758803991,223,0 +170758804041,224,0 +170758804088,223,0 +170758804136,224,0 +170758804184,224,0 +170758804232,217,0 +170758804281,217,0 +170758804329,218,0 +170758804377,219,0 +170758804425,219,0 +170758804473,220,0 +170758804521,221,0 +170758804568,221,0 +170758804616,221,0 +170758804664,222,0 +170758804712,223,0 +170758804760,223,0 +170758804809,225,0 +170758804857,224,0 +170758804905,224,0 +170758804953,225,0 +170758805000,224,0 +170758805048,223,0 +170758805096,221,0 +170758805146,219,0 +170758805194,219,0 +170758805243,220,0 +170758805291,221,0 +170758805339,221,0 +170758805387,221,0 +170758805435,222,0 +170758805483,224,0 +170758805531,224,0 +170758805580,224,0 +170758805630,224,0 +170758805678,225,0 +170758805726,224,0 +170758805774,224,0 +170758805823,224,0 +170758805871,223,0 +170758805921,223,0 +170758805970,223,0 +170758806020,219,0 +170758806068,218,0 +170758806116,219,0 +170758806163,220,0 +170758806211,220,0 +170758806259,221,0 +170758806307,225,0 +170758806355,223,0 +170758806403,222,0 +170758806453,223,0 +170758806501,222,0 +170758806550,223,0 +170758806598,224,0 +170758806646,223,0 +170758806694,224,0 +170758806742,224,0 +170758806790,223,0 +170758806838,223,0 +170758806887,222,0 +170758806935,215,0 +170758806983,216,0 +170758807032,217,0 +170758807082,217,0 +170758807130,218,0 +170758807178,218,0 +170758807227,219,0 +170758807275,220,0 +170758807323,221,0 +170758807371,221,0 +170758807420,222,0 +170758807470,222,0 +170758807519,223,0 +170758807569,224,0 +170758807618,223,0 +170758807668,224,0 +170758807717,223,0 +170758807765,223,0 +170758807813,216,0 +170758807861,215,0 +170758807909,215,0 +170758807957,216,0 +170758808005,217,0 +170758808053,217,0 +170758808101,217,0 +170758808150,218,0 +170758808200,218,0 +170758808248,221,0 +170758808297,221,0 +170758808345,221,0 +170758808395,221,0 +170758808443,223,0 +170758808492,222,0 +170758808542,223,0 +170758808589,223,0 +170758808637,223,0 +170758808687,223,0 +170758808735,215,0 +170758808783,215,0 +170758808831,215,0 +170758808880,215,0 +170758808928,216,0 +170758808976,216,0 +170758809024,217,0 +170758809072,217,0 +170758809120,219,0 +170758809169,219,0 +170758809219,220,0 +170758809268,220,0 +170758809316,221,0 +170758809364,222,0 +170758809411,222,0 +170758809459,222,0 +170758809507,223,0 +170758809555,223,0 +170758809603,216,0 +170758809650,215,0 +170758809698,215,0 +170758809748,215,0 +170758809796,216,0 +170758809843,216,0 +170758809891,216,0 +170758809939,217,0 +170758809987,217,0 +170758810035,218,0 +170758810082,218,0 +170758810130,219,0 +170758810178,219,0 +170758810226,220,0 +170758810274,220,0 +170758810322,221,0 +170758810370,223,0 +170758810417,222,0 +170758810467,223,0 +170758810515,223,0 +170758810564,224,0 +170758810612,224,0 +170758810660,224,0 +170758810708,225,0 +170758810755,224,0 +170758810805,224,0 +170758810853,224,0 +170758810900,223,0 +170758810948,222,0 +170758810998,215,0 +170758811047,216,0 +170758811095,217,0 +170758811143,217,0 +170758811191,218,0 +170758811239,218,0 +170758811286,219,0 +170758811334,219,0 +170758811384,220,0 +170758811431,220,0 +170758811479,221,0 +170758811529,222,0 +170758811577,222,0 +170758811624,222,0 +170758811672,224,0 +170758811720,223,0 +170758811770,223,0 +170758811819,222,0 +170758811869,216,0 +170758811918,215,0 +170758811966,217,0 +170758812015,217,0 +170758812063,217,0 +170758812111,217,0 +170758812159,218,0 +170758812207,219,0 +170758812257,219,0 +170758812306,220,0 +170758812356,221,0 +170758812405,222,0 +170758812453,222,0 +170758812501,223,0 +170758812549,224,0 +170758812597,223,0 +170758812645,224,0 +170758812694,222,0 +170758812744,220,0 +170758812792,215,0 +170758812840,216,0 +170758812888,217,0 +170758812937,217,0 +170758812985,217,0 +170758813033,218,0 +170758813083,218,0 +170758813130,218,0 +170758813180,219,0 +170758813228,219,0 +170758813276,220,0 +170758813324,221,0 +170758813373,221,0 +170758813421,222,0 +170758813469,223,0 +170758813517,223,0 +170758813566,222,0 +170758813614,223,0 +170758813662,216,0 +170758813710,216,0 +170758813760,217,0 +170758813809,217,0 +170758813857,218,0 +170758813905,219,0 +170758813953,220,0 +170758814001,220,0 +170758814049,219,0 +170758814097,220,0 +170758814146,222,0 +170758814194,223,0 +170758814242,224,0 +170758814290,223,0 +170758814337,222,0 +170758814385,223,0 +170758814433,224,0 +170758814481,223,0 +170758814529,223,0 +170758814577,217,0 +170758814624,217,0 +170758814672,218,0 +170758814720,218,0 +170758814768,219,0 +170758814816,219,0 +170758814864,220,0 +170758814911,220,0 +170758814959,221,0 +170758815007,221,0 +170758815055,223,0 +170758815103,224,0 +170758815151,222,0 +170758815198,223,0 +170758815246,225,0 +170758815294,222,0 +170758815342,225,0 +170758815390,223,0 +170758815437,222,0 +170758815485,216,0 +170758815533,217,0 +170758815581,218,0 +170758815629,219,0 +170758815677,219,0 +170758815724,220,0 +170758815772,221,0 +170758815820,223,0 +170758815868,223,0 +170758815916,222,0 +170758815964,224,0 +170758816013,227,0 +170758816061,225,0 +170758816109,224,0 +170758816158,224,0 +170758816206,226,0 +170758816254,224,0 +170758816302,223,0 +170758816351,219,0 +170758816400,220,0 +170758816448,221,0 +170758816496,220,0 +170758816544,228,0 +170758816592,222,0 +170758816640,221,0 +170758816687,222,0 +170758816735,222,0 +170758816783,222,0 +170758816831,224,0 +170758816879,224,0 +170758816926,224,0 +170758816974,225,0 +170758817022,225,0 +170758817070,224,0 +170758817118,225,0 +170758817166,223,0 +170758817214,224,0 +170758817262,221,0 +170758817311,221,0 +170758817359,220,0 +170758817407,221,0 +170758817455,222,0 +170758817503,223,0 +170758817552,223,0 +170758817600,223,0 +170758817648,225,0 +170758817696,223,0 +170758817744,224,0 +170758817793,223,0 +170758817841,224,0 +170758817889,229,0 +170758817937,224,0 +170758817987,223,0 +170758818035,223,0 +170758818084,224,0 +170758818132,224,0 +170758818180,218,0 +170758818228,218,0 +170758818276,219,0 +170758818325,219,0 +170758818373,220,0 +170758818421,221,0 +170758818469,221,0 +170758818517,222,0 +170758818566,222,0 +170758818614,223,0 +170758818662,223,0 +170758818710,223,0 +170758818758,225,0 +170758818807,224,0 +170758818855,223,0 +170758818905,223,0 +170758818953,224,0 +170758819002,224,0 +170758819050,216,0 +170758819098,216,0 +170758819146,217,0 +170758819194,218,0 +170758819244,219,0 +170758819292,219,0 +170758819339,220,0 +170758819389,220,0 +170758819437,221,0 +170758819485,221,0 +170758819533,222,0 +170758819582,222,0 +170758819632,223,0 +170758819680,223,0 +170758819727,223,0 +170758819777,223,0 +170758819825,223,0 +170758819873,223,0 +170758819921,222,0 +170758819969,217,0 +170758820016,215,0 +170758820064,215,0 +170758820114,216,0 +170758820162,217,0 +170758820211,218,0 +170758820259,218,0 +170758820308,220,0 +170758820356,220,0 +170758820406,220,0 +170758820455,222,0 +170758820505,222,0 +170758820553,222,0 +170758820600,223,0 +170758820648,225,0 +170758820696,224,0 +170758820744,223,0 +170758820792,224,0 +170758820841,222,0 +170758820889,216,0 +170758820937,215,0 +170758820985,216,0 +170758821035,217,0 +170758821083,217,0 +170758821131,218,0 +170758821178,219,0 +170758821226,219,0 +170758821274,220,0 +170758821322,220,0 +170758821370,220,0 +170758821418,221,0 +170758821466,221,0 +170758821513,222,0 +170758821561,220,0 +170758821609,220,0 +170758821657,220,0 +170758821705,223,0 +170758821753,216,0 +170758821800,215,0 +170758821848,215,0 +170758821896,215,0 +170758821944,215,0 +170758821992,216,0 +170758822040,217,0 +170758822087,217,0 +170758822137,218,0 +170758822185,219,0 +170758822232,220,0 +170758822282,221,0 +170758822330,221,0 +170758822379,223,0 +170758822427,222,0 +170758822475,223,0 +170758822524,223,0 +170758822572,223,0 +170758822620,223,0 +170758822668,216,0 +170758822716,215,0 +170758822764,216,0 +170758822811,216,0 +170758822859,217,0 +170758822907,217,0 +170758822955,218,0 +170758823003,218,0 +170758823051,218,0 +170758823099,219,0 +170758823147,221,0 +170758823196,222,0 +170758823244,222,0 +170758823294,223,0 +170758823343,223,0 +170758823391,224,0 +170758823439,224,0 +170758823487,222,0 +170758823535,222,0 +170758823583,215,0 +170758823631,215,0 +170758823679,216,0 +170758823728,217,0 +170758823776,217,0 +170758823824,218,0 +170758823872,218,0 +170758823921,219,0 +170758823969,220,0 +170758824017,221,0 +170758824065,221,0 +170758824113,222,0 +170758824163,222,0 +170758824211,222,0 +170758824259,223,0 +170758824306,223,0 +170758824354,223,0 +170758824402,224,0 +170758824452,221,0 +170758824500,215,0 +170758824548,215,0 +170758824597,216,0 +170758824647,218,0 +170758824696,218,0 +170758824744,218,0 +170758824792,219,0 +170758824840,220,0 +170758824888,219,0 +170758824936,221,0 +170758824984,222,0 +170758825033,222,0 +170758825081,222,0 +170758825129,222,0 +170758825177,224,0 +170758825225,223,0 +170758825273,224,0 +170758825320,223,0 +170758825368,216,0 +170758825416,215,0 +170758825466,216,0 +170758825515,217,0 +170758825563,218,0 +170758825611,218,0 +170758825659,219,0 +170758825709,219,0 +170758825757,220,0 +170758825806,221,0 +170758825854,221,0 +170758825904,223,0 +170758825953,223,0 +170758826001,222,0 +170758826049,223,0 +170758826099,223,0 +170758826147,225,0 +170758826196,223,0 +170758826244,223,0 +170758826292,215,0 +170758826342,216,0 +170758826389,216,0 +170758826439,217,0 +170758826487,218,0 +170758826536,218,0 +170758826584,219,0 +170758826632,220,0 +170758826680,221,0 +170758826728,221,0 +170758826776,222,0 +170758826824,222,0 +170758826874,223,0 +170758826923,223,0 +170758826973,223,0 +170758827020,224,0 +170758827070,224,0 +170758827118,223,0 +170758827166,218,0 +170758827214,217,0 +170758827262,217,0 +170758827311,218,0 +170758827359,219,0 +170758827407,220,0 +170758827455,220,0 +170758827505,220,0 +170758827554,222,0 +170758827603,221,0 +170758827651,223,0 +170758827701,223,0 +170758827750,224,0 +170758827798,225,0 +170758827846,224,0 +170758827894,224,0 +170758827942,224,0 +170758827990,224,0 +170758828038,223,0 +170758828087,218,0 +170758828137,219,0 +170758828186,220,0 +170758828236,220,0 +170758828285,221,0 +170758828333,222,0 +170758828381,221,0 +170758828430,222,0 +170758828478,223,0 +170758828526,223,0 +170758828576,225,0 +170758828624,224,0 +170758828673,224,0 +170758828723,224,0 +170758828772,224,0 +170758828822,225,0 +170758828870,224,0 +170758828918,223,0 +170758828966,217,0 +170758829014,219,0 +170758829062,219,0 +170758829110,220,0 +170758829157,219,0 +170758829205,221,0 +170758829253,221,0 +170758829303,223,0 +170758829352,223,0 +170758829402,223,0 +170758829451,223,0 +170758829499,224,0 +170758829549,224,0 +170758829598,224,0 +170758829646,224,0 +170758829694,223,0 +170758829744,224,0 +170758829793,223,0 +170758829841,223,0 +170758829889,218,0 +170758829937,218,0 +170758829985,218,0 +170758830033,219,0 +170758830082,221,0 +170758830130,220,0 +170758830179,221,0 +170758830227,221,0 +170758830277,224,0 +170758830326,224,0 +170758830374,224,0 +170758830422,224,0 +170758830472,224,0 +170758830520,225,0 +170758830568,224,0 +170758830616,224,0 +170758830663,224,0 +170758830711,224,0 +170758830759,223,0 +170758830809,216,0 +170758830857,217,0 +170758830905,217,0 +170758830953,218,0 +170758831001,219,0 +170758831050,220,0 +170758831098,221,0 +170758831146,221,0 +170758831194,225,0 +170758831243,222,0 +170758831293,222,0 +170758831340,223,0 +170758831388,224,0 +170758831438,224,0 +170758831486,224,0 +170758831534,224,0 +170758831583,224,0 +170758831633,223,0 +170758831681,217,0 +170758831730,217,0 +170758831778,217,0 +170758831828,218,0 +170758831876,219,0 +170758831925,219,0 +170758831974,220,0 +170758832022,220,0 +170758832070,221,0 +170758832120,221,0 +170758832168,222,0 +170758832216,221,0 +170758832265,222,0 +170758832313,223,0 +170758832361,223,0 +170758832409,224,0 +170758832459,223,0 +170758832506,224,0 +170758832556,222,0 +170758832604,217,0 +170758832652,216,0 +170758832700,218,0 +170758832749,218,0 +170758832797,219,0 +170758832845,219,0 +170758832893,220,0 +170758832943,220,0 +170758832992,221,0 +170758833040,222,0 +170758833090,222,0 +170758833138,222,0 +170758833187,223,0 +170758833236,224,0 +170758833286,223,0 +170758833334,224,0 +170758833382,223,0 +170758833430,223,0 +170758833478,216,0 +170758833526,215,0 +170758833574,215,0 +170758833621,217,0 +170758833669,218,0 +170758833717,218,0 +170758833765,218,0 +170758833813,220,0 +170758833861,220,0 +170758833909,221,0 +170758833957,221,0 +170758834005,222,0 +170758834053,223,0 +170758834100,224,0 +170758834148,223,0 +170758834196,224,0 +170758834244,224,0 +170758834292,222,0 +170758834340,223,0 +170758834388,216,0 +170758834436,216,0 +170758834484,217,0 +170758834533,217,0 +170758834583,218,0 +170758834631,218,0 +170758834679,222,0 +170758834727,220,0 +170758834776,220,0 +170758834824,222,0 +170758834872,221,0 +170758834920,222,0 +170758834968,223,0 +170758835017,223,0 +170758835065,223,0 +170758835115,224,0 +170758835164,224,0 +170758835212,223,0 +170758835261,222,0 +170758835309,215,0 +170758835357,216,0 +170758835407,217,0 +170758835455,218,0 +170758835503,219,0 +170758835551,219,0 +170758835600,220,0 +170758835648,220,0 +170758835696,222,0 +170758835744,222,0 +170758835793,222,0 +170758835843,224,0 +170758835891,223,0 +170758835940,223,0 +170758835990,224,0 +170758836039,223,0 +170758836087,224,0 +170758836135,223,0 +170758836183,219,0 +170758836231,218,0 +170758836280,219,0 +170758836330,219,0 +170758836378,220,0 +170758836426,220,0 +170758836474,223,0 +170758836521,222,0 +170758836569,222,0 +170758836617,223,0 +170758836665,224,0 +170758836713,222,0 +170758836761,223,0 +170758836808,224,0 +170758836856,223,0 +170758836904,224,0 +170758836952,223,0 +170758837000,224,0 +170758837048,224,0 +170758837096,219,0 +170758837143,218,0 +170758837191,219,0 +170758837239,219,0 +170758837287,220,0 +170758837335,220,0 +170758837383,221,0 +170758837430,222,0 +170758837478,221,0 +170758837526,222,0 +170758837574,223,0 +170758837622,223,0 +170758837670,223,0 +170758837718,224,0 +170758837765,223,0 +170758837813,223,0 +170758837861,224,0 +170758837909,224,0 +170758837959,222,0 +170758838006,217,0 +170758838054,217,0 +170758838102,218,0 +170758838150,218,0 +170758838198,219,0 +170758838246,220,0 +170758838294,220,0 +170758838341,220,0 +170758838389,221,0 +170758838437,221,0 +170758838485,224,0 +170758838533,223,0 +170758838582,224,0 +170758838632,223,0 +170758838680,223,0 +170758838729,224,0 +170758838777,223,0 +170758838825,223,0 +170758838873,216,0 +170758838923,216,0 +170758838972,217,0 +170758839022,218,0 +170758839071,219,0 +170758839121,219,0 +170758839169,220,0 +170758839218,220,0 +170758839268,220,0 +170758839316,222,0 +170758839364,222,0 +170758839413,222,0 +170758839461,224,0 +170758839509,223,0 +170758839559,224,0 +170758839607,223,0 +170758839654,224,0 +170758839704,223,0 +170758839754,223,0 +170758839803,216,0 +170758839851,216,0 +170758839899,216,0 +170758839948,218,0 +170758839998,218,0 +170758840046,218,0 +170758840094,219,0 +170758840142,220,0 +170758840190,221,0 +170758840237,220,0 +170758840287,221,0 +170758840336,222,0 +170758840384,223,0 +170758840432,223,0 +170758840482,223,0 +170758840531,224,0 +170758840579,224,0 +170758840627,223,0 +170758840675,216,0 +170758840723,215,0 +170758840771,216,0 +170758840818,216,0 +170758840866,217,0 +170758840914,218,0 +170758840962,219,0 +170758841010,219,0 +170758841058,220,0 +170758841106,220,0 +170758841153,220,0 +170758841201,220,0 +170758841249,221,0 +170758841297,221,0 +170758841345,222,0 +170758841393,223,0 +170758841441,223,0 +170758841488,222,0 +170758841536,223,0 +170758841586,216,0 +170758841634,215,0 +170758841683,216,0 +170758841731,217,0 +170758841779,218,0 +170758841827,218,0 +170758841874,219,0 +170758841922,218,0 +170758841972,220,0 +170758842020,220,0 +170758842067,221,0 +170758842115,222,0 +170758842163,222,0 +170758842211,223,0 +170758842259,223,0 +170758842307,222,0 +170758842355,223,0 +170758842402,223,0 +170758842450,222,0 +170758842498,216,0 +170758842546,216,0 +170758842595,217,0 +170758842645,218,0 +170758842693,218,0 +170758842741,218,0 +170758842790,219,0 +170758842840,219,0 +170758842889,220,0 +170758842937,221,0 +170758842987,223,0 +170758843036,228,0 +170758843086,223,0 +170758843135,222,0 +170758843185,223,0 +170758843233,223,0 +170758843282,224,0 +170758843332,228,0 +170758843380,217,0 +170758843427,216,0 +170758843475,216,0 +170758843523,216,0 +170758843571,218,0 +170758843619,218,0 +170758843667,219,0 +170758843715,221,0 +170758843763,221,0 +170758843811,221,0 +170758843860,222,0 +170758843910,223,0 +170758843957,223,0 +170758844007,224,0 +170758844056,223,0 +170758844106,224,0 +170758844155,223,0 +170758844203,222,0 +170758844253,222,0 +170758844301,216,0 +170758844349,216,0 +170758844397,217,0 +170758844444,218,0 +170758844492,218,0 +170758844542,222,0 +170758844590,219,0 +170758844639,218,0 +170758844687,220,0 +170758844735,220,0 +170758844783,222,0 +170758844831,222,0 +170758844880,223,0 +170758844930,223,0 +170758844978,223,0 +170758845025,224,0 +170758845073,224,0 +170758845121,223,0 +170758845169,217,0 +170758845217,215,0 +170758845265,216,0 +170758845313,217,0 +170758845362,218,0 +170758845412,218,0 +170758845460,218,0 +170758845508,218,0 +170758845556,219,0 +170758845604,220,0 +170758845652,221,0 +170758845701,222,0 +170758845749,223,0 +170758845799,223,0 +170758845847,225,0 +170758845896,223,0 +170758845944,224,0 +170758845992,224,0 +170758846040,223,0 +170758846088,216,0 +170758846137,216,0 +170758846185,217,0 +170758846233,217,0 +170758846281,218,0 +170758846331,219,0 +170758846378,220,0 +170758846426,219,0 +170758846474,220,0 +170758846522,220,0 +170758846570,221,0 +170758846618,221,0 +170758846666,222,0 +170758846714,222,0 +170758846763,222,0 +170758846811,224,0 +170758846861,224,0 +170758846909,224,0 +170758846957,223,0 +170758847006,216,0 +170758847054,216,0 +170758847103,217,0 +170758847151,218,0 +170758847201,218,0 +170758847250,219,0 +170758847298,219,0 +170758847348,220,0 +170758847396,220,0 +170758847444,221,0 +170758847491,221,0 +170758847541,224,0 +170758847591,224,0 +170758847639,222,0 +170758847686,223,0 +170758847736,224,0 +170758847784,223,0 +170758847832,222,0 +170758847880,217,0 +170758847927,216,0 +170758847975,217,0 +170758848023,218,0 +170758848071,219,0 +170758848119,219,0 +170758848167,219,0 +170758848214,220,0 +170758848262,222,0 +170758848310,221,0 +170758848358,223,0 +170758848407,223,0 +170758848455,223,0 +170758848503,223,0 +170758848551,224,0 +170758848599,223,0 +170758848647,225,0 +170758848694,228,0 +170758848742,223,0 +170758848790,218,0 +170758848838,218,0 +170758848886,218,0 +170758848934,219,0 +170758848982,220,0 +170758849029,220,0 +170758849077,222,0 +170758849125,222,0 +170758849173,223,0 +170758849221,223,0 +170758849269,224,0 +170758849317,224,0 +170758849364,221,0 +170758849412,224,0 +170758849460,222,0 +170758849508,225,0 +170758849556,225,0 +170758849604,223,0 +170758849652,223,0 +170758849701,220,0 +170758849749,219,0 +170758849799,219,0 +170758849846,220,0 +170758849894,221,0 +170758849942,224,0 +170758849990,222,0 +170758850038,223,0 +170758850087,223,0 +170758850135,223,0 +170758850183,224,0 +170758850232,223,0 +170758850280,223,0 +170758850328,224,0 +170758850376,225,0 +170758850424,224,0 +170758850471,223,0 +170758850519,223,0 +170758850569,222,0 +170758850617,216,0 +170758850665,216,0 +170758850712,217,0 +170758850760,218,0 +170758850808,219,0 +170758850856,219,0 +170758850904,220,0 +170758850954,221,0 +170758851001,223,0 +170758851049,223,0 +170758851097,223,0 +170758851145,223,0 +170758851193,223,0 +170758851241,224,0 +170758851288,224,0 +170758851338,224,0 +170758851386,223,0 +170758851434,223,0 +170758851483,216,0 +170758851531,215,0 +170758851579,215,0 +170758851627,216,0 +170758851675,217,0 +170758851723,218,0 +170758851771,218,0 +170758851819,219,0 +170758851867,220,0 +170758851916,220,0 +170758851964,220,0 +170758852012,223,0 +170758852060,223,0 +170758852107,223,0 +170758852157,223,0 +170758852205,224,0 +170758852253,223,0 +170758852300,223,0 +170758852348,222,0 +170758852398,216,0 +170758852446,215,0 +170758852494,216,0 +170758852541,216,0 +170758852591,217,0 +170758852639,217,0 +170758852688,218,0 +170758852738,218,0 +170758852787,219,0 +170758852835,219,0 +170758852885,220,0 +170758852933,222,0 +170758852982,222,0 +170758853032,222,0 +170758853079,224,0 +170758853129,223,0 +170758853177,223,0 +170758853226,224,0 +170758853276,223,0 +170758853324,215,0 +170758853373,215,0 +170758853423,217,0 +170758853471,217,0 +170758853519,217,0 +170758853567,219,0 +170758853615,219,0 +170758853664,219,0 +170758853712,220,0 +170758853760,221,0 +170758853808,222,0 +170758853856,222,0 +170758853904,222,0 +170758853952,223,0 +170758854000,223,0 +170758854047,223,0 +170758854095,223,0 +170758854143,224,0 +170758854193,217,0 +170758854241,216,0 +170758854289,216,0 +170758854336,217,0 +170758854384,217,0 +170758854432,218,0 +170758854480,219,0 +170758854528,219,0 +170758854576,220,0 +170758854624,221,0 +170758854674,222,0 +170758854722,222,0 +170758854771,223,0 +170758854821,224,0 +170758854869,223,0 +170758854918,223,0 +170758854966,223,0 +170758855015,232,0 +170758855065,223,0 +170758855114,218,0 +170758855164,219,0 +170758855212,219,0 +170758855261,220,0 +170758855309,220,0 +170758855357,221,0 +170758855405,221,0 +170758855453,223,0 +170758855501,222,0 +170758855548,223,0 +170758855596,223,0 +170758855644,226,0 +170758855692,224,0 +170758855740,225,0 +170758855788,224,0 +170758855837,223,0 +170758855885,223,0 +170758855933,223,0 +170758855981,218,0 +170758856029,219,0 +170758856077,219,0 +170758856125,219,0 +170758856175,220,0 +170758856222,221,0 +170758856272,221,0 +170758856320,221,0 +170758856367,223,0 +170758856415,223,0 +170758856465,223,0 +170758856513,223,0 +170758856560,223,0 +170758856610,224,0 +170758856659,224,0 +170758856709,224,0 +170758856757,224,0 +170758856805,223,0 +170758856853,223,0 +170758856900,217,0 +170758856948,216,0 +170758856998,217,0 +170758857046,218,0 +170758857095,218,0 +170758857143,221,0 +170758857193,220,0 +170758857241,220,0 +170758857290,221,0 +170758857340,221,0 +170758857388,222,0 +170758857436,222,0 +170758857485,222,0 +170758857533,223,0 +170758857581,223,0 +170758857629,223,0 +170758857678,224,0 +170758857726,224,0 +170758857774,222,0 +170758857822,216,0 +170758857870,216,0 +170758857918,217,0 +170758857966,217,0 +170758858015,218,0 +170758858063,219,0 +170758858111,220,0 +170758858159,220,0 +170758858207,221,0 +170758858255,221,0 +170758858304,222,0 +170758858352,222,0 +170758858402,223,0 +170758858451,221,0 +170758858499,223,0 +170758858549,225,0 +170758858597,224,0 +170758858644,223,0 +170758858692,216,0 +170758858742,215,0 +170758858790,217,0 +170758858838,217,0 +170758858886,218,0 +170758858934,218,0 +170758858983,219,0 +170758859031,219,0 +170758859079,219,0 +170758859129,219,0 +170758859177,222,0 +170758859226,222,0 +170758859274,222,0 +170758859322,222,0 +170758859372,223,0 +170758859419,223,0 +170758859467,224,0 +170758859515,223,0 +170758859565,223,0 +170758859614,217,0 +170758859662,217,0 +170758859712,218,0 +170758859761,219,0 +170758859811,219,0 +170758859859,220,0 +170758859907,221,0 +170758859956,221,0 +170758860006,221,0 +170758860054,221,0 +170758860101,222,0 +170758860149,223,0 +170758860197,224,0 +170758860245,223,0 +170758860295,223,0 +170758860343,223,0 +170758860391,224,0 +170758860439,224,0 +170758860488,221,0 +170758860536,217,0 +170758860585,217,0 +170758860633,218,0 +170758860681,218,0 +170758860729,220,0 +170758860777,220,0 +170758860825,220,0 +170758860873,220,0 +170758860921,221,0 +170758860969,222,0 +170758861018,221,0 +170758861066,223,0 +170758861114,224,0 +170758861162,224,0 +170758861211,223,0 +170758861259,223,0 +170758861307,223,0 +170758861355,223,0 +170758861403,217,0 +170758861451,216,0 +170758861501,217,0 +170758861550,219,0 +170758861598,218,0 +170758861646,220,0 +170758861695,220,0 +170758861743,221,0 +170758861791,221,0 +170758861841,221,0 +170758861889,222,0 +170758861936,223,0 +170758861984,223,0 +170758862032,223,0 +170758862080,224,0 +170758862128,223,0 +170758862176,224,0 +170758862224,224,0 +170758862272,223,0 +170758862320,215,0 +170758862369,216,0 +170758862417,217,0 +170758862467,218,0 +170758862516,218,0 +170758862566,218,0 +170758862614,219,0 +170758862661,220,0 +170758862709,220,0 +170758862759,221,0 +170758862807,221,0 +170758862855,222,0 +170758862903,223,0 +170758862951,224,0 +170758862998,222,0 +170758863046,223,0 +170758863094,224,0 +170758863142,224,0 +170758863192,221,0 +170758863239,215,0 +170758863287,215,0 +170758863337,216,0 +170758863385,217,0 +170758863433,218,0 +170758863482,218,0 +170758863530,219,0 +170758863578,220,0 +170758863626,220,0 +170758863674,220,0 +170758863722,221,0 +170758863770,221,0 +170758863817,221,0 +170758863865,223,0 +170758863913,222,0 +170758863961,224,0 +170758864009,223,0 +170758864057,223,0 +170758864105,217,0 +170758864153,217,0 +170758864201,217,0 +170758864249,218,0 +170758864297,219,0 +170758864344,219,0 +170758864394,219,0 +170758864442,221,0 +170758864491,221,0 +170758864539,221,0 +170758864587,222,0 +170758864635,222,0 +170758864683,224,0 +170758864731,223,0 +170758864779,223,0 +170758864827,222,0 +170758864875,223,0 +170758864924,225,0 +170758864972,223,0 +170758865022,219,0 +170758865071,218,0 +170758865121,219,0 +170758865168,220,0 +170758865216,220,0 +170758865264,221,0 +170758865312,222,0 +170758865360,223,0 +170758865408,222,0 +170758865456,222,0 +170758865504,223,0 +170758865553,223,0 +170758865601,224,0 +170758865651,223,0 +170758865699,224,0 +170758865747,224,0 +170758865795,224,0 +170758865843,223,0 +170758865892,218,0 +170758865940,217,0 +170758865988,218,0 +170758866036,219,0 +170758866085,220,0 +170758866133,221,0 +170758866183,221,0 +170758866231,223,0 +170758866279,222,0 +170758866327,223,0 +170758866374,223,0 +170758866424,224,0 +170758866473,223,0 +170758866521,224,0 +170758866569,224,0 +170758866617,225,0 +170758866665,224,0 +170758866713,224,0 +170758866761,223,0 +170758866809,216,0 +170758866857,216,0 +170758866905,218,0 +170758866953,218,0 +170758867002,219,0 +170758867050,220,0 +170758867098,220,0 +170758867146,222,0 +170758867193,222,0 +170758867241,222,0 +170758867289,224,0 +170758867337,224,0 +170758867385,224,0 +170758867433,224,0 +170758867481,223,0 +170758867531,223,0 +170758867578,223,0 +170758867626,223,0 +170758867676,224,0 +170758867724,217,0 +170758867772,217,0 +170758867820,218,0 +170758867868,218,0 +170758867916,219,0 +170758867963,219,0 +170758868011,220,0 +170758868059,221,0 +170758868109,221,0 +170758868157,222,0 +170758868205,223,0 +170758868254,224,0 +170758868304,223,0 +170758868351,223,0 +170758868399,224,0 +170758868447,224,0 +170758868495,224,0 +170758868543,223,0 +170758868593,221,0 +170758868642,216,0 +170758868692,217,0 +170758868740,218,0 +170758868787,218,0 +170758868835,219,0 +170758868883,219,0 +170758868931,219,0 +170758868981,220,0 +170758869029,221,0 +170758869077,222,0 +170758869124,223,0 +170758869172,223,0 +170758869222,223,0 +170758869271,224,0 +170758869319,224,0 +170758869367,224,0 +170758869415,224,0 +170758869464,223,0 +170758869512,216,0 +170758869560,216,0 +170758869608,216,0 +170758869658,217,0 +170758869706,218,0 +170758869755,218,0 +170758869803,219,0 +170758869851,220,0 +170758869899,219,0 +170758869948,220,0 +170758869998,220,0 +170758870047,223,0 +170758870095,222,0 +170758870145,223,0 +170758870194,222,0 +170758870242,227,0 +170758870292,223,0 +170758870340,223,0 +170758870387,223,0 +170758870437,216,0 +170758870485,216,0 +170758870533,217,0 +170758870581,218,0 +170758870630,218,0 +170758870678,220,0 +170758870726,219,0 +170758870776,220,0 +170758870823,221,0 +170758870871,221,0 +170758870919,221,0 +170758870967,222,0 +170758871017,222,0 +170758871065,223,0 +170758871114,223,0 +170758871162,223,0 +170758871210,223,0 +170758871259,223,0 +170758871307,216,0 +170758871357,216,0 +170758871406,217,0 +170758871454,217,0 +170758871502,217,0 +170758871552,218,0 +170758871599,219,0 +170758871647,219,0 +170758871695,220,0 +170758871743,221,0 +170758871792,221,0 +170758871840,221,0 +170758871888,223,0 +170758871936,223,0 +170758871984,223,0 +170758872032,223,0 +170758872080,227,0 +170758872128,223,0 +170758872176,223,0 +170758872224,217,0 +170758872273,216,0 +170758872323,217,0 +170758872371,217,0 +170758872420,218,0 +170758872468,219,0 +170758872516,219,0 +170758872564,220,0 +170758872614,220,0 +170758872661,221,0 +170758872709,222,0 +170758872757,222,0 +170758872805,223,0 +170758872853,223,0 +170758872901,223,0 +170758872949,223,0 +170758872997,223,0 +170758873047,223,0 +170758873094,222,0 +170758873144,219,0 +170758873193,215,0 +170758873241,216,0 +170758873291,217,0 +170758873339,217,0 +170758873387,218,0 +170758873435,219,0 +170758873483,219,0 +170758873532,220,0 +170758873580,220,0 +170758873628,221,0 +170758873676,222,0 +170758873724,223,0 +170758873772,222,0 +170758873820,224,0 +170758873869,223,0 +170758873917,223,0 +170758873965,223,0 +170758874013,220,0 +170758874062,215,0 +170758874110,216,0 +170758874158,217,0 +170758874206,217,0 +170758874256,218,0 +170758874304,219,0 +170758874351,219,0 +170758874399,220,0 +170758874449,220,0 +170758874497,221,0 +170758874544,223,0 +170758874594,222,0 +170758874643,223,0 +170758874693,223,0 +170758874741,222,0 +170758874789,223,0 +170758874836,223,0 +170758874884,223,0 +170758874932,218,0 +170758874982,217,0 +170758875030,218,0 +170758875079,219,0 +170758875127,219,0 +170758875175,220,0 +170758875223,220,0 +170758875271,221,0 +170758875320,222,0 +170758875368,222,0 +170758875418,223,0 +170758875467,223,0 +170758875517,224,0 +170758875566,223,0 +170758875614,223,0 +170758875664,223,0 +170758875713,224,0 +170758875761,223,0 +170758875809,221,0 +170758875858,215,0 +170758875906,216,0 +170758875954,217,0 +170758876003,217,0 +170758876053,218,0 +170758876101,219,0 +170758876150,219,0 +170758876200,220,0 +170758876248,221,0 +170758876296,221,0 +170758876344,221,0 +170758876393,221,0 +170758876441,223,0 +170758876489,222,0 +170758876537,223,0 +170758876585,223,0 +170758876633,223,0 +170758876681,222,0 +170758876730,216,0 +170758876778,216,0 +170758876827,216,0 +170758876877,218,0 +170758876925,218,0 +170758876974,218,0 +170758877022,219,0 +170758877070,219,0 +170758877118,219,0 +170758877166,220,0 +170758877214,222,0 +170758877263,222,0 +170758877311,224,0 +170758877359,223,0 +170758877409,222,0 +170758877458,223,0 +170758877506,223,0 +170758877554,223,0 +170758877602,222,0 +170758877650,217,0 +170758877698,217,0 +170758877747,217,0 +170758877795,218,0 +170758877845,219,0 +170758877893,220,0 +170758877942,221,0 +170758877990,221,0 +170758878038,222,0 +170758878086,221,0 +170758878134,223,0 +170758878183,224,0 +170758878231,224,0 +170758878281,223,0 +170758878329,223,0 +170758878377,224,0 +170758878426,225,0 +170758878474,223,0 +170758878522,216,0 +170758878570,216,0 +170758878618,217,0 +170758878667,217,0 +170758878717,217,0 +170758878766,218,0 +170758878816,219,0 +170758878865,220,0 +170758878913,220,0 +170758878961,221,0 +170758879011,222,0 +170758879059,222,0 +170758879107,223,0 +170758879155,223,0 +170758879204,222,0 +170758879252,222,0 +170758879300,224,0 +170758879348,223,0 +170758879396,223,0 +170758879444,216,0 +170758879492,216,0 +170758879540,216,0 +170758879589,217,0 +170758879639,218,0 +170758879688,218,0 +170758879736,219,0 +170758879784,219,0 +170758879832,220,0 +170758879881,220,0 +170758879929,221,0 +170758879977,221,0 +170758880025,222,0 +170758880073,222,0 +170758880121,224,0 +170758880169,224,0 +170758880217,224,0 +170758880266,224,0 +170758880314,223,0 +170758880362,216,0 +170758880410,216,0 +170758880458,217,0 +170758880508,218,0 +170758880556,219,0 +170758880603,218,0 +170758880651,219,0 +170758880701,220,0 +170758880749,221,0 +170758880797,221,0 +170758880846,223,0 +170758880894,223,0 +170758880942,222,0 +170758880992,223,0 +170758881040,223,0 +170758881089,223,0 +170758881137,224,0 +170758881185,223,0 +170758881233,217,0 +170758881282,216,0 +170758881330,217,0 +170758881378,218,0 +170758881426,218,0 +170758881476,219,0 +170758881525,219,0 +170758881573,220,0 +170758881623,220,0 +170758881671,221,0 +170758881719,221,0 +170758881766,221,0 +170758881816,221,0 +170758881865,224,0 +170758881913,222,0 +170758881961,223,0 +170758882009,223,0 +170758882057,224,0 +170758882105,223,0 +170758882153,218,0 +170758882201,219,0 +170758882249,218,0 +170758882298,219,0 +170758882348,221,0 +170758882396,221,0 +170758882445,221,0 +170758882494,222,0 +170758882542,222,0 +170758882590,221,0 +170758882640,222,0 +170758882687,223,0 +170758882735,223,0 +170758882783,223,0 +170758882833,223,0 +170758882881,224,0 +170758882930,223,0 +170758882978,228,0 +170758883026,222,0 +170758883074,219,0 +170758883123,219,0 +170758883171,219,0 +170758883219,221,0 +170758883267,220,0 +170758883315,222,0 +170758883363,222,0 +170758883412,223,0 +170758883462,222,0 +170758883511,223,0 +170758883559,224,0 +170758883608,225,0 +170758883656,224,0 +170758883704,225,0 +170758883752,224,0 +170758883801,224,0 +170758883849,223,0 +170758883899,223,0 +170758883947,220,0 +170758883995,220,0 +170758884043,220,0 +170758884091,222,0 +170758884138,222,0 +170758884188,222,0 +170758884236,222,0 +170758884284,222,0 +170758884332,223,0 +170758884380,223,0 +170758884428,224,0 +170758884476,224,0 +170758884525,225,0 +170758884573,225,0 +170758884621,224,0 +170758884670,224,0 +170758884720,224,0 +170758884767,224,0 +170758884815,223,0 +170758884863,217,0 +170758884913,218,0 +170758884961,218,0 +170758885010,219,0 +170758885060,220,0 +170758885107,221,0 +170758885155,221,0 +170758885203,221,0 +170758885251,222,0 +170758885301,222,0 +170758885349,223,0 +170758885397,224,0 +170758885445,223,0 +170758885494,224,0 +170758885542,223,0 +170758885592,224,0 +170758885639,222,0 +170758885687,222,0 +170758885735,217,0 +170758885783,217,0 +170758885831,217,0 +170758885879,218,0 +170758885929,219,0 +170758885977,220,0 +170758886025,220,0 +170758886073,220,0 +170758886121,220,0 +170758886169,221,0 +170758886217,222,0 +170758886265,223,0 +170758886313,224,0 +170758886361,223,0 +170758886409,223,0 +170758886458,224,0 +170758886506,225,0 +170758886554,223,0 +170758886603,223,0 +170758886651,216,0 +170758886701,215,0 +170758886749,216,0 +170758886798,217,0 +170758886846,218,0 +170758886896,219,0 +170758886944,219,0 +170758886993,220,0 +170758887041,221,0 +170758887089,222,0 +170758887138,222,0 +170758887188,223,0 +170758887236,223,0 +170758887285,224,0 +170758887333,224,0 +170758887381,224,0 +170758887429,223,0 +170758887479,223,0 +170758887528,222,0 +170758887576,215,0 +170758887624,215,0 +170758887672,216,0 +170758887720,217,0 +170758887770,217,0 +170758887818,218,0 +170758887865,218,0 +170758887913,220,0 +170758887961,220,0 +170758888009,220,0 +170758888057,221,0 +170758888105,221,0 +170758888153,222,0 +170758888201,222,0 +170758888248,223,0 +170758888296,223,0 +170758888344,223,0 +170758888392,223,0 +170758888440,222,0 +170758888487,215,0 +170758888535,215,0 +170758888583,215,0 +170758888631,216,0 +170758888679,216,0 +170758888727,217,0 +170758888775,217,0 +170758888822,218,0 +170758888870,219,0 +170758888918,220,0 +170758888966,220,0 +170758889014,220,0 +170758889062,222,0 +170758889110,222,0 +170758889157,223,0 +170758889205,223,0 +170758889253,223,0 +170758889301,222,0 +170758889349,222,0 +170758889397,215,0 +170758889444,215,0 +170758889492,216,0 +170758889540,217,0 +170758889588,217,0 +170758889636,221,0 +170758889684,221,0 +170758889732,219,0 +170758889780,220,0 +170758889829,220,0 +170758889877,221,0 +170758889927,222,0 +170758889976,223,0 +170758890024,223,0 +170758890072,225,0 +170758890120,224,0 +170758890168,224,0 +170758890217,223,0 +170758890265,222,0 +170758890313,216,0 +170758890361,215,0 +170758890409,215,0 +170758890457,216,0 +170758890505,216,0 +170758890552,217,0 +170758890600,217,0 +170758890648,218,0 +170758890696,219,0 +170758890744,219,0 +170758890792,220,0 +170758890840,220,0 +170758890889,221,0 +170758890937,222,0 +170758890987,222,0 +170758891036,222,0 +170758891084,223,0 +170758891133,224,0 +170758891181,223,0 +170758891231,215,0 +170758891279,215,0 +170758891327,215,0 +170758891375,217,0 +170758891422,217,0 +170758891472,217,0 +170758891521,217,0 +170758891571,218,0 +170758891619,219,0 +170758891668,218,0 +170758891716,220,0 +170758891764,221,0 +170758891812,222,0 +170758891860,223,0 +170758891908,223,0 +170758891957,223,0 +170758892005,222,0 +170758892053,223,0 +170758892103,223,0 +170758892151,216,0 +170758892200,215,0 +170758892248,215,0 +170758892296,216,0 +170758892344,217,0 +170758892392,217,0 +170758892440,217,0 +170758892488,218,0 +170758892536,219,0 +170758892584,220,0 +170758892632,219,0 +170758892681,220,0 +170758892729,223,0 +170758892777,222,0 +170758892825,222,0 +170758892874,222,0 +170758892922,223,0 +170758892972,223,0 +170758893021,223,0 +170758893069,216,0 +170758893118,215,0 +170758893168,215,0 +170758893217,215,0 +170758893265,216,0 +170758893313,217,0 +170758893361,217,0 +170758893410,218,0 +170758893458,219,0 +170758893506,220,0 +170758893554,221,0 +170758893603,222,0 +170758893651,222,0 +170758893699,222,0 +170758893748,223,0 +170758893798,223,0 +170758893846,223,0 +170758893894,223,0 +170758893943,222,0 +170758893991,216,0 +170758894039,215,0 +170758894087,216,0 +170758894135,218,0 +170758894183,218,0 +170758894232,220,0 +170758894282,220,0 +170758894330,219,0 +170758894378,220,0 +170758894425,221,0 +170758894475,222,0 +170758894523,222,0 +170758894572,222,0 +170758894620,222,0 +170758894668,223,0 +170758894717,224,0 +170758894765,223,0 +170758894813,224,0 +170758894861,222,0 +170758894911,216,0 +170758894959,217,0 +170758895007,217,0 +170758895056,219,0 +170758895106,219,0 +170758895153,220,0 +170758895201,220,0 +170758895249,220,0 +170758895299,221,0 +170758895348,222,0 +170758895398,222,0 +170758895446,223,0 +170758895495,223,0 +170758895545,223,0 +170758895593,224,0 +170758895640,223,0 +170758895688,223,0 +170758895738,223,0 +170758895786,223,0 +170758895835,217,0 +170758895883,218,0 +170758895932,218,0 +170758895980,219,0 +170758896028,220,0 +170758896076,220,0 +170758896124,220,0 +170758896172,220,0 +170758896220,221,0 +170758896269,222,0 +170758896317,222,0 +170758896365,224,0 +170758896413,223,0 +170758896461,223,0 +170758896509,223,0 +170758896559,223,0 +170758896607,223,0 +170758896655,223,0 +170758896703,222,0 +170758896752,217,0 +170758896800,217,0 +170758896848,218,0 +170758896897,219,0 +170758896947,219,0 +170758896995,218,0 +170758897043,219,0 +170758897091,219,0 +170758897139,220,0 +170758897186,220,0 +170758897236,221,0 +170758897286,221,0 +170758897334,222,0 +170758897383,222,0 +170758897432,223,0 +170758897482,223,0 +170758897532,223,0 +170758897581,223,0 +170758897629,222,0 +170758897677,216,0 +170758897725,217,0 +170758897774,217,0 +170758897822,218,0 +170758897870,219,0 +170758897918,220,0 +170758897966,220,0 +170758898014,221,0 +170758898064,221,0 +170758898111,221,0 +170758898159,221,0 +170758898207,224,0 +170758898257,223,0 +170758898305,223,0 +170758898354,225,0 +170758898404,225,0 +170758898452,223,0 +170758898500,223,0 +170758898548,222,0 +170758898597,216,0 +170758898645,217,0 +170758898693,218,0 +170758898741,218,0 +170758898791,218,0 +170758898838,219,0 +170758898886,219,0 +170758898934,221,0 +170758898984,220,0 +170758899033,221,0 +170758899081,222,0 +170758899129,223,0 +170758899177,223,0 +170758899227,222,0 +170758899274,223,0 +170758899324,223,0 +170758899372,223,0 +170758899421,223,0 +170758899469,223,0 +170758899517,218,0 +170758899565,218,0 +170758899613,218,0 +170758899662,219,0 +170758899710,219,0 +170758899758,220,0 +170758899808,220,0 +170758899857,222,0 +170758899905,221,0 +170758899953,222,0 +170758900003,223,0 +170758900051,223,0 +170758900098,223,0 +170758900146,223,0 +170758900194,224,0 +170758900242,224,0 +170758900292,226,0 +170758900340,223,0 +170758900389,222,0 +170758900437,217,0 +170758900485,217,0 +170758900533,218,0 +170758900581,218,0 +170758900629,219,0 +170758900678,220,0 +170758900728,220,0 +170758900776,219,0 +170758900823,221,0 +170758900871,221,0 +170758900919,223,0 +170758900967,226,0 +170758901016,224,0 +170758901064,223,0 +170758901112,224,0 +170758901160,224,0 +170758901208,223,0 +170758901256,223,0 +170758901304,222,0 +170758901352,217,0 +170758901400,217,0 +170758901447,217,0 +170758901495,218,0 +170758901543,219,0 +170758901591,219,0 +170758901639,219,0 +170758901688,221,0 +170758901736,222,0 +170758901786,221,0 +170758901834,221,0 +170758901881,223,0 +170758901929,223,0 +170758901977,224,0 +170758902025,223,0 +170758902073,223,0 +170758902122,223,0 +170758902170,224,0 +170758902218,222,0 +170758902266,217,0 +170758902314,217,0 +170758902362,217,0 +170758902410,218,0 +170758902458,219,0 +170758902506,219,0 +170758902553,220,0 +170758902601,220,0 +170758902649,220,0 +170758902699,222,0 +170758902748,222,0 +170758902796,223,0 +170758902844,223,0 +170758902892,223,0 +170758902941,223,0 +170758902989,224,0 +170758903037,223,0 +170758903086,223,0 +170758903136,223,0 +170758903184,217,0 +170758903232,216,0 +170758903280,217,0 +170758903327,218,0 +170758903377,219,0 +170758903425,219,0 +170758903473,219,0 +170758903520,220,0 +170758903568,221,0 +170758903618,222,0 +170758903666,222,0 +170758903715,223,0 +170758903763,223,0 +170758903811,224,0 +170758903859,223,0 +170758903908,223,0 +170758903956,224,0 +170758904004,223,0 +170758904052,220,0 +170758904102,218,0 +170758904150,218,0 +170758904198,219,0 +170758904245,219,0 +170758904293,219,0 +170758904341,220,0 +170758904389,221,0 +170758904437,221,0 +170758904487,221,0 +170758904535,221,0 +170758904582,222,0 +170758904630,223,0 +170758904680,225,0 +170758904729,222,0 +170758904777,224,0 +170758904825,225,0 +170758904873,223,0 +170758904921,223,0 +170758904969,222,0 +170758905016,216,0 +170758905064,215,0 +170758905112,216,0 +170758905160,218,0 +170758905208,218,0 +170758905256,219,0 +170758905304,218,0 +170758905352,219,0 +170758905402,220,0 +170758905449,220,0 +170758905497,221,0 +170758905547,222,0 +170758905596,222,0 +170758905644,222,0 +170758905694,224,0 +170758905742,222,0 +170758905790,223,0 +170758905838,223,0 +170758905887,222,0 +170758905935,217,0 +170758905985,216,0 +170758906034,217,0 +170758906082,218,0 +170758906130,218,0 +170758906178,218,0 +170758906226,220,0 +170758906275,220,0 +170758906324,220,0 +170758906372,222,0 +170758906420,222,0 +170758906468,222,0 +170758906516,223,0 +170758906564,222,0 +170758906612,223,0 +170758906660,224,0 +170758906708,223,0 +170758906757,224,0 +170758906805,223,0 +170758906853,216,0 +170758906902,215,0 +170758906950,216,0 +170758906998,217,0 +170758907048,217,0 +170758907095,218,0 +170758907145,219,0 +170758907193,220,0 +170758907242,221,0 +170758907292,221,0 +170758907340,222,0 +170758907389,223,0 +170758907437,224,0 +170758907485,223,0 +170758907535,223,0 +170758907583,222,0 +170758907631,223,0 +170758907678,222,0 +170758907726,221,0 +170758907774,216,0 +170758907822,215,0 +170758907872,216,0 +170758907920,217,0 +170758907968,219,0 +170758908015,220,0 +170758908063,220,0 +170758908113,220,0 +170758908161,220,0 +170758908209,221,0 +170758908257,221,0 +170758908305,221,0 +170758908352,222,0 +170758908402,223,0 +170758908450,223,0 +170758908498,225,0 +170758908547,224,0 +170758908595,224,0 +170758908643,224,0 +170758908691,217,0 +170758908739,215,0 +170758908787,216,0 +170758908835,216,0 +170758908884,217,0 +170758908934,218,0 +170758908982,218,0 +170758909029,219,0 +170758909077,219,0 +170758909127,221,0 +170758909175,221,0 +170758909224,221,0 +170758909274,222,0 +170758909322,222,0 +170758909370,223,0 +170758909417,223,0 +170758909465,222,0 +170758909513,223,0 +170758909561,223,0 +170758909609,222,0 +170758909657,215,0 +170758909706,216,0 +170758909754,216,0 +170758909802,218,0 +170758909850,218,0 +170758909900,218,0 +170758909949,218,0 +170758909999,220,0 +170758910047,221,0 +170758910095,221,0 +170758910144,221,0 +170758910194,223,0 +170758910242,223,0 +170758910290,223,0 +170758910338,225,0 +170758910386,222,0 +170758910433,224,0 +170758910481,224,0 +170758910529,223,0 +170758910577,215,0 +170758910626,215,0 +170758910674,217,0 +170758910722,217,0 +170758910770,218,0 +170758910818,218,0 +170758910867,219,0 +170758910915,219,0 +170758910963,219,0 +170758911013,222,0 +170758911061,221,0 +170758911110,221,0 +170758911158,223,0 +170758911208,222,0 +170758911257,223,0 +170758911305,222,0 +170758911353,223,0 +170758911401,223,0 +170758911450,223,0 +170758911498,215,0 +170758911546,214,0 +170758911596,215,0 +170758911644,216,0 +170758911692,217,0 +170758911740,217,0 +170758911788,217,0 +170758911837,218,0 +170758911885,219,0 +170758911933,220,0 +170758911981,220,0 +170758912029,221,0 +170758912078,222,0 +170758912126,222,0 +170758912174,224,0 +170758912222,223,0 +170758912270,226,0 +170758912318,223,0 +170758912366,223,0 +170758912416,215,0 +170758912464,215,0 +170758912512,216,0 +170758912559,216,0 +170758912607,217,0 +170758912657,218,0 +170758912705,218,0 +170758912752,218,0 +170758912800,219,0 +170758912848,220,0 +170758912898,221,0 +170758912945,221,0 +170758912993,222,0 +170758913041,222,0 +170758913089,223,0 +170758913137,222,0 +170758913185,223,0 +170758913233,224,0 +170758913281,223,0 +170758913329,216,0 +170758913376,215,0 +170758913426,216,0 +170758913475,217,0 +170758913525,217,0 +170758913573,218,0 +170758913621,218,0 +170758913669,218,0 +170758913717,219,0 +170758913765,219,0 +170758913813,222,0 +170758913860,221,0 +170758913910,222,0 +170758913958,222,0 +170758914006,223,0 +170758914055,223,0 +170758914105,223,0 +170758914154,224,0 +170758914202,223,0 +170758914252,216,0 +170758914301,215,0 +170758914351,216,0 +170758914398,217,0 +170758914448,217,0 +170758914496,217,0 +170758914545,217,0 +170758914593,218,0 +170758914641,219,0 +170758914689,219,0 +170758914737,220,0 +170758914785,221,0 +170758914833,223,0 +170758914881,222,0 +170758914929,222,0 +170758914976,223,0 +170758915024,223,0 +170758915074,222,0 +170758915122,223,0 +170758915170,217,0 +170758915218,215,0 +170758915266,216,0 +170758915313,217,0 +170758915363,219,0 +170758915411,219,0 +170758915460,219,0 +170758915508,220,0 +170758915556,220,0 +170758915604,221,0 +170758915654,220,0 +170758915702,223,0 +170758915750,222,0 +170758915798,223,0 +170758915846,225,0 +170758915893,223,0 +170758915941,223,0 +170758915989,223,0 +170758916037,224,0 +170758916087,216,0 +170758916135,217,0 +170758916184,218,0 +170758916232,218,0 +170758916280,219,0 +170758916328,219,0 +170758916376,220,0 +170758916424,220,0 +170758916472,222,0 +170758916520,221,0 +170758916569,221,0 +170758916619,222,0 +170758916668,223,0 +170758916716,222,0 +170758916764,223,0 +170758916813,224,0 +170758916861,224,0 +170758916909,224,0 +170758916959,222,0 +170758917007,217,0 +170758917055,219,0 +170758917102,220,0 +170758917150,220,0 +170758917198,220,0 +170758917246,220,0 +170758917294,222,0 +170758917343,223,0 +170758917393,223,0 +170758917441,223,0 +170758917489,224,0 +170758917537,223,0 +170758917585,224,0 +170758917632,223,0 +170758917682,223,0 +170758917730,223,0 +170758917778,224,0 +170758917826,224,0 +170758917874,223,0 +170758917923,222,0 +170758917971,220,0 +170758918019,221,0 +170758918069,222,0 +170758918116,221,0 +170758918164,222,0 +170758918214,223,0 +170758918262,222,0 +170758918310,223,0 +170758918358,224,0 +170758918407,224,0 +170758918455,223,0 +170758918503,224,0 +170758918552,225,0 +170758918600,224,0 +170758918650,223,0 +170758918698,224,0 +170758918747,223,0 +170758918797,223,0 +170758918846,221,0 +170758918896,217,0 +170758918944,217,0 +170758918992,219,0 +170758919041,219,0 +170758919091,220,0 +170758919139,220,0 +170758919187,222,0 +170758919236,222,0 +170758919285,221,0 +170758919335,222,0 +170758919384,223,0 +170758919432,223,0 +170758919480,224,0 +170758919528,224,0 +170758919576,223,0 +170758919624,223,0 +170758919672,223,0 +170758919722,223,0 +170758919769,224,0 +170758919817,215,0 +170758919865,216,0 +170758919913,217,0 +170758919961,217,0 +170758920009,218,0 +170758920058,219,0 +170758920108,220,0 +170758920157,220,0 +170758920207,220,0 +170758920255,221,0 +170758920303,221,0 +170758920351,221,0 +170758920400,222,0 +170758920448,222,0 +170758920496,221,0 +170758920546,221,0 +170758920593,220,0 +170758920641,222,0 +170758920689,222,0 +170758920739,215,0 +170758920787,215,0 +170758920836,216,0 +170758920884,217,0 +170758920932,217,0 +170758920980,217,0 +170758921028,218,0 +170758921076,218,0 +170758921124,219,0 +170758921172,219,0 +170758921220,221,0 +170758921269,222,0 +170758921317,222,0 +170758921366,223,0 +170758921414,224,0 +170758921462,224,0 +170758921510,226,0 +170758921560,223,0 +170758921608,223,0 +170758921656,216,0 +170758921704,215,0 +170758921752,216,0 +170758921800,217,0 +170758921847,217,0 +170758921897,218,0 +170758921945,218,0 +170758921993,219,0 +170758922041,220,0 +170758922090,221,0 +170758922138,221,0 +170758922186,221,0 +170758922234,224,0 +170758922282,223,0 +170758922331,224,0 +170758922379,224,0 +170758922429,223,0 +170758922478,225,0 +170758922526,223,0 +170758922576,216,0 +170758922625,215,0 +170758922673,216,0 +170758922721,217,0 +170758922769,218,0 +170758922817,217,0 +170758922865,219,0 +170758922913,218,0 +170758922961,219,0 +170758923009,220,0 +170758923058,221,0 +170758923106,221,0 +170758923154,222,0 +170758923204,222,0 +170758923252,223,0 +170758923301,223,0 +170758923349,223,0 +170758923398,223,0 +170758923446,223,0 +170758923494,216,0 +170758923542,215,0 +170758923590,215,0 +170758923638,216,0 +170758923687,217,0 +170758923735,218,0 +170758923783,217,0 +170758923833,218,0 +170758923882,219,0 +170758923930,221,0 +170758923978,221,0 +170758924027,221,0 +170758924075,221,0 +170758924123,222,0 +170758924171,221,0 +170758924219,220,0 +170758924268,221,0 +170758924318,221,0 +170758924367,222,0 +170758924415,216,0 +170758924465,215,0 +170758924514,215,0 +170758924564,216,0 +170758924612,216,0 +170758924661,217,0 +170758924711,219,0 +170758924759,219,0 +170758924808,219,0 +170758924856,218,0 +170758924904,218,0 +170758924952,222,0 +170758925001,221,0 +170758925051,221,0 +170758925100,221,0 +170758925148,222,0 +170758925196,223,0 +170758925244,222,0 +170758925292,223,0 +170758925340,216,0 +170758925389,215,0 +170758925439,216,0 +170758925487,216,0 +170758925534,217,0 +170758925584,218,0 +170758925632,218,0 +170758925679,219,0 +170758925727,220,0 +170758925775,220,0 +170758925825,221,0 +170758925872,221,0 +170758925920,221,0 +170758925968,222,0 +170758926016,222,0 +170758926064,222,0 +170758926112,223,0 +170758926161,222,0 +170758926209,223,0 +170758926258,216,0 +170758926308,215,0 +170758926357,216,0 +170758926405,217,0 +170758926453,217,0 +170758926501,217,0 +170758926549,218,0 +170758926596,218,0 +170758926644,218,0 +170758926692,221,0 +170758926740,221,0 +170758926788,221,0 +170758926835,222,0 +170758926883,224,0 +170758926931,224,0 +170758926979,222,0 +170758927027,222,0 +170758927075,222,0 +170758927122,223,0 +170758927170,217,0 +170758927218,216,0 +170758927267,216,0 +170758927315,217,0 +170758927363,218,0 +170758927411,218,0 +170758927459,219,0 +170758927507,219,0 +170758927555,220,0 +170758927602,220,0 +170758927650,221,0 +170758927698,221,0 +170758927746,222,0 +170758927794,222,0 +170758927842,222,0 +170758927889,223,0 +170758927937,222,0 +170758927985,224,0 +170758928033,223,0 +170758928081,222,0 +170758928129,216,0 +170758928178,216,0 +170758928226,218,0 +170758928274,219,0 +170758928323,219,0 +170758928371,219,0 +170758928419,219,0 +170758928467,220,0 +170758928514,221,0 +170758928562,221,0 +170758928610,222,0 +170758928658,223,0 +170758928706,223,0 +170758928753,223,0 +170758928801,223,0 +170758928849,224,0 +170758928897,223,0 +170758928945,223,0 +170758928993,223,0 +170758929040,218,0 +170758929088,217,0 +170758929138,217,0 +170758929187,219,0 +170758929235,219,0 +170758929283,219,0 +170758929331,221,0 +170758929380,221,0 +170758929428,221,0 +170758929476,222,0 +170758929524,223,0 +170758929573,222,0 +170758929621,223,0 +170758929669,224,0 +170758929716,223,0 +170758929764,225,0 +170758929812,224,0 +170758929860,223,0 +170758929909,223,0 +170758929957,217,0 +170758930005,216,0 +170758930053,217,0 +170758930100,218,0 +170758930148,218,0 +170758930198,220,0 +170758930245,220,0 +170758930293,221,0 +170758930341,222,0 +170758930389,222,0 +170758930437,223,0 +170758930485,223,0 +170758930533,222,0 +170758930580,224,0 +170758930630,223,0 +170758930678,224,0 +170758930727,224,0 +170758930777,224,0 +170758930826,223,0 +170758930874,216,0 +170758930922,215,0 +170758930970,216,0 +170758931019,216,0 +170758931067,218,0 +170758931115,217,0 +170758931163,219,0 +170758931213,218,0 +170758931260,219,0 +170758931308,221,0 +170758931356,221,0 +170758931404,221,0 +170758931453,221,0 +170758931501,222,0 +170758931549,222,0 +170758931597,223,0 +170758931645,223,0 +170758931693,222,0 +170758931741,223,0 +170758931788,221,0 +170758931836,215,0 +170758931886,215,0 +170758931934,215,0 +170758931981,216,0 +170758932029,217,0 +170758932077,217,0 +170758932125,217,0 +170758932173,218,0 +170758932221,218,0 +170758932269,219,0 +170758932318,220,0 +170758932366,220,0 +170758932413,221,0 +170758932461,221,0 +170758932509,222,0 +170758932557,222,0 +170758932605,223,0 +170758932653,223,0 +170758932701,222,0 +170758932750,215,0 +170758932798,215,0 +170758932847,215,0 +170758932895,216,0 +170758932943,216,0 +170758932991,217,0 +170758933039,217,0 +170758933087,217,0 +170758933134,219,0 +170758933182,220,0 +170758933230,220,0 +170758933278,221,0 +170758933326,222,0 +170758933374,221,0 +170758933423,223,0 +170758933471,225,0 +170758933519,222,0 +170758933566,222,0 +170758933614,222,0 +170758933662,216,0 +170758933710,215,0 +170758933758,216,0 +170758933806,217,0 +170758933853,217,0 +170758933901,219,0 +170758933949,217,0 +170758933997,219,0 +170758934046,220,0 +170758934094,220,0 +170758934142,220,0 +170758934189,222,0 +170758934237,222,0 +170758934285,222,0 +170758934333,223,0 +170758934381,223,0 +170758934428,222,0 +170758934476,223,0 +170758934524,222,0 +170758934572,217,0 +170758934619,215,0 +170758934669,215,0 +170758934717,217,0 +170758934766,217,0 +170758934814,217,0 +170758934862,219,0 +170758934909,219,0 +170758934957,219,0 +170758935005,220,0 +170758935053,220,0 +170758935101,222,0 +170758935148,222,0 +170758935196,224,0 +170758935244,221,0 +170758935292,222,0 +170758935340,222,0 +170758935388,222,0 +170758935435,223,0 +170758935483,221,0 +170758935531,216,0 +170758935579,217,0 +170758935627,217,0 +170758935674,218,0 +170758935722,219,0 +170758935770,219,0 +170758935818,219,0 +170758935866,220,0 +170758935914,221,0 +170758935963,221,0 +170758936011,223,0 +170758936059,222,0 +170758936106,223,0 +170758936154,223,0 +170758936202,224,0 +170758936250,223,0 +170758936298,224,0 +170758936346,223,0 +170758936393,223,0 +170758936441,216,0 +170758936489,216,0 +170758936537,217,0 +170758936586,217,0 +170758936634,218,0 +170758936682,218,0 +170758936730,219,0 +170758936778,221,0 +170758936825,220,0 +170758936873,221,0 +170758936921,222,0 +170758936969,222,0 +170758937017,223,0 +170758937066,223,0 +170758937114,224,0 +170758937162,223,0 +170758937210,223,0 +170758937257,224,0 +170758937305,222,0 +170758937353,216,0 +170758937401,216,0 +170758937448,216,0 +170758937496,217,0 +170758937544,217,0 +170758937592,219,0 +170758937640,218,0 +170758937688,220,0 +170758937735,221,0 +170758937783,221,0 +170758937831,222,0 +170758937880,222,0 +170758937928,223,0 +170758937976,224,0 +170758938024,223,0 +170758938071,224,0 +170758938119,224,0 +170758938167,224,0 +170758938215,223,0 +170758938263,219,0 +170758938311,218,0 +170758938358,219,0 +170758938406,219,0 +170758938454,222,0 +170758938504,221,0 +170758938553,220,0 +170758938601,222,0 +170758938649,222,0 +170758938697,222,0 +170758938745,223,0 +170758938794,223,0 +170758938842,224,0 +170758938890,224,0 +170758938938,224,0 +170758938986,224,0 +170758939033,224,0 +170758939083,224,0 +170758939131,223,0 +170758939179,222,0 +170758939226,219,0 +170758939276,219,0 +170758939324,219,0 +170758939371,220,0 +170758939419,220,0 +170758939467,221,0 +170758939516,222,0 +170758939564,222,0 +170758939612,223,0 +170758939660,224,0 +170758939708,224,0 +170758939756,225,0 +170758939803,222,0 +170758939851,223,0 +170758939899,223,0 +170758939948,225,0 +170758939996,222,0 +170758940044,223,0 +170758940092,222,0 +170758940140,219,0 +170758940189,219,0 +170758940239,219,0 +170758940287,220,0 +170758940334,222,0 +170758940384,221,0 +170758940432,221,0 +170758940479,221,0 +170758940527,223,0 +170758940575,223,0 +170758940623,223,0 +170758940671,225,0 +170758940720,224,0 +170758940768,223,0 +170758940816,224,0 +170758940864,224,0 +170758940911,224,0 +170758940961,223,0 +170758941009,222,0 +170758941056,216,0 +170758941104,216,0 +170758941152,217,0 +170758941201,217,0 +170758941249,218,0 +170758941297,219,0 +170758941347,219,0 +170758941394,219,0 +170758941442,220,0 +170758941490,221,0 +170758941538,221,0 +170758941586,221,0 +170758941633,222,0 +170758941683,223,0 +170758941731,223,0 +170758941779,223,0 +170758941826,222,0 +170758941874,223,0 +170758941922,223,0 +170758941970,216,0 +170758942018,215,0 +170758942065,215,0 +170758942113,215,0 +170758942161,215,0 +170758942209,216,0 +170758942257,217,0 +170758942305,218,0 +170758942352,218,0 +170758942400,219,0 +170758942448,219,0 +170758942496,220,0 +170758942544,221,0 +170758942592,222,0 +170758942640,222,0 +170758942688,221,0 +170758942735,222,0 +170758942783,222,0 +170758942831,223,0 +170758942879,223,0 +170758942927,215,0 +170758942975,215,0 +170758943024,215,0 +170758943072,215,0 +170758943121,215,0 +170758943171,216,0 +170758943219,216,0 +170758943266,217,0 +170758943316,218,0 +170758943364,219,0 +170758943412,219,0 +170758943459,221,0 +170758943507,221,0 +170758943555,222,0 +170758943603,223,0 +170758943652,223,0 +170758943700,223,0 +170758943749,223,0 +170758943797,221,0 +170758943847,215,0 +170758943894,215,0 +170758943942,215,0 +170758943990,215,0 +170758944038,216,0 +170758944086,217,0 +170758944134,217,0 +170758944181,218,0 +170758944229,219,0 +170758944277,219,0 +170758944325,220,0 +170758944373,220,0 +170758944421,221,0 +170758944468,221,0 +170758944516,223,0 +170758944564,223,0 +170758944612,223,0 +170758944660,223,0 +170758944708,223,0 +170758944757,215,0 +170758944805,215,0 +170758944852,215,0 +170758944900,216,0 +170758944950,217,0 +170758944998,217,0 +170758945046,218,0 +170758945093,219,0 +170758945141,218,0 +170758945189,219,0 +170758945237,221,0 +170758945285,222,0 +170758945333,221,0 +170758945381,222,0 +170758945428,222,0 +170758945476,223,0 +170758945524,223,0 +170758945572,222,0 +170758945620,223,0 +170758945668,217,0 +170758945715,215,0 +170758945763,216,0 +170758945811,217,0 +170758945859,217,0 +170758945907,218,0 +170758945955,218,0 +170758946002,218,0 +170758946050,219,0 +170758946098,220,0 +170758946146,220,0 +170758946195,221,0 +170758946243,222,0 +170758946291,222,0 +170758946339,222,0 +170758946387,223,0 +170758946434,224,0 +170758946482,223,0 +170758946530,223,0 +170758946578,221,0 +170758946626,215,0 +170758946674,215,0 +170758946721,216,0 +170758946769,217,0 +170758946817,217,0 +170758946867,218,0 +170758946915,218,0 +170758946962,219,0 +170758947010,220,0 +170758947058,220,0 +170758947106,220,0 +170758947154,221,0 +170758947201,221,0 +170758947249,223,0 +170758947297,224,0 +170758947345,224,0 +170758947394,223,0 +170758947442,223,0 +170758947490,223,0 +170758947538,215,0 +170758947586,215,0 +170758947634,216,0 +170758947681,216,0 +170758947729,217,0 +170758947777,217,0 +170758947825,219,0 +170758947873,219,0 +170758947921,219,0 +170758947969,220,0 +170758948016,220,0 +170758948064,221,0 +170758948112,222,0 +170758948161,223,0 +170758948209,225,0 +170758948257,223,0 +170758948307,224,0 +170758948354,223,0 +170758948402,222,0 +170758948450,216,0 +170758948498,215,0 +170758948546,216,0 +170758948593,216,0 +170758948641,217,0 +170758948689,218,0 +170758948737,218,0 +170758948785,219,0 +170758948833,219,0 +170758948882,220,0 +170758948930,221,0 +170758948978,221,0 +170758949025,222,0 +170758949073,223,0 +170758949121,223,0 +170758949169,224,0 +170758949217,223,0 +170758949265,223,0 +170758949313,222,0 +170758949360,216,0 +170758949408,215,0 +170758949456,216,0 +170758949504,217,0 +170758949552,218,0 +170758949600,218,0 +170758949647,218,0 +170758949697,219,0 +170758949745,219,0 +170758949793,220,0 +170758949840,221,0 +170758949890,221,0 +170758949938,223,0 +170758949987,223,0 +170758950035,222,0 +170758950083,223,0 +170758950132,223,0 +170758950180,223,0 +170758950228,223,0 +170758950276,220,0 +170758950324,216,0 +170758950372,217,0 +170758950419,217,0 +170758950467,218,0 +170758950515,218,0 +170758950564,218,0 +170758950612,220,0 +170758950660,219,0 +170758950710,220,0 +170758950758,221,0 +170758950807,222,0 +170758950855,222,0 +170758950905,221,0 +170758950953,228,0 +170758951002,224,0 +170758951052,223,0 +170758951101,225,0 +170758951149,224,0 +170758951198,217,0 +170758951246,216,0 +170758951294,217,0 +170758951342,217,0 +170758951390,218,0 +170758951437,218,0 +170758951485,219,0 +170758951533,220,0 +170758951581,222,0 +170758951629,221,0 +170758951678,222,0 +170758951728,222,0 +170758951776,223,0 +170758951824,224,0 +170758951872,223,0 +170758951921,223,0 +170758951971,223,0 +170758952019,223,0 +170758952067,223,0 +170758952115,222,0 +170758952164,216,0 +170758952214,216,0 +170758952262,217,0 +170758952310,218,0 +170758952358,218,0 +170758952407,218,0 +170758952455,219,0 +170758952503,221,0 +170758952551,222,0 +170758952599,222,0 +170758952648,222,0 +170758952696,223,0 +170758952745,223,0 +170758952795,223,0 +170758952843,223,0 +170758952891,225,0 +170758952938,223,0 +170758952986,223,0 +170758953034,222,0 +170758953082,215,0 +170758953130,215,0 +170758953178,216,0 +170758953227,217,0 +170758953275,217,0 +170758953323,218,0 +170758953371,218,0 +170758953419,220,0 +170758953469,219,0 +170758953516,221,0 +170758953564,223,0 +170758953614,223,0 +170758953663,223,0 +170758953711,223,0 +170758953761,223,0 +170758953810,225,0 +170758953858,223,0 +170758953906,223,0 +170758953954,223,0 +170758954003,216,0 +170758954051,215,0 +170758954099,216,0 +170758954149,217,0 +170758954197,218,0 +170758954244,218,0 +170758954292,218,0 +170758954340,218,0 +170758954390,219,0 +170758954438,219,0 +170758954487,221,0 +170758954535,221,0 +170758954583,222,0 +170758954633,222,0 +170758954681,224,0 +170758954731,224,0 +170758954780,223,0 +170758954828,223,0 +170758954876,222,0 +170758954926,216,0 +170758954974,216,0 +170758955023,217,0 +170758955071,218,0 +170758955119,219,0 +170758955168,218,0 +170758955216,219,0 +170758955264,220,0 +170758955312,221,0 +170758955360,221,0 +170758955408,221,0 +170758955455,222,0 +170758955503,223,0 +170758955551,223,0 +170758955601,224,0 +170758955649,224,0 +170758955698,224,0 +170758955746,223,0 +170758955794,223,0 +170758955842,216,0 +170758955889,217,0 +170758955937,217,0 +170758955985,218,0 +170758956033,219,0 +170758956081,219,0 +170758956129,220,0 +170758956176,221,0 +170758956224,221,0 +170758956272,221,0 +170758956320,222,0 +170758956368,222,0 +170758956415,222,0 +170758956463,223,0 +170758956511,223,0 +170758956559,223,0 +170758956607,223,0 +170758956655,239,0 +170758956704,228,0 +170758956752,218,0 +170758956801,216,0 +170758956851,216,0 +170758956898,217,0 +170758956946,218,0 +170758956994,218,0 +170758957042,220,0 +170758957091,220,0 +170758957139,220,0 +170758957189,221,0 +170758957237,222,0 +170758957284,222,0 +170758957332,223,0 +170758957380,224,0 +170758957430,223,0 +170758957477,223,0 +170758957525,224,0 +170758957573,223,0 +170758957623,222,0 +170758957670,219,0 +170758957718,216,0 +170758957766,216,0 +170758957814,217,0 +170758957862,219,0 +170758957910,219,0 +170758957957,220,0 +170758958005,219,0 +170758958053,220,0 +170758958101,220,0 +170758958149,220,0 +170758958197,222,0 +170758958244,222,0 +170758958292,223,0 +170758958340,228,0 +170758958388,228,0 +170758958436,225,0 +170758958484,225,0 +170758958532,223,0 +170758958580,222,0 +170758958628,215,0 +170758958675,215,0 +170758958723,216,0 +170758958771,216,0 +170758958821,218,0 +170758958869,220,0 +170758958916,219,0 +170758958964,220,0 +170758959012,220,0 +170758959060,220,0 +170758959110,221,0 +170758959158,222,0 +170758959207,223,0 +170758959255,224,0 +170758959303,222,0 +170758959351,222,0 +170758959399,223,0 +170758959447,223,0 +170758959495,222,0 +170758959544,216,0 +170758959594,215,0 +170758959643,215,0 +170758959693,215,0 +170758959741,216,0 +170758959789,216,0 +170758959838,217,0 +170758959886,217,0 +170758959934,218,0 +170758959982,219,0 +170758960029,220,0 +170758960077,221,0 +170758960125,221,0 +170758960173,221,0 +170758960223,222,0 +170758960271,222,0 +170758960319,223,0 +170758960367,223,0 +170758960416,221,0 +170758960466,216,0 +170758960515,215,0 +170758960563,215,0 +170758960612,216,0 +170758960660,215,0 +170758960708,217,0 +170758960757,218,0 +170758960805,219,0 +170758960855,220,0 +170758960904,220,0 +170758960952,221,0 +170758961000,221,0 +170758961048,222,0 +170758961096,223,0 +170758961144,223,0 +170758961192,222,0 +170758961240,223,0 +170758961287,224,0 +170758961335,223,0 +170758961383,217,0 +170758961432,216,0 +170758961480,216,0 +170758961528,218,0 +170758961576,218,0 +170758961625,218,0 +170758961675,219,0 +170758961723,220,0 +170758961771,220,0 +170758961819,221,0 +170758961866,221,0 +170758961914,221,0 +170758961964,221,0 +170758962012,221,0 +170758962060,221,0 +170758962108,222,0 +170758962156,222,0 +170758962204,222,0 +170758962252,223,0 +170758962301,223,0 +170758962351,223,0 +170758962398,225,0 +170758962446,224,0 +170758962494,223,0 +170758962542,224,0 +170758962590,224,0 +170758962638,226,0 +170758962686,223,0 +170758962734,223,0 +170758962782,220,0 +170758962831,220,0 +170758962879,220,0 +170758962927,220,0 +170758962975,221,0 +170758963023,223,0 +170758963071,222,0 +170758963121,222,0 +170758963170,223,0 +170758963218,223,0 +170758963266,224,0 +170758963315,223,0 +170758963363,224,0 +170758963411,224,0 +170758963459,224,0 +170758963508,223,0 +170758963556,224,0 +170758963606,223,0 +170758963654,223,0 +170758963702,217,0 +170758963751,217,0 +170758963801,218,0 +170758963848,218,0 +170758963896,220,0 +170758963946,219,0 +170758963994,221,0 +170758964042,221,0 +170758964089,222,0 +170758964139,221,0 +170758964188,222,0 +170758964238,222,0 +170758964286,223,0 +170758964335,223,0 +170758964383,224,0 +170758964431,223,0 +170758964479,224,0 +170758964527,223,0 +170758964576,223,0 +170758964626,215,0 +170758964674,215,0 +170758964722,215,0 +170758964770,216,0 +170758964819,216,0 +170758964869,217,0 +170758964918,216,0 +170758964968,219,0 +170758965016,219,0 +170758965064,219,0 +170758965112,221,0 +170758965160,221,0 +170758965209,223,0 +170758965257,223,0 +170758965306,224,0 +170758965354,223,0 +170758965402,224,0 +170758965452,223,0 +170758965500,223,0 +170758965548,216,0 +170758965596,216,0 +170758965644,216,0 +170758965693,217,0 +170758965741,218,0 +170758965789,219,0 +170758965837,219,0 +170758965886,220,0 +170758965934,219,0 +170758965982,220,0 +170758966030,221,0 +170758966080,223,0 +170758966129,222,0 +170758966179,224,0 +170758966228,223,0 +170758966278,223,0 +170758966327,223,0 +170758966375,223,0 +170758966423,223,0 +170758966471,216,0 +170758966521,215,0 +170758966569,216,0 +170758966616,217,0 +170758966666,217,0 +170758966714,218,0 +170758966762,218,0 +170758966810,219,0 +170758966857,219,0 +170758966905,220,0 +170758966953,220,0 +170758967001,220,0 +170758967051,222,0 +170758967100,222,0 +170758967148,222,0 +170758967198,222,0 +170758967247,222,0 +170758967296,223,0 +170758967346,223,0 +170758967394,216,0 +170758967443,214,0 +170758967493,215,0 +170758967541,216,0 +170758967589,217,0 +170758967637,217,0 +170758967686,217,0 +170758967734,218,0 +170758967782,219,0 +170758967830,219,0 +170758967878,221,0 +170758967926,221,0 +170758967975,222,0 +170758968023,222,0 +170758968073,224,0 +170758968122,223,0 +170758968172,222,0 +170758968220,222,0 +170758968268,222,0 +170758968316,216,0 +170758968364,215,0 +170758968413,215,0 +170758968462,215,0 +170758968512,216,0 +170758968561,216,0 +170758968609,217,0 +170758968657,217,0 +170758968705,218,0 +170758968753,219,0 +170758968801,219,0 +170758968849,220,0 +170758968899,219,0 +170758968946,221,0 +170758968996,221,0 +170758969044,219,0 +170758969092,220,0 +170758969140,220,0 +170758969189,223,0 +170758969237,216,0 +170758969285,214,0 +170758969335,215,0 +170758969383,215,0 +170758969431,215,0 +170758969479,216,0 +170758969527,216,0 +170758969576,217,0 +170758969624,218,0 +170758969672,218,0 +170758969720,220,0 +170758969769,220,0 +170758969817,221,0 +170758969865,220,0 +170758969914,221,0 +170758969962,221,0 +170758970010,221,0 +170758970058,220,0 +170758970106,222,0 +170758970156,223,0 +170758970205,215,0 +170758970255,215,0 +170758970302,215,0 +170758970352,215,0 +170758970400,216,0 +170758970448,216,0 +170758970497,217,0 +170758970545,217,0 +170758970595,219,0 +170758970643,219,0 +170758970690,220,0 +170758970738,220,0 +170758970786,221,0 +170758970834,221,0 +170758970884,221,0 +170758970932,222,0 +170758970980,223,0 +170758971028,223,0 +170758971076,222,0 +170758971123,215,0 +170758971173,215,0 +170758971222,215,0 +170758971270,215,0 +170758971320,216,0 +170758971369,216,0 +170758971417,217,0 +170758971467,217,0 +170758971516,219,0 +170758971564,219,0 +170758971614,219,0 +170758971662,221,0 +170758971711,221,0 +170758971759,222,0 +170758971807,224,0 +170758971855,223,0 +170758971905,223,0 +170758971953,222,0 +170758972000,220,0 +170758972048,216,0 +170758972096,216,0 +170758972144,217,0 +170758972192,217,0 +170758972240,217,0 +170758972288,218,0 +170758972336,218,0 +170758972384,218,0 +170758972432,219,0 +170758972481,220,0 +170758972529,221,0 +170758972577,221,0 +170758972626,222,0 +170758972674,222,0 +170758972722,222,0 +170758972770,223,0 +170758972818,223,0 +170758972866,224,0 +170758972916,223,0 +170758972964,218,0 +170758973011,218,0 +170758973059,218,0 +170758973109,218,0 +170758973157,219,0 +170758973205,220,0 +170758973252,220,0 +170758973300,221,0 +170758973348,222,0 +170758973396,221,0 +170758973444,222,0 +170758973492,222,0 +170758973539,223,0 +170758973587,223,0 +170758973635,222,0 +170758973683,223,0 +170758973731,223,0 +170758973779,223,0 +170758973826,223,0 +170758973874,217,0 +170758973922,219,0 +170758973970,219,0 +170758974018,220,0 +170758974066,219,0 +170758974115,220,0 +170758974163,222,0 +170758974212,222,0 +170758974260,222,0 +170758974308,223,0 +170758974358,223,0 +170758974405,224,0 +170758974455,223,0 +170758974504,224,0 +170758974552,224,0 +170758974600,223,0 +170758974648,224,0 +170758974696,223,0 +170758974744,223,0 +170758974793,218,0 +170758974843,219,0 +170758974891,219,0 +170758974938,219,0 +170758974986,221,0 +170758975034,222,0 +170758975082,221,0 +170758975130,222,0 +170758975178,223,0 +170758975227,223,0 +170758975275,223,0 +170758975325,223,0 +170758975374,223,0 +170758975424,223,0 +170758975473,225,0 +170758975521,224,0 +170758975569,223,0 +170758975617,223,0 +170758975665,223,0 +170758975713,221,0 +170758975761,217,0 +170758975809,218,0 +170758975857,218,0 +170758975904,218,0 +170758975952,219,0 +170758976000,219,0 +170758976050,221,0 +170758976098,220,0 +170758976146,221,0 +170758976193,221,0 +170758976243,223,0 +170758976292,223,0 +170758976340,223,0 +170758976388,223,0 +170758976438,223,0 +170758976487,223,0 +170758976535,223,0 +170758976585,223,0 +170758976633,224,0 +170758976681,217,0 +170758976730,216,0 +170758976779,218,0 +170758976827,217,0 +170758976877,218,0 +170758976925,218,0 +170758976973,219,0 +170758977021,219,0 +170758977069,221,0 +170758977117,221,0 +170758977165,221,0 +170758977214,222,0 +170758977262,223,0 +170758977310,223,0 +170758977358,223,0 +170758977406,223,0 +170758977454,224,0 +170758977503,223,0 +170758977551,223,0 +170758977599,216,0 +170758977648,215,0 +170758977696,216,0 +170758977744,217,0 +170758977794,217,0 +170758977842,218,0 +170758977890,217,0 +170758977938,219,0 +170758977985,220,0 +170758978033,220,0 +170758978083,221,0 +170758978131,222,0 +170758978178,222,0 +170758978226,224,0 +170758978274,223,0 +170758978322,222,0 +170758978370,224,0 +170758978418,223,0 +170758978466,223,0 +170758978514,216,0 +170758978561,215,0 +170758978609,216,0 +170758978657,216,0 +170758978705,218,0 +170758978754,218,0 +170758978802,218,0 +170758978850,219,0 +170758978898,220,0 +170758978946,220,0 +170758978993,221,0 +170758979041,220,0 +170758979089,222,0 +170758979137,222,0 +170758979185,222,0 +170758979233,222,0 +170758979281,222,0 +170758979328,222,0 +170758979376,223,0 +170758979424,220,0 +170758979472,215,0 +170758979520,215,0 +170758979568,215,0 +170758979616,216,0 +170758979663,217,0 +170758979711,217,0 +170758979759,218,0 +170758979807,218,0 +170758979856,219,0 +170758979904,220,0 +170758979952,221,0 +170758980000,221,0 +170758980048,222,0 +170758980095,224,0 +170758980143,223,0 +170758980191,222,0 +170758980239,223,0 +170758980287,223,0 +170758980334,223,0 +170758980382,216,0 +170758980431,215,0 +170758980479,215,0 +170758980527,215,0 +170758980577,216,0 +170758980626,216,0 +170758980674,217,0 +170758980724,218,0 +170758980773,219,0 +170758980823,219,0 +170758980870,220,0 +170758980918,222,0 +170758980968,223,0 +170758981016,222,0 +170758981064,222,0 +170758981111,224,0 +170758981159,224,0 +170758981207,223,0 +170758981255,223,0 +170758981303,216,0 +170758981351,215,0 +170758981400,215,0 +170758981450,216,0 +170758981497,217,0 +170758981545,217,0 +170758981595,217,0 +170758981643,218,0 +170758981691,219,0 +170758981739,219,0 +170758981788,220,0 +170758981838,222,0 +170758981885,222,0 +170758981933,223,0 +170758981981,223,0 +170758982029,223,0 +170758982077,224,0 +170758982125,223,0 +170758982173,223,0 +170758982221,216,0 +170758982269,215,0 +170758982317,216,0 +170758982366,217,0 +170758982414,217,0 +170758982462,218,0 +170758982510,218,0 +170758982559,218,0 +170758982607,219,0 +170758982655,220,0 +170758982703,220,0 +170758982751,221,0 +170758982800,221,0 +170758982850,222,0 +170758982898,222,0 +170758982946,223,0 +170758982994,222,0 +170758983042,223,0 +170758983090,223,0 +170758983138,222,0 +170758983185,215,0 +170758983235,216,0 +170758983283,216,0 +170758983330,217,0 +170758983378,218,0 +170758983428,218,0 +170758983476,220,0 +170758983524,220,0 +170758983572,220,0 +170758983620,221,0 +170758983669,222,0 +170758983719,223,0 +170758983767,223,0 +170758983815,223,0 +170758983863,224,0 +170758983912,223,0 +170758983960,224,0 +170758984008,224,0 +170758984056,223,0 +170758984105,215,0 +170758984153,215,0 +170758984203,215,0 +170758984252,217,0 +170758984301,218,0 +170758984349,218,0 +170758984397,218,0 +170758984445,218,0 +170758984493,218,0 +170758984542,221,0 +170758984590,221,0 +170758984640,221,0 +170758984688,221,0 +170758984736,222,0 +170758984784,222,0 +170758984833,223,0 +170758984883,223,0 +170758984932,222,0 +170758984982,223,0 +170758985030,215,0 +170758985079,216,0 +170758985127,216,0 +170758985177,218,0 +170758985225,217,0 +170758985273,219,0 +170758985321,219,0 +170758985370,219,0 +170758985418,221,0 +170758985466,221,0 +170758985516,223,0 +170758985564,222,0 +170758985613,222,0 +170758985662,223,0 +170758985710,224,0 +170758985758,224,0 +170758985806,223,0 +170758985856,224,0 +170758985904,223,0 +170758985952,215,0 +170758986000,216,0 +170758986048,216,0 +170758986096,217,0 +170758986144,218,0 +170758986193,217,0 +170758986242,218,0 +170758986290,218,0 +170758986338,219,0 +170758986386,220,0 +170758986436,220,0 +170758986485,221,0 +170758986535,221,0 +170758986582,222,0 +170758986630,223,0 +170758986678,222,0 +170758986726,223,0 +170758986776,222,0 +170758986825,218,0 +170758986875,216,0 +170758986923,215,0 +170758986971,216,0 +170758987020,217,0 +170758987068,217,0 +170758987116,218,0 +170758987164,219,0 +170758987213,218,0 +170758987261,219,0 +170758987311,219,0 +170758987359,219,0 +170758987406,220,0 +170758987454,221,0 +170758987502,221,0 +170758987552,222,0 +170758987600,222,0 +170758987649,222,0 +170758987698,223,0 +170758987748,223,0 +170758987796,216,0 +170758987845,215,0 +170758987895,216,0 +170758987943,217,0 +170758987990,217,0 +170758988038,217,0 +170758988088,218,0 +170758988136,219,0 +170758988184,219,0 +170758988231,221,0 +170758988279,221,0 +170758988327,223,0 +170758988377,223,0 +170758988426,222,0 +170758988474,223,0 +170758988522,223,0 +170758988571,223,0 +170758988619,224,0 +170758988667,223,0 +170758988716,216,0 +170758988764,216,0 +170758988814,218,0 +170758988862,219,0 +170758988910,219,0 +170758988958,220,0 +170758989006,220,0 +170758989054,221,0 +170758989103,221,0 +170758989151,221,0 +170758989199,222,0 +170758989247,224,0 +170758989295,224,0 +170758989342,222,0 +170758989390,225,0 +170758989438,224,0 +170758989486,224,0 +170758989534,224,0 +170758989582,223,0 +170758989631,222,0 +170758989679,216,0 +170758989727,217,0 +170758989775,218,0 +170758989823,218,0 +170758989871,218,0 +170758989919,219,0 +170758989967,220,0 +170758990014,221,0 +170758990062,221,0 +170758990110,222,0 +170758990158,222,0 +170758990206,223,0 +170758990254,223,0 +170758990302,223,0 +170758990350,223,0 +170758990398,223,0 +170758990445,224,0 +170758990493,223,0 +170758990543,223,0 +170758990591,216,0 +170758990639,216,0 +170758990688,217,0 +170758990738,217,0 +170758990786,218,0 +170758990834,218,0 +170758990883,220,0 +170758990931,220,0 +170758990979,220,0 +170758991027,220,0 +170758991076,222,0 +170758991126,222,0 +170758991173,223,0 +170758991221,224,0 +170758991269,223,0 +170758991317,224,0 +170758991365,224,0 +170758991415,223,0 +170758991463,223,0 +170758991512,216,0 +170758991560,215,0 +170758991610,216,0 +170758991658,217,0 +170758991706,218,0 +170758991754,218,0 +170758991802,218,0 +170758991850,219,0 +170758991899,220,0 +170758991947,220,0 +170758991997,221,0 +170758992046,221,0 +170758992094,222,0 +170758992143,223,0 +170758992193,223,0 +170758992241,223,0 +170758992289,223,0 +170758992336,223,0 +170758992384,222,0 +170758992432,216,0 +170758992480,215,0 +170758992528,216,0 +170758992576,217,0 +170758992624,218,0 +170758992672,218,0 +170758992721,219,0 +170758992769,219,0 +170758992818,220,0 +170758992866,220,0 +170758992914,220,0 +170758992962,222,0 +170758993010,223,0 +170758993058,222,0 +170758993106,225,0 +170758993156,223,0 +170758993205,223,0 +170758993253,224,0 +170758993301,223,0 +170758993349,221,0 +170758993397,215,0 +170758993446,216,0 +170758993494,217,0 +170758993542,218,0 +170758993590,218,0 +170758993638,218,0 +170758993686,219,0 +170758993734,219,0 +170758993783,219,0 +170758993833,221,0 +170758993881,222,0 +170758993930,223,0 +170758993978,222,0 +170758994026,223,0 +170758994074,224,0 +170758994122,223,0 +170758994170,224,0 +170758994218,224,0 +170758994265,223,0 +170758994313,218,0 +170758994361,218,0 +170758994409,218,0 +170758994457,218,0 +170758994507,220,0 +170758994554,220,0 +170758994604,220,0 +170758994652,220,0 +170758994701,220,0 +170758994749,222,0 +170758994797,220,0 +170758994846,220,0 +170758994894,221,0 +170758994942,223,0 +170758994990,223,0 +170758995038,223,0 +170758995086,222,0 +170758995134,225,0 +170758995182,224,0 +170758995230,223,0 +170758995278,217,0 +170758995326,216,0 +170758995373,217,0 +170758995423,219,0 +170758995472,219,0 +170758995520,220,0 +170758995568,219,0 +170758995618,220,0 +170758995666,220,0 +170758995714,221,0 +170758995761,221,0 +170758995809,222,0 +170758995857,223,0 +170758995905,224,0 +170758995953,224,0 +170758996003,224,0 +170758996051,224,0 +170758996100,224,0 +170758996148,224,0 +170758996196,224,0 +170758996245,219,0 +170758996295,219,0 +170758996344,219,0 +170758996392,220,0 +170758996440,221,0 +170758996490,221,0 +170758996537,222,0 +170758996587,222,0 +170758996635,222,0 +170758996684,222,0 +170758996732,223,0 +170758996782,223,0 +170758996831,223,0 +170758996879,224,0 +170758996929,224,0 +170758996978,225,0 +170758997026,223,0 +170758997075,223,0 +170758997123,225,0 +170758997171,223,0 +170758997219,218,0 +170758997269,217,0 +170758997318,218,0 +170758997368,218,0 +170758997417,220,0 +170758997465,220,0 +170758997515,220,0 +170758997564,221,0 +170758997612,221,0 +170758997662,222,0 +170758997710,223,0 +170758997759,223,0 +170758997807,223,0 +170758997855,223,0 +170758997903,223,0 +170758997951,224,0 +170758998000,224,0 +170758998048,225,0 +170758998096,224,0 +170758998144,224,0 +170758998192,216,0 +170758998242,216,0 +170758998291,217,0 +170758998339,218,0 +170758998389,218,0 +170758998438,220,0 +170758998486,219,0 +170758998536,219,0 +170758998584,220,0 +170758998631,221,0 +170758998679,217,0 +170758998729,217,0 +170758998778,221,0 +170758998826,222,0 +170758998874,223,0 +170758998924,223,0 +170758998973,223,0 +170758999023,223,0 +170758999072,222,0 +170758999122,219,0 +170758999170,222,0 +170758999218,216,0 +170758999267,216,0 +170758999315,217,0 +170758999363,217,0 +170758999411,217,0 +170758999460,218,0 +170758999508,218,0 +170758999556,219,0 +170758999604,220,0 +170758999654,222,0 +170758999703,222,0 +170758999751,221,0 +170758999799,222,0 +170758999847,222,0 +170758999895,222,0 +170758999943,222,0 +170758999992,225,0 +170759000040,222,0 +170759000090,223,0 +170759000138,217,0 +170759000185,216,0 +170759000233,216,0 +170759000283,216,0 +170759000333,218,0 +170759000381,218,0 +170759000428,218,0 +170759000476,219,0 +170759000524,220,0 +170759000572,220,0 +170759000620,220,0 +170759000668,221,0 +170759000716,222,0 +170759000764,222,0 +170759000814,222,0 +170759000861,223,0 +170759000909,224,0 +170759000957,224,0 +170759001007,223,0 +170759001055,224,0 +170759001103,222,0 +170759001151,215,0 +170759001200,216,0 +170759001250,218,0 +170759001298,217,0 +170759001346,217,0 +170759001395,218,0 +170759001445,218,0 +170759001493,220,0 +170759001541,219,0 +170759001588,220,0 +170759001636,221,0 +170759001684,221,0 +170759001732,221,0 +170759001780,221,0 +170759001830,221,0 +170759001879,222,0 +170759001927,222,0 +170759001977,222,0 +170759002025,223,0 +170759002073,221,0 +170759002120,215,0 +170759002168,215,0 +170759002216,216,0 +170759002264,216,0 +170759002314,216,0 +170759002362,217,0 +170759002409,217,0 +170759002459,217,0 +170759002507,218,0 +170759002555,219,0 +170759002603,219,0 +170759002651,220,0 +170759002699,221,0 +170759002747,222,0 +170759002795,222,0 +170759002843,224,0 +170759002892,224,0 +170759002942,224,0 +170759002990,224,0 +170759003039,223,0 +170759003087,216,0 +170759003135,214,0 +170759003183,216,0 +170759003231,216,0 +170759003280,217,0 +170759003330,217,0 +170759003378,218,0 +170759003427,218,0 +170759003475,219,0 +170759003523,219,0 +170759003571,220,0 +170759003621,220,0 +170759003669,221,0 +170759003717,222,0 +170759003766,222,0 +170759003814,222,0 +170759003862,223,0 +170759003910,225,0 +170759003958,223,0 +170759004007,223,0 +170759004057,216,0 +170759004106,215,0 +170759004154,215,0 +170759004202,216,0 +170759004252,216,0 +170759004301,216,0 +170759004349,217,0 +170759004399,218,0 +170759004447,218,0 +170759004495,219,0 +170759004544,220,0 +170759004592,220,0 +170759004642,221,0 +170759004690,222,0 +170759004738,222,0 +170759004787,223,0 +170759004837,223,0 +170759004885,223,0 +170759004933,223,0 +170759004982,227,0 +170759005030,216,0 +170759005078,215,0 +170759005128,216,0 +170759005176,217,0 +170759005224,217,0 +170759005273,218,0 +170759005321,219,0 +170759005369,220,0 +170759005417,221,0 +170759005466,221,0 +170759005514,222,0 +170759005562,222,0 +170759005610,223,0 +170759005658,224,0 +170759005706,223,0 +170759005754,223,0 +170759005802,223,0 +170759005850,223,0 +170759005898,224,0 +170759005946,223,0 +170759005995,223,0 +170759006043,216,0 +170759006091,216,0 +170759006139,217,0 +170759006187,218,0 +170759006235,219,0 +170759006283,219,0 +170759006331,220,0 +170759006379,221,0 +170759006427,221,0 +170759006476,222,0 +170759006526,223,0 +170759006575,222,0 +170759006623,223,0 +170759006673,226,0 +170759006722,223,0 +170759006770,224,0 +170759006818,223,0 +170759006868,223,0 +170759006917,224,0 +170759006965,222,0 +170759007013,216,0 +170759007062,215,0 +170759007110,215,0 +170759007158,216,0 +170759007208,216,0 +170759007257,217,0 +170759007307,218,0 +170759007356,218,0 +170759007404,219,0 +170759007452,220,0 +170759007500,220,0 +170759007550,220,0 +170759007597,221,0 +170759007647,221,0 +170759007695,222,0 +170759007744,223,0 +170759007792,223,0 +170759007842,223,0 +170759007890,222,0 +170759007938,223,0 +170759007986,223,0 +170759008035,216,0 +170759008083,214,0 +170759008132,215,0 +170759008180,215,0 +170759008228,215,0 +170759008278,216,0 +170759008326,217,0 +170759008374,218,0 +170759008422,218,0 +170759008471,219,0 +170759008519,220,0 +170759008569,220,0 +170759008616,221,0 +170759008664,221,0 +170759008712,222,0 +170759008760,222,0 +170759008810,223,0 +170759008859,224,0 +170759008907,223,0 +170759008955,222,0 +170759009003,219,0 +170759009051,214,0 +170759009099,215,0 +170759009147,215,0 +170759009195,215,0 +170759009243,215,0 +170759009290,215,0 +170759009338,216,0 +170759009386,216,0 +170759009434,216,0 +170759009482,217,0 +170759009530,219,0 +170759009578,219,0 +170759009627,219,0 +170759009675,220,0 +170759009723,221,0 +170759009773,221,0 +170759009822,221,0 +170759009870,222,0 +170759009918,222,0 +170759009965,222,0 +170759010013,216,0 +170759010061,215,0 +170759010111,215,0 +170759010160,215,0 +170759010208,216,0 +170759010256,215,0 +170759010304,216,0 +170759010353,216,0 +170759010403,217,0 +170759010451,218,0 +170759010498,220,0 +170759010546,220,0 +170759010594,221,0 +170759010642,220,0 +170759010690,222,0 +170759010737,222,0 +170759010785,222,0 +170759010833,223,0 +170759010881,223,0 +170759010929,223,0 +170759010976,224,0 +170759011024,216,0 +170759011072,215,0 +170759011120,216,0 +170759011170,216,0 +170759011218,217,0 +170759011267,218,0 +170759011315,218,0 +170759011363,218,0 +170759011411,218,0 +170759011461,218,0 +170759011510,220,0 +170759011560,220,0 +170759011608,220,0 +170759011656,221,0 +170759011703,221,0 +170759011751,221,0 +170759011801,222,0 +170759011849,222,0 +170759011897,223,0 +170759011944,223,0 +170759011992,223,0 +170759012042,215,0 +170759012091,215,0 +170759012139,216,0 +170759012187,216,0 +170759012237,217,0 +170759012286,217,0 +170759012334,218,0 +170759012382,218,0 +170759012432,219,0 +170759012481,219,0 +170759012529,219,0 +170759012579,219,0 +170759012628,222,0 +170759012676,222,0 +170759012724,222,0 +170759012772,223,0 +170759012820,223,0 +170759012868,223,0 +170759012917,223,0 +170759012965,223,0 +170759013013,216,0 +170759013062,215,0 +170759013110,216,0 +170759013158,216,0 +170759013208,217,0 +170759013256,217,0 +170759013304,217,0 +170759013352,218,0 +170759013401,218,0 +170759013451,218,0 +170759013500,219,0 +170759013548,220,0 +170759013596,220,0 +170759013644,221,0 +170759013692,221,0 +170759013740,221,0 +170759013788,226,0 +170759013836,223,0 +170759013884,224,0 +170759013932,225,0 +170759013981,223,0 +170759014029,216,0 +170759014079,215,0 +170759014128,216,0 +170759014176,216,0 +170759014224,219,0 +170759014272,217,0 +170759014320,218,0 +170759014369,218,0 +170759014417,218,0 +170759014465,219,0 +170759014513,220,0 +170759014561,220,0 +170759014609,222,0 +170759014657,222,0 +170759014705,222,0 +170759014753,223,0 +170759014802,224,0 +170759014852,224,0 +170759014899,224,0 +170759014947,223,0 +170759014995,222,0 +170759015043,216,0 +170759015091,215,0 +170759015139,215,0 +170759015187,215,0 +170759015235,216,0 +170759015283,217,0 +170759015331,219,0 +170759015380,218,0 +170759015428,218,0 +170759015476,219,0 +170759015524,219,0 +170759015572,220,0 +170759015620,222,0 +170759015667,221,0 +170759015715,222,0 +170759015763,223,0 +170759015813,222,0 +170759015862,222,0 +170759015912,222,0 +170759015960,223,0 +170759016007,222,0 +170759016055,215,0 +170759016105,215,0 +170759016152,215,0 +170759016202,215,0 +170759016251,216,0 +170759016301,216,0 +170759016350,218,0 +170759016398,218,0 +170759016446,218,0 +170759016494,219,0 +170759016542,220,0 +170759016591,220,0 +170759016639,220,0 +170759016689,222,0 +170759016737,221,0 +170759016785,221,0 +170759016834,222,0 +170759016884,221,0 +170759016932,222,0 +170759016980,224,0 +170759017027,216,0 +170759017077,214,0 +170759017125,215,0 +170759017173,215,0 +170759017221,215,0 +170759017270,215,0 +170759017318,216,0 +170759017366,216,0 +170759017416,216,0 +170759017464,216,0 +170759017512,217,0 +170759017559,218,0 +170759017607,220,0 +170759017657,220,0 +170759017705,224,0 +170759017754,221,0 +170759017802,222,0 +170759017850,221,0 +170759017900,222,0 +170759017948,224,0 +170759017997,223,0 +170759018045,216,0 +170759018093,215,0 +170759018141,215,0 +170759018189,215,0 +170759018237,216,0 +170759018286,216,0 +170759018334,216,0 +170759018382,216,0 +170759018430,217,0 +170759018479,218,0 +170759018527,219,0 +170759018575,219,0 +170759018623,220,0 +170759018673,222,0 +170759018722,221,0 +170759018770,222,0 +170759018818,221,0 +170759018866,221,0 +170759018914,221,0 +170759018962,222,0 +170759019011,218,0 +170759019059,215,0 +170759019107,214,0 +170759019155,214,0 +170759019203,215,0 +170759019251,215,0 +170759019299,215,0 +170759019347,215,0 +170759019395,215,0 +170759019442,216,0 +170759019490,216,0 +170759019538,217,0 +170759019586,218,0 +170759019634,219,0 +170759019681,219,0 +170759019729,220,0 +170759019777,219,0 +170759019825,218,0 +170759019873,218,0 +170759019920,218,0 +170759019968,223,0 +170759020016,218,0 +170759020064,214,0 +170759020112,214,0 +170759020160,214,0 +170759020207,214,0 +170759020255,214,0 +170759020305,215,0 +170759020354,215,0 +170759020404,215,0 +170759020453,215,0 +170759020503,216,0 +170759020552,216,0 +170759020601,215,0 +170759020649,216,0 +170759020697,217,0 +170759020745,218,0 +170759020793,219,0 +170759020841,220,0 +170759020889,222,0 +170759020937,222,0 +170759020985,223,0 +170759021035,216,0 +170759021083,214,0 +170759021131,214,0 +170759021180,214,0 +170759021230,214,0 +170759021277,214,0 +170759021327,215,0 +170759021375,215,0 +170759021423,215,0 +170759021472,215,0 +170759021520,216,0 +170759021568,216,0 +170759021616,217,0 +170759021664,217,0 +170759021712,218,0 +170759021760,219,0 +170759021809,219,0 +170759021859,220,0 +170759021907,220,0 +170759021954,222,0 +170759022002,223,0 +170759022050,217,0 +170759022098,215,0 +170759022146,215,0 +170759022194,215,0 +170759022242,216,0 +170759022290,216,0 +170759022338,216,0 +170759022386,217,0 +170759022434,217,0 +170759022482,218,0 +170759022530,218,0 +170759022579,220,0 +170759022627,221,0 +170759022675,221,0 +170759022723,221,0 +170759022770,222,0 +170759022818,222,0 +170759022866,222,0 +170759022914,224,0 +170759022962,223,0 +170759023010,223,0 +170759023057,215,0 +170759023105,215,0 +170759023153,215,0 +170759023201,215,0 +170759023249,216,0 +170759023296,216,0 +170759023344,216,0 +170759023394,216,0 +170759023442,217,0 +170759023489,218,0 +170759023537,218,0 +170759023587,219,0 +170759023635,221,0 +170759023682,221,0 +170759023730,221,0 +170759023778,222,0 +170759023828,222,0 +170759023875,223,0 +170759023923,223,0 +170759023971,223,0 +170759024019,219,0 +170759024067,215,0 +170759024114,215,0 +170759024162,216,0 +170759024210,216,0 +170759024258,216,0 +170759024307,217,0 +170759024355,217,0 +170759024403,218,0 +170759024451,218,0 +170759024499,219,0 +170759024547,219,0 +170759024594,221,0 +170759024642,221,0 +170759024690,222,0 +170759024738,222,0 +170759024786,223,0 +170759024834,222,0 +170759024882,224,0 +170759024929,223,0 +170759024977,221,0 +170759025025,216,0 +170759025073,215,0 +170759025121,215,0 +170759025169,216,0 +170759025216,218,0 +170759025264,217,0 +170759025312,218,0 +170759025360,218,0 +170759025408,219,0 +170759025455,220,0 +170759025503,220,0 +170759025551,221,0 +170759025599,221,0 +170759025647,222,0 +170759025695,223,0 +170759025742,224,0 +170759025792,222,0 +170759025840,223,0 +170759025887,223,0 +170759025937,221,0 +170759025985,222,0 +170759026032,216,0 +170759026080,214,0 +170759026128,214,0 +170759026176,214,0 +170759026224,215,0 +170759026272,215,0 +170759026320,216,0 +170759026367,217,0 +170759026415,217,0 +170759026463,217,0 +170759026512,218,0 +170759026560,219,0 +170759026610,220,0 +170759026658,220,0 +170759026707,221,0 +170759026755,221,0 +170759026803,222,0 +170759026851,221,0 +170759026900,222,0 +170759026950,222,0 +170759026998,223,0 +170759027046,216,0 +170759027094,214,0 +170759027142,214,0 +170759027191,214,0 +170759027239,215,0 +170759027289,215,0 +170759027337,215,0 +170759027386,215,0 +170759027436,215,0 +170759027485,216,0 +170759027533,216,0 +170759027581,217,0 +170759027629,218,0 +170759027677,218,0 +170759027726,219,0 +170759027774,220,0 +170759027822,220,0 +170759027870,221,0 +170759027918,221,0 +170759027966,222,0 +170759028014,222,0 +170759028063,215,0 +170759028113,214,0 +170759028160,214,0 +170759028208,214,0 +170759028256,215,0 +170759028304,215,0 +170759028352,215,0 +170759028400,215,0 +170759028448,217,0 +170759028496,217,0 +170759028543,218,0 +170759028591,218,0 +170759028641,220,0 +170759028688,221,0 +170759028736,222,0 +170759028784,222,0 +170759028832,221,0 +170759028880,222,0 +170759028928,223,0 +170759028976,223,0 +170759029023,221,0 +170759029071,215,0 +170759029119,215,0 +170759029167,215,0 +170759029215,215,0 +170759029264,215,0 +170759029312,215,0 +170759029360,215,0 +170759029408,216,0 +170759029455,216,0 +170759029503,217,0 +170759029553,218,0 +170759029601,219,0 +170759029650,220,0 +170759029698,222,0 +170759029746,221,0 +170759029794,221,0 +170759029844,222,0 +170759029892,222,0 +170759029939,226,0 +170759029987,223,0 +170759030035,216,0 +170759030083,215,0 +170759030131,215,0 +170759030180,215,0 +170759030228,215,0 +170759030277,215,0 +170759030325,215,0 +170759030375,216,0 +170759030423,216,0 +170759030472,216,0 +170759030522,218,0 +170759030570,219,0 +170759030618,220,0 +170759030665,221,0 +170759030715,221,0 +170759030763,221,0 +170759030811,222,0 +170759030859,222,0 +170759030907,225,0 +170759030954,222,0 +170759031002,222,0 +170759031050,216,0 +170759031098,215,0 +170759031145,215,0 +170759031195,215,0 +170759031243,215,0 +170759031291,215,0 +170759031339,216,0 +170759031386,216,0 +170759031434,216,0 +170759031482,217,0 +170759031530,218,0 +170759031578,219,0 +170759031626,220,0 +170759031675,221,0 +170759031723,221,0 +170759031771,221,0 +170759031819,222,0 +170759031867,223,0 +170759031914,223,0 +170759031962,222,0 +170759032010,221,0 +170759032058,216,0 +170759032106,215,0 +170759032155,215,0 +170759032203,215,0 +170759032251,216,0 +170759032299,216,0 +170759032347,217,0 +170759032394,218,0 +170759032442,219,0 +170759032490,219,0 +170759032538,220,0 +170759032586,220,0 +170759032634,220,0 +170759032682,222,0 +170759032729,221,0 +170759032777,221,0 +170759032825,223,0 +170759032873,222,0 +170759032921,222,0 +170759032969,223,0 +170759033016,222,0 +170759033064,216,0 +170759033112,215,0 +170759033160,216,0 +170759033207,217,0 +170759033255,217,0 +170759033303,218,0 +170759033352,218,0 +170759033400,219,0 +170759033448,219,0 +170759033496,220,0 +170759033545,220,0 +170759033593,221,0 +170759033641,222,0 +170759033689,222,0 +170759033738,221,0 +170759033786,222,0 +170759033835,222,0 +170759033883,223,0 +170759033931,223,0 +170759033979,223,0 +170759034027,222,0 +170759034074,215,0 +170759034122,216,0 +170759034170,216,0 +170759034218,218,0 +170759034266,217,0 +170759034313,218,0 +170759034361,219,0 +170759034409,220,0 +170759034457,220,0 +170759034505,220,0 +170759034553,221,0 +170759034602,221,0 +170759034650,223,0 +170759034698,222,0 +170759034746,223,0 +170759034794,224,0 +170759034841,223,0 +170759034891,223,0 +170759034939,224,0 +170759034988,223,0 +170759035036,221,0 +170759035084,215,0 +170759035132,215,0 +170759035179,216,0 +170759035227,216,0 +170759035275,217,0 +170759035323,218,0 +170759035371,218,0 +170759035418,218,0 +170759035466,218,0 +170759035516,219,0 +170759035563,220,0 +170759035611,220,0 +170759035659,221,0 +170759035707,221,0 +170759035755,222,0 +170759035804,222,0 +170759035852,223,0 +170759035900,222,0 +170759035948,222,0 +170759035995,223,0 +170759036043,217,0 +170759036091,215,0 +170759036139,215,0 +170759036187,215,0 +170759036234,215,0 +170759036282,216,0 +170759036330,216,0 +170759036379,216,0 +170759036427,217,0 +170759036475,217,0 +170759036523,218,0 +170759036571,218,0 +170759036618,219,0 +170759036666,220,0 +170759036714,220,0 +170759036762,221,0 +170759036810,221,0 +170759036857,221,0 +170759036905,222,0 +170759036953,222,0 +170759037001,223,0 +170759037049,216,0 +170759037097,214,0 +170759037145,214,0 +170759037192,214,0 +170759037240,214,0 +170759037288,215,0 +170759037336,215,0 +170759037384,215,0 +170759037431,216,0 +170759037479,216,0 +170759037527,216,0 +170759037575,217,0 +170759037623,218,0 +170759037671,219,0 +170759037719,220,0 +170759037766,221,0 +170759037814,221,0 +170759037862,220,0 +170759037910,219,0 +170759037958,221,0 +170759038006,222,0 +170759038054,216,0 +170759038102,215,0 +170759038151,215,0 +170759038199,215,0 +170759038247,215,0 +170759038294,216,0 +170759038344,215,0 +170759038392,216,0 +170759038440,216,0 +170759038487,217,0 +170759038535,217,0 +170759038583,219,0 +170759038631,219,0 +170759038679,221,0 +170759038726,220,0 +170759038774,222,0 +170759038822,221,0 +170759038870,222,0 +170759038919,222,0 +170759038967,223,0 +170759039015,223,0 +170759039063,215,0 +170759039110,214,0 +170759039158,214,0 +170759039206,214,0 +170759039254,215,0 +170759039302,215,0 +170759039350,215,0 +170759039399,215,0 +170759039447,216,0 +170759039495,216,0 +170759039543,216,0 +170759039590,217,0 +170759039640,218,0 +170759039688,218,0 +170759039735,218,0 +170759039783,219,0 +170759039831,221,0 +170759039879,220,0 +170759039928,221,0 +170759039976,222,0 +170759040024,222,0 +170759040074,215,0 +170759040122,215,0 +170759040171,214,0 +170759040221,215,0 +170759040269,215,0 +170759040316,215,0 +170759040366,215,0 +170759040415,216,0 +170759040465,215,0 +170759040513,216,0 +170759040561,217,0 +170759040609,218,0 +170759040657,219,0 +170759040705,219,0 +170759040754,219,0 +170759040802,220,0 +170759040852,220,0 +170759040901,221,0 +170759040949,221,0 +170759040997,223,0 +170759041046,216,0 +170759041094,214,0 +170759041144,214,0 +170759041192,214,0 +170759041240,214,0 +170759041289,215,0 +170759041337,215,0 +170759041385,215,0 +170759041433,215,0 +170759041481,215,0 +170759041531,216,0 +170759041579,217,0 +170759041627,217,0 +170759041675,218,0 +170759041724,219,0 +170759041772,219,0 +170759041821,219,0 +170759041869,221,0 +170759041917,222,0 +170759041965,223,0 +170759042013,225,0 +170759042063,216,0 +170759042111,214,0 +170759042159,214,0 +170759042208,215,0 +170759042256,215,0 +170759042304,215,0 +170759042354,216,0 +170759042402,217,0 +170759042450,217,0 +170759042498,221,0 +170759042547,219,0 +170759042595,220,0 +170759042643,220,0 +170759042691,220,0 +170759042739,222,0 +170759042786,221,0 +170759042836,222,0 +170759042885,223,0 +170759042935,223,0 +170759042984,223,0 +170759043034,223,0 +170759043083,215,0 +170759043131,214,0 +170759043179,214,0 +170759043227,215,0 +170759043275,215,0 +170759043325,215,0 +170759043373,215,0 +170759043421,216,0 +170759043468,216,0 +170759043516,216,0 +170759043564,217,0 +170759043612,219,0 +170759043660,219,0 +170759043708,220,0 +170759043756,220,0 +170759043804,221,0 +170759043852,220,0 +170759043900,220,0 +170759043948,220,0 +170759043997,223,0 +170759044045,216,0 +170759044093,214,0 +170759044141,214,0 +170759044191,214,0 +170759044238,215,0 +170759044288,215,0 +170759044336,215,0 +170759044386,215,0 +170759044434,216,0 +170759044482,216,0 +170759044529,217,0 +170759044579,217,0 +170759044629,218,0 +170759044676,220,0 +170759044724,220,0 +170759044772,220,0 +170759044820,221,0 +170759044868,221,0 +170759044918,221,0 +170759044967,223,0 +170759045015,223,0 +170759045063,216,0 +170759045113,214,0 +170759045160,215,0 +170759045210,215,0 +170759045258,215,0 +170759045306,215,0 +170759045355,215,0 +170759045403,216,0 +170759045451,216,0 +170759045499,216,0 +170759045547,217,0 +170759045595,217,0 +170759045644,219,0 +170759045694,219,0 +170759045741,220,0 +170759045789,220,0 +170759045839,221,0 +170759045887,221,0 +170759045934,221,0 +170759045982,222,0 +170759046030,223,0 +170759046078,215,0 +170759046126,214,0 +170759046174,214,0 +170759046223,215,0 +170759046271,215,0 +170759046319,215,0 +170759046368,215,0 +170759046416,216,0 +170759046464,216,0 +170759046512,216,0 +170759046560,217,0 +170759046607,218,0 +170759046655,218,0 +170759046703,219,0 +170759046751,221,0 +170759046799,220,0 +170759046847,221,0 +170759046895,222,0 +170759046942,221,0 +170759046990,223,0 +170759047038,223,0 +170759047086,215,0 +170759047133,215,0 +170759047181,215,0 +170759047229,215,0 +170759047279,216,0 +170759047328,216,0 +170759047376,217,0 +170759047424,217,0 +170759047472,217,0 +170759047522,218,0 +170759047570,220,0 +170759047617,220,0 +170759047665,221,0 +170759047715,222,0 +170759047763,222,0 +170759047812,222,0 +170759047860,222,0 +170759047910,223,0 +170759047958,222,0 +170759048006,223,0 +170759048055,216,0 +170759048103,214,0 +170759048153,215,0 +170759048201,215,0 +170759048250,215,0 +170759048298,215,0 +170759048346,215,0 +170759048394,216,0 +170759048442,216,0 +170759048492,217,0 +170759048539,217,0 +170759048587,217,0 +170759048635,218,0 +170759048683,219,0 +170759048731,220,0 +170759048779,220,0 +170759048827,219,0 +170759048875,219,0 +170759048923,220,0 +170759048971,221,0 +170759049020,223,0 +170759049068,216,0 +170759049116,215,0 +170759049166,216,0 +170759049213,215,0 +170759049261,215,0 +170759049311,215,0 +170759049359,215,0 +170759049407,215,0 +170759049454,216,0 +170759049502,216,0 +170759049550,216,0 +170759049598,217,0 +170759049648,217,0 +170759049697,218,0 +170759049747,219,0 +170759049795,218,0 +170759049844,218,0 +170759049892,218,0 +170759049940,218,0 +170759049988,222,0 +170759050036,223,0 +170759050084,215,0 +170759050132,215,0 +170759050180,215,0 +170759050228,215,0 +170759050275,215,0 +170759050323,215,0 +170759050371,216,0 +170759050419,216,0 +170759050467,217,0 +170759050515,217,0 +170759050564,217,0 +170759050612,218,0 +170759050660,219,0 +170759050707,219,0 +170759050755,220,0 +170759050803,221,0 +170759050851,221,0 +170759050900,221,0 +170759050948,222,0 +170759050996,223,0 +170759051044,221,0 +170759051092,215,0 +170759051140,216,0 +170759051188,217,0 +170759051236,217,0 +170759051285,217,0 +170759051333,219,0 +170759051381,219,0 +170759051431,219,0 +170759051479,220,0 +170759051527,221,0 +170759051575,221,0 +170759051624,221,0 +170759051672,221,0 +170759051722,222,0 +170759051769,224,0 +170759051817,223,0 +170759051865,222,0 +170759051913,223,0 +170759051963,222,0 +170759052011,223,0 +170759052058,216,0 +170759052106,215,0 +170759052154,216,0 +170759052202,216,0 +170759052250,217,0 +170759052298,218,0 +170759052346,217,0 +170759052394,218,0 +170759052442,219,0 +170759052490,219,0 +170759052538,220,0 +170759052586,221,0 +170759052634,222,0 +170759052683,222,0 +170759052731,222,0 +170759052779,223,0 +170759052827,223,0 +170759052876,223,0 +170759052926,224,0 +170759052975,223,0 +170759053023,222,0 +170759053071,216,0 +170759053119,215,0 +170759053167,215,0 +170759053215,216,0 +170759053263,217,0 +170759053311,217,0 +170759053359,217,0 +170759053407,218,0 +170759053455,218,0 +170759053503,219,0 +170759053550,220,0 +170759053598,220,0 +170759053646,221,0 +170759053694,222,0 +170759053742,222,0 +170759053792,222,0 +170759053840,224,0 +170759053889,223,0 +170759053939,223,0 +170759053987,223,0 +170759054035,223,0 +170759054083,215,0 +170759054132,215,0 +170759054180,215,0 +170759054229,215,0 +170759054277,215,0 +170759054325,217,0 +170759054373,217,0 +170759054421,218,0 +170759054469,219,0 +170759054519,219,0 +170759054569,220,0 +170759054617,220,0 +170759054665,221,0 +170759054713,221,0 +170759054762,222,0 +170759054810,222,0 +170759054858,221,0 +170759054906,220,0 +170759054954,220,0 +170759055003,222,0 +170759055051,217,0 +170759055099,214,0 +170759055147,214,0 +170759055195,215,0 +170759055243,215,0 +170759055293,216,0 +170759055342,216,0 +170759055391,216,0 +170759055439,216,0 +170759055487,217,0 +170759055535,217,0 +170759055585,219,0 +170759055633,220,0 +170759055681,219,0 +170759055729,219,0 +170759055778,221,0 +170759055826,220,0 +170759055874,220,0 +170759055924,220,0 +170759055973,222,0 +170759056021,222,0 +170759056069,216,0 +170759056117,215,0 +170759056165,215,0 +170759056214,215,0 +170759056262,215,0 +170759056310,215,0 +170759056358,215,0 +170759056406,216,0 +170759056454,216,0 +170759056504,217,0 +170759056553,218,0 +170759056601,218,0 +170759056650,219,0 +170759056700,220,0 +170759056748,220,0 +170759056797,221,0 +170759056845,222,0 +170759056893,222,0 +170759056941,222,0 +170759056989,222,0 +170759057038,223,0 +170759057086,216,0 +170759057134,214,0 +170759057182,215,0 +170759057229,215,0 +170759057277,215,0 +170759057325,216,0 +170759057373,216,0 +170759057421,217,0 +170759057468,218,0 +170759057516,218,0 +170759057564,219,0 +170759057612,220,0 +170759057660,220,0 +170759057708,222,0 +170759057755,221,0 +170759057803,222,0 +170759057853,222,0 +170759057901,222,0 +170759057949,222,0 +170759057996,223,0 +170759058044,223,0 +170759058092,216,0 +170759058140,215,0 +170759058188,215,0 +170759058236,216,0 +170759058283,217,0 +170759058331,217,0 +170759058379,218,0 +170759058427,218,0 +170759058475,219,0 +170759058523,220,0 +170759058570,220,0 +170759058618,221,0 +170759058666,222,0 +170759058714,222,0 +170759058761,222,0 +170759058809,223,0 +170759058857,224,0 +170759058905,223,0 +170759058953,223,0 +170759059001,224,0 +170759059049,220,0 +170759059097,215,0 +170759059145,215,0 +170759059193,215,0 +170759059241,216,0 +170759059289,217,0 +170759059336,218,0 +170759059384,220,0 +170759059434,219,0 +170759059482,220,0 +170759059530,220,0 +170759059578,220,0 +170759059627,221,0 +170759059675,223,0 +170759059723,222,0 +170759059771,222,0 +170759059818,223,0 +170759059868,222,0 +170759059916,223,0 +170759059965,222,0 +170759060013,222,0 +170759060061,216,0 +170759060111,214,0 +170759060158,215,0 +170759060206,215,0 +170759060256,215,0 +170759060305,215,0 +170759060355,215,0 +170759060403,216,0 +170759060451,216,0 +170759060500,216,0 +170759060548,217,0 +170759060596,218,0 +170759060644,219,0 +170759060692,219,0 +170759060741,220,0 +170759060789,220,0 +170759060837,221,0 +170759060886,222,0 +170759060934,222,0 +170759060982,222,0 +170759061030,223,0 +170759061078,216,0 +170759061128,215,0 +170759061177,215,0 +170759061225,215,0 +170759061275,215,0 +170759061323,215,0 +170759061371,215,0 +170759061418,215,0 +170759061466,216,0 +170759061516,216,0 +170759061564,216,0 +170759061612,217,0 +170759061660,218,0 +170759061709,220,0 +170759061757,219,0 +170759061807,220,0 +170759061855,221,0 +170759061904,221,0 +170759061952,221,0 +170759062000,223,0 +170759062048,222,0 +170759062097,215,0 +170759062145,215,0 +170759062193,215,0 +170759062241,215,0 +170759062290,216,0 +170759062340,216,0 +170759062389,217,0 +170759062437,217,0 +170759062487,217,0 +170759062536,218,0 +170759062584,220,0 +170759062632,220,0 +170759062680,220,0 +170759062728,220,0 +170759062776,221,0 +170759062824,222,0 +170759062872,222,0 +170759062922,222,0 +170759062970,221,0 +170759063019,225,0 +170759063067,216,0 +170759063115,214,0 +170759063163,214,0 +170759063211,214,0 +170759063258,214,0 +170759063306,214,0 +170759063354,214,0 +170759063404,214,0 +170759063452,214,0 +170759063500,214,0 +170759063547,214,0 +170759063595,215,0 +170759063643,215,0 +170759063691,216,0 +170759063739,216,0 +170759063787,217,0 +170759063834,218,0 +170759063882,218,0 +170759063930,219,0 +170759063978,219,0 +170759064027,222,0 +170759064075,216,0 +170759064123,214,0 +170759064171,214,0 +170759064219,214,0 +170759064267,214,0 +170759064314,214,0 +170759064362,214,0 +170759064410,214,0 +170759064458,215,0 +170759064506,215,0 +170759064554,215,0 +170759064602,215,0 +170759064650,216,0 +170759064698,216,0 +170759064745,217,0 +170759064795,217,0 +170759064843,218,0 +170759064890,219,0 +170759064938,219,0 +170759064986,222,0 +170759065034,223,0 +170759065082,217,0 +170759065130,215,0 +170759065177,215,0 +170759065225,215,0 +170759065273,215,0 +170759065321,216,0 +170759065370,216,0 +170759065418,216,0 +170759065466,216,0 +170759065514,216,0 +170759065562,216,0 +170759065610,218,0 +170759065657,220,0 +170759065705,219,0 +170759065753,221,0 +170759065801,221,0 +170759065849,221,0 +170759065897,223,0 +170759065945,222,0 +170759065992,222,0 +170759066040,223,0 +170759066088,216,0 +170759066138,215,0 +170759066186,215,0 +170759066235,215,0 +170759066283,216,0 +170759066331,215,0 +170759066379,216,0 +170759066428,216,0 +170759066476,217,0 +170759066526,217,0 +170759066575,218,0 +170759066623,221,0 +170759066673,220,0 +170759066721,221,0 +170759066769,222,0 +170759066817,223,0 +170759066866,222,0 +170759066914,222,0 +170759066962,224,0 +170759067010,223,0 +170759067060,223,0 +170759067109,215,0 +170759067157,215,0 +170759067205,215,0 +170759067253,215,0 +170759067301,216,0 +170759067349,216,0 +170759067397,217,0 +170759067445,217,0 +170759067494,218,0 +170759067544,219,0 +170759067592,219,0 +170759067640,220,0 +170759067689,221,0 +170759067737,222,0 +170759067785,222,0 +170759067833,222,0 +170759067881,224,0 +170759067928,223,0 +170759067976,223,0 +170759068026,226,0 +170759068075,216,0 +170759068123,215,0 +170759068171,215,0 +170759068221,215,0 +170759068269,215,0 +170759068317,215,0 +170759068366,217,0 +170759068414,217,0 +170759068462,218,0 +170759068510,219,0 +170759068558,219,0 +170759068608,220,0 +170759068656,220,0 +170759068704,219,0 +170759068752,221,0 +170759068800,222,0 +170759068847,223,0 +170759068895,223,0 +170759068945,223,0 +170759068993,223,0 +170759069041,223,0 +170759069089,216,0 +170759069137,215,0 +170759069185,214,0 +170759069232,216,0 +170759069282,216,0 +170759069330,217,0 +170759069378,217,0 +170759069426,218,0 +170759069474,218,0 +170759069522,220,0 +170759069569,219,0 +170759069617,221,0 +170759069665,221,0 +170759069713,222,0 +170759069761,221,0 +170759069809,222,0 +170759069857,222,0 +170759069904,222,0 +170759069952,222,0 +170759070000,223,0 +170759070048,223,0 +170759070096,216,0 +170759070144,215,0 +170759070194,215,0 +170759070242,216,0 +170759070290,217,0 +170759070337,218,0 +170759070387,218,0 +170759070435,218,0 +170759070483,218,0 +170759070532,219,0 +170759070582,220,0 +170759070630,221,0 +170759070679,221,0 +170759070727,222,0 +170759070775,223,0 +170759070823,223,0 +170759070873,222,0 +170759070920,223,0 +170759070968,224,0 +170759071016,224,0 +170759071064,222,0 +170759071112,216,0 +170759071160,215,0 +170759071208,216,0 +170759071256,217,0 +170759071304,218,0 +170759071352,218,0 +170759071400,218,0 +170759071448,218,0 +170759071496,219,0 +170759071544,220,0 +170759071592,221,0 +170759071641,222,0 +170759071689,221,0 +170759071738,222,0 +170759071786,221,0 +170759071834,223,0 +170759071884,224,0 +170759071933,225,0 +170759071981,224,0 +170759072029,223,0 +170759072077,218,0 +170759072127,215,0 +170759072174,216,0 +170759072224,216,0 +170759072272,218,0 +170759072320,218,0 +170759072368,218,0 +170759072417,217,0 +170759072465,215,0 +170759072513,216,0 +170759072563,220,0 +170759072611,221,0 +170759072659,222,0 +170759072707,223,0 +170759072755,223,0 +170759072803,224,0 +170759072852,223,0 +170759072900,223,0 +170759072948,223,0 +170759072996,224,0 +170759073044,223,0 +170759073092,216,0 +170759073141,214,0 +170759073189,215,0 +170759073239,215,0 +170759073287,216,0 +170759073336,217,0 +170759073384,216,0 +170759073434,217,0 +170759073481,217,0 +170759073529,218,0 +170759073579,219,0 +170759073628,220,0 +170759073678,220,0 +170759073726,220,0 +170759073775,222,0 +170759073825,220,0 +170759073873,221,0 +170759073922,220,0 +170759073970,219,0 +170759074018,221,0 +170759074066,223,0 +170759074114,215,0 +170759074162,214,0 +170759074210,214,0 +170759074259,215,0 +170759074307,214,0 +170759074355,215,0 +170759074403,215,0 +170759074453,215,0 +170759074501,216,0 +170759074550,217,0 +170759074598,217,0 +170759074646,218,0 +170759074694,219,0 +170759074742,219,0 +170759074790,220,0 +170759074838,221,0 +170759074886,221,0 +170759074934,221,0 +170759074982,221,0 +170759075029,223,0 +170759075077,221,0 +170759075127,214,0 +170759075176,214,0 +170759075224,214,0 +170759075274,215,0 +170759075323,214,0 +170759075371,214,0 +170759075421,215,0 +170759075469,215,0 +170759075517,215,0 +170759075565,215,0 +170759075612,215,0 +170759075662,216,0 +170759075710,218,0 +170759075758,218,0 +170759075806,219,0 +170759075855,219,0 +170759075903,220,0 +170759075951,221,0 +170759075999,222,0 +170759076047,223,0 +170759076095,216,0 +170759076145,214,0 +170759076193,215,0 +170759076242,215,0 +170759076291,216,0 +170759076339,215,0 +170759076389,216,0 +170759076437,216,0 +170759076486,216,0 +170759076536,217,0 +170759076585,218,0 +170759076633,219,0 +170759076681,220,0 +170759076731,221,0 +170759076780,222,0 +170759076830,223,0 +170759076878,224,0 +170759076926,224,0 +170759076975,224,0 +170759077025,224,0 +170759077074,223,0 +170759077122,215,0 +170759077170,215,0 +170759077218,215,0 +170759077266,215,0 +170759077314,215,0 +170759077363,216,0 +170759077411,216,0 +170759077461,216,0 +170759077510,217,0 +170759077558,217,0 +170759077606,218,0 +170759077654,219,0 +170759077702,220,0 +170759077750,221,0 +170759077798,221,0 +170759077848,223,0 +170759077896,222,0 +170759077944,223,0 +170759077992,223,0 +170759078041,223,0 +170759078091,217,0 +170759078139,215,0 +170759078188,215,0 +170759078236,215,0 +170759078284,215,0 +170759078332,215,0 +170759078380,216,0 +170759078429,216,0 +170759078477,216,0 +170759078525,217,0 +170759078573,219,0 +170759078621,220,0 +170759078669,220,0 +170759078717,221,0 +170759078765,221,0 +170759078813,221,0 +170759078862,222,0 +170759078910,222,0 +170759078958,223,0 +170759079006,223,0 +170759079055,222,0 +170759079105,216,0 +170759079154,215,0 +170759079204,215,0 +170759079252,215,0 +170759079301,215,0 +170759079351,215,0 +170759079400,216,0 +170759079448,216,0 +170759079496,217,0 +170759079544,217,0 +170759079592,218,0 +170759079641,219,0 +170759079691,220,0 +170759079741,225,0 +170759079788,222,0 +170759079836,221,0 +170759079884,222,0 +170759079932,222,0 +170759079980,222,0 +170759080030,223,0 +170759080078,222,0 +170759080126,215,0 +170759080173,215,0 +170759080223,215,0 +170759080271,215,0 +170759080319,215,0 +170759080368,215,0 +170759080416,216,0 +170759080465,216,0 +170759080513,217,0 +170759080561,218,0 +170759080611,218,0 +170759080660,219,0 +170759080708,220,0 +170759080756,220,0 +170759080806,220,0 +170759080854,222,0 +170759080902,222,0 +170759080951,221,0 +170759080999,222,0 +170759081049,223,0 +170759081098,216,0 +170759081146,214,0 +170759081196,215,0 +170759081245,215,0 +170759081293,215,0 +170759081341,215,0 +170759081389,216,0 +170759081438,216,0 +170759081486,216,0 +170759081534,217,0 +170759081584,217,0 +170759081633,219,0 +170759081681,219,0 +170759081729,220,0 +170759081777,220,0 +170759081825,222,0 +170759081873,221,0 +170759081921,221,0 +170759081969,223,0 +170759082017,223,0 +170759082065,224,0 +170759082113,216,0 +170759082161,214,0 +170759082210,215,0 +170759082258,215,0 +170759082306,216,0 +170759082356,216,0 +170759082403,216,0 +170759082451,216,0 +170759082499,217,0 +170759082547,217,0 +170759082595,218,0 +170759082643,220,0 +170759082691,220,0 +170759082741,221,0 +170759082789,221,0 +170759082837,222,0 +170759082885,223,0 +170759082932,223,0 +170759082982,223,0 +170759083030,223,0 +170759083078,223,0 +170759083126,215,0 +170759083174,215,0 +170759083221,215,0 +170759083271,216,0 +170759083319,216,0 +170759083367,217,0 +170759083415,217,0 +170759083464,218,0 +170759083514,219,0 +170759083562,219,0 +170759083610,220,0 +170759083658,221,0 +170759083705,221,0 +170759083753,222,0 +170759083801,222,0 +170759083849,223,0 +170759083898,223,0 +170759083946,223,0 +170759083994,223,0 +170759084042,223,0 +170759084092,216,0 +170759084140,215,0 +170759084187,215,0 +170759084235,216,0 +170759084285,216,0 +170759084333,217,0 +170759084381,218,0 +170759084430,218,0 +170759084480,219,0 +170759084528,220,0 +170759084576,220,0 +170759084624,222,0 +170759084672,222,0 +170759084720,222,0 +170759084769,222,0 +170759084818,223,0 +170759084866,224,0 +170759084914,223,0 +170759084962,223,0 +170759085010,223,0 +170759085060,223,0 +170759085108,216,0 +170759085156,215,0 +170759085203,215,0 +170759085251,215,0 +170759085299,216,0 +170759085347,217,0 +170759085397,217,0 +170759085445,219,0 +170759085494,220,0 +170759085542,220,0 +170759085590,220,0 +170759085638,221,0 +170759085686,221,0 +170759085734,222,0 +170759085782,222,0 +170759085831,223,0 +170759085879,223,0 +170759085927,223,0 +170759085975,222,0 +170759086023,222,0 +170759086071,223,0 +170759086119,216,0 +170759086168,214,0 +170759086216,214,0 +170759086266,215,0 +170759086314,215,0 +170759086362,215,0 +170759086410,215,0 +170759086458,216,0 +170759086506,217,0 +170759086554,217,0 +170759086602,218,0 +170759086650,219,0 +170759086698,219,0 +170759086746,219,0 +170759086794,220,0 +170759086841,220,0 +170759086891,221,0 +170759086939,221,0 +170759086987,221,0 +170759087035,222,0 +170759087083,223,0 +170759087132,214,0 +170759087180,215,0 +170759087228,215,0 +170759087278,215,0 +170759087326,215,0 +170759087373,216,0 +170759087421,217,0 +170759087471,217,0 +170759087519,218,0 +170759087567,218,0 +170759087615,218,0 +170759087664,219,0 +170759087712,220,0 +170759087760,219,0 +170759087810,220,0 +170759087858,221,0 +170759087906,222,0 +170759087955,222,0 +170759088005,222,0 +170759088054,223,0 +170759088104,216,0 +170759088152,215,0 +170759088199,215,0 +170759088247,215,0 +170759088297,215,0 +170759088345,215,0 +170759088394,216,0 +170759088442,217,0 +170759088490,217,0 +170759088538,217,0 +170759088586,218,0 +170759088634,219,0 +170759088682,220,0 +170759088730,220,0 +170759088778,221,0 +170759088828,221,0 +170759088877,221,0 +170759088925,221,0 +170759088973,222,0 +170759089021,222,0 +170759089069,223,0 +170759089117,216,0 +170759089165,215,0 +170759089213,215,0 +170759089261,215,0 +170759089309,215,0 +170759089357,216,0 +170759089406,216,0 +170759089454,217,0 +170759089502,218,0 +170759089550,219,0 +170759089598,219,0 +170759089646,219,0 +170759089694,221,0 +170759089742,220,0 +170759089789,221,0 +170759089839,223,0 +170759089887,222,0 +170759089935,225,0 +170759089984,222,0 +170759090032,223,0 +170759090080,223,0 +170759090128,215,0 +170759090176,215,0 +170759090224,215,0 +170759090274,216,0 +170759090321,216,0 +170759090369,217,0 +170759090419,217,0 +170759090468,219,0 +170759090516,218,0 +170759090566,219,0 +170759090614,219,0 +170759090662,221,0 +170759090711,220,0 +170759090759,221,0 +170759090807,223,0 +170759090855,222,0 +170759090905,224,0 +170759090954,223,0 +170759091002,222,0 +170759091050,223,0 +170759091100,217,0 +170759091148,215,0 +170759091196,215,0 +170759091243,215,0 +170759091291,215,0 +170759091341,216,0 +170759091389,216,0 +170759091438,217,0 +170759091486,218,0 +170759091534,219,0 +170759091582,218,0 +170759091632,219,0 +170759091681,221,0 +170759091729,221,0 +170759091777,221,0 +170759091827,221,0 +170759091875,222,0 +170759091922,224,0 +170759091970,224,0 +170759092018,222,0 +170759092066,223,0 +170759092116,216,0 +170759092165,215,0 +170759092213,215,0 +170759092261,215,0 +170759092309,215,0 +170759092358,216,0 +170759092406,216,0 +170759092456,218,0 +170759092504,218,0 +170759092552,218,0 +170759092600,219,0 +170759092648,219,0 +170759092695,220,0 +170759092743,220,0 +170759092791,222,0 +170759092839,222,0 +170759092887,222,0 +170759092935,222,0 +170759092983,222,0 +170759093031,222,0 +170759093079,224,0 +170759093127,216,0 +170759093175,215,0 +170759093222,215,0 +170759093270,215,0 +170759093318,215,0 +170759093366,216,0 +170759093416,216,0 +170759093464,216,0 +170759093513,217,0 +170759093561,217,0 +170759093609,219,0 +170759093657,219,0 +170759093705,220,0 +170759093753,220,0 +170759093801,221,0 +170759093848,222,0 +170759093898,222,0 +170759093946,223,0 +170759093993,223,0 +170759094041,224,0 +170759094089,222,0 +170759094137,215,0 +170759094185,214,0 +170759094233,214,0 +170759094281,215,0 +170759094328,215,0 +170759094378,215,0 +170759094427,215,0 +170759094475,215,0 +170759094523,217,0 +170759094571,216,0 +170759094619,216,0 +170759094667,216,0 +170759094714,217,0 +170759094762,218,0 +170759094810,218,0 +170759094858,218,0 +170759094906,220,0 +170759094954,219,0 +170759095001,220,0 +170759095051,222,0 +170759095099,222,0 +170759095146,215,0 +170759095194,215,0 +170759095242,215,0 +170759095290,214,0 +170759095338,215,0 +170759095386,215,0 +170759095433,215,0 +170759095481,215,0 +170759095531,216,0 +170759095578,217,0 +170759095626,217,0 +170759095674,218,0 +170759095722,219,0 +170759095770,220,0 +170759095818,220,0 +170759095867,221,0 +170759095917,221,0 +170759095966,221,0 +170759096014,221,0 +170759096063,222,0 +170759096113,216,0 +170759096161,215,0 +170759096210,215,0 +170759096258,215,0 +170759096306,215,0 +170759096354,215,0 +170759096402,215,0 +170759096452,216,0 +170759096500,216,0 +170759096547,216,0 +170759096595,217,0 +170759096643,217,0 +170759096691,218,0 +170759096739,220,0 +170759096789,221,0 +170759096837,220,0 +170759096885,221,0 +170759096934,221,0 +170759096982,221,0 +170759097030,222,0 +170759097079,222,0 +170759097127,216,0 +170759097175,215,0 +170759097223,215,0 +170759097271,215,0 +170759097321,216,0 +170759097369,215,0 +170759097416,216,0 +170759097464,215,0 +170759097512,216,0 +170759097560,216,0 +170759097608,217,0 +170759097656,217,0 +170759097704,218,0 +170759097752,219,0 +170759097800,221,0 +170759097848,221,0 +170759097896,221,0 +170759097944,221,0 +170759097992,222,0 +170759098040,223,0 +170759098088,222,0 +170759098136,216,0 +170759098183,215,0 +170759098231,215,0 +170759098279,215,0 +170759098327,215,0 +170759098375,215,0 +170759098425,215,0 +170759098473,216,0 +170759098522,216,0 +170759098570,216,0 +170759098618,217,0 +170759098666,219,0 +170759098714,220,0 +170759098762,220,0 +170759098811,220,0 +170759098859,220,0 +170759098907,221,0 +170759098955,222,0 +170759099003,221,0 +170759099051,222,0 +170759099099,222,0 +170759099147,215,0 +170759099196,215,0 +170759099244,215,0 +170759099292,215,0 +170759099340,215,0 +170759099387,215,0 +170759099435,215,0 +170759099483,216,0 +170759099531,216,0 +170759099579,217,0 +170759099628,218,0 +170759099676,219,0 +170759099724,220,0 +170759099772,221,0 +170759099821,221,0 +170759099869,222,0 +170759099917,221,0 +170759099965,223,0 +170759100014,222,0 +170759100062,223,0 +170759100110,218,0 +170759100158,215,0 +170759100206,215,0 +170759100254,215,0 +170759100303,215,0 +170759100351,216,0 +170759100401,216,0 +170759100448,217,0 +170759100498,219,0 +170759100546,218,0 +170759100595,218,0 +170759100643,219,0 +170759100691,220,0 +170759100741,221,0 +170759100789,221,0 +170759100838,218,0 +170759100886,222,0 +170759100934,223,0 +170759100982,222,0 +170759101032,223,0 +170759101079,223,0 +170759101127,215,0 +170759101175,214,0 +170759101223,214,0 +170759101271,214,0 +170759101319,215,0 +170759101368,215,0 +170759101416,215,0 +170759101466,215,0 +170759101514,216,0 +170759101562,216,0 +170759101609,216,0 +170759101657,216,0 +170759101705,217,0 +170759101755,218,0 +170759101803,220,0 +170759101851,219,0 +170759101899,221,0 +170759101948,220,0 +170759101996,221,0 +170759102044,223,0 +170759102092,222,0 +170759102140,215,0 +170759102188,215,0 +170759102235,215,0 +170759102285,215,0 +170759102333,215,0 +170759102382,215,0 +170759102430,216,0 +170759102480,216,0 +170759102528,216,0 +170759102576,216,0 +170759102625,217,0 +170759102675,218,0 +170759102723,219,0 +170759102772,220,0 +170759102820,220,0 +170759102870,222,0 +170759102918,221,0 +170759102967,221,0 +170759103015,221,0 +170759103063,222,0 +170759103111,216,0 +170759103161,215,0 +170759103208,215,0 +170759103256,215,0 +170759103304,215,0 +170759103354,215,0 +170759103402,216,0 +170759103451,216,0 +170759103501,217,0 +170759103549,217,0 +170759103598,217,0 +170759103646,218,0 +170759103694,218,0 +170759103742,219,0 +170759103792,220,0 +170759103841,221,0 +170759103889,221,0 +170759103937,222,0 +170759103985,221,0 +170759104033,223,0 +170759104081,223,0 +170759104129,216,0 +170759104177,215,0 +170759104225,214,0 +170759104273,215,0 +170759104322,215,0 +170759104372,215,0 +170759104420,215,0 +170759104468,215,0 +170759104516,215,0 +170759104564,216,0 +170759104611,216,0 +170759104659,218,0 +170759104707,219,0 +170759104755,219,0 +170759104803,220,0 +170759104852,220,0 +170759104900,221,0 +170759104948,222,0 +170759104996,226,0 +170759105045,223,0 +170759105093,223,0 +170759105141,215,0 +170759105189,215,0 +170759105237,215,0 +170759105286,215,0 +170759105334,215,0 +170759105382,215,0 +170759105430,215,0 +170759105478,215,0 +170759105525,216,0 +170759105573,216,0 +170759105621,217,0 +170759105669,219,0 +170759105717,219,0 +170759105764,220,0 +170759105812,222,0 +170759105860,222,0 +170759105908,222,0 +170759105956,222,0 +170759106004,224,0 +170759106053,229,0 +170759106101,223,0 +170759106150,215,0 +170759106198,215,0 +170759106246,215,0 +170759106294,215,0 +170759106342,215,0 +170759106392,215,0 +170759106439,216,0 +170759106489,215,0 +170759106537,216,0 +170759106585,216,0 +170759106633,217,0 +170759106681,218,0 +170759106730,218,0 +170759106778,219,0 +170759106826,220,0 +170759106874,221,0 +170759106923,221,0 +170759106971,222,0 +170759107021,221,0 +170759107070,223,0 +170759107118,218,0 +170759107166,215,0 +170759107214,215,0 +170759107262,215,0 +170759107310,215,0 +170759107357,216,0 +170759107405,217,0 +170759107453,217,0 +170759107501,217,0 +170759107549,217,0 +170759107598,218,0 +170759107646,218,0 +170759107696,219,0 +170759107744,222,0 +170759107792,220,0 +170759107840,221,0 +170759107887,221,0 +170759107937,223,0 +170759107985,223,0 +170759108033,222,0 +170759108082,223,0 +170759108130,216,0 +170759108180,214,0 +170759108228,214,0 +170759108277,215,0 +170759108325,216,0 +170759108373,216,0 +170759108421,216,0 +170759108469,216,0 +170759108517,216,0 +170759108565,217,0 +170759108612,217,0 +170759108660,217,0 +170759108708,219,0 +170759108756,219,0 +170759108804,221,0 +170759108852,221,0 +170759108900,220,0 +170759108950,221,0 +170759108998,222,0 +170759109045,222,0 +170759109093,222,0 +170759109141,215,0 +170759109191,215,0 +170759109239,216,0 +170759109287,216,0 +170759109335,217,0 +170759109383,217,0 +170759109431,218,0 +170759109478,218,0 +170759109526,218,0 +170759109574,220,0 +170759109622,221,0 +170759109670,221,0 +170759109718,222,0 +170759109766,223,0 +170759109814,223,0 +170759109862,223,0 +170759109910,224,0 +170759109958,225,0 +170759110006,224,0 +170759110055,224,0 +170759110103,222,0 +170759110151,216,0 +170759110199,217,0 +170759110247,218,0 +170759110295,218,0 +170759110343,219,0 +170759110392,220,0 +170759110442,219,0 +170759110490,220,0 +170759110539,221,0 +170759110587,221,0 +170759110635,222,0 +170759110683,222,0 +170759110733,223,0 +170759110781,223,0 +170759110830,224,0 +170759110878,223,0 +170759110926,223,0 +170759110974,223,0 +170759111024,223,0 +170759111073,223,0 +170759111121,216,0 +170759111169,215,0 +170759111219,216,0 +170759111266,216,0 +170759111314,217,0 +170759111364,217,0 +170759111412,218,0 +170759111460,219,0 +170759111508,219,0 +170759111557,220,0 +170759111605,221,0 +170759111653,221,0 +170759111701,222,0 +170759111749,224,0 +170759111797,222,0 +170759111845,223,0 +170759111893,223,0 +170759111940,222,0 +170759111988,223,0 +170759112038,223,0 +170759112086,223,0 +170759112134,216,0 +170759112181,215,0 +170759112229,214,0 +170759112277,215,0 +170759112327,215,0 +170759112376,216,0 +170759112424,217,0 +170759112472,217,0 +170759112520,218,0 +170759112568,219,0 +170759112616,220,0 +170759112664,220,0 +170759112712,220,0 +170759112760,222,0 +170759112808,222,0 +170759112856,221,0 +170759112904,221,0 +170759112953,221,0 +170759113002,220,0 +170759113050,223,0 +170759113098,223,0 +170759113146,215,0 +170759113194,215,0 +170759113242,215,0 +170759113290,215,0 +170759113338,215,0 +170759113386,215,0 +170759113434,216,0 +170759113482,216,0 +170759113530,216,0 +170759113578,217,0 +170759113626,217,0 +170759113675,217,0 +170759113723,218,0 +170759113772,217,0 +170759113820,220,0 +170759113868,220,0 +170759113916,221,0 +170759113964,222,0 +170759114014,221,0 +170759114063,222,0 +170759114112,218,0 +170759114160,215,0 +170759114208,215,0 +170759114256,215,0 +170759114304,215,0 +170759114354,215,0 +170759114403,215,0 +170759114451,216,0 +170759114501,216,0 +170759114550,217,0 +170759114598,217,0 +170759114646,217,0 +170759114694,219,0 +170759114742,220,0 +170759114792,221,0 +170759114841,221,0 +170759114889,221,0 +170759114937,221,0 +170759114986,222,0 +170759115034,222,0 +170759115082,222,0 +170759115132,216,0 +170759115180,215,0 +170759115228,215,0 +170759115276,215,0 +170759115323,216,0 +170759115371,216,0 +170759115421,216,0 +170759115469,217,0 +170759115517,217,0 +170759115565,217,0 +170759115614,218,0 +170759115662,219,0 +170759115710,221,0 +170759115760,220,0 +170759115808,220,0 +170759115857,221,0 +170759115905,223,0 +170759115953,223,0 +170759116002,222,0 +170759116052,223,0 +170759116100,224,0 +170759116149,215,0 +170759116197,215,0 +170759116247,215,0 +170759116295,215,0 +170759116343,216,0 +170759116390,216,0 +170759116438,217,0 +170759116486,217,0 +170759116536,218,0 +170759116584,218,0 +170759116632,219,0 +170759116681,220,0 +170759116729,219,0 +170759116777,221,0 +170759116826,221,0 +170759116876,220,0 +170759116924,222,0 +170759116973,222,0 +170759117021,222,0 +170759117071,223,0 +170759117120,216,0 +170759117170,214,0 +170759117219,215,0 +170759117267,214,0 +170759117315,214,0 +170759117363,215,0 +170759117411,215,0 +170759117459,215,0 +170759117508,215,0 +170759117556,216,0 +170759117604,216,0 +170759117652,216,0 +170759117700,216,0 +170759117748,217,0 +170759117798,219,0 +170759117846,219,0 +170759117893,220,0 +170759117941,220,0 +170759117989,220,0 +170759118037,223,0 +170759118085,222,0 +170759118134,216,0 +170759118182,215,0 +170759118230,215,0 +170759118280,215,0 +170759118328,215,0 +170759118376,216,0 +170759118425,216,0 +170759118473,217,0 +170759118521,217,0 +170759118569,218,0 +170759118618,219,0 +170759118668,220,0 +170759118716,221,0 +170759118765,221,0 +170759118815,221,0 +170759118864,222,0 +170759118912,222,0 +170759118962,222,0 +170759119011,223,0 +170759119059,223,0 +170759119107,223,0 +170759119157,215,0 +170759119204,215,0 +170759119252,215,0 +170759119300,216,0 +170759119348,216,0 +170759119398,216,0 +170759119446,217,0 +170759119495,218,0 +170759119543,218,0 +170759119591,218,0 +170759119639,218,0 +170759119687,218,0 +170759119735,219,0 +170759119783,219,0 +170759119831,220,0 +170759119879,221,0 +170759119927,221,0 +170759119975,221,0 +170759120024,220,0 +170759120074,222,0 +170759120122,217,0 +170759120171,214,0 +170759120220,214,0 +170759120268,214,0 +170759120316,214,0 +170759120364,215,0 +170759120414,215,0 +170759120462,215,0 +170759120511,215,0 +170759120561,215,0 +170759120608,216,0 +170759120656,217,0 +170759120704,217,0 +170759120752,219,0 +170759120800,218,0 +170759120848,220,0 +170759120897,220,0 +170759120945,220,0 +170759120993,221,0 +170759121041,222,0 +170759121091,228,0 +170759121139,216,0 +170759121188,214,0 +170759121238,214,0 +170759121287,215,0 +170759121337,215,0 +170759121386,215,0 +170759121436,215,0 +170759121483,215,0 +170759121531,215,0 +170759121579,216,0 +170759121627,217,0 +170759121675,218,0 +170759121725,219,0 +170759121773,219,0 +170759121820,220,0 +170759121868,221,0 +170759121918,220,0 +170759121967,221,0 +170759122017,221,0 +170759122065,222,0 +170759122114,222,0 +170759122164,215,0 +170759122212,215,0 +170759122260,215,0 +170759122308,215,0 +170759122355,215,0 +170759122403,216,0 +170759122451,216,0 +170759122499,216,0 +170759122547,217,0 +170759122595,217,0 +170759122643,218,0 +170759122691,219,0 +170759122739,220,0 +170759122787,220,0 +170759122835,221,0 +170759122882,221,0 +170759122930,221,0 +170759122978,222,0 +170759123026,222,0 +170759123074,224,0 +170759123122,215,0 +170759123171,214,0 +170759123219,214,0 +170759123268,214,0 +170759123316,214,0 +170759123364,215,0 +170759123412,215,0 +170759123460,215,0 +170759123508,215,0 +170759123556,215,0 +170759123604,216,0 +170759123652,216,0 +170759123700,217,0 +170759123748,218,0 +170759123796,219,0 +170759123844,219,0 +170759123893,221,0 +170759123941,222,0 +170759123989,221,0 +170759124037,222,0 +170759124085,223,0 +170759124133,215,0 +170759124181,214,0 +170759124229,213,0 +170759124277,214,0 +170759124326,214,0 +170759124376,214,0 +170759124425,214,0 +170759124475,214,0 +170759124523,214,0 +170759124571,215,0 +170759124618,215,0 +170759124666,215,0 +170759124714,216,0 +170759124764,217,0 +170759124812,219,0 +170759124860,219,0 +170759124908,220,0 +170759124955,219,0 +170759125003,221,0 +170759125051,223,0 +170759125101,225,0 +170759125150,215,0 +170759125200,214,0 +170759125248,214,0 +170759125297,214,0 +170759125345,214,0 +170759125393,214,0 +170759125441,214,0 +170759125491,214,0 +170759125539,214,0 +170759125587,214,0 +170759125635,215,0 +170759125684,215,0 +170759125733,215,0 +170759125781,215,0 +170759125829,216,0 +170759125879,216,0 +170759125926,216,0 +170759125974,216,0 +170759126022,217,0 +170759126070,218,0 +170759126118,218,0 +170759126166,219,0 +170759126214,220,0 +170759126261,220,0 +170759126309,221,0 +170759126357,222,0 +170759126405,222,0 +170759126453,222,0 +170759126502,222,0 +170759126552,222,0 +170759126600,222,0 +170759126648,215,0 +170759126697,214,0 +170759126745,214,0 +170759126795,215,0 +170759126843,215,0 +170759126891,215,0 +170759126938,215,0 +170759126986,215,0 +170759127036,216,0 +170759127084,216,0 +170759127132,217,0 +170759127180,217,0 +170759127228,219,0 +170759127276,220,0 +170759127324,221,0 +170759127372,221,0 +170759127421,221,0 +170759127469,221,0 +170759127517,222,0 +170759127566,222,0 +170759127614,222,0 +170759127662,215,0 +170759127710,215,0 +170759127760,215,0 +170759127808,215,0 +170759127856,215,0 +170759127904,215,0 +170759127952,216,0 +170759128000,217,0 +170759128048,217,0 +170759128095,217,0 +170759128143,218,0 +170759128191,221,0 +170759128239,221,0 +170759128287,221,0 +170759128335,221,0 +170759128383,223,0 +170759128430,221,0 +170759128478,222,0 +170759128526,222,0 +170759128574,225,0 +170759128622,217,0 +170759128670,215,0 +170759128718,215,0 +170759128766,215,0 +170759128813,216,0 +170759128861,216,0 +170759128909,217,0 +170759128957,217,0 +170759129006,218,0 +170759129054,220,0 +170759129102,219,0 +170759129150,220,0 +170759129200,222,0 +170759129247,221,0 +170759129295,222,0 +170759129343,223,0 +170759129393,222,0 +170759129440,224,0 +170759129490,223,0 +170759129538,223,0 +170759129586,223,0 +170759129634,216,0 +170759129682,215,0 +170759129731,215,0 +170759129779,215,0 +170759129829,216,0 +170759129877,217,0 +170759129924,216,0 +170759129972,216,0 +170759130020,217,0 +170759130070,218,0 +170759130118,218,0 +170759130167,221,0 +170759130215,220,0 +170759130263,220,0 +170759130311,221,0 +170759130361,221,0 +170759130409,222,0 +170759130457,224,0 +170759130505,223,0 +170759130554,223,0 +170759130602,222,0 +170759130650,216,0 +170759130698,215,0 +170759130747,215,0 +170759130795,217,0 +170759130845,216,0 +170759130893,217,0 +170759130943,217,0 +170759130990,218,0 +170759131038,219,0 +170759131086,220,0 +170759131136,221,0 +170759131184,221,0 +170759131233,222,0 +170759131281,223,0 +170759131329,224,0 +170759131377,223,0 +170759131425,224,0 +170759131473,225,0 +170759131521,224,0 +170759131569,223,0 +170759131617,222,0 +170759131665,214,0 +170759131713,215,0 +170759131761,215,0 +170759131810,216,0 +170759131858,217,0 +170759131908,218,0 +170759131957,218,0 +170759132005,218,0 +170759132053,219,0 +170759132101,220,0 +170759132149,220,0 +170759132199,221,0 +170759132247,221,0 +170759132295,221,0 +170759132342,221,0 +170759132390,220,0 +170759132438,220,0 +170759132486,221,0 +170759132534,222,0 +170759132584,223,0 +170759132633,216,0 +170759132683,214,0 +170759132731,214,0 +170759132779,214,0 +170759132827,214,0 +170759132874,215,0 +170759132924,215,0 +170759132974,215,0 +170759133022,216,0 +170759133070,217,0 +170759133119,218,0 +170759133169,218,0 +170759133217,220,0 +170759133264,220,0 +170759133312,221,0 +170759133360,221,0 +170759133408,221,0 +170759133458,222,0 +170759133507,222,0 +170759133555,223,0 +170759133603,223,0 +170759133651,215,0 +170759133699,215,0 +170759133747,215,0 +170759133796,215,0 +170759133844,215,0 +170759133892,215,0 +170759133940,216,0 +170759133988,217,0 +170759134038,217,0 +170759134086,218,0 +170759134135,219,0 +170759134185,219,0 +170759134234,220,0 +170759134284,220,0 +170759134332,221,0 +170759134380,221,0 +170759134427,222,0 +170759134475,222,0 +170759134523,223,0 +170759134571,224,0 +170759134619,223,0 +170759134667,215,0 +170759134715,215,0 +170759134763,215,0 +170759134811,214,0 +170759134859,215,0 +170759134908,215,0 +170759134958,215,0 +170759135006,216,0 +170759135055,216,0 +170759135103,216,0 +170759135151,216,0 +170759135201,217,0 +170759135250,218,0 +170759135298,219,0 +170759135346,220,0 +170759135396,220,0 +170759135445,221,0 +170759135495,221,0 +170759135543,222,0 +170759135591,222,0 +170759135639,216,0 +170759135688,215,0 +170759135738,215,0 +170759135786,215,0 +170759135834,215,0 +170759135882,216,0 +170759135930,215,0 +170759135977,216,0 +170759136025,216,0 +170759136073,216,0 +170759136121,217,0 +170759136169,218,0 +170759136217,221,0 +170759136265,220,0 +170759136313,220,0 +170759136361,221,0 +170759136409,223,0 +170759136458,222,0 +170759136506,222,0 +170759136554,221,0 +170759136602,222,0 +170759136652,215,0 +170759136700,214,0 +170759136748,214,0 +170759136796,215,0 +170759136843,215,0 +170759136891,215,0 +170759136939,216,0 +170759136989,216,0 +170759137037,217,0 +170759137085,218,0 +170759137133,219,0 +170759137181,220,0 +170759137229,220,0 +170759137277,221,0 +170759137325,221,0 +170759137374,222,0 +170759137422,222,0 +170759137471,222,0 +170759137519,223,0 +170759137569,223,0 +170759137617,221,0 +170759137667,214,0 +170759137714,214,0 +170759137764,215,0 +170759137812,215,0 +170759137860,215,0 +170759137908,216,0 +170759137956,217,0 +170759138005,217,0 +170759138053,219,0 +170759138101,219,0 +170759138149,220,0 +170759138199,220,0 +170759138246,221,0 +170759138294,220,0 +170759138342,221,0 +170759138390,222,0 +170759138440,222,0 +170759138488,222,0 +170759138537,221,0 +170759138587,222,0 +170759138635,216,0 +170759138684,214,0 +170759138732,214,0 +170759138780,215,0 +170759138828,215,0 +170759138876,215,0 +170759138924,216,0 +170759138973,216,0 +170759139021,217,0 +170759139069,218,0 +170759139117,218,0 +170759139166,219,0 +170759139214,219,0 +170759139262,220,0 +170759139310,222,0 +170759139358,222,0 +170759139406,222,0 +170759139453,222,0 +170759139501,223,0 +170759139549,223,0 +170759139597,224,0 +170759139645,216,0 +170759139693,214,0 +170759139741,214,0 +170759139789,215,0 +170759139836,215,0 +170759139884,215,0 +170759139932,216,0 +170759139980,216,0 +170759140028,216,0 +170759140076,217,0 +170759140123,218,0 +170759140171,217,0 +170759140219,218,0 +170759140269,218,0 +170759140316,219,0 +170759140364,220,0 +170759140414,220,0 +170759140462,222,0 +170759140511,221,0 +170759140559,222,0 +170759140608,222,0 +170759140656,215,0 +170759140704,214,0 +170759140752,214,0 +170759140800,214,0 +170759140848,214,0 +170759140896,214,0 +170759140944,214,0 +170759140991,215,0 +170759141039,215,0 +170759141087,215,0 +170759141135,215,0 +170759141183,216,0 +170759141231,217,0 +170759141279,218,0 +170759141327,219,0 +170759141375,220,0 +170759141424,220,0 +170759141472,221,0 +170759141520,221,0 +170759141569,222,0 +170759141617,222,0 +170759141665,215,0 +170759141715,214,0 +170759141762,214,0 +170759141810,214,0 +170759141858,214,0 +170759141906,215,0 +170759141954,215,0 +170759142002,215,0 +170759142050,215,0 +170759142097,216,0 +170759142145,216,0 +170759142193,217,0 +170759142241,218,0 +170759142289,219,0 +170759142337,220,0 +170759142386,221,0 +170759142434,221,0 +170759142482,222,0 +170759142530,222,0 +170759142577,222,0 +170759142625,221,0 +170759142673,214,0 +170759142721,214,0 +170759142769,214,0 +170759142817,214,0 +170759142867,214,0 +170759142916,214,0 +170759142964,214,0 +170759143012,215,0 +170759143060,215,0 +170759143108,215,0 +170759143156,215,0 +170759143205,215,0 +170759143253,216,0 +170759143301,217,0 +170759143349,218,0 +170759143396,219,0 +170759143444,220,0 +170759143492,220,0 +170759143542,220,0 +170759143591,222,0 +170759143639,216,0 +170759143688,214,0 +170759143736,214,0 +170759143784,215,0 +170759143834,215,0 +170759143883,215,0 +170759143933,216,0 +170759143981,216,0 +170759144029,217,0 +170759144077,217,0 +170759144125,217,0 +170759144174,218,0 +170759144224,219,0 +170759144273,220,0 +170759144321,220,0 +170759144369,220,0 +170759144419,221,0 +170759144467,221,0 +170759144516,221,0 +170759144566,222,0 +170759144614,223,0 +170759144662,215,0 +170759144710,214,0 +170759144758,214,0 +170759144807,215,0 +170759144857,215,0 +170759144905,216,0 +170759144952,216,0 +170759145002,217,0 +170759145050,217,0 +170759145099,218,0 +170759145147,218,0 +170759145195,218,0 +170759145245,220,0 +170759145293,220,0 +170759145340,221,0 +170759145388,221,0 +170759145436,221,0 +170759145486,222,0 +170759145535,222,0 +170759145583,223,0 +170759145631,224,0 +170759145681,215,0 +170759145729,214,0 +170759145777,214,0 +170759145825,215,0 +170759145873,215,0 +170759145920,215,0 +170759145968,216,0 +170759146016,217,0 +170759146066,216,0 +170759146114,218,0 +170759146163,219,0 +170759146213,219,0 +170759146261,220,0 +170759146309,221,0 +170759146357,220,0 +170759146405,221,0 +170759146452,221,0 +170759146500,221,0 +170759146548,221,0 +170759146596,222,0 +170759146644,218,0 +170759146692,214,0 +170759146742,214,0 +170759146790,215,0 +170759146839,215,0 +170759146887,215,0 +170759146937,216,0 +170759146985,217,0 +170759147034,216,0 +170759147082,216,0 +170759147130,217,0 +170759147180,218,0 +170759147227,219,0 +170759147277,218,0 +170759147325,219,0 +170759147373,219,0 +170759147421,221,0 +170759147469,221,0 +170759147516,223,0 +170759147564,222,0 +170759147614,222,0 +170759147663,216,0 +170759147713,214,0 +170759147762,214,0 +170759147812,214,0 +170759147861,215,0 +170759147909,215,0 +170759147957,215,0 +170759148005,216,0 +170759148053,217,0 +170759148101,217,0 +170759148149,219,0 +170759148199,220,0 +170759148248,220,0 +170759148298,221,0 +170759148346,221,0 +170759148393,221,0 +170759148443,220,0 +170759148491,221,0 +170759148540,222,0 +170759148588,223,0 +170759148636,217,0 +170759148684,215,0 +170759148732,214,0 +170759148780,215,0 +170759148828,215,0 +170759148878,215,0 +170759148926,216,0 +170759148974,216,0 +170759149022,216,0 +170759149071,218,0 +170759149119,217,0 +170759149169,217,0 +170759149218,218,0 +170759149268,218,0 +170759149315,220,0 +170759149365,220,0 +170759149413,220,0 +170759149462,220,0 +170759149510,221,0 +170759149560,221,0 +170759149608,223,0 +170759149656,216,0 +170759149704,215,0 +170759149752,214,0 +170759149800,214,0 +170759149849,215,0 +170759149899,215,0 +170759149947,215,0 +170759149996,216,0 +170759150044,216,0 +170759150094,217,0 +170759150143,217,0 +170759150193,219,0 +170759150242,218,0 +170759150292,220,0 +170759150341,220,0 +170759150391,222,0 +170759150439,223,0 +170759150488,222,0 +170759150536,222,0 +170759150586,223,0 +170759150635,222,0 +170759150683,215,0 +170759150733,214,0 +170759150782,214,0 +170759150830,215,0 +170759150879,215,0 +170759150927,215,0 +170759150975,215,0 +170759151023,216,0 +170759151073,216,0 +170759151121,216,0 +170759151170,217,0 +170759151220,218,0 +170759151268,219,0 +170759151316,221,0 +170759151365,220,0 +170759151413,220,0 +170759151461,221,0 +170759151509,221,0 +170759151557,222,0 +170759151606,223,0 +170759151656,216,0 +170759151705,214,0 +170759151755,214,0 +170759151803,215,0 +170759151852,215,0 +170759151900,215,0 +170759151950,215,0 +170759151998,215,0 +170759152047,215,0 +170759152095,217,0 +170759152145,218,0 +170759152193,219,0 +170759152241,219,0 +170759152289,220,0 +170759152337,220,0 +170759152385,221,0 +170759152432,222,0 +170759152480,223,0 +170759152528,222,0 +170759152576,222,0 +170759152626,222,0 +170759152674,215,0 +170759152721,214,0 +170759152769,214,0 +170759152817,214,0 +170759152865,215,0 +170759152913,215,0 +170759152961,216,0 +170759153009,217,0 +170759153056,217,0 +170759153104,218,0 +170759153152,217,0 +170759153200,218,0 +170759153250,220,0 +170759153297,220,0 +170759153347,222,0 +170759153396,222,0 +170759153446,222,0 +170759153495,222,0 +170759153543,223,0 +170759153591,223,0 +170759153639,222,0 +170759153687,215,0 +170759153736,214,0 +170759153784,215,0 +170759153832,215,0 +170759153880,215,0 +170759153928,216,0 +170759153976,217,0 +170759154025,217,0 +170759154073,217,0 +170759154121,218,0 +170759154169,218,0 +170759154217,220,0 +170759154265,220,0 +170759154313,222,0 +170759154361,221,0 +170759154409,222,0 +170759154456,222,0 +170759154504,223,0 +170759154552,223,0 +170759154600,223,0 +170759154650,216,0 +170759154699,215,0 +170759154747,215,0 +170759154795,215,0 +170759154843,216,0 +170759154893,216,0 +170759154942,217,0 +170759154990,217,0 +170759155038,218,0 +170759155086,218,0 +170759155135,219,0 +170759155183,220,0 +170759155231,221,0 +170759155281,222,0 +170759155330,222,0 +170759155378,222,0 +170759155428,222,0 +170759155476,223,0 +170759155525,223,0 +170759155573,223,0 +170759155623,222,0 +170759155670,215,0 +170759155718,214,0 +170759155768,214,0 +170759155817,214,0 +170759155865,214,0 +170759155913,215,0 +170759155961,215,0 +170759156009,215,0 +170759156057,216,0 +170759156106,216,0 +170759156154,217,0 +170759156204,217,0 +170759156252,218,0 +170759156301,219,0 +170759156349,220,0 +170759156397,221,0 +170759156445,221,0 +170759156492,221,0 +170759156542,222,0 +170759156590,223,0 +170759156638,222,0 +170759156685,215,0 +170759156733,215,0 +170759156781,214,0 +170759156831,215,0 +170759156878,215,0 +170759156928,215,0 +170759156976,215,0 +170759157024,215,0 +170759157072,215,0 +170759157119,216,0 +170759157167,216,0 +170759157215,217,0 +170759157263,218,0 +170759157311,219,0 +170759157359,223,0 +170759157407,221,0 +170759157455,221,0 +170759157503,221,0 +170759157551,221,0 +170759157598,223,0 +170759157646,222,0 +170759157694,214,0 +170759157742,213,0 +170759157790,213,0 +170759157838,213,0 +170759157885,213,0 +170759157933,213,0 +170759157983,214,0 +170759158031,214,0 +170759158078,214,0 +170759158128,214,0 +170759158177,215,0 +170759158225,216,0 +170759158273,215,0 +170759158321,215,0 +170759158369,216,0 +170759158416,217,0 +170759158464,218,0 +170759158512,218,0 +170759158560,220,0 +170759158609,223,0 +170759158657,216,0 +170759158705,215,0 +170759158753,215,0 +170759158801,215,0 +170759158848,215,0 +170759158896,215,0 +170759158944,216,0 +170759158992,216,0 +170759159040,216,0 +170759159088,216,0 +170759159136,217,0 +170759159183,218,0 +170759159233,218,0 +170759159281,219,0 +170759159329,220,0 +170759159377,220,0 +170759159426,220,0 +170759159476,220,0 +170759159523,222,0 +170759159571,222,0 +170759159619,224,0 +170759159667,216,0 +170759159717,214,0 +170759159765,215,0 +170759159813,215,0 +170759159860,215,0 +170759159908,216,0 +170759159958,216,0 +170759160006,216,0 diff --git a/laser_value/0211-05.csv b/laser_value/0211-05.csv new file mode 100644 index 0000000..41ef66c --- /dev/null +++ b/laser_value/0211-05.csv @@ -0,0 +1,7457 @@ +timestamp,laser_value,event +170759160055,217,0 +170759160103,217,0 +170759160152,218,0 +170759160200,219,0 +170759160248,219,0 +170759160296,220,0 +170759160345,221,0 +170759160393,222,0 +170759160443,222,0 +170759160490,222,0 +170759160538,222,0 +170759160586,224,0 +170759160636,222,0 +170759160684,216,0 +170759160731,214,0 +170759160779,215,0 +170759160829,215,0 +170759160877,215,0 +170759160926,216,0 +170759160974,216,0 +170759161022,217,0 +170759161071,217,0 +170759161121,217,0 +170759161169,217,0 +170759161218,218,0 +170759161266,217,0 +170759161316,219,0 +170759161365,219,0 +170759161413,220,0 +170759161461,221,0 +170759161510,221,0 +170759161558,221,0 +170759161606,223,0 +170759161654,220,0 +170759161702,214,0 +170759161750,213,0 +170759161798,213,0 +170759161846,213,0 +170759161895,213,0 +170759161943,213,0 +170759161991,213,0 +170759162039,213,0 +170759162088,213,0 +170759162136,214,0 +170759162184,214,0 +170759162232,214,0 +170759162280,215,0 +170759162329,215,0 +170759162379,216,0 +170759162427,216,0 +170759162475,217,0 +170759162523,217,0 +170759162571,221,0 +170759162620,222,0 +170759162668,216,0 +170759162716,214,0 +170759162763,215,0 +170759162811,215,0 +170759162859,215,0 +170759162907,215,0 +170759162955,215,0 +170759163003,216,0 +170759163051,216,0 +170759163099,217,0 +170759163147,217,0 +170759163195,218,0 +170759163243,219,0 +170759163290,220,0 +170759163340,220,0 +170759163388,220,0 +170759163436,221,0 +170759163483,221,0 +170759163531,222,0 +170759163579,222,0 +170759163627,222,0 +170759163675,216,0 +170759163723,215,0 +170759163771,216,0 +170759163819,217,0 +170759163867,218,0 +170759163916,218,0 +170759163966,219,0 +170759164015,219,0 +170759164063,220,0 +170759164111,221,0 +170759164159,221,0 +170759164207,221,0 +170759164257,223,0 +170759164304,223,0 +170759164354,223,0 +170759164403,223,0 +170759164451,223,0 +170759164501,226,0 +170759164549,223,0 +170759164597,221,0 +170759164646,222,0 +170759164696,215,0 +170759164745,216,0 +170759164793,216,0 +170759164842,217,0 +170759164890,218,0 +170759164938,219,0 +170759164986,219,0 +170759165036,221,0 +170759165084,220,0 +170759165133,220,0 +170759165181,221,0 +170759165229,221,0 +170759165277,221,0 +170759165326,223,0 +170759165374,223,0 +170759165424,223,0 +170759165472,224,0 +170759165521,223,0 +170759165569,223,0 +170759165619,223,0 +170759165667,216,0 +170759165715,215,0 +170759165762,216,0 +170759165810,217,0 +170759165860,218,0 +170759165908,218,0 +170759165956,219,0 +170759166003,219,0 +170759166051,219,0 +170759166099,219,0 +170759166147,219,0 +170759166195,220,0 +170759166243,220,0 +170759166291,221,0 +170759166338,221,0 +170759166386,223,0 +170759166434,224,0 +170759166482,223,0 +170759166530,222,0 +170759166577,223,0 +170759166625,222,0 +170759166673,216,0 +170759166721,214,0 +170759166769,214,0 +170759166817,215,0 +170759166865,215,0 +170759166912,216,0 +170759166962,217,0 +170759167012,218,0 +170759167059,219,0 +170759167107,217,0 +170759167157,218,0 +170759167205,219,0 +170759167253,220,0 +170759167301,220,0 +170759167350,222,0 +170759167398,221,0 +170759167446,223,0 +170759167494,221,0 +170759167542,223,0 +170759167590,222,0 +170759167638,223,0 +170759167686,216,0 +170759167735,214,0 +170759167783,215,0 +170759167831,215,0 +170759167879,215,0 +170759167927,215,0 +170759167975,216,0 +170759168023,217,0 +170759168071,216,0 +170759168119,218,0 +170759168168,218,0 +170759168216,218,0 +170759168265,219,0 +170759168315,219,0 +170759168363,221,0 +170759168411,220,0 +170759168459,221,0 +170759168507,222,0 +170759168556,221,0 +170759168604,221,0 +170759168654,221,0 +170759168702,214,0 +170759168751,214,0 +170759168801,214,0 +170759168850,214,0 +170759168898,215,0 +170759168946,216,0 +170759168994,216,0 +170759169041,216,0 +170759169089,217,0 +170759169137,218,0 +170759169187,218,0 +170759169234,219,0 +170759169282,220,0 +170759169330,221,0 +170759169380,220,0 +170759169428,220,0 +170759169477,220,0 +170759169525,220,0 +170759169574,221,0 +170759169624,222,0 +170759169673,216,0 +170759169723,214,0 +170759169771,215,0 +170759169819,215,0 +170759169867,215,0 +170759169916,215,0 +170759169964,216,0 +170759170012,216,0 +170759170062,218,0 +170759170111,219,0 +170759170159,219,0 +170759170207,221,0 +170759170256,220,0 +170759170306,221,0 +170759170354,221,0 +170759170403,222,0 +170759170451,221,0 +170759170499,221,0 +170759170549,222,0 +170759170597,222,0 +170759170644,223,0 +170759170692,216,0 +170759170740,215,0 +170759170788,215,0 +170759170836,215,0 +170759170886,216,0 +170759170934,217,0 +170759170982,217,0 +170759171029,217,0 +170759171079,218,0 +170759171127,218,0 +170759171175,220,0 +170759171223,219,0 +170759171271,220,0 +170759171318,222,0 +170759171366,221,0 +170759171416,222,0 +170759171464,225,0 +170759171511,222,0 +170759171559,222,0 +170759171609,222,0 +170759171657,222,0 +170759171705,215,0 +170759171754,214,0 +170759171802,215,0 +170759171850,215,0 +170759171898,215,0 +170759171948,216,0 +170759171997,216,0 +170759172045,217,0 +170759172094,218,0 +170759172142,218,0 +170759172192,218,0 +170759172240,219,0 +170759172289,220,0 +170759172337,220,0 +170759172387,222,0 +170759172435,221,0 +170759172483,222,0 +170759172530,222,0 +170759172580,223,0 +170759172628,223,0 +170759172677,216,0 +170759172725,214,0 +170759172775,214,0 +170759172823,214,0 +170759172872,215,0 +170759172920,215,0 +170759172970,215,0 +170759173018,215,0 +170759173067,217,0 +170759173115,217,0 +170759173164,217,0 +170759173212,218,0 +170759173260,219,0 +170759173310,219,0 +170759173359,220,0 +170759173409,220,0 +170759173457,221,0 +170759173505,221,0 +170759173553,222,0 +170759173602,222,0 +170759173650,222,0 +170759173700,215,0 +170759173747,214,0 +170759173795,215,0 +170759173843,214,0 +170759173891,215,0 +170759173939,215,0 +170759173987,216,0 +170759174035,216,0 +170759174083,217,0 +170759174132,217,0 +170759174182,218,0 +170759174231,220,0 +170759174281,220,0 +170759174330,220,0 +170759174380,223,0 +170759174428,223,0 +170759174476,221,0 +170759174524,221,0 +170759174572,222,0 +170759174620,223,0 +170759174669,216,0 +170759174719,214,0 +170759174767,214,0 +170759174816,215,0 +170759174864,215,0 +170759174912,215,0 +170759174962,215,0 +170759175011,215,0 +170759175059,215,0 +170759175107,215,0 +170759175155,215,0 +170759175204,216,0 +170759175252,217,0 +170759175300,218,0 +170759175350,219,0 +170759175398,219,0 +170759175446,220,0 +170759175495,221,0 +170759175543,221,0 +170759175591,222,0 +170759175641,223,0 +170759175689,215,0 +170759175738,214,0 +170759175787,214,0 +170759175835,214,0 +170759175883,214,0 +170759175931,214,0 +170759175979,215,0 +170759176029,215,0 +170759176078,215,0 +170759176126,215,0 +170759176174,215,0 +170759176222,215,0 +170759176272,216,0 +170759176320,218,0 +170759176368,218,0 +170759176416,219,0 +170759176465,219,0 +170759176513,220,0 +170759176561,220,0 +170759176611,222,0 +170759176660,222,0 +170759176708,215,0 +170759176756,214,0 +170759176806,214,0 +170759176855,214,0 +170759176905,215,0 +170759176954,215,0 +170759177002,215,0 +170759177050,215,0 +170759177098,216,0 +170759177146,215,0 +170759177194,217,0 +170759177243,218,0 +170759177291,219,0 +170759177339,217,0 +170759177387,219,0 +170759177437,220,0 +170759177486,221,0 +170759177536,221,0 +170759177585,221,0 +170759177633,223,0 +170759177681,215,0 +170759177731,214,0 +170759177779,214,0 +170759177827,214,0 +170759177876,214,0 +170759177926,214,0 +170759177973,214,0 +170759178021,215,0 +170759178069,215,0 +170759178119,215,0 +170759178168,215,0 +170759178218,216,0 +170759178267,217,0 +170759178315,218,0 +170759178363,219,0 +170759178411,220,0 +170759178461,220,0 +170759178509,220,0 +170759178558,222,0 +170759178607,223,0 +170759178657,222,0 +170759178705,215,0 +170759178753,214,0 +170759178801,214,0 +170759178849,215,0 +170759178898,215,0 +170759178946,215,0 +170759178996,215,0 +170759179044,215,0 +170759179092,215,0 +170759179139,216,0 +170759179189,217,0 +170759179237,217,0 +170759179285,218,0 +170759179333,220,0 +170759179381,220,0 +170759179429,220,0 +170759179477,220,0 +170759179526,221,0 +170759179574,221,0 +170759179622,222,0 +170759179670,216,0 +170759179718,214,0 +170759179766,214,0 +170759179814,215,0 +170759179863,215,0 +170759179911,215,0 +170759179959,216,0 +170759180007,216,0 +170759180055,216,0 +170759180103,217,0 +170759180151,218,0 +170759180201,219,0 +170759180248,219,0 +170759180298,220,0 +170759180347,221,0 +170759180397,222,0 +170759180446,224,0 +170759180494,222,0 +170759180544,223,0 +170759180592,222,0 +170759180641,222,0 +170759180691,215,0 +170759180739,213,0 +170759180787,213,0 +170759180835,213,0 +170759180883,213,0 +170759180930,214,0 +170759180978,213,0 +170759181026,213,0 +170759181076,214,0 +170759181125,214,0 +170759181173,214,0 +170759181221,215,0 +170759181271,214,0 +170759181320,215,0 +170759181370,215,0 +170759181418,216,0 +170759181467,217,0 +170759181517,218,0 +170759181565,218,0 +170759181612,221,0 +170759181662,222,0 +170759181710,215,0 +170759181758,214,0 +170759181807,214,0 +170759181857,214,0 +170759181905,214,0 +170759181954,214,0 +170759182002,214,0 +170759182050,215,0 +170759182099,214,0 +170759182147,215,0 +170759182195,215,0 +170759182245,215,0 +170759182293,216,0 +170759182341,217,0 +170759182389,218,0 +170759182436,218,0 +170759182484,218,0 +170759182534,219,0 +170759182582,220,0 +170759182630,222,0 +170759182677,217,0 +170759182725,214,0 +170759182773,215,0 +170759182821,215,0 +170759182869,215,0 +170759182918,215,0 +170759182966,215,0 +170759183014,216,0 +170759183062,215,0 +170759183111,216,0 +170759183161,216,0 +170759183209,216,0 +170759183257,219,0 +170759183305,218,0 +170759183354,219,0 +170759183404,219,0 +170759183451,220,0 +170759183499,220,0 +170759183547,221,0 +170759183595,222,0 +170759183643,222,0 +170759183691,216,0 +170759183740,215,0 +170759183788,215,0 +170759183836,215,0 +170759183884,215,0 +170759183934,216,0 +170759183982,215,0 +170759184030,215,0 +170759184077,216,0 +170759184125,216,0 +170759184173,217,0 +170759184223,218,0 +170759184272,219,0 +170759184320,219,0 +170759184370,220,0 +170759184419,221,0 +170759184469,221,0 +170759184517,220,0 +170759184564,222,0 +170759184612,222,0 +170759184660,222,0 +170759184710,216,0 +170759184758,215,0 +170759184806,215,0 +170759184854,215,0 +170759184901,215,0 +170759184949,215,0 +170759184997,216,0 +170759185045,216,0 +170759185093,217,0 +170759185141,217,0 +170759185189,218,0 +170759185237,219,0 +170759185285,219,0 +170759185334,222,0 +170759185382,221,0 +170759185430,223,0 +170759185478,221,0 +170759185526,222,0 +170759185574,221,0 +170759185622,222,0 +170759185670,222,0 +170759185718,215,0 +170759185767,214,0 +170759185817,215,0 +170759185866,215,0 +170759185914,216,0 +170759185964,216,0 +170759186012,217,0 +170759186060,217,0 +170759186108,217,0 +170759186156,218,0 +170759186203,220,0 +170759186253,219,0 +170759186301,220,0 +170759186349,221,0 +170759186397,221,0 +170759186446,222,0 +170759186494,221,0 +170759186543,221,0 +170759186593,222,0 +170759186641,222,0 +170759186689,216,0 +170759186737,214,0 +170759186785,214,0 +170759186833,214,0 +170759186880,215,0 +170759186928,215,0 +170759186976,215,0 +170759187024,215,0 +170759187074,216,0 +170759187122,217,0 +170759187169,218,0 +170759187217,218,0 +170759187265,218,0 +170759187313,219,0 +170759187361,220,0 +170759187409,220,0 +170759187458,221,0 +170759187506,222,0 +170759187554,221,0 +170759187604,222,0 +170759187651,222,0 +170759187699,216,0 +170759187749,214,0 +170759187798,214,0 +170759187846,214,0 +170759187894,215,0 +170759187942,214,0 +170759187990,216,0 +170759188040,217,0 +170759188087,217,0 +170759188135,218,0 +170759188185,218,0 +170759188234,218,0 +170759188282,220,0 +170759188330,219,0 +170759188378,220,0 +170759188428,220,0 +170759188476,220,0 +170759188525,222,0 +170759188575,222,0 +170759188623,222,0 +170759188671,221,0 +170759188719,215,0 +170759188766,214,0 +170759188814,215,0 +170759188862,215,0 +170759188910,215,0 +170759188958,216,0 +170759189006,217,0 +170759189054,218,0 +170759189101,218,0 +170759189149,218,0 +170759189197,219,0 +170759189245,220,0 +170759189293,221,0 +170759189341,222,0 +170759189390,223,0 +170759189438,224,0 +170759189486,221,0 +170759189534,222,0 +170759189581,223,0 +170759189629,223,0 +170759189677,222,0 +170759189725,215,0 +170759189773,214,0 +170759189821,215,0 +170759189869,216,0 +170759189916,216,0 +170759189966,217,0 +170759190014,218,0 +170759190062,218,0 +170759190110,219,0 +170759190158,219,0 +170759190207,221,0 +170759190255,222,0 +170759190305,222,0 +170759190353,222,0 +170759190400,222,0 +170759190448,222,0 +170759190496,222,0 +170759190544,222,0 +170759190594,223,0 +170759190642,223,0 +170759190690,216,0 +170759190739,215,0 +170759190789,215,0 +170759190837,216,0 +170759190885,216,0 +170759190932,217,0 +170759190980,218,0 +170759191028,218,0 +170759191076,219,0 +170759191126,219,0 +170759191174,220,0 +170759191222,222,0 +170759191270,222,0 +170759191318,221,0 +170759191367,222,0 +170759191416,222,0 +170759191464,222,0 +170759191512,222,0 +170759191562,222,0 +170759191610,222,0 +170759191658,222,0 +170759191705,216,0 +170759191753,214,0 +170759191801,214,0 +170759191849,214,0 +170759191897,215,0 +170759191944,215,0 +170759191994,215,0 +170759192043,216,0 +170759192091,217,0 +170759192139,217,0 +170759192187,218,0 +170759192235,220,0 +170759192282,220,0 +170759192330,220,0 +170759192378,221,0 +170759192426,221,0 +170759192474,220,0 +170759192521,222,0 +170759192569,222,0 +170759192617,223,0 +170759192665,223,0 +170759192713,215,0 +170759192760,214,0 +170759192808,214,0 +170759192856,214,0 +170759192904,215,0 +170759192952,215,0 +170759193001,215,0 +170759193049,216,0 +170759193097,216,0 +170759193146,216,0 +170759193194,216,0 +170759193244,217,0 +170759193292,218,0 +170759193340,219,0 +170759193387,220,0 +170759193435,219,0 +170759193483,220,0 +170759193531,220,0 +170759193581,221,0 +170759193629,222,0 +170759193676,223,0 +170759193726,215,0 +170759193774,215,0 +170759193821,215,0 +170759193869,215,0 +170759193917,215,0 +170759193965,216,0 +170759194013,217,0 +170759194062,217,0 +170759194112,217,0 +170759194161,218,0 +170759194210,218,0 +170759194258,220,0 +170759194308,220,0 +170759194357,221,0 +170759194405,222,0 +170759194453,222,0 +170759194501,222,0 +170759194549,222,0 +170759194597,223,0 +170759194646,223,0 +170759194694,218,0 +170759194742,214,0 +170759194790,215,0 +170759194838,215,0 +170759194886,215,0 +170759194934,216,0 +170759194982,216,0 +170759195030,217,0 +170759195079,217,0 +170759195129,218,0 +170759195177,219,0 +170759195225,220,0 +170759195274,220,0 +170759195322,220,0 +170759195370,221,0 +170759195418,222,0 +170759195468,222,0 +170759195516,222,0 +170759195563,223,0 +170759195611,222,0 +170759195659,222,0 +170759195709,215,0 +170759195758,215,0 +170759195806,215,0 +170759195856,215,0 +170759195905,215,0 +170759195953,216,0 +170759196001,216,0 +170759196050,217,0 +170759196098,217,0 +170759196146,218,0 +170759196196,218,0 +170759196244,219,0 +170759196292,220,0 +170759196340,221,0 +170759196388,222,0 +170759196435,221,0 +170759196483,222,0 +170759196531,221,0 +170759196579,221,0 +170759196627,222,0 +170759196675,223,0 +170759196725,215,0 +170759196773,214,0 +170759196822,214,0 +170759196870,214,0 +170759196918,214,0 +170759196966,215,0 +170759197014,215,0 +170759197062,216,0 +170759197111,216,0 +170759197159,216,0 +170759197207,217,0 +170759197257,217,0 +170759197305,220,0 +170759197353,219,0 +170759197401,220,0 +170759197448,220,0 +170759197496,220,0 +170759197544,221,0 +170759197594,222,0 +170759197641,222,0 +170759197691,222,0 +170759197739,215,0 +170759197788,215,0 +170759197836,215,0 +170759197886,215,0 +170759197934,215,0 +170759197983,215,0 +170759198033,215,0 +170759198082,215,0 +170759198130,216,0 +170759198178,216,0 +170759198226,217,0 +170759198273,217,0 +170759198321,218,0 +170759198369,219,0 +170759198417,220,0 +170759198465,220,0 +170759198515,220,0 +170759198562,220,0 +170759198610,221,0 +170759198658,222,0 +170759198708,216,0 +170759198755,214,0 +170759198803,215,0 +170759198851,215,0 +170759198899,215,0 +170759198947,216,0 +170759198995,216,0 +170759199043,216,0 +170759199092,217,0 +170759199140,217,0 +170759199188,218,0 +170759199235,219,0 +170759199285,220,0 +170759199334,219,0 +170759199382,221,0 +170759199430,221,0 +170759199478,221,0 +170759199528,222,0 +170759199576,221,0 +170759199624,223,0 +170759199672,222,0 +170759199720,216,0 +170759199767,214,0 +170759199815,214,0 +170759199863,215,0 +170759199913,215,0 +170759199962,216,0 +170759200010,216,0 +170759200058,217,0 +170759200106,217,0 +170759200156,218,0 +170759200205,218,0 +170759200253,220,0 +170759200301,220,0 +170759200349,220,0 +170759200397,221,0 +170759200445,222,0 +170759200494,224,0 +170759200544,222,0 +170759200593,222,0 +170759200641,223,0 +170759200689,222,0 +170759200737,215,0 +170759200785,214,0 +170759200835,215,0 +170759200883,215,0 +170759200930,216,0 +170759200978,216,0 +170759201026,216,0 +170759201074,217,0 +170759201122,221,0 +170759201172,219,0 +170759201220,219,0 +170759201268,220,0 +170759201316,220,0 +170759201363,221,0 +170759201413,221,0 +170759201461,222,0 +170759201509,222,0 +170759201557,222,0 +170759201605,220,0 +170759201653,222,0 +170759201702,223,0 +170759201750,215,0 +170759201798,215,0 +170759201846,215,0 +170759201895,215,0 +170759201943,215,0 +170759201991,216,0 +170759202039,215,0 +170759202087,216,0 +170759202136,217,0 +170759202184,217,0 +170759202232,218,0 +170759202280,218,0 +170759202330,220,0 +170759202379,220,0 +170759202427,221,0 +170759202475,221,0 +170759202523,221,0 +170759202571,219,0 +170759202618,219,0 +170759202666,222,0 +170759202716,216,0 +170759202765,214,0 +170759202815,214,0 +170759202863,215,0 +170759202910,215,0 +170759202958,215,0 +170759203006,215,0 +170759203054,215,0 +170759203104,216,0 +170759203152,216,0 +170759203200,217,0 +170759203247,217,0 +170759203295,218,0 +170759203345,219,0 +170759203393,220,0 +170759203442,220,0 +170759203492,221,0 +170759203540,221,0 +170759203588,221,0 +170759203637,221,0 +170759203687,223,0 +170759203734,215,0 +170759203782,216,0 +170759203830,215,0 +170759203878,215,0 +170759203926,215,0 +170759203974,216,0 +170759204022,217,0 +170759204070,218,0 +170759204118,218,0 +170759204168,218,0 +170759204215,219,0 +170759204263,219,0 +170759204311,221,0 +170759204359,221,0 +170759204409,222,0 +170759204457,225,0 +170759204505,222,0 +170759204553,223,0 +170759204601,222,0 +170759204649,223,0 +170759204696,222,0 +170759204744,215,0 +170759204794,215,0 +170759204842,215,0 +170759204890,215,0 +170759204939,216,0 +170759204989,215,0 +170759205038,216,0 +170759205088,216,0 +170759205136,216,0 +170759205184,216,0 +170759205232,217,0 +170759205280,217,0 +170759205328,218,0 +170759205375,219,0 +170759205423,219,0 +170759205471,219,0 +170759205519,220,0 +170759205567,221,0 +170759205617,221,0 +170759205665,222,0 +170759205714,221,0 +170759205762,215,0 +170759205812,214,0 +170759205860,215,0 +170759205909,215,0 +170759205957,215,0 +170759206005,215,0 +170759206054,215,0 +170759206102,216,0 +170759206150,216,0 +170759206198,217,0 +170759206246,218,0 +170759206294,218,0 +170759206342,219,0 +170759206390,219,0 +170759206439,220,0 +170759206487,221,0 +170759206535,220,0 +170759206585,219,0 +170759206633,222,0 +170759206682,222,0 +170759206730,216,0 +170759206778,214,0 +170759206827,215,0 +170759206877,214,0 +170759206925,215,0 +170759206973,215,0 +170759207021,215,0 +170759207070,215,0 +170759207118,215,0 +170759207166,216,0 +170759207214,216,0 +170759207262,217,0 +170759207312,218,0 +170759207360,219,0 +170759207408,220,0 +170759207455,220,0 +170759207503,220,0 +170759207551,220,0 +170759207601,221,0 +170759207649,223,0 +170759207697,222,0 +170759207745,215,0 +170759207793,215,0 +170759207841,214,0 +170759207890,215,0 +170759207938,216,0 +170759207986,216,0 +170759208034,216,0 +170759208082,217,0 +170759208131,218,0 +170759208179,219,0 +170759208229,219,0 +170759208277,219,0 +170759208324,221,0 +170759208372,221,0 +170759208420,222,0 +170759208468,222,0 +170759208516,222,0 +170759208563,223,0 +170759208611,222,0 +170759208659,223,0 +170759208707,217,0 +170759208756,214,0 +170759208804,214,0 +170759208852,214,0 +170759208900,215,0 +170759208948,215,0 +170759208996,215,0 +170759209044,215,0 +170759209092,216,0 +170759209139,216,0 +170759209187,216,0 +170759209237,216,0 +170759209286,217,0 +170759209334,218,0 +170759209382,219,0 +170759209432,219,0 +170759209481,219,0 +170759209531,220,0 +170759209579,221,0 +170759209628,221,0 +170759209678,222,0 +170759209726,216,0 +170759209775,214,0 +170759209825,214,0 +170759209873,215,0 +170759209921,215,0 +170759209969,215,0 +170759210017,215,0 +170759210064,215,0 +170759210112,216,0 +170759210160,215,0 +170759210208,216,0 +170759210256,216,0 +170759210304,216,0 +170759210354,217,0 +170759210402,218,0 +170759210451,219,0 +170759210499,220,0 +170759210547,220,0 +170759210595,221,0 +170759210645,222,0 +170759210693,224,0 +170759210741,215,0 +170759210788,214,0 +170759210836,215,0 +170759210884,214,0 +170759210932,215,0 +170759210982,215,0 +170759211030,215,0 +170759211077,216,0 +170759211125,216,0 +170759211173,216,0 +170759211223,216,0 +170759211271,218,0 +170759211318,219,0 +170759211366,220,0 +170759211414,223,0 +170759211462,220,0 +170759211512,222,0 +170759211561,221,0 +170759211609,221,0 +170759211657,223,0 +170759211705,223,0 +170759211752,215,0 +170759211800,214,0 +170759211848,215,0 +170759211896,215,0 +170759211944,215,0 +170759211992,215,0 +170759212040,216,0 +170759212088,216,0 +170759212137,216,0 +170759212185,217,0 +170759212233,217,0 +170759212281,218,0 +170759212329,219,0 +170759212378,220,0 +170759212426,220,0 +170759212474,221,0 +170759212522,221,0 +170759212570,223,0 +170759212618,222,0 +170759212665,223,0 +170759212713,219,0 +170759212761,215,0 +170759212809,215,0 +170759212857,215,0 +170759212905,215,0 +170759212953,216,0 +170759213000,217,0 +170759213048,217,0 +170759213096,217,0 +170759213144,218,0 +170759213192,218,0 +170759213240,219,0 +170759213287,220,0 +170759213335,221,0 +170759213383,221,0 +170759213431,222,0 +170759213479,223,0 +170759213528,222,0 +170759213576,221,0 +170759213624,221,0 +170759213673,223,0 +170759213721,216,0 +170759213769,215,0 +170759213816,216,0 +170759213864,215,0 +170759213912,215,0 +170759213960,215,0 +170759214008,216,0 +170759214055,216,0 +170759214103,216,0 +170759214151,218,0 +170759214199,218,0 +170759214247,219,0 +170759214295,220,0 +170759214342,220,0 +170759214390,220,0 +170759214438,220,0 +170759214486,221,0 +170759214534,221,0 +170759214582,222,0 +170759214631,222,0 +170759214679,222,0 +170759214727,216,0 +170759214775,214,0 +170759214823,215,0 +170759214870,215,0 +170759214918,216,0 +170759214966,216,0 +170759215014,217,0 +170759215062,217,0 +170759215109,217,0 +170759215157,218,0 +170759215205,219,0 +170759215253,220,0 +170759215301,220,0 +170759215349,221,0 +170759215396,222,0 +170759215444,221,0 +170759215492,222,0 +170759215540,223,0 +170759215588,221,0 +170759215636,223,0 +170759215683,223,0 +170759215731,216,0 +170759215779,214,0 +170759215827,215,0 +170759215875,215,0 +170759215923,216,0 +170759215970,217,0 +170759216018,217,0 +170759216066,218,0 +170759216114,219,0 +170759216162,219,0 +170759216210,220,0 +170759216257,221,0 +170759216305,222,0 +170759216353,221,0 +170759216401,222,0 +170759216449,222,0 +170759216497,221,0 +170759216545,221,0 +170759216592,222,0 +170759216640,222,0 +170759216688,222,0 +170759216736,216,0 +170759216784,214,0 +170759216831,214,0 +170759216879,215,0 +170759216929,215,0 +170759216977,216,0 +170759217026,217,0 +170759217075,217,0 +170759217125,218,0 +170759217173,232,0 +170759217221,236,0 +170759217268,221,0 +170759217316,221,0 +170759217366,221,0 +170759217413,222,0 +170759217461,222,0 +170759217509,223,0 +170759217557,222,0 +170759217605,223,0 +170759217653,223,0 +170759217700,222,0 +170759217750,215,0 +170759217798,214,0 +170759217845,214,0 +170759217893,215,0 +170759217941,215,0 +170759217989,216,0 +170759218037,217,0 +170759218085,217,0 +170759218134,217,0 +170759218182,218,0 +170759218230,219,0 +170759218278,220,0 +170759218325,220,0 +170759218373,221,0 +170759218421,221,0 +170759218469,221,0 +170759218517,221,0 +170759218565,221,0 +170759218612,222,0 +170759218662,223,0 +170759218709,222,0 +170759218757,215,0 +170759218805,214,0 +170759218853,214,0 +170759218901,214,0 +170759218949,215,0 +170759218997,215,0 +170759219045,216,0 +170759219092,217,0 +170759219140,218,0 +170759219188,218,0 +170759219236,218,0 +170759219284,220,0 +170759219332,220,0 +170759219379,221,0 +170759219427,221,0 +170759219475,222,0 +170759219524,221,0 +170759219572,222,0 +170759219620,221,0 +170759219668,222,0 +170759219716,222,0 +170759219764,215,0 +170759219812,215,0 +170759219859,215,0 +170759219907,214,0 +170759219955,215,0 +170759220003,215,0 +170759220051,215,0 +170759220099,216,0 +170759220146,216,0 +170759220194,218,0 +170759220242,218,0 +170759220290,219,0 +170759220338,219,0 +170759220385,220,0 +170759220433,219,0 +170759220481,221,0 +170759220529,221,0 +170759220578,220,0 +170759220626,220,0 +170759220674,223,0 +170759220722,220,0 +170759220770,214,0 +170759220818,214,0 +170759220865,215,0 +170759220915,215,0 +170759220963,215,0 +170759221010,216,0 +170759221058,216,0 +170759221106,216,0 +170759221154,217,0 +170759221202,217,0 +170759221250,218,0 +170759221298,219,0 +170759221345,219,0 +170759221393,220,0 +170759221441,220,0 +170759221489,221,0 +170759221537,222,0 +170759221585,221,0 +170759221632,221,0 +170759221680,222,0 +170759221728,216,0 +170759221778,214,0 +170759221825,215,0 +170759221873,215,0 +170759221923,215,0 +170759221970,216,0 +170759222018,216,0 +170759222066,217,0 +170759222116,217,0 +170759222163,218,0 +170759222211,218,0 +170759222259,219,0 +170759222307,219,0 +170759222355,220,0 +170759222403,220,0 +170759222451,221,0 +170759222498,221,0 +170759222546,223,0 +170759222594,222,0 +170759222642,222,0 +170759222690,223,0 +170759222738,216,0 +170759222786,214,0 +170759222834,215,0 +170759222881,215,0 +170759222931,215,0 +170759222979,216,0 +170759223027,216,0 +170759223076,216,0 +170759223124,217,0 +170759223172,217,0 +170759223220,218,0 +170759223269,218,0 +170759223317,218,0 +170759223365,219,0 +170759223414,220,0 +170759223462,221,0 +170759223510,222,0 +170759223558,222,0 +170759223606,221,0 +170759223655,221,0 +170759223703,222,0 +170759223751,216,0 +170759223799,214,0 +170759223847,214,0 +170759223895,214,0 +170759223943,215,0 +170759223990,216,0 +170759224038,216,0 +170759224088,217,0 +170759224136,218,0 +170759224184,218,0 +170759224232,219,0 +170759224279,219,0 +170759224327,220,0 +170759224375,219,0 +170759224423,220,0 +170759224471,220,0 +170759224519,221,0 +170759224566,221,0 +170759224614,221,0 +170759224662,222,0 +170759224710,222,0 +170759224758,215,0 +170759224806,214,0 +170759224853,215,0 +170759224901,215,0 +170759224949,215,0 +170759224997,217,0 +170759225045,218,0 +170759225093,217,0 +170759225140,218,0 +170759225188,219,0 +170759225236,219,0 +170759225284,220,0 +170759225332,219,0 +170759225379,220,0 +170759225429,220,0 +170759225477,221,0 +170759225525,222,0 +170759225572,222,0 +170759225622,222,0 +170759225670,223,0 +170759225717,222,0 +170759225765,215,0 +170759225813,214,0 +170759225861,214,0 +170759225911,214,0 +170759225959,215,0 +170759226007,215,0 +170759226056,215,0 +170759226105,216,0 +170759226153,217,0 +170759226201,217,0 +170759226249,217,0 +170759226297,218,0 +170759226345,219,0 +170759226395,219,0 +170759226444,219,0 +170759226492,220,0 +170759226542,220,0 +170759226589,219,0 +170759226637,220,0 +170759226685,222,0 +170759226735,221,0 +170759226783,215,0 +170759226831,214,0 +170759226879,214,0 +170759226928,215,0 +170759226976,215,0 +170759227024,215,0 +170759227072,215,0 +170759227120,216,0 +170759227168,216,0 +170759227216,217,0 +170759227264,217,0 +170759227313,218,0 +170759227363,219,0 +170759227411,219,0 +170759227460,220,0 +170759227510,221,0 +170759227558,220,0 +170759227606,220,0 +170759227654,220,0 +170759227701,224,0 +170759227749,215,0 +170759227797,214,0 +170759227845,214,0 +170759227893,214,0 +170759227941,214,0 +170759227989,215,0 +170759228037,215,0 +170759228084,215,0 +170759228132,215,0 +170759228180,216,0 +170759228229,216,0 +170759228277,216,0 +170759228327,217,0 +170759228375,219,0 +170759228423,221,0 +170759228470,220,0 +170759228518,220,0 +170759228566,221,0 +170759228614,221,0 +170759228662,223,0 +170759228709,223,0 +170759228757,216,0 +170759228805,215,0 +170759228853,215,0 +170759228901,215,0 +170759228949,215,0 +170759228998,215,0 +170759229046,216,0 +170759229094,215,0 +170759229143,216,0 +170759229191,216,0 +170759229239,216,0 +170759229287,217,0 +170759229335,219,0 +170759229383,219,0 +170759229430,220,0 +170759229478,220,0 +170759229526,221,0 +170759229574,221,0 +170759229622,221,0 +170759229670,222,0 +170759229718,222,0 +170759229768,215,0 +170759229817,214,0 +170759229865,215,0 +170759229914,215,0 +170759229962,215,0 +170759230010,215,0 +170759230058,215,0 +170759230106,215,0 +170759230154,216,0 +170759230204,216,0 +170759230253,217,0 +170759230301,217,0 +170759230351,218,0 +170759230399,219,0 +170759230446,220,0 +170759230494,220,0 +170759230542,221,0 +170759230590,221,0 +170759230638,222,0 +170759230686,222,0 +170759230735,223,0 +170759230785,215,0 +170759230833,214,0 +170759230881,214,0 +170759230929,214,0 +170759230977,215,0 +170759231026,214,0 +170759231075,214,0 +170759231123,215,0 +170759231173,215,0 +170759231221,216,0 +170759231269,216,0 +170759231317,217,0 +170759231366,218,0 +170759231416,220,0 +170759231464,220,0 +170759231512,220,0 +170759231560,220,0 +170759231609,221,0 +170759231657,220,0 +170759231705,223,0 +170759231753,215,0 +170759231801,214,0 +170759231849,214,0 +170759231897,214,0 +170759231946,215,0 +170759231996,215,0 +170759232044,215,0 +170759232092,215,0 +170759232141,215,0 +170759232191,216,0 +170759232240,215,0 +170759232288,216,0 +170759232336,218,0 +170759232384,218,0 +170759232434,219,0 +170759232483,220,0 +170759232531,219,0 +170759232579,219,0 +170759232629,219,0 +170759232677,222,0 +170759232725,222,0 +170759232772,215,0 +170759232822,214,0 +170759232871,214,0 +170759232919,215,0 +170759232967,215,0 +170759233017,215,0 +170759233065,215,0 +170759233113,216,0 +170759233161,216,0 +170759233209,217,0 +170759233257,218,0 +170759233304,219,0 +170759233352,218,0 +170759233400,220,0 +170759233448,220,0 +170759233496,220,0 +170759233544,221,0 +170759233592,221,0 +170759233641,222,0 +170759233691,222,0 +170759233739,222,0 +170759233787,215,0 +170759233836,214,0 +170759233884,215,0 +170759233934,215,0 +170759233983,215,0 +170759234033,216,0 +170759234082,217,0 +170759234132,217,0 +170759234180,218,0 +170759234229,219,0 +170759234279,220,0 +170759234327,220,0 +170759234375,222,0 +170759234422,222,0 +170759234470,223,0 +170759234520,223,0 +170759234568,223,0 +170759234617,223,0 +170759234665,223,0 +170759234713,223,0 +170759234761,216,0 +170759234809,214,0 +170759234859,214,0 +170759234907,215,0 +170759234956,215,0 +170759235004,215,0 +170759235052,216,0 +170759235100,216,0 +170759235147,217,0 +170759235195,218,0 +170759235243,218,0 +170759235291,220,0 +170759235339,219,0 +170759235387,220,0 +170759235436,220,0 +170759235484,221,0 +170759235534,222,0 +170759235583,222,0 +170759235631,221,0 +170759235679,223,0 +170759235727,223,0 +170759235777,215,0 +170759235825,214,0 +170759235873,214,0 +170759235921,214,0 +170759235969,215,0 +170759236017,215,0 +170759236066,215,0 +170759236114,215,0 +170759236164,215,0 +170759236211,216,0 +170759236259,216,0 +170759236307,217,0 +170759236357,218,0 +170759236405,220,0 +170759236453,220,0 +170759236502,220,0 +170759236551,220,0 +170759236601,221,0 +170759236649,221,0 +170759236697,222,0 +170759236745,222,0 +170759236793,214,0 +170759236840,214,0 +170759236890,213,0 +170759236940,214,0 +170759236989,214,0 +170759237037,215,0 +170759237085,214,0 +170759237133,215,0 +170759237181,215,0 +170759237230,216,0 +170759237278,216,0 +170759237326,216,0 +170759237374,216,0 +170759237422,216,0 +170759237470,216,0 +170759237518,218,0 +170759237565,218,0 +170759237613,219,0 +170759237663,219,0 +170759237712,222,0 +170759237760,219,0 +170759237808,215,0 +170759237856,215,0 +170759237906,215,0 +170759237955,215,0 +170759238003,216,0 +170759238053,215,0 +170759238102,216,0 +170759238150,216,0 +170759238198,216,0 +170759238246,217,0 +170759238294,219,0 +170759238341,219,0 +170759238389,220,0 +170759238439,222,0 +170759238488,222,0 +170759238536,222,0 +170759238584,222,0 +170759238632,222,0 +170759238680,222,0 +170759238728,223,0 +170759238775,216,0 +170759238823,215,0 +170759238871,215,0 +170759238919,214,0 +170759238967,215,0 +170759239015,215,0 +170759239062,216,0 +170759239110,216,0 +170759239158,216,0 +170759239206,218,0 +170759239254,218,0 +170759239302,219,0 +170759239349,219,0 +170759239397,220,0 +170759239445,220,0 +170759239493,222,0 +170759239541,221,0 +170759239589,222,0 +170759239637,222,0 +170759239686,223,0 +170759239734,223,0 +170759239782,216,0 +170759239830,214,0 +170759239877,215,0 +170759239925,215,0 +170759239975,215,0 +170759240024,215,0 +170759240072,216,0 +170759240120,216,0 +170759240168,216,0 +170759240215,218,0 +170759240263,218,0 +170759240311,219,0 +170759240359,219,0 +170759240407,221,0 +170759240455,221,0 +170759240503,221,0 +170759240551,222,0 +170759240598,223,0 +170759240646,223,0 +170759240694,223,0 +170759240742,223,0 +170759240790,215,0 +170759240838,214,0 +170759240886,214,0 +170759240933,215,0 +170759240981,216,0 +170759241029,216,0 +170759241077,217,0 +170759241125,217,0 +170759241173,219,0 +170759241220,219,0 +170759241268,219,0 +170759241316,220,0 +170759241366,221,0 +170759241413,222,0 +170759241461,222,0 +170759241509,222,0 +170759241557,222,0 +170759241605,225,0 +170759241653,223,0 +170759241701,223,0 +170759241749,222,0 +170759241797,215,0 +170759241844,215,0 +170759241892,215,0 +170759241942,216,0 +170759241990,217,0 +170759242037,217,0 +170759242085,218,0 +170759242135,219,0 +170759242183,219,0 +170759242230,220,0 +170759242278,221,0 +170759242326,221,0 +170759242376,222,0 +170759242424,222,0 +170759242472,222,0 +170759242521,223,0 +170759242569,224,0 +170759242617,223,0 +170759242667,223,0 +170759242715,222,0 +170759242763,215,0 +170759242810,214,0 +170759242858,215,0 +170759242906,215,0 +170759242954,216,0 +170759243002,217,0 +170759243050,218,0 +170759243100,218,0 +170759243147,220,0 +170759243197,220,0 +170759243245,222,0 +170759243293,221,0 +170759243341,221,0 +170759243389,222,0 +170759243437,222,0 +170759243485,223,0 +170759243533,223,0 +170759243582,223,0 +170759243630,224,0 +170759243678,225,0 +170759243726,223,0 +170759243774,216,0 +170759243822,215,0 +170759243870,215,0 +170759243918,216,0 +170759243967,217,0 +170759244015,218,0 +170759244063,219,0 +170759244111,219,0 +170759244159,220,0 +170759244207,220,0 +170759244254,220,0 +170759244302,221,0 +170759244350,221,0 +170759244398,222,0 +170759244446,221,0 +170759244494,222,0 +170759244542,222,0 +170759244591,224,0 +170759244639,225,0 +170759244689,222,0 +170759244737,222,0 +170759244785,216,0 +170759244834,214,0 +170759244884,214,0 +170759244933,215,0 +170759244981,215,0 +170759245029,215,0 +170759245078,215,0 +170759245126,216,0 +170759245176,217,0 +170759245225,218,0 +170759245275,218,0 +170759245323,218,0 +170759245371,220,0 +170759245419,223,0 +170759245467,220,0 +170759245515,221,0 +170759245563,222,0 +170759245610,221,0 +170759245658,221,0 +170759245706,223,0 +170759245754,222,0 +170759245802,215,0 +170759245850,214,0 +170759245897,214,0 +170759245945,215,0 +170759245993,215,0 +170759246041,215,0 +170759246089,215,0 +170759246139,215,0 +170759246186,215,0 +170759246234,217,0 +170759246282,217,0 +170759246330,217,0 +170759246378,219,0 +170759246426,219,0 +170759246473,220,0 +170759246521,220,0 +170759246569,220,0 +170759246617,219,0 +170759246665,220,0 +170759246714,223,0 +170759246762,223,0 +170759246810,215,0 +170759246858,215,0 +170759246906,215,0 +170759246954,215,0 +170759247002,215,0 +170759247050,215,0 +170759247098,216,0 +170759247147,216,0 +170759247197,216,0 +170759247245,217,0 +170759247293,217,0 +170759247341,218,0 +170759247389,219,0 +170759247436,220,0 +170759247484,221,0 +170759247532,221,0 +170759247580,221,0 +170759247628,223,0 +170759247676,222,0 +170759247725,223,0 +170759247773,219,0 +170759247823,215,0 +170759247871,215,0 +170759247919,215,0 +170759247966,215,0 +170759248016,215,0 +170759248064,215,0 +170759248112,215,0 +170759248161,216,0 +170759248211,216,0 +170759248259,217,0 +170759248307,218,0 +170759248356,220,0 +170759248404,222,0 +170759248452,220,0 +170759248500,221,0 +170759248548,223,0 +170759248596,221,0 +170759248644,222,0 +170759248692,224,0 +170759248740,224,0 +170759248787,216,0 +170759248835,215,0 +170759248883,215,0 +170759248931,215,0 +170759248979,215,0 +170759249027,215,0 +170759249075,215,0 +170759249124,216,0 +170759249172,216,0 +170759249222,217,0 +170759249270,218,0 +170759249317,218,0 +170759249365,219,0 +170759249413,220,0 +170759249461,220,0 +170759249509,220,0 +170759249557,220,0 +170759249605,221,0 +170759249653,221,0 +170759249701,221,0 +170759249749,217,0 +170759249798,215,0 +170759249848,214,0 +170759249896,215,0 +170759249944,215,0 +170759249992,215,0 +170759250041,216,0 +170759250089,215,0 +170759250137,216,0 +170759250186,216,0 +170759250234,216,0 +170759250284,217,0 +170759250332,217,0 +170759250380,219,0 +170759250428,220,0 +170759250477,221,0 +170759250525,222,0 +170759250573,221,0 +170759250623,221,0 +170759250670,220,0 +170759250720,222,0 +170759250768,223,0 +170759250816,214,0 +170759250864,214,0 +170759250913,214,0 +170759250961,215,0 +170759251009,215,0 +170759251058,215,0 +170759251108,215,0 +170759251156,216,0 +170759251203,216,0 +170759251251,217,0 +170759251299,217,0 +170759251349,218,0 +170759251397,219,0 +170759251444,219,0 +170759251492,220,0 +170759251542,219,0 +170759251590,220,0 +170759251639,221,0 +170759251689,220,0 +170759251738,223,0 +170759251786,215,0 +170759251835,214,0 +170759251883,214,0 +170759251933,214,0 +170759251981,215,0 +170759252029,215,0 +170759252077,215,0 +170759252124,216,0 +170759252174,216,0 +170759252222,216,0 +170759252271,217,0 +170759252321,218,0 +170759252369,219,0 +170759252417,219,0 +170759252465,220,0 +170759252514,220,0 +170759252562,220,0 +170759252612,221,0 +170759252660,222,0 +170759252708,222,0 +170759252756,223,0 +170759252803,215,0 +170759252851,214,0 +170759252899,215,0 +170759252947,215,0 +170759252995,215,0 +170759253044,215,0 +170759253092,216,0 +170759253140,216,0 +170759253188,217,0 +170759253236,218,0 +170759253284,219,0 +170759253331,219,0 +170759253379,220,0 +170759253427,221,0 +170759253476,222,0 +170759253524,221,0 +170759253572,221,0 +170759253620,222,0 +170759253668,221,0 +170759253716,223,0 +170759253764,222,0 +170759253811,215,0 +170759253859,214,0 +170759253907,215,0 +170759253955,215,0 +170759254003,215,0 +170759254051,215,0 +170759254098,216,0 +170759254146,216,0 +170759254194,217,0 +170759254242,219,0 +170759254290,219,0 +170759254338,219,0 +170759254387,220,0 +170759254437,220,0 +170759254485,221,0 +170759254532,221,0 +170759254580,222,0 +170759254628,221,0 +170759254676,222,0 +170759254724,223,0 +170759254773,223,0 +170759254821,215,0 +170759254869,215,0 +170759254917,215,0 +170759254964,215,0 +170759255012,216,0 +170759255060,216,0 +170759255108,217,0 +170759255156,218,0 +170759255204,218,0 +170759255251,218,0 +170759255299,219,0 +170759255347,219,0 +170759255395,221,0 +170759255443,221,0 +170759255491,222,0 +170759255538,221,0 +170759255586,222,0 +170759255636,222,0 +170759255684,221,0 +170759255732,223,0 +170759255779,217,0 +170759255827,214,0 +170759255875,213,0 +170759255923,213,0 +170759255971,213,0 +170759256019,213,0 +170759256066,213,0 +170759256114,214,0 +170759256162,213,0 +170759256210,214,0 +170759256258,214,0 +170759256306,214,0 +170759256353,214,0 +170759256401,214,0 +170759256449,214,0 +170759256497,215,0 +170759256546,216,0 +170759256594,216,0 +170759256642,217,0 +170759256690,222,0 +170759256738,224,0 +170759256786,216,0 +170759256834,214,0 +170759256881,214,0 +170759256929,215,0 +170759256977,214,0 +170759257025,214,0 +170759257073,215,0 +170759257121,215,0 +170759257168,216,0 +170759257216,215,0 +170759257264,216,0 +170759257314,216,0 +170759257361,218,0 +170759257409,218,0 +170759257457,218,0 +170759257505,219,0 +170759257553,219,0 +170759257600,220,0 +170759257648,221,0 +170759257696,222,0 +170759257744,222,0 +170759257792,216,0 +170759257840,214,0 +170759257888,215,0 +170759257938,215,0 +170759257985,215,0 +170759258035,216,0 +170759258083,215,0 +170759258131,215,0 +170759258179,216,0 +170759258227,216,0 +170759258275,217,0 +170759258323,218,0 +170759258371,218,0 +170759258419,219,0 +170759258468,220,0 +170759258516,220,0 +170759258564,220,0 +170759258612,221,0 +170759258660,221,0 +170759258708,222,0 +170759258757,222,0 +170759258805,216,0 +170759258855,214,0 +170759258903,214,0 +170759258951,215,0 +170759258999,215,0 +170759259047,216,0 +170759259094,215,0 +170759259142,216,0 +170759259190,217,0 +170759259240,216,0 +170759259288,217,0 +170759259336,218,0 +170759259384,220,0 +170759259432,219,0 +170759259480,220,0 +170759259528,220,0 +170759259575,220,0 +170759259625,220,0 +170759259673,221,0 +170759259722,222,0 +170759259772,222,0 +170759259820,215,0 +170759259868,215,0 +170759259916,215,0 +170759259964,216,0 +170759260013,216,0 +170759260061,217,0 +170759260111,217,0 +170759260159,217,0 +170759260208,218,0 +170759260258,219,0 +170759260305,219,0 +170759260353,221,0 +170759260401,221,0 +170759260449,221,0 +170759260497,222,0 +170759260547,224,0 +170759260595,223,0 +170759260642,223,0 +170759260690,225,0 +170759260738,222,0 +170759260786,215,0 +170759260834,215,0 +170759260883,215,0 +170759260933,215,0 +170759260982,215,0 +170759261030,217,0 +170759261078,217,0 +170759261126,217,0 +170759261174,217,0 +170759261222,218,0 +170759261272,218,0 +170759261319,219,0 +170759261367,220,0 +170759261415,221,0 +170759261463,222,0 +170759261511,222,0 +170759261561,222,0 +170759261610,223,0 +170759261658,223,0 +170759261707,222,0 +170759261757,222,0 +170759261805,216,0 +170759261853,214,0 +170759261901,214,0 +170759261950,214,0 +170759262000,215,0 +170759262048,215,0 +170759262095,216,0 +170759262143,216,0 +170759262191,217,0 +170759262239,218,0 +170759262287,218,0 +170759262335,220,0 +170759262385,220,0 +170759262433,220,0 +170759262480,223,0 +170759262528,223,0 +170759262576,223,0 +170759262626,220,0 +170759262673,224,0 +170759262721,224,0 +170759262769,222,0 +170759262817,215,0 +170759262865,214,0 +170759262913,214,0 +170759262961,214,0 +170759263009,215,0 +170759263057,215,0 +170759263106,215,0 +170759263154,216,0 +170759263202,216,0 +170759263252,217,0 +170759263300,218,0 +170759263349,219,0 +170759263399,219,0 +170759263447,220,0 +170759263495,221,0 +170759263543,222,0 +170759263592,225,0 +170759263640,222,0 +170759263690,222,0 +170759263739,223,0 +170759263787,217,0 +170759263836,214,0 +170759263884,214,0 +170759263932,215,0 +170759263980,215,0 +170759264030,215,0 +170759264078,215,0 +170759264127,216,0 +170759264177,217,0 +170759264225,217,0 +170759264273,218,0 +170759264321,219,0 +170759264370,219,0 +170759264418,220,0 +170759264466,221,0 +170759264514,220,0 +170759264562,220,0 +170759264610,220,0 +170759264658,219,0 +170759264706,222,0 +170759264754,222,0 +170759264802,216,0 +170759264850,214,0 +170759264898,214,0 +170759264946,214,0 +170759264994,215,0 +170759265041,215,0 +170759265089,216,0 +170759265137,215,0 +170759265185,217,0 +170759265233,217,0 +170759265281,217,0 +170759265329,219,0 +170759265378,218,0 +170759265426,219,0 +170759265474,220,0 +170759265524,221,0 +170759265573,221,0 +170759265623,220,0 +170759265671,221,0 +170759265719,221,0 +170759265768,223,0 +170759265818,215,0 +170759265865,214,0 +170759265915,214,0 +170759265963,215,0 +170759266011,215,0 +170759266059,216,0 +170759266108,215,0 +170759266156,216,0 +170759266206,216,0 +170759266254,217,0 +170759266303,217,0 +170759266351,218,0 +170759266399,219,0 +170759266447,221,0 +170759266495,221,0 +170759266544,221,0 +170759266594,222,0 +170759266642,223,0 +170759266690,222,0 +170759266737,223,0 +170759266787,218,0 +170759266835,214,0 +170759266883,214,0 +170759266932,215,0 +170759266980,214,0 +170759267028,215,0 +170759267076,215,0 +170759267126,215,0 +170759267174,216,0 +170759267223,216,0 +170759267271,216,0 +170759267319,217,0 +170759267367,217,0 +170759267415,218,0 +170759267464,219,0 +170759267512,220,0 +170759267560,220,0 +170759267608,220,0 +170759267656,221,0 +170759267704,222,0 +170759267752,222,0 +170759267801,216,0 +170759267849,215,0 +170759267898,215,0 +170759267946,215,0 +170759267996,215,0 +170759268044,215,0 +170759268092,216,0 +170759268140,216,0 +170759268188,216,0 +170759268235,216,0 +170759268285,216,0 +170759268333,217,0 +170759268382,218,0 +170759268430,219,0 +170759268480,220,0 +170759268528,220,0 +170759268577,221,0 +170759268627,221,0 +170759268675,220,0 +170759268722,222,0 +170759268770,222,0 +170759268818,216,0 +170759268866,215,0 +170759268914,215,0 +170759268962,215,0 +170759269010,216,0 +170759269058,216,0 +170759269106,217,0 +170759269154,218,0 +170759269202,219,0 +170759269251,219,0 +170759269299,220,0 +170759269347,220,0 +170759269395,221,0 +170759269445,221,0 +170759269493,222,0 +170759269541,222,0 +170759269589,222,0 +170759269638,223,0 +170759269686,223,0 +170759269736,223,0 +170759269783,222,0 +170759269831,215,0 +170759269879,215,0 +170759269927,216,0 +170759269977,217,0 +170759270025,217,0 +170759270073,218,0 +170759270121,219,0 +170759270169,219,0 +170759270218,220,0 +170759270266,220,0 +170759270316,222,0 +170759270365,222,0 +170759270413,222,0 +170759270461,223,0 +170759270509,224,0 +170759270557,223,0 +170759270605,223,0 +170759270654,223,0 +170759270702,223,0 +170759270750,223,0 +170759270798,216,0 +170759270846,214,0 +170759270894,214,0 +170759270942,214,0 +170759270990,215,0 +170759271038,215,0 +170759271086,215,0 +170759271133,216,0 +170759271181,217,0 +170759271231,218,0 +170759271279,219,0 +170759271327,219,0 +170759271375,220,0 +170759271423,221,0 +170759271471,220,0 +170759271520,221,0 +170759271568,221,0 +170759271616,221,0 +170759271664,221,0 +170759271712,222,0 +170759271761,222,0 +170759271809,216,0 +170759271857,214,0 +170759271905,215,0 +170759271953,215,0 +170759272001,215,0 +170759272051,215,0 +170759272099,215,0 +170759272146,215,0 +170759272194,216,0 +170759272242,215,0 +170759272290,215,0 +170759272338,216,0 +170759272386,217,0 +170759272434,218,0 +170759272482,218,0 +170759272530,219,0 +170759272578,220,0 +170759272628,220,0 +170759272675,221,0 +170759272723,222,0 +170759272771,222,0 +170759272819,215,0 +170759272867,214,0 +170759272915,215,0 +170759272963,214,0 +170759273011,214,0 +170759273061,215,0 +170759273109,215,0 +170759273158,215,0 +170759273206,215,0 +170759273254,216,0 +170759273303,217,0 +170759273353,217,0 +170759273401,219,0 +170759273449,220,0 +170759273498,220,0 +170759273548,221,0 +170759273596,222,0 +170759273644,222,0 +170759273692,222,0 +170759273740,223,0 +170759273789,220,0 +170759273839,215,0 +170759273887,215,0 +170759273936,215,0 +170759273984,215,0 +170759274032,215,0 +170759274080,215,0 +170759274129,217,0 +170759274179,216,0 +170759274227,217,0 +170759274276,218,0 +170759274324,218,0 +170759274372,220,0 +170759274420,220,0 +170759274468,221,0 +170759274516,221,0 +170759274564,222,0 +170759274612,222,0 +170759274660,224,0 +170759274707,222,0 +170759274755,223,0 +170759274803,216,0 +170759274851,214,0 +170759274899,214,0 +170759274947,214,0 +170759274996,215,0 +170759275044,215,0 +170759275092,215,0 +170759275140,215,0 +170759275187,216,0 +170759275235,216,0 +170759275283,216,0 +170759275331,217,0 +170759275379,218,0 +170759275427,219,0 +170759275475,220,0 +170759275523,220,0 +170759275570,221,0 +170759275620,222,0 +170759275668,221,0 +170759275716,223,0 +170759275764,223,0 +170759275811,216,0 +170759275861,214,0 +170759275909,214,0 +170759275958,215,0 +170759276006,215,0 +170759276054,215,0 +170759276102,215,0 +170759276150,215,0 +170759276197,215,0 +170759276245,216,0 +170759276293,217,0 +170759276341,218,0 +170759276389,219,0 +170759276437,219,0 +170759276485,220,0 +170759276533,222,0 +170759276580,221,0 +170759276628,221,0 +170759276676,221,0 +170759276726,226,0 +170759276773,222,0 +170759276823,215,0 +170759276871,214,0 +170759276919,214,0 +170759276966,214,0 +170759277014,215,0 +170759277062,215,0 +170759277110,215,0 +170759277158,215,0 +170759277206,215,0 +170759277253,216,0 +170759277303,217,0 +170759277351,217,0 +170759277400,219,0 +170759277448,219,0 +170759277498,220,0 +170759277547,221,0 +170759277595,221,0 +170759277643,222,0 +170759277691,221,0 +170759277739,223,0 +170759277787,219,0 +170759277835,214,0 +170759277883,214,0 +170759277930,214,0 +170759277978,214,0 +170759278028,214,0 +170759278076,215,0 +170759278124,215,0 +170759278172,215,0 +170759278221,215,0 +170759278269,215,0 +170759278319,216,0 +170759278367,216,0 +170759278414,217,0 +170759278462,218,0 +170759278510,219,0 +170759278558,220,0 +170759278606,221,0 +170759278654,221,0 +170759278702,221,0 +170759278752,223,0 +170759278800,216,0 +170759278848,214,0 +170759278897,214,0 +170759278945,215,0 +170759278993,215,0 +170759279042,215,0 +170759279090,215,0 +170759279138,215,0 +170759279186,216,0 +170759279234,216,0 +170759279282,216,0 +170759279330,217,0 +170759279380,218,0 +170759279427,219,0 +170759279477,220,0 +170759279526,219,0 +170759279576,223,0 +170759279624,222,0 +170759279673,222,0 +170759279721,223,0 +170759279769,223,0 +170759279817,216,0 +170759279865,214,0 +170759279913,214,0 +170759279961,214,0 +170759280009,215,0 +170759280057,215,0 +170759280106,215,0 +170759280154,216,0 +170759280202,216,0 +170759280250,218,0 +170759280299,218,0 +170759280347,219,0 +170759280395,219,0 +170759280443,220,0 +170759280491,221,0 +170759280539,221,0 +170759280587,222,0 +170759280634,221,0 +170759280682,223,0 +170759280730,222,0 +170759280778,222,0 +170759280826,215,0 +170759280874,215,0 +170759280921,215,0 +170759280969,215,0 +170759281017,216,0 +170759281065,217,0 +170759281114,217,0 +170759281162,218,0 +170759281210,218,0 +170759281258,219,0 +170759281306,220,0 +170759281354,220,0 +170759281403,220,0 +170759281451,222,0 +170759281499,222,0 +170759281547,223,0 +170759281595,231,0 +170759281643,223,0 +170759281691,223,0 +170759281739,223,0 +170759281787,222,0 +170759281834,215,0 +170759281882,215,0 +170759281932,215,0 +170759281979,216,0 +170759282027,216,0 +170759282075,216,0 +170759282123,216,0 +170759282172,218,0 +170759282222,218,0 +170759282270,218,0 +170759282318,219,0 +170759282367,220,0 +170759282415,221,0 +170759282463,222,0 +170759282511,221,0 +170759282558,224,0 +170759282606,223,0 +170759282654,224,0 +170759282702,223,0 +170759282750,223,0 +170759282798,218,0 +170759282846,214,0 +170759282893,215,0 +170759282941,214,0 +170759282989,215,0 +170759283037,216,0 +170759283085,216,0 +170759283133,217,0 +170759283181,217,0 +170759283228,218,0 +170759283276,218,0 +170759283324,219,0 +170759283372,220,0 +170759283420,221,0 +170759283468,220,0 +170759283516,222,0 +170759283564,223,0 +170759283612,223,0 +170759283660,224,0 +170759283707,223,0 +170759283755,223,0 +170759283803,218,0 +170759283851,214,0 +170759283899,215,0 +170759283947,215,0 +170759283995,215,0 +170759284043,215,0 +170759284090,216,0 +170759284138,217,0 +170759284186,218,0 +170759284234,218,0 +170759284282,219,0 +170759284330,219,0 +170759284377,221,0 +170759284425,221,0 +170759284473,223,0 +170759284521,222,0 +170759284569,224,0 +170759284618,223,0 +170759284666,223,0 +170759284714,222,0 +170759284762,222,0 +170759284810,216,0 +170759284858,214,0 +170759284907,214,0 +170759284955,214,0 +170759285003,215,0 +170759285051,215,0 +170759285098,215,0 +170759285146,216,0 +170759285194,217,0 +170759285242,218,0 +170759285290,218,0 +170759285338,219,0 +170759285386,220,0 +170759285433,220,0 +170759285483,221,0 +170759285531,222,0 +170759285578,221,0 +170759285626,222,0 +170759285674,222,0 +170759285722,223,0 +170759285770,223,0 +170759285818,215,0 +170759285866,214,0 +170759285914,214,0 +170759285961,214,0 +170759286009,215,0 +170759286057,215,0 +170759286105,215,0 +170759286153,215,0 +170759286200,216,0 +170759286250,217,0 +170759286298,218,0 +170759286346,218,0 +170759286394,219,0 +170759286441,220,0 +170759286489,222,0 +170759286537,221,0 +170759286585,221,0 +170759286633,222,0 +170759286681,222,0 +170759286728,223,0 +170759286776,223,0 +170759286824,216,0 +170759286872,214,0 +170759286920,215,0 +170759286968,215,0 +170759287016,215,0 +170759287063,215,0 +170759287111,215,0 +170759287159,216,0 +170759287207,216,0 +170759287255,217,0 +170759287303,217,0 +170759287351,219,0 +170759287398,220,0 +170759287448,221,0 +170759287496,221,0 +170759287544,222,0 +170759287591,222,0 +170759287639,223,0 +170759287687,222,0 +170759287735,223,0 +170759287783,223,0 +170759287831,215,0 +170759287879,214,0 +170759287926,214,0 +170759287975,214,0 +170759288022,214,0 +170759288072,215,0 +170759288120,215,0 +170759288168,215,0 +170759288216,215,0 +170759288264,216,0 +170759288311,217,0 +170759288359,217,0 +170759288407,219,0 +170759288455,220,0 +170759288505,220,0 +170759288552,221,0 +170759288602,223,0 +170759288651,221,0 +170759288699,221,0 +170759288747,223,0 +170759288795,217,0 +170759288843,214,0 +170759288891,214,0 +170759288939,214,0 +170759288987,214,0 +170759289035,214,0 +170759289083,214,0 +170759289131,215,0 +170759289180,215,0 +170759289228,215,0 +170759289276,215,0 +170759289325,216,0 +170759289375,217,0 +170759289423,218,0 +170759289471,219,0 +170759289520,219,0 +170759289568,220,0 +170759289616,220,0 +170759289666,222,0 +170759289714,222,0 +170759289762,222,0 +170759289811,216,0 +170759289861,214,0 +170759289909,214,0 +170759289958,214,0 +170759290006,214,0 +170759290054,215,0 +170759290102,215,0 +170759290150,215,0 +170759290198,215,0 +170759290246,216,0 +170759290294,216,0 +170759290343,216,0 +170759290391,218,0 +170759290439,218,0 +170759290487,218,0 +170759290535,220,0 +170759290584,220,0 +170759290632,220,0 +170759290680,221,0 +170759290728,222,0 +170759290776,223,0 +170759290824,215,0 +170759290872,214,0 +170759290921,214,0 +170759290971,214,0 +170759291019,214,0 +170759291067,214,0 +170759291115,215,0 +170759291164,215,0 +170759291214,215,0 +170759291262,216,0 +170759291309,216,0 +170759291357,216,0 +170759291405,217,0 +170759291453,219,0 +170759291503,219,0 +170759291552,219,0 +170759291602,220,0 +170759291650,220,0 +170759291699,220,0 +170759291749,222,0 +170759291796,222,0 +170759291844,214,0 +170759291894,214,0 +170759291942,214,0 +170759291991,214,0 +170759292039,214,0 +170759292087,215,0 +170759292135,215,0 +170759292183,215,0 +170759292232,215,0 +170759292282,215,0 +170759292330,216,0 +170759292377,216,0 +170759292425,216,0 +170759292473,216,0 +170759292521,216,0 +170759292571,216,0 +170759292620,217,0 +170759292670,218,0 +170759292718,219,0 +170759292766,219,0 +170759292814,220,0 +170759292861,221,0 +170759292911,221,0 +170759292959,223,0 +170759293008,222,0 +170759293056,223,0 +170759293104,222,0 +170759293152,223,0 +170759293202,223,0 +170759293250,222,0 +170759293298,216,0 +170759293347,214,0 +170759293395,214,0 +170759293443,214,0 +170759293493,214,0 +170759293541,214,0 +170759293590,215,0 +170759293638,215,0 +170759293686,215,0 +170759293734,215,0 +170759293782,215,0 +170759293831,216,0 +170759293881,217,0 +170759293929,218,0 +170759293977,219,0 +170759294025,219,0 +170759294073,220,0 +170759294121,220,0 +170759294169,221,0 +170759294218,223,0 +170759294266,223,0 +170759294314,216,0 +170759294362,215,0 +170759294410,214,0 +170759294458,215,0 +170759294506,215,0 +170759294556,215,0 +170759294605,215,0 +170759294653,216,0 +170759294701,216,0 +170759294749,216,0 +170759294797,217,0 +170759294845,218,0 +170759294893,218,0 +170759294940,220,0 +170759294988,220,0 +170759295036,220,0 +170759295084,221,0 +170759295134,222,0 +170759295181,222,0 +170759295231,221,0 +170759295279,222,0 +170759295328,215,0 +170759295376,214,0 +170759295424,214,0 +170759295472,215,0 +170759295521,215,0 +170759295569,215,0 +170759295617,216,0 +170759295665,217,0 +170759295713,217,0 +170759295761,218,0 +170759295808,219,0 +170759295856,220,0 +170759295904,221,0 +170759295952,222,0 +170759296000,222,0 +170759296047,222,0 +170759296095,222,0 +170759296145,222,0 +170759296193,222,0 +170759296240,223,0 +170759296288,222,0 +170759296336,214,0 +170759296384,214,0 +170759296432,215,0 +170759296480,215,0 +170759296528,215,0 +170759296575,215,0 +170759296625,216,0 +170759296673,217,0 +170759296721,217,0 +170759296769,218,0 +170759296817,219,0 +170759296866,219,0 +170759296914,221,0 +170759296962,220,0 +170759297010,222,0 +170759297058,221,0 +170759297106,222,0 +170759297154,222,0 +170759297202,222,0 +170759297250,224,0 +170759297298,222,0 +170759297345,215,0 +170759297393,215,0 +170759297441,216,0 +170759297491,217,0 +170759297539,218,0 +170759297587,218,0 +170759297635,219,0 +170759297683,219,0 +170759297732,219,0 +170759297780,220,0 +170759297828,220,0 +170759297876,221,0 +170759297924,223,0 +170759297972,223,0 +170759298020,224,0 +170759298068,223,0 +170759298116,223,0 +170759298164,222,0 +170759298213,223,0 +170759298261,223,0 +170759298309,216,0 +170759298357,214,0 +170759298405,215,0 +170759298453,215,0 +170759298501,216,0 +170759298548,216,0 +170759298596,217,0 +170759298644,218,0 +170759298692,219,0 +170759298740,218,0 +170759298788,219,0 +170759298838,220,0 +170759298887,221,0 +170759298935,222,0 +170759298983,221,0 +170759299031,223,0 +170759299079,223,0 +170759299128,224,0 +170759299176,225,0 +170759299224,223,0 +170759299272,223,0 +170759299320,215,0 +170759299368,214,0 +170759299415,215,0 +170759299463,215,0 +170759299513,216,0 +170759299561,216,0 +170759299610,217,0 +170759299660,217,0 +170759299708,217,0 +170759299756,218,0 +170759299804,219,0 +170759299851,220,0 +170759299901,221,0 +170759299950,222,0 +170759299998,222,0 +170759300046,223,0 +170759300094,223,0 +170759300144,223,0 +170759300193,223,0 +170759300241,223,0 +170759300289,222,0 +170759300339,215,0 +170759300388,215,0 +170759300437,215,0 +170759300485,215,0 +170759300533,216,0 +170759300581,216,0 +170759300629,217,0 +170759300677,218,0 +170759300726,218,0 +170759300774,219,0 +170759300824,219,0 +170759300872,219,0 +170759300920,219,0 +170759300967,221,0 +170759301015,222,0 +170759301063,222,0 +170759301111,223,0 +170759301159,222,0 +170759301209,222,0 +170759301257,223,0 +170759301304,221,0 +170759301352,214,0 +170759301400,215,0 +170759301450,214,0 +170759301498,215,0 +170759301547,215,0 +170759301597,215,0 +170759301646,216,0 +170759301694,217,0 +170759301744,217,0 +170759301793,217,0 +170759301841,219,0 +170759301889,220,0 +170759301937,220,0 +170759301987,221,0 +170759302035,221,0 +170759302083,222,0 +170759302130,222,0 +170759302178,220,0 +170759302226,222,0 +170759302274,223,0 +170759302322,216,0 +170759302370,214,0 +170759302418,214,0 +170759302466,214,0 +170759302514,215,0 +170759302562,215,0 +170759302610,215,0 +170759302658,216,0 +170759302706,217,0 +170759302755,217,0 +170759302805,217,0 +170759302853,219,0 +170759302901,219,0 +170759302948,221,0 +170759302996,220,0 +170759303044,222,0 +170759303092,222,0 +170759303140,222,0 +170759303189,222,0 +170759303237,222,0 +170759303285,223,0 +170759303333,215,0 +170759303381,214,0 +170759303429,213,0 +170759303477,214,0 +170759303524,214,0 +170759303572,214,0 +170759303620,214,0 +170759303670,214,0 +170759303719,214,0 +170759303769,214,0 +170759303817,215,0 +170759303866,215,0 +170759303914,215,0 +170759303962,217,0 +170759304010,217,0 +170759304060,218,0 +170759304108,218,0 +170759304157,220,0 +170759304205,220,0 +170759304253,223,0 +170759304301,222,0 +170759304349,215,0 +170759304396,214,0 +170759304444,215,0 +170759304492,215,0 +170759304540,215,0 +170759304588,215,0 +170759304636,216,0 +170759304684,216,0 +170759304732,216,0 +170759304781,216,0 +170759304831,217,0 +170759304879,219,0 +170759304927,219,0 +170759304976,221,0 +170759305024,221,0 +170759305072,221,0 +170759305120,222,0 +170759305168,221,0 +170759305216,221,0 +170759305264,223,0 +170759305313,216,0 +170759305361,215,0 +170759305411,215,0 +170759305458,215,0 +170759305508,215,0 +170759305558,215,0 +170759305606,216,0 +170759305653,216,0 +170759305701,217,0 +170759305749,218,0 +170759305797,218,0 +170759305845,219,0 +170759305895,220,0 +170759305943,220,0 +170759305991,221,0 +170759306039,224,0 +170759306088,221,0 +170759306136,222,0 +170759306184,224,0 +170759306232,223,0 +170759306280,222,0 +170759306329,216,0 +170759306379,214,0 +170759306427,215,0 +170759306475,215,0 +170759306524,215,0 +170759306572,215,0 +170759306620,215,0 +170759306668,215,0 +170759306716,216,0 +170759306765,216,0 +170759306815,217,0 +170759306863,217,0 +170759306912,218,0 +170759306960,219,0 +170759307008,220,0 +170759307056,220,0 +170759307104,221,0 +170759307152,222,0 +170759307200,222,0 +170759307248,223,0 +170759307297,223,0 +170759307345,215,0 +170759307395,215,0 +170759307443,214,0 +170759307492,215,0 +170759307540,215,0 +170759307590,215,0 +170759307638,215,0 +170759307686,215,0 +170759307733,215,0 +170759307781,216,0 +170759307829,216,0 +170759307879,217,0 +170759307927,218,0 +170759307975,219,0 +170759308022,221,0 +170759308072,220,0 +170759308121,221,0 +170759308169,222,0 +170759308219,221,0 +170759308267,225,0 +170759308316,218,0 +170759308366,214,0 +170759308414,214,0 +170759308463,214,0 +170759308513,215,0 +170759308561,215,0 +170759308609,215,0 +170759308658,215,0 +170759308708,216,0 +170759308755,215,0 +170759308805,216,0 +170759308853,217,0 +170759308901,218,0 +170759308949,219,0 +170759308998,219,0 +170759309048,220,0 +170759309097,221,0 +170759309145,221,0 +170759309195,221,0 +170759309243,222,0 +170759309292,224,0 +170759309340,215,0 +170759309388,214,0 +170759309436,215,0 +170759309484,214,0 +170759309532,215,0 +170759309580,215,0 +170759309630,215,0 +170759309679,215,0 +170759309727,216,0 +170759309775,217,0 +170759309825,218,0 +170759309873,218,0 +170759309920,219,0 +170759309970,220,0 +170759310018,221,0 +170759310066,221,0 +170759310114,221,0 +170759310163,222,0 +170759310211,222,0 +170759310261,223,0 +170759310308,217,0 +170759310358,215,0 +170759310406,215,0 +170759310455,215,0 +170759310503,215,0 +170759310553,215,0 +170759310601,215,0 +170759310649,215,0 +170759310697,216,0 +170759310745,217,0 +170759310794,218,0 +170759310842,218,0 +170759310890,220,0 +170759310938,220,0 +170759310986,221,0 +170759311034,222,0 +170759311083,221,0 +170759311131,222,0 +170759311181,222,0 +170759311229,222,0 +170759311276,223,0 +170759311326,216,0 +170759311374,215,0 +170759311423,215,0 +170759311471,215,0 +170759311519,215,0 +170759311569,215,0 +170759311618,215,0 +170759311666,216,0 +170759311714,216,0 +170759311764,217,0 +170759311812,218,0 +170759311861,218,0 +170759311909,219,0 +170759311957,219,0 +170759312007,222,0 +170759312054,221,0 +170759312102,222,0 +170759312150,222,0 +170759312200,222,0 +170759312248,223,0 +170759312295,222,0 +170759312343,215,0 +170759312393,213,0 +170759312441,213,0 +170759312489,213,0 +170759312538,213,0 +170759312586,213,0 +170759312636,213,0 +170759312683,213,0 +170759312731,213,0 +170759312779,213,0 +170759312829,213,0 +170759312877,213,0 +170759312925,213,0 +170759312973,213,0 +170759313020,213,0 +170759313068,214,0 +170759313116,214,0 +170759313164,215,0 +170759313212,216,0 +170759313260,221,0 +170759313308,222,0 +170759313358,215,0 +170759313406,215,0 +170759313455,215,0 +170759313505,215,0 +170759313554,215,0 +170759313602,215,0 +170759313650,216,0 +170759313698,215,0 +170759313746,216,0 +170759313795,216,0 +170759313845,217,0 +170759313893,218,0 +170759313941,219,0 +170759313988,219,0 +170759314036,220,0 +170759314084,220,0 +170759314134,221,0 +170759314181,222,0 +170759314231,221,0 +170759314279,223,0 +170759314328,216,0 +170759314376,213,0 +170759314424,213,0 +170759314472,213,0 +170759314520,213,0 +170759314568,213,0 +170759314617,214,0 +170759314665,214,0 +170759314713,214,0 +170759314762,215,0 +170759314810,214,0 +170759314860,215,0 +170759314908,215,0 +170759314956,215,0 +170759315004,216,0 +170759315051,216,0 +170759315101,217,0 +170759315149,217,0 +170759315197,217,0 +170759315245,221,0 +170759315294,223,0 +170759315342,216,0 +170759315390,214,0 +170759315438,214,0 +170759315486,215,0 +170759315534,215,0 +170759315583,215,0 +170759315631,215,0 +170759315681,216,0 +170759315730,216,0 +170759315778,217,0 +170759315828,216,0 +170759315877,218,0 +170759315925,219,0 +170759315973,220,0 +170759316021,222,0 +170759316070,221,0 +170759316118,221,0 +170759316166,222,0 +170759316214,222,0 +170759316264,222,0 +170759316312,222,0 +170759316361,215,0 +170759316411,215,0 +170759316459,215,0 +170759316506,215,0 +170759316556,215,0 +170759316606,216,0 +170759316655,216,0 +170759316703,217,0 +170759316752,217,0 +170759316800,217,0 +170759316850,219,0 +170759316899,219,0 +170759316947,221,0 +170759316995,220,0 +170759317043,221,0 +170759317091,222,0 +170759317140,222,0 +170759317188,222,0 +170759317236,221,0 +170759317284,223,0 +170759317332,216,0 +170759317380,215,0 +170759317428,214,0 +170759317476,216,0 +170759317525,216,0 +170759317573,218,0 +170759317621,217,0 +170759317669,217,0 +170759317717,217,0 +170759317765,217,0 +170759317813,219,0 +170759317862,220,0 +170759317910,221,0 +170759317960,222,0 +170759318008,223,0 +170759318055,222,0 +170759318103,223,0 +170759318151,223,0 +170759318199,223,0 +170759318247,223,0 +170759318297,223,0 +170759318344,216,0 +170759318392,215,0 +170759318440,214,0 +170759318488,215,0 +170759318538,216,0 +170759318587,216,0 +170759318637,217,0 +170759318686,218,0 +170759318734,218,0 +170759318784,219,0 +170759318833,219,0 +170759318883,220,0 +170759318931,221,0 +170759318979,221,0 +170759319028,222,0 +170759319078,222,0 +170759319126,224,0 +170759319173,224,0 +170759319221,223,0 +170759319269,223,0 +170759319319,222,0 +170759319368,214,0 +170759319416,214,0 +170759319466,215,0 +170759319513,215,0 +170759319561,215,0 +170759319609,216,0 +170759319659,216,0 +170759319707,217,0 +170759319754,218,0 +170759319802,218,0 +170759319850,219,0 +170759319898,220,0 +170759319946,220,0 +170759319994,221,0 +170759320042,222,0 +170759320092,222,0 +170759320140,222,0 +170759320189,222,0 +170759320237,222,0 +170759320285,223,0 +170759320334,216,0 +170759320382,215,0 +170759320430,215,0 +170759320480,215,0 +170759320528,216,0 +170759320576,216,0 +170759320624,216,0 +170759320672,217,0 +170759320719,217,0 +170759320767,218,0 +170759320815,219,0 +170759320865,220,0 +170759320912,220,0 +170759320960,221,0 +170759321008,221,0 +170759321056,222,0 +170759321106,222,0 +170759321155,222,0 +170759321205,223,0 +170759321252,222,0 +170759321300,222,0 +170759321348,215,0 +170759321396,214,0 +170759321444,214,0 +170759321492,215,0 +170759321540,216,0 +170759321589,216,0 +170759321637,217,0 +170759321685,217,0 +170759321735,218,0 +170759321783,219,0 +170759321832,219,0 +170759321882,221,0 +170759321930,221,0 +170759321979,221,0 +170759322027,222,0 +170759322075,223,0 +170759322124,222,0 +170759322172,222,0 +170759322220,223,0 +170759322270,222,0 +170759322319,222,0 +170759322367,215,0 +170759322416,214,0 +170759322464,214,0 +170759322512,216,0 +170759322560,217,0 +170759322608,217,0 +170759322656,218,0 +170759322704,219,0 +170759322754,219,0 +170759322802,219,0 +170759322850,220,0 +170759322899,221,0 +170759322947,222,0 +170759322995,221,0 +170759323043,222,0 +170759323091,223,0 +170759323139,223,0 +170759323188,223,0 +170759323236,223,0 +170759323286,222,0 +170759323335,216,0 +170759323383,214,0 +170759323431,214,0 +170759323479,214,0 +170759323527,215,0 +170759323576,215,0 +170759323626,215,0 +170759323674,215,0 +170759323723,216,0 +170759323771,217,0 +170759323819,217,0 +170759323867,218,0 +170759323916,221,0 +170759323964,220,0 +170759324014,222,0 +170759324063,220,0 +170759324111,221,0 +170759324161,221,0 +170759324209,221,0 +170759324257,222,0 +170759324306,222,0 +170759324354,215,0 +170759324402,214,0 +170759324450,214,0 +170759324498,215,0 +170759324546,216,0 +170759324594,216,0 +170759324642,216,0 +170759324690,216,0 +170759324738,217,0 +170759324785,218,0 +170759324833,219,0 +170759324883,219,0 +170759324931,220,0 +170759324979,221,0 +170759325027,220,0 +170759325075,221,0 +170759325123,221,0 +170759325172,222,0 +170759325222,221,0 +170759325271,223,0 +170759325321,222,0 +170759325369,215,0 +170759325418,215,0 +170759325466,215,0 +170759325516,216,0 +170759325565,216,0 +170759325613,217,0 +170759325663,218,0 +170759325710,218,0 +170759325760,218,0 +170759325808,219,0 +170759325856,219,0 +170759325904,220,0 +170759325952,223,0 +170759326000,221,0 +170759326047,221,0 +170759326095,222,0 +170759326143,223,0 +170759326191,223,0 +170759326239,222,0 +170759326287,223,0 +170759326336,217,0 +170759326384,215,0 +170759326432,215,0 +170759326480,216,0 +170759326530,216,0 +170759326579,216,0 +170759326627,217,0 +170759326675,217,0 +170759326724,218,0 +170759326774,218,0 +170759326822,220,0 +170759326871,221,0 +170759326919,221,0 +170759326967,222,0 +170759327017,223,0 +170759327066,222,0 +170759327114,224,0 +170759327162,223,0 +170759327210,223,0 +170759327258,223,0 +170759327306,222,0 +170759327354,216,0 +170759327402,215,0 +170759327450,215,0 +170759327498,216,0 +170759327545,217,0 +170759327595,217,0 +170759327643,218,0 +170759327692,218,0 +170759327742,219,0 +170759327791,219,0 +170759327841,221,0 +170759327890,222,0 +170759327938,221,0 +170759327988,223,0 +170759328036,222,0 +170759328085,222,0 +170759328133,221,0 +170759328183,221,0 +170759328232,220,0 +170759328282,222,0 +170759328329,218,0 +170759328379,214,0 +170759328428,214,0 +170759328476,215,0 +170759328526,214,0 +170759328574,215,0 +170759328621,215,0 +170759328669,215,0 +170759328717,216,0 +170759328767,216,0 +170759328815,217,0 +170759328863,218,0 +170759328911,218,0 +170759328959,218,0 +170759329006,218,0 +170759329054,219,0 +170759329104,220,0 +170759329152,221,0 +170759329200,222,0 +170759329249,222,0 +170759329299,223,0 +170759329348,215,0 +170759329396,213,0 +170759329444,213,0 +170759329492,214,0 +170759329540,214,0 +170759329589,214,0 +170759329637,214,0 +170759329687,214,0 +170759329735,215,0 +170759329784,215,0 +170759329832,215,0 +170759329880,215,0 +170759329928,216,0 +170759329978,217,0 +170759330027,218,0 +170759330075,218,0 +170759330123,219,0 +170759330171,219,0 +170759330220,220,0 +170759330268,221,0 +170759330316,223,0 +170759330366,215,0 +170759330414,214,0 +170759330462,214,0 +170759330511,214,0 +170759330559,215,0 +170759330607,215,0 +170759330655,215,0 +170759330702,215,0 +170759330750,215,0 +170759330800,216,0 +170759330847,216,0 +170759330895,217,0 +170759330943,219,0 +170759330991,220,0 +170759331039,219,0 +170759331087,221,0 +170759331134,220,0 +170759331182,223,0 +170759331230,222,0 +170759331278,222,0 +170759331327,222,0 +170759331375,214,0 +170759331423,214,0 +170759331473,214,0 +170759331520,214,0 +170759331568,214,0 +170759331616,214,0 +170759331664,215,0 +170759331712,215,0 +170759331760,215,0 +170759331809,215,0 +170759331857,215,0 +170759331905,216,0 +170759331953,217,0 +170759332001,218,0 +170759332049,219,0 +170759332097,220,0 +170759332145,220,0 +170759332193,222,0 +170759332241,220,0 +170759332288,222,0 +170759332336,215,0 +170759332384,214,0 +170759332432,214,0 +170759332481,214,0 +170759332531,214,0 +170759332579,215,0 +170759332628,215,0 +170759332676,215,0 +170759332724,215,0 +170759332771,216,0 +170759332819,216,0 +170759332867,217,0 +170759332915,218,0 +170759332963,220,0 +170759333011,220,0 +170759333059,220,0 +170759333106,221,0 +170759333154,221,0 +170759333202,222,0 +170759333250,223,0 +170759333298,222,0 +170759333347,216,0 +170759333395,214,0 +170759333443,214,0 +170759333491,214,0 +170759333539,215,0 +170759333587,215,0 +170759333635,216,0 +170759333684,216,0 +170759333732,216,0 +170759333780,217,0 +170759333828,217,0 +170759333876,218,0 +170759333924,221,0 +170759333972,220,0 +170759334021,219,0 +170759334069,220,0 +170759334118,220,0 +170759334166,220,0 +170759334214,222,0 +170759334262,222,0 +170759334310,223,0 +170759334358,215,0 +170759334406,214,0 +170759334454,214,0 +170759334502,214,0 +170759334550,215,0 +170759334598,215,0 +170759334645,215,0 +170759334693,215,0 +170759334741,216,0 +170759334789,216,0 +170759334839,216,0 +170759334887,217,0 +170759334936,218,0 +170759334984,219,0 +170759335034,220,0 +170759335083,222,0 +170759335131,220,0 +170759335179,221,0 +170759335227,221,0 +170759335274,222,0 +170759335322,222,0 +170759335370,214,0 +170759335418,214,0 +170759335466,214,0 +170759335514,214,0 +170759335562,214,0 +170759335609,214,0 +170759335657,215,0 +170759335705,214,0 +170759335753,215,0 +170759335801,215,0 +170759335849,216,0 +170759335897,217,0 +170759335945,217,0 +170759335992,218,0 +170759336040,219,0 +170759336088,219,0 +170759336136,219,0 +170759336184,220,0 +170759336232,219,0 +170759336281,222,0 +170759336329,223,0 +170759336379,215,0 +170759336427,214,0 +170759336475,214,0 +170759336523,215,0 +170759336571,214,0 +170759336618,215,0 +170759336666,215,0 +170759336714,216,0 +170759336762,216,0 +170759336810,216,0 +170759336858,217,0 +170759336906,218,0 +170759336955,219,0 +170759337005,220,0 +170759337053,220,0 +170759337102,220,0 +170759337150,221,0 +170759337200,225,0 +170759337249,221,0 +170759337297,222,0 +170759337345,218,0 +170759337395,214,0 +170759337443,214,0 +170759337491,214,0 +170759337538,215,0 +170759337588,215,0 +170759337637,216,0 +170759337685,216,0 +170759337735,216,0 +170759337783,216,0 +170759337831,219,0 +170759337879,219,0 +170759337926,220,0 +170759337974,220,0 +170759338022,222,0 +170759338070,222,0 +170759338118,222,0 +170759338166,222,0 +170759338214,222,0 +170759338262,222,0 +170759338312,222,0 +170759338360,215,0 +170759338408,214,0 +170759338457,214,0 +170759338505,215,0 +170759338553,215,0 +170759338601,216,0 +170759338649,216,0 +170759338697,216,0 +170759338746,217,0 +170759338794,218,0 +170759338842,219,0 +170759338890,219,0 +170759338940,220,0 +170759338988,221,0 +170759339037,221,0 +170759339085,221,0 +170759339135,222,0 +170759339184,223,0 +170759339234,223,0 +170759339281,222,0 +170759339329,224,0 +170759339377,215,0 +170759339427,214,0 +170759339475,215,0 +170759339523,215,0 +170759339572,216,0 +170759339620,216,0 +170759339668,216,0 +170759339716,217,0 +170759339766,218,0 +170759339814,218,0 +170759339863,219,0 +170759339911,219,0 +170759339959,220,0 +170759340007,221,0 +170759340054,221,0 +170759340102,223,0 +170759340150,223,0 +170759340198,222,0 +170759340246,222,0 +170759340294,222,0 +170759340343,221,0 +170759340393,214,0 +170759340440,215,0 +170759340488,215,0 +170759340536,215,0 +170759340584,215,0 +170759340632,216,0 +170759340680,217,0 +170759340727,217,0 +170759340777,218,0 +170759340825,218,0 +170759340872,218,0 +170759340922,219,0 +170759340970,220,0 +170759341017,221,0 +170759341065,220,0 +170759341113,220,0 +170759341163,220,0 +170759341210,220,0 +170759341258,222,0 +170759341306,223,0 +170759341355,216,0 +170759341403,214,0 +170759341451,214,0 +170759341499,214,0 +170759341547,214,0 +170759341594,215,0 +170759341642,215,0 +170759341690,215,0 +170759341738,215,0 +170759341786,217,0 +170759341833,217,0 +170759341881,218,0 +170759341929,219,0 +170759341977,220,0 +170759342025,220,0 +170759342073,219,0 +170759342121,220,0 +170759342168,222,0 +170759342216,220,0 +170759342264,222,0 +170759342312,223,0 +170759342360,216,0 +170759342408,215,0 +170759342457,215,0 +170759342505,215,0 +170759342555,215,0 +170759342603,215,0 +170759342652,216,0 +170759342700,216,0 +170759342750,216,0 +170759342799,216,0 +170759342847,217,0 +170759342897,218,0 +170759342945,219,0 +170759342993,219,0 +170759343041,220,0 +170759343089,221,0 +170759343137,221,0 +170759343186,222,0 +170759343234,222,0 +170759343282,223,0 +170759343330,223,0 +170759343379,216,0 +170759343427,215,0 +170759343475,215,0 +170759343523,215,0 +170759343571,215,0 +170759343619,216,0 +170759343666,216,0 +170759343716,216,0 +170759343764,217,0 +170759343811,218,0 +170759343859,219,0 +170759343907,220,0 +170759343957,220,0 +170759344006,221,0 +170759344054,222,0 +170759344102,223,0 +170759344152,222,0 +170759344199,222,0 +170759344247,224,0 +170759344297,224,0 +170759344345,223,0 +170759344393,215,0 +170759344442,215,0 +170759344490,215,0 +170759344540,215,0 +170759344588,215,0 +170759344635,216,0 +170759344685,216,0 +170759344733,217,0 +170759344781,217,0 +170759344830,217,0 +170759344878,218,0 +170759344928,219,0 +170759344976,219,0 +170759345024,220,0 +170759345072,221,0 +170759345120,220,0 +170759345169,219,0 +170759345217,220,0 +170759345267,222,0 +170759345314,222,0 +170759345362,216,0 +170759345410,214,0 +170759345458,215,0 +170759345506,215,0 +170759345554,215,0 +170759345602,215,0 +170759345649,215,0 +170759345697,216,0 +170759345745,216,0 +170759345793,216,0 +170759345841,216,0 +170759345891,217,0 +170759345938,221,0 +170759345986,219,0 +170759346034,219,0 +170759346084,220,0 +170759346132,220,0 +170759346180,220,0 +170759346228,221,0 +170759346276,222,0 +170759346324,223,0 +170759346371,216,0 +170759346419,214,0 +170759346467,215,0 +170759346515,215,0 +170759346565,215,0 +170759346614,215,0 +170759346662,215,0 +170759346710,215,0 +170759346758,215,0 +170759346806,215,0 +170759346855,216,0 +170759346903,217,0 +170759346951,218,0 +170759346999,219,0 +170759347047,220,0 +170759347095,220,0 +170759347143,220,0 +170759347191,221,0 +170759347240,221,0 +170759347288,222,0 +170759347336,222,0 +170759347384,215,0 +170759347434,214,0 +170759347482,214,0 +170759347529,215,0 +170759347577,215,0 +170759347627,215,0 +170759347676,216,0 +170759347724,215,0 +170759347772,216,0 +170759347820,216,0 +170759347868,217,0 +170759347916,219,0 +170759347964,219,0 +170759348012,219,0 +170759348060,220,0 +170759348108,220,0 +170759348156,221,0 +170759348206,222,0 +170759348253,222,0 +170759348301,223,0 +170759348349,217,0 +170759348397,215,0 +170759348445,215,0 +170759348493,216,0 +170759348541,217,0 +170759348591,218,0 +170759348638,218,0 +170759348686,219,0 +170759348734,220,0 +170759348782,220,0 +170759348830,221,0 +170759348880,221,0 +170759348928,221,0 +170759348977,223,0 +170759349025,222,0 +170759349075,223,0 +170759349122,224,0 +170759349172,222,0 +170759349220,223,0 +170759349269,222,0 +170759349317,222,0 +170759349365,216,0 +170759349415,215,0 +170759349463,215,0 +170759349512,216,0 +170759349560,217,0 +170759349608,217,0 +170759349656,218,0 +170759349704,219,0 +170759349752,220,0 +170759349801,220,0 +170759349851,220,0 +170759349899,222,0 +170759349948,220,0 +170759349996,222,0 +170759350046,222,0 +170759350094,223,0 +170759350142,224,0 +170759350191,223,0 +170759350239,224,0 +170759350287,223,0 +170759350335,222,0 +170759350383,216,0 +170759350431,214,0 +170759350480,215,0 +170759350528,215,0 +170759350576,215,0 +170759350624,216,0 +170759350672,216,0 +170759350721,216,0 +170759350769,217,0 +170759350817,218,0 +170759350865,218,0 +170759350913,219,0 +170759350961,221,0 +170759351009,221,0 +170759351057,221,0 +170759351105,223,0 +170759351153,222,0 +170759351201,223,0 +170759351249,224,0 +170759351297,222,0 +170759351345,222,0 +170759351393,215,0 +170759351442,214,0 +170759351490,214,0 +170759351539,214,0 +170759351589,215,0 +170759351638,214,0 +170759351688,215,0 +170759351736,215,0 +170759351784,215,0 +170759351832,216,0 +170759351880,216,0 +170759351928,217,0 +170759351977,218,0 +170759352027,219,0 +170759352076,220,0 +170759352124,219,0 +170759352172,220,0 +170759352220,221,0 +170759352268,220,0 +170759352317,222,0 +170759352365,216,0 +170759352413,214,0 +170759352461,214,0 +170759352511,214,0 +170759352560,214,0 +170759352608,214,0 +170759352656,215,0 +170759352704,215,0 +170759352752,215,0 +170759352800,215,0 +170759352848,215,0 +170759352896,215,0 +170759352944,216,0 +170759352992,217,0 +170759353040,219,0 +170759353088,218,0 +170759353135,219,0 +170759353183,219,0 +170759353233,220,0 +170759353282,222,0 +170759353330,222,0 +170759353378,216,0 +170759353426,214,0 +170759353476,214,0 +170759353524,215,0 +170759353571,214,0 +170759353619,215,0 +170759353667,215,0 +170759353715,215,0 +170759353763,215,0 +170759353811,215,0 +170759353860,216,0 +170759353908,217,0 +170759353956,218,0 +170759354004,217,0 +170759354052,220,0 +170759354099,221,0 +170759354149,221,0 +170759354197,222,0 +170759354245,223,0 +170759354293,222,0 +170759354341,224,0 +170759354390,215,0 +170759354438,214,0 +170759354487,214,0 +170759354535,214,0 +170759354583,215,0 +170759354631,215,0 +170759354679,215,0 +170759354728,215,0 +170759354776,215,0 +170759354824,216,0 +170759354872,216,0 +170759354920,217,0 +170759354968,219,0 +170759355016,218,0 +170759355064,220,0 +170759355112,221,0 +170759355161,220,0 +170759355209,222,0 +170759355257,221,0 +170759355305,223,0 +170759355355,223,0 +170759355404,215,0 +170759355452,214,0 +170759355502,214,0 +170759355551,215,0 +170759355599,215,0 +170759355647,215,0 +170759355695,216,0 +170759355743,216,0 +170759355791,217,0 +170759355839,217,0 +170759355888,218,0 +170759355936,219,0 +170759355984,220,0 +170759356032,220,0 +170759356080,222,0 +170759356130,222,0 +170759356179,222,0 +170759356229,222,0 +170759356277,221,0 +170759356326,223,0 +170759356374,216,0 +170759356424,215,0 +170759356472,215,0 +170759356520,215,0 +170759356568,216,0 +170759356617,216,0 +170759356667,216,0 +170759356715,216,0 +170759356763,217,0 +170759356810,219,0 +170759356858,219,0 +170759356906,220,0 +170759356954,220,0 +170759357002,222,0 +170759357050,222,0 +170759357098,221,0 +170759357146,224,0 +170759357196,223,0 +170759357243,224,0 +170759357293,223,0 +170759357341,223,0 +170759357389,216,0 +170759357437,215,0 +170759357486,215,0 +170759357534,215,0 +170759357584,215,0 +170759357632,215,0 +170759357680,215,0 +170759357728,216,0 +170759357775,217,0 +170759357823,217,0 +170759357873,218,0 +170759357922,219,0 +170759357970,220,0 +170759358018,221,0 +170759358066,222,0 +170759358114,221,0 +170759358162,222,0 +170759358212,223,0 +170759358259,223,0 +170759358307,222,0 +170759358355,222,0 +170759358403,215,0 +170759358451,214,0 +170759358499,214,0 +170759358547,215,0 +170759358595,215,0 +170759358644,215,0 +170759358692,215,0 +170759358740,215,0 +170759358788,216,0 +170759358836,216,0 +170759358884,216,0 +170759358932,217,0 +170759358981,219,0 +170759359029,220,0 +170759359079,221,0 +170759359127,220,0 +170759359176,220,0 +170759359224,221,0 +170759359272,220,0 +170759359321,222,0 +170759359371,219,0 +170759359420,214,0 +170759359468,215,0 +170759359516,215,0 +170759359564,215,0 +170759359612,215,0 +170759359662,215,0 +170759359710,216,0 +170759359759,216,0 +170759359807,216,0 +170759359856,216,0 +170759359906,217,0 +170759359954,219,0 +170759360002,219,0 +170759360050,219,0 +170759360098,220,0 +170759360146,220,0 +170759360194,219,0 +170759360242,219,0 +170759360291,221,0 +170759360339,222,0 +170759360387,216,0 +170759360435,214,0 +170759360484,214,0 +170759360532,214,0 +170759360582,215,0 +170759360630,215,0 +170759360678,215,0 +170759360726,216,0 +170759360775,216,0 +170759360825,216,0 +170759360873,218,0 +170759360921,220,0 +170759360968,218,0 +170759361016,219,0 +170759361066,220,0 +170759361114,221,0 +170759361162,220,0 +170759361209,221,0 +170759361259,222,0 +170759361307,222,0 +170759361354,223,0 +170759361402,215,0 +170759361450,214,0 +170759361498,214,0 +170759361546,214,0 +170759361594,214,0 +170759361642,215,0 +170759361690,215,0 +170759361738,215,0 +170759361785,215,0 +170759361833,216,0 +170759361881,216,0 +170759361929,217,0 +170759361977,218,0 +170759362025,219,0 +170759362073,219,0 +170759362122,220,0 +170759362172,222,0 +170759362220,221,0 +170759362268,222,0 +170759362316,223,0 +170759362364,223,0 +170759362412,215,0 +170759362459,214,0 +170759362509,215,0 +170759362557,215,0 +170759362605,215,0 +170759362653,215,0 +170759362701,215,0 +170759362748,215,0 +170759362796,216,0 +170759362846,215,0 +170759362895,217,0 +170759362943,217,0 +170759362993,218,0 +170759363041,219,0 +170759363090,219,0 +170759363138,220,0 +170759363186,220,0 +170759363234,222,0 +170759363282,222,0 +170759363330,222,0 +170759363379,216,0 +170759363427,214,0 +170759363475,214,0 +170759363525,214,0 +170759363573,215,0 +170759363622,215,0 +170759363670,215,0 +170759363720,215,0 +170759363768,215,0 +170759363817,216,0 +170759363865,216,0 +170759363913,217,0 +170759363961,218,0 +170759364009,219,0 +170759364057,220,0 +170759364104,219,0 +170759364152,217,0 +170759364200,218,0 +170759364248,218,0 +170759364296,218,0 +170759364346,222,0 +170759364394,215,0 +170759364442,214,0 +170759364491,214,0 +170759364541,214,0 +170759364589,214,0 +170759364636,215,0 +170759364684,215,0 +170759364732,215,0 +170759364780,215,0 +170759364828,216,0 +170759364876,216,0 +170759364926,216,0 +170759364975,217,0 +170759365023,217,0 +170759365071,218,0 +170759365119,219,0 +170759365167,219,0 +170759365215,220,0 +170759365263,220,0 +170759365311,222,0 +170759365359,223,0 +170759365407,216,0 +170759365456,214,0 +170759365504,214,0 +170759365552,214,0 +170759365602,214,0 +170759365650,214,0 +170759365697,214,0 +170759365745,214,0 +170759365795,214,0 +170759365844,214,0 +170759365892,215,0 +170759365940,215,0 +170759365990,215,0 +170759366039,215,0 +170759366089,216,0 +170759366136,217,0 +170759366184,217,0 +170759366232,218,0 +170759366282,219,0 +170759366330,222,0 +170759366378,219,0 +170759366426,214,0 +170759366474,214,0 +170759366523,215,0 +170759366573,214,0 +170759366620,215,0 +170759366668,215,0 +170759366716,215,0 +170759366764,215,0 +170759366812,215,0 +170759366862,216,0 +170759366911,216,0 +170759366959,217,0 +170759367009,218,0 +170759367057,219,0 +170759367105,219,0 +170759367154,220,0 +170759367204,219,0 +170759367252,220,0 +170759367301,222,0 +170759367350,222,0 +170759367400,216,0 +170759367448,215,0 +170759367497,215,0 +170759367547,215,0 +170759367595,216,0 +170759367643,217,0 +170759367691,217,0 +170759367740,218,0 +170759367790,219,0 +170759367838,219,0 +170759367886,219,0 +170759367935,220,0 +170759367983,221,0 +170759368031,222,0 +170759368081,223,0 +170759368129,222,0 +170759368177,223,0 +170759368224,223,0 +170759368274,222,0 +170759368322,223,0 +170759368371,222,0 +170759368419,215,0 +170759368469,214,0 +170759368517,215,0 +170759368566,215,0 +170759368614,216,0 +170759368662,217,0 +170759368712,216,0 +170759368760,216,0 +170759368807,217,0 +170759368855,218,0 +170759368905,219,0 +170759368954,219,0 +170759369004,221,0 +170759369053,221,0 +170759369101,221,0 +170759369151,223,0 +170759369199,223,0 +170759369247,224,0 +170759369295,223,0 +170759369343,223,0 +170759369390,216,0 +170759369438,215,0 +170759369486,215,0 +170759369534,215,0 +170759369584,215,0 +170759369632,216,0 +170759369680,217,0 +170759369727,216,0 +170759369775,216,0 +170759369823,217,0 +170759369871,218,0 +170759369919,219,0 +170759369969,220,0 +170759370017,220,0 +170759370065,222,0 +170759370113,222,0 +170759370162,222,0 +170759370212,222,0 +170759370261,222,0 +170759370309,222,0 +170759370357,222,0 +170759370406,216,0 +170759370454,215,0 +170759370504,215,0 +170759370553,215,0 +170759370601,215,0 +170759370649,215,0 +170759370697,216,0 +170759370745,215,0 +170759370793,216,0 +170759370843,216,0 +170759370891,217,0 +170759370938,219,0 +170759370988,219,0 +170759371036,220,0 +170759371085,220,0 +170759371133,222,0 +170759371181,222,0 +170759371229,222,0 +170759371279,222,0 +170759371326,222,0 +170759371376,222,0 +170759371424,214,0 +170759371472,213,0 +170759371520,213,0 +170759371568,213,0 +170759371616,214,0 +170759371664,213,0 +170759371712,213,0 +170759371761,214,0 +170759371809,214,0 +170759371857,214,0 +170759371907,214,0 +170759371955,215,0 +170759372004,215,0 +170759372052,215,0 +170759372100,216,0 +170759372148,217,0 +170759372196,218,0 +170759372244,216,0 +170759372292,216,0 +170759372340,222,0 +170759372389,223,0 +170759372439,215,0 +170759372488,215,0 +170759372538,214,0 +170759372586,214,0 +170759372635,214,0 +170759372683,215,0 +170759372731,215,0 +170759372779,216,0 +170759372827,216,0 +170759372876,216,0 +170759372924,217,0 +170759372972,218,0 +170759373020,219,0 +170759373068,219,0 +170759373118,220,0 +170759373166,220,0 +170759373215,221,0 +170759373265,221,0 +170759373313,222,0 +170759373361,223,0 +170759373409,216,0 +170759373457,215,0 +170759373506,215,0 +170759373554,215,0 +170759373602,215,0 +170759373652,216,0 +170759373701,217,0 +170759373751,217,0 +170759373798,219,0 +170759373846,218,0 +170759373894,219,0 +170759373942,220,0 +170759373990,221,0 +170759374038,221,0 +170759374086,221,0 +170759374134,223,0 +170759374183,222,0 +170759374231,223,0 +170759374281,223,0 +170759374329,223,0 +170759374377,222,0 +170759374425,215,0 +170759374473,215,0 +170759374521,216,0 +170759374569,217,0 +170759374618,217,0 +170759374666,218,0 +170759374714,218,0 +170759374764,223,0 +170759374812,220,0 +170759374859,220,0 +170759374909,221,0 +170759374957,222,0 +170759375005,223,0 +170759375054,224,0 +170759375104,223,0 +170759375152,223,0 +170759375200,223,0 +170759375248,224,0 +170759375296,223,0 +170759375343,223,0 +170759375391,222,0 +170759375439,218,0 +170759375487,218,0 +170759375535,218,0 +170759375583,219,0 +170759375631,220,0 +170759375679,219,0 +170759375727,220,0 +170759375776,221,0 +170759375824,221,0 +170759375872,222,0 +170759375922,222,0 +170759375971,223,0 +170759376019,223,0 +170759376067,224,0 +170759376117,223,0 +170759376166,223,0 +170759376216,224,0 +170759376265,224,0 +170759376313,224,0 +170759376363,224,0 +170759376411,222,0 +170759376460,217,0 +170759376510,217,0 +170759376559,217,0 +170759376607,217,0 +170759376657,218,0 +170759376705,219,0 +170759376753,220,0 +170759376801,221,0 +170759376848,221,0 +170759376898,222,0 +170759376946,223,0 +170759376995,223,0 +170759377045,223,0 +170759377094,223,0 +170759377142,225,0 +170759377190,223,0 +170759377238,225,0 +170759377286,225,0 +170759377335,223,0 +170759377385,223,0 +170759377434,223,0 +170759377482,216,0 +170759377530,215,0 +170759377578,214,0 +170759377626,216,0 +170759377675,216,0 +170759377725,217,0 +170759377774,218,0 +170759377822,218,0 +170759377870,218,0 +170759377918,218,0 +170759377966,219,0 +170759378014,220,0 +170759378063,220,0 +170759378111,221,0 +170759378159,221,0 +170759378207,221,0 +170759378255,222,0 +170759378304,221,0 +170759378354,221,0 +170759378402,221,0 +170759378450,222,0 +170759378498,223,0 +170759378545,215,0 +170759378593,214,0 +170759378643,214,0 +170759378691,215,0 +170759378740,215,0 +170759378788,215,0 +170759378836,216,0 +170759378885,216,0 +170759378933,216,0 +170759378981,217,0 +170759379029,218,0 +170759379077,219,0 +170759379125,219,0 +170759379173,220,0 +170759379221,220,0 +170759379269,221,0 +170759379317,222,0 +170759379364,221,0 +170759379412,224,0 +170759379462,222,0 +170759379511,222,0 +170759379559,215,0 +170759379607,215,0 +170759379655,215,0 +170759379705,215,0 +170759379754,215,0 +170759379802,215,0 +170759379852,215,0 +170759379900,216,0 +170759379948,216,0 +170759379995,217,0 +170759380043,216,0 +170759380091,217,0 +170759380139,218,0 +170759380189,220,0 +170759380237,219,0 +170759380285,220,0 +170759380333,221,0 +170759380381,221,0 +170759380428,222,0 +170759380476,223,0 +170759380524,223,0 +170759380572,223,0 +170759380622,214,0 +170759380671,214,0 +170759380719,214,0 +170759380769,214,0 +170759380818,215,0 +170759380868,215,0 +170759380915,215,0 +170759380963,215,0 +170759381013,216,0 +170759381061,216,0 +170759381110,217,0 +170759381158,218,0 +170759381208,219,0 +170759381257,220,0 +170759381305,220,0 +170759381355,220,0 +170759381404,221,0 +170759381452,221,0 +170759381500,221,0 +170759381548,222,0 +170759381596,222,0 +170759381645,215,0 +170759381693,214,0 +170759381743,215,0 +170759381790,215,0 +170759381838,215,0 +170759381886,215,0 +170759381934,215,0 +170759381982,215,0 +170759382030,216,0 +170759382079,216,0 +170759382127,216,0 +170759382175,216,0 +170759382223,217,0 +170759382271,217,0 +170759382321,218,0 +170759382369,219,0 +170759382417,220,0 +170759382465,220,0 +170759382512,220,0 +170759382560,222,0 +170759382608,223,0 +170759382656,216,0 +170759382706,215,0 +170759382754,214,0 +170759382802,215,0 +170759382851,215,0 +170759382901,215,0 +170759382949,215,0 +170759382996,215,0 +170759383044,215,0 +170759383094,216,0 +170759383142,216,0 +170759383189,216,0 +170759383237,217,0 +170759383285,218,0 +170759383333,219,0 +170759383381,220,0 +170759383429,219,0 +170759383478,219,0 +170759383526,220,0 +170759383576,220,0 +170759383624,222,0 +170759383673,223,0 +170759383721,215,0 +170759383769,214,0 +170759383819,215,0 +170759383867,214,0 +170759383916,215,0 +170759383966,215,0 +170759384015,215,0 +170759384063,216,0 +170759384111,216,0 +170759384159,217,0 +170759384209,217,0 +170759384256,218,0 +170759384304,219,0 +170759384352,220,0 +170759384402,220,0 +170759384450,220,0 +170759384497,221,0 +170759384545,222,0 +170759384595,221,0 +170759384643,222,0 +170759384691,222,0 +170759384739,216,0 +170759384787,214,0 +170759384836,215,0 +170759384884,215,0 +170759384932,215,0 +170759384980,215,0 +170759385028,216,0 +170759385076,216,0 +170759385125,217,0 +170759385173,217,0 +170759385221,218,0 +170759385269,219,0 +170759385318,221,0 +170759385366,220,0 +170759385414,221,0 +170759385462,222,0 +170759385510,221,0 +170759385558,222,0 +170759385607,222,0 +170759385655,223,0 +170759385703,222,0 +170759385751,222,0 +170759385799,215,0 +170759385847,215,0 +170759385895,215,0 +170759385942,215,0 +170759385990,215,0 +170759386038,216,0 +170759386088,216,0 +170759386136,217,0 +170759386184,217,0 +170759386232,217,0 +170759386281,218,0 +170759386331,218,0 +170759386380,219,0 +170759386428,220,0 +170759386476,220,0 +170759386525,222,0 +170759386573,222,0 +170759386621,225,0 +170759386669,223,0 +170759386717,223,0 +170759386765,222,0 +170759386812,216,0 +170759386860,214,0 +170759386908,214,0 +170759386956,214,0 +170759387004,214,0 +170759387052,214,0 +170759387100,215,0 +170759387148,215,0 +170759387196,215,0 +170759387243,215,0 +170759387291,215,0 +170759387339,216,0 +170759387387,216,0 +170759387435,217,0 +170759387483,218,0 +170759387530,218,0 +170759387578,220,0 +170759387626,219,0 +170759387674,221,0 +170759387722,221,0 +170759387770,223,0 +170759387819,221,0 +170759387867,215,0 +170759387915,215,0 +170759387963,215,0 +170759388011,215,0 +170759388059,215,0 +170759388108,216,0 +170759388156,216,0 +170759388204,216,0 +170759388252,217,0 +170759388300,218,0 +170759388348,218,0 +170759388396,219,0 +170759388444,219,0 +170759388493,221,0 +170759388543,220,0 +170759388592,224,0 +170759388640,221,0 +170759388688,224,0 +170759388737,224,0 +170759388785,224,0 +170759388835,224,0 +170759388883,216,0 +170759388931,215,0 +170759388980,215,0 +170759389028,215,0 +170759389076,215,0 +170759389124,215,0 +170759389172,215,0 +170759389220,215,0 +170759389268,215,0 +170759389316,216,0 +170759389365,215,0 +170759389415,216,0 +170759389463,217,0 +170759389512,218,0 +170759389562,219,0 +170759389610,220,0 +170759389658,219,0 +170759389706,221,0 +170759389754,222,0 +170759389803,221,0 +170759389851,222,0 +170759389899,215,0 +170759389947,214,0 +170759389995,214,0 +170759390043,215,0 +170759390091,215,0 +170759390139,215,0 +170759390186,215,0 +170759390234,215,0 +170759390282,216,0 +170759390330,215,0 +170759390378,215,0 +170759390426,216,0 +170759390474,217,0 +170759390522,218,0 +170759390570,218,0 +170759390620,219,0 +170759390669,220,0 +170759390717,220,0 +170759390766,221,0 +170759390814,221,0 +170759390864,222,0 +170759390912,222,0 +170759390960,215,0 +170759391008,214,0 +170759391056,214,0 +170759391104,215,0 +170759391151,215,0 +170759391199,215,0 +170759391247,215,0 +170759391295,215,0 +170759391345,216,0 +170759391395,216,0 +170759391443,215,0 +170759391491,216,0 +170759391539,217,0 +170759391586,218,0 +170759391634,218,0 +170759391684,220,0 +170759391732,220,0 +170759391780,221,0 +170759391828,221,0 +170759391876,222,0 +170759391923,224,0 +170759391973,216,0 +170759392021,214,0 +170759392069,213,0 +170759392118,214,0 +170759392166,213,0 +170759392216,214,0 +170759392265,214,0 +170759392313,214,0 +170759392363,214,0 +170759392411,214,0 +170759392459,215,0 +170759392507,215,0 +170759392554,215,0 +170759392602,216,0 +170759392650,216,0 +170759392698,216,0 +170759392746,217,0 +170759392794,217,0 +170759392842,218,0 +170759392890,218,0 +170759392938,222,0 +170759392986,222,0 +170759393034,215,0 +170759393082,214,0 +170759393131,214,0 +170759393181,215,0 +170759393229,215,0 +170759393277,215,0 +170759393325,215,0 +170759393374,215,0 +170759393422,216,0 +170759393470,216,0 +170759393518,215,0 +170759393567,216,0 +170759393615,217,0 +170759393663,218,0 +170759393713,220,0 +170759393762,220,0 +170759393810,219,0 +170759393858,220,0 +170759393906,220,0 +170759393954,221,0 +170759394002,223,0 +170759394051,217,0 +170759394099,215,0 +170759394149,214,0 +170759394197,215,0 +170759394245,215,0 +170759394293,216,0 +170759394340,216,0 +170759394388,216,0 +170759394436,217,0 +170759394484,217,0 +170759394532,218,0 +170759394580,218,0 +170759394628,219,0 +170759394676,220,0 +170759394724,220,0 +170759394772,221,0 +170759394820,223,0 +170759394868,222,0 +170759394916,223,0 +170759394965,222,0 +170759395013,222,0 +170759395063,222,0 +170759395112,215,0 +170759395162,214,0 +170759395211,214,0 +170759395261,215,0 +170759395309,215,0 +170759395358,216,0 +170759395406,217,0 +170759395454,217,0 +170759395502,218,0 +170759395552,218,0 +170759395599,219,0 +170759395647,220,0 +170759395697,221,0 +170759395746,221,0 +170759395794,221,0 +170759395842,222,0 +170759395890,222,0 +170759395938,222,0 +170759395986,223,0 +170759396034,223,0 +170759396084,223,0 +170759396133,215,0 +170759396181,214,0 +170759396229,215,0 +170759396277,215,0 +170759396325,215,0 +170759396373,216,0 +170759396422,216,0 +170759396470,215,0 +170759396520,217,0 +170759396569,217,0 +170759396617,218,0 +170759396665,219,0 +170759396713,220,0 +170759396761,220,0 +170759396809,221,0 +170759396857,221,0 +170759396905,221,0 +170759396955,223,0 +170759397004,222,0 +170759397052,222,0 +170759397102,223,0 +170759397151,216,0 +170759397199,214,0 +170759397247,214,0 +170759397297,215,0 +170759397344,215,0 +170759397394,215,0 +170759397442,216,0 +170759397490,216,0 +170759397539,216,0 +170759397589,217,0 +170759397637,218,0 +170759397685,218,0 +170759397733,219,0 +170759397782,222,0 +170759397830,220,0 +170759397880,220,0 +170759397928,220,0 +170759397977,220,0 +170759398025,219,0 +170759398073,219,0 +170759398123,223,0 +170759398171,222,0 +170759398219,215,0 +170759398266,215,0 +170759398314,215,0 +170759398364,215,0 +170759398413,215,0 +170759398461,216,0 +170759398511,217,0 +170759398559,217,0 +170759398607,217,0 +170759398654,218,0 +170759398702,218,0 +170759398750,219,0 +170759398798,221,0 +170759398848,220,0 +170759398896,221,0 +170759398945,221,0 +170759398995,221,0 +170759399043,220,0 +170759399090,220,0 +170759399140,222,0 +170759399189,225,0 +170759399237,215,0 +170759399285,214,0 +170759399333,214,0 +170759399381,214,0 +170759399429,214,0 +170759399477,214,0 +170759399525,215,0 +170759399573,215,0 +170759399623,215,0 +170759399672,216,0 +170759399722,216,0 +170759399770,216,0 +170759399819,216,0 +170759399867,217,0 +170759399915,218,0 +170759399964,218,0 +170759400012,219,0 +170759400062,219,0 +170759400110,220,0 +170759400158,218,0 +170759400207,222,0 +170759400255,215,0 +170759400304,214,0 +170759400352,214,0 +170759400400,214,0 +170759400448,215,0 +170759400496,215,0 +170759400545,215,0 +170759400595,215,0 +170759400643,215,0 +170759400692,216,0 +170759400740,215,0 +170759400788,215,0 +170759400836,216,0 +170759400884,217,0 +170759400932,218,0 +170759400980,219,0 +170759401030,219,0 +170759401079,220,0 +170759401127,220,0 +170759401176,220,0 +170759401224,222,0 +170759401272,223,0 +170759401320,215,0 +170759401368,214,0 +170759401416,215,0 +170759401464,215,0 +170759401514,215,0 +170759401562,215,0 +170759401610,215,0 +170759401658,215,0 +170759401706,215,0 +170759401754,215,0 +170759401802,217,0 +170759401851,216,0 +170759401899,217,0 +170759401947,218,0 +170759401995,219,0 +170759402043,220,0 +170759402092,220,0 +170759402140,220,0 +170759402188,222,0 +170759402238,222,0 +170759402285,223,0 +170759402333,216,0 +170759402381,214,0 +170759402431,214,0 +170759402480,215,0 +170759402530,215,0 +170759402578,215,0 +170759402626,215,0 +170759402674,215,0 +170759402723,215,0 +170759402771,216,0 +170759402819,216,0 +170759402869,216,0 +170759402917,217,0 +170759402965,217,0 +170759403012,218,0 +170759403060,219,0 +170759403108,219,0 +170759403156,220,0 +170759403204,220,0 +170759403252,221,0 +170759403302,222,0 +170759403351,222,0 +170759403401,214,0 +170759403449,213,0 +170759403498,214,0 +170759403546,213,0 +170759403594,213,0 +170759403642,214,0 +170759403689,214,0 +170759403737,213,0 +170759403785,214,0 +170759403833,214,0 +170759403881,215,0 +170759403930,215,0 +170759403980,215,0 +170759404027,215,0 +170759404075,215,0 +170759404123,216,0 +170759404171,217,0 +170759404219,217,0 +170759404267,218,0 +170759404314,221,0 +170759404362,222,0 +170759404410,215,0 +170759404458,214,0 +170759404506,214,0 +170759404554,214,0 +170759404602,214,0 +170759404650,214,0 +170759404697,214,0 +170759404745,215,0 +170759404793,215,0 +170759404841,215,0 +170759404889,215,0 +170759404937,215,0 +170759404985,216,0 +170759405034,216,0 +170759405082,216,0 +170759405132,218,0 +170759405180,218,0 +170759405227,218,0 +170759405277,219,0 +170759405325,219,0 +170759405372,221,0 +170759405420,222,0 +170759405468,215,0 +170759405516,215,0 +170759405564,214,0 +170759405612,215,0 +170759405660,215,0 +170759405707,216,0 +170759405755,218,0 +170759405803,217,0 +170759405852,218,0 +170759405900,218,0 +170759405948,219,0 +170759405996,220,0 +170759406044,220,0 +170759406091,220,0 +170759406139,221,0 +170759406187,222,0 +170759406235,223,0 +170759406283,223,0 +170759406331,223,0 +170759406379,222,0 +170759406426,222,0 +170759406474,216,0 +170759406522,214,0 +170759406572,215,0 +170759406619,215,0 +170759406667,215,0 +170759406715,215,0 +170759406763,216,0 +170759406811,217,0 +170759406858,218,0 +170759406906,218,0 +170759406954,219,0 +170759407002,220,0 +170759407051,221,0 +170759407099,222,0 +170759407147,222,0 +170759407195,222,0 +170759407243,222,0 +170759407291,222,0 +170759407338,223,0 +170759407386,223,0 +170759407434,223,0 +170759407482,223,0 +170759407531,215,0 +170759407579,215,0 +170759407627,215,0 +170759407676,215,0 +170759407724,215,0 +170759407772,216,0 +170759407820,216,0 +170759407870,218,0 +170759407919,219,0 +170759407967,218,0 +170759408015,220,0 +170759408063,220,0 +170759408111,221,0 +170759408159,222,0 +170759408207,222,0 +170759408256,223,0 +170759408304,222,0 +170759408352,223,0 +170759408400,222,0 +170759408448,223,0 +170759408496,223,0 +170759408544,216,0 +170759408593,214,0 +170759408641,215,0 +170759408689,215,0 +170759408737,216,0 +170759408786,217,0 +170759408834,217,0 +170759408882,218,0 +170759408929,218,0 +170759408977,219,0 +170759409025,220,0 +170759409073,220,0 +170759409121,220,0 +170759409169,221,0 +170759409217,222,0 +170759409266,221,0 +170759409316,222,0 +170759409366,223,0 +170759409413,222,0 +170759409461,223,0 +170759409509,222,0 +170759409559,222,0 +170759409607,215,0 +170759409655,214,0 +170759409702,214,0 +170759409750,215,0 +170759409800,215,0 +170759409848,216,0 +170759409895,216,0 +170759409943,217,0 +170759409991,217,0 +170759410039,218,0 +170759410088,219,0 +170759410136,219,0 +170759410184,220,0 +170759410232,220,0 +170759410280,221,0 +170759410328,220,0 +170759410375,222,0 +170759410423,223,0 +170759410471,224,0 +170759410519,222,0 +170759410567,223,0 +170759410615,216,0 +170759410663,214,0 +170759410710,214,0 +170759410758,214,0 +170759410806,214,0 +170759410855,215,0 +170759410903,215,0 +170759410951,215,0 +170759410999,215,0 +170759411047,216,0 +170759411094,216,0 +170759411142,216,0 +170759411190,217,0 +170759411238,217,0 +170759411286,218,0 +170759411334,220,0 +170759411381,220,0 +170759411429,220,0 +170759411477,220,0 +170759411525,220,0 +170759411573,222,0 +170759411622,223,0 +170759411671,216,0 +170759411719,215,0 +170759411767,215,0 +170759411815,215,0 +170759411863,215,0 +170759411911,216,0 +170759411958,215,0 +170759412006,216,0 +170759412056,216,0 +170759412105,216,0 +170759412153,216,0 +170759412201,218,0 +170759412250,218,0 +170759412298,220,0 +170759412346,220,0 +170759412394,220,0 +170759412441,222,0 +170759412489,224,0 +170759412537,222,0 +170759412585,221,0 +170759412633,223,0 +170759412681,216,0 +170759412728,215,0 +170759412776,215,0 +170759412826,215,0 +170759412873,215,0 +170759412921,215,0 +170759412969,216,0 +170759413017,217,0 +170759413065,217,0 +170759413114,218,0 +170759413162,218,0 +170759413210,218,0 +170759413258,219,0 +170759413306,219,0 +170759413353,221,0 +170759413401,222,0 +170759413449,222,0 +170759413497,224,0 +170759413545,222,0 +170759413593,223,0 +170759413640,223,0 +170759413688,223,0 +170759413736,215,0 +170759413784,214,0 +170759413832,215,0 +170759413880,215,0 +170759413927,215,0 +170759413975,215,0 +170759414023,216,0 +170759414071,217,0 +170759414119,216,0 +170759414167,218,0 +170759414214,218,0 +170759414264,218,0 +170759414313,219,0 +170759414361,219,0 +170759414409,219,0 +170759414457,218,0 +170759414507,221,0 +170759414556,220,0 +170759414604,220,0 +170759414652,221,0 +170759414700,222,0 +170759414748,215,0 +170759414795,214,0 +170759414843,214,0 +170759414891,214,0 +170759414939,214,0 +170759414989,215,0 +170759415037,215,0 +170759415086,215,0 +170759415134,215,0 +170759415182,215,0 +170759415230,216,0 +170759415280,216,0 +170759415327,216,0 +170759415375,216,0 +170759415423,217,0 +170759415471,218,0 +170759415520,219,0 +170759415568,220,0 +170759415616,219,0 +170759415664,220,0 +170759415714,222,0 +170759415762,223,0 +170759415809,215,0 +170759415857,214,0 +170759415905,214,0 +170759415953,214,0 +170759416003,214,0 +170759416051,215,0 +170759416100,215,0 +170759416150,215,0 +170759416197,215,0 +170759416245,215,0 +170759416293,215,0 +170759416341,215,0 +170759416389,216,0 +170759416437,216,0 +170759416485,217,0 +170759416532,218,0 +170759416580,219,0 +170759416628,219,0 +170759416676,220,0 +170759416724,220,0 +170759416772,223,0 +170759416821,216,0 +170759416869,214,0 +170759416917,214,0 +170759416965,214,0 +170759417015,214,0 +170759417062,214,0 +170759417110,214,0 +170759417158,214,0 +170759417206,214,0 +170759417254,215,0 +170759417302,214,0 +170759417350,215,0 +170759417398,215,0 +170759417446,215,0 +170759417495,216,0 +170759417543,217,0 +170759417591,217,0 +170759417639,218,0 +170759417687,219,0 +170759417735,219,0 +170759417783,221,0 +170759417830,222,0 +170759417878,215,0 +170759417926,214,0 +170759417974,214,0 +170759418022,214,0 +170759418072,214,0 +170759418120,214,0 +170759418167,215,0 +170759418217,214,0 +170759418267,214,0 +170759418316,215,0 +170759418364,216,0 +170759418412,215,0 +170759418460,216,0 +170759418508,218,0 +170759418556,219,0 +170759418604,219,0 +170759418652,219,0 +170759418701,220,0 +170759418749,222,0 +170759418797,222,0 +170759418845,222,0 +170759418893,216,0 +170759418941,215,0 +170759418990,215,0 +170759419040,215,0 +170759419088,215,0 +170759419136,215,0 +170759419184,215,0 +170759419232,215,0 +170759419279,216,0 +170759419329,217,0 +170759419377,218,0 +170759419425,218,0 +170759419474,219,0 +170759419522,220,0 +170759419570,221,0 +170759419618,221,0 +170759419666,221,0 +170759419714,221,0 +170759419762,223,0 +170759419811,222,0 +170759419859,223,0 +170759419907,222,0 +170759419956,215,0 +170759420004,214,0 +170759420052,214,0 +170759420100,215,0 +170759420148,215,0 +170759420196,216,0 +170759420244,216,0 +170759420293,217,0 +170759420343,218,0 +170759420391,218,0 +170759420440,220,0 +170759420488,219,0 +170759420538,220,0 +170759420586,221,0 +170759420633,221,0 +170759420681,222,0 +170759420729,222,0 +170759420779,224,0 +170759420828,223,0 +170759420876,223,0 +170759420924,223,0 +170759420972,216,0 +170759421020,215,0 +170759421069,215,0 +170759421117,216,0 +170759421165,217,0 +170759421213,217,0 +170759421261,218,0 +170759421309,218,0 +170759421357,219,0 +170759421405,218,0 +170759421453,219,0 +170759421501,220,0 +170759421549,221,0 +170759421596,221,0 +170759421646,222,0 +170759421694,222,0 +170759421742,222,0 +170759421790,223,0 +170759421838,223,0 +170759421885,223,0 +170759421933,223,0 +170759421983,222,0 +170759422032,215,0 +170759422080,215,0 +170759422128,215,0 +170759422178,216,0 +170759422226,216,0 +170759422273,217,0 +170759422323,216,0 +170759422371,217,0 +170759422419,218,0 +170759422467,218,0 +170759422515,219,0 +170759422563,220,0 +170759422611,221,0 +170759422659,222,0 +170759422707,222,0 +170759422755,222,0 +170759422802,223,0 +170759422850,223,0 +170759422898,222,0 +170759422946,222,0 +170759422994,223,0 +170759423042,216,0 +170759423091,215,0 +170759423139,215,0 +170759423187,215,0 +170759423235,215,0 +170759423283,216,0 +170759423331,216,0 +170759423381,217,0 +170759423429,217,0 +170759423476,217,0 +170759423524,217,0 +170759423572,218,0 +170759423620,219,0 +170759423667,219,0 +170759423715,219,0 +170759423763,220,0 +170759423811,220,0 +170759423859,220,0 +170759423907,219,0 +170759423956,218,0 +170759424004,223,0 +170759424052,217,0 +170759424100,214,0 +170759424148,213,0 +170759424195,214,0 +170759424243,214,0 +170759424293,213,0 +170759424341,213,0 +170759424389,213,0 +170759424436,214,0 +170759424484,214,0 +170759424532,214,0 +170759424580,214,0 +170759424629,214,0 +170759424679,214,0 +170759424727,215,0 +170759424775,215,0 +170759424824,216,0 +170759424874,217,0 +170759424921,217,0 +170759424969,218,0 +170759425019,221,0 +170759425067,223,0 +170759425115,216,0 +170759425163,215,0 +170759425212,215,0 +170759425260,215,0 +170759425308,215,0 +170759425356,216,0 +170759425406,216,0 +170759425454,216,0 +170759425503,216,0 +170759425551,216,0 +170759425599,217,0 +170759425647,218,0 +170759425696,218,0 +170759425744,219,0 +170759425792,220,0 +170759425840,219,0 +170759425888,220,0 +170759425936,221,0 +170759425984,222,0 +170759426032,221,0 +170759426081,222,0 +170759426129,216,0 +170759426177,214,0 +170759426225,214,0 +170759426272,214,0 +170759426322,214,0 +170759426370,215,0 +170759426418,215,0 +170759426466,215,0 +170759426513,215,0 +170759426561,216,0 +170759426609,216,0 +170759426659,216,0 +170759426708,217,0 +170759426756,219,0 +170759426806,219,0 +170759426853,220,0 +170759426901,220,0 +170759426949,220,0 +170759426997,221,0 +170759427045,221,0 +170759427093,223,0 +170759427141,222,0 +170759427189,215,0 +170759427237,214,0 +170759427285,215,0 +170759427332,215,0 +170759427380,215,0 +170759427428,215,0 +170759427478,215,0 +170759427527,216,0 +170759427575,216,0 +170759427625,216,0 +170759427674,216,0 +170759427722,216,0 +170759427772,218,0 +170759427820,218,0 +170759427868,219,0 +170759427916,220,0 +170759427964,221,0 +170759428012,221,0 +170759428061,220,0 +170759428109,222,0 +170759428158,222,0 +170759428206,216,0 +170759428254,214,0 +170759428302,215,0 +170759428352,215,0 +170759428401,215,0 +170759428449,215,0 +170759428497,215,0 +170759428545,216,0 +170759428595,216,0 +170759428644,217,0 +170759428692,217,0 +170759428740,217,0 +170759428788,219,0 +170759428836,219,0 +170759428884,220,0 +170759428933,221,0 +170759428981,221,0 +170759429029,221,0 +170759429079,222,0 +170759429127,222,0 +170759429176,222,0 +170759429224,222,0 +170759429274,215,0 +170759429322,214,0 +170759429370,215,0 +170759429419,214,0 +170759429469,215,0 +170759429517,215,0 +170759429565,215,0 +170759429613,215,0 +170759429661,216,0 +170759429708,216,0 +170759429756,216,0 +170759429804,217,0 +170759429852,217,0 +170759429900,219,0 +170759429948,218,0 +170759429996,219,0 +170759430044,220,0 +170759430094,220,0 +170759430141,221,0 +170759430189,222,0 +170759430237,223,0 +170759430287,216,0 +170759430335,215,0 +170759430384,215,0 +170759430432,215,0 +170759430480,215,0 +170759430528,215,0 +170759430576,215,0 +170759430624,216,0 +170759430673,216,0 +170759430723,215,0 +170759430771,216,0 +170759430819,217,0 +170759430866,218,0 +170759430916,219,0 +170759430964,220,0 +170759431012,220,0 +170759431060,221,0 +170759431109,222,0 +170759431157,222,0 +170759431205,222,0 +170759431253,223,0 +170759431301,222,0 +170759431350,214,0 +170759431398,214,0 +170759431446,214,0 +170759431496,214,0 +170759431544,214,0 +170759431592,214,0 +170759431641,215,0 +170759431689,215,0 +170759431739,215,0 +170759431786,215,0 +170759431834,215,0 +170759431882,215,0 +170759431932,216,0 +170759431981,216,0 +170759432029,218,0 +170759432079,218,0 +170759432127,219,0 +170759432175,219,0 +170759432224,220,0 +170759432272,221,0 +170759432320,222,0 +170759432368,215,0 +170759432416,214,0 +170759432465,214,0 +170759432513,214,0 +170759432561,214,0 +170759432611,215,0 +170759432659,215,0 +170759432707,215,0 +170759432756,215,0 +170759432804,215,0 +170759432852,216,0 +170759432900,216,0 +170759432948,217,0 +170759432996,218,0 +170759433044,218,0 +170759433093,219,0 +170759433141,220,0 +170759433191,219,0 +170759433239,220,0 +170759433287,220,0 +170759433336,222,0 +170759433386,216,0 +170759433434,215,0 +170759433482,214,0 +170759433529,214,0 +170759433577,214,0 +170759433627,215,0 +170759433675,215,0 +170759433723,214,0 +170759433772,215,0 +170759433822,215,0 +170759433870,215,0 +170759433918,216,0 +170759433966,217,0 +170759434015,218,0 +170759434063,219,0 +170759434111,220,0 +170759434160,220,0 +170759434210,221,0 +170759434258,221,0 +170759434306,222,0 +170759434354,222,0 +170759434402,223,0 +170759434449,215,0 +170759434497,214,0 +170759434545,214,0 +170759434593,214,0 +170759434641,215,0 +170759434689,215,0 +170759434737,215,0 +170759434786,215,0 +170759434834,215,0 +170759434882,215,0 +170759434930,216,0 +170759434980,216,0 +170759435027,216,0 +170759435077,217,0 +170759435125,219,0 +170759435173,218,0 +170759435221,220,0 +170759435269,221,0 +170759435316,219,0 +170759435364,220,0 +170759435412,222,0 +170759435462,223,0 +170759435510,215,0 +170759435558,214,0 +170759435605,214,0 +170759435653,214,0 +170759435701,215,0 +170759435751,215,0 +170759435799,215,0 +170759435847,215,0 +170759435897,215,0 +170759435946,215,0 +170759435994,216,0 +170759436042,216,0 +170759436090,218,0 +170759436138,219,0 +170759436186,220,0 +170759436234,220,0 +170759436283,220,0 +170759436331,220,0 +170759436379,221,0 +170759436427,222,0 +170759436475,222,0 +170759436523,215,0 +170759436571,214,0 +170759436619,214,0 +170759436667,214,0 +170759436716,214,0 +170759436764,214,0 +170759436814,214,0 +170759436863,215,0 +170759436911,215,0 +170759436959,215,0 +170759437009,215,0 +170759437057,215,0 +170759437106,216,0 +170759437154,217,0 +170759437204,218,0 +170759437252,218,0 +170759437300,219,0 +170759437348,219,0 +170759437396,220,0 +170759437444,220,0 +170759437493,222,0 +170759437541,223,0 +170759437589,215,0 +170759437637,214,0 +170759437685,214,0 +170759437733,214,0 +170759437781,214,0 +170759437830,214,0 +170759437880,214,0 +170759437929,215,0 +170759437977,215,0 +170759438025,215,0 +170759438073,215,0 +170759438121,216,0 +170759438170,216,0 +170759438219,216,0 +170759438266,216,0 +170759438314,217,0 +170759438363,218,0 +170759438410,219,0 +170759438458,219,0 +170759438506,221,0 +170759438556,224,0 +170759438604,216,0 +170759438653,214,0 +170759438701,214,0 +170759438749,214,0 +170759438797,214,0 +170759438845,214,0 +170759438894,214,0 +170759438944,215,0 +170759438992,215,0 +170759439040,216,0 +170759439089,216,0 +170759439137,217,0 +170759439187,218,0 +170759439235,218,0 +170759439283,219,0 +170759439331,218,0 +170759439380,220,0 +170759439430,220,0 +170759439479,220,0 +170759439527,220,0 +170759439575,222,0 +170759439625,222,0 +170759439673,233,0 +170759439725,234,0 +170759439778,232,0 +170759439831,225,0 +170759439880,214,0 +170759439930,214,0 +170759439979,214,0 +170759440027,214,0 +170759440075,215,0 +170759440125,215,0 +170759440174,215,0 +170759440224,216,0 +170759440272,217,0 +170759440321,218,0 +170759440369,219,0 +170759440419,219,0 +170759440467,220,0 +170759440515,220,0 +170759440563,220,0 +170759440612,221,0 +170759440660,222,0 +170759440710,215,0 +170759440757,214,0 +170759440805,215,0 +170759440853,215,0 +170759440901,215,0 +170759440949,215,0 +170759440997,215,0 +170759441045,215,0 +170759441094,216,0 +170759441144,216,0 +170759441192,217,0 +170759441240,217,0 +170759441288,218,0 +170759441337,219,0 +170759441387,220,0 +170759441435,220,0 +170759441483,221,0 +170759441531,221,0 +170759441579,221,0 +170759441627,222,0 +170759441676,223,0 +170759441724,216,0 +170759441774,213,0 +170759441823,214,0 +170759441871,214,0 +170759441919,214,0 +170759441967,214,0 +170759442017,214,0 +170759442064,215,0 +170759442114,215,0 +170759442164,216,0 +170759442212,215,0 +170759442259,216,0 +170759442309,217,0 +170759442357,218,0 +170759442407,219,0 +170759442455,220,0 +170759442503,220,0 +170759442550,220,0 +170759442598,220,0 +170759442648,220,0 +170759442696,222,0 +170759442745,222,0 +170759442793,214,0 +170759442843,213,0 +170759442892,214,0 +170759442942,214,0 +170759442991,215,0 +170759443039,215,0 +170759443089,215,0 +170759443138,215,0 +170759443186,215,0 +170759443234,215,0 +170759443282,216,0 +170759443330,216,0 +170759443380,217,0 +170759443429,217,0 +170759443477,218,0 +170759443525,219,0 +170759443573,220,0 +170759443621,220,0 +170759443669,220,0 +170759443717,222,0 +170759443765,222,0 +170759443814,216,0 +170759443862,214,0 +170759443910,214,0 +170759443960,214,0 +170759444008,214,0 +170759444056,214,0 +170759444104,215,0 +170759444153,215,0 +170759444201,215,0 +170759444249,215,0 +170759444297,215,0 +170759444345,216,0 +170759444393,216,0 +170759444441,217,0 +170759444489,218,0 +170759444536,219,0 +170759444584,219,0 +170759444632,219,0 +170759444680,220,0 +170759444728,220,0 +170759444776,222,0 +170759444824,222,0 +170759444874,215,0 +170759444922,214,0 +170759444970,214,0 +170759445017,214,0 +170759445065,215,0 +170759445115,215,0 +170759445164,216,0 +170759445212,216,0 +170759445260,216,0 +170759445308,216,0 +170759445356,216,0 +170759445406,216,0 +170759445454,217,0 +170759445501,217,0 +170759445551,218,0 +170759445599,220,0 +170759445647,220,0 +170759445696,221,0 +170759445744,220,0 +170759445792,220,0 +170759445840,222,0 +170759445888,217,0 +170759445937,214,0 +170759445985,214,0 +170759446033,215,0 +170759446081,215,0 +170759446129,215,0 +170759446178,215,0 +170759446226,216,0 +170759446274,216,0 +170759446324,216,0 +170759446372,216,0 +170759446421,217,0 +170759446471,218,0 +170759446519,219,0 +170759446567,219,0 +170759446616,219,0 +170759446666,221,0 +170759446714,221,0 +170759446763,221,0 +170759446811,222,0 +170759446859,223,0 +170759446907,222,0 +170759446957,215,0 +170759447006,214,0 +170759447054,215,0 +170759447102,215,0 +170759447152,215,0 +170759447200,216,0 +170759447248,216,0 +170759447297,216,0 +170759447345,217,0 +170759447393,218,0 +170759447441,218,0 +170759447490,220,0 +170759447538,220,0 +170759447588,220,0 +170759447636,221,0 +170759447685,221,0 +170759447735,221,0 +170759447783,223,0 +170759447831,222,0 +170759447880,223,0 +170759447928,223,0 +170759447978,216,0 +170759448026,215,0 +170759448075,215,0 +170759448123,216,0 +170759448171,216,0 +170759448219,216,0 +170759448269,217,0 +170759448317,217,0 +170759448364,217,0 +170759448412,218,0 +170759448462,219,0 +170759448511,219,0 +170759448559,219,0 +170759448607,219,0 +170759448655,220,0 +170759448703,220,0 +170759448751,221,0 +170759448799,222,0 +170759448849,222,0 +170759448897,222,0 +170759448945,222,0 +170759448993,223,0 +170759449041,216,0 +170759449090,215,0 +170759449140,215,0 +170759449188,216,0 +170759449236,217,0 +170759449285,217,0 +170759449333,218,0 +170759449381,218,0 +170759449429,219,0 +170759449479,219,0 +170759449526,219,0 +170759449574,220,0 +170759449622,220,0 +170759449672,221,0 +170759449721,221,0 +170759449771,221,0 +170759449820,220,0 +170759449868,220,0 +170759449918,219,0 +170759449966,222,0 +170759450014,222,0 +170759450063,216,0 +170759450111,214,0 +170759450159,214,0 +170759450207,214,0 +170759450255,215,0 +170759450303,215,0 +170759450352,215,0 +170759450400,215,0 +170759450448,216,0 +170759450496,216,0 +170759450544,216,0 +170759450593,217,0 +170759450643,218,0 +170759450692,218,0 +170759450742,219,0 +170759450791,219,0 +170759450839,220,0 +170759450887,220,0 +170759450935,221,0 +170759450983,221,0 +170759451031,221,0 +170759451079,223,0 +170759451127,215,0 +170759451177,214,0 +170759451225,213,0 +170759451273,213,0 +170759451321,213,0 +170759451369,213,0 +170759451417,213,0 +170759451465,213,0 +170759451513,213,0 +170759451561,214,0 +170759451609,214,0 +170759451656,214,0 +170759451704,214,0 +170759451754,214,0 +170759451803,214,0 +170759451851,215,0 +170759451901,215,0 +170759451950,216,0 +170759451998,217,0 +170759452046,221,0 +170759452096,222,0 +170759452144,216,0 +170759452192,214,0 +170759452240,214,0 +170759452288,214,0 +170759452335,214,0 +170759452383,215,0 +170759452431,214,0 +170759452481,215,0 +170759452529,215,0 +170759452579,215,0 +170759452628,215,0 +170759452676,215,0 +170759452724,216,0 +170759452773,216,0 +170759452821,217,0 +170759452871,218,0 +170759452920,219,0 +170759452968,219,0 +170759453016,220,0 +170759453064,220,0 +170759453112,222,0 +170759453161,223,0 +170759453209,215,0 +170759453257,214,0 +170759453307,214,0 +170759453355,215,0 +170759453403,215,0 +170759453451,216,0 +170759453498,216,0 +170759453548,216,0 +170759453597,216,0 +170759453645,217,0 +170759453693,218,0 +170759453741,218,0 +170759453789,220,0 +170759453839,220,0 +170759453887,221,0 +170759453935,221,0 +170759453983,222,0 +170759454030,223,0 +170759454078,223,0 +170759454126,223,0 +170759454176,222,0 +170759454224,215,0 +170759454272,214,0 +170759454320,215,0 +170759454367,215,0 +170759454415,215,0 +170759454463,216,0 +170759454513,216,0 +170759454561,216,0 +170759454609,218,0 +170759454657,217,0 +170759454704,219,0 +170759454752,219,0 +170759454800,219,0 +170759454850,220,0 +170759454898,221,0 +170759454946,221,0 +170759454994,222,0 +170759455042,221,0 +170759455089,221,0 +170759455137,220,0 +170759455185,222,0 +170759455233,223,0 +170759455283,215,0 +170759455331,214,0 +170759455380,214,0 +170759455428,215,0 +170759455478,215,0 +170759455525,215,0 +170759455573,215,0 +170759455621,216,0 +170759455669,216,0 +170759455717,217,0 +170759455767,218,0 +170759455815,220,0 +170759455863,219,0 +170759455911,220,0 +170759455959,220,0 +170759456007,220,0 +170759456056,222,0 +170759456106,221,0 +170759456155,223,0 +170759456205,220,0 +170759456254,222,0 +170759456304,215,0 +170759456353,214,0 +170759456402,214,0 +170759456450,215,0 +170759456498,215,0 +170759456546,215,0 +170759456594,216,0 +170759456642,217,0 +170759456692,217,0 +170759456740,217,0 +170759456787,219,0 +170759456835,219,0 +170759456885,220,0 +170759456933,220,0 +170759456981,220,0 +170759457028,220,0 +170759457076,222,0 +170759457124,221,0 +170759457172,223,0 +170759457220,223,0 +170759457268,223,0 +170759457316,222,0 +170759457364,216,0 +170759457412,214,0 +170759457460,215,0 +170759457508,215,0 +170759457555,215,0 +170759457603,215,0 +170759457651,215,0 +170759457701,215,0 +170759457749,215,0 +170759457797,216,0 +170759457844,218,0 +170759457892,219,0 +170759457940,220,0 +170759457988,220,0 +170759458036,220,0 +170759458084,220,0 +170759458132,221,0 +170759458180,221,0 +170759458229,221,0 +170759458277,222,0 +170759458327,222,0 +170759458375,222,0 +170759458423,215,0 +170759458472,215,0 +170759458520,214,0 +170759458568,214,0 +170759458616,215,0 +170759458664,215,0 +170759458712,215,0 +170759458761,215,0 +170759458809,215,0 +170759458857,216,0 +170759458905,216,0 +170759458953,217,0 +170759459002,219,0 +170759459050,219,0 +170759459098,220,0 +170759459146,220,0 +170759459194,222,0 +170759459241,222,0 +170759459289,221,0 +170759459337,221,0 +170759459385,222,0 +170759459433,216,0 +170759459480,215,0 +170759459528,214,0 +170759459576,215,0 +170759459624,215,0 +170759459672,215,0 +170759459719,216,0 +170759459767,215,0 +170759459815,215,0 +170759459863,216,0 +170759459911,216,0 +170759459959,217,0 +170759460009,218,0 +170759460057,219,0 +170759460105,220,0 +170759460152,222,0 +170759460200,221,0 +170759460248,222,0 +170759460296,222,0 +170759460344,221,0 +170759460392,222,0 +170759460440,223,0 +170759460488,216,0 +170759460535,215,0 +170759460583,214,0 +170759460631,215,0 +170759460679,215,0 +170759460727,215,0 +170759460775,215,0 +170759460823,216,0 +170759460872,216,0 +170759460920,215,0 +170759460968,216,0 +170759461016,216,0 +170759461063,216,0 +170759461111,217,0 +170759461159,218,0 +170759461207,218,0 +170759461255,219,0 +170759461303,220,0 +170759461352,220,0 +170759461400,220,0 +170759461449,222,0 +170759461497,222,0 +170759461547,215,0 +170759461595,214,0 +170759461643,214,0 +170759461692,214,0 +170759461740,214,0 +170759461788,214,0 +170759461836,214,0 +170759461885,214,0 +170759461933,214,0 +170759461983,214,0 +170759462031,214,0 +170759462080,214,0 +170759462128,214,0 +170759462176,214,0 +170759462224,214,0 +170759462272,214,0 +170759462322,214,0 +170759462370,214,0 +170759462419,214,0 +170759462467,215,0 +170759462515,215,0 +170759462563,215,0 +170759462611,215,0 +170759462659,216,0 +170759462707,216,0 +170759462754,217,0 +170759462802,218,0 +170759462852,218,0 +170759462900,217,0 +170759462947,217,0 +170759462995,222,0 +170759463043,223,0 +170759463091,215,0 +170759463139,214,0 +170759463189,214,0 +170759463236,214,0 +170759463284,215,0 +170759463332,214,0 +170759463382,215,0 +170759463430,215,0 +170759463478,215,0 +170759463526,215,0 +170759463574,215,0 +170759463622,216,0 +170759463670,217,0 +170759463719,217,0 +170759463767,218,0 +170759463817,219,0 +170759463864,219,0 +170759463912,219,0 +170759463960,220,0 +170759464008,221,0 +170759464056,224,0 +170759464106,216,0 +170759464153,215,0 +170759464203,215,0 +170759464251,215,0 +170759464299,215,0 +170759464347,215,0 +170759464396,216,0 +170759464444,216,0 +170759464494,216,0 +170759464542,218,0 +170759464590,219,0 +170759464638,218,0 +170759464687,220,0 +170759464737,221,0 +170759464786,220,0 +170759464836,222,0 +170759464885,220,0 +170759464933,224,0 +170759464981,223,0 +170759465029,223,0 +170759465077,222,0 +170759465125,223,0 +170759465173,216,0 +170759465222,214,0 +170759465270,215,0 +170759465318,215,0 +170759465366,215,0 +170759465414,215,0 +170759465462,216,0 +170759465510,216,0 +170759465558,216,0 +170759465606,217,0 +170759465655,217,0 +170759465705,217,0 +170759465753,217,0 +170759465801,218,0 +170759465850,219,0 +170759465898,219,0 +170759465946,220,0 +170759465994,220,0 +170759466042,221,0 +170759466090,221,0 +170759466138,222,0 +170759466186,222,0 +170759466233,214,0 +170759466283,214,0 +170759466331,214,0 +170759466379,214,0 +170759466427,214,0 +170759466475,214,0 +170759466523,213,0 +170759466571,214,0 +170759466620,214,0 +170759466668,214,0 +170759466716,214,0 +170759466765,215,0 +170759466813,215,0 +170759466861,215,0 +170759466909,215,0 +170759466957,216,0 +170759467005,216,0 +170759467053,217,0 +170759467103,217,0 +170759467152,221,0 +170759467200,221,0 +170759467250,215,0 +170759467299,214,0 +170759467347,214,0 +170759467397,213,0 +170759467444,214,0 +170759467492,213,0 +170759467540,214,0 +170759467588,214,0 +170759467636,214,0 +170759467686,214,0 +170759467734,214,0 +170759467782,214,0 +170759467829,215,0 +170759467877,215,0 +170759467927,215,0 +170759467975,216,0 +170759468023,217,0 +170759468071,217,0 +170759468119,218,0 +170759468167,218,0 +170759468216,222,0 +170759468266,222,0 +170759468313,214,0 +170759468361,214,0 +170759468409,214,0 +170759468457,214,0 +170759468507,214,0 +170759468554,214,0 +170759468602,214,0 +170759468650,215,0 +170759468700,215,0 +170759468748,215,0 +170759468796,216,0 +170759468845,215,0 +170759468893,215,0 +170759468942,217,0 +170759468992,217,0 +170759469040,218,0 +170759469088,219,0 +170759469136,220,0 +170759469184,220,0 +170759469232,223,0 +170759469280,222,0 +170759469328,216,0 +170759469376,214,0 +170759469424,215,0 +170759469472,215,0 +170759469521,215,0 +170759469569,215,0 +170759469617,215,0 +170759469665,216,0 +170759469714,215,0 +170759469764,215,0 +170759469812,216,0 +170759469861,217,0 +170759469911,218,0 +170759469960,219,0 +170759470008,220,0 +170759470056,221,0 +170759470106,222,0 +170759470154,222,0 +170759470203,221,0 +170759470251,221,0 +170759470299,222,0 +170759470347,219,0 +170759470396,215,0 +170759470444,215,0 +170759470492,215,0 +170759470540,215,0 +170759470588,216,0 +170759470638,215,0 +170759470686,216,0 +170759470733,216,0 +170759470781,217,0 +170759470831,217,0 +170759470879,218,0 +170759470927,219,0 +170759470975,220,0 +170759471024,220,0 +170759471072,222,0 +170759471122,222,0 +170759471170,222,0 +170759471219,222,0 +170759471267,222,0 +170759471317,222,0 +170759471365,223,0 +170759471413,216,0 +170759471460,215,0 +170759471508,214,0 +170759471558,215,0 +170759471607,215,0 +170759471655,215,0 +170759471703,215,0 +170759471751,216,0 +170759471799,217,0 +170759471848,217,0 +170759471898,217,0 +170759471947,218,0 +170759471995,221,0 +170759472045,220,0 +170759472093,220,0 +170759472141,220,0 +170759472190,221,0 +170759472238,222,0 +170759472286,222,0 +170759472334,222,0 +170759472382,222,0 +170759472431,222,0 +170759472481,215,0 +170759472529,215,0 +170759472576,215,0 +170759472626,215,0 +170759472674,216,0 +170759472722,216,0 +170759472770,216,0 +170759472818,216,0 +170759472867,217,0 +170759472915,218,0 +170759472963,218,0 +170759473011,220,0 +170759473059,220,0 +170759473108,220,0 +170759473156,222,0 +170759473204,221,0 +170759473254,222,0 +170759473302,222,0 +170759473349,223,0 +170759473397,223,0 +170759473447,223,0 +170759473495,216,0 +170759473542,215,0 +170759473590,215,0 +170759473638,215,0 +170759473686,215,0 +170759473734,215,0 +170759473782,216,0 +170759473830,216,0 +170759473879,217,0 +170759473927,217,0 +170759473975,217,0 +170759474023,218,0 +170759474071,219,0 +170759474119,219,0 +170759474167,220,0 +170759474215,220,0 +170759474263,222,0 +170759474311,221,0 +170759474359,221,0 +170759474408,222,0 +170759474456,223,0 +170759474506,222,0 +170759474554,216,0 +170759474601,215,0 +170759474649,215,0 +170759474699,215,0 +170759474747,215,0 +170759474795,215,0 +170759474843,216,0 +170759474891,216,0 +170759474939,216,0 +170759474988,216,0 +170759475036,216,0 +170759475084,217,0 +170759475132,218,0 +170759475180,218,0 +170759475228,219,0 +170759475276,220,0 +170759475324,222,0 +170759475371,221,0 +170759475419,221,0 +170759475467,222,0 +170759475515,223,0 +170759475563,222,0 +170759475611,215,0 +170759475661,215,0 +170759475709,215,0 +170759475757,215,0 +170759475806,216,0 +170759475854,216,0 +170759475902,216,0 +170759475950,216,0 +170759475998,218,0 +170759476047,217,0 +170759476096,218,0 +170759476144,218,0 +170759476194,219,0 +170759476242,220,0 +170759476290,220,0 +170759476337,221,0 +170759476385,222,0 +170759476433,222,0 +170759476481,222,0 +170759476529,224,0 +170759476577,223,0 +170759476625,216,0 +170759476673,215,0 +170759476720,215,0 +170759476768,215,0 +170759476816,215,0 +170759476864,215,0 +170759476912,215,0 +170759476960,216,0 +170759477009,216,0 +170759477057,216,0 +170759477105,216,0 +170759477153,217,0 +170759477201,218,0 +170759477251,218,0 +170759477300,220,0 +170759477348,220,0 +170759477398,220,0 +170759477445,220,0 +170759477493,220,0 +170759477541,221,0 +170759477589,223,0 +170759477637,223,0 +170759477685,214,0 +170759477733,213,0 +170759477781,213,0 +170759477828,213,0 +170759477876,213,0 +170759477924,213,0 +170759477972,213,0 +170759478020,213,0 +170759478067,213,0 +170759478115,213,0 +170759478163,213,0 +170759478211,213,0 +170759478259,213,0 +170759478307,214,0 +170759478354,214,0 +170759478402,214,0 +170759478450,215,0 +170759478498,215,0 +170759478545,215,0 +170759478593,216,0 +170759478641,222,0 +170759478689,222,0 +170759478737,214,0 +170759478785,214,0 +170759478832,214,0 +170759478880,214,0 +170759478928,214,0 +170759478976,214,0 +170759479024,214,0 +170759479072,215,0 +170759479120,214,0 +170759479167,215,0 +170759479215,215,0 +170759479265,215,0 +170759479314,215,0 +170759479364,215,0 +170759479412,216,0 +170759479461,217,0 +170759479509,217,0 +170759479558,218,0 +170759479606,219,0 +170759479654,221,0 +170759479702,223,0 +170759479749,215,0 +170759479797,214,0 +170759479845,214,0 +170759479893,214,0 +170759479941,214,0 +170759479988,215,0 +170759480036,215,0 +170759480084,216,0 +170759480132,215,0 +170759480180,215,0 +170759480228,215,0 +170759480277,215,0 +170759480325,216,0 +170759480375,217,0 +170759480422,217,0 +170759480470,218,0 +170759480520,219,0 +170759480568,219,0 +170759480616,220,0 +170759480664,221,0 +170759480712,221,0 +170759480759,224,0 +170759480809,215,0 +170759480857,214,0 +170759480906,214,0 +170759480954,214,0 +170759481002,215,0 +170759481050,215,0 +170759481098,215,0 +170759481146,215,0 +170759481196,216,0 +170759481244,215,0 +170759481292,216,0 +170759481340,216,0 +170759481388,216,0 +170759481437,217,0 +170759481487,217,0 +170759481536,218,0 +170759481584,219,0 +170759481632,219,0 +170759481680,219,0 +170759481730,221,0 +170759481778,222,0 +170759481826,216,0 +170759481875,215,0 +170759481923,215,0 +170759481971,216,0 +170759482019,215,0 +170759482068,216,0 +170759482116,216,0 +170759482164,216,0 +170759482212,216,0 +170759482260,216,0 +170759482308,216,0 +170759482356,217,0 +170759482404,218,0 +170759482451,220,0 +170759482499,219,0 +170759482547,219,0 +170759482595,219,0 +170759482643,219,0 +170759482691,218,0 +170759482739,218,0 +170759482786,221,0 +170759482836,222,0 +170759482884,216,0 +170759482932,214,0 +170759482981,214,0 +170759483029,214,0 +170759483079,214,0 +170759483127,215,0 +170759483174,215,0 +170759483222,215,0 +170759483270,215,0 +170759483318,216,0 +170759483366,217,0 +170759483414,218,0 +170759483461,218,0 +170759483509,219,0 +170759483557,219,0 +170759483605,220,0 +170759483653,221,0 +170759483701,221,0 +170759483748,222,0 +170759483796,222,0 +170759483844,222,0 +170759483892,221,0 +170759483940,215,0 +170759483988,214,0 +170759484037,214,0 +170759484085,214,0 +170759484133,214,0 +170759484181,215,0 +170759484229,215,0 +170759484277,215,0 +170759484325,215,0 +170759484373,215,0 +170759484421,216,0 +170759484468,216,0 +170759484516,218,0 +170759484564,218,0 +170759484612,219,0 +170759484660,220,0 +170759484709,220,0 +170759484757,220,0 +170759484805,221,0 +170759484853,221,0 +170759484901,223,0 +170759484950,217,0 +170759484998,215,0 +170759485046,215,0 +170759485094,215,0 +170759485143,215,0 +170759485191,215,0 +170759485239,215,0 +170759485287,215,0 +170759485335,216,0 +170759485383,216,0 +170759485431,217,0 +170759485479,218,0 +170759485527,219,0 +170759485575,219,0 +170759485624,220,0 +170759485672,220,0 +170759485720,220,0 +170759485768,222,0 +170759485818,221,0 +170759485866,222,0 +170759485913,222,0 +170759485961,223,0 +170759486011,216,0 +170759486059,214,0 +170759486107,214,0 +170759486155,214,0 +170759486204,215,0 +170759486252,215,0 +170759486300,215,0 +170759486348,215,0 +170759486396,215,0 +170759486444,216,0 +170759486492,216,0 +170759486540,216,0 +170759486589,217,0 +170759486637,218,0 +170759486685,220,0 +170759486733,219,0 +170759486781,219,0 +170759486829,220,0 +170759486877,220,0 +170759486925,220,0 +170759486973,222,0 +170759487022,222,0 +170759487070,215,0 +170759487119,214,0 +170759487167,214,0 +170759487215,215,0 +170759487263,215,0 +170759487311,215,0 +170759487360,215,0 +170759487408,215,0 +170759487456,216,0 +170759487504,216,0 +170759487553,217,0 +170759487601,217,0 +170759487649,218,0 +170759487697,219,0 +170759487744,219,0 +170759487792,218,0 +170759487842,218,0 +170759487891,218,0 +170759487939,216,0 +170759487987,216,0 +170759488034,222,0 +170759488082,217,0 +170759488130,214,0 +170759488179,214,0 +170759488229,214,0 +170759488277,214,0 +170759488325,215,0 +170759488372,215,0 +170759488420,215,0 +170759488468,215,0 +170759488516,215,0 +170759488565,215,0 +170759488613,216,0 +170759488661,216,0 +170759488709,216,0 +170759488757,216,0 +170759488805,218,0 +170759488853,218,0 +170759488901,219,0 +170759488948,219,0 +170759488996,219,0 +170759489044,222,0 +170759489092,222,0 +170759489140,215,0 +170759489188,214,0 +170759489236,215,0 +170759489284,215,0 +170759489331,215,0 +170759489379,215,0 +170759489427,215,0 +170759489475,215,0 +170759489523,215,0 +170759489571,216,0 +170759489619,216,0 +170759489666,216,0 +170759489714,216,0 +170759489762,217,0 +170759489810,218,0 +170759489859,219,0 +170759489907,221,0 +170759489955,220,0 +170759490003,220,0 +170759490051,221,0 +170759490099,224,0 +170759490146,223,0 +170759490194,216,0 +170759490242,214,0 +170759490290,215,0 +170759490338,215,0 +170759490385,215,0 +170759490433,215,0 +170759490481,215,0 +170759490529,216,0 +170759490577,216,0 +170759490625,216,0 +170759490672,215,0 +170759490722,216,0 +170759490771,216,0 +170759490819,217,0 +170759490867,218,0 +170759490915,218,0 +170759490963,219,0 +170759491010,219,0 +170759491058,219,0 +170759491108,220,0 +170759491155,222,0 +170759491203,220,0 +170759491251,214,0 +170759491299,214,0 +170759491347,214,0 +170759491395,214,0 +170759491443,214,0 +170759491490,214,0 +170759491538,214,0 +170759491586,214,0 +170759491634,215,0 +170759491682,214,0 +170759491730,215,0 +170759491777,215,0 +170759491825,215,0 +170759491875,216,0 +170759491923,216,0 +170759491970,217,0 +170759492018,217,0 +170759492066,218,0 +170759492114,219,0 +170759492162,221,0 +170759492210,223,0 +170759492258,216,0 +170759492306,215,0 +170759492354,215,0 +170759492403,215,0 +170759492451,215,0 +170759492499,215,0 +170759492547,215,0 +170759492594,216,0 +170759492642,216,0 +170759492690,216,0 +170759492738,216,0 +170759492786,217,0 +170759492834,217,0 +170759492882,217,0 +170759492929,219,0 +170759492979,219,0 +170759493027,220,0 +170759493075,221,0 +170759493123,221,0 +170759493170,222,0 +170759493218,223,0 +170759493266,223,0 +170759493314,215,0 +170759493362,214,0 +170759493410,214,0 +170759493458,214,0 +170759493505,214,0 +170759493553,214,0 +170759493601,214,0 +170759493649,214,0 +170759493697,214,0 +170759493745,214,0 +170759493792,215,0 +170759493840,215,0 +170759493888,215,0 +170759493936,215,0 +170759493984,216,0 +170759494031,217,0 +170759494079,217,0 +170759494127,218,0 +170759494176,219,0 +170759494224,219,0 +170759494274,223,0 +170759494321,223,0 +170759494369,215,0 +170759494417,214,0 +170759494465,214,0 +170759494513,214,0 +170759494561,214,0 +170759494609,215,0 +170759494656,215,0 +170759494704,215,0 +170759494754,215,0 +170759494801,215,0 +170759494849,215,0 +170759494897,215,0 +170759494945,216,0 +170759494993,217,0 +170759495041,217,0 +170759495089,218,0 +170759495136,219,0 +170759495184,219,0 +170759495232,220,0 +170759495280,220,0 +170759495328,224,0 +170759495377,216,0 +170759495425,215,0 +170759495473,215,0 +170759495521,215,0 +170759495569,215,0 +170759495617,215,0 +170759495665,215,0 +170759495713,215,0 +170759495760,216,0 +170759495808,216,0 +170759495856,216,0 +170759495904,216,0 +170759495953,217,0 +170759496001,218,0 +170759496049,218,0 +170759496097,219,0 +170759496145,220,0 +170759496193,221,0 +170759496240,222,0 +170759496288,222,0 +170759496336,222,0 +170759496384,223,0 +170759496432,216,0 +170759496480,215,0 +170759496528,215,0 +170759496576,215,0 +170759496623,215,0 +170759496671,215,0 +170759496719,215,0 +170759496767,215,0 +170759496815,216,0 +170759496863,216,0 +170759496910,216,0 +170759496958,217,0 +170759497006,218,0 +170759497054,219,0 +170759497102,220,0 +170759497150,221,0 +170759497198,221,0 +170759497246,221,0 +170759497293,221,0 +170759497343,222,0 +170759497391,223,0 +170759497439,224,0 +170759497487,216,0 +170759497534,215,0 +170759497582,216,0 +170759497630,216,0 +170759497678,216,0 +170759497726,217,0 +170759497775,217,0 +170759497823,218,0 +170759497871,218,0 +170759497919,219,0 +170759497967,219,0 +170759498015,220,0 +170759498062,221,0 +170759498110,221,0 +170759498158,221,0 +170759498206,221,0 +170759498255,222,0 +170759498303,224,0 +170759498351,222,0 +170759498401,222,0 +170759498448,222,0 +170759498496,221,0 +170759498544,215,0 +170759498592,214,0 +170759498640,215,0 +170759498688,215,0 +170759498735,216,0 +170759498783,217,0 +170759498831,217,0 +170759498879,218,0 +170759498927,219,0 +170759498976,219,0 +170759499024,220,0 +170759499072,220,0 +170759499120,221,0 +170759499168,223,0 +170759499215,222,0 +170759499263,223,0 +170759499313,222,0 +170759499360,224,0 +170759499408,223,0 +170759499456,223,0 +170759499504,222,0 +170759499552,216,0 +170759499600,215,0 +170759499648,215,0 +170759499695,216,0 +170759499743,216,0 +170759499791,216,0 +170759499839,217,0 +170759499887,217,0 +170759499935,217,0 +170759499984,217,0 +170759500032,218,0 +170759500080,219,0 +170759500130,220,0 +170759500178,220,0 +170759500226,221,0 +170759500274,221,0 +170759500323,222,0 +170759500373,222,0 +170759500421,222,0 +170759500469,224,0 +170759500518,223,0 +170759500566,222,0 +170759500616,216,0 +170759500663,215,0 +170759500711,215,0 +170759500759,215,0 +170759500807,216,0 +170759500855,216,0 +170759500904,217,0 +170759500952,217,0 +170759501000,217,0 +170759501048,218,0 +170759501096,219,0 +170759501144,220,0 +170759501192,220,0 +170759501240,221,0 +170759501287,221,0 +170759501337,223,0 +170759501385,222,0 +170759501433,223,0 +170759501481,223,0 +170759501530,222,0 +170759501578,222,0 +170759501628,218,0 +170759501676,215,0 +170759501724,215,0 +170759501772,216,0 +170759501820,215,0 +170759501868,216,0 +170759501917,217,0 +170759501967,217,0 +170759502016,217,0 +170759502066,217,0 +170759502115,218,0 +170759502163,218,0 +170759502211,220,0 +170759502259,220,0 +170759502308,220,0 +170759502356,221,0 +170759502404,221,0 +170759502452,221,0 +170759502502,221,0 +170759502549,221,0 +170759502597,223,0 +170759502645,223,0 +170759502693,216,0 +170759502741,215,0 +170759502790,215,0 +170759502838,215,0 +170759502886,215,0 +170759502933,215,0 +170759502981,216,0 +170759503029,216,0 +170759503077,217,0 +170759503126,217,0 +170759503174,219,0 +170759503222,218,0 +170759503270,219,0 +170759503318,219,0 +170759503366,219,0 +170759503414,220,0 +170759503462,220,0 +170759503510,221,0 +170759503559,221,0 +170759503607,221,0 +170759503655,223,0 +170759503703,216,0 +170759503753,214,0 +170759503800,214,0 +170759503848,214,0 +170759503896,214,0 +170759503944,215,0 +170759503994,215,0 +170759504042,215,0 +170759504091,215,0 +170759504139,215,0 +170759504187,215,0 +170759504235,215,0 +170759504285,216,0 +170759504334,216,0 +170759504382,216,0 +170759504430,217,0 +170759504478,218,0 +170759504526,219,0 +170759504574,219,0 +170759504622,220,0 +170759504670,223,0 +170759504718,223,0 +170759504766,216,0 +170759504814,215,0 +170759504861,215,0 +170759504909,215,0 +170759504957,215,0 +170759505005,215,0 +170759505053,216,0 +170759505101,216,0 +170759505149,216,0 +170759505197,216,0 +170759505245,216,0 +170759505293,217,0 +170759505341,218,0 +170759505390,219,0 +170759505438,220,0 +170759505488,220,0 +170759505536,222,0 +170759505584,223,0 +170759505632,222,0 +170759505680,221,0 +170759505728,233,0 +170759505775,223,0 +170759505823,215,0 +170759505871,214,0 +170759505919,215,0 +170759505967,215,0 +170759506016,215,0 +170759506064,215,0 +170759506112,215,0 +170759506159,215,0 +170759506209,216,0 +170759506257,215,0 +170759506304,216,0 +170759506352,216,0 +170759506402,217,0 +170759506449,218,0 +170759506497,219,0 +170759506547,220,0 +170759506595,220,0 +170759506642,221,0 +170759506690,221,0 +170759506738,221,0 +170759506786,223,0 +170759506834,216,0 +170759506882,215,0 +170759506930,214,0 +170759506977,214,0 +170759507025,215,0 +170759507073,215,0 +170759507121,215,0 +170759507169,215,0 +170759507216,215,0 +170759507264,215,0 +170759507312,215,0 +170759507360,216,0 +170759507408,216,0 +170759507456,216,0 +170759507504,217,0 +170759507551,218,0 +170759507599,218,0 +170759507647,219,0 +170759507695,220,0 +170759507743,221,0 +170759507791,222,0 +170759507839,223,0 +170759507888,216,0 +170759507936,214,0 +170759507984,215,0 +170759508032,215,0 +170759508080,215,0 +170759508128,215,0 +170759508175,215,0 +170759508223,215,0 +170759508271,215,0 +170759508319,215,0 +170759508367,216,0 +170759508415,216,0 +170759508464,216,0 +170759508512,217,0 +170759508562,218,0 +170759508610,218,0 +170759508658,219,0 +170759508706,220,0 +170759508754,220,0 +170759508801,221,0 +170759508849,223,0 +170759508899,223,0 +170759508947,216,0 +170759508995,214,0 +170759509043,214,0 +170759509090,214,0 +170759509138,214,0 +170759509186,214,0 +170759509234,214,0 +170759509284,215,0 +170759509331,215,0 +170759509379,215,0 +170759509427,215,0 +170759509475,215,0 +170759509523,215,0 +170759509571,216,0 +170759509619,216,0 +170759509666,216,0 +170759509714,217,0 +170759509762,217,0 +170759509810,218,0 +170759509858,219,0 +170759509905,220,0 +170759509953,220,0 +170759510001,215,0 +170759510049,215,0 +170759510097,215,0 +170759510145,215,0 +170759510193,215,0 +170759510242,215,0 +170759510292,215,0 +170759510341,215,0 +170759510389,215,0 +170759510439,216,0 +170759510488,216,0 +170759510536,217,0 +170759510584,218,0 +170759510632,220,0 +170759510681,219,0 +170759510729,222,0 +170759510777,221,0 +170759510825,223,0 +170759510873,222,0 +170759510923,223,0 +170759510970,223,0 +170759511020,216,0 +170759511068,214,0 +170759511116,214,0 +170759511164,214,0 +170759511212,215,0 +170759511260,215,0 +170759511308,215,0 +170759511357,215,0 +170759511407,215,0 +170759511456,215,0 +170759511504,216,0 +170759511554,216,0 +170759511603,216,0 +170759511651,218,0 +170759511699,218,0 +170759511748,219,0 +170759511796,220,0 +170759511844,220,0 +170759511892,221,0 +170759511940,221,0 +170759511988,222,0 +170759512035,224,0 +170759512083,215,0 +170759512131,214,0 +170759512179,215,0 +170759512227,215,0 +170759512274,215,0 +170759512322,215,0 +170759512370,215,0 +170759512418,215,0 +170759512468,216,0 +170759512517,216,0 +170759512565,216,0 +170759512615,217,0 +170759512663,217,0 +170759512710,218,0 +170759512758,219,0 +170759512808,220,0 +170759512857,220,0 +170759512905,220,0 +170759512953,220,0 +170759513002,222,0 +170759513050,223,0 +170759513100,216,0 +170759513148,214,0 +170759513196,214,0 +170759513243,214,0 +170759513291,214,0 +170759513339,215,0 +170759513387,215,0 +170759513435,215,0 +170759513483,215,0 +170759513530,215,0 +170759513578,215,0 +170759513626,216,0 +170759513674,216,0 +170759513722,217,0 +170759513770,217,0 +170759513818,218,0 +170759513865,218,0 +170759513913,220,0 +170759513961,220,0 +170759514009,221,0 +170759514057,223,0 +170759514105,223,0 +170759514152,216,0 +170759514200,215,0 +170759514248,214,0 +170759514296,215,0 +170759514345,215,0 +170759514393,216,0 +170759514443,216,0 +170759514490,216,0 +170759514538,216,0 +170759514588,217,0 +170759514636,218,0 +170759514685,219,0 +170759514733,219,0 +170759514781,221,0 +170759514829,221,0 +170759514879,222,0 +170759514928,222,0 +170759514976,222,0 +170759515024,223,0 +170759515072,222,0 +170759515122,223,0 +170759515170,222,0 +170759515217,215,0 +170759515265,215,0 +170759515313,215,0 +170759515363,215,0 +170759515411,215,0 +170759515459,215,0 +170759515507,216,0 +170759515555,215,0 +170759515603,216,0 +170759515651,217,0 +170759515699,217,0 +170759515748,218,0 +170759515796,219,0 +170759515844,221,0 +170759515892,220,0 +170759515940,221,0 +170759515989,221,0 +170759516039,222,0 +170759516087,222,0 +170759516135,222,0 +170759516184,223,0 +170759516234,216,0 +170759516282,214,0 +170759516331,214,0 +170759516379,215,0 +170759516429,215,0 +170759516478,215,0 +170759516527,215,0 +170759516575,215,0 +170759516625,216,0 +170759516673,216,0 +170759516721,217,0 +170759516769,217,0 +170759516817,218,0 +170759516865,220,0 +170759516912,219,0 +170759516960,220,0 +170759517008,220,0 +170759517056,220,0 +170759517104,219,0 +170759517152,219,0 +170759517200,221,0 +170759517248,223,0 +170759517296,215,0 +170759517344,214,0 +170759517392,214,0 +170759517440,214,0 +170759517488,214,0 +170759517535,214,0 +170759517583,214,0 +170759517631,215,0 +170759517679,215,0 +170759517727,215,0 +170759517775,215,0 +170759517823,216,0 +170759517871,216,0 +170759517918,217,0 +170759517966,218,0 +170759518014,219,0 +170759518062,219,0 +170759518110,219,0 +170759518158,219,0 +170759518205,219,0 +170759518253,222,0 +170759518301,216,0 +170759518349,214,0 +170759518397,214,0 +170759518445,215,0 +170759518493,214,0 +170759518541,215,0 +170759518588,215,0 +170759518636,215,0 +170759518684,215,0 +170759518734,216,0 +170759518783,216,0 +170759518831,215,0 +170759518881,216,0 +170759518929,216,0 +170759518977,217,0 +170759519025,218,0 +170759519074,219,0 +170759519122,220,0 +170759519170,221,0 +170759519218,221,0 +170759519266,222,0 +170759519314,223,0 +170759519362,216,0 +170759519410,214,0 +170759519458,214,0 +170759519505,214,0 +170759519553,215,0 +170759519603,215,0 +170759519651,215,0 +170759519699,215,0 +170759519747,215,0 +170759519795,216,0 +170759519842,216,0 +170759519890,216,0 +170759519938,217,0 +170759519986,217,0 diff --git a/laser_value/0211-06.csv b/laser_value/0211-06.csv new file mode 100644 index 0000000..adcd67c --- /dev/null +++ b/laser_value/0211-06.csv @@ -0,0 +1,7459 @@ +timestamp,laser_value,event +170759520034,218,0 +170759520082,219,0 +170759520130,219,0 +170759520178,220,0 +170759520225,221,0 +170759520273,221,0 +170759520321,222,0 +170759520369,223,0 +170759520417,215,0 +170759520465,213,0 +170759520512,214,0 +170759520560,214,0 +170759520608,214,0 +170759520658,214,0 +170759520706,214,0 +170759520753,214,0 +170759520801,214,0 +170759520849,215,0 +170759520897,215,0 +170759520945,215,0 +170759520993,215,0 +170759521041,215,0 +170759521089,216,0 +170759521136,217,0 +170759521184,218,0 +170759521232,218,0 +170759521280,219,0 +170759521328,220,0 +170759521376,223,0 +170759521424,223,0 +170759521472,215,0 +170759521519,215,0 +170759521567,215,0 +170759521617,215,0 +170759521666,215,0 +170759521714,215,0 +170759521764,215,0 +170759521813,215,0 +170759521861,216,0 +170759521911,216,0 +170759521959,217,0 +170759522007,217,0 +170759522054,218,0 +170759522104,220,0 +170759522152,219,0 +170759522200,220,0 +170759522249,222,0 +170759522299,222,0 +170759522347,222,0 +170759522395,223,0 +170759522443,223,0 +170759522492,215,0 +170759522540,214,0 +170759522588,214,0 +170759522636,214,0 +170759522684,214,0 +170759522732,214,0 +170759522781,215,0 +170759522829,215,0 +170759522879,215,0 +170759522928,215,0 +170759522976,215,0 +170759523026,216,0 +170759523073,215,0 +170759523121,216,0 +170759523171,217,0 +170759523219,218,0 +170759523267,219,0 +170759523315,219,0 +170759523364,219,0 +170759523412,220,0 +170759523462,222,0 +170759523510,222,0 +170759523558,215,0 +170759523606,215,0 +170759523654,214,0 +170759523702,214,0 +170759523751,215,0 +170759523799,215,0 +170759523847,215,0 +170759523895,215,0 +170759523943,217,0 +170759523991,216,0 +170759524039,216,0 +170759524087,216,0 +170759524136,217,0 +170759524184,218,0 +170759524232,219,0 +170759524280,220,0 +170759524329,220,0 +170759524379,221,0 +170759524428,221,0 +170759524478,223,0 +170759524526,222,0 +170759524575,216,0 +170759524625,214,0 +170759524673,214,0 +170759524722,214,0 +170759524770,215,0 +170759524820,215,0 +170759524868,215,0 +170759524917,215,0 +170759524965,216,0 +170759525013,216,0 +170759525061,217,0 +170759525109,218,0 +170759525158,218,0 +170759525206,219,0 +170759525254,220,0 +170759525301,221,0 +170759525349,221,0 +170759525399,222,0 +170759525448,224,0 +170759525496,222,0 +170759525544,222,0 +170759525592,222,0 +170759525642,215,0 +170759525690,215,0 +170759525739,215,0 +170759525787,215,0 +170759525835,215,0 +170759525883,215,0 +170759525931,216,0 +170759525980,216,0 +170759526029,217,0 +170759526077,218,0 +170759526125,219,0 +170759526175,219,0 +170759526223,220,0 +170759526271,220,0 +170759526319,221,0 +170759526366,221,0 +170759526414,223,0 +170759526462,222,0 +170759526510,223,0 +170759526560,222,0 +170759526609,222,0 +170759526657,216,0 +170759526705,215,0 +170759526753,215,0 +170759526801,215,0 +170759526849,215,0 +170759526897,215,0 +170759526945,216,0 +170759526994,216,0 +170759527042,217,0 +170759527090,218,0 +170759527138,218,0 +170759527187,219,0 +170759527235,219,0 +170759527283,221,0 +170759527331,221,0 +170759527379,221,0 +170759527427,221,0 +170759527475,221,0 +170759527523,222,0 +170759527571,222,0 +170759527619,223,0 +170759527668,223,0 +170759527718,216,0 +170759527766,215,0 +170759527814,215,0 +170759527862,215,0 +170759527909,216,0 +170759527957,216,0 +170759528005,216,0 +170759528053,217,0 +170759528101,217,0 +170759528151,218,0 +170759528198,219,0 +170759528246,220,0 +170759528294,220,0 +170759528344,221,0 +170759528393,221,0 +170759528441,222,0 +170759528489,221,0 +170759528537,220,0 +170759528585,220,0 +170759528633,219,0 +170759528681,222,0 +170759528728,216,0 +170759528776,214,0 +170759528824,215,0 +170759528872,215,0 +170759528920,215,0 +170759528969,215,0 +170759529017,215,0 +170759529065,216,0 +170759529113,215,0 +170759529160,217,0 +170759529208,218,0 +170759529256,218,0 +170759529304,219,0 +170759529351,219,0 +170759529399,220,0 +170759529447,220,0 +170759529495,221,0 +170759529543,221,0 +170759529591,220,0 +170759529639,221,0 +170759529687,221,0 +170759529734,223,0 +170759529782,216,0 +170759529830,214,0 +170759529878,214,0 +170759529926,215,0 +170759529973,215,0 +170759530021,215,0 +170759530069,216,0 +170759530117,216,0 +170759530165,216,0 +170759530213,215,0 +170759530260,216,0 +170759530308,217,0 +170759530356,218,0 +170759530404,219,0 +170759530452,219,0 +170759530500,220,0 +170759530547,221,0 +170759530595,221,0 +170759530643,221,0 +170759530691,221,0 +170759530739,222,0 +170759530787,223,0 +170759530834,216,0 +170759530882,214,0 +170759530930,214,0 +170759530978,214,0 +170759531026,214,0 +170759531074,214,0 +170759531121,214,0 +170759531169,214,0 +170759531217,214,0 +170759531265,214,0 +170759531313,214,0 +170759531360,215,0 +170759531410,215,0 +170759531458,215,0 +170759531506,215,0 +170759531553,216,0 +170759531601,216,0 +170759531649,217,0 +170759531699,217,0 +170759531746,216,0 +170759531794,221,0 +170759531842,223,0 +170759531890,215,0 +170759531938,214,0 +170759531986,214,0 +170759532034,215,0 +170759532081,215,0 +170759532129,215,0 +170759532177,215,0 +170759532225,215,0 +170759532273,215,0 +170759532321,215,0 +170759532368,215,0 +170759532416,216,0 +170759532464,218,0 +170759532512,218,0 +170759532561,220,0 +170759532609,219,0 +170759532657,220,0 +170759532705,221,0 +170759532753,221,0 +170759532801,221,0 +170759532849,222,0 +170759532896,220,0 +170759532944,215,0 +170759532992,215,0 +170759533040,215,0 +170759533088,215,0 +170759533136,215,0 +170759533183,215,0 +170759533231,215,0 +170759533279,215,0 +170759533329,216,0 +170759533377,216,0 +170759533425,216,0 +170759533473,216,0 +170759533521,217,0 +170759533569,218,0 +170759533618,218,0 +170759533668,219,0 +170759533717,220,0 +170759533767,219,0 +170759533816,220,0 +170759533864,221,0 +170759533912,222,0 +170759533960,217,0 +170759534009,214,0 +170759534057,214,0 +170759534105,215,0 +170759534153,215,0 +170759534201,215,0 +170759534249,215,0 +170759534297,216,0 +170759534346,215,0 +170759534394,216,0 +170759534442,216,0 +170759534490,217,0 +170759534540,218,0 +170759534588,218,0 +170759534637,219,0 +170759534686,220,0 +170759534734,221,0 +170759534782,221,0 +170759534832,221,0 +170759534880,221,0 +170759534928,223,0 +170759534977,223,0 +170759535025,215,0 +170759535075,215,0 +170759535123,215,0 +170759535171,215,0 +170759535219,215,0 +170759535267,216,0 +170759535314,216,0 +170759535362,216,0 +170759535410,216,0 +170759535458,216,0 +170759535506,217,0 +170759535554,218,0 +170759535602,218,0 +170759535650,219,0 +170759535697,220,0 +170759535745,221,0 +170759535793,221,0 +170759535841,221,0 +170759535889,221,0 +170759535936,221,0 +170759535984,223,0 +170759536032,215,0 +170759536080,215,0 +170759536128,214,0 +170759536176,215,0 +170759536224,215,0 +170759536272,215,0 +170759536319,215,0 +170759536367,215,0 +170759536415,215,0 +170759536463,216,0 +170759536511,217,0 +170759536558,217,0 +170759536606,218,0 +170759536654,219,0 +170759536702,220,0 +170759536750,219,0 +170759536798,220,0 +170759536846,220,0 +170759536894,221,0 +170759536941,222,0 +170759536989,221,0 +170759537037,222,0 +170759537085,217,0 +170759537133,1010100,0 +170759537193,1010100,0 +170759537249,1010100,0 +170759537308,1010100,0 +170759537382,1010100,0 +170759537455,1010100,0 +170759537525,214,0 +170759537573,214,0 +170759537621,214,0 +170759537669,215,0 +170759537717,214,0 +170759537765,215,0 +170759537813,215,0 +170759537860,216,0 +170759537908,217,0 +170759537956,217,0 +170759538004,217,0 +170759538052,222,0 +170759538099,223,0 +170759538147,216,0 +170759538195,215,0 +170759538243,215,0 +170759538291,215,0 +170759538340,215,0 +170759538388,215,0 +170759538436,215,0 +170759538484,215,0 +170759538532,215,0 +170759538579,215,0 +170759538627,216,0 +170759538675,216,0 +170759538723,216,0 +170759538771,217,0 +170759538819,218,0 +170759538866,219,0 +170759538914,220,0 +170759538962,221,0 +170759539010,222,0 +170759539058,221,0 +170759539105,223,0 +170759539155,220,0 +170759539203,215,0 +170759539251,215,0 +170759539299,215,0 +170759539347,215,0 +170759539395,215,0 +170759539442,215,0 +170759539490,216,0 +170759539538,215,0 +170759539586,216,0 +170759539634,216,0 +170759539682,216,0 +170759539731,217,0 +170759539779,218,0 +170759539829,219,0 +170759539877,220,0 +170759539924,220,0 +170759539972,221,0 +170759540020,222,0 +170759540068,223,0 +170759540116,221,0 +170759540164,223,0 +170759540211,216,0 +170759540259,215,0 +170759540307,215,0 +170759540355,215,0 +170759540403,215,0 +170759540451,215,0 +170759540499,215,0 +170759540546,215,0 +170759540594,215,0 +170759540642,216,0 +170759540690,216,0 +170759540738,217,0 +170759540786,219,0 +170759540833,219,0 +170759540881,220,0 +170759540929,221,0 +170759540977,222,0 +170759541025,223,0 +170759541073,223,0 +170759541120,224,0 +170759541168,222,0 +170759541216,222,0 +170759541265,222,0 +170759541313,215,0 +170759541361,215,0 +170759541409,215,0 +170759541457,215,0 +170759541505,215,0 +170759541552,215,0 +170759541600,216,0 +170759541648,216,0 +170759541696,217,0 +170759541746,217,0 +170759541793,217,0 +170759541843,217,0 +170759541891,218,0 +170759541939,219,0 +170759541986,220,0 +170759542035,221,0 +170759542082,221,0 +170759542130,222,0 +170759542178,224,0 +170759542226,223,0 +170759542274,223,0 +170759542322,223,0 +170759542370,216,0 +170759542417,214,0 +170759542465,214,0 +170759542513,214,0 +170759542561,215,0 +170759542609,215,0 +170759542656,216,0 +170759542704,216,0 +170759542752,216,0 +170759542800,216,0 +170759542848,217,0 +170759542895,218,0 +170759542943,218,0 +170759542991,219,0 +170759543039,220,0 +170759543087,221,0 +170759543135,221,0 +170759543183,221,0 +170759543231,222,0 +170759543280,221,0 +170759543328,223,0 +170759543376,223,0 +170759543423,216,0 +170759543471,215,0 +170759543519,214,0 +170759543567,214,0 +170759543615,215,0 +170759543663,215,0 +170759543711,215,0 +170759543758,215,0 +170759543806,216,0 +170759543854,216,0 +170759543902,216,0 +170759543950,216,0 +170759543999,217,0 +170759544047,217,0 +170759544095,218,0 +170759544143,219,0 +170759544191,219,0 +170759544238,220,0 +170759544286,220,0 +170759544334,222,0 +170759544383,221,0 +170759544431,222,0 +170759544479,216,0 +170759544527,214,0 +170759544575,214,0 +170759544623,214,0 +170759544671,214,0 +170759544718,214,0 +170759544766,214,0 +170759544814,214,0 +170759544862,215,0 +170759544910,215,0 +170759544957,215,0 +170759545005,216,0 +170759545053,215,0 +170759545101,215,0 +170759545149,217,0 +170759545198,218,0 +170759545246,218,0 +170759545293,219,0 +170759545341,220,0 +170759545389,220,0 +170759545437,219,0 +170759545485,222,0 +170759545532,222,0 +170759545580,215,0 +170759545628,214,0 +170759545676,214,0 +170759545724,214,0 +170759545772,215,0 +170759545821,215,0 +170759545869,215,0 +170759545917,215,0 +170759545964,215,0 +170759546012,215,0 +170759546062,215,0 +170759546110,216,0 +170759546157,216,0 +170759546205,217,0 +170759546253,218,0 +170759546301,219,0 +170759546348,219,0 +170759546396,218,0 +170759546444,218,0 +170759546494,218,0 +170759546541,221,0 +170759546589,222,0 +170759546637,216,0 +170759546685,214,0 +170759546733,214,0 +170759546781,214,0 +170759546829,213,0 +170759546877,214,0 +170759546925,214,0 +170759546973,214,0 +170759547020,214,0 +170759547068,214,0 +170759547116,214,0 +170759547164,214,0 +170759547212,214,0 +170759547259,214,0 +170759547309,214,0 +170759547357,215,0 +170759547404,215,0 +170759547452,216,0 +170759547502,216,0 +170759547550,217,0 +170759547597,222,0 +170759547645,222,0 +170759547693,215,0 +170759547741,214,0 +170759547788,214,0 +170759547836,214,0 +170759547884,214,0 +170759547932,214,0 +170759547980,213,0 +170759548028,214,0 +170759548075,214,0 +170759548123,214,0 +170759548171,215,0 +170759548221,215,0 +170759548268,215,0 +170759548316,215,0 +170759548364,215,0 +170759548412,216,0 +170759548460,216,0 +170759548508,217,0 +170759548556,218,0 +170759548604,218,0 +170759548652,219,0 +170759548700,222,0 +170759548747,222,0 +170759548795,215,0 +170759548843,215,0 +170759548893,215,0 +170759548941,215,0 +170759548990,215,0 +170759549038,215,0 +170759549086,215,0 +170759549134,216,0 +170759549183,216,0 +170759549231,216,0 +170759549281,216,0 +170759549329,216,0 +170759549378,218,0 +170759549426,218,0 +170759549474,219,0 +170759549522,221,0 +170759549572,221,0 +170759549620,220,0 +170759549668,222,0 +170759549716,222,0 +170759549765,223,0 +170759549813,223,0 +170759549861,215,0 +170759549909,214,0 +170759549956,215,0 +170759550006,215,0 +170759550054,215,0 +170759550103,216,0 +170759550153,216,0 +170759550202,216,0 +170759550250,216,0 +170759550298,216,0 +170759550346,216,0 +170759550394,217,0 +170759550442,218,0 +170759550490,220,0 +170759550538,221,0 +170759550586,221,0 +170759550634,220,0 +170759550681,220,0 +170759550731,221,0 +170759550779,221,0 +170759550827,223,0 +170759550874,229,0 +170759550922,215,0 +170759550970,215,0 +170759551018,215,0 +170759551066,215,0 +170759551114,215,0 +170759551161,215,0 +170759551209,216,0 +170759551257,216,0 +170759551305,217,0 +170759551353,217,0 +170759551401,216,0 +170759551448,218,0 +170759551496,219,0 +170759551544,220,0 +170759551592,221,0 +170759551640,221,0 +170759551687,222,0 +170759551735,222,0 +170759551783,222,0 +170759551831,222,0 +170759551879,223,0 +170759551927,223,0 +170759551974,216,0 +170759552022,214,0 +170759552070,215,0 +170759552119,215,0 +170759552167,215,0 +170759552215,215,0 +170759552265,216,0 +170759552312,216,0 +170759552362,216,0 +170759552410,217,0 +170759552457,217,0 +170759552505,218,0 +170759552553,218,0 +170759552601,219,0 +170759552649,220,0 +170759552696,221,0 +170759552744,221,0 +170759552792,224,0 +170759552840,223,0 +170759552888,222,0 +170759552936,223,0 +170759552983,223,0 +170759553033,220,0 +170759553081,215,0 +170759553128,215,0 +170759553176,215,0 +170759553224,215,0 +170759553272,215,0 +170759553320,216,0 +170759553369,216,0 +170759553417,216,0 +170759553465,217,0 +170759553513,218,0 +170759553560,219,0 +170759553610,219,0 +170759553658,221,0 +170759553705,221,0 +170759553755,220,0 +170759553803,221,0 +170759553851,221,0 +170759553898,221,0 +170759553946,221,0 +170759553994,222,0 +170759554042,226,0 +170759554090,226,0 +170759554138,215,0 +170759554185,214,0 +170759554233,214,0 +170759554281,214,0 +170759554329,214,0 +170759554377,215,0 +170759554425,215,0 +170759554474,214,0 +170759554522,216,0 +170759554572,215,0 +170759554619,215,0 +170759554667,216,0 +170759554715,217,0 +170759554763,218,0 +170759554811,218,0 +170759554858,218,0 +170759554906,219,0 +170759554954,219,0 +170759555002,220,0 +170759555050,220,0 +170759555098,222,0 +170759555146,222,0 +170759555193,215,0 +170759555241,215,0 +170759555289,214,0 +170759555337,215,0 +170759555385,215,0 +170759555433,215,0 +170759555481,216,0 +170759555528,215,0 +170759555576,215,0 +170759555624,216,0 +170759555672,217,0 +170759555719,218,0 +170759555767,218,0 +170759555817,219,0 +170759555865,219,0 +170759555914,220,0 +170759555962,220,0 +170759556011,219,0 +170759556059,219,0 +170759556107,217,0 +170759556155,222,0 +170759556203,223,0 +170759556253,215,0 +170759556301,214,0 +170759556348,214,0 +170759556396,214,0 +170759556444,214,0 +170759556494,214,0 +170759556542,214,0 +170759556590,214,0 +170759556638,214,0 +170759556685,215,0 +170759556733,215,0 +170759556781,215,0 +170759556829,215,0 +170759556877,215,0 +170759556924,216,0 +170759556972,217,0 +170759557020,218,0 +170759557068,218,0 +170759557116,219,0 +170759557165,219,0 +170759557213,223,0 +170759557261,222,0 +170759557309,216,0 +170759557357,215,0 +170759557405,215,0 +170759557452,215,0 +170759557500,215,0 +170759557550,215,0 +170759557597,215,0 +170759557645,215,0 +170759557693,216,0 +170759557741,216,0 +170759557789,216,0 +170759557837,216,0 +170759557884,217,0 +170759557932,217,0 +170759557980,218,0 +170759558028,219,0 +170759558076,219,0 +170759558125,220,0 +170759558173,221,0 +170759558221,221,0 +170759558269,220,0 +170759558317,223,0 +170759558364,217,0 +170759558412,214,0 +170759558460,214,0 +170759558508,213,0 +170759558558,214,0 +170759558607,214,0 +170759558655,214,0 +170759558703,214,0 +170759558750,215,0 +170759558798,215,0 +170759558848,215,0 +170759558896,215,0 +170759558943,215,0 +170759558991,216,0 +170759559041,216,0 +170759559088,217,0 +170759559136,218,0 +170759559186,219,0 +170759559233,218,0 +170759559281,218,0 +170759559329,218,0 +170759559377,222,0 +170759559425,223,0 +170759559472,215,0 +170759559520,215,0 +170759559568,215,0 +170759559616,215,0 +170759559664,215,0 +170759559712,215,0 +170759559760,215,0 +170759559808,215,0 +170759559856,215,0 +170759559903,216,0 +170759559951,216,0 +170759559999,217,0 +170759560047,217,0 +170759560095,218,0 +170759560143,219,0 +170759560190,220,0 +170759560238,220,0 +170759560286,221,0 +170759560334,221,0 +170759560382,220,0 +170759560430,222,0 +170759560478,223,0 +170759560525,216,0 +170759560575,215,0 +170759560623,215,0 +170759560671,218,0 +170759560719,215,0 +170759560766,216,0 +170759560816,216,0 +170759560865,215,0 +170759560913,216,0 +170759560963,216,0 +170759561011,216,0 +170759561060,217,0 +170759561108,218,0 +170759561158,218,0 +170759561206,221,0 +170759561253,221,0 +170759561303,221,0 +170759561351,223,0 +170759561400,223,0 +170759561448,222,0 +170759561498,222,0 +170759561546,223,0 +170759561595,216,0 +170759561643,214,0 +170759561691,214,0 +170759561739,215,0 +170759561789,215,0 +170759561837,216,0 +170759561886,215,0 +170759561936,215,0 +170759561984,215,0 +170759562032,216,0 +170759562081,216,0 +170759562129,217,0 +170759562177,217,0 +170759562225,218,0 +170759562273,219,0 +170759562322,219,0 +170759562370,219,0 +170759562420,218,0 +170759562468,218,0 +170759562516,218,0 +170759562564,222,0 +170759562612,223,0 +170759562660,216,0 +170759562707,214,0 +170759562755,215,0 +170759562803,215,0 +170759562851,215,0 +170759562899,215,0 +170759562947,215,0 +170759562995,215,0 +170759563042,216,0 +170759563090,216,0 +170759563138,216,0 +170759563186,217,0 +170759563234,216,0 +170759563282,217,0 +170759563330,217,0 +170759563378,218,0 +170759563425,220,0 +170759563473,220,0 +170759563521,220,0 +170759563569,220,0 +170759563617,221,0 +170759563665,223,0 +170759563713,222,0 +170759563761,214,0 +170759563808,213,0 +170759563858,214,0 +170759563906,214,0 +170759563954,214,0 +170759564002,214,0 +170759564050,214,0 +170759564097,214,0 +170759564145,214,0 +170759564193,214,0 +170759564241,214,0 +170759564291,214,0 +170759564340,214,0 +170759564390,215,0 +170759564438,216,0 +170759564486,216,0 +170759564534,217,0 +170759564582,217,0 +170759564631,218,0 +170759564679,218,0 +170759564727,222,0 +170759564775,222,0 +170759564823,215,0 +170759564871,214,0 +170759564920,215,0 +170759564968,214,0 +170759565016,215,0 +170759565064,215,0 +170759565113,215,0 +170759565161,215,0 +170759565209,216,0 +170759565257,216,0 +170759565307,216,0 +170759565354,216,0 +170759565404,217,0 +170759565453,217,0 +170759565501,218,0 +170759565549,218,0 +170759565597,220,0 +170759565645,220,0 +170759565693,219,0 +170759565742,220,0 +170759565792,222,0 +170759565842,223,0 +170759565889,215,0 +170759565937,214,0 +170759565985,214,0 +170759566033,214,0 +170759566081,214,0 +170759566129,214,0 +170759566177,214,0 +170759566225,214,0 +170759566275,214,0 +170759566323,215,0 +170759566372,215,0 +170759566420,215,0 +170759566470,215,0 +170759566518,216,0 +170759566565,216,0 +170759566613,216,0 +170759566663,217,0 +170759566712,219,0 +170759566760,218,0 +170759566808,219,0 +170759566858,222,0 +170759566906,223,0 +170759566954,215,0 +170759567002,214,0 +170759567050,214,0 +170759567098,214,0 +170759567147,214,0 +170759567195,215,0 +170759567244,215,0 +170759567292,215,0 +170759567340,215,0 +170759567388,215,0 +170759567436,216,0 +170759567484,216,0 +170759567532,216,0 +170759567581,216,0 +170759567631,217,0 +170759567679,218,0 +170759567727,218,0 +170759567775,219,0 +170759567822,218,0 +170759567872,219,0 +170759567920,222,0 +170759567969,223,0 +170759568017,216,0 +170759568067,214,0 +170759568115,215,0 +170759568163,215,0 +170759568212,215,0 +170759568260,215,0 +170759568310,215,0 +170759568358,216,0 +170759568405,216,0 +170759568453,216,0 +170759568503,216,0 +170759568551,216,0 +170759568599,217,0 +170759568647,218,0 +170759568696,219,0 +170759568744,219,0 +170759568794,220,0 +170759568843,221,0 +170759568891,221,0 +170759568939,221,0 +170759568988,222,0 +170759569038,223,0 +170759569086,216,0 +170759569134,214,0 +170759569182,215,0 +170759569230,215,0 +170759569278,215,0 +170759569325,215,0 +170759569373,215,0 +170759569421,215,0 +170759569469,215,0 +170759569517,216,0 +170759569565,215,0 +170759569613,216,0 +170759569662,216,0 +170759569710,217,0 +170759569758,218,0 +170759569806,218,0 +170759569854,218,0 +170759569902,219,0 +170759569949,219,0 +170759569997,218,0 +170759570045,220,0 +170759570093,223,0 +170759570141,216,0 +170759570189,214,0 +170759570239,214,0 +170759570287,214,0 +170759570334,214,0 +170759570382,214,0 +170759570430,214,0 +170759570478,215,0 +170759570526,215,0 +170759570576,215,0 +170759570624,215,0 +170759570672,215,0 +170759570720,216,0 +170759570768,216,0 +170759570815,216,0 +170759570865,216,0 +170759570913,217,0 +170759570962,218,0 +170759571010,218,0 +170759571060,219,0 +170759571109,221,0 +170759571157,223,0 +170759571205,215,0 +170759571253,214,0 +170759571301,214,0 +170759571349,214,0 +170759571399,214,0 +170759571447,215,0 +170759571495,215,0 +170759571544,215,0 +170759571592,215,0 +170759571641,215,0 +170759571691,215,0 +170759571739,216,0 +170759571789,216,0 +170759571836,217,0 +170759571884,218,0 +170759571934,218,0 +170759571982,219,0 +170759572031,219,0 +170759572079,220,0 +170759572129,221,0 +170759572177,221,0 +170759572226,222,0 +170759572274,216,0 +170759572322,214,0 +170759572372,215,0 +170759572420,215,0 +170759572467,215,0 +170759572517,215,0 +170759572567,215,0 +170759572614,216,0 +170759572662,216,0 +170759572712,216,0 +170759572760,216,0 +170759572809,216,0 +170759572857,217,0 +170759572907,218,0 +170759572955,218,0 +170759573003,219,0 +170759573050,220,0 +170759573100,220,0 +170759573149,220,0 +170759573197,221,0 +170759573245,222,0 +170759573295,223,0 +170759573343,216,0 +170759573391,215,0 +170759573438,215,0 +170759573488,215,0 +170759573538,215,0 +170759573585,215,0 +170759573633,215,0 +170759573683,216,0 +170759573731,216,0 +170759573779,216,0 +170759573827,217,0 +170759573875,218,0 +170759573924,218,0 +170759573972,220,0 +170759574020,220,0 +170759574069,221,0 +170759574117,221,0 +170759574167,221,0 +170759574215,221,0 +170759574263,222,0 +170759574311,221,0 +170759574359,223,0 +170759574408,216,0 +170759574456,215,0 +170759574504,214,0 +170759574552,215,0 +170759574600,215,0 +170759574650,215,0 +170759574698,215,0 +170759574747,216,0 +170759574797,216,0 +170759574846,217,0 +170759574894,218,0 +170759574942,218,0 +170759574990,219,0 +170759575038,220,0 +170759575088,220,0 +170759575135,221,0 +170759575183,221,0 +170759575233,222,0 +170759575281,222,0 +170759575329,222,0 +170759575377,221,0 +170759575426,223,0 +170759575474,222,0 +170759575522,215,0 +170759575571,214,0 +170759575621,214,0 +170759575669,215,0 +170759575717,215,0 +170759575765,215,0 +170759575813,215,0 +170759575862,216,0 +170759575910,216,0 +170759575960,216,0 +170759576009,217,0 +170759576057,218,0 +170759576105,218,0 +170759576153,219,0 +170759576201,220,0 +170759576251,220,0 +170759576300,221,0 +170759576348,222,0 +170759576396,221,0 +170759576444,221,0 +170759576493,223,0 +170759576543,222,0 +170759576591,214,0 +170759576639,214,0 +170759576686,214,0 +170759576734,215,0 +170759576782,215,0 +170759576830,215,0 +170759576878,215,0 +170759576928,215,0 +170759576976,215,0 +170759577024,215,0 +170759577072,216,0 +170759577120,216,0 +170759577168,216,0 +170759577216,217,0 +170759577263,217,0 +170759577313,218,0 +170759577361,219,0 +170759577409,219,0 +170759577457,219,0 +170759577504,220,0 +170759577554,222,0 +170759577602,221,0 +170759577649,214,0 +170759577697,214,0 +170759577745,214,0 +170759577793,214,0 +170759577842,214,0 +170759577890,214,0 +170759577938,214,0 +170759577986,214,0 +170759578036,215,0 +170759578084,215,0 +170759578133,215,0 +170759578181,215,0 +170759578230,216,0 +170759578278,216,0 +170759578326,217,0 +170759578374,218,0 +170759578422,218,0 +170759578472,219,0 +170759578520,219,0 +170759578568,220,0 +170759578616,221,0 +170759578663,221,0 +170759578711,215,0 +170759578759,214,0 +170759578807,214,0 +170759578855,214,0 +170759578904,214,0 +170759578952,214,0 +170759579000,214,0 +170759579048,214,0 +170759579098,214,0 +170759579146,214,0 +170759579193,214,0 +170759579241,214,0 +170759579289,215,0 +170759579337,215,0 +170759579387,216,0 +170759579435,216,0 +170759579483,217,0 +170759579532,217,0 +170759579580,218,0 +170759579628,218,0 +170759579676,221,0 +170759579724,223,0 +170759579773,216,0 +170759579823,214,0 +170759579871,214,0 +170759579919,214,0 +170759579967,214,0 +170759580016,214,0 +170759580066,215,0 +170759580114,215,0 +170759580163,215,0 +170759580213,215,0 +170759580261,215,0 +170759580309,215,0 +170759580358,216,0 +170759580406,216,0 +170759580454,217,0 +170759580502,218,0 +170759580550,218,0 +170759580598,219,0 +170759580645,219,0 +170759580693,218,0 +170759580741,221,0 +170759580789,223,0 +170759580837,215,0 +170759580887,214,0 +170759580935,214,0 +170759580984,213,0 +170759581034,214,0 +170759581082,214,0 +170759581131,214,0 +170759581180,214,0 +170759581230,214,0 +170759581280,214,0 +170759581327,214,0 +170759581375,215,0 +170759581425,215,0 +170759581473,215,0 +170759581521,216,0 +170759581569,217,0 +170759581617,217,0 +170759581665,218,0 +170759581714,218,0 +170759581762,219,0 +170759581810,221,0 +170759581858,222,0 +170759581906,217,0 +170759581954,214,0 +170759582002,214,0 +170759582050,214,0 +170759582098,215,0 +170759582147,215,0 +170759582195,215,0 +170759582243,215,0 +170759582291,215,0 +170759582339,215,0 +170759582387,215,0 +170759582437,216,0 +170759582485,216,0 +170759582534,217,0 +170759582582,217,0 +170759582630,218,0 +170759582678,219,0 +170759582726,219,0 +170759582774,219,0 +170759582821,220,0 +170759582869,220,0 +170759582917,223,0 +170759582967,218,0 +170759583014,214,0 +170759583062,214,0 +170759583110,214,0 +170759583158,214,0 +170759583206,214,0 +170759583256,215,0 +170759583305,215,0 +170759583353,215,0 +170759583401,215,0 +170759583449,215,0 +170759583497,215,0 +170759583546,215,0 +170759583594,215,0 +170759583642,216,0 +170759583690,216,0 +170759583739,217,0 +170759583787,219,0 +170759583835,219,0 +170759583883,218,0 +170759583931,218,0 +170759583979,223,0 +170759584027,218,0 +170759584074,215,0 +170759584122,215,0 +170759584172,215,0 +170759584221,215,0 +170759584271,215,0 +170759584319,215,0 +170759584367,216,0 +170759584414,216,0 +170759584462,216,0 +170759584510,216,0 +170759584558,216,0 +170759584606,217,0 +170759584654,218,0 +170759584702,218,0 +170759584750,219,0 +170759584799,220,0 +170759584847,220,0 +170759584897,220,0 +170759584944,220,0 +170759584992,222,0 +170759585040,223,0 +170759585088,222,0 +170759585136,215,0 +170759585184,215,0 +170759585233,214,0 +170759585281,215,0 +170759585329,215,0 +170759585377,215,0 +170759585425,215,0 +170759585473,215,0 +170759585520,215,0 +170759585568,216,0 +170759585618,216,0 +170759585667,216,0 +170759585717,215,0 +170759585764,216,0 +170759585814,217,0 +170759585862,217,0 +170759585911,218,0 +170759585959,218,0 +170759586007,218,0 +170759586055,219,0 +170759586103,220,0 +170759586152,220,0 +170759586200,215,0 +170759586248,214,0 +170759586296,215,0 +170759586344,215,0 +170759586392,215,0 +170759586441,215,0 +170759586489,215,0 +170759586537,215,0 +170759586585,216,0 +170759586632,215,0 +170759586680,216,0 +170759586728,216,0 +170759586776,216,0 +170759586824,217,0 +170759586872,218,0 +170759586920,219,0 +170759586969,219,0 +170759587017,219,0 +170759587065,220,0 +170759587113,220,0 +170759587161,222,0 +170759587209,222,0 +170759587257,216,0 +170759587305,214,0 +170759587353,214,0 +170759587401,214,0 +170759587449,214,0 +170759587497,214,0 +170759587545,214,0 +170759587593,215,0 +170759587640,215,0 +170759587688,215,0 +170759587736,215,0 +170759587784,214,0 +170759587832,216,0 +170759587880,217,0 +170759587928,217,0 +170759587976,218,0 +170759588024,218,0 +170759588072,220,0 +170759588120,220,0 +170759588168,220,0 +170759588216,221,0 +170759588264,222,0 +170759588312,216,0 +170759588361,214,0 +170759588409,214,0 +170759588457,215,0 +170759588507,215,0 +170759588556,215,0 +170759588604,215,0 +170759588652,215,0 +170759588701,215,0 +170759588749,216,0 +170759588799,216,0 +170759588848,216,0 +170759588896,217,0 +170759588944,218,0 +170759588992,218,0 +170759589041,219,0 +170759589089,220,0 +170759589137,221,0 +170759589185,220,0 +170759589233,221,0 +170759589281,224,0 +170759589329,222,0 +170759589377,216,0 +170759589425,214,0 +170759589473,214,0 +170759589521,215,0 +170759589569,214,0 +170759589617,215,0 +170759589665,215,0 +170759589712,215,0 +170759589760,215,0 +170759589808,215,0 +170759589856,215,0 +170759589904,215,0 +170759589952,216,0 +170759590000,217,0 +170759590048,218,0 +170759590096,219,0 +170759590144,221,0 +170759590192,221,0 +170759590241,221,0 +170759590289,221,0 +170759590337,222,0 +170759590386,222,0 +170759590434,222,0 +170759590482,215,0 +170759590532,214,0 +170759590581,214,0 +170759590629,214,0 +170759590677,214,0 +170759590726,214,0 +170759590774,215,0 +170759590822,215,0 +170759590870,215,0 +170759590918,216,0 +170759590966,216,0 +170759591014,216,0 +170759591062,216,0 +170759591111,217,0 +170759591159,218,0 +170759591207,218,0 +170759591255,219,0 +170759591303,219,0 +170759591350,219,0 +170759591398,219,0 +170759591446,222,0 +170759591494,222,0 +170759591542,215,0 +170759591589,215,0 +170759591637,215,0 +170759591685,215,0 +170759591733,215,0 +170759591781,215,0 +170759591828,215,0 +170759591876,216,0 +170759591924,216,0 +170759591972,216,0 +170759592020,216,0 +170759592067,218,0 +170759592115,218,0 +170759592163,219,0 +170759592211,220,0 +170759592259,221,0 +170759592306,221,0 +170759592354,220,0 +170759592404,220,0 +170759592451,220,0 +170759592499,222,0 +170759592547,222,0 +170759592595,216,0 +170759592643,215,0 +170759592690,215,0 +170759592738,215,0 +170759592786,215,0 +170759592834,215,0 +170759592882,215,0 +170759592930,215,0 +170759592977,215,0 +170759593025,215,0 +170759593073,216,0 +170759593121,217,0 +170759593169,218,0 +170759593216,219,0 +170759593264,219,0 +170759593312,221,0 +170759593360,220,0 +170759593407,220,0 +170759593455,222,0 +170759593503,221,0 +170759593551,221,0 +170759593599,223,0 +170759593647,216,0 +170759593694,215,0 +170759593742,215,0 +170759593790,216,0 +170759593839,216,0 +170759593887,216,0 +170759593935,216,0 +170759593983,216,0 +170759594031,216,0 +170759594079,216,0 +170759594126,216,0 +170759594176,217,0 +170759594224,218,0 +170759594272,219,0 +170759594319,219,0 +170759594367,219,0 +170759594415,220,0 +170759594463,222,0 +170759594511,223,0 +170759594558,223,0 +170759594606,221,0 +170759594654,222,0 +170759594702,223,0 +170759594750,215,0 +170759594798,215,0 +170759594846,215,0 +170759594894,215,0 +170759594941,215,0 +170759594989,215,0 +170759595037,215,0 +170759595085,215,0 +170759595133,216,0 +170759595181,215,0 +170759595228,216,0 +170759595276,216,0 +170759595324,216,0 +170759595372,216,0 +170759595420,217,0 +170759595467,218,0 +170759595515,218,0 +170759595563,219,0 +170759595611,220,0 +170759595659,221,0 +170759595707,222,0 +170759595755,222,0 +170759595802,215,0 +170759595852,214,0 +170759595900,214,0 +170759595947,214,0 +170759595995,214,0 +170759596045,215,0 +170759596092,214,0 +170759596142,215,0 +170759596190,215,0 +170759596238,215,0 +170759596285,215,0 +170759596333,216,0 +170759596381,216,0 +170759596429,217,0 +170759596477,218,0 +170759596525,218,0 +170759596572,218,0 +170759596620,219,0 +170759596668,220,0 +170759596716,220,0 +170759596764,222,0 +170759596812,223,0 +170759596859,215,0 +170759596909,214,0 +170759596957,214,0 +170759597005,214,0 +170759597052,215,0 +170759597100,215,0 +170759597148,215,0 +170759597196,215,0 +170759597244,215,0 +170759597292,215,0 +170759597341,215,0 +170759597389,216,0 +170759597437,216,0 +170759597485,216,0 +170759597532,217,0 +170759597580,217,0 +170759597628,218,0 +170759597676,219,0 +170759597724,219,0 +170759597772,220,0 +170759597819,221,0 +170759597867,222,0 +170759597915,223,0 +170759597963,214,0 +170759598011,214,0 +170759598059,214,0 +170759598107,215,0 +170759598154,214,0 +170759598202,215,0 +170759598250,215,0 +170759598300,215,0 +170759598347,215,0 +170759598395,215,0 +170759598443,216,0 +170759598491,216,0 +170759598539,216,0 +170759598587,217,0 +170759598634,218,0 +170759598682,219,0 +170759598730,219,0 +170759598778,220,0 +170759598826,220,0 +170759598874,220,0 +170759598921,222,0 +170759598969,223,0 +170759599017,215,0 +170759599065,214,0 +170759599113,214,0 +170759599161,214,0 +170759599208,214,0 +170759599256,214,0 +170759599304,215,0 +170759599352,215,0 +170759599400,215,0 +170759599448,215,0 +170759599496,215,0 +170759599543,216,0 +170759599591,216,0 +170759599639,216,0 +170759599687,217,0 +170759599735,217,0 +170759599783,218,0 +170759599831,219,0 +170759599879,220,0 +170759599927,220,0 +170759599975,222,0 +170759600023,223,0 +170759600071,216,0 +170759600120,214,0 +170759600169,214,0 +170759600217,214,0 +170759600265,214,0 +170759600313,214,0 +170759600361,215,0 +170759600409,215,0 +170759600457,214,0 +170759600506,215,0 +170759600556,215,0 +170759600604,215,0 +170759600652,216,0 +170759600701,216,0 +170759600749,217,0 +170759600797,217,0 +170759600844,218,0 +170759600892,218,0 +170759600940,219,0 +170759600988,220,0 +170759601036,223,0 +170759601085,223,0 +170759601133,216,0 +170759601181,214,0 +170759601230,214,0 +170759601278,214,0 +170759601326,214,0 +170759601374,214,0 +170759601422,214,0 +170759601470,215,0 +170759601518,215,0 +170759601566,215,0 +170759601614,215,0 +170759601662,215,0 +170759601710,215,0 +170759601758,216,0 +170759601806,217,0 +170759601853,217,0 +170759601901,218,0 +170759601949,219,0 +170759601997,219,0 +170759602045,221,0 +170759602093,220,0 +170759602141,222,0 +170759602189,222,0 +170759602237,214,0 +170759602284,214,0 +170759602332,214,0 +170759602380,214,0 +170759602428,214,0 +170759602478,214,0 +170759602527,215,0 +170759602575,215,0 +170759602623,215,0 +170759602671,215,0 +170759602720,215,0 +170759602768,215,0 +170759602816,215,0 +170759602864,216,0 +170759602912,217,0 +170759602960,218,0 +170759603007,218,0 +170759603055,219,0 +170759603103,220,0 +170759603151,219,0 +170759603199,221,0 +170759603247,223,0 +170759603295,215,0 +170759603344,214,0 +170759603392,214,0 +170759603440,214,0 +170759603490,214,0 +170759603538,214,0 +170759603586,214,0 +170759603634,215,0 +170759603681,215,0 +170759603729,215,0 +170759603779,215,0 +170759603828,215,0 +170759603878,215,0 +170759603927,216,0 +170759603975,216,0 +170759604025,217,0 +170759604074,218,0 +170759604122,218,0 +170759604170,219,0 +170759604218,219,0 +170759604266,222,0 +170759604314,222,0 +170759604362,215,0 +170759604409,214,0 +170759604457,214,0 +170759604505,214,0 +170759604553,215,0 +170759604602,215,0 +170759604652,215,0 +170759604700,215,0 +170759604748,215,0 +170759604796,215,0 +170759604844,217,0 +170759604891,216,0 +170759604939,216,0 +170759604987,217,0 +170759605035,218,0 +170759605083,218,0 +170759605131,219,0 +170759605178,220,0 +170759605226,220,0 +170759605276,221,0 +170759605324,222,0 +170759605372,222,0 +170759605420,216,0 +170759605469,214,0 +170759605517,214,0 +170759605565,215,0 +170759605613,215,0 +170759605661,215,0 +170759605709,215,0 +170759605757,215,0 +170759605805,216,0 +170759605853,216,0 +170759605901,216,0 +170759605949,216,0 +170759605996,217,0 +170759606046,217,0 +170759606094,217,0 +170759606142,218,0 +170759606190,218,0 +170759606238,219,0 +170759606286,220,0 +170759606335,221,0 +170759606383,222,0 +170759606431,223,0 +170759606479,216,0 +170759606527,214,0 +170759606574,214,0 +170759606622,214,0 +170759606670,214,0 +170759606718,214,0 +170759606766,214,0 +170759606814,214,0 +170759606862,214,0 +170759606910,214,0 +170759606958,214,0 +170759607007,214,0 +170759607057,215,0 +170759607105,215,0 +170759607154,216,0 +170759607204,216,0 +170759607252,217,0 +170759607300,218,0 +170759607348,218,0 +170759607396,220,0 +170759607444,221,0 +170759607492,223,0 +170759607541,216,0 +170759607591,214,0 +170759607638,214,0 +170759607686,214,0 +170759607734,215,0 +170759607782,215,0 +170759607830,215,0 +170759607878,215,0 +170759607927,215,0 +170759607977,216,0 +170759608025,216,0 +170759608073,216,0 +170759608121,216,0 +170759608170,217,0 +170759608220,217,0 +170759608268,219,0 +170759608316,219,0 +170759608364,219,0 +170759608412,220,0 +170759608461,220,0 +170759608509,221,0 +170759608559,222,0 +170759608608,218,0 +170759608658,215,0 +170759608706,215,0 +170759608755,215,0 +170759608805,215,0 +170759608854,215,0 +170759608902,215,0 +170759608952,215,0 +170759609001,216,0 +170759609049,216,0 +170759609097,216,0 +170759609145,216,0 +170759609195,218,0 +170759609243,219,0 +170759609291,219,0 +170759609338,220,0 +170759609386,220,0 +170759609434,221,0 +170759609482,221,0 +170759609530,222,0 +170759609578,222,0 +170759609626,223,0 +170759609674,217,0 +170759609722,214,0 +170759609771,214,0 +170759609819,214,0 +170759609867,214,0 +170759609915,214,0 +170759609963,214,0 +170759610012,214,0 +170759610060,214,0 +170759610108,214,0 +170759610156,214,0 +170759610204,214,0 +170759610252,214,0 +170759610300,215,0 +170759610348,215,0 +170759610396,215,0 +170759610444,215,0 +170759610491,216,0 +170759610539,217,0 +170759610587,217,0 +170759610635,218,0 +170759610683,222,0 +170759610733,222,0 +170759610780,214,0 +170759610830,214,0 +170759610878,214,0 +170759610926,214,0 +170759610974,214,0 +170759611021,214,0 +170759611069,215,0 +170759611117,215,0 +170759611165,215,0 +170759611213,215,0 +170759611263,215,0 +170759611310,215,0 +170759611358,216,0 +170759611406,216,0 +170759611456,217,0 +170759611504,217,0 +170759611553,218,0 +170759611603,218,0 +170759611651,219,0 +170759611699,220,0 +170759611746,222,0 +170759611796,223,0 +170759611844,215,0 +170759611893,214,0 +170759611941,215,0 +170759611991,215,0 +170759612039,215,0 +170759612087,215,0 +170759612134,215,0 +170759612182,215,0 +170759612230,215,0 +170759612278,216,0 +170759612326,216,0 +170759612376,216,0 +170759612425,218,0 +170759612473,218,0 +170759612521,218,0 +170759612571,219,0 +170759612620,219,0 +170759612670,218,0 +170759612717,218,0 +170759612765,217,0 +170759612813,221,0 +170759612861,223,0 +170759612909,215,0 +170759612957,214,0 +170759613007,214,0 +170759613054,215,0 +170759613104,215,0 +170759613152,215,0 +170759613200,215,0 +170759613248,215,0 +170759613297,215,0 +170759613345,215,0 +170759613393,216,0 +170759613441,217,0 +170759613489,216,0 +170759613537,217,0 +170759613585,218,0 +170759613633,219,0 +170759613682,219,0 +170759613730,219,0 +170759613778,220,0 +170759613826,221,0 +170759613874,222,0 +170759613921,222,0 +170759613971,216,0 +170759614019,214,0 +170759614067,214,0 +170759614114,215,0 +170759614162,215,0 +170759614212,215,0 +170759614261,216,0 +170759614309,216,0 +170759614357,216,0 +170759614405,216,0 +170759614455,216,0 +170759614503,216,0 +170759614551,217,0 +170759614598,217,0 +170759614648,218,0 +170759614698,219,0 +170759614746,219,0 +170759614794,219,0 +170759614842,220,0 +170759614889,220,0 +170759614937,221,0 +170759614985,222,0 +170759615033,216,0 +170759615083,215,0 +170759615131,215,0 +170759615178,215,0 +170759615226,215,0 +170759615276,215,0 +170759615324,215,0 +170759615372,216,0 +170759615421,216,0 +170759615471,216,0 +170759615519,216,0 +170759615567,216,0 +170759615615,217,0 +170759615663,218,0 +170759615711,218,0 +170759615759,219,0 +170759615806,219,0 +170759615854,220,0 +170759615902,220,0 +170759615952,220,0 +170759616000,222,0 +170759616048,223,0 +170759616095,216,0 +170759616143,215,0 +170759616191,214,0 +170759616239,215,0 +170759616289,215,0 +170759616338,215,0 +170759616386,215,0 +170759616434,216,0 +170759616482,216,0 +170759616530,216,0 +170759616578,217,0 +170759616626,217,0 +170759616675,218,0 +170759616725,219,0 +170759616774,219,0 +170759616824,220,0 +170759616872,220,0 +170759616921,221,0 +170759616969,222,0 +170759617019,221,0 +170759617067,222,0 +170759617115,222,0 +170759617163,216,0 +170759617212,214,0 +170759617260,215,0 +170759617308,215,0 +170759617356,215,0 +170759617406,215,0 +170759617453,215,0 +170759617501,216,0 +170759617549,216,0 +170759617599,216,0 +170759617648,216,0 +170759617698,216,0 +170759617746,216,0 +170759617795,217,0 +170759617843,218,0 +170759617891,218,0 +170759617939,219,0 +170759617987,219,0 +170759618035,220,0 +170759618083,220,0 +170759618131,222,0 +170759618178,223,0 +170759618226,216,0 +170759618274,214,0 +170759618322,215,0 +170759618370,215,0 +170759618418,215,0 +170759618466,215,0 +170759618514,215,0 +170759618562,216,0 +170759618609,216,0 +170759618657,216,0 +170759618705,217,0 +170759618753,217,0 +170759618801,217,0 +170759618849,218,0 +170759618897,219,0 +170759618945,219,0 +170759618994,220,0 +170759619042,221,0 +170759619090,220,0 +170759619140,220,0 +170759619188,218,0 +170759619236,222,0 +170759619284,217,0 +170759619332,214,0 +170759619379,214,0 +170759619429,214,0 +170759619477,214,0 +170759619525,214,0 +170759619573,214,0 +170759619622,214,0 +170759619670,214,0 +170759619718,215,0 +170759619766,215,0 +170759619814,215,0 +170759619864,215,0 +170759619912,216,0 +170759619961,215,0 +170759620009,216,0 +170759620057,217,0 +170759620107,218,0 +170759620155,218,0 +170759620202,219,0 +170759620252,220,0 +170759620300,222,0 +170759620348,222,0 +170759620397,216,0 +170759620445,215,0 +170759620495,215,0 +170759620543,215,0 +170759620591,215,0 +170759620639,215,0 +170759620687,215,0 +170759620736,215,0 +170759620786,216,0 +170759620833,216,0 +170759620881,216,0 +170759620929,217,0 +170759620977,218,0 +170759621027,218,0 +170759621075,219,0 +170759621123,219,0 +170759621171,220,0 +170759621220,221,0 +170759621270,221,0 +170759621318,222,0 +170759621366,223,0 +170759621413,222,0 +170759621461,215,0 +170759621509,215,0 +170759621557,215,0 +170759621605,215,0 +170759621655,215,0 +170759621703,216,0 +170759621750,216,0 +170759621798,216,0 +170759621846,216,0 +170759621894,216,0 +170759621942,216,0 +170759621990,217,0 +170759622037,218,0 +170759622085,219,0 +170759622133,220,0 +170759622181,221,0 +170759622229,221,0 +170759622276,221,0 +170759622324,222,0 +170759622372,222,0 +170759622420,223,0 +170759622468,223,0 +170759622516,216,0 +170759622564,215,0 +170759622612,215,0 +170759622659,215,0 +170759622707,215,0 +170759622755,215,0 +170759622803,215,0 +170759622851,216,0 +170759622899,216,0 +170759622946,216,0 +170759622994,216,0 +170759623042,216,0 +170759623090,217,0 +170759623139,217,0 +170759623187,218,0 +170759623236,219,0 +170759623284,219,0 +170759623332,220,0 +170759623380,221,0 +170759623428,221,0 +170759623476,222,0 +170759623524,224,0 +170759623571,216,0 +170759623619,215,0 +170759623667,215,0 +170759623715,215,0 +170759623763,215,0 +170759623811,215,0 +170759623860,215,0 +170759623908,216,0 +170759623956,216,0 +170759624004,216,0 +170759624052,216,0 +170759624100,217,0 +170759624148,218,0 +170759624196,218,0 +170759624244,220,0 +170759624292,220,0 +170759624341,220,0 +170759624391,221,0 +170759624438,221,0 +170759624488,221,0 +170759624536,222,0 +170759624584,223,0 +170759624633,216,0 +170759624681,214,0 +170759624729,214,0 +170759624777,215,0 +170759624825,214,0 +170759624872,215,0 +170759624920,215,0 +170759624968,215,0 +170759625016,215,0 +170759625064,215,0 +170759625112,215,0 +170759625160,216,0 +170759625207,217,0 +170759625255,217,0 +170759625303,218,0 +170759625351,219,0 +170759625399,219,0 +170759625446,220,0 +170759625496,220,0 +170759625544,221,0 +170759625592,220,0 +170759625639,222,0 +170759625687,219,0 +170759625735,214,0 +170759625783,214,0 +170759625831,213,0 +170759625879,213,0 +170759625927,214,0 +170759625976,215,0 +170759626026,214,0 +170759626073,215,0 +170759626121,215,0 +170759626169,215,0 +170759626217,215,0 +170759626265,215,0 +170759626314,217,0 +170759626362,218,0 +170759626410,218,0 +170759626458,218,0 +170759626508,218,0 +170759626556,219,0 +170759626604,220,0 +170759626652,220,0 +170759626701,222,0 +170759626749,222,0 +170759626797,214,0 +170759626845,214,0 +170759626893,214,0 +170759626941,214,0 +170759626989,214,0 +170759627037,214,0 +170759627084,214,0 +170759627134,214,0 +170759627183,214,0 +170759627231,215,0 +170759627279,215,0 +170759627327,215,0 +170759627375,216,0 +170759627424,216,0 +170759627472,217,0 +170759627520,218,0 +170759627570,218,0 +170759627618,219,0 +170759627665,219,0 +170759627713,219,0 +170759627763,221,0 +170759627812,222,0 +170759627862,215,0 +170759627910,214,0 +170759627959,214,0 +170759628009,214,0 +170759628057,214,0 +170759628105,214,0 +170759628153,214,0 +170759628201,214,0 +170759628250,214,0 +170759628298,214,0 +170759628346,215,0 +170759628394,215,0 +170759628442,215,0 +170759628491,216,0 +170759628541,216,0 +170759628589,217,0 +170759628638,217,0 +170759628688,218,0 +170759628736,219,0 +170759628785,219,0 +170759628835,222,0 +170759628883,222,0 +170759628931,215,0 +170759628979,215,0 +170759629027,214,0 +170759629076,215,0 +170759629126,215,0 +170759629174,216,0 +170759629222,215,0 +170759629271,216,0 +170759629319,216,0 +170759629367,216,0 +170759629416,216,0 +170759629464,217,0 +170759629512,218,0 +170759629560,218,0 +170759629608,219,0 +170759629656,220,0 +170759629704,220,0 +170759629752,220,0 +170759629800,220,0 +170759629847,221,0 +170759629895,222,0 +170759629943,223,0 +170759629993,215,0 +170759630041,214,0 +170759630089,214,0 +170759630136,214,0 +170759630184,214,0 +170759630232,214,0 +170759630280,215,0 +170759630328,215,0 +170759630376,215,0 +170759630424,215,0 +170759630472,215,0 +170759630520,215,0 +170759630568,216,0 +170759630615,217,0 +170759630663,217,0 +170759630711,218,0 +170759630759,219,0 +170759630807,220,0 +170759630855,220,0 +170759630905,221,0 +170759630952,222,0 +170759631000,222,0 +170759631048,216,0 +170759631096,214,0 +170759631144,214,0 +170759631192,215,0 +170759631240,214,0 +170759631289,215,0 +170759631339,215,0 +170759631387,215,0 +170759631434,215,0 +170759631482,215,0 +170759631530,215,0 +170759631578,215,0 +170759631626,216,0 +170759631674,217,0 +170759631722,217,0 +170759631771,218,0 +170759631819,219,0 +170759631867,219,0 +170759631915,219,0 +170759631963,219,0 +170759632012,220,0 +170759632060,222,0 +170759632108,216,0 +170759632155,214,0 +170759632203,215,0 +170759632251,215,0 +170759632299,215,0 +170759632347,214,0 +170759632395,215,0 +170759632442,215,0 +170759632490,215,0 +170759632538,215,0 +170759632587,216,0 +170759632635,216,0 +170759632683,216,0 +170759632731,217,0 +170759632779,217,0 +170759632827,218,0 +170759632874,219,0 +170759632922,219,0 +170759632972,219,0 +170759633021,219,0 +170759633069,218,0 +170759633119,222,0 +170759633167,216,0 +170759633216,214,0 +170759633264,214,0 +170759633314,214,0 +170759633363,214,0 +170759633411,214,0 +170759633459,214,0 +170759633507,214,0 +170759633555,214,0 +170759633603,214,0 +170759633650,215,0 +170759633700,215,0 +170759633748,215,0 +170759633796,215,0 +170759633845,215,0 +170759633895,216,0 +170759633943,216,0 +170759633991,217,0 +170759634038,218,0 +170759634086,218,0 +170759634134,219,0 +170759634182,222,0 +170759634230,221,0 +170759634278,215,0 +170759634328,214,0 +170759634375,214,0 +170759634423,214,0 +170759634473,214,0 +170759634521,215,0 +170759634569,215,0 +170759634618,215,0 +170759634668,215,0 +170759634716,215,0 +170759634764,215,0 +170759634812,215,0 +170759634861,216,0 +170759634909,217,0 +170759634958,217,0 +170759635006,218,0 +170759635054,219,0 +170759635104,219,0 +170759635152,220,0 +170759635200,220,0 +170759635248,222,0 +170759635296,222,0 +170759635343,215,0 +170759635391,214,0 +170759635439,214,0 +170759635487,214,0 +170759635535,214,0 +170759635583,214,0 +170759635631,215,0 +170759635679,214,0 +170759635726,215,0 +170759635774,215,0 +170759635822,215,0 +170759635870,215,0 +170759635918,216,0 +170759635967,216,0 +170759636015,217,0 +170759636063,217,0 +170759636111,218,0 +170759636159,219,0 +170759636207,219,0 +170759636256,220,0 +170759636304,223,0 +170759636352,222,0 +170759636400,215,0 +170759636448,214,0 +170759636497,214,0 +170759636547,214,0 +170759636594,214,0 +170759636642,214,0 +170759636690,214,0 +170759636738,215,0 +170759636786,215,0 +170759636833,216,0 +170759636881,215,0 +170759636929,215,0 +170759636977,216,0 +170759637025,216,0 +170759637072,217,0 +170759637120,219,0 +170759637168,219,0 +170759637216,220,0 +170759637264,220,0 +170759637312,219,0 +170759637359,221,0 +170759637407,224,0 +170759637455,215,0 +170759637503,213,0 +170759637550,213,0 +170759637598,213,0 +170759637646,213,0 +170759637694,214,0 +170759637742,214,0 +170759637790,214,0 +170759637837,214,0 +170759637885,214,0 +170759637933,215,0 +170759637981,214,0 +170759638029,215,0 +170759638078,215,0 +170759638126,215,0 +170759638174,215,0 +170759638224,215,0 +170759638272,216,0 +170759638320,215,0 +170759638368,216,0 +170759638417,216,0 +170759638465,217,0 +170759638513,217,0 +170759638561,219,0 +170759638609,219,0 +170759638657,220,0 +170759638706,221,0 +170759638754,222,0 +170759638802,223,0 +170759638850,224,0 +170759638898,223,0 +170759638946,223,0 +170759638994,223,0 +170759639041,216,0 +170759639091,215,0 +170759639139,214,0 +170759639187,214,0 +170759639235,214,0 +170759639283,214,0 +170759639331,214,0 +170759639379,215,0 +170759639428,215,0 +170759639476,215,0 +170759639524,215,0 +170759639572,215,0 +170759639620,215,0 +170759639668,216,0 +170759639716,216,0 +170759639764,218,0 +170759639811,218,0 +170759639859,219,0 +170759639909,219,0 +170759639957,220,0 +170759640006,222,0 +170759640054,222,0 +170759640102,215,0 +170759640150,215,0 +170759640198,215,0 +170759640246,215,0 +170759640294,215,0 +170759640342,215,0 +170759640391,215,0 +170759640439,215,0 +170759640489,215,0 +170759640537,216,0 +170759640584,216,0 +170759640632,216,0 +170759640680,216,0 +170759640728,218,0 +170759640776,218,0 +170759640824,219,0 +170759640872,220,0 +170759640920,220,0 +170759640968,221,0 +170759641016,221,0 +170759641063,224,0 +170759641111,223,0 +170759641159,224,0 +170759641207,215,0 +170759641255,214,0 +170759641305,214,0 +170759641353,214,0 +170759641402,215,0 +170759641450,215,0 +170759641498,215,0 +170759641546,215,0 +170759641594,215,0 +170759641642,215,0 +170759641689,216,0 +170759641737,216,0 +170759641785,216,0 +170759641833,217,0 +170759641881,218,0 +170759641929,219,0 +170759641977,219,0 +170759642024,220,0 +170759642072,219,0 +170759642120,219,0 +170759642168,222,0 +170759642216,221,0 +170759642264,216,0 +170759642312,214,0 +170759642360,214,0 +170759642408,214,0 +170759642456,214,0 +170759642504,214,0 +170759642552,214,0 +170759642601,214,0 +170759642649,214,0 +170759642697,214,0 +170759642745,215,0 +170759642793,215,0 +170759642841,215,0 +170759642890,215,0 +170759642938,216,0 +170759642986,216,0 +170759643034,217,0 +170759643082,218,0 +170759643130,219,0 +170759643178,219,0 +170759643226,222,0 +170759643274,223,0 +170759643322,216,0 +170759643371,214,0 +170759643419,214,0 +170759643467,214,0 +170759643516,215,0 +170759643564,215,0 +170759643612,215,0 +170759643660,215,0 +170759643708,215,0 +170759643756,216,0 +170759643806,216,0 +170759643854,216,0 +170759643903,217,0 +170759643951,218,0 +170759643999,219,0 +170759644048,220,0 +170759644096,220,0 +170759644146,221,0 +170759644194,221,0 +170759644242,221,0 +170759644291,222,0 +170759644339,222,0 +170759644387,216,0 +170759644435,215,0 +170759644483,215,0 +170759644531,215,0 +170759644579,215,0 +170759644627,215,0 +170759644676,215,0 +170759644724,215,0 +170759644772,215,0 +170759644820,215,0 +170759644869,216,0 +170759644919,216,0 +170759644968,217,0 +170759645016,219,0 +170759645064,219,0 +170759645112,221,0 +170759645160,221,0 +170759645210,222,0 +170759645258,221,0 +170759645305,221,0 +170759645353,222,0 +170759645401,222,0 +170759645449,216,0 +170759645497,214,0 +170759645546,213,0 +170759645594,214,0 +170759645642,213,0 +170759645690,214,0 +170759645738,213,0 +170759645788,213,0 +170759645837,213,0 +170759645885,214,0 +170759645933,213,0 +170759645981,213,0 +170759646030,213,0 +170759646078,213,0 +170759646126,214,0 +170759646174,214,0 +170759646222,214,0 +170759646270,215,0 +170759646320,215,0 +170759646368,217,0 +170759646417,223,0 +170759646465,222,0 +170759646513,216,0 +170759646561,214,0 +170759646609,214,0 +170759646658,214,0 +170759646706,214,0 +170759646754,214,0 +170759646802,214,0 +170759646852,214,0 +170759646899,215,0 +170759646947,215,0 +170759646997,215,0 +170759647045,215,0 +170759647094,215,0 +170759647144,216,0 +170759647192,217,0 +170759647240,217,0 +170759647288,218,0 +170759647335,219,0 +170759647383,219,0 +170759647431,220,0 +170759647479,221,0 +170759647529,223,0 +170759647577,217,0 +170759647625,215,0 +170759647673,215,0 +170759647722,215,0 +170759647770,216,0 +170759647818,215,0 +170759647866,216,0 +170759647916,216,0 +170759647964,217,0 +170759648011,216,0 +170759648059,217,0 +170759648107,217,0 +170759648155,219,0 +170759648203,219,0 +170759648251,219,0 +170759648299,220,0 +170759648348,221,0 +170759648396,221,0 +170759648446,221,0 +170759648494,222,0 +170759648543,221,0 +170759648591,223,0 +170759648639,222,0 +170759648687,214,0 +170759648735,214,0 +170759648784,213,0 +170759648832,214,0 +170759648880,214,0 +170759648930,213,0 +170759648978,214,0 +170759649026,214,0 +170759649075,214,0 +170759649123,214,0 +170759649171,215,0 +170759649219,214,0 +170759649267,215,0 +170759649315,215,0 +170759649363,216,0 +170759649411,217,0 +170759649459,217,0 +170759649508,218,0 +170759649556,219,0 +170759649604,219,0 +170759649652,222,0 +170759649702,223,0 +170759649751,216,0 +170759649801,214,0 +170759649850,214,0 +170759649898,215,0 +170759649946,215,0 +170759649994,215,0 +170759650042,215,0 +170759650091,215,0 +170759650139,215,0 +170759650189,216,0 +170759650238,216,0 +170759650288,216,0 +170759650336,216,0 +170759650385,217,0 +170759650435,218,0 +170759650483,218,0 +170759650531,219,0 +170759650579,220,0 +170759650628,219,0 +170759650676,219,0 +170759650726,222,0 +170759650774,221,0 +170759650822,215,0 +170759650869,215,0 +170759650917,215,0 +170759650967,215,0 +170759651015,215,0 +170759651063,215,0 +170759651112,215,0 +170759651160,215,0 +170759651210,215,0 +170759651259,216,0 +170759651307,216,0 +170759651355,218,0 +170759651403,218,0 +170759651453,219,0 +170759651501,219,0 +170759651549,219,0 +170759651597,221,0 +170759651646,221,0 +170759651694,222,0 +170759651742,221,0 +170759651791,222,0 +170759651839,222,0 +170759651887,215,0 +170759651935,214,0 +170759651985,215,0 +170759652033,215,0 +170759652081,215,0 +170759652128,215,0 +170759652176,215,0 +170759652224,216,0 +170759652272,216,0 +170759652320,216,0 +170759652370,216,0 +170759652418,218,0 +170759652467,218,0 +170759652517,218,0 +170759652565,220,0 +170759652613,223,0 +170759652661,222,0 +170759652708,222,0 +170759652758,222,0 +170759652807,222,0 +170759652855,223,0 +170759652905,223,0 +170759652953,216,0 +170759653002,214,0 +170759653050,215,0 +170759653098,215,0 +170759653148,215,0 +170759653195,215,0 +170759653243,215,0 +170759653293,215,0 +170759653342,216,0 +170759653390,216,0 +170759653438,217,0 +170759653485,218,0 +170759653533,218,0 +170759653581,219,0 +170759653629,220,0 +170759653679,221,0 +170759653728,222,0 +170759653776,223,0 +170759653826,223,0 +170759653874,223,0 +170759653922,223,0 +170759653970,223,0 +170759654019,216,0 +170759654068,214,0 +170759654118,214,0 +170759654166,215,0 +170759654214,215,0 +170759654262,215,0 +170759654311,215,0 +170759654361,215,0 +170759654409,215,0 +170759654457,215,0 +170759654505,216,0 +170759654554,216,0 +170759654602,216,0 +170759654650,218,0 +170759654700,218,0 +170759654748,220,0 +170759654796,219,0 +170759654844,220,0 +170759654893,220,0 +170759654941,221,0 +170759654989,222,0 +170759655037,222,0 +170759655086,216,0 +170759655134,214,0 +170759655184,215,0 +170759655232,215,0 +170759655280,215,0 +170759655328,215,0 +170759655376,215,0 +170759655424,215,0 +170759655472,216,0 +170759655520,216,0 +170759655569,216,0 +170759655617,216,0 +170759655665,217,0 +170759655713,217,0 +170759655763,218,0 +170759655810,219,0 +170759655858,219,0 +170759655906,218,0 +170759655956,218,0 +170759656005,217,0 +170759656053,222,0 +170759656103,223,0 +170759656151,215,0 +170759656199,214,0 +170759656247,214,0 +170759656294,214,0 +170759656342,214,0 +170759656390,214,0 +170759656438,214,0 +170759656486,215,0 +170759656534,214,0 +170759656584,215,0 +170759656633,215,0 +170759656681,215,0 +170759656729,215,0 +170759656777,215,0 +170759656826,216,0 +170759656876,217,0 +170759656924,217,0 +170759656972,218,0 +170759657020,218,0 +170759657069,220,0 +170759657117,222,0 +170759657166,223,0 +170759657214,216,0 +170759657262,214,0 +170759657310,214,0 +170759657359,215,0 +170759657409,215,0 +170759657458,215,0 +170759657506,215,0 +170759657554,215,0 +170759657602,216,0 +170759657652,216,0 +170759657699,216,0 +170759657747,216,0 +170759657795,216,0 +170759657845,218,0 +170759657893,218,0 +170759657940,220,0 +170759657988,219,0 +170759658036,220,0 +170759658084,220,0 +170759658132,221,0 +170759658180,221,0 +170759658229,224,0 +170759658277,216,0 +170759658325,214,0 +170759658373,214,0 +170759658421,214,0 +170759658468,215,0 +170759658516,215,0 +170759658564,215,0 +170759658612,215,0 +170759658660,215,0 +170759658708,215,0 +170759658756,216,0 +170759658803,216,0 +170759658851,216,0 +170759658899,218,0 +170759658947,218,0 +170759658995,219,0 +170759659043,219,0 +170759659092,220,0 +170759659142,220,0 +170759659191,220,0 +170759659239,220,0 +170759659288,222,0 +170759659336,221,0 +170759659386,215,0 +170759659433,215,0 +170759659481,215,0 +170759659529,215,0 +170759659577,215,0 +170759659625,215,0 +170759659673,216,0 +170759659722,216,0 +170759659770,217,0 +170759659818,218,0 +170759659866,218,0 +170759659914,219,0 +170759659961,220,0 +170759660009,220,0 +170759660059,221,0 +170759660108,222,0 +170759660156,222,0 +170759660204,222,0 +170759660252,223,0 +170759660300,223,0 +170759660348,223,0 +170759660396,223,0 +170759660445,215,0 +170759660493,214,0 +170759660541,215,0 +170759660589,215,0 +170759660637,214,0 +170759660687,215,0 +170759660735,215,0 +170759660784,215,0 +170759660832,215,0 +170759660882,216,0 +170759660929,216,0 +170759660979,216,0 +170759661027,216,0 +170759661075,217,0 +170759661123,218,0 +170759661171,219,0 +170759661219,219,0 +170759661268,220,0 +170759661318,220,0 +170759661366,221,0 +170759661415,222,0 +170759661463,223,0 +170759661511,215,0 +170759661559,214,0 +170759661607,214,0 +170759661655,215,0 +170759661702,215,0 +170759661750,215,0 +170759661798,215,0 +170759661846,216,0 +170759661894,216,0 +170759661941,216,0 +170759661991,216,0 +170759662039,216,0 +170759662087,217,0 +170759662135,218,0 +170759662183,218,0 +170759662230,219,0 +170759662278,219,0 +170759662326,220,0 +170759662376,220,0 +170759662424,220,0 +170759662473,222,0 +170759662521,222,0 +170759662569,215,0 +170759662617,214,0 +170759662666,214,0 +170759662714,214,0 +170759662762,214,0 +170759662810,214,0 +170759662860,214,0 +170759662909,215,0 +170759662957,214,0 +170759663005,214,0 +170759663053,215,0 +170759663101,215,0 +170759663149,215,0 +170759663198,216,0 +170759663246,217,0 +170759663296,217,0 +170759663345,218,0 +170759663393,218,0 +170759663441,219,0 +170759663489,220,0 +170759663537,222,0 +170759663587,223,0 +170759663634,216,0 +170759663682,214,0 +170759663730,214,0 +170759663778,214,0 +170759663826,215,0 +170759663874,215,0 +170759663924,215,0 +170759663972,215,0 +170759664021,215,0 +170759664069,216,0 +170759664117,215,0 +170759664165,216,0 +170759664213,216,0 +170759664260,216,0 +170759664308,217,0 +170759664356,218,0 +170759664404,218,0 +170759664452,219,0 +170759664501,219,0 +170759664548,219,0 +170759664596,221,0 +170759664644,222,0 +170759664694,216,0 +170759664743,214,0 +170759664791,214,0 +170759664839,214,0 +170759664886,214,0 +170759664934,214,0 +170759664982,215,0 +170759665030,215,0 +170759665078,215,0 +170759665127,215,0 +170759665175,215,0 +170759665225,215,0 +170759665273,215,0 +170759665322,215,0 +170759665370,216,0 +170759665420,216,0 +170759665468,217,0 +170759665516,218,0 +170759665563,219,0 +170759665611,219,0 +170759665659,220,0 +170759665707,222,0 +170759665755,217,0 +170759665803,214,0 +170759665851,215,0 +170759665899,215,0 +170759665947,215,0 +170759665995,215,0 +170759666043,215,0 +170759666091,215,0 +170759666139,215,0 +170759666186,216,0 +170759666234,216,0 +170759666282,216,0 +170759666330,216,0 +170759666380,216,0 +170759666428,217,0 +170759666476,217,0 +170759666525,218,0 +170759666573,219,0 +170759666621,220,0 +170759666669,221,0 +170759666717,221,0 +170759666766,222,0 +170759666814,222,0 +170759666864,216,0 +170759666913,215,0 +170759666961,215,0 +170759667011,215,0 +170759667059,215,0 +170759667107,215,0 +170759667155,215,0 +170759667202,214,0 +170759667250,214,0 +170759667298,214,0 +170759667346,214,0 +170759667393,214,0 +170759667441,215,0 +170759667489,215,0 +170759667537,215,0 +170759667585,216,0 +170759667633,217,0 +170759667681,217,0 +170759667730,218,0 +170759667778,219,0 +170759667826,222,0 +170759667874,222,0 +170759667922,216,0 +170759667970,214,0 +170759668018,214,0 +170759668066,214,0 +170759668114,215,0 +170759668162,215,0 +170759668211,215,0 +170759668259,215,0 +170759668307,216,0 +170759668355,216,0 +170759668402,216,0 +170759668450,216,0 +170759668498,217,0 +170759668546,217,0 +170759668594,217,0 +170759668642,218,0 +170759668689,219,0 +170759668737,219,0 +170759668785,219,0 +170759668833,220,0 +170759668881,223,0 +170759668929,223,0 +170759668976,216,0 +170759669024,215,0 +170759669072,215,0 +170759669120,215,0 +170759669168,215,0 +170759669216,215,0 +170759669264,216,0 +170759669311,215,0 +170759669359,216,0 +170759669407,217,0 +170759669455,218,0 +170759669503,219,0 +170759669551,219,0 +170759669598,220,0 +170759669646,221,0 +170759669694,220,0 +170759669742,220,0 +170759669790,219,0 +170759669838,219,0 +170759669886,218,0 +170759669933,221,0 +170759669981,222,0 +170759670029,216,0 +170759670077,215,0 +170759670125,215,0 +170759670175,215,0 +170759670224,215,0 +170759670274,215,0 +170759670322,215,0 +170759670370,215,0 +170759670417,216,0 +170759670465,216,0 +170759670513,217,0 +170759670561,217,0 +170759670609,219,0 +170759670657,219,0 +170759670705,220,0 +170759670753,220,0 +170759670801,221,0 +170759670851,222,0 +170759670899,221,0 +170759670946,223,0 +170759670994,222,0 +170759671042,223,0 +170759671092,219,0 +170759671140,215,0 +170759671188,215,0 +170759671235,215,0 +170759671283,215,0 +170759671331,215,0 +170759671379,215,0 +170759671427,215,0 +170759671475,215,0 +170759671524,216,0 +170759671572,217,0 +170759671620,217,0 +170759671668,218,0 +170759671715,219,0 +170759671763,221,0 +170759671811,220,0 +170759671859,220,0 +170759671907,221,0 +170759671954,222,0 +170759672002,222,0 +170759672050,223,0 +170759672098,222,0 +170759672146,223,0 +170759672193,216,0 +170759672241,215,0 +170759672289,215,0 +170759672339,215,0 +170759672387,215,0 +170759672434,215,0 +170759672484,216,0 +170759672532,216,0 +170759672579,216,0 +170759672627,216,0 +170759672677,217,0 +170759672725,217,0 +170759672772,218,0 +170759672820,219,0 +170759672868,220,0 +170759672916,221,0 +170759672964,225,0 +170759673012,221,0 +170759673059,221,0 +170759673107,222,0 +170759673155,222,0 +170759673203,223,0 +170759673251,216,0 +170759673299,214,0 +170759673347,214,0 +170759673394,214,0 +170759673442,214,0 +170759673490,214,0 +170759673538,214,0 +170759673586,214,0 +170759673634,214,0 +170759673682,214,0 +170759673729,215,0 +170759673779,215,0 +170759673827,215,0 +170759673875,215,0 +170759673922,215,0 +170759673970,216,0 +170759674018,217,0 +170759674066,218,0 +170759674114,218,0 +170759674163,218,0 +170759674211,221,0 +170759674259,222,0 +170759674309,216,0 +170759674357,215,0 +170759674404,215,0 +170759674452,215,0 +170759674500,215,0 +170759674548,215,0 +170759674596,215,0 +170759674644,216,0 +170759674692,216,0 +170759674740,216,0 +170759674788,216,0 +170759674836,216,0 +170759674883,216,0 +170759674931,217,0 +170759674979,217,0 +170759675027,218,0 +170759675075,219,0 +170759675123,219,0 +170759675171,219,0 +170759675218,220,0 +170759675266,220,0 +170759675314,222,0 +170759675362,221,0 +170759675410,216,0 +170759675458,215,0 +170759675506,215,0 +170759675554,215,0 +170759675601,215,0 +170759675649,215,0 +170759675697,215,0 +170759675745,215,0 +170759675794,216,0 +170759675842,216,0 +170759675890,216,0 +170759675938,217,0 +170759675986,217,0 +170759676033,218,0 +170759676081,219,0 +170759676129,219,0 +170759676177,220,0 +170759676225,221,0 +170759676273,220,0 +170759676321,221,0 +170759676370,224,0 +170759676420,222,0 +170759676468,216,0 +170759676516,215,0 +170759676565,214,0 +170759676615,214,0 +170759676663,215,0 +170759676712,214,0 +170759676760,214,0 +170759676808,215,0 +170759676856,215,0 +170759676903,214,0 +170759676951,215,0 +170759676999,215,0 +170759677047,215,0 +170759677096,215,0 +170759677144,216,0 +170759677192,216,0 +170759677240,217,0 +170759677288,217,0 +170759677336,218,0 +170759677383,219,0 +170759677431,221,0 +170759677479,222,0 +170759677527,216,0 +170759677577,215,0 +170759677626,215,0 +170759677676,215,0 +170759677724,215,0 +170759677771,215,0 +170759677819,216,0 +170759677867,215,0 +170759677915,215,0 +170759677963,216,0 +170759678011,216,0 +170759678059,216,0 +170759678109,217,0 +170759678157,217,0 +170759678206,218,0 +170759678256,219,0 +170759678303,220,0 +170759678351,221,0 +170759678399,221,0 +170759678447,221,0 +170759678497,221,0 +170759678545,223,0 +170759678593,215,0 +170759678640,214,0 +170759678688,214,0 +170759678736,214,0 +170759678786,214,0 +170759678834,214,0 +170759678882,214,0 +170759678930,214,0 +170759678978,214,0 +170759679027,215,0 +170759679077,215,0 +170759679125,215,0 +170759679173,215,0 +170759679222,215,0 +170759679270,215,0 +170759679320,216,0 +170759679369,217,0 +170759679419,217,0 +170759679468,218,0 +170759679518,219,0 +170759679566,221,0 +170759679616,223,0 +170759679663,216,0 +170759679711,214,0 +170759679759,214,0 +170759679807,215,0 +170759679855,215,0 +170759679904,215,0 +170759679954,215,0 +170759680002,215,0 +170759680050,215,0 +170759680098,216,0 +170759680146,216,0 +170759680194,216,0 +170759680243,216,0 +170759680291,217,0 +170759680339,218,0 +170759680387,219,0 +170759680435,219,0 +170759680483,220,0 +170759680531,220,0 +170759680579,220,0 +170759680627,222,0 +170759680674,223,0 +170759680722,216,0 +170759680770,215,0 +170759680818,215,0 +170759680868,215,0 +170759680916,215,0 +170759680964,215,0 +170759681013,215,0 +170759681063,216,0 +170759681111,215,0 +170759681159,216,0 +170759681207,216,0 +170759681255,216,0 +170759681303,216,0 +170759681351,217,0 +170759681399,217,0 +170759681446,218,0 +170759681496,219,0 +170759681544,219,0 +170759681592,220,0 +170759681640,221,0 +170759681688,222,0 +170759681735,223,0 +170759681785,216,0 +170759681833,215,0 +170759681881,214,0 +170759681929,215,0 +170759681977,215,0 +170759682025,215,0 +170759682073,215,0 +170759682122,215,0 +170759682170,216,0 +170759682218,216,0 +170759682266,216,0 +170759682314,216,0 +170759682362,216,0 +170759682410,217,0 +170759682459,218,0 +170759682507,218,0 +170759682555,219,0 +170759682603,221,0 +170759682653,220,0 +170759682702,221,0 +170759682750,220,0 +170759682799,222,0 +170759682849,221,0 +170759682897,215,0 +170759682945,214,0 +170759682993,215,0 +170759683041,214,0 +170759683089,215,0 +170759683136,215,0 +170759683186,216,0 +170759683235,216,0 +170759683285,216,0 +170759683333,217,0 +170759683382,217,0 +170759683430,217,0 +170759683478,218,0 +170759683528,222,0 +170759683576,220,0 +170759683625,221,0 +170759683673,221,0 +170759683721,221,0 +170759683771,222,0 +170759683820,221,0 +170759683868,222,0 +170759683916,219,0 +170759683963,215,0 +170759684011,215,0 +170759684059,215,0 +170759684107,215,0 +170759684155,215,0 +170759684205,215,0 +170759684253,216,0 +170759684302,216,0 +170759684350,217,0 +170759684398,218,0 +170759684446,218,0 +170759684494,218,0 +170759684544,220,0 +170759684593,220,0 +170759684641,220,0 +170759684691,220,0 +170759684740,222,0 +170759684790,222,0 +170759684838,224,0 +170759684885,221,0 +170759684933,222,0 +170759684981,219,0 +170759685029,215,0 +170759685077,215,0 +170759685125,215,0 +170759685173,215,0 +170759685223,215,0 +170759685271,215,0 +170759685319,216,0 +170759685366,216,0 +170759685414,217,0 +170759685462,217,0 +170759685510,218,0 +170759685558,218,0 +170759685608,219,0 +170759685656,220,0 +170759685705,220,0 +170759685753,221,0 +170759685801,221,0 +170759685849,222,0 +170759685897,221,0 +170759685945,221,0 +170759685994,221,0 +170759686042,223,0 +170759686090,214,0 +170759686140,214,0 +170759686187,214,0 +170759686237,214,0 +170759686285,213,0 +170759686333,214,0 +170759686381,213,0 +170759686430,214,0 +170759686480,214,0 +170759686528,214,0 +170759686576,215,0 +170759686624,215,0 +170759686672,215,0 +170759686720,216,0 +170759686768,217,0 +170759686816,217,0 +170759686864,218,0 +170759686913,218,0 +170759686963,219,0 +170759687011,220,0 +170759687059,222,0 +170759687106,223,0 +170759687156,215,0 +170759687204,214,0 +170759687252,214,0 +170759687300,215,0 +170759687348,215,0 +170759687396,215,0 +170759687444,215,0 +170759687492,215,0 +170759687540,215,0 +170759687588,215,0 +170759687637,216,0 +170759687685,217,0 +170759687733,218,0 +170759687781,219,0 +170759687829,221,0 +170759687877,221,0 +170759687925,223,0 +170759687973,221,0 +170759688022,222,0 +170759688072,222,0 +170759688120,223,0 +170759688168,223,0 +170759688217,216,0 +170759688265,215,0 +170759688315,215,0 +170759688363,215,0 +170759688412,215,0 +170759688462,215,0 +170759688510,215,0 +170759688559,216,0 +170759688607,216,0 +170759688655,217,0 +170759688703,217,0 +170759688751,217,0 +170759688799,219,0 +170759688848,219,0 +170759688896,220,0 +170759688944,220,0 +170759688992,221,0 +170759689040,221,0 +170759689088,221,0 +170759689136,221,0 +170759689184,222,0 +170759689232,222,0 +170759689280,216,0 +170759689328,214,0 +170759689377,214,0 +170759689425,214,0 +170759689473,214,0 +170759689523,214,0 +170759689571,214,0 +170759689620,214,0 +170759689668,214,0 +170759689716,215,0 +170759689764,216,0 +170759689811,215,0 +170759689859,215,0 +170759689907,216,0 +170759689955,217,0 +170759690003,217,0 +170759690051,219,0 +170759690099,220,0 +170759690147,219,0 +170759690196,220,0 +170759690244,222,0 +170759690292,223,0 +170759690340,216,0 +170759690388,214,0 +170759690436,214,0 +170759690485,214,0 +170759690535,215,0 +170759690583,215,0 +170759690631,215,0 +170759690679,215,0 +170759690728,215,0 +170759690778,215,0 +170759690826,215,0 +170759690874,215,0 +170759690923,216,0 +170759690973,217,0 +170759691022,217,0 +170759691072,219,0 +170759691120,219,0 +170759691167,219,0 +170759691215,219,0 +170759691263,220,0 +170759691311,221,0 +170759691359,223,0 +170759691407,216,0 +170759691455,215,0 +170759691503,215,0 +170759691552,215,0 +170759691602,215,0 +170759691651,215,0 +170759691701,216,0 +170759691750,215,0 +170759691800,215,0 +170759691849,216,0 +170759691897,216,0 +170759691945,216,0 +170759691993,217,0 +170759692041,217,0 +170759692089,218,0 +170759692138,219,0 +170759692186,220,0 +170759692234,220,0 +170759692282,220,0 +170759692330,220,0 +170759692378,221,0 +170759692426,222,0 +170759692476,216,0 +170759692524,214,0 +170759692572,214,0 +170759692621,214,0 +170759692669,214,0 +170759692717,214,0 +170759692765,214,0 +170759692814,214,0 +170759692862,215,0 +170759692910,215,0 +170759692958,215,0 +170759693006,215,0 +170759693056,216,0 +170759693105,215,0 +170759693153,216,0 +170759693201,217,0 +170759693249,217,0 +170759693297,218,0 +170759693345,219,0 +170759693393,219,0 +170759693441,221,0 +170759693490,222,0 +170759693540,216,0 +170759693588,214,0 +170759693636,214,0 +170759693684,215,0 +170759693731,214,0 +170759693779,215,0 +170759693827,215,0 +170759693875,215,0 +170759693923,215,0 +170759693972,216,0 +170759694020,216,0 +170759694068,216,0 +170759694116,216,0 +170759694164,217,0 +170759694212,217,0 +170759694261,219,0 +170759694311,219,0 +170759694359,220,0 +170759694408,220,0 +170759694458,221,0 +170759694507,221,0 +170759694557,223,0 +170759694606,217,0 +170759694654,214,0 +170759694702,214,0 +170759694750,214,0 +170759694798,215,0 +170759694846,215,0 +170759694894,215,0 +170759694942,215,0 +170759694990,215,0 +170759695038,215,0 +170759695087,215,0 +170759695137,216,0 +170759695186,216,0 +170759695234,217,0 +170759695282,218,0 +170759695330,218,0 +170759695379,219,0 +170759695427,219,0 +170759695475,220,0 +170759695523,221,0 +170759695572,220,0 +170759695622,223,0 +170759695671,222,0 +170759695719,215,0 +170759695769,215,0 +170759695817,215,0 +170759695865,215,0 +170759695913,215,0 +170759695960,215,0 +170759696008,215,0 +170759696056,215,0 +170759696104,216,0 +170759696152,216,0 +170759696200,216,0 +170759696248,216,0 +170759696297,217,0 +170759696345,217,0 +170759696395,218,0 +170759696443,219,0 +170759696491,219,0 +170759696538,220,0 +170759696586,221,0 +170759696634,221,0 +170759696682,222,0 +170759696730,222,0 +170759696778,215,0 +170759696826,214,0 +170759696874,214,0 +170759696922,214,0 +170759696970,214,0 +170759697018,214,0 +170759697066,214,0 +170759697114,214,0 +170759697163,214,0 +170759697213,214,0 +170759697262,215,0 +170759697310,215,0 +170759697360,215,0 +170759697409,216,0 +170759697457,216,0 +170759697506,217,0 +170759697554,218,0 +170759697602,218,0 +170759697650,218,0 +170759697698,219,0 +170759697747,221,0 +170759697795,222,0 +170759697843,215,0 +170759697891,215,0 +170759697939,215,0 +170759697987,215,0 +170759698035,215,0 +170759698085,215,0 +170759698134,215,0 +170759698182,216,0 +170759698230,216,0 +170759698279,216,0 +170759698329,216,0 +170759698377,216,0 +170759698426,216,0 +170759698476,217,0 +170759698524,218,0 +170759698572,219,0 +170759698620,220,0 +170759698668,220,0 +170759698715,221,0 +170759698763,221,0 +170759698811,223,0 +170759698861,223,0 +170759698909,215,0 +170759698957,214,0 +170759699004,215,0 +170759699054,215,0 +170759699103,215,0 +170759699151,215,0 +170759699199,215,0 +170759699247,215,0 +170759699295,215,0 +170759699343,216,0 +170759699393,216,0 +170759699441,216,0 +170759699488,217,0 +170759699536,218,0 +170759699584,219,0 +170759699632,219,0 +170759699680,220,0 +170759699729,221,0 +170759699777,221,0 +170759699825,219,0 +170759699873,221,0 +170759699921,223,0 +170759699969,216,0 +170759700017,215,0 +170759700065,215,0 +170759700114,215,0 +170759700162,215,0 +170759700210,215,0 +170759700258,215,0 +170759700306,215,0 +170759700354,215,0 +170759700401,216,0 +170759700449,216,0 +170759700497,216,0 +170759700545,217,0 +170759700593,218,0 +170759700640,219,0 +170759700688,220,0 +170759700736,220,0 +170759700784,220,0 +170759700832,221,0 +170759700880,221,0 +170759700928,221,0 +170759700977,223,0 +170759701025,216,0 +170759701073,214,0 +170759701121,214,0 +170759701169,214,0 +170759701217,214,0 +170759701264,214,0 +170759701312,214,0 +170759701360,214,0 +170759701408,214,0 +170759701456,214,0 +170759701503,214,0 +170759701551,215,0 +170759701599,215,0 +170759701647,215,0 +170759701695,215,0 +170759701743,216,0 +170759701790,216,0 +170759701838,217,0 +170759701886,218,0 +170759701934,218,0 +170759701982,219,0 +170759702029,222,0 +170759702077,223,0 +170759702125,215,0 +170759702173,215,0 +170759702221,215,0 +170759702269,214,0 +170759702317,215,0 +170759702365,215,0 +170759702412,215,0 +170759702460,215,0 +170759702508,215,0 +170759702556,216,0 +170759702604,216,0 +170759702652,215,0 +170759702701,215,0 +170759702749,216,0 +170759702797,217,0 +170759702847,218,0 +170759702895,218,0 +170759702943,218,0 +170759702991,218,0 +170759703040,218,0 +170759703089,221,0 +170759703137,222,0 +170759703185,216,0 +170759703233,214,0 +170759703281,214,0 +170759703331,214,0 +170759703379,215,0 +170759703428,215,0 +170759703476,215,0 +170759703524,215,0 +170759703573,215,0 +170759703621,215,0 +170759703669,216,0 +170759703717,216,0 +170759703766,216,0 +170759703816,216,0 +170759703864,216,0 +170759703913,217,0 +170759703961,218,0 +170759704009,219,0 +170759704057,220,0 +170759704105,219,0 +170759704155,222,0 +170759704202,223,0 +170759704252,216,0 +170759704300,214,0 +170759704348,214,0 +170759704397,214,0 +170759704445,214,0 +170759704495,214,0 +170759704543,215,0 +170759704591,215,0 +170759704639,215,0 +170759704687,215,0 +170759704735,215,0 +170759704784,215,0 +170759704832,215,0 +170759704881,216,0 +170759704929,217,0 +170759704979,217,0 +170759705027,218,0 +170759705075,218,0 +170759705122,219,0 +170759705170,220,0 +170759705218,221,0 +170759705266,223,0 +170759705314,216,0 +170759705362,214,0 +170759705410,214,0 +170759705457,214,0 +170759705505,215,0 +170759705553,215,0 +170759705601,215,0 +170759705649,215,0 +170759705696,215,0 +170759705744,215,0 +170759705792,215,0 +170759705842,215,0 +170759705891,216,0 +170759705941,216,0 +170759705990,217,0 +170759706038,217,0 +170759706088,218,0 +170759706136,219,0 +170759706183,220,0 +170759706233,221,0 +170759706283,222,0 +170759706330,223,0 +170759706378,216,0 +170759706428,215,0 +170759706476,215,0 +170759706525,215,0 +170759706575,215,0 +170759706623,215,0 +170759706670,216,0 +170759706718,215,0 +170759706766,215,0 +170759706814,216,0 +170759706862,216,0 +170759706912,216,0 +170759706960,217,0 +170759707008,218,0 +170759707056,219,0 +170759707105,220,0 +170759707155,218,0 +170759707203,221,0 +170759707252,222,0 +170759707300,222,0 +170759707350,222,0 +170759707398,222,0 +170759707445,216,0 +170759707493,214,0 +170759707541,214,0 +170759707589,214,0 +170759707637,214,0 +170759707685,214,0 +170759707733,215,0 +170759707781,215,0 +170759707829,215,0 +170759707877,215,0 +170759707926,215,0 +170759707974,216,0 +170759708022,216,0 +170759708070,216,0 +170759708118,217,0 +170759708166,217,0 +170759708213,218,0 +170759708261,219,0 +170759708309,219,0 +170759708357,219,0 +170759708405,219,0 +170759708453,223,0 +170759708501,220,0 +170759708549,215,0 +170759708596,215,0 +170759708644,215,0 +170759708692,215,0 +170759708740,215,0 +170759708788,214,0 +170759708836,215,0 +170759708883,216,0 +170759708931,216,0 +170759708979,216,0 +170759709027,216,0 +170759709075,216,0 +170759709123,216,0 +170759709170,218,0 +170759709218,218,0 +170759709266,219,0 +170759709314,219,0 +170759709362,220,0 +170759709410,220,0 +170759709457,221,0 +170759709505,222,0 +170759709553,223,0 +170759709601,216,0 +170759709651,214,0 +170759709699,214,0 +170759709747,214,0 +170759709795,214,0 +170759709843,214,0 +170759709890,214,0 +170759709938,214,0 +170759709986,214,0 +170759710034,214,0 +170759710082,214,0 +170759710130,214,0 +170759710179,214,0 +170759710227,214,0 +170759710275,214,0 +170759710325,214,0 +170759710374,214,0 +170759710422,214,0 +170759710470,214,0 +170759710519,215,0 +170759710567,220,0 +170759710617,222,0 +170759710665,216,0 +170759710713,215,0 +170759710762,215,0 +170759710810,215,0 +170759710858,215,0 +170759710906,215,0 +170759710954,215,0 +170759711002,216,0 +170759711052,216,0 +170759711099,216,0 +170759711147,216,0 +170759711195,216,0 +170759711243,217,0 +170759711291,218,0 +170759711339,218,0 +170759711387,218,0 +170759711435,219,0 +170759711483,219,0 +170759711532,220,0 +170759711580,220,0 +170759711628,221,0 +170759711676,222,0 +170759711724,216,0 +170759711773,215,0 +170759711821,215,0 +170759711869,215,0 +170759711917,215,0 +170759711965,216,0 +170759712013,216,0 +170759712061,216,0 +170759712111,216,0 +170759712159,217,0 +170759712206,217,0 +170759712254,218,0 +170759712302,218,0 +170759712350,219,0 +170759712398,220,0 +170759712446,220,0 +170759712494,221,0 +170759712543,221,0 +170759712591,221,0 +170759712639,221,0 +170759712689,222,0 +170759712737,222,0 +170759712785,219,0 +170759712833,215,0 +170759712881,215,0 +170759712929,215,0 +170759712978,216,0 +170759713026,217,0 +170759713076,217,0 +170759713124,217,0 +170759713172,218,0 +170759713220,218,0 +170759713269,219,0 +170759713317,219,0 +170759713365,220,0 +170759713413,220,0 +170759713463,221,0 +170759713512,221,0 +170759713562,221,0 +170759713609,222,0 +170759713659,223,0 +170759713707,222,0 +170759713755,222,0 +170759713804,222,0 +170759713852,216,0 +170759713900,215,0 +170759713948,214,0 +170759713997,215,0 +170759714045,216,0 +170759714093,216,0 +170759714141,216,0 +170759714189,217,0 +170759714237,217,0 +170759714285,217,0 +170759714335,217,0 +170759714383,218,0 +170759714431,220,0 +170759714480,220,0 +170759714528,220,0 +170759714578,221,0 +170759714625,221,0 +170759714675,222,0 +170759714723,222,0 +170759714771,221,0 +170759714819,221,0 +170759714868,222,0 +170759714916,220,0 +170759714964,215,0 +170759715012,215,0 +170759715060,215,0 +170759715108,215,0 +170759715155,215,0 +170759715205,215,0 +170759715253,216,0 +170759715302,216,0 +170759715352,216,0 +170759715400,216,0 +170759715448,216,0 +170759715496,217,0 +170759715545,216,0 +170759715593,217,0 +170759715643,217,0 +170759715691,218,0 +170759715739,219,0 +170759715787,219,0 +170759715836,219,0 +170759715884,219,0 +170759715932,223,0 +170759715982,223,0 +170759716030,215,0 +170759716077,215,0 +170759716125,214,0 +170759716173,214,0 +170759716221,214,0 +170759716269,214,0 +170759716317,214,0 +170759716367,214,0 +170759716415,214,0 +170759716463,214,0 +170759716510,214,0 +170759716558,215,0 +170759716606,214,0 +170759716654,214,0 +170759716704,214,0 +170759716752,214,0 +170759716801,214,0 +170759716849,214,0 +170759716899,214,0 +170759716947,215,0 +170759716996,223,0 +170759717046,223,0 +170759717094,215,0 +170759717141,214,0 +170759717189,214,0 +170759717239,214,0 +170759717287,214,0 +170759717336,215,0 +170759717384,215,0 +170759717432,215,0 +170759717481,215,0 +170759717529,216,0 +170759717579,215,0 +170759717627,215,0 +170759717676,215,0 +170759717724,216,0 +170759717772,217,0 +170759717820,217,0 +170759717868,218,0 +170759717917,218,0 +170759717965,219,0 +170759718015,219,0 +170759718063,223,0 +170759718110,222,0 +170759718158,216,0 +170759718206,215,0 +170759718254,215,0 +170759718304,215,0 +170759718352,215,0 +170759718400,215,0 +170759718448,215,0 +170759718496,215,0 +170759718545,215,0 +170759718593,215,0 +170759718641,216,0 +170759718689,217,0 +170759718737,218,0 +170759718785,218,0 +170759718833,219,0 +170759718882,220,0 +170759718930,221,0 +170759718978,220,0 +170759719026,221,0 +170759719074,221,0 +170759719122,222,0 +170759719170,222,0 +170759719218,216,0 +170759719266,215,0 +170759719314,216,0 +170759719362,215,0 +170759719411,215,0 +170759719459,215,0 +170759719507,215,0 +170759719555,215,0 +170759719605,216,0 +170759719653,215,0 +170759719700,216,0 +170759719748,216,0 +170759719796,217,0 +170759719844,218,0 +170759719894,218,0 +170759719942,219,0 +170759719990,220,0 +170759720037,220,0 +170759720085,221,0 +170759720133,221,0 +170759720183,222,0 +170759720231,223,0 +170759720279,216,0 +170759720327,214,0 +170759720375,214,0 +170759720424,214,0 +170759720474,214,0 +170759720523,215,0 +170759720573,215,0 +170759720622,215,0 +170759720670,215,0 +170759720718,215,0 +170759720768,215,0 +170759720816,215,0 +170759720865,216,0 +170759720913,217,0 +170759720961,218,0 +170759721009,218,0 +170759721057,218,0 +170759721106,219,0 +170759721154,220,0 +170759721202,220,0 +170759721250,222,0 +170759721298,222,0 +170759721346,217,0 +170759721394,216,0 +170759721441,215,0 +170759721491,215,0 +170759721539,215,0 +170759721587,216,0 +170759721636,216,0 +170759721684,216,0 +170759721735,216,0 +170759721784,216,0 +170759721834,216,0 +170759721882,217,0 +170759721930,218,0 +170759721977,219,0 +170759722025,219,0 +170759722075,220,0 +170759722123,220,0 +170759722171,221,0 +170759722220,222,0 +170759722268,221,0 +170759722316,222,0 +170759722364,223,0 +170759722412,216,0 +170759722460,215,0 +170759722509,215,0 +170759722557,215,0 +170759722605,215,0 +170759722653,215,0 +170759722703,215,0 +170759722751,215,0 +170759722798,215,0 +170759722846,215,0 +170759722894,215,0 +170759722942,216,0 +170759722990,216,0 +170759723038,217,0 +170759723086,218,0 +170759723134,218,0 +170759723182,219,0 +170759723230,220,0 +170759723280,220,0 +170759723329,221,0 +170759723379,220,0 +170759723427,222,0 +170759723476,217,0 +170759723524,215,0 +170759723572,215,0 +170759723620,215,0 +170759723669,215,0 +170759723717,215,0 +170759723765,216,0 +170759723815,215,0 +170759723863,216,0 +170759723912,216,0 +170759723960,216,0 +170759724010,216,0 +170759724058,217,0 +170759724107,218,0 +170759724155,219,0 +170759724203,219,0 +170759724252,220,0 +170759724302,220,0 +170759724350,220,0 +170759724398,220,0 +170759724446,220,0 +170759724494,222,0 +170759724542,216,0 +170759724591,215,0 +170759724639,215,0 +170759724687,215,0 +170759724735,216,0 +170759724783,216,0 +170759724831,216,0 +170759724878,216,0 +170759724928,216,0 +170759724978,216,0 +170759725025,217,0 +170759725073,217,0 +170759725121,217,0 +170759725171,218,0 +170759725219,219,0 +170759725267,220,0 +170759725314,220,0 +170759725364,221,0 +170759725412,221,0 +170759725460,222,0 +170759725508,221,0 +170759725556,222,0 +170759725603,222,0 +170759725651,215,0 +170759725701,215,0 +170759725749,215,0 +170759725798,215,0 +170759725846,216,0 +170759725896,216,0 +170759725944,216,0 +170759725991,216,0 +170759726039,217,0 +170759726087,216,0 +170759726137,217,0 +170759726186,217,0 +170759726234,217,0 +170759726282,218,0 +170759726330,218,0 +170759726378,219,0 +170759726428,220,0 +170759726476,220,0 +170759726525,220,0 +170759726573,221,0 +170759726621,222,0 +170759726669,222,0 +170759726717,215,0 +170759726765,214,0 +170759726814,214,0 +170759726862,214,0 +170759726910,214,0 +170759726958,214,0 +170759727006,215,0 +170759727054,215,0 +170759727102,215,0 +170759727150,215,0 +170759727198,215,0 +170759727246,216,0 +170759727294,215,0 +170759727342,216,0 +170759727390,217,0 +170759727437,217,0 +170759727485,218,0 +170759727533,219,0 +170759727581,219,0 +170759727629,220,0 +170759727677,222,0 +170759727725,222,0 +170759727773,215,0 +170759727821,214,0 +170759727869,214,0 +170759727917,214,0 +170759727965,214,0 +170759728013,214,0 +170759728061,214,0 +170759728109,215,0 +170759728157,214,0 +170759728205,215,0 +170759728254,215,0 +170759728302,215,0 +170759728350,216,0 +170759728399,216,0 +170759728447,217,0 +170759728497,218,0 +170759728546,219,0 +170759728596,219,0 +170759728644,220,0 +170759728692,220,0 +170759728740,222,0 +170759728788,222,0 +170759728837,216,0 +170759728885,215,0 +170759728935,215,0 +170759728982,215,0 +170759729030,215,0 +170759729078,215,0 +170759729126,216,0 +170759729174,215,0 +170759729222,216,0 +170759729270,216,0 +170759729318,216,0 +170759729366,217,0 +170759729414,217,0 +170759729463,217,0 +170759729511,218,0 +170759729559,219,0 +170759729607,219,0 +170759729655,220,0 +170759729703,219,0 +170759729751,220,0 +170759729798,223,0 +170759729846,223,0 +170759729894,216,0 +170759729942,214,0 +170759729990,214,0 +170759730039,214,0 +170759730087,214,0 +170759730135,214,0 +170759730183,214,0 +170759730231,214,0 +170759730279,214,0 +170759730328,214,0 +170759730376,214,0 +170759730424,214,0 +170759730472,215,0 +170759730520,215,0 +170759730568,215,0 +170759730616,215,0 +170759730664,215,0 +170759730714,216,0 +170759730761,216,0 +170759730811,217,0 +170759730859,220,0 +170759730907,222,0 +170759730955,216,0 +170759731003,215,0 +170759731051,215,0 +170759731099,215,0 +170759731147,215,0 +170759731195,215,0 +170759731243,216,0 +170759731291,216,0 +170759731340,216,0 +170759731390,216,0 +170759731438,216,0 +170759731485,216,0 +170759731535,217,0 +170759731583,217,0 +170759731631,218,0 +170759731679,219,0 +170759731727,219,0 +170759731775,219,0 +170759731823,221,0 +170759731872,221,0 +170759731922,222,0 +170759731970,222,0 +170759732018,216,0 +170759732066,215,0 +170759732114,215,0 +170759732163,215,0 +170759732211,215,0 +170759732259,215,0 +170759732307,215,0 +170759732356,216,0 +170759732404,215,0 +170759732452,216,0 +170759732500,216,0 +170759732550,216,0 +170759732599,216,0 +170759732647,217,0 +170759732695,218,0 +170759732745,218,0 +170759732792,219,0 +170759732840,217,0 +170759732890,218,0 +170759732938,218,0 +170759732987,218,0 +170759733035,221,0 +170759733083,221,0 +170759733131,215,0 +170759733181,215,0 +170759733229,215,0 +170759733277,215,0 +170759733324,215,0 +170759733372,215,0 +170759733420,216,0 +170759733468,216,0 +170759733516,216,0 +170759733564,216,0 +170759733614,216,0 +170759733663,217,0 +170759733711,218,0 +170759733759,218,0 +170759733807,219,0 +170759733856,219,0 +170759733904,221,0 +170759733952,221,0 +170759734000,221,0 +170759734048,221,0 +170759734096,222,0 +170759734146,222,0 +170759734194,215,0 +170759734242,214,0 +170759734290,215,0 +170759734339,215,0 +170759734387,215,0 +170759734437,215,0 +170759734485,215,0 +170759734533,215,0 +170759734580,215,0 +170759734630,216,0 +170759734679,216,0 +170759734727,216,0 +170759734777,217,0 +170759734826,218,0 +170759734874,219,0 +170759734922,220,0 +170759734972,220,0 +170759735020,220,0 +170759735069,221,0 +170759735119,221,0 +170759735168,223,0 +170759735216,222,0 +170759735266,215,0 +170759735315,215,0 +170759735365,215,0 +170759735413,215,0 +170759735462,215,0 +170759735510,215,0 +170759735558,215,0 +170759735606,215,0 +170759735654,216,0 +170759735702,216,0 +170759735750,216,0 +170759735798,217,0 +170759735846,219,0 +170759735893,219,0 +170759735941,220,0 +170759735989,220,0 +170759736037,221,0 +170759736085,223,0 +170759736133,224,0 +170759736181,222,0 +170759736229,223,0 +170759736277,222,0 +170759736324,215,0 +170759736372,214,0 +170759736420,214,0 +170759736468,214,0 +170759736516,214,0 +170759736564,214,0 +170759736611,214,0 +170759736661,214,0 +170759736709,215,0 +170759736757,214,0 +170759736804,215,0 +170759736852,215,0 +170759736900,215,0 +170759736948,215,0 +170759736997,215,0 +170759737045,216,0 +170759737093,217,0 +170759737141,217,0 +170759737190,218,0 +170759737240,219,0 +170759737289,222,0 +170759737337,222,0 +170759737385,216,0 +170759737433,215,0 +170759737481,214,0 +170759737531,215,0 +170759737580,215,0 +170759737628,215,0 +170759737678,215,0 +170759737726,215,0 +170759737774,216,0 +170759737822,215,0 +170759737870,216,0 +170759737919,217,0 +170759737967,217,0 +170759738015,219,0 +170759738064,219,0 +170759738112,219,0 +170759738162,221,0 +170759738211,222,0 +170759738259,221,0 +170759738307,222,0 +170759738356,222,0 +170759738406,222,0 +170759738454,215,0 +170759738501,214,0 +170759738549,214,0 +170759738597,214,0 +170759738647,214,0 +170759738695,214,0 +170759738743,215,0 +170759738790,215,0 +170759738838,215,0 +170759738886,215,0 +170759738934,215,0 +170759738982,216,0 +170759739030,216,0 +170759739078,216,0 +170759739125,217,0 +170759739173,218,0 +170759739221,218,0 +170759739269,218,0 +170759739317,219,0 +170759739365,218,0 +170759739412,221,0 +170759739460,222,0 +170759739508,216,0 +170759739556,215,0 +170759739604,215,0 +170759739652,215,0 +170759739700,215,0 +170759739748,215,0 +170759739796,215,0 +170759739843,215,0 +170759739891,216,0 +170759739939,216,0 +170759739987,216,0 +170759740035,217,0 +170759740083,217,0 +170759740130,218,0 +170759740178,218,0 +170759740226,220,0 +170759740274,220,0 +170759740322,220,0 +170759740370,220,0 +170759740418,221,0 +170759740466,221,0 +170759740514,222,0 +170759740561,222,0 +170759740609,215,0 +170759740657,214,0 +170759740705,214,0 +170759740753,215,0 +170759740801,215,0 +170759740849,215,0 +170759740897,215,0 +170759740945,215,0 +170759740993,215,0 +170759741042,215,0 +170759741092,215,0 +170759741140,215,0 +170759741189,216,0 +170759741237,217,0 +170759741287,217,0 +170759741334,218,0 +170759741382,218,0 +170759741430,219,0 +170759741478,220,0 +170759741528,220,0 +170759741576,222,0 +170759741625,222,0 +170759741673,215,0 +170759741721,214,0 +170759741769,214,0 +170759741817,215,0 +170759741865,214,0 +170759741913,215,0 +170759741961,215,0 +170759742010,215,0 +170759742058,215,0 +170759742106,215,0 +170759742154,216,0 +170759742202,216,0 +170759742250,216,0 +170759742299,217,0 +170759742349,218,0 +170759742398,219,0 +170759742446,220,0 +170759742494,220,0 +170759742542,221,0 +170759742590,221,0 +170759742638,222,0 +170759742686,223,0 +170759742735,216,0 +170759742783,214,0 +170759742831,214,0 +170759742879,214,0 +170759742928,214,0 +170759742976,214,0 +170759743024,214,0 +170759743074,214,0 +170759743122,214,0 +170759743170,214,0 +170759743218,215,0 +170759743265,215,0 +170759743313,215,0 +170759743361,215,0 +170759743411,215,0 +170759743459,216,0 +170759743507,216,0 +170759743554,216,0 +170759743604,217,0 +170759743652,217,0 +170759743701,222,0 +170759743751,223,0 +170759743799,216,0 +170759743847,215,0 +170759743896,215,0 +170759743944,215,0 +170759743992,215,0 +170759744042,215,0 +170759744090,215,0 +170759744138,215,0 +170759744187,216,0 +170759744235,216,0 +170759744285,217,0 +170759744333,217,0 +170759744382,218,0 +170759744430,219,0 +170759744478,219,0 +170759744527,220,0 +170759744575,221,0 +170759744625,221,0 +170759744673,222,0 +170759744721,222,0 +170759744769,222,0 +170759744818,222,0 +170759744866,215,0 +170759744914,215,0 +170759744962,215,0 +170759745010,215,0 +170759745058,215,0 +170759745105,215,0 +170759745153,215,0 +170759745203,215,0 +170759745251,216,0 +170759745300,216,0 +170759745348,216,0 +170759745396,217,0 +170759745444,218,0 +170759745492,218,0 +170759745541,220,0 +170759745591,220,0 +170759745639,221,0 +170759745687,221,0 +170759745736,221,0 +170759745784,221,0 +170759745834,222,0 +170759745883,222,0 +170759745931,216,0 +170759745979,215,0 +170759746027,215,0 +170759746075,215,0 +170759746124,215,0 +170759746172,215,0 +170759746222,216,0 +170759746271,216,0 +170759746321,217,0 +170759746368,217,0 +170759746416,218,0 +170759746464,219,0 +170759746512,220,0 +170759746560,220,0 +170759746607,220,0 +170759746655,220,0 +170759746703,221,0 +170759746753,222,0 +170759746800,222,0 +170759746848,222,0 +170759746896,222,0 +170759746944,222,0 +170759746992,216,0 +170759747039,214,0 +170759747087,214,0 +170759747137,214,0 +170759747186,214,0 +170759747234,215,0 +170759747282,214,0 +170759747332,215,0 +170759747380,215,0 +170759747428,215,0 +170759747476,215,0 +170759747524,215,0 +170759747571,215,0 +170759747619,216,0 +170759747667,217,0 +170759747717,217,0 +170759747765,218,0 +170759747812,219,0 +170759747862,219,0 +170759747911,220,0 +170759747959,220,0 +170759748007,223,0 +170759748055,220,0 +170759748104,215,0 +170759748152,215,0 +170759748200,215,0 +170759748248,215,0 +170759748296,215,0 +170759748344,216,0 +170759748392,215,0 +170759748442,216,0 +170759748491,216,0 +170759748539,216,0 +170759748587,218,0 +170759748636,217,0 +170759748684,218,0 +170759748732,219,0 +170759748780,219,0 +170759748828,220,0 +170759748876,221,0 +170759748924,221,0 +170759748972,221,0 +170759749021,221,0 +170759749069,222,0 +170759749118,222,0 +170759749166,215,0 +170759749214,214,0 +170759749264,214,0 +170759749312,214,0 +170759749360,214,0 +170759749409,214,0 +170759749457,214,0 +170759749505,214,0 +170759749553,214,0 +170759749603,215,0 +170759749652,215,0 +170759749701,215,0 +170759749749,215,0 +170759749797,215,0 +170759749847,216,0 +170759749895,216,0 +170759749942,217,0 +170759749992,218,0 +170759750042,219,0 +170759750089,219,0 +170759750137,222,0 +170759750185,222,0 +170759750233,214,0 +170759750281,214,0 +170759750329,215,0 +170759750376,215,0 +170759750424,215,0 +170759750472,215,0 +170759750520,215,0 +170759750568,215,0 +170759750616,215,0 +170759750664,216,0 +170759750711,216,0 +170759750759,216,0 +170759750807,217,0 +170759750855,217,0 +170759750903,218,0 +170759750950,219,0 +170759750998,220,0 +170759751046,221,0 +170759751094,221,0 +170759751142,221,0 +170759751190,221,0 +170759751238,222,0 +170759751287,216,0 +170759751335,214,0 +170759751383,214,0 +170759751432,214,0 +170759751480,215,0 +170759751528,215,0 +170759751576,215,0 +170759751624,215,0 +170759751672,215,0 +170759751721,215,0 +170759751771,215,0 +170759751819,215,0 +170759751867,216,0 +170759751916,216,0 +170759751964,217,0 +170759752012,217,0 +170759752061,218,0 +170759752111,219,0 +170759752159,219,0 +170759752207,220,0 +170759752255,222,0 +170759752303,223,0 +170759752350,216,0 +170759752400,215,0 +170759752448,215,0 +170759752496,215,0 +170759752544,215,0 +170759752591,215,0 +170759752639,215,0 +170759752689,216,0 +170759752737,215,0 +170759752785,215,0 +170759752834,216,0 +170759752882,216,0 +170759752930,216,0 +170759752978,217,0 +170759753027,218,0 +170759753077,218,0 +170759753126,219,0 +170759753174,219,0 +170759753222,219,0 +170759753270,219,0 +170759753318,222,0 +170759753366,222,0 +170759753414,216,0 +170759753462,215,0 +170759753511,215,0 +170759753559,215,0 +170759753607,215,0 +170759753655,215,0 +170759753703,215,0 +170759753751,215,0 +170759753800,216,0 +170759753850,216,0 +170759753897,216,0 +170759753945,216,0 +170759753993,216,0 +170759754043,217,0 +170759754091,218,0 +170759754138,218,0 +170759754186,219,0 +170759754234,220,0 +170759754282,221,0 +170759754330,221,0 +170759754378,221,0 +170759754425,222,0 +170759754473,216,0 +170759754521,214,0 +170759754569,214,0 +170759754618,214,0 +170759754666,214,0 +170759754716,215,0 +170759754765,215,0 +170759754813,215,0 +170759754861,215,0 +170759754910,215,0 +170759754960,215,0 +170759755009,215,0 +170759755057,216,0 +170759755105,216,0 +170759755153,217,0 +170759755201,218,0 +170759755249,218,0 +170759755297,219,0 +170759755345,219,0 +170759755392,220,0 +170759755440,220,0 +170759755490,222,0 +170759755538,222,0 +170759755587,215,0 +170759755635,215,0 +170759755685,215,0 +170759755732,215,0 +170759755780,215,0 +170759755830,215,0 +170759755878,215,0 +170759755926,215,0 +170759755975,215,0 +170759756023,216,0 +170759756072,216,0 +170759756120,217,0 +170759756168,217,0 +170759756218,218,0 +170759756266,219,0 +170759756313,219,0 +170759756361,220,0 +170759756409,221,0 +170759756457,221,0 +170759756507,222,0 +170759756556,222,0 +170759756604,223,0 +170759756652,215,0 +170759756700,214,0 +170759756748,214,0 +170759756796,214,0 +170759756843,215,0 +170759756893,215,0 +170759756941,215,0 +170759756990,215,0 +170759757038,215,0 +170759757086,215,0 +170759757134,216,0 +170759757182,215,0 +170759757230,216,0 +170759757279,216,0 +170759757327,217,0 +170759757375,218,0 +170759757425,218,0 +170759757474,218,0 +170759757522,220,0 +170759757570,219,0 +170759757620,221,0 +170759757668,222,0 +170759757715,215,0 +170759757763,215,0 +170759757811,215,0 +170759757861,215,0 +170759757908,216,0 +170759757956,215,0 +170759758004,216,0 +170759758052,216,0 +170759758100,216,0 +170759758148,216,0 +170759758196,216,0 +170759758244,216,0 +170759758292,217,0 +170759758340,218,0 +170759758387,219,0 +170759758437,220,0 +170759758485,220,0 +170759758533,220,0 +170759758581,220,0 +170759758628,221,0 +170759758678,222,0 +170759758726,222,0 +170759758774,215,0 +170759758822,214,0 +170759758869,215,0 +170759758917,215,0 +170759758967,215,0 +170759759015,215,0 +170759759063,215,0 +170759759111,215,0 +170759759159,215,0 +170759759206,216,0 +170759759256,216,0 +170759759304,216,0 +170759759353,217,0 +170759759401,217,0 +170759759451,218,0 +170759759498,219,0 +170759759546,219,0 +170759759594,219,0 +170759759642,220,0 +170759759690,220,0 +170759759739,221,0 +170759759787,222,0 +170759759835,216,0 +170759759883,215,0 +170759759931,215,0 +170759759980,215,0 +170759760028,215,0 +170759760076,215,0 +170759760124,215,0 +170759760172,216,0 +170759760220,216,0 +170759760268,216,0 +170759760317,216,0 +170759760365,216,0 +170759760413,217,0 +170759760462,218,0 +170759760512,218,0 +170759760560,219,0 +170759760608,220,0 +170759760655,221,0 +170759760705,221,0 +170759760753,221,0 +170759760801,222,0 +170759760849,223,0 +170759760898,216,0 +170759760946,215,0 +170759760994,214,0 +170759761042,214,0 +170759761090,214,0 +170759761138,215,0 +170759761185,214,0 +170759761233,215,0 +170759761281,215,0 +170759761329,215,0 +170759761379,215,0 +170759761426,216,0 +170759761474,215,0 +170759761522,215,0 +170759761570,216,0 +170759761618,216,0 +170759761667,217,0 +170759761715,218,0 +170759761763,219,0 +170759761813,219,0 +170759761861,220,0 +170759761909,222,0 +170759761958,217,0 +170759762008,214,0 +170759762055,214,0 +170759762103,214,0 +170759762151,215,0 +170759762199,215,0 +170759762247,215,0 +170759762295,215,0 +170759762343,215,0 +170759762391,216,0 +170759762439,215,0 +170759762487,216,0 +170759762535,216,0 +170759762583,216,0 +170759762630,216,0 +170759762678,216,0 +170759762726,217,0 +170759762776,218,0 +170759762825,218,0 +170759762873,217,0 +170759762921,219,0 +170759762969,220,0 +170759763017,224,0 +170759763066,215,0 +170759763114,214,0 +170759763164,214,0 +170759763213,214,0 +170759763263,215,0 +170759763310,215,0 +170759763358,215,0 +170759763406,215,0 +170759763456,215,0 +170759763504,215,0 +170759763552,215,0 +170759763601,216,0 +170759763649,216,0 +170759763697,217,0 +170759763745,218,0 +170759763793,218,0 +170759763841,219,0 +170759763889,219,0 +170759763936,220,0 +170759763984,220,0 +170759764034,222,0 +170759764083,222,0 +170759764133,216,0 +170759764182,215,0 +170759764230,215,0 +170759764278,215,0 +170759764328,215,0 +170759764376,215,0 +170759764424,215,0 +170759764472,216,0 +170759764521,216,0 +170759764569,216,0 +170759764617,216,0 +170759764665,216,0 +170759764713,217,0 +170759764761,218,0 +170759764809,218,0 +170759764858,220,0 +170759764906,219,0 +170759764954,220,0 +170759765004,221,0 +170759765051,222,0 +170759765099,222,0 +170759765147,222,0 +170759765195,215,0 +170759765243,214,0 +170759765291,214,0 +170759765339,214,0 +170759765387,214,0 +170759765435,214,0 +170759765483,214,0 +170759765531,214,0 +170759765579,215,0 +170759765627,215,0 +170759765675,215,0 +170759765724,215,0 +170759765772,215,0 +170759765820,216,0 +170759765870,216,0 +170759765918,216,0 +170759765966,217,0 +170759766015,217,0 +170759766063,218,0 +170759766111,218,0 +170759766159,221,0 +170759766207,223,0 +170759766256,215,0 +170759766306,215,0 +170759766354,215,0 +170759766403,215,0 +170759766451,215,0 +170759766499,215,0 +170759766547,215,0 +170759766595,216,0 +170759766643,216,0 +170759766692,216,0 +170759766740,216,0 +170759766788,216,0 +170759766837,217,0 +170759766885,217,0 +170759766933,218,0 +170759766983,220,0 +170759767032,219,0 +170759767080,219,0 +170759767128,219,0 +170759767178,222,0 +170759767227,220,0 +170759767275,215,0 +170759767323,214,0 +170759767371,214,0 +170759767421,214,0 +170759767469,215,0 +170759767517,215,0 +170759767565,215,0 +170759767613,215,0 +170759767662,215,0 +170759767710,215,0 +170759767758,215,0 +170759767806,216,0 +170759767854,217,0 +170759767902,217,0 +170759767949,219,0 +170759767997,219,0 +170759768047,219,0 +170759768095,220,0 +170759768143,221,0 +170759768192,223,0 +170759768240,216,0 +170759768290,215,0 +170759768337,214,0 +170759768385,215,0 +170759768433,215,0 +170759768481,215,0 +170759768530,215,0 +170759768578,215,0 +170759768626,215,0 +170759768674,216,0 +170759768722,216,0 +170759768770,216,0 +170759768818,217,0 +170759768866,218,0 +170759768914,219,0 +170759768963,219,0 +170759769013,219,0 +170759769060,219,0 +170759769108,219,0 +170759769156,221,0 +170759769204,222,0 +170759769252,216,0 +170759769302,215,0 +170759769350,215,0 +170759769398,215,0 +170759769446,215,0 +170759769495,215,0 +170759769543,215,0 +170759769593,216,0 +170759769641,216,0 +170759769688,216,0 +170759769736,218,0 +170759769784,218,0 +170759769832,219,0 +170759769882,219,0 +170759769931,220,0 +170759769981,220,0 +170759770030,221,0 +170759770078,221,0 +170759770126,221,0 +170759770174,222,0 +170759770222,217,0 +170759770270,215,0 +170759770318,215,0 +170759770366,215,0 +170759770414,215,0 +170759770462,215,0 +170759770511,215,0 +170759770559,216,0 +170759770607,217,0 +170759770655,218,0 +170759770703,218,0 +170759770751,219,0 +170759770799,219,0 +170759770847,220,0 +170759770896,220,0 +170759770946,220,0 +170759770994,221,0 +170759771042,221,0 +170759771089,222,0 +170759771137,221,0 +170759771185,222,0 +170759771235,216,0 +170759771283,215,0 +170759771332,215,0 +170759771380,215,0 +170759771428,215,0 +170759771476,216,0 +170759771524,215,0 +170759771572,216,0 +170759771620,216,0 +170759771669,217,0 +170759771717,217,0 +170759771765,217,0 +170759771813,218,0 +170759771862,219,0 +170759771910,219,0 +170759771958,220,0 +170759772008,221,0 +170759772056,221,0 +170759772103,221,0 +170759772151,222,0 +170759772199,222,0 +170759772247,214,0 +170759772297,214,0 +170759772346,214,0 +170759772396,214,0 +170759772443,214,0 +170759772493,214,0 +170759772541,215,0 +170759772589,215,0 +170759772638,215,0 +170759772688,215,0 +170759772737,216,0 +170759772785,215,0 +170759772834,216,0 +170759772882,217,0 +170759772932,218,0 +170759772980,218,0 +170759773028,219,0 +170759773076,220,0 +170759773123,221,0 +170759773171,222,0 +170759773221,216,0 +170759773269,214,0 +170759773318,214,0 +170759773368,214,0 +170759773416,214,0 +170759773464,214,0 +170759773512,215,0 +170759773560,214,0 +170759773609,215,0 +170759773657,214,0 +170759773705,215,0 +170759773753,215,0 +170759773801,215,0 +170759773850,216,0 +170759773898,216,0 +170759773946,217,0 +170759773996,217,0 +170759774043,218,0 +170759774091,218,0 +170759774139,222,0 +170759774187,222,0 +170759774235,215,0 +170759774283,215,0 +170759774331,215,0 +170759774379,215,0 +170759774427,215,0 +170759774475,215,0 +170759774522,215,0 +170759774572,215,0 +170759774621,216,0 +170759774671,216,0 +170759774719,216,0 +170759774767,217,0 +170759774816,218,0 +170759774864,219,0 +170759774912,219,0 +170759774961,220,0 +170759775009,220,0 +170759775059,220,0 +170759775107,220,0 +170759775156,222,0 +170759775206,216,0 +170759775254,215,0 +170759775303,215,0 +170759775351,215,0 +170759775399,215,0 +170759775447,215,0 +170759775495,216,0 +170759775545,216,0 +170759775594,217,0 +170759775642,217,0 +170759775691,218,0 +170759775739,218,0 +170759775787,219,0 +170759775837,220,0 +170759775886,224,0 +170759775936,222,0 +170759775984,220,0 +170759776032,221,0 +170759776080,221,0 +170759776128,222,0 +170759776175,222,0 +170759776225,215,0 +170759776274,215,0 +170759776322,215,0 +170759776370,215,0 +170759776418,215,0 +170759776466,215,0 +170759776514,216,0 +170759776562,216,0 +170759776610,215,0 +170759776659,217,0 +170759776709,217,0 +170759776757,218,0 +170759776805,219,0 +170759776853,220,0 +170759776902,221,0 +170759776950,221,0 +170759777000,221,0 +170759777047,221,0 +170759777095,221,0 +170759777145,222,0 +170759777193,216,0 +170759777241,215,0 +170759777289,215,0 +170759777337,215,0 +170759777386,215,0 +170759777434,215,0 +170759777484,215,0 +170759777532,216,0 +170759777580,216,0 +170759777627,217,0 +170759777675,217,0 +170759777723,218,0 +170759777773,219,0 +170759777821,220,0 +170759777868,221,0 +170759777916,221,0 +170759777965,221,0 +170759778014,223,0 +170759778062,222,0 +170759778112,222,0 +170759778160,222,0 +170759778207,216,0 +170759778255,214,0 +170759778305,215,0 +170759778354,215,0 +170759778402,215,0 +170759778452,215,0 +170759778499,215,0 +170759778547,216,0 +170759778595,217,0 +170759778643,217,0 +170759778691,218,0 +170759778739,219,0 +170759778787,219,0 +170759778836,220,0 +170759778884,219,0 +170759778934,220,0 +170759778982,220,0 +170759779031,221,0 +170759779079,221,0 +170759779127,222,0 +170759779176,219,0 +170759779224,215,0 +170759779274,215,0 +170759779322,215,0 +170759779371,215,0 +170759779421,215,0 +170759779469,215,0 +170759779516,215,0 +170759779566,216,0 +170759779615,216,0 +170759779663,217,0 +170759779711,217,0 +170759779759,218,0 +170759779807,218,0 +170759779857,219,0 +170759779904,220,0 +170759779952,220,0 +170759780000,220,0 +170759780050,220,0 +170759780098,221,0 +170759780145,222,0 +170759780193,216,0 +170759780241,215,0 +170759780289,215,0 +170759780337,215,0 +170759780385,216,0 +170759780433,216,0 +170759780482,216,0 +170759780530,217,0 +170759780578,217,0 +170759780628,218,0 +170759780677,218,0 +170759780725,219,0 +170759780773,220,0 +170759780821,220,0 +170759780870,220,0 +170759780918,221,0 +170759780966,222,0 +170759781014,221,0 +170759781062,222,0 +170759781111,222,0 +170759781159,222,0 +170759781207,215,0 +170759781255,215,0 +170759781303,215,0 +170759781352,214,0 +170759781402,215,0 +170759781450,215,0 +170759781498,215,0 +170759781546,215,0 +170759781595,216,0 +170759781645,216,0 +170759781694,218,0 +170759781744,219,0 +170759781792,220,0 +170759781839,220,0 +170759781887,220,0 +170759781935,220,0 +170759781983,221,0 +170759782033,221,0 +170759782082,222,0 +170759782130,222,0 +170759782179,216,0 +170759782229,215,0 +170759782277,215,0 +170759782325,215,0 +170759782374,215,0 +170759782422,215,0 +170759782470,216,0 +170759782518,216,0 +170759782566,216,0 +170759782614,217,0 +170759782662,217,0 +170759782710,218,0 +170759782757,219,0 +170759782805,219,0 +170759782853,220,0 +170759782901,221,0 +170759782949,221,0 +170759782997,222,0 +170759783045,221,0 +170759783093,222,0 +170759783141,222,0 +170759783189,215,0 +170759783236,215,0 +170759783284,215,0 +170759783332,215,0 +170759783380,215,0 +170759783428,215,0 +170759783478,216,0 +170759783525,215,0 +170759783575,216,0 +170759783623,217,0 +170759783672,218,0 +170759783722,219,0 +170759783770,219,0 +170759783819,220,0 +170759783869,220,0 +170759783916,219,0 +170759783964,219,0 +170759784012,219,0 +170759784060,219,0 +170759784109,222,0 +170759784157,217,0 +170759784205,215,0 +170759784255,215,0 +170759784303,215,0 +170759784351,215,0 +170759784399,215,0 +170759784446,215,0 +170759784496,215,0 +170759784544,215,0 +170759784592,216,0 +170759784640,216,0 +170759784687,216,0 +170759784735,217,0 +170759784783,218,0 +170759784833,219,0 +170759784882,220,0 +170759784930,221,0 +170759784978,220,0 +170759785027,220,0 +170759785075,222,0 +170759785123,223,0 +170759785173,216,0 +170759785222,215,0 +170759785272,215,0 +170759785320,215,0 +170759785367,215,0 +170759785415,215,0 +170759785463,215,0 +170759785513,216,0 +170759785560,216,0 +170759785608,217,0 +170759785656,216,0 +170759785704,217,0 +170759785752,218,0 +170759785800,219,0 +170759785847,220,0 +170759785895,220,0 +170759785943,220,0 +170759785991,221,0 +170759786039,221,0 +170759786087,221,0 +170759786135,222,0 +170759786183,215,0 +170759786230,215,0 +170759786278,215,0 +170759786326,215,0 +170759786374,215,0 +170759786422,215,0 +170759786470,215,0 +170759786518,215,0 +170759786566,216,0 +170759786615,217,0 +170759786663,217,0 +170759786711,218,0 +170759786759,219,0 +170759786808,220,0 +170759786856,220,0 +170759786906,221,0 +170759786954,220,0 +170759787002,220,0 +170759787050,222,0 +170759787099,222,0 +170759787147,216,0 +170759787195,215,0 +170759787243,215,0 +170759787292,215,0 +170759787340,215,0 +170759787388,215,0 +170759787436,215,0 +170759787484,215,0 +170759787532,216,0 +170759787580,216,0 +170759787628,216,0 +170759787676,217,0 +170759787724,218,0 +170759787771,219,0 +170759787819,219,0 +170759787867,220,0 +170759787915,220,0 +170759787963,220,0 +170759788011,222,0 +170759788059,221,0 +170759788107,222,0 +170759788155,215,0 +170759788203,215,0 +170759788250,215,0 +170759788298,215,0 +170759788346,215,0 +170759788394,215,0 +170759788442,215,0 +170759788490,215,0 +170759788539,216,0 +170759788589,216,0 +170759788637,217,0 +170759788686,218,0 +170759788736,218,0 +170759788784,220,0 +170759788832,220,0 +170759788881,220,0 +170759788929,220,0 +170759788977,221,0 +170759789026,222,0 +170759789076,222,0 +170759789124,220,0 +170759789172,215,0 +170759789221,214,0 +170759789271,215,0 +170759789320,215,0 +170759789368,215,0 +170759789416,215,0 +170759789464,215,0 +170759789512,215,0 +170759789561,215,0 +170759789609,216,0 +170759789657,216,0 +170759789704,217,0 +170759789752,217,0 +170759789800,218,0 +170759789848,219,0 +170759789896,221,0 +170759789944,220,0 +170759789991,222,0 +170759790039,221,0 +170759790087,222,0 +170759790135,216,0 +170759790183,215,0 +170759790231,214,0 +170759790278,215,0 +170759790326,215,0 +170759790375,215,0 +170759790423,215,0 +170759790471,215,0 +170759790521,215,0 +170759790570,216,0 +170759790618,216,0 +170759790666,217,0 +170759790714,217,0 +170759790761,218,0 +170759790809,219,0 +170759790857,220,0 +170759790907,220,0 +170759790955,220,0 +170759791002,220,0 +170759791050,222,0 +170759791098,222,0 +170759791146,215,0 +170759791194,214,0 +170759791242,215,0 +170759791291,215,0 +170759791341,215,0 +170759791390,215,0 +170759791438,215,0 +170759791488,216,0 +170759791536,215,0 +170759791585,216,0 +170759791635,217,0 +170759791683,217,0 +170759791730,218,0 +170759791778,220,0 +170759791826,220,0 +170759791874,221,0 +170759791922,221,0 +170759791970,222,0 +170759792018,221,0 +170759792065,222,0 +170759792113,216,0 +170759792161,215,0 +170759792209,215,0 +170759792258,215,0 +170759792306,215,0 +170759792354,215,0 +170759792404,214,0 +170759792452,216,0 +170759792500,216,0 +170759792549,217,0 +170759792598,217,0 +170759792646,219,0 +170759792694,218,0 +170759792744,219,0 +170759792792,221,0 +170759792841,221,0 +170759792889,220,0 +170759792937,222,0 +170759792985,221,0 +170759793034,222,0 +170759793082,222,0 +170759793130,216,0 +170759793178,214,0 +170759793226,214,0 +170759793274,214,0 +170759793322,214,0 +170759793369,214,0 +170759793417,214,0 +170759793465,215,0 +170759793513,215,0 +170759793562,215,0 +170759793610,215,0 +170759793658,215,0 +170759793708,216,0 +170759793758,216,0 +170759793805,217,0 +170759793853,218,0 +170759793901,218,0 +170759793949,218,0 +170759793999,218,0 +170759794048,222,0 +170759794096,220,0 +170759794146,214,0 +170759794193,214,0 +170759794241,214,0 +170759794291,214,0 +170759794339,215,0 +170759794387,215,0 +170759794435,215,0 +170759794484,215,0 +170759794532,215,0 +170759794580,216,0 +170759794628,216,0 +170759794676,216,0 +170759794725,217,0 +170759794773,218,0 +170759794821,218,0 +170759794871,219,0 +170759794920,219,0 +170759794968,219,0 +170759795016,222,0 +170759795064,222,0 +170759795112,216,0 +170759795160,215,0 +170759795208,215,0 +170759795255,215,0 +170759795305,215,0 +170759795354,215,0 +170759795402,215,0 +170759795450,216,0 +170759795500,217,0 +170759795548,217,0 +170759795595,218,0 +170759795645,219,0 +170759795693,219,0 +170759795741,220,0 +170759795790,220,0 +170759795838,221,0 +170759795886,221,0 +170759795934,221,0 +170759795982,221,0 +170759796030,221,0 +170759796077,221,0 +170759796127,216,0 +170759796175,215,0 +170759796223,215,0 +170759796271,216,0 +170759796319,217,0 +170759796367,217,0 +170759796415,218,0 +170759796462,218,0 +170759796512,219,0 +170759796561,219,0 +170759796609,220,0 +170759796657,220,0 +170759796705,221,0 +170759796753,221,0 +170759796801,222,0 +170759796849,222,0 +170759796897,222,0 +170759796945,222,0 +170759796994,221,0 +170759797043,222,0 +170759797091,216,0 +170759797139,215,0 +170759797187,215,0 +170759797235,215,0 +170759797283,216,0 +170759797331,216,0 +170759797379,216,0 +170759797427,217,0 +170759797475,218,0 +170759797522,218,0 +170759797570,218,0 +170759797618,219,0 +170759797666,220,0 +170759797714,221,0 +170759797763,220,0 +170759797813,221,0 +170759797862,221,0 +170759797910,221,0 +170759797958,223,0 +170759798006,222,0 +170759798054,221,0 +170759798101,216,0 +170759798151,215,0 +170759798199,215,0 +170759798246,215,0 +170759798294,215,0 +170759798342,215,0 +170759798390,215,0 +170759798439,216,0 +170759798487,217,0 +170759798537,217,0 +170759798586,218,0 +170759798634,219,0 +170759798682,219,0 +170759798732,220,0 +170759798780,221,0 +170759798829,222,0 +170759798879,221,0 +170759798927,222,0 +170759798975,222,0 +170759799024,222,0 +170759799074,220,0 +170759799123,214,0 +170759799171,214,0 +170759799220,215,0 +170759799270,215,0 +170759799318,215,0 +170759799367,215,0 +170759799417,215,0 +170759799466,215,0 +170759799514,216,0 +170759799562,216,0 +170759799610,217,0 +170759799658,218,0 +170759799705,218,0 +170759799753,219,0 +170759799801,220,0 +170759799849,220,0 +170759799897,220,0 +170759799945,220,0 +170759799994,222,0 +170759800044,222,0 +170759800092,216,0 +170759800141,215,0 +170759800191,215,0 +170759800239,215,0 +170759800288,215,0 +170759800338,215,0 +170759800386,215,0 +170759800435,216,0 +170759800485,216,0 +170759800533,216,0 +170759800581,217,0 +170759800628,217,0 +170759800676,218,0 +170759800724,219,0 +170759800772,219,0 +170759800820,220,0 +170759800869,221,0 +170759800917,221,0 +170759800965,221,0 +170759801013,223,0 +170759801062,216,0 +170759801110,215,0 +170759801158,215,0 +170759801206,215,0 +170759801254,215,0 +170759801302,215,0 +170759801349,216,0 +170759801399,216,0 +170759801447,217,0 +170759801495,218,0 +170759801544,218,0 +170759801594,218,0 +170759801642,219,0 +170759801690,220,0 +170759801739,219,0 +170759801787,222,0 +170759801836,222,0 +170759801884,221,0 +170759801932,221,0 +170759801982,222,0 +170759802030,222,0 +170759802078,215,0 +170759802126,215,0 +170759802174,215,0 +170759802222,215,0 +170759802271,215,0 +170759802319,216,0 +170759802367,216,0 +170759802415,217,0 +170759802463,217,0 +170759802511,218,0 +170759802558,219,0 +170759802606,219,0 +170759802656,220,0 +170759802704,221,0 +170759802752,221,0 +170759802799,221,0 +170759802849,222,0 +170759802897,222,0 +170759802946,221,0 +170759802994,222,0 +170759803042,221,0 +170759803092,215,0 +170759803139,215,0 +170759803187,215,0 +170759803235,215,0 +170759803283,215,0 +170759803331,215,0 +170759803379,216,0 +170759803426,216,0 +170759803476,216,0 +170759803524,217,0 +170759803572,218,0 +170759803620,219,0 +170759803667,219,0 +170759803717,220,0 +170759803765,220,0 +170759803813,221,0 +170759803861,221,0 +170759803908,222,0 +170759803958,222,0 +170759804006,222,0 +170759804055,216,0 +170759804103,215,0 +170759804151,215,0 +170759804199,216,0 +170759804248,216,0 +170759804296,216,0 +170759804344,216,0 +170759804392,217,0 +170759804440,218,0 +170759804488,219,0 +170759804537,219,0 +170759804587,220,0 +170759804636,220,0 +170759804686,221,0 +170759804735,221,0 +170759804783,221,0 +170759804831,222,0 +170759804881,223,0 +170759804929,223,0 +170759804977,222,0 +170759805025,222,0 +170759805074,215,0 +170759805122,215,0 +170759805170,215,0 +170759805218,215,0 +170759805266,215,0 +170759805313,215,0 +170759805361,215,0 +170759805409,216,0 +170759805457,216,0 +170759805505,216,0 +170759805553,217,0 +170759805600,217,0 +170759805648,218,0 +170759805696,218,0 +170759805744,219,0 +170759805792,220,0 +170759805840,219,0 +170759805889,219,0 +170759805937,220,0 +170759805985,222,0 +170759806033,220,0 +170759806081,215,0 +170759806129,215,0 +170759806178,216,0 +170759806226,215,0 +170759806274,216,0 +170759806324,215,0 +170759806373,216,0 +170759806422,216,0 +170759806470,216,0 +170759806520,216,0 +170759806569,216,0 +170759806619,217,0 +170759806668,217,0 +170759806716,219,0 +170759806764,220,0 +170759806812,219,0 +170759806861,220,0 +170759806909,222,0 +170759806957,221,0 +170759807005,221,0 +170759807055,215,0 +170759807103,215,0 +170759807152,215,0 +170759807202,216,0 +170759807251,215,0 +170759807301,216,0 +170759807349,216,0 +170759807397,217,0 +170759807445,217,0 +170759807493,218,0 +170759807541,218,0 +170759807589,219,0 +170759807636,220,0 +170759807684,220,0 +170759807732,222,0 +170759807780,221,0 +170759807828,223,0 +170759807876,225,0 +170759807924,222,0 +170759807973,222,0 +170759808021,218,0 +170759808069,215,0 +170759808117,215,0 +170759808165,215,0 +170759808213,215,0 +170759808261,215,0 +170759808309,216,0 +170759808357,216,0 +170759808406,217,0 +170759808454,217,0 +170759808502,218,0 +170759808551,218,0 +170759808601,219,0 +170759808649,218,0 +170759808697,218,0 +170759808744,217,0 +170759808792,218,0 +170759808840,219,0 +170759808890,221,0 +170759808938,221,0 +170759808987,222,0 +170759809035,215,0 +170759809083,214,0 +170759809131,214,0 +170759809179,214,0 +170759809227,214,0 +170759809274,214,0 +170759809322,214,0 +170759809372,214,0 +170759809421,214,0 +170759809469,214,0 +170759809519,214,0 +170759809566,214,0 +170759809614,214,0 +170759809662,214,0 +170759809712,214,0 +170759809761,214,0 +170759809809,214,0 +170759809859,214,0 +170759809907,215,0 +170759809955,221,0 +170759810003,220,0 +170759810051,215,0 +170759810100,215,0 +170759810148,215,0 +170759810196,215,0 +170759810244,215,0 +170759810292,215,0 +170759810340,216,0 +170759810389,216,0 +170759810437,216,0 +170759810485,216,0 +170759810533,217,0 +170759810582,218,0 +170759810630,218,0 +170759810678,219,0 +170759810726,220,0 +170759810774,221,0 +170759810822,222,0 +170759810872,221,0 +170759810920,221,0 +170759810969,223,0 +170759811017,216,0 +170759811065,215,0 +170759811113,215,0 +170759811161,215,0 +170759811209,215,0 +170759811257,215,0 +170759811305,216,0 +170759811352,216,0 +170759811400,216,0 +170759811448,216,0 +170759811496,216,0 +170759811544,217,0 +170759811592,218,0 +170759811640,218,0 +170759811687,219,0 +170759811737,220,0 +170759811786,220,0 +170759811836,221,0 +170759811884,221,0 +170759811932,222,0 +170759811979,222,0 +170759812027,215,0 +170759812075,214,0 +170759812123,214,0 +170759812173,215,0 +170759812221,215,0 +170759812269,215,0 +170759812317,215,0 +170759812364,215,0 +170759812412,215,0 +170759812460,216,0 +170759812508,216,0 +170759812556,216,0 +170759812604,216,0 +170759812652,217,0 +170759812701,217,0 +170759812749,217,0 +170759812797,218,0 +170759812845,218,0 +170759812893,220,0 +170759812941,220,0 +170759812989,220,0 +170759813037,221,0 +170759813086,221,0 +170759813136,222,0 +170759813184,222,0 +170759813233,222,0 +170759813281,222,0 +170759813331,223,0 +170759813379,224,0 +170759813427,223,0 +170759813475,222,0 +170759813522,216,0 +170759813570,215,0 +170759813618,215,0 +170759813666,215,0 +170759813714,216,0 +170759813762,217,0 +170759813810,216,0 +170759813858,217,0 +170759813906,217,0 +170759813953,218,0 +170759814001,218,0 +170759814049,219,0 +170759814097,220,0 +170759814145,220,0 +170759814192,221,0 +170759814242,222,0 +170759814290,221,0 +170759814338,222,0 +170759814387,222,0 +170759814435,222,0 +170759814483,216,0 +170759814531,215,0 +170759814578,215,0 +170759814626,215,0 +170759814674,215,0 +170759814722,215,0 +170759814771,215,0 +170759814819,216,0 +170759814867,216,0 +170759814915,216,0 +170759814962,217,0 +170759815010,218,0 +170759815060,219,0 +170759815109,219,0 +170759815159,220,0 +170759815206,221,0 +170759815254,221,0 +170759815302,221,0 +170759815352,221,0 +170759815401,221,0 +170759815449,222,0 +170759815497,216,0 +170759815545,215,0 +170759815593,215,0 +170759815642,215,0 +170759815692,215,0 +170759815740,215,0 +170759815789,215,0 +170759815837,215,0 +170759815885,216,0 +170759815934,216,0 +170759815982,217,0 +170759816030,217,0 +170759816078,218,0 +170759816127,219,0 +170759816175,220,0 +170759816223,220,0 +170759816271,221,0 +170759816319,220,0 +170759816367,220,0 +170759816416,222,0 +170759816466,216,0 +170759816514,215,0 +170759816561,215,0 +170759816609,215,0 +170759816657,215,0 +170759816705,215,0 +170759816753,215,0 +170759816801,216,0 +170759816848,215,0 +170759816898,216,0 +170759816946,216,0 +170759816994,216,0 +170759817041,217,0 +170759817089,218,0 +170759817137,219,0 +170759817185,220,0 +170759817233,221,0 +170759817281,220,0 +170759817330,221,0 +170759817380,222,0 +170759817427,222,0 +170759817475,216,0 +170759817525,215,0 +170759817574,215,0 +170759817622,215,0 +170759817670,215,0 +170759817718,215,0 +170759817766,216,0 +170759817814,216,0 +170759817862,216,0 +170759817909,217,0 +170759817959,217,0 +170759818008,218,0 +170759818056,219,0 +170759818104,220,0 +170759818152,222,0 +170759818200,221,0 +170759818248,222,0 +170759818295,222,0 +170759818343,222,0 +170759818391,222,0 +170759818439,222,0 +170759818487,216,0 +170759818536,215,0 +170759818584,215,0 +170759818632,215,0 +170759818680,215,0 +170759818728,215,0 +170759818776,216,0 +170759818825,216,0 +170759818875,216,0 +170759818924,217,0 +170759818972,219,0 +170759819022,218,0 +170759819071,220,0 +170759819121,220,0 +170759819169,221,0 +170759819217,221,0 +170759819265,221,0 +170759819314,221,0 +170759819362,221,0 +170759819410,222,0 +170759819459,216,0 +170759819507,215,0 +170759819555,215,0 +170759819603,215,0 +170759819651,215,0 +170759819699,215,0 +170759819749,215,0 +170759819797,215,0 +170759819845,215,0 +170759819892,216,0 +170759819940,216,0 +170759819988,216,0 +170759820038,216,0 +170759820086,218,0 +170759820135,218,0 +170759820183,219,0 +170759820231,219,0 +170759820279,222,0 +170759820327,220,0 +170759820376,222,0 +170759820424,222,0 +170759820472,215,0 +170759820520,214,0 +170759820568,215,0 +170759820618,215,0 +170759820665,215,0 +170759820713,215,0 +170759820761,215,0 +170759820809,216,0 +170759820857,216,0 +170759820905,216,0 +170759820954,216,0 +170759821002,216,0 +170759821052,216,0 +170759821100,217,0 +170759821148,218,0 +170759821195,218,0 +170759821243,219,0 +170759821291,219,0 +170759821339,219,0 +170759821387,222,0 +170759821435,221,0 +170759821485,215,0 +170759821534,215,0 +170759821582,215,0 +170759821630,215,0 +170759821678,215,0 +170759821726,216,0 +170759821774,216,0 +170759821823,216,0 +170759821873,217,0 +170759821921,218,0 +170759821968,218,0 +170759822016,219,0 +170759822066,220,0 +170759822114,220,0 +170759822161,221,0 +170759822209,221,0 +170759822257,222,0 +170759822305,221,0 +170759822353,222,0 +170759822401,222,0 +170759822448,216,0 +170759822496,215,0 +170759822544,215,0 +170759822592,215,0 +170759822639,216,0 +170759822687,216,0 +170759822735,217,0 +170759822783,218,0 +170759822832,218,0 +170759822882,218,0 +170759822930,219,0 +170759822978,220,0 +170759823026,220,0 +170759823075,220,0 +170759823123,221,0 +170759823171,221,0 +170759823219,221,0 +170759823268,222,0 +170759823316,222,0 +170759823364,222,0 +170759823414,221,0 +170759823463,215,0 +170759823511,215,0 +170759823561,216,0 +170759823608,217,0 +170759823657,217,0 +170759823704,217,0 +170759823752,218,0 +170759823800,219,0 +170759823848,219,0 +170759823896,219,0 +170759823944,220,0 +170759823992,220,0 +170759824039,220,0 +170759824089,222,0 +170759824137,221,0 +170759824186,221,0 +170759824234,222,0 +170759824282,222,0 +170759824330,222,0 +170759824378,222,0 +170759824426,216,0 +170759824474,215,0 +170759824522,215,0 +170759824571,216,0 +170759824619,217,0 +170759824667,217,0 +170759824717,217,0 +170759824765,218,0 +170759824812,218,0 +170759824860,219,0 +170759824908,220,0 +170759824958,219,0 +170759825006,220,0 +170759825054,222,0 +170759825103,221,0 +170759825152,222,0 +170759825200,222,0 +170759825248,222,0 +170759825298,222,0 +170759825347,222,0 +170759825395,221,0 +170759825443,216,0 +170759825493,215,0 +170759825542,216,0 +170759825590,216,0 +170759825639,218,0 +170759825687,218,0 +170759825735,218,0 +170759825783,218,0 +170759825831,218,0 +170759825879,219,0 +170759825927,219,0 +170759825975,220,0 +170759826023,220,0 +170759826070,221,0 +170759826118,222,0 +170759826166,221,0 +170759826214,221,0 +170759826262,222,0 +170759826310,221,0 +170759826358,222,0 +170759826406,221,0 +170759826453,215,0 +170759826501,215,0 +170759826551,215,0 +170759826599,216,0 +170759826647,216,0 +170759826696,216,0 +170759826744,217,0 +170759826792,217,0 +170759826842,218,0 +170759826890,218,0 +170759826938,219,0 +170759826986,220,0 +170759827034,220,0 +170759827083,220,0 +170759827131,219,0 +170759827179,219,0 +170759827227,218,0 +170759827275,217,0 +170759827323,219,0 +170759827372,221,0 +170759827420,216,0 +170759827468,215,0 +170759827516,215,0 +170759827565,215,0 +170759827613,215,0 +170759827661,215,0 +170759827709,215,0 +170759827757,215,0 +170759827805,215,0 +170759827853,216,0 +170759827900,216,0 +170759827948,217,0 +170759827996,217,0 +170759828044,218,0 +170759828092,218,0 +170759828140,219,0 +170759828188,220,0 +170759828236,220,0 +170759828285,219,0 +170759828333,221,0 +170759828381,221,0 +170759828428,216,0 +170759828476,215,0 +170759828524,215,0 +170759828573,215,0 +170759828621,215,0 +170759828669,215,0 +170759828718,215,0 +170759828766,216,0 +170759828814,216,0 +170759828864,216,0 +170759828913,216,0 +170759828961,217,0 +170759829009,218,0 +170759829057,218,0 +170759829104,219,0 +170759829152,219,0 +170759829200,220,0 +170759829248,220,0 +170759829298,220,0 +170759829346,222,0 +170759829393,216,0 +170759829441,215,0 +170759829489,215,0 +170759829537,215,0 +170759829585,215,0 +170759829634,215,0 +170759829682,216,0 +170759829730,216,0 +170759829778,216,0 +170759829825,217,0 +170759829873,217,0 +170759829921,217,0 +170759829969,218,0 +170759830016,220,0 +170759830064,219,0 +170759830112,220,0 +170759830160,221,0 +170759830210,221,0 +170759830259,221,0 +170759830309,221,0 +170759830358,222,0 +170759830406,216,0 +170759830454,215,0 +170759830504,215,0 +170759830553,215,0 +170759830603,215,0 +170759830651,215,0 +170759830700,215,0 +170759830750,216,0 +170759830798,216,0 +170759830845,216,0 +170759830895,217,0 +170759830943,217,0 +170759830991,219,0 +170759831038,219,0 +170759831086,221,0 +170759831134,220,0 +170759831184,221,0 +170759831233,221,0 +170759831281,221,0 +170759831329,222,0 +170759831377,221,0 +170759831426,215,0 +170759831474,215,0 +170759831524,215,0 +170759831572,215,0 +170759831620,215,0 +170759831668,216,0 +170759831715,216,0 +170759831763,217,0 +170759831811,217,0 +170759831859,218,0 +170759831907,218,0 +170759831955,219,0 +170759832003,219,0 +170759832050,220,0 +170759832098,220,0 +170759832146,221,0 +170759832194,222,0 +170759832242,221,0 +170759832290,221,0 +170759832338,222,0 +170759832385,222,0 +170759832433,215,0 +170759832481,215,0 +170759832529,215,0 +170759832576,215,0 +170759832624,215,0 +170759832674,216,0 +170759832721,216,0 +170759832769,216,0 +170759832817,217,0 +170759832865,217,0 +170759832913,218,0 +170759832961,218,0 +170759833008,219,0 +170759833058,220,0 +170759833106,220,0 +170759833154,220,0 +170759833202,221,0 +170759833249,221,0 +170759833297,221,0 +170759833345,222,0 +170759833395,216,0 +170759833443,215,0 +170759833491,215,0 +170759833538,215,0 +170759833586,215,0 +170759833634,215,0 +170759833682,215,0 +170759833730,216,0 +170759833778,216,0 +170759833825,216,0 +170759833873,216,0 +170759833921,217,0 +170759833969,218,0 +170759834017,219,0 +170759834066,219,0 +170759834114,220,0 +170759834162,221,0 +170759834212,220,0 +170759834259,220,0 +170759834307,222,0 +170759834357,222,0 +170759834406,215,0 +170759834454,215,0 +170759834504,215,0 +170759834552,215,0 +170759834599,215,0 +170759834647,216,0 +170759834695,216,0 +170759834745,216,0 +170759834793,216,0 +170759834841,217,0 +170759834889,218,0 +170759834938,218,0 +170759834987,219,0 +170759835037,219,0 +170759835086,220,0 +170759835134,220,0 +170759835182,221,0 +170759835230,221,0 +170759835278,221,0 +170759835326,221,0 +170759835376,216,0 +170759835423,215,0 +170759835471,215,0 +170759835519,215,0 +170759835567,215,0 +170759835615,216,0 +170759835665,215,0 +170759835712,216,0 +170759835760,216,0 +170759835808,216,0 +170759835856,217,0 +170759835904,218,0 +170759835952,218,0 +170759836000,219,0 +170759836047,219,0 +170759836095,218,0 +170759836145,221,0 +170759836192,219,0 +170759836240,219,0 +170759836290,221,0 +170759836338,222,0 +170759836386,216,0 +170759836434,215,0 +170759836481,215,0 +170759836529,215,0 +170759836577,215,0 +170759836627,215,0 +170759836675,215,0 +170759836724,215,0 +170759836772,215,0 +170759836820,216,0 +170759836867,216,0 +170759836915,216,0 +170759836963,217,0 +170759837011,218,0 +170759837059,218,0 +170759837107,219,0 +170759837155,219,0 +170759837203,219,0 +170759837251,220,0 +170759837299,222,0 +170759837347,221,0 +170759837394,215,0 +170759837444,214,0 +170759837492,214,0 +170759837540,215,0 +170759837587,214,0 +170759837635,214,0 +170759837683,214,0 +170759837731,215,0 +170759837779,215,0 +170759837826,215,0 +170759837874,215,0 +170759837922,215,0 +170759837970,215,0 +170759838018,216,0 +170759838067,216,0 +170759838115,217,0 +170759838163,217,0 +170759838212,218,0 +170759838260,219,0 +170759838309,221,0 +170759838357,216,0 +170759838405,215,0 +170759838453,215,0 +170759838501,215,0 +170759838548,215,0 +170759838596,215,0 +170759838644,215,0 +170759838694,215,0 +170759838742,216,0 +170759838789,216,0 +170759838837,216,0 +170759838885,217,0 +170759838933,218,0 +170759838981,218,0 +170759839029,219,0 +170759839077,219,0 +170759839125,219,0 +170759839172,220,0 +170759839220,220,0 +170759839268,222,0 +170759839316,222,0 +170759839366,216,0 +170759839415,215,0 +170759839463,215,0 +170759839511,215,0 +170759839559,215,0 +170759839607,215,0 +170759839655,216,0 +170759839703,216,0 +170759839751,216,0 +170759839798,217,0 +170759839846,217,0 +170759839894,218,0 +170759839942,219,0 +170759839992,220,0 +170759840040,220,0 +170759840088,222,0 +170759840135,221,0 +170759840183,221,0 +170759840231,222,0 +170759840281,222,0 +170759840329,222,0 +170759840377,216,0 +170759840425,215,0 +170759840473,215,0 +170759840522,215,0 +170759840572,215,0 +170759840621,216,0 +170759840669,215,0 +170759840719,216,0 +170759840766,217,0 +170759840814,217,0 +170759840862,217,0 +170759840912,218,0 +170759840961,219,0 +170759841009,219,0 +170759841058,220,0 +170759841106,221,0 +170759841156,221,0 +170759841204,221,0 +170759841252,221,0 +170759841301,222,0 +170759841349,216,0 +170759841397,215,0 +170759841445,215,0 +170759841493,215,0 +170759841540,215,0 +170759841588,216,0 +170759841636,216,0 +170759841684,216,0 +170759841732,216,0 +170759841781,216,0 +170759841829,216,0 +170759841877,217,0 +170759841925,218,0 +170759841973,218,0 +170759842022,219,0 +170759842070,219,0 +170759842120,220,0 +170759842168,221,0 +170759842216,221,0 +170759842265,221,0 +170759842313,222,0 +170759842361,216,0 +170759842410,215,0 +170759842458,215,0 +170759842508,215,0 +170759842557,215,0 +170759842607,215,0 +170759842654,215,0 +170759842704,215,0 +170759842752,216,0 +170759842800,216,0 +170759842847,216,0 +170759842895,216,0 +170759842943,217,0 +170759842991,219,0 +170759843040,219,0 +170759843088,219,0 +170759843136,219,0 +170759843186,220,0 +170759843235,220,0 +170759843283,222,0 +170759843332,216,0 +170759843380,215,0 +170759843428,214,0 +170759843476,214,0 +170759843524,214,0 +170759843573,214,0 +170759843621,214,0 +170759843669,214,0 +170759843717,215,0 +170759843765,215,0 +170759843812,215,0 +170759843860,215,0 +170759843908,215,0 +170759843956,216,0 +170759844004,216,0 +170759844051,216,0 +170759844099,217,0 +170759844147,218,0 +170759844195,218,0 +170759844243,221,0 +170759844290,222,0 +170759844338,216,0 +170759844386,215,0 +170759844436,215,0 +170759844484,215,0 +170759844531,215,0 +170759844581,215,0 +170759844629,216,0 +170759844677,216,0 +170759844725,216,0 +170759844773,217,0 +170759844821,217,0 +170759844868,218,0 +170759844916,219,0 +170759844964,219,0 +170759845012,219,0 +170759845060,221,0 +170759845108,220,0 +170759845156,220,0 +170759845204,220,0 +170759845252,221,0 +170759845300,221,0 +170759845349,215,0 +170759845398,215,0 +170759845446,215,0 +170759845496,216,0 +170759845544,216,0 +170759845592,217,0 +170759845639,218,0 +170759845687,216,0 +170759845735,218,0 +170759845783,218,0 +170759845832,219,0 +170759845880,220,0 +170759845928,220,0 +170759845976,221,0 +170759846026,221,0 +170759846073,222,0 +170759846123,222,0 +170759846172,222,0 +170759846220,222,0 +170759846268,222,0 +170759846316,216,0 +170759846364,215,0 +170759846413,215,0 +170759846461,216,0 +170759846509,216,0 +170759846557,217,0 +170759846605,217,0 +170759846653,217,0 +170759846701,218,0 +170759846749,219,0 +170759846796,219,0 +170759846846,220,0 +170759846894,221,0 +170759846942,221,0 +170759846990,221,0 +170759847038,222,0 +170759847087,223,0 +170759847135,222,0 +170759847185,222,0 +170759847232,222,0 +170759847280,221,0 +170759847330,216,0 +170759847378,215,0 +170759847426,215,0 +170759847474,216,0 +170759847522,216,0 +170759847571,217,0 +170759847619,218,0 +170759847668,218,0 +170759847716,219,0 +170759847764,218,0 +170759847812,220,0 +170759847860,220,0 +170759847908,221,0 +170759847956,221,0 +170759848004,221,0 +170759848051,221,0 +170759848099,222,0 +170759848147,222,0 +170759848195,222,0 +170759848245,222,0 +170759848294,221,0 +170759848344,215,0 +170759848393,215,0 +170759848441,216,0 +170759848489,216,0 +170759848538,217,0 +170759848586,217,0 +170759848634,218,0 +170759848682,219,0 +170759848730,219,0 +170759848778,220,0 +170759848826,220,0 +170759848875,221,0 +170759848925,221,0 +170759848973,222,0 +170759849021,222,0 +170759849070,223,0 +170759849120,222,0 +170759849169,222,0 +170759849218,222,0 +170759849266,221,0 +170759849314,216,0 +170759849364,215,0 +170759849413,215,0 +170759849461,215,0 +170759849509,216,0 +170759849557,216,0 +170759849605,217,0 +170759849654,217,0 +170759849704,218,0 +170759849752,219,0 +170759849800,219,0 +170759849848,220,0 +170759849897,219,0 +170759849945,221,0 +170759849994,220,0 +170759850042,221,0 +170759850092,221,0 +170759850140,221,0 +170759850188,221,0 +170759850236,222,0 +170759850285,216,0 +170759850333,214,0 +170759850382,214,0 +170759850430,215,0 +170759850480,215,0 +170759850529,215,0 +170759850579,215,0 +170759850627,215,0 +170759850674,215,0 +170759850722,216,0 +170759850772,216,0 +170759850820,217,0 +170759850868,218,0 +170759850916,218,0 +170759850965,219,0 +170759851015,220,0 +170759851062,220,0 +170759851112,220,0 +170759851160,221,0 +170759851209,221,0 +170759851259,221,0 +170759851308,215,0 +170759851356,215,0 +170759851404,215,0 +170759851452,215,0 +170759851500,215,0 +170759851549,215,0 +170759851597,215,0 +170759851645,216,0 +170759851694,216,0 +170759851744,216,0 +170759851792,218,0 +170759851840,218,0 +170759851888,219,0 +170759851935,219,0 +170759851983,219,0 +170759852031,220,0 +170759852079,220,0 +170759852129,222,0 +170759852177,221,0 +170759852226,222,0 +170759852274,218,0 +170759852324,215,0 +170759852372,216,0 +170759852421,216,0 +170759852471,216,0 +170759852519,216,0 +170759852566,218,0 +170759852614,217,0 +170759852662,218,0 +170759852710,218,0 +170759852758,219,0 +170759852806,219,0 +170759852856,220,0 +170759852905,221,0 +170759852953,221,0 +170759853002,221,0 +170759853050,221,0 +170759853098,221,0 +170759853146,222,0 +170759853196,221,0 +170759853245,222,0 +170759853295,216,0 +170759853344,215,0 +170759853392,215,0 +170759853440,215,0 +170759853488,215,0 +170759853538,217,0 +170759853586,216,0 +170759853635,217,0 +170759853685,217,0 +170759853734,217,0 +170759853782,218,0 +170759853830,218,0 +170759853879,219,0 +170759853927,220,0 +170759853975,219,0 +170759854024,220,0 +170759854072,220,0 +170759854120,220,0 +170759854168,220,0 +170759854218,221,0 +170759854266,216,0 +170759854315,214,0 +170759854365,214,0 +170759854413,214,0 +170759854462,214,0 +170759854510,214,0 +170759854558,214,0 +170759854606,214,0 +170759854655,215,0 +170759854703,215,0 +170759854751,215,0 +170759854799,215,0 +170759854848,215,0 +170759854896,215,0 +170759854944,216,0 +170759854992,216,0 +170759855040,217,0 +170759855088,217,0 +170759855136,218,0 +170759855184,221,0 +170759855232,222,0 +170759855281,216,0 +170759855329,215,0 +170759855379,215,0 +170759855428,214,0 +170759855476,215,0 +170759855526,215,0 +170759855575,215,0 +170759855623,215,0 +170759855671,215,0 +170759855720,215,0 +170759855768,216,0 +170759855816,216,0 +170759855866,217,0 +170759855913,217,0 +170759855963,218,0 +170759856012,219,0 +170759856060,219,0 +170759856108,219,0 +170759856156,219,0 +170759856206,221,0 +170759856254,219,0 +170759856301,215,0 +170759856349,215,0 +170759856397,215,0 +170759856445,215,0 +170759856493,215,0 +170759856541,215,0 +170759856589,216,0 +170759856638,216,0 +170759856686,216,0 +170759856734,216,0 +170759856784,217,0 +170759856833,217,0 +170759856883,218,0 +170759856931,218,0 +170759856979,219,0 +170759857026,219,0 +170759857074,220,0 +170759857124,220,0 +170759857172,221,0 +170759857220,222,0 +170759857269,216,0 +170759857317,215,0 +170759857365,215,0 +170759857413,215,0 +170759857461,215,0 +170759857510,216,0 +170759857560,216,0 +170759857609,216,0 +170759857657,216,0 +170759857707,220,0 +170759857754,218,0 +170759857804,218,0 +170759857852,219,0 +170759857900,221,0 +170759857949,220,0 +170759857997,221,0 +170759858045,222,0 +170759858094,221,0 +170759858144,221,0 +170759858193,222,0 +170759858243,216,0 +170759858292,215,0 +170759858340,215,0 +170759858388,215,0 +170759858438,215,0 +170759858486,215,0 +170759858535,215,0 +170759858583,216,0 +170759858631,216,0 +170759858680,216,0 +170759858728,216,0 +170759858776,218,0 +170759858824,219,0 +170759858872,219,0 +170759858920,220,0 +170759858968,220,0 +170759859018,222,0 +170759859065,221,0 +170759859113,221,0 +170759859163,221,0 +170759859211,221,0 +170759859259,216,0 +170759859306,215,0 +170759859354,215,0 +170759859402,214,0 +170759859450,215,0 +170759859500,215,0 +170759859548,215,0 +170759859597,215,0 +170759859645,215,0 +170759859693,215,0 +170759859741,216,0 +170759859789,216,0 +170759859837,217,0 +170759859885,217,0 +170759859933,218,0 +170759859981,219,0 +170759860029,218,0 +170759860077,218,0 +170759860124,218,0 +170759860174,221,0 +170759860224,222,0 +170759860271,215,0 +170759860319,214,0 +170759860369,214,0 +170759860417,215,0 +170759860465,215,0 +170759860513,215,0 +170759860562,215,0 +170759860610,215,0 +170759860660,215,0 +170759860708,215,0 +170759860755,216,0 +170759860805,216,0 +170759860853,216,0 +170759860901,217,0 +170759860949,218,0 +170759860997,218,0 +170759861045,218,0 +170759861093,219,0 +170759861142,221,0 +170759861190,222,0 +170759861238,216,0 +170759861287,215,0 +170759861336,215,0 +170759861384,215,0 +170759861432,215,0 +170759861480,215,0 +170759861528,215,0 +170759861576,216,0 +170759861624,216,0 +170759861673,216,0 +170759861721,217,0 +170759861769,217,0 +170759861819,218,0 +170759861867,219,0 +170759861915,219,0 +170759861964,219,0 +170759862013,220,0 +170759862063,221,0 +170759862111,222,0 +170759862160,222,0 +170759862208,222,0 +170759862258,215,0 +170759862306,215,0 +170759862355,215,0 +170759862403,215,0 +170759862453,215,0 +170759862502,216,0 +170759862550,216,0 +170759862598,216,0 +170759862646,216,0 +170759862694,216,0 +170759862742,217,0 +170759862790,218,0 +170759862838,218,0 +170759862886,219,0 +170759862935,219,0 +170759862983,220,0 +170759863031,220,0 +170759863079,221,0 +170759863129,221,0 +170759863178,222,0 +170759863226,216,0 +170759863274,215,0 +170759863322,215,0 +170759863370,215,0 +170759863418,215,0 +170759863467,215,0 +170759863517,215,0 +170759863566,216,0 +170759863614,216,0 +170759863664,216,0 +170759863713,217,0 +170759863763,218,0 +170759863812,218,0 +170759863861,219,0 +170759863909,219,0 +170759863959,220,0 +170759864008,220,0 +170759864056,222,0 +170759864104,222,0 +170759864154,222,0 +170759864202,221,0 +170759864251,215,0 +170759864300,215,0 +170759864348,215,0 +170759864396,215,0 +170759864443,215,0 +170759864491,216,0 +170759864539,216,0 +170759864587,216,0 +170759864635,216,0 +170759864683,217,0 +170759864731,218,0 +170759864780,219,0 +170759864828,219,0 +170759864876,219,0 +170759864926,220,0 +170759864974,221,0 +170759865022,221,0 +170759865071,221,0 +170759865121,222,0 +170759865170,222,0 +170759865219,216,0 +170759865267,215,0 +170759865315,215,0 +170759865365,215,0 +170759865413,215,0 +170759865461,215,0 +170759865510,215,0 +170759865558,216,0 +170759865606,216,0 +170759865656,217,0 +170759865704,218,0 +170759865752,218,0 +170759865799,219,0 +170759865847,219,0 +170759865897,221,0 +170759865946,221,0 +170759865994,221,0 +170759866044,221,0 +170759866092,222,0 +170759866141,222,0 +170759866189,221,0 +170759866238,215,0 +170759866286,215,0 +170759866334,215,0 +170759866382,215,0 +170759866430,215,0 +170759866478,216,0 +170759866527,216,0 +170759866575,216,0 +170759866625,216,0 +170759866673,216,0 +170759866722,217,0 +170759866770,218,0 +170759866820,218,0 +170759866869,219,0 +170759866917,219,0 +170759866965,220,0 +170759867013,220,0 +170759867063,220,0 +170759867112,221,0 +170759867162,221,0 +170759867210,216,0 +170759867258,215,0 +170759867305,215,0 +170759867355,215,0 +170759867403,216,0 +170759867451,217,0 +170759867499,217,0 +170759867547,217,0 +170759867595,217,0 +170759867644,217,0 +170759867692,219,0 +170759867741,219,0 +170759867791,219,0 +170759867840,220,0 +170759867890,221,0 +170759867938,220,0 +170759867986,220,0 +170759868034,222,0 +170759868083,221,0 +170759868131,222,0 +170759868180,222,0 +170759868228,215,0 +170759868276,215,0 +170759868324,215,0 +170759868374,215,0 +170759868422,216,0 +170759868470,216,0 +170759868518,216,0 +170759868565,217,0 +170759868615,217,0 +170759868664,218,0 +170759868714,218,0 +170759868762,219,0 +170759868810,220,0 +170759868858,220,0 +170759868906,221,0 +170759868954,221,0 +170759869002,222,0 +170759869049,222,0 +170759869099,222,0 +170759869149,222,0 +170759869196,216,0 +170759869244,215,0 +170759869292,215,0 +170759869340,215,0 +170759869388,216,0 +170759869438,216,0 +170759869486,216,0 +170759869534,217,0 +170759869582,217,0 +170759869631,218,0 +170759869681,219,0 +170759869728,219,0 +170759869776,220,0 +170759869824,220,0 +170759869872,221,0 +170759869922,221,0 +170759869971,221,0 +170759870019,221,0 +170759870069,221,0 +170759870116,222,0 +170759870164,221,0 +170759870212,216,0 +170759870260,215,0 +170759870308,216,0 +170759870357,216,0 +170759870407,216,0 +170759870455,217,0 +170759870503,217,0 +170759870552,217,0 +170759870600,218,0 +170759870648,219,0 +170759870696,219,0 +170759870745,219,0 +170759870793,219,0 +170759870841,220,0 +170759870889,220,0 +170759870937,221,0 +170759870987,222,0 +170759871034,221,0 +170759871082,221,0 +170759871130,222,0 +170759871178,216,0 +170759871227,215,0 +170759871275,215,0 +170759871325,215,0 +170759871374,216,0 +170759871422,216,0 +170759871471,217,0 +170759871519,216,0 +170759871567,217,0 +170759871615,218,0 +170759871663,218,0 +170759871711,219,0 +170759871759,220,0 +170759871807,220,0 +170759871855,220,0 +170759871903,221,0 +170759871950,221,0 +170759871998,220,0 +170759872046,220,0 +170759872094,221,0 +170759872142,221,0 +170759872190,216,0 +170759872238,215,0 +170759872285,215,0 +170759872333,215,0 +170759872381,215,0 +170759872429,215,0 +170759872477,215,0 +170759872524,216,0 +170759872572,216,0 +170759872620,217,0 +170759872668,217,0 +170759872716,218,0 +170759872764,219,0 +170759872812,219,0 +170759872859,219,0 +170759872909,222,0 +170759872957,221,0 +170759873005,221,0 +170759873053,221,0 +170759873100,222,0 +170759873148,221,0 +170759873196,215,0 +170759873244,215,0 +170759873292,215,0 +170759873340,215,0 +170759873388,215,0 +170759873435,215,0 +170759873483,215,0 +170759873531,216,0 +170759873579,217,0 +170759873627,217,0 +170759873675,218,0 +170759873723,218,0 +170759873771,220,0 +170759873819,220,0 +170759873868,220,0 +170759873918,221,0 +170759873967,221,0 +170759874015,221,0 +170759874063,221,0 +170759874113,216,0 +170759874161,215,0 +170759874210,215,0 +170759874258,215,0 +170759874306,215,0 +170759874354,216,0 +170759874402,216,0 +170759874449,217,0 +170759874497,217,0 +170759874545,218,0 +170759874593,218,0 +170759874641,219,0 +170759874689,221,0 +170759874736,219,0 +170759874784,220,0 +170759874832,220,0 +170759874880,221,0 +170759874928,221,0 +170759874976,221,0 +170759875023,217,0 +170759875071,215,0 +170759875119,215,0 +170759875167,215,0 +170759875215,215,0 +170759875262,215,0 +170759875312,216,0 +170759875360,216,0 +170759875408,217,0 +170759875456,217,0 +170759875503,218,0 +170759875551,219,0 +170759875599,219,0 +170759875647,219,0 +170759875695,220,0 +170759875742,220,0 +170759875790,220,0 +170759875838,221,0 +170759875886,221,0 +170759875934,222,0 +170759875982,216,0 +170759876030,215,0 +170759876077,215,0 +170759876125,215,0 +170759876173,215,0 +170759876221,216,0 +170759876269,217,0 +170759876317,217,0 +170759876366,218,0 +170759876414,218,0 +170759876464,219,0 +170759876512,220,0 +170759876561,220,0 +170759876611,220,0 +170759876660,220,0 +170759876708,221,0 +170759876756,221,0 +170759876804,221,0 +170759876852,221,0 +170759876901,216,0 +170759876950,215,0 +170759876998,215,0 +170759877046,215,0 +170759877094,215,0 +170759877142,215,0 +170759877190,215,0 +170759877238,216,0 +170759877285,217,0 +170759877333,217,0 +170759877381,218,0 +170759877430,218,0 +170759877478,219,0 +170759877526,219,0 +170759877576,220,0 +170759877625,221,0 +170759877673,221,0 +170759877721,221,0 +170759877770,222,0 +170759877818,218,0 +170759877866,215,0 +170759877914,215,0 +170759877964,215,0 +170759878012,215,0 +170759878061,215,0 +170759878111,216,0 +170759878160,216,0 +170759878210,216,0 +170759878257,216,0 +170759878305,217,0 +170759878355,218,0 +170759878403,218,0 +170759878452,220,0 +170759878500,219,0 +170759878548,219,0 +170759878596,220,0 +170759878644,221,0 +170759878692,221,0 +170759878740,221,0 +170759878788,215,0 +170759878837,215,0 +170759878885,215,0 +170759878933,215,0 +170759878981,215,0 +170759879030,216,0 +170759879078,217,0 +170759879126,217,0 +170759879176,218,0 +170759879225,218,0 +170759879275,219,0 +170759879322,219,0 +170759879370,220,0 +170759879418,222,0 +170759879466,220,0 +170759879514,222,0 +170759879562,221,0 +170759879610,221,0 +170759879659,221,0 +170759879707,216,0 +170759879755,215,0 +170759879803,215,0 +170759879851,215,0 +170759879899,216,0 +170759879947,216,0 +170759879995,217,0 diff --git a/laser_value/0211-07.csv b/laser_value/0211-07.csv new file mode 100644 index 0000000..fcfc968 --- /dev/null +++ b/laser_value/0211-07.csv @@ -0,0 +1,7459 @@ +timestamp,laser_value,event +170759880043,218,0 +170759880091,217,0 +170759880141,219,0 +170759880189,219,0 +170759880237,219,0 +170759880285,219,0 +170759880334,220,0 +170759880384,220,0 +170759880431,221,0 +170759880479,222,0 +170759880527,221,0 +170759880575,222,0 +170759880623,216,0 +170759880671,215,0 +170759880719,215,0 +170759880769,215,0 +170759880817,216,0 +170759880864,216,0 +170759880912,216,0 +170759880960,217,0 +170759881010,218,0 +170759881057,218,0 +170759881105,219,0 +170759881153,219,0 +170759881201,220,0 +170759881249,221,0 +170759881297,220,0 +170759881345,221,0 +170759881393,221,0 +170759881441,221,0 +170759881490,222,0 +170759881540,221,0 +170759881589,215,0 +170759881639,215,0 +170759881687,215,0 +170759881734,215,0 +170759881782,215,0 +170759881830,216,0 +170759881880,215,0 +170759881929,216,0 +170759881977,217,0 +170759882027,217,0 +170759882076,218,0 +170759882124,218,0 +170759882172,219,0 +170759882220,220,0 +170759882268,220,0 +170759882317,221,0 +170759882365,221,0 +170759882414,221,0 +170759882464,221,0 +170759882512,215,0 +170759882561,215,0 +170759882609,215,0 +170759882657,215,0 +170759882705,215,0 +170759882753,215,0 +170759882801,216,0 +170759882849,216,0 +170759882897,216,0 +170759882945,216,0 +170759882993,217,0 +170759883041,218,0 +170759883088,218,0 +170759883136,219,0 +170759883184,220,0 +170759883232,220,0 +170759883282,220,0 +170759883330,221,0 +170759883378,222,0 +170759883425,216,0 +170759883473,215,0 +170759883521,215,0 +170759883571,215,0 +170759883619,215,0 +170759883667,215,0 +170759883715,216,0 +170759883763,216,0 +170759883811,217,0 +170759883858,217,0 +170759883906,218,0 +170759883956,219,0 +170759884005,220,0 +170759884055,220,0 +170759884103,220,0 +170759884152,221,0 +170759884200,221,0 +170759884248,221,0 +170759884296,222,0 +170759884346,216,0 +170759884395,215,0 +170759884443,215,0 +170759884491,215,0 +170759884540,215,0 +170759884590,215,0 +170759884638,216,0 +170759884685,215,0 +170759884733,216,0 +170759884781,217,0 +170759884831,217,0 +170759884879,218,0 +170759884926,219,0 +170759884974,220,0 +170759885022,220,0 +170759885070,220,0 +170759885118,221,0 +170759885166,221,0 +170759885214,222,0 +170759885263,216,0 +170759885311,215,0 +170759885359,215,0 +170759885407,215,0 +170759885455,215,0 +170759885503,215,0 +170759885551,216,0 +170759885600,216,0 +170759885648,216,0 +170759885696,216,0 +170759885744,217,0 +170759885792,217,0 +170759885839,218,0 +170759885887,218,0 +170759885937,219,0 +170759885984,219,0 +170759886032,219,0 +170759886080,218,0 +170759886128,222,0 +170759886176,221,0 +170759886224,215,0 +170759886271,214,0 +170759886319,214,0 +170759886367,215,0 +170759886415,215,0 +170759886463,215,0 +170759886511,215,0 +170759886559,215,0 +170759886606,216,0 +170759886654,216,0 +170759886704,217,0 +170759886751,218,0 +170759886799,219,0 +170759886847,219,0 +170759886895,219,0 +170759886944,220,0 +170759886992,220,0 +170759887040,220,0 +170759887088,221,0 +170759887136,220,0 +170759887183,215,0 +170759887231,215,0 +170759887279,215,0 +170759887327,215,0 +170759887374,215,0 +170759887424,215,0 +170759887472,215,0 +170759887520,215,0 +170759887569,216,0 +170759887619,216,0 +170759887667,217,0 +170759887715,217,0 +170759887763,218,0 +170759887811,219,0 +170759887860,219,0 +170759887908,220,0 +170759887958,220,0 +170759888006,221,0 +170759888053,221,0 +170759888101,215,0 +170759888151,215,0 +170759888199,215,0 +170759888247,215,0 +170759888294,216,0 +170759888342,216,0 +170759888392,217,0 +170759888440,217,0 +170759888488,218,0 +170759888537,219,0 +170759888585,219,0 +170759888633,220,0 +170759888682,220,0 +170759888730,220,0 +170759888780,220,0 +170759888828,221,0 +170759888876,221,0 +170759888925,222,0 +170759888973,222,0 +170759889021,215,0 +170759889069,216,0 +170759889117,216,0 +170759889165,216,0 +170759889214,217,0 +170759889262,217,0 +170759889311,218,0 +170759889361,219,0 +170759889411,220,0 +170759889458,220,0 +170759889506,220,0 +170759889554,222,0 +170759889602,222,0 +170759889652,222,0 +170759889700,222,0 +170759889747,222,0 +170759889795,221,0 +170759889843,222,0 +170759889891,221,0 +170759889939,216,0 +170759889987,215,0 +170759890035,216,0 +170759890083,216,0 +170759890132,217,0 +170759890180,217,0 +170759890229,218,0 +170759890277,218,0 +170759890325,218,0 +170759890373,219,0 +170759890421,219,0 +170759890469,220,0 +170759890517,220,0 +170759890565,220,0 +170759890613,223,0 +170759890662,222,0 +170759890712,221,0 +170759890761,222,0 +170759890809,221,0 +170759890857,217,0 +170759890905,215,0 +170759890953,216,0 +170759891001,216,0 +170759891050,217,0 +170759891099,217,0 +170759891149,217,0 +170759891198,218,0 +170759891246,219,0 +170759891296,219,0 +170759891344,220,0 +170759891392,220,0 +170759891440,221,0 +170759891488,221,0 +170759891536,221,0 +170759891585,221,0 +170759891633,222,0 +170759891683,222,0 +170759891730,222,0 +170759891780,217,0 +170759891829,215,0 +170759891879,215,0 +170759891927,216,0 +170759891975,216,0 +170759892023,217,0 +170759892071,218,0 +170759892119,218,0 +170759892168,218,0 +170759892216,219,0 +170759892265,219,0 +170759892313,220,0 +170759892361,221,0 +170759892409,222,0 +170759892457,222,0 +170759892506,223,0 +170759892554,222,0 +170759892604,222,0 +170759892652,222,0 +170759892701,222,0 +170759892751,215,0 +170759892800,215,0 +170759892850,215,0 +170759892898,216,0 +170759892946,216,0 +170759892994,216,0 +170759893042,217,0 +170759893091,217,0 +170759893139,218,0 +170759893188,218,0 +170759893236,218,0 +170759893284,219,0 +170759893332,220,0 +170759893382,220,0 +170759893430,222,0 +170759893478,221,0 +170759893527,221,0 +170759893575,222,0 +170759893623,222,0 +170759893672,215,0 +170759893720,215,0 +170759893768,215,0 +170759893816,215,0 +170759893866,215,0 +170759893915,215,0 +170759893965,216,0 +170759894013,216,0 +170759894061,216,0 +170759894110,216,0 +170759894160,217,0 +170759894208,218,0 +170759894256,218,0 +170759894303,219,0 +170759894353,220,0 +170759894402,220,0 +170759894450,221,0 +170759894498,221,0 +170759894548,222,0 +170759894596,216,0 +170759894643,215,0 +170759894693,215,0 +170759894741,215,0 +170759894789,216,0 +170759894838,216,0 +170759894888,217,0 +170759894935,217,0 +170759894983,218,0 +170759895031,218,0 +170759895079,219,0 +170759895127,220,0 +170759895175,220,0 +170759895224,221,0 +170759895272,222,0 +170759895320,221,0 +170759895368,221,0 +170759895415,221,0 +170759895463,225,0 +170759895511,216,0 +170759895559,215,0 +170759895606,216,0 +170759895654,216,0 +170759895702,217,0 +170759895750,217,0 +170759895798,218,0 +170759895845,219,0 +170759895893,219,0 +170759895941,219,0 +170759895989,220,0 +170759896036,221,0 +170759896084,221,0 +170759896132,221,0 +170759896180,222,0 +170759896228,222,0 +170759896276,221,0 +170759896324,222,0 +170759896371,222,0 +170759896419,222,0 +170759896467,216,0 +170759896515,215,0 +170759896563,215,0 +170759896610,216,0 +170759896658,217,0 +170759896706,217,0 +170759896754,218,0 +170759896802,218,0 +170759896850,219,0 +170759896897,219,0 +170759896945,219,0 +170759896993,219,0 +170759897041,220,0 +170759897089,220,0 +170759897137,221,0 +170759897185,221,0 +170759897233,221,0 +170759897281,221,0 +170759897329,222,0 +170759897376,216,0 +170759897424,215,0 +170759897472,215,0 +170759897520,215,0 +170759897567,215,0 +170759897615,215,0 +170759897663,215,0 +170759897711,216,0 +170759897759,216,0 +170759897806,216,0 +170759897854,217,0 +170759897902,218,0 +170759897950,219,0 +170759897998,219,0 +170759898047,220,0 +170759898095,220,0 +170759898143,220,0 +170759898191,220,0 +170759898239,221,0 +170759898286,221,0 +170759898336,215,0 +170759898384,215,0 +170759898432,215,0 +170759898480,215,0 +170759898527,215,0 +170759898575,216,0 +170759898623,216,0 +170759898673,216,0 +170759898721,217,0 +170759898769,217,0 +170759898818,218,0 +170759898866,219,0 +170759898914,220,0 +170759898962,220,0 +170759899010,221,0 +170759899057,221,0 +170759899105,221,0 +170759899153,221,0 +170759899201,221,0 +170759899249,216,0 +170759899297,215,0 +170759899345,215,0 +170759899392,215,0 +170759899440,215,0 +170759899490,216,0 +170759899539,215,0 +170759899589,216,0 +170759899636,216,0 +170759899686,217,0 +170759899734,217,0 +170759899782,218,0 +170759899830,219,0 +170759899878,219,0 +170759899926,219,0 +170759899974,220,0 +170759900022,220,0 +170759900071,220,0 +170759900119,222,0 +170759900167,217,0 +170759900215,215,0 +170759900263,215,0 +170759900311,216,0 +170759900359,216,0 +170759900407,217,0 +170759900456,218,0 +170759900504,218,0 +170759900552,218,0 +170759900600,219,0 +170759900648,219,0 +170759900696,220,0 +170759900744,220,0 +170759900793,221,0 +170759900843,221,0 +170759900891,221,0 +170759900938,220,0 +170759900986,221,0 +170759901036,222,0 +170759901084,220,0 +170759901131,215,0 +170759901179,215,0 +170759901227,215,0 +170759901275,216,0 +170759901323,216,0 +170759901373,217,0 +170759901421,217,0 +170759901470,218,0 +170759901520,219,0 +170759901569,219,0 +170759901617,219,0 +170759901665,220,0 +170759901713,220,0 +170759901761,221,0 +170759901809,222,0 +170759901857,222,0 +170759901904,222,0 +170759901953,222,0 +170759902002,221,0 +170759902050,215,0 +170759902100,215,0 +170759902148,215,0 +170759902197,216,0 +170759902247,216,0 +170759902296,216,0 +170759902345,217,0 +170759902393,217,0 +170759902441,218,0 +170759902491,219,0 +170759902540,220,0 +170759902588,220,0 +170759902638,220,0 +170759902687,220,0 +170759902735,221,0 +170759902785,221,0 +170759902833,222,0 +170759902881,222,0 +170759902928,221,0 +170759902976,216,0 +170759903026,215,0 +170759903074,215,0 +170759903122,215,0 +170759903169,215,0 +170759903217,215,0 +170759903265,215,0 +170759903313,215,0 +170759903361,216,0 +170759903409,216,0 +170759903457,217,0 +170759903506,218,0 +170759903554,219,0 +170759903602,219,0 +170759903651,219,0 +170759903699,220,0 +170759903747,220,0 +170759903797,220,0 +170759903845,222,0 +170759903894,216,0 +170759903942,215,0 +170759903990,215,0 +170759904039,215,0 +170759904087,215,0 +170759904135,215,0 +170759904183,216,0 +170759904231,216,0 +170759904279,216,0 +170759904327,217,0 +170759904375,217,0 +170759904423,218,0 +170759904471,220,0 +170759904520,219,0 +170759904568,220,0 +170759904616,220,0 +170759904665,221,0 +170759904713,221,0 +170759904763,221,0 +170759904810,220,0 +170759904858,215,0 +170759904906,215,0 +170759904956,215,0 +170759905004,215,0 +170759905051,216,0 +170759905099,216,0 +170759905147,216,0 +170759905195,217,0 +170759905243,217,0 +170759905292,218,0 +170759905340,221,0 +170759905388,219,0 +170759905436,220,0 +170759905484,220,0 +170759905532,221,0 +170759905579,220,0 +170759905627,221,0 +170759905675,221,0 +170759905723,222,0 +170759905771,216,0 +170759905818,215,0 +170759905866,216,0 +170759905914,217,0 +170759905962,217,0 +170759906012,218,0 +170759906060,219,0 +170759906109,218,0 +170759906159,218,0 +170759906206,219,0 +170759906256,220,0 +170759906305,220,0 +170759906353,220,0 +170759906401,220,0 +170759906449,221,0 +170759906499,221,0 +170759906548,222,0 +170759906596,222,0 +170759906644,222,0 +170759906692,217,0 +170759906741,216,0 +170759906789,216,0 +170759906837,217,0 +170759906887,218,0 +170759906935,217,0 +170759906983,218,0 +170759907032,219,0 +170759907080,219,0 +170759907128,220,0 +170759907176,220,0 +170759907225,221,0 +170759907273,221,0 +170759907321,221,0 +170759907369,222,0 +170759907417,221,0 +170759907465,222,0 +170759907513,222,0 +170759907561,222,0 +170759907609,221,0 +170759907657,216,0 +170759907705,216,0 +170759907753,217,0 +170759907800,217,0 +170759907848,218,0 +170759907896,219,0 +170759907944,219,0 +170759907992,219,0 +170759908040,220,0 +170759908088,220,0 +170759908136,221,0 +170759908183,221,0 +170759908231,222,0 +170759908281,222,0 +170759908329,223,0 +170759908377,223,0 +170759908425,222,0 +170759908473,222,0 +170759908522,222,0 +170759908572,217,0 +170759908620,217,0 +170759908668,217,0 +170759908715,218,0 +170759908765,219,0 +170759908814,219,0 +170759908862,219,0 +170759908912,220,0 +170759908960,220,0 +170759909009,221,0 +170759909057,221,0 +170759909106,222,0 +170759909156,222,0 +170759909204,222,0 +170759909252,223,0 +170759909300,223,0 +170759909349,222,0 +170759909397,222,0 +170759909446,222,0 +170759909494,216,0 +170759909544,215,0 +170759909592,215,0 +170759909639,216,0 +170759909687,216,0 +170759909735,217,0 +170759909783,217,0 +170759909831,217,0 +170759909880,218,0 +170759909928,219,0 +170759909976,219,0 +170759910024,220,0 +170759910072,221,0 +170759910120,221,0 +170759910167,222,0 +170759910215,222,0 +170759910263,220,0 +170759910311,222,0 +170759910359,222,0 +170759910407,221,0 +170759910454,215,0 +170759910502,215,0 +170759910550,215,0 +170759910598,215,0 +170759910646,215,0 +170759910695,216,0 +170759910743,216,0 +170759910791,216,0 +170759910839,217,0 +170759910887,218,0 +170759910935,218,0 +170759910983,219,0 +170759911031,219,0 +170759911080,220,0 +170759911130,220,0 +170759911178,220,0 +170759911225,220,0 +170759911275,221,0 +170759911323,221,0 +170759911371,215,0 +170759911419,215,0 +170759911468,215,0 +170759911518,215,0 +170759911567,215,0 +170759911615,215,0 +170759911664,215,0 +170759911712,215,0 +170759911760,216,0 +170759911808,216,0 +170759911856,216,0 +170759911904,217,0 +170759911952,218,0 +170759911999,218,0 +170759912047,219,0 +170759912095,219,0 +170759912143,219,0 +170759912191,222,0 +170759912241,222,0 +170759912288,216,0 +170759912336,215,0 +170759912384,215,0 +170759912432,215,0 +170759912480,215,0 +170759912530,215,0 +170759912578,216,0 +170759912625,216,0 +170759912673,216,0 +170759912721,217,0 +170759912771,217,0 +170759912819,218,0 +170759912868,219,0 +170759912916,219,0 +170759912965,220,0 +170759913013,220,0 +170759913061,221,0 +170759913109,221,0 +170759913157,222,0 +170759913205,221,0 +170759913253,215,0 +170759913301,215,0 +170759913350,215,0 +170759913398,215,0 +170759913448,215,0 +170759913496,216,0 +170759913544,216,0 +170759913591,216,0 +170759913639,216,0 +170759913687,217,0 +170759913735,219,0 +170759913785,219,0 +170759913834,219,0 +170759913882,220,0 +170759913930,220,0 +170759913978,221,0 +170759914026,221,0 +170759914073,222,0 +170759914121,222,0 +170759914169,216,0 +170759914219,215,0 +170759914266,215,0 +170759914314,215,0 +170759914362,214,0 +170759914412,216,0 +170759914460,216,0 +170759914508,217,0 +170759914555,217,0 +170759914605,218,0 +170759914653,218,0 +170759914701,219,0 +170759914749,220,0 +170759914797,220,0 +170759914846,220,0 +170759914895,221,0 +170759914943,220,0 +170759914991,223,0 +170759915039,222,0 +170759915088,216,0 +170759915136,215,0 +170759915184,215,0 +170759915232,215,0 +170759915281,216,0 +170759915329,216,0 +170759915377,216,0 +170759915425,217,0 +170759915473,218,0 +170759915520,218,0 +170759915568,219,0 +170759915616,220,0 +170759915664,220,0 +170759915712,221,0 +170759915760,221,0 +170759915809,221,0 +170759915857,221,0 +170759915905,221,0 +170759915952,222,0 +170759916000,218,0 +170759916048,215,0 +170759916096,215,0 +170759916146,216,0 +170759916193,216,0 +170759916241,217,0 +170759916289,218,0 +170759916339,218,0 +170759916387,218,0 +170759916436,219,0 +170759916484,220,0 +170759916532,220,0 +170759916581,221,0 +170759916631,221,0 +170759916680,221,0 +170759916728,221,0 +170759916776,222,0 +170759916824,222,0 +170759916872,222,0 +170759916919,221,0 +170759916967,216,0 +170759917015,215,0 +170759917063,216,0 +170759917111,216,0 +170759917160,217,0 +170759917208,218,0 +170759917256,218,0 +170759917304,218,0 +170759917352,219,0 +170759917401,219,0 +170759917449,220,0 +170759917497,221,0 +170759917545,221,0 +170759917594,221,0 +170759917642,222,0 +170759917690,222,0 +170759917738,222,0 +170759917787,223,0 +170759917835,222,0 +170759917884,216,0 +170759917932,215,0 +170759917980,215,0 +170759918028,216,0 +170759918076,216,0 +170759918123,217,0 +170759918171,217,0 +170759918221,217,0 +170759918268,218,0 +170759918316,218,0 +170759918364,219,0 +170759918414,219,0 +170759918461,220,0 +170759918509,220,0 +170759918559,221,0 +170759918607,221,0 +170759918656,221,0 +170759918704,222,0 +170759918752,222,0 +170759918800,218,0 +170759918848,215,0 +170759918895,216,0 +170759918943,216,0 +170759918991,217,0 +170759919039,217,0 +170759919087,218,0 +170759919134,218,0 +170759919182,219,0 +170759919230,219,0 +170759919278,220,0 +170759919326,221,0 +170759919374,220,0 +170759919422,221,0 +170759919471,222,0 +170759919519,222,0 +170759919567,222,0 +170759919615,222,0 +170759919665,222,0 +170759919712,221,0 +170759919760,216,0 +170759919808,215,0 +170759919856,216,0 +170759919904,216,0 +170759919954,217,0 +170759920003,218,0 +170759920051,218,0 +170759920099,218,0 +170759920147,219,0 +170759920195,219,0 +170759920245,220,0 +170759920293,220,0 +170759920340,221,0 +170759920388,222,0 +170759920436,221,0 +170759920486,223,0 +170759920535,222,0 +170759920585,222,0 +170759920633,221,0 +170759920682,216,0 +170759920732,215,0 +170759920779,216,0 +170759920829,216,0 +170759920877,217,0 +170759920926,217,0 +170759920974,218,0 +170759921022,218,0 +170759921070,218,0 +170759921118,219,0 +170759921166,220,0 +170759921214,220,0 +170759921262,219,0 +170759921311,220,0 +170759921359,221,0 +170759921409,221,0 +170759921457,221,0 +170759921505,221,0 +170759921552,221,0 +170759921602,216,0 +170759921650,215,0 +170759921698,215,0 +170759921746,215,0 +170759921794,216,0 +170759921841,216,0 +170759921889,217,0 +170759921937,217,0 +170759921985,217,0 +170759922033,218,0 +170759922082,219,0 +170759922130,219,0 +170759922178,220,0 +170759922226,220,0 +170759922276,220,0 +170759922324,221,0 +170759922373,221,0 +170759922421,221,0 +170759922469,221,0 +170759922517,222,0 +170759922564,215,0 +170759922612,215,0 +170759922660,215,0 +170759922708,216,0 +170759922756,216,0 +170759922803,217,0 +170759922851,217,0 +170759922899,219,0 +170759922947,218,0 +170759922995,219,0 +170759923043,220,0 +170759923090,221,0 +170759923138,221,0 +170759923186,221,0 +170759923234,221,0 +170759923282,222,0 +170759923330,222,0 +170759923378,221,0 +170759923425,222,0 +170759923473,216,0 +170759923521,215,0 +170759923569,215,0 +170759923617,215,0 +170759923665,216,0 +170759923714,217,0 +170759923762,217,0 +170759923810,217,0 +170759923858,218,0 +170759923906,219,0 +170759923953,219,0 +170759924001,219,0 +170759924049,220,0 +170759924097,221,0 +170759924145,221,0 +170759924193,221,0 +170759924241,222,0 +170759924288,222,0 +170759924336,222,0 +170759924384,220,0 +170759924432,215,0 +170759924480,215,0 +170759924528,215,0 +170759924576,215,0 +170759924623,216,0 +170759924671,216,0 +170759924719,217,0 +170759924767,218,0 +170759924815,218,0 +170759924863,219,0 +170759924910,220,0 +170759924958,220,0 +170759925006,221,0 +170759925056,222,0 +170759925103,222,0 +170759925151,222,0 +170759925199,222,0 +170759925247,222,0 +170759925295,221,0 +170759925343,215,0 +170759925391,215,0 +170759925438,215,0 +170759925486,216,0 +170759925534,216,0 +170759925582,217,0 +170759925629,217,0 +170759925677,217,0 +170759925725,218,0 +170759925773,218,0 +170759925821,219,0 +170759925868,218,0 +170759925916,220,0 +170759925964,220,0 +170759926012,220,0 +170759926060,221,0 +170759926108,222,0 +170759926155,222,0 +170759926203,221,0 +170759926251,221,0 +170759926299,215,0 +170759926347,215,0 +170759926395,216,0 +170759926442,216,0 +170759926490,217,0 +170759926538,217,0 +170759926586,217,0 +170759926634,218,0 +170759926683,219,0 +170759926731,219,0 +170759926781,219,0 +170759926828,219,0 +170759926876,221,0 +170759926924,221,0 +170759926972,222,0 +170759927020,223,0 +170759927068,222,0 +170759927116,222,0 +170759927164,221,0 +170759927211,216,0 +170759927259,215,0 +170759927307,216,0 +170759927357,217,0 +170759927405,217,0 +170759927454,218,0 +170759927504,218,0 +170759927551,219,0 +170759927601,219,0 +170759927649,219,0 +170759927697,220,0 +170759927745,221,0 +170759927793,221,0 +170759927841,222,0 +170759927889,223,0 +170759927938,222,0 +170759927986,222,0 +170759928034,222,0 +170759928083,221,0 +170759928133,216,0 +170759928181,215,0 +170759928229,215,0 +170759928276,215,0 +170759928326,215,0 +170759928374,215,0 +170759928422,216,0 +170759928470,216,0 +170759928517,217,0 +170759928565,217,0 +170759928613,218,0 +170759928661,218,0 +170759928709,219,0 +170759928756,219,0 +170759928804,219,0 +170759928852,220,0 +170759928900,221,0 +170759928949,221,0 +170759928997,221,0 +170759929045,216,0 +170759929093,215,0 +170759929141,214,0 +170759929189,215,0 +170759929237,215,0 +170759929285,215,0 +170759929333,215,0 +170759929380,215,0 +170759929428,216,0 +170759929476,216,0 +170759929524,216,0 +170759929572,217,0 +170759929620,218,0 +170759929668,219,0 +170759929716,219,0 +170759929763,220,0 +170759929811,220,0 +170759929859,221,0 +170759929907,221,0 +170759929956,221,0 +170759930004,215,0 +170759930052,215,0 +170759930102,215,0 +170759930149,216,0 +170759930199,215,0 +170759930247,216,0 +170759930295,216,0 +170759930344,217,0 +170759930392,217,0 +170759930440,217,0 +170759930488,219,0 +170759930536,219,0 +170759930584,220,0 +170759930631,221,0 +170759930681,221,0 +170759930729,222,0 +170759930777,221,0 +170759930825,222,0 +170759930874,221,0 +170759930922,216,0 +170759930969,215,0 +170759931017,215,0 +170759931065,215,0 +170759931113,215,0 +170759931161,215,0 +170759931208,216,0 +170759931258,217,0 +170759931306,217,0 +170759931354,217,0 +170759931401,218,0 +170759931449,220,0 +170759931497,219,0 +170759931545,219,0 +170759931593,223,0 +170759931641,221,0 +170759931689,221,0 +170759931736,221,0 +170759931784,222,0 +170759931834,217,0 +170759931882,215,0 +170759931929,215,0 +170759931977,215,0 +170759932025,215,0 +170759932073,216,0 +170759932121,216,0 +170759932168,216,0 +170759932216,217,0 +170759932264,217,0 +170759932312,218,0 +170759932359,218,0 +170759932407,218,0 +170759932455,219,0 +170759932503,220,0 +170759932550,220,0 +170759932598,220,0 +170759932646,222,0 +170759932694,221,0 +170759932742,222,0 +170759932789,216,0 +170759932837,215,0 +170759932885,215,0 +170759932933,215,0 +170759932981,215,0 +170759933029,216,0 +170759933077,216,0 +170759933125,217,0 +170759933173,218,0 +170759933221,219,0 +170759933268,219,0 +170759933316,219,0 +170759933364,220,0 +170759933412,219,0 +170759933460,220,0 +170759933509,221,0 +170759933557,221,0 +170759933605,221,0 +170759933653,222,0 +170759933701,216,0 +170759933751,215,0 +170759933798,215,0 +170759933846,215,0 +170759933894,215,0 +170759933942,216,0 +170759933992,216,0 +170759934040,217,0 +170759934087,217,0 +170759934137,218,0 +170759934185,218,0 +170759934233,218,0 +170759934282,219,0 +170759934332,219,0 +170759934381,220,0 +170759934431,222,0 +170759934479,221,0 +170759934527,221,0 +170759934576,221,0 +170759934624,216,0 +170759934672,215,0 +170759934720,215,0 +170759934768,215,0 +170759934816,215,0 +170759934865,215,0 +170759934913,216,0 +170759934963,216,0 +170759935010,216,0 +170759935058,216,0 +170759935106,218,0 +170759935154,218,0 +170759935202,219,0 +170759935249,219,0 +170759935297,220,0 +170759935345,221,0 +170759935393,221,0 +170759935441,221,0 +170759935489,221,0 +170759935536,221,0 +170759935584,215,0 +170759935634,215,0 +170759935683,215,0 +170759935731,215,0 +170759935779,216,0 +170759935827,216,0 +170759935875,217,0 +170759935923,218,0 +170759935971,218,0 +170759936020,219,0 +170759936068,219,0 +170759936116,220,0 +170759936164,221,0 +170759936212,222,0 +170759936261,221,0 +170759936309,222,0 +170759936357,221,0 +170759936405,222,0 +170759936453,221,0 +170759936502,216,0 +170759936550,215,0 +170759936598,216,0 +170759936646,216,0 +170759936694,217,0 +170759936744,218,0 +170759936792,218,0 +170759936839,219,0 +170759936889,219,0 +170759936937,220,0 +170759936986,221,0 +170759937034,221,0 +170759937084,221,0 +170759937132,221,0 +170759937180,222,0 +170759937227,223,0 +170759937275,222,0 +170759937323,222,0 +170759937371,221,0 +170759937419,216,0 +170759937467,215,0 +170759937515,215,0 +170759937562,216,0 +170759937610,216,0 +170759937658,217,0 +170759937706,217,0 +170759937754,218,0 +170759937801,219,0 +170759937851,219,0 +170759937900,219,0 +170759937948,221,0 +170759937996,220,0 +170759938044,222,0 +170759938092,221,0 +170759938140,221,0 +170759938188,222,0 +170759938236,222,0 +170759938284,222,0 +170759938332,221,0 +170759938381,215,0 +170759938429,215,0 +170759938479,215,0 +170759938528,215,0 +170759938576,216,0 +170759938624,217,0 +170759938672,217,0 +170759938720,217,0 +170759938769,218,0 +170759938817,219,0 +170759938867,219,0 +170759938915,219,0 +170759938962,219,0 +170759939012,220,0 +170759939060,220,0 +170759939109,221,0 +170759939159,221,0 +170759939208,222,0 +170759939256,221,0 +170759939304,216,0 +170759939352,216,0 +170759939401,216,0 +170759939449,217,0 +170759939497,217,0 +170759939545,218,0 +170759939593,218,0 +170759939641,218,0 +170759939689,219,0 +170759939739,219,0 +170759939787,220,0 +170759939835,221,0 +170759939884,222,0 +170759939932,222,0 +170759939980,222,0 +170759940028,222,0 +170759940076,222,0 +170759940124,222,0 +170759940172,222,0 +170759940219,217,0 +170759940267,216,0 +170759940315,217,0 +170759940365,217,0 +170759940413,218,0 +170759940461,219,0 +170759940509,219,0 +170759940556,219,0 +170759940604,220,0 +170759940652,221,0 +170759940700,220,0 +170759940750,222,0 +170759940798,222,0 +170759940845,222,0 +170759940893,223,0 +170759940941,222,0 +170759940991,224,0 +170759941039,222,0 +170759941088,223,0 +170759941136,217,0 +170759941184,217,0 +170759941232,217,0 +170759941280,218,0 +170759941329,218,0 +170759941377,219,0 +170759941425,220,0 +170759941475,220,0 +170759941524,220,0 +170759941572,221,0 +170759941620,222,0 +170759941670,222,0 +170759941719,222,0 +170759941767,223,0 +170759941817,222,0 +170759941864,222,0 +170759941912,222,0 +170759941962,222,0 +170759942010,222,0 +170759942058,222,0 +170759942106,215,0 +170759942154,216,0 +170759942202,216,0 +170759942250,217,0 +170759942300,217,0 +170759942347,218,0 +170759942395,219,0 +170759942443,219,0 +170759942491,220,0 +170759942540,221,0 +170759942590,220,0 +170759942639,221,0 +170759942687,221,0 +170759942735,222,0 +170759942785,222,0 +170759942833,223,0 +170759942881,222,0 +170759942929,223,0 +170759942976,222,0 +170759943024,216,0 +170759943072,215,0 +170759943120,215,0 +170759943168,216,0 +170759943218,216,0 +170759943266,217,0 +170759943314,217,0 +170759943363,217,0 +170759943411,218,0 +170759943459,218,0 +170759943506,219,0 +170759943554,219,0 +170759943602,220,0 +170759943652,219,0 +170759943700,222,0 +170759943748,222,0 +170759943795,222,0 +170759943843,221,0 +170759943893,222,0 +170759943941,216,0 +170759943990,215,0 +170759944040,216,0 +170759944089,216,0 +170759944137,217,0 +170759944185,217,0 +170759944233,217,0 +170759944282,217,0 +170759944330,221,0 +170759944380,219,0 +170759944428,220,0 +170759944476,220,0 +170759944524,220,0 +170759944572,220,0 +170759944620,221,0 +170759944667,221,0 +170759944717,222,0 +170759944765,223,0 +170759944814,221,0 +170759944862,216,0 +170759944912,215,0 +170759944960,215,0 +170759945009,216,0 +170759945057,216,0 +170759945105,217,0 +170759945153,217,0 +170759945201,218,0 +170759945250,218,0 +170759945298,218,0 +170759945346,220,0 +170759945394,220,0 +170759945442,220,0 +170759945491,220,0 +170759945539,221,0 +170759945587,221,0 +170759945637,221,0 +170759945686,221,0 +170759945734,223,0 +170759945782,221,0 +170759945830,215,0 +170759945878,215,0 +170759945927,215,0 +170759945975,215,0 +170759946023,216,0 +170759946071,216,0 +170759946120,217,0 +170759946170,217,0 +170759946218,218,0 +170759946266,218,0 +170759946314,220,0 +170759946363,219,0 +170759946411,220,0 +170759946461,221,0 +170759946509,222,0 +170759946557,222,0 +170759946605,222,0 +170759946654,222,0 +170759946702,221,0 +170759946750,216,0 +170759946798,215,0 +170759946848,215,0 +170759946897,215,0 +170759946945,215,0 +170759946993,215,0 +170759947041,216,0 +170759947089,216,0 +170759947137,216,0 +170759947186,217,0 +170759947234,218,0 +170759947282,218,0 +170759947332,219,0 +170759947380,219,0 +170759947427,220,0 +170759947475,221,0 +170759947523,220,0 +170759947571,221,0 +170759947621,222,0 +170759947669,216,0 +170759947717,215,0 +170759947764,215,0 +170759947814,215,0 +170759947862,215,0 +170759947910,215,0 +170759947958,215,0 +170759948007,216,0 +170759948055,216,0 +170759948103,217,0 +170759948153,217,0 +170759948202,218,0 +170759948250,220,0 +170759948298,220,0 +170759948346,220,0 +170759948394,221,0 +170759948442,221,0 +170759948489,220,0 +170759948537,221,0 +170759948585,216,0 +170759948633,215,0 +170759948681,215,0 +170759948729,215,0 +170759948778,216,0 +170759948826,216,0 +170759948874,217,0 +170759948922,217,0 +170759948970,218,0 +170759949018,218,0 +170759949066,219,0 +170759949113,219,0 +170759949161,220,0 +170759949211,221,0 +170759949260,221,0 +170759949310,222,0 +170759949358,222,0 +170759949407,222,0 +170759949455,221,0 +170759949503,221,0 +170759949551,215,0 +170759949600,215,0 +170759949648,215,0 +170759949696,216,0 +170759949744,216,0 +170759949792,217,0 +170759949842,217,0 +170759949889,218,0 +170759949937,219,0 +170759949985,219,0 +170759950033,220,0 +170759950081,221,0 +170759950129,222,0 +170759950177,221,0 +170759950225,223,0 +170759950273,223,0 +170759950323,223,0 +170759950372,221,0 +170759950421,221,0 +170759950469,215,0 +170759950517,215,0 +170759950565,215,0 +170759950613,215,0 +170759950661,215,0 +170759950709,215,0 +170759950757,216,0 +170759950805,217,0 +170759950853,217,0 +170759950900,218,0 +170759950948,219,0 +170759950996,219,0 +170759951044,221,0 +170759951094,220,0 +170759951142,221,0 +170759951190,222,0 +170759951238,221,0 +170759951285,222,0 +170759951333,221,0 +170759951381,218,0 +170759951431,216,0 +170759951479,216,0 +170759951527,216,0 +170759951574,216,0 +170759951624,216,0 +170759951672,214,0 +170759951720,214,0 +170759951768,214,0 +170759951816,215,0 +170759951865,215,0 +170759951913,215,0 +170759951961,216,0 +170759952009,216,0 +170759952057,217,0 +170759952105,217,0 +170759952153,218,0 +170759952202,218,0 +170759952250,221,0 +170759952298,219,0 +170759952346,215,0 +170759952394,215,0 +170759952442,215,0 +170759952489,215,0 +170759952537,215,0 +170759952587,216,0 +170759952635,216,0 +170759952683,216,0 +170759952731,216,0 +170759952780,217,0 +170759952828,218,0 +170759952876,219,0 +170759952924,220,0 +170759952973,220,0 +170759953021,221,0 +170759953069,221,0 +170759953117,222,0 +170759953165,222,0 +170759953213,221,0 +170759953261,215,0 +170759953309,215,0 +170759953357,215,0 +170759953405,216,0 +170759953453,215,0 +170759953500,215,0 +170759953548,215,0 +170759953596,215,0 +170759953646,216,0 +170759953694,216,0 +170759953742,216,0 +170759953790,217,0 +170759953839,217,0 +170759953887,218,0 +170759953935,219,0 +170759953983,219,0 +170759954031,219,0 +170759954080,221,0 +170759954128,221,0 +170759954176,216,0 +170759954223,215,0 +170759954271,215,0 +170759954319,215,0 +170759954367,215,0 +170759954415,215,0 +170759954463,216,0 +170759954510,216,0 +170759954558,217,0 +170759954606,218,0 +170759954656,218,0 +170759954705,218,0 +170759954753,219,0 +170759954801,219,0 +170759954849,220,0 +170759954896,221,0 +170759954944,221,0 +170759954992,221,0 +170759955040,221,0 +170759955088,217,0 +170759955135,215,0 +170759955183,215,0 +170759955231,215,0 +170759955279,216,0 +170759955327,217,0 +170759955375,217,0 +170759955422,217,0 +170759955470,217,0 +170759955518,218,0 +170759955566,218,0 +170759955614,219,0 +170759955661,219,0 +170759955709,220,0 +170759955757,220,0 +170759955805,220,0 +170759955853,221,0 +170759955900,221,0 +170759955948,222,0 +170759955998,221,0 +170759956045,216,0 +170759956095,215,0 +170759956143,216,0 +170759956191,216,0 +170759956238,217,0 +170759956286,218,0 +170759956334,219,0 +170759956382,219,0 +170759956432,220,0 +170759956481,221,0 +170759956529,222,0 +170759956577,221,0 +170759956625,222,0 +170759956674,222,0 +170759956722,222,0 +170759956772,222,0 +170759956820,223,0 +170759956868,223,0 +170759956917,221,0 +170759956965,218,0 +170759957013,218,0 +170759957061,218,0 +170759957109,219,0 +170759957157,219,0 +170759957205,220,0 +170759957253,220,0 +170759957301,220,0 +170759957349,221,0 +170759957397,222,0 +170759957446,222,0 +170759957494,222,0 +170759957542,222,0 +170759957591,223,0 +170759957641,222,0 +170759957689,223,0 +170759957737,222,0 +170759957786,222,0 +170759957834,221,0 +170759957882,217,0 +170759957930,217,0 +170759957980,217,0 +170759958027,218,0 +170759958075,219,0 +170759958125,219,0 +170759958173,219,0 +170759958221,222,0 +170759958269,220,0 +170759958317,220,0 +170759958366,221,0 +170759958414,221,0 +170759958464,222,0 +170759958512,222,0 +170759958559,222,0 +170759958607,221,0 +170759958655,222,0 +170759958705,222,0 +170759958753,222,0 +170759958801,220,0 +170759958849,215,0 +170759958898,216,0 +170759958946,216,0 +170759958994,217,0 +170759959042,217,0 +170759959090,218,0 +170759959138,218,0 +170759959186,218,0 +170759959234,220,0 +170759959281,220,0 +170759959329,220,0 +170759959377,221,0 +170759959427,221,0 +170759959475,221,0 +170759959523,221,0 +170759959570,221,0 +170759959620,222,0 +170759959668,222,0 +170759959716,221,0 +170759959764,216,0 +170759959813,215,0 +170759959861,216,0 +170759959909,216,0 +170759959957,217,0 +170759960005,217,0 +170759960054,217,0 +170759960102,217,0 +170759960150,218,0 +170759960198,219,0 +170759960246,220,0 +170759960294,220,0 +170759960344,220,0 +170759960392,221,0 +170759960439,221,0 +170759960489,222,0 +170759960537,222,0 +170759960585,222,0 +170759960633,222,0 +170759960682,216,0 +170759960730,215,0 +170759960778,216,0 +170759960826,216,0 +170759960874,216,0 +170759960923,217,0 +170759960971,217,0 +170759961019,218,0 +170759961069,219,0 +170759961118,219,0 +170759961166,219,0 +170759961214,221,0 +170759961264,221,0 +170759961312,223,0 +170759961361,222,0 +170759961409,222,0 +170759961457,222,0 +170759961505,221,0 +170759961555,223,0 +170759961603,216,0 +170759961650,215,0 +170759961698,216,0 +170759961746,216,0 +170759961794,217,0 +170759961844,218,0 +170759961892,217,0 +170759961940,219,0 +170759961987,219,0 +170759962035,219,0 +170759962083,221,0 +170759962131,221,0 +170759962179,221,0 +170759962228,221,0 +170759962278,221,0 +170759962327,222,0 +170759962375,222,0 +170759962423,222,0 +170759962473,223,0 +170759962521,220,0 +170759962568,215,0 +170759962618,215,0 +170759962666,215,0 +170759962714,216,0 +170759962761,216,0 +170759962811,217,0 +170759962859,217,0 +170759962907,218,0 +170759962954,218,0 +170759963002,219,0 +170759963052,218,0 +170759963101,220,0 +170759963149,220,0 +170759963199,221,0 +170759963247,222,0 +170759963296,221,0 +170759963344,221,0 +170759963392,221,0 +170759963440,223,0 +170759963489,216,0 +170759963537,215,0 +170759963586,215,0 +170759963634,215,0 +170759963684,215,0 +170759963732,216,0 +170759963780,216,0 +170759963829,217,0 +170759963879,216,0 +170759963927,218,0 +170759963975,218,0 +170759964024,219,0 +170759964072,220,0 +170759964120,220,0 +170759964168,220,0 +170759964218,221,0 +170759964266,220,0 +170759964315,222,0 +170759964365,222,0 +170759964413,215,0 +170759964462,215,0 +170759964510,215,0 +170759964558,215,0 +170759964606,215,0 +170759964654,216,0 +170759964702,216,0 +170759964750,217,0 +170759964798,217,0 +170759964847,218,0 +170759964897,218,0 +170759964945,219,0 +170759964994,220,0 +170759965042,219,0 +170759965090,221,0 +170759965138,222,0 +170759965187,221,0 +170759965237,221,0 +170759965285,221,0 +170759965334,216,0 +170759965384,215,0 +170759965431,215,0 +170759965479,215,0 +170759965527,215,0 +170759965575,215,0 +170759965625,216,0 +170759965673,217,0 +170759965721,217,0 +170759965769,218,0 +170759965817,219,0 +170759965866,220,0 +170759965914,219,0 +170759965962,220,0 +170759966012,220,0 +170759966060,221,0 +170759966108,221,0 +170759966157,222,0 +170759966205,222,0 +170759966255,216,0 +170759966303,215,0 +170759966352,215,0 +170759966400,215,0 +170759966448,215,0 +170759966496,216,0 +170759966543,216,0 +170759966591,217,0 +170759966639,217,0 +170759966687,218,0 +170759966735,219,0 +170759966782,219,0 +170759966830,220,0 +170759966878,220,0 +170759966926,221,0 +170759966975,221,0 +170759967023,221,0 +170759967073,221,0 +170759967122,222,0 +170759967170,221,0 +170759967218,215,0 +170759967266,215,0 +170759967314,215,0 +170759967362,215,0 +170759967410,215,0 +170759967458,216,0 +170759967506,216,0 +170759967553,217,0 +170759967601,217,0 +170759967651,218,0 +170759967699,219,0 +170759967747,219,0 +170759967795,220,0 +170759967843,220,0 +170759967890,220,0 +170759967938,221,0 +170759967988,222,0 +170759968036,222,0 +170759968084,221,0 +170759968132,216,0 +170759968180,215,0 +170759968228,216,0 +170759968276,216,0 +170759968324,217,0 +170759968371,218,0 +170759968419,218,0 +170759968467,218,0 +170759968515,218,0 +170759968563,219,0 +170759968611,220,0 +170759968658,220,0 +170759968706,221,0 +170759968754,221,0 +170759968804,222,0 +170759968852,222,0 +170759968900,221,0 +170759968948,221,0 +170759968997,222,0 +170759969045,216,0 +170759969093,215,0 +170759969143,215,0 +170759969190,215,0 +170759969238,215,0 +170759969286,216,0 +170759969334,215,0 +170759969383,216,0 +170759969431,216,0 +170759969479,217,0 +170759969527,218,0 +170759969575,219,0 +170759969623,219,0 +170759969671,220,0 +170759969719,221,0 +170759969768,221,0 +170759969816,221,0 +170759969865,221,0 +170759969915,222,0 +170759969963,221,0 +170759970011,215,0 +170759970058,215,0 +170759970106,215,0 +170759970154,215,0 +170759970202,215,0 +170759970250,215,0 +170759970299,215,0 +170759970347,217,0 +170759970395,217,0 +170759970443,218,0 +170759970491,218,0 +170759970539,219,0 +170759970587,220,0 +170759970634,221,0 +170759970682,221,0 +170759970730,221,0 +170759970778,222,0 +170759970826,221,0 +170759970874,222,0 +170759970922,215,0 +170759970970,215,0 +170759971017,215,0 +170759971065,215,0 +170759971115,215,0 +170759971163,215,0 +170759971210,215,0 +170759971258,216,0 +170759971306,216,0 +170759971354,216,0 +170759971402,216,0 +170759971450,216,0 +170759971498,217,0 +170759971545,217,0 +170759971593,218,0 +170759971641,219,0 +170759971689,219,0 +170759971737,219,0 +170759971785,219,0 +170759971833,221,0 +170759971880,221,0 +170759971928,222,0 +170759971976,223,0 +170759972026,222,0 +170759972074,222,0 +170759972123,223,0 +170759972172,222,0 +170759972222,222,0 +170759972271,221,0 +170759972319,215,0 +170759972367,215,0 +170759972415,215,0 +170759972463,215,0 +170759972512,215,0 +170759972560,216,0 +170759972608,216,0 +170759972656,216,0 +170759972704,216,0 +170759972754,217,0 +170759972803,217,0 +170759972851,218,0 +170759972899,218,0 +170759972947,219,0 +170759972995,220,0 +170759973043,220,0 +170759973091,221,0 +170759973139,220,0 +170759973186,220,0 +170759973236,216,0 +170759973285,215,0 +170759973333,216,0 +170759973381,216,0 +170759973429,217,0 +170759973477,217,0 +170759973526,217,0 +170759973574,218,0 +170759973624,219,0 +170759973672,219,0 +170759973721,218,0 +170759973769,220,0 +170759973817,220,0 +170759973865,220,0 +170759973913,221,0 +170759973961,222,0 +170759974009,222,0 +170759974056,222,0 +170759974104,222,0 +170759974152,217,0 +170759974200,215,0 +170759974248,216,0 +170759974296,217,0 +170759974345,216,0 +170759974393,217,0 +170759974442,217,0 +170759974492,218,0 +170759974540,219,0 +170759974588,219,0 +170759974636,219,0 +170759974683,220,0 +170759974731,221,0 +170759974779,221,0 +170759974829,222,0 +170759974878,223,0 +170759974926,222,0 +170759974976,222,0 +170759975023,222,0 +170759975071,221,0 +170759975119,215,0 +170759975167,215,0 +170759975215,216,0 +170759975263,216,0 +170759975311,216,0 +170759975359,217,0 +170759975409,216,0 +170759975457,218,0 +170759975506,218,0 +170759975556,219,0 +170759975603,221,0 +170759975651,221,0 +170759975699,221,0 +170759975747,222,0 +170759975795,221,0 +170759975843,221,0 +170759975891,221,0 +170759975939,222,0 +170759975987,222,0 +170759976034,216,0 +170759976082,216,0 +170759976130,216,0 +170759976180,217,0 +170759976228,217,0 +170759976276,218,0 +170759976325,218,0 +170759976375,219,0 +170759976422,219,0 +170759976470,220,0 +170759976518,221,0 +170759976566,221,0 +170759976614,222,0 +170759976661,222,0 +170759976711,222,0 +170759976759,222,0 +170759976806,223,0 +170759976854,222,0 +170759976902,222,0 +170759976950,217,0 +170759976998,217,0 +170759977046,217,0 +170759977093,218,0 +170759977141,218,0 +170759977191,219,0 +170759977240,219,0 +170759977288,220,0 +170759977336,220,0 +170759977384,221,0 +170759977431,221,0 +170759977479,221,0 +170759977527,222,0 +170759977577,222,0 +170759977626,223,0 +170759977676,222,0 +170759977723,223,0 +170759977771,222,0 +170759977819,221,0 +170759977869,218,0 +170759977918,216,0 +170759977968,216,0 +170759978016,217,0 +170759978065,217,0 +170759978113,218,0 +170759978161,218,0 +170759978209,218,0 +170759978257,219,0 +170759978305,220,0 +170759978353,222,0 +170759978401,221,0 +170759978449,223,0 +170759978497,223,0 +170759978544,222,0 +170759978592,223,0 +170759978640,222,0 +170759978688,222,0 +170759978736,223,0 +170759978784,221,0 +170759978831,215,0 +170759978881,215,0 +170759978929,215,0 +170759978976,215,0 +170759979026,216,0 +170759979074,216,0 +170759979121,217,0 +170759979169,217,0 +170759979217,218,0 +170759979265,219,0 +170759979313,218,0 +170759979360,219,0 +170759979408,221,0 +170759979456,222,0 +170759979504,221,0 +170759979552,221,0 +170759979600,221,0 +170759979648,221,0 +170759979696,222,0 +170759979744,216,0 +170759979793,215,0 +170759979841,215,0 +170759979889,215,0 +170759979937,215,0 +170759979984,216,0 +170759980032,216,0 +170759980080,217,0 +170759980128,217,0 +170759980176,217,0 +170759980224,218,0 +170759980271,219,0 +170759980319,219,0 +170759980367,219,0 +170759980415,219,0 +170759980463,220,0 +170759980511,220,0 +170759980559,220,0 +170759980606,222,0 +170759980654,220,0 +170759980702,215,0 +170759980750,215,0 +170759980798,216,0 +170759980846,216,0 +170759980895,216,0 +170759980943,218,0 +170759980992,218,0 +170759981040,218,0 +170759981088,218,0 +170759981137,219,0 +170759981185,220,0 +170759981235,220,0 +170759981283,220,0 +170759981331,221,0 +170759981379,221,0 +170759981427,221,0 +170759981474,221,0 +170759981522,222,0 +170759981572,221,0 +170759981620,215,0 +170759981668,216,0 +170759981716,216,0 +170759981764,217,0 +170759981811,217,0 +170759981859,218,0 +170759981907,219,0 +170759981955,219,0 +170759982003,220,0 +170759982052,220,0 +170759982100,221,0 +170759982148,223,0 +170759982196,222,0 +170759982246,222,0 +170759982293,222,0 +170759982341,222,0 +170759982389,222,0 +170759982437,222,0 +170759982487,222,0 +170759982535,216,0 +170759982583,215,0 +170759982632,215,0 +170759982680,216,0 +170759982728,217,0 +170759982776,217,0 +170759982824,217,0 +170759982872,218,0 +170759982921,219,0 +170759982969,219,0 +170759983018,220,0 +170759983066,220,0 +170759983116,222,0 +170759983165,222,0 +170759983215,223,0 +170759983263,222,0 +170759983311,222,0 +170759983358,222,0 +170759983406,222,0 +170759983456,216,0 +170759983504,215,0 +170759983552,215,0 +170759983601,215,0 +170759983649,215,0 +170759983697,216,0 +170759983746,217,0 +170759983794,217,0 +170759983842,218,0 +170759983890,218,0 +170759983938,219,0 +170759983987,220,0 +170759984035,219,0 +170759984083,220,0 +170759984131,221,0 +170759984179,221,0 +170759984226,220,0 +170759984274,221,0 +170759984322,221,0 +170759984371,221,0 +170759984419,215,0 +170759984469,215,0 +170759984518,215,0 +170759984566,215,0 +170759984614,216,0 +170759984662,216,0 +170759984710,217,0 +170759984758,217,0 +170759984806,218,0 +170759984854,218,0 +170759984902,220,0 +170759984949,219,0 +170759984997,220,0 +170759985045,220,0 +170759985093,222,0 +170759985141,222,0 +170759985191,221,0 +170759985238,222,0 +170759985286,222,0 +170759985334,216,0 +170759985383,215,0 +170759985431,215,0 +170759985481,216,0 +170759985530,217,0 +170759985578,217,0 +170759985626,217,0 +170759985674,217,0 +170759985723,218,0 +170759985773,218,0 +170759985821,220,0 +170759985869,219,0 +170759985917,220,0 +170759985965,220,0 +170759986012,222,0 +170759986060,222,0 +170759986110,222,0 +170759986158,221,0 +170759986206,222,0 +170759986254,216,0 +170759986302,215,0 +170759986350,215,0 +170759986397,215,0 +170759986445,215,0 +170759986493,216,0 +170759986541,216,0 +170759986589,217,0 +170759986639,217,0 +170759986687,217,0 +170759986734,218,0 +170759986784,219,0 +170759986833,220,0 +170759986881,221,0 +170759986931,222,0 +170759986979,222,0 +170759987027,222,0 +170759987075,221,0 +170759987122,221,0 +170759987170,216,0 +170759987218,215,0 +170759987268,215,0 +170759987316,216,0 +170759987365,216,0 +170759987413,217,0 +170759987461,217,0 +170759987510,217,0 +170759987558,218,0 +170759987606,218,0 +170759987654,218,0 +170759987704,219,0 +170759987752,220,0 +170759987801,220,0 +170759987849,221,0 +170759987897,221,0 +170759987945,222,0 +170759987993,222,0 +170759988041,221,0 +170759988088,219,0 +170759988136,215,0 +170759988184,215,0 +170759988234,216,0 +170759988282,217,0 +170759988330,216,0 +170759988378,217,0 +170759988427,217,0 +170759988475,217,0 +170759988523,219,0 +170759988571,219,0 +170759988619,220,0 +170759988667,221,0 +170759988716,221,0 +170759988764,221,0 +170759988812,222,0 +170759988861,222,0 +170759988911,222,0 +170759988959,222,0 +170759989007,221,0 +170759989054,215,0 +170759989102,215,0 +170759989150,215,0 +170759989198,216,0 +170759989246,216,0 +170759989294,217,0 +170759989341,217,0 +170759989389,217,0 +170759989437,218,0 +170759989486,220,0 +170759989534,219,0 +170759989582,220,0 +170759989630,221,0 +170759989679,221,0 +170759989727,221,0 +170759989775,222,0 +170759989823,223,0 +170759989871,222,0 +170759989919,222,0 +170759989968,216,0 +170759990016,215,0 +170759990064,215,0 +170759990111,216,0 +170759990159,217,0 +170759990207,217,0 +170759990255,218,0 +170759990303,218,0 +170759990351,217,0 +170759990399,218,0 +170759990446,219,0 +170759990496,220,0 +170759990544,220,0 +170759990593,221,0 +170759990641,222,0 +170759990691,222,0 +170759990739,222,0 +170759990786,222,0 +170759990834,222,0 +170759990882,219,0 +170759990930,215,0 +170759990978,215,0 +170759991026,216,0 +170759991074,216,0 +170759991122,216,0 +170759991169,217,0 +170759991217,218,0 +170759991265,218,0 +170759991313,219,0 +170759991361,219,0 +170759991409,220,0 +170759991457,221,0 +170759991505,221,0 +170759991554,222,0 +170759991604,222,0 +170759991652,222,0 +170759991700,222,0 +170759991748,222,0 +170759991796,221,0 +170759991843,216,0 +170759991891,215,0 +170759991939,215,0 +170759991987,216,0 +170759992035,216,0 +170759992084,217,0 +170759992132,217,0 +170759992180,217,0 +170759992227,218,0 +170759992275,218,0 +170759992325,219,0 +170759992373,220,0 +170759992422,221,0 +170759992470,222,0 +170759992519,222,0 +170759992567,222,0 +170759992615,222,0 +170759992664,222,0 +170759992712,222,0 +170759992760,216,0 +170759992808,215,0 +170759992856,216,0 +170759992903,216,0 +170759992951,216,0 +170759992999,217,0 +170759993047,218,0 +170759993095,218,0 +170759993144,219,0 +170759993192,220,0 +170759993242,220,0 +170759993290,221,0 +170759993339,221,0 +170759993387,221,0 +170759993435,223,0 +170759993483,223,0 +170759993532,223,0 +170759993580,221,0 +170759993630,223,0 +170759993678,216,0 +170759993726,216,0 +170759993774,216,0 +170759993822,217,0 +170759993871,218,0 +170759993920,218,0 +170759993970,218,0 +170759994018,219,0 +170759994066,220,0 +170759994115,219,0 +170759994163,220,0 +170759994213,220,0 +170759994260,221,0 +170759994308,222,0 +170759994356,222,0 +170759994404,222,0 +170759994452,221,0 +170759994500,222,0 +170759994549,223,0 +170759994597,216,0 +170759994645,215,0 +170759994692,216,0 +170759994740,217,0 +170759994788,217,0 +170759994836,217,0 +170759994884,217,0 +170759994931,218,0 +170759994979,219,0 +170759995027,220,0 +170759995075,221,0 +170759995123,221,0 +170759995170,221,0 +170759995218,222,0 +170759995266,223,0 +170759995314,222,0 +170759995362,222,0 +170759995409,222,0 +170759995457,223,0 +170759995505,222,0 +170759995554,215,0 +170759995602,215,0 +170759995650,216,0 +170759995698,216,0 +170759995746,216,0 +170759995796,217,0 +170759995844,218,0 +170759995891,218,0 +170759995939,219,0 +170759995987,220,0 +170759996035,220,0 +170759996083,222,0 +170759996131,221,0 +170759996180,222,0 +170759996230,223,0 +170759996278,222,0 +170759996325,222,0 +170759996375,222,0 +170759996423,222,0 +170759996472,215,0 +170759996520,215,0 +170759996568,215,0 +170759996616,215,0 +170759996664,216,0 +170759996713,216,0 +170759996763,217,0 +170759996810,217,0 +170759996858,218,0 +170759996906,218,0 +170759996954,219,0 +170759997002,220,0 +170759997050,220,0 +170759997098,221,0 +170759997146,222,0 +170759997193,222,0 +170759997241,222,0 +170759997289,222,0 +170759997339,221,0 +170759997387,216,0 +170759997435,215,0 +170759997484,215,0 +170759997532,216,0 +170759997580,216,0 +170759997629,217,0 +170759997677,218,0 +170759997725,218,0 +170759997773,219,0 +170759997821,219,0 +170759997870,221,0 +170759997920,220,0 +170759997969,221,0 +170759998017,221,0 +170759998065,222,0 +170759998113,222,0 +170759998161,221,0 +170759998209,222,0 +170759998257,222,0 +170759998305,218,0 +170759998353,215,0 +170759998400,215,0 +170759998448,215,0 +170759998496,216,0 +170759998544,216,0 +170759998592,217,0 +170759998640,218,0 +170759998688,218,0 +170759998737,219,0 +170759998787,219,0 +170759998835,218,0 +170759998883,220,0 +170759998932,220,0 +170759998982,220,0 +170759999029,222,0 +170759999077,221,0 +170759999125,221,0 +170759999173,222,0 +170759999221,221,0 +170759999269,215,0 +170759999317,215,0 +170759999365,215,0 +170759999413,215,0 +170759999460,215,0 +170759999508,216,0 +170759999556,216,0 +170759999604,216,0 +170759999654,217,0 +170759999703,218,0 +170759999751,218,0 +170759999799,219,0 +170759999847,220,0 +170759999897,220,0 +170759999944,221,0 +170759999994,221,0 +170760000042,221,0 +170760000089,221,0 +170760000139,221,0 +170760000188,216,0 +170760000236,215,0 +170760000284,215,0 +170760000332,215,0 +170760000380,216,0 +170760000428,216,0 +170760000476,217,0 +170760000524,217,0 +170760000572,217,0 +170760000619,218,0 +170760000667,218,0 +170760000715,219,0 +170760000765,219,0 +170760000812,220,0 +170760000860,220,0 +170760000910,221,0 +170760000958,222,0 +170760001006,222,0 +170760001055,222,0 +170760001103,216,0 +170760001151,216,0 +170760001199,216,0 +170760001247,217,0 +170760001295,218,0 +170760001344,218,0 +170760001392,218,0 +170760001440,218,0 +170760001488,219,0 +170760001537,219,0 +170760001585,220,0 +170760001633,220,0 +170760001683,221,0 +170760001731,222,0 +170760001778,223,0 +170760001827,223,0 +170760001875,223,0 +170760001922,222,0 +170760001972,221,0 +170760002020,216,0 +170760002068,215,0 +170760002116,215,0 +170760002164,216,0 +170760002211,216,0 +170760002259,217,0 +170760002307,217,0 +170760002355,217,0 +170760002403,218,0 +170760002451,220,0 +170760002498,219,0 +170760002546,219,0 +170760002594,220,0 +170760002642,220,0 +170760002690,221,0 +170760002738,221,0 +170760002786,221,0 +170760002834,222,0 +170760002882,222,0 +170760002931,221,0 +170760002979,215,0 +170760003027,215,0 +170760003077,215,0 +170760003125,215,0 +170760003172,215,0 +170760003220,215,0 +170760003268,216,0 +170760003316,217,0 +170760003364,218,0 +170760003411,218,0 +170760003459,219,0 +170760003509,219,0 +170760003558,220,0 +170760003606,220,0 +170760003654,221,0 +170760003702,221,0 +170760003749,221,0 +170760003797,222,0 +170760003845,221,0 +170760003893,216,0 +170760003941,215,0 +170760003989,215,0 +170760004037,215,0 +170760004085,215,0 +170760004132,215,0 +170760004182,216,0 +170760004230,217,0 +170760004278,216,0 +170760004326,217,0 +170760004374,218,0 +170760004421,218,0 +170760004471,220,0 +170760004520,220,0 +170760004568,220,0 +170760004618,220,0 +170760004666,221,0 +170760004714,220,0 +170760004761,221,0 +170760004809,216,0 +170760004857,215,0 +170760004905,215,0 +170760004953,215,0 +170760005001,215,0 +170760005049,215,0 +170760005097,215,0 +170760005144,216,0 +170760005192,216,0 +170760005240,217,0 +170760005288,217,0 +170760005335,218,0 +170760005383,219,0 +170760005431,219,0 +170760005479,221,0 +170760005527,220,0 +170760005574,221,0 +170760005622,220,0 +170760005670,221,0 +170760005718,222,0 +170760005766,215,0 +170760005814,215,0 +170760005861,215,0 +170760005909,215,0 +170760005957,215,0 +170760006005,216,0 +170760006053,216,0 +170760006100,217,0 +170760006148,218,0 +170760006196,218,0 +170760006246,219,0 +170760006294,220,0 +170760006341,220,0 +170760006389,220,0 +170760006437,221,0 +170760006485,219,0 +170760006533,222,0 +170760006583,221,0 +170760006631,220,0 +170760006680,216,0 +170760006728,215,0 +170760006776,215,0 +170760006824,216,0 +170760006871,216,0 +170760006921,217,0 +170760006970,217,0 +170760007018,217,0 +170760007068,218,0 +170760007117,219,0 +170760007167,219,0 +170760007215,220,0 +170760007263,220,0 +170760007311,221,0 +170760007358,221,0 +170760007406,221,0 +170760007454,221,0 +170760007502,222,0 +170760007552,221,0 +170760007600,216,0 +170760007647,215,0 +170760007697,215,0 +170760007745,216,0 +170760007793,217,0 +170760007841,217,0 +170760007889,217,0 +170760007936,218,0 +170760007984,218,0 +170760008032,219,0 +170760008080,220,0 +170760008128,221,0 +170760008176,221,0 +170760008226,221,0 +170760008275,221,0 +170760008324,221,0 +170760008374,222,0 +170760008422,222,0 +170760008470,221,0 +170760008517,216,0 +170760008565,215,0 +170760008613,216,0 +170760008661,216,0 +170760008709,217,0 +170760008757,217,0 +170760008804,217,0 +170760008852,217,0 +170760008900,218,0 +170760008948,218,0 +170760008996,219,0 +170760009043,220,0 +170760009093,220,0 +170760009141,221,0 +170760009188,222,0 +170760009236,221,0 +170760009284,223,0 +170760009332,223,0 +170760009380,222,0 +170760009428,221,0 +170760009475,215,0 +170760009525,216,0 +170760009574,216,0 +170760009624,217,0 +170760009672,217,0 +170760009720,217,0 +170760009768,218,0 +170760009815,218,0 +170760009863,219,0 +170760009911,220,0 +170760009961,221,0 +170760010009,220,0 +170760010057,221,0 +170760010104,223,0 +170760010154,222,0 +170760010203,223,0 +170760010251,222,0 +170760010299,223,0 +170760010347,222,0 +170760010395,216,0 +170760010443,216,0 +170760010490,216,0 +170760010538,218,0 +170760010586,217,0 +170760010636,218,0 +170760010685,218,0 +170760010733,219,0 +170760010781,219,0 +170760010829,221,0 +170760010877,221,0 +170760010926,221,0 +170760010974,221,0 +170760011024,222,0 +170760011072,222,0 +170760011119,222,0 +170760011167,222,0 +170760011217,223,0 +170760011265,222,0 +170760011313,216,0 +170760011361,215,0 +170760011410,216,0 +170760011458,217,0 +170760011506,217,0 +170760011554,218,0 +170760011602,218,0 +170760011650,218,0 +170760011698,219,0 +170760011747,220,0 +170760011795,220,0 +170760011843,221,0 +170760011891,222,0 +170760011939,222,0 +170760011986,222,0 +170760012036,222,0 +170760012084,221,0 +170760012131,221,0 +170760012179,221,0 +170760012227,217,0 +170760012275,215,0 +170760012323,215,0 +170760012371,215,0 +170760012418,215,0 +170760012466,215,0 +170760012514,215,0 +170760012562,216,0 +170760012610,217,0 +170760012658,217,0 +170760012707,218,0 +170760012755,218,0 +170760012803,220,0 +170760012851,220,0 +170760012899,221,0 +170760012947,221,0 +170760012995,222,0 +170760013042,222,0 +170760013090,222,0 +170760013138,221,0 +170760013186,215,0 +170760013234,214,0 +170760013282,215,0 +170760013329,215,0 +170760013377,215,0 +170760013427,215,0 +170760013474,215,0 +170760013522,216,0 +170760013570,216,0 +170760013618,217,0 +170760013666,218,0 +170760013713,219,0 +170760013761,220,0 +170760013809,220,0 +170760013857,221,0 +170760013906,221,0 +170760013954,221,0 +170760014002,222,0 +170760014051,221,0 +170760014099,216,0 +170760014147,215,0 +170760014195,215,0 +170760014243,215,0 +170760014291,215,0 +170760014338,215,0 +170760014386,216,0 +170760014434,216,0 +170760014482,217,0 +170760014530,218,0 +170760014578,218,0 +170760014625,219,0 +170760014675,220,0 +170760014723,220,0 +170760014770,220,0 +170760014818,220,0 +170760014866,221,0 +170760014914,221,0 +170760014962,222,0 +170760015010,216,0 +170760015057,215,0 +170760015105,215,0 +170760015153,215,0 +170760015201,215,0 +170760015249,215,0 +170760015297,216,0 +170760015344,216,0 +170760015392,217,0 +170760015440,217,0 +170760015488,218,0 +170760015536,219,0 +170760015584,219,0 +170760015633,219,0 +170760015681,221,0 +170760015729,221,0 +170760015776,222,0 +170760015824,222,0 +170760015872,221,0 +170760015920,221,0 +170760015968,215,0 +170760016016,215,0 +170760016064,215,0 +170760016111,215,0 +170760016161,215,0 +170760016209,215,0 +170760016256,216,0 +170760016304,216,0 +170760016352,217,0 +170760016400,218,0 +170760016448,219,0 +170760016496,219,0 +170760016544,220,0 +170760016591,220,0 +170760016639,221,0 +170760016687,221,0 +170760016735,221,0 +170760016783,221,0 +170760016832,221,0 +170760016880,216,0 +170760016930,215,0 +170760016979,215,0 +170760017027,215,0 +170760017075,215,0 +170760017123,216,0 +170760017171,217,0 +170760017220,217,0 +170760017270,218,0 +170760017318,219,0 +170760017365,219,0 +170760017413,220,0 +170760017461,221,0 +170760017511,221,0 +170760017560,222,0 +170760017608,222,0 +170760017656,222,0 +170760017704,222,0 +170760017752,222,0 +170760017799,216,0 +170760017847,215,0 +170760017895,216,0 +170760017943,216,0 +170760017990,217,0 +170760018038,218,0 +170760018086,219,0 +170760018134,218,0 +170760018182,219,0 +170760018230,220,0 +170760018277,220,0 +170760018325,221,0 +170760018373,221,0 +170760018421,221,0 +170760018469,223,0 +170760018517,222,0 +170760018565,221,0 +170760018612,222,0 +170760018662,222,0 +170760018710,221,0 +170760018758,216,0 +170760018805,216,0 +170760018853,216,0 +170760018901,217,0 +170760018949,217,0 +170760018997,217,0 +170760019045,219,0 +170760019093,218,0 +170760019141,218,0 +170760019188,219,0 +170760019236,219,0 +170760019284,220,0 +170760019332,220,0 +170760019380,221,0 +170760019428,220,0 +170760019476,221,0 +170760019523,221,0 +170760019573,223,0 +170760019621,222,0 +170760019669,217,0 +170760019718,216,0 +170760019768,216,0 +170760019817,217,0 +170760019867,217,0 +170760019915,219,0 +170760019963,218,0 +170760020012,220,0 +170760020060,219,0 +170760020108,220,0 +170760020156,219,0 +170760020204,220,0 +170760020252,221,0 +170760020300,222,0 +170760020347,221,0 +170760020395,222,0 +170760020443,223,0 +170760020491,222,0 +170760020538,222,0 +170760020586,216,0 +170760020634,216,0 +170760020682,216,0 +170760020730,216,0 +170760020778,217,0 +170760020826,217,0 +170760020876,218,0 +170760020923,219,0 +170760020971,219,0 +170760021019,220,0 +170760021067,220,0 +170760021117,221,0 +170760021166,222,0 +170760021214,221,0 +170760021262,223,0 +170760021310,222,0 +170760021358,222,0 +170760021406,222,0 +170760021454,225,0 +170760021502,221,0 +170760021550,216,0 +170760021597,216,0 +170760021645,217,0 +170760021693,217,0 +170760021741,217,0 +170760021791,217,0 +170760021839,218,0 +170760021886,219,0 +170760021934,219,0 +170760021984,220,0 +170760022032,220,0 +170760022080,221,0 +170760022128,222,0 +170760022176,223,0 +170760022223,221,0 +170760022273,224,0 +170760022321,222,0 +170760022370,222,0 +170760022418,221,0 +170760022468,215,0 +170760022516,215,0 +170760022565,216,0 +170760022613,217,0 +170760022661,217,0 +170760022709,218,0 +170760022758,218,0 +170760022806,219,0 +170760022854,220,0 +170760022902,220,0 +170760022950,221,0 +170760022998,221,0 +170760023046,221,0 +170760023095,222,0 +170760023143,222,0 +170760023191,222,0 +170760023238,223,0 +170760023286,222,0 +170760023336,222,0 +170760023384,216,0 +170760023432,215,0 +170760023481,215,0 +170760023529,216,0 +170760023577,216,0 +170760023626,217,0 +170760023674,217,0 +170760023722,217,0 +170760023770,219,0 +170760023818,219,0 +170760023867,219,0 +170760023915,220,0 +170760023963,220,0 +170760024011,222,0 +170760024059,222,0 +170760024107,222,0 +170760024156,222,0 +170760024204,221,0 +170760024252,223,0 +170760024300,216,0 +170760024348,215,0 +170760024396,216,0 +170760024444,216,0 +170760024492,217,0 +170760024541,217,0 +170760024589,218,0 +170760024637,218,0 +170760024685,219,0 +170760024734,219,0 +170760024782,220,0 +170760024832,221,0 +170760024880,221,0 +170760024928,222,0 +170760024975,222,0 +170760025023,222,0 +170760025073,222,0 +170760025121,222,0 +170760025170,223,0 +170760025218,221,0 +170760025266,215,0 +170760025314,216,0 +170760025363,216,0 +170760025413,217,0 +170760025461,218,0 +170760025509,219,0 +170760025556,219,0 +170760025604,218,0 +170760025652,219,0 +170760025700,219,0 +170760025748,220,0 +170760025798,221,0 +170760025845,222,0 +170760025895,222,0 +170760025943,222,0 +170760025992,223,0 +170760026040,222,0 +170760026090,222,0 +170760026138,222,0 +170760026186,216,0 +170760026235,215,0 +170760026283,216,0 +170760026333,217,0 +170760026380,217,0 +170760026428,217,0 +170760026476,217,0 +170760026524,218,0 +170760026572,218,0 +170760026619,219,0 +170760026667,220,0 +170760026717,221,0 +170760026765,221,0 +170760026814,221,0 +170760026862,222,0 +170760026911,222,0 +170760026961,222,0 +170760027009,222,0 +170760027057,221,0 +170760027105,216,0 +170760027152,215,0 +170760027200,216,0 +170760027248,216,0 +170760027296,217,0 +170760027345,217,0 +170760027393,217,0 +170760027441,218,0 +170760027489,218,0 +170760027539,220,0 +170760027587,221,0 +170760027634,220,0 +170760027684,221,0 +170760027732,221,0 +170760027780,222,0 +170760027828,222,0 +170760027877,223,0 +170760027925,223,0 +170760027975,222,0 +170760028023,216,0 +170760028070,215,0 +170760028120,215,0 +170760028168,216,0 +170760028216,217,0 +170760028264,218,0 +170760028312,217,0 +170760028361,218,0 +170760028411,219,0 +170760028459,219,0 +170760028507,220,0 +170760028554,220,0 +170760028602,221,0 +170760028650,221,0 +170760028698,221,0 +170760028746,222,0 +170760028794,222,0 +170760028842,222,0 +170760028891,222,0 +170760028939,217,0 +170760028989,215,0 +170760029037,215,0 +170760029086,216,0 +170760029134,216,0 +170760029184,217,0 +170760029232,217,0 +170760029280,218,0 +170760029327,218,0 +170760029377,219,0 +170760029425,219,0 +170760029473,219,0 +170760029522,221,0 +170760029572,221,0 +170760029621,223,0 +170760029671,221,0 +170760029719,221,0 +170760029767,222,0 +170760029816,221,0 +170760029866,216,0 +170760029914,215,0 +170760029962,215,0 +170760030011,216,0 +170760030059,216,0 +170760030107,217,0 +170760030156,217,0 +170760030204,217,0 +170760030252,219,0 +170760030302,219,0 +170760030350,220,0 +170760030397,220,0 +170760030447,221,0 +170760030495,221,0 +170760030543,222,0 +170760030591,222,0 +170760030639,221,0 +170760030687,222,0 +170760030736,222,0 +170760030784,220,0 +170760030834,215,0 +170760030881,215,0 +170760030929,215,0 +170760030979,216,0 +170760031027,217,0 +170760031075,217,0 +170760031122,218,0 +170760031170,217,0 +170760031220,218,0 +170760031268,219,0 +170760031316,220,0 +170760031364,220,0 +170760031412,221,0 +170760031460,221,0 +170760031509,221,0 +170760031557,222,0 +170760031605,221,0 +170760031653,222,0 +170760031701,221,0 +170760031749,215,0 +170760031797,215,0 +170760031846,215,0 +170760031896,216,0 +170760031944,216,0 +170760031991,217,0 +170760032039,217,0 +170760032089,217,0 +170760032138,218,0 +170760032186,219,0 +170760032234,220,0 +170760032282,220,0 +170760032330,221,0 +170760032378,221,0 +170760032427,222,0 +170760032477,222,0 +170760032526,222,0 +170760032574,222,0 +170760032622,221,0 +170760032670,216,0 +170760032718,215,0 +170760032766,215,0 +170760032814,215,0 +170760032863,216,0 +170760032911,216,0 +170760032959,216,0 +170760033007,217,0 +170760033055,217,0 +170760033103,218,0 +170760033151,219,0 +170760033200,219,0 +170760033248,220,0 +170760033298,222,0 +170760033347,222,0 +170760033395,222,0 +170760033443,221,0 +170760033491,222,0 +170760033539,220,0 +170760033588,215,0 +170760033638,216,0 +170760033687,215,0 +170760033735,215,0 +170760033783,215,0 +170760033831,216,0 +170760033881,216,0 +170760033930,217,0 +170760033978,217,0 +170760034026,218,0 +170760034074,218,0 +170760034123,219,0 +170760034171,220,0 +170760034219,220,0 +170760034269,222,0 +170760034318,221,0 +170760034366,221,0 +170760034414,221,0 +170760034462,221,0 +170760034510,216,0 +170760034558,215,0 +170760034606,215,0 +170760034655,215,0 +170760034703,215,0 +170760034751,215,0 +170760034799,215,0 +170760034847,216,0 +170760034896,217,0 +170760034944,217,0 +170760034992,217,0 +170760035040,218,0 +170760035088,218,0 +170760035136,219,0 +170760035184,219,0 +170760035232,218,0 +170760035279,219,0 +170760035327,219,0 +170760035377,221,0 +170760035426,216,0 +170760035476,215,0 +170760035524,215,0 +170760035572,215,0 +170760035621,215,0 +170760035669,215,0 +170760035717,215,0 +170760035765,216,0 +170760035814,216,0 +170760035862,216,0 +170760035910,216,0 +170760035958,218,0 +170760036007,218,0 +170760036055,219,0 +170760036105,219,0 +170760036153,220,0 +170760036202,221,0 +170760036250,221,0 +170760036298,221,0 +170760036346,221,0 +170760036395,215,0 +170760036445,215,0 +170760036494,215,0 +170760036542,215,0 +170760036590,215,0 +170760036638,216,0 +170760036688,216,0 +170760036735,217,0 +170760036783,217,0 +170760036833,218,0 +170760036882,218,0 +170760036932,220,0 +170760036980,220,0 +170760037029,221,0 +170760037077,221,0 +170760037125,221,0 +170760037174,221,0 +170760037222,222,0 +170760037272,218,0 +170760037320,215,0 +170760037368,215,0 +170760037415,215,0 +170760037463,216,0 +170760037513,217,0 +170760037562,217,0 +170760037610,218,0 +170760037658,218,0 +170760037706,219,0 +170760037754,220,0 +170760037802,220,0 +170760037850,221,0 +170760037898,221,0 +170760037946,221,0 +170760037994,222,0 +170760038041,222,0 +170760038091,222,0 +170760038140,223,0 +170760038190,222,0 +170760038238,215,0 +170760038287,215,0 +170760038335,216,0 +170760038383,216,0 +170760038431,217,0 +170760038479,217,0 +170760038527,218,0 +170760038575,219,0 +170760038623,219,0 +170760038672,219,0 +170760038722,220,0 +170760038771,221,0 +170760038821,221,0 +170760038868,221,0 +170760038916,222,0 +170760038964,222,0 +170760039012,221,0 +170760039060,222,0 +170760039108,221,0 +170760039156,216,0 +170760039205,215,0 +170760039253,216,0 +170760039301,216,0 +170760039351,217,0 +170760039399,217,0 +170760039447,217,0 +170760039494,217,0 +170760039542,218,0 +170760039590,218,0 +170760039640,220,0 +170760039688,220,0 +170760039736,220,0 +170760039784,221,0 +170760039832,220,0 +170760039881,222,0 +170760039930,221,0 +170760039978,222,0 +170760040026,222,0 +170760040074,216,0 +170760040122,216,0 +170760040172,217,0 +170760040221,217,0 +170760040269,217,0 +170760040317,217,0 +170760040365,218,0 +170760040413,218,0 +170760040461,219,0 +170760040509,219,0 +170760040558,220,0 +170760040606,220,0 +170760040654,220,0 +170760040703,221,0 +170760040751,221,0 +170760040801,223,0 +170760040849,223,0 +170760040897,222,0 +170760040944,222,0 +170760040992,216,0 +170760041040,216,0 +170760041088,217,0 +170760041136,217,0 +170760041184,217,0 +170760041232,218,0 +170760041281,218,0 +170760041329,219,0 +170760041377,220,0 +170760041425,220,0 +170760041474,221,0 +170760041524,222,0 +170760041572,221,0 +170760041620,222,0 +170760041668,222,0 +170760041716,223,0 +170760041763,223,0 +170760041811,222,0 +170760041859,222,0 +170760041907,217,0 +170760041955,216,0 +170760042003,217,0 +170760042053,217,0 +170760042101,218,0 +170760042149,218,0 +170760042196,219,0 +170760042246,219,0 +170760042294,220,0 +170760042343,220,0 +170760042393,220,0 +170760042441,221,0 +170760042490,222,0 +170760042538,223,0 +170760042586,223,0 +170760042635,222,0 +170760042683,223,0 +170760042733,222,0 +170760042781,221,0 +170760042829,221,0 +170760042877,216,0 +170760042926,216,0 +170760042975,217,0 +170760043023,218,0 +170760043073,218,0 +170760043121,219,0 +170760043169,219,0 +170760043217,221,0 +170760043265,220,0 +170760043314,220,0 +170760043362,222,0 +170760043410,222,0 +170760043458,222,0 +170760043506,222,0 +170760043555,223,0 +170760043603,223,0 +170760043651,222,0 +170760043699,222,0 +170760043747,222,0 +170760043795,216,0 +170760043844,216,0 +170760043892,217,0 +170760043942,218,0 +170760043991,218,0 +170760044039,218,0 +170760044087,219,0 +170760044135,219,0 +170760044183,219,0 +170760044231,219,0 +170760044279,221,0 +170760044327,222,0 +170760044376,222,0 +170760044424,222,0 +170760044474,222,0 +170760044522,223,0 +170760044569,222,0 +170760044617,222,0 +170760044665,221,0 +170760044713,215,0 +170760044761,215,0 +170760044809,216,0 +170760044857,217,0 +170760044905,217,0 +170760044955,218,0 +170760045002,218,0 +170760045050,218,0 +170760045100,220,0 +170760045149,221,0 +170760045199,220,0 +170760045247,221,0 +170760045295,222,0 +170760045343,223,0 +170760045392,222,0 +170760045440,221,0 +170760045488,223,0 +170760045536,222,0 +170760045585,222,0 +170760045635,216,0 +170760045683,215,0 +170760045731,216,0 +170760045778,216,0 +170760045826,217,0 +170760045876,217,0 +170760045925,217,0 +170760045973,218,0 +170760046021,219,0 +170760046069,219,0 +170760046117,220,0 +170760046165,221,0 +170760046214,221,0 +170760046262,221,0 +170760046310,221,0 +170760046358,221,0 +170760046406,223,0 +170760046454,223,0 +170760046502,222,0 +170760046551,216,0 +170760046599,215,0 +170760046647,216,0 +170760046695,216,0 +170760046743,216,0 +170760046791,217,0 +170760046839,216,0 +170760046887,218,0 +170760046934,218,0 +170760046984,218,0 +170760047032,219,0 +170760047080,219,0 +170760047129,222,0 +170760047179,221,0 +170760047227,222,0 +170760047275,222,0 +170760047323,222,0 +170760047371,222,0 +170760047420,222,0 +170760047468,216,0 +170760047516,215,0 +170760047564,215,0 +170760047612,215,0 +170760047660,216,0 +170760047708,216,0 +170760047756,217,0 +170760047805,217,0 +170760047853,218,0 +170760047901,218,0 +170760047950,219,0 +170760048000,219,0 +170760048048,220,0 +170760048097,220,0 +170760048145,221,0 +170760048193,222,0 +170760048241,222,0 +170760048289,222,0 +170760048337,222,0 +170760048387,216,0 +170760048436,215,0 +170760048484,215,0 +170760048532,215,0 +170760048581,216,0 +170760048629,217,0 +170760048677,217,0 +170760048725,218,0 +170760048774,218,0 +170760048824,219,0 +170760048873,219,0 +170760048921,219,0 +170760048971,221,0 +170760049020,220,0 +170760049068,220,0 +170760049116,222,0 +170760049164,222,0 +170760049212,221,0 +170760049260,222,0 +170760049307,221,0 +170760049355,215,0 +170760049403,215,0 +170760049451,215,0 +170760049499,215,0 +170760049547,215,0 +170760049595,216,0 +170760049644,216,0 +170760049692,216,0 +170760049740,216,0 +170760049788,218,0 +170760049836,218,0 +170760049884,219,0 +170760049932,219,0 +170760049979,220,0 +170760050027,221,0 +170760050077,221,0 +170760050125,221,0 +170760050173,221,0 +170760050222,221,0 +170760050270,215,0 +170760050320,215,0 +170760050369,215,0 +170760050417,215,0 +170760050465,215,0 +170760050513,215,0 +170760050561,216,0 +170760050609,217,0 +170760050658,217,0 +170760050708,218,0 +170760050756,218,0 +170760050804,219,0 +170760050852,220,0 +170760050901,221,0 +170760050949,221,0 +170760050998,221,0 +170760051046,222,0 +170760051096,222,0 +170760051145,222,0 +170760051193,215,0 +170760051241,215,0 +170760051289,215,0 +170760051339,215,0 +170760051388,215,0 +170760051436,216,0 +170760051485,216,0 +170760051533,217,0 +170760051581,217,0 +170760051629,218,0 +170760051678,218,0 +170760051726,219,0 +170760051774,220,0 +170760051822,220,0 +170760051870,220,0 +170760051918,221,0 +170760051966,219,0 +170760052015,222,0 +170760052063,222,0 +170760052113,216,0 +170760052161,215,0 +170760052209,215,0 +170760052257,215,0 +170760052305,216,0 +170760052352,216,0 +170760052402,217,0 +170760052450,217,0 +170760052498,218,0 +170760052547,218,0 +170760052597,219,0 +170760052646,219,0 +170760052694,220,0 +170760052744,221,0 +170760052792,221,0 +170760052840,222,0 +170760052888,221,0 +170760052936,222,0 +170760052985,222,0 +170760053035,216,0 +170760053082,215,0 +170760053132,215,0 +170760053180,215,0 +170760053228,215,0 +170760053276,215,0 +170760053323,217,0 +170760053371,216,0 +170760053419,217,0 +170760053467,217,0 +170760053515,218,0 +170760053564,219,0 +170760053612,219,0 +170760053660,219,0 +170760053708,220,0 +170760053757,221,0 +170760053805,220,0 +170760053853,219,0 +170760053901,225,0 +170760053949,216,0 +170760053996,215,0 +170760054044,215,0 +170760054092,215,0 +170760054140,215,0 +170760054188,215,0 +170760054237,215,0 +170760054285,215,0 +170760054333,216,0 +170760054381,216,0 +170760054428,215,0 +170760054478,217,0 +170760054526,217,0 +170760054573,218,0 +170760054621,219,0 +170760054669,219,0 +170760054717,219,0 +170760054765,219,0 +170760054813,222,0 +170760054862,218,0 +170760054912,215,0 +170760054959,215,0 +170760055007,215,0 +170760055055,215,0 +170760055103,216,0 +170760055151,217,0 +170760055199,217,0 +170760055247,218,0 +170760055294,218,0 +170760055342,219,0 +170760055390,219,0 +170760055438,220,0 +170760055486,220,0 +170760055533,220,0 +170760055581,221,0 +170760055629,220,0 +170760055677,221,0 +170760055725,221,0 +170760055773,220,0 +170760055822,216,0 +170760055872,216,0 +170760055920,216,0 +170760055968,217,0 +170760056016,218,0 +170760056063,218,0 +170760056111,218,0 +170760056159,220,0 +170760056207,222,0 +170760056255,219,0 +170760056303,221,0 +170760056351,221,0 +170760056399,221,0 +170760056447,222,0 +170760056496,222,0 +170760056544,222,0 +170760056593,222,0 +170760056643,222,0 +170760056691,221,0 +170760056740,218,0 +170760056788,217,0 +170760056836,218,0 +170760056886,218,0 +170760056933,219,0 +170760056981,219,0 +170760057029,220,0 +170760057079,220,0 +170760057127,221,0 +170760057176,222,0 +170760057224,221,0 +170760057273,222,0 +170760057321,223,0 +170760057371,222,0 +170760057419,222,0 +170760057467,222,0 +170760057514,222,0 +170760057562,222,0 +170760057610,221,0 +170760057658,219,0 +170760057706,218,0 +170760057754,219,0 +170760057802,219,0 +170760057850,220,0 +170760057898,221,0 +170760057946,221,0 +170760057994,221,0 +170760058042,221,0 +170760058090,222,0 +170760058139,222,0 +170760058187,222,0 +170760058236,222,0 +170760058284,222,0 +170760058332,222,0 +170760058382,222,0 +170760058431,223,0 +170760058479,222,0 +170760058527,221,0 +170760058575,217,0 +170760058623,217,0 +170760058671,217,0 +170760058720,218,0 +170760058768,218,0 +170760058817,219,0 +170760058865,219,0 +170760058913,220,0 +170760058961,220,0 +170760059011,219,0 +170760059060,222,0 +170760059108,222,0 +170760059156,222,0 +170760059206,221,0 +170760059255,222,0 +170760059303,222,0 +170760059351,222,0 +170760059399,222,0 +170760059447,222,0 +170760059495,221,0 +170760059543,216,0 +170760059591,216,0 +170760059639,217,0 +170760059687,217,0 +170760059735,217,0 +170760059782,218,0 +170760059830,218,0 +170760059878,218,0 +170760059928,219,0 +170760059976,219,0 +170760060023,217,0 +170760060071,215,0 +170760060119,220,0 +170760060167,221,0 +170760060215,221,0 +170760060263,220,0 +170760060312,220,0 +170760060360,221,0 +170760060408,223,0 +170760060456,215,0 +170760060504,215,0 +170760060552,216,0 +170760060600,216,0 +170760060647,216,0 +170760060695,217,0 +170760060743,217,0 +170760060791,218,0 +170760060840,218,0 +170760060890,219,0 +170760060938,219,0 +170760060986,220,0 +170760061034,220,0 +170760061081,221,0 +170760061129,222,0 +170760061177,223,0 +170760061227,222,0 +170760061275,221,0 +170760061323,222,0 +170760061371,216,0 +170760061420,216,0 +170760061469,216,0 +170760061517,217,0 +170760061565,217,0 +170760061613,218,0 +170760061661,218,0 +170760061709,218,0 +170760061757,219,0 +170760061805,218,0 +170760061854,220,0 +170760061902,221,0 +170760061950,220,0 +170760062000,221,0 +170760062048,222,0 +170760062095,222,0 +170760062143,222,0 +170760062191,222,0 +170760062239,222,0 +170760062287,217,0 +170760062336,216,0 +170760062384,216,0 +170760062432,216,0 +170760062482,217,0 +170760062530,217,0 +170760062578,218,0 +170760062626,218,0 +170760062674,219,0 +170760062721,220,0 +170760062771,220,0 +170760062819,220,0 +170760062867,221,0 +170760062916,222,0 +170760062964,220,0 +170760063012,221,0 +170760063060,223,0 +170760063108,221,0 +170760063158,221,0 +170760063206,221,0 +170760063253,215,0 +170760063301,215,0 +170760063350,215,0 +170760063398,216,0 +170760063446,216,0 +170760063494,217,0 +170760063542,217,0 +170760063590,218,0 +170760063637,218,0 +170760063687,218,0 +170760063735,219,0 +170760063783,219,0 +170760063830,219,0 +170760063878,220,0 +170760063926,219,0 +170760063974,219,0 +170760064022,218,0 +170760064070,221,0 +170760064117,221,0 +170760064167,215,0 +170760064215,215,0 +170760064263,215,0 +170760064311,215,0 +170760064360,215,0 +170760064408,215,0 +170760064456,215,0 +170760064505,215,0 +170760064553,216,0 +170760064601,216,0 +170760064649,217,0 +170760064697,218,0 +170760064745,218,0 +170760064793,219,0 +170760064841,219,0 +170760064889,219,0 +170760064938,220,0 +170760064986,221,0 +170760065034,221,0 +170760065084,215,0 +170760065133,215,0 +170760065181,215,0 +170760065229,215,0 +170760065277,215,0 +170760065325,215,0 +170760065372,216,0 +170760065420,216,0 +170760065468,217,0 +170760065516,218,0 +170760065564,218,0 +170760065612,219,0 +170760065660,219,0 +170760065708,220,0 +170760065755,221,0 +170760065803,221,0 +170760065851,221,0 +170760065899,221,0 +170760065947,221,0 +170760065995,218,0 +170760066043,215,0 +170760066091,215,0 +170760066138,215,0 +170760066186,215,0 +170760066234,216,0 +170760066282,216,0 +170760066330,216,0 +170760066378,217,0 +170760066426,218,0 +170760066474,218,0 +170760066521,219,0 +170760066569,219,0 +170760066617,220,0 +170760066665,220,0 +170760066713,222,0 +170760066761,221,0 +170760066809,222,0 +170760066857,222,0 +170760066905,221,0 +170760066953,215,0 +170760067001,215,0 +170760067048,215,0 +170760067096,215,0 +170760067146,216,0 +170760067195,216,0 +170760067243,216,0 +170760067291,217,0 +170760067339,217,0 +170760067387,218,0 +170760067437,218,0 +170760067486,220,0 +170760067534,220,0 +170760067582,220,0 +170760067630,217,0 +170760067678,219,0 +170760067725,220,0 +170760067773,222,0 +170760067821,222,0 +170760067869,215,0 +170760067918,214,0 +170760067966,215,0 +170760068014,215,0 +170760068062,215,0 +170760068110,215,0 +170760068158,215,0 +170760068205,215,0 +170760068253,216,0 +170760068301,217,0 +170760068351,217,0 +170760068399,218,0 +170760068446,219,0 +170760068494,219,0 +170760068542,219,0 +170760068590,220,0 +170760068639,221,0 +170760068689,221,0 +170760068737,222,0 +170760068785,216,0 +170760068833,215,0 +170760068882,215,0 +170760068932,215,0 +170760068979,216,0 +170760069027,217,0 +170760069075,217,0 +170760069123,218,0 +170760069171,218,0 +170760069219,219,0 +170760069267,219,0 +170760069315,219,0 +170760069364,220,0 +170760069412,221,0 +170760069461,222,0 +170760069509,221,0 +170760069557,221,0 +170760069607,223,0 +170760069656,221,0 +170760069706,216,0 +170760069754,215,0 +170760069801,215,0 +170760069849,216,0 +170760069899,216,0 +170760069947,217,0 +170760069996,217,0 +170760070044,217,0 +170760070092,218,0 +170760070140,219,0 +170760070188,220,0 +170760070238,220,0 +170760070286,220,0 +170760070335,221,0 +170760070383,224,0 +170760070433,221,0 +170760070482,222,0 +170760070531,222,0 +170760070579,221,0 +170760070627,216,0 +170760070675,215,0 +170760070725,216,0 +170760070774,216,0 +170760070822,216,0 +170760070871,217,0 +170760070919,217,0 +170760070969,218,0 +170760071017,218,0 +170760071065,218,0 +170760071113,219,0 +170760071161,220,0 +170760071208,221,0 +170760071256,220,0 +170760071304,222,0 +170760071352,222,0 +170760071400,222,0 +170760071448,222,0 +170760071496,222,0 +170760071546,216,0 +170760071594,215,0 +170760071641,216,0 +170760071691,217,0 +170760071739,216,0 +170760071788,218,0 +170760071836,219,0 +170760071886,219,0 +170760071934,219,0 +170760071982,220,0 +170760072029,220,0 +170760072077,221,0 +170760072125,221,0 +170760072173,222,0 +170760072223,223,0 +170760072271,224,0 +170760072320,222,0 +170760072370,223,0 +170760072419,222,0 +170760072469,218,0 +170760072517,216,0 +170760072565,216,0 +170760072613,217,0 +170760072662,217,0 +170760072710,218,0 +170760072758,218,0 +170760072806,218,0 +170760072854,219,0 +170760072902,219,0 +170760072950,220,0 +170760072998,222,0 +170760073046,222,0 +170760073093,224,0 +170760073141,222,0 +170760073191,223,0 +170760073240,223,0 +170760073288,223,0 +170760073336,222,0 +170760073384,217,0 +170760073432,217,0 +170760073482,217,0 +170760073529,218,0 +170760073577,218,0 +170760073625,219,0 +170760073673,220,0 +170760073721,220,0 +170760073771,221,0 +170760073819,222,0 +170760073867,222,0 +170760073914,222,0 +170760073964,223,0 +170760074012,223,0 +170760074060,224,0 +170760074108,223,0 +170760074156,223,0 +170760074204,222,0 +170760074253,222,0 +170760074301,220,0 +170760074349,217,0 +170760074397,217,0 +170760074445,217,0 +170760074494,218,0 +170760074542,219,0 +170760074591,219,0 +170760074639,219,0 +170760074689,219,0 +170760074737,221,0 +170760074785,221,0 +170760074833,222,0 +170760074881,222,0 +170760074929,223,0 +170760074976,222,0 +170760075024,222,0 +170760075072,223,0 +170760075120,223,0 +170760075170,222,0 +170760075219,222,0 +170760075267,216,0 +170760075316,215,0 +170760075366,216,0 +170760075415,217,0 +170760075463,217,0 +170760075513,218,0 +170760075562,218,0 +170760075610,219,0 +170760075660,219,0 +170760075709,221,0 +170760075757,222,0 +170760075805,221,0 +170760075853,221,0 +170760075902,222,0 +170760075950,223,0 +170760076000,222,0 +170760076048,222,0 +170760076097,223,0 +170760076145,222,0 +170760076194,216,0 +170760076242,215,0 +170760076292,216,0 +170760076340,216,0 +170760076388,217,0 +170760076435,217,0 +170760076483,218,0 +170760076531,218,0 +170760076581,219,0 +170760076630,220,0 +170760076679,221,0 +170760076727,221,0 +170760076775,222,0 +170760076823,222,0 +170760076871,222,0 +170760076921,222,0 +170760076969,222,0 +170760077018,221,0 +170760077066,221,0 +170760077114,216,0 +170760077162,216,0 +170760077210,216,0 +170760077258,217,0 +170760077305,218,0 +170760077353,219,0 +170760077403,219,0 +170760077452,219,0 +170760077500,220,0 +170760077548,220,0 +170760077596,221,0 +170760077646,222,0 +170760077693,222,0 +170760077741,222,0 +170760077789,221,0 +170760077837,221,0 +170760077886,220,0 +170760077934,221,0 +170760077982,221,0 +170760078031,215,0 +170760078079,215,0 +170760078127,215,0 +170760078175,215,0 +170760078223,215,0 +170760078270,216,0 +170760078318,216,0 +170760078366,217,0 +170760078414,219,0 +170760078464,218,0 +170760078513,219,0 +170760078561,219,0 +170760078609,220,0 +170760078658,220,0 +170760078708,220,0 +170760078756,221,0 +170760078805,221,0 +170760078853,220,0 +170760078901,222,0 +170760078949,216,0 +170760078997,215,0 +170760079047,216,0 +170760079094,216,0 +170760079142,217,0 +170760079192,217,0 +170760079240,217,0 +170760079288,218,0 +170760079336,218,0 +170760079384,219,0 +170760079432,219,0 +170760079480,220,0 +170760079528,220,0 +170760079576,221,0 +170760079624,221,0 +170760079671,222,0 +170760079719,222,0 +170760079767,222,0 +170760079815,221,0 +170760079863,216,0 +170760079911,215,0 +170760079959,215,0 +170760080006,216,0 +170760080054,217,0 +170760080102,217,0 +170760080152,217,0 +170760080200,218,0 +170760080247,218,0 +170760080295,219,0 +170760080343,219,0 +170760080391,220,0 +170760080439,220,0 +170760080489,221,0 +170760080538,221,0 +170760080586,222,0 +170760080634,221,0 +170760080682,221,0 +170760080730,222,0 +170760080777,216,0 +170760080825,215,0 +170760080873,215,0 +170760080923,216,0 +170760080971,217,0 +170760081018,217,0 +170760081066,217,0 +170760081114,218,0 +170760081162,218,0 +170760081210,218,0 +170760081258,220,0 +170760081307,221,0 +170760081357,221,0 +170760081405,223,0 +170760081453,218,0 +170760081501,221,0 +170760081550,224,0 +170760081600,222,0 +170760081648,222,0 +170760081696,217,0 +170760081745,215,0 +170760081793,216,0 +170760081841,216,0 +170760081889,217,0 +170760081939,217,0 +170760081987,218,0 +170760082036,218,0 +170760082084,219,0 +170760082134,219,0 +170760082181,219,0 +170760082229,220,0 +170760082277,220,0 +170760082327,221,0 +170760082375,221,0 +170760082423,222,0 +170760082471,223,0 +170760082518,223,0 +170760082568,223,0 +170760082616,222,0 +170760082665,215,0 +170760082713,216,0 +170760082762,216,0 +170760082810,217,0 +170760082858,217,0 +170760082906,217,0 +170760082954,217,0 +170760083002,218,0 +170760083050,218,0 +170760083097,218,0 +170760083147,221,0 +170760083195,221,0 +170760083243,221,0 +170760083291,221,0 +170760083338,221,0 +170760083386,221,0 +170760083434,222,0 +170760083482,221,0 +170760083530,222,0 +170760083578,215,0 +170760083626,216,0 +170760083673,216,0 +170760083721,217,0 +170760083769,217,0 +170760083817,217,0 +170760083865,218,0 +170760083913,219,0 +170760083961,219,0 +170760084010,219,0 +170760084059,221,0 +170760084109,220,0 +170760084157,222,0 +170760084205,222,0 +170760084252,223,0 +170760084300,223,0 +170760084350,223,0 +170760084398,223,0 +170760084446,221,0 +170760084493,215,0 +170760084541,215,0 +170760084589,215,0 +170760084637,216,0 +170760084685,217,0 +170760084732,218,0 +170760084780,218,0 +170760084828,217,0 +170760084876,219,0 +170760084924,219,0 +170760084972,220,0 +170760085020,220,0 +170760085067,221,0 +170760085115,220,0 +170760085163,221,0 +170760085211,222,0 +170760085259,222,0 +170760085309,222,0 +170760085358,221,0 +170760085406,216,0 +170760085455,215,0 +170760085505,215,0 +170760085554,215,0 +170760085602,215,0 +170760085650,216,0 +170760085700,216,0 +170760085749,216,0 +170760085797,216,0 +170760085845,217,0 +170760085895,217,0 +170760085942,218,0 +170760085990,218,0 +170760086038,219,0 +170760086086,220,0 +170760086134,220,0 +170760086184,222,0 +170760086232,220,0 +170760086280,222,0 +170760086329,216,0 +170760086377,215,0 +170760086425,215,0 +170760086473,215,0 +170760086520,215,0 +170760086570,215,0 +170760086618,215,0 +170760086666,217,0 +170760086713,216,0 +170760086761,217,0 +170760086809,217,0 +170760086857,218,0 +170760086905,218,0 +170760086953,219,0 +170760087000,219,0 +170760087048,220,0 +170760087096,220,0 +170760087145,220,0 +170760087193,221,0 +170760087241,216,0 +170760087289,215,0 +170760087337,215,0 +170760087386,216,0 +170760087434,217,0 +170760087482,217,0 +170760087530,217,0 +170760087577,217,0 +170760087625,218,0 +170760087673,218,0 +170760087721,219,0 +170760087769,220,0 +170760087817,220,0 +170760087864,221,0 +170760087912,221,0 +170760087960,221,0 +170760088008,222,0 +170760088056,222,0 +170760088104,222,0 +170760088152,221,0 +170760088199,215,0 +170760088247,215,0 +170760088295,216,0 +170760088343,216,0 +170760088391,217,0 +170760088439,217,0 +170760088487,218,0 +170760088535,218,0 +170760088583,218,0 +170760088631,220,0 +170760088679,220,0 +170760088727,221,0 +170760088774,222,0 +170760088824,221,0 +170760088872,221,0 +170760088920,222,0 +170760088968,222,0 +170760089016,222,0 +170760089065,222,0 +170760089115,216,0 +170760089163,215,0 +170760089210,216,0 +170760089258,216,0 +170760089306,217,0 +170760089356,217,0 +170760089404,218,0 +170760089452,219,0 +170760089500,219,0 +170760089548,220,0 +170760089597,220,0 +170760089645,221,0 +170760089695,222,0 +170760089744,222,0 +170760089792,223,0 +170760089840,223,0 +170760089889,222,0 +170760089937,222,0 +170760089985,221,0 +170760090033,216,0 +170760090081,215,0 +170760090129,215,0 +170760090176,217,0 +170760090224,217,0 +170760090272,218,0 +170760090322,218,0 +170760090370,219,0 +170760090418,220,0 +170760090466,220,0 +170760090515,221,0 +170760090563,221,0 +170760090612,223,0 +170760090660,222,0 +170760090708,222,0 +170760090756,222,0 +170760090804,223,0 +170760090852,222,0 +170760090900,222,0 +170760090948,216,0 +170760090997,215,0 +170760091045,215,0 +170760091093,216,0 +170760091143,216,0 +170760091192,217,0 +170760091240,217,0 +170760091288,217,0 +170760091338,217,0 +170760091386,218,0 +170760091433,219,0 +170760091481,219,0 +170760091529,219,0 +170760091577,221,0 +170760091627,221,0 +170760091675,222,0 +170760091722,222,0 +170760091772,222,0 +170760091820,221,0 +170760091868,219,0 +170760091916,215,0 +170760091965,215,0 +170760092013,215,0 +170760092061,216,0 +170760092109,216,0 +170760092158,216,0 +170760092206,217,0 +170760092256,217,0 +170760092304,217,0 +170760092352,218,0 +170760092400,219,0 +170760092448,220,0 +170760092496,220,0 +170760092544,220,0 +170760092592,220,0 +170760092640,222,0 +170760092688,221,0 +170760092737,221,0 +170760092787,221,0 +170760092834,215,0 +170760092884,215,0 +170760092933,216,0 +170760092981,216,0 +170760093031,217,0 +170760093080,216,0 +170760093128,217,0 +170760093176,217,0 +170760093224,218,0 +170760093272,218,0 +170760093322,219,0 +170760093370,220,0 +170760093419,220,0 +170760093469,221,0 +170760093517,220,0 +170760093564,222,0 +170760093612,223,0 +170760093660,222,0 +170760093710,222,0 +170760093759,215,0 +170760093807,215,0 +170760093855,215,0 +170760093905,216,0 +170760093952,216,0 +170760094002,216,0 +170760094050,217,0 +170760094099,217,0 +170760094149,217,0 +170760094197,218,0 +170760094244,219,0 +170760094292,220,0 +170760094340,222,0 +170760094388,221,0 +170760094438,221,0 +170760094486,222,0 +170760094534,221,0 +170760094581,222,0 +170760094629,221,0 +170760094677,216,0 +170760094727,215,0 +170760094776,215,0 +170760094824,216,0 +170760094874,216,0 +170760094922,217,0 +170760094969,217,0 +170760095017,217,0 +170760095065,219,0 +170760095113,219,0 +170760095161,220,0 +170760095209,220,0 +170760095257,221,0 +170760095305,221,0 +170760095353,223,0 +170760095400,223,0 +170760095448,221,0 +170760095496,222,0 +170760095544,222,0 +170760095592,221,0 +170760095640,215,0 +170760095689,215,0 +170760095737,215,0 +170760095785,215,0 +170760095833,216,0 +170760095883,216,0 +170760095932,218,0 +170760095982,218,0 +170760096031,219,0 +170760096081,218,0 +170760096128,219,0 +170760096176,220,0 +170760096224,220,0 +170760096272,221,0 +170760096320,221,0 +170760096367,222,0 +170760096415,221,0 +170760096463,221,0 +170760096511,221,0 +170760096559,215,0 +170760096607,216,0 +170760096654,216,0 +170760096702,217,0 +170760096750,217,0 +170760096800,218,0 +170760096848,219,0 +170760096895,219,0 +170760096943,220,0 +170760096993,220,0 +170760097041,221,0 +170760097088,221,0 +170760097136,221,0 +170760097184,222,0 +170760097232,222,0 +170760097280,223,0 +170760097327,222,0 +170760097375,223,0 +170760097423,220,0 +170760097471,216,0 +170760097519,216,0 +170760097566,217,0 +170760097614,218,0 +170760097662,218,0 +170760097710,218,0 +170760097758,219,0 +170760097806,219,0 +170760097854,220,0 +170760097902,221,0 +170760097950,222,0 +170760097997,222,0 +170760098045,222,0 +170760098093,223,0 +170760098141,222,0 +170760098189,223,0 +170760098237,222,0 +170760098284,222,0 +170760098332,223,0 +170760098380,221,0 +170760098428,215,0 +170760098476,215,0 +170760098525,216,0 +170760098573,216,0 +170760098623,217,0 +170760098671,217,0 +170760098719,218,0 +170760098766,218,0 +170760098816,219,0 +170760098865,219,0 +170760098913,220,0 +170760098961,221,0 +170760099011,222,0 +170760099059,221,0 +170760099108,222,0 +170760099158,223,0 +170760099207,223,0 +170760099255,222,0 +170760099305,222,0 +170760099354,215,0 +170760099402,215,0 +170760099450,215,0 +170760099498,216,0 +170760099546,217,0 +170760099594,217,0 +170760099642,217,0 +170760099689,217,0 +170760099737,219,0 +170760099787,219,0 +170760099835,219,0 +170760099882,220,0 +170760099932,219,0 +170760099981,222,0 +170760100029,222,0 +170760100077,222,0 +170760100126,222,0 +170760100176,223,0 +170760100224,222,0 +170760100272,215,0 +170760100320,215,0 +170760100368,216,0 +170760100415,216,0 +170760100465,217,0 +170760100514,217,0 +170760100564,217,0 +170760100613,217,0 +170760100663,218,0 +170760100711,219,0 +170760100760,220,0 +170760100808,220,0 +170760100856,219,0 +170760100904,221,0 +170760100952,221,0 +170760101001,222,0 +170760101049,222,0 +170760101097,222,0 +170760101147,221,0 +170760101195,216,0 +170760101244,215,0 +170760101292,215,0 +170760101340,216,0 +170760101389,217,0 +170760101437,217,0 +170760101485,217,0 +170760101533,218,0 +170760101581,218,0 +170760101629,219,0 +170760101678,220,0 +170760101726,221,0 +170760101774,220,0 +170760101822,221,0 +170760101870,221,0 +170760101918,223,0 +170760101966,222,0 +170760102015,223,0 +170760102063,223,0 +170760102111,216,0 +170760102159,215,0 +170760102207,215,0 +170760102256,215,0 +170760102306,216,0 +170760102354,217,0 +170760102403,217,0 +170760102453,218,0 +170760102501,219,0 +170760102549,219,0 +170760102597,219,0 +170760102644,221,0 +170760102692,221,0 +170760102740,222,0 +170760102790,222,0 +170760102838,223,0 +170760102886,222,0 +170760102935,223,0 +170760102983,222,0 +170760103031,222,0 +170760103079,215,0 +170760103127,215,0 +170760103175,216,0 +170760103224,216,0 +170760103272,217,0 +170760103320,217,0 +170760103368,217,0 +170760103416,218,0 +170760103465,218,0 +170760103515,219,0 +170760103563,219,0 +170760103612,220,0 +170760103662,220,0 +170760103710,221,0 +170760103758,223,0 +170760103807,222,0 +170760103855,221,0 +170760103905,222,0 +170760103954,221,0 +170760104002,215,0 +170760104052,215,0 +170760104099,215,0 +170760104149,216,0 +170760104197,217,0 +170760104245,217,0 +170760104293,218,0 +170760104341,217,0 +170760104389,218,0 +170760104438,219,0 +170760104488,219,0 +170760104537,221,0 +170760104585,220,0 +170760104633,221,0 +170760104681,221,0 +170760104729,221,0 +170760104777,221,0 +170760104824,222,0 +170760104872,222,0 +170760104920,216,0 +170760104968,216,0 +170760105016,216,0 +170760105065,216,0 +170760105113,217,0 +170760105163,217,0 +170760105211,218,0 +170760105259,218,0 +170760105307,219,0 +170760105354,219,0 +170760105404,219,0 +170760105452,220,0 +170760105500,221,0 +170760105549,221,0 +170760105597,222,0 +170760105647,222,0 +170760105696,222,0 +170760105746,222,0 +170760105795,222,0 +170760105843,216,0 +170760105893,216,0 +170760105942,216,0 +170760105990,217,0 +170760106038,217,0 +170760106088,218,0 +170760106137,219,0 +170760106185,219,0 +170760106235,220,0 +170760106282,221,0 +170760106330,221,0 +170760106380,221,0 +170760106429,223,0 +170760106477,222,0 +170760106525,223,0 +170760106575,222,0 +170760106624,222,0 +170760106672,222,0 +170760106720,222,0 +170760106768,216,0 +170760106817,215,0 +170760106867,216,0 +170760106916,217,0 +170760106964,217,0 +170760107014,218,0 +170760107062,218,0 +170760107111,218,0 +170760107159,220,0 +170760107207,220,0 +170760107257,221,0 +170760107304,222,0 +170760107352,223,0 +170760107400,222,0 +170760107448,222,0 +170760107498,222,0 +170760107546,222,0 +170760107594,222,0 +170760107641,222,0 +170760107689,216,0 +170760107737,215,0 +170760107785,215,0 +170760107833,215,0 +170760107880,215,0 +170760107928,216,0 +170760107976,217,0 +170760108024,217,0 +170760108072,218,0 +170760108120,218,0 +170760108169,218,0 +170760108217,218,0 +170760108265,220,0 +170760108314,221,0 +170760108362,220,0 +170760108410,221,0 +170760108458,221,0 +170760108506,222,0 +170760108554,221,0 +170760108602,222,0 +170760108651,215,0 +170760108699,215,0 +170760108749,215,0 +170760108798,215,0 +170760108848,216,0 +170760108896,216,0 +170760108945,216,0 +170760108993,217,0 +170760109042,217,0 +170760109092,218,0 +170760109142,219,0 +170760109189,220,0 +170760109239,221,0 +170760109287,220,0 +170760109335,221,0 +170760109383,222,0 +170760109431,222,0 +170760109479,222,0 +170760109528,221,0 +170760109576,215,0 +170760109626,215,0 +170760109674,215,0 +170760109722,216,0 +170760109769,216,0 +170760109819,216,0 +170760109867,217,0 +170760109916,217,0 +170760109966,218,0 +170760110015,219,0 +170760110065,219,0 +170760110114,220,0 +170760110162,221,0 +170760110210,221,0 +170760110258,221,0 +170760110306,221,0 +170760110354,222,0 +170760110402,222,0 +170760110450,221,0 +170760110498,215,0 +170760110547,215,0 +170760110595,215,0 +170760110643,216,0 +170760110691,216,0 +170760110741,216,0 +170760110790,217,0 +170760110838,217,0 +170760110886,218,0 +170760110934,219,0 +170760110982,219,0 +170760111031,220,0 +170760111079,221,0 +170760111127,221,0 +170760111177,221,0 +170760111224,221,0 +170760111274,222,0 +170760111324,222,0 +170760111372,222,0 +170760111419,216,0 +170760111467,215,0 +170760111515,215,0 +170760111563,215,0 +170760111611,216,0 +170760111659,216,0 +170760111707,217,0 +170760111755,216,0 +170760111804,218,0 +170760111852,218,0 +170760111900,219,0 +170760111948,220,0 +170760111996,220,0 +170760112045,221,0 +170760112093,221,0 +170760112143,223,0 +170760112191,221,0 +170760112239,221,0 +170760112287,222,0 +170760112335,216,0 +170760112383,215,0 +170760112431,215,0 +170760112480,215,0 +170760112528,215,0 +170760112578,216,0 +170760112627,216,0 +170760112675,216,0 +170760112723,216,0 +170760112772,217,0 +170760112820,218,0 +170760112870,219,0 +170760112918,219,0 +170760112967,220,0 +170760113015,220,0 +170760113063,221,0 +170760113111,220,0 +170760113161,219,0 +170760113210,221,0 +170760113260,216,0 +170760113308,214,0 +170760113357,215,0 +170760113405,215,0 +170760113453,215,0 +170760113502,216,0 +170760113550,216,0 +170760113598,216,0 +170760113648,216,0 +170760113696,216,0 +170760113745,217,0 +170760113793,218,0 +170760113841,219,0 +170760113889,219,0 +170760113937,220,0 +170760113985,220,0 +170760114034,221,0 +170760114082,221,0 +170760114130,222,0 +170760114178,221,0 +170760114225,215,0 +170760114273,215,0 +170760114321,215,0 +170760114369,216,0 +170760114417,216,0 +170760114465,216,0 +170760114513,216,0 +170760114560,216,0 +170760114608,216,0 +170760114656,217,0 +170760114704,217,0 +170760114752,218,0 +170760114800,219,0 +170760114847,219,0 +170760114895,220,0 +170760114943,221,0 +170760114991,221,0 +170760115039,220,0 +170760115088,222,0 +170760115138,216,0 +170760115187,214,0 +170760115235,215,0 +170760115283,215,0 +170760115331,215,0 +170760115379,215,0 +170760115427,215,0 +170760115474,215,0 +170760115522,216,0 +170760115570,216,0 +170760115620,216,0 +170760115668,217,0 +170760115716,217,0 +170760115764,218,0 +170760115811,218,0 +170760115859,219,0 +170760115907,220,0 +170760115955,220,0 +170760116005,221,0 +170760116053,216,0 +170760116102,215,0 +170760116150,215,0 +170760116200,215,0 +170760116249,216,0 +170760116297,216,0 +170760116345,217,0 +170760116393,217,0 +170760116441,217,0 +170760116489,219,0 +170760116537,218,0 +170760116585,219,0 +170760116633,219,0 +170760116680,221,0 +170760116728,221,0 +170760116776,220,0 +170760116826,221,0 +170760116874,222,0 +170760116922,221,0 +170760116971,216,0 +170760117021,215,0 +170760117069,215,0 +170760117116,215,0 +170760117166,216,0 +170760117215,216,0 +170760117265,217,0 +170760117313,218,0 +170760117361,218,0 +170760117410,219,0 +170760117458,220,0 +170760117506,220,0 +170760117556,221,0 +170760117603,221,0 +170760117651,221,0 +170760117699,222,0 +170760117747,222,0 +170760117797,222,0 +170760117845,222,0 +170760117893,221,0 +170760117942,217,0 +170760117990,217,0 +170760118038,217,0 +170760118086,218,0 +170760118134,219,0 +170760118182,219,0 +170760118231,220,0 +170760118279,220,0 +170760118327,221,0 +170760118375,221,0 +170760118423,222,0 +170760118472,221,0 +170760118520,221,0 +170760118568,222,0 +170760118616,222,0 +170760118664,222,0 +170760118712,222,0 +170760118761,222,0 +170760118810,221,0 +170760118860,216,0 +170760118910,216,0 +170760118957,217,0 +170760119007,217,0 +170760119055,218,0 +170760119103,218,0 +170760119152,218,0 +170760119200,218,0 +170760119250,219,0 +170760119298,219,0 +170760119348,218,0 +170760119396,220,0 +170760119445,221,0 +170760119493,221,0 +170760119541,223,0 +170760119589,222,0 +170760119638,222,0 +170760119686,222,0 +170760119736,221,0 +170760119785,216,0 +170760119835,216,0 +170760119884,216,0 +170760119934,217,0 +170760119983,217,0 +170760120031,217,0 +170760120079,217,0 +170760120127,218,0 +170760120175,219,0 +170760120224,219,0 +170760120272,219,0 +170760120320,220,0 +170760120368,221,0 +170760120416,221,0 +170760120464,221,0 +170760120512,222,0 +170760120561,222,0 +170760120610,223,0 +170760120658,222,0 +170760120708,217,0 +170760120756,217,0 +170760120805,217,0 +170760120853,218,0 +170760120903,218,0 +170760120950,219,0 +170760120998,219,0 +170760121046,219,0 +170760121094,219,0 +170760121142,220,0 +170760121190,224,0 +170760121239,222,0 +170760121287,221,0 +170760121337,223,0 +170760121386,222,0 +170760121434,223,0 +170760121482,223,0 +170760121530,222,0 +170760121578,222,0 +170760121628,217,0 +170760121676,217,0 +170760121725,217,0 +170760121773,217,0 +170760121821,218,0 +170760121869,219,0 +170760121917,220,0 +170760121966,220,0 +170760122014,221,0 +170760122062,222,0 +170760122109,223,0 +170760122157,223,0 +170760122205,223,0 +170760122253,225,0 +170760122302,223,0 +170760122350,224,0 +170760122398,223,0 +170760122446,222,0 +170760122493,222,0 +170760122541,221,0 +170760122591,217,0 +170760122638,217,0 +170760122688,218,0 +170760122736,218,0 +170760122783,220,0 +170760122831,220,0 +170760122879,221,0 +170760122927,220,0 +170760122975,222,0 +170760123023,221,0 +170760123070,222,0 +170760123118,222,0 +170760123166,224,0 +170760123214,222,0 +170760123262,222,0 +170760123310,223,0 +170760123357,223,0 +170760123405,223,0 +170760123453,221,0 +170760123501,215,0 +170760123550,215,0 +170760123598,216,0 +170760123646,216,0 +170760123694,217,0 +170760123742,217,0 +170760123790,218,0 +170760123838,218,0 +170760123886,218,0 +170760123934,219,0 +170760123981,221,0 +170760124029,221,0 +170760124077,222,0 +170760124125,222,0 +170760124173,223,0 +170760124221,223,0 +170760124269,222,0 +170760124317,224,0 +170760124365,222,0 +170760124414,216,0 +170760124462,215,0 +170760124510,215,0 +170760124560,215,0 +170760124607,215,0 +170760124657,216,0 +170760124705,217,0 +170760124753,218,0 +170760124802,218,0 +170760124852,218,0 +170760124900,218,0 +170760124948,219,0 +170760124997,220,0 +170760125045,220,0 +170760125095,220,0 +170760125142,221,0 +170760125190,220,0 +170760125238,220,0 +170760125286,222,0 +170760125334,221,0 +170760125382,215,0 +170760125429,215,0 +170760125477,215,0 +170760125527,215,0 +170760125575,215,0 +170760125624,216,0 +170760125672,216,0 +170760125720,217,0 +170760125768,217,0 +170760125816,218,0 +170760125864,218,0 +170760125911,218,0 +170760125959,218,0 +170760126007,218,0 +170760126055,219,0 +170760126103,219,0 +170760126151,220,0 +170760126198,220,0 +170760126246,221,0 +170760126294,221,0 +170760126342,222,0 +170760126390,223,0 +170760126438,222,0 +170760126486,223,0 +170760126533,223,0 +170760126581,222,0 +170760126629,222,0 +170760126677,222,0 +170760126725,217,0 +170760126773,215,0 +170760126821,215,0 +170760126868,215,0 +170760126916,215,0 +170760126964,216,0 +170760127012,216,0 +170760127060,216,0 +170760127108,217,0 +170760127158,218,0 +170760127205,218,0 +170760127255,219,0 +170760127304,220,0 +170760127352,221,0 +170760127400,221,0 +170760127448,221,0 +170760127498,222,0 +170760127545,222,0 +170760127595,222,0 +170760127643,222,0 +170760127692,215,0 +170760127740,215,0 +170760127788,215,0 +170760127836,215,0 +170760127884,216,0 +170760127932,216,0 +170760127980,217,0 +170760128028,217,0 +170760128076,217,0 +170760128126,217,0 +170760128173,219,0 +170760128221,220,0 +170760128269,219,0 +170760128317,220,0 +170760128365,221,0 +170760128413,221,0 +170760128462,221,0 +170760128512,222,0 +170760128560,221,0 +170760128608,216,0 +170760128656,214,0 +170760128705,215,0 +170760128753,215,0 +170760128801,215,0 +170760128849,215,0 +170760128898,216,0 +170760128948,216,0 +170760128996,217,0 +170760129044,217,0 +170760129092,218,0 +170760129140,220,0 +170760129187,219,0 +170760129237,220,0 +170760129285,220,0 +170760129335,220,0 +170760129382,221,0 +170760129432,221,0 +170760129481,222,0 +170760129529,216,0 +170760129579,214,0 +170760129627,215,0 +170760129675,216,0 +170760129724,216,0 +170760129772,217,0 +170760129820,218,0 +170760129868,218,0 +170760129916,218,0 +170760129964,219,0 +170760130013,220,0 +170760130061,220,0 +170760130111,221,0 +170760130160,221,0 +170760130208,222,0 +170760130256,221,0 +170760130304,221,0 +170760130352,222,0 +170760130400,222,0 +170760130447,217,0 +170760130495,215,0 +170760130543,215,0 +170760130591,215,0 +170760130641,216,0 +170760130689,216,0 +170760130737,217,0 +170760130784,217,0 +170760130834,218,0 +170760130882,219,0 +170760130931,219,0 +170760130981,220,0 +170760131030,221,0 +170760131078,221,0 +170760131126,222,0 +170760131174,223,0 +170760131224,223,0 +170760131272,222,0 +170760131320,222,0 +170760131368,221,0 +170760131417,215,0 +170760131465,214,0 +170760131513,215,0 +170760131561,215,0 +170760131610,216,0 +170760131660,216,0 +170760131708,216,0 +170760131757,217,0 +170760131805,218,0 +170760131855,218,0 +170760131904,219,0 +170760131952,220,0 +170760132000,220,0 +170760132048,221,0 +170760132097,221,0 +170760132145,222,0 +170760132195,222,0 +170760132244,222,0 +170760132294,221,0 +170760132342,215,0 +170760132390,215,0 +170760132438,215,0 +170760132487,215,0 +170760132535,215,0 +170760132583,215,0 +170760132632,215,0 +170760132680,216,0 +170760132728,217,0 +170760132776,218,0 +170760132823,218,0 +170760132871,220,0 +170760132919,220,0 +170760132967,220,0 +170760133015,221,0 +170760133063,222,0 +170760133110,222,0 +170760133158,221,0 +170760133206,221,0 +170760133254,215,0 +170760133302,215,0 +170760133349,215,0 +170760133397,215,0 +170760133445,215,0 +170760133494,215,0 +170760133544,215,0 +170760133592,215,0 +170760133640,216,0 +170760133687,216,0 +170760133735,217,0 +170760133783,218,0 +170760133831,219,0 +170760133879,219,0 +170760133926,220,0 +170760133974,220,0 +170760134022,221,0 +170760134070,221,0 +170760134118,221,0 +170760134166,216,0 +170760134213,215,0 +170760134263,215,0 +170760134311,215,0 +170760134359,215,0 +170760134407,215,0 +170760134455,216,0 +170760134504,216,0 +170760134552,217,0 +170760134601,217,0 +170760134649,218,0 +170760134697,219,0 +170760134747,220,0 +170760134795,220,0 +170760134843,219,0 +170760134891,220,0 +170760134939,219,0 +170760134987,219,0 +170760135034,222,0 +170760135084,218,0 +170760135132,215,0 +170760135182,215,0 +170760135231,215,0 +170760135279,215,0 +170760135327,216,0 +170760135375,216,0 +170760135423,216,0 +170760135472,217,0 +170760135520,217,0 +170760135568,218,0 +170760135616,218,0 +170760135663,219,0 +170760135711,220,0 +170760135759,220,0 +170760135807,221,0 +170760135855,221,0 +170760135902,221,0 +170760135950,221,0 +170760135998,221,0 +170760136046,216,0 +170760136094,215,0 +170760136142,215,0 +170760136189,215,0 +170760136237,216,0 +170760136285,217,0 +170760136333,217,0 +170760136381,217,0 +170760136429,218,0 +170760136476,219,0 +170760136524,220,0 +170760136572,220,0 +170760136620,221,0 +170760136668,221,0 +170760136716,221,0 +170760136764,221,0 +170760136811,222,0 +170760136859,222,0 +170760136907,221,0 +170760136957,216,0 +170760137005,215,0 +170760137052,215,0 +170760137100,215,0 +170760137148,216,0 +170760137196,217,0 +170760137244,217,0 +170760137292,218,0 +170760137339,219,0 +170760137387,220,0 +170760137435,220,0 +170760137483,220,0 +170760137531,221,0 +170760137580,221,0 +170760137628,222,0 +170760137676,222,0 +170760137724,222,0 +170760137772,222,0 +170760137821,221,0 +170760137871,217,0 +170760137920,215,0 +170760137968,216,0 +170760138018,216,0 +170760138066,217,0 +170760138114,218,0 +170760138162,218,0 +170760138211,218,0 +170760138261,219,0 +170760138310,219,0 +170760138358,220,0 +170760138406,221,0 +170760138454,220,0 +170760138504,221,0 +170760138552,222,0 +170760138599,223,0 +170760138649,221,0 +170760138697,222,0 +170760138746,221,0 +170760138794,218,0 +170760138844,216,0 +170760138893,216,0 +170760138941,217,0 +170760138989,218,0 +170760139039,218,0 +170760139087,218,0 +170760139135,218,0 +170760139184,219,0 +170760139232,220,0 +170760139282,219,0 +170760139330,220,0 +170760139378,221,0 +170760139427,222,0 +170760139475,222,0 +170760139523,223,0 +170760139571,222,0 +170760139620,222,0 +170760139668,223,0 +170760139718,221,0 +170760139766,215,0 +170760139814,216,0 +170760139862,217,0 +170760139910,217,0 +170760139959,217,0 +170760140007,218,0 +170760140057,219,0 +170760140105,219,0 +170760140153,219,0 +170760140201,220,0 +170760140250,221,0 +170760140298,221,0 +170760140346,222,0 +170760140394,222,0 +170760140442,223,0 +170760140490,223,0 +170760140538,222,0 +170760140587,222,0 +170760140637,222,0 +170760140684,216,0 +170760140732,216,0 +170760140780,217,0 +170760140828,218,0 +170760140876,219,0 +170760140924,219,0 +170760140972,219,0 +170760141020,219,0 +170760141067,219,0 +170760141117,220,0 +170760141166,221,0 +170760141214,222,0 +170760141262,222,0 +170760141310,222,0 +170760141360,222,0 +170760141408,222,0 +170760141457,222,0 +170760141505,222,0 +170760141553,221,0 +170760141601,216,0 +170760141649,215,0 +170760141698,216,0 +170760141748,217,0 +170760141796,218,0 +170760141845,218,0 +170760141895,219,0 +170760141942,219,0 +170760141990,219,0 +170760142038,220,0 +170760142086,220,0 +170760142134,220,0 +170760142184,221,0 +170760142232,222,0 +170760142281,221,0 +170760142329,221,0 +170760142377,221,0 +170760142425,221,0 +170760142473,221,0 +170760142521,216,0 +170760142569,215,0 +170760142618,215,0 +170760142668,216,0 +170760142717,216,0 +170760142765,217,0 +170760142813,218,0 +170760142861,218,0 +170760142910,219,0 +170760142958,219,0 +170760143006,220,0 +170760143056,220,0 +170760143105,222,0 +170760143153,222,0 +170760143201,222,0 +170760143249,222,0 +170760143297,222,0 +170760143344,222,0 +170760143392,222,0 +170760143440,216,0 +170760143488,215,0 +170760143536,215,0 +170760143584,216,0 +170760143632,216,0 +170760143680,217,0 +170760143729,217,0 +170760143777,217,0 +170760143825,218,0 +170760143875,218,0 +170760143924,219,0 +170760143972,220,0 +170760144021,220,0 +170760144069,223,0 +170760144119,220,0 +170760144168,221,0 +170760144218,221,0 +170760144266,222,0 +170760144314,222,0 +170760144363,218,0 +170760144411,215,0 +170760144459,216,0 +170760144507,216,0 +170760144556,216,0 +170760144606,216,0 +170760144654,217,0 +170760144702,217,0 +170760144749,218,0 +170760144797,218,0 +170760144845,220,0 +170760144893,219,0 +170760144941,220,0 +170760144990,221,0 +170760145038,220,0 +170760145088,222,0 +170760145136,221,0 +170760145185,222,0 +170760145235,222,0 +170760145283,222,0 +170760145331,215,0 +170760145378,215,0 +170760145426,216,0 +170760145474,216,0 +170760145522,217,0 +170760145570,218,0 +170760145619,218,0 +170760145667,218,0 +170760145717,220,0 +170760145765,220,0 +170760145813,220,0 +170760145861,221,0 +170760145909,221,0 +170760145957,221,0 +170760146005,223,0 +170760146053,221,0 +170760146102,222,0 +170760146150,222,0 +170760146198,221,0 +170760146247,216,0 +170760146295,215,0 +170760146343,215,0 +170760146391,216,0 +170760146439,216,0 +170760146487,217,0 +170760146536,217,0 +170760146584,217,0 +170760146632,218,0 +170760146681,219,0 +170760146731,218,0 +170760146779,220,0 +170760146828,221,0 +170760146876,221,0 +170760146926,222,0 +170760146974,222,0 +170760147023,222,0 +170760147071,223,0 +170760147119,222,0 +170760147167,216,0 +170760147217,215,0 +170760147264,215,0 +170760147312,216,0 +170760147362,216,0 +170760147411,216,0 +170760147459,217,0 +170760147507,218,0 +170760147555,218,0 +170760147603,219,0 +170760147651,219,0 +170760147699,220,0 +170760147747,220,0 +170760147795,221,0 +170760147843,221,0 +170760147892,222,0 +170760147940,222,0 +170760147988,221,0 +170760148036,221,0 +170760148085,217,0 +170760148133,215,0 +170760148183,215,0 +170760148232,215,0 +170760148280,216,0 +170760148329,216,0 +170760148377,218,0 +170760148427,218,0 +170760148474,218,0 +170760148522,218,0 +170760148570,220,0 +170760148618,219,0 +170760148666,221,0 +170760148713,220,0 +170760148761,221,0 +170760148811,222,0 +170760148859,222,0 +170760148906,222,0 +170760148954,222,0 +170760149004,221,0 +170760149053,215,0 +170760149103,215,0 +170760149151,215,0 +170760149199,215,0 +170760149247,216,0 +170760149296,217,0 +170760149345,217,0 +170760149393,218,0 +170760149443,218,0 +170760149491,219,0 +170760149539,219,0 +170760149587,220,0 +170760149636,220,0 +170760149686,221,0 +170760149733,221,0 +170760149781,222,0 +170760149829,223,0 +170760149877,222,0 +170760149925,221,0 +170760149973,216,0 +170760150023,215,0 +170760150070,215,0 +170760150118,215,0 +170760150166,215,0 +170760150214,216,0 +170760150262,216,0 +170760150311,216,0 +170760150359,217,0 +170760150407,217,0 +170760150457,218,0 +170760150505,219,0 +170760150552,219,0 +170760150600,219,0 +170760150648,220,0 +170760150696,220,0 +170760150746,223,0 +170760150795,224,0 +170760150843,222,0 +170760150892,216,0 +170760150940,215,0 +170760150988,215,0 +170760151036,215,0 +170760151086,215,0 +170760151135,215,0 +170760151183,217,0 +170760151231,217,0 +170760151280,216,0 +170760151328,219,0 +170760151376,218,0 +170760151424,219,0 +170760151472,219,0 +170760151520,220,0 +170760151568,221,0 +170760151615,221,0 +170760151663,221,0 +170760151711,221,0 +170760151759,221,0 +170760151807,216,0 +170760151855,215,0 +170760151902,215,0 +170760151950,215,0 +170760151998,215,0 +170760152046,216,0 +170760152094,216,0 +170760152142,217,0 +170760152190,217,0 +170760152237,218,0 +170760152285,218,0 +170760152333,219,0 +170760152381,220,0 +170760152429,221,0 +170760152477,220,0 +170760152525,221,0 +170760152574,221,0 +170760152622,221,0 +170760152670,221,0 +170760152718,221,0 +170760152765,215,0 +170760152813,215,0 +170760152863,215,0 +170760152911,216,0 +170760152959,216,0 +170760153006,216,0 +170760153054,217,0 +170760153102,217,0 +170760153152,218,0 +170760153200,220,0 +170760153249,219,0 +170760153297,219,0 +170760153345,221,0 +170760153393,219,0 +170760153440,221,0 +170760153488,221,0 +170760153536,221,0 +170760153584,221,0 +170760153632,221,0 +170760153679,216,0 +170760153727,214,0 +170760153775,215,0 +170760153823,215,0 +170760153873,215,0 +170760153921,216,0 +170760153969,216,0 +170760154018,216,0 +170760154066,216,0 +170760154114,217,0 +170760154162,218,0 +170760154210,218,0 +170760154259,219,0 +170760154307,219,0 +170760154355,220,0 +170760154403,221,0 +170760154451,221,0 +170760154499,221,0 +170760154547,222,0 +170760154595,218,0 +170760154642,215,0 +170760154690,215,0 +170760154738,216,0 +170760154787,216,0 +170760154835,217,0 +170760154883,217,0 +170760154931,217,0 +170760154979,219,0 +170760155029,218,0 +170760155078,219,0 +170760155126,219,0 +170760155174,220,0 +170760155223,221,0 +170760155271,221,0 +170760155319,221,0 +170760155367,221,0 +170760155415,222,0 +170760155462,222,0 +170760155510,221,0 +170760155560,216,0 +170760155607,216,0 +170760155655,216,0 +170760155703,217,0 +170760155751,217,0 +170760155799,216,0 +170760155847,217,0 +170760155895,219,0 +170760155943,220,0 +170760155990,219,0 +170760156040,220,0 +170760156088,222,0 +170760156136,222,0 +170760156183,222,0 +170760156231,223,0 +170760156281,222,0 +170760156329,222,0 +170760156378,223,0 +170760156426,221,0 +170760156475,217,0 +170760156523,216,0 +170760156571,217,0 +170760156619,218,0 +170760156669,219,0 +170760156716,219,0 +170760156764,219,0 +170760156812,219,0 +170760156860,220,0 +170760156908,220,0 +170760156957,220,0 +170760157005,221,0 +170760157055,221,0 +170760157103,223,0 +170760157152,223,0 +170760157202,223,0 +170760157250,223,0 +170760157298,222,0 +170760157345,222,0 +170760157393,218,0 +170760157441,217,0 +170760157489,218,0 +170760157537,218,0 +170760157585,219,0 +170760157633,219,0 +170760157682,220,0 +170760157732,220,0 +170760157781,220,0 +170760157829,222,0 +170760157877,221,0 +170760157925,222,0 +170760157973,223,0 +170760158022,222,0 +170760158072,222,0 +170760158120,222,0 +170760158169,220,0 +170760158217,222,0 +170760158265,222,0 +170760158315,220,0 +170760158363,217,0 +170760158411,217,0 +170760158458,217,0 +170760158508,218,0 +170760158556,218,0 +170760158604,219,0 +170760158652,219,0 +170760158701,219,0 +170760158749,220,0 +170760158797,221,0 +170760158845,221,0 +170760158893,221,0 +170760158941,222,0 +170760158989,222,0 +170760159037,223,0 +170760159085,222,0 +170760159134,223,0 +170760159182,221,0 +170760159230,218,0 +170760159278,216,0 +170760159326,216,0 +170760159374,216,0 +170760159422,217,0 +170760159470,217,0 +170760159517,218,0 +170760159565,219,0 +170760159615,218,0 +170760159664,218,0 +170760159712,220,0 +170760159762,220,0 +170760159810,220,0 +170760159858,220,0 +170760159905,220,0 +170760159955,221,0 +170760160003,222,0 +170760160051,222,0 +170760160100,222,0 +170760160148,222,0 +170760160197,215,0 +170760160245,215,0 +170760160295,215,0 +170760160343,216,0 +170760160392,217,0 +170760160440,217,0 +170760160488,217,0 +170760160536,219,0 +170760160584,217,0 +170760160632,219,0 +170760160681,220,0 +170760160729,219,0 +170760160777,221,0 +170760160825,221,0 +170760160873,220,0 +170760160921,221,0 +170760160968,221,0 +170760161016,221,0 +170760161066,221,0 +170760161114,215,0 +170760161162,215,0 +170760161211,215,0 +170760161259,215,0 +170760161309,215,0 +170760161357,216,0 +170760161405,216,0 +170760161452,217,0 +170760161502,217,0 +170760161550,217,0 +170760161598,218,0 +170760161646,218,0 +170760161694,220,0 +170760161742,219,0 +170760161790,220,0 +170760161837,220,0 +170760161885,221,0 +170760161935,220,0 +170760161983,221,0 +170760162032,216,0 +170760162080,215,0 +170760162130,215,0 +170760162178,216,0 +170760162225,216,0 +170760162275,216,0 +170760162324,217,0 +170760162374,217,0 +170760162422,218,0 +170760162470,219,0 +170760162517,220,0 +170760162567,220,0 +170760162615,220,0 +170760162663,221,0 +170760162710,220,0 +170760162758,222,0 +170760162806,220,0 +170760162854,220,0 +170760162902,222,0 +170760162950,216,0 +170760162998,214,0 +170760163046,215,0 +170760163094,215,0 +170760163142,215,0 +170760163190,216,0 +170760163237,217,0 +170760163285,217,0 +170760163335,218,0 +170760163383,219,0 +170760163432,219,0 +170760163482,220,0 +170760163529,220,0 +170760163577,221,0 +170760163625,221,0 +170760163673,221,0 +170760163721,222,0 +170760163769,223,0 +170760163819,222,0 +170760163867,218,0 +170760163916,215,0 +170760163964,215,0 +170760164012,215,0 +170760164060,215,0 +170760164108,215,0 +170760164157,216,0 +170760164207,216,0 +170760164255,217,0 +170760164303,217,0 +170760164350,218,0 +170760164398,218,0 +170760164448,219,0 +170760164497,219,0 +170760164545,219,0 +170760164593,220,0 +170760164641,220,0 +170760164689,221,0 +170760164738,221,0 +170760164786,220,0 +170760164834,215,0 +170760164882,215,0 +170760164930,215,0 +170760164978,215,0 +170760165026,215,0 +170760165074,215,0 +170760165122,216,0 +170760165169,217,0 +170760165217,217,0 +170760165265,218,0 +170760165313,218,0 +170760165361,219,0 +170760165411,220,0 +170760165459,220,0 +170760165508,220,0 +170760165556,222,0 +170760165604,222,0 +170760165652,222,0 +170760165700,221,0 +170760165749,216,0 +170760165797,215,0 +170760165845,215,0 +170760165893,215,0 +170760165941,215,0 +170760165989,215,0 +170760166037,215,0 +170760166086,216,0 +170760166134,216,0 +170760166182,217,0 +170760166231,217,0 +170760166279,218,0 +170760166327,220,0 +170760166375,219,0 +170760166423,220,0 +170760166471,220,0 +170760166519,220,0 +170760166566,220,0 +170760166616,221,0 +170760166664,216,0 +170760166713,215,0 +170760166763,215,0 +170760166812,215,0 +170760166860,216,0 +170760166909,216,0 +170760166959,216,0 +170760167008,217,0 +170760167058,217,0 +170760167107,218,0 +170760167155,219,0 +170760167205,220,0 +170760167253,220,0 +170760167301,221,0 +170760167350,229,0 +170760167398,223,0 +170760167446,222,0 +170760167494,222,0 +170760167542,223,0 +170760167590,218,0 +170760167638,215,0 +170760167685,215,0 +170760167733,215,0 +170760167781,215,0 +170760167831,215,0 +170760167879,215,0 +170760167927,216,0 +170760167974,216,0 +170760168022,217,0 +170760168072,218,0 +170760168120,218,0 +170760168168,219,0 +170760168216,220,0 +170760168265,220,0 +170760168314,220,0 +170760168362,221,0 +170760168410,220,0 +170760168460,221,0 +170760168509,219,0 +170760168557,215,0 +170760168605,215,0 +170760168653,215,0 +170760168702,215,0 +170760168750,216,0 +170760168798,216,0 +170760168846,216,0 +170760168894,217,0 +170760168942,217,0 +170760168990,218,0 +170760169039,217,0 +170760169089,219,0 +170760169137,219,0 +170760169185,221,0 +170760169234,220,0 +170760169282,221,0 +170760169330,221,0 +170760169378,221,0 +170760169425,221,0 +170760169475,215,0 +170760169524,215,0 +170760169572,215,0 +170760169620,216,0 +170760169668,217,0 +170760169716,217,0 +170760169764,217,0 +170760169812,217,0 +170760169861,217,0 +170760169909,218,0 +170760169959,219,0 +170760170006,219,0 +170760170054,219,0 +170760170102,220,0 +170760170152,221,0 +170760170200,221,0 +170760170247,221,0 +170760170295,220,0 +170760170343,223,0 +170760170391,216,0 +170760170439,216,0 +170760170487,217,0 +170760170536,217,0 +170760170584,217,0 +170760170633,218,0 +170760170681,219,0 +170760170729,219,0 +170760170777,219,0 +170760170825,220,0 +170760170872,221,0 +170760170920,221,0 +170760170968,222,0 +170760171016,222,0 +170760171063,222,0 +170760171111,222,0 +170760171159,221,0 +170760171207,223,0 +170760171254,221,0 +170760171302,216,0 +170760171352,215,0 +170760171399,216,0 +170760171447,217,0 +170760171495,217,0 +170760171543,219,0 +170760171591,218,0 +170760171638,219,0 +170760171686,218,0 +170760171734,221,0 +170760171782,221,0 +170760171830,222,0 +170760171878,222,0 +170760171925,223,0 +170760171973,222,0 +170760172021,223,0 +170760172069,223,0 +170760172117,223,0 +170760172165,222,0 +170760172213,222,0 +170760172263,216,0 +170760172311,217,0 +170760172358,218,0 +170760172408,218,0 +170760172456,219,0 +170760172504,219,0 +170760172552,220,0 +170760172601,221,0 +170760172651,221,0 +170760172699,221,0 +170760172747,222,0 +170760172796,223,0 +170760172844,223,0 +170760172892,222,0 +170760172940,223,0 +170760172989,223,0 +170760173037,223,0 +170760173087,222,0 +170760173136,222,0 +170760173184,217,0 +170760173232,217,0 +170760173280,217,0 +170760173328,218,0 +170760173375,219,0 +170760173423,219,0 +170760173471,220,0 +170760173519,220,0 +170760173567,221,0 +170760173615,221,0 +170760173663,220,0 +170760173711,222,0 +170760173760,221,0 +170760173808,223,0 +170760173856,221,0 +170760173903,223,0 +170760173953,223,0 +170760174001,222,0 +170760174049,221,0 +170760174098,216,0 +170760174147,216,0 +170760174195,216,0 +170760174243,217,0 +170760174293,218,0 +170760174341,217,0 +170760174390,219,0 +170760174440,219,0 +170760174488,219,0 +170760174536,220,0 +170760174585,221,0 +170760174633,221,0 +170760174682,222,0 +170760174732,222,0 +170760174781,222,0 +170760174829,222,0 +170760174879,223,0 +170760174928,222,0 +170760174976,222,0 +170760175024,216,0 +170760175072,215,0 +170760175120,215,0 +170760175168,216,0 +170760175215,217,0 +170760175263,217,0 +170760175311,217,0 +170760175359,217,0 +170760175407,218,0 +170760175456,219,0 +170760175504,219,0 +170760175552,220,0 +170760175600,221,0 +170760175647,225,0 +170760175695,223,0 +170760175743,222,0 +170760175792,222,0 +170760175840,222,0 +170760175888,222,0 +170760175936,221,0 +170760175985,215,0 +170760176033,215,0 +170760176081,216,0 +170760176129,216,0 +170760176178,217,0 +170760176226,217,0 +170760176276,218,0 +170760176324,219,0 +170760176373,219,0 +170760176421,219,0 +170760176471,220,0 +170760176519,220,0 +170760176567,222,0 +170760176615,223,0 +170760176662,222,0 +170760176710,222,0 +170760176760,222,0 +170760176808,221,0 +170760176856,221,0 +170760176905,215,0 +170760176953,216,0 +170760177001,216,0 +170760177049,217,0 +170760177096,217,0 +170760177144,218,0 +170760177192,218,0 +170760177240,219,0 +170760177288,220,0 +170760177336,220,0 +170760177385,220,0 +170760177433,221,0 +170760177481,222,0 +170760177529,222,0 +170760177577,222,0 +170760177625,222,0 +170760177673,222,0 +170760177720,222,0 +170760177768,221,0 +170760177816,215,0 +170760177864,215,0 +170760177912,215,0 +170760177961,216,0 +170760178009,217,0 +170760178059,217,0 +170760178108,218,0 +170760178156,218,0 +170760178204,219,0 +170760178254,219,0 +170760178303,220,0 +170760178351,221,0 +170760178399,221,0 +170760178447,221,0 +170760178496,221,0 +170760178544,223,0 +170760178594,221,0 +170760178642,222,0 +170760178690,222,0 +170760178738,216,0 +170760178786,214,0 +170760178835,215,0 +170760178885,215,0 +170760178933,216,0 +170760178980,217,0 +170760179028,217,0 +170760179076,217,0 +170760179124,218,0 +170760179172,218,0 +170760179220,219,0 +170760179270,220,0 +170760179319,220,0 +170760179367,220,0 +170760179416,221,0 +170760179466,221,0 +170760179515,221,0 +170760179563,223,0 +170760179611,222,0 +170760179659,216,0 +170760179709,214,0 +170760179757,215,0 +170760179806,215,0 +170760179856,215,0 +170760179904,215,0 +170760179952,216,0 +170760179999,217,0 +170760180047,218,0 +170760180097,218,0 +170760180145,218,0 +170760180193,219,0 +170760180240,220,0 +170760180288,220,0 +170760180336,220,0 +170760180384,220,0 +170760180432,221,0 +170760180482,221,0 +170760180530,221,0 +170760180578,218,0 +170760180626,215,0 +170760180674,215,0 +170760180723,216,0 +170760180771,216,0 +170760180819,216,0 +170760180867,218,0 +170760180915,218,0 +170760180963,218,0 +170760181012,218,0 +170760181060,219,0 +170760181108,219,0 +170760181156,219,0 +170760181205,220,0 +170760181255,220,0 +170760181304,220,0 +170760181354,221,0 +170760181403,221,0 +170760181451,222,0 +170760181501,221,0 +170760181550,215,0 +170760181600,216,0 +170760181649,216,0 +170760181697,217,0 +170760181745,218,0 +170760181793,218,0 +170760181841,218,0 +170760181890,219,0 +170760181938,219,0 +170760181986,220,0 +170760182034,221,0 +170760182081,221,0 +170760182129,221,0 +170760182177,222,0 +170760182225,224,0 +170760182273,223,0 +170760182321,223,0 +170760182370,222,0 +170760182420,221,0 +170760182467,215,0 +170760182517,215,0 +170760182565,216,0 +170760182614,217,0 +170760182664,217,0 +170760182712,218,0 +170760182760,219,0 +170760182808,219,0 +170760182857,219,0 +170760182905,220,0 +170760182953,220,0 +170760183001,221,0 +170760183050,221,0 +170760183098,222,0 +170760183146,222,0 +170760183194,223,0 +170760183242,224,0 +170760183291,223,0 +170760183339,220,0 +170760183387,215,0 +170760183435,215,0 +170760183483,215,0 +170760183531,216,0 +170760183578,216,0 +170760183626,217,0 +170760183674,218,0 +170760183722,218,0 +170760183772,218,0 +170760183819,219,0 +170760183867,220,0 +170760183917,220,0 +170760183965,220,0 +170760184014,220,0 +170760184064,219,0 +170760184113,219,0 +170760184162,219,0 +170760184210,220,0 +170760184258,221,0 +170760184306,216,0 +170760184354,215,0 +170760184402,215,0 +170760184451,215,0 +170760184499,215,0 +170760184547,215,0 +170760184595,215,0 +170760184643,216,0 +170760184691,216,0 +170760184739,217,0 +170760184787,218,0 +170760184835,218,0 +170760184883,219,0 +170760184930,219,0 +170760184980,220,0 +170760185029,220,0 +170760185079,220,0 +170760185127,222,0 +170760185176,223,0 +170760185224,216,0 +170760185274,214,0 +170760185323,215,0 +170760185371,215,0 +170760185419,215,0 +170760185467,216,0 +170760185515,216,0 +170760185565,217,0 +170760185613,218,0 +170760185660,217,0 +170760185710,219,0 +170760185758,219,0 +170760185806,220,0 +170760185854,220,0 +170760185902,220,0 +170760185950,221,0 +170760185997,222,0 +170760186045,221,0 +170760186093,221,0 +170760186141,220,0 +170760186189,215,0 +170760186237,215,0 +170760186284,215,0 +170760186332,216,0 +170760186380,216,0 +170760186428,217,0 +170760186475,217,0 +170760186525,217,0 +170760186573,218,0 +170760186621,218,0 +170760186669,218,0 +170760186717,219,0 +170760186766,218,0 +170760186814,220,0 +170760186862,220,0 +170760186910,220,0 +170760186957,221,0 +170760187005,221,0 +170760187053,222,0 +170760187101,215,0 +170760187151,215,0 +170760187200,215,0 +170760187248,215,0 +170760187297,216,0 +170760187345,216,0 +170760187393,216,0 +170760187441,217,0 +170760187489,217,0 +170760187537,217,0 +170760187584,218,0 +170760187632,219,0 +170760187680,218,0 +170760187728,219,0 +170760187776,220,0 +170760187823,220,0 +170760187871,221,0 +170760187919,221,0 +170760187967,221,0 +170760188015,216,0 +170760188062,215,0 +170760188110,215,0 +170760188158,216,0 +170760188206,216,0 +170760188254,217,0 +170760188302,217,0 +170760188349,217,0 +170760188397,217,0 +170760188445,219,0 +170760188493,219,0 +170760188541,220,0 +170760188588,220,0 +170760188636,220,0 +170760188684,221,0 +170760188732,220,0 +170760188780,221,0 +170760188828,222,0 +170760188875,221,0 +170760188923,218,0 +170760188971,215,0 +170760189019,216,0 +170760189067,216,0 +170760189115,217,0 +170760189162,217,0 +170760189210,218,0 +170760189258,219,0 +170760189306,219,0 +170760189354,220,0 +170760189403,220,0 +170760189451,220,0 +170760189499,221,0 +170760189547,222,0 +170760189596,222,0 +170760189644,221,0 +170760189694,223,0 +170760189742,223,0 +170760189790,222,0 +170760189839,221,0 +170760189887,216,0 +170760189935,216,0 +170760189983,217,0 +170760190032,217,0 +170760190080,218,0 +170760190130,218,0 +170760190178,219,0 +170760190226,218,0 +170760190273,219,0 +170760190321,221,0 +170760190369,221,0 +170760190417,222,0 +170760190465,221,0 +170760190513,223,0 +170760190561,222,0 +170760190609,222,0 +170760190657,222,0 +170760190704,222,0 +170760190752,221,0 +170760190800,216,0 +170760190848,215,0 +170760190896,215,0 +170760190944,216,0 +170760190992,217,0 +170760191040,217,0 +170760191087,218,0 +170760191135,218,0 +170760191183,218,0 +170760191232,221,0 +170760191280,221,0 +170760191328,221,0 +170760191376,222,0 +170760191424,222,0 +170760191471,222,0 +170760191519,222,0 +170760191567,222,0 +170760191615,222,0 +170760191663,222,0 +170760191712,216,0 +170760191760,215,0 +170760191808,215,0 +170760191856,215,0 +170760191904,216,0 +170760191952,216,0 +170760192000,217,0 +170760192050,218,0 +170760192098,218,0 +170760192146,219,0 +170760192194,219,0 +170760192242,220,0 +170760192290,220,0 +170760192337,221,0 +170760192387,221,0 +170760192436,221,0 +170760192484,221,0 +170760192534,221,0 +170760192583,221,0 +170760192631,219,0 +170760192679,215,0 +170760192727,215,0 +170760192777,216,0 +170760192825,216,0 +170760192872,217,0 +170760192920,217,0 +170760192968,217,0 +170760193016,218,0 +170760193064,218,0 +170760193112,219,0 +170760193160,220,0 +170760193208,220,0 +170760193255,221,0 +170760193305,221,0 +170760193353,221,0 +170760193401,222,0 +170760193449,222,0 +170760193498,222,0 +170760193546,221,0 +170760193595,215,0 +170760193645,215,0 +170760193694,216,0 +170760193744,216,0 +170760193792,216,0 +170760193840,217,0 +170760193888,217,0 +170760193937,217,0 +170760193987,218,0 +170760194036,218,0 +170760194084,219,0 +170760194132,220,0 +170760194180,220,0 +170760194228,221,0 +170760194276,221,0 +170760194324,221,0 +170760194372,222,0 +170760194420,221,0 +170760194467,221,0 +170760194516,215,0 +170760194563,215,0 +170760194611,215,0 +170760194659,216,0 +170760194707,216,0 +170760194755,217,0 +170760194805,217,0 +170760194853,217,0 +170760194900,217,0 +170760194948,218,0 +170760194996,219,0 +170760195044,220,0 +170760195092,220,0 +170760195140,221,0 +170760195189,221,0 +170760195237,221,0 +170760195285,221,0 +170760195333,220,0 +170760195381,221,0 +170760195429,216,0 +170760195477,214,0 +170760195525,215,0 +170760195573,215,0 +170760195620,216,0 +170760195670,216,0 +170760195718,216,0 +170760195766,217,0 +170760195814,217,0 +170760195863,218,0 +170760195911,219,0 +170760195959,220,0 +170760196009,220,0 +170760196058,220,0 +170760196106,220,0 +170760196156,220,0 +170760196204,221,0 +170760196251,221,0 +170760196299,222,0 +170760196347,216,0 +170760196395,215,0 +170760196445,215,0 +170760196492,215,0 +170760196540,216,0 +170760196588,216,0 +170760196637,217,0 +170760196685,217,0 +170760196733,218,0 +170760196781,219,0 +170760196830,220,0 +170760196878,220,0 +170760196926,221,0 +170760196974,221,0 +170760197022,221,0 +170760197070,222,0 +170760197119,221,0 +170760197167,222,0 +170760197215,222,0 +170760197263,218,0 +170760197310,215,0 +170760197358,215,0 +170760197406,216,0 +170760197454,217,0 +170760197502,217,0 +170760197550,218,0 +170760197597,219,0 +170760197645,219,0 +170760197693,220,0 +170760197741,221,0 +170760197790,221,0 +170760197838,221,0 +170760197886,221,0 +170760197934,222,0 +170760197982,221,0 +170760198030,221,0 +170760198078,222,0 +170760198125,222,0 +170760198173,221,0 +170760198221,216,0 +170760198269,215,0 +170760198317,216,0 +170760198365,217,0 +170760198413,217,0 +170760198461,218,0 +170760198509,218,0 +170760198556,219,0 +170760198604,220,0 +170760198652,220,0 +170760198700,222,0 +170760198748,221,0 +170760198796,221,0 +170760198844,222,0 +170760198893,221,0 +170760198943,221,0 +170760198991,222,0 +170760199038,223,0 +170760199086,221,0 +170760199134,216,0 +170760199182,215,0 +170760199230,216,0 +170760199278,216,0 +170760199327,216,0 +170760199375,217,0 +170760199425,217,0 +170760199472,218,0 +170760199520,217,0 +170760199568,219,0 +170760199618,219,0 +170760199665,219,0 +170760199713,220,0 +170760199761,221,0 +170760199809,221,0 +170760199857,221,0 +170760199905,222,0 +170760199953,222,0 +170760200000,222,0 +170760200048,216,0 +170760200098,215,0 +170760200147,215,0 +170760200195,216,0 +170760200243,217,0 +170760200291,217,0 +170760200338,217,0 +170760200386,217,0 +170760200436,218,0 +170760200485,220,0 +170760200533,220,0 +170760200581,220,0 +170760200629,220,0 +170760200678,220,0 +170760200727,221,0 +170760200777,221,0 +170760200825,222,0 +170760200873,221,0 +170760200922,221,0 +170760200970,216,0 +170760201018,215,0 +170760201068,215,0 +170760201115,217,0 +170760201163,217,0 +170760201211,217,0 +170760201259,217,0 +170760201307,218,0 +170760201357,218,0 +170760201405,219,0 +170760201453,219,0 +170760201502,221,0 +170760201552,221,0 +170760201600,221,0 +170760201647,222,0 +170760201695,222,0 +170760201743,222,0 +170760201791,222,0 +170760201839,221,0 +170760201887,221,0 +170760201934,215,0 +170760201984,216,0 +170760202032,216,0 +170760202080,217,0 +170760202127,218,0 +170760202175,218,0 +170760202223,218,0 +170760202273,218,0 +170760202320,219,0 +170760202368,220,0 +170760202416,220,0 +170760202464,220,0 +170760202512,222,0 +170760202560,221,0 +170760202609,222,0 +170760202657,223,0 +170760202705,222,0 +170760202754,222,0 +170760202804,221,0 +170760202852,215,0 +170760202900,215,0 +170760202948,216,0 +170760202995,217,0 +170760203043,217,0 +170760203091,218,0 +170760203139,217,0 +170760203187,219,0 +170760203235,219,0 +170760203282,220,0 +170760203330,220,0 +170760203378,221,0 +170760203426,221,0 +170760203474,222,0 +170760203522,221,0 +170760203571,221,0 +170760203619,222,0 +170760203667,222,0 +170760203715,221,0 +170760203763,216,0 +170760203810,216,0 +170760203858,216,0 +170760203906,217,0 +170760203956,217,0 +170760204004,217,0 +170760204052,218,0 +170760204101,218,0 +170760204151,218,0 +170760204199,219,0 +170760204247,220,0 +170760204295,220,0 +170760204343,219,0 +170760204392,221,0 +170760204440,221,0 +170760204488,222,0 +170760204536,222,0 +170760204584,221,0 +170760204631,222,0 +170760204681,216,0 +170760204729,216,0 +170760204777,216,0 +170760204825,217,0 +170760204873,217,0 +170760204922,217,0 +170760204970,218,0 +170760205018,218,0 +170760205068,219,0 +170760205116,219,0 +170760205164,220,0 +170760205213,219,0 +170760205261,221,0 +170760205311,221,0 +170760205359,221,0 +170760205408,222,0 +170760205456,222,0 +170760205505,222,0 +170760205555,221,0 +170760205604,216,0 +170760205652,216,0 +170760205700,216,0 +170760205748,217,0 +170760205796,218,0 +170760205844,218,0 +170760205892,218,0 +170760205940,219,0 +170760205990,219,0 +170760206038,219,0 +170760206085,220,0 +170760206133,222,0 +170760206183,221,0 +170760206232,223,0 +170760206282,223,0 +170760206330,222,0 +170760206378,222,0 +170760206426,222,0 +170760206474,221,0 +170760206522,217,0 +170760206570,216,0 +170760206619,217,0 +170760206667,217,0 +170760206715,217,0 +170760206764,220,0 +170760206812,219,0 +170760206862,220,0 +170760206910,220,0 +170760206959,220,0 +170760207007,222,0 +170760207057,222,0 +170760207105,221,0 +170760207153,222,0 +170760207201,223,0 +170760207250,221,0 +170760207300,223,0 +170760207348,222,0 +170760207397,221,0 +170760207445,216,0 +170760207493,215,0 +170760207541,216,0 +170760207589,216,0 +170760207637,217,0 +170760207686,217,0 +170760207734,218,0 +170760207782,219,0 +170760207830,219,0 +170760207880,219,0 +170760207928,221,0 +170760207975,221,0 +170760208025,221,0 +170760208074,222,0 +170760208122,223,0 +170760208170,222,0 +170760208220,222,0 +170760208268,221,0 +170760208317,221,0 +170760208365,216,0 +170760208415,214,0 +170760208464,215,0 +170760208512,215,0 +170760208562,216,0 +170760208611,216,0 +170760208661,216,0 +170760208710,217,0 +170760208760,218,0 +170760208808,218,0 +170760208857,219,0 +170760208907,219,0 +170760208955,220,0 +170760209002,221,0 +170760209050,221,0 +170760209098,220,0 +170760209146,222,0 +170760209194,221,0 +170760209243,220,0 +170760209291,219,0 +170760209341,215,0 +170760209390,214,0 +170760209438,215,0 +170760209488,215,0 +170760209535,216,0 +170760209583,216,0 +170760209631,217,0 +170760209679,217,0 +170760209727,217,0 +170760209775,218,0 +170760209822,219,0 +170760209870,219,0 +170760209918,220,0 +170760209966,221,0 +170760210015,221,0 +170760210063,220,0 +170760210111,222,0 +170760210159,221,0 +170760210207,217,0 +170760210254,215,0 +170760210302,215,0 +170760210350,216,0 +170760210399,216,0 +170760210447,216,0 +170760210495,217,0 +170760210545,217,0 +170760210594,217,0 +170760210644,218,0 +170760210692,218,0 +170760210741,219,0 +170760210789,220,0 +170760210837,220,0 +170760210885,221,0 +170760210933,222,0 +170760210982,222,0 +170760211030,221,0 +170760211078,222,0 +170760211126,220,0 +170760211174,215,0 +170760211224,215,0 +170760211271,215,0 +170760211319,215,0 +170760211369,216,0 +170760211418,216,0 +170760211468,217,0 +170760211516,217,0 +170760211564,218,0 +170760211612,218,0 +170760211660,220,0 +170760211709,220,0 +170760211757,220,0 +170760211806,221,0 +170760211854,221,0 +170760211902,222,0 +170760211950,221,0 +170760211998,221,0 +170760212046,221,0 +170760212094,215,0 +170760212142,215,0 +170760212192,215,0 +170760212239,215,0 +170760212287,215,0 +170760212335,215,0 +170760212383,216,0 +170760212433,217,0 +170760212482,217,0 +170760212530,219,0 +170760212579,219,0 +170760212629,221,0 +170760212677,221,0 +170760212725,221,0 +170760212774,221,0 +170760212822,221,0 +170760212870,221,0 +170760212919,222,0 +170760212967,221,0 +170760213017,215,0 +170760213065,215,0 +170760213113,215,0 +170760213160,216,0 +170760213208,216,0 +170760213256,216,0 +170760213304,217,0 +170760213352,217,0 +170760213400,218,0 +170760213449,218,0 +170760213497,219,0 +170760213547,220,0 +170760213595,220,0 +170760213643,221,0 +170760213690,221,0 +170760213740,221,0 +170760213788,223,0 +170760213837,221,0 +170760213885,222,0 +170760213934,216,0 +170760213982,214,0 +170760214030,215,0 +170760214078,215,0 +170760214128,215,0 +170760214176,216,0 +170760214224,217,0 +170760214271,217,0 +170760214319,217,0 +170760214369,217,0 +170760214417,218,0 +170760214465,218,0 +170760214512,219,0 +170760214560,219,0 +170760214608,220,0 +170760214657,221,0 +170760214705,220,0 +170760214753,220,0 +170760214801,221,0 +170760214849,221,0 +170760214897,215,0 +170760214946,215,0 +170760214996,215,0 +170760215045,215,0 +170760215093,215,0 +170760215141,216,0 +170760215188,216,0 +170760215236,216,0 +170760215286,216,0 +170760215334,216,0 +170760215381,218,0 +170760215429,217,0 +170760215477,218,0 +170760215525,219,0 +170760215574,220,0 +170760215622,220,0 +170760215670,220,0 +170760215718,221,0 +170760215766,221,0 +170760215814,215,0 +170760215863,214,0 +170760215911,215,0 +170760215960,215,0 +170760216008,215,0 +170760216056,215,0 +170760216104,215,0 +170760216152,216,0 +170760216200,216,0 +170760216248,217,0 +170760216296,217,0 +170760216344,218,0 +170760216392,219,0 +170760216439,219,0 +170760216489,221,0 +170760216537,220,0 +170760216586,224,0 +170760216634,221,0 +170760216682,221,0 +170760216732,215,0 +170760216781,214,0 +170760216831,214,0 +170760216879,215,0 +170760216926,215,0 +170760216974,215,0 +170760217024,216,0 +170760217072,216,0 +170760217120,217,0 +170760217168,218,0 +170760217216,218,0 +170760217263,219,0 +170760217311,219,0 +170760217359,220,0 +170760217407,220,0 +170760217455,221,0 +170760217503,221,0 +170760217553,221,0 +170760217602,221,0 +170760217650,220,0 +170760217698,215,0 +170760217748,215,0 +170760217795,215,0 +170760217845,215,0 +170760217893,216,0 +170760217941,217,0 +170760217990,217,0 +170760218038,218,0 +170760218088,218,0 +170760218136,219,0 +170760218184,219,0 +170760218232,220,0 +170760218280,221,0 +170760218327,221,0 +170760218375,221,0 +170760218423,221,0 +170760218471,222,0 +170760218519,221,0 +170760218569,221,0 +170760218617,215,0 +170760218665,215,0 +170760218714,215,0 +170760218764,215,0 +170760218813,216,0 +170760218863,216,0 +170760218912,217,0 +170760218960,218,0 +170760219008,219,0 +170760219056,219,0 +170760219104,219,0 +170760219152,219,0 +170760219199,220,0 +170760219247,222,0 +170760219295,221,0 +170760219343,220,0 +170760219392,222,0 +170760219440,222,0 +170760219490,221,0 +170760219538,215,0 +170760219586,215,0 +170760219633,215,0 +170760219683,216,0 +170760219731,217,0 +170760219779,216,0 +170760219827,217,0 +170760219875,217,0 +170760219923,217,0 +170760219971,218,0 +170760220020,219,0 +170760220068,219,0 +170760220116,220,0 +170760220164,221,0 +170760220213,221,0 +170760220261,221,0 +170760220309,223,0 +170760220359,221,0 +170760220407,222,0 +170760220454,216,0 +170760220502,216,0 +170760220550,216,0 +170760220598,216,0 +170760220646,217,0 +170760220694,218,0 +170760220744,218,0 +170760220791,218,0 +170760220841,219,0 +170760220889,219,0 +170760220937,219,0 +170760220985,220,0 +170760221033,221,0 +170760221082,221,0 +170760221130,221,0 +170760221180,221,0 +170760221228,221,0 +170760221276,222,0 +170760221324,222,0 +170760221372,221,0 +170760221419,217,0 +170760221467,217,0 +170760221515,218,0 +170760221565,218,0 +170760221613,220,0 +170760221661,219,0 +170760221708,220,0 +170760221756,221,0 +170760221804,221,0 +170760221852,221,0 +170760221900,222,0 +170760221948,222,0 +170760221997,223,0 +170760222045,223,0 +170760222093,223,0 +170760222141,222,0 +170760222190,222,0 +170760222238,222,0 +170760222288,221,0 +170760222336,218,0 +170760222385,219,0 +170760222435,219,0 +170760222483,219,0 +170760222530,220,0 +170760222578,221,0 +170760222626,220,0 +170760222674,222,0 +170760222724,221,0 +170760222772,222,0 +170760222821,223,0 +170760222869,222,0 +170760222917,223,0 +170760222965,222,0 +170760223013,223,0 +170760223061,222,0 +170760223108,222,0 +170760223156,221,0 +170760223204,221,0 +170760223252,218,0 +170760223300,218,0 +170760223348,219,0 +170760223397,219,0 +170760223445,219,0 +170760223493,220,0 +170760223541,220,0 +170760223590,221,0 +170760223638,221,0 +170760223688,222,0 +170760223736,221,0 +170760223785,223,0 +170760223833,222,0 +170760223882,223,0 +170760223930,223,0 +170760223978,222,0 +170760224028,222,0 +170760224076,221,0 +170760224124,216,0 +170760224172,216,0 +170760224220,217,0 +170760224267,217,0 +170760224315,217,0 +170760224365,218,0 +170760224413,220,0 +170760224461,219,0 +170760224509,219,0 +170760224558,220,0 +170760224606,221,0 +170760224654,224,0 +170760224703,222,0 +170760224751,222,0 +170760224801,221,0 +170760224849,221,0 +170760224898,222,0 +170760224946,221,0 +170760224994,222,0 +170760225044,216,0 +170760225092,215,0 +170760225140,215,0 +170760225188,216,0 +170760225235,216,0 +170760225283,217,0 +170760225331,218,0 +170760225379,218,0 +170760225427,218,0 +170760225475,219,0 +170760225523,220,0 +170760225571,219,0 +170760225619,219,0 +170760225668,221,0 +170760225716,222,0 +170760225764,222,0 +170760225814,221,0 +170760225863,221,0 +170760225911,220,0 +170760225959,216,0 +170760226009,215,0 +170760226057,216,0 +170760226105,217,0 +170760226152,217,0 +170760226202,217,0 +170760226250,218,0 +170760226299,217,0 +170760226347,218,0 +170760226395,219,0 +170760226445,219,0 +170760226493,220,0 +170760226541,221,0 +170760226590,221,0 +170760226640,221,0 +170760226688,222,0 +170760226735,222,0 +170760226783,222,0 +170760226831,221,0 +170760226879,215,0 +170760226927,215,0 +170760226975,216,0 +170760227023,217,0 +170760227072,217,0 +170760227122,217,0 +170760227171,218,0 +170760227219,218,0 +170760227267,218,0 +170760227315,219,0 +170760227363,220,0 +170760227411,220,0 +170760227459,221,0 +170760227508,221,0 +170760227556,221,0 +170760227604,222,0 +170760227652,222,0 +170760227702,221,0 +170760227750,221,0 +170760227797,216,0 +170760227845,215,0 +170760227893,216,0 +170760227943,216,0 +170760227991,217,0 +170760228039,217,0 +170760228087,217,0 +170760228135,218,0 +170760228183,218,0 +170760228230,219,0 +170760228278,219,0 +170760228328,220,0 +170760228377,220,0 +170760228427,221,0 +170760228475,221,0 +170760228523,221,0 +170760228572,221,0 +170760228620,221,0 +170760228668,221,0 +170760228716,215,0 +170760228765,215,0 +170760228813,216,0 +170760228861,217,0 +170760228911,217,0 +170760228960,217,0 +170760229008,217,0 +170760229056,218,0 +170760229104,218,0 +170760229152,219,0 +170760229200,220,0 +170760229247,221,0 +170760229295,221,0 +170760229343,221,0 +170760229391,222,0 +170760229439,222,0 +170760229487,222,0 +170760229535,221,0 +170760229583,218,0 +170760229632,215,0 +170760229680,216,0 +170760229728,216,0 +170760229778,216,0 +170760229827,217,0 +170760229877,217,0 +170760229924,218,0 +170760229974,219,0 +170760230022,218,0 +170760230070,219,0 +170760230118,220,0 +170760230167,221,0 +170760230217,222,0 +170760230265,221,0 +170760230312,222,0 +170760230360,222,0 +170760230410,222,0 +170760230458,221,0 +170760230506,216,0 +170760230554,215,0 +170760230601,215,0 +170760230649,216,0 +170760230699,217,0 +170760230747,218,0 +170760230795,217,0 +170760230844,217,0 +170760230894,219,0 +170760230941,219,0 +170760230989,220,0 +170760231037,220,0 +170760231085,221,0 +170760231135,222,0 +170760231183,222,0 +170760231232,221,0 +170760231280,224,0 +170760231328,222,0 +170760231376,222,0 +170760231424,216,0 +170760231472,215,0 +170760231520,215,0 +170760231568,215,0 +170760231617,216,0 +170760231665,216,0 +170760231715,217,0 +170760231764,218,0 +170760231812,218,0 +170760231862,220,0 +170760231911,218,0 +170760231961,219,0 +170760232010,219,0 +170760232058,219,0 +170760232108,221,0 +170760232156,221,0 +170760232203,221,0 +170760232251,222,0 +170760232301,222,0 +170760232349,216,0 +170760232397,215,0 +170760232445,215,0 +170760232493,214,0 +170760232542,215,0 +170760232590,215,0 +170760232638,215,0 +170760232686,215,0 +170760232734,216,0 +170760232783,216,0 +170760232831,216,0 +170760232879,217,0 +170760232927,217,0 +170760232977,218,0 +170760233025,218,0 +170760233074,218,0 +170760233122,219,0 +170760233172,221,0 +170760233219,220,0 +170760233269,215,0 +170760233318,215,0 +170760233368,215,0 +170760233417,216,0 +170760233465,216,0 +170760233513,216,0 +170760233561,218,0 +170760233611,217,0 +170760233659,218,0 +170760233707,219,0 +170760233755,219,0 +170760233803,219,0 +170760233851,219,0 +170760233899,220,0 +170760233948,221,0 +170760233996,220,0 +170760234045,221,0 +170760234095,221,0 +170760234143,221,0 +170760234192,215,0 +170760234240,214,0 +170760234290,215,0 +170760234337,215,0 +170760234387,215,0 +170760234435,216,0 +170760234483,216,0 +170760234532,217,0 +170760234582,217,0 +170760234630,218,0 +170760234678,217,0 +170760234726,219,0 +170760234774,219,0 +170760234822,221,0 +170760234869,221,0 +170760234919,221,0 +170760234967,221,0 +170760235016,221,0 +170760235064,216,0 +170760235112,214,0 +170760235160,214,0 +170760235209,215,0 +170760235257,215,0 +170760235305,215,0 +170760235353,215,0 +170760235401,216,0 +170760235449,216,0 +170760235497,216,0 +170760235545,217,0 +170760235593,217,0 +170760235641,218,0 +170760235690,219,0 +170760235740,219,0 +170760235788,220,0 +170760235836,220,0 +170760235885,220,0 +170760235933,222,0 +170760235981,216,0 +170760236029,215,0 +170760236077,215,0 +170760236125,216,0 +170760236173,217,0 +170760236222,217,0 +170760236270,218,0 +170760236318,218,0 +170760236366,219,0 +170760236414,220,0 +170760236463,220,0 +170760236513,221,0 +170760236561,221,0 +170760236610,221,0 +170760236658,221,0 +170760236706,222,0 +170760236754,221,0 +170760236802,223,0 +170760236850,221,0 +170760236898,217,0 +170760236947,217,0 +170760236995,217,0 +170760237043,218,0 +170760237092,219,0 +170760237142,218,0 +170760237190,219,0 +170760237239,220,0 +170760237287,220,0 +170760237337,220,0 +170760237385,221,0 +170760237434,221,0 +170760237482,221,0 +170760237530,222,0 +170760237578,221,0 +170760237626,222,0 +170760237674,222,0 +170760237721,221,0 +170760237771,221,0 +170760237819,216,0 +170760237867,216,0 +170760237915,217,0 +170760237963,217,0 +170760238012,218,0 +170760238062,218,0 +170760238110,218,0 +170760238158,219,0 +170760238205,220,0 +170760238253,220,0 +170760238303,220,0 +170760238351,222,0 +170760238399,221,0 +170760238447,222,0 +170760238495,222,0 +170760238543,222,0 +170760238591,223,0 +170760238638,221,0 +170760238686,222,0 +170760238734,216,0 +170760238782,216,0 +170760238830,216,0 +170760238878,217,0 +170760238928,217,0 +170760238977,218,0 +170760239025,219,0 +170760239073,219,0 +170760239121,219,0 +170760239169,219,0 +170760239217,221,0 +170760239264,221,0 +170760239312,221,0 +170760239360,222,0 +170760239408,222,0 +170760239456,222,0 +170760239504,222,0 +170760239552,222,0 +170760239600,220,0 +170760239648,216,0 +170760239696,216,0 +170760239744,216,0 +170760239792,217,0 +170760239840,217,0 +170760239888,218,0 +170760239936,219,0 +170760239983,219,0 diff --git a/laser_value/0211-08.csv b/laser_value/0211-08.csv new file mode 100644 index 0000000..7bb4dc9 --- /dev/null +++ b/laser_value/0211-08.csv @@ -0,0 +1,7452 @@ +timestamp,laser_value,event +170760240032,219,0 +170760240080,219,0 +170760240129,221,0 +170760240177,220,0 +170760240227,221,0 +170760240276,222,0 +170760240323,221,0 +170760240371,221,0 +170760240419,222,0 +170760240467,221,0 +170760240515,221,0 +170760240565,215,0 +170760240614,216,0 +170760240662,217,0 +170760240710,218,0 +170760240758,218,0 +170760240806,218,0 +170760240856,219,0 +170760240905,218,0 +170760240953,219,0 +170760241001,219,0 +170760241049,220,0 +170760241097,220,0 +170760241145,221,0 +170760241194,222,0 +170760241242,223,0 +170760241290,222,0 +170760241338,221,0 +170760241387,222,0 +170760241435,220,0 +170760241483,215,0 +170760241531,215,0 +170760241579,216,0 +170760241628,216,0 +170760241678,217,0 +170760241725,218,0 +170760241773,220,0 +170760241821,219,0 +170760241869,220,0 +170760241919,220,0 +170760241967,221,0 +170760242015,221,0 +170760242062,221,0 +170760242110,222,0 +170760242158,222,0 +170760242206,223,0 +170760242254,222,0 +170760242302,221,0 +170760242350,216,0 +170760242398,215,0 +170760242446,214,0 +170760242493,215,0 +170760242541,216,0 +170760242591,217,0 +170760242639,217,0 +170760242688,218,0 +170760242736,218,0 +170760242784,219,0 +170760242833,220,0 +170760242881,219,0 +170760242929,220,0 +170760242977,220,0 +170760243024,221,0 +170760243074,221,0 +170760243122,221,0 +170760243170,222,0 +170760243218,221,0 +170760243267,216,0 +170760243315,215,0 +170760243364,216,0 +170760243412,216,0 +170760243460,217,0 +170760243508,217,0 +170760243556,217,0 +170760243604,218,0 +170760243651,218,0 +170760243699,219,0 +170760243749,219,0 +170760243797,219,0 +170760243846,219,0 +170760243894,221,0 +170760243942,221,0 +170760243990,222,0 +170760244040,222,0 +170760244088,221,0 +170760244136,220,0 +170760244183,216,0 +170760244231,215,0 +170760244279,216,0 +170760244329,216,0 +170760244378,217,0 +170760244426,217,0 +170760244476,218,0 +170760244525,218,0 +170760244573,219,0 +170760244621,220,0 +170760244670,220,0 +170760244718,221,0 +170760244768,221,0 +170760244817,222,0 +170760244867,221,0 +170760244916,223,0 +170760244966,222,0 +170760245014,222,0 +170760245062,221,0 +170760245111,215,0 +170760245159,215,0 +170760245207,216,0 +170760245255,216,0 +170760245303,216,0 +170760245351,217,0 +170760245399,217,0 +170760245446,218,0 +170760245496,218,0 +170760245545,218,0 +170760245595,219,0 +170760245643,220,0 +170760245692,221,0 +170760245740,220,0 +170760245788,227,0 +170760245837,221,0 +170760245885,221,0 +170760245935,223,0 +170760245983,220,0 +170760246031,214,0 +170760246078,215,0 +170760246128,215,0 +170760246176,216,0 +170760246224,216,0 +170760246272,217,0 +170760246321,217,0 +170760246371,217,0 +170760246419,218,0 +170760246467,219,0 +170760246516,220,0 +170760246564,220,0 +170760246612,221,0 +170760246661,223,0 +170760246709,222,0 +170760246757,222,0 +170760246805,222,0 +170760246853,222,0 +170760246901,220,0 +170760246949,215,0 +170760246996,214,0 +170760247044,215,0 +170760247092,215,0 +170760247140,216,0 +170760247188,216,0 +170760247236,217,0 +170760247284,218,0 +170760247333,218,0 +170760247381,219,0 +170760247429,220,0 +170760247479,220,0 +170760247527,221,0 +170760247576,222,0 +170760247624,221,0 +170760247673,222,0 +170760247723,220,0 +170760247772,222,0 +170760247822,216,0 +170760247871,215,0 +170760247921,214,0 +170760247970,214,0 +170760248018,215,0 +170760248066,216,0 +170760248114,217,0 +170760248162,217,0 +170760248210,217,0 +170760248258,218,0 +170760248307,219,0 +170760248355,219,0 +170760248405,221,0 +170760248453,221,0 +170760248502,221,0 +170760248550,222,0 +170760248599,222,0 +170760248647,222,0 +170760248695,222,0 +170760248743,216,0 +170760248792,216,0 +170760248840,217,0 +170760248888,217,0 +170760248936,218,0 +170760248986,219,0 +170760249033,219,0 +170760249081,220,0 +170760249129,220,0 +170760249179,221,0 +170760249228,221,0 +170760249278,222,0 +170760249327,221,0 +170760249377,222,0 +170760249426,222,0 +170760249474,222,0 +170760249522,224,0 +170760249571,221,0 +170760249619,220,0 +170760249667,215,0 +170760249715,215,0 +170760249763,215,0 +170760249811,216,0 +170760249859,216,0 +170760249907,217,0 +170760249956,216,0 +170760250004,217,0 +170760250052,218,0 +170760250101,219,0 +170760250149,220,0 +170760250197,220,0 +170760250245,220,0 +170760250293,220,0 +170760250341,220,0 +170760250389,222,0 +170760250437,222,0 +170760250486,221,0 +170760250536,221,0 +170760250584,215,0 +170760250632,215,0 +170760250681,216,0 +170760250729,216,0 +170760250777,217,0 +170760250826,217,0 +170760250874,217,0 +170760250922,217,0 +170760250972,217,0 +170760251021,218,0 +170760251070,219,0 +170760251118,219,0 +170760251166,219,0 +170760251214,220,0 +170760251264,220,0 +170760251313,221,0 +170760251363,222,0 +170760251412,221,0 +170760251460,216,0 +170760251508,215,0 +170760251558,216,0 +170760251605,216,0 +170760251653,216,0 +170760251701,218,0 +170760251751,217,0 +170760251799,218,0 +170760251847,218,0 +170760251895,219,0 +170760251942,220,0 +170760251992,221,0 +170760252040,221,0 +170760252089,222,0 +170760252137,222,0 +170760252187,221,0 +170760252234,222,0 +170760252282,222,0 +170760252330,221,0 +170760252378,216,0 +170760252428,216,0 +170760252476,216,0 +170760252523,217,0 +170760252571,217,0 +170760252621,218,0 +170760252669,218,0 +170760252718,219,0 +170760252766,219,0 +170760252816,219,0 +170760252863,221,0 +170760252911,220,0 +170760252959,221,0 +170760253009,221,0 +170760253057,221,0 +170760253105,221,0 +170760253152,223,0 +170760253200,222,0 +170760253250,221,0 +170760253298,215,0 +170760253347,215,0 +170760253395,216,0 +170760253443,216,0 +170760253491,217,0 +170760253539,218,0 +170760253587,218,0 +170760253636,217,0 +170760253684,218,0 +170760253732,219,0 +170760253780,219,0 +170760253829,220,0 +170760253877,220,0 +170760253925,221,0 +170760253973,222,0 +170760254021,222,0 +170760254069,222,0 +170760254116,222,0 +170760254164,221,0 +170760254212,216,0 +170760254260,216,0 +170760254308,216,0 +170760254356,217,0 +170760254405,216,0 +170760254453,218,0 +170760254501,219,0 +170760254549,219,0 +170760254597,220,0 +170760254645,220,0 +170760254693,220,0 +170760254740,221,0 +170760254788,221,0 +170760254836,222,0 +170760254884,221,0 +170760254932,222,0 +170760254980,222,0 +170760255028,221,0 +170760255076,220,0 +170760255125,216,0 +170760255173,216,0 +170760255221,217,0 +170760255269,217,0 +170760255316,218,0 +170760255364,219,0 +170760255412,219,0 +170760255460,220,0 +170760255508,220,0 +170760255556,221,0 +170760255604,221,0 +170760255653,222,0 +170760255701,222,0 +170760255749,222,0 +170760255797,222,0 +170760255845,222,0 +170760255894,222,0 +170760255942,222,0 +170760255990,218,0 +170760256038,215,0 +170760256088,216,0 +170760256136,216,0 +170760256183,217,0 +170760256233,217,0 +170760256282,218,0 +170760256332,219,0 +170760256381,219,0 +170760256429,219,0 +170760256477,220,0 +170760256525,221,0 +170760256573,222,0 +170760256621,221,0 +170760256670,221,0 +170760256720,221,0 +170760256767,221,0 +170760256815,221,0 +170760256863,220,0 +170760256911,216,0 +170760256959,215,0 +170760257007,215,0 +170760257055,215,0 +170760257103,217,0 +170760257151,217,0 +170760257200,217,0 +170760257248,217,0 +170760257297,218,0 +170760257347,219,0 +170760257395,219,0 +170760257443,220,0 +170760257491,220,0 +170760257540,220,0 +170760257589,221,0 +170760257637,222,0 +170760257685,221,0 +170760257733,221,0 +170760257781,221,0 +170760257829,216,0 +170760257877,215,0 +170760257925,216,0 +170760257973,216,0 +170760258022,217,0 +170760258072,217,0 +170760258121,218,0 +170760258169,218,0 +170760258219,218,0 +170760258267,219,0 +170760258314,220,0 +170760258362,220,0 +170760258410,220,0 +170760258458,221,0 +170760258506,221,0 +170760258554,222,0 +170760258602,221,0 +170760258651,220,0 +170760258699,221,0 +170760258747,215,0 +170760258795,215,0 +170760258843,216,0 +170760258892,217,0 +170760258940,217,0 +170760258988,217,0 +170760259036,218,0 +170760259084,219,0 +170760259133,219,0 +170760259183,220,0 +170760259232,220,0 +170760259280,221,0 +170760259328,222,0 +170760259376,222,0 +170760259424,222,0 +170760259472,221,0 +170760259520,221,0 +170760259569,222,0 +170760259617,220,0 +170760259665,215,0 +170760259715,215,0 +170760259763,216,0 +170760259812,217,0 +170760259862,218,0 +170760259910,217,0 +170760259957,218,0 +170760260005,218,0 +170760260053,219,0 +170760260101,219,0 +170760260149,219,0 +170760260197,220,0 +170760260245,220,0 +170760260294,221,0 +170760260344,222,0 +170760260392,221,0 +170760260440,221,0 +170760260487,221,0 +170760260535,217,0 +170760260583,215,0 +170760260631,214,0 +170760260679,215,0 +170760260727,216,0 +170760260775,216,0 +170760260824,217,0 +170760260872,218,0 +170760260920,219,0 +170760260968,219,0 +170760261017,219,0 +170760261067,219,0 +170760261116,220,0 +170760261164,221,0 +170760261212,221,0 +170760261261,221,0 +170760261309,222,0 +170760261357,221,0 +170760261405,221,0 +170760261453,216,0 +170760261501,215,0 +170760261549,215,0 +170760261597,215,0 +170760261645,216,0 +170760261694,216,0 +170760261742,217,0 +170760261790,217,0 +170760261838,218,0 +170760261886,219,0 +170760261934,220,0 +170760261983,219,0 +170760262031,220,0 +170760262079,221,0 +170760262127,220,0 +170760262176,220,0 +170760262224,221,0 +170760262274,220,0 +170760262323,221,0 +170760262371,215,0 +170760262419,214,0 +170760262467,215,0 +170760262515,215,0 +170760262565,216,0 +170760262612,216,0 +170760262662,216,0 +170760262710,217,0 +170760262758,217,0 +170760262805,218,0 +170760262853,219,0 +170760262901,219,0 +170760262949,220,0 +170760262997,220,0 +170760263045,221,0 +170760263093,221,0 +170760263140,220,0 +170760263188,221,0 +170760263236,221,0 +170760263284,215,0 +170760263332,214,0 +170760263380,214,0 +170760263428,215,0 +170760263475,216,0 +170760263525,217,0 +170760263574,217,0 +170760263622,217,0 +170760263670,217,0 +170760263719,219,0 +170760263767,219,0 +170760263815,219,0 +170760263863,219,0 +170760263913,219,0 +170760263960,220,0 +170760264008,220,0 +170760264056,223,0 +170760264106,221,0 +170760264154,221,0 +170760264203,214,0 +170760264251,214,0 +170760264299,214,0 +170760264349,215,0 +170760264397,215,0 +170760264446,215,0 +170760264494,215,0 +170760264544,216,0 +170760264593,216,0 +170760264643,217,0 +170760264690,217,0 +170760264738,217,0 +170760264786,218,0 +170760264836,219,0 +170760264884,219,0 +170760264932,219,0 +170760264980,220,0 +170760265028,221,0 +170760265076,216,0 +170760265124,215,0 +170760265171,215,0 +170760265219,216,0 +170760265269,216,0 +170760265318,217,0 +170760265366,217,0 +170760265416,217,0 +170760265464,217,0 +170760265513,218,0 +170760265561,219,0 +170760265609,222,0 +170760265657,220,0 +170760265705,220,0 +170760265753,221,0 +170760265801,222,0 +170760265849,222,0 +170760265898,221,0 +170760265946,220,0 +170760265994,215,0 +170760266042,215,0 +170760266090,215,0 +170760266138,216,0 +170760266186,217,0 +170760266236,217,0 +170760266283,217,0 +170760266331,218,0 +170760266379,218,0 +170760266427,220,0 +170760266475,219,0 +170760266523,220,0 +170760266571,220,0 +170760266619,221,0 +170760266667,220,0 +170760266715,221,0 +170760266763,221,0 +170760266811,222,0 +170760266859,221,0 +170760266907,216,0 +170760266955,215,0 +170760267003,215,0 +170760267051,216,0 +170760267098,216,0 +170760267146,217,0 +170760267194,217,0 +170760267242,217,0 +170760267292,218,0 +170760267341,219,0 +170760267389,219,0 +170760267439,219,0 +170760267488,220,0 +170760267536,220,0 +170760267584,221,0 +170760267632,222,0 +170760267680,222,0 +170760267728,223,0 +170760267777,222,0 +170760267825,215,0 +170760267875,216,0 +170760267922,216,0 +170760267972,216,0 +170760268020,217,0 +170760268069,218,0 +170760268117,218,0 +170760268165,219,0 +170760268213,220,0 +170760268261,220,0 +170760268311,220,0 +170760268358,221,0 +170760268406,221,0 +170760268454,221,0 +170760268504,221,0 +170760268552,222,0 +170760268600,222,0 +170760268648,222,0 +170760268696,219,0 +170760268743,216,0 +170760268791,216,0 +170760268839,217,0 +170760268887,218,0 +170760268935,219,0 +170760268983,219,0 +170760269031,220,0 +170760269079,220,0 +170760269127,221,0 +170760269175,222,0 +170760269222,221,0 +170760269272,221,0 +170760269320,222,0 +170760269368,222,0 +170760269416,221,0 +170760269464,223,0 +170760269511,221,0 +170760269561,221,0 +170760269609,216,0 +170760269657,217,0 +170760269705,217,0 +170760269753,218,0 +170760269802,219,0 +170760269850,219,0 +170760269898,220,0 +170760269947,220,0 +170760269995,220,0 +170760270045,221,0 +170760270093,221,0 +170760270141,221,0 +170760270189,222,0 +170760270236,221,0 +170760270286,222,0 +170760270334,222,0 +170760270383,222,0 +170760270433,222,0 +170760270481,221,0 +170760270529,217,0 +170760270578,216,0 +170760270628,217,0 +170760270677,217,0 +170760270725,218,0 +170760270775,219,0 +170760270824,219,0 +170760270874,219,0 +170760270922,219,0 +170760270970,220,0 +170760271017,221,0 +170760271065,221,0 +170760271113,221,0 +170760271161,221,0 +170760271209,221,0 +170760271257,222,0 +170760271305,221,0 +170760271353,221,0 +170760271401,221,0 +170760271449,215,0 +170760271499,215,0 +170760271547,216,0 +170760271595,216,0 +170760271643,217,0 +170760271690,217,0 +170760271738,218,0 +170760271788,218,0 +170760271836,219,0 +170760271884,219,0 +170760271932,220,0 +170760271980,221,0 +170760272028,221,0 +170760272077,221,0 +170760272125,221,0 +170760272173,222,0 +170760272221,221,0 +170760272270,221,0 +170760272320,220,0 +170760272368,215,0 +170760272415,215,0 +170760272464,216,0 +170760272513,216,0 +170760272561,217,0 +170760272610,218,0 +170760272658,218,0 +170760272706,219,0 +170760272754,219,0 +170760272804,219,0 +170760272853,220,0 +170760272901,220,0 +170760272950,220,0 +170760272998,221,0 +170760273046,221,0 +170760273094,221,0 +170760273142,221,0 +170760273190,221,0 +170760273238,216,0 +170760273286,216,0 +170760273334,216,0 +170760273383,218,0 +170760273431,217,0 +170760273479,218,0 +170760273527,219,0 +170760273575,219,0 +170760273623,220,0 +170760273671,219,0 +170760273718,221,0 +170760273766,221,0 +170760273814,221,0 +170760273862,221,0 +170760273910,221,0 +170760273958,222,0 +170760274006,222,0 +170760274054,222,0 +170760274102,221,0 +170760274150,216,0 +170760274198,215,0 +170760274246,216,0 +170760274293,217,0 +170760274343,217,0 +170760274393,218,0 +170760274441,218,0 +170760274488,219,0 +170760274536,219,0 +170760274586,219,0 +170760274634,220,0 +170760274682,221,0 +170760274729,221,0 +170760274779,222,0 +170760274828,222,0 +170760274876,221,0 +170760274924,221,0 +170760274972,221,0 +170760275021,220,0 +170760275069,215,0 +170760275118,215,0 +170760275166,215,0 +170760275214,216,0 +170760275264,216,0 +170760275312,217,0 +170760275361,217,0 +170760275409,217,0 +170760275457,219,0 +170760275505,219,0 +170760275553,220,0 +170760275603,220,0 +170760275652,220,0 +170760275701,221,0 +170760275749,220,0 +170760275797,222,0 +170760275845,223,0 +170760275893,221,0 +170760275941,220,0 +170760275990,215,0 +170760276038,215,0 +170760276087,215,0 +170760276137,216,0 +170760276185,216,0 +170760276234,217,0 +170760276282,217,0 +170760276330,217,0 +170760276378,217,0 +170760276428,218,0 +170760276475,220,0 +170760276523,221,0 +170760276571,220,0 +170760276621,221,0 +170760276670,221,0 +170760276718,221,0 +170760276766,221,0 +170760276814,221,0 +170760276862,216,0 +170760276909,214,0 +170760276959,214,0 +170760277007,215,0 +170760277055,215,0 +170760277104,215,0 +170760277152,216,0 +170760277200,216,0 +170760277249,217,0 +170760277299,216,0 +170760277347,217,0 +170760277396,218,0 +170760277444,218,0 +170760277492,219,0 +170760277540,220,0 +170760277590,220,0 +170760277638,221,0 +170760277686,220,0 +170760277735,221,0 +170760277783,216,0 +170760277831,215,0 +170760277879,214,0 +170760277929,215,0 +170760277978,215,0 +170760278026,215,0 +170760278074,215,0 +170760278124,216,0 +170760278171,217,0 +170760278221,216,0 +170760278269,217,0 +170760278318,218,0 +170760278366,219,0 +170760278414,219,0 +170760278462,220,0 +170760278510,219,0 +170760278560,220,0 +170760278609,221,0 +170760278659,221,0 +170760278707,215,0 +170760278755,214,0 +170760278804,214,0 +170760278853,215,0 +170760278903,215,0 +170760278951,215,0 +170760278999,216,0 +170760279048,216,0 +170760279098,216,0 +170760279147,217,0 +170760279195,217,0 +170760279243,217,0 +170760279291,219,0 +170760279340,219,0 +170760279390,220,0 +170760279439,220,0 +170760279489,220,0 +170760279537,220,0 +170760279585,221,0 +170760279633,222,0 +170760279682,222,0 +170760279730,222,0 +170760279778,222,0 +170760279826,222,0 +170760279874,222,0 +170760279923,222,0 +170760279971,221,0 +170760280018,220,0 +170760280066,215,0 +170760280114,214,0 +170760280164,215,0 +170760280212,215,0 +170760280261,215,0 +170760280311,216,0 +170760280358,216,0 +170760280408,217,0 +170760280456,218,0 +170760280505,219,0 +170760280553,219,0 +170760280603,220,0 +170760280651,220,0 +170760280700,221,0 +170760280748,221,0 +170760280796,221,0 +170760280846,221,0 +170760280893,221,0 +170760280941,216,0 +170760280989,215,0 +170760281039,215,0 +170760281087,215,0 +170760281136,216,0 +170760281186,217,0 +170760281234,217,0 +170760281281,217,0 +170760281329,217,0 +170760281377,218,0 +170760281425,219,0 +170760281473,219,0 +170760281521,220,0 +170760281569,220,0 +170760281617,221,0 +170760281667,220,0 +170760281716,222,0 +170760281766,221,0 +170760281815,222,0 +170760281863,216,0 +170760281912,215,0 +170760281960,215,0 +170760282008,216,0 +170760282056,216,0 +170760282104,216,0 +170760282153,217,0 +170760282201,217,0 +170760282249,217,0 +170760282298,218,0 +170760282348,218,0 +170760282396,220,0 +170760282444,220,0 +170760282492,221,0 +170760282540,220,0 +170760282588,221,0 +170760282637,221,0 +170760282685,222,0 +170760282733,221,0 +170760282781,215,0 +170760282829,215,0 +170760282878,216,0 +170760282926,216,0 +170760282974,217,0 +170760283022,217,0 +170760283070,217,0 +170760283119,218,0 +170760283169,219,0 +170760283218,219,0 +170760283266,220,0 +170760283314,220,0 +170760283363,221,0 +170760283413,221,0 +170760283461,221,0 +170760283510,222,0 +170760283558,221,0 +170760283606,221,0 +170760283656,219,0 +170760283704,216,0 +170760283752,216,0 +170760283799,216,0 +170760283849,217,0 +170760283897,218,0 +170760283945,217,0 +170760283993,219,0 +170760284041,219,0 +170760284088,220,0 +170760284136,221,0 +170760284184,221,0 +170760284232,221,0 +170760284280,221,0 +170760284330,220,0 +170760284377,222,0 +170760284425,222,0 +170760284473,222,0 +170760284523,222,0 +170760284571,216,0 +170760284619,216,0 +170760284667,217,0 +170760284715,217,0 +170760284764,218,0 +170760284812,218,0 +170760284860,219,0 +170760284908,220,0 +170760284956,221,0 +170760285004,221,0 +170760285053,222,0 +170760285103,222,0 +170760285152,221,0 +170760285200,223,0 +170760285249,223,0 +170760285297,222,0 +170760285345,223,0 +170760285395,222,0 +170760285443,222,0 +170760285491,216,0 +170760285540,216,0 +170760285588,216,0 +170760285636,217,0 +170760285686,218,0 +170760285735,219,0 +170760285783,218,0 +170760285831,219,0 +170760285880,219,0 +170760285928,220,0 +170760285976,221,0 +170760286024,222,0 +170760286074,223,0 +170760286122,223,0 +170760286171,223,0 +170760286219,223,0 +170760286267,221,0 +170760286317,221,0 +170760286365,217,0 +170760286413,215,0 +170760286462,216,0 +170760286512,216,0 +170760286560,217,0 +170760286607,217,0 +170760286655,217,0 +170760286703,217,0 +170760286753,218,0 +170760286802,218,0 +170760286852,218,0 +170760286901,219,0 +170760286949,219,0 +170760286999,221,0 +170760287046,221,0 +170760287096,220,0 +170760287144,221,0 +170760287192,220,0 +170760287240,221,0 +170760287289,216,0 +170760287339,215,0 +170760287386,215,0 +170760287436,216,0 +170760287486,217,0 +170760287535,217,0 +170760287583,218,0 +170760287631,217,0 +170760287679,218,0 +170760287728,220,0 +170760287778,220,0 +170760287827,221,0 +170760287875,221,0 +170760287923,222,0 +170760287971,222,0 +170760288019,222,0 +170760288069,219,0 +170760288117,221,0 +170760288165,221,0 +170760288214,215,0 +170760288264,215,0 +170760288313,216,0 +170760288361,217,0 +170760288409,217,0 +170760288458,217,0 +170760288508,218,0 +170760288556,218,0 +170760288604,218,0 +170760288651,220,0 +170760288699,220,0 +170760288747,221,0 +170760288797,221,0 +170760288846,222,0 +170760288896,222,0 +170760288944,223,0 +170760288992,222,0 +170760289040,222,0 +170760289089,220,0 +170760289137,214,0 +170760289186,215,0 +170760289234,215,0 +170760289282,216,0 +170760289332,216,0 +170760289380,216,0 +170760289428,218,0 +170760289476,218,0 +170760289524,218,0 +170760289572,219,0 +170760289620,219,0 +170760289669,219,0 +170760289717,221,0 +170760289765,221,0 +170760289814,221,0 +170760289864,221,0 +170760289912,221,0 +170760289960,221,0 +170760290009,216,0 +170760290059,215,0 +170760290107,214,0 +170760290156,215,0 +170760290204,216,0 +170760290252,216,0 +170760290300,217,0 +170760290348,217,0 +170760290396,218,0 +170760290445,218,0 +170760290495,218,0 +170760290544,219,0 +170760290592,220,0 +170760290640,218,0 +170760290689,221,0 +170760290739,219,0 +170760290787,218,0 +170760290835,220,0 +170760290883,221,0 +170760290931,215,0 +170760290979,215,0 +170760291026,215,0 +170760291074,215,0 +170760291124,215,0 +170760291172,216,0 +170760291220,216,0 +170760291269,216,0 +170760291317,217,0 +170760291365,218,0 +170760291413,218,0 +170760291463,219,0 +170760291512,220,0 +170760291560,220,0 +170760291608,221,0 +170760291658,221,0 +170760291707,221,0 +170760291755,221,0 +170760291803,220,0 +170760291851,215,0 +170760291900,216,0 +170760291948,217,0 +170760291996,217,0 +170760292044,218,0 +170760292092,219,0 +170760292140,219,0 +170760292189,220,0 +170760292237,220,0 +170760292287,220,0 +170760292336,221,0 +170760292386,221,0 +170760292434,221,0 +170760292481,222,0 +170760292529,222,0 +170760292577,222,0 +170760292625,222,0 +170760292673,221,0 +170760292722,216,0 +170760292770,216,0 +170760292818,217,0 +170760292868,217,0 +170760292917,218,0 +170760292967,219,0 +170760293015,219,0 +170760293062,219,0 +170760293112,220,0 +170760293160,220,0 +170760293208,220,0 +170760293256,220,0 +170760293304,220,0 +170760293353,221,0 +170760293401,220,0 +170760293449,221,0 +170760293497,222,0 +170760293545,221,0 +170760293594,221,0 +170760293642,216,0 +170760293690,216,0 +170760293738,216,0 +170760293786,217,0 +170760293834,217,0 +170760293883,217,0 +170760293931,218,0 +170760293979,218,0 +170760294027,218,0 +170760294077,219,0 +170760294124,220,0 +170760294172,221,0 +170760294222,221,0 +170760294271,220,0 +170760294319,221,0 +170760294367,222,0 +170760294415,221,0 +170760294463,221,0 +170760294511,220,0 +170760294559,215,0 +170760294609,216,0 +170760294657,216,0 +170760294706,217,0 +170760294754,217,0 +170760294804,218,0 +170760294852,216,0 +170760294901,218,0 +170760294949,219,0 +170760294997,220,0 +170760295047,220,0 +170760295095,222,0 +170760295144,221,0 +170760295192,221,0 +170760295240,221,0 +170760295288,223,0 +170760295338,223,0 +170760295385,221,0 +170760295433,216,0 +170760295481,216,0 +170760295529,216,0 +170760295577,216,0 +170760295625,216,0 +170760295673,217,0 +170760295721,218,0 +170760295769,219,0 +170760295817,218,0 +170760295865,219,0 +170760295912,220,0 +170760295962,220,0 +170760296010,221,0 +170760296057,221,0 +170760296105,221,0 +170760296153,221,0 +170760296201,221,0 +170760296249,221,0 +170760296297,221,0 +170760296345,216,0 +170760296393,215,0 +170760296440,215,0 +170760296488,216,0 +170760296536,217,0 +170760296584,217,0 +170760296632,217,0 +170760296680,218,0 +170760296728,218,0 +170760296775,219,0 +170760296823,219,0 +170760296871,220,0 +170760296920,220,0 +170760296968,220,0 +170760297016,221,0 +170760297064,220,0 +170760297112,222,0 +170760297160,222,0 +170760297208,221,0 +170760297255,216,0 +170760297303,215,0 +170760297351,216,0 +170760297399,217,0 +170760297447,217,0 +170760297495,217,0 +170760297543,220,0 +170760297591,218,0 +170760297639,219,0 +170760297687,219,0 +170760297735,220,0 +170760297783,220,0 +170760297830,221,0 +170760297878,221,0 +170760297926,221,0 +170760297976,221,0 +170760298024,221,0 +170760298073,220,0 +170760298121,220,0 +170760298169,215,0 +170760298218,215,0 +170760298266,216,0 +170760298314,217,0 +170760298363,217,0 +170760298411,218,0 +170760298459,218,0 +170760298507,218,0 +170760298555,219,0 +170760298603,219,0 +170760298651,221,0 +170760298698,221,0 +170760298746,222,0 +170760298796,222,0 +170760298843,222,0 +170760298891,222,0 +170760298939,221,0 +170760298987,221,0 +170760299035,220,0 +170760299084,215,0 +170760299132,215,0 +170760299180,216,0 +170760299230,216,0 +170760299278,217,0 +170760299326,217,0 +170760299374,218,0 +170760299423,219,0 +170760299473,219,0 +170760299521,219,0 +170760299568,220,0 +170760299616,221,0 +170760299664,221,0 +170760299712,221,0 +170760299760,221,0 +170760299808,222,0 +170760299856,221,0 +170760299904,221,0 +170760299952,218,0 +170760300000,215,0 +170760300047,215,0 +170760300095,216,0 +170760300143,216,0 +170760300191,218,0 +170760300239,217,0 +170760300288,218,0 +170760300336,218,0 +170760300386,218,0 +170760300434,218,0 +170760300483,220,0 +170760300533,220,0 +170760300581,220,0 +170760300629,221,0 +170760300678,221,0 +170760300726,221,0 +170760300774,221,0 +170760300824,222,0 +170760300872,216,0 +170760300921,216,0 +170760300969,216,0 +170760301017,217,0 +170760301066,217,0 +170760301114,217,0 +170760301162,218,0 +170760301210,218,0 +170760301260,219,0 +170760301308,219,0 +170760301355,219,0 +170760301405,220,0 +170760301453,220,0 +170760301501,221,0 +170760301550,221,0 +170760301598,221,0 +170760301646,222,0 +170760301694,222,0 +170760301742,221,0 +170760301790,216,0 +170760301838,215,0 +170760301887,216,0 +170760301935,219,0 +170760301983,217,0 +170760302032,218,0 +170760302080,218,0 +170760302128,218,0 +170760302176,218,0 +170760302224,219,0 +170760302272,220,0 +170760302320,221,0 +170760302368,221,0 +170760302416,221,0 +170760302463,221,0 +170760302511,221,0 +170760302559,221,0 +170760302607,221,0 +170760302657,220,0 +170760302705,215,0 +170760302752,215,0 +170760302800,216,0 +170760302848,216,0 +170760302896,217,0 +170760302944,217,0 +170760302992,218,0 +170760303040,218,0 +170760303088,218,0 +170760303135,219,0 +170760303183,220,0 +170760303231,221,0 +170760303279,221,0 +170760303329,221,0 +170760303376,222,0 +170760303424,222,0 +170760303472,222,0 +170760303520,222,0 +170760303568,220,0 +170760303616,215,0 +170760303664,215,0 +170760303711,216,0 +170760303759,217,0 +170760303807,218,0 +170760303857,218,0 +170760303905,219,0 +170760303953,219,0 +170760304002,220,0 +170760304050,220,0 +170760304098,220,0 +170760304146,222,0 +170760304194,221,0 +170760304243,222,0 +170760304291,223,0 +170760304339,222,0 +170760304387,222,0 +170760304435,220,0 +170760304483,218,0 +170760304531,215,0 +170760304580,215,0 +170760304630,215,0 +170760304678,216,0 +170760304726,217,0 +170760304774,217,0 +170760304822,218,0 +170760304870,219,0 +170760304918,219,0 +170760304967,220,0 +170760305017,221,0 +170760305065,221,0 +170760305112,223,0 +170760305162,222,0 +170760305210,222,0 +170760305258,222,0 +170760305306,222,0 +170760305354,221,0 +170760305402,216,0 +170760305450,214,0 +170760305499,214,0 +170760305547,215,0 +170760305595,215,0 +170760305643,215,0 +170760305691,215,0 +170760305739,215,0 +170760305787,216,0 +170760305834,216,0 +170760305884,217,0 +170760305932,219,0 +170760305980,218,0 +170760306028,220,0 +170760306075,220,0 +170760306123,220,0 +170760306171,220,0 +170760306219,220,0 +170760306267,220,0 +170760306314,215,0 +170760306362,214,0 +170760306410,214,0 +170760306458,214,0 +170760306506,215,0 +170760306554,215,0 +170760306601,215,0 +170760306649,215,0 +170760306697,216,0 +170760306745,216,0 +170760306794,217,0 +170760306844,218,0 +170760306892,218,0 +170760306940,220,0 +170760306987,220,0 +170760307037,220,0 +170760307085,220,0 +170760307134,222,0 +170760307182,221,0 +170760307230,215,0 +170760307280,214,0 +170760307329,215,0 +170760307379,215,0 +170760307428,215,0 +170760307478,215,0 +170760307527,216,0 +170760307575,217,0 +170760307625,217,0 +170760307673,218,0 +170760307720,219,0 +170760307770,219,0 +170760307818,220,0 +170760307867,219,0 +170760307915,220,0 +170760307965,220,0 +170760308013,220,0 +170760308062,221,0 +170760308112,216,0 +170760308160,215,0 +170760308207,215,0 +170760308255,215,0 +170760308303,216,0 +170760308353,216,0 +170760308401,216,0 +170760308449,216,0 +170760308497,217,0 +170760308546,217,0 +170760308594,218,0 +170760308644,218,0 +170760308693,218,0 +170760308741,219,0 +170760308789,220,0 +170760308837,219,0 +170760308886,219,0 +170760308934,221,0 +170760308982,220,0 +170760309030,215,0 +170760309078,215,0 +170760309127,216,0 +170760309175,216,0 +170760309223,217,0 +170760309271,217,0 +170760309320,218,0 +170760309368,218,0 +170760309416,219,0 +170760309464,220,0 +170760309512,220,0 +170760309560,220,0 +170760309607,221,0 +170760309655,221,0 +170760309703,221,0 +170760309753,221,0 +170760309800,221,0 +170760309848,221,0 +170760309898,217,0 +170760309947,216,0 +170760309995,217,0 +170760310043,217,0 +170760310093,217,0 +170760310142,218,0 +170760310190,219,0 +170760310238,219,0 +170760310286,219,0 +170760310334,221,0 +170760310382,220,0 +170760310430,220,0 +170760310478,223,0 +170760310527,221,0 +170760310575,221,0 +170760310625,221,0 +170760310673,222,0 +170760310720,221,0 +170760310768,221,0 +170760310818,217,0 +170760310866,216,0 +170760310915,216,0 +170760310963,217,0 +170760311011,218,0 +170760311059,218,0 +170760311107,218,0 +170760311156,219,0 +170760311204,220,0 +170760311252,220,0 +170760311300,220,0 +170760311348,220,0 +170760311396,221,0 +170760311444,221,0 +170760311493,221,0 +170760311543,221,0 +170760311591,221,0 +170760311639,221,0 +170760311688,221,0 +170760311736,215,0 +170760311784,215,0 +170760311834,216,0 +170760311882,216,0 +170760311929,217,0 +170760311979,217,0 +170760312027,218,0 +170760312075,218,0 +170760312124,218,0 +170760312172,219,0 +170760312220,220,0 +170760312268,219,0 +170760312316,220,0 +170760312364,220,0 +170760312412,222,0 +170760312460,221,0 +170760312509,221,0 +170760312557,221,0 +170760312607,216,0 +170760312656,215,0 +170760312704,216,0 +170760312754,217,0 +170760312801,217,0 +170760312851,217,0 +170760312900,218,0 +170760312948,217,0 +170760312998,218,0 +170760313047,218,0 +170760313095,219,0 +170760313143,219,0 +170760313193,220,0 +170760313242,221,0 +170760313292,221,0 +170760313340,221,0 +170760313389,221,0 +170760313437,222,0 +170760313485,221,0 +170760313534,217,0 +170760313582,217,0 +170760313632,218,0 +170760313681,218,0 +170760313729,218,0 +170760313777,219,0 +170760313825,219,0 +170760313875,219,0 +170760313923,219,0 +170760313970,221,0 +170760314018,221,0 +170760314068,222,0 +170760314118,222,0 +170760314165,223,0 +170760314215,222,0 +170760314263,223,0 +170760314311,222,0 +170760314359,221,0 +170760314408,221,0 +170760314456,218,0 +170760314505,218,0 +170760314553,221,0 +170760314603,219,0 +170760314651,219,0 +170760314699,220,0 +170760314748,220,0 +170760314796,221,0 +170760314844,221,0 +170760314894,221,0 +170760314942,222,0 +170760314991,223,0 +170760315039,222,0 +170760315089,222,0 +170760315137,222,0 +170760315186,222,0 +170760315234,222,0 +170760315282,221,0 +170760315331,218,0 +170760315381,218,0 +170760315429,219,0 +170760315477,219,0 +170760315525,219,0 +170760315574,220,0 +170760315624,220,0 +170760315673,221,0 +170760315721,221,0 +170760315771,222,0 +170760315819,222,0 +170760315867,221,0 +170760315916,222,0 +170760315964,222,0 +170760316014,222,0 +170760316061,222,0 +170760316109,222,0 +170760316157,221,0 +170760316207,219,0 +170760316254,216,0 +170760316302,217,0 +170760316350,218,0 +170760316398,218,0 +170760316448,219,0 +170760316496,220,0 +170760316545,221,0 +170760316595,220,0 +170760316643,221,0 +170760316690,222,0 +170760316740,222,0 +170760316788,223,0 +170760316836,222,0 +170760316884,222,0 +170760316933,222,0 +170760316981,221,0 +170760317031,223,0 +170760317079,222,0 +170760317128,216,0 +170760317176,216,0 +170760317225,217,0 +170760317273,217,0 +170760317321,218,0 +170760317371,218,0 +170760317419,218,0 +170760317467,219,0 +170760317515,220,0 +170760317562,221,0 +170760317610,220,0 +170760317658,221,0 +170760317706,222,0 +170760317754,222,0 +170760317802,221,0 +170760317850,222,0 +170760317898,222,0 +170760317945,229,0 +170760317993,222,0 +170760318043,216,0 +170760318092,217,0 +170760318140,217,0 +170760318188,217,0 +170760318237,218,0 +170760318285,219,0 +170760318333,219,0 +170760318381,219,0 +170760318429,220,0 +170760318479,221,0 +170760318527,221,0 +170760318576,222,0 +170760318626,222,0 +170760318674,222,0 +170760318722,223,0 +170760318771,222,0 +170760318821,222,0 +170760318870,220,0 +170760318918,216,0 +170760318966,216,0 +170760319014,216,0 +170760319063,217,0 +170760319113,218,0 +170760319161,219,0 +170760319209,219,0 +170760319258,219,0 +170760319306,219,0 +170760319354,225,0 +170760319402,221,0 +170760319450,223,0 +170760319498,222,0 +170760319546,222,0 +170760319593,222,0 +170760319641,222,0 +170760319689,222,0 +170760319739,222,0 +170760319787,216,0 +170760319835,215,0 +170760319883,216,0 +170760319931,216,0 +170760319978,217,0 +170760320026,218,0 +170760320074,218,0 +170760320124,220,0 +170760320172,220,0 +170760320220,221,0 +170760320267,221,0 +170760320315,222,0 +170760320365,222,0 +170760320412,223,0 +170760320460,222,0 +170760320510,222,0 +170760320557,222,0 +170760320607,222,0 +170760320655,219,0 +170760320702,215,0 +170760320750,215,0 +170760320798,215,0 +170760320846,216,0 +170760320894,217,0 +170760320942,217,0 +170760320990,217,0 +170760321037,218,0 +170760321085,219,0 +170760321133,220,0 +170760321181,220,0 +170760321229,220,0 +170760321277,221,0 +170760321325,221,0 +170760321372,221,0 +170760321420,222,0 +170760321468,221,0 +170760321516,221,0 +170760321564,215,0 +170760321612,214,0 +170760321660,214,0 +170760321708,214,0 +170760321755,214,0 +170760321803,214,0 +170760321853,214,0 +170760321900,214,0 +170760321948,215,0 +170760321996,215,0 +170760322044,217,0 +170760322092,218,0 +170760322140,218,0 +170760322188,218,0 +170760322235,218,0 +170760322285,219,0 +170760322334,219,0 +170760322384,222,0 +170760322432,216,0 +170760322480,215,0 +170760322528,214,0 +170760322577,215,0 +170760322625,215,0 +170760322673,215,0 +170760322721,217,0 +170760322769,217,0 +170760322817,218,0 +170760322864,218,0 +170760322912,219,0 +170760322960,219,0 +170760323008,220,0 +170760323056,221,0 +170760323104,221,0 +170760323151,222,0 +170760323199,221,0 +170760323247,221,0 +170760323295,221,0 +170760323343,215,0 +170760323391,215,0 +170760323439,215,0 +170760323487,215,0 +170760323536,216,0 +170760323586,217,0 +170760323635,217,0 +170760323683,217,0 +170760323733,218,0 +170760323780,220,0 +170760323828,220,0 +170760323876,221,0 +170760323926,222,0 +170760323974,223,0 +170760324022,223,0 +170760324070,222,0 +170760324119,221,0 +170760324167,221,0 +170760324217,215,0 +170760324265,214,0 +170760324313,215,0 +170760324360,215,0 +170760324410,216,0 +170760324458,217,0 +170760324506,217,0 +170760324554,217,0 +170760324602,218,0 +170760324650,218,0 +170760324699,219,0 +170760324747,221,0 +170760324797,220,0 +170760324846,222,0 +170760324896,222,0 +170760324944,221,0 +170760324992,222,0 +170760325040,221,0 +170760325088,216,0 +170760325137,214,0 +170760325186,215,0 +170760325234,215,0 +170760325282,216,0 +170760325332,217,0 +170760325381,216,0 +170760325429,216,0 +170760325477,217,0 +170760325525,218,0 +170760325575,219,0 +170760325623,220,0 +170760325670,220,0 +170760325718,221,0 +170760325766,220,0 +170760325814,221,0 +170760325862,222,0 +170760325910,221,0 +170760325959,220,0 +170760326007,215,0 +170760326055,215,0 +170760326103,215,0 +170760326151,215,0 +170760326198,216,0 +170760326248,216,0 +170760326296,216,0 +170760326344,217,0 +170760326391,218,0 +170760326439,218,0 +170760326487,219,0 +170760326537,220,0 +170760326584,220,0 +170760326632,220,0 +170760326680,221,0 +170760326730,221,0 +170760326777,221,0 +170760326827,221,0 +170760326875,216,0 +170760326923,216,0 +170760326970,216,0 +170760327018,217,0 +170760327066,217,0 +170760327114,218,0 +170760327162,218,0 +170760327211,219,0 +170760327259,219,0 +170760327307,220,0 +170760327355,221,0 +170760327403,221,0 +170760327451,222,0 +170760327500,222,0 +170760327548,222,0 +170760327596,222,0 +170760327643,222,0 +170760327693,221,0 +170760327741,216,0 +170760327789,218,0 +170760327837,218,0 +170760327886,218,0 +170760327935,219,0 +170760327983,220,0 +170760328031,220,0 +170760328079,220,0 +170760328127,221,0 +170760328175,221,0 +170760328222,221,0 +170760328270,222,0 +170760328318,221,0 +170760328366,222,0 +170760328414,222,0 +170760328462,222,0 +170760328510,222,0 +170760328557,221,0 +170760328605,221,0 +170760328653,217,0 +170760328701,217,0 +170760328751,218,0 +170760328799,219,0 +170760328848,219,0 +170760328898,220,0 +170760328947,220,0 +170760328996,220,0 +170760329044,222,0 +170760329092,221,0 +170760329140,221,0 +170760329188,222,0 +170760329237,222,0 +170760329287,221,0 +170760329336,224,0 +170760329384,222,0 +170760329434,221,0 +170760329481,220,0 +170760329529,216,0 +170760329577,215,0 +170760329627,217,0 +170760329675,217,0 +170760329724,218,0 +170760329772,218,0 +170760329820,218,0 +170760329868,219,0 +170760329916,219,0 +170760329963,221,0 +170760330011,221,0 +170760330059,221,0 +170760330107,221,0 +170760330155,221,0 +170760330203,223,0 +170760330250,221,0 +170760330298,222,0 +170760330346,223,0 +170760330394,216,0 +170760330442,215,0 +170760330489,216,0 +170760330537,217,0 +170760330585,217,0 +170760330633,218,0 +170760330681,218,0 +170760330729,219,0 +170760330776,219,0 +170760330824,220,0 +170760330872,220,0 +170760330920,221,0 +170760330968,220,0 +170760331016,222,0 +170760331064,222,0 +170760331113,222,0 +170760331161,222,0 +170760331211,222,0 +170760331259,221,0 +170760331308,215,0 +170760331358,215,0 +170760331405,216,0 +170760331455,217,0 +170760331504,217,0 +170760331552,218,0 +170760331602,218,0 +170760331650,218,0 +170760331697,219,0 +170760331745,220,0 +170760331793,220,0 +170760331841,221,0 +170760331890,221,0 +170760331938,222,0 +170760331986,223,0 +170760332036,222,0 +170760332084,222,0 +170760332133,221,0 +170760332181,215,0 +170760332229,215,0 +170760332277,215,0 +170760332326,215,0 +170760332376,216,0 +170760332424,217,0 +170760332472,217,0 +170760332520,217,0 +170760332569,218,0 +170760332617,219,0 +170760332667,220,0 +170760332714,220,0 +170760332764,221,0 +170760332812,221,0 +170760332860,221,0 +170760332909,222,0 +170760332957,221,0 +170760333005,221,0 +170760333053,216,0 +170760333101,214,0 +170760333149,214,0 +170760333197,215,0 +170760333245,216,0 +170760333293,216,0 +170760333340,217,0 +170760333390,218,0 +170760333438,218,0 +170760333486,218,0 +170760333534,219,0 +170760333582,220,0 +170760333631,220,0 +170760333681,220,0 +170760333729,221,0 +170760333777,223,0 +170760333825,222,0 +170760333872,222,0 +170760333922,221,0 +170760333970,216,0 +170760334018,218,0 +170760334066,218,0 +170760334114,218,0 +170760334162,219,0 +170760334210,220,0 +170760334258,222,0 +170760334305,221,0 +170760334355,222,0 +170760334403,222,0 +170760334452,222,0 +170760334500,222,0 +170760334548,223,0 +170760334598,223,0 +170760334645,223,0 +170760334693,223,0 +170760334743,222,0 +170760334791,222,0 +170760334839,216,0 +170760334887,216,0 +170760334935,216,0 +170760334984,216,0 +170760335032,217,0 +170760335080,217,0 +170760335128,218,0 +170760335176,219,0 +170760335225,219,0 +170760335275,219,0 +170760335323,220,0 +170760335372,222,0 +170760335422,222,0 +170760335470,221,0 +170760335519,222,0 +170760335569,222,0 +170760335617,222,0 +170760335664,223,0 +170760335712,216,0 +170760335762,216,0 +170760335811,217,0 +170760335861,217,0 +170760335910,218,0 +170760335960,218,0 +170760336008,218,0 +170760336056,219,0 +170760336105,220,0 +170760336153,220,0 +170760336203,220,0 +170760336252,221,0 +170760336300,221,0 +170760336348,223,0 +170760336396,222,0 +170760336444,222,0 +170760336492,222,0 +170760336540,222,0 +170760336588,216,0 +170760336636,215,0 +170760336684,216,0 +170760336733,217,0 +170760336781,217,0 +170760336829,217,0 +170760336877,218,0 +170760336925,219,0 +170760336974,219,0 +170760337022,222,0 +170760337070,220,0 +170760337119,221,0 +170760337167,221,0 +170760337217,222,0 +170760337266,222,0 +170760337314,222,0 +170760337364,221,0 +170760337413,221,0 +170760337461,216,0 +170760337511,214,0 +170760337559,215,0 +170760337608,216,0 +170760337656,217,0 +170760337704,218,0 +170760337752,218,0 +170760337800,218,0 +170760337850,218,0 +170760337899,220,0 +170760337949,220,0 +170760337996,221,0 +170760338044,221,0 +170760338094,222,0 +170760338142,222,0 +170760338190,222,0 +170760338238,222,0 +170760338286,222,0 +170760338333,221,0 +170760338383,215,0 +170760338432,215,0 +170760338480,216,0 +170760338530,217,0 +170760338578,217,0 +170760338627,217,0 +170760338675,218,0 +170760338725,218,0 +170760338774,219,0 +170760338824,220,0 +170760338872,221,0 +170760338921,222,0 +170760338971,221,0 +170760339018,221,0 +170760339066,221,0 +170760339114,221,0 +170760339162,221,0 +170760339210,221,0 +170760339258,216,0 +170760339306,215,0 +170760339355,216,0 +170760339403,217,0 +170760339451,217,0 +170760339499,218,0 +170760339547,218,0 +170760339596,219,0 +170760339644,220,0 +170760339692,220,0 +170760339740,221,0 +170760339788,221,0 +170760339836,223,0 +170760339884,222,0 +170760339932,222,0 +170760339981,221,0 +170760340030,222,0 +170760340078,221,0 +170760340128,216,0 +170760340177,216,0 +170760340225,217,0 +170760340273,217,0 +170760340321,216,0 +170760340369,217,0 +170760340417,218,0 +170760340465,219,0 +170760340514,219,0 +170760340562,219,0 +170760340612,221,0 +170760340661,220,0 +170760340709,222,0 +170760340759,221,0 +170760340808,221,0 +170760340856,222,0 +170760340904,221,0 +170760340954,221,0 +170760341003,216,0 +170760341051,215,0 +170760341099,216,0 +170760341148,217,0 +170760341198,218,0 +170760341247,218,0 +170760341295,218,0 +170760341343,219,0 +170760341393,219,0 +170760341442,219,0 +170760341492,220,0 +170760341540,222,0 +170760341588,222,0 +170760341636,221,0 +170760341685,221,0 +170760341733,222,0 +170760341781,221,0 +170760341831,221,0 +170760341879,217,0 +170760341928,216,0 +170760341976,216,0 +170760342024,216,0 +170760342074,217,0 +170760342121,218,0 +170760342169,219,0 +170760342219,219,0 +170760342267,219,0 +170760342315,220,0 +170760342362,220,0 +170760342412,221,0 +170760342461,222,0 +170760342509,221,0 +170760342557,222,0 +170760342605,222,0 +170760342655,221,0 +170760342703,219,0 +170760342751,221,0 +170760342799,215,0 +170760342846,215,0 +170760342896,216,0 +170760342944,217,0 +170760342992,218,0 +170760343040,218,0 +170760343089,219,0 +170760343137,219,0 +170760343185,220,0 +170760343233,220,0 +170760343281,220,0 +170760343329,220,0 +170760343378,222,0 +170760343426,222,0 +170760343474,221,0 +170760343522,222,0 +170760343570,221,0 +170760343618,220,0 +170760343667,216,0 +170760343715,216,0 +170760343763,216,0 +170760343811,217,0 +170760343859,217,0 +170760343907,218,0 +170760343956,219,0 +170760344004,219,0 +170760344052,220,0 +170760344100,220,0 +170760344148,221,0 +170760344196,222,0 +170760344244,222,0 +170760344293,221,0 +170760344341,222,0 +170760344391,222,0 +170760344440,222,0 +170760344490,221,0 +170760344539,217,0 +170760344587,217,0 +170760344635,217,0 +170760344685,218,0 +170760344734,219,0 +170760344784,219,0 +170760344831,220,0 +170760344881,220,0 +170760344929,220,0 +170760344977,221,0 +170760345025,221,0 +170760345073,221,0 +170760345122,222,0 +170760345170,222,0 +170760345220,222,0 +170760345267,222,0 +170760345315,221,0 +170760345363,221,0 +170760345411,218,0 +170760345461,217,0 +170760345508,217,0 +170760345558,217,0 +170760345606,219,0 +170760345655,218,0 +170760345705,220,0 +170760345754,219,0 +170760345804,222,0 +170760345852,220,0 +170760345900,222,0 +170760345948,222,0 +170760345997,222,0 +170760346045,221,0 +170760346093,223,0 +170760346141,220,0 +170760346189,221,0 +170760346237,221,0 +170760346286,220,0 +170760346334,215,0 +170760346382,216,0 +170760346430,216,0 +170760346478,217,0 +170760346527,217,0 +170760346575,218,0 +170760346623,218,0 +170760346673,218,0 +170760346720,219,0 +170760346768,219,0 +170760346816,220,0 +170760346866,220,0 +170760346914,220,0 +170760346963,221,0 +170760347013,221,0 +170760347062,220,0 +170760347112,221,0 +170760347161,220,0 +170760347209,215,0 +170760347257,215,0 +170760347305,216,0 +170760347355,217,0 +170760347404,217,0 +170760347452,218,0 +170760347500,217,0 +170760347548,218,0 +170760347596,219,0 +170760347644,220,0 +170760347692,218,0 +170760347741,219,0 +170760347789,221,0 +170760347837,222,0 +170760347885,221,0 +170760347933,221,0 +170760347981,222,0 +170760348030,221,0 +170760348078,216,0 +170760348128,216,0 +170760348175,216,0 +170760348225,217,0 +170760348274,218,0 +170760348322,218,0 +170760348370,219,0 +170760348418,219,0 +170760348466,220,0 +170760348514,221,0 +170760348561,221,0 +170760348609,221,0 +170760348657,222,0 +170760348707,221,0 +170760348755,221,0 +170760348803,222,0 +170760348850,222,0 +170760348898,221,0 +170760348948,216,0 +170760348996,215,0 +170760349043,217,0 +170760349093,217,0 +170760349142,217,0 +170760349190,218,0 +170760349240,219,0 +170760349288,219,0 +170760349337,220,0 +170760349387,220,0 +170760349435,220,0 +170760349482,221,0 +170760349532,221,0 +170760349580,222,0 +170760349628,221,0 +170760349677,221,0 +170760349725,222,0 +170760349773,221,0 +170760349821,217,0 +170760349870,216,0 +170760349918,216,0 +170760349968,216,0 +170760350017,218,0 +170760350065,219,0 +170760350115,219,0 +170760350164,219,0 +170760350214,220,0 +170760350262,222,0 +170760350310,222,0 +170760350357,222,0 +170760350405,223,0 +170760350453,222,0 +170760350501,222,0 +170760350549,222,0 +170760350597,221,0 +170760350644,220,0 +170760350692,216,0 +170760350740,215,0 +170760350788,216,0 +170760350836,217,0 +170760350884,217,0 +170760350931,218,0 +170760350979,218,0 +170760351029,219,0 +170760351077,219,0 +170760351125,219,0 +170760351173,220,0 +170760351220,221,0 +170760351268,221,0 +170760351316,221,0 +170760351364,221,0 +170760351412,222,0 +170760351459,222,0 +170760351509,222,0 +170760351557,221,0 +170760351605,215,0 +170760351653,215,0 +170760351700,216,0 +170760351748,216,0 +170760351796,216,0 +170760351844,218,0 +170760351892,218,0 +170760351939,219,0 +170760351987,219,0 +170760352035,220,0 +170760352083,220,0 +170760352131,221,0 +170760352179,222,0 +170760352227,222,0 +170760352275,222,0 +170760352323,222,0 +170760352371,222,0 +170760352419,222,0 +170760352466,216,0 +170760352516,214,0 +170760352564,215,0 +170760352612,215,0 +170760352661,216,0 +170760352709,217,0 +170760352759,218,0 +170760352808,217,0 +170760352856,218,0 +170760352904,218,0 +170760352954,220,0 +170760353002,219,0 +170760353049,220,0 +170760353097,221,0 +170760353145,221,0 +170760353193,222,0 +170760353241,221,0 +170760353289,222,0 +170760353337,216,0 +170760353385,214,0 +170760353433,215,0 +170760353482,216,0 +170760353530,216,0 +170760353578,216,0 +170760353628,217,0 +170760353677,217,0 +170760353725,219,0 +170760353775,218,0 +170760353823,219,0 +170760353870,219,0 +170760353918,220,0 +170760353966,220,0 +170760354016,222,0 +170760354064,219,0 +170760354113,221,0 +170760354161,221,0 +170760354209,220,0 +170760354256,215,0 +170760354306,216,0 +170760354355,216,0 +170760354403,217,0 +170760354451,218,0 +170760354498,218,0 +170760354546,219,0 +170760354594,219,0 +170760354642,220,0 +170760354690,221,0 +170760354738,220,0 +170760354785,221,0 +170760354833,222,0 +170760354881,222,0 +170760354929,222,0 +170760354977,222,0 +170760355026,222,0 +170760355074,222,0 +170760355124,215,0 +170760355172,215,0 +170760355221,216,0 +170760355270,217,0 +170760355320,217,0 +170760355369,218,0 +170760355417,218,0 +170760355465,220,0 +170760355515,220,0 +170760355563,220,0 +170760355611,221,0 +170760355660,221,0 +170760355710,221,0 +170760355759,221,0 +170760355807,223,0 +170760355855,221,0 +170760355903,231,0 +170760355951,222,0 +170760355999,217,0 +170760356048,216,0 +170760356096,217,0 +170760356144,217,0 +170760356194,219,0 +170760356241,219,0 +170760356289,219,0 +170760356337,219,0 +170760356385,220,0 +170760356433,221,0 +170760356481,221,0 +170760356529,221,0 +170760356576,223,0 +170760356624,222,0 +170760356672,223,0 +170760356720,223,0 +170760356768,222,0 +170760356815,223,0 +170760356863,216,0 +170760356911,217,0 +170760356961,217,0 +170760357009,218,0 +170760357058,218,0 +170760357108,219,0 +170760357156,219,0 +170760357205,220,0 +170760357253,220,0 +170760357301,220,0 +170760357349,221,0 +170760357397,222,0 +170760357445,221,0 +170760357493,222,0 +170760357541,222,0 +170760357588,222,0 +170760357638,222,0 +170760357686,221,0 +170760357734,221,0 +170760357782,215,0 +170760357829,216,0 +170760357879,216,0 +170760357928,217,0 +170760357976,217,0 +170760358024,219,0 +170760358072,219,0 +170760358119,218,0 +170760358167,220,0 +170760358215,220,0 +170760358263,221,0 +170760358311,223,0 +170760358359,222,0 +170760358407,221,0 +170760358454,223,0 +170760358502,222,0 +170760358552,222,0 +170760358601,221,0 +170760358649,217,0 +170760358697,216,0 +170760358745,217,0 +170760358793,217,0 +170760358842,217,0 +170760358890,218,0 +170760358938,218,0 +170760358986,218,0 +170760359033,220,0 +170760359083,220,0 +170760359131,220,0 +170760359179,221,0 +170760359226,220,0 +170760359274,221,0 +170760359322,222,0 +170760359370,220,0 +170760359419,222,0 +170760359467,222,0 +170760359515,216,0 +170760359563,216,0 +170760359611,216,0 +170760359659,217,0 +170760359706,217,0 +170760359754,217,0 +170760359802,218,0 +170760359850,219,0 +170760359898,219,0 +170760359945,219,0 +170760359993,220,0 +170760360041,220,0 +170760360089,222,0 +170760360137,222,0 +170760360185,222,0 +170760360232,221,0 +170760360280,221,0 +170760360328,220,0 +170760360376,220,0 +170760360424,217,0 +170760360472,217,0 +170760360520,218,0 +170760360568,218,0 +170760360616,220,0 +170760360665,219,0 +170760360715,220,0 +170760360763,220,0 +170760360811,221,0 +170760360860,221,0 +170760360910,222,0 +170760360958,222,0 +170760361007,221,0 +170760361055,221,0 +170760361104,222,0 +170760361152,221,0 +170760361200,222,0 +170760361248,220,0 +170760361296,217,0 +170760361344,218,0 +170760361393,218,0 +170760361443,219,0 +170760361491,219,0 +170760361539,220,0 +170760361588,220,0 +170760361636,220,0 +170760361686,221,0 +170760361733,221,0 +170760361781,221,0 +170760361829,221,0 +170760361877,221,0 +170760361926,222,0 +170760361974,222,0 +170760362022,222,0 +170760362070,222,0 +170760362118,222,0 +170760362168,216,0 +170760362216,216,0 +170760362264,217,0 +170760362313,218,0 +170760362361,218,0 +170760362409,219,0 +170760362457,219,0 +170760362506,219,0 +170760362556,220,0 +170760362604,222,0 +170760362652,222,0 +170760362701,221,0 +170760362749,221,0 +170760362797,222,0 +170760362846,221,0 +170760362894,222,0 +170760362942,222,0 +170760362990,221,0 +170760363037,216,0 +170760363085,216,0 +170760363133,216,0 +170760363181,217,0 +170760363229,218,0 +170760363276,218,0 +170760363324,218,0 +170760363372,219,0 +170760363420,218,0 +170760363468,219,0 +170760363515,219,0 +170760363563,221,0 +170760363613,222,0 +170760363660,221,0 +170760363708,222,0 +170760363756,223,0 +170760363805,222,0 +170760363853,221,0 +170760363901,220,0 +170760363949,215,0 +170760363997,215,0 +170760364045,216,0 +170760364092,217,0 +170760364140,217,0 +170760364188,217,0 +170760364236,218,0 +170760364284,218,0 +170760364332,219,0 +170760364380,219,0 +170760364428,219,0 +170760364476,221,0 +170760364523,220,0 +170760364571,221,0 +170760364619,222,0 +170760364667,221,0 +170760364715,222,0 +170760364763,221,0 +170760364811,216,0 +170760364859,215,0 +170760364908,216,0 +170760364958,216,0 +170760365006,217,0 +170760365054,217,0 +170760365101,217,0 +170760365149,218,0 +170760365197,219,0 +170760365247,219,0 +170760365296,220,0 +170760365344,221,0 +170760365392,222,0 +170760365441,222,0 +170760365489,222,0 +170760365537,221,0 +170760365585,222,0 +170760365635,221,0 +170760365684,216,0 +170760365732,216,0 +170760365780,216,0 +170760365828,217,0 +170760365876,218,0 +170760365924,219,0 +170760365972,219,0 +170760366020,219,0 +170760366069,220,0 +170760366119,221,0 +170760366166,221,0 +170760366214,221,0 +170760366262,223,0 +170760366310,223,0 +170760366358,222,0 +170760366405,223,0 +170760366453,222,0 +170760366501,223,0 +170760366549,220,0 +170760366597,215,0 +170760366645,216,0 +170760366694,216,0 +170760366742,217,0 +170760366792,218,0 +170760366839,218,0 +170760366887,219,0 +170760366935,219,0 +170760366983,219,0 +170760367031,221,0 +170760367079,220,0 +170760367126,222,0 +170760367174,221,0 +170760367222,223,0 +170760367270,223,0 +170760367318,225,0 +170760367365,222,0 +170760367413,222,0 +170760367461,216,0 +170760367509,215,0 +170760367557,216,0 +170760367605,217,0 +170760367652,217,0 +170760367700,218,0 +170760367748,218,0 +170760367798,218,0 +170760367847,220,0 +170760367895,221,0 +170760367943,221,0 +170760367992,221,0 +170760368040,222,0 +170760368088,222,0 +170760368136,222,0 +170760368184,222,0 +170760368232,221,0 +170760368280,222,0 +170760368328,215,0 +170760368376,215,0 +170760368423,216,0 +170760368471,217,0 +170760368519,217,0 +170760368567,217,0 +170760368617,218,0 +170760368665,218,0 +170760368714,219,0 +170760368762,220,0 +170760368810,220,0 +170760368859,222,0 +170760368907,221,0 +170760368955,222,0 +170760369003,223,0 +170760369053,222,0 +170760369102,223,0 +170760369150,222,0 +170760369198,221,0 +170760369246,215,0 +170760369294,216,0 +170760369342,216,0 +170760369390,217,0 +170760369438,217,0 +170760369486,218,0 +170760369535,218,0 +170760369583,219,0 +170760369631,220,0 +170760369679,220,0 +170760369727,221,0 +170760369776,222,0 +170760369826,222,0 +170760369875,221,0 +170760369923,223,0 +170760369971,222,0 +170760370019,222,0 +170760370069,221,0 +170760370118,217,0 +170760370166,217,0 +170760370214,218,0 +170760370263,219,0 +170760370311,219,0 +170760370359,219,0 +170760370407,219,0 +170760370455,221,0 +170760370503,221,0 +170760370551,221,0 +170760370600,223,0 +170760370650,222,0 +170760370699,222,0 +170760370747,223,0 +170760370795,223,0 +170760370845,223,0 +170760370894,223,0 +170760370944,221,0 +170760370992,218,0 +170760371040,217,0 +170760371089,218,0 +170760371139,218,0 +170760371188,219,0 +170760371236,220,0 +170760371284,220,0 +170760371332,220,0 +170760371380,221,0 +170760371427,221,0 +170760371475,222,0 +170760371523,222,0 +170760371571,222,0 +170760371621,222,0 +170760371669,223,0 +170760371718,222,0 +170760371768,223,0 +170760371816,222,0 +170760371865,217,0 +170760371913,216,0 +170760371962,217,0 +170760372012,217,0 +170760372060,218,0 +170760372108,220,0 +170760372156,219,0 +170760372204,220,0 +170760372252,220,0 +170760372301,220,0 +170760372351,221,0 +170760372398,221,0 +170760372448,221,0 +170760372496,221,0 +170760372545,221,0 +170760372593,222,0 +170760372641,221,0 +170760372689,221,0 +170760372737,216,0 +170760372786,215,0 +170760372834,215,0 +170760372882,216,0 +170760372930,217,0 +170760372979,218,0 +170760373027,219,0 +170760373075,217,0 +170760373123,218,0 +170760373171,218,0 +170760373218,220,0 +170760373268,221,0 +170760373316,221,0 +170760373363,220,0 +170760373411,223,0 +170760373459,221,0 +170760373507,222,0 +170760373555,222,0 +170760373602,221,0 +170760373650,214,0 +170760373698,215,0 +170760373746,215,0 +170760373794,216,0 +170760373842,217,0 +170760373891,217,0 +170760373941,218,0 +170760373990,218,0 +170760374040,218,0 +170760374089,219,0 +170760374139,220,0 +170760374187,221,0 +170760374236,221,0 +170760374284,221,0 +170760374332,222,0 +170760374380,221,0 +170760374429,222,0 +170760374479,221,0 +170760374528,215,0 +170760374576,215,0 +170760374624,216,0 +170760374672,216,0 +170760374720,217,0 +170760374769,218,0 +170760374817,217,0 +170760374867,218,0 +170760374916,219,0 +170760374964,219,0 +170760375014,220,0 +170760375061,221,0 +170760375111,221,0 +170760375159,222,0 +170760375208,222,0 +170760375256,221,0 +170760375304,222,0 +170760375354,221,0 +170760375402,215,0 +170760375449,215,0 +170760375497,215,0 +170760375545,216,0 +170760375593,214,0 +170760375641,216,0 +170760375689,216,0 +170760375738,216,0 +170760375787,218,0 +170760375835,218,0 +170760375885,219,0 +170760375933,218,0 +170760375982,220,0 +170760376030,220,0 +170760376079,220,0 +170760376127,219,0 +170760376175,219,0 +170760376225,221,0 +170760376274,216,0 +170760376322,215,0 +170760376372,215,0 +170760376419,216,0 +170760376467,217,0 +170760376517,217,0 +170760376566,217,0 +170760376614,218,0 +170760376662,219,0 +170760376710,220,0 +170760376759,219,0 +170760376807,220,0 +170760376855,220,0 +170760376903,221,0 +170760376951,221,0 +170760376999,222,0 +170760377047,221,0 +170760377095,221,0 +170760377145,217,0 +170760377193,215,0 +170760377240,215,0 +170760377290,216,0 +170760377338,217,0 +170760377386,218,0 +170760377434,218,0 +170760377482,219,0 +170760377530,219,0 +170760377578,220,0 +170760377627,220,0 +170760377677,221,0 +170760377725,222,0 +170760377773,222,0 +170760377822,220,0 +170760377870,222,0 +170760377918,222,0 +170760377968,221,0 +170760378016,220,0 +170760378065,214,0 +170760378113,215,0 +170760378161,215,0 +170760378209,216,0 +170760378258,217,0 +170760378308,217,0 +170760378356,218,0 +170760378404,219,0 +170760378452,219,0 +170760378500,221,0 +170760378549,220,0 +170760378599,220,0 +170760378647,221,0 +170760378696,220,0 +170760378746,220,0 +170760378794,222,0 +170760378843,221,0 +170760378891,218,0 +170760378939,216,0 +170760378987,216,0 +170760379035,217,0 +170760379083,217,0 +170760379131,217,0 +170760379179,218,0 +170760379227,218,0 +170760379275,219,0 +170760379322,221,0 +170760379370,221,0 +170760379420,222,0 +170760379469,224,0 +170760379519,221,0 +170760379569,222,0 +170760379616,222,0 +170760379664,222,0 +170760379714,222,0 +170760379762,221,0 +170760379810,216,0 +170760379858,216,0 +170760379907,217,0 +170760379957,218,0 +170760380006,218,0 +170760380054,218,0 +170760380104,218,0 +170760380153,219,0 +170760380203,219,0 +170760380251,220,0 +170760380299,220,0 +170760380347,221,0 +170760380395,221,0 +170760380442,221,0 +170760380490,222,0 +170760380538,221,0 +170760380588,222,0 +170760380636,221,0 +170760380684,217,0 +170760380731,217,0 +170760380779,217,0 +170760380827,218,0 +170760380875,218,0 +170760380925,218,0 +170760380974,219,0 +170760381022,220,0 +170760381070,220,0 +170760381120,221,0 +170760381168,221,0 +170760381217,222,0 +170760381265,222,0 +170760381313,223,0 +170760381363,222,0 +170760381411,223,0 +170760381460,222,0 +170760381510,221,0 +170760381559,219,0 +170760381609,218,0 +170760381658,219,0 +170760381706,219,0 +170760381754,219,0 +170760381803,220,0 +170760381853,220,0 +170760381901,222,0 +170760381949,222,0 +170760381998,222,0 +170760382046,221,0 +170760382094,223,0 +170760382142,222,0 +170760382191,223,0 +170760382241,222,0 +170760382290,223,0 +170760382340,222,0 +170760382388,221,0 +170760382436,219,0 +170760382484,218,0 +170760382531,219,0 +170760382581,219,0 +170760382629,220,0 +170760382677,221,0 +170760382725,221,0 +170760382773,221,0 +170760382822,222,0 +170760382870,222,0 +170760382918,222,0 +170760382966,222,0 +170760383014,222,0 +170760383062,222,0 +170760383110,223,0 +170760383158,223,0 +170760383207,223,0 +170760383257,221,0 +170760383306,217,0 +170760383354,217,0 +170760383404,218,0 +170760383452,219,0 +170760383501,218,0 +170760383549,220,0 +170760383599,221,0 +170760383648,220,0 +170760383696,221,0 +170760383744,221,0 +170760383792,222,0 +170760383841,222,0 +170760383891,222,0 +170760383939,222,0 +170760383987,225,0 +170760384035,223,0 +170760384084,223,0 +170760384132,221,0 +170760384180,217,0 +170760384228,217,0 +170760384276,217,0 +170760384324,217,0 +170760384372,218,0 +170760384421,219,0 +170760384470,220,0 +170760384517,220,0 +170760384565,221,0 +170760384615,221,0 +170760384663,222,0 +170760384711,222,0 +170760384759,223,0 +170760384807,222,0 +170760384854,223,0 +170760384902,223,0 +170760384950,222,0 +170760384998,222,0 +170760385048,217,0 +170760385096,215,0 +170760385145,216,0 +170760385193,217,0 +170760385243,217,0 +170760385292,218,0 +170760385341,219,0 +170760385388,219,0 +170760385436,221,0 +170760385486,221,0 +170760385535,221,0 +170760385583,221,0 +170760385631,222,0 +170760385681,223,0 +170760385729,222,0 +170760385777,222,0 +170760385826,222,0 +170760385874,222,0 +170760385922,220,0 +170760385971,216,0 +170760386019,216,0 +170760386067,217,0 +170760386115,218,0 +170760386163,218,0 +170760386213,218,0 +170760386260,220,0 +170760386308,220,0 +170760386356,221,0 +170760386404,222,0 +170760386452,222,0 +170760386502,222,0 +170760386549,223,0 +170760386597,222,0 +170760386645,222,0 +170760386695,222,0 +170760386744,222,0 +170760386792,222,0 +170760386840,216,0 +170760386890,217,0 +170760386938,218,0 +170760386987,218,0 +170760387035,219,0 +170760387083,219,0 +170760387131,220,0 +170760387180,221,0 +170760387228,221,0 +170760387278,222,0 +170760387326,222,0 +170760387374,220,0 +170760387423,222,0 +170760387471,222,0 +170760387519,222,0 +170760387567,223,0 +170760387615,222,0 +170760387664,223,0 +170760387712,216,0 +170760387760,216,0 +170760387808,217,0 +170760387856,217,0 +170760387904,219,0 +170760387952,219,0 +170760388000,220,0 +170760388047,220,0 +170760388095,221,0 +170760388143,221,0 +170760388191,223,0 +170760388239,222,0 +170760388287,223,0 +170760388334,222,0 +170760388382,223,0 +170760388430,222,0 +170760388478,222,0 +170760388526,221,0 +170760388574,216,0 +170760388624,215,0 +170760388671,215,0 +170760388719,215,0 +170760388767,216,0 +170760388817,217,0 +170760388865,217,0 +170760388914,217,0 +170760388962,219,0 +170760389012,221,0 +170760389060,221,0 +170760389108,220,0 +170760389155,222,0 +170760389203,222,0 +170760389251,222,0 +170760389301,222,0 +170760389349,222,0 +170760389397,222,0 +170760389446,216,0 +170760389494,214,0 +170760389542,214,0 +170760389592,214,0 +170760389640,214,0 +170760389688,214,0 +170760389736,215,0 +170760389784,215,0 +170760389833,216,0 +170760389881,217,0 +170760389929,219,0 +170760389977,218,0 +170760390025,219,0 +170760390073,219,0 +170760390121,219,0 +170760390169,220,0 +170760390216,221,0 +170760390264,221,0 +170760390312,216,0 +170760390360,214,0 +170760390408,214,0 +170760390456,215,0 +170760390506,215,0 +170760390553,215,0 +170760390601,216,0 +170760390649,217,0 +170760390699,217,0 +170760390748,218,0 +170760390796,219,0 +170760390846,219,0 +170760390894,220,0 +170760390942,220,0 +170760390991,221,0 +170760391039,221,0 +170760391088,220,0 +170760391136,221,0 +170760391184,220,0 +170760391232,215,0 +170760391282,214,0 +170760391330,214,0 +170760391379,215,0 +170760391427,216,0 +170760391477,216,0 +170760391525,216,0 +170760391572,217,0 +170760391620,217,0 +170760391668,218,0 +170760391716,219,0 +170760391764,220,0 +170760391814,220,0 +170760391862,221,0 +170760391909,221,0 +170760391957,222,0 +170760392005,221,0 +170760392053,220,0 +170760392101,214,0 +170760392149,214,0 +170760392197,215,0 +170760392245,215,0 +170760392293,216,0 +170760392342,217,0 +170760392390,217,0 +170760392440,218,0 +170760392488,218,0 +170760392537,219,0 +170760392587,220,0 +170760392636,220,0 +170760392686,221,0 +170760392735,221,0 +170760392785,222,0 +170760392834,222,0 +170760392882,221,0 +170760392931,220,0 +170760392981,215,0 +170760393029,215,0 +170760393077,215,0 +170760393125,216,0 +170760393173,217,0 +170760393222,217,0 +170760393270,217,0 +170760393318,218,0 +170760393366,219,0 +170760393414,220,0 +170760393462,223,0 +170760393511,221,0 +170760393559,221,0 +170760393609,221,0 +170760393658,221,0 +170760393708,221,0 +170760393755,221,0 +170760393803,220,0 +170760393851,215,0 +170760393901,215,0 +170760393949,216,0 +170760393997,217,0 +170760394046,217,0 +170760394094,218,0 +170760394142,218,0 +170760394190,219,0 +170760394238,219,0 +170760394287,220,0 +170760394337,220,0 +170760394386,222,0 +170760394434,221,0 +170760394484,221,0 +170760394532,222,0 +170760394579,222,0 +170760394627,221,0 +170760394677,221,0 +170760394725,216,0 +170760394773,216,0 +170760394821,216,0 +170760394870,217,0 +170760394918,217,0 +170760394966,218,0 +170760395014,219,0 +170760395064,219,0 +170760395113,220,0 +170760395161,221,0 +170760395209,220,0 +170760395257,222,0 +170760395306,221,0 +170760395356,221,0 +170760395405,221,0 +170760395455,221,0 +170760395503,222,0 +170760395552,221,0 +170760395600,215,0 +170760395650,215,0 +170760395697,216,0 +170760395747,216,0 +170760395795,217,0 +170760395843,218,0 +170760395891,218,0 +170760395939,218,0 +170760395987,219,0 +170760396034,219,0 +170760396084,219,0 +170760396133,220,0 +170760396181,221,0 +170760396231,221,0 +170760396279,222,0 +170760396328,223,0 +170760396378,221,0 +170760396426,222,0 +170760396475,216,0 +170760396525,215,0 +170760396574,216,0 +170760396622,217,0 +170760396670,217,0 +170760396718,218,0 +170760396766,218,0 +170760396814,218,0 +170760396862,219,0 +170760396910,219,0 +170760396958,221,0 +170760397007,222,0 +170760397055,221,0 +170760397104,221,0 +170760397152,222,0 +170760397202,224,0 +170760397251,222,0 +170760397299,221,0 +170760397347,217,0 +170760397395,216,0 +170760397443,216,0 +170760397491,217,0 +170760397541,218,0 +170760397590,217,0 +170760397638,218,0 +170760397688,218,0 +170760397737,219,0 +170760397785,220,0 +170760397833,221,0 +170760397881,221,0 +170760397929,221,0 +170760397977,222,0 +170760398025,223,0 +170760398073,222,0 +170760398121,222,0 +170760398169,222,0 +170760398216,219,0 +170760398264,219,0 +170760398312,219,0 +170760398360,219,0 +170760398408,220,0 +170760398456,221,0 +170760398503,221,0 +170760398551,222,0 +170760398599,221,0 +170760398647,221,0 +170760398695,223,0 +170760398743,223,0 +170760398792,223,0 +170760398840,222,0 +170760398890,222,0 +170760398939,223,0 +170760398989,223,0 +170760399037,221,0 +170760399086,217,0 +170760399136,220,0 +170760399184,220,0 +170760399232,220,0 +170760399279,221,0 +170760399329,221,0 +170760399377,221,0 +170760399425,222,0 +170760399473,223,0 +170760399521,224,0 +170760399569,223,0 +170760399617,223,0 +170760399665,222,0 +170760399712,224,0 +170760399760,223,0 +170760399810,223,0 +170760399858,223,0 +170760399907,222,0 +170760399955,221,0 +170760400003,217,0 +170760400053,217,0 +170760400101,218,0 +170760400150,218,0 +170760400198,220,0 +170760400246,219,0 +170760400294,219,0 +170760400342,220,0 +170760400391,221,0 +170760400439,220,0 +170760400487,221,0 +170760400537,222,0 +170760400585,223,0 +170760400633,223,0 +170760400682,222,0 +170760400730,222,0 +170760400778,222,0 +170760400827,222,0 +170760400877,217,0 +170760400925,217,0 +170760400973,217,0 +170760401021,218,0 +170760401069,218,0 +170760401118,218,0 +170760401168,219,0 +170760401216,219,0 +170760401264,219,0 +170760401313,220,0 +170760401361,221,0 +170760401411,221,0 +170760401460,221,0 +170760401508,222,0 +170760401557,222,0 +170760401607,222,0 +170760401655,222,0 +170760401704,222,0 +170760401754,216,0 +170760401802,216,0 +170760401850,217,0 +170760401898,218,0 +170760401946,218,0 +170760401993,219,0 +170760402041,219,0 +170760402089,220,0 +170760402137,221,0 +170760402185,221,0 +170760402233,222,0 +170760402283,222,0 +170760402330,222,0 +170760402378,222,0 +170760402428,223,0 +170760402477,221,0 +170760402525,222,0 +170760402575,221,0 +170760402623,215,0 +170760402671,216,0 +170760402719,216,0 +170760402766,216,0 +170760402816,217,0 +170760402865,218,0 +170760402913,218,0 +170760402963,219,0 +170760403012,220,0 +170760403060,220,0 +170760403110,220,0 +170760403158,221,0 +170760403206,221,0 +170760403253,222,0 +170760403301,222,0 +170760403349,223,0 +170760403397,222,0 +170760403445,221,0 +170760403493,216,0 +170760403541,216,0 +170760403589,216,0 +170760403637,218,0 +170760403685,218,0 +170760403734,218,0 +170760403782,220,0 +170760403830,220,0 +170760403878,220,0 +170760403925,220,0 +170760403973,221,0 +170760404021,222,0 +170760404069,223,0 +170760404117,222,0 +170760404165,223,0 +170760404213,223,0 +170760404261,222,0 +170760404310,223,0 +170760404358,217,0 +170760404406,216,0 +170760404453,217,0 +170760404501,218,0 +170760404551,218,0 +170760404599,220,0 +170760404646,220,0 +170760404694,220,0 +170760404742,219,0 +170760404790,220,0 +170760404838,221,0 +170760404886,222,0 +170760404935,221,0 +170760404985,222,0 +170760405033,222,0 +170760405082,223,0 +170760405131,222,0 +170760405179,221,0 +170760405227,216,0 +170760405275,216,0 +170760405323,216,0 +170760405371,217,0 +170760405419,217,0 +170760405467,217,0 +170760405515,218,0 +170760405563,219,0 +170760405612,219,0 +170760405660,219,0 +170760405708,219,0 +170760405755,220,0 +170760405803,221,0 +170760405851,222,0 +170760405899,221,0 +170760405947,222,0 +170760405995,221,0 +170760406043,222,0 +170760406091,219,0 +170760406139,215,0 +170760406187,216,0 +170760406235,216,0 +170760406283,217,0 +170760406332,218,0 +170760406380,217,0 +170760406428,219,0 +170760406478,219,0 +170760406526,220,0 +170760406573,220,0 +170760406621,220,0 +170760406669,221,0 +170760406717,222,0 +170760406765,223,0 +170760406815,221,0 +170760406863,221,0 +170760406911,222,0 +170760406958,221,0 +170760407006,216,0 +170760407056,216,0 +170760407104,216,0 +170760407152,216,0 +170760407200,217,0 +170760407248,216,0 +170760407297,216,0 +170760407345,218,0 +170760407393,219,0 +170760407441,220,0 +170760407489,220,0 +170760407537,221,0 +170760407585,221,0 +170760407634,223,0 +170760407682,222,0 +170760407730,222,0 +170760407778,222,0 +170760407826,221,0 +170760407874,216,0 +170760407922,215,0 +170760407970,216,0 +170760408017,216,0 +170760408065,217,0 +170760408113,217,0 +170760408161,217,0 +170760408209,218,0 +170760408258,218,0 +170760408306,219,0 +170760408354,220,0 +170760408402,220,0 +170760408450,220,0 +170760408500,220,0 +170760408549,219,0 +170760408597,221,0 +170760408646,220,0 +170760408694,222,0 +170760408744,215,0 +170760408792,214,0 +170760408840,215,0 +170760408887,216,0 +170760408935,217,0 +170760408985,216,0 +170760409034,216,0 +170760409082,218,0 +170760409130,218,0 +170760409180,219,0 +170760409227,219,0 +170760409277,220,0 +170760409327,220,0 +170760409376,220,0 +170760409424,220,0 +170760409472,221,0 +170760409520,220,0 +170760409568,221,0 +170760409617,216,0 +170760409665,216,0 +170760409713,217,0 +170760409761,217,0 +170760409809,218,0 +170760409857,218,0 +170760409905,219,0 +170760409954,220,0 +170760410002,220,0 +170760410050,221,0 +170760410098,221,0 +170760410146,221,0 +170760410194,221,0 +170760410242,222,0 +170760410290,222,0 +170760410338,223,0 +170760410385,222,0 +170760410435,221,0 +170760410483,219,0 +170760410532,217,0 +170760410580,217,0 +170760410630,218,0 +170760410678,218,0 +170760410727,219,0 +170760410775,220,0 +170760410825,220,0 +170760410874,220,0 +170760410924,221,0 +170760410972,221,0 +170760411019,221,0 +170760411067,222,0 +170760411115,222,0 +170760411163,222,0 +170760411212,221,0 +170760411260,221,0 +170760411308,221,0 +170760411356,216,0 +170760411404,216,0 +170760411451,216,0 +170760411499,217,0 +170760411547,218,0 +170760411595,218,0 +170760411643,219,0 +170760411692,219,0 +170760411740,219,0 +170760411788,220,0 +170760411836,221,0 +170760411884,220,0 +170760411931,221,0 +170760411979,223,0 +170760412027,221,0 +170760412075,221,0 +170760412124,222,0 +170760412172,222,0 +170760412222,221,0 +170760412270,215,0 +170760412319,215,0 +170760412367,216,0 +170760412415,217,0 +170760412463,218,0 +170760412513,218,0 +170760412562,218,0 +170760412612,219,0 +170760412659,219,0 +170760412707,220,0 +170760412755,221,0 +170760412803,221,0 +170760412851,222,0 +170760412899,221,0 +170760412947,222,0 +170760412995,221,0 +170760413044,221,0 +170760413092,221,0 +170760413140,216,0 +170760413188,215,0 +170760413237,216,0 +170760413285,217,0 +170760413333,217,0 +170760413383,218,0 +170760413430,219,0 +170760413480,219,0 +170760413528,219,0 +170760413577,220,0 +170760413625,219,0 +170760413674,222,0 +170760413722,221,0 +170760413770,221,0 +170760413818,222,0 +170760413868,222,0 +170760413915,221,0 +170760413963,221,0 +170760414011,216,0 +170760414059,217,0 +170760414107,217,0 +170760414155,218,0 +170760414203,219,0 +170760414251,219,0 +170760414300,219,0 +170760414348,219,0 +170760414396,220,0 +170760414444,220,0 +170760414492,221,0 +170760414541,221,0 +170760414589,222,0 +170760414637,223,0 +170760414686,223,0 +170760414734,223,0 +170760414782,222,0 +170760414830,222,0 +170760414879,217,0 +170760414927,217,0 +170760414977,217,0 +170760415026,218,0 +170760415074,219,0 +170760415122,220,0 +170760415170,218,0 +170760415219,221,0 +170760415267,220,0 +170760415315,220,0 +170760415363,222,0 +170760415411,223,0 +170760415459,222,0 +170760415508,222,0 +170760415556,221,0 +170760415606,222,0 +170760415654,223,0 +170760415701,221,0 +170760415751,216,0 +170760415799,215,0 +170760415847,215,0 +170760415896,216,0 +170760415944,217,0 +170760415994,218,0 +170760416041,218,0 +170760416089,219,0 +170760416137,219,0 +170760416185,219,0 +170760416234,221,0 +170760416282,221,0 +170760416332,222,0 +170760416381,222,0 +170760416429,222,0 +170760416479,222,0 +170760416527,222,0 +170760416575,222,0 +170760416624,216,0 +170760416672,215,0 +170760416720,215,0 +170760416768,215,0 +170760416817,216,0 +170760416865,216,0 +170760416913,217,0 +170760416963,219,0 +170760417011,218,0 +170760417060,219,0 +170760417108,220,0 +170760417156,219,0 +170760417204,221,0 +170760417252,221,0 +170760417300,220,0 +170760417348,220,0 +170760417397,220,0 +170760417445,221,0 +170760417493,216,0 +170760417543,214,0 +170760417592,214,0 +170760417642,215,0 +170760417691,216,0 +170760417739,216,0 +170760417787,217,0 +170760417835,217,0 +170760417884,218,0 +170760417932,218,0 +170760417980,219,0 +170760418028,220,0 +170760418076,220,0 +170760418125,221,0 +170760418173,222,0 +170760418221,221,0 +170760418269,222,0 +170760418317,221,0 +170760418364,219,0 +170760418412,215,0 +170760418460,215,0 +170760418508,216,0 +170760418556,216,0 +170760418604,216,0 +170760418653,217,0 +170760418701,219,0 +170760418749,218,0 +170760418797,219,0 +170760418845,220,0 +170760418893,220,0 +170760418942,221,0 +170760418992,222,0 +170760419040,222,0 +170760419089,223,0 +170760419139,222,0 +170760419187,222,0 +170760419234,221,0 +170760419282,215,0 +170760419330,215,0 +170760419380,215,0 +170760419428,216,0 +170760419477,217,0 +170760419527,217,0 +170760419576,218,0 +170760419626,218,0 +170760419674,220,0 +170760419723,220,0 +170760419773,220,0 +170760419821,221,0 +170760419868,221,0 +170760419916,221,0 +170760419964,221,0 +170760420012,223,0 +170760420060,222,0 +170760420109,221,0 +170760420157,215,0 +170760420205,215,0 +170760420253,216,0 +170760420301,217,0 +170760420351,218,0 +170760420400,218,0 +170760420448,218,0 +170760420496,219,0 +170760420546,219,0 +170760420594,220,0 +170760420641,221,0 +170760420689,220,0 +170760420737,221,0 +170760420785,222,0 +170760420833,220,0 +170760420881,220,0 +170760420929,222,0 +170760420977,222,0 +170760421026,216,0 +170760421074,215,0 +170760421122,216,0 +170760421170,217,0 +170760421219,218,0 +170760421269,218,0 +170760421318,219,0 +170760421368,219,0 +170760421416,220,0 +170760421464,220,0 +170760421512,221,0 +170760421560,222,0 +170760421608,222,0 +170760421655,221,0 +170760421703,223,0 +170760421753,223,0 +170760421801,223,0 +170760421849,221,0 +170760421897,216,0 +170760421945,217,0 +170760421993,217,0 +170760422041,218,0 +170760422090,218,0 +170760422138,220,0 +170760422186,220,0 +170760422234,219,0 +170760422282,221,0 +170760422330,221,0 +170760422378,221,0 +170760422426,223,0 +170760422473,221,0 +170760422521,221,0 +170760422569,222,0 +170760422617,222,0 +170760422665,222,0 +170760422715,221,0 +170760422762,218,0 +170760422810,217,0 +170760422858,217,0 +170760422906,218,0 +170760422954,218,0 +170760423002,219,0 +170760423050,219,0 +170760423098,220,0 +170760423147,220,0 +170760423195,222,0 +170760423243,221,0 +170760423291,222,0 +170760423338,223,0 +170760423386,222,0 +170760423434,222,0 +170760423482,222,0 +170760423530,222,0 +170760423578,221,0 +170760423625,216,0 +170760423673,217,0 +170760423721,218,0 +170760423769,220,0 +170760423817,219,0 +170760423865,219,0 +170760423913,220,0 +170760423961,220,0 +170760424009,221,0 +170760424058,222,0 +170760424108,222,0 +170760424155,222,0 +170760424203,222,0 +170760424251,222,0 +170760424299,222,0 +170760424347,222,0 +170760424395,221,0 +170760424443,221,0 +170760424492,218,0 +170760424540,217,0 +170760424589,218,0 +170760424637,218,0 +170760424685,219,0 +170760424733,219,0 +170760424781,219,0 +170760424830,220,0 +170760424878,221,0 +170760424926,220,0 +170760424974,221,0 +170760425021,223,0 +170760425069,222,0 +170760425117,222,0 +170760425165,223,0 +170760425213,223,0 +170760425261,222,0 +170760425308,221,0 +170760425356,220,0 +170760425404,215,0 +170760425452,215,0 +170760425500,216,0 +170760425548,216,0 +170760425596,217,0 +170760425644,217,0 +170760425691,218,0 +170760425739,219,0 +170760425787,220,0 +170760425835,220,0 +170760425885,220,0 +170760425934,221,0 +170760425982,221,0 +170760426030,221,0 +170760426079,221,0 +170760426129,220,0 +170760426177,221,0 +170760426225,220,0 +170760426273,215,0 +170760426321,214,0 +170760426370,214,0 +170760426419,215,0 +170760426467,215,0 +170760426517,215,0 +170760426565,216,0 +170760426613,216,0 +170760426661,217,0 +170760426710,218,0 +170760426760,218,0 +170760426808,219,0 +170760426855,219,0 +170760426903,220,0 +170760426951,220,0 +170760426999,220,0 +170760427047,221,0 +170760427097,221,0 +170760427145,221,0 +170760427193,222,0 +170760427241,223,0 +170760427289,222,0 +170760427336,223,0 +170760427384,222,0 +170760427434,221,0 +170760427482,222,0 +170760427531,221,0 +170760427581,216,0 +170760427630,216,0 +170760427678,221,0 +170760427728,217,0 +170760427776,218,0 +170760427825,220,0 +170760427873,219,0 +170760427921,219,0 +170760427969,220,0 +170760428017,220,0 +170760428065,221,0 +170760428113,223,0 +170760428161,222,0 +170760428210,222,0 +170760428258,222,0 +170760428306,222,0 +170760428355,222,0 +170760428403,221,0 +170760428451,217,0 +170760428499,216,0 +170760428547,217,0 +170760428595,217,0 +170760428644,218,0 +170760428694,218,0 +170760428742,218,0 +170760428791,219,0 +170760428839,219,0 +170760428889,220,0 +170760428937,221,0 +170760428986,220,0 +170760429034,221,0 +170760429082,221,0 +170760429131,221,0 +170760429179,221,0 +170760429227,222,0 +170760429275,221,0 +170760429323,216,0 +170760429371,216,0 +170760429419,217,0 +170760429467,217,0 +170760429515,218,0 +170760429563,218,0 +170760429612,218,0 +170760429660,219,0 +170760429708,219,0 +170760429756,221,0 +170760429804,219,0 +170760429852,221,0 +170760429900,221,0 +170760429948,222,0 +170760429996,222,0 +170760430043,222,0 +170760430091,222,0 +170760430139,222,0 +170760430187,217,0 +170760430237,217,0 +170760430286,217,0 +170760430334,218,0 +170760430382,218,0 +170760430430,219,0 +170760430480,219,0 +170760430528,220,0 +170760430577,220,0 +170760430625,221,0 +170760430675,221,0 +170760430724,222,0 +170760430772,222,0 +170760430820,223,0 +170760430868,223,0 +170760430917,223,0 +170760430965,222,0 +170760431013,222,0 +170760431061,216,0 +170760431109,216,0 +170760431157,217,0 +170760431205,217,0 +170760431253,218,0 +170760431301,218,0 +170760431349,220,0 +170760431397,220,0 +170760431445,221,0 +170760431492,220,0 +170760431542,221,0 +170760431590,221,0 +170760431639,221,0 +170760431689,222,0 +170760431737,222,0 +170760431786,223,0 +170760431836,221,0 +170760431884,219,0 +170760431932,216,0 +170760431980,215,0 +170760432028,214,0 +170760432077,215,0 +170760432125,215,0 +170760432173,216,0 +170760432221,217,0 +170760432270,218,0 +170760432320,218,0 +170760432368,219,0 +170760432416,220,0 +170760432463,220,0 +170760432513,222,0 +170760432562,221,0 +170760432610,222,0 +170760432658,224,0 +170760432708,222,0 +170760432756,222,0 +170760432805,216,0 +170760432853,214,0 +170760432902,214,0 +170760432952,215,0 +170760433000,216,0 +170760433048,216,0 +170760433097,216,0 +170760433145,217,0 +170760433193,218,0 +170760433241,217,0 +170760433289,219,0 +170760433338,219,0 +170760433388,220,0 +170760433437,220,0 +170760433485,220,0 +170760433533,221,0 +170760433581,221,0 +170760433631,221,0 +170760433678,215,0 +170760433726,214,0 +170760433774,215,0 +170760433822,216,0 +170760433870,216,0 +170760433918,217,0 +170760433967,217,0 +170760434015,218,0 +170760434063,218,0 +170760434113,218,0 +170760434161,219,0 +170760434209,219,0 +170760434258,220,0 +170760434308,220,0 +170760434357,221,0 +170760434405,221,0 +170760434453,221,0 +170760434501,222,0 +170760434550,219,0 +170760434600,215,0 +170760434649,215,0 +170760434697,216,0 +170760434745,217,0 +170760434793,217,0 +170760434841,218,0 +170760434889,218,0 +170760434937,218,0 +170760434985,219,0 +170760435033,219,0 +170760435081,220,0 +170760435130,220,0 +170760435178,221,0 +170760435226,220,0 +170760435276,221,0 +170760435325,222,0 +170760435373,222,0 +170760435421,219,0 +170760435471,216,0 +170760435520,216,0 +170760435570,217,0 +170760435617,217,0 +170760435667,218,0 +170760435717,219,0 +170760435766,220,0 +170760435814,221,0 +170760435862,221,0 +170760435910,221,0 +170760435958,221,0 +170760436006,221,0 +170760436054,222,0 +170760436102,222,0 +170760436149,222,0 +170760436199,223,0 +170760436247,221,0 +170760436295,217,0 +170760436343,217,0 +170760436391,217,0 +170760436439,218,0 +170760436487,219,0 +170760436536,219,0 +170760436584,220,0 +170760436633,220,0 +170760436681,220,0 +170760436731,221,0 +170760436779,221,0 +170760436828,222,0 +170760436878,222,0 +170760436926,222,0 +170760436974,222,0 +170760437022,222,0 +170760437071,222,0 +170760437121,222,0 +170760437169,217,0 +170760437217,218,0 +170760437264,218,0 +170760437312,218,0 +170760437360,219,0 +170760437408,220,0 +170760437456,221,0 +170760437506,220,0 +170760437555,221,0 +170760437603,222,0 +170760437651,223,0 +170760437699,222,0 +170760437747,223,0 +170760437796,222,0 +170760437844,222,0 +170760437892,222,0 +170760437942,221,0 +170760437991,221,0 +170760438039,218,0 +170760438087,218,0 +170760438135,218,0 +170760438184,218,0 +170760438232,219,0 +170760438280,219,0 +170760438328,220,0 +170760438378,220,0 +170760438427,221,0 +170760438475,221,0 +170760438523,222,0 +170760438572,222,0 +170760438622,222,0 +170760438670,222,0 +170760438718,222,0 +170760438766,221,0 +170760438815,221,0 +170760438863,220,0 +170760438911,216,0 +170760438959,216,0 +170760439008,217,0 +170760439058,218,0 +170760439106,218,0 +170760439155,220,0 +170760439203,220,0 +170760439253,220,0 +170760439300,221,0 +170760439348,221,0 +170760439396,221,0 +170760439444,222,0 +170760439494,222,0 +170760439542,221,0 +170760439591,223,0 +170760439641,221,0 +170760439688,222,0 +170760439736,216,0 +170760439784,215,0 +170760439834,215,0 +170760439882,216,0 +170760439930,216,0 +170760439979,218,0 +170760440027,218,0 +170760440075,218,0 +170760440123,219,0 +170760440172,220,0 +170760440220,221,0 +170760440268,220,0 +170760440316,221,0 +170760440364,221,0 +170760440412,221,0 +170760440460,221,0 +170760440508,220,0 +170760440556,221,0 +170760440604,216,0 +170760440653,214,0 +170760440702,215,0 +170760440750,215,0 +170760440798,216,0 +170760440846,216,0 +170760440894,217,0 +170760440942,217,0 +170760440990,218,0 +170760441039,218,0 +170760441087,218,0 +170760441135,219,0 +170760441183,220,0 +170760441231,221,0 +170760441280,220,0 +170760441328,220,0 +170760441376,220,0 +170760441426,221,0 +170760441474,215,0 +170760441521,214,0 +170760441571,215,0 +170760441619,216,0 +170760441667,216,0 +170760441716,216,0 +170760441766,218,0 +170760441813,218,0 +170760441861,219,0 +170760441909,219,0 +170760441957,221,0 +170760442005,220,0 +170760442053,221,0 +170760442101,221,0 +170760442149,222,0 +170760442197,221,0 +170760442246,220,0 +170760442294,220,0 +170760442342,216,0 +170760442390,217,0 +170760442438,218,0 +170760442486,218,0 +170760442534,218,0 +170760442582,220,0 +170760442631,219,0 +170760442679,219,0 +170760442727,220,0 +170760442775,221,0 +170760442823,221,0 +170760442871,222,0 +170760442918,222,0 +170760442966,222,0 +170760443014,221,0 +170760443062,221,0 +170760443110,221,0 +170760443158,217,0 +170760443205,217,0 +170760443253,218,0 +170760443301,218,0 +170760443351,218,0 +170760443399,220,0 +170760443447,219,0 +170760443495,221,0 +170760443543,221,0 +170760443591,220,0 +170760443640,221,0 +170760443690,222,0 +170760443739,222,0 +170760443789,222,0 +170760443837,221,0 +170760443885,222,0 +170760443933,221,0 +170760443982,223,0 +170760444030,216,0 +170760444078,215,0 +170760444128,216,0 +170760444177,217,0 +170760444225,217,0 +170760444274,218,0 +170760444322,218,0 +170760444370,219,0 +170760444418,219,0 +170760444466,221,0 +170760444514,221,0 +170760444562,221,0 +170760444610,222,0 +170760444658,221,0 +170760444707,223,0 +170760444755,222,0 +170760444805,222,0 +170760444854,221,0 +170760444902,216,0 +170760444950,216,0 +170760444998,217,0 +170760445046,217,0 +170760445094,217,0 +170760445142,218,0 +170760445190,218,0 +170760445238,219,0 +170760445286,219,0 +170760445334,220,0 +170760445382,220,0 +170760445429,220,0 +170760445477,221,0 +170760445527,221,0 +170760445575,222,0 +170760445624,222,0 +170760445672,222,0 +170760445720,221,0 +170760445768,216,0 +170760445816,217,0 +170760445864,217,0 +170760445912,217,0 +170760445960,218,0 +170760446008,217,0 +170760446056,218,0 +170760446104,219,0 +170760446152,220,0 +170760446201,220,0 +170760446251,221,0 +170760446300,221,0 +170760446348,223,0 +170760446397,222,0 +170760446445,222,0 +170760446493,221,0 +170760446541,221,0 +170760446591,218,0 +170760446640,217,0 +170760446688,218,0 +170760446736,218,0 +170760446784,219,0 +170760446832,219,0 +170760446881,220,0 +170760446929,220,0 +170760446979,221,0 +170760447027,223,0 +170760447076,222,0 +170760447124,221,0 +170760447174,222,0 +170760447221,227,0 +170760447269,226,0 +170760447319,222,0 +170760447367,223,0 +170760447415,222,0 +170760447463,218,0 +170760447512,217,0 +170760447560,218,0 +170760447608,218,0 +170760447656,219,0 +170760447704,219,0 +170760447751,220,0 +170760447799,221,0 +170760447849,221,0 +170760447896,222,0 +170760447944,223,0 +170760447994,222,0 +170760448042,222,0 +170760448089,223,0 +170760448137,222,0 +170760448185,222,0 +170760448234,223,0 +170760448282,221,0 +170760448330,217,0 +170760448378,217,0 +170760448427,217,0 +170760448477,218,0 +170760448526,218,0 +170760448574,219,0 +170760448622,219,0 +170760448670,220,0 +170760448718,221,0 +170760448766,220,0 +170760448814,221,0 +170760448862,222,0 +170760448910,222,0 +170760448958,222,0 +170760449006,223,0 +170760449054,222,0 +170760449104,222,0 +170760449153,218,0 +170760449203,218,0 +170760449250,218,0 +170760449298,218,0 +170760449346,219,0 +170760449394,219,0 +170760449442,220,0 +170760449492,220,0 +170760449540,221,0 +170760449588,221,0 +170760449636,222,0 +170760449683,222,0 +170760449731,222,0 +170760449779,222,0 +170760449829,221,0 +170760449876,221,0 +170760449924,223,0 +170760449972,222,0 +170760450020,216,0 +170760450068,216,0 +170760450115,216,0 +170760450163,217,0 +170760450211,217,0 +170760450259,218,0 +170760450307,219,0 +170760450355,219,0 +170760450404,219,0 +170760450454,221,0 +170760450503,221,0 +170760450551,222,0 +170760450599,223,0 +170760450649,222,0 +170760450696,223,0 +170760450744,222,0 +170760450792,223,0 +170760450840,222,0 +170760450888,216,0 +170760450938,216,0 +170760450986,216,0 +170760451034,217,0 +170760451081,218,0 +170760451131,219,0 +170760451179,219,0 +170760451227,220,0 +170760451276,220,0 +170760451326,221,0 +170760451373,221,0 +170760451421,222,0 +170760451469,222,0 +170760451517,222,0 +170760451565,222,0 +170760451613,222,0 +170760451661,222,0 +170760451708,221,0 +170760451756,215,0 +170760451804,216,0 +170760451854,216,0 +170760451901,217,0 +170760451949,218,0 +170760451999,219,0 +170760452047,219,0 +170760452096,220,0 +170760452144,220,0 +170760452192,222,0 +170760452242,221,0 +170760452289,221,0 +170760452337,221,0 +170760452385,221,0 +170760452433,221,0 +170760452481,222,0 +170760452529,220,0 +170760452577,218,0 +170760452627,215,0 +170760452675,215,0 +170760452724,216,0 +170760452772,217,0 +170760452820,217,0 +170760452870,218,0 +170760452918,218,0 +170760452965,219,0 +170760453013,219,0 +170760453061,220,0 +170760453109,220,0 +170760453157,221,0 +170760453207,221,0 +170760453256,221,0 +170760453304,221,0 +170760453352,220,0 +170760453401,221,0 +170760453449,216,0 +170760453499,215,0 +170760453548,215,0 +170760453596,217,0 +170760453646,217,0 +170760453694,217,0 +170760453743,218,0 +170760453791,218,0 +170760453839,218,0 +170760453889,220,0 +170760453937,220,0 +170760453985,220,0 +170760454034,220,0 +170760454082,222,0 +170760454130,221,0 +170760454180,221,0 +170760454228,221,0 +170760454277,221,0 +170760454325,214,0 +170760454374,215,0 +170760454422,215,0 +170760454470,216,0 +170760454518,216,0 +170760454566,217,0 +170760454616,217,0 +170760454663,218,0 +170760454711,217,0 +170760454761,218,0 +170760454809,219,0 +170760454858,219,0 +170760454908,221,0 +170760454956,221,0 +170760455004,221,0 +170760455053,222,0 +170760455101,221,0 +170760455149,216,0 +170760455197,214,0 +170760455245,214,0 +170760455293,214,0 +170760455341,214,0 +170760455389,215,0 +170760455437,215,0 +170760455484,216,0 +170760455532,217,0 +170760455580,218,0 +170760455628,218,0 +170760455676,219,0 +170760455723,219,0 +170760455771,220,0 +170760455819,220,0 +170760455867,221,0 +170760455915,221,0 +170760455963,221,0 +170760456010,216,0 +170760456058,214,0 +170760456108,215,0 +170760456156,215,0 +170760456204,215,0 +170760456253,216,0 +170760456301,216,0 +170760456349,216,0 +170760456397,217,0 +170760456446,218,0 +170760456494,218,0 +170760456544,219,0 +170760456593,220,0 +170760456641,220,0 +170760456689,220,0 +170760456737,221,0 +170760456785,221,0 +170760456832,221,0 +170760456880,216,0 +170760456928,216,0 +170760456976,216,0 +170760457024,217,0 +170760457072,218,0 +170760457120,218,0 +170760457169,219,0 +170760457217,219,0 +170760457265,219,0 +170760457313,221,0 +170760457361,220,0 +170760457409,221,0 +170760457458,221,0 +170760457506,222,0 +170760457554,222,0 +170760457602,221,0 +170760457650,222,0 +170760457698,221,0 +170760457746,216,0 +170760457796,216,0 +170760457845,217,0 +170760457893,218,0 +170760457941,218,0 +170760457989,218,0 +170760458037,219,0 +170760458085,220,0 +170760458133,220,0 +170760458181,222,0 +170760458229,223,0 +170760458277,222,0 +170760458325,222,0 +170760458373,221,0 +170760458422,222,0 +170760458472,221,0 +170760458520,221,0 +170760458568,218,0 +170760458617,215,0 +170760458665,215,0 +170760458713,217,0 +170760458761,217,0 +170760458809,217,0 +170760458858,218,0 +170760458906,220,0 +170760458954,220,0 +170760459002,220,0 +170760459051,221,0 +170760459099,221,0 +170760459149,221,0 +170760459197,221,0 +170760459245,222,0 +170760459293,223,0 +170760459340,223,0 +170760459388,221,0 +170760459436,216,0 +170760459484,214,0 +170760459532,215,0 +170760459580,216,0 +170760459628,216,0 +170760459675,217,0 +170760459723,217,0 +170760459771,218,0 +170760459821,219,0 +170760459870,219,0 +170760459920,219,0 +170760459968,220,0 +170760460016,221,0 +170760460064,221,0 +170760460112,221,0 +170760460160,221,0 +170760460207,222,0 +170760460255,221,0 +170760460303,216,0 +170760460353,215,0 +170760460401,216,0 +170760460450,216,0 +170760460500,218,0 +170760460549,217,0 +170760460597,218,0 +170760460646,218,0 +170760460696,218,0 +170760460744,219,0 +170760460792,219,0 +170760460840,220,0 +170760460887,221,0 +170760460935,220,0 +170760460983,221,0 +170760461031,221,0 +170760461079,221,0 +170760461127,223,0 +170760461174,217,0 +170760461222,217,0 +170760461270,218,0 +170760461318,218,0 +170760461366,218,0 +170760461414,219,0 +170760461462,220,0 +170760461509,219,0 +170760461557,220,0 +170760461605,222,0 +170760461653,222,0 +170760461701,224,0 +170760461750,222,0 +170760461798,222,0 +170760461846,224,0 +170760461893,224,0 +170760461941,222,0 +170760461989,221,0 +170760462037,218,0 +170760462085,219,0 +170760462132,218,0 +170760462180,219,0 +170760462228,220,0 +170760462276,221,0 +170760462324,221,0 +170760462372,221,0 +170760462420,222,0 +170760462467,222,0 +170760462515,222,0 +170760462563,222,0 +170760462613,222,0 +170760462661,222,0 +170760462708,222,0 +170760462756,221,0 +170760462804,222,0 +170760462852,222,0 +170760462900,219,0 +170760462948,219,0 +170760462996,220,0 +170760463044,219,0 +170760463092,221,0 +170760463141,222,0 +170760463189,223,0 +170760463239,223,0 +170760463287,222,0 +170760463335,223,0 +170760463384,222,0 +170760463432,223,0 +170760463482,223,0 +170760463530,223,0 +170760463578,222,0 +170760463627,222,0 +170760463677,226,0 +170760463726,222,0 +170760463774,220,0 +170760463822,219,0 +170760463872,220,0 +170760463920,220,0 +170760463969,221,0 +170760464019,221,0 +170760464068,222,0 +170760464116,222,0 +170760464166,222,0 +170760464213,223,0 +170760464263,222,0 +170760464311,223,0 +170760464359,222,0 +170760464407,222,0 +170760464455,222,0 +170760464503,222,0 +170760464551,223,0 +170760464600,216,0 +170760464650,216,0 +170760464698,217,0 +170760464746,217,0 +170760464794,218,0 +170760464843,215,0 +170760464891,219,0 +170760464939,221,0 +170760464989,221,0 +170760465038,221,0 +170760465086,222,0 +170760465136,222,0 +170760465183,222,0 +170760465231,223,0 +170760465279,224,0 +170760465327,223,0 +170760465375,222,0 +170760465423,221,0 +170760465471,216,0 +170760465519,215,0 +170760465567,215,0 +170760465616,217,0 +170760465666,218,0 +170760465714,217,0 +170760465762,218,0 +170760465811,219,0 +170760465861,219,0 +170760465910,220,0 +170760465960,221,0 +170760466007,222,0 +170760466055,221,0 +170760466105,223,0 +170760466153,222,0 +170760466201,222,0 +170760466250,222,0 +170760466300,221,0 +170760466349,215,0 +170760466397,216,0 +170760466445,216,0 +170760466495,217,0 +170760466542,217,0 +170760466592,218,0 +170760466641,219,0 +170760466689,219,0 +170760466737,220,0 +170760466785,220,0 +170760466833,220,0 +170760466881,223,0 +170760466929,221,0 +170760466977,222,0 +170760467025,222,0 +170760467073,222,0 +170760467121,222,0 +170760467169,222,0 +170760467217,216,0 +170760467265,216,0 +170760467313,216,0 +170760467362,217,0 +170760467412,219,0 +170760467460,218,0 +170760467507,219,0 +170760467555,219,0 +170760467605,220,0 +170760467654,221,0 +170760467704,221,0 +170760467752,221,0 +170760467801,222,0 +170760467849,222,0 +170760467899,222,0 +170760467947,222,0 +170760467996,221,0 +170760468044,221,0 +170760468092,216,0 +170760468140,216,0 +170760468189,217,0 +170760468237,217,0 +170760468285,219,0 +170760468333,219,0 +170760468381,219,0 +170760468429,220,0 +170760468478,220,0 +170760468526,220,0 +170760468574,221,0 +170760468624,221,0 +170760468671,222,0 +170760468719,221,0 +170760468769,223,0 +170760468817,223,0 +170760468864,221,0 +170760468912,216,0 +170760468960,214,0 +170760469008,215,0 +170760469056,215,0 +170760469104,216,0 +170760469152,216,0 +170760469200,218,0 +170760469248,218,0 +170760469296,218,0 +170760469345,219,0 +170760469393,220,0 +170760469441,220,0 +170760469490,221,0 +170760469538,221,0 +170760469586,221,0 +170760469634,221,0 +170760469682,220,0 +170760469730,221,0 +170760469779,216,0 +170760469828,214,0 +170760469876,214,0 +170760469924,215,0 +170760469973,215,0 +170760470023,216,0 +170760470071,217,0 +170760470118,217,0 +170760470166,217,0 +170760470214,218,0 +170760470262,217,0 +170760470312,219,0 +170760470359,220,0 +170760470407,220,0 +170760470455,220,0 +170760470503,220,0 +170760470551,221,0 +170760470599,221,0 +170760470647,215,0 +170760470694,214,0 +170760470742,215,0 +170760470790,215,0 +170760470839,216,0 +170760470887,217,0 +170760470935,217,0 +170760470983,217,0 +170760471031,217,0 +170760471079,217,0 +170760471126,217,0 +170760471174,219,0 +170760471224,219,0 +170760471272,219,0 +170760471319,220,0 +170760471367,220,0 +170760471417,221,0 +170760471464,221,0 +170760471514,215,0 +170760471562,215,0 +170760471609,216,0 +170760471657,216,0 +170760471705,217,0 +170760471753,217,0 +170760471801,217,0 +170760471849,218,0 +170760471897,219,0 +170760471944,219,0 +170760471992,220,0 +170760472040,220,0 +170760472088,221,0 +170760472138,221,0 +170760472186,221,0 +170760472234,221,0 +170760472281,221,0 +170760472329,221,0 +170760472377,217,0 +170760472427,216,0 +170760472475,217,0 +170760472523,218,0 +170760472570,218,0 +170760472618,219,0 +170760472666,219,0 +170760472714,220,0 +170760472762,221,0 +170760472810,221,0 +170760472858,221,0 +170760472905,222,0 +170760472953,221,0 +170760473001,222,0 +170760473049,222,0 +170760473098,223,0 +170760473146,221,0 +170760473194,221,0 +170760473242,217,0 +170760473290,218,0 +170760473339,218,0 +170760473387,218,0 +170760473435,218,0 +170760473484,219,0 +170760473532,221,0 +170760473581,220,0 +170760473629,220,0 +170760473679,221,0 +170760473727,221,0 +170760473774,221,0 +170760473822,222,0 +170760473870,222,0 +170760473918,222,0 +170760473966,222,0 +170760474014,221,0 +170760474061,222,0 +170760474109,217,0 +170760474157,218,0 +170760474205,218,0 +170760474254,218,0 +170760474302,219,0 +170760474350,219,0 +170760474400,219,0 +170760474448,221,0 +170760474496,220,0 +170760474543,221,0 +170760474593,221,0 +170760474641,222,0 +170760474689,221,0 +170760474737,222,0 +170760474786,222,0 +170760474834,223,0 +170760474884,222,0 +170760474932,220,0 +170760474980,217,0 +170760475029,217,0 +170760475079,219,0 +170760475127,218,0 +170760475175,219,0 +170760475224,219,0 +170760475272,220,0 +170760475320,219,0 +170760475368,220,0 +170760475417,222,0 +170760475467,221,0 +170760475515,222,0 +170760475564,223,0 +170760475612,222,0 +170760475660,224,0 +170760475708,220,0 +170760475756,222,0 +170760475803,217,0 +170760475851,218,0 +170760475899,219,0 +170760475949,219,0 +170760475998,220,0 +170760476048,221,0 +170760476097,220,0 +170760476145,220,0 +170760476193,221,0 +170760476241,221,0 +170760476291,221,0 +170760476338,222,0 +170760476388,223,0 +170760476436,223,0 +170760476484,223,0 +170760476532,222,0 +170760476581,221,0 +170760476629,221,0 +170760476679,219,0 +170760476726,218,0 +170760476774,220,0 +170760476822,219,0 +170760476870,220,0 +170760476918,220,0 +170760476966,221,0 +170760477016,221,0 +170760477064,222,0 +170760477113,223,0 +170760477163,222,0 +170760477211,223,0 +170760477260,222,0 +170760477309,221,0 +170760477357,223,0 +170760477405,222,0 +170760477453,222,0 +170760477502,221,0 +170760477550,217,0 +170760477598,217,0 +170760477647,218,0 +170760477697,218,0 +170760477745,219,0 +170760477793,219,0 +170760477841,220,0 +170760477889,221,0 +170760477936,221,0 +170760477984,223,0 +170760478032,221,0 +170760478080,222,0 +170760478128,222,0 +170760478176,223,0 +170760478223,222,0 +170760478271,222,0 +170760478319,222,0 +170760478367,221,0 +170760478415,215,0 +170760478464,216,0 +170760478512,216,0 +170760478560,217,0 +170760478608,218,0 +170760478655,218,0 +170760478703,219,0 +170760478751,219,0 +170760478799,220,0 +170760478847,220,0 +170760478895,220,0 +170760478944,221,0 +170760478992,221,0 +170760479040,221,0 +170760479088,221,0 +170760479136,221,0 +170760479184,222,0 +170760479233,221,0 +170760479281,215,0 +170760479329,216,0 +170760479377,216,0 +170760479427,217,0 +170760479475,218,0 +170760479524,218,0 +170760479574,219,0 +170760479623,219,0 +170760479671,220,0 +170760479719,220,0 +170760479767,221,0 +170760479815,221,0 +170760479862,221,0 +170760479910,221,0 +170760479958,222,0 +170760480008,222,0 +170760480056,221,0 +170760480103,217,0 +170760480153,214,0 +170760480201,215,0 +170760480249,215,0 +170760480297,216,0 +170760480346,217,0 +170760480394,217,0 +170760480442,218,0 +170760480490,218,0 +170760480539,219,0 +170760480587,219,0 +170760480635,220,0 +170760480683,221,0 +170760480732,221,0 +170760480780,221,0 +170760480828,221,0 +170760480876,222,0 +170760480924,221,0 +170760480972,216,0 +170760481021,215,0 +170760481069,215,0 +170760481119,215,0 +170760481168,216,0 +170760481216,217,0 +170760481266,218,0 +170760481314,219,0 +170760481361,219,0 +170760481409,220,0 +170760481457,221,0 +170760481505,221,0 +170760481553,220,0 +170760481601,223,0 +170760481650,222,0 +170760481698,222,0 +170760481746,222,0 +170760481794,221,0 +170760481844,216,0 +170760481891,215,0 +170760481941,216,0 +170760481989,217,0 +170760482037,217,0 +170760482085,219,0 +170760482133,218,0 +170760482182,219,0 +170760482230,220,0 +170760482278,219,0 +170760482328,222,0 +170760482376,221,0 +170760482423,222,0 +170760482471,224,0 +170760482519,222,0 +170760482567,221,0 +170760482615,221,0 +170760482663,221,0 +170760482711,215,0 +170760482760,216,0 +170760482808,216,0 +170760482856,217,0 +170760482904,217,0 +170760482952,218,0 +170760483000,219,0 +170760483047,219,0 +170760483095,220,0 +170760483143,220,0 +170760483191,221,0 +170760483239,222,0 +170760483287,222,0 +170760483336,222,0 +170760483384,222,0 +170760483432,220,0 +170760483480,222,0 +170760483528,220,0 +170760483576,216,0 +170760483626,217,0 +170760483674,218,0 +170760483722,218,0 +170760483770,219,0 +170760483818,219,0 +170760483866,219,0 +170760483913,220,0 +170760483963,220,0 +170760484011,220,0 +170760484060,222,0 +170760484108,223,0 +170760484156,222,0 +170760484204,222,0 +170760484252,223,0 +170760484300,222,0 +170760484348,221,0 +170760484396,217,0 +170760484445,216,0 +170760484493,217,0 +170760484541,217,0 +170760484589,218,0 +170760484637,218,0 +170760484684,220,0 +170760484732,219,0 +170760484780,219,0 +170760484828,220,0 +170760484876,220,0 +170760484924,221,0 +170760484973,221,0 +170760485021,222,0 +170760485069,222,0 +170760485117,222,0 +170760485165,221,0 +170760485213,222,0 +170760485260,216,0 +170760485308,216,0 +170760485356,217,0 +170760485404,218,0 +170760485452,218,0 +170760485500,218,0 +170760485550,219,0 +170760485598,219,0 +170760485647,219,0 +170760485696,220,0 +170760485744,220,0 +170760485792,221,0 +170760485840,221,0 +170760485888,221,0 +170760485936,222,0 +170760485984,221,0 +170760486034,221,0 +170760486082,221,0 +170760486131,218,0 +170760486179,218,0 +170760486228,217,0 +170760486278,220,0 +170760486326,219,0 +170760486374,219,0 +170760486423,219,0 +170760486473,220,0 +170760486520,220,0 +170760486568,221,0 +170760486616,221,0 +170760486664,223,0 +170760486712,221,0 +170760486760,222,0 +170760486808,221,0 +170760486856,221,0 +170760486904,222,0 +170760486952,221,0 +170760486999,217,0 +170760487049,218,0 +170760487097,218,0 +170760487146,218,0 +170760487194,220,0 +170760487244,220,0 +170760487293,220,0 +170760487341,221,0 +170760487389,221,0 +170760487437,221,0 +170760487487,221,0 +170760487535,222,0 +170760487584,222,0 +170760487632,222,0 +170760487680,221,0 +170760487728,222,0 +170760487777,221,0 +170760487825,219,0 +170760487873,218,0 +170760487921,218,0 +170760487969,219,0 +170760488017,219,0 +170760488065,219,0 +170760488112,220,0 +170760488160,220,0 +170760488210,221,0 +170760488258,221,0 +170760488305,221,0 +170760488353,222,0 +170760488401,222,0 +170760488449,221,0 +170760488499,221,0 +170760488546,222,0 +170760488594,221,0 +170760488642,221,0 +170760488690,216,0 +170760488738,216,0 +170760488785,217,0 +170760488833,218,0 +170760488881,218,0 +170760488929,219,0 +170760488977,219,0 +170760489024,220,0 +170760489074,220,0 +170760489123,221,0 +170760489171,220,0 +170760489220,221,0 +170760489268,221,0 +170760489316,222,0 +170760489364,222,0 +170760489411,221,0 +170760489459,221,0 +170760489507,221,0 +170760489555,215,0 +170760489602,215,0 +170760489650,215,0 +170760489698,216,0 +170760489746,217,0 +170760489794,217,0 +170760489841,218,0 +170760489889,219,0 +170760489937,219,0 +170760489985,218,0 +170760490033,220,0 +170760490081,220,0 +170760490128,220,0 +170760490176,221,0 +170760490224,222,0 +170760490272,221,0 +170760490320,221,0 +170760490368,220,0 +170760490415,215,0 +170760490463,215,0 +170760490511,215,0 +170760490561,216,0 +170760490610,217,0 +170760490660,217,0 +170760490708,217,0 +170760490756,218,0 +170760490804,219,0 +170760490853,219,0 +170760490901,220,0 +170760490949,220,0 +170760490997,221,0 +170760491045,221,0 +170760491095,222,0 +170760491142,222,0 +170760491190,222,0 +170760491238,221,0 +170760491286,216,0 +170760491334,216,0 +170760491384,216,0 +170760491431,217,0 +170760491479,218,0 +170760491529,219,0 +170760491577,218,0 +170760491626,219,0 +170760491674,220,0 +170760491722,222,0 +170760491770,221,0 +170760491817,221,0 +170760491867,221,0 +170760491915,222,0 +170760491962,221,0 +170760492010,222,0 +170760492058,223,0 +170760492106,221,0 +170760492154,215,0 +170760492202,216,0 +170760492250,216,0 +170760492297,217,0 +170760492345,217,0 +170760492395,218,0 +170760492442,218,0 +170760492490,220,0 +170760492538,220,0 +170760492586,221,0 +170760492634,220,0 +170760492682,221,0 +170760492729,222,0 +170760492779,221,0 +170760492827,222,0 +170760492874,222,0 +170760492922,221,0 +170760492970,216,0 +170760493018,216,0 +170760493066,217,0 +170760493114,218,0 +170760493162,219,0 +170760493209,219,0 +170760493257,219,0 +170760493305,220,0 +170760493353,220,0 +170760493401,221,0 +170760493449,221,0 +170760493497,222,0 +170760493545,222,0 +170760493593,222,0 +170760493640,222,0 +170760493688,222,0 +170760493736,222,0 +170760493785,222,0 +170760493833,216,0 +170760493881,214,0 +170760493929,215,0 +170760493977,216,0 +170760494025,216,0 +170760494074,217,0 +170760494122,217,0 +170760494170,218,0 +170760494218,218,0 +170760494266,219,0 +170760494315,220,0 +170760494365,220,0 +170760494413,221,0 +170760494461,221,0 +170760494509,222,0 +170760494556,222,0 +170760494604,221,0 +170760494652,221,0 +170760494702,215,0 +170760494750,214,0 +170760494797,214,0 +170760494845,215,0 +170760494893,216,0 +170760494941,216,0 +170760494989,217,0 +170760495036,217,0 +170760495086,217,0 +170760495134,218,0 +170760495182,219,0 +170760495231,219,0 +170760495279,220,0 +170760495327,221,0 +170760495375,221,0 +170760495423,220,0 +170760495470,221,0 +170760495518,221,0 +170760495566,215,0 +170760495614,214,0 +170760495662,215,0 +170760495710,215,0 +170760495758,216,0 +170760495806,217,0 +170760495854,217,0 +170760495901,219,0 +170760495951,219,0 +170760495999,218,0 +170760496047,220,0 +170760496095,221,0 +170760496143,221,0 +170760496190,222,0 +170760496240,220,0 +170760496288,220,0 +170760496336,221,0 +170760496383,217,0 +170760496431,214,0 +170760496479,215,0 +170760496529,215,0 +170760496578,216,0 +170760496626,217,0 +170760496676,217,0 +170760496725,218,0 +170760496775,218,0 +170760496824,219,0 +170760496874,220,0 +170760496922,220,0 +170760496971,219,0 +170760497019,220,0 +170760497069,220,0 +170760497116,222,0 +170760497164,221,0 +170760497212,221,0 +170760497260,217,0 +170760497308,216,0 +170760497358,216,0 +170760497405,217,0 +170760497453,217,0 +170760497501,218,0 +170760497549,218,0 +170760497597,219,0 +170760497645,219,0 +170760497694,221,0 +170760497742,220,0 +170760497792,221,0 +170760497840,225,0 +170760497888,222,0 +170760497937,222,0 +170760497985,222,0 +170760498035,219,0 +170760498083,220,0 +170760498132,216,0 +170760498182,216,0 +170760498229,217,0 +170760498277,217,0 +170760498325,218,0 +170760498373,218,0 +170760498421,219,0 +170760498469,219,0 +170760498518,220,0 +170760498568,221,0 +170760498616,221,0 +170760498665,221,0 +170760498715,222,0 +170760498762,222,0 +170760498810,224,0 +170760498858,222,0 +170760498906,221,0 +170760498954,216,0 +170760499002,216,0 +170760499052,216,0 +170760499099,217,0 +170760499147,218,0 +170760499197,218,0 +170760499245,218,0 +170760499293,219,0 +170760499341,220,0 +170760499388,220,0 +170760499436,220,0 +170760499484,220,0 +170760499532,221,0 +170760499580,221,0 +170760499629,221,0 +170760499677,222,0 +170760499727,222,0 +170760499774,221,0 +170760499822,216,0 +170760499870,216,0 +170760499918,216,0 +170760499966,217,0 +170760500014,217,0 +170760500061,218,0 +170760500109,218,0 +170760500157,219,0 +170760500205,219,0 +170760500253,220,0 +170760500301,220,0 +170760500349,221,0 +170760500397,221,0 +170760500445,221,0 +170760500494,221,0 +170760500542,221,0 +170760500590,222,0 +170760500638,221,0 +170760500686,216,0 +170760500734,215,0 +170760500784,216,0 +170760500833,217,0 +170760500881,218,0 +170760500929,218,0 +170760500977,218,0 +170760501025,218,0 +170760501073,219,0 +170760501122,219,0 +170760501170,220,0 +170760501218,221,0 +170760501266,222,0 +170760501313,221,0 +170760501361,221,0 +170760501409,221,0 +170760501457,221,0 +170760501505,220,0 +170760501552,215,0 +170760501600,216,0 +170760501648,216,0 +170760501696,217,0 +170760501743,217,0 +170760501791,217,0 +170760501839,218,0 +170760501889,220,0 +170760501937,219,0 +170760501985,219,0 +170760502033,220,0 +170760502082,221,0 +170760502130,221,0 +170760502179,222,0 +170760502227,221,0 +170760502275,221,0 +170760502325,222,0 +170760502373,216,0 +170760502421,216,0 +170760502469,217,0 +170760502518,217,0 +170760502568,218,0 +170760502616,218,0 +170760502665,219,0 +170760502713,220,0 +170760502763,220,0 +170760502810,221,0 +170760502858,220,0 +170760502906,221,0 +170760502954,221,0 +170760503002,221,0 +170760503050,221,0 +170760503098,222,0 +170760503146,221,0 +170760503193,221,0 +170760503241,218,0 +170760503289,218,0 +170760503337,219,0 +170760503386,220,0 +170760503434,221,0 +170760503482,221,0 +170760503532,221,0 +170760503580,220,0 +170760503627,220,0 +170760503675,221,0 +170760503723,222,0 +170760503773,222,0 +170760503820,222,0 +170760503868,222,0 +170760503916,222,0 +170760503964,222,0 +170760504012,222,0 +170760504060,220,0 +170760504107,218,0 +170760504155,220,0 +170760504203,219,0 +170760504251,220,0 +170760504299,220,0 +170760504347,220,0 +170760504395,221,0 +170760504442,221,0 +170760504492,222,0 +170760504541,221,0 +170760504591,223,0 +170760504640,223,0 +170760504688,222,0 +170760504736,223,0 +170760504786,222,0 +170760504833,222,0 +170760504883,222,0 +170760504931,220,0 +170760504979,216,0 +170760505026,216,0 +170760505076,216,0 +170760505124,217,0 +170760505173,218,0 +170760505223,219,0 +170760505272,219,0 +170760505321,219,0 +170760505369,220,0 +170760505417,222,0 +170760505465,220,0 +170760505513,221,0 +170760505561,221,0 +170760505609,221,0 +170760505658,221,0 +170760505707,222,0 +170760505755,221,0 +170760505803,216,0 +170760505851,215,0 +170760505899,217,0 +170760505947,216,0 +170760505994,217,0 +170760506044,218,0 +170760506092,218,0 +170760506141,218,0 +170760506189,219,0 +170760506237,220,0 +170760506285,220,0 +170760506334,220,0 +170760506382,221,0 +170760506430,221,0 +170760506477,221,0 +170760506525,222,0 +170760506573,221,0 +170760506621,221,0 +170760506670,216,0 +170760506720,216,0 +170760506768,216,0 +170760506816,217,0 +170760506863,218,0 +170760506911,218,0 +170760506959,218,0 +170760507007,219,0 +170760507055,219,0 +170760507102,219,0 +170760507150,220,0 +170760507198,221,0 +170760507246,221,0 +170760507294,222,0 +170760507344,221,0 +170760507393,221,0 +170760507441,221,0 +170760507489,219,0 +170760507537,216,0 +170760507587,217,0 +170760507634,218,0 +170760507682,218,0 +170760507730,220,0 +170760507780,220,0 +170760507829,221,0 +170760507879,221,0 +170760507927,221,0 +170760507975,222,0 +170760508023,222,0 +170760508071,221,0 +170760508120,222,0 +170760508168,222,0 +170760508218,222,0 +170760508266,222,0 +170760508315,221,0 +170760508365,216,0 +170760508413,217,0 +170760508462,218,0 +170760508511,218,0 +170760508559,218,0 +170760508609,219,0 +170760508658,220,0 +170760508708,221,0 +170760508757,222,0 +170760508805,221,0 +170760508853,222,0 +170760508901,222,0 +170760508951,222,0 +170760509000,222,0 +170760509048,221,0 +170760509096,221,0 +170760509144,221,0 +170760509192,216,0 +170760509241,216,0 +170760509289,217,0 +170760509339,217,0 +170760509388,218,0 +170760509436,218,0 +170760509484,218,0 +170760509532,219,0 +170760509580,220,0 +170760509628,220,0 +170760509676,221,0 +170760509724,221,0 +170760509772,221,0 +170760509820,221,0 +170760509868,221,0 +170760509916,221,0 +170760509963,221,0 +170760510011,217,0 +170760510059,215,0 +170760510107,216,0 +170760510155,216,0 +170760510203,217,0 +170760510251,218,0 +170760510299,218,0 +170760510347,218,0 +170760510395,219,0 +170760510442,220,0 +170760510490,220,0 +170760510538,221,0 +170760510586,222,0 +170760510634,222,0 +170760510682,221,0 +170760510730,222,0 +170760510777,222,0 +170760510825,221,0 +170760510873,216,0 +170760510921,216,0 +170760510969,217,0 +170760511018,217,0 +170760511066,218,0 +170760511114,218,0 +170760511161,219,0 +170760511209,219,0 +170760511259,220,0 +170760511308,220,0 +170760511358,221,0 +170760511406,221,0 +170760511454,221,0 +170760511502,221,0 +170760511551,222,0 +170760511599,222,0 +170760511647,222,0 +170760511697,217,0 +170760511744,216,0 +170760511792,217,0 +170760511840,218,0 +170760511888,218,0 +170760511936,219,0 +170760511984,219,0 +170760512032,219,0 +170760512080,221,0 +170760512129,222,0 +170760512177,223,0 +170760512227,222,0 +170760512275,222,0 +170760512323,222,0 +170760512371,222,0 +170760512420,220,0 +170760512470,221,0 +170760512519,221,0 +170760512567,217,0 +170760512615,216,0 +170760512663,217,0 +170760512711,217,0 +170760512760,217,0 +170760512810,219,0 +170760512857,219,0 +170760512905,221,0 +170760512955,221,0 +170760513003,220,0 +170760513051,221,0 +170760513099,221,0 +170760513146,221,0 +170760513194,221,0 +170760513242,221,0 +170760513290,221,0 +170760513338,221,0 +170760513386,216,0 +170760513435,215,0 +170760513483,215,0 +170760513533,217,0 +170760513581,216,0 +170760513630,217,0 +170760513680,218,0 +170760513729,219,0 +170760513777,219,0 +170760513825,219,0 +170760513873,220,0 +170760513921,220,0 +170760513970,221,0 +170760514018,222,0 +170760514066,221,0 +170760514114,222,0 +170760514164,220,0 +170760514213,215,0 +170760514263,214,0 +170760514311,215,0 +170760514360,216,0 +170760514410,216,0 +170760514458,217,0 +170760514506,217,0 +170760514555,217,0 +170760514603,218,0 +170760514651,219,0 +170760514700,219,0 +170760514748,220,0 +170760514798,220,0 +170760514847,221,0 +170760514895,221,0 +170760514943,220,0 +170760514993,221,0 +170760515042,216,0 +170760515090,214,0 +170760515138,215,0 +170760515188,216,0 +170760515236,216,0 +170760515284,216,0 +170760515333,217,0 +170760515381,217,0 +170760515431,219,0 +170760515478,219,0 +170760515526,220,0 +170760515574,220,0 +170760515622,220,0 +170760515670,220,0 +170760515718,221,0 +170760515767,222,0 +170760515815,221,0 +170760515863,221,0 +170760515911,215,0 +170760515961,215,0 +170760516009,215,0 +170760516057,216,0 +170760516106,216,0 +170760516154,217,0 +170760516202,218,0 +170760516250,219,0 +170760516299,219,0 +170760516349,219,0 +170760516398,220,0 +170760516446,220,0 +170760516494,220,0 +170760516542,221,0 +170760516590,220,0 +170760516638,221,0 +170760516686,221,0 +170760516733,216,0 +170760516781,216,0 +170760516829,215,0 +170760516879,216,0 +170760516927,217,0 +170760516975,217,0 +170760517024,218,0 +170760517072,219,0 +170760517120,219,0 +170760517168,220,0 +170760517218,220,0 +170760517267,221,0 +170760517315,220,0 +170760517363,220,0 +170760517413,221,0 +170760517461,221,0 +170760517508,220,0 +170760517558,220,0 +170760517606,216,0 +170760517654,217,0 +170760517702,218,0 +170760517750,218,0 +170760517798,219,0 +170760517846,219,0 +170760517895,220,0 +170760517943,220,0 +170760517991,220,0 +170760518039,222,0 +170760518088,222,0 +170760518138,221,0 +170760518186,221,0 +170760518234,221,0 +170760518282,220,0 +170760518330,221,0 +170760518377,221,0 +170760518425,216,0 +170760518473,218,0 +170760518523,218,0 +170760518571,218,0 +170760518619,218,0 +170760518667,219,0 +170760518714,220,0 +170760518762,220,0 +170760518810,220,0 +170760518860,220,0 +170760518908,221,0 +170760518956,221,0 +170760519003,222,0 +170760519053,222,0 +170760519101,222,0 +170760519149,222,0 +170760519196,221,0 +170760519244,217,0 +170760519294,216,0 +170760519342,216,0 +170760519389,217,0 +170760519437,217,0 +170760519485,218,0 +170760519533,218,0 +170760519581,218,0 +170760519629,219,0 +170760519676,219,0 +170760519724,220,0 +170760519772,220,0 +170760519820,220,0 +170760519868,222,0 +170760519916,221,0 +170760519964,222,0 +170760520012,221,0 +170760520059,223,0 +170760520109,216,0 +170760520159,216,0 +170760520207,217,0 +170760520256,217,0 +170760520306,218,0 +170760520353,218,0 +170760520403,218,0 +170760520451,219,0 +170760520500,219,0 +170760520550,219,0 +170760520600,220,0 +170760520647,221,0 +170760520697,220,0 +170760520745,221,0 +170760520793,221,0 +170760520841,222,0 +170760520889,221,0 +170760520938,216,0 +170760520986,216,0 +170760521035,217,0 +170760521085,217,0 +170760521134,218,0 +170760521182,219,0 +170760521230,219,0 +170760521278,220,0 +170760521328,220,0 +170760521376,220,0 +170760521425,221,0 +170760521473,221,0 +170760521521,222,0 +170760521570,222,0 +170760521618,221,0 +170760521666,222,0 +170760521714,221,0 +170760521762,219,0 +170760521810,218,0 +170760521858,219,0 +170760521906,219,0 +170760521954,220,0 +170760522002,221,0 +170760522050,221,0 +170760522097,221,0 +170760522145,222,0 +170760522193,222,0 +170760522241,223,0 +170760522289,223,0 +170760522337,222,0 +170760522385,222,0 +170760522433,223,0 +170760522481,222,0 +170760522529,221,0 +170760522577,220,0 +170760522625,221,0 +170760522673,220,0 +170760522721,221,0 +170760522769,219,0 +170760522817,221,0 +170760522864,221,0 +170760522912,221,0 +170760522960,221,0 +170760523010,222,0 +170760523059,222,0 +170760523107,222,0 +170760523155,223,0 +170760523203,222,0 +170760523253,221,0 +170760523301,221,0 +170760523350,222,0 +170760523398,221,0 +170760523446,219,0 +170760523494,219,0 +170760523541,220,0 +170760523591,220,0 +170760523639,221,0 +170760523686,222,0 +170760523734,221,0 +170760523782,221,0 +170760523830,223,0 +170760523878,222,0 +170760523926,222,0 +170760523973,223,0 +170760524021,222,0 +170760524069,222,0 +170760524117,222,0 +170760524165,222,0 +170760524213,221,0 +170760524261,218,0 +170760524310,218,0 +170760524358,219,0 +170760524406,218,0 +170760524456,220,0 +170760524505,221,0 +170760524553,220,0 +170760524601,222,0 +170760524649,221,0 +170760524697,222,0 +170760524745,222,0 +170760524794,223,0 +170760524844,223,0 +170760524893,223,0 +170760524941,222,0 +170760524989,222,0 +170760525037,220,0 +170760525085,217,0 +170760525133,216,0 +170760525180,217,0 +170760525230,218,0 +170760525278,218,0 +170760525327,219,0 +170760525375,219,0 +170760525423,219,0 +170760525471,220,0 +170760525519,221,0 +170760525567,221,0 +170760525614,221,0 +170760525662,222,0 +170760525710,222,0 +170760525760,222,0 +170760525808,222,0 +170760525857,222,0 +170760525907,221,0 +170760525955,216,0 +170760526003,216,0 +170760526051,216,0 +170760526098,218,0 +170760526146,218,0 +170760526194,219,0 +170760526242,219,0 +170760526290,219,0 +170760526339,220,0 +170760526387,221,0 +170760526435,220,0 +170760526483,222,0 +170760526533,223,0 +170760526582,222,0 +170760526632,223,0 +170760526681,221,0 +170760526729,221,0 +170760526777,216,0 +170760526825,215,0 +170760526873,215,0 +170760526921,216,0 +170760526971,217,0 +170760527018,217,0 +170760527068,218,0 +170760527117,219,0 +170760527165,219,0 +170760527213,220,0 +170760527261,220,0 +170760527309,222,0 +170760527357,221,0 +170760527405,222,0 +170760527453,221,0 +170760527501,221,0 +170760527548,221,0 +170760527596,220,0 +170760527644,214,0 +170760527692,215,0 +170760527740,215,0 +170760527788,216,0 +170760527836,216,0 +170760527884,217,0 +170760527932,217,0 +170760527981,218,0 +170760528029,218,0 +170760528079,219,0 +170760528127,221,0 +170760528175,220,0 +170760528224,221,0 +170760528272,222,0 +170760528320,221,0 +170760528368,221,0 +170760528416,220,0 +170760528463,215,0 +170760528511,214,0 +170760528559,215,0 +170760528607,215,0 +170760528657,216,0 +170760528706,216,0 +170760528754,217,0 +170760528804,217,0 +170760528852,218,0 +170760528901,218,0 +170760528951,219,0 +170760528998,219,0 +170760529046,219,0 +170760529094,220,0 +170760529142,220,0 +170760529190,220,0 +170760529238,220,0 +170760529288,215,0 +170760529335,214,0 +170760529383,214,0 +170760529431,215,0 +170760529479,215,0 +170760529527,215,0 +170760529575,216,0 +170760529625,216,0 +170760529674,217,0 +170760529722,217,0 +170760529770,218,0 +170760529818,218,0 +170760529866,218,0 +170760529916,219,0 +170760529964,219,0 +170760530013,221,0 +170760530063,220,0 +170760530111,216,0 +170760530159,214,0 +170760530207,214,0 +170760530255,215,0 +170760530304,215,0 +170760530352,216,0 +170760530401,216,0 +170760530449,217,0 +170760530497,217,0 +170760530545,218,0 +170760530593,219,0 +170760530641,219,0 +170760530689,219,0 +170760530737,220,0 +170760530785,220,0 +170760530834,221,0 +170760530884,221,0 +170760530933,220,0 +170760530981,215,0 +170760531031,216,0 +170760531079,216,0 +170760531127,217,0 +170760531175,218,0 +170760531223,218,0 +170760531271,219,0 +170760531320,219,0 +170760531368,219,0 +170760531416,220,0 +170760531464,220,0 +170760531512,221,0 +170760531561,221,0 +170760531609,221,0 +170760531659,221,0 +170760531707,221,0 +170760531755,220,0 +170760531802,217,0 +170760531850,217,0 +170760531898,218,0 +170760531946,217,0 +170760531994,218,0 +170760532042,219,0 +170760532090,219,0 +170760532138,220,0 +170760532188,221,0 +170760532236,221,0 +170760532284,221,0 +170760532331,221,0 +170760532381,221,0 +170760532429,220,0 +170760532478,222,0 +170760532526,222,0 +170760532576,221,0 +170760532624,217,0 +170760532673,218,0 +170760532723,219,0 +170760532771,218,0 +170760532819,219,0 +170760532867,220,0 +170760532915,220,0 +170760532962,220,0 +170760533010,220,0 +170760533060,220,0 +170760533109,221,0 +170760533157,222,0 +170760533207,222,0 +170760533255,221,0 +170760533303,222,0 +170760533351,222,0 +170760533399,218,0 +170760533447,219,0 +170760533494,216,0 +170760533544,217,0 +170760533593,217,0 +170760533641,218,0 +170760533689,218,0 +170760533739,219,0 +170760533788,219,0 +170760533838,220,0 +170760533887,221,0 +170760533935,221,0 +170760533985,220,0 +170760534032,222,0 +170760534082,222,0 +170760534131,222,0 +170760534181,221,0 +170760534229,221,0 +170760534277,221,0 +170760534324,216,0 +170760534372,217,0 +170760534422,218,0 +170760534470,219,0 +170760534518,219,0 +170760534567,220,0 +170760534615,221,0 +170760534663,221,0 +170760534711,221,0 +170760534760,221,0 +170760534808,221,0 +170760534856,222,0 +170760534906,222,0 +170760534953,222,0 +170760535001,221,0 +170760535049,221,0 +170760535097,221,0 +170760535145,218,0 +170760535194,218,0 +170760535242,219,0 +170760535290,219,0 +170760535338,220,0 +170760535385,220,0 +170760535433,219,0 +170760535481,221,0 +170760535529,222,0 +170760535577,221,0 +170760535625,222,0 +170760535673,222,0 +170760535721,222,0 +170760535769,222,0 +170760535816,222,0 +170760535864,225,0 +170760535912,221,0 +170760535960,218,0 +170760536008,219,0 +170760536056,219,0 +170760536106,220,0 +170760536153,220,0 +170760536201,221,0 +170760536249,222,0 +170760536297,221,0 +170760536345,223,0 +170760536393,222,0 +170760536441,222,0 +170760536489,223,0 +170760536537,223,0 +170760536584,223,0 +170760536634,222,0 +170760536682,222,0 +170760536731,221,0 +170760536779,220,0 +170760536827,215,0 +170760536875,216,0 +170760536923,217,0 +170760536971,217,0 +170760537019,218,0 +170760537067,218,0 +170760537115,218,0 +170760537164,219,0 +170760537214,220,0 +170760537262,220,0 +170760537311,220,0 +170760537359,221,0 +170760537407,221,0 +170760537456,221,0 +170760537504,221,0 +170760537552,222,0 +170760537602,221,0 +170760537650,216,0 +170760537698,215,0 +170760537745,216,0 +170760537793,217,0 +170760537841,217,0 +170760537891,217,0 +170760537939,218,0 +170760537987,219,0 +170760538035,219,0 +170760538084,219,0 +170760538134,221,0 +170760538181,221,0 +170760538229,221,0 +170760538277,222,0 +170760538325,222,0 +170760538373,221,0 +170760538423,221,0 +170760538470,216,0 +170760538518,216,0 +170760538566,217,0 +170760538614,218,0 +170760538662,218,0 +170760538712,218,0 +170760538759,218,0 +170760538809,220,0 +170760538857,219,0 +170760538906,220,0 +170760538955,221,0 +170760539003,222,0 +170760539050,222,0 +170760539098,222,0 +170760539146,222,0 +170760539196,222,0 +170760539244,222,0 +170760539292,221,0 +170760539339,218,0 +170760539389,217,0 +170760539437,218,0 +170760539485,218,0 +170760539533,219,0 +170760539580,219,0 +170760539630,220,0 +170760539679,221,0 +170760539727,222,0 +170760539775,221,0 +170760539823,222,0 +170760539871,222,0 +170760539919,222,0 +170760539967,222,0 +170760540015,219,0 +170760540063,221,0 +170760540111,221,0 +170760540160,217,0 +170760540210,217,0 +170760540258,218,0 +170760540306,218,0 +170760540354,219,0 +170760540402,218,0 +170760540450,219,0 +170760540499,220,0 +170760540547,220,0 +170760540595,221,0 +170760540644,221,0 +170760540694,223,0 +170760540742,221,0 +170760540790,221,0 +170760540838,222,0 +170760540886,221,0 +170760540933,221,0 +170760540983,216,0 +170760541032,216,0 +170760541082,216,0 +170760541130,217,0 +170760541178,217,0 +170760541226,218,0 +170760541275,218,0 +170760541325,220,0 +170760541373,220,0 +170760541422,221,0 +170760541472,220,0 +170760541521,221,0 +170760541569,221,0 +170760541617,221,0 +170760541665,222,0 +170760541713,222,0 +170760541761,222,0 +170760541809,217,0 +170760541857,215,0 +170760541906,216,0 +170760541954,217,0 +170760542002,217,0 +170760542052,217,0 +170760542101,218,0 +170760542150,219,0 +170760542198,219,0 +170760542246,219,0 +170760542296,220,0 +170760542345,220,0 +170760542393,221,0 +170760542441,221,0 +170760542489,220,0 +170760542537,220,0 +170760542585,221,0 +170760542634,219,0 +170760542682,215,0 +170760542732,215,0 +170760542779,216,0 +170760542827,217,0 +170760542875,217,0 +170760542923,218,0 +170760542971,218,0 +170760543019,218,0 +170760543067,219,0 +170760543115,219,0 +170760543163,220,0 +170760543211,220,0 +170760543260,220,0 +170760543310,221,0 +170760543358,220,0 +170760543406,220,0 +170760543454,221,0 +170760543502,215,0 +170760543551,215,0 +170760543599,215,0 +170760543648,215,0 +170760543696,216,0 +170760543744,216,0 +170760543792,217,0 +170760543840,218,0 +170760543888,218,0 +170760543936,218,0 +170760543984,219,0 +170760544032,220,0 +170760544079,219,0 +170760544127,220,0 +170760544175,220,0 +170760544225,223,0 +170760544273,221,0 +170760544320,215,0 +170760544370,215,0 +170760544418,216,0 +170760544466,216,0 +170760544515,217,0 +170760544563,217,0 +170760544613,218,0 +170760544660,218,0 +170760544708,219,0 +170760544756,219,0 +170760544804,220,0 +170760544852,221,0 +170760544902,222,0 +170760544949,221,0 +170760544997,221,0 +170760545045,221,0 +170760545095,221,0 +170760545144,220,0 +170760545192,218,0 +170760545240,218,0 +170760545288,219,0 +170760545335,219,0 +170760545383,219,0 +170760545433,220,0 +170760545482,220,0 +170760545530,221,0 +170760545578,221,0 +170760545627,220,0 +170760545675,221,0 +170760545723,222,0 +170760545771,222,0 +170760545819,222,0 +170760545867,221,0 +170760545915,221,0 +170760545964,220,0 +170760546012,218,0 +170760546062,218,0 +170760546110,219,0 +170760546159,219,0 +170760546207,221,0 +170760546257,220,0 +170760546306,220,0 +170760546354,221,0 +170760546404,221,0 +170760546452,222,0 +170760546501,229,0 +170760546551,223,0 +170760546599,222,0 +170760546646,221,0 +170760546694,221,0 +170760546742,221,0 +170760546792,221,0 +170760546840,216,0 +170760546889,216,0 +170760546937,216,0 +170760546985,217,0 +170760547033,218,0 +170760547081,218,0 +170760547130,219,0 +170760547178,219,0 +170760547228,219,0 +170760547277,219,0 +170760547325,220,0 +170760547373,221,0 +170760547421,220,0 +170760547469,221,0 +170760547518,221,0 +170760547566,221,0 +170760547616,221,0 +170760547664,216,0 +170760547711,215,0 +170760547759,215,0 +170760547807,216,0 +170760547855,217,0 +170760547903,217,0 +170760547950,219,0 +170760547998,218,0 +170760548046,219,0 +170760548094,220,0 +170760548142,220,0 +170760548189,220,0 +170760548237,220,0 +170760548285,220,0 +170760548335,221,0 +170760548382,218,0 +170760548430,221,0 +170760548478,221,0 +170760548527,216,0 +170760548575,216,0 +170760548623,216,0 +170760548671,217,0 +170760548719,217,0 +170760548766,218,0 +170760548814,219,0 +170760548862,218,0 +170760548910,219,0 +170760548959,219,0 +170760549007,219,0 +170760549055,219,0 +170760549105,219,0 +170760549152,219,0 +170760549200,219,0 +170760549250,219,0 +170760549298,219,0 +170760549345,219,0 +170760549393,219,0 +170760549441,219,0 +170760549491,219,0 +170760549539,219,0 +170760549588,219,0 +170760549636,219,0 +170760549686,219,0 +170760549733,219,0 +170760549781,219,0 +170760549829,219,0 +170760549877,219,0 +170760549925,219,0 +170760549973,219,0 +170760550021,219,0 +170760550069,219,0 +170760550117,219,0 +170760550165,219,0 +170760550213,219,0 +170760550260,219,0 +170760550308,219,0 +170760550356,219,0 +170760550404,219,0 +170760550452,219,0 +170760550500,219,0 +170760550549,219,0 +170760550599,219,0 +170760550647,219,0 +170760550694,219,0 +170760550742,219,0 +170760550790,219,0 +170760550838,219,0 +170760550886,219,0 +170760550934,219,0 +170760550982,219,0 +170760551030,219,0 +170760551078,218,0 +170760551126,219,0 +170760551175,219,0 +170760551223,218,0 +170760551271,219,0 +170760551319,219,0 +170760551367,219,0 +170760551415,219,0 +170760551463,219,0 +170760551510,219,0 +170760551558,219,0 +170760551606,219,0 +170760551654,219,0 +170760551702,219,0 +170760551750,219,0 +170760551798,219,0 +170760551847,219,0 +170760551895,219,0 +170760551943,219,0 +170760551991,219,0 +170760552040,219,0 +170760552088,219,0 +170760552138,219,0 +170760552186,219,0 +170760552234,219,0 +170760552281,219,0 +170760552329,219,0 +170760552377,219,0 +170760552425,218,0 +170760552473,219,0 +170760552521,219,0 +170760552569,219,0 +170760552617,219,0 +170760552664,219,0 +170760552712,219,0 +170760552760,219,0 +170760552808,219,0 +170760552856,218,0 +170760552905,219,0 +170760552953,219,0 +170760553001,219,0 +170760553049,219,0 +170760553097,219,0 +170760553145,219,0 +170760553195,219,0 +170760553244,219,0 +170760553292,219,0 +170760553340,218,0 +170760553389,219,0 +170760553437,219,0 +170760553485,219,0 +170760553533,219,0 +170760553583,219,0 +170760553630,219,0 +170760553680,219,0 +170760553728,219,0 +170760553776,219,0 +170760553824,219,0 +170760553871,219,0 +170760553921,218,0 +170760553969,219,0 +170760554017,219,0 +170760554066,219,0 +170760554114,219,0 +170760554162,219,0 +170760554210,219,0 +170760554258,219,0 +170760554306,219,0 +170760554353,219,0 +170760554401,219,0 +170760554449,219,0 +170760554497,219,0 +170760554545,219,0 +170760554593,219,0 +170760554641,219,0 +170760554690,219,0 +170760554738,219,0 +170760554786,219,0 +170760554835,219,0 +170760554885,219,0 +170760554934,219,0 +170760554984,219,0 +170760555032,219,0 +170760555080,219,0 +170760555127,218,0 +170760555175,219,0 +170760555223,219,0 +170760555271,219,0 +170760555319,219,0 +170760555367,219,0 +170760555415,219,0 +170760555463,219,0 +170760555512,219,0 +170760555560,219,0 +170760555608,219,0 +170760555656,219,0 +170760555705,219,0 +170760555755,219,0 +170760555804,219,0 +170760555852,219,0 +170760555900,219,0 +170760555948,219,0 +170760555996,219,0 +170760556044,219,0 +170760556091,219,0 +170760556139,219,0 +170760556187,219,0 +170760556235,219,0 +170760556283,219,0 +170760556331,219,0 +170760556379,219,0 +170760556428,219,0 +170760556478,219,0 +170760556527,219,0 +170760556575,219,0 +170760556623,219,0 +170760556671,219,0 +170760556719,219,0 +170760556767,219,0 +170760556815,219,0 +170760556862,219,0 +170760556912,219,0 +170760556960,219,0 +170760557008,219,0 +170760557056,219,0 +170760557103,219,0 +170760557151,219,0 +170760557199,219,0 +170760557247,219,0 +170760557295,219,0 +170760557343,219,0 +170760557391,219,0 +170760557438,219,0 +170760557486,219,0 +170760557534,219,0 +170760557584,219,0 +170760557632,219,0 +170760557680,219,0 +170760557727,219,0 +170760557777,219,0 +170760557825,219,0 +170760557873,219,0 +170760557921,219,0 +170760557968,219,0 +170760558016,219,0 +170760558064,219,0 +170760558112,219,0 +170760558162,219,0 +170760558209,219,0 +170760558257,219,0 +170760558305,219,0 +170760558353,219,0 +170760558401,219,0 +170760558449,219,0 +170760558498,219,0 +170760558546,219,0 +170760558594,219,0 +170760558642,219,0 +170760558690,219,0 +170760558737,219,0 +170760558785,219,0 +170760558833,219,0 +170760558881,219,0 +170760558929,219,0 +170760558977,219,0 +170760559026,219,0 +170760559074,219,0 +170760559122,219,0 +170760559170,219,0 +170760559220,219,0 +170760559269,219,0 +170760559319,219,0 +170760559367,219,0 +170760559415,219,0 +170760559464,219,0 +170760559512,219,0 +170760559560,219,0 +170760559610,219,0 +170760559657,219,0 +170760559707,219,0 +170760559755,219,0 +170760559803,219,0 +170760559851,219,0 +170760559899,219,0 +170760559947,219,0 +170760559995,219,0 +170760560043,219,0 +170760560092,219,0 +170760560142,219,0 +170760560189,219,0 +170760560237,219,0 +170760560285,219,0 +170760560333,219,0 +170760560381,219,0 +170760560430,219,0 +170760560478,219,0 +170760560526,219,0 +170760560574,219,0 +170760560622,219,0 +170760560670,219,0 +170760560718,219,0 +170760560766,219,0 +170760560813,219,0 +170760560861,219,0 +170760560909,219,0 +170760560957,219,0 +170760561005,219,0 +170760561052,219,0 +170760561100,219,0 +170760561148,219,0 +170760561198,219,0 +170760561245,219,0 +170760561293,219,0 +170760561341,219,0 +170760561389,219,0 +170760561437,219,0 +170760561485,219,0 +170760561532,219,0 +170760561580,219,0 +170760561628,219,0 +170760561676,219,0 +170760561724,219,0 +170760561772,219,0 +170760561821,219,0 +170760561869,219,0 +170760561918,219,0 +170760561968,219,0 +170760562016,219,0 +170760562064,219,0 +170760562112,219,0 +170760562160,219,0 +170760562208,219,0 +170760562255,219,0 +170760562303,219,0 +170760562351,219,0 +170760562401,219,0 +170760562449,219,0 +170760562498,219,0 +170760562548,219,0 +170760562597,219,0 +170760562645,219,0 +170760562693,219,0 +170760562743,219,0 +170760562791,219,0 +170760562840,219,0 +170760562888,219,0 +170760562937,219,0 +170760562985,219,0 +170760563035,219,0 +170760563083,219,0 +170760563131,219,0 +170760563179,220,0 +170760563228,219,0 +170760563278,219,0 +170760563327,219,0 +170760563375,219,0 +170760563425,219,0 +170760563473,219,0 +170760563521,219,0 +170760563570,219,0 +170760563620,219,0 +170760563669,219,0 +170760563717,219,0 +170760563765,219,0 +170760563813,219,0 +170760563861,219,0 +170760563910,219,0 +170760563959,219,0 +170760564007,219,0 +170760564055,219,0 +170760564104,219,0 +170760564152,219,0 +170760564200,219,0 +170760564248,219,0 +170760564297,219,0 +170760564345,219,0 +170760564393,219,0 +170760564441,219,0 +170760564490,219,0 +170760564540,219,0 +170760564588,219,0 +170760564637,219,0 +170760564685,219,0 +170760564735,219,0 +170760564782,219,0 +170760564832,219,0 +170760564880,219,0 +170760564928,219,0 +170760564976,219,0 +170760565024,219,0 +170760565072,219,0 +170760565120,219,0 +170760565167,219,0 +170760565215,219,0 +170760565263,219,0 +170760565311,219,0 +170760565359,219,0 +170760565407,219,0 +170760565455,219,0 +170760565503,219,0 +170760565551,219,0 +170760565599,219,0 +170760565646,219,0 +170760565694,219,0 +170760565742,219,0 +170760565790,219,0 +170760565838,219,0 +170760565886,219,0 +170760565933,219,0 +170760565981,219,0 +170760566029,219,0 +170760566077,219,0 +170760566125,219,0 +170760566173,219,0 +170760566221,219,0 +170760566270,219,0 +170760566318,219,0 +170760566366,219,0 +170760566413,219,0 +170760566463,219,0 +170760566511,219,0 +170760566559,219,0 +170760566607,219,0 +170760566655,219,0 +170760566703,219,0 +170760566751,219,0 +170760566799,219,0 +170760566846,219,0 +170760566894,220,0 +170760566942,220,0 +170760566990,220,0 +170760567038,219,0 +170760567086,220,0 +170760567134,219,0 +170760567181,219,0 +170760567229,219,0 +170760567277,219,0 +170760567325,219,0 +170760567373,219,0 +170760567421,219,0 +170760567469,219,0 +170760567516,219,0 +170760567564,219,0 +170760567612,219,0 +170760567660,219,0 +170760567708,219,0 +170760567756,219,0 +170760567804,219,0 +170760567851,219,0 +170760567899,219,0 +170760567947,219,0 +170760567995,219,0 +170760568044,219,0 +170760568092,219,0 +170760568140,219,0 +170760568188,219,0 +170760568236,219,0 +170760568283,219,0 +170760568331,220,0 +170760568381,219,0 +170760568428,219,0 +170760568476,219,0 +170760568524,219,0 +170760568572,220,0 +170760568620,219,0 +170760568668,219,0 +170760568715,219,0 +170760568765,219,0 +170760568813,219,0 +170760568862,219,0 +170760568912,219,0 +170760568960,219,0 +170760569008,220,0 +170760569056,219,0 +170760569103,219,0 +170760569151,219,0 +170760569199,219,0 +170760569247,219,0 +170760569295,220,0 +170760569343,219,0 +170760569391,219,0 +170760569439,219,0 +170760569487,219,0 +170760569536,219,0 +170760569584,219,0 +170760569632,219,0 +170760569682,219,0 +170760569730,219,0 +170760569778,219,0 +170760569827,219,0 +170760569875,220,0 +170760569925,219,0 +170760569973,219,0 +170760570022,219,0 +170760570070,219,0 +170760570120,219,0 +170760570167,219,0 +170760570215,219,0 +170760570263,220,0 +170760570311,219,0 +170760570359,219,0 +170760570407,219,0 +170760570455,219,0 +170760570503,219,0 +170760570550,219,0 +170760570598,219,0 +170760570646,219,0 +170760570694,219,0 +170760570742,219,0 +170760570790,219,0 +170760570837,219,0 +170760570885,219,0 +170760570933,219,0 +170760570981,219,0 +170760571029,219,0 +170760571076,219,0 +170760571124,219,0 +170760571172,219,0 +170760571220,219,0 +170760571268,219,0 +170760571316,219,0 +170760571364,219,0 +170760571412,219,0 +170760571459,219,0 +170760571507,219,0 +170760571555,219,0 +170760571603,219,0 +170760571653,219,0 +170760571701,219,0 +170760571750,219,0 +170760571800,219,0 +170760571848,219,0 +170760571897,219,0 +170760571945,219,0 +170760571995,219,0 +170760572044,219,0 +170760572094,219,0 +170760572143,219,0 +170760572191,219,0 +170760572240,219,0 +170760572288,219,0 +170760572338,219,0 +170760572387,219,0 +170760572437,220,0 +170760572485,219,0 +170760572534,219,0 +170760572584,219,0 +170760572633,219,0 +170760572681,219,0 +170760572729,219,0 +170760572777,219,0 +170760572825,219,0 +170760572875,219,0 +170760572922,219,0 +170760572972,219,0 +170760573020,219,0 +170760573069,219,0 +170760573117,219,0 +170760573167,219,0 +170760573216,219,0 +170760573264,219,0 +170760573312,219,0 +170760573362,219,0 +170760573410,219,0 +170760573458,219,0 +170760573507,219,0 +170760573555,219,0 +170760573603,219,0 +170760573653,219,0 +170760573700,220,0 +170760573748,219,0 +170760573798,219,0 +170760573846,219,0 +170760573894,219,0 +170760573942,219,0 +170760573989,219,0 +170760574039,220,0 +170760574087,219,0 +170760574135,219,0 +170760574184,219,0 +170760574234,219,0 +170760574282,219,0 +170760574330,219,0 +170760574379,219,0 +170760574429,219,0 +170760574477,219,0 +170760574526,219,0 +170760574574,219,0 +170760574622,219,0 +170760574670,219,0 +170760574718,219,0 +170760574766,219,0 +170760574815,219,0 +170760574865,219,0 +170760574913,219,0 +170760574960,219,0 +170760575010,219,0 +170760575059,219,0 +170760575107,219,0 +170760575155,219,0 +170760575203,219,0 +170760575251,219,0 +170760575301,219,0 +170760575349,219,0 +170760575397,219,0 +170760575444,219,0 +170760575494,219,0 +170760575542,219,0 +170760575590,219,0 +170760575638,219,0 +170760575686,219,0 +170760575734,219,0 +170760575782,219,0 +170760575830,219,0 +170760575878,219,0 +170760575926,219,0 +170760575975,219,0 +170760576023,219,0 +170760576071,219,0 +170760576120,219,0 +170760576168,219,0 +170760576216,219,0 +170760576264,219,0 +170760576312,219,0 +170760576360,219,0 +170760576409,219,0 +170760576457,219,0 +170760576505,219,0 +170760576553,219,0 +170760576603,219,0 +170760576651,219,0 +170760576700,219,0 +170760576748,219,0 +170760576796,219,0 +170760576844,219,0 +170760576892,219,0 +170760576940,219,0 +170760576988,219,0 +170760577036,219,0 +170760577084,219,0 +170760577133,219,0 +170760577181,219,0 +170760577231,219,0 +170760577278,219,0 +170760577326,219,0 +170760577376,219,0 +170760577425,219,0 +170760577473,219,0 +170760577521,219,0 +170760577569,219,0 +170760577617,219,0 +170760577665,219,0 +170760577713,219,0 +170760577761,220,0 +170760577809,219,0 +170760577858,220,0 +170760577908,219,0 +170760577956,219,0 +170760578004,219,0 +170760578052,219,0 +170760578100,219,0 +170760578149,219,0 +170760578198,219,0 +170760578246,219,0 +170760578294,219,0 +170760578344,219,0 +170760578392,220,0 +170760578440,219,0 +170760578489,220,0 +170760578537,219,0 +170760578585,219,0 +170760578633,219,0 +170760578682,219,0 +170760578732,219,0 +170760578780,219,0 +170760578828,219,0 +170760578877,220,0 +170760578927,219,0 +170760578976,219,0 +170760579026,219,0 +170760579073,219,0 +170760579123,219,0 +170760579173,219,0 +170760579220,219,0 +170760579270,219,0 +170760579319,219,0 +170760579367,219,0 +170760579415,220,0 +170760579463,219,0 +170760579511,220,0 +170760579559,220,0 +170760579607,220,0 +170760579655,219,0 +170760579703,219,0 +170760579751,219,0 +170760579799,219,0 +170760579847,219,0 +170760579895,219,0 +170760579943,219,0 +170760579991,220,0 +170760580039,219,0 +170760580088,219,0 +170760580136,219,0 +170760580184,219,0 +170760580233,219,0 +170760580281,219,0 +170760580329,220,0 +170760580379,219,0 +170760580427,219,0 +170760580475,219,0 +170760580523,220,0 +170760580571,219,0 +170760580618,219,0 +170760580666,219,0 +170760580714,219,0 +170760580762,220,0 +170760580810,219,0 +170760580858,220,0 +170760580906,219,0 +170760580954,219,0 +170760581003,219,0 +170760581051,219,0 +170760581099,220,0 +170760581149,219,0 +170760581197,219,0 +170760581245,220,0 +170760581294,219,0 +170760581344,219,0 +170760581392,219,0 +170760581439,220,0 +170760581487,219,0 +170760581535,220,0 +170760581585,219,0 +170760581634,219,0 +170760581682,219,0 +170760581730,219,0 +170760581780,219,0 +170760581828,219,0 +170760581875,220,0 +170760581923,220,0 +170760581973,219,0 +170760582022,219,0 +170760582070,219,0 +170760582118,219,0 +170760582166,219,0 +170760582216,219,0 +170760582264,219,0 +170760582313,220,0 +170760582361,219,0 +170760582409,219,0 +170760582459,219,0 +170760582506,219,0 +170760582555,219,0 +170760582602,219,0 +170760582650,220,0 +170760582700,220,0 +170760582748,219,0 +170760582797,219,0 +170760582845,219,0 +170760582895,220,0 +170760582943,219,0 +170760582992,219,0 +170760583040,219,0 +170760583090,219,0 +170760583139,219,0 +170760583187,219,0 +170760583235,219,0 +170760583285,219,0 +170760583332,220,0 +170760583380,219,0 +170760583430,219,0 +170760583479,219,0 +170760583527,219,0 +170760583575,219,0 +170760583623,219,0 +170760583671,219,0 +170760583719,219,0 +170760583767,219,0 +170760583817,220,0 +170760583865,220,0 +170760583912,219,0 +170760583960,219,0 +170760584008,220,0 +170760584056,220,0 +170760584106,219,0 +170760584153,220,0 +170760584201,220,0 +170760584249,220,0 +170760584299,219,0 +170760584347,219,0 +170760584396,220,0 +170760584444,219,0 +170760584493,219,0 +170760584541,220,0 +170760584589,219,0 +170760584637,219,0 +170760584685,219,0 +170760584735,219,0 +170760584784,219,0 +170760584832,219,0 +170760584881,219,0 +170760584929,219,0 +170760584979,219,0 +170760585027,219,0 +170760585075,219,0 +170760585124,219,0 +170760585172,219,0 +170760585220,219,0 +170760585269,219,0 +170760585317,220,0 +170760585365,219,0 +170760585415,219,0 +170760585463,220,0 +170760585510,219,0 +170760585558,220,0 +170760585606,219,0 +170760585656,220,0 +170760585704,219,0 +170760585751,220,0 +170760585799,219,0 +170760585849,220,0 +170760585896,220,0 +170760585944,219,0 +170760585992,219,0 +170760586040,220,0 +170760586088,219,0 +170760586135,220,0 +170760586183,219,0 +170760586231,220,0 +170760586279,219,0 +170760586326,220,0 +170760586374,219,0 +170760586422,219,0 +170760586470,219,0 +170760586518,220,0 +170760586565,219,0 +170760586613,219,0 +170760586661,219,0 +170760586709,219,0 +170760586757,219,0 +170760586805,219,0 +170760586854,219,0 +170760586902,219,0 +170760586950,220,0 +170760586998,219,0 +170760587046,219,0 +170760587093,219,0 +170760587141,220,0 +170760587191,220,0 +170760587239,220,0 +170760587288,220,0 +170760587336,219,0 +170760587385,219,0 +170760587433,220,0 +170760587483,219,0 +170760587530,219,0 +170760587578,219,0 +170760587626,220,0 +170760587674,220,0 +170760587722,219,0 +170760587769,219,0 +170760587817,220,0 +170760587865,219,0 +170760587913,220,0 +170760587961,220,0 +170760588009,220,0 +170760588057,219,0 +170760588105,220,0 +170760588152,219,0 +170760588200,220,0 +170760588248,220,0 +170760588296,219,0 +170760588344,220,0 +170760588392,220,0 +170760588439,219,0 +170760588487,220,0 +170760588535,220,0 +170760588583,220,0 +170760588631,219,0 +170760588679,219,0 +170760588727,219,0 +170760588775,220,0 +170760588822,219,0 +170760588870,220,0 +170760588918,219,0 +170760588966,220,0 +170760589014,219,0 +170760589062,220,0 +170760589110,220,0 +170760589157,220,0 +170760589205,219,0 +170760589253,220,0 +170760589301,220,0 +170760589349,219,0 +170760589397,220,0 +170760589445,219,0 +170760589492,219,0 +170760589540,219,0 +170760589588,219,0 +170760589636,219,0 +170760589684,220,0 +170760589732,220,0 +170760589780,220,0 +170760589827,220,0 +170760589875,220,0 +170760589923,220,0 +170760589971,220,0 +170760590019,220,0 +170760590067,219,0 +170760590115,219,0 +170760590163,219,0 +170760590210,219,0 +170760590258,219,0 +170760590306,220,0 +170760590354,219,0 +170760590402,219,0 +170760590450,220,0 +170760590498,219,0 +170760590547,220,0 +170760590597,220,0 +170760590645,219,0 +170760590693,219,0 +170760590741,219,0 +170760590788,219,0 +170760590836,220,0 +170760590884,220,0 +170760590932,220,0 +170760590980,220,0 +170760591030,220,0 +170760591077,220,0 +170760591125,220,0 +170760591173,220,0 +170760591223,220,0 +170760591271,219,0 +170760591320,220,0 +170760591370,219,0 +170760591418,219,0 +170760591466,219,0 +170760591514,219,0 +170760591561,220,0 +170760591609,220,0 +170760591657,219,0 +170760591705,219,0 +170760591753,220,0 +170760591801,220,0 +170760591848,220,0 +170760591896,219,0 +170760591944,219,0 +170760591992,219,0 +170760592041,220,0 +170760592089,220,0 +170760592137,219,0 +170760592185,220,0 +170760592234,219,0 +170760592282,219,0 +170760592331,219,0 +170760592381,220,0 +170760592430,219,0 +170760592480,219,0 +170760592528,220,0 +170760592575,220,0 +170760592623,220,0 +170760592671,219,0 +170760592719,220,0 +170760592767,220,0 +170760592815,220,0 +170760592863,220,0 +170760592910,219,0 +170760592958,220,0 +170760593006,219,0 +170760593054,220,0 +170760593102,219,0 +170760593150,220,0 +170760593197,219,0 +170760593247,220,0 +170760593296,219,0 +170760593344,220,0 +170760593394,219,0 +170760593443,220,0 +170760593491,219,0 +170760593539,219,0 +170760593587,219,0 +170760593635,219,0 +170760593683,220,0 +170760593732,220,0 +170760593780,220,0 +170760593830,220,0 +170760593878,219,0 +170760593926,220,0 +170760593973,220,0 +170760594021,219,0 +170760594069,219,0 +170760594117,219,0 +170760594165,219,0 +170760594213,220,0 +170760594260,219,0 +170760594308,219,0 +170760594356,219,0 +170760594404,219,0 +170760594452,219,0 +170760594500,220,0 +170760594547,219,0 +170760594595,220,0 +170760594643,220,0 +170760594691,219,0 +170760594739,219,0 +170760594789,220,0 +170760594837,219,0 +170760594886,219,0 +170760594936,219,0 +170760594984,219,0 +170760595031,220,0 +170760595079,220,0 +170760595127,219,0 +170760595177,219,0 +170760595225,220,0 +170760595274,220,0 +170760595324,219,0 +170760595372,219,0 +170760595421,219,0 +170760595471,219,0 +170760595519,220,0 +170760595568,219,0 +170760595618,220,0 +170760595667,219,0 +170760595715,220,0 +170760595765,220,0 +170760595814,219,0 +170760595864,219,0 +170760595912,220,0 +170760595960,219,0 +170760596008,219,0 +170760596056,219,0 +170760596104,220,0 +170760596153,220,0 +170760596201,219,0 +170760596250,220,0 +170760596298,219,0 +170760596346,220,0 +170760596394,219,0 +170760596442,219,0 +170760596490,219,0 +170760596540,219,0 +170760596588,219,0 +170760596636,219,0 +170760596684,219,0 +170760596732,219,0 +170760596780,219,0 +170760596829,219,0 +170760596877,219,0 +170760596925,219,0 +170760596974,220,0 +170760597022,219,0 +170760597070,220,0 +170760597118,220,0 +170760597166,220,0 +170760597213,219,0 +170760597261,219,0 +170760597309,219,0 +170760597357,219,0 +170760597405,220,0 +170760597453,219,0 +170760597500,220,0 +170760597548,220,0 +170760597596,219,0 +170760597644,219,0 +170760597694,219,0 +170760597741,220,0 +170760597789,219,0 +170760597837,220,0 +170760597885,219,0 +170760597933,220,0 +170760597981,219,0 +170760598031,219,0 +170760598079,220,0 +170760598126,219,0 +170760598174,220,0 +170760598222,220,0 +170760598272,219,0 +170760598320,220,0 +170760598368,220,0 +170760598415,219,0 +170760598463,219,0 +170760598511,219,0 +170760598559,219,0 +170760598609,219,0 +170760598658,219,0 +170760598706,219,0 +170760598756,219,0 +170760598803,219,0 +170760598851,219,0 +170760598899,219,0 +170760598947,219,0 +170760598995,219,0 +170760599043,219,0 +170760599091,219,0 +170760599139,220,0 +170760599187,219,0 +170760599235,220,0 +170760599283,219,0 +170760599330,219,0 +170760599380,220,0 +170760599429,219,0 +170760599477,219,0 +170760599525,219,0 +170760599573,219,0 +170760599621,219,0 +170760599669,219,0 +170760599717,220,0 +170760599767,219,0 +170760599815,220,0 +170760599862,219,0 +170760599910,220,0 +170760599960,219,0 +170760600008,219,0 diff --git a/laser_value/0211-09.csv b/laser_value/0211-09.csv new file mode 100644 index 0000000..4f2b720 --- /dev/null +++ b/laser_value/0211-09.csv @@ -0,0 +1,7454 @@ +timestamp,laser_value,event +170760600056,219,0 +170760600106,219,0 +170760600153,219,0 +170760600201,219,0 +170760600249,219,0 +170760600297,219,0 +170760600345,219,0 +170760600393,219,0 +170760600441,219,0 +170760600489,219,0 +170760600537,219,0 +170760600585,220,0 +170760600632,219,0 +170760600680,219,0 +170760600728,219,0 +170760600776,219,0 +170760600824,220,0 +170760600872,219,0 +170760600920,219,0 +170760600967,220,0 +170760601015,219,0 +170760601065,219,0 +170760601112,220,0 +170760601160,219,0 +170760601208,219,0 +170760601256,219,0 +170760601304,219,0 +170760601352,219,0 +170760601400,220,0 +170760601448,219,0 +170760601496,220,0 +170760601543,220,0 +170760601591,219,0 +170760601641,219,0 +170760601689,219,0 +170760601737,220,0 +170760601785,219,0 +170760601834,219,0 +170760601883,220,0 +170760601931,220,0 +170760601979,220,0 +170760602027,220,0 +170760602075,219,0 +170760602123,219,0 +170760602170,219,0 +170760602218,219,0 +170760602266,219,0 +170760602314,219,0 +170760602362,219,0 +170760602410,219,0 +170760602458,219,0 +170760602506,220,0 +170760602553,219,0 +170760602603,219,0 +170760602651,220,0 +170760602700,219,0 +170760602750,219,0 +170760602798,220,0 +170760602846,219,0 +170760602894,220,0 +170760602941,219,0 +170760602989,219,0 +170760603037,219,0 +170760603085,220,0 +170760603133,220,0 +170760603181,219,0 +170760603231,219,0 +170760603280,219,0 +170760603328,219,0 +170760603376,219,0 +170760603424,219,0 +170760603471,219,0 +170760603519,220,0 +170760603567,219,0 +170760603615,219,0 +170760603663,220,0 +170760603711,219,0 +170760603758,219,0 +170760603806,219,0 +170760603854,220,0 +170760603902,219,0 +170760603950,219,0 +170760603998,219,0 +170760604045,220,0 +170760604093,219,0 +170760604141,219,0 +170760604189,219,0 +170760604237,219,0 +170760604284,219,0 +170760604332,219,0 +170760604380,220,0 +170760604428,219,0 +170760604477,219,0 +170760604525,220,0 +170760604573,219,0 +170760604621,219,0 +170760604669,219,0 +170760604717,220,0 +170760604764,220,0 +170760604812,219,0 +170760604860,219,0 +170760604910,219,0 +170760604957,219,0 +170760605005,219,0 +170760605053,219,0 +170760605101,220,0 +170760605149,220,0 +170760605197,220,0 +170760605244,219,0 +170760605292,219,0 +170760605340,219,0 +170760605388,219,0 +170760605437,219,0 +170760605487,219,0 +170760605536,219,0 +170760605584,220,0 +170760605634,219,0 +170760605683,219,0 +170760605733,219,0 +170760605782,219,0 +170760605832,220,0 +170760605880,219,0 +170760605927,219,0 +170760605975,219,0 +170760606025,219,0 +170760606073,219,0 +170760606121,219,0 +170760606169,219,0 +170760606217,219,0 +170760606264,220,0 +170760606312,219,0 +170760606362,220,0 +170760606411,219,0 +170760606461,219,0 +170760606509,219,0 +170760606557,219,0 +170760606605,219,0 +170760606654,220,0 +170760606702,219,0 +170760606751,219,0 +170760606799,219,0 +170760606847,220,0 +170760606895,219,0 +170760606943,220,0 +170760606991,219,0 +170760607039,219,0 +170760607087,220,0 +170760607135,219,0 +170760607184,219,0 +170760607232,219,0 +170760607280,219,0 +170760607328,219,0 +170760607376,219,0 +170760607424,219,0 +170760607474,220,0 +170760607521,219,0 +170760607569,220,0 +170760607619,219,0 +170760607668,219,0 +170760607716,219,0 +170760607764,219,0 +170760607812,219,0 +170760607860,219,0 +170760607908,219,0 +170760607956,220,0 +170760608004,219,0 +170760608052,220,0 +170760608099,219,0 +170760608147,220,0 +170760608197,219,0 +170760608245,219,0 +170760608292,220,0 +170760608340,219,0 +170760608388,219,0 +170760608436,219,0 +170760608484,220,0 +170760608532,219,0 +170760608579,220,0 +170760608627,220,0 +170760608675,220,0 +170760608725,220,0 +170760608773,219,0 +170760608822,220,0 +170760608872,219,0 +170760608920,220,0 +170760608967,220,0 +170760609015,219,0 +170760609063,219,0 +170760609113,219,0 +170760609161,219,0 +170760609210,219,0 +170760609258,219,0 +170760609306,219,0 +170760609354,220,0 +170760609402,219,0 +170760609450,219,0 +170760609499,219,0 +170760609547,219,0 +170760609595,220,0 +170760609643,219,0 +170760609691,219,0 +170760609739,219,0 +170760609787,219,0 +170760609835,219,0 +170760609884,219,0 +170760609934,220,0 +170760609983,219,0 +170760610031,219,0 +170760610079,219,0 +170760610128,219,0 +170760610178,219,0 +170760610226,219,0 +170760610274,220,0 +170760610322,220,0 +170760610370,219,0 +170760610418,220,0 +170760610465,219,0 +170760610515,219,0 +170760610564,219,0 +170760610614,219,0 +170760610662,219,0 +170760610711,219,0 +170760610759,219,0 +170760610809,219,0 +170760610857,220,0 +170760610905,220,0 +170760610954,220,0 +170760611002,219,0 +170760611052,219,0 +170760611100,219,0 +170760611149,219,0 +170760611199,219,0 +170760611247,219,0 +170760611294,219,0 +170760611342,219,0 +170760611390,219,0 +170760611438,220,0 +170760611486,219,0 +170760611536,219,0 +170760611584,219,0 +170760611632,219,0 +170760611679,219,0 +170760611727,220,0 +170760611775,219,0 +170760611823,220,0 +170760611871,219,0 +170760611919,219,0 +170760611966,220,0 +170760612014,219,0 +170760612064,219,0 +170760612112,220,0 +170760612159,219,0 +170760612207,220,0 +170760612255,219,0 +170760612303,219,0 +170760612351,219,0 +170760612399,219,0 +170760612447,219,0 +170760612494,220,0 +170760612542,220,0 +170760612590,219,0 +170760612638,220,0 +170760612686,219,0 +170760612736,219,0 +170760612783,220,0 +170760612831,219,0 +170760612879,219,0 +170760612927,219,0 +170760612975,219,0 +170760613023,219,0 +170760613071,219,0 +170760613119,219,0 +170760613166,219,0 +170760613214,219,0 +170760613264,219,0 +170760613312,220,0 +170760613361,219,0 +170760613409,219,0 +170760613457,220,0 +170760613505,219,0 +170760613554,219,0 +170760613602,219,0 +170760613650,219,0 +170760613700,219,0 +170760613748,219,0 +170760613796,220,0 +170760613843,220,0 +170760613893,219,0 +170760613941,219,0 +170760613989,219,0 +170760614037,219,0 +170760614085,219,0 +170760614133,219,0 +170760614181,219,0 +170760614228,219,0 +170760614276,219,0 +170760614324,219,0 +170760614372,220,0 +170760614420,219,0 +170760614468,219,0 +170760614516,220,0 +170760614564,219,0 +170760614613,220,0 +170760614661,220,0 +170760614711,219,0 +170760614760,220,0 +170760614808,219,0 +170760614856,219,0 +170760614904,220,0 +170760614952,219,0 +170760615000,220,0 +170760615047,219,0 +170760615095,219,0 +170760615143,219,0 +170760615191,219,0 +170760615239,219,0 +170760615288,219,0 +170760615338,219,0 +170760615386,220,0 +170760615435,220,0 +170760615483,219,0 +170760615531,219,0 +170760615579,219,0 +170760615627,219,0 +170760615675,219,0 +170760615723,220,0 +170760615771,220,0 +170760615819,219,0 +170760615868,219,0 +170760615916,219,0 +170760615964,219,0 +170760616014,219,0 +170760616062,220,0 +170760616110,219,0 +170760616158,219,0 +170760616206,219,0 +170760616255,219,0 +170760616305,219,0 +170760616354,220,0 +170760616404,219,0 +170760616453,219,0 +170760616501,220,0 +170760616549,220,0 +170760616598,219,0 +170760616648,219,0 +170760616696,219,0 +170760616744,219,0 +170760616793,219,0 +170760616843,220,0 +170760616891,220,0 +170760616939,219,0 +170760616987,219,0 +170760617036,220,0 +170760617084,220,0 +170760617132,219,0 +170760617180,219,0 +170760617229,219,0 +170760617279,219,0 +170760617328,219,0 +170760617376,219,0 +170760617424,219,0 +170760617472,219,0 +170760617520,219,0 +170760617568,219,0 +170760617618,220,0 +170760617667,219,0 +170760617717,220,0 +170760617764,220,0 +170760617812,220,0 +170760617862,219,0 +170760617911,219,0 +170760617959,220,0 +170760618009,219,0 +170760618057,220,0 +170760618104,219,0 +170760618152,219,0 +170760618200,219,0 +170760618250,219,0 +170760618299,219,0 +170760618347,219,0 +170760618395,219,0 +170760618445,219,0 +170760618492,220,0 +170760618540,219,0 +170760618588,220,0 +170760618636,219,0 +170760618686,219,0 +170760618734,219,0 +170760618782,219,0 +170760618830,219,0 +170760618878,219,0 +170760618926,219,0 +170760618974,219,0 +170760619023,220,0 +170760619071,220,0 +170760619119,219,0 +170760619167,220,0 +170760619215,219,0 +170760619264,219,0 +170760619312,219,0 +170760619362,219,0 +170760619410,219,0 +170760619457,219,0 +170760619505,219,0 +170760619555,219,0 +170760619604,219,0 +170760619652,220,0 +170760619702,219,0 +170760619750,220,0 +170760619798,220,0 +170760619846,219,0 +170760619895,220,0 +170760619945,220,0 +170760619993,220,0 +170760620042,220,0 +170760620090,219,0 +170760620138,219,0 +170760620186,220,0 +170760620234,219,0 +170760620283,220,0 +170760620331,219,0 +170760620379,219,0 +170760620427,220,0 +170760620475,219,0 +170760620525,219,0 +170760620572,219,0 +170760620622,219,0 +170760620670,219,0 +170760620718,220,0 +170760620765,219,0 +170760620813,220,0 +170760620863,220,0 +170760620911,219,0 +170760620959,219,0 +170760621007,219,0 +170760621056,219,0 +170760621106,220,0 +170760621155,219,0 +170760621205,219,0 +170760621254,220,0 +170760621302,219,0 +170760621350,219,0 +170760621398,219,0 +170760621446,219,0 +170760621494,219,0 +170760621542,219,0 +170760621591,219,0 +170760621639,219,0 +170760621689,219,0 +170760621738,219,0 +170760621788,220,0 +170760621836,219,0 +170760621885,219,0 +170760621933,219,0 +170760621982,219,0 +170760622030,219,0 +170760622078,219,0 +170760622126,219,0 +170760622174,219,0 +170760622221,219,0 +170760622269,220,0 +170760622319,220,0 +170760622366,219,0 +170760622414,219,0 +170760622462,219,0 +170760622510,219,0 +170760622558,219,0 +170760622606,220,0 +170760622655,219,0 +170760622703,219,0 +170760622751,219,0 +170760622799,219,0 +170760622847,220,0 +170760622894,220,0 +170760622942,219,0 +170760622990,219,0 +170760623038,220,0 +170760623086,219,0 +170760623134,219,0 +170760623181,219,0 +170760623229,219,0 +170760623277,220,0 +170760623325,219,0 +170760623373,219,0 +170760623421,220,0 +170760623468,219,0 +170760623516,219,0 +170760623564,219,0 +170760623612,219,0 +170760623660,219,0 +170760623708,220,0 +170760623756,220,0 +170760623803,219,0 +170760623851,219,0 +170760623901,219,0 +170760623949,219,0 +170760623996,219,0 +170760624046,220,0 +170760624094,219,0 +170760624142,219,0 +170760624189,219,0 +170760624237,219,0 +170760624285,220,0 +170760624333,219,0 +170760624381,220,0 +170760624429,219,0 +170760624478,220,0 +170760624526,219,0 +170760624574,220,0 +170760624622,219,0 +170760624670,219,0 +170760624718,219,0 +170760624766,219,0 +170760624815,219,0 +170760624863,219,0 +170760624911,219,0 +170760624958,219,0 +170760625006,220,0 +170760625054,219,0 +170760625102,219,0 +170760625150,219,0 +170760625197,220,0 +170760625245,219,0 +170760625293,220,0 +170760625341,219,0 +170760625389,219,0 +170760625437,219,0 +170760625485,219,0 +170760625532,220,0 +170760625582,219,0 +170760625631,220,0 +170760625679,219,0 +170760625727,220,0 +170760625775,219,0 +170760625824,219,0 +170760625874,219,0 +170760625923,219,0 +170760625973,219,0 +170760626021,220,0 +170760626068,219,0 +170760626118,219,0 +170760626166,219,0 +170760626214,219,0 +170760626262,219,0 +170760626310,219,0 +170760626359,219,0 +170760626407,219,0 +170760626455,219,0 +170760626503,220,0 +170760626551,219,0 +170760626599,219,0 +170760626648,220,0 +170760626696,219,0 +170760626744,219,0 +170760626792,219,0 +170760626840,219,0 +170760626888,219,0 +170760626936,219,0 +170760626984,219,0 +170760627031,219,0 +170760627079,220,0 +170760627127,219,0 +170760627175,220,0 +170760627225,219,0 +170760627273,219,0 +170760627321,219,0 +170760627370,219,0 +170760627418,219,0 +170760627466,219,0 +170760627514,219,0 +170760627562,220,0 +170760627610,219,0 +170760627658,219,0 +170760627706,220,0 +170760627753,219,0 +170760627801,219,0 +170760627849,219,0 +170760627897,219,0 +170760627945,219,0 +170760627993,219,0 +170760628043,219,0 +170760628091,219,0 +170760628139,219,0 +170760628188,220,0 +170760628236,219,0 +170760628286,220,0 +170760628335,220,0 +170760628383,220,0 +170760628431,220,0 +170760628479,220,0 +170760628528,219,0 +170760628578,219,0 +170760628627,219,0 +170760628677,219,0 +170760628726,219,0 +170760628774,219,0 +170760628824,220,0 +170760628872,219,0 +170760628921,219,0 +170760628969,219,0 +170760629017,219,0 +170760629066,219,0 +170760629114,219,0 +170760629162,219,0 +170760629210,219,0 +170760629258,219,0 +170760629308,219,0 +170760629356,219,0 +170760629405,219,0 +170760629453,219,0 +170760629501,219,0 +170760629551,219,0 +170760629598,219,0 +170760629648,220,0 +170760629696,220,0 +170760629744,220,0 +170760629792,219,0 +170760629840,219,0 +170760629888,219,0 +170760629935,219,0 +170760629985,219,0 +170760630033,219,0 +170760630081,220,0 +170760630129,219,0 +170760630177,220,0 +170760630225,219,0 +170760630273,220,0 +170760630321,219,0 +170760630368,220,0 +170760630416,220,0 +170760630466,219,0 +170760630514,219,0 +170760630562,220,0 +170760630611,220,0 +170760630661,220,0 +170760630709,219,0 +170760630757,219,0 +170760630806,219,0 +170760630854,220,0 +170760630902,219,0 +170760630950,219,0 +170760630999,219,0 +170760631047,219,0 +170760631097,219,0 +170760631145,219,0 +170760631193,219,0 +170760631241,220,0 +170760631289,219,0 +170760631337,220,0 +170760631386,219,0 +170760631434,220,0 +170760631482,219,0 +170760631530,219,0 +170760631578,219,0 +170760631626,219,0 +170760631675,220,0 +170760631723,219,0 +170760631771,219,0 +170760631819,219,0 +170760631867,220,0 +170760631915,219,0 +170760631963,219,0 +170760632011,219,0 +170760632059,219,0 +170760632107,220,0 +170760632156,219,0 +170760632206,219,0 +170760632255,219,0 +170760632303,219,0 +170760632351,219,0 +170760632399,219,0 +170760632447,220,0 +170760632495,220,0 +170760632544,219,0 +170760632592,220,0 +170760632642,219,0 +170760632690,219,0 +170760632737,219,0 +170760632785,219,0 +170760632835,219,0 +170760632882,220,0 +170760632932,219,0 +170760632980,220,0 +170760633028,219,0 +170760633075,220,0 +170760633123,219,0 +170760633171,219,0 +170760633219,220,0 +170760633267,219,0 +170760633314,220,0 +170760633362,220,0 +170760633410,219,0 +170760633458,220,0 +170760633506,219,0 +170760633554,219,0 +170760633601,220,0 +170760633649,220,0 +170760633697,220,0 +170760633745,219,0 +170760633795,220,0 +170760633843,219,0 +170760633892,220,0 +170760633940,220,0 +170760633990,219,0 +170760634038,219,0 +170760634087,219,0 +170760634135,219,0 +170760634183,220,0 +170760634231,220,0 +170760634279,220,0 +170760634326,220,0 +170760634374,220,0 +170760634422,219,0 +170760634470,219,0 +170760634518,219,0 +170760634566,219,0 +170760634614,219,0 +170760634662,219,0 +170760634710,219,0 +170760634759,220,0 +170760634807,219,0 +170760634855,219,0 +170760634903,219,0 +170760634951,219,0 +170760634999,220,0 +170760635047,219,0 +170760635095,219,0 +170760635142,219,0 +170760635190,220,0 +170760635238,220,0 +170760635286,219,0 +170760635334,219,0 +170760635382,220,0 +170760635430,219,0 +170760635478,220,0 +170760635527,220,0 +170760635575,220,0 +170760635623,219,0 +170760635671,219,0 +170760635719,219,0 +170760635767,219,0 +170760635815,219,0 +170760635864,220,0 +170760635914,219,0 +170760635963,219,0 +170760636011,219,0 +170760636059,219,0 +170760636107,219,0 +170760636155,219,0 +170760636203,219,0 +170760636251,220,0 +170760636300,220,0 +170760636350,219,0 +170760636398,219,0 +170760636446,219,0 +170760636493,220,0 +170760636541,220,0 +170760636589,219,0 +170760636637,219,0 +170760636687,219,0 +170760636736,220,0 +170760636784,219,0 +170760636833,220,0 +170760636881,220,0 +170760636931,219,0 +170760636979,220,0 +170760637027,220,0 +170760637075,219,0 +170760637123,220,0 +170760637172,219,0 +170760637220,219,0 +170760637268,220,0 +170760637318,219,0 +170760637366,220,0 +170760637415,219,0 +170760637465,219,0 +170760637514,219,0 +170760637564,220,0 +170760637612,219,0 +170760637659,219,0 +170760637707,219,0 +170760637757,220,0 +170760637805,219,0 +170760637852,219,0 +170760637902,220,0 +170760637951,220,0 +170760638001,219,0 +170760638049,220,0 +170760638097,219,0 +170760638144,220,0 +170760638194,220,0 +170760638242,220,0 +170760638290,219,0 +170760638338,219,0 +170760638386,220,0 +170760638434,219,0 +170760638483,219,0 +170760638531,219,0 +170760638581,220,0 +170760638629,220,0 +170760638678,220,0 +170760638726,219,0 +170760638774,219,0 +170760638822,219,0 +170760638870,219,0 +170760638918,219,0 +170760638965,219,0 +170760639015,219,0 +170760639063,219,0 +170760639111,220,0 +170760639160,219,0 +170760639208,220,0 +170760639256,220,0 +170760639304,219,0 +170760639353,219,0 +170760639401,220,0 +170760639449,219,0 +170760639497,219,0 +170760639545,219,0 +170760639593,219,0 +170760639641,220,0 +170760639690,219,0 +170760639740,220,0 +170760639789,219,0 +170760639839,220,0 +170760639886,219,0 +170760639934,219,0 +170760639984,220,0 +170760640033,219,0 +170760640081,219,0 +170760640129,219,0 +170760640177,220,0 +170760640226,220,0 +170760640274,220,0 +170760640322,220,0 +170760640372,220,0 +170760640420,220,0 +170760640468,220,0 +170760640516,219,0 +170760640565,220,0 +170760640613,220,0 +170760640663,219,0 +170760640710,220,0 +170760640760,219,0 +170760640808,220,0 +170760640857,220,0 +170760640905,219,0 +170760640953,220,0 +170760641003,219,0 +170760641051,220,0 +170760641099,219,0 +170760641147,219,0 +170760641196,219,0 +170760641246,220,0 +170760641294,219,0 +170760641342,219,0 +170760641390,220,0 +170760641439,219,0 +170760641489,219,0 +170760641537,220,0 +170760641586,220,0 +170760641634,220,0 +170760641683,219,0 +170760641731,220,0 +170760641779,220,0 +170760641829,220,0 +170760641878,220,0 +170760641926,219,0 +170760641974,219,0 +170760642022,220,0 +170760642070,219,0 +170760642120,219,0 +170760642167,220,0 +170760642217,220,0 +170760642265,220,0 +170760642313,220,0 +170760642362,220,0 +170760642410,220,0 +170760642458,219,0 +170760642506,220,0 +170760642556,220,0 +170760642603,219,0 +170760642651,220,0 +170760642701,219,0 +170760642750,220,0 +170760642798,219,0 +170760642846,220,0 +170760642894,219,0 +170760642942,219,0 +170760642992,219,0 +170760643040,220,0 +170760643089,219,0 +170760643137,219,0 +170760643185,219,0 +170760643233,219,0 +170760643281,219,0 +170760643328,220,0 +170760643376,219,0 +170760643424,219,0 +170760643472,219,0 +170760643520,219,0 +170760643568,220,0 +170760643615,219,0 +170760643663,219,0 +170760643711,219,0 +170760643761,220,0 +170760643809,219,0 +170760643857,220,0 +170760643905,219,0 +170760643954,220,0 +170760644002,219,0 +170760644050,219,0 +170760644098,220,0 +170760644146,219,0 +170760644194,220,0 +170760644243,219,0 +170760644293,220,0 +170760644342,219,0 +170760644390,220,0 +170760644438,219,0 +170760644486,219,0 +170760644534,220,0 +170760644582,220,0 +170760644630,220,0 +170760644679,220,0 +170760644727,219,0 +170760644775,219,0 +170760644823,219,0 +170760644871,220,0 +170760644919,219,0 +170760644968,220,0 +170760645016,219,0 +170760645064,219,0 +170760645114,219,0 +170760645163,220,0 +170760645211,219,0 +170760645259,219,0 +170760645307,219,0 +170760645355,220,0 +170760645403,219,0 +170760645451,219,0 +170760645500,219,0 +170760645548,220,0 +170760645596,220,0 +170760645644,220,0 +170760645692,220,0 +170760645740,219,0 +170760645790,220,0 +170760645839,220,0 +170760645887,219,0 +170760645935,219,0 +170760645985,220,0 +170760646032,219,0 +170760646080,220,0 +170760646128,220,0 +170760646176,220,0 +170760646224,219,0 +170760646272,220,0 +170760646319,220,0 +170760646367,219,0 +170760646415,219,0 +170760646463,219,0 +170760646511,219,0 +170760646559,220,0 +170760646606,220,0 +170760646654,219,0 +170760646702,219,0 +170760646750,219,0 +170760646798,220,0 +170760646846,219,0 +170760646894,219,0 +170760646942,219,0 +170760646990,220,0 +170760647039,219,0 +170760647087,220,0 +170760647135,219,0 +170760647183,219,0 +170760647231,220,0 +170760647279,219,0 +170760647328,219,0 +170760647378,219,0 +170760647426,220,0 +170760647474,219,0 +170760647523,220,0 +170760647573,220,0 +170760647622,220,0 +170760647670,220,0 +170760647718,219,0 +170760647768,220,0 +170760647817,220,0 +170760647865,219,0 +170760647915,219,0 +170760647963,219,0 +170760648011,220,0 +170760648059,220,0 +170760648106,220,0 +170760648154,219,0 +170760648202,220,0 +170760648250,220,0 +170760648298,219,0 +170760648346,219,0 +170760648396,219,0 +170760648443,220,0 +170760648491,220,0 +170760648539,219,0 +170760648589,219,0 +170760648637,220,0 +170760648685,219,0 +170760648734,219,0 +170760648782,219,0 +170760648830,219,0 +170760648879,219,0 +170760648927,220,0 +170760648975,219,0 +170760649023,220,0 +170760649071,219,0 +170760649119,220,0 +170760649167,219,0 +170760649217,220,0 +170760649266,220,0 +170760649314,220,0 +170760649362,220,0 +170760649412,220,0 +170760649460,219,0 +170760649508,219,0 +170760649556,220,0 +170760649605,219,0 +170760649655,219,0 +170760649704,219,0 +170760649752,219,0 +170760649802,220,0 +170760649851,219,0 +170760649900,219,0 +170760649948,219,0 +170760649996,219,0 +170760650044,220,0 +170760650092,219,0 +170760650140,220,0 +170760650188,219,0 +170760650236,220,0 +170760650284,220,0 +170760650333,219,0 +170760650381,220,0 +170760650431,219,0 +170760650479,219,0 +170760650527,219,0 +170760650575,220,0 +170760650624,220,0 +170760650674,219,0 +170760650722,220,0 +170760650769,219,0 +170760650817,220,0 +170760650867,219,0 +170760650916,219,0 +170760650964,219,0 +170760651014,220,0 +170760651062,219,0 +170760651110,219,0 +170760651157,219,0 +170760651205,219,0 +170760651253,219,0 +170760651301,220,0 +170760651349,220,0 +170760651397,219,0 +170760651444,219,0 +170760651492,219,0 +170760651540,219,0 +170760651588,219,0 +170760651636,219,0 +170760651684,219,0 +170760651732,220,0 +170760651779,220,0 +170760651827,219,0 +170760651875,220,0 +170760651923,219,0 +170760651971,219,0 +170760652020,220,0 +170760652068,220,0 +170760652116,220,0 +170760652164,219,0 +170760652212,219,0 +170760652259,220,0 +170760652307,220,0 +170760652355,220,0 +170760652403,220,0 +170760652451,219,0 +170760652499,219,0 +170760652546,219,0 +170760652594,219,0 +170760652642,220,0 +170760652690,220,0 +170760652740,220,0 +170760652789,220,0 +170760652838,219,0 +170760652886,219,0 +170760652936,220,0 +170760652984,220,0 +170760653033,219,0 +170760653081,220,0 +170760653131,219,0 +170760653179,219,0 +170760653227,220,0 +170760653274,219,0 +170760653322,220,0 +170760653370,219,0 +170760653418,219,0 +170760653466,219,0 +170760653515,219,0 +170760653565,220,0 +170760653613,219,0 +170760653661,219,0 +170760653709,219,0 +170760653757,219,0 +170760653805,219,0 +170760653853,219,0 +170760653900,220,0 +170760653948,219,0 +170760653996,219,0 +170760654044,219,0 +170760654094,219,0 +170760654143,219,0 +170760654193,219,0 +170760654241,219,0 +170760654288,219,0 +170760654336,219,0 +170760654386,220,0 +170760654434,219,0 +170760654481,220,0 +170760654529,220,0 +170760654577,219,0 +170760654625,219,0 +170760654675,219,0 +170760654723,220,0 +170760654770,220,0 +170760654820,220,0 +170760654868,219,0 +170760654916,220,0 +170760654964,219,0 +170760655013,219,0 +170760655061,219,0 +170760655110,220,0 +170760655158,220,0 +170760655206,219,0 +170760655254,220,0 +170760655302,219,0 +170760655350,219,0 +170760655398,219,0 +170760655446,219,0 +170760655494,220,0 +170760655542,220,0 +170760655591,220,0 +170760655639,219,0 +170760655687,220,0 +170760655735,219,0 +170760655783,219,0 +170760655831,220,0 +170760655880,220,0 +170760655928,219,0 +170760655978,219,0 +170760656027,220,0 +170760656076,219,0 +170760656124,219,0 +170760656172,219,0 +170760656220,220,0 +170760656268,220,0 +170760656318,220,0 +170760656367,219,0 +170760656415,219,0 +170760656463,219,0 +170760656511,219,0 +170760656559,219,0 +170760656606,219,0 +170760656654,219,0 +170760656702,219,0 +170760656752,219,0 +170760656801,219,0 +170760656851,220,0 +170760656899,220,0 +170760656946,219,0 +170760656994,220,0 +170760657044,219,0 +170760657092,219,0 +170760657140,220,0 +170760657188,219,0 +170760657235,220,0 +170760657283,219,0 +170760657331,219,0 +170760657379,219,0 +170760657427,219,0 +170760657477,220,0 +170760657524,219,0 +170760657572,219,0 +170760657620,220,0 +170760657668,219,0 +170760657718,219,0 +170760657767,220,0 +170760657817,219,0 +170760657865,219,0 +170760657914,220,0 +170760657962,219,0 +170760658010,219,0 +170760658058,219,0 +170760658106,219,0 +170760658155,219,0 +170760658205,219,0 +170760658253,219,0 +170760658302,219,0 +170760658350,219,0 +170760658398,219,0 +170760658446,219,0 +170760658494,219,0 +170760658542,219,0 +170760658590,219,0 +170760658638,219,0 +170760658686,219,0 +170760658733,219,0 +170760658781,220,0 +170760658829,219,0 +170760658879,219,0 +170760658927,219,0 +170760658975,219,0 +170760659024,219,0 +170760659072,219,0 +170760659120,219,0 +170760659169,219,0 +170760659217,220,0 +170760659265,219,0 +170760659315,219,0 +170760659363,219,0 +170760659411,219,0 +170760659459,220,0 +170760659506,220,0 +170760659556,220,0 +170760659605,219,0 +170760659653,219,0 +170760659703,219,0 +170760659752,219,0 +170760659800,219,0 +170760659848,219,0 +170760659898,219,0 +170760659945,219,0 +170760659993,219,0 +170760660041,219,0 +170760660089,219,0 +170760660138,220,0 +170760660186,219,0 +170760660234,219,0 +170760660282,219,0 +170760660330,220,0 +170760660380,219,0 +170760660429,219,0 +170760660479,219,0 +170760660527,219,0 +170760660576,219,0 +170760660624,219,0 +170760660672,219,0 +170760660720,219,0 +170760660768,219,0 +170760660816,219,0 +170760660864,219,0 +170760660912,219,0 +170760660960,219,0 +170760661007,219,0 +170760661055,219,0 +170760661103,219,0 +170760661151,219,0 +170760661199,219,0 +170760661247,219,0 +170760661295,219,0 +170760661343,219,0 +170760661392,219,0 +170760661440,219,0 +170760661490,219,0 +170760661539,219,0 +170760661587,219,0 +170760661635,219,0 +170760661683,219,0 +170760661731,219,0 +170760661779,220,0 +170760661827,219,0 +170760661874,219,0 +170760661922,220,0 +170760661970,219,0 +170760662018,220,0 +170760662068,219,0 +170760662115,219,0 +170760662163,219,0 +170760662211,219,0 +170760662259,219,0 +170760662307,219,0 +170760662357,219,0 +170760662406,219,0 +170760662456,219,0 +170760662505,219,0 +170760662553,219,0 +170760662601,219,0 +170760662649,219,0 +170760662697,220,0 +170760662746,219,0 +170760662794,219,0 +170760662842,219,0 +170760662892,220,0 +170760662940,219,0 +170760662988,219,0 +170760663037,219,0 +170760663087,219,0 +170760663135,220,0 +170760663183,219,0 +170760663232,219,0 +170760663282,219,0 +170760663329,219,0 +170760663379,220,0 +170760663427,219,0 +170760663475,219,0 +170760663523,219,0 +170760663572,219,0 +170760663620,219,0 +170760663669,219,0 +170760663719,219,0 +170760663767,219,0 +170760663815,219,0 +170760663862,219,0 +170760663910,220,0 +170760663960,220,0 +170760664008,220,0 +170760664056,219,0 +170760664104,219,0 +170760664153,220,0 +170760664201,220,0 +170760664249,219,0 +170760664297,219,0 +170760664345,219,0 +170760664394,219,0 +170760664442,219,0 +170760664490,220,0 +170760664540,219,0 +170760664588,219,0 +170760664636,219,0 +170760664684,219,0 +170760664731,219,0 +170760664781,220,0 +170760664829,220,0 +170760664877,219,0 +170760664926,219,0 +170760664974,220,0 +170760665024,219,0 +170760665073,219,0 +170760665121,219,0 +170760665171,220,0 +170760665219,219,0 +170760665268,219,0 +170760665316,220,0 +170760665364,220,0 +170760665412,219,0 +170760665461,219,0 +170760665509,219,0 +170760665559,220,0 +170760665607,219,0 +170760665655,219,0 +170760665704,219,0 +170760665754,219,0 +170760665803,220,0 +170760665851,219,0 +170760665899,219,0 +170760665947,220,0 +170760665996,219,0 +170760666044,219,0 +170760666092,220,0 +170760666140,220,0 +170760666188,219,0 +170760666237,220,0 +170760666285,219,0 +170760666333,219,0 +170760666381,219,0 +170760666429,219,0 +170760666477,219,0 +170760666525,219,0 +170760666573,219,0 +170760666621,219,0 +170760666669,219,0 +170760666717,220,0 +170760666765,219,0 +170760666812,219,0 +170760666860,220,0 +170760666908,219,0 +170760666958,219,0 +170760667006,219,0 +170760667055,219,0 +170760667105,219,0 +170760667152,219,0 +170760667200,219,0 +170760667248,219,0 +170760667296,219,0 +170760667344,219,0 +170760667392,219,0 +170760667440,219,0 +170760667488,219,0 +170760667536,219,0 +170760667584,219,0 +170760667631,219,0 +170760667679,219,0 +170760667727,219,0 +170760667775,219,0 +170760667823,219,0 +170760667871,219,0 +170760667919,219,0 +170760667967,219,0 +170760668016,219,0 +170760668066,219,0 +170760668113,219,0 +170760668161,219,0 +170760668209,220,0 +170760668259,219,0 +170760668307,219,0 +170760668355,220,0 +170760668403,219,0 +170760668451,219,0 +170760668500,219,0 +170760668550,219,0 +170760668598,219,0 +170760668645,220,0 +170760668695,219,0 +170760668743,220,0 +170760668791,220,0 +170760668839,219,0 +170760668887,219,0 +170760668934,219,0 +170760668982,219,0 +170760669030,220,0 +170760669080,219,0 +170760669128,219,0 +170760669177,220,0 +170760669225,219,0 +170760669273,219,0 +170760669321,219,0 +170760669371,219,0 +170760669419,219,0 +170760669468,220,0 +170760669516,219,0 +170760669566,220,0 +170760669613,219,0 +170760669661,219,0 +170760669709,219,0 +170760669757,219,0 +170760669805,219,0 +170760669853,219,0 +170760669901,219,0 +170760669951,219,0 +170760669998,219,0 +170760670048,220,0 +170760670096,219,0 +170760670145,219,0 +170760670195,219,0 +170760670244,219,0 +170760670292,219,0 +170760670342,219,0 +170760670389,219,0 +170760670437,219,0 +170760670485,219,0 +170760670533,219,0 +170760670581,219,0 +170760670630,219,0 +170760670678,219,0 +170760670726,219,0 +170760670774,219,0 +170760670822,219,0 +170760670870,219,0 +170760670918,219,0 +170760670967,219,0 +170760671015,219,0 +170760671063,219,0 +170760671111,219,0 +170760671159,219,0 +170760671209,219,0 +170760671257,219,0 +170760671306,220,0 +170760671354,219,0 +170760671402,219,0 +170760671450,220,0 +170760671498,219,0 +170760671546,219,0 +170760671594,220,0 +170760671642,220,0 +170760671689,219,0 +170760671737,220,0 +170760671785,219,0 +170760671833,219,0 +170760671883,219,0 +170760671932,219,0 +170760671980,219,0 +170760672028,219,0 +170760672077,219,0 +170760672125,220,0 +170760672173,219,0 +170760672221,219,0 +170760672269,219,0 +170760672317,220,0 +170760672366,219,0 +170760672414,219,0 +170760672462,219,0 +170760672510,219,0 +170760672558,219,0 +170760672607,219,0 +170760672657,219,0 +170760672706,219,0 +170760672754,219,0 +170760672804,219,0 +170760672851,219,0 +170760672899,220,0 +170760672947,219,0 +170760672995,219,0 +170760673045,220,0 +170760673093,219,0 +170760673142,220,0 +170760673190,219,0 +170760673238,219,0 +170760673286,220,0 +170760673334,219,0 +170760673382,219,0 +170760673430,220,0 +170760673478,219,0 +170760673525,219,0 +170760673573,219,0 +170760673621,220,0 +170760673669,220,0 +170760673717,219,0 +170760673767,219,0 +170760673816,219,0 +170760673864,219,0 +170760673912,219,0 +170760673960,219,0 +170760674008,219,0 +170760674056,220,0 +170760674104,219,0 +170760674152,220,0 +170760674201,220,0 +170760674251,219,0 +170760674298,219,0 +170760674346,219,0 +170760674394,219,0 +170760674442,219,0 +170760674490,220,0 +170760674538,219,0 +170760674586,219,0 +170760674635,220,0 +170760674683,219,0 +170760674731,220,0 +170760674779,219,0 +170760674827,219,0 +170760674875,219,0 +170760674923,219,0 +170760674972,219,0 +170760675020,219,0 +170760675068,219,0 +170760675117,219,0 +170760675165,219,0 +170760675213,219,0 +170760675261,219,0 +170760675309,219,0 +170760675357,219,0 +170760675406,219,0 +170760675456,219,0 +170760675503,219,0 +170760675551,219,0 +170760675601,219,0 +170760675650,219,0 +170760675698,220,0 +170760675746,219,0 +170760675794,219,0 +170760675842,220,0 +170760675890,219,0 +170760675940,219,0 +170760675988,219,0 +170760676036,219,0 +170760676084,219,0 +170760676133,219,0 +170760676181,219,0 +170760676229,219,0 +170760676277,219,0 +170760676325,219,0 +170760676373,219,0 +170760676420,219,0 +170760676470,219,0 +170760676518,219,0 +170760676566,219,0 +170760676614,219,0 +170760676662,220,0 +170760676710,219,0 +170760676757,220,0 +170760676805,219,0 +170760676853,220,0 +170760676901,219,0 +170760676949,219,0 +170760676998,219,0 +170760677046,220,0 +170760677094,219,0 +170760677142,219,0 +170760677192,219,0 +170760677240,219,0 +170760677289,219,0 +170760677337,220,0 +170760677385,219,0 +170760677433,220,0 +170760677482,220,0 +170760677530,220,0 +170760677578,220,0 +170760677626,219,0 +170760677674,219,0 +170760677722,219,0 +170760677770,220,0 +170760677818,220,0 +170760677867,219,0 +170760677915,220,0 +170760677965,219,0 +170760678014,220,0 +170760678062,220,0 +170760678110,219,0 +170760678158,219,0 +170760678206,219,0 +170760678254,220,0 +170760678302,219,0 +170760678349,220,0 +170760678397,219,0 +170760678447,219,0 +170760678496,220,0 +170760678544,219,0 +170760678592,220,0 +170760678640,220,0 +170760678688,219,0 +170760678736,219,0 +170760678784,219,0 +170760678832,220,0 +170760678880,220,0 +170760678929,219,0 +170760678977,219,0 +170760679025,219,0 +170760679073,219,0 +170760679122,220,0 +170760679170,220,0 +170760679220,219,0 +170760679269,220,0 +170760679317,219,0 +170760679365,219,0 +170760679413,219,0 +170760679462,220,0 +170760679510,219,0 +170760679558,219,0 +170760679606,219,0 +170760679653,220,0 +170760679701,219,0 +170760679749,219,0 +170760679798,219,0 +170760679846,219,0 +170760679894,219,0 +170760679942,219,0 +170760679990,219,0 +170760680038,219,0 +170760680085,219,0 +170760680133,219,0 +170760680181,219,0 +170760680229,219,0 +170760680277,219,0 +170760680324,219,0 +170760680372,219,0 +170760680420,219,0 +170760680468,219,0 +170760680516,219,0 +170760680563,220,0 +170760680611,219,0 +170760680659,219,0 +170760680707,219,0 +170760680755,219,0 +170760680803,219,0 +170760680852,219,0 +170760680900,219,0 +170760680948,220,0 +170760680996,219,0 +170760681044,219,0 +170760681092,219,0 +170760681139,219,0 +170760681187,219,0 +170760681235,219,0 +170760681283,219,0 +170760681333,219,0 +170760681381,219,0 +170760681430,220,0 +170760681478,219,0 +170760681527,219,0 +170760681577,219,0 +170760681625,220,0 +170760681674,219,0 +170760681722,219,0 +170760681770,219,0 +170760681820,220,0 +170760681867,219,0 +170760681917,219,0 +170760681965,219,0 +170760682013,219,0 +170760682062,219,0 +170760682112,220,0 +170760682159,219,0 +170760682207,219,0 +170760682255,219,0 +170760682305,219,0 +170760682353,219,0 +170760682401,219,0 +170760682449,219,0 +170760682498,220,0 +170760682546,220,0 +170760682594,219,0 +170760682644,219,0 +170760682692,219,0 +170760682741,219,0 +170760682789,220,0 +170760682837,219,0 +170760682886,219,0 +170760682936,220,0 +170760682984,220,0 +170760683032,219,0 +170760683081,219,0 +170760683129,220,0 +170760683177,219,0 +170760683225,220,0 +170760683273,220,0 +170760683321,220,0 +170760683369,219,0 +170760683417,219,0 +170760683464,219,0 +170760683512,220,0 +170760683560,219,0 +170760683608,219,0 +170760683655,219,0 +170760683703,219,0 +170760683751,219,0 +170760683799,220,0 +170760683847,220,0 +170760683895,220,0 +170760683944,220,0 +170760683992,220,0 +170760684040,219,0 +170760684088,219,0 +170760684137,219,0 +170760684187,219,0 +170760684235,220,0 +170760684282,220,0 +170760684332,219,0 +170760684380,220,0 +170760684429,219,0 +170760684479,219,0 +170760684527,219,0 +170760684575,220,0 +170760684623,220,0 +170760684671,220,0 +170760684720,219,0 +170760684768,219,0 +170760684816,219,0 +170760684864,220,0 +170760684912,219,0 +170760684961,220,0 +170760685009,220,0 +170760685057,219,0 +170760685105,219,0 +170760685153,219,0 +170760685200,219,0 +170760685248,219,0 +170760685296,219,0 +170760685346,219,0 +170760685395,219,0 +170760685443,219,0 +170760685493,219,0 +170760685541,219,0 +170760685589,219,0 +170760685637,219,0 +170760685684,219,0 +170760685732,220,0 +170760685780,219,0 +170760685829,219,0 +170760685879,220,0 +170760685927,219,0 +170760685975,220,0 +170760686023,219,0 +170760686070,219,0 +170760686118,219,0 +170760686166,219,0 +170760686214,219,0 +170760686264,219,0 +170760686312,219,0 +170760686359,219,0 +170760686407,219,0 +170760686457,219,0 +170760686505,219,0 +170760686553,219,0 +170760686602,219,0 +170760686650,219,0 +170760686698,219,0 +170760686746,219,0 +170760686795,219,0 +170760686843,220,0 +170760686891,219,0 +170760686939,219,0 +170760686987,220,0 +170760687035,219,0 +170760687083,220,0 +170760687131,220,0 +170760687178,219,0 +170760687226,219,0 +170760687274,219,0 +170760687324,219,0 +170760687372,219,0 +170760687420,219,0 +170760687468,219,0 +170760687516,219,0 +170760687564,219,0 +170760687613,219,0 +170760687661,219,0 +170760687709,219,0 +170760687758,219,0 +170760687808,220,0 +170760687856,219,0 +170760687905,219,0 +170760687955,219,0 +170760688003,219,0 +170760688051,220,0 +170760688099,219,0 +170760688148,219,0 +170760688196,219,0 +170760688244,219,0 +170760688293,220,0 +170760688341,220,0 +170760688391,219,0 +170760688439,220,0 +170760688487,219,0 +170760688536,219,0 +170760688584,219,0 +170760688632,219,0 +170760688680,219,0 +170760688728,219,0 +170760688777,220,0 +170760688827,219,0 +170760688876,220,0 +170760688924,219,0 +170760688972,219,0 +170760689020,219,0 +170760689068,219,0 +170760689116,219,0 +170760689164,219,0 +170760689213,219,0 +170760689261,220,0 +170760689309,219,0 +170760689357,220,0 +170760689405,220,0 +170760689453,219,0 +170760689501,219,0 +170760689551,219,0 +170760689600,219,0 +170760689650,219,0 +170760689698,219,0 +170760689745,219,0 +170760689793,220,0 +170760689843,220,0 +170760689891,219,0 +170760689939,219,0 +170760689988,220,0 +170760690036,219,0 +170760690084,219,0 +170760690132,219,0 +170760690180,220,0 +170760690228,219,0 +170760690276,220,0 +170760690324,219,0 +170760690372,219,0 +170760690420,219,0 +170760690467,220,0 +170760690515,219,0 +170760690563,219,0 +170760690611,219,0 +170760690659,219,0 +170760690709,219,0 +170760690757,220,0 +170760690806,219,0 +170760690854,220,0 +170760690902,219,0 +170760690950,219,0 +170760690998,219,0 +170760691046,219,0 +170760691094,219,0 +170760691142,219,0 +170760691190,219,0 +170760691237,220,0 +170760691285,219,0 +170760691335,220,0 +170760691384,219,0 +170760691434,220,0 +170760691482,219,0 +170760691529,220,0 +170760691577,220,0 +170760691625,219,0 +170760691673,219,0 +170760691721,219,0 +170760691771,219,0 +170760691820,219,0 +170760691868,219,0 +170760691916,219,0 +170760691964,220,0 +170760692012,219,0 +170760692061,220,0 +170760692111,219,0 +170760692159,219,0 +170760692207,219,0 +170760692255,219,0 +170760692303,219,0 +170760692350,219,0 +170760692400,219,0 +170760692448,219,0 +170760692497,219,0 +170760692545,219,0 +170760692595,219,0 +170760692644,219,0 +170760692694,219,0 +170760692742,220,0 +170760692789,219,0 +170760692837,219,0 +170760692885,219,0 +170760692933,219,0 +170760692983,219,0 +170760693031,219,0 +170760693078,219,0 +170760693128,219,0 +170760693177,219,0 +170760693225,219,0 +170760693273,219,0 +170760693322,219,0 +170760693370,219,0 +170760693418,220,0 +170760693466,219,0 +170760693514,220,0 +170760693562,220,0 +170760693610,219,0 +170760693657,219,0 +170760693705,219,0 +170760693753,219,0 +170760693801,220,0 +170760693849,219,0 +170760693896,219,0 +170760693944,219,0 +170760693992,219,0 +170760694040,219,0 +170760694088,219,0 +170760694136,220,0 +170760694183,219,0 +170760694231,219,0 +170760694279,219,0 +170760694327,219,0 +170760694375,219,0 +170760694422,219,0 +170760694470,219,0 +170760694518,219,0 +170760694566,219,0 +170760694614,219,0 +170760694661,220,0 +170760694709,219,0 +170760694757,220,0 +170760694805,219,0 +170760694853,219,0 +170760694902,220,0 +170760694950,220,0 +170760694998,219,0 +170760695045,219,0 +170760695093,220,0 +170760695141,219,0 +170760695189,220,0 +170760695239,219,0 +170760695288,219,0 +170760695336,219,0 +170760695384,219,0 +170760695432,219,0 +170760695480,219,0 +170760695527,219,0 +170760695577,219,0 +170760695625,219,0 +170760695673,220,0 +170760695723,219,0 +170760695771,219,0 +170760695820,219,0 +170760695868,219,0 +170760695916,219,0 +170760695964,219,0 +170760696013,219,0 +170760696061,219,0 +170760696111,219,0 +170760696159,219,0 +170760696208,220,0 +170760696258,220,0 +170760696307,220,0 +170760696355,222,0 +170760696403,220,0 +170760696451,221,0 +170760696500,221,0 +170760696550,222,0 +170760696599,221,0 +170760696649,221,0 +170760696697,221,0 +170760696745,222,0 +170760696793,222,0 +170760696842,222,0 +170760696892,222,0 +170760696940,222,0 +170760696989,222,0 +170760697037,222,0 +170760697086,216,0 +170760697134,216,0 +170760697182,216,0 +170760697230,217,0 +170760697278,217,0 +170760697326,218,0 +170760697374,219,0 +170760697422,219,0 +170760697470,220,0 +170760697518,220,0 +170760697565,220,0 +170760697613,221,0 +170760697661,222,0 +170760697711,223,0 +170760697759,222,0 +170760697808,222,0 +170760697856,222,0 +170760697904,222,0 +170760697953,223,0 +170760698001,222,0 +170760698049,217,0 +170760698097,218,0 +170760698145,219,0 +170760698194,219,0 +170760698242,219,0 +170760698290,218,0 +170760698338,220,0 +170760698388,221,0 +170760698436,221,0 +170760698484,221,0 +170760698533,222,0 +170760698582,222,0 +170760698630,223,0 +170760698678,222,0 +170760698728,222,0 +170760698776,223,0 +170760698824,222,0 +170760698871,222,0 +170760698919,222,0 +170760698967,217,0 +170760699017,217,0 +170760699065,217,0 +170760699112,218,0 +170760699162,219,0 +170760699210,219,0 +170760699259,220,0 +170760699307,220,0 +170760699355,221,0 +170760699403,221,0 +170760699451,222,0 +170760699500,222,0 +170760699550,222,0 +170760699599,222,0 +170760699647,222,0 +170760699695,221,0 +170760699745,221,0 +170760699792,222,0 +170760699840,217,0 +170760699888,214,0 +170760699936,215,0 +170760699984,215,0 +170760700034,215,0 +170760700082,215,0 +170760700129,216,0 +170760700177,216,0 +170760700225,216,0 +170760700275,218,0 +170760700324,219,0 +170760700372,219,0 +170760700420,220,0 +170760700468,220,0 +170760700518,220,0 +170760700567,221,0 +170760700617,222,0 +170760700664,221,0 +170760700714,221,0 +170760700762,215,0 +170760700811,215,0 +170760700859,215,0 +170760700909,216,0 +170760700957,216,0 +170760701005,217,0 +170760701054,217,0 +170760701104,218,0 +170760701152,218,0 +170760701201,219,0 +170760701250,220,0 +170760701298,221,0 +170760701346,221,0 +170760701394,221,0 +170760701442,222,0 +170760701490,222,0 +170760701540,222,0 +170760701587,222,0 +170760701635,216,0 +170760701683,214,0 +170760701731,215,0 +170760701779,216,0 +170760701827,216,0 +170760701875,216,0 +170760701923,217,0 +170760701971,217,0 +170760702019,218,0 +170760702067,218,0 +170760702115,220,0 +170760702164,220,0 +170760702212,220,0 +170760702260,222,0 +170760702308,222,0 +170760702357,222,0 +170760702405,222,0 +170760702453,224,0 +170760702501,221,0 +170760702551,215,0 +170760702600,215,0 +170760702648,216,0 +170760702696,217,0 +170760702746,217,0 +170760702794,217,0 +170760702841,218,0 +170760702889,218,0 +170760702937,218,0 +170760702985,219,0 +170760703033,219,0 +170760703081,220,0 +170760703129,220,0 +170760703177,221,0 +170760703225,221,0 +170760703273,222,0 +170760703321,222,0 +170760703368,221,0 +170760703416,216,0 +170760703464,216,0 +170760703514,216,0 +170760703561,217,0 +170760703609,218,0 +170760703657,217,0 +170760703705,219,0 +170760703755,220,0 +170760703802,220,0 +170760703850,220,0 +170760703898,220,0 +170760703946,221,0 +170760703994,221,0 +170760704042,220,0 +170760704090,221,0 +170760704138,222,0 +170760704186,222,0 +170760704235,221,0 +170760704285,216,0 +170760704333,215,0 +170760704382,216,0 +170760704431,216,0 +170760704479,217,0 +170760704527,217,0 +170760704575,217,0 +170760704623,217,0 +170760704671,218,0 +170760704719,218,0 +170760704767,219,0 +170760704815,218,0 +170760704863,221,0 +170760704911,221,0 +170760704959,222,0 +170760705007,222,0 +170760705054,221,0 +170760705102,221,0 +170760705150,218,0 +170760705198,216,0 +170760705246,217,0 +170760705294,217,0 +170760705343,218,0 +170760705393,219,0 +170760705442,219,0 +170760705490,219,0 +170760705538,220,0 +170760705586,220,0 +170760705636,221,0 +170760705684,221,0 +170760705733,221,0 +170760705783,221,0 +170760705832,222,0 +170760705880,222,0 +170760705928,222,0 +170760705977,222,0 +170760706026,221,0 +170760706073,216,0 +170760706121,217,0 +170760706169,218,0 +170760706217,218,0 +170760706265,218,0 +170760706313,218,0 +170760706361,219,0 +170760706409,219,0 +170760706459,221,0 +170760706507,221,0 +170760706555,221,0 +170760706604,223,0 +170760706652,222,0 +170760706701,222,0 +170760706749,222,0 +170760706797,222,0 +170760706845,222,0 +170760706893,221,0 +170760706941,217,0 +170760706989,217,0 +170760707037,218,0 +170760707086,219,0 +170760707136,218,0 +170760707184,219,0 +170760707232,219,0 +170760707280,220,0 +170760707329,220,0 +170760707377,221,0 +170760707426,221,0 +170760707474,222,0 +170760707522,222,0 +170760707570,223,0 +170760707618,222,0 +170760707666,221,0 +170760707714,222,0 +170760707762,221,0 +170760707810,217,0 +170760707859,217,0 +170760707908,218,0 +170760707956,216,0 +170760708004,218,0 +170760708052,220,0 +170760708100,219,0 +170760708148,219,0 +170760708196,219,0 +170760708244,220,0 +170760708293,220,0 +170760708341,221,0 +170760708391,221,0 +170760708439,221,0 +170760708487,221,0 +170760708536,221,0 +170760708584,221,0 +170760708632,220,0 +170760708682,216,0 +170760708731,215,0 +170760708781,216,0 +170760708829,216,0 +170760708878,217,0 +170760708926,217,0 +170760708976,218,0 +170760709025,218,0 +170760709075,219,0 +170760709123,219,0 +170760709171,219,0 +170760709220,220,0 +170760709268,220,0 +170760709316,220,0 +170760709364,221,0 +170760709413,221,0 +170760709461,221,0 +170760709509,220,0 +170760709557,216,0 +170760709605,216,0 +170760709654,217,0 +170760709704,217,0 +170760709752,218,0 +170760709801,219,0 +170760709849,219,0 +170760709899,220,0 +170760709947,220,0 +170760709995,220,0 +170760710042,220,0 +170760710092,221,0 +170760710140,221,0 +170760710189,221,0 +170760710237,221,0 +170760710285,221,0 +170760710333,221,0 +170760710381,221,0 +170760710430,217,0 +170760710478,217,0 +170760710528,218,0 +170760710575,219,0 +170760710623,219,0 +170760710671,219,0 +170760710719,219,0 +170760710767,221,0 +170760710814,222,0 +170760710862,220,0 +170760710910,221,0 +170760710958,220,0 +170760711006,222,0 +170760711054,221,0 +170760711101,222,0 +170760711149,220,0 +170760711197,221,0 +170760711245,221,0 +170760711293,220,0 +170760711341,216,0 +170760711388,216,0 +170760711438,216,0 +170760711487,217,0 +170760711537,217,0 +170760711585,218,0 +170760711633,218,0 +170760711681,219,0 +170760711728,220,0 +170760711776,220,0 +170760711824,220,0 +170760711872,221,0 +170760711920,220,0 +170760711968,220,0 +170760712016,221,0 +170760712064,220,0 +170760712112,220,0 +170760712160,220,0 +170760712208,215,0 +170760712256,215,0 +170760712304,214,0 +170760712354,215,0 +170760712401,216,0 +170760712449,217,0 +170760712497,217,0 +170760712545,217,0 +170760712592,217,0 +170760712640,218,0 +170760712688,219,0 +170760712736,219,0 +170760712785,219,0 +170760712833,219,0 +170760712883,220,0 +170760712931,220,0 +170760712978,219,0 +170760713026,220,0 +170760713074,215,0 +170760713122,214,0 +170760713171,214,0 +170760713221,215,0 +170760713269,215,0 +170760713318,215,0 +170760713368,216,0 +170760713416,217,0 +170760713464,217,0 +170760713513,217,0 +170760713561,218,0 +170760713609,219,0 +170760713657,218,0 +170760713705,219,0 +170760713753,219,0 +170760713801,220,0 +170760713850,220,0 +170760713898,220,0 +170760713946,216,0 +170760713994,215,0 +170760714042,215,0 +170760714090,216,0 +170760714138,217,0 +170760714187,217,0 +170760714235,217,0 +170760714283,218,0 +170760714331,219,0 +170760714379,219,0 +170760714427,219,0 +170760714475,220,0 +170760714523,220,0 +170760714572,221,0 +170760714622,222,0 +170760714671,222,0 +170760714719,221,0 +170760714768,221,0 +170760714816,216,0 +170760714864,216,0 +170760714912,216,0 +170760714960,217,0 +170760715010,218,0 +170760715058,219,0 +170760715107,219,0 +170760715157,220,0 +170760715205,221,0 +170760715253,221,0 +170760715300,221,0 +170760715348,221,0 +170760715396,221,0 +170760715444,221,0 +170760715492,222,0 +170760715540,221,0 +170760715588,221,0 +170760715636,221,0 +170760715684,215,0 +170760715732,214,0 +170760715780,215,0 +170760715828,215,0 +170760715877,216,0 +170760715927,216,0 +170760715976,216,0 +170760716026,217,0 +170760716075,217,0 +170760716123,218,0 +170760716171,219,0 +170760716219,219,0 +170760716267,219,0 +170760716314,220,0 +170760716362,220,0 +170760716410,220,0 +170760716458,221,0 +170760716508,220,0 +170760716557,214,0 +170760716605,214,0 +170760716654,214,0 +170760716702,215,0 +170760716750,215,0 +170760716800,216,0 +170760716849,216,0 +170760716897,217,0 +170760716945,218,0 +170760716993,219,0 +170760717040,218,0 +170760717088,219,0 +170760717138,219,0 +170760717186,219,0 +170760717234,219,0 +170760717283,220,0 +170760717333,220,0 +170760717380,221,0 +170760717428,221,0 +170760717478,222,0 +170760717526,223,0 +170760717575,222,0 +170760717623,222,0 +170760717671,222,0 +170760717719,221,0 +170760717767,221,0 +170760717815,216,0 +170760717863,215,0 +170760717911,216,0 +170760717959,217,0 +170760718007,217,0 +170760718055,217,0 +170760718102,218,0 +170760718150,218,0 +170760718198,218,0 +170760718246,220,0 +170760718294,220,0 +170760718344,220,0 +170760718392,221,0 +170760718440,219,0 +170760718489,221,0 +170760718537,221,0 +170760718587,221,0 +170760718634,221,0 +170760718682,216,0 +170760718730,217,0 +170760718780,217,0 +170760718828,217,0 +170760718877,218,0 +170760718927,219,0 +170760718975,218,0 +170760719023,219,0 +170760719072,219,0 +170760719120,219,0 +170760719168,220,0 +170760719216,220,0 +170760719263,220,0 +170760719311,221,0 +170760719359,221,0 +170760719407,221,0 +170760719455,221,0 +170760719503,220,0 +170760719551,216,0 +170760719599,216,0 +170760719647,217,0 +170760719695,217,0 +170760719745,218,0 +170760719794,219,0 +170760719842,219,0 +170760719890,219,0 +170760719939,225,0 +170760719987,220,0 +170760720035,222,0 +170760720083,221,0 +170760720131,221,0 +170760720179,222,0 +170760720227,221,0 +170760720276,221,0 +170760720324,221,0 +170760720372,216,0 +170760720420,215,0 +170760720468,216,0 +170760720515,217,0 +170760720563,217,0 +170760720611,218,0 +170760720659,218,0 +170760720708,218,0 +170760720756,219,0 +170760720804,219,0 +170760720853,220,0 +170760720901,220,0 +170760720949,221,0 +170760720996,222,0 +170760721044,222,0 +170760721092,221,0 +170760721142,222,0 +170760721191,221,0 +170760721239,215,0 +170760721287,215,0 +170760721335,216,0 +170760721383,215,0 +170760721431,217,0 +170760721479,217,0 +170760721526,217,0 +170760721574,219,0 +170760721624,219,0 +170760721672,219,0 +170760721721,219,0 +170760721771,220,0 +170760721818,220,0 +170760721866,220,0 +170760721914,220,0 +170760721964,220,0 +170760722012,220,0 +170760722061,221,0 +170760722111,215,0 +170760722158,214,0 +170760722206,215,0 +170760722254,215,0 +170760722304,215,0 +170760722353,216,0 +170760722401,217,0 +170760722451,217,0 +170760722499,218,0 +170760722548,219,0 +170760722596,218,0 +170760722644,218,0 +170760722692,219,0 +170760722739,220,0 +170760722787,220,0 +170760722835,220,0 +170760722883,221,0 +170760722931,220,0 +170760722979,215,0 +170760723028,214,0 +170760723076,215,0 +170760723126,215,0 +170760723175,216,0 +170760723223,216,0 +170760723271,216,0 +170760723319,217,0 +170760723367,218,0 +170760723416,219,0 +170760723464,219,0 +170760723512,220,0 +170760723561,220,0 +170760723609,219,0 +170760723657,220,0 +170760723705,221,0 +170760723753,221,0 +170760723802,216,0 +170760723850,215,0 +170760723898,215,0 +170760723946,215,0 +170760723993,216,0 +170760724041,216,0 +170760724089,217,0 +170760724137,217,0 +170760724185,217,0 +170760724232,218,0 +170760724282,219,0 +170760724330,219,0 +170760724378,219,0 +170760724425,219,0 +170760724475,220,0 +170760724522,220,0 +170760724570,220,0 +170760724618,221,0 +170760724666,216,0 +170760724714,215,0 +170760724762,215,0 +170760724810,215,0 +170760724857,216,0 +170760724905,216,0 +170760724953,216,0 +170760725001,217,0 +170760725049,218,0 +170760725097,218,0 +170760725145,219,0 +170760725193,219,0 +170760725242,219,0 +170760725290,219,0 +170760725339,219,0 +170760725387,220,0 +170760725435,221,0 +170760725483,220,0 +170760725531,217,0 +170760725579,215,0 +170760725627,216,0 +170760725675,216,0 +170760725724,217,0 +170760725772,217,0 +170760725820,218,0 +170760725868,218,0 +170760725915,219,0 +170760725965,219,0 +170760726013,219,0 +170760726060,221,0 +170760726108,220,0 +170760726156,220,0 +170760726204,220,0 +170760726252,221,0 +170760726299,221,0 +170760726347,220,0 +170760726395,216,0 +170760726443,216,0 +170760726491,217,0 +170760726539,217,0 +170760726587,218,0 +170760726634,218,0 +170760726682,219,0 +170760726730,219,0 +170760726778,220,0 +170760726826,220,0 +170760726874,221,0 +170760726924,221,0 +170760726973,221,0 +170760727021,221,0 +170760727069,222,0 +170760727117,221,0 +170760727166,220,0 +170760727214,220,0 +170760727263,217,0 +170760727311,216,0 +170760727359,217,0 +170760727408,217,0 +170760727458,218,0 +170760727507,219,0 +170760727557,219,0 +170760727604,219,0 +170760727654,219,0 +170760727703,219,0 +170760727751,221,0 +170760727801,220,0 +170760727849,220,0 +170760727897,221,0 +170760727945,220,0 +170760727994,221,0 +170760728044,219,0 +170760728093,220,0 +170760728142,215,0 +170760728192,215,0 +170760728240,217,0 +170760728289,216,0 +170760728337,217,0 +170760728385,217,0 +170760728435,217,0 +170760728482,218,0 +170760728530,218,0 +170760728578,219,0 +170760728626,220,0 +170760728674,219,0 +170760728722,220,0 +170760728771,220,0 +170760728819,222,0 +170760728869,221,0 +170760728918,221,0 +170760728968,221,0 +170760729017,216,0 +170760729065,216,0 +170760729115,217,0 +170760729164,218,0 +170760729214,218,0 +170760729263,219,0 +170760729313,218,0 +170760729361,219,0 +170760729409,220,0 +170760729457,221,0 +170760729504,220,0 +170760729552,220,0 +170760729600,221,0 +170760729648,222,0 +170760729696,222,0 +170760729744,221,0 +170760729794,221,0 +170760729843,217,0 +170760729891,217,0 +170760729941,218,0 +170760729989,218,0 +170760730037,218,0 +170760730086,219,0 +170760730134,220,0 +170760730182,220,0 +170760730230,222,0 +170760730279,221,0 +170760730327,221,0 +170760730375,221,0 +170760730425,221,0 +170760730473,222,0 +170760730520,223,0 +170760730568,221,0 +170760730616,221,0 +170760730664,221,0 +170760730712,218,0 +170760730760,218,0 +170760730808,219,0 +170760730856,219,0 +170760730905,219,0 +170760730953,220,0 +170760731001,221,0 +170760731049,221,0 +170760731097,221,0 +170760731145,222,0 +170760731193,221,0 +170760731241,222,0 +170760731290,221,0 +170760731338,222,0 +170760731386,222,0 +170760731434,221,0 +170760731483,222,0 +170760731531,220,0 +170760731579,217,0 +170760731627,217,0 +170760731675,217,0 +170760731723,218,0 +170760731773,218,0 +170760731822,219,0 +170760731870,219,0 +170760731918,220,0 +170760731966,220,0 +170760732015,221,0 +170760732063,222,0 +170760732111,222,0 +170760732159,222,0 +170760732207,222,0 +170760732256,223,0 +170760732304,220,0 +170760732352,221,0 +170760732402,220,0 +170760732450,216,0 +170760732497,216,0 +170760732547,218,0 +170760732595,218,0 +170760732643,219,0 +170760732691,219,0 +170760732739,219,0 +170760732787,219,0 +170760732834,221,0 +170760732884,221,0 +170760732933,222,0 +170760732983,222,0 +170760733031,222,0 +170760733079,222,0 +170760733127,221,0 +170760733176,221,0 +170760733224,221,0 +170760733274,216,0 +170760733322,216,0 +170760733371,216,0 +170760733421,217,0 +170760733468,218,0 +170760733518,217,0 +170760733566,219,0 +170760733614,219,0 +170760733662,219,0 +170760733710,220,0 +170760733759,221,0 +170760733807,222,0 +170760733856,221,0 +170760733906,221,0 +170760733954,222,0 +170760734002,221,0 +170760734050,222,0 +170760734098,220,0 +170760734146,216,0 +170760734193,215,0 +170760734243,217,0 +170760734291,217,0 +170760734340,217,0 +170760734388,218,0 +170760734436,219,0 +170760734484,219,0 +170760734532,220,0 +170760734580,220,0 +170760734628,220,0 +170760734676,220,0 +170760734724,221,0 +170760734773,221,0 +170760734821,222,0 +170760734869,222,0 +170760734917,222,0 +170760734965,221,0 +170760735013,216,0 +170760735062,215,0 +170760735112,216,0 +170760735160,217,0 +170760735207,217,0 +170760735257,219,0 +170760735305,219,0 +170760735353,219,0 +170760735401,219,0 +170760735448,220,0 +170760735496,221,0 +170760735544,220,0 +170760735592,221,0 +170760735640,221,0 +170760735690,222,0 +170760735738,221,0 +170760735785,221,0 +170760735833,221,0 +170760735883,215,0 +170760735931,215,0 +170760735979,216,0 +170760736026,216,0 +170760736074,217,0 +170760736122,217,0 +170760736170,218,0 +170760736218,219,0 +170760736265,219,0 +170760736313,219,0 +170760736361,220,0 +170760736409,220,0 +170760736458,219,0 +170760736506,221,0 +170760736554,220,0 +170760736602,221,0 +170760736650,220,0 +170760736698,216,0 +170760736746,215,0 +170760736794,216,0 +170760736841,216,0 +170760736889,216,0 +170760736937,217,0 +170760736985,218,0 +170760737035,218,0 +170760737082,219,0 +170760737130,220,0 +170760737178,220,0 +170760737226,221,0 +170760737274,220,0 +170760737324,221,0 +170760737372,221,0 +170760737421,221,0 +170760737469,221,0 +170760737517,220,0 +170760737565,216,0 +170760737613,216,0 +170760737660,216,0 +170760737710,217,0 +170760737758,217,0 +170760737806,217,0 +170760737854,219,0 +170760737902,218,0 +170760737950,219,0 +170760737998,219,0 +170760738045,220,0 +170760738093,220,0 +170760738141,220,0 +170760738191,221,0 +170760738240,222,0 +170760738288,221,0 +170760738336,221,0 +170760738386,220,0 +170760738434,215,0 +170760738481,215,0 +170760738531,215,0 +170760738580,216,0 +170760738630,216,0 +170760738678,217,0 +170760738726,218,0 +170760738773,218,0 +170760738821,218,0 +170760738869,219,0 +170760738917,220,0 +170760738965,220,0 +170760739015,220,0 +170760739064,220,0 +170760739114,221,0 +170760739162,221,0 +170760739210,220,0 +170760739258,219,0 +170760739305,214,0 +170760739353,214,0 +170760739401,215,0 +170760739449,215,0 +170760739497,216,0 +170760739545,216,0 +170760739593,216,0 +170760739642,216,0 +170760739690,217,0 +170760739738,217,0 +170760739786,218,0 +170760739835,219,0 +170760739883,219,0 +170760739931,219,0 +170760739979,219,0 +170760740029,219,0 +170760740077,220,0 +170760740125,216,0 +170760740173,215,0 +170760740221,215,0 +170760740268,215,0 +170760740318,215,0 +170760740366,216,0 +170760740415,216,0 +170760740463,217,0 +170760740511,218,0 +170760740559,218,0 +170760740607,219,0 +170760740656,219,0 +170760740704,220,0 +170760740752,220,0 +170760740800,220,0 +170760740850,220,0 +170760740899,220,0 +170760740947,220,0 +170760740995,215,0 +170760741044,215,0 +170760741092,216,0 +170760741140,216,0 +170760741188,217,0 +170760741236,217,0 +170760741284,218,0 +170760741334,219,0 +170760741382,219,0 +170760741431,220,0 +170760741479,220,0 +170760741527,220,0 +170760741575,220,0 +170760741623,220,0 +170760741671,221,0 +170760741719,221,0 +170760741767,221,0 +170760741815,220,0 +170760741864,216,0 +170760741914,216,0 +170760741963,216,0 +170760742011,217,0 +170760742059,218,0 +170760742107,218,0 +170760742157,219,0 +170760742206,219,0 +170760742256,220,0 +170760742305,220,0 +170760742353,221,0 +170760742401,220,0 +170760742449,221,0 +170760742498,221,0 +170760742548,220,0 +170760742598,221,0 +170760742645,220,0 +170760742695,216,0 +170760742743,216,0 +170760742792,216,0 +170760742840,217,0 +170760742888,217,0 +170760742938,218,0 +170760742986,218,0 +170760743034,219,0 +170760743081,220,0 +170760743129,219,0 +170760743179,220,0 +170760743227,220,0 +170760743275,224,0 +170760743323,223,0 +170760743372,221,0 +170760743420,222,0 +170760743468,221,0 +170760743517,219,0 +170760743565,215,0 +170760743613,216,0 +170760743661,217,0 +170760743709,217,0 +170760743759,217,0 +170760743808,217,0 +170760743858,219,0 +170760743906,219,0 +170760743954,219,0 +170760744003,220,0 +170760744051,220,0 +170760744099,220,0 +170760744147,221,0 +170760744195,221,0 +170760744244,221,0 +170760744292,221,0 +170760744340,220,0 +170760744388,216,0 +170760744437,216,0 +170760744485,217,0 +170760744533,217,0 +170760744583,218,0 +170760744631,219,0 +170760744678,219,0 +170760744726,220,0 +170760744774,220,0 +170760744822,220,0 +170760744870,221,0 +170760744918,222,0 +170760744967,221,0 +170760745017,221,0 +170760745066,221,0 +170760745114,221,0 +170760745164,220,0 +170760745212,217,0 +170760745261,217,0 +170760745309,218,0 +170760745357,218,0 +170760745405,218,0 +170760745455,219,0 +170760745504,219,0 +170760745554,220,0 +170760745602,221,0 +170760745651,221,0 +170760745699,221,0 +170760745747,221,0 +170760745795,222,0 +170760745844,221,0 +170760745892,220,0 +170760745940,221,0 +170760745988,221,0 +170760746036,217,0 +170760746084,216,0 +170760746134,217,0 +170760746182,218,0 +170760746230,219,0 +170760746279,219,0 +170760746327,219,0 +170760746375,220,0 +170760746423,220,0 +170760746471,220,0 +170760746520,222,0 +170760746570,221,0 +170760746618,222,0 +170760746666,222,0 +170760746715,221,0 +170760746765,221,0 +170760746814,221,0 +170760746862,216,0 +170760746910,216,0 +170760746958,216,0 +170760747008,216,0 +170760747056,217,0 +170760747105,218,0 +170760747153,219,0 +170760747201,218,0 +170760747249,219,0 +170760747297,219,0 +170760747345,219,0 +170760747393,221,0 +170760747441,220,0 +170760747489,221,0 +170760747537,221,0 +170760747585,222,0 +170760747633,221,0 +170760747681,220,0 +170760747729,216,0 +170760747778,216,0 +170760747826,217,0 +170760747876,218,0 +170760747925,218,0 +170760747973,218,0 +170760748021,219,0 +170760748070,219,0 +170760748118,220,0 +170760748168,220,0 +170760748217,221,0 +170760748265,221,0 +170760748315,221,0 +170760748364,221,0 +170760748412,221,0 +170760748460,221,0 +170760748508,221,0 +170760748558,216,0 +170760748606,216,0 +170760748654,216,0 +170760748702,218,0 +170760748750,218,0 +170760748799,219,0 +170760748847,219,0 +170760748895,219,0 +170760748943,220,0 +170760748991,221,0 +170760749040,220,0 +170760749088,221,0 +170760749136,220,0 +170760749186,221,0 +170760749234,223,0 +170760749282,222,0 +170760749330,221,0 +170760749379,217,0 +170760749427,216,0 +170760749475,217,0 +170760749523,218,0 +170760749573,218,0 +170760749621,218,0 +170760749669,218,0 +170760749717,220,0 +170760749766,221,0 +170760749816,222,0 +170760749865,221,0 +170760749913,221,0 +170760749961,222,0 +170760750011,222,0 +170760750059,221,0 +170760750107,221,0 +170760750155,221,0 +170760750203,216,0 +170760750250,215,0 +170760750298,216,0 +170760750346,217,0 +170760750394,217,0 +170760750442,218,0 +170760750490,218,0 +170760750538,219,0 +170760750586,219,0 +170760750634,220,0 +170760750682,219,0 +170760750731,221,0 +170760750781,221,0 +170760750830,220,0 +170760750878,220,0 +170760750926,220,0 +170760750974,220,0 +170760751023,220,0 +170760751073,215,0 +170760751123,216,0 +170760751170,217,0 +170760751218,218,0 +170760751268,218,0 +170760751316,218,0 +170760751365,219,0 +170760751415,219,0 +170760751463,219,0 +170760751511,220,0 +170760751559,221,0 +170760751607,221,0 +170760751655,221,0 +170760751703,221,0 +170760751750,221,0 +170760751798,221,0 +170760751846,220,0 +170760751894,215,0 +170760751942,215,0 +170760751990,215,0 +170760752038,216,0 +170760752088,217,0 +170760752136,217,0 +170760752185,217,0 +170760752233,218,0 +170760752283,218,0 +170760752331,220,0 +170760752379,220,0 +170760752428,220,0 +170760752476,221,0 +170760752524,221,0 +170760752573,220,0 +170760752624,220,0 +170760752673,220,0 +170760752721,215,0 +170760752769,215,0 +170760752817,215,0 +170760752865,215,0 +170760752913,216,0 +170760752961,216,0 +170760753008,216,0 +170760753056,217,0 +170760753106,217,0 +170760753154,218,0 +170760753202,218,0 +170760753250,220,0 +170760753298,219,0 +170760753347,219,0 +170760753397,220,0 +170760753445,220,0 +170760753494,221,0 +170760753542,220,0 +170760753590,220,0 +170760753638,215,0 +170760753686,216,0 +170760753734,216,0 +170760753783,217,0 +170760753831,216,0 +170760753881,217,0 +170760753930,217,0 +170760753978,217,0 +170760754026,218,0 +170760754074,218,0 +170760754124,219,0 +170760754172,219,0 +170760754219,219,0 +170760754269,220,0 +170760754317,220,0 +170760754365,220,0 +170760754414,215,0 +170760754462,215,0 +170760754510,216,0 +170760754558,217,0 +170760754606,217,0 +170760754654,217,0 +170760754704,218,0 +170760754752,219,0 +170760754801,220,0 +170760754849,220,0 +170760754899,220,0 +170760754946,221,0 +170760754996,221,0 +170760755044,221,0 +170760755092,221,0 +170760755141,221,0 +170760755189,220,0 +170760755239,217,0 +170760755288,217,0 +170760755336,218,0 +170760755386,219,0 +170760755434,219,0 +170760755482,219,0 +170760755530,220,0 +170760755579,221,0 +170760755629,220,0 +170760755678,221,0 +170760755726,221,0 +170760755774,221,0 +170760755822,222,0 +170760755870,221,0 +170760755917,222,0 +170760755965,220,0 +170760756013,220,0 +170760756061,218,0 +170760756109,218,0 +170760756157,218,0 +170760756205,218,0 +170760756254,219,0 +170760756302,219,0 +170760756350,220,0 +170760756398,220,0 +170760756446,221,0 +170760756494,221,0 +170760756543,221,0 +170760756593,222,0 +170760756640,222,0 +170760756690,221,0 +170760756740,223,0 +170760756788,221,0 +170760756835,220,0 +170760756883,217,0 +170760756931,217,0 +170760756979,217,0 +170760757029,218,0 +170760757077,218,0 +170760757124,218,0 +170760757172,219,0 +170760757220,219,0 +170760757270,219,0 +170760757318,220,0 +170760757366,220,0 +170760757414,222,0 +170760757462,221,0 +170760757509,221,0 +170760757557,221,0 +170760757605,221,0 +170760757655,221,0 +170760757703,217,0 +170760757751,216,0 +170760757800,217,0 +170760757850,217,0 +170760757898,217,0 +170760757945,218,0 +170760757993,219,0 +170760758041,219,0 +170760758091,219,0 +170760758140,220,0 +170760758188,220,0 +170760758236,222,0 +170760758284,220,0 +170760758332,220,0 +170760758381,222,0 +170760758431,221,0 +170760758479,221,0 +170760758527,221,0 +170760758575,216,0 +170760758623,217,0 +170760758670,217,0 +170760758720,217,0 +170760758768,218,0 +170760758816,218,0 +170760758864,219,0 +170760758912,220,0 +170760758959,220,0 +170760759007,220,0 +170760759055,221,0 +170760759104,221,0 +170760759152,222,0 +170760759200,222,0 +170760759248,221,0 +170760759296,220,0 +170760759344,220,0 +170760759394,216,0 +170760759442,216,0 +170760759490,217,0 +170760759539,217,0 +170760759589,218,0 +170760759638,219,0 +170760759686,219,0 +170760759734,220,0 +170760759783,221,0 +170760759831,220,0 +170760759881,221,0 +170760759929,221,0 +170760759977,221,0 +170760760025,222,0 +170760760074,221,0 +170760760122,221,0 +170760760170,221,0 +170760760218,216,0 +170760760266,216,0 +170760760314,217,0 +170760760362,218,0 +170760760411,218,0 +170760760459,219,0 +170760760507,220,0 +170760760555,220,0 +170760760603,220,0 +170760760652,221,0 +170760760702,225,0 +170760760750,221,0 +170760760798,222,0 +170760760845,220,0 +170760760895,221,0 +170760760944,221,0 +170760760994,220,0 +170760761042,216,0 +170760761091,215,0 +170760761141,216,0 +170760761191,216,0 +170760761238,217,0 +170760761286,217,0 +170760761336,218,0 +170760761384,218,0 +170760761432,219,0 +170760761480,219,0 +170760761528,220,0 +170760761575,220,0 +170760761625,221,0 +170760761674,220,0 +170760761722,221,0 +170760761770,221,0 +170760761818,220,0 +170760761866,216,0 +170760761914,214,0 +170760761962,215,0 +170760762009,216,0 +170760762057,216,0 +170760762105,217,0 +170760762155,217,0 +170760762203,218,0 +170760762250,218,0 +170760762298,219,0 +170760762348,219,0 +170760762396,219,0 +170760762445,221,0 +170760762493,220,0 +170760762541,220,0 +170760762588,220,0 +170760762636,220,0 +170760762684,221,0 +170760762732,214,0 +170760762780,214,0 +170760762829,215,0 +170760762877,216,0 +170760762925,216,0 +170760762973,217,0 +170760763021,217,0 +170760763069,217,0 +170760763117,218,0 +170760763164,218,0 +170760763212,219,0 +170760763260,219,0 +170760763308,220,0 +170760763356,220,0 +170760763403,220,0 +170760763451,220,0 +170760763499,221,0 +170760763547,216,0 +170760763595,215,0 +170760763643,215,0 +170760763691,216,0 +170760763738,217,0 +170760763786,217,0 +170760763834,218,0 +170760763882,218,0 +170760763930,219,0 +170760763978,219,0 +170760764025,219,0 +170760764073,220,0 +170760764121,220,0 +170760764169,220,0 +170760764217,220,0 +170760764265,221,0 +170760764314,221,0 +170760764362,217,0 +170760764410,215,0 +170760764458,215,0 +170760764505,216,0 +170760764553,217,0 +170760764601,217,0 +170760764649,217,0 +170760764697,217,0 +170760764745,217,0 +170760764793,219,0 +170760764840,219,0 +170760764888,219,0 +170760764936,220,0 +170760764984,220,0 +170760765032,221,0 +170760765081,220,0 +170760765129,221,0 +170760765177,220,0 +170760765225,216,0 +170760765273,216,0 +170760765322,216,0 +170760765372,217,0 +170760765420,217,0 +170760765469,218,0 +170760765517,218,0 +170760765567,219,0 +170760765615,219,0 +170760765663,220,0 +170760765712,220,0 +170760765760,221,0 +170760765808,221,0 +170760765858,220,0 +170760765906,222,0 +170760765955,221,0 +170760766005,220,0 +170760766053,216,0 +170760766101,216,0 +170760766150,216,0 +170760766200,217,0 +170760766247,218,0 +170760766297,218,0 +170760766345,218,0 +170760766393,219,0 +170760766441,220,0 +170760766489,220,0 +170760766537,221,0 +170760766584,221,0 +170760766634,221,0 +170760766682,221,0 +170760766732,221,0 +170760766779,221,0 +170760766827,221,0 +170760766877,216,0 +170760766925,215,0 +170760766974,216,0 +170760767024,216,0 +170760767072,217,0 +170760767122,217,0 +170760767171,218,0 +170760767219,219,0 +170760767267,219,0 +170760767316,219,0 +170760767366,220,0 +170760767415,220,0 +170760767463,221,0 +170760767513,219,0 +170760767562,221,0 +170760767612,221,0 +170760767660,220,0 +170760767708,216,0 +170760767756,215,0 +170760767804,217,0 +170760767852,216,0 +170760767900,218,0 +170760767949,217,0 +170760767999,218,0 +170760768047,219,0 +170760768095,219,0 +170760768144,220,0 +170760768194,220,0 +170760768242,220,0 +170760768291,219,0 +170760768339,221,0 +170760768389,221,0 +170760768437,221,0 +170760768485,220,0 +170760768533,216,0 +170760768581,216,0 +170760768629,216,0 +170760768678,217,0 +170760768726,217,0 +170760768774,218,0 +170760768824,219,0 +170760768872,219,0 +170760768919,220,0 +170760768969,220,0 +170760769018,221,0 +170760769066,221,0 +170760769116,221,0 +170760769164,222,0 +170760769213,221,0 +170760769261,221,0 +170760769309,221,0 +170760769357,220,0 +170760769405,219,0 +170760769453,219,0 +170760769501,219,0 +170760769549,220,0 +170760769597,220,0 +170760769645,220,0 +170760769693,221,0 +170760769741,221,0 +170760769788,221,0 +170760769838,221,0 +170760769886,222,0 +170760769935,221,0 +170760769985,221,0 +170760770033,221,0 +170760770081,221,0 +170760770129,222,0 +170760770177,220,0 +170760770226,219,0 +170760770276,219,0 +170760770325,219,0 +170760770373,219,0 +170760770421,219,0 +170760770469,220,0 +170760770519,222,0 +170760770568,221,0 +170760770618,221,0 +170760770667,221,0 +170760770715,221,0 +170760770765,221,0 +170760770812,221,0 +170760770860,221,0 +170760770908,221,0 +170760770956,220,0 +170760771004,220,0 +170760771052,215,0 +170760771100,216,0 +170760771148,216,0 +170760771196,217,0 +170760771244,218,0 +170760771292,218,0 +170760771340,218,0 +170760771389,218,0 +170760771437,220,0 +170760771485,221,0 +170760771533,220,0 +170760771581,220,0 +170760771629,222,0 +170760771678,221,0 +170760771726,221,0 +170760771774,221,0 +170760771822,220,0 +170760771871,216,0 +170760771919,216,0 +170760771967,216,0 +170760772015,217,0 +170760772064,217,0 +170760772112,218,0 +170760772160,218,0 +170760772208,219,0 +170760772256,220,0 +170760772304,220,0 +170760772351,220,0 +170760772399,219,0 +170760772447,221,0 +170760772495,221,0 +170760772543,221,0 +170760772591,222,0 +170760772640,220,0 +170760772688,216,0 +170760772736,216,0 +170760772784,216,0 +170760772832,217,0 +170760772880,218,0 +170760772928,218,0 +170760772977,218,0 +170760773025,220,0 +170760773073,219,0 +170760773121,220,0 +170760773171,220,0 +170760773220,221,0 +170760773268,221,0 +170760773317,223,0 +170760773367,221,0 +170760773415,221,0 +170760773463,220,0 +170760773511,216,0 +170760773559,216,0 +170760773607,217,0 +170760773656,217,0 +170760773704,218,0 +170760773754,219,0 +170760773802,219,0 +170760773850,220,0 +170760773899,220,0 +170760773947,221,0 +170760773995,221,0 +170760774045,221,0 +170760774093,221,0 +170760774140,225,0 +170760774190,221,0 +170760774238,221,0 +170760774287,221,0 +170760774335,216,0 +170760774385,217,0 +170760774433,217,0 +170760774481,218,0 +170760774529,218,0 +170760774577,218,0 +170760774625,220,0 +170760774673,219,0 +170760774720,220,0 +170760774770,221,0 +170760774818,221,0 +170760774867,221,0 +170760774915,221,0 +170760774963,222,0 +170760775011,222,0 +170760775059,222,0 +170760775107,221,0 +170760775155,217,0 +170760775203,215,0 +170760775252,216,0 +170760775300,216,0 +170760775348,217,0 +170760775396,217,0 +170760775444,218,0 +170760775494,219,0 +170760775543,219,0 +170760775592,219,0 +170760775642,220,0 +170760775690,220,0 +170760775738,222,0 +170760775786,222,0 +170760775834,221,0 +170760775882,221,0 +170760775931,220,0 +170760775979,217,0 +170760776029,215,0 +170760776078,216,0 +170760776126,216,0 +170760776174,217,0 +170760776224,217,0 +170760776273,218,0 +170760776321,219,0 +170760776369,218,0 +170760776417,219,0 +170760776465,219,0 +170760776514,220,0 +170760776562,220,0 +170760776610,221,0 +170760776658,221,0 +170760776706,221,0 +170760776756,220,0 +170760776803,215,0 +170760776851,215,0 +170760776899,215,0 +170760776947,216,0 +170760776994,216,0 +170760777042,216,0 +170760777090,217,0 +170760777140,218,0 +170760777187,218,0 +170760777235,218,0 +170760777283,219,0 +170760777331,220,0 +170760777379,219,0 +170760777427,220,0 +170760777474,221,0 +170760777522,221,0 +170760777570,222,0 +170760777618,215,0 +170760777666,215,0 +170760777714,215,0 +170760777761,216,0 +170760777811,216,0 +170760777859,217,0 +170760777906,217,0 +170760777954,219,0 +170760778002,218,0 +170760778050,219,0 +170760778098,220,0 +170760778145,221,0 +170760778193,220,0 +170760778241,222,0 +170760778289,221,0 +170760778337,221,0 +170760778385,220,0 +170760778432,216,0 +170760778480,216,0 +170760778530,216,0 +170760778578,217,0 +170760778626,217,0 +170760778674,218,0 +170760778722,219,0 +170760778770,218,0 +170760778817,219,0 +170760778865,220,0 +170760778913,220,0 +170760778963,220,0 +170760779012,218,0 +170760779060,220,0 +170760779108,221,0 +170760779156,221,0 +170760779204,221,0 +170760779254,216,0 +170760779301,217,0 +170760779351,217,0 +170760779399,218,0 +170760779447,218,0 +170760779494,218,0 +170760779542,219,0 +170760779592,219,0 +170760779640,220,0 +170760779688,220,0 +170760779736,221,0 +170760779783,221,0 +170760779831,221,0 +170760779879,222,0 +170760779927,220,0 +170760779975,220,0 +170760780023,220,0 +170760780073,216,0 +170760780121,215,0 +170760780168,217,0 +170760780216,217,0 +170760780264,218,0 +170760780312,218,0 +170760780360,219,0 +170760780408,219,0 +170760780456,219,0 +170760780505,220,0 +170760780553,220,0 +170760780602,222,0 +170760780652,221,0 +170760780700,222,0 +170760780749,221,0 +170760780797,221,0 +170760780845,221,0 +170760780893,215,0 +170760780941,214,0 +170760780990,214,0 +170760781040,215,0 +170760781088,215,0 +170760781137,216,0 +170760781185,216,0 +170760781233,216,0 +170760781282,216,0 +170760781330,217,0 +170760781378,218,0 +170760781426,219,0 +170760781474,219,0 +170760781522,219,0 +170760781570,220,0 +170760781619,220,0 +170760781667,220,0 +170760781715,215,0 +170760781763,215,0 +170760781811,215,0 +170760781860,215,0 +170760781908,216,0 +170760781956,217,0 +170760782006,217,0 +170760782054,218,0 +170760782103,218,0 +170760782151,219,0 +170760782199,219,0 +170760782247,219,0 +170760782296,219,0 +170760782344,221,0 +170760782392,221,0 +170760782440,220,0 +170760782488,220,0 +170760782535,217,0 +170760782583,216,0 +170760782631,217,0 +170760782679,218,0 +170760782727,218,0 +170760782775,219,0 +170760782825,219,0 +170760782874,220,0 +170760782922,220,0 +170760782971,220,0 +170760783019,221,0 +170760783067,221,0 +170760783115,221,0 +170760783165,221,0 +170760783212,223,0 +170760783260,220,0 +170760783308,220,0 +170760783356,218,0 +170760783404,218,0 +170760783452,218,0 +170760783500,219,0 +170760783548,220,0 +170760783596,219,0 +170760783643,220,0 +170760783691,220,0 +170760783741,220,0 +170760783789,221,0 +170760783837,221,0 +170760783884,221,0 +170760783932,221,0 +170760783980,221,0 +170760784028,222,0 +170760784076,221,0 +170760784124,220,0 +170760784172,217,0 +170760784220,217,0 +170760784267,217,0 +170760784315,217,0 +170760784363,218,0 +170760784411,221,0 +170760784459,220,0 +170760784507,220,0 +170760784554,220,0 +170760784602,220,0 +170760784650,221,0 +170760784698,220,0 +170760784746,220,0 +170760784794,219,0 +170760784842,220,0 +170760784891,220,0 +170760784939,220,0 +170760784987,216,0 +170760785035,216,0 +170760785083,216,0 +170760785131,217,0 +170760785179,217,0 +170760785228,217,0 +170760785278,218,0 +170760785327,219,0 +170760785375,219,0 +170760785423,222,0 +170760785471,220,0 +170760785519,220,0 +170760785567,221,0 +170760785616,221,0 +170760785664,220,0 +170760785712,220,0 +170760785760,220,0 +170760785808,216,0 +170760785856,217,0 +170760785903,216,0 +170760785951,218,0 +170760785999,218,0 +170760786047,218,0 +170760786095,219,0 +170760786144,220,0 +170760786192,220,0 +170760786240,221,0 +170760786288,222,0 +170760786335,221,0 +170760786383,222,0 +170760786431,221,0 +170760786479,221,0 +170760786527,221,0 +170760786576,220,0 +170760786624,217,0 +170760786672,216,0 +170760786722,217,0 +170760786769,218,0 +170760786817,218,0 +170760786865,219,0 +170760786913,220,0 +170760786961,220,0 +170760787009,221,0 +170760787057,221,0 +170760787106,221,0 +170760787154,221,0 +170760787202,220,0 +170760787251,221,0 +170760787299,221,0 +170760787347,221,0 +170760787395,221,0 +170760787443,216,0 +170760787491,217,0 +170760787539,217,0 +170760787587,218,0 +170760787637,218,0 +170760787685,218,0 +170760787733,219,0 +170760787780,220,0 +170760787830,222,0 +170760787879,221,0 +170760787929,221,0 +170760787977,221,0 +170760788025,221,0 +170760788074,222,0 +170760788124,222,0 +170760788173,220,0 +170760788223,220,0 +170760788271,216,0 +170760788319,216,0 +170760788368,217,0 +170760788416,218,0 +170760788464,218,0 +170760788512,218,0 +170760788560,219,0 +170760788608,219,0 +170760788656,219,0 +170760788705,220,0 +170760788755,220,0 +170760788804,220,0 +170760788854,220,0 +170760788903,221,0 +170760788951,221,0 +170760789001,221,0 +170760789050,217,0 +170760789098,217,0 +170760789146,217,0 +170760789194,218,0 +170760789242,219,0 +170760789290,219,0 +170760789338,219,0 +170760789386,220,0 +170760789433,220,0 +170760789481,220,0 +170760789529,221,0 +170760789577,221,0 +170760789625,221,0 +170760789675,218,0 +170760789722,220,0 +170760789770,221,0 +170760789820,220,0 +170760789869,217,0 +170760789917,217,0 +170760789967,217,0 +170760790015,218,0 +170760790063,218,0 +170760790110,218,0 +170760790158,219,0 +170760790206,220,0 +170760790254,220,0 +170760790303,221,0 +170760790351,221,0 +170760790399,221,0 +170760790447,221,0 +170760790495,221,0 +170760790543,218,0 +170760790591,221,0 +170760790640,221,0 +170760790688,216,0 +170760790736,217,0 +170760790784,217,0 +170760790832,217,0 +170760790880,218,0 +170760790928,218,0 +170760790977,219,0 +170760791025,219,0 +170760791075,220,0 +170760791123,221,0 +170760791172,221,0 +170760791222,220,0 +170760791271,221,0 +170760791321,220,0 +170760791368,222,0 +170760791419,221,0 +170760791466,221,0 +170760791514,215,0 +170760791562,216,0 +170760791610,216,0 +170760791658,217,0 +170760791708,217,0 +170760791756,218,0 +170760791804,218,0 +170760791851,219,0 +170760791901,220,0 +170760791949,220,0 +170760791997,221,0 +170760792046,221,0 +170760792094,221,0 +170760792143,221,0 +170760792193,221,0 +170760792241,221,0 +170760792289,219,0 +170760792338,215,0 +170760792388,215,0 +170760792436,216,0 +170760792484,216,0 +170760792531,217,0 +170760792581,217,0 +170760792629,217,0 +170760792677,218,0 +170760792724,218,0 +170760792772,219,0 +170760792820,219,0 +170760792868,220,0 +170760792916,220,0 +170760792963,220,0 +170760793011,220,0 +170760793059,221,0 +170760793107,217,0 +170760793155,215,0 +170760793203,215,0 +170760793251,217,0 +170760793299,216,0 +170760793347,216,0 +170760793394,217,0 +170760793442,218,0 +170760793490,218,0 +170760793538,218,0 +170760793586,219,0 +170760793634,220,0 +170760793684,221,0 +170760793733,220,0 +170760793781,220,0 +170760793829,221,0 +170760793877,220,0 +170760793924,219,0 +170760793972,214,0 +170760794020,215,0 +170760794068,215,0 +170760794116,215,0 +170760794163,215,0 +170760794211,216,0 +170760794259,217,0 +170760794307,217,0 +170760794355,218,0 +170760794402,219,0 +170760794450,220,0 +170760794498,221,0 +170760794546,220,0 +170760794594,221,0 +170760794643,221,0 +170760794691,221,0 +170760794739,215,0 +170760794787,214,0 +170760794835,215,0 +170760794884,216,0 +170760794934,216,0 +170760794982,217,0 +170760795030,217,0 +170760795078,218,0 +170760795126,219,0 +170760795175,219,0 +170760795223,219,0 +170760795271,219,0 +170760795319,222,0 +170760795367,220,0 +170760795415,221,0 +170760795463,220,0 +170760795511,220,0 +170760795559,216,0 +170760795607,215,0 +170760795656,216,0 +170760795704,216,0 +170760795754,217,0 +170760795802,218,0 +170760795850,218,0 +170760795899,218,0 +170760795947,218,0 +170760795996,220,0 +170760796044,220,0 +170760796092,220,0 +170760796142,220,0 +170760796190,220,0 +170760796239,221,0 +170760796287,221,0 +170760796335,220,0 +170760796383,217,0 +170760796431,217,0 +170760796479,218,0 +170760796527,218,0 +170760796575,219,0 +170760796622,219,0 +170760796670,220,0 +170760796718,220,0 +170760796766,221,0 +170760796814,220,0 +170760796862,221,0 +170760796910,221,0 +170760796958,222,0 +170760797007,221,0 +170760797055,221,0 +170760797103,221,0 +170760797151,220,0 +170760797198,217,0 +170760797246,217,0 +170760797294,217,0 +170760797342,218,0 +170760797390,218,0 +170760797438,219,0 +170760797485,220,0 +170760797533,220,0 +170760797581,220,0 +170760797629,220,0 +170760797677,221,0 +170760797725,221,0 +170760797773,222,0 +170760797822,221,0 +170760797871,220,0 +170760797919,221,0 +170760797967,221,0 +170760798015,216,0 +170760798064,217,0 +170760798112,218,0 +170760798160,218,0 +170760798208,220,0 +170760798256,219,0 +170760798304,219,0 +170760798352,220,0 +170760798400,220,0 +170760798447,221,0 +170760798495,220,0 +170760798543,221,0 +170760798591,222,0 +170760798639,223,0 +170760798687,221,0 +170760798735,221,0 +170760798782,220,0 +170760798830,216,0 +170760798878,216,0 +170760798926,216,0 +170760798975,217,0 +170760799023,217,0 +170760799073,218,0 +170760799121,218,0 +170760799169,219,0 +170760799218,219,0 +170760799266,220,0 +170760799316,220,0 +170760799364,221,0 +170760799411,221,0 +170760799459,221,0 +170760799507,221,0 +170760799555,221,0 +170760799603,220,0 +170760799651,217,0 +170760799698,218,0 +170760799746,218,0 +170760799794,219,0 +170760799842,219,0 +170760799890,220,0 +170760799938,220,0 +170760799986,220,0 +170760800034,221,0 +170760800082,221,0 +170760800129,221,0 +170760800177,222,0 +170760800225,222,0 +170760800273,221,0 +170760800321,221,0 +170760800370,221,0 +170760800420,220,0 +170760800468,218,0 +170760800517,219,0 +170760800567,219,0 +170760800615,220,0 +170760800664,221,0 +170760800712,221,0 +170760800760,221,0 +170760800808,221,0 +170760800856,222,0 +170760800904,222,0 +170760800952,222,0 +170760801001,223,0 +170760801049,222,0 +170760801097,222,0 +170760801146,220,0 +170760801196,221,0 +170760801244,218,0 +170760801292,218,0 +170760801339,218,0 +170760801387,218,0 +170760801435,219,0 +170760801484,220,0 +170760801532,220,0 +170760801580,220,0 +170760801628,221,0 +170760801676,221,0 +170760801724,221,0 +170760801772,222,0 +170760801820,222,0 +170760801868,221,0 +170760801916,221,0 +170760801965,221,0 +170760802015,220,0 +170760802062,216,0 +170760802110,217,0 +170760802158,218,0 +170760802206,218,0 +170760802254,218,0 +170760802302,219,0 +170760802349,220,0 +170760802397,220,0 +170760802445,221,0 +170760802493,220,0 +170760802541,221,0 +170760802588,221,0 +170760802636,221,0 +170760802684,221,0 +170760802732,221,0 +170760802780,221,0 +170760802827,221,0 +170760802875,218,0 +170760802923,217,0 +170760802971,217,0 +170760803019,219,0 +170760803066,218,0 +170760803114,219,0 +170760803162,219,0 +170760803210,220,0 +170760803258,220,0 +170760803306,220,0 +170760803353,221,0 +170760803401,221,0 +170760803451,221,0 +170760803500,221,0 +170760803548,221,0 +170760803596,221,0 +170760803644,220,0 +170760803692,217,0 +170760803740,217,0 +170760803789,217,0 +170760803837,218,0 +170760803885,219,0 +170760803933,220,0 +170760803983,220,0 +170760804030,219,0 +170760804080,221,0 +170760804128,220,0 +170760804176,221,0 +170760804224,221,0 +170760804273,221,0 +170760804321,221,0 +170760804371,221,0 +170760804419,221,0 +170760804467,221,0 +170760804514,216,0 +170760804562,215,0 +170760804612,216,0 +170760804660,217,0 +170760804709,217,0 +170760804757,218,0 +170760804805,218,0 +170760804853,219,0 +170760804901,219,0 +170760804948,221,0 +170760804998,220,0 +170760805046,220,0 +170760805094,221,0 +170760805143,221,0 +170760805191,220,0 +170760805241,220,0 +170760805289,220,0 +170760805338,214,0 +170760805386,214,0 +170760805434,215,0 +170760805482,216,0 +170760805531,216,0 +170760805579,216,0 +170760805627,217,0 +170760805675,216,0 +170760805723,218,0 +170760805772,219,0 +170760805820,219,0 +170760805868,219,0 +170760805917,219,0 +170760805965,221,0 +170760806015,220,0 +170760806064,221,0 +170760806113,218,0 +170760806161,214,0 +170760806209,215,0 +170760806257,215,0 +170760806307,215,0 +170760806354,216,0 +170760806402,216,0 +170760806450,216,0 +170760806500,216,0 +170760806549,216,0 +170760806597,217,0 +170760806647,218,0 +170760806695,219,0 +170760806743,219,0 +170760806791,219,0 +170760806840,219,0 +170760806888,220,0 +170760806937,215,0 +170760806985,214,0 +170760807033,215,0 +170760807081,215,0 +170760807131,215,0 +170760807179,215,0 +170760807227,215,0 +170760807276,216,0 +170760807324,216,0 +170760807372,217,0 +170760807420,217,0 +170760807468,219,0 +170760807516,218,0 +170760807563,219,0 +170760807613,218,0 +170760807661,220,0 +170760807709,215,0 +170760807757,215,0 +170760807806,216,0 +170760807854,216,0 +170760807902,216,0 +170760807950,217,0 +170760807999,218,0 +170760808047,218,0 +170760808097,218,0 +170760808145,219,0 +170760808193,220,0 +170760808242,220,0 +170760808290,220,0 +170760808338,221,0 +170760808386,221,0 +170760808434,221,0 +170760808483,220,0 +170760808531,218,0 +170760808579,219,0 +170760808627,219,0 +170760808675,219,0 +170760808723,222,0 +170760808771,220,0 +170760808821,221,0 +170760808869,222,0 +170760808917,221,0 +170760808966,221,0 +170760809014,222,0 +170760809062,221,0 +170760809111,221,0 +170760809159,220,0 +170760809209,221,0 +170760809257,219,0 +170760809305,220,0 +170760809354,219,0 +170760809402,219,0 +170760809450,220,0 +170760809498,220,0 +170760809546,221,0 +170760809595,221,0 +170760809645,221,0 +170760809694,221,0 +170760809744,221,0 +170760809792,222,0 +170760809841,221,0 +170760809891,221,0 +170760809939,221,0 +170760809988,222,0 +170760810038,220,0 +170760810086,217,0 +170760810133,217,0 +170760810183,217,0 +170760810231,218,0 +170760810279,219,0 +170760810327,218,0 +170760810376,219,0 +170760810424,220,0 +170760810472,221,0 +170760810520,220,0 +170760810568,221,0 +170760810616,221,0 +170760810665,221,0 +170760810713,221,0 +170760810761,221,0 +170760810809,221,0 +170760810857,219,0 +170760810906,216,0 +170760810954,217,0 +170760811002,217,0 +170760811052,218,0 +170760811100,218,0 +170760811148,219,0 +170760811197,219,0 +170760811245,220,0 +170760811293,220,0 +170760811341,220,0 +170760811390,220,0 +170760811438,221,0 +170760811486,221,0 +170760811534,221,0 +170760811582,221,0 +170760811630,220,0 +170760811679,217,0 +170760811727,218,0 +170760811775,218,0 +170760811825,219,0 +170760811873,220,0 +170760811921,219,0 +170760811969,219,0 +170760812018,221,0 +170760812066,221,0 +170760812115,221,0 +170760812163,222,0 +170760812211,222,0 +170760812259,222,0 +170760812307,221,0 +170760812355,221,0 +170760812403,220,0 +170760812451,218,0 +170760812501,218,0 +170760812550,218,0 +170760812600,219,0 +170760812648,220,0 +170760812696,220,0 +170760812745,221,0 +170760812793,220,0 +170760812841,222,0 +170760812889,221,0 +170760812938,221,0 +170760812986,221,0 +170760813034,221,0 +170760813082,222,0 +170760813130,221,0 +170760813179,220,0 +170760813227,216,0 +170760813277,217,0 +170760813326,218,0 +170760813374,219,0 +170760813422,218,0 +170760813470,219,0 +170760813520,220,0 +170760813568,220,0 +170760813616,221,0 +170760813663,221,0 +170760813711,221,0 +170760813759,222,0 +170760813807,222,0 +170760813855,222,0 +170760813903,221,0 +170760813951,221,0 +170760814000,220,0 +170760814048,216,0 +170760814097,216,0 +170760814145,217,0 +170760814193,217,0 +170760814241,217,0 +170760814289,218,0 +170760814337,219,0 +170760814385,219,0 +170760814433,220,0 +170760814480,220,0 +170760814528,219,0 +170760814578,220,0 +170760814626,220,0 +170760814673,221,0 +170760814721,221,0 +170760814769,220,0 +170760814817,215,0 +170760814865,214,0 +170760814913,215,0 +170760814961,216,0 +170760815009,216,0 +170760815057,217,0 +170760815106,217,0 +170760815154,218,0 +170760815202,218,0 +170760815251,219,0 +170760815299,219,0 +170760815347,220,0 +170760815395,220,0 +170760815443,221,0 +170760815490,220,0 +170760815538,221,0 +170760815586,220,0 +170760815634,215,0 +170760815682,215,0 +170760815730,216,0 +170760815777,216,0 +170760815825,216,0 +170760815875,217,0 +170760815923,218,0 +170760815972,218,0 +170760816020,219,0 +170760816068,219,0 +170760816116,221,0 +170760816164,221,0 +170760816213,220,0 +170760816261,220,0 +170760816309,221,0 +170760816357,220,0 +170760816405,216,0 +170760816455,216,0 +170760816503,217,0 +170760816551,217,0 +170760816600,218,0 +170760816648,218,0 +170760816696,218,0 +170760816746,219,0 +170760816794,220,0 +170760816841,219,0 +170760816889,221,0 +170760816937,220,0 +170760816985,221,0 +170760817035,221,0 +170760817084,220,0 +170760817132,220,0 +170760817180,216,0 +170760817228,215,0 +170760817276,216,0 +170760817325,216,0 +170760817373,217,0 +170760817421,218,0 +170760817469,219,0 +170760817517,219,0 +170760817564,218,0 +170760817612,220,0 +170760817660,220,0 +170760817708,221,0 +170760817756,221,0 +170760817805,220,0 +170760817855,220,0 +170760817903,221,0 +170760817951,221,0 +170760818000,215,0 +170760818048,216,0 +170760818096,216,0 +170760818144,217,0 +170760818192,217,0 +170760818240,218,0 +170760818288,218,0 +170760818336,218,0 +170760818384,219,0 +170760818432,219,0 +170760818479,219,0 +170760818527,220,0 +170760818575,221,0 +170760818623,220,0 +170760818671,220,0 +170760818719,220,0 +170760818766,215,0 +170760818814,215,0 +170760818862,216,0 +170760818910,216,0 +170760818958,216,0 +170760819006,217,0 +170760819054,217,0 +170760819101,217,0 +170760819149,219,0 +170760819197,219,0 +170760819245,219,0 +170760819294,220,0 +170760819342,221,0 +170760819392,220,0 +170760819440,220,0 +170760819489,220,0 +170760819539,215,0 +170760819587,215,0 +170760819634,215,0 +170760819684,216,0 +170760819734,217,0 +170760819781,217,0 +170760819829,219,0 +170760819877,218,0 +170760819925,219,0 +170760819973,219,0 +170760820021,220,0 +170760820069,220,0 +170760820117,221,0 +170760820165,221,0 +170760820213,220,0 +170760820260,221,0 +170760820310,220,0 +170760820359,215,0 +170760820407,216,0 +170760820455,216,0 +170760820503,217,0 +170760820551,217,0 +170760820599,218,0 +170760820649,219,0 +170760820698,220,0 +170760820746,220,0 +170760820794,221,0 +170760820842,221,0 +170760820890,222,0 +170760820938,221,0 +170760820986,221,0 +170760821033,221,0 +170760821081,220,0 +170760821129,217,0 +170760821179,217,0 +170760821227,217,0 +170760821275,217,0 +170760821323,218,0 +170760821371,219,0 +170760821420,219,0 +170760821468,220,0 +170760821518,220,0 +170760821566,220,0 +170760821614,221,0 +170760821662,221,0 +170760821710,221,0 +170760821759,221,0 +170760821809,220,0 +170760821858,221,0 +170760821906,216,0 +170760821954,217,0 +170760822002,218,0 +170760822050,218,0 +170760822098,218,0 +170760822146,219,0 +170760822194,219,0 +170760822243,219,0 +170760822293,219,0 +170760822341,220,0 +170760822390,221,0 +170760822438,220,0 +170760822486,220,0 +170760822534,221,0 +170760822582,222,0 +170760822630,221,0 +170760822678,220,0 +170760822725,216,0 +170760822773,217,0 +170760822821,217,0 +170760822871,217,0 +170760822919,218,0 +170760822967,218,0 +170760823015,218,0 +170760823063,219,0 +170760823111,221,0 +170760823158,221,0 +170760823208,220,0 +170760823256,220,0 +170760823305,221,0 +170760823355,221,0 +170760823404,221,0 +170760823452,222,0 +170760823500,217,0 +170760823550,217,0 +170760823600,218,0 +170760823648,218,0 +170760823696,219,0 +170760823743,219,0 +170760823791,219,0 +170760823841,220,0 +170760823889,220,0 +170760823937,220,0 +170760823985,220,0 +170760824032,221,0 +170760824080,222,0 +170760824128,221,0 +170760824176,222,0 +170760824224,222,0 +170760824272,217,0 +170760824321,219,0 +170760824371,219,0 +170760824419,218,0 +170760824468,219,0 +170760824516,219,0 +170760824564,220,0 +170760824612,221,0 +170760824660,221,0 +170760824708,221,0 +170760824758,222,0 +170760824806,222,0 +170760824853,221,0 +170760824901,222,0 +170760824949,221,0 +170760824997,221,0 +170760825045,220,0 +170760825093,219,0 +170760825142,219,0 +170760825190,219,0 +170760825238,219,0 +170760825288,220,0 +170760825336,221,0 +170760825384,221,0 +170760825432,220,0 +170760825480,221,0 +170760825528,222,0 +170760825575,222,0 +170760825623,222,0 +170760825671,222,0 +170760825721,221,0 +170760825769,221,0 +170760825817,221,0 +170760825865,217,0 +170760825913,216,0 +170760825962,217,0 +170760826010,218,0 +170760826058,218,0 +170760826108,219,0 +170760826155,219,0 +170760826203,220,0 +170760826251,219,0 +170760826299,221,0 +170760826347,220,0 +170760826397,221,0 +170760826444,221,0 +170760826494,222,0 +170760826542,221,0 +170760826590,221,0 +170760826638,220,0 +170760826685,215,0 +170760826733,215,0 +170760826783,216,0 +170760826831,216,0 +170760826879,216,0 +170760826927,217,0 +170760826974,217,0 +170760827022,218,0 +170760827072,218,0 +170760827120,220,0 +170760827169,221,0 +170760827217,220,0 +170760827265,221,0 +170760827313,221,0 +170760827362,220,0 +170760827410,221,0 +170760827458,215,0 +170760827508,215,0 +170760827556,216,0 +170760827604,216,0 +170760827652,216,0 +170760827699,217,0 +170760827749,217,0 +170760827797,218,0 +170760827845,219,0 +170760827894,219,0 +170760827942,220,0 +170760827990,220,0 +170760828040,220,0 +170760828088,221,0 +170760828135,221,0 +170760828183,221,0 +170760828231,216,0 +170760828279,215,0 +170760828327,216,0 +170760828377,216,0 +170760828425,217,0 +170760828474,217,0 +170760828522,218,0 +170760828570,218,0 +170760828620,218,0 +170760828669,219,0 +170760828719,220,0 +170760828767,221,0 +170760828815,220,0 +170760828863,220,0 +170760828911,221,0 +170760828959,221,0 +170760829006,220,0 +170760829054,216,0 +170760829102,216,0 +170760829150,218,0 +170760829198,217,0 +170760829246,218,0 +170760829294,218,0 +170760829342,219,0 +170760829391,219,0 +170760829439,220,0 +170760829487,220,0 +170760829535,221,0 +170760829583,221,0 +170760829631,221,0 +170760829679,221,0 +170760829727,221,0 +170760829775,221,0 +170760829824,217,0 +170760829874,217,0 +170760829922,218,0 +170760829971,218,0 +170760830019,219,0 +170760830067,218,0 +170760830115,219,0 +170760830163,220,0 +170760830211,221,0 +170760830259,221,0 +170760830308,221,0 +170760830356,221,0 +170760830405,221,0 +170760830453,220,0 +170760830503,221,0 +170760830551,220,0 +170760830600,216,0 +170760830648,216,0 +170760830696,217,0 +170760830744,217,0 +170760830794,217,0 +170760830841,218,0 +170760830889,218,0 +170760830937,219,0 +170760830987,219,0 +170760831035,219,0 +170760831083,220,0 +170760831130,221,0 +170760831178,221,0 +170760831226,221,0 +170760831274,221,0 +170760831322,220,0 +170760831369,220,0 +170760831417,216,0 +170760831465,216,0 +170760831513,217,0 +170760831561,217,0 +170760831609,218,0 +170760831656,218,0 +170760831704,219,0 +170760831752,219,0 +170760831800,220,0 +170760831848,221,0 +170760831895,221,0 +170760831943,221,0 +170760831991,221,0 +170760832039,221,0 +170760832087,220,0 +170760832135,220,0 +170760832183,218,0 +170760832230,215,0 +170760832278,216,0 +170760832326,216,0 +170760832374,217,0 +170760832422,218,0 +170760832469,218,0 +170760832519,219,0 +170760832567,219,0 +170760832615,219,0 +170760832664,220,0 +170760832713,220,0 +170760832761,221,0 +170760832809,220,0 +170760832857,220,0 +170760832905,221,0 +170760832953,219,0 +170760833002,215,0 +170760833050,216,0 +170760833098,217,0 +170760833146,217,0 +170760833194,218,0 +170760833241,218,0 +170760833289,219,0 +170760833337,220,0 +170760833385,220,0 +170760833434,220,0 +170760833482,220,0 +170760833530,221,0 +170760833578,220,0 +170760833626,221,0 +170760833674,221,0 +170760833723,220,0 +170760833771,218,0 +170760833819,218,0 +170760833867,218,0 +170760833914,219,0 +170760833962,219,0 +170760834012,220,0 +170760834060,220,0 +170760834107,220,0 +170760834155,221,0 +170760834203,222,0 +170760834251,221,0 +170760834299,221,0 +170760834347,221,0 +170760834394,221,0 +170760834442,221,0 +170760834490,220,0 +170760834538,218,0 +170760834586,217,0 +170760834634,217,0 +170760834682,217,0 +170760834729,218,0 +170760834777,218,0 +170760834825,219,0 +170760834873,220,0 +170760834921,219,0 +170760834970,219,0 +170760835018,221,0 +170760835066,221,0 +170760835114,220,0 +170760835162,221,0 +170760835210,221,0 +170760835258,221,0 +170760835306,221,0 +170760835355,216,0 +170760835403,216,0 +170760835453,217,0 +170760835501,218,0 +170760835549,218,0 +170760835597,218,0 +170760835644,219,0 +170760835692,219,0 +170760835742,220,0 +170760835790,219,0 +170760835838,220,0 +170760835885,220,0 +170760835933,221,0 +170760835981,221,0 +170760836031,221,0 +170760836079,220,0 +170760836129,217,0 +170760836178,217,0 +170760836226,217,0 +170760836274,218,0 +170760836322,218,0 +170760836370,219,0 +170760836419,219,0 +170760836467,220,0 +170760836515,220,0 +170760836563,224,0 +170760836611,224,0 +170760836661,222,0 +170760836708,221,0 +170760836756,222,0 +170760836804,221,0 +170760836854,221,0 +170760836902,220,0 +170760836951,217,0 +170760836999,217,0 +170760837047,218,0 +170760837095,218,0 +170760837143,218,0 +170760837192,219,0 +170760837240,219,0 +170760837288,220,0 +170760837336,221,0 +170760837385,221,0 +170760837433,221,0 +170760837481,221,0 +170760837529,221,0 +170760837577,222,0 +170760837625,221,0 +170760837672,220,0 +170760837720,218,0 +170760837768,218,0 +170760837816,219,0 +170760837864,219,0 +170760837913,220,0 +170760837961,220,0 +170760838009,220,0 +170760838057,221,0 +170760838106,222,0 +170760838155,222,0 +170760838203,222,0 +170760838251,222,0 +170760838299,222,0 +170760838347,221,0 +170760838394,221,0 +170760838442,221,0 +170760838490,219,0 +170760838538,217,0 +170760838586,217,0 +170760838635,217,0 +170760838683,218,0 +170760838732,218,0 +170760838780,218,0 +170760838828,219,0 +170760838876,219,0 +170760838924,220,0 +170760838973,221,0 +170760839021,221,0 +170760839069,221,0 +170760839117,221,0 +170760839165,222,0 +170760839214,221,0 +170760839263,220,0 +170760839311,216,0 +170760839359,217,0 +170760839407,217,0 +170760839455,218,0 +170760839503,218,0 +170760839550,219,0 +170760839598,219,0 +170760839646,220,0 +170760839694,222,0 +170760839742,221,0 +170760839790,221,0 +170760839839,221,0 +170760839887,222,0 +170760839935,224,0 +170760839984,221,0 +170760840032,220,0 +170760840080,217,0 +170760840128,217,0 +170760840175,217,0 +170760840223,218,0 +170760840271,219,0 +170760840321,220,0 +170760840368,219,0 +170760840416,219,0 +170760840466,220,0 +170760840514,221,0 +170760840563,221,0 +170760840611,219,0 +170760840660,222,0 +170760840710,221,0 +170760840758,221,0 +170760840806,220,0 +170760840854,219,0 +170760840902,217,0 +170760840950,217,0 +170760840999,218,0 +170760841049,218,0 +170760841096,219,0 +170760841144,220,0 +170760841192,221,0 +170760841240,220,0 +170760841288,220,0 +170760841336,221,0 +170760841383,221,0 +170760841431,221,0 +170760841479,221,0 +170760841527,222,0 +170760841575,221,0 +170760841623,220,0 +170760841672,216,0 +170760841722,217,0 +170760841771,217,0 +170760841819,217,0 +170760841867,218,0 +170760841915,218,0 +170760841963,219,0 +170760842010,219,0 +170760842058,219,0 +170760842106,221,0 +170760842154,220,0 +170760842203,221,0 +170760842251,221,0 +170760842301,219,0 +170760842350,220,0 +170760842398,220,0 +170760842446,215,0 +170760842494,215,0 +170760842543,215,0 +170760842592,216,0 +170760842640,216,0 +170760842690,216,0 +170760842738,217,0 +170760842786,218,0 +170760842834,219,0 +170760842883,219,0 +170760842933,219,0 +170760842981,220,0 +170760843028,220,0 +170760843076,221,0 +170760843124,221,0 +170760843172,220,0 +170760843220,219,0 +170760843270,215,0 +170760843319,216,0 +170760843369,216,0 +170760843417,217,0 +170760843465,217,0 +170760843513,218,0 +170760843560,218,0 +170760843608,218,0 +170760843656,219,0 +170760843704,220,0 +170760843752,220,0 +170760843800,220,0 +170760843849,221,0 +170760843897,220,0 +170760843945,220,0 +170760843992,219,0 +170760844040,215,0 +170760844088,215,0 +170760844136,216,0 +170760844184,216,0 +170760844232,216,0 +170760844279,217,0 +170760844327,217,0 +170760844375,217,0 +170760844423,220,0 +170760844472,219,0 +170760844521,219,0 +170760844569,219,0 +170760844619,219,0 +170760844667,219,0 +170760844715,220,0 +170760844762,220,0 +170760844812,216,0 +170760844860,215,0 +170760844908,216,0 +170760844957,216,0 +170760845007,217,0 +170760845055,217,0 +170760845103,218,0 +170760845150,218,0 +170760845198,219,0 +170760845246,219,0 +170760845294,220,0 +170760845342,220,0 +170760845392,220,0 +170760845440,221,0 +170760845489,220,0 +170760845539,220,0 +170760845588,216,0 +170760845636,216,0 +170760845684,217,0 +170760845732,217,0 +170760845782,218,0 +170760845829,219,0 +170760845877,219,0 +170760845927,219,0 +170760845975,220,0 +170760846023,221,0 +170760846071,221,0 +170760846120,220,0 +170760846168,221,0 +170760846218,221,0 +170760846265,221,0 +170760846315,220,0 +170760846363,220,0 +170760846411,216,0 +170760846459,217,0 +170760846507,217,0 +170760846555,217,0 +170760846604,218,0 +170760846654,219,0 +170760846701,220,0 +170760846749,219,0 +170760846797,219,0 +170760846845,220,0 +170760846893,223,0 +170760846941,219,0 +170760846989,221,0 +170760847037,221,0 +170760847085,221,0 +170760847133,220,0 +170760847182,216,0 +170760847230,215,0 +170760847280,216,0 +170760847327,217,0 +170760847375,217,0 +170760847423,217,0 +170760847473,218,0 +170760847521,217,0 +170760847569,218,0 +170760847616,219,0 +170760847664,219,0 +170760847712,219,0 +170760847760,220,0 +170760847808,221,0 +170760847858,221,0 +170760847906,220,0 +170760847954,216,0 +170760848002,215,0 +170760848051,216,0 +170760848101,217,0 +170760848148,217,0 +170760848198,218,0 +170760848246,218,0 +170760848294,218,0 +170760848342,218,0 +170760848390,219,0 +170760848438,219,0 +170760848486,222,0 +170760848534,219,0 +170760848582,222,0 +170760848630,221,0 +170760848677,221,0 +170760848725,220,0 +170760848773,217,0 +170760848821,217,0 +170760848869,217,0 +170760848918,218,0 +170760848966,218,0 +170760849014,219,0 +170760849062,219,0 +170760849112,219,0 +170760849160,221,0 +170760849208,221,0 +170760849255,220,0 +170760849303,221,0 +170760849351,221,0 +170760849399,221,0 +170760849447,221,0 +170760849495,220,0 +170760849543,218,0 +170760849591,218,0 +170760849639,218,0 +170760849687,218,0 +170760849735,219,0 +170760849782,220,0 +170760849830,220,0 +170760849878,220,0 +170760849926,221,0 +170760849974,221,0 +170760850022,222,0 +170760850070,221,0 +170760850117,221,0 +170760850165,221,0 +170760850213,222,0 +170760850261,220,0 +170760850309,220,0 +170760850356,217,0 +170760850404,218,0 +170760850452,219,0 +170760850500,219,0 +170760850548,219,0 +170760850597,220,0 +170760850645,221,0 +170760850693,221,0 +170760850741,221,0 +170760850790,221,0 +170760850838,221,0 +170760850886,221,0 +170760850934,222,0 +170760850983,221,0 +170760851031,221,0 +170760851079,220,0 +170760851127,216,0 +170760851175,216,0 +170760851222,217,0 +170760851270,217,0 +170760851318,218,0 +170760851366,218,0 +170760851414,219,0 +170760851462,219,0 +170760851509,220,0 +170760851557,221,0 +170760851607,221,0 +170760851655,221,0 +170760851703,222,0 +170760851751,221,0 +170760851799,221,0 +170760851846,220,0 +170760851896,216,0 +170760851944,215,0 +170760851993,216,0 +170760852043,216,0 +170760852093,217,0 +170760852140,218,0 +170760852188,218,0 +170760852236,218,0 +170760852284,219,0 +170760852334,219,0 +170760852383,219,0 +170760852433,220,0 +170760852481,220,0 +170760852529,221,0 +170760852577,220,0 +170760852625,220,0 +170760852673,219,0 +170760852722,214,0 +170760852770,215,0 +170760852820,216,0 +170760852867,216,0 +170760852915,216,0 +170760852963,217,0 +170760853011,218,0 +170760853061,218,0 +170760853109,218,0 +170760853157,218,0 +170760853204,218,0 +170760853252,220,0 +170760853300,220,0 +170760853350,220,0 +170760853398,221,0 +170760853446,221,0 +170760853495,221,0 +170760853545,221,0 +170760853593,220,0 +170760853641,221,0 +170760853688,221,0 +170760853738,221,0 +170760853786,221,0 +170760853834,220,0 +170760853882,215,0 +170760853930,215,0 +170760853978,216,0 +170760854025,216,0 +170760854073,216,0 +170760854123,217,0 +170760854171,217,0 +170760854219,217,0 +170760854268,218,0 +170760854318,218,0 +170760854367,219,0 +170760854415,220,0 +170760854463,220,0 +170760854511,221,0 +170760854559,221,0 +170760854607,220,0 +170760854655,216,0 +170760854703,215,0 +170760854751,215,0 +170760854800,216,0 +170760854848,216,0 +170760854896,217,0 +170760854944,218,0 +170760854993,218,0 +170760855041,219,0 +170760855089,219,0 +170760855137,220,0 +170760855185,220,0 +170760855233,220,0 +170760855283,221,0 +170760855330,221,0 +170760855378,221,0 +170760855428,219,0 +170760855476,215,0 +170760855524,215,0 +170760855572,216,0 +170760855620,217,0 +170760855668,217,0 +170760855716,217,0 +170760855764,218,0 +170760855812,218,0 +170760855860,219,0 +170760855907,221,0 +170760855955,220,0 +170760856003,218,0 +170760856051,220,0 +170760856099,221,0 +170760856147,223,0 +170760856195,220,0 +170760856243,216,0 +170760856290,216,0 +170760856338,216,0 +170760856386,217,0 +170760856434,217,0 +170760856482,218,0 +170760856530,218,0 +170760856578,218,0 +170760856625,220,0 +170760856673,220,0 +170760856721,221,0 +170760856769,221,0 +170760856817,222,0 +170760856865,221,0 +170760856912,221,0 +170760856960,221,0 +170760857008,217,0 +170760857056,216,0 +170760857104,216,0 +170760857152,217,0 +170760857200,218,0 +170760857248,218,0 +170760857296,218,0 +170760857343,219,0 +170760857391,219,0 +170760857439,220,0 +170760857487,220,0 +170760857535,221,0 +170760857583,221,0 +170760857630,221,0 +170760857678,221,0 +170760857726,221,0 +170760857774,220,0 +170760857822,218,0 +170760857869,219,0 +170760857917,219,0 +170760857965,220,0 +170760858013,220,0 +170760858061,220,0 +170760858109,221,0 +170760858158,221,0 +170760858206,221,0 +170760858254,221,0 +170760858301,221,0 +170760858349,222,0 +170760858397,222,0 +170760858447,221,0 +170760858494,221,0 +170760858542,220,0 +170760858590,218,0 +170760858638,218,0 +170760858686,219,0 +170760858734,219,0 +170760858782,219,0 +170760858830,220,0 +170760858877,220,0 +170760858925,221,0 +170760858973,220,0 +170760859021,221,0 +170760859069,222,0 +170760859117,221,0 +170760859165,221,0 +170760859212,221,0 +170760859260,220,0 +170760859308,221,0 +170760859356,220,0 +170760859404,217,0 +170760859452,217,0 +170760859500,217,0 +170760859549,218,0 +170760859597,218,0 +170760859646,218,0 +170760859694,219,0 +170760859742,220,0 +170760859790,220,0 +170760859838,222,0 +170760859887,221,0 +170760859935,220,0 +170760859983,221,0 +170760860031,221,0 +170760860080,221,0 +170760860128,220,0 +170760860176,217,0 +170760860224,216,0 +170760860272,217,0 +170760860320,217,0 +170760860367,218,0 +170760860415,218,0 +170760860463,220,0 +170760860511,219,0 +170760860559,220,0 +170760860607,220,0 +170760860654,220,0 +170760860702,220,0 +170760860750,221,0 +170760860798,221,0 +170760860846,220,0 +170760860894,220,0 +170760860942,217,0 +170760860990,217,0 +170760861037,218,0 +170760861085,219,0 +170760861135,219,0 +170760861183,219,0 +170760861232,219,0 +170760861280,220,0 +170760861330,221,0 +170760861379,221,0 +170760861427,221,0 +170760861477,221,0 +170760861525,222,0 +170760861573,221,0 +170760861621,220,0 +170760861669,220,0 +170760861718,220,0 +170760861768,218,0 +170760861815,218,0 +170760861863,218,0 +170760861911,218,0 +170760861959,219,0 +170760862007,220,0 +170760862055,220,0 +170760862103,221,0 +170760862151,220,0 +170760862200,221,0 +170760862250,222,0 +170760862298,220,0 +170760862346,221,0 +170760862395,221,0 +170760862445,221,0 +170760862493,220,0 +170760862541,216,0 +170760862589,216,0 +170760862636,217,0 +170760862684,218,0 +170760862732,218,0 +170760862780,218,0 +170760862828,219,0 +170760862878,219,0 +170760862925,220,0 +170760862973,221,0 +170760863021,221,0 +170760863069,220,0 +170760863117,222,0 +170760863165,222,0 +170760863213,221,0 +170760863262,220,0 +170760863310,216,0 +170760863358,215,0 +170760863406,216,0 +170760863454,217,0 +170760863503,217,0 +170760863551,218,0 +170760863601,219,0 +170760863650,219,0 +170760863698,219,0 +170760863746,220,0 +170760863794,220,0 +170760863843,221,0 +170760863891,221,0 +170760863939,220,0 +170760863987,221,0 +170760864035,219,0 +170760864084,219,0 +170760864132,215,0 +170760864180,216,0 +170760864228,216,0 +170760864276,217,0 +170760864324,217,0 +170760864372,217,0 +170760864420,218,0 +170760864469,219,0 +170760864517,220,0 +170760864567,220,0 +170760864615,220,0 +170760864664,220,0 +170760864714,220,0 +170760864762,221,0 +170760864811,220,0 +170760864859,220,0 +170760864907,215,0 +170760864955,215,0 +170760865004,216,0 +170760865052,216,0 +170760865100,217,0 +170760865148,218,0 +170760865198,218,0 +170760865246,218,0 +170760865295,219,0 +170760865345,219,0 +170760865393,219,0 +170760865440,220,0 +170760865488,221,0 +170760865536,221,0 +170760865586,220,0 +170760865634,221,0 +170760865681,216,0 +170760865729,215,0 +170760865779,216,0 +170760865827,217,0 +170760865876,217,0 +170760865924,217,0 +170760865972,218,0 +170760866020,218,0 +170760866067,218,0 +170760866115,219,0 +170760866163,219,0 +170760866211,220,0 +170760866259,220,0 +170760866307,221,0 +170760866355,220,0 +170760866404,221,0 +170760866452,219,0 +170760866500,215,0 +170760866548,216,0 +170760866596,216,0 +170760866645,217,0 +170760866693,217,0 +170760866741,216,0 +170760866790,219,0 +170760866838,219,0 +170760866886,218,0 +170760866934,220,0 +170760866982,220,0 +170760867030,220,0 +170760867078,221,0 +170760867125,221,0 +170760867173,220,0 +170760867221,220,0 +170760867269,215,0 +170760867317,215,0 +170760867365,216,0 +170760867415,216,0 +170760867463,217,0 +170760867512,217,0 +170760867560,217,0 +170760867609,218,0 +170760867657,219,0 +170760867705,219,0 +170760867753,219,0 +170760867801,220,0 +170760867849,220,0 +170760867897,220,0 +170760867945,221,0 +170760867995,220,0 +170760868042,216,0 +170760868092,215,0 +170760868142,219,0 +170760868189,216,0 +170760868237,217,0 +170760868287,217,0 +170760868335,218,0 +170760868383,217,0 +170760868431,219,0 +170760868480,219,0 +170760868528,220,0 +170760868576,219,0 +170760868624,220,0 +170760868672,220,0 +170760868719,221,0 +170760868767,221,0 +170760868817,219,0 +170760868865,216,0 +170760868913,217,0 +170760868961,217,0 +170760869009,218,0 +170760869057,219,0 +170760869105,218,0 +170760869152,219,0 +170760869200,219,0 +170760869248,220,0 +170760869296,220,0 +170760869345,220,0 +170760869393,220,0 +170760869441,221,0 +170760869489,221,0 +170760869539,220,0 +170760869586,220,0 +170760869634,219,0 +170760869682,218,0 +170760869730,219,0 +170760869778,219,0 +170760869826,219,0 +170760869874,220,0 +170760869922,220,0 +170760869970,221,0 +170760870018,221,0 +170760870065,221,0 +170760870113,221,0 +170760870163,221,0 +170760870212,221,0 +170760870262,221,0 +170760870310,221,0 +170760870358,221,0 +170760870405,220,0 +170760870453,219,0 +170760870501,221,0 +170760870549,220,0 +170760870597,220,0 +170760870645,220,0 +170760870693,221,0 +170760870741,221,0 +170760870789,222,0 +170760870838,221,0 +170760870886,221,0 +170760870934,221,0 +170760870982,222,0 +170760871031,221,0 +170760871080,221,0 +170760871128,220,0 +170760871176,220,0 +170760871224,217,0 +170760871274,217,0 +170760871322,218,0 +170760871370,218,0 +170760871419,219,0 +170760871467,219,0 +170760871515,219,0 +170760871563,220,0 +170760871613,219,0 +170760871660,220,0 +170760871708,220,0 +170760871756,221,0 +170760871806,221,0 +170760871854,221,0 +170760871903,220,0 +170760871951,220,0 +170760871999,216,0 +170760872047,215,0 +170760872095,216,0 +170760872142,216,0 +170760872190,217,0 +170760872238,217,0 +170760872286,215,0 +170760872334,218,0 +170760872384,217,0 +170760872433,217,0 +170760872481,219,0 +170760872529,220,0 +170760872577,220,0 +170760872626,221,0 +170760872674,220,0 +170760872724,220,0 +170760872772,216,0 +170760872820,216,0 +170760872869,216,0 +170760872919,217,0 +170760872968,217,0 +170760873016,218,0 +170760873064,218,0 +170760873112,218,0 +170760873160,220,0 +170760873208,219,0 +170760873256,220,0 +170760873304,221,0 +170760873354,221,0 +170760873403,222,0 +170760873451,220,0 +170760873499,220,0 +170760873547,220,0 +170760873595,216,0 +170760873643,217,0 +170760873691,217,0 +170760873740,218,0 +170760873788,218,0 +170760873836,218,0 +170760873886,219,0 +170760873934,219,0 +170760873983,220,0 +170760874031,221,0 +170760874079,221,0 +170760874129,222,0 +170760874177,221,0 +170760874224,222,0 +170760874272,221,0 +170760874322,220,0 +170760874371,216,0 +170760874421,217,0 +170760874470,217,0 +170760874518,217,0 +170760874566,218,0 +170760874616,219,0 +170760874664,220,0 +170760874713,219,0 +170760874761,219,0 +170760874809,220,0 +170760874857,220,0 +170760874905,221,0 +170760874953,221,0 +170760875003,221,0 +170760875051,220,0 +170760875099,220,0 +170760875148,216,0 +170760875196,216,0 +170760875244,216,0 +170760875292,218,0 +170760875341,218,0 +170760875391,218,0 +170760875440,219,0 +170760875488,219,0 +170760875538,221,0 +170760875586,220,0 +170760875634,221,0 +170760875682,222,0 +170760875731,221,0 +170760875779,219,0 +170760875827,220,0 +170760875877,220,0 +170760875924,215,0 +170760875972,215,0 +170760876020,216,0 +170760876068,216,0 +170760876116,217,0 +170760876164,218,0 +170760876212,218,0 +170760876262,218,0 +170760876310,219,0 +170760876358,219,0 +170760876406,220,0 +170760876453,220,0 +170760876501,221,0 +170760876551,221,0 +170760876600,221,0 +170760876648,221,0 +170760876696,220,0 +170760876744,215,0 +170760876792,215,0 +170760876840,216,0 +170760876888,217,0 +170760876937,217,0 +170760876985,219,0 +170760877033,218,0 +170760877081,218,0 +170760877129,219,0 +170760877177,220,0 +170760877225,220,0 +170760877273,220,0 +170760877321,220,0 +170760877370,220,0 +170760877418,222,0 +170760877466,220,0 +170760877514,216,0 +170760877562,215,0 +170760877610,216,0 +170760877658,217,0 +170760877706,217,0 +170760877755,217,0 +170760877803,218,0 +170760877853,218,0 +170760877901,219,0 +170760877950,220,0 +170760877998,221,0 +170760878048,220,0 +170760878097,221,0 +170760878147,221,0 +170760878195,222,0 +170760878243,220,0 +170760878290,216,0 +170760878340,216,0 +170760878388,216,0 +170760878436,217,0 +170760878484,217,0 +170760878531,218,0 +170760878579,218,0 +170760878629,219,0 +170760878678,220,0 +170760878728,220,0 +170760878777,220,0 +170760878825,220,0 +170760878875,221,0 +170760878924,220,0 +170760878974,220,0 +170760879022,220,0 +170760879071,219,0 +170760879121,216,0 +170760879170,216,0 +170760879218,217,0 +170760879266,217,0 +170760879316,217,0 +170760879364,218,0 +170760879412,218,0 +170760879461,219,0 +170760879510,220,0 +170760879558,220,0 +170760879606,221,0 +170760879654,220,0 +170760879702,221,0 +170760879752,221,0 +170760879800,220,0 +170760879848,219,0 +170760879896,215,0 +170760879945,215,0 +170760879993,216,0 +170760880042,216,0 +170760880090,217,0 +170760880138,217,0 +170760880186,218,0 +170760880234,218,0 +170760880282,218,0 +170760880332,220,0 +170760880379,222,0 +170760880427,221,0 +170760880475,221,0 +170760880525,224,0 +170760880573,220,0 +170760880621,220,0 +170760880668,216,0 +170760880716,216,0 +170760880764,217,0 +170760880812,217,0 +170760880860,217,0 +170760880908,218,0 +170760880956,218,0 +170760881005,218,0 +170760881053,219,0 +170760881101,219,0 +170760881151,220,0 +170760881200,220,0 +170760881250,220,0 +170760881298,221,0 +170760881346,221,0 +170760881394,220,0 +170760881442,216,0 +170760881491,216,0 +170760881541,216,0 +170760881588,217,0 +170760881636,217,0 +170760881684,217,0 +170760881734,218,0 +170760881783,219,0 +170760881831,219,0 +170760881881,219,0 +170760881929,220,0 +170760881977,220,0 +170760882025,221,0 +170760882072,221,0 +170760882120,220,0 +170760882168,220,0 +170760882218,219,0 +170760882266,217,0 +170760882315,217,0 +170760882365,218,0 +170760882412,218,0 +170760882460,219,0 +170760882508,219,0 +170760882558,219,0 +170760882606,220,0 +170760882654,220,0 +170760882702,222,0 +170760882751,221,0 +170760882799,221,0 +170760882847,221,0 +170760882895,221,0 +170760882943,221,0 +170760882991,220,0 +170760883039,218,0 +170760883087,219,0 +170760883136,219,0 +170760883184,219,0 +170760883234,219,0 +170760883282,220,0 +170760883331,220,0 +170760883379,220,0 +170760883427,221,0 +170760883475,221,0 +170760883523,220,0 +170760883572,220,0 +170760883622,221,0 +170760883670,221,0 +170760883719,220,0 +170760883767,220,0 +170760883817,217,0 +170760883865,216,0 +170760883913,217,0 +170760883961,217,0 +170760884008,218,0 +170760884056,218,0 +170760884106,219,0 +170760884154,219,0 +170760884203,220,0 +170760884253,220,0 +170760884302,221,0 +170760884350,221,0 +170760884398,221,0 +170760884446,221,0 +170760884494,223,0 +170760884542,220,0 +170760884590,216,0 +170760884640,216,0 +170760884689,217,0 +170760884737,217,0 +170760884785,218,0 +170760884835,218,0 +170760884882,219,0 +170760884932,219,0 +170760884981,220,0 +170760885029,220,0 +170760885077,222,0 +170760885127,221,0 +170760885176,222,0 +170760885226,221,0 +170760885274,221,0 +170760885323,221,0 +170760885373,219,0 +170760885422,217,0 +170760885472,218,0 +170760885520,218,0 +170760885568,219,0 +170760885616,219,0 +170760885664,219,0 +170760885711,220,0 +170760885759,220,0 +170760885809,220,0 +170760885857,221,0 +170760885906,222,0 +170760885956,221,0 +170760886004,221,0 +170760886052,221,0 +170760886101,220,0 +170760886151,219,0 +170760886200,217,0 +170760886248,217,0 +170760886296,218,0 +170760886346,220,0 +170760886394,219,0 +170760886442,220,0 +170760886491,220,0 +170760886539,221,0 +170760886587,221,0 +170760886635,221,0 +170760886684,222,0 +170760886734,221,0 +170760886782,221,0 +170760886830,221,0 +170760886879,221,0 +170760886927,220,0 +170760886975,218,0 +170760887023,219,0 +170760887071,217,0 +170760887119,219,0 +170760887166,219,0 +170760887216,220,0 +170760887264,221,0 +170760887313,223,0 +170760887363,224,0 +170760887411,221,0 +170760887459,220,0 +170760887507,221,0 +170760887555,221,0 +170760887603,221,0 +170760887652,221,0 +170760887702,220,0 +170760887751,217,0 +170760887799,217,0 +170760887847,217,0 +170760887895,217,0 +170760887943,218,0 +170760887991,218,0 +170760888039,218,0 +170760888087,219,0 +170760888135,220,0 +170760888183,220,0 +170760888231,220,0 +170760888279,221,0 +170760888328,220,0 +170760888376,221,0 +170760888423,221,0 +170760888471,221,0 +170760888521,219,0 +170760888570,216,0 +170760888618,216,0 +170760888666,216,0 +170760888715,217,0 +170760888763,217,0 +170760888811,218,0 +170760888859,218,0 +170760888907,220,0 +170760888955,220,0 +170760889003,220,0 +170760889051,221,0 +170760889098,221,0 +170760889146,221,0 +170760889194,220,0 +170760889242,221,0 +170760889290,221,0 +170760889338,216,0 +170760889386,216,0 +170760889433,217,0 +170760889481,217,0 +170760889529,218,0 +170760889577,219,0 +170760889626,220,0 +170760889674,219,0 +170760889722,220,0 +170760889770,220,0 +170760889818,221,0 +170760889866,220,0 +170760889914,221,0 +170760889961,221,0 +170760890009,220,0 +170760890057,220,0 +170760890105,216,0 +170760890153,215,0 +170760890201,216,0 +170760890249,216,0 +170760890296,217,0 +170760890344,218,0 +170760890392,218,0 +170760890440,219,0 +170760890488,220,0 +170760890536,220,0 +170760890583,220,0 +170760890631,220,0 +170760890679,220,0 +170760890727,221,0 +170760890775,220,0 +170760890823,220,0 +170760890870,219,0 +170760890918,216,0 +170760890968,216,0 +170760891016,216,0 +170760891065,218,0 +170760891113,218,0 +170760891163,219,0 +170760891212,219,0 +170760891260,219,0 +170760891310,220,0 +170760891358,221,0 +170760891407,220,0 +170760891455,221,0 +170760891503,221,0 +170760891551,221,0 +170760891599,220,0 +170760891646,220,0 +170760891694,216,0 +170760891742,215,0 +170760891790,216,0 +170760891838,216,0 +170760891886,217,0 +170760891934,217,0 +170760891981,218,0 +170760892029,218,0 +170760892077,219,0 +170760892125,220,0 +170760892173,220,0 +170760892220,220,0 +170760892268,220,0 +170760892318,220,0 +170760892366,221,0 +170760892414,220,0 +170760892461,220,0 +170760892509,214,0 +170760892557,215,0 +170760892605,216,0 +170760892653,216,0 +170760892701,216,0 +170760892748,217,0 +170760892796,217,0 +170760892844,218,0 +170760892892,218,0 +170760892940,219,0 +170760892987,219,0 +170760893035,219,0 +170760893083,219,0 +170760893131,219,0 +170760893179,220,0 +170760893226,219,0 +170760893274,215,0 +170760893324,215,0 +170760893372,215,0 +170760893419,216,0 +170760893467,216,0 +170760893515,216,0 +170760893563,217,0 +170760893612,218,0 +170760893660,217,0 +170760893708,217,0 +170760893756,219,0 +170760893804,219,0 +170760893854,220,0 +170760893903,220,0 +170760893951,220,0 +170760894001,220,0 +170760894050,215,0 +170760894098,215,0 +170760894146,215,0 +170760894194,216,0 +170760894244,218,0 +170760894292,218,0 +170760894340,218,0 +170760894388,219,0 +170760894437,219,0 +170760894485,219,0 +170760894533,221,0 +170760894581,220,0 +170760894631,220,0 +170760894679,221,0 +170760894727,221,0 +170760894775,220,0 +170760894823,219,0 +170760894872,216,0 +170760894920,216,0 +170760894968,217,0 +170760895016,217,0 +170760895064,218,0 +170760895112,218,0 +170760895162,220,0 +170760895209,220,0 +170760895257,219,0 +170760895305,220,0 +170760895353,220,0 +170760895403,221,0 +170760895452,220,0 +170760895500,219,0 +170760895548,221,0 +170760895598,220,0 +170760895647,216,0 +170760895695,216,0 +170760895745,217,0 +170760895794,217,0 +170760895844,218,0 +170760895892,219,0 +170760895941,219,0 +170760895989,219,0 +170760896039,220,0 +170760896087,219,0 +170760896134,220,0 +170760896182,220,0 +170760896230,220,0 +170760896278,221,0 +170760896326,220,0 +170760896376,221,0 +170760896424,216,0 +170760896472,215,0 +170760896521,216,0 +170760896569,216,0 +170760896617,217,0 +170760896665,217,0 +170760896715,217,0 +170760896763,217,0 +170760896812,218,0 +170760896860,218,0 +170760896908,219,0 +170760896956,220,0 +170760897004,220,0 +170760897052,219,0 +170760897100,220,0 +170760897148,220,0 +170760897197,220,0 +170760897245,216,0 +170760897295,217,0 +170760897344,217,0 +170760897392,218,0 +170760897440,218,0 +170760897490,218,0 +170760897537,220,0 +170760897585,219,0 +170760897635,220,0 +170760897684,221,0 +170760897732,220,0 +170760897782,221,0 +170760897830,220,0 +170760897878,221,0 +170760897927,220,0 +170760897975,220,0 +170760898025,217,0 +170760898072,217,0 +170760898122,218,0 +170760898171,218,0 +170760898219,218,0 +170760898269,219,0 +170760898317,219,0 +170760898365,221,0 +170760898414,221,0 +170760898462,220,0 +170760898512,221,0 +170760898561,221,0 +170760898609,221,0 +170760898657,221,0 +170760898707,220,0 +170760898755,220,0 +170760898803,217,0 +170760898851,218,0 +170760898900,218,0 +170760898950,218,0 +170760898997,219,0 +170760899045,219,0 +170760899093,220,0 +170760899141,220,0 +170760899191,220,0 +170760899239,221,0 +170760899287,221,0 +170760899335,220,0 +170760899382,221,0 +170760899430,221,0 +170760899478,220,0 +170760899528,221,0 +170760899577,218,0 +170760899625,218,0 +170760899673,218,0 +170760899723,218,0 +170760899772,219,0 +170760899820,219,0 +170760899868,220,0 +170760899916,220,0 +170760899963,221,0 +170760900011,221,0 +170760900059,222,0 +170760900107,221,0 +170760900155,221,0 +170760900204,220,0 +170760900252,221,0 +170760900300,220,0 +170760900348,220,0 +170760900396,218,0 +170760900444,219,0 +170760900492,219,0 +170760900541,220,0 +170760900589,220,0 +170760900637,220,0 +170760900685,220,0 +170760900735,221,0 +170760900784,221,0 +170760900832,222,0 +170760900880,222,0 +170760900928,221,0 +170760900976,221,0 +170760901026,221,0 +170760901073,221,0 +170760901121,220,0 +170760901169,217,0 +170760901217,218,0 +170760901265,219,0 +170760901313,219,0 +170760901361,219,0 +170760901409,219,0 +170760901459,220,0 +170760901507,220,0 +170760901555,221,0 +170760901603,220,0 +170760901650,221,0 +170760901698,221,0 +170760901746,220,0 +170760901794,221,0 +170760901842,219,0 +170760901891,220,0 +170760901939,217,0 +170760901987,217,0 +170760902035,217,0 +170760902085,216,0 +170760902134,218,0 +170760902182,218,0 +170760902230,219,0 +170760902278,219,0 +170760902325,219,0 +170760902373,220,0 +170760902423,220,0 +170760902471,220,0 +170760902519,221,0 +170760902566,220,0 +170760902616,220,0 +170760902664,220,0 +170760902712,220,0 +170760902761,216,0 +170760902809,217,0 +170760902859,218,0 +170760902907,218,0 +170760902955,218,0 +170760903003,219,0 +170760903051,220,0 +170760903098,220,0 +170760903146,220,0 +170760903194,219,0 +170760903244,220,0 +170760903293,220,0 +170760903341,220,0 +170760903389,220,0 +170760903437,220,0 +170760903487,220,0 +170760903534,216,0 +170760903584,215,0 +170760903633,216,0 +170760903683,217,0 +170760903731,217,0 +170760903779,218,0 +170760903829,219,0 +170760903876,219,0 +170760903924,220,0 +170760903972,220,0 +170760904022,221,0 +170760904071,221,0 +170760904121,220,0 +170760904169,220,0 +170760904217,220,0 +170760904264,220,0 +170760904312,215,0 +170760904360,214,0 +170760904408,215,0 +170760904456,215,0 +170760904504,216,0 +170760904554,216,0 +170760904601,217,0 +170760904649,217,0 +170760904697,218,0 +170760904747,218,0 +170760904795,219,0 +170760904843,220,0 +170760904891,220,0 +170760904938,220,0 +170760904986,220,0 +170760905036,220,0 +170760905084,219,0 +170760905133,214,0 +170760905181,214,0 +170760905229,215,0 +170760905279,215,0 +170760905326,216,0 +170760905374,216,0 +170760905424,216,0 +170760905472,217,0 +170760905520,218,0 +170760905568,219,0 +170760905615,218,0 +170760905665,219,0 +170760905713,221,0 +170760905761,220,0 +170760905809,220,0 +170760905857,220,0 +170760905905,215,0 +170760905952,214,0 +170760906002,214,0 +170760906050,215,0 +170760906099,215,0 +170760906149,216,0 +170760906197,216,0 +170760906246,217,0 +170760906294,217,0 +170760906342,218,0 +170760906390,219,0 +170760906438,219,0 +170760906486,219,0 +170760906534,220,0 +170760906581,219,0 +170760906629,220,0 +170760906677,217,0 +170760906725,215,0 +170760906773,216,0 +170760906821,216,0 +170760906869,217,0 +170760906917,217,0 +170760906964,218,0 +170760907012,219,0 +170760907060,219,0 +170760907108,219,0 +170760907158,220,0 +170760907206,221,0 +170760907254,220,0 +170760907302,221,0 +170760907349,220,0 +170760907399,220,0 +170760907448,220,0 +170760907496,218,0 +170760907544,218,0 +170760907592,219,0 +170760907640,219,0 +170760907688,219,0 +170760907736,220,0 +170760907784,220,0 +170760907831,221,0 +170760907879,220,0 +170760907927,220,0 +170760907975,221,0 +170760908023,221,0 +170760908071,221,0 +170760908119,220,0 +170760908167,221,0 +170760908214,219,0 +170760908262,217,0 +170760908310,217,0 +170760908358,217,0 +170760908406,218,0 +170760908454,217,0 +170760908501,218,0 +170760908549,218,0 +170760908597,220,0 +170760908645,219,0 +170760908695,219,0 +170760908744,219,0 +170760908794,220,0 +170760908842,221,0 +170760908890,220,0 +170760908937,220,0 +170760908985,219,0 +170760909033,219,0 +170760909081,215,0 +170760909129,215,0 +170760909177,216,0 +170760909225,217,0 +170760909272,217,0 +170760909320,217,0 +170760909368,217,0 +170760909416,219,0 +170760909465,218,0 +170760909513,219,0 +170760909561,220,0 +170760909611,220,0 +170760909658,220,0 +170760909706,221,0 +170760909754,220,0 +170760909802,220,0 +170760909850,216,0 +170760909900,216,0 +170760909949,217,0 +170760909997,217,0 +170760910045,218,0 +170760910093,218,0 +170760910141,219,0 +170760910188,219,0 +170760910236,220,0 +170760910284,220,0 +170760910332,221,0 +170760910380,221,0 +170760910428,221,0 +170760910475,221,0 +170760910523,221,0 +170760910571,220,0 +170760910619,217,0 +170760910667,217,0 +170760910715,217,0 +170760910762,218,0 +170760910810,218,0 +170760910858,219,0 +170760910906,219,0 +170760910954,221,0 +170760911002,221,0 +170760911050,221,0 +170760911098,221,0 +170760911145,220,0 +170760911193,220,0 +170760911241,220,0 +170760911289,220,0 +170760911337,220,0 +170760911385,220,0 +170760911433,216,0 +170760911482,217,0 +170760911530,217,0 +170760911579,217,0 +170760911627,218,0 +170760911675,218,0 +170760911725,219,0 +170760911774,219,0 +170760911822,220,0 +170760911870,221,0 +170760911920,221,0 +170760911968,221,0 +170760912016,221,0 +170760912064,221,0 +170760912113,221,0 +170760912163,220,0 +170760912212,216,0 +170760912260,215,0 +170760912308,216,0 +170760912358,217,0 +170760912406,217,0 +170760912455,217,0 +170760912505,218,0 +170760912553,218,0 +170760912601,219,0 +170760912650,219,0 +170760912700,220,0 +170760912747,220,0 +170760912795,220,0 +170760912845,221,0 +170760912893,220,0 +170760912942,220,0 +170760912990,216,0 +170760913040,216,0 +170760913088,216,0 +170760913137,216,0 +170760913187,217,0 +170760913235,217,0 +170760913283,217,0 +170760913331,217,0 +170760913379,218,0 +170760913428,219,0 +170760913476,219,0 +170760913526,220,0 +170760913574,221,0 +170760913623,220,0 +170760913671,220,0 +170760913719,221,0 +170760913768,220,0 +170760913818,216,0 +170760913866,216,0 +170760913914,217,0 +170760913962,217,0 +170760914011,217,0 +170760914059,217,0 +170760914107,218,0 +170760914155,218,0 +170760914204,218,0 +170760914252,220,0 +170760914300,219,0 +170760914348,217,0 +170760914398,220,0 +170760914446,222,0 +170760914495,220,0 +170760914543,220,0 +170760914591,217,0 +170760914640,217,0 +170760914688,217,0 +170760914736,218,0 +170760914784,218,0 +170760914832,218,0 +170760914880,219,0 +170760914929,219,0 +170760914977,220,0 +170760915025,219,0 +170760915073,220,0 +170760915121,221,0 +170760915170,221,0 +170760915218,220,0 +170760915266,221,0 +170760915316,220,0 +170760915364,216,0 +170760915411,216,0 +170760915459,217,0 +170760915507,217,0 +170760915555,218,0 +170760915603,218,0 +170760915650,218,0 +170760915700,219,0 +170760915748,219,0 +170760915795,219,0 +170760915843,220,0 +170760915891,220,0 +170760915939,219,0 +170760915987,220,0 +170760916035,220,0 +170760916082,220,0 +170760916130,219,0 +170760916178,216,0 +170760916228,216,0 +170760916277,217,0 +170760916325,217,0 +170760916373,218,0 +170760916421,218,0 +170760916469,219,0 +170760916518,219,0 +170760916566,220,0 +170760916614,219,0 +170760916662,220,0 +170760916710,220,0 +170760916758,220,0 +170760916806,224,0 +170760916856,220,0 +170760916905,220,0 +170760916953,216,0 +170760917001,215,0 +170760917049,216,0 +170760917097,216,0 +170760917146,217,0 +170760917194,217,0 +170760917242,218,0 +170760917290,218,0 +170760917338,218,0 +170760917388,219,0 +170760917436,220,0 +170760917484,220,0 +170760917532,221,0 +170760917580,220,0 +170760917627,220,0 +170760917675,220,0 +170760917725,216,0 +170760917773,215,0 +170760917821,215,0 +170760917869,216,0 +170760917916,216,0 +170760917964,217,0 +170760918012,218,0 +170760918060,218,0 +170760918110,218,0 +170760918159,219,0 +170760918207,220,0 +170760918255,219,0 +170760918303,220,0 +170760918353,220,0 +170760918401,221,0 +170760918449,220,0 +170760918497,221,0 +170760918545,215,0 +170760918594,216,0 +170760918644,216,0 +170760918691,217,0 +170760918739,218,0 +170760918787,218,0 +170760918835,218,0 +170760918883,219,0 +170760918931,220,0 +170760918978,220,0 +170760919026,220,0 +170760919074,221,0 +170760919122,221,0 +170760919170,221,0 +170760919218,220,0 +170760919266,220,0 +170760919313,218,0 +170760919363,218,0 +170760919411,219,0 +170760919460,219,0 +170760919508,219,0 +170760919556,220,0 +170760919604,220,0 +170760919653,220,0 +170760919701,220,0 +170760919749,220,0 +170760919799,220,0 +170760919847,221,0 +170760919895,221,0 +170760919943,220,0 +170760919991,220,0 +170760920040,220,0 +170760920090,219,0 +170760920139,219,0 +170760920187,219,0 +170760920235,219,0 +170760920283,219,0 +170760920331,220,0 +170760920379,220,0 +170760920428,222,0 +170760920478,220,0 +170760920527,221,0 +170760920575,222,0 +170760920625,221,0 +170760920673,218,0 +170760920721,220,0 +170760920769,220,0 +170760920817,221,0 +170760920866,219,0 +170760920915,215,0 +170760920963,218,0 +170760921013,218,0 +170760921062,218,0 +170760921110,218,0 +170760921158,219,0 +170760921206,220,0 +170760921256,220,0 +170760921304,220,0 +170760921352,220,0 +170760921401,221,0 +170760921449,221,0 +170760921497,221,0 +170760921545,220,0 +170760921593,220,0 +170760921641,220,0 +170760921689,216,0 +170760921737,216,0 +170760921785,216,0 +170760921834,217,0 +170760921882,217,0 +170760921930,217,0 +170760921978,218,0 +170760922028,219,0 +170760922077,219,0 +170760922127,219,0 +170760922175,220,0 +170760922222,220,0 +170760922272,221,0 +170760922321,221,0 +170760922371,220,0 +170760922420,221,0 +170760922470,216,0 +170760922518,216,0 +170760922567,217,0 +170760922615,218,0 +170760922663,218,0 +170760922711,219,0 +170760922759,219,0 +170760922807,219,0 +170760922855,220,0 +170760922903,220,0 +170760922953,221,0 +170760923002,221,0 +170760923050,221,0 +170760923098,221,0 +170760923148,221,0 +170760923197,220,0 +170760923245,216,0 +170760923293,217,0 +170760923342,218,0 +170760923390,218,0 +170760923438,219,0 +170760923486,219,0 +170760923534,219,0 +170760923584,220,0 +170760923633,220,0 +170760923681,220,0 +170760923729,220,0 +170760923777,221,0 +170760923825,221,0 +170760923873,221,0 +170760923921,220,0 +170760923971,220,0 +170760924020,219,0 +170760924068,218,0 +170760924117,218,0 +170760924167,218,0 +170760924215,218,0 +170760924262,219,0 +170760924310,221,0 +170760924360,220,0 +170760924408,221,0 +170760924455,220,0 +170760924503,220,0 +170760924551,221,0 +170760924599,221,0 +170760924647,220,0 +170760924695,221,0 +170760924743,221,0 +170760924790,220,0 +170760924838,217,0 +170760924886,217,0 +170760924934,217,0 +170760924982,217,0 +170760925030,218,0 +170760925079,218,0 +170760925127,219,0 +170760925175,219,0 +170760925224,219,0 +170760925272,220,0 +170760925320,220,0 +170760925368,221,0 +170760925416,220,0 +170760925464,221,0 +170760925511,221,0 +170760925561,221,0 +170760925609,220,0 +170760925658,215,0 +170760925706,215,0 +170760925754,216,0 +170760925802,217,0 +170760925850,217,0 +170760925898,217,0 +170760925945,217,0 +170760925995,218,0 +170760926043,219,0 +170760926091,219,0 +170760926140,220,0 +170760926188,220,0 +170760926236,221,0 +170760926284,221,0 +170760926332,224,0 +170760926380,221,0 +170760926430,221,0 +170760926477,220,0 +170760926527,219,0 +170760926575,216,0 +170760926623,216,0 +170760926671,216,0 +170760926720,217,0 +170760926768,217,0 +170760926816,217,0 +170760926866,217,0 +170760926915,218,0 +170760926964,219,0 +170760927012,218,0 +170760927062,219,0 +170760927110,219,0 +170760927158,221,0 +170760927206,220,0 +170760927255,220,0 +170760927303,220,0 +170760927351,220,0 +170760927399,219,0 +170760927447,214,0 +170760927495,215,0 +170760927543,215,0 +170760927592,216,0 +170760927640,216,0 +170760927689,217,0 +170760927739,218,0 +170760927787,217,0 +170760927836,218,0 +170760927884,219,0 +170760927934,220,0 +170760927982,220,0 +170760928030,220,0 +170760928078,220,0 +170760928125,220,0 +170760928175,220,0 +170760928223,220,0 +170760928272,219,0 +170760928320,214,0 +170760928370,215,0 +170760928418,215,0 +170760928467,216,0 +170760928515,216,0 +170760928563,217,0 +170760928611,217,0 +170760928659,218,0 +170760928707,218,0 +170760928755,219,0 +170760928804,219,0 +170760928852,219,0 +170760928900,220,0 +170760928948,220,0 +170760928996,220,0 +170760929045,220,0 +170760929093,219,0 +170760929141,219,0 +170760929189,214,0 +170760929237,214,0 +170760929285,215,0 +170760929333,215,0 +170760929381,216,0 +170760929430,216,0 +170760929480,216,0 +170760929528,217,0 +170760929577,218,0 +170760929625,218,0 +170760929673,219,0 +170760929721,219,0 +170760929769,220,0 +170760929817,220,0 +170760929865,220,0 +170760929914,221,0 +170760929964,220,0 +170760930012,219,0 +170760930060,214,0 +170760930109,215,0 +170760930159,215,0 +170760930207,215,0 +170760930255,215,0 +170760930303,216,0 +170760930352,217,0 +170760930400,217,0 +170760930448,219,0 +170760930496,219,0 +170760930546,219,0 +170760930595,219,0 +170760930643,219,0 +170760930691,220,0 +170760930739,220,0 +170760930787,220,0 +170760930835,220,0 +170760930883,220,0 +170760930931,215,0 +170760930980,215,0 +170760931028,216,0 +170760931076,216,0 +170760931126,217,0 +170760931174,217,0 +170760931222,218,0 +170760931270,218,0 +170760931318,219,0 +170760931365,219,0 +170760931413,219,0 +170760931461,221,0 +170760931509,221,0 +170760931559,221,0 +170760931608,221,0 +170760931658,221,0 +170760931707,221,0 +170760931755,220,0 +170760931803,215,0 +170760931851,214,0 +170760931899,215,0 +170760931947,215,0 +170760931995,215,0 +170760932044,216,0 +170760932092,217,0 +170760932140,217,0 +170760932188,217,0 +170760932236,219,0 +170760932285,220,0 +170760932333,219,0 +170760932383,221,0 +170760932431,221,0 +170760932479,220,0 +170760932527,220,0 +170760932574,219,0 +170760932622,220,0 +170760932670,215,0 +170760932718,214,0 +170760932766,215,0 +170760932814,215,0 +170760932863,215,0 +170760932911,215,0 +170760932961,216,0 +170760933009,217,0 +170760933058,217,0 +170760933106,217,0 +170760933154,218,0 +170760933202,219,0 +170760933250,219,0 +170760933298,220,0 +170760933346,219,0 +170760933394,220,0 +170760933442,219,0 +170760933490,219,0 +170760933537,216,0 +170760933585,214,0 +170760933635,215,0 +170760933683,215,0 +170760933732,215,0 +170760933780,216,0 +170760933828,217,0 +170760933876,217,0 +170760933926,218,0 +170760933975,219,0 +170760934025,219,0 +170760934072,220,0 +170760934122,220,0 +170760934170,220,0 +170760934218,220,0 +170760934268,220,0 +170760934316,221,0 +170760934364,220,0 +170760934412,219,0 +170760934460,216,0 +170760934507,216,0 +170760934555,217,0 +170760934603,217,0 +170760934653,218,0 +170760934701,218,0 +170760934750,218,0 +170760934798,219,0 +170760934846,220,0 +170760934894,220,0 +170760934944,220,0 +170760934993,220,0 +170760935041,221,0 +170760935089,221,0 +170760935137,221,0 +170760935185,221,0 +170760935233,221,0 +170760935281,219,0 +170760935329,216,0 +170760935378,217,0 +170760935428,217,0 +170760935476,218,0 +170760935525,218,0 +170760935575,218,0 +170760935624,219,0 +170760935672,219,0 +170760935720,220,0 +170760935768,220,0 +170760935816,221,0 +170760935864,221,0 +170760935914,220,0 +170760935961,220,0 +170760936009,220,0 +170760936057,221,0 +170760936105,220,0 +170760936153,219,0 +170760936202,215,0 +170760936250,215,0 +170760936298,216,0 +170760936346,216,0 +170760936394,217,0 +170760936442,217,0 +170760936490,217,0 +170760936538,219,0 +170760936587,218,0 +170760936637,218,0 +170760936685,219,0 +170760936733,219,0 +170760936782,219,0 +170760936832,219,0 +170760936880,220,0 +170760936928,220,0 +170760936977,220,0 +170760937025,219,0 +170760937073,215,0 +170760937121,215,0 +170760937169,215,0 +170760937217,216,0 +170760937265,216,0 +170760937314,216,0 +170760937362,216,0 +170760937410,217,0 +170760937458,217,0 +170760937507,218,0 +170760937557,218,0 +170760937606,218,0 +170760937654,219,0 +170760937704,219,0 +170760937752,220,0 +170760937800,220,0 +170760937848,220,0 +170760937895,220,0 +170760937943,215,0 +170760937991,215,0 +170760938039,216,0 +170760938087,216,0 +170760938135,217,0 +170760938184,217,0 +170760938232,217,0 +170760938280,218,0 +170760938330,219,0 +170760938378,218,0 +170760938426,220,0 +170760938473,220,0 +170760938523,220,0 +170760938571,221,0 +170760938619,221,0 +170760938667,219,0 +170760938715,220,0 +170760938763,219,0 +170760938812,217,0 +170760938860,217,0 +170760938908,217,0 +170760938956,217,0 +170760939005,218,0 +170760939053,218,0 +170760939101,218,0 +170760939149,219,0 +170760939198,219,0 +170760939246,219,0 +170760939294,220,0 +170760939344,220,0 +170760939393,220,0 +170760939441,220,0 +170760939490,221,0 +170760939538,221,0 +170760939586,220,0 +170760939634,220,0 +170760939682,216,0 +170760939730,217,0 +170760939778,217,0 +170760939826,217,0 +170760939874,218,0 +170760939921,218,0 +170760939969,218,0 +170760940017,219,0 +170760940065,219,0 +170760940115,219,0 +170760940163,220,0 +170760940211,220,0 +170760940259,220,0 +170760940307,221,0 +170760940354,221,0 +170760940402,220,0 +170760940450,220,0 +170760940500,219,0 +170760940549,216,0 +170760940599,215,0 +170760940647,216,0 +170760940695,216,0 +170760940744,217,0 +170760940792,217,0 +170760940840,218,0 +170760940888,218,0 +170760940936,219,0 +170760940984,219,0 +170760941032,220,0 +170760941082,219,0 +170760941130,221,0 +170760941179,220,0 +170760941227,221,0 +170760941276,221,0 +170760941326,221,0 +170760941374,220,0 +170760941423,215,0 +170760941471,215,0 +170760941519,215,0 +170760941567,216,0 +170760941615,217,0 +170760941663,217,0 +170760941713,217,0 +170760941760,218,0 +170760941808,218,0 +170760941856,218,0 +170760941904,219,0 +170760941952,220,0 +170760942002,221,0 +170760942050,219,0 +170760942098,220,0 +170760942145,220,0 +170760942193,219,0 +170760942241,220,0 +170760942289,218,0 +170760942339,214,0 +170760942388,215,0 +170760942438,215,0 +170760942486,216,0 +170760942534,216,0 +170760942582,217,0 +170760942631,217,0 +170760942679,217,0 +170760942727,217,0 +170760942775,218,0 +170760942823,219,0 +170760942871,219,0 +170760942920,219,0 +170760942970,220,0 +170760943018,219,0 +170760943067,219,0 +170760943115,220,0 +170760943163,216,0 +170760943211,214,0 +170760943261,214,0 +170760943308,214,0 +170760943358,215,0 +170760943406,215,0 +170760943454,215,0 +170760943502,215,0 +170760943550,216,0 +170760943600,216,0 +170760943649,217,0 +170760943697,219,0 +170760943747,218,0 +170760943795,219,0 +170760943844,219,0 +170760943894,218,0 +170760943941,218,0 +170760943991,219,0 +170760944039,219,0 +170760944087,214,0 +170760944135,214,0 +170760944184,214,0 +170760944234,214,0 +170760944282,215,0 +170760944330,215,0 +170760944378,215,0 +170760944425,216,0 +170760944473,216,0 +170760944523,216,0 +170760944572,217,0 +170760944622,217,0 +170760944670,218,0 +170760944719,218,0 +170760944767,219,0 +170760944817,219,0 +170760944865,220,0 +170760944913,220,0 +170760944961,214,0 +170760945010,214,0 +170760945058,214,0 +170760945106,214,0 +170760945154,215,0 +170760945202,215,0 +170760945250,215,0 +170760945298,216,0 +170760945347,216,0 +170760945395,217,0 +170760945443,218,0 +170760945491,218,0 +170760945541,219,0 +170760945588,219,0 +170760945636,219,0 +170760945684,220,0 +170760945734,220,0 +170760945783,219,0 +170760945833,214,0 +170760945882,214,0 +170760945932,215,0 +170760945980,215,0 +170760946028,215,0 +170760946076,215,0 +170760946125,216,0 +170760946175,216,0 +170760946223,216,0 +170760946271,217,0 +170760946319,217,0 +170760946368,218,0 +170760946416,218,0 +170760946465,219,0 +170760946515,221,0 +170760946563,220,0 +170760946611,220,0 +170760946659,219,0 +170760946708,214,0 +170760946756,214,0 +170760946804,214,0 +170760946854,214,0 +170760946903,214,0 +170760946953,215,0 +170760947002,215,0 +170760947052,215,0 +170760947100,215,0 +170760947149,216,0 +170760947199,217,0 +170760947247,217,0 +170760947295,218,0 +170760947343,218,0 +170760947391,219,0 +170760947438,220,0 +170760947486,220,0 +170760947534,219,0 +170760947582,214,0 +170760947630,214,0 +170760947680,215,0 +170760947728,214,0 +170760947777,215,0 +170760947827,214,0 +170760947876,215,0 +170760947924,215,0 +170760947974,215,0 +170760948023,216,0 +170760948071,217,0 +170760948119,218,0 +170760948167,218,0 +170760948215,218,0 +170760948264,219,0 +170760948314,219,0 +170760948363,219,0 +170760948411,220,0 +170760948459,214,0 +170760948509,214,0 +170760948557,214,0 +170760948605,214,0 +170760948654,215,0 +170760948702,215,0 +170760948750,215,0 +170760948800,215,0 +170760948849,216,0 +170760948897,217,0 +170760948945,217,0 +170760948994,218,0 +170760949042,219,0 +170760949090,219,0 +170760949138,219,0 +170760949186,219,0 +170760949234,220,0 +170760949282,220,0 +170760949330,214,0 +170760949378,214,0 +170760949426,214,0 +170760949473,214,0 +170760949521,214,0 +170760949569,214,0 +170760949617,215,0 +170760949665,215,0 +170760949713,215,0 +170760949763,216,0 +170760949810,217,0 +170760949860,218,0 +170760949909,218,0 +170760949957,219,0 +170760950005,219,0 +170760950053,219,0 +170760950103,220,0 +170760950151,220,0 +170760950199,215,0 +170760950247,214,0 +170760950295,214,0 +170760950344,214,0 +170760950394,214,0 +170760950442,214,0 +170760950489,215,0 +170760950537,215,0 +170760950585,216,0 +170760950633,216,0 +170760950681,217,0 +170760950729,218,0 +170760950777,218,0 +170760950825,219,0 +170760950874,219,0 +170760950924,219,0 +170760950972,219,0 +170760951019,220,0 +170760951067,215,0 +170760951115,214,0 +170760951163,214,0 +170760951213,214,0 +170760951261,214,0 +170760951309,215,0 +170760951358,215,0 +170760951406,215,0 +170760951454,215,0 +170760951502,216,0 +170760951550,217,0 +170760951598,218,0 +170760951645,218,0 +170760951693,218,0 +170760951743,219,0 +170760951791,219,0 +170760951840,219,0 +170760951888,220,0 +170760951938,214,0 +170760951986,214,0 +170760952034,214,0 +170760952083,214,0 +170760952133,214,0 +170760952182,215,0 +170760952230,215,0 +170760952280,215,0 +170760952329,216,0 +170760952377,217,0 +170760952425,217,0 +170760952473,217,0 +170760952521,218,0 +170760952570,218,0 +170760952618,218,0 +170760952668,219,0 +170760952716,218,0 +170760952765,220,0 +170760952813,215,0 +170760952861,214,0 +170760952909,214,0 +170760952957,215,0 +170760953005,215,0 +170760953053,215,0 +170760953101,215,0 +170760953148,216,0 +170760953198,215,0 +170760953247,217,0 +170760953295,217,0 +170760953343,218,0 +170760953391,218,0 +170760953438,219,0 +170760953486,219,0 +170760953534,219,0 +170760953582,219,0 +170760953630,219,0 +170760953677,215,0 +170760953727,214,0 +170760953775,214,0 +170760953822,215,0 +170760953870,215,0 +170760953920,216,0 +170760953968,216,0 +170760954017,216,0 +170760954066,217,0 +170760954114,218,0 +170760954164,218,0 +170760954212,219,0 +170760954260,220,0 +170760954309,221,0 +170760954359,220,0 +170760954407,221,0 +170760954455,220,0 +170760954504,222,0 +170760954552,216,0 +170760954600,214,0 +170760954648,214,0 +170760954696,215,0 +170760954744,215,0 +170760954792,216,0 +170760954840,217,0 +170760954889,217,0 +170760954937,217,0 +170760954985,218,0 +170760955032,218,0 +170760955080,218,0 +170760955128,218,0 +170760955176,219,0 +170760955224,220,0 +170760955272,220,0 +170760955320,220,0 +170760955368,220,0 +170760955416,219,0 +170760955464,214,0 +170760955513,215,0 +170760955561,215,0 +170760955611,216,0 +170760955659,216,0 +170760955708,216,0 +170760955756,217,0 +170760955806,217,0 +170760955855,218,0 +170760955903,219,0 +170760955951,219,0 +170760956001,220,0 +170760956049,220,0 +170760956098,220,0 +170760956146,220,0 +170760956194,220,0 +170760956243,220,0 +170760956291,219,0 +170760956339,214,0 +170760956387,214,0 +170760956437,216,0 +170760956485,216,0 +170760956534,216,0 +170760956582,217,0 +170760956630,217,0 +170760956680,218,0 +170760956729,218,0 +170760956777,219,0 +170760956825,220,0 +170760956875,219,0 +170760956924,220,0 +170760956972,220,0 +170760957020,220,0 +170760957068,220,0 +170760957116,220,0 +170760957164,219,0 +170760957214,215,0 +170760957262,215,0 +170760957309,216,0 +170760957357,216,0 +170760957405,217,0 +170760957453,217,0 +170760957501,217,0 +170760957549,218,0 +170760957598,218,0 +170760957646,219,0 +170760957694,220,0 +170760957742,220,0 +170760957789,220,0 +170760957839,220,0 +170760957887,221,0 +170760957936,220,0 +170760957984,220,0 +170760958032,220,0 +170760958082,216,0 +170760958131,216,0 +170760958181,216,0 +170760958229,217,0 +170760958278,218,0 +170760958328,218,0 +170760958377,219,0 +170760958427,219,0 +170760958476,220,0 +170760958524,221,0 +170760958572,220,0 +170760958620,220,0 +170760958668,221,0 +170760958716,220,0 +170760958763,221,0 +170760958811,221,0 +170760958859,221,0 +170760958909,219,0 +170760958957,214,0 +170760959005,215,0 +170760959052,215,0 +170760959102,216,0 +170760959150,216,0 +170760959198,217,0 +170760959246,217,0 +170760959294,217,0 +170760959343,217,0 +170760959391,218,0 +170760959439,218,0 +170760959487,219,0 +170760959535,219,0 +170760959583,220,0 +170760959631,220,0 +170760959680,220,0 +170760959728,220,0 +170760959776,220,0 +170760959824,215,0 +170760959874,214,0 +170760959922,215,0 +170760959971,215,0 +170760960019,216,0 diff --git a/laser_value/0211-10.csv b/laser_value/0211-10.csv new file mode 100644 index 0000000..295841b --- /dev/null +++ b/laser_value/0211-10.csv @@ -0,0 +1,7457 @@ +timestamp,laser_value,event +170760960069,216,0 +170760960117,217,0 +170760960167,217,0 +170760960215,217,0 +170760960263,218,0 +170760960310,218,0 +170760960358,219,0 +170760960406,220,0 +170760960454,219,0 +170760960503,219,0 +170760960551,222,0 +170760960601,220,0 +170760960649,219,0 +170760960697,215,0 +170760960745,215,0 +170760960792,215,0 +170760960840,216,0 +170760960888,216,0 +170760960936,216,0 +170760960986,217,0 +170760961035,217,0 +170760961083,218,0 +170760961131,219,0 +170760961179,218,0 +170760961227,219,0 +170760961275,220,0 +170760961323,220,0 +170760961371,221,0 +170760961419,221,0 +170760961467,221,0 +170760961514,220,0 +170760961562,216,0 +170760961610,215,0 +170760961658,215,0 +170760961707,216,0 +170760961755,216,0 +170760961803,216,0 +170760961851,217,0 +170760961899,217,0 +170760961947,217,0 +170760961995,218,0 +170760962044,219,0 +170760962092,220,0 +170760962140,221,0 +170760962189,221,0 +170760962237,220,0 +170760962285,220,0 +170760962333,220,0 +170760962381,220,0 +170760962430,215,0 +170760962478,214,0 +170760962528,215,0 +170760962576,215,0 +170760962624,216,0 +170760962672,216,0 +170760962719,216,0 +170760962767,217,0 +170760962815,217,0 +170760962865,218,0 +170760962914,218,0 +170760962962,219,0 +170760963010,220,0 +170760963059,220,0 +170760963108,220,0 +170760963156,220,0 +170760963205,220,0 +170760963255,220,0 +170760963304,215,0 +170760963354,214,0 +170760963401,214,0 +170760963449,215,0 +170760963497,215,0 +170760963545,216,0 +170760963593,216,0 +170760963641,216,0 +170760963689,217,0 +170760963737,218,0 +170760963784,217,0 +170760963832,218,0 +170760963880,219,0 +170760963928,219,0 +170760963976,220,0 +170760964024,220,0 +170760964072,221,0 +170760964121,220,0 +170760964169,219,0 +170760964217,214,0 +170760964266,214,0 +170760964314,214,0 +170760964362,214,0 +170760964412,215,0 +170760964460,214,0 +170760964508,215,0 +170760964555,215,0 +170760964603,216,0 +170760964651,217,0 +170760964699,217,0 +170760964747,218,0 +170760964795,219,0 +170760964842,218,0 +170760964890,219,0 +170760964938,218,0 +170760964988,219,0 +170760965037,219,0 +170760965085,214,0 +170760965135,214,0 +170760965184,214,0 +170760965232,214,0 +170760965280,214,0 +170760965329,215,0 +170760965377,215,0 +170760965427,215,0 +170760965474,216,0 +170760965524,217,0 +170760965572,217,0 +170760965620,218,0 +170760965667,218,0 +170760965715,218,0 +170760965763,218,0 +170760965812,219,0 +170760965862,220,0 +170760965910,219,0 +170760965958,214,0 +170760966005,214,0 +170760966053,214,0 +170760966101,215,0 +170760966149,215,0 +170760966199,215,0 +170760966247,216,0 +170760966295,216,0 +170760966342,217,0 +170760966390,218,0 +170760966438,218,0 +170760966486,218,0 +170760966535,218,0 +170760966585,219,0 +170760966633,219,0 +170760966681,219,0 +170760966729,220,0 +170760966777,220,0 +170760966825,215,0 +170760966873,214,0 +170760966921,215,0 +170760966969,215,0 +170760967018,215,0 +170760967066,216,0 +170760967115,216,0 +170760967163,216,0 +170760967211,216,0 +170760967261,218,0 +170760967309,218,0 +170760967356,218,0 +170760967404,218,0 +170760967454,219,0 +170760967502,221,0 +170760967550,220,0 +170760967598,220,0 +170760967645,219,0 +170760967693,215,0 +170760967743,214,0 +170760967791,214,0 +170760967840,214,0 +170760967888,215,0 +170760967936,215,0 +170760967984,215,0 +170760968032,216,0 +170760968080,216,0 +170760968128,217,0 +170760968177,217,0 +170760968225,217,0 +170760968273,218,0 +170760968321,218,0 +170760968369,218,0 +170760968417,218,0 +170760968465,218,0 +170760968512,220,0 +170760968560,215,0 +170760968608,214,0 +170760968658,214,0 +170760968707,215,0 +170760968755,215,0 +170760968804,216,0 +170760968852,216,0 +170760968902,216,0 +170760968950,217,0 +170760968998,216,0 +170760969045,218,0 +170760969093,218,0 +170760969143,218,0 +170760969191,219,0 +170760969239,219,0 +170760969287,220,0 +170760969335,219,0 +170760969383,221,0 +170760969431,216,0 +170760969479,214,0 +170760969526,215,0 +170760969576,215,0 +170760969624,216,0 +170760969673,217,0 +170760969721,216,0 +170760969769,216,0 +170760969819,217,0 +170760969868,218,0 +170760969916,219,0 +170760969964,219,0 +170760970012,219,0 +170760970060,220,0 +170760970108,220,0 +170760970157,220,0 +170760970207,221,0 +170760970255,220,0 +170760970303,215,0 +170760970350,214,0 +170760970398,214,0 +170760970446,214,0 +170760970494,215,0 +170760970542,215,0 +170760970590,216,0 +170760970638,216,0 +170760970686,217,0 +170760970734,217,0 +170760970783,218,0 +170760970831,219,0 +170760970879,219,0 +170760970927,219,0 +170760970975,219,0 +170760971022,220,0 +170760971070,220,0 +170760971118,220,0 +170760971166,220,0 +170760971214,214,0 +170760971264,214,0 +170760971312,214,0 +170760971359,214,0 +170760971409,215,0 +170760971457,215,0 +170760971505,216,0 +170760971554,217,0 +170760971602,218,0 +170760971650,218,0 +170760971698,218,0 +170760971746,218,0 +170760971794,219,0 +170760971841,220,0 +170760971889,220,0 +170760971937,220,0 +170760971985,220,0 +170760972035,219,0 +170760972082,214,0 +170760972130,214,0 +170760972178,214,0 +170760972228,215,0 +170760972276,215,0 +170760972325,215,0 +170760972373,215,0 +170760972421,216,0 +170760972469,217,0 +170760972517,217,0 +170760972566,218,0 +170760972614,218,0 +170760972662,219,0 +170760972710,219,0 +170760972758,220,0 +170760972806,219,0 +170760972854,220,0 +170760972902,219,0 +170760972949,214,0 +170760972997,214,0 +170760973047,214,0 +170760973095,214,0 +170760973143,214,0 +170760973191,215,0 +170760973239,215,0 +170760973286,215,0 +170760973334,216,0 +170760973382,216,0 +170760973430,217,0 +170760973480,217,0 +170760973529,218,0 +170760973577,218,0 +170760973625,218,0 +170760973674,219,0 +170760973722,219,0 +170760973770,220,0 +170760973818,215,0 +170760973866,214,0 +170760973914,215,0 +170760973962,215,0 +170760974011,215,0 +170760974059,215,0 +170760974107,215,0 +170760974155,216,0 +170760974203,216,0 +170760974251,216,0 +170760974299,218,0 +170760974347,218,0 +170760974395,219,0 +170760974443,219,0 +170760974491,220,0 +170760974539,219,0 +170760974587,219,0 +170760974634,220,0 +170760974682,215,0 +170760974730,214,0 +170760974778,215,0 +170760974826,214,0 +170760974876,215,0 +170760974924,215,0 +170760974971,215,0 +170760975019,215,0 +170760975067,215,0 +170760975115,216,0 +170760975165,217,0 +170760975213,217,0 +170760975260,218,0 +170760975308,219,0 +170760975358,219,0 +170760975405,220,0 +170760975453,220,0 +170760975501,220,0 +170760975549,217,0 +170760975597,214,0 +170760975644,214,0 +170760975692,214,0 +170760975740,215,0 +170760975788,215,0 +170760975836,215,0 +170760975884,216,0 +170760975932,216,0 +170760975979,216,0 +170760976027,217,0 +170760976075,217,0 +170760976123,218,0 +170760976171,218,0 +170760976219,219,0 +170760976268,219,0 +170760976316,219,0 +170760976364,218,0 +170760976414,220,0 +170760976463,214,0 +170760976512,213,0 +170760976560,213,0 +170760976608,214,0 +170760976656,214,0 +170760976704,214,0 +170760976752,214,0 +170760976800,214,0 +170760976848,214,0 +170760976896,214,0 +170760976943,215,0 +170760976991,216,0 +170760977039,217,0 +170760977087,217,0 +170760977135,217,0 +170760977183,218,0 +170760977230,217,0 +170760977278,218,0 +170760977326,220,0 +170760977374,215,0 +170760977422,214,0 +170760977470,214,0 +170760977518,214,0 +170760977567,215,0 +170760977615,215,0 +170760977665,215,0 +170760977712,215,0 +170760977760,215,0 +170760977810,216,0 +170760977859,217,0 +170760977907,218,0 +170760977957,218,0 +170760978005,218,0 +170760978053,219,0 +170760978100,219,0 +170760978148,220,0 +170760978196,219,0 +170760978245,215,0 +170760978293,214,0 +170760978341,214,0 +170760978389,214,0 +170760978437,214,0 +170760978485,215,0 +170760978532,215,0 +170760978582,215,0 +170760978630,216,0 +170760978677,216,0 +170760978725,216,0 +170760978773,217,0 +170760978821,218,0 +170760978871,218,0 +170760978920,219,0 +170760978968,219,0 +170760979016,219,0 +170760979064,220,0 +170760979113,220,0 +170760979161,215,0 +170760979211,214,0 +170760979259,214,0 +170760979306,215,0 +170760979354,216,0 +170760979402,216,0 +170760979450,217,0 +170760979500,217,0 +170760979547,218,0 +170760979595,218,0 +170760979643,218,0 +170760979693,219,0 +170760979741,220,0 +170760979789,220,0 +170760979838,220,0 +170760979886,220,0 +170760979934,220,0 +170760979982,220,0 +170760980031,216,0 +170760980079,215,0 +170760980127,216,0 +170760980175,216,0 +170760980223,216,0 +170760980271,217,0 +170760980319,217,0 +170760980366,218,0 +170760980414,218,0 +170760980462,219,0 +170760980510,219,0 +170760980558,220,0 +170760980607,220,0 +170760980655,219,0 +170760980703,221,0 +170760980751,220,0 +170760980799,220,0 +170760980847,220,0 +170760980895,219,0 +170760980943,215,0 +170760980990,214,0 +170760981038,214,0 +170760981086,215,0 +170760981134,215,0 +170760981182,215,0 +170760981229,216,0 +170760981277,216,0 +170760981325,216,0 +170760981373,217,0 +170760981421,217,0 +170760981469,218,0 +170760981517,218,0 +170760981565,218,0 +170760981613,219,0 +170760981660,219,0 +170760981708,218,0 +170760981756,217,0 +170760981806,220,0 +170760981855,215,0 +170760981905,214,0 +170760981954,214,0 +170760982002,214,0 +170760982050,214,0 +170760982098,214,0 +170760982146,215,0 +170760982193,215,0 +170760982241,216,0 +170760982289,216,0 +170760982337,216,0 +170760982385,217,0 +170760982433,218,0 +170760982481,218,0 +170760982528,218,0 +170760982576,218,0 +170760982626,218,0 +170760982673,219,0 +170760982721,219,0 +170760982769,214,0 +170760982817,214,0 +170760982865,214,0 +170760982913,214,0 +170760982960,215,0 +170760983008,215,0 +170760983056,216,0 +170760983104,216,0 +170760983152,217,0 +170760983200,217,0 +170760983247,217,0 +170760983295,218,0 +170760983343,219,0 +170760983393,218,0 +170760983441,219,0 +170760983488,219,0 +170760983536,219,0 +170760983584,220,0 +170760983632,215,0 +170760983680,214,0 +170760983728,215,0 +170760983776,215,0 +170760983823,215,0 +170760983871,215,0 +170760983919,216,0 +170760983967,216,0 +170760984015,216,0 +170760984063,217,0 +170760984111,218,0 +170760984159,218,0 +170760984206,218,0 +170760984254,219,0 +170760984302,219,0 +170760984350,220,0 +170760984398,220,0 +170760984446,221,0 +170760984493,220,0 +170760984541,215,0 +170760984589,214,0 +170760984639,215,0 +170760984687,216,0 +170760984734,216,0 +170760984782,217,0 +170760984830,218,0 +170760984878,217,0 +170760984926,218,0 +170760984974,218,0 +170760985021,218,0 +170760985071,221,0 +170760985119,219,0 +170760985167,220,0 +170760985215,221,0 +170760985263,220,0 +170760985312,220,0 +170760985360,220,0 +170760985410,220,0 +170760985457,214,0 +170760985505,214,0 +170760985553,215,0 +170760985601,215,0 +170760985651,216,0 +170760985698,216,0 +170760985746,217,0 +170760985794,218,0 +170760985842,218,0 +170760985890,218,0 +170760985937,219,0 +170760985985,220,0 +170760986033,219,0 +170760986081,220,0 +170760986129,220,0 +170760986177,220,0 +170760986224,220,0 +170760986272,220,0 +170760986320,217,0 +170760986368,214,0 +170760986416,215,0 +170760986464,215,0 +170760986511,216,0 +170760986559,216,0 +170760986607,217,0 +170760986655,217,0 +170760986703,217,0 +170760986750,218,0 +170760986798,218,0 +170760986846,219,0 +170760986894,219,0 +170760986942,219,0 +170760986989,219,0 +170760987037,219,0 +170760987085,220,0 +170760987133,220,0 +170760987180,220,0 +170760987228,215,0 +170760987276,215,0 +170760987324,214,0 +170760987372,215,0 +170760987420,215,0 +170760987468,216,0 +170760987516,216,0 +170760987564,217,0 +170760987611,217,0 +170760987659,217,0 +170760987709,217,0 +170760987756,218,0 +170760987804,219,0 +170760987852,220,0 +170760987900,220,0 +170760987948,219,0 +170760987995,220,0 +170760988043,221,0 +170760988091,220,0 +170760988139,215,0 +170760988187,214,0 +170760988234,214,0 +170760988282,214,0 +170760988330,215,0 +170760988378,215,0 +170760988426,215,0 +170760988475,216,0 +170760988525,217,0 +170760988574,217,0 +170760988622,218,0 +170760988672,218,0 +170760988720,220,0 +170760988768,219,0 +170760988815,219,0 +170760988865,219,0 +170760988913,221,0 +170760988961,220,0 +170760989010,219,0 +170760989060,214,0 +170760989108,214,0 +170760989157,215,0 +170760989206,215,0 +170760989256,237,0 +170760989304,216,0 +170760989352,216,0 +170760989401,217,0 +170760989449,217,0 +170760989497,217,0 +170760989545,218,0 +170760989594,219,0 +170760989644,219,0 +170760989691,219,0 +170760989739,220,0 +170760989787,220,0 +170760989835,219,0 +170760989883,220,0 +170760989931,215,0 +170760989979,214,0 +170760990027,214,0 +170760990076,214,0 +170760990124,214,0 +170760990172,214,0 +170760990221,215,0 +170760990271,216,0 +170760990319,216,0 +170760990367,216,0 +170760990415,216,0 +170760990462,218,0 +170760990510,217,0 +170760990558,217,0 +170760990606,218,0 +170760990654,217,0 +170760990702,219,0 +170760990750,223,0 +170760990798,220,0 +170760990846,215,0 +170760990894,214,0 +170760990943,214,0 +170760990991,214,0 +170760991041,214,0 +170760991088,214,0 +170760991136,215,0 +170760991184,215,0 +170760991232,215,0 +170760991280,215,0 +170760991330,215,0 +170760991379,217,0 +170760991427,217,0 +170760991475,216,0 +170760991525,217,0 +170760991574,219,0 +170760991624,218,0 +170760991672,218,0 +170760991720,218,0 +170760991767,219,0 +170760991815,220,0 +170760991863,220,0 +170760991913,221,0 +170760991961,220,0 +170760992008,220,0 +170760992056,219,0 +170760992104,219,0 +170760992152,217,0 +170760992200,214,0 +170760992248,214,0 +170760992296,214,0 +170760992343,214,0 +170760992391,214,0 +170760992439,215,0 +170760992487,215,0 +170760992535,215,0 +170760992584,216,0 +170760992632,216,0 +170760992680,217,0 +170760992728,218,0 +170760992778,218,0 +170760992826,218,0 +170760992875,219,0 +170760992925,218,0 +170760992974,219,0 +170760993022,220,0 +170760993070,215,0 +170760993120,214,0 +170760993167,214,0 +170760993217,215,0 +170760993265,215,0 +170760993313,215,0 +170760993361,215,0 +170760993410,215,0 +170760993460,216,0 +170760993508,217,0 +170760993555,217,0 +170760993603,218,0 +170760993653,219,0 +170760993701,219,0 +170760993750,220,0 +170760993798,220,0 +170760993846,220,0 +170760993894,220,0 +170760993942,220,0 +170760993991,215,0 +170760994041,215,0 +170760994089,215,0 +170760994137,215,0 +170760994186,215,0 +170760994234,216,0 +170760994282,216,0 +170760994330,217,0 +170760994378,216,0 +170760994428,218,0 +170760994475,219,0 +170760994523,219,0 +170760994571,220,0 +170760994619,220,0 +170760994667,220,0 +170760994715,221,0 +170760994764,220,0 +170760994812,220,0 +170760994860,215,0 +170760994908,214,0 +170760994956,214,0 +170760995006,215,0 +170760995055,215,0 +170760995103,215,0 +170760995151,216,0 +170760995199,217,0 +170760995248,217,0 +170760995296,218,0 +170760995346,218,0 +170760995395,219,0 +170760995443,219,0 +170760995491,220,0 +170760995539,220,0 +170760995587,219,0 +170760995635,220,0 +170760995684,220,0 +170760995732,219,0 +170760995780,214,0 +170760995828,214,0 +170760995877,215,0 +170760995927,215,0 +170760995975,215,0 +170760996024,216,0 +170760996074,216,0 +170760996122,216,0 +170760996171,217,0 +170760996219,217,0 +170760996267,218,0 +170760996316,218,0 +170760996364,219,0 +170760996412,219,0 +170760996460,219,0 +170760996508,219,0 +170760996556,220,0 +170760996604,219,0 +170760996652,215,0 +170760996702,214,0 +170760996751,214,0 +170760996801,214,0 +170760996849,214,0 +170760996897,215,0 +170760996944,215,0 +170760996992,215,0 +170760997040,216,0 +170760997090,216,0 +170760997139,216,0 +170760997187,216,0 +170760997237,217,0 +170760997285,218,0 +170760997332,219,0 +170760997380,218,0 +170760997430,218,0 +170760997478,219,0 +170760997527,219,0 +170760997575,214,0 +170760997623,214,0 +170760997671,214,0 +170760997719,214,0 +170760997767,214,0 +170760997817,214,0 +170760997865,215,0 +170760997912,215,0 +170760997960,215,0 +170760998008,215,0 +170760998058,216,0 +170760998107,217,0 +170760998157,217,0 +170760998206,218,0 +170760998254,218,0 +170760998302,218,0 +170760998352,219,0 +170760998400,219,0 +170760998448,215,0 +170760998495,214,0 +170760998543,214,0 +170760998591,214,0 +170760998639,214,0 +170760998687,215,0 +170760998737,215,0 +170760998784,215,0 +170760998832,216,0 +170760998880,216,0 +170760998928,217,0 +170760998976,217,0 +170760999024,218,0 +170760999073,218,0 +170760999121,218,0 +170760999171,219,0 +170760999219,219,0 +170760999267,219,0 +170760999314,220,0 +170760999362,214,0 +170760999410,214,0 +170760999460,214,0 +170760999508,214,0 +170760999556,215,0 +170760999605,215,0 +170760999653,215,0 +170760999701,216,0 +170760999749,216,0 +170760999797,216,0 +170760999845,218,0 +170760999892,217,0 +170760999940,218,0 +170760999988,218,0 +170761000036,219,0 +170761000084,219,0 +170761000131,219,0 +170761000179,219,0 +170761000229,218,0 +170761000276,214,0 +170761000324,214,0 +170761000372,214,0 +170761000420,214,0 +170761000468,215,0 +170761000516,215,0 +170761000563,215,0 +170761000611,216,0 +170761000659,217,0 +170761000707,217,0 +170761000755,218,0 +170761000803,218,0 +170761000851,219,0 +170761000899,219,0 +170761000947,219,0 +170761000996,220,0 +170761001044,219,0 +170761001092,219,0 +170761001140,216,0 +170761001188,214,0 +170761001235,214,0 +170761001283,214,0 +170761001331,214,0 +170761001379,215,0 +170761001427,215,0 +170761001474,215,0 +170761001522,216,0 +170761001570,217,0 +170761001618,218,0 +170761001667,218,0 +170761001715,219,0 +170761001763,219,0 +170761001811,219,0 +170761001858,219,0 +170761001906,219,0 +170761001954,220,0 +170761002002,219,0 +170761002050,215,0 +170761002098,214,0 +170761002146,215,0 +170761002195,215,0 +170761002243,215,0 +170761002291,216,0 +170761002339,216,0 +170761002388,217,0 +170761002438,217,0 +170761002487,217,0 +170761002537,218,0 +170761002585,218,0 +170761002634,219,0 +170761002684,218,0 +170761002733,219,0 +170761002781,219,0 +170761002829,219,0 +170761002877,219,0 +170761002926,217,0 +170761002976,214,0 +170761003025,214,0 +170761003075,214,0 +170761003124,215,0 +170761003174,216,0 +170761003223,216,0 +170761003271,216,0 +170761003319,217,0 +170761003367,217,0 +170761003415,217,0 +170761003463,218,0 +170761003511,219,0 +170761003559,219,0 +170761003608,219,0 +170761003658,220,0 +170761003705,220,0 +170761003753,220,0 +170761003803,220,0 +170761003851,215,0 +170761003900,214,0 +170761003948,214,0 +170761003996,215,0 +170761004044,216,0 +170761004092,216,0 +170761004140,216,0 +170761004188,216,0 +170761004236,217,0 +170761004283,217,0 +170761004331,217,0 +170761004379,219,0 +170761004427,219,0 +170761004475,218,0 +170761004523,220,0 +170761004571,219,0 +170761004619,220,0 +170761004666,220,0 +170761004716,219,0 +170761004764,214,0 +170761004812,214,0 +170761004859,215,0 +170761004907,215,0 +170761004955,216,0 +170761005003,216,0 +170761005051,216,0 +170761005099,217,0 +170761005147,217,0 +170761005195,218,0 +170761005242,218,0 +170761005290,219,0 +170761005338,219,0 +170761005386,220,0 +170761005435,220,0 +170761005485,220,0 +170761005533,220,0 +170761005581,220,0 +170761005629,215,0 +170761005678,214,0 +170761005726,215,0 +170761005774,215,0 +170761005824,216,0 +170761005873,216,0 +170761005923,216,0 +170761005971,216,0 +170761006018,217,0 +170761006068,217,0 +170761006116,217,0 +170761006164,219,0 +170761006213,219,0 +170761006261,220,0 +170761006309,220,0 +170761006358,220,0 +170761006407,221,0 +170761006454,221,0 +170761006502,220,0 +170761006550,215,0 +170761006600,215,0 +170761006648,215,0 +170761006696,216,0 +170761006744,216,0 +170761006792,216,0 +170761006841,217,0 +170761006891,218,0 +170761006939,218,0 +170761006988,219,0 +170761007038,219,0 +170761007085,219,0 +170761007135,220,0 +170761007185,218,0 +170761007233,220,0 +170761007281,221,0 +170761007329,221,0 +170761007376,220,0 +170761007424,215,0 +170761007472,214,0 +170761007520,215,0 +170761007568,215,0 +170761007616,217,0 +170761007664,217,0 +170761007712,217,0 +170761007761,217,0 +170761007809,218,0 +170761007857,218,0 +170761007905,218,0 +170761007953,219,0 +170761008001,220,0 +170761008050,219,0 +170761008098,221,0 +170761008146,220,0 +170761008194,219,0 +170761008242,220,0 +170761008290,219,0 +170761008338,215,0 +170761008386,214,0 +170761008434,215,0 +170761008482,215,0 +170761008529,215,0 +170761008577,216,0 +170761008627,216,0 +170761008675,216,0 +170761008723,217,0 +170761008770,218,0 +170761008820,218,0 +170761008868,218,0 +170761008916,219,0 +170761008964,219,0 +170761009012,219,0 +170761009060,219,0 +170761009109,219,0 +170761009157,220,0 +170761009205,219,0 +170761009253,214,0 +170761009303,214,0 +170761009350,215,0 +170761009398,216,0 +170761009446,216,0 +170761009494,216,0 +170761009542,216,0 +170761009590,217,0 +170761009639,217,0 +170761009687,218,0 +170761009735,217,0 +170761009783,219,0 +170761009833,219,0 +170761009882,220,0 +170761009930,220,0 +170761009978,220,0 +170761010026,220,0 +170761010074,220,0 +170761010123,215,0 +170761010173,214,0 +170761010222,214,0 +170761010272,214,0 +170761010320,215,0 +170761010368,215,0 +170761010416,216,0 +170761010463,216,0 +170761010513,216,0 +170761010561,216,0 +170761010609,217,0 +170761010658,218,0 +170761010706,219,0 +170761010754,219,0 +170761010802,219,0 +170761010852,219,0 +170761010900,220,0 +170761010949,219,0 +170761010997,220,0 +170761011045,214,0 +170761011093,214,0 +170761011141,215,0 +170761011189,215,0 +170761011237,215,0 +170761011285,216,0 +170761011334,216,0 +170761011384,216,0 +170761011432,217,0 +170761011480,217,0 +170761011528,218,0 +170761011577,219,0 +170761011625,219,0 +170761011673,218,0 +170761011721,219,0 +170761011770,220,0 +170761011818,220,0 +170761011866,220,0 +170761011914,216,0 +170761011964,215,0 +170761012012,215,0 +170761012060,215,0 +170761012109,216,0 +170761012159,216,0 +170761012208,216,0 +170761012256,216,0 +170761012304,217,0 +170761012352,218,0 +170761012400,218,0 +170761012447,218,0 +170761012495,220,0 +170761012543,220,0 +170761012591,220,0 +170761012639,220,0 +170761012687,220,0 +170761012737,220,0 +170761012786,219,0 +170761012836,214,0 +170761012883,214,0 +170761012931,214,0 +170761012981,215,0 +170761013030,215,0 +170761013078,216,0 +170761013128,216,0 +170761013176,216,0 +170761013223,217,0 +170761013271,217,0 +170761013319,218,0 +170761013367,218,0 +170761013415,218,0 +170761013463,219,0 +170761013511,219,0 +170761013559,220,0 +170761013606,219,0 +170761013654,220,0 +170761013702,219,0 +170761013750,214,0 +170761013798,214,0 +170761013846,214,0 +170761013894,214,0 +170761013942,215,0 +170761013989,215,0 +170761014037,215,0 +170761014085,216,0 +170761014133,216,0 +170761014181,216,0 +170761014229,217,0 +170761014277,217,0 +170761014325,218,0 +170761014373,219,0 +170761014422,219,0 +170761014470,219,0 +170761014518,220,0 +170761014566,221,0 +170761014615,215,0 +170761014663,214,0 +170761014712,214,0 +170761014760,214,0 +170761014808,214,0 +170761014856,215,0 +170761014903,216,0 +170761014951,216,0 +170761014999,216,0 +170761015047,216,0 +170761015095,217,0 +170761015143,218,0 +170761015190,219,0 +170761015238,219,0 +170761015286,219,0 +170761015334,220,0 +170761015382,218,0 +170761015430,220,0 +170761015478,220,0 +170761015527,214,0 +170761015575,214,0 +170761015625,214,0 +170761015672,214,0 +170761015720,215,0 +170761015768,215,0 +170761015816,215,0 +170761015864,216,0 +170761015912,216,0 +170761015961,216,0 +170761016009,218,0 +170761016057,219,0 +170761016104,218,0 +170761016152,219,0 +170761016200,219,0 +170761016248,220,0 +170761016296,220,0 +170761016344,220,0 +170761016393,215,0 +170761016441,214,0 +170761016489,215,0 +170761016538,215,0 +170761016586,215,0 +170761016634,216,0 +170761016682,216,0 +170761016730,216,0 +170761016778,216,0 +170761016826,217,0 +170761016875,217,0 +170761016923,217,0 +170761016971,218,0 +170761017021,219,0 +170761017069,219,0 +170761017117,221,0 +170761017166,219,0 +170761017214,220,0 +170761017262,219,0 +170761017310,215,0 +170761017357,214,0 +170761017405,215,0 +170761017453,215,0 +170761017501,215,0 +170761017549,216,0 +170761017598,216,0 +170761017646,216,0 +170761017694,216,0 +170761017742,217,0 +170761017792,216,0 +170761017840,218,0 +170761017888,219,0 +170761017936,219,0 +170761017985,219,0 +170761018035,221,0 +170761018084,219,0 +170761018132,220,0 +170761018180,218,0 +170761018228,214,0 +170761018276,214,0 +170761018325,214,0 +170761018375,214,0 +170761018422,214,0 +170761018470,215,0 +170761018518,215,0 +170761018566,215,0 +170761018614,216,0 +170761018662,217,0 +170761018710,218,0 +170761018758,218,0 +170761018806,218,0 +170761018854,218,0 +170761018903,219,0 +170761018951,220,0 +170761018999,219,0 +170761019047,220,0 +170761019095,215,0 +170761019144,214,0 +170761019192,214,0 +170761019240,214,0 +170761019288,214,0 +170761019336,215,0 +170761019385,215,0 +170761019433,215,0 +170761019481,215,0 +170761019529,215,0 +170761019579,216,0 +170761019626,217,0 +170761019674,217,0 +170761019722,217,0 +170761019770,218,0 +170761019818,218,0 +170761019866,218,0 +170761019914,219,0 +170761019962,219,0 +170761020010,215,0 +170761020057,214,0 +170761020105,215,0 +170761020153,214,0 +170761020201,215,0 +170761020249,215,0 +170761020297,215,0 +170761020344,216,0 +170761020392,216,0 +170761020440,217,0 +170761020488,218,0 +170761020536,217,0 +170761020584,218,0 +170761020631,218,0 +170761020679,219,0 +170761020727,219,0 +170761020775,219,0 +170761020823,219,0 +170761020871,219,0 +170761020920,214,0 +170761020968,215,0 +170761021016,215,0 +170761021064,215,0 +170761021112,216,0 +170761021159,216,0 +170761021207,216,0 +170761021255,217,0 +170761021303,218,0 +170761021351,218,0 +170761021399,219,0 +170761021447,219,0 +170761021494,220,0 +170761021542,220,0 +170761021590,220,0 +170761021638,219,0 +170761021686,219,0 +170761021734,219,0 +170761021783,215,0 +170761021831,214,0 +170761021879,215,0 +170761021927,216,0 +170761021974,216,0 +170761022022,217,0 +170761022070,217,0 +170761022118,217,0 +170761022167,218,0 +170761022215,218,0 +170761022265,218,0 +170761022314,219,0 +170761022362,220,0 +170761022412,220,0 +170761022459,219,0 +170761022509,220,0 +170761022557,220,0 +170761022606,220,0 +170761022654,219,0 +170761022702,215,0 +170761022752,215,0 +170761022800,215,0 +170761022848,216,0 +170761022896,216,0 +170761022943,217,0 +170761022991,218,0 +170761023039,218,0 +170761023087,218,0 +170761023137,219,0 +170761023185,219,0 +170761023234,220,0 +170761023282,220,0 +170761023330,221,0 +170761023378,220,0 +170761023426,220,0 +170761023474,220,0 +170761023523,220,0 +170761023573,215,0 +170761023622,214,0 +170761023670,215,0 +170761023718,215,0 +170761023766,216,0 +170761023814,216,0 +170761023861,217,0 +170761023909,217,0 +170761023957,218,0 +170761024005,218,0 +170761024053,218,0 +170761024102,219,0 +170761024150,219,0 +170761024198,220,0 +170761024246,220,0 +170761024295,220,0 +170761024343,220,0 +170761024391,220,0 +170761024439,220,0 +170761024487,215,0 +170761024535,214,0 +170761024582,214,0 +170761024632,214,0 +170761024680,215,0 +170761024728,215,0 +170761024775,215,0 +170761024823,215,0 +170761024871,216,0 +170761024919,217,0 +170761024967,217,0 +170761025015,217,0 +170761025063,217,0 +170761025111,219,0 +170761025159,218,0 +170761025206,218,0 +170761025254,218,0 +170761025302,220,0 +170761025350,219,0 +170761025398,214,0 +170761025447,214,0 +170761025495,214,0 +170761025543,214,0 +170761025591,215,0 +170761025639,215,0 +170761025687,215,0 +170761025734,216,0 +170761025782,216,0 +170761025830,216,0 +170761025880,217,0 +170761025929,218,0 +170761025979,218,0 +170761026028,219,0 +170761026078,219,0 +170761026126,219,0 +170761026175,218,0 +170761026223,220,0 +170761026273,215,0 +170761026321,214,0 +170761026370,214,0 +170761026418,215,0 +170761026466,215,0 +170761026514,215,0 +170761026562,215,0 +170761026609,216,0 +170761026657,217,0 +170761026707,217,0 +170761026755,218,0 +170761026802,218,0 +170761026850,219,0 +170761026898,219,0 +170761026946,219,0 +170761026994,221,0 +170761027042,219,0 +170761027091,220,0 +170761027139,220,0 +170761027187,215,0 +170761027236,215,0 +170761027284,215,0 +170761027332,215,0 +170761027380,216,0 +170761027430,216,0 +170761027479,217,0 +170761027527,216,0 +170761027575,217,0 +170761027623,218,0 +170761027671,218,0 +170761027719,219,0 +170761027768,219,0 +170761027816,220,0 +170761027864,219,0 +170761027912,219,0 +170761027960,220,0 +170761028008,219,0 +170761028057,217,0 +170761028107,214,0 +170761028155,214,0 +170761028203,215,0 +170761028251,215,0 +170761028299,216,0 +170761028347,216,0 +170761028394,216,0 +170761028444,217,0 +170761028492,218,0 +170761028540,217,0 +170761028589,218,0 +170761028637,219,0 +170761028685,219,0 +170761028733,219,0 +170761028781,219,0 +170761028831,220,0 +170761028878,220,0 +170761028928,220,0 +170761028976,215,0 +170761029024,214,0 +170761029072,215,0 +170761029119,215,0 +170761029167,216,0 +170761029215,216,0 +170761029263,216,0 +170761029311,216,0 +170761029359,217,0 +170761029407,217,0 +170761029456,218,0 +170761029506,218,0 +170761029554,219,0 +170761029603,220,0 +170761029653,221,0 +170761029701,220,0 +170761029750,220,0 +170761029798,220,0 +170761029846,215,0 +170761029894,214,0 +170761029942,214,0 +170761029990,214,0 +170761030038,214,0 +170761030086,215,0 +170761030134,215,0 +170761030183,216,0 +170761030231,216,0 +170761030279,217,0 +170761030327,218,0 +170761030375,218,0 +170761030423,218,0 +170761030473,219,0 +170761030520,219,0 +170761030570,220,0 +170761030619,220,0 +170761030667,220,0 +170761030715,220,0 +170761030763,215,0 +170761030811,214,0 +170761030859,214,0 +170761030907,215,0 +170761030955,214,0 +170761031003,215,0 +170761031050,215,0 +170761031098,215,0 +170761031146,215,0 +170761031194,217,0 +170761031244,217,0 +170761031293,217,0 +170761031341,218,0 +170761031389,218,0 +170761031437,219,0 +170761031484,218,0 +170761031532,219,0 +170761031580,219,0 +170761031628,220,0 +170761031676,215,0 +170761031724,214,0 +170761031772,214,0 +170761031820,214,0 +170761031869,214,0 +170761031917,215,0 +170761031964,215,0 +170761032012,215,0 +170761032060,216,0 +170761032108,216,0 +170761032156,217,0 +170761032204,218,0 +170761032252,218,0 +170761032299,220,0 +170761032347,219,0 +170761032395,219,0 +170761032443,219,0 +170761032491,219,0 +170761032539,219,0 +170761032588,214,0 +170761032636,214,0 +170761032684,214,0 +170761032732,214,0 +170761032782,215,0 +170761032831,214,0 +170761032881,215,0 +170761032928,215,0 +170761032976,216,0 +170761033024,216,0 +170761033074,216,0 +170761033122,217,0 +170761033169,217,0 +170761033217,218,0 +170761033265,219,0 +170761033313,219,0 +170761033361,218,0 +170761033409,221,0 +170761033457,215,0 +170761033504,214,0 +170761033552,214,0 +170761033600,214,0 +170761033650,214,0 +170761033699,215,0 +170761033747,216,0 +170761033795,216,0 +170761033843,216,0 +170761033891,216,0 +170761033939,217,0 +170761033986,218,0 +170761034034,218,0 +170761034082,218,0 +170761034130,218,0 +170761034178,218,0 +170761034226,217,0 +170761034274,219,0 +170761034321,220,0 +170761034369,215,0 +170761034417,214,0 +170761034465,214,0 +170761034513,214,0 +170761034561,214,0 +170761034609,215,0 +170761034656,215,0 +170761034704,216,0 +170761034752,216,0 +170761034800,216,0 +170761034848,216,0 +170761034896,217,0 +170761034944,218,0 +170761034992,218,0 +170761035040,218,0 +170761035089,220,0 +170761035139,220,0 +170761035189,220,0 +170761035236,218,0 +170761035286,214,0 +170761035335,214,0 +170761035383,214,0 +170761035431,214,0 +170761035479,215,0 +170761035527,215,0 +170761035577,216,0 +170761035624,216,0 +170761035672,216,0 +170761035720,217,0 +170761035768,218,0 +170761035818,219,0 +170761035866,220,0 +170761035914,220,0 +170761035962,220,0 +170761036010,220,0 +170761036057,219,0 +170761036105,220,0 +170761036153,215,0 +170761036201,214,0 +170761036249,214,0 +170761036297,215,0 +170761036345,215,0 +170761036392,216,0 +170761036440,216,0 +170761036488,216,0 +170761036536,217,0 +170761036584,216,0 +170761036633,218,0 +170761036681,219,0 +170761036729,219,0 +170761036777,219,0 +170761036825,220,0 +170761036873,219,0 +170761036922,220,0 +170761036972,221,0 +170761037020,219,0 +170761037068,215,0 +170761037115,215,0 +170761037163,215,0 +170761037211,215,0 +170761037259,216,0 +170761037307,216,0 +170761037355,216,0 +170761037403,217,0 +170761037451,217,0 +170761037499,219,0 +170761037547,218,0 +170761037596,219,0 +170761037644,220,0 +170761037692,220,0 +170761037740,221,0 +170761037788,220,0 +170761037838,221,0 +170761037886,220,0 +170761037935,220,0 +170761037983,215,0 +170761038032,215,0 +170761038080,215,0 +170761038128,216,0 +170761038178,217,0 +170761038227,217,0 +170761038275,217,0 +170761038323,218,0 +170761038371,218,0 +170761038419,219,0 +170761038467,219,0 +170761038515,220,0 +170761038563,220,0 +170761038611,220,0 +170761038659,220,0 +170761038707,221,0 +170761038755,220,0 +170761038804,220,0 +170761038853,215,0 +170761038903,215,0 +170761038951,216,0 +170761038999,216,0 +170761039047,216,0 +170761039095,216,0 +170761039144,217,0 +170761039192,217,0 +170761039240,218,0 +170761039288,218,0 +170761039338,218,0 +170761039387,219,0 +170761039435,219,0 +170761039483,219,0 +170761039531,219,0 +170761039581,220,0 +170761039628,220,0 +170761039676,219,0 +170761039724,219,0 +170761039772,215,0 +170761039820,215,0 +170761039868,216,0 +170761039916,217,0 +170761039964,216,0 +170761040014,217,0 +170761040061,217,0 +170761040109,218,0 +170761040157,217,0 +170761040205,219,0 +170761040253,218,0 +170761040303,219,0 +170761040351,219,0 +170761040400,219,0 +170761040448,220,0 +170761040496,219,0 +170761040544,218,0 +170761040594,220,0 +170761040641,216,0 +170761040689,214,0 +170761040739,214,0 +170761040787,214,0 +170761040835,215,0 +170761040883,215,0 +170761040931,215,0 +170761040979,216,0 +170761041028,217,0 +170761041076,217,0 +170761041124,217,0 +170761041172,219,0 +170761041220,218,0 +170761041268,219,0 +170761041316,219,0 +170761041364,220,0 +170761041413,220,0 +170761041461,220,0 +170761041509,220,0 +170761041557,215,0 +170761041605,214,0 +170761041652,214,0 +170761041700,214,0 +170761041748,215,0 +170761041796,215,0 +170761041844,216,0 +170761041892,215,0 +170761041939,215,0 +170761041987,216,0 +170761042035,216,0 +170761042085,217,0 +170761042133,217,0 +170761042181,218,0 +170761042229,218,0 +170761042278,218,0 +170761042326,218,0 +170761042374,219,0 +170761042424,217,0 +170761042472,214,0 +170761042521,214,0 +170761042570,214,0 +170761042618,214,0 +170761042668,214,0 +170761042716,214,0 +170761042764,215,0 +170761042812,215,0 +170761042860,216,0 +170761042909,216,0 +170761042957,216,0 +170761043006,217,0 +170761043054,217,0 +170761043102,217,0 +170761043150,218,0 +170761043198,218,0 +170761043245,218,0 +170761043293,220,0 +170761043341,215,0 +170761043389,214,0 +170761043437,215,0 +170761043486,215,0 +170761043534,215,0 +170761043582,216,0 +170761043630,217,0 +170761043677,217,0 +170761043725,217,0 +170761043773,217,0 +170761043821,218,0 +170761043869,218,0 +170761043917,219,0 +170761043965,220,0 +170761044014,220,0 +170761044064,220,0 +170761044113,220,0 +170761044161,220,0 +170761044211,219,0 +170761044259,215,0 +170761044307,214,0 +170761044355,214,0 +170761044402,215,0 +170761044450,215,0 +170761044500,216,0 +170761044548,217,0 +170761044595,217,0 +170761044643,217,0 +170761044693,218,0 +170761044741,218,0 +170761044789,219,0 +170761044837,220,0 +170761044886,220,0 +170761044934,220,0 +170761044982,220,0 +170761045031,220,0 +170761045079,220,0 +170761045127,215,0 +170761045175,214,0 +170761045223,214,0 +170761045273,215,0 +170761045321,215,0 +170761045369,215,0 +170761045417,216,0 +170761045466,216,0 +170761045514,217,0 +170761045562,218,0 +170761045610,218,0 +170761045658,218,0 +170761045707,218,0 +170761045755,218,0 +170761045805,219,0 +170761045853,219,0 +170761045902,219,0 +170761045950,219,0 +170761045998,219,0 +170761046046,215,0 +170761046094,214,0 +170761046143,214,0 +170761046191,214,0 +170761046239,215,0 +170761046288,215,0 +170761046338,216,0 +170761046386,216,0 +170761046434,217,0 +170761046482,217,0 +170761046529,217,0 +170761046577,218,0 +170761046625,218,0 +170761046673,218,0 +170761046721,219,0 +170761046769,220,0 +170761046817,219,0 +170761046865,220,0 +170761046913,220,0 +170761046960,214,0 +170761047008,214,0 +170761047058,214,0 +170761047106,215,0 +170761047154,215,0 +170761047202,215,0 +170761047250,216,0 +170761047297,216,0 +170761047347,217,0 +170761047396,217,0 +170761047446,216,0 +170761047495,218,0 +170761047543,218,0 +170761047591,219,0 +170761047639,219,0 +170761047689,219,0 +170761047737,219,0 +170761047784,219,0 +170761047832,215,0 +170761047880,214,0 +170761047928,214,0 +170761047976,214,0 +170761048026,214,0 +170761048075,214,0 +170761048123,214,0 +170761048171,215,0 +170761048220,215,0 +170761048268,216,0 +170761048316,216,0 +170761048366,217,0 +170761048415,217,0 +170761048463,218,0 +170761048511,218,0 +170761048559,218,0 +170761048607,218,0 +170761048655,219,0 +170761048704,219,0 +170761048752,214,0 +170761048802,214,0 +170761048851,215,0 +170761048899,215,0 +170761048947,215,0 +170761048995,215,0 +170761049044,215,0 +170761049092,216,0 +170761049140,216,0 +170761049188,217,0 +170761049236,217,0 +170761049284,218,0 +170761049334,218,0 +170761049381,218,0 +170761049429,219,0 +170761049477,219,0 +170761049525,219,0 +170761049575,220,0 +170761049623,215,0 +170761049671,214,0 +170761049719,215,0 +170761049766,215,0 +170761049814,215,0 +170761049862,216,0 +170761049912,216,0 +170761049960,216,0 +170761050007,216,0 +170761050055,217,0 +170761050104,217,0 +170761050153,218,0 +170761050202,218,0 +170761050250,219,0 +170761050298,219,0 +170761050346,220,0 +170761050394,220,0 +170761050442,219,0 +170761050490,219,0 +170761050538,215,0 +170761050586,215,0 +170761050635,215,0 +170761050683,216,0 +170761050733,217,0 +170761050781,216,0 +170761050829,217,0 +170761050878,218,0 +170761050928,219,0 +170761050976,219,0 +170761051024,220,0 +170761051072,220,0 +170761051121,220,0 +170761051169,220,0 +170761051219,221,0 +170761051268,221,0 +170761051316,220,0 +170761051364,221,0 +170761051414,219,0 +170761051462,214,0 +170761051511,215,0 +170761051561,215,0 +170761051609,216,0 +170761051656,216,0 +170761051706,217,0 +170761051755,217,0 +170761051805,217,0 +170761051853,218,0 +170761051901,218,0 +170761051950,219,0 +170761051998,219,0 +170761052046,219,0 +170761052094,220,0 +170761052144,221,0 +170761052192,220,0 +170761052241,220,0 +170761052289,219,0 +170761052339,215,0 +170761052387,214,0 +170761052435,214,0 +170761052484,215,0 +170761052532,215,0 +170761052580,216,0 +170761052629,216,0 +170761052679,216,0 +170761052727,216,0 +170761052775,217,0 +170761052823,218,0 +170761052871,218,0 +170761052919,218,0 +170761052967,219,0 +170761053015,219,0 +170761053064,219,0 +170761053112,220,0 +170761053160,220,0 +170761053209,220,0 +170761053257,214,0 +170761053305,214,0 +170761053353,215,0 +170761053401,215,0 +170761053449,215,0 +170761053499,216,0 +170761053547,216,0 +170761053596,216,0 +170761053646,217,0 +170761053695,217,0 +170761053743,218,0 +170761053793,218,0 +170761053841,220,0 +170761053890,220,0 +170761053938,220,0 +170761053986,220,0 +170761054035,220,0 +170761054083,220,0 +170761054133,216,0 +170761054181,215,0 +170761054229,216,0 +170761054278,216,0 +170761054328,216,0 +170761054376,217,0 +170761054425,217,0 +170761054475,217,0 +170761054524,218,0 +170761054574,218,0 +170761054622,219,0 +170761054670,220,0 +170761054718,220,0 +170761054767,220,0 +170761054815,220,0 +170761054863,220,0 +170761054911,220,0 +170761054959,220,0 +170761055007,215,0 +170761055055,214,0 +170761055102,215,0 +170761055152,215,0 +170761055201,216,0 +170761055249,216,0 +170761055297,216,0 +170761055345,217,0 +170761055394,218,0 +170761055442,218,0 +170761055490,218,0 +170761055538,219,0 +170761055586,219,0 +170761055634,220,0 +170761055682,220,0 +170761055731,221,0 +170761055779,220,0 +170761055829,220,0 +170761055877,220,0 +170761055926,215,0 +170761055974,214,0 +170761056023,215,0 +170761056071,215,0 +170761056119,215,0 +170761056167,216,0 +170761056215,216,0 +170761056263,216,0 +170761056311,217,0 +170761056361,218,0 +170761056409,218,0 +170761056457,219,0 +170761056504,219,0 +170761056552,220,0 +170761056600,220,0 +170761056648,220,0 +170761056696,225,0 +170761056744,220,0 +170761056792,220,0 +170761056840,215,0 +170761056888,215,0 +170761056937,215,0 +170761056987,216,0 +170761057035,216,0 +170761057082,216,0 +170761057130,218,0 +170761057178,218,0 +170761057226,218,0 +170761057274,218,0 +170761057322,219,0 +170761057369,220,0 +170761057419,220,0 +170761057467,219,0 +170761057514,220,0 +170761057562,220,0 +170761057610,220,0 +170761057658,220,0 +170761057706,217,0 +170761057754,214,0 +170761057802,215,0 +170761057850,215,0 +170761057897,216,0 +170761057945,216,0 +170761057993,216,0 +170761058041,217,0 +170761058089,217,0 +170761058137,218,0 +170761058184,218,0 +170761058234,219,0 +170761058282,219,0 +170761058330,219,0 +170761058377,219,0 +170761058425,220,0 +170761058473,220,0 +170761058521,221,0 +170761058569,220,0 +170761058617,215,0 +170761058665,214,0 +170761058712,214,0 +170761058762,215,0 +170761058811,215,0 +170761058859,216,0 +170761058907,216,0 +170761058955,216,0 +170761059003,216,0 +170761059051,217,0 +170761059098,217,0 +170761059146,218,0 +170761059194,219,0 +170761059242,219,0 +170761059290,219,0 +170761059338,220,0 +170761059385,220,0 +170761059433,219,0 +170761059481,219,0 +170761059529,214,0 +170761059577,214,0 +170761059625,214,0 +170761059672,214,0 +170761059720,215,0 +170761059770,216,0 +170761059818,215,0 +170761059866,215,0 +170761059915,216,0 +170761059965,217,0 +170761060013,218,0 +170761060060,218,0 +170761060108,219,0 +170761060156,219,0 +170761060204,220,0 +170761060252,220,0 +170761060300,220,0 +170761060348,220,0 +170761060396,219,0 +170761060444,214,0 +170761060492,214,0 +170761060541,214,0 +170761060589,215,0 +170761060637,215,0 +170761060685,216,0 +170761060734,216,0 +170761060784,216,0 +170761060832,216,0 +170761060881,217,0 +170761060929,219,0 +170761060979,219,0 +170761061029,220,0 +170761061076,219,0 +170761061126,220,0 +170761061174,220,0 +170761061222,220,0 +170761061271,219,0 +170761061319,214,0 +170761061367,214,0 +170761061415,215,0 +170761061465,215,0 +170761061513,215,0 +170761061560,216,0 +170761061608,216,0 +170761061656,216,0 +170761061704,217,0 +170761061752,217,0 +170761061800,217,0 +170761061847,218,0 +170761061895,218,0 +170761061945,219,0 +170761061992,219,0 +170761062040,219,0 +170761062088,219,0 +170761062136,220,0 +170761062186,217,0 +170761062233,214,0 +170761062281,214,0 +170761062329,214,0 +170761062377,214,0 +170761062425,215,0 +170761062473,215,0 +170761062521,216,0 +170761062568,216,0 +170761062616,216,0 +170761062664,217,0 +170761062712,217,0 +170761062760,217,0 +170761062808,218,0 +170761062856,219,0 +170761062904,219,0 +170761062952,219,0 +170761062999,220,0 +170761063047,220,0 +170761063095,219,0 +170761063143,213,0 +170761063191,214,0 +170761063239,214,0 +170761063287,215,0 +170761063335,215,0 +170761063383,216,0 +170761063431,215,0 +170761063478,216,0 +170761063526,217,0 +170761063574,218,0 +170761063622,218,0 +170761063670,218,0 +170761063718,219,0 +170761063765,219,0 +170761063813,219,0 +170761063861,219,0 +170761063911,219,0 +170761063958,219,0 +170761064006,215,0 +170761064056,214,0 +170761064105,214,0 +170761064155,214,0 +170761064203,214,0 +170761064252,215,0 +170761064302,215,0 +170761064351,216,0 +170761064401,216,0 +170761064449,217,0 +170761064497,217,0 +170761064546,218,0 +170761064594,218,0 +170761064642,219,0 +170761064690,219,0 +170761064738,219,0 +170761064786,219,0 +170761064834,220,0 +170761064882,216,0 +170761064930,214,0 +170761064978,214,0 +170761065025,214,0 +170761065073,214,0 +170761065121,214,0 +170761065169,215,0 +170761065219,215,0 +170761065267,215,0 +170761065314,216,0 +170761065364,216,0 +170761065412,217,0 +170761065460,218,0 +170761065508,218,0 +170761065555,218,0 +170761065603,219,0 +170761065651,219,0 +170761065699,219,0 +170761065747,220,0 +170761065794,217,0 +170761065842,216,0 +170761065890,216,0 +170761065938,217,0 +170761065986,217,0 +170761066035,217,0 +170761066083,218,0 +170761066131,219,0 +170761066181,219,0 +170761066229,220,0 +170761066276,220,0 +170761066326,220,0 +170761066375,221,0 +170761066423,221,0 +170761066473,220,0 +170761066522,220,0 +170761066572,220,0 +170761066620,220,0 +170761066668,220,0 +170761066717,214,0 +170761066765,215,0 +170761066815,216,0 +170761066863,216,0 +170761066911,217,0 +170761066959,218,0 +170761067007,218,0 +170761067055,218,0 +170761067103,219,0 +170761067150,221,0 +170761067198,221,0 +170761067248,220,0 +170761067296,221,0 +170761067344,221,0 +170761067392,221,0 +170761067441,221,0 +170761067491,221,0 +170761067540,220,0 +170761067588,215,0 +170761067636,215,0 +170761067684,215,0 +170761067734,215,0 +170761067781,216,0 +170761067831,216,0 +170761067879,217,0 +170761067927,217,0 +170761067976,218,0 +170761068024,218,0 +170761068074,218,0 +170761068121,219,0 +170761068169,219,0 +170761068219,220,0 +170761068268,220,0 +170761068318,220,0 +170761068366,220,0 +170761068414,221,0 +170761068461,220,0 +170761068511,214,0 +170761068559,214,0 +170761068607,214,0 +170761068655,215,0 +170761068703,215,0 +170761068751,216,0 +170761068799,216,0 +170761068847,216,0 +170761068895,216,0 +170761068943,217,0 +170761068990,218,0 +170761069038,218,0 +170761069088,219,0 +170761069136,219,0 +170761069184,219,0 +170761069231,219,0 +170761069279,220,0 +170761069327,221,0 +170761069377,216,0 +170761069425,214,0 +170761069473,214,0 +170761069521,214,0 +170761069570,214,0 +170761069618,214,0 +170761069666,215,0 +170761069714,215,0 +170761069764,215,0 +170761069813,215,0 +170761069861,216,0 +170761069911,217,0 +170761069959,217,0 +170761070007,218,0 +170761070055,219,0 +170761070104,219,0 +170761070152,219,0 +170761070202,220,0 +170761070251,220,0 +170761070301,215,0 +170761070350,215,0 +170761070398,215,0 +170761070446,215,0 +170761070495,215,0 +170761070545,215,0 +170761070593,216,0 +170761070641,217,0 +170761070689,217,0 +170761070738,218,0 +170761070786,219,0 +170761070834,220,0 +170761070882,220,0 +170761070932,219,0 +170761070981,220,0 +170761071031,220,0 +170761071079,219,0 +170761071128,220,0 +170761071178,215,0 +170761071227,214,0 +170761071275,215,0 +170761071323,215,0 +170761071371,216,0 +170761071420,216,0 +170761071468,216,0 +170761071516,216,0 +170761071563,217,0 +170761071611,217,0 +170761071661,218,0 +170761071710,219,0 +170761071758,219,0 +170761071806,219,0 +170761071854,221,0 +170761071902,220,0 +170761071949,222,0 +170761071997,220,0 +170761072047,221,0 +170761072095,215,0 +170761072142,215,0 +170761072190,215,0 +170761072238,216,0 +170761072286,217,0 +170761072335,217,0 +170761072383,218,0 +170761072431,219,0 +170761072479,219,0 +170761072527,219,0 +170761072575,221,0 +170761072622,221,0 +170761072670,222,0 +170761072718,221,0 +170761072766,221,0 +170761072814,221,0 +170761072862,223,0 +170761072910,222,0 +170761072958,216,0 +170761073006,215,0 +170761073053,215,0 +170761073101,216,0 +170761073149,216,0 +170761073197,217,0 +170761073247,218,0 +170761073294,218,0 +170761073342,219,0 +170761073390,220,0 +170761073438,218,0 +170761073486,220,0 +170761073535,220,0 +170761073583,221,0 +170761073631,222,0 +170761073681,222,0 +170761073730,223,0 +170761073780,221,0 +170761073828,220,0 +170761073877,215,0 +170761073925,215,0 +170761073973,215,0 +170761074021,216,0 +170761074069,216,0 +170761074117,216,0 +170761074165,217,0 +170761074213,218,0 +170761074261,218,0 +170761074310,219,0 +170761074360,219,0 +170761074409,219,0 +170761074459,220,0 +170761074508,220,0 +170761074558,220,0 +170761074607,221,0 +170761074655,221,0 +170761074705,221,0 +170761074753,216,0 +170761074802,214,0 +170761074850,214,0 +170761074900,215,0 +170761074948,215,0 +170761074996,216,0 +170761075044,216,0 +170761075093,216,0 +170761075141,217,0 +170761075189,217,0 +170761075238,219,0 +170761075286,219,0 +170761075334,219,0 +170761075382,219,0 +170761075430,219,0 +170761075478,220,0 +170761075526,220,0 +170761075574,220,0 +170761075623,220,0 +170761075673,215,0 +170761075721,215,0 +170761075769,215,0 +170761075817,215,0 +170761075865,216,0 +170761075914,216,0 +170761075962,216,0 +170761076010,217,0 +170761076058,217,0 +170761076106,218,0 +170761076154,218,0 +170761076203,220,0 +170761076251,219,0 +170761076299,220,0 +170761076349,220,0 +170761076397,220,0 +170761076445,221,0 +170761076493,221,0 +170761076540,220,0 +170761076588,215,0 +170761076636,214,0 +170761076684,215,0 +170761076732,216,0 +170761076780,216,0 +170761076828,216,0 +170761076878,216,0 +170761076927,217,0 +170761076975,218,0 +170761077025,219,0 +170761077073,219,0 +170761077120,220,0 +170761077168,219,0 +170761077216,220,0 +170761077266,221,0 +170761077315,220,0 +170761077363,219,0 +170761077413,221,0 +170761077462,215,0 +170761077510,214,0 +170761077558,214,0 +170761077606,215,0 +170761077656,215,0 +170761077703,216,0 +170761077751,217,0 +170761077799,217,0 +170761077847,217,0 +170761077895,218,0 +170761077943,218,0 +170761077991,219,0 +170761078039,220,0 +170761078086,220,0 +170761078134,220,0 +170761078182,220,0 +170761078230,220,0 +170761078278,220,0 +170761078326,221,0 +170761078374,215,0 +170761078422,214,0 +170761078470,215,0 +170761078518,215,0 +170761078565,215,0 +170761078613,215,0 +170761078661,215,0 +170761078711,216,0 +170761078759,217,0 +170761078807,217,0 +170761078856,218,0 +170761078906,219,0 +170761078954,219,0 +170761079002,220,0 +170761079051,220,0 +170761079099,221,0 +170761079149,221,0 +170761079197,220,0 +170761079246,215,0 +170761079294,214,0 +170761079342,214,0 +170761079390,214,0 +170761079438,214,0 +170761079487,215,0 +170761079535,215,0 +170761079583,215,0 +170761079633,216,0 +170761079681,217,0 +170761079729,217,0 +170761079777,218,0 +170761079826,219,0 +170761079874,220,0 +170761079922,220,0 +170761079970,220,0 +170761080018,220,0 +170761080067,220,0 +170761080115,221,0 +170761080165,215,0 +170761080214,214,0 +170761080264,214,0 +170761080314,214,0 +170761080362,215,0 +170761080409,216,0 +170761080457,216,0 +170761080505,216,0 +170761080555,217,0 +170761080603,221,0 +170761080651,218,0 +170761080699,218,0 +170761080747,218,0 +170761080796,219,0 +170761080844,220,0 +170761080892,219,0 +170761080940,220,0 +170761080990,220,0 +170761081037,215,0 +170761081085,214,0 +170761081135,215,0 +170761081183,215,0 +170761081231,215,0 +170761081280,216,0 +170761081328,216,0 +170761081376,216,0 +170761081424,217,0 +170761081472,218,0 +170761081520,219,0 +170761081570,219,0 +170761081618,220,0 +170761081666,220,0 +170761081714,221,0 +170761081763,221,0 +170761081811,223,0 +170761081860,221,0 +170761081910,220,0 +170761081958,216,0 +170761082006,215,0 +170761082054,216,0 +170761082102,216,0 +170761082151,217,0 +170761082201,218,0 +170761082249,217,0 +170761082297,218,0 +170761082346,218,0 +170761082394,218,0 +170761082442,219,0 +170761082491,218,0 +170761082541,219,0 +170761082589,220,0 +170761082637,221,0 +170761082686,220,0 +170761082735,221,0 +170761082784,220,0 +170761082832,219,0 +170761082880,214,0 +170761082928,214,0 +170761082977,214,0 +170761083025,215,0 +170761083073,215,0 +170761083121,216,0 +170761083169,216,0 +170761083218,217,0 +170761083266,218,0 +170761083316,218,0 +170761083364,219,0 +170761083412,219,0 +170761083460,220,0 +170761083509,219,0 +170761083557,221,0 +170761083605,219,0 +170761083653,219,0 +170761083701,220,0 +170761083749,215,0 +170761083798,213,0 +170761083846,213,0 +170761083894,213,0 +170761083942,214,0 +170761083991,214,0 +170761084039,214,0 +170761084089,214,0 +170761084137,214,0 +170761084185,215,0 +170761084233,215,0 +170761084281,215,0 +170761084329,216,0 +170761084377,217,0 +170761084425,217,0 +170761084472,217,0 +170761084522,217,0 +170761084570,219,0 +170761084618,220,0 +170761084666,214,0 +170761084715,213,0 +170761084765,213,0 +170761084814,213,0 +170761084864,213,0 +170761084912,213,0 +170761084961,213,0 +170761085009,214,0 +170761085057,214,0 +170761085105,214,0 +170761085155,214,0 +170761085202,214,0 +170761085250,215,0 +170761085298,215,0 +170761085346,216,0 +170761085394,216,0 +170761085444,217,0 +170761085492,220,0 +170761085540,215,0 +170761085588,214,0 +170761085635,214,0 +170761085685,214,0 +170761085733,215,0 +170761085781,215,0 +170761085829,215,0 +170761085877,216,0 +170761085926,216,0 +170761085974,217,0 +170761086022,218,0 +170761086072,218,0 +170761086121,219,0 +170761086169,219,0 +170761086217,219,0 +170761086265,219,0 +170761086313,219,0 +170761086361,220,0 +170761086410,220,0 +170761086458,216,0 +170761086506,216,0 +170761086554,217,0 +170761086604,217,0 +170761086652,218,0 +170761086701,218,0 +170761086749,219,0 +170761086797,219,0 +170761086845,219,0 +170761086893,220,0 +170761086943,221,0 +170761086991,221,0 +170761087040,221,0 +170761087090,220,0 +170761087138,221,0 +170761087186,222,0 +170761087235,220,0 +170761087283,220,0 +170761087331,217,0 +170761087379,217,0 +170761087427,217,0 +170761087475,218,0 +170761087523,218,0 +170761087571,219,0 +170761087619,219,0 +170761087667,219,0 +170761087715,219,0 +170761087764,220,0 +170761087812,221,0 +170761087860,220,0 +170761087908,222,0 +170761087957,221,0 +170761088005,221,0 +170761088055,221,0 +170761088103,222,0 +170761088151,221,0 +170761088199,220,0 +170761088248,217,0 +170761088296,217,0 +170761088344,217,0 +170761088392,218,0 +170761088440,218,0 +170761088488,219,0 +170761088536,219,0 +170761088585,219,0 +170761088633,220,0 +170761088681,220,0 +170761088731,220,0 +170761088779,220,0 +170761088827,220,0 +170761088876,221,0 +170761088924,221,0 +170761088972,222,0 +170761089020,221,0 +170761089068,223,0 +170761089117,217,0 +170761089167,216,0 +170761089216,216,0 +170761089264,217,0 +170761089312,218,0 +170761089360,218,0 +170761089410,220,0 +170761089459,219,0 +170761089509,219,0 +170761089557,220,0 +170761089605,220,0 +170761089653,221,0 +170761089700,221,0 +170761089748,221,0 +170761089798,220,0 +170761089846,220,0 +170761089895,221,0 +170761089943,221,0 +170761089993,221,0 +170761090042,215,0 +170761090090,215,0 +170761090138,215,0 +170761090186,216,0 +170761090234,216,0 +170761090282,217,0 +170761090329,217,0 +170761090377,218,0 +170761090425,218,0 +170761090473,219,0 +170761090521,220,0 +170761090569,220,0 +170761090617,221,0 +170761090664,221,0 +170761090712,222,0 +170761090762,220,0 +170761090810,220,0 +170761090858,220,0 +170761090907,220,0 +170761090957,214,0 +170761091006,214,0 +170761091054,215,0 +170761091102,215,0 +170761091150,216,0 +170761091198,216,0 +170761091246,217,0 +170761091294,217,0 +170761091343,218,0 +170761091391,219,0 +170761091439,218,0 +170761091489,220,0 +170761091538,221,0 +170761091588,221,0 +170761091636,221,0 +170761091683,221,0 +170761091733,220,0 +170761091783,220,0 +170761091830,215,0 +170761091878,214,0 +170761091928,215,0 +170761091976,216,0 +170761092024,216,0 +170761092073,216,0 +170761092121,217,0 +170761092171,217,0 +170761092220,217,0 +170761092270,218,0 +170761092317,218,0 +170761092365,218,0 +170761092413,219,0 +170761092463,219,0 +170761092512,219,0 +170761092560,220,0 +170761092608,220,0 +170761092656,221,0 +170761092704,216,0 +170761092752,215,0 +170761092802,216,0 +170761092850,216,0 +170761092898,217,0 +170761092945,217,0 +170761092995,219,0 +170761093043,218,0 +170761093091,219,0 +170761093139,219,0 +170761093188,220,0 +170761093236,221,0 +170761093286,220,0 +170761093334,221,0 +170761093383,221,0 +170761093433,221,0 +170761093481,222,0 +170761093529,221,0 +170761093577,220,0 +170761093626,215,0 +170761093674,214,0 +170761093722,216,0 +170761093772,215,0 +170761093820,216,0 +170761093868,217,0 +170761093916,218,0 +170761093963,218,0 +170761094011,218,0 +170761094059,219,0 +170761094107,219,0 +170761094155,222,0 +170761094203,220,0 +170761094252,220,0 +170761094300,221,0 +170761094348,221,0 +170761094396,221,0 +170761094443,221,0 +170761094491,220,0 +170761094539,214,0 +170761094587,214,0 +170761094635,215,0 +170761094683,215,0 +170761094731,217,0 +170761094779,216,0 +170761094827,216,0 +170761094874,217,0 +170761094924,217,0 +170761094972,218,0 +170761095020,218,0 +170761095069,219,0 +170761095117,219,0 +170761095165,219,0 +170761095213,220,0 +170761095261,220,0 +170761095311,220,0 +170761095358,220,0 +170761095406,215,0 +170761095454,214,0 +170761095504,214,0 +170761095552,215,0 +170761095601,215,0 +170761095651,216,0 +170761095700,216,0 +170761095748,216,0 +170761095796,217,0 +170761095844,217,0 +170761095892,217,0 +170761095942,218,0 +170761095990,220,0 +170761096038,221,0 +170761096087,222,0 +170761096137,221,0 +170761096184,221,0 +170761096234,221,0 +170761096282,220,0 +170761096330,214,0 +170761096378,215,0 +170761096426,215,0 +170761096474,216,0 +170761096522,216,0 +170761096570,217,0 +170761096617,217,0 +170761096665,218,0 +170761096713,218,0 +170761096762,219,0 +170761096810,219,0 +170761096860,220,0 +170761096908,221,0 +170761096956,221,0 +170761097003,223,0 +170761097051,221,0 +170761097099,221,0 +170761097147,220,0 +170761097195,215,0 +170761097243,214,0 +170761097291,214,0 +170761097341,214,0 +170761097389,215,0 +170761097438,215,0 +170761097486,215,0 +170761097534,215,0 +170761097582,216,0 +170761097630,216,0 +170761097677,217,0 +170761097725,218,0 +170761097773,218,0 +170761097821,219,0 +170761097869,219,0 +170761097917,220,0 +170761097964,220,0 +170761098012,220,0 +170761098062,220,0 +170761098110,214,0 +170761098157,214,0 +170761098205,214,0 +170761098253,213,0 +170761098301,214,0 +170761098349,215,0 +170761098397,215,0 +170761098445,216,0 +170761098493,216,0 +170761098541,216,0 +170761098589,216,0 +170761098636,218,0 +170761098684,218,0 +170761098734,218,0 +170761098781,218,0 +170761098829,219,0 +170761098877,219,0 +170761098925,220,0 +170761098973,215,0 +170761099021,214,0 +170761099069,214,0 +170761099118,215,0 +170761099166,215,0 +170761099214,216,0 +170761099261,216,0 +170761099311,216,0 +170761099359,217,0 +170761099407,217,0 +170761099455,219,0 +170761099504,220,0 +170761099552,221,0 +170761099600,220,0 +170761099648,220,0 +170761099697,220,0 +170761099747,220,0 +170761099795,220,0 +170761099843,217,0 +170761099891,214,0 +170761099939,214,0 +170761099987,214,0 +170761100036,215,0 +170761100084,215,0 +170761100132,216,0 +170761100180,217,0 +170761100228,217,0 +170761100276,217,0 +170761100324,218,0 +170761100372,219,0 +170761100421,219,0 +170761100469,220,0 +170761100519,220,0 +170761100568,220,0 +170761100616,221,0 +170761100664,220,0 +170761100712,220,0 +170761100762,214,0 +170761100811,214,0 +170761100861,214,0 +170761100909,214,0 +170761100957,215,0 +170761101006,215,0 +170761101054,216,0 +170761101104,216,0 +170761101151,216,0 +170761101201,217,0 +170761101249,218,0 +170761101297,219,0 +170761101345,219,0 +170761101394,219,0 +170761101442,218,0 +170761101492,218,0 +170761101541,219,0 +170761101589,220,0 +170761101637,214,0 +170761101685,213,0 +170761101733,213,0 +170761101781,213,0 +170761101830,214,0 +170761101878,213,0 +170761101926,214,0 +170761101974,214,0 +170761102023,214,0 +170761102072,214,0 +170761102120,214,0 +170761102168,215,0 +170761102216,216,0 +170761102264,216,0 +170761102312,217,0 +170761102360,217,0 +170761102408,217,0 +170761102456,219,0 +170761102504,215,0 +170761102552,214,0 +170761102599,214,0 +170761102647,214,0 +170761102695,214,0 +170761102743,215,0 +170761102793,215,0 +170761102840,216,0 +170761102888,216,0 +170761102936,217,0 +170761102984,218,0 +170761103032,219,0 +170761103080,218,0 +170761103128,219,0 +170761103175,221,0 +170761103223,220,0 +170761103271,220,0 +170761103319,220,0 +170761103368,215,0 +170761103416,215,0 +170761103464,215,0 +170761103512,216,0 +170761103560,216,0 +170761103608,216,0 +170761103656,217,0 +170761103704,217,0 +170761103752,217,0 +170761103800,218,0 +170761103849,219,0 +170761103898,219,0 +170761103946,219,0 +170761103994,219,0 +170761104042,219,0 +170761104090,220,0 +170761104138,220,0 +170761104186,220,0 +170761104234,219,0 +170761104282,215,0 +170761104330,215,0 +170761104379,216,0 +170761104429,216,0 +170761104477,217,0 +170761104525,217,0 +170761104574,218,0 +170761104622,218,0 +170761104670,219,0 +170761104718,219,0 +170761104766,220,0 +170761104815,219,0 +170761104863,220,0 +170761104913,220,0 +170761104961,220,0 +170761105010,220,0 +170761105059,220,0 +170761105109,219,0 +170761105157,215,0 +170761105207,214,0 +170761105256,215,0 +170761105304,216,0 +170761105352,216,0 +170761105401,216,0 +170761105449,217,0 +170761105497,218,0 +170761105545,217,0 +170761105593,218,0 +170761105641,219,0 +170761105689,220,0 +170761105737,220,0 +170761105785,219,0 +170761105833,220,0 +170761105881,220,0 +170761105929,220,0 +170761105976,220,0 +170761106024,215,0 +170761106072,214,0 +170761106120,215,0 +170761106168,216,0 +170761106216,216,0 +170761106266,217,0 +170761106314,217,0 +170761106362,217,0 +170761106410,218,0 +170761106458,219,0 +170761106505,219,0 +170761106553,219,0 +170761106601,219,0 +170761106651,220,0 +170761106699,220,0 +170761106747,220,0 +170761106796,220,0 +170761106844,219,0 +170761106892,218,0 +170761106940,215,0 +170761106988,215,0 +170761107036,216,0 +170761107084,216,0 +170761107132,217,0 +170761107182,218,0 +170761107231,218,0 +170761107279,219,0 +170761107329,218,0 +170761107377,219,0 +170761107425,220,0 +170761107473,219,0 +170761107520,220,0 +170761107568,220,0 +170761107616,220,0 +170761107664,220,0 +170761107712,220,0 +170761107760,219,0 +170761107808,214,0 +170761107856,214,0 +170761107904,215,0 +170761107953,215,0 +170761108003,216,0 +170761108050,217,0 +170761108098,217,0 +170761108146,217,0 +170761108194,218,0 +170761108244,218,0 +170761108292,219,0 +170761108339,219,0 +170761108387,219,0 +170761108435,220,0 +170761108483,220,0 +170761108531,219,0 +170761108579,219,0 +170761108627,219,0 +170761108677,215,0 +170761108725,215,0 +170761108773,215,0 +170761108822,216,0 +170761108870,216,0 +170761108920,217,0 +170761108968,218,0 +170761109016,218,0 +170761109065,219,0 +170761109113,218,0 +170761109163,218,0 +170761109211,220,0 +170761109259,219,0 +170761109308,220,0 +170761109356,220,0 +170761109404,220,0 +170761109452,220,0 +170761109500,219,0 +170761109548,215,0 +170761109597,214,0 +170761109645,214,0 +170761109693,214,0 +170761109741,214,0 +170761109789,214,0 +170761109837,215,0 +170761109886,215,0 +170761109934,215,0 +170761109984,216,0 +170761110033,217,0 +170761110081,216,0 +170761110131,217,0 +170761110180,219,0 +170761110230,219,0 +170761110279,218,0 +170761110329,219,0 +170761110378,220,0 +170761110426,215,0 +170761110474,214,0 +170761110522,214,0 +170761110572,214,0 +170761110620,214,0 +170761110667,214,0 +170761110717,215,0 +170761110765,215,0 +170761110813,215,0 +170761110861,215,0 +170761110909,215,0 +170761110957,216,0 +170761111006,218,0 +170761111054,217,0 +170761111102,218,0 +170761111151,218,0 +170761111199,218,0 +170761111247,220,0 +170761111295,215,0 +170761111343,214,0 +170761111391,214,0 +170761111439,214,0 +170761111488,214,0 +170761111536,215,0 +170761111586,214,0 +170761111635,215,0 +170761111685,216,0 +170761111733,217,0 +170761111781,217,0 +170761111830,217,0 +170761111878,217,0 +170761111927,218,0 +170761111977,218,0 +170761112025,218,0 +170761112073,217,0 +170761112121,218,0 +170761112169,215,0 +170761112218,214,0 +170761112266,214,0 +170761112314,214,0 +170761112362,215,0 +170761112411,215,0 +170761112459,215,0 +170761112509,216,0 +170761112557,216,0 +170761112606,217,0 +170761112654,217,0 +170761112704,217,0 +170761112752,218,0 +170761112800,218,0 +170761112848,218,0 +170761112896,218,0 +170761112944,219,0 +170761112992,219,0 +170761113040,215,0 +170761113088,214,0 +170761113136,214,0 +170761113184,215,0 +170761113232,215,0 +170761113280,216,0 +170761113328,216,0 +170761113376,216,0 +170761113423,217,0 +170761113471,217,0 +170761113519,217,0 +170761113567,218,0 +170761113615,218,0 +170761113663,219,0 +170761113711,219,0 +170761113759,220,0 +170761113807,221,0 +170761113855,220,0 +170761113902,220,0 +170761113950,215,0 +170761113998,215,0 +170761114046,215,0 +170761114094,216,0 +170761114142,216,0 +170761114190,217,0 +170761114237,218,0 +170761114285,218,0 +170761114333,219,0 +170761114381,219,0 +170761114429,219,0 +170761114479,221,0 +170761114528,220,0 +170761114576,221,0 +170761114624,221,0 +170761114674,220,0 +170761114723,220,0 +170761114771,220,0 +170761114819,215,0 +170761114867,215,0 +170761114915,216,0 +170761114963,216,0 +170761115011,217,0 +170761115059,218,0 +170761115107,217,0 +170761115155,217,0 +170761115202,218,0 +170761115250,219,0 +170761115300,219,0 +170761115348,220,0 +170761115396,219,0 +170761115444,221,0 +170761115492,221,0 +170761115540,220,0 +170761115588,220,0 +170761115636,220,0 +170761115684,215,0 +170761115733,215,0 +170761115781,215,0 +170761115831,216,0 +170761115878,216,0 +170761115926,217,0 +170761115974,217,0 +170761116022,217,0 +170761116070,217,0 +170761116118,218,0 +170761116166,219,0 +170761116214,219,0 +170761116262,220,0 +170761116310,220,0 +170761116360,220,0 +170761116409,221,0 +170761116457,219,0 +170761116507,219,0 +170761116556,215,0 +170761116604,214,0 +170761116654,215,0 +170761116703,215,0 +170761116751,216,0 +170761116799,216,0 +170761116847,217,0 +170761116895,217,0 +170761116943,218,0 +170761116991,218,0 +170761117039,219,0 +170761117087,219,0 +170761117135,220,0 +170761117183,219,0 +170761117231,219,0 +170761117278,220,0 +170761117326,220,0 +170761117374,221,0 +170761117422,215,0 +170761117472,214,0 +170761117521,215,0 +170761117571,215,0 +170761117620,215,0 +170761117668,216,0 +170761117716,216,0 +170761117764,216,0 +170761117812,216,0 +170761117860,216,0 +170761117910,217,0 +170761117958,218,0 +170761118006,218,0 +170761118054,219,0 +170761118101,219,0 +170761118151,220,0 +170761118199,220,0 +170761118248,220,0 +170761118298,215,0 +170761118346,214,0 +170761118394,214,0 +170761118442,215,0 +170761118490,215,0 +170761118537,215,0 +170761118585,216,0 +170761118633,216,0 +170761118681,217,0 +170761118729,217,0 +170761118777,218,0 +170761118825,219,0 +170761118874,218,0 +170761118924,219,0 +170761118972,219,0 +170761119020,220,0 +170761119068,219,0 +170761119116,220,0 +170761119164,219,0 +170761119213,214,0 +170761119263,215,0 +170761119311,215,0 +170761119358,216,0 +170761119406,216,0 +170761119454,216,0 +170761119502,217,0 +170761119550,217,0 +170761119598,217,0 +170761119646,219,0 +170761119694,218,0 +170761119742,219,0 +170761119789,220,0 +170761119837,219,0 +170761119885,220,0 +170761119933,220,0 +170761119981,218,0 +170761120030,219,0 +170761120078,216,0 +170761120126,216,0 +170761120174,216,0 +170761120222,217,0 +170761120270,217,0 +170761120318,217,0 +170761120366,218,0 +170761120414,219,0 +170761120461,219,0 +170761120509,219,0 +170761120557,220,0 +170761120605,220,0 +170761120653,220,0 +170761120701,221,0 +170761120750,220,0 +170761120798,220,0 +170761120846,220,0 +170761120894,220,0 +170761120941,216,0 +170761120989,215,0 +170761121037,216,0 +170761121085,216,0 +170761121133,217,0 +170761121181,217,0 +170761121228,218,0 +170761121276,218,0 +170761121324,218,0 +170761121372,219,0 +170761121420,220,0 +170761121468,220,0 +170761121516,220,0 +170761121564,220,0 +170761121611,220,0 +170761121659,220,0 +170761121707,220,0 +170761121755,220,0 +170761121803,216,0 +170761121851,215,0 +170761121899,215,0 +170761121946,216,0 +170761121994,217,0 +170761122044,217,0 +170761122093,217,0 +170761122143,218,0 +170761122191,219,0 +170761122239,219,0 +170761122286,218,0 +170761122334,220,0 +170761122382,220,0 +170761122430,220,0 +170761122480,221,0 +170761122528,221,0 +170761122576,221,0 +170761122623,220,0 +170761122671,218,0 +170761122719,215,0 +170761122767,215,0 +170761122815,217,0 +170761122863,216,0 +170761122911,217,0 +170761122959,217,0 +170761123007,218,0 +170761123055,218,0 +170761123103,219,0 +170761123151,220,0 +170761123198,220,0 +170761123246,220,0 +170761123294,220,0 +170761123344,220,0 +170761123393,221,0 +170761123441,220,0 +170761123491,220,0 +170761123539,219,0 +170761123588,214,0 +170761123636,214,0 +170761123684,214,0 +170761123734,215,0 +170761123782,215,0 +170761123830,215,0 +170761123878,217,0 +170761123926,217,0 +170761123974,217,0 +170761124021,217,0 +170761124069,218,0 +170761124117,218,0 +170761124167,218,0 +170761124214,217,0 +170761124262,217,0 +170761124310,217,0 +170761124358,218,0 +170761124406,219,0 +170761124453,215,0 +170761124503,214,0 +170761124551,214,0 +170761124599,214,0 +170761124646,214,0 +170761124694,214,0 +170761124742,215,0 +170761124790,215,0 +170761124839,216,0 +170761124887,216,0 +170761124935,217,0 +170761124983,218,0 +170761125031,218,0 +170761125078,218,0 +170761125126,218,0 +170761125174,218,0 +170761125222,219,0 +170761125270,219,0 +170761125317,215,0 +170761125365,214,0 +170761125413,214,0 +170761125461,214,0 +170761125509,214,0 +170761125557,214,0 +170761125605,214,0 +170761125654,214,0 +170761125703,215,0 +170761125751,215,0 +170761125799,216,0 +170761125847,217,0 +170761125895,217,0 +170761125943,218,0 +170761125991,218,0 +170761126039,219,0 +170761126087,219,0 +170761126134,219,0 +170761126182,217,0 +170761126230,214,0 +170761126278,214,0 +170761126326,214,0 +170761126374,215,0 +170761126422,215,0 +170761126470,216,0 +170761126517,216,0 +170761126565,217,0 +170761126613,218,0 +170761126661,218,0 +170761126709,218,0 +170761126757,219,0 +170761126805,219,0 +170761126853,219,0 +170761126901,220,0 +170761126948,220,0 +170761126996,219,0 +170761127046,219,0 +170761127095,214,0 +170761127143,214,0 +170761127191,214,0 +170761127239,215,0 +170761127288,216,0 +170761127336,216,0 +170761127384,216,0 +170761127432,217,0 +170761127480,217,0 +170761127527,218,0 +170761127575,218,0 +170761127623,218,0 +170761127671,218,0 +170761127719,218,0 +170761127767,219,0 +170761127814,219,0 +170761127862,219,0 +170761127910,219,0 +170761127958,215,0 +170761128006,214,0 +170761128054,214,0 +170761128102,214,0 +170761128149,214,0 +170761128197,215,0 +170761128245,215,0 +170761128293,216,0 +170761128341,216,0 +170761128390,217,0 +170761128438,217,0 +170761128486,218,0 +170761128534,218,0 +170761128582,219,0 +170761128630,219,0 +170761128677,218,0 +170761128725,219,0 +170761128773,219,0 +170761128821,215,0 +170761128869,214,0 +170761128917,214,0 +170761128964,215,0 +170761129012,215,0 +170761129060,215,0 +170761129108,216,0 +170761129156,216,0 +170761129204,216,0 +170761129251,217,0 +170761129299,217,0 +170761129347,219,0 +170761129395,219,0 +170761129443,219,0 +170761129491,219,0 +170761129539,220,0 +170761129587,219,0 +170761129635,220,0 +170761129682,214,0 +170761129730,214,0 +170761129780,214,0 +170761129828,215,0 +170761129877,215,0 +170761129925,216,0 +170761129973,216,0 +170761130023,216,0 +170761130071,216,0 +170761130119,218,0 +170761130166,219,0 +170761130216,218,0 +170761130264,219,0 +170761130313,218,0 +170761130361,219,0 +170761130411,220,0 +170761130459,220,0 +170761130507,220,0 +170761130555,214,0 +170761130603,214,0 +170761130651,214,0 +170761130699,215,0 +170761130747,215,0 +170761130795,216,0 +170761130843,216,0 +170761130891,217,0 +170761130939,217,0 +170761130988,218,0 +170761131038,218,0 +170761131086,218,0 +170761131133,218,0 +170761131181,218,0 +170761131229,219,0 +170761131279,220,0 +170761131327,220,0 +170761131375,219,0 +170761131423,215,0 +170761131471,215,0 +170761131519,216,0 +170761131567,216,0 +170761131616,216,0 +170761131666,217,0 +170761131715,217,0 +170761131763,217,0 +170761131812,218,0 +170761131860,218,0 +170761131908,219,0 +170761131956,219,0 +170761132004,220,0 +170761132052,220,0 +170761132102,219,0 +170761132150,220,0 +170761132198,220,0 +170761132246,216,0 +170761132295,215,0 +170761132345,215,0 +170761132392,216,0 +170761132440,217,0 +170761132488,217,0 +170761132538,218,0 +170761132585,218,0 +170761132633,219,0 +170761132681,219,0 +170761132729,219,0 +170761132777,220,0 +170761132825,220,0 +170761132873,220,0 +170761132921,220,0 +170761132969,221,0 +170761133016,220,0 +170761133064,219,0 +170761133112,215,0 +170761133160,215,0 +170761133208,215,0 +170761133256,216,0 +170761133304,216,0 +170761133352,217,0 +170761133400,218,0 +170761133447,218,0 +170761133495,218,0 +170761133543,218,0 +170761133591,219,0 +170761133639,219,0 +170761133687,219,0 +170761133735,220,0 +170761133784,221,0 +170761133832,221,0 +170761133880,220,0 +170761133928,219,0 +170761133976,215,0 +170761134024,215,0 +170761134072,215,0 +170761134119,216,0 +170761134167,216,0 +170761134217,217,0 +170761134265,217,0 +170761134313,217,0 +170761134360,218,0 +170761134408,218,0 +170761134456,218,0 +170761134504,219,0 +170761134552,219,0 +170761134600,220,0 +170761134649,220,0 +170761134697,220,0 +170761134745,220,0 +170761134793,220,0 +170761134842,215,0 +170761134890,215,0 +170761134938,215,0 +170761134986,216,0 +170761135034,216,0 +170761135082,216,0 +170761135130,216,0 +170761135180,217,0 +170761135228,218,0 +170761135276,218,0 +170761135323,218,0 +170761135371,219,0 +170761135419,220,0 +170761135467,220,0 +170761135515,220,0 +170761135563,220,0 +170761135612,220,0 +170761135660,215,0 +170761135708,215,0 +170761135756,215,0 +170761135804,216,0 +170761135852,216,0 +170761135899,217,0 +170761135947,217,0 +170761135995,217,0 +170761136043,218,0 +170761136091,219,0 +170761136139,219,0 +170761136187,220,0 +170761136235,220,0 +170761136283,220,0 +170761136331,220,0 +170761136378,220,0 +170761136426,220,0 +170761136476,220,0 +170761136524,215,0 +170761136571,215,0 +170761136619,215,0 +170761136667,216,0 +170761136715,216,0 +170761136763,216,0 +170761136810,217,0 +170761136858,217,0 +170761136906,218,0 +170761136954,218,0 +170761137002,219,0 +170761137049,219,0 +170761137097,220,0 +170761137145,220,0 +170761137193,220,0 +170761137241,221,0 +170761137290,220,0 +170761137338,220,0 +170761137386,215,0 +170761137434,215,0 +170761137484,215,0 +170761137533,216,0 +170761137581,216,0 +170761137631,217,0 +170761137678,217,0 +170761137728,217,0 +170761137776,218,0 +170761137824,219,0 +170761137872,219,0 +170761137921,219,0 +170761137971,219,0 +170761138020,220,0 +170761138068,220,0 +170761138116,219,0 +170761138164,221,0 +170761138212,220,0 +170761138260,214,0 +170761138309,214,0 +170761138359,215,0 +170761138407,215,0 +170761138455,216,0 +170761138503,216,0 +170761138551,217,0 +170761138598,216,0 +170761138648,218,0 +170761138696,218,0 +170761138743,219,0 +170761138791,219,0 +170761138839,219,0 +170761138889,220,0 +170761138936,220,0 +170761138984,219,0 +170761139034,220,0 +170761139082,216,0 +170761139129,214,0 +170761139177,214,0 +170761139225,214,0 +170761139273,215,0 +170761139321,215,0 +170761139369,216,0 +170761139418,216,0 +170761139466,217,0 +170761139514,217,0 +170761139562,217,0 +170761139610,217,0 +170761139658,218,0 +170761139706,217,0 +170761139754,218,0 +170761139803,218,0 +170761139851,218,0 +170761139899,220,0 +170761139947,220,0 +170761139996,220,0 +170761140044,220,0 +170761140092,221,0 +170761140140,220,0 +170761140188,220,0 +170761140236,221,0 +170761140284,220,0 +170761140332,219,0 +170761140381,215,0 +170761140431,214,0 +170761140479,214,0 +170761140527,215,0 +170761140574,215,0 +170761140622,216,0 +170761140670,216,0 +170761140718,216,0 +170761140766,217,0 +170761140816,218,0 +170761140865,219,0 +170761140913,219,0 +170761140961,219,0 +170761141010,219,0 +170761141058,220,0 +170761141106,220,0 +170761141155,220,0 +170761141203,219,0 +170761141251,214,0 +170761141299,214,0 +170761141347,214,0 +170761141397,215,0 +170761141444,215,0 +170761141492,215,0 +170761141540,216,0 +170761141588,216,0 +170761141636,217,0 +170761141684,217,0 +170761141732,217,0 +170761141780,218,0 +170761141828,219,0 +170761141875,218,0 +170761141923,219,0 +170761141971,220,0 +170761142019,219,0 +170761142067,218,0 +170761142115,214,0 +170761142163,214,0 +170761142210,214,0 +170761142258,214,0 +170761142306,215,0 +170761142354,215,0 +170761142402,215,0 +170761142450,216,0 +170761142498,216,0 +170761142546,217,0 +170761142593,218,0 +170761142641,218,0 +170761142691,219,0 +170761142739,219,0 +170761142788,219,0 +170761142836,219,0 +170761142886,220,0 +170761142935,215,0 +170761142983,215,0 +170761143031,215,0 +170761143079,216,0 +170761143128,216,0 +170761143176,217,0 +170761143224,217,0 +170761143272,218,0 +170761143322,218,0 +170761143370,219,0 +170761143419,219,0 +170761143469,220,0 +170761143518,220,0 +170761143566,220,0 +170761143614,220,0 +170761143662,220,0 +170761143711,220,0 +170761143759,219,0 +170761143809,215,0 +170761143857,215,0 +170761143905,216,0 +170761143953,216,0 +170761144001,217,0 +170761144050,218,0 +170761144100,219,0 +170761144148,219,0 +170761144196,219,0 +170761144244,220,0 +170761144293,220,0 +170761144341,220,0 +170761144390,220,0 +170761144438,220,0 +170761144488,221,0 +170761144537,220,0 +170761144585,220,0 +170761144633,218,0 +170761144682,215,0 +170761144730,215,0 +170761144778,215,0 +170761144828,216,0 +170761144876,216,0 +170761144925,217,0 +170761144975,217,0 +170761145024,217,0 +170761145072,218,0 +170761145120,219,0 +170761145170,219,0 +170761145218,218,0 +170761145265,220,0 +170761145315,220,0 +170761145363,220,0 +170761145411,219,0 +170761145460,219,0 +170761145508,215,0 +170761145557,214,0 +170761145607,215,0 +170761145655,215,0 +170761145703,216,0 +170761145751,216,0 +170761145799,216,0 +170761145847,216,0 +170761145896,217,0 +170761145944,217,0 +170761145992,218,0 +170761146041,218,0 +170761146089,219,0 +170761146137,219,0 +170761146185,220,0 +170761146233,219,0 +170761146280,219,0 +170761146328,219,0 +170761146376,214,0 +170761146424,214,0 +170761146472,214,0 +170761146520,215,0 +170761146568,215,0 +170761146617,219,0 +170761146665,216,0 +170761146713,217,0 +170761146761,217,0 +170761146809,218,0 +170761146857,217,0 +170761146905,218,0 +170761146953,219,0 +170761147002,219,0 +170761147051,219,0 +170761147099,219,0 +170761147147,220,0 +170761147195,218,0 +170761147243,214,0 +170761147290,214,0 +170761147338,215,0 +170761147386,215,0 +170761147434,215,0 +170761147482,216,0 +170761147531,216,0 +170761147581,217,0 +170761147630,217,0 +170761147678,217,0 +170761147726,217,0 +170761147776,218,0 +170761147825,218,0 +170761147873,218,0 +170761147921,220,0 +170761147969,219,0 +170761148017,219,0 +170761148066,215,0 +170761148114,215,0 +170761148162,215,0 +170761148210,215,0 +170761148258,216,0 +170761148306,216,0 +170761148354,217,0 +170761148403,217,0 +170761148451,217,0 +170761148499,218,0 +170761148547,218,0 +170761148596,219,0 +170761148644,220,0 +170761148692,219,0 +170761148740,219,0 +170761148788,220,0 +170761148835,219,0 +170761148883,220,0 +170761148931,216,0 +170761148979,216,0 +170761149027,216,0 +170761149074,217,0 +170761149122,217,0 +170761149170,218,0 +170761149218,218,0 +170761149266,219,0 +170761149313,219,0 +170761149361,220,0 +170761149409,221,0 +170761149457,220,0 +170761149505,221,0 +170761149552,221,0 +170761149602,221,0 +170761149650,220,0 +170761149697,220,0 +170761149745,220,0 +170761149793,216,0 +170761149841,217,0 +170761149889,217,0 +170761149936,217,0 +170761149984,218,0 +170761150032,218,0 +170761150080,218,0 +170761150128,219,0 +170761150175,219,0 +170761150223,219,0 +170761150271,220,0 +170761150319,220,0 +170761150367,220,0 +170761150415,221,0 +170761150463,221,0 +170761150511,221,0 +170761150559,220,0 +170761150607,219,0 +170761150654,215,0 +170761150704,215,0 +170761150752,215,0 +170761150801,216,0 +170761150849,217,0 +170761150897,217,0 +170761150947,217,0 +170761150995,218,0 +170761151043,219,0 +170761151092,218,0 +170761151140,220,0 +170761151188,220,0 +170761151236,220,0 +170761151284,220,0 +170761151332,221,0 +170761151380,221,0 +170761151427,220,0 +170761151475,216,0 +170761151523,215,0 +170761151571,216,0 +170761151619,216,0 +170761151667,216,0 +170761151715,216,0 +170761151763,217,0 +170761151811,218,0 +170761151859,218,0 +170761151908,219,0 +170761151958,220,0 +170761152006,219,0 +170761152053,220,0 +170761152101,221,0 +170761152149,220,0 +170761152199,218,0 +170761152248,220,0 +170761152296,219,0 +170761152344,215,0 +170761152392,215,0 +170761152440,215,0 +170761152488,216,0 +170761152536,216,0 +170761152583,217,0 +170761152633,218,0 +170761152681,218,0 +170761152729,218,0 +170761152778,219,0 +170761152828,219,0 +170761152875,219,0 +170761152925,220,0 +170761152973,219,0 +170761153022,220,0 +170761153072,220,0 +170761153121,220,0 +170761153169,219,0 +170761153217,215,0 +170761153265,215,0 +170761153313,215,0 +170761153361,216,0 +170761153409,216,0 +170761153459,217,0 +170761153506,217,0 +170761153554,219,0 +170761153604,218,0 +170761153652,219,0 +170761153700,220,0 +170761153748,220,0 +170761153796,220,0 +170761153844,221,0 +170761153891,220,0 +170761153939,220,0 +170761153987,220,0 +170761154035,215,0 +170761154083,214,0 +170761154132,215,0 +170761154180,215,0 +170761154228,216,0 +170761154278,216,0 +170761154326,217,0 +170761154373,217,0 +170761154421,217,0 +170761154469,218,0 +170761154519,219,0 +170761154567,219,0 +170761154615,219,0 +170761154664,220,0 +170761154714,221,0 +170761154761,220,0 +170761154809,220,0 +170761154857,219,0 +170761154905,214,0 +170761154953,214,0 +170761155001,214,0 +170761155049,214,0 +170761155097,215,0 +170761155145,215,0 +170761155193,215,0 +170761155241,216,0 +170761155289,216,0 +170761155336,217,0 +170761155384,217,0 +170761155434,217,0 +170761155482,218,0 +170761155531,219,0 +170761155579,219,0 +170761155627,220,0 +170761155675,219,0 +170761155723,219,0 +170761155771,214,0 +170761155819,214,0 +170761155868,215,0 +170761155916,215,0 +170761155966,215,0 +170761156015,216,0 +170761156063,216,0 +170761156111,217,0 +170761156160,217,0 +170761156209,217,0 +170761156257,218,0 +170761156305,218,0 +170761156353,219,0 +170761156401,219,0 +170761156449,221,0 +170761156497,219,0 +170761156546,219,0 +170761156596,215,0 +170761156644,214,0 +170761156692,215,0 +170761156741,215,0 +170761156791,216,0 +170761156839,216,0 +170761156888,216,0 +170761156936,217,0 +170761156985,217,0 +170761157035,218,0 +170761157084,218,0 +170761157134,219,0 +170761157182,219,0 +170761157230,220,0 +170761157279,220,0 +170761157329,220,0 +170761157377,220,0 +170761157425,219,0 +170761157474,214,0 +170761157522,214,0 +170761157570,214,0 +170761157618,215,0 +170761157666,215,0 +170761157714,216,0 +170761157761,215,0 +170761157809,216,0 +170761157857,216,0 +170761157907,217,0 +170761157955,218,0 +170761158003,218,0 +170761158050,219,0 +170761158098,218,0 +170761158146,220,0 +170761158194,220,0 +170761158242,220,0 +170761158292,215,0 +170761158341,214,0 +170761158391,214,0 +170761158439,214,0 +170761158487,214,0 +170761158536,215,0 +170761158585,215,0 +170761158633,216,0 +170761158681,216,0 +170761158729,217,0 +170761158777,216,0 +170761158827,217,0 +170761158876,217,0 +170761158924,218,0 +170761158972,218,0 +170761159020,218,0 +170761159068,219,0 +170761159116,219,0 +170761159165,214,0 +170761159213,214,0 +170761159261,214,0 +170761159309,214,0 +170761159357,215,0 +170761159406,215,0 +170761159454,215,0 +170761159502,216,0 +170761159550,216,0 +170761159600,217,0 +170761159648,218,0 +170761159696,218,0 +170761159744,219,0 +170761159792,219,0 +170761159840,219,0 +170761159888,219,0 +170761159936,219,0 +170761159985,216,0 +170761160035,215,0 +170761160083,216,0 +170761160131,216,0 +170761160178,217,0 +170761160226,217,0 +170761160274,217,0 +170761160322,219,0 +170761160370,219,0 +170761160418,219,0 +170761160468,219,0 +170761160515,220,0 +170761160563,220,0 +170761160611,220,0 +170761160659,220,0 +170761160709,220,0 +170761160757,220,0 +170761160805,218,0 +170761160854,217,0 +170761160902,219,0 +170761160950,218,0 +170761160998,218,0 +170761161046,218,0 +170761161095,219,0 +170761161145,220,0 +170761161193,220,0 +170761161242,220,0 +170761161290,222,0 +170761161338,220,0 +170761161387,220,0 +170761161437,221,0 +170761161486,220,0 +170761161536,220,0 +170761161584,219,0 +170761161633,219,0 +170761161681,216,0 +170761161731,216,0 +170761161779,216,0 +170761161827,217,0 +170761161875,218,0 +170761161922,218,0 +170761161970,218,0 +170761162020,219,0 +170761162068,220,0 +170761162116,220,0 +170761162165,220,0 +170761162213,220,0 +170761162261,221,0 +170761162310,220,0 +170761162358,220,0 +170761162406,220,0 +170761162456,219,0 +170761162504,216,0 +170761162553,216,0 +170761162601,216,0 +170761162649,216,0 +170761162697,217,0 +170761162747,217,0 +170761162794,217,0 +170761162842,218,0 +170761162890,218,0 +170761162938,218,0 +170761162986,219,0 +170761163036,219,0 +170761163083,219,0 +170761163131,220,0 +170761163179,221,0 +170761163227,220,0 +170761163275,220,0 +170761163323,217,0 +170761163370,216,0 +170761163420,216,0 +170761163468,217,0 +170761163517,217,0 +170761163565,218,0 +170761163613,218,0 +170761163662,219,0 +170761163710,219,0 +170761163758,219,0 +170761163807,219,0 +170761163855,221,0 +170761163903,221,0 +170761163950,221,0 +170761163998,221,0 +170761164046,221,0 +170761164094,220,0 +170761164142,219,0 +170761164190,217,0 +170761164239,217,0 +170761164287,217,0 +170761164336,218,0 +170761164384,218,0 +170761164434,218,0 +170761164482,218,0 +170761164530,219,0 +170761164577,220,0 +170761164625,219,0 +170761164673,220,0 +170761164721,221,0 +170761164769,221,0 +170761164817,221,0 +170761164866,221,0 +170761164914,220,0 +170761164963,219,0 +170761165013,218,0 +170761165061,217,0 +170761165109,217,0 +170761165158,217,0 +170761165206,219,0 +170761165255,219,0 +170761165305,219,0 +170761165354,220,0 +170761165402,220,0 +170761165450,221,0 +170761165498,221,0 +170761165546,222,0 +170761165594,221,0 +170761165642,221,0 +170761165691,221,0 +170761165739,221,0 +170761165787,220,0 +170761165835,216,0 +170761165883,217,0 +170761165931,217,0 +170761165979,218,0 +170761166028,218,0 +170761166076,219,0 +170761166124,219,0 +170761166174,219,0 +170761166222,220,0 +170761166270,220,0 +170761166318,220,0 +170761166366,221,0 +170761166413,221,0 +170761166463,221,0 +170761166511,221,0 +170761166559,221,0 +170761166608,220,0 +170761166658,219,0 +170761166706,215,0 +170761166755,216,0 +170761166805,217,0 +170761166853,217,0 +170761166901,217,0 +170761166948,218,0 +170761166996,218,0 +170761167046,219,0 +170761167095,219,0 +170761167143,220,0 +170761167191,219,0 +170761167239,220,0 +170761167287,220,0 +170761167335,220,0 +170761167383,220,0 +170761167431,221,0 +170761167480,219,0 +170761167528,215,0 +170761167576,214,0 +170761167626,215,0 +170761167675,216,0 +170761167723,216,0 +170761167771,217,0 +170761167821,216,0 +170761167868,217,0 +170761167916,217,0 +170761167964,218,0 +170761168012,219,0 +170761168060,220,0 +170761168108,219,0 +170761168156,219,0 +170761168203,220,0 +170761168251,219,0 +170761168299,219,0 +170761168347,220,0 +170761168395,215,0 +170761168442,214,0 +170761168492,215,0 +170761168540,215,0 +170761168588,215,0 +170761168637,216,0 +170761168685,216,0 +170761168733,217,0 +170761168783,218,0 +170761168830,219,0 +170761168878,218,0 +170761168928,220,0 +170761168976,219,0 +170761169023,220,0 +170761169071,219,0 +170761169119,220,0 +170761169167,220,0 +170761169215,219,0 +170761169263,215,0 +170761169311,214,0 +170761169358,214,0 +170761169406,215,0 +170761169454,215,0 +170761169502,216,0 +170761169550,216,0 +170761169598,216,0 +170761169646,217,0 +170761169693,217,0 +170761169741,218,0 +170761169789,219,0 +170761169837,219,0 +170761169885,219,0 +170761169933,219,0 +170761169981,219,0 +170761170029,219,0 +170761170076,219,0 +170761170124,214,0 +170761170172,214,0 +170761170222,214,0 +170761170271,215,0 +170761170321,216,0 +170761170369,216,0 +170761170417,216,0 +170761170465,217,0 +170761170513,217,0 +170761170562,218,0 +170761170612,219,0 +170761170659,218,0 +170761170707,219,0 +170761170757,219,0 +170761170805,220,0 +170761170853,220,0 +170761170901,219,0 +170761170950,219,0 +170761170998,214,0 +170761171046,214,0 +170761171094,215,0 +170761171142,215,0 +170761171190,216,0 +170761171239,216,0 +170761171287,217,0 +170761171335,217,0 +170761171383,217,0 +170761171431,218,0 +170761171479,219,0 +170761171527,219,0 +170761171575,219,0 +170761171624,219,0 +170761171672,219,0 +170761171722,220,0 +170761171770,220,0 +170761171818,219,0 +170761171867,214,0 +170761171915,214,0 +170761171963,214,0 +170761172011,214,0 +170761172061,215,0 +170761172110,215,0 +170761172158,216,0 +170761172206,216,0 +170761172254,217,0 +170761172302,217,0 +170761172351,218,0 +170761172399,219,0 +170761172449,219,0 +170761172498,219,0 +170761172546,220,0 +170761172594,220,0 +170761172643,220,0 +170761172693,217,0 +170761172741,214,0 +170761172789,214,0 +170761172838,214,0 +170761172886,214,0 +170761172936,214,0 +170761172985,215,0 +170761173033,215,0 +170761173081,216,0 +170761173131,216,0 +170761173179,219,0 +170761173228,217,0 +170761173278,218,0 +170761173326,218,0 +170761173374,219,0 +170761173421,219,0 +170761173469,221,0 +170761173517,220,0 +170761173565,215,0 +170761173615,214,0 +170761173663,214,0 +170761173710,214,0 +170761173760,215,0 +170761173808,215,0 +170761173856,215,0 +170761173905,216,0 +170761173953,216,0 +170761174001,216,0 +170761174051,217,0 +170761174099,217,0 +170761174147,218,0 +170761174196,218,0 +170761174244,219,0 +170761174292,219,0 +170761174340,219,0 +170761174388,220,0 +170761174436,215,0 +170761174485,214,0 +170761174535,214,0 +170761174583,215,0 +170761174631,215,0 +170761174679,216,0 +170761174727,215,0 +170761174775,216,0 +170761174822,217,0 +170761174872,217,0 +170761174920,218,0 +170761174967,218,0 +170761175017,219,0 +170761175065,219,0 +170761175113,219,0 +170761175162,220,0 +170761175210,220,0 +170761175258,219,0 +170761175306,216,0 +170761175354,215,0 +170761175402,216,0 +170761175450,216,0 +170761175498,217,0 +170761175546,217,0 +170761175594,218,0 +170761175642,218,0 +170761175691,218,0 +170761175739,219,0 +170761175787,219,0 +170761175835,220,0 +170761175885,219,0 +170761175932,220,0 +170761175980,219,0 +170761176028,220,0 +170761176078,219,0 +170761176127,220,0 +170761176175,218,0 +170761176223,217,0 +170761176271,218,0 +170761176320,218,0 +170761176368,218,0 +170761176418,219,0 +170761176466,220,0 +170761176514,220,0 +170761176562,220,0 +170761176610,221,0 +170761176659,220,0 +170761176709,221,0 +170761176757,220,0 +170761176804,221,0 +170761176852,221,0 +170761176900,220,0 +170761176948,220,0 +170761176996,220,0 +170761177044,217,0 +170761177093,217,0 +170761177141,217,0 +170761177191,218,0 +170761177238,218,0 +170761177286,218,0 +170761177336,219,0 +170761177385,218,0 +170761177434,219,0 +170761177482,220,0 +170761177530,219,0 +170761177579,220,0 +170761177627,220,0 +170761177675,220,0 +170761177723,220,0 +170761177771,219,0 +170761177819,220,0 +170761177867,220,0 +170761177915,217,0 +170761177963,216,0 +170761178012,217,0 +170761178060,217,0 +170761178108,218,0 +170761178156,218,0 +170761178204,219,0 +170761178252,218,0 +170761178300,219,0 +170761178347,220,0 +170761178395,220,0 +170761178443,220,0 +170761178493,220,0 +170761178541,220,0 +170761178589,220,0 +170761178638,220,0 +170761178686,219,0 +170761178736,219,0 +170761178784,217,0 +170761178833,216,0 +170761178881,216,0 +170761178929,217,0 +170761178977,218,0 +170761179026,217,0 +170761179074,218,0 +170761179124,219,0 +170761179173,219,0 +170761179223,219,0 +170761179272,220,0 +170761179320,220,0 +170761179368,220,0 +170761179418,220,0 +170761179466,220,0 +170761179514,220,0 +170761179562,220,0 +170761179610,220,0 +170761179658,216,0 +170761179706,216,0 +170761179754,216,0 +170761179802,216,0 +170761179849,217,0 +170761179897,217,0 +170761179945,218,0 +170761179993,218,0 +170761180041,218,0 +170761180089,218,0 +170761180137,219,0 +170761180186,218,0 +170761180234,219,0 +170761180282,219,0 +170761180330,220,0 +170761180378,219,0 +170761180426,220,0 +170761180474,219,0 +170761180522,216,0 +170761180571,215,0 +170761180619,216,0 +170761180669,217,0 +170761180717,217,0 +170761180765,217,0 +170761180814,217,0 +170761180862,218,0 +170761180910,219,0 +170761180958,219,0 +170761181006,219,0 +170761181055,220,0 +170761181105,220,0 +170761181153,220,0 +170761181201,220,0 +170761181249,221,0 +170761181298,220,0 +170761181346,219,0 +170761181394,217,0 +170761181442,217,0 +170761181492,218,0 +170761181541,217,0 +170761181589,218,0 +170761181638,219,0 +170761181688,219,0 +170761181737,219,0 +170761181787,219,0 +170761181835,221,0 +170761181883,221,0 +170761181932,221,0 +170761181980,221,0 +170761182028,221,0 +170761182076,220,0 +170761182126,221,0 +170761182174,220,0 +170761182222,220,0 +170761182271,217,0 +170761182321,218,0 +170761182369,219,0 +170761182417,219,0 +170761182464,219,0 +170761182514,219,0 +170761182562,220,0 +170761182611,221,0 +170761182659,221,0 +170761182709,220,0 +170761182757,220,0 +170761182805,220,0 +170761182853,221,0 +170761182901,221,0 +170761182949,221,0 +170761182997,220,0 +170761183044,219,0 +170761183094,216,0 +170761183142,215,0 +170761183190,215,0 +170761183238,216,0 +170761183287,217,0 +170761183335,217,0 +170761183385,217,0 +170761183434,218,0 +170761183482,218,0 +170761183530,219,0 +170761183578,218,0 +170761183626,220,0 +170761183676,221,0 +170761183724,220,0 +170761183772,220,0 +170761183820,221,0 +170761183868,220,0 +170761183916,219,0 +170761183964,215,0 +170761184012,215,0 +170761184061,215,0 +170761184109,215,0 +170761184157,216,0 +170761184206,216,0 +170761184256,216,0 +170761184304,217,0 +170761184352,216,0 +170761184401,218,0 +170761184449,218,0 +170761184499,219,0 +170761184547,220,0 +170761184595,220,0 +170761184643,219,0 +170761184690,220,0 +170761184738,221,0 +170761184786,220,0 +170761184836,216,0 +170761184883,214,0 +170761184933,215,0 +170761184981,215,0 +170761185030,216,0 +170761185078,216,0 +170761185126,217,0 +170761185176,217,0 +170761185225,218,0 +170761185275,218,0 +170761185323,219,0 +170761185371,219,0 +170761185419,219,0 +170761185466,220,0 +170761185516,220,0 +170761185564,220,0 +170761185612,220,0 +170761185660,220,0 +170761185708,215,0 +170761185757,214,0 +170761185805,215,0 +170761185855,215,0 +170761185903,216,0 +170761185952,216,0 +170761186000,217,0 +170761186048,217,0 +170761186096,217,0 +170761186144,218,0 +170761186194,218,0 +170761186242,218,0 +170761186289,219,0 +170761186339,219,0 +170761186388,220,0 +170761186436,220,0 +170761186486,220,0 +170761186534,219,0 +170761186583,215,0 +170761186631,215,0 +170761186681,215,0 +170761186729,216,0 +170761186777,216,0 +170761186825,217,0 +170761186873,217,0 +170761186921,217,0 +170761186970,218,0 +170761187018,218,0 +170761187066,219,0 +170761187114,219,0 +170761187162,219,0 +170761187210,220,0 +170761187258,219,0 +170761187307,220,0 +170761187355,219,0 +170761187403,219,0 +170761187451,215,0 +170761187499,214,0 +170761187548,215,0 +170761187596,215,0 +170761187644,216,0 +170761187692,216,0 +170761187740,216,0 +170761187788,216,0 +170761187836,217,0 +170761187884,218,0 +170761187933,218,0 +170761187983,218,0 +170761188031,219,0 +170761188079,219,0 +170761188126,220,0 +170761188176,220,0 +170761188225,219,0 +170761188273,219,0 +170761188321,215,0 +170761188369,215,0 +170761188417,215,0 +170761188465,216,0 +170761188512,217,0 +170761188560,217,0 +170761188608,217,0 +170761188656,218,0 +170761188704,219,0 +170761188752,219,0 +170761188799,219,0 +170761188847,220,0 +170761188895,220,0 +170761188944,220,0 +170761188992,220,0 +170761189042,221,0 +170761189090,221,0 +170761189137,220,0 +170761189185,215,0 +170761189233,215,0 +170761189281,216,0 +170761189329,216,0 +170761189377,216,0 +170761189424,217,0 +170761189472,217,0 +170761189520,218,0 +170761189568,218,0 +170761189616,218,0 +170761189664,218,0 +170761189712,219,0 +170761189759,219,0 +170761189809,219,0 +170761189858,220,0 +170761189906,221,0 +170761189956,220,0 +170761190004,219,0 +170761190052,215,0 +170761190100,216,0 +170761190147,216,0 +170761190195,216,0 +170761190243,217,0 +170761190291,217,0 +170761190339,217,0 +170761190387,218,0 +170761190435,218,0 +170761190483,219,0 +170761190531,219,0 +170761190579,220,0 +170761190627,220,0 +170761190676,220,0 +170761190724,220,0 +170761190772,220,0 +170761190821,219,0 +170761190869,219,0 +170761190917,217,0 +170761190965,217,0 +170761191013,217,0 +170761191061,218,0 +170761191109,218,0 +170761191157,219,0 +170761191205,219,0 +170761191253,219,0 +170761191301,220,0 +170761191350,220,0 +170761191398,220,0 +170761191446,220,0 +170761191494,220,0 +170761191542,220,0 +170761191590,220,0 +170761191638,220,0 +170761191686,220,0 +170761191734,219,0 +170761191782,219,0 +170761191830,219,0 +170761191878,219,0 +170761191925,219,0 +170761191973,219,0 +170761192021,220,0 +170761192069,220,0 +170761192117,220,0 +170761192165,220,0 +170761192213,221,0 +170761192260,221,0 +170761192308,220,0 +170761192356,221,0 +170761192404,221,0 +170761192452,220,0 +170761192500,220,0 +170761192548,220,0 +170761192595,219,0 +170761192643,216,0 +170761192691,216,0 +170761192739,217,0 +170761192788,217,0 +170761192838,218,0 +170761192886,219,0 +170761192935,219,0 +170761192983,219,0 +170761193031,219,0 +170761193080,220,0 +170761193130,219,0 +170761193178,220,0 +170761193226,220,0 +170761193273,220,0 +170761193321,219,0 +170761193369,220,0 +170761193417,220,0 +170761193465,219,0 +170761193512,214,0 +170761193560,214,0 +170761193610,214,0 +170761193658,214,0 +170761193705,214,0 +170761193753,216,0 +170761193801,216,0 +170761193850,216,0 +170761193898,217,0 +170761193946,217,0 +170761193994,218,0 +170761194042,218,0 +170761194090,218,0 +170761194138,218,0 +170761194185,218,0 +170761194235,219,0 +170761194283,219,0 +170761194331,219,0 +170761194379,214,0 +170761194427,214,0 +170761194476,215,0 +170761194524,215,0 +170761194572,215,0 +170761194620,216,0 +170761194668,216,0 +170761194716,216,0 +170761194764,217,0 +170761194812,217,0 +170761194860,219,0 +170761194908,217,0 +170761194957,219,0 +170761195007,218,0 +170761195055,218,0 +170761195102,218,0 +170761195150,219,0 +170761195198,219,0 +170761195246,214,0 +170761195296,214,0 +170761195344,215,0 +170761195392,215,0 +170761195439,216,0 +170761195489,216,0 +170761195537,216,0 +170761195585,217,0 +170761195633,217,0 +170761195681,218,0 +170761195728,218,0 +170761195776,219,0 +170761195826,219,0 +170761195874,219,0 +170761195922,220,0 +170761195970,219,0 +170761196018,220,0 +170761196066,216,0 +170761196114,215,0 +170761196162,215,0 +170761196211,216,0 +170761196259,216,0 +170761196307,216,0 +170761196355,217,0 +170761196403,217,0 +170761196451,218,0 +170761196500,219,0 +170761196550,219,0 +170761196598,219,0 +170761196646,219,0 +170761196694,219,0 +170761196741,220,0 +170761196791,219,0 +170761196839,219,0 +170761196887,220,0 +170761196935,216,0 +170761196983,215,0 +170761197031,216,0 +170761197079,216,0 +170761197126,216,0 +170761197174,217,0 +170761197222,218,0 +170761197270,218,0 +170761197318,219,0 +170761197368,218,0 +170761197415,219,0 +170761197463,220,0 +170761197511,219,0 +170761197559,220,0 +170761197609,219,0 +170761197657,221,0 +170761197705,220,0 +170761197753,220,0 +170761197801,217,0 +170761197849,216,0 +170761197897,216,0 +170761197944,216,0 +170761197992,217,0 +170761198040,218,0 +170761198090,218,0 +170761198138,218,0 +170761198186,219,0 +170761198235,220,0 +170761198285,220,0 +170761198334,220,0 +170761198382,220,0 +170761198430,220,0 +170761198478,219,0 +170761198526,220,0 +170761198575,219,0 +170761198623,219,0 +170761198673,215,0 +170761198721,215,0 +170761198768,215,0 +170761198818,216,0 +170761198866,219,0 +170761198915,217,0 +170761198963,217,0 +170761199013,217,0 +170761199061,218,0 +170761199110,218,0 +170761199158,220,0 +170761199206,219,0 +170761199254,220,0 +170761199304,220,0 +170761199353,220,0 +170761199401,220,0 +170761199449,220,0 +170761199498,220,0 +170761199546,216,0 +170761199594,216,0 +170761199642,216,0 +170761199692,217,0 +170761199741,217,0 +170761199789,218,0 +170761199837,218,0 +170761199887,218,0 +170761199935,219,0 +170761199983,219,0 +170761200031,220,0 +170761200079,220,0 +170761200128,220,0 +170761200176,219,0 +170761200224,221,0 +170761200272,220,0 +170761200320,220,0 +170761200368,219,0 +170761200416,216,0 +170761200464,215,0 +170761200511,216,0 +170761200559,216,0 +170761200607,217,0 +170761200655,217,0 +170761200703,218,0 +170761200751,218,0 +170761200801,218,0 +170761200848,219,0 +170761200896,219,0 +170761200944,219,0 +170761200994,220,0 +170761201042,220,0 +170761201090,220,0 +170761201138,220,0 +170761201187,219,0 +170761201235,219,0 +170761201283,216,0 +170761201331,216,0 +170761201379,216,0 +170761201428,216,0 +170761201476,217,0 +170761201524,217,0 +170761201574,218,0 +170761201622,218,0 +170761201670,218,0 +170761201719,218,0 +170761201767,219,0 +170761201817,220,0 +170761201864,220,0 +170761201912,221,0 +170761201960,220,0 +170761202008,220,0 +170761202056,220,0 +170761202104,219,0 +170761202152,217,0 +170761202201,217,0 +170761202251,217,0 +170761202300,217,0 +170761202348,218,0 +170761202398,218,0 +170761202446,220,0 +170761202494,219,0 +170761202541,220,0 +170761202589,220,0 +170761202637,219,0 +170761202685,220,0 +170761202735,220,0 +170761202784,219,0 +170761202832,221,0 +170761202880,220,0 +170761202930,219,0 +170761202978,219,0 +170761203026,217,0 +170761203073,217,0 +170761203121,218,0 +170761203169,217,0 +170761203217,219,0 +170761203265,219,0 +170761203315,219,0 +170761203363,219,0 +170761203412,216,0 +170761203460,217,0 +170761203508,220,0 +170761203557,221,0 +170761203605,220,0 +170761203653,220,0 +170761203701,220,0 +170761203749,220,0 +170761203797,220,0 +170761203845,219,0 +170761203894,217,0 +170761203942,217,0 +170761203992,217,0 +170761204040,217,0 +170761204089,217,0 +170761204139,219,0 +170761204186,218,0 +170761204234,219,0 +170761204282,219,0 +170761204330,220,0 +170761204378,220,0 +170761204426,219,0 +170761204474,220,0 +170761204524,220,0 +170761204572,220,0 +170761204620,220,0 +170761204667,220,0 +170761204717,216,0 +170761204765,216,0 +170761204813,216,0 +170761204862,217,0 +170761204912,217,0 +170761204960,218,0 +170761205008,218,0 +170761205056,219,0 +170761205104,218,0 +170761205153,219,0 +170761205201,219,0 +170761205249,222,0 +170761205297,219,0 +170761205345,220,0 +170761205393,220,0 +170761205442,220,0 +170761205492,221,0 +170761205540,219,0 +170761205588,216,0 +170761205636,216,0 +170761205683,215,0 +170761205731,216,0 +170761205779,216,0 +170761205829,217,0 +170761205877,217,0 +170761205926,218,0 +170761205976,219,0 +170761206024,219,0 +170761206072,219,0 +170761206121,219,0 +170761206169,220,0 +170761206217,220,0 +170761206265,219,0 +170761206314,219,0 +170761206362,219,0 +170761206410,219,0 +170761206458,216,0 +170761206506,215,0 +170761206556,216,0 +170761206604,216,0 +170761206651,217,0 +170761206699,217,0 +170761206747,218,0 +170761206795,219,0 +170761206845,218,0 +170761206892,219,0 +170761206940,220,0 +170761206988,219,0 +170761207038,219,0 +170761207086,220,0 +170761207134,219,0 +170761207183,220,0 +170761207231,220,0 +170761207281,219,0 +170761207330,215,0 +170761207378,215,0 +170761207426,215,0 +170761207474,216,0 +170761207522,216,0 +170761207570,217,0 +170761207619,217,0 +170761207667,218,0 +170761207715,219,0 +170761207764,218,0 +170761207814,219,0 +170761207862,220,0 +170761207910,219,0 +170761207958,218,0 +170761208006,220,0 +170761208054,220,0 +170761208102,219,0 +170761208149,219,0 +170761208199,214,0 +170761208247,214,0 +170761208296,215,0 +170761208344,215,0 +170761208392,216,0 +170761208440,216,0 +170761208488,216,0 +170761208537,217,0 +170761208585,217,0 +170761208633,218,0 +170761208680,218,0 +170761208728,218,0 +170761208776,219,0 +170761208824,219,0 +170761208873,218,0 +170761208923,219,0 +170761208971,219,0 +170761209018,219,0 +170761209066,215,0 +170761209114,214,0 +170761209162,215,0 +170761209209,215,0 +170761209257,215,0 +170761209305,215,0 +170761209353,215,0 +170761209401,216,0 +170761209449,216,0 +170761209496,216,0 +170761209544,217,0 +170761209592,218,0 +170761209640,218,0 +170761209688,218,0 +170761209738,218,0 +170761209787,218,0 +170761209835,219,0 +170761209883,219,0 +170761209931,215,0 +170761209979,215,0 +170761210028,216,0 +170761210078,216,0 +170761210126,216,0 +170761210174,217,0 +170761210222,217,0 +170761210269,217,0 +170761210317,217,0 +170761210365,218,0 +170761210413,218,0 +170761210463,219,0 +170761210512,219,0 +170761210560,220,0 +170761210608,220,0 +170761210656,220,0 +170761210704,220,0 +170761210751,219,0 +170761210801,215,0 +170761210849,215,0 +170761210896,216,0 +170761210944,216,0 +170761210992,216,0 +170761211040,217,0 +170761211088,217,0 +170761211135,219,0 +170761211183,218,0 +170761211231,218,0 +170761211281,219,0 +170761211330,219,0 +170761211378,220,0 +170761211428,220,0 +170761211477,220,0 +170761211525,220,0 +170761211573,219,0 +170761211621,217,0 +170761211669,215,0 +170761211717,215,0 +170761211764,216,0 +170761211812,216,0 +170761211860,217,0 +170761211908,217,0 +170761211956,218,0 +170761212004,218,0 +170761212051,219,0 +170761212101,219,0 +170761212149,220,0 +170761212196,221,0 +170761212244,220,0 +170761212292,220,0 +170761212340,221,0 +170761212389,221,0 +170761212437,220,0 +170761212485,219,0 +170761212533,215,0 +170761212581,215,0 +170761212628,216,0 +170761212676,216,0 +170761212724,217,0 +170761212772,217,0 +170761212821,218,0 +170761212869,218,0 +170761212917,219,0 +170761212965,219,0 +170761213013,220,0 +170761213062,220,0 +170761213110,220,0 +170761213158,220,0 +170761213206,220,0 +170761213254,220,0 +170761213302,220,0 +170761213350,219,0 +170761213397,215,0 +170761213445,215,0 +170761213493,216,0 +170761213541,217,0 +170761213588,217,0 +170761213636,217,0 +170761213684,218,0 +170761213732,219,0 +170761213780,218,0 +170761213828,219,0 +170761213876,220,0 +170761213923,219,0 +170761213971,219,0 +170761214019,220,0 +170761214067,220,0 +170761214115,219,0 +170761214163,221,0 +170761214210,219,0 +170761214258,216,0 +170761214306,215,0 +170761214354,216,0 +170761214402,216,0 +170761214449,216,0 +170761214497,217,0 +170761214545,217,0 +170761214593,217,0 +170761214641,218,0 +170761214688,218,0 +170761214736,218,0 +170761214786,218,0 +170761214833,218,0 +170761214881,220,0 +170761214929,219,0 +170761214977,219,0 +170761215025,219,0 +170761215073,220,0 +170761215120,220,0 +170761215168,220,0 +170761215216,215,0 +170761215264,215,0 +170761215312,215,0 +170761215359,216,0 +170761215407,216,0 +170761215455,216,0 +170761215503,217,0 +170761215551,218,0 +170761215599,219,0 +170761215646,219,0 +170761215694,218,0 +170761215742,219,0 +170761215790,219,0 +170761215838,219,0 +170761215886,220,0 +170761215933,220,0 +170761215981,220,0 +170761216029,220,0 +170761216078,220,0 +170761216126,217,0 +170761216174,215,0 +170761216222,216,0 +170761216270,216,0 +170761216317,216,0 +170761216365,217,0 +170761216413,217,0 +170761216461,217,0 +170761216509,218,0 +170761216556,218,0 +170761216604,219,0 +170761216652,219,0 +170761216700,220,0 +170761216748,220,0 +170761216796,219,0 +170761216843,219,0 +170761216891,220,0 +170761216939,220,0 +170761216987,220,0 +170761217037,219,0 +170761217084,216,0 +170761217132,216,0 +170761217180,216,0 +170761217228,217,0 +170761217276,218,0 +170761217324,217,0 +170761217371,218,0 +170761217419,218,0 +170761217467,218,0 +170761217515,218,0 +170761217563,219,0 +170761217612,220,0 +170761217660,219,0 +170761217708,220,0 +170761217756,220,0 +170761217804,221,0 +170761217851,220,0 +170761217899,221,0 +170761217947,220,0 +170761217996,215,0 +170761218044,215,0 +170761218092,216,0 +170761218140,216,0 +170761218188,217,0 +170761218236,217,0 +170761218283,218,0 +170761218331,217,0 +170761218379,218,0 +170761218427,219,0 +170761218475,219,0 +170761218524,220,0 +170761218572,220,0 +170761218621,220,0 +170761218669,220,0 +170761218717,220,0 +170761218765,220,0 +170761218813,220,0 +170761218861,220,0 +170761218909,219,0 +170761218956,215,0 +170761219004,215,0 +170761219052,215,0 +170761219100,216,0 +170761219150,216,0 +170761219197,217,0 +170761219245,217,0 +170761219293,217,0 +170761219343,217,0 +170761219390,218,0 +170761219438,218,0 +170761219486,219,0 +170761219534,219,0 +170761219582,220,0 +170761219630,220,0 +170761219679,220,0 +170761219727,219,0 +170761219775,220,0 +170761219823,220,0 +170761219871,216,0 +170761219919,214,0 +170761219967,215,0 +170761220014,215,0 +170761220062,216,0 +170761220112,216,0 +170761220160,216,0 +170761220207,217,0 +170761220255,217,0 +170761220303,218,0 +170761220351,218,0 +170761220399,218,0 +170761220447,219,0 +170761220496,219,0 +170761220544,219,0 +170761220592,221,0 +170761220639,220,0 +170761220687,220,0 +170761220735,220,0 +170761220783,219,0 +170761220831,215,0 +170761220879,215,0 +170761220926,216,0 +170761220976,216,0 +170761221025,216,0 +170761221073,217,0 +170761221121,218,0 +170761221169,218,0 +170761221216,218,0 +170761221264,219,0 +170761221312,219,0 +170761221360,219,0 +170761221408,220,0 +170761221456,220,0 +170761221503,219,0 +170761221551,220,0 +170761221599,219,0 +170761221647,220,0 +170761221695,219,0 +170761221743,219,0 +170761221792,214,0 +170761221840,214,0 +170761221888,215,0 +170761221937,215,0 +170761221987,216,0 +170761222034,216,0 +170761222082,217,0 +170761222132,217,0 +170761222179,217,0 +170761222227,218,0 +170761222275,219,0 +170761222323,218,0 +170761222371,219,0 +170761222419,220,0 +170761222468,220,0 +170761222516,219,0 +170761222564,218,0 +170761222612,220,0 +170761222660,219,0 +170761222708,215,0 +170761222756,214,0 +170761222803,215,0 +170761222851,215,0 +170761222899,215,0 +170761222947,216,0 +170761222995,216,0 +170761223043,216,0 +170761223092,216,0 +170761223140,217,0 +170761223188,218,0 +170761223236,218,0 +170761223285,219,0 +170761223333,219,0 +170761223381,220,0 +170761223429,220,0 +170761223477,220,0 +170761223525,219,0 +170761223573,220,0 +170761223622,219,0 +170761223670,214,0 +170761223720,214,0 +170761223768,215,0 +170761223817,215,0 +170761223865,216,0 +170761223915,216,0 +170761223963,216,0 +170761224011,217,0 +170761224059,217,0 +170761224108,217,0 +170761224156,218,0 +170761224204,218,0 +170761224252,219,0 +170761224300,219,0 +170761224348,219,0 +170761224396,220,0 +170761224444,219,0 +170761224491,220,0 +170761224541,219,0 +170761224589,215,0 +170761224637,214,0 +170761224686,215,0 +170761224734,215,0 +170761224782,216,0 +170761224830,216,0 +170761224878,216,0 +170761224926,217,0 +170761224973,217,0 +170761225021,218,0 +170761225071,218,0 +170761225120,220,0 +170761225168,219,0 +170761225216,219,0 +170761225264,219,0 +170761225314,219,0 +170761225363,220,0 +170761225413,220,0 +170761225462,219,0 +170761225512,217,0 +170761225560,214,0 +170761225609,215,0 +170761225657,215,0 +170761225705,216,0 +170761225753,216,0 +170761225801,217,0 +170761225849,217,0 +170761225897,217,0 +170761225945,218,0 +170761225993,218,0 +170761226042,219,0 +170761226090,219,0 +170761226138,220,0 +170761226186,220,0 +170761226236,221,0 +170761226284,219,0 +170761226332,219,0 +170761226380,219,0 +170761226429,219,0 +170761226477,215,0 +170761226525,214,0 +170761226573,214,0 +170761226621,215,0 +170761226669,215,0 +170761226718,215,0 +170761226766,216,0 +170761226814,216,0 +170761226862,216,0 +170761226912,217,0 +170761226960,217,0 +170761227008,218,0 +170761227057,219,0 +170761227105,219,0 +170761227153,219,0 +170761227201,219,0 +170761227249,219,0 +170761227298,218,0 +170761227348,219,0 +170761227397,215,0 +170761227445,214,0 +170761227493,214,0 +170761227542,214,0 +170761227590,215,0 +170761227638,215,0 +170761227686,216,0 +170761227734,216,0 +170761227782,216,0 +170761227830,217,0 +170761227878,217,0 +170761227927,217,0 +170761227975,218,0 +170761228025,218,0 +170761228073,218,0 +170761228122,217,0 +170761228170,218,0 +170761228218,218,0 +170761228268,219,0 +170761228316,219,0 +170761228363,214,0 +170761228411,214,0 +170761228459,215,0 +170761228509,215,0 +170761228558,215,0 +170761228606,215,0 +170761228654,216,0 +170761228702,216,0 +170761228750,216,0 +170761228800,218,0 +170761228849,217,0 +170761228897,218,0 +170761228947,218,0 +170761228996,220,0 +170761229044,219,0 +170761229094,219,0 +170761229143,220,0 +170761229191,219,0 +170761229239,219,0 +170761229287,216,0 +170761229335,215,0 +170761229384,216,0 +170761229434,216,0 +170761229482,216,0 +170761229530,217,0 +170761229578,217,0 +170761229626,217,0 +170761229675,218,0 +170761229723,218,0 +170761229771,218,0 +170761229819,219,0 +170761229867,220,0 +170761229916,220,0 +170761229966,221,0 +170761230015,220,0 +170761230063,220,0 +170761230111,219,0 +170761230159,219,0 +170761230207,215,0 +170761230257,215,0 +170761230304,216,0 +170761230352,216,0 +170761230400,217,0 +170761230450,217,0 +170761230499,217,0 +170761230549,217,0 +170761230597,219,0 +170761230644,219,0 +170761230694,219,0 +170761230742,219,0 +170761230790,220,0 +170761230839,220,0 +170761230887,220,0 +170761230935,220,0 +170761230983,219,0 +170761231032,220,0 +170761231080,220,0 +170761231128,219,0 +170761231178,216,0 +170761231226,216,0 +170761231275,217,0 +170761231323,217,0 +170761231371,218,0 +170761231421,217,0 +170761231468,219,0 +170761231516,219,0 +170761231564,219,0 +170761231614,219,0 +170761231662,220,0 +170761231710,220,0 +170761231757,221,0 +170761231805,220,0 +170761231853,220,0 +170761231901,219,0 +170761231949,220,0 +170761231997,220,0 +170761232045,220,0 +170761232093,215,0 +170761232142,215,0 +170761232190,215,0 +170761232238,216,0 +170761232286,216,0 +170761232335,216,0 +170761232385,216,0 +170761232433,217,0 +170761232482,217,0 +170761232530,218,0 +170761232578,218,0 +170761232628,219,0 +170761232677,220,0 +170761232725,219,0 +170761232773,219,0 +170761232821,220,0 +170761232869,220,0 +170761232919,221,0 +170761232967,220,0 +170761233015,219,0 +170761233062,215,0 +170761233110,215,0 +170761233160,216,0 +170761233208,216,0 +170761233256,216,0 +170761233305,217,0 +170761233353,217,0 +170761233402,217,0 +170761233450,217,0 +170761233498,218,0 +170761233546,218,0 +170761233594,219,0 +170761233642,220,0 +170761233690,220,0 +170761233738,221,0 +170761233786,220,0 +170761233834,219,0 +170761233883,220,0 +170761233931,220,0 +170761233979,215,0 +170761234029,215,0 +170761234078,215,0 +170761234128,216,0 +170761234177,217,0 +170761234225,217,0 +170761234273,217,0 +170761234321,217,0 +170761234369,217,0 +170761234418,219,0 +170761234468,220,0 +170761234516,220,0 +170761234565,220,0 +170761234614,220,0 +170761234662,220,0 +170761234712,220,0 +170761234760,220,0 +170761234808,220,0 +170761234856,220,0 +170761234905,215,0 +170761234953,214,0 +170761235001,214,0 +170761235050,214,0 +170761235100,215,0 +170761235148,216,0 +170761235197,216,0 +170761235245,216,0 +170761235293,217,0 +170761235343,217,0 +170761235392,218,0 +170761235440,219,0 +170761235489,218,0 +170761235537,219,0 +170761235585,219,0 +170761235635,220,0 +170761235683,219,0 +170761235731,219,0 +170761235779,220,0 +170761235827,219,0 +170761235875,214,0 +170761235923,214,0 +170761235972,214,0 +170761236020,215,0 +170761236069,215,0 +170761236119,216,0 +170761236167,216,0 +170761236215,216,0 +170761236264,216,0 +170761236312,217,0 +170761236362,217,0 +170761236410,219,0 +170761236458,218,0 +170761236507,218,0 +170761236557,219,0 +170761236605,219,0 +170761236654,219,0 +170761236702,220,0 +170761236752,220,0 +170761236800,214,0 +170761236848,214,0 +170761236897,214,0 +170761236945,214,0 +170761236994,214,0 +170761237044,214,0 +170761237093,214,0 +170761237141,215,0 +170761237191,216,0 +170761237240,217,0 +170761237290,217,0 +170761237338,218,0 +170761237387,218,0 +170761237435,218,0 +170761237483,218,0 +170761237531,220,0 +170761237579,220,0 +170761237627,219,0 +170761237675,220,0 +170761237723,215,0 +170761237771,214,0 +170761237819,214,0 +170761237867,214,0 +170761237915,214,0 +170761237964,214,0 +170761238012,214,0 +170761238062,215,0 +170761238110,215,0 +170761238158,215,0 +170761238206,216,0 +170761238255,217,0 +170761238305,217,0 +170761238354,217,0 +170761238402,218,0 +170761238450,218,0 +170761238500,218,0 +170761238548,218,0 +170761238596,220,0 +170761238644,216,0 +170761238691,214,0 +170761238739,214,0 +170761238787,214,0 +170761238835,215,0 +170761238883,215,0 +170761238931,216,0 +170761238980,216,0 +170761239028,216,0 +170761239076,216,0 +170761239124,217,0 +170761239173,218,0 +170761239223,218,0 +170761239272,219,0 +170761239320,219,0 +170761239368,219,0 +170761239416,219,0 +170761239466,220,0 +170761239515,220,0 +170761239563,220,0 +170761239611,215,0 +170761239659,214,0 +170761239707,214,0 +170761239757,214,0 +170761239806,214,0 +170761239854,214,0 +170761239902,214,0 +170761239950,215,0 +170761239999,215,0 +170761240047,215,0 +170761240095,216,0 +170761240145,217,0 +170761240193,218,0 +170761240242,218,0 +170761240290,218,0 +170761240338,219,0 +170761240386,220,0 +170761240434,219,0 +170761240482,219,0 +170761240530,215,0 +170761240578,213,0 +170761240627,213,0 +170761240675,214,0 +170761240723,214,0 +170761240773,214,0 +170761240821,214,0 +170761240869,214,0 +170761240917,214,0 +170761240965,214,0 +170761241014,215,0 +170761241062,215,0 +170761241111,215,0 +170761241159,215,0 +170761241209,216,0 +170761241257,217,0 +170761241305,217,0 +170761241353,218,0 +170761241401,219,0 +170761241449,219,0 +170761241496,214,0 +170761241544,214,0 +170761241594,214,0 +170761241642,214,0 +170761241691,214,0 +170761241739,214,0 +170761241787,215,0 +170761241837,215,0 +170761241884,215,0 +170761241932,216,0 +170761241982,216,0 +170761242030,217,0 +170761242079,217,0 +170761242127,217,0 +170761242177,218,0 +170761242226,218,0 +170761242276,218,0 +170761242324,219,0 +170761242372,220,0 +170761242420,215,0 +170761242469,214,0 +170761242517,215,0 +170761242565,215,0 +170761242613,215,0 +170761242661,215,0 +170761242709,216,0 +170761242758,216,0 +170761242806,217,0 +170761242854,217,0 +170761242904,218,0 +170761242952,218,0 +170761243001,219,0 +170761243051,219,0 +170761243100,219,0 +170761243148,219,0 +170761243198,220,0 +170761243245,220,0 +170761243295,219,0 +170761243343,215,0 +170761243392,214,0 +170761243440,214,0 +170761243488,216,0 +170761243536,215,0 +170761243584,215,0 +170761243632,216,0 +170761243680,217,0 +170761243728,217,0 +170761243776,218,0 +170761243823,218,0 +170761243871,218,0 +170761243919,219,0 +170761243969,219,0 +170761244017,220,0 +170761244064,221,0 +170761244112,220,0 +170761244160,219,0 +170761244208,222,0 +170761244256,219,0 +170761244304,215,0 +170761244352,215,0 +170761244402,215,0 +170761244450,216,0 +170761244498,216,0 +170761244547,216,0 +170761244597,216,0 +170761244645,217,0 +170761244693,217,0 +170761244741,217,0 +170761244790,218,0 +170761244840,218,0 +170761244888,219,0 +170761244937,219,0 +170761244985,219,0 +170761245033,219,0 +170761245081,220,0 +170761245129,220,0 +170761245177,220,0 +170761245225,216,0 +170761245273,215,0 +170761245322,215,0 +170761245370,215,0 +170761245418,216,0 +170761245466,216,0 +170761245514,217,0 +170761245562,217,0 +170761245612,218,0 +170761245660,218,0 +170761245708,219,0 +170761245755,219,0 +170761245803,219,0 +170761245851,219,0 +170761245899,220,0 +170761245947,220,0 +170761245995,220,0 +170761246043,219,0 +170761246091,219,0 +170761246139,218,0 +170761246187,217,0 +170761246235,217,0 +170761246283,217,0 +170761246333,218,0 +170761246382,218,0 +170761246432,218,0 +170761246479,219,0 +170761246527,219,0 +170761246575,219,0 +170761246623,219,0 +170761246671,220,0 +170761246719,220,0 +170761246767,220,0 +170761246817,220,0 +170761246866,220,0 +170761246914,220,0 +170761246962,220,0 +170761247010,220,0 +170761247059,219,0 +170761247109,217,0 +170761247157,218,0 +170761247205,218,0 +170761247253,218,0 +170761247302,218,0 +170761247350,218,0 +170761247398,219,0 +170761247448,220,0 +170761247496,219,0 +170761247543,220,0 +170761247591,220,0 +170761247639,220,0 +170761247689,220,0 +170761247738,220,0 +170761247786,220,0 +170761247836,220,0 +170761247884,220,0 +170761247932,219,0 +170761247979,219,0 +170761248027,216,0 +170761248075,217,0 +170761248123,218,0 +170761248171,218,0 +170761248221,218,0 +170761248270,219,0 +170761248318,217,0 +170761248366,219,0 +170761248414,220,0 +170761248463,219,0 +170761248511,220,0 +170761248559,220,0 +170761248607,220,0 +170761248657,220,0 +170761248706,220,0 +170761248754,220,0 +170761248802,220,0 +170761248852,219,0 +170761248900,220,0 +170761248948,219,0 +170761248997,214,0 +170761249045,214,0 +170761249093,215,0 +170761249141,215,0 +170761249189,216,0 +170761249237,216,0 +170761249286,216,0 +170761249334,217,0 +170761249382,218,0 +170761249432,218,0 +170761249480,218,0 +170761249528,218,0 +170761249577,219,0 +170761249625,219,0 +170761249673,219,0 +170761249722,220,0 +170761249772,219,0 +170761249820,220,0 +170761249869,219,0 +170761249919,214,0 +170761249967,214,0 +170761250015,215,0 +170761250063,215,0 +170761250111,215,0 +170761250159,216,0 +170761250208,216,0 +170761250256,216,0 +170761250305,217,0 +170761250355,218,0 +170761250403,217,0 +170761250451,218,0 +170761250499,218,0 +170761250547,218,0 +170761250594,218,0 +170761250642,218,0 +170761250690,219,0 +170761250740,219,0 +170761250788,219,0 +170761250836,215,0 +170761250884,214,0 +170761250932,214,0 +170761250980,215,0 +170761251028,215,0 +170761251076,216,0 +170761251124,216,0 +170761251171,216,0 +170761251219,216,0 +170761251269,216,0 +170761251317,217,0 +170761251366,218,0 +170761251414,218,0 +170761251462,218,0 +170761251510,218,0 +170761251558,219,0 +170761251608,219,0 +170761251657,219,0 +170761251707,219,0 +170761251756,218,0 +170761251806,215,0 +170761251854,215,0 +170761251902,216,0 +170761251950,216,0 +170761251998,216,0 +170761252046,216,0 +170761252095,217,0 +170761252143,217,0 +170761252191,217,0 +170761252239,218,0 +170761252287,218,0 +170761252335,218,0 +170761252384,219,0 +170761252432,218,0 +170761252480,219,0 +170761252530,220,0 +170761252578,219,0 +170761252626,220,0 +170761252675,219,0 +170761252723,215,0 +170761252771,215,0 +170761252821,215,0 +170761252869,216,0 +170761252917,216,0 +170761252966,217,0 +170761253014,217,0 +170761253062,218,0 +170761253110,218,0 +170761253158,218,0 +170761253206,218,0 +170761253254,219,0 +170761253302,220,0 +170761253351,219,0 +170761253399,219,0 +170761253447,220,0 +170761253497,219,0 +170761253545,219,0 +170761253593,219,0 +170761253640,215,0 +170761253688,214,0 +170761253736,214,0 +170761253784,215,0 +170761253832,215,0 +170761253880,216,0 +170761253927,216,0 +170761253975,217,0 +170761254023,217,0 +170761254071,217,0 +170761254120,218,0 +170761254170,218,0 +170761254218,218,0 +170761254265,219,0 +170761254313,219,0 +170761254361,219,0 +170761254409,220,0 +170761254457,220,0 +170761254505,220,0 +170761254553,219,0 +170761254601,215,0 +170761254649,214,0 +170761254696,214,0 +170761254744,214,0 +170761254792,215,0 +170761254842,216,0 +170761254891,216,0 +170761254941,216,0 +170761254989,216,0 +170761255039,216,0 +170761255086,217,0 +170761255134,218,0 +170761255182,218,0 +170761255230,218,0 +170761255278,220,0 +170761255326,220,0 +170761255374,219,0 +170761255421,219,0 +170761255469,219,0 +170761255517,215,0 +170761255565,214,0 +170761255613,214,0 +170761255661,215,0 +170761255709,215,0 +170761255757,216,0 +170761255804,216,0 +170761255854,217,0 +170761255902,217,0 +170761255950,217,0 +170761255997,218,0 +170761256047,219,0 +170761256095,219,0 +170761256143,219,0 +170761256190,220,0 +170761256238,219,0 +170761256286,219,0 +170761256334,219,0 +170761256382,220,0 +170761256430,218,0 +170761256478,214,0 +170761256526,214,0 +170761256573,214,0 +170761256621,214,0 +170761256671,215,0 +170761256719,215,0 +170761256767,215,0 +170761256816,216,0 +170761256864,216,0 +170761256912,217,0 +170761256960,217,0 +170761257008,217,0 +170761257056,218,0 +170761257104,219,0 +170761257152,219,0 +170761257200,219,0 +170761257248,219,0 +170761257297,220,0 +170761257345,219,0 +170761257393,215,0 +170761257441,214,0 +170761257489,214,0 +170761257538,214,0 +170761257586,214,0 +170761257634,214,0 +170761257682,215,0 +170761257730,217,0 +170761257780,215,0 +170761257829,215,0 +170761257877,216,0 +170761257927,217,0 +170761257976,218,0 +170761258024,217,0 +170761258072,218,0 +170761258120,219,0 +170761258169,219,0 +170761258217,219,0 +170761258265,220,0 +170761258313,218,0 +170761258361,214,0 +170761258409,214,0 +170761258458,214,0 +170761258506,214,0 +170761258554,214,0 +170761258604,214,0 +170761258652,215,0 +170761258700,215,0 +170761258747,216,0 +170761258796,216,0 +170761258843,217,0 +170761258891,217,0 +170761258939,217,0 +170761258987,218,0 +170761259035,224,0 +170761259085,219,0 +170761259133,219,0 +170761259181,219,0 +170761259230,219,0 +170761259278,214,0 +170761259326,214,0 +170761259376,214,0 +170761259424,215,0 +170761259472,215,0 +170761259520,215,0 +170761259569,215,0 +170761259617,216,0 +170761259665,216,0 +170761259714,217,0 +170761259762,217,0 +170761259812,218,0 +170761259861,219,0 +170761259911,219,0 +170761259960,219,0 +170761260010,220,0 +170761260058,219,0 +170761260106,219,0 +170761260154,219,0 +170761260203,215,0 +170761260253,215,0 +170761260301,215,0 +170761260348,215,0 +170761260396,216,0 +170761260444,216,0 +170761260494,216,0 +170761260543,217,0 +170761260593,218,0 +170761260641,218,0 +170761260690,218,0 +170761260738,218,0 +170761260786,219,0 +170761260834,219,0 +170761260882,220,0 +170761260930,220,0 +170761260978,220,0 +170761261026,220,0 +170761261075,220,0 +170761261125,215,0 +170761261174,214,0 +170761261222,215,0 +170761261270,215,0 +170761261320,216,0 +170761261367,216,0 +170761261417,217,0 +170761261465,218,0 +170761261514,218,0 +170761261564,218,0 +170761261612,218,0 +170761261661,219,0 +170761261711,219,0 +170761261760,219,0 +170761261808,219,0 +170761261858,220,0 +170761261906,220,0 +170761261955,220,0 +170761262003,220,0 +170761262052,217,0 +170761262102,214,0 +170761262152,214,0 +170761262199,215,0 +170761262249,216,0 +170761262297,216,0 +170761262345,216,0 +170761262394,217,0 +170761262442,217,0 +170761262490,217,0 +170761262538,218,0 +170761262588,219,0 +170761262636,219,0 +170761262683,220,0 +170761262731,219,0 +170761262779,220,0 +170761262827,220,0 +170761262877,221,0 +170761262926,220,0 +170761262974,218,0 +170761263022,214,0 +170761263070,215,0 +170761263120,215,0 +170761263169,216,0 +170761263219,216,0 +170761263267,217,0 +170761263316,217,0 +170761263366,218,0 +170761263414,218,0 +170761263462,219,0 +170761263511,219,0 +170761263561,219,0 +170761263610,219,0 +170761263658,220,0 +170761263706,221,0 +170761263755,220,0 +170761263803,220,0 +170761263851,220,0 +170761263899,219,0 +170761263949,214,0 +170761263997,214,0 +170761264045,214,0 +170761264093,215,0 +170761264141,216,0 +170761264189,216,0 +170761264238,217,0 +170761264286,217,0 +170761264334,217,0 +170761264382,217,0 +170761264431,218,0 +170761264479,219,0 +170761264529,218,0 +170761264577,219,0 +170761264624,219,0 +170761264672,219,0 +170761264720,218,0 +170761264770,218,0 +170761264818,219,0 +170761264867,215,0 +170761264917,214,0 +170761264965,214,0 +170761265013,215,0 +170761265060,215,0 +170761265110,215,0 +170761265159,215,0 +170761265207,216,0 +170761265257,216,0 +170761265305,217,0 +170761265353,216,0 +170761265402,218,0 +170761265450,219,0 +170761265500,219,0 +170761265548,219,0 +170761265596,219,0 +170761265644,219,0 +170761265692,220,0 +170761265739,220,0 +170761265789,215,0 +170761265837,213,0 +170761265887,214,0 +170761265936,214,0 +170761265986,214,0 +170761266034,215,0 +170761266083,215,0 +170761266133,216,0 +170761266180,216,0 +170761266230,216,0 +170761266278,217,0 +170761266326,218,0 +170761266373,217,0 +170761266421,218,0 +170761266469,218,0 +170761266517,218,0 +170761266565,217,0 +170761266614,218,0 +170761266664,219,0 +170761266713,215,0 +170761266761,214,0 +170761266809,214,0 +170761266857,214,0 +170761266905,214,0 +170761266953,215,0 +170761267001,215,0 +170761267049,216,0 +170761267096,216,0 +170761267144,216,0 +170761267192,217,0 +170761267240,217,0 +170761267289,218,0 +170761267337,219,0 +170761267385,219,0 +170761267433,219,0 +170761267481,219,0 +170761267529,219,0 +170761267577,219,0 +170761267624,219,0 +170761267672,215,0 +170761267720,214,0 +170761267768,214,0 +170761267816,215,0 +170761267864,215,0 +170761267912,215,0 +170761267960,216,0 +170761268008,217,0 +170761268055,218,0 +170761268103,218,0 +170761268151,219,0 +170761268199,219,0 +170761268247,219,0 +170761268295,219,0 +170761268344,219,0 +170761268392,220,0 +170761268440,220,0 +170761268489,220,0 +170761268537,219,0 +170761268585,216,0 +170761268633,214,0 +170761268681,214,0 +170761268729,215,0 +170761268777,215,0 +170761268825,216,0 +170761268873,216,0 +170761268921,217,0 +170761268969,217,0 +170761269017,217,0 +170761269065,218,0 +170761269113,219,0 +170761269160,219,0 +170761269210,219,0 +170761269258,219,0 +170761269306,220,0 +170761269354,219,0 +170761269403,220,0 +170761269451,219,0 +170761269501,219,0 +170761269550,214,0 +170761269600,214,0 +170761269648,214,0 +170761269697,215,0 +170761269747,215,0 +170761269795,216,0 +170761269843,216,0 +170761269891,217,0 +170761269939,217,0 +170761269987,217,0 +170761270035,217,0 +170761270083,218,0 +170761270131,218,0 +170761270179,218,0 +170761270227,219,0 +170761270276,220,0 +170761270326,218,0 +170761270374,219,0 +170761270422,220,0 +170761270470,215,0 +170761270518,214,0 +170761270567,214,0 +170761270615,214,0 +170761270663,215,0 +170761270711,216,0 +170761270760,215,0 +170761270808,215,0 +170761270856,216,0 +170761270904,217,0 +170761270954,217,0 +170761271002,217,0 +170761271050,219,0 +170761271099,218,0 +170761271149,219,0 +170761271197,218,0 +170761271244,218,0 +170761271292,218,0 +170761271340,219,0 +170761271388,216,0 +170761271438,214,0 +170761271486,214,0 +170761271535,214,0 +170761271583,214,0 +170761271631,214,0 +170761271679,215,0 +170761271727,214,0 +170761271776,215,0 +170761271824,215,0 +170761271872,216,0 +170761271920,216,0 +170761271968,217,0 +170761272016,217,0 +170761272064,217,0 +170761272112,218,0 +170761272159,218,0 +170761272209,218,0 +170761272257,219,0 +170761272305,219,0 +170761272353,214,0 +170761272402,214,0 +170761272450,215,0 +170761272500,215,0 +170761272549,215,0 +170761272597,216,0 +170761272647,215,0 +170761272695,216,0 +170761272744,216,0 +170761272794,217,0 +170761272842,217,0 +170761272891,218,0 +170761272939,218,0 +170761272989,219,0 +170761273037,219,0 +170761273085,219,0 +170761273133,219,0 +170761273182,220,0 +170761273230,219,0 +170761273278,215,0 +170761273326,215,0 +170761273374,215,0 +170761273422,215,0 +170761273470,216,0 +170761273518,216,0 +170761273567,216,0 +170761273615,217,0 +170761273663,217,0 +170761273711,217,0 +170761273759,218,0 +170761273807,218,0 +170761273855,219,0 +170761273903,219,0 +170761273951,219,0 +170761274000,220,0 +170761274048,220,0 +170761274098,220,0 +170761274146,220,0 +170761274194,216,0 +170761274241,216,0 +170761274289,216,0 +170761274339,216,0 +170761274387,217,0 +170761274436,217,0 +170761274486,217,0 +170761274534,218,0 +170761274582,219,0 +170761274630,218,0 +170761274678,219,0 +170761274726,218,0 +170761274774,220,0 +170761274821,220,0 +170761274869,220,0 +170761274917,221,0 +170761274965,220,0 +170761275013,220,0 +170761275061,220,0 +170761275110,218,0 +170761275158,215,0 +170761275206,215,0 +170761275254,216,0 +170761275304,216,0 +170761275352,217,0 +170761275400,217,0 +170761275448,218,0 +170761275496,219,0 +170761275544,219,0 +170761275591,220,0 +170761275641,219,0 +170761275689,220,0 +170761275737,220,0 +170761275785,221,0 +170761275833,220,0 +170761275880,220,0 +170761275930,220,0 +170761275978,219,0 +170761276026,219,0 +170761276074,215,0 +170761276122,214,0 +170761276170,215,0 +170761276218,215,0 +170761276266,216,0 +170761276314,216,0 +170761276361,216,0 +170761276409,217,0 +170761276457,217,0 +170761276505,218,0 +170761276553,218,0 +170761276603,219,0 +170761276651,219,0 +170761276700,220,0 +170761276748,221,0 +170761276796,219,0 +170761276846,220,0 +170761276895,220,0 +170761276943,219,0 +170761276991,215,0 +170761277039,214,0 +170761277088,215,0 +170761277138,215,0 +170761277186,216,0 +170761277235,216,0 +170761277283,216,0 +170761277331,217,0 +170761277379,217,0 +170761277429,218,0 +170761277476,218,0 +170761277524,218,0 +170761277574,219,0 +170761277622,220,0 +170761277670,220,0 +170761277719,220,0 +170761277767,219,0 +170761277815,219,0 +170761277865,220,0 +170761277913,219,0 +170761277961,215,0 +170761278010,215,0 +170761278058,216,0 +170761278106,216,0 +170761278154,216,0 +170761278202,216,0 +170761278250,216,0 +170761278299,217,0 +170761278347,217,0 +170761278395,217,0 +170761278443,218,0 +170761278492,218,0 +170761278540,219,0 +170761278590,220,0 +170761278638,220,0 +170761278686,220,0 +170761278735,221,0 +170761278785,220,0 +170761278833,219,0 +170761278880,215,0 +170761278930,214,0 +170761278978,215,0 +170761279026,216,0 +170761279074,216,0 +170761279122,216,0 +170761279171,216,0 +170761279219,217,0 +170761279267,218,0 +170761279317,217,0 +170761279365,219,0 +170761279413,218,0 +170761279462,219,0 +170761279510,220,0 +170761279558,220,0 +170761279606,220,0 +170761279654,220,0 +170761279702,220,0 +170761279750,219,0 +170761279799,216,0 +170761279847,215,0 +170761279897,216,0 +170761279946,216,0 +170761279996,216,0 +170761280045,217,0 +170761280093,217,0 +170761280141,218,0 +170761280189,218,0 +170761280237,219,0 +170761280285,219,0 +170761280333,219,0 +170761280381,220,0 +170761280431,220,0 +170761280480,220,0 +170761280528,220,0 +170761280577,221,0 +170761280627,221,0 +170761280675,220,0 +170761280723,219,0 +170761280772,215,0 +170761280820,216,0 +170761280868,217,0 +170761280916,217,0 +170761280964,217,0 +170761281012,217,0 +170761281062,218,0 +170761281111,219,0 +170761281159,219,0 +170761281207,220,0 +170761281256,221,0 +170761281304,220,0 +170761281352,220,0 +170761281400,221,0 +170761281448,222,0 +170761281496,222,0 +170761281546,221,0 +170761281594,221,0 +170761281643,220,0 +170761281693,215,0 +170761281742,215,0 +170761281790,216,0 +170761281840,216,0 +170761281889,217,0 +170761281939,217,0 +170761281987,218,0 +170761282036,218,0 +170761282084,219,0 +170761282132,219,0 +170761282182,219,0 +170761282230,220,0 +170761282278,221,0 +170761282327,220,0 +170761282375,221,0 +170761282425,221,0 +170761282474,220,0 +170761282522,220,0 +170761282571,220,0 +170761282621,214,0 +170761282670,214,0 +170761282720,214,0 +170761282769,214,0 +170761282817,214,0 +170761282867,214,0 +170761282916,214,0 +170761282964,215,0 +170761283012,216,0 +170761283062,216,0 +170761283110,217,0 +170761283158,217,0 +170761283206,218,0 +170761283253,219,0 +170761283301,219,0 +170761283349,219,0 +170761283399,219,0 +170761283448,219,0 +170761283498,220,0 +170761283548,215,0 +170761283596,214,0 +170761283645,214,0 +170761283693,214,0 +170761283743,215,0 +170761283790,215,0 +170761283838,215,0 +170761283888,216,0 +170761283936,216,0 +170761283984,217,0 +170761284033,217,0 +170761284081,218,0 +170761284129,218,0 +170761284179,219,0 +170761284228,219,0 +170761284278,219,0 +170761284327,219,0 +170761284375,219,0 +170761284425,220,0 +170761284474,215,0 +170761284524,214,0 +170761284572,214,0 +170761284620,215,0 +170761284668,215,0 +170761284717,215,0 +170761284765,215,0 +170761284813,216,0 +170761284861,216,0 +170761284909,217,0 +170761284957,217,0 +170761285005,218,0 +170761285053,218,0 +170761285102,219,0 +170761285152,219,0 +170761285200,219,0 +170761285249,220,0 +170761285297,221,0 +170761285345,220,0 +170761285395,219,0 +170761285443,214,0 +170761285492,214,0 +170761285540,214,0 +170761285588,214,0 +170761285638,215,0 +170761285687,215,0 +170761285737,216,0 +170761285785,216,0 +170761285833,217,0 +170761285882,217,0 +170761285932,218,0 +170761285981,218,0 +170761286029,218,0 +170761286077,219,0 +170761286125,218,0 +170761286175,219,0 +170761286224,219,0 +170761286274,220,0 +170761286322,220,0 +170761286370,214,0 +170761286419,214,0 +170761286467,214,0 +170761286515,214,0 +170761286563,215,0 +170761286611,215,0 +170761286661,215,0 +170761286709,215,0 +170761286757,216,0 +170761286805,216,0 +170761286854,217,0 +170761286902,218,0 +170761286952,218,0 +170761287000,219,0 +170761287048,219,0 +170761287096,219,0 +170761287145,219,0 +170761287193,219,0 +170761287241,219,0 +170761287289,214,0 +170761287338,214,0 +170761287388,214,0 +170761287436,214,0 +170761287484,214,0 +170761287533,215,0 +170761287581,215,0 +170761287629,215,0 +170761287677,216,0 +170761287727,216,0 +170761287775,217,0 +170761287822,217,0 +170761287870,218,0 +170761287918,218,0 +170761287966,219,0 +170761288016,219,0 +170761288064,219,0 +170761288112,220,0 +170761288161,220,0 +170761288211,215,0 +170761288259,214,0 +170761288307,214,0 +170761288355,214,0 +170761288403,214,0 +170761288450,214,0 +170761288500,214,0 +170761288548,214,0 +170761288597,214,0 +170761288645,214,0 +170761288695,214,0 +170761288743,214,0 +170761288792,215,0 +170761288842,216,0 +170761288890,216,0 +170761288938,216,0 +170761288986,217,0 +170761289034,217,0 +170761289082,218,0 +170761289130,218,0 +170761289178,218,0 +170761289226,219,0 +170761289275,220,0 +170761289323,219,0 +170761289371,219,0 +170761289419,220,0 +170761289467,219,0 +170761289515,220,0 +170761289564,220,0 +170761289612,215,0 +170761289660,214,0 +170761289708,214,0 +170761289756,214,0 +170761289806,215,0 +170761289855,215,0 +170761289903,215,0 +170761289951,216,0 +170761289999,216,0 +170761290046,217,0 +170761290094,217,0 +170761290142,218,0 +170761290190,218,0 +170761290238,218,0 +170761290286,219,0 +170761290334,219,0 +170761290381,219,0 +170761290431,219,0 +170761290480,219,0 +170761290528,215,0 +170761290578,214,0 +170761290626,214,0 +170761290674,214,0 +170761290722,214,0 +170761290770,215,0 +170761290818,215,0 +170761290865,216,0 +170761290913,216,0 +170761290961,216,0 +170761291011,217,0 +170761291060,217,0 +170761291108,218,0 +170761291156,218,0 +170761291204,218,0 +170761291252,219,0 +170761291300,219,0 +170761291348,219,0 +170761291396,219,0 +170761291444,218,0 +170761291493,214,0 +170761291541,214,0 +170761291589,214,0 +170761291637,214,0 +170761291685,214,0 +170761291734,215,0 +170761291784,215,0 +170761291832,216,0 +170761291881,216,0 +170761291929,216,0 +170761291977,216,0 +170761292025,217,0 +170761292073,217,0 +170761292122,217,0 +170761292172,219,0 +170761292220,218,0 +170761292268,219,0 +170761292316,219,0 +170761292365,218,0 +170761292413,215,0 +170761292461,214,0 +170761292509,214,0 +170761292557,215,0 +170761292605,215,0 +170761292653,216,0 +170761292701,216,0 +170761292749,216,0 +170761292796,216,0 +170761292844,217,0 +170761292892,217,0 +170761292940,218,0 +170761292988,218,0 +170761293036,220,0 +170761293084,219,0 +170761293131,219,0 +170761293181,219,0 +170761293229,221,0 +170761293277,222,0 +170761293325,220,0 +170761293373,214,0 +170761293421,214,0 +170761293469,215,0 +170761293516,216,0 +170761293566,215,0 +170761293614,216,0 +170761293662,216,0 +170761293710,216,0 +170761293758,217,0 +170761293805,217,0 +170761293853,217,0 +170761293901,218,0 +170761293949,218,0 +170761293999,218,0 +170761294047,218,0 +170761294095,219,0 +170761294144,219,0 +170761294192,219,0 +170761294242,219,0 +170761294291,215,0 +170761294339,214,0 +170761294387,215,0 +170761294435,215,0 +170761294483,215,0 +170761294531,216,0 +170761294578,216,0 +170761294628,217,0 +170761294677,217,0 +170761294725,217,0 +170761294773,218,0 +170761294821,219,0 +170761294871,219,0 +170761294920,219,0 +170761294968,220,0 +170761295018,220,0 +170761295066,220,0 +170761295114,218,0 +170761295162,219,0 +170761295210,215,0 +170761295258,214,0 +170761295306,215,0 +170761295353,215,0 +170761295403,215,0 +170761295451,216,0 +170761295500,216,0 +170761295548,216,0 +170761295596,217,0 +170761295646,217,0 +170761295694,218,0 +170761295741,218,0 +170761295789,219,0 +170761295839,219,0 +170761295887,220,0 +170761295935,220,0 +170761295982,220,0 +170761296030,220,0 +170761296078,220,0 +170761296126,217,0 +170761296175,215,0 +170761296223,216,0 +170761296271,217,0 +170761296319,217,0 +170761296369,217,0 +170761296417,217,0 +170761296465,218,0 +170761296513,218,0 +170761296562,219,0 +170761296612,219,0 +170761296660,220,0 +170761296708,221,0 +170761296757,220,0 +170761296805,220,0 +170761296853,220,0 +170761296901,220,0 +170761296949,220,0 +170761296997,219,0 +170761297045,219,0 +170761297093,215,0 +170761297142,215,0 +170761297190,215,0 +170761297238,215,0 +170761297288,216,0 +170761297336,217,0 +170761297384,217,0 +170761297432,217,0 +170761297481,218,0 +170761297529,219,0 +170761297577,219,0 +170761297626,219,0 +170761297676,220,0 +170761297726,220,0 +170761297774,220,0 +170761297823,220,0 +170761297871,220,0 +170761297921,220,0 +170761297968,219,0 +170761298016,215,0 +170761298064,214,0 +170761298112,215,0 +170761298160,215,0 +170761298208,215,0 +170761298256,216,0 +170761298304,216,0 +170761298352,216,0 +170761298400,217,0 +170761298449,217,0 +170761298497,218,0 +170761298545,220,0 +170761298593,218,0 +170761298641,219,0 +170761298689,221,0 +170761298737,219,0 +170761298785,220,0 +170761298835,219,0 +170761298883,219,0 +170761298931,215,0 +170761298980,214,0 +170761299028,215,0 +170761299076,216,0 +170761299126,216,0 +170761299175,216,0 +170761299223,216,0 +170761299273,217,0 +170761299321,217,0 +170761299370,217,0 +170761299420,217,0 +170761299467,219,0 +170761299515,219,0 +170761299563,219,0 +170761299611,219,0 +170761299659,219,0 +170761299707,220,0 +170761299755,220,0 +170761299803,220,0 +170761299853,220,0 +170761299900,214,0 +170761299948,215,0 +170761299996,216,0 +170761300044,216,0 +170761300092,216,0 +170761300140,216,0 +170761300188,216,0 +170761300237,217,0 +170761300285,218,0 +170761300333,218,0 +170761300381,218,0 +170761300431,219,0 +170761300479,220,0 +170761300526,221,0 +170761300574,221,0 +170761300622,221,0 +170761300670,220,0 +170761300718,220,0 +170761300766,219,0 +170761300815,214,0 +170761300863,214,0 +170761300911,215,0 +170761300959,215,0 +170761301007,215,0 +170761301055,216,0 +170761301103,217,0 +170761301151,217,0 +170761301199,217,0 +170761301246,218,0 +170761301296,219,0 +170761301346,219,0 +170761301394,219,0 +170761301442,219,0 +170761301490,220,0 +170761301538,221,0 +170761301585,220,0 +170761301635,219,0 +170761301683,218,0 +170761301731,214,0 +170761301778,215,0 +170761301826,215,0 +170761301874,216,0 +170761301922,216,0 +170761301970,216,0 +170761302018,216,0 +170761302066,217,0 +170761302114,217,0 +170761302163,218,0 +170761302211,219,0 +170761302259,219,0 +170761302307,219,0 +170761302354,219,0 +170761302402,220,0 +170761302450,220,0 +170761302500,220,0 +170761302549,220,0 +170761302598,219,0 +170761302648,214,0 +170761302696,214,0 +170761302746,215,0 +170761302795,215,0 +170761302843,215,0 +170761302891,216,0 +170761302939,217,0 +170761302988,217,0 +170761303036,217,0 +170761303084,219,0 +170761303132,219,0 +170761303180,219,0 +170761303228,220,0 +170761303275,220,0 +170761303323,220,0 +170761303373,221,0 +170761303422,220,0 +170761303470,220,0 +170761303520,219,0 +170761303568,214,0 +170761303617,214,0 +170761303665,214,0 +170761303713,215,0 +170761303761,215,0 +170761303811,216,0 +170761303858,216,0 +170761303906,216,0 +170761303954,216,0 +170761304002,217,0 +170761304052,218,0 +170761304101,218,0 +170761304151,219,0 +170761304200,219,0 +170761304248,219,0 +170761304298,219,0 +170761304346,218,0 +170761304395,219,0 +170761304443,215,0 +170761304491,213,0 +170761304539,214,0 +170761304587,214,0 +170761304635,214,0 +170761304683,214,0 +170761304731,214,0 +170761304780,215,0 +170761304828,216,0 +170761304878,216,0 +170761304925,216,0 +170761304973,217,0 +170761305021,217,0 +170761305069,218,0 +170761305117,218,0 +170761305164,218,0 +170761305212,219,0 +170761305260,219,0 +170761305308,220,0 +170761305356,216,0 +170761305404,214,0 +170761305451,214,0 +170761305499,214,0 +170761305547,214,0 +170761305595,214,0 +170761305643,215,0 +170761305691,215,0 +170761305739,215,0 +170761305787,216,0 +170761305835,217,0 +170761305883,217,0 +170761305930,217,0 +170761305978,218,0 +170761306026,218,0 +170761306074,219,0 +170761306122,219,0 +170761306170,218,0 +170761306218,219,0 +170761306266,217,0 +170761306313,214,0 +170761306361,214,0 +170761306409,214,0 +170761306457,214,0 +170761306505,214,0 +170761306553,214,0 +170761306601,214,0 +170761306649,215,0 +170761306698,216,0 +170761306746,215,0 +170761306794,217,0 +170761306842,218,0 +170761306892,218,0 +170761306940,217,0 +170761306989,217,0 +170761307037,218,0 +170761307085,219,0 +170761307133,219,0 +170761307181,219,0 +170761307229,214,0 +170761307277,214,0 +170761307326,214,0 +170761307374,214,0 +170761307422,214,0 +170761307471,214,0 +170761307519,214,0 +170761307569,215,0 +170761307617,215,0 +170761307665,216,0 +170761307714,216,0 +170761307762,217,0 +170761307810,218,0 +170761307858,217,0 +170761307908,219,0 +170761307957,219,0 +170761308005,219,0 +170761308055,218,0 +170761308103,219,0 +170761308151,214,0 +170761308200,214,0 +170761308248,214,0 +170761308296,214,0 +170761308344,215,0 +170761308392,215,0 +170761308440,215,0 +170761308488,216,0 +170761308536,216,0 +170761308585,217,0 +170761308633,217,0 +170761308681,218,0 +170761308729,218,0 +170761308779,218,0 +170761308827,219,0 +170761308876,219,0 +170761308924,219,0 +170761308972,219,0 +170761309020,218,0 +170761309068,215,0 +170761309117,215,0 +170761309165,215,0 +170761309213,215,0 +170761309261,216,0 +170761309309,216,0 +170761309356,217,0 +170761309404,217,0 +170761309452,218,0 +170761309500,218,0 +170761309548,219,0 +170761309596,219,0 +170761309646,218,0 +170761309695,219,0 +170761309743,219,0 +170761309791,220,0 +170761309839,221,0 +170761309887,219,0 +170761309935,217,0 +170761309983,216,0 +170761310031,216,0 +170761310080,216,0 +170761310130,217,0 +170761310178,217,0 +170761310227,218,0 +170761310275,218,0 +170761310325,218,0 +170761310373,219,0 +170761310421,219,0 +170761310468,220,0 +170761310516,220,0 +170761310566,219,0 +170761310614,220,0 +170761310662,219,0 +170761310710,219,0 +170761310758,219,0 +170761310806,219,0 +170761310854,215,0 +170761310902,215,0 +170761310950,216,0 +170761310997,216,0 +170761311045,216,0 +170761311093,217,0 +170761311141,217,0 +170761311189,218,0 +170761311239,219,0 +170761311288,218,0 +170761311338,218,0 +170761311386,220,0 +170761311435,220,0 +170761311483,220,0 +170761311531,220,0 +170761311581,219,0 +170761311630,220,0 +170761311680,220,0 +170761311728,220,0 +170761311776,215,0 +170761311824,214,0 +170761311872,215,0 +170761311921,215,0 +170761311969,216,0 +170761312017,217,0 +170761312065,217,0 +170761312114,218,0 +170761312162,218,0 +170761312212,219,0 +170761312261,219,0 +170761312309,219,0 +170761312359,220,0 +170761312407,219,0 +170761312455,219,0 +170761312503,220,0 +170761312551,220,0 +170761312599,220,0 +170761312648,219,0 +170761312696,215,0 +170761312744,214,0 +170761312792,215,0 +170761312840,215,0 +170761312889,216,0 +170761312937,216,0 +170761312985,216,0 +170761313033,217,0 +170761313081,217,0 +170761313131,218,0 +170761313180,218,0 +170761313229,218,0 +170761313279,218,0 +170761313327,219,0 +170761313375,219,0 +170761313422,220,0 +170761313470,219,0 +170761313518,219,0 +170761313566,219,0 +170761313614,215,0 +170761313662,214,0 +170761313710,214,0 +170761313757,214,0 +170761313805,214,0 +170761313853,215,0 +170761313901,215,0 +170761313949,215,0 +170761313998,216,0 +170761314048,217,0 +170761314096,218,0 +170761314144,217,0 +170761314192,217,0 +170761314240,218,0 +170761314288,219,0 +170761314336,218,0 +170761314384,218,0 +170761314431,218,0 +170761314479,219,0 +170761314527,215,0 +170761314575,214,0 +170761314623,214,0 +170761314671,215,0 +170761314719,215,0 +170761314767,216,0 +170761314815,216,0 +170761314862,216,0 +170761314910,216,0 +170761314958,217,0 +170761315006,217,0 +170761315054,218,0 +170761315102,219,0 +170761315149,219,0 +170761315197,219,0 +170761315245,219,0 +170761315293,219,0 +170761315341,220,0 +170761315389,220,0 +170761315436,216,0 +170761315484,215,0 +170761315532,215,0 +170761315580,216,0 +170761315628,216,0 +170761315676,217,0 +170761315724,217,0 +170761315771,217,0 +170761315819,218,0 +170761315867,218,0 +170761315915,218,0 +170761315963,219,0 +170761316011,220,0 +170761316058,219,0 +170761316106,220,0 +170761316154,220,0 +170761316202,220,0 +170761316250,220,0 +170761316298,219,0 +170761316346,215,0 +170761316394,215,0 +170761316441,215,0 +170761316489,216,0 +170761316537,216,0 +170761316585,217,0 +170761316633,217,0 +170761316681,217,0 +170761316728,218,0 +170761316776,218,0 +170761316824,219,0 +170761316874,219,0 +170761316922,219,0 +170761316971,220,0 +170761317021,219,0 +170761317069,220,0 +170761317116,220,0 +170761317164,219,0 +170761317212,219,0 +170761317260,215,0 +170761317308,214,0 +170761317356,214,0 +170761317404,215,0 +170761317452,215,0 +170761317501,216,0 +170761317549,216,0 +170761317597,216,0 +170761317647,217,0 +170761317694,217,0 +170761317744,218,0 +170761317793,218,0 +170761317843,218,0 +170761317892,218,0 +170761317940,219,0 +170761317990,219,0 +170761318039,219,0 +170761318087,219,0 +170761318135,219,0 +170761318184,215,0 +170761318234,214,0 +170761318282,214,0 +170761318330,214,0 +170761318378,215,0 +170761318426,215,0 +170761318474,216,0 +170761318521,216,0 +170761318571,216,0 +170761318620,217,0 +170761318668,217,0 +170761318718,217,0 +170761318765,218,0 +170761318813,218,0 +170761318863,218,0 +170761318911,219,0 +170761318959,220,0 +170761319008,219,0 +170761319058,219,0 +170761319106,215,0 +170761319154,214,0 +170761319203,214,0 +170761319251,214,0 +170761319301,215,0 +170761319349,215,0 +170761319397,216,0 +170761319445,216,0 +170761319493,217,0 +170761319541,217,0 +170761319589,217,0 +170761319636,218,0 +170761319684,218,0 +170761319732,219,0 +170761319780,219,0 +170761319828,219,0 +170761319877,219,0 +170761319925,219,0 +170761319975,219,0 +170761320023,215,0 diff --git a/laser_value/0211-11.csv b/laser_value/0211-11.csv new file mode 100644 index 0000000..22dc1a1 --- /dev/null +++ b/laser_value/0211-11.csv @@ -0,0 +1,7454 @@ +timestamp,laser_value,event +170761320073,214,0 +170761320121,213,0 +170761320170,214,0 +170761320218,214,0 +170761320268,214,0 +170761320317,215,0 +170761320365,215,0 +170761320413,216,0 +170761320463,216,0 +170761320511,217,0 +170761320558,217,0 +170761320606,218,0 +170761320654,218,0 +170761320702,219,0 +170761320752,219,0 +170761320800,219,0 +170761320847,219,0 +170761320895,219,0 +170761320943,215,0 +170761320991,214,0 +170761321039,214,0 +170761321089,214,0 +170761321137,215,0 +170761321185,215,0 +170761321232,215,0 +170761321280,216,0 +170761321330,216,0 +170761321378,217,0 +170761321426,217,0 +170761321474,218,0 +170761321522,218,0 +170761321570,218,0 +170761321618,219,0 +170761321667,219,0 +170761321715,219,0 +170761321763,219,0 +170761321813,220,0 +170761321860,214,0 +170761321908,214,0 +170761321956,214,0 +170761322006,214,0 +170761322054,214,0 +170761322103,216,0 +170761322151,216,0 +170761322199,216,0 +170761322249,216,0 +170761322296,217,0 +170761322344,218,0 +170761322392,218,0 +170761322440,218,0 +170761322488,219,0 +170761322536,219,0 +170761322586,220,0 +170761322634,219,0 +170761322681,220,0 +170761322729,219,0 +170761322779,214,0 +170761322829,214,0 +170761322876,214,0 +170761322924,215,0 +170761322972,215,0 +170761323020,215,0 +170761323068,215,0 +170761323116,216,0 +170761323164,216,0 +170761323213,216,0 +170761323261,217,0 +170761323309,217,0 +170761323357,218,0 +170761323407,218,0 +170761323454,218,0 +170761323502,219,0 +170761323552,219,0 +170761323601,219,0 +170761323649,216,0 +170761323697,214,0 +170761323745,214,0 +170761323793,214,0 +170761323842,215,0 +170761323892,215,0 +170761323941,216,0 +170761323989,216,0 +170761324037,216,0 +170761324085,217,0 +170761324133,217,0 +170761324181,217,0 +170761324229,218,0 +170761324277,217,0 +170761324325,218,0 +170761324373,218,0 +170761324421,218,0 +170761324468,219,0 +170761324516,219,0 +170761324564,218,0 +170761324612,214,0 +170761324660,214,0 +170761324708,215,0 +170761324756,215,0 +170761324804,215,0 +170761324852,216,0 +170761324900,217,0 +170761324948,217,0 +170761324996,217,0 +170761325045,218,0 +170761325093,218,0 +170761325143,219,0 +170761325190,219,0 +170761325238,219,0 +170761325286,220,0 +170761325336,220,0 +170761325384,220,0 +170761325431,220,0 +170761325479,218,0 +170761325529,215,0 +170761325577,215,0 +170761325625,216,0 +170761325673,216,0 +170761325722,216,0 +170761325770,217,0 +170761325818,218,0 +170761325867,218,0 +170761325917,219,0 +170761325964,219,0 +170761326012,219,0 +170761326060,220,0 +170761326110,219,0 +170761326158,219,0 +170761326206,219,0 +170761326253,220,0 +170761326301,221,0 +170761326349,219,0 +170761326397,215,0 +170761326445,214,0 +170761326493,215,0 +170761326541,215,0 +170761326589,215,0 +170761326637,216,0 +170761326686,216,0 +170761326734,216,0 +170761326782,217,0 +170761326830,217,0 +170761326878,218,0 +170761326925,219,0 +170761326973,218,0 +170761327021,219,0 +170761327069,219,0 +170761327118,220,0 +170761327166,219,0 +170761327214,220,0 +170761327262,219,0 +170761327310,217,0 +170761327358,215,0 +170761327406,215,0 +170761327454,216,0 +170761327502,216,0 +170761327550,217,0 +170761327599,217,0 +170761327647,218,0 +170761327695,218,0 +170761327743,219,0 +170761327791,219,0 +170761327839,220,0 +170761327887,220,0 +170761327935,220,0 +170761327982,222,0 +170761328030,221,0 +170761328078,220,0 +170761328126,221,0 +170761328174,219,0 +170761328221,217,0 +170761328269,217,0 +170761328317,217,0 +170761328365,218,0 +170761328413,218,0 +170761328461,218,0 +170761328509,219,0 +170761328556,219,0 +170761328604,220,0 +170761328652,220,0 +170761328700,221,0 +170761328747,221,0 +170761328795,220,0 +170761328843,221,0 +170761328891,221,0 +170761328939,222,0 +170761328987,220,0 +170761329034,220,0 +170761329082,220,0 +170761329130,217,0 +170761329180,218,0 +170761329227,218,0 +170761329275,218,0 +170761329325,218,0 +170761329373,219,0 +170761329420,219,0 +170761329468,219,0 +170761329516,220,0 +170761329564,220,0 +170761329612,219,0 +170761329659,221,0 +170761329707,221,0 +170761329755,220,0 +170761329803,221,0 +170761329851,220,0 +170761329900,220,0 +170761329948,221,0 +170761329996,220,0 +170761330044,215,0 +170761330094,216,0 +170761330142,216,0 +170761330189,216,0 +170761330237,217,0 +170761330285,217,0 +170761330333,217,0 +170761330381,217,0 +170761330429,218,0 +170761330477,219,0 +170761330526,219,0 +170761330574,219,0 +170761330622,220,0 +170761330670,221,0 +170761330718,220,0 +170761330766,220,0 +170761330814,220,0 +170761330862,220,0 +170761330910,219,0 +170761330957,216,0 +170761331005,214,0 +170761331053,214,0 +170761331103,215,0 +170761331151,215,0 +170761331200,216,0 +170761331248,216,0 +170761331296,216,0 +170761331344,217,0 +170761331392,217,0 +170761331440,219,0 +170761331489,218,0 +170761331537,218,0 +170761331585,221,0 +170761331635,220,0 +170761331683,219,0 +170761331731,220,0 +170761331780,220,0 +170761331828,219,0 +170761331876,215,0 +170761331924,213,0 +170761331973,214,0 +170761332023,214,0 +170761332071,214,0 +170761332119,214,0 +170761332167,214,0 +170761332214,214,0 +170761332262,215,0 +170761332310,215,0 +170761332358,215,0 +170761332406,216,0 +170761332454,216,0 +170761332502,217,0 +170761332549,217,0 +170761332597,218,0 +170761332645,217,0 +170761332693,217,0 +170761332741,219,0 +170761332789,215,0 +170761332837,214,0 +170761332884,214,0 +170761332932,214,0 +170761332982,215,0 +170761333029,215,0 +170761333077,215,0 +170761333125,216,0 +170761333175,216,0 +170761333222,216,0 +170761333270,218,0 +170761333318,219,0 +170761333366,218,0 +170761333415,219,0 +170761333463,219,0 +170761333513,220,0 +170761333562,220,0 +170761333610,219,0 +170761333658,220,0 +170761333705,215,0 +170761333753,215,0 +170761333801,215,0 +170761333849,216,0 +170761333897,215,0 +170761333945,216,0 +170761333992,217,0 +170761334040,217,0 +170761334090,217,0 +170761334137,218,0 +170761334187,219,0 +170761334235,218,0 +170761334282,219,0 +170761334330,219,0 +170761334378,220,0 +170761334426,220,0 +170761334474,220,0 +170761334522,219,0 +170761334569,220,0 +170761334617,215,0 +170761334665,214,0 +170761334713,214,0 +170761334761,215,0 +170761334809,215,0 +170761334856,216,0 +170761334904,216,0 +170761334952,217,0 +170761335000,218,0 +170761335049,218,0 +170761335097,219,0 +170761335145,219,0 +170761335193,219,0 +170761335240,219,0 +170761335288,220,0 +170761335338,221,0 +170761335386,220,0 +170761335433,220,0 +170761335481,219,0 +170761335529,215,0 +170761335577,214,0 +170761335625,214,0 +170761335673,214,0 +170761335720,215,0 +170761335768,216,0 +170761335816,216,0 +170761335864,216,0 +170761335912,217,0 +170761335960,218,0 +170761336009,218,0 +170761336057,219,0 +170761336105,219,0 +170761336153,219,0 +170761336201,220,0 +170761336248,219,0 +170761336296,219,0 +170761336344,220,0 +170761336392,219,0 +170761336440,215,0 +170761336488,214,0 +170761336535,214,0 +170761336583,214,0 +170761336631,216,0 +170761336679,216,0 +170761336727,216,0 +170761336775,217,0 +170761336823,218,0 +170761336870,218,0 +170761336918,218,0 +170761336966,217,0 +170761337014,218,0 +170761337062,219,0 +170761337110,219,0 +170761337158,220,0 +170761337205,220,0 +170761337253,220,0 +170761337301,219,0 +170761337349,215,0 +170761337397,214,0 +170761337445,214,0 +170761337493,214,0 +170761337540,215,0 +170761337588,215,0 +170761337636,216,0 +170761337684,216,0 +170761337732,216,0 +170761337779,217,0 +170761337829,217,0 +170761337877,217,0 +170761337924,218,0 +170761337974,218,0 +170761338022,219,0 +170761338071,219,0 +170761338119,219,0 +170761338167,218,0 +170761338215,219,0 +170761338263,215,0 +170761338311,214,0 +170761338359,214,0 +170761338407,215,0 +170761338455,216,0 +170761338502,215,0 +170761338550,216,0 +170761338598,216,0 +170761338647,216,0 +170761338695,217,0 +170761338743,218,0 +170761338791,218,0 +170761338839,219,0 +170761338887,219,0 +170761338935,220,0 +170761338983,220,0 +170761339033,220,0 +170761339082,220,0 +170761339130,220,0 +170761339178,215,0 +170761339227,214,0 +170761339277,215,0 +170761339325,215,0 +170761339373,215,0 +170761339422,216,0 +170761339472,216,0 +170761339520,216,0 +170761339569,216,0 +170761339617,217,0 +170761339665,218,0 +170761339713,218,0 +170761339762,218,0 +170761339810,218,0 +170761339858,218,0 +170761339908,219,0 +170761339957,219,0 +170761340005,219,0 +170761340055,219,0 +170761340104,214,0 +170761340152,214,0 +170761340200,214,0 +170761340248,215,0 +170761340296,215,0 +170761340344,216,0 +170761340391,216,0 +170761340439,217,0 +170761340487,216,0 +170761340537,216,0 +170761340585,217,0 +170761340633,217,0 +170761340681,218,0 +170761340730,218,0 +170761340778,218,0 +170761340827,218,0 +170761340875,219,0 +170761340925,219,0 +170761340974,219,0 +170761341024,214,0 +170761341072,214,0 +170761341121,214,0 +170761341169,215,0 +170761341219,215,0 +170761341267,215,0 +170761341315,216,0 +170761341364,216,0 +170761341412,217,0 +170761341460,217,0 +170761341508,218,0 +170761341557,218,0 +170761341607,219,0 +170761341655,219,0 +170761341703,220,0 +170761341751,219,0 +170761341799,219,0 +170761341847,220,0 +170761341894,219,0 +170761341942,215,0 +170761341992,215,0 +170761342040,215,0 +170761342088,216,0 +170761342136,216,0 +170761342185,216,0 +170761342233,217,0 +170761342281,219,0 +170761342331,218,0 +170761342379,218,0 +170761342426,220,0 +170761342476,219,0 +170761342524,219,0 +170761342572,220,0 +170761342621,220,0 +170761342669,220,0 +170761342719,220,0 +170761342767,219,0 +170761342816,215,0 +170761342864,215,0 +170761342912,215,0 +170761342960,215,0 +170761343008,216,0 +170761343057,216,0 +170761343105,217,0 +170761343153,217,0 +170761343201,217,0 +170761343250,218,0 +170761343298,218,0 +170761343348,219,0 +170761343396,219,0 +170761343444,219,0 +170761343493,220,0 +170761343541,220,0 +170761343589,220,0 +170761343637,220,0 +170761343685,219,0 +170761343734,215,0 +170761343782,214,0 +170761343830,215,0 +170761343878,215,0 +170761343926,216,0 +170761343974,216,0 +170761344022,217,0 +170761344070,217,0 +170761344118,217,0 +170761344166,218,0 +170761344214,219,0 +170761344263,219,0 +170761344311,219,0 +170761344361,220,0 +170761344409,220,0 +170761344457,221,0 +170761344504,220,0 +170761344552,220,0 +170761344600,219,0 +170761344648,215,0 +170761344696,214,0 +170761344744,214,0 +170761344793,215,0 +170761344841,215,0 +170761344891,215,0 +170761344939,216,0 +170761344987,216,0 +170761345035,216,0 +170761345084,217,0 +170761345132,218,0 +170761345180,218,0 +170761345229,219,0 +170761345277,218,0 +170761345327,218,0 +170761345375,218,0 +170761345423,218,0 +170761345470,216,0 +170761345520,219,0 +170761345569,215,0 +170761345619,214,0 +170761345667,214,0 +170761345716,214,0 +170761345764,214,0 +170761345812,215,0 +170761345862,215,0 +170761345910,216,0 +170761345958,216,0 +170761346006,216,0 +170761346053,217,0 +170761346101,217,0 +170761346149,217,0 +170761346199,218,0 +170761346248,219,0 +170761346296,219,0 +170761346346,219,0 +170761346395,219,0 +170761346445,219,0 +170761346493,214,0 +170761346541,214,0 +170761346590,214,0 +170761346638,214,0 +170761346688,215,0 +170761346737,215,0 +170761346787,215,0 +170761346836,215,0 +170761346884,216,0 +170761346932,217,0 +170761346980,217,0 +170761347028,218,0 +170761347076,218,0 +170761347125,219,0 +170761347173,219,0 +170761347223,219,0 +170761347271,219,0 +170761347319,220,0 +170761347368,219,0 +170761347416,215,0 +170761347464,215,0 +170761347512,216,0 +170761347561,216,0 +170761347611,217,0 +170761347660,217,0 +170761347708,218,0 +170761347758,218,0 +170761347807,218,0 +170761347855,218,0 +170761347903,219,0 +170761347951,219,0 +170761347999,219,0 +170761348047,220,0 +170761348095,220,0 +170761348143,220,0 +170761348191,220,0 +170761348240,219,0 +170761348288,218,0 +170761348336,215,0 +170761348384,216,0 +170761348432,216,0 +170761348480,216,0 +170761348528,217,0 +170761348576,217,0 +170761348624,217,0 +170761348672,217,0 +170761348721,219,0 +170761348769,218,0 +170761348817,219,0 +170761348865,219,0 +170761348913,219,0 +170761348961,219,0 +170761349010,219,0 +170761349058,218,0 +170761349106,218,0 +170761349154,220,0 +170761349204,216,0 +170761349252,214,0 +170761349300,215,0 +170761349347,215,0 +170761349395,216,0 +170761349443,216,0 +170761349491,216,0 +170761349539,216,0 +170761349587,217,0 +170761349635,217,0 +170761349683,218,0 +170761349731,219,0 +170761349780,218,0 +170761349830,219,0 +170761349878,219,0 +170761349926,219,0 +170761349974,220,0 +170761350022,220,0 +170761350069,220,0 +170761350117,215,0 +170761350165,214,0 +170761350213,214,0 +170761350261,214,0 +170761350309,215,0 +170761350357,216,0 +170761350404,216,0 +170761350452,217,0 +170761350500,217,0 +170761350548,217,0 +170761350596,218,0 +170761350644,218,0 +170761350693,219,0 +170761350741,220,0 +170761350789,219,0 +170761350837,220,0 +170761350886,221,0 +170761350934,221,0 +170761350982,220,0 +170761351030,219,0 +170761351077,214,0 +170761351125,215,0 +170761351173,215,0 +170761351221,215,0 +170761351269,218,0 +170761351317,216,0 +170761351365,216,0 +170761351414,217,0 +170761351462,217,0 +170761351510,217,0 +170761351558,217,0 +170761351606,218,0 +170761351653,218,0 +170761351701,219,0 +170761351751,219,0 +170761351799,219,0 +170761351847,219,0 +170761351895,220,0 +170761351944,218,0 +170761351992,214,0 +170761352042,214,0 +170761352089,215,0 +170761352137,215,0 +170761352185,216,0 +170761352235,216,0 +170761352283,216,0 +170761352330,216,0 +170761352380,217,0 +170761352429,217,0 +170761352479,218,0 +170761352527,218,0 +170761352574,219,0 +170761352622,219,0 +170761352670,219,0 +170761352718,218,0 +170761352766,219,0 +170761352815,219,0 +170761352865,215,0 +170761352913,215,0 +170761352962,215,0 +170761353010,215,0 +170761353060,216,0 +170761353109,216,0 +170761353157,216,0 +170761353205,217,0 +170761353253,218,0 +170761353301,219,0 +170761353349,218,0 +170761353398,219,0 +170761353446,220,0 +170761353494,220,0 +170761353542,221,0 +170761353590,220,0 +170761353638,220,0 +170761353686,220,0 +170761353734,219,0 +170761353782,215,0 +170761353831,215,0 +170761353879,215,0 +170761353927,216,0 +170761353975,216,0 +170761354023,216,0 +170761354071,217,0 +170761354119,217,0 +170761354167,217,0 +170761354215,218,0 +170761354265,218,0 +170761354312,218,0 +170761354360,219,0 +170761354408,219,0 +170761354456,220,0 +170761354506,220,0 +170761354554,220,0 +170761354602,220,0 +170761354651,219,0 +170761354701,214,0 +170761354748,214,0 +170761354798,214,0 +170761354846,215,0 +170761354894,216,0 +170761354941,216,0 +170761354991,216,0 +170761355039,216,0 +170761355087,217,0 +170761355135,217,0 +170761355183,218,0 +170761355231,218,0 +170761355280,218,0 +170761355328,219,0 +170761355376,219,0 +170761355424,219,0 +170761355472,218,0 +170761355520,218,0 +170761355568,219,0 +170761355617,214,0 +170761355665,214,0 +170761355713,214,0 +170761355761,214,0 +170761355809,215,0 +170761355857,215,0 +170761355905,215,0 +170761355953,216,0 +170761356001,216,0 +170761356049,216,0 +170761356097,217,0 +170761356145,217,0 +170761356193,217,0 +170761356241,218,0 +170761356289,219,0 +170761356337,218,0 +170761356386,217,0 +170761356434,219,0 +170761356482,219,0 +170761356530,215,0 +170761356578,214,0 +170761356626,214,0 +170761356673,215,0 +170761356723,216,0 +170761356771,216,0 +170761356819,216,0 +170761356867,216,0 +170761356915,217,0 +170761356963,217,0 +170761357012,218,0 +170761357060,218,0 +170761357108,218,0 +170761357156,219,0 +170761357204,218,0 +170761357253,219,0 +170761357303,219,0 +170761357351,219,0 +170761357399,219,0 +170761357446,215,0 +170761357494,215,0 +170761357542,215,0 +170761357592,216,0 +170761357641,216,0 +170761357689,217,0 +170761357738,217,0 +170761357788,217,0 +170761357837,218,0 +170761357885,219,0 +170761357933,220,0 +170761357983,219,0 +170761358032,220,0 +170761358080,220,0 +170761358128,220,0 +170761358176,220,0 +170761358224,220,0 +170761358272,220,0 +170761358320,219,0 +170761358368,216,0 +170761358416,216,0 +170761358465,216,0 +170761358513,216,0 +170761358563,217,0 +170761358611,218,0 +170761358661,217,0 +170761358709,218,0 +170761358758,218,0 +170761358808,219,0 +170761358857,219,0 +170761358907,220,0 +170761358955,220,0 +170761359003,221,0 +170761359052,220,0 +170761359100,220,0 +170761359150,220,0 +170761359198,219,0 +170761359247,217,0 +170761359297,216,0 +170761359345,216,0 +170761359393,217,0 +170761359442,217,0 +170761359490,219,0 +170761359538,218,0 +170761359586,218,0 +170761359635,220,0 +170761359683,219,0 +170761359733,220,0 +170761359781,220,0 +170761359829,220,0 +170761359877,220,0 +170761359925,220,0 +170761359973,220,0 +170761360021,220,0 +170761360069,220,0 +170761360118,219,0 +170761360166,215,0 +170761360216,214,0 +170761360263,214,0 +170761360311,215,0 +170761360361,215,0 +170761360409,216,0 +170761360457,216,0 +170761360506,216,0 +170761360554,217,0 +170761360602,217,0 +170761360650,218,0 +170761360698,219,0 +170761360748,219,0 +170761360796,219,0 +170761360843,219,0 +170761360891,219,0 +170761360941,219,0 +170761360989,219,0 +170761361038,219,0 +170761361088,215,0 +170761361136,214,0 +170761361185,213,0 +170761361233,214,0 +170761361281,214,0 +170761361331,215,0 +170761361380,215,0 +170761361428,215,0 +170761361476,215,0 +170761361524,216,0 +170761361572,216,0 +170761361620,217,0 +170761361668,218,0 +170761361715,218,0 +170761361765,218,0 +170761361813,218,0 +170761361861,217,0 +170761361909,218,0 +170761361957,219,0 +170761362005,214,0 +170761362054,213,0 +170761362102,214,0 +170761362150,214,0 +170761362198,214,0 +170761362246,214,0 +170761362294,214,0 +170761362342,214,0 +170761362390,214,0 +170761362437,214,0 +170761362485,216,0 +170761362535,216,0 +170761362584,217,0 +170761362632,217,0 +170761362680,218,0 +170761362730,218,0 +170761362778,218,0 +170761362827,218,0 +170761362875,218,0 +170761362925,213,0 +170761362973,213,0 +170761363022,214,0 +170761363070,214,0 +170761363118,214,0 +170761363166,214,0 +170761363215,214,0 +170761363263,214,0 +170761363313,215,0 +170761363362,215,0 +170761363410,216,0 +170761363460,217,0 +170761363508,217,0 +170761363555,217,0 +170761363603,218,0 +170761363653,218,0 +170761363701,218,0 +170761363750,219,0 +170761363798,215,0 +170761363848,214,0 +170761363896,214,0 +170761363945,214,0 +170761363993,214,0 +170761364043,214,0 +170761364092,214,0 +170761364142,214,0 +170761364190,216,0 +170761364237,216,0 +170761364287,216,0 +170761364337,217,0 +170761364385,217,0 +170761364434,218,0 +170761364483,218,0 +170761364531,218,0 +170761364579,219,0 +170761364627,219,0 +170761364675,219,0 +170761364723,215,0 +170761364771,214,0 +170761364819,214,0 +170761364869,215,0 +170761364917,215,0 +170761364964,216,0 +170761365014,216,0 +170761365063,217,0 +170761365111,217,0 +170761365159,217,0 +170761365209,218,0 +170761365257,218,0 +170761365305,219,0 +170761365353,219,0 +170761365402,219,0 +170761365450,219,0 +170761365500,219,0 +170761365548,219,0 +170761365596,219,0 +170761365644,214,0 +170761365691,213,0 +170761365739,213,0 +170761365789,214,0 +170761365837,214,0 +170761365885,215,0 +170761365932,216,0 +170761365980,216,0 +170761366028,216,0 +170761366076,217,0 +170761366124,218,0 +170761366172,218,0 +170761366219,218,0 +170761366267,218,0 +170761366315,219,0 +170761366365,219,0 +170761366412,219,0 +170761366462,219,0 +170761366510,218,0 +170761366558,214,0 +170761366605,214,0 +170761366653,215,0 +170761366701,215,0 +170761366749,216,0 +170761366797,216,0 +170761366845,216,0 +170761366893,217,0 +170761366941,217,0 +170761366988,218,0 +170761367036,218,0 +170761367084,219,0 +170761367132,219,0 +170761367180,220,0 +170761367228,220,0 +170761367275,220,0 +170761367323,221,0 +170761367371,220,0 +170761367419,220,0 +170761367467,215,0 +170761367515,214,0 +170761367563,214,0 +170761367610,215,0 +170761367658,216,0 +170761367706,216,0 +170761367754,216,0 +170761367802,217,0 +170761367850,217,0 +170761367898,217,0 +170761367946,218,0 +170761367994,218,0 +170761368042,218,0 +170761368090,219,0 +170761368138,218,0 +170761368186,219,0 +170761368234,218,0 +170761368282,219,0 +170761368331,218,0 +170761368379,214,0 +170761368428,214,0 +170761368476,214,0 +170761368526,214,0 +170761368574,214,0 +170761368622,214,0 +170761368670,215,0 +170761368719,216,0 +170761368767,216,0 +170761368815,216,0 +170761368863,217,0 +170761368913,217,0 +170761368961,217,0 +170761369008,218,0 +170761369058,218,0 +170761369107,218,0 +170761369157,218,0 +170761369206,219,0 +170761369254,215,0 +170761369302,214,0 +170761369352,214,0 +170761369401,214,0 +170761369449,214,0 +170761369499,214,0 +170761369548,215,0 +170761369598,215,0 +170761369646,216,0 +170761369694,216,0 +170761369742,217,0 +170761369790,217,0 +170761369838,217,0 +170761369885,218,0 +170761369935,218,0 +170761369983,218,0 +170761370031,218,0 +170761370079,218,0 +170761370127,219,0 +170761370175,215,0 +170761370223,214,0 +170761370271,214,0 +170761370320,214,0 +170761370368,215,0 +170761370418,215,0 +170761370466,215,0 +170761370514,216,0 +170761370561,216,0 +170761370609,217,0 +170761370657,217,0 +170761370707,217,0 +170761370756,217,0 +170761370806,218,0 +170761370854,218,0 +170761370902,218,0 +170761370950,218,0 +170761370998,218,0 +170761371047,219,0 +170761371095,215,0 +170761371143,214,0 +170761371191,215,0 +170761371239,215,0 +170761371287,215,0 +170761371335,216,0 +170761371384,216,0 +170761371432,217,0 +170761371480,218,0 +170761371528,218,0 +170761371578,217,0 +170761371626,219,0 +170761371675,219,0 +170761371723,219,0 +170761371771,219,0 +170761371819,221,0 +170761371869,220,0 +170761371918,220,0 +170761371968,218,0 +170761372017,216,0 +170761372065,216,0 +170761372115,216,0 +170761372163,217,0 +170761372211,217,0 +170761372260,217,0 +170761372308,218,0 +170761372356,219,0 +170761372404,221,0 +170761372452,220,0 +170761372500,219,0 +170761372549,219,0 +170761372597,219,0 +170761372645,220,0 +170761372695,220,0 +170761372743,220,0 +170761372791,220,0 +170761372839,219,0 +170761372887,219,0 +170761372935,217,0 +170761372982,217,0 +170761373032,217,0 +170761373080,218,0 +170761373128,218,0 +170761373176,218,0 +170761373224,218,0 +170761373273,219,0 +170761373321,220,0 +170761373369,220,0 +170761373419,220,0 +170761373468,221,0 +170761373518,220,0 +170761373566,220,0 +170761373615,220,0 +170761373663,220,0 +170761373711,219,0 +170761373761,219,0 +170761373809,216,0 +170761373857,217,0 +170761373905,216,0 +170761373953,217,0 +170761374002,218,0 +170761374050,217,0 +170761374099,218,0 +170761374147,220,0 +170761374195,220,0 +170761374243,219,0 +170761374291,219,0 +170761374339,221,0 +170761374387,221,0 +170761374435,220,0 +170761374482,220,0 +170761374530,220,0 +170761374578,220,0 +170761374626,220,0 +170761374674,219,0 +170761374723,215,0 +170761374771,215,0 +170761374819,215,0 +170761374867,216,0 +170761374915,216,0 +170761374963,217,0 +170761375010,217,0 +170761375058,218,0 +170761375106,219,0 +170761375154,219,0 +170761375204,219,0 +170761375252,221,0 +170761375301,220,0 +170761375349,220,0 +170761375397,219,0 +170761375446,220,0 +170761375494,220,0 +170761375542,220,0 +170761375590,219,0 +170761375638,215,0 +170761375688,215,0 +170761375737,215,0 +170761375787,216,0 +170761375836,216,0 +170761375886,217,0 +170761375935,217,0 +170761375983,217,0 +170761376031,218,0 +170761376081,218,0 +170761376129,218,0 +170761376178,219,0 +170761376226,219,0 +170761376274,219,0 +170761376324,219,0 +170761376373,220,0 +170761376421,220,0 +170761376469,220,0 +170761376518,219,0 +170761376566,215,0 +170761376614,215,0 +170761376662,215,0 +170761376710,215,0 +170761376758,216,0 +170761376806,217,0 +170761376854,217,0 +170761376901,218,0 +170761376949,218,0 +170761376997,219,0 +170761377045,219,0 +170761377093,219,0 +170761377142,219,0 +170761377191,220,0 +170761377238,220,0 +170761377288,220,0 +170761377336,219,0 +170761377384,220,0 +170761377432,219,0 +170761377481,215,0 +170761377529,214,0 +170761377577,215,0 +170761377625,215,0 +170761377673,216,0 +170761377721,216,0 +170761377769,216,0 +170761377818,217,0 +170761377868,218,0 +170761377917,218,0 +170761377965,218,0 +170761378013,219,0 +170761378063,219,0 +170761378111,220,0 +170761378158,220,0 +170761378206,221,0 +170761378254,221,0 +170761378302,220,0 +170761378350,219,0 +170761378398,215,0 +170761378446,215,0 +170761378494,215,0 +170761378542,216,0 +170761378590,216,0 +170761378638,217,0 +170761378686,218,0 +170761378734,218,0 +170761378782,218,0 +170761378831,219,0 +170761378879,219,0 +170761378927,220,0 +170761378977,220,0 +170761379025,220,0 +170761379073,220,0 +170761379122,220,0 +170761379170,220,0 +170761379220,220,0 +170761379267,220,0 +170761379315,214,0 +170761379363,214,0 +170761379413,214,0 +170761379461,215,0 +170761379509,215,0 +170761379557,215,0 +170761379606,216,0 +170761379654,216,0 +170761379702,217,0 +170761379750,217,0 +170761379799,217,0 +170761379847,218,0 +170761379895,218,0 +170761379943,218,0 +170761379991,219,0 +170761380040,219,0 +170761380090,219,0 +170761380139,219,0 +170761380187,219,0 +170761380235,214,0 +170761380283,214,0 +170761380333,214,0 +170761380381,214,0 +170761380430,215,0 +170761380480,215,0 +170761380527,215,0 +170761380577,215,0 +170761380626,216,0 +170761380674,216,0 +170761380722,221,0 +170761380770,217,0 +170761380818,217,0 +170761380866,218,0 +170761380914,219,0 +170761380964,219,0 +170761381011,219,0 +170761381059,219,0 +170761381107,216,0 +170761381157,214,0 +170761381205,214,0 +170761381254,214,0 +170761381302,214,0 +170761381352,215,0 +170761381400,215,0 +170761381448,216,0 +170761381497,216,0 +170761381545,215,0 +170761381593,216,0 +170761381641,217,0 +170761381689,217,0 +170761381739,217,0 +170761381788,217,0 +170761381836,218,0 +170761381884,219,0 +170761381932,219,0 +170761381980,218,0 +170761382028,214,0 +170761382076,214,0 +170761382124,214,0 +170761382173,214,0 +170761382221,214,0 +170761382269,214,0 +170761382318,215,0 +170761382368,216,0 +170761382417,216,0 +170761382467,215,0 +170761382516,217,0 +170761382564,217,0 +170761382612,217,0 +170761382660,218,0 +170761382708,218,0 +170761382758,219,0 +170761382806,219,0 +170761382854,219,0 +170761382902,219,0 +170761382950,214,0 +170761382998,214,0 +170761383047,214,0 +170761383095,214,0 +170761383143,214,0 +170761383191,215,0 +170761383241,215,0 +170761383289,216,0 +170761383338,216,0 +170761383388,217,0 +170761383436,217,0 +170761383484,217,0 +170761383533,218,0 +170761383583,219,0 +170761383632,219,0 +170761383682,219,0 +170761383731,219,0 +170761383779,219,0 +170761383827,219,0 +170761383875,214,0 +170761383923,214,0 +170761383972,214,0 +170761384020,215,0 +170761384070,215,0 +170761384119,216,0 +170761384169,216,0 +170761384218,216,0 +170761384268,217,0 +170761384317,218,0 +170761384365,218,0 +170761384413,218,0 +170761384461,219,0 +170761384509,219,0 +170761384557,219,0 +170761384605,219,0 +170761384654,219,0 +170761384702,219,0 +170761384750,217,0 +170761384798,214,0 +170761384846,214,0 +170761384894,214,0 +170761384943,215,0 +170761384991,215,0 +170761385041,216,0 +170761385089,216,0 +170761385137,217,0 +170761385186,218,0 +170761385234,218,0 +170761385282,218,0 +170761385332,219,0 +170761385380,219,0 +170761385428,219,0 +170761385476,219,0 +170761385524,219,0 +170761385571,220,0 +170761385619,219,0 +170761385667,215,0 +170761385715,214,0 +170761385763,215,0 +170761385811,215,0 +170761385858,216,0 +170761385906,216,0 +170761385954,216,0 +170761386002,216,0 +170761386050,217,0 +170761386098,217,0 +170761386146,217,0 +170761386194,218,0 +170761386241,219,0 +170761386291,219,0 +170761386339,219,0 +170761386386,219,0 +170761386434,220,0 +170761386482,220,0 +170761386532,219,0 +170761386580,215,0 +170761386629,214,0 +170761386679,214,0 +170761386727,215,0 +170761386776,215,0 +170761386824,215,0 +170761386873,216,0 +170761386921,216,0 +170761386969,216,0 +170761387017,217,0 +170761387065,217,0 +170761387113,218,0 +170761387161,218,0 +170761387209,219,0 +170761387258,218,0 +170761387306,219,0 +170761387356,219,0 +170761387405,220,0 +170761387453,219,0 +170761387501,215,0 +170761387549,214,0 +170761387597,215,0 +170761387645,215,0 +170761387695,215,0 +170761387744,216,0 +170761387794,216,0 +170761387842,216,0 +170761387891,217,0 +170761387939,217,0 +170761387987,218,0 +170761388035,218,0 +170761388085,218,0 +170761388132,220,0 +170761388182,219,0 +170761388230,220,0 +170761388278,220,0 +170761388326,219,0 +170761388374,219,0 +170761388422,215,0 +170761388471,214,0 +170761388519,215,0 +170761388567,216,0 +170761388615,215,0 +170761388665,215,0 +170761388713,215,0 +170761388762,216,0 +170761388810,217,0 +170761388859,216,0 +170761388909,217,0 +170761388957,218,0 +170761389005,218,0 +170761389053,218,0 +170761389101,218,0 +170761389149,219,0 +170761389196,220,0 +170761389246,219,0 +170761389295,219,0 +170761389343,215,0 +170761389393,215,0 +170761389441,215,0 +170761389490,216,0 +170761389538,216,0 +170761389586,217,0 +170761389634,217,0 +170761389682,217,0 +170761389730,217,0 +170761389777,217,0 +170761389825,218,0 +170761389873,219,0 +170761389921,218,0 +170761389969,219,0 +170761390016,220,0 +170761390064,219,0 +170761390112,220,0 +170761390162,220,0 +170761390209,219,0 +170761390257,216,0 +170761390305,215,0 +170761390353,216,0 +170761390401,217,0 +170761390449,217,0 +170761390497,218,0 +170761390544,219,0 +170761390592,218,0 +170761390640,219,0 +170761390690,218,0 +170761390739,220,0 +170761390787,219,0 +170761390837,219,0 +170761390885,220,0 +170761390933,220,0 +170761390981,220,0 +170761391028,220,0 +170761391076,220,0 +170761391126,219,0 +170761391174,215,0 +170761391223,215,0 +170761391273,216,0 +170761391321,217,0 +170761391369,217,0 +170761391417,217,0 +170761391465,218,0 +170761391514,218,0 +170761391562,219,0 +170761391610,219,0 +170761391658,220,0 +170761391706,220,0 +170761391754,221,0 +170761391802,220,0 +170761391850,220,0 +170761391898,220,0 +170761391946,220,0 +170761391994,219,0 +170761392042,216,0 +170761392090,214,0 +170761392138,214,0 +170761392188,215,0 +170761392235,215,0 +170761392283,216,0 +170761392331,216,0 +170761392381,217,0 +170761392430,217,0 +170761392480,218,0 +170761392528,218,0 +170761392576,219,0 +170761392623,219,0 +170761392671,220,0 +170761392721,220,0 +170761392769,220,0 +170761392817,220,0 +170761392866,220,0 +170761392916,219,0 +170761392963,215,0 +170761393011,214,0 +170761393059,214,0 +170761393107,215,0 +170761393155,216,0 +170761393203,215,0 +170761393251,216,0 +170761393299,216,0 +170761393347,216,0 +170761393397,217,0 +170761393445,218,0 +170761393493,218,0 +170761393541,218,0 +170761393589,218,0 +170761393637,219,0 +170761393686,219,0 +170761393736,220,0 +170761393784,220,0 +170761393833,220,0 +170761393881,215,0 +170761393931,214,0 +170761393979,214,0 +170761394027,215,0 +170761394076,216,0 +170761394124,216,0 +170761394174,216,0 +170761394221,217,0 +170761394271,217,0 +170761394320,217,0 +170761394368,217,0 +170761394416,218,0 +170761394464,219,0 +170761394513,218,0 +170761394561,218,0 +170761394609,219,0 +170761394657,219,0 +170761394705,219,0 +170761394755,219,0 +170761394803,215,0 +170761394851,215,0 +170761394899,214,0 +170761394948,215,0 +170761394996,215,0 +170761395044,215,0 +170761395092,216,0 +170761395141,216,0 +170761395189,216,0 +170761395239,216,0 +170761395288,217,0 +170761395336,219,0 +170761395384,218,0 +170761395432,220,0 +170761395480,219,0 +170761395529,219,0 +170761395577,220,0 +170761395625,220,0 +170761395673,219,0 +170761395723,215,0 +170761395771,214,0 +170761395819,214,0 +170761395868,215,0 +170761395918,215,0 +170761395967,216,0 +170761396015,216,0 +170761396063,216,0 +170761396113,217,0 +170761396161,217,0 +170761396209,218,0 +170761396257,219,0 +170761396306,219,0 +170761396354,219,0 +170761396402,219,0 +170761396450,219,0 +170761396498,219,0 +170761396546,219,0 +170761396594,219,0 +170761396641,219,0 +170761396691,214,0 +170761396739,214,0 +170761396787,215,0 +170761396835,215,0 +170761396884,216,0 +170761396934,216,0 +170761396982,217,0 +170761397030,217,0 +170761397078,218,0 +170761397125,218,0 +170761397175,218,0 +170761397224,219,0 +170761397274,218,0 +170761397322,219,0 +170761397370,220,0 +170761397417,219,0 +170761397465,220,0 +170761397513,220,0 +170761397563,219,0 +170761397611,215,0 +170761397659,214,0 +170761397707,214,0 +170761397755,214,0 +170761397804,215,0 +170761397852,216,0 +170761397902,216,0 +170761397950,217,0 +170761397998,217,0 +170761398047,217,0 +170761398095,218,0 +170761398143,218,0 +170761398191,219,0 +170761398239,219,0 +170761398289,219,0 +170761398336,219,0 +170761398384,220,0 +170761398434,219,0 +170761398482,219,0 +170761398532,218,0 +170761398579,214,0 +170761398627,214,0 +170761398675,214,0 +170761398723,214,0 +170761398773,215,0 +170761398822,215,0 +170761398870,215,0 +170761398920,215,0 +170761398968,216,0 +170761399016,216,0 +170761399064,219,0 +170761399113,218,0 +170761399161,219,0 +170761399209,218,0 +170761399257,218,0 +170761399305,219,0 +170761399353,218,0 +170761399400,220,0 +170761399448,219,0 +170761399496,214,0 +170761399545,214,0 +170761399593,214,0 +170761399641,214,0 +170761399690,214,0 +170761399738,214,0 +170761399786,215,0 +170761399834,215,0 +170761399882,215,0 +170761399930,216,0 +170761399978,216,0 +170761400025,216,0 +170761400073,217,0 +170761400121,217,0 +170761400169,218,0 +170761400217,218,0 +170761400264,218,0 +170761400312,218,0 +170761400360,219,0 +170761400408,217,0 +170761400456,214,0 +170761400504,214,0 +170761400552,214,0 +170761400599,214,0 +170761400647,214,0 +170761400695,214,0 +170761400743,215,0 +170761400791,215,0 +170761400839,215,0 +170761400887,216,0 +170761400935,217,0 +170761400983,217,0 +170761401032,218,0 +170761401080,219,0 +170761401128,218,0 +170761401176,217,0 +170761401224,218,0 +170761401272,219,0 +170761401320,219,0 +170761401368,215,0 +170761401416,214,0 +170761401465,214,0 +170761401513,214,0 +170761401561,214,0 +170761401609,214,0 +170761401656,215,0 +170761401704,215,0 +170761401752,215,0 +170761401800,216,0 +170761401847,217,0 +170761401895,217,0 +170761401943,217,0 +170761401991,218,0 +170761402039,218,0 +170761402087,219,0 +170761402134,219,0 +170761402184,219,0 +170761402233,219,0 +170761402283,217,0 +170761402331,214,0 +170761402380,214,0 +170761402428,214,0 +170761402476,214,0 +170761402524,215,0 +170761402571,215,0 +170761402619,215,0 +170761402667,216,0 +170761402715,216,0 +170761402763,216,0 +170761402811,216,0 +170761402859,217,0 +170761402908,217,0 +170761402956,218,0 +170761403004,218,0 +170761403052,219,0 +170761403099,218,0 +170761403147,219,0 +170761403195,219,0 +170761403243,215,0 +170761403291,214,0 +170761403339,215,0 +170761403386,216,0 +170761403434,216,0 +170761403482,216,0 +170761403531,216,0 +170761403579,217,0 +170761403627,217,0 +170761403675,217,0 +170761403723,218,0 +170761403771,219,0 +170761403818,219,0 +170761403866,219,0 +170761403916,219,0 +170761403963,219,0 +170761404011,219,0 +170761404059,220,0 +170761404107,219,0 +170761404155,219,0 +170761404203,216,0 +170761404252,216,0 +170761404301,217,0 +170761404350,217,0 +170761404398,217,0 +170761404445,217,0 +170761404495,218,0 +170761404543,218,0 +170761404590,219,0 +170761404640,219,0 +170761404688,219,0 +170761404737,219,0 +170761404785,220,0 +170761404833,220,0 +170761404880,220,0 +170761404928,220,0 +170761404976,220,0 +170761405024,219,0 +170761405072,219,0 +170761405122,216,0 +170761405169,216,0 +170761405217,216,0 +170761405267,216,0 +170761405315,217,0 +170761405363,217,0 +170761405410,218,0 +170761405458,218,0 +170761405506,218,0 +170761405554,218,0 +170761405602,219,0 +170761405651,219,0 +170761405699,220,0 +170761405747,220,0 +170761405795,220,0 +170761405843,221,0 +170761405890,220,0 +170761405938,227,0 +170761405986,220,0 +170761406034,218,0 +170761406081,215,0 +170761406129,215,0 +170761406177,216,0 +170761406225,216,0 +170761406274,216,0 +170761406322,216,0 +170761406370,216,0 +170761406420,217,0 +170761406468,217,0 +170761406516,218,0 +170761406564,218,0 +170761406611,219,0 +170761406661,220,0 +170761406709,220,0 +170761406756,220,0 +170761406804,222,0 +170761406852,221,0 +170761406900,220,0 +170761406947,219,0 +170761406995,214,0 +170761407043,214,0 +170761407091,214,0 +170761407139,214,0 +170761407187,215,0 +170761407236,215,0 +170761407284,215,0 +170761407332,216,0 +170761407381,216,0 +170761407429,216,0 +170761407476,216,0 +170761407524,217,0 +170761407572,218,0 +170761407620,218,0 +170761407668,218,0 +170761407715,218,0 +170761407763,218,0 +170761407811,218,0 +170761407859,219,0 +170761407907,219,0 +170761407954,213,0 +170761408002,213,0 +170761408050,213,0 +170761408098,213,0 +170761408146,214,0 +170761408193,214,0 +170761408241,214,0 +170761408289,214,0 +170761408337,214,0 +170761408385,214,0 +170761408432,214,0 +170761408482,215,0 +170761408531,216,0 +170761408581,216,0 +170761408629,217,0 +170761408678,216,0 +170761408726,217,0 +170761408774,221,0 +170761408822,219,0 +170761408871,215,0 +170761408919,214,0 +170761408967,214,0 +170761409015,215,0 +170761409063,215,0 +170761409111,215,0 +170761409159,216,0 +170761409206,216,0 +170761409254,216,0 +170761409304,216,0 +170761409353,216,0 +170761409401,217,0 +170761409449,217,0 +170761409499,218,0 +170761409548,218,0 +170761409596,218,0 +170761409646,218,0 +170761409694,219,0 +170761409742,220,0 +170761409790,219,0 +170761409838,214,0 +170761409886,214,0 +170761409933,215,0 +170761409983,215,0 +170761410031,215,0 +170761410080,215,0 +170761410130,215,0 +170761410178,217,0 +170761410227,216,0 +170761410275,217,0 +170761410323,217,0 +170761410371,218,0 +170761410419,219,0 +170761410467,219,0 +170761410515,220,0 +170761410563,220,0 +170761410611,219,0 +170761410658,219,0 +170761410706,219,0 +170761410756,214,0 +170761410804,214,0 +170761410853,214,0 +170761410903,215,0 +170761410951,215,0 +170761410999,215,0 +170761411046,216,0 +170761411094,216,0 +170761411142,217,0 +170761411190,217,0 +170761411238,217,0 +170761411287,218,0 +170761411335,219,0 +170761411383,219,0 +170761411431,219,0 +170761411479,220,0 +170761411526,219,0 +170761411574,220,0 +170761411624,220,0 +170761411672,215,0 +170761411719,214,0 +170761411769,215,0 +170761411817,215,0 +170761411865,215,0 +170761411913,216,0 +170761411961,216,0 +170761412009,216,0 +170761412057,217,0 +170761412105,217,0 +170761412152,218,0 +170761412202,219,0 +170761412251,219,0 +170761412299,219,0 +170761412347,220,0 +170761412395,220,0 +170761412443,220,0 +170761412492,220,0 +170761412540,220,0 +170761412588,219,0 +170761412636,214,0 +170761412684,214,0 +170761412732,215,0 +170761412780,215,0 +170761412827,216,0 +170761412877,216,0 +170761412925,217,0 +170761412973,217,0 +170761413022,217,0 +170761413072,215,0 +170761413121,217,0 +170761413171,219,0 +170761413219,219,0 +170761413267,219,0 +170761413315,220,0 +170761413362,219,0 +170761413412,220,0 +170761413460,219,0 +170761413508,219,0 +170761413557,215,0 +170761413605,215,0 +170761413653,215,0 +170761413701,215,0 +170761413751,216,0 +170761413798,216,0 +170761413846,217,0 +170761413894,217,0 +170761413942,217,0 +170761413990,217,0 +170761414038,218,0 +170761414085,218,0 +170761414133,218,0 +170761414183,219,0 +170761414230,219,0 +170761414278,220,0 +170761414326,220,0 +170761414374,220,0 +170761414423,220,0 +170761414471,218,0 +170761414519,214,0 +170761414567,214,0 +170761414614,214,0 +170761414664,215,0 +170761414712,215,0 +170761414759,216,0 +170761414807,216,0 +170761414855,216,0 +170761414903,217,0 +170761414951,217,0 +170761414998,217,0 +170761415046,218,0 +170761415094,218,0 +170761415142,219,0 +170761415190,218,0 +170761415238,219,0 +170761415285,219,0 +170761415333,220,0 +170761415381,219,0 +170761415429,215,0 +170761415477,214,0 +170761415524,214,0 +170761415572,214,0 +170761415620,215,0 +170761415668,215,0 +170761415715,215,0 +170761415763,216,0 +170761415813,215,0 +170761415860,216,0 +170761415908,217,0 +170761415956,217,0 +170761416004,218,0 +170761416052,218,0 +170761416099,218,0 +170761416147,218,0 +170761416195,218,0 +170761416243,218,0 +170761416291,219,0 +170761416339,219,0 +170761416388,221,0 +170761416436,221,0 +170761416484,220,0 +170761416531,219,0 +170761416579,220,0 +170761416627,213,0 +170761416676,213,0 +170761416724,214,0 +170761416772,214,0 +170761416820,214,0 +170761416868,214,0 +170761416917,214,0 +170761416965,214,0 +170761417013,214,0 +170761417061,215,0 +170761417108,215,0 +170761417156,216,0 +170761417204,217,0 +170761417253,219,0 +170761417303,215,0 +170761417351,214,0 +170761417398,214,0 +170761417446,214,0 +170761417494,214,0 +170761417542,214,0 +170761417591,214,0 +170761417639,215,0 +170761417687,215,0 +170761417735,216,0 +170761417783,216,0 +170761417830,217,0 +170761417878,217,0 +170761417926,217,0 +170761417974,218,0 +170761418021,218,0 +170761418069,218,0 +170761418117,218,0 +170761418165,219,0 +170761418213,219,0 +170761418261,214,0 +170761418308,214,0 +170761418356,214,0 +170761418404,214,0 +170761418452,215,0 +170761418500,215,0 +170761418548,215,0 +170761418596,216,0 +170761418643,216,0 +170761418691,217,0 +170761418739,217,0 +170761418787,217,0 +170761418835,217,0 +170761418883,218,0 +170761418931,218,0 +170761418980,219,0 +170761419028,219,0 +170761419076,218,0 +170761419124,219,0 +170761419171,215,0 +170761419219,214,0 +170761419267,215,0 +170761419315,214,0 +170761419363,216,0 +170761419410,215,0 +170761419458,216,0 +170761419506,216,0 +170761419554,216,0 +170761419602,217,0 +170761419650,217,0 +170761419699,218,0 +170761419747,218,0 +170761419795,219,0 +170761419844,219,0 +170761419894,219,0 +170761419943,220,0 +170761419991,219,0 +170761420039,220,0 +170761420087,216,0 +170761420137,215,0 +170761420184,215,0 +170761420232,215,0 +170761420280,217,0 +170761420328,217,0 +170761420376,217,0 +170761420423,218,0 +170761420471,218,0 +170761420519,219,0 +170761420567,219,0 +170761420615,219,0 +170761420662,220,0 +170761420710,219,0 +170761420758,220,0 +170761420806,221,0 +170761420853,220,0 +170761420901,220,0 +170761420949,219,0 +170761420997,219,0 +170761421045,216,0 +170761421094,215,0 +170761421142,216,0 +170761421190,216,0 +170761421237,217,0 +170761421285,217,0 +170761421333,218,0 +170761421381,218,0 +170761421431,218,0 +170761421478,219,0 +170761421526,219,0 +170761421574,220,0 +170761421622,221,0 +170761421670,220,0 +170761421719,220,0 +170761421767,221,0 +170761421815,221,0 +170761421864,223,0 +170761421912,219,0 +170761421960,218,0 +170761422007,215,0 +170761422055,215,0 +170761422103,216,0 +170761422151,216,0 +170761422199,216,0 +170761422247,217,0 +170761422295,217,0 +170761422343,218,0 +170761422390,218,0 +170761422438,218,0 +170761422486,218,0 +170761422534,217,0 +170761422582,219,0 +170761422630,220,0 +170761422677,219,0 +170761422725,219,0 +170761422773,220,0 +170761422821,220,0 +170761422869,219,0 +170761422918,215,0 +170761422966,214,0 +170761423014,214,0 +170761423062,215,0 +170761423109,215,0 +170761423157,215,0 +170761423205,216,0 +170761423253,216,0 +170761423301,217,0 +170761423349,217,0 +170761423396,218,0 +170761423444,218,0 +170761423492,218,0 +170761423540,218,0 +170761423588,219,0 +170761423635,219,0 +170761423683,219,0 +170761423731,218,0 +170761423779,220,0 +170761423826,218,0 +170761423874,214,0 +170761423922,214,0 +170761423970,214,0 +170761424018,214,0 +170761424066,215,0 +170761424115,215,0 +170761424163,216,0 +170761424211,216,0 +170761424260,217,0 +170761424310,217,0 +170761424358,218,0 +170761424406,218,0 +170761424453,219,0 +170761424501,219,0 +170761424549,219,0 +170761424597,219,0 +170761424645,220,0 +170761424693,219,0 +170761424742,219,0 +170761424790,215,0 +170761424838,214,0 +170761424886,214,0 +170761424934,214,0 +170761424981,215,0 +170761425029,215,0 +170761425077,216,0 +170761425125,216,0 +170761425173,217,0 +170761425221,217,0 +170761425269,217,0 +170761425318,218,0 +170761425367,218,0 +170761425415,219,0 +170761425465,219,0 +170761425512,218,0 +170761425560,219,0 +170761425608,219,0 +170761425656,219,0 +170761425704,216,0 +170761425751,214,0 +170761425799,214,0 +170761425847,214,0 +170761425895,215,0 +170761425943,215,0 +170761425990,215,0 +170761426038,216,0 +170761426086,217,0 +170761426134,217,0 +170761426182,217,0 +170761426230,218,0 +170761426277,218,0 +170761426325,219,0 +170761426373,219,0 +170761426421,219,0 +170761426469,219,0 +170761426517,219,0 +170761426564,219,0 +170761426612,219,0 +170761426662,214,0 +170761426709,214,0 +170761426757,214,0 +170761426805,214,0 +170761426853,215,0 +170761426900,215,0 +170761426948,216,0 +170761426996,215,0 +170761427044,217,0 +170761427092,218,0 +170761427139,218,0 +170761427187,218,0 +170761427235,218,0 +170761427283,218,0 +170761427331,219,0 +170761427379,219,0 +170761427426,220,0 +170761427474,219,0 +170761427522,219,0 +170761427570,216,0 +170761427617,214,0 +170761427665,214,0 +170761427713,214,0 +170761427761,214,0 +170761427809,214,0 +170761427857,215,0 +170761427904,215,0 +170761427952,216,0 +170761428000,216,0 +170761428048,217,0 +170761428095,217,0 +170761428143,217,0 +170761428191,218,0 +170761428239,218,0 +170761428287,219,0 +170761428335,218,0 +170761428384,219,0 +170761428432,219,0 +170761428481,219,0 +170761428529,215,0 +170761428578,214,0 +170761428626,214,0 +170761428674,214,0 +170761428722,214,0 +170761428770,215,0 +170761428818,215,0 +170761428865,215,0 +170761428913,216,0 +170761428961,217,0 +170761429009,217,0 +170761429058,218,0 +170761429106,218,0 +170761429154,218,0 +170761429203,218,0 +170761429251,219,0 +170761429299,219,0 +170761429347,219,0 +170761429395,219,0 +170761429442,219,0 +170761429492,214,0 +170761429540,215,0 +170761429588,215,0 +170761429636,215,0 +170761429684,215,0 +170761429731,215,0 +170761429781,215,0 +170761429829,216,0 +170761429877,216,0 +170761429925,216,0 +170761429974,217,0 +170761430024,218,0 +170761430072,218,0 +170761430120,219,0 +170761430167,218,0 +170761430217,219,0 +170761430265,219,0 +170761430313,219,0 +170761430360,219,0 +170761430408,215,0 +170761430458,214,0 +170761430506,214,0 +170761430555,215,0 +170761430603,215,0 +170761430653,215,0 +170761430700,216,0 +170761430748,216,0 +170761430796,216,0 +170761430844,217,0 +170761430892,218,0 +170761430939,218,0 +170761430987,218,0 +170761431035,218,0 +170761431084,218,0 +170761431134,219,0 +170761431181,219,0 +170761431229,219,0 +170761431277,219,0 +170761431325,215,0 +170761431373,214,0 +170761431420,214,0 +170761431468,215,0 +170761431516,215,0 +170761431564,215,0 +170761431612,218,0 +170761431660,216,0 +170761431708,216,0 +170761431755,216,0 +170761431805,217,0 +170761431853,218,0 +170761431901,217,0 +170761431950,220,0 +170761431998,219,0 +170761432046,220,0 +170761432093,220,0 +170761432141,220,0 +170761432191,219,0 +170761432238,219,0 +170761432286,215,0 +170761432334,214,0 +170761432382,215,0 +170761432430,215,0 +170761432478,216,0 +170761432525,216,0 +170761432573,216,0 +170761432621,217,0 +170761432669,217,0 +170761432717,218,0 +170761432765,218,0 +170761432812,219,0 +170761432860,219,0 +170761432908,219,0 +170761432956,220,0 +170761433005,220,0 +170761433053,220,0 +170761433101,220,0 +170761433149,219,0 +170761433196,215,0 +170761433244,214,0 +170761433292,214,0 +170761433340,215,0 +170761433388,215,0 +170761433435,215,0 +170761433483,216,0 +170761433532,216,0 +170761433582,216,0 +170761433630,217,0 +170761433677,218,0 +170761433725,218,0 +170761433773,219,0 +170761433821,219,0 +170761433869,219,0 +170761433917,219,0 +170761433964,219,0 +170761434012,219,0 +170761434060,219,0 +170761434109,218,0 +170761434157,214,0 +170761434205,214,0 +170761434253,214,0 +170761434301,215,0 +170761434350,215,0 +170761434398,216,0 +170761434446,216,0 +170761434494,216,0 +170761434542,217,0 +170761434590,218,0 +170761434637,217,0 +170761434687,218,0 +170761434735,219,0 +170761434783,219,0 +170761434832,218,0 +170761434880,219,0 +170761434929,221,0 +170761434977,219,0 +170761435025,219,0 +170761435073,215,0 +170761435121,214,0 +170761435169,214,0 +170761435217,215,0 +170761435266,215,0 +170761435314,216,0 +170761435364,216,0 +170761435413,217,0 +170761435461,217,0 +170761435509,217,0 +170761435556,217,0 +170761435604,218,0 +170761435652,218,0 +170761435700,218,0 +170761435748,218,0 +170761435795,218,0 +170761435843,219,0 +170761435891,220,0 +170761435939,219,0 +170761435987,219,0 +170761436035,214,0 +170761436082,214,0 +170761436130,214,0 +170761436179,214,0 +170761436227,215,0 +170761436275,215,0 +170761436323,215,0 +170761436371,216,0 +170761436418,216,0 +170761436466,217,0 +170761436514,217,0 +170761436562,217,0 +170761436610,218,0 +170761436658,218,0 +170761436705,218,0 +170761436753,219,0 +170761436801,219,0 +170761436849,219,0 +170761436896,219,0 +170761436944,215,0 +170761436992,214,0 +170761437040,215,0 +170761437088,215,0 +170761437137,216,0 +170761437185,216,0 +170761437233,216,0 +170761437281,217,0 +170761437328,217,0 +170761437376,217,0 +170761437424,218,0 +170761437472,218,0 +170761437520,219,0 +170761437568,219,0 +170761437615,221,0 +170761437663,219,0 +170761437711,220,0 +170761437759,220,0 +170761437806,220,0 +170761437854,219,0 +170761437902,214,0 +170761437950,215,0 +170761437997,215,0 +170761438045,215,0 +170761438095,216,0 +170761438142,216,0 +170761438192,216,0 +170761438240,217,0 +170761438288,217,0 +170761438336,217,0 +170761438384,218,0 +170761438431,219,0 +170761438479,219,0 +170761438527,219,0 +170761438575,219,0 +170761438623,220,0 +170761438671,219,0 +170761438718,220,0 +170761438766,220,0 +170761438816,215,0 +170761438865,214,0 +170761438913,214,0 +170761438961,215,0 +170761439008,216,0 +170761439056,216,0 +170761439104,216,0 +170761439152,216,0 +170761439201,218,0 +170761439249,217,0 +170761439297,218,0 +170761439346,218,0 +170761439394,219,0 +170761439442,219,0 +170761439490,220,0 +170761439539,221,0 +170761439588,220,0 +170761439636,220,0 +170761439684,219,0 +170761439732,216,0 +170761439780,214,0 +170761439828,214,0 +170761439875,214,0 +170761439923,215,0 +170761439971,216,0 +170761440020,216,0 +170761440068,216,0 +170761440118,217,0 +170761440167,217,0 +170761440215,217,0 +170761440263,218,0 +170761440310,219,0 +170761440360,219,0 +170761440408,218,0 +170761440457,217,0 +170761440505,217,0 +170761440553,217,0 +170761440601,219,0 +170761440649,219,0 +170761440698,214,0 +170761440746,213,0 +170761440794,213,0 +170761440842,214,0 +170761440891,214,0 +170761440939,214,0 +170761440987,214,0 +170761441035,215,0 +170761441083,214,0 +170761441131,214,0 +170761441180,215,0 +170761441228,215,0 +170761441276,215,0 +170761441326,215,0 +170761441375,216,0 +170761441425,217,0 +170761441472,217,0 +170761441520,217,0 +170761441568,219,0 +170761441618,215,0 +170761441666,214,0 +170761441715,214,0 +170761441763,214,0 +170761441811,214,0 +170761441859,214,0 +170761441908,214,0 +170761441956,215,0 +170761442006,215,0 +170761442054,215,0 +170761442103,215,0 +170761442151,216,0 +170761442199,216,0 +170761442247,216,0 +170761442295,216,0 +170761442344,217,0 +170761442392,217,0 +170761442440,219,0 +170761442488,217,0 +170761442536,219,0 +170761442584,219,0 +170761442632,220,0 +170761442680,219,0 +170761442729,220,0 +170761442777,220,0 +170761442825,220,0 +170761442873,220,0 +170761442922,220,0 +170761442970,219,0 +170761443020,215,0 +170761443069,213,0 +170761443117,214,0 +170761443166,214,0 +170761443216,215,0 +170761443264,215,0 +170761443313,215,0 +170761443361,216,0 +170761443409,216,0 +170761443457,216,0 +170761443507,217,0 +170761443556,219,0 +170761443604,217,0 +170761443652,218,0 +170761443700,218,0 +170761443748,219,0 +170761443797,219,0 +170761443845,219,0 +170761443894,219,0 +170761443942,215,0 +170761443992,214,0 +170761444040,214,0 +170761444088,214,0 +170761444136,215,0 +170761444184,215,0 +170761444231,215,0 +170761444279,216,0 +170761444329,216,0 +170761444378,217,0 +170761444426,217,0 +170761444476,218,0 +170761444525,218,0 +170761444575,219,0 +170761444623,219,0 +170761444670,219,0 +170761444718,219,0 +170761444766,219,0 +170761444814,220,0 +170761444862,219,0 +170761444910,214,0 +170761444958,214,0 +170761445006,214,0 +170761445053,214,0 +170761445101,214,0 +170761445149,215,0 +170761445197,215,0 +170761445245,215,0 +170761445293,215,0 +170761445341,216,0 +170761445388,216,0 +170761445436,217,0 +170761445484,218,0 +170761445532,218,0 +170761445580,218,0 +170761445628,218,0 +170761445676,218,0 +170761445725,219,0 +170761445773,219,0 +170761445821,215,0 +170761445870,214,0 +170761445918,214,0 +170761445966,214,0 +170761446016,214,0 +170761446064,214,0 +170761446113,215,0 +170761446161,215,0 +170761446209,216,0 +170761446257,216,0 +170761446305,216,0 +170761446353,217,0 +170761446401,217,0 +170761446449,218,0 +170761446498,218,0 +170761446548,219,0 +170761446596,219,0 +170761446644,219,0 +170761446691,220,0 +170761446741,215,0 +170761446790,214,0 +170761446838,215,0 +170761446886,216,0 +170761446936,216,0 +170761446985,216,0 +170761447035,217,0 +170761447084,217,0 +170761447132,218,0 +170761447180,218,0 +170761447228,219,0 +170761447277,219,0 +170761447325,220,0 +170761447373,221,0 +170761447421,220,0 +170761447469,220,0 +170761447517,220,0 +170761447565,220,0 +170761447613,219,0 +170761447662,216,0 +170761447712,214,0 +170761447760,214,0 +170761447809,215,0 +170761447857,216,0 +170761447905,216,0 +170761447953,217,0 +170761448001,217,0 +170761448049,217,0 +170761448098,217,0 +170761448146,218,0 +170761448194,219,0 +170761448242,219,0 +170761448290,219,0 +170761448338,220,0 +170761448388,219,0 +170761448436,220,0 +170761448483,219,0 +170761448533,220,0 +170761448581,219,0 +170761448630,215,0 +170761448680,214,0 +170761448728,214,0 +170761448777,215,0 +170761448827,215,0 +170761448876,216,0 +170761448924,216,0 +170761448972,216,0 +170761449020,217,0 +170761449069,217,0 +170761449117,218,0 +170761449167,218,0 +170761449215,219,0 +170761449264,219,0 +170761449312,218,0 +170761449360,220,0 +170761449408,219,0 +170761449456,219,0 +170761449504,219,0 +170761449552,215,0 +170761449599,214,0 +170761449647,214,0 +170761449695,215,0 +170761449743,215,0 +170761449791,216,0 +170761449839,216,0 +170761449889,216,0 +170761449936,216,0 +170761449984,217,0 +170761450032,217,0 +170761450082,218,0 +170761450131,219,0 +170761450179,219,0 +170761450227,219,0 +170761450275,219,0 +170761450323,220,0 +170761450372,219,0 +170761450422,220,0 +170761450470,215,0 +170761450518,214,0 +170761450566,214,0 +170761450614,214,0 +170761450661,215,0 +170761450709,215,0 +170761450757,215,0 +170761450805,216,0 +170761450853,216,0 +170761450900,216,0 +170761450948,217,0 +170761450996,217,0 +170761451044,217,0 +170761451092,218,0 +170761451141,218,0 +170761451189,219,0 +170761451237,219,0 +170761451285,219,0 +170761451333,219,0 +170761451382,219,0 +170761451430,215,0 +170761451478,215,0 +170761451526,215,0 +170761451574,215,0 +170761451623,215,0 +170761451672,216,0 +170761451720,216,0 +170761451768,216,0 +170761451816,216,0 +170761451866,216,0 +170761451914,217,0 +170761451962,218,0 +170761452010,217,0 +170761452059,217,0 +170761452107,218,0 +170761452155,218,0 +170761452203,219,0 +170761452251,219,0 +170761452299,219,0 +170761452348,216,0 +170761452396,215,0 +170761452446,216,0 +170761452494,216,0 +170761452543,217,0 +170761452592,217,0 +170761452640,217,0 +170761452688,218,0 +170761452736,218,0 +170761452786,219,0 +170761452835,218,0 +170761452883,219,0 +170761452931,220,0 +170761452981,221,0 +170761453029,220,0 +170761453078,220,0 +170761453126,220,0 +170761453174,219,0 +170761453222,219,0 +170761453270,216,0 +170761453318,216,0 +170761453366,216,0 +170761453414,216,0 +170761453462,217,0 +170761453510,218,0 +170761453557,218,0 +170761453607,218,0 +170761453655,219,0 +170761453703,220,0 +170761453751,219,0 +170761453799,220,0 +170761453847,221,0 +170761453895,220,0 +170761453942,219,0 +170761453990,220,0 +170761454038,220,0 +170761454086,220,0 +170761454134,219,0 +170761454182,219,0 +170761454229,216,0 +170761454277,217,0 +170761454325,217,0 +170761454373,218,0 +170761454421,218,0 +170761454469,219,0 +170761454517,218,0 +170761454566,218,0 +170761454614,220,0 +170761454662,219,0 +170761454710,220,0 +170761454760,221,0 +170761454808,220,0 +170761454857,219,0 +170761454907,220,0 +170761454955,220,0 +170761455002,220,0 +170761455052,219,0 +170761455101,219,0 +170761455149,216,0 +170761455197,215,0 +170761455247,216,0 +170761455295,216,0 +170761455344,216,0 +170761455392,217,0 +170761455440,217,0 +170761455488,217,0 +170761455536,218,0 +170761455584,218,0 +170761455632,219,0 +170761455680,219,0 +170761455727,219,0 +170761455777,220,0 +170761455827,220,0 +170761455876,220,0 +170761455926,220,0 +170761455973,220,0 +170761456023,220,0 +170761456071,218,0 +170761456119,214,0 +170761456168,214,0 +170761456216,215,0 +170761456264,216,0 +170761456313,216,0 +170761456363,216,0 +170761456412,216,0 +170761456460,217,0 +170761456508,218,0 +170761456556,217,0 +170761456606,219,0 +170761456654,219,0 +170761456702,219,0 +170761456751,220,0 +170761456799,220,0 +170761456847,219,0 +170761456895,219,0 +170761456943,219,0 +170761456991,219,0 +170761457038,214,0 +170761457086,214,0 +170761457134,215,0 +170761457182,215,0 +170761457229,215,0 +170761457277,216,0 +170761457327,216,0 +170761457375,217,0 +170761457424,217,0 +170761457474,217,0 +170761457523,218,0 +170761457573,219,0 +170761457622,218,0 +170761457670,220,0 +170761457718,219,0 +170761457766,219,0 +170761457815,218,0 +170761457863,219,0 +170761457911,222,0 +170761457961,214,0 +170761458009,214,0 +170761458058,214,0 +170761458106,215,0 +170761458154,215,0 +170761458202,216,0 +170761458250,216,0 +170761458298,216,0 +170761458346,217,0 +170761458395,217,0 +170761458445,217,0 +170761458494,217,0 +170761458542,218,0 +170761458590,218,0 +170761458638,219,0 +170761458686,219,0 +170761458734,219,0 +170761458782,218,0 +170761458830,220,0 +170761458878,215,0 +170761458926,214,0 +170761458975,214,0 +170761459023,214,0 +170761459071,214,0 +170761459121,214,0 +170761459169,215,0 +170761459217,215,0 +170761459264,215,0 +170761459314,216,0 +170761459362,216,0 +170761459410,217,0 +170761459458,217,0 +170761459506,217,0 +170761459555,218,0 +170761459603,219,0 +170761459651,218,0 +170761459701,218,0 +170761459750,220,0 +170761459800,215,0 +170761459847,214,0 +170761459895,214,0 +170761459943,214,0 +170761459991,214,0 +170761460039,214,0 +170761460086,215,0 +170761460134,215,0 +170761460182,215,0 +170761460230,216,0 +170761460278,217,0 +170761460326,217,0 +170761460375,217,0 +170761460423,218,0 +170761460471,218,0 +170761460519,219,0 +170761460568,219,0 +170761460616,219,0 +170761460665,219,0 +170761460713,219,0 +170761460761,214,0 +170761460808,214,0 +170761460856,214,0 +170761460904,214,0 +170761460952,215,0 +170761461000,215,0 +170761461047,215,0 +170761461095,216,0 +170761461143,216,0 +170761461191,217,0 +170761461239,217,0 +170761461286,217,0 +170761461334,219,0 +170761461382,218,0 +170761461430,219,0 +170761461478,219,0 +170761461527,219,0 +170761461575,219,0 +170761461623,219,0 +170761461671,215,0 +170761461718,214,0 +170761461766,214,0 +170761461814,214,0 +170761461862,214,0 +170761461912,214,0 +170761461960,214,0 +170761462007,215,0 +170761462057,214,0 +170761462106,215,0 +170761462154,215,0 +170761462202,215,0 +170761462250,216,0 +170761462300,217,0 +170761462348,218,0 +170761462396,217,0 +170761462445,218,0 +170761462493,218,0 +170761462543,219,0 +170761462591,219,0 +170761462638,214,0 +170761462686,214,0 +170761462734,214,0 +170761462782,214,0 +170761462830,214,0 +170761462878,214,0 +170761462926,214,0 +170761462974,214,0 +170761463022,215,0 +170761463070,215,0 +170761463118,215,0 +170761463167,215,0 +170761463215,216,0 +170761463263,217,0 +170761463312,217,0 +170761463362,218,0 +170761463411,218,0 +170761463459,219,0 +170761463509,219,0 +170761463558,214,0 +170761463608,214,0 +170761463656,214,0 +170761463704,214,0 +170761463753,214,0 +170761463803,215,0 +170761463850,214,0 +170761463898,215,0 +170761463946,215,0 +170761463994,215,0 +170761464044,215,0 +170761464093,217,0 +170761464141,216,0 +170761464189,218,0 +170761464237,218,0 +170761464286,218,0 +170761464336,218,0 +170761464384,219,0 +170761464433,219,0 +170761464481,214,0 +170761464529,214,0 +170761464579,214,0 +170761464627,214,0 +170761464675,215,0 +170761464722,215,0 +170761464772,215,0 +170761464822,216,0 +170761464871,216,0 +170761464921,217,0 +170761464968,217,0 +170761465016,217,0 +170761465064,218,0 +170761465112,218,0 +170761465160,219,0 +170761465208,219,0 +170761465256,219,0 +170761465304,219,0 +170761465352,219,0 +170761465401,215,0 +170761465451,214,0 +170761465498,214,0 +170761465546,214,0 +170761465594,214,0 +170761465642,215,0 +170761465690,215,0 +170761465738,215,0 +170761465786,216,0 +170761465834,216,0 +170761465882,217,0 +170761465930,217,0 +170761465978,218,0 +170761466026,218,0 +170761466075,219,0 +170761466123,219,0 +170761466173,219,0 +170761466222,219,0 +170761466270,219,0 +170761466318,216,0 +170761466366,214,0 +170761466414,214,0 +170761466462,214,0 +170761466509,214,0 +170761466557,215,0 +170761466605,215,0 +170761466653,216,0 +170761466703,216,0 +170761466752,216,0 +170761466800,217,0 +170761466848,217,0 +170761466897,218,0 +170761466945,218,0 +170761466993,219,0 +170761467043,219,0 +170761467091,219,0 +170761467139,220,0 +170761467187,220,0 +170761467236,219,0 +170761467284,214,0 +170761467332,214,0 +170761467380,215,0 +170761467428,215,0 +170761467476,216,0 +170761467524,216,0 +170761467573,217,0 +170761467621,217,0 +170761467671,218,0 +170761467719,218,0 +170761467768,219,0 +170761467816,219,0 +170761467864,219,0 +170761467913,220,0 +170761467963,220,0 +170761468011,220,0 +170761468059,220,0 +170761468107,219,0 +170761468155,219,0 +170761468204,215,0 +170761468252,215,0 +170761468300,215,0 +170761468349,216,0 +170761468397,216,0 +170761468445,217,0 +170761468495,218,0 +170761468544,218,0 +170761468595,218,0 +170761468642,219,0 +170761468690,219,0 +170761468740,219,0 +170761468788,219,0 +170761468837,219,0 +170761468887,219,0 +170761468934,219,0 +170761468982,219,0 +170761469032,219,0 +170761469080,215,0 +170761469128,214,0 +170761469176,215,0 +170761469224,215,0 +170761469272,216,0 +170761469321,216,0 +170761469369,217,0 +170761469419,217,0 +170761469468,216,0 +170761469516,217,0 +170761469565,217,0 +170761469613,218,0 +170761469663,218,0 +170761469711,218,0 +170761469759,219,0 +170761469807,219,0 +170761469856,219,0 +170761469904,219,0 +170761469952,219,0 +170761470000,215,0 +170761470048,214,0 +170761470095,214,0 +170761470143,214,0 +170761470191,215,0 +170761470239,216,0 +170761470289,216,0 +170761470337,216,0 +170761470386,217,0 +170761470434,217,0 +170761470483,218,0 +170761470531,218,0 +170761470581,218,0 +170761470630,218,0 +170761470678,219,0 +170761470728,218,0 +170761470776,219,0 +170761470824,220,0 +170761470873,219,0 +170761470923,214,0 +170761470972,214,0 +170761471020,215,0 +170761471070,215,0 +170761471118,215,0 +170761471167,216,0 +170761471215,216,0 +170761471263,216,0 +170761471313,217,0 +170761471360,217,0 +170761471408,218,0 +170761471456,218,0 +170761471504,218,0 +170761471552,219,0 +170761471600,219,0 +170761471648,219,0 +170761471698,220,0 +170761471747,220,0 +170761471795,219,0 +170761471843,215,0 +170761471893,215,0 +170761471941,216,0 +170761471989,216,0 +170761472038,217,0 +170761472088,217,0 +170761472135,217,0 +170761472183,217,0 +170761472231,217,0 +170761472279,218,0 +170761472327,218,0 +170761472375,219,0 +170761472424,218,0 +170761472472,218,0 +170761472520,218,0 +170761472568,217,0 +170761472615,220,0 +170761472663,220,0 +170761472711,219,0 +170761472759,215,0 +170761472807,215,0 +170761472855,216,0 +170761472903,216,0 +170761472950,216,0 +170761472998,217,0 +170761473046,217,0 +170761473094,217,0 +170761473142,217,0 +170761473190,218,0 +170761473238,219,0 +170761473285,219,0 +170761473333,219,0 +170761473381,219,0 +170761473429,218,0 +170761473477,215,0 +170761473525,214,0 +170761473573,214,0 +170761473620,214,0 +170761473670,214,0 +170761473718,215,0 +170761473767,215,0 +170761473815,216,0 +170761473863,217,0 +170761473911,217,0 +170761473959,217,0 +170761474007,217,0 +170761474055,217,0 +170761474103,219,0 +170761474152,219,0 +170761474200,219,0 +170761474248,219,0 +170761474298,219,0 +170761474347,220,0 +170761474395,219,0 +170761474445,220,0 +170761474494,220,0 +170761474542,218,0 +170761474590,216,0 +170761474640,217,0 +170761474687,217,0 +170761474735,217,0 +170761474783,217,0 +170761474831,218,0 +170761474879,218,0 +170761474928,219,0 +170761474976,219,0 +170761475024,219,0 +170761475072,220,0 +170761475120,220,0 +170761475168,220,0 +170761475216,220,0 +170761475264,220,0 +170761475312,220,0 +170761475361,220,0 +170761475409,220,0 +170761475457,215,0 +170761475505,215,0 +170761475553,216,0 +170761475601,216,0 +170761475650,218,0 +170761475698,218,0 +170761475746,217,0 +170761475794,218,0 +170761475842,217,0 +170761475892,218,0 +170761475941,219,0 +170761475991,219,0 +170761476039,220,0 +170761476088,220,0 +170761476136,220,0 +170761476184,220,0 +170761476232,220,0 +170761476280,220,0 +170761476327,219,0 +170761476377,215,0 +170761476425,214,0 +170761476472,215,0 +170761476520,215,0 +170761476568,216,0 +170761476616,216,0 +170761476664,216,0 +170761476712,217,0 +170761476760,218,0 +170761476809,217,0 +170761476857,218,0 +170761476907,218,0 +170761476955,219,0 +170761477002,219,0 +170761477052,219,0 +170761477101,219,0 +170761477149,219,0 +170761477197,219,0 +170761477245,219,0 +170761477293,214,0 +170761477341,214,0 +170761477389,214,0 +170761477436,215,0 +170761477484,215,0 +170761477532,215,0 +170761477580,215,0 +170761477628,216,0 +170761477676,216,0 +170761477723,216,0 +170761477771,217,0 +170761477819,218,0 +170761477867,218,0 +170761477915,218,0 +170761477963,219,0 +170761478011,218,0 +170761478058,219,0 +170761478106,219,0 +170761478156,219,0 +170761478204,214,0 +170761478251,214,0 +170761478299,214,0 +170761478347,214,0 +170761478395,215,0 +170761478443,215,0 +170761478491,215,0 +170761478538,215,0 +170761478586,216,0 +170761478634,216,0 +170761478682,217,0 +170761478730,218,0 +170761478778,218,0 +170761478825,218,0 +170761478875,218,0 +170761478923,219,0 +170761478972,219,0 +170761479020,219,0 +170761479070,219,0 +170761479118,214,0 +170761479166,213,0 +170761479215,214,0 +170761479265,215,0 +170761479313,215,0 +170761479361,215,0 +170761479409,216,0 +170761479458,217,0 +170761479506,217,0 +170761479556,217,0 +170761479603,218,0 +170761479653,219,0 +170761479701,218,0 +170761479750,218,0 +170761479798,218,0 +170761479846,219,0 +170761479894,220,0 +170761479942,219,0 +170761479992,215,0 +170761480039,214,0 +170761480087,214,0 +170761480135,214,0 +170761480183,214,0 +170761480233,215,0 +170761480281,215,0 +170761480329,215,0 +170761480378,216,0 +170761480428,217,0 +170761480476,216,0 +170761480525,217,0 +170761480575,218,0 +170761480622,216,0 +170761480670,218,0 +170761480718,218,0 +170761480766,218,0 +170761480814,219,0 +170761480862,220,0 +170761480910,215,0 +170761480958,214,0 +170761481006,214,0 +170761481054,214,0 +170761481102,214,0 +170761481150,215,0 +170761481198,215,0 +170761481246,215,0 +170761481295,216,0 +170761481345,216,0 +170761481393,217,0 +170761481441,217,0 +170761481490,218,0 +170761481538,218,0 +170761481586,219,0 +170761481634,219,0 +170761481684,219,0 +170761481731,219,0 +170761481779,219,0 +170761481827,214,0 +170761481875,214,0 +170761481923,214,0 +170761481971,214,0 +170761482019,214,0 +170761482067,214,0 +170761482115,215,0 +170761482164,215,0 +170761482214,215,0 +170761482262,216,0 +170761482310,216,0 +170761482359,217,0 +170761482409,218,0 +170761482457,218,0 +170761482505,219,0 +170761482553,218,0 +170761482602,219,0 +170761482650,219,0 +170761482698,219,0 +170761482746,214,0 +170761482794,214,0 +170761482842,214,0 +170761482891,214,0 +170761482939,214,0 +170761482987,215,0 +170761483035,215,0 +170761483083,215,0 +170761483133,215,0 +170761483182,216,0 +170761483232,217,0 +170761483280,217,0 +170761483328,218,0 +170761483375,218,0 +170761483423,219,0 +170761483471,219,0 +170761483521,218,0 +170761483569,219,0 +170761483617,219,0 +170761483666,214,0 +170761483714,214,0 +170761483764,214,0 +170761483812,214,0 +170761483860,215,0 +170761483908,215,0 +170761483955,215,0 +170761484003,215,0 +170761484053,215,0 +170761484102,216,0 +170761484150,216,0 +170761484198,218,0 +170761484246,217,0 +170761484294,218,0 +170761484343,218,0 +170761484391,218,0 +170761484441,218,0 +170761484488,219,0 +170761484536,215,0 +170761484584,214,0 +170761484632,214,0 +170761484680,214,0 +170761484728,214,0 +170761484776,215,0 +170761484824,215,0 +170761484872,215,0 +170761484922,215,0 +170761484970,216,0 +170761485017,216,0 +170761485065,217,0 +170761485115,217,0 +170761485163,218,0 +170761485212,218,0 +170761485262,218,0 +170761485310,219,0 +170761485358,218,0 +170761485406,219,0 +170761485454,215,0 +170761485502,214,0 +170761485549,215,0 +170761485597,215,0 +170761485645,215,0 +170761485695,216,0 +170761485744,216,0 +170761485792,217,0 +170761485840,217,0 +170761485888,218,0 +170761485936,218,0 +170761485986,218,0 +170761486034,220,0 +170761486081,219,0 +170761486131,219,0 +170761486180,220,0 +170761486230,219,0 +170761486278,220,0 +170761486327,218,0 +170761486377,217,0 +170761486426,217,0 +170761486476,217,0 +170761486524,218,0 +170761486572,218,0 +170761486621,219,0 +170761486669,219,0 +170761486719,219,0 +170761486767,220,0 +170761486815,219,0 +170761486864,220,0 +170761486912,220,0 +170761486962,220,0 +170761487009,220,0 +170761487059,220,0 +170761487107,220,0 +170761487155,220,0 +170761487203,221,0 +170761487250,219,0 +170761487298,217,0 +170761487346,217,0 +170761487396,218,0 +170761487444,218,0 +170761487492,219,0 +170761487540,219,0 +170761487588,219,0 +170761487636,220,0 +170761487683,220,0 +170761487731,220,0 +170761487779,221,0 +170761487827,220,0 +170761487875,220,0 +170761487924,220,0 +170761487972,219,0 +170761488020,220,0 +170761488068,220,0 +170761488118,219,0 +170761488166,216,0 +170761488215,215,0 +170761488265,215,0 +170761488314,216,0 +170761488362,216,0 +170761488410,217,0 +170761488458,217,0 +170761488507,217,0 +170761488555,217,0 +170761488603,218,0 +170761488651,218,0 +170761488699,218,0 +170761488747,219,0 +170761488795,219,0 +170761488842,219,0 +170761488892,219,0 +170761488940,220,0 +170761488988,219,0 +170761489037,219,0 +170761489085,218,0 +170761489133,214,0 +170761489181,215,0 +170761489229,215,0 +170761489278,216,0 +170761489326,216,0 +170761489376,216,0 +170761489424,216,0 +170761489471,217,0 +170761489519,216,0 +170761489569,218,0 +170761489617,217,0 +170761489666,218,0 +170761489714,219,0 +170761489762,219,0 +170761489810,218,0 +170761489858,219,0 +170761489908,220,0 +170761489955,219,0 +170761490003,215,0 +170761490051,214,0 +170761490099,215,0 +170761490147,215,0 +170761490195,216,0 +170761490243,216,0 +170761490291,216,0 +170761490339,217,0 +170761490387,217,0 +170761490436,218,0 +170761490484,218,0 +170761490534,218,0 +170761490581,219,0 +170761490629,220,0 +170761490677,220,0 +170761490725,219,0 +170761490775,220,0 +170761490822,220,0 +170761490872,219,0 +170761490920,214,0 +170761490968,214,0 +170761491017,214,0 +170761491065,215,0 +170761491115,215,0 +170761491164,215,0 +170761491212,216,0 +170761491262,216,0 +170761491310,217,0 +170761491358,217,0 +170761491406,218,0 +170761491454,218,0 +170761491503,219,0 +170761491551,218,0 +170761491601,219,0 +170761491649,220,0 +170761491696,220,0 +170761491744,219,0 +170761491794,220,0 +170761491843,214,0 +170761491891,215,0 +170761491939,215,0 +170761491987,216,0 +170761492035,216,0 +170761492085,217,0 +170761492134,217,0 +170761492182,217,0 +170761492231,218,0 +170761492279,219,0 +170761492327,219,0 +170761492377,220,0 +170761492426,220,0 +170761492474,220,0 +170761492522,220,0 +170761492572,220,0 +170761492619,220,0 +170761492667,219,0 +170761492717,215,0 +170761492765,214,0 +170761492813,214,0 +170761492861,215,0 +170761492909,216,0 +170761492957,216,0 +170761493006,216,0 +170761493054,217,0 +170761493103,217,0 +170761493153,218,0 +170761493201,219,0 +170761493249,218,0 +170761493296,219,0 +170761493344,220,0 +170761493392,219,0 +170761493440,220,0 +170761493490,220,0 +170761493539,219,0 +170761493588,219,0 +170761493636,215,0 +170761493684,214,0 +170761493734,215,0 +170761493783,215,0 +170761493833,215,0 +170761493882,216,0 +170761493930,216,0 +170761493980,216,0 +170761494029,217,0 +170761494079,217,0 +170761494126,217,0 +170761494176,218,0 +170761494224,220,0 +170761494273,219,0 +170761494323,220,0 +170761494371,219,0 +170761494420,220,0 +170761494470,220,0 +170761494518,219,0 +170761494566,214,0 +170761494615,214,0 +170761494663,214,0 +170761494713,215,0 +170761494760,215,0 +170761494810,215,0 +170761494858,216,0 +170761494906,216,0 +170761494953,217,0 +170761495003,216,0 +170761495051,218,0 +170761495099,218,0 +170761495147,218,0 +170761495195,218,0 +170761495243,219,0 +170761495291,219,0 +170761495338,220,0 +170761495388,219,0 +170761495436,215,0 +170761495484,214,0 +170761495533,214,0 +170761495581,214,0 +170761495631,214,0 +170761495680,215,0 +170761495728,215,0 +170761495777,216,0 +170761495825,216,0 +170761495873,216,0 +170761495921,217,0 +170761495971,217,0 +170761496020,217,0 +170761496068,218,0 +170761496116,218,0 +170761496164,219,0 +170761496212,219,0 +170761496260,219,0 +170761496308,220,0 +170761496358,215,0 +170761496406,214,0 +170761496453,214,0 +170761496501,214,0 +170761496549,215,0 +170761496597,215,0 +170761496645,215,0 +170761496693,216,0 +170761496743,217,0 +170761496791,217,0 +170761496839,217,0 +170761496887,218,0 +170761496936,218,0 +170761496984,219,0 +170761497032,219,0 +170761497080,219,0 +170761497129,219,0 +170761497177,219,0 +170761497225,219,0 +170761497273,214,0 +170761497321,214,0 +170761497369,214,0 +170761497418,214,0 +170761497466,215,0 +170761497514,215,0 +170761497562,216,0 +170761497612,216,0 +170761497661,217,0 +170761497711,217,0 +170761497760,217,0 +170761497810,217,0 +170761497858,218,0 +170761497907,218,0 +170761497957,219,0 +170761498005,219,0 +170761498054,219,0 +170761498102,220,0 +170761498150,216,0 +170761498198,214,0 +170761498247,214,0 +170761498297,215,0 +170761498345,215,0 +170761498393,215,0 +170761498441,216,0 +170761498490,216,0 +170761498538,217,0 +170761498586,217,0 +170761498636,219,0 +170761498684,219,0 +170761498732,219,0 +170761498780,219,0 +170761498827,220,0 +170761498875,220,0 +170761498925,219,0 +170761498973,220,0 +170761499022,219,0 +170761499070,215,0 +170761499118,214,0 +170761499168,215,0 +170761499217,215,0 +170761499265,216,0 +170761499313,216,0 +170761499361,217,0 +170761499410,217,0 +170761499458,218,0 +170761499508,218,0 +170761499556,218,0 +170761499604,220,0 +170761499652,218,0 +170761499700,220,0 +170761499748,220,0 +170761499797,221,0 +170761499845,220,0 +170761499893,220,0 +170761499941,219,0 +170761499989,214,0 +170761500038,214,0 +170761500086,215,0 +170761500134,215,0 +170761500183,215,0 +170761500231,216,0 +170761500279,216,0 +170761500327,216,0 +170761500375,217,0 +170761500423,217,0 +170761500473,217,0 +170761500521,219,0 +170761500568,221,0 +170761500618,219,0 +170761500667,219,0 +170761500715,220,0 +170761500763,219,0 +170761500811,219,0 +170761500859,215,0 +170761500907,214,0 +170761500956,215,0 +170761501004,216,0 +170761501052,216,0 +170761501100,216,0 +170761501148,216,0 +170761501196,217,0 +170761501245,217,0 +170761501295,218,0 +170761501343,218,0 +170761501391,218,0 +170761501439,218,0 +170761501487,219,0 +170761501534,219,0 +170761501584,219,0 +170761501633,219,0 +170761501683,220,0 +170761501731,219,0 +170761501780,215,0 +170761501830,214,0 +170761501879,215,0 +170761501927,216,0 +170761501975,216,0 +170761502025,216,0 +170761502074,217,0 +170761502124,217,0 +170761502173,218,0 +170761502223,218,0 +170761502272,218,0 +170761502320,219,0 +170761502368,219,0 +170761502416,220,0 +170761502464,220,0 +170761502511,220,0 +170761502559,220,0 +170761502609,219,0 +170761502657,219,0 +170761502705,215,0 +170761502754,214,0 +170761502802,215,0 +170761502850,215,0 +170761502898,216,0 +170761502946,216,0 +170761502994,217,0 +170761503042,217,0 +170761503090,216,0 +170761503138,217,0 +170761503186,218,0 +170761503234,219,0 +170761503281,219,0 +170761503331,219,0 +170761503380,218,0 +170761503428,219,0 +170761503478,219,0 +170761503526,219,0 +170761503575,217,0 +170761503623,214,0 +170761503671,214,0 +170761503719,215,0 +170761503767,215,0 +170761503816,216,0 +170761503865,216,0 +170761503913,217,0 +170761503961,217,0 +170761504009,217,0 +170761504057,218,0 +170761504105,218,0 +170761504152,219,0 +170761504200,219,0 +170761504248,219,0 +170761504296,219,0 +170761504344,221,0 +170761504392,219,0 +170761504440,219,0 +170761504489,215,0 +170761504538,215,0 +170761504586,215,0 +170761504634,216,0 +170761504682,216,0 +170761504730,217,0 +170761504778,217,0 +170761504826,218,0 +170761504873,218,0 +170761504921,218,0 +170761504969,219,0 +170761505017,219,0 +170761505065,219,0 +170761505113,220,0 +170761505161,220,0 +170761505208,220,0 +170761505256,220,0 +170761505304,219,0 +170761505352,220,0 +170761505401,216,0 +170761505451,216,0 +170761505499,216,0 +170761505547,217,0 +170761505596,217,0 +170761505646,218,0 +170761505694,218,0 +170761505741,219,0 +170761505789,219,0 +170761505837,219,0 +170761505885,219,0 +170761505933,221,0 +170761505982,220,0 +170761506030,220,0 +170761506080,220,0 +170761506127,219,0 +170761506175,220,0 +170761506223,220,0 +170761506271,219,0 +170761506319,215,0 +170761506367,214,0 +170761506415,215,0 +170761506462,215,0 +170761506510,216,0 +170761506558,216,0 +170761506606,217,0 +170761506654,217,0 +170761506702,217,0 +170761506749,218,0 +170761506799,218,0 +170761506848,219,0 +170761506898,219,0 +170761506946,219,0 +170761506995,220,0 +170761507043,220,0 +170761507093,219,0 +170761507142,220,0 +170761507190,219,0 +170761507238,214,0 +170761507286,214,0 +170761507334,213,0 +170761507382,214,0 +170761507430,214,0 +170761507477,215,0 +170761507525,215,0 +170761507573,215,0 +170761507621,216,0 +170761507669,217,0 +170761507717,216,0 +170761507765,217,0 +170761507812,217,0 +170761507860,217,0 +170761507910,218,0 +170761507958,218,0 +170761508005,219,0 +170761508053,219,0 +170761508101,219,0 +170761508150,214,0 +170761508198,214,0 +170761508246,214,0 +170761508296,214,0 +170761508344,214,0 +170761508392,214,0 +170761508439,215,0 +170761508487,215,0 +170761508537,216,0 +170761508585,216,0 +170761508632,217,0 +170761508680,217,0 +170761508728,218,0 +170761508776,218,0 +170761508824,219,0 +170761508872,219,0 +170761508920,219,0 +170761508968,219,0 +170761509017,215,0 +170761509065,213,0 +170761509115,213,0 +170761509162,214,0 +170761509210,214,0 +170761509258,214,0 +170761509306,214,0 +170761509354,214,0 +170761509404,214,0 +170761509452,215,0 +170761509499,215,0 +170761509547,216,0 +170761509595,216,0 +170761509645,217,0 +170761509694,217,0 +170761509742,217,0 +170761509792,217,0 +170761509841,218,0 +170761509889,219,0 +170761509937,215,0 +170761509985,214,0 +170761510034,215,0 +170761510082,216,0 +170761510132,215,0 +170761510180,216,0 +170761510229,216,0 +170761510277,216,0 +170761510325,217,0 +170761510373,217,0 +170761510422,217,0 +170761510470,218,0 +170761510520,219,0 +170761510568,219,0 +170761510616,219,0 +170761510663,220,0 +170761510711,220,0 +170761510759,220,0 +170761510809,218,0 +170761510857,214,0 +170761510906,215,0 +170761510956,216,0 +170761511004,216,0 +170761511052,216,0 +170761511101,216,0 +170761511149,216,0 +170761511197,218,0 +170761511246,218,0 +170761511294,218,0 +170761511342,219,0 +170761511390,219,0 +170761511438,219,0 +170761511486,220,0 +170761511534,220,0 +170761511582,220,0 +170761511630,220,0 +170761511678,219,0 +170761511727,216,0 +170761511775,216,0 +170761511824,216,0 +170761511872,216,0 +170761511920,217,0 +170761511968,218,0 +170761512017,218,0 +170761512065,218,0 +170761512113,219,0 +170761512161,219,0 +170761512209,219,0 +170761512257,220,0 +170761512305,219,0 +170761512353,220,0 +170761512400,220,0 +170761512448,220,0 +170761512496,220,0 +170761512546,219,0 +170761512594,219,0 +170761512643,216,0 +170761512693,215,0 +170761512741,215,0 +170761512789,216,0 +170761512838,216,0 +170761512886,218,0 +170761512936,220,0 +170761512983,217,0 +170761513033,217,0 +170761513081,218,0 +170761513129,219,0 +170761513178,219,0 +170761513228,219,0 +170761513277,219,0 +170761513327,219,0 +170761513375,220,0 +170761513423,220,0 +170761513472,219,0 +170761513520,216,0 +170761513569,214,0 +170761513617,214,0 +170761513665,215,0 +170761513713,215,0 +170761513761,216,0 +170761513811,216,0 +170761513859,216,0 +170761513907,217,0 +170761513955,217,0 +170761514002,218,0 +170761514050,218,0 +170761514098,219,0 +170761514148,219,0 +170761514196,219,0 +170761514244,219,0 +170761514291,219,0 +170761514339,219,0 +170761514387,220,0 +170761514435,215,0 +170761514483,214,0 +170761514531,214,0 +170761514579,214,0 +170761514628,215,0 +170761514678,215,0 +170761514726,216,0 +170761514773,216,0 +170761514821,217,0 +170761514869,217,0 +170761514917,217,0 +170761514967,218,0 +170761515016,218,0 +170761515064,218,0 +170761515112,217,0 +170761515161,217,0 +170761515211,217,0 +170761515259,218,0 +170761515307,219,0 +170761515356,214,0 +170761515404,214,0 +170761515454,214,0 +170761515502,214,0 +170761515550,214,0 +170761515598,215,0 +170761515645,215,0 +170761515695,215,0 +170761515743,216,0 +170761515792,216,0 +170761515842,217,0 +170761515890,217,0 +170761515938,217,0 +170761515987,218,0 +170761516037,218,0 +170761516086,218,0 +170761516134,218,0 +170761516182,219,0 +170761516230,216,0 +170761516278,214,0 +170761516327,214,0 +170761516377,214,0 +170761516426,215,0 +170761516474,215,0 +170761516522,215,0 +170761516572,216,0 +170761516620,216,0 +170761516669,216,0 +170761516717,217,0 +170761516765,218,0 +170761516813,218,0 +170761516863,219,0 +170761516911,219,0 +170761516958,219,0 +170761517006,219,0 +170761517054,219,0 +170761517102,219,0 +170761517150,214,0 +170761517200,214,0 +170761517249,215,0 +170761517297,215,0 +170761517345,216,0 +170761517393,216,0 +170761517441,216,0 +170761517489,217,0 +170761517537,217,0 +170761517584,217,0 +170761517632,218,0 +170761517680,218,0 +170761517728,219,0 +170761517778,219,0 +170761517827,223,0 +170761517875,219,0 +170761517923,220,0 +170761517971,219,0 +170761518019,219,0 +170761518068,215,0 +170761518116,215,0 +170761518164,215,0 +170761518212,215,0 +170761518260,216,0 +170761518310,216,0 +170761518357,217,0 +170761518407,218,0 +170761518456,217,0 +170761518506,218,0 +170761518554,218,0 +170761518603,220,0 +170761518653,219,0 +170761518702,219,0 +170761518750,220,0 +170761518798,219,0 +170761518846,220,0 +170761518894,219,0 +170761518942,215,0 +170761518990,215,0 +170761519039,215,0 +170761519089,216,0 +170761519137,216,0 +170761519186,216,0 +170761519234,216,0 +170761519282,217,0 +170761519330,218,0 +170761519378,218,0 +170761519426,217,0 +170761519475,218,0 +170761519523,218,0 +170761519571,218,0 +170761519619,218,0 +170761519667,218,0 +170761519715,218,0 +170761519763,219,0 +170761519811,219,0 +170761519860,214,0 +170761519908,214,0 +170761519958,215,0 +170761520006,215,0 +170761520053,215,0 +170761520101,215,0 +170761520149,215,0 +170761520197,217,0 +170761520247,216,0 +170761520294,217,0 +170761520342,217,0 +170761520390,218,0 +170761520438,218,0 +170761520488,219,0 +170761520535,219,0 +170761520583,219,0 +170761520633,219,0 +170761520681,219,0 +170761520729,215,0 +170761520778,215,0 +170761520826,215,0 +170761520874,215,0 +170761520922,215,0 +170761520970,215,0 +170761521018,216,0 +170761521066,217,0 +170761521115,216,0 +170761521165,218,0 +170761521214,217,0 +170761521263,218,0 +170761521311,218,0 +170761521359,218,0 +170761521409,218,0 +170761521457,219,0 +170761521505,220,0 +170761521553,219,0 +170761521601,219,0 +170761521650,215,0 +170761521698,215,0 +170761521746,215,0 +170761521794,216,0 +170761521842,216,0 +170761521890,217,0 +170761521938,217,0 +170761521987,217,0 +170761522035,218,0 +170761522084,218,0 +170761522132,219,0 +170761522180,220,0 +170761522230,219,0 +170761522277,219,0 +170761522325,220,0 +170761522373,219,0 +170761522421,220,0 +170761522469,219,0 +170761522517,216,0 +170761522564,216,0 +170761522612,217,0 +170761522660,217,0 +170761522708,217,0 +170761522756,218,0 +170761522803,218,0 +170761522851,219,0 +170761522899,219,0 +170761522947,219,0 +170761522996,219,0 +170761523044,220,0 +170761523092,220,0 +170761523140,220,0 +170761523188,220,0 +170761523236,219,0 +170761523285,219,0 +170761523333,220,0 +170761523381,219,0 +170761523429,216,0 +170761523479,215,0 +170761523528,217,0 +170761523576,217,0 +170761523624,217,0 +170761523673,217,0 +170761523721,218,0 +170761523769,218,0 +170761523817,220,0 +170761523865,219,0 +170761523914,219,0 +170761523964,219,0 +170761524013,220,0 +170761524061,220,0 +170761524109,221,0 +170761524157,221,0 +170761524205,220,0 +170761524252,219,0 +170761524300,217,0 +170761524348,214,0 +170761524398,214,0 +170761524447,214,0 +170761524497,215,0 +170761524546,215,0 +170761524594,216,0 +170761524644,216,0 +170761524692,217,0 +170761524740,217,0 +170761524787,218,0 +170761524835,217,0 +170761524883,218,0 +170761524931,219,0 +170761524979,219,0 +170761525027,219,0 +170761525075,219,0 +170761525122,219,0 +170761525170,219,0 +170761525218,218,0 +170761525266,214,0 +170761525314,214,0 +170761525362,215,0 +170761525410,215,0 +170761525458,215,0 +170761525507,215,0 +170761525555,216,0 +170761525602,216,0 +170761525650,217,0 +170761525698,217,0 +170761525746,217,0 +170761525794,218,0 +170761525842,219,0 +170761525891,219,0 +170761525939,220,0 +170761525987,219,0 +170761526037,219,0 +170761526084,219,0 +170761526134,215,0 +170761526183,214,0 +170761526231,215,0 +170761526279,215,0 +170761526327,215,0 +170761526375,215,0 +170761526423,216,0 +170761526471,216,0 +170761526519,217,0 +170761526566,217,0 +170761526614,217,0 +170761526662,218,0 +170761526710,218,0 +170761526758,218,0 +170761526807,218,0 +170761526855,218,0 +170761526904,219,0 +170761526952,220,0 +170761527000,218,0 +170761527048,214,0 +170761527095,214,0 +170761527143,214,0 +170761527191,215,0 +170761527239,215,0 +170761527287,215,0 +170761527335,216,0 +170761527384,216,0 +170761527432,216,0 +170761527481,217,0 +170761527529,217,0 +170761527577,218,0 +170761527625,218,0 +170761527672,219,0 +170761527720,219,0 +170761527770,219,0 +170761527817,218,0 +170761527865,218,0 +170761527913,215,0 +170761527961,214,0 +170761528009,214,0 +170761528056,214,0 +170761528104,215,0 +170761528152,215,0 +170761528200,216,0 +170761528248,216,0 +170761528296,217,0 +170761528344,216,0 +170761528392,217,0 +170761528440,218,0 +170761528488,218,0 +170761528537,218,0 +170761528585,218,0 +170761528633,218,0 +170761528682,218,0 +170761528730,219,0 +170761528778,218,0 +170761528826,215,0 +170761528874,215,0 +170761528922,215,0 +170761528970,215,0 +170761529019,215,0 +170761529067,216,0 +170761529117,217,0 +170761529165,217,0 +170761529212,217,0 +170761529260,218,0 +170761529308,218,0 +170761529356,218,0 +170761529404,228,0 +170761529452,223,0 +170761529500,220,0 +170761529549,221,0 +170761529597,220,0 +170761529647,220,0 +170761529695,216,0 +170761529742,215,0 +170761529790,216,0 +170761529838,217,0 +170761529888,217,0 +170761529937,217,0 +170761529987,218,0 +170761530035,218,0 +170761530083,218,0 +170761530130,219,0 +170761530178,219,0 +170761530226,219,0 +170761530276,220,0 +170761530324,220,0 +170761530371,219,0 +170761530419,220,0 +170761530467,220,0 +170761530515,220,0 +170761530563,219,0 +170761530613,216,0 +170761530660,215,0 +170761530708,216,0 +170761530758,216,0 +170761530807,216,0 +170761530855,217,0 +170761530903,217,0 +170761530951,217,0 +170761531000,218,0 +170761531048,219,0 +170761531096,218,0 +170761531144,219,0 +170761531191,219,0 +170761531241,219,0 +170761531289,220,0 +170761531337,221,0 +170761531385,220,0 +170761531432,220,0 +170761531480,219,0 +170761531528,216,0 +170761531577,216,0 +170761531625,216,0 +170761531673,217,0 +170761531721,217,0 +170761531769,217,0 +170761531817,218,0 +170761531866,218,0 +170761531914,219,0 +170761531962,219,0 +170761532010,219,0 +170761532057,220,0 +170761532105,220,0 +170761532153,221,0 +170761532201,221,0 +170761532249,221,0 +170761532297,219,0 +170761532345,219,0 +170761532394,218,0 +170761532442,215,0 +170761532490,215,0 +170761532537,216,0 +170761532585,216,0 +170761532633,216,0 +170761532681,217,0 +170761532729,217,0 +170761532778,217,0 +170761532826,218,0 +170761532874,218,0 +170761532921,220,0 +170761532969,220,0 +170761533017,219,0 +170761533065,219,0 +170761533113,220,0 +170761533160,220,0 +170761533210,220,0 +170761533258,219,0 +170761533305,215,0 +170761533353,214,0 +170761533401,215,0 +170761533449,214,0 +170761533497,215,0 +170761533546,215,0 +170761533596,215,0 +170761533645,216,0 +170761533693,216,0 +170761533743,217,0 +170761533791,217,0 +170761533839,218,0 +170761533886,218,0 +170761533934,219,0 +170761533982,218,0 +170761534032,219,0 +170761534080,220,0 +170761534128,219,0 +170761534176,219,0 +170761534224,215,0 +170761534273,215,0 +170761534321,215,0 +170761534369,215,0 +170761534418,216,0 +170761534466,218,0 +170761534514,217,0 +170761534564,217,0 +170761534612,218,0 +170761534661,219,0 +170761534709,219,0 +170761534759,219,0 +170761534808,220,0 +170761534856,220,0 +170761534904,220,0 +170761534952,220,0 +170761534999,219,0 +170761535047,219,0 +170761535095,219,0 +170761535143,214,0 +170761535192,214,0 +170761535242,215,0 +170761535291,215,0 +170761535339,215,0 +170761535387,215,0 +170761535436,216,0 +170761535484,216,0 +170761535532,217,0 +170761535582,217,0 +170761535630,218,0 +170761535679,218,0 +170761535729,219,0 +170761535777,219,0 +170761535826,219,0 +170761535874,219,0 +170761535923,219,0 +170761535971,219,0 +170761536019,214,0 +170761536067,213,0 +170761536115,213,0 +170761536163,214,0 +170761536210,214,0 +170761536258,214,0 +170761536306,214,0 +170761536354,215,0 +170761536402,215,0 +170761536449,215,0 +170761536497,216,0 +170761536545,217,0 +170761536593,217,0 +170761536642,217,0 +170761536690,218,0 +170761536738,219,0 +170761536787,219,0 +170761536835,219,0 +170761536883,219,0 +170761536932,214,0 +170761536980,214,0 +170761537028,214,0 +170761537076,214,0 +170761537124,214,0 +170761537172,215,0 +170761537219,215,0 +170761537267,215,0 +170761537315,217,0 +170761537363,216,0 +170761537411,217,0 +170761537459,218,0 +170761537507,217,0 +170761537554,218,0 +170761537602,219,0 +170761537650,218,0 +170761537698,219,0 +170761537746,219,0 +170761537794,215,0 +170761537841,213,0 +170761537889,214,0 +170761537937,214,0 +170761537985,214,0 +170761538033,214,0 +170761538081,214,0 +170761538129,214,0 +170761538176,214,0 +170761538224,215,0 +170761538272,215,0 +170761538322,215,0 +170761538369,215,0 +170761538417,216,0 +170761538467,217,0 +170761538515,217,0 +170761538564,217,0 +170761538612,219,0 +170761538660,219,0 +170761538708,214,0 +170761538757,213,0 +170761538805,214,0 +170761538853,214,0 +170761538900,214,0 +170761538948,214,0 +170761538996,214,0 +170761539044,214,0 +170761539092,215,0 +170761539141,216,0 +170761539189,215,0 +170761539237,216,0 +170761539285,216,0 +170761539333,217,0 +170761539381,217,0 +170761539430,217,0 +170761539478,218,0 +170761539526,220,0 +170761539574,214,0 +170761539621,214,0 +170761539671,215,0 +170761539719,215,0 +170761539767,215,0 +170761539815,216,0 +170761539862,216,0 +170761539910,217,0 +170761539960,217,0 +170761540007,218,0 +170761540055,218,0 +170761540103,219,0 +170761540153,219,0 +170761540201,219,0 +170761540249,219,0 +170761540298,220,0 +170761540346,220,0 +170761540394,219,0 +170761540444,216,0 +170761540493,216,0 +170761540541,216,0 +170761540590,217,0 +170761540640,217,0 +170761540689,217,0 +170761540737,218,0 +170761540785,218,0 +170761540833,219,0 +170761540881,219,0 +170761540930,219,0 +170761540980,220,0 +170761541029,220,0 +170761541078,220,0 +170761541126,221,0 +170761541174,220,0 +170761541222,220,0 +170761541271,220,0 +170761541319,218,0 +170761541367,216,0 +170761541415,216,0 +170761541463,217,0 +170761541511,217,0 +170761541559,217,0 +170761541606,218,0 +170761541654,218,0 +170761541704,218,0 +170761541753,219,0 +170761541801,219,0 +170761541849,219,0 +170761541899,219,0 +170761541949,219,0 +170761541998,219,0 +170761542048,220,0 +170761542096,220,0 +170761542143,219,0 +170761542191,218,0 +170761542241,214,0 +170761542289,215,0 +170761542337,215,0 +170761542385,216,0 +170761542434,216,0 +170761542484,217,0 +170761542532,217,0 +170761542580,217,0 +170761542628,217,0 +170761542677,218,0 +170761542725,218,0 +170761542775,218,0 +170761542822,219,0 +170761542870,219,0 +170761542920,220,0 +170761542968,220,0 +170761543016,220,0 +170761543064,219,0 +170761543112,214,0 +170761543160,215,0 +170761543209,215,0 +170761543259,216,0 +170761543307,216,0 +170761543356,216,0 +170761543406,217,0 +170761543454,217,0 +170761543502,218,0 +170761543550,218,0 +170761543600,219,0 +170761543648,219,0 +170761543695,219,0 +170761543743,220,0 +170761543791,219,0 +170761543839,221,0 +170761543887,220,0 +170761543935,219,0 +170761543985,215,0 +170761544034,215,0 +170761544082,216,0 +170761544132,216,0 +170761544180,216,0 +170761544228,217,0 +170761544276,217,0 +170761544325,217,0 +170761544373,219,0 +170761544421,219,0 +170761544469,219,0 +170761544518,220,0 +170761544568,219,0 +170761544616,220,0 +170761544664,220,0 +170761544713,220,0 +170761544763,219,0 +170761544811,219,0 +170761544859,216,0 +170761544907,215,0 +170761544956,216,0 +170761545006,217,0 +170761545054,216,0 +170761545103,217,0 +170761545153,217,0 +170761545201,218,0 +170761545250,218,0 +170761545298,219,0 +170761545348,219,0 +170761545396,219,0 +170761545443,219,0 +170761545491,220,0 +170761545541,220,0 +170761545589,219,0 +170761545637,220,0 +170761545684,219,0 +170761545732,217,0 +170761545782,216,0 +170761545831,217,0 +170761545881,217,0 +170761545929,217,0 +170761545977,218,0 +170761546026,218,0 +170761546074,220,0 +170761546122,219,0 +170761546170,219,0 +170761546220,220,0 +170761546269,220,0 +170761546317,221,0 +170761546365,220,0 +170761546413,221,0 +170761546461,219,0 +170761546510,220,0 +170761546558,219,0 +170761546608,217,0 +170761546657,216,0 +170761546707,216,0 +170761546755,217,0 +170761546803,218,0 +170761546850,218,0 +170761546898,218,0 +170761546946,219,0 +170761546996,220,0 +170761547044,220,0 +170761547093,220,0 +170761547143,220,0 +170761547191,220,0 +170761547238,221,0 +170761547286,220,0 +170761547334,221,0 +170761547382,220,0 +170761547430,219,0 +170761547480,218,0 +170761547528,216,0 +170761547577,217,0 +170761547625,217,0 +170761547673,217,0 +170761547721,217,0 +170761547769,218,0 +170761547817,219,0 +170761547865,219,0 +170761547914,219,0 +170761547962,219,0 +170761548010,220,0 +170761548058,220,0 +170761548107,220,0 +170761548157,221,0 +170761548205,220,0 +170761548253,219,0 +170761548301,219,0 +170761548349,219,0 +170761548396,214,0 +170761548446,215,0 +170761548494,215,0 +170761548542,215,0 +170761548591,216,0 +170761548641,216,0 +170761548689,216,0 +170761548738,217,0 +170761548787,218,0 +170761548835,218,0 +170761548883,218,0 +170761548931,219,0 +170761548979,219,0 +170761549027,219,0 +170761549075,220,0 +170761549123,220,0 +170761549171,220,0 +170761549219,219,0 +170761549267,214,0 +170761549314,214,0 +170761549364,215,0 +170761549412,216,0 +170761549460,216,0 +170761549508,216,0 +170761549556,216,0 +170761549604,217,0 +170761549651,217,0 +170761549701,218,0 +170761549749,219,0 +170761549797,219,0 +170761549845,221,0 +170761549894,220,0 +170761549942,219,0 +170761549990,219,0 +170761550040,220,0 +170761550088,219,0 +170761550135,215,0 +170761550183,215,0 +170761550233,215,0 +170761550282,215,0 +170761550330,216,0 +170761550378,216,0 +170761550428,217,0 +170761550477,217,0 +170761550525,218,0 +170761550573,218,0 +170761550621,219,0 +170761550669,219,0 +170761550717,220,0 +170761550765,219,0 +170761550814,220,0 +170761550862,220,0 +170761550910,219,0 +170761550958,220,0 +170761551008,215,0 +170761551056,215,0 +170761551105,215,0 +170761551153,215,0 +170761551201,216,0 +170761551249,216,0 +170761551297,217,0 +170761551346,217,0 +170761551394,217,0 +170761551444,217,0 +170761551493,218,0 +170761551543,219,0 +170761551591,219,0 +170761551639,220,0 +170761551688,220,0 +170761551736,221,0 +170761551784,219,0 +170761551832,219,0 +170761551881,215,0 +170761551929,215,0 +170761551977,215,0 +170761552025,216,0 +170761552073,216,0 +170761552121,216,0 +170761552169,217,0 +170761552218,217,0 +170761552268,217,0 +170761552317,217,0 +170761552367,218,0 +170761552415,218,0 +170761552463,219,0 +170761552512,218,0 +170761552562,220,0 +170761552610,219,0 +170761552658,219,0 +170761552707,220,0 +170761552755,215,0 +170761552803,214,0 +170761552851,215,0 +170761552899,215,0 +170761552947,215,0 +170761552995,215,0 +170761553044,215,0 +170761553094,216,0 +170761553143,217,0 +170761553191,217,0 +170761553239,218,0 +170761553287,218,0 +170761553335,218,0 +170761553383,218,0 +170761553432,218,0 +170761553480,218,0 +170761553528,219,0 +170761553576,219,0 +170761553625,216,0 +170761553673,214,0 +170761553723,214,0 +170761553772,214,0 +170761553820,215,0 +170761553868,215,0 +170761553916,216,0 +170761553964,216,0 +170761554013,217,0 +170761554061,217,0 +170761554109,218,0 +170761554157,218,0 +170761554205,219,0 +170761554253,219,0 +170761554301,219,0 +170761554349,219,0 +170761554398,220,0 +170761554446,219,0 +170761554496,215,0 +170761554544,214,0 +170761554591,214,0 +170761554639,215,0 +170761554689,215,0 +170761554737,215,0 +170761554785,215,0 +170761554832,216,0 +170761554880,216,0 +170761554928,217,0 +170761554976,217,0 +170761555024,218,0 +170761555072,217,0 +170761555120,218,0 +170761555168,217,0 +170761555216,219,0 +170761555264,219,0 +170761555311,219,0 +170761555361,218,0 +170761555410,213,0 +170761555460,213,0 +170761555508,213,0 +170761555556,214,0 +170761555605,214,0 +170761555653,214,0 +170761555703,214,0 +170761555751,216,0 +170761555799,215,0 +170761555847,215,0 +170761555894,215,0 +170761555942,216,0 +170761555992,217,0 +170761556040,217,0 +170761556088,218,0 +170761556136,218,0 +170761556184,219,0 +170761556233,218,0 +170761556281,214,0 +170761556329,214,0 +170761556377,214,0 +170761556427,214,0 +170761556476,215,0 +170761556526,215,0 +170761556574,216,0 +170761556623,217,0 +170761556671,217,0 +170761556719,217,0 +170761556768,218,0 +170761556816,218,0 +170761556866,219,0 +170761556915,219,0 +170761556963,220,0 +170761557013,219,0 +170761557061,220,0 +170761557109,219,0 +170761557157,214,0 +170761557206,214,0 +170761557254,215,0 +170761557303,215,0 +170761557351,216,0 +170761557401,217,0 +170761557449,217,0 +170761557497,217,0 +170761557545,218,0 +170761557593,218,0 +170761557642,218,0 +170761557692,219,0 +170761557740,219,0 +170761557789,220,0 +170761557837,219,0 +170761557885,220,0 +170761557933,219,0 +170761557981,219,0 +170761558030,215,0 +170761558078,215,0 +170761558126,216,0 +170761558174,216,0 +170761558222,217,0 +170761558272,217,0 +170761558319,218,0 +170761558367,218,0 +170761558417,218,0 +170761558465,219,0 +170761558513,219,0 +170761558562,219,0 +170761558610,220,0 +170761558658,219,0 +170761558706,220,0 +170761558754,220,0 +170761558803,222,0 +170761558851,219,0 +170761558899,215,0 +170761558947,215,0 +170761558995,216,0 +170761559043,216,0 +170761559092,217,0 +170761559140,217,0 +170761559190,217,0 +170761559237,217,0 +170761559285,218,0 +170761559335,218,0 +170761559384,219,0 +170761559432,220,0 +170761559482,220,0 +170761559530,220,0 +170761559577,220,0 +170761559625,219,0 +170761559675,220,0 +170761559723,219,0 +170761559771,215,0 +170761559819,215,0 +170761559867,215,0 +170761559915,215,0 +170761559963,216,0 +170761560011,217,0 +170761560060,217,0 +170761560108,217,0 +170761560156,218,0 +170761560204,218,0 +170761560253,218,0 +170761560301,220,0 +170761560349,218,0 +170761560397,220,0 +170761560445,220,0 +170761560493,220,0 +170761560542,219,0 +170761560592,219,0 +170761560640,215,0 +170761560687,215,0 +170761560735,216,0 +170761560783,217,0 +170761560831,217,0 +170761560881,217,0 +170761560929,218,0 +170761560977,218,0 +170761561024,218,0 +170761561072,219,0 +170761561120,220,0 +170761561168,220,0 +170761561216,220,0 +170761561266,220,0 +170761561313,220,0 +170761561363,220,0 +170761561413,220,0 +170761561462,219,0 +170761561510,216,0 +170761561558,216,0 +170761561606,215,0 +170761561653,216,0 +170761561701,217,0 +170761561749,217,0 +170761561797,218,0 +170761561845,218,0 +170761561893,218,0 +170761561941,218,0 +170761561989,219,0 +170761562037,219,0 +170761562084,220,0 +170761562132,219,0 +170761562180,220,0 +170761562228,220,0 +170761562276,220,0 +170761562323,219,0 +170761562371,216,0 +170761562419,215,0 +170761562467,216,0 +170761562515,216,0 +170761562563,217,0 +170761562610,217,0 +170761562660,218,0 +170761562707,218,0 +170761562755,218,0 +170761562803,219,0 +170761562851,219,0 +170761562899,219,0 +170761562947,219,0 +170761562994,219,0 +170761563042,219,0 +170761563090,221,0 +170761563140,220,0 +170761563187,220,0 +170761563235,216,0 +170761563283,217,0 +170761563331,217,0 +170761563379,217,0 +170761563427,218,0 +170761563475,218,0 +170761563522,219,0 +170761563570,219,0 +170761563618,220,0 +170761563666,220,0 +170761563714,220,0 +170761563763,221,0 +170761563813,220,0 +170761563862,220,0 +170761563910,220,0 +170761563960,220,0 +170761564008,220,0 +170761564056,219,0 +170761564105,216,0 +170761564153,215,0 +170761564203,217,0 +170761564252,216,0 +170761564300,217,0 +170761564348,217,0 +170761564396,217,0 +170761564444,217,0 +170761564492,218,0 +170761564542,219,0 +170761564590,219,0 +170761564639,219,0 +170761564687,220,0 +170761564735,219,0 +170761564782,220,0 +170761564830,219,0 +170761564878,219,0 +170761564927,219,0 +170761564975,215,0 +170761565023,215,0 +170761565073,216,0 +170761565120,216,0 +170761565168,216,0 +170761565216,217,0 +170761565264,217,0 +170761565312,217,0 +170761565360,218,0 +170761565410,219,0 +170761565458,219,0 +170761565506,219,0 +170761565553,220,0 +170761565601,220,0 +170761565651,220,0 +170761565699,220,0 +170761565748,220,0 +170761565796,220,0 +170761565846,216,0 +170761565894,214,0 +170761565943,215,0 +170761565991,216,0 +170761566041,216,0 +170761566088,217,0 +170761566136,217,0 +170761566184,217,0 +170761566232,218,0 +170761566281,219,0 +170761566329,219,0 +170761566377,220,0 +170761566425,220,0 +170761566475,220,0 +170761566523,220,0 +170761566570,220,0 +170761566618,220,0 +170761566668,219,0 +170761566716,215,0 +170761566764,214,0 +170761566812,214,0 +170761566860,215,0 +170761566908,215,0 +170761566955,215,0 +170761567003,216,0 +170761567051,216,0 +170761567101,217,0 +170761567149,217,0 +170761567198,218,0 +170761567246,218,0 +170761567294,219,0 +170761567342,219,0 +170761567392,219,0 +170761567439,221,0 +170761567487,220,0 +170761567537,219,0 +170761567585,215,0 +170761567633,214,0 +170761567681,214,0 +170761567729,215,0 +170761567777,215,0 +170761567825,216,0 +170761567872,216,0 +170761567922,216,0 +170761567970,216,0 +170761568018,217,0 +170761568066,217,0 +170761568115,217,0 +170761568163,218,0 +170761568211,219,0 +170761568259,219,0 +170761568308,220,0 +170761568356,219,0 +170761568404,219,0 +170761568452,215,0 +170761568502,214,0 +170761568549,214,0 +170761568599,215,0 +170761568648,215,0 +170761568698,215,0 +170761568746,215,0 +170761568795,216,0 +170761568843,216,0 +170761568891,217,0 +170761568939,217,0 +170761568987,218,0 +170761569035,219,0 +170761569082,220,0 +170761569132,221,0 +170761569180,219,0 +170761569228,219,0 +170761569276,220,0 +170761569324,218,0 +170761569373,214,0 +170761569421,214,0 +170761569469,215,0 +170761569517,215,0 +170761569565,216,0 +170761569612,216,0 +170761569660,217,0 +170761569708,217,0 +170761569758,218,0 +170761569806,217,0 +170761569853,218,0 +170761569901,219,0 +170761569949,219,0 +170761569997,219,0 +170761570045,219,0 +170761570093,220,0 +170761570140,219,0 +170761570188,215,0 +170761570236,214,0 +170761570284,215,0 +170761570332,215,0 +170761570380,216,0 +170761570428,216,0 +170761570478,217,0 +170761570527,217,0 +170761570576,218,0 +170761570624,218,0 +170761570672,218,0 +170761570720,219,0 +170761570768,219,0 +170761570818,220,0 +170761570866,219,0 +170761570914,220,0 +170761570963,220,0 +170761571013,219,0 +170761571062,215,0 +170761571110,214,0 +170761571158,215,0 +170761571208,215,0 +170761571256,216,0 +170761571303,216,0 +170761571351,216,0 +170761571399,217,0 +170761571449,217,0 +170761571498,217,0 +170761571546,217,0 +170761571596,218,0 +170761571644,219,0 +170761571692,216,0 +170761571741,219,0 +170761571791,219,0 +170761571838,220,0 +170761571888,219,0 +170761571937,215,0 +170761571985,215,0 +170761572033,215,0 +170761572083,216,0 +170761572132,217,0 +170761572182,217,0 +170761572231,217,0 +170761572279,218,0 +170761572329,218,0 +170761572378,219,0 +170761572426,220,0 +170761572476,219,0 +170761572525,221,0 +170761572575,220,0 +170761572623,220,0 +170761572671,220,0 +170761572720,219,0 +170761572770,217,0 +170761572817,217,0 +170761572865,218,0 +170761572913,217,0 +170761572961,218,0 +170761573009,218,0 +170761573057,219,0 +170761573104,220,0 +170761573152,220,0 +170761573202,220,0 +170761573250,220,0 +170761573298,220,0 +170761573345,220,0 +170761573395,221,0 +170761573443,220,0 +170761573491,220,0 +170761573539,220,0 +170761573587,219,0 +170761573635,217,0 +170761573684,218,0 +170761573734,218,0 +170761573783,218,0 +170761573831,218,0 +170761573879,219,0 +170761573928,219,0 +170761573976,220,0 +170761574024,220,0 +170761574072,220,0 +170761574120,220,0 +170761574170,220,0 +170761574218,221,0 +170761574267,220,0 +170761574315,220,0 +170761574363,220,0 +170761574411,219,0 +170761574459,218,0 +170761574508,216,0 +170761574558,217,0 +170761574606,217,0 +170761574655,218,0 +170761574703,218,0 +170761574753,218,0 +170761574801,219,0 +170761574849,219,0 +170761574897,219,0 +170761574945,219,0 +170761574993,220,0 +170761575042,220,0 +170761575090,221,0 +170761575139,220,0 +170761575189,219,0 +170761575237,220,0 +170761575286,219,0 +170761575334,216,0 +170761575382,215,0 +170761575430,216,0 +170761575478,216,0 +170761575526,216,0 +170761575575,217,0 +170761575623,217,0 +170761575671,217,0 +170761575721,217,0 +170761575769,219,0 +170761575817,219,0 +170761575865,219,0 +170761575914,219,0 +170761575962,219,0 +170761576012,219,0 +170761576061,219,0 +170761576111,219,0 +170761576158,220,0 +170761576206,214,0 +170761576256,215,0 +170761576304,215,0 +170761576352,216,0 +170761576400,223,0 +170761576449,216,0 +170761576497,217,0 +170761576545,217,0 +170761576593,217,0 +170761576643,218,0 +170761576691,218,0 +170761576740,219,0 +170761576790,219,0 +170761576838,219,0 +170761576886,219,0 +170761576935,219,0 +170761576985,220,0 +170761577033,215,0 +170761577081,214,0 +170761577129,215,0 +170761577177,215,0 +170761577224,216,0 +170761577272,216,0 +170761577320,216,0 +170761577368,217,0 +170761577418,217,0 +170761577466,217,0 +170761577514,219,0 +170761577562,219,0 +170761577610,219,0 +170761577657,220,0 +170761577705,219,0 +170761577753,218,0 +170761577801,220,0 +170761577851,219,0 +170761577899,216,0 +170761577948,215,0 +170761577996,216,0 +170761578044,216,0 +170761578092,217,0 +170761578141,218,0 +170761578189,218,0 +170761578239,218,0 +170761578287,219,0 +170761578336,220,0 +170761578384,220,0 +170761578432,221,0 +170761578480,220,0 +170761578528,221,0 +170761578576,221,0 +170761578624,218,0 +170761578673,220,0 +170761578721,219,0 +170761578769,216,0 +170761578817,216,0 +170761578866,216,0 +170761578914,218,0 +170761578962,219,0 +170761579010,218,0 +170761579058,218,0 +170761579108,219,0 +170761579156,220,0 +170761579204,219,0 +170761579253,222,0 +170761579301,220,0 +170761579349,222,0 +170761579397,220,0 +170761579445,220,0 +170761579493,219,0 +170761579542,220,0 +170761579592,216,0 +170761579639,216,0 +170761579687,216,0 +170761579735,217,0 +170761579783,217,0 +170761579833,217,0 +170761579881,219,0 +170761579929,219,0 +170761579978,219,0 +170761580026,220,0 +170761580074,220,0 +170761580122,220,0 +170761580170,220,0 +170761580219,220,0 +170761580267,220,0 +170761580315,220,0 +170761580365,220,0 +170761580413,219,0 +170761580461,214,0 +170761580510,214,0 +170761580558,214,0 +170761580606,215,0 +170761580654,215,0 +170761580702,216,0 +170761580751,216,0 +170761580799,217,0 +170761580849,217,0 +170761580896,217,0 +170761580944,217,0 +170761580992,218,0 +170761581040,219,0 +170761581090,219,0 +170761581138,220,0 +170761581187,220,0 +170761581235,219,0 +170761581283,219,0 +170761581331,214,0 +170761581379,214,0 +170761581427,214,0 +170761581475,215,0 +170761581523,215,0 +170761581570,215,0 +170761581618,216,0 +170761581666,216,0 +170761581714,217,0 +170761581762,218,0 +170761581810,218,0 +170761581860,219,0 +170761581909,219,0 +170761581957,219,0 +170761582007,219,0 +170761582054,219,0 +170761582104,220,0 +170761582152,215,0 +170761582201,214,0 +170761582249,214,0 +170761582297,215,0 +170761582347,215,0 +170761582395,216,0 +170761582443,217,0 +170761582491,216,0 +170761582540,217,0 +170761582588,218,0 +170761582637,218,0 +170761582685,219,0 +170761582733,219,0 +170761582783,219,0 +170761582832,219,0 +170761582882,220,0 +170761582931,219,0 +170761582981,219,0 +170761583029,214,0 +170761583078,214,0 +170761583126,214,0 +170761583176,215,0 +170761583225,215,0 +170761583273,216,0 +170761583321,216,0 +170761583369,216,0 +170761583417,216,0 +170761583466,217,0 +170761583516,217,0 +170761583565,218,0 +170761583613,218,0 +170761583661,218,0 +170761583709,219,0 +170761583757,219,0 +170761583805,219,0 +170761583853,215,0 +170761583901,214,0 +170761583950,215,0 +170761583998,215,0 +170761584046,216,0 +170761584094,216,0 +170761584142,217,0 +170761584191,217,0 +170761584239,217,0 +170761584289,218,0 +170761584337,219,0 +170761584386,218,0 +170761584434,219,0 +170761584482,219,0 +170761584530,219,0 +170761584578,220,0 +170761584626,219,0 +170761584674,219,0 +170761584722,215,0 +170761584771,214,0 +170761584821,215,0 +170761584869,215,0 +170761584916,216,0 +170761584966,219,0 +170761585014,216,0 +170761585062,217,0 +170761585110,217,0 +170761585158,218,0 +170761585206,219,0 +170761585254,219,0 +170761585301,220,0 +170761585351,220,0 +170761585399,220,0 +170761585447,220,0 +170761585496,219,0 +170761585544,215,0 +170761585592,215,0 +170761585640,215,0 +170761585688,216,0 +170761585736,216,0 +170761585784,216,0 +170761585832,217,0 +170761585880,218,0 +170761585928,218,0 +170761585977,219,0 +170761586027,220,0 +170761586075,220,0 +170761586123,221,0 +170761586170,221,0 +170761586218,220,0 +170761586268,220,0 +170761586316,219,0 +170761586364,219,0 +170761586412,218,0 +170761586460,216,0 +170761586508,217,0 +170761586555,216,0 +170761586605,218,0 +170761586654,218,0 +170761586702,218,0 +170761586750,219,0 +170761586798,221,0 +170761586848,219,0 +170761586896,220,0 +170761586945,220,0 +170761586993,220,0 +170761587041,220,0 +170761587089,220,0 +170761587137,220,0 +170761587185,219,0 +170761587234,219,0 +170761587284,217,0 +170761587332,217,0 +170761587380,218,0 +170761587429,218,0 +170761587477,219,0 +170761587525,219,0 +170761587573,219,0 +170761587621,219,0 +170761587669,220,0 +170761587718,220,0 +170761587766,220,0 +170761587814,220,0 +170761587862,220,0 +170761587909,220,0 +170761587957,220,0 +170761588005,221,0 +170761588053,220,0 +170761588101,217,0 +170761588148,218,0 +170761588196,218,0 +170761588244,219,0 +170761588292,219,0 +170761588340,220,0 +170761588387,219,0 +170761588435,220,0 +170761588483,220,0 +170761588531,220,0 +170761588579,221,0 +170761588626,220,0 +170761588674,220,0 +170761588722,220,0 +170761588770,220,0 +170761588818,220,0 +170761588866,220,0 +170761588913,219,0 +170761588961,216,0 +170761589009,216,0 +170761589057,216,0 +170761589105,217,0 +170761589154,217,0 +170761589202,218,0 +170761589250,218,0 +170761589298,218,0 +170761589345,219,0 +170761589393,219,0 +170761589441,220,0 +170761589489,221,0 +170761589537,219,0 +170761589587,220,0 +170761589636,220,0 +170761589684,220,0 +170761589732,220,0 +170761589781,219,0 +170761589831,214,0 +170761589879,214,0 +170761589927,214,0 +170761589976,215,0 +170761590024,215,0 +170761590074,216,0 +170761590122,215,0 +170761590170,218,0 +170761590219,217,0 +170761590269,217,0 +170761590316,218,0 +170761590364,218,0 +170761590412,218,0 +170761590460,219,0 +170761590508,220,0 +170761590556,220,0 +170761590604,220,0 +170761590652,215,0 +170761590700,214,0 +170761590748,213,0 +170761590796,214,0 +170761590844,214,0 +170761590892,214,0 +170761590940,215,0 +170761590988,215,0 +170761591036,215,0 +170761591084,215,0 +170761591131,216,0 +170761591179,216,0 +170761591227,216,0 +170761591275,216,0 +170761591323,217,0 +170761591371,217,0 +170761591418,218,0 +170761591466,218,0 +170761591514,218,0 +170761591562,218,0 +170761591611,220,0 +170761591659,219,0 +170761591707,219,0 +170761591755,220,0 +170761591803,220,0 +170761591851,219,0 +170761591899,219,0 +170761591946,215,0 +170761591994,215,0 +170761592042,216,0 +170761592090,216,0 +170761592138,216,0 +170761592186,216,0 +170761592233,217,0 +170761592281,217,0 +170761592329,218,0 +170761592377,218,0 +170761592425,219,0 +170761592473,219,0 +170761592520,219,0 +170761592568,220,0 +170761592616,218,0 +170761592664,219,0 +170761592712,219,0 +170761592760,218,0 +170761592808,215,0 +170761592855,215,0 +170761592905,216,0 +170761592952,216,0 +170761593002,217,0 +170761593050,218,0 +170761593099,218,0 +170761593147,218,0 +170761593195,219,0 +170761593245,219,0 +170761593293,220,0 +170761593340,220,0 +170761593390,220,0 +170761593438,221,0 +170761593487,217,0 +170761593537,220,0 +170761593586,219,0 +170761593636,217,0 +170761593684,217,0 +170761593733,217,0 +170761593783,218,0 +170761593831,218,0 +170761593879,219,0 +170761593927,219,0 +170761593976,219,0 +170761594024,219,0 +170761594072,220,0 +170761594122,221,0 +170761594169,220,0 +170761594219,220,0 +170761594267,220,0 +170761594315,220,0 +170761594364,220,0 +170761594414,219,0 +170761594463,215,0 +170761594513,215,0 +170761594561,215,0 +170761594609,216,0 +170761594657,216,0 +170761594704,216,0 +170761594752,217,0 +170761594802,218,0 +170761594850,218,0 +170761594898,219,0 +170761594946,219,0 +170761594993,219,0 +170761595043,220,0 +170761595091,220,0 +170761595140,220,0 +170761595190,220,0 +170761595238,219,0 +170761595287,219,0 +170761595335,215,0 +170761595383,215,0 +170761595432,215,0 +170761595482,216,0 +170761595530,216,0 +170761595577,216,0 +170761595625,217,0 +170761595673,217,0 +170761595721,217,0 +170761595770,218,0 +170761595818,218,0 +170761595866,220,0 +170761595916,219,0 +170761595965,219,0 +170761596013,219,0 +170761596062,220,0 +170761596112,219,0 +170761596160,215,0 +170761596209,215,0 +170761596257,215,0 +170761596305,215,0 +170761596355,216,0 +170761596402,216,0 +170761596452,217,0 +170761596500,217,0 +170761596548,218,0 +170761596596,218,0 +170761596645,218,0 +170761596695,218,0 +170761596743,218,0 +170761596791,221,0 +170761596838,219,0 +170761596886,219,0 +170761596934,220,0 +170761596982,219,0 +170761597030,215,0 +170761597080,215,0 +170761597129,215,0 +170761597179,216,0 +170761597228,216,0 +170761597276,216,0 +170761597324,217,0 +170761597372,217,0 +170761597422,217,0 +170761597470,218,0 +170761597519,219,0 +170761597567,219,0 +170761597615,219,0 +170761597665,220,0 +170761597712,219,0 +170761597760,220,0 +170761597808,219,0 +170761597856,216,0 +170761597904,215,0 +170761597954,217,0 +170761598003,217,0 +170761598051,216,0 +170761598100,217,0 +170761598150,217,0 +170761598198,218,0 +170761598246,218,0 +170761598295,219,0 +170761598343,219,0 +170761598391,219,0 +170761598439,220,0 +170761598487,220,0 +170761598535,220,0 +170761598583,220,0 +170761598632,219,0 +170761598680,219,0 +170761598728,215,0 +170761598777,215,0 +170761598825,215,0 +170761598873,216,0 +170761598923,216,0 +170761598971,217,0 +170761599019,217,0 +170761599067,217,0 +170761599116,218,0 +170761599164,218,0 +170761599212,219,0 +170761599262,219,0 +170761599310,219,0 +170761599357,220,0 +170761599407,220,0 +170761599456,220,0 +170761599504,220,0 +170761599552,215,0 +170761599602,214,0 +170761599651,215,0 +170761599699,215,0 +170761599747,216,0 +170761599795,216,0 +170761599843,216,0 +170761599892,216,0 +170761599941,217,0 +170761599989,218,0 +170761600039,218,0 +170761600088,218,0 +170761600136,219,0 +170761600184,219,0 +170761600232,220,0 +170761600280,220,0 +170761600328,220,0 +170761600376,219,0 +170761600425,214,0 +170761600473,214,0 +170761600523,215,0 +170761600571,215,0 +170761600619,215,0 +170761600667,215,0 +170761600715,216,0 +170761600762,216,0 +170761600812,217,0 +170761600861,217,0 +170761600909,218,0 +170761600957,218,0 +170761601005,219,0 +170761601053,220,0 +170761601103,220,0 +170761601150,220,0 +170761601198,220,0 +170761601246,215,0 +170761601294,214,0 +170761601342,215,0 +170761601390,216,0 +170761601438,216,0 +170761601486,216,0 +170761601533,217,0 +170761601581,217,0 +170761601631,218,0 +170761601679,218,0 +170761601728,219,0 +170761601777,220,0 +170761601825,220,0 +170761601875,220,0 +170761601924,220,0 +170761601974,220,0 +170761602022,220,0 +170761602070,219,0 +170761602119,216,0 +170761602167,217,0 +170761602215,217,0 +170761602263,218,0 +170761602311,218,0 +170761602359,218,0 +170761602406,219,0 +170761602454,219,0 +170761602502,219,0 +170761602550,220,0 +170761602598,220,0 +170761602645,220,0 +170761602693,220,0 +170761602741,220,0 +170761602789,220,0 +170761602837,220,0 +170761602886,220,0 +170761602934,216,0 +170761602982,218,0 +170761603030,218,0 +170761603078,218,0 +170761603125,218,0 +170761603173,218,0 +170761603221,219,0 +170761603269,220,0 +170761603319,220,0 +170761603368,219,0 +170761603418,219,0 +170761603466,219,0 +170761603514,219,0 +170761603562,219,0 +170761603610,219,0 +170761603659,220,0 +170761603707,219,0 +170761603755,219,0 +170761603803,216,0 +170761603851,215,0 +170761603899,216,0 +170761603947,216,0 +170761603995,216,0 +170761604043,217,0 +170761604091,217,0 +170761604140,218,0 +170761604188,218,0 +170761604236,218,0 +170761604284,219,0 +170761604332,219,0 +170761604380,219,0 +170761604428,220,0 +170761604475,220,0 +170761604523,220,0 +170761604571,220,0 +170761604621,219,0 +170761604668,214,0 +170761604716,215,0 +170761604766,215,0 +170761604813,215,0 +170761604861,216,0 +170761604909,216,0 +170761604957,217,0 +170761605005,217,0 +170761605054,218,0 +170761605102,219,0 +170761605150,219,0 +170761605198,219,0 +170761605246,220,0 +170761605293,219,0 +170761605341,220,0 +170761605389,220,0 +170761605437,219,0 +170761605485,215,0 +170761605534,214,0 +170761605582,215,0 +170761605632,215,0 +170761605680,216,0 +170761605729,217,0 +170761605777,217,0 +170761605825,218,0 +170761605873,218,0 +170761605921,218,0 +170761605969,219,0 +170761606017,219,0 +170761606065,220,0 +170761606113,220,0 +170761606161,220,0 +170761606209,220,0 +170761606257,219,0 +170761606306,219,0 +170761606356,215,0 +170761606404,215,0 +170761606451,216,0 +170761606501,216,0 +170761606551,217,0 +170761606598,217,0 +170761606648,218,0 +170761606696,218,0 +170761606744,218,0 +170761606793,218,0 +170761606841,219,0 +170761606889,220,0 +170761606937,219,0 +170761606985,220,0 +170761607032,220,0 +170761607080,220,0 +170761607128,219,0 +170761607176,216,0 +170761607224,216,0 +170761607272,216,0 +170761607320,217,0 +170761607368,217,0 +170761607416,218,0 +170761607464,218,0 +170761607512,218,0 +170761607561,219,0 +170761607609,219,0 +170761607658,219,0 +170761607708,220,0 +170761607757,221,0 +170761607805,220,0 +170761607853,220,0 +170761607903,220,0 +170761607951,220,0 +170761608000,219,0 +170761608048,215,0 +170761608096,216,0 +170761608144,216,0 +170761608193,217,0 +170761608241,218,0 +170761608291,218,0 +170761608340,218,0 +170761608388,219,0 +170761608436,219,0 +170761608486,220,0 +170761608535,220,0 +170761608583,221,0 +170761608632,220,0 +170761608680,221,0 +170761608728,220,0 +170761608776,220,0 +170761608824,220,0 +170761608874,216,0 +170761608921,216,0 +170761608971,217,0 +170761609019,217,0 +170761609066,217,0 +170761609114,218,0 +170761609162,218,0 +170761609210,219,0 +170761609258,219,0 +170761609306,220,0 +170761609354,221,0 +170761609403,220,0 +170761609451,220,0 +170761609499,220,0 +170761609547,221,0 +170761609594,221,0 +170761609642,219,0 +170761609690,219,0 +170761609738,215,0 +170761609786,215,0 +170761609834,216,0 +170761609882,216,0 +170761609929,217,0 +170761609977,217,0 +170761610025,218,0 +170761610073,218,0 +170761610121,219,0 +170761610171,219,0 +170761610220,220,0 +170761610268,219,0 +170761610318,220,0 +170761610366,221,0 +170761610414,220,0 +170761610462,220,0 +170761610509,220,0 +170761610557,216,0 +170761610605,215,0 +170761610653,216,0 +170761610701,217,0 +170761610749,217,0 +170761610797,217,0 +170761610845,218,0 +170761610892,218,0 +170761610940,219,0 +170761610988,219,0 +170761611036,220,0 +170761611084,220,0 +170761611132,220,0 +170761611179,220,0 +170761611227,220,0 +170761611275,220,0 +170761611323,220,0 +170761611371,221,0 +170761611420,216,0 +170761611468,216,0 +170761611516,216,0 +170761611564,216,0 +170761611612,217,0 +170761611660,218,0 +170761611707,218,0 +170761611755,218,0 +170761611803,218,0 +170761611851,219,0 +170761611899,219,0 +170761611946,220,0 +170761611994,220,0 +170761612042,220,0 +170761612090,219,0 +170761612138,220,0 +170761612186,220,0 +170761612234,219,0 +170761612282,215,0 +170761612329,216,0 +170761612379,216,0 +170761612428,216,0 +170761612478,217,0 +170761612526,218,0 +170761612575,218,0 +170761612623,218,0 +170761612671,218,0 +170761612719,218,0 +170761612767,218,0 +170761612815,219,0 +170761612863,219,0 +170761612912,220,0 +170761612960,219,0 +170761613008,219,0 +170761613056,220,0 +170761613105,216,0 +170761613155,215,0 +170761613203,216,0 +170761613251,216,0 +170761613299,216,0 +170761613348,217,0 +170761613396,217,0 +170761613444,218,0 +170761613492,218,0 +170761613540,219,0 +170761613588,219,0 +170761613636,219,0 +170761613684,220,0 +170761613731,220,0 +170761613779,219,0 +170761613827,220,0 +170761613875,220,0 +170761613923,219,0 +170761613970,215,0 +170761614018,215,0 +170761614066,215,0 +170761614114,216,0 +170761614163,216,0 +170761614213,217,0 +170761614260,218,0 +170761614308,217,0 +170761614356,218,0 +170761614404,219,0 +170761614452,219,0 +170761614499,219,0 +170761614547,219,0 +170761614595,220,0 +170761614643,219,0 +170761614691,220,0 +170761614739,219,0 +170761614787,215,0 +170761614834,214,0 +170761614882,215,0 +170761614930,215,0 +170761614978,215,0 +170761615027,216,0 +170761615075,216,0 +170761615123,217,0 +170761615173,218,0 +170761615221,218,0 +170761615270,219,0 +170761615318,216,0 +170761615366,218,0 +170761615414,220,0 +170761615462,220,0 +170761615510,221,0 +170761615558,220,0 +170761615608,220,0 +170761615655,216,0 +170761615705,215,0 +170761615753,215,0 +170761615801,216,0 +170761615850,216,0 +170761615900,217,0 +170761615948,217,0 +170761615996,217,0 +170761616044,218,0 +170761616092,218,0 +170761616139,219,0 +170761616187,219,0 +170761616235,219,0 +170761616285,219,0 +170761616333,220,0 +170761616381,220,0 +170761616429,220,0 +170761616477,219,0 +170761616526,214,0 +170761616574,215,0 +170761616622,215,0 +170761616670,216,0 +170761616718,217,0 +170761616767,217,0 +170761616817,218,0 +170761616866,219,0 +170761616916,219,0 +170761616964,219,0 +170761617013,219,0 +170761617061,220,0 +170761617109,220,0 +170761617157,220,0 +170761617205,220,0 +170761617253,220,0 +170761617301,219,0 +170761617350,216,0 +170761617398,216,0 +170761617448,216,0 +170761617496,217,0 +170761617544,217,0 +170761617593,218,0 +170761617641,218,0 +170761617689,219,0 +170761617739,220,0 +170761617788,219,0 +170761617838,220,0 +170761617887,220,0 +170761617935,220,0 +170761617983,221,0 +170761618031,220,0 +170761618080,219,0 +170761618128,220,0 +170761618178,216,0 +170761618226,215,0 +170761618275,215,0 +170761618323,216,0 +170761618373,216,0 +170761618420,217,0 +170761618468,217,0 +170761618516,217,0 +170761618564,218,0 +170761618612,219,0 +170761618660,218,0 +170761618708,218,0 +170761618756,221,0 +170761618804,220,0 +170761618853,220,0 +170761618901,220,0 +170761618949,220,0 +170761618998,219,0 +170761619046,215,0 +170761619094,214,0 +170761619142,215,0 +170761619190,215,0 +170761619238,216,0 +170761619286,216,0 +170761619334,217,0 +170761619383,217,0 +170761619431,217,0 +170761619479,217,0 +170761619527,218,0 +170761619575,218,0 +170761619623,219,0 +170761619672,219,0 +170761619720,220,0 +170761619769,219,0 +170761619817,220,0 +170761619865,215,0 +170761619913,214,0 +170761619961,216,0 +170761620009,215,0 +170761620056,216,0 +170761620104,216,0 +170761620152,217,0 +170761620200,217,0 +170761620248,217,0 +170761620296,217,0 +170761620344,218,0 +170761620392,218,0 +170761620440,218,0 +170761620489,219,0 +170761620537,219,0 +170761620585,219,0 +170761620633,218,0 +170761620681,219,0 +170761620730,216,0 +170761620780,216,0 +170761620828,216,0 +170761620876,216,0 +170761620924,216,0 +170761620972,217,0 +170761621021,217,0 +170761621071,218,0 +170761621118,218,0 +170761621166,219,0 +170761621214,219,0 +170761621262,220,0 +170761621310,220,0 +170761621358,220,0 +170761621405,221,0 +170761621453,220,0 +170761621503,219,0 +170761621552,216,0 +170761621600,217,0 +170761621648,217,0 +170761621696,217,0 +170761621744,218,0 +170761621791,218,0 +170761621839,219,0 +170761621887,219,0 +170761621935,219,0 +170761621985,220,0 +170761622033,220,0 +170761622080,220,0 +170761622128,221,0 +170761622176,221,0 +170761622224,221,0 +170761622273,221,0 +170761622321,220,0 +170761622371,219,0 +170761622418,217,0 +170761622466,218,0 +170761622514,218,0 +170761622562,219,0 +170761622610,219,0 +170761622658,220,0 +170761622706,220,0 +170761622754,220,0 +170761622802,219,0 +170761622851,220,0 +170761622899,220,0 +170761622947,219,0 +170761622996,220,0 +170761623046,220,0 +170761623094,220,0 +170761623141,220,0 +170761623189,220,0 +170761623237,217,0 +170761623287,218,0 +170761623335,219,0 +170761623382,219,0 +170761623432,219,0 +170761623481,220,0 +170761623529,220,0 +170761623579,221,0 +170761623628,221,0 +170761623676,220,0 +170761623726,226,0 +170761623774,221,0 +170761623822,221,0 +170761623870,221,0 +170761623919,220,0 +170761623968,220,0 +170761624018,220,0 +170761624068,219,0 +170761624115,216,0 +170761624163,216,0 +170761624213,217,0 +170761624261,217,0 +170761624310,218,0 +170761624358,218,0 +170761624406,219,0 +170761624454,219,0 +170761624502,219,0 +170761624550,219,0 +170761624600,220,0 +170761624647,219,0 +170761624695,220,0 +170761624743,220,0 +170761624791,220,0 +170761624839,220,0 +170761624887,220,0 +170761624936,216,0 +170761624984,216,0 +170761625032,216,0 +170761625080,217,0 +170761625128,217,0 +170761625176,217,0 +170761625224,218,0 +170761625272,218,0 +170761625320,219,0 +170761625367,219,0 +170761625415,220,0 +170761625463,220,0 +170761625511,220,0 +170761625559,220,0 +170761625607,221,0 +170761625654,220,0 +170761625702,220,0 +170761625750,219,0 +170761625798,216,0 +170761625846,216,0 +170761625893,216,0 +170761625941,217,0 +170761625989,217,0 +170761626037,217,0 +170761626086,218,0 +170761626134,219,0 +170761626182,218,0 +170761626230,219,0 +170761626278,221,0 +170761626326,220,0 +170761626373,220,0 +170761626423,220,0 +170761626471,220,0 +170761626518,220,0 +170761626566,219,0 +170761626616,216,0 +170761626665,215,0 +170761626713,216,0 +170761626762,216,0 +170761626810,216,0 +170761626858,217,0 +170761626906,217,0 +170761626954,218,0 +170761627002,217,0 +170761627050,218,0 +170761627097,219,0 +170761627145,219,0 +170761627193,220,0 +170761627241,219,0 +170761627289,220,0 +170761627337,220,0 +170761627384,221,0 +170761627432,220,0 +170761627480,215,0 +170761627528,214,0 +170761627577,215,0 +170761627625,216,0 +170761627675,216,0 +170761627722,216,0 +170761627770,217,0 +170761627818,217,0 +170761627866,218,0 +170761627914,219,0 +170761627962,218,0 +170761628009,219,0 +170761628057,219,0 +170761628107,219,0 +170761628155,220,0 +170761628204,220,0 +170761628252,220,0 +170761628302,217,0 +170761628351,214,0 +170761628399,214,0 +170761628447,215,0 +170761628495,215,0 +170761628544,215,0 +170761628592,216,0 +170761628640,216,0 +170761628689,216,0 +170761628737,216,0 +170761628785,217,0 +170761628833,218,0 +170761628882,218,0 +170761628931,219,0 +170761628979,219,0 +170761629027,219,0 +170761629075,219,0 +170761629123,218,0 +170761629171,215,0 +170761629219,214,0 +170761629266,214,0 +170761629314,215,0 +170761629362,215,0 +170761629411,216,0 +170761629461,216,0 +170761629509,217,0 +170761629557,216,0 +170761629605,216,0 +170761629652,217,0 +170761629700,218,0 +170761629748,219,0 +170761629796,219,0 +170761629844,220,0 +170761629894,219,0 +170761629942,219,0 +170761629989,215,0 +170761630037,214,0 +170761630085,214,0 +170761630133,215,0 +170761630183,215,0 +170761630231,216,0 +170761630280,216,0 +170761630328,217,0 +170761630376,217,0 +170761630425,218,0 +170761630473,218,0 +170761630521,218,0 +170761630569,218,0 +170761630617,219,0 +170761630665,219,0 +170761630715,219,0 +170761630764,220,0 +170761630814,219,0 +170761630863,214,0 +170761630911,215,0 +170761630959,215,0 +170761631007,216,0 +170761631055,216,0 +170761631103,217,0 +170761631152,217,0 +170761631200,218,0 +170761631248,218,0 +170761631296,218,0 +170761631344,219,0 +170761631394,219,0 +170761631442,220,0 +170761631490,220,0 +170761631539,220,0 +170761631587,220,0 +170761631635,219,0 +170761631684,216,0 +170761631732,216,0 +170761631782,217,0 +170761631831,217,0 +170761631879,218,0 +170761631927,218,0 +170761631975,219,0 +170761632023,219,0 +170761632071,220,0 +170761632119,220,0 +170761632167,220,0 +170761632216,221,0 +170761632264,221,0 +170761632312,221,0 +170761632360,221,0 +170761632408,220,0 +170761632456,220,0 +170761632503,219,0 +170761632551,216,0 +170761632599,216,0 +170761632647,216,0 +170761632695,217,0 +170761632743,217,0 +170761632791,218,0 +170761632838,218,0 +170761632886,218,0 +170761632934,219,0 +170761632982,219,0 +170761633030,219,0 +170761633077,220,0 +170761633125,220,0 +170761633173,220,0 +170761633223,220,0 +170761633270,220,0 +170761633318,219,0 +170761633366,216,0 +170761633414,215,0 +170761633462,216,0 +170761633510,217,0 +170761633558,217,0 +170761633607,217,0 +170761633655,218,0 +170761633702,219,0 +170761633750,219,0 +170761633798,219,0 +170761633846,220,0 +170761633894,219,0 +170761633942,220,0 +170761633990,231,0 +170761634037,234,0 +170761634085,221,0 +170761634133,220,0 +170761634182,219,0 +170761634230,216,0 +170761634278,215,0 +170761634326,216,0 +170761634374,217,0 +170761634422,217,0 +170761634470,218,0 +170761634517,218,0 +170761634565,218,0 +170761634615,219,0 +170761634664,220,0 +170761634714,220,0 +170761634762,221,0 +170761634811,221,0 +170761634861,222,0 +170761634909,221,0 +170761634956,220,0 +170761635004,220,0 +170761635052,217,0 +170761635102,216,0 +170761635150,216,0 +170761635198,217,0 +170761635245,218,0 +170761635293,217,0 +170761635343,218,0 +170761635391,218,0 +170761635439,219,0 +170761635488,219,0 +170761635538,220,0 +170761635586,219,0 +170761635633,219,0 +170761635683,221,0 +170761635732,220,0 +170761635780,220,0 +170761635830,220,0 +170761635877,219,0 +170761635925,215,0 +170761635973,215,0 +170761636021,216,0 +170761636069,216,0 +170761636118,217,0 +170761636166,217,0 +170761636214,218,0 +170761636262,218,0 +170761636310,218,0 +170761636357,220,0 +170761636407,220,0 +170761636454,220,0 +170761636502,221,0 +170761636550,221,0 +170761636598,221,0 +170761636646,222,0 +170761636693,220,0 +170761636741,216,0 +170761636789,215,0 +170761636837,216,0 +170761636885,216,0 +170761636933,217,0 +170761636981,217,0 +170761637029,218,0 +170761637077,219,0 +170761637124,219,0 +170761637172,219,0 +170761637220,220,0 +170761637268,220,0 +170761637316,220,0 +170761637366,221,0 +170761637413,221,0 +170761637461,220,0 +170761637509,220,0 +170761637557,220,0 +170761637605,215,0 +170761637653,215,0 +170761637700,215,0 +170761637748,216,0 +170761637798,216,0 +170761637846,218,0 +170761637893,218,0 +170761637941,218,0 +170761637989,219,0 +170761638037,219,0 +170761638085,219,0 +170761638132,219,0 +170761638180,220,0 +170761638228,220,0 +170761638276,220,0 +170761638324,220,0 +170761638372,220,0 +170761638421,215,0 +170761638471,214,0 +170761638520,215,0 +170761638568,215,0 +170761638616,216,0 +170761638666,216,0 +170761638714,217,0 +170761638762,217,0 +170761638811,218,0 +170761638859,218,0 +170761638907,219,0 +170761638955,219,0 +170761639004,219,0 +170761639052,219,0 +170761639100,220,0 +170761639150,220,0 +170761639198,219,0 +170761639247,219,0 +170761639295,214,0 +170761639345,215,0 +170761639394,215,0 +170761639442,216,0 +170761639490,217,0 +170761639538,217,0 +170761639586,217,0 +170761639634,218,0 +170761639682,218,0 +170761639730,219,0 +170761639779,219,0 +170761639827,219,0 +170761639877,218,0 +170761639926,220,0 +170761639974,219,0 +170761640022,220,0 +170761640070,222,0 +170761640118,215,0 +170761640166,215,0 +170761640213,215,0 +170761640261,216,0 +170761640309,216,0 +170761640357,217,0 +170761640405,217,0 +170761640453,217,0 +170761640501,218,0 +170761640550,217,0 +170761640599,218,0 +170761640649,218,0 +170761640697,218,0 +170761640746,218,0 +170761640794,219,0 +170761640843,219,0 +170761640891,220,0 +170761640939,220,0 +170761640989,215,0 +170761641038,216,0 +170761641086,216,0 +170761641136,217,0 +170761641184,217,0 +170761641232,218,0 +170761641280,218,0 +170761641328,219,0 +170761641376,219,0 +170761641423,220,0 +170761641471,220,0 +170761641521,220,0 +170761641570,219,0 +170761641618,219,0 +170761641666,218,0 +170761641714,220,0 +170761641761,219,0 +170761641809,216,0 +170761641857,216,0 +170761641905,217,0 +170761641953,217,0 +170761642002,217,0 +170761642050,218,0 +170761642098,219,0 +170761642146,219,0 +170761642193,220,0 +170761642241,220,0 +170761642291,219,0 +170761642339,219,0 +170761642388,220,0 +170761642438,219,0 +170761642486,218,0 +170761642534,219,0 +170761642581,219,0 +170761642629,216,0 +170761642677,217,0 +170761642725,217,0 +170761642773,218,0 +170761642821,218,0 +170761642869,218,0 +170761642916,218,0 +170761642964,219,0 +170761643014,219,0 +170761643061,219,0 +170761643109,221,0 +170761643157,220,0 +170761643205,220,0 +170761643253,220,0 +170761643301,220,0 +170761643348,220,0 +170761643396,220,0 +170761643444,216,0 +170761643492,215,0 +170761643540,216,0 +170761643589,217,0 +170761643637,217,0 +170761643684,217,0 +170761643732,218,0 +170761643780,218,0 +170761643828,219,0 +170761643876,219,0 +170761643924,220,0 +170761643972,219,0 +170761644020,220,0 +170761644067,220,0 +170761644117,220,0 +170761644165,219,0 +170761644212,220,0 +170761644260,216,0 +170761644308,215,0 +170761644356,216,0 +170761644404,216,0 +170761644451,217,0 +170761644499,217,0 +170761644547,218,0 +170761644595,218,0 +170761644643,219,0 +170761644690,220,0 +170761644738,220,0 +170761644786,220,0 +170761644836,220,0 +170761644884,220,0 +170761644933,220,0 +170761644981,220,0 +170761645029,220,0 +170761645077,216,0 +170761645125,216,0 +170761645173,217,0 +170761645221,217,0 +170761645270,219,0 +170761645320,218,0 +170761645369,219,0 +170761645417,218,0 +170761645465,220,0 +170761645514,220,0 +170761645564,220,0 +170761645613,220,0 +170761645663,220,0 +170761645711,221,0 +170761645758,220,0 +170761645806,220,0 +170761645854,220,0 +170761645902,217,0 +170761645951,217,0 +170761646001,217,0 +170761646049,218,0 +170761646097,219,0 +170761646145,218,0 +170761646194,220,0 +170761646242,219,0 +170761646290,220,0 +170761646339,220,0 +170761646387,220,0 +170761646435,221,0 +170761646483,220,0 +170761646531,221,0 +170761646579,220,0 +170761646628,221,0 +170761646676,220,0 +170761646724,219,0 +170761646772,216,0 +170761646821,216,0 +170761646871,216,0 +170761646920,217,0 +170761646968,217,0 +170761647017,218,0 +170761647065,218,0 +170761647113,219,0 +170761647161,219,0 +170761647209,220,0 +170761647257,220,0 +170761647305,220,0 +170761647353,219,0 +170761647400,219,0 +170761647448,220,0 +170761647496,220,0 +170761647546,221,0 +170761647594,215,0 +170761647643,215,0 +170761647691,216,0 +170761647740,216,0 +170761647790,217,0 +170761647839,217,0 +170761647889,218,0 +170761647938,218,0 +170761647988,219,0 +170761648037,219,0 +170761648087,219,0 +170761648136,220,0 +170761648186,220,0 +170761648234,221,0 +170761648283,220,0 +170761648332,220,0 +170761648380,215,0 +170761648428,215,0 +170761648478,216,0 +170761648526,216,0 +170761648574,216,0 +170761648621,217,0 +170761648671,217,0 +170761648719,218,0 +170761648768,218,0 +170761648816,219,0 +170761648866,220,0 +170761648914,220,0 +170761648963,220,0 +170761649013,220,0 +170761649061,220,0 +170761649108,220,0 +170761649158,222,0 +170761649206,218,0 +170761649254,215,0 +170761649302,215,0 +170761649350,217,0 +170761649399,217,0 +170761649447,217,0 +170761649496,217,0 +170761649546,218,0 +170761649595,218,0 +170761649645,219,0 +170761649693,220,0 +170761649741,220,0 +170761649790,220,0 +170761649838,220,0 +170761649886,220,0 +170761649934,220,0 +170761649982,220,0 +170761650030,219,0 +170761650077,216,0 +170761650125,216,0 +170761650175,217,0 +170761650223,217,0 +170761650271,217,0 +170761650319,218,0 +170761650367,218,0 +170761650415,217,0 +170761650463,219,0 +170761650510,220,0 +170761650558,220,0 +170761650606,221,0 +170761650656,221,0 +170761650705,221,0 +170761650755,221,0 +170761650803,221,0 +170761650850,220,0 +170761650898,216,0 +170761650946,217,0 +170761650996,217,0 +170761651045,217,0 +170761651095,218,0 +170761651143,219,0 +170761651191,218,0 +170761651238,219,0 +170761651286,220,0 +170761651334,220,0 +170761651382,220,0 +170761651430,220,0 +170761651480,220,0 +170761651527,220,0 +170761651575,220,0 +170761651623,220,0 +170761651671,220,0 +170761651719,215,0 +170761651768,215,0 +170761651816,216,0 +170761651864,216,0 +170761651912,217,0 +170761651959,217,0 +170761652007,218,0 +170761652055,218,0 +170761652103,219,0 +170761652151,219,0 +170761652198,220,0 +170761652246,219,0 +170761652294,220,0 +170761652342,220,0 +170761652390,220,0 +170761652440,220,0 +170761652487,220,0 +170761652535,215,0 +170761652583,215,0 +170761652631,215,0 +170761652679,216,0 +170761652729,216,0 +170761652777,217,0 +170761652825,217,0 +170761652873,217,0 +170761652920,218,0 +170761652970,218,0 +170761653018,219,0 +170761653067,219,0 +170761653115,220,0 +170761653163,222,0 +170761653211,220,0 +170761653259,220,0 +170761653307,220,0 +170761653356,215,0 +170761653404,214,0 +170761653452,214,0 +170761653500,215,0 +170761653548,215,0 +170761653596,216,0 +170761653645,217,0 +170761653693,217,0 +170761653741,218,0 +170761653790,218,0 +170761653838,219,0 +170761653888,221,0 +170761653936,219,0 +170761653985,220,0 +170761654033,220,0 +170761654081,220,0 +170761654129,220,0 +170761654177,215,0 +170761654225,215,0 +170761654274,215,0 +170761654322,216,0 +170761654370,216,0 +170761654418,216,0 +170761654467,217,0 +170761654515,217,0 +170761654563,218,0 +170761654613,218,0 +170761654661,219,0 +170761654709,220,0 +170761654758,219,0 +170761654808,219,0 +170761654856,220,0 +170761654905,221,0 +170761654953,219,0 +170761655001,215,0 +170761655049,215,0 +170761655097,215,0 +170761655145,216,0 +170761655193,216,0 +170761655240,217,0 +170761655288,216,0 +170761655338,217,0 +170761655386,218,0 +170761655434,218,0 +170761655483,219,0 +170761655533,220,0 +170761655582,219,0 +170761655630,219,0 +170761655679,219,0 +170761655727,220,0 +170761655777,220,0 +170761655825,215,0 +170761655874,215,0 +170761655922,216,0 +170761655972,216,0 +170761656019,217,0 +170761656069,219,0 +170761656118,217,0 +170761656166,217,0 +170761656216,219,0 +170761656264,219,0 +170761656313,220,0 +170761656361,223,0 +170761656411,220,0 +170761656460,220,0 +170761656510,220,0 +170761656558,220,0 +170761656606,219,0 +170761656654,216,0 +170761656703,216,0 +170761656752,217,0 +170761656800,217,0 +170761656848,217,0 +170761656898,218,0 +170761656947,219,0 +170761656997,218,0 +170761657045,220,0 +170761657093,220,0 +170761657141,220,0 +170761657189,221,0 +170761657237,220,0 +170761657284,221,0 +170761657332,221,0 +170761657382,221,0 +170761657430,220,0 +170761657479,215,0 +170761657527,215,0 +170761657575,215,0 +170761657623,216,0 +170761657673,217,0 +170761657721,217,0 +170761657769,218,0 +170761657816,218,0 +170761657864,219,0 +170761657912,219,0 +170761657960,220,0 +170761658010,220,0 +170761658058,220,0 +170761658105,220,0 +170761658155,220,0 +170761658203,221,0 +170761658251,220,0 +170761658299,216,0 +170761658347,216,0 +170761658394,216,0 +170761658444,217,0 +170761658492,217,0 +170761658540,218,0 +170761658588,219,0 +170761658636,219,0 +170761658685,219,0 +170761658733,220,0 +170761658783,220,0 +170761658830,220,0 +170761658878,223,0 +170761658928,220,0 +170761658976,220,0 +170761659024,220,0 +170761659072,220,0 +170761659121,219,0 +170761659169,218,0 +170761659217,218,0 +170761659265,218,0 +170761659313,219,0 +170761659362,219,0 +170761659410,220,0 +170761659460,220,0 +170761659508,220,0 +170761659557,221,0 +170761659605,220,0 +170761659654,221,0 +170761659702,220,0 +170761659750,220,0 +170761659798,220,0 +170761659848,220,0 +170761659896,220,0 +170761659945,218,0 +170761659993,218,0 +170761660041,217,0 +170761660090,218,0 +170761660140,217,0 +170761660188,218,0 +170761660236,219,0 +170761660284,219,0 +170761660333,220,0 +170761660382,220,0 +170761660429,220,0 +170761660479,219,0 +170761660527,219,0 +170761660576,221,0 +170761660624,221,0 +170761660674,220,0 +170761660722,221,0 +170761660770,217,0 +170761660818,216,0 +170761660867,216,0 +170761660915,217,0 +170761660963,217,0 +170761661011,217,0 +170761661059,219,0 +170761661109,218,0 +170761661158,219,0 +170761661208,220,0 +170761661255,221,0 +170761661305,220,0 +170761661353,221,0 +170761661403,220,0 +170761661450,220,0 +170761661498,220,0 +170761661546,220,0 +170761661596,217,0 +170761661645,215,0 +170761661693,217,0 +170761661741,216,0 +170761661791,217,0 +170761661838,217,0 +170761661886,218,0 +170761661936,218,0 +170761661984,219,0 +170761662032,220,0 +170761662081,219,0 +170761662131,220,0 +170761662180,220,0 +170761662230,221,0 +170761662278,220,0 +170761662325,220,0 +170761662375,220,0 +170761662423,219,0 +170761662471,216,0 +170761662519,216,0 +170761662566,216,0 +170761662614,217,0 +170761662664,217,0 +170761662712,218,0 +170761662761,219,0 +170761662811,219,0 +170761662859,219,0 +170761662908,219,0 +170761662958,220,0 +170761663006,220,0 +170761663053,220,0 +170761663101,221,0 +170761663149,219,0 +170761663199,219,0 +170761663247,219,0 +170761663295,216,0 +170761663342,216,0 +170761663392,217,0 +170761663440,217,0 +170761663489,218,0 +170761663539,218,0 +170761663587,218,0 +170761663635,219,0 +170761663683,219,0 +170761663732,220,0 +170761663780,221,0 +170761663828,220,0 +170761663876,220,0 +170761663926,221,0 +170761663974,220,0 +170761664023,220,0 +170761664073,218,0 +170761664122,215,0 +170761664170,216,0 +170761664218,216,0 +170761664266,217,0 +170761664315,218,0 +170761664363,218,0 +170761664413,219,0 +170761664461,219,0 +170761664510,220,0 +170761664558,220,0 +170761664606,221,0 +170761664655,220,0 +170761664705,221,0 +170761664753,221,0 +170761664801,221,0 +170761664850,219,0 +170761664898,219,0 +170761664946,215,0 +170761664994,215,0 +170761665042,216,0 +170761665090,217,0 +170761665138,217,0 +170761665187,217,0 +170761665237,218,0 +170761665286,219,0 +170761665334,220,0 +170761665384,219,0 +170761665432,219,0 +170761665480,219,0 +170761665529,219,0 +170761665577,220,0 +170761665625,220,0 +170761665673,220,0 +170761665721,219,0 +170761665770,215,0 +170761665820,215,0 +170761665868,216,0 +170761665917,217,0 +170761665965,217,0 +170761666015,218,0 +170761666062,218,0 +170761666112,219,0 +170761666161,218,0 +170761666211,220,0 +170761666259,219,0 +170761666307,220,0 +170761666355,220,0 +170761666403,220,0 +170761666452,224,0 +170761666502,220,0 +170761666550,216,0 +170761666598,215,0 +170761666645,216,0 +170761666695,217,0 +170761666743,217,0 +170761666791,217,0 +170761666840,218,0 +170761666888,218,0 +170761666938,218,0 +170761666985,219,0 +170761667033,219,0 +170761667081,219,0 +170761667129,220,0 +170761667177,219,0 +170761667227,220,0 +170761667276,220,0 +170761667324,219,0 +170761667372,216,0 +170761667422,216,0 +170761667470,216,0 +170761667518,217,0 +170761667565,217,0 +170761667613,217,0 +170761667661,218,0 +170761667711,219,0 +170761667759,219,0 +170761667807,219,0 +170761667855,219,0 +170761667903,220,0 +170761667950,222,0 +170761667998,220,0 +170761668048,219,0 +170761668097,220,0 +170761668145,220,0 +170761668193,219,0 +170761668241,216,0 +170761668289,216,0 +170761668338,216,0 +170761668386,217,0 +170761668436,216,0 +170761668485,220,0 +170761668533,218,0 +170761668582,220,0 +170761668630,221,0 +170761668678,220,0 +170761668728,220,0 +170761668777,221,0 +170761668825,221,0 +170761668875,220,0 +170761668922,220,0 +170761668970,220,0 +170761669018,219,0 +170761669066,216,0 +170761669114,216,0 +170761669162,217,0 +170761669210,218,0 +170761669258,218,0 +170761669306,218,0 +170761669355,219,0 +170761669405,217,0 +170761669453,218,0 +170761669502,219,0 +170761669550,219,0 +170761669598,219,0 +170761669646,220,0 +170761669694,218,0 +170761669743,219,0 +170761669793,220,0 +170761669841,219,0 +170761669889,215,0 +170761669937,216,0 +170761669984,216,0 +170761670034,217,0 +170761670083,217,0 +170761670133,217,0 +170761670181,217,0 +170761670229,218,0 +170761670277,219,0 +170761670325,219,0 +170761670373,219,0 +170761670422,219,0 +170761670472,220,0 +170761670519,220,0 +170761670567,220,0 +170761670617,221,0 +170761670666,219,0 +170761670714,214,0 +170761670762,214,0 +170761670810,215,0 +170761670858,216,0 +170761670906,216,0 +170761670956,216,0 +170761671004,217,0 +170761671051,217,0 +170761671099,218,0 +170761671147,218,0 +170761671195,219,0 +170761671243,219,0 +170761671291,219,0 +170761671339,220,0 +170761671387,220,0 +170761671436,220,0 +170761671484,220,0 +170761671532,215,0 +170761671580,214,0 +170761671628,215,0 +170761671676,216,0 +170761671725,217,0 +170761671775,217,0 +170761671823,217,0 +170761671871,218,0 +170761671920,219,0 +170761671968,219,0 +170761672016,219,0 +170761672064,219,0 +170761672112,220,0 +170761672160,220,0 +170761672208,220,0 +170761672255,220,0 +170761672303,219,0 +170761672351,216,0 +170761672401,216,0 +170761672450,216,0 +170761672500,217,0 +170761672548,217,0 +170761672595,219,0 +170761672645,218,0 +170761672693,219,0 +170761672742,219,0 +170761672790,220,0 +170761672838,220,0 +170761672886,220,0 +170761672934,220,0 +170761672982,220,0 +170761673030,221,0 +170761673078,220,0 +170761673126,220,0 +170761673173,216,0 +170761673221,216,0 +170761673271,216,0 +170761673318,217,0 +170761673368,218,0 +170761673416,217,0 +170761673464,219,0 +170761673511,218,0 +170761673559,219,0 +170761673607,219,0 +170761673657,219,0 +170761673705,220,0 +170761673752,220,0 +170761673800,220,0 +170761673850,220,0 +170761673899,220,0 +170761673947,219,0 +170761673995,215,0 +170761674043,214,0 +170761674091,215,0 +170761674139,215,0 +170761674187,216,0 +170761674235,216,0 +170761674283,217,0 +170761674331,217,0 +170761674379,218,0 +170761674428,219,0 +170761674476,219,0 +170761674524,220,0 +170761674572,219,0 +170761674620,220,0 +170761674668,220,0 +170761674717,220,0 +170761674765,220,0 +170761674815,215,0 +170761674863,215,0 +170761674911,215,0 +170761674958,215,0 +170761675006,216,0 +170761675054,217,0 +170761675102,217,0 +170761675152,217,0 +170761675201,218,0 +170761675250,218,0 +170761675298,218,0 +170761675348,219,0 +170761675396,220,0 +170761675444,220,0 +170761675492,220,0 +170761675540,220,0 +170761675589,219,0 +170761675638,216,0 +170761675686,214,0 +170761675734,215,0 +170761675782,216,0 +170761675832,216,0 +170761675880,217,0 +170761675927,217,0 +170761675975,217,0 +170761676023,218,0 +170761676071,218,0 +170761676119,219,0 +170761676167,219,0 +170761676215,220,0 +170761676263,219,0 +170761676310,220,0 +170761676358,220,0 +170761676406,220,0 +170761676456,216,0 +170761676504,216,0 +170761676553,217,0 +170761676601,217,0 +170761676650,217,0 +170761676698,218,0 +170761676748,218,0 +170761676797,219,0 +170761676847,218,0 +170761676896,219,0 +170761676945,220,0 +170761676993,220,0 +170761677041,220,0 +170761677089,220,0 +170761677137,220,0 +170761677185,220,0 +170761677233,220,0 +170761677283,218,0 +170761677331,217,0 +170761677379,217,0 +170761677427,218,0 +170761677476,219,0 +170761677526,219,0 +170761677574,219,0 +170761677623,220,0 +170761677671,219,0 +170761677721,221,0 +170761677769,220,0 +170761677816,220,0 +170761677864,220,0 +170761677914,220,0 +170761677962,220,0 +170761678010,220,0 +170761678057,220,0 +170761678105,218,0 +170761678153,219,0 +170761678203,219,0 +170761678251,221,0 +170761678298,220,0 +170761678346,221,0 +170761678396,220,0 +170761678444,220,0 +170761678492,221,0 +170761678539,221,0 +170761678587,221,0 +170761678635,221,0 +170761678683,221,0 +170761678731,221,0 +170761678779,220,0 +170761678827,220,0 +170761678875,220,0 +170761678924,217,0 +170761678974,218,0 +170761679022,219,0 +170761679070,218,0 +170761679117,219,0 +170761679165,220,0 +170761679213,220,0 +170761679261,220,0 +170761679309,220,0 +170761679357,221,0 +170761679405,221,0 +170761679452,220,0 +170761679500,221,0 +170761679550,221,0 +170761679599,224,0 +170761679647,220,0 +170761679695,220,0 +170761679743,220,0 +170761679791,216,0 +170761679839,217,0 +170761679888,217,0 +170761679936,218,0 +170761679984,218,0 diff --git a/laser_value/0211-12.csv b/laser_value/0211-12.csv new file mode 100644 index 0000000..454a538 --- /dev/null +++ b/laser_value/0211-12.csv @@ -0,0 +1,7452 @@ +timestamp,laser_value,event +170761680033,219,0 +170761680081,219,0 +170761680129,219,0 +170761680176,220,0 +170761680224,220,0 +170761680274,221,0 +170761680323,220,0 +170761680373,220,0 +170761680421,221,0 +170761680468,220,0 +170761680516,220,0 +170761680566,219,0 +170761680614,215,0 +170761680662,215,0 +170761680710,216,0 +170761680758,216,0 +170761680806,217,0 +170761680853,217,0 +170761680901,217,0 +170761680949,218,0 +170761680999,218,0 +170761681047,219,0 +170761681095,219,0 +170761681142,220,0 +170761681192,221,0 +170761681241,221,0 +170761681291,220,0 +170761681339,220,0 +170761681388,219,0 +170761681438,215,0 +170761681487,215,0 +170761681537,216,0 +170761681585,216,0 +170761681633,216,0 +170761681681,216,0 +170761681728,217,0 +170761681778,218,0 +170761681827,219,0 +170761681875,219,0 +170761681923,219,0 +170761681971,219,0 +170761682019,220,0 +170761682067,221,0 +170761682115,220,0 +170761682163,220,0 +170761682212,219,0 +170761682262,215,0 +170761682311,215,0 +170761682359,216,0 +170761682408,216,0 +170761682456,216,0 +170761682504,217,0 +170761682552,218,0 +170761682600,218,0 +170761682649,218,0 +170761682699,219,0 +170761682747,220,0 +170761682796,219,0 +170761682844,220,0 +170761682892,220,0 +170761682940,220,0 +170761682989,220,0 +170761683039,219,0 +170761683087,215,0 +170761683136,215,0 +170761683184,216,0 +170761683232,216,0 +170761683282,216,0 +170761683329,216,0 +170761683377,217,0 +170761683427,217,0 +170761683475,218,0 +170761683523,218,0 +170761683572,217,0 +170761683622,219,0 +170761683670,220,0 +170761683717,220,0 +170761683765,220,0 +170761683813,219,0 +170761683861,219,0 +170761683911,215,0 +170761683960,215,0 +170761684008,215,0 +170761684056,216,0 +170761684104,216,0 +170761684152,215,0 +170761684200,216,0 +170761684248,217,0 +170761684297,217,0 +170761684347,218,0 +170761684396,218,0 +170761684446,219,0 +170761684494,218,0 +170761684542,219,0 +170761684590,220,0 +170761684637,220,0 +170761684685,218,0 +170761684733,214,0 +170761684783,214,0 +170761684830,214,0 +170761684878,215,0 +170761684926,215,0 +170761684974,216,0 +170761685022,216,0 +170761685070,217,0 +170761685118,217,0 +170761685165,218,0 +170761685213,218,0 +170761685261,219,0 +170761685309,219,0 +170761685357,219,0 +170761685405,221,0 +170761685452,220,0 +170761685500,219,0 +170761685550,215,0 +170761685599,215,0 +170761685649,216,0 +170761685698,216,0 +170761685748,217,0 +170761685796,217,0 +170761685844,218,0 +170761685892,218,0 +170761685939,218,0 +170761685989,219,0 +170761686037,219,0 +170761686086,220,0 +170761686134,219,0 +170761686182,221,0 +170761686232,221,0 +170761686280,220,0 +170761686328,220,0 +170761686376,218,0 +170761686425,217,0 +170761686475,218,0 +170761686522,217,0 +170761686572,218,0 +170761686620,218,0 +170761686668,219,0 +170761686716,219,0 +170761686764,219,0 +170761686812,219,0 +170761686861,220,0 +170761686909,220,0 +170761686957,220,0 +170761687005,220,0 +170761687054,219,0 +170761687102,220,0 +170761687150,220,0 +170761687200,217,0 +170761687248,216,0 +170761687296,216,0 +170761687345,217,0 +170761687393,218,0 +170761687442,218,0 +170761687492,217,0 +170761687540,219,0 +170761687588,219,0 +170761687637,219,0 +170761687685,220,0 +170761687733,220,0 +170761687781,220,0 +170761687829,220,0 +170761687877,220,0 +170761687925,220,0 +170761687973,220,0 +170761688021,216,0 +170761688070,216,0 +170761688120,216,0 +170761688168,217,0 +170761688216,217,0 +170761688265,218,0 +170761688313,218,0 +170761688362,218,0 +170761688412,219,0 +170761688460,220,0 +170761688508,220,0 +170761688555,220,0 +170761688603,221,0 +170761688651,220,0 +170761688699,220,0 +170761688747,220,0 +170761688795,220,0 +170761688843,217,0 +170761688891,216,0 +170761688940,218,0 +170761688988,218,0 +170761689038,218,0 +170761689085,218,0 +170761689135,220,0 +170761689184,219,0 +170761689232,220,0 +170761689282,220,0 +170761689330,221,0 +170761689379,220,0 +170761689428,221,0 +170761689476,221,0 +170761689524,220,0 +170761689572,220,0 +170761689622,219,0 +170761689670,217,0 +170761689717,218,0 +170761689767,218,0 +170761689815,219,0 +170761689863,219,0 +170761689911,219,0 +170761689959,218,0 +170761690006,219,0 +170761690054,219,0 +170761690102,220,0 +170761690152,220,0 +170761690201,220,0 +170761690251,221,0 +170761690300,222,0 +170761690350,220,0 +170761690399,221,0 +170761690447,219,0 +170761690495,216,0 +170761690543,216,0 +170761690592,217,0 +170761690640,218,0 +170761690688,218,0 +170761690738,219,0 +170761690785,219,0 +170761690833,219,0 +170761690881,219,0 +170761690929,220,0 +170761690979,220,0 +170761691026,220,0 +170761691076,221,0 +170761691125,221,0 +170761691175,220,0 +170761691224,220,0 +170761691272,220,0 +170761691320,216,0 +170761691368,216,0 +170761691416,216,0 +170761691464,217,0 +170761691512,218,0 +170761691559,218,0 +170761691607,220,0 +170761691655,219,0 +170761691703,219,0 +170761691751,220,0 +170761691799,220,0 +170761691847,220,0 +170761691895,220,0 +170761691944,220,0 +170761691992,220,0 +170761692040,220,0 +170761692089,219,0 +170761692137,215,0 +170761692187,215,0 +170761692236,215,0 +170761692286,216,0 +170761692335,216,0 +170761692383,217,0 +170761692431,217,0 +170761692481,218,0 +170761692530,219,0 +170761692580,219,0 +170761692628,219,0 +170761692675,220,0 +170761692723,219,0 +170761692773,221,0 +170761692822,220,0 +170761692872,220,0 +170761692920,220,0 +170761692968,215,0 +170761693017,214,0 +170761693065,215,0 +170761693113,215,0 +170761693161,216,0 +170761693209,216,0 +170761693257,217,0 +170761693306,217,0 +170761693354,218,0 +170761693402,218,0 +170761693451,219,0 +170761693501,219,0 +170761693549,219,0 +170761693597,219,0 +170761693645,220,0 +170761693693,219,0 +170761693742,219,0 +170761693790,215,0 +170761693839,214,0 +170761693887,215,0 +170761693937,215,0 +170761693985,216,0 +170761694033,216,0 +170761694081,216,0 +170761694130,216,0 +170761694178,217,0 +170761694226,217,0 +170761694276,217,0 +170761694325,220,0 +170761694373,219,0 +170761694421,219,0 +170761694469,219,0 +170761694517,220,0 +170761694565,220,0 +170761694613,216,0 +170761694661,215,0 +170761694710,216,0 +170761694760,216,0 +170761694807,217,0 +170761694855,217,0 +170761694903,217,0 +170761694953,217,0 +170761695002,218,0 +170761695050,219,0 +170761695098,219,0 +170761695148,219,0 +170761695195,220,0 +170761695243,220,0 +170761695293,219,0 +170761695342,219,0 +170761695392,219,0 +170761695440,216,0 +170761695489,215,0 +170761695537,216,0 +170761695585,217,0 +170761695633,217,0 +170761695681,218,0 +170761695729,219,0 +170761695778,221,0 +170761695826,219,0 +170761695874,219,0 +170761695923,220,0 +170761695971,220,0 +170761696019,220,0 +170761696067,220,0 +170761696115,221,0 +170761696163,221,0 +170761696211,219,0 +170761696260,216,0 +170761696308,215,0 +170761696358,216,0 +170761696407,216,0 +170761696455,217,0 +170761696504,217,0 +170761696554,218,0 +170761696602,217,0 +170761696651,221,0 +170761696699,219,0 +170761696749,220,0 +170761696797,219,0 +170761696846,220,0 +170761696894,219,0 +170761696942,220,0 +170761696990,219,0 +170761697040,220,0 +170761697087,215,0 +170761697135,215,0 +170761697185,216,0 +170761697234,216,0 +170761697282,217,0 +170761697330,217,0 +170761697380,218,0 +170761697428,218,0 +170761697476,218,0 +170761697524,219,0 +170761697572,220,0 +170761697619,219,0 +170761697667,220,0 +170761697717,220,0 +170761697765,219,0 +170761697814,219,0 +170761697864,219,0 +170761697913,215,0 +170761697961,215,0 +170761698009,215,0 +170761698058,216,0 +170761698108,216,0 +170761698156,216,0 +170761698204,217,0 +170761698252,217,0 +170761698300,218,0 +170761698348,218,0 +170761698396,219,0 +170761698444,219,0 +170761698493,220,0 +170761698543,220,0 +170761698592,220,0 +170761698642,220,0 +170761698691,219,0 +170761698741,217,0 +170761698788,218,0 +170761698836,219,0 +170761698886,219,0 +170761698934,219,0 +170761698982,220,0 +170761699030,220,0 +170761699078,220,0 +170761699126,220,0 +170761699174,221,0 +170761699223,221,0 +170761699271,221,0 +170761699321,221,0 +170761699368,220,0 +170761699418,221,0 +170761699468,220,0 +170761699516,219,0 +170761699563,219,0 +170761699611,219,0 +170761699659,219,0 +170761699709,220,0 +170761699757,220,0 +170761699806,220,0 +170761699855,221,0 +170761699903,220,0 +170761699953,221,0 +170761700001,220,0 +170761700049,220,0 +170761700097,220,0 +170761700146,220,0 +170761700194,221,0 +170761700242,220,0 +170761700290,220,0 +170761700338,219,0 +170761700387,218,0 +170761700435,218,0 +170761700483,218,0 +170761700531,219,0 +170761700581,219,0 +170761700629,219,0 +170761700678,218,0 +170761700728,218,0 +170761700777,220,0 +170761700825,219,0 +170761700873,220,0 +170761700922,220,0 +170761700972,220,0 +170761701020,220,0 +170761701069,220,0 +170761701119,219,0 +170761701167,219,0 +170761701216,216,0 +170761701264,217,0 +170761701312,217,0 +170761701360,217,0 +170761701408,218,0 +170761701456,218,0 +170761701505,219,0 +170761701553,219,0 +170761701601,219,0 +170761701649,220,0 +170761701697,220,0 +170761701745,220,0 +170761701794,220,0 +170761701844,219,0 +170761701892,219,0 +170761701939,220,0 +170761701989,218,0 +170761702038,215,0 +170761702086,216,0 +170761702134,216,0 +170761702182,216,0 +170761702230,217,0 +170761702278,217,0 +170761702326,218,0 +170761702375,218,0 +170761702425,218,0 +170761702473,218,0 +170761702521,219,0 +170761702569,220,0 +170761702618,219,0 +170761702668,219,0 +170761702716,219,0 +170761702764,219,0 +170761702812,219,0 +170761702860,215,0 +170761702908,215,0 +170761702958,216,0 +170761703007,217,0 +170761703055,216,0 +170761703103,217,0 +170761703151,217,0 +170761703199,218,0 +170761703248,218,0 +170761703296,219,0 +170761703346,219,0 +170761703395,219,0 +170761703443,220,0 +170761703491,220,0 +170761703541,220,0 +170761703589,220,0 +170761703638,219,0 +170761703686,215,0 +170761703734,216,0 +170761703784,217,0 +170761703833,217,0 +170761703883,218,0 +170761703930,218,0 +170761703978,218,0 +170761704028,219,0 +170761704077,220,0 +170761704127,220,0 +170761704176,220,0 +170761704224,219,0 +170761704272,221,0 +170761704322,220,0 +170761704371,219,0 +170761704421,219,0 +170761704469,215,0 +170761704517,216,0 +170761704566,216,0 +170761704614,217,0 +170761704662,217,0 +170761704712,218,0 +170761704759,218,0 +170761704807,219,0 +170761704857,220,0 +170761704905,221,0 +170761704953,220,0 +170761705001,221,0 +170761705049,223,0 +170761705098,220,0 +170761705148,220,0 +170761705196,220,0 +170761705245,219,0 +170761705293,215,0 +170761705341,215,0 +170761705389,215,0 +170761705437,216,0 +170761705484,216,0 +170761705532,216,0 +170761705580,218,0 +170761705628,217,0 +170761705677,218,0 +170761705725,218,0 +170761705773,219,0 +170761705823,219,0 +170761705872,220,0 +170761705920,220,0 +170761705968,220,0 +170761706016,220,0 +170761706064,219,0 +170761706112,216,0 +170761706160,214,0 +170761706208,215,0 +170761706256,215,0 +170761706303,216,0 +170761706351,216,0 +170761706399,216,0 +170761706447,216,0 +170761706495,217,0 +170761706542,217,0 +170761706590,217,0 +170761706638,218,0 +170761706686,218,0 +170761706733,219,0 +170761706781,219,0 +170761706829,219,0 +170761706877,220,0 +170761706926,217,0 +170761706974,215,0 +170761707024,215,0 +170761707072,216,0 +170761707119,217,0 +170761707167,217,0 +170761707217,217,0 +170761707265,217,0 +170761707313,218,0 +170761707362,219,0 +170761707410,219,0 +170761707459,220,0 +170761707509,220,0 +170761707557,220,0 +170761707606,220,0 +170761707656,219,0 +170761707704,219,0 +170761707751,218,0 +170761707799,215,0 +170761707849,215,0 +170761707897,215,0 +170761707945,216,0 +170761707992,216,0 +170761708040,216,0 +170761708090,217,0 +170761708139,217,0 +170761708187,218,0 +170761708237,219,0 +170761708285,219,0 +170761708332,219,0 +170761708380,219,0 +170761708428,220,0 +170761708478,220,0 +170761708527,219,0 +170761708575,218,0 +170761708623,214,0 +170761708671,214,0 +170761708719,215,0 +170761708767,215,0 +170761708815,215,0 +170761708863,216,0 +170761708910,216,0 +170761708960,217,0 +170761709008,217,0 +170761709057,218,0 +170761709107,218,0 +170761709155,218,0 +170761709202,219,0 +170761709252,218,0 +170761709301,219,0 +170761709349,219,0 +170761709397,218,0 +170761709445,214,0 +170761709493,215,0 +170761709541,215,0 +170761709588,216,0 +170761709636,216,0 +170761709684,217,0 +170761709732,217,0 +170761709780,218,0 +170761709828,218,0 +170761709875,218,0 +170761709923,219,0 +170761709971,220,0 +170761710019,220,0 +170761710067,220,0 +170761710114,220,0 +170761710162,220,0 +170761710210,218,0 +170761710258,216,0 +170761710306,215,0 +170761710354,216,0 +170761710403,217,0 +170761710451,217,0 +170761710501,217,0 +170761710548,217,0 +170761710598,217,0 +170761710647,218,0 +170761710697,218,0 +170761710746,219,0 +170761710794,219,0 +170761710844,219,0 +170761710892,219,0 +170761710940,220,0 +170761710989,219,0 +170761711037,219,0 +170761711085,216,0 +170761711135,216,0 +170761711184,216,0 +170761711232,217,0 +170761711281,217,0 +170761711331,218,0 +170761711379,218,0 +170761711428,218,0 +170761711478,219,0 +170761711526,219,0 +170761711574,220,0 +170761711622,220,0 +170761711670,220,0 +170761711718,220,0 +170761711765,220,0 +170761711813,219,0 +170761711863,219,0 +170761711911,218,0 +170761711960,218,0 +170761712008,218,0 +170761712056,218,0 +170761712103,219,0 +170761712151,219,0 +170761712199,219,0 +170761712247,219,0 +170761712295,220,0 +170761712343,220,0 +170761712390,220,0 +170761712438,220,0 +170761712486,220,0 +170761712534,220,0 +170761712583,220,0 +170761712631,220,0 +170761712679,219,0 +170761712727,219,0 +170761712775,219,0 +170761712822,219,0 +170761712872,219,0 +170761712920,219,0 +170761712967,220,0 +170761713015,220,0 +170761713063,221,0 +170761713111,221,0 +170761713159,221,0 +170761713207,220,0 +170761713255,221,0 +170761713304,219,0 +170761713352,220,0 +170761713400,218,0 +170761713447,219,0 +170761713495,219,0 +170761713543,217,0 +170761713591,217,0 +170761713639,217,0 +170761713686,217,0 +170761713734,218,0 +170761713782,218,0 +170761713830,219,0 +170761713878,219,0 +170761713926,219,0 +170761713974,220,0 +170761714021,219,0 +170761714071,220,0 +170761714119,220,0 +170761714167,219,0 +170761714214,219,0 +170761714262,220,0 +170761714310,219,0 +170761714359,216,0 +170761714407,215,0 +170761714455,215,0 +170761714503,216,0 +170761714551,217,0 +170761714599,217,0 +170761714647,217,0 +170761714694,217,0 +170761714742,218,0 +170761714790,218,0 +170761714840,220,0 +170761714887,219,0 +170761714937,219,0 +170761714985,220,0 +170761715033,220,0 +170761715081,219,0 +170761715130,219,0 +170761715180,219,0 +170761715228,216,0 +170761715275,214,0 +170761715325,215,0 +170761715374,215,0 +170761715422,216,0 +170761715470,216,0 +170761715518,217,0 +170761715568,216,0 +170761715617,217,0 +170761715665,217,0 +170761715713,218,0 +170761715761,218,0 +170761715810,219,0 +170761715858,219,0 +170761715906,219,0 +170761715954,219,0 +170761716002,219,0 +170761716052,220,0 +170761716099,220,0 +170761716147,221,0 +170761716195,215,0 +170761716245,215,0 +170761716293,215,0 +170761716341,216,0 +170761716389,216,0 +170761716436,217,0 +170761716486,217,0 +170761716533,217,0 +170761716581,217,0 +170761716629,217,0 +170761716677,218,0 +170761716725,218,0 +170761716773,218,0 +170761716822,219,0 +170761716870,220,0 +170761716918,219,0 +170761716966,219,0 +170761717014,220,0 +170761717062,219,0 +170761717111,216,0 +170761717161,216,0 +170761717208,216,0 +170761717256,217,0 +170761717304,217,0 +170761717352,217,0 +170761717400,217,0 +170761717448,218,0 +170761717496,219,0 +170761717545,219,0 +170761717595,219,0 +170761717643,219,0 +170761717690,220,0 +170761717738,219,0 +170761717786,220,0 +170761717834,220,0 +170761717882,220,0 +170761717930,220,0 +170761717977,219,0 +170761718025,218,0 +170761718073,216,0 +170761718121,216,0 +170761718169,216,0 +170761718216,216,0 +170761718264,217,0 +170761718312,217,0 +170761718360,218,0 +170761718408,218,0 +170761718456,218,0 +170761718504,218,0 +170761718551,219,0 +170761718599,220,0 +170761718647,220,0 +170761718695,220,0 +170761718743,220,0 +170761718790,220,0 +170761718838,219,0 +170761718886,220,0 +170761718934,219,0 +170761718982,216,0 +170761719029,215,0 +170761719077,216,0 +170761719125,216,0 +170761719173,217,0 +170761719220,217,0 +170761719268,217,0 +170761719316,218,0 +170761719365,218,0 +170761719413,218,0 +170761719461,219,0 +170761719509,221,0 +170761719558,220,0 +170761719606,220,0 +170761719654,220,0 +170761719702,221,0 +170761719749,220,0 +170761719797,220,0 +170761719845,219,0 +170761719895,219,0 +170761719943,215,0 +170761719990,216,0 +170761720040,216,0 +170761720088,216,0 +170761720136,217,0 +170761720183,217,0 +170761720231,217,0 +170761720279,218,0 +170761720329,217,0 +170761720376,218,0 +170761720424,219,0 +170761720472,218,0 +170761720520,219,0 +170761720568,219,0 +170761720616,220,0 +170761720663,219,0 +170761720711,220,0 +170761720759,219,0 +170761720807,220,0 +170761720855,216,0 +170761720902,215,0 +170761720950,215,0 +170761720998,216,0 +170761721046,216,0 +170761721094,217,0 +170761721142,217,0 +170761721191,217,0 +170761721241,218,0 +170761721290,218,0 +170761721340,219,0 +170761721389,219,0 +170761721439,220,0 +170761721487,219,0 +170761721536,219,0 +170761721584,220,0 +170761721632,220,0 +170761721680,220,0 +170761721728,220,0 +170761721776,218,0 +170761721825,217,0 +170761721873,217,0 +170761721921,217,0 +170761721971,217,0 +170761722019,217,0 +170761722067,219,0 +170761722116,219,0 +170761722164,219,0 +170761722213,218,0 +170761722261,219,0 +170761722309,220,0 +170761722357,220,0 +170761722405,220,0 +170761722453,220,0 +170761722502,220,0 +170761722550,220,0 +170761722599,220,0 +170761722647,220,0 +170761722695,218,0 +170761722743,216,0 +170761722791,216,0 +170761722839,216,0 +170761722887,217,0 +170761722934,218,0 +170761722982,218,0 +170761723030,219,0 +170761723078,219,0 +170761723126,219,0 +170761723175,219,0 +170761723225,219,0 +170761723273,220,0 +170761723321,219,0 +170761723370,220,0 +170761723420,220,0 +170761723468,220,0 +170761723516,220,0 +170761723564,219,0 +170761723611,216,0 +170761723659,215,0 +170761723707,215,0 +170761723755,216,0 +170761723803,216,0 +170761723853,216,0 +170761723902,217,0 +170761723950,218,0 +170761723998,218,0 +170761724046,218,0 +170761724094,219,0 +170761724141,219,0 +170761724189,219,0 +170761724237,219,0 +170761724287,220,0 +170761724336,220,0 +170761724384,219,0 +170761724431,219,0 +170761724479,219,0 +170761724529,215,0 +170761724577,214,0 +170761724624,214,0 +170761724672,214,0 +170761724720,215,0 +170761724768,215,0 +170761724816,215,0 +170761724863,216,0 +170761724911,217,0 +170761724961,217,0 +170761725009,217,0 +170761725057,218,0 +170761725105,219,0 +170761725154,219,0 +170761725203,219,0 +170761725251,219,0 +170761725299,219,0 +170761725348,219,0 +170761725396,219,0 +170761725444,214,0 +170761725492,214,0 +170761725541,214,0 +170761725589,214,0 +170761725639,214,0 +170761725688,215,0 +170761725736,215,0 +170761725785,215,0 +170761725833,215,0 +170761725881,215,0 +170761725929,216,0 +170761725977,216,0 +170761726025,217,0 +170761726073,217,0 +170761726121,218,0 +170761726171,217,0 +170761726219,217,0 +170761726267,219,0 +170761726316,215,0 +170761726364,214,0 +170761726413,214,0 +170761726461,214,0 +170761726509,214,0 +170761726557,215,0 +170761726605,214,0 +170761726655,215,0 +170761726704,214,0 +170761726754,215,0 +170761726803,215,0 +170761726851,216,0 +170761726899,217,0 +170761726947,217,0 +170761726995,217,0 +170761727043,217,0 +170761727091,218,0 +170761727139,218,0 +170761727187,219,0 +170761727234,215,0 +170761727284,214,0 +170761727333,214,0 +170761727383,215,0 +170761727432,214,0 +170761727482,215,0 +170761727530,215,0 +170761727578,215,0 +170761727627,217,0 +170761727675,216,0 +170761727725,217,0 +170761727773,217,0 +170761727822,218,0 +170761727872,219,0 +170761727920,218,0 +170761727967,219,0 +170761728017,219,0 +170761728066,219,0 +170761728114,219,0 +170761728162,214,0 +170761728212,214,0 +170761728260,215,0 +170761728309,215,0 +170761728359,215,0 +170761728407,216,0 +170761728454,216,0 +170761728502,216,0 +170761728550,217,0 +170761728598,217,0 +170761728646,218,0 +170761728693,218,0 +170761728741,218,0 +170761728789,218,0 +170761728838,219,0 +170761728886,219,0 +170761728936,219,0 +170761728984,219,0 +170761729031,215,0 +170761729079,214,0 +170761729129,214,0 +170761729176,214,0 +170761729224,214,0 +170761729272,215,0 +170761729320,215,0 +170761729368,215,0 +170761729415,216,0 +170761729463,216,0 +170761729511,217,0 +170761729559,217,0 +170761729607,218,0 +170761729656,217,0 +170761729704,218,0 +170761729753,220,0 +170761729801,218,0 +170761729849,218,0 +170761729897,220,0 +170761729947,215,0 +170761729994,214,0 +170761730042,214,0 +170761730090,215,0 +170761730138,215,0 +170761730186,215,0 +170761730234,216,0 +170761730283,216,0 +170761730331,216,0 +170761730379,217,0 +170761730427,217,0 +170761730475,218,0 +170761730522,218,0 +170761730570,218,0 +170761730618,219,0 +170761730666,220,0 +170761730714,220,0 +170761730763,219,0 +170761730811,219,0 +170761730859,215,0 +170761730908,215,0 +170761730956,215,0 +170761731004,216,0 +170761731052,216,0 +170761731100,216,0 +170761731148,217,0 +170761731197,217,0 +170761731245,218,0 +170761731293,218,0 +170761731341,219,0 +170761731389,219,0 +170761731437,219,0 +170761731485,219,0 +170761731533,219,0 +170761731581,219,0 +170761731629,219,0 +170761731677,220,0 +170761731725,220,0 +170761731773,220,0 +170761731820,220,0 +170761731868,221,0 +170761731916,220,0 +170761731964,220,0 +170761732014,220,0 +170761732063,220,0 +170761732111,219,0 +170761732159,219,0 +170761732207,217,0 +170761732255,217,0 +170761732303,217,0 +170761732352,217,0 +170761732400,218,0 +170761732450,218,0 +170761732499,218,0 +170761732547,219,0 +170761732595,219,0 +170761732643,219,0 +170761732693,219,0 +170761732740,218,0 +170761732788,220,0 +170761732838,219,0 +170761732887,219,0 +170761732935,219,0 +170761732983,219,0 +170761733032,219,0 +170761733082,218,0 +170761733129,216,0 +170761733177,216,0 +170761733225,216,0 +170761733273,216,0 +170761733321,217,0 +170761733370,218,0 +170761733418,218,0 +170761733466,218,0 +170761733514,219,0 +170761733561,219,0 +170761733611,220,0 +170761733659,220,0 +170761733708,219,0 +170761733756,220,0 +170761733804,220,0 +170761733852,220,0 +170761733901,220,0 +170761733949,219,0 +170761733997,219,0 +170761734045,216,0 +170761734094,216,0 +170761734142,217,0 +170761734190,218,0 +170761734238,217,0 +170761734285,218,0 +170761734333,218,0 +170761734381,218,0 +170761734429,219,0 +170761734477,220,0 +170761734524,219,0 +170761734572,219,0 +170761734620,220,0 +170761734668,221,0 +170761734716,220,0 +170761734764,220,0 +170761734812,219,0 +170761734859,219,0 +170761734907,215,0 +170761734955,215,0 +170761735003,216,0 +170761735051,216,0 +170761735099,217,0 +170761735146,217,0 +170761735194,218,0 +170761735242,218,0 +170761735290,219,0 +170761735339,219,0 +170761735387,219,0 +170761735435,220,0 +170761735484,220,0 +170761735532,220,0 +170761735580,221,0 +170761735628,220,0 +170761735675,220,0 +170761735723,220,0 +170761735771,219,0 +170761735819,215,0 +170761735867,215,0 +170761735917,215,0 +170761735965,216,0 +170761736012,216,0 +170761736060,217,0 +170761736108,217,0 +170761736156,217,0 +170761736204,218,0 +170761736254,218,0 +170761736301,218,0 +170761736349,219,0 +170761736397,219,0 +170761736445,220,0 +170761736493,219,0 +170761736541,220,0 +170761736589,219,0 +170761736637,220,0 +170761736685,219,0 +170761736733,216,0 +170761736781,215,0 +170761736829,215,0 +170761736878,216,0 +170761736926,217,0 +170761736974,217,0 +170761737022,217,0 +170761737070,217,0 +170761737118,218,0 +170761737166,220,0 +170761737213,218,0 +170761737261,219,0 +170761737309,219,0 +170761737357,220,0 +170761737405,220,0 +170761737453,220,0 +170761737500,219,0 +170761737548,219,0 +170761737598,219,0 +170761737645,214,0 +170761737693,214,0 +170761737741,214,0 +170761737789,215,0 +170761737838,215,0 +170761737887,215,0 +170761737935,216,0 +170761737983,216,0 +170761738031,217,0 +170761738079,218,0 +170761738127,218,0 +170761738174,218,0 +170761738222,219,0 +170761738272,219,0 +170761738321,219,0 +170761738369,219,0 +170761738419,220,0 +170761738467,219,0 +170761738514,216,0 +170761738562,214,0 +170761738610,214,0 +170761738658,214,0 +170761738706,215,0 +170761738753,215,0 +170761738801,215,0 +170761738849,216,0 +170761738897,217,0 +170761738945,217,0 +170761738992,217,0 +170761739040,218,0 +170761739088,218,0 +170761739136,219,0 +170761739184,219,0 +170761739233,219,0 +170761739282,219,0 +170761739330,219,0 +170761739380,219,0 +170761739428,215,0 +170761739475,214,0 +170761739523,214,0 +170761739571,214,0 +170761739619,214,0 +170761739667,214,0 +170761739715,215,0 +170761739763,215,0 +170761739810,216,0 +170761739858,216,0 +170761739906,216,0 +170761739954,217,0 +170761740002,217,0 +170761740049,218,0 +170761740097,218,0 +170761740145,219,0 +170761740193,219,0 +170761740241,219,0 +170761740290,219,0 +170761740338,215,0 +170761740386,214,0 +170761740434,214,0 +170761740484,214,0 +170761740532,214,0 +170761740579,214,0 +170761740627,214,0 +170761740675,215,0 +170761740723,215,0 +170761740772,215,0 +170761740822,215,0 +170761740870,216,0 +170761740919,217,0 +170761740967,217,0 +170761741015,217,0 +170761741065,217,0 +170761741112,217,0 +170761741162,219,0 +170761741210,219,0 +170761741258,215,0 +170761741306,214,0 +170761741355,214,0 +170761741403,214,0 +170761741451,214,0 +170761741499,215,0 +170761741548,215,0 +170761741598,216,0 +170761741647,216,0 +170761741695,216,0 +170761741743,217,0 +170761741791,217,0 +170761741839,218,0 +170761741887,219,0 +170761741937,218,0 +170761741985,219,0 +170761742034,219,0 +170761742082,219,0 +170761742130,219,0 +170761742178,214,0 +170761742227,214,0 +170761742277,215,0 +170761742325,215,0 +170761742374,215,0 +170761742422,215,0 +170761742470,216,0 +170761742518,216,0 +170761742565,217,0 +170761742613,217,0 +170761742661,217,0 +170761742709,218,0 +170761742757,218,0 +170761742807,218,0 +170761742855,218,0 +170761742904,218,0 +170761742952,218,0 +170761743000,219,0 +170761743048,215,0 +170761743097,215,0 +170761743147,215,0 +170761743196,215,0 +170761743246,215,0 +170761743294,215,0 +170761743342,216,0 +170761743391,215,0 +170761743439,215,0 +170761743487,216,0 +170761743535,217,0 +170761743583,217,0 +170761743631,218,0 +170761743679,219,0 +170761743728,218,0 +170761743776,219,0 +170761743824,219,0 +170761743872,219,0 +170761743920,219,0 +170761743970,215,0 +170761744018,214,0 +170761744067,214,0 +170761744117,215,0 +170761744165,215,0 +170761744212,216,0 +170761744262,216,0 +170761744310,217,0 +170761744359,217,0 +170761744407,218,0 +170761744457,218,0 +170761744505,219,0 +170761744554,219,0 +170761744602,220,0 +170761744650,219,0 +170761744698,220,0 +170761744747,220,0 +170761744797,220,0 +170761744846,218,0 +170761744896,214,0 +170761744944,214,0 +170761744993,215,0 +170761745041,215,0 +170761745089,215,0 +170761745138,216,0 +170761745188,216,0 +170761745236,217,0 +170761745284,217,0 +170761745332,217,0 +170761745381,218,0 +170761745429,218,0 +170761745477,218,0 +170761745525,219,0 +170761745574,219,0 +170761745622,219,0 +170761745670,219,0 +170761745718,220,0 +170761745766,215,0 +170761745814,214,0 +170761745864,214,0 +170761745912,214,0 +170761745959,215,0 +170761746009,215,0 +170761746057,215,0 +170761746106,216,0 +170761746156,217,0 +170761746205,217,0 +170761746255,217,0 +170761746303,218,0 +170761746351,218,0 +170761746399,219,0 +170761746447,219,0 +170761746494,220,0 +170761746542,219,0 +170761746590,219,0 +170761746640,219,0 +170761746689,214,0 +170761746739,214,0 +170761746787,214,0 +170761746836,214,0 +170761746886,214,0 +170761746935,215,0 +170761746983,215,0 +170761747032,215,0 +170761747082,216,0 +170761747130,216,0 +170761747179,217,0 +170761747229,217,0 +170761747277,217,0 +170761747327,218,0 +170761747376,219,0 +170761747424,219,0 +170761747473,219,0 +170761747521,219,0 +170761747571,217,0 +170761747619,214,0 +170761747668,215,0 +170761747716,215,0 +170761747764,216,0 +170761747812,215,0 +170761747860,215,0 +170761747908,216,0 +170761747957,216,0 +170761748007,217,0 +170761748055,218,0 +170761748104,218,0 +170761748154,220,0 +170761748202,219,0 +170761748251,220,0 +170761748301,220,0 +170761748348,221,0 +170761748396,220,0 +170761748444,220,0 +170761748494,215,0 +170761748542,215,0 +170761748591,215,0 +170761748641,215,0 +170761748690,216,0 +170761748740,216,0 +170761748788,217,0 +170761748836,217,0 +170761748884,218,0 +170761748932,218,0 +170761748980,218,0 +170761749027,220,0 +170761749075,220,0 +170761749125,219,0 +170761749173,219,0 +170761749221,219,0 +170761749269,219,0 +170761749317,219,0 +170761749365,219,0 +170761749413,214,0 +170761749460,215,0 +170761749508,215,0 +170761749558,215,0 +170761749606,216,0 +170761749654,216,0 +170761749702,217,0 +170761749751,216,0 +170761749799,217,0 +170761749847,217,0 +170761749895,218,0 +170761749943,218,0 +170761749992,218,0 +170761750040,218,0 +170761750088,218,0 +170761750136,216,0 +170761750184,217,0 +170761750232,219,0 +170761750280,218,0 +170761750328,214,0 +170761750376,214,0 +170761750425,214,0 +170761750473,214,0 +170761750521,215,0 +170761750569,215,0 +170761750617,215,0 +170761750665,215,0 +170761750714,215,0 +170761750764,216,0 +170761750812,217,0 +170761750860,217,0 +170761750907,218,0 +170761750957,218,0 +170761751006,217,0 +170761751054,217,0 +170761751102,217,0 +170761751150,219,0 +170761751200,215,0 +170761751249,213,0 +170761751297,214,0 +170761751345,214,0 +170761751394,214,0 +170761751442,214,0 +170761751492,214,0 +170761751540,214,0 +170761751588,215,0 +170761751636,216,0 +170761751684,216,0 +170761751732,217,0 +170761751780,217,0 +170761751829,217,0 +170761751877,217,0 +170761751926,218,0 +170761751974,218,0 +170761752022,219,0 +170761752070,219,0 +170761752118,214,0 +170761752166,214,0 +170761752214,214,0 +170761752262,215,0 +170761752310,215,0 +170761752358,215,0 +170761752406,216,0 +170761752455,216,0 +170761752503,217,0 +170761752553,218,0 +170761752602,218,0 +170761752650,218,0 +170761752699,218,0 +170761752749,219,0 +170761752797,219,0 +170761752845,219,0 +170761752894,219,0 +170761752942,219,0 +170761752990,219,0 +170761753040,214,0 +170761753088,215,0 +170761753136,215,0 +170761753183,215,0 +170761753231,216,0 +170761753279,216,0 +170761753329,217,0 +170761753377,217,0 +170761753426,218,0 +170761753474,218,0 +170761753522,219,0 +170761753571,219,0 +170761753619,219,0 +170761753667,219,0 +170761753717,219,0 +170761753765,219,0 +170761753812,220,0 +170761753862,218,0 +170761753911,215,0 +170761753961,214,0 +170761754009,215,0 +170761754057,215,0 +170761754105,216,0 +170761754152,216,0 +170761754200,216,0 +170761754248,217,0 +170761754296,218,0 +170761754344,219,0 +170761754393,218,0 +170761754441,218,0 +170761754489,219,0 +170761754537,218,0 +170761754585,219,0 +170761754632,219,0 +170761754680,219,0 +170761754728,219,0 +170761754776,219,0 +170761754824,215,0 +170761754871,214,0 +170761754919,214,0 +170761754967,214,0 +170761755015,215,0 +170761755063,216,0 +170761755112,215,0 +170761755160,215,0 +170761755208,216,0 +170761755256,216,0 +170761755304,217,0 +170761755351,217,0 +170761755399,218,0 +170761755447,218,0 +170761755495,220,0 +170761755543,219,0 +170761755591,219,0 +170761755638,220,0 +170761755686,219,0 +170761755734,214,0 +170761755782,214,0 +170761755830,214,0 +170761755879,214,0 +170761755927,215,0 +170761755975,215,0 +170761756022,216,0 +170761756072,216,0 +170761756120,216,0 +170761756167,217,0 +170761756215,217,0 +170761756263,218,0 +170761756311,218,0 +170761756359,218,0 +170761756406,218,0 +170761756454,219,0 +170761756502,219,0 +170761756552,220,0 +170761756601,219,0 +170761756651,214,0 +170761756698,215,0 +170761756746,215,0 +170761756794,216,0 +170761756842,215,0 +170761756890,216,0 +170761756938,216,0 +170761756986,216,0 +170761757034,217,0 +170761757081,218,0 +170761757129,218,0 +170761757177,218,0 +170761757225,218,0 +170761757274,218,0 +170761757322,219,0 +170761757370,219,0 +170761757418,219,0 +170761757465,219,0 +170761757513,219,0 +170761757561,215,0 +170761757611,215,0 +170761757659,215,0 +170761757706,216,0 +170761757756,216,0 +170761757804,216,0 +170761757853,218,0 +170761757901,217,0 +170761757951,217,0 +170761757999,218,0 +170761758046,218,0 +170761758096,218,0 +170761758145,218,0 +170761758193,219,0 +170761758241,219,0 +170761758289,219,0 +170761758337,219,0 +170761758385,219,0 +170761758435,215,0 +170761758483,214,0 +170761758530,215,0 +170761758578,215,0 +170761758628,215,0 +170761758676,216,0 +170761758725,216,0 +170761758773,217,0 +170761758821,217,0 +170761758871,218,0 +170761758919,218,0 +170761758967,220,0 +170761759014,219,0 +170761759062,219,0 +170761759110,221,0 +170761759158,220,0 +170761759206,220,0 +170761759254,220,0 +170761759301,219,0 +170761759349,215,0 +170761759397,215,0 +170761759445,216,0 +170761759494,217,0 +170761759542,217,0 +170761759590,217,0 +170761759638,218,0 +170761759687,218,0 +170761759735,219,0 +170761759785,219,0 +170761759832,220,0 +170761759882,220,0 +170761759930,220,0 +170761759978,219,0 +170761760027,220,0 +170761760077,220,0 +170761760125,220,0 +170761760172,220,0 +170761760222,219,0 +170761760270,215,0 +170761760318,215,0 +170761760367,216,0 +170761760415,216,0 +170761760463,217,0 +170761760512,218,0 +170761760560,218,0 +170761760608,218,0 +170761760656,218,0 +170761760704,219,0 +170761760752,219,0 +170761760800,220,0 +170761760849,219,0 +170761760897,220,0 +170761760945,220,0 +170761760993,220,0 +170761761042,220,0 +170761761090,219,0 +170761761138,217,0 +170761761188,214,0 +170761761236,215,0 +170761761284,215,0 +170761761331,216,0 +170761761379,216,0 +170761761427,216,0 +170761761477,216,0 +170761761525,217,0 +170761761573,217,0 +170761761620,217,0 +170761761670,218,0 +170761761719,218,0 +170761761767,219,0 +170761761815,219,0 +170761761863,219,0 +170761761911,220,0 +170761761959,219,0 +170761762007,219,0 +170761762057,215,0 +170761762104,214,0 +170761762152,215,0 +170761762200,215,0 +170761762248,215,0 +170761762296,216,0 +170761762343,216,0 +170761762391,216,0 +170761762439,216,0 +170761762488,216,0 +170761762536,217,0 +170761762584,217,0 +170761762632,218,0 +170761762680,218,0 +170761762728,219,0 +170761762775,219,0 +170761762823,219,0 +170761762871,219,0 +170761762919,219,0 +170761762967,215,0 +170761763015,215,0 +170761763062,216,0 +170761763110,216,0 +170761763158,216,0 +170761763206,216,0 +170761763254,217,0 +170761763304,217,0 +170761763352,217,0 +170761763401,218,0 +170761763451,218,0 +170761763498,218,0 +170761763546,220,0 +170761763594,220,0 +170761763642,220,0 +170761763692,220,0 +170761763740,219,0 +170761763787,219,0 +170761763835,218,0 +170761763883,215,0 +170761763931,215,0 +170761763979,216,0 +170761764027,216,0 +170761764075,217,0 +170761764123,217,0 +170761764170,217,0 +170761764218,217,0 +170761764266,217,0 +170761764314,218,0 +170761764362,219,0 +170761764410,219,0 +170761764458,220,0 +170761764506,219,0 +170761764554,220,0 +170761764602,220,0 +170761764650,220,0 +170761764699,219,0 +170761764747,219,0 +170761764797,214,0 +170761764845,215,0 +170761764893,215,0 +170761764942,215,0 +170761764990,217,0 +170761765038,216,0 +170761765086,217,0 +170761765134,217,0 +170761765184,217,0 +170761765232,218,0 +170761765279,219,0 +170761765329,219,0 +170761765378,219,0 +170761765426,219,0 +170761765476,219,0 +170761765525,219,0 +170761765575,218,0 +170761765624,219,0 +170761765672,215,0 +170761765720,214,0 +170761765768,214,0 +170761765815,214,0 +170761765863,214,0 +170761765911,215,0 +170761765959,215,0 +170761766009,215,0 +170761766056,216,0 +170761766106,216,0 +170761766155,217,0 +170761766205,217,0 +170761766253,218,0 +170761766302,218,0 +170761766350,218,0 +170761766398,218,0 +170761766446,217,0 +170761766494,218,0 +170761766542,220,0 +170761766591,214,0 +170761766641,214,0 +170761766689,214,0 +170761766737,214,0 +170761766785,215,0 +170761766834,215,0 +170761766884,215,0 +170761766932,215,0 +170761766981,216,0 +170761767029,216,0 +170761767077,217,0 +170761767125,218,0 +170761767173,218,0 +170761767221,219,0 +170761767270,219,0 +170761767318,219,0 +170761767366,219,0 +170761767414,219,0 +170761767462,219,0 +170761767510,214,0 +170761767558,214,0 +170761767606,214,0 +170761767653,214,0 +170761767701,214,0 +170761767751,215,0 +170761767800,215,0 +170761767848,216,0 +170761767898,216,0 +170761767945,216,0 +170761767995,217,0 +170761768044,218,0 +170761768092,218,0 +170761768140,219,0 +170761768189,219,0 +170761768237,219,0 +170761768285,219,0 +170761768333,219,0 +170761768381,215,0 +170761768431,214,0 +170761768478,213,0 +170761768526,214,0 +170761768574,214,0 +170761768622,214,0 +170761768670,214,0 +170761768718,214,0 +170761768766,214,0 +170761768814,214,0 +170761768862,215,0 +170761768910,216,0 +170761768958,216,0 +170761769006,217,0 +170761769054,217,0 +170761769102,217,0 +170761769150,217,0 +170761769199,218,0 +170761769247,219,0 +170761769297,215,0 +170761769345,214,0 +170761769393,214,0 +170761769441,214,0 +170761769488,214,0 +170761769536,215,0 +170761769584,215,0 +170761769632,215,0 +170761769680,216,0 +170761769728,216,0 +170761769776,217,0 +170761769824,217,0 +170761769873,218,0 +170761769921,218,0 +170761769969,219,0 +170761770017,218,0 +170761770065,219,0 +170761770115,218,0 +170761770163,219,0 +170761770211,214,0 +170761770260,214,0 +170761770310,214,0 +170761770358,214,0 +170761770405,216,0 +170761770455,215,0 +170761770503,215,0 +170761770551,216,0 +170761770600,216,0 +170761770648,217,0 +170761770698,218,0 +170761770747,217,0 +170761770797,218,0 +170761770846,218,0 +170761770894,217,0 +170761770944,217,0 +170761770993,217,0 +170761771041,219,0 +170761771089,215,0 +170761771137,214,0 +170761771185,214,0 +170761771234,214,0 +170761771284,214,0 +170761771333,214,0 +170761771381,214,0 +170761771431,215,0 +170761771480,215,0 +170761771528,215,0 +170761771578,216,0 +170761771626,216,0 +170761771673,217,0 +170761771723,218,0 +170761771771,218,0 +170761771819,218,0 +170761771867,218,0 +170761771914,219,0 +170761771962,220,0 +170761772010,215,0 +170761772058,214,0 +170761772106,214,0 +170761772154,213,0 +170761772202,214,0 +170761772251,214,0 +170761772299,214,0 +170761772347,214,0 +170761772395,214,0 +170761772443,214,0 +170761772490,215,0 +170761772538,214,0 +170761772586,215,0 +170761772634,215,0 +170761772683,216,0 +170761772731,217,0 +170761772779,217,0 +170761772827,218,0 +170761772875,219,0 +170761772923,215,0 +170761772971,214,0 +170761773019,214,0 +170761773068,214,0 +170761773116,214,0 +170761773164,214,0 +170761773212,214,0 +170761773261,215,0 +170761773309,215,0 +170761773357,215,0 +170761773407,216,0 +170761773454,216,0 +170761773502,217,0 +170761773550,218,0 +170761773600,217,0 +170761773647,218,0 +170761773695,218,0 +170761773743,219,0 +170761773791,220,0 +170761773839,214,0 +170761773889,214,0 +170761773936,214,0 +170761773986,215,0 +170761774034,215,0 +170761774083,216,0 +170761774133,216,0 +170761774181,216,0 +170761774228,217,0 +170761774278,217,0 +170761774326,218,0 +170761774374,218,0 +170761774423,219,0 +170761774473,219,0 +170761774521,219,0 +170761774569,219,0 +170761774617,219,0 +170761774665,219,0 +170761774714,215,0 +170761774762,214,0 +170761774810,215,0 +170761774858,215,0 +170761774906,215,0 +170761774954,216,0 +170761775002,217,0 +170761775051,217,0 +170761775099,217,0 +170761775148,218,0 +170761775198,218,0 +170761775247,219,0 +170761775297,219,0 +170761775346,219,0 +170761775394,219,0 +170761775444,219,0 +170761775492,220,0 +170761775541,219,0 +170761775589,219,0 +170761775637,216,0 +170761775685,215,0 +170761775733,215,0 +170761775781,216,0 +170761775830,216,0 +170761775878,217,0 +170761775926,217,0 +170761775974,218,0 +170761776022,218,0 +170761776072,218,0 +170761776120,219,0 +170761776168,218,0 +170761776217,220,0 +170761776265,220,0 +170761776313,219,0 +170761776361,219,0 +170761776409,219,0 +170761776458,220,0 +170761776508,219,0 +170761776557,215,0 +170761776605,215,0 +170761776653,216,0 +170761776701,216,0 +170761776749,217,0 +170761776797,217,0 +170761776844,218,0 +170761776892,217,0 +170761776942,218,0 +170761776991,219,0 +170761777039,218,0 +170761777087,220,0 +170761777135,219,0 +170761777182,220,0 +170761777232,219,0 +170761777280,219,0 +170761777329,220,0 +170761777377,219,0 +170761777425,215,0 +170761777473,214,0 +170761777521,214,0 +170761777568,215,0 +170761777616,215,0 +170761777664,216,0 +170761777714,216,0 +170761777761,216,0 +170761777811,217,0 +170761777859,218,0 +170761777908,218,0 +170761777958,218,0 +170761778007,219,0 +170761778055,219,0 +170761778103,220,0 +170761778151,219,0 +170761778198,219,0 +170761778246,219,0 +170761778294,220,0 +170761778342,215,0 +170761778390,214,0 +170761778438,214,0 +170761778486,215,0 +170761778534,215,0 +170761778582,215,0 +170761778630,216,0 +170761778677,216,0 +170761778727,216,0 +170761778775,218,0 +170761778823,218,0 +170761778871,218,0 +170761778919,219,0 +170761778968,219,0 +170761779016,219,0 +170761779066,219,0 +170761779114,219,0 +170761779163,219,0 +170761779211,219,0 +170761779261,215,0 +170761779309,214,0 +170761779358,214,0 +170761779406,215,0 +170761779455,215,0 +170761779503,215,0 +170761779551,216,0 +170761779601,216,0 +170761779649,216,0 +170761779696,217,0 +170761779744,217,0 +170761779792,218,0 +170761779840,218,0 +170761779888,218,0 +170761779936,218,0 +170761779984,219,0 +170761780034,219,0 +170761780082,219,0 +170761780129,220,0 +170761780177,215,0 +170761780227,215,0 +170761780275,215,0 +170761780323,215,0 +170761780371,215,0 +170761780419,216,0 +170761780467,216,0 +170761780515,217,0 +170761780562,217,0 +170761780610,217,0 +170761780658,218,0 +170761780706,218,0 +170761780754,219,0 +170761780803,220,0 +170761780853,219,0 +170761780901,219,0 +170761780949,219,0 +170761780996,219,0 +170761781046,215,0 +170761781094,215,0 +170761781142,215,0 +170761781190,216,0 +170761781238,217,0 +170761781286,216,0 +170761781333,218,0 +170761781381,217,0 +170761781429,218,0 +170761781477,219,0 +170761781525,219,0 +170761781573,220,0 +170761781622,220,0 +170761781672,220,0 +170761781720,220,0 +170761781768,220,0 +170761781817,220,0 +170761781866,219,0 +170761781913,219,0 +170761781963,215,0 +170761782012,215,0 +170761782060,215,0 +170761782110,215,0 +170761782159,216,0 +170761782207,216,0 +170761782255,217,0 +170761782303,217,0 +170761782351,217,0 +170761782400,218,0 +170761782448,218,0 +170761782496,219,0 +170761782544,219,0 +170761782592,219,0 +170761782640,219,0 +170761782687,220,0 +170761782735,219,0 +170761782785,220,0 +170761782833,219,0 +170761782882,214,0 +170761782930,214,0 +170761782978,215,0 +170761783026,215,0 +170761783074,216,0 +170761783122,216,0 +170761783170,216,0 +170761783220,217,0 +170761783268,218,0 +170761783316,218,0 +170761783365,218,0 +170761783413,218,0 +170761783461,217,0 +170761783509,218,0 +170761783557,218,0 +170761783606,219,0 +170761783654,219,0 +170761783703,219,0 +170761783751,216,0 +170761783799,214,0 +170761783847,214,0 +170761783894,214,0 +170761783942,215,0 +170761783990,215,0 +170761784039,216,0 +170761784087,216,0 +170761784135,216,0 +170761784183,216,0 +170761784231,217,0 +170761784278,217,0 +170761784326,217,0 +170761784374,218,0 +170761784422,218,0 +170761784469,219,0 +170761784517,219,0 +170761784565,219,0 +170761784613,219,0 +170761784661,217,0 +170761784708,214,0 +170761784756,214,0 +170761784806,215,0 +170761784853,215,0 +170761784901,215,0 +170761784949,216,0 +170761784997,216,0 +170761785045,216,0 +170761785093,217,0 +170761785140,217,0 +170761785188,218,0 +170761785236,218,0 +170761785284,219,0 +170761785331,220,0 +170761785379,219,0 +170761785427,220,0 +170761785475,220,0 +170761785523,219,0 +170761785570,216,0 +170761785618,214,0 +170761785668,214,0 +170761785717,214,0 +170761785767,215,0 +170761785814,215,0 +170761785862,215,0 +170761785910,216,0 +170761785958,216,0 +170761786007,216,0 +170761786055,217,0 +170761786104,217,0 +170761786152,218,0 +170761786200,218,0 +170761786248,219,0 +170761786297,220,0 +170761786347,219,0 +170761786396,219,0 +170761786446,221,0 +170761786494,215,0 +170761786542,214,0 +170761786589,214,0 +170761786639,214,0 +170761786687,215,0 +170761786736,215,0 +170761786784,216,0 +170761786832,216,0 +170761786881,216,0 +170761786929,217,0 +170761786977,217,0 +170761787027,217,0 +170761787074,218,0 +170761787124,219,0 +170761787172,218,0 +170761787219,218,0 +170761787267,219,0 +170761787315,219,0 +170761787365,219,0 +170761787412,214,0 +170761787460,214,0 +170761787508,214,0 +170761787556,214,0 +170761787604,214,0 +170761787652,214,0 +170761787701,215,0 +170761787749,215,0 +170761787797,216,0 +170761787845,216,0 +170761787893,217,0 +170761787940,216,0 +170761787988,217,0 +170761788036,218,0 +170761788085,218,0 +170761788133,218,0 +170761788181,220,0 +170761788229,219,0 +170761788277,219,0 +170761788325,214,0 +170761788372,214,0 +170761788420,214,0 +170761788468,215,0 +170761788516,215,0 +170761788565,215,0 +170761788613,215,0 +170761788661,216,0 +170761788709,217,0 +170761788758,217,0 +170761788806,218,0 +170761788854,219,0 +170761788901,218,0 +170761788949,219,0 +170761788997,219,0 +170761789045,219,0 +170761789093,220,0 +170761789141,219,0 +170761789189,215,0 +170761789237,214,0 +170761789286,214,0 +170761789334,215,0 +170761789382,215,0 +170761789431,215,0 +170761789479,216,0 +170761789529,216,0 +170761789578,216,0 +170761789626,217,0 +170761789674,218,0 +170761789722,218,0 +170761789770,218,0 +170761789820,219,0 +170761789867,218,0 +170761789917,219,0 +170761789966,219,0 +170761790014,219,0 +170761790064,219,0 +170761790113,214,0 +170761790161,214,0 +170761790209,215,0 +170761790257,215,0 +170761790305,215,0 +170761790353,216,0 +170761790403,216,0 +170761790452,217,0 +170761790500,217,0 +170761790548,217,0 +170761790596,219,0 +170761790645,218,0 +170761790695,218,0 +170761790744,219,0 +170761790794,219,0 +170761790842,219,0 +170761790891,219,0 +170761790939,219,0 +170761790987,218,0 +170761791037,214,0 +170761791086,214,0 +170761791134,215,0 +170761791182,215,0 +170761791232,216,0 +170761791281,216,0 +170761791331,216,0 +170761791378,217,0 +170761791428,217,0 +170761791476,217,0 +170761791524,218,0 +170761791573,218,0 +170761791621,218,0 +170761791669,218,0 +170761791719,218,0 +170761791766,218,0 +170761791814,218,0 +170761791862,220,0 +170761791912,216,0 +170761791961,215,0 +170761792009,215,0 +170761792057,216,0 +170761792107,216,0 +170761792155,217,0 +170761792204,217,0 +170761792252,218,0 +170761792302,218,0 +170761792350,219,0 +170761792399,218,0 +170761792447,219,0 +170761792497,219,0 +170761792546,219,0 +170761792594,220,0 +170761792643,220,0 +170761792693,219,0 +170761792743,219,0 +170761792790,219,0 +170761792838,215,0 +170761792886,215,0 +170761792936,215,0 +170761792984,216,0 +170761793032,216,0 +170761793080,217,0 +170761793127,217,0 +170761793175,218,0 +170761793225,218,0 +170761793274,218,0 +170761793324,218,0 +170761793373,219,0 +170761793423,219,0 +170761793471,219,0 +170761793519,218,0 +170761793567,220,0 +170761793614,220,0 +170761793662,220,0 +170761793712,215,0 +170761793760,214,0 +170761793808,215,0 +170761793855,215,0 +170761793905,216,0 +170761793955,216,0 +170761794004,216,0 +170761794052,217,0 +170761794101,217,0 +170761794151,217,0 +170761794199,217,0 +170761794247,218,0 +170761794295,218,0 +170761794344,219,0 +170761794394,219,0 +170761794442,220,0 +170761794491,219,0 +170761794539,219,0 +170761794589,219,0 +170761794636,215,0 +170761794684,214,0 +170761794732,214,0 +170761794780,214,0 +170761794828,215,0 +170761794876,215,0 +170761794924,215,0 +170761794972,215,0 +170761795021,216,0 +170761795069,217,0 +170761795119,217,0 +170761795167,218,0 +170761795216,218,0 +170761795264,219,0 +170761795312,219,0 +170761795360,219,0 +170761795409,219,0 +170761795457,220,0 +170761795505,219,0 +170761795555,214,0 +170761795603,214,0 +170761795651,214,0 +170761795700,214,0 +170761795748,214,0 +170761795798,214,0 +170761795845,215,0 +170761795895,215,0 +170761795943,215,0 +170761795992,216,0 +170761796040,217,0 +170761796088,217,0 +170761796138,218,0 +170761796186,218,0 +170761796235,218,0 +170761796283,218,0 +170761796331,218,0 +170761796379,219,0 +170761796429,215,0 +170761796478,214,0 +170761796526,214,0 +170761796576,214,0 +170761796624,215,0 +170761796672,215,0 +170761796719,215,0 +170761796767,216,0 +170761796817,216,0 +170761796865,216,0 +170761796913,217,0 +170761796962,218,0 +170761797012,218,0 +170761797060,218,0 +170761797107,219,0 +170761797155,219,0 +170761797203,219,0 +170761797253,219,0 +170761797301,219,0 +170761797350,215,0 +170761797398,215,0 +170761797446,215,0 +170761797494,216,0 +170761797543,216,0 +170761797593,217,0 +170761797641,218,0 +170761797689,218,0 +170761797738,218,0 +170761797786,219,0 +170761797834,219,0 +170761797884,219,0 +170761797933,220,0 +170761797981,220,0 +170761798029,220,0 +170761798077,219,0 +170761798125,219,0 +170761798173,220,0 +170761798222,219,0 +170761798270,215,0 +170761798320,215,0 +170761798367,215,0 +170761798415,216,0 +170761798463,216,0 +170761798511,216,0 +170761798561,217,0 +170761798610,217,0 +170761798658,217,0 +170761798708,218,0 +170761798756,219,0 +170761798805,219,0 +170761798853,219,0 +170761798901,219,0 +170761798950,220,0 +170761799000,219,0 +170761799048,220,0 +170761799096,219,0 +170761799145,215,0 +170761799193,214,0 +170761799241,214,0 +170761799289,215,0 +170761799337,216,0 +170761799387,216,0 +170761799435,216,0 +170761799484,216,0 +170761799532,216,0 +170761799580,217,0 +170761799628,217,0 +170761799676,218,0 +170761799724,218,0 +170761799773,219,0 +170761799821,218,0 +170761799869,219,0 +170761799916,219,0 +170761799964,219,0 +170761800012,219,0 +170761800060,215,0 +170761800108,214,0 +170761800156,214,0 +170761800204,214,0 +170761800253,215,0 +170761800303,215,0 +170761800351,215,0 +170761800399,216,0 +170761800446,215,0 +170761800496,217,0 +170761800545,217,0 +170761800593,217,0 +170761800641,218,0 +170761800689,217,0 +170761800739,218,0 +170761800787,219,0 +170761800835,218,0 +170761800884,219,0 +170761800934,218,0 +170761800983,214,0 +170761801033,214,0 +170761801081,214,0 +170761801128,215,0 +170761801178,215,0 +170761801227,215,0 +170761801275,215,0 +170761801323,215,0 +170761801371,216,0 +170761801419,216,0 +170761801467,216,0 +170761801515,217,0 +170761801565,218,0 +170761801613,218,0 +170761801662,218,0 +170761801710,219,0 +170761801758,218,0 +170761801806,219,0 +170761801854,215,0 +170761801903,214,0 +170761801953,214,0 +170761802001,215,0 +170761802049,215,0 +170761802097,215,0 +170761802146,216,0 +170761802194,215,0 +170761802243,216,0 +170761802293,217,0 +170761802342,217,0 +170761802390,218,0 +170761802438,218,0 +170761802486,218,0 +170761802535,218,0 +170761802585,219,0 +170761802634,220,0 +170761802682,220,0 +170761802730,220,0 +170761802780,214,0 +170761802829,214,0 +170761802877,215,0 +170761802927,215,0 +170761802975,216,0 +170761803023,216,0 +170761803070,216,0 +170761803120,217,0 +170761803168,217,0 +170761803217,218,0 +170761803265,218,0 +170761803313,218,0 +170761803361,219,0 +170761803411,219,0 +170761803458,220,0 +170761803506,219,0 +170761803556,220,0 +170761803605,220,0 +170761803655,216,0 +170761803703,214,0 +170761803751,214,0 +170761803800,215,0 +170761803848,215,0 +170761803896,215,0 +170761803944,216,0 +170761803993,216,0 +170761804043,217,0 +170761804091,217,0 +170761804140,217,0 +170761804188,218,0 +170761804236,218,0 +170761804284,219,0 +170761804332,219,0 +170761804379,219,0 +170761804427,219,0 +170761804475,220,0 +170761804523,219,0 +170761804571,215,0 +170761804619,214,0 +170761804668,214,0 +170761804716,214,0 +170761804764,214,0 +170761804812,215,0 +170761804861,216,0 +170761804911,216,0 +170761804959,216,0 +170761805007,217,0 +170761805055,217,0 +170761805103,218,0 +170761805151,218,0 +170761805198,218,0 +170761805248,219,0 +170761805298,219,0 +170761805346,219,0 +170761805393,219,0 +170761805441,219,0 +170761805491,214,0 +170761805539,214,0 +170761805588,214,0 +170761805638,214,0 +170761805687,215,0 +170761805735,215,0 +170761805784,216,0 +170761805832,216,0 +170761805882,216,0 +170761805930,216,0 +170761805978,217,0 +170761806025,217,0 +170761806073,218,0 +170761806123,219,0 +170761806171,218,0 +170761806219,218,0 +170761806267,219,0 +170761806315,219,0 +170761806363,215,0 +170761806411,214,0 +170761806458,214,0 +170761806508,214,0 +170761806557,215,0 +170761806605,215,0 +170761806653,215,0 +170761806701,215,0 +170761806749,216,0 +170761806797,216,0 +170761806845,217,0 +170761806895,217,0 +170761806943,218,0 +170761806991,217,0 +170761807038,218,0 +170761807088,219,0 +170761807137,219,0 +170761807185,218,0 +170761807235,218,0 +170761807284,215,0 +170761807332,214,0 +170761807380,214,0 +170761807428,215,0 +170761807476,215,0 +170761807524,215,0 +170761807572,216,0 +170761807620,216,0 +170761807667,216,0 +170761807717,217,0 +170761807765,217,0 +170761807814,218,0 +170761807862,218,0 +170761807910,219,0 +170761807958,219,0 +170761808008,219,0 +170761808057,219,0 +170761808105,219,0 +170761808153,219,0 +170761808201,215,0 +170761808249,215,0 +170761808297,215,0 +170761808345,215,0 +170761808394,216,0 +170761808442,216,0 +170761808490,217,0 +170761808538,217,0 +170761808586,217,0 +170761808634,218,0 +170761808684,219,0 +170761808731,219,0 +170761808779,219,0 +170761808827,220,0 +170761808877,220,0 +170761808925,220,0 +170761808973,220,0 +170761809022,220,0 +170761809072,218,0 +170761809120,214,0 +170761809167,215,0 +170761809217,216,0 +170761809265,216,0 +170761809313,216,0 +170761809362,216,0 +170761809412,217,0 +170761809461,217,0 +170761809509,217,0 +170761809559,218,0 +170761809608,218,0 +170761809658,219,0 +170761809708,219,0 +170761809755,220,0 +170761809805,220,0 +170761809853,220,0 +170761809901,219,0 +170761809949,219,0 +170761809996,215,0 +170761810046,215,0 +170761810094,216,0 +170761810142,216,0 +170761810190,216,0 +170761810238,216,0 +170761810285,217,0 +170761810333,217,0 +170761810381,218,0 +170761810429,217,0 +170761810477,218,0 +170761810526,218,0 +170761810574,218,0 +170761810624,219,0 +170761810673,219,0 +170761810723,219,0 +170761810771,219,0 +170761810820,219,0 +170761810868,219,0 +170761810916,215,0 +170761810965,215,0 +170761811013,215,0 +170761811063,216,0 +170761811111,216,0 +170761811159,217,0 +170761811206,217,0 +170761811254,218,0 +170761811302,218,0 +170761811350,218,0 +170761811398,218,0 +170761811446,219,0 +170761811494,220,0 +170761811543,220,0 +170761811593,220,0 +170761811641,220,0 +170761811689,220,0 +170761811737,219,0 +170761811785,217,0 +170761811832,214,0 +170761811880,214,0 +170761811928,216,0 +170761811976,216,0 +170761812024,217,0 +170761812072,216,0 +170761812120,217,0 +170761812167,217,0 +170761812215,218,0 +170761812263,217,0 +170761812311,218,0 +170761812359,219,0 +170761812407,218,0 +170761812455,219,0 +170761812503,220,0 +170761812550,220,0 +170761812598,220,0 +170761812646,219,0 +170761812694,215,0 +170761812742,214,0 +170761812790,215,0 +170761812838,215,0 +170761812885,216,0 +170761812933,216,0 +170761812981,217,0 +170761813029,217,0 +170761813077,217,0 +170761813126,217,0 +170761813176,218,0 +170761813224,219,0 +170761813272,219,0 +170761813319,219,0 +170761813367,220,0 +170761813415,220,0 +170761813463,219,0 +170761813511,221,0 +170761813560,219,0 +170761813610,215,0 +170761813658,214,0 +170761813706,214,0 +170761813753,216,0 +170761813803,215,0 +170761813851,215,0 +170761813899,215,0 +170761813946,215,0 +170761813994,216,0 +170761814042,217,0 +170761814090,218,0 +170761814138,218,0 +170761814186,219,0 +170761814235,220,0 +170761814283,219,0 +170761814331,220,0 +170761814379,220,0 +170761814427,220,0 +170761814476,219,0 +170761814524,215,0 +170761814572,214,0 +170761814620,214,0 +170761814667,215,0 +170761814715,215,0 +170761814763,215,0 +170761814811,216,0 +170761814858,216,0 +170761814906,216,0 +170761814954,217,0 +170761815002,217,0 +170761815050,217,0 +170761815098,218,0 +170761815145,218,0 +170761815195,219,0 +170761815244,220,0 +170761815292,219,0 +170761815340,220,0 +170761815388,219,0 +170761815436,214,0 +170761815484,214,0 +170761815532,214,0 +170761815580,214,0 +170761815628,215,0 +170761815676,215,0 +170761815725,215,0 +170761815775,215,0 +170761815824,216,0 +170761815874,217,0 +170761815922,217,0 +170761815970,217,0 +170761816019,218,0 +170761816069,220,0 +170761816118,219,0 +170761816166,219,0 +170761816214,219,0 +170761816262,219,0 +170761816311,218,0 +170761816359,214,0 +170761816407,214,0 +170761816455,214,0 +170761816503,214,0 +170761816551,215,0 +170761816599,215,0 +170761816647,216,0 +170761816695,216,0 +170761816743,216,0 +170761816792,217,0 +170761816840,215,0 +170761816888,218,0 +170761816937,218,0 +170761816987,218,0 +170761817035,218,0 +170761817084,219,0 +170761817132,219,0 +170761817180,219,0 +170761817228,215,0 +170761817276,214,0 +170761817324,214,0 +170761817371,215,0 +170761817419,215,0 +170761817467,215,0 +170761817517,216,0 +170761817565,216,0 +170761817612,216,0 +170761817660,217,0 +170761817710,217,0 +170761817758,218,0 +170761817805,218,0 +170761817853,218,0 +170761817903,219,0 +170761817951,220,0 +170761817999,219,0 +170761818046,219,0 +170761818096,219,0 +170761818145,215,0 +170761818193,214,0 +170761818243,215,0 +170761818292,215,0 +170761818342,216,0 +170761818390,216,0 +170761818437,217,0 +170761818485,217,0 +170761818533,217,0 +170761818583,218,0 +170761818632,218,0 +170761818680,219,0 +170761818730,219,0 +170761818777,219,0 +170761818827,219,0 +170761818875,220,0 +170761818923,220,0 +170761818970,220,0 +170761819020,218,0 +170761819069,214,0 +170761819119,214,0 +170761819168,215,0 +170761819216,215,0 +170761819266,215,0 +170761819314,216,0 +170761819362,216,0 +170761819411,217,0 +170761819459,217,0 +170761819507,218,0 +170761819557,218,0 +170761819605,219,0 +170761819652,218,0 +170761819700,219,0 +170761819750,219,0 +170761819799,219,0 +170761819847,219,0 +170761819895,219,0 +170761819943,215,0 +170761819991,214,0 +170761820039,214,0 +170761820087,214,0 +170761820134,215,0 +170761820182,216,0 +170761820230,216,0 +170761820278,216,0 +170761820326,217,0 +170761820373,217,0 +170761820421,217,0 +170761820469,218,0 +170761820517,218,0 +170761820565,219,0 +170761820613,218,0 +170761820660,218,0 +170761820708,218,0 +170761820756,218,0 +170761820804,219,0 +170761820851,215,0 +170761820899,214,0 +170761820949,214,0 +170761820997,215,0 +170761821044,214,0 +170761821094,215,0 +170761821142,215,0 +170761821190,216,0 +170761821238,216,0 +170761821287,216,0 +170761821335,216,0 +170761821383,217,0 +170761821432,218,0 +170761821480,218,0 +170761821528,218,0 +170761821578,219,0 +170761821627,219,0 +170761821675,219,0 +170761821723,219,0 +170761821771,215,0 +170761821821,214,0 +170761821868,215,0 +170761821916,215,0 +170761821966,216,0 +170761822014,216,0 +170761822063,216,0 +170761822111,217,0 +170761822161,217,0 +170761822209,218,0 +170761822257,218,0 +170761822306,218,0 +170761822356,219,0 +170761822405,219,0 +170761822453,220,0 +170761822501,221,0 +170761822550,220,0 +170761822598,219,0 +170761822648,218,0 +170761822697,214,0 +170761822747,215,0 +170761822796,215,0 +170761822844,215,0 +170761822892,215,0 +170761822940,216,0 +170761822988,216,0 +170761823036,217,0 +170761823084,217,0 +170761823132,218,0 +170761823179,218,0 +170761823227,219,0 +170761823277,218,0 +170761823325,219,0 +170761823373,219,0 +170761823420,220,0 +170761823468,220,0 +170761823518,219,0 +170761823566,219,0 +170761823615,214,0 +170761823663,215,0 +170761823711,215,0 +170761823759,215,0 +170761823807,216,0 +170761823855,216,0 +170761823903,216,0 +170761823951,217,0 +170761823999,217,0 +170761824049,218,0 +170761824098,218,0 +170761824148,219,0 +170761824197,219,0 +170761824246,222,0 +170761824294,220,0 +170761824344,220,0 +170761824393,220,0 +170761824441,219,0 +170761824489,215,0 +170761824537,214,0 +170761824586,214,0 +170761824636,215,0 +170761824685,215,0 +170761824733,216,0 +170761824781,216,0 +170761824831,217,0 +170761824878,217,0 +170761824926,219,0 +170761824974,218,0 +170761825022,219,0 +170761825070,219,0 +170761825118,219,0 +170761825166,219,0 +170761825213,219,0 +170761825261,219,0 +170761825309,219,0 +170761825357,219,0 +170761825406,215,0 +170761825454,215,0 +170761825502,215,0 +170761825550,216,0 +170761825598,216,0 +170761825646,216,0 +170761825693,218,0 +170761825741,217,0 +170761825789,218,0 +170761825837,219,0 +170761825887,219,0 +170761825935,218,0 +170761825984,219,0 +170761826032,219,0 +170761826080,219,0 +170761826128,219,0 +170761826176,220,0 +170761826224,219,0 +170761826272,219,0 +170761826319,215,0 +170761826369,215,0 +170761826417,216,0 +170761826465,216,0 +170761826513,216,0 +170761826560,216,0 +170761826608,216,0 +170761826656,218,0 +170761826704,217,0 +170761826752,218,0 +170761826800,218,0 +170761826850,219,0 +170761826898,219,0 +170761826945,219,0 +170761826993,220,0 +170761827041,219,0 +170761827089,219,0 +170761827137,219,0 +170761827187,218,0 +170761827235,214,0 +170761827284,214,0 +170761827332,214,0 +170761827380,215,0 +170761827428,215,0 +170761827476,216,0 +170761827526,216,0 +170761827574,216,0 +170761827621,216,0 +170761827671,217,0 +170761827719,217,0 +170761827768,218,0 +170761827816,218,0 +170761827866,219,0 +170761827914,219,0 +170761827962,219,0 +170761828009,219,0 +170761828059,219,0 +170761828107,215,0 +170761828155,214,0 +170761828203,214,0 +170761828252,215,0 +170761828300,215,0 +170761828348,215,0 +170761828396,215,0 +170761828445,216,0 +170761828495,216,0 +170761828544,216,0 +170761828592,217,0 +170761828640,217,0 +170761828688,218,0 +170761828736,218,0 +170761828784,218,0 +170761828834,218,0 +170761828882,218,0 +170761828930,219,0 +170761828979,219,0 +170761829027,214,0 +170761829075,214,0 +170761829123,214,0 +170761829171,215,0 +170761829218,215,0 +170761829266,215,0 +170761829314,216,0 +170761829362,216,0 +170761829410,216,0 +170761829458,217,0 +170761829507,217,0 +170761829555,218,0 +170761829605,218,0 +170761829653,219,0 +170761829701,219,0 +170761829748,219,0 +170761829796,219,0 +170761829844,219,0 +170761829894,219,0 +170761829943,214,0 +170761829991,214,0 +170761830039,214,0 +170761830087,214,0 +170761830135,214,0 +170761830183,215,0 +170761830233,215,0 +170761830281,215,0 +170761830329,216,0 +170761830378,217,0 +170761830426,217,0 +170761830474,217,0 +170761830523,217,0 +170761830571,219,0 +170761830619,218,0 +170761830667,219,0 +170761830715,220,0 +170761830763,219,0 +170761830811,219,0 +170761830860,214,0 +170761830910,214,0 +170761830958,214,0 +170761831005,214,0 +170761831053,215,0 +170761831101,215,0 +170761831149,215,0 +170761831197,216,0 +170761831245,216,0 +170761831292,217,0 +170761831340,217,0 +170761831388,217,0 +170761831436,218,0 +170761831483,218,0 +170761831531,218,0 +170761831579,218,0 +170761831628,219,0 +170761831676,219,0 +170761831724,215,0 +170761831772,214,0 +170761831820,214,0 +170761831868,214,0 +170761831915,214,0 +170761831963,214,0 +170761832011,215,0 +170761832059,215,0 +170761832107,216,0 +170761832155,216,0 +170761832202,216,0 +170761832250,217,0 +170761832298,217,0 +170761832346,218,0 +170761832394,218,0 +170761832442,218,0 +170761832490,219,0 +170761832537,220,0 +170761832585,219,0 +170761832633,215,0 +170761832681,214,0 +170761832729,214,0 +170761832776,214,0 +170761832824,214,0 +170761832872,215,0 +170761832920,215,0 +170761832968,215,0 +170761833017,216,0 +170761833065,216,0 +170761833113,217,0 +170761833161,217,0 +170761833209,217,0 +170761833257,217,0 +170761833304,218,0 +170761833352,218,0 +170761833400,219,0 +170761833450,219,0 +170761833499,220,0 +170761833549,215,0 +170761833598,214,0 +170761833646,214,0 +170761833695,214,0 +170761833743,214,0 +170761833791,214,0 +170761833841,214,0 +170761833890,215,0 +170761833938,215,0 +170761833987,216,0 +170761834037,216,0 +170761834085,217,0 +170761834133,217,0 +170761834182,217,0 +170761834230,218,0 +170761834280,218,0 +170761834329,219,0 +170761834379,220,0 +170761834427,219,0 +170761834475,214,0 +170761834524,214,0 +170761834574,214,0 +170761834621,214,0 +170761834669,215,0 +170761834717,214,0 +170761834765,215,0 +170761834813,215,0 +170761834861,215,0 +170761834909,216,0 +170761834958,217,0 +170761835006,217,0 +170761835054,217,0 +170761835102,218,0 +170761835150,219,0 +170761835198,218,0 +170761835245,219,0 +170761835293,218,0 +170761835341,215,0 +170761835389,214,0 +170761835437,214,0 +170761835485,214,0 +170761835532,215,0 +170761835580,215,0 +170761835630,215,0 +170761835678,215,0 +170761835725,215,0 +170761835773,216,0 +170761835821,216,0 +170761835869,216,0 +170761835917,217,0 +170761835965,218,0 +170761836013,218,0 +170761836061,220,0 +170761836108,219,0 +170761836156,219,0 +170761836204,219,0 +170761836252,215,0 +170761836300,214,0 +170761836349,214,0 +170761836397,215,0 +170761836445,215,0 +170761836495,215,0 +170761836544,216,0 +170761836592,216,0 +170761836641,217,0 +170761836689,217,0 +170761836737,217,0 +170761836785,218,0 +170761836834,218,0 +170761836882,218,0 +170761836930,219,0 +170761836977,220,0 +170761837025,219,0 +170761837073,219,0 +170761837121,219,0 +170761837169,215,0 +170761837217,214,0 +170761837265,215,0 +170761837313,215,0 +170761837360,215,0 +170761837408,216,0 +170761837456,216,0 +170761837504,216,0 +170761837554,217,0 +170761837602,217,0 +170761837650,218,0 +170761837699,218,0 +170761837749,219,0 +170761837797,220,0 +170761837846,220,0 +170761837894,219,0 +170761837942,220,0 +170761837990,219,0 +170761838038,219,0 +170761838086,214,0 +170761838135,214,0 +170761838183,214,0 +170761838233,215,0 +170761838282,215,0 +170761838332,216,0 +170761838381,216,0 +170761838429,216,0 +170761838479,217,0 +170761838528,218,0 +170761838578,218,0 +170761838626,218,0 +170761838675,219,0 +170761838723,219,0 +170761838773,219,0 +170761838821,219,0 +170761838868,220,0 +170761838916,219,0 +170761838964,215,0 +170761839014,214,0 +170761839063,214,0 +170761839111,214,0 +170761839161,214,0 +170761839209,214,0 +170761839257,215,0 +170761839305,215,0 +170761839354,215,0 +170761839403,216,0 +170761839451,216,0 +170761839501,217,0 +170761839550,217,0 +170761839598,218,0 +170761839646,218,0 +170761839694,218,0 +170761839742,219,0 +170761839790,218,0 +170761839839,218,0 +170761839887,215,0 +170761839937,213,0 +170761839985,214,0 +170761840034,214,0 +170761840082,215,0 +170761840130,215,0 +170761840178,215,0 +170761840226,216,0 +170761840274,216,0 +170761840322,216,0 +170761840370,217,0 +170761840418,217,0 +170761840467,218,0 +170761840516,218,0 +170761840564,218,0 +170761840614,219,0 +170761840662,218,0 +170761840710,220,0 +170761840758,219,0 +170761840807,215,0 +170761840855,216,0 +170761840903,216,0 +170761840951,217,0 +170761840999,217,0 +170761841047,217,0 +170761841095,217,0 +170761841143,218,0 +170761841191,219,0 +170761841240,219,0 +170761841288,219,0 +170761841337,220,0 +170761841387,220,0 +170761841437,220,0 +170761841484,220,0 +170761841532,220,0 +170761841580,219,0 +170761841628,219,0 +170761841678,218,0 +170761841725,215,0 +170761841773,215,0 +170761841823,216,0 +170761841870,216,0 +170761841918,217,0 +170761841968,217,0 +170761842017,218,0 +170761842065,219,0 +170761842115,218,0 +170761842162,219,0 +170761842210,220,0 +170761842258,220,0 +170761842306,221,0 +170761842356,219,0 +170761842404,219,0 +170761842453,219,0 +170761842501,219,0 +170761842551,219,0 +170761842600,215,0 +170761842648,214,0 +170761842696,214,0 +170761842746,214,0 +170761842794,215,0 +170761842843,215,0 +170761842893,216,0 +170761842942,216,0 +170761842990,216,0 +170761843038,217,0 +170761843088,217,0 +170761843135,218,0 +170761843183,219,0 +170761843233,219,0 +170761843282,218,0 +170761843330,218,0 +170761843378,219,0 +170761843426,218,0 +170761843476,218,0 +170761843523,215,0 +170761843571,214,0 +170761843621,214,0 +170761843669,214,0 +170761843717,215,0 +170761843765,215,0 +170761843813,215,0 +170761843860,215,0 +170761843908,216,0 +170761843958,216,0 +170761844007,217,0 +170761844055,217,0 +170761844103,217,0 +170761844153,218,0 +170761844201,218,0 +170761844249,219,0 +170761844296,218,0 +170761844346,219,0 +170761844395,219,0 +170761844443,214,0 +170761844491,214,0 +170761844541,214,0 +170761844589,215,0 +170761844637,215,0 +170761844684,215,0 +170761844734,215,0 +170761844782,215,0 +170761844830,216,0 +170761844879,216,0 +170761844927,216,0 +170761844975,217,0 +170761845023,216,0 +170761845071,217,0 +170761845119,218,0 +170761845167,218,0 +170761845215,219,0 +170761845264,219,0 +170761845312,219,0 +170761845362,214,0 +170761845410,214,0 +170761845458,214,0 +170761845505,215,0 +170761845555,215,0 +170761845604,216,0 +170761845654,216,0 +170761845703,216,0 +170761845753,216,0 +170761845802,217,0 +170761845850,217,0 +170761845898,218,0 +170761845946,218,0 +170761845996,218,0 +170761846044,218,0 +170761846092,219,0 +170761846141,218,0 +170761846189,219,0 +170761846239,215,0 +170761846287,214,0 +170761846335,214,0 +170761846384,214,0 +170761846434,215,0 +170761846481,215,0 +170761846529,215,0 +170761846577,215,0 +170761846625,216,0 +170761846673,217,0 +170761846721,217,0 +170761846770,218,0 +170761846818,218,0 +170761846866,219,0 +170761846913,219,0 +170761846961,219,0 +170761847009,218,0 +170761847057,219,0 +170761847104,219,0 +170761847152,215,0 +170761847202,214,0 +170761847251,214,0 +170761847299,214,0 +170761847347,215,0 +170761847395,215,0 +170761847442,215,0 +170761847490,215,0 +170761847538,216,0 +170761847586,216,0 +170761847635,216,0 +170761847683,217,0 +170761847731,218,0 +170761847779,218,0 +170761847827,218,0 +170761847875,219,0 +170761847922,218,0 +170761847970,220,0 +170761848020,222,0 +170761848069,215,0 +170761848119,214,0 +170761848167,214,0 +170761848215,215,0 +170761848263,215,0 +170761848311,215,0 +170761848360,216,0 +170761848409,216,0 +170761848459,217,0 +170761848507,217,0 +170761848557,218,0 +170761848604,218,0 +170761848654,219,0 +170761848702,219,0 +170761848750,219,0 +170761848799,219,0 +170761848847,219,0 +170761848896,219,0 +170761848946,219,0 +170761848994,214,0 +170761849043,214,0 +170761849091,214,0 +170761849141,215,0 +170761849190,215,0 +170761849238,215,0 +170761849286,215,0 +170761849336,216,0 +170761849384,216,0 +170761849433,217,0 +170761849481,217,0 +170761849530,218,0 +170761849578,217,0 +170761849626,219,0 +170761849674,219,0 +170761849722,219,0 +170761849772,220,0 +170761849820,219,0 +170761849868,219,0 +170761849915,214,0 +170761849965,214,0 +170761850013,214,0 +170761850062,215,0 +170761850112,215,0 +170761850160,215,0 +170761850209,216,0 +170761850257,216,0 +170761850305,217,0 +170761850353,217,0 +170761850401,217,0 +170761850449,217,0 +170761850497,218,0 +170761850545,218,0 +170761850592,219,0 +170761850640,219,0 +170761850688,220,0 +170761850736,220,0 +170761850784,219,0 +170761850833,214,0 +170761850881,214,0 +170761850929,214,0 +170761850977,215,0 +170761851024,215,0 +170761851072,216,0 +170761851120,216,0 +170761851169,216,0 +170761851217,217,0 +170761851267,217,0 +170761851314,217,0 +170761851362,217,0 +170761851410,219,0 +170761851460,218,0 +170761851507,219,0 +170761851557,219,0 +170761851605,220,0 +170761851653,219,0 +170761851702,215,0 +170761851750,214,0 +170761851798,214,0 +170761851846,215,0 +170761851894,215,0 +170761851941,216,0 +170761851989,216,0 +170761852037,216,0 +170761852085,217,0 +170761852133,217,0 +170761852181,218,0 +170761852229,217,0 +170761852276,219,0 +170761852326,220,0 +170761852374,219,0 +170761852421,219,0 +170761852469,219,0 +170761852517,219,0 +170761852567,219,0 +170761852614,215,0 +170761852664,215,0 +170761852713,215,0 +170761852761,215,0 +170761852809,216,0 +170761852857,216,0 +170761852905,217,0 +170761852954,217,0 +170761853002,218,0 +170761853050,218,0 +170761853098,219,0 +170761853146,219,0 +170761853194,219,0 +170761853241,219,0 +170761853289,220,0 +170761853337,220,0 +170761853385,220,0 +170761853433,219,0 +170761853482,220,0 +170761853530,215,0 +170761853578,214,0 +170761853626,214,0 +170761853674,215,0 +170761853721,215,0 +170761853769,215,0 +170761853817,216,0 +170761853865,217,0 +170761853913,217,0 +170761853961,218,0 +170761854009,218,0 +170761854056,218,0 +170761854104,218,0 +170761854152,219,0 +170761854200,219,0 +170761854248,219,0 +170761854296,219,0 +170761854343,219,0 +170761854393,219,0 +170761854441,215,0 +170761854488,214,0 +170761854536,214,0 +170761854584,214,0 +170761854632,215,0 +170761854680,214,0 +170761854729,216,0 +170761854777,215,0 +170761854826,216,0 +170761854874,216,0 +170761854922,217,0 +170761854970,217,0 +170761855018,218,0 +170761855065,218,0 +170761855113,218,0 +170761855161,218,0 +170761855209,219,0 +170761855257,218,0 +170761855304,219,0 +170761855352,215,0 +170761855400,214,0 +170761855448,214,0 +170761855496,214,0 +170761855544,215,0 +170761855592,215,0 +170761855639,215,0 +170761855689,216,0 +170761855737,216,0 +170761855785,216,0 +170761855834,217,0 +170761855882,218,0 +170761855932,218,0 +170761855980,218,0 +170761856027,219,0 +170761856077,219,0 +170761856126,220,0 +170761856176,219,0 +170761856226,219,0 +170761856274,214,0 +170761856321,214,0 +170761856369,214,0 +170761856417,214,0 +170761856465,214,0 +170761856515,215,0 +170761856563,215,0 +170761856612,216,0 +170761856660,217,0 +170761856709,216,0 +170761856757,217,0 +170761856805,218,0 +170761856853,219,0 +170761856902,219,0 +170761856950,220,0 +170761856998,219,0 +170761857046,219,0 +170761857094,220,0 +170761857142,219,0 +170761857189,214,0 +170761857239,214,0 +170761857287,214,0 +170761857335,214,0 +170761857383,214,0 +170761857430,215,0 +170761857480,215,0 +170761857528,216,0 +170761857576,216,0 +170761857625,217,0 +170761857673,217,0 +170761857721,218,0 +170761857771,218,0 +170761857819,218,0 +170761857868,219,0 +170761857916,218,0 +170761857964,219,0 +170761858012,219,0 +170761858060,219,0 +170761858107,214,0 +170761858155,213,0 +170761858203,214,0 +170761858253,214,0 +170761858301,214,0 +170761858348,214,0 +170761858398,214,0 +170761858446,215,0 +170761858494,215,0 +170761858543,215,0 +170761858591,215,0 +170761858639,216,0 +170761858689,216,0 +170761858738,217,0 +170761858788,217,0 +170761858837,218,0 +170761858885,218,0 +170761858933,219,0 +170761858981,215,0 +170761859029,214,0 +170761859077,214,0 +170761859125,214,0 +170761859172,214,0 +170761859220,214,0 +170761859268,214,0 +170761859318,214,0 +170761859366,215,0 +170761859413,216,0 +170761859461,216,0 +170761859509,216,0 +170761859557,217,0 +170761859605,217,0 +170761859653,217,0 +170761859702,216,0 +170761859750,216,0 +170761859800,216,0 +170761859849,219,0 +170761859897,215,0 +170761859947,214,0 +170761859996,214,0 +170761860046,214,0 +170761860094,214,0 +170761860143,214,0 +170761860193,214,0 +170761860241,214,0 +170761860290,215,0 +170761860338,215,0 +170761860386,216,0 +170761860434,216,0 +170761860482,217,0 +170761860530,217,0 +170761860578,218,0 +170761860626,218,0 +170761860675,218,0 +170761860723,218,0 +170761860771,219,0 +170761860819,215,0 +170761860867,214,0 +170761860915,214,0 +170761860963,215,0 +170761861011,215,0 +170761861060,215,0 +170761861109,215,0 +170761861159,216,0 +170761861207,216,0 +170761861256,217,0 +170761861304,217,0 +170761861354,217,0 +170761861402,218,0 +170761861450,219,0 +170761861498,218,0 +170761861546,218,0 +170761861594,219,0 +170761861642,219,0 +170761861690,219,0 +170761861739,214,0 +170761861789,214,0 +170761861836,214,0 +170761861884,215,0 +170761861934,215,0 +170761861982,216,0 +170761862031,216,0 +170761862079,216,0 +170761862128,217,0 +170761862176,217,0 +170761862226,218,0 +170761862274,218,0 +170761862321,219,0 +170761862369,219,0 +170761862417,219,0 +170761862467,219,0 +170761862515,219,0 +170761862563,219,0 +170761862611,218,0 +170761862659,214,0 +170761862707,214,0 +170761862756,215,0 +170761862804,215,0 +170761862852,216,0 +170761862900,216,0 +170761862948,217,0 +170761862996,217,0 +170761863044,217,0 +170761863092,218,0 +170761863141,218,0 +170761863189,219,0 +170761863237,219,0 +170761863285,220,0 +170761863333,220,0 +170761863381,219,0 +170761863428,220,0 +170761863476,220,0 +170761863524,219,0 +170761863572,214,0 +170761863620,214,0 +170761863669,214,0 +170761863717,215,0 +170761863765,215,0 +170761863813,216,0 +170761863861,216,0 +170761863909,217,0 +170761863957,217,0 +170761864005,216,0 +170761864054,218,0 +170761864102,218,0 +170761864150,218,0 +170761864198,218,0 +170761864245,219,0 +170761864293,219,0 +170761864341,218,0 +170761864389,220,0 +170761864438,219,0 +170761864486,214,0 +170761864534,214,0 +170761864582,215,0 +170761864630,215,0 +170761864677,215,0 +170761864725,216,0 +170761864775,216,0 +170761864823,216,0 +170761864870,216,0 +170761864918,217,0 +170761864966,218,0 +170761865014,218,0 +170761865062,218,0 +170761865111,219,0 +170761865159,219,0 +170761865207,219,0 +170761865255,219,0 +170761865303,220,0 +170761865352,218,0 +170761865400,214,0 +170761865448,214,0 +170761865496,215,0 +170761865544,215,0 +170761865592,215,0 +170761865640,216,0 +170761865687,216,0 +170761865735,216,0 +170761865783,217,0 +170761865831,217,0 +170761865879,218,0 +170761865927,218,0 +170761865975,219,0 +170761866023,220,0 +170761866072,220,0 +170761866120,219,0 +170761866168,219,0 +170761866216,219,0 +170761866265,219,0 +170761866313,214,0 +170761866361,214,0 +170761866410,215,0 +170761866458,215,0 +170761866506,216,0 +170761866554,216,0 +170761866602,216,0 +170761866650,217,0 +170761866698,217,0 +170761866746,217,0 +170761866794,218,0 +170761866843,218,0 +170761866893,218,0 +170761866941,218,0 +170761866989,219,0 +170761867036,219,0 +170761867084,219,0 +170761867132,219,0 +170761867182,219,0 +170761867229,214,0 +170761867277,214,0 +170761867325,215,0 +170761867373,215,0 +170761867421,215,0 +170761867470,216,0 +170761867518,216,0 +170761867566,217,0 +170761867616,217,0 +170761867665,218,0 +170761867713,218,0 +170761867761,219,0 +170761867809,219,0 +170761867857,221,0 +170761867904,220,0 +170761867952,220,0 +170761868000,220,0 +170761868050,218,0 +170761868099,218,0 +170761868149,215,0 +170761868198,216,0 +170761868248,217,0 +170761868297,216,0 +170761868345,217,0 +170761868393,218,0 +170761868441,218,0 +170761868490,219,0 +170761868540,219,0 +170761868588,219,0 +170761868636,220,0 +170761868683,219,0 +170761868733,221,0 +170761868781,220,0 +170761868829,220,0 +170761868877,220,0 +170761868925,220,0 +170761868973,219,0 +170761869020,217,0 +170761869068,216,0 +170761869118,216,0 +170761869166,217,0 +170761869214,217,0 +170761869262,218,0 +170761869310,217,0 +170761869358,218,0 +170761869406,219,0 +170761869453,219,0 +170761869501,220,0 +170761869549,220,0 +170761869598,220,0 +170761869646,220,0 +170761869694,220,0 +170761869742,220,0 +170761869790,220,0 +170761869838,219,0 +170761869886,219,0 +170761869933,217,0 +170761869981,215,0 +170761870029,215,0 +170761870077,216,0 +170761870125,217,0 +170761870173,216,0 +170761870220,219,0 +170761870270,218,0 +170761870319,218,0 +170761870367,218,0 +170761870417,218,0 +170761870465,219,0 +170761870512,220,0 +170761870562,221,0 +170761870610,220,0 +170761870659,220,0 +170761870709,220,0 +170761870757,220,0 +170761870806,219,0 +170761870854,215,0 +170761870903,214,0 +170761870951,213,0 +170761871001,214,0 +170761871049,214,0 +170761871097,214,0 +170761871145,215,0 +170761871193,215,0 +170761871241,215,0 +170761871290,216,0 +170761871338,216,0 +170761871386,217,0 +170761871434,217,0 +170761871483,218,0 +170761871533,218,0 +170761871581,218,0 +170761871629,216,0 +170761871677,218,0 +170761871724,219,0 +170761871774,214,0 +170761871822,214,0 +170761871870,214,0 +170761871919,214,0 +170761871969,214,0 +170761872016,215,0 +170761872064,215,0 +170761872114,215,0 +170761872163,215,0 +170761872211,216,0 +170761872261,217,0 +170761872309,217,0 +170761872357,217,0 +170761872405,219,0 +170761872453,218,0 +170761872500,219,0 +170761872548,219,0 +170761872596,219,0 +170761872646,219,0 +170761872695,214,0 +170761872743,214,0 +170761872793,214,0 +170761872841,214,0 +170761872890,214,0 +170761872938,214,0 +170761872988,215,0 +170761873037,216,0 +170761873085,216,0 +170761873133,217,0 +170761873181,218,0 +170761873229,217,0 +170761873278,218,0 +170761873326,218,0 +170761873376,218,0 +170761873424,219,0 +170761873472,219,0 +170761873520,219,0 +170761873568,219,0 +170761873617,214,0 +170761873665,213,0 +170761873715,213,0 +170761873762,213,0 +170761873810,213,0 +170761873858,213,0 +170761873906,214,0 +170761873956,214,0 +170761874005,214,0 +170761874055,214,0 +170761874104,214,0 +170761874153,215,0 +170761874203,216,0 +170761874251,216,0 +170761874300,216,0 +170761874348,216,0 +170761874396,215,0 +170761874444,219,0 +170761874494,218,0 +170761874541,214,0 +170761874589,214,0 +170761874639,214,0 +170761874687,214,0 +170761874735,215,0 +170761874783,215,0 +170761874832,216,0 +170761874880,216,0 +170761874928,217,0 +170761874976,217,0 +170761875024,218,0 +170761875072,218,0 +170761875119,218,0 +170761875169,218,0 +170761875217,219,0 +170761875266,219,0 +170761875314,219,0 +170761875364,219,0 +170761875412,214,0 +170761875460,214,0 +170761875509,214,0 +170761875559,214,0 +170761875607,214,0 +170761875654,214,0 +170761875704,214,0 +170761875752,215,0 +170761875800,215,0 +170761875849,216,0 +170761875899,216,0 +170761875947,216,0 +170761875996,218,0 +170761876044,218,0 +170761876094,218,0 +170761876142,218,0 +170761876191,218,0 +170761876239,219,0 +170761876289,219,0 +170761876337,214,0 +170761876385,213,0 +170761876432,214,0 +170761876480,214,0 +170761876530,214,0 +170761876578,214,0 +170761876627,215,0 +170761876675,215,0 +170761876723,216,0 +170761876771,216,0 +170761876819,216,0 +170761876867,217,0 +170761876915,217,0 +170761876964,218,0 +170761877014,218,0 +170761877063,218,0 +170761877111,219,0 +170761877159,219,0 +170761877209,219,0 +170761877258,214,0 +170761877306,214,0 +170761877356,214,0 +170761877403,214,0 +170761877451,214,0 +170761877499,215,0 +170761877547,215,0 +170761877596,215,0 +170761877644,215,0 +170761877692,216,0 +170761877742,216,0 +170761877789,218,0 +170761877837,217,0 +170761877885,218,0 +170761877933,219,0 +170761877983,219,0 +170761878032,219,0 +170761878080,219,0 +170761878130,219,0 +170761878178,214,0 +170761878225,213,0 +170761878275,214,0 +170761878323,214,0 +170761878371,214,0 +170761878418,215,0 +170761878466,215,0 +170761878514,215,0 +170761878562,216,0 +170761878612,217,0 +170761878659,217,0 +170761878709,217,0 +170761878757,218,0 +170761878805,219,0 +170761878853,218,0 +170761878902,219,0 +170761878952,219,0 +170761878999,220,0 +170761879047,215,0 +170761879095,214,0 +170761879143,214,0 +170761879191,214,0 +170761879240,214,0 +170761879290,215,0 +170761879338,215,0 +170761879387,215,0 +170761879437,216,0 +170761879485,216,0 +170761879534,217,0 +170761879582,217,0 +170761879630,217,0 +170761879677,219,0 +170761879725,218,0 +170761879773,218,0 +170761879821,219,0 +170761879868,219,0 +170761879916,219,0 +170761879966,216,0 +170761880015,214,0 +170761880063,213,0 +170761880111,214,0 +170761880159,214,0 +170761880208,214,0 +170761880256,215,0 +170761880304,215,0 +170761880352,216,0 +170761880400,216,0 +170761880449,217,0 +170761880497,217,0 +170761880545,218,0 +170761880595,218,0 +170761880644,218,0 +170761880692,218,0 +170761880740,219,0 +170761880788,219,0 +170761880836,219,0 +170761880884,215,0 +170761880931,213,0 +170761880981,213,0 +170761881029,213,0 +170761881078,213,0 +170761881128,213,0 +170761881176,213,0 +170761881224,213,0 +170761881272,213,0 +170761881321,213,0 +170761881369,213,0 +170761881417,214,0 +170761881466,214,0 +170761881516,214,0 +170761881565,215,0 +170761881615,215,0 +170761881663,215,0 +170761881710,218,0 +170761881760,219,0 +170761881808,214,0 +170761881856,214,0 +170761881903,214,0 +170761881951,214,0 +170761881999,214,0 +170761882047,214,0 +170761882096,214,0 +170761882146,214,0 +170761882194,214,0 +170761882242,216,0 +170761882291,215,0 +170761882339,215,0 +170761882389,217,0 +170761882438,217,0 +170761882486,216,0 +170761882535,217,0 +170761882583,218,0 +170761882631,218,0 +170761882681,218,0 +170761882729,218,0 +170761882777,219,0 +170761882826,218,0 +170761882874,218,0 +170761882922,220,0 +170761882970,219,0 +170761883018,220,0 +170761883066,220,0 +170761883114,219,0 +170761883162,215,0 +170761883210,214,0 +170761883257,214,0 +170761883307,215,0 +170761883355,215,0 +170761883404,215,0 +170761883452,215,0 +170761883500,216,0 +170761883550,216,0 +170761883598,217,0 +170761883645,217,0 +170761883693,218,0 +170761883741,218,0 +170761883791,220,0 +170761883840,219,0 +170761883888,220,0 +170761883936,220,0 +170761883984,219,0 +170761884032,219,0 +170761884080,214,0 +170761884128,214,0 +170761884175,214,0 +170761884225,215,0 +170761884273,215,0 +170761884320,216,0 +170761884368,216,0 +170761884416,217,0 +170761884464,217,0 +170761884512,217,0 +170761884560,218,0 +170761884608,218,0 +170761884657,218,0 +170761884705,219,0 +170761884753,220,0 +170761884801,219,0 +170761884849,219,0 +170761884897,219,0 +170761884945,219,0 +170761884992,214,0 +170761885040,214,0 +170761885088,215,0 +170761885136,215,0 +170761885184,216,0 +170761885233,216,0 +170761885281,216,0 +170761885329,217,0 +170761885377,218,0 +170761885425,218,0 +170761885474,219,0 +170761885522,219,0 +170761885570,220,0 +170761885618,220,0 +170761885666,220,0 +170761885715,220,0 +170761885763,219,0 +170761885813,219,0 +170761885861,219,0 +170761885910,215,0 +170761885958,215,0 +170761886006,216,0 +170761886054,216,0 +170761886103,216,0 +170761886151,217,0 +170761886201,217,0 +170761886250,218,0 +170761886298,218,0 +170761886346,218,0 +170761886394,219,0 +170761886443,219,0 +170761886493,218,0 +170761886542,219,0 +170761886590,219,0 +170761886640,219,0 +170761886689,219,0 +170761886737,219,0 +170761886787,215,0 +170761886834,214,0 +170761886882,214,0 +170761886932,215,0 +170761886980,215,0 +170761887028,216,0 +170761887077,216,0 +170761887127,216,0 +170761887175,217,0 +170761887223,217,0 +170761887270,217,0 +170761887318,218,0 +170761887366,218,0 +170761887414,219,0 +170761887464,219,0 +170761887512,219,0 +170761887560,219,0 +170761887608,220,0 +170761887656,219,0 +170761887704,215,0 +170761887751,214,0 +170761887799,214,0 +170761887847,215,0 +170761887895,215,0 +170761887943,215,0 +170761887991,216,0 +170761888039,216,0 +170761888087,217,0 +170761888135,216,0 +170761888184,217,0 +170761888234,218,0 +170761888282,218,0 +170761888330,219,0 +170761888378,218,0 +170761888426,218,0 +170761888475,217,0 +170761888523,218,0 +170761888571,220,0 +170761888621,214,0 +170761888668,214,0 +170761888716,214,0 +170761888764,214,0 +170761888812,214,0 +170761888860,214,0 +170761888908,214,0 +170761888956,214,0 +170761889004,214,0 +170761889053,215,0 +170761889101,215,0 +170761889149,215,0 +170761889197,216,0 +170761889245,217,0 +170761889293,217,0 +170761889341,217,0 +170761889389,217,0 +170761889437,218,0 +170761889485,219,0 +170761889534,214,0 +170761889582,214,0 +170761889630,214,0 +170761889678,215,0 +170761889726,215,0 +170761889775,215,0 +170761889823,215,0 +170761889871,216,0 +170761889919,216,0 +170761889967,216,0 +170761890015,216,0 +170761890063,217,0 +170761890110,217,0 +170761890158,218,0 +170761890206,218,0 +170761890254,218,0 +170761890302,219,0 +170761890350,219,0 +170761890399,219,0 +170761890447,214,0 +170761890495,214,0 +170761890543,215,0 +170761890590,215,0 +170761890638,215,0 +170761890686,216,0 +170761890734,215,0 +170761890782,216,0 +170761890830,216,0 +170761890878,216,0 +170761890925,216,0 +170761890973,217,0 +170761891021,217,0 +170761891069,218,0 +170761891117,219,0 +170761891165,219,0 +170761891212,219,0 +170761891260,219,0 +170761891308,219,0 +170761891356,215,0 +170761891404,215,0 +170761891452,216,0 +170761891499,216,0 +170761891547,216,0 +170761891595,217,0 +170761891644,217,0 +170761891692,218,0 +170761891740,218,0 +170761891788,219,0 +170761891836,218,0 +170761891883,219,0 +170761891931,220,0 +170761891979,221,0 +170761892027,219,0 +170761892075,222,0 +170761892124,219,0 +170761892174,219,0 +170761892221,217,0 +170761892269,215,0 +170761892317,215,0 +170761892365,216,0 +170761892413,217,0 +170761892461,217,0 +170761892509,217,0 +170761892557,218,0 +170761892604,218,0 +170761892652,218,0 +170761892700,219,0 +170761892749,220,0 +170761892797,220,0 +170761892845,220,0 +170761892893,220,0 +170761892943,220,0 +170761892990,220,0 +170761893038,220,0 +170761893086,219,0 +170761893134,218,0 +170761893182,214,0 +170761893229,214,0 +170761893277,215,0 +170761893325,215,0 +170761893373,216,0 +170761893421,216,0 +170761893469,216,0 +170761893517,217,0 +170761893564,217,0 +170761893612,217,0 +170761893660,218,0 +170761893708,218,0 +170761893756,219,0 +170761893804,220,0 +170761893852,219,0 +170761893900,219,0 +170761893947,220,0 +170761893995,219,0 +170761894043,218,0 +170761894091,214,0 +170761894139,215,0 +170761894187,215,0 +170761894236,215,0 +170761894284,216,0 +170761894332,216,0 +170761894380,217,0 +170761894427,217,0 +170761894475,217,0 +170761894524,218,0 +170761894574,218,0 +170761894622,218,0 +170761894670,219,0 +170761894717,219,0 +170761894765,220,0 +170761894813,220,0 +170761894861,220,0 +170761894909,219,0 +170761894957,215,0 +170761895004,214,0 +170761895052,214,0 +170761895100,214,0 +170761895148,214,0 +170761895196,215,0 +170761895244,215,0 +170761895291,215,0 +170761895339,216,0 +170761895387,217,0 +170761895435,217,0 +170761895483,217,0 +170761895531,218,0 +170761895579,218,0 +170761895626,219,0 +170761895676,219,0 +170761895724,220,0 +170761895772,220,0 +170761895819,219,0 +170761895867,215,0 +170761895915,214,0 +170761895963,214,0 +170761896011,214,0 +170761896058,215,0 +170761896106,215,0 +170761896154,215,0 +170761896202,216,0 +170761896250,216,0 +170761896299,216,0 +170761896347,216,0 +170761896395,217,0 +170761896442,217,0 +170761896490,218,0 +170761896538,218,0 +170761896586,218,0 +170761896634,218,0 +170761896682,219,0 +170761896730,219,0 +170761896777,215,0 +170761896825,214,0 +170761896873,213,0 +170761896921,214,0 +170761896969,214,0 +170761897017,214,0 +170761897064,215,0 +170761897112,215,0 +170761897160,215,0 +170761897208,216,0 +170761897256,217,0 +170761897304,217,0 +170761897351,217,0 +170761897399,217,0 +170761897447,218,0 +170761897495,218,0 +170761897543,219,0 +170761897590,219,0 +170761897638,220,0 +170761897686,215,0 +170761897734,214,0 +170761897782,213,0 +170761897830,214,0 +170761897878,214,0 +170761897925,214,0 +170761897973,215,0 +170761898021,215,0 +170761898069,216,0 +170761898117,216,0 +170761898164,216,0 +170761898212,217,0 +170761898260,218,0 +170761898308,218,0 +170761898356,218,0 +170761898405,218,0 +170761898453,219,0 +170761898501,218,0 +170761898549,219,0 +170761898598,215,0 +170761898646,214,0 +170761898694,214,0 +170761898742,214,0 +170761898790,214,0 +170761898838,215,0 +170761898886,215,0 +170761898934,215,0 +170761898981,215,0 +170761899029,216,0 +170761899077,216,0 +170761899125,217,0 +170761899173,217,0 +170761899222,218,0 +170761899270,218,0 +170761899320,218,0 +170761899369,219,0 +170761899417,219,0 +170761899465,219,0 +170761899513,215,0 +170761899560,214,0 +170761899608,215,0 +170761899656,215,0 +170761899706,216,0 +170761899753,216,0 +170761899801,216,0 +170761899849,216,0 +170761899897,217,0 +170761899945,218,0 +170761899993,217,0 +170761900041,218,0 +170761900089,218,0 +170761900137,219,0 +170761900185,219,0 +170761900234,218,0 +170761900284,219,0 +170761900332,219,0 +170761900380,219,0 +170761900428,215,0 +170761900476,214,0 +170761900523,215,0 +170761900571,215,0 +170761900619,216,0 +170761900669,216,0 +170761900717,217,0 +170761900764,217,0 +170761900814,217,0 +170761900863,218,0 +170761900911,218,0 +170761900959,218,0 +170761901007,220,0 +170761901055,220,0 +170761901103,220,0 +170761901152,220,0 +170761901200,220,0 +170761901250,220,0 +170761901299,219,0 +170761901347,215,0 +170761901397,215,0 +170761901444,216,0 +170761901492,216,0 +170761901540,217,0 +170761901590,217,0 +170761901639,217,0 +170761901687,218,0 +170761901735,219,0 +170761901785,219,0 +170761901833,219,0 +170761901881,219,0 +170761901928,220,0 +170761901978,220,0 +170761902027,220,0 +170761902077,220,0 +170761902125,220,0 +170761902173,220,0 +170761902222,219,0 +170761902270,215,0 +170761902320,216,0 +170761902368,216,0 +170761902416,217,0 +170761902464,217,0 +170761902513,217,0 +170761902561,217,0 +170761902609,217,0 +170761902657,218,0 +170761902705,219,0 +170761902753,219,0 +170761902801,220,0 +170761902849,219,0 +170761902897,219,0 +170761902946,220,0 +170761902996,219,0 +170761903043,220,0 +170761903091,218,0 +170761903139,215,0 +170761903187,214,0 +170761903235,215,0 +170761903283,215,0 +170761903332,216,0 +170761903380,216,0 +170761903428,217,0 +170761903476,217,0 +170761903524,217,0 +170761903572,218,0 +170761903619,218,0 +170761903667,219,0 +170761903715,219,0 +170761903765,219,0 +170761903813,219,0 +170761903862,218,0 +170761903910,219,0 +170761903958,218,0 +170761904006,220,0 +170761904055,215,0 +170761904103,214,0 +170761904151,214,0 +170761904201,215,0 +170761904248,215,0 +170761904296,215,0 +170761904344,216,0 +170761904394,216,0 +170761904442,217,0 +170761904490,217,0 +170761904538,217,0 +170761904587,217,0 +170761904635,219,0 +170761904683,219,0 +170761904732,218,0 +170761904780,219,0 +170761904828,219,0 +170761904878,219,0 +170761904926,219,0 +170761904974,214,0 +170761905023,214,0 +170761905071,214,0 +170761905119,214,0 +170761905168,214,0 +170761905216,215,0 +170761905266,215,0 +170761905314,215,0 +170761905362,216,0 +170761905410,216,0 +170761905457,217,0 +170761905507,218,0 +170761905555,218,0 +170761905603,218,0 +170761905651,219,0 +170761905700,219,0 +170761905750,219,0 +170761905798,219,0 +170761905845,219,0 +170761905895,214,0 +170761905943,214,0 +170761905991,214,0 +170761906040,214,0 +170761906088,214,0 +170761906138,215,0 +170761906187,215,0 +170761906235,215,0 +170761906283,216,0 +170761906331,217,0 +170761906379,217,0 +170761906427,218,0 +170761906475,218,0 +170761906523,218,0 +170761906572,219,0 +170761906622,219,0 +170761906670,219,0 +170761906719,219,0 +170761906769,215,0 +170761906817,214,0 +170761906864,214,0 +170761906914,214,0 +170761906963,214,0 +170761907013,214,0 +170761907061,214,0 +170761907109,214,0 +170761907158,215,0 +170761907208,215,0 +170761907255,216,0 +170761907303,216,0 +170761907351,217,0 +170761907401,217,0 +170761907450,217,0 +170761907498,218,0 +170761907546,219,0 +170761907594,218,0 +170761907642,219,0 +170761907690,215,0 +170761907737,214,0 +170761907785,214,0 +170761907833,214,0 +170761907883,214,0 +170761907931,214,0 +170761907979,215,0 +170761908028,215,0 +170761908076,216,0 +170761908124,216,0 +170761908174,217,0 +170761908223,217,0 +170761908271,218,0 +170761908320,218,0 +170761908368,218,0 +170761908416,218,0 +170761908464,218,0 +170761908514,219,0 +170761908563,219,0 +170761908611,214,0 +170761908661,214,0 +170761908709,214,0 +170761908757,214,0 +170761908805,215,0 +170761908854,215,0 +170761908902,216,0 +170761908950,217,0 +170761908998,217,0 +170761909046,217,0 +170761909095,217,0 +170761909143,218,0 +170761909193,218,0 +170761909241,218,0 +170761909289,218,0 +170761909337,219,0 +170761909385,219,0 +170761909432,219,0 +170761909480,217,0 +170761909530,214,0 +170761909578,214,0 +170761909626,214,0 +170761909674,214,0 +170761909722,214,0 +170761909770,215,0 +170761909819,215,0 +170761909867,215,0 +170761909915,215,0 +170761909963,216,0 +170761910013,216,0 +170761910062,217,0 +170761910110,218,0 +170761910158,218,0 +170761910206,218,0 +170761910254,218,0 +170761910302,218,0 +170761910350,219,0 +170761910398,215,0 +170761910446,214,0 +170761910495,214,0 +170761910543,214,0 +170761910592,214,0 +170761910640,215,0 +170761910688,215,0 +170761910736,216,0 +170761910784,216,0 +170761910833,216,0 +170761910881,217,0 +170761910929,217,0 +170761910977,217,0 +170761911025,218,0 +170761911075,218,0 +170761911123,218,0 +170761911170,218,0 +170761911218,219,0 +170761911268,219,0 +170761911316,214,0 +170761911364,214,0 +170761911413,214,0 +170761911461,214,0 +170761911509,214,0 +170761911557,215,0 +170761911605,215,0 +170761911653,215,0 +170761911701,216,0 +170761911750,216,0 +170761911798,217,0 +170761911848,217,0 +170761911896,218,0 +170761911945,217,0 +170761911994,218,0 +170761912044,218,0 +170761912092,218,0 +170761912140,219,0 +170761912189,217,0 +170761912239,214,0 +170761912288,214,0 +170761912336,214,0 +170761912386,214,0 +170761912435,214,0 +170761912483,214,0 +170761912531,215,0 +170761912579,215,0 +170761912628,215,0 +170761912678,215,0 +170761912726,216,0 +170761912774,216,0 +170761912823,217,0 +170761912871,219,0 +170761912921,219,0 +170761912969,217,0 +170761913018,218,0 +170761913066,219,0 +170761913115,215,0 +170761913165,214,0 +170761913213,214,0 +170761913261,215,0 +170761913309,215,0 +170761913358,215,0 +170761913408,215,0 +170761913457,215,0 +170761913505,216,0 +170761913553,217,0 +170761913601,217,0 +170761913649,217,0 +170761913697,218,0 +170761913746,218,0 +170761913794,219,0 +170761913842,218,0 +170761913890,219,0 +170761913938,219,0 +170761913986,219,0 +170761914034,215,0 +170761914083,214,0 +170761914131,215,0 +170761914179,215,0 +170761914227,215,0 +170761914276,216,0 +170761914324,216,0 +170761914372,216,0 +170761914419,217,0 +170761914467,217,0 +170761914517,218,0 +170761914565,218,0 +170761914612,218,0 +170761914660,220,0 +170761914708,219,0 +170761914756,220,0 +170761914804,219,0 +170761914853,219,0 +170761914901,216,0 +170761914949,215,0 +170761914997,215,0 +170761915045,215,0 +170761915093,215,0 +170761915141,215,0 +170761915188,216,0 +170761915236,216,0 +170761915284,217,0 +170761915332,217,0 +170761915380,217,0 +170761915430,218,0 +170761915478,218,0 +170761915527,219,0 +170761915575,219,0 +170761915623,219,0 +170761915671,219,0 +170761915719,219,0 +170761915766,219,0 +170761915814,215,0 +170761915864,214,0 +170761915914,215,0 +170761915961,215,0 +170761916011,215,0 +170761916059,216,0 +170761916107,216,0 +170761916155,216,0 +170761916203,216,0 +170761916252,217,0 +170761916300,217,0 +170761916348,218,0 +170761916398,218,0 +170761916446,218,0 +170761916494,219,0 +170761916543,219,0 +170761916593,219,0 +170761916641,219,0 +170761916689,219,0 +170761916737,215,0 +170761916785,214,0 +170761916834,215,0 +170761916884,215,0 +170761916933,216,0 +170761916983,215,0 +170761917031,216,0 +170761917078,216,0 +170761917126,216,0 +170761917176,217,0 +170761917224,218,0 +170761917273,218,0 +170761917321,218,0 +170761917371,219,0 +170761917419,219,0 +170761917468,219,0 +170761917518,219,0 +170761917567,220,0 +170761917617,216,0 +170761917666,216,0 +170761917714,216,0 +170761917762,216,0 +170761917811,217,0 +170761917859,216,0 +170761917909,217,0 +170761917958,217,0 +170761918006,217,0 +170761918056,219,0 +170761918104,219,0 +170761918151,219,0 +170761918199,219,0 +170761918247,219,0 +170761918295,220,0 +170761918345,220,0 +170761918392,220,0 +170761918440,220,0 +170761918488,219,0 +170761918536,216,0 +170761918585,216,0 +170761918633,216,0 +170761918683,217,0 +170761918732,217,0 +170761918780,218,0 +170761918828,218,0 +170761918876,218,0 +170761918924,219,0 +170761918972,219,0 +170761919019,219,0 +170761919067,220,0 +170761919115,220,0 +170761919163,220,0 +170761919213,219,0 +170761919261,220,0 +170761919308,220,0 +170761919356,219,0 +170761919404,216,0 +170761919452,216,0 +170761919500,217,0 +170761919548,217,0 +170761919596,218,0 +170761919644,218,0 +170761919692,218,0 +170761919740,218,0 +170761919788,219,0 +170761919835,219,0 +170761919883,220,0 +170761919931,220,0 +170761919979,220,0 +170761920027,220,0 +170761920075,220,0 +170761920123,219,0 +170761920171,220,0 +170761920220,220,0 +170761920268,219,0 +170761920316,216,0 +170761920366,215,0 +170761920414,216,0 +170761920463,216,0 +170761920513,216,0 +170761920561,217,0 +170761920609,218,0 +170761920657,218,0 +170761920704,219,0 +170761920752,219,0 +170761920800,220,0 +170761920848,220,0 +170761920898,220,0 +170761920947,219,0 +170761920995,222,0 +170761921043,220,0 +170761921093,220,0 +170761921141,220,0 +170761921188,218,0 +170761921236,214,0 +170761921284,215,0 +170761921332,215,0 +170761921380,215,0 +170761921428,218,0 +170761921477,217,0 +170761921525,217,0 +170761921573,217,0 +170761921621,218,0 +170761921669,218,0 +170761921717,218,0 +170761921765,219,0 +170761921812,219,0 +170761921860,219,0 +170761921908,220,0 +170761921956,219,0 +170761922004,218,0 +170761922052,219,0 +170761922100,215,0 +170761922147,214,0 +170761922197,214,0 +170761922245,214,0 +170761922293,215,0 +170761922341,215,0 +170761922389,216,0 +170761922437,216,0 +170761922485,216,0 +170761922533,217,0 +170761922581,218,0 +170761922628,218,0 +170761922676,219,0 +170761922726,218,0 +170761922774,218,0 +170761922823,219,0 +170761922871,219,0 +170761922921,219,0 +170761922970,218,0 +170761923020,213,0 +170761923069,213,0 +170761923119,213,0 +170761923168,213,0 +170761923216,214,0 +170761923266,214,0 +170761923314,214,0 +170761923361,214,0 +170761923411,214,0 +170761923459,215,0 +170761923508,215,0 +170761923556,215,0 +170761923606,215,0 +170761923654,216,0 +170761923702,217,0 +170761923751,217,0 +170761923799,218,0 +170761923848,219,0 +170761923896,215,0 +170761923946,214,0 +170761923994,214,0 +170761924042,214,0 +170761924090,215,0 +170761924139,215,0 +170761924187,215,0 +170761924237,215,0 +170761924285,216,0 +170761924332,216,0 +170761924380,216,0 +170761924428,217,0 +170761924476,217,0 +170761924526,218,0 +170761924574,218,0 +170761924622,219,0 +170761924671,218,0 +170761924719,218,0 +170761924769,219,0 +170761924817,214,0 +170761924866,214,0 +170761924914,214,0 +170761924963,214,0 +170761925011,215,0 +170761925059,215,0 +170761925107,215,0 +170761925155,216,0 +170761925204,216,0 +170761925252,217,0 +170761925302,217,0 +170761925350,218,0 +170761925398,218,0 +170761925446,218,0 +170761925495,218,0 +170761925545,219,0 +170761925593,220,0 +170761925642,219,0 +170761925692,214,0 +170761925740,214,0 +170761925789,214,0 +170761925837,215,0 +170761925885,215,0 +170761925933,215,0 +170761925982,215,0 +170761926032,216,0 +170761926082,217,0 +170761926129,217,0 +170761926179,217,0 +170761926228,218,0 +170761926276,218,0 +170761926324,218,0 +170761926372,219,0 +170761926420,219,0 +170761926470,219,0 +170761926519,219,0 +170761926567,215,0 +170761926615,214,0 +170761926663,214,0 +170761926712,214,0 +170761926762,215,0 +170761926810,215,0 +170761926858,215,0 +170761926906,216,0 +170761926955,216,0 +170761927005,217,0 +170761927053,217,0 +170761927101,217,0 +170761927149,218,0 +170761927198,219,0 +170761927246,219,0 +170761927294,219,0 +170761927342,220,0 +170761927390,219,0 +170761927438,219,0 +170761927487,214,0 +170761927535,213,0 +170761927585,214,0 +170761927633,214,0 +170761927680,214,0 +170761927728,215,0 +170761927776,215,0 +170761927826,216,0 +170761927874,216,0 +170761927922,217,0 +170761927970,217,0 +170761928019,218,0 +170761928068,218,0 +170761928116,218,0 +170761928164,218,0 +170761928212,218,0 +170761928260,219,0 +170761928310,219,0 +170761928358,214,0 +170761928406,213,0 +170761928455,214,0 +170761928505,214,0 +170761928553,215,0 +170761928600,215,0 +170761928648,215,0 +170761928696,216,0 +170761928744,216,0 +170761928794,217,0 +170761928842,217,0 +170761928890,217,0 +170761928938,218,0 +170761928987,218,0 +170761929037,218,0 +170761929085,218,0 +170761929134,219,0 +170761929182,219,0 +170761929231,215,0 +170761929279,214,0 +170761929329,214,0 +170761929377,214,0 +170761929425,214,0 +170761929473,214,0 +170761929521,215,0 +170761929570,217,0 +170761929618,215,0 +170761929666,216,0 +170761929716,216,0 +170761929763,216,0 +170761929811,217,0 +170761929859,217,0 +170761929909,218,0 +170761929957,218,0 +170761930005,219,0 +170761930053,219,0 +170761930100,219,0 +170761930150,214,0 +170761930198,214,0 +170761930245,214,0 +170761930293,214,0 +170761930343,214,0 +170761930391,214,0 +170761930439,214,0 +170761930487,215,0 +170761930535,215,0 +170761930582,215,0 +170761930632,216,0 +170761930680,218,0 +170761930728,217,0 +170761930776,217,0 +170761930823,218,0 +170761930873,218,0 +170761930921,218,0 +170761930969,219,0 +170761931017,215,0 +170761931065,214,0 +170761931112,214,0 +170761931160,214,0 +170761931208,214,0 +170761931256,214,0 +170761931306,215,0 +170761931355,215,0 +170761931403,216,0 +170761931453,216,0 +170761931500,216,0 +170761931548,216,0 +170761931596,217,0 +170761931646,218,0 +170761931694,217,0 +170761931742,218,0 +170761931791,218,0 +170761931839,219,0 +170761931888,219,0 +170761931938,215,0 +170761931986,215,0 +170761932035,215,0 +170761932085,215,0 +170761932133,216,0 +170761932181,216,0 +170761932229,216,0 +170761932278,217,0 +170761932328,217,0 +170761932375,217,0 +170761932425,218,0 +170761932474,219,0 +170761932522,219,0 +170761932570,219,0 +170761932620,219,0 +170761932669,219,0 +170761932719,219,0 +170761932767,220,0 +170761932816,216,0 +170761932864,216,0 +170761932912,216,0 +170761932960,216,0 +170761933008,217,0 +170761933057,217,0 +170761933107,217,0 +170761933157,218,0 +170761933204,218,0 +170761933254,219,0 +170761933302,219,0 +170761933350,219,0 +170761933398,219,0 +170761933447,220,0 +170761933495,220,0 +170761933543,220,0 +170761933591,220,0 +170761933639,220,0 +170761933688,219,0 +170761933736,216,0 +170761933784,216,0 +170761933833,217,0 +170761933881,217,0 +170761933931,217,0 +170761933980,218,0 +170761934028,218,0 +170761934076,218,0 +170761934124,219,0 +170761934172,219,0 +170761934220,219,0 +170761934269,220,0 +170761934317,220,0 +170761934365,220,0 +170761934413,220,0 +170761934461,220,0 +170761934509,222,0 +170761934556,220,0 +170761934604,219,0 +170761934654,216,0 +170761934703,216,0 +170761934751,216,0 +170761934800,217,0 +170761934848,217,0 +170761934896,217,0 +170761934944,217,0 +170761934994,218,0 +170761935043,218,0 +170761935091,219,0 +170761935140,219,0 +170761935188,219,0 +170761935236,221,0 +170761935286,221,0 +170761935335,220,0 +170761935383,220,0 +170761935431,219,0 +170761935479,219,0 +170761935527,215,0 +170761935575,214,0 +170761935623,215,0 +170761935670,215,0 +170761935718,215,0 +170761935768,216,0 +170761935816,216,0 +170761935864,216,0 +170761935913,217,0 +170761935963,217,0 +170761936012,218,0 +170761936060,218,0 +170761936110,219,0 +170761936157,219,0 +170761936205,219,0 +170761936255,220,0 +170761936303,219,0 +170761936351,219,0 +170761936400,219,0 +170761936448,215,0 +170761936496,214,0 +170761936544,214,0 +170761936592,214,0 +170761936640,214,0 +170761936689,215,0 +170761936737,215,0 +170761936787,215,0 +170761936835,216,0 +170761936883,216,0 +170761936932,217,0 +170761936980,217,0 +170761937028,218,0 +170761937076,218,0 +170761937124,218,0 +170761937172,217,0 +170761937220,217,0 +170761937268,216,0 +170761937315,218,0 +170761937363,214,0 +170761937411,214,0 +170761937459,214,0 +170761937507,214,0 +170761937555,214,0 +170761937604,215,0 +170761937653,215,0 +170761937701,215,0 +170761937749,215,0 +170761937797,215,0 +170761937846,216,0 +170761937894,217,0 +170761937942,217,0 +170761937990,217,0 +170761938038,217,0 +170761938087,218,0 +170761938135,218,0 +170761938183,219,0 +170761938231,219,0 +170761938278,214,0 +170761938326,214,0 +170761938374,214,0 +170761938422,215,0 +170761938470,215,0 +170761938518,216,0 +170761938567,216,0 +170761938615,216,0 +170761938664,217,0 +170761938712,218,0 +170761938762,218,0 +170761938810,218,0 +170761938859,218,0 +170761938907,218,0 +170761938955,219,0 +170761939004,219,0 +170761939052,219,0 +170761939100,219,0 +170761939148,215,0 +170761939196,214,0 +170761939245,214,0 +170761939293,214,0 +170761939341,214,0 +170761939389,215,0 +170761939437,215,0 +170761939484,215,0 +170761939532,216,0 +170761939580,216,0 +170761939628,218,0 +170761939676,218,0 +170761939724,218,0 +170761939772,220,0 +170761939819,220,0 +170761939867,219,0 +170761939915,219,0 +170761939963,219,0 +170761940011,219,0 +170761940059,215,0 +170761940107,214,0 +170761940157,213,0 +170761940206,214,0 +170761940254,214,0 +170761940302,215,0 +170761940350,215,0 +170761940398,215,0 +170761940446,215,0 +170761940495,216,0 +170761940543,217,0 +170761940591,217,0 +170761940639,217,0 +170761940687,217,0 +170761940736,218,0 +170761940784,218,0 +170761940834,220,0 +170761940882,219,0 +170761940930,218,0 +170761940978,215,0 +170761941025,214,0 +170761941073,214,0 +170761941123,214,0 +170761941172,214,0 +170761941220,214,0 +170761941268,214,0 +170761941316,215,0 +170761941364,215,0 +170761941412,215,0 +170761941461,216,0 +170761941509,216,0 +170761941557,216,0 +170761941607,216,0 +170761941656,217,0 +170761941704,218,0 +170761941752,218,0 +170761941802,219,0 +170761941850,219,0 +170761941899,214,0 +170761941947,214,0 +170761941995,214,0 +170761942043,215,0 +170761942091,214,0 +170761942140,215,0 +170761942188,215,0 +170761942236,216,0 +170761942286,216,0 +170761942334,216,0 +170761942383,217,0 +170761942431,217,0 +170761942481,218,0 +170761942530,219,0 +170761942579,217,0 +170761942626,218,0 +170761942674,219,0 +170761942722,219,0 +170761942770,215,0 +170761942818,214,0 +170761942866,214,0 +170761942914,214,0 +170761942963,215,0 +170761943011,215,0 +170761943059,214,0 +170761943107,216,0 +170761943155,216,0 +170761943203,216,0 +170761943252,217,0 +170761943302,217,0 +170761943350,219,0 +170761943399,218,0 +170761943447,218,0 +170761943497,219,0 +170761943546,219,0 +170761943594,219,0 +170761943642,219,0 +170761943690,215,0 +170761943738,214,0 +170761943786,214,0 +170761943835,215,0 +170761943883,215,0 +170761943933,216,0 +170761943981,216,0 +170761944028,216,0 +170761944076,217,0 +170761944124,217,0 +170761944172,218,0 +170761944222,218,0 +170761944270,219,0 +170761944318,219,0 +170761944366,218,0 +170761944414,220,0 +170761944461,219,0 +170761944509,219,0 +170761944557,219,0 +170761944605,215,0 +170761944653,214,0 +170761944701,214,0 +170761944750,215,0 +170761944798,215,0 +170761944846,216,0 +170761944894,216,0 +170761944942,216,0 +170761944990,217,0 +170761945037,217,0 +170761945085,218,0 +170761945135,218,0 +170761945182,219,0 +170761945230,219,0 +170761945278,220,0 +170761945326,220,0 +170761945374,221,0 +170761945422,219,0 +170761945472,218,0 +170761945519,214,0 +170761945567,214,0 +170761945615,214,0 +170761945663,214,0 +170761945711,214,0 +170761945759,214,0 +170761945807,214,0 +170761945855,214,0 +170761945904,215,0 +170761945954,215,0 +170761946002,216,0 +170761946051,216,0 +170761946100,217,0 +170761946150,217,0 +170761946199,218,0 +170761946247,218,0 +170761946295,218,0 +170761946343,219,0 +170761946391,215,0 +170761946439,214,0 +170761946487,213,0 +170761946534,214,0 +170761946582,214,0 +170761946630,214,0 +170761946678,214,0 +170761946726,214,0 +170761946774,214,0 +170761946822,215,0 +170761946871,215,0 +170761946919,215,0 +170761946967,216,0 +170761947015,216,0 +170761947063,217,0 +170761947112,217,0 +170761947160,217,0 +170761947208,218,0 +170761947256,219,0 +170761947304,215,0 +170761947352,214,0 +170761947400,214,0 +170761947449,215,0 +170761947499,215,0 +170761947547,216,0 +170761947596,216,0 +170761947644,216,0 +170761947692,217,0 +170761947740,218,0 +170761947788,218,0 +170761947835,219,0 +170761947885,219,0 +170761947933,219,0 +170761947981,219,0 +170761948030,219,0 +170761948078,219,0 +170761948128,219,0 +170761948176,219,0 +170761948224,215,0 +170761948272,215,0 +170761948320,216,0 +170761948368,216,0 +170761948415,217,0 +170761948463,217,0 +170761948511,218,0 +170761948559,218,0 +170761948609,219,0 +170761948658,219,0 +170761948708,219,0 +170761948756,219,0 +170761948804,220,0 +170761948852,220,0 +170761948899,220,0 +170761948947,219,0 +170761948997,219,0 +170761949045,219,0 +170761949093,215,0 +170761949141,214,0 +170761949189,215,0 +170761949238,215,0 +170761949288,216,0 +170761949336,216,0 +170761949384,217,0 +170761949432,217,0 +170761949480,217,0 +170761949529,217,0 +170761949579,218,0 +170761949627,219,0 +170761949676,218,0 +170761949724,220,0 +170761949772,220,0 +170761949820,219,0 +170761949869,219,0 +170761949919,220,0 +170761949966,219,0 +170761950016,215,0 +170761950064,215,0 +170761950112,215,0 +170761950160,216,0 +170761950209,216,0 +170761950257,216,0 +170761950305,218,0 +170761950353,217,0 +170761950401,217,0 +170761950449,219,0 +170761950498,219,0 +170761950548,219,0 +170761950596,220,0 +170761950645,219,0 +170761950693,220,0 +170761950743,220,0 +170761950791,219,0 +170761950839,219,0 +170761950887,219,0 +170761950936,214,0 +170761950984,214,0 +170761951032,215,0 +170761951080,215,0 +170761951128,215,0 +170761951176,216,0 +170761951225,216,0 +170761951273,217,0 +170761951321,218,0 +170761951369,218,0 +170761951417,218,0 +170761951465,219,0 +170761951513,220,0 +170761951562,220,0 +170761951610,220,0 +170761951658,220,0 +170761951706,220,0 +170761951754,219,0 +170761951802,216,0 +170761951850,215,0 +170761951898,215,0 +170761951946,215,0 +170761951993,216,0 +170761952041,216,0 +170761952089,216,0 +170761952137,217,0 +170761952185,217,0 +170761952233,218,0 +170761952282,218,0 +170761952330,218,0 +170761952378,219,0 +170761952426,219,0 +170761952473,220,0 +170761952521,220,0 +170761952569,221,0 +170761952617,220,0 +170761952665,219,0 +170761952713,215,0 +170761952760,215,0 +170761952808,215,0 +170761952856,216,0 +170761952904,215,0 +170761952952,216,0 +170761953001,216,0 +170761953049,216,0 +170761953097,217,0 +170761953145,218,0 +170761953193,218,0 +170761953241,218,0 +170761953289,218,0 +170761953336,219,0 +170761953384,219,0 +170761953432,219,0 +170761953480,220,0 +170761953528,219,0 +170761953576,219,0 +170761953624,215,0 +170761953671,215,0 +170761953719,215,0 +170761953769,216,0 +170761953817,216,0 +170761953865,216,0 +170761953912,217,0 +170761953960,217,0 +170761954008,217,0 +170761954056,218,0 +170761954104,219,0 +170761954152,219,0 +170761954200,221,0 +170761954247,220,0 +170761954295,219,0 +170761954343,220,0 +170761954391,220,0 +170761954439,220,0 +170761954487,216,0 +170761954535,215,0 +170761954582,215,0 +170761954630,215,0 +170761954678,217,0 +170761954726,217,0 +170761954774,217,0 +170761954823,217,0 +170761954871,218,0 +170761954919,218,0 +170761954967,219,0 +170761955014,220,0 +170761955062,219,0 +170761955110,219,0 +170761955158,219,0 +170761955206,219,0 +170761955254,219,0 +170761955302,219,0 +170761955350,219,0 +170761955398,214,0 +170761955445,214,0 +170761955493,215,0 +170761955541,215,0 +170761955589,215,0 +170761955637,215,0 +170761955685,216,0 +170761955733,216,0 +170761955780,216,0 +170761955830,217,0 +170761955880,217,0 +170761955928,218,0 +170761955975,219,0 +170761956025,219,0 +170761956074,219,0 +170761956124,219,0 +170761956173,219,0 +170761956221,219,0 +170761956271,218,0 +170761956320,214,0 +170761956368,214,0 +170761956418,213,0 +170761956466,214,0 +170761956513,213,0 +170761956561,214,0 +170761956609,215,0 +170761956657,215,0 +170761956707,216,0 +170761956755,216,0 +170761956803,217,0 +170761956851,216,0 +170761956898,218,0 +170761956948,217,0 +170761956997,218,0 +170761957045,218,0 +170761957093,219,0 +170761957141,219,0 +170761957189,214,0 +170761957237,214,0 +170761957287,214,0 +170761957335,214,0 +170761957384,214,0 +170761957432,214,0 +170761957480,214,0 +170761957528,215,0 +170761957577,215,0 +170761957625,216,0 +170761957675,216,0 +170761957723,216,0 +170761957771,217,0 +170761957819,217,0 +170761957867,219,0 +170761957916,218,0 +170761957966,218,0 +170761958013,219,0 +170761958061,215,0 +170761958109,214,0 +170761958159,214,0 +170761958206,214,0 +170761958254,215,0 +170761958302,215,0 +170761958350,215,0 +170761958400,216,0 +170761958448,216,0 +170761958496,217,0 +170761958543,217,0 +170761958591,217,0 +170761958639,218,0 +170761958687,217,0 +170761958735,218,0 +170761958785,218,0 +170761958833,219,0 +170761958881,219,0 +170761958930,219,0 +170761958978,214,0 +170761959027,214,0 +170761959075,214,0 +170761959123,215,0 +170761959171,215,0 +170761959219,215,0 +170761959269,215,0 +170761959318,215,0 +170761959368,216,0 +170761959415,217,0 +170761959465,217,0 +170761959513,217,0 +170761959562,218,0 +170761959610,218,0 +170761959658,219,0 +170761959708,219,0 +170761959757,219,0 +170761959807,219,0 +170761959855,217,0 +170761959904,214,0 +170761959952,215,0 +170761960002,215,0 +170761960051,215,0 +170761960099,216,0 +170761960148,216,0 +170761960198,216,0 +170761960247,217,0 +170761960297,218,0 +170761960346,218,0 +170761960394,218,0 +170761960442,220,0 +170761960492,218,0 +170761960540,219,0 +170761960589,219,0 +170761960639,220,0 +170761960687,220,0 +170761960734,219,0 +170761960782,214,0 +170761960830,214,0 +170761960880,215,0 +170761960928,215,0 +170761960976,215,0 +170761961023,216,0 +170761961071,216,0 +170761961119,216,0 +170761961168,219,0 +170761961218,217,0 +170761961267,218,0 +170761961315,218,0 +170761961363,218,0 +170761961413,218,0 +170761961461,220,0 +170761961509,219,0 +170761961556,219,0 +170761961604,219,0 +170761961652,215,0 +170761961700,214,0 +170761961750,214,0 +170761961799,215,0 +170761961849,215,0 +170761961897,215,0 +170761961945,215,0 +170761961993,216,0 +170761962041,216,0 +170761962090,217,0 +170761962138,217,0 +170761962186,218,0 +170761962234,218,0 +170761962282,217,0 +170761962330,217,0 +170761962380,218,0 +170761962429,218,0 +170761962478,219,0 +170761962528,219,0 +170761962577,214,0 +170761962625,214,0 +170761962673,214,0 +170761962721,214,0 +170761962771,214,0 +170761962818,214,0 +170761962866,214,0 +170761962914,214,0 +170761962962,215,0 +170761963010,215,0 +170761963058,216,0 +170761963106,216,0 +170761963154,216,0 +170761963203,217,0 +170761963251,217,0 +170761963299,217,0 +170761963347,217,0 +170761963395,219,0 +170761963443,217,0 +170761963491,213,0 +170761963540,213,0 +170761963590,214,0 +170761963638,214,0 +170761963686,214,0 +170761963735,214,0 +170761963783,214,0 +170761963831,214,0 +170761963881,214,0 +170761963929,215,0 +170761963977,215,0 +170761964026,215,0 +170761964074,216,0 +170761964122,216,0 +170761964171,216,0 +170761964221,217,0 +170761964269,218,0 +170761964317,222,0 +170761964365,214,0 +170761964413,214,0 +170761964461,214,0 +170761964510,214,0 +170761964560,215,0 +170761964608,215,0 +170761964655,215,0 +170761964703,215,0 +170761964751,216,0 +170761964801,216,0 +170761964849,217,0 +170761964898,217,0 +170761964948,218,0 +170761964996,217,0 +170761965044,218,0 +170761965093,219,0 +170761965141,218,0 +170761965189,219,0 +170761965237,215,0 +170761965285,214,0 +170761965333,214,0 +170761965382,215,0 +170761965430,215,0 +170761965480,215,0 +170761965529,215,0 +170761965577,216,0 +170761965626,216,0 +170761965674,217,0 +170761965724,217,0 +170761965773,217,0 +170761965821,218,0 +170761965869,219,0 +170761965917,219,0 +170761965967,219,0 +170761966014,219,0 +170761966062,219,0 +170761966110,217,0 +170761966158,214,0 +170761966206,215,0 +170761966254,215,0 +170761966301,216,0 +170761966349,216,0 +170761966397,216,0 +170761966445,217,0 +170761966493,217,0 +170761966541,217,0 +170761966589,217,0 +170761966638,218,0 +170761966686,219,0 +170761966734,219,0 +170761966783,219,0 +170761966831,219,0 +170761966879,219,0 +170761966927,219,0 +170761966976,219,0 +170761967024,216,0 +170761967072,216,0 +170761967121,216,0 +170761967169,217,0 +170761967217,217,0 +170761967267,218,0 +170761967315,219,0 +170761967363,218,0 +170761967411,218,0 +170761967459,219,0 +170761967506,220,0 +170761967554,220,0 +170761967604,220,0 +170761967653,220,0 +170761967701,220,0 +170761967749,220,0 +170761967797,220,0 +170761967845,219,0 +170761967893,217,0 +170761967940,217,0 +170761967988,217,0 +170761968036,217,0 +170761968084,217,0 +170761968132,217,0 +170761968180,217,0 +170761968230,218,0 +170761968279,218,0 +170761968327,218,0 +170761968375,219,0 +170761968423,219,0 +170761968471,219,0 +170761968519,219,0 +170761968568,220,0 +170761968618,219,0 +170761968667,220,0 +170761968717,220,0 +170761968767,219,0 +170761968814,215,0 +170761968862,215,0 +170761968910,215,0 +170761968958,215,0 +170761969006,217,0 +170761969054,216,0 +170761969103,216,0 +170761969151,217,0 +170761969201,218,0 +170761969250,217,0 +170761969298,218,0 +170761969346,219,0 +170761969395,219,0 +170761969443,219,0 +170761969493,219,0 +170761969542,219,0 +170761969590,219,0 +170761969638,218,0 +170761969686,217,0 +170761969734,214,0 +170761969781,214,0 +170761969829,214,0 +170761969877,215,0 +170761969925,215,0 +170761969972,215,0 +170761970020,216,0 +170761970068,216,0 +170761970116,217,0 +170761970164,217,0 +170761970213,217,0 +170761970261,218,0 +170761970309,218,0 +170761970357,218,0 +170761970406,219,0 +170761970454,219,0 +170761970502,219,0 +170761970549,219,0 +170761970597,215,0 +170761970645,214,0 +170761970693,214,0 +170761970741,215,0 +170761970789,216,0 +170761970837,215,0 +170761970884,216,0 +170761970932,216,0 +170761970980,216,0 +170761971028,216,0 +170761971076,218,0 +170761971124,218,0 +170761971171,219,0 +170761971219,219,0 +170761971267,219,0 +170761971315,219,0 +170761971363,219,0 +170761971410,219,0 +170761971458,217,0 +170761971506,214,0 +170761971554,214,0 +170761971602,215,0 +170761971651,215,0 +170761971699,215,0 +170761971747,216,0 +170761971795,216,0 +170761971842,216,0 +170761971890,217,0 +170761971940,217,0 +170761971988,217,0 +170761972035,218,0 +170761972083,218,0 +170761972131,218,0 +170761972179,219,0 +170761972228,219,0 +170761972276,218,0 +170761972324,219,0 +170761972372,215,0 +170761972420,215,0 +170761972468,215,0 +170761972516,216,0 +170761972563,215,0 +170761972611,216,0 +170761972659,216,0 +170761972707,217,0 +170761972755,217,0 +170761972803,216,0 +170761972850,218,0 +170761972898,218,0 +170761972946,218,0 +170761972994,218,0 +170761973042,219,0 +170761973090,218,0 +170761973139,219,0 +170761973189,220,0 +170761973236,219,0 +170761973284,215,0 +170761973334,215,0 +170761973382,215,0 +170761973430,216,0 +170761973477,216,0 +170761973527,216,0 +170761973575,217,0 +170761973624,217,0 +170761973672,218,0 +170761973722,218,0 +170761973770,218,0 +170761973819,219,0 +170761973869,219,0 +170761973916,219,0 +170761973964,221,0 +170761974012,219,0 +170761974060,220,0 +170761974108,219,0 +170761974158,218,0 +170761974206,215,0 +170761974255,214,0 +170761974303,214,0 +170761974351,215,0 +170761974399,216,0 +170761974448,216,0 +170761974496,217,0 +170761974546,217,0 +170761974595,218,0 +170761974643,217,0 +170761974693,218,0 +170761974742,218,0 +170761974792,218,0 +170761974840,219,0 +170761974888,219,0 +170761974937,219,0 +170761974985,220,0 +170761975033,218,0 +170761975081,215,0 +170761975128,214,0 +170761975178,214,0 +170761975226,214,0 +170761975274,214,0 +170761975321,214,0 +170761975371,214,0 +170761975419,215,0 +170761975467,215,0 +170761975514,216,0 +170761975562,216,0 +170761975610,217,0 +170761975658,217,0 +170761975707,217,0 +170761975757,218,0 +170761975805,218,0 +170761975853,219,0 +170761975900,219,0 +170761975950,219,0 +170761975998,215,0 +170761976045,214,0 +170761976093,214,0 +170761976141,214,0 +170761976190,215,0 +170761976240,214,0 +170761976288,214,0 +170761976337,215,0 +170761976385,215,0 +170761976433,215,0 +170761976480,216,0 +170761976528,216,0 +170761976576,216,0 +170761976624,217,0 +170761976673,217,0 +170761976721,216,0 +170761976769,217,0 +170761976818,218,0 +170761976866,219,0 +170761976914,214,0 +170761976962,214,0 +170761977010,214,0 +170761977057,215,0 +170761977105,215,0 +170761977155,216,0 +170761977202,215,0 +170761977250,216,0 +170761977298,216,0 +170761977346,217,0 +170761977394,217,0 +170761977442,218,0 +170761977489,218,0 +170761977539,218,0 +170761977587,219,0 +170761977634,218,0 +170761977682,219,0 +170761977730,219,0 +170761977778,217,0 +170761977826,214,0 +170761977873,214,0 +170761977921,215,0 +170761977969,215,0 +170761978017,215,0 +170761978065,215,0 +170761978113,216,0 +170761978160,216,0 +170761978208,217,0 +170761978256,217,0 +170761978304,218,0 +170761978352,218,0 +170761978400,218,0 +170761978447,219,0 +170761978495,219,0 +170761978543,219,0 +170761978591,219,0 +170761978639,219,0 +170761978686,215,0 +170761978734,214,0 +170761978782,214,0 +170761978831,214,0 +170761978879,214,0 +170761978927,215,0 +170761978975,215,0 +170761979023,215,0 +170761979071,216,0 +170761979119,216,0 +170761979166,217,0 +170761979214,218,0 +170761979262,218,0 +170761979310,219,0 +170761979358,219,0 +170761979405,220,0 +170761979453,219,0 +170761979501,219,0 +170761979549,219,0 +170761979597,215,0 +170761979644,214,0 +170761979692,214,0 +170761979740,215,0 +170761979788,215,0 +170761979836,215,0 +170761979885,215,0 +170761979933,216,0 +170761979981,216,0 +170761980029,217,0 +170761980076,217,0 +170761980124,218,0 +170761980172,218,0 +170761980220,218,0 +170761980268,219,0 +170761980316,219,0 +170761980363,219,0 +170761980411,218,0 +170761980459,219,0 +170761980507,214,0 +170761980555,214,0 +170761980603,214,0 +170761980650,214,0 +170761980698,214,0 +170761980747,215,0 +170761980797,215,0 +170761980845,216,0 +170761980894,216,0 +170761980943,216,0 +170761980991,217,0 +170761981039,217,0 +170761981087,217,0 +170761981135,218,0 +170761981183,218,0 +170761981230,220,0 +170761981278,219,0 +170761981326,219,0 +170761981374,219,0 +170761981423,214,0 +170761981471,214,0 +170761981519,214,0 +170761981567,215,0 +170761981615,215,0 +170761981663,215,0 +170761981711,215,0 +170761981759,216,0 +170761981807,216,0 +170761981855,217,0 +170761981903,218,0 +170761981951,218,0 +170761981999,218,0 +170761982048,218,0 +170761982096,218,0 +170761982144,220,0 +170761982192,219,0 +170761982240,219,0 +170761982288,218,0 +170761982336,214,0 +170761982384,214,0 +170761982432,214,0 +170761982480,215,0 +170761982529,215,0 +170761982579,216,0 +170761982628,217,0 +170761982676,216,0 +170761982726,217,0 +170761982774,218,0 +170761982822,218,0 +170761982871,218,0 +170761982919,219,0 +170761982967,219,0 +170761983015,219,0 +170761983063,220,0 +170761983110,219,0 +170761983158,219,0 +170761983208,215,0 +170761983256,214,0 +170761983304,214,0 +170761983352,215,0 +170761983401,215,0 +170761983449,216,0 +170761983497,216,0 +170761983545,216,0 +170761983593,217,0 +170761983641,217,0 +170761983689,218,0 +170761983737,219,0 +170761983787,218,0 +170761983836,219,0 +170761983884,219,0 +170761983934,219,0 +170761983982,219,0 +170761984030,219,0 +170761984079,217,0 +170761984127,214,0 +170761984175,214,0 +170761984224,215,0 +170761984272,215,0 +170761984320,215,0 +170761984370,216,0 +170761984417,217,0 +170761984467,217,0 +170761984517,217,0 +170761984566,217,0 +170761984614,218,0 +170761984664,219,0 +170761984712,220,0 +170761984759,220,0 +170761984807,219,0 +170761984855,219,0 +170761984905,220,0 +170761984953,219,0 +170761985002,215,0 +170761985052,214,0 +170761985100,215,0 +170761985147,215,0 +170761985197,215,0 +170761985245,215,0 +170761985293,215,0 +170761985341,216,0 +170761985389,216,0 +170761985438,217,0 +170761985486,217,0 +170761985534,217,0 +170761985582,218,0 +170761985630,218,0 +170761985679,218,0 +170761985729,218,0 +170761985777,217,0 +170761985825,218,0 +170761985874,220,0 +170761985924,215,0 +170761985973,214,0 +170761986023,214,0 +170761986071,214,0 +170761986120,214,0 +170761986168,215,0 +170761986217,216,0 +170761986266,216,0 +170761986315,216,0 +170761986365,216,0 +170761986412,217,0 +170761986460,217,0 +170761986508,218,0 +170761986558,218,0 +170761986606,218,0 +170761986654,219,0 +170761986703,220,0 +170761986751,219,0 +170761986799,218,0 +170761986847,214,0 +170761986895,214,0 +170761986943,215,0 +170761986991,215,0 +170761987038,215,0 +170761987088,216,0 +170761987137,216,0 +170761987185,217,0 +170761987233,217,0 +170761987281,218,0 +170761987331,218,0 +170761987379,219,0 +170761987428,219,0 +170761987476,220,0 +170761987524,219,0 +170761987572,219,0 +170761987620,220,0 +170761987668,219,0 +170761987716,215,0 +170761987763,215,0 +170761987811,215,0 +170761987859,216,0 +170761987907,216,0 +170761987955,216,0 +170761988005,217,0 +170761988053,218,0 +170761988101,218,0 +170761988148,218,0 +170761988196,219,0 +170761988246,219,0 +170761988294,219,0 +170761988343,218,0 +170761988393,219,0 +170761988442,221,0 +170761988490,220,0 +170761988538,219,0 +170761988586,219,0 +170761988636,214,0 +170761988683,214,0 +170761988731,214,0 +170761988779,214,0 +170761988827,215,0 +170761988877,215,0 +170761988926,215,0 +170761988974,216,0 +170761989022,216,0 +170761989070,216,0 +170761989118,217,0 +170761989166,217,0 +170761989215,218,0 +170761989265,218,0 +170761989313,218,0 +170761989362,218,0 +170761989412,217,0 +170761989459,218,0 +170761989507,219,0 +170761989557,214,0 +170761989606,214,0 +170761989654,214,0 +170761989704,214,0 +170761989752,214,0 +170761989800,214,0 +170761989847,214,0 +170761989895,215,0 +170761989943,215,0 +170761989993,216,0 +170761990041,216,0 +170761990089,216,0 +170761990137,217,0 +170761990186,217,0 +170761990234,217,0 +170761990283,218,0 +170761990331,218,0 +170761990381,218,0 +170761990429,215,0 +170761990476,214,0 +170761990524,214,0 +170761990572,214,0 +170761990620,214,0 +170761990670,215,0 +170761990718,215,0 +170761990767,215,0 +170761990815,216,0 +170761990865,216,0 +170761990912,217,0 +170761990960,217,0 +170761991008,217,0 +170761991056,218,0 +170761991106,218,0 +170761991153,218,0 +170761991201,219,0 +170761991249,219,0 +170761991297,218,0 +170761991345,214,0 +170761991393,214,0 +170761991441,214,0 +170761991491,214,0 +170761991539,215,0 +170761991587,215,0 +170761991635,216,0 +170761991684,216,0 +170761991732,216,0 +170761991781,216,0 +170761991831,217,0 +170761991881,217,0 +170761991928,217,0 +170761991976,218,0 +170761992026,218,0 +170761992075,218,0 +170761992123,218,0 +170761992173,218,0 +170761992221,216,0 +170761992269,214,0 +170761992318,215,0 +170761992368,215,0 +170761992415,216,0 +170761992465,216,0 +170761992514,216,0 +170761992562,218,0 +170761992612,217,0 +170761992660,218,0 +170761992708,218,0 +170761992756,218,0 +170761992803,219,0 +170761992851,219,0 +170761992899,220,0 +170761992947,219,0 +170761992995,220,0 +170761993043,219,0 +170761993092,219,0 +170761993140,216,0 +170761993190,215,0 +170761993238,216,0 +170761993286,216,0 +170761993333,217,0 +170761993383,217,0 +170761993431,217,0 +170761993479,219,0 +170761993527,219,0 +170761993576,218,0 +170761993626,219,0 +170761993674,220,0 +170761993723,220,0 +170761993771,220,0 +170761993821,220,0 +170761993868,220,0 +170761993916,220,0 +170761993964,219,0 +170761994012,219,0 +170761994060,215,0 +170761994108,215,0 +170761994156,216,0 +170761994203,216,0 +170761994251,217,0 +170761994299,217,0 +170761994347,217,0 +170761994397,218,0 +170761994445,218,0 +170761994493,218,0 +170761994541,217,0 +170761994589,219,0 +170761994638,219,0 +170761994686,221,0 +170761994734,220,0 +170761994782,220,0 +170761994830,220,0 +170761994878,219,0 +170761994926,215,0 +170761994975,214,0 +170761995024,214,0 +170761995072,215,0 +170761995120,215,0 +170761995168,215,0 +170761995216,216,0 +170761995264,215,0 +170761995311,216,0 +170761995359,217,0 +170761995407,217,0 +170761995455,218,0 +170761995503,218,0 +170761995551,218,0 +170761995598,218,0 +170761995646,219,0 +170761995694,219,0 +170761995742,219,0 +170761995790,219,0 +170761995837,215,0 +170761995885,214,0 +170761995933,214,0 +170761995981,214,0 +170761996029,214,0 +170761996077,214,0 +170761996124,215,0 +170761996172,215,0 +170761996220,216,0 +170761996268,216,0 +170761996316,216,0 +170761996363,217,0 +170761996411,218,0 +170761996459,218,0 +170761996507,218,0 +170761996555,218,0 +170761996603,218,0 +170761996650,218,0 +170761996700,219,0 +170761996748,215,0 +170761996796,214,0 +170761996843,214,0 +170761996891,214,0 +170761996939,214,0 +170761996987,214,0 +170761997035,215,0 +170761997083,215,0 +170761997132,216,0 +170761997180,216,0 +170761997229,216,0 +170761997277,217,0 +170761997327,217,0 +170761997374,218,0 +170761997422,218,0 +170761997470,218,0 +170761997518,218,0 +170761997566,219,0 +170761997614,219,0 +170761997663,214,0 +170761997711,214,0 +170761997759,214,0 +170761997808,214,0 +170761997858,214,0 +170761997906,214,0 +170761997955,215,0 +170761998003,215,0 +170761998051,215,0 +170761998099,216,0 +170761998147,216,0 +170761998195,217,0 +170761998243,217,0 +170761998290,218,0 +170761998338,218,0 +170761998386,218,0 +170761998436,219,0 +170761998483,219,0 +170761998531,215,0 +170761998579,214,0 +170761998629,214,0 +170761998678,215,0 +170761998726,215,0 +170761998776,215,0 +170761998824,215,0 +170761998873,215,0 +170761998921,216,0 +170761998969,217,0 +170761999017,218,0 +170761999066,218,0 +170761999114,219,0 +170761999164,218,0 +170761999212,219,0 +170761999260,219,0 +170761999308,219,0 +170761999356,219,0 +170761999404,220,0 +170761999451,215,0 +170761999501,215,0 +170761999549,216,0 +170761999597,216,0 +170761999645,216,0 +170761999693,217,0 +170761999741,217,0 +170761999788,218,0 +170761999836,217,0 +170761999886,219,0 +170761999936,219,0 +170761999984,219,0 +170762000033,219,0 +170762000083,219,0 +170762000132,220,0 +170762000180,221,0 +170762000228,220,0 +170762000276,219,0 +170762000324,218,0 +170762000373,214,0 +170762000421,215,0 +170762000469,215,0 +170762000518,216,0 +170762000568,216,0 +170762000617,217,0 +170762000665,217,0 +170762000713,218,0 +170762000763,218,0 +170762000811,218,0 +170762000860,219,0 +170762000908,220,0 +170762000957,220,0 +170762001007,220,0 +170762001055,220,0 +170762001103,220,0 +170762001152,220,0 +170762001200,219,0 +170762001248,215,0 +170762001296,214,0 +170762001344,214,0 +170762001392,214,0 +170762001439,215,0 +170762001487,215,0 +170762001535,216,0 +170762001585,216,0 +170762001633,216,0 +170762001680,217,0 +170762001728,218,0 +170762001776,217,0 +170762001824,218,0 +170762001872,218,0 +170762001922,218,0 +170762001970,217,0 +170762002019,218,0 +170762002069,218,0 +170762002117,218,0 +170762002165,214,0 +170762002214,214,0 +170762002264,214,0 +170762002312,214,0 +170762002359,215,0 +170762002407,215,0 +170762002455,215,0 +170762002503,215,0 +170762002551,216,0 +170762002599,216,0 +170762002646,217,0 +170762002694,218,0 +170762002742,218,0 +170762002790,219,0 +170762002838,219,0 +170762002885,219,0 +170762002933,219,0 +170762002981,219,0 +170762003029,218,0 +170762003079,214,0 +170762003126,214,0 +170762003174,214,0 +170762003222,215,0 +170762003270,215,0 +170762003320,215,0 +170762003368,216,0 +170762003416,216,0 +170762003465,217,0 +170762003513,217,0 +170762003561,217,0 +170762003610,217,0 +170762003660,218,0 +170762003708,218,0 +170762003756,218,0 +170762003805,219,0 +170762003853,219,0 +170762003903,219,0 +170762003953,215,0 +170762004000,214,0 +170762004048,214,0 +170762004096,215,0 +170762004144,215,0 +170762004192,215,0 +170762004240,216,0 +170762004289,216,0 +170762004337,217,0 +170762004385,216,0 +170762004434,217,0 +170762004484,217,0 +170762004531,217,0 +170762004579,218,0 +170762004627,219,0 +170762004675,219,0 +170762004723,219,0 +170762004770,219,0 +170762004818,219,0 +170762004866,216,0 +170762004914,214,0 +170762004962,214,0 +170762005010,214,0 +170762005057,214,0 +170762005107,214,0 +170762005155,214,0 +170762005203,214,0 +170762005252,214,0 +170762005300,215,0 +170762005348,216,0 +170762005398,216,0 +170762005445,217,0 +170762005495,217,0 +170762005543,216,0 +170762005591,216,0 +170762005638,216,0 +170762005686,216,0 +170762005736,218,0 +170762005785,215,0 +170762005833,214,0 +170762005881,214,0 +170762005930,214,0 +170762005978,214,0 +170762006028,214,0 +170762006075,214,0 +170762006123,214,0 +170762006171,214,0 +170762006219,215,0 +170762006267,215,0 +170762006315,216,0 +170762006363,217,0 +170762006412,217,0 +170762006460,217,0 +170762006508,217,0 +170762006556,219,0 +170762006605,218,0 +170762006653,219,0 +170762006701,215,0 +170762006749,214,0 +170762006797,215,0 +170762006845,215,0 +170762006893,216,0 +170762006940,216,0 +170762006988,217,0 +170762007036,217,0 +170762007084,218,0 +170762007131,218,0 +170762007179,218,0 +170762007227,219,0 +170762007275,219,0 +170762007323,219,0 +170762007371,219,0 +170762007420,220,0 +170762007468,220,0 +170762007516,220,0 +170762007563,219,0 +170762007611,215,0 +170762007659,214,0 +170762007707,215,0 +170762007755,215,0 +170762007803,216,0 +170762007851,216,0 +170762007898,217,0 +170762007946,217,0 +170762007994,218,0 +170762008044,218,0 +170762008092,218,0 +170762008139,219,0 +170762008187,219,0 +170762008237,219,0 +170762008285,220,0 +170762008334,219,0 +170762008382,220,0 +170762008432,220,0 +170762008480,219,0 +170762008529,215,0 +170762008577,214,0 +170762008626,214,0 +170762008674,214,0 +170762008724,214,0 +170762008772,215,0 +170762008821,216,0 +170762008869,216,0 +170762008917,216,0 +170762008965,217,0 +170762009012,217,0 +170762009060,217,0 +170762009108,218,0 +170762009156,218,0 +170762009204,218,0 +170762009252,218,0 +170762009300,219,0 +170762009349,219,0 +170762009397,219,0 +170762009445,214,0 +170762009493,214,0 +170762009541,214,0 +170762009589,214,0 +170762009637,214,0 +170762009684,214,0 +170762009732,215,0 +170762009782,215,0 +170762009831,215,0 +170762009880,216,0 +170762009928,216,0 +170762009976,217,0 +170762010024,217,0 +170762010072,217,0 +170762010120,218,0 +170762010167,218,0 +170762010217,218,0 +170762010266,219,0 +170762010314,219,0 +170762010362,214,0 +170762010412,214,0 +170762010460,214,0 +170762010509,214,0 +170762010557,214,0 +170762010605,214,0 +170762010653,214,0 +170762010701,215,0 +170762010749,215,0 +170762010796,215,0 +170762010844,216,0 +170762010892,216,0 +170762010942,217,0 +170762010991,218,0 +170762011039,217,0 +170762011087,217,0 +170762011137,218,0 +170762011185,219,0 +170762011234,217,0 +170762011282,214,0 +170762011331,214,0 +170762011379,214,0 +170762011427,214,0 +170762011475,214,0 +170762011523,214,0 +170762011571,214,0 +170762011619,215,0 +170762011667,215,0 +170762011715,215,0 +170762011763,216,0 +170762011811,216,0 +170762011859,217,0 +170762011907,217,0 +170762011956,217,0 +170762012006,217,0 +170762012055,218,0 +170762012103,219,0 +170762012151,218,0 +170762012200,214,0 +170762012248,214,0 +170762012298,214,0 +170762012347,214,0 +170762012395,215,0 +170762012443,215,0 +170762012491,215,0 +170762012539,215,0 +170762012589,216,0 +170762012638,216,0 +170762012686,216,0 +170762012734,217,0 +170762012782,217,0 +170762012830,217,0 +170762012878,218,0 +170762012926,218,0 +170762012975,218,0 +170762013023,219,0 +170762013071,215,0 +170762013119,214,0 +170762013167,214,0 +170762013217,215,0 +170762013266,215,0 +170762013314,216,0 +170762013362,216,0 +170762013410,216,0 +170762013459,217,0 +170762013509,217,0 +170762013557,217,0 +170762013606,219,0 +170762013654,218,0 +170762013704,219,0 +170762013752,219,0 +170762013800,219,0 +170762013849,219,0 +170762013899,220,0 +170762013948,219,0 +170762013996,215,0 +170762014046,214,0 +170762014094,215,0 +170762014143,215,0 +170762014191,216,0 +170762014239,216,0 +170762014287,216,0 +170762014336,217,0 +170762014384,217,0 +170762014432,217,0 +170762014481,218,0 +170762014529,219,0 +170762014577,219,0 +170762014625,219,0 +170762014673,219,0 +170762014721,219,0 +170762014769,219,0 +170762014817,219,0 +170762014865,218,0 +170762014913,215,0 +170762014962,214,0 +170762015010,215,0 +170762015060,215,0 +170762015108,215,0 +170762015156,215,0 +170762015204,216,0 +170762015253,216,0 +170762015301,217,0 +170762015349,217,0 +170762015397,218,0 +170762015445,218,0 +170762015493,218,0 +170762015542,219,0 +170762015590,219,0 +170762015638,219,0 +170762015688,219,0 +170762015736,220,0 +170762015784,219,0 +170762015833,215,0 +170762015881,215,0 +170762015931,215,0 +170762015980,215,0 +170762016030,215,0 +170762016078,216,0 +170762016126,217,0 +170762016173,216,0 +170762016221,217,0 +170762016269,218,0 +170762016317,219,0 +170762016365,219,0 +170762016415,218,0 +170762016462,219,0 +170762016512,220,0 +170762016560,219,0 +170762016608,219,0 +170762016655,219,0 +170762016703,217,0 +170762016751,214,0 +170762016799,215,0 +170762016847,215,0 +170762016894,215,0 +170762016942,215,0 +170762016990,216,0 +170762017038,217,0 +170762017086,217,0 +170762017134,218,0 +170762017182,218,0 +170762017230,217,0 +170762017277,219,0 +170762017327,220,0 +170762017374,219,0 +170762017422,219,0 +170762017470,220,0 +170762017518,220,0 +170762017567,219,0 +170762017615,217,0 +170762017665,215,0 +170762017713,215,0 +170762017760,216,0 +170762017808,216,0 +170762017856,217,0 +170762017904,217,0 +170762017952,217,0 +170762018001,218,0 +170762018049,218,0 +170762018097,218,0 +170762018145,219,0 +170762018193,220,0 +170762018241,220,0 +170762018288,219,0 +170762018336,220,0 +170762018384,221,0 +170762018432,220,0 +170762018480,219,0 +170762018528,215,0 +170762018576,214,0 +170762018623,215,0 +170762018671,215,0 +170762018719,216,0 +170762018767,216,0 +170762018815,216,0 +170762018864,217,0 +170762018912,217,0 +170762018960,217,0 +170762019008,218,0 +170762019056,218,0 +170762019104,219,0 +170762019151,219,0 +170762019199,219,0 +170762019249,220,0 +170762019298,219,0 +170762019346,219,0 +170762019394,219,0 +170762019442,218,0 +170762019490,214,0 +170762019537,214,0 +170762019585,215,0 +170762019633,215,0 +170762019681,215,0 +170762019730,216,0 +170762019778,216,0 +170762019826,216,0 +170762019874,218,0 +170762019923,217,0 +170762019971,219,0 +170762020019,218,0 +170762020067,218,0 +170762020115,219,0 +170762020163,219,0 +170762020211,220,0 +170762020259,219,0 +170762020308,219,0 +170762020356,215,0 +170762020404,214,0 +170762020452,214,0 +170762020499,214,0 +170762020547,215,0 +170762020597,215,0 +170762020646,215,0 +170762020694,215,0 +170762020742,216,0 +170762020790,217,0 +170762020838,217,0 +170762020886,218,0 +170762020935,218,0 +170762020985,218,0 +170762021032,219,0 +170762021080,219,0 +170762021128,219,0 +170762021178,219,0 +170762021226,219,0 +170762021274,215,0 +170762021322,214,0 +170762021371,214,0 +170762021419,215,0 +170762021467,215,0 +170762021515,215,0 +170762021564,216,0 +170762021612,216,0 +170762021660,216,0 +170762021708,216,0 +170762021758,216,0 +170762021806,217,0 +170762021855,218,0 +170762021905,218,0 +170762021954,219,0 +170762022002,219,0 +170762022050,219,0 +170762022100,220,0 +170762022148,219,0 +170762022196,214,0 +170762022244,214,0 +170762022291,214,0 +170762022339,214,0 +170762022389,215,0 +170762022437,215,0 +170762022486,216,0 +170762022536,216,0 +170762022584,216,0 +170762022632,217,0 +170762022680,217,0 +170762022728,218,0 +170762022777,219,0 +170762022827,219,0 +170762022876,219,0 +170762022924,218,0 +170762022972,219,0 +170762023020,219,0 +170762023068,219,0 +170762023116,214,0 +170762023164,214,0 +170762023212,214,0 +170762023261,214,0 +170762023311,214,0 +170762023359,215,0 +170762023407,215,0 +170762023455,215,0 +170762023504,217,0 +170762023554,217,0 +170762023602,217,0 +170762023651,218,0 +170762023699,218,0 +170762023747,219,0 +170762023795,219,0 +170762023843,219,0 +170762023892,219,0 +170762023940,219,0 +170762023990,215,0 +170762024039,214,0 +170762024087,214,0 +170762024137,214,0 +170762024186,214,0 +170762024236,214,0 +170762024285,214,0 +170762024335,215,0 +170762024383,215,0 +170762024432,216,0 +170762024480,216,0 +170762024528,217,0 +170762024578,218,0 +170762024626,218,0 +170762024674,218,0 +170762024722,219,0 +170762024770,220,0 +170762024818,219,0 +170762024867,219,0 +170762024915,215,0 +170762024963,214,0 +170762025012,214,0 +170762025060,214,0 +170762025108,215,0 +170762025156,215,0 +170762025204,215,0 +170762025252,216,0 +170762025300,216,0 +170762025349,216,0 +170762025397,217,0 +170762025446,217,0 +170762025496,217,0 +170762025544,218,0 +170762025592,218,0 +170762025640,218,0 +170762025689,218,0 +170762025739,217,0 +170762025786,219,0 +170762025834,215,0 +170762025882,213,0 +170762025931,214,0 +170762025981,214,0 +170762026029,214,0 +170762026078,214,0 +170762026128,215,0 +170762026176,215,0 +170762026224,215,0 +170762026272,216,0 +170762026319,217,0 +170762026367,217,0 +170762026415,218,0 +170762026463,218,0 +170762026511,219,0 +170762026559,218,0 +170762026606,220,0 +170762026656,219,0 +170762026704,219,0 +170762026753,215,0 +170762026801,214,0 +170762026849,214,0 +170762026897,214,0 +170762026945,214,0 +170762026993,214,0 +170762027041,214,0 +170762027089,215,0 +170762027137,215,0 +170762027185,215,0 +170762027233,216,0 +170762027280,216,0 +170762027328,216,0 +170762027376,216,0 +170762027426,217,0 +170762027473,217,0 +170762027521,217,0 +170762027569,218,0 +170762027617,219,0 +170762027665,214,0 +170762027713,213,0 +170762027761,214,0 +170762027809,214,0 +170762027858,214,0 +170762027906,214,0 +170762027954,214,0 +170762028002,214,0 +170762028050,214,0 +170762028098,214,0 +170762028146,214,0 +170762028193,215,0 +170762028241,215,0 +170762028289,216,0 +170762028337,216,0 +170762028385,217,0 +170762028435,217,0 +170762028483,218,0 +170762028531,219,0 +170762028580,214,0 +170762028630,213,0 +170762028678,213,0 +170762028726,214,0 +170762028775,213,0 +170762028823,214,0 +170762028871,214,0 +170762028920,214,0 +170762028968,214,0 +170762029016,214,0 +170762029066,215,0 +170762029113,215,0 +170762029163,216,0 +170762029212,216,0 +170762029260,217,0 +170762029308,217,0 +170762029358,218,0 +170762029406,218,0 +170762029455,218,0 +170762029503,214,0 +170762029551,214,0 +170762029599,214,0 +170762029647,214,0 +170762029695,215,0 +170762029743,215,0 +170762029791,216,0 +170762029840,216,0 +170762029888,217,0 +170762029936,218,0 +170762029985,218,0 +170762030033,218,0 +170762030081,219,0 +170762030129,219,0 +170762030177,219,0 +170762030225,219,0 +170762030274,219,0 +170762030322,219,0 +170762030370,215,0 +170762030418,214,0 +170762030465,214,0 +170762030513,214,0 +170762030563,215,0 +170762030612,215,0 +170762030660,216,0 +170762030708,216,0 +170762030756,216,0 +170762030803,217,0 +170762030851,218,0 +170762030899,218,0 +170762030947,219,0 +170762030996,219,0 +170762031046,219,0 +170762031094,219,0 +170762031142,219,0 +170762031189,219,0 +170762031237,219,0 +170762031285,215,0 +170762031333,214,0 +170762031381,214,0 +170762031429,214,0 +170762031476,214,0 +170762031524,215,0 +170762031572,216,0 +170762031620,216,0 +170762031668,216,0 +170762031716,216,0 +170762031764,216,0 +170762031811,217,0 +170762031859,217,0 +170762031907,218,0 +170762031955,219,0 +170762032003,218,0 +170762032050,218,0 +170762032098,220,0 +170762032146,219,0 +170762032194,219,0 +170762032242,214,0 +170762032290,214,0 +170762032338,214,0 +170762032385,214,0 +170762032433,215,0 +170762032481,216,0 +170762032529,215,0 +170762032577,216,0 +170762032625,216,0 +170762032673,216,0 +170762032722,216,0 +170762032772,216,0 +170762032820,217,0 +170762032867,217,0 +170762032915,218,0 +170762032963,218,0 +170762033011,218,0 +170762033061,218,0 +170762033109,221,0 +170762033158,219,0 +170762033206,219,0 +170762033254,219,0 +170762033302,219,0 +170762033349,219,0 +170762033397,219,0 +170762033445,220,0 +170762033493,219,0 +170762033541,219,0 +170762033590,214,0 +170762033638,215,0 +170762033686,215,0 +170762033734,215,0 +170762033782,215,0 +170762033830,215,0 +170762033877,216,0 +170762033925,216,0 +170762033973,216,0 +170762034021,216,0 +170762034069,217,0 +170762034117,219,0 +170762034165,218,0 +170762034212,219,0 +170762034260,219,0 +170762034308,220,0 +170762034356,219,0 +170762034404,219,0 +170762034452,219,0 +170762034500,215,0 +170762034548,215,0 +170762034596,215,0 +170762034643,216,0 +170762034691,216,0 +170762034741,216,0 +170762034789,217,0 +170762034837,217,0 +170762034886,217,0 +170762034936,218,0 +170762034984,218,0 +170762035034,219,0 +170762035083,218,0 +170762035133,218,0 +170762035182,219,0 +170762035230,219,0 +170762035278,219,0 +170762035326,219,0 +170762035374,219,0 +170762035422,214,0 +170762035470,215,0 +170762035518,215,0 +170762035566,215,0 +170762035615,216,0 +170762035663,216,0 +170762035711,217,0 +170762035759,218,0 +170762035809,218,0 +170762035857,218,0 +170762035906,220,0 +170762035954,219,0 +170762036002,220,0 +170762036050,220,0 +170762036099,218,0 +170762036149,219,0 +170762036198,219,0 +170762036246,219,0 +170762036294,215,0 +170762036342,214,0 +170762036390,215,0 +170762036438,215,0 +170762036486,216,0 +170762036535,216,0 +170762036583,217,0 +170762036631,217,0 +170762036680,217,0 +170762036728,218,0 +170762036778,219,0 +170762036826,219,0 +170762036874,220,0 +170762036922,220,0 +170762036969,219,0 +170762037019,219,0 +170762037067,220,0 +170762037115,220,0 +170762037162,219,0 +170762037210,215,0 +170762037258,214,0 +170762037306,214,0 +170762037354,215,0 +170762037402,215,0 +170762037450,216,0 +170762037498,216,0 +170762037545,217,0 +170762037593,217,0 +170762037641,218,0 +170762037689,218,0 +170762037737,218,0 +170762037786,219,0 +170762037834,220,0 +170762037882,220,0 +170762037931,219,0 +170762037979,220,0 +170762038027,220,0 +170762038075,219,0 +170762038123,215,0 +170762038171,214,0 +170762038219,214,0 +170762038267,215,0 +170762038314,215,0 +170762038362,216,0 +170762038410,217,0 +170762038460,216,0 +170762038507,217,0 +170762038555,217,0 +170762038603,218,0 +170762038651,218,0 +170762038699,219,0 +170762038747,219,0 +170762038795,219,0 +170762038844,219,0 +170762038892,218,0 +170762038940,218,0 +170762038988,220,0 +170762039036,215,0 +170762039084,214,0 +170762039132,213,0 +170762039179,214,0 +170762039229,214,0 +170762039277,214,0 +170762039326,214,0 +170762039374,215,0 +170762039422,215,0 +170762039470,215,0 +170762039518,215,0 +170762039566,216,0 +170762039615,216,0 +170762039663,216,0 +170762039712,217,0 +170762039760,217,0 +170762039808,217,0 +170762039857,218,0 +170762039905,219,0 +170762039953,214,0 +170762040001,214,0 diff --git a/laser_value/0211-13.csv b/laser_value/0211-13.csv new file mode 100644 index 0000000..0dec913 --- /dev/null +++ b/laser_value/0211-13.csv @@ -0,0 +1,7449 @@ +timestamp,laser_value,event +170762040049,214,0 +170762040097,214,0 +170762040147,214,0 +170762040195,214,0 +170762040244,214,0 +170762040292,214,0 +170762040342,215,0 +170762040391,214,0 +170762040441,215,0 +170762040490,215,0 +170762040538,216,0 +170762040586,217,0 +170762040634,217,0 +170762040682,217,0 +170762040730,218,0 +170762040777,219,0 +170762040825,220,0 +170762040873,214,0 +170762040921,214,0 +170762040969,214,0 +170762041017,214,0 +170762041065,214,0 +170762041112,214,0 +170762041160,214,0 +170762041208,215,0 +170762041258,215,0 +170762041307,216,0 +170762041357,216,0 +170762041406,217,0 +170762041456,218,0 +170762041505,218,0 +170762041553,219,0 +170762041603,218,0 +170762041653,219,0 +170762041701,219,0 +170762041749,215,0 +170762041797,214,0 +170762041844,214,0 +170762041894,214,0 +170762041942,214,0 +170762041990,214,0 +170762042038,214,0 +170762042086,215,0 +170762042134,215,0 +170762042183,216,0 +170762042231,216,0 +170762042281,216,0 +170762042329,217,0 +170762042377,218,0 +170762042424,217,0 +170762042472,218,0 +170762042520,220,0 +170762042568,218,0 +170762042618,218,0 +170762042666,215,0 +170762042714,214,0 +170762042763,214,0 +170762042811,214,0 +170762042859,214,0 +170762042909,214,0 +170762042958,215,0 +170762043008,215,0 +170762043056,216,0 +170762043104,216,0 +170762043152,217,0 +170762043200,217,0 +170762043248,218,0 +170762043295,218,0 +170762043345,219,0 +170762043394,219,0 +170762043442,220,0 +170762043490,219,0 +170762043540,219,0 +170762043587,215,0 +170762043637,214,0 +170762043685,214,0 +170762043733,214,0 +170762043781,215,0 +170762043828,215,0 +170762043876,215,0 +170762043926,215,0 +170762043974,216,0 +170762044023,216,0 +170762044071,216,0 +170762044119,217,0 +170762044169,218,0 +170762044217,218,0 +170762044265,219,0 +170762044313,219,0 +170762044361,218,0 +170762044409,219,0 +170762044457,219,0 +170762044506,214,0 +170762044556,214,0 +170762044604,215,0 +170762044651,215,0 +170762044699,215,0 +170762044749,216,0 +170762044796,216,0 +170762044844,217,0 +170762044892,217,0 +170762044940,217,0 +170762044988,218,0 +170762045036,218,0 +170762045083,219,0 +170762045131,219,0 +170762045179,219,0 +170762045227,219,0 +170762045277,219,0 +170762045324,219,0 +170762045372,219,0 +170762045420,214,0 +170762045468,214,0 +170762045516,215,0 +170762045565,215,0 +170762045613,215,0 +170762045661,216,0 +170762045711,216,0 +170762045758,216,0 +170762045806,217,0 +170762045854,218,0 +170762045902,218,0 +170762045950,219,0 +170762045998,219,0 +170762046046,219,0 +170762046094,219,0 +170762046143,219,0 +170762046193,220,0 +170762046242,220,0 +170762046292,219,0 +170762046341,215,0 +170762046389,215,0 +170762046437,216,0 +170762046486,216,0 +170762046534,216,0 +170762046582,217,0 +170762046632,217,0 +170762046680,217,0 +170762046728,218,0 +170762046777,217,0 +170762046825,218,0 +170762046873,219,0 +170762046921,219,0 +170762046971,218,0 +170762047020,219,0 +170762047070,219,0 +170762047118,219,0 +170762047167,220,0 +170762047215,215,0 +170762047265,214,0 +170762047313,214,0 +170762047360,215,0 +170762047408,215,0 +170762047458,215,0 +170762047507,216,0 +170762047555,215,0 +170762047603,216,0 +170762047651,217,0 +170762047699,217,0 +170762047747,218,0 +170762047795,218,0 +170762047843,219,0 +170762047892,219,0 +170762047940,219,0 +170762047988,219,0 +170762048038,219,0 +170762048087,219,0 +170762048137,215,0 +170762048186,214,0 +170762048236,214,0 +170762048286,215,0 +170762048334,215,0 +170762048382,216,0 +170762048431,216,0 +170762048479,216,0 +170762048527,216,0 +170762048575,218,0 +170762048623,217,0 +170762048671,218,0 +170762048720,218,0 +170762048768,219,0 +170762048816,219,0 +170762048863,219,0 +170762048913,219,0 +170762048961,219,0 +170762049009,219,0 +170762049057,215,0 +170762049104,215,0 +170762049152,215,0 +170762049200,215,0 +170762049248,216,0 +170762049296,216,0 +170762049344,217,0 +170762049392,217,0 +170762049439,217,0 +170762049489,218,0 +170762049537,218,0 +170762049586,218,0 +170762049634,219,0 +170762049682,219,0 +170762049730,220,0 +170762049777,220,0 +170762049825,219,0 +170762049873,220,0 +170762049921,218,0 +170762049970,215,0 +170762050018,215,0 +170762050066,215,0 +170762050114,215,0 +170762050162,216,0 +170762050210,216,0 +170762050258,216,0 +170762050307,215,0 +170762050355,217,0 +170762050403,217,0 +170762050450,218,0 +170762050498,218,0 +170762050546,219,0 +170762050594,219,0 +170762050642,219,0 +170762050690,219,0 +170762050738,220,0 +170762050785,219,0 +170762050833,221,0 +170762050881,215,0 +170762050929,216,0 +170762050977,216,0 +170762051024,216,0 +170762051074,217,0 +170762051122,217,0 +170762051170,217,0 +170762051217,218,0 +170762051267,218,0 +170762051315,219,0 +170762051364,220,0 +170762051414,219,0 +170762051462,219,0 +170762051509,220,0 +170762051557,219,0 +170762051605,220,0 +170762051653,220,0 +170762051701,219,0 +170762051749,219,0 +170762051797,215,0 +170762051845,215,0 +170762051893,216,0 +170762051941,216,0 +170762051989,217,0 +170762052037,217,0 +170762052086,218,0 +170762052134,218,0 +170762052184,219,0 +170762052231,219,0 +170762052279,219,0 +170762052329,220,0 +170762052378,220,0 +170762052426,220,0 +170762052474,221,0 +170762052524,221,0 +170762052572,220,0 +170762052620,219,0 +170762052668,216,0 +170762052717,214,0 +170762052765,215,0 +170762052813,215,0 +170762052862,215,0 +170762052910,216,0 +170762052960,216,0 +170762053008,217,0 +170762053057,217,0 +170762053105,217,0 +170762053153,217,0 +170762053201,218,0 +170762053250,218,0 +170762053298,218,0 +170762053348,219,0 +170762053396,219,0 +170762053444,219,0 +170762053493,218,0 +170762053541,219,0 +170762053591,215,0 +170762053638,214,0 +170762053686,214,0 +170762053736,214,0 +170762053785,214,0 +170762053833,215,0 +170762053881,215,0 +170762053929,215,0 +170762053979,216,0 +170762054026,216,0 +170762054076,216,0 +170762054124,217,0 +170762054173,218,0 +170762054221,219,0 +170762054271,218,0 +170762054320,218,0 +170762054368,219,0 +170762054416,219,0 +170762054464,219,0 +170762054512,214,0 +170762054560,214,0 +170762054609,214,0 +170762054659,214,0 +170762054708,214,0 +170762054758,215,0 +170762054808,215,0 +170762054855,215,0 +170762054905,215,0 +170762054953,216,0 +170762055001,216,0 +170762055049,218,0 +170762055099,218,0 +170762055148,218,0 +170762055196,218,0 +170762055244,219,0 +170762055294,219,0 +170762055341,224,0 +170762055391,218,0 +170762055439,214,0 +170762055487,214,0 +170762055535,214,0 +170762055583,214,0 +170762055632,214,0 +170762055682,214,0 +170762055729,215,0 +170762055777,215,0 +170762055825,215,0 +170762055873,216,0 +170762055923,217,0 +170762055971,217,0 +170762056020,217,0 +170762056068,218,0 +170762056116,217,0 +170762056164,217,0 +170762056214,217,0 +170762056261,219,0 +170762056311,215,0 +170762056359,214,0 +170762056407,214,0 +170762056455,214,0 +170762056503,214,0 +170762056551,214,0 +170762056600,215,0 +170762056649,215,0 +170762056697,215,0 +170762056745,216,0 +170762056795,216,0 +170762056844,216,0 +170762056893,217,0 +170762056941,217,0 +170762056991,217,0 +170762057039,218,0 +170762057087,218,0 +170762057136,219,0 +170762057184,219,0 +170762057234,215,0 +170762057282,214,0 +170762057331,214,0 +170762057379,214,0 +170762057427,215,0 +170762057476,215,0 +170762057524,215,0 +170762057572,216,0 +170762057620,216,0 +170762057670,216,0 +170762057719,217,0 +170762057767,218,0 +170762057815,218,0 +170762057863,218,0 +170762057912,219,0 +170762057962,219,0 +170762058011,219,0 +170762058059,219,0 +170762058107,219,0 +170762058157,214,0 +170762058206,214,0 +170762058254,214,0 +170762058302,214,0 +170762058350,215,0 +170762058398,215,0 +170762058447,215,0 +170762058495,216,0 +170762058543,216,0 +170762058591,216,0 +170762058639,217,0 +170762058688,218,0 +170762058736,217,0 +170762058786,218,0 +170762058834,218,0 +170762058883,219,0 +170762058931,219,0 +170762058979,219,0 +170762059029,218,0 +170762059077,214,0 +170762059126,214,0 +170762059174,214,0 +170762059222,215,0 +170762059270,215,0 +170762059318,216,0 +170762059367,216,0 +170762059415,217,0 +170762059463,217,0 +170762059511,217,0 +170762059559,217,0 +170762059607,218,0 +170762059655,219,0 +170762059703,218,0 +170762059751,219,0 +170762059798,219,0 +170762059848,219,0 +170762059897,219,0 +170762059945,217,0 +170762059995,214,0 +170762060043,214,0 +170762060092,214,0 +170762060141,215,0 +170762060189,215,0 +170762060239,215,0 +170762060287,216,0 +170762060335,216,0 +170762060383,216,0 +170762060431,217,0 +170762060480,217,0 +170762060530,218,0 +170762060579,218,0 +170762060627,220,0 +170762060675,219,0 +170762060723,219,0 +170762060771,218,0 +170762060819,219,0 +170762060868,215,0 +170762060916,214,0 +170762060966,214,0 +170762061014,215,0 +170762061062,215,0 +170762061110,215,0 +170762061158,216,0 +170762061207,216,0 +170762061257,216,0 +170762061305,217,0 +170762061354,218,0 +170762061402,218,0 +170762061451,218,0 +170762061501,218,0 +170762061550,219,0 +170762061598,219,0 +170762061648,219,0 +170762061696,220,0 +170762061744,219,0 +170762061792,214,0 +170762061841,214,0 +170762061889,214,0 +170762061937,214,0 +170762061985,214,0 +170762062033,215,0 +170762062083,215,0 +170762062132,215,0 +170762062181,215,0 +170762062229,215,0 +170762062279,216,0 +170762062327,216,0 +170762062375,217,0 +170762062424,219,0 +170762062472,219,0 +170762062520,218,0 +170762062568,218,0 +170762062616,219,0 +170762062664,219,0 +170762062712,214,0 +170762062761,213,0 +170762062811,214,0 +170762062860,214,0 +170762062908,214,0 +170762062958,214,0 +170762063007,214,0 +170762063055,214,0 +170762063103,215,0 +170762063151,215,0 +170762063199,215,0 +170762063247,216,0 +170762063296,217,0 +170762063344,217,0 +170762063393,216,0 +170762063441,217,0 +170762063489,217,0 +170762063537,220,0 +170762063585,217,0 +170762063633,214,0 +170762063681,214,0 +170762063730,215,0 +170762063778,215,0 +170762063826,215,0 +170762063876,215,0 +170762063925,215,0 +170762063975,216,0 +170762064023,216,0 +170762064071,217,0 +170762064120,218,0 +170762064168,218,0 +170762064218,218,0 +170762064265,220,0 +170762064315,219,0 +170762064363,218,0 +170762064411,218,0 +170762064459,219,0 +170762064508,215,0 +170762064556,214,0 +170762064604,214,0 +170762064654,214,0 +170762064703,214,0 +170762064751,215,0 +170762064799,215,0 +170762064847,215,0 +170762064895,215,0 +170762064944,216,0 +170762064992,216,0 +170762065040,217,0 +170762065088,217,0 +170762065136,218,0 +170762065184,218,0 +170762065231,218,0 +170762065279,219,0 +170762065327,219,0 +170762065377,219,0 +170762065425,215,0 +170762065472,214,0 +170762065520,215,0 +170762065568,215,0 +170762065618,215,0 +170762065666,216,0 +170762065715,217,0 +170762065763,217,0 +170762065811,217,0 +170762065861,218,0 +170762065908,219,0 +170762065956,219,0 +170762066006,219,0 +170762066054,219,0 +170762066102,220,0 +170762066151,220,0 +170762066199,220,0 +170762066247,220,0 +170762066295,219,0 +170762066343,215,0 +170762066391,215,0 +170762066441,215,0 +170762066490,215,0 +170762066538,216,0 +170762066586,216,0 +170762066635,216,0 +170762066685,217,0 +170762066733,218,0 +170762066782,218,0 +170762066830,219,0 +170762066878,219,0 +170762066928,219,0 +170762066976,219,0 +170762067024,219,0 +170762067073,219,0 +170762067123,219,0 +170762067171,219,0 +170762067220,215,0 +170762067270,214,0 +170762067318,214,0 +170762067367,215,0 +170762067415,215,0 +170762067463,216,0 +170762067511,216,0 +170762067559,217,0 +170762067607,217,0 +170762067654,218,0 +170762067702,218,0 +170762067750,218,0 +170762067798,218,0 +170762067847,218,0 +170762067895,220,0 +170762067943,219,0 +170762067991,218,0 +170762068039,219,0 +170762068086,220,0 +170762068136,215,0 +170762068184,214,0 +170762068233,214,0 +170762068283,215,0 +170762068331,215,0 +170762068380,215,0 +170762068428,215,0 +170762068476,216,0 +170762068524,216,0 +170762068571,216,0 +170762068619,217,0 +170762068667,218,0 +170762068715,218,0 +170762068765,219,0 +170762068813,219,0 +170762068862,219,0 +170762068910,219,0 +170762068959,219,0 +170762069007,219,0 +170762069055,215,0 +170762069103,214,0 +170762069151,214,0 +170762069199,214,0 +170762069247,215,0 +170762069296,215,0 +170762069344,215,0 +170762069392,216,0 +170762069440,217,0 +170762069490,217,0 +170762069538,217,0 +170762069586,217,0 +170762069635,219,0 +170762069684,218,0 +170762069732,218,0 +170762069782,218,0 +170762069829,218,0 +170762069877,218,0 +170762069925,219,0 +170762069973,215,0 +170762070022,214,0 +170762070070,214,0 +170762070118,214,0 +170762070166,215,0 +170762070214,215,0 +170762070263,215,0 +170762070311,215,0 +170762070359,215,0 +170762070407,215,0 +170762070454,216,0 +170762070502,216,0 +170762070550,217,0 +170762070598,218,0 +170762070646,218,0 +170762070694,218,0 +170762070741,218,0 +170762070789,219,0 +170762070837,219,0 +170762070885,214,0 +170762070933,214,0 +170762070981,214,0 +170762071028,215,0 +170762071076,215,0 +170762071124,215,0 +170762071172,216,0 +170762071220,216,0 +170762071268,217,0 +170762071315,217,0 +170762071363,218,0 +170762071411,218,0 +170762071459,218,0 +170762071507,219,0 +170762071555,219,0 +170762071603,219,0 +170762071650,219,0 +170762071698,219,0 +170762071746,220,0 +170762071794,214,0 +170762071842,214,0 +170762071890,214,0 +170762071938,215,0 +170762071985,215,0 +170762072033,215,0 +170762072081,216,0 +170762072129,216,0 +170762072177,216,0 +170762072225,217,0 +170762072272,217,0 +170762072320,218,0 +170762072368,218,0 +170762072418,219,0 +170762072465,218,0 +170762072515,219,0 +170762072563,219,0 +170762072610,219,0 +170762072658,219,0 +170762072706,214,0 +170762072754,214,0 +170762072803,215,0 +170762072851,215,0 +170762072899,216,0 +170762072947,216,0 +170762072995,216,0 +170762073043,217,0 +170762073091,217,0 +170762073140,218,0 +170762073188,218,0 +170762073237,219,0 +170762073285,220,0 +170762073333,219,0 +170762073381,220,0 +170762073430,219,0 +170762073478,220,0 +170762073526,219,0 +170762073574,219,0 +170762073621,215,0 +170762073669,215,0 +170762073717,215,0 +170762073765,216,0 +170762073813,217,0 +170762073861,217,0 +170762073908,217,0 +170762073958,218,0 +170762074006,218,0 +170762074053,219,0 +170762074101,219,0 +170762074149,220,0 +170762074197,220,0 +170762074245,220,0 +170762074293,220,0 +170762074341,221,0 +170762074388,220,0 +170762074436,219,0 +170762074484,217,0 +170762074532,214,0 +170762074580,214,0 +170762074627,214,0 +170762074675,215,0 +170762074723,215,0 +170762074771,216,0 +170762074819,216,0 +170762074867,217,0 +170762074915,217,0 +170762074963,217,0 +170762075010,218,0 +170762075058,219,0 +170762075106,219,0 +170762075156,219,0 +170762075203,217,0 +170762075251,219,0 +170762075299,219,0 +170762075347,219,0 +170762075395,219,0 +170762075443,214,0 +170762075490,214,0 +170762075538,214,0 +170762075586,214,0 +170762075634,214,0 +170762075683,214,0 +170762075731,214,0 +170762075779,215,0 +170762075827,215,0 +170762075875,215,0 +170762075922,216,0 +170762075970,216,0 +170762076018,217,0 +170762076066,217,0 +170762076114,217,0 +170762076162,217,0 +170762076211,217,0 +170762076259,219,0 +170762076309,218,0 +170762076356,214,0 +170762076404,214,0 +170762076454,214,0 +170762076502,214,0 +170762076550,214,0 +170762076598,215,0 +170762076646,215,0 +170762076693,216,0 +170762076743,217,0 +170762076792,217,0 +170762076840,217,0 +170762076890,218,0 +170762076938,217,0 +170762076986,218,0 +170762077034,217,0 +170762077082,218,0 +170762077130,220,0 +170762077179,219,0 +170762077227,215,0 +170762077275,214,0 +170762077323,214,0 +170762077371,214,0 +170762077421,215,0 +170762077470,215,0 +170762077520,215,0 +170762077569,215,0 +170762077617,216,0 +170762077665,216,0 +170762077715,217,0 +170762077762,217,0 +170762077810,217,0 +170762077858,218,0 +170762077907,218,0 +170762077957,218,0 +170762078005,219,0 +170762078052,219,0 +170762078100,219,0 +170762078148,215,0 +170762078196,214,0 +170762078245,214,0 +170762078293,214,0 +170762078341,214,0 +170762078389,215,0 +170762078437,215,0 +170762078485,215,0 +170762078533,216,0 +170762078580,216,0 +170762078628,216,0 +170762078676,217,0 +170762078724,217,0 +170762078772,217,0 +170762078819,218,0 +170762078867,218,0 +170762078915,219,0 +170762078963,218,0 +170762079011,219,0 +170762079059,215,0 +170762079106,214,0 +170762079154,214,0 +170762079202,215,0 +170762079250,215,0 +170762079299,215,0 +170762079349,216,0 +170762079396,216,0 +170762079444,216,0 +170762079492,217,0 +170762079540,217,0 +170762079588,218,0 +170762079636,219,0 +170762079683,219,0 +170762079731,218,0 +170762079779,219,0 +170762079827,218,0 +170762079875,219,0 +170762079922,219,0 +170762079970,215,0 +170762080018,214,0 +170762080066,215,0 +170762080115,215,0 +170762080163,215,0 +170762080211,215,0 +170762080261,215,0 +170762080310,216,0 +170762080358,216,0 +170762080406,217,0 +170762080454,217,0 +170762080502,218,0 +170762080550,218,0 +170762080599,218,0 +170762080647,219,0 +170762080697,219,0 +170762080746,219,0 +170762080794,219,0 +170762080844,219,0 +170762080893,215,0 +170762080941,215,0 +170762080989,215,0 +170762081038,215,0 +170762081088,216,0 +170762081136,216,0 +170762081184,218,0 +170762081233,217,0 +170762081283,218,0 +170762081331,218,0 +170762081380,218,0 +170762081428,219,0 +170762081476,219,0 +170762081526,219,0 +170762081574,219,0 +170762081622,219,0 +170762081669,219,0 +170762081717,219,0 +170762081765,217,0 +170762081813,215,0 +170762081861,215,0 +170762081909,215,0 +170762081957,216,0 +170762082005,217,0 +170762082053,217,0 +170762082101,217,0 +170762082149,218,0 +170762082198,217,0 +170762082248,219,0 +170762082296,218,0 +170762082344,219,0 +170762082391,219,0 +170762082441,219,0 +170762082490,220,0 +170762082538,220,0 +170762082586,220,0 +170762082634,219,0 +170762082682,219,0 +170762082732,214,0 +170762082780,215,0 +170762082828,216,0 +170762082875,216,0 +170762082923,216,0 +170762082971,216,0 +170762083019,217,0 +170762083067,217,0 +170762083115,218,0 +170762083163,219,0 +170762083211,219,0 +170762083259,218,0 +170762083306,220,0 +170762083356,219,0 +170762083405,219,0 +170762083453,219,0 +170762083501,220,0 +170762083550,220,0 +170762083598,215,0 +170762083646,214,0 +170762083694,215,0 +170762083742,216,0 +170762083790,216,0 +170762083838,216,0 +170762083886,216,0 +170762083933,216,0 +170762083981,217,0 +170762084029,217,0 +170762084077,217,0 +170762084125,218,0 +170762084173,218,0 +170762084221,219,0 +170762084268,219,0 +170762084316,219,0 +170762084364,220,0 +170762084413,219,0 +170762084461,220,0 +170762084509,215,0 +170762084559,214,0 +170762084606,214,0 +170762084656,215,0 +170762084704,215,0 +170762084752,216,0 +170762084801,216,0 +170762084851,216,0 +170762084899,216,0 +170762084947,217,0 +170762084994,216,0 +170762085042,217,0 +170762085090,218,0 +170762085140,219,0 +170762085188,218,0 +170762085235,218,0 +170762085285,219,0 +170762085334,219,0 +170762085382,219,0 +170762085430,215,0 +170762085478,214,0 +170762085528,214,0 +170762085575,215,0 +170762085625,215,0 +170762085673,215,0 +170762085721,216,0 +170762085769,216,0 +170762085817,217,0 +170762085864,217,0 +170762085914,217,0 +170762085964,217,0 +170762086013,218,0 +170762086061,218,0 +170762086109,218,0 +170762086157,218,0 +170762086206,218,0 +170762086254,219,0 +170762086302,219,0 +170762086352,215,0 +170762086401,214,0 +170762086451,214,0 +170762086500,214,0 +170762086550,214,0 +170762086598,215,0 +170762086646,215,0 +170762086693,215,0 +170762086741,216,0 +170762086789,216,0 +170762086837,217,0 +170762086887,218,0 +170762086935,218,0 +170762086984,218,0 +170762087032,219,0 +170762087080,219,0 +170762087128,219,0 +170762087176,219,0 +170762087224,219,0 +170762087271,214,0 +170762087319,214,0 +170762087367,214,0 +170762087415,214,0 +170762087463,214,0 +170762087511,215,0 +170762087559,216,0 +170762087606,215,0 +170762087654,216,0 +170762087702,216,0 +170762087750,217,0 +170762087798,217,0 +170762087846,218,0 +170762087894,218,0 +170762087941,219,0 +170762087989,220,0 +170762088037,219,0 +170762088085,219,0 +170762088133,219,0 +170762088181,214,0 +170762088230,214,0 +170762088280,214,0 +170762088328,215,0 +170762088376,215,0 +170762088424,215,0 +170762088472,215,0 +170762088519,215,0 +170762088569,216,0 +170762088617,217,0 +170762088665,218,0 +170762088713,217,0 +170762088760,218,0 +170762088808,218,0 +170762088856,219,0 +170762088904,219,0 +170762088952,219,0 +170762089000,219,0 +170762089048,219,0 +170762089095,214,0 +170762089143,214,0 +170762089191,214,0 +170762089239,214,0 +170762089287,215,0 +170762089335,215,0 +170762089383,216,0 +170762089430,216,0 +170762089478,217,0 +170762089528,217,0 +170762089576,217,0 +170762089623,218,0 +170762089671,217,0 +170762089719,218,0 +170762089767,218,0 +170762089815,218,0 +170762089862,219,0 +170762089910,219,0 +170762089958,219,0 +170762090006,214,0 +170762090053,214,0 +170762090101,214,0 +170762090149,214,0 +170762090199,214,0 +170762090246,214,0 +170762090294,215,0 +170762090344,215,0 +170762090392,215,0 +170762090440,216,0 +170762090487,217,0 +170762090535,217,0 +170762090583,218,0 +170762090633,218,0 +170762090681,218,0 +170762090730,219,0 +170762090778,219,0 +170762090826,219,0 +170762090875,216,0 +170762090925,214,0 +170762090973,214,0 +170762091021,214,0 +170762091070,214,0 +170762091118,214,0 +170762091166,214,0 +170762091214,214,0 +170762091262,214,0 +170762091312,215,0 +170762091361,216,0 +170762091409,216,0 +170762091457,216,0 +170762091505,217,0 +170762091553,218,0 +170762091601,218,0 +170762091649,219,0 +170762091698,219,0 +170762091746,219,0 +170762091796,215,0 +170762091845,214,0 +170762091893,214,0 +170762091941,214,0 +170762091989,214,0 +170762092037,214,0 +170762092086,214,0 +170762092136,214,0 +170762092184,215,0 +170762092232,215,0 +170762092280,215,0 +170762092328,215,0 +170762092376,216,0 +170762092424,216,0 +170762092471,217,0 +170762092519,217,0 +170762092567,217,0 +170762092615,218,0 +170762092665,219,0 +170762092713,215,0 +170762092761,214,0 +170762092808,214,0 +170762092856,214,0 +170762092906,215,0 +170762092954,215,0 +170762093001,216,0 +170762093049,216,0 +170762093099,216,0 +170762093147,216,0 +170762093195,216,0 +170762093242,217,0 +170762093290,217,0 +170762093340,218,0 +170762093388,218,0 +170762093436,218,0 +170762093484,219,0 +170762093532,219,0 +170762093581,219,0 +170762093629,215,0 +170762093677,214,0 +170762093727,215,0 +170762093776,215,0 +170762093824,215,0 +170762093872,216,0 +170762093920,217,0 +170762093969,216,0 +170762094017,217,0 +170762094065,217,0 +170762094113,218,0 +170762094163,218,0 +170762094211,219,0 +170762094260,219,0 +170762094308,219,0 +170762094358,219,0 +170762094407,219,0 +170762094455,219,0 +170762094503,218,0 +170762094551,214,0 +170762094599,214,0 +170762094647,215,0 +170762094695,215,0 +170762094743,216,0 +170762094790,216,0 +170762094838,216,0 +170762094888,216,0 +170762094936,217,0 +170762094985,217,0 +170762095033,218,0 +170762095083,218,0 +170762095131,218,0 +170762095179,219,0 +170762095226,219,0 +170762095274,219,0 +170762095324,220,0 +170762095372,219,0 +170762095421,219,0 +170762095469,214,0 +170762095517,214,0 +170762095564,214,0 +170762095612,214,0 +170762095662,214,0 +170762095710,215,0 +170762095758,215,0 +170762095807,216,0 +170762095855,216,0 +170762095903,216,0 +170762095951,217,0 +170762095998,217,0 +170762096048,218,0 +170762096097,219,0 +170762096145,219,0 +170762096194,219,0 +170762096242,219,0 +170762096292,219,0 +170762096339,218,0 +170762096387,214,0 +170762096435,214,0 +170762096483,215,0 +170762096531,215,0 +170762096580,215,0 +170762096629,216,0 +170762096677,216,0 +170762096725,217,0 +170762096773,217,0 +170762096822,217,0 +170762096870,218,0 +170762096920,218,0 +170762096967,219,0 +170762097015,218,0 +170762097063,218,0 +170762097111,220,0 +170762097159,219,0 +170762097206,219,0 +170762097254,215,0 +170762097302,214,0 +170762097350,214,0 +170762097398,215,0 +170762097445,215,0 +170762097493,215,0 +170762097541,215,0 +170762097589,216,0 +170762097637,216,0 +170762097685,216,0 +170762097733,216,0 +170762097780,217,0 +170762097828,217,0 +170762097876,217,0 +170762097924,218,0 +170762097972,218,0 +170762098020,218,0 +170762098068,218,0 +170762098116,219,0 +170762098164,215,0 +170762098213,215,0 +170762098261,215,0 +170762098309,215,0 +170762098358,215,0 +170762098406,216,0 +170762098454,216,0 +170762098502,217,0 +170762098552,217,0 +170762098600,217,0 +170762098647,218,0 +170762098695,219,0 +170762098743,219,0 +170762098791,220,0 +170762098839,220,0 +170762098889,220,0 +170762098936,220,0 +170762098986,220,0 +170762099035,219,0 +170762099083,216,0 +170762099131,216,0 +170762099179,216,0 +170762099227,216,0 +170762099275,216,0 +170762099323,216,0 +170762099370,217,0 +170762099418,217,0 +170762099466,218,0 +170762099514,218,0 +170762099561,219,0 +170762099609,219,0 +170762099657,220,0 +170762099705,220,0 +170762099753,222,0 +170762099800,219,0 +170762099848,220,0 +170762099896,220,0 +170762099944,219,0 +170762099992,216,0 +170762100041,216,0 +170762100089,216,0 +170762100137,217,0 +170762100186,217,0 +170762100236,217,0 +170762100283,217,0 +170762100331,218,0 +170762100379,219,0 +170762100427,219,0 +170762100477,219,0 +170762100524,220,0 +170762100572,220,0 +170762100622,220,0 +170762100670,220,0 +170762100718,221,0 +170762100766,220,0 +170762100814,219,0 +170762100861,219,0 +170762100911,216,0 +170762100960,216,0 +170762101008,216,0 +170762101056,217,0 +170762101104,217,0 +170762101151,218,0 +170762101201,218,0 +170762101249,218,0 +170762101298,219,0 +170762101346,219,0 +170762101396,219,0 +170762101444,219,0 +170762101492,220,0 +170762101540,220,0 +170762101589,220,0 +170762101637,220,0 +170762101685,220,0 +170762101734,219,0 +170762101784,217,0 +170762101832,215,0 +170762101880,215,0 +170762101929,215,0 +170762101977,216,0 +170762102025,216,0 +170762102073,216,0 +170762102122,217,0 +170762102170,218,0 +170762102219,218,0 +170762102269,217,0 +170762102317,218,0 +170762102365,219,0 +170762102414,220,0 +170762102462,220,0 +170762102512,220,0 +170762102560,219,0 +170762102608,220,0 +170762102657,219,0 +170762102705,215,0 +170762102754,214,0 +170762102802,214,0 +170762102850,215,0 +170762102898,215,0 +170762102946,215,0 +170762102994,216,0 +170762103041,216,0 +170762103089,216,0 +170762103137,217,0 +170762103185,217,0 +170762103233,218,0 +170762103282,219,0 +170762103330,219,0 +170762103378,219,0 +170762103426,218,0 +170762103474,220,0 +170762103522,219,0 +170762103570,219,0 +170762103618,215,0 +170762103666,214,0 +170762103715,214,0 +170762103763,215,0 +170762103813,215,0 +170762103861,215,0 +170762103910,216,0 +170762103958,216,0 +170762104007,216,0 +170762104055,216,0 +170762104105,217,0 +170762104153,218,0 +170762104201,218,0 +170762104249,218,0 +170762104297,218,0 +170762104346,219,0 +170762104394,219,0 +170762104442,219,0 +170762104492,219,0 +170762104539,214,0 +170762104587,214,0 +170762104635,214,0 +170762104683,215,0 +170762104733,215,0 +170762104782,215,0 +170762104832,216,0 +170762104881,216,0 +170762104931,217,0 +170762104979,217,0 +170762105027,218,0 +170762105075,219,0 +170762105124,219,0 +170762105174,219,0 +170762105223,219,0 +170762105271,220,0 +170762105319,220,0 +170762105367,219,0 +170762105416,215,0 +170762105466,214,0 +170762105514,214,0 +170762105563,214,0 +170762105611,215,0 +170762105661,215,0 +170762105709,215,0 +170762105758,216,0 +170762105808,216,0 +170762105856,216,0 +170762105904,217,0 +170762105953,218,0 +170762106001,218,0 +170762106049,218,0 +170762106097,218,0 +170762106145,219,0 +170762106194,218,0 +170762106244,218,0 +170762106292,219,0 +170762106340,215,0 +170762106387,214,0 +170762106437,214,0 +170762106485,214,0 +170762106533,214,0 +170762106581,214,0 +170762106629,214,0 +170762106677,215,0 +170762106724,215,0 +170762106774,216,0 +170762106823,216,0 +170762106873,217,0 +170762106922,217,0 +170762106972,218,0 +170762107021,218,0 +170762107071,219,0 +170762107120,219,0 +170762107170,219,0 +170762107218,219,0 +170762107267,214,0 +170762107315,214,0 +170762107363,214,0 +170762107413,214,0 +170762107461,214,0 +170762107508,214,0 +170762107556,215,0 +170762107606,215,0 +170762107655,215,0 +170762107703,217,0 +170762107751,217,0 +170762107801,217,0 +170762107850,217,0 +170762107900,218,0 +170762107949,218,0 +170762107997,218,0 +170762108045,218,0 +170762108093,219,0 +170762108141,215,0 +170762108191,214,0 +170762108240,214,0 +170762108288,214,0 +170762108336,214,0 +170762108385,214,0 +170762108435,214,0 +170762108485,214,0 +170762108534,215,0 +170762108582,215,0 +170762108630,216,0 +170762108678,217,0 +170762108726,217,0 +170762108775,218,0 +170762108825,218,0 +170762108873,219,0 +170762108921,218,0 +170762108969,218,0 +170762109016,219,0 +170762109066,215,0 +170762109114,214,0 +170762109162,214,0 +170762109210,214,0 +170762109259,214,0 +170762109309,214,0 +170762109357,214,0 +170762109406,215,0 +170762109454,215,0 +170762109502,216,0 +170762109550,216,0 +170762109598,217,0 +170762109645,217,0 +170762109693,218,0 +170762109741,218,0 +170762109789,217,0 +170762109837,217,0 +170762109885,219,0 +170762109932,220,0 +170762109980,214,0 +170762110028,214,0 +170762110076,214,0 +170762110126,214,0 +170762110175,215,0 +170762110223,215,0 +170762110271,216,0 +170762110318,216,0 +170762110366,216,0 +170762110414,217,0 +170762110462,218,0 +170762110510,219,0 +170762110557,218,0 +170762110605,219,0 +170762110653,219,0 +170762110701,220,0 +170762110749,220,0 +170762110797,219,0 +170762110846,220,0 +170762110894,214,0 +170762110944,214,0 +170762110992,214,0 +170762111041,215,0 +170762111089,215,0 +170762111138,215,0 +170762111186,216,0 +170762111234,216,0 +170762111282,217,0 +170762111332,217,0 +170762111381,218,0 +170762111431,219,0 +170762111478,218,0 +170762111528,219,0 +170762111576,220,0 +170762111624,220,0 +170762111672,220,0 +170762111720,219,0 +170762111769,215,0 +170762111817,214,0 +170762111865,214,0 +170762111913,215,0 +170762111961,215,0 +170762112009,215,0 +170762112057,215,0 +170762112105,216,0 +170762112154,217,0 +170762112202,216,0 +170762112250,217,0 +170762112300,218,0 +170762112349,218,0 +170762112399,219,0 +170762112447,219,0 +170762112495,218,0 +170762112542,219,0 +170762112590,219,0 +170762112638,220,0 +170762112688,215,0 +170762112736,214,0 +170762112785,214,0 +170762112833,214,0 +170762112881,215,0 +170762112929,215,0 +170762112978,215,0 +170762113026,217,0 +170762113074,216,0 +170762113124,216,0 +170762113172,217,0 +170762113220,217,0 +170762113268,218,0 +170762113317,226,0 +170762113365,220,0 +170762113413,219,0 +170762113461,219,0 +170762113509,219,0 +170762113557,219,0 +170762113605,214,0 +170762113653,214,0 +170762113700,214,0 +170762113748,215,0 +170762113796,215,0 +170762113844,215,0 +170762113894,216,0 +170762113943,216,0 +170762113991,217,0 +170762114039,217,0 +170762114087,217,0 +170762114135,219,0 +170762114183,219,0 +170762114231,218,0 +170762114280,219,0 +170762114328,220,0 +170762114376,219,0 +170762114424,220,0 +170762114472,219,0 +170762114520,214,0 +170762114570,214,0 +170762114619,214,0 +170762114667,215,0 +170762114717,215,0 +170762114765,215,0 +170762114812,216,0 +170762114862,216,0 +170762114911,216,0 +170762114961,217,0 +170762115010,218,0 +170762115058,218,0 +170762115106,220,0 +170762115156,219,0 +170762115205,219,0 +170762115253,220,0 +170762115303,219,0 +170762115351,219,0 +170762115399,215,0 +170762115447,215,0 +170762115494,215,0 +170762115544,215,0 +170762115592,216,0 +170762115640,216,0 +170762115688,216,0 +170762115737,216,0 +170762115785,217,0 +170762115833,218,0 +170762115883,218,0 +170762115932,219,0 +170762115980,219,0 +170762116028,219,0 +170762116076,220,0 +170762116126,219,0 +170762116173,220,0 +170762116221,219,0 +170762116269,219,0 +170762116319,215,0 +170762116368,215,0 +170762116418,216,0 +170762116467,216,0 +170762116515,216,0 +170762116565,217,0 +170762116614,217,0 +170762116662,218,0 +170762116710,218,0 +170762116758,219,0 +170762116806,219,0 +170762116855,220,0 +170762116905,220,0 +170762116952,220,0 +170762117001,220,0 +170762117050,221,0 +170762117098,220,0 +170762117146,219,0 +170762117194,218,0 +170762117242,215,0 +170762117291,215,0 +170762117339,216,0 +170762117387,216,0 +170762117435,217,0 +170762117483,217,0 +170762117531,217,0 +170762117580,218,0 +170762117630,218,0 +170762117679,218,0 +170762117727,219,0 +170762117775,220,0 +170762117825,219,0 +170762117873,219,0 +170762117920,219,0 +170762117970,220,0 +170762118019,219,0 +170762118067,219,0 +170762118115,215,0 +170762118163,214,0 +170762118213,215,0 +170762118262,215,0 +170762118312,216,0 +170762118361,216,0 +170762118411,217,0 +170762118460,216,0 +170762118510,217,0 +170762118558,217,0 +170762118607,218,0 +170762118657,218,0 +170762118705,218,0 +170762118753,218,0 +170762118800,219,0 +170762118848,219,0 +170762118898,219,0 +170762118946,219,0 +170762118994,219,0 +170762119042,214,0 +170762119090,214,0 +170762119139,214,0 +170762119187,215,0 +170762119235,215,0 +170762119283,215,0 +170762119331,216,0 +170762119379,216,0 +170762119428,216,0 +170762119476,217,0 +170762119526,217,0 +170762119574,217,0 +170762119622,218,0 +170762119670,218,0 +170762119718,219,0 +170762119765,219,0 +170762119815,219,0 +170762119863,219,0 +170762119912,215,0 +170762119960,214,0 +170762120008,214,0 +170762120056,215,0 +170762120104,215,0 +170762120152,215,0 +170762120200,215,0 +170762120248,216,0 +170762120296,216,0 +170762120345,217,0 +170762120393,217,0 +170762120441,218,0 +170762120489,218,0 +170762120538,218,0 +170762120588,219,0 +170762120636,219,0 +170762120684,218,0 +170762120731,219,0 +170762120779,220,0 +170762120827,215,0 +170762120875,214,0 +170762120923,214,0 +170762120971,215,0 +170762121020,215,0 +170762121068,215,0 +170762121116,215,0 +170762121164,215,0 +170762121213,216,0 +170762121261,216,0 +170762121309,217,0 +170762121358,218,0 +170762121406,217,0 +170762121454,218,0 +170762121502,218,0 +170762121550,220,0 +170762121598,220,0 +170762121646,219,0 +170762121694,219,0 +170762121741,215,0 +170762121789,214,0 +170762121839,214,0 +170762121887,214,0 +170762121935,214,0 +170762121982,215,0 +170762122030,215,0 +170762122078,215,0 +170762122126,216,0 +170762122174,216,0 +170762122222,217,0 +170762122269,217,0 +170762122317,217,0 +170762122365,218,0 +170762122413,218,0 +170762122461,219,0 +170762122509,219,0 +170762122557,218,0 +170762122604,218,0 +170762122652,215,0 +170762122700,214,0 +170762122749,215,0 +170762122797,216,0 +170762122845,216,0 +170762122893,216,0 +170762122941,217,0 +170762122989,217,0 +170762123036,217,0 +170762123084,218,0 +170762123132,218,0 +170762123180,219,0 +170762123228,219,0 +170762123276,220,0 +170762123324,219,0 +170762123371,219,0 +170762123419,219,0 +170762123467,220,0 +170762123515,219,0 +170762123563,216,0 +170762123612,215,0 +170762123660,215,0 +170762123709,215,0 +170762123759,216,0 +170762123808,216,0 +170762123856,217,0 +170762123906,217,0 +170762123955,217,0 +170762124003,218,0 +170762124051,218,0 +170762124099,218,0 +170762124147,219,0 +170762124195,220,0 +170762124245,219,0 +170762124294,220,0 +170762124344,219,0 +170762124393,219,0 +170762124441,215,0 +170762124489,214,0 +170762124537,215,0 +170762124586,215,0 +170762124634,215,0 +170762124682,216,0 +170762124730,217,0 +170762124778,217,0 +170762124826,217,0 +170762124875,217,0 +170762124923,218,0 +170762124973,219,0 +170762125022,219,0 +170762125070,219,0 +170762125118,219,0 +170762125168,219,0 +170762125217,219,0 +170762125265,220,0 +170762125313,219,0 +170762125361,215,0 +170762125409,214,0 +170762125459,215,0 +170762125506,215,0 +170762125554,216,0 +170762125602,216,0 +170762125650,216,0 +170762125700,217,0 +170762125749,217,0 +170762125797,217,0 +170762125847,218,0 +170762125895,218,0 +170762125943,218,0 +170762125990,220,0 +170762126038,219,0 +170762126086,219,0 +170762126134,220,0 +170762126182,220,0 +170762126230,219,0 +170762126278,214,0 +170762126328,215,0 +170762126376,215,0 +170762126425,215,0 +170762126473,215,0 +170762126522,216,0 +170762126570,217,0 +170762126620,217,0 +170762126668,217,0 +170762126717,218,0 +170762126765,218,0 +170762126813,218,0 +170762126863,219,0 +170762126910,220,0 +170762126960,221,0 +170762127008,220,0 +170762127056,219,0 +170762127105,219,0 +170762127153,215,0 +170762127203,214,0 +170762127251,214,0 +170762127299,215,0 +170762127346,215,0 +170762127394,215,0 +170762127442,215,0 +170762127490,215,0 +170762127538,216,0 +170762127586,216,0 +170762127635,217,0 +170762127685,218,0 +170762127733,217,0 +170762127782,218,0 +170762127832,218,0 +170762127880,219,0 +170762127928,219,0 +170762127976,218,0 +170762128024,219,0 +170762128072,214,0 +170762128120,214,0 +170762128169,214,0 +170762128217,214,0 +170762128265,215,0 +170762128314,215,0 +170762128362,216,0 +170762128410,216,0 +170762128458,217,0 +170762128506,217,0 +170762128554,218,0 +170762128602,218,0 +170762128650,218,0 +170762128698,219,0 +170762128747,219,0 +170762128795,219,0 +170762128845,219,0 +170762128893,220,0 +170762128941,219,0 +170762128990,214,0 +170762129038,214,0 +170762129088,214,0 +170762129136,214,0 +170762129184,215,0 +170762129232,215,0 +170762129279,215,0 +170762129327,216,0 +170762129375,216,0 +170762129423,217,0 +170762129471,217,0 +170762129519,218,0 +170762129569,218,0 +170762129617,218,0 +170762129665,219,0 +170762129712,219,0 +170762129760,219,0 +170762129808,220,0 +170762129858,219,0 +170762129906,214,0 +170762129954,214,0 +170762130001,214,0 +170762130049,215,0 +170762130097,215,0 +170762130145,216,0 +170762130193,216,0 +170762130241,216,0 +170762130291,217,0 +170762130340,217,0 +170762130390,217,0 +170762130437,218,0 +170762130485,217,0 +170762130533,218,0 +170762130583,219,0 +170762130631,219,0 +170762130680,219,0 +170762130728,220,0 +170762130778,215,0 +170762130826,215,0 +170762130875,215,0 +170762130925,215,0 +170762130973,216,0 +170762131021,216,0 +170762131070,216,0 +170762131118,216,0 +170762131166,217,0 +170762131215,217,0 +170762131265,218,0 +170762131313,218,0 +170762131361,219,0 +170762131410,219,0 +170762131458,219,0 +170762131506,219,0 +170762131554,220,0 +170762131602,219,0 +170762131650,219,0 +170762131698,215,0 +170762131746,214,0 +170762131794,214,0 +170762131842,215,0 +170762131891,215,0 +170762131941,216,0 +170762131989,216,0 +170762132037,216,0 +170762132084,217,0 +170762132132,217,0 +170762132180,218,0 +170762132228,218,0 +170762132276,219,0 +170762132324,219,0 +170762132372,220,0 +170762132420,219,0 +170762132468,219,0 +170762132517,220,0 +170762132565,219,0 +170762132613,214,0 +170762132662,214,0 +170762132712,214,0 +170762132760,215,0 +170762132808,215,0 +170762132855,215,0 +170762132903,215,0 +170762132953,216,0 +170762133000,217,0 +170762133048,217,0 +170762133096,218,0 +170762133144,219,0 +170762133192,219,0 +170762133240,219,0 +170762133288,219,0 +170762133337,220,0 +170762133385,219,0 +170762133433,219,0 +170762133482,219,0 +170762133530,214,0 +170762133578,214,0 +170762133626,214,0 +170762133674,215,0 +170762133721,214,0 +170762133769,215,0 +170762133817,216,0 +170762133865,215,0 +170762133913,216,0 +170762133960,216,0 +170762134008,217,0 +170762134056,218,0 +170762134104,218,0 +170762134152,218,0 +170762134199,218,0 +170762134247,218,0 +170762134295,219,0 +170762134343,219,0 +170762134392,215,0 +170762134440,214,0 +170762134488,214,0 +170762134536,214,0 +170762134584,214,0 +170762134632,214,0 +170762134680,215,0 +170762134728,215,0 +170762134776,216,0 +170762134825,216,0 +170762134873,217,0 +170762134921,217,0 +170762134969,217,0 +170762135017,218,0 +170762135065,219,0 +170762135113,219,0 +170762135162,219,0 +170762135210,219,0 +170762135260,219,0 +170762135308,215,0 +170762135357,214,0 +170762135407,214,0 +170762135455,214,0 +170762135502,215,0 +170762135552,216,0 +170762135602,215,0 +170762135650,216,0 +170762135697,216,0 +170762135747,216,0 +170762135796,217,0 +170762135844,218,0 +170762135894,218,0 +170762135942,218,0 +170762135990,218,0 +170762136038,219,0 +170762136087,220,0 +170762136137,219,0 +170762136185,219,0 +170762136232,214,0 +170762136280,214,0 +170762136330,214,0 +170762136379,214,0 +170762136427,215,0 +170762136477,215,0 +170762136525,216,0 +170762136573,216,0 +170762136621,217,0 +170762136669,217,0 +170762136718,218,0 +170762136766,218,0 +170762136814,219,0 +170762136862,219,0 +170762136912,219,0 +170762136961,219,0 +170762137009,219,0 +170762137059,219,0 +170762137107,218,0 +170762137156,214,0 +170762137204,215,0 +170762137253,215,0 +170762137301,216,0 +170762137349,216,0 +170762137397,217,0 +170762137445,217,0 +170762137492,218,0 +170762137542,218,0 +170762137591,218,0 +170762137641,219,0 +170762137689,220,0 +170762137737,220,0 +170762137786,220,0 +170762137834,220,0 +170762137884,219,0 +170762137932,220,0 +170762137981,219,0 +170762138029,215,0 +170762138077,214,0 +170762138125,215,0 +170762138173,215,0 +170762138221,216,0 +170762138269,216,0 +170762138316,217,0 +170762138364,217,0 +170762138412,217,0 +170762138460,218,0 +170762138508,218,0 +170762138556,219,0 +170762138604,219,0 +170762138652,219,0 +170762138700,219,0 +170762138748,220,0 +170762138797,219,0 +170762138845,218,0 +170762138893,218,0 +170762138942,215,0 +170762138990,214,0 +170762139038,215,0 +170762139086,215,0 +170762139134,216,0 +170762139182,216,0 +170762139230,216,0 +170762139278,216,0 +170762139327,217,0 +170762139375,216,0 +170762139423,217,0 +170762139471,217,0 +170762139521,218,0 +170762139569,218,0 +170762139618,219,0 +170762139667,218,0 +170762139717,219,0 +170762139765,219,0 +170762139813,219,0 +170762139861,215,0 +170762139910,214,0 +170762139958,214,0 +170762140008,215,0 +170762140057,215,0 +170762140105,215,0 +170762140153,216,0 +170762140201,216,0 +170762140250,216,0 +170762140298,217,0 +170762140346,217,0 +170762140394,217,0 +170762140441,218,0 +170762140491,218,0 +170762140539,218,0 +170762140587,219,0 +170762140634,219,0 +170762140682,219,0 +170762140730,219,0 +170762140780,214,0 +170762140827,214,0 +170762140875,215,0 +170762140923,215,0 +170762140971,215,0 +170762141020,215,0 +170762141068,216,0 +170762141116,216,0 +170762141164,216,0 +170762141212,217,0 +170762141260,217,0 +170762141307,218,0 +170762141355,218,0 +170762141403,220,0 +170762141451,219,0 +170762141499,220,0 +170762141546,218,0 +170762141594,219,0 +170762141642,216,0 +170762141690,214,0 +170762141738,214,0 +170762141786,215,0 +170762141834,215,0 +170762141881,215,0 +170762141929,215,0 +170762141977,216,0 +170762142025,216,0 +170762142073,216,0 +170762142121,217,0 +170762142169,218,0 +170762142216,218,0 +170762142266,219,0 +170762142314,219,0 +170762142361,219,0 +170762142409,219,0 +170762142457,219,0 +170762142505,219,0 +170762142553,219,0 +170762142602,214,0 +170762142650,214,0 +170762142698,214,0 +170762142746,215,0 +170762142794,215,0 +170762142842,216,0 +170762142891,216,0 +170762142939,217,0 +170762142987,217,0 +170762143034,217,0 +170762143082,218,0 +170762143132,218,0 +170762143180,219,0 +170762143227,219,0 +170762143275,218,0 +170762143323,219,0 +170762143371,220,0 +170762143419,219,0 +170762143467,215,0 +170762143515,214,0 +170762143562,214,0 +170762143610,215,0 +170762143658,215,0 +170762143706,215,0 +170762143754,216,0 +170762143802,216,0 +170762143849,216,0 +170762143897,217,0 +170762143945,217,0 +170762143993,218,0 +170762144041,218,0 +170762144089,219,0 +170762144137,219,0 +170762144184,220,0 +170762144232,220,0 +170762144280,219,0 +170762144328,219,0 +170762144376,215,0 +170762144425,214,0 +170762144473,214,0 +170762144521,215,0 +170762144569,215,0 +170762144617,216,0 +170762144665,216,0 +170762144714,217,0 +170762144762,217,0 +170762144810,217,0 +170762144858,218,0 +170762144906,218,0 +170762144954,218,0 +170762145004,218,0 +170762145052,219,0 +170762145099,219,0 +170762145149,219,0 +170762145198,219,0 +170762145246,219,0 +170762145294,215,0 +170762145342,214,0 +170762145392,214,0 +170762145441,215,0 +170762145489,215,0 +170762145537,215,0 +170762145587,216,0 +170762145636,216,0 +170762145684,216,0 +170762145734,216,0 +170762145783,217,0 +170762145833,217,0 +170762145881,219,0 +170762145928,218,0 +170762145976,219,0 +170762146024,219,0 +170762146072,219,0 +170762146120,219,0 +170762146170,219,0 +170762146217,215,0 +170762146265,214,0 +170762146313,214,0 +170762146361,215,0 +170762146409,215,0 +170762146458,215,0 +170762146506,216,0 +170762146554,216,0 +170762146604,216,0 +170762146652,217,0 +170762146700,217,0 +170762146748,218,0 +170762146797,218,0 +170762146845,219,0 +170762146893,219,0 +170762146941,219,0 +170762146989,219,0 +170762147037,219,0 +170762147084,219,0 +170762147132,214,0 +170762147182,214,0 +170762147230,215,0 +170762147278,215,0 +170762147327,216,0 +170762147375,216,0 +170762147423,216,0 +170762147471,216,0 +170762147519,216,0 +170762147567,217,0 +170762147614,217,0 +170762147662,218,0 +170762147710,218,0 +170762147758,218,0 +170762147806,219,0 +170762147854,219,0 +170762147904,219,0 +170762147952,219,0 +170762148000,217,0 +170762148047,215,0 +170762148095,215,0 +170762148143,215,0 +170762148193,215,0 +170762148241,216,0 +170762148289,216,0 +170762148338,217,0 +170762148386,217,0 +170762148434,217,0 +170762148482,218,0 +170762148531,219,0 +170762148581,219,0 +170762148629,220,0 +170762148677,222,0 +170762148725,220,0 +170762148774,220,0 +170762148823,220,0 +170762148873,219,0 +170762148921,215,0 +170762148969,214,0 +170762149017,215,0 +170762149065,215,0 +170762149113,216,0 +170762149161,216,0 +170762149210,217,0 +170762149260,217,0 +170762149309,217,0 +170762149357,218,0 +170762149406,218,0 +170762149456,219,0 +170762149504,219,0 +170762149552,219,0 +170762149600,219,0 +170762149648,220,0 +170762149695,220,0 +170762149743,220,0 +170762149793,221,0 +170762149841,216,0 +170762149889,215,0 +170762149937,215,0 +170762149984,216,0 +170762150032,217,0 +170762150080,216,0 +170762150128,217,0 +170762150176,218,0 +170762150225,218,0 +170762150273,218,0 +170762150321,219,0 +170762150369,220,0 +170762150419,220,0 +170762150468,220,0 +170762150516,220,0 +170762150564,220,0 +170762150612,219,0 +170762150660,220,0 +170762150708,219,0 +170762150756,214,0 +170762150804,214,0 +170762150852,215,0 +170762150900,215,0 +170762150949,216,0 +170762150997,216,0 +170762151047,216,0 +170762151096,217,0 +170762151144,218,0 +170762151192,218,0 +170762151240,220,0 +170762151288,219,0 +170762151336,219,0 +170762151384,221,0 +170762151432,220,0 +170762151480,220,0 +170762151528,219,0 +170762151576,219,0 +170762151625,219,0 +170762151673,214,0 +170762151721,214,0 +170762151771,215,0 +170762151818,215,0 +170762151868,215,0 +170762151916,216,0 +170762151964,215,0 +170762152012,216,0 +170762152060,217,0 +170762152107,217,0 +170762152157,218,0 +170762152205,218,0 +170762152253,219,0 +170762152301,219,0 +170762152349,219,0 +170762152397,218,0 +170762152444,220,0 +170762152494,220,0 +170762152542,219,0 +170762152591,214,0 +170762152639,214,0 +170762152687,214,0 +170762152735,215,0 +170762152783,215,0 +170762152831,215,0 +170762152880,215,0 +170762152928,216,0 +170762152976,216,0 +170762153024,217,0 +170762153072,217,0 +170762153122,217,0 +170762153171,219,0 +170762153219,219,0 +170762153267,218,0 +170762153315,219,0 +170762153363,218,0 +170762153411,219,0 +170762153459,218,0 +170762153507,214,0 +170762153554,214,0 +170762153602,214,0 +170762153650,214,0 +170762153698,215,0 +170762153748,215,0 +170762153796,215,0 +170762153844,215,0 +170762153892,216,0 +170762153941,216,0 +170762153989,217,0 +170762154038,218,0 +170762154086,218,0 +170762154136,219,0 +170762154185,220,0 +170762154235,219,0 +170762154285,219,0 +170762154333,219,0 +170762154382,215,0 +170762154430,214,0 +170762154478,214,0 +170762154526,214,0 +170762154574,215,0 +170762154622,215,0 +170762154671,215,0 +170762154721,215,0 +170762154770,215,0 +170762154820,216,0 +170762154869,217,0 +170762154917,217,0 +170762154965,218,0 +170762155013,218,0 +170762155061,218,0 +170762155109,218,0 +170762155157,219,0 +170762155205,218,0 +170762155254,219,0 +170762155302,215,0 +170762155350,214,0 +170762155400,214,0 +170762155448,214,0 +170762155496,214,0 +170762155544,214,0 +170762155593,215,0 +170762155641,215,0 +170762155690,215,0 +170762155738,214,0 +170762155786,216,0 +170762155836,216,0 +170762155884,217,0 +170762155932,218,0 +170762155980,218,0 +170762156028,217,0 +170762156077,217,0 +170762156127,218,0 +170762156176,218,0 +170762156224,214,0 +170762156272,214,0 +170762156320,214,0 +170762156368,214,0 +170762156416,214,0 +170762156465,214,0 +170762156513,215,0 +170762156561,215,0 +170762156609,215,0 +170762156657,215,0 +170762156706,216,0 +170762156754,216,0 +170762156804,217,0 +170762156852,216,0 +170762156899,216,0 +170762156947,217,0 +170762156995,218,0 +170762157043,218,0 +170762157092,219,0 +170762157142,214,0 +170762157191,214,0 +170762157239,214,0 +170762157287,214,0 +170762157337,215,0 +170762157386,215,0 +170762157434,215,0 +170762157483,216,0 +170762157533,216,0 +170762157581,217,0 +170762157629,218,0 +170762157678,218,0 +170762157728,218,0 +170762157777,218,0 +170762157827,219,0 +170762157875,220,0 +170762157924,219,0 +170762157974,219,0 +170762158023,215,0 +170762158071,214,0 +170762158119,214,0 +170762158167,214,0 +170762158215,215,0 +170762158263,215,0 +170762158312,215,0 +170762158360,216,0 +170762158408,217,0 +170762158456,217,0 +170762158503,218,0 +170762158551,218,0 +170762158599,219,0 +170762158647,219,0 +170762158696,219,0 +170762158744,219,0 +170762158792,219,0 +170762158840,220,0 +170762158888,219,0 +170762158937,217,0 +170762158985,214,0 +170762159033,214,0 +170762159081,214,0 +170762159128,215,0 +170762159176,216,0 +170762159224,216,0 +170762159274,216,0 +170762159321,217,0 +170762159369,217,0 +170762159417,217,0 +170762159465,218,0 +170762159513,219,0 +170762159561,219,0 +170762159610,219,0 +170762159658,219,0 +170762159706,219,0 +170762159754,219,0 +170762159801,219,0 +170762159849,215,0 +170762159897,214,0 +170762159945,215,0 +170762159993,215,0 +170762160041,216,0 +170762160089,216,0 +170762160136,217,0 +170762160184,217,0 +170762160232,217,0 +170762160280,217,0 +170762160328,218,0 +170762160376,219,0 +170762160424,219,0 +170762160471,219,0 +170762160521,219,0 +170762160569,219,0 +170762160617,219,0 +170762160664,219,0 +170762160712,219,0 +170762160760,215,0 +170762160810,214,0 +170762160859,214,0 +170762160908,215,0 +170762160956,215,0 +170762161004,216,0 +170762161054,216,0 +170762161101,216,0 +170762161149,216,0 +170762161197,217,0 +170762161245,218,0 +170762161293,218,0 +170762161342,219,0 +170762161390,218,0 +170762161438,218,0 +170762161486,218,0 +170762161533,217,0 +170762161581,218,0 +170762161629,219,0 +170762161677,215,0 +170762161725,214,0 +170762161774,214,0 +170762161822,214,0 +170762161870,215,0 +170762161918,214,0 +170762161965,216,0 +170762162013,215,0 +170762162061,216,0 +170762162109,216,0 +170762162158,216,0 +170762162206,217,0 +170762162254,217,0 +170762162302,218,0 +170762162350,217,0 +170762162398,217,0 +170762162445,217,0 +170762162493,217,0 +170762162543,219,0 +170762162592,215,0 +170762162641,214,0 +170762162689,214,0 +170762162737,214,0 +170762162786,214,0 +170762162834,215,0 +170762162882,215,0 +170762162931,215,0 +170762162981,216,0 +170762163029,216,0 +170762163076,217,0 +170762163124,217,0 +170762163172,217,0 +170762163220,218,0 +170762163268,218,0 +170762163316,219,0 +170762163364,220,0 +170762163412,220,0 +170762163461,219,0 +170762163509,214,0 +170762163559,214,0 +170762163608,214,0 +170762163656,214,0 +170762163706,215,0 +170762163754,215,0 +170762163802,215,0 +170762163850,216,0 +170762163899,216,0 +170762163947,216,0 +170762163997,216,0 +170762164045,217,0 +170762164094,218,0 +170762164143,217,0 +170762164191,217,0 +170762164241,218,0 +170762164289,218,0 +170762164338,219,0 +170762164386,215,0 +170762164434,214,0 +170762164484,215,0 +170762164532,215,0 +170762164579,216,0 +170762164629,216,0 +170762164677,216,0 +170762164725,217,0 +170762164774,217,0 +170762164822,218,0 +170762164870,218,0 +170762164918,218,0 +170762164965,219,0 +170762165015,219,0 +170762165063,220,0 +170762165111,220,0 +170762165158,220,0 +170762165206,220,0 +170762165254,219,0 +170762165303,215,0 +170762165351,216,0 +170762165399,216,0 +170762165447,216,0 +170762165495,217,0 +170762165543,218,0 +170762165591,218,0 +170762165638,218,0 +170762165686,218,0 +170762165734,218,0 +170762165782,219,0 +170762165830,219,0 +170762165878,221,0 +170762165927,221,0 +170762165975,220,0 +170762166023,220,0 +170762166070,220,0 +170762166118,220,0 +170762166166,219,0 +170762166214,216,0 +170762166262,216,0 +170762166311,217,0 +170762166359,217,0 +170762166407,217,0 +170762166456,218,0 +170762166504,218,0 +170762166552,218,0 +170762166600,219,0 +170762166648,219,0 +170762166695,219,0 +170762166745,220,0 +170762166793,220,0 +170762166841,220,0 +170762166888,219,0 +170762166936,220,0 +170762166984,220,0 +170762167032,220,0 +170762167080,219,0 +170762167128,216,0 +170762167175,215,0 +170762167223,216,0 +170762167271,216,0 +170762167319,216,0 +170762167366,217,0 +170762167414,217,0 +170762167462,218,0 +170762167510,217,0 +170762167558,218,0 +170762167606,219,0 +170762167653,219,0 +170762167701,220,0 +170762167749,220,0 +170762167797,220,0 +170762167845,220,0 +170762167893,220,0 +170762167941,220,0 +170762167988,222,0 +170762168036,215,0 +170762168084,214,0 +170762168132,214,0 +170762168180,214,0 +170762168228,215,0 +170762168276,215,0 +170762168325,215,0 +170762168373,216,0 +170762168421,216,0 +170762168469,216,0 +170762168517,218,0 +170762168564,218,0 +170762168612,218,0 +170762168660,219,0 +170762168708,220,0 +170762168756,219,0 +170762168805,218,0 +170762168853,218,0 +170762168901,219,0 +170762168949,215,0 +170762168997,214,0 +170762169045,214,0 +170762169092,214,0 +170762169140,214,0 +170762169190,214,0 +170762169239,214,0 +170762169287,214,0 +170762169335,215,0 +170762169382,215,0 +170762169430,215,0 +170762169478,216,0 +170762169526,216,0 +170762169574,217,0 +170762169622,217,0 +170762169670,217,0 +170762169717,218,0 +170762169765,219,0 +170762169813,219,0 +170762169861,214,0 +170762169909,214,0 +170762169957,214,0 +170762170005,214,0 +170762170052,214,0 +170762170100,215,0 +170762170148,215,0 +170762170196,216,0 +170762170244,216,0 +170762170292,216,0 +170762170339,217,0 +170762170387,218,0 +170762170435,218,0 +170762170483,219,0 +170762170531,220,0 +170762170580,218,0 +170762170630,218,0 +170762170678,219,0 +170762170726,219,0 +170762170774,214,0 +170762170823,214,0 +170762170873,213,0 +170762170921,214,0 +170762170969,214,0 +170762171018,215,0 +170762171066,215,0 +170762171114,215,0 +170762171163,216,0 +170762171213,217,0 +170762171262,217,0 +170762171312,218,0 +170762171361,218,0 +170762171411,217,0 +170762171460,217,0 +170762171508,217,0 +170762171558,217,0 +170762171606,219,0 +170762171655,216,0 +170762171705,214,0 +170762171753,214,0 +170762171802,214,0 +170762171852,214,0 +170762171900,214,0 +170762171948,214,0 +170762171995,215,0 +170762172043,216,0 +170762172091,216,0 +170762172139,216,0 +170762172187,217,0 +170762172235,218,0 +170762172283,218,0 +170762172333,218,0 +170762172381,218,0 +170762172430,218,0 +170762172478,218,0 +170762172528,219,0 +170762172577,215,0 +170762172626,214,0 +170762172674,214,0 +170762172722,214,0 +170762172770,214,0 +170762172818,214,0 +170762172866,215,0 +170762172916,215,0 +170762172964,215,0 +170762173013,216,0 +170762173062,217,0 +170762173112,217,0 +170762173160,217,0 +170762173208,218,0 +170762173256,218,0 +170762173305,218,0 +170762173353,219,0 +170762173401,219,0 +170762173451,219,0 +170762173498,214,0 +170762173546,214,0 +170762173594,214,0 +170762173642,214,0 +170762173690,214,0 +170762173740,215,0 +170762173789,215,0 +170762173837,215,0 +170762173886,216,0 +170762173934,216,0 +170762173984,217,0 +170762174032,218,0 +170762174080,218,0 +170762174129,218,0 +170762174179,218,0 +170762174227,219,0 +170762174276,219,0 +170762174326,219,0 +170762174374,215,0 +170762174422,214,0 +170762174470,214,0 +170762174518,214,0 +170762174567,215,0 +170762174615,215,0 +170762174663,215,0 +170762174711,216,0 +170762174761,216,0 +170762174808,216,0 +170762174856,217,0 +170762174904,217,0 +170762174952,218,0 +170762175000,219,0 +170762175048,218,0 +170762175096,220,0 +170762175144,219,0 +170762175192,219,0 +170762175241,219,0 +170762175289,215,0 +170762175337,214,0 +170762175385,214,0 +170762175432,214,0 +170762175480,214,0 +170762175528,215,0 +170762175576,215,0 +170762175624,216,0 +170762175672,216,0 +170762175720,216,0 +170762175767,217,0 +170762175815,217,0 +170762175865,219,0 +170762175914,220,0 +170762175964,219,0 +170762176012,219,0 +170762176060,219,0 +170762176108,220,0 +170762176155,219,0 +170762176203,215,0 +170762176253,214,0 +170762176301,214,0 +170762176349,215,0 +170762176397,215,0 +170762176445,215,0 +170762176493,216,0 +170762176542,216,0 +170762176591,216,0 +170762176641,216,0 +170762176690,217,0 +170762176740,217,0 +170762176788,219,0 +170762176836,218,0 +170762176884,219,0 +170762176933,219,0 +170762176981,219,0 +170762177029,220,0 +170762177077,219,0 +170762177125,214,0 +170762177173,214,0 +170762177222,214,0 +170762177270,214,0 +170762177318,214,0 +170762177366,215,0 +170762177414,215,0 +170762177461,215,0 +170762177509,216,0 +170762177557,217,0 +170762177605,217,0 +170762177652,217,0 +170762177702,218,0 +170762177750,218,0 +170762177797,218,0 +170762177845,219,0 +170762177893,219,0 +170762177941,219,0 +170762177991,219,0 +170762178040,214,0 +170762178088,214,0 +170762178138,214,0 +170762178185,215,0 +170762178233,215,0 +170762178283,215,0 +170762178331,215,0 +170762178379,216,0 +170762178427,216,0 +170762178476,216,0 +170762178524,217,0 +170762178574,217,0 +170762178622,219,0 +170762178671,219,0 +170762178719,219,0 +170762178767,219,0 +170762178815,219,0 +170762178863,219,0 +170762178911,217,0 +170762178959,214,0 +170762179008,214,0 +170762179056,214,0 +170762179106,215,0 +170762179154,215,0 +170762179203,215,0 +170762179251,216,0 +170762179299,217,0 +170762179348,217,0 +170762179396,217,0 +170762179446,218,0 +170762179494,219,0 +170762179542,219,0 +170762179592,219,0 +170762179639,219,0 +170762179687,220,0 +170762179735,220,0 +170762179783,219,0 +170762179831,215,0 +170762179879,214,0 +170762179927,214,0 +170762179975,214,0 +170762180022,215,0 +170762180070,215,0 +170762180118,216,0 +170762180166,216,0 +170762180214,217,0 +170762180262,217,0 +170762180310,218,0 +170762180357,218,0 +170762180407,218,0 +170762180455,219,0 +170762180504,219,0 +170762180552,219,0 +170762180600,219,0 +170762180648,219,0 +170762180696,219,0 +170762180745,215,0 +170762180795,214,0 +170762180842,214,0 +170762180890,215,0 +170762180938,215,0 +170762180986,216,0 +170762181034,216,0 +170762181082,216,0 +170762181130,217,0 +170762181178,217,0 +170762181226,218,0 +170762181273,218,0 +170762181321,218,0 +170762181369,219,0 +170762181417,219,0 +170762181465,219,0 +170762181513,218,0 +170762181561,220,0 +170762181608,219,0 +170762181656,215,0 +170762181704,214,0 +170762181752,215,0 +170762181800,215,0 +170762181848,216,0 +170762181895,216,0 +170762181943,217,0 +170762181991,217,0 +170762182039,217,0 +170762182087,218,0 +170762182135,218,0 +170762182183,218,0 +170762182230,218,0 +170762182278,220,0 +170762182326,219,0 +170762182374,219,0 +170762182423,219,0 +170762182473,219,0 +170762182521,218,0 +170762182569,215,0 +170762182616,214,0 +170762182664,215,0 +170762182712,215,0 +170762182760,216,0 +170762182810,216,0 +170762182858,216,0 +170762182906,217,0 +170762182955,217,0 +170762183003,217,0 +170762183051,218,0 +170762183099,219,0 +170762183147,218,0 +170762183196,219,0 +170762183244,220,0 +170762183292,219,0 +170762183340,219,0 +170762183388,219,0 +170762183437,219,0 +170762183485,214,0 +170762183533,214,0 +170762183581,215,0 +170762183631,215,0 +170762183680,216,0 +170762183730,216,0 +170762183779,216,0 +170762183829,216,0 +170762183878,216,0 +170762183928,216,0 +170762183975,217,0 +170762184025,217,0 +170762184073,217,0 +170762184122,218,0 +170762184172,219,0 +170762184220,218,0 +170762184268,218,0 +170762184316,219,0 +170762184364,220,0 +170762184411,221,0 +170762184459,221,0 +170762184509,220,0 +170762184557,220,0 +170762184606,222,0 +170762184654,220,0 +170762184702,219,0 +170762184750,219,0 +170762184800,218,0 +170762184849,214,0 +170762184899,215,0 +170762184947,215,0 +170762184995,215,0 +170762185043,216,0 +170762185091,216,0 +170762185140,217,0 +170762185188,217,0 +170762185236,217,0 +170762185284,218,0 +170762185332,218,0 +170762185380,219,0 +170762185429,219,0 +170762185479,219,0 +170762185527,220,0 +170762185575,219,0 +170762185623,220,0 +170762185670,220,0 +170762185718,218,0 +170762185766,214,0 +170762185814,215,0 +170762185862,215,0 +170762185910,215,0 +170762185957,216,0 +170762186007,216,0 +170762186055,217,0 +170762186104,217,0 +170762186152,217,0 +170762186200,218,0 +170762186248,218,0 +170762186296,219,0 +170762186344,219,0 +170762186391,220,0 +170762186439,220,0 +170762186487,220,0 +170762186535,220,0 +170762186583,219,0 +170762186632,215,0 +170762186680,214,0 +170762186728,215,0 +170762186778,215,0 +170762186827,216,0 +170762186877,216,0 +170762186925,216,0 +170762186973,217,0 +170762187022,217,0 +170762187070,217,0 +170762187118,218,0 +170762187165,218,0 +170762187215,220,0 +170762187263,219,0 +170762187310,220,0 +170762187358,220,0 +170762187406,220,0 +170762187454,220,0 +170762187504,219,0 +170762187552,214,0 +170762187599,214,0 +170762187649,215,0 +170762187697,215,0 +170762187745,216,0 +170762187793,216,0 +170762187842,216,0 +170762187890,216,0 +170762187939,217,0 +170762187987,217,0 +170762188036,218,0 +170762188084,218,0 +170762188132,219,0 +170762188180,219,0 +170762188229,219,0 +170762188277,220,0 +170762188325,220,0 +170762188373,220,0 +170762188421,218,0 +170762188468,214,0 +170762188516,214,0 +170762188564,214,0 +170762188612,215,0 +170762188660,215,0 +170762188708,216,0 +170762188755,215,0 +170762188803,216,0 +170762188851,217,0 +170762188901,217,0 +170762188948,218,0 +170762188996,218,0 +170762189046,219,0 +170762189094,219,0 +170762189143,220,0 +170762189193,220,0 +170762189241,220,0 +170762189290,219,0 +170762189340,216,0 +170762189388,214,0 +170762189436,214,0 +170762189484,214,0 +170762189532,215,0 +170762189581,215,0 +170762189630,216,0 +170762189678,216,0 +170762189728,216,0 +170762189776,216,0 +170762189825,217,0 +170762189873,217,0 +170762189921,218,0 +170762189971,218,0 +170762190019,219,0 +170762190067,219,0 +170762190114,218,0 +170762190162,219,0 +170762190210,220,0 +170762190260,215,0 +170762190308,214,0 +170762190356,214,0 +170762190404,215,0 +170762190452,214,0 +170762190501,215,0 +170762190551,215,0 +170762190598,215,0 +170762190648,216,0 +170762190696,216,0 +170762190746,216,0 +170762190794,217,0 +170762190841,218,0 +170762190890,218,0 +170762190937,218,0 +170762190985,218,0 +170762191033,218,0 +170762191083,219,0 +170762191131,219,0 +170762191180,214,0 +170762191228,214,0 +170762191276,214,0 +170762191324,214,0 +170762191372,215,0 +170762191420,215,0 +170762191468,215,0 +170762191516,216,0 +170762191565,216,0 +170762191615,216,0 +170762191663,217,0 +170762191712,218,0 +170762191762,218,0 +170762191810,219,0 +170762191859,218,0 +170762191909,219,0 +170762191957,219,0 +170762192007,219,0 +170762192056,219,0 +170762192106,214,0 +170762192155,214,0 +170762192203,214,0 +170762192253,214,0 +170762192300,214,0 +170762192348,215,0 +170762192396,215,0 +170762192446,215,0 +170762192494,215,0 +170762192542,216,0 +170762192591,217,0 +170762192641,217,0 +170762192690,217,0 +170762192738,218,0 +170762192786,218,0 +170762192836,218,0 +170762192883,219,0 +170762192931,219,0 +170762192981,215,0 +170762193028,214,0 +170762193076,214,0 +170762193124,214,0 +170762193172,214,0 +170762193220,214,0 +170762193270,214,0 +170762193319,214,0 +170762193368,215,0 +170762193416,215,0 +170762193466,216,0 +170762193514,217,0 +170762193563,217,0 +170762193613,218,0 +170762193662,218,0 +170762193710,218,0 +170762193760,219,0 +170762193808,219,0 +170762193856,219,0 +170762193904,214,0 +170762193952,214,0 +170762194001,214,0 +170762194051,214,0 +170762194099,214,0 +170762194147,214,0 +170762194196,215,0 +170762194244,215,0 +170762194292,216,0 +170762194340,216,0 +170762194388,216,0 +170762194435,217,0 +170762194483,218,0 +170762194531,218,0 +170762194579,218,0 +170762194627,219,0 +170762194675,219,0 +170762194722,219,0 +170762194770,215,0 +170762194818,214,0 +170762194866,214,0 +170762194914,214,0 +170762194962,214,0 +170762195010,214,0 +170762195059,214,0 +170762195107,214,0 +170762195155,215,0 +170762195204,215,0 +170762195254,216,0 +170762195302,217,0 +170762195350,217,0 +170762195398,218,0 +170762195447,218,0 +170762195495,218,0 +170762195543,219,0 +170762195591,219,0 +170762195639,219,0 +170762195687,215,0 +170762195735,214,0 +170762195783,214,0 +170762195831,214,0 +170762195880,214,0 +170762195930,214,0 +170762195979,215,0 +170762196029,215,0 +170762196078,216,0 +170762196126,216,0 +170762196174,216,0 +170762196222,217,0 +170762196270,218,0 +170762196318,218,0 +170762196366,219,0 +170762196414,219,0 +170762196462,219,0 +170762196510,219,0 +170762196559,219,0 +170762196607,215,0 +170762196655,214,0 +170762196703,214,0 +170762196752,214,0 +170762196802,215,0 +170762196851,215,0 +170762196899,215,0 +170762196947,215,0 +170762196995,216,0 +170762197043,216,0 +170762197091,216,0 +170762197141,217,0 +170762197189,218,0 +170762197236,218,0 +170762197286,218,0 +170762197334,220,0 +170762197383,220,0 +170762197431,219,0 +170762197481,219,0 +170762197529,214,0 +170762197578,214,0 +170762197626,215,0 +170762197674,215,0 +170762197722,216,0 +170762197772,216,0 +170762197820,216,0 +170762197868,216,0 +170762197917,217,0 +170762197965,217,0 +170762198015,218,0 +170762198062,218,0 +170762198110,219,0 +170762198158,219,0 +170762198206,219,0 +170762198254,219,0 +170762198304,219,0 +170762198351,219,0 +170762198399,215,0 +170762198447,214,0 +170762198495,214,0 +170762198543,215,0 +170762198591,215,0 +170762198639,215,0 +170762198687,216,0 +170762198735,216,0 +170762198783,216,0 +170762198832,217,0 +170762198880,217,0 +170762198928,218,0 +170762198976,219,0 +170762199026,219,0 +170762199075,219,0 +170762199123,219,0 +170762199173,220,0 +170762199222,219,0 +170762199270,219,0 +170762199318,215,0 +170762199366,214,0 +170762199414,215,0 +170762199464,215,0 +170762199511,215,0 +170762199561,216,0 +170762199610,216,0 +170762199658,216,0 +170762199706,216,0 +170762199756,217,0 +170762199804,218,0 +170762199852,218,0 +170762199901,219,0 +170762199951,219,0 +170762199999,220,0 +170762200048,220,0 +170762200096,219,0 +170762200146,219,0 +170762200194,219,0 +170762200241,215,0 +170762200291,215,0 +170762200340,215,0 +170762200390,216,0 +170762200438,216,0 +170762200486,217,0 +170762200535,217,0 +170762200583,217,0 +170762200631,218,0 +170762200679,218,0 +170762200727,219,0 +170762200777,219,0 +170762200825,219,0 +170762200873,220,0 +170762200921,219,0 +170762200968,220,0 +170762201016,220,0 +170762201064,220,0 +170762201114,215,0 +170762201162,215,0 +170762201210,216,0 +170762201259,216,0 +170762201307,216,0 +170762201355,217,0 +170762201403,217,0 +170762201451,218,0 +170762201501,218,0 +170762201550,218,0 +170762201598,219,0 +170762201646,220,0 +170762201694,220,0 +170762201742,220,0 +170762201791,220,0 +170762201841,220,0 +170762201891,220,0 +170762201939,220,0 +170762201988,219,0 +170762202036,216,0 +170762202086,215,0 +170762202135,215,0 +170762202183,216,0 +170762202231,216,0 +170762202279,217,0 +170762202327,217,0 +170762202375,218,0 +170762202423,218,0 +170762202471,218,0 +170762202520,219,0 +170762202568,218,0 +170762202616,219,0 +170762202664,219,0 +170762202712,219,0 +170762202760,220,0 +170762202808,220,0 +170762202855,219,0 +170762202903,219,0 +170762202951,215,0 +170762202999,214,0 +170762203047,214,0 +170762203095,215,0 +170762203143,215,0 +170762203191,215,0 +170762203238,216,0 +170762203286,216,0 +170762203334,217,0 +170762203382,217,0 +170762203430,217,0 +170762203478,218,0 +170762203525,217,0 +170762203573,218,0 +170762203621,217,0 +170762203669,217,0 +170762203717,216,0 +170762203765,219,0 +170762203813,219,0 +170762203860,215,0 +170762203908,214,0 +170762203956,214,0 +170762204004,214,0 +170762204053,215,0 +170762204101,215,0 +170762204149,215,0 +170762204197,216,0 +170762204246,216,0 +170762204294,216,0 +170762204342,217,0 +170762204390,217,0 +170762204438,217,0 +170762204485,218,0 +170762204533,218,0 +170762204581,218,0 +170762204629,218,0 +170762204677,219,0 +170762204725,218,0 +170762204774,214,0 +170762204823,214,0 +170762204871,215,0 +170762204921,215,0 +170762204969,216,0 +170762205018,216,0 +170762205066,216,0 +170762205114,217,0 +170762205162,218,0 +170762205211,217,0 +170762205259,218,0 +170762205307,219,0 +170762205355,219,0 +170762205403,219,0 +170762205451,219,0 +170762205499,219,0 +170762205546,220,0 +170762205596,219,0 +170762205644,215,0 +170762205693,214,0 +170762205741,215,0 +170762205791,215,0 +170762205839,217,0 +170762205887,216,0 +170762205935,216,0 +170762205983,217,0 +170762206030,217,0 +170762206078,218,0 +170762206128,218,0 +170762206176,219,0 +170762206224,218,0 +170762206273,219,0 +170762206323,220,0 +170762206371,218,0 +170762206419,219,0 +170762206468,219,0 +170762206516,218,0 +170762206566,215,0 +170762206613,214,0 +170762206661,215,0 +170762206709,216,0 +170762206757,216,0 +170762206807,216,0 +170762206855,217,0 +170762206903,217,0 +170762206951,218,0 +170762206999,218,0 +170762207047,218,0 +170762207095,218,0 +170762207144,220,0 +170762207192,220,0 +170762207240,220,0 +170762207290,220,0 +170762207338,220,0 +170762207387,219,0 +170762207437,215,0 +170762207484,214,0 +170762207534,214,0 +170762207582,215,0 +170762207631,215,0 +170762207679,215,0 +170762207729,217,0 +170762207777,216,0 +170762207825,216,0 +170762207873,217,0 +170762207922,217,0 +170762207972,217,0 +170762208019,218,0 +170762208067,218,0 +170762208115,218,0 +170762208165,220,0 +170762208214,219,0 +170762208262,219,0 +170762208310,219,0 +170762208359,215,0 +170762208409,214,0 +170762208457,215,0 +170762208506,215,0 +170762208554,215,0 +170762208604,216,0 +170762208651,216,0 +170762208701,217,0 +170762208749,217,0 +170762208797,217,0 +170762208846,218,0 +170762208894,218,0 +170762208942,219,0 +170762208992,219,0 +170762209040,220,0 +170762209089,219,0 +170762209139,220,0 +170762209188,219,0 +170762209238,218,0 +170762209286,214,0 +170762209333,214,0 +170762209383,214,0 +170762209431,214,0 +170762209479,215,0 +170762209527,215,0 +170762209576,215,0 +170762209624,215,0 +170762209672,216,0 +170762209721,217,0 +170762209769,217,0 +170762209819,218,0 +170762209868,218,0 +170762209918,219,0 +170762209965,219,0 +170762210013,219,0 +170762210061,218,0 +170762210109,219,0 +170762210157,215,0 +170762210205,214,0 +170762210253,214,0 +170762210301,214,0 +170762210349,215,0 +170762210397,215,0 +170762210445,215,0 +170762210494,216,0 +170762210542,216,0 +170762210592,216,0 +170762210640,217,0 +170762210688,217,0 +170762210736,218,0 +170762210785,217,0 +170762210833,219,0 +170762210881,218,0 +170762210929,219,0 +170762210977,219,0 +170762211025,219,0 +170762211074,215,0 +170762211122,214,0 +170762211170,214,0 +170762211218,215,0 +170762211266,215,0 +170762211315,215,0 +170762211365,216,0 +170762211414,216,0 +170762211464,217,0 +170762211512,217,0 +170762211560,218,0 +170762211608,218,0 +170762211657,218,0 +170762211707,219,0 +170762211755,219,0 +170762211802,219,0 +170762211850,219,0 +170762211900,219,0 +170762211948,215,0 +170762211996,214,0 +170762212045,214,0 +170762212095,215,0 +170762212143,215,0 +170762212193,215,0 +170762212241,216,0 +170762212289,216,0 +170762212338,217,0 +170762212386,217,0 +170762212434,218,0 +170762212482,218,0 +170762212530,219,0 +170762212578,219,0 +170762212626,219,0 +170762212674,219,0 +170762212722,220,0 +170762212770,220,0 +170762212817,219,0 +170762212865,215,0 +170762212913,214,0 +170762212961,214,0 +170762213011,214,0 +170762213060,215,0 +170762213108,215,0 +170762213158,215,0 +170762213205,216,0 +170762213253,216,0 +170762213303,217,0 +170762213352,217,0 +170762213402,218,0 +170762213451,218,0 +170762213501,219,0 +170762213550,219,0 +170762213600,219,0 +170762213648,219,0 +170762213697,219,0 +170762213746,216,0 +170762213794,214,0 +170762213842,214,0 +170762213892,215,0 +170762213940,215,0 +170762213988,215,0 +170762214037,215,0 +170762214087,216,0 +170762214135,216,0 +170762214183,217,0 +170762214231,217,0 +170762214280,218,0 +170762214328,218,0 +170762214376,218,0 +170762214424,219,0 +170762214472,219,0 +170762214520,219,0 +170762214570,219,0 +170762214618,219,0 +170762214665,215,0 +170762214713,214,0 +170762214763,214,0 +170762214811,215,0 +170762214859,215,0 +170762214906,216,0 +170762214954,216,0 +170762215002,216,0 +170762215050,218,0 +170762215100,217,0 +170762215148,218,0 +170762215196,219,0 +170762215244,219,0 +170762215291,218,0 +170762215341,220,0 +170762215389,220,0 +170762215438,220,0 +170762215486,220,0 +170762215534,219,0 +170762215582,215,0 +170762215630,214,0 +170762215678,215,0 +170762215726,215,0 +170762215775,215,0 +170762215825,216,0 +170762215874,216,0 +170762215922,217,0 +170762215970,217,0 +170762216018,218,0 +170762216066,218,0 +170762216114,218,0 +170762216163,219,0 +170762216213,219,0 +170762216261,219,0 +170762216309,219,0 +170762216357,220,0 +170762216405,219,0 +170762216453,219,0 +170762216502,214,0 +170762216550,214,0 +170762216598,214,0 +170762216646,214,0 +170762216694,215,0 +170762216742,215,0 +170762216790,215,0 +170762216839,216,0 +170762216887,216,0 +170762216935,217,0 +170762216983,217,0 +170762217031,218,0 +170762217079,218,0 +170762217127,218,0 +170762217176,219,0 +170762217226,220,0 +170762217274,220,0 +170762217322,219,0 +170762217370,215,0 +170762217418,214,0 +170762217465,214,0 +170762217513,214,0 +170762217563,214,0 +170762217611,215,0 +170762217659,215,0 +170762217707,216,0 +170762217755,216,0 +170762217804,216,0 +170762217852,217,0 +170762217900,218,0 +170762217949,218,0 +170762217997,218,0 +170762218047,219,0 +170762218095,220,0 +170762218143,219,0 +170762218192,219,0 +170762218242,218,0 +170762218289,214,0 +170762218339,213,0 +170762218387,214,0 +170762218435,214,0 +170762218483,214,0 +170762218531,215,0 +170762218579,216,0 +170762218627,216,0 +170762218676,217,0 +170762218724,217,0 +170762218774,217,0 +170762218822,218,0 +170762218869,218,0 +170762218917,218,0 +170762218965,219,0 +170762219013,219,0 +170762219061,219,0 +170762219110,219,0 +170762219160,219,0 +170762219209,214,0 +170762219259,214,0 +170762219308,214,0 +170762219356,214,0 +170762219404,214,0 +170762219452,215,0 +170762219500,215,0 +170762219549,215,0 +170762219599,215,0 +170762219647,216,0 +170762219696,216,0 +170762219744,217,0 +170762219792,218,0 +170762219840,218,0 +170762219888,225,0 +170762219938,218,0 +170762219986,219,0 +170762220033,219,0 +170762220081,215,0 +170762220131,214,0 +170762220179,214,0 +170762220227,214,0 +170762220276,214,0 +170762220324,215,0 +170762220374,215,0 +170762220423,215,0 +170762220471,216,0 +170762220519,216,0 +170762220569,216,0 +170762220618,217,0 +170762220666,217,0 +170762220714,218,0 +170762220762,218,0 +170762220810,218,0 +170762220858,219,0 +170762220906,219,0 +170762220955,219,0 +170762221003,215,0 +170762221051,215,0 +170762221099,215,0 +170762221147,216,0 +170762221195,216,0 +170762221244,217,0 +170762221292,217,0 +170762221342,218,0 +170762221390,219,0 +170762221439,219,0 +170762221487,219,0 +170762221537,219,0 +170762221585,220,0 +170762221632,220,0 +170762221682,220,0 +170762221730,220,0 +170762221779,219,0 +170762221829,219,0 +170762221878,215,0 +170762221926,214,0 +170762221974,215,0 +170762222022,215,0 +170762222071,216,0 +170762222121,216,0 +170762222169,216,0 +170762222218,217,0 +170762222266,218,0 +170762222314,218,0 +170762222361,219,0 +170762222409,219,0 +170762222457,219,0 +170762222505,219,0 +170762222553,219,0 +170762222601,219,0 +170762222649,220,0 +170762222696,219,0 +170762222744,219,0 +170762222792,215,0 +170762222842,214,0 +170762222889,214,0 +170762222937,214,0 +170762222987,214,0 +170762223036,214,0 +170762223084,215,0 +170762223132,215,0 +170762223180,215,0 +170762223228,216,0 +170762223277,217,0 +170762223327,217,0 +170762223374,218,0 +170762223422,218,0 +170762223470,218,0 +170762223520,218,0 +170762223569,218,0 +170762223617,219,0 +170762223665,215,0 +170762223713,214,0 +170762223761,214,0 +170762223809,214,0 +170762223857,214,0 +170762223904,215,0 +170762223952,215,0 +170762224000,216,0 +170762224048,216,0 +170762224097,217,0 +170762224145,216,0 +170762224193,217,0 +170762224241,217,0 +170762224289,218,0 +170762224336,218,0 +170762224386,218,0 +170762224434,218,0 +170762224481,218,0 +170762224529,219,0 +170762224577,215,0 +170762224625,214,0 +170762224673,214,0 +170762224722,214,0 +170762224770,215,0 +170762224818,215,0 +170762224866,215,0 +170762224913,216,0 +170762224961,215,0 +170762225009,216,0 +170762225057,217,0 +170762225105,218,0 +170762225153,218,0 +170762225200,218,0 +170762225248,218,0 +170762225296,218,0 +170762225344,219,0 +170762225392,219,0 +170762225440,219,0 +170762225488,215,0 +170762225535,214,0 +170762225583,214,0 +170762225631,214,0 +170762225681,215,0 +170762225729,215,0 +170762225777,215,0 +170762225825,216,0 +170762225873,216,0 +170762225921,216,0 +170762225968,217,0 +170762226016,217,0 +170762226064,217,0 +170762226114,218,0 +170762226162,219,0 +170762226211,220,0 +170762226261,219,0 +170762226310,219,0 +170762226358,219,0 +170762226406,214,0 +170762226454,214,0 +170762226504,215,0 +170762226551,215,0 +170762226601,216,0 +170762226650,216,0 +170762226698,216,0 +170762226748,216,0 +170762226795,216,0 +170762226843,216,0 +170762226891,217,0 +170762226939,218,0 +170762226989,218,0 +170762227037,218,0 +170762227085,218,0 +170762227133,219,0 +170762227182,219,0 +170762227230,219,0 +170762227278,215,0 +170762227326,215,0 +170762227374,215,0 +170762227421,215,0 +170762227469,216,0 +170762227517,216,0 +170762227565,217,0 +170762227613,217,0 +170762227661,218,0 +170762227709,218,0 +170762227757,218,0 +170762227804,218,0 +170762227852,220,0 +170762227900,219,0 +170762227948,220,0 +170762227996,219,0 +170762228043,220,0 +170762228091,220,0 +170762228139,220,0 +170762228188,215,0 +170762228236,215,0 +170762228284,215,0 +170762228334,215,0 +170762228381,215,0 +170762228429,216,0 +170762228479,217,0 +170762228526,217,0 +170762228574,217,0 +170762228622,218,0 +170762228670,218,0 +170762228718,219,0 +170762228767,218,0 +170762228817,219,0 +170762228865,219,0 +170762228913,219,0 +170762228961,219,0 +170762229010,219,0 +170762229058,219,0 +170762229106,214,0 +170762229154,214,0 +170762229202,214,0 +170762229251,215,0 +170762229299,215,0 +170762229347,215,0 +170762229395,216,0 +170762229443,216,0 +170762229491,216,0 +170762229539,217,0 +170762229587,217,0 +170762229634,217,0 +170762229682,217,0 +170762229732,218,0 +170762229780,219,0 +170762229827,219,0 +170762229875,219,0 +170762229925,219,0 +170762229973,219,0 +170762230020,214,0 +170762230068,215,0 +170762230116,215,0 +170762230164,215,0 +170762230212,216,0 +170762230260,216,0 +170762230308,216,0 +170762230356,217,0 +170762230403,217,0 +170762230451,217,0 +170762230499,218,0 +170762230547,218,0 +170762230596,218,0 +170762230644,219,0 +170762230692,219,0 +170762230741,219,0 +170762230789,219,0 +170762230837,218,0 +170762230885,215,0 +170762230933,214,0 +170762230981,215,0 +170762231029,215,0 +170762231077,215,0 +170762231127,216,0 +170762231175,216,0 +170762231222,216,0 +170762231270,217,0 +170762231320,218,0 +170762231368,218,0 +170762231416,218,0 +170762231464,218,0 +170762231513,219,0 +170762231561,219,0 +170762231611,220,0 +170762231660,219,0 +170762231710,219,0 +170762231759,218,0 +170762231807,215,0 +170762231855,215,0 +170762231905,215,0 +170762231954,215,0 +170762232004,215,0 +170762232052,215,0 +170762232101,216,0 +170762232149,216,0 +170762232197,217,0 +170762232246,216,0 +170762232294,217,0 +170762232344,217,0 +170762232393,217,0 +170762232441,218,0 +170762232491,219,0 +170762232539,219,0 +170762232588,219,0 +170762232636,218,0 +170762232684,215,0 +170762232734,215,0 +170762232783,215,0 +170762232831,216,0 +170762232881,216,0 +170762232930,217,0 +170762232978,217,0 +170762233027,217,0 +170762233075,217,0 +170762233123,218,0 +170762233171,219,0 +170762233220,219,0 +170762233268,219,0 +170762233316,219,0 +170762233366,219,0 +170762233414,219,0 +170762233463,219,0 +170762233511,219,0 +170762233560,215,0 +170762233608,215,0 +170762233658,216,0 +170762233706,216,0 +170762233754,216,0 +170762233803,217,0 +170762233851,217,0 +170762233901,218,0 +170762233950,218,0 +170762233998,218,0 +170762234046,218,0 +170762234096,219,0 +170762234144,218,0 +170762234192,219,0 +170762234241,219,0 +170762234291,219,0 +170762234339,219,0 +170762234387,219,0 +170762234436,215,0 +170762234484,214,0 +170762234533,214,0 +170762234581,215,0 +170762234631,215,0 +170762234679,216,0 +170762234728,215,0 +170762234776,216,0 +170762234824,217,0 +170762234874,218,0 +170762234921,218,0 +170762234969,218,0 +170762235017,219,0 +170762235065,218,0 +170762235113,219,0 +170762235161,219,0 +170762235209,219,0 +170762235256,219,0 +170762235306,219,0 +170762235354,214,0 +170762235402,214,0 +170762235449,214,0 +170762235497,215,0 +170762235547,215,0 +170762235596,216,0 +170762235644,216,0 +170762235694,216,0 +170762235742,217,0 +170762235789,217,0 +170762235837,217,0 +170762235885,219,0 +170762235933,218,0 +170762235981,219,0 +170762236029,218,0 +170762236078,219,0 +170762236126,219,0 +170762236176,219,0 +170762236224,214,0 +170762236272,214,0 +170762236320,214,0 +170762236369,214,0 +170762236418,214,0 +170762236466,215,0 +170762236514,215,0 +170762236562,216,0 +170762236610,216,0 +170762236658,217,0 +170762236706,217,0 +170762236754,218,0 +170762236802,217,0 +170762236850,218,0 +170762236899,218,0 +170762236947,218,0 +170762236997,218,0 +170762237045,219,0 +170762237093,215,0 +170762237141,214,0 +170762237190,214,0 +170762237238,215,0 +170762237286,215,0 +170762237334,215,0 +170762237383,216,0 +170762237433,216,0 +170762237481,217,0 +170762237529,217,0 +170762237576,218,0 +170762237624,218,0 +170762237674,218,0 +170762237722,219,0 +170762237771,218,0 +170762237821,219,0 +170762237869,220,0 +170762237918,219,0 +170762237966,218,0 +170762238014,214,0 +170762238062,214,0 +170762238112,215,0 +170762238161,215,0 +170762238209,216,0 +170762238257,215,0 +170762238305,216,0 +170762238354,216,0 +170762238402,217,0 +170762238452,217,0 +170762238500,218,0 +170762238548,218,0 +170762238595,219,0 +170762238643,219,0 +170762238691,219,0 +170762238739,219,0 +170762238787,219,0 +170762238836,219,0 +170762238884,214,0 +170762238932,214,0 +170762238980,214,0 +170762239027,214,0 +170762239075,214,0 +170762239123,215,0 +170762239171,215,0 +170762239219,215,0 +170762239267,215,0 +170762239316,216,0 +170762239364,216,0 +170762239412,218,0 +170762239459,217,0 +170762239507,218,0 +170762239555,219,0 +170762239603,219,0 +170762239652,219,0 +170762239701,219,0 +170762239749,215,0 +170762239797,214,0 +170762239846,214,0 +170762239896,214,0 +170762239944,214,0 +170762239991,214,0 +170762240039,215,0 +170762240087,215,0 +170762240135,215,0 +170762240183,216,0 +170762240231,216,0 +170762240278,216,0 +170762240326,217,0 +170762240376,217,0 +170762240424,218,0 +170762240472,218,0 +170762240520,218,0 +170762240568,218,0 +170762240615,219,0 +170762240663,214,0 +170762240713,214,0 +170762240761,214,0 +170762240810,214,0 +170762240860,214,0 +170762240908,214,0 +170762240957,214,0 +170762241007,214,0 +170762241055,215,0 +170762241103,216,0 +170762241152,216,0 +170762241200,216,0 +170762241248,217,0 +170762241297,217,0 +170762241347,218,0 +170762241396,218,0 +170762241444,218,0 +170762241494,219,0 +170762241542,215,0 +170762241590,215,0 +170762241639,215,0 +170762241689,216,0 +170762241737,216,0 +170762241784,217,0 +170762241832,217,0 +170762241882,218,0 +170762241930,219,0 +170762241979,219,0 +170762242027,219,0 +170762242075,219,0 +170762242123,219,0 +170762242173,219,0 +170762242222,219,0 +170762242269,219,0 +170762242317,219,0 +170762242367,218,0 +170762242415,215,0 +170762242463,215,0 +170762242512,215,0 +170762242562,216,0 +170762242611,216,0 +170762242659,216,0 +170762242707,217,0 +170762242755,217,0 +170762242804,217,0 +170762242854,217,0 +170762242903,218,0 +170762242951,218,0 +170762242999,219,0 +170762243047,218,0 +170762243095,219,0 +170762243145,220,0 +170762243194,219,0 +170762243242,220,0 +170762243290,216,0 +170762243338,214,0 +170762243386,214,0 +170762243435,214,0 +170762243485,214,0 +170762243533,215,0 +170762243581,215,0 +170762243630,216,0 +170762243678,216,0 +170762243726,216,0 +170762243776,216,0 +170762243824,217,0 +170762243873,217,0 +170762243921,217,0 +170762243969,217,0 +170762244017,218,0 +170762244066,218,0 +170762244114,218,0 +170762244162,218,0 +170762244212,214,0 +170762244261,214,0 +170762244309,214,0 +170762244359,214,0 +170762244407,214,0 +170762244455,214,0 +170762244502,214,0 +170762244550,215,0 +170762244598,215,0 +170762244648,215,0 +170762244697,216,0 +170762244745,217,0 +170762244795,217,0 +170762244843,218,0 +170762244891,218,0 +170762244940,217,0 +170762244988,218,0 +170762245036,218,0 +170762245084,215,0 +170762245132,214,0 +170762245181,214,0 +170762245229,214,0 +170762245277,214,0 +170762245325,214,0 +170762245373,215,0 +170762245422,215,0 +170762245470,215,0 +170762245518,216,0 +170762245566,216,0 +170762245616,216,0 +170762245664,217,0 +170762245712,217,0 +170762245760,218,0 +170762245808,217,0 +170762245855,218,0 +170762245903,218,0 +170762245951,216,0 +170762245999,214,0 +170762246047,214,0 +170762246096,215,0 +170762246146,216,0 +170762246194,216,0 +170762246243,216,0 +170762246293,215,0 +170762246341,217,0 +170762246389,217,0 +170762246437,218,0 +170762246485,218,0 +170762246532,219,0 +170762246580,219,0 +170762246628,219,0 +170762246678,219,0 +170762246726,219,0 +170762246774,219,0 +170762246821,219,0 +170762246869,214,0 +170762246917,215,0 +170762246965,215,0 +170762247013,216,0 +170762247061,216,0 +170762247110,216,0 +170762247158,217,0 +170762247206,217,0 +170762247254,217,0 +170762247302,218,0 +170762247350,219,0 +170762247400,220,0 +170762247447,219,0 +170762247495,219,0 +170762247543,219,0 +170762247591,220,0 +170762247641,218,0 +170762247690,218,0 +170762247738,215,0 +170762247786,215,0 +170762247834,215,0 +170762247882,215,0 +170762247930,216,0 +170762247978,217,0 +170762248027,217,0 +170762248075,217,0 +170762248123,218,0 +170762248172,218,0 +170762248220,219,0 +170762248268,219,0 +170762248316,219,0 +170762248366,220,0 +170762248413,220,0 +170762248461,219,0 +170762248509,219,0 +170762248557,219,0 +170762248605,218,0 +170762248652,214,0 +170762248700,215,0 +170762248748,215,0 +170762248796,215,0 +170762248845,215,0 +170762248893,216,0 +170762248943,216,0 +170762248992,216,0 +170762249040,217,0 +170762249090,218,0 +170762249138,218,0 +170762249185,219,0 +170762249235,220,0 +170762249283,220,0 +170762249331,220,0 +170762249379,220,0 +170762249428,219,0 +170762249476,219,0 +170762249526,215,0 +170762249574,215,0 +170762249622,215,0 +170762249670,215,0 +170762249718,216,0 +170762249767,216,0 +170762249815,216,0 +170762249863,216,0 +170762249913,217,0 +170762249960,218,0 +170762250008,218,0 +170762250056,218,0 +170762250106,218,0 +170762250154,219,0 +170762250202,219,0 +170762250251,219,0 +170762250299,219,0 +170762250347,219,0 +170762250395,215,0 +170762250444,214,0 +170762250492,215,0 +170762250540,215,0 +170762250588,216,0 +170762250636,216,0 +170762250684,216,0 +170762250732,216,0 +170762250780,217,0 +170762250828,218,0 +170762250876,218,0 +170762250924,218,0 +170762250973,220,0 +170762251021,219,0 +170762251071,219,0 +170762251120,219,0 +170762251170,219,0 +170762251218,219,0 +170762251266,219,0 +170762251314,215,0 +170762251363,214,0 +170762251413,215,0 +170762251461,215,0 +170762251509,216,0 +170762251557,216,0 +170762251605,216,0 +170762251652,216,0 +170762251702,217,0 +170762251750,217,0 +170762251798,218,0 +170762251846,218,0 +170762251894,219,0 +170762251942,219,0 +170762251990,219,0 +170762252039,219,0 +170762252089,219,0 +170762252137,219,0 +170762252186,215,0 +170762252234,214,0 +170762252282,215,0 +170762252332,215,0 +170762252379,215,0 +170762252427,216,0 +170762252475,216,0 +170762252523,216,0 +170762252571,216,0 +170762252621,216,0 +170762252669,218,0 +170762252716,219,0 +170762252764,219,0 +170762252812,220,0 +170762252860,218,0 +170762252908,218,0 +170762252956,219,0 +170762253004,219,0 +170762253052,219,0 +170762253100,214,0 +170762253148,214,0 +170762253195,214,0 +170762253245,215,0 +170762253294,215,0 +170762253342,217,0 +170762253390,216,0 +170762253438,216,0 +170762253486,217,0 +170762253534,217,0 +170762253582,219,0 +170762253631,219,0 +170762253679,218,0 +170762253727,218,0 +170762253775,219,0 +170762253823,219,0 +170762253873,219,0 +170762253921,219,0 +170762253970,218,0 +170762254018,214,0 +170762254066,214,0 +170762254115,215,0 +170762254163,215,0 +170762254213,216,0 +170762254261,216,0 +170762254309,217,0 +170762254358,217,0 +170762254406,217,0 +170762254456,219,0 +170762254505,218,0 +170762254553,218,0 +170762254603,219,0 +170762254650,219,0 +170762254700,220,0 +170762254750,220,0 +170762254797,219,0 +170762254845,219,0 +170762254893,214,0 +170762254943,214,0 +170762254991,215,0 +170762255039,215,0 +170762255087,216,0 +170762255135,217,0 +170762255183,216,0 +170762255231,217,0 +170762255280,218,0 +170762255328,218,0 +170762255376,219,0 +170762255424,219,0 +170762255473,219,0 +170762255521,220,0 +170762255569,220,0 +170762255617,220,0 +170762255665,219,0 +170762255714,219,0 +170762255764,215,0 +170762255813,214,0 +170762255861,214,0 +170762255909,215,0 +170762255957,215,0 +170762256005,215,0 +170762256053,216,0 +170762256101,216,0 +170762256150,216,0 +170762256198,217,0 +170762256246,218,0 +170762256294,218,0 +170762256343,218,0 +170762256391,219,0 +170762256439,220,0 +170762256487,219,0 +170762256535,219,0 +170762256583,219,0 +170762256631,219,0 +170762256678,214,0 +170762256726,214,0 +170762256774,214,0 +170762256824,214,0 +170762256872,215,0 +170762256919,215,0 +170762256967,216,0 +170762257015,216,0 +170762257063,216,0 +170762257111,216,0 +170762257159,217,0 +170762257207,218,0 +170762257255,218,0 +170762257302,218,0 +170762257350,219,0 +170762257398,221,0 +170762257446,219,0 +170762257495,219,0 +170762257543,216,0 +170762257591,214,0 +170762257639,214,0 +170762257687,214,0 +170762257736,215,0 +170762257785,215,0 +170762257834,215,0 +170762257884,215,0 +170762257932,218,0 +170762257981,216,0 +170762258029,216,0 +170762258077,217,0 +170762258125,217,0 +170762258173,219,0 +170762258221,219,0 +170762258269,219,0 +170762258317,219,0 +170762258364,218,0 +170762258412,218,0 +170762258460,214,0 +170762258508,214,0 +170762258556,214,0 +170762258605,214,0 +170762258653,214,0 +170762258701,214,0 +170762258749,214,0 +170762258797,215,0 +170762258845,215,0 +170762258893,216,0 +170762258941,216,0 +170762258989,217,0 +170762259037,217,0 +170762259084,218,0 +170762259132,218,0 +170762259180,218,0 +170762259229,218,0 +170762259277,218,0 +170762259325,215,0 +170762259373,214,0 +170762259421,214,0 +170762259469,214,0 +170762259519,214,0 +170762259567,214,0 +170762259616,214,0 +170762259664,214,0 +170762259712,214,0 +170762259760,215,0 +170762259808,215,0 +170762259856,216,0 +170762259904,216,0 +170762259953,217,0 +170762260001,217,0 +170762260051,218,0 +170762260100,218,0 +170762260150,218,0 +170762260197,219,0 +170762260245,215,0 +170762260295,214,0 +170762260344,215,0 +170762260392,215,0 +170762260440,216,0 +170762260490,216,0 +170762260538,217,0 +170762260586,217,0 +170762260635,218,0 +170762260683,218,0 +170762260731,219,0 +170762260779,219,0 +170762260829,219,0 +170762260878,219,0 +170762260926,219,0 +170762260974,220,0 +170762261024,219,0 +170762261073,219,0 +170762261121,216,0 +170762261169,214,0 +170762261218,215,0 +170762261266,215,0 +170762261314,216,0 +170762261362,216,0 +170762261412,216,0 +170762261459,216,0 +170762261509,217,0 +170762261557,217,0 +170762261605,217,0 +170762261654,219,0 +170762261702,218,0 +170762261750,218,0 +170762261798,218,0 +170762261846,219,0 +170762261894,219,0 +170762261943,219,0 +170762261991,219,0 +170762262039,214,0 +170762262087,214,0 +170762262135,214,0 +170762262183,215,0 +170762262231,215,0 +170762262280,216,0 +170762262328,216,0 +170762262376,216,0 +170762262426,217,0 +170762262474,217,0 +170762262522,218,0 +170762262570,218,0 +170762262619,218,0 +170762262667,219,0 +170762262715,218,0 +170762262763,219,0 +170762262811,220,0 +170762262859,219,0 +170762262908,215,0 +170762262956,214,0 +170762263005,215,0 +170762263053,215,0 +170762263101,216,0 +170762263151,216,0 +170762263199,216,0 +170762263247,217,0 +170762263296,217,0 +170762263344,218,0 +170762263392,219,0 +170762263440,219,0 +170762263488,220,0 +170762263536,219,0 +170762263586,218,0 +170762263635,220,0 +170762263683,219,0 +170762263731,219,0 +170762263779,218,0 +170762263827,215,0 +170762263876,215,0 +170762263926,215,0 +170762263975,215,0 +170762264023,216,0 +170762264071,216,0 +170762264119,216,0 +170762264167,216,0 +170762264217,217,0 +170762264264,217,0 +170762264312,216,0 +170762264360,218,0 +170762264408,218,0 +170762264456,219,0 +170762264504,220,0 +170762264553,219,0 +170762264603,218,0 +170762264651,216,0 +170762264699,216,0 +170762264748,215,0 +170762264798,216,0 +170762264847,216,0 +170762264897,218,0 +170762264946,216,0 +170762264995,217,0 +170762265043,218,0 +170762265093,218,0 +170762265141,221,0 +170762265189,219,0 +170762265236,219,0 +170762265284,220,0 +170762265334,220,0 +170762265383,220,0 +170762265431,220,0 +170762265479,219,0 +170762265527,219,0 +170762265576,217,0 +170762265624,215,0 +170762265674,215,0 +170762265722,216,0 +170762265769,216,0 +170762265819,216,0 +170762265868,217,0 +170762265918,217,0 +170762265966,218,0 +170762266014,218,0 +170762266062,218,0 +170762266111,219,0 +170762266159,219,0 +170762266209,219,0 +170762266256,220,0 +170762266304,219,0 +170762266352,220,0 +170762266400,220,0 +170762266448,218,0 +170762266496,215,0 +170762266544,215,0 +170762266592,215,0 +170762266640,215,0 +170762266688,216,0 +170762266736,217,0 +170762266784,217,0 +170762266832,217,0 +170762266880,218,0 +170762266928,218,0 +170762266976,219,0 +170762267024,219,0 +170762267071,220,0 +170762267119,219,0 +170762267169,220,0 +170762267219,220,0 +170762267266,219,0 +170762267316,219,0 +170762267364,220,0 +170762267413,215,0 +170762267461,214,0 +170762267509,215,0 +170762267557,215,0 +170762267605,216,0 +170762267653,216,0 +170762267703,216,0 +170762267752,217,0 +170762267800,217,0 +170762267848,217,0 +170762267896,218,0 +170762267944,218,0 +170762267993,219,0 +170762268042,218,0 +170762268090,219,0 +170762268138,219,0 +170762268186,219,0 +170762268234,219,0 +170762268282,214,0 +170762268330,214,0 +170762268378,214,0 +170762268426,214,0 +170762268475,215,0 +170762268523,215,0 +170762268572,215,0 +170762268622,216,0 +170762268670,216,0 +170762268719,217,0 +170762268769,217,0 +170762268817,218,0 +170762268865,218,0 +170762268914,217,0 +170762268962,219,0 +170762269012,219,0 +170762269060,219,0 +170762269109,219,0 +170762269157,215,0 +170762269205,214,0 +170762269253,214,0 +170762269302,214,0 +170762269350,214,0 +170762269400,214,0 +170762269449,214,0 +170762269497,215,0 +170762269547,215,0 +170762269594,215,0 +170762269642,216,0 +170762269692,217,0 +170762269740,217,0 +170762269788,217,0 +170762269836,218,0 +170762269884,218,0 +170762269932,218,0 +170762269980,219,0 +170762270028,219,0 +170762270076,214,0 +170762270125,214,0 +170762270175,214,0 +170762270222,214,0 +170762270272,215,0 +170762270321,215,0 +170762270369,215,0 +170762270417,215,0 +170762270465,216,0 +170762270513,216,0 +170762270563,217,0 +170762270612,217,0 +170762270662,218,0 +170762270710,219,0 +170762270757,218,0 +170762270805,219,0 +170762270853,218,0 +170762270903,219,0 +170762270952,215,0 +170762271000,214,0 +170762271048,214,0 +170762271097,214,0 +170762271147,214,0 +170762271196,214,0 +170762271244,215,0 +170762271292,215,0 +170762271342,215,0 +170762271390,216,0 +170762271438,216,0 +170762271486,217,0 +170762271534,218,0 +170762271583,218,0 +170762271631,218,0 +170762271679,219,0 +170762271727,219,0 +170762271775,218,0 +170762271824,219,0 +170762271872,214,0 +170762271922,214,0 +170762271970,214,0 +170762272017,214,0 +170762272065,214,0 +170762272113,214,0 +170762272161,214,0 +170762272209,215,0 +170762272257,215,0 +170762272305,215,0 +170762272353,216,0 +170762272402,216,0 +170762272450,216,0 +170762272499,218,0 +170762272547,218,0 +170762272595,218,0 +170762272643,218,0 +170762272691,220,0 +170762272738,215,0 +170762272786,213,0 +170762272834,213,0 +170762272882,213,0 +170762272930,213,0 +170762272980,213,0 +170762273028,213,0 +170762273075,213,0 +170762273123,214,0 +170762273171,214,0 +170762273221,214,0 +170762273270,214,0 +170762273318,215,0 +170762273366,215,0 +170762273414,216,0 +170762273462,215,0 +170762273511,215,0 +170762273559,219,0 +170762273607,218,0 +170762273655,214,0 +170762273705,214,0 +170762273754,214,0 +170762273802,214,0 +170762273852,214,0 +170762273900,214,0 +170762273948,215,0 +170762273996,215,0 +170762274044,215,0 +170762274091,215,0 +170762274141,217,0 +170762274189,217,0 +170762274238,217,0 +170762274286,218,0 +170762274334,218,0 +170762274382,218,0 +170762274431,218,0 +170762274479,219,0 +170762274527,215,0 +170762274574,214,0 +170762274622,214,0 +170762274670,214,0 +170762274718,214,0 +170762274767,214,0 +170762274815,215,0 +170762274863,215,0 +170762274911,215,0 +170762274959,216,0 +170762275006,217,0 +170762275054,217,0 +170762275102,217,0 +170762275150,218,0 +170762275198,218,0 +170762275245,218,0 +170762275293,218,0 +170762275341,219,0 +170762275389,219,0 +170762275437,214,0 +170762275485,213,0 +170762275533,214,0 +170762275580,214,0 +170762275628,215,0 +170762275676,215,0 +170762275724,215,0 +170762275772,216,0 +170762275820,216,0 +170762275867,216,0 +170762275915,217,0 +170762275963,217,0 +170762276011,218,0 +170762276059,218,0 +170762276107,219,0 +170762276155,219,0 +170762276202,218,0 +170762276252,218,0 +170762276300,215,0 +170762276348,214,0 +170762276397,214,0 +170762276445,215,0 +170762276493,215,0 +170762276541,215,0 +170762276588,218,0 +170762276636,215,0 +170762276686,215,0 +170762276734,216,0 +170762276782,216,0 +170762276830,217,0 +170762276877,217,0 +170762276927,217,0 +170762276975,218,0 +170762277023,218,0 +170762277071,218,0 +170762277119,219,0 +170762277167,218,0 +170762277215,214,0 +170762277264,214,0 +170762277312,214,0 +170762277360,215,0 +170762277410,215,0 +170762277458,215,0 +170762277505,216,0 +170762277555,216,0 +170762277603,217,0 +170762277652,217,0 +170762277702,217,0 +170762277750,217,0 +170762277799,217,0 +170762277847,218,0 +170762277895,217,0 +170762277943,217,0 +170762277991,218,0 +170762278039,219,0 +170762278087,215,0 +170762278135,214,0 +170762278183,215,0 +170762278231,215,0 +170762278278,216,0 +170762278326,216,0 +170762278374,216,0 +170762278422,216,0 +170762278470,217,0 +170762278518,217,0 +170762278565,218,0 +170762278613,218,0 +170762278663,219,0 +170762278712,219,0 +170762278762,219,0 +170762278810,219,0 +170762278858,219,0 +170762278907,219,0 +170762278955,219,0 +170762279003,217,0 +170762279051,216,0 +170762279099,217,0 +170762279148,217,0 +170762279196,217,0 +170762279244,218,0 +170762279292,218,0 +170762279340,218,0 +170762279389,219,0 +170762279439,219,0 +170762279487,219,0 +170762279535,219,0 +170762279584,219,0 +170762279632,219,0 +170762279680,220,0 +170762279729,219,0 +170762279779,219,0 +170762279826,219,0 +170762279874,217,0 +170762279924,216,0 +170762279971,217,0 +170762280019,217,0 +170762280067,217,0 +170762280115,218,0 +170762280163,218,0 +170762280211,218,0 +170762280259,219,0 +170762280306,218,0 +170762280354,219,0 +170762280402,219,0 +170762280450,220,0 +170762280500,221,0 +170762280548,219,0 +170762280596,219,0 +170762280645,219,0 +170762280693,219,0 +170762280741,219,0 +170762280789,215,0 +170762280836,215,0 +170762280884,215,0 +170762280932,216,0 +170762280980,216,0 +170762281029,216,0 +170762281077,216,0 +170762281125,216,0 +170762281173,217,0 +170762281221,218,0 +170762281269,218,0 +170762281317,219,0 +170762281365,219,0 +170762281413,220,0 +170762281462,220,0 +170762281510,219,0 +170762281558,219,0 +170762281606,220,0 +170762281654,216,0 +170762281702,215,0 +170762281750,215,0 +170762281798,216,0 +170762281846,216,0 +170762281894,216,0 +170762281943,217,0 +170762281991,217,0 +170762282039,217,0 +170762282087,217,0 +170762282135,218,0 +170762282183,219,0 +170762282231,219,0 +170762282279,218,0 +170762282326,219,0 +170762282376,219,0 +170762282424,219,0 +170762282472,219,0 +170762282519,218,0 +170762282567,214,0 +170762282617,216,0 +170762282665,215,0 +170762282712,215,0 +170762282760,215,0 +170762282808,216,0 +170762282856,216,0 +170762282904,216,0 +170762282951,217,0 +170762282999,217,0 +170762283049,218,0 +170762283097,218,0 +170762283144,218,0 +170762283192,219,0 +170762283242,225,0 +170762283289,221,0 +170762283337,219,0 +170762283385,219,0 +170762283433,217,0 +170762283481,214,0 +170762283529,215,0 +170762283578,215,0 +170762283626,215,0 +170762283676,216,0 +170762283724,216,0 +170762283771,217,0 +170762283819,216,0 +170762283867,217,0 +170762283915,218,0 +170762283963,218,0 +170762284011,218,0 +170762284059,220,0 +170762284107,218,0 +170762284155,219,0 +170762284204,219,0 +170762284252,219,0 +170762284302,219,0 +170762284350,215,0 +170762284398,214,0 +170762284446,215,0 +170762284494,215,0 +170762284542,216,0 +170762284590,216,0 +170762284637,216,0 +170762284685,217,0 +170762284735,216,0 +170762284783,217,0 +170762284831,218,0 +170762284880,218,0 +170762284930,218,0 +170762284980,219,0 +170762285027,219,0 +170762285075,219,0 +170762285123,219,0 +170762285171,219,0 +170762285221,218,0 +170762285269,214,0 +170762285317,214,0 +170762285365,215,0 +170762285414,215,0 +170762285462,215,0 +170762285512,216,0 +170762285559,216,0 +170762285607,217,0 +170762285655,217,0 +170762285703,217,0 +170762285751,219,0 +170762285801,218,0 +170762285849,218,0 +170762285897,219,0 +170762285945,219,0 +170762285993,219,0 +170762286041,218,0 +170762286090,219,0 +170762286138,218,0 +170762286188,214,0 +170762286237,214,0 +170762286285,214,0 +170762286334,215,0 +170762286384,215,0 +170762286432,216,0 +170762286481,216,0 +170762286531,217,0 +170762286580,217,0 +170762286628,217,0 +170762286676,218,0 +170762286724,218,0 +170762286772,219,0 +170762286822,218,0 +170762286871,219,0 +170762286921,220,0 +170762286969,218,0 +170762287018,219,0 +170762287066,215,0 +170762287114,213,0 +170762287162,214,0 +170762287212,214,0 +170762287261,214,0 +170762287311,215,0 +170762287359,215,0 +170762287408,216,0 +170762287456,216,0 +170762287506,217,0 +170762287554,217,0 +170762287602,217,0 +170762287649,217,0 +170762287697,218,0 +170762287745,218,0 +170762287793,219,0 +170762287841,218,0 +170762287889,218,0 +170762287936,220,0 +170762287984,215,0 +170762288034,214,0 +170762288082,215,0 +170762288129,215,0 +170762288177,216,0 +170762288227,216,0 +170762288275,216,0 +170762288322,216,0 +170762288370,217,0 +170762288418,217,0 +170762288467,218,0 +170762288515,218,0 +170762288563,218,0 +170762288611,219,0 +170762288659,219,0 +170762288707,219,0 +170762288755,219,0 +170762288802,218,0 +170762288850,219,0 +170762288898,214,0 +170762288946,214,0 +170762288994,214,0 +170762289042,215,0 +170762289089,215,0 +170762289137,216,0 +170762289186,216,0 +170762289234,216,0 +170762289282,217,0 +170762289330,217,0 +170762289379,217,0 +170762289427,218,0 +170762289475,218,0 +170762289523,218,0 +170762289571,219,0 +170762289618,218,0 +170762289666,219,0 +170762289714,218,0 +170762289762,219,0 +170762289810,215,0 +170762289858,214,0 +170762289906,214,0 +170762289953,215,0 +170762290001,215,0 +170762290049,216,0 +170762290097,215,0 +170762290145,216,0 +170762290193,216,0 +170762290241,217,0 +170762290289,218,0 +170762290338,217,0 +170762290386,218,0 +170762290434,218,0 +170762290484,219,0 +170762290532,219,0 +170762290580,218,0 +170762290629,219,0 +170762290679,219,0 +170762290726,214,0 +170762290776,214,0 +170762290825,214,0 +170762290875,214,0 +170762290923,214,0 +170762290971,215,0 +170762291021,215,0 +170762291070,215,0 +170762291118,216,0 +170762291167,215,0 +170762291215,216,0 +170762291263,217,0 +170762291311,217,0 +170762291359,218,0 +170762291407,218,0 +170762291455,218,0 +170762291503,218,0 +170762291551,219,0 +170762291599,219,0 +170762291647,214,0 +170762291694,213,0 +170762291742,214,0 +170762291790,214,0 +170762291840,214,0 +170762291889,214,0 +170762291939,214,0 +170762291988,215,0 +170762292038,215,0 +170762292087,216,0 +170762292135,216,0 +170762292183,217,0 +170762292233,217,0 +170762292281,217,0 +170762292329,218,0 +170762292377,218,0 +170762292425,219,0 +170762292474,219,0 +170762292524,218,0 +170762292571,214,0 +170762292621,214,0 +170762292670,214,0 +170762292718,214,0 +170762292766,214,0 +170762292814,214,0 +170762292862,215,0 +170762292912,215,0 +170762292959,216,0 +170762293007,216,0 +170762293055,217,0 +170762293103,217,0 +170762293151,218,0 +170762293201,218,0 +170762293250,218,0 +170762293298,219,0 +170762293348,219,0 +170762293396,219,0 +170762293444,215,0 +170762293492,214,0 +170762293539,214,0 +170762293587,214,0 +170762293637,214,0 +170762293687,214,0 +170762293736,215,0 +170762293786,215,0 +170762293835,216,0 +170762293885,216,0 +170762293933,217,0 +170762293982,217,0 +170762294032,217,0 +170762294080,218,0 +170762294129,218,0 +170762294179,219,0 +170762294228,219,0 +170762294278,219,0 +170762294326,219,0 +170762294375,214,0 +170762294425,214,0 +170762294473,214,0 +170762294521,214,0 +170762294569,214,0 +170762294617,215,0 +170762294665,215,0 +170762294714,215,0 +170762294762,216,0 +170762294811,216,0 +170762294859,216,0 +170762294909,216,0 +170762294958,217,0 +170762295006,217,0 +170762295056,217,0 +170762295105,217,0 +170762295153,217,0 +170762295201,218,0 +170762295249,218,0 +170762295297,214,0 +170762295347,214,0 +170762295395,214,0 +170762295443,214,0 +170762295491,214,0 +170762295540,214,0 +170762295590,215,0 +170762295638,216,0 +170762295686,216,0 +170762295735,216,0 +170762295783,217,0 +170762295831,218,0 +170762295879,218,0 +170762295928,218,0 +170762295976,219,0 +170762296026,219,0 +170762296074,219,0 +170762296122,218,0 +170762296170,218,0 +170762296218,214,0 +170762296265,214,0 +170762296315,214,0 +170762296364,215,0 +170762296413,215,0 +170762296460,215,0 +170762296510,215,0 +170762296558,216,0 +170762296606,216,0 +170762296655,217,0 +170762296703,217,0 +170762296751,218,0 +170762296799,218,0 +170762296849,219,0 +170762296897,219,0 +170762296946,219,0 +170762296994,219,0 +170762297042,219,0 +170762297092,215,0 +170762297140,214,0 +170762297188,214,0 +170762297237,214,0 +170762297287,215,0 +170762297336,215,0 +170762297384,215,0 +170762297434,216,0 +170762297481,216,0 +170762297531,217,0 +170762297579,217,0 +170762297628,218,0 +170762297678,218,0 +170762297726,218,0 +170762297774,219,0 +170762297822,218,0 +170762297870,219,0 +170762297919,219,0 +170762297967,219,0 +170762298015,214,0 +170762298063,214,0 +170762298111,214,0 +170762298159,214,0 +170762298207,215,0 +170762298256,216,0 +170762298304,215,0 +170762298352,216,0 +170762298400,216,0 +170762298448,216,0 +170762298496,218,0 +170762298545,218,0 +170762298595,217,0 +170762298643,218,0 +170762298691,219,0 +170762298739,219,0 +170762298787,219,0 +170762298835,218,0 +170762298883,218,0 +170762298931,215,0 +170762298978,214,0 +170762299026,214,0 +170762299076,215,0 +170762299124,215,0 +170762299172,216,0 +170762299220,216,0 +170762299268,216,0 +170762299317,217,0 +170762299365,217,0 +170762299413,218,0 +170762299461,218,0 +170762299509,219,0 +170762299557,218,0 +170762299605,219,0 +170762299653,219,0 +170762299701,219,0 +170762299750,220,0 +170762299798,219,0 +170762299846,215,0 +170762299896,215,0 +170762299944,215,0 +170762299992,215,0 +170762300041,216,0 +170762300089,217,0 +170762300137,217,0 +170762300185,217,0 +170762300235,217,0 +170762300284,218,0 +170762300334,218,0 +170762300383,219,0 +170762300431,220,0 +170762300479,219,0 +170762300527,219,0 +170762300575,219,0 +170762300625,220,0 +170762300673,219,0 +170762300721,219,0 +170762300768,214,0 +170762300816,214,0 +170762300864,214,0 +170762300912,214,0 +170762300962,215,0 +170762301009,216,0 +170762301059,216,0 +170762301107,216,0 +170762301156,216,0 +170762301204,217,0 +170762301252,218,0 +170762301300,218,0 +170762301349,219,0 +170762301397,218,0 +170762301445,218,0 +170762301494,219,0 +170762301542,219,0 +170762301590,219,0 +170762301638,218,0 +170762301686,214,0 +170762301734,214,0 +170762301782,214,0 +170762301830,214,0 +170762301878,215,0 +170762301925,215,0 +170762301975,215,0 +170762302023,216,0 +170762302071,216,0 +170762302119,216,0 +170762302168,216,0 +170762302216,217,0 +170762302265,217,0 +170762302313,217,0 +170762302363,218,0 +170762302411,218,0 +170762302458,219,0 +170762302506,219,0 +170762302556,218,0 +170762302604,214,0 +170762302652,214,0 +170762302700,214,0 +170762302748,215,0 +170762302797,215,0 +170762302847,215,0 +170762302895,216,0 +170762302943,216,0 +170762302992,216,0 +170762303040,217,0 +170762303089,218,0 +170762303139,218,0 +170762303187,218,0 +170762303235,219,0 +170762303282,219,0 +170762303330,219,0 +170762303378,219,0 +170762303426,219,0 +170762303476,219,0 +170762303525,214,0 +170762303573,214,0 +170762303621,215,0 +170762303669,215,0 +170762303717,215,0 +170762303765,215,0 +170762303813,216,0 +170762303862,216,0 +170762303912,216,0 +170762303960,217,0 +170762304008,218,0 +170762304055,218,0 +170762304105,218,0 +170762304153,219,0 +170762304200,219,0 +170762304248,219,0 +170762304296,219,0 +170762304346,219,0 +170762304393,218,0 +170762304441,214,0 +170762304489,214,0 +170762304537,215,0 +170762304585,215,0 +170762304633,215,0 +170762304681,215,0 +170762304730,215,0 +170762304778,216,0 +170762304826,216,0 +170762304874,217,0 +170762304921,217,0 +170762304969,218,0 +170762305017,218,0 +170762305065,218,0 +170762305113,218,0 +170762305160,219,0 +170762305208,218,0 +170762305256,220,0 +170762305304,218,0 +170762305353,214,0 +170762305401,214,0 +170762305449,214,0 +170762305496,215,0 +170762305546,215,0 +170762305595,215,0 +170762305643,216,0 +170762305691,216,0 +170762305739,217,0 +170762305787,216,0 +170762305836,217,0 +170762305884,217,0 +170762305932,218,0 +170762305980,218,0 +170762306028,218,0 +170762306076,219,0 +170762306124,219,0 +170762306172,218,0 +170762306219,218,0 +170762306267,214,0 +170762306315,214,0 +170762306365,214,0 +170762306412,214,0 +170762306460,215,0 +170762306508,215,0 +170762306558,216,0 +170762306605,217,0 +170762306653,217,0 +170762306701,217,0 +170762306749,218,0 +170762306797,219,0 +170762306844,218,0 +170762306892,219,0 +170762306942,219,0 +170762306991,220,0 +170762307039,219,0 +170762307087,219,0 +170762307135,219,0 +170762307185,214,0 +170762307233,214,0 +170762307282,214,0 +170762307330,215,0 +170762307378,215,0 +170762307426,215,0 +170762307475,216,0 +170762307523,215,0 +170762307573,217,0 +170762307621,217,0 +170762307668,217,0 +170762307718,218,0 +170762307766,220,0 +170762307815,218,0 +170762307863,218,0 +170762307911,219,0 +170762307961,219,0 +170762308008,219,0 +170762308056,218,0 +170762308104,214,0 +170762308152,214,0 +170762308200,214,0 +170762308248,214,0 +170762308295,214,0 +170762308343,215,0 +170762308391,215,0 +170762308441,216,0 +170762308489,216,0 +170762308537,216,0 +170762308585,217,0 +170762308632,217,0 +170762308680,217,0 +170762308728,218,0 +170762308776,218,0 +170762308826,218,0 +170762308873,218,0 +170762308921,218,0 +170762308971,219,0 +170762309019,214,0 +170762309067,214,0 +170762309115,214,0 +170762309163,215,0 +170762309211,215,0 +170762309260,215,0 +170762309309,215,0 +170762309357,215,0 +170762309407,216,0 +170762309456,216,0 +170762309504,217,0 +170762309552,217,0 +170762309600,217,0 +170762309648,218,0 +170762309696,218,0 +170762309744,219,0 +170762309794,219,0 +170762309842,218,0 +170762309891,218,0 +170762309939,214,0 +170762309987,214,0 +170762310035,214,0 +170762310083,214,0 +170762310131,215,0 +170762310178,215,0 +170762310226,215,0 +170762310274,216,0 +170762310322,216,0 +170762310370,216,0 +170762310418,217,0 +170762310466,218,0 +170762310514,218,0 +170762310563,218,0 +170762310613,218,0 +170762310662,218,0 +170762310712,219,0 +170762310759,219,0 +170762310809,217,0 +170762310858,214,0 +170762310906,214,0 +170762310954,215,0 +170762311004,215,0 +170762311052,215,0 +170762311101,215,0 +170762311149,215,0 +170762311197,216,0 +170762311246,216,0 +170762311294,217,0 +170762311342,217,0 +170762311390,218,0 +170762311438,218,0 +170762311486,218,0 +170762311535,219,0 +170762311585,219,0 +170762311634,219,0 +170762311682,219,0 +170762311732,215,0 +170762311780,213,0 +170762311828,214,0 +170762311876,214,0 +170762311924,215,0 +170762311972,214,0 +170762312019,215,0 +170762312067,215,0 +170762312117,216,0 +170762312165,217,0 +170762312214,217,0 +170762312262,218,0 +170762312310,218,0 +170762312358,218,0 +170762312407,218,0 +170762312455,219,0 +170762312503,219,0 +170762312553,219,0 +170762312602,220,0 +170762312652,215,0 +170762312702,214,0 +170762312750,214,0 +170762312797,215,0 +170762312845,214,0 +170762312893,215,0 +170762312941,215,0 +170762312991,216,0 +170762313038,216,0 +170762313088,217,0 +170762313137,217,0 +170762313185,218,0 +170762313235,218,0 +170762313283,218,0 +170762313331,218,0 +170762313379,219,0 +170762313427,220,0 +170762313476,219,0 +170762313524,220,0 +170762313574,215,0 +170762313622,214,0 +170762313671,214,0 +170762313721,215,0 +170762313770,215,0 +170762313820,216,0 +170762313868,216,0 +170762313916,217,0 +170762313965,218,0 +170762314013,218,0 +170762314061,218,0 +170762314109,219,0 +170762314157,219,0 +170762314204,219,0 +170762314252,219,0 +170762314302,221,0 +170762314349,219,0 +170762314397,220,0 +170762314445,219,0 +170762314493,214,0 +170762314541,214,0 +170762314589,214,0 +170762314636,215,0 +170762314684,216,0 +170762314734,216,0 +170762314782,216,0 +170762314829,216,0 +170762314877,217,0 +170762314925,217,0 +170762314973,217,0 +170762315023,218,0 +170762315071,218,0 +170762315120,219,0 +170762315168,219,0 +170762315218,219,0 +170762315266,219,0 +170762315315,219,0 +170762315365,219,0 +170762315414,214,0 +170762315462,214,0 +170762315512,214,0 +170762315560,214,0 +170762315609,215,0 +170762315657,215,0 +170762315705,216,0 +170762315753,216,0 +170762315801,216,0 +170762315849,217,0 +170762315897,218,0 +170762315944,218,0 +170762315992,218,0 +170762316042,218,0 +170762316091,219,0 +170762316139,219,0 +170762316187,219,0 +170762316235,219,0 +170762316282,219,0 +170762316330,214,0 +170762316378,214,0 +170762316426,214,0 +170762316474,215,0 +170762316521,215,0 +170762316569,216,0 +170762316617,216,0 +170762316665,216,0 +170762316713,216,0 +170762316761,217,0 +170762316809,217,0 +170762316857,218,0 +170762316904,219,0 +170762316952,218,0 +170762317000,218,0 +170762317048,219,0 +170762317098,219,0 +170762317146,219,0 +170762317194,219,0 +170762317242,214,0 +170762317291,214,0 +170762317339,213,0 +170762317387,214,0 +170762317435,214,0 +170762317482,214,0 +170762317532,214,0 +170762317580,215,0 +170762317627,216,0 +170762317675,216,0 +170762317723,217,0 +170762317771,217,0 +170762317819,217,0 +170762317868,218,0 +170762317916,219,0 +170762317964,218,0 +170762318012,218,0 +170762318060,218,0 +170762318109,219,0 +170762318157,214,0 +170762318205,214,0 +170762318253,214,0 +170762318301,214,0 +170762318350,214,0 +170762318398,214,0 +170762318446,215,0 +170762318494,215,0 +170762318542,216,0 +170762318590,216,0 +170762318638,217,0 +170762318685,218,0 +170762318733,218,0 +170762318781,218,0 +170762318829,218,0 +170762318879,218,0 +170762318927,218,0 +170762318975,219,0 +170762319024,217,0 +170762319074,213,0 +170762319121,213,0 +170762319169,213,0 +170762319217,213,0 +170762319265,214,0 +170762319313,214,0 +170762319361,214,0 +170762319409,214,0 +170762319458,214,0 +170762319506,215,0 +170762319554,215,0 +170762319602,215,0 +170762319650,216,0 +170762319698,216,0 +170762319746,217,0 +170762319794,217,0 +170762319843,217,0 +170762319891,218,0 +170762319939,215,0 +170762319987,214,0 +170762320035,214,0 +170762320083,214,0 +170762320133,214,0 +170762320181,214,0 +170762320229,215,0 +170762320277,215,0 +170762320326,216,0 +170762320376,215,0 +170762320425,216,0 +170762320473,215,0 +170762320521,217,0 +170762320569,217,0 +170762320619,218,0 +170762320668,217,0 +170762320716,217,0 +170762320764,219,0 +170762320812,219,0 +170762320860,215,0 +170762320908,214,0 +170762320956,214,0 +170762321005,214,0 +170762321055,214,0 +170762321103,214,0 +170762321151,214,0 +170762321200,215,0 +170762321250,215,0 +170762321298,215,0 +170762321346,215,0 +170762321394,216,0 +170762321442,216,0 +170762321491,216,0 +170762321541,217,0 +170762321589,217,0 +170762321638,217,0 +170762321686,218,0 +170762321734,218,0 +170762321782,214,0 +170762321831,214,0 +170762321879,214,0 +170762321927,214,0 +170762321975,214,0 +170762322025,214,0 +170762322074,214,0 +170762322124,214,0 +170762322172,215,0 +170762322220,216,0 +170762322268,216,0 +170762322317,216,0 +170762322365,217,0 +170762322413,216,0 +170762322461,216,0 +170762322509,216,0 +170762322558,215,0 +170762322606,218,0 +170762322654,219,0 +170762322702,214,0 +170762322752,214,0 +170762322800,214,0 +170762322849,214,0 +170762322897,214,0 +170762322947,214,0 +170762322995,215,0 +170762323043,215,0 +170762323091,215,0 +170762323140,216,0 +170762323188,217,0 +170762323236,217,0 +170762323284,218,0 +170762323333,218,0 +170762323381,218,0 +170762323429,218,0 +170762323477,218,0 +170762323527,218,0 +170762323576,218,0 +170762323624,214,0 +170762323672,214,0 +170762323720,214,0 +170762323768,214,0 +170762323816,215,0 +170762323864,215,0 +170762323913,215,0 +170762323961,218,0 +170762324009,217,0 +170762324057,217,0 +170762324105,217,0 +170762324153,217,0 +170762324201,218,0 +170762324249,217,0 +170762324297,217,0 +170762324346,216,0 +170762324394,217,0 +170762324442,219,0 +170762324490,215,0 +170762324538,213,0 +170762324586,214,0 +170762324636,214,0 +170762324684,214,0 +170762324733,215,0 +170762324781,215,0 +170762324829,216,0 +170762324879,216,0 +170762324926,216,0 +170762324974,217,0 +170762325024,217,0 +170762325072,218,0 +170762325121,218,0 +170762325169,218,0 +170762325219,218,0 +170762325268,219,0 +170762325318,219,0 +170762325367,219,0 +170762325417,214,0 +170762325466,214,0 +170762325514,214,0 +170762325562,214,0 +170762325610,215,0 +170762325660,215,0 +170762325707,215,0 +170762325755,216,0 +170762325803,216,0 +170762325853,216,0 +170762325901,217,0 +170762325949,217,0 +170762325997,217,0 +170762326046,217,0 +170762326096,218,0 +170762326144,218,0 +170762326192,218,0 +170762326239,218,0 +170762326289,218,0 +170762326337,214,0 +170762326385,214,0 +170762326433,214,0 +170762326481,215,0 +170762326529,215,0 +170762326578,215,0 +170762326628,215,0 +170762326677,215,0 +170762326725,216,0 +170762326775,216,0 +170762326823,217,0 +170762326871,217,0 +170762326920,219,0 +170762326970,218,0 +170762327019,217,0 +170762327067,219,0 +170762327117,218,0 +170762327165,220,0 +170762327213,218,0 +170762327261,214,0 +170762327310,215,0 +170762327358,215,0 +170762327406,215,0 +170762327454,215,0 +170762327502,216,0 +170762327550,216,0 +170762327598,216,0 +170762327646,217,0 +170762327694,216,0 +170762327742,217,0 +170762327790,218,0 +170762327839,218,0 +170762327887,218,0 +170762327935,219,0 +170762327983,219,0 +170762328031,219,0 +170762328079,219,0 +170762328127,216,0 +170762328175,215,0 +170762328224,215,0 +170762328272,216,0 +170762328320,216,0 +170762328370,217,0 +170762328417,217,0 +170762328465,217,0 +170762328513,218,0 +170762328561,218,0 +170762328609,219,0 +170762328657,218,0 +170762328704,219,0 +170762328752,219,0 +170762328800,219,0 +170762328850,220,0 +170762328899,219,0 +170762328947,219,0 +170762328995,219,0 +170762329042,217,0 +170762329090,215,0 +170762329140,216,0 +170762329189,216,0 +170762329237,217,0 +170762329285,217,0 +170762329333,218,0 +170762329382,218,0 +170762329430,218,0 +170762329478,219,0 +170762329526,218,0 +170762329573,219,0 +170762329621,220,0 +170762329669,220,0 +170762329718,219,0 +170762329766,221,0 +170762329816,220,0 +170762329864,219,0 +170762329913,219,0 +170762329963,215,0 +170762330012,216,0 +170762330062,216,0 +170762330110,217,0 +170762330159,218,0 +170762330207,218,0 +170762330255,218,0 +170762330303,218,0 +170762330351,218,0 +170762330399,219,0 +170762330447,218,0 +170762330495,220,0 +170762330542,220,0 +170762330590,220,0 +170762330638,221,0 +170762330686,220,0 +170762330734,220,0 +170762330784,220,0 +170762330832,219,0 +170762330880,215,0 +170762330927,214,0 +170762330977,215,0 +170762331025,215,0 +170762331072,216,0 +170762331120,216,0 +170762331170,216,0 +170762331218,216,0 +170762331266,217,0 +170762331314,217,0 +170762331361,217,0 +170762331411,218,0 +170762331459,218,0 +170762331507,218,0 +170762331555,219,0 +170762331602,218,0 +170762331650,218,0 +170762331700,218,0 +170762331748,219,0 +170762331796,215,0 +170762331844,213,0 +170762331893,213,0 +170762331941,214,0 +170762331989,214,0 +170762332037,214,0 +170762332086,214,0 +170762332136,214,0 +170762332184,215,0 +170762332232,215,0 +170762332280,216,0 +170762332328,216,0 +170762332375,216,0 +170762332423,217,0 +170762332471,217,0 +170762332519,217,0 +170762332567,218,0 +170762332615,218,0 +170762332663,219,0 +170762332711,215,0 +170762332759,213,0 +170762332808,213,0 +170762332856,213,0 +170762332906,213,0 +170762332954,214,0 +170762333002,214,0 +170762333051,214,0 +170762333101,215,0 +170762333149,215,0 +170762333198,216,0 +170762333246,216,0 +170762333294,217,0 +170762333342,217,0 +170762333390,217,0 +170762333438,218,0 +170762333486,218,0 +170762333534,218,0 +170762333582,219,0 +170762333630,214,0 +170762333679,214,0 +170762333727,213,0 +170762333777,213,0 +170762333825,214,0 +170762333874,214,0 +170762333922,214,0 +170762333972,214,0 +170762334020,214,0 +170762334069,214,0 +170762334117,214,0 +170762334165,214,0 +170762334213,215,0 +170762334261,215,0 +170762334309,216,0 +170762334359,216,0 +170762334407,216,0 +170762334454,221,0 +170762334502,217,0 +170762334552,218,0 +170762334600,219,0 +170762334649,219,0 +170762334697,219,0 +170762334745,220,0 +170762334793,219,0 +170762334841,219,0 +170762334889,219,0 +170762334937,219,0 +170762334985,215,0 +170762335033,214,0 +170762335081,214,0 +170762335129,214,0 +170762335178,214,0 +170762335226,215,0 +170762335274,215,0 +170762335322,215,0 +170762335372,216,0 +170762335421,216,0 +170762335469,216,0 +170762335517,217,0 +170762335567,217,0 +170762335616,218,0 +170762335664,218,0 +170762335712,219,0 +170762335762,219,0 +170762335810,219,0 +170762335857,218,0 +170762335905,214,0 +170762335953,214,0 +170762336003,214,0 +170762336051,214,0 +170762336099,214,0 +170762336148,215,0 +170762336196,215,0 +170762336244,215,0 +170762336292,216,0 +170762336340,217,0 +170762336388,217,0 +170762336436,217,0 +170762336484,218,0 +170762336532,218,0 +170762336580,219,0 +170762336628,219,0 +170762336676,219,0 +170762336724,219,0 +170762336772,219,0 +170762336821,214,0 +170762336870,214,0 +170762336920,214,0 +170762336968,215,0 +170762337016,215,0 +170762337063,215,0 +170762337113,216,0 +170762337161,216,0 +170762337209,216,0 +170762337258,217,0 +170762337306,217,0 +170762337355,218,0 +170762337403,218,0 +170762337451,218,0 +170762337499,219,0 +170762337547,219,0 +170762337595,219,0 +170762337643,218,0 +170762337690,219,0 +170762337740,214,0 +170762337788,214,0 +170762337836,214,0 +170762337885,214,0 +170762337933,215,0 +170762337981,214,0 +170762338031,216,0 +170762338080,216,0 +170762338128,216,0 +170762338176,216,0 +170762338226,216,0 +170762338274,217,0 +170762338321,217,0 +170762338369,218,0 +170762338417,217,0 +170762338465,218,0 +170762338514,218,0 +170762338562,219,0 +170762338610,218,0 +170762338658,214,0 +170762338706,214,0 +170762338754,214,0 +170762338803,214,0 +170762338851,214,0 +170762338899,214,0 +170762338947,214,0 +170762338994,214,0 +170762339042,214,0 +170762339090,215,0 +170762339140,215,0 +170762339189,216,0 +170762339237,217,0 +170762339287,217,0 +170762339336,218,0 +170762339384,218,0 +170762339434,218,0 +170762339483,219,0 +170762339531,218,0 +170762339579,214,0 +170762339627,213,0 +170762339676,214,0 +170762339724,214,0 +170762339772,214,0 +170762339820,214,0 +170762339868,214,0 +170762339916,214,0 +170762339964,215,0 +170762340012,216,0 +170762340060,217,0 +170762340108,217,0 +170762340156,218,0 +170762340204,217,0 +170762340253,217,0 +170762340301,218,0 +170762340349,218,0 +170762340397,219,0 +170762340446,215,0 +170762340494,214,0 +170762340542,214,0 +170762340590,214,0 +170762340638,214,0 +170762340686,215,0 +170762340734,215,0 +170762340782,215,0 +170762340830,215,0 +170762340877,216,0 +170762340925,216,0 +170762340973,217,0 +170762341021,218,0 +170762341070,218,0 +170762341118,218,0 +170762341166,218,0 +170762341214,220,0 +170762341263,219,0 +170762341312,219,0 +170762341360,215,0 +170762341408,214,0 +170762341456,214,0 +170762341504,214,0 +170762341552,214,0 +170762341601,214,0 +170762341649,215,0 +170762341698,215,0 +170762341748,216,0 +170762341795,216,0 +170762341843,216,0 +170762341893,216,0 +170762341941,219,0 +170762341988,219,0 +170762342036,218,0 +170762342084,218,0 +170762342132,218,0 +170762342180,219,0 +170762342227,221,0 +170762342275,215,0 +170762342323,214,0 +170762342371,214,0 +170762342419,214,0 +170762342468,214,0 +170762342516,215,0 +170762342565,215,0 +170762342613,215,0 +170762342661,215,0 +170762342709,215,0 +170762342757,216,0 +170762342805,216,0 +170762342852,217,0 +170762342900,218,0 +170762342948,218,0 +170762342996,218,0 +170762343044,219,0 +170762343092,219,0 +170762343139,218,0 +170762343187,215,0 +170762343235,213,0 +170762343283,214,0 +170762343331,214,0 +170762343379,214,0 +170762343426,214,0 +170762343474,214,0 +170762343522,215,0 +170762343570,216,0 +170762343619,216,0 +170762343669,216,0 +170762343717,217,0 +170762343765,218,0 +170762343812,218,0 +170762343862,218,0 +170762343911,218,0 +170762343961,219,0 +170762344008,219,0 +170762344056,219,0 +170762344104,214,0 +170762344152,214,0 +170762344200,214,0 +170762344248,214,0 +170762344296,215,0 +170762344343,215,0 +170762344391,215,0 +170762344439,216,0 +170762344487,216,0 +170762344535,216,0 +170762344582,217,0 +170762344630,217,0 +170762344678,217,0 +170762344726,218,0 +170762344775,219,0 +170762344823,218,0 +170762344871,218,0 +170762344919,219,0 +170762344967,218,0 +170762345015,214,0 +170762345064,214,0 +170762345112,215,0 +170762345161,215,0 +170762345209,216,0 +170762345257,216,0 +170762345305,216,0 +170762345353,216,0 +170762345400,217,0 +170762345448,218,0 +170762345496,218,0 +170762345544,218,0 +170762345592,218,0 +170762345640,219,0 +170762345687,219,0 +170762345737,220,0 +170762345785,219,0 +170762345833,219,0 +170762345880,217,0 +170762345928,214,0 +170762345976,214,0 +170762346024,214,0 +170762346072,215,0 +170762346122,216,0 +170762346169,216,0 +170762346217,217,0 +170762346265,217,0 +170762346313,218,0 +170762346361,218,0 +170762346410,218,0 +170762346458,218,0 +170762346507,219,0 +170762346555,219,0 +170762346603,219,0 +170762346651,219,0 +170762346699,220,0 +170762346746,219,0 +170762346794,215,0 +170762346842,214,0 +170762346892,215,0 +170762346939,215,0 +170762346987,215,0 +170762347035,216,0 +170762347083,216,0 +170762347131,217,0 +170762347179,217,0 +170762347227,217,0 +170762347275,218,0 +170762347322,218,0 +170762347372,219,0 +170762347420,219,0 +170762347467,219,0 +170762347515,219,0 +170762347563,219,0 +170762347611,219,0 +170762347659,218,0 +170762347707,214,0 +170762347755,214,0 +170762347802,214,0 +170762347850,214,0 +170762347898,215,0 +170762347946,215,0 +170762347994,215,0 +170762348042,216,0 +170762348090,216,0 +170762348137,217,0 +170762348185,217,0 +170762348233,218,0 +170762348281,218,0 +170762348329,219,0 +170762348377,219,0 +170762348425,219,0 +170762348473,219,0 +170762348522,219,0 +170762348570,215,0 +170762348618,214,0 +170762348666,214,0 +170762348714,214,0 +170762348762,215,0 +170762348810,215,0 +170762348857,215,0 +170762348905,215,0 +170762348955,216,0 +170762349003,216,0 +170762349052,217,0 +170762349100,217,0 +170762349150,218,0 +170762349199,218,0 +170762349247,219,0 +170762349295,220,0 +170762349343,219,0 +170762349391,219,0 +170762349439,215,0 +170762349486,214,0 +170762349534,214,0 +170762349582,214,0 +170762349632,215,0 +170762349681,215,0 +170762349729,215,0 +170762349779,218,0 +170762349827,216,0 +170762349875,216,0 +170762349922,217,0 +170762349970,217,0 +170762350018,218,0 +170762350066,218,0 +170762350114,218,0 +170762350164,219,0 +170762350212,218,0 +170762350260,219,0 +170762350307,215,0 +170762350357,214,0 +170762350405,214,0 +170762350454,214,0 +170762350502,215,0 +170762350550,215,0 +170762350598,216,0 +170762350647,216,0 +170762350695,216,0 +170762350745,216,0 +170762350794,217,0 +170762350844,217,0 +170762350892,217,0 +170762350940,218,0 +170762350989,218,0 +170762351037,218,0 +170762351085,218,0 +170762351133,218,0 +170762351181,215,0 +170762351229,214,0 +170762351276,214,0 +170762351326,215,0 +170762351374,215,0 +170762351422,216,0 +170762351471,216,0 +170762351519,216,0 +170762351567,217,0 +170762351616,217,0 +170762351666,218,0 +170762351714,219,0 +170762351762,219,0 +170762351810,219,0 +170762351859,220,0 +170762351907,220,0 +170762351955,219,0 +170762352005,219,0 +170762352054,215,0 +170762352102,214,0 +170762352151,215,0 +170762352199,215,0 +170762352247,216,0 +170762352295,216,0 +170762352344,216,0 +170762352392,217,0 +170762352440,217,0 +170762352488,218,0 +170762352536,218,0 +170762352584,219,0 +170762352631,219,0 +170762352679,219,0 +170762352727,219,0 +170762352775,219,0 +170762352823,219,0 +170762352872,219,0 +170762352920,215,0 +170762352970,214,0 +170762353018,215,0 +170762353066,215,0 +170762353113,215,0 +170762353161,216,0 +170762353209,216,0 +170762353257,216,0 +170762353305,217,0 +170762353355,217,0 +170762353403,218,0 +170762353450,218,0 +170762353498,218,0 +170762353548,218,0 +170762353598,219,0 +170762353647,218,0 +170762353695,219,0 +170762353743,219,0 +170762353791,215,0 +170762353840,214,0 +170762353890,215,0 +170762353938,215,0 +170762353987,215,0 +170762354035,215,0 +170762354083,216,0 +170762354131,216,0 +170762354181,216,0 +170762354228,217,0 +170762354276,220,0 +170762354326,219,0 +170762354375,218,0 +170762354425,219,0 +170762354473,219,0 +170762354521,219,0 +170762354570,220,0 +170762354620,219,0 +170762354669,215,0 +170762354717,214,0 +170762354765,215,0 +170762354815,215,0 +170762354863,215,0 +170762354910,216,0 +170762354958,216,0 +170762355008,217,0 +170762355056,217,0 +170762355105,217,0 +170762355153,218,0 +170762355203,218,0 +170762355252,218,0 +170762355300,219,0 +170762355350,219,0 +170762355400,219,0 +170762355448,219,0 +170762355497,219,0 +170762355545,214,0 +170762355593,214,0 +170762355641,214,0 +170762355690,214,0 +170762355738,215,0 +170762355786,215,0 +170762355834,216,0 +170762355882,216,0 +170762355932,216,0 +170762355980,217,0 +170762356029,218,0 +170762356077,218,0 +170762356125,218,0 +170762356173,218,0 +170762356223,219,0 +170762356272,219,0 +170762356321,219,0 +170762356369,215,0 +170762356417,213,0 +170762356465,214,0 +170762356515,214,0 +170762356564,214,0 +170762356612,214,0 +170762356660,214,0 +170762356708,215,0 +170762356758,215,0 +170762356806,216,0 +170762356855,216,0 +170762356905,217,0 +170762356953,217,0 +170762357001,218,0 +170762357049,218,0 +170762357098,218,0 +170762357146,218,0 +170762357194,218,0 +170762357242,215,0 +170762357290,214,0 +170762357339,214,0 +170762357387,214,0 +170762357437,215,0 +170762357486,215,0 +170762357534,215,0 +170762357582,216,0 +170762357631,216,0 +170762357679,217,0 +170762357729,217,0 +170762357778,218,0 +170762357826,219,0 +170762357876,219,0 +170762357924,219,0 +170762357972,219,0 +170762358021,219,0 +170762358069,219,0 +170762358117,214,0 +170762358165,214,0 +170762358215,214,0 +170762358263,214,0 +170762358312,215,0 +170762358362,215,0 +170762358411,216,0 +170762358459,216,0 +170762358509,217,0 +170762358558,217,0 +170762358606,218,0 +170762358654,218,0 +170762358702,218,0 +170762358750,218,0 +170762358798,218,0 +170762358846,218,0 +170762358896,219,0 +170762358944,219,0 +170762358992,214,0 +170762359041,214,0 +170762359089,214,0 +170762359138,214,0 +170762359186,215,0 +170762359236,215,0 +170762359283,216,0 +170762359331,216,0 +170762359379,216,0 +170762359427,217,0 +170762359475,218,0 +170762359523,218,0 +170762359571,218,0 +170762359618,219,0 +170762359666,219,0 +170762359714,219,0 +170762359762,219,0 +170762359811,215,0 +170762359859,214,0 +170762359907,215,0 +170762359955,215,0 +170762360003,215,0 +170762360051,215,0 +170762360100,215,0 +170762360148,216,0 +170762360196,216,0 +170762360246,216,0 +170762360295,219,0 +170762360343,217,0 +170762360391,218,0 +170762360441,219,0 +170762360488,219,0 +170762360538,218,0 +170762360586,218,0 +170762360634,219,0 +170762360682,215,0 +170762360730,214,0 +170762360779,215,0 +170762360827,215,0 +170762360875,215,0 +170762360923,216,0 +170762360971,216,0 +170762361019,216,0 +170762361067,217,0 +170762361114,217,0 +170762361162,218,0 +170762361210,218,0 +170762361258,218,0 +170762361306,219,0 +170762361354,218,0 +170762361401,219,0 +170762361449,219,0 +170762361499,219,0 +170762361546,215,0 +170762361594,214,0 +170762361644,215,0 +170762361692,215,0 +170762361740,216,0 +170762361788,216,0 +170762361836,217,0 +170762361884,217,0 +170762361933,217,0 +170762361981,218,0 +170762362029,218,0 +170762362077,219,0 +170762362124,218,0 +170762362172,219,0 +170762362220,219,0 +170762362269,219,0 +170762362317,219,0 +170762362365,218,0 +170762362413,215,0 +170762362462,215,0 +170762362510,215,0 +170762362560,216,0 +170762362608,216,0 +170762362655,217,0 +170762362703,217,0 +170762362753,218,0 +170762362801,218,0 +170762362850,219,0 +170762362898,219,0 +170762362946,219,0 +170762362993,219,0 +170762363041,219,0 +170762363089,219,0 +170762363137,219,0 +170762363185,218,0 +170762363233,215,0 +170762363283,214,0 +170762363332,215,0 +170762363380,215,0 +170762363428,216,0 +170762363476,216,0 +170762363524,216,0 +170762363573,217,0 +170762363623,218,0 +170762363671,218,0 +170762363719,219,0 +170762363767,218,0 +170762363816,219,0 +170762363864,219,0 +170762363912,219,0 +170762363961,220,0 +170762364009,220,0 +170762364057,219,0 +170762364107,214,0 +170762364156,213,0 +170762364204,214,0 +170762364254,214,0 +170762364302,215,0 +170762364351,216,0 +170762364399,217,0 +170762364447,216,0 +170762364495,216,0 +170762364545,217,0 +170762364593,218,0 +170762364642,218,0 +170762364690,218,0 +170762364739,218,0 +170762364787,218,0 +170762364835,219,0 +170762364883,219,0 +170762364933,219,0 +170762364982,214,0 +170762365030,214,0 +170762365080,214,0 +170762365128,215,0 +170762365177,215,0 +170762365227,215,0 +170762365274,216,0 +170762365322,216,0 +170762365372,217,0 +170762365420,217,0 +170762365469,217,0 +170762365517,218,0 +170762365565,218,0 +170762365614,218,0 +170762365664,218,0 +170762365712,218,0 +170762365761,218,0 +170762365809,214,0 +170762365857,214,0 +170762365905,214,0 +170762365953,215,0 +170762366003,215,0 +170762366051,215,0 +170762366100,216,0 +170762366148,216,0 +170762366198,217,0 +170762366247,216,0 +170762366297,217,0 +170762366344,218,0 +170762366394,219,0 +170762366442,219,0 +170762366490,220,0 +170762366539,219,0 +170762366587,219,0 +170762366636,215,0 +170762366686,214,0 +170762366734,215,0 +170762366782,215,0 +170762366830,216,0 +170762366878,215,0 +170762366926,216,0 +170762366974,216,0 +170762367022,216,0 +170762367070,217,0 +170762367119,217,0 +170762367169,218,0 +170762367218,218,0 +170762367266,218,0 +170762367314,218,0 +170762367362,220,0 +170762367410,219,0 +170762367458,219,0 +170762367506,215,0 +170762367555,215,0 +170762367605,216,0 +170762367653,216,0 +170762367701,216,0 +170762367748,216,0 +170762367796,216,0 +170762367844,217,0 +170762367894,217,0 +170762367943,218,0 +170762367991,218,0 +170762368039,218,0 +170762368087,220,0 +170762368137,219,0 +170762368184,220,0 +170762368234,219,0 +170762368282,217,0 +170762368332,216,0 +170762368381,215,0 +170762368431,216,0 +170762368479,217,0 +170762368527,217,0 +170762368574,217,0 +170762368622,217,0 +170762368670,218,0 +170762368720,218,0 +170762368769,219,0 +170762368817,220,0 +170762368865,219,0 +170762368915,220,0 +170762368964,219,0 +170762369012,220,0 +170762369062,219,0 +170762369110,219,0 +170762369158,219,0 +170762369207,214,0 +170762369255,214,0 +170762369303,215,0 +170762369351,216,0 +170762369400,216,0 +170762369448,217,0 +170762369498,217,0 +170762369546,217,0 +170762369594,218,0 +170762369642,219,0 +170762369690,219,0 +170762369739,220,0 +170762369787,219,0 +170762369835,219,0 +170762369883,219,0 +170762369931,219,0 +170762369979,218,0 +170762370027,215,0 +170762370076,214,0 +170762370124,214,0 +170762370172,214,0 +170762370222,214,0 +170762370270,214,0 +170762370319,215,0 +170762370367,216,0 +170762370415,216,0 +170762370463,217,0 +170762370511,217,0 +170762370560,217,0 +170762370608,218,0 +170762370656,218,0 +170762370704,219,0 +170762370754,218,0 +170762370803,219,0 +170762370851,218,0 +170762370901,214,0 +170762370949,214,0 +170762370996,214,0 +170762371046,215,0 +170762371094,215,0 +170762371142,216,0 +170762371191,216,0 +170762371239,216,0 +170762371287,217,0 +170762371335,217,0 +170762371383,218,0 +170762371431,218,0 +170762371479,218,0 +170762371528,219,0 +170762371576,219,0 +170762371624,219,0 +170762371674,219,0 +170762371722,215,0 +170762371770,214,0 +170762371818,214,0 +170762371866,214,0 +170762371914,215,0 +170762371962,215,0 +170762372009,216,0 +170762372057,216,0 +170762372105,216,0 +170762372153,217,0 +170762372203,217,0 +170762372251,218,0 +170762372300,218,0 +170762372350,218,0 +170762372397,218,0 +170762372445,220,0 +170762372495,219,0 +170762372543,215,0 +170762372591,214,0 +170762372639,214,0 +170762372687,215,0 +170762372735,216,0 +170762372784,215,0 +170762372834,216,0 +170762372882,216,0 +170762372930,217,0 +170762372978,217,0 +170762373027,217,0 +170762373077,217,0 +170762373125,218,0 +170762373172,219,0 +170762373222,219,0 +170762373270,218,0 +170762373318,218,0 +170762373366,219,0 +170762373414,215,0 +170762373463,214,0 +170762373511,215,0 +170762373561,215,0 +170762373610,215,0 +170762373660,216,0 +170762373708,217,0 +170762373756,217,0 +170762373804,217,0 +170762373852,218,0 +170762373900,219,0 +170762373947,219,0 +170762373995,219,0 +170762374043,220,0 +170762374093,219,0 +170762374142,219,0 +170762374190,219,0 +170762374240,214,0 +170762374289,215,0 +170762374337,215,0 +170762374385,217,0 +170762374435,216,0 +170762374483,217,0 +170762374531,217,0 +170762374579,217,0 +170762374626,218,0 +170762374676,218,0 +170762374726,218,0 +170762374774,219,0 +170762374823,220,0 +170762374871,219,0 +170762374919,219,0 +170762374967,219,0 +170762375015,219,0 +170762375064,215,0 +170762375114,215,0 +170762375162,215,0 +170762375211,216,0 +170762375261,216,0 +170762375309,216,0 +170762375357,217,0 +170762375405,218,0 +170762375454,218,0 +170762375502,219,0 +170762375550,219,0 +170762375598,219,0 +170762375646,219,0 +170762375694,219,0 +170762375742,219,0 +170762375790,220,0 +170762375838,219,0 +170762375886,215,0 +170762375934,215,0 +170762375982,215,0 +170762376029,216,0 +170762376077,216,0 +170762376125,217,0 +170762376175,217,0 +170762376223,218,0 +170762376271,218,0 +170762376320,219,0 +170762376368,219,0 +170762376416,219,0 +170762376464,219,0 +170762376512,219,0 +170762376560,219,0 +170762376608,219,0 +170762376657,219,0 +170762376705,215,0 +170762376753,214,0 +170762376801,215,0 +170762376851,215,0 +170762376900,216,0 +170762376948,216,0 +170762376998,216,0 +170762377046,217,0 +170762377094,217,0 +170762377142,218,0 +170762377190,218,0 +170762377238,219,0 +170762377286,219,0 +170762377334,219,0 +170762377381,219,0 +170762377429,219,0 +170762377477,219,0 +170762377527,216,0 +170762377575,215,0 +170762377623,216,0 +170762377671,217,0 +170762377718,217,0 +170762377769,217,0 +170762377817,218,0 +170762377866,218,0 +170762377914,219,0 +170762377963,219,0 +170762378011,219,0 +170762378059,219,0 +170762378107,219,0 +170762378155,220,0 +170762378205,219,0 +170762378254,219,0 +170762378302,219,0 +170762378350,217,0 +170762378398,217,0 +170762378448,217,0 +170762378497,218,0 +170762378545,217,0 +170762378595,218,0 +170762378643,218,0 +170762378692,219,0 +170762378740,219,0 +170762378788,219,0 +170762378836,219,0 +170762378884,220,0 +170762378932,220,0 +170762378981,219,0 +170762379031,219,0 +170762379079,220,0 +170762379127,215,0 +170762379174,215,0 +170762379224,216,0 +170762379272,216,0 +170762379320,217,0 +170762379368,217,0 +170762379416,217,0 +170762379465,219,0 +170762379513,219,0 +170762379561,219,0 +170762379609,218,0 +170762379658,219,0 +170762379706,219,0 +170762379754,219,0 +170762379804,219,0 +170762379852,219,0 +170762379901,218,0 +170762379951,214,0 +170762380000,214,0 +170762380050,214,0 +170762380098,215,0 +170762380146,216,0 +170762380195,216,0 +170762380243,216,0 +170762380293,217,0 +170762380341,217,0 +170762380390,218,0 +170762380438,218,0 +170762380486,219,0 +170762380536,219,0 +170762380584,219,0 +170762380632,219,0 +170762380680,219,0 +170762380727,219,0 +170762380775,214,0 +170762380823,214,0 +170762380871,215,0 +170762380919,215,0 +170762380967,215,0 +170762381014,216,0 +170762381062,216,0 +170762381110,217,0 +170762381158,217,0 +170762381207,218,0 +170762381255,217,0 +170762381305,218,0 +170762381352,218,0 +170762381400,218,0 +170762381448,218,0 +170762381497,219,0 +170762381545,215,0 +170762381595,215,0 +170762381642,215,0 +170762381692,215,0 +170762381740,216,0 +170762381788,216,0 +170762381835,216,0 +170762381885,216,0 +170762381934,217,0 +170762381982,218,0 +170762382030,218,0 +170762382080,219,0 +170762382127,219,0 +170762382175,218,0 +170762382225,219,0 +170762382273,219,0 +170762382321,219,0 +170762382369,216,0 +170762382417,215,0 +170762382464,216,0 +170762382512,217,0 +170762382560,216,0 +170762382608,217,0 +170762382656,218,0 +170762382705,219,0 +170762382753,219,0 +170762382803,219,0 +170762382851,219,0 +170762382899,219,0 +170762382947,219,0 +170762382995,220,0 +170762383042,220,0 +170762383090,219,0 +170762383138,219,0 +170762383186,216,0 +170762383234,216,0 +170762383284,217,0 +170762383333,217,0 +170762383383,218,0 +170762383432,219,0 +170762383480,219,0 +170762383530,219,0 +170762383579,219,0 +170762383629,219,0 +170762383678,220,0 +170762383726,220,0 +170762383774,219,0 +170762383822,220,0 +170762383872,220,0 +170762383921,219,0 +170762383969,216,0 +170762384019,216,0 +170762384067,216,0 +170762384115,216,0 +170762384163,217,0 +170762384211,217,0 +170762384259,218,0 +170762384307,218,0 +170762384355,218,0 +170762384403,219,0 +170762384450,219,0 +170762384498,219,0 +170762384546,219,0 +170762384596,219,0 +170762384645,219,0 +170762384693,219,0 +170762384741,219,0 +170762384789,215,0 +170762384837,215,0 +170762384885,215,0 +170762384933,216,0 +170762384981,216,0 +170762385029,216,0 +170762385076,217,0 +170762385126,218,0 +170762385174,217,0 +170762385222,218,0 +170762385270,219,0 +170762385319,218,0 +170762385367,219,0 +170762385415,219,0 +170762385463,219,0 +170762385512,219,0 +170762385560,219,0 +170762385609,215,0 +170762385659,215,0 +170762385708,216,0 +170762385758,217,0 +170762385806,217,0 +170762385854,217,0 +170762385902,218,0 +170762385950,219,0 +170762385999,218,0 +170762386048,219,0 +170762386096,219,0 +170762386144,219,0 +170762386192,220,0 +170762386240,219,0 +170762386288,219,0 +170762386337,218,0 +170762386385,216,0 +170762386433,216,0 +170762386482,216,0 +170762386532,217,0 +170762386580,217,0 +170762386629,217,0 +170762386677,217,0 +170762386725,218,0 +170762386773,218,0 +170762386821,218,0 +170762386869,218,0 +170762386917,219,0 +170762386965,219,0 +170762387014,219,0 +170762387062,219,0 +170762387110,219,0 +170762387158,219,0 +170762387206,216,0 +170762387253,216,0 +170762387301,216,0 +170762387349,217,0 +170762387397,217,0 +170762387445,218,0 +170762387492,219,0 +170762387540,218,0 +170762387588,219,0 +170762387636,221,0 +170762387684,220,0 +170762387733,220,0 +170762387781,220,0 +170762387829,220,0 +170762387879,219,0 +170762387927,219,0 +170762387976,217,0 +170762388024,215,0 +170762388072,215,0 +170762388120,216,0 +170762388168,217,0 +170762388216,217,0 +170762388264,218,0 +170762388311,219,0 +170762388359,218,0 +170762388407,219,0 +170762388457,218,0 +170762388505,219,0 +170762388554,219,0 +170762388604,219,0 +170762388653,220,0 +170762388703,219,0 +170762388751,219,0 +170762388799,215,0 +170762388847,214,0 +170762388894,215,0 +170762388942,215,0 +170762388992,215,0 +170762389041,216,0 +170762389089,216,0 +170762389137,217,0 +170762389187,217,0 +170762389235,217,0 +170762389283,218,0 +170762389331,219,0 +170762389380,219,0 +170762389428,219,0 +170762389476,219,0 +170762389525,219,0 +170762389573,218,0 +170762389623,214,0 +170762389672,214,0 +170762389722,215,0 +170762389770,215,0 +170762389818,216,0 +170762389866,216,0 +170762389915,217,0 +170762389964,217,0 +170762390014,218,0 +170762390063,218,0 +170762390113,219,0 +170762390161,219,0 +170762390209,218,0 +170762390257,218,0 +170762390306,218,0 +170762390354,218,0 +170762390402,215,0 +170762390452,214,0 +170762390501,215,0 +170762390549,215,0 +170762390598,216,0 +170762390646,217,0 +170762390694,217,0 +170762390743,218,0 +170762390791,218,0 +170762390839,218,0 +170762390887,219,0 +170762390936,219,0 +170762390984,219,0 +170762391032,219,0 +170762391080,220,0 +170762391128,219,0 +170762391176,218,0 +170762391223,215,0 +170762391271,215,0 +170762391319,215,0 +170762391367,216,0 +170762391415,216,0 +170762391463,216,0 +170762391510,217,0 +170762391558,217,0 +170762391606,218,0 +170762391654,218,0 +170762391701,218,0 +170762391751,218,0 +170762391799,219,0 +170762391846,219,0 +170762391894,219,0 +170762391942,219,0 +170762391990,218,0 +170762392038,214,0 +170762392086,214,0 +170762392133,214,0 +170762392181,215,0 +170762392229,215,0 +170762392277,216,0 +170762392325,216,0 +170762392375,217,0 +170762392424,217,0 +170762392472,217,0 +170762392520,217,0 +170762392568,217,0 +170762392616,219,0 +170762392664,218,0 +170762392712,219,0 +170762392760,219,0 +170762392807,219,0 +170762392855,214,0 +170762392903,215,0 +170762392951,215,0 +170762392999,216,0 +170762393048,216,0 +170762393096,217,0 +170762393144,217,0 +170762393192,217,0 +170762393240,218,0 +170762393288,218,0 +170762393336,218,0 +170762393385,218,0 +170762393433,219,0 +170762393481,220,0 +170762393529,219,0 +170762393577,219,0 +170762393625,215,0 +170762393672,215,0 +170762393722,215,0 +170762393770,216,0 +170762393818,217,0 +170762393865,217,0 +170762393913,218,0 +170762393961,217,0 +170762394009,218,0 +170762394058,218,0 +170762394106,219,0 +170762394156,218,0 +170762394205,219,0 +170762394255,219,0 +170762394303,219,0 +170762394351,219,0 +170762394400,218,0 +170762394448,215,0 +170762394498,216,0 +170762394547,216,0 +170762394595,217,0 +170762394645,217,0 +170762394692,217,0 +170762394740,218,0 +170762394788,218,0 +170762394836,219,0 +170762394884,219,0 +170762394934,219,0 +170762394983,219,0 +170762395031,220,0 +170762395081,220,0 +170762395129,220,0 +170762395177,219,0 +170762395224,218,0 +170762395274,216,0 +170762395322,217,0 +170762395370,217,0 +170762395418,218,0 +170762395467,218,0 +170762395515,218,0 +170762395563,219,0 +170762395611,219,0 +170762395659,219,0 +170762395707,220,0 +170762395755,220,0 +170762395805,220,0 +170762395852,220,0 +170762395902,220,0 +170762395950,219,0 +170762395999,219,0 +170762396049,218,0 +170762396098,218,0 +170762396146,218,0 +170762396194,219,0 +170762396242,218,0 +170762396290,219,0 +170762396338,219,0 +170762396386,219,0 +170762396435,220,0 +170762396483,219,0 +170762396531,220,0 +170762396581,220,0 +170762396629,220,0 +170762396677,220,0 +170762396724,220,0 +170762396772,220,0 +170762396820,219,0 +170762396868,218,0 +170762396917,218,0 +170762396965,218,0 +170762397013,219,0 +170762397063,219,0 +170762397111,220,0 +170762397159,219,0 +170762397208,219,0 +170762397256,220,0 +170762397304,219,0 +170762397352,220,0 +170762397400,220,0 +170762397449,220,0 +170762397497,219,0 +170762397547,220,0 +170762397595,219,0 +170762397644,216,0 +170762397694,217,0 +170762397742,218,0 +170762397789,218,0 +170762397837,217,0 +170762397885,218,0 +170762397933,219,0 +170762397982,219,0 +170762398030,219,0 +170762398078,219,0 +170762398126,219,0 +170762398174,221,0 +170762398222,219,0 +170762398270,220,0 +170762398318,222,0 +170762398366,219,0 +170762398416,219,0 +170762398465,217,0 +170762398515,217,0 +170762398563,217,0 +170762398612,217,0 +170762398662,218,0 +170762398711,218,0 +170762398761,219,0 +170762398809,219,0 +170762398857,219,0 +170762398905,219,0 +170762398953,220,0 +170762399002,220,0 +170762399050,219,0 +170762399098,218,0 +170762399146,219,0 +170762399195,219,0 +170762399243,216,0 +170762399291,217,0 +170762399339,216,0 +170762399387,217,0 +170762399436,217,0 +170762399486,217,0 +170762399535,218,0 +170762399583,218,0 +170762399631,219,0 +170762399681,219,0 +170762399729,219,0 +170762399778,220,0 +170762399826,219,0 +170762399874,219,0 +170762399922,220,0 +170762399971,218,0 +170762400019,218,0 diff --git a/laser_value/0211-14.csv b/laser_value/0211-14.csv new file mode 100644 index 0000000..dfe196c --- /dev/null +++ b/laser_value/0211-14.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170762400068,216,0 +170762400118,215,0 +170762400166,216,0 +170762400214,216,0 +170762400263,216,0 +170762400313,217,0 +170762400361,216,0 +170762400410,218,0 +170762400458,218,0 +170762400506,219,0 +170762400554,219,0 +170762400602,219,0 +170762400650,220,0 +170762400699,219,0 +170762400747,218,0 +170762400795,219,0 +170762400843,218,0 +170762400892,214,0 +170762400942,214,0 +170762400991,214,0 +170762401039,215,0 +170762401087,216,0 +170762401135,216,0 +170762401183,217,0 +170762401231,217,0 +170762401281,220,0 +170762401330,217,0 +170762401380,218,0 +170762401429,218,0 +170762401477,218,0 +170762401527,219,0 +170762401576,219,0 +170762401626,219,0 +170762401674,215,0 +170762401722,214,0 +170762401770,215,0 +170762401818,215,0 +170762401866,216,0 +170762401914,216,0 +170762401962,216,0 +170762402010,217,0 +170762402057,217,0 +170762402107,218,0 +170762402155,218,0 +170762402204,219,0 +170762402252,219,0 +170762402300,219,0 +170762402350,219,0 +170762402398,218,0 +170762402446,218,0 +170762402495,216,0 +170762402543,216,0 +170762402592,217,0 +170762402640,217,0 +170762402688,218,0 +170762402738,219,0 +170762402787,218,0 +170762402835,219,0 +170762402885,218,0 +170762402933,219,0 +170762402980,219,0 +170762403030,219,0 +170762403079,220,0 +170762403127,220,0 +170762403175,219,0 +170762403223,220,0 +170762403271,218,0 +170762403318,217,0 +170762403368,217,0 +170762403417,217,0 +170762403467,218,0 +170762403515,219,0 +170762403563,219,0 +170762403611,219,0 +170762403659,219,0 +170762403708,219,0 +170762403756,219,0 +170762403804,219,0 +170762403852,219,0 +170762403901,220,0 +170762403949,220,0 +170762403997,219,0 +170762404045,219,0 +170762404095,215,0 +170762404144,215,0 +170762404192,215,0 +170762404240,216,0 +170762404288,216,0 +170762404335,216,0 +170762404383,217,0 +170762404431,216,0 +170762404479,217,0 +170762404528,217,0 +170762404576,218,0 +170762404624,218,0 +170762404672,219,0 +170762404720,219,0 +170762404768,218,0 +170762404818,219,0 +170762404866,219,0 +170762404914,215,0 +170762404961,215,0 +170762405011,216,0 +170762405059,216,0 +170762405107,216,0 +170762405155,217,0 +170762405204,217,0 +170762405252,217,0 +170762405300,218,0 +170762405348,218,0 +170762405396,219,0 +170762405444,219,0 +170762405492,220,0 +170762405539,219,0 +170762405587,220,0 +170762405635,219,0 +170762405683,215,0 +170762405731,215,0 +170762405780,215,0 +170762405830,216,0 +170762405879,216,0 +170762405929,216,0 +170762405977,217,0 +170762406025,217,0 +170762406073,217,0 +170762406122,218,0 +170762406170,218,0 +170762406220,218,0 +170762406267,218,0 +170762406315,219,0 +170762406365,220,0 +170762406414,220,0 +170762406462,219,0 +170762406510,215,0 +170762406558,215,0 +170762406606,216,0 +170762406654,217,0 +170762406702,216,0 +170762406750,216,0 +170762406798,217,0 +170762406848,218,0 +170762406897,218,0 +170762406946,219,0 +170762406994,218,0 +170762407042,219,0 +170762407092,219,0 +170762407141,219,0 +170762407189,219,0 +170762407239,222,0 +170762407287,218,0 +170762407335,216,0 +170762407384,217,0 +170762407434,217,0 +170762407483,217,0 +170762407531,218,0 +170762407579,219,0 +170762407627,219,0 +170762407675,219,0 +170762407724,221,0 +170762407772,220,0 +170762407822,220,0 +170762407871,220,0 +170762407921,220,0 +170762407969,219,0 +170762408018,219,0 +170762408066,219,0 +170762408115,217,0 +170762408163,217,0 +170762408213,218,0 +170762408262,218,0 +170762408310,218,0 +170762408360,219,0 +170762408408,219,0 +170762408456,220,0 +170762408504,220,0 +170762408552,220,0 +170762408601,220,0 +170762408649,220,0 +170762408698,220,0 +170762408746,219,0 +170762408794,220,0 +170762408842,219,0 +170762408892,218,0 +170762408940,217,0 +170762408987,217,0 +170762409035,217,0 +170762409085,218,0 +170762409134,218,0 +170762409182,218,0 +170762409230,218,0 +170762409280,219,0 +170762409328,219,0 +170762409375,219,0 +170762409423,219,0 +170762409473,219,0 +170762409522,220,0 +170762409572,219,0 +170762409619,219,0 +170762409669,219,0 +170762409718,217,0 +170762409766,215,0 +170762409814,216,0 +170762409864,216,0 +170762409912,217,0 +170762409959,217,0 +170762410007,217,0 +170762410055,218,0 +170762410103,219,0 +170762410151,219,0 +170762410201,219,0 +170762410249,219,0 +170762410297,219,0 +170762410345,219,0 +170762410394,219,0 +170762410444,218,0 +170762410492,218,0 +170762410541,215,0 +170762410591,215,0 +170762410638,216,0 +170762410686,216,0 +170762410736,217,0 +170762410784,218,0 +170762410832,218,0 +170762410881,218,0 +170762410931,218,0 +170762410978,219,0 +170762411026,219,0 +170762411074,219,0 +170762411122,220,0 +170762411170,219,0 +170762411220,219,0 +170762411268,219,0 +170762411317,216,0 +170762411365,216,0 +170762411413,216,0 +170762411462,217,0 +170762411510,217,0 +170762411558,217,0 +170762411608,218,0 +170762411656,218,0 +170762411703,219,0 +170762411751,218,0 +170762411799,219,0 +170762411847,219,0 +170762411895,220,0 +170762411943,219,0 +170762411992,219,0 +170762412042,219,0 +170762412090,219,0 +170762412139,216,0 +170762412187,216,0 +170762412237,216,0 +170762412284,217,0 +170762412332,217,0 +170762412380,218,0 +170762412430,218,0 +170762412478,219,0 +170762412526,219,0 +170762412574,219,0 +170762412622,220,0 +170762412669,219,0 +170762412717,219,0 +170762412767,219,0 +170762412815,219,0 +170762412864,219,0 +170762412914,219,0 +170762412963,215,0 +170762413011,216,0 +170762413059,217,0 +170762413107,216,0 +170762413155,217,0 +170762413205,218,0 +170762413253,219,0 +170762413301,219,0 +170762413349,220,0 +170762413398,220,0 +170762413446,222,0 +170762413496,219,0 +170762413544,220,0 +170762413593,220,0 +170762413641,220,0 +170762413690,219,0 +170762413738,216,0 +170762413786,216,0 +170762413836,216,0 +170762413885,217,0 +170762413933,217,0 +170762413982,218,0 +170762414030,217,0 +170762414078,217,0 +170762414126,218,0 +170762414174,219,0 +170762414224,219,0 +170762414272,219,0 +170762414320,219,0 +170762414368,219,0 +170762414416,219,0 +170762414465,219,0 +170762414515,218,0 +170762414564,216,0 +170762414613,216,0 +170762414663,216,0 +170762414711,217,0 +170762414759,217,0 +170762414807,218,0 +170762414856,218,0 +170762414906,219,0 +170762414955,219,0 +170762415003,219,0 +170762415051,220,0 +170762415100,220,0 +170762415148,218,0 +170762415196,220,0 +170762415246,219,0 +170762415295,219,0 +170762415345,215,0 +170762415392,216,0 +170762415442,216,0 +170762415491,217,0 +170762415539,217,0 +170762415587,217,0 +170762415637,218,0 +170762415685,218,0 +170762415732,219,0 +170762415780,219,0 +170762415828,219,0 +170762415876,219,0 +170762415924,220,0 +170762415972,219,0 +170762416020,219,0 +170762416068,219,0 +170762416117,219,0 +170762416165,215,0 +170762416215,216,0 +170762416264,216,0 +170762416314,216,0 +170762416362,217,0 +170762416411,217,0 +170762416459,217,0 +170762416507,218,0 +170762416555,218,0 +170762416603,217,0 +170762416652,218,0 +170762416700,218,0 +170762416748,218,0 +170762416796,218,0 +170762416844,219,0 +170762416893,219,0 +170762416941,216,0 +170762416989,216,0 +170762417039,216,0 +170762417087,217,0 +170762417136,218,0 +170762417186,218,0 +170762417234,217,0 +170762417282,218,0 +170762417331,218,0 +170762417379,219,0 +170762417427,219,0 +170762417475,219,0 +170762417524,219,0 +170762417572,220,0 +170762417622,220,0 +170762417671,219,0 +170762417719,219,0 +170762417768,216,0 +170762417816,216,0 +170762417864,217,0 +170762417912,217,0 +170762417960,218,0 +170762418007,218,0 +170762418057,218,0 +170762418105,218,0 +170762418153,219,0 +170762418200,219,0 +170762418250,219,0 +170762418298,220,0 +170762418346,218,0 +170762418394,219,0 +170762418441,219,0 +170762418489,219,0 +170762418537,218,0 +170762418585,216,0 +170762418633,217,0 +170762418680,217,0 +170762418728,217,0 +170762418776,218,0 +170762418824,218,0 +170762418872,222,0 +170762418920,218,0 +170762418968,219,0 +170762419015,219,0 +170762419063,219,0 +170762419111,219,0 +170762419159,219,0 +170762419208,219,0 +170762419256,219,0 +170762419304,218,0 +170762419352,218,0 +170762419399,216,0 +170762419447,216,0 +170762419495,217,0 +170762419544,217,0 +170762419592,218,0 +170762419640,218,0 +170762419688,218,0 +170762419736,219,0 +170762419784,219,0 +170762419832,220,0 +170762419879,220,0 +170762419927,219,0 +170762419975,219,0 +170762420023,219,0 +170762420071,218,0 +170762420119,219,0 +170762420168,216,0 +170762420216,217,0 +170762420264,216,0 +170762420312,217,0 +170762420360,218,0 +170762420407,218,0 +170762420455,218,0 +170762420505,219,0 +170762420553,219,0 +170762420600,219,0 +170762420650,219,0 +170762420698,219,0 +170762420746,220,0 +170762420793,219,0 +170762420841,220,0 +170762420889,219,0 +170762420937,219,0 +170762420986,215,0 +170762421036,215,0 +170762421085,215,0 +170762421133,216,0 +170762421181,216,0 +170762421229,216,0 +170762421278,217,0 +170762421326,219,0 +170762421374,217,0 +170762421423,218,0 +170762421473,220,0 +170762421522,218,0 +170762421572,219,0 +170762421621,220,0 +170762421671,219,0 +170762421719,220,0 +170762421767,217,0 +170762421816,214,0 +170762421864,214,0 +170762421914,215,0 +170762421962,215,0 +170762422010,215,0 +170762422059,215,0 +170762422107,216,0 +170762422155,217,0 +170762422203,218,0 +170762422251,218,0 +170762422299,218,0 +170762422347,219,0 +170762422395,219,0 +170762422444,218,0 +170762422492,219,0 +170762422540,219,0 +170762422588,215,0 +170762422636,215,0 +170762422686,215,0 +170762422734,216,0 +170762422782,216,0 +170762422830,216,0 +170762422877,220,0 +170762422925,217,0 +170762422973,217,0 +170762423023,218,0 +170762423072,218,0 +170762423120,218,0 +170762423170,220,0 +170762423219,218,0 +170762423268,219,0 +170762423318,219,0 +170762423367,218,0 +170762423415,214,0 +170762423463,215,0 +170762423511,215,0 +170762423559,215,0 +170762423607,215,0 +170762423655,216,0 +170762423705,216,0 +170762423753,216,0 +170762423801,217,0 +170762423850,217,0 +170762423900,218,0 +170762423949,218,0 +170762423999,218,0 +170762424047,219,0 +170762424094,219,0 +170762424142,219,0 +170762424192,217,0 +170762424240,215,0 +170762424288,215,0 +170762424337,216,0 +170762424385,216,0 +170762424435,216,0 +170762424484,216,0 +170762424532,217,0 +170762424580,217,0 +170762424630,218,0 +170762424678,218,0 +170762424727,219,0 +170762424775,218,0 +170762424825,219,0 +170762424872,219,0 +170762424920,219,0 +170762424968,218,0 +170762425016,215,0 +170762425064,215,0 +170762425112,215,0 +170762425160,216,0 +170762425210,216,0 +170762425257,217,0 +170762425305,217,0 +170762425355,217,0 +170762425403,217,0 +170762425451,218,0 +170762425499,218,0 +170762425546,218,0 +170762425596,219,0 +170762425644,219,0 +170762425692,219,0 +170762425741,219,0 +170762425789,218,0 +170762425837,215,0 +170762425885,215,0 +170762425934,216,0 +170762425982,216,0 +170762426030,216,0 +170762426080,216,0 +170762426127,217,0 +170762426175,217,0 +170762426223,218,0 +170762426271,218,0 +170762426319,218,0 +170762426367,219,0 +170762426415,219,0 +170762426465,219,0 +170762426513,219,0 +170762426562,220,0 +170762426612,216,0 +170762426661,216,0 +170762426711,217,0 +170762426760,217,0 +170762426808,217,0 +170762426857,218,0 +170762426907,218,0 +170762426955,218,0 +170762427003,218,0 +170762427052,219,0 +170762427100,219,0 +170762427148,219,0 +170762427197,219,0 +170762427247,219,0 +170762427297,219,0 +170762427346,219,0 +170762427394,218,0 +170762427442,217,0 +170762427491,218,0 +170762427539,218,0 +170762427589,218,0 +170762427637,219,0 +170762427686,218,0 +170762427734,220,0 +170762427782,219,0 +170762427832,219,0 +170762427881,220,0 +170762427931,220,0 +170762427978,220,0 +170762428028,220,0 +170762428078,220,0 +170762428127,219,0 +170762428175,220,0 +170762428223,219,0 +170762428271,219,0 +170762428319,219,0 +170762428368,219,0 +170762428416,219,0 +170762428464,220,0 +170762428512,221,0 +170762428560,220,0 +170762428608,220,0 +170762428658,220,0 +170762428705,220,0 +170762428753,220,0 +170762428801,219,0 +170762428851,220,0 +170762428899,219,0 +170762428948,219,0 +170762428996,219,0 +170762429044,218,0 +170762429092,218,0 +170762429140,218,0 +170762429188,218,0 +170762429238,218,0 +170762429286,218,0 +170762429334,219,0 +170762429383,219,0 +170762429432,219,0 +170762429480,219,0 +170762429528,219,0 +170762429576,220,0 +170762429624,219,0 +170762429672,219,0 +170762429720,219,0 +170762429768,219,0 +170762429816,218,0 +170762429864,216,0 +170762429912,217,0 +170762429960,217,0 +170762430008,217,0 +170762430056,217,0 +170762430105,218,0 +170762430155,218,0 +170762430203,219,0 +170762430250,219,0 +170762430298,219,0 +170762430348,218,0 +170762430396,219,0 +170762430444,219,0 +170762430492,219,0 +170762430541,219,0 +170762430589,219,0 +170762430637,216,0 +170762430685,215,0 +170762430733,216,0 +170762430781,216,0 +170762430829,217,0 +170762430878,218,0 +170762430926,218,0 +170762430974,218,0 +170762431024,218,0 +170762431072,219,0 +170762431120,219,0 +170762431169,219,0 +170762431219,219,0 +170762431266,220,0 +170762431316,219,0 +170762431364,219,0 +170762431412,218,0 +170762431460,216,0 +170762431507,216,0 +170762431555,217,0 +170762431603,217,0 +170762431653,217,0 +170762431702,217,0 +170762431750,219,0 +170762431799,219,0 +170762431847,219,0 +170762431895,218,0 +170762431945,220,0 +170762431993,220,0 +170762432042,219,0 +170762432090,219,0 +170762432138,219,0 +170762432186,218,0 +170762432234,216,0 +170762432283,216,0 +170762432333,216,0 +170762432381,217,0 +170762432429,217,0 +170762432478,218,0 +170762432526,218,0 +170762432574,219,0 +170762432622,219,0 +170762432671,219,0 +170762432719,220,0 +170762432767,220,0 +170762432815,220,0 +170762432863,219,0 +170762432912,221,0 +170762432962,219,0 +170762433011,218,0 +170762433059,217,0 +170762433107,216,0 +170762433157,216,0 +170762433206,217,0 +170762433255,217,0 +170762433303,217,0 +170762433351,218,0 +170762433401,218,0 +170762433449,218,0 +170762433498,219,0 +170762433548,219,0 +170762433597,219,0 +170762433645,219,0 +170762433693,220,0 +170762433741,219,0 +170762433789,218,0 +170762433837,218,0 +170762433885,215,0 +170762433933,215,0 +170762433981,215,0 +170762434030,216,0 +170762434079,216,0 +170762434127,216,0 +170762434175,217,0 +170762434223,218,0 +170762434271,217,0 +170762434319,218,0 +170762434367,218,0 +170762434415,218,0 +170762434463,219,0 +170762434511,218,0 +170762434559,219,0 +170762434607,219,0 +170762434656,215,0 +170762434706,215,0 +170762434755,215,0 +170762434805,216,0 +170762434853,216,0 +170762434901,216,0 +170762434949,217,0 +170762434996,217,0 +170762435044,217,0 +170762435092,218,0 +170762435140,218,0 +170762435189,219,0 +170762435237,218,0 +170762435285,218,0 +170762435333,218,0 +170762435381,219,0 +170762435428,218,0 +170762435476,215,0 +170762435526,215,0 +170762435574,215,0 +170762435621,216,0 +170762435669,216,0 +170762435717,216,0 +170762435765,216,0 +170762435814,217,0 +170762435862,217,0 +170762435910,218,0 +170762435958,218,0 +170762436007,218,0 +170762436057,218,0 +170762436105,219,0 +170762436152,219,0 +170762436200,218,0 +170762436248,218,0 +170762436296,214,0 +170762436344,214,0 +170762436392,214,0 +170762436440,215,0 +170762436487,215,0 +170762436535,215,0 +170762436583,216,0 +170762436631,216,0 +170762436679,216,0 +170762436727,218,0 +170762436776,218,0 +170762436824,218,0 +170762436872,218,0 +170762436920,218,0 +170762436968,219,0 +170762437016,219,0 +170762437063,215,0 +170762437111,215,0 +170762437159,215,0 +170762437207,216,0 +170762437255,217,0 +170762437303,217,0 +170762437351,220,0 +170762437398,218,0 +170762437446,218,0 +170762437494,219,0 +170762437542,218,0 +170762437590,219,0 +170762437638,218,0 +170762437685,219,0 +170762437733,220,0 +170762437783,219,0 +170762437831,218,0 +170762437878,216,0 +170762437926,216,0 +170762437976,216,0 +170762438024,216,0 +170762438071,217,0 +170762438119,218,0 +170762438167,218,0 +170762438215,219,0 +170762438263,220,0 +170762438311,220,0 +170762438359,220,0 +170762438407,221,0 +170762438455,219,0 +170762438503,220,0 +170762438551,219,0 +170762438599,219,0 +170762438647,218,0 +170762438695,215,0 +170762438744,216,0 +170762438794,216,0 +170762438841,217,0 +170762438889,217,0 +170762438937,218,0 +170762438985,218,0 +170762439033,218,0 +170762439081,218,0 +170762439129,219,0 +170762439178,219,0 +170762439226,219,0 +170762439276,220,0 +170762439325,219,0 +170762439373,219,0 +170762439421,219,0 +170762439469,217,0 +170762439517,217,0 +170762439565,217,0 +170762439613,217,0 +170762439661,217,0 +170762439709,218,0 +170762439758,218,0 +170762439808,220,0 +170762439857,219,0 +170762439905,219,0 +170762439953,219,0 +170762440001,219,0 +170762440049,219,0 +170762440097,219,0 +170762440147,219,0 +170762440195,220,0 +170762440244,219,0 +170762440292,216,0 +170762440342,217,0 +170762440391,217,0 +170762440439,217,0 +170762440487,217,0 +170762440535,218,0 +170762440584,219,0 +170762440632,218,0 +170762440680,219,0 +170762440730,219,0 +170762440779,219,0 +170762440827,219,0 +170762440877,219,0 +170762440925,219,0 +170762440973,219,0 +170762441022,219,0 +170762441072,218,0 +170762441120,215,0 +170762441169,216,0 +170762441217,216,0 +170762441265,217,0 +170762441313,216,0 +170762441361,217,0 +170762441409,217,0 +170762441457,218,0 +170762441506,218,0 +170762441554,218,0 +170762441604,219,0 +170762441652,219,0 +170762441700,219,0 +170762441749,219,0 +170762441797,219,0 +170762441847,218,0 +170762441895,215,0 +170762441942,215,0 +170762441990,215,0 +170762442038,216,0 +170762442086,216,0 +170762442134,217,0 +170762442182,217,0 +170762442232,217,0 +170762442280,218,0 +170762442328,218,0 +170762442376,218,0 +170762442425,219,0 +170762442475,220,0 +170762442523,220,0 +170762442572,219,0 +170762442620,220,0 +170762442668,218,0 +170762442717,215,0 +170762442767,215,0 +170762442815,216,0 +170762442864,216,0 +170762442914,217,0 +170762442962,217,0 +170762443011,217,0 +170762443059,218,0 +170762443107,218,0 +170762443157,218,0 +170762443205,219,0 +170762443253,218,0 +170762443301,218,0 +170762443349,218,0 +170762443397,219,0 +170762443445,219,0 +170762443494,216,0 +170762443544,216,0 +170762443593,216,0 +170762443641,217,0 +170762443689,217,0 +170762443739,217,0 +170762443787,218,0 +170762443836,218,0 +170762443884,218,0 +170762443932,219,0 +170762443980,219,0 +170762444028,219,0 +170762444076,219,0 +170762444125,219,0 +170762444173,219,0 +170762444221,219,0 +170762444269,218,0 +170762444317,219,0 +170762444367,217,0 +170762444414,218,0 +170762444462,219,0 +170762444510,220,0 +170762444560,220,0 +170762444608,219,0 +170762444657,220,0 +170762444707,220,0 +170762444755,220,0 +170762444803,219,0 +170762444851,219,0 +170762444899,219,0 +170762444946,219,0 +170762444996,219,0 +170762445045,219,0 +170762445095,218,0 +170762445145,218,0 +170762445193,218,0 +170762445242,218,0 +170762445290,218,0 +170762445338,219,0 +170762445387,219,0 +170762445435,219,0 +170762445484,220,0 +170762445534,220,0 +170762445583,220,0 +170762445631,220,0 +170762445681,219,0 +170762445728,220,0 +170762445778,220,0 +170762445826,219,0 +170762445873,219,0 +170762445921,217,0 +170762445969,216,0 +170762446017,217,0 +170762446065,217,0 +170762446115,218,0 +170762446163,218,0 +170762446210,218,0 +170762446260,218,0 +170762446308,218,0 +170762446356,218,0 +170762446404,219,0 +170762446451,219,0 +170762446499,220,0 +170762446547,219,0 +170762446597,219,0 +170762446646,219,0 +170762446694,218,0 +170762446742,216,0 +170762446790,216,0 +170762446838,217,0 +170762446887,216,0 +170762446935,217,0 +170762446983,218,0 +170762447031,218,0 +170762447079,219,0 +170762447127,219,0 +170762447176,219,0 +170762447224,219,0 +170762447272,219,0 +170762447320,219,0 +170762447368,219,0 +170762447418,219,0 +170762447467,219,0 +170762447517,216,0 +170762447565,215,0 +170762447613,216,0 +170762447660,216,0 +170762447710,217,0 +170762447758,217,0 +170762447806,218,0 +170762447854,218,0 +170762447903,219,0 +170762447951,219,0 +170762447999,219,0 +170762448047,221,0 +170762448096,219,0 +170762448146,218,0 +170762448195,219,0 +170762448245,219,0 +170762448294,219,0 +170762448342,215,0 +170762448390,216,0 +170762448438,216,0 +170762448486,217,0 +170762448534,217,0 +170762448581,217,0 +170762448631,218,0 +170762448679,219,0 +170762448727,218,0 +170762448775,219,0 +170762448823,219,0 +170762448872,220,0 +170762448920,219,0 +170762448970,219,0 +170762449017,219,0 +170762449067,219,0 +170762449117,218,0 +170762449164,214,0 +170762449212,214,0 +170762449262,215,0 +170762449311,215,0 +170762449361,216,0 +170762449411,216,0 +170762449458,217,0 +170762449508,218,0 +170762449556,217,0 +170762449604,218,0 +170762449652,218,0 +170762449700,219,0 +170762449748,218,0 +170762449797,219,0 +170762449845,219,0 +170762449893,218,0 +170762449941,214,0 +170762449989,214,0 +170762450037,214,0 +170762450085,214,0 +170762450134,214,0 +170762450182,215,0 +170762450232,215,0 +170762450280,215,0 +170762450328,216,0 +170762450376,217,0 +170762450425,217,0 +170762450473,218,0 +170762450521,218,0 +170762450570,217,0 +170762450620,218,0 +170762450668,218,0 +170762450717,217,0 +170762450765,214,0 +170762450815,215,0 +170762450863,215,0 +170762450911,216,0 +170762450958,216,0 +170762451007,216,0 +170762451054,217,0 +170762451102,217,0 +170762451150,217,0 +170762451200,218,0 +170762451249,218,0 +170762451297,219,0 +170762451345,219,0 +170762451393,219,0 +170762451441,219,0 +170762451491,219,0 +170762451539,215,0 +170762451587,215,0 +170762451636,216,0 +170762451685,216,0 +170762451735,217,0 +170762451783,217,0 +170762451832,217,0 +170762451880,218,0 +170762451930,218,0 +170762451979,219,0 +170762452029,219,0 +170762452079,219,0 +170762452128,220,0 +170762452178,219,0 +170762452227,219,0 +170762452275,219,0 +170762452323,218,0 +170762452371,216,0 +170762452421,216,0 +170762452468,217,0 +170762452516,217,0 +170762452564,217,0 +170762452614,218,0 +170762452663,218,0 +170762452711,218,0 +170762452759,219,0 +170762452807,220,0 +170762452857,219,0 +170762452906,219,0 +170762452956,219,0 +170762453005,220,0 +170762453055,219,0 +170762453103,219,0 +170762453152,216,0 +170762453200,215,0 +170762453250,215,0 +170762453300,216,0 +170762453347,216,0 +170762453395,217,0 +170762453443,217,0 +170762453491,217,0 +170762453539,217,0 +170762453587,218,0 +170762453635,218,0 +170762453683,219,0 +170762453733,219,0 +170762453781,220,0 +170762453829,219,0 +170762453877,219,0 +170762453926,218,0 +170762453975,214,0 +170762454025,215,0 +170762454073,216,0 +170762454121,217,0 +170762454169,216,0 +170762454217,217,0 +170762454264,217,0 +170762454312,217,0 +170762454360,218,0 +170762454408,218,0 +170762454456,219,0 +170762454504,218,0 +170762454553,218,0 +170762454601,219,0 +170762454650,218,0 +170762454698,218,0 +170762454748,216,0 +170762454795,214,0 +170762454843,216,0 +170762454891,215,0 +170762454939,215,0 +170762454987,216,0 +170762455035,216,0 +170762455082,216,0 +170762455130,217,0 +170762455178,217,0 +170762455226,218,0 +170762455274,218,0 +170762455322,218,0 +170762455370,218,0 +170762455417,218,0 +170762455465,218,0 +170762455513,218,0 +170762455561,215,0 +170762455609,215,0 +170762455657,215,0 +170762455704,216,0 +170762455754,216,0 +170762455802,216,0 +170762455850,216,0 +170762455898,217,0 +170762455946,218,0 +170762455993,218,0 +170762456041,218,0 +170762456089,220,0 +170762456137,219,0 +170762456185,220,0 +170762456233,220,0 +170762456281,219,0 +170762456329,218,0 +170762456377,216,0 +170762456424,218,0 +170762456472,217,0 +170762456520,218,0 +170762456568,218,0 +170762456618,217,0 +170762456665,218,0 +170762456713,218,0 +170762456761,219,0 +170762456809,219,0 +170762456858,220,0 +170762456906,221,0 +170762456954,220,0 +170762457002,219,0 +170762457050,220,0 +170762457098,219,0 +170762457147,218,0 +170762457195,218,0 +170762457243,219,0 +170762457291,219,0 +170762457338,219,0 +170762457386,219,0 +170762457436,219,0 +170762457484,219,0 +170762457532,220,0 +170762457579,220,0 +170762457627,220,0 +170762457675,220,0 +170762457724,221,0 +170762457774,220,0 +170762457822,221,0 +170762457871,219,0 +170762457921,218,0 +170762457970,218,0 +170762458018,218,0 +170762458066,218,0 +170762458114,218,0 +170762458162,218,0 +170762458210,219,0 +170762458258,219,0 +170762458305,219,0 +170762458353,219,0 +170762458401,219,0 +170762458449,220,0 +170762458497,219,0 +170762458544,219,0 +170762458594,219,0 +170762458642,219,0 +170762458690,219,0 +170762458738,219,0 +170762458787,216,0 +170762458836,217,0 +170762458884,217,0 +170762458932,217,0 +170762458980,217,0 +170762459028,217,0 +170762459076,218,0 +170762459125,219,0 +170762459175,219,0 +170762459223,219,0 +170762459271,219,0 +170762459318,221,0 +170762459366,220,0 +170762459416,219,0 +170762459464,220,0 +170762459513,219,0 +170762459561,216,0 +170762459609,217,0 +170762459657,217,0 +170762459705,218,0 +170762459755,217,0 +170762459803,218,0 +170762459850,218,0 +170762459898,219,0 +170762459946,218,0 +170762459994,218,0 +170762460042,220,0 +170762460091,220,0 +170762460141,219,0 +170762460189,220,0 +170762460238,219,0 +170762460288,219,0 +170762460337,218,0 +170762460385,215,0 +170762460435,216,0 +170762460483,216,0 +170762460530,217,0 +170762460578,217,0 +170762460626,218,0 +170762460674,217,0 +170762460724,219,0 +170762460773,218,0 +170762460821,219,0 +170762460869,219,0 +170762460918,219,0 +170762460966,219,0 +170762461014,219,0 +170762461062,219,0 +170762461110,219,0 +170762461158,218,0 +170762461206,215,0 +170762461254,215,0 +170762461303,215,0 +170762461353,216,0 +170762461402,216,0 +170762461450,217,0 +170762461498,217,0 +170762461546,218,0 +170762461595,218,0 +170762461643,219,0 +170762461691,219,0 +170762461739,220,0 +170762461787,220,0 +170762461834,222,0 +170762461884,219,0 +170762461933,218,0 +170762461981,215,0 +170762462029,215,0 +170762462077,215,0 +170762462126,215,0 +170762462174,216,0 +170762462224,217,0 +170762462272,216,0 +170762462320,216,0 +170762462368,218,0 +170762462415,216,0 +170762462463,219,0 +170762462511,219,0 +170762462561,219,0 +170762462609,220,0 +170762462658,221,0 +170762462706,220,0 +170762462754,218,0 +170762462802,215,0 +170762462850,215,0 +170762462898,216,0 +170762462946,216,0 +170762462995,216,0 +170762463045,217,0 +170762463094,217,0 +170762463144,217,0 +170762463192,217,0 +170762463240,218,0 +170762463288,218,0 +170762463336,219,0 +170762463385,219,0 +170762463433,219,0 +170762463483,219,0 +170762463530,218,0 +170762463578,216,0 +170762463626,215,0 +170762463674,216,0 +170762463724,216,0 +170762463773,217,0 +170762463821,217,0 +170762463871,218,0 +170762463919,218,0 +170762463968,218,0 +170762464016,218,0 +170762464066,219,0 +170762464114,219,0 +170762464163,219,0 +170762464211,219,0 +170762464259,219,0 +170762464308,219,0 +170762464356,218,0 +170762464404,217,0 +170762464452,217,0 +170762464500,217,0 +170762464547,218,0 +170762464597,218,0 +170762464645,219,0 +170762464692,220,0 +170762464740,219,0 +170762464788,219,0 +170762464836,219,0 +170762464885,223,0 +170762464933,219,0 +170762464981,219,0 +170762465029,219,0 +170762465078,219,0 +170762465128,219,0 +170762465176,218,0 +170762465223,217,0 +170762465271,217,0 +170762465319,217,0 +170762465367,217,0 +170762465415,217,0 +170762465463,218,0 +170762465511,218,0 +170762465558,218,0 +170762465606,219,0 +170762465654,219,0 +170762465702,219,0 +170762465750,220,0 +170762465798,219,0 +170762465846,219,0 +170762465893,219,0 +170762465943,218,0 +170762465991,215,0 +170762466040,216,0 +170762466088,215,0 +170762466138,216,0 +170762466186,216,0 +170762466235,217,0 +170762466283,217,0 +170762466332,218,0 +170762466380,218,0 +170762466428,219,0 +170762466476,219,0 +170762466524,219,0 +170762466572,219,0 +170762466620,220,0 +170762466667,219,0 +170762466715,219,0 +170762466763,219,0 +170762466811,216,0 +170762466859,216,0 +170762466907,216,0 +170762466956,216,0 +170762467004,217,0 +170762467054,217,0 +170762467103,217,0 +170762467151,217,0 +170762467199,218,0 +170762467247,219,0 +170762467297,218,0 +170762467346,219,0 +170762467396,219,0 +170762467444,220,0 +170762467492,219,0 +170762467540,219,0 +170762467589,218,0 +170762467637,215,0 +170762467685,216,0 +170762467734,216,0 +170762467782,216,0 +170762467830,217,0 +170762467878,217,0 +170762467926,217,0 +170762467974,218,0 +170762468022,218,0 +170762468070,218,0 +170762468119,220,0 +170762468167,221,0 +170762468215,219,0 +170762468263,219,0 +170762468311,219,0 +170762468359,218,0 +170762468408,217,0 +170762468458,216,0 +170762468506,216,0 +170762468554,217,0 +170762468603,217,0 +170762468651,218,0 +170762468699,218,0 +170762468747,219,0 +170762468794,219,0 +170762468842,219,0 +170762468890,220,0 +170762468938,220,0 +170762468986,220,0 +170762469033,219,0 +170762469081,219,0 +170762469129,219,0 +170762469177,219,0 +170762469225,216,0 +170762469274,216,0 +170762469322,216,0 +170762469370,217,0 +170762469417,218,0 +170762469465,218,0 +170762469513,218,0 +170762469561,219,0 +170762469609,219,0 +170762469657,220,0 +170762469704,220,0 +170762469754,220,0 +170762469802,220,0 +170762469849,219,0 +170762469897,221,0 +170762469945,219,0 +170762469993,218,0 +170762470041,214,0 +170762470089,214,0 +170762470138,215,0 +170762470188,215,0 +170762470236,215,0 +170762470285,216,0 +170762470335,217,0 +170762470382,217,0 +170762470430,217,0 +170762470480,218,0 +170762470528,218,0 +170762470576,218,0 +170762470624,218,0 +170762470671,218,0 +170762470719,219,0 +170762470767,218,0 +170762470815,215,0 +170762470863,214,0 +170762470913,214,0 +170762470961,214,0 +170762471010,214,0 +170762471058,214,0 +170762471108,215,0 +170762471157,215,0 +170762471205,216,0 +170762471253,216,0 +170762471303,216,0 +170762471351,216,0 +170762471400,217,0 +170762471448,217,0 +170762471497,218,0 +170762471545,218,0 +170762471595,218,0 +170762471643,218,0 +170762471691,220,0 +170762471740,220,0 +170762471788,220,0 +170762471837,220,0 +170762471885,219,0 +170762471933,219,0 +170762471981,218,0 +170762472029,216,0 +170762472076,215,0 +170762472126,216,0 +170762472174,217,0 +170762472221,216,0 +170762472269,217,0 +170762472317,216,0 +170762472365,217,0 +170762472413,217,0 +170762472461,218,0 +170762472510,219,0 +170762472558,219,0 +170762472606,220,0 +170762472654,219,0 +170762472702,219,0 +170762472751,218,0 +170762472801,218,0 +170762472850,215,0 +170762472900,216,0 +170762472948,216,0 +170762472997,216,0 +170762473045,216,0 +170762473093,216,0 +170762473141,217,0 +170762473189,218,0 +170762473237,218,0 +170762473286,218,0 +170762473334,219,0 +170762473384,219,0 +170762473432,219,0 +170762473480,219,0 +170762473528,219,0 +170762473577,219,0 +170762473625,215,0 +170762473673,215,0 +170762473722,215,0 +170762473770,215,0 +170762473818,216,0 +170762473866,216,0 +170762473914,216,0 +170762473962,217,0 +170762474010,217,0 +170762474058,218,0 +170762474106,218,0 +170762474154,218,0 +170762474203,218,0 +170762474253,220,0 +170762474301,219,0 +170762474349,218,0 +170762474397,218,0 +170762474444,216,0 +170762474492,215,0 +170762474542,216,0 +170762474591,216,0 +170762474639,216,0 +170762474687,217,0 +170762474735,217,0 +170762474785,217,0 +170762474832,217,0 +170762474882,218,0 +170762474930,218,0 +170762474979,218,0 +170762475027,218,0 +170762475077,219,0 +170762475125,219,0 +170762475172,219,0 +170762475220,218,0 +170762475270,215,0 +170762475319,215,0 +170762475367,216,0 +170762475415,216,0 +170762475463,216,0 +170762475512,217,0 +170762475560,217,0 +170762475610,217,0 +170762475658,218,0 +170762475705,218,0 +170762475753,219,0 +170762475801,219,0 +170762475849,219,0 +170762475897,219,0 +170762475945,219,0 +170762475995,218,0 +170762476044,217,0 +170762476092,218,0 +170762476140,218,0 +170762476188,218,0 +170762476236,219,0 +170762476284,219,0 +170762476332,219,0 +170762476379,219,0 +170762476427,219,0 +170762476475,219,0 +170762476525,220,0 +170762476574,220,0 +170762476622,220,0 +170762476670,220,0 +170762476718,219,0 +170762476766,219,0 +170762476815,219,0 +170762476863,218,0 +170762476911,219,0 +170762476959,220,0 +170762477007,220,0 +170762477055,220,0 +170762477103,219,0 +170762477151,220,0 +170762477199,219,0 +170762477248,219,0 +170762477296,220,0 +170762477344,219,0 +170762477394,219,0 +170762477442,219,0 +170762477491,219,0 +170762477539,219,0 +170762477587,219,0 +170762477635,217,0 +170762477684,218,0 +170762477732,217,0 +170762477780,218,0 +170762477829,218,0 +170762477877,218,0 +170762477925,219,0 +170762477973,220,0 +170762478020,219,0 +170762478068,220,0 +170762478116,220,0 +170762478164,219,0 +170762478212,220,0 +170762478260,219,0 +170762478308,219,0 +170762478357,218,0 +170762478406,219,0 +170762478454,215,0 +170762478502,215,0 +170762478549,215,0 +170762478597,216,0 +170762478645,217,0 +170762478693,219,0 +170762478741,217,0 +170762478789,217,0 +170762478836,218,0 +170762478884,218,0 +170762478932,219,0 +170762478980,219,0 +170762479028,219,0 +170762479076,219,0 +170762479123,219,0 +170762479171,220,0 +170762479219,218,0 +170762479267,214,0 +170762479315,214,0 +170762479363,214,0 +170762479410,215,0 +170762479458,215,0 +170762479506,215,0 +170762479554,216,0 +170762479602,216,0 +170762479650,216,0 +170762479698,217,0 +170762479746,218,0 +170762479795,217,0 +170762479843,218,0 +170762479892,218,0 +170762479940,219,0 +170762479988,219,0 +170762480037,220,0 +170762480085,214,0 +170762480133,215,0 +170762480181,215,0 +170762480228,216,0 +170762480276,216,0 +170762480324,216,0 +170762480372,217,0 +170762480420,217,0 +170762480468,217,0 +170762480516,218,0 +170762480565,218,0 +170762480613,219,0 +170762480662,218,0 +170762480710,220,0 +170762480760,219,0 +170762480808,218,0 +170762480856,215,0 +170762480904,216,0 +170762480952,216,0 +170762481001,216,0 +170762481049,216,0 +170762481097,217,0 +170762481146,218,0 +170762481194,218,0 +170762481244,218,0 +170762481292,219,0 +170762481340,219,0 +170762481389,219,0 +170762481439,220,0 +170762481488,220,0 +170762481536,220,0 +170762481585,219,0 +170762481633,219,0 +170762481681,215,0 +170762481729,216,0 +170762481777,216,0 +170762481825,216,0 +170762481873,217,0 +170762481920,218,0 +170762481968,217,0 +170762482016,218,0 +170762482064,220,0 +170762482113,219,0 +170762482161,220,0 +170762482209,219,0 +170762482257,220,0 +170762482305,220,0 +170762482353,219,0 +170762482401,219,0 +170762482448,219,0 +170762482496,215,0 +170762482546,215,0 +170762482594,216,0 +170762482642,217,0 +170762482690,217,0 +170762482738,217,0 +170762482787,217,0 +170762482836,218,0 +170762482886,218,0 +170762482934,218,0 +170762482982,220,0 +170762483030,219,0 +170762483078,219,0 +170762483126,219,0 +170762483173,219,0 +170762483221,219,0 +170762483269,215,0 +170762483319,215,0 +170762483367,214,0 +170762483414,216,0 +170762483462,216,0 +170762483510,216,0 +170762483558,217,0 +170762483606,217,0 +170762483654,218,0 +170762483702,218,0 +170762483750,219,0 +170762483798,218,0 +170762483845,220,0 +170762483893,219,0 +170762483941,219,0 +170762483989,220,0 +170762484039,218,0 +170762484088,215,0 +170762484136,215,0 +170762484184,215,0 +170762484234,216,0 +170762484283,216,0 +170762484331,216,0 +170762484381,216,0 +170762484428,217,0 +170762484476,217,0 +170762484524,218,0 +170762484572,220,0 +170762484622,219,0 +170762484671,218,0 +170762484719,219,0 +170762484769,220,0 +170762484817,219,0 +170762484865,216,0 +170762484912,215,0 +170762484960,216,0 +170762485008,216,0 +170762485056,216,0 +170762485104,218,0 +170762485151,217,0 +170762485199,218,0 +170762485247,218,0 +170762485295,218,0 +170762485343,218,0 +170762485391,219,0 +170762485438,220,0 +170762485486,219,0 +170762485534,219,0 +170762485582,220,0 +170762485631,219,0 +170762485679,216,0 +170762485727,216,0 +170762485775,215,0 +170762485823,216,0 +170762485871,217,0 +170762485919,217,0 +170762485966,217,0 +170762486014,218,0 +170762486064,218,0 +170762486113,218,0 +170762486161,218,0 +170762486209,219,0 +170762486257,219,0 +170762486304,219,0 +170762486352,219,0 +170762486400,219,0 +170762486448,218,0 +170762486496,215,0 +170762486545,215,0 +170762486593,215,0 +170762486641,216,0 +170762486689,216,0 +170762486739,217,0 +170762486786,217,0 +170762486836,218,0 +170762486884,218,0 +170762486932,218,0 +170762486980,218,0 +170762487028,220,0 +170762487076,219,0 +170762487124,219,0 +170762487171,219,0 +170762487219,219,0 +170762487267,219,0 +170762487317,214,0 +170762487366,215,0 +170762487416,215,0 +170762487464,216,0 +170762487512,216,0 +170762487560,216,0 +170762487609,217,0 +170762487657,217,0 +170762487707,218,0 +170762487754,218,0 +170762487804,219,0 +170762487852,219,0 +170762487901,219,0 +170762487949,219,0 +170762487999,219,0 +170762488047,219,0 +170762488095,216,0 +170762488144,216,0 +170762488192,216,0 +170762488240,217,0 +170762488290,217,0 +170762488339,218,0 +170762488387,218,0 +170762488435,218,0 +170762488483,219,0 +170762488532,219,0 +170762488580,219,0 +170762488628,219,0 +170762488676,219,0 +170762488724,219,0 +170762488774,219,0 +170762488822,219,0 +170762488870,219,0 +170762488917,217,0 +170762488967,218,0 +170762489016,218,0 +170762489064,218,0 +170762489114,218,0 +170762489162,219,0 +170762489210,218,0 +170762489258,219,0 +170762489307,219,0 +170762489357,219,0 +170762489405,219,0 +170762489452,219,0 +170762489500,219,0 +170762489548,219,0 +170762489596,219,0 +170762489644,219,0 +170762489692,217,0 +170762489742,216,0 +170762489789,217,0 +170762489839,217,0 +170762489887,217,0 +170762489936,218,0 +170762489984,218,0 +170762490032,218,0 +170762490082,219,0 +170762490130,219,0 +170762490179,219,0 +170762490227,219,0 +170762490275,219,0 +170762490323,219,0 +170762490371,219,0 +170762490418,219,0 +170762490466,218,0 +170762490514,216,0 +170762490562,215,0 +170762490610,215,0 +170762490657,216,0 +170762490705,216,0 +170762490753,217,0 +170762490803,217,0 +170762490851,217,0 +170762490898,218,0 +170762490946,218,0 +170762490996,219,0 +170762491043,219,0 +170762491093,218,0 +170762491141,219,0 +170762491189,219,0 +170762491237,218,0 +170762491285,219,0 +170762491332,215,0 +170762491380,215,0 +170762491430,216,0 +170762491478,216,0 +170762491526,217,0 +170762491574,217,0 +170762491622,217,0 +170762491670,218,0 +170762491717,218,0 +170762491765,219,0 +170762491813,218,0 +170762491863,219,0 +170762491911,219,0 +170762491960,219,0 +170762492008,219,0 +170762492055,219,0 +170762492103,218,0 +170762492151,215,0 +170762492199,215,0 +170762492247,216,0 +170762492296,216,0 +170762492344,217,0 +170762492392,217,0 +170762492442,217,0 +170762492491,217,0 +170762492539,218,0 +170762492587,219,0 +170762492635,219,0 +170762492683,219,0 +170762492731,219,0 +170762492779,219,0 +170762492827,219,0 +170762492875,218,0 +170762492923,216,0 +170762492971,215,0 +170762493020,216,0 +170762493068,216,0 +170762493116,217,0 +170762493164,217,0 +170762493212,218,0 +170762493260,218,0 +170762493308,218,0 +170762493356,219,0 +170762493404,219,0 +170762493452,220,0 +170762493500,219,0 +170762493547,218,0 +170762493595,220,0 +170762493643,219,0 +170762493693,219,0 +170762493741,217,0 +170762493790,217,0 +170762493840,218,0 +170762493888,218,0 +170762493937,218,0 +170762493985,219,0 +170762494033,218,0 +170762494081,220,0 +170762494129,219,0 +170762494177,219,0 +170762494225,221,0 +170762494273,220,0 +170762494321,220,0 +170762494369,219,0 +170762494417,219,0 +170762494466,219,0 +170762494514,218,0 +170762494563,217,0 +170762494611,217,0 +170762494659,218,0 +170762494709,217,0 +170762494758,218,0 +170762494806,219,0 +170762494854,218,0 +170762494904,219,0 +170762494952,219,0 +170762495001,218,0 +170762495049,220,0 +170762495097,220,0 +170762495147,220,0 +170762495194,220,0 +170762495242,219,0 +170762495290,219,0 +170762495338,216,0 +170762495386,216,0 +170762495434,217,0 +170762495482,217,0 +170762495530,218,0 +170762495578,218,0 +170762495626,218,0 +170762495675,219,0 +170762495725,218,0 +170762495774,219,0 +170762495822,218,0 +170762495872,219,0 +170762495921,220,0 +170762495971,220,0 +170762496020,220,0 +170762496068,220,0 +170762496116,218,0 +170762496164,216,0 +170762496213,216,0 +170762496263,216,0 +170762496311,217,0 +170762496359,217,0 +170762496407,218,0 +170762496455,218,0 +170762496503,218,0 +170762496552,218,0 +170762496600,219,0 +170762496648,219,0 +170762496698,220,0 +170762496746,220,0 +170762496795,220,0 +170762496843,220,0 +170762496891,219,0 +170762496939,216,0 +170762496987,216,0 +170762497035,217,0 +170762497083,218,0 +170762497130,217,0 +170762497180,218,0 +170762497228,219,0 +170762497276,218,0 +170762497324,219,0 +170762497371,219,0 +170762497419,221,0 +170762497467,219,0 +170762497515,219,0 +170762497563,219,0 +170762497612,219,0 +170762497662,219,0 +170762497710,219,0 +170762497758,216,0 +170762497806,216,0 +170762497854,216,0 +170762497902,217,0 +170762497949,216,0 +170762497997,217,0 +170762498047,218,0 +170762498096,218,0 +170762498144,219,0 +170762498192,220,0 +170762498242,219,0 +170762498290,219,0 +170762498338,219,0 +170762498386,219,0 +170762498434,220,0 +170762498483,219,0 +170762498531,216,0 +170762498579,215,0 +170762498627,216,0 +170762498675,217,0 +170762498723,216,0 +170762498772,216,0 +170762498820,218,0 +170762498868,218,0 +170762498916,219,0 +170762498965,220,0 +170762499015,219,0 +170762499063,220,0 +170762499111,219,0 +170762499159,219,0 +170762499206,219,0 +170762499256,219,0 +170762499304,218,0 +170762499352,215,0 +170762499400,215,0 +170762499449,215,0 +170762499499,216,0 +170762499547,219,0 +170762499595,217,0 +170762499643,217,0 +170762499691,217,0 +170762499739,218,0 +170762499787,218,0 +170762499835,218,0 +170762499883,219,0 +170762499931,218,0 +170762499980,219,0 +170762500030,218,0 +170762500078,218,0 +170762500127,218,0 +170762500175,214,0 +170762500224,214,0 +170762500272,214,0 +170762500322,215,0 +170762500371,216,0 +170762500419,216,0 +170762500467,216,0 +170762500515,217,0 +170762500565,218,0 +170762500614,218,0 +170762500662,218,0 +170762500712,219,0 +170762500761,219,0 +170762500809,219,0 +170762500859,219,0 +170762500907,218,0 +170762500955,216,0 +170762501002,216,0 +170762501050,216,0 +170762501098,216,0 +170762501148,217,0 +170762501196,218,0 +170762501245,218,0 +170762501294,219,0 +170762501342,219,0 +170762501390,219,0 +170762501438,219,0 +170762501486,219,0 +170762501536,219,0 +170762501583,219,0 +170762501631,220,0 +170762501679,219,0 +170762501727,219,0 +170762501775,216,0 +170762501823,216,0 +170762501873,217,0 +170762501922,217,0 +170762501972,218,0 +170762502019,218,0 +170762502067,218,0 +170762502115,220,0 +170762502163,218,0 +170762502211,219,0 +170762502259,219,0 +170762502307,219,0 +170762502356,219,0 +170762502404,219,0 +170762502452,219,0 +170762502502,219,0 +170762502550,218,0 +170762502597,215,0 +170762502647,215,0 +170762502695,216,0 +170762502743,217,0 +170762502791,216,0 +170762502838,217,0 +170762502888,217,0 +170762502936,218,0 +170762502985,218,0 +170762503033,218,0 +170762503081,219,0 +170762503129,219,0 +170762503177,220,0 +170762503225,219,0 +170762503273,220,0 +170762503321,219,0 +170762503369,215,0 +170762503418,215,0 +170762503466,215,0 +170762503514,216,0 +170762503562,216,0 +170762503610,216,0 +170762503658,217,0 +170762503706,217,0 +170762503753,218,0 +170762503801,217,0 +170762503851,218,0 +170762503898,218,0 +170762503946,219,0 +170762503996,218,0 +170762504044,218,0 +170762504091,219,0 +170762504141,218,0 +170762504189,214,0 +170762504237,215,0 +170762504286,215,0 +170762504336,216,0 +170762504384,216,0 +170762504433,216,0 +170762504481,216,0 +170762504529,217,0 +170762504577,217,0 +170762504625,217,0 +170762504674,217,0 +170762504724,218,0 +170762504772,219,0 +170762504820,219,0 +170762504868,219,0 +170762504916,219,0 +170762504964,218,0 +170762505011,215,0 +170762505059,216,0 +170762505107,216,0 +170762505155,216,0 +170762505204,217,0 +170762505252,218,0 +170762505302,218,0 +170762505350,219,0 +170762505399,218,0 +170762505447,219,0 +170762505495,220,0 +170762505543,219,0 +170762505591,220,0 +170762505639,220,0 +170762505686,219,0 +170762505734,219,0 +170762505782,217,0 +170762505830,216,0 +170762505878,217,0 +170762505926,218,0 +170762505974,218,0 +170762506022,218,0 +170762506070,218,0 +170762506119,219,0 +170762506167,219,0 +170762506217,219,0 +170762506264,220,0 +170762506312,219,0 +170762506362,219,0 +170762506410,219,0 +170762506459,219,0 +170762506507,219,0 +170762506555,219,0 +170762506603,217,0 +170762506651,217,0 +170762506698,218,0 +170762506748,219,0 +170762506796,218,0 +170762506844,219,0 +170762506894,219,0 +170762506941,220,0 +170762506991,220,0 +170762507040,220,0 +170762507088,220,0 +170762507138,219,0 +170762507186,220,0 +170762507235,219,0 +170762507285,219,0 +170762507333,219,0 +170762507381,216,0 +170762507429,217,0 +170762507476,217,0 +170762507524,217,0 +170762507572,218,0 +170762507622,218,0 +170762507670,218,0 +170762507718,219,0 +170762507767,219,0 +170762507817,219,0 +170762507865,220,0 +170762507912,220,0 +170762507960,219,0 +170762508008,220,0 +170762508056,219,0 +170762508106,220,0 +170762508153,220,0 +170762508203,216,0 +170762508251,216,0 +170762508300,216,0 +170762508348,217,0 +170762508398,216,0 +170762508446,218,0 +170762508494,218,0 +170762508542,219,0 +170762508589,218,0 +170762508637,218,0 +170762508685,219,0 +170762508733,219,0 +170762508781,220,0 +170762508829,220,0 +170762508877,219,0 +170762508926,219,0 +170762508976,218,0 +170762509024,216,0 +170762509072,216,0 +170762509121,216,0 +170762509169,217,0 +170762509217,217,0 +170762509267,217,0 +170762509316,217,0 +170762509366,218,0 +170762509413,219,0 +170762509461,219,0 +170762509511,219,0 +170762509559,219,0 +170762509607,219,0 +170762509656,219,0 +170762509704,219,0 +170762509754,219,0 +170762509803,215,0 +170762509851,215,0 +170762509899,216,0 +170762509949,216,0 +170762509996,216,0 +170762510044,217,0 +170762510092,219,0 +170762510142,218,0 +170762510191,218,0 +170762510239,219,0 +170762510289,219,0 +170762510337,219,0 +170762510385,219,0 +170762510434,219,0 +170762510482,219,0 +170762510530,219,0 +170762510578,219,0 +170762510626,214,0 +170762510674,215,0 +170762510722,215,0 +170762510769,216,0 +170762510819,216,0 +170762510867,216,0 +170762510915,217,0 +170762510963,217,0 +170762511012,218,0 +170762511062,218,0 +170762511109,219,0 +170762511157,218,0 +170762511205,220,0 +170762511255,219,0 +170762511303,220,0 +170762511350,219,0 +170762511398,215,0 +170762511446,214,0 +170762511496,215,0 +170762511543,215,0 +170762511593,216,0 +170762511641,216,0 +170762511690,217,0 +170762511738,217,0 +170762511788,216,0 +170762511836,218,0 +170762511885,218,0 +170762511933,219,0 +170762511981,219,0 +170762512029,219,0 +170762512079,219,0 +170762512127,219,0 +170762512176,218,0 +170762512224,215,0 +170762512272,214,0 +170762512320,215,0 +170762512369,215,0 +170762512417,215,0 +170762512467,216,0 +170762512515,217,0 +170762512564,217,0 +170762512612,218,0 +170762512660,218,0 +170762512708,218,0 +170762512756,219,0 +170762512804,219,0 +170762512852,219,0 +170762512900,219,0 +170762512948,219,0 +170762512997,218,0 +170762513045,216,0 +170762513093,216,0 +170762513143,216,0 +170762513192,217,0 +170762513242,217,0 +170762513290,218,0 +170762513338,218,0 +170762513385,218,0 +170762513433,219,0 +170762513481,220,0 +170762513531,219,0 +170762513579,220,0 +170762513628,219,0 +170762513676,219,0 +170762513724,220,0 +170762513772,219,0 +170762513820,216,0 +170762513868,216,0 +170762513916,217,0 +170762513964,217,0 +170762514013,218,0 +170762514061,218,0 +170762514109,219,0 +170762514158,218,0 +170762514206,219,0 +170762514254,219,0 +170762514303,219,0 +170762514351,219,0 +170762514401,219,0 +170762514448,219,0 +170762514496,220,0 +170762514544,219,0 +170762514592,219,0 +170762514640,216,0 +170762514688,216,0 +170762514736,217,0 +170762514783,217,0 +170762514833,217,0 +170762514881,217,0 +170762514929,217,0 +170762514976,217,0 +170762515026,218,0 +170762515074,218,0 +170762515122,219,0 +170762515171,219,0 +170762515221,219,0 +170762515269,220,0 +170762515318,219,0 +170762515368,218,0 +170762515417,218,0 +170762515465,215,0 +170762515515,216,0 +170762515562,216,0 +170762515612,216,0 +170762515661,217,0 +170762515709,217,0 +170762515757,218,0 +170762515807,218,0 +170762515856,218,0 +170762515904,219,0 +170762515952,219,0 +170762516001,219,0 +170762516051,219,0 +170762516099,219,0 +170762516147,219,0 +170762516194,219,0 +170762516242,216,0 +170762516290,216,0 +170762516338,217,0 +170762516386,217,0 +170762516436,217,0 +170762516485,218,0 +170762516533,218,0 +170762516581,218,0 +170762516631,219,0 +170762516680,219,0 +170762516730,219,0 +170762516778,220,0 +170762516826,219,0 +170762516875,219,0 +170762516923,219,0 +170762516971,219,0 +170762517021,218,0 +170762517068,217,0 +170762517116,217,0 +170762517166,217,0 +170762517215,217,0 +170762517265,218,0 +170762517313,218,0 +170762517361,218,0 +170762517409,219,0 +170762517458,219,0 +170762517506,220,0 +170762517555,219,0 +170762517605,219,0 +170762517654,220,0 +170762517702,219,0 +170762517750,219,0 +170762517798,219,0 +170762517848,217,0 +170762517897,217,0 +170762517947,217,0 +170762517996,218,0 +170762518044,218,0 +170762518092,220,0 +170762518142,219,0 +170762518190,219,0 +170762518239,219,0 +170762518287,219,0 +170762518336,220,0 +170762518384,220,0 +170762518432,220,0 +170762518480,219,0 +170762518530,219,0 +170762518579,219,0 +170762518627,219,0 +170762518675,217,0 +170762518725,218,0 +170762518774,218,0 +170762518822,218,0 +170762518870,218,0 +170762518918,219,0 +170762518968,219,0 +170762519016,219,0 +170762519064,219,0 +170762519113,219,0 +170762519161,219,0 +170762519210,220,0 +170762519258,219,0 +170762519306,219,0 +170762519354,219,0 +170762519402,218,0 +170762519450,216,0 +170762519500,215,0 +170762519549,216,0 +170762519599,216,0 +170762519647,217,0 +170762519696,217,0 +170762519744,218,0 +170762519792,218,0 +170762519840,219,0 +170762519890,219,0 +170762519938,220,0 +170762519986,219,0 +170762520035,219,0 +170762520083,219,0 +170762520131,219,0 +170762520181,219,0 +170762520230,218,0 +170762520278,214,0 +170762520328,215,0 +170762520376,215,0 +170762520424,215,0 +170762520471,216,0 +170762520519,216,0 +170762520567,216,0 +170762520615,217,0 +170762520663,217,0 +170762520711,217,0 +170762520761,218,0 +170762520809,218,0 +170762520857,219,0 +170762520906,219,0 +170762520954,220,0 +170762521002,219,0 +170762521051,217,0 +170762521099,214,0 +170762521147,215,0 +170762521195,215,0 +170762521243,216,0 +170762521291,216,0 +170762521341,217,0 +170762521389,216,0 +170762521437,217,0 +170762521484,217,0 +170762521532,218,0 +170762521582,218,0 +170762521630,218,0 +170762521678,218,0 +170762521727,218,0 +170762521777,218,0 +170762521825,219,0 +170762521873,215,0 +170762521920,215,0 +170762521968,215,0 +170762522018,215,0 +170762522066,216,0 +170762522114,215,0 +170762522163,216,0 +170762522211,217,0 +170762522261,217,0 +170762522309,217,0 +170762522356,218,0 +170762522406,218,0 +170762522456,218,0 +170762522504,219,0 +170762522553,218,0 +170762522603,219,0 +170762522652,217,0 +170762522702,215,0 +170762522750,216,0 +170762522797,216,0 +170762522847,216,0 +170762522895,216,0 +170762522944,216,0 +170762522992,217,0 +170762523040,218,0 +170762523088,218,0 +170762523137,219,0 +170762523185,218,0 +170762523233,219,0 +170762523281,219,0 +170762523328,219,0 +170762523376,219,0 +170762523424,218,0 +170762523474,216,0 +170762523522,216,0 +170762523570,216,0 +170762523617,216,0 +170762523665,217,0 +170762523713,217,0 +170762523761,217,0 +170762523809,218,0 +170762523857,218,0 +170762523905,218,0 +170762523954,219,0 +170762524002,220,0 +170762524050,219,0 +170762524100,218,0 +170762524149,219,0 +170762524197,219,0 +170762524245,218,0 +170762524293,215,0 +170762524341,215,0 +170762524390,216,0 +170762524440,216,0 +170762524487,216,0 +170762524537,217,0 +170762524585,217,0 +170762524634,217,0 +170762524682,218,0 +170762524730,218,0 +170762524778,219,0 +170762524828,219,0 +170762524876,219,0 +170762524924,219,0 +170762524973,219,0 +170762525021,219,0 +170762525069,217,0 +170762525118,217,0 +170762525168,218,0 +170762525216,217,0 +170762525265,218,0 +170762525313,219,0 +170762525363,218,0 +170762525411,218,0 +170762525460,219,0 +170762525508,219,0 +170762525556,219,0 +170762525606,219,0 +170762525654,220,0 +170762525702,219,0 +170762525750,220,0 +170762525798,219,0 +170762525847,219,0 +170762525895,218,0 +170762525945,218,0 +170762525994,219,0 +170762526043,221,0 +170762526093,219,0 +170762526143,219,0 +170762526190,219,0 +170762526240,219,0 +170762526288,219,0 +170762526336,220,0 +170762526385,220,0 +170762526433,220,0 +170762526481,220,0 +170762526529,220,0 +170762526577,219,0 +170762526625,219,0 +170762526675,218,0 +170762526723,217,0 +170762526772,217,0 +170762526822,217,0 +170762526871,217,0 +170762526921,218,0 +170762526970,218,0 +170762527018,219,0 +170762527066,220,0 +170762527114,219,0 +170762527162,219,0 +170762527210,220,0 +170762527259,219,0 +170762527309,219,0 +170762527358,220,0 +170762527408,219,0 +170762527456,219,0 +170762527504,215,0 +170762527553,215,0 +170762527601,215,0 +170762527651,216,0 +170762527698,216,0 +170762527746,216,0 +170762527796,217,0 +170762527845,217,0 +170762527893,218,0 +170762527941,218,0 +170762527989,218,0 +170762528037,218,0 +170762528085,219,0 +170762528133,219,0 +170762528180,220,0 +170762528228,219,0 +170762528276,218,0 +170762528324,214,0 +170762528372,215,0 +170762528420,215,0 +170762528468,216,0 +170762528517,216,0 +170762528565,216,0 +170762528613,216,0 +170762528662,217,0 +170762528710,218,0 +170762528758,218,0 +170762528806,219,0 +170762528855,219,0 +170762528903,219,0 +170762528951,218,0 +170762528998,219,0 +170762529046,219,0 +170762529094,215,0 +170762529144,215,0 +170762529192,215,0 +170762529240,216,0 +170762529288,216,0 +170762529335,217,0 +170762529385,217,0 +170762529435,217,0 +170762529484,218,0 +170762529532,219,0 +170762529581,219,0 +170762529629,218,0 +170762529677,219,0 +170762529725,219,0 +170762529775,219,0 +170762529824,219,0 +170762529874,219,0 +170762529923,216,0 +170762529971,216,0 +170762530019,216,0 +170762530067,216,0 +170762530117,217,0 +170762530166,218,0 +170762530216,218,0 +170762530265,219,0 +170762530313,219,0 +170762530361,220,0 +170762530409,221,0 +170762530457,219,0 +170762530505,220,0 +170762530553,219,0 +170762530603,219,0 +170762530651,219,0 +170762530698,218,0 +170762530746,216,0 +170762530794,216,0 +170762530842,217,0 +170762530890,217,0 +170762530938,218,0 +170762530986,218,0 +170762531034,218,0 +170762531083,218,0 +170762531131,219,0 +170762531179,220,0 +170762531229,219,0 +170762531277,219,0 +170762531326,220,0 +170762531374,218,0 +170762531422,219,0 +170762531472,219,0 +170762531520,215,0 +170762531569,215,0 +170762531617,215,0 +170762531667,216,0 +170762531715,216,0 +170762531762,217,0 +170762531810,217,0 +170762531858,218,0 +170762531908,218,0 +170762531956,218,0 +170762532005,219,0 +170762532055,220,0 +170762532102,219,0 +170762532150,219,0 +170762532198,219,0 +170762532246,219,0 +170762532294,219,0 +170762532344,214,0 +170762532392,214,0 +170762532440,215,0 +170762532487,215,0 +170762532535,217,0 +170762532585,216,0 +170762532634,217,0 +170762532682,217,0 +170762532730,218,0 +170762532778,217,0 +170762532826,218,0 +170762532874,219,0 +170762532922,220,0 +170762532970,219,0 +170762533018,218,0 +170762533067,219,0 +170762533115,216,0 +170762533165,215,0 +170762533214,215,0 +170762533264,216,0 +170762533311,216,0 +170762533361,216,0 +170762533409,217,0 +170762533457,217,0 +170762533504,218,0 +170762533552,218,0 +170762533600,219,0 +170762533648,218,0 +170762533697,219,0 +170762533747,219,0 +170762533795,220,0 +170762533843,220,0 +170762533892,219,0 +170762533940,216,0 +170762533989,216,0 +170762534039,216,0 +170762534087,217,0 +170762534135,216,0 +170762534183,217,0 +170762534231,217,0 +170762534279,217,0 +170762534327,218,0 +170762534375,218,0 +170762534423,218,0 +170762534470,219,0 +170762534518,219,0 +170762534566,219,0 +170762534614,219,0 +170762534662,219,0 +170762534712,218,0 +170762534760,215,0 +170762534809,215,0 +170762534857,216,0 +170762534905,216,0 +170762534953,217,0 +170762535002,217,0 +170762535052,217,0 +170762535101,218,0 +170762535151,219,0 +170762535199,219,0 +170762535247,220,0 +170762535295,220,0 +170762535342,220,0 +170762535390,219,0 +170762535438,219,0 +170762535488,219,0 +170762535536,215,0 +170762535584,214,0 +170762535633,215,0 +170762535681,215,0 +170762535730,216,0 +170762535780,216,0 +170762535829,217,0 +170762535879,218,0 +170762535928,218,0 +170762535976,218,0 +170762536024,219,0 +170762536074,219,0 +170762536122,220,0 +170762536170,219,0 +170762536217,219,0 +170762536265,218,0 +170762536313,218,0 +170762536363,215,0 +170762536411,215,0 +170762536459,215,0 +170762536507,215,0 +170762536554,216,0 +170762536604,216,0 +170762536653,217,0 +170762536701,217,0 +170762536749,218,0 +170762536799,218,0 +170762536848,218,0 +170762536896,219,0 +170762536944,219,0 +170762536992,219,0 +170762537041,219,0 +170762537089,219,0 +170762537137,215,0 +170762537187,216,0 +170762537235,216,0 +170762537283,217,0 +170762537332,218,0 +170762537382,218,0 +170762537430,218,0 +170762537478,218,0 +170762537527,219,0 +170762537577,219,0 +170762537624,220,0 +170762537672,219,0 +170762537720,219,0 +170762537768,219,0 +170762537816,219,0 +170762537864,219,0 +170762537913,217,0 +170762537963,218,0 +170762538012,218,0 +170762538060,218,0 +170762538108,219,0 +170762538156,219,0 +170762538204,219,0 +170762538252,220,0 +170762538300,220,0 +170762538347,219,0 +170762538395,220,0 +170762538443,220,0 +170762538491,220,0 +170762538539,220,0 +170762538588,219,0 +170762538638,219,0 +170762538687,219,0 +170762538735,218,0 +170762538785,217,0 +170762538833,218,0 +170762538881,218,0 +170762538930,218,0 +170762538978,218,0 +170762539026,219,0 +170762539074,219,0 +170762539122,218,0 +170762539170,219,0 +170762539220,219,0 +170762539268,219,0 +170762539316,220,0 +170762539364,220,0 +170762539411,219,0 +170762539459,219,0 +170762539507,218,0 +170762539555,216,0 +170762539604,215,0 +170762539652,216,0 +170762539700,216,0 +170762539748,216,0 +170762539796,217,0 +170762539844,218,0 +170762539891,217,0 +170762539939,218,0 +170762539989,218,0 +170762540037,219,0 +170762540085,219,0 +170762540132,219,0 +170762540182,219,0 +170762540230,219,0 +170762540279,219,0 +170762540327,218,0 +170762540377,215,0 +170762540425,215,0 +170762540474,216,0 +170762540524,216,0 +170762540572,216,0 +170762540619,217,0 +170762540667,217,0 +170762540717,219,0 +170762540765,218,0 +170762540812,219,0 +170762540860,218,0 +170762540910,219,0 +170762540958,219,0 +170762541006,219,0 +170762541054,220,0 +170762541102,218,0 +170762541150,215,0 +170762541199,216,0 +170762541247,216,0 +170762541295,216,0 +170762541343,216,0 +170762541391,217,0 +170762541440,217,0 +170762541488,218,0 +170762541536,218,0 +170762541584,218,0 +170762541633,218,0 +170762541681,219,0 +170762541729,219,0 +170762541777,218,0 +170762541825,219,0 +170762541872,219,0 +170762541920,219,0 +170762541968,216,0 +170762542016,216,0 +170762542064,216,0 +170762542112,217,0 +170762542160,217,0 +170762542208,218,0 +170762542255,218,0 +170762542303,218,0 +170762542353,218,0 +170762542401,220,0 +170762542450,220,0 +170762542500,220,0 +170762542549,220,0 +170762542597,220,0 +170762542645,219,0 +170762542693,219,0 +170762542742,218,0 +170762542792,216,0 +170762542840,216,0 +170762542888,216,0 +170762542937,217,0 +170762542985,217,0 +170762543033,218,0 +170762543081,217,0 +170762543129,219,0 +170762543177,218,0 +170762543225,219,0 +170762543273,219,0 +170762543322,220,0 +170762543370,219,0 +170762543418,219,0 +170762543466,219,0 +170762543514,219,0 +170762543563,216,0 +170762543613,216,0 +170762543663,216,0 +170762543711,217,0 +170762543760,218,0 +170762543808,219,0 +170762543858,218,0 +170762543907,218,0 +170762543955,218,0 +170762544005,219,0 +170762544052,220,0 +170762544100,219,0 +170762544150,219,0 +170762544198,219,0 +170762544246,219,0 +170762544294,219,0 +170762544342,219,0 +170762544389,216,0 +170762544437,216,0 +170762544485,216,0 +170762544533,217,0 +170762544583,218,0 +170762544632,217,0 +170762544680,217,0 +170762544730,219,0 +170762544778,219,0 +170762544826,218,0 +170762544874,219,0 +170762544923,219,0 +170762544971,220,0 +170762545021,219,0 +170762545070,219,0 +170762545118,219,0 +170762545166,218,0 +170762545214,217,0 +170762545262,217,0 +170762545310,217,0 +170762545359,217,0 +170762545407,217,0 +170762545457,218,0 +170762545506,218,0 +170762545554,220,0 +170762545602,219,0 +170762545652,220,0 +170762545701,220,0 +170762545749,220,0 +170762545797,219,0 +170762545845,218,0 +170762545895,219,0 +170762545943,219,0 +170762545992,217,0 +170762546042,217,0 +170762546091,217,0 +170762546139,217,0 +170762546189,219,0 +170762546236,218,0 +170762546286,218,0 +170762546334,217,0 +170762546382,219,0 +170762546430,219,0 +170762546478,219,0 +170762546526,219,0 +170762546574,219,0 +170762546623,219,0 +170762546671,219,0 +170762546719,219,0 +170762546767,218,0 +170762546815,216,0 +170762546863,216,0 +170762546911,216,0 +170762546959,216,0 +170762547007,218,0 +170762547056,218,0 +170762547104,218,0 +170762547152,218,0 +170762547200,219,0 +170762547248,219,0 +170762547296,222,0 +170762547344,220,0 +170762547392,219,0 +170762547439,219,0 +170762547489,219,0 +170762547538,218,0 +170762547586,215,0 +170762547634,215,0 +170762547682,215,0 +170762547732,216,0 +170762547781,216,0 +170762547829,216,0 +170762547879,216,0 +170762547927,217,0 +170762547976,218,0 +170762548024,218,0 +170762548072,219,0 +170762548120,219,0 +170762548169,219,0 +170762548217,221,0 +170762548265,219,0 +170762548315,218,0 +170762548363,219,0 +170762548411,215,0 +170762548458,214,0 +170762548508,214,0 +170762548558,215,0 +170762548605,215,0 +170762548653,215,0 +170762548701,215,0 +170762548751,216,0 +170762548800,216,0 +170762548848,217,0 +170762548896,217,0 +170762548945,218,0 +170762548993,218,0 +170762549043,218,0 +170762549092,218,0 +170762549140,218,0 +170762549188,218,0 +170762549236,214,0 +170762549284,215,0 +170762549333,215,0 +170762549381,216,0 +170762549429,216,0 +170762549477,216,0 +170762549527,217,0 +170762549574,217,0 +170762549624,218,0 +170762549672,218,0 +170762549720,218,0 +170762549768,219,0 +170762549816,219,0 +170762549865,220,0 +170762549915,219,0 +170762549963,219,0 +170762550011,217,0 +170762550059,216,0 +170762550107,216,0 +170762550154,217,0 +170762550202,217,0 +170762550252,217,0 +170762550300,218,0 +170762550348,218,0 +170762550396,219,0 +170762550444,219,0 +170762550491,219,0 +170762550539,220,0 +170762550589,220,0 +170762550637,219,0 +170762550686,219,0 +170762550734,219,0 +170762550782,218,0 +170762550830,216,0 +170762550878,216,0 +170762550926,217,0 +170762550974,217,0 +170762551022,217,0 +170762551071,218,0 +170762551121,218,0 +170762551169,218,0 +170762551217,219,0 +170762551265,219,0 +170762551314,219,0 +170762551362,219,0 +170762551412,220,0 +170762551460,222,0 +170762551508,219,0 +170762551557,219,0 +170762551605,218,0 +170762551653,215,0 +170762551703,215,0 +170762551750,216,0 +170762551798,216,0 +170762551848,216,0 +170762551896,217,0 +170762551944,216,0 +170762551992,218,0 +170762552041,217,0 +170762552089,218,0 +170762552139,218,0 +170762552188,218,0 +170762552238,218,0 +170762552287,219,0 +170762552335,218,0 +170762552383,219,0 +170762552431,214,0 +170762552479,214,0 +170762552527,214,0 +170762552575,214,0 +170762552623,215,0 +170762552672,215,0 +170762552720,215,0 +170762552768,216,0 +170762552816,216,0 +170762552864,216,0 +170762552912,217,0 +170762552960,217,0 +170762553008,217,0 +170762553057,217,0 +170762553107,218,0 +170762553156,218,0 +170762553204,219,0 +170762553252,214,0 +170762553301,215,0 +170762553349,215,0 +170762553397,215,0 +170762553445,216,0 +170762553493,216,0 +170762553541,216,0 +170762553590,216,0 +170762553640,218,0 +170762553688,217,0 +170762553737,218,0 +170762553785,218,0 +170762553833,218,0 +170762553881,219,0 +170762553929,218,0 +170762553977,218,0 +170762554026,217,0 +170762554076,215,0 +170762554124,216,0 +170762554172,216,0 +170762554220,217,0 +170762554267,217,0 +170762554315,217,0 +170762554363,218,0 +170762554413,219,0 +170762554462,218,0 +170762554510,219,0 +170762554558,219,0 +170762554608,220,0 +170762554656,219,0 +170762554704,219,0 +170762554752,218,0 +170762554801,219,0 +170762554849,217,0 +170762554899,218,0 +170762554946,218,0 +170762554994,219,0 +170762555042,218,0 +170762555090,219,0 +170762555140,219,0 +170762555188,219,0 +170762555236,221,0 +170762555284,220,0 +170762555332,220,0 +170762555381,220,0 +170762555429,217,0 +170762555477,219,0 +170762555525,219,0 +170762555573,219,0 +170762555621,218,0 +170762555669,218,0 +170762555716,219,0 +170762555766,219,0 +170762555815,219,0 +170762555865,220,0 +170762555914,219,0 +170762555962,219,0 +170762556012,220,0 +170762556060,220,0 +170762556109,220,0 +170762556157,219,0 +170762556205,220,0 +170762556253,220,0 +170762556301,219,0 +170762556349,219,0 +170762556397,220,0 +170762556445,218,0 +170762556493,218,0 +170762556543,218,0 +170762556591,218,0 +170762556638,219,0 +170762556686,219,0 +170762556734,220,0 +170762556782,219,0 +170762556830,219,0 +170762556878,219,0 +170762556926,220,0 +170762556974,220,0 +170762557022,220,0 +170762557070,219,0 +170762557117,220,0 +170762557165,219,0 +170762557215,219,0 +170762557263,218,0 +170762557311,218,0 +170762557359,218,0 +170762557407,218,0 +170762557454,218,0 +170762557504,219,0 +170762557553,219,0 +170762557601,220,0 +170762557649,220,0 +170762557699,219,0 +170762557748,220,0 +170762557796,220,0 +170762557846,220,0 +170762557894,219,0 +170762557941,219,0 +170762557991,218,0 +170762558039,217,0 +170762558087,216,0 +170762558136,217,0 +170762558184,218,0 +170762558232,218,0 +170762558280,219,0 +170762558328,219,0 +170762558376,219,0 +170762558426,219,0 +170762558474,219,0 +170762558521,220,0 +170762558571,221,0 +170762558619,219,0 +170762558668,220,0 +170762558716,220,0 +170762558764,219,0 +170762558812,219,0 +170762558861,216,0 +170762558911,216,0 +170762558960,217,0 +170762559008,216,0 +170762559056,217,0 +170762559104,217,0 +170762559152,218,0 +170762559201,218,0 +170762559251,218,0 +170762559298,219,0 +170762559346,219,0 +170762559394,219,0 +170762559442,219,0 +170762559490,219,0 +170762559539,219,0 +170762559589,219,0 +170762559637,218,0 +170762559685,214,0 +170762559734,214,0 +170762559782,214,0 +170762559830,215,0 +170762559879,215,0 +170762559927,216,0 +170762559977,217,0 +170762560026,217,0 +170762560074,217,0 +170762560124,217,0 +170762560172,218,0 +170762560219,218,0 +170762560267,219,0 +170762560317,219,0 +170762560366,220,0 +170762560414,218,0 +170762560462,215,0 +170762560512,214,0 +170762560561,214,0 +170762560609,215,0 +170762560657,215,0 +170762560705,215,0 +170762560752,216,0 +170762560800,216,0 +170762560848,216,0 +170762560896,217,0 +170762560944,217,0 +170762560992,218,0 +170762561041,218,0 +170762561089,218,0 +170762561137,218,0 +170762561187,218,0 +170762561235,219,0 +170762561282,215,0 +170762561330,215,0 +170762561380,215,0 +170762561428,216,0 +170762561475,216,0 +170762561523,217,0 +170762561571,217,0 +170762561619,217,0 +170762561668,217,0 +170762561716,219,0 +170762561764,218,0 +170762561813,219,0 +170762561861,219,0 +170762561909,219,0 +170762561957,219,0 +170762562005,219,0 +170762562053,218,0 +170762562101,216,0 +170762562150,216,0 +170762562198,216,0 +170762562246,217,0 +170762562296,217,0 +170762562345,217,0 +170762562393,218,0 +170762562443,218,0 +170762562492,219,0 +170762562540,219,0 +170762562589,219,0 +170762562639,219,0 +170762562688,219,0 +170762562736,219,0 +170762562784,219,0 +170762562832,219,0 +170762562880,217,0 +170762562928,217,0 +170762562976,217,0 +170762563025,217,0 +170762563073,218,0 +170762563121,218,0 +170762563169,219,0 +170762563218,219,0 +170762563266,219,0 +170762563314,219,0 +170762563364,219,0 +170762563412,219,0 +170762563460,219,0 +170762563509,219,0 +170762563557,219,0 +170762563605,219,0 +170762563653,219,0 +170762563701,216,0 +170762563749,217,0 +170762563797,216,0 +170762563845,217,0 +170762563893,217,0 +170762563940,217,0 +170762563990,217,0 +170762564039,218,0 +170762564087,219,0 +170762564137,219,0 +170762564185,219,0 +170762564233,219,0 +170762564280,219,0 +170762564330,219,0 +170762564378,219,0 +170762564426,219,0 +170762564473,218,0 +170762564521,215,0 +170762564569,215,0 +170762564617,216,0 +170762564665,216,0 +170762564713,217,0 +170762564762,217,0 +170762564810,217,0 +170762564858,218,0 +170762564907,218,0 +170762564957,219,0 +170762565005,219,0 +170762565053,218,0 +170762565101,220,0 +170762565149,219,0 +170762565198,219,0 +170762565248,219,0 +170762565296,215,0 +170762565344,215,0 +170762565393,215,0 +170762565441,216,0 +170762565491,217,0 +170762565540,217,0 +170762565590,217,0 +170762565638,218,0 +170762565686,218,0 +170762565736,218,0 +170762565785,219,0 +170762565835,219,0 +170762565883,220,0 +170762565932,219,0 +170762565982,219,0 +170762566030,219,0 +170762566078,218,0 +170762566126,216,0 +170762566173,217,0 +170762566223,217,0 +170762566271,217,0 +170762566319,217,0 +170762566367,218,0 +170762566414,218,0 +170762566464,219,0 +170762566512,219,0 +170762566560,219,0 +170762566608,220,0 +170762566655,219,0 +170762566703,220,0 +170762566751,220,0 +170762566799,220,0 +170762566848,219,0 +170762566896,216,0 +170762566944,217,0 +170762566992,217,0 +170762567040,217,0 +170762567088,217,0 +170762567137,218,0 +170762567185,218,0 +170762567233,219,0 +170762567282,219,0 +170762567332,220,0 +170762567380,219,0 +170762567428,219,0 +170762567477,219,0 +170762567525,219,0 +170762567573,219,0 +170762567621,220,0 +170762567671,218,0 +170762567719,219,0 +170762567768,218,0 +170762567818,218,0 +170762567867,218,0 +170762567915,218,0 +170762567963,219,0 +170762568011,219,0 +170762568059,219,0 +170762568108,220,0 +170762568156,219,0 +170762568204,219,0 +170762568254,219,0 +170762568302,219,0 +170762568350,220,0 +170762568398,220,0 +170762568447,219,0 +170762568497,216,0 +170762568544,215,0 +170762568594,215,0 +170762568642,216,0 +170762568690,216,0 +170762568738,217,0 +170762568785,217,0 +170762568833,217,0 +170762568881,219,0 +170762568929,219,0 +170762568978,219,0 +170762569026,220,0 +170762569074,219,0 +170762569122,226,0 +170762569170,220,0 +170762569218,219,0 +170762569266,219,0 +170762569314,215,0 +170762569361,214,0 +170762569409,215,0 +170762569457,215,0 +170762569505,216,0 +170762569553,215,0 +170762569603,216,0 +170762569650,217,0 +170762569698,217,0 +170762569746,218,0 +170762569794,218,0 +170762569842,218,0 +170762569890,219,0 +170762569938,219,0 +170762569987,219,0 +170762570035,219,0 +170762570083,219,0 +170762570131,215,0 +170762570179,215,0 +170762570227,215,0 +170762570276,215,0 +170762570324,215,0 +170762570372,216,0 +170762570422,216,0 +170762570470,217,0 +170762570518,217,0 +170762570566,218,0 +170762570614,218,0 +170762570662,220,0 +170762570709,219,0 +170762570757,220,0 +170762570805,219,0 +170762570855,219,0 +170762570904,218,0 +170762570952,215,0 +170762571000,215,0 +170762571048,215,0 +170762571095,215,0 +170762571145,216,0 +170762571193,216,0 +170762571241,217,0 +170762571289,217,0 +170762571337,218,0 +170762571386,218,0 +170762571434,219,0 +170762571482,220,0 +170762571530,219,0 +170762571577,219,0 +170762571627,219,0 +170762571675,219,0 +170762571723,215,0 +170762571772,215,0 +170762571820,215,0 +170762571868,216,0 +170762571916,216,0 +170762571964,217,0 +170762572011,217,0 +170762572061,217,0 +170762572109,218,0 +170762572157,218,0 +170762572205,218,0 +170762572253,218,0 +170762572300,219,0 +170762572348,219,0 +170762572396,219,0 +170762572444,218,0 +170762572492,218,0 +170762572542,214,0 +170762572591,214,0 +170762572639,215,0 +170762572687,215,0 +170762572735,215,0 +170762572784,216,0 +170762572832,216,0 +170762572880,216,0 +170762572928,216,0 +170762572975,218,0 +170762573025,218,0 +170762573073,217,0 +170762573121,218,0 +170762573169,219,0 +170762573216,219,0 +170762573264,219,0 +170762573312,217,0 +170762573360,215,0 +170762573408,216,0 +170762573458,215,0 +170762573507,216,0 +170762573555,217,0 +170762573605,217,0 +170762573653,217,0 +170762573700,218,0 +170762573750,219,0 +170762573798,219,0 +170762573847,219,0 +170762573897,219,0 +170762573946,219,0 +170762573994,219,0 +170762574042,219,0 +170762574092,219,0 +170762574140,217,0 +170762574188,217,0 +170762574237,218,0 +170762574287,218,0 +170762574335,219,0 +170762574383,219,0 +170762574432,219,0 +170762574480,219,0 +170762574528,219,0 +170762574578,219,0 +170762574627,219,0 +170762574677,219,0 +170762574725,219,0 +170762574773,219,0 +170762574821,219,0 +170762574869,219,0 +170762574917,218,0 +170762574964,218,0 +170762575014,219,0 +170762575063,218,0 +170762575113,218,0 +170762575162,219,0 +170762575210,219,0 +170762575260,219,0 +170762575308,219,0 +170762575356,220,0 +170762575404,220,0 +170762575452,219,0 +170762575500,219,0 +170762575548,219,0 +170762575596,219,0 +170762575644,219,0 +170762575693,218,0 +170762575741,216,0 +170762575789,216,0 +170762575837,217,0 +170762575885,217,0 +170762575933,217,0 +170762575982,217,0 +170762576032,219,0 +170762576080,218,0 +170762576129,218,0 +170762576177,218,0 +170762576225,219,0 +170762576273,221,0 +170762576322,219,0 +170762576372,220,0 +170762576420,219,0 +170762576469,218,0 +170762576517,218,0 +170762576565,216,0 +170762576613,216,0 +170762576661,216,0 +170762576711,217,0 +170762576759,217,0 +170762576808,218,0 +170762576856,218,0 +170762576905,219,0 +170762576953,219,0 +170762577001,219,0 +170762577049,219,0 +170762577099,220,0 +170762577148,219,0 +170762577196,219,0 +170762577244,219,0 +170762577294,218,0 +170762577342,215,0 +170762577390,215,0 +170762577439,216,0 +170762577487,217,0 +170762577535,217,0 +170762577583,216,0 +170762577631,218,0 +170762577680,218,0 +170762577728,219,0 +170762577776,219,0 +170762577826,219,0 +170762577875,219,0 +170762577923,219,0 +170762577972,219,0 +170762578020,219,0 +170762578068,219,0 +170762578116,218,0 +170762578164,214,0 +170762578212,215,0 +170762578260,215,0 +170762578307,216,0 +170762578355,216,0 +170762578403,217,0 +170762578451,217,0 +170762578501,217,0 +170762578550,217,0 +170762578598,218,0 +170762578646,218,0 +170762578694,218,0 +170762578742,219,0 +170762578791,219,0 +170762578841,219,0 +170762578890,219,0 +170762578938,216,0 +170762578986,215,0 +170762579034,216,0 +170762579084,217,0 +170762579132,217,0 +170762579180,217,0 +170762579228,217,0 +170762579276,218,0 +170762579325,218,0 +170762579375,219,0 +170762579422,219,0 +170762579470,218,0 +170762579520,220,0 +170762579569,218,0 +170762579617,219,0 +170762579665,220,0 +170762579715,217,0 +170762579763,216,0 +170762579811,216,0 +170762579859,216,0 +170762579908,217,0 +170762579958,217,0 +170762580006,218,0 +170762580055,218,0 +170762580103,219,0 +170762580151,219,0 +170762580199,219,0 +170762580249,220,0 +170762580298,219,0 +170762580346,220,0 +170762580394,219,0 +170762580444,219,0 +170762580493,219,0 +170762580541,215,0 +170762580589,215,0 +170762580637,215,0 +170762580685,216,0 +170762580734,216,0 +170762580782,216,0 +170762580832,217,0 +170762580880,217,0 +170762580928,218,0 +170762580976,218,0 +170762581024,218,0 +170762581071,218,0 +170762581119,219,0 +170762581167,219,0 +170762581217,219,0 +170762581266,219,0 +170762581316,219,0 +170762581364,214,0 +170762581412,214,0 +170762581460,215,0 +170762581509,215,0 +170762581559,216,0 +170762581607,216,0 +170762581655,216,0 +170762581703,217,0 +170762581750,217,0 +170762581798,217,0 +170762581848,219,0 +170762581896,219,0 +170762581944,218,0 +170762581993,219,0 +170762582041,219,0 +170762582089,219,0 +170762582137,215,0 +170762582185,214,0 +170762582233,215,0 +170762582281,215,0 +170762582330,216,0 +170762582378,216,0 +170762582426,216,0 +170762582474,216,0 +170762582522,217,0 +170762582570,218,0 +170762582619,218,0 +170762582667,218,0 +170762582715,218,0 +170762582763,218,0 +170762582811,219,0 +170762582859,218,0 +170762582907,218,0 +170762582955,214,0 +170762583003,214,0 +170762583052,215,0 +170762583100,215,0 +170762583148,216,0 +170762583198,216,0 +170762583247,216,0 +170762583295,216,0 +170762583343,217,0 +170762583393,217,0 +170762583440,218,0 +170762583488,218,0 +170762583536,218,0 +170762583586,219,0 +170762583635,219,0 +170762583685,219,0 +170762583734,215,0 +170762583782,215,0 +170762583830,216,0 +170762583878,216,0 +170762583926,216,0 +170762583974,217,0 +170762584022,217,0 +170762584070,217,0 +170762584118,218,0 +170762584166,218,0 +170762584214,218,0 +170762584261,219,0 +170762584309,219,0 +170762584357,219,0 +170762584407,220,0 +170762584455,219,0 +170762584503,218,0 +170762584551,215,0 +170762584599,215,0 +170762584648,215,0 +170762584696,216,0 +170762584746,217,0 +170762584794,218,0 +170762584843,217,0 +170762584891,219,0 +170762584939,219,0 +170762584987,219,0 +170762585035,222,0 +170762585083,219,0 +170762585131,219,0 +170762585180,219,0 +170762585228,219,0 +170762585277,219,0 +170762585325,217,0 +170762585373,215,0 +170762585421,216,0 +170762585471,216,0 +170762585520,216,0 +170762585568,217,0 +170762585618,217,0 +170762585666,217,0 +170762585715,219,0 +170762585765,218,0 +170762585813,219,0 +170762585862,219,0 +170762585910,219,0 +170762585960,219,0 +170762586008,219,0 +170762586056,219,0 +170762586104,219,0 +170762586153,215,0 +170762586203,216,0 +170762586251,215,0 +170762586299,216,0 +170762586348,216,0 +170762586396,217,0 +170762586444,217,0 +170762586492,218,0 +170762586540,218,0 +170762586589,219,0 +170762586637,219,0 +170762586685,219,0 +170762586735,219,0 +170762586784,219,0 +170762586834,219,0 +170762586883,219,0 +170762586933,218,0 +170762586981,216,0 +170762587029,216,0 +170762587076,218,0 +170762587126,218,0 +170762587174,218,0 +170762587222,218,0 +170762587271,218,0 +170762587319,218,0 +170762587369,220,0 +170762587418,218,0 +170762587466,219,0 +170762587515,219,0 +170762587563,219,0 +170762587613,219,0 +170762587661,219,0 +170762587709,218,0 +170762587757,217,0 +170762587804,217,0 +170762587852,217,0 +170762587900,217,0 +170762587948,217,0 +170762587996,218,0 +170762588044,219,0 +170762588092,218,0 +170762588140,219,0 +170762588190,219,0 +170762588238,219,0 +170762588287,219,0 +170762588337,220,0 +170762588385,219,0 +170762588433,219,0 +170762588481,219,0 +170762588529,217,0 +170762588576,216,0 +170762588624,217,0 +170762588674,217,0 +170762588722,217,0 +170762588771,217,0 +170762588821,219,0 +170762588869,217,0 +170762588917,218,0 +170762588966,218,0 +170762589014,219,0 +170762589062,219,0 +170762589111,219,0 +170762589159,219,0 +170762589207,219,0 +170762589255,219,0 +170762589303,219,0 +170762589351,216,0 +170762589398,216,0 +170762589448,216,0 +170762589496,217,0 +170762589545,217,0 +170762589595,217,0 +170762589643,218,0 +170762589691,218,0 +170762589740,218,0 +170762589788,219,0 +170762589836,219,0 +170762589884,219,0 +170762589932,219,0 +170762589981,220,0 +170762590029,219,0 +170762590077,219,0 +170762590125,218,0 +170762590173,216,0 +170762590221,216,0 +170762590269,217,0 +170762590317,217,0 +170762590366,217,0 +170762590414,218,0 +170762590464,217,0 +170762590512,218,0 +170762590560,218,0 +170762590608,219,0 +170762590656,219,0 +170762590703,219,0 +170762590751,220,0 +170762590799,219,0 +170762590847,220,0 +170762590895,219,0 +170762590943,216,0 +170762590991,216,0 +170762591039,217,0 +170762591086,217,0 +170762591136,217,0 +170762591184,217,0 +170762591233,218,0 +170762591283,219,0 +170762591331,219,0 +170762591379,219,0 +170762591428,219,0 +170762591476,219,0 +170762591524,219,0 +170762591574,219,0 +170762591622,219,0 +170762591670,219,0 +170762591717,218,0 +170762591765,215,0 +170762591813,216,0 +170762591861,216,0 +170762591909,217,0 +170762591959,217,0 +170762592006,217,0 +170762592054,218,0 +170762592102,219,0 +170762592152,219,0 +170762592201,219,0 +170762592251,219,0 +170762592301,220,0 +170762592350,219,0 +170762592398,219,0 +170762592446,219,0 +170762592496,218,0 +170762592544,216,0 +170762592592,216,0 +170762592641,216,0 +170762592689,217,0 +170762592737,217,0 +170762592786,218,0 +170762592834,218,0 +170762592884,218,0 +170762592932,218,0 +170762592980,220,0 +170762593028,219,0 +170762593077,219,0 +170762593125,220,0 +170762593174,220,0 +170762593224,219,0 +170762593272,219,0 +170762593322,218,0 +170762593371,216,0 +170762593419,216,0 +170762593467,216,0 +170762593515,217,0 +170762593563,217,0 +170762593611,217,0 +170762593659,218,0 +170762593707,218,0 +170762593756,218,0 +170762593804,219,0 +170762593852,220,0 +170762593900,219,0 +170762593948,219,0 +170762593998,220,0 +170762594046,219,0 +170762594094,218,0 +170762594143,216,0 +170762594193,216,0 +170762594241,216,0 +170762594290,217,0 +170762594340,217,0 +170762594389,218,0 +170762594437,218,0 +170762594485,219,0 +170762594533,219,0 +170762594582,219,0 +170762594630,219,0 +170762594678,219,0 +170762594726,219,0 +170762594774,219,0 +170762594824,218,0 +170762594871,219,0 +170762594921,218,0 +170762594970,217,0 +170762595018,217,0 +170762595066,217,0 +170762595114,218,0 +170762595163,218,0 +170762595211,218,0 +170762595259,219,0 +170762595307,219,0 +170762595356,219,0 +170762595406,222,0 +170762595454,220,0 +170762595502,219,0 +170762595550,219,0 +170762595597,219,0 +170762595645,219,0 +170762595693,219,0 +170762595741,217,0 +170762595789,216,0 +170762595837,217,0 +170762595885,217,0 +170762595933,217,0 +170762595981,217,0 +170762596030,218,0 +170762596078,218,0 +170762596126,219,0 +170762596174,219,0 +170762596222,219,0 +170762596270,220,0 +170762596317,220,0 +170762596365,219,0 +170762596413,219,0 +170762596461,219,0 +170762596509,219,0 +170762596557,215,0 +170762596605,215,0 +170762596653,215,0 +170762596701,216,0 +170762596748,217,0 +170762596796,217,0 +170762596844,217,0 +170762596892,218,0 +170762596940,218,0 +170762596988,219,0 +170762597036,218,0 +170762597083,218,0 +170762597131,219,0 +170762597179,220,0 +170762597227,219,0 +170762597275,219,0 +170762597324,219,0 +170762597372,214,0 +170762597420,214,0 +170762597468,215,0 +170762597518,215,0 +170762597567,216,0 +170762597615,216,0 +170762597663,216,0 +170762597711,217,0 +170762597759,217,0 +170762597806,219,0 +170762597854,219,0 +170762597902,219,0 +170762597950,218,0 +170762597998,218,0 +170762598046,218,0 +170762598094,217,0 +170762598142,215,0 +170762598190,214,0 +170762598239,214,0 +170762598287,215,0 +170762598335,215,0 +170762598383,216,0 +170762598431,217,0 +170762598480,216,0 +170762598528,217,0 +170762598576,217,0 +170762598624,218,0 +170762598672,218,0 +170762598720,219,0 +170762598769,219,0 +170762598819,219,0 +170762598868,219,0 +170762598918,219,0 +170762598967,215,0 +170762599017,214,0 +170762599066,215,0 +170762599114,216,0 +170762599162,216,0 +170762599210,217,0 +170762599258,217,0 +170762599306,218,0 +170762599355,217,0 +170762599403,218,0 +170762599451,218,0 +170762599499,219,0 +170762599547,219,0 +170762599595,219,0 +170762599643,219,0 +170762599690,219,0 +170762599738,218,0 +170762599786,216,0 +170762599834,216,0 +170762599884,217,0 +170762599932,217,0 +170762599979,218,0 +170762600027,218,0 +170762600075,218,0 +170762600125,218,0 +170762600173,219,0 +170762600221,219,0 +170762600269,220,0 +170762600317,220,0 +170762600366,219,0 +170762600416,219,0 +170762600464,219,0 +170762600512,219,0 +170762600560,215,0 +170762600609,215,0 +170762600657,215,0 +170762600706,216,0 +170762600754,216,0 +170762600802,217,0 +170762600850,217,0 +170762600900,217,0 +170762600948,218,0 +170762600997,218,0 +170762601045,218,0 +170762601095,218,0 +170762601144,218,0 +170762601192,218,0 +170762601242,218,0 +170762601290,219,0 +170762601338,215,0 +170762601386,214,0 +170762601433,213,0 +170762601481,214,0 +170762601529,215,0 +170762601579,215,0 +170762601627,215,0 +170762601675,216,0 +170762601723,216,0 +170762601771,217,0 +170762601819,218,0 +170762601867,218,0 +170762601915,218,0 +170762601963,217,0 +170762602012,218,0 +170762602062,219,0 +170762602110,218,0 +170762602158,215,0 +170762602205,214,0 +170762602255,214,0 +170762602303,215,0 +170762602352,215,0 +170762602400,216,0 +170762602448,216,0 +170762602498,216,0 +170762602546,216,0 +170762602595,216,0 +170762602643,217,0 +170762602693,217,0 +170762602740,218,0 +170762602788,218,0 +170762602836,218,0 +170762602886,218,0 +170762602934,219,0 +170762602982,214,0 +170762603030,215,0 +170762603078,215,0 +170762603127,216,0 +170762603175,216,0 +170762603224,217,0 +170762603274,217,0 +170762603322,218,0 +170762603370,218,0 +170762603418,218,0 +170762603467,219,0 +170762603515,219,0 +170762603565,219,0 +170762603614,219,0 +170762603662,220,0 +170762603712,219,0 +170762603759,216,0 +170762603807,216,0 +170762603855,216,0 +170762603903,217,0 +170762603951,217,0 +170762603999,217,0 +170762604047,218,0 +170762604095,219,0 +170762604143,219,0 +170762604191,219,0 +170762604239,219,0 +170762604289,219,0 +170762604337,219,0 +170762604386,219,0 +170762604434,220,0 +170762604482,219,0 +170762604530,218,0 +170762604578,216,0 +170762604626,216,0 +170762604674,217,0 +170762604722,218,0 +170762604771,217,0 +170762604819,218,0 +170762604867,219,0 +170762604917,220,0 +170762604965,218,0 +170762605013,220,0 +170762605061,220,0 +170762605110,220,0 +170762605158,220,0 +170762605206,221,0 +170762605254,220,0 +170762605302,220,0 +170762605350,220,0 +170762605398,220,0 +170762605446,220,0 +170762605494,220,0 +170762605542,220,0 +170762605591,220,0 +170762605639,219,0 +170762605687,219,0 +170762605735,219,0 +170762605783,219,0 +170762605831,218,0 +170762605879,219,0 +170762605928,220,0 +170762605976,219,0 +170762606024,220,0 +170762606072,219,0 +170762606122,220,0 +170762606170,220,0 +170762606218,219,0 +170762606266,220,0 +170762606314,219,0 +170762606362,220,0 +170762606409,220,0 +170762606459,219,0 +170762606507,220,0 +170762606555,216,0 +170762606604,216,0 +170762606652,217,0 +170762606700,217,0 +170762606748,217,0 +170762606798,217,0 +170762606845,218,0 +170762606893,219,0 +170762606941,219,0 +170762606991,219,0 +170762607039,219,0 +170762607088,219,0 +170762607136,219,0 +170762607184,219,0 +170762607232,219,0 +170762607280,219,0 +170762607328,218,0 +170762607376,215,0 +170762607425,216,0 +170762607473,216,0 +170762607523,216,0 +170762607572,217,0 +170762607620,218,0 +170762607668,217,0 +170762607718,218,0 +170762607766,218,0 +170762607814,218,0 +170762607862,219,0 +170762607910,220,0 +170762607957,219,0 +170762608005,219,0 +170762608053,219,0 +170762608103,218,0 +170762608151,215,0 +170762608199,215,0 +170762608248,216,0 +170762608296,216,0 +170762608344,216,0 +170762608394,217,0 +170762608441,217,0 +170762608489,217,0 +170762608537,218,0 +170762608585,218,0 +170762608635,219,0 +170762608683,219,0 +170762608731,219,0 +170762608778,219,0 +170762608826,219,0 +170762608876,220,0 +170762608925,221,0 +170762608973,215,0 +170762609021,215,0 +170762609069,215,0 +170762609117,215,0 +170762609166,216,0 +170762609214,216,0 +170762609263,217,0 +170762609311,217,0 +170762609359,217,0 +170762609407,217,0 +170762609457,219,0 +170762609506,219,0 +170762609556,219,0 +170762609605,218,0 +170762609653,219,0 +170762609703,219,0 +170762609751,215,0 +170762609799,214,0 +170762609847,215,0 +170762609896,215,0 +170762609946,215,0 +170762609994,215,0 +170762610041,216,0 +170762610089,216,0 +170762610137,217,0 +170762610185,218,0 +170762610233,218,0 +170762610281,218,0 +170762610331,219,0 +170762610378,219,0 +170762610426,219,0 +170762610474,219,0 +170762610524,219,0 +170762610572,215,0 +170762610620,215,0 +170762610667,215,0 +170762610717,216,0 +170762610766,216,0 +170762610816,216,0 +170762610864,217,0 +170762610912,217,0 +170762610959,217,0 +170762611007,218,0 +170762611057,218,0 +170762611106,219,0 +170762611154,219,0 +170762611204,219,0 +170762611252,219,0 +170762611300,219,0 +170762611348,216,0 +170762611396,216,0 +170762611444,217,0 +170762611491,217,0 +170762611539,218,0 +170762611587,218,0 +170762611637,218,0 +170762611686,218,0 +170762611734,219,0 +170762611782,219,0 +170762611830,219,0 +170762611879,219,0 +170762611927,219,0 +170762611975,219,0 +170762612025,219,0 +170762612073,221,0 +170762612121,219,0 +170762612169,217,0 +170762612218,217,0 +170762612268,217,0 +170762612317,217,0 +170762612367,218,0 +170762612415,218,0 +170762612463,218,0 +170762612512,218,0 +170762612560,219,0 +170762612610,219,0 +170762612658,219,0 +170762612706,219,0 +170762612755,219,0 +170762612805,219,0 +170762612853,219,0 +170762612901,219,0 +170762612949,216,0 +170762612997,216,0 +170762613046,217,0 +170762613094,217,0 +170762613144,218,0 +170762613192,218,0 +170762613241,218,0 +170762613289,218,0 +170762613337,219,0 +170762613386,219,0 +170762613434,220,0 +170762613482,220,0 +170762613530,220,0 +170762613578,219,0 +170762613626,219,0 +170762613674,219,0 +170762613723,219,0 +170762613771,216,0 +170762613819,216,0 +170762613867,216,0 +170762613915,217,0 +170762613965,216,0 +170762614014,217,0 +170762614062,217,0 +170762614112,218,0 +170762614161,219,0 +170762614211,220,0 +170762614259,219,0 +170762614308,219,0 +170762614358,219,0 +170762614406,220,0 +170762614454,219,0 +170762614502,219,0 +170762614551,218,0 +170762614599,216,0 +170762614647,216,0 +170762614695,217,0 +170762614743,216,0 +170762614791,217,0 +170762614839,218,0 +170762614888,218,0 +170762614938,218,0 +170762614987,219,0 +170762615035,219,0 +170762615083,219,0 +170762615131,218,0 +170762615179,219,0 +170762615228,220,0 +170762615276,219,0 +170762615326,219,0 +170762615375,216,0 +170762615423,217,0 +170762615471,216,0 +170762615521,217,0 +170762615569,218,0 +170762615617,218,0 +170762615664,219,0 +170762615712,218,0 +170762615762,220,0 +170762615812,219,0 +170762615860,219,0 +170762615908,219,0 +170762615956,219,0 +170762616003,218,0 +170762616053,219,0 +170762616101,219,0 +170762616149,215,0 +170762616197,216,0 +170762616246,216,0 +170762616294,217,0 +170762616344,217,0 +170762616393,218,0 +170762616441,218,0 +170762616489,218,0 +170762616537,218,0 +170762616587,218,0 +170762616635,219,0 +170762616684,220,0 +170762616734,219,0 +170762616782,219,0 +170762616830,219,0 +170762616879,219,0 +170762616929,219,0 +170762616977,216,0 +170762617025,217,0 +170762617074,216,0 +170762617122,217,0 +170762617170,217,0 +170762617218,217,0 +170762617266,218,0 +170762617316,218,0 +170762617365,219,0 +170762617415,220,0 +170762617462,219,0 +170762617510,221,0 +170762617558,219,0 +170762617606,219,0 +170762617654,219,0 +170762617702,219,0 +170762617750,217,0 +170762617800,215,0 +170762617847,215,0 +170762617897,216,0 +170762617946,217,0 +170762617994,217,0 +170762618042,217,0 +170762618092,218,0 +170762618141,218,0 +170762618189,218,0 +170762618237,219,0 +170762618285,219,0 +170762618333,219,0 +170762618383,219,0 +170762618432,220,0 +170762618482,219,0 +170762618530,218,0 +170762618578,215,0 +170762618626,215,0 +170762618674,215,0 +170762618722,216,0 +170762618769,216,0 +170762618819,217,0 +170762618868,217,0 +170762618918,217,0 +170762618967,218,0 +170762619017,219,0 +170762619066,219,0 +170762619114,219,0 +170762619162,220,0 +170762619210,219,0 +170762619260,219,0 +170762619308,219,0 +170762619356,215,0 +170762619404,215,0 +170762619453,215,0 +170762619501,216,0 +170762619549,216,0 +170762619597,216,0 +170762619645,216,0 +170762619693,217,0 +170762619741,217,0 +170762619789,216,0 +170762619838,218,0 +170762619888,218,0 +170762619936,220,0 +170762619985,219,0 +170762620035,220,0 +170762620083,220,0 +170762620131,219,0 +170762620180,216,0 +170762620228,216,0 +170762620278,215,0 +170762620325,216,0 +170762620373,216,0 +170762620421,217,0 +170762620469,218,0 +170762620517,218,0 +170762620567,218,0 +170762620615,219,0 +170762620664,219,0 +170762620712,219,0 +170762620760,220,0 +170762620810,220,0 +170762620857,219,0 +170762620907,219,0 +170762620955,219,0 +170762621003,216,0 +170762621052,216,0 +170762621100,216,0 +170762621148,216,0 +170762621198,217,0 +170762621246,217,0 +170762621293,217,0 +170762621341,218,0 +170762621391,218,0 +170762621439,218,0 +170762621487,218,0 +170762621535,219,0 +170762621582,220,0 +170762621630,218,0 +170762621678,219,0 +170762621726,218,0 +170762621774,215,0 +170762621824,215,0 +170762621872,216,0 +170762621920,217,0 +170762621969,216,0 +170762622017,217,0 +170762622065,217,0 +170762622113,217,0 +170762622161,218,0 +170762622209,218,0 +170762622257,219,0 +170762622306,219,0 +170762622354,219,0 +170762622402,220,0 +170762622450,219,0 +170762622498,219,0 +170762622546,218,0 +170762622594,215,0 +170762622642,215,0 +170762622690,216,0 +170762622738,216,0 +170762622786,216,0 +170762622834,217,0 +170762622883,217,0 +170762622931,218,0 +170762622979,219,0 +170762623027,219,0 +170762623075,219,0 +170762623123,219,0 +170762623171,219,0 +170762623219,219,0 +170762623268,219,0 +170762623318,219,0 +170762623366,217,0 +170762623415,216,0 +170762623463,216,0 +170762623511,217,0 +170762623559,218,0 +170762623607,218,0 +170762623655,218,0 +170762623703,218,0 +170762623751,219,0 +170762623799,219,0 +170762623847,219,0 +170762623895,220,0 +170762623943,219,0 +170762623992,219,0 +170762624040,219,0 +170762624088,219,0 +170762624136,218,0 +170762624184,218,0 +170762624232,218,0 +170762624281,218,0 +170762624329,219,0 +170762624379,218,0 +170762624428,219,0 +170762624476,219,0 +170762624524,219,0 +170762624572,219,0 +170762624620,220,0 +170762624669,220,0 +170762624719,220,0 +170762624767,219,0 +170762624815,219,0 +170762624863,219,0 +170762624911,219,0 +170762624959,218,0 +170762625008,217,0 +170762625056,218,0 +170762625104,217,0 +170762625152,217,0 +170762625202,219,0 +170762625249,218,0 +170762625299,219,0 +170762625347,219,0 +170762625396,218,0 +170762625446,219,0 +170762625494,219,0 +170762625543,221,0 +170762625591,221,0 +170762625639,219,0 +170762625687,219,0 +170762625737,219,0 +170762625785,216,0 +170762625834,215,0 +170762625882,216,0 +170762625930,216,0 +170762625980,217,0 +170762626028,218,0 +170762626075,218,0 +170762626123,218,0 +170762626171,218,0 +170762626219,218,0 +170762626269,219,0 +170762626317,219,0 +170762626366,219,0 +170762626416,219,0 +170762626465,219,0 +170762626515,219,0 +170762626563,218,0 +170762626612,215,0 +170762626662,216,0 +170762626712,216,0 +170762626759,216,0 +170762626807,216,0 +170762626855,217,0 +170762626903,217,0 +170762626951,217,0 +170762626999,218,0 +170762627047,218,0 +170762627095,219,0 +170762627143,219,0 +170762627191,219,0 +170762627241,220,0 +170762627288,219,0 +170762627336,219,0 +170762627384,215,0 +170762627432,215,0 +170762627480,216,0 +170762627530,217,0 +170762627579,217,0 +170762627629,217,0 +170762627677,217,0 +170762627726,218,0 +170762627774,218,0 +170762627822,218,0 +170762627870,219,0 +170762627918,219,0 +170762627966,220,0 +170762628015,219,0 +170762628063,219,0 +170762628111,218,0 +170762628158,218,0 +170762628206,215,0 +170762628254,216,0 +170762628302,216,0 +170762628350,218,0 +170762628398,217,0 +170762628446,218,0 +170762628494,218,0 +170762628542,219,0 +170762628590,219,0 +170762628637,221,0 +170762628687,220,0 +170762628737,220,0 +170762628785,219,0 +170762628832,219,0 +170762628880,219,0 +170762628928,219,0 +170762628976,216,0 +170762629026,216,0 +170762629075,217,0 +170762629123,218,0 +170762629171,218,0 +170762629221,218,0 +170762629270,219,0 +170762629320,218,0 +170762629367,219,0 +170762629417,219,0 +170762629465,220,0 +170762629513,219,0 +170762629561,220,0 +170762629609,219,0 +170762629657,219,0 +170762629705,219,0 +170762629753,218,0 +170762629801,216,0 +170762629850,215,0 +170762629899,216,0 +170762629947,216,0 +170762629997,216,0 +170762630045,217,0 +170762630093,217,0 +170762630141,217,0 +170762630190,218,0 +170762630240,218,0 +170762630289,219,0 +170762630337,219,0 +170762630385,219,0 +170762630434,219,0 +170762630482,220,0 +170762630532,219,0 +170762630580,215,0 +170762630629,215,0 +170762630679,215,0 +170762630727,215,0 +170762630775,216,0 +170762630823,217,0 +170762630871,217,0 +170762630921,217,0 +170762630970,217,0 +170762631018,218,0 +170762631067,218,0 +170762631115,219,0 +170762631163,219,0 +170762631211,219,0 +170762631259,219,0 +170762631307,219,0 +170762631356,218,0 +170762631404,215,0 +170762631454,215,0 +170762631502,215,0 +170762631550,216,0 +170762631599,216,0 +170762631647,216,0 +170762631697,216,0 +170762631746,217,0 +170762631794,219,0 +170762631842,218,0 +170762631891,218,0 +170762631941,219,0 +170762631989,220,0 +170762632038,219,0 +170762632086,219,0 +170762632136,222,0 +170762632184,217,0 +170762632232,215,0 +170762632280,216,0 +170762632327,216,0 +170762632375,217,0 +170762632423,218,0 +170762632471,218,0 +170762632519,218,0 +170762632567,218,0 +170762632616,218,0 +170762632664,219,0 +170762632714,218,0 +170762632762,219,0 +170762632811,219,0 +170762632861,220,0 +170762632909,219,0 +170762632957,220,0 +170762633004,215,0 +170762633054,215,0 +170762633104,217,0 +170762633151,217,0 +170762633199,217,0 +170762633247,218,0 +170762633295,218,0 +170762633345,219,0 +170762633393,219,0 +170762633442,220,0 +170762633492,219,0 +170762633541,220,0 +170762633589,219,0 +170762633639,219,0 +170762633686,219,0 +170762633735,218,0 +170762633782,215,0 +170762633830,215,0 +170762633878,215,0 +170762633928,216,0 +170762633977,216,0 +170762634025,217,0 +170762634073,217,0 +170762634121,218,0 +170762634171,218,0 +170762634219,218,0 +170762634267,218,0 +170762634314,219,0 +170762634362,219,0 +170762634410,219,0 +170762634460,219,0 +170762634508,219,0 +170762634556,218,0 +170762634604,215,0 +170762634653,216,0 +170762634701,216,0 +170762634751,217,0 +170762634800,217,0 +170762634848,217,0 +170762634898,218,0 +170762634946,218,0 +170762634993,218,0 +170762635041,219,0 +170762635089,218,0 +170762635137,219,0 +170762635187,220,0 +170762635235,220,0 +170762635283,219,0 +170762635331,218,0 +170762635380,216,0 +170762635428,216,0 +170762635476,216,0 +170762635524,216,0 +170762635573,217,0 +170762635621,217,0 +170762635671,218,0 +170762635720,218,0 +170762635768,219,0 +170762635816,219,0 +170762635864,219,0 +170762635912,219,0 +170762635960,219,0 +170762636008,220,0 +170762636056,219,0 +170762636104,219,0 +170762636152,218,0 +170762636202,217,0 +170762636251,217,0 +170762636299,217,0 +170762636347,218,0 +170762636395,219,0 +170762636443,218,0 +170762636490,218,0 +170762636538,219,0 +170762636588,219,0 +170762636636,219,0 +170762636685,219,0 +170762636733,219,0 +170762636781,219,0 +170762636831,219,0 +170762636879,219,0 +170762636927,218,0 +170762636976,217,0 +170762637024,217,0 +170762637074,218,0 +170762637121,218,0 +170762637169,219,0 +170762637217,219,0 +170762637265,219,0 +170762637315,219,0 +170762637363,219,0 +170762637411,219,0 +170762637460,220,0 +170762637510,220,0 +170762637559,220,0 +170762637607,219,0 +170762637655,219,0 +170762637703,219,0 +170762637751,219,0 +170762637800,216,0 +170762637848,216,0 +170762637896,217,0 +170762637944,217,0 +170762637994,217,0 +170762638042,217,0 +170762638091,218,0 +170762638141,218,0 +170762638190,219,0 +170762638238,219,0 +170762638288,220,0 +170762638336,220,0 +170762638384,219,0 +170762638433,219,0 +170762638481,219,0 +170762638531,219,0 +170762638579,218,0 +170762638627,216,0 +170762638675,216,0 +170762638723,216,0 +170762638770,217,0 +170762638818,216,0 +170762638866,218,0 +170762638916,218,0 +170762638965,218,0 +170762639013,218,0 +170762639061,219,0 +170762639109,219,0 +170762639159,219,0 +170762639207,219,0 +170762639255,219,0 +170762639303,219,0 +170762639351,219,0 +170762639398,216,0 +170762639446,215,0 +170762639494,216,0 +170762639544,217,0 +170762639593,217,0 +170762639643,217,0 +170762639691,217,0 +170762639740,218,0 +170762639790,220,0 +170762639838,219,0 +170762639887,219,0 +170762639937,219,0 +170762639986,220,0 +170762640034,220,0 +170762640082,219,0 +170762640130,219,0 +170762640178,216,0 +170762640228,215,0 +170762640277,216,0 +170762640327,216,0 +170762640376,217,0 +170762640424,218,0 +170762640472,218,0 +170762640520,218,0 +170762640570,219,0 +170762640617,219,0 +170762640667,219,0 +170762640715,218,0 +170762640763,219,0 +170762640811,219,0 +170762640859,219,0 +170762640908,220,0 +170762640956,219,0 +170762641006,217,0 +170762641054,216,0 +170762641102,217,0 +170762641150,218,0 +170762641198,217,0 +170762641246,218,0 +170762641294,218,0 +170762641342,218,0 +170762641390,219,0 +170762641439,219,0 +170762641487,219,0 +170762641535,219,0 +170762641583,220,0 +170762641632,219,0 +170762641680,220,0 +170762641728,219,0 +170762641776,217,0 +170762641824,216,0 +170762641873,216,0 +170762641921,218,0 +170762641969,217,0 +170762642017,217,0 +170762642067,218,0 +170762642115,218,0 +170762642164,219,0 +170762642212,219,0 +170762642260,219,0 +170762642308,219,0 +170762642357,219,0 +170762642405,219,0 +170762642455,220,0 +170762642503,220,0 +170762642552,219,0 +170762642600,216,0 +170762642648,216,0 +170762642696,216,0 +170762642744,217,0 +170762642794,217,0 +170762642842,217,0 +170762642891,217,0 +170762642941,218,0 +170762642990,218,0 +170762643038,219,0 +170762643088,219,0 +170762643136,219,0 +170762643184,220,0 +170762643231,219,0 +170762643281,219,0 +170762643329,219,0 +170762643379,219,0 +170762643426,216,0 +170762643474,216,0 +170762643522,217,0 +170762643570,218,0 +170762643618,217,0 +170762643666,218,0 +170762643714,219,0 +170762643764,219,0 +170762643813,219,0 +170762643861,219,0 +170762643909,219,0 +170762643957,220,0 +170762644005,219,0 +170762644053,220,0 +170762644102,219,0 +170762644150,219,0 +170762644198,216,0 +170762644248,217,0 +170762644296,217,0 +170762644343,218,0 +170762644393,218,0 +170762644441,218,0 +170762644490,219,0 +170762644538,219,0 +170762644588,219,0 +170762644637,220,0 +170762644685,220,0 +170762644735,219,0 +170762644783,219,0 +170762644831,219,0 +170762644879,219,0 +170762644928,219,0 +170762644978,219,0 +170762645026,216,0 +170762645075,216,0 +170762645123,216,0 +170762645171,216,0 +170762645221,217,0 +170762645269,217,0 +170762645316,218,0 +170762645364,218,0 +170762645414,219,0 +170762645462,219,0 +170762645512,219,0 +170762645559,219,0 +170762645607,219,0 +170762645655,220,0 +170762645705,219,0 +170762645753,218,0 +170762645802,215,0 +170762645852,215,0 +170762645900,215,0 +170762645948,216,0 +170762645997,216,0 +170762646045,215,0 +170762646093,217,0 +170762646143,218,0 +170762646192,219,0 +170762646240,218,0 +170762646288,217,0 +170762646336,219,0 +170762646384,219,0 +170762646432,219,0 +170762646480,219,0 +170762646528,219,0 +170762646577,219,0 +170762646626,215,0 +170762646676,214,0 +170762646724,215,0 +170762646772,216,0 +170762646821,216,0 +170762646869,216,0 +170762646917,216,0 +170762646965,217,0 +170762647013,218,0 +170762647063,217,0 +170762647112,219,0 +170762647160,219,0 +170762647208,219,0 +170762647258,218,0 +170762647306,219,0 +170762647355,219,0 +170762647403,215,0 +170762647451,214,0 +170762647499,215,0 +170762647547,215,0 +170762647595,216,0 +170762647643,216,0 +170762647690,217,0 +170762647738,217,0 +170762647788,217,0 +170762647836,218,0 +170762647885,218,0 +170762647933,219,0 +170762647981,219,0 +170762648029,219,0 +170762648077,219,0 +170762648125,218,0 +170762648174,218,0 +170762648224,215,0 +170762648272,215,0 +170762648320,216,0 +170762648368,217,0 +170762648416,217,0 +170762648464,217,0 +170762648512,217,0 +170762648560,218,0 +170762648608,219,0 +170762648656,219,0 +170762648704,219,0 +170762648751,219,0 +170762648799,219,0 +170762648849,219,0 +170762648898,219,0 +170762648948,219,0 +170762648996,216,0 +170762649043,216,0 +170762649091,216,0 +170762649139,216,0 +170762649187,217,0 +170762649237,217,0 +170762649285,217,0 +170762649333,219,0 +170762649380,218,0 +170762649428,219,0 +170762649478,219,0 +170762649527,219,0 +170762649575,219,0 +170762649623,219,0 +170762649671,219,0 +170762649719,219,0 +170762649769,218,0 +170762649817,215,0 +170762649865,214,0 +170762649912,214,0 +170762649962,215,0 +170762650010,215,0 +170762650059,215,0 +170762650107,216,0 +170762650155,216,0 +170762650203,215,0 +170762650251,217,0 +170762650300,218,0 +170762650348,217,0 +170762650398,218,0 +170762650445,219,0 +170762650495,218,0 +170762650544,219,0 +170762650594,219,0 +170762650643,215,0 +170762650691,215,0 +170762650741,217,0 +170762650789,216,0 +170762650837,216,0 +170762650885,216,0 +170762650934,217,0 +170762650984,218,0 +170762651032,218,0 +170762651080,219,0 +170762651128,218,0 +170762651175,218,0 +170762651223,219,0 +170762651271,219,0 +170762651319,218,0 +170762651369,218,0 +170762651418,215,0 +170762651466,215,0 +170762651516,215,0 +170762651564,216,0 +170762651611,216,0 +170762651659,216,0 +170762651707,217,0 +170762651755,217,0 +170762651803,218,0 +170762651851,219,0 +170762651899,219,0 +170762651947,218,0 +170762651994,219,0 +170762652042,219,0 +170762652090,219,0 +170762652140,219,0 +170762652188,219,0 +170762652236,216,0 +170762652284,217,0 +170762652333,217,0 +170762652383,217,0 +170762652431,218,0 +170762652479,218,0 +170762652528,219,0 +170762652578,219,0 +170762652627,219,0 +170762652677,219,0 +170762652724,220,0 +170762652772,220,0 +170762652820,219,0 +170762652870,219,0 +170762652918,219,0 +170762652967,218,0 +170762653017,218,0 +170762653065,218,0 +170762653114,218,0 +170762653162,218,0 +170762653210,219,0 +170762653258,218,0 +170762653306,220,0 +170762653354,219,0 +170762653402,219,0 +170762653451,220,0 +170762653499,219,0 +170762653547,220,0 +170762653595,220,0 +170762653643,219,0 +170762653691,219,0 +170762653740,219,0 +170762653788,218,0 +170762653836,219,0 +170762653884,219,0 +170762653932,218,0 +170762653979,219,0 +170762654027,220,0 +170762654075,220,0 +170762654123,221,0 +170762654173,220,0 +170762654221,220,0 +170762654269,220,0 +170762654316,219,0 +170762654364,219,0 +170762654414,220,0 +170762654463,219,0 +170762654511,219,0 +170762654559,219,0 +170762654607,217,0 +170762654655,218,0 +170762654702,217,0 +170762654750,218,0 +170762654798,218,0 +170762654846,218,0 +170762654894,219,0 +170762654942,219,0 +170762654990,219,0 +170762655039,220,0 +170762655087,220,0 +170762655135,220,0 +170762655183,220,0 +170762655231,220,0 +170762655278,219,0 +170762655326,219,0 +170762655374,219,0 +170762655422,216,0 +170762655471,216,0 +170762655519,216,0 +170762655568,216,0 +170762655616,217,0 +170762655664,219,0 +170762655712,218,0 +170762655760,218,0 +170762655808,219,0 +170762655857,219,0 +170762655905,219,0 +170762655953,219,0 +170762656001,220,0 +170762656049,219,0 +170762656099,219,0 +170762656148,220,0 +170762656196,219,0 +170762656245,216,0 +170762656295,216,0 +170762656343,216,0 +170762656391,216,0 +170762656438,218,0 +170762656486,218,0 +170762656534,217,0 +170762656582,218,0 +170762656630,218,0 +170762656679,219,0 +170762656729,220,0 +170762656777,219,0 +170762656825,219,0 +170762656872,218,0 +170762656920,219,0 +170762656968,218,0 +170762657016,216,0 +170762657064,215,0 +170762657112,217,0 +170762657160,216,0 +170762657208,217,0 +170762657256,217,0 +170762657305,217,0 +170762657353,218,0 +170762657403,218,0 +170762657451,219,0 +170762657499,219,0 +170762657549,219,0 +170762657596,220,0 +170762657644,219,0 +170762657692,219,0 +170762657742,219,0 +170762657790,218,0 +170762657838,215,0 +170762657887,215,0 +170762657935,216,0 +170762657983,217,0 +170762658033,216,0 +170762658080,216,0 +170762658130,217,0 +170762658178,218,0 +170762658227,218,0 +170762658275,218,0 +170762658323,218,0 +170762658371,219,0 +170762658419,219,0 +170762658466,219,0 +170762658514,219,0 +170762658564,219,0 +170762658612,215,0 +170762658660,215,0 +170762658709,215,0 +170762658757,216,0 +170762658805,216,0 +170762658854,217,0 +170762658902,216,0 +170762658950,217,0 +170762658998,216,0 +170762659046,218,0 +170762659094,218,0 +170762659142,219,0 +170762659190,218,0 +170762659237,219,0 +170762659285,218,0 +170762659333,220,0 +170762659381,219,0 +170762659431,215,0 +170762659480,214,0 +170762659528,214,0 +170762659576,215,0 +170762659625,215,0 +170762659673,215,0 +170762659721,216,0 +170762659769,216,0 +170762659817,217,0 +170762659867,218,0 +170762659915,218,0 +170762659963,218,0 +170762660012,218,0 +170762660062,219,0 +170762660109,219,0 +170762660157,219,0 +170762660205,218,0 +170762660253,216,0 +170762660301,216,0 +170762660349,216,0 +170762660397,217,0 +170762660446,217,0 +170762660494,217,0 +170762660542,217,0 +170762660592,218,0 +170762660641,218,0 +170762660689,219,0 +170762660737,219,0 +170762660785,219,0 +170762660833,218,0 +170762660881,219,0 +170762660930,219,0 +170762660978,219,0 +170762661028,217,0 +170762661076,217,0 +170762661125,217,0 +170762661175,218,0 +170762661223,218,0 +170762661271,218,0 +170762661318,218,0 +170762661366,219,0 +170762661414,219,0 +170762661462,219,0 +170762661510,220,0 +170762661558,219,0 +170762661606,220,0 +170762661654,219,0 +170762661704,219,0 +170762661751,218,0 +170762661799,218,0 +170762661849,218,0 +170762661897,218,0 +170762661945,218,0 +170762661993,218,0 +170762662041,218,0 +170762662089,217,0 +170762662138,218,0 +170762662186,218,0 +170762662234,218,0 +170762662282,219,0 +170762662330,219,0 +170762662378,220,0 +170762662426,219,0 +170762662475,220,0 +170762662523,219,0 +170762662571,218,0 +170762662619,218,0 +170762662667,216,0 +170762662715,216,0 +170762662763,217,0 +170762662811,217,0 +170762662860,217,0 +170762662908,218,0 +170762662956,217,0 +170762663004,218,0 +170762663054,218,0 +170762663102,219,0 +170762663151,220,0 +170762663199,219,0 +170762663248,219,0 +170762663296,219,0 +170762663344,219,0 +170762663392,219,0 +170762663440,216,0 +170762663490,216,0 +170762663537,216,0 +170762663587,217,0 +170762663635,217,0 +170762663684,217,0 +170762663732,218,0 +170762663780,218,0 +170762663828,219,0 +170762663877,218,0 +170762663925,219,0 +170762663973,219,0 +170762664021,219,0 +170762664069,219,0 +170762664117,219,0 +170762664165,219,0 +170762664214,217,0 +170762664262,216,0 +170762664312,216,0 +170762664360,216,0 +170762664408,217,0 +170762664457,218,0 +170762664505,218,0 +170762664553,218,0 +170762664601,219,0 +170762664649,219,0 +170762664698,219,0 +170762664746,219,0 +170762664794,219,0 +170762664842,219,0 +170762664890,219,0 +170762664938,219,0 +170762664987,219,0 +170762665035,216,0 +170762665083,216,0 +170762665131,216,0 +170762665179,216,0 +170762665227,217,0 +170762665275,218,0 +170762665322,218,0 +170762665370,218,0 +170762665418,219,0 +170762665466,218,0 +170762665514,219,0 +170762665564,219,0 +170762665612,219,0 +170762665661,220,0 +170762665709,219,0 +170762665758,219,0 +170762665806,218,0 +170762665854,217,0 +170762665902,217,0 +170762665952,217,0 +170762665999,217,0 +170762666047,218,0 +170762666097,218,0 +170762666145,218,0 +170762666194,219,0 +170762666244,219,0 +170762666293,219,0 +170762666341,219,0 +170762666389,219,0 +170762666437,219,0 +170762666485,220,0 +170762666533,219,0 +170762666582,219,0 +170762666630,216,0 +170762666680,215,0 +170762666728,216,0 +170762666776,216,0 +170762666824,217,0 +170762666873,217,0 +170762666923,218,0 +170762666971,218,0 +170762667018,218,0 +170762667066,219,0 +170762667116,218,0 +170762667164,219,0 +170762667212,219,0 +170762667261,219,0 +170762667311,219,0 +170762667359,219,0 +170762667407,218,0 +170762667455,215,0 +170762667504,215,0 +170762667554,216,0 +170762667602,216,0 +170762667650,216,0 +170762667698,216,0 +170762667745,217,0 +170762667793,217,0 +170762667841,218,0 +170762667891,218,0 +170762667939,218,0 +170762667986,219,0 +170762668034,219,0 +170762668084,219,0 +170762668133,218,0 +170762668181,219,0 +170762668231,217,0 +170762668280,215,0 +170762668328,215,0 +170762668376,216,0 +170762668426,216,0 +170762668473,217,0 +170762668521,216,0 +170762668569,217,0 +170762668617,217,0 +170762668665,218,0 +170762668713,218,0 +170762668763,219,0 +170762668811,218,0 +170762668859,219,0 +170762668907,219,0 +170762668955,219,0 +170762669003,218,0 +170762669052,216,0 +170762669100,215,0 +170762669148,216,0 +170762669197,217,0 +170762669245,216,0 +170762669293,217,0 +170762669341,219,0 +170762669389,219,0 +170762669437,218,0 +170762669487,218,0 +170762669535,219,0 +170762669583,219,0 +170762669632,219,0 +170762669680,219,0 +170762669728,219,0 +170762669776,219,0 +170762669826,217,0 +170762669875,215,0 +170762669923,216,0 +170762669973,216,0 +170762670022,216,0 +170762670070,217,0 +170762670118,217,0 +170762670166,218,0 +170762670214,218,0 +170762670262,219,0 +170762670311,219,0 +170762670359,218,0 +170762670409,219,0 +170762670458,218,0 +170762670506,219,0 +170762670554,219,0 +170762670602,218,0 +170762670650,216,0 +170762670700,215,0 +170762670747,216,0 +170762670795,216,0 +170762670843,216,0 +170762670891,217,0 +170762670941,217,0 +170762670989,217,0 +170762671036,219,0 +170762671084,219,0 +170762671132,219,0 +170762671182,219,0 +170762671231,219,0 +170762671281,219,0 +170762671329,219,0 +170762671377,219,0 +170762671425,218,0 +170762671473,215,0 +170762671521,215,0 +170762671570,215,0 +170762671620,215,0 +170762671668,217,0 +170762671716,216,0 +170762671765,217,0 +170762671813,216,0 +170762671861,219,0 +170762671911,219,0 +170762671959,219,0 +170762672007,219,0 +170762672055,219,0 +170762672103,219,0 +170762672151,219,0 +170762672200,218,0 +170762672248,215,0 +170762672296,216,0 +170762672344,216,0 +170762672392,217,0 +170762672439,217,0 +170762672487,217,0 +170762672535,218,0 +170762672583,218,0 +170762672631,220,0 +170762672679,218,0 +170762672726,218,0 +170762672776,219,0 +170762672824,219,0 +170762672873,219,0 +170762672921,219,0 +170762672969,218,0 +170762673018,219,0 +170762673066,218,0 +170762673114,218,0 +170762673162,219,0 +170762673210,218,0 +170762673258,219,0 +170762673308,219,0 +170762673356,219,0 +170762673403,219,0 +170762673453,220,0 +170762673501,219,0 +170762673550,220,0 +170762673598,220,0 +170762673646,219,0 +170762673696,219,0 +170762673743,219,0 +170762673791,219,0 +170762673841,217,0 +170762673889,217,0 +170762673937,217,0 +170762673985,217,0 +170762674032,217,0 +170762674080,218,0 +170762674130,218,0 +170762674179,219,0 +170762674229,219,0 +170762674277,219,0 +170762674325,219,0 +170762674373,219,0 +170762674421,220,0 +170762674468,219,0 +170762674516,219,0 +170762674564,219,0 +170762674614,218,0 +170762674664,215,0 +170762674712,215,0 +170762674759,216,0 +170762674809,216,0 +170762674857,217,0 +170762674905,217,0 +170762674953,217,0 +170762675001,217,0 +170762675048,218,0 +170762675096,220,0 +170762675144,219,0 +170762675192,219,0 +170762675240,220,0 +170762675288,219,0 +170762675336,219,0 +170762675385,219,0 +170762675433,215,0 +170762675481,215,0 +170762675529,215,0 +170762675577,215,0 +170762675624,216,0 +170762675674,216,0 +170762675723,217,0 +170762675771,217,0 +170762675819,218,0 +170762675868,219,0 +170762675916,218,0 +170762675964,219,0 +170762676012,219,0 +170762676060,220,0 +170762676108,220,0 +170762676156,219,0 +170762676204,218,0 +170762676252,216,0 +170762676300,215,0 +170762676348,215,0 +170762676397,216,0 +170762676445,216,0 +170762676495,217,0 +170762676543,217,0 +170762676591,217,0 +170762676640,217,0 +170762676688,218,0 +170762676737,218,0 +170762676785,219,0 +170762676833,219,0 +170762676881,219,0 +170762676929,219,0 +170762676977,219,0 +170762677025,218,0 +170762677073,216,0 +170762677123,216,0 +170762677170,216,0 +170762677218,217,0 +170762677268,218,0 +170762677316,218,0 +170762677364,218,0 +170762677412,219,0 +170762677461,219,0 +170762677509,219,0 +170762677557,219,0 +170762677605,218,0 +170762677653,219,0 +170762677701,219,0 +170762677749,219,0 +170762677797,219,0 +170762677845,216,0 +170762677893,217,0 +170762677941,217,0 +170762677989,217,0 +170762678037,217,0 +170762678085,218,0 +170762678134,218,0 +170762678184,219,0 +170762678232,219,0 +170762678280,219,0 +170762678327,221,0 +170762678375,219,0 +170762678423,220,0 +170762678471,218,0 +170762678521,219,0 +170762678569,218,0 +170762678618,218,0 +170762678668,216,0 +170762678716,216,0 +170762678765,217,0 +170762678813,217,0 +170762678863,217,0 +170762678912,218,0 +170762678960,218,0 +170762679008,219,0 +170762679056,219,0 +170762679105,219,0 +170762679153,219,0 +170762679203,218,0 +170762679252,219,0 +170762679302,220,0 +170762679351,219,0 +170762679399,219,0 +170762679449,215,0 +170762679496,215,0 +170762679544,215,0 +170762679592,215,0 +170762679640,215,0 +170762679688,217,0 +170762679738,217,0 +170762679786,218,0 +170762679834,218,0 +170762679883,218,0 +170762679931,218,0 +170762679979,219,0 +170762680028,219,0 +170762680078,219,0 +170762680126,219,0 +170762680174,219,0 +170762680222,218,0 +170762680271,215,0 +170762680319,215,0 +170762680367,215,0 +170762680415,215,0 +170762680463,217,0 +170762680511,216,0 +170762680560,217,0 +170762680608,217,0 +170762680656,217,0 +170762680704,218,0 +170762680752,218,0 +170762680801,218,0 +170762680849,219,0 +170762680897,219,0 +170762680947,218,0 +170762680995,218,0 +170762681043,215,0 +170762681091,215,0 +170762681140,215,0 +170762681190,216,0 +170762681237,216,0 +170762681285,216,0 +170762681335,217,0 +170762681383,217,0 +170762681432,218,0 +170762681480,218,0 +170762681528,219,0 +170762681578,220,0 +170762681627,218,0 +170762681677,219,0 +170762681725,219,0 +170762681774,219,0 +170762681824,218,0 +170762681873,215,0 +170762681923,215,0 +170762681971,216,0 +170762682019,216,0 +170762682066,216,0 +170762682114,217,0 +170762682162,217,0 +170762682212,217,0 +170762682259,218,0 +170762682307,218,0 +170762682355,218,0 +170762682403,219,0 +170762682453,219,0 +170762682500,219,0 +170762682548,219,0 +170762682598,219,0 +170762682645,218,0 +170762682693,215,0 +170762682743,216,0 +170762682792,216,0 +170762682840,216,0 +170762682888,216,0 +170762682936,217,0 +170762682985,218,0 +170762683033,218,0 +170762683081,219,0 +170762683129,219,0 +170762683177,219,0 +170762683225,219,0 +170762683273,219,0 +170762683321,219,0 +170762683370,218,0 +170762683418,218,0 +170762683466,215,0 +170762683514,215,0 +170762683564,215,0 +170762683612,216,0 +170762683661,216,0 +170762683709,216,0 +170762683757,216,0 +170762683805,217,0 +170762683853,218,0 +170762683902,218,0 +170762683950,219,0 +170762684000,219,0 +170762684048,219,0 +170762684096,219,0 +170762684145,219,0 +170762684193,218,0 +170762684241,218,0 +170762684291,215,0 +170762684340,215,0 +170762684388,216,0 +170762684436,216,0 +170762684484,217,0 +170762684531,217,0 +170762684579,217,0 +170762684627,218,0 +170762684676,218,0 +170762684726,218,0 +170762684774,218,0 +170762684822,218,0 +170762684871,218,0 +170762684921,218,0 +170762684968,218,0 +170762685016,218,0 +170762685064,217,0 +170762685112,217,0 +170762685160,217,0 +170762685208,218,0 +170762685256,218,0 +170762685304,218,0 +170762685352,218,0 +170762685401,218,0 +170762685449,218,0 +170762685497,219,0 +170762685545,219,0 +170762685593,219,0 +170762685641,219,0 +170762685689,219,0 +170762685737,219,0 +170762685786,218,0 +170762685834,218,0 +170762685882,218,0 +170762685930,217,0 +170762685979,218,0 +170762686027,218,0 +170762686075,218,0 +170762686123,218,0 +170762686171,218,0 +170762686219,219,0 +170762686267,218,0 +170762686315,219,0 +170762686363,219,0 +170762686413,219,0 +170762686462,218,0 +170762686510,219,0 +170762686558,219,0 +170762686606,219,0 +170762686653,216,0 +170762686701,216,0 +170762686749,216,0 +170762686798,217,0 +170762686846,217,0 +170762686894,218,0 +170762686942,218,0 +170762686990,218,0 +170762687038,218,0 +170762687086,218,0 +170762687135,219,0 +170762687183,219,0 +170762687231,219,0 +170762687278,220,0 +170762687326,219,0 +170762687374,220,0 +170762687424,218,0 +170762687471,215,0 +170762687519,216,0 +170762687567,216,0 +170762687615,217,0 +170762687663,216,0 +170762687711,217,0 +170762687759,217,0 +170762687807,218,0 +170762687854,218,0 +170762687902,221,0 +170762687950,219,0 +170762687998,219,0 +170762688046,219,0 +170762688094,219,0 +170762688143,219,0 +170762688193,219,0 +170762688242,217,0 +170762688290,215,0 +170762688340,215,0 +170762688388,215,0 +170762688436,216,0 +170762688484,216,0 +170762688532,216,0 +170762688581,217,0 +170762688629,218,0 +170762688677,218,0 +170762688726,219,0 +170762688776,219,0 +170762688824,219,0 +170762688872,219,0 +170762688920,219,0 +170762688967,219,0 +170762689015,218,0 +170762689065,215,0 +170762689113,215,0 +170762689161,215,0 +170762689210,216,0 +170762689258,216,0 +170762689308,217,0 +170762689357,217,0 +170762689407,217,0 +170762689454,217,0 +170762689502,219,0 +170762689552,220,0 +170762689600,219,0 +170762689648,219,0 +170762689695,219,0 +170762689745,220,0 +170762689793,219,0 +170762689840,218,0 +170762689888,217,0 +170762689936,217,0 +170762689984,217,0 +170762690032,218,0 +170762690080,217,0 +170762690128,218,0 +170762690175,219,0 +170762690225,218,0 +170762690273,218,0 +170762690321,218,0 +170762690368,219,0 +170762690416,219,0 +170762690464,220,0 +170762690514,219,0 +170762690563,221,0 +170762690611,219,0 +170762690659,216,0 +170762690707,216,0 +170762690755,217,0 +170762690802,217,0 +170762690850,218,0 +170762690898,218,0 +170762690946,219,0 +170762690994,218,0 +170762691042,219,0 +170762691090,220,0 +170762691138,220,0 +170762691185,220,0 +170762691233,219,0 +170762691281,219,0 +170762691329,219,0 +170762691377,219,0 +170762691425,219,0 +170762691473,216,0 +170762691522,216,0 +170762691572,216,0 +170762691620,217,0 +170762691668,217,0 +170762691716,217,0 +170762691764,218,0 +170762691812,218,0 +170762691860,219,0 +170762691908,219,0 +170762691955,219,0 +170762692005,219,0 +170762692053,220,0 +170762692102,220,0 +170762692150,219,0 +170762692200,219,0 +170762692247,218,0 +170762692295,216,0 +170762692343,216,0 +170762692391,216,0 +170762692439,216,0 +170762692486,217,0 +170762692534,218,0 +170762692582,218,0 +170762692630,218,0 +170762692678,219,0 +170762692726,219,0 +170762692774,219,0 +170762692821,219,0 +170762692869,219,0 +170762692917,218,0 +170762692966,218,0 +170762693014,219,0 +170762693062,218,0 +170762693110,216,0 +170762693158,216,0 +170762693205,216,0 +170762693253,217,0 +170762693303,217,0 +170762693350,217,0 +170762693398,218,0 +170762693446,218,0 +170762693494,218,0 +170762693542,218,0 +170762693590,219,0 +170762693639,219,0 +170762693687,218,0 +170762693736,219,0 +170762693784,218,0 +170762693832,218,0 +170762693880,215,0 +170762693928,216,0 +170762693976,215,0 +170762694023,216,0 +170762694071,216,0 +170762694119,216,0 +170762694167,216,0 +170762694215,217,0 +170762694263,218,0 +170762694310,218,0 +170762694358,218,0 +170762694406,218,0 +170762694454,219,0 +170762694502,219,0 +170762694550,218,0 +170762694598,218,0 +170762694645,218,0 +170762694693,215,0 +170762694741,215,0 +170762694789,215,0 +170762694837,215,0 +170762694886,216,0 +170762694936,216,0 +170762694983,216,0 +170762695031,217,0 +170762695079,217,0 +170762695127,217,0 +170762695175,219,0 +170762695222,219,0 +170762695270,218,0 +170762695318,218,0 +170762695366,218,0 +170762695414,218,0 +170762695462,218,0 +170762695511,215,0 +170762695559,215,0 +170762695607,216,0 +170762695655,216,0 +170762695702,216,0 +170762695752,216,0 +170762695800,216,0 +170762695847,218,0 +170762695895,218,0 +170762695943,218,0 +170762695991,219,0 +170762696039,219,0 +170762696087,219,0 +170762696135,221,0 +170762696184,219,0 +170762696232,218,0 +170762696280,215,0 +170762696328,214,0 +170762696377,215,0 +170762696425,215,0 +170762696473,216,0 +170762696522,216,0 +170762696570,216,0 +170762696618,217,0 +170762696665,217,0 +170762696713,218,0 +170762696761,218,0 +170762696809,218,0 +170762696857,218,0 +170762696905,219,0 +170762696953,218,0 +170762697000,218,0 +170762697048,218,0 +170762697096,215,0 +170762697144,215,0 +170762697192,216,0 +170762697241,216,0 +170762697289,216,0 +170762697337,217,0 +170762697385,217,0 +170762697433,217,0 +170762697480,218,0 +170762697528,218,0 +170762697576,218,0 +170762697624,220,0 +170762697672,219,0 +170762697720,219,0 +170762697767,218,0 +170762697815,219,0 +170762697863,217,0 +170762697911,216,0 +170762697959,217,0 +170762698007,216,0 +170762698055,217,0 +170762698102,217,0 +170762698150,218,0 +170762698198,218,0 +170762698246,219,0 +170762698294,218,0 +170762698342,219,0 +170762698391,219,0 +170762698439,219,0 +170762698489,220,0 +170762698537,219,0 +170762698585,219,0 +170762698633,218,0 +170762698680,215,0 +170762698728,215,0 +170762698776,216,0 +170762698824,216,0 +170762698872,216,0 +170762698921,217,0 +170762698969,217,0 +170762699019,218,0 +170762699068,218,0 +170762699116,218,0 +170762699166,218,0 +170762699215,219,0 +170762699263,219,0 +170762699311,219,0 +170762699359,219,0 +170762699407,219,0 +170762699455,218,0 +170762699502,215,0 +170762699550,215,0 +170762699598,216,0 +170762699646,216,0 +170762699694,216,0 +170762699742,216,0 +170762699790,217,0 +170762699838,217,0 +170762699885,218,0 +170762699933,219,0 +170762699981,218,0 +170762700029,219,0 +170762700077,218,0 +170762700125,220,0 +170762700172,219,0 +170762700220,218,0 +170762700268,218,0 +170762700316,215,0 +170762700364,215,0 +170762700413,216,0 +170762700461,216,0 +170762700509,216,0 +170762700557,217,0 +170762700605,217,0 +170762700652,217,0 +170762700700,217,0 +170762700750,218,0 +170762700798,219,0 +170762700845,219,0 +170762700893,219,0 +170762700941,218,0 +170762700989,219,0 +170762701037,219,0 +170762701084,215,0 +170762701132,215,0 +170762701182,216,0 +170762701229,217,0 +170762701277,217,0 +170762701325,217,0 +170762701373,217,0 +170762701421,218,0 +170762701469,218,0 +170762701518,219,0 +170762701566,219,0 +170762701616,219,0 +170762701664,219,0 +170762701712,219,0 +170762701760,219,0 +170762701809,219,0 +170762701859,219,0 +170762701907,217,0 +170762701955,217,0 +170762702004,217,0 +170762702054,218,0 +170762702103,218,0 +170762702151,218,0 +170762702199,218,0 +170762702248,219,0 +170762702296,219,0 +170762702344,219,0 +170762702394,219,0 +170762702442,219,0 +170762702490,219,0 +170762702539,219,0 +170762702587,219,0 +170762702635,218,0 +170762702683,218,0 +170762702731,219,0 +170762702779,218,0 +170762702827,219,0 +170762702875,220,0 +170762702924,219,0 +170762702974,220,0 +170762703022,220,0 +170762703070,220,0 +170762703118,220,0 +170762703166,220,0 +170762703214,219,0 +170762703262,219,0 +170762703309,219,0 +170762703357,219,0 +170762703405,219,0 +170762703455,218,0 +170762703503,216,0 +170762703552,217,0 +170762703600,217,0 +170762703648,218,0 +170762703696,218,0 +170762703744,218,0 +170762703793,219,0 +170762703841,219,0 +170762703889,219,0 +170762703937,219,0 +170762703985,220,0 +170762704032,219,0 +170762704080,218,0 +170762704128,218,0 +170762704176,219,0 +170762704224,219,0 +170762704272,217,0 +170762704320,216,0 +170762704369,216,0 +170762704417,216,0 +170762704467,217,0 +170762704515,217,0 +170762704564,218,0 +170762704612,217,0 +170762704662,218,0 +170762704710,218,0 +170762704759,219,0 +170762704807,218,0 +170762704855,219,0 +170762704905,219,0 +170762704953,218,0 +170762705000,218,0 +170762705048,218,0 +170762705096,215,0 +170762705146,214,0 +170762705195,215,0 +170762705243,215,0 +170762705291,216,0 +170762705339,216,0 +170762705387,216,0 +170762705435,217,0 +170762705483,217,0 +170762705533,218,0 +170762705581,217,0 +170762705629,218,0 +170762705676,218,0 +170762705726,218,0 +170762705776,219,0 +170762705825,219,0 +170762705873,217,0 +170762705922,214,0 +170762705972,215,0 +170762706020,215,0 +170762706068,216,0 +170762706116,216,0 +170762706164,217,0 +170762706212,217,0 +170762706261,217,0 +170762706309,217,0 +170762706357,218,0 +170762706407,218,0 +170762706455,218,0 +170762706503,218,0 +170762706551,218,0 +170762706600,218,0 +170762706648,218,0 +170762706696,215,0 +170762706746,214,0 +170762706793,215,0 +170762706843,216,0 +170762706893,216,0 +170762706940,216,0 +170762706990,216,0 +170762707038,217,0 +170762707087,217,0 +170762707135,218,0 +170762707183,218,0 +170762707233,218,0 +170762707281,218,0 +170762707329,219,0 +170762707377,219,0 +170762707425,218,0 +170762707473,218,0 +170762707521,214,0 +170762707571,215,0 +170762707619,215,0 +170762707668,215,0 +170762707716,215,0 +170762707764,216,0 +170762707812,216,0 +170762707862,217,0 +170762707911,217,0 +170762707959,217,0 +170762708009,217,0 +170762708056,218,0 +170762708104,219,0 +170762708152,218,0 +170762708202,218,0 +170762708251,218,0 +170762708301,215,0 +170762708349,214,0 +170762708397,215,0 +170762708445,215,0 +170762708494,215,0 +170762708542,216,0 +170762708590,216,0 +170762708638,216,0 +170762708686,217,0 +170762708734,217,0 +170762708784,217,0 +170762708832,218,0 +170762708879,218,0 +170762708927,218,0 +170762708977,218,0 +170762709025,218,0 +170762709074,218,0 +170762709122,215,0 +170762709170,215,0 +170762709220,216,0 +170762709269,217,0 +170762709317,216,0 +170762709365,217,0 +170762709413,217,0 +170762709461,218,0 +170762709509,218,0 +170762709558,218,0 +170762709606,219,0 +170762709656,218,0 +170762709704,218,0 +170762709753,219,0 +170762709802,220,0 +170762709850,218,0 +170762709900,216,0 +170762709948,216,0 +170762709996,216,0 +170762710044,217,0 +170762710092,217,0 +170762710140,218,0 +170762710188,218,0 +170762710235,218,0 +170762710283,218,0 +170762710331,218,0 +170762710379,218,0 +170762710429,218,0 +170762710478,218,0 +170762710528,219,0 +170762710577,218,0 +170762710625,218,0 +170762710673,218,0 +170762710721,216,0 +170762710769,216,0 +170762710817,216,0 +170762710865,216,0 +170762710914,217,0 +170762710962,217,0 +170762711010,217,0 +170762711058,218,0 +170762711106,218,0 +170762711156,218,0 +170762711204,219,0 +170762711252,219,0 +170762711299,218,0 +170762711347,218,0 +170762711395,219,0 +170762711443,218,0 +170762711491,215,0 +170762711539,215,0 +170762711587,216,0 +170762711635,216,0 +170762711683,216,0 +170762711731,217,0 +170762711779,217,0 +170762711827,217,0 +170762711876,217,0 +170762711926,219,0 +170762711974,218,0 +170762712023,218,0 +170762712073,218,0 +170762712121,219,0 +170762712169,219,0 +170762712218,218,0 +170762712266,218,0 +170762712314,215,0 +170762712364,215,0 +170762712412,216,0 +170762712459,216,0 +170762712507,216,0 +170762712555,216,0 +170762712603,217,0 +170762712651,217,0 +170762712699,218,0 +170762712747,218,0 +170762712795,218,0 +170762712844,218,0 +170762712892,219,0 +170762712940,219,0 +170762712990,218,0 +170762713038,218,0 +170762713086,218,0 +170762713134,215,0 +170762713182,215,0 +170762713229,216,0 +170762713277,216,0 +170762713325,216,0 +170762713373,217,0 +170762713423,217,0 +170762713471,218,0 +170762713519,217,0 +170762713568,218,0 +170762713617,218,0 +170762713665,219,0 +170762713715,219,0 +170762713763,219,0 +170762713811,219,0 +170762713859,218,0 +170762713907,216,0 +170762713956,216,0 +170762714004,216,0 +170762714052,216,0 +170762714100,217,0 +170762714149,217,0 +170762714197,218,0 +170762714247,218,0 +170762714295,218,0 +170762714343,219,0 +170762714390,218,0 +170762714438,219,0 +170762714486,219,0 +170762714534,219,0 +170762714582,218,0 +170762714630,218,0 +170762714678,218,0 +170762714726,216,0 +170762714774,216,0 +170762714822,217,0 +170762714871,217,0 +170762714919,217,0 +170762714969,218,0 +170762715018,218,0 +170762715066,220,0 +170762715116,219,0 +170762715165,218,0 +170762715213,219,0 +170762715261,219,0 +170762715311,219,0 +170762715359,219,0 +170762715408,218,0 +170762715458,218,0 +170762715506,215,0 +170762715555,215,0 +170762715603,216,0 +170762715651,216,0 +170762715699,217,0 +170762715747,217,0 +170762715795,217,0 +170762715843,218,0 +170762715892,218,0 +170762715940,218,0 +170762715990,218,0 +170762716038,219,0 +170762716085,219,0 +170762716133,219,0 +170762716181,219,0 +170762716231,219,0 +170762716278,218,0 +170762716326,215,0 +170762716374,215,0 +170762716422,215,0 +170762716471,216,0 +170762716519,216,0 +170762716569,217,0 +170762716616,216,0 +170762716664,217,0 +170762716712,217,0 +170762716760,218,0 +170762716808,218,0 +170762716857,218,0 +170762716905,218,0 +170762716953,218,0 +170762717002,219,0 +170762717050,218,0 +170762717098,215,0 +170762717148,215,0 +170762717196,215,0 +170762717245,215,0 +170762717295,216,0 +170762717342,216,0 +170762717390,216,0 +170762717438,217,0 +170762717486,217,0 +170762717534,217,0 +170762717582,218,0 +170762717632,218,0 +170762717680,218,0 +170762717729,219,0 +170762717777,218,0 +170762717825,219,0 +170762717873,218,0 +170762717921,215,0 +170762717969,215,0 +170762718018,216,0 +170762718066,217,0 +170762718114,217,0 +170762718162,222,0 +170762718210,217,0 +170762718258,217,0 +170762718308,218,0 +170762718356,218,0 +170762718405,218,0 +170762718455,218,0 +170762718503,218,0 +170762718552,219,0 +170762718600,218,0 +170762718648,218,0 +170762718698,217,0 +170762718747,215,0 +170762718795,215,0 +170762718843,216,0 +170762718891,217,0 +170762718939,216,0 +170762718987,218,0 +170762719036,217,0 +170762719086,217,0 +170762719135,218,0 +170762719184,218,0 +170762719232,218,0 +170762719280,218,0 +170762719328,219,0 +170762719376,218,0 +170762719424,219,0 +170762719472,218,0 +170762719521,215,0 +170762719571,215,0 +170762719619,215,0 +170762719667,216,0 +170762719715,216,0 +170762719764,216,0 +170762719814,217,0 +170762719862,217,0 +170762719910,218,0 +170762719959,218,0 +170762720007,218,0 +170762720055,219,0 +170762720103,218,0 +170762720152,219,0 +170762720200,219,0 +170762720248,217,0 +170762720298,215,0 +170762720347,215,0 +170762720395,215,0 +170762720443,216,0 +170762720493,217,0 +170762720540,216,0 +170762720588,217,0 +170762720636,217,0 +170762720684,218,0 +170762720732,218,0 +170762720780,218,0 +170762720828,219,0 +170762720876,219,0 +170762720924,219,0 +170762720973,218,0 +170762721021,218,0 +170762721069,218,0 +170762721117,216,0 +170762721165,216,0 +170762721213,216,0 +170762721260,216,0 +170762721308,216,0 +170762721356,217,0 +170762721404,217,0 +170762721452,218,0 +170762721500,218,0 +170762721549,218,0 +170762721599,218,0 +170762721647,219,0 +170762721696,218,0 +170762721746,219,0 +170762721795,218,0 +170762721845,219,0 +170762721893,218,0 +170762721941,216,0 +170762721990,217,0 +170762722040,217,0 +170762722088,217,0 +170762722137,218,0 +170762722185,218,0 +170762722233,218,0 +170762722283,218,0 +170762722331,218,0 +170762722379,219,0 +170762722426,219,0 +170762722474,219,0 +170762722522,219,0 +170762722570,219,0 +170762722618,218,0 +170762722668,219,0 +170762722716,217,0 +170762722764,217,0 +170762722811,217,0 +170762722861,218,0 +170762722910,218,0 +170762722958,219,0 +170762723006,219,0 +170762723056,218,0 +170762723104,219,0 +170762723151,219,0 +170762723199,219,0 +170762723247,220,0 +170762723295,219,0 +170762723342,219,0 +170762723390,218,0 +170762723438,218,0 +170762723486,218,0 +170762723534,215,0 +170762723582,215,0 +170762723630,216,0 +170762723678,217,0 +170762723725,216,0 +170762723773,217,0 +170762723821,218,0 +170762723870,218,0 +170762723918,218,0 +170762723966,218,0 +170762724014,218,0 +170762724062,218,0 +170762724109,219,0 +170762724157,219,0 +170762724205,219,0 +170762724253,218,0 +170762724302,218,0 +170762724350,215,0 +170762724400,215,0 +170762724449,215,0 +170762724497,215,0 +170762724545,216,0 +170762724593,217,0 +170762724641,218,0 +170762724689,217,0 +170762724738,218,0 +170762724786,218,0 +170762724834,219,0 +170762724882,218,0 +170762724932,219,0 +170762724981,219,0 +170762725029,218,0 +170762725077,218,0 +170762725126,215,0 +170762725176,215,0 +170762725224,215,0 +170762725272,216,0 +170762725320,216,0 +170762725368,216,0 +170762725415,216,0 +170762725463,217,0 +170762725511,218,0 +170762725559,217,0 +170762725607,218,0 +170762725654,218,0 +170762725702,218,0 +170762725750,217,0 +170762725798,218,0 +170762725846,219,0 +170762725894,218,0 +170762725942,215,0 +170762725989,216,0 +170762726037,216,0 +170762726085,216,0 +170762726133,217,0 +170762726181,217,0 +170762726229,218,0 +170762726278,218,0 +170762726326,218,0 +170762726374,218,0 +170762726422,219,0 +170762726470,219,0 +170762726517,218,0 +170762726567,220,0 +170762726615,218,0 +170762726664,218,0 +170762726712,217,0 +170762726760,217,0 +170762726808,217,0 +170762726857,217,0 +170762726905,218,0 +170762726955,218,0 +170762727003,218,0 +170762727051,218,0 +170762727099,218,0 +170762727148,219,0 +170762727196,219,0 +170762727244,219,0 +170762727292,218,0 +170762727340,219,0 +170762727388,219,0 +170762727436,219,0 +170762727484,218,0 +170762727532,216,0 +170762727580,216,0 +170762727629,216,0 +170762727677,217,0 +170762727725,218,0 +170762727773,218,0 +170762727821,217,0 +170762727869,217,0 +170762727917,219,0 +170762727965,219,0 +170762728013,219,0 +170762728061,219,0 +170762728109,219,0 +170762728157,220,0 +170762728205,219,0 +170762728252,218,0 +170762728300,218,0 +170762728348,215,0 +170762728396,215,0 +170762728444,215,0 +170762728492,216,0 +170762728542,216,0 +170762728590,216,0 +170762728639,217,0 +170762728687,218,0 +170762728735,218,0 +170762728783,218,0 +170762728831,218,0 +170762728879,219,0 +170762728929,219,0 +170762728977,219,0 +170762729026,219,0 +170762729075,218,0 +170762729123,215,0 +170762729171,215,0 +170762729219,215,0 +170762729269,216,0 +170762729317,216,0 +170762729365,216,0 +170762729413,217,0 +170762729462,217,0 +170762729510,217,0 +170762729558,218,0 +170762729606,218,0 +170762729654,218,0 +170762729702,218,0 +170762729751,218,0 +170762729801,219,0 +170762729849,219,0 +170762729896,218,0 +170762729944,215,0 +170762729992,215,0 +170762730040,216,0 +170762730090,216,0 +170762730137,217,0 +170762730185,217,0 +170762730233,217,0 +170762730281,218,0 +170762730329,217,0 +170762730377,218,0 +170762730427,218,0 +170762730476,219,0 +170762730524,219,0 +170762730572,219,0 +170762730620,219,0 +170762730668,218,0 +170762730716,215,0 +170762730765,215,0 +170762730813,215,0 +170762730861,215,0 +170762730911,216,0 +170762730960,216,0 +170762731008,217,0 +170762731056,217,0 +170762731104,218,0 +170762731152,218,0 +170762731201,218,0 +170762731249,219,0 +170762731298,218,0 +170762731346,218,0 +170762731394,218,0 +170762731442,218,0 +170762731492,218,0 +170762731539,215,0 +170762731587,215,0 +170762731635,215,0 +170762731685,216,0 +170762731734,216,0 +170762731782,216,0 +170762731830,217,0 +170762731878,217,0 +170762731926,218,0 +170762731975,218,0 +170762732023,218,0 +170762732071,218,0 +170762732119,219,0 +170762732167,219,0 +170762732214,218,0 +170762732262,219,0 +170762732310,216,0 +170762732358,215,0 +170762732406,215,0 +170762732454,216,0 +170762732503,216,0 +170762732551,217,0 +170762732599,217,0 +170762732647,217,0 +170762732695,218,0 +170762732742,218,0 +170762732790,218,0 +170762732838,219,0 +170762732886,219,0 +170762732934,219,0 +170762732982,219,0 +170762733029,218,0 +170762733079,218,0 +170762733128,215,0 +170762733176,214,0 +170762733226,215,0 +170762733275,215,0 +170762733323,216,0 +170762733371,216,0 +170762733421,217,0 +170762733470,217,0 +170762733518,217,0 +170762733566,218,0 +170762733615,218,0 +170762733665,219,0 +170762733713,219,0 +170762733760,219,0 +170762733808,218,0 +170762733856,218,0 +170762733905,218,0 +170762733955,215,0 +170762734004,216,0 +170762734052,216,0 +170762734100,216,0 +170762734150,217,0 +170762734198,217,0 +170762734245,217,0 +170762734295,218,0 +170762734343,218,0 +170762734391,218,0 +170762734439,218,0 +170762734486,219,0 +170762734534,219,0 +170762734582,218,0 +170762734630,218,0 +170762734678,218,0 +170762734727,216,0 +170762734777,217,0 +170762734826,217,0 +170762734876,217,0 +170762734924,217,0 +170762734972,218,0 +170762735021,218,0 +170762735069,218,0 +170762735117,218,0 +170762735165,218,0 +170762735213,218,0 +170762735263,218,0 +170762735310,219,0 +170762735358,218,0 +170762735406,218,0 +170762735454,218,0 +170762735502,218,0 +170762735550,216,0 +170762735598,216,0 +170762735646,216,0 +170762735693,216,0 +170762735741,217,0 +170762735789,217,0 +170762735837,217,0 +170762735885,218,0 +170762735933,218,0 +170762735980,218,0 +170762736028,218,0 +170762736076,219,0 +170762736124,218,0 +170762736172,219,0 +170762736220,218,0 +170762736268,219,0 +170762736316,215,0 +170762736365,214,0 +170762736413,215,0 +170762736461,215,0 +170762736509,215,0 +170762736557,216,0 +170762736604,216,0 +170762736652,216,0 +170762736700,217,0 +170762736750,217,0 +170762736798,218,0 +170762736846,218,0 +170762736895,219,0 +170762736943,218,0 +170762736992,219,0 +170762737040,218,0 +170762737090,218,0 +170762737138,214,0 +170762737186,214,0 +170762737233,214,0 +170762737283,216,0 +170762737332,215,0 +170762737380,216,0 +170762737430,216,0 +170762737479,216,0 +170762737527,217,0 +170762737577,217,0 +170762737625,217,0 +170762737673,218,0 +170762737721,218,0 +170762737769,218,0 +170762737818,219,0 +170762737866,218,0 +170762737914,215,0 +170762737964,214,0 +170762738012,215,0 +170762738060,215,0 +170762738108,216,0 +170762738157,215,0 +170762738205,216,0 +170762738255,216,0 +170762738304,216,0 +170762738352,217,0 +170762738400,217,0 +170762738448,218,0 +170762738496,218,0 +170762738543,218,0 +170762738591,219,0 +170762738639,219,0 +170762738687,219,0 +170762738735,219,0 +170762738783,219,0 +170762738831,219,0 +170762738879,218,0 +170762738929,219,0 +170762738977,218,0 +170762739026,218,0 +170762739074,218,0 +170762739124,217,0 +170762739173,217,0 +170762739223,218,0 +170762739272,218,0 +170762739320,218,0 +170762739370,218,0 +170762739419,219,0 +170762739469,219,0 +170762739517,218,0 +170762739565,218,0 +170762739613,219,0 +170762739661,219,0 +170762739710,219,0 +170762739758,218,0 +170762739806,219,0 +170762739856,219,0 +170762739904,218,0 +170762739952,217,0 +170762740001,217,0 +170762740049,217,0 +170762740099,217,0 +170762740146,218,0 +170762740194,218,0 +170762740242,218,0 +170762740292,218,0 +170762740340,219,0 +170762740388,219,0 +170762740437,219,0 +170762740485,219,0 +170762740533,218,0 +170762740581,218,0 +170762740629,219,0 +170762740677,218,0 +170762740726,216,0 +170762740774,215,0 +170762740822,216,0 +170762740870,216,0 +170762740917,217,0 +170762740965,217,0 +170762741013,218,0 +170762741061,217,0 +170762741109,219,0 +170762741157,218,0 +170762741204,218,0 +170762741252,219,0 +170762741300,219,0 +170762741348,218,0 +170762741396,219,0 +170762741444,218,0 +170762741493,218,0 +170762741541,216,0 +170762741590,216,0 +170762741638,216,0 +170762741686,217,0 +170762741734,217,0 +170762741782,217,0 +170762741829,217,0 +170762741877,218,0 +170762741925,217,0 +170762741973,219,0 +170762742021,219,0 +170762742069,220,0 +170762742117,219,0 +170762742164,219,0 +170762742212,218,0 +170762742260,218,0 +170762742308,217,0 +170762742356,216,0 +170762742404,217,0 +170762742451,216,0 +170762742499,217,0 +170762742549,217,0 +170762742596,218,0 +170762742644,218,0 +170762742692,218,0 +170762742740,219,0 +170762742788,219,0 +170762742836,219,0 +170762742885,219,0 +170762742934,219,0 +170762742982,218,0 +170762743030,218,0 +170762743078,218,0 +170762743126,216,0 +170762743174,215,0 +170762743222,216,0 +170762743271,216,0 +170762743319,216,0 +170762743367,216,0 +170762743414,217,0 +170762743462,218,0 +170762743510,217,0 +170762743558,217,0 +170762743606,218,0 +170762743653,219,0 +170762743701,218,0 +170762743749,219,0 +170762743797,218,0 +170762743845,218,0 +170762743894,218,0 +170762743942,214,0 +170762743992,215,0 +170762744039,214,0 +170762744089,215,0 +170762744137,215,0 +170762744186,216,0 +170762744236,216,0 +170762744285,217,0 +170762744335,217,0 +170762744383,217,0 +170762744433,217,0 +170762744480,218,0 +170762744528,218,0 +170762744576,218,0 +170762744626,218,0 +170762744675,218,0 +170762744723,215,0 +170762744771,214,0 +170762744821,214,0 +170762744869,215,0 +170762744918,215,0 +170762744966,215,0 +170762745014,215,0 +170762745064,216,0 +170762745112,216,0 +170762745161,217,0 +170762745211,218,0 +170762745259,217,0 +170762745308,217,0 +170762745356,218,0 +170762745404,218,0 +170762745453,218,0 +170762745501,218,0 +170762745549,214,0 +170762745597,214,0 +170762745645,215,0 +170762745693,215,0 +170762745741,216,0 +170762745791,216,0 +170762745839,216,0 +170762745886,217,0 +170762745934,217,0 +170762745982,217,0 +170762746030,217,0 +170762746080,218,0 +170762746128,218,0 +170762746176,218,0 +170762746224,218,0 +170762746273,219,0 +170762746321,215,0 +170762746369,215,0 +170762746417,216,0 +170762746465,216,0 +170762746513,216,0 +170762746561,216,0 +170762746609,217,0 +170762746658,217,0 +170762746706,217,0 +170762746754,217,0 +170762746804,218,0 +170762746853,218,0 +170762746901,218,0 +170762746949,218,0 +170762746997,218,0 +170762747046,219,0 +170762747094,218,0 +170762747142,216,0 +170762747192,216,0 +170762747241,216,0 +170762747289,218,0 +170762747337,217,0 +170762747385,217,0 +170762747435,218,0 +170762747482,218,0 +170762747530,218,0 +170762747578,219,0 +170762747626,219,0 +170762747674,219,0 +170762747724,218,0 +170762747773,218,0 +170762747821,219,0 +170762747869,218,0 +170762747917,215,0 +170762747965,215,0 +170762748013,215,0 +170762748063,216,0 +170762748112,216,0 +170762748160,216,0 +170762748208,217,0 +170762748256,218,0 +170762748305,217,0 +170762748353,217,0 +170762748403,218,0 +170762748451,218,0 +170762748500,219,0 +170762748550,218,0 +170762748598,219,0 +170762748646,218,0 +170762748695,218,0 +170762748745,216,0 +170762748793,215,0 +170762748841,216,0 +170762748889,216,0 +170762748938,216,0 +170762748986,216,0 +170762749034,217,0 +170762749082,216,0 +170762749130,218,0 +170762749179,218,0 +170762749227,218,0 +170762749275,219,0 +170762749325,217,0 +170762749374,219,0 +170762749424,218,0 +170762749472,219,0 +170762749520,216,0 +170762749568,216,0 +170762749617,216,0 +170762749665,216,0 +170762749713,216,0 +170762749763,217,0 +170762749811,217,0 +170762749858,218,0 +170762749908,217,0 +170762749958,217,0 +170762750005,218,0 +170762750055,218,0 +170762750104,218,0 +170762750152,218,0 +170762750200,218,0 +170762750248,215,0 +170762750296,218,0 +170762750344,216,0 +170762750392,216,0 +170762750440,218,0 +170762750490,217,0 +170762750539,217,0 +170762750589,217,0 +170762750637,217,0 +170762750685,218,0 +170762750734,218,0 +170762750782,218,0 +170762750832,218,0 +170762750880,220,0 +170762750927,218,0 +170762750975,219,0 +170762751023,219,0 +170762751073,218,0 +170762751122,217,0 +170762751170,218,0 +170762751220,218,0 +170762751268,219,0 +170762751316,218,0 +170762751364,218,0 +170762751412,219,0 +170762751461,219,0 +170762751509,220,0 +170762751559,219,0 +170762751608,220,0 +170762751658,219,0 +170762751706,219,0 +170762751754,218,0 +170762751802,219,0 +170762751851,218,0 +170762751900,218,0 +170762751948,218,0 +170762751996,218,0 +170762752044,218,0 +170762752094,219,0 +170762752143,219,0 +170762752191,219,0 +170762752241,219,0 +170762752290,220,0 +170762752338,220,0 +170762752386,219,0 +170762752434,219,0 +170762752482,219,0 +170762752530,219,0 +170762752578,219,0 +170762752627,219,0 +170762752675,218,0 +170762752725,216,0 +170762752773,216,0 +170762752821,217,0 +170762752869,217,0 +170762752917,217,0 +170762752965,218,0 +170762753014,218,0 +170762753062,218,0 +170762753110,219,0 +170762753158,219,0 +170762753207,219,0 +170762753255,219,0 +170762753303,219,0 +170762753351,218,0 +170762753399,218,0 +170762753447,218,0 +170762753496,218,0 +170762753546,215,0 +170762753594,216,0 +170762753642,216,0 +170762753690,216,0 +170762753737,217,0 +170762753787,217,0 +170762753835,218,0 +170762753883,217,0 +170762753932,218,0 +170762753980,218,0 +170762754030,218,0 +170762754078,218,0 +170762754126,219,0 +170762754173,219,0 +170762754221,218,0 +170762754269,218,0 +170762754317,218,0 +170762754367,215,0 +170762754415,216,0 +170762754463,216,0 +170762754510,217,0 +170762754560,216,0 +170762754608,216,0 +170762754656,217,0 +170762754703,218,0 +170762754753,218,0 +170762754801,219,0 +170762754848,218,0 +170762754896,218,0 +170762754944,219,0 +170762754992,218,0 +170762755040,218,0 +170762755088,218,0 +170762755135,215,0 +170762755183,215,0 +170762755231,215,0 +170762755279,215,0 +170762755327,216,0 +170762755375,216,0 +170762755422,217,0 +170762755470,217,0 +170762755518,217,0 +170762755567,218,0 +170762755615,218,0 +170762755663,219,0 +170762755711,219,0 +170762755759,218,0 +170762755807,219,0 +170762755854,219,0 +170762755902,218,0 +170762755950,214,0 +170762756000,214,0 +170762756048,215,0 +170762756096,215,0 +170762756144,215,0 +170762756193,215,0 +170762756241,216,0 +170762756289,217,0 +170762756337,217,0 +170762756385,218,0 +170762756434,218,0 +170762756482,218,0 +170762756530,218,0 +170762756580,218,0 +170762756628,218,0 +170762756677,218,0 +170762756727,218,0 +170762756776,214,0 +170762756824,215,0 +170762756872,215,0 +170762756920,215,0 +170762756968,216,0 +170762757017,215,0 +170762757065,216,0 +170762757115,216,0 +170762757163,217,0 +170762757211,218,0 +170762757260,218,0 +170762757308,218,0 +170762757356,218,0 +170762757404,218,0 +170762757452,218,0 +170762757501,218,0 +170762757549,214,0 +170762757597,214,0 +170762757647,214,0 +170762757695,215,0 +170762757742,215,0 +170762757792,215,0 +170762757841,216,0 +170762757889,216,0 +170762757939,217,0 +170762757987,217,0 +170762758036,218,0 +170762758086,217,0 +170762758134,218,0 +170762758182,218,0 +170762758230,218,0 +170762758279,218,0 +170762758329,217,0 +170762758378,215,0 +170762758428,216,0 +170762758476,216,0 +170762758524,216,0 +170762758572,217,0 +170762758621,217,0 +170762758671,217,0 +170762758719,218,0 +170762758767,218,0 +170762758816,218,0 +170762758864,219,0 +170762758912,218,0 +170762758961,219,0 +170762759009,219,0 +170762759057,218,0 +170762759107,218,0 +170762759155,216,0 +170762759203,216,0 +170762759250,217,0 +170762759298,218,0 +170762759346,218,0 +170762759394,218,0 +170762759442,218,0 +170762759490,218,0 +170762759540,218,0 +170762759589,218,0 +170762759639,219,0 +170762759687,219,0 +170762759735,218,0 +170762759782,218,0 +170762759832,218,0 +170762759880,218,0 +170762759928,218,0 +170762759977,216,0 +170762760025,216,0 diff --git a/laser_value/0211-15.csv b/laser_value/0211-15.csv new file mode 100644 index 0000000..c5cbb5a --- /dev/null +++ b/laser_value/0211-15.csv @@ -0,0 +1,7443 @@ +timestamp,laser_value,event +170762760074,217,0 +170762760122,217,0 +170762760169,217,0 +170762760217,218,0 +170762760267,217,0 +170762760315,217,0 +170762760363,218,0 +170762760412,218,0 +170762760460,219,0 +170762760510,219,0 +170762760557,218,0 +170762760605,219,0 +170762760653,218,0 +170762760703,218,0 +170762760752,216,0 +170762760800,215,0 +170762760849,216,0 +170762760899,216,0 +170762760947,216,0 +170762760996,217,0 +170762761044,217,0 +170762761094,218,0 +170762761142,218,0 +170762761189,217,0 +170762761237,219,0 +170762761287,219,0 +170762761335,218,0 +170762761383,218,0 +170762761431,218,0 +170762761479,218,0 +170762761526,217,0 +170762761574,216,0 +170762761622,216,0 +170762761670,216,0 +170762761718,216,0 +170762761766,217,0 +170762761815,217,0 +170762761865,218,0 +170762761913,218,0 +170762761961,218,0 +170762762009,218,0 +170762762058,220,0 +170762762108,219,0 +170762762157,218,0 +170762762205,218,0 +170762762253,218,0 +170762762301,218,0 +170762762351,216,0 +170762762400,216,0 +170762762448,216,0 +170762762496,217,0 +170762762546,217,0 +170762762595,217,0 +170762762643,217,0 +170762762692,217,0 +170762762742,218,0 +170762762791,217,0 +170762762841,219,0 +170762762889,218,0 +170762762937,219,0 +170762762985,219,0 +170762763033,218,0 +170762763081,218,0 +170762763130,218,0 +170762763180,215,0 +170762763228,216,0 +170762763275,216,0 +170762763323,217,0 +170762763371,217,0 +170762763419,218,0 +170762763467,218,0 +170762763515,218,0 +170762763563,218,0 +170762763611,218,0 +170762763659,219,0 +170762763707,219,0 +170762763755,219,0 +170762763805,220,0 +170762763852,219,0 +170762763900,219,0 +170762763948,216,0 +170762763998,216,0 +170762764046,217,0 +170762764094,218,0 +170762764142,217,0 +170762764190,218,0 +170762764239,218,0 +170762764287,218,0 +170762764335,218,0 +170762764385,218,0 +170762764433,219,0 +170762764482,219,0 +170762764530,219,0 +170762764580,219,0 +170762764628,219,0 +170762764676,218,0 +170762764724,218,0 +170762764772,215,0 +170762764821,215,0 +170762764871,216,0 +170762764919,216,0 +170762764967,216,0 +170762765016,217,0 +170762765066,218,0 +170762765114,217,0 +170762765161,218,0 +170762765211,218,0 +170762765260,219,0 +170762765310,219,0 +170762765358,219,0 +170762765407,219,0 +170762765455,218,0 +170762765503,218,0 +170762765551,216,0 +170762765599,215,0 +170762765649,216,0 +170762765697,216,0 +170762765744,217,0 +170762765792,217,0 +170762765840,217,0 +170762765890,217,0 +170762765938,217,0 +170762765987,218,0 +170762766035,218,0 +170762766083,218,0 +170762766132,219,0 +170762766180,218,0 +170762766228,218,0 +170762766278,218,0 +170762766326,218,0 +170762766374,215,0 +170762766421,215,0 +170762766469,216,0 +170762766517,216,0 +170762766567,216,0 +170762766615,217,0 +170762766663,217,0 +170762766711,217,0 +170762766760,218,0 +170762766808,218,0 +170762766857,218,0 +170762766907,218,0 +170762766955,218,0 +170762767003,219,0 +170762767051,218,0 +170762767099,218,0 +170762767146,215,0 +170762767196,216,0 +170762767244,216,0 +170762767293,217,0 +170762767343,216,0 +170762767391,217,0 +170762767439,217,0 +170762767487,217,0 +170762767536,218,0 +170762767584,218,0 +170762767632,218,0 +170762767680,219,0 +170762767728,219,0 +170762767776,219,0 +170762767825,218,0 +170762767875,218,0 +170762767924,218,0 +170762767972,215,0 +170762768020,216,0 +170762768068,216,0 +170762768116,216,0 +170762768163,217,0 +170762768213,217,0 +170762768261,217,0 +170762768310,218,0 +170762768358,217,0 +170762768406,219,0 +170762768454,218,0 +170762768503,218,0 +170762768553,218,0 +170762768601,218,0 +170762768650,218,0 +170762768700,218,0 +170762768747,215,0 +170762768795,215,0 +170762768843,216,0 +170762768891,216,0 +170762768940,217,0 +170762768988,217,0 +170762769036,218,0 +170762769084,217,0 +170762769131,219,0 +170762769179,218,0 +170762769227,218,0 +170762769275,219,0 +170762769324,220,0 +170762769374,219,0 +170762769422,219,0 +170762769470,218,0 +170762769517,218,0 +170762769565,215,0 +170762769615,215,0 +170762769664,216,0 +170762769712,216,0 +170762769760,216,0 +170762769808,216,0 +170762769858,217,0 +170762769905,217,0 +170762769953,218,0 +170762770003,218,0 +170762770051,218,0 +170762770099,218,0 +170762770148,218,0 +170762770198,218,0 +170762770247,218,0 +170762770295,217,0 +170762770343,215,0 +170762770391,215,0 +170762770439,216,0 +170762770487,216,0 +170762770535,216,0 +170762770583,217,0 +170762770632,217,0 +170762770682,217,0 +170762770730,218,0 +170762770779,218,0 +170762770827,218,0 +170762770875,218,0 +170762770922,219,0 +170762770970,219,0 +170762771020,218,0 +170762771068,218,0 +170762771116,218,0 +170762771165,217,0 +170762771215,216,0 +170762771263,216,0 +170762771311,217,0 +170762771359,217,0 +170762771408,218,0 +170762771458,218,0 +170762771506,218,0 +170762771554,218,0 +170762771602,219,0 +170762771651,219,0 +170762771699,218,0 +170762771749,219,0 +170762771797,219,0 +170762771845,218,0 +170762771892,218,0 +170762771940,218,0 +170762771988,216,0 +170762772036,216,0 +170762772086,217,0 +170762772135,217,0 +170762772183,217,0 +170762772231,217,0 +170762772279,218,0 +170762772327,217,0 +170762772375,217,0 +170762772424,219,0 +170762772472,220,0 +170762772522,219,0 +170762772570,218,0 +170762772618,218,0 +170762772666,219,0 +170762772714,218,0 +170762772762,215,0 +170762772811,215,0 +170762772859,215,0 +170762772909,217,0 +170762772958,216,0 +170762773006,216,0 +170762773054,217,0 +170762773102,217,0 +170762773150,218,0 +170762773200,218,0 +170762773248,218,0 +170762773297,218,0 +170762773346,218,0 +170762773396,218,0 +170762773444,218,0 +170762773492,218,0 +170762773541,217,0 +170762773591,214,0 +170762773639,215,0 +170762773687,215,0 +170762773735,216,0 +170762773783,216,0 +170762773831,216,0 +170762773880,217,0 +170762773928,217,0 +170762773976,217,0 +170762774024,218,0 +170762774073,218,0 +170762774121,219,0 +170762774171,218,0 +170762774219,218,0 +170762774267,218,0 +170762774316,218,0 +170762774364,215,0 +170762774412,215,0 +170762774460,215,0 +170762774508,215,0 +170762774556,216,0 +170762774604,216,0 +170762774652,216,0 +170762774700,216,0 +170762774748,217,0 +170762774795,217,0 +170762774845,218,0 +170762774893,218,0 +170762774941,219,0 +170762774990,219,0 +170762775040,219,0 +170762775087,218,0 +170762775135,218,0 +170762775185,215,0 +170762775234,215,0 +170762775282,215,0 +170762775332,216,0 +170762775380,217,0 +170762775427,217,0 +170762775477,217,0 +170762775525,218,0 +170762775573,218,0 +170762775621,218,0 +170762775669,218,0 +170762775716,218,0 +170762775766,219,0 +170762775814,218,0 +170762775862,218,0 +170762775910,218,0 +170762775959,215,0 +170762776007,215,0 +170762776055,215,0 +170762776103,216,0 +170762776153,216,0 +170762776202,217,0 +170762776252,216,0 +170762776299,218,0 +170762776349,217,0 +170762776397,218,0 +170762776445,219,0 +170762776493,219,0 +170762776542,219,0 +170762776590,219,0 +170762776638,218,0 +170762776686,218,0 +170762776734,218,0 +170762776782,216,0 +170762776830,216,0 +170762776878,216,0 +170762776927,216,0 +170762776977,216,0 +170762777026,217,0 +170762777074,217,0 +170762777122,217,0 +170762777172,218,0 +170762777220,218,0 +170762777268,218,0 +170762777317,219,0 +170762777365,219,0 +170762777414,219,0 +170762777462,218,0 +170762777510,218,0 +170762777558,217,0 +170762777606,215,0 +170762777654,215,0 +170762777702,215,0 +170762777750,216,0 +170762777798,216,0 +170762777846,216,0 +170762777894,216,0 +170762777942,217,0 +170762777990,218,0 +170762778038,218,0 +170762778086,219,0 +170762778134,219,0 +170762778183,218,0 +170762778231,219,0 +170762778279,218,0 +170762778327,218,0 +170762778375,215,0 +170762778423,215,0 +170762778471,216,0 +170762778521,216,0 +170762778568,215,0 +170762778616,216,0 +170762778664,217,0 +170762778714,217,0 +170762778763,218,0 +170762778811,219,0 +170762778861,219,0 +170762778909,218,0 +170762778957,218,0 +170762779005,218,0 +170762779053,218,0 +170762779101,218,0 +170762779150,218,0 +170762779200,215,0 +170762779247,216,0 +170762779295,215,0 +170762779343,216,0 +170762779393,216,0 +170762779441,216,0 +170762779489,217,0 +170762779538,217,0 +170762779588,218,0 +170762779637,218,0 +170762779685,218,0 +170762779735,218,0 +170762779783,218,0 +170762779832,219,0 +170762779880,218,0 +170762779928,218,0 +170762779976,215,0 +170762780025,214,0 +170762780073,215,0 +170762780121,216,0 +170762780171,216,0 +170762780219,216,0 +170762780267,217,0 +170762780315,217,0 +170762780363,217,0 +170762780412,217,0 +170762780462,218,0 +170762780511,219,0 +170762780559,218,0 +170762780609,218,0 +170762780657,219,0 +170762780705,218,0 +170762780753,218,0 +170762780801,216,0 +170762780849,216,0 +170762780896,216,0 +170762780946,216,0 +170762780994,217,0 +170762781042,217,0 +170762781090,217,0 +170762781138,219,0 +170762781186,218,0 +170762781233,218,0 +170762781281,218,0 +170762781331,218,0 +170762781379,219,0 +170762781428,219,0 +170762781476,218,0 +170762781524,218,0 +170762781572,215,0 +170762781620,215,0 +170762781668,215,0 +170762781716,217,0 +170762781764,216,0 +170762781812,217,0 +170762781862,217,0 +170762781909,218,0 +170762781959,218,0 +170762782007,219,0 +170762782055,220,0 +170762782103,219,0 +170762782151,218,0 +170762782200,219,0 +170762782248,218,0 +170762782296,218,0 +170762782344,217,0 +170762782392,216,0 +170762782440,216,0 +170762782489,217,0 +170762782539,216,0 +170762782587,217,0 +170762782636,217,0 +170762782686,218,0 +170762782734,218,0 +170762782783,218,0 +170762782831,218,0 +170762782879,218,0 +170762782929,219,0 +170762782977,218,0 +170762783024,218,0 +170762783072,218,0 +170762783120,218,0 +170762783168,217,0 +170762783216,216,0 +170762783264,217,0 +170762783312,216,0 +170762783360,217,0 +170762783408,217,0 +170762783456,218,0 +170762783504,218,0 +170762783552,218,0 +170762783600,218,0 +170762783648,219,0 +170762783696,219,0 +170762783745,218,0 +170762783795,218,0 +170762783842,218,0 +170762783890,218,0 +170762783938,218,0 +170762783986,217,0 +170762784034,217,0 +170762784082,218,0 +170762784130,217,0 +170762784178,218,0 +170762784226,219,0 +170762784274,218,0 +170762784323,218,0 +170762784373,219,0 +170762784422,218,0 +170762784472,219,0 +170762784521,218,0 +170762784571,219,0 +170762784619,218,0 +170762784667,219,0 +170762784716,218,0 +170762784766,215,0 +170762784814,215,0 +170762784863,215,0 +170762784911,216,0 +170762784961,216,0 +170762785009,216,0 +170762785057,217,0 +170762785105,217,0 +170762785152,217,0 +170762785200,218,0 +170762785250,218,0 +170762785298,218,0 +170762785346,218,0 +170762785394,219,0 +170762785442,218,0 +170762785490,218,0 +170762785538,217,0 +170762785587,215,0 +170762785635,215,0 +170762785683,215,0 +170762785732,216,0 +170762785782,216,0 +170762785831,216,0 +170762785881,216,0 +170762785929,217,0 +170762785977,217,0 +170762786025,217,0 +170762786074,218,0 +170762786122,218,0 +170762786170,218,0 +170762786218,218,0 +170762786266,219,0 +170762786314,218,0 +170762786363,218,0 +170762786411,214,0 +170762786460,215,0 +170762786508,215,0 +170762786556,215,0 +170762786604,216,0 +170762786654,216,0 +170762786702,216,0 +170762786751,217,0 +170762786799,217,0 +170762786847,218,0 +170762786895,218,0 +170762786943,218,0 +170762786993,219,0 +170762787040,218,0 +170762787088,218,0 +170762787136,218,0 +170762787186,215,0 +170762787235,215,0 +170762787283,216,0 +170762787331,216,0 +170762787379,217,0 +170762787427,217,0 +170762787475,217,0 +170762787523,217,0 +170762787571,218,0 +170762787619,218,0 +170762787668,219,0 +170762787718,218,0 +170762787766,219,0 +170762787815,219,0 +170762787863,218,0 +170762787911,219,0 +170762787960,217,0 +170762788008,216,0 +170762788058,216,0 +170762788106,217,0 +170762788154,217,0 +170762788203,217,0 +170762788253,218,0 +170762788301,219,0 +170762788348,218,0 +170762788396,218,0 +170762788446,218,0 +170762788494,219,0 +170762788543,219,0 +170762788591,220,0 +170762788639,218,0 +170762788689,218,0 +170762788737,218,0 +170762788784,216,0 +170762788834,217,0 +170762788882,217,0 +170762788930,217,0 +170762788977,217,0 +170762789025,218,0 +170762789073,219,0 +170762789123,218,0 +170762789170,218,0 +170762789218,218,0 +170762789266,219,0 +170762789314,218,0 +170762789363,218,0 +170762789413,218,0 +170762789461,218,0 +170762789508,218,0 +170762789558,217,0 +170762789606,215,0 +170762789655,215,0 +170762789703,215,0 +170762789751,216,0 +170762789799,216,0 +170762789847,217,0 +170762789894,217,0 +170762789942,217,0 +170762789990,218,0 +170762790038,218,0 +170762790088,218,0 +170762790135,218,0 +170762790185,218,0 +170762790233,219,0 +170762790281,219,0 +170762790329,218,0 +170762790377,215,0 +170762790426,214,0 +170762790476,215,0 +170762790523,215,0 +170762790571,215,0 +170762790619,216,0 +170762790667,216,0 +170762790717,217,0 +170762790765,217,0 +170762790814,218,0 +170762790862,218,0 +170762790912,219,0 +170762790961,219,0 +170762791009,219,0 +170762791058,219,0 +170762791108,218,0 +170762791156,218,0 +170762791204,215,0 +170762791251,216,0 +170762791299,216,0 +170762791347,216,0 +170762791395,216,0 +170762791443,216,0 +170762791491,217,0 +170762791540,218,0 +170762791588,218,0 +170762791636,218,0 +170762791683,219,0 +170762791733,219,0 +170762791781,218,0 +170762791828,218,0 +170762791878,218,0 +170762791926,219,0 +170762791974,217,0 +170762792021,214,0 +170762792069,215,0 +170762792117,215,0 +170762792165,214,0 +170762792213,216,0 +170762792261,216,0 +170762792309,217,0 +170762792356,217,0 +170762792404,217,0 +170762792452,218,0 +170762792500,219,0 +170762792550,218,0 +170762792599,218,0 +170762792647,218,0 +170762792695,218,0 +170762792743,218,0 +170762792791,215,0 +170762792839,214,0 +170762792887,215,0 +170762792935,215,0 +170762792983,215,0 +170762793030,216,0 +170762793078,216,0 +170762793128,216,0 +170762793176,217,0 +170762793225,218,0 +170762793275,218,0 +170762793323,218,0 +170762793371,218,0 +170762793420,219,0 +170762793468,218,0 +170762793516,218,0 +170762793564,217,0 +170762793612,214,0 +170762793660,215,0 +170762793708,215,0 +170762793756,215,0 +170762793803,215,0 +170762793851,216,0 +170762793899,217,0 +170762793947,216,0 +170762793997,217,0 +170762794046,217,0 +170762794095,218,0 +170762794143,218,0 +170762794193,219,0 +170762794241,218,0 +170762794289,218,0 +170762794336,218,0 +170762794384,215,0 +170762794434,214,0 +170762794482,214,0 +170762794530,215,0 +170762794578,215,0 +170762794625,215,0 +170762794673,216,0 +170762794721,216,0 +170762794769,216,0 +170762794817,217,0 +170762794865,217,0 +170762794913,217,0 +170762794961,217,0 +170762795009,218,0 +170762795057,218,0 +170762795104,218,0 +170762795152,217,0 +170762795200,215,0 +170762795248,215,0 +170762795298,215,0 +170762795346,216,0 +170762795394,216,0 +170762795442,216,0 +170762795491,217,0 +170762795539,217,0 +170762795587,217,0 +170762795637,218,0 +170762795685,219,0 +170762795734,218,0 +170762795782,218,0 +170762795830,218,0 +170762795880,218,0 +170762795929,217,0 +170762795979,218,0 +170762796027,216,0 +170762796074,217,0 +170762796122,217,0 +170762796172,217,0 +170762796220,218,0 +170762796268,218,0 +170762796315,217,0 +170762796363,218,0 +170762796411,218,0 +170762796459,218,0 +170762796509,219,0 +170762796558,218,0 +170762796606,218,0 +170762796654,218,0 +170762796704,219,0 +170762796753,218,0 +170762796801,216,0 +170762796850,216,0 +170762796900,216,0 +170762796948,217,0 +170762796996,216,0 +170762797044,217,0 +170762797092,217,0 +170762797140,218,0 +170762797188,218,0 +170762797235,218,0 +170762797283,219,0 +170762797331,219,0 +170762797379,218,0 +170762797427,219,0 +170762797475,218,0 +170762797523,218,0 +170762797571,217,0 +170762797619,215,0 +170762797668,215,0 +170762797718,216,0 +170762797766,216,0 +170762797814,216,0 +170762797862,216,0 +170762797910,217,0 +170762797958,217,0 +170762798007,218,0 +170762798055,217,0 +170762798103,218,0 +170762798153,218,0 +170762798200,218,0 +170762798250,219,0 +170762798299,218,0 +170762798347,218,0 +170762798395,215,0 +170762798443,215,0 +170762798491,215,0 +170762798539,216,0 +170762798586,216,0 +170762798634,216,0 +170762798682,216,0 +170762798730,216,0 +170762798778,217,0 +170762798826,217,0 +170762798874,218,0 +170762798923,218,0 +170762798971,217,0 +170762799021,218,0 +170762799069,218,0 +170762799118,218,0 +170762799166,218,0 +170762799216,216,0 +170762799263,216,0 +170762799311,216,0 +170762799359,216,0 +170762799409,217,0 +170762799457,217,0 +170762799505,217,0 +170762799552,217,0 +170762799600,218,0 +170762799648,218,0 +170762799696,218,0 +170762799744,219,0 +170762799794,218,0 +170762799842,219,0 +170762799891,219,0 +170762799939,218,0 +170762799987,218,0 +170762800037,218,0 +170762800085,217,0 +170762800133,217,0 +170762800181,218,0 +170762800228,218,0 +170762800276,218,0 +170762800326,219,0 +170762800375,219,0 +170762800425,218,0 +170762800473,219,0 +170762800521,220,0 +170762800570,219,0 +170762800618,219,0 +170762800668,219,0 +170762800716,218,0 +170762800765,218,0 +170762800813,218,0 +170762800863,218,0 +170762800912,217,0 +170762800960,218,0 +170762801008,218,0 +170762801056,218,0 +170762801106,219,0 +170762801154,219,0 +170762801202,219,0 +170762801250,220,0 +170762801298,219,0 +170762801345,219,0 +170762801393,219,0 +170762801442,218,0 +170762801490,219,0 +170762801538,218,0 +170762801586,218,0 +170762801634,216,0 +170762801683,217,0 +170762801733,217,0 +170762801782,217,0 +170762801832,219,0 +170762801881,218,0 +170762801931,218,0 +170762801979,218,0 +170762802028,220,0 +170762802076,219,0 +170762802126,219,0 +170762802174,219,0 +170762802222,218,0 +170762802270,219,0 +170762802319,218,0 +170762802369,218,0 +170762802417,216,0 +170762802465,216,0 +170762802513,216,0 +170762802561,216,0 +170762802608,217,0 +170762802658,217,0 +170762802706,217,0 +170762802755,217,0 +170762802805,218,0 +170762802853,218,0 +170762802901,218,0 +170762802949,218,0 +170762802999,219,0 +170762803048,219,0 +170762803098,219,0 +170762803146,218,0 +170762803195,216,0 +170762803243,215,0 +170762803291,215,0 +170762803341,216,0 +170762803389,216,0 +170762803437,217,0 +170762803486,217,0 +170762803536,217,0 +170762803584,218,0 +170762803632,219,0 +170762803680,218,0 +170762803729,218,0 +170762803779,218,0 +170762803827,219,0 +170762803874,219,0 +170762803924,218,0 +170762803972,218,0 +170762804020,215,0 +170762804069,215,0 +170762804119,215,0 +170762804167,216,0 +170762804215,216,0 +170762804263,216,0 +170762804312,217,0 +170762804362,217,0 +170762804410,217,0 +170762804458,217,0 +170762804506,217,0 +170762804555,218,0 +170762804603,219,0 +170762804653,219,0 +170762804701,218,0 +170762804750,219,0 +170762804798,216,0 +170762804848,215,0 +170762804896,215,0 +170762804944,215,0 +170762804991,216,0 +170762805041,216,0 +170762805089,216,0 +170762805137,217,0 +170762805186,217,0 +170762805236,217,0 +170762805284,217,0 +170762805332,218,0 +170762805380,218,0 +170762805428,218,0 +170762805477,218,0 +170762805525,218,0 +170762805573,217,0 +170762805621,214,0 +170762805671,214,0 +170762805719,214,0 +170762805767,215,0 +170762805814,215,0 +170762805862,215,0 +170762805912,216,0 +170762805960,216,0 +170762806008,217,0 +170762806056,217,0 +170762806105,218,0 +170762806153,218,0 +170762806201,218,0 +170762806249,218,0 +170762806297,218,0 +170762806345,218,0 +170762806393,218,0 +170762806442,214,0 +170762806490,214,0 +170762806538,215,0 +170762806586,215,0 +170762806635,215,0 +170762806685,214,0 +170762806733,216,0 +170762806781,216,0 +170762806829,217,0 +170762806878,218,0 +170762806928,218,0 +170762806977,218,0 +170762807025,218,0 +170762807073,218,0 +170762807123,218,0 +170762807170,218,0 +170762807218,214,0 +170762807266,214,0 +170762807314,215,0 +170762807364,215,0 +170762807412,215,0 +170762807460,216,0 +170762807507,216,0 +170762807557,216,0 +170762807605,217,0 +170762807654,217,0 +170762807704,217,0 +170762807752,218,0 +170762807800,218,0 +170762807848,218,0 +170762807897,218,0 +170762807945,218,0 +170762807993,217,0 +170762808041,215,0 +170762808090,216,0 +170762808140,216,0 +170762808189,217,0 +170762808239,217,0 +170762808287,218,0 +170762808335,217,0 +170762808383,218,0 +170762808432,218,0 +170762808480,218,0 +170762808528,219,0 +170762808576,218,0 +170762808625,219,0 +170762808673,218,0 +170762808721,218,0 +170762808769,218,0 +170762808817,216,0 +170762808866,216,0 +170762808914,216,0 +170762808962,216,0 +170762809010,217,0 +170762809058,215,0 +170762809107,218,0 +170762809155,217,0 +170762809203,217,0 +170762809251,218,0 +170762809299,218,0 +170762809347,218,0 +170762809396,218,0 +170762809444,218,0 +170762809493,218,0 +170762809543,218,0 +170762809591,218,0 +170762809639,215,0 +170762809687,215,0 +170762809735,216,0 +170762809783,216,0 +170762809832,216,0 +170762809880,217,0 +170762809928,217,0 +170762809976,217,0 +170762810024,218,0 +170762810072,219,0 +170762810120,218,0 +170762810168,218,0 +170762810217,219,0 +170762810265,218,0 +170762810315,218,0 +170762810363,217,0 +170762810412,215,0 +170762810460,215,0 +170762810508,215,0 +170762810558,216,0 +170762810607,215,0 +170762810657,216,0 +170762810704,216,0 +170762810752,216,0 +170762810800,217,0 +170762810848,216,0 +170762810896,217,0 +170762810943,218,0 +170762810991,219,0 +170762811039,218,0 +170762811087,218,0 +170762811135,218,0 +170762811183,217,0 +170762811231,215,0 +170762811279,215,0 +170762811327,216,0 +170762811375,216,0 +170762811422,216,0 +170762811470,217,0 +170762811518,217,0 +170762811566,217,0 +170762811616,218,0 +170762811663,218,0 +170762811711,218,0 +170762811759,218,0 +170762811809,218,0 +170762811857,218,0 +170762811905,218,0 +170762811952,218,0 +170762812000,218,0 +170762812048,215,0 +170762812096,214,0 +170762812144,215,0 +170762812192,216,0 +170762812240,217,0 +170762812287,216,0 +170762812335,217,0 +170762812383,218,0 +170762812431,218,0 +170762812479,218,0 +170762812527,218,0 +170762812575,219,0 +170762812624,218,0 +170762812672,218,0 +170762812722,218,0 +170762812769,218,0 +170762812817,216,0 +170762812865,217,0 +170762812915,216,0 +170762812963,217,0 +170762813012,217,0 +170762813060,217,0 +170762813110,218,0 +170762813157,218,0 +170762813205,218,0 +170762813253,218,0 +170762813303,219,0 +170762813351,221,0 +170762813398,218,0 +170762813446,218,0 +170762813494,218,0 +170762813542,217,0 +170762813590,218,0 +170762813638,216,0 +170762813687,215,0 +170762813735,216,0 +170762813785,216,0 +170762813833,217,0 +170762813881,217,0 +170762813929,217,0 +170762813977,218,0 +170762814025,218,0 +170762814074,218,0 +170762814122,218,0 +170762814170,218,0 +170762814218,217,0 +170762814266,218,0 +170762814313,219,0 +170762814361,218,0 +170762814411,216,0 +170762814459,215,0 +170762814507,215,0 +170762814556,216,0 +170762814605,216,0 +170762814653,216,0 +170762814703,217,0 +170762814751,218,0 +170762814800,217,0 +170762814848,217,0 +170762814897,218,0 +170762814945,218,0 +170762814993,218,0 +170762815041,218,0 +170762815089,219,0 +170762815137,218,0 +170762815186,217,0 +170762815234,216,0 +170762815282,216,0 +170762815330,215,0 +170762815380,216,0 +170762815429,217,0 +170762815477,217,0 +170762815526,217,0 +170762815576,217,0 +170762815624,217,0 +170762815672,217,0 +170762815720,218,0 +170762815768,218,0 +170762815817,218,0 +170762815865,218,0 +170762815915,218,0 +170762815962,218,0 +170762816012,217,0 +170762816060,215,0 +170762816108,216,0 +170762816156,216,0 +170762816204,217,0 +170762816253,217,0 +170762816301,217,0 +170762816349,217,0 +170762816397,218,0 +170762816446,218,0 +170762816494,218,0 +170762816542,219,0 +170762816590,219,0 +170762816638,218,0 +170762816687,218,0 +170762816735,218,0 +170762816783,218,0 +170762816833,215,0 +170762816881,215,0 +170762816928,215,0 +170762816976,216,0 +170762817024,216,0 +170762817072,217,0 +170762817120,217,0 +170762817168,217,0 +170762817216,217,0 +170762817264,217,0 +170762817313,218,0 +170762817363,218,0 +170762817410,218,0 +170762817458,218,0 +170762817506,218,0 +170762817554,218,0 +170762817602,217,0 +170762817652,214,0 +170762817700,215,0 +170762817748,215,0 +170762817796,215,0 +170762817844,215,0 +170762817893,216,0 +170762817941,217,0 +170762817989,217,0 +170762818039,217,0 +170762818086,218,0 +170762818136,219,0 +170762818185,219,0 +170762818235,218,0 +170762818283,219,0 +170762818331,218,0 +170762818379,217,0 +170762818426,215,0 +170762818474,215,0 +170762818522,215,0 +170762818572,215,0 +170762818620,216,0 +170762818667,216,0 +170762818717,216,0 +170762818765,216,0 +170762818813,217,0 +170762818862,218,0 +170762818912,218,0 +170762818960,218,0 +170762819008,218,0 +170762819056,218,0 +170762819104,218,0 +170762819153,218,0 +170762819201,218,0 +170762819250,215,0 +170762819298,215,0 +170762819346,216,0 +170762819396,216,0 +170762819444,216,0 +170762819493,216,0 +170762819541,217,0 +170762819591,217,0 +170762819640,218,0 +170762819688,218,0 +170762819738,218,0 +170762819785,218,0 +170762819833,218,0 +170762819881,218,0 +170762819929,218,0 +170762819977,218,0 +170762820025,216,0 +170762820073,216,0 +170762820121,216,0 +170762820169,216,0 +170762820217,217,0 +170762820265,217,0 +170762820313,217,0 +170762820362,217,0 +170762820411,217,0 +170762820459,218,0 +170762820509,218,0 +170762820558,218,0 +170762820606,218,0 +170762820654,219,0 +170762820702,218,0 +170762820752,218,0 +170762820800,218,0 +170762820847,217,0 +170762820895,217,0 +170762820945,216,0 +170762820993,217,0 +170762821042,218,0 +170762821090,217,0 +170762821140,218,0 +170762821188,218,0 +170762821237,218,0 +170762821287,218,0 +170762821335,218,0 +170762821382,219,0 +170762821430,219,0 +170762821478,219,0 +170762821528,218,0 +170762821576,218,0 +170762821625,217,0 +170762821673,215,0 +170762821721,215,0 +170762821771,216,0 +170762821819,216,0 +170762821868,217,0 +170762821916,216,0 +170762821964,217,0 +170762822012,217,0 +170762822060,218,0 +170762822109,218,0 +170762822157,218,0 +170762822207,218,0 +170762822255,218,0 +170762822303,218,0 +170762822352,218,0 +170762822400,218,0 +170762822448,215,0 +170762822498,214,0 +170762822545,215,0 +170762822593,215,0 +170762822641,215,0 +170762822691,216,0 +170762822739,216,0 +170762822788,216,0 +170762822838,217,0 +170762822886,217,0 +170762822933,217,0 +170762822981,218,0 +170762823029,217,0 +170762823077,218,0 +170762823125,218,0 +170762823175,218,0 +170762823223,217,0 +170762823271,214,0 +170762823319,215,0 +170762823366,215,0 +170762823416,215,0 +170762823466,216,0 +170762823515,216,0 +170762823563,216,0 +170762823611,216,0 +170762823660,217,0 +170762823708,217,0 +170762823756,217,0 +170762823804,217,0 +170762823852,218,0 +170762823900,218,0 +170762823948,218,0 +170762823996,218,0 +170762824044,214,0 +170762824092,215,0 +170762824140,215,0 +170762824188,215,0 +170762824237,216,0 +170762824287,216,0 +170762824336,217,0 +170762824384,217,0 +170762824434,217,0 +170762824482,217,0 +170762824530,218,0 +170762824578,219,0 +170762824627,217,0 +170762824675,218,0 +170762824725,218,0 +170762824774,218,0 +170762824822,218,0 +170762824872,216,0 +170762824920,215,0 +170762824969,216,0 +170762825017,216,0 +170762825065,216,0 +170762825113,217,0 +170762825161,217,0 +170762825209,218,0 +170762825257,218,0 +170762825305,218,0 +170762825353,219,0 +170762825400,218,0 +170762825448,218,0 +170762825498,219,0 +170762825546,218,0 +170762825595,218,0 +170762825645,215,0 +170762825693,215,0 +170762825741,216,0 +170762825789,216,0 +170762825837,217,0 +170762825885,217,0 +170762825934,218,0 +170762825982,218,0 +170762826030,217,0 +170762826078,218,0 +170762826128,219,0 +170762826176,218,0 +170762826225,218,0 +170762826275,219,0 +170762826323,218,0 +170762826371,217,0 +170762826420,218,0 +170762826470,214,0 +170762826518,215,0 +170762826566,215,0 +170762826614,216,0 +170762826662,216,0 +170762826710,216,0 +170762826757,216,0 +170762826805,217,0 +170762826855,217,0 +170762826903,218,0 +170762826953,218,0 +170762827001,218,0 +170762827050,218,0 +170762827099,218,0 +170762827149,218,0 +170762827197,218,0 +170762827245,215,0 +170762827293,215,0 +170762827342,215,0 +170762827390,216,0 +170762827438,216,0 +170762827488,216,0 +170762827537,216,0 +170762827587,217,0 +170762827636,217,0 +170762827684,218,0 +170762827732,218,0 +170762827782,218,0 +170762827830,218,0 +170762827879,219,0 +170762827928,218,0 +170762827976,218,0 +170762828026,217,0 +170762828074,214,0 +170762828123,214,0 +170762828171,215,0 +170762828219,215,0 +170762828267,215,0 +170762828317,216,0 +170762828364,216,0 +170762828412,217,0 +170762828460,217,0 +170762828508,217,0 +170762828556,217,0 +170762828604,218,0 +170762828652,219,0 +170762828700,219,0 +170762828748,218,0 +170762828798,218,0 +170762828846,215,0 +170762828895,214,0 +170762828943,214,0 +170762828992,215,0 +170762829040,215,0 +170762829088,215,0 +170762829136,216,0 +170762829186,216,0 +170762829234,216,0 +170762829281,217,0 +170762829329,217,0 +170762829377,217,0 +170762829425,218,0 +170762829473,218,0 +170762829520,218,0 +170762829568,218,0 +170762829616,218,0 +170762829664,215,0 +170762829712,215,0 +170762829760,216,0 +170762829808,216,0 +170762829857,216,0 +170762829905,216,0 +170762829953,217,0 +170762830001,217,0 +170762830049,218,0 +170762830097,218,0 +170762830146,218,0 +170762830196,217,0 +170762830244,218,0 +170762830292,218,0 +170762830340,218,0 +170762830388,218,0 +170762830437,218,0 +170762830487,216,0 +170762830535,215,0 +170762830582,215,0 +170762830630,216,0 +170762830678,217,0 +170762830728,217,0 +170762830776,218,0 +170762830824,217,0 +170762830872,217,0 +170762830921,217,0 +170762830969,219,0 +170762831017,218,0 +170762831065,219,0 +170762831113,218,0 +170762831161,218,0 +170762831208,217,0 +170762831256,216,0 +170762831304,216,0 +170762831352,216,0 +170762831401,216,0 +170762831449,217,0 +170762831497,217,0 +170762831547,217,0 +170762831594,217,0 +170762831642,217,0 +170762831690,219,0 +170762831738,218,0 +170762831786,218,0 +170762831833,218,0 +170762831881,218,0 +170762831929,218,0 +170762831977,218,0 +170762832025,218,0 +170762832073,216,0 +170762832122,217,0 +170762832170,217,0 +170762832219,218,0 +170762832267,217,0 +170762832315,218,0 +170762832363,218,0 +170762832411,218,0 +170762832458,218,0 +170762832508,219,0 +170762832556,218,0 +170762832604,217,0 +170762832653,218,0 +170762832701,219,0 +170762832749,218,0 +170762832797,218,0 +170762832845,217,0 +170762832894,216,0 +170762832942,217,0 +170762832990,217,0 +170762833038,217,0 +170762833086,218,0 +170762833134,218,0 +170762833182,218,0 +170762833230,218,0 +170762833278,218,0 +170762833326,219,0 +170762833375,219,0 +170762833423,218,0 +170762833473,218,0 +170762833521,218,0 +170762833568,218,0 +170762833616,217,0 +170762833666,216,0 +170762833714,215,0 +170762833762,216,0 +170762833810,216,0 +170762833859,216,0 +170762833907,216,0 +170762833955,216,0 +170762834003,217,0 +170762834052,218,0 +170762834100,218,0 +170762834148,218,0 +170762834196,218,0 +170762834246,218,0 +170762834294,218,0 +170762834342,218,0 +170762834391,218,0 +170762834441,218,0 +170762834488,214,0 +170762834538,215,0 +170762834586,215,0 +170762834634,215,0 +170762834681,216,0 +170762834729,216,0 +170762834777,214,0 +170762834825,217,0 +170762834873,217,0 +170762834921,217,0 +170762834969,218,0 +170762835016,218,0 +170762835064,218,0 +170762835114,218,0 +170762835163,218,0 +170762835211,218,0 +170762835261,215,0 +170762835310,215,0 +170762835358,215,0 +170762835406,216,0 +170762835454,216,0 +170762835502,216,0 +170762835552,216,0 +170762835600,217,0 +170762835647,217,0 +170762835695,218,0 +170762835743,219,0 +170762835793,219,0 +170762835840,219,0 +170762835890,219,0 +170762835939,218,0 +170762835987,218,0 +170762836035,218,0 +170762836083,215,0 +170762836133,215,0 +170762836181,215,0 +170762836229,215,0 +170762836276,216,0 +170762836324,216,0 +170762836374,216,0 +170762836423,217,0 +170762836473,217,0 +170762836521,218,0 +170762836569,218,0 +170762836618,218,0 +170762836668,219,0 +170762836717,218,0 +170762836765,218,0 +170762836813,218,0 +170762836861,215,0 +170762836909,216,0 +170762836959,216,0 +170762837007,216,0 +170762837056,216,0 +170762837104,216,0 +170762837152,217,0 +170762837200,218,0 +170762837248,218,0 +170762837296,218,0 +170762837343,218,0 +170762837393,218,0 +170762837441,218,0 +170762837490,219,0 +170762837540,219,0 +170762837587,218,0 +170762837635,217,0 +170762837683,214,0 +170762837731,216,0 +170762837779,216,0 +170762837827,217,0 +170762837876,217,0 +170762837926,217,0 +170762837974,218,0 +170762838021,218,0 +170762838069,218,0 +170762838117,218,0 +170762838165,218,0 +170762838213,219,0 +170762838261,218,0 +170762838308,219,0 +170762838356,218,0 +170762838404,218,0 +170762838452,217,0 +170762838500,214,0 +170762838549,215,0 +170762838597,215,0 +170762838645,216,0 +170762838693,216,0 +170762838741,217,0 +170762838789,217,0 +170762838838,217,0 +170762838886,217,0 +170762838934,218,0 +170762838981,218,0 +170762839029,218,0 +170762839079,218,0 +170762839126,218,0 +170762839174,218,0 +170762839222,217,0 +170762839270,215,0 +170762839318,214,0 +170762839367,215,0 +170762839415,215,0 +170762839463,216,0 +170762839511,216,0 +170762839559,217,0 +170762839606,217,0 +170762839654,217,0 +170762839702,217,0 +170762839750,217,0 +170762839798,217,0 +170762839845,217,0 +170762839893,217,0 +170762839941,218,0 +170762839989,217,0 +170762840037,218,0 +170762840085,215,0 +170762840134,215,0 +170762840183,215,0 +170762840231,216,0 +170762840279,216,0 +170762840327,216,0 +170762840375,217,0 +170762840423,218,0 +170762840471,218,0 +170762840518,218,0 +170762840566,218,0 +170762840614,218,0 +170762840662,218,0 +170762840710,219,0 +170762840758,218,0 +170762840805,218,0 +170762840853,217,0 +170762840903,215,0 +170762840952,215,0 +170762841000,215,0 +170762841048,217,0 +170762841096,216,0 +170762841144,217,0 +170762841192,217,0 +170762841240,218,0 +170762841287,217,0 +170762841335,219,0 +170762841383,219,0 +170762841431,218,0 +170762841479,218,0 +170762841527,218,0 +170762841574,218,0 +170762841622,218,0 +170762841670,215,0 +170762841718,214,0 +170762841766,214,0 +170762841814,215,0 +170762841861,216,0 +170762841909,216,0 +170762841957,216,0 +170762842005,216,0 +170762842053,217,0 +170762842101,217,0 +170762842150,217,0 +170762842198,218,0 +170762842246,218,0 +170762842294,218,0 +170762842341,218,0 +170762842389,218,0 +170762842437,217,0 +170762842485,214,0 +170762842533,214,0 +170762842581,215,0 +170762842630,215,0 +170762842680,215,0 +170762842728,215,0 +170762842776,216,0 +170762842823,216,0 +170762842873,217,0 +170762842921,217,0 +170762842969,218,0 +170762843016,218,0 +170762843064,217,0 +170762843113,218,0 +170762843160,217,0 +170762843208,217,0 +170762843256,217,0 +170762843304,214,0 +170762843352,214,0 +170762843399,214,0 +170762843447,215,0 +170762843495,215,0 +170762843543,215,0 +170762843592,216,0 +170762843640,217,0 +170762843688,217,0 +170762843736,218,0 +170762843784,217,0 +170762843831,218,0 +170762843879,218,0 +170762843927,218,0 +170762843975,218,0 +170762844023,217,0 +170762844071,215,0 +170762844120,215,0 +170762844168,215,0 +170762844218,216,0 +170762844266,216,0 +170762844313,216,0 +170762844363,217,0 +170762844411,217,0 +170762844459,217,0 +170762844507,218,0 +170762844556,217,0 +170762844604,218,0 +170762844653,218,0 +170762844701,218,0 +170762844749,218,0 +170762844797,218,0 +170762844845,218,0 +170762844893,216,0 +170762844941,216,0 +170762844989,216,0 +170762845037,216,0 +170762845085,217,0 +170762845133,217,0 +170762845181,218,0 +170762845228,218,0 +170762845276,219,0 +170762845324,218,0 +170762845374,218,0 +170762845422,218,0 +170762845471,219,0 +170762845519,218,0 +170762845567,218,0 +170762845615,218,0 +170762845663,218,0 +170762845713,216,0 +170762845761,216,0 +170762845809,216,0 +170762845856,217,0 +170762845904,217,0 +170762845952,217,0 +170762846002,217,0 +170762846050,218,0 +170762846097,218,0 +170762846145,217,0 +170762846193,218,0 +170762846243,218,0 +170762846292,218,0 +170762846340,218,0 +170762846388,218,0 +170762846436,218,0 +170762846483,215,0 +170762846531,215,0 +170762846579,215,0 +170762846627,215,0 +170762846676,216,0 +170762846724,217,0 +170762846772,217,0 +170762846820,217,0 +170762846868,217,0 +170762846916,217,0 +170762846964,218,0 +170762847011,218,0 +170762847059,218,0 +170762847107,218,0 +170762847155,218,0 +170762847205,218,0 +170762847252,218,0 +170762847300,215,0 +170762847348,215,0 +170762847396,215,0 +170762847444,216,0 +170762847491,216,0 +170762847539,217,0 +170762847587,217,0 +170762847635,217,0 +170762847683,217,0 +170762847731,218,0 +170762847779,216,0 +170762847827,218,0 +170762847876,218,0 +170762847924,218,0 +170762847972,218,0 +170762848020,218,0 +170762848068,217,0 +170762848116,215,0 +170762848163,215,0 +170762848211,216,0 +170762848259,216,0 +170762848307,217,0 +170762848355,217,0 +170762848403,217,0 +170762848450,216,0 +170762848500,218,0 +170762848549,218,0 +170762848599,220,0 +170762848647,218,0 +170762848695,218,0 +170762848744,218,0 +170762848794,218,0 +170762848842,217,0 +170762848890,216,0 +170762848937,216,0 +170762848985,218,0 +170762849033,218,0 +170762849083,218,0 +170762849131,218,0 +170762849179,218,0 +170762849227,218,0 +170762849276,219,0 +170762849324,219,0 +170762849372,219,0 +170762849420,219,0 +170762849468,219,0 +170762849516,219,0 +170762849565,218,0 +170762849614,219,0 +170762849664,218,0 +170762849712,217,0 +170762849760,218,0 +170762849808,218,0 +170762849856,218,0 +170762849904,219,0 +170762849951,219,0 +170762850001,219,0 +170762850049,219,0 +170762850097,219,0 +170762850145,219,0 +170762850193,218,0 +170762850242,219,0 +170762850292,218,0 +170762850341,218,0 +170762850391,218,0 +170762850439,218,0 +170762850486,216,0 +170762850534,216,0 +170762850582,216,0 +170762850630,217,0 +170762850678,217,0 +170762850728,217,0 +170762850776,218,0 +170762850824,218,0 +170762850872,219,0 +170762850921,219,0 +170762850969,219,0 +170762851019,218,0 +170762851068,219,0 +170762851118,219,0 +170762851166,218,0 +170762851215,218,0 +170762851263,218,0 +170762851313,215,0 +170762851361,215,0 +170762851408,215,0 +170762851456,215,0 +170762851504,216,0 +170762851552,216,0 +170762851600,217,0 +170762851648,218,0 +170762851697,217,0 +170762851745,218,0 +170762851795,218,0 +170762851844,219,0 +170762851893,219,0 +170762851941,218,0 +170762851989,218,0 +170762852037,217,0 +170762852087,214,0 +170762852136,214,0 +170762852184,215,0 +170762852232,215,0 +170762852280,216,0 +170762852329,216,0 +170762852377,216,0 +170762852425,216,0 +170762852473,217,0 +170762852521,218,0 +170762852568,218,0 +170762852616,219,0 +170762852666,218,0 +170762852714,219,0 +170762852762,218,0 +170762852811,218,0 +170762852861,217,0 +170762852909,214,0 +170762852956,215,0 +170762853006,215,0 +170762853054,215,0 +170762853102,215,0 +170762853151,216,0 +170762853199,216,0 +170762853247,217,0 +170762853297,217,0 +170762853346,217,0 +170762853394,218,0 +170762853442,218,0 +170762853490,218,0 +170762853538,218,0 +170762853586,218,0 +170762853634,218,0 +170762853682,215,0 +170762853730,214,0 +170762853778,215,0 +170762853826,215,0 +170762853874,216,0 +170762853922,216,0 +170762853971,217,0 +170762854019,216,0 +170762854067,217,0 +170762854115,218,0 +170762854164,218,0 +170762854212,218,0 +170762854260,218,0 +170762854308,218,0 +170762854356,218,0 +170762854404,218,0 +170762854452,217,0 +170762854500,214,0 +170762854548,214,0 +170762854597,215,0 +170762854645,215,0 +170762854693,216,0 +170762854741,215,0 +170762854789,216,0 +170762854836,217,0 +170762854884,217,0 +170762854934,217,0 +170762854982,218,0 +170762855029,218,0 +170762855077,218,0 +170762855127,221,0 +170762855175,218,0 +170762855222,218,0 +170762855270,216,0 +170762855318,214,0 +170762855366,215,0 +170762855413,215,0 +170762855461,215,0 +170762855509,215,0 +170762855557,215,0 +170762855605,216,0 +170762855652,216,0 +170762855700,217,0 +170762855748,217,0 +170762855796,218,0 +170762855844,218,0 +170762855892,218,0 +170762855939,218,0 +170762855987,218,0 +170762856035,218,0 +170762856084,215,0 +170762856132,214,0 +170762856180,215,0 +170762856228,215,0 +170762856278,216,0 +170762856327,216,0 +170762856377,217,0 +170762856425,217,0 +170762856472,217,0 +170762856522,218,0 +170762856571,218,0 +170762856619,218,0 +170762856667,218,0 +170762856715,219,0 +170762856763,218,0 +170762856811,218,0 +170762856859,217,0 +170762856907,215,0 +170762856955,215,0 +170762857003,216,0 +170762857051,216,0 +170762857099,216,0 +170762857147,217,0 +170762857194,217,0 +170762857242,217,0 +170762857290,217,0 +170762857338,217,0 +170762857386,218,0 +170762857434,218,0 +170762857483,218,0 +170762857533,218,0 +170762857581,218,0 +170762857629,218,0 +170762857677,215,0 +170762857724,215,0 +170762857772,216,0 +170762857820,216,0 +170762857870,216,0 +170762857919,217,0 +170762857967,218,0 +170762858015,217,0 +170762858064,217,0 +170762858112,217,0 +170762858160,217,0 +170762858208,217,0 +170762858256,218,0 +170762858304,218,0 +170762858351,218,0 +170762858399,218,0 +170762858447,218,0 +170762858495,215,0 +170762858543,215,0 +170762858591,215,0 +170762858638,216,0 +170762858686,216,0 +170762858736,216,0 +170762858784,216,0 +170762858832,217,0 +170762858879,217,0 +170762858927,217,0 +170762858975,217,0 +170762859023,219,0 +170762859071,218,0 +170762859119,218,0 +170762859167,219,0 +170762859214,218,0 +170762859262,219,0 +170762859310,215,0 +170762859358,215,0 +170762859406,215,0 +170762859453,216,0 +170762859501,216,0 +170762859551,217,0 +170762859598,217,0 +170762859646,217,0 +170762859694,218,0 +170762859743,218,0 +170762859791,219,0 +170762859839,218,0 +170762859887,219,0 +170762859935,218,0 +170762859983,219,0 +170762860031,218,0 +170762860079,216,0 +170762860128,216,0 +170762860178,215,0 +170762860226,216,0 +170762860275,216,0 +170762860323,217,0 +170762860371,218,0 +170762860419,218,0 +170762860469,217,0 +170762860517,218,0 +170762860565,218,0 +170762860613,219,0 +170762860662,218,0 +170762860711,219,0 +170762860759,218,0 +170762860809,218,0 +170762860857,218,0 +170762860906,215,0 +170762860956,216,0 +170762861004,216,0 +170762861052,216,0 +170762861099,217,0 +170762861147,217,0 +170762861197,218,0 +170762861245,218,0 +170762861294,218,0 +170762861342,219,0 +170762861390,218,0 +170762861438,220,0 +170762861486,219,0 +170762861536,218,0 +170762861585,218,0 +170762861633,218,0 +170762861683,216,0 +170762861731,217,0 +170762861779,217,0 +170762861828,217,0 +170762861876,218,0 +170762861924,218,0 +170762861974,217,0 +170762862024,218,0 +170762862073,218,0 +170762862121,218,0 +170762862169,218,0 +170762862218,218,0 +170762862266,219,0 +170762862314,218,0 +170762862362,218,0 +170762862410,218,0 +170762862458,218,0 +170762862507,216,0 +170762862557,216,0 +170762862605,218,0 +170762862653,217,0 +170762862701,217,0 +170762862749,218,0 +170762862797,218,0 +170762862846,218,0 +170762862896,219,0 +170762862945,218,0 +170762862993,218,0 +170762863043,218,0 +170762863091,218,0 +170762863140,218,0 +170762863188,218,0 +170762863236,218,0 +170762863284,216,0 +170762863332,215,0 +170762863382,216,0 +170762863429,216,0 +170762863477,216,0 +170762863527,217,0 +170762863575,216,0 +170762863623,217,0 +170762863671,218,0 +170762863718,218,0 +170762863766,217,0 +170762863816,218,0 +170762863865,219,0 +170762863913,218,0 +170762863963,219,0 +170762864011,218,0 +170762864059,217,0 +170762864108,215,0 +170762864158,215,0 +170762864207,215,0 +170762864257,216,0 +170762864306,216,0 +170762864354,216,0 +170762864402,216,0 +170762864450,217,0 +170762864498,218,0 +170762864546,218,0 +170762864594,218,0 +170762864642,218,0 +170762864691,219,0 +170762864739,218,0 +170762864788,218,0 +170762864836,218,0 +170762864886,215,0 +170762864934,215,0 +170762864983,216,0 +170762865031,216,0 +170762865080,216,0 +170762865128,216,0 +170762865176,217,0 +170762865224,217,0 +170762865272,218,0 +170762865320,218,0 +170762865368,218,0 +170762865416,218,0 +170762865463,218,0 +170762865513,219,0 +170762865561,219,0 +170762865609,217,0 +170762865657,218,0 +170762865706,214,0 +170762865754,215,0 +170762865802,215,0 +170762865850,216,0 +170762865898,217,0 +170762865947,217,0 +170762865995,217,0 +170762866043,218,0 +170762866091,218,0 +170762866139,218,0 +170762866187,218,0 +170762866235,219,0 +170762866282,219,0 +170762866330,218,0 +170762866378,218,0 +170762866426,218,0 +170762866475,218,0 +170762866523,215,0 +170762866571,216,0 +170762866619,215,0 +170762866667,215,0 +170762866716,216,0 +170762866764,216,0 +170762866814,216,0 +170762866862,216,0 +170762866911,217,0 +170762866959,218,0 +170762867007,218,0 +170762867055,218,0 +170762867103,218,0 +170762867151,218,0 +170762867199,218,0 +170762867247,218,0 +170762867295,214,0 +170762867343,214,0 +170762867390,215,0 +170762867440,215,0 +170762867488,216,0 +170762867537,215,0 +170762867587,216,0 +170762867635,216,0 +170762867684,216,0 +170762867734,217,0 +170762867781,217,0 +170762867831,218,0 +170762867879,218,0 +170762867927,218,0 +170762867975,218,0 +170762868023,218,0 +170762868070,218,0 +170762868118,213,0 +170762868166,214,0 +170762868214,214,0 +170762868262,214,0 +170762868310,215,0 +170762868358,216,0 +170762868406,216,0 +170762868454,216,0 +170762868502,217,0 +170762868550,217,0 +170762868598,218,0 +170762868645,218,0 +170762868693,218,0 +170762868743,218,0 +170762868791,217,0 +170762868840,217,0 +170762868888,217,0 +170762868936,215,0 +170762868984,215,0 +170762869032,216,0 +170762869080,216,0 +170762869129,217,0 +170762869179,217,0 +170762869227,217,0 +170762869275,217,0 +170762869323,218,0 +170762869371,218,0 +170762869419,218,0 +170762869468,218,0 +170762869518,218,0 +170762869566,218,0 +170762869614,218,0 +170762869662,217,0 +170762869711,215,0 +170762869759,216,0 +170762869808,216,0 +170762869856,216,0 +170762869904,216,0 +170762869952,217,0 +170762870001,217,0 +170762870049,217,0 +170762870097,218,0 +170762870145,218,0 +170762870195,218,0 +170762870243,218,0 +170762870291,219,0 +170762870340,218,0 +170762870388,218,0 +170762870438,218,0 +170762870486,215,0 +170762870535,214,0 +170762870585,215,0 +170762870633,215,0 +170762870680,216,0 +170762870728,216,0 +170762870776,216,0 +170762870826,217,0 +170762870874,217,0 +170762870922,217,0 +170762870970,217,0 +170762871019,218,0 +170762871067,218,0 +170762871115,218,0 +170762871163,218,0 +170762871211,217,0 +170762871259,218,0 +170762871307,214,0 +170762871355,214,0 +170762871404,214,0 +170762871452,215,0 +170762871502,215,0 +170762871550,215,0 +170762871597,215,0 +170762871645,216,0 +170762871695,216,0 +170762871743,216,0 +170762871791,216,0 +170762871839,217,0 +170762871887,216,0 +170762871935,217,0 +170762871984,218,0 +170762872032,218,0 +170762872080,218,0 +170762872128,218,0 +170762872176,218,0 +170762872223,219,0 +170762872273,219,0 +170762872322,218,0 +170762872370,219,0 +170762872418,218,0 +170762872466,218,0 +170762872514,215,0 +170762872562,215,0 +170762872610,215,0 +170762872659,216,0 +170762872709,217,0 +170762872757,216,0 +170762872805,217,0 +170762872854,217,0 +170762872902,217,0 +170762872950,218,0 +170762872998,218,0 +170762873046,218,0 +170762873094,218,0 +170762873143,218,0 +170762873193,218,0 +170762873242,218,0 +170762873292,214,0 +170762873341,215,0 +170762873389,216,0 +170762873437,216,0 +170762873485,216,0 +170762873534,217,0 +170762873582,217,0 +170762873630,217,0 +170762873678,218,0 +170762873726,218,0 +170762873774,218,0 +170762873822,218,0 +170762873870,218,0 +170762873919,219,0 +170762873967,218,0 +170762874017,218,0 +170762874065,218,0 +170762874113,214,0 +170762874162,215,0 +170762874210,216,0 +170762874258,217,0 +170762874306,216,0 +170762874354,217,0 +170762874402,217,0 +170762874450,217,0 +170762874499,218,0 +170762874547,218,0 +170762874595,218,0 +170762874643,219,0 +170762874691,219,0 +170762874741,218,0 +170762874789,218,0 +170762874836,218,0 +170762874884,218,0 +170762874934,215,0 +170762874982,217,0 +170762875030,216,0 +170762875079,216,0 +170762875127,216,0 +170762875175,218,0 +170762875223,218,0 +170762875271,218,0 +170762875319,218,0 +170762875367,218,0 +170762875415,219,0 +170762875463,218,0 +170762875511,219,0 +170762875558,218,0 +170762875606,218,0 +170762875654,217,0 +170762875702,215,0 +170762875750,215,0 +170762875798,215,0 +170762875846,216,0 +170762875894,216,0 +170762875942,215,0 +170762875990,217,0 +170762876039,217,0 +170762876087,217,0 +170762876137,217,0 +170762876185,218,0 +170762876233,218,0 +170762876281,218,0 +170762876328,218,0 +170762876376,218,0 +170762876426,218,0 +170762876475,218,0 +170762876523,215,0 +170762876573,215,0 +170762876621,215,0 +170762876669,215,0 +170762876718,215,0 +170762876766,216,0 +170762876814,217,0 +170762876862,217,0 +170762876911,217,0 +170762876959,217,0 +170762877009,217,0 +170762877057,218,0 +170762877106,218,0 +170762877154,218,0 +170762877204,218,0 +170762877253,218,0 +170762877301,215,0 +170762877349,215,0 +170762877399,216,0 +170762877447,216,0 +170762877494,216,0 +170762877542,217,0 +170762877590,217,0 +170762877640,217,0 +170762877688,218,0 +170762877736,218,0 +170762877784,219,0 +170762877833,219,0 +170762877883,218,0 +170762877932,218,0 +170762877980,219,0 +170762878028,218,0 +170762878076,218,0 +170762878124,215,0 +170762878173,215,0 +170762878221,215,0 +170762878269,216,0 +170762878319,216,0 +170762878367,216,0 +170762878414,217,0 +170762878462,217,0 +170762878510,218,0 +170762878558,218,0 +170762878606,218,0 +170762878654,218,0 +170762878702,218,0 +170762878752,218,0 +170762878800,218,0 +170762878849,218,0 +170762878897,215,0 +170762878946,215,0 +170762878994,216,0 +170762879042,216,0 +170762879090,216,0 +170762879138,216,0 +170762879188,217,0 +170762879236,217,0 +170762879285,218,0 +170762879334,219,0 +170762879382,218,0 +170762879430,218,0 +170762879478,219,0 +170762879526,218,0 +170762879574,218,0 +170762879624,218,0 +170762879671,219,0 +170762879719,215,0 +170762879767,215,0 +170762879815,215,0 +170762879863,216,0 +170762879911,216,0 +170762879959,216,0 +170762880007,217,0 +170762880056,218,0 +170762880106,217,0 +170762880154,218,0 +170762880202,219,0 +170762880251,219,0 +170762880299,218,0 +170762880347,218,0 +170762880395,218,0 +170762880443,218,0 +170762880491,218,0 +170762880539,216,0 +170762880587,216,0 +170762880634,216,0 +170762880682,217,0 +170762880732,216,0 +170762880781,217,0 +170762880831,217,0 +170762880879,218,0 +170762880927,218,0 +170762880975,217,0 +170762881022,218,0 +170762881072,218,0 +170762881121,219,0 +170762881169,218,0 +170762881217,218,0 +170762881265,218,0 +170762881315,217,0 +170762881362,217,0 +170762881410,217,0 +170762881458,217,0 +170762881506,217,0 +170762881554,217,0 +170762881602,218,0 +170762881650,218,0 +170762881700,218,0 +170762881749,218,0 +170762881797,218,0 +170762881847,219,0 +170762881896,218,0 +170762881944,218,0 +170762881992,218,0 +170762882040,218,0 +170762882089,217,0 +170762882137,216,0 +170762882185,217,0 +170762882233,217,0 +170762882280,218,0 +170762882328,217,0 +170762882378,217,0 +170762882426,218,0 +170762882473,218,0 +170762882521,219,0 +170762882569,218,0 +170762882617,219,0 +170762882665,219,0 +170762882712,218,0 +170762882760,218,0 +170762882808,218,0 +170762882858,217,0 +170762882905,215,0 +170762882953,215,0 +170762883001,215,0 +170762883049,216,0 +170762883097,216,0 +170762883145,216,0 +170762883193,216,0 +170762883240,216,0 +170762883288,217,0 +170762883338,218,0 +170762883387,219,0 +170762883435,218,0 +170762883483,218,0 +170762883531,218,0 +170762883581,218,0 +170762883630,218,0 +170762883680,218,0 +170762883729,215,0 +170762883777,215,0 +170762883825,216,0 +170762883875,216,0 +170762883924,216,0 +170762883972,217,0 +170762884020,217,0 +170762884070,217,0 +170762884118,217,0 +170762884167,218,0 +170762884217,218,0 +170762884265,218,0 +170762884314,218,0 +170762884362,218,0 +170762884410,218,0 +170762884460,218,0 +170762884509,215,0 +170762884557,215,0 +170762884605,215,0 +170762884653,215,0 +170762884701,216,0 +170762884749,216,0 +170762884797,216,0 +170762884845,217,0 +170762884893,217,0 +170762884940,217,0 +170762884988,218,0 +170762885036,218,0 +170762885084,218,0 +170762885132,218,0 +170762885179,218,0 +170762885227,217,0 +170762885275,218,0 +170762885323,215,0 +170762885371,215,0 +170762885420,215,0 +170762885468,216,0 +170762885516,216,0 +170762885566,217,0 +170762885613,216,0 +170762885661,217,0 +170762885709,218,0 +170762885757,218,0 +170762885805,219,0 +170762885853,218,0 +170762885901,218,0 +170762885948,218,0 +170762885996,218,0 +170762886044,218,0 +170762886092,217,0 +170762886140,215,0 +170762886189,216,0 +170762886238,216,0 +170762886288,216,0 +170762886336,217,0 +170762886383,217,0 +170762886431,218,0 +170762886481,218,0 +170762886528,218,0 +170762886576,219,0 +170762886624,218,0 +170762886672,218,0 +170762886720,218,0 +170762886768,218,0 +170762886815,219,0 +170762886863,218,0 +170762886911,216,0 +170762886959,216,0 +170762887007,216,0 +170762887054,216,0 +170762887102,217,0 +170762887150,218,0 +170762887198,218,0 +170762887246,218,0 +170762887293,217,0 +170762887341,218,0 +170762887389,218,0 +170762887437,218,0 +170762887484,218,0 +170762887532,219,0 +170762887580,219,0 +170762887628,218,0 +170762887676,217,0 +170762887726,216,0 +170762887774,216,0 +170762887822,216,0 +170762887872,216,0 +170762887920,216,0 +170762887968,216,0 +170762888015,217,0 +170762888065,218,0 +170762888114,218,0 +170762888162,218,0 +170762888210,218,0 +170762888258,219,0 +170762888306,218,0 +170762888354,219,0 +170762888402,219,0 +170762888450,218,0 +170762888498,217,0 +170762888546,215,0 +170762888594,215,0 +170762888641,216,0 +170762888689,216,0 +170762888739,217,0 +170762888787,217,0 +170762888835,218,0 +170762888883,218,0 +170762888930,218,0 +170762888978,218,0 +170762889026,218,0 +170762889074,218,0 +170762889122,218,0 +170762889170,218,0 +170762889218,218,0 +170762889265,218,0 +170762889313,217,0 +170762889361,215,0 +170762889409,216,0 +170762889458,216,0 +170762889506,216,0 +170762889554,217,0 +170762889604,217,0 +170762889652,217,0 +170762889700,218,0 +170762889747,218,0 +170762889795,218,0 +170762889843,218,0 +170762889891,218,0 +170762889939,219,0 +170762889987,219,0 +170762890035,218,0 +170762890084,218,0 +170762890132,216,0 +170762890180,216,0 +170762890228,216,0 +170762890277,216,0 +170762890325,216,0 +170762890373,217,0 +170762890423,218,0 +170762890471,217,0 +170762890520,218,0 +170762890568,218,0 +170762890616,218,0 +170762890664,218,0 +170762890712,218,0 +170762890760,218,0 +170762890808,218,0 +170762890856,218,0 +170762890904,217,0 +170762890952,214,0 +170762891001,214,0 +170762891051,215,0 +170762891099,215,0 +170762891147,216,0 +170762891196,216,0 +170762891246,216,0 +170762891295,217,0 +170762891345,217,0 +170762891393,218,0 +170762891442,218,0 +170762891490,218,0 +170762891538,218,0 +170762891588,218,0 +170762891637,218,0 +170762891685,218,0 +170762891733,215,0 +170762891781,214,0 +170762891829,215,0 +170762891878,215,0 +170762891926,215,0 +170762891974,216,0 +170762892024,216,0 +170762892073,216,0 +170762892122,217,0 +170762892170,217,0 +170762892218,217,0 +170762892266,218,0 +170762892314,218,0 +170762892363,218,0 +170762892413,218,0 +170762892461,218,0 +170762892508,217,0 +170762892556,214,0 +170762892606,214,0 +170762892654,215,0 +170762892702,215,0 +170762892750,215,0 +170762892798,215,0 +170762892846,216,0 +170762892894,216,0 +170762892943,217,0 +170762892991,217,0 +170762893040,217,0 +170762893088,218,0 +170762893136,218,0 +170762893184,218,0 +170762893232,218,0 +170762893282,218,0 +170762893331,215,0 +170762893379,215,0 +170762893429,216,0 +170762893478,216,0 +170762893528,216,0 +170762893575,216,0 +170762893623,217,0 +170762893671,217,0 +170762893721,217,0 +170762893770,218,0 +170762893820,218,0 +170762893868,218,0 +170762893915,218,0 +170762893963,218,0 +170762894011,218,0 +170762894059,218,0 +170762894107,216,0 +170762894155,215,0 +170762894203,216,0 +170762894251,217,0 +170762894299,217,0 +170762894348,217,0 +170762894396,217,0 +170762894444,217,0 +170762894492,218,0 +170762894540,217,0 +170762894588,218,0 +170762894636,219,0 +170762894685,218,0 +170762894733,218,0 +170762894781,219,0 +170762894830,218,0 +170762894878,219,0 +170762894926,216,0 +170762894974,215,0 +170762895024,215,0 +170762895071,216,0 +170762895121,216,0 +170762895169,216,0 +170762895217,217,0 +170762895266,217,0 +170762895316,217,0 +170762895365,218,0 +170762895413,217,0 +170762895461,218,0 +170762895511,218,0 +170762895559,217,0 +170762895606,218,0 +170762895654,218,0 +170762895704,218,0 +170762895753,215,0 +170762895801,215,0 +170762895849,216,0 +170762895897,216,0 +170762895947,216,0 +170762895996,217,0 +170762896044,217,0 +170762896092,217,0 +170762896140,217,0 +170762896190,217,0 +170762896239,217,0 +170762896287,219,0 +170762896337,218,0 +170762896385,218,0 +170762896433,218,0 +170762896480,218,0 +170762896528,215,0 +170762896576,215,0 +170762896624,215,0 +170762896672,216,0 +170762896722,216,0 +170762896770,217,0 +170762896819,217,0 +170762896869,216,0 +170762896916,217,0 +170762896964,218,0 +170762897012,218,0 +170762897062,218,0 +170762897111,219,0 +170762897159,219,0 +170762897209,218,0 +170762897258,218,0 +170762897308,217,0 +170762897357,216,0 +170762897405,216,0 +170762897453,216,0 +170762897501,217,0 +170762897549,217,0 +170762897597,217,0 +170762897645,217,0 +170762897695,217,0 +170762897743,218,0 +170762897790,218,0 +170762897838,218,0 +170762897886,218,0 +170762897934,218,0 +170762897983,218,0 +170762898031,218,0 +170762898081,218,0 +170762898129,215,0 +170762898178,216,0 +170762898226,217,0 +170762898276,218,0 +170762898324,218,0 +170762898373,218,0 +170762898421,219,0 +170762898469,218,0 +170762898519,219,0 +170762898568,218,0 +170762898616,219,0 +170762898664,219,0 +170762898712,219,0 +170762898760,219,0 +170762898810,219,0 +170762898857,218,0 +170762898905,218,0 +170762898955,218,0 +170762899003,218,0 +170762899051,218,0 +170762899100,218,0 +170762899148,218,0 +170762899196,219,0 +170762899244,219,0 +170762899292,219,0 +170762899340,219,0 +170762899389,219,0 +170762899438,218,0 +170762899486,219,0 +170762899536,219,0 +170762899584,218,0 +170762899634,218,0 +170762899681,218,0 +170762899729,216,0 +170762899779,216,0 +170762899827,217,0 +170762899875,217,0 +170762899923,217,0 +170762899971,218,0 +170762900020,218,0 +170762900068,217,0 +170762900118,218,0 +170762900167,218,0 +170762900215,218,0 +170762900263,220,0 +170762900312,218,0 +170762900360,219,0 +170762900410,218,0 +170762900459,218,0 +170762900507,218,0 +170762900555,215,0 +170762900603,215,0 +170762900651,214,0 +170762900700,216,0 +170762900750,216,0 +170762900798,216,0 +170762900846,217,0 +170762900894,217,0 +170762900941,218,0 +170762900989,218,0 +170762901037,218,0 +170762901085,218,0 +170762901133,219,0 +170762901181,218,0 +170762901228,218,0 +170762901276,218,0 +170762901324,216,0 +170762901372,214,0 +170762901420,215,0 +170762901468,215,0 +170762901515,216,0 +170762901563,216,0 +170762901611,217,0 +170762901659,217,0 +170762901707,218,0 +170762901755,217,0 +170762901802,218,0 +170762901852,217,0 +170762901900,218,0 +170762901948,218,0 +170762901995,218,0 +170762902043,218,0 +170762902091,217,0 +170762902141,216,0 +170762902188,215,0 +170762902236,214,0 +170762902284,216,0 +170762902332,216,0 +170762902382,216,0 +170762902429,217,0 +170762902479,217,0 +170762902527,217,0 +170762902576,217,0 +170762902624,218,0 +170762902674,218,0 +170762902722,218,0 +170762902769,219,0 +170762902817,218,0 +170762902865,218,0 +170762902913,217,0 +170762902961,214,0 +170762903009,214,0 +170762903057,215,0 +170762903105,215,0 +170762903155,216,0 +170762903204,216,0 +170762903253,216,0 +170762903301,217,0 +170762903349,217,0 +170762903397,217,0 +170762903445,218,0 +170762903492,218,0 +170762903540,218,0 +170762903590,218,0 +170762903638,218,0 +170762903686,218,0 +170762903735,215,0 +170762903783,214,0 +170762903831,213,0 +170762903881,215,0 +170762903929,215,0 +170762903977,215,0 +170762904025,216,0 +170762904072,217,0 +170762904120,216,0 +170762904170,217,0 +170762904219,218,0 +170762904269,219,0 +170762904317,218,0 +170762904365,218,0 +170762904414,219,0 +170762904462,218,0 +170762904510,217,0 +170762904558,214,0 +170762904607,215,0 +170762904655,215,0 +170762904703,215,0 +170762904751,216,0 +170762904799,216,0 +170762904847,217,0 +170762904895,217,0 +170762904943,217,0 +170762904992,218,0 +170762905040,218,0 +170762905088,218,0 +170762905136,218,0 +170762905184,218,0 +170762905233,218,0 +170762905281,217,0 +170762905329,215,0 +170762905378,214,0 +170762905428,214,0 +170762905477,215,0 +170762905525,215,0 +170762905573,216,0 +170762905621,217,0 +170762905670,217,0 +170762905720,217,0 +170762905768,217,0 +170762905817,218,0 +170762905865,218,0 +170762905913,218,0 +170762905961,218,0 +170762906009,218,0 +170762906059,218,0 +170762906108,217,0 +170762906156,216,0 +170762906204,216,0 +170762906252,216,0 +170762906301,216,0 +170762906349,215,0 +170762906397,217,0 +170762906447,217,0 +170762906495,217,0 +170762906543,218,0 +170762906590,218,0 +170762906638,218,0 +170762906686,218,0 +170762906736,218,0 +170762906785,219,0 +170762906835,218,0 +170762906883,218,0 +170762906932,215,0 +170762906980,216,0 +170762907028,216,0 +170762907077,216,0 +170762907125,217,0 +170762907173,217,0 +170762907221,217,0 +170762907270,217,0 +170762907320,217,0 +170762907368,217,0 +170762907417,218,0 +170762907467,218,0 +170762907515,218,0 +170762907563,218,0 +170762907611,218,0 +170762907659,218,0 +170762907706,218,0 +170762907756,215,0 +170762907804,215,0 +170762907853,215,0 +170762907903,216,0 +170762907951,215,0 +170762908000,215,0 +170762908048,216,0 +170762908096,217,0 +170762908144,216,0 +170762908192,217,0 +170762908241,217,0 +170762908291,217,0 +170762908339,219,0 +170762908387,219,0 +170762908436,218,0 +170762908486,218,0 +170762908534,215,0 +170762908583,215,0 +170762908631,215,0 +170762908679,216,0 +170762908727,216,0 +170762908775,216,0 +170762908825,217,0 +170762908872,217,0 +170762908920,217,0 +170762908970,217,0 +170762909019,218,0 +170762909067,218,0 +170762909117,218,0 +170762909165,218,0 +170762909214,218,0 +170762909262,218,0 +170762909310,217,0 +170762909359,215,0 +170762909407,215,0 +170762909455,216,0 +170762909503,216,0 +170762909552,216,0 +170762909600,216,0 +170762909648,216,0 +170762909696,217,0 +170762909744,217,0 +170762909792,218,0 +170762909840,218,0 +170762909888,218,0 +170762909936,218,0 +170762909983,218,0 +170762910033,218,0 +170762910081,218,0 +170762910129,217,0 +170762910178,215,0 +170762910228,215,0 +170762910275,216,0 +170762910323,216,0 +170762910371,217,0 +170762910419,217,0 +170762910469,218,0 +170762910517,218,0 +170762910565,218,0 +170762910613,218,0 +170762910661,218,0 +170762910708,218,0 +170762910756,218,0 +170762910804,218,0 +170762910852,218,0 +170762910900,218,0 +170762910948,216,0 +170762910995,217,0 +170762911043,217,0 +170762911091,217,0 +170762911139,217,0 +170762911187,218,0 +170762911235,218,0 +170762911284,218,0 +170762911332,218,0 +170762911380,218,0 +170762911430,218,0 +170762911479,219,0 +170762911527,218,0 +170762911575,218,0 +170762911623,218,0 +170762911673,218,0 +170762911722,217,0 +170762911772,216,0 +170762911820,216,0 +170762911869,216,0 +170762911917,216,0 +170762911967,216,0 +170762912015,218,0 +170762912063,217,0 +170762912111,218,0 +170762912158,218,0 +170762912206,218,0 +170762912254,218,0 +170762912302,218,0 +170762912350,218,0 +170762912398,218,0 +170762912447,218,0 +170762912497,218,0 +170762912546,216,0 +170762912596,215,0 +170762912644,216,0 +170762912693,216,0 +170762912741,216,0 +170762912789,217,0 +170762912837,217,0 +170762912885,217,0 +170762912934,217,0 +170762912984,217,0 +170762913033,218,0 +170762913081,218,0 +170762913131,219,0 +170762913179,218,0 +170762913227,217,0 +170762913276,218,0 +170762913324,217,0 +170762913372,215,0 +170762913422,215,0 +170762913469,216,0 +170762913517,216,0 +170762913565,217,0 +170762913615,216,0 +170762913664,217,0 +170762913714,217,0 +170762913762,218,0 +170762913810,219,0 +170762913858,218,0 +170762913906,217,0 +170762913954,218,0 +170762914001,218,0 +170762914049,219,0 +170762914097,218,0 +170762914145,215,0 +170762914193,215,0 +170762914243,216,0 +170762914292,216,0 +170762914340,216,0 +170762914388,217,0 +170762914437,217,0 +170762914485,218,0 +170762914535,218,0 +170762914583,218,0 +170762914631,218,0 +170762914680,219,0 +170762914730,218,0 +170762914779,218,0 +170762914828,218,0 +170762914876,218,0 +170762914924,218,0 +170762914972,215,0 +170762915022,216,0 +170762915069,216,0 +170762915119,216,0 +170762915167,217,0 +170762915215,217,0 +170762915263,217,0 +170762915311,217,0 +170762915359,217,0 +170762915406,218,0 +170762915454,218,0 +170762915502,218,0 +170762915552,218,0 +170762915600,218,0 +170762915648,218,0 +170762915696,218,0 +170762915744,215,0 +170762915792,215,0 +170762915841,215,0 +170762915891,214,0 +170762915939,216,0 +170762915988,216,0 +170762916038,216,0 +170762916086,217,0 +170762916133,217,0 +170762916181,217,0 +170762916229,217,0 +170762916277,218,0 +170762916325,218,0 +170762916373,218,0 +170762916421,218,0 +170762916469,218,0 +170762916517,217,0 +170762916565,215,0 +170762916613,215,0 +170762916661,215,0 +170762916711,216,0 +170762916758,216,0 +170762916806,216,0 +170762916854,217,0 +170762916902,217,0 +170762916950,219,0 +170762917000,217,0 +170762917050,217,0 +170762917098,218,0 +170762917147,218,0 +170762917195,217,0 +170762917243,218,0 +170762917292,218,0 +170762917340,216,0 +170762917390,215,0 +170762917438,215,0 +170762917487,215,0 +170762917537,216,0 +170762917585,216,0 +170762917633,216,0 +170762917681,217,0 +170762917729,217,0 +170762917777,218,0 +170762917825,218,0 +170762917872,218,0 +170762917922,218,0 +170762917970,219,0 +170762918018,218,0 +170762918066,218,0 +170762918114,217,0 +170762918163,217,0 +170762918211,216,0 +170762918259,217,0 +170762918307,216,0 +170762918355,217,0 +170762918405,217,0 +170762918452,218,0 +170762918500,217,0 +170762918550,217,0 +170762918599,218,0 +170762918649,218,0 +170762918698,218,0 +170762918746,218,0 +170762918794,218,0 +170762918842,218,0 +170762918891,218,0 +170762918939,218,0 +170762918987,216,0 +170762919035,216,0 +170762919085,217,0 +170762919134,217,0 +170762919184,217,0 +170762919232,218,0 +170762919279,218,0 +170762919329,218,0 +170762919377,218,0 +170762919425,219,0 +170762919473,219,0 +170762919521,219,0 +170762919569,218,0 +170762919617,218,0 +170762919665,217,0 +170762919712,218,0 +170762919760,216,0 +170762919808,216,0 +170762919858,216,0 +170762919907,216,0 +170762919957,217,0 +170762920006,217,0 +170762920056,217,0 +170762920105,217,0 +170762920155,218,0 +170762920204,218,0 +170762920254,217,0 +170762920303,219,0 +170762920351,218,0 +170762920401,218,0 +170762920450,218,0 +170762920500,218,0 +170762920548,215,0 +170762920597,215,0 +170762920645,215,0 +170762920693,215,0 +170762920741,216,0 +170762920789,216,0 +170762920838,216,0 +170762920886,216,0 +170762920934,217,0 +170762920982,218,0 +170762921030,217,0 +170762921078,218,0 +170762921126,218,0 +170762921174,218,0 +170762921222,218,0 +170762921270,218,0 +170762921318,218,0 +170762921365,215,0 +170762921413,215,0 +170762921461,215,0 +170762921509,215,0 +170762921557,215,0 +170762921604,216,0 +170762921652,216,0 +170762921700,217,0 +170762921748,217,0 +170762921796,217,0 +170762921844,217,0 +170762921891,218,0 +170762921939,219,0 +170762921989,218,0 +170762922037,218,0 +170762922085,218,0 +170762922134,217,0 +170762922182,215,0 +170762922230,215,0 +170762922278,215,0 +170762922326,216,0 +170762922374,216,0 +170762922422,217,0 +170762922471,217,0 +170762922519,217,0 +170762922568,217,0 +170762922616,218,0 +170762922664,218,0 +170762922712,218,0 +170762922760,218,0 +170762922808,218,0 +170762922856,218,0 +170762922903,218,0 +170762922951,215,0 +170762922999,215,0 +170762923047,216,0 +170762923095,216,0 +170762923143,216,0 +170762923191,216,0 +170762923239,217,0 +170762923289,217,0 +170762923338,218,0 +170762923386,218,0 +170762923434,219,0 +170762923483,218,0 +170762923531,218,0 +170762923581,219,0 +170762923629,218,0 +170762923678,218,0 +170762923727,217,0 +170762923776,215,0 +170762923824,215,0 +170762923872,215,0 +170762923920,216,0 +170762923968,216,0 +170762924015,216,0 +170762924063,216,0 +170762924111,217,0 +170762924159,217,0 +170762924209,217,0 +170762924256,218,0 +170762924304,218,0 +170762924352,218,0 +170762924402,218,0 +170762924450,218,0 +170762924498,218,0 +170762924546,218,0 +170762924593,215,0 +170762924641,215,0 +170762924689,215,0 +170762924739,216,0 +170762924787,216,0 +170762924834,217,0 +170762924884,217,0 +170762924933,217,0 +170762924981,217,0 +170762925029,218,0 +170762925079,218,0 +170762925128,218,0 +170762925176,218,0 +170762925224,218,0 +170762925274,218,0 +170762925322,218,0 +170762925369,215,0 +170762925419,214,0 +170762925467,215,0 +170762925516,215,0 +170762925564,215,0 +170762925612,215,0 +170762925660,215,0 +170762925708,216,0 +170762925757,216,0 +170762925807,217,0 +170762925855,217,0 +170762925902,217,0 +170762925950,218,0 +170762925998,217,0 +170762926046,218,0 +170762926094,218,0 +170762926143,217,0 +170762926193,214,0 +170762926242,215,0 +170762926290,215,0 +170762926338,215,0 +170762926386,216,0 +170762926434,216,0 +170762926482,217,0 +170762926530,217,0 +170762926578,217,0 +170762926626,217,0 +170762926674,218,0 +170762926722,218,0 +170762926770,217,0 +170762926817,218,0 +170762926867,218,0 +170762926916,218,0 +170762926966,215,0 +170762927015,215,0 +170762927063,216,0 +170762927113,216,0 +170762927162,216,0 +170762927210,216,0 +170762927258,217,0 +170762927306,217,0 +170762927354,217,0 +170762927403,218,0 +170762927452,218,0 +170762927502,218,0 +170762927550,219,0 +170762927598,218,0 +170762927646,218,0 +170762927695,218,0 +170762927743,218,0 +170762927793,215,0 +170762927842,216,0 +170762927891,216,0 +170762927939,216,0 +170762927987,216,0 +170762928035,216,0 +170762928083,217,0 +170762928131,217,0 +170762928181,218,0 +170762928228,217,0 +170762928276,218,0 +170762928324,218,0 +170762928372,218,0 +170762928422,218,0 +170762928469,218,0 +170762928519,217,0 +170762928567,215,0 +170762928615,216,0 +170762928663,216,0 +170762928712,215,0 +170762928760,216,0 +170762928810,217,0 +170762928858,217,0 +170762928906,218,0 +170762928953,218,0 +170762929001,218,0 +170762929049,218,0 +170762929097,218,0 +170762929145,218,0 +170762929193,218,0 +170762929243,218,0 +170762929292,218,0 +170762929340,218,0 +170762929388,216,0 +170762929436,216,0 +170762929484,216,0 +170762929533,217,0 +170762929581,216,0 +170762929629,217,0 +170762929678,217,0 +170762929726,217,0 +170762929774,217,0 +170762929822,218,0 +170762929870,218,0 +170762929918,218,0 +170762929967,218,0 +170762930015,218,0 +170762930063,218,0 +170762930113,218,0 +170762930161,217,0 +170762930209,216,0 +170762930257,217,0 +170762930305,216,0 +170762930353,217,0 +170762930400,217,0 +170762930448,217,0 +170762930496,217,0 +170762930544,218,0 +170762930594,218,0 +170762930643,218,0 +170762930693,218,0 +170762930742,218,0 +170762930792,218,0 +170762930840,218,0 +170762930888,218,0 +170762930936,216,0 +170762930984,216,0 +170762931032,217,0 +170762931080,217,0 +170762931128,217,0 +170762931175,217,0 +170762931225,218,0 +170762931273,218,0 +170762931321,216,0 +170762931370,218,0 +170762931420,218,0 +170762931468,219,0 +170762931517,218,0 +170762931567,218,0 +170762931614,218,0 +170762931662,218,0 +170762931712,218,0 +170762931760,218,0 +170762931808,218,0 +170762931856,218,0 +170762931904,217,0 +170762931953,218,0 +170762932001,217,0 +170762932051,218,0 +170762932099,218,0 +170762932147,218,0 +170762932196,218,0 +170762932244,218,0 +170762932292,218,0 +170762932341,218,0 +170762932391,218,0 +170762932439,218,0 +170762932487,218,0 +170762932535,218,0 +170762932583,216,0 +170762932632,215,0 +170762932680,215,0 +170762932728,216,0 +170762932775,215,0 +170762932823,216,0 +170762932871,216,0 +170762932919,216,0 +170762932967,217,0 +170762933015,217,0 +170762933065,217,0 +170762933114,218,0 +170762933162,218,0 +170762933211,218,0 +170762933259,218,0 +170762933307,218,0 +170762933357,217,0 +170762933405,215,0 +170762933453,215,0 +170762933500,215,0 +170762933548,215,0 +170762933596,216,0 +170762933644,216,0 +170762933694,216,0 +170762933741,217,0 +170762933791,217,0 +170762933839,216,0 +170762933887,217,0 +170762933935,218,0 +170762933983,218,0 +170762934032,217,0 +170762934080,218,0 +170762934128,217,0 +170762934176,217,0 +170762934224,215,0 +170762934272,215,0 +170762934321,215,0 +170762934369,216,0 +170762934417,216,0 +170762934465,216,0 +170762934513,217,0 +170762934563,217,0 +170762934612,217,0 +170762934662,218,0 +170762934710,218,0 +170762934757,218,0 +170762934805,217,0 +170762934853,218,0 +170762934901,218,0 +170762934951,218,0 +170762934999,215,0 +170762935047,215,0 +170762935096,216,0 +170762935144,216,0 +170762935192,217,0 +170762935240,217,0 +170762935288,217,0 +170762935336,218,0 +170762935385,218,0 +170762935433,218,0 +170762935483,219,0 +170762935531,218,0 +170762935579,218,0 +170762935627,218,0 +170762935675,218,0 +170762935724,218,0 +170762935774,218,0 +170762935822,216,0 +170762935871,216,0 +170762935921,216,0 +170762935969,217,0 +170762936016,217,0 +170762936064,218,0 +170762936112,218,0 +170762936162,218,0 +170762936210,218,0 +170762936257,218,0 +170762936305,218,0 +170762936353,218,0 +170762936403,218,0 +170762936451,218,0 +170762936499,218,0 +170762936548,218,0 +170762936598,215,0 +170762936646,215,0 +170762936695,216,0 +170762936745,216,0 +170762936793,216,0 +170762936840,217,0 +170762936888,217,0 +170762936938,215,0 +170762936987,217,0 +170762937035,219,0 +170762937083,218,0 +170762937131,219,0 +170762937180,218,0 +170762937228,218,0 +170762937276,218,0 +170762937324,218,0 +170762937372,218,0 +170762937421,215,0 +170762937471,215,0 +170762937520,215,0 +170762937568,216,0 +170762937616,217,0 +170762937664,217,0 +170762937712,217,0 +170762937760,218,0 +170762937808,218,0 +170762937855,218,0 +170762937903,218,0 +170762937951,218,0 +170762937999,218,0 +170762938049,218,0 +170762938096,218,0 +170762938146,217,0 +170762938194,216,0 +170762938243,215,0 +170762938293,216,0 +170762938341,216,0 +170762938389,216,0 +170762938438,217,0 +170762938488,217,0 +170762938537,218,0 +170762938587,218,0 +170762938636,218,0 +170762938686,218,0 +170762938735,218,0 +170762938783,218,0 +170762938833,218,0 +170762938882,218,0 +170762938932,217,0 +170762938980,217,0 +170762939028,215,0 +170762939076,215,0 +170762939123,216,0 +170762939173,216,0 +170762939221,216,0 +170762939269,217,0 +170762939318,217,0 +170762939366,218,0 +170762939414,218,0 +170762939463,218,0 +170762939511,218,0 +170762939559,218,0 +170762939609,218,0 +170762939657,218,0 +170762939704,218,0 +170762939752,218,0 +170762939800,214,0 +170762939848,215,0 +170762939896,215,0 +170762939944,216,0 +170762939993,216,0 +170762940041,217,0 +170762940089,217,0 +170762940139,217,0 +170762940187,217,0 +170762940236,217,0 +170762940286,218,0 +170762940335,218,0 +170762940383,218,0 +170762940432,218,0 +170762940480,218,0 +170762940528,218,0 +170762940576,217,0 +170762940624,214,0 +170762940672,214,0 +170762940720,215,0 +170762940770,215,0 +170762940819,216,0 +170762940869,215,0 +170762940918,216,0 +170762940966,216,0 +170762941014,217,0 +170762941064,217,0 +170762941112,217,0 +170762941161,218,0 +170762941209,218,0 +170762941259,218,0 +170762941308,218,0 +170762941356,217,0 +170762941406,215,0 +170762941455,215,0 +170762941503,214,0 +170762941553,215,0 +170762941601,216,0 +170762941649,215,0 +170762941698,216,0 +170762941748,216,0 +170762941796,216,0 +170762941843,217,0 +170762941891,218,0 +170762941941,217,0 +170762941989,218,0 +170762942037,218,0 +170762942085,218,0 +170762942133,218,0 +170762942180,217,0 +170762942230,215,0 +170762942279,214,0 +170762942329,215,0 +170762942377,215,0 +170762942425,216,0 +170762942473,216,0 +170762942521,216,0 +170762942569,217,0 +170762942617,217,0 +170762942665,217,0 +170762942714,218,0 +170762942764,218,0 +170762942812,218,0 +170762942861,218,0 +170762942911,218,0 +170762942959,217,0 +170762943006,216,0 +170762943054,216,0 +170762943102,216,0 +170762943152,217,0 +170762943201,216,0 +170762943249,217,0 +170762943297,217,0 +170762943347,217,0 +170762943395,217,0 +170762943442,218,0 +170762943492,218,0 +170762943540,218,0 +170762943588,218,0 +170762943637,218,0 +170762943685,218,0 +170762943735,218,0 +170762943783,217,0 +170762943831,216,0 +170762943879,216,0 +170762943927,217,0 +170762943975,217,0 +170762944024,217,0 +170762944072,217,0 +170762944120,217,0 +170762944168,218,0 +170762944217,218,0 +170762944267,218,0 +170762944315,218,0 +170762944363,219,0 +170762944412,218,0 +170762944460,218,0 +170762944508,218,0 +170762944556,218,0 +170762944604,215,0 +170762944652,215,0 +170762944700,216,0 +170762944748,216,0 +170762944797,216,0 +170762944845,217,0 +170762944893,217,0 +170762944941,217,0 +170762944991,216,0 +170762945040,218,0 +170762945088,217,0 +170762945136,218,0 +170762945184,217,0 +170762945234,218,0 +170762945281,218,0 +170762945329,218,0 +170762945377,217,0 +170762945427,215,0 +170762945475,216,0 +170762945524,216,0 +170762945572,216,0 +170762945620,217,0 +170762945668,217,0 +170762945716,217,0 +170762945764,217,0 +170762945812,217,0 +170762945860,218,0 +170762945908,218,0 +170762945955,219,0 +170762946003,218,0 +170762946051,218,0 +170762946099,218,0 +170762946147,217,0 +170762946195,218,0 +170762946243,216,0 +170762946293,215,0 +170762946341,216,0 +170762946390,216,0 +170762946438,217,0 +170762946486,217,0 +170762946534,217,0 +170762946582,218,0 +170762946631,218,0 +170762946681,218,0 +170762946729,218,0 +170762946778,218,0 +170762946828,218,0 +170762946877,218,0 +170762946925,218,0 +170762946973,217,0 +170762947023,216,0 +170762947071,216,0 +170762947119,217,0 +170762947167,217,0 +170762947216,217,0 +170762947264,217,0 +170762947313,218,0 +170762947363,218,0 +170762947411,218,0 +170762947459,218,0 +170762947507,218,0 +170762947556,218,0 +170762947606,218,0 +170762947654,218,0 +170762947702,217,0 +170762947751,218,0 +170762947801,217,0 +170762947849,217,0 +170762947897,217,0 +170762947945,217,0 +170762947994,217,0 +170762948042,218,0 +170762948091,218,0 +170762948139,218,0 +170762948189,216,0 +170762948237,218,0 +170762948285,219,0 +170762948334,219,0 +170762948384,219,0 +170762948433,218,0 +170762948483,218,0 +170762948531,218,0 +170762948579,218,0 +170762948628,216,0 +170762948676,216,0 +170762948724,217,0 +170762948772,217,0 +170762948819,217,0 +170762948867,218,0 +170762948917,218,0 +170762948966,218,0 +170762949014,218,0 +170762949062,218,0 +170762949110,218,0 +170762949158,218,0 +170762949207,218,0 +170762949255,218,0 +170762949303,218,0 +170762949351,218,0 +170762949400,218,0 +170762949448,214,0 +170762949496,215,0 +170762949544,216,0 +170762949592,216,0 +170762949642,216,0 +170762949690,216,0 +170762949739,217,0 +170762949789,218,0 +170762949838,218,0 +170762949886,218,0 +170762949934,218,0 +170762949983,218,0 +170762950031,218,0 +170762950081,218,0 +170762950129,218,0 +170762950177,218,0 +170762950225,215,0 +170762950274,214,0 +170762950324,215,0 +170762950373,215,0 +170762950423,216,0 +170762950472,216,0 +170762950520,216,0 +170762950568,217,0 +170762950618,217,0 +170762950667,218,0 +170762950717,217,0 +170762950765,218,0 +170762950813,218,0 +170762950862,218,0 +170762950912,218,0 +170762950961,218,0 +170762951009,218,0 +170762951057,214,0 +170762951107,215,0 +170762951155,215,0 +170762951203,215,0 +170762951250,215,0 +170762951298,216,0 +170762951348,216,0 +170762951397,217,0 +170762951445,217,0 +170762951493,218,0 +170762951543,218,0 +170762951591,217,0 +170762951639,218,0 +170762951687,218,0 +170762951736,218,0 +170762951786,218,0 +170762951834,215,0 +170762951883,214,0 +170762951931,214,0 +170762951979,215,0 +170762952027,215,0 +170762952077,215,0 +170762952124,216,0 +170762952172,216,0 +170762952222,216,0 +170762952270,217,0 +170762952318,217,0 +170762952367,217,0 +170762952417,218,0 +170762952465,217,0 +170762952513,218,0 +170762952562,218,0 +170762952610,217,0 +170762952660,214,0 +170762952708,214,0 +170762952756,215,0 +170762952804,215,0 +170762952851,215,0 +170762952899,215,0 +170762952947,215,0 +170762952995,216,0 +170762953043,217,0 +170762953093,217,0 +170762953141,218,0 +170762953189,217,0 +170762953238,218,0 +170762953286,218,0 +170762953334,218,0 +170762953382,218,0 +170762953431,215,0 +170762953479,214,0 +170762953527,214,0 +170762953575,214,0 +170762953623,215,0 +170762953671,214,0 +170762953719,215,0 +170762953768,216,0 +170762953816,216,0 +170762953866,216,0 +170762953915,217,0 +170762953963,217,0 +170762954012,217,0 +170762954060,217,0 +170762954110,217,0 +170762954157,218,0 +170762954207,217,0 +170762954255,214,0 +170762954303,214,0 +170762954352,214,0 +170762954400,214,0 +170762954448,215,0 +170762954496,216,0 +170762954545,215,0 +170762954593,216,0 +170762954641,216,0 +170762954689,217,0 +170762954739,217,0 +170762954787,217,0 +170762954836,218,0 +170762954884,218,0 +170762954932,218,0 +170762954980,218,0 +170762955028,217,0 +170762955076,215,0 +170762955125,216,0 +170762955173,216,0 +170762955221,216,0 +170762955269,216,0 +170762955318,216,0 +170762955368,217,0 +170762955416,217,0 +170762955464,217,0 +170762955512,217,0 +170762955560,218,0 +170762955607,218,0 +170762955655,218,0 +170762955703,218,0 +170762955751,217,0 +170762955799,217,0 +170762955847,216,0 +170762955895,216,0 +170762955942,216,0 +170762955990,216,0 +170762956038,217,0 +170762956086,217,0 +170762956136,217,0 +170762956185,218,0 +170762956235,218,0 +170762956284,218,0 +170762956334,218,0 +170762956382,218,0 +170762956430,218,0 +170762956478,218,0 +170762956526,218,0 +170762956575,218,0 +170762956625,217,0 +170762956673,216,0 +170762956722,216,0 +170762956772,216,0 +170762956821,217,0 +170762956869,217,0 +170762956917,217,0 +170762956966,216,0 +170762957015,217,0 +170762957062,218,0 +170762957110,218,0 +170762957158,218,0 +170762957208,218,0 +170762957255,218,0 +170762957303,218,0 +170762957351,218,0 +170762957401,218,0 +170762957450,214,0 +170762957498,216,0 +170762957547,216,0 +170762957595,216,0 +170762957645,217,0 +170762957692,217,0 +170762957740,218,0 +170762957788,218,0 +170762957836,217,0 +170762957884,219,0 +170762957932,219,0 +170762957980,219,0 +170762958028,218,0 +170762958076,218,0 +170762958124,218,0 +170762958172,217,0 +170762958220,216,0 +170762958267,216,0 +170762958315,216,0 +170762958363,215,0 +170762958411,217,0 +170762958459,217,0 +170762958509,218,0 +170762958556,217,0 +170762958604,218,0 +170762958652,218,0 +170762958702,218,0 +170762958750,219,0 +170762958798,218,0 +170762958846,218,0 +170762958894,218,0 +170762958942,218,0 +170762958990,217,0 +170762959038,216,0 +170762959086,216,0 +170762959135,216,0 +170762959183,216,0 +170762959233,217,0 +170762959282,217,0 +170762959330,218,0 +170762959378,217,0 +170762959426,217,0 +170762959476,218,0 +170762959524,218,0 +170762959571,218,0 +170762959619,218,0 +170762959667,218,0 +170762959715,218,0 +170762959763,217,0 +170762959811,216,0 +170762959859,216,0 +170762959907,216,0 +170762959955,217,0 +170762960003,217,0 +170762960051,217,0 +170762960099,218,0 +170762960147,218,0 +170762960194,219,0 +170762960242,219,0 +170762960290,218,0 +170762960339,218,0 +170762960387,218,0 +170762960435,218,0 +170762960483,218,0 +170762960531,218,0 +170762960579,216,0 +170762960627,216,0 +170762960675,217,0 +170762960723,217,0 +170762960770,217,0 +170762960820,218,0 +170762960868,218,0 +170762960916,218,0 +170762960965,219,0 +170762961015,218,0 +170762961063,219,0 +170762961111,219,0 +170762961159,218,0 +170762961207,219,0 +170762961256,218,0 +170762961304,217,0 +170762961354,216,0 +170762961403,215,0 +170762961453,216,0 +170762961501,216,0 +170762961550,217,0 +170762961600,217,0 +170762961649,217,0 +170762961697,217,0 +170762961745,218,0 +170762961793,218,0 +170762961841,218,0 +170762961889,219,0 +170762961937,218,0 +170762961985,218,0 +170762962033,218,0 +170762962081,218,0 +170762962129,218,0 +170762962177,215,0 +170762962225,215,0 +170762962273,216,0 +170762962321,217,0 +170762962370,217,0 +170762962418,217,0 +170762962468,217,0 +170762962515,218,0 +170762962563,218,0 +170762962611,218,0 +170762962659,218,0 +170762962709,218,0 +170762962757,218,0 +170762962805,218,0 +170762962854,217,0 +170762962902,218,0 +170762962950,215,0 +170762963000,215,0 +170762963049,216,0 +170762963097,216,0 +170762963145,217,0 +170762963193,217,0 +170762963241,218,0 +170762963289,217,0 +170762963338,218,0 +170762963386,218,0 +170762963434,218,0 +170762963482,218,0 +170762963532,218,0 +170762963581,218,0 +170762963629,218,0 +170762963679,218,0 +170762963728,215,0 +170762963776,215,0 +170762963824,215,0 +170762963874,216,0 +170762963923,216,0 +170762963971,216,0 +170762964019,217,0 +170762964069,217,0 +170762964117,217,0 +170762964165,217,0 +170762964213,217,0 +170762964261,219,0 +170762964309,220,0 +170762964358,218,0 +170762964408,218,0 +170762964456,218,0 +170762964503,217,0 +170762964551,214,0 +170762964599,215,0 +170762964649,215,0 +170762964698,216,0 +170762964746,216,0 +170762964794,216,0 +170762964844,217,0 +170762964892,217,0 +170762964940,217,0 +170762964988,218,0 +170762965035,218,0 +170762965085,218,0 +170762965133,218,0 +170762965182,218,0 +170762965230,218,0 +170762965278,218,0 +170762965326,215,0 +170762965374,215,0 +170762965424,215,0 +170762965471,216,0 +170762965521,216,0 +170762965570,216,0 +170762965618,217,0 +170762965666,215,0 +170762965716,217,0 +170762965765,217,0 +170762965815,218,0 +170762965863,217,0 +170762965911,217,0 +170762965959,218,0 +170762966007,218,0 +170762966055,218,0 +170762966102,214,0 +170762966152,215,0 +170762966200,215,0 +170762966248,215,0 +170762966296,215,0 +170762966344,216,0 +170762966392,216,0 +170762966441,216,0 +170762966489,216,0 +170762966537,216,0 +170762966586,217,0 +170762966634,218,0 +170762966682,217,0 +170762966730,218,0 +170762966780,217,0 +170762966827,217,0 +170762966875,216,0 +170762966925,215,0 +170762966973,216,0 +170762967020,216,0 +170762967068,216,0 +170762967116,216,0 +170762967166,217,0 +170762967214,217,0 +170762967261,217,0 +170762967309,218,0 +170762967359,218,0 +170762967407,218,0 +170762967456,218,0 +170762967504,218,0 +170762967554,218,0 +170762967601,217,0 +170762967651,216,0 +170762967699,216,0 +170762967748,216,0 +170762967796,217,0 +170762967846,217,0 +170762967895,217,0 +170762967943,218,0 +170762967993,218,0 +170762968042,218,0 +170762968090,218,0 +170762968138,218,0 +170762968188,218,0 +170762968237,217,0 +170762968285,217,0 +170762968333,218,0 +170762968381,218,0 +170762968430,217,0 +170762968478,217,0 +170762968528,217,0 +170762968576,217,0 +170762968624,218,0 +170762968671,218,0 +170762968719,217,0 +170762968767,218,0 +170762968815,218,0 +170762968863,218,0 +170762968911,218,0 +170762968959,218,0 +170762969006,218,0 +170762969054,218,0 +170762969102,218,0 +170762969150,218,0 +170762969198,218,0 +170762969245,215,0 +170762969293,215,0 +170762969341,215,0 +170762969391,215,0 +170762969439,216,0 +170762969487,216,0 +170762969536,217,0 +170762969584,217,0 +170762969634,218,0 +170762969683,218,0 +170762969733,218,0 +170762969782,218,0 +170762969830,218,0 +170762969878,218,0 +170762969926,218,0 +170762969975,217,0 +170762970025,214,0 +170762970074,215,0 +170762970124,215,0 +170762970172,216,0 +170762970220,216,0 +170762970270,216,0 +170762970318,217,0 +170762970366,216,0 +170762970415,217,0 +170762970463,217,0 +170762970513,217,0 +170762970562,218,0 +170762970610,218,0 +170762970658,218,0 +170762970707,218,0 +170762970755,218,0 +170762970805,216,0 +170762970853,215,0 +170762970901,215,0 +170762970949,216,0 +170762970996,216,0 +170762971044,216,0 +170762971092,216,0 +170762971140,217,0 +170762971190,217,0 +170762971239,217,0 +170762971287,218,0 +170762971335,218,0 +170762971383,219,0 +170762971433,219,0 +170762971480,218,0 +170762971528,218,0 +170762971578,217,0 +170762971627,215,0 +170762971675,216,0 +170762971723,216,0 +170762971771,216,0 +170762971821,217,0 +170762971869,217,0 +170762971917,217,0 +170762971965,217,0 +170762972012,218,0 +170762972060,218,0 +170762972108,218,0 +170762972156,218,0 +170762972206,218,0 +170762972255,218,0 +170762972303,218,0 +170762972352,218,0 +170762972400,216,0 +170762972448,216,0 +170762972496,216,0 +170762972546,217,0 +170762972595,218,0 +170762972643,218,0 +170762972691,217,0 +170762972739,218,0 +170762972787,218,0 +170762972835,218,0 +170762972883,218,0 +170762972933,218,0 +170762972982,218,0 +170762973030,218,0 +170762973080,218,0 +170762973128,218,0 +170762973176,216,0 +170762973225,216,0 +170762973273,217,0 +170762973321,216,0 +170762973369,217,0 +170762973419,217,0 +170762973468,217,0 +170762973516,217,0 +170762973566,216,0 +170762973615,218,0 +170762973665,218,0 +170762973714,218,0 +170762973764,218,0 +170762973813,218,0 +170762973861,218,0 +170762973909,219,0 +170762973957,217,0 +170762974005,215,0 +170762974054,216,0 +170762974104,216,0 +170762974151,216,0 +170762974199,217,0 +170762974247,217,0 +170762974295,217,0 +170762974343,217,0 +170762974391,217,0 +170762974439,218,0 +170762974487,218,0 +170762974534,218,0 +170762974582,218,0 +170762974630,218,0 +170762974678,218,0 +170762974727,218,0 +170762974775,218,0 +170762974825,215,0 +170762974874,216,0 +170762974924,216,0 +170762974972,216,0 +170762975020,216,0 +170762975068,217,0 +170762975116,217,0 +170762975164,217,0 +170762975212,217,0 +170762975260,218,0 +170762975308,218,0 +170762975357,218,0 +170762975405,219,0 +170762975454,219,0 +170762975502,218,0 +170762975550,218,0 +170762975600,218,0 +170762975648,218,0 +170762975697,218,0 +170762975745,216,0 +170762975793,216,0 +170762975841,216,0 +170762975890,216,0 +170762975940,217,0 +170762975989,217,0 +170762976037,217,0 +170762976087,217,0 +170762976135,217,0 +170762976183,218,0 +170762976232,218,0 +170762976280,218,0 +170762976328,218,0 +170762976376,218,0 +170762976426,218,0 +170762976475,219,0 +170762976523,218,0 +170762976571,218,0 +170762976619,217,0 +170762976667,217,0 +170762976715,216,0 +170762976763,217,0 +170762976811,217,0 +170762976859,218,0 +170762976907,217,0 +170762976955,217,0 +170762977004,217,0 +170762977052,218,0 +170762977100,219,0 +170762977148,218,0 +170762977198,218,0 +170762977246,218,0 +170762977294,218,0 +170762977343,218,0 +170762977393,218,0 +170762977441,218,0 +170762977489,218,0 +170762977538,216,0 +170762977588,216,0 +170762977637,217,0 +170762977687,217,0 +170762977735,218,0 +170762977783,217,0 +170762977832,217,0 +170762977880,218,0 +170762977928,218,0 +170762977977,219,0 +170762978025,218,0 +170762978073,218,0 +170762978121,218,0 +170762978171,218,0 +170762978220,218,0 +170762978268,218,0 +170762978316,218,0 +170762978364,218,0 +170762978413,217,0 +170762978461,215,0 +170762978509,215,0 +170762978557,216,0 +170762978605,216,0 +170762978653,216,0 +170762978701,217,0 +170762978749,217,0 +170762978796,217,0 +170762978844,217,0 +170762978892,217,0 +170762978940,218,0 +170762978990,218,0 +170762979038,218,0 +170762979085,218,0 +170762979133,218,0 +170762979181,218,0 +170762979231,218,0 +170762979279,218,0 +170762979327,217,0 +170762979375,215,0 +170762979424,215,0 +170762979472,215,0 +170762979521,215,0 +170762979569,215,0 +170762979617,216,0 +170762979665,216,0 +170762979713,217,0 +170762979761,217,0 +170762979809,217,0 +170762979857,217,0 +170762979907,217,0 +170762979955,218,0 +170762980004,218,0 +170762980052,218,0 +170762980100,218,0 +170762980148,218,0 +170762980196,217,0 +170762980245,215,0 +170762980293,215,0 +170762980341,215,0 +170762980389,215,0 +170762980437,215,0 +170762980485,216,0 +170762980534,216,0 +170762980582,216,0 +170762980632,216,0 +170762980680,217,0 +170762980728,217,0 +170762980775,217,0 +170762980825,218,0 +170762980873,218,0 +170762980922,218,0 +170762980972,218,0 +170762981020,218,0 +170762981068,218,0 +170762981116,217,0 +170762981164,215,0 +170762981213,215,0 +170762981261,215,0 +170762981309,215,0 +170762981357,216,0 +170762981406,216,0 +170762981456,216,0 +170762981504,216,0 +170762981552,217,0 +170762981601,217,0 +170762981651,217,0 +170762981699,218,0 +170762981747,218,0 +170762981796,218,0 +170762981844,218,0 +170762981892,218,0 +170762981940,218,0 +170762981989,218,0 +170762982037,217,0 +170762982087,215,0 +170762982135,215,0 +170762982184,215,0 +170762982232,215,0 +170762982280,216,0 +170762982328,216,0 +170762982376,216,0 +170762982426,217,0 +170762982474,217,0 +170762982523,217,0 +170762982571,218,0 +170762982620,218,0 +170762982668,218,0 +170762982716,218,0 +170762982764,218,0 +170762982812,218,0 +170762982860,218,0 +170762982908,217,0 +170762982955,215,0 +170762983003,214,0 +170762983051,215,0 +170762983099,215,0 +170762983148,215,0 +170762983196,215,0 +170762983244,216,0 +170762983292,216,0 +170762983341,217,0 +170762983389,217,0 +170762983437,217,0 +170762983487,217,0 +170762983535,217,0 +170762983582,218,0 +170762983630,218,0 +170762983678,218,0 +170762983726,218,0 +170762983774,218,0 +170762983822,217,0 +170762983869,214,0 +170762983917,215,0 +170762983965,215,0 +170762984013,215,0 +170762984061,215,0 +170762984109,216,0 +170762984157,216,0 +170762984204,216,0 +170762984252,217,0 +170762984300,216,0 +170762984348,217,0 +170762984396,217,0 +170762984444,217,0 +170762984492,218,0 +170762984539,218,0 +170762984587,218,0 +170762984635,218,0 +170762984683,218,0 +170762984731,218,0 +170762984778,215,0 +170762984826,214,0 +170762984874,215,0 +170762984922,214,0 +170762984970,215,0 +170762985018,215,0 +170762985065,215,0 +170762985113,215,0 +170762985161,216,0 +170762985211,216,0 +170762985259,216,0 +170762985306,217,0 +170762985354,217,0 +170762985402,217,0 +170762985450,218,0 +170762985498,217,0 +170762985546,218,0 +170762985593,218,0 +170762985641,217,0 +170762985689,215,0 +170762985738,214,0 +170762985788,215,0 +170762985836,215,0 +170762985885,215,0 +170762985933,215,0 +170762985981,216,0 +170762986029,216,0 +170762986076,215,0 +170762986124,216,0 +170762986172,217,0 +170762986220,217,0 +170762986268,217,0 +170762986316,218,0 +170762986363,218,0 +170762986411,217,0 +170762986459,218,0 +170762986507,218,0 +170762986555,217,0 +170762986603,214,0 +170762986651,215,0 +170762986700,215,0 +170762986748,214,0 +170762986796,216,0 +170762986843,216,0 +170762986893,216,0 +170762986941,216,0 +170762986988,217,0 +170762987036,217,0 +170762987086,217,0 +170762987134,218,0 +170762987182,218,0 +170762987230,218,0 +170762987279,218,0 +170762987327,217,0 +170762987375,218,0 +170762987423,217,0 +170762987473,215,0 +170762987521,215,0 +170762987570,215,0 +170762987620,215,0 +170762987668,216,0 +170762987716,216,0 +170762987763,216,0 +170762987811,217,0 +170762987859,217,0 +170762987907,217,0 +170762987955,218,0 +170762988005,217,0 +170762988053,218,0 +170762988101,218,0 +170762988149,219,0 +170762988198,218,0 +170762988246,218,0 +170762988294,218,0 +170762988344,218,0 +170762988392,217,0 +170762988441,216,0 +170762988489,216,0 +170762988537,217,0 +170762988586,217,0 +170762988634,217,0 +170762988684,218,0 +170762988733,218,0 +170762988783,218,0 +170762988832,218,0 +170762988880,219,0 +170762988930,219,0 +170762988978,219,0 +170762989026,219,0 +170762989075,218,0 +170762989125,218,0 +170762989173,218,0 +170762989220,218,0 +170762989268,217,0 +170762989316,217,0 +170762989364,218,0 +170762989413,220,0 +170762989461,218,0 +170762989509,218,0 +170762989557,218,0 +170762989605,218,0 +170762989653,219,0 +170762989703,218,0 +170762989750,219,0 +170762989798,219,0 +170762989846,219,0 +170762989896,219,0 +170762989944,218,0 +170762989992,218,0 +170762990040,218,0 +170762990087,218,0 +170762990135,217,0 +170762990183,216,0 +170762990231,215,0 +170762990279,216,0 +170762990327,216,0 +170762990376,216,0 +170762990424,217,0 +170762990472,217,0 +170762990520,217,0 +170762990570,217,0 +170762990618,217,0 +170762990666,218,0 +170762990714,218,0 +170762990763,218,0 +170762990811,219,0 +170762990859,218,0 +170762990907,218,0 +170762990955,217,0 +170762991005,217,0 +170762991054,217,0 +170762991103,215,0 +170762991151,216,0 +170762991199,216,0 +170762991247,216,0 +170762991295,216,0 +170762991344,216,0 +170762991394,216,0 +170762991443,217,0 +170762991493,217,0 +170762991541,217,0 +170762991589,217,0 +170762991638,218,0 +170762991686,218,0 +170762991734,218,0 +170762991784,218,0 +170762991831,219,0 +170762991881,218,0 +170762991929,218,0 +170762991977,217,0 +170762992025,214,0 +170762992074,215,0 +170762992122,215,0 +170762992172,216,0 +170762992219,216,0 +170762992269,216,0 +170762992317,216,0 +170762992365,217,0 +170762992413,217,0 +170762992462,217,0 +170762992510,218,0 +170762992558,218,0 +170762992606,218,0 +170762992654,218,0 +170762992701,218,0 +170762992749,218,0 +170762992797,218,0 +170762992845,217,0 +170762992893,215,0 +170762992941,214,0 +170762992989,215,0 +170762993037,215,0 +170762993086,215,0 +170762993134,216,0 +170762993182,216,0 +170762993230,215,0 +170762993279,216,0 +170762993327,217,0 +170762993377,218,0 +170762993425,217,0 +170762993474,218,0 +170762993522,218,0 +170762993570,218,0 +170762993618,218,0 +170762993665,218,0 +170762993713,218,0 +170762993761,217,0 +170762993809,214,0 +170762993857,214,0 +170762993905,215,0 +170762993953,215,0 +170762994002,215,0 +170762994050,215,0 +170762994098,216,0 +170762994147,216,0 +170762994195,216,0 +170762994243,216,0 +170762994292,217,0 +170762994342,217,0 +170762994391,218,0 +170762994439,218,0 +170762994487,218,0 +170762994535,217,0 +170762994583,218,0 +170762994631,218,0 +170762994678,217,0 +170762994726,214,0 +170762994776,214,0 +170762994824,215,0 +170762994872,215,0 +170762994920,215,0 +170762994968,215,0 +170762995015,216,0 +170762995063,216,0 +170762995113,216,0 +170762995161,217,0 +170762995209,217,0 +170762995257,217,0 +170762995305,218,0 +170762995353,218,0 +170762995401,218,0 +170762995448,218,0 +170762995496,218,0 +170762995544,217,0 +170762995592,215,0 +170762995640,214,0 +170762995688,214,0 +170762995736,215,0 +170762995784,215,0 +170762995833,215,0 +170762995883,215,0 +170762995931,216,0 +170762995980,216,0 +170762996028,216,0 +170762996078,217,0 +170762996126,217,0 +170762996174,218,0 +170762996222,217,0 +170762996271,217,0 +170762996319,218,0 +170762996369,218,0 +170762996418,218,0 +170762996466,218,0 +170762996514,214,0 +170762996562,214,0 +170762996610,214,0 +170762996658,214,0 +170762996706,215,0 +170762996754,215,0 +170762996802,215,0 +170762996851,216,0 +170762996899,216,0 +170762996947,217,0 +170762996997,217,0 +170762997044,217,0 +170762997092,217,0 +170762997140,218,0 +170762997188,218,0 +170762997236,217,0 +170762997284,218,0 +170762997332,218,0 +170762997381,217,0 +170762997429,215,0 +170762997477,215,0 +170762997525,215,0 +170762997573,215,0 +170762997623,215,0 +170762997671,215,0 +170762997720,216,0 +170762997768,216,0 +170762997816,216,0 +170762997864,217,0 +170762997912,217,0 +170762997961,217,0 +170762998009,218,0 +170762998057,218,0 +170762998105,218,0 +170762998153,218,0 +170762998202,218,0 +170762998250,218,0 +170762998298,215,0 +170762998346,214,0 +170762998395,215,0 +170762998443,215,0 +170762998491,215,0 +170762998539,215,0 +170762998586,215,0 +170762998634,216,0 +170762998682,216,0 +170762998730,217,0 +170762998778,217,0 +170762998826,217,0 +170762998874,217,0 +170762998922,218,0 +170762998969,218,0 +170762999017,218,0 +170762999067,218,0 +170762999116,218,0 +170762999164,218,0 +170762999212,215,0 +170762999260,215,0 +170762999308,215,0 +170762999356,216,0 +170762999405,216,0 +170762999453,216,0 +170762999503,216,0 +170762999551,216,0 +170762999600,217,0 +170762999648,217,0 +170762999696,217,0 +170762999744,218,0 +170762999791,218,0 +170762999841,218,0 +170762999890,218,0 +170762999938,218,0 +170762999986,219,0 +170763000034,217,0 +170763000082,217,0 +170763000130,215,0 +170763000177,215,0 +170763000225,215,0 +170763000273,215,0 +170763000323,216,0 +170763000372,216,0 +170763000422,216,0 +170763000470,217,0 +170763000518,216,0 +170763000565,217,0 +170763000615,217,0 +170763000663,218,0 +170763000712,218,0 +170763000760,218,0 +170763000810,218,0 +170763000858,218,0 +170763000907,219,0 +170763000955,218,0 +170763001004,217,0 +170763001052,214,0 +170763001100,215,0 +170763001148,215,0 +170763001196,215,0 +170763001246,216,0 +170763001294,216,0 +170763001342,217,0 +170763001390,217,0 +170763001437,217,0 +170763001485,217,0 +170763001535,218,0 +170763001584,218,0 +170763001632,218,0 +170763001680,218,0 +170763001728,218,0 +170763001775,218,0 +170763001823,218,0 +170763001871,217,0 +170763001919,215,0 +170763001967,214,0 +170763002015,215,0 +170763002063,215,0 +170763002111,215,0 +170763002160,216,0 +170763002208,216,0 +170763002256,216,0 +170763002304,216,0 +170763002352,216,0 +170763002400,217,0 +170763002448,217,0 +170763002496,217,0 +170763002544,218,0 +170763002593,218,0 +170763002643,217,0 +170763002691,218,0 +170763002739,218,0 +170763002787,217,0 +170763002835,214,0 +170763002882,214,0 +170763002932,214,0 +170763002980,215,0 +170763003028,216,0 +170763003076,215,0 +170763003125,216,0 +170763003173,216,0 +170763003221,217,0 +170763003269,216,0 +170763003319,217,0 +170763003366,218,0 +170763003414,218,0 +170763003462,217,0 +170763003510,217,0 +170763003558,218,0 +170763003606,217,0 +170763003656,217,0 +170763003704,215,0 +170763003753,214,0 +170763003801,214,0 +170763003849,215,0 +170763003897,215,0 +170763003945,215,0 +170763003993,215,0 +170763004041,216,0 +170763004089,216,0 +170763004138,216,0 +170763004186,217,0 +170763004234,217,0 +170763004282,217,0 +170763004330,217,0 +170763004379,218,0 +170763004427,218,0 +170763004475,218,0 +170763004523,217,0 +170763004573,217,0 +170763004622,215,0 +170763004672,214,0 +170763004720,214,0 +170763004769,214,0 +170763004817,215,0 +170763004866,215,0 +170763004914,215,0 +170763004964,216,0 +170763005012,216,0 +170763005061,216,0 +170763005111,217,0 +170763005160,217,0 +170763005208,217,0 +170763005256,217,0 +170763005304,218,0 +170763005354,218,0 +170763005403,218,0 +170763005452,218,0 +170763005500,217,0 +170763005550,214,0 +170763005598,214,0 +170763005647,215,0 +170763005697,215,0 +170763005746,216,0 +170763005794,215,0 +170763005842,216,0 +170763005890,216,0 +170763005940,216,0 +170763005988,216,0 +170763006037,217,0 +170763006086,217,0 +170763006134,217,0 +170763006182,218,0 +170763006232,218,0 +170763006280,218,0 +170763006329,218,0 +170763006377,217,0 +170763006425,215,0 +170763006473,214,0 +170763006523,214,0 +170763006571,215,0 +170763006620,215,0 +170763006668,215,0 +170763006718,215,0 +170763006767,216,0 +170763006815,216,0 +170763006863,216,0 +170763006911,217,0 +170763006959,217,0 +170763007008,217,0 +170763007058,217,0 +170763007106,218,0 +170763007154,218,0 +170763007202,218,0 +170763007251,218,0 +170763007299,217,0 +170763007347,214,0 +170763007395,214,0 +170763007443,214,0 +170763007491,214,0 +170763007540,215,0 +170763007588,215,0 +170763007636,215,0 +170763007684,216,0 +170763007732,216,0 +170763007780,216,0 +170763007828,217,0 +170763007876,216,0 +170763007926,217,0 +170763007975,217,0 +170763008023,217,0 +170763008073,217,0 +170763008120,217,0 +170763008168,217,0 +170763008216,217,0 +170763008264,214,0 +170763008314,214,0 +170763008362,214,0 +170763008410,214,0 +170763008458,214,0 +170763008507,214,0 +170763008557,215,0 +170763008605,215,0 +170763008653,215,0 +170763008701,215,0 +170763008749,216,0 +170763008796,216,0 +170763008844,216,0 +170763008892,216,0 +170763008940,216,0 +170763008990,216,0 +170763009039,217,0 +170763009089,217,0 +170763009137,217,0 +170763009185,218,0 +170763009234,218,0 +170763009282,218,0 +170763009330,218,0 +170763009378,218,0 +170763009426,218,0 +170763009473,218,0 +170763009521,218,0 +170763009569,215,0 +170763009617,214,0 +170763009667,214,0 +170763009715,215,0 +170763009764,215,0 +170763009812,215,0 +170763009860,216,0 +170763009909,216,0 +170763009957,216,0 +170763010005,216,0 +170763010055,216,0 +170763010103,217,0 +170763010152,217,0 +170763010200,218,0 +170763010250,217,0 +170763010299,217,0 +170763010347,218,0 +170763010397,218,0 +170763010444,216,0 +170763010492,215,0 +170763010540,215,0 +170763010588,215,0 +170763010638,216,0 +170763010686,216,0 +170763010733,216,0 +170763010783,216,0 +170763010831,215,0 +170763010880,217,0 +170763010928,218,0 +170763010976,218,0 +170763011026,218,0 +170763011075,218,0 +170763011123,218,0 +170763011171,218,0 +170763011221,219,0 +170763011270,218,0 +170763011318,218,0 +170763011366,218,0 +170763011416,216,0 +170763011465,216,0 +170763011513,216,0 +170763011563,216,0 +170763011612,216,0 +170763011660,217,0 +170763011708,217,0 +170763011756,218,0 +170763011804,218,0 +170763011852,218,0 +170763011901,218,0 +170763011949,218,0 +170763011999,218,0 +170763012047,218,0 +170763012095,218,0 +170763012143,217,0 +170763012192,217,0 +170763012242,217,0 +170763012290,216,0 +170763012338,215,0 +170763012386,216,0 +170763012434,216,0 +170763012483,216,0 +170763012531,216,0 +170763012579,217,0 +170763012627,217,0 +170763012676,218,0 +170763012724,217,0 +170763012772,217,0 +170763012820,218,0 +170763012869,218,0 +170763012917,218,0 +170763012965,218,0 +170763013013,218,0 +170763013061,218,0 +170763013111,218,0 +170763013160,217,0 +170763013208,214,0 +170763013256,215,0 +170763013304,215,0 +170763013352,215,0 +170763013400,215,0 +170763013450,216,0 +170763013498,216,0 +170763013546,216,0 +170763013594,216,0 +170763013643,217,0 +170763013693,218,0 +170763013742,218,0 +170763013790,217,0 +170763013838,218,0 +170763013886,218,0 +170763013934,217,0 +170763013982,218,0 +170763014030,218,0 +170763014079,217,0 +170763014129,214,0 +170763014177,215,0 +170763014225,215,0 +170763014272,215,0 +170763014320,215,0 +170763014368,216,0 +170763014416,215,0 +170763014464,216,0 +170763014512,217,0 +170763014560,217,0 +170763014609,217,0 +170763014657,217,0 +170763014705,217,0 +170763014753,218,0 +170763014803,218,0 +170763014852,218,0 +170763014900,218,0 +170763014948,218,0 +170763014997,215,0 +170763015047,214,0 +170763015096,215,0 +170763015144,215,0 +170763015192,215,0 +170763015240,215,0 +170763015288,216,0 +170763015336,216,0 +170763015384,216,0 +170763015432,217,0 +170763015480,217,0 +170763015528,217,0 +170763015576,217,0 +170763015624,218,0 +170763015672,218,0 +170763015720,218,0 +170763015768,218,0 +170763015817,218,0 +170763015865,217,0 +170763015914,215,0 +170763015964,214,0 +170763016012,215,0 +170763016060,215,0 +170763016107,215,0 +170763016155,215,0 +170763016203,216,0 +170763016251,216,0 +170763016299,216,0 +170763016347,217,0 +170763016397,217,0 +170763016445,217,0 +170763016494,218,0 +170763016544,218,0 +170763016592,218,0 +170763016640,218,0 +170763016688,218,0 +170763016735,217,0 +170763016785,217,0 +170763016835,214,0 +170763016883,215,0 +170763016931,215,0 +170763016978,215,0 +170763017026,215,0 +170763017074,216,0 +170763017124,216,0 +170763017171,216,0 +170763017219,216,0 +170763017267,217,0 +170763017315,217,0 +170763017363,217,0 +170763017411,218,0 +170763017458,217,0 +170763017506,217,0 +170763017556,218,0 +170763017605,218,0 +170763017653,218,0 +170763017701,215,0 +170763017751,214,0 +170763017799,215,0 +170763017848,215,0 +170763017896,215,0 +170763017944,215,0 +170763017992,216,0 +170763018040,216,0 +170763018087,216,0 +170763018135,216,0 +170763018183,217,0 +170763018231,217,0 +170763018279,218,0 +170763018327,218,0 +170763018375,218,0 +170763018423,219,0 +170763018472,218,0 +170763018520,218,0 +170763018568,218,0 +170763018616,215,0 +170763018665,215,0 +170763018713,215,0 +170763018761,215,0 +170763018809,215,0 +170763018859,216,0 +170763018906,216,0 +170763018956,216,0 +170763019004,217,0 +170763019052,217,0 +170763019100,217,0 +170763019148,217,0 +170763019196,218,0 +170763019244,218,0 +170763019292,218,0 +170763019339,218,0 +170763019387,218,0 +170763019437,218,0 +170763019485,217,0 +170763019532,215,0 +170763019580,215,0 +170763019630,215,0 +170763019678,216,0 +170763019726,216,0 +170763019773,216,0 +170763019821,216,0 +170763019871,216,0 +170763019919,217,0 +170763019967,217,0 +170763020016,217,0 +170763020066,218,0 +170763020113,218,0 +170763020161,218,0 +170763020209,220,0 +170763020257,219,0 +170763020306,218,0 +170763020354,217,0 +170763020402,215,0 +170763020452,214,0 +170763020500,215,0 +170763020548,215,0 +170763020595,215,0 +170763020643,215,0 +170763020691,216,0 +170763020741,216,0 +170763020790,217,0 +170763020838,216,0 +170763020886,217,0 +170763020934,217,0 +170763020982,217,0 +170763021030,218,0 +170763021078,218,0 +170763021127,218,0 +170763021177,218,0 +170763021225,218,0 +170763021273,217,0 +170763021322,215,0 +170763021372,215,0 +170763021421,215,0 +170763021471,215,0 +170763021519,215,0 +170763021566,216,0 +170763021614,216,0 +170763021662,216,0 +170763021710,217,0 +170763021758,217,0 +170763021806,217,0 +170763021855,218,0 +170763021903,218,0 +170763021951,218,0 +170763021999,218,0 +170763022047,218,0 +170763022094,218,0 +170763022142,217,0 +170763022190,217,0 +170763022238,215,0 +170763022286,215,0 +170763022335,215,0 +170763022385,216,0 +170763022434,216,0 +170763022482,216,0 +170763022530,216,0 +170763022578,217,0 +170763022628,217,0 +170763022676,217,0 +170763022724,217,0 +170763022772,218,0 +170763022820,218,0 +170763022869,218,0 +170763022917,218,0 +170763022966,218,0 +170763023016,218,0 +170763023064,217,0 +170763023113,215,0 +170763023163,215,0 +170763023211,215,0 +170763023259,215,0 +170763023308,215,0 +170763023358,216,0 +170763023408,216,0 +170763023455,217,0 +170763023503,217,0 +170763023551,217,0 +170763023599,217,0 +170763023647,218,0 +170763023695,218,0 +170763023743,218,0 +170763023791,218,0 +170763023839,218,0 +170763023889,218,0 +170763023938,218,0 +170763023986,217,0 +170763024034,214,0 +170763024082,214,0 +170763024130,214,0 +170763024180,215,0 +170763024229,214,0 +170763024277,215,0 +170763024325,215,0 +170763024373,216,0 +170763024421,216,0 +170763024469,217,0 +170763024517,217,0 +170763024565,217,0 +170763024614,218,0 +170763024664,217,0 +170763024712,218,0 +170763024760,217,0 +170763024808,217,0 +170763024857,218,0 +170763024905,217,0 +170763024953,214,0 +170763025001,214,0 +170763025051,214,0 +170763025099,215,0 +170763025148,215,0 +170763025196,215,0 +170763025245,215,0 +170763025293,216,0 +170763025341,216,0 +170763025391,216,0 +170763025439,217,0 +170763025488,217,0 +170763025538,218,0 +170763025586,217,0 +170763025634,217,0 +170763025682,218,0 +170763025731,217,0 +170763025779,217,0 +170763025827,215,0 +170763025875,214,0 +170763025923,214,0 +170763025973,214,0 +170763026020,215,0 +170763026070,215,0 +170763026118,215,0 +170763026167,215,0 +170763026215,215,0 +170763026265,216,0 +170763026315,216,0 +170763026363,216,0 +170763026412,217,0 +170763026460,217,0 +170763026510,217,0 +170763026559,218,0 +170763026609,218,0 +170763026656,217,0 +170763026704,216,0 +170763026752,214,0 +170763026802,214,0 +170763026849,214,0 +170763026897,213,0 +170763026947,214,0 +170763026994,214,0 +170763027042,215,0 +170763027090,215,0 +170763027138,215,0 +170763027186,216,0 +170763027234,216,0 +170763027281,217,0 +170763027329,217,0 +170763027379,217,0 +170763027427,217,0 +170763027476,217,0 +170763027524,217,0 +170763027572,217,0 +170763027620,217,0 +170763027669,214,0 +170763027717,214,0 +170763027765,214,0 +170763027813,214,0 +170763027861,214,0 +170763027909,215,0 +170763027957,215,0 +170763028005,215,0 +170763028053,216,0 +170763028101,216,0 +170763028149,216,0 +170763028197,217,0 +170763028245,217,0 +170763028293,217,0 +170763028342,216,0 +170763028392,217,0 +170763028440,217,0 +170763028488,217,0 +170763028537,215,0 +170763028587,214,0 +170763028635,214,0 +170763028684,215,0 +170763028732,215,0 +170763028780,215,0 +170763028830,216,0 +170763028879,216,0 +170763028927,216,0 +170763028977,217,0 +170763029026,217,0 +170763029074,217,0 +170763029122,217,0 +170763029170,217,0 +170763029219,217,0 +170763029267,217,0 +170763029315,217,0 +170763029363,217,0 +170763029411,217,0 +170763029459,214,0 +170763029507,214,0 +170763029555,215,0 +170763029604,215,0 +170763029652,215,0 +170763029701,216,0 +170763029749,216,0 +170763029797,216,0 +170763029847,216,0 +170763029897,216,0 +170763029946,216,0 +170763029996,217,0 +170763030045,217,0 +170763030093,217,0 +170763030141,217,0 +170763030191,217,0 +170763030240,216,0 +170763030288,217,0 +170763030338,215,0 +170763030386,214,0 +170763030435,215,0 +170763030485,215,0 +170763030533,215,0 +170763030581,215,0 +170763030630,215,0 +170763030680,216,0 +170763030729,215,0 +170763030779,216,0 +170763030828,216,0 +170763030876,217,0 +170763030924,217,0 +170763030972,217,0 +170763031020,217,0 +170763031070,217,0 +170763031117,218,0 +170763031165,218,0 +170763031213,217,0 +170763031261,214,0 +170763031311,214,0 +170763031359,214,0 +170763031407,215,0 +170763031456,215,0 +170763031506,215,0 +170763031554,215,0 +170763031602,216,0 +170763031649,216,0 +170763031699,216,0 +170763031747,217,0 +170763031796,218,0 +170763031844,217,0 +170763031892,218,0 +170763031940,217,0 +170763031990,218,0 +170763032039,217,0 +170763032089,217,0 +170763032137,217,0 +170763032186,214,0 +170763032236,214,0 +170763032285,214,0 +170763032335,215,0 +170763032383,215,0 +170763032431,215,0 +170763032480,215,0 +170763032529,215,0 +170763032579,215,0 +170763032627,215,0 +170763032675,216,0 +170763032723,216,0 +170763032771,217,0 +170763032820,216,0 +170763032869,217,0 +170763032916,218,0 +170763032966,217,0 +170763033014,218,0 +170763033062,215,0 +170763033110,214,0 +170763033159,215,0 +170763033209,215,0 +170763033256,215,0 +170763033306,215,0 +170763033356,215,0 +170763033405,216,0 +170763033453,216,0 +170763033501,216,0 +170763033550,217,0 +170763033600,217,0 +170763033649,217,0 +170763033699,218,0 +170763033747,217,0 +170763033795,217,0 +170763033843,218,0 +170763033892,217,0 +170763033940,215,0 +170763033988,215,0 +170763034036,216,0 +170763034084,215,0 +170763034134,216,0 +170763034183,216,0 +170763034231,217,0 +170763034280,217,0 +170763034328,217,0 +170763034376,217,0 +170763034424,218,0 +170763034472,218,0 +170763034520,218,0 +170763034568,218,0 +170763034616,218,0 +170763034664,218,0 +170763034714,218,0 +170763034763,218,0 +170763034811,217,0 +170763034859,216,0 +170763034907,216,0 +170763034955,216,0 +170763035005,216,0 +170763035052,217,0 +170763035102,216,0 +170763035152,217,0 +170763035199,218,0 +170763035247,217,0 +170763035295,218,0 +170763035345,218,0 +170763035393,219,0 +170763035442,218,0 +170763035492,219,0 +170763035540,218,0 +170763035590,218,0 +170763035637,218,0 +170763035685,218,0 +170763035733,217,0 +170763035781,216,0 +170763035831,216,0 +170763035879,216,0 +170763035926,217,0 +170763035974,217,0 +170763036024,217,0 +170763036072,217,0 +170763036119,217,0 +170763036167,218,0 +170763036215,218,0 +170763036265,218,0 +170763036312,218,0 +170763036360,218,0 +170763036408,218,0 +170763036456,218,0 +170763036504,218,0 +170763036553,218,0 +170763036603,217,0 +170763036653,216,0 +170763036701,215,0 +170763036749,215,0 +170763036797,215,0 +170763036846,215,0 +170763036894,216,0 +170763036942,216,0 +170763036992,217,0 +170763037039,216,0 +170763037087,216,0 +170763037135,217,0 +170763037183,217,0 +170763037231,218,0 +170763037279,218,0 +170763037327,218,0 +170763037374,218,0 +170763037422,218,0 +170763037470,218,0 +170763037520,217,0 +170763037569,214,0 +170763037619,214,0 +170763037668,214,0 +170763037716,215,0 +170763037766,215,0 +170763037814,215,0 +170763037863,215,0 +170763037911,216,0 +170763037959,217,0 +170763038007,217,0 +170763038057,217,0 +170763038106,217,0 +170763038156,218,0 +170763038204,217,0 +170763038252,218,0 +170763038301,218,0 +170763038351,218,0 +170763038399,217,0 +170763038446,216,0 +170763038494,214,0 +170763038542,214,0 +170763038590,215,0 +170763038638,215,0 +170763038688,215,0 +170763038736,215,0 +170763038784,215,0 +170763038833,216,0 +170763038881,216,0 +170763038931,217,0 +170763038978,217,0 +170763039026,217,0 +170763039076,217,0 +170763039125,218,0 +170763039173,218,0 +170763039221,218,0 +170763039269,218,0 +170763039317,218,0 +170763039367,214,0 +170763039415,214,0 +170763039463,214,0 +170763039512,214,0 +170763039562,214,0 +170763039610,215,0 +170763039658,216,0 +170763039707,215,0 +170763039757,216,0 +170763039805,216,0 +170763039854,217,0 +170763039904,217,0 +170763039952,217,0 +170763040002,218,0 +170763040049,218,0 +170763040099,217,0 +170763040147,217,0 +170763040195,218,0 +170763040243,217,0 +170763040292,214,0 +170763040342,214,0 +170763040391,214,0 +170763040439,214,0 +170763040489,215,0 +170763040539,215,0 +170763040588,215,0 +170763040636,215,0 +170763040684,216,0 +170763040733,216,0 +170763040781,216,0 +170763040831,217,0 +170763040880,218,0 +170763040930,217,0 +170763040979,218,0 +170763041029,218,0 +170763041077,218,0 +170763041126,217,0 +170763041174,214,0 +170763041224,214,0 +170763041272,214,0 +170763041320,214,0 +170763041369,214,0 +170763041419,215,0 +170763041467,215,0 +170763041516,215,0 +170763041566,215,0 +170763041614,216,0 +170763041662,216,0 +170763041710,216,0 +170763041758,217,0 +170763041807,217,0 +170763041855,217,0 +170763041903,217,0 +170763041951,218,0 +170763041999,217,0 +170763042047,214,0 +170763042095,214,0 +170763042143,214,0 +170763042191,214,0 +170763042239,215,0 +170763042287,215,0 +170763042336,215,0 +170763042384,215,0 +170763042434,216,0 +170763042482,216,0 +170763042531,217,0 +170763042581,216,0 +170763042631,216,0 +170763042680,217,0 +170763042728,217,0 +170763042776,218,0 +170763042824,218,0 +170763042873,218,0 +170763042923,217,0 +170763042971,215,0 +170763043020,215,0 +170763043068,215,0 +170763043118,215,0 +170763043167,216,0 +170763043215,216,0 +170763043263,216,0 +170763043311,217,0 +170763043359,217,0 +170763043407,217,0 +170763043455,217,0 +170763043503,217,0 +170763043551,218,0 +170763043599,218,0 +170763043646,218,0 +170763043694,218,0 +170763043742,218,0 +170763043790,218,0 +170763043838,217,0 +170763043887,215,0 +170763043935,215,0 +170763043983,215,0 +170763044031,216,0 +170763044079,216,0 +170763044127,216,0 +170763044175,217,0 +170763044223,217,0 +170763044270,217,0 +170763044318,218,0 +170763044366,218,0 +170763044414,218,0 +170763044464,218,0 +170763044512,218,0 +170763044559,218,0 +170763044607,218,0 +170763044655,218,0 +170763044705,218,0 +170763044753,215,0 +170763044800,215,0 +170763044848,215,0 +170763044896,215,0 +170763044944,216,0 +170763044992,216,0 +170763045041,217,0 +170763045089,217,0 +170763045139,217,0 +170763045188,217,0 +170763045236,218,0 +170763045284,217,0 +170763045332,218,0 +170763045380,218,0 +170763045428,218,0 +170763045476,218,0 +170763045525,218,0 +170763045573,218,0 +170763045621,217,0 +170763045669,215,0 +170763045717,215,0 +170763045764,216,0 +170763045812,216,0 +170763045860,216,0 +170763045908,216,0 +170763045956,216,0 +170763046004,217,0 +170763046052,217,0 +170763046100,218,0 +170763046148,218,0 +170763046195,218,0 +170763046245,218,0 +170763046293,218,0 +170763046342,218,0 +170763046392,218,0 +170763046440,218,0 +170763046488,217,0 +170763046537,215,0 +170763046585,214,0 +170763046635,214,0 +170763046683,215,0 +170763046731,215,0 +170763046779,215,0 +170763046828,216,0 +170763046876,216,0 +170763046924,216,0 +170763046972,217,0 +170763047020,217,0 +170763047069,218,0 +170763047118,217,0 +170763047167,218,0 +170763047215,217,0 +170763047264,218,0 +170763047314,218,0 +170763047363,217,0 +170763047411,217,0 +170763047459,214,0 +170763047507,214,0 +170763047555,214,0 +170763047605,214,0 +170763047654,214,0 +170763047702,215,0 +170763047750,215,0 +170763047800,215,0 +170763047849,215,0 +170763047897,216,0 +170763047945,216,0 +170763047995,216,0 +170763048043,217,0 +170763048091,217,0 +170763048139,217,0 +170763048187,217,0 +170763048234,217,0 +170763048282,217,0 +170763048332,217,0 +170763048380,214,0 +170763048428,214,0 +170763048476,214,0 +170763048524,214,0 +170763048573,214,0 +170763048621,214,0 +170763048671,215,0 +170763048718,215,0 +170763048766,215,0 +170763048816,216,0 +170763048866,216,0 +170763048915,217,0 +170763048963,217,0 +170763049011,217,0 +170763049060,217,0 +170763049108,218,0 +170763049156,217,0 +170763049206,217,0 +170763049255,215,0 +170763049303,214,0 +170763049351,214,0 +170763049399,214,0 +170763049447,215,0 +170763049496,215,0 +170763049546,215,0 +170763049594,215,0 +170763049644,216,0 +170763049692,216,0 +170763049741,216,0 +170763049790,216,0 +170763049840,217,0 +170763049890,217,0 +170763049938,217,0 +170763049986,217,0 +170763050035,217,0 +170763050083,217,0 +170763050131,217,0 +170763050179,214,0 +170763050227,214,0 +170763050276,215,0 +170763050324,215,0 +170763050372,215,0 +170763050422,215,0 +170763050471,216,0 +170763050521,216,0 +170763050570,216,0 +170763050620,217,0 +170763050668,217,0 +170763050716,217,0 +170763050764,217,0 +170763050812,217,0 +170763050860,218,0 +170763050908,217,0 +170763050956,217,0 +170763051003,217,0 +170763051051,215,0 +170763051099,214,0 +170763051149,215,0 +170763051197,215,0 +170763051245,215,0 +170763051293,215,0 +170763051342,216,0 +170763051392,216,0 +170763051440,216,0 +170763051488,217,0 +170763051536,217,0 +170763051585,217,0 +170763051633,217,0 +170763051681,217,0 +170763051731,218,0 +170763051780,218,0 +170763051828,218,0 +170763051877,217,0 +170763051925,217,0 +170763051974,215,0 +170763052023,215,0 +170763052072,215,0 +170763052120,215,0 +170763052170,216,0 +170763052218,216,0 +170763052267,216,0 +170763052315,217,0 +170763052363,217,0 +170763052413,217,0 +170763052463,217,0 +170763052512,217,0 +170763052560,217,0 +170763052608,218,0 +170763052656,218,0 +170763052705,218,0 +170763052755,218,0 +170763052804,217,0 +170763052852,215,0 +170763052900,215,0 +170763052950,215,0 +170763052998,215,0 +170763053047,216,0 +170763053097,216,0 +170763053146,216,0 +170763053196,216,0 +170763053245,216,0 +170763053295,217,0 +170763053343,217,0 +170763053391,217,0 +170763053439,217,0 +170763053487,217,0 +170763053535,217,0 +170763053583,217,0 +170763053632,217,0 +170763053680,218,0 +170763053730,217,0 +170763053778,215,0 +170763053827,215,0 +170763053875,215,0 +170763053925,215,0 +170763053974,216,0 +170763054022,216,0 +170763054072,216,0 +170763054120,216,0 +170763054168,217,0 +170763054216,217,0 +170763054265,217,0 +170763054313,217,0 +170763054363,217,0 +170763054411,218,0 +170763054459,218,0 +170763054508,215,0 +170763054556,217,0 +170763054606,217,0 +170763054654,215,0 +170763054703,214,0 +170763054751,214,0 +170763054799,215,0 +170763054848,215,0 +170763054896,215,0 +170763054946,215,0 +170763054994,216,0 +170763055042,216,0 +170763055090,217,0 +170763055139,217,0 +170763055189,217,0 +170763055237,217,0 +170763055285,217,0 +170763055332,217,0 +170763055380,218,0 +170763055428,218,0 +170763055476,217,0 +170763055524,217,0 +170763055572,214,0 +170763055620,215,0 +170763055668,214,0 +170763055716,215,0 +170763055764,215,0 +170763055812,215,0 +170763055860,216,0 +170763055909,216,0 +170763055959,217,0 +170763056006,217,0 +170763056054,218,0 +170763056104,218,0 +170763056152,217,0 +170763056202,218,0 +170763056251,218,0 +170763056301,217,0 +170763056350,218,0 +170763056400,217,0 +170763056448,215,0 +170763056496,215,0 +170763056544,216,0 +170763056592,216,0 +170763056640,216,0 +170763056689,216,0 +170763056739,217,0 +170763056788,217,0 +170763056838,217,0 +170763056885,218,0 +170763056935,217,0 +170763056983,218,0 +170763057031,218,0 +170763057080,218,0 +170763057128,218,0 +170763057176,218,0 +170763057226,217,0 +170763057274,217,0 +170763057321,217,0 +170763057369,216,0 +170763057417,215,0 +170763057465,216,0 +170763057513,216,0 +170763057561,216,0 +170763057610,216,0 +170763057659,216,0 +170763057707,217,0 +170763057755,217,0 +170763057803,218,0 +170763057851,217,0 +170763057899,218,0 +170763057947,218,0 +170763057995,218,0 +170763058042,218,0 +170763058090,218,0 +170763058138,218,0 +170763058188,217,0 +170763058235,217,0 +170763058285,215,0 +170763058333,215,0 +170763058381,215,0 +170763058429,215,0 +170763058477,216,0 +170763058526,216,0 +170763058574,216,0 +170763058622,216,0 +170763058670,217,0 +170763058718,217,0 +170763058766,217,0 +170763058814,217,0 +170763058863,218,0 +170763058911,217,0 +170763058959,217,0 +170763059009,217,0 +170763059057,218,0 +170763059106,217,0 +170763059154,215,0 +170763059202,215,0 +170763059251,215,0 +170763059301,215,0 +170763059349,215,0 +170763059397,216,0 +170763059447,216,0 +170763059494,216,0 +170763059544,216,0 +170763059592,217,0 +170763059640,217,0 +170763059688,217,0 +170763059736,217,0 +170763059784,217,0 +170763059833,217,0 +170763059881,218,0 +170763059929,218,0 +170763059978,217,0 +170763060026,217,0 +170763060076,214,0 +170763060124,214,0 +170763060172,214,0 +170763060220,214,0 +170763060268,215,0 +170763060317,215,0 +170763060365,216,0 +170763060415,216,0 +170763060464,216,0 +170763060512,216,0 +170763060560,217,0 +170763060610,217,0 +170763060658,217,0 +170763060706,218,0 +170763060754,218,0 +170763060802,218,0 +170763060849,218,0 +170763060897,218,0 +170763060945,217,0 +170763060995,214,0 +170763061043,214,0 +170763061091,214,0 +170763061139,214,0 +170763061187,215,0 +170763061236,215,0 +170763061284,215,0 +170763061332,216,0 +170763061380,216,0 +170763061428,216,0 +170763061476,217,0 +170763061525,217,0 +170763061573,217,0 +170763061623,217,0 +170763061671,217,0 +170763061719,218,0 +170763061766,220,0 +170763061814,217,0 +170763061862,215,0 +170763061912,214,0 +170763061960,214,0 +170763062008,214,0 +170763062055,215,0 +170763062103,215,0 +170763062153,215,0 +170763062201,215,0 +170763062250,215,0 +170763062298,216,0 +170763062346,216,0 +170763062394,216,0 +170763062442,217,0 +170763062490,217,0 +170763062538,217,0 +170763062586,217,0 +170763062635,217,0 +170763062683,217,0 +170763062731,217,0 +170763062781,214,0 +170763062830,214,0 +170763062880,214,0 +170763062928,215,0 +170763062976,215,0 +170763063024,215,0 +170763063072,216,0 +170763063120,216,0 +170763063168,216,0 +170763063217,216,0 +170763063267,216,0 +170763063316,217,0 +170763063364,217,0 +170763063412,217,0 +170763063460,217,0 +170763063508,217,0 +170763063556,218,0 +170763063605,218,0 +170763063653,217,0 +170763063703,214,0 +170763063751,214,0 +170763063798,215,0 +170763063846,214,0 +170763063894,215,0 +170763063944,215,0 +170763063993,215,0 +170763064043,216,0 +170763064092,216,0 +170763064142,216,0 +170763064190,217,0 +170763064238,217,0 +170763064285,218,0 +170763064333,217,0 +170763064381,218,0 +170763064429,218,0 +170763064479,217,0 +170763064527,217,0 +170763064575,215,0 +170763064624,214,0 +170763064672,214,0 +170763064720,215,0 +170763064769,215,0 +170763064819,215,0 +170763064867,215,0 +170763064915,216,0 +170763064964,216,0 +170763065014,216,0 +170763065061,216,0 +170763065109,217,0 +170763065159,217,0 +170763065207,217,0 +170763065255,217,0 +170763065304,217,0 +170763065352,217,0 +170763065402,217,0 +170763065451,217,0 +170763065501,214,0 +170763065549,215,0 +170763065597,215,0 +170763065646,215,0 +170763065694,215,0 +170763065744,215,0 +170763065793,216,0 +170763065843,216,0 +170763065890,216,0 +170763065938,217,0 +170763065988,217,0 +170763066037,217,0 +170763066087,217,0 +170763066136,217,0 +170763066186,217,0 +170763066234,217,0 +170763066283,217,0 +170763066331,217,0 +170763066381,215,0 +170763066428,215,0 +170763066476,215,0 +170763066524,215,0 +170763066572,215,0 +170763066620,216,0 +170763066668,216,0 +170763066716,216,0 +170763066764,217,0 +170763066813,216,0 +170763066861,217,0 +170763066909,218,0 +170763066957,218,0 +170763067005,218,0 +170763067053,218,0 +170763067101,218,0 +170763067149,217,0 +170763067197,217,0 +170763067245,217,0 +170763067292,215,0 +170763067340,214,0 +170763067388,215,0 +170763067436,215,0 +170763067484,215,0 +170763067532,216,0 +170763067580,216,0 +170763067628,216,0 +170763067675,216,0 +170763067723,217,0 +170763067771,217,0 +170763067819,217,0 +170763067867,218,0 +170763067915,217,0 +170763067962,217,0 +170763068010,217,0 +170763068060,218,0 +170763068108,218,0 +170763068156,218,0 +170763068204,215,0 +170763068251,215,0 +170763068299,215,0 +170763068349,215,0 +170763068397,216,0 +170763068446,216,0 +170763068494,217,0 +170763068543,217,0 +170763068591,217,0 +170763068641,217,0 +170763068689,218,0 +170763068736,217,0 +170763068786,217,0 +170763068835,218,0 +170763068885,218,0 +170763068934,218,0 +170763068984,218,0 +170763069032,218,0 +170763069081,217,0 +170763069129,214,0 +170763069179,214,0 +170763069226,214,0 +170763069274,215,0 +170763069322,215,0 +170763069372,215,0 +170763069420,216,0 +170763069467,216,0 +170763069515,217,0 +170763069565,217,0 +170763069614,217,0 +170763069664,217,0 +170763069712,217,0 +170763069760,218,0 +170763069807,218,0 +170763069857,220,0 +170763069905,218,0 +170763069953,217,0 +170763070001,215,0 +170763070049,214,0 +170763070096,214,0 +170763070144,214,0 +170763070194,214,0 +170763070243,214,0 +170763070291,215,0 +170763070339,215,0 +170763070387,215,0 +170763070435,216,0 +170763070484,216,0 +170763070532,217,0 +170763070581,217,0 +170763070629,217,0 +170763070677,217,0 +170763070724,217,0 +170763070772,217,0 +170763070820,217,0 +170763070868,217,0 +170763070916,215,0 +170763070963,213,0 +170763071011,214,0 +170763071059,214,0 +170763071107,214,0 +170763071156,214,0 +170763071204,215,0 +170763071252,215,0 +170763071300,215,0 +170763071348,216,0 +170763071396,216,0 +170763071444,217,0 +170763071493,217,0 +170763071541,217,0 +170763071590,217,0 +170763071638,218,0 +170763071686,217,0 +170763071734,218,0 +170763071782,217,0 +170763071830,215,0 +170763071878,214,0 +170763071927,214,0 +170763071975,214,0 +170763072025,214,0 +170763072074,215,0 +170763072122,215,0 +170763072170,215,0 +170763072220,216,0 +170763072268,216,0 +170763072316,216,0 +170763072365,217,0 +170763072413,217,0 +170763072461,217,0 +170763072510,217,0 +170763072558,218,0 +170763072606,218,0 +170763072654,216,0 +170763072702,217,0 +170763072752,214,0 +170763072801,214,0 +170763072849,214,0 +170763072898,214,0 +170763072946,215,0 +170763072994,214,0 +170763073042,215,0 +170763073092,215,0 +170763073139,216,0 +170763073187,216,0 +170763073235,216,0 +170763073285,217,0 +170763073334,217,0 +170763073382,217,0 +170763073430,218,0 +170763073480,217,0 +170763073528,217,0 +170763073577,217,0 +170763073627,217,0 +170763073676,214,0 +170763073724,214,0 +170763073772,214,0 +170763073820,215,0 +170763073868,215,0 +170763073917,215,0 +170763073965,215,0 +170763074013,216,0 +170763074061,216,0 +170763074109,217,0 +170763074157,217,0 +170763074205,217,0 +170763074254,217,0 +170763074302,217,0 +170763074350,217,0 +170763074398,218,0 +170763074447,217,0 +170763074495,217,0 +170763074543,215,0 +170763074591,215,0 +170763074641,215,0 +170763074690,215,0 +170763074740,216,0 +170763074788,216,0 +170763074837,216,0 +170763074885,216,0 +170763074933,216,0 +170763074981,217,0 +170763075029,217,0 +170763075078,217,0 +170763075126,217,0 +170763075175,217,0 +170763075223,217,0 +170763075271,217,0 +170763075321,218,0 +170763075370,218,0 +170763075418,217,0 +170763075466,215,0 +170763075514,214,0 +170763075562,215,0 +170763075611,215,0 +170763075659,215,0 +170763075707,215,0 +170763075757,216,0 +170763075804,216,0 +170763075852,216,0 +170763075900,216,0 +170763075948,216,0 +170763075998,217,0 +170763076046,217,0 +170763076095,217,0 +170763076143,217,0 +170763076193,217,0 +170763076241,217,0 +170763076289,218,0 +170763076337,217,0 +170763076385,215,0 +170763076434,214,0 +170763076482,215,0 +170763076530,215,0 +170763076580,215,0 +170763076627,215,0 +170763076675,215,0 +170763076725,216,0 +170763076773,216,0 +170763076821,216,0 +170763076870,216,0 +170763076918,217,0 +170763076966,217,0 +170763077015,217,0 +170763077063,217,0 +170763077111,217,0 +170763077161,218,0 +170763077209,218,0 +170763077257,217,0 +170763077305,214,0 +170763077352,214,0 +170763077400,215,0 +170763077448,215,0 +170763077498,215,0 +170763077547,215,0 +170763077595,216,0 +170763077643,216,0 +170763077693,216,0 +170763077742,216,0 +170763077790,216,0 +170763077838,217,0 +170763077888,217,0 +170763077937,217,0 +170763077985,217,0 +170763078034,217,0 +170763078082,217,0 +170763078130,217,0 +170763078178,215,0 +170763078226,215,0 +170763078276,215,0 +170763078323,215,0 +170763078371,215,0 +170763078419,215,0 +170763078467,215,0 +170763078515,216,0 +170763078565,216,0 +170763078614,217,0 +170763078662,217,0 +170763078712,217,0 +170763078759,217,0 +170763078809,217,0 +170763078857,217,0 +170763078905,218,0 +170763078953,217,0 +170763079002,217,0 +170763079050,218,0 +170763079098,215,0 +170763079147,215,0 +170763079195,215,0 +170763079243,216,0 +170763079291,216,0 +170763079339,216,0 +170763079387,216,0 +170763079435,217,0 +170763079483,217,0 +170763079531,217,0 +170763079579,217,0 +170763079627,218,0 +170763079674,218,0 +170763079724,218,0 +170763079773,218,0 +170763079821,218,0 +170763079871,218,0 +170763079920,217,0 +170763079970,217,0 +170763080018,215,0 +170763080065,215,0 +170763080115,215,0 +170763080164,216,0 +170763080212,216,0 +170763080260,216,0 +170763080308,217,0 +170763080356,217,0 +170763080404,217,0 +170763080452,217,0 +170763080501,217,0 +170763080549,218,0 +170763080597,219,0 +170763080647,218,0 +170763080694,216,0 +170763080742,218,0 +170763080790,218,0 +170763080838,217,0 +170763080888,217,0 +170763080936,215,0 +170763080985,215,0 +170763081035,215,0 +170763081082,215,0 +170763081132,215,0 +170763081180,216,0 +170763081228,216,0 +170763081276,216,0 +170763081323,217,0 +170763081373,217,0 +170763081421,217,0 +170763081469,217,0 +170763081518,217,0 +170763081566,217,0 +170763081616,218,0 +170763081664,218,0 +170763081712,217,0 +170763081761,217,0 +170763081811,217,0 +170763081860,214,0 +170763081910,214,0 +170763081958,214,0 +170763082006,214,0 +170763082053,215,0 +170763082101,215,0 +170763082149,215,0 +170763082197,215,0 +170763082247,216,0 +170763082296,216,0 +170763082346,217,0 +170763082395,217,0 +170763082445,217,0 +170763082493,217,0 +170763082542,217,0 +170763082590,217,0 +170763082638,218,0 +170763082686,218,0 +170763082733,215,0 +170763082781,214,0 +170763082829,214,0 +170763082878,214,0 +170763082926,215,0 +170763082976,215,0 +170763083024,215,0 +170763083072,215,0 +170763083121,216,0 +170763083169,216,0 +170763083217,216,0 +170763083266,217,0 +170763083316,217,0 +170763083364,217,0 +170763083412,217,0 +170763083459,217,0 +170763083507,217,0 +170763083555,218,0 +170763083603,217,0 +170763083651,215,0 +170763083699,214,0 +170763083747,214,0 +170763083795,215,0 +170763083843,215,0 +170763083891,216,0 +170763083939,216,0 +170763083986,216,0 +170763084034,216,0 +170763084082,216,0 +170763084130,217,0 +170763084178,217,0 +170763084226,217,0 +170763084274,217,0 +170763084322,217,0 +170763084370,218,0 +170763084417,217,0 +170763084465,218,0 +170763084513,217,0 +170763084561,215,0 +170763084609,215,0 +170763084657,215,0 +170763084705,215,0 +170763084753,215,0 +170763084802,215,0 +170763084850,216,0 +170763084899,216,0 +170763084947,216,0 +170763084995,216,0 +170763085043,216,0 +170763085091,217,0 +170763085139,217,0 +170763085186,217,0 +170763085234,218,0 +170763085282,217,0 +170763085330,217,0 +170763085378,217,0 +170763085426,217,0 +170763085474,215,0 +170763085522,214,0 +170763085571,215,0 +170763085619,215,0 +170763085669,215,0 +170763085717,215,0 +170763085764,215,0 +170763085812,216,0 +170763085860,216,0 +170763085908,217,0 +170763085956,217,0 +170763086006,217,0 +170763086054,217,0 +170763086102,217,0 +170763086151,218,0 +170763086199,218,0 +170763086247,218,0 +170763086295,218,0 +170763086343,217,0 +170763086392,215,0 +170763086440,214,0 +170763086488,214,0 +170763086538,215,0 +170763086585,215,0 +170763086633,215,0 +170763086681,216,0 +170763086731,217,0 +170763086780,216,0 +170763086828,216,0 +170763086878,217,0 +170763086927,217,0 +170763086975,217,0 +170763087023,218,0 +170763087071,218,0 +170763087118,218,0 +170763087166,218,0 +170763087216,218,0 +170763087265,218,0 +170763087315,215,0 +170763087364,215,0 +170763087412,215,0 +170763087460,215,0 +170763087508,215,0 +170763087556,215,0 +170763087604,216,0 +170763087651,216,0 +170763087701,216,0 +170763087749,216,0 +170763087797,217,0 +170763087846,217,0 +170763087894,217,0 +170763087942,217,0 +170763087990,218,0 +170763088037,218,0 +170763088085,218,0 +170763088133,217,0 +170763088181,217,0 +170763088229,214,0 +170763088276,214,0 +170763088324,214,0 +170763088372,215,0 +170763088420,215,0 +170763088468,216,0 +170763088516,216,0 +170763088565,216,0 +170763088613,216,0 +170763088661,217,0 +170763088708,217,0 +170763088756,218,0 +170763088804,217,0 +170763088852,217,0 +170763088900,217,0 +170763088949,217,0 +170763088997,217,0 +170763089045,217,0 +170763089093,217,0 +170763089142,215,0 +170763089190,215,0 +170763089238,215,0 +170763089286,215,0 +170763089336,215,0 +170763089384,215,0 +170763089433,216,0 +170763089481,216,0 +170763089531,216,0 +170763089579,217,0 +170763089627,217,0 +170763089675,218,0 +170763089723,217,0 +170763089772,217,0 +170763089820,218,0 +170763089868,218,0 +170763089916,218,0 +170763089964,217,0 +170763090012,215,0 +170763090060,214,0 +170763090109,214,0 +170763090157,215,0 +170763090206,215,0 +170763090254,216,0 +170763090302,215,0 +170763090350,216,0 +170763090398,216,0 +170763090446,217,0 +170763090493,216,0 +170763090541,217,0 +170763090589,217,0 +170763090637,217,0 +170763090685,217,0 +170763090733,217,0 +170763090781,218,0 +170763090830,217,0 +170763090878,217,0 +170763090925,215,0 +170763090975,214,0 +170763091023,215,0 +170763091071,215,0 +170763091120,215,0 +170763091168,216,0 +170763091216,216,0 +170763091264,216,0 +170763091311,217,0 +170763091359,217,0 +170763091407,217,0 +170763091455,217,0 +170763091503,218,0 +170763091551,217,0 +170763091598,218,0 +170763091646,218,0 +170763091694,218,0 +170763091742,218,0 +170763091790,217,0 +170763091838,215,0 +170763091885,214,0 +170763091933,214,0 +170763091981,215,0 +170763092029,215,0 +170763092078,215,0 +170763092126,215,0 +170763092174,216,0 +170763092222,217,0 +170763092269,216,0 +170763092317,217,0 +170763092365,217,0 +170763092413,217,0 +170763092461,218,0 +170763092508,217,0 +170763092556,218,0 +170763092604,218,0 +170763092652,217,0 +170763092700,217,0 +170763092747,215,0 +170763092795,214,0 +170763092845,214,0 +170763092892,214,0 +170763092940,215,0 +170763092988,215,0 +170763093036,215,0 +170763093084,215,0 +170763093132,215,0 +170763093179,216,0 +170763093229,216,0 +170763093277,217,0 +170763093325,217,0 +170763093372,218,0 +170763093420,218,0 +170763093468,217,0 +170763093516,217,0 +170763093563,217,0 +170763093611,217,0 +170763093659,216,0 +170763093707,214,0 +170763093756,214,0 +170763093804,214,0 +170763093852,214,0 +170763093900,214,0 +170763093948,215,0 +170763093995,215,0 +170763094043,215,0 +170763094091,216,0 +170763094139,216,0 +170763094187,216,0 +170763094235,216,0 +170763094283,216,0 +170763094331,217,0 +170763094379,217,0 +170763094428,217,0 +170763094476,217,0 +170763094525,217,0 +170763094573,214,0 +170763094621,214,0 +170763094669,214,0 +170763094717,214,0 +170763094767,214,0 +170763094816,214,0 +170763094864,215,0 +170763094911,215,0 +170763094961,215,0 +170763095009,216,0 +170763095056,215,0 +170763095104,216,0 +170763095152,217,0 +170763095200,217,0 +170763095248,217,0 +170763095296,217,0 +170763095344,217,0 +170763095391,218,0 +170763095439,217,0 +170763095487,215,0 +170763095535,214,0 +170763095583,214,0 +170763095632,214,0 +170763095680,214,0 +170763095729,214,0 +170763095777,214,0 +170763095825,215,0 +170763095872,215,0 +170763095920,215,0 +170763095968,216,0 +170763096016,216,0 +170763096064,217,0 +170763096112,217,0 +170763096160,217,0 +170763096208,217,0 +170763096256,217,0 +170763096304,218,0 +170763096354,218,0 +170763096401,215,0 +170763096451,214,0 +170763096499,214,0 +170763096547,214,0 +170763096594,214,0 +170763096642,214,0 +170763096690,215,0 +170763096738,215,0 +170763096786,215,0 +170763096834,216,0 +170763096883,216,0 +170763096931,216,0 +170763096979,216,0 +170763097026,217,0 +170763097076,217,0 +170763097124,217,0 +170763097171,217,0 +170763097219,217,0 +170763097269,217,0 +170763097317,215,0 +170763097364,214,0 +170763097414,214,0 +170763097462,214,0 +170763097510,214,0 +170763097559,214,0 +170763097609,215,0 +170763097657,215,0 +170763097704,215,0 +170763097754,215,0 +170763097802,216,0 +170763097850,216,0 +170763097897,216,0 +170763097947,217,0 +170763097995,217,0 +170763098043,216,0 +170763098090,217,0 +170763098138,217,0 +170763098186,217,0 +170763098234,214,0 +170763098282,214,0 +170763098329,214,0 +170763098379,214,0 +170763098427,214,0 +170763098474,214,0 +170763098522,215,0 +170763098570,215,0 +170763098618,215,0 +170763098666,216,0 +170763098714,217,0 +170763098761,216,0 +170763098809,216,0 +170763098857,217,0 +170763098905,216,0 +170763098953,217,0 +170763099001,217,0 +170763099048,217,0 +170763099096,217,0 +170763099144,215,0 +170763099194,214,0 +170763099241,214,0 +170763099289,214,0 +170763099337,215,0 +170763099385,215,0 +170763099433,215,0 +170763099481,215,0 +170763099529,216,0 +170763099576,216,0 +170763099624,216,0 +170763099672,217,0 +170763099720,217,0 +170763099769,217,0 +170763099817,217,0 +170763099865,217,0 +170763099915,217,0 +170763099962,218,0 +170763100010,217,0 +170763100058,215,0 +170763100106,215,0 +170763100154,215,0 +170763100201,215,0 +170763100249,216,0 +170763100299,216,0 +170763100346,216,0 +170763100394,216,0 +170763100442,217,0 +170763100490,217,0 +170763100538,217,0 +170763100585,217,0 +170763100633,218,0 +170763100681,218,0 +170763100729,217,0 +170763100777,217,0 +170763100825,218,0 +170763100872,217,0 +170763100920,217,0 +170763100968,215,0 +170763101016,215,0 +170763101065,215,0 +170763101113,215,0 +170763101163,216,0 +170763101212,216,0 +170763101260,216,0 +170763101308,216,0 +170763101358,217,0 +170763101407,217,0 +170763101457,217,0 +170763101504,217,0 +170763101552,218,0 +170763101602,218,0 +170763101649,218,0 +170763101699,218,0 +170763101748,217,0 +170763101796,217,0 +170763101844,217,0 +170763101892,215,0 +170763101939,215,0 +170763101987,215,0 +170763102035,216,0 +170763102083,216,0 +170763102131,216,0 +170763102180,216,0 +170763102228,217,0 +170763102276,217,0 +170763102324,217,0 +170763102371,218,0 +170763102419,217,0 +170763102467,218,0 +170763102515,217,0 +170763102563,218,0 +170763102611,218,0 +170763102659,218,0 +170763102708,217,0 +170763102756,217,0 +170763102805,215,0 +170763102855,215,0 +170763102903,216,0 +170763102951,216,0 +170763102999,216,0 +170763103047,216,0 +170763103096,216,0 +170763103144,217,0 +170763103193,217,0 +170763103241,217,0 +170763103291,217,0 +170763103339,217,0 +170763103387,218,0 +170763103436,218,0 +170763103484,218,0 +170763103532,218,0 +170763103580,218,0 +170763103630,218,0 +170763103678,217,0 +170763103726,215,0 +170763103775,215,0 +170763103823,215,0 +170763103871,215,0 +170763103919,215,0 +170763103968,216,0 +170763104016,216,0 +170763104066,216,0 +170763104114,216,0 +170763104162,216,0 +170763104210,217,0 +170763104258,217,0 +170763104307,217,0 +170763104355,218,0 +170763104404,218,0 +170763104452,218,0 +170763104502,218,0 +170763104550,217,0 +170763104598,217,0 +170763104646,215,0 +170763104694,215,0 +170763104742,215,0 +170763104791,215,0 +170763104839,215,0 +170763104889,215,0 +170763104937,215,0 +170763104986,216,0 +170763105034,216,0 +170763105082,217,0 +170763105130,217,0 +170763105179,217,0 +170763105227,217,0 +170763105277,218,0 +170763105325,218,0 +170763105373,217,0 +170763105421,218,0 +170763105468,217,0 +170763105516,215,0 +170763105564,214,0 +170763105613,215,0 +170763105663,215,0 +170763105711,215,0 +170763105758,215,0 +170763105806,216,0 +170763105854,216,0 +170763105902,216,0 +170763105951,216,0 +170763105999,217,0 +170763106048,217,0 +170763106096,217,0 +170763106144,218,0 +170763106192,217,0 +170763106240,217,0 +170763106288,218,0 +170763106336,217,0 +170763106385,217,0 +170763106435,215,0 +170763106483,214,0 +170763106530,214,0 +170763106578,215,0 +170763106626,215,0 +170763106676,215,0 +170763106724,216,0 +170763106773,216,0 +170763106821,216,0 +170763106869,216,0 +170763106919,217,0 +170763106968,218,0 +170763107016,218,0 +170763107064,217,0 +170763107112,217,0 +170763107160,217,0 +170763107208,217,0 +170763107256,217,0 +170763107304,217,0 +170763107352,214,0 +170763107401,214,0 +170763107449,214,0 +170763107499,215,0 +170763107547,215,0 +170763107596,215,0 +170763107644,215,0 +170763107694,215,0 +170763107742,215,0 +170763107789,216,0 +170763107837,216,0 +170763107885,216,0 +170763107933,216,0 +170763107981,216,0 +170763108029,216,0 +170763108077,216,0 +170763108125,216,0 +170763108173,216,0 +170763108221,216,0 +170763108269,214,0 +170763108317,214,0 +170763108364,214,0 +170763108412,214,0 +170763108460,215,0 +170763108508,215,0 +170763108556,215,0 +170763108605,215,0 +170763108653,215,0 +170763108701,216,0 +170763108749,216,0 +170763108796,216,0 +170763108846,216,0 +170763108895,217,0 +170763108944,217,0 +170763108991,217,0 +170763109039,217,0 +170763109087,217,0 +170763109137,217,0 +170763109185,214,0 +170763109234,214,0 +170763109282,214,0 +170763109330,215,0 +170763109380,215,0 +170763109429,215,0 +170763109477,215,0 +170763109525,215,0 +170763109574,216,0 +170763109624,216,0 +170763109672,216,0 +170763109720,217,0 +170763109769,217,0 +170763109817,217,0 +170763109867,217,0 +170763109916,217,0 +170763109964,217,0 +170763110012,217,0 +170763110061,217,0 +170763110109,214,0 +170763110159,214,0 +170763110208,214,0 +170763110256,215,0 +170763110306,215,0 +170763110354,215,0 +170763110401,216,0 +170763110449,216,0 +170763110497,216,0 +170763110545,216,0 +170763110595,216,0 +170763110643,217,0 +170763110690,217,0 +170763110740,218,0 +170763110789,217,0 +170763110837,217,0 +170763110885,217,0 +170763110933,217,0 +170763110983,215,0 +170763111032,214,0 +170763111080,214,0 +170763111128,214,0 +170763111178,214,0 +170763111225,215,0 +170763111273,216,0 +170763111321,215,0 +170763111369,216,0 +170763111417,216,0 +170763111467,217,0 +170763111515,217,0 +170763111562,217,0 +170763111610,217,0 +170763111658,217,0 +170763111706,218,0 +170763111754,217,0 +170763111804,218,0 +170763111852,217,0 +170763111901,215,0 +170763111949,214,0 +170763111997,215,0 +170763112047,215,0 +170763112096,215,0 +170763112146,216,0 +170763112195,216,0 +170763112245,216,0 +170763112293,216,0 +170763112340,216,0 +170763112390,217,0 +170763112439,217,0 +170763112487,217,0 +170763112535,217,0 +170763112583,217,0 +170763112633,218,0 +170763112681,218,0 +170763112729,217,0 +170763112777,217,0 +170763112826,215,0 +170763112874,214,0 +170763112922,215,0 +170763112970,215,0 +170763113019,215,0 +170763113067,216,0 +170763113115,216,0 +170763113163,216,0 +170763113211,216,0 +170763113260,217,0 +170763113308,217,0 +170763113356,217,0 +170763113404,217,0 +170763113453,218,0 +170763113503,218,0 +170763113552,218,0 +170763113602,218,0 +170763113651,217,0 +170763113699,217,0 +170763113747,214,0 +170763113795,214,0 +170763113843,214,0 +170763113891,215,0 +170763113940,215,0 +170763113988,215,0 +170763114036,216,0 +170763114086,216,0 +170763114133,216,0 +170763114181,217,0 +170763114231,217,0 +170763114279,218,0 +170763114327,217,0 +170763114376,217,0 +170763114424,218,0 +170763114472,217,0 +170763114520,218,0 +170763114568,218,0 +170763114617,217,0 +170763114667,214,0 +170763114716,214,0 +170763114766,214,0 +170763114814,214,0 +170763114863,215,0 +170763114912,215,0 +170763114960,215,0 +170763115010,216,0 +170763115059,216,0 +170763115107,216,0 +170763115155,216,0 +170763115203,217,0 +170763115251,216,0 +170763115298,217,0 +170763115348,218,0 +170763115396,217,0 +170763115444,217,0 +170763115491,217,0 +170763115539,216,0 +170763115587,214,0 +170763115635,214,0 +170763115685,214,0 +170763115732,214,0 +170763115782,215,0 +170763115830,214,0 +170763115879,215,0 +170763115929,215,0 +170763115977,216,0 +170763116025,216,0 +170763116073,217,0 +170763116122,217,0 +170763116172,217,0 +170763116220,217,0 +170763116269,218,0 +170763116317,217,0 +170763116366,217,0 +170763116416,217,0 +170763116464,214,0 +170763116512,214,0 +170763116560,215,0 +170763116607,215,0 +170763116657,215,0 +170763116705,215,0 +170763116753,215,0 +170763116801,215,0 +170763116849,216,0 +170763116897,216,0 +170763116944,217,0 +170763116992,217,0 +170763117040,217,0 +170763117090,217,0 +170763117138,217,0 +170763117186,218,0 +170763117234,217,0 +170763117281,218,0 +170763117331,220,0 +170763117379,215,0 +170763117427,214,0 +170763117475,214,0 +170763117522,214,0 +170763117572,215,0 +170763117620,215,0 +170763117668,215,0 +170763117715,216,0 +170763117763,216,0 +170763117811,216,0 +170763117861,216,0 +170763117910,217,0 +170763117958,217,0 +170763118006,218,0 +170763118054,217,0 +170763118103,218,0 +170763118151,218,0 +170763118201,218,0 +170763118249,217,0 +170763118297,215,0 +170763118345,214,0 +170763118392,214,0 +170763118440,215,0 +170763118488,215,0 +170763118536,215,0 +170763118586,215,0 +170763118635,216,0 +170763118684,216,0 +170763118734,216,0 +170763118782,217,0 +170763118830,217,0 +170763118878,217,0 +170763118926,217,0 +170763118973,217,0 +170763119021,217,0 +170763119069,217,0 +170763119117,218,0 +170763119165,217,0 +170763119213,214,0 +170763119261,214,0 +170763119309,214,0 +170763119357,214,0 +170763119405,215,0 +170763119454,215,0 +170763119504,215,0 +170763119553,215,0 +170763119601,216,0 +170763119649,216,0 +170763119697,216,0 +170763119746,217,0 +170763119794,217,0 +170763119842,217,0 +170763119890,218,0 +170763119938,217,0 +170763119987,217,0 diff --git a/laser_value/0211-16.csv b/laser_value/0211-16.csv new file mode 100644 index 0000000..9544551 --- /dev/null +++ b/laser_value/0211-16.csv @@ -0,0 +1,7445 @@ +timestamp,laser_value,event +170763120036,217,0 +170763120085,217,0 +170763120133,214,0 +170763120183,214,0 +170763120231,214,0 +170763120280,215,0 +170763120330,215,0 +170763120377,215,0 +170763120425,216,0 +170763120473,216,0 +170763120521,216,0 +170763120571,216,0 +170763120620,217,0 +170763120670,217,0 +170763120719,217,0 +170763120767,217,0 +170763120816,217,0 +170763120864,217,0 +170763120912,218,0 +170763120962,217,0 +170763121010,216,0 +170763121059,214,0 +170763121107,214,0 +170763121155,214,0 +170763121203,214,0 +170763121251,215,0 +170763121299,215,0 +170763121347,214,0 +170763121396,215,0 +170763121444,215,0 +170763121494,216,0 +170763121543,216,0 +170763121592,216,0 +170763121640,216,0 +170763121690,217,0 +170763121739,217,0 +170763121787,217,0 +170763121835,217,0 +170763121885,217,0 +170763121933,214,0 +170763121980,214,0 +170763122030,214,0 +170763122078,214,0 +170763122126,215,0 +170763122174,215,0 +170763122222,215,0 +170763122270,215,0 +170763122319,215,0 +170763122369,215,0 +170763122417,216,0 +170763122465,216,0 +170763122514,217,0 +170763122562,216,0 +170763122610,217,0 +170763122659,217,0 +170763122707,217,0 +170763122755,217,0 +170763122803,217,0 +170763122851,214,0 +170763122899,214,0 +170763122947,215,0 +170763122995,215,0 +170763123043,215,0 +170763123092,215,0 +170763123140,215,0 +170763123190,216,0 +170763123238,216,0 +170763123286,216,0 +170763123334,217,0 +170763123383,217,0 +170763123431,217,0 +170763123479,217,0 +170763123528,217,0 +170763123576,218,0 +170763123624,217,0 +170763123674,217,0 +170763123723,217,0 +170763123771,214,0 +170763123820,214,0 +170763123870,214,0 +170763123919,214,0 +170763123967,215,0 +170763124015,215,0 +170763124063,215,0 +170763124111,215,0 +170763124161,215,0 +170763124210,216,0 +170763124258,216,0 +170763124306,217,0 +170763124354,217,0 +170763124402,217,0 +170763124450,217,0 +170763124499,217,0 +170763124547,217,0 +170763124597,217,0 +170763124644,217,0 +170763124694,214,0 +170763124742,215,0 +170763124789,215,0 +170763124837,215,0 +170763124885,215,0 +170763124934,216,0 +170763124982,216,0 +170763125030,217,0 +170763125080,217,0 +170763125127,217,0 +170763125175,217,0 +170763125225,218,0 +170763125274,218,0 +170763125322,217,0 +170763125371,218,0 +170763125419,218,0 +170763125467,217,0 +170763125516,217,0 +170763125564,217,0 +170763125612,214,0 +170763125660,214,0 +170763125708,215,0 +170763125756,215,0 +170763125804,215,0 +170763125852,216,0 +170763125901,216,0 +170763125949,216,0 +170763125997,216,0 +170763126045,217,0 +170763126093,217,0 +170763126141,217,0 +170763126189,216,0 +170763126237,217,0 +170763126286,217,0 +170763126336,217,0 +170763126384,217,0 +170763126432,217,0 +170763126479,215,0 +170763126527,214,0 +170763126575,214,0 +170763126625,215,0 +170763126673,215,0 +170763126721,215,0 +170763126770,215,0 +170763126820,216,0 +170763126868,216,0 +170763126916,216,0 +170763126964,216,0 +170763127012,217,0 +170763127061,217,0 +170763127109,217,0 +170763127157,218,0 +170763127205,217,0 +170763127253,217,0 +170763127301,217,0 +170763127349,217,0 +170763127396,215,0 +170763127446,214,0 +170763127494,214,0 +170763127543,215,0 +170763127593,215,0 +170763127640,215,0 +170763127688,215,0 +170763127736,216,0 +170763127786,216,0 +170763127834,216,0 +170763127882,216,0 +170763127931,217,0 +170763127981,217,0 +170763128029,217,0 +170763128078,217,0 +170763128128,217,0 +170763128177,217,0 +170763128225,217,0 +170763128273,217,0 +170763128323,215,0 +170763128371,214,0 +170763128419,215,0 +170763128468,215,0 +170763128516,215,0 +170763128564,215,0 +170763128614,216,0 +170763128661,215,0 +170763128709,216,0 +170763128757,216,0 +170763128807,216,0 +170763128855,217,0 +170763128903,217,0 +170763128951,216,0 +170763129000,217,0 +170763129050,217,0 +170763129099,217,0 +170763129147,217,0 +170763129195,217,0 +170763129245,214,0 +170763129294,214,0 +170763129342,215,0 +170763129390,215,0 +170763129439,215,0 +170763129489,215,0 +170763129537,215,0 +170763129585,216,0 +170763129633,216,0 +170763129681,216,0 +170763129729,216,0 +170763129777,217,0 +170763129827,217,0 +170763129875,217,0 +170763129923,218,0 +170763129971,217,0 +170763130018,217,0 +170763130068,218,0 +170763130116,217,0 +170763130164,214,0 +170763130212,214,0 +170763130261,214,0 +170763130309,215,0 +170763130357,215,0 +170763130405,215,0 +170763130455,215,0 +170763130502,215,0 +170763130552,216,0 +170763130601,216,0 +170763130651,216,0 +170763130699,216,0 +170763130747,217,0 +170763130795,217,0 +170763130844,217,0 +170763130894,217,0 +170763130942,218,0 +170763130990,217,0 +170763131038,215,0 +170763131086,214,0 +170763131134,214,0 +170763131183,215,0 +170763131232,214,0 +170763131280,215,0 +170763131328,215,0 +170763131376,215,0 +170763131424,216,0 +170763131473,216,0 +170763131521,216,0 +170763131569,217,0 +170763131617,217,0 +170763131665,218,0 +170763131714,217,0 +170763131762,218,0 +170763131812,217,0 +170763131860,218,0 +170763131908,217,0 +170763131956,215,0 +170763132005,214,0 +170763132053,214,0 +170763132101,214,0 +170763132149,215,0 +170763132198,215,0 +170763132248,216,0 +170763132297,215,0 +170763132345,216,0 +170763132393,216,0 +170763132441,217,0 +170763132489,217,0 +170763132538,217,0 +170763132586,217,0 +170763132634,218,0 +170763132682,217,0 +170763132732,218,0 +170763132780,218,0 +170763132829,217,0 +170763132877,215,0 +170763132925,215,0 +170763132973,215,0 +170763133021,215,0 +170763133070,215,0 +170763133120,215,0 +170763133169,216,0 +170763133217,216,0 +170763133267,217,0 +170763133314,216,0 +170763133364,217,0 +170763133413,217,0 +170763133461,217,0 +170763133511,218,0 +170763133559,217,0 +170763133607,218,0 +170763133654,218,0 +170763133702,217,0 +170763133752,217,0 +170763133799,215,0 +170763133847,215,0 +170763133895,215,0 +170763133945,215,0 +170763133994,215,0 +170763134042,216,0 +170763134090,216,0 +170763134139,217,0 +170763134187,216,0 +170763134235,217,0 +170763134283,217,0 +170763134331,217,0 +170763134380,217,0 +170763134428,217,0 +170763134476,218,0 +170763134524,217,0 +170763134572,217,0 +170763134620,217,0 +170763134670,217,0 +170763134718,215,0 +170763134767,215,0 +170763134815,215,0 +170763134863,215,0 +170763134911,216,0 +170763134959,216,0 +170763135007,216,0 +170763135055,217,0 +170763135104,217,0 +170763135153,217,0 +170763135201,217,0 +170763135249,217,0 +170763135297,219,0 +170763135346,218,0 +170763135394,218,0 +170763135444,217,0 +170763135491,218,0 +170763135539,217,0 +170763135589,215,0 +170763135637,215,0 +170763135684,215,0 +170763135732,216,0 +170763135780,216,0 +170763135828,216,0 +170763135876,217,0 +170763135924,217,0 +170763135972,217,0 +170763136021,215,0 +170763136069,217,0 +170763136117,218,0 +170763136167,217,0 +170763136216,218,0 +170763136264,218,0 +170763136312,218,0 +170763136360,218,0 +170763136408,217,0 +170763136456,217,0 +170763136505,215,0 +170763136555,214,0 +170763136604,215,0 +170763136652,215,0 +170763136700,215,0 +170763136747,215,0 +170763136795,216,0 +170763136845,216,0 +170763136894,216,0 +170763136944,216,0 +170763136992,217,0 +170763137040,217,0 +170763137087,217,0 +170763137135,218,0 +170763137183,217,0 +170763137232,218,0 +170763137282,218,0 +170763137330,218,0 +170763137378,217,0 +170763137427,215,0 +170763137477,214,0 +170763137526,214,0 +170763137574,215,0 +170763137623,215,0 +170763137671,215,0 +170763137719,215,0 +170763137767,216,0 +170763137815,216,0 +170763137863,216,0 +170763137912,217,0 +170763137962,217,0 +170763138009,217,0 +170763138057,217,0 +170763138105,217,0 +170763138155,217,0 +170763138202,218,0 +170763138252,218,0 +170763138301,217,0 +170763138349,214,0 +170763138397,214,0 +170763138447,214,0 +170763138495,215,0 +170763138544,215,0 +170763138592,215,0 +170763138640,216,0 +170763138689,216,0 +170763138737,216,0 +170763138785,216,0 +170763138833,217,0 +170763138882,217,0 +170763138932,217,0 +170763138981,217,0 +170763139029,217,0 +170763139077,218,0 +170763139125,217,0 +170763139173,217,0 +170763139222,217,0 +170763139272,214,0 +170763139321,214,0 +170763139369,214,0 +170763139417,214,0 +170763139465,215,0 +170763139514,215,0 +170763139562,215,0 +170763139610,216,0 +170763139659,216,0 +170763139709,216,0 +170763139756,217,0 +170763139806,216,0 +170763139854,217,0 +170763139902,217,0 +170763139950,217,0 +170763139999,217,0 +170763140047,217,0 +170763140095,217,0 +170763140143,217,0 +170763140192,214,0 +170763140240,214,0 +170763140288,214,0 +170763140338,214,0 +170763140385,215,0 +170763140435,215,0 +170763140483,215,0 +170763140531,215,0 +170763140579,215,0 +170763140627,216,0 +170763140675,216,0 +170763140723,216,0 +170763140771,217,0 +170763140818,217,0 +170763140866,218,0 +170763140914,217,0 +170763140962,217,0 +170763141012,217,0 +170763141061,215,0 +170763141109,214,0 +170763141157,213,0 +170763141205,214,0 +170763141253,214,0 +170763141301,214,0 +170763141349,215,0 +170763141397,215,0 +170763141444,215,0 +170763141492,215,0 +170763141540,216,0 +170763141588,216,0 +170763141636,217,0 +170763141686,217,0 +170763141735,217,0 +170763141785,217,0 +170763141833,217,0 +170763141882,217,0 +170763141931,217,0 +170763141979,215,0 +170763142029,214,0 +170763142078,214,0 +170763142126,214,0 +170763142174,214,0 +170763142222,215,0 +170763142270,215,0 +170763142318,215,0 +170763142366,215,0 +170763142414,216,0 +170763142462,216,0 +170763142511,216,0 +170763142561,217,0 +170763142609,217,0 +170763142658,217,0 +170763142706,217,0 +170763142754,217,0 +170763142801,217,0 +170763142851,217,0 +170763142899,214,0 +170763142947,214,0 +170763142994,214,0 +170763143042,214,0 +170763143090,215,0 +170763143138,215,0 +170763143185,215,0 +170763143233,215,0 +170763143281,215,0 +170763143329,215,0 +170763143377,216,0 +170763143424,216,0 +170763143472,216,0 +170763143520,217,0 +170763143568,217,0 +170763143616,217,0 +170763143664,217,0 +170763143712,217,0 +170763143759,217,0 +170763143809,214,0 +170763143858,214,0 +170763143908,214,0 +170763143956,215,0 +170763144004,215,0 +170763144053,215,0 +170763144102,215,0 +170763144150,215,0 +170763144198,216,0 +170763144248,216,0 +170763144296,216,0 +170763144344,216,0 +170763144392,217,0 +170763144439,217,0 +170763144487,217,0 +170763144535,217,0 +170763144583,218,0 +170763144630,217,0 +170763144678,217,0 +170763144726,214,0 +170763144774,214,0 +170763144822,214,0 +170763144870,215,0 +170763144918,215,0 +170763144966,215,0 +170763145013,215,0 +170763145063,216,0 +170763145112,216,0 +170763145160,216,0 +170763145209,216,0 +170763145257,217,0 +170763145305,217,0 +170763145353,217,0 +170763145403,217,0 +170763145451,217,0 +170763145498,217,0 +170763145548,218,0 +170763145596,217,0 +170763145645,214,0 +170763145693,214,0 +170763145741,215,0 +170763145789,215,0 +170763145837,215,0 +170763145885,215,0 +170763145933,215,0 +170763145981,216,0 +170763146029,216,0 +170763146077,216,0 +170763146126,217,0 +170763146174,217,0 +170763146222,217,0 +170763146270,217,0 +170763146318,217,0 +170763146366,217,0 +170763146415,217,0 +170763146463,218,0 +170763146511,217,0 +170763146559,214,0 +170763146607,214,0 +170763146655,215,0 +170763146703,215,0 +170763146751,215,0 +170763146799,216,0 +170763146848,216,0 +170763146896,216,0 +170763146944,216,0 +170763146992,216,0 +170763147040,217,0 +170763147088,217,0 +170763147136,217,0 +170763147185,217,0 +170763147233,218,0 +170763147281,218,0 +170763147330,217,0 +170763147378,217,0 +170763147426,217,0 +170763147474,214,0 +170763147522,214,0 +170763147571,214,0 +170763147621,215,0 +170763147669,215,0 +170763147717,216,0 +170763147764,216,0 +170763147812,216,0 +170763147860,217,0 +170763147908,216,0 +170763147956,217,0 +170763148004,216,0 +170763148052,216,0 +170763148100,217,0 +170763148148,217,0 +170763148196,217,0 +170763148244,217,0 +170763148291,217,0 +170763148339,215,0 +170763148387,214,0 +170763148437,214,0 +170763148484,214,0 +170763148532,215,0 +170763148582,214,0 +170763148630,214,0 +170763148679,215,0 +170763148727,215,0 +170763148775,215,0 +170763148823,216,0 +170763148872,216,0 +170763148920,217,0 +170763148968,217,0 +170763149016,217,0 +170763149064,217,0 +170763149112,218,0 +170763149160,217,0 +170763149208,217,0 +170763149256,214,0 +170763149305,214,0 +170763149353,214,0 +170763149401,214,0 +170763149449,215,0 +170763149497,214,0 +170763149545,215,0 +170763149594,215,0 +170763149642,215,0 +170763149690,216,0 +170763149738,217,0 +170763149787,217,0 +170763149835,217,0 +170763149885,217,0 +170763149933,217,0 +170763149982,217,0 +170763150030,217,0 +170763150080,217,0 +170763150128,217,0 +170763150175,215,0 +170763150223,214,0 +170763150271,214,0 +170763150319,214,0 +170763150367,214,0 +170763150415,215,0 +170763150463,215,0 +170763150512,216,0 +170763150560,216,0 +170763150608,216,0 +170763150657,216,0 +170763150705,217,0 +170763150753,217,0 +170763150801,217,0 +170763150849,217,0 +170763150899,217,0 +170763150948,218,0 +170763150996,217,0 +170763151044,217,0 +170763151092,215,0 +170763151141,214,0 +170763151191,214,0 +170763151240,215,0 +170763151289,215,0 +170763151339,215,0 +170763151387,215,0 +170763151435,216,0 +170763151482,216,0 +170763151530,216,0 +170763151578,216,0 +170763151626,216,0 +170763151674,217,0 +170763151722,217,0 +170763151769,217,0 +170763151819,217,0 +170763151867,217,0 +170763151915,217,0 +170763151962,217,0 +170763152012,214,0 +170763152060,214,0 +170763152108,215,0 +170763152157,215,0 +170763152207,215,0 +170763152254,215,0 +170763152304,216,0 +170763152352,216,0 +170763152400,216,0 +170763152448,217,0 +170763152497,217,0 +170763152547,217,0 +170763152596,217,0 +170763152644,217,0 +170763152692,217,0 +170763152741,218,0 +170763152789,217,0 +170763152837,217,0 +170763152886,217,0 +170763152934,214,0 +170763152982,215,0 +170763153030,215,0 +170763153078,215,0 +170763153126,216,0 +170763153174,216,0 +170763153222,216,0 +170763153269,216,0 +170763153317,217,0 +170763153365,217,0 +170763153414,217,0 +170763153462,217,0 +170763153510,217,0 +170763153560,218,0 +170763153609,218,0 +170763153657,218,0 +170763153707,217,0 +170763153754,217,0 +170763153802,217,0 +170763153850,214,0 +170763153898,214,0 +170763153946,215,0 +170763153996,215,0 +170763154044,215,0 +170763154091,216,0 +170763154139,215,0 +170763154189,216,0 +170763154237,216,0 +170763154286,216,0 +170763154334,217,0 +170763154382,217,0 +170763154430,217,0 +170763154479,217,0 +170763154527,217,0 +170763154575,217,0 +170763154625,217,0 +170763154674,217,0 +170763154722,215,0 +170763154771,214,0 +170763154821,214,0 +170763154869,215,0 +170763154917,215,0 +170763154966,215,0 +170763155014,215,0 +170763155062,216,0 +170763155111,216,0 +170763155161,216,0 +170763155210,216,0 +170763155258,217,0 +170763155306,217,0 +170763155356,217,0 +170763155404,217,0 +170763155451,218,0 +170763155501,217,0 +170763155549,217,0 +170763155597,217,0 +170763155646,214,0 +170763155696,214,0 +170763155744,214,0 +170763155793,214,0 +170763155841,215,0 +170763155889,215,0 +170763155937,215,0 +170763155985,215,0 +170763156034,216,0 +170763156082,216,0 +170763156130,215,0 +170763156178,216,0 +170763156226,217,0 +170763156276,217,0 +170763156325,217,0 +170763156373,217,0 +170763156421,217,0 +170763156470,217,0 +170763156520,217,0 +170763156569,214,0 +170763156617,214,0 +170763156665,214,0 +170763156713,214,0 +170763156763,214,0 +170763156811,215,0 +170763156858,215,0 +170763156906,215,0 +170763156954,215,0 +170763157002,216,0 +170763157050,216,0 +170763157098,216,0 +170763157146,216,0 +170763157194,216,0 +170763157242,217,0 +170763157290,217,0 +170763157338,217,0 +170763157386,217,0 +170763157434,217,0 +170763157483,214,0 +170763157531,214,0 +170763157579,215,0 +170763157627,215,0 +170763157675,214,0 +170763157723,215,0 +170763157771,215,0 +170763157819,216,0 +170763157867,216,0 +170763157916,216,0 +170763157965,217,0 +170763158015,217,0 +170763158063,217,0 +170763158111,217,0 +170763158159,217,0 +170763158207,218,0 +170763158254,217,0 +170763158302,217,0 +170763158350,217,0 +170763158398,214,0 +170763158446,214,0 +170763158496,215,0 +170763158545,215,0 +170763158593,215,0 +170763158641,216,0 +170763158689,216,0 +170763158738,216,0 +170763158788,216,0 +170763158837,217,0 +170763158887,217,0 +170763158935,217,0 +170763158983,217,0 +170763159031,217,0 +170763159079,217,0 +170763159128,217,0 +170763159176,217,0 +170763159224,217,0 +170763159272,216,0 +170763159320,214,0 +170763159368,214,0 +170763159417,215,0 +170763159465,214,0 +170763159515,215,0 +170763159563,215,0 +170763159610,215,0 +170763159658,215,0 +170763159706,216,0 +170763159754,216,0 +170763159804,216,0 +170763159853,216,0 +170763159901,217,0 +170763159949,217,0 +170763159997,217,0 +170763160047,218,0 +170763160096,217,0 +170763160146,218,0 +170763160195,218,0 +170763160243,218,0 +170763160292,220,0 +170763160340,218,0 +170763160390,218,0 +170763160439,218,0 +170763160487,217,0 +170763160537,217,0 +170763160586,217,0 +170763160634,216,0 +170763160684,214,0 +170763160733,214,0 +170763160783,214,0 +170763160831,215,0 +170763160880,215,0 +170763160930,215,0 +170763160978,215,0 +170763161026,216,0 +170763161075,216,0 +170763161123,216,0 +170763161172,216,0 +170763161220,217,0 +170763161268,217,0 +170763161318,217,0 +170763161367,218,0 +170763161415,217,0 +170763161463,218,0 +170763161511,218,0 +170763161559,214,0 +170763161606,214,0 +170763161656,214,0 +170763161704,215,0 +170763161753,215,0 +170763161801,215,0 +170763161849,216,0 +170763161897,216,0 +170763161945,216,0 +170763161993,216,0 +170763162041,216,0 +170763162089,216,0 +170763162138,216,0 +170763162186,217,0 +170763162234,217,0 +170763162283,217,0 +170763162333,217,0 +170763162381,217,0 +170763162429,217,0 +170763162477,215,0 +170763162526,214,0 +170763162576,214,0 +170763162624,214,0 +170763162672,215,0 +170763162720,215,0 +170763162768,215,0 +170763162816,215,0 +170763162865,215,0 +170763162913,216,0 +170763162963,216,0 +170763163012,216,0 +170763163060,217,0 +170763163108,217,0 +170763163156,217,0 +170763163203,217,0 +170763163251,218,0 +170763163299,218,0 +170763163347,223,0 +170763163396,214,0 +170763163444,214,0 +170763163492,214,0 +170763163540,214,0 +170763163588,214,0 +170763163636,214,0 +170763163685,215,0 +170763163733,215,0 +170763163781,215,0 +170763163829,216,0 +170763163876,216,0 +170763163924,216,0 +170763163972,217,0 +170763164020,217,0 +170763164069,217,0 +170763164117,217,0 +170763164165,217,0 +170763164213,217,0 +170763164261,217,0 +170763164310,214,0 +170763164358,214,0 +170763164408,214,0 +170763164455,214,0 +170763164503,214,0 +170763164553,215,0 +170763164601,215,0 +170763164649,215,0 +170763164696,215,0 +170763164746,216,0 +170763164794,216,0 +170763164842,216,0 +170763164889,217,0 +170763164937,216,0 +170763164985,217,0 +170763165033,217,0 +170763165081,217,0 +170763165129,217,0 +170763165176,217,0 +170763165224,214,0 +170763165272,214,0 +170763165320,214,0 +170763165368,214,0 +170763165415,214,0 +170763165463,214,0 +170763165511,215,0 +170763165560,215,0 +170763165608,215,0 +170763165658,215,0 +170763165706,216,0 +170763165755,216,0 +170763165805,216,0 +170763165854,217,0 +170763165902,217,0 +170763165952,217,0 +170763166001,217,0 +170763166051,217,0 +170763166100,217,0 +170763166148,214,0 +170763166196,214,0 +170763166244,214,0 +170763166292,214,0 +170763166339,214,0 +170763166387,215,0 +170763166435,215,0 +170763166483,215,0 +170763166531,215,0 +170763166579,215,0 +170763166627,216,0 +170763166675,216,0 +170763166724,216,0 +170763166772,217,0 +170763166820,217,0 +170763166869,217,0 +170763166917,217,0 +170763166965,217,0 +170763167013,215,0 +170763167061,214,0 +170763167108,214,0 +170763167156,215,0 +170763167204,214,0 +170763167252,215,0 +170763167300,215,0 +170763167349,215,0 +170763167397,215,0 +170763167445,216,0 +170763167493,216,0 +170763167541,217,0 +170763167588,217,0 +170763167636,218,0 +170763167684,217,0 +170763167732,217,0 +170763167780,217,0 +170763167828,218,0 +170763167876,217,0 +170763167923,215,0 +170763167971,215,0 +170763168019,215,0 +170763168067,215,0 +170763168115,215,0 +170763168163,216,0 +170763168212,215,0 +170763168260,216,0 +170763168308,216,0 +170763168356,216,0 +170763168403,217,0 +170763168451,216,0 +170763168501,217,0 +170763168549,217,0 +170763168597,217,0 +170763168645,217,0 +170763168693,217,0 +170763168741,217,0 +170763168789,217,0 +170763168837,216,0 +170763168884,214,0 +170763168932,214,0 +170763168980,215,0 +170763169028,215,0 +170763169076,216,0 +170763169126,215,0 +170763169174,216,0 +170763169223,216,0 +170763169271,216,0 +170763169321,217,0 +170763169369,216,0 +170763169417,217,0 +170763169466,217,0 +170763169516,217,0 +170763169564,217,0 +170763169613,217,0 +170763169662,218,0 +170763169710,217,0 +170763169759,215,0 +170763169807,215,0 +170763169855,215,0 +170763169903,215,0 +170763169951,216,0 +170763169999,216,0 +170763170047,216,0 +170763170096,216,0 +170763170144,217,0 +170763170192,217,0 +170763170239,217,0 +170763170287,218,0 +170763170335,218,0 +170763170383,218,0 +170763170431,218,0 +170763170480,218,0 +170763170528,217,0 +170763170576,218,0 +170763170625,217,0 +170763170673,215,0 +170763170721,215,0 +170763170769,215,0 +170763170818,215,0 +170763170866,215,0 +170763170915,215,0 +170763170963,216,0 +170763171013,216,0 +170763171061,216,0 +170763171109,217,0 +170763171156,217,0 +170763171204,217,0 +170763171252,217,0 +170763171300,218,0 +170763171350,218,0 +170763171398,217,0 +170763171446,218,0 +170763171493,217,0 +170763171541,217,0 +170763171589,215,0 +170763171637,214,0 +170763171687,214,0 +170763171734,215,0 +170763171782,215,0 +170763171832,215,0 +170763171880,215,0 +170763171928,216,0 +170763171975,216,0 +170763172023,216,0 +170763172073,216,0 +170763172121,217,0 +170763172169,217,0 +170763172217,217,0 +170763172264,218,0 +170763172312,217,0 +170763172360,218,0 +170763172408,218,0 +170763172456,217,0 +170763172504,215,0 +170763172552,214,0 +170763172600,214,0 +170763172649,214,0 +170763172699,215,0 +170763172747,215,0 +170763172794,215,0 +170763172842,215,0 +170763172890,216,0 +170763172940,216,0 +170763172988,217,0 +170763173036,217,0 +170763173084,217,0 +170763173133,217,0 +170763173181,217,0 +170763173229,217,0 +170763173277,217,0 +170763173324,217,0 +170763173372,217,0 +170763173420,215,0 +170763173469,214,0 +170763173517,214,0 +170763173565,215,0 +170763173615,214,0 +170763173663,215,0 +170763173711,215,0 +170763173759,215,0 +170763173806,215,0 +170763173854,216,0 +170763173902,216,0 +170763173952,216,0 +170763174000,217,0 +170763174049,217,0 +170763174097,217,0 +170763174147,217,0 +170763174194,217,0 +170763174244,217,0 +170763174293,216,0 +170763174343,214,0 +170763174391,214,0 +170763174439,214,0 +170763174487,214,0 +170763174536,214,0 +170763174586,215,0 +170763174635,215,0 +170763174683,215,0 +170763174733,216,0 +170763174782,216,0 +170763174830,216,0 +170763174879,216,0 +170763174927,217,0 +170763174975,217,0 +170763175023,217,0 +170763175071,217,0 +170763175119,217,0 +170763175168,217,0 +170763175216,215,0 +170763175264,214,0 +170763175312,214,0 +170763175360,214,0 +170763175408,214,0 +170763175455,214,0 +170763175503,215,0 +170763175551,214,0 +170763175600,215,0 +170763175648,215,0 +170763175696,215,0 +170763175744,216,0 +170763175793,217,0 +170763175841,216,0 +170763175891,216,0 +170763175938,218,0 +170763175986,217,0 +170763176036,217,0 +170763176084,217,0 +170763176133,214,0 +170763176181,214,0 +170763176229,214,0 +170763176276,214,0 +170763176324,214,0 +170763176372,215,0 +170763176421,214,0 +170763176469,214,0 +170763176517,215,0 +170763176565,215,0 +170763176613,215,0 +170763176662,216,0 +170763176710,216,0 +170763176758,216,0 +170763176806,217,0 +170763176853,217,0 +170763176901,217,0 +170763176949,217,0 +170763176997,217,0 +170763177046,214,0 +170763177094,214,0 +170763177144,214,0 +170763177191,214,0 +170763177239,214,0 +170763177287,214,0 +170763177335,215,0 +170763177383,215,0 +170763177430,215,0 +170763177478,215,0 +170763177527,216,0 +170763177575,216,0 +170763177623,216,0 +170763177671,216,0 +170763177719,217,0 +170763177767,217,0 +170763177815,217,0 +170763177862,217,0 +170763177912,217,0 +170763177960,214,0 +170763178007,214,0 +170763178057,214,0 +170763178106,214,0 +170763178154,214,0 +170763178202,215,0 +170763178250,215,0 +170763178297,215,0 +170763178345,215,0 +170763178393,216,0 +170763178441,216,0 +170763178490,216,0 +170763178538,217,0 +170763178586,217,0 +170763178635,217,0 +170763178683,217,0 +170763178731,217,0 +170763178779,217,0 +170763178826,217,0 +170763178876,215,0 +170763178924,215,0 +170763178972,215,0 +170763179019,215,0 +170763179067,215,0 +170763179115,215,0 +170763179163,216,0 +170763179211,216,0 +170763179260,216,0 +170763179308,217,0 +170763179357,217,0 +170763179405,217,0 +170763179453,217,0 +170763179501,217,0 +170763179549,217,0 +170763179596,217,0 +170763179644,217,0 +170763179692,217,0 +170763179740,217,0 +170763179788,215,0 +170763179836,215,0 +170763179883,215,0 +170763179931,215,0 +170763179979,215,0 +170763180027,215,0 +170763180076,216,0 +170763180126,216,0 +170763180175,217,0 +170763180223,216,0 +170763180271,217,0 +170763180318,217,0 +170763180366,217,0 +170763180414,217,0 +170763180463,217,0 +170763180511,218,0 +170763180559,217,0 +170763180607,217,0 +170763180656,217,0 +170763180704,215,0 +170763180752,215,0 +170763180800,215,0 +170763180848,215,0 +170763180896,215,0 +170763180943,216,0 +170763180991,216,0 +170763181039,216,0 +170763181087,217,0 +170763181135,218,0 +170763181182,217,0 +170763181230,217,0 +170763181278,217,0 +170763181328,218,0 +170763181376,217,0 +170763181423,218,0 +170763181471,218,0 +170763181521,217,0 +170763181569,217,0 +170763181618,214,0 +170763181666,214,0 +170763181716,214,0 +170763181765,215,0 +170763181813,215,0 +170763181861,215,0 +170763181909,215,0 +170763181958,216,0 +170763182006,216,0 +170763182056,216,0 +170763182105,217,0 +170763182153,217,0 +170763182201,217,0 +170763182249,217,0 +170763182297,217,0 +170763182347,217,0 +170763182396,217,0 +170763182444,217,0 +170763182492,217,0 +170763182540,214,0 +170763182588,214,0 +170763182636,214,0 +170763182685,214,0 +170763182733,214,0 +170763182781,215,0 +170763182829,215,0 +170763182877,215,0 +170763182925,215,0 +170763182973,216,0 +170763183021,216,0 +170763183070,216,0 +170763183118,216,0 +170763183166,217,0 +170763183214,217,0 +170763183262,217,0 +170763183310,217,0 +170763183358,217,0 +170763183406,217,0 +170763183454,214,0 +170763183502,214,0 +170763183550,214,0 +170763183598,214,0 +170763183646,215,0 +170763183695,215,0 +170763183743,215,0 +170763183793,215,0 +170763183841,216,0 +170763183890,216,0 +170763183938,216,0 +170763183986,216,0 +170763184036,216,0 +170763184083,217,0 +170763184133,217,0 +170763184183,217,0 +170763184232,218,0 +170763184280,217,0 +170763184329,216,0 +170763184377,214,0 +170763184425,214,0 +170763184475,215,0 +170763184523,215,0 +170763184570,215,0 +170763184618,215,0 +170763184666,216,0 +170763184714,216,0 +170763184762,216,0 +170763184812,216,0 +170763184860,217,0 +170763184907,217,0 +170763184955,217,0 +170763185003,217,0 +170763185051,218,0 +170763185101,217,0 +170763185149,217,0 +170763185198,217,0 +170763185248,216,0 +170763185297,215,0 +170763185347,215,0 +170763185396,215,0 +170763185444,215,0 +170763185492,216,0 +170763185540,216,0 +170763185588,216,0 +170763185636,217,0 +170763185685,217,0 +170763185735,217,0 +170763185783,217,0 +170763185831,218,0 +170763185880,218,0 +170763185928,218,0 +170763185976,218,0 +170763186024,217,0 +170763186072,217,0 +170763186121,217,0 +170763186169,215,0 +170763186217,215,0 +170763186265,215,0 +170763186314,215,0 +170763186362,216,0 +170763186410,216,0 +170763186458,216,0 +170763186506,217,0 +170763186555,217,0 +170763186603,217,0 +170763186653,217,0 +170763186702,217,0 +170763186752,216,0 +170763186801,217,0 +170763186850,217,0 +170763186900,218,0 +170763186950,217,0 +170763186997,218,0 +170763187047,217,0 +170763187095,214,0 +170763187143,215,0 +170763187191,215,0 +170763187238,215,0 +170763187286,215,0 +170763187334,215,0 +170763187382,216,0 +170763187432,216,0 +170763187481,216,0 +170763187531,217,0 +170763187579,217,0 +170763187627,217,0 +170763187675,217,0 +170763187724,217,0 +170763187772,218,0 +170763187820,218,0 +170763187868,218,0 +170763187916,215,0 +170763187964,217,0 +170763188013,214,0 +170763188061,214,0 +170763188109,214,0 +170763188157,214,0 +170763188205,214,0 +170763188253,215,0 +170763188301,215,0 +170763188349,215,0 +170763188397,216,0 +170763188445,216,0 +170763188492,216,0 +170763188540,217,0 +170763188588,217,0 +170763188636,217,0 +170763188684,217,0 +170763188732,217,0 +170763188781,217,0 +170763188829,217,0 +170763188877,217,0 +170763188927,214,0 +170763188976,214,0 +170763189024,214,0 +170763189072,214,0 +170763189122,215,0 +170763189171,215,0 +170763189219,215,0 +170763189269,215,0 +170763189316,216,0 +170763189366,216,0 +170763189415,216,0 +170763189463,217,0 +170763189511,217,0 +170763189561,217,0 +170763189610,217,0 +170763189658,217,0 +170763189706,217,0 +170763189754,217,0 +170763189802,215,0 +170763189850,214,0 +170763189898,214,0 +170763189946,214,0 +170763189994,214,0 +170763190043,215,0 +170763190091,215,0 +170763190139,215,0 +170763190187,216,0 +170763190235,216,0 +170763190283,216,0 +170763190332,216,0 +170763190382,217,0 +170763190431,217,0 +170763190479,217,0 +170763190529,217,0 +170763190577,217,0 +170763190625,217,0 +170763190673,217,0 +170763190722,214,0 +170763190770,214,0 +170763190818,214,0 +170763190866,215,0 +170763190915,215,0 +170763190963,215,0 +170763191011,215,0 +170763191059,215,0 +170763191107,216,0 +170763191155,216,0 +170763191205,216,0 +170763191253,216,0 +170763191301,217,0 +170763191350,218,0 +170763191400,217,0 +170763191447,217,0 +170763191495,218,0 +170763191543,217,0 +170763191591,218,0 +170763191639,215,0 +170763191686,214,0 +170763191734,214,0 +170763191782,214,0 +170763191830,215,0 +170763191878,215,0 +170763191926,216,0 +170763191973,216,0 +170763192021,216,0 +170763192069,216,0 +170763192117,217,0 +170763192166,216,0 +170763192214,217,0 +170763192262,217,0 +170763192310,217,0 +170763192358,217,0 +170763192406,217,0 +170763192456,217,0 +170763192503,217,0 +170763192551,214,0 +170763192601,214,0 +170763192649,214,0 +170763192698,215,0 +170763192746,215,0 +170763192796,215,0 +170763192844,216,0 +170763192892,216,0 +170763192939,216,0 +170763192987,216,0 +170763193037,216,0 +170763193086,217,0 +170763193134,217,0 +170763193182,218,0 +170763193232,217,0 +170763193280,217,0 +170763193328,217,0 +170763193376,217,0 +170763193425,217,0 +170763193473,214,0 +170763193521,215,0 +170763193569,214,0 +170763193618,215,0 +170763193666,215,0 +170763193714,215,0 +170763193762,215,0 +170763193812,216,0 +170763193859,216,0 +170763193907,216,0 +170763193955,216,0 +170763194003,216,0 +170763194053,217,0 +170763194102,217,0 +170763194150,217,0 +170763194198,217,0 +170763194246,217,0 +170763194294,217,0 +170763194342,216,0 +170763194391,214,0 +170763194439,214,0 +170763194487,214,0 +170763194534,214,0 +170763194582,215,0 +170763194630,215,0 +170763194679,215,0 +170763194727,215,0 +170763194777,215,0 +170763194826,216,0 +170763194874,216,0 +170763194922,216,0 +170763194971,216,0 +170763195019,217,0 +170763195067,217,0 +170763195117,217,0 +170763195164,217,0 +170763195212,217,0 +170763195260,217,0 +170763195308,214,0 +170763195356,214,0 +170763195404,214,0 +170763195453,214,0 +170763195501,214,0 +170763195549,215,0 +170763195597,215,0 +170763195646,215,0 +170763195694,215,0 +170763195742,215,0 +170763195790,215,0 +170763195838,216,0 +170763195886,216,0 +170763195934,217,0 +170763195983,217,0 +170763196033,217,0 +170763196081,217,0 +170763196129,217,0 +170763196176,214,0 +170763196224,214,0 +170763196272,214,0 +170763196320,214,0 +170763196368,214,0 +170763196418,214,0 +170763196466,215,0 +170763196515,215,0 +170763196563,215,0 +170763196613,216,0 +170763196661,216,0 +170763196708,216,0 +170763196756,217,0 +170763196804,216,0 +170763196852,217,0 +170763196900,217,0 +170763196949,217,0 +170763196997,217,0 +170763197047,217,0 +170763197096,214,0 +170763197144,214,0 +170763197192,214,0 +170763197240,214,0 +170763197288,214,0 +170763197336,215,0 +170763197384,215,0 +170763197433,215,0 +170763197481,215,0 +170763197531,216,0 +170763197579,216,0 +170763197626,216,0 +170763197674,216,0 +170763197724,216,0 +170763197772,217,0 +170763197821,217,0 +170763197869,217,0 +170763197918,217,0 +170763197968,217,0 +170763198016,215,0 +170763198064,214,0 +170763198113,214,0 +170763198163,214,0 +170763198212,214,0 +170763198260,214,0 +170763198308,214,0 +170763198358,214,0 +170763198407,215,0 +170763198455,215,0 +170763198503,216,0 +170763198552,216,0 +170763198600,216,0 +170763198650,217,0 +170763198698,217,0 +170763198747,217,0 +170763198797,217,0 +170763198845,217,0 +170763198894,217,0 +170763198942,214,0 +170763198990,214,0 +170763199038,214,0 +170763199086,214,0 +170763199134,214,0 +170763199182,215,0 +170763199231,215,0 +170763199280,215,0 +170763199328,215,0 +170763199376,215,0 +170763199426,216,0 +170763199474,216,0 +170763199523,216,0 +170763199571,217,0 +170763199621,217,0 +170763199670,217,0 +170763199719,217,0 +170763199769,217,0 +170763199819,215,0 +170763199868,214,0 +170763199918,214,0 +170763199967,214,0 +170763200016,215,0 +170763200066,214,0 +170763200114,215,0 +170763200163,215,0 +170763200213,215,0 +170763200261,216,0 +170763200309,216,0 +170763200357,216,0 +170763200406,217,0 +170763200456,216,0 +170763200505,217,0 +170763200553,217,0 +170763200603,217,0 +170763200651,217,0 +170763200700,217,0 +170763200748,214,0 +170763200796,214,0 +170763200845,214,0 +170763200895,214,0 +170763200943,214,0 +170763200991,215,0 +170763201040,215,0 +170763201088,215,0 +170763201136,215,0 +170763201184,216,0 +170763201232,216,0 +170763201281,216,0 +170763201329,216,0 +170763201377,216,0 +170763201425,217,0 +170763201473,217,0 +170763201521,217,0 +170763201569,217,0 +170763201617,217,0 +170763201665,215,0 +170763201714,214,0 +170763201762,214,0 +170763201810,215,0 +170763201858,215,0 +170763201906,215,0 +170763201954,215,0 +170763202002,215,0 +170763202051,216,0 +170763202101,216,0 +170763202149,216,0 +170763202198,217,0 +170763202246,217,0 +170763202294,216,0 +170763202344,217,0 +170763202393,217,0 +170763202441,217,0 +170763202489,217,0 +170763202538,217,0 +170763202586,215,0 +170763202634,215,0 +170763202682,215,0 +170763202732,215,0 +170763202780,215,0 +170763202829,215,0 +170763202878,215,0 +170763202928,216,0 +170763202976,216,0 +170763203024,216,0 +170763203071,217,0 +170763203119,217,0 +170763203167,217,0 +170763203215,217,0 +170763203264,217,0 +170763203312,217,0 +170763203360,217,0 +170763203408,217,0 +170763203455,217,0 +170763203503,215,0 +170763203551,215,0 +170763203599,215,0 +170763203647,215,0 +170763203695,216,0 +170763203743,216,0 +170763203793,216,0 +170763203841,216,0 +170763203888,216,0 +170763203936,217,0 +170763203984,217,0 +170763204032,218,0 +170763204080,217,0 +170763204128,218,0 +170763204177,217,0 +170763204227,218,0 +170763204275,217,0 +170763204322,217,0 +170763204372,218,0 +170763204420,214,0 +170763204468,214,0 +170763204517,214,0 +170763204567,215,0 +170763204615,215,0 +170763204664,215,0 +170763204712,216,0 +170763204760,216,0 +170763204808,216,0 +170763204856,216,0 +170763204905,217,0 +170763204953,217,0 +170763205001,217,0 +170763205049,217,0 +170763205097,217,0 +170763205144,217,0 +170763205194,217,0 +170763205243,217,0 +170763205291,217,0 +170763205339,214,0 +170763205387,214,0 +170763205435,214,0 +170763205483,215,0 +170763205532,215,0 +170763205582,215,0 +170763205630,215,0 +170763205678,215,0 +170763205725,216,0 +170763205773,216,0 +170763205821,217,0 +170763205869,217,0 +170763205917,217,0 +170763205965,217,0 +170763206013,217,0 +170763206061,217,0 +170763206108,217,0 +170763206156,217,0 +170763206204,216,0 +170763206252,214,0 +170763206300,214,0 +170763206348,214,0 +170763206396,215,0 +170763206445,215,0 +170763206495,215,0 +170763206544,216,0 +170763206592,216,0 +170763206640,216,0 +170763206688,216,0 +170763206736,216,0 +170763206784,217,0 +170763206831,216,0 +170763206881,217,0 +170763206929,217,0 +170763206977,217,0 +170763207024,217,0 +170763207072,217,0 +170763207120,215,0 +170763207168,214,0 +170763207216,214,0 +170763207263,215,0 +170763207313,215,0 +170763207362,215,0 +170763207412,216,0 +170763207460,215,0 +170763207509,216,0 +170763207557,216,0 +170763207605,216,0 +170763207653,217,0 +170763207701,216,0 +170763207748,217,0 +170763207796,217,0 +170763207846,217,0 +170763207894,217,0 +170763207942,217,0 +170763207991,217,0 +170763208039,215,0 +170763208089,214,0 +170763208136,214,0 +170763208186,214,0 +170763208234,215,0 +170763208283,215,0 +170763208331,215,0 +170763208379,215,0 +170763208427,215,0 +170763208475,215,0 +170763208525,216,0 +170763208574,217,0 +170763208622,216,0 +170763208670,216,0 +170763208718,216,0 +170763208767,217,0 +170763208815,217,0 +170763208863,217,0 +170763208913,217,0 +170763208962,214,0 +170763209010,214,0 +170763209058,214,0 +170763209106,214,0 +170763209154,215,0 +170763209202,215,0 +170763209251,215,0 +170763209299,215,0 +170763209347,215,0 +170763209395,215,0 +170763209443,216,0 +170763209491,216,0 +170763209539,216,0 +170763209588,216,0 +170763209636,216,0 +170763209686,216,0 +170763209734,216,0 +170763209783,217,0 +170763209833,217,0 +170763209880,214,0 +170763209928,214,0 +170763209976,214,0 +170763210024,214,0 +170763210073,215,0 +170763210123,215,0 +170763210171,215,0 +170763210220,215,0 +170763210270,215,0 +170763210319,216,0 +170763210369,216,0 +170763210417,216,0 +170763210465,216,0 +170763210514,217,0 +170763210564,217,0 +170763210613,217,0 +170763210661,217,0 +170763210709,217,0 +170763210757,217,0 +170763210805,214,0 +170763210854,214,0 +170763210904,214,0 +170763210951,215,0 +170763210999,215,0 +170763211047,215,0 +170763211095,215,0 +170763211145,215,0 +170763211193,215,0 +170763211242,215,0 +170763211290,216,0 +170763211339,216,0 +170763211387,216,0 +170763211435,216,0 +170763211483,217,0 +170763211531,217,0 +170763211579,217,0 +170763211627,217,0 +170763211676,216,0 +170763211724,214,0 +170763211774,214,0 +170763211822,215,0 +170763211871,215,0 +170763211919,215,0 +170763211967,215,0 +170763212017,215,0 +170763212065,215,0 +170763212113,216,0 +170763212161,216,0 +170763212208,216,0 +170763212256,217,0 +170763212304,217,0 +170763212354,217,0 +170763212403,217,0 +170763212451,217,0 +170763212501,217,0 +170763212548,217,0 +170763212596,215,0 +170763212644,215,0 +170763212692,215,0 +170763212740,215,0 +170763212788,216,0 +170763212836,215,0 +170763212884,216,0 +170763212931,217,0 +170763212979,216,0 +170763213029,217,0 +170763213076,217,0 +170763213124,217,0 +170763213172,217,0 +170763213220,217,0 +170763213268,218,0 +170763213316,217,0 +170763213364,217,0 +170763213411,217,0 +170763213459,217,0 +170763213507,215,0 +170763213555,215,0 +170763213603,215,0 +170763213651,215,0 +170763213698,215,0 +170763213746,215,0 +170763213794,216,0 +170763213842,216,0 +170763213890,216,0 +170763213938,216,0 +170763213985,217,0 +170763214035,217,0 +170763214083,217,0 +170763214131,217,0 +170763214180,217,0 +170763214228,217,0 +170763214278,217,0 +170763214326,217,0 +170763214374,217,0 +170763214421,215,0 +170763214469,215,0 +170763214517,215,0 +170763214565,215,0 +170763214615,215,0 +170763214663,216,0 +170763214712,216,0 +170763214760,216,0 +170763214808,216,0 +170763214856,217,0 +170763214904,217,0 +170763214952,217,0 +170763215000,217,0 +170763215048,217,0 +170763215096,217,0 +170763215144,217,0 +170763215192,217,0 +170763215241,217,0 +170763215291,217,0 +170763215340,214,0 +170763215388,214,0 +170763215436,214,0 +170763215484,214,0 +170763215534,215,0 +170763215583,215,0 +170763215633,216,0 +170763215681,216,0 +170763215730,216,0 +170763215778,216,0 +170763215826,216,0 +170763215875,217,0 +170763215923,218,0 +170763215973,217,0 +170763216021,217,0 +170763216070,217,0 +170763216118,217,0 +170763216168,217,0 +170763216217,217,0 +170763216265,214,0 +170763216315,214,0 +170763216363,214,0 +170763216412,214,0 +170763216462,215,0 +170763216510,215,0 +170763216558,215,0 +170763216607,215,0 +170763216657,215,0 +170763216706,216,0 +170763216754,216,0 +170763216803,216,0 +170763216851,216,0 +170763216899,217,0 +170763216947,217,0 +170763216995,217,0 +170763217043,217,0 +170763217093,217,0 +170763217142,217,0 +170763217190,214,0 +170763217240,214,0 +170763217288,214,0 +170763217337,215,0 +170763217386,215,0 +170763217434,215,0 +170763217482,215,0 +170763217530,215,0 +170763217578,216,0 +170763217626,216,0 +170763217675,216,0 +170763217723,216,0 +170763217771,217,0 +170763217819,217,0 +170763217868,217,0 +170763217916,217,0 +170763217966,217,0 +170763218015,217,0 +170763218063,215,0 +170763218111,214,0 +170763218159,214,0 +170763218208,214,0 +170763218256,214,0 +170763218304,215,0 +170763218352,215,0 +170763218400,215,0 +170763218450,215,0 +170763218497,216,0 +170763218545,216,0 +170763218595,216,0 +170763218643,216,0 +170763218691,216,0 +170763218740,217,0 +170763218788,217,0 +170763218836,217,0 +170763218886,217,0 +170763218934,217,0 +170763218983,215,0 +170763219032,214,0 +170763219080,214,0 +170763219128,215,0 +170763219176,215,0 +170763219226,215,0 +170763219274,215,0 +170763219322,216,0 +170763219369,216,0 +170763219419,216,0 +170763219467,216,0 +170763219514,217,0 +170763219562,217,0 +170763219610,217,0 +170763219658,217,0 +170763219708,217,0 +170763219757,217,0 +170763219805,217,0 +170763219853,217,0 +170763219901,214,0 +170763219951,214,0 +170763219999,214,0 +170763220047,214,0 +170763220094,214,0 +170763220142,215,0 +170763220190,215,0 +170763220238,215,0 +170763220288,215,0 +170763220336,216,0 +170763220384,216,0 +170763220433,217,0 +170763220481,217,0 +170763220529,217,0 +170763220577,217,0 +170763220625,217,0 +170763220674,217,0 +170763220722,217,0 +170763220770,217,0 +170763220820,214,0 +170763220868,214,0 +170763220916,214,0 +170763220964,214,0 +170763221011,215,0 +170763221061,215,0 +170763221109,215,0 +170763221157,215,0 +170763221206,216,0 +170763221254,216,0 +170763221302,216,0 +170763221350,216,0 +170763221400,216,0 +170763221448,217,0 +170763221495,217,0 +170763221543,217,0 +170763221592,217,0 +170763221640,219,0 +170763221689,216,0 +170763221737,214,0 +170763221787,214,0 +170763221836,214,0 +170763221884,214,0 +170763221932,214,0 +170763221981,215,0 +170763222029,215,0 +170763222077,215,0 +170763222127,216,0 +170763222175,216,0 +170763222223,216,0 +170763222271,216,0 +170763222319,216,0 +170763222367,217,0 +170763222416,216,0 +170763222464,217,0 +170763222512,217,0 +170763222561,217,0 +170763222609,216,0 +170763222657,214,0 +170763222705,214,0 +170763222753,214,0 +170763222803,214,0 +170763222851,215,0 +170763222899,214,0 +170763222947,215,0 +170763222996,215,0 +170763223044,216,0 +170763223092,216,0 +170763223140,216,0 +170763223188,216,0 +170763223236,217,0 +170763223284,217,0 +170763223332,217,0 +170763223380,217,0 +170763223429,217,0 +170763223477,217,0 +170763223525,215,0 +170763223573,214,0 +170763223622,214,0 +170763223670,215,0 +170763223718,215,0 +170763223766,215,0 +170763223816,215,0 +170763223864,215,0 +170763223912,215,0 +170763223960,216,0 +170763224008,216,0 +170763224056,216,0 +170763224103,217,0 +170763224151,216,0 +170763224199,217,0 +170763224247,217,0 +170763224297,217,0 +170763224345,217,0 +170763224393,217,0 +170763224441,215,0 +170763224489,214,0 +170763224536,215,0 +170763224586,215,0 +170763224634,215,0 +170763224683,215,0 +170763224731,215,0 +170763224779,215,0 +170763224827,215,0 +170763224875,216,0 +170763224923,216,0 +170763224971,216,0 +170763225019,216,0 +170763225068,217,0 +170763225116,217,0 +170763225164,217,0 +170763225212,217,0 +170763225260,217,0 +170763225308,216,0 +170763225356,214,0 +170763225404,214,0 +170763225452,215,0 +170763225500,214,0 +170763225549,215,0 +170763225597,215,0 +170763225646,215,0 +170763225694,215,0 +170763225742,215,0 +170763225790,216,0 +170763225838,217,0 +170763225888,217,0 +170763225936,217,0 +170763225985,217,0 +170763226033,217,0 +170763226082,217,0 +170763226130,217,0 +170763226178,217,0 +170763226226,215,0 +170763226274,214,0 +170763226322,215,0 +170763226370,215,0 +170763226419,215,0 +170763226469,215,0 +170763226517,216,0 +170763226566,216,0 +170763226615,216,0 +170763226663,217,0 +170763226712,217,0 +170763226760,217,0 +170763226808,217,0 +170763226856,217,0 +170763226906,217,0 +170763226954,217,0 +170763227001,217,0 +170763227049,217,0 +170763227097,217,0 +170763227145,215,0 +170763227193,214,0 +170763227241,214,0 +170763227289,215,0 +170763227339,215,0 +170763227387,215,0 +170763227434,215,0 +170763227482,215,0 +170763227530,216,0 +170763227580,216,0 +170763227628,216,0 +170763227677,216,0 +170763227725,217,0 +170763227773,216,0 +170763227821,217,0 +170763227869,217,0 +170763227919,216,0 +170763227967,217,0 +170763228016,217,0 +170763228064,214,0 +170763228112,214,0 +170763228161,214,0 +170763228209,214,0 +170763228257,215,0 +170763228307,215,0 +170763228355,215,0 +170763228404,215,0 +170763228452,214,0 +170763228500,215,0 +170763228548,216,0 +170763228596,216,0 +170763228644,217,0 +170763228692,217,0 +170763228740,217,0 +170763228790,217,0 +170763228839,217,0 +170763228887,217,0 +170763228935,214,0 +170763228984,214,0 +170763229032,214,0 +170763229080,214,0 +170763229128,214,0 +170763229176,214,0 +170763229226,215,0 +170763229275,215,0 +170763229323,215,0 +170763229371,216,0 +170763229420,216,0 +170763229468,216,0 +170763229516,216,0 +170763229564,217,0 +170763229614,217,0 +170763229662,217,0 +170763229711,217,0 +170763229759,217,0 +170763229807,217,0 +170763229855,214,0 +170763229904,213,0 +170763229954,214,0 +170763230002,214,0 +170763230051,214,0 +170763230101,215,0 +170763230149,214,0 +170763230197,215,0 +170763230245,215,0 +170763230294,216,0 +170763230342,216,0 +170763230390,216,0 +170763230438,216,0 +170763230486,216,0 +170763230534,217,0 +170763230583,217,0 +170763230633,217,0 +170763230682,217,0 +170763230730,216,0 +170763230778,214,0 +170763230826,214,0 +170763230874,214,0 +170763230922,214,0 +170763230970,215,0 +170763231018,215,0 +170763231065,215,0 +170763231113,215,0 +170763231161,216,0 +170763231211,216,0 +170763231260,216,0 +170763231308,217,0 +170763231356,216,0 +170763231404,217,0 +170763231452,217,0 +170763231500,217,0 +170763231549,217,0 +170763231597,217,0 +170763231647,214,0 +170763231696,214,0 +170763231744,214,0 +170763231792,215,0 +170763231840,215,0 +170763231890,215,0 +170763231939,215,0 +170763231987,216,0 +170763232035,216,0 +170763232084,216,0 +170763232134,216,0 +170763232182,216,0 +170763232230,217,0 +170763232278,217,0 +170763232327,217,0 +170763232375,217,0 +170763232423,217,0 +170763232473,217,0 +170763232521,217,0 +170763232569,214,0 +170763232618,214,0 +170763232666,214,0 +170763232716,215,0 +170763232764,215,0 +170763232811,216,0 +170763232859,215,0 +170763232907,215,0 +170763232955,216,0 +170763233005,216,0 +170763233054,216,0 +170763233102,216,0 +170763233150,217,0 +170763233198,217,0 +170763233246,217,0 +170763233295,217,0 +170763233345,217,0 +170763233393,217,0 +170763233441,216,0 +170763233490,214,0 +170763233540,215,0 +170763233588,215,0 +170763233636,215,0 +170763233684,215,0 +170763233732,215,0 +170763233780,215,0 +170763233828,215,0 +170763233875,215,0 +170763233925,215,0 +170763233975,216,0 +170763234024,216,0 +170763234072,217,0 +170763234121,217,0 +170763234169,217,0 +170763234217,217,0 +170763234265,217,0 +170763234313,217,0 +170763234363,214,0 +170763234412,214,0 +170763234462,215,0 +170763234511,216,0 +170763234559,215,0 +170763234609,215,0 +170763234658,215,0 +170763234706,216,0 +170763234754,216,0 +170763234802,216,0 +170763234852,216,0 +170763234900,216,0 +170763234949,216,0 +170763234999,217,0 +170763235047,217,0 +170763235094,217,0 +170763235142,217,0 +170763235192,217,0 +170763235240,215,0 +170763235288,215,0 +170763235336,215,0 +170763235385,215,0 +170763235435,215,0 +170763235485,215,0 +170763235533,215,0 +170763235582,216,0 +170763235630,216,0 +170763235680,216,0 +170763235727,216,0 +170763235775,216,0 +170763235825,216,0 +170763235873,217,0 +170763235921,217,0 +170763235969,217,0 +170763236017,217,0 +170763236066,217,0 +170763236114,217,0 +170763236162,215,0 +170763236212,215,0 +170763236260,215,0 +170763236309,216,0 +170763236357,216,0 +170763236407,216,0 +170763236454,216,0 +170763236502,216,0 +170763236550,216,0 +170763236598,217,0 +170763236648,217,0 +170763236697,217,0 +170763236745,217,0 +170763236795,217,0 +170763236842,217,0 +170763236892,217,0 +170763236940,217,0 +170763236988,217,0 +170763237036,217,0 +170763237085,216,0 +170763237133,215,0 +170763237181,216,0 +170763237229,216,0 +170763237278,216,0 +170763237326,217,0 +170763237376,217,0 +170763237424,217,0 +170763237473,217,0 +170763237523,218,0 +170763237572,217,0 +170763237622,218,0 +170763237671,218,0 +170763237721,218,0 +170763237770,217,0 +170763237818,218,0 +170763237866,217,0 +170763237916,217,0 +170763237964,215,0 +170763238012,215,0 +170763238060,215,0 +170763238109,216,0 +170763238159,216,0 +170763238207,216,0 +170763238255,216,0 +170763238304,217,0 +170763238352,217,0 +170763238400,217,0 +170763238448,218,0 +170763238497,217,0 +170763238547,218,0 +170763238595,217,0 +170763238643,217,0 +170763238692,217,0 +170763238740,217,0 +170763238790,217,0 +170763238838,216,0 +170763238887,215,0 +170763238937,215,0 +170763238985,215,0 +170763239033,215,0 +170763239081,215,0 +170763239129,216,0 +170763239178,216,0 +170763239228,216,0 +170763239276,216,0 +170763239323,216,0 +170763239373,217,0 +170763239423,217,0 +170763239472,217,0 +170763239522,217,0 +170763239571,217,0 +170763239621,217,0 +170763239668,217,0 +170763239716,217,0 +170763239766,215,0 +170763239814,214,0 +170763239863,214,0 +170763239911,215,0 +170763239959,214,0 +170763240007,215,0 +170763240054,215,0 +170763240102,215,0 +170763240150,216,0 +170763240198,216,0 +170763240246,216,0 +170763240295,216,0 +170763240343,216,0 +170763240391,217,0 +170763240439,217,0 +170763240486,217,0 +170763240536,217,0 +170763240584,217,0 +170763240631,217,0 +170763240681,214,0 +170763240729,214,0 +170763240776,214,0 +170763240826,215,0 +170763240874,215,0 +170763240922,215,0 +170763240970,215,0 +170763241019,215,0 +170763241067,216,0 +170763241115,216,0 +170763241164,216,0 +170763241212,216,0 +170763241260,216,0 +170763241308,217,0 +170763241358,217,0 +170763241406,217,0 +170763241453,217,0 +170763241503,217,0 +170763241552,214,0 +170763241602,214,0 +170763241651,214,0 +170763241699,215,0 +170763241747,215,0 +170763241795,215,0 +170763241843,215,0 +170763241891,215,0 +170763241939,215,0 +170763241987,216,0 +170763242035,216,0 +170763242084,217,0 +170763242132,216,0 +170763242180,217,0 +170763242228,217,0 +170763242276,217,0 +170763242325,217,0 +170763242373,217,0 +170763242421,217,0 +170763242469,215,0 +170763242519,214,0 +170763242566,214,0 +170763242616,214,0 +170763242665,214,0 +170763242713,215,0 +170763242761,215,0 +170763242809,215,0 +170763242859,216,0 +170763242907,216,0 +170763242956,216,0 +170763243006,216,0 +170763243054,217,0 +170763243102,217,0 +170763243149,217,0 +170763243199,217,0 +170763243247,217,0 +170763243296,217,0 +170763243344,217,0 +170763243392,214,0 +170763243440,214,0 +170763243488,214,0 +170763243536,215,0 +170763243584,215,0 +170763243633,215,0 +170763243681,215,0 +170763243729,216,0 +170763243777,216,0 +170763243825,216,0 +170763243873,216,0 +170763243922,216,0 +170763243972,217,0 +170763244020,217,0 +170763244068,217,0 +170763244116,217,0 +170763244165,217,0 +170763244213,217,0 +170763244262,214,0 +170763244310,214,0 +170763244358,214,0 +170763244406,214,0 +170763244454,214,0 +170763244502,215,0 +170763244552,215,0 +170763244601,215,0 +170763244649,215,0 +170763244697,215,0 +170763244746,216,0 +170763244796,216,0 +170763244844,216,0 +170763244892,216,0 +170763244941,217,0 +170763244989,217,0 +170763245037,217,0 +170763245087,217,0 +170763245134,217,0 +170763245182,214,0 +170763245230,214,0 +170763245278,214,0 +170763245326,215,0 +170763245376,215,0 +170763245425,215,0 +170763245475,215,0 +170763245524,215,0 +170763245572,216,0 +170763245620,216,0 +170763245668,216,0 +170763245716,217,0 +170763245764,216,0 +170763245813,217,0 +170763245862,217,0 +170763245910,217,0 +170763245958,217,0 +170763246006,217,0 +170763246056,217,0 +170763246104,214,0 +170763246153,214,0 +170763246203,215,0 +170763246251,215,0 +170763246299,215,0 +170763246347,215,0 +170763246396,215,0 +170763246445,215,0 +170763246493,216,0 +170763246543,216,0 +170763246591,216,0 +170763246639,216,0 +170763246688,216,0 +170763246738,217,0 +170763246786,217,0 +170763246834,217,0 +170763246882,217,0 +170763246931,217,0 +170763246980,214,0 +170763247028,214,0 +170763247076,215,0 +170763247124,215,0 +170763247172,215,0 +170763247220,215,0 +170763247268,216,0 +170763247316,216,0 +170763247365,216,0 +170763247413,216,0 +170763247461,216,0 +170763247511,217,0 +170763247560,217,0 +170763247608,216,0 +170763247656,217,0 +170763247704,217,0 +170763247752,218,0 +170763247800,217,0 +170763247848,216,0 +170763247896,215,0 +170763247944,215,0 +170763247993,215,0 +170763248041,216,0 +170763248091,215,0 +170763248139,215,0 +170763248188,216,0 +170763248238,216,0 +170763248286,216,0 +170763248335,217,0 +170763248383,217,0 +170763248431,217,0 +170763248479,217,0 +170763248528,217,0 +170763248576,217,0 +170763248624,217,0 +170763248672,217,0 +170763248720,217,0 +170763248768,215,0 +170763248816,214,0 +170763248865,215,0 +170763248913,215,0 +170763248961,215,0 +170763249009,215,0 +170763249056,216,0 +170763249106,216,0 +170763249154,216,0 +170763249201,216,0 +170763249249,217,0 +170763249299,217,0 +170763249348,217,0 +170763249396,217,0 +170763249443,217,0 +170763249491,217,0 +170763249539,217,0 +170763249587,217,0 +170763249634,217,0 +170763249684,215,0 +170763249732,214,0 +170763249780,214,0 +170763249827,214,0 +170763249875,215,0 +170763249923,215,0 +170763249971,215,0 +170763250019,215,0 +170763250067,216,0 +170763250115,216,0 +170763250163,216,0 +170763250211,216,0 +170763250260,216,0 +170763250308,217,0 +170763250356,217,0 +170763250404,216,0 +170763250452,217,0 +170763250500,217,0 +170763250549,216,0 +170763250597,214,0 +170763250645,214,0 +170763250693,214,0 +170763250740,214,0 +170763250788,214,0 +170763250836,215,0 +170763250886,215,0 +170763250934,215,0 +170763250981,216,0 +170763251029,216,0 +170763251077,216,0 +170763251125,216,0 +170763251173,216,0 +170763251221,217,0 +170763251269,217,0 +170763251317,217,0 +170763251365,217,0 +170763251413,217,0 +170763251462,215,0 +170763251512,214,0 +170763251561,214,0 +170763251609,214,0 +170763251658,214,0 +170763251708,214,0 +170763251756,215,0 +170763251804,214,0 +170763251853,215,0 +170763251901,215,0 +170763251949,215,0 +170763251997,216,0 +170763252046,216,0 +170763252094,216,0 +170763252142,216,0 +170763252190,216,0 +170763252239,217,0 +170763252287,217,0 +170763252335,216,0 +170763252385,214,0 +170763252433,213,0 +170763252480,214,0 +170763252528,214,0 +170763252576,214,0 +170763252626,214,0 +170763252673,215,0 +170763252721,215,0 +170763252769,215,0 +170763252817,215,0 +170763252865,216,0 +170763252913,216,0 +170763252961,216,0 +170763253009,216,0 +170763253056,217,0 +170763253104,217,0 +170763253152,217,0 +170763253200,217,0 +170763253248,216,0 +170763253296,214,0 +170763253344,214,0 +170763253392,214,0 +170763253441,215,0 +170763253489,215,0 +170763253537,216,0 +170763253586,216,0 +170763253634,216,0 +170763253682,216,0 +170763253730,217,0 +170763253778,216,0 +170763253826,217,0 +170763253875,217,0 +170763253923,217,0 +170763253971,217,0 +170763254019,217,0 +170763254068,217,0 +170763254116,217,0 +170763254164,216,0 +170763254214,214,0 +170763254262,214,0 +170763254311,215,0 +170763254361,215,0 +170763254409,215,0 +170763254458,215,0 +170763254506,216,0 +170763254554,216,0 +170763254602,216,0 +170763254650,216,0 +170763254697,217,0 +170763254745,217,0 +170763254793,217,0 +170763254841,217,0 +170763254891,217,0 +170763254939,217,0 +170763254987,217,0 +170763255035,216,0 +170763255083,214,0 +170763255131,214,0 +170763255179,214,0 +170763255227,215,0 +170763255274,215,0 +170763255322,215,0 +170763255370,215,0 +170763255418,216,0 +170763255466,216,0 +170763255514,216,0 +170763255562,216,0 +170763255610,216,0 +170763255657,217,0 +170763255705,217,0 +170763255753,217,0 +170763255803,217,0 +170763255852,217,0 +170763255902,217,0 +170763255949,217,0 +170763255997,215,0 +170763256047,214,0 +170763256095,214,0 +170763256143,215,0 +170763256192,215,0 +170763256240,215,0 +170763256288,215,0 +170763256337,215,0 +170763256385,216,0 +170763256433,215,0 +170763256483,216,0 +170763256532,216,0 +170763256580,217,0 +170763256628,217,0 +170763256677,217,0 +170763256727,217,0 +170763256775,217,0 +170763256823,217,0 +170763256871,216,0 +170763256919,214,0 +170763256968,214,0 +170763257016,214,0 +170763257064,215,0 +170763257113,215,0 +170763257163,215,0 +170763257211,215,0 +170763257260,215,0 +170763257308,216,0 +170763257357,216,0 +170763257405,216,0 +170763257453,217,0 +170763257503,217,0 +170763257550,217,0 +170763257600,217,0 +170763257648,217,0 +170763257697,217,0 +170763257747,217,0 +170763257794,215,0 +170763257844,214,0 +170763257892,215,0 +170763257940,215,0 +170763257988,215,0 +170763258036,215,0 +170763258085,216,0 +170763258133,216,0 +170763258181,216,0 +170763258229,216,0 +170763258277,217,0 +170763258326,217,0 +170763258374,217,0 +170763258422,217,0 +170763258470,217,0 +170763258519,217,0 +170763258567,217,0 +170763258615,217,0 +170763258664,217,0 +170763258712,215,0 +170763258760,215,0 +170763258808,215,0 +170763258858,215,0 +170763258905,215,0 +170763258953,216,0 +170763259001,216,0 +170763259049,216,0 +170763259099,216,0 +170763259146,217,0 +170763259196,217,0 +170763259244,217,0 +170763259292,218,0 +170763259340,218,0 +170763259388,218,0 +170763259436,217,0 +170763259485,217,0 +170763259533,217,0 +170763259583,216,0 +170763259630,215,0 +170763259680,215,0 +170763259730,216,0 +170763259778,216,0 +170763259825,216,0 +170763259873,217,0 +170763259921,217,0 +170763259969,217,0 +170763260017,217,0 +170763260065,217,0 +170763260113,217,0 +170763260161,218,0 +170763260209,218,0 +170763260257,217,0 +170763260306,217,0 +170763260354,217,0 +170763260402,217,0 +170763260451,217,0 +170763260501,215,0 +170763260549,215,0 +170763260597,215,0 +170763260645,215,0 +170763260693,215,0 +170763260742,216,0 +170763260790,216,0 +170763260838,216,0 +170763260886,216,0 +170763260935,217,0 +170763260983,217,0 +170763261033,217,0 +170763261081,217,0 +170763261129,217,0 +170763261177,217,0 +170763261224,217,0 +170763261272,217,0 +170763261320,217,0 +170763261368,216,0 +170763261416,214,0 +170763261464,214,0 +170763261512,214,0 +170763261561,214,0 +170763261609,215,0 +170763261657,215,0 +170763261705,215,0 +170763261755,215,0 +170763261803,216,0 +170763261852,216,0 +170763261902,216,0 +170763261950,216,0 +170763261998,217,0 +170763262046,217,0 +170763262095,217,0 +170763262145,217,0 +170763262193,216,0 +170763262240,217,0 +170763262290,215,0 +170763262338,214,0 +170763262386,214,0 +170763262434,214,0 +170763262483,214,0 +170763262531,214,0 +170763262579,215,0 +170763262628,215,0 +170763262676,215,0 +170763262724,215,0 +170763262774,216,0 +170763262823,216,0 +170763262871,216,0 +170763262919,216,0 +170763262967,216,0 +170763263015,217,0 +170763263063,217,0 +170763263111,217,0 +170763263160,217,0 +170763263208,214,0 +170763263256,214,0 +170763263305,214,0 +170763263355,214,0 +170763263403,214,0 +170763263451,215,0 +170763263499,215,0 +170763263546,215,0 +170763263596,215,0 +170763263644,215,0 +170763263692,216,0 +170763263740,216,0 +170763263788,216,0 +170763263836,216,0 +170763263884,216,0 +170763263933,217,0 +170763263981,217,0 +170763264029,217,0 +170763264077,216,0 +170763264125,214,0 +170763264174,214,0 +170763264222,214,0 +170763264270,214,0 +170763264318,215,0 +170763264366,214,0 +170763264414,215,0 +170763264464,215,0 +170763264511,215,0 +170763264559,216,0 +170763264607,216,0 +170763264655,216,0 +170763264703,216,0 +170763264751,217,0 +170763264800,217,0 +170763264848,217,0 +170763264896,215,0 +170763264944,217,0 +170763264993,215,0 +170763265041,214,0 +170763265089,214,0 +170763265138,214,0 +170763265186,214,0 +170763265234,215,0 +170763265284,214,0 +170763265332,215,0 +170763265380,215,0 +170763265428,215,0 +170763265477,216,0 +170763265526,216,0 +170763265576,216,0 +170763265625,216,0 +170763265673,216,0 +170763265721,217,0 +170763265769,217,0 +170763265817,217,0 +170763265867,217,0 +170763265915,214,0 +170763265962,214,0 +170763266010,214,0 +170763266060,214,0 +170763266108,214,0 +170763266155,215,0 +170763266203,215,0 +170763266251,215,0 +170763266299,216,0 +170763266348,216,0 +170763266396,216,0 +170763266444,216,0 +170763266492,217,0 +170763266540,216,0 +170763266589,217,0 +170763266637,216,0 +170763266685,216,0 +170763266733,217,0 +170763266780,215,0 +170763266828,214,0 +170763266876,214,0 +170763266924,215,0 +170763266972,215,0 +170763267020,215,0 +170763267067,215,0 +170763267115,215,0 +170763267163,216,0 +170763267211,216,0 +170763267259,216,0 +170763267307,216,0 +170763267354,217,0 +170763267402,217,0 +170763267452,217,0 +170763267499,217,0 +170763267549,217,0 +170763267597,217,0 +170763267645,217,0 +170763267693,215,0 +170763267741,214,0 +170763267789,214,0 +170763267836,215,0 +170763267884,215,0 +170763267932,215,0 +170763267980,215,0 +170763268028,215,0 +170763268078,215,0 +170763268127,215,0 +170763268175,216,0 +170763268223,216,0 +170763268271,217,0 +170763268320,217,0 +170763268368,217,0 +170763268418,217,0 +170763268466,217,0 +170763268515,217,0 +170763268563,217,0 +170763268611,215,0 +170763268659,215,0 +170763268707,215,0 +170763268755,215,0 +170763268803,215,0 +170763268850,215,0 +170763268898,216,0 +170763268948,216,0 +170763268995,216,0 +170763269045,216,0 +170763269093,217,0 +170763269140,217,0 +170763269188,217,0 +170763269238,217,0 +170763269285,217,0 +170763269335,217,0 +170763269383,217,0 +170763269432,217,0 +170763269480,218,0 +170763269528,215,0 +170763269577,215,0 +170763269625,215,0 +170763269673,215,0 +170763269721,215,0 +170763269769,215,0 +170763269817,216,0 +170763269864,216,0 +170763269912,216,0 +170763269960,216,0 +170763270009,217,0 +170763270057,217,0 +170763270105,217,0 +170763270153,217,0 +170763270201,217,0 +170763270250,217,0 +170763270298,217,0 +170763270347,217,0 +170763270397,214,0 +170763270446,214,0 +170763270494,215,0 +170763270544,215,0 +170763270593,215,0 +170763270642,215,0 +170763270692,216,0 +170763270741,216,0 +170763270789,216,0 +170763270837,217,0 +170763270885,216,0 +170763270933,217,0 +170763270981,217,0 +170763271029,217,0 +170763271077,217,0 +170763271125,217,0 +170763271173,217,0 +170763271221,217,0 +170763271270,217,0 +170763271318,214,0 +170763271366,214,0 +170763271414,215,0 +170763271462,214,0 +170763271511,215,0 +170763271559,216,0 +170763271607,216,0 +170763271657,215,0 +170763271705,216,0 +170763271754,216,0 +170763271802,217,0 +170763271851,217,0 +170763271899,217,0 +170763271947,217,0 +170763271995,217,0 +170763272043,217,0 +170763272091,218,0 +170763272139,217,0 +170763272187,215,0 +170763272235,214,0 +170763272284,214,0 +170763272334,214,0 +170763272382,214,0 +170763272430,214,0 +170763272477,214,0 +170763272525,214,0 +170763272573,215,0 +170763272621,215,0 +170763272669,216,0 +170763272717,216,0 +170763272765,216,0 +170763272813,217,0 +170763272861,217,0 +170763272909,217,0 +170763272958,217,0 +170763273006,217,0 +170763273054,217,0 +170763273104,214,0 +170763273151,214,0 +170763273201,214,0 +170763273250,214,0 +170763273298,215,0 +170763273346,214,0 +170763273394,214,0 +170763273442,215,0 +170763273490,215,0 +170763273538,215,0 +170763273586,215,0 +170763273634,216,0 +170763273681,216,0 +170763273729,216,0 +170763273777,216,0 +170763273825,216,0 +170763273873,217,0 +170763273920,217,0 +170763273968,217,0 +170763274016,214,0 +170763274064,214,0 +170763274112,214,0 +170763274160,214,0 +170763274207,214,0 +170763274255,214,0 +170763274303,214,0 +170763274351,214,0 +170763274399,215,0 +170763274446,215,0 +170763274496,215,0 +170763274544,216,0 +170763274591,216,0 +170763274641,216,0 +170763274689,216,0 +170763274736,216,0 +170763274784,216,0 +170763274832,216,0 +170763274880,216,0 +170763274930,214,0 +170763274978,214,0 +170763275026,214,0 +170763275073,214,0 +170763275123,214,0 +170763275171,215,0 +170763275219,214,0 +170763275268,215,0 +170763275318,215,0 +170763275366,216,0 +170763275415,216,0 +170763275465,216,0 +170763275513,216,0 +170763275562,217,0 +170763275610,216,0 +170763275660,217,0 +170763275709,217,0 +170763275759,217,0 +170763275808,215,0 +170763275856,214,0 +170763275904,214,0 +170763275952,215,0 +170763276001,215,0 +170763276049,215,0 +170763276099,215,0 +170763276147,216,0 +170763276195,216,0 +170763276244,216,0 +170763276292,217,0 +170763276340,217,0 +170763276389,217,0 +170763276439,217,0 +170763276487,217,0 +170763276535,217,0 +170763276584,217,0 +170763276634,217,0 +170763276682,216,0 +170763276729,214,0 +170763276777,215,0 +170763276825,215,0 +170763276875,216,0 +170763276923,216,0 +170763276972,216,0 +170763277020,217,0 +170763277068,217,0 +170763277116,216,0 +170763277164,217,0 +170763277213,217,0 +170763277261,217,0 +170763277309,217,0 +170763277359,217,0 +170763277407,217,0 +170763277455,218,0 +170763277504,217,0 +170763277553,217,0 +170763277603,215,0 +170763277651,215,0 +170763277700,215,0 +170763277748,215,0 +170763277796,215,0 +170763277844,216,0 +170763277894,216,0 +170763277943,216,0 +170763277991,216,0 +170763278040,216,0 +170763278090,216,0 +170763278138,217,0 +170763278186,217,0 +170763278234,217,0 +170763278282,217,0 +170763278330,217,0 +170763278379,217,0 +170763278427,217,0 +170763278475,217,0 +170763278524,214,0 +170763278572,214,0 +170763278620,214,0 +170763278670,215,0 +170763278718,215,0 +170763278767,215,0 +170763278817,215,0 +170763278865,215,0 +170763278914,215,0 +170763278964,215,0 +170763279011,216,0 +170763279059,215,0 +170763279107,216,0 +170763279155,216,0 +170763279205,217,0 +170763279254,217,0 +170763279304,217,0 +170763279353,216,0 +170763279403,214,0 +170763279451,214,0 +170763279498,214,0 +170763279548,214,0 +170763279598,215,0 +170763279646,215,0 +170763279695,215,0 +170763279743,215,0 +170763279791,215,0 +170763279839,216,0 +170763279887,216,0 +170763279935,217,0 +170763279983,216,0 +170763280031,217,0 +170763280078,217,0 +170763280128,217,0 +170763280177,217,0 +170763280225,217,0 +170763280273,217,0 +170763280323,214,0 +170763280372,214,0 +170763280420,214,0 +170763280468,215,0 +170763280516,215,0 +170763280565,215,0 +170763280613,215,0 +170763280663,216,0 +170763280710,216,0 +170763280758,216,0 +170763280806,217,0 +170763280854,216,0 +170763280902,217,0 +170763280950,217,0 +170763280998,217,0 +170763281046,217,0 +170763281093,217,0 +170763281141,217,0 +170763281189,217,0 +170763281237,214,0 +170763281285,215,0 +170763281334,215,0 +170763281382,215,0 +170763281432,215,0 +170763281480,216,0 +170763281529,216,0 +170763281577,216,0 +170763281627,217,0 +170763281676,217,0 +170763281726,217,0 +170763281773,217,0 +170763281821,217,0 +170763281871,217,0 +170763281919,217,0 +170763281967,217,0 +170763282016,217,0 +170763282064,216,0 +170763282112,215,0 +170763282160,215,0 +170763282208,215,0 +170763282257,216,0 +170763282307,216,0 +170763282355,216,0 +170763282403,216,0 +170763282450,217,0 +170763282500,217,0 +170763282549,217,0 +170763282597,217,0 +170763282647,217,0 +170763282695,217,0 +170763282743,217,0 +170763282790,217,0 +170763282838,218,0 +170763282886,217,0 +170763282934,217,0 +170763282982,216,0 +170763283030,215,0 +170763283078,215,0 +170763283127,215,0 +170763283175,215,0 +170763283225,216,0 +170763283273,216,0 +170763283322,216,0 +170763283371,216,0 +170763283419,216,0 +170763283467,217,0 +170763283515,217,0 +170763283563,217,0 +170763283612,216,0 +170763283660,217,0 +170763283708,217,0 +170763283756,217,0 +170763283804,217,0 +170763283852,217,0 +170763283901,215,0 +170763283950,214,0 +170763284000,215,0 +170763284048,215,0 +170763284097,215,0 +170763284147,216,0 +170763284195,216,0 +170763284244,216,0 +170763284292,216,0 +170763284340,216,0 +170763284390,216,0 +170763284439,217,0 +170763284488,217,0 +170763284538,217,0 +170763284586,217,0 +170763284634,217,0 +170763284683,217,0 +170763284731,217,0 +170763284781,217,0 +170763284829,215,0 +170763284877,214,0 +170763284925,214,0 +170763284973,217,0 +170763285022,215,0 +170763285072,216,0 +170763285121,215,0 +170763285169,216,0 +170763285219,216,0 +170763285267,216,0 +170763285316,216,0 +170763285364,217,0 +170763285412,217,0 +170763285460,217,0 +170763285508,217,0 +170763285555,217,0 +170763285605,217,0 +170763285654,217,0 +170763285702,215,0 +170763285750,214,0 +170763285800,214,0 +170763285848,215,0 +170763285895,215,0 +170763285943,215,0 +170763285991,215,0 +170763286039,216,0 +170763286087,216,0 +170763286135,216,0 +170763286183,217,0 +170763286231,216,0 +170763286280,217,0 +170763286330,217,0 +170763286378,217,0 +170763286425,217,0 +170763286473,217,0 +170763286523,217,0 +170763286571,217,0 +170763286619,214,0 +170763286667,214,0 +170763286715,214,0 +170763286764,215,0 +170763286814,214,0 +170763286863,214,0 +170763286911,215,0 +170763286959,215,0 +170763287007,215,0 +170763287055,215,0 +170763287103,216,0 +170763287152,216,0 +170763287200,216,0 +170763287248,216,0 +170763287296,216,0 +170763287344,216,0 +170763287392,217,0 +170763287440,217,0 +170763287488,217,0 +170763287536,214,0 +170763287585,214,0 +170763287635,214,0 +170763287683,214,0 +170763287730,214,0 +170763287778,214,0 +170763287828,214,0 +170763287876,215,0 +170763287925,215,0 +170763287975,216,0 +170763288024,216,0 +170763288074,216,0 +170763288122,217,0 +170763288169,216,0 +170763288219,217,0 +170763288268,217,0 +170763288316,217,0 +170763288364,216,0 +170763288412,214,0 +170763288460,214,0 +170763288508,214,0 +170763288557,214,0 +170763288605,214,0 +170763288653,215,0 +170763288701,215,0 +170763288749,215,0 +170763288797,215,0 +170763288844,215,0 +170763288892,216,0 +170763288940,216,0 +170763288988,217,0 +170763289036,216,0 +170763289083,216,0 +170763289131,217,0 +170763289180,217,0 +170763289230,217,0 +170763289277,216,0 +170763289325,214,0 +170763289373,214,0 +170763289421,214,0 +170763289470,214,0 +170763289518,214,0 +170763289566,215,0 +170763289614,215,0 +170763289662,214,0 +170763289711,215,0 +170763289759,215,0 +170763289807,216,0 +170763289855,216,0 +170763289902,216,0 +170763289952,216,0 +170763289999,216,0 +170763290047,216,0 +170763290097,217,0 +170763290145,217,0 +170763290192,215,0 +170763290240,214,0 +170763290288,214,0 +170763290336,214,0 +170763290384,215,0 +170763290431,214,0 +170763290479,215,0 +170763290529,215,0 +170763290577,216,0 +170763290624,216,0 +170763290672,216,0 +170763290720,216,0 +170763290768,216,0 +170763290816,216,0 +170763290863,217,0 +170763290911,217,0 +170763290961,217,0 +170763291008,217,0 +170763291056,217,0 +170763291104,215,0 +170763291152,214,0 +170763291201,214,0 +170763291249,214,0 +170763291297,215,0 +170763291345,215,0 +170763291392,215,0 +170763291440,215,0 +170763291488,215,0 +170763291536,215,0 +170763291584,216,0 +170763291631,216,0 +170763291679,216,0 +170763291727,217,0 +170763291775,217,0 +170763291823,217,0 +170763291871,218,0 +170763291919,217,0 +170763291966,217,0 +170763292014,214,0 +170763292062,214,0 +170763292110,214,0 +170763292159,214,0 +170763292209,215,0 +170763292258,215,0 +170763292306,215,0 +170763292354,215,0 +170763292402,215,0 +170763292450,216,0 +170763292498,216,0 +170763292545,216,0 +170763292593,217,0 +170763292641,216,0 +170763292689,217,0 +170763292737,216,0 +170763292786,217,0 +170763292834,217,0 +170763292882,216,0 +170763292931,214,0 +170763292979,214,0 +170763293027,214,0 +170763293075,215,0 +170763293123,215,0 +170763293171,215,0 +170763293219,216,0 +170763293268,216,0 +170763293316,216,0 +170763293364,217,0 +170763293411,217,0 +170763293461,217,0 +170763293509,217,0 +170763293557,218,0 +170763293604,217,0 +170763293652,217,0 +170763293700,217,0 +170763293748,217,0 +170763293795,214,0 +170763293843,214,0 +170763293891,214,0 +170763293939,214,0 +170763293987,214,0 +170763294034,215,0 +170763294084,215,0 +170763294132,215,0 +170763294180,216,0 +170763294229,216,0 +170763294277,216,0 +170763294324,217,0 +170763294372,216,0 +170763294420,217,0 +170763294468,217,0 +170763294515,217,0 +170763294563,217,0 +170763294611,217,0 +170763294659,217,0 +170763294707,214,0 +170763294755,214,0 +170763294802,214,0 +170763294850,215,0 +170763294898,215,0 +170763294946,214,0 +170763294994,215,0 +170763295042,215,0 +170763295091,215,0 +170763295139,216,0 +170763295187,216,0 +170763295235,216,0 +170763295283,216,0 +170763295330,217,0 +170763295380,217,0 +170763295428,217,0 +170763295477,217,0 +170763295525,216,0 +170763295573,216,0 +170763295621,214,0 +170763295668,214,0 +170763295716,214,0 +170763295764,214,0 +170763295812,214,0 +170763295860,214,0 +170763295907,215,0 +170763295955,214,0 +170763296003,215,0 +170763296051,215,0 +170763296099,215,0 +170763296147,216,0 +170763296194,216,0 +170763296242,216,0 +170763296290,217,0 +170763296339,217,0 +170763296387,217,0 +170763296435,217,0 +170763296483,215,0 +170763296532,214,0 +170763296582,214,0 +170763296630,214,0 +170763296677,214,0 +170763296725,215,0 +170763296773,215,0 +170763296821,215,0 +170763296869,215,0 +170763296917,216,0 +170763296964,216,0 +170763297012,216,0 +170763297060,216,0 +170763297108,216,0 +170763297156,217,0 +170763297204,217,0 +170763297252,217,0 +170763297299,217,0 +170763297347,217,0 +170763297397,215,0 +170763297446,214,0 +170763297494,214,0 +170763297542,214,0 +170763297591,215,0 +170763297641,215,0 +170763297688,215,0 +170763297738,215,0 +170763297786,216,0 +170763297833,216,0 +170763297881,216,0 +170763297929,217,0 +170763297977,217,0 +170763298025,217,0 +170763298073,217,0 +170763298122,217,0 +170763298170,217,0 +170763298218,217,0 +170763298267,217,0 +170763298315,214,0 +170763298364,214,0 +170763298412,215,0 +170763298460,215,0 +170763298509,215,0 +170763298559,215,0 +170763298607,216,0 +170763298654,215,0 +170763298702,216,0 +170763298752,216,0 +170763298801,216,0 +170763298851,216,0 +170763298900,217,0 +170763298948,217,0 +170763298997,217,0 +170763299045,217,0 +170763299093,217,0 +170763299141,217,0 +170763299188,215,0 +170763299236,214,0 +170763299286,214,0 +170763299335,215,0 +170763299383,215,0 +170763299431,215,0 +170763299478,215,0 +170763299528,216,0 +170763299576,215,0 +170763299623,216,0 +170763299671,216,0 +170763299719,217,0 +170763299767,217,0 +170763299815,217,0 +170763299864,216,0 +170763299912,217,0 +170763299960,217,0 +170763300008,217,0 +170763300055,217,0 +170763300103,214,0 +170763300151,214,0 +170763300200,214,0 +170763300248,214,0 +170763300296,214,0 +170763300344,214,0 +170763300392,215,0 +170763300440,216,0 +170763300488,215,0 +170763300535,215,0 +170763300583,216,0 +170763300631,216,0 +170763300679,216,0 +170763300727,217,0 +170763300775,217,0 +170763300822,217,0 +170763300870,217,0 +170763300918,217,0 +170763300967,217,0 +170763301015,214,0 +170763301063,214,0 +170763301111,214,0 +170763301159,215,0 +170763301207,215,0 +170763301254,215,0 +170763301302,215,0 +170763301352,216,0 +170763301399,215,0 +170763301447,216,0 +170763301497,216,0 +170763301545,216,0 +170763301594,217,0 +170763301642,217,0 +170763301691,217,0 +170763301739,217,0 +170763301787,217,0 +170763301835,216,0 +170763301883,215,0 +170763301932,214,0 +170763301980,215,0 +170763302028,214,0 +170763302076,215,0 +170763302123,215,0 +170763302171,215,0 +170763302219,216,0 +170763302267,215,0 +170763302316,216,0 +170763302364,216,0 +170763302412,217,0 +170763302461,217,0 +170763302511,217,0 +170763302559,217,0 +170763302606,217,0 +170763302654,217,0 +170763302704,217,0 +170763302751,217,0 +170763302801,215,0 +170763302849,215,0 +170763302896,215,0 +170763302944,215,0 +170763302994,215,0 +170763303041,215,0 +170763303089,216,0 +170763303137,216,0 +170763303186,216,0 +170763303234,216,0 +170763303282,217,0 +170763303331,217,0 +170763303379,217,0 +170763303427,217,0 +170763303475,217,0 +170763303524,217,0 +170763303572,217,0 +170763303620,217,0 +170763303668,217,0 +170763303715,215,0 +170763303763,215,0 +170763303813,215,0 +170763303860,215,0 +170763303908,215,0 +170763303956,215,0 +170763304006,216,0 +170763304053,216,0 +170763304101,216,0 +170763304149,217,0 +170763304197,217,0 +170763304245,217,0 +170763304293,217,0 +170763304340,217,0 +170763304388,217,0 +170763304436,217,0 +170763304484,217,0 +170763304532,217,0 +170763304579,215,0 +170763304627,215,0 +170763304675,215,0 +170763304724,215,0 +170763304772,216,0 +170763304820,216,0 +170763304868,216,0 +170763304916,216,0 +170763304965,217,0 +170763305013,217,0 +170763305061,217,0 +170763305109,217,0 +170763305156,217,0 +170763305204,217,0 +170763305252,217,0 +170763305300,217,0 +170763305348,217,0 +170763305396,217,0 +170763305443,217,0 +170763305491,215,0 +170763305539,214,0 +170763305587,215,0 +170763305635,215,0 +170763305683,215,0 +170763305730,216,0 +170763305778,216,0 +170763305826,216,0 +170763305875,216,0 +170763305923,217,0 +170763305971,217,0 +170763306019,217,0 +170763306067,217,0 +170763306115,217,0 +170763306163,217,0 +170763306212,217,0 +170763306260,217,0 +170763306308,217,0 +170763306355,216,0 +170763306403,214,0 +170763306451,214,0 +170763306499,214,0 +170763306547,214,0 +170763306596,214,0 +170763306645,215,0 +170763306693,215,0 +170763306741,215,0 +170763306789,215,0 +170763306837,216,0 +170763306885,216,0 +170763306932,216,0 +170763306982,216,0 +170763307031,216,0 +170763307079,217,0 +170763307127,216,0 +170763307175,217,0 +170763307222,216,0 +170763307270,216,0 +170763307320,214,0 +170763307367,213,0 +170763307415,214,0 +170763307463,214,0 +170763307511,214,0 +170763307559,214,0 +170763307606,215,0 +170763307654,215,0 +170763307702,215,0 +170763307751,216,0 +170763307801,216,0 +170763307850,216,0 +170763307898,216,0 +170763307946,216,0 +170763307994,216,0 +170763308041,216,0 +170763308089,217,0 +170763308137,217,0 +170763308187,214,0 +170763308236,214,0 +170763308284,213,0 +170763308333,213,0 +170763308381,214,0 +170763308429,214,0 +170763308477,214,0 +170763308525,214,0 +170763308573,215,0 +170763308621,215,0 +170763308668,216,0 +170763308716,215,0 +170763308764,215,0 +170763308813,216,0 +170763308863,216,0 +170763308912,216,0 +170763308960,217,0 +170763309008,217,0 +170763309056,217,0 +170763309104,214,0 +170763309152,213,0 +170763309200,214,0 +170763309248,213,0 +170763309296,214,0 +170763309344,214,0 +170763309393,214,0 +170763309441,214,0 +170763309491,215,0 +170763309538,215,0 +170763309586,215,0 +170763309634,215,0 +170763309684,216,0 +170763309733,216,0 +170763309783,216,0 +170763309832,216,0 +170763309880,217,0 +170763309929,217,0 +170763309977,214,0 +170763310025,214,0 +170763310073,214,0 +170763310121,213,0 +170763310169,214,0 +170763310217,214,0 +170763310265,214,0 +170763310313,214,0 +170763310362,214,0 +170763310410,214,0 +170763310458,214,0 +170763310508,214,0 +170763310555,214,0 +170763310603,215,0 +170763310653,215,0 +170763310701,215,0 +170763310750,215,0 +170763310800,216,0 +170763310849,216,0 +170763310897,216,0 +170763310945,216,0 +170763310993,217,0 +170763311041,217,0 +170763311089,217,0 +170763311137,217,0 +170763311185,217,0 +170763311232,217,0 +170763311280,216,0 +170763311330,214,0 +170763311378,214,0 +170763311427,214,0 +170763311475,214,0 +170763311525,214,0 +170763311573,214,0 +170763311621,215,0 +170763311669,215,0 +170763311718,215,0 +170763311766,215,0 +170763311815,216,0 +170763311863,215,0 +170763311913,216,0 +170763311962,216,0 +170763312010,217,0 +170763312058,217,0 +170763312108,217,0 +170763312156,217,0 +170763312204,216,0 +170763312253,214,0 +170763312301,214,0 +170763312351,214,0 +170763312398,214,0 +170763312446,214,0 +170763312496,215,0 +170763312544,215,0 +170763312592,215,0 +170763312640,215,0 +170763312687,216,0 +170763312735,216,0 +170763312785,216,0 +170763312833,217,0 +170763312880,217,0 +170763312928,217,0 +170763312978,216,0 +170763313027,217,0 +170763313075,216,0 +170763313123,214,0 +170763313171,213,0 +170763313221,214,0 +170763313268,214,0 +170763313316,214,0 +170763313366,214,0 +170763313414,215,0 +170763313463,215,0 +170763313511,215,0 +170763313559,215,0 +170763313609,216,0 +170763313656,216,0 +170763313704,216,0 +170763313752,216,0 +170763313800,217,0 +170763313848,217,0 +170763313896,217,0 +170763313944,217,0 +170763313992,216,0 +170763314040,214,0 +170763314088,214,0 +170763314137,214,0 +170763314185,214,0 +170763314235,214,0 +170763314284,215,0 +170763314332,215,0 +170763314382,215,0 +170763314431,215,0 +170763314479,216,0 +170763314528,216,0 +170763314576,217,0 +170763314626,217,0 +170763314675,216,0 +170763314723,217,0 +170763314773,217,0 +170763314821,217,0 +170763314870,217,0 +170763314920,214,0 +170763314969,214,0 +170763315017,214,0 +170763315065,214,0 +170763315113,214,0 +170763315161,214,0 +170763315209,215,0 +170763315259,215,0 +170763315307,215,0 +170763315356,216,0 +170763315404,216,0 +170763315452,216,0 +170763315501,216,0 +170763315551,217,0 +170763315599,217,0 +170763315648,217,0 +170763315696,217,0 +170763315746,216,0 +170763315795,217,0 +170763315843,214,0 +170763315891,214,0 +170763315939,214,0 +170763315987,214,0 +170763316035,214,0 +170763316084,214,0 +170763316132,215,0 +170763316180,215,0 +170763316228,215,0 +170763316276,215,0 +170763316324,216,0 +170763316372,216,0 +170763316421,216,0 +170763316469,217,0 +170763316517,217,0 +170763316565,215,0 +170763316613,217,0 +170763316660,217,0 +170763316708,217,0 +170763316756,216,0 +170763316804,214,0 +170763316852,214,0 +170763316900,214,0 +170763316948,214,0 +170763316996,214,0 +170763317045,215,0 +170763317093,215,0 +170763317141,215,0 +170763317189,215,0 +170763317238,216,0 +170763317286,216,0 +170763317334,216,0 +170763317382,216,0 +170763317431,216,0 +170763317479,217,0 +170763317527,217,0 +170763317575,217,0 +170763317625,217,0 +170763317674,217,0 +170763317724,215,0 +170763317771,214,0 +170763317819,214,0 +170763317867,214,0 +170763317915,214,0 +170763317963,214,0 +170763318011,215,0 +170763318061,215,0 +170763318109,215,0 +170763318157,215,0 +170763318204,216,0 +170763318252,216,0 +170763318302,216,0 +170763318351,217,0 +170763318399,217,0 +170763318449,217,0 +170763318497,217,0 +170763318544,216,0 +170763318593,217,0 +170763318642,215,0 +170763318690,214,0 +170763318738,214,0 +170763318786,214,0 +170763318834,214,0 +170763318882,215,0 +170763318931,215,0 +170763318979,215,0 +170763319027,215,0 +170763319075,216,0 +170763319123,216,0 +170763319171,216,0 +170763319219,216,0 +170763319267,217,0 +170763319316,216,0 +170763319366,217,0 +170763319413,217,0 +170763319461,217,0 +170763319509,217,0 +170763319557,216,0 +170763319605,214,0 +170763319653,215,0 +170763319702,215,0 +170763319750,215,0 +170763319798,215,0 +170763319847,215,0 +170763319895,215,0 +170763319943,216,0 +170763319991,216,0 +170763320039,216,0 +170763320089,216,0 +170763320137,217,0 +170763320186,217,0 +170763320234,217,0 +170763320284,217,0 +170763320333,217,0 +170763320383,217,0 +170763320431,217,0 +170763320478,216,0 +170763320528,215,0 +170763320578,214,0 +170763320625,215,0 +170763320675,215,0 +170763320724,215,0 +170763320772,215,0 +170763320820,215,0 +170763320870,216,0 +170763320919,216,0 +170763320967,216,0 +170763321015,216,0 +170763321063,216,0 +170763321111,216,0 +170763321160,216,0 +170763321208,217,0 +170763321256,217,0 +170763321305,217,0 +170763321355,217,0 +170763321404,217,0 +170763321452,216,0 +170763321500,214,0 +170763321550,214,0 +170763321599,214,0 +170763321647,214,0 +170763321695,215,0 +170763321743,214,0 +170763321793,215,0 +170763321841,215,0 +170763321889,215,0 +170763321937,216,0 +170763321984,216,0 +170763322032,216,0 +170763322082,216,0 +170763322130,216,0 +170763322178,216,0 +170763322226,217,0 +170763322275,217,0 +170763322324,217,0 +170763322374,216,0 +170763322422,214,0 +170763322471,213,0 +170763322521,214,0 +170763322569,214,0 +170763322618,214,0 +170763322668,214,0 +170763322715,215,0 +170763322763,215,0 +170763322811,215,0 +170763322859,215,0 +170763322908,216,0 +170763322956,216,0 +170763323006,216,0 +170763323054,217,0 +170763323103,216,0 +170763323151,216,0 +170763323199,217,0 +170763323247,217,0 +170763323296,217,0 +170763323344,216,0 +170763323392,214,0 +170763323440,214,0 +170763323488,214,0 +170763323537,214,0 +170763323585,215,0 +170763323633,214,0 +170763323681,215,0 +170763323730,215,0 +170763323778,215,0 +170763323826,215,0 +170763323876,216,0 +170763323925,216,0 +170763323975,216,0 +170763324022,216,0 +170763324072,216,0 +170763324120,217,0 +170763324168,217,0 +170763324216,216,0 +170763324265,217,0 +170763324313,214,0 +170763324362,214,0 +170763324412,214,0 +170763324460,214,0 +170763324508,214,0 +170763324556,214,0 +170763324604,214,0 +170763324651,215,0 +170763324699,215,0 +170763324749,215,0 +170763324797,215,0 +170763324845,216,0 +170763324892,216,0 +170763324940,216,0 +170763324990,216,0 +170763325038,217,0 +170763325086,217,0 +170763325135,217,0 +170763325183,217,0 +170763325231,214,0 +170763325279,214,0 +170763325329,214,0 +170763325377,214,0 +170763325426,215,0 +170763325474,215,0 +170763325523,215,0 +170763325571,215,0 +170763325619,214,0 +170763325667,215,0 +170763325715,216,0 +170763325763,216,0 +170763325811,216,0 +170763325859,216,0 +170763325906,217,0 +170763325954,217,0 +170763326002,217,0 +170763326050,217,0 +170763326098,217,0 +170763326147,216,0 +170763326195,214,0 +170763326243,214,0 +170763326292,214,0 +170763326340,215,0 +170763326388,215,0 +170763326436,215,0 +170763326484,215,0 +170763326533,215,0 +170763326581,216,0 +170763326631,216,0 +170763326679,216,0 +170763326727,216,0 +170763326775,217,0 +170763326823,217,0 +170763326871,217,0 +170763326918,217,0 +170763326968,217,0 +170763327016,216,0 +170763327065,217,0 +170763327115,215,0 +170763327164,214,0 +170763327212,214,0 +170763327260,214,0 +170763327308,215,0 +170763327358,215,0 +170763327405,215,0 +170763327455,215,0 +170763327504,215,0 +170763327552,216,0 +170763327600,216,0 +170763327648,216,0 +170763327698,216,0 +170763327747,216,0 +170763327797,217,0 +170763327845,217,0 +170763327894,217,0 +170763327942,217,0 +170763327990,217,0 +170763328038,217,0 +170763328087,214,0 +170763328137,214,0 +170763328185,214,0 +170763328233,214,0 +170763328281,214,0 +170763328330,215,0 +170763328380,215,0 +170763328428,215,0 +170763328477,216,0 +170763328525,216,0 +170763328573,216,0 +170763328623,216,0 +170763328671,216,0 +170763328720,216,0 +170763328768,216,0 +170763328816,216,0 +170763328864,217,0 +170763328913,217,0 +170763328963,217,0 +170763329011,214,0 +170763329059,213,0 +170763329107,214,0 +170763329155,214,0 +170763329204,214,0 +170763329252,214,0 +170763329300,215,0 +170763329349,215,0 +170763329397,215,0 +170763329445,215,0 +170763329493,215,0 +170763329541,216,0 +170763329589,216,0 +170763329637,216,0 +170763329686,216,0 +170763329734,216,0 +170763329782,216,0 +170763329832,217,0 +170763329881,217,0 +170763329931,216,0 +170763329980,214,0 +170763330030,214,0 +170763330078,214,0 +170763330126,214,0 +170763330174,214,0 +170763330223,214,0 +170763330271,215,0 +170763330319,215,0 +170763330367,215,0 +170763330415,215,0 +170763330463,216,0 +170763330512,216,0 +170763330560,216,0 +170763330610,216,0 +170763330657,216,0 +170763330705,216,0 +170763330755,217,0 +170763330803,217,0 +170763330851,216,0 +170763330899,214,0 +170763330947,214,0 +170763330995,214,0 +170763331043,214,0 +170763331091,214,0 +170763331140,214,0 +170763331188,215,0 +170763331238,215,0 +170763331286,215,0 +170763331333,216,0 +170763331381,215,0 +170763331429,216,0 +170763331477,216,0 +170763331525,216,0 +170763331573,216,0 +170763331621,217,0 +170763331669,217,0 +170763331718,217,0 +170763331766,217,0 +170763331814,216,0 +170763331862,214,0 +170763331910,213,0 +170763331959,214,0 +170763332008,214,0 +170763332056,214,0 +170763332104,214,0 +170763332152,214,0 +170763332200,215,0 +170763332248,215,0 +170763332296,215,0 +170763332343,216,0 +170763332391,216,0 +170763332439,216,0 +170763332487,216,0 +170763332535,217,0 +170763332583,216,0 +170763332631,216,0 +170763332678,216,0 +170763332726,217,0 +170763332774,215,0 +170763332822,214,0 +170763332870,214,0 +170763332917,213,0 +170763332965,214,0 +170763333013,214,0 +170763333063,214,0 +170763333112,214,0 +170763333160,215,0 +170763333209,215,0 +170763333259,215,0 +170763333306,215,0 +170763333354,215,0 +170763333404,216,0 +170763333452,216,0 +170763333500,216,0 +170763333547,216,0 +170763333597,217,0 +170763333645,217,0 +170763333693,217,0 +170763333740,214,0 +170763333788,213,0 +170763333838,214,0 +170763333886,214,0 +170763333935,214,0 +170763333983,214,0 +170763334033,214,0 +170763334081,215,0 +170763334128,215,0 +170763334178,215,0 +170763334226,215,0 +170763334274,216,0 +170763334323,216,0 +170763334373,217,0 +170763334421,216,0 +170763334470,216,0 +170763334520,216,0 +170763334568,216,0 +170763334616,216,0 +170763334663,214,0 +170763334711,214,0 +170763334759,214,0 +170763334809,213,0 +170763334858,214,0 +170763334906,214,0 +170763334956,214,0 +170763335004,215,0 +170763335052,214,0 +170763335100,215,0 +170763335149,215,0 +170763335197,215,0 +170763335245,216,0 +170763335295,216,0 +170763335344,216,0 +170763335392,216,0 +170763335440,216,0 +170763335488,217,0 +170763335538,217,0 +170763335585,216,0 +170763335633,214,0 +170763335681,214,0 +170763335729,214,0 +170763335779,214,0 +170763335828,214,0 +170763335876,214,0 +170763335924,214,0 +170763335974,214,0 +170763336021,215,0 +170763336069,215,0 +170763336117,215,0 +170763336165,215,0 +170763336213,216,0 +170763336261,216,0 +170763336309,216,0 +170763336357,217,0 +170763336404,216,0 +170763336452,216,0 +170763336500,216,0 +170763336548,214,0 +170763336596,213,0 +170763336643,214,0 +170763336691,214,0 +170763336739,214,0 +170763336787,214,0 +170763336836,214,0 +170763336884,215,0 +170763336933,215,0 +170763336981,215,0 +170763337029,215,0 +170763337079,216,0 +170763337127,216,0 +170763337174,216,0 +170763337222,216,0 +170763337270,217,0 +170763337318,217,0 +170763337368,216,0 +170763337416,216,0 +170763337464,216,0 +170763337512,213,0 +170763337560,213,0 +170763337609,214,0 +170763337659,214,0 +170763337708,214,0 +170763337758,214,0 +170763337807,214,0 +170763337855,214,0 +170763337903,215,0 +170763337951,215,0 +170763338001,216,0 +170763338048,216,0 +170763338098,216,0 +170763338146,216,0 +170763338194,216,0 +170763338243,217,0 +170763338291,217,0 +170763338341,216,0 +170763338389,216,0 +170763338438,214,0 +170763338486,213,0 +170763338536,213,0 +170763338585,214,0 +170763338633,214,0 +170763338683,214,0 +170763338732,214,0 +170763338781,214,0 +170763338829,214,0 +170763338879,214,0 +170763338927,215,0 +170763338976,215,0 +170763339024,216,0 +170763339072,216,0 +170763339120,216,0 +170763339170,216,0 +170763339218,216,0 +170763339267,216,0 +170763339315,216,0 +170763339363,214,0 +170763339412,213,0 +170763339460,213,0 +170763339510,213,0 +170763339558,213,0 +170763339607,213,0 +170763339655,214,0 +170763339703,214,0 +170763339751,213,0 +170763339799,214,0 +170763339847,214,0 +170763339895,214,0 +170763339945,215,0 +170763339992,215,0 +170763340042,215,0 +170763340090,215,0 +170763340138,216,0 +170763340186,216,0 +170763340235,217,0 +170763340283,216,0 +170763340331,214,0 +170763340379,213,0 +170763340427,213,0 +170763340476,213,0 +170763340526,214,0 +170763340574,214,0 +170763340622,214,0 +170763340671,214,0 +170763340721,214,0 +170763340769,215,0 +170763340817,215,0 +170763340865,216,0 +170763340913,215,0 +170763340962,215,0 +170763341010,216,0 +170763341059,216,0 +170763341109,216,0 +170763341157,217,0 +170763341205,216,0 +170763341253,214,0 +170763341301,214,0 +170763341349,214,0 +170763341398,213,0 +170763341446,214,0 +170763341495,214,0 +170763341545,214,0 +170763341594,214,0 +170763341642,214,0 +170763341692,215,0 +170763341741,215,0 +170763341789,215,0 +170763341837,215,0 +170763341885,216,0 +170763341935,216,0 +170763341984,216,0 +170763342032,216,0 +170763342080,216,0 +170763342128,216,0 +170763342177,215,0 +170763342225,214,0 +170763342275,213,0 +170763342323,213,0 +170763342370,214,0 +170763342420,214,0 +170763342469,214,0 +170763342517,214,0 +170763342565,215,0 +170763342613,215,0 +170763342661,215,0 +170763342711,216,0 +170763342759,216,0 +170763342807,216,0 +170763342855,217,0 +170763342902,217,0 +170763342950,216,0 +170763342998,216,0 +170763343046,217,0 +170763343094,216,0 +170763343142,214,0 +170763343190,214,0 +170763343239,214,0 +170763343287,214,0 +170763343335,214,0 +170763343383,214,0 +170763343430,214,0 +170763343478,215,0 +170763343526,215,0 +170763343574,215,0 +170763343622,215,0 +170763343670,216,0 +170763343717,216,0 +170763343765,216,0 +170763343813,216,0 +170763343861,216,0 +170763343909,216,0 +170763343957,216,0 +170763344005,217,0 +170763344052,216,0 +170763344100,213,0 +170763344148,214,0 +170763344196,213,0 +170763344245,214,0 +170763344293,214,0 +170763344343,214,0 +170763344392,214,0 +170763344440,215,0 +170763344488,214,0 +170763344536,215,0 +170763344583,215,0 +170763344631,215,0 +170763344681,216,0 +170763344729,216,0 +170763344778,216,0 +170763344826,216,0 +170763344876,216,0 +170763344924,216,0 +170763344971,216,0 +170763345021,214,0 +170763345069,214,0 +170763345118,213,0 +170763345166,214,0 +170763345214,214,0 +170763345263,215,0 +170763345311,215,0 +170763345359,215,0 +170763345407,215,0 +170763345457,215,0 +170763345504,215,0 +170763345552,215,0 +170763345600,216,0 +170763345648,216,0 +170763345696,216,0 +170763345744,217,0 +170763345793,216,0 +170763345843,216,0 +170763345891,217,0 +170763345939,214,0 +170763345987,213,0 +170763346035,214,0 +170763346083,214,0 +170763346132,214,0 +170763346180,215,0 +170763346228,214,0 +170763346276,215,0 +170763346324,215,0 +170763346372,215,0 +170763346421,215,0 +170763346469,215,0 +170763346517,216,0 +170763346567,216,0 +170763346615,216,0 +170763346662,215,0 +170763346710,216,0 +170763346758,217,0 +170763346806,217,0 +170763346854,217,0 +170763346902,214,0 +170763346949,214,0 +170763346997,214,0 +170763347045,214,0 +170763347093,215,0 +170763347141,215,0 +170763347189,215,0 +170763347236,215,0 +170763347286,215,0 +170763347334,215,0 +170763347381,215,0 +170763347429,216,0 +170763347477,216,0 +170763347525,216,0 +170763347573,216,0 +170763347621,216,0 +170763347669,216,0 +170763347718,217,0 +170763347766,216,0 +170763347814,215,0 +170763347862,214,0 +170763347909,214,0 +170763347957,214,0 +170763348005,215,0 +170763348053,215,0 +170763348102,215,0 +170763348152,215,0 +170763348201,215,0 +170763348251,216,0 +170763348300,216,0 +170763348348,216,0 +170763348396,216,0 +170763348444,216,0 +170763348494,217,0 +170763348542,217,0 +170763348591,217,0 +170763348639,217,0 +170763348687,217,0 +170763348735,216,0 +170763348784,214,0 +170763348834,214,0 +170763348882,214,0 +170763348931,214,0 +170763348979,215,0 +170763349028,215,0 +170763349076,215,0 +170763349124,215,0 +170763349172,215,0 +170763349220,216,0 +170763349270,216,0 +170763349318,216,0 +170763349365,216,0 +170763349413,216,0 +170763349461,217,0 +170763349509,217,0 +170763349559,217,0 +170763349606,217,0 +170763349654,217,0 +170763349704,214,0 +170763349751,214,0 +170763349799,214,0 +170763349847,214,0 +170763349895,214,0 +170763349943,214,0 +170763349990,215,0 +170763350038,215,0 +170763350086,215,0 +170763350134,216,0 +170763350182,216,0 +170763350230,216,0 +170763350278,216,0 +170763350326,216,0 +170763350375,217,0 +170763350423,217,0 +170763350471,217,0 +170763350519,217,0 +170763350569,217,0 +170763350616,216,0 +170763350666,214,0 +170763350714,213,0 +170763350762,214,0 +170763350811,214,0 +170763350859,214,0 +170763350909,214,0 +170763350957,214,0 +170763351006,214,0 +170763351054,215,0 +170763351102,215,0 +170763351150,215,0 +170763351198,216,0 +170763351246,216,0 +170763351294,216,0 +170763351342,216,0 +170763351391,217,0 +170763351439,216,0 +170763351487,217,0 +170763351535,216,0 +170763351583,214,0 +170763351631,213,0 +170763351679,213,0 +170763351727,213,0 +170763351775,214,0 +170763351823,214,0 +170763351871,214,0 +170763351920,214,0 +170763351968,214,0 +170763352018,215,0 +170763352065,215,0 +170763352113,215,0 +170763352161,215,0 +170763352209,216,0 +170763352257,216,0 +170763352305,216,0 +170763352353,216,0 +170763352402,216,0 +170763352452,216,0 +170763352501,216,0 +170763352549,213,0 +170763352597,213,0 +170763352647,213,0 +170763352696,213,0 +170763352746,213,0 +170763352795,214,0 +170763352843,214,0 +170763352891,213,0 +170763352939,214,0 +170763352987,214,0 +170763353035,214,0 +170763353083,215,0 +170763353132,215,0 +170763353180,215,0 +170763353230,215,0 +170763353279,215,0 +170763353327,216,0 +170763353377,216,0 +170763353426,216,0 +170763353474,214,0 +170763353522,213,0 +170763353572,213,0 +170763353619,214,0 +170763353669,214,0 +170763353718,214,0 +170763353766,214,0 +170763353814,215,0 +170763353862,215,0 +170763353910,215,0 +170763353960,215,0 +170763354009,216,0 +170763354059,216,0 +170763354107,216,0 +170763354156,216,0 +170763354204,217,0 +170763354252,216,0 +170763354301,216,0 +170763354351,217,0 +170763354399,214,0 +170763354447,214,0 +170763354495,213,0 +170763354543,213,0 +170763354591,214,0 +170763354638,213,0 +170763354686,214,0 +170763354736,214,0 +170763354786,214,0 +170763354833,215,0 +170763354883,215,0 +170763354932,215,0 +170763354980,216,0 +170763355028,216,0 +170763355076,216,0 +170763355124,216,0 +170763355172,217,0 +170763355221,216,0 +170763355269,217,0 +170763355317,216,0 +170763355365,214,0 +170763355414,213,0 +170763355462,213,0 +170763355512,214,0 +170763355560,214,0 +170763355607,214,0 +170763355655,214,0 +170763355703,214,0 +170763355752,214,0 +170763355800,215,0 +170763355848,215,0 +170763355896,215,0 +170763355944,216,0 +170763355992,216,0 +170763356039,216,0 +170763356087,216,0 +170763356135,216,0 +170763356183,216,0 +170763356230,216,0 +170763356278,214,0 +170763356326,213,0 +170763356374,213,0 +170763356422,214,0 +170763356471,214,0 +170763356519,214,0 +170763356567,214,0 +170763356614,214,0 +170763356662,215,0 +170763356710,215,0 +170763356758,215,0 +170763356807,215,0 +170763356855,215,0 +170763356903,216,0 +170763356952,216,0 +170763357000,216,0 +170763357048,216,0 +170763357095,216,0 +170763357143,216,0 +170763357191,216,0 +170763357241,214,0 +170763357290,213,0 +170763357338,214,0 +170763357386,214,0 +170763357433,214,0 +170763357481,214,0 +170763357529,214,0 +170763357577,214,0 +170763357625,215,0 +170763357672,215,0 +170763357720,216,0 +170763357768,216,0 +170763357816,216,0 +170763357863,216,0 +170763357913,216,0 +170763357961,216,0 +170763358008,217,0 +170763358056,216,0 +170763358104,216,0 +170763358153,215,0 +170763358201,213,0 +170763358249,213,0 +170763358297,214,0 +170763358345,214,0 +170763358392,214,0 +170763358440,214,0 +170763358488,215,0 +170763358536,215,0 +170763358584,215,0 +170763358631,215,0 +170763358679,215,0 +170763358727,216,0 +170763358777,216,0 +170763358826,216,0 +170763358874,216,0 +170763358922,216,0 +170763358971,217,0 +170763359021,216,0 +170763359070,216,0 +170763359120,214,0 +170763359168,213,0 +170763359217,214,0 +170763359267,213,0 +170763359315,214,0 +170763359363,214,0 +170763359411,214,0 +170763359459,214,0 +170763359508,215,0 +170763359557,215,0 +170763359605,215,0 +170763359653,215,0 +170763359701,216,0 +170763359751,216,0 +170763359800,216,0 +170763359848,217,0 +170763359896,217,0 +170763359945,216,0 +170763359993,216,0 +170763360040,214,0 +170763360088,213,0 +170763360138,214,0 +170763360186,213,0 +170763360234,214,0 +170763360282,213,0 +170763360329,214,0 +170763360377,214,0 +170763360425,214,0 +170763360473,214,0 +170763360523,215,0 +170763360572,215,0 +170763360620,215,0 +170763360668,216,0 +170763360717,216,0 +170763360767,216,0 +170763360816,217,0 +170763360864,216,0 +170763360912,216,0 +170763360960,216,0 +170763361008,213,0 +170763361056,213,0 +170763361104,213,0 +170763361151,213,0 +170763361199,214,0 +170763361249,213,0 +170763361297,213,0 +170763361345,214,0 +170763361394,214,0 +170763361442,215,0 +170763361490,214,0 +170763361540,215,0 +170763361588,215,0 +170763361637,216,0 +170763361685,216,0 +170763361735,216,0 +170763361784,216,0 +170763361832,216,0 +170763361880,216,0 +170763361930,214,0 +170763361979,213,0 +170763362027,214,0 +170763362075,213,0 +170763362123,213,0 +170763362171,214,0 +170763362220,213,0 +170763362270,214,0 +170763362318,214,0 +170763362367,214,0 +170763362415,215,0 +170763362463,215,0 +170763362511,215,0 +170763362559,215,0 +170763362607,216,0 +170763362655,216,0 +170763362704,216,0 +170763362752,216,0 +170763362800,216,0 +170763362849,214,0 +170763362897,213,0 +170763362947,213,0 +170763362996,213,0 +170763363044,213,0 +170763363094,214,0 +170763363141,214,0 +170763363191,214,0 +170763363239,214,0 +170763363287,215,0 +170763363335,215,0 +170763363383,215,0 +170763363431,215,0 +170763363479,216,0 +170763363526,216,0 +170763363574,216,0 +170763363622,216,0 +170763363672,216,0 +170763363721,217,0 +170763363769,216,0 +170763363817,214,0 +170763363865,213,0 +170763363913,213,0 +170763363961,213,0 +170763364009,214,0 +170763364057,214,0 +170763364105,214,0 +170763364153,214,0 +170763364201,214,0 +170763364249,215,0 +170763364298,215,0 +170763364347,215,0 +170763364397,215,0 +170763364446,216,0 +170763364494,216,0 +170763364542,216,0 +170763364590,216,0 +170763364638,216,0 +170763364686,216,0 +170763364735,214,0 +170763364783,213,0 +170763364831,213,0 +170763364878,214,0 +170763364926,214,0 +170763364974,214,0 +170763365022,214,0 +170763365071,215,0 +170763365119,215,0 +170763365167,215,0 +170763365215,216,0 +170763365264,216,0 +170763365312,216,0 +170763365360,216,0 +170763365408,216,0 +170763365456,216,0 +170763365504,216,0 +170763365552,217,0 +170763365600,217,0 +170763365647,215,0 +170763365697,213,0 +170763365744,213,0 +170763365792,213,0 +170763365840,214,0 +170763365888,214,0 +170763365937,215,0 +170763365987,214,0 +170763366035,215,0 +170763366083,215,0 +170763366131,215,0 +170763366178,215,0 +170763366226,215,0 +170763366274,216,0 +170763366322,216,0 +170763366371,216,0 +170763366419,216,0 +170763366467,216,0 +170763366515,216,0 +170763366563,216,0 +170763366612,214,0 +170763366660,213,0 +170763366708,213,0 +170763366756,213,0 +170763366805,214,0 +170763366853,214,0 +170763366901,214,0 +170763366949,214,0 +170763366998,215,0 +170763367046,215,0 +170763367094,215,0 +170763367142,215,0 +170763367190,216,0 +170763367239,215,0 +170763367287,216,0 +170763367335,216,0 +170763367382,217,0 +170763367432,216,0 +170763367480,216,0 +170763367527,215,0 +170763367575,213,0 +170763367623,213,0 +170763367671,214,0 +170763367719,214,0 +170763367767,214,0 +170763367815,214,0 +170763367863,214,0 +170763367912,214,0 +170763367960,214,0 +170763368008,215,0 +170763368056,215,0 +170763368103,215,0 +170763368151,216,0 +170763368199,215,0 +170763368249,216,0 +170763368297,216,0 +170763368345,216,0 +170763368394,216,0 +170763368444,216,0 +170763368492,214,0 +170763368541,213,0 +170763368589,213,0 +170763368638,214,0 +170763368688,214,0 +170763368736,214,0 +170763368784,214,0 +170763368831,214,0 +170763368881,215,0 +170763368929,215,0 +170763368978,215,0 +170763369028,215,0 +170763369076,216,0 +170763369123,216,0 +170763369171,216,0 +170763369219,216,0 +170763369269,217,0 +170763369317,217,0 +170763369364,217,0 +170763369412,214,0 +170763369460,214,0 +170763369510,214,0 +170763369558,214,0 +170763369605,215,0 +170763369653,214,0 +170763369701,215,0 +170763369749,215,0 +170763369797,215,0 +170763369845,215,0 +170763369895,215,0 +170763369943,215,0 +170763369991,216,0 +170763370038,216,0 +170763370086,216,0 +170763370136,216,0 +170763370184,216,0 +170763370232,216,0 +170763370279,216,0 +170763370329,216,0 +170763370377,214,0 +170763370426,214,0 +170763370474,214,0 +170763370524,215,0 +170763370573,215,0 +170763370622,215,0 +170763370670,215,0 +170763370718,215,0 +170763370766,215,0 +170763370814,216,0 +170763370862,216,0 +170763370910,216,0 +170763370960,216,0 +170763371008,216,0 +170763371057,217,0 +170763371105,217,0 +170763371153,217,0 +170763371201,216,0 +170763371249,217,0 +170763371297,214,0 +170763371345,214,0 +170763371395,214,0 +170763371442,214,0 +170763371492,214,0 +170763371541,214,0 +170763371589,215,0 +170763371639,215,0 +170763371687,215,0 +170763371735,216,0 +170763371785,216,0 +170763371834,216,0 +170763371884,216,0 +170763371932,216,0 +170763371981,216,0 +170763372031,216,0 +170763372080,216,0 +170763372128,216,0 +170763372176,216,0 +170763372226,214,0 +170763372275,213,0 +170763372323,213,0 +170763372373,214,0 +170763372422,214,0 +170763372472,214,0 +170763372521,215,0 +170763372571,215,0 +170763372620,215,0 +170763372670,215,0 +170763372719,215,0 +170763372769,216,0 +170763372817,216,0 +170763372865,216,0 +170763372914,216,0 +170763372962,216,0 +170763373010,217,0 +170763373058,217,0 +170763373106,217,0 +170763373154,215,0 +170763373202,213,0 +170763373250,213,0 +170763373298,213,0 +170763373347,214,0 +170763373395,214,0 +170763373443,215,0 +170763373491,215,0 +170763373540,214,0 +170763373588,215,0 +170763373638,215,0 +170763373686,215,0 +170763373735,216,0 +170763373783,216,0 +170763373831,216,0 +170763373881,216,0 +170763373930,216,0 +170763373980,216,0 +170763374027,217,0 +170763374075,216,0 +170763374125,213,0 +170763374175,213,0 +170763374224,214,0 +170763374274,214,0 +170763374321,214,0 +170763374371,214,0 +170763374419,214,0 +170763374467,214,0 +170763374515,215,0 +170763374563,215,0 +170763374612,215,0 +170763374660,216,0 +170763374708,216,0 +170763374756,216,0 +170763374806,216,0 +170763374854,216,0 +170763374903,216,0 +170763374951,216,0 +170763374999,217,0 +170763375047,214,0 +170763375095,214,0 +170763375144,214,0 +170763375192,214,0 +170763375240,214,0 +170763375290,214,0 +170763375339,214,0 +170763375387,215,0 +170763375435,215,0 +170763375483,215,0 +170763375533,215,0 +170763375581,215,0 +170763375629,216,0 +170763375676,216,0 +170763375724,217,0 +170763375772,216,0 +170763375822,216,0 +170763375870,216,0 +170763375919,216,0 +170763375967,214,0 +170763376015,213,0 +170763376064,213,0 +170763376112,214,0 +170763376160,214,0 +170763376208,214,0 +170763376256,214,0 +170763376303,214,0 +170763376351,215,0 +170763376401,215,0 +170763376449,215,0 +170763376498,215,0 +170763376546,216,0 +170763376596,216,0 +170763376645,216,0 +170763376693,216,0 +170763376741,216,0 +170763376789,216,0 +170763376838,216,0 +170763376886,216,0 +170763376934,214,0 +170763376984,214,0 +170763377032,213,0 +170763377081,213,0 +170763377131,214,0 +170763377180,213,0 +170763377228,214,0 +170763377278,215,0 +170763377327,214,0 +170763377375,215,0 +170763377423,214,0 +170763377471,215,0 +170763377519,215,0 +170763377567,215,0 +170763377615,216,0 +170763377663,216,0 +170763377711,216,0 +170763377759,216,0 +170763377808,217,0 +170763377858,214,0 +170763377906,213,0 +170763377953,213,0 +170763378001,214,0 +170763378051,213,0 +170763378099,214,0 +170763378148,214,0 +170763378196,214,0 +170763378244,214,0 +170763378292,215,0 +170763378340,215,0 +170763378390,216,0 +170763378437,215,0 +170763378485,214,0 +170763378533,216,0 +170763378583,216,0 +170763378631,216,0 +170763378679,216,0 +170763378727,216,0 +170763378776,214,0 +170763378824,213,0 +170763378874,213,0 +170763378922,213,0 +170763378969,214,0 +170763379019,214,0 +170763379067,214,0 +170763379115,214,0 +170763379163,214,0 +170763379211,214,0 +170763379258,215,0 +170763379308,215,0 +170763379356,215,0 +170763379405,215,0 +170763379453,216,0 +170763379503,216,0 +170763379551,216,0 +170763379600,216,0 +170763379650,216,0 +170763379698,217,0 +170763379746,214,0 +170763379795,213,0 +170763379845,214,0 +170763379893,214,0 +170763379941,214,0 +170763379989,214,0 +170763380037,214,0 +170763380085,214,0 +170763380134,215,0 +170763380182,215,0 +170763380232,215,0 +170763380279,216,0 +170763380329,216,0 +170763380377,216,0 +170763380425,216,0 +170763380474,216,0 +170763380522,216,0 +170763380570,216,0 +170763380618,216,0 +170763380666,214,0 +170763380714,213,0 +170763380762,214,0 +170763380811,214,0 +170763380859,214,0 +170763380907,214,0 +170763380957,214,0 +170763381005,214,0 +170763381054,215,0 +170763381102,215,0 +170763381150,215,0 +170763381200,215,0 +170763381249,216,0 +170763381297,216,0 +170763381345,216,0 +170763381395,216,0 +170763381443,216,0 +170763381490,216,0 +170763381538,216,0 +170763381586,214,0 +170763381634,213,0 +170763381684,214,0 +170763381733,214,0 +170763381781,214,0 +170763381831,214,0 +170763381880,214,0 +170763381928,214,0 +170763381976,215,0 +170763382024,214,0 +170763382072,215,0 +170763382121,216,0 +170763382169,216,0 +170763382217,216,0 +170763382265,216,0 +170763382313,216,0 +170763382361,216,0 +170763382409,216,0 +170763382457,216,0 +170763382507,216,0 +170763382556,213,0 +170763382604,213,0 +170763382652,213,0 +170763382700,214,0 +170763382750,214,0 +170763382798,214,0 +170763382846,214,0 +170763382894,214,0 +170763382943,215,0 +170763382991,215,0 +170763383039,215,0 +170763383087,215,0 +170763383135,216,0 +170763383183,216,0 +170763383230,216,0 +170763383278,216,0 +170763383326,216,0 +170763383375,216,0 +170763383423,216,0 +170763383473,214,0 +170763383520,213,0 +170763383568,213,0 +170763383616,213,0 +170763383664,213,0 +170763383712,214,0 +170763383760,214,0 +170763383808,214,0 +170763383856,214,0 +170763383905,214,0 +170763383955,215,0 +170763384002,215,0 +170763384052,215,0 +170763384100,215,0 +170763384148,216,0 +170763384197,216,0 +170763384245,216,0 +170763384295,216,0 +170763384343,216,0 +170763384391,216,0 +170763384438,213,0 +170763384486,214,0 +170763384534,213,0 +170763384582,213,0 +170763384630,214,0 +170763384678,214,0 +170763384726,214,0 +170763384773,214,0 +170763384823,214,0 +170763384871,214,0 +170763384919,214,0 +170763384966,214,0 +170763385014,214,0 +170763385062,215,0 +170763385110,215,0 +170763385158,215,0 +170763385206,215,0 +170763385253,216,0 +170763385301,216,0 +170763385349,214,0 +170763385397,213,0 +170763385445,213,0 +170763385493,214,0 +170763385541,214,0 +170763385590,214,0 +170763385638,214,0 +170763385686,214,0 +170763385734,215,0 +170763385782,215,0 +170763385829,215,0 +170763385877,215,0 +170763385925,215,0 +170763385973,216,0 +170763386021,216,0 +170763386069,217,0 +170763386117,216,0 +170763386165,216,0 +170763386214,216,0 +170763386262,216,0 +170763386310,214,0 +170763386358,214,0 +170763386407,214,0 +170763386455,214,0 +170763386505,215,0 +170763386553,215,0 +170763386602,215,0 +170763386650,215,0 +170763386698,215,0 +170763386746,216,0 +170763386794,216,0 +170763386842,216,0 +170763386891,217,0 +170763386941,216,0 +170763386989,216,0 +170763387037,216,0 +170763387086,217,0 +170763387134,217,0 +170763387182,216,0 +170763387230,214,0 +170763387279,214,0 +170763387327,214,0 +170763387375,214,0 +170763387423,215,0 +170763387471,215,0 +170763387518,215,0 +170763387566,215,0 +170763387614,215,0 +170763387662,215,0 +170763387710,214,0 +170763387760,215,0 +170763387808,216,0 +170763387856,216,0 +170763387903,216,0 +170763387951,216,0 +170763387999,217,0 +170763388047,216,0 +170763388095,216,0 +170763388143,214,0 +170763388191,214,0 +170763388241,214,0 +170763388290,214,0 +170763388338,214,0 +170763388388,214,0 +170763388437,214,0 +170763388485,215,0 +170763388535,215,0 +170763388582,215,0 +170763388630,215,0 +170763388680,215,0 +170763388728,216,0 +170763388777,216,0 +170763388825,217,0 +170763388873,216,0 +170763388921,216,0 +170763388969,216,0 +170763389018,216,0 +170763389066,216,0 +170763389114,214,0 +170763389162,213,0 +170763389210,213,0 +170763389258,214,0 +170763389306,213,0 +170763389353,214,0 +170763389401,214,0 +170763389449,214,0 +170763389499,214,0 +170763389547,214,0 +170763389596,215,0 +170763389645,215,0 +170763389693,215,0 +170763389743,215,0 +170763389792,215,0 +170763389840,216,0 +170763389890,216,0 +170763389938,216,0 +170763389986,216,0 +170763390035,214,0 +170763390085,213,0 +170763390134,213,0 +170763390184,214,0 +170763390232,214,0 +170763390281,214,0 +170763390329,214,0 +170763390377,214,0 +170763390425,214,0 +170763390473,215,0 +170763390522,215,0 +170763390570,215,0 +170763390618,215,0 +170763390666,216,0 +170763390715,215,0 +170763390763,216,0 +170763390813,216,0 +170763390861,216,0 +170763390909,217,0 +170763390956,215,0 +170763391006,213,0 +170763391054,214,0 +170763391102,214,0 +170763391150,214,0 +170763391197,214,0 +170763391247,214,0 +170763391295,215,0 +170763391344,215,0 +170763391392,215,0 +170763391442,215,0 +170763391489,216,0 +170763391537,216,0 +170763391587,216,0 +170763391636,216,0 +170763391684,217,0 +170763391734,217,0 +170763391782,216,0 +170763391830,216,0 +170763391879,214,0 +170763391928,214,0 +170763391976,214,0 +170763392024,214,0 +170763392074,214,0 +170763392123,214,0 +170763392173,214,0 +170763392221,215,0 +170763392269,215,0 +170763392317,215,0 +170763392365,215,0 +170763392413,216,0 +170763392461,216,0 +170763392510,216,0 +170763392560,216,0 +170763392608,216,0 +170763392656,217,0 +170763392704,216,0 +170763392751,217,0 +170763392799,215,0 +170763392847,214,0 +170763392897,213,0 +170763392945,213,0 +170763392993,214,0 +170763393041,214,0 +170763393088,214,0 +170763393136,215,0 +170763393184,215,0 +170763393232,215,0 +170763393280,215,0 +170763393328,216,0 +170763393376,216,0 +170763393424,216,0 +170763393472,216,0 +170763393520,216,0 +170763393568,216,0 +170763393617,216,0 +170763393667,216,0 +170763393716,216,0 +170763393764,214,0 +170763393814,213,0 +170763393862,213,0 +170763393911,213,0 +170763393961,213,0 +170763394009,214,0 +170763394058,214,0 +170763394108,214,0 +170763394157,215,0 +170763394205,214,0 +170763394253,215,0 +170763394301,215,0 +170763394349,215,0 +170763394397,215,0 +170763394446,216,0 +170763394496,216,0 +170763394545,216,0 +170763394595,216,0 +170763394645,216,0 +170763394693,214,0 +170763394742,213,0 +170763394790,214,0 +170763394839,213,0 +170763394887,214,0 +170763394935,214,0 +170763394985,214,0 +170763395033,214,0 +170763395081,215,0 +170763395129,215,0 +170763395178,215,0 +170763395226,215,0 +170763395274,215,0 +170763395322,216,0 +170763395372,216,0 +170763395419,216,0 +170763395469,216,0 +170763395517,216,0 +170763395566,217,0 +170763395616,214,0 +170763395664,214,0 +170763395712,213,0 +170763395760,213,0 +170763395808,214,0 +170763395856,214,0 +170763395905,214,0 +170763395953,214,0 +170763396002,214,0 +170763396050,215,0 +170763396098,215,0 +170763396146,215,0 +170763396194,215,0 +170763396242,215,0 +170763396290,216,0 +170763396340,216,0 +170763396389,216,0 +170763396437,218,0 +170763396485,217,0 +170763396533,217,0 +170763396582,214,0 +170763396630,213,0 +170763396679,213,0 +170763396727,214,0 +170763396775,214,0 +170763396823,214,0 +170763396871,214,0 +170763396919,214,0 +170763396967,215,0 +170763397014,215,0 +170763397062,215,0 +170763397110,215,0 +170763397158,216,0 +170763397206,216,0 +170763397254,216,0 +170763397302,216,0 +170763397351,216,0 +170763397399,216,0 +170763397449,216,0 +170763397497,214,0 +170763397545,214,0 +170763397593,213,0 +170763397642,213,0 +170763397690,213,0 +170763397740,214,0 +170763397789,214,0 +170763397837,214,0 +170763397885,214,0 +170763397932,215,0 +170763397980,215,0 +170763398028,215,0 +170763398076,215,0 +170763398124,216,0 +170763398173,216,0 +170763398221,216,0 +170763398269,216,0 +170763398317,216,0 +170763398365,216,0 +170763398414,214,0 +170763398462,213,0 +170763398510,213,0 +170763398558,214,0 +170763398606,213,0 +170763398653,213,0 +170763398701,214,0 +170763398749,214,0 +170763398797,214,0 +170763398846,215,0 +170763398894,215,0 +170763398942,215,0 +170763398990,215,0 +170763399038,216,0 +170763399087,216,0 +170763399137,216,0 +170763399185,216,0 +170763399233,216,0 +170763399281,216,0 +170763399330,216,0 +170763399378,213,0 +170763399426,213,0 +170763399474,214,0 +170763399522,213,0 +170763399570,213,0 +170763399619,214,0 +170763399669,214,0 +170763399717,214,0 +170763399764,215,0 +170763399814,215,0 +170763399862,215,0 +170763399910,215,0 +170763399959,215,0 +170763400009,215,0 +170763400057,215,0 +170763400105,216,0 +170763400153,216,0 +170763400201,216,0 +170763400248,216,0 +170763400296,214,0 +170763400346,213,0 +170763400394,214,0 +170763400442,214,0 +170763400491,214,0 +170763400539,215,0 +170763400587,214,0 +170763400635,215,0 +170763400683,215,0 +170763400731,215,0 +170763400779,215,0 +170763400826,215,0 +170763400874,216,0 +170763400922,216,0 +170763400972,216,0 +170763401020,216,0 +170763401069,216,0 +170763401117,216,0 +170763401167,216,0 +170763401215,216,0 +170763401264,214,0 +170763401312,214,0 +170763401360,214,0 +170763401410,214,0 +170763401458,215,0 +170763401506,215,0 +170763401554,215,0 +170763401603,215,0 +170763401651,215,0 +170763401699,215,0 +170763401747,216,0 +170763401795,216,0 +170763401844,216,0 +170763401892,216,0 +170763401942,216,0 +170763401991,216,0 +170763402039,216,0 +170763402087,217,0 +170763402136,216,0 +170763402184,214,0 +170763402234,214,0 +170763402283,214,0 +170763402333,214,0 +170763402380,214,0 +170763402430,214,0 +170763402479,215,0 +170763402527,215,0 +170763402577,215,0 +170763402625,215,0 +170763402673,215,0 +170763402721,216,0 +170763402768,216,0 +170763402816,216,0 +170763402864,216,0 +170763402914,217,0 +170763402962,217,0 +170763403010,217,0 +170763403057,216,0 +170763403105,214,0 +170763403153,213,0 +170763403201,213,0 +170763403249,214,0 +170763403299,214,0 +170763403347,214,0 +170763403394,215,0 +170763403442,215,0 +170763403490,215,0 +170763403538,215,0 +170763403587,216,0 +170763403635,215,0 +170763403683,215,0 +170763403731,217,0 +170763403779,216,0 +170763403827,216,0 +170763403875,216,0 +170763403924,217,0 +170763403974,217,0 +170763404023,216,0 +170763404073,213,0 +170763404121,213,0 +170763404169,213,0 +170763404217,214,0 +170763404266,214,0 +170763404314,214,0 +170763404362,214,0 +170763404410,214,0 +170763404458,214,0 +170763404505,215,0 +170763404555,215,0 +170763404603,215,0 +170763404650,216,0 +170763404698,216,0 +170763404746,216,0 +170763404794,216,0 +170763404843,216,0 +170763404891,216,0 +170763404939,216,0 +170763404987,214,0 +170763405035,214,0 +170763405083,214,0 +170763405132,213,0 +170763405182,214,0 +170763405230,214,0 +170763405277,214,0 +170763405325,214,0 +170763405373,214,0 +170763405421,214,0 +170763405469,214,0 +170763405518,215,0 +170763405566,215,0 +170763405614,216,0 +170763405662,216,0 +170763405710,216,0 +170763405760,216,0 +170763405808,216,0 +170763405857,216,0 +170763405905,216,0 +170763405954,213,0 +170763406002,213,0 +170763406050,214,0 +170763406098,213,0 +170763406146,214,0 +170763406194,213,0 +170763406242,213,0 +170763406292,214,0 +170763406341,214,0 +170763406389,214,0 +170763406437,215,0 +170763406485,215,0 +170763406533,215,0 +170763406581,215,0 +170763406629,215,0 +170763406677,216,0 +170763406725,216,0 +170763406772,216,0 +170763406822,216,0 +170763406871,214,0 +170763406919,214,0 +170763406967,214,0 +170763407017,214,0 +170763407066,214,0 +170763407114,214,0 +170763407162,214,0 +170763407210,215,0 +170763407258,215,0 +170763407306,215,0 +170763407355,216,0 +170763407403,216,0 +170763407453,216,0 +170763407501,216,0 +170763407549,216,0 +170763407598,216,0 +170763407646,217,0 +170763407696,216,0 +170763407744,216,0 +170763407792,216,0 +170763407839,214,0 +170763407887,213,0 +170763407935,214,0 +170763407983,214,0 +170763408031,214,0 +170763408081,215,0 +170763408130,215,0 +170763408180,215,0 +170763408227,215,0 +170763408275,216,0 +170763408323,216,0 +170763408373,216,0 +170763408421,216,0 +170763408468,216,0 +170763408518,216,0 +170763408566,216,0 +170763408614,216,0 +170763408661,216,0 +170763408709,216,0 +170763408757,214,0 +170763408807,214,0 +170763408855,214,0 +170763408904,214,0 +170763408952,214,0 +170763409002,214,0 +170763409050,215,0 +170763409097,215,0 +170763409145,215,0 +170763409195,215,0 +170763409243,216,0 +170763409291,216,0 +170763409340,216,0 +170763409390,216,0 +170763409438,216,0 +170763409486,216,0 +170763409535,216,0 +170763409585,216,0 +170763409633,216,0 +170763409681,214,0 +170763409730,213,0 +170763409780,214,0 +170763409828,214,0 +170763409877,214,0 +170763409925,214,0 +170763409973,214,0 +170763410021,215,0 +170763410070,214,0 +170763410118,215,0 +170763410166,215,0 +170763410214,215,0 +170763410264,216,0 +170763410313,216,0 +170763410361,216,0 +170763410409,216,0 +170763410457,216,0 +170763410505,217,0 +170763410553,217,0 +170763410603,216,0 +170763410650,214,0 +170763410700,214,0 +170763410748,214,0 +170763410796,214,0 +170763410844,214,0 +170763410892,214,0 +170763410940,214,0 +170763410989,215,0 +170763411039,215,0 +170763411088,215,0 +170763411136,216,0 +170763411184,216,0 +170763411232,216,0 +170763411281,216,0 +170763411329,217,0 +170763411377,216,0 +170763411425,217,0 +170763411473,217,0 +170763411520,216,0 +170763411568,214,0 +170763411616,214,0 +170763411664,214,0 +170763411712,214,0 +170763411760,214,0 +170763411808,214,0 +170763411855,214,0 +170763411903,214,0 +170763411953,215,0 +170763412002,215,0 +170763412050,215,0 +170763412098,216,0 +170763412146,216,0 +170763412194,216,0 +170763412243,216,0 +170763412293,216,0 +170763412341,217,0 +170763412388,217,0 +170763412436,217,0 +170763412484,216,0 +170763412532,214,0 +170763412580,214,0 +170763412628,214,0 +170763412675,214,0 +170763412723,214,0 +170763412771,214,0 +170763412819,214,0 +170763412867,214,0 +170763412915,215,0 +170763412963,215,0 +170763413011,215,0 +170763413059,216,0 +170763413106,215,0 +170763413154,215,0 +170763413202,216,0 +170763413250,216,0 +170763413298,216,0 +170763413346,216,0 +170763413394,217,0 +170763413443,215,0 +170763413493,214,0 +170763413541,214,0 +170763413590,214,0 +170763413638,214,0 +170763413688,214,0 +170763413735,214,0 +170763413783,215,0 +170763413831,215,0 +170763413881,215,0 +170763413929,215,0 +170763413978,215,0 +170763414028,216,0 +170763414076,216,0 +170763414124,216,0 +170763414172,216,0 +170763414221,216,0 +170763414269,216,0 +170763414319,217,0 +170763414368,216,0 +170763414416,214,0 +170763414464,214,0 +170763414512,214,0 +170763414560,214,0 +170763414610,214,0 +170763414657,214,0 +170763414705,214,0 +170763414753,215,0 +170763414803,215,0 +170763414851,215,0 +170763414899,215,0 +170763414947,216,0 +170763414994,216,0 +170763415042,216,0 +170763415090,216,0 +170763415138,216,0 +170763415188,216,0 +170763415237,216,0 +170763415287,217,0 +170763415336,214,0 +170763415384,213,0 +170763415432,214,0 +170763415480,214,0 +170763415528,213,0 +170763415576,214,0 +170763415624,214,0 +170763415672,214,0 +170763415720,214,0 +170763415769,215,0 +170763415817,215,0 +170763415867,215,0 +170763415915,215,0 +170763415962,216,0 +170763416010,216,0 +170763416058,216,0 +170763416106,216,0 +170763416154,216,0 +170763416202,216,0 +170763416250,216,0 +170763416297,214,0 +170763416345,213,0 +170763416393,213,0 +170763416441,214,0 +170763416490,214,0 +170763416538,214,0 +170763416586,214,0 +170763416634,215,0 +170763416682,215,0 +170763416731,215,0 +170763416779,215,0 +170763416827,215,0 +170763416875,215,0 +170763416923,216,0 +170763416970,216,0 +170763417018,216,0 +170763417066,216,0 +170763417116,216,0 +170763417164,216,0 +170763417213,214,0 +170763417263,213,0 +170763417311,214,0 +170763417359,214,0 +170763417407,214,0 +170763417455,214,0 +170763417503,214,0 +170763417550,215,0 +170763417598,214,0 +170763417646,215,0 +170763417696,215,0 +170763417745,215,0 +170763417793,216,0 +170763417841,216,0 +170763417891,216,0 +170763417938,216,0 +170763417986,217,0 +170763418036,217,0 +170763418085,216,0 +170763418135,216,0 +170763418183,213,0 +170763418231,214,0 +170763418280,214,0 +170763418328,214,0 +170763418378,214,0 +170763418426,214,0 +170763418475,214,0 +170763418523,215,0 +170763418571,214,0 +170763418619,215,0 +170763418667,215,0 +170763418714,215,0 +170763418762,216,0 +170763418812,216,0 +170763418859,216,0 +170763418907,216,0 +170763418955,217,0 +170763419003,216,0 +170763419051,217,0 +170763419099,214,0 +170763419148,214,0 +170763419196,214,0 +170763419244,214,0 +170763419292,214,0 +170763419340,214,0 +170763419387,215,0 +170763419437,215,0 +170763419485,215,0 +170763419532,215,0 +170763419580,215,0 +170763419628,216,0 +170763419676,216,0 +170763419724,216,0 +170763419771,216,0 +170763419821,216,0 +170763419869,217,0 +170763419916,216,0 +170763419964,217,0 +170763420012,216,0 +170763420060,214,0 +170763420108,214,0 +170763420156,214,0 +170763420204,214,0 +170763420251,214,0 +170763420301,214,0 +170763420349,214,0 +170763420397,215,0 +170763420444,215,0 +170763420492,215,0 +170763420542,214,0 +170763420590,216,0 +170763420637,215,0 +170763420685,216,0 +170763420733,217,0 +170763420781,216,0 +170763420829,216,0 +170763420877,217,0 +170763420925,217,0 +170763420973,216,0 +170763421021,214,0 +170763421070,214,0 +170763421120,214,0 +170763421169,214,0 +170763421217,214,0 +170763421265,214,0 +170763421313,214,0 +170763421361,215,0 +170763421409,215,0 +170763421459,215,0 +170763421506,215,0 +170763421554,215,0 +170763421602,216,0 +170763421650,216,0 +170763421698,216,0 +170763421746,216,0 +170763421794,216,0 +170763421842,217,0 +170763421890,217,0 +170763421937,216,0 +170763421985,214,0 +170763422033,214,0 +170763422081,213,0 +170763422129,214,0 +170763422176,214,0 +170763422224,214,0 +170763422272,214,0 +170763422320,214,0 +170763422369,214,0 +170763422417,215,0 +170763422465,215,0 +170763422513,215,0 +170763422560,215,0 +170763422608,216,0 +170763422656,216,0 +170763422704,217,0 +170763422752,219,0 +170763422799,217,0 +170763422847,216,0 +170763422895,215,0 +170763422943,214,0 +170763422991,213,0 +170763423039,214,0 +170763423088,214,0 +170763423136,214,0 +170763423184,214,0 +170763423231,214,0 +170763423279,214,0 +170763423327,214,0 +170763423375,215,0 +170763423423,215,0 +170763423471,215,0 +170763423519,215,0 +170763423566,215,0 +170763423614,216,0 +170763423662,216,0 +170763423712,216,0 +170763423760,216,0 +170763423809,216,0 +170763423857,214,0 +170763423905,214,0 +170763423953,214,0 +170763424001,214,0 +170763424050,214,0 +170763424098,214,0 +170763424148,214,0 +170763424195,214,0 +170763424245,214,0 +170763424293,215,0 +170763424342,215,0 +170763424390,215,0 +170763424440,216,0 +170763424489,216,0 +170763424537,216,0 +170763424585,216,0 +170763424634,217,0 +170763424682,217,0 +170763424730,217,0 +170763424778,216,0 +170763424826,214,0 +170763424875,213,0 +170763424923,213,0 +170763424971,214,0 +170763425020,214,0 +170763425068,214,0 +170763425116,214,0 +170763425164,214,0 +170763425213,215,0 +170763425263,215,0 +170763425312,215,0 +170763425360,216,0 +170763425408,215,0 +170763425456,216,0 +170763425505,216,0 +170763425553,216,0 +170763425601,216,0 +170763425649,216,0 +170763425697,216,0 +170763425745,214,0 +170763425795,213,0 +170763425842,214,0 +170763425890,213,0 +170763425938,214,0 +170763425986,214,0 +170763426034,214,0 +170763426082,215,0 +170763426129,215,0 +170763426179,215,0 +170763426227,216,0 +170763426274,215,0 +170763426322,216,0 +170763426370,216,0 +170763426418,216,0 +170763426467,216,0 +170763426515,216,0 +170763426563,216,0 +170763426611,216,0 +170763426659,217,0 +170763426707,214,0 +170763426755,214,0 +170763426804,214,0 +170763426854,214,0 +170763426902,214,0 +170763426950,214,0 +170763426998,214,0 +170763427046,214,0 +170763427093,215,0 +170763427143,215,0 +170763427192,215,0 +170763427240,215,0 +170763427290,215,0 +170763427338,216,0 +170763427386,216,0 +170763427434,216,0 +170763427481,216,0 +170763427529,216,0 +170763427577,216,0 +170763427625,216,0 +170763427673,214,0 +170763427721,214,0 +170763427769,214,0 +170763427819,214,0 +170763427867,214,0 +170763427915,214,0 +170763427963,214,0 +170763428011,214,0 +170763428059,214,0 +170763428106,215,0 +170763428154,215,0 +170763428202,215,0 +170763428250,216,0 +170763428300,216,0 +170763428349,216,0 +170763428397,217,0 +170763428446,216,0 +170763428494,216,0 +170763428544,216,0 +170763428593,214,0 +170763428641,214,0 +170763428690,214,0 +170763428738,214,0 +170763428786,214,0 +170763428834,214,0 +170763428882,214,0 +170763428930,214,0 +170763428978,214,0 +170763429026,215,0 +170763429075,215,0 +170763429123,215,0 +170763429171,215,0 +170763429219,216,0 +170763429267,216,0 +170763429314,216,0 +170763429362,216,0 +170763429410,216,0 +170763429458,216,0 +170763429506,216,0 +170763429554,214,0 +170763429603,213,0 +170763429651,214,0 +170763429699,214,0 +170763429747,214,0 +170763429795,214,0 +170763429843,214,0 +170763429892,214,0 +170763429940,214,0 +170763429990,215,0 +170763430039,215,0 +170763430087,215,0 +170763430136,216,0 +170763430186,215,0 +170763430234,216,0 +170763430282,216,0 +170763430330,216,0 +170763430378,217,0 +170763430425,217,0 +170763430473,216,0 +170763430521,214,0 +170763430571,214,0 +170763430619,214,0 +170763430666,214,0 +170763430716,214,0 +170763430764,214,0 +170763430812,215,0 +170763430861,215,0 +170763430909,215,0 +170763430957,215,0 +170763431006,216,0 +170763431054,216,0 +170763431102,217,0 +170763431150,216,0 +170763431200,216,0 +170763431248,217,0 +170763431296,217,0 +170763431345,217,0 +170763431393,216,0 +170763431441,216,0 +170763431489,214,0 +170763431538,214,0 +170763431586,214,0 +170763431634,214,0 +170763431682,214,0 +170763431730,215,0 +170763431778,215,0 +170763431826,215,0 +170763431875,215,0 +170763431923,216,0 +170763431973,216,0 +170763432020,216,0 +170763432068,216,0 +170763432118,216,0 +170763432166,216,0 +170763432214,217,0 +170763432263,217,0 +170763432313,217,0 +170763432362,216,0 +170763432412,214,0 +170763432459,214,0 +170763432507,213,0 +170763432555,214,0 +170763432605,214,0 +170763432653,214,0 +170763432701,214,0 +170763432749,215,0 +170763432797,215,0 +170763432845,215,0 +170763432894,215,0 +170763432944,215,0 +170763432992,215,0 +170763433041,216,0 +170763433089,216,0 +170763433137,217,0 +170763433186,216,0 +170763433234,216,0 +170763433284,217,0 +170763433332,217,0 +170763433380,214,0 +170763433429,214,0 +170763433477,213,0 +170763433525,214,0 +170763433573,214,0 +170763433621,214,0 +170763433670,214,0 +170763433718,214,0 +170763433768,215,0 +170763433816,215,0 +170763433864,215,0 +170763433913,215,0 +170763433963,215,0 +170763434012,216,0 +170763434060,216,0 +170763434108,216,0 +170763434158,216,0 +170763434206,216,0 +170763434255,217,0 +170763434303,214,0 +170763434351,213,0 +170763434400,214,0 +170763434448,213,0 +170763434498,214,0 +170763434546,214,0 +170763434594,214,0 +170763434642,214,0 +170763434691,214,0 +170763434739,214,0 +170763434788,215,0 +170763434838,215,0 +170763434886,215,0 +170763434934,215,0 +170763434983,216,0 +170763435031,215,0 +170763435079,216,0 +170763435129,216,0 +170763435177,216,0 +170763435225,217,0 +170763435273,214,0 +170763435322,214,0 +170763435370,214,0 +170763435420,214,0 +170763435467,214,0 +170763435515,214,0 +170763435565,214,0 +170763435613,214,0 +170763435661,214,0 +170763435709,214,0 +170763435757,215,0 +170763435806,215,0 +170763435854,215,0 +170763435902,216,0 +170763435951,216,0 +170763435999,216,0 +170763436047,216,0 +170763436097,216,0 +170763436144,216,0 +170763436192,216,0 +170763436240,213,0 +170763436290,214,0 +170763436338,214,0 +170763436386,214,0 +170763436433,214,0 +170763436481,214,0 +170763436529,214,0 +170763436579,215,0 +170763436627,215,0 +170763436675,215,0 +170763436723,216,0 +170763436772,215,0 +170763436820,215,0 +170763436868,216,0 +170763436916,216,0 +170763436966,216,0 +170763437015,216,0 +170763437063,216,0 +170763437111,216,0 +170763437159,214,0 +170763437207,214,0 +170763437256,214,0 +170763437304,214,0 +170763437354,214,0 +170763437403,214,0 +170763437451,215,0 +170763437499,215,0 +170763437547,215,0 +170763437595,215,0 +170763437643,216,0 +170763437691,215,0 +170763437738,216,0 +170763437786,216,0 +170763437836,217,0 +170763437884,216,0 +170763437932,217,0 +170763437980,217,0 +170763438028,217,0 +170763438076,217,0 +170763438124,214,0 +170763438173,214,0 +170763438223,214,0 +170763438272,214,0 +170763438320,215,0 +170763438368,215,0 +170763438416,215,0 +170763438463,215,0 +170763438511,215,0 +170763438559,215,0 +170763438607,215,0 +170763438656,216,0 +170763438704,216,0 +170763438752,216,0 +170763438800,216,0 +170763438848,216,0 +170763438896,217,0 +170763438943,217,0 +170763438991,217,0 +170763439039,216,0 +170763439087,214,0 +170763439136,214,0 +170763439184,214,0 +170763439232,214,0 +170763439280,214,0 +170763439328,214,0 +170763439377,215,0 +170763439425,215,0 +170763439473,215,0 +170763439521,215,0 +170763439570,215,0 +170763439620,216,0 +170763439668,216,0 +170763439717,216,0 +170763439765,216,0 +170763439813,217,0 +170763439863,216,0 +170763439911,217,0 +170763439958,216,0 +170763440006,215,0 +170763440054,213,0 +170763440104,213,0 +170763440152,213,0 +170763440201,214,0 +170763440249,214,0 +170763440299,214,0 +170763440348,214,0 +170763440398,214,0 +170763440447,214,0 +170763440495,215,0 +170763440543,215,0 +170763440593,215,0 +170763440641,216,0 +170763440689,216,0 +170763440737,216,0 +170763440784,216,0 +170763440834,216,0 +170763440882,217,0 +170763440930,216,0 +170763440979,214,0 +170763441029,213,0 +170763441077,214,0 +170763441125,213,0 +170763441174,214,0 +170763441224,215,0 +170763441273,214,0 +170763441323,214,0 +170763441373,215,0 +170763441422,215,0 +170763441470,215,0 +170763441518,215,0 +170763441566,216,0 +170763441614,216,0 +170763441662,216,0 +170763441710,216,0 +170763441758,216,0 +170763441806,217,0 +170763441854,217,0 +170763441901,216,0 +170763441951,214,0 +170763442000,213,0 +170763442048,213,0 +170763442098,214,0 +170763442146,213,0 +170763442195,214,0 +170763442243,214,0 +170763442293,214,0 +170763442342,215,0 +170763442390,215,0 +170763442438,215,0 +170763442488,215,0 +170763442537,215,0 +170763442587,215,0 +170763442635,216,0 +170763442683,216,0 +170763442732,216,0 +170763442782,217,0 +170763442831,216,0 +170763442879,214,0 +170763442927,214,0 +170763442975,214,0 +170763443023,214,0 +170763443071,214,0 +170763443119,214,0 +170763443167,214,0 +170763443216,214,0 +170763443264,214,0 +170763443314,215,0 +170763443363,215,0 +170763443413,215,0 +170763443460,216,0 +170763443508,216,0 +170763443556,216,0 +170763443606,216,0 +170763443655,216,0 +170763443705,216,0 +170763443753,216,0 +170763443802,215,0 +170763443852,213,0 +170763443901,213,0 +170763443949,214,0 +170763443997,213,0 +170763444045,214,0 +170763444093,214,0 +170763444142,214,0 +170763444190,214,0 +170763444238,214,0 +170763444286,215,0 +170763444334,215,0 +170763444382,215,0 +170763444430,215,0 +170763444478,215,0 +170763444526,216,0 +170763444574,216,0 +170763444623,216,0 +170763444671,216,0 +170763444719,217,0 +170763444767,214,0 +170763444815,213,0 +170763444863,214,0 +170763444911,214,0 +170763444960,214,0 +170763445010,214,0 +170763445058,214,0 +170763445106,214,0 +170763445154,214,0 +170763445202,214,0 +170763445249,215,0 +170763445297,215,0 +170763445345,215,0 +170763445393,215,0 +170763445443,215,0 +170763445491,216,0 +170763445538,216,0 +170763445588,216,0 +170763445636,217,0 +170763445684,217,0 +170763445732,214,0 +170763445781,214,0 +170763445829,213,0 +170763445877,214,0 +170763445925,214,0 +170763445973,214,0 +170763446021,214,0 +170763446070,214,0 +170763446120,214,0 +170763446168,215,0 +170763446216,215,0 +170763446265,215,0 +170763446313,215,0 +170763446363,216,0 +170763446410,216,0 +170763446458,216,0 +170763446506,216,0 +170763446556,216,0 +170763446604,217,0 +170763446653,215,0 +170763446701,214,0 +170763446751,213,0 +170763446799,213,0 +170763446848,213,0 +170763446896,214,0 +170763446945,214,0 +170763446995,214,0 +170763447043,214,0 +170763447091,214,0 +170763447139,214,0 +170763447187,215,0 +170763447235,215,0 +170763447282,216,0 +170763447330,216,0 +170763447380,215,0 +170763447428,216,0 +170763447477,216,0 +170763447527,216,0 +170763447577,216,0 +170763447626,214,0 +170763447674,214,0 +170763447722,213,0 +170763447772,214,0 +170763447819,214,0 +170763447867,214,0 +170763447915,214,0 +170763447965,214,0 +170763448013,214,0 +170763448062,214,0 +170763448110,215,0 +170763448160,215,0 +170763448209,215,0 +170763448258,216,0 +170763448306,216,0 +170763448356,216,0 +170763448404,216,0 +170763448452,216,0 +170763448500,216,0 +170763448548,216,0 +170763448596,214,0 +170763448643,214,0 +170763448691,214,0 +170763448741,213,0 +170763448789,214,0 +170763448837,214,0 +170763448886,214,0 +170763448936,214,0 +170763448985,215,0 +170763449033,215,0 +170763449081,215,0 +170763449129,215,0 +170763449177,215,0 +170763449225,215,0 +170763449274,216,0 +170763449324,216,0 +170763449372,216,0 +170763449421,216,0 +170763449469,216,0 +170763449517,214,0 +170763449565,214,0 +170763449615,214,0 +170763449663,213,0 +170763449711,213,0 +170763449759,214,0 +170763449807,214,0 +170763449856,214,0 +170763449904,214,0 +170763449952,214,0 +170763450000,214,0 +170763450048,215,0 +170763450097,215,0 +170763450145,215,0 +170763450193,216,0 +170763450241,216,0 +170763450289,216,0 +170763450337,216,0 +170763450385,215,0 +170763450434,216,0 +170763450482,214,0 +170763450530,214,0 +170763450578,214,0 +170763450626,214,0 +170763450675,214,0 +170763450725,214,0 +170763450773,214,0 +170763450821,214,0 +170763450870,214,0 +170763450920,214,0 +170763450969,215,0 +170763451017,215,0 +170763451067,215,0 +170763451116,215,0 +170763451166,215,0 +170763451214,216,0 +170763451262,216,0 +170763451311,216,0 +170763451361,217,0 +170763451409,216,0 +170763451458,213,0 +170763451508,214,0 +170763451557,213,0 +170763451606,214,0 +170763451654,214,0 +170763451702,214,0 +170763451750,214,0 +170763451798,215,0 +170763451846,214,0 +170763451894,214,0 +170763451942,215,0 +170763451990,215,0 +170763452038,215,0 +170763452087,215,0 +170763452135,215,0 +170763452183,216,0 +170763452231,216,0 +170763452279,216,0 +170763452327,216,0 +170763452375,214,0 +170763452424,213,0 +170763452472,214,0 +170763452521,214,0 +170763452569,214,0 +170763452617,214,0 +170763452667,214,0 +170763452716,214,0 +170763452764,215,0 +170763452812,215,0 +170763452860,215,0 +170763452908,216,0 +170763452956,216,0 +170763453004,216,0 +170763453052,216,0 +170763453100,216,0 +170763453149,216,0 +170763453197,217,0 +170763453245,216,0 +170763453294,216,0 +170763453342,214,0 +170763453392,214,0 +170763453440,213,0 +170763453489,214,0 +170763453539,214,0 +170763453587,214,0 +170763453635,214,0 +170763453683,214,0 +170763453730,215,0 +170763453780,215,0 +170763453828,215,0 +170763453876,216,0 +170763453925,216,0 +170763453973,216,0 +170763454023,216,0 +170763454071,216,0 +170763454119,217,0 +170763454168,216,0 +170763454216,217,0 +170763454264,216,0 +170763454312,214,0 +170763454360,214,0 +170763454408,214,0 +170763454456,214,0 +170763454504,214,0 +170763454552,214,0 +170763454600,214,0 +170763454648,215,0 +170763454696,215,0 +170763454745,215,0 +170763454795,215,0 +170763454843,216,0 +170763454891,216,0 +170763454938,216,0 +170763454986,216,0 +170763455036,217,0 +170763455084,217,0 +170763455132,217,0 +170763455181,216,0 +170763455229,215,0 +170763455277,214,0 +170763455325,214,0 +170763455374,214,0 +170763455424,214,0 +170763455472,214,0 +170763455520,214,0 +170763455569,215,0 +170763455619,215,0 +170763455668,215,0 +170763455716,215,0 +170763455764,216,0 +170763455812,216,0 +170763455862,216,0 +170763455909,216,0 +170763455957,216,0 +170763456005,216,0 +170763456055,217,0 +170763456104,217,0 +170763456152,216,0 +170763456202,214,0 +170763456250,214,0 +170763456299,214,0 +170763456347,213,0 +170763456395,214,0 +170763456443,214,0 +170763456491,214,0 +170763456541,214,0 +170763456589,215,0 +170763456636,215,0 +170763456686,215,0 +170763456734,215,0 +170763456782,216,0 +170763456830,216,0 +170763456879,216,0 +170763456927,216,0 +170763456975,216,0 +170763457025,216,0 +170763457074,216,0 +170763457124,214,0 +170763457172,214,0 +170763457220,214,0 +170763457269,214,0 +170763457317,214,0 +170763457365,214,0 +170763457413,214,0 +170763457461,215,0 +170763457509,215,0 +170763457557,216,0 +170763457606,215,0 +170763457656,216,0 +170763457704,216,0 +170763457752,215,0 +170763457801,216,0 +170763457851,216,0 +170763457899,217,0 +170763457947,216,0 +170763457995,216,0 +170763458042,216,0 +170763458092,214,0 +170763458140,214,0 +170763458189,213,0 +170763458237,214,0 +170763458287,214,0 +170763458335,214,0 +170763458384,214,0 +170763458434,215,0 +170763458482,215,0 +170763458530,215,0 +170763458577,216,0 +170763458625,216,0 +170763458675,216,0 +170763458723,216,0 +170763458771,216,0 +170763458820,217,0 +170763458870,216,0 +170763458918,217,0 +170763458967,217,0 +170763459015,215,0 +170763459065,214,0 +170763459114,214,0 +170763459162,214,0 +170763459210,214,0 +170763459258,214,0 +170763459307,214,0 +170763459357,215,0 +170763459404,215,0 +170763459454,216,0 +170763459504,215,0 +170763459553,216,0 +170763459601,216,0 +170763459649,216,0 +170763459698,216,0 +170763459748,216,0 +170763459796,216,0 +170763459844,216,0 +170763459893,217,0 +170763459941,217,0 +170763459989,214,0 +170763460037,214,0 +170763460086,214,0 +170763460136,214,0 +170763460184,214,0 +170763460232,214,0 +170763460281,214,0 +170763460331,215,0 +170763460380,215,0 +170763460428,215,0 +170763460476,215,0 +170763460526,215,0 +170763460574,216,0 +170763460621,216,0 +170763460671,216,0 +170763460719,216,0 +170763460769,217,0 +170763460818,217,0 +170763460866,216,0 +170763460916,215,0 +170763460965,214,0 +170763461015,214,0 +170763461064,214,0 +170763461114,214,0 +170763461163,214,0 +170763461211,214,0 +170763461259,214,0 +170763461307,214,0 +170763461355,215,0 +170763461403,215,0 +170763461451,215,0 +170763461499,215,0 +170763461547,215,0 +170763461595,215,0 +170763461644,216,0 +170763461692,216,0 +170763461740,217,0 +170763461789,216,0 +170763461837,216,0 +170763461885,214,0 +170763461933,213,0 +170763461983,214,0 +170763462032,214,0 +170763462080,214,0 +170763462130,214,0 +170763462178,214,0 +170763462226,214,0 +170763462274,214,0 +170763462322,215,0 +170763462371,215,0 +170763462419,215,0 +170763462467,215,0 +170763462515,215,0 +170763462563,216,0 +170763462612,216,0 +170763462662,216,0 +170763462711,217,0 +170763462759,216,0 +170763462809,217,0 +170763462858,214,0 +170763462906,213,0 +170763462954,213,0 +170763463003,214,0 +170763463053,214,0 +170763463103,214,0 +170763463152,215,0 +170763463202,215,0 +170763463251,215,0 +170763463301,215,0 +170763463349,215,0 +170763463398,215,0 +170763463448,216,0 +170763463496,216,0 +170763463543,216,0 +170763463591,216,0 +170763463639,216,0 +170763463687,216,0 +170763463735,216,0 +170763463785,214,0 +170763463832,214,0 +170763463880,213,0 +170763463928,214,0 +170763463976,214,0 +170763464026,214,0 +170763464074,214,0 +170763464123,214,0 +170763464171,215,0 +170763464219,215,0 +170763464267,215,0 +170763464315,216,0 +170763464363,216,0 +170763464412,216,0 +170763464460,216,0 +170763464508,217,0 +170763464556,216,0 +170763464606,216,0 +170763464654,217,0 +170763464703,216,0 +170763464751,214,0 +170763464799,214,0 +170763464848,213,0 +170763464898,214,0 +170763464947,214,0 +170763464995,214,0 +170763465043,214,0 +170763465091,214,0 +170763465139,214,0 +170763465187,215,0 +170763465235,215,0 +170763465283,215,0 +170763465331,215,0 +170763465379,216,0 +170763465427,216,0 +170763465475,216,0 +170763465523,216,0 +170763465571,216,0 +170763465619,216,0 +170763465668,215,0 +170763465716,214,0 +170763465764,214,0 +170763465813,214,0 +170763465861,213,0 +170763465909,214,0 +170763465959,214,0 +170763466007,214,0 +170763466055,214,0 +170763466104,214,0 +170763466152,215,0 +170763466200,215,0 +170763466250,215,0 +170763466298,215,0 +170763466347,216,0 +170763466395,215,0 +170763466443,216,0 +170763466491,216,0 +170763466539,216,0 +170763466588,216,0 +170763466638,214,0 +170763466686,214,0 +170763466734,214,0 +170763466782,214,0 +170763466831,214,0 +170763466879,214,0 +170763466927,214,0 +170763466975,214,0 +170763467023,214,0 +170763467071,214,0 +170763467120,214,0 +170763467170,214,0 +170763467220,214,0 +170763467269,214,0 +170763467317,214,0 +170763467367,214,0 +170763467416,215,0 +170763467464,215,0 +170763467513,215,0 +170763467563,215,0 +170763467613,215,0 +170763467662,216,0 +170763467712,216,0 +170763467761,216,0 +170763467809,216,0 +170763467859,216,0 +170763467908,216,0 +170763467956,217,0 +170763468005,217,0 +170763468055,214,0 +170763468103,214,0 +170763468152,213,0 +170763468200,213,0 +170763468248,214,0 +170763468295,214,0 +170763468345,214,0 +170763468393,214,0 +170763468441,215,0 +170763468489,215,0 +170763468538,215,0 +170763468588,215,0 +170763468636,216,0 +170763468683,215,0 +170763468731,216,0 +170763468779,216,0 +170763468827,216,0 +170763468875,216,0 +170763468923,217,0 +170763468971,216,0 +170763469018,214,0 +170763469068,213,0 +170763469116,214,0 +170763469164,214,0 +170763469211,214,0 +170763469259,214,0 +170763469309,214,0 +170763469357,214,0 +170763469404,215,0 +170763469452,215,0 +170763469500,215,0 +170763469548,216,0 +170763469596,216,0 +170763469644,216,0 +170763469692,216,0 +170763469739,216,0 +170763469787,216,0 +170763469835,216,0 +170763469883,217,0 +170763469931,216,0 +170763469979,214,0 +170763470026,214,0 +170763470074,214,0 +170763470122,214,0 +170763470170,214,0 +170763470218,214,0 +170763470266,214,0 +170763470314,214,0 +170763470363,215,0 +170763470411,215,0 +170763470459,215,0 +170763470508,216,0 +170763470556,215,0 +170763470604,216,0 +170763470652,216,0 +170763470699,216,0 +170763470747,216,0 +170763470795,216,0 +170763470843,216,0 +170763470891,216,0 +170763470939,214,0 +170763470986,213,0 +170763471034,214,0 +170763471082,214,0 +170763471130,214,0 +170763471178,214,0 +170763471225,214,0 +170763471275,215,0 +170763471322,215,0 +170763471370,215,0 +170763471418,215,0 +170763471466,215,0 +170763471514,216,0 +170763471561,216,0 +170763471609,216,0 +170763471657,217,0 +170763471706,216,0 +170763471756,217,0 +170763471804,216,0 +170763471852,214,0 +170763471900,214,0 +170763471948,213,0 +170763471997,213,0 +170763472045,214,0 +170763472093,214,0 +170763472141,214,0 +170763472190,214,0 +170763472238,214,0 +170763472288,214,0 +170763472336,215,0 +170763472385,215,0 +170763472433,216,0 +170763472481,215,0 +170763472530,216,0 +170763472580,216,0 +170763472628,216,0 +170763472676,216,0 +170763472724,216,0 +170763472772,216,0 +170763472820,214,0 +170763472867,214,0 +170763472917,214,0 +170763472965,214,0 +170763473013,214,0 +170763473061,213,0 +170763473110,214,0 +170763473160,214,0 +170763473208,214,0 +170763473257,214,0 +170763473305,215,0 +170763473353,216,0 +170763473402,216,0 +170763473450,215,0 +170763473498,216,0 +170763473546,216,0 +170763473594,216,0 +170763473642,216,0 +170763473690,216,0 +170763473738,216,0 +170763473785,214,0 +170763473835,213,0 +170763473883,214,0 +170763473931,214,0 +170763473979,214,0 +170763474027,214,0 +170763474074,214,0 +170763474122,214,0 +170763474172,214,0 +170763474221,215,0 +170763474269,215,0 +170763474317,215,0 +170763474365,215,0 +170763474413,216,0 +170763474461,216,0 +170763474511,216,0 +170763474558,217,0 +170763474608,216,0 +170763474657,217,0 +170763474707,214,0 +170763474755,213,0 +170763474803,213,0 +170763474852,213,0 +170763474900,213,0 +170763474949,214,0 +170763474997,214,0 +170763475045,214,0 +170763475093,214,0 +170763475141,215,0 +170763475191,215,0 +170763475239,215,0 +170763475288,215,0 +170763475338,215,0 +170763475387,216,0 +170763475435,216,0 +170763475483,216,0 +170763475532,216,0 +170763475580,216,0 +170763475628,216,0 +170763475676,214,0 +170763475726,213,0 +170763475774,214,0 +170763475823,214,0 +170763475871,214,0 +170763475919,214,0 +170763475967,214,0 +170763476015,214,0 +170763476063,214,0 +170763476112,214,0 +170763476160,214,0 +170763476209,215,0 +170763476257,216,0 +170763476305,216,0 +170763476353,215,0 +170763476402,216,0 +170763476450,216,0 +170763476500,216,0 +170763476548,216,0 +170763476596,216,0 +170763476644,213,0 +170763476691,214,0 +170763476739,213,0 +170763476789,214,0 +170763476838,214,0 +170763476886,214,0 +170763476934,214,0 +170763476982,214,0 +170763477030,214,0 +170763477080,214,0 +170763477127,214,0 +170763477177,215,0 +170763477226,215,0 +170763477274,216,0 +170763477324,216,0 +170763477373,216,0 +170763477421,216,0 +170763477469,216,0 +170763477518,216,0 +170763477568,214,0 +170763477616,214,0 +170763477664,213,0 +170763477713,214,0 +170763477763,214,0 +170763477811,214,0 +170763477859,214,0 +170763477908,214,0 +170763477957,214,0 +170763478005,214,0 +170763478053,215,0 +170763478101,215,0 +170763478151,215,0 +170763478199,215,0 +170763478246,216,0 +170763478294,216,0 +170763478344,216,0 +170763478392,216,0 +170763478441,217,0 +170763478489,216,0 +170763478537,214,0 +170763478587,214,0 +170763478636,214,0 +170763478686,214,0 +170763478734,214,0 +170763478782,214,0 +170763478830,214,0 +170763478879,214,0 +170763478929,214,0 +170763478978,214,0 +170763479027,215,0 +170763479075,215,0 +170763479123,215,0 +170763479173,216,0 +170763479221,216,0 +170763479270,216,0 +170763479318,216,0 +170763479366,216,0 +170763479414,217,0 +170763479462,214,0 +170763479509,214,0 +170763479557,214,0 +170763479605,213,0 +170763479653,214,0 +170763479701,214,0 +170763479750,214,0 +170763479798,214,0 +170763479848,214,0 +170763479896,214,0 +170763479945,215,0 +170763479995,215,0 diff --git a/laser_value/0211-17.csv b/laser_value/0211-17.csv new file mode 100644 index 0000000..18e9ce4 --- /dev/null +++ b/laser_value/0211-17.csv @@ -0,0 +1,7445 @@ +timestamp,laser_value,event +170763480045,215,0 +170763480092,215,0 +170763480142,215,0 +170763480190,216,0 +170763480238,215,0 +170763480286,216,0 +170763480333,216,0 +170763480381,216,0 +170763480429,214,0 +170763480477,213,0 +170763480525,214,0 +170763480572,214,0 +170763480620,214,0 +170763480668,214,0 +170763480716,214,0 +170763480764,214,0 +170763480812,214,0 +170763480860,214,0 +170763480908,215,0 +170763480955,215,0 +170763481005,215,0 +170763481053,216,0 +170763481101,216,0 +170763481150,216,0 +170763481198,216,0 +170763481247,217,0 +170763481297,216,0 +170763481345,216,0 +170763481394,214,0 +170763481442,214,0 +170763481490,214,0 +170763481538,214,0 +170763481586,213,0 +170763481634,214,0 +170763481683,214,0 +170763481731,214,0 +170763481779,215,0 +170763481827,215,0 +170763481876,215,0 +170763481924,215,0 +170763481974,215,0 +170763482023,216,0 +170763482071,216,0 +170763482119,216,0 +170763482168,217,0 +170763482216,216,0 +170763482264,216,0 +170763482312,215,0 +170763482360,214,0 +170763482408,214,0 +170763482457,214,0 +170763482505,214,0 +170763482553,214,0 +170763482601,214,0 +170763482649,215,0 +170763482697,215,0 +170763482745,215,0 +170763482794,215,0 +170763482842,216,0 +170763482891,216,0 +170763482939,216,0 +170763482987,216,0 +170763483035,216,0 +170763483085,216,0 +170763483132,217,0 +170763483180,217,0 +170763483228,216,0 +170763483276,214,0 +170763483325,214,0 +170763483373,213,0 +170763483421,214,0 +170763483469,214,0 +170763483517,214,0 +170763483567,214,0 +170763483615,215,0 +170763483663,215,0 +170763483712,215,0 +170763483760,215,0 +170763483808,215,0 +170763483856,216,0 +170763483904,216,0 +170763483952,216,0 +170763484001,216,0 +170763484049,216,0 +170763484097,216,0 +170763484145,217,0 +170763484193,216,0 +170763484241,214,0 +170763484289,214,0 +170763484337,214,0 +170763484384,214,0 +170763484434,214,0 +170763484482,215,0 +170763484531,215,0 +170763484579,215,0 +170763484629,216,0 +170763484676,216,0 +170763484726,216,0 +170763484774,215,0 +170763484822,216,0 +170763484870,216,0 +170763484918,216,0 +170763484966,216,0 +170763485013,216,0 +170763485061,216,0 +170763485109,216,0 +170763485158,215,0 +170763485205,214,0 +170763485253,214,0 +170763485303,214,0 +170763485352,215,0 +170763485400,215,0 +170763485450,215,0 +170763485497,216,0 +170763485545,215,0 +170763485595,215,0 +170763485644,215,0 +170763485692,216,0 +170763485740,216,0 +170763485788,216,0 +170763485836,216,0 +170763485885,216,0 +170763485933,216,0 +170763485981,216,0 +170763486031,216,0 +170763486080,217,0 +170763486130,214,0 +170763486178,214,0 +170763486227,214,0 +170763486277,214,0 +170763486324,214,0 +170763486372,214,0 +170763486422,214,0 +170763486470,215,0 +170763486518,215,0 +170763486565,215,0 +170763486615,215,0 +170763486663,216,0 +170763486712,216,0 +170763486760,216,0 +170763486808,216,0 +170763486858,217,0 +170763486907,217,0 +170763486955,216,0 +170763487005,216,0 +170763487054,216,0 +170763487102,214,0 +170763487150,214,0 +170763487198,214,0 +170763487247,214,0 +170763487297,214,0 +170763487345,214,0 +170763487394,215,0 +170763487442,215,0 +170763487490,215,0 +170763487540,215,0 +170763487589,215,0 +170763487637,216,0 +170763487685,216,0 +170763487733,216,0 +170763487781,216,0 +170763487829,216,0 +170763487877,216,0 +170763487926,216,0 +170763487974,216,0 +170763488022,215,0 +170763488070,213,0 +170763488118,213,0 +170763488166,214,0 +170763488215,214,0 +170763488263,214,0 +170763488312,214,0 +170763488360,214,0 +170763488408,214,0 +170763488456,214,0 +170763488504,215,0 +170763488552,215,0 +170763488599,215,0 +170763488647,215,0 +170763488695,215,0 +170763488743,216,0 +170763488791,216,0 +170763488840,216,0 +170763488888,216,0 +170763488936,216,0 +170763488984,214,0 +170763489032,214,0 +170763489081,213,0 +170763489130,214,0 +170763489178,214,0 +170763489226,214,0 +170763489274,214,0 +170763489322,214,0 +170763489370,214,0 +170763489419,214,0 +170763489467,215,0 +170763489515,215,0 +170763489563,215,0 +170763489611,216,0 +170763489660,215,0 +170763489708,216,0 +170763489758,216,0 +170763489806,216,0 +170763489854,217,0 +170763489902,216,0 +170763489949,214,0 +170763489999,213,0 +170763490047,213,0 +170763490094,213,0 +170763490142,214,0 +170763490192,214,0 +170763490239,214,0 +170763490287,214,0 +170763490335,215,0 +170763490383,215,0 +170763490431,215,0 +170763490478,215,0 +170763490526,215,0 +170763490574,215,0 +170763490623,216,0 +170763490671,216,0 +170763490719,216,0 +170763490767,216,0 +170763490815,217,0 +170763490862,216,0 +170763490910,214,0 +170763490958,213,0 +170763491006,214,0 +170763491054,214,0 +170763491102,214,0 +170763491150,214,0 +170763491197,214,0 +170763491245,214,0 +170763491293,215,0 +170763491343,215,0 +170763491390,215,0 +170763491440,215,0 +170763491488,216,0 +170763491536,216,0 +170763491583,216,0 +170763491631,216,0 +170763491679,217,0 +170763491727,216,0 +170763491775,217,0 +170763491823,214,0 +170763491872,214,0 +170763491920,214,0 +170763491969,214,0 +170763492019,214,0 +170763492066,214,0 +170763492114,214,0 +170763492162,214,0 +170763492210,214,0 +170763492258,215,0 +170763492307,215,0 +170763492357,215,0 +170763492405,216,0 +170763492452,216,0 +170763492500,215,0 +170763492548,216,0 +170763492598,216,0 +170763492646,215,0 +170763492693,217,0 +170763492741,216,0 +170763492789,214,0 +170763492839,213,0 +170763492887,214,0 +170763492936,214,0 +170763492984,214,0 +170763493032,214,0 +170763493080,214,0 +170763493128,214,0 +170763493175,214,0 +170763493223,214,0 +170763493271,214,0 +170763493319,215,0 +170763493367,215,0 +170763493415,215,0 +170763493462,216,0 +170763493510,216,0 +170763493560,216,0 +170763493607,216,0 +170763493655,216,0 +170763493703,217,0 +170763493753,214,0 +170763493802,214,0 +170763493850,214,0 +170763493898,214,0 +170763493947,214,0 +170763493995,214,0 +170763494045,214,0 +170763494093,214,0 +170763494141,214,0 +170763494190,214,0 +170763494238,215,0 +170763494286,215,0 +170763494336,215,0 +170763494385,216,0 +170763494433,216,0 +170763494481,216,0 +170763494529,216,0 +170763494579,216,0 +170763494626,217,0 +170763494676,214,0 +170763494724,214,0 +170763494773,214,0 +170763494821,214,0 +170763494869,214,0 +170763494917,214,0 +170763494965,214,0 +170763495014,214,0 +170763495062,214,0 +170763495112,214,0 +170763495160,215,0 +170763495208,215,0 +170763495255,215,0 +170763495303,215,0 +170763495351,215,0 +170763495399,216,0 +170763495447,216,0 +170763495495,216,0 +170763495542,216,0 +170763495592,217,0 +170763495640,214,0 +170763495688,213,0 +170763495736,213,0 +170763495784,213,0 +170763495833,214,0 +170763495881,214,0 +170763495929,214,0 +170763495977,214,0 +170763496025,214,0 +170763496075,214,0 +170763496124,215,0 +170763496172,215,0 +170763496222,215,0 +170763496269,215,0 +170763496317,215,0 +170763496367,215,0 +170763496415,216,0 +170763496464,216,0 +170763496514,216,0 +170763496563,217,0 +170763496611,214,0 +170763496659,214,0 +170763496707,214,0 +170763496757,214,0 +170763496805,214,0 +170763496852,214,0 +170763496902,214,0 +170763496951,214,0 +170763497001,214,0 +170763497049,215,0 +170763497097,215,0 +170763497145,215,0 +170763497194,215,0 +170763497242,215,0 +170763497292,216,0 +170763497341,216,0 +170763497389,216,0 +170763497437,216,0 +170763497485,216,0 +170763497533,215,0 +170763497583,214,0 +170763497632,213,0 +170763497680,214,0 +170763497728,214,0 +170763497776,214,0 +170763497825,214,0 +170763497873,214,0 +170763497923,214,0 +170763497971,214,0 +170763498019,214,0 +170763498068,214,0 +170763498116,215,0 +170763498164,215,0 +170763498212,216,0 +170763498260,216,0 +170763498308,216,0 +170763498356,216,0 +170763498405,216,0 +170763498453,216,0 +170763498501,214,0 +170763498549,214,0 +170763498597,214,0 +170763498645,214,0 +170763498695,213,0 +170763498744,214,0 +170763498792,214,0 +170763498840,214,0 +170763498888,214,0 +170763498936,214,0 +170763498984,214,0 +170763499033,214,0 +170763499081,215,0 +170763499131,215,0 +170763499180,215,0 +170763499228,215,0 +170763499276,216,0 +170763499326,216,0 +170763499374,216,0 +170763499422,216,0 +170763499471,214,0 +170763499519,213,0 +170763499567,214,0 +170763499616,213,0 +170763499666,213,0 +170763499715,213,0 +170763499765,213,0 +170763499813,214,0 +170763499862,214,0 +170763499910,214,0 +170763499960,214,0 +170763500008,214,0 +170763500056,215,0 +170763500104,215,0 +170763500153,215,0 +170763500201,215,0 +170763500251,215,0 +170763500300,216,0 +170763500350,216,0 +170763500397,214,0 +170763500445,214,0 +170763500493,214,0 +170763500541,213,0 +170763500589,214,0 +170763500637,213,0 +170763500685,213,0 +170763500733,215,0 +170763500781,214,0 +170763500828,214,0 +170763500876,214,0 +170763500924,215,0 +170763500972,215,0 +170763501020,215,0 +170763501068,215,0 +170763501115,216,0 +170763501163,215,0 +170763501211,216,0 +170763501259,216,0 +170763501307,216,0 +170763501355,214,0 +170763501403,214,0 +170763501451,213,0 +170763501500,213,0 +170763501550,214,0 +170763501598,214,0 +170763501645,214,0 +170763501695,214,0 +170763501743,214,0 +170763501792,214,0 +170763501842,214,0 +170763501891,215,0 +170763501939,215,0 +170763501989,215,0 +170763502037,215,0 +170763502086,215,0 +170763502134,216,0 +170763502182,216,0 +170763502230,216,0 +170763502279,214,0 +170763502329,214,0 +170763502377,214,0 +170763502426,214,0 +170763502474,214,0 +170763502524,214,0 +170763502572,214,0 +170763502619,215,0 +170763502667,215,0 +170763502717,215,0 +170763502766,216,0 +170763502814,216,0 +170763502862,216,0 +170763502912,216,0 +170763502961,216,0 +170763503011,217,0 +170763503059,217,0 +170763503107,217,0 +170763503154,217,0 +170763503202,216,0 +170763503250,214,0 +170763503300,214,0 +170763503347,214,0 +170763503397,214,0 +170763503445,214,0 +170763503493,214,0 +170763503541,215,0 +170763503589,215,0 +170763503636,215,0 +170763503684,215,0 +170763503732,215,0 +170763503780,216,0 +170763503830,216,0 +170763503877,216,0 +170763503925,216,0 +170763503975,216,0 +170763504024,216,0 +170763504074,217,0 +170763504122,217,0 +170763504170,216,0 +170763504218,214,0 +170763504266,214,0 +170763504315,214,0 +170763504363,214,0 +170763504411,214,0 +170763504459,215,0 +170763504507,215,0 +170763504555,215,0 +170763504603,215,0 +170763504652,215,0 +170763504700,216,0 +170763504748,216,0 +170763504796,216,0 +170763504844,216,0 +170763504893,216,0 +170763504941,215,0 +170763504989,217,0 +170763505039,217,0 +170763505087,217,0 +170763505135,214,0 +170763505183,214,0 +170763505232,214,0 +170763505280,214,0 +170763505328,214,0 +170763505377,214,0 +170763505425,214,0 +170763505473,215,0 +170763505521,215,0 +170763505569,215,0 +170763505617,215,0 +170763505665,215,0 +170763505714,216,0 +170763505762,216,0 +170763505810,216,0 +170763505858,216,0 +170763505908,216,0 +170763505956,217,0 +170763506004,216,0 +170763506051,216,0 +170763506099,214,0 +170763506147,214,0 +170763506195,214,0 +170763506244,214,0 +170763506292,214,0 +170763506342,214,0 +170763506390,214,0 +170763506438,215,0 +170763506486,215,0 +170763506534,215,0 +170763506582,215,0 +170763506629,216,0 +170763506679,215,0 +170763506727,216,0 +170763506775,216,0 +170763506824,216,0 +170763506872,216,0 +170763506920,216,0 +170763506968,216,0 +170763507016,216,0 +170763507065,214,0 +170763507115,213,0 +170763507163,214,0 +170763507211,213,0 +170763507259,213,0 +170763507308,214,0 +170763507356,214,0 +170763507406,214,0 +170763507454,215,0 +170763507502,215,0 +170763507550,215,0 +170763507599,215,0 +170763507647,215,0 +170763507696,216,0 +170763507744,216,0 +170763507792,216,0 +170763507840,216,0 +170763507888,216,0 +170763507936,217,0 +170763507984,216,0 +170763508032,213,0 +170763508080,213,0 +170763508128,214,0 +170763508177,214,0 +170763508225,214,0 +170763508273,214,0 +170763508323,213,0 +170763508370,214,0 +170763508418,214,0 +170763508466,214,0 +170763508514,215,0 +170763508562,215,0 +170763508611,215,0 +170763508659,216,0 +170763508707,216,0 +170763508755,216,0 +170763508803,216,0 +170763508851,216,0 +170763508900,217,0 +170763508950,214,0 +170763508998,214,0 +170763509046,214,0 +170763509094,213,0 +170763509143,213,0 +170763509191,214,0 +170763509239,214,0 +170763509289,214,0 +170763509337,214,0 +170763509384,214,0 +170763509432,214,0 +170763509480,214,0 +170763509530,215,0 +170763509578,215,0 +170763509625,215,0 +170763509673,215,0 +170763509723,216,0 +170763509771,216,0 +170763509819,216,0 +170763509867,216,0 +170763509915,214,0 +170763509962,214,0 +170763510012,214,0 +170763510060,214,0 +170763510109,215,0 +170763510157,215,0 +170763510207,215,0 +170763510254,215,0 +170763510302,215,0 +170763510350,216,0 +170763510400,215,0 +170763510448,216,0 +170763510496,216,0 +170763510545,217,0 +170763510593,217,0 +170763510641,217,0 +170763510690,217,0 +170763510740,217,0 +170763510788,216,0 +170763510836,216,0 +170763510885,214,0 +170763510933,214,0 +170763510981,214,0 +170763511029,214,0 +170763511077,214,0 +170763511126,215,0 +170763511175,214,0 +170763511223,215,0 +170763511273,215,0 +170763511321,216,0 +170763511370,216,0 +170763511418,216,0 +170763511468,216,0 +170763511517,216,0 +170763511566,216,0 +170763511614,216,0 +170763511662,216,0 +170763511710,216,0 +170763511760,217,0 +170763511808,214,0 +170763511855,214,0 +170763511903,214,0 +170763511953,214,0 +170763512002,214,0 +170763512050,214,0 +170763512098,214,0 +170763512148,215,0 +170763512196,215,0 +170763512243,215,0 +170763512291,215,0 +170763512341,215,0 +170763512389,216,0 +170763512437,216,0 +170763512485,216,0 +170763512534,216,0 +170763512582,216,0 +170763512631,216,0 +170763512681,216,0 +170763512729,217,0 +170763512777,214,0 +170763512826,214,0 +170763512874,214,0 +170763512924,214,0 +170763512973,214,0 +170763513021,214,0 +170763513069,214,0 +170763513118,214,0 +170763513166,215,0 +170763513214,215,0 +170763513262,215,0 +170763513310,216,0 +170763513358,215,0 +170763513406,216,0 +170763513453,216,0 +170763513501,216,0 +170763513551,216,0 +170763513598,216,0 +170763513646,217,0 +170763513694,216,0 +170763513744,214,0 +170763513792,214,0 +170763513840,214,0 +170763513888,214,0 +170763513936,214,0 +170763513984,214,0 +170763514032,214,0 +170763514081,214,0 +170763514129,215,0 +170763514177,215,0 +170763514225,216,0 +170763514274,215,0 +170763514322,216,0 +170763514370,216,0 +170763514418,216,0 +170763514468,216,0 +170763514517,216,0 +170763514565,216,0 +170763514614,216,0 +170763514662,214,0 +170763514710,213,0 +170763514758,213,0 +170763514807,214,0 +170763514855,214,0 +170763514905,214,0 +170763514952,214,0 +170763515000,214,0 +170763515048,214,0 +170763515096,214,0 +170763515144,215,0 +170763515194,215,0 +170763515243,215,0 +170763515293,215,0 +170763515341,215,0 +170763515390,216,0 +170763515438,216,0 +170763515486,216,0 +170763515534,217,0 +170763515582,216,0 +170763515630,214,0 +170763515678,213,0 +170763515726,214,0 +170763515775,213,0 +170763515825,214,0 +170763515874,214,0 +170763515922,214,0 +170763515970,214,0 +170763516018,214,0 +170763516067,214,0 +170763516115,214,0 +170763516163,215,0 +170763516211,215,0 +170763516259,215,0 +170763516307,216,0 +170763516354,216,0 +170763516402,216,0 +170763516450,216,0 +170763516498,216,0 +170763516546,216,0 +170763516594,214,0 +170763516642,213,0 +170763516690,214,0 +170763516737,214,0 +170763516785,214,0 +170763516833,214,0 +170763516883,215,0 +170763516931,215,0 +170763516978,215,0 +170763517028,215,0 +170763517076,216,0 +170763517124,216,0 +170763517172,216,0 +170763517219,216,0 +170763517267,216,0 +170763517315,216,0 +170763517363,216,0 +170763517411,217,0 +170763517459,216,0 +170763517507,214,0 +170763517554,213,0 +170763517604,213,0 +170763517652,214,0 +170763517700,214,0 +170763517749,214,0 +170763517797,214,0 +170763517846,215,0 +170763517894,215,0 +170763517942,215,0 +170763517990,215,0 +170763518038,215,0 +170763518086,215,0 +170763518135,216,0 +170763518183,216,0 +170763518232,216,0 +170763518282,216,0 +170763518330,216,0 +170763518379,216,0 +170763518427,216,0 +170763518477,214,0 +170763518525,214,0 +170763518574,213,0 +170763518624,213,0 +170763518672,214,0 +170763518720,214,0 +170763518768,214,0 +170763518816,214,0 +170763518864,214,0 +170763518912,215,0 +170763518959,215,0 +170763519007,215,0 +170763519055,215,0 +170763519105,216,0 +170763519154,216,0 +170763519204,216,0 +170763519252,216,0 +170763519300,217,0 +170763519347,216,0 +170763519395,217,0 +170763519443,214,0 +170763519491,213,0 +170763519539,214,0 +170763519587,214,0 +170763519635,214,0 +170763519682,214,0 +170763519730,214,0 +170763519778,214,0 +170763519826,214,0 +170763519874,214,0 +170763519922,215,0 +170763519970,215,0 +170763520019,216,0 +170763520067,215,0 +170763520115,215,0 +170763520163,215,0 +170763520211,215,0 +170763520259,216,0 +170763520307,217,0 +170763520355,216,0 +170763520403,214,0 +170763520452,213,0 +170763520502,213,0 +170763520550,214,0 +170763520598,214,0 +170763520646,214,0 +170763520695,214,0 +170763520745,215,0 +170763520794,215,0 +170763520842,215,0 +170763520892,215,0 +170763520941,216,0 +170763520991,216,0 +170763521040,216,0 +170763521090,216,0 +170763521137,216,0 +170763521185,217,0 +170763521235,216,0 +170763521284,216,0 +170763521332,214,0 +170763521382,213,0 +170763521430,214,0 +170763521478,214,0 +170763521527,214,0 +170763521575,214,0 +170763521623,214,0 +170763521673,215,0 +170763521721,215,0 +170763521768,215,0 +170763521816,215,0 +170763521864,215,0 +170763521914,216,0 +170763521963,216,0 +170763522011,216,0 +170763522059,216,0 +170763522107,217,0 +170763522155,215,0 +170763522203,216,0 +170763522252,216,0 +170763522302,214,0 +170763522350,213,0 +170763522399,213,0 +170763522449,213,0 +170763522498,214,0 +170763522547,214,0 +170763522595,214,0 +170763522643,214,0 +170763522691,214,0 +170763522739,215,0 +170763522787,215,0 +170763522837,215,0 +170763522886,216,0 +170763522934,216,0 +170763522982,216,0 +170763523030,215,0 +170763523078,216,0 +170763523126,216,0 +170763523174,216,0 +170763523223,214,0 +170763523273,213,0 +170763523321,213,0 +170763523369,213,0 +170763523416,213,0 +170763523464,214,0 +170763523512,214,0 +170763523560,214,0 +170763523610,213,0 +170763523659,214,0 +170763523709,214,0 +170763523757,215,0 +170763523806,215,0 +170763523856,215,0 +170763523905,215,0 +170763523953,216,0 +170763524001,215,0 +170763524049,215,0 +170763524097,216,0 +170763524145,216,0 +170763524193,214,0 +170763524241,213,0 +170763524289,213,0 +170763524338,214,0 +170763524388,214,0 +170763524437,214,0 +170763524487,214,0 +170763524535,214,0 +170763524582,214,0 +170763524630,215,0 +170763524678,215,0 +170763524726,215,0 +170763524774,216,0 +170763524822,216,0 +170763524870,216,0 +170763524919,216,0 +170763524969,216,0 +170763525018,216,0 +170763525066,216,0 +170763525114,214,0 +170763525162,213,0 +170763525209,214,0 +170763525257,214,0 +170763525307,213,0 +170763525356,214,0 +170763525404,214,0 +170763525452,214,0 +170763525501,214,0 +170763525551,214,0 +170763525599,215,0 +170763525647,215,0 +170763525694,215,0 +170763525742,215,0 +170763525790,216,0 +170763525838,216,0 +170763525886,216,0 +170763525934,216,0 +170763525982,216,0 +170763526030,216,0 +170763526078,214,0 +170763526126,213,0 +170763526175,213,0 +170763526223,214,0 +170763526271,214,0 +170763526319,214,0 +170763526368,214,0 +170763526418,214,0 +170763526466,214,0 +170763526514,214,0 +170763526561,215,0 +170763526609,215,0 +170763526657,215,0 +170763526705,215,0 +170763526753,215,0 +170763526803,215,0 +170763526851,216,0 +170763526899,216,0 +170763526948,216,0 +170763526996,216,0 +170763527046,214,0 +170763527095,214,0 +170763527143,213,0 +170763527193,214,0 +170763527241,214,0 +170763527288,214,0 +170763527336,214,0 +170763527384,213,0 +170763527434,214,0 +170763527483,214,0 +170763527532,215,0 +170763527582,215,0 +170763527631,215,0 +170763527681,216,0 +170763527730,215,0 +170763527780,216,0 +170763527829,216,0 +170763527877,216,0 +170763527925,216,0 +170763527973,214,0 +170763528021,214,0 +170763528069,213,0 +170763528117,213,0 +170763528165,214,0 +170763528214,214,0 +170763528262,214,0 +170763528310,214,0 +170763528358,214,0 +170763528407,214,0 +170763528455,214,0 +170763528505,215,0 +170763528553,215,0 +170763528602,215,0 +170763528650,215,0 +170763528698,216,0 +170763528746,216,0 +170763528795,216,0 +170763528843,216,0 +170763528893,216,0 +170763528942,214,0 +170763528992,213,0 +170763529040,213,0 +170763529088,213,0 +170763529136,213,0 +170763529183,213,0 +170763529231,213,0 +170763529279,213,0 +170763529329,213,0 +170763529377,214,0 +170763529425,214,0 +170763529472,214,0 +170763529520,214,0 +170763529568,214,0 +170763529616,214,0 +170763529665,215,0 +170763529713,215,0 +170763529761,215,0 +170763529810,216,0 +170763529858,216,0 +170763529906,214,0 +170763529954,214,0 +170763530002,214,0 +170763530050,214,0 +170763530097,214,0 +170763530145,214,0 +170763530195,214,0 +170763530243,214,0 +170763530292,214,0 +170763530342,215,0 +170763530390,215,0 +170763530439,215,0 +170763530487,215,0 +170763530537,216,0 +170763530585,216,0 +170763530632,216,0 +170763530682,216,0 +170763530730,217,0 +170763530779,216,0 +170763530829,214,0 +170763530878,213,0 +170763530928,214,0 +170763530977,213,0 +170763531025,213,0 +170763531075,214,0 +170763531123,214,0 +170763531171,214,0 +170763531219,214,0 +170763531266,214,0 +170763531314,215,0 +170763531364,215,0 +170763531414,215,0 +170763531461,216,0 +170763531509,216,0 +170763531557,215,0 +170763531605,216,0 +170763531653,216,0 +170763531703,216,0 +170763531751,216,0 +170763531799,214,0 +170763531848,213,0 +170763531896,214,0 +170763531945,213,0 +170763531993,213,0 +170763532041,214,0 +170763532089,214,0 +170763532139,214,0 +170763532188,214,0 +170763532236,215,0 +170763532284,215,0 +170763532332,215,0 +170763532380,215,0 +170763532429,216,0 +170763532477,216,0 +170763532525,216,0 +170763532573,216,0 +170763532621,216,0 +170763532669,216,0 +170763532717,216,0 +170763532765,214,0 +170763532814,214,0 +170763532864,213,0 +170763532912,214,0 +170763532960,214,0 +170763533008,214,0 +170763533057,214,0 +170763533105,214,0 +170763533153,214,0 +170763533203,214,0 +170763533252,215,0 +170763533302,215,0 +170763533349,216,0 +170763533399,216,0 +170763533447,216,0 +170763533495,216,0 +170763533544,217,0 +170763533592,217,0 +170763533640,217,0 +170763533688,214,0 +170763533738,214,0 +170763533786,214,0 +170763533834,213,0 +170763533882,214,0 +170763533930,214,0 +170763533978,214,0 +170763534026,214,0 +170763534074,214,0 +170763534122,215,0 +170763534169,214,0 +170763534217,215,0 +170763534267,216,0 +170763534315,215,0 +170763534363,216,0 +170763534411,216,0 +170763534460,216,0 +170763534510,216,0 +170763534558,216,0 +170763534606,216,0 +170763534653,214,0 +170763534701,213,0 +170763534749,214,0 +170763534797,214,0 +170763534845,214,0 +170763534893,214,0 +170763534941,214,0 +170763534988,214,0 +170763535036,214,0 +170763535084,214,0 +170763535134,215,0 +170763535182,215,0 +170763535231,215,0 +170763535279,216,0 +170763535327,216,0 +170763535375,216,0 +170763535423,216,0 +170763535471,216,0 +170763535519,217,0 +170763535567,216,0 +170763535616,214,0 +170763535664,214,0 +170763535714,214,0 +170763535762,213,0 +170763535811,214,0 +170763535861,214,0 +170763535908,214,0 +170763535956,215,0 +170763536004,215,0 +170763536054,215,0 +170763536103,215,0 +170763536151,215,0 +170763536201,216,0 +170763536249,216,0 +170763536297,216,0 +170763536345,216,0 +170763536394,216,0 +170763536442,216,0 +170763536490,216,0 +170763536538,214,0 +170763536586,214,0 +170763536635,214,0 +170763536683,214,0 +170763536731,214,0 +170763536779,215,0 +170763536827,215,0 +170763536875,215,0 +170763536923,215,0 +170763536972,215,0 +170763537022,216,0 +170763537070,216,0 +170763537119,216,0 +170763537169,217,0 +170763537218,217,0 +170763537266,217,0 +170763537315,217,0 +170763537365,217,0 +170763537415,217,0 +170763537463,216,0 +170763537510,214,0 +170763537558,214,0 +170763537606,214,0 +170763537654,214,0 +170763537702,215,0 +170763537752,215,0 +170763537801,215,0 +170763537849,215,0 +170763537899,215,0 +170763537948,216,0 +170763537996,216,0 +170763538046,216,0 +170763538093,216,0 +170763538141,216,0 +170763538191,216,0 +170763538239,216,0 +170763538287,217,0 +170763538335,216,0 +170763538383,216,0 +170763538432,214,0 +170763538480,214,0 +170763538528,213,0 +170763538576,214,0 +170763538625,214,0 +170763538673,214,0 +170763538721,214,0 +170763538769,214,0 +170763538818,215,0 +170763538866,215,0 +170763538914,215,0 +170763538962,216,0 +170763539012,215,0 +170763539060,216,0 +170763539109,216,0 +170763539157,216,0 +170763539207,216,0 +170763539254,216,0 +170763539302,216,0 +170763539352,216,0 +170763539400,214,0 +170763539449,213,0 +170763539497,214,0 +170763539547,214,0 +170763539596,214,0 +170763539646,214,0 +170763539695,213,0 +170763539743,214,0 +170763539793,214,0 +170763539842,214,0 +170763539890,214,0 +170763539938,214,0 +170763539986,214,0 +170763540036,215,0 +170763540084,215,0 +170763540132,215,0 +170763540179,215,0 +170763540229,216,0 +170763540278,216,0 +170763540328,216,0 +170763540376,213,0 +170763540424,214,0 +170763540472,214,0 +170763540520,214,0 +170763540569,214,0 +170763540617,214,0 +170763540667,214,0 +170763540715,214,0 +170763540763,214,0 +170763540810,215,0 +170763540860,215,0 +170763540909,215,0 +170763540959,215,0 +170763541007,215,0 +170763541055,216,0 +170763541103,216,0 +170763541150,216,0 +170763541198,216,0 +170763541248,216,0 +170763541296,214,0 +170763541344,214,0 +170763541392,214,0 +170763541441,214,0 +170763541489,214,0 +170763541537,214,0 +170763541587,214,0 +170763541635,214,0 +170763541682,214,0 +170763541730,215,0 +170763541780,215,0 +170763541828,215,0 +170763541876,215,0 +170763541924,216,0 +170763541972,216,0 +170763542021,216,0 +170763542069,216,0 +170763542117,217,0 +170763542167,217,0 +170763542215,216,0 +170763542264,214,0 +170763542312,213,0 +170763542360,214,0 +170763542408,213,0 +170763542456,214,0 +170763542505,214,0 +170763542553,214,0 +170763542601,214,0 +170763542649,214,0 +170763542697,214,0 +170763542745,215,0 +170763542793,215,0 +170763542841,215,0 +170763542891,215,0 +170763542938,215,0 +170763542986,216,0 +170763543034,216,0 +170763543082,216,0 +170763543130,216,0 +170763543178,216,0 +170763543228,214,0 +170763543276,213,0 +170763543324,214,0 +170763543373,213,0 +170763543421,214,0 +170763543469,214,0 +170763543517,214,0 +170763543565,214,0 +170763543613,214,0 +170763543661,215,0 +170763543709,215,0 +170763543757,215,0 +170763543806,216,0 +170763543854,215,0 +170763543902,216,0 +170763543950,216,0 +170763544000,216,0 +170763544048,217,0 +170763544096,217,0 +170763544144,214,0 +170763544191,213,0 +170763544241,214,0 +170763544290,214,0 +170763544338,214,0 +170763544388,214,0 +170763544437,214,0 +170763544487,214,0 +170763544535,215,0 +170763544584,215,0 +170763544634,215,0 +170763544683,215,0 +170763544731,215,0 +170763544779,215,0 +170763544827,216,0 +170763544875,216,0 +170763544924,216,0 +170763544972,216,0 +170763545020,216,0 +170763545068,216,0 +170763545118,214,0 +170763545166,214,0 +170763545214,214,0 +170763545261,214,0 +170763545309,214,0 +170763545357,214,0 +170763545407,214,0 +170763545454,214,0 +170763545504,214,0 +170763545553,215,0 +170763545601,215,0 +170763545649,215,0 +170763545697,215,0 +170763545745,216,0 +170763545793,216,0 +170763545840,216,0 +170763545888,216,0 +170763545936,216,0 +170763545984,216,0 +170763546032,216,0 +170763546080,213,0 +170763546129,213,0 +170763546177,213,0 +170763546225,213,0 +170763546272,214,0 +170763546320,214,0 +170763546368,214,0 +170763546416,214,0 +170763546463,214,0 +170763546513,214,0 +170763546561,215,0 +170763546609,215,0 +170763546657,215,0 +170763546704,216,0 +170763546752,216,0 +170763546802,214,0 +170763546851,216,0 +170763546899,216,0 +170763546948,216,0 +170763546996,214,0 +170763547044,213,0 +170763547093,213,0 +170763547141,214,0 +170763547189,213,0 +170763547237,213,0 +170763547285,214,0 +170763547333,214,0 +170763547381,214,0 +170763547430,214,0 +170763547478,214,0 +170763547526,215,0 +170763547575,215,0 +170763547623,215,0 +170763547671,216,0 +170763547720,216,0 +170763547768,215,0 +170763547816,216,0 +170763547863,216,0 +170763547911,216,0 +170763547959,214,0 +170763548009,213,0 +170763548056,213,0 +170763548104,213,0 +170763548152,214,0 +170763548200,214,0 +170763548249,214,0 +170763548299,214,0 +170763548347,214,0 +170763548394,215,0 +170763548442,215,0 +170763548490,215,0 +170763548538,215,0 +170763548586,215,0 +170763548635,215,0 +170763548683,216,0 +170763548733,216,0 +170763548780,216,0 +170763548828,216,0 +170763548876,216,0 +170763548924,214,0 +170763548972,213,0 +170763549021,213,0 +170763549069,213,0 +170763549118,213,0 +170763549168,214,0 +170763549217,214,0 +170763549265,214,0 +170763549315,214,0 +170763549362,214,0 +170763549410,215,0 +170763549458,215,0 +170763549508,215,0 +170763549557,215,0 +170763549605,215,0 +170763549655,216,0 +170763549703,216,0 +170763549750,216,0 +170763549800,216,0 +170763549848,216,0 +170763549896,213,0 +170763549945,214,0 +170763549995,213,0 +170763550043,213,0 +170763550091,214,0 +170763550139,214,0 +170763550188,214,0 +170763550236,214,0 +170763550284,214,0 +170763550332,215,0 +170763550380,215,0 +170763550428,215,0 +170763550476,215,0 +170763550525,216,0 +170763550573,216,0 +170763550621,216,0 +170763550669,215,0 +170763550717,216,0 +170763550765,216,0 +170763550813,214,0 +170763550861,213,0 +170763550909,214,0 +170763550958,214,0 +170763551006,214,0 +170763551054,214,0 +170763551104,214,0 +170763551151,214,0 +170763551199,213,0 +170763551249,214,0 +170763551297,214,0 +170763551345,215,0 +170763551393,215,0 +170763551440,215,0 +170763551488,215,0 +170763551536,216,0 +170763551584,216,0 +170763551632,215,0 +170763551681,216,0 +170763551729,216,0 +170763551777,213,0 +170763551825,213,0 +170763551873,213,0 +170763551921,213,0 +170763551969,213,0 +170763552018,213,0 +170763552066,213,0 +170763552114,214,0 +170763552162,214,0 +170763552212,214,0 +170763552260,214,0 +170763552307,215,0 +170763552357,215,0 +170763552405,215,0 +170763552453,215,0 +170763552502,215,0 +170763552552,215,0 +170763552599,216,0 +170763552647,216,0 +170763552697,216,0 +170763552745,214,0 +170763552794,213,0 +170763552842,214,0 +170763552891,214,0 +170763552941,214,0 +170763552989,214,0 +170763553037,214,0 +170763553086,214,0 +170763553136,214,0 +170763553185,215,0 +170763553233,215,0 +170763553281,215,0 +170763553331,215,0 +170763553379,215,0 +170763553427,216,0 +170763553475,215,0 +170763553523,216,0 +170763553571,216,0 +170763553619,216,0 +170763553668,214,0 +170763553716,214,0 +170763553766,213,0 +170763553814,213,0 +170763553861,213,0 +170763553911,214,0 +170763553961,214,0 +170763554010,214,0 +170763554058,214,0 +170763554107,214,0 +170763554157,215,0 +170763554205,215,0 +170763554253,215,0 +170763554300,215,0 +170763554348,216,0 +170763554396,216,0 +170763554444,216,0 +170763554492,216,0 +170763554540,216,0 +170763554588,216,0 +170763554636,213,0 +170763554683,213,0 +170763554731,213,0 +170763554779,213,0 +170763554829,214,0 +170763554876,214,0 +170763554924,214,0 +170763554972,214,0 +170763555022,214,0 +170763555071,215,0 +170763555119,215,0 +170763555168,215,0 +170763555216,215,0 +170763555264,216,0 +170763555313,216,0 +170763555361,216,0 +170763555409,216,0 +170763555459,216,0 +170763555507,216,0 +170763555555,214,0 +170763555602,213,0 +170763555650,213,0 +170763555698,213,0 +170763555746,214,0 +170763555794,213,0 +170763555842,214,0 +170763555890,214,0 +170763555937,214,0 +170763555985,214,0 +170763556033,215,0 +170763556081,215,0 +170763556129,215,0 +170763556178,215,0 +170763556226,215,0 +170763556274,216,0 +170763556322,216,0 +170763556371,216,0 +170763556419,216,0 +170763556468,216,0 +170763556518,214,0 +170763556566,213,0 +170763556614,213,0 +170763556663,213,0 +170763556711,213,0 +170763556759,213,0 +170763556807,214,0 +170763556857,214,0 +170763556904,214,0 +170763556952,214,0 +170763557000,214,0 +170763557048,215,0 +170763557096,215,0 +170763557144,215,0 +170763557194,216,0 +170763557243,216,0 +170763557293,216,0 +170763557341,216,0 +170763557390,216,0 +170763557440,216,0 +170763557488,213,0 +170763557535,213,0 +170763557583,213,0 +170763557631,213,0 +170763557679,213,0 +170763557729,214,0 +170763557776,214,0 +170763557826,214,0 +170763557874,214,0 +170763557923,214,0 +170763557971,215,0 +170763558019,215,0 +170763558067,215,0 +170763558116,215,0 +170763558164,215,0 +170763558212,216,0 +170763558262,216,0 +170763558311,216,0 +170763558361,216,0 +170763558409,214,0 +170763558458,213,0 +170763558506,213,0 +170763558554,213,0 +170763558602,213,0 +170763558651,213,0 +170763558701,213,0 +170763558749,213,0 +170763558798,214,0 +170763558848,214,0 +170763558897,215,0 +170763558945,215,0 +170763558993,215,0 +170763559041,215,0 +170763559089,215,0 +170763559139,216,0 +170763559187,216,0 +170763559235,216,0 +170763559283,216,0 +170763559331,216,0 +170763559380,214,0 +170763559428,213,0 +170763559477,213,0 +170763559527,213,0 +170763559576,213,0 +170763559626,213,0 +170763559674,213,0 +170763559722,214,0 +170763559770,214,0 +170763559818,214,0 +170763559865,214,0 +170763559913,215,0 +170763559961,215,0 +170763560009,215,0 +170763560058,215,0 +170763560106,216,0 +170763560156,215,0 +170763560206,216,0 +170763560253,216,0 +170763560303,216,0 +170763560351,213,0 +170763560401,213,0 +170763560449,213,0 +170763560496,213,0 +170763560546,213,0 +170763560594,214,0 +170763560643,213,0 +170763560693,213,0 +170763560743,214,0 +170763560792,214,0 +170763560840,214,0 +170763560888,214,0 +170763560936,215,0 +170763560985,215,0 +170763561033,215,0 +170763561081,215,0 +170763561131,215,0 +170763561179,215,0 +170763561228,216,0 +170763561277,214,0 +170763561325,213,0 +170763561373,213,0 +170763561423,213,0 +170763561471,213,0 +170763561520,213,0 +170763561568,214,0 +170763561617,214,0 +170763561665,214,0 +170763561713,214,0 +170763561761,214,0 +170763561809,215,0 +170763561857,215,0 +170763561905,215,0 +170763561952,215,0 +170763562000,216,0 +170763562050,216,0 +170763562098,216,0 +170763562146,216,0 +170763562194,216,0 +170763562241,214,0 +170763562289,213,0 +170763562339,213,0 +170763562387,213,0 +170763562435,213,0 +170763562483,214,0 +170763562532,214,0 +170763562580,214,0 +170763562628,214,0 +170763562676,215,0 +170763562725,215,0 +170763562773,215,0 +170763562822,215,0 +170763562872,216,0 +170763562920,216,0 +170763562967,216,0 +170763563015,216,0 +170763563065,216,0 +170763563113,216,0 +170763563160,216,0 +170763563208,213,0 +170763563256,213,0 +170763563305,213,0 +170763563353,214,0 +170763563401,214,0 +170763563449,214,0 +170763563497,214,0 +170763563545,214,0 +170763563593,215,0 +170763563642,215,0 +170763563690,215,0 +170763563739,216,0 +170763563787,216,0 +170763563835,216,0 +170763563885,216,0 +170763563933,216,0 +170763563980,216,0 +170763564028,216,0 +170763564078,216,0 +170763564126,214,0 +170763564173,213,0 +170763564221,213,0 +170763564271,213,0 +170763564319,214,0 +170763564366,214,0 +170763564414,213,0 +170763564462,214,0 +170763564510,214,0 +170763564558,214,0 +170763564607,215,0 +170763564655,215,0 +170763564703,215,0 +170763564751,215,0 +170763564801,216,0 +170763564848,216,0 +170763564898,216,0 +170763564948,216,0 +170763564997,216,0 +170763565045,216,0 +170763565094,214,0 +170763565142,213,0 +170763565192,213,0 +170763565241,213,0 +170763565291,214,0 +170763565339,214,0 +170763565388,214,0 +170763565436,214,0 +170763565486,214,0 +170763565534,215,0 +170763565582,214,0 +170763565630,215,0 +170763565678,215,0 +170763565727,215,0 +170763565775,215,0 +170763565823,215,0 +170763565872,216,0 +170763565920,216,0 +170763565968,216,0 +170763566018,216,0 +170763566066,213,0 +170763566114,213,0 +170763566163,213,0 +170763566211,213,0 +170763566261,213,0 +170763566308,213,0 +170763566356,214,0 +170763566406,214,0 +170763566454,214,0 +170763566502,214,0 +170763566550,215,0 +170763566599,215,0 +170763566647,215,0 +170763566695,215,0 +170763566743,215,0 +170763566793,216,0 +170763566841,216,0 +170763566890,216,0 +170763566938,216,0 +170763566986,214,0 +170763567034,213,0 +170763567082,213,0 +170763567132,213,0 +170763567181,214,0 +170763567231,214,0 +170763567280,214,0 +170763567328,214,0 +170763567378,214,0 +170763567426,213,0 +170763567474,214,0 +170763567522,215,0 +170763567570,215,0 +170763567617,215,0 +170763567665,216,0 +170763567713,216,0 +170763567761,216,0 +170763567809,216,0 +170763567857,216,0 +170763567905,216,0 +170763567952,214,0 +170763568000,213,0 +170763568050,213,0 +170763568098,214,0 +170763568145,214,0 +170763568193,214,0 +170763568243,214,0 +170763568292,214,0 +170763568340,214,0 +170763568388,215,0 +170763568436,215,0 +170763568483,215,0 +170763568531,215,0 +170763568579,215,0 +170763568627,216,0 +170763568675,215,0 +170763568724,216,0 +170763568772,217,0 +170763568820,216,0 +170763568868,216,0 +170763568916,213,0 +170763568964,214,0 +170763569014,213,0 +170763569063,214,0 +170763569112,214,0 +170763569160,214,0 +170763569208,214,0 +170763569256,215,0 +170763569305,215,0 +170763569353,216,0 +170763569401,215,0 +170763569449,216,0 +170763569498,216,0 +170763569547,216,0 +170763569594,216,0 +170763569642,216,0 +170763569690,217,0 +170763569740,217,0 +170763569788,216,0 +170763569836,216,0 +170763569885,213,0 +170763569933,213,0 +170763569981,214,0 +170763570029,214,0 +170763570077,214,0 +170763570126,215,0 +170763570174,215,0 +170763570224,215,0 +170763570272,215,0 +170763570320,215,0 +170763570369,215,0 +170763570417,216,0 +170763570467,215,0 +170763570515,216,0 +170763570563,216,0 +170763570610,216,0 +170763570658,216,0 +170763570706,217,0 +170763570754,216,0 +170763570802,214,0 +170763570851,213,0 +170763570899,213,0 +170763570947,214,0 +170763570995,214,0 +170763571043,214,0 +170763571090,214,0 +170763571138,215,0 +170763571186,215,0 +170763571235,215,0 +170763571283,215,0 +170763571331,215,0 +170763571379,214,0 +170763571427,215,0 +170763571475,216,0 +170763571524,216,0 +170763571572,215,0 +170763571620,216,0 +170763571668,216,0 +170763571716,216,0 +170763571764,213,0 +170763571814,213,0 +170763571863,213,0 +170763571911,213,0 +170763571959,213,0 +170763572007,213,0 +170763572054,214,0 +170763572102,214,0 +170763572150,214,0 +170763572198,214,0 +170763572246,214,0 +170763572294,214,0 +170763572343,215,0 +170763572391,215,0 +170763572439,215,0 +170763572486,215,0 +170763572534,215,0 +170763572584,216,0 +170763572631,216,0 +170763572679,216,0 +170763572727,214,0 +170763572775,213,0 +170763572823,213,0 +170763572870,213,0 +170763572918,213,0 +170763572966,213,0 +170763573014,214,0 +170763573064,214,0 +170763573113,214,0 +170763573161,214,0 +170763573211,215,0 +170763573258,215,0 +170763573308,215,0 +170763573356,215,0 +170763573405,216,0 +170763573453,215,0 +170763573503,216,0 +170763573552,216,0 +170763573600,216,0 +170763573650,214,0 +170763573699,213,0 +170763573747,213,0 +170763573797,213,0 +170763573845,213,0 +170763573894,213,0 +170763573942,214,0 +170763573990,214,0 +170763574038,214,0 +170763574087,214,0 +170763574135,214,0 +170763574185,215,0 +170763574234,214,0 +170763574282,215,0 +170763574330,215,0 +170763574378,215,0 +170763574427,215,0 +170763574477,215,0 +170763574526,215,0 +170763574576,216,0 +170763574624,213,0 +170763574673,213,0 +170763574723,213,0 +170763574771,213,0 +170763574819,213,0 +170763574867,213,0 +170763574915,213,0 +170763574963,213,0 +170763575011,214,0 +170763575058,214,0 +170763575106,215,0 +170763575156,215,0 +170763575204,215,0 +170763575252,215,0 +170763575301,215,0 +170763575349,216,0 +170763575397,216,0 +170763575445,216,0 +170763575493,216,0 +170763575541,215,0 +170763575589,213,0 +170763575639,213,0 +170763575687,213,0 +170763575736,213,0 +170763575784,213,0 +170763575832,214,0 +170763575880,213,0 +170763575928,213,0 +170763575976,214,0 +170763576024,214,0 +170763576073,214,0 +170763576121,214,0 +170763576170,215,0 +170763576218,215,0 +170763576266,215,0 +170763576314,215,0 +170763576364,215,0 +170763576411,215,0 +170763576461,216,0 +170763576509,214,0 +170763576557,213,0 +170763576605,213,0 +170763576654,213,0 +170763576702,214,0 +170763576750,213,0 +170763576799,213,0 +170763576847,213,0 +170763576895,214,0 +170763576943,214,0 +170763576992,214,0 +170763577040,214,0 +170763577088,215,0 +170763577136,215,0 +170763577185,215,0 +170763577235,215,0 +170763577283,216,0 +170763577331,215,0 +170763577380,216,0 +170763577428,215,0 +170763577476,213,0 +170763577524,213,0 +170763577572,213,0 +170763577620,213,0 +170763577668,213,0 +170763577717,214,0 +170763577765,213,0 +170763577813,213,0 +170763577861,214,0 +170763577909,214,0 +170763577956,214,0 +170763578004,215,0 +170763578052,215,0 +170763578102,215,0 +170763578149,215,0 +170763578197,215,0 +170763578245,215,0 +170763578293,215,0 +170763578341,216,0 +170763578389,216,0 +170763578437,213,0 +170763578484,213,0 +170763578532,213,0 +170763578580,213,0 +170763578628,213,0 +170763578676,213,0 +170763578723,214,0 +170763578771,214,0 +170763578821,214,0 +170763578868,214,0 +170763578916,214,0 +170763578964,215,0 +170763579012,215,0 +170763579062,215,0 +170763579111,215,0 +170763579161,216,0 +170763579208,216,0 +170763579256,216,0 +170763579304,216,0 +170763579354,214,0 +170763579402,213,0 +170763579451,213,0 +170763579501,213,0 +170763579549,213,0 +170763579598,213,0 +170763579646,214,0 +170763579694,214,0 +170763579742,214,0 +170763579792,214,0 +170763579840,214,0 +170763579889,215,0 +170763579938,215,0 +170763579986,215,0 +170763580036,215,0 +170763580085,216,0 +170763580133,216,0 +170763580181,216,0 +170763580231,216,0 +170763580279,216,0 +170763580327,214,0 +170763580375,213,0 +170763580423,213,0 +170763580471,213,0 +170763580519,213,0 +170763580567,213,0 +170763580615,213,0 +170763580663,213,0 +170763580712,214,0 +170763580761,214,0 +170763580809,214,0 +170763580857,214,0 +170763580907,215,0 +170763580955,215,0 +170763581002,215,0 +170763581050,215,0 +170763581098,216,0 +170763581146,216,0 +170763581194,216,0 +170763581244,216,0 +170763581293,213,0 +170763581343,213,0 +170763581391,213,0 +170763581438,213,0 +170763581488,213,0 +170763581537,213,0 +170763581585,213,0 +170763581635,213,0 +170763581684,214,0 +170763581732,214,0 +170763581782,214,0 +170763581830,214,0 +170763581878,214,0 +170763581926,215,0 +170763581974,215,0 +170763582021,215,0 +170763582069,216,0 +170763582117,216,0 +170763582167,216,0 +170763582215,214,0 +170763582264,213,0 +170763582312,213,0 +170763582360,213,0 +170763582408,214,0 +170763582457,214,0 +170763582505,214,0 +170763582555,214,0 +170763582603,214,0 +170763582652,215,0 +170763582700,215,0 +170763582748,215,0 +170763582796,215,0 +170763582844,216,0 +170763582893,215,0 +170763582943,216,0 +170763582991,216,0 +170763583039,216,0 +170763583087,216,0 +170763583135,216,0 +170763583182,214,0 +170763583232,213,0 +170763583280,213,0 +170763583328,213,0 +170763583377,213,0 +170763583425,213,0 +170763583475,214,0 +170763583523,214,0 +170763583572,214,0 +170763583620,214,0 +170763583668,214,0 +170763583718,214,0 +170763583765,215,0 +170763583813,215,0 +170763583861,215,0 +170763583909,216,0 +170763583958,216,0 +170763584006,216,0 +170763584054,216,0 +170763584102,216,0 +170763584152,213,0 +170763584201,213,0 +170763584249,213,0 +170763584297,213,0 +170763584345,213,0 +170763584393,213,0 +170763584441,213,0 +170763584489,214,0 +170763584538,214,0 +170763584586,214,0 +170763584634,214,0 +170763584682,215,0 +170763584730,215,0 +170763584778,215,0 +170763584826,215,0 +170763584874,216,0 +170763584922,216,0 +170763584970,216,0 +170763585018,216,0 +170763585066,214,0 +170763585115,213,0 +170763585163,213,0 +170763585211,213,0 +170763585259,214,0 +170763585307,214,0 +170763585356,214,0 +170763585404,214,0 +170763585452,214,0 +170763585500,214,0 +170763585548,214,0 +170763585596,215,0 +170763585645,215,0 +170763585693,215,0 +170763585741,215,0 +170763585789,216,0 +170763585837,216,0 +170763585886,216,0 +170763585936,216,0 +170763585984,216,0 +170763586033,214,0 +170763586081,213,0 +170763586129,213,0 +170763586177,213,0 +170763586227,214,0 +170763586276,214,0 +170763586324,214,0 +170763586372,214,0 +170763586420,214,0 +170763586468,214,0 +170763586516,215,0 +170763586565,215,0 +170763586613,216,0 +170763586663,216,0 +170763586712,216,0 +170763586762,216,0 +170763586810,216,0 +170763586858,216,0 +170763586906,216,0 +170763586954,216,0 +170763587002,213,0 +170763587050,213,0 +170763587098,213,0 +170763587147,213,0 +170763587195,214,0 +170763587244,214,0 +170763587292,214,0 +170763587342,214,0 +170763587390,214,0 +170763587438,215,0 +170763587486,215,0 +170763587535,215,0 +170763587583,215,0 +170763587631,216,0 +170763587679,216,0 +170763587729,216,0 +170763587776,216,0 +170763587824,216,0 +170763587874,216,0 +170763587922,214,0 +170763587971,213,0 +170763588019,213,0 +170763588067,214,0 +170763588115,214,0 +170763588163,214,0 +170763588212,214,0 +170763588260,214,0 +170763588308,214,0 +170763588358,215,0 +170763588407,215,0 +170763588457,215,0 +170763588506,215,0 +170763588554,216,0 +170763588604,216,0 +170763588652,216,0 +170763588699,216,0 +170763588747,216,0 +170763588797,216,0 +170763588845,216,0 +170763588893,213,0 +170763588942,213,0 +170763588990,213,0 +170763589038,214,0 +170763589088,214,0 +170763589136,214,0 +170763589184,214,0 +170763589231,215,0 +170763589279,215,0 +170763589327,215,0 +170763589375,215,0 +170763589425,216,0 +170763589473,216,0 +170763589521,216,0 +170763589570,216,0 +170763589620,216,0 +170763589667,216,0 +170763589717,215,0 +170763589765,216,0 +170763589813,215,0 +170763589861,214,0 +170763589910,214,0 +170763589958,213,0 +170763590006,214,0 +170763590054,214,0 +170763590102,214,0 +170763590152,214,0 +170763590200,215,0 +170763590248,215,0 +170763590296,215,0 +170763590343,215,0 +170763590391,216,0 +170763590439,216,0 +170763590487,216,0 +170763590535,216,0 +170763590583,217,0 +170763590631,218,0 +170763590680,216,0 +170763590728,216,0 +170763590778,214,0 +170763590827,213,0 +170763590877,213,0 +170763590925,214,0 +170763590973,213,0 +170763591021,213,0 +170763591068,214,0 +170763591116,214,0 +170763591166,214,0 +170763591214,215,0 +170763591262,215,0 +170763591310,216,0 +170763591358,215,0 +170763591407,215,0 +170763591457,215,0 +170763591505,215,0 +170763591552,215,0 +170763591602,216,0 +170763591650,216,0 +170763591698,216,0 +170763591746,213,0 +170763591794,213,0 +170763591842,213,0 +170763591891,213,0 +170763591939,213,0 +170763591989,214,0 +170763592037,214,0 +170763592085,214,0 +170763592134,214,0 +170763592182,215,0 +170763592230,215,0 +170763592278,215,0 +170763592327,215,0 +170763592375,215,0 +170763592423,215,0 +170763592471,215,0 +170763592519,216,0 +170763592567,216,0 +170763592615,216,0 +170763592663,214,0 +170763592712,213,0 +170763592762,213,0 +170763592810,213,0 +170763592858,213,0 +170763592905,213,0 +170763592953,214,0 +170763593001,214,0 +170763593049,214,0 +170763593097,214,0 +170763593145,215,0 +170763593193,215,0 +170763593241,215,0 +170763593289,215,0 +170763593337,216,0 +170763593386,216,0 +170763593434,215,0 +170763593482,216,0 +170763593530,216,0 +170763593578,216,0 +170763593626,214,0 +170763593675,213,0 +170763593725,214,0 +170763593773,213,0 +170763593822,213,0 +170763593872,214,0 +170763593920,214,0 +170763593968,214,0 +170763594016,214,0 +170763594064,214,0 +170763594111,214,0 +170763594159,215,0 +170763594209,215,0 +170763594257,215,0 +170763594305,216,0 +170763594353,216,0 +170763594401,216,0 +170763594450,216,0 +170763594498,216,0 +170763594548,216,0 +170763594595,214,0 +170763594643,213,0 +170763594693,213,0 +170763594742,214,0 +170763594790,214,0 +170763594840,214,0 +170763594888,214,0 +170763594937,214,0 +170763594985,214,0 +170763595033,215,0 +170763595083,215,0 +170763595131,215,0 +170763595180,215,0 +170763595228,215,0 +170763595276,216,0 +170763595326,216,0 +170763595374,216,0 +170763595422,216,0 +170763595470,216,0 +170763595517,214,0 +170763595565,213,0 +170763595614,213,0 +170763595662,213,0 +170763595710,214,0 +170763595758,214,0 +170763595806,214,0 +170763595854,214,0 +170763595902,214,0 +170763595951,215,0 +170763595999,215,0 +170763596047,215,0 +170763596094,215,0 +170763596142,216,0 +170763596192,216,0 +170763596239,216,0 +170763596287,216,0 +170763596335,216,0 +170763596383,216,0 +170763596431,216,0 +170763596479,215,0 +170763596528,213,0 +170763596576,213,0 +170763596624,213,0 +170763596672,213,0 +170763596719,214,0 +170763596767,214,0 +170763596815,214,0 +170763596863,214,0 +170763596911,215,0 +170763596958,214,0 +170763597006,215,0 +170763597054,215,0 +170763597102,215,0 +170763597150,215,0 +170763597198,216,0 +170763597247,216,0 +170763597297,216,0 +170763597345,216,0 +170763597393,216,0 +170763597441,214,0 +170763597490,214,0 +170763597538,214,0 +170763597588,214,0 +170763597637,214,0 +170763597685,214,0 +170763597734,214,0 +170763597782,214,0 +170763597832,214,0 +170763597881,214,0 +170763597931,215,0 +170763597980,215,0 +170763598028,215,0 +170763598076,215,0 +170763598124,216,0 +170763598172,216,0 +170763598222,216,0 +170763598269,216,0 +170763598317,216,0 +170763598365,215,0 +170763598413,213,0 +170763598461,213,0 +170763598511,213,0 +170763598560,213,0 +170763598610,214,0 +170763598659,214,0 +170763598707,213,0 +170763598755,213,0 +170763598803,214,0 +170763598853,215,0 +170763598901,215,0 +170763598949,215,0 +170763598997,215,0 +170763599044,215,0 +170763599094,215,0 +170763599142,215,0 +170763599190,216,0 +170763599239,216,0 +170763599287,216,0 +170763599335,214,0 +170763599385,213,0 +170763599433,213,0 +170763599481,213,0 +170763599530,213,0 +170763599578,213,0 +170763599628,213,0 +170763599675,214,0 +170763599723,214,0 +170763599773,214,0 +170763599821,215,0 +170763599869,215,0 +170763599918,215,0 +170763599968,215,0 +170763600018,216,0 +170763600066,215,0 +170763600113,216,0 +170763600161,216,0 +170763600211,216,0 +170763600259,216,0 +170763600307,214,0 +170763600355,213,0 +170763600403,213,0 +170763600451,213,0 +170763600500,213,0 +170763600548,213,0 +170763600596,214,0 +170763600645,214,0 +170763600695,214,0 +170763600743,214,0 +170763600792,214,0 +170763600840,215,0 +170763600890,215,0 +170763600938,215,0 +170763600986,216,0 +170763601033,215,0 +170763601081,215,0 +170763601131,215,0 +170763601179,216,0 +170763601228,214,0 +170763601276,213,0 +170763601324,213,0 +170763601374,213,0 +170763601422,214,0 +170763601470,214,0 +170763601518,214,0 +170763601567,214,0 +170763601617,214,0 +170763601666,215,0 +170763601714,214,0 +170763601764,215,0 +170763601812,215,0 +170763601861,216,0 +170763601909,216,0 +170763601959,216,0 +170763602008,216,0 +170763602056,216,0 +170763602104,216,0 +170763602153,216,0 +170763602201,214,0 +170763602251,213,0 +170763602299,213,0 +170763602347,214,0 +170763602396,214,0 +170763602444,214,0 +170763602492,214,0 +170763602540,214,0 +170763602587,214,0 +170763602637,214,0 +170763602685,214,0 +170763602732,215,0 +170763602780,215,0 +170763602828,215,0 +170763602878,215,0 +170763602926,216,0 +170763602973,216,0 +170763603021,216,0 +170763603069,218,0 +170763603117,216,0 +170763603165,214,0 +170763603213,213,0 +170763603262,214,0 +170763603310,214,0 +170763603358,214,0 +170763603406,214,0 +170763603454,214,0 +170763603501,215,0 +170763603549,215,0 +170763603597,215,0 +170763603645,215,0 +170763603693,215,0 +170763603742,216,0 +170763603790,216,0 +170763603838,216,0 +170763603886,216,0 +170763603934,216,0 +170763603982,216,0 +170763604030,216,0 +170763604079,216,0 +170763604127,214,0 +170763604175,213,0 +170763604225,214,0 +170763604274,214,0 +170763604322,214,0 +170763604370,214,0 +170763604418,214,0 +170763604467,214,0 +170763604517,215,0 +170763604566,215,0 +170763604614,215,0 +170763604662,216,0 +170763604710,215,0 +170763604758,216,0 +170763604808,216,0 +170763604856,216,0 +170763604905,216,0 +170763604955,216,0 +170763605003,216,0 +170763605052,214,0 +170763605100,213,0 +170763605148,213,0 +170763605196,213,0 +170763605245,214,0 +170763605293,214,0 +170763605341,214,0 +170763605389,214,0 +170763605439,215,0 +170763605487,214,0 +170763605535,215,0 +170763605583,215,0 +170763605630,215,0 +170763605678,216,0 +170763605728,216,0 +170763605776,216,0 +170763605824,216,0 +170763605872,216,0 +170763605919,216,0 +170763605967,216,0 +170763606015,214,0 +170763606063,213,0 +170763606113,213,0 +170763606160,213,0 +170763606208,213,0 +170763606256,213,0 +170763606304,213,0 +170763606352,213,0 +170763606400,213,0 +170763606448,214,0 +170763606496,214,0 +170763606544,214,0 +170763606593,214,0 +170763606641,215,0 +170763606689,215,0 +170763606737,215,0 +170763606787,215,0 +170763606836,215,0 +170763606886,216,0 +170763606933,215,0 +170763606981,213,0 +170763607031,213,0 +170763607080,213,0 +170763607128,213,0 +170763607178,214,0 +170763607227,214,0 +170763607275,213,0 +170763607323,214,0 +170763607371,214,0 +170763607419,214,0 +170763607467,214,0 +170763607515,215,0 +170763607563,215,0 +170763607612,215,0 +170763607662,215,0 +170763607709,216,0 +170763607757,216,0 +170763607805,216,0 +170763607853,216,0 +170763607903,214,0 +170763607951,213,0 +170763607998,214,0 +170763608046,214,0 +170763608094,214,0 +170763608142,214,0 +170763608190,213,0 +170763608238,214,0 +170763608287,214,0 +170763608335,214,0 +170763608383,215,0 +170763608433,215,0 +170763608482,215,0 +170763608532,215,0 +170763608580,215,0 +170763608628,216,0 +170763608675,216,0 +170763608723,216,0 +170763608773,216,0 +170763608821,216,0 +170763608869,213,0 +170763608917,214,0 +170763608964,213,0 +170763609014,213,0 +170763609062,213,0 +170763609110,213,0 +170763609158,214,0 +170763609207,214,0 +170763609255,214,0 +170763609303,214,0 +170763609351,215,0 +170763609401,215,0 +170763609450,215,0 +170763609499,215,0 +170763609547,216,0 +170763609597,216,0 +170763609645,216,0 +170763609694,216,0 +170763609744,217,0 +170763609792,214,0 +170763609839,213,0 +170763609887,213,0 +170763609935,213,0 +170763609985,213,0 +170763610033,213,0 +170763610081,214,0 +170763610130,214,0 +170763610180,214,0 +170763610227,214,0 +170763610275,214,0 +170763610323,214,0 +170763610373,215,0 +170763610422,215,0 +170763610470,215,0 +170763610519,216,0 +170763610569,216,0 +170763610616,216,0 +170763610664,216,0 +170763610712,216,0 +170763610760,213,0 +170763610808,213,0 +170763610856,213,0 +170763610904,213,0 +170763610952,214,0 +170763610999,214,0 +170763611047,213,0 +170763611095,214,0 +170763611143,213,0 +170763611191,214,0 +170763611238,214,0 +170763611286,214,0 +170763611334,215,0 +170763611382,215,0 +170763611429,215,0 +170763611477,215,0 +170763611525,216,0 +170763611573,216,0 +170763611621,216,0 +170763611668,216,0 +170763611716,214,0 +170763611764,214,0 +170763611812,213,0 +170763611860,213,0 +170763611909,213,0 +170763611957,214,0 +170763612005,213,0 +170763612055,214,0 +170763612103,214,0 +170763612150,214,0 +170763612198,214,0 +170763612246,215,0 +170763612294,215,0 +170763612342,215,0 +170763612390,215,0 +170763612437,215,0 +170763612485,216,0 +170763612533,216,0 +170763612582,216,0 +170763612630,214,0 +170763612678,213,0 +170763612726,213,0 +170763612774,213,0 +170763612822,213,0 +170763612870,213,0 +170763612917,213,0 +170763612965,214,0 +170763613013,213,0 +170763613061,214,0 +170763613109,214,0 +170763613157,215,0 +170763613206,215,0 +170763613254,215,0 +170763613302,215,0 +170763613351,215,0 +170763613401,216,0 +170763613449,216,0 +170763613498,216,0 +170763613546,216,0 +170763613594,214,0 +170763613642,213,0 +170763613689,213,0 +170763613737,213,0 +170763613785,213,0 +170763613833,213,0 +170763613882,214,0 +170763613930,214,0 +170763613978,214,0 +170763614026,214,0 +170763614074,214,0 +170763614121,215,0 +170763614169,215,0 +170763614217,215,0 +170763614267,215,0 +170763614316,215,0 +170763614364,215,0 +170763614414,216,0 +170763614462,216,0 +170763614511,216,0 +170763614559,214,0 +170763614607,213,0 +170763614655,213,0 +170763614703,213,0 +170763614750,213,0 +170763614798,214,0 +170763614846,214,0 +170763614894,214,0 +170763614942,214,0 +170763614990,214,0 +170763615038,215,0 +170763615086,215,0 +170763615134,215,0 +170763615182,215,0 +170763615231,216,0 +170763615279,216,0 +170763615328,216,0 +170763615378,216,0 +170763615426,216,0 +170763615474,216,0 +170763615522,213,0 +170763615571,213,0 +170763615619,213,0 +170763615667,213,0 +170763615716,214,0 +170763615764,214,0 +170763615814,214,0 +170763615863,214,0 +170763615911,215,0 +170763615959,215,0 +170763616008,215,0 +170763616056,216,0 +170763616104,216,0 +170763616152,216,0 +170763616200,216,0 +170763616248,216,0 +170763616296,216,0 +170763616344,216,0 +170763616392,216,0 +170763616440,214,0 +170763616487,213,0 +170763616535,213,0 +170763616585,213,0 +170763616633,213,0 +170763616681,213,0 +170763616729,214,0 +170763616776,214,0 +170763616826,214,0 +170763616874,215,0 +170763616922,215,0 +170763616970,215,0 +170763617019,215,0 +170763617067,216,0 +170763617117,216,0 +170763617166,216,0 +170763617214,216,0 +170763617262,216,0 +170763617311,216,0 +170763617359,216,0 +170763617407,214,0 +170763617455,213,0 +170763617503,213,0 +170763617551,213,0 +170763617601,213,0 +170763617649,214,0 +170763617696,214,0 +170763617744,214,0 +170763617792,215,0 +170763617840,215,0 +170763617888,215,0 +170763617936,215,0 +170763617986,215,0 +170763618035,216,0 +170763618083,216,0 +170763618131,216,0 +170763618179,216,0 +170763618227,216,0 +170763618275,216,0 +170763618323,216,0 +170763618371,214,0 +170763618419,213,0 +170763618468,213,0 +170763618516,214,0 +170763618564,214,0 +170763618612,214,0 +170763618660,214,0 +170763618708,214,0 +170763618756,215,0 +170763618804,215,0 +170763618853,215,0 +170763618903,215,0 +170763618952,215,0 +170763619002,215,0 +170763619050,216,0 +170763619098,216,0 +170763619146,216,0 +170763619195,216,0 +170763619245,216,0 +170763619292,214,0 +170763619342,213,0 +170763619391,213,0 +170763619441,213,0 +170763619489,214,0 +170763619537,214,0 +170763619585,214,0 +170763619633,214,0 +170763619680,214,0 +170763619730,215,0 +170763619779,215,0 +170763619827,215,0 +170763619877,215,0 +170763619925,215,0 +170763619973,215,0 +170763620021,216,0 +170763620069,216,0 +170763620117,216,0 +170763620166,217,0 +170763620214,217,0 +170763620263,214,0 +170763620311,213,0 +170763620359,214,0 +170763620407,213,0 +170763620457,213,0 +170763620505,214,0 +170763620553,214,0 +170763620602,214,0 +170763620650,214,0 +170763620698,215,0 +170763620747,215,0 +170763620795,215,0 +170763620845,215,0 +170763620894,216,0 +170763620942,216,0 +170763620990,216,0 +170763621040,216,0 +170763621089,216,0 +170763621139,216,0 +170763621187,216,0 +170763621236,214,0 +170763621284,214,0 +170763621334,213,0 +170763621381,214,0 +170763621431,214,0 +170763621479,214,0 +170763621527,214,0 +170763621574,214,0 +170763621622,215,0 +170763621670,215,0 +170763621718,215,0 +170763621766,215,0 +170763621815,215,0 +170763621863,216,0 +170763621911,216,0 +170763621959,216,0 +170763622007,216,0 +170763622056,216,0 +170763622104,216,0 +170763622154,214,0 +170763622202,214,0 +170763622250,213,0 +170763622298,214,0 +170763622346,214,0 +170763622393,214,0 +170763622441,214,0 +170763622491,214,0 +170763622540,215,0 +170763622588,214,0 +170763622638,215,0 +170763622686,215,0 +170763622734,215,0 +170763622783,216,0 +170763622833,216,0 +170763622881,216,0 +170763622929,216,0 +170763622977,216,0 +170763623024,217,0 +170763623072,216,0 +170763623120,214,0 +170763623168,213,0 +170763623216,213,0 +170763623264,214,0 +170763623314,213,0 +170763623361,214,0 +170763623409,214,0 +170763623459,214,0 +170763623507,214,0 +170763623556,214,0 +170763623604,214,0 +170763623654,215,0 +170763623702,215,0 +170763623750,216,0 +170763623798,215,0 +170763623845,216,0 +170763623895,215,0 +170763623944,216,0 +170763623992,216,0 +170763624040,216,0 +170763624088,214,0 +170763624136,213,0 +170763624185,214,0 +170763624233,214,0 +170763624283,214,0 +170763624332,214,0 +170763624382,214,0 +170763624430,214,0 +170763624477,214,0 +170763624525,214,0 +170763624573,215,0 +170763624621,215,0 +170763624669,215,0 +170763624717,215,0 +170763624764,215,0 +170763624812,216,0 +170763624860,216,0 +170763624908,216,0 +170763624956,216,0 +170763625004,214,0 +170763625052,213,0 +170763625100,214,0 +170763625148,214,0 +170763625197,214,0 +170763625245,214,0 +170763625295,214,0 +170763625343,214,0 +170763625391,214,0 +170763625438,214,0 +170763625488,214,0 +170763625536,214,0 +170763625584,214,0 +170763625632,214,0 +170763625680,214,0 +170763625728,215,0 +170763625775,215,0 +170763625823,215,0 +170763625871,215,0 +170763625919,215,0 +170763625967,216,0 +170763626016,216,0 +170763626064,216,0 +170763626112,216,0 +170763626161,216,0 +170763626211,216,0 +170763626258,216,0 +170763626308,217,0 +170763626356,217,0 +170763626405,216,0 +170763626455,214,0 +170763626504,214,0 +170763626552,214,0 +170763626600,213,0 +170763626648,214,0 +170763626696,214,0 +170763626744,214,0 +170763626792,214,0 +170763626840,214,0 +170763626889,214,0 +170763626937,215,0 +170763626985,215,0 +170763627033,215,0 +170763627082,216,0 +170763627130,216,0 +170763627180,216,0 +170763627227,216,0 +170763627275,216,0 +170763627325,216,0 +170763627374,215,0 +170763627422,214,0 +170763627470,214,0 +170763627518,214,0 +170763627566,214,0 +170763627616,214,0 +170763627664,214,0 +170763627711,214,0 +170763627759,214,0 +170763627807,214,0 +170763627855,215,0 +170763627903,215,0 +170763627951,215,0 +170763627999,215,0 +170763628047,216,0 +170763628096,216,0 +170763628146,216,0 +170763628195,216,0 +170763628243,216,0 +170763628291,216,0 +170763628341,214,0 +170763628389,213,0 +170763628437,213,0 +170763628486,214,0 +170763628534,214,0 +170763628582,214,0 +170763628630,214,0 +170763628678,214,0 +170763628728,214,0 +170763628775,215,0 +170763628823,214,0 +170763628873,215,0 +170763628922,215,0 +170763628970,215,0 +170763629018,216,0 +170763629066,216,0 +170763629115,216,0 +170763629163,216,0 +170763629211,216,0 +170763629261,216,0 +170763629309,214,0 +170763629357,213,0 +170763629405,214,0 +170763629453,214,0 +170763629502,214,0 +170763629550,213,0 +170763629600,214,0 +170763629647,214,0 +170763629695,214,0 +170763629745,215,0 +170763629793,215,0 +170763629841,215,0 +170763629890,215,0 +170763629938,216,0 +170763629986,216,0 +170763630036,216,0 +170763630085,216,0 +170763630135,216,0 +170763630183,217,0 +170763630232,214,0 +170763630280,213,0 +170763630328,214,0 +170763630378,214,0 +170763630427,214,0 +170763630475,214,0 +170763630523,214,0 +170763630571,214,0 +170763630619,214,0 +170763630667,214,0 +170763630714,214,0 +170763630762,215,0 +170763630812,215,0 +170763630860,215,0 +170763630908,216,0 +170763630955,216,0 +170763631005,216,0 +170763631053,216,0 +170763631100,216,0 +170763631150,216,0 +170763631199,214,0 +170763631247,214,0 +170763631295,214,0 +170763631345,214,0 +170763631393,214,0 +170763631441,214,0 +170763631488,214,0 +170763631536,214,0 +170763631584,214,0 +170763631632,214,0 +170763631680,215,0 +170763631728,215,0 +170763631778,215,0 +170763631827,216,0 +170763631875,216,0 +170763631923,216,0 +170763631971,216,0 +170763632019,216,0 +170763632069,216,0 +170763632116,215,0 +170763632164,213,0 +170763632214,213,0 +170763632262,213,0 +170763632310,213,0 +170763632357,213,0 +170763632405,214,0 +170763632455,214,0 +170763632504,214,0 +170763632554,214,0 +170763632602,214,0 +170763632651,214,0 +170763632701,215,0 +170763632749,215,0 +170763632797,215,0 +170763632845,216,0 +170763632893,216,0 +170763632941,216,0 +170763632990,216,0 +170763633038,216,0 +170763633086,214,0 +170763633134,214,0 +170763633183,214,0 +170763633233,213,0 +170763633281,214,0 +170763633329,214,0 +170763633377,214,0 +170763633425,214,0 +170763633473,214,0 +170763633522,214,0 +170763633572,215,0 +170763633619,215,0 +170763633667,215,0 +170763633717,215,0 +170763633765,216,0 +170763633814,216,0 +170763633862,216,0 +170763633912,216,0 +170763633961,216,0 +170763634009,216,0 +170763634057,214,0 +170763634105,214,0 +170763634154,214,0 +170763634202,214,0 +170763634252,214,0 +170763634299,214,0 +170763634349,214,0 +170763634397,214,0 +170763634445,214,0 +170763634493,214,0 +170763634541,215,0 +170763634589,215,0 +170763634636,216,0 +170763634686,216,0 +170763634734,216,0 +170763634783,215,0 +170763634831,216,0 +170763634879,216,0 +170763634927,216,0 +170763634977,215,0 +170763635024,213,0 +170763635072,213,0 +170763635122,213,0 +170763635170,214,0 +170763635219,214,0 +170763635267,214,0 +170763635317,214,0 +170763635366,214,0 +170763635416,215,0 +170763635464,215,0 +170763635513,215,0 +170763635561,215,0 +170763635611,216,0 +170763635659,216,0 +170763635707,216,0 +170763635755,216,0 +170763635803,216,0 +170763635851,216,0 +170763635899,216,0 +170763635947,214,0 +170763635996,214,0 +170763636044,214,0 +170763636093,214,0 +170763636141,214,0 +170763636191,215,0 +170763636239,214,0 +170763636288,215,0 +170763636336,215,0 +170763636386,215,0 +170763636435,215,0 +170763636485,215,0 +170763636534,215,0 +170763636582,216,0 +170763636630,216,0 +170763636678,216,0 +170763636728,216,0 +170763636777,216,0 +170763636825,217,0 +170763636873,216,0 +170763636921,213,0 +170763636969,213,0 +170763637017,213,0 +170763637065,214,0 +170763637113,214,0 +170763637162,214,0 +170763637212,214,0 +170763637262,215,0 +170763637309,215,0 +170763637359,215,0 +170763637407,215,0 +170763637456,215,0 +170763637504,216,0 +170763637554,216,0 +170763637602,216,0 +170763637650,216,0 +170763637699,216,0 +170763637747,217,0 +170763637797,216,0 +170763637844,214,0 +170763637892,213,0 +170763637940,214,0 +170763637988,214,0 +170763638036,214,0 +170763638084,214,0 +170763638132,214,0 +170763638180,214,0 +170763638228,215,0 +170763638277,215,0 +170763638327,215,0 +170763638376,215,0 +170763638424,216,0 +170763638474,216,0 +170763638523,216,0 +170763638571,216,0 +170763638619,216,0 +170763638667,217,0 +170763638715,216,0 +170763638762,216,0 +170763638810,213,0 +170763638858,213,0 +170763638908,213,0 +170763638955,213,0 +170763639003,214,0 +170763639051,214,0 +170763639099,214,0 +170763639147,214,0 +170763639195,215,0 +170763639244,214,0 +170763639294,215,0 +170763639343,216,0 +170763639392,216,0 +170763639440,216,0 +170763639490,216,0 +170763639539,216,0 +170763639589,216,0 +170763639637,216,0 +170763639685,216,0 +170763639733,214,0 +170763639781,214,0 +170763639829,213,0 +170763639878,214,0 +170763639928,214,0 +170763639976,213,0 +170763640025,214,0 +170763640075,214,0 +170763640123,214,0 +170763640170,214,0 +170763640218,214,0 +170763640268,214,0 +170763640316,215,0 +170763640364,215,0 +170763640411,215,0 +170763640461,215,0 +170763640509,216,0 +170763640557,216,0 +170763640605,216,0 +170763640653,216,0 +170763640702,214,0 +170763640752,214,0 +170763640801,213,0 +170763640849,213,0 +170763640899,214,0 +170763640946,214,0 +170763640994,214,0 +170763641042,214,0 +170763641090,214,0 +170763641138,214,0 +170763641188,214,0 +170763641236,215,0 +170763641284,215,0 +170763641333,215,0 +170763641383,215,0 +170763641431,215,0 +170763641479,216,0 +170763641527,216,0 +170763641576,216,0 +170763641624,216,0 +170763641672,213,0 +170763641720,213,0 +170763641768,213,0 +170763641817,214,0 +170763641865,214,0 +170763641913,214,0 +170763641961,214,0 +170763642010,214,0 +170763642058,215,0 +170763642106,215,0 +170763642156,215,0 +170763642205,215,0 +170763642253,216,0 +170763642301,216,0 +170763642349,216,0 +170763642397,216,0 +170763642446,216,0 +170763642494,216,0 +170763642542,216,0 +170763642592,214,0 +170763642640,214,0 +170763642688,213,0 +170763642736,214,0 +170763642785,214,0 +170763642833,214,0 +170763642881,214,0 +170763642929,214,0 +170763642977,214,0 +170763643025,215,0 +170763643073,215,0 +170763643121,215,0 +170763643170,215,0 +170763643220,216,0 +170763643267,216,0 +170763643317,216,0 +170763643365,216,0 +170763643413,216,0 +170763643462,216,0 +170763643510,216,0 +170763643560,214,0 +170763643609,213,0 +170763643657,213,0 +170763643705,213,0 +170763643753,214,0 +170763643801,214,0 +170763643849,214,0 +170763643897,214,0 +170763643945,214,0 +170763643993,215,0 +170763644041,215,0 +170763644090,215,0 +170763644140,215,0 +170763644188,215,0 +170763644236,216,0 +170763644285,216,0 +170763644333,216,0 +170763644381,216,0 +170763644429,216,0 +170763644477,216,0 +170763644525,214,0 +170763644573,213,0 +170763644621,214,0 +170763644669,213,0 +170763644718,213,0 +170763644768,213,0 +170763644816,213,0 +170763644863,214,0 +170763644911,214,0 +170763644959,214,0 +170763645007,215,0 +170763645056,215,0 +170763645104,215,0 +170763645152,215,0 +170763645200,215,0 +170763645248,215,0 +170763645296,215,0 +170763645344,216,0 +170763645392,216,0 +170763645440,214,0 +170763645488,213,0 +170763645537,213,0 +170763645585,213,0 +170763645633,213,0 +170763645682,214,0 +170763645732,214,0 +170763645780,214,0 +170763645828,214,0 +170763645876,214,0 +170763645925,214,0 +170763645975,214,0 +170763646023,215,0 +170763646071,215,0 +170763646119,215,0 +170763646168,215,0 +170763646217,216,0 +170763646265,216,0 +170763646315,216,0 +170763646363,216,0 +170763646411,214,0 +170763646459,213,0 +170763646507,214,0 +170763646555,213,0 +170763646603,214,0 +170763646651,214,0 +170763646699,214,0 +170763646747,214,0 +170763646796,214,0 +170763646846,214,0 +170763646894,214,0 +170763646942,215,0 +170763646990,215,0 +170763647037,215,0 +170763647087,215,0 +170763647136,216,0 +170763647186,216,0 +170763647234,216,0 +170763647283,216,0 +170763647331,216,0 +170763647379,214,0 +170763647429,213,0 +170763647478,213,0 +170763647526,214,0 +170763647576,214,0 +170763647625,214,0 +170763647673,214,0 +170763647721,214,0 +170763647768,214,0 +170763647818,214,0 +170763647866,215,0 +170763647914,215,0 +170763647962,215,0 +170763648011,215,0 +170763648059,216,0 +170763648107,216,0 +170763648155,216,0 +170763648202,216,0 +170763648250,216,0 +170763648300,215,0 +170763648348,213,0 +170763648396,214,0 +170763648444,214,0 +170763648493,214,0 +170763648541,214,0 +170763648590,214,0 +170763648638,214,0 +170763648686,215,0 +170763648734,215,0 +170763648784,215,0 +170763648832,215,0 +170763648880,215,0 +170763648928,216,0 +170763648977,216,0 +170763649025,216,0 +170763649074,216,0 +170763649122,216,0 +170763649170,216,0 +170763649220,216,0 +170763649268,214,0 +170763649316,213,0 +170763649364,213,0 +170763649411,213,0 +170763649459,213,0 +170763649507,214,0 +170763649555,213,0 +170763649603,214,0 +170763649651,214,0 +170763649699,214,0 +170763649747,215,0 +170763649797,215,0 +170763649844,215,0 +170763649892,215,0 +170763649942,216,0 +170763649991,216,0 +170763650041,216,0 +170763650089,216,0 +170763650137,216,0 +170763650185,216,0 +170763650234,214,0 +170763650284,213,0 +170763650332,213,0 +170763650380,213,0 +170763650429,214,0 +170763650477,214,0 +170763650527,214,0 +170763650575,213,0 +170763650622,214,0 +170763650672,214,0 +170763650720,215,0 +170763650768,215,0 +170763650816,215,0 +170763650864,215,0 +170763650913,215,0 +170763650963,216,0 +170763651012,216,0 +170763651062,216,0 +170763651109,217,0 +170763651159,214,0 +170763651207,213,0 +170763651256,214,0 +170763651306,214,0 +170763651354,213,0 +170763651403,214,0 +170763651451,214,0 +170763651499,214,0 +170763651547,214,0 +170763651595,214,0 +170763651644,214,0 +170763651694,215,0 +170763651742,215,0 +170763651790,215,0 +170763651839,216,0 +170763651887,215,0 +170763651935,216,0 +170763651983,216,0 +170763652031,216,0 +170763652079,216,0 +170763652127,214,0 +170763652175,214,0 +170763652224,213,0 +170763652272,213,0 +170763652320,214,0 +170763652368,214,0 +170763652416,214,0 +170763652466,214,0 +170763652513,214,0 +170763652563,214,0 +170763652611,215,0 +170763652659,215,0 +170763652708,215,0 +170763652756,215,0 +170763652806,216,0 +170763652854,216,0 +170763652903,216,0 +170763652951,216,0 +170763652999,217,0 +170763653047,216,0 +170763653095,214,0 +170763653143,213,0 +170763653191,213,0 +170763653239,214,0 +170763653287,214,0 +170763653336,214,0 +170763653384,214,0 +170763653432,214,0 +170763653480,214,0 +170763653530,215,0 +170763653578,215,0 +170763653626,215,0 +170763653675,215,0 +170763653723,215,0 +170763653772,216,0 +170763653820,216,0 +170763653870,216,0 +170763653918,216,0 +170763653966,216,0 +170763654013,214,0 +170763654061,213,0 +170763654109,213,0 +170763654157,213,0 +170763654205,213,0 +170763654255,214,0 +170763654303,214,0 +170763654350,213,0 +170763654398,214,0 +170763654446,214,0 +170763654494,215,0 +170763654544,215,0 +170763654593,215,0 +170763654641,215,0 +170763654689,216,0 +170763654737,216,0 +170763654786,216,0 +170763654834,216,0 +170763654884,216,0 +170763654933,216,0 +170763654981,214,0 +170763655029,214,0 +170763655076,214,0 +170763655124,213,0 +170763655172,214,0 +170763655221,214,0 +170763655269,213,0 +170763655317,214,0 +170763655365,214,0 +170763655413,214,0 +170763655461,214,0 +170763655509,215,0 +170763655556,214,0 +170763655606,215,0 +170763655654,215,0 +170763655702,216,0 +170763655749,215,0 +170763655799,216,0 +170763655847,216,0 +170763655895,217,0 +170763655942,214,0 +170763655992,214,0 +170763656040,214,0 +170763656088,214,0 +170763656137,214,0 +170763656185,214,0 +170763656233,214,0 +170763656281,214,0 +170763656329,215,0 +170763656377,215,0 +170763656425,215,0 +170763656472,215,0 +170763656520,215,0 +170763656568,216,0 +170763656618,216,0 +170763656666,216,0 +170763656713,216,0 +170763656761,216,0 +170763656809,217,0 +170763656857,215,0 +170763656905,213,0 +170763656953,214,0 +170763657000,213,0 +170763657048,213,0 +170763657096,213,0 +170763657144,214,0 +170763657192,214,0 +170763657239,214,0 +170763657287,214,0 +170763657335,214,0 +170763657383,215,0 +170763657432,215,0 +170763657480,215,0 +170763657528,215,0 +170763657576,216,0 +170763657624,216,0 +170763657672,216,0 +170763657719,216,0 +170763657767,216,0 +170763657817,214,0 +170763657864,213,0 +170763657912,214,0 +170763657960,214,0 +170763658008,214,0 +170763658056,214,0 +170763658103,214,0 +170763658151,214,0 +170763658201,214,0 +170763658248,214,0 +170763658296,214,0 +170763658344,215,0 +170763658392,215,0 +170763658439,215,0 +170763658487,215,0 +170763658535,215,0 +170763658583,215,0 +170763658631,216,0 +170763658679,216,0 +170763658727,216,0 +170763658775,214,0 +170763658824,213,0 +170763658874,214,0 +170763658922,214,0 +170763658971,214,0 +170763659019,214,0 +170763659067,214,0 +170763659115,214,0 +170763659163,214,0 +170763659212,214,0 +170763659260,214,0 +170763659310,215,0 +170763659359,215,0 +170763659407,215,0 +170763659456,216,0 +170763659504,216,0 +170763659552,216,0 +170763659600,216,0 +170763659648,216,0 +170763659698,216,0 +170763659747,214,0 +170763659797,213,0 +170763659844,214,0 +170763659892,214,0 +170763659940,214,0 +170763659988,214,0 +170763660038,214,0 +170763660086,214,0 +170763660135,214,0 +170763660183,214,0 +170763660231,214,0 +170763660279,215,0 +170763660327,215,0 +170763660375,215,0 +170763660423,215,0 +170763660472,216,0 +170763660522,216,0 +170763660570,216,0 +170763660618,216,0 +170763660666,215,0 +170763660713,214,0 +170763660761,214,0 +170763660809,214,0 +170763660857,214,0 +170763660905,214,0 +170763660953,214,0 +170763661001,214,0 +170763661049,214,0 +170763661098,214,0 +170763661146,215,0 +170763661194,215,0 +170763661244,215,0 +170763661291,215,0 +170763661339,216,0 +170763661387,216,0 +170763661437,216,0 +170763661485,216,0 +170763661533,216,0 +170763661581,216,0 +170763661630,214,0 +170763661680,214,0 +170763661728,214,0 +170763661775,214,0 +170763661825,214,0 +170763661874,214,0 +170763661922,214,0 +170763661970,214,0 +170763662020,214,0 +170763662068,214,0 +170763662116,215,0 +170763662163,215,0 +170763662211,216,0 +170763662259,216,0 +170763662307,216,0 +170763662355,216,0 +170763662403,216,0 +170763662451,216,0 +170763662499,217,0 +170763662546,216,0 +170763662594,214,0 +170763662642,213,0 +170763662690,214,0 +170763662738,214,0 +170763662786,214,0 +170763662833,214,0 +170763662881,213,0 +170763662929,214,0 +170763662977,214,0 +170763663026,215,0 +170763663074,214,0 +170763663122,215,0 +170763663170,215,0 +170763663218,216,0 +170763663266,216,0 +170763663314,216,0 +170763663362,216,0 +170763663411,216,0 +170763663461,216,0 +170763663510,214,0 +170763663558,213,0 +170763663608,214,0 +170763663657,214,0 +170763663705,213,0 +170763663755,214,0 +170763663804,214,0 +170763663852,214,0 +170763663900,214,0 +170763663950,215,0 +170763663998,215,0 +170763664047,215,0 +170763664095,215,0 +170763664143,216,0 +170763664192,216,0 +170763664240,216,0 +170763664288,216,0 +170763664336,216,0 +170763664384,217,0 +170763664432,216,0 +170763664482,214,0 +170763664531,213,0 +170763664581,214,0 +170763664629,214,0 +170763664677,214,0 +170763664725,214,0 +170763664773,214,0 +170763664822,214,0 +170763664870,214,0 +170763664918,214,0 +170763664966,215,0 +170763665014,215,0 +170763665062,215,0 +170763665110,216,0 +170763665159,215,0 +170763665207,216,0 +170763665255,216,0 +170763665304,216,0 +170763665352,217,0 +170763665400,216,0 +170763665448,214,0 +170763665497,214,0 +170763665545,214,0 +170763665593,214,0 +170763665643,214,0 +170763665691,214,0 +170763665740,214,0 +170763665790,214,0 +170763665838,214,0 +170763665886,215,0 +170763665935,215,0 +170763665984,215,0 +170763666034,215,0 +170763666082,215,0 +170763666130,216,0 +170763666178,215,0 +170763666226,216,0 +170763666275,216,0 +170763666323,216,0 +170763666371,214,0 +170763666421,214,0 +170763666468,213,0 +170763666516,214,0 +170763666564,214,0 +170763666614,214,0 +170763666663,214,0 +170763666711,214,0 +170763666761,214,0 +170763666810,214,0 +170763666858,214,0 +170763666906,215,0 +170763666955,215,0 +170763667005,215,0 +170763667053,216,0 +170763667101,216,0 +170763667149,216,0 +170763667198,216,0 +170763667246,216,0 +170763667294,216,0 +170763667342,214,0 +170763667391,214,0 +170763667438,214,0 +170763667486,214,0 +170763667534,214,0 +170763667582,214,0 +170763667632,214,0 +170763667680,214,0 +170763667728,214,0 +170763667777,214,0 +170763667825,215,0 +170763667873,215,0 +170763667922,215,0 +170763667970,215,0 +170763668018,215,0 +170763668068,216,0 +170763668116,216,0 +170763668164,216,0 +170763668212,217,0 +170763668261,216,0 +170763668311,213,0 +170763668359,214,0 +170763668408,214,0 +170763668456,214,0 +170763668505,214,0 +170763668553,214,0 +170763668601,214,0 +170763668649,214,0 +170763668697,215,0 +170763668747,215,0 +170763668795,215,0 +170763668843,215,0 +170763668890,216,0 +170763668938,216,0 +170763668986,216,0 +170763669036,216,0 +170763669084,216,0 +170763669133,216,0 +170763669181,216,0 +170763669229,214,0 +170763669277,214,0 +170763669325,214,0 +170763669373,214,0 +170763669421,214,0 +170763669470,214,0 +170763669518,214,0 +170763669566,215,0 +170763669615,215,0 +170763669663,215,0 +170763669713,215,0 +170763669762,216,0 +170763669810,216,0 +170763669858,216,0 +170763669907,216,0 +170763669957,216,0 +170763670005,216,0 +170763670053,216,0 +170763670101,216,0 +170763670150,217,0 +170763670198,214,0 +170763670246,214,0 +170763670294,213,0 +170763670341,214,0 +170763670389,214,0 +170763670437,214,0 +170763670485,214,0 +170763670533,214,0 +170763670581,215,0 +170763670628,215,0 +170763670676,215,0 +170763670724,215,0 +170763670772,215,0 +170763670820,216,0 +170763670868,216,0 +170763670916,216,0 +170763670965,216,0 +170763671015,216,0 +170763671063,216,0 +170763671111,216,0 +170763671159,214,0 +170763671208,213,0 +170763671256,214,0 +170763671304,214,0 +170763671352,214,0 +170763671400,214,0 +170763671448,214,0 +170763671495,214,0 +170763671543,214,0 +170763671593,215,0 +170763671642,215,0 +170763671690,215,0 +170763671738,215,0 +170763671786,215,0 +170763671834,216,0 +170763671882,216,0 +170763671929,216,0 +170763671977,216,0 +170763672027,216,0 +170763672075,215,0 +170763672123,214,0 +170763672172,214,0 +170763672222,214,0 +170763672270,214,0 +170763672319,214,0 +170763672367,214,0 +170763672415,215,0 +170763672463,215,0 +170763672512,215,0 +170763672562,215,0 +170763672610,215,0 +170763672659,216,0 +170763672707,215,0 +170763672755,216,0 +170763672803,216,0 +170763672851,216,0 +170763672899,216,0 +170763672947,216,0 +170763672996,217,0 +170763673046,214,0 +170763673095,214,0 +170763673143,214,0 +170763673191,214,0 +170763673239,214,0 +170763673289,214,0 +170763673338,214,0 +170763673386,215,0 +170763673436,215,0 +170763673484,215,0 +170763673533,215,0 +170763673581,215,0 +170763673630,215,0 +170763673678,216,0 +170763673728,216,0 +170763673777,216,0 +170763673825,216,0 +170763673875,216,0 +170763673924,216,0 +170763673972,214,0 +170763674020,214,0 +170763674070,214,0 +170763674119,214,0 +170763674167,214,0 +170763674215,215,0 +170763674263,215,0 +170763674313,215,0 +170763674360,215,0 +170763674408,215,0 +170763674458,216,0 +170763674507,216,0 +170763674557,216,0 +170763674605,217,0 +170763674653,217,0 +170763674700,217,0 +170763674748,217,0 +170763674798,216,0 +170763674846,216,0 +170763674894,214,0 +170763674942,214,0 +170763674989,214,0 +170763675039,214,0 +170763675088,214,0 +170763675136,215,0 +170763675186,215,0 +170763675235,215,0 +170763675283,215,0 +170763675333,216,0 +170763675381,216,0 +170763675428,216,0 +170763675476,216,0 +170763675524,216,0 +170763675572,216,0 +170763675620,216,0 +170763675668,216,0 +170763675716,216,0 +170763675765,216,0 +170763675813,215,0 +170763675863,214,0 +170763675912,214,0 +170763675960,213,0 +170763676008,214,0 +170763676058,214,0 +170763676106,214,0 +170763676154,214,0 +170763676202,214,0 +170763676249,214,0 +170763676297,215,0 +170763676345,215,0 +170763676393,215,0 +170763676441,215,0 +170763676489,215,0 +170763676539,216,0 +170763676587,216,0 +170763676634,216,0 +170763676682,216,0 +170763676730,216,0 +170763676778,214,0 +170763676826,213,0 +170763676874,214,0 +170763676921,214,0 +170763676969,214,0 +170763677017,214,0 +170763677065,214,0 +170763677113,214,0 +170763677161,214,0 +170763677210,214,0 +170763677258,214,0 +170763677306,214,0 +170763677354,215,0 +170763677402,215,0 +170763677450,215,0 +170763677498,215,0 +170763677546,216,0 +170763677593,216,0 +170763677643,217,0 +170763677692,214,0 +170763677740,214,0 +170763677788,214,0 +170763677838,214,0 +170763677886,214,0 +170763677935,214,0 +170763677983,214,0 +170763678031,214,0 +170763678079,214,0 +170763678126,215,0 +170763678176,215,0 +170763678224,215,0 +170763678272,215,0 +170763678320,216,0 +170763678368,216,0 +170763678416,215,0 +170763678463,216,0 +170763678511,216,0 +170763678561,216,0 +170763678609,216,0 +170763678657,214,0 +170763678704,214,0 +170763678754,214,0 +170763678802,214,0 +170763678851,214,0 +170763678901,214,0 +170763678949,214,0 +170763678997,215,0 +170763679045,215,0 +170763679094,215,0 +170763679142,215,0 +170763679190,215,0 +170763679238,215,0 +170763679286,216,0 +170763679334,216,0 +170763679383,216,0 +170763679433,216,0 +170763679481,216,0 +170763679528,216,0 +170763679576,214,0 +170763679624,214,0 +170763679674,214,0 +170763679722,214,0 +170763679771,214,0 +170763679819,214,0 +170763679867,214,0 +170763679915,214,0 +170763679963,214,0 +170763680011,215,0 +170763680059,215,0 +170763680107,215,0 +170763680154,215,0 +170763680202,216,0 +170763680250,216,0 +170763680300,216,0 +170763680348,216,0 +170763680397,216,0 +170763680445,216,0 +170763680493,216,0 +170763680542,214,0 +170763680590,214,0 +170763680638,214,0 +170763680686,214,0 +170763680734,214,0 +170763680783,214,0 +170763680831,214,0 +170763680878,214,0 +170763680928,215,0 +170763680975,215,0 +170763681025,215,0 +170763681073,215,0 +170763681120,215,0 +170763681168,216,0 +170763681216,216,0 +170763681264,215,0 +170763681312,216,0 +170763681360,216,0 +170763681407,217,0 +170763681455,214,0 +170763681503,214,0 +170763681551,213,0 +170763681599,214,0 +170763681647,214,0 +170763681695,214,0 +170763681743,214,0 +170763681792,214,0 +170763681840,214,0 +170763681889,214,0 +170763681937,215,0 +170763681985,215,0 +170763682033,215,0 +170763682081,215,0 +170763682128,215,0 +170763682176,216,0 +170763682224,215,0 +170763682272,216,0 +170763682320,216,0 +170763682368,214,0 +170763682415,214,0 +170763682463,214,0 +170763682511,214,0 +170763682559,214,0 +170763682607,214,0 +170763682655,214,0 +170763682703,214,0 +170763682750,214,0 +170763682798,215,0 +170763682846,215,0 +170763682894,215,0 +170763682943,215,0 +170763682991,215,0 +170763683039,215,0 +170763683087,215,0 +170763683135,216,0 +170763683182,216,0 +170763683230,215,0 +170763683278,215,0 +170763683326,214,0 +170763683374,214,0 +170763683422,214,0 +170763683469,214,0 +170763683517,213,0 +170763683565,214,0 +170763683613,214,0 +170763683661,214,0 +170763683709,215,0 +170763683757,215,0 +170763683805,215,0 +170763683854,215,0 +170763683902,215,0 +170763683950,216,0 +170763683998,216,0 +170763684046,216,0 +170763684094,216,0 +170763684142,216,0 +170763684190,216,0 +170763684237,214,0 +170763684285,213,0 +170763684333,214,0 +170763684381,214,0 +170763684429,214,0 +170763684477,214,0 +170763684525,214,0 +170763684574,214,0 +170763684622,214,0 +170763684672,214,0 +170763684720,214,0 +170763684769,214,0 +170763684817,215,0 +170763684866,215,0 +170763684914,215,0 +170763684964,215,0 +170763685012,216,0 +170763685061,216,0 +170763685109,216,0 +170763685157,214,0 +170763685206,213,0 +170763685256,213,0 +170763685304,213,0 +170763685353,214,0 +170763685403,214,0 +170763685451,213,0 +170763685499,214,0 +170763685546,214,0 +170763685594,214,0 +170763685644,214,0 +170763685692,215,0 +170763685740,215,0 +170763685788,215,0 +170763685837,215,0 +170763685887,215,0 +170763685935,215,0 +170763685982,216,0 +170763686030,216,0 +170763686078,216,0 +170763686126,213,0 +170763686174,214,0 +170763686222,214,0 +170763686271,214,0 +170763686321,214,0 +170763686369,214,0 +170763686417,214,0 +170763686465,214,0 +170763686513,215,0 +170763686562,215,0 +170763686612,215,0 +170763686659,215,0 +170763686709,216,0 +170763686757,216,0 +170763686806,216,0 +170763686856,216,0 +170763686904,216,0 +170763686952,216,0 +170763687000,216,0 +170763687049,214,0 +170763687097,214,0 +170763687145,214,0 +170763687193,214,0 +170763687242,214,0 +170763687291,214,0 +170763687339,214,0 +170763687387,214,0 +170763687435,214,0 +170763687483,215,0 +170763687531,215,0 +170763687578,215,0 +170763687626,215,0 +170763687674,216,0 +170763687722,216,0 +170763687770,216,0 +170763687819,216,0 +170763687869,216,0 +170763687918,215,0 +170763687966,214,0 +170763688016,214,0 +170763688064,214,0 +170763688112,213,0 +170763688160,214,0 +170763688208,214,0 +170763688257,214,0 +170763688305,215,0 +170763688353,214,0 +170763688402,215,0 +170763688450,215,0 +170763688498,215,0 +170763688548,216,0 +170763688596,216,0 +170763688644,216,0 +170763688691,216,0 +170763688741,216,0 +170763688789,217,0 +170763688837,216,0 +170763688885,216,0 +170763688933,214,0 +170763688981,214,0 +170763689029,214,0 +170763689077,214,0 +170763689124,214,0 +170763689172,214,0 +170763689220,214,0 +170763689268,214,0 +170763689318,215,0 +170763689365,215,0 +170763689413,215,0 +170763689463,215,0 +170763689511,215,0 +170763689559,215,0 +170763689606,215,0 +170763689654,216,0 +170763689704,216,0 +170763689752,216,0 +170763689800,216,0 +170763689848,214,0 +170763689896,213,0 +170763689943,213,0 +170763689991,213,0 +170763690039,213,0 +170763690087,213,0 +170763690135,214,0 +170763690183,214,0 +170763690231,214,0 +170763690279,214,0 +170763690327,214,0 +170763690376,215,0 +170763690424,215,0 +170763690472,215,0 +170763690520,216,0 +170763690568,216,0 +170763690617,216,0 +170763690665,216,0 +170763690713,216,0 +170763690762,216,0 +170763690810,214,0 +170763690858,214,0 +170763690908,214,0 +170763690957,214,0 +170763691005,214,0 +170763691053,214,0 +170763691101,214,0 +170763691149,214,0 +170763691197,215,0 +170763691246,215,0 +170763691296,215,0 +170763691344,215,0 +170763691392,216,0 +170763691440,216,0 +170763691488,216,0 +170763691537,216,0 +170763691585,216,0 +170763691635,217,0 +170763691684,216,0 +170763691732,214,0 +170763691780,213,0 +170763691828,214,0 +170763691878,214,0 +170763691927,214,0 +170763691975,214,0 +170763692023,214,0 +170763692071,215,0 +170763692119,215,0 +170763692168,215,0 +170763692216,215,0 +170763692266,215,0 +170763692315,215,0 +170763692365,216,0 +170763692414,216,0 +170763692464,216,0 +170763692512,216,0 +170763692561,217,0 +170763692609,216,0 +170763692657,214,0 +170763692705,214,0 +170763692753,213,0 +170763692801,214,0 +170763692851,214,0 +170763692900,214,0 +170763692948,215,0 +170763692998,215,0 +170763693046,215,0 +170763693094,215,0 +170763693142,215,0 +170763693189,215,0 +170763693237,216,0 +170763693285,216,0 +170763693335,216,0 +170763693384,216,0 +170763693432,216,0 +170763693480,216,0 +170763693530,216,0 +170763693578,214,0 +170763693625,213,0 +170763693673,213,0 +170763693721,213,0 +170763693771,214,0 +170763693820,214,0 +170763693868,214,0 +170763693918,214,0 +170763693967,214,0 +170763694015,215,0 +170763694063,215,0 +170763694111,215,0 +170763694159,215,0 +170763694207,216,0 +170763694254,216,0 +170763694304,215,0 +170763694352,216,0 +170763694400,216,0 +170763694448,216,0 +170763694497,215,0 +170763694545,213,0 +170763694593,213,0 +170763694641,213,0 +170763694689,214,0 +170763694737,214,0 +170763694787,214,0 +170763694834,214,0 +170763694882,214,0 +170763694930,214,0 +170763694978,215,0 +170763695026,215,0 +170763695074,215,0 +170763695122,215,0 +170763695172,216,0 +170763695220,216,0 +170763695269,216,0 +170763695317,216,0 +170763695366,216,0 +170763695416,216,0 +170763695465,214,0 +170763695513,214,0 +170763695563,214,0 +170763695613,214,0 +170763695661,214,0 +170763695709,214,0 +170763695757,214,0 +170763695804,214,0 +170763695852,215,0 +170763695902,215,0 +170763695950,215,0 +170763695999,215,0 +170763696047,215,0 +170763696095,215,0 +170763696143,216,0 +170763696191,216,0 +170763696239,216,0 +170763696289,216,0 +170763696336,216,0 +170763696384,214,0 +170763696434,214,0 +170763696482,214,0 +170763696530,214,0 +170763696578,214,0 +170763696625,214,0 +170763696675,214,0 +170763696724,215,0 +170763696774,215,0 +170763696822,215,0 +170763696871,215,0 +170763696919,214,0 +170763696969,216,0 +170763697017,216,0 +170763697065,216,0 +170763697113,216,0 +170763697160,216,0 +170763697210,215,0 +170763697258,216,0 +170763697306,214,0 +170763697354,213,0 +170763697402,214,0 +170763697450,214,0 +170763697498,214,0 +170763697546,214,0 +170763697595,214,0 +170763697645,215,0 +170763697694,215,0 +170763697742,215,0 +170763697790,215,0 +170763697838,215,0 +170763697887,216,0 +170763697937,216,0 +170763697985,216,0 +170763698034,216,0 +170763698082,217,0 +170763698132,216,0 +170763698180,216,0 +170763698229,215,0 +170763698277,213,0 +170763698326,214,0 +170763698376,214,0 +170763698424,214,0 +170763698473,213,0 +170763698523,214,0 +170763698572,214,0 +170763698622,215,0 +170763698670,215,0 +170763698719,215,0 +170763698767,215,0 +170763698815,215,0 +170763698863,216,0 +170763698912,215,0 +170763698960,216,0 +170763699008,216,0 +170763699058,216,0 +170763699107,217,0 +170763699157,216,0 +170763699204,214,0 +170763699254,213,0 +170763699302,213,0 +170763699350,213,0 +170763699398,213,0 +170763699446,214,0 +170763699495,214,0 +170763699545,214,0 +170763699593,215,0 +170763699641,215,0 +170763699689,215,0 +170763699737,215,0 +170763699785,215,0 +170763699832,216,0 +170763699882,216,0 +170763699930,216,0 +170763699978,216,0 +170763700025,216,0 +170763700075,216,0 +170763700123,214,0 +170763700171,213,0 +170763700219,213,0 +170763700267,213,0 +170763700314,213,0 +170763700362,213,0 +170763700410,214,0 +170763700460,214,0 +170763700508,214,0 +170763700556,214,0 +170763700603,214,0 +170763700651,215,0 +170763700699,215,0 +170763700749,215,0 +170763700797,215,0 +170763700846,215,0 +170763700894,216,0 +170763700942,216,0 +170763700990,216,0 +170763701038,216,0 +170763701086,214,0 +170763701135,213,0 +170763701185,213,0 +170763701234,213,0 +170763701282,213,0 +170763701331,213,0 +170763701379,213,0 +170763701429,214,0 +170763701477,214,0 +170763701525,214,0 +170763701572,214,0 +170763701620,215,0 +170763701668,215,0 +170763701716,215,0 +170763701764,215,0 +170763701812,215,0 +170763701861,216,0 +170763701909,216,0 +170763701957,216,0 +170763702005,213,0 +170763702055,213,0 +170763702103,213,0 +170763702151,214,0 +170763702199,213,0 +170763702248,214,0 +170763702296,214,0 +170763702346,214,0 +170763702393,214,0 +170763702441,214,0 +170763702489,215,0 +170763702537,215,0 +170763702585,215,0 +170763702633,215,0 +170763702681,216,0 +170763702729,216,0 +170763702778,216,0 +170763702826,216,0 +170763702874,216,0 +170763702922,214,0 +170763702970,214,0 +170763703018,214,0 +170763703066,214,0 +170763703115,214,0 +170763703163,214,0 +170763703211,214,0 +170763703259,214,0 +170763703309,215,0 +170763703357,215,0 +170763703405,215,0 +170763703453,215,0 +170763703500,215,0 +170763703548,216,0 +170763703596,216,0 +170763703644,216,0 +170763703694,216,0 +170763703743,216,0 +170763703793,216,0 +170763703842,216,0 +170763703892,214,0 +170763703939,213,0 +170763703987,214,0 +170763704035,214,0 +170763704083,214,0 +170763704131,214,0 +170763704179,215,0 +170763704227,215,0 +170763704275,215,0 +170763704323,215,0 +170763704371,215,0 +170763704419,216,0 +170763704467,216,0 +170763704516,216,0 +170763704564,216,0 +170763704612,216,0 +170763704660,216,0 +170763704708,216,0 +170763704755,216,0 +170763704805,214,0 +170763704853,213,0 +170763704902,214,0 +170763704950,214,0 +170763704998,214,0 +170763705046,214,0 +170763705094,214,0 +170763705143,214,0 +170763705191,214,0 +170763705239,215,0 +170763705287,215,0 +170763705335,215,0 +170763705385,215,0 +170763705433,216,0 +170763705480,216,0 +170763705528,216,0 +170763705576,216,0 +170763705626,216,0 +170763705673,216,0 +170763705723,214,0 +170763705772,213,0 +170763705820,214,0 +170763705868,214,0 +170763705916,214,0 +170763705964,214,0 +170763706012,214,0 +170763706060,214,0 +170763706107,214,0 +170763706155,214,0 +170763706205,215,0 +170763706253,215,0 +170763706302,215,0 +170763706352,215,0 +170763706401,216,0 +170763706451,216,0 +170763706499,216,0 +170763706548,216,0 +170763706596,216,0 +170763706644,216,0 +170763706694,214,0 +170763706743,213,0 +170763706793,213,0 +170763706842,214,0 +170763706890,214,0 +170763706938,214,0 +170763706986,214,0 +170763707036,214,0 +170763707083,215,0 +170763707131,215,0 +170763707179,215,0 +170763707227,215,0 +170763707275,215,0 +170763707323,216,0 +170763707371,216,0 +170763707418,215,0 +170763707466,216,0 +170763707514,215,0 +170763707562,216,0 +170763707610,214,0 +170763707659,213,0 +170763707707,214,0 +170763707755,214,0 +170763707802,214,0 +170763707850,214,0 +170763707898,214,0 +170763707946,214,0 +170763707994,214,0 +170763708043,214,0 +170763708091,215,0 +170763708139,215,0 +170763708187,215,0 +170763708236,216,0 +170763708284,216,0 +170763708333,216,0 +170763708381,216,0 +170763708431,216,0 +170763708478,216,0 +170763708526,214,0 +170763708574,213,0 +170763708624,213,0 +170763708671,213,0 +170763708721,214,0 +170763708769,214,0 +170763708817,214,0 +170763708864,214,0 +170763708912,214,0 +170763708960,214,0 +170763709008,214,0 +170763709057,215,0 +170763709107,215,0 +170763709154,215,0 +170763709202,215,0 +170763709252,215,0 +170763709300,215,0 +170763709348,215,0 +170763709396,215,0 +170763709443,216,0 +170763709491,214,0 +170763709541,214,0 +170763709589,213,0 +170763709638,214,0 +170763709686,214,0 +170763709734,213,0 +170763709784,213,0 +170763709832,214,0 +170763709880,214,0 +170763709927,214,0 +170763709977,214,0 +170763710025,214,0 +170763710073,214,0 +170763710121,215,0 +170763710169,215,0 +170763710217,215,0 +170763710266,215,0 +170763710314,216,0 +170763710362,216,0 +170763710410,214,0 +170763710458,213,0 +170763710506,213,0 +170763710554,214,0 +170763710603,214,0 +170763710652,213,0 +170763710702,214,0 +170763710750,214,0 +170763710798,214,0 +170763710845,214,0 +170763710893,214,0 +170763710943,215,0 +170763710992,215,0 +170763711042,215,0 +170763711090,216,0 +170763711139,215,0 +170763711187,216,0 +170763711235,216,0 +170763711283,216,0 +170763711331,214,0 +170763711379,213,0 +170763711427,214,0 +170763711474,213,0 +170763711522,214,0 +170763711572,214,0 +170763711620,214,0 +170763711668,214,0 +170763711717,214,0 +170763711765,215,0 +170763711813,215,0 +170763711863,215,0 +170763711912,216,0 +170763711960,216,0 +170763712008,216,0 +170763712056,216,0 +170763712104,217,0 +170763712153,216,0 +170763712201,216,0 +170763712251,216,0 +170763712299,214,0 +170763712348,214,0 +170763712396,214,0 +170763712444,214,0 +170763712493,214,0 +170763712543,214,0 +170763712592,215,0 +170763712642,215,0 +170763712690,215,0 +170763712738,215,0 +170763712787,215,0 +170763712837,216,0 +170763712886,216,0 +170763712934,216,0 +170763712982,216,0 +170763713030,216,0 +170763713078,216,0 +170763713126,216,0 +170763713174,216,0 +170763713222,214,0 +170763713271,214,0 +170763713319,214,0 +170763713367,214,0 +170763713415,214,0 +170763713464,214,0 +170763713514,214,0 +170763713562,215,0 +170763713609,215,0 +170763713657,215,0 +170763713705,215,0 +170763713753,215,0 +170763713802,215,0 +170763713850,216,0 +170763713900,216,0 +170763713948,216,0 +170763713996,216,0 +170763714043,216,0 +170763714091,216,0 +170763714141,214,0 +170763714189,213,0 +170763714237,213,0 +170763714285,214,0 +170763714334,214,0 +170763714384,214,0 +170763714432,214,0 +170763714480,214,0 +170763714529,214,0 +170763714577,215,0 +170763714625,215,0 +170763714674,215,0 +170763714724,215,0 +170763714772,216,0 +170763714820,216,0 +170763714869,216,0 +170763714917,216,0 +170763714966,216,0 +170763715014,216,0 +170763715062,214,0 +170763715110,213,0 +170763715158,213,0 +170763715206,213,0 +170763715255,214,0 +170763715305,214,0 +170763715354,213,0 +170763715402,214,0 +170763715450,214,0 +170763715498,214,0 +170763715547,214,0 +170763715595,214,0 +170763715645,215,0 +170763715694,215,0 +170763715744,215,0 +170763715792,215,0 +170763715840,215,0 +170763715888,216,0 +170763715937,216,0 +170763715985,216,0 +170763716034,214,0 +170763716082,213,0 +170763716132,213,0 +170763716180,214,0 +170763716228,214,0 +170763716275,214,0 +170763716323,214,0 +170763716371,215,0 +170763716419,215,0 +170763716469,215,0 +170763716517,215,0 +170763716566,215,0 +170763716616,215,0 +170763716665,215,0 +170763716713,216,0 +170763716761,216,0 +170763716809,216,0 +170763716859,216,0 +170763716907,216,0 +170763716956,214,0 +170763717004,213,0 +170763717052,214,0 +170763717100,214,0 +170763717148,214,0 +170763717196,214,0 +170763717244,214,0 +170763717291,214,0 +170763717339,214,0 +170763717389,215,0 +170763717438,215,0 +170763717486,215,0 +170763717536,215,0 +170763717585,216,0 +170763717633,216,0 +170763717683,216,0 +170763717732,216,0 +170763717782,216,0 +170763717831,216,0 +170763717881,214,0 +170763717930,214,0 +170763717980,214,0 +170763718028,214,0 +170763718076,214,0 +170763718123,214,0 +170763718173,215,0 +170763718221,214,0 +170763718270,215,0 +170763718318,215,0 +170763718366,216,0 +170763718414,216,0 +170763718464,216,0 +170763718511,216,0 +170763718559,216,0 +170763718607,216,0 +170763718655,216,0 +170763718703,216,0 +170763718752,216,0 +170763718802,215,0 +170763718850,214,0 +170763718898,213,0 +170763718945,214,0 +170763718995,214,0 +170763719043,214,0 +170763719090,214,0 +170763719138,214,0 +170763719186,215,0 +170763719234,215,0 +170763719284,215,0 +170763719333,215,0 +170763719381,216,0 +170763719429,216,0 +170763719477,216,0 +170763719525,216,0 +170763719575,216,0 +170763719624,215,0 +170763719674,216,0 +170763719723,216,0 +170763719771,214,0 +170763719819,213,0 +170763719869,213,0 +170763719917,213,0 +170763719966,213,0 +170763720014,214,0 +170763720062,214,0 +170763720110,214,0 +170763720160,214,0 +170763720208,215,0 +170763720255,215,0 +170763720303,215,0 +170763720351,215,0 +170763720399,216,0 +170763720447,216,0 +170763720495,215,0 +170763720543,217,0 +170763720591,216,0 +170763720639,216,0 +170763720688,214,0 +170763720738,213,0 +170763720786,213,0 +170763720834,214,0 +170763720882,214,0 +170763720930,213,0 +170763720978,214,0 +170763721026,214,0 +170763721073,214,0 +170763721121,214,0 +170763721169,215,0 +170763721217,215,0 +170763721265,215,0 +170763721315,215,0 +170763721363,215,0 +170763721411,216,0 +170763721458,216,0 +170763721506,216,0 +170763721554,216,0 +170763721602,215,0 +170763721652,213,0 +170763721699,213,0 +170763721749,213,0 +170763721797,213,0 +170763721845,214,0 +170763721894,214,0 +170763721942,214,0 +170763721992,214,0 +170763722040,214,0 +170763722089,215,0 +170763722137,215,0 +170763722185,215,0 +170763722233,215,0 +170763722281,215,0 +170763722329,216,0 +170763722377,215,0 +170763722426,216,0 +170763722474,216,0 +170763722523,216,0 +170763722571,214,0 +170763722619,213,0 +170763722667,213,0 +170763722717,213,0 +170763722765,213,0 +170763722813,214,0 +170763722861,214,0 +170763722909,214,0 +170763722956,214,0 +170763723004,214,0 +170763723052,215,0 +170763723100,215,0 +170763723148,215,0 +170763723197,215,0 +170763723245,215,0 +170763723295,215,0 +170763723343,215,0 +170763723391,216,0 +170763723438,216,0 +170763723486,214,0 +170763723534,213,0 +170763723583,213,0 +170763723631,213,0 +170763723679,213,0 +170763723727,214,0 +170763723775,214,0 +170763723823,214,0 +170763723871,214,0 +170763723920,215,0 +170763723970,215,0 +170763724019,215,0 +170763724067,215,0 +170763724116,215,0 +170763724164,216,0 +170763724212,216,0 +170763724260,216,0 +170763724308,216,0 +170763724356,216,0 +170763724404,214,0 +170763724452,213,0 +170763724500,213,0 +170763724548,213,0 +170763724596,213,0 +170763724643,214,0 +170763724693,214,0 +170763724741,214,0 +170763724789,214,0 +170763724837,215,0 +170763724885,215,0 +170763724934,215,0 +170763724984,215,0 +170763725032,215,0 +170763725080,215,0 +170763725128,216,0 +170763725175,216,0 +170763725223,216,0 +170763725271,216,0 +170763725319,216,0 +170763725369,214,0 +170763725417,213,0 +170763725465,213,0 +170763725513,213,0 +170763725561,213,0 +170763725608,213,0 +170763725658,214,0 +170763725707,214,0 +170763725757,214,0 +170763725805,215,0 +170763725853,215,0 +170763725901,215,0 +170763725950,215,0 +170763726000,215,0 +170763726048,215,0 +170763726096,216,0 +170763726143,216,0 +170763726191,216,0 +170763726239,216,0 +170763726287,214,0 +170763726337,214,0 +170763726385,213,0 +170763726433,214,0 +170763726481,214,0 +170763726529,213,0 +170763726576,213,0 +170763726624,214,0 +170763726672,214,0 +170763726722,214,0 +170763726770,215,0 +170763726818,215,0 +170763726867,215,0 +170763726917,215,0 +170763726965,215,0 +170763727014,215,0 +170763727062,216,0 +170763727110,216,0 +170763727158,216,0 +170763727205,214,0 +170763727253,213,0 +170763727301,213,0 +170763727351,213,0 +170763727399,213,0 +170763727448,213,0 +170763727496,213,0 +170763727544,213,0 +170763727592,214,0 +170763727640,214,0 +170763727688,214,0 +170763727736,215,0 +170763727784,215,0 +170763727833,215,0 +170763727881,216,0 +170763727931,215,0 +170763727980,216,0 +170763728028,216,0 +170763728076,216,0 +170763728125,216,0 +170763728173,213,0 +170763728223,213,0 +170763728271,213,0 +170763728319,213,0 +170763728368,213,0 +170763728416,213,0 +170763728464,214,0 +170763728513,214,0 +170763728561,214,0 +170763728609,214,0 +170763728657,214,0 +170763728706,215,0 +170763728756,215,0 +170763728804,215,0 +170763728852,215,0 +170763728901,215,0 +170763728949,216,0 +170763728998,216,0 +170763729048,216,0 +170763729097,214,0 +170763729145,213,0 +170763729193,213,0 +170763729241,214,0 +170763729290,213,0 +170763729340,213,0 +170763729389,214,0 +170763729437,214,0 +170763729487,214,0 +170763729536,214,0 +170763729586,214,0 +170763729634,215,0 +170763729681,215,0 +170763729729,215,0 +170763729777,216,0 +170763729827,215,0 +170763729876,216,0 +170763729924,216,0 +170763729972,216,0 +170763730022,213,0 +170763730069,213,0 +170763730119,213,0 +170763730167,213,0 +170763730215,213,0 +170763730263,213,0 +170763730311,213,0 +170763730360,214,0 +170763730408,213,0 +170763730458,214,0 +170763730506,214,0 +170763730555,215,0 +170763730603,215,0 +170763730651,215,0 +170763730699,215,0 +170763730747,215,0 +170763730795,215,0 +170763730843,215,0 +170763730892,216,0 +170763730940,214,0 +170763730988,213,0 +170763731038,213,0 +170763731087,213,0 +170763731135,213,0 +170763731184,213,0 +170763731232,213,0 +170763731280,213,0 +170763731328,214,0 +170763731376,213,0 +170763731424,214,0 +170763731471,214,0 +170763731519,215,0 +170763731567,215,0 +170763731615,215,0 +170763731663,215,0 +170763731712,215,0 +170763731760,215,0 +170763731808,216,0 +170763731857,216,0 +170763731905,214,0 +170763731955,213,0 +170763732004,213,0 +170763732052,213,0 +170763732100,213,0 +170763732148,213,0 +170763732198,213,0 +170763732247,213,0 +170763732297,213,0 +170763732346,214,0 +170763732394,214,0 +170763732444,214,0 +170763732492,215,0 +170763732541,215,0 +170763732589,215,0 +170763732639,215,0 +170763732688,215,0 +170763732736,216,0 +170763732786,215,0 +170763732834,213,0 +170763732883,213,0 +170763732933,213,0 +170763732981,214,0 +170763733030,214,0 +170763733078,214,0 +170763733126,214,0 +170763733174,214,0 +170763733222,215,0 +170763733270,215,0 +170763733318,215,0 +170763733365,215,0 +170763733413,216,0 +170763733461,215,0 +170763733509,216,0 +170763733559,216,0 +170763733607,216,0 +170763733656,216,0 +170763733704,216,0 +170763733752,214,0 +170763733800,213,0 +170763733847,213,0 +170763733897,214,0 +170763733945,214,0 +170763733994,214,0 +170763734042,215,0 +170763734090,215,0 +170763734138,215,0 +170763734186,215,0 +170763734233,215,0 +170763734283,215,0 +170763734331,216,0 +170763734379,216,0 +170763734426,216,0 +170763734474,216,0 +170763734522,216,0 +170763734572,216,0 +170763734619,216,0 +170763734667,214,0 +170763734715,213,0 +170763734763,213,0 +170763734811,213,0 +170763734860,213,0 +170763734908,214,0 +170763734958,214,0 +170763735007,214,0 +170763735055,214,0 +170763735103,214,0 +170763735151,215,0 +170763735199,215,0 +170763735247,215,0 +170763735295,215,0 +170763735343,216,0 +170763735391,215,0 +170763735438,215,0 +170763735486,216,0 +170763735534,216,0 +170763735582,216,0 +170763735631,213,0 +170763735679,213,0 +170763735727,213,0 +170763735775,214,0 +170763735823,214,0 +170763735871,214,0 +170763735920,214,0 +170763735970,214,0 +170763736019,214,0 +170763736067,215,0 +170763736115,215,0 +170763736163,215,0 +170763736213,215,0 +170763736262,215,0 +170763736312,215,0 +170763736360,215,0 +170763736408,216,0 +170763736457,216,0 +170763736505,216,0 +170763736553,214,0 +170763736601,213,0 +170763736649,214,0 +170763736697,213,0 +170763736745,214,0 +170763736793,214,0 +170763736842,214,0 +170763736891,214,0 +170763736939,214,0 +170763736987,215,0 +170763737037,215,0 +170763737086,215,0 +170763737134,215,0 +170763737182,215,0 +170763737232,216,0 +170763737281,216,0 +170763737329,216,0 +170763737379,216,0 +170763737428,216,0 +170763737478,214,0 +170763737526,213,0 +170763737575,213,0 +170763737625,214,0 +170763737673,214,0 +170763737722,214,0 +170763737770,214,0 +170763737820,214,0 +170763737869,215,0 +170763737919,215,0 +170763737967,215,0 +170763738015,215,0 +170763738064,216,0 +170763738112,215,0 +170763738160,215,0 +170763738209,215,0 +170763738257,216,0 +170763738305,216,0 +170763738353,216,0 +170763738401,215,0 +170763738451,213,0 +170763738498,213,0 +170763738548,215,0 +170763738597,214,0 +170763738645,214,0 +170763738693,214,0 +170763738741,214,0 +170763738789,214,0 +170763738837,215,0 +170763738885,215,0 +170763738933,215,0 +170763738982,216,0 +170763739031,216,0 +170763739078,215,0 +170763739126,216,0 +170763739176,215,0 +170763739225,216,0 +170763739275,216,0 +170763739325,215,0 +170763739374,213,0 +170763739422,213,0 +170763739471,213,0 +170763739519,214,0 +170763739569,214,0 +170763739618,214,0 +170763739666,214,0 +170763739716,214,0 +170763739766,215,0 +170763739813,215,0 +170763739861,215,0 +170763739909,215,0 +170763739959,215,0 +170763740007,215,0 +170763740056,215,0 +170763740104,215,0 +170763740154,215,0 +170763740201,216,0 +170763740249,216,0 +170763740299,213,0 +170763740347,213,0 +170763740396,213,0 +170763740446,213,0 +170763740494,213,0 +170763740543,214,0 +170763740593,214,0 +170763740640,214,0 +170763740688,214,0 +170763740736,214,0 +170763740784,214,0 +170763740834,215,0 +170763740882,215,0 +170763740931,215,0 +170763740981,216,0 +170763741030,216,0 +170763741079,215,0 +170763741127,216,0 +170763741177,216,0 +170763741225,214,0 +170763741273,213,0 +170763741322,213,0 +170763741370,213,0 +170763741418,213,0 +170763741466,213,0 +170763741516,214,0 +170763741565,214,0 +170763741613,214,0 +170763741662,214,0 +170763741710,215,0 +170763741758,215,0 +170763741806,215,0 +170763741854,215,0 +170763741902,215,0 +170763741951,216,0 +170763741999,216,0 +170763742049,215,0 +170763742097,216,0 +170763742145,214,0 +170763742194,213,0 +170763742244,213,0 +170763742291,213,0 +170763742341,213,0 +170763742389,214,0 +170763742437,213,0 +170763742486,214,0 +170763742534,214,0 +170763742584,214,0 +170763742633,215,0 +170763742681,215,0 +170763742731,215,0 +170763742780,215,0 +170763742828,215,0 +170763742876,216,0 +170763742924,216,0 +170763742971,216,0 +170763743019,216,0 +170763743069,214,0 +170763743117,213,0 +170763743164,213,0 +170763743212,213,0 +170763743260,213,0 +170763743309,213,0 +170763743357,214,0 +170763743405,214,0 +170763743453,214,0 +170763743501,214,0 +170763743548,214,0 +170763743596,215,0 +170763743644,215,0 +170763743692,215,0 +170763743740,215,0 +170763743789,216,0 +170763743839,216,0 +170763743887,216,0 +170763743934,216,0 +170763743982,216,0 +170763744030,213,0 +170763744078,213,0 +170763744126,213,0 +170763744174,213,0 +170763744222,214,0 +170763744270,214,0 +170763744318,214,0 +170763744366,214,0 +170763744415,214,0 +170763744463,215,0 +170763744513,215,0 +170763744561,215,0 +170763744609,215,0 +170763744658,215,0 +170763744706,216,0 +170763744754,216,0 +170763744802,216,0 +170763744850,216,0 +170763744899,216,0 +170763744947,214,0 +170763744997,213,0 +170763745046,213,0 +170763745096,213,0 +170763745143,213,0 +170763745191,214,0 +170763745239,214,0 +170763745287,214,0 +170763745335,214,0 +170763745385,214,0 +170763745434,215,0 +170763745482,215,0 +170763745530,215,0 +170763745578,215,0 +170763745627,215,0 +170763745677,215,0 +170763745725,216,0 +170763745773,216,0 +170763745822,216,0 +170763745870,216,0 +170763745918,213,0 +170763745968,213,0 +170763746016,213,0 +170763746064,213,0 +170763746112,214,0 +170763746160,214,0 +170763746208,214,0 +170763746256,214,0 +170763746304,214,0 +170763746351,215,0 +170763746399,215,0 +170763746447,216,0 +170763746495,215,0 +170763746545,215,0 +170763746593,215,0 +170763746641,216,0 +170763746689,216,0 +170763746737,216,0 +170763746786,216,0 +170763746834,213,0 +170763746882,213,0 +170763746930,213,0 +170763746978,213,0 +170763747026,213,0 +170763747075,213,0 +170763747123,214,0 +170763747173,214,0 +170763747222,214,0 +170763747270,214,0 +170763747318,214,0 +170763747366,215,0 +170763747415,214,0 +170763747463,215,0 +170763747513,216,0 +170763747562,215,0 +170763747610,215,0 +170763747660,216,0 +170763747708,216,0 +170763747757,213,0 +170763747807,213,0 +170763747856,213,0 +170763747904,213,0 +170763747952,213,0 +170763748000,213,0 +170763748048,213,0 +170763748096,213,0 +170763748145,213,0 +170763748193,213,0 +170763748241,213,0 +170763748291,213,0 +170763748340,214,0 +170763748388,214,0 +170763748438,214,0 +170763748487,214,0 +170763748535,215,0 +170763748583,215,0 +170763748631,216,0 +170763748679,214,0 +170763748727,213,0 +170763748775,213,0 +170763748823,213,0 +170763748872,213,0 +170763748920,213,0 +170763748968,213,0 +170763749016,214,0 +170763749064,213,0 +170763749112,214,0 +170763749160,214,0 +170763749208,215,0 +170763749256,215,0 +170763749305,216,0 +170763749354,216,0 +170763749402,215,0 +170763749450,216,0 +170763749498,216,0 +170763749546,216,0 +170763749596,216,0 +170763749645,213,0 +170763749693,213,0 +170763749741,213,0 +170763749789,213,0 +170763749837,213,0 +170763749885,213,0 +170763749933,214,0 +170763749981,214,0 +170763750029,214,0 +170763750077,214,0 +170763750126,215,0 +170763750174,215,0 +170763750222,215,0 +170763750270,215,0 +170763750318,215,0 +170763750367,216,0 +170763750417,215,0 +170763750465,215,0 +170763750513,217,0 +170763750562,213,0 +170763750612,213,0 +170763750660,213,0 +170763750708,213,0 +170763750757,213,0 +170763750805,213,0 +170763750853,214,0 +170763750901,214,0 +170763750949,214,0 +170763750997,214,0 +170763751044,214,0 +170763751092,215,0 +170763751140,215,0 +170763751190,215,0 +170763751239,215,0 +170763751289,216,0 +170763751337,216,0 +170763751385,216,0 +170763751434,216,0 +170763751482,214,0 +170763751530,213,0 +170763751578,213,0 +170763751626,213,0 +170763751674,213,0 +170763751722,213,0 +170763751770,214,0 +170763751818,214,0 +170763751865,214,0 +170763751915,214,0 +170763751964,214,0 +170763752012,214,0 +170763752060,215,0 +170763752110,215,0 +170763752159,215,0 +170763752207,215,0 +170763752257,215,0 +170763752305,215,0 +170763752353,216,0 +170763752401,216,0 +170763752448,213,0 +170763752496,213,0 +170763752546,213,0 +170763752594,214,0 +170763752642,214,0 +170763752690,214,0 +170763752737,214,0 +170763752785,214,0 +170763752833,214,0 +170763752881,215,0 +170763752929,215,0 +170763752977,215,0 +170763753024,215,0 +170763753072,216,0 +170763753120,216,0 +170763753168,216,0 +170763753217,216,0 +170763753265,216,0 +170763753313,215,0 +170763753361,214,0 +170763753408,214,0 +170763753456,214,0 +170763753504,214,0 +170763753552,214,0 +170763753600,214,0 +170763753648,215,0 +170763753696,215,0 +170763753745,215,0 +170763753793,215,0 +170763753841,216,0 +170763753889,215,0 +170763753937,216,0 +170763753984,216,0 +170763754032,216,0 +170763754080,216,0 +170763754128,216,0 +170763754176,216,0 +170763754224,216,0 +170763754271,214,0 +170763754319,214,0 +170763754367,214,0 +170763754415,213,0 +170763754463,214,0 +170763754511,215,0 +170763754558,214,0 +170763754606,215,0 +170763754654,215,0 +170763754702,215,0 +170763754750,215,0 +170763754798,216,0 +170763754846,215,0 +170763754893,216,0 +170763754941,216,0 +170763754989,216,0 +170763755037,216,0 +170763755085,216,0 +170763755132,216,0 +170763755180,215,0 +170763755230,214,0 +170763755278,213,0 +170763755327,213,0 +170763755375,214,0 +170763755423,214,0 +170763755470,214,0 +170763755518,214,0 +170763755566,214,0 +170763755614,214,0 +170763755663,214,0 +170763755713,215,0 +170763755760,215,0 +170763755808,215,0 +170763755856,215,0 +170763755904,215,0 +170763755952,215,0 +170763756000,215,0 +170763756048,216,0 +170763756095,216,0 +170763756143,214,0 +170763756191,213,0 +170763756239,213,0 +170763756287,214,0 +170763756335,214,0 +170763756384,214,0 +170763756432,214,0 +170763756480,214,0 +170763756528,214,0 +170763756575,214,0 +170763756623,214,0 +170763756671,215,0 +170763756721,215,0 +170763756769,215,0 +170763756816,215,0 +170763756864,215,0 +170763756912,216,0 +170763756960,216,0 +170763757008,215,0 +170763757057,215,0 +170763757105,213,0 +170763757155,213,0 +170763757203,213,0 +170763757251,213,0 +170763757299,213,0 +170763757348,213,0 +170763757396,213,0 +170763757444,213,0 +170763757492,213,0 +170763757540,214,0 +170763757589,214,0 +170763757639,214,0 +170763757687,214,0 +170763757735,214,0 +170763757784,214,0 +170763757832,214,0 +170763757880,215,0 +170763757928,215,0 +170763757976,216,0 +170763758024,213,0 +170763758072,213,0 +170763758120,213,0 +170763758168,213,0 +170763758218,213,0 +170763758266,213,0 +170763758313,214,0 +170763758361,214,0 +170763758411,214,0 +170763758459,214,0 +170763758507,214,0 +170763758554,215,0 +170763758602,215,0 +170763758650,215,0 +170763758698,215,0 +170763758746,215,0 +170763758794,215,0 +170763758841,216,0 +170763758889,216,0 +170763758937,216,0 +170763758985,213,0 +170763759034,213,0 +170763759082,213,0 +170763759130,213,0 +170763759178,213,0 +170763759228,213,0 +170763759277,213,0 +170763759325,214,0 +170763759374,214,0 +170763759422,214,0 +170763759470,215,0 +170763759518,215,0 +170763759567,215,0 +170763759617,215,0 +170763759666,215,0 +170763759714,216,0 +170763759762,216,0 +170763759810,216,0 +170763759859,215,0 +170763759908,213,0 +170763759956,213,0 +170763760004,214,0 +170763760052,214,0 +170763760100,214,0 +170763760148,214,0 +170763760196,214,0 +170763760244,214,0 +170763760293,215,0 +170763760342,215,0 +170763760390,215,0 +170763760438,216,0 +170763760486,216,0 +170763760534,214,0 +170763760582,216,0 +170763760630,216,0 +170763760678,216,0 +170763760726,216,0 +170763760774,216,0 +170763760823,213,0 +170763760871,213,0 +170763760921,213,0 +170763760968,213,0 +170763761018,213,0 +170763761067,214,0 +170763761115,214,0 +170763761163,214,0 +170763761213,214,0 +170763761262,215,0 +170763761312,215,0 +170763761360,215,0 +170763761408,215,0 +170763761455,215,0 +170763761503,215,0 +170763761551,216,0 +170763761599,216,0 +170763761647,216,0 +170763761695,216,0 +170763761744,214,0 +170763761793,213,0 +170763761843,213,0 +170763761891,213,0 +170763761940,213,0 +170763761988,213,0 +170763762036,213,0 +170763762084,213,0 +170763762132,214,0 +170763762179,214,0 +170763762229,214,0 +170763762277,214,0 +170763762325,215,0 +170763762372,215,0 +170763762420,215,0 +170763762468,215,0 +170763762516,215,0 +170763762564,215,0 +170763762612,215,0 +170763762660,216,0 +170763762707,213,0 +170763762755,213,0 +170763762803,213,0 +170763762851,213,0 +170763762899,213,0 +170763762947,213,0 +170763762995,213,0 +170763763044,213,0 +170763763092,214,0 +170763763140,214,0 +170763763188,214,0 +170763763235,214,0 +170763763285,214,0 +170763763333,214,0 +170763763381,215,0 +170763763428,215,0 +170763763476,215,0 +170763763524,216,0 +170763763572,216,0 +170763763620,214,0 +170763763668,213,0 +170763763716,213,0 +170763763763,213,0 +170763763811,213,0 +170763763859,213,0 +170763763909,213,0 +170763763957,213,0 +170763764006,214,0 +170763764054,214,0 +170763764102,214,0 +170763764150,214,0 +170763764200,215,0 +170763764247,215,0 +170763764297,215,0 +170763764346,215,0 +170763764396,215,0 +170763764444,215,0 +170763764492,216,0 +170763764541,215,0 +170763764589,213,0 +170763764637,213,0 +170763764685,213,0 +170763764733,213,0 +170763764781,213,0 +170763764829,213,0 +170763764877,213,0 +170763764927,214,0 +170763764976,214,0 +170763765024,214,0 +170763765073,214,0 +170763765123,215,0 +170763765171,215,0 +170763765219,215,0 +170763765267,217,0 +170763765315,215,0 +170763765363,216,0 +170763765411,216,0 +170763765460,216,0 +170763765508,214,0 +170763765557,213,0 +170763765607,213,0 +170763765657,213,0 +170763765706,213,0 +170763765756,213,0 +170763765804,213,0 +170763765852,214,0 +170763765899,214,0 +170763765947,214,0 +170763765997,215,0 +170763766047,215,0 +170763766096,215,0 +170763766144,215,0 +170763766194,215,0 +170763766241,216,0 +170763766289,216,0 +170763766337,216,0 +170763766385,216,0 +170763766433,214,0 +170763766481,213,0 +170763766529,213,0 +170763766578,213,0 +170763766626,214,0 +170763766674,213,0 +170763766721,213,0 +170763766769,214,0 +170763766817,214,0 +170763766865,214,0 +170763766913,214,0 +170763766961,214,0 +170763767009,215,0 +170763767057,215,0 +170763767105,215,0 +170763767152,215,0 +170763767200,215,0 +170763767250,215,0 +170763767298,216,0 +170763767347,214,0 +170763767395,213,0 +170763767443,213,0 +170763767491,213,0 +170763767540,214,0 +170763767588,214,0 +170763767636,214,0 +170763767684,214,0 +170763767732,214,0 +170763767780,214,0 +170763767828,215,0 +170763767877,215,0 +170763767925,215,0 +170763767973,215,0 +170763768023,216,0 +170763768072,215,0 +170763768122,216,0 +170763768170,216,0 +170763768218,216,0 +170763768267,216,0 +170763768317,213,0 +170763768365,213,0 +170763768413,213,0 +170763768462,213,0 +170763768510,214,0 +170763768558,214,0 +170763768606,214,0 +170763768654,214,0 +170763768702,214,0 +170763768750,215,0 +170763768797,215,0 +170763768845,215,0 +170763768893,214,0 +170763768941,215,0 +170763768989,216,0 +170763769037,216,0 +170763769084,216,0 +170763769132,216,0 +170763769180,216,0 +170763769228,214,0 +170763769276,213,0 +170763769324,213,0 +170763769373,213,0 +170763769421,213,0 +170763769471,214,0 +170763769519,214,0 +170763769568,214,0 +170763769618,214,0 +170763769667,214,0 +170763769715,215,0 +170763769763,215,0 +170763769811,215,0 +170763769858,215,0 +170763769906,215,0 +170763769954,216,0 +170763770002,215,0 +170763770050,216,0 +170763770097,216,0 +170763770145,215,0 +170763770193,213,0 +170763770241,213,0 +170763770289,213,0 +170763770337,214,0 +170763770384,214,0 +170763770432,214,0 +170763770480,214,0 +170763770528,214,0 +170763770576,214,0 +170763770624,214,0 +170763770673,215,0 +170763770721,215,0 +170763770770,215,0 +170763770818,216,0 +170763770866,216,0 +170763770914,216,0 +170763770962,216,0 +170763771011,216,0 +170763771059,216,0 +170763771107,213,0 +170763771155,213,0 +170763771204,213,0 +170763771253,213,0 +170763771301,213,0 +170763771349,214,0 +170763771397,214,0 +170763771445,214,0 +170763771493,214,0 +170763771540,214,0 +170763771588,215,0 +170763771636,215,0 +170763771685,215,0 +170763771733,215,0 +170763771781,216,0 +170763771829,215,0 +170763771877,216,0 +170763771925,216,0 +170763771973,216,0 +170763772020,216,0 +170763772070,213,0 +170763772119,213,0 +170763772167,213,0 +170763772215,213,0 +170763772263,213,0 +170763772313,213,0 +170763772361,213,0 +170763772409,214,0 +170763772458,214,0 +170763772506,214,0 +170763772554,214,0 +170763772602,215,0 +170763772650,215,0 +170763772699,215,0 +170763772747,215,0 +170763772795,215,0 +170763772843,216,0 +170763772891,216,0 +170763772939,216,0 +170763772987,213,0 +170763773037,213,0 +170763773085,213,0 +170763773134,213,0 +170763773182,213,0 +170763773230,213,0 +170763773278,213,0 +170763773325,214,0 +170763773375,214,0 +170763773423,214,0 +170763773471,214,0 +170763773518,214,0 +170763773566,215,0 +170763773614,215,0 +170763773662,215,0 +170763773710,215,0 +170763773758,215,0 +170763773805,216,0 +170763773855,216,0 +170763773903,214,0 +170763773950,213,0 +170763773998,213,0 +170763774046,213,0 +170763774094,213,0 +170763774142,214,0 +170763774190,214,0 +170763774238,214,0 +170763774285,214,0 +170763774333,215,0 +170763774381,215,0 +170763774429,215,0 +170763774477,215,0 +170763774525,215,0 +170763774572,216,0 +170763774622,216,0 +170763774669,216,0 +170763774717,216,0 +170763774767,216,0 +170763774816,215,0 +170763774864,213,0 +170763774914,213,0 +170763774963,213,0 +170763775011,213,0 +170763775061,214,0 +170763775109,214,0 +170763775157,214,0 +170763775206,214,0 +170763775254,214,0 +170763775302,215,0 +170763775350,215,0 +170763775398,215,0 +170763775447,215,0 +170763775495,215,0 +170763775545,216,0 +170763775593,216,0 +170763775642,216,0 +170763775692,216,0 +170763775741,216,0 +170763775791,213,0 +170763775839,213,0 +170763775887,213,0 +170763775935,213,0 +170763775983,214,0 +170763776031,214,0 +170763776079,214,0 +170763776128,214,0 +170763776176,214,0 +170763776224,214,0 +170763776273,215,0 +170763776323,215,0 +170763776371,215,0 +170763776420,215,0 +170763776470,215,0 +170763776518,215,0 +170763776567,215,0 +170763776615,216,0 +170763776663,215,0 +170763776712,214,0 +170763776760,213,0 +170763776808,213,0 +170763776856,213,0 +170763776906,213,0 +170763776955,214,0 +170763777005,214,0 +170763777054,214,0 +170763777102,214,0 +170763777152,214,0 +170763777201,214,0 +170763777251,215,0 +170763777300,215,0 +170763777348,215,0 +170763777395,215,0 +170763777443,216,0 +170763777491,216,0 +170763777539,215,0 +170763777586,215,0 +170763777634,215,0 +170763777682,213,0 +170763777730,213,0 +170763777778,213,0 +170763777826,213,0 +170763777874,213,0 +170763777921,213,0 +170763777969,214,0 +170763778019,214,0 +170763778068,214,0 +170763778116,214,0 +170763778164,215,0 +170763778214,215,0 +170763778262,215,0 +170763778310,215,0 +170763778358,215,0 +170763778405,216,0 +170763778455,216,0 +170763778503,216,0 +170763778551,216,0 +170763778599,214,0 +170763778647,213,0 +170763778694,213,0 +170763778742,213,0 +170763778790,213,0 +170763778838,214,0 +170763778886,214,0 +170763778935,214,0 +170763778983,214,0 +170763779031,214,0 +170763779079,214,0 +170763779127,215,0 +170763779175,215,0 +170763779223,215,0 +170763779270,215,0 +170763779318,215,0 +170763779366,216,0 +170763779415,216,0 +170763779463,216,0 +170763779511,214,0 +170763779559,213,0 +170763779607,213,0 +170763779656,213,0 +170763779704,213,0 +170763779752,213,0 +170763779800,213,0 +170763779850,214,0 +170763779899,214,0 +170763779947,214,0 +170763779995,214,0 +170763780043,214,0 +170763780090,215,0 +170763780138,215,0 +170763780186,215,0 +170763780234,215,0 +170763780282,215,0 +170763780329,216,0 +170763780377,216,0 +170763780425,216,0 +170763780473,213,0 +170763780521,213,0 +170763780569,213,0 +170763780616,213,0 +170763780664,213,0 +170763780714,213,0 +170763780762,214,0 +170763780811,214,0 +170763780859,214,0 +170763780907,214,0 +170763780956,215,0 +170763781004,215,0 +170763781052,215,0 +170763781100,215,0 +170763781148,215,0 +170763781196,215,0 +170763781244,215,0 +170763781294,216,0 +170763781343,216,0 +170763781391,213,0 +170763781440,213,0 +170763781488,213,0 +170763781536,213,0 +170763781586,213,0 +170763781634,213,0 +170763781683,213,0 +170763781731,213,0 +170763781781,213,0 +170763781829,213,0 +170763781878,213,0 +170763781926,213,0 +170763781974,213,0 +170763782022,213,0 +170763782071,214,0 +170763782119,214,0 +170763782167,215,0 +170763782215,214,0 +170763782263,215,0 +170763782311,215,0 +170763782361,215,0 +170763782408,215,0 +170763782458,216,0 +170763782507,216,0 +170763782555,216,0 +170763782603,216,0 +170763782653,216,0 +170763782700,216,0 +170763782748,216,0 +170763782798,214,0 +170763782846,213,0 +170763782894,213,0 +170763782942,213,0 +170763782991,213,0 +170763783041,213,0 +170763783088,213,0 +170763783136,213,0 +170763783184,214,0 +170763783232,214,0 +170763783280,214,0 +170763783329,214,0 +170763783377,215,0 +170763783425,215,0 +170763783475,215,0 +170763783523,215,0 +170763783571,215,0 +170763783619,215,0 +170763783667,216,0 +170763783714,214,0 +170763783764,213,0 +170763783812,213,0 +170763783861,213,0 +170763783909,213,0 +170763783957,213,0 +170763784005,214,0 +170763784053,214,0 +170763784101,214,0 +170763784149,214,0 +170763784198,214,0 +170763784246,215,0 +170763784294,215,0 +170763784344,215,0 +170763784392,215,0 +170763784440,215,0 +170763784489,215,0 +170763784537,216,0 +170763784587,216,0 +170763784635,216,0 +170763784684,213,0 +170763784733,213,0 +170763784783,213,0 +170763784831,213,0 +170763784879,213,0 +170763784928,213,0 +170763784976,213,0 +170763785024,214,0 +170763785072,214,0 +170763785120,214,0 +170763785168,214,0 +170763785217,214,0 +170763785267,215,0 +170763785316,215,0 +170763785366,215,0 +170763785414,215,0 +170763785463,216,0 +170763785513,216,0 +170763785562,215,0 +170763785612,213,0 +170763785660,213,0 +170763785708,213,0 +170763785756,213,0 +170763785804,213,0 +170763785853,214,0 +170763785903,213,0 +170763785951,214,0 +170763785998,214,0 +170763786046,214,0 +170763786094,215,0 +170763786144,215,0 +170763786192,215,0 +170763786240,215,0 +170763786288,215,0 +170763786336,216,0 +170763786385,216,0 +170763786433,216,0 +170763786481,216,0 +170763786530,214,0 +170763786578,213,0 +170763786628,213,0 +170763786676,213,0 +170763786724,213,0 +170763786773,214,0 +170763786821,214,0 +170763786871,214,0 +170763786920,214,0 +170763786968,214,0 +170763787016,215,0 +170763787065,215,0 +170763787115,215,0 +170763787164,215,0 +170763787212,215,0 +170763787262,215,0 +170763787310,216,0 +170763787359,216,0 +170763787409,216,0 +170763787457,214,0 +170763787505,213,0 +170763787554,213,0 +170763787604,213,0 +170763787653,213,0 +170763787701,213,0 +170763787749,214,0 +170763787799,214,0 +170763787848,214,0 +170763787896,214,0 +170763787944,214,0 +170763787992,215,0 +170763788042,215,0 +170763788090,215,0 +170763788138,215,0 +170763788186,214,0 +170763788235,214,0 +170763788285,215,0 +170763788332,216,0 +170763788380,216,0 +170763788428,213,0 +170763788478,213,0 +170763788526,213,0 +170763788574,213,0 +170763788622,213,0 +170763788670,214,0 +170763788717,214,0 +170763788767,214,0 +170763788816,214,0 +170763788864,215,0 +170763788912,214,0 +170763788960,215,0 +170763789008,215,0 +170763789056,215,0 +170763789105,215,0 +170763789153,215,0 +170763789203,216,0 +170763789252,216,0 +170763789300,216,0 +170763789348,213,0 +170763789396,213,0 +170763789444,213,0 +170763789494,213,0 +170763789542,213,0 +170763789590,213,0 +170763789638,213,0 +170763789686,213,0 +170763789733,213,0 +170763789781,213,0 +170763789829,214,0 +170763789877,214,0 +170763789927,214,0 +170763789975,214,0 +170763790024,215,0 +170763790072,214,0 +170763790122,215,0 +170763790170,215,0 +170763790218,215,0 +170763790266,214,0 +170763790314,213,0 +170763790361,213,0 +170763790411,213,0 +170763790459,213,0 +170763790508,213,0 +170763790556,213,0 +170763790604,213,0 +170763790652,214,0 +170763790702,214,0 +170763790750,214,0 +170763790798,214,0 +170763790846,214,0 +170763790895,215,0 +170763790943,215,0 +170763790991,215,0 +170763791039,215,0 +170763791089,215,0 +170763791138,216,0 +170763791186,215,0 +170763791235,213,0 +170763791283,213,0 +170763791331,213,0 +170763791379,213,0 +170763791427,213,0 +170763791475,213,0 +170763791523,213,0 +170763791571,213,0 +170763791619,214,0 +170763791667,214,0 +170763791715,214,0 +170763791763,214,0 +170763791811,214,0 +170763791859,215,0 +170763791908,215,0 +170763791956,215,0 +170763792006,216,0 +170763792054,216,0 +170763792103,216,0 +170763792153,214,0 +170763792202,213,0 +170763792250,213,0 +170763792300,213,0 +170763792349,213,0 +170763792399,213,0 +170763792447,213,0 +170763792495,213,0 +170763792543,214,0 +170763792592,214,0 +170763792640,214,0 +170763792688,215,0 +170763792736,215,0 +170763792784,215,0 +170763792833,215,0 +170763792881,215,0 +170763792929,215,0 +170763792977,216,0 +170763793025,216,0 +170763793073,214,0 +170763793121,213,0 +170763793170,213,0 +170763793220,213,0 +170763793268,213,0 +170763793316,213,0 +170763793364,213,0 +170763793413,213,0 +170763793461,213,0 +170763793509,214,0 +170763793557,214,0 +170763793605,215,0 +170763793653,215,0 +170763793701,215,0 +170763793750,215,0 +170763793800,215,0 +170763793848,215,0 +170763793895,215,0 +170763793943,216,0 +170763793993,215,0 +170763794042,213,0 +170763794092,213,0 +170763794141,213,0 +170763794191,213,0 +170763794239,213,0 +170763794287,213,0 +170763794336,213,0 +170763794386,214,0 +170763794435,214,0 +170763794483,214,0 +170763794531,215,0 +170763794580,214,0 +170763794628,215,0 +170763794678,215,0 +170763794727,215,0 +170763794775,215,0 +170763794825,216,0 +170763794874,216,0 +170763794922,216,0 +170763794970,213,0 +170763795020,213,0 +170763795068,213,0 +170763795116,213,0 +170763795163,213,0 +170763795211,213,0 +170763795259,214,0 +170763795307,214,0 +170763795355,214,0 +170763795403,214,0 +170763795452,215,0 +170763795500,215,0 +170763795548,215,0 +170763795596,216,0 +170763795644,216,0 +170763795691,216,0 +170763795739,216,0 +170763795787,216,0 +170763795835,216,0 +170763795883,214,0 +170763795932,213,0 +170763795982,213,0 +170763796030,213,0 +170763796079,214,0 +170763796127,214,0 +170763796175,214,0 +170763796225,214,0 +170763796273,214,0 +170763796321,214,0 +170763796370,215,0 +170763796418,215,0 +170763796466,215,0 +170763796514,215,0 +170763796563,216,0 +170763796613,216,0 +170763796661,216,0 +170763796710,216,0 +170763796759,216,0 +170763796809,214,0 +170763796857,213,0 +170763796904,214,0 +170763796952,214,0 +170763797000,214,0 +170763797050,214,0 +170763797098,215,0 +170763797147,215,0 +170763797195,215,0 +170763797243,215,0 +170763797291,215,0 +170763797339,216,0 +170763797387,216,0 +170763797436,216,0 +170763797484,216,0 +170763797532,216,0 +170763797580,216,0 +170763797628,216,0 +170763797676,216,0 +170763797726,216,0 +170763797774,213,0 +170763797821,213,0 +170763797869,213,0 +170763797917,214,0 +170763797965,214,0 +170763798013,214,0 +170763798061,214,0 +170763798109,214,0 +170763798157,215,0 +170763798206,214,0 +170763798256,215,0 +170763798304,215,0 +170763798353,215,0 +170763798403,216,0 +170763798451,215,0 +170763798499,216,0 +170763798547,216,0 +170763798596,216,0 +170763798644,216,0 +170763798693,214,0 +170763798741,213,0 +170763798789,213,0 +170763798839,214,0 +170763798888,213,0 +170763798936,214,0 +170763798986,214,0 +170763799035,214,0 +170763799085,214,0 +170763799133,214,0 +170763799181,214,0 +170763799230,215,0 +170763799278,215,0 +170763799326,215,0 +170763799376,215,0 +170763799423,216,0 +170763799473,215,0 +170763799522,216,0 +170763799570,216,0 +170763799618,214,0 +170763799666,213,0 +170763799714,213,0 +170763799762,213,0 +170763799810,213,0 +170763799860,214,0 +170763799909,214,0 +170763799957,214,0 +170763800005,214,0 +170763800055,214,0 +170763800102,214,0 +170763800150,215,0 +170763800198,215,0 +170763800248,215,0 +170763800296,215,0 +170763800344,215,0 +170763800392,216,0 +170763800439,216,0 +170763800487,216,0 +170763800535,216,0 +170763800583,213,0 +170763800631,213,0 +170763800679,213,0 +170763800727,213,0 +170763800777,214,0 +170763800825,214,0 +170763800874,214,0 +170763800922,214,0 +170763800970,215,0 +170763801019,214,0 +170763801067,215,0 +170763801115,215,0 +170763801163,215,0 +170763801211,215,0 +170763801259,216,0 +170763801309,215,0 +170763801358,216,0 +170763801406,216,0 +170763801454,215,0 +170763801502,214,0 +170763801550,213,0 +170763801599,213,0 +170763801649,213,0 +170763801698,214,0 +170763801746,214,0 +170763801794,214,0 +170763801842,214,0 +170763801890,214,0 +170763801938,214,0 +170763801986,215,0 +170763802034,215,0 +170763802083,215,0 +170763802131,215,0 +170763802179,215,0 +170763802227,216,0 +170763802275,216,0 +170763802324,216,0 +170763802372,216,0 +170763802422,214,0 +170763802469,213,0 +170763802517,213,0 +170763802565,213,0 +170763802613,213,0 +170763802661,214,0 +170763802709,214,0 +170763802757,214,0 +170763802805,214,0 +170763802853,214,0 +170763802901,214,0 +170763802949,214,0 +170763802997,215,0 +170763803046,215,0 +170763803094,215,0 +170763803144,215,0 +170763803193,216,0 +170763803241,216,0 +170763803289,216,0 +170763803337,216,0 +170763803385,213,0 +170763803433,213,0 +170763803481,213,0 +170763803528,214,0 +170763803576,214,0 +170763803624,214,0 +170763803672,214,0 +170763803720,214,0 +170763803769,215,0 +170763803819,215,0 +170763803867,215,0 +170763803914,215,0 +170763803964,215,0 +170763804012,215,0 +170763804060,216,0 +170763804108,215,0 +170763804156,216,0 +170763804204,216,0 +170763804252,216,0 +170763804301,214,0 +170763804349,213,0 +170763804397,213,0 +170763804447,213,0 +170763804496,213,0 +170763804544,214,0 +170763804592,214,0 +170763804641,214,0 +170763804691,214,0 +170763804740,215,0 +170763804788,215,0 +170763804836,215,0 +170763804884,215,0 +170763804932,216,0 +170763804981,215,0 +170763805029,216,0 +170763805077,216,0 +170763805125,216,0 +170763805173,216,0 +170763805221,216,0 +170763805269,213,0 +170763805316,213,0 +170763805364,213,0 +170763805412,213,0 +170763805460,213,0 +170763805508,214,0 +170763805556,214,0 +170763805604,214,0 +170763805651,214,0 +170763805699,214,0 +170763805747,215,0 +170763805795,215,0 +170763805845,215,0 +170763805893,215,0 +170763805941,216,0 +170763805990,216,0 +170763806038,216,0 +170763806086,216,0 +170763806136,216,0 +170763806185,213,0 +170763806233,213,0 +170763806283,213,0 +170763806332,213,0 +170763806380,213,0 +170763806430,214,0 +170763806478,214,0 +170763806525,214,0 +170763806573,214,0 +170763806621,214,0 +170763806669,214,0 +170763806717,215,0 +170763806765,215,0 +170763806815,215,0 +170763806864,216,0 +170763806912,216,0 +170763806960,216,0 +170763807010,216,0 +170763807058,215,0 +170763807107,214,0 +170763807157,213,0 +170763807206,213,0 +170763807254,213,0 +170763807302,213,0 +170763807352,213,0 +170763807400,213,0 +170763807447,213,0 +170763807497,214,0 +170763807545,214,0 +170763807595,214,0 +170763807644,214,0 +170763807692,214,0 +170763807741,215,0 +170763807791,215,0 +170763807839,215,0 +170763807887,215,0 +170763807936,215,0 +170763807984,215,0 +170763808032,216,0 +170763808081,213,0 +170763808129,213,0 +170763808177,213,0 +170763808225,213,0 +170763808273,213,0 +170763808321,213,0 +170763808371,213,0 +170763808418,214,0 +170763808466,214,0 +170763808514,214,0 +170763808562,214,0 +170763808612,215,0 +170763808661,215,0 +170763808711,215,0 +170763808760,216,0 +170763808808,215,0 +170763808856,215,0 +170763808904,216,0 +170763808952,216,0 +170763809000,213,0 +170763809050,213,0 +170763809099,213,0 +170763809147,213,0 +170763809195,213,0 +170763809244,213,0 +170763809292,213,0 +170763809342,214,0 +170763809391,214,0 +170763809439,214,0 +170763809489,214,0 +170763809537,214,0 +170763809586,215,0 +170763809634,215,0 +170763809682,215,0 +170763809731,215,0 +170763809781,216,0 +170763809830,215,0 +170763809878,216,0 +170763809926,214,0 +170763809974,213,0 +170763810024,213,0 +170763810073,213,0 +170763810121,213,0 +170763810169,214,0 +170763810218,214,0 +170763810268,214,0 +170763810316,214,0 +170763810364,214,0 +170763810412,215,0 +170763810460,215,0 +170763810507,215,0 +170763810555,215,0 +170763810603,215,0 +170763810651,216,0 +170763810700,216,0 +170763810748,216,0 +170763810798,216,0 +170763810845,216,0 +170763810893,213,0 +170763810941,213,0 +170763810991,213,0 +170763811040,213,0 +170763811090,214,0 +170763811138,214,0 +170763811186,214,0 +170763811234,214,0 +170763811281,214,0 +170763811329,214,0 +170763811377,214,0 +170763811425,215,0 +170763811473,215,0 +170763811521,215,0 +170763811571,215,0 +170763811619,215,0 +170763811667,216,0 +170763811716,216,0 +170763811766,216,0 +170763811814,213,0 +170763811863,213,0 +170763811911,213,0 +170763811959,213,0 +170763812007,214,0 +170763812055,214,0 +170763812103,214,0 +170763812151,214,0 +170763812199,214,0 +170763812247,215,0 +170763812295,215,0 +170763812342,215,0 +170763812390,215,0 +170763812438,216,0 +170763812486,215,0 +170763812534,216,0 +170763812582,216,0 +170763812630,216,0 +170763812680,216,0 +170763812727,213,0 +170763812777,213,0 +170763812825,213,0 +170763812873,213,0 +170763812922,213,0 +170763812970,213,0 +170763813018,214,0 +170763813066,214,0 +170763813114,214,0 +170763813162,214,0 +170763813210,214,0 +170763813258,214,0 +170763813307,215,0 +170763813355,215,0 +170763813405,215,0 +170763813453,215,0 +170763813502,216,0 +170763813550,216,0 +170763813598,216,0 +170763813646,215,0 +170763813694,213,0 +170763813742,213,0 +170763813791,213,0 +170763813839,213,0 +170763813889,213,0 +170763813938,213,0 +170763813986,213,0 +170763814034,213,0 +170763814084,213,0 +170763814133,213,0 +170763814181,213,0 +170763814230,214,0 +170763814279,214,0 +170763814328,214,0 +170763814376,215,0 +170763814424,215,0 +170763814473,215,0 +170763814521,215,0 +170763814569,215,0 +170763814619,214,0 +170763814667,213,0 +170763814716,213,0 +170763814766,213,0 +170763814814,213,0 +170763814862,213,0 +170763814911,213,0 +170763814959,213,0 +170763815007,213,0 +170763815055,214,0 +170763815103,214,0 +170763815152,214,0 +170763815200,214,0 +170763815248,215,0 +170763815298,215,0 +170763815347,215,0 +170763815395,215,0 +170763815443,216,0 +170763815492,216,0 +170763815540,214,0 +170763815588,213,0 +170763815636,213,0 +170763815686,213,0 +170763815734,213,0 +170763815783,213,0 +170763815831,213,0 +170763815879,213,0 +170763815928,214,0 +170763815976,214,0 +170763816024,214,0 +170763816072,214,0 +170763816120,215,0 +170763816168,215,0 +170763816216,215,0 +170763816264,215,0 +170763816312,216,0 +170763816360,215,0 +170763816409,216,0 +170763816457,214,0 +170763816505,213,0 +170763816553,213,0 +170763816601,213,0 +170763816649,213,0 +170763816699,214,0 +170763816747,214,0 +170763816795,214,0 +170763816843,214,0 +170763816891,214,0 +170763816938,215,0 +170763816986,215,0 +170763817036,215,0 +170763817084,215,0 +170763817132,216,0 +170763817181,216,0 +170763817229,216,0 +170763817277,216,0 +170763817325,216,0 +170763817374,216,0 +170763817424,213,0 +170763817472,213,0 +170763817522,213,0 +170763817569,213,0 +170763817617,213,0 +170763817665,213,0 +170763817715,213,0 +170763817763,214,0 +170763817811,214,0 +170763817859,214,0 +170763817907,215,0 +170763817955,215,0 +170763818003,215,0 +170763818051,215,0 +170763818099,215,0 +170763818147,215,0 +170763818196,215,0 +170763818244,215,0 +170763818293,216,0 +170763818343,214,0 +170763818391,213,0 +170763818439,213,0 +170763818488,213,0 +170763818536,213,0 +170763818584,213,0 +170763818632,213,0 +170763818682,214,0 +170763818730,214,0 +170763818779,214,0 +170763818829,214,0 +170763818877,215,0 +170763818925,215,0 +170763818972,215,0 +170763819020,215,0 +170763819068,215,0 +170763819116,215,0 +170763819164,215,0 +170763819214,216,0 +170763819263,215,0 +170763819311,213,0 +170763819359,213,0 +170763819409,213,0 +170763819457,214,0 +170763819506,213,0 +170763819554,214,0 +170763819603,214,0 +170763819653,214,0 +170763819701,214,0 +170763819749,215,0 +170763819798,214,0 +170763819848,215,0 +170763819896,215,0 +170763819945,215,0 +170763819993,215,0 +170763820041,215,0 +170763820091,216,0 +170763820139,216,0 +170763820186,216,0 +170763820234,213,0 +170763820282,213,0 +170763820332,213,0 +170763820380,214,0 +170763820428,214,0 +170763820477,214,0 +170763820527,214,0 +170763820576,214,0 +170763820624,214,0 +170763820672,214,0 +170763820720,214,0 +170763820768,215,0 +170763820817,215,0 +170763820867,215,0 +170763820916,215,0 +170763820964,215,0 +170763821012,216,0 +170763821060,216,0 +170763821108,216,0 +170763821156,214,0 +170763821204,214,0 +170763821254,214,0 +170763821302,214,0 +170763821349,214,0 +170763821397,214,0 +170763821445,214,0 +170763821493,214,0 +170763821541,215,0 +170763821589,215,0 +170763821637,215,0 +170763821686,215,0 +170763821736,216,0 +170763821785,216,0 +170763821833,216,0 +170763821881,216,0 +170763821929,216,0 +170763821977,216,0 +170763822025,216,0 +170763822073,215,0 +170763822122,214,0 +170763822170,214,0 +170763822220,214,0 +170763822268,214,0 +170763822316,214,0 +170763822364,214,0 +170763822413,214,0 +170763822461,214,0 +170763822509,215,0 +170763822558,216,0 +170763822608,215,0 +170763822656,216,0 +170763822705,216,0 +170763822753,216,0 +170763822803,216,0 +170763822851,216,0 +170763822898,216,0 +170763822946,216,0 +170763822996,216,0 +170763823044,213,0 +170763823092,213,0 +170763823140,213,0 +170763823188,214,0 +170763823236,214,0 +170763823283,214,0 +170763823333,214,0 +170763823381,214,0 +170763823429,215,0 +170763823477,215,0 +170763823525,215,0 +170763823573,216,0 +170763823622,216,0 +170763823672,216,0 +170763823721,216,0 +170763823771,216,0 +170763823819,216,0 +170763823867,216,0 +170763823915,216,0 +170763823964,214,0 +170763824014,213,0 +170763824063,213,0 +170763824111,213,0 +170763824159,213,0 +170763824207,213,0 +170763824255,214,0 +170763824305,214,0 +170763824354,214,0 +170763824402,214,0 +170763824450,214,0 +170763824498,215,0 +170763824546,215,0 +170763824595,215,0 +170763824643,215,0 +170763824693,215,0 +170763824740,215,0 +170763824788,215,0 +170763824836,216,0 +170763824884,215,0 +170763824932,213,0 +170763824980,213,0 +170763825029,213,0 +170763825077,213,0 +170763825126,213,0 +170763825174,213,0 +170763825222,214,0 +170763825270,214,0 +170763825318,214,0 +170763825366,214,0 +170763825413,214,0 +170763825461,215,0 +170763825509,215,0 +170763825557,215,0 +170763825605,215,0 +170763825653,215,0 +170763825701,216,0 +170763825748,216,0 +170763825796,216,0 +170763825844,214,0 +170763825892,213,0 +170763825940,213,0 +170763825988,213,0 +170763826036,213,0 +170763826084,213,0 +170763826131,214,0 +170763826179,214,0 +170763826227,214,0 +170763826275,214,0 +170763826323,214,0 +170763826371,215,0 +170763826419,214,0 +170763826466,215,0 +170763826514,215,0 +170763826562,215,0 +170763826610,215,0 +170763826658,215,0 +170763826707,216,0 +170763826757,214,0 +170763826804,213,0 +170763826852,213,0 +170763826900,213,0 +170763826948,213,0 +170763826996,213,0 +170763827044,213,0 +170763827092,213,0 +170763827139,214,0 +170763827187,214,0 +170763827235,215,0 +170763827283,215,0 +170763827333,215,0 +170763827380,215,0 +170763827428,215,0 +170763827476,216,0 +170763827525,215,0 +170763827573,215,0 +170763827621,216,0 +170763827669,216,0 +170763827719,214,0 +170763827767,213,0 +170763827814,213,0 +170763827862,213,0 +170763827910,213,0 +170763827958,213,0 +170763828006,213,0 +170763828054,213,0 +170763828102,213,0 +170763828149,214,0 +170763828197,214,0 +170763828245,214,0 +170763828293,215,0 +170763828341,215,0 +170763828389,215,0 +170763828436,216,0 +170763828484,215,0 +170763828532,216,0 +170763828580,215,0 +170763828627,215,0 +170763828675,213,0 +170763828723,213,0 +170763828771,213,0 +170763828818,213,0 +170763828866,213,0 +170763828914,213,0 +170763828962,213,0 +170763829011,213,0 +170763829059,214,0 +170763829107,214,0 +170763829154,214,0 +170763829204,214,0 +170763829252,214,0 +170763829299,215,0 +170763829347,215,0 +170763829395,215,0 +170763829443,215,0 +170763829491,216,0 +170763829538,216,0 +170763829586,214,0 +170763829634,213,0 +170763829682,213,0 +170763829730,213,0 +170763829779,213,0 +170763829827,213,0 +170763829875,213,0 +170763829923,213,0 +170763829971,213,0 +170763830018,214,0 +170763830066,214,0 +170763830114,214,0 +170763830162,215,0 +170763830210,215,0 +170763830259,215,0 +170763830307,215,0 +170763830355,215,0 +170763830403,216,0 +170763830450,216,0 +170763830498,216,0 +170763830546,213,0 +170763830594,213,0 +170763830642,213,0 +170763830689,213,0 +170763830737,213,0 +170763830785,214,0 +170763830833,213,0 +170763830881,214,0 +170763830928,214,0 +170763830976,214,0 +170763831024,214,0 +170763831072,215,0 +170763831120,215,0 +170763831167,215,0 +170763831215,215,0 +170763831263,215,0 +170763831311,216,0 +170763831359,216,0 +170763831407,216,0 +170763831455,214,0 +170763831502,213,0 +170763831552,213,0 +170763831599,213,0 +170763831647,213,0 +170763831695,213,0 +170763831743,214,0 +170763831791,214,0 +170763831839,214,0 +170763831887,214,0 +170763831935,214,0 +170763831982,215,0 +170763832030,215,0 +170763832078,215,0 +170763832126,215,0 +170763832174,215,0 +170763832222,215,0 +170763832270,216,0 +170763832318,216,0 +170763832365,215,0 +170763832413,213,0 +170763832463,213,0 +170763832512,213,0 +170763832562,213,0 +170763832610,213,0 +170763832658,214,0 +170763832706,214,0 +170763832754,214,0 +170763832803,214,0 +170763832851,214,0 +170763832899,215,0 +170763832947,215,0 +170763832995,215,0 +170763833044,215,0 +170763833092,216,0 +170763833140,216,0 +170763833190,216,0 +170763833238,216,0 +170763833286,216,0 +170763833333,214,0 +170763833381,213,0 +170763833429,213,0 +170763833477,213,0 +170763833527,213,0 +170763833576,213,0 +170763833624,213,0 +170763833672,214,0 +170763833720,214,0 +170763833768,214,0 +170763833816,214,0 +170763833864,214,0 +170763833912,214,0 +170763833959,215,0 +170763834009,215,0 +170763834057,215,0 +170763834105,215,0 +170763834152,215,0 +170763834200,215,0 +170763834248,216,0 +170763834298,213,0 +170763834346,213,0 +170763834394,213,0 +170763834441,213,0 +170763834489,213,0 +170763834537,213,0 +170763834585,213,0 +170763834633,213,0 +170763834681,213,0 +170763834729,213,0 +170763834778,214,0 +170763834826,214,0 +170763834874,214,0 +170763834924,215,0 +170763834971,215,0 +170763835021,215,0 +170763835069,215,0 +170763835119,215,0 +170763835166,215,0 +170763835214,213,0 +170763835262,213,0 +170763835310,213,0 +170763835358,213,0 +170763835407,213,0 +170763835457,213,0 +170763835506,213,0 +170763835556,213,0 +170763835604,213,0 +170763835651,214,0 +170763835699,214,0 +170763835747,214,0 +170763835795,215,0 +170763835843,215,0 +170763835891,215,0 +170763835939,214,0 +170763835987,215,0 +170763836034,216,0 +170763836082,215,0 +170763836130,214,0 +170763836178,213,0 +170763836226,213,0 +170763836274,213,0 +170763836322,213,0 +170763836370,213,0 +170763836417,213,0 +170763836465,214,0 +170763836513,214,0 +170763836561,214,0 +170763836609,214,0 +170763836657,214,0 +170763836705,214,0 +170763836754,215,0 +170763836802,215,0 +170763836850,215,0 +170763836898,215,0 +170763836946,215,0 +170763836993,216,0 +170763837041,216,0 +170763837089,214,0 +170763837137,213,0 +170763837185,213,0 +170763837233,213,0 +170763837282,213,0 +170763837330,214,0 +170763837378,214,0 +170763837426,214,0 +170763837474,214,0 +170763837522,214,0 +170763837570,215,0 +170763837618,215,0 +170763837666,215,0 +170763837714,215,0 +170763837763,215,0 +170763837811,215,0 +170763837861,216,0 +170763837909,216,0 +170763837958,216,0 +170763838006,214,0 +170763838054,213,0 +170763838102,213,0 +170763838151,213,0 +170763838199,214,0 +170763838247,214,0 +170763838297,214,0 +170763838346,214,0 +170763838395,215,0 +170763838445,215,0 +170763838494,215,0 +170763838542,215,0 +170763838590,215,0 +170763838638,216,0 +170763838686,216,0 +170763838734,216,0 +170763838784,215,0 +170763838832,216,0 +170763838881,216,0 +170763838929,214,0 +170763838977,213,0 +170763839027,213,0 +170763839075,213,0 +170763839124,214,0 +170763839172,214,0 +170763839221,214,0 +170763839269,214,0 +170763839319,215,0 +170763839368,215,0 +170763839418,215,0 +170763839466,215,0 +170763839514,215,0 +170763839562,215,0 +170763839611,215,0 +170763839661,216,0 +170763839710,216,0 +170763839758,216,0 +170763839806,216,0 +170763839854,215,0 +170763839902,213,0 +170763839950,213,0 +170763839998,213,0 diff --git a/laser_value/0211-18.csv b/laser_value/0211-18.csv new file mode 100644 index 0000000..7f25f92 --- /dev/null +++ b/laser_value/0211-18.csv @@ -0,0 +1,7456 @@ +timestamp,laser_value,event +170763840046,213,0 +170763840094,213,0 +170763840144,213,0 +170763840192,214,0 +170763840240,214,0 +170763840289,215,0 +170763840337,214,0 +170763840385,214,0 +170763840434,215,0 +170763840482,215,0 +170763840532,215,0 +170763840580,215,0 +170763840627,215,0 +170763840675,216,0 +170763840725,216,0 +170763840773,216,0 +170763840821,214,0 +170763840870,213,0 +170763840918,213,0 +170763840966,213,0 +170763841014,213,0 +170763841062,214,0 +170763841110,214,0 +170763841159,214,0 +170763841207,214,0 +170763841255,214,0 +170763841303,215,0 +170763841352,215,0 +170763841402,215,0 +170763841450,215,0 +170763841497,215,0 +170763841545,215,0 +170763841593,216,0 +170763841641,216,0 +170763841689,216,0 +170763841737,214,0 +170763841784,213,0 +170763841834,213,0 +170763841882,213,0 +170763841931,213,0 +170763841979,214,0 +170763842027,213,0 +170763842075,214,0 +170763842124,214,0 +170763842172,214,0 +170763842220,215,0 +170763842267,215,0 +170763842317,215,0 +170763842365,215,0 +170763842413,215,0 +170763842460,215,0 +170763842508,215,0 +170763842556,216,0 +170763842606,216,0 +170763842654,216,0 +170763842701,213,0 +170763842749,213,0 +170763842797,213,0 +170763842845,213,0 +170763842893,214,0 +170763842940,214,0 +170763842988,214,0 +170763843038,214,0 +170763843085,214,0 +170763843133,214,0 +170763843181,215,0 +170763843229,215,0 +170763843277,215,0 +170763843324,215,0 +170763843372,215,0 +170763843420,216,0 +170763843469,216,0 +170763843517,216,0 +170763843565,216,0 +170763843613,214,0 +170763843660,213,0 +170763843708,213,0 +170763843756,214,0 +170763843805,214,0 +170763843853,214,0 +170763843901,214,0 +170763843948,214,0 +170763843996,214,0 +170763844044,215,0 +170763844092,215,0 +170763844140,215,0 +170763844187,215,0 +170763844235,216,0 +170763844283,216,0 +170763844331,216,0 +170763844379,216,0 +170763844426,216,0 +170763844476,216,0 +170763844524,216,0 +170763844572,213,0 +170763844619,213,0 +170763844669,213,0 +170763844717,213,0 +170763844765,214,0 +170763844812,214,0 +170763844860,214,0 +170763844908,214,0 +170763844956,214,0 +170763845003,215,0 +170763845051,215,0 +170763845099,215,0 +170763845147,215,0 +170763845194,215,0 +170763845242,216,0 +170763845290,216,0 +170763845338,216,0 +170763845386,216,0 +170763845434,216,0 +170763845482,214,0 +170763845530,213,0 +170763845578,213,0 +170763845625,213,0 +170763845673,214,0 +170763845721,213,0 +170763845769,214,0 +170763845817,214,0 +170763845864,214,0 +170763845912,214,0 +170763845960,215,0 +170763846008,215,0 +170763846056,215,0 +170763846103,215,0 +170763846151,215,0 +170763846199,216,0 +170763846247,216,0 +170763846295,216,0 +170763846342,216,0 +170763846390,216,0 +170763846438,214,0 +170763846486,213,0 +170763846534,213,0 +170763846583,213,0 +170763846631,214,0 +170763846679,214,0 +170763846728,214,0 +170763846776,214,0 +170763846824,214,0 +170763846872,214,0 +170763846920,215,0 +170763846968,215,0 +170763847016,215,0 +170763847063,215,0 +170763847111,215,0 +170763847159,216,0 +170763847207,216,0 +170763847256,216,0 +170763847304,216,0 +170763847352,214,0 +170763847400,213,0 +170763847448,213,0 +170763847496,213,0 +170763847543,213,0 +170763847591,214,0 +170763847641,214,0 +170763847689,214,0 +170763847737,214,0 +170763847784,214,0 +170763847832,214,0 +170763847880,215,0 +170763847928,215,0 +170763847976,215,0 +170763848023,215,0 +170763848071,215,0 +170763848119,215,0 +170763848167,216,0 +170763848216,216,0 +170763848264,216,0 +170763848312,213,0 +170763848360,213,0 +170763848408,213,0 +170763848456,213,0 +170763848504,214,0 +170763848551,214,0 +170763848599,214,0 +170763848647,213,0 +170763848697,214,0 +170763848744,214,0 +170763848792,215,0 +170763848840,215,0 +170763848888,215,0 +170763848936,215,0 +170763848984,215,0 +170763849031,216,0 +170763849079,215,0 +170763849127,216,0 +170763849175,216,0 +170763849223,214,0 +170763849272,213,0 +170763849322,213,0 +170763849369,213,0 +170763849417,213,0 +170763849465,213,0 +170763849512,213,0 +170763849560,214,0 +170763849608,214,0 +170763849656,214,0 +170763849704,214,0 +170763849752,214,0 +170763849799,215,0 +170763849847,215,0 +170763849895,215,0 +170763849943,216,0 +170763849991,216,0 +170763850039,216,0 +170763850086,216,0 +170763850136,216,0 +170763850184,213,0 +170763850232,213,0 +170763850279,213,0 +170763850327,213,0 +170763850375,213,0 +170763850423,214,0 +170763850471,214,0 +170763850519,214,0 +170763850566,214,0 +170763850614,214,0 +170763850662,214,0 +170763850710,215,0 +170763850758,215,0 +170763850806,215,0 +170763850854,215,0 +170763850903,215,0 +170763850951,215,0 +170763850999,216,0 +170763851046,216,0 +170763851094,214,0 +170763851142,213,0 +170763851191,213,0 +170763851239,213,0 +170763851287,214,0 +170763851335,214,0 +170763851383,214,0 +170763851431,214,0 +170763851478,214,0 +170763851526,214,0 +170763851574,215,0 +170763851622,215,0 +170763851670,215,0 +170763851718,216,0 +170763851766,216,0 +170763851813,216,0 +170763851861,216,0 +170763851909,216,0 +170763851957,216,0 +170763852005,216,0 +170763852054,213,0 +170763852104,213,0 +170763852152,213,0 +170763852199,214,0 +170763852247,214,0 +170763852295,214,0 +170763852345,214,0 +170763852394,214,0 +170763852442,215,0 +170763852490,215,0 +170763852538,215,0 +170763852585,215,0 +170763852633,215,0 +170763852683,216,0 +170763852730,215,0 +170763852778,216,0 +170763852826,216,0 +170763852874,216,0 +170763852922,216,0 +170763852970,214,0 +170763853018,213,0 +170763853066,213,0 +170763853113,213,0 +170763853161,214,0 +170763853209,214,0 +170763853257,214,0 +170763853306,214,0 +170763853354,215,0 +170763853402,215,0 +170763853450,215,0 +170763853498,215,0 +170763853545,215,0 +170763853593,215,0 +170763853641,216,0 +170763853689,216,0 +170763853737,216,0 +170763853785,216,0 +170763853833,216,0 +170763853880,216,0 +170763853928,213,0 +170763853976,213,0 +170763854024,213,0 +170763854072,214,0 +170763854120,214,0 +170763854168,214,0 +170763854215,214,0 +170763854263,214,0 +170763854311,214,0 +170763854359,215,0 +170763854407,215,0 +170763854455,215,0 +170763854503,215,0 +170763854550,216,0 +170763854598,216,0 +170763854646,216,0 +170763854694,216,0 +170763854742,216,0 +170763854790,216,0 +170763854837,214,0 +170763854887,213,0 +170763854935,213,0 +170763854982,213,0 +170763855030,213,0 +170763855078,214,0 +170763855127,214,0 +170763855175,214,0 +170763855223,214,0 +170763855271,214,0 +170763855319,214,0 +170763855366,215,0 +170763855414,215,0 +170763855462,215,0 +170763855510,215,0 +170763855557,216,0 +170763855605,216,0 +170763855653,216,0 +170763855701,216,0 +170763855749,215,0 +170763855797,213,0 +170763855844,213,0 +170763855894,213,0 +170763855942,213,0 +170763855989,213,0 +170763856037,213,0 +170763856085,213,0 +170763856133,213,0 +170763856180,213,0 +170763856228,214,0 +170763856276,213,0 +170763856324,214,0 +170763856372,215,0 +170763856421,215,0 +170763856469,215,0 +170763856517,215,0 +170763856565,215,0 +170763856612,216,0 +170763856660,216,0 +170763856708,214,0 +170763856758,213,0 +170763856805,213,0 +170763856853,213,0 +170763856901,213,0 +170763856949,213,0 +170763856996,213,0 +170763857044,213,0 +170763857092,213,0 +170763857140,214,0 +170763857189,214,0 +170763857237,214,0 +170763857285,214,0 +170763857334,214,0 +170763857382,214,0 +170763857430,215,0 +170763857478,215,0 +170763857525,215,0 +170763857573,216,0 +170763857621,215,0 +170763857669,213,0 +170763857717,213,0 +170763857765,213,0 +170763857812,213,0 +170763857860,213,0 +170763857909,213,0 +170763857957,213,0 +170763858005,213,0 +170763858053,214,0 +170763858101,214,0 +170763858149,214,0 +170763858196,214,0 +170763858244,215,0 +170763858292,215,0 +170763858340,215,0 +170763858388,215,0 +170763858435,216,0 +170763858485,216,0 +170763858533,215,0 +170763858582,213,0 +170763858632,213,0 +170763858680,213,0 +170763858727,213,0 +170763858775,213,0 +170763858823,214,0 +170763858871,214,0 +170763858919,214,0 +170763858967,214,0 +170763859014,214,0 +170763859062,215,0 +170763859110,215,0 +170763859158,215,0 +170763859207,215,0 +170763859255,215,0 +170763859303,215,0 +170763859351,215,0 +170763859399,216,0 +170763859447,216,0 +170763859495,214,0 +170763859542,213,0 +170763859592,213,0 +170763859639,213,0 +170763859687,213,0 +170763859735,214,0 +170763859783,214,0 +170763859832,214,0 +170763859880,214,0 +170763859928,215,0 +170763859976,215,0 +170763860025,215,0 +170763860073,215,0 +170763860121,215,0 +170763860171,215,0 +170763860219,215,0 +170763860266,215,0 +170763860314,216,0 +170763860362,216,0 +170763860410,215,0 +170763860458,213,0 +170763860506,213,0 +170763860554,213,0 +170763860601,213,0 +170763860649,213,0 +170763860699,214,0 +170763860748,214,0 +170763860796,214,0 +170763860845,214,0 +170763860893,214,0 +170763860941,214,0 +170763860989,215,0 +170763861037,215,0 +170763861086,215,0 +170763861134,215,0 +170763861182,215,0 +170763861231,215,0 +170763861281,215,0 +170763861329,215,0 +170763861377,214,0 +170763861425,213,0 +170763861473,213,0 +170763861521,213,0 +170763861570,213,0 +170763861618,214,0 +170763861668,214,0 +170763861715,214,0 +170763861763,214,0 +170763861811,215,0 +170763861859,215,0 +170763861909,215,0 +170763861956,215,0 +170763862004,215,0 +170763862052,215,0 +170763862100,215,0 +170763862148,215,0 +170763862197,216,0 +170763862245,216,0 +170763862293,214,0 +170763862341,213,0 +170763862389,213,0 +170763862437,213,0 +170763862485,213,0 +170763862533,214,0 +170763862581,214,0 +170763862629,214,0 +170763862678,214,0 +170763862728,214,0 +170763862776,214,0 +170763862824,215,0 +170763862873,215,0 +170763862921,215,0 +170763862969,215,0 +170763863017,215,0 +170763863066,215,0 +170763863114,215,0 +170763863162,217,0 +170763863210,215,0 +170763863258,213,0 +170763863306,213,0 +170763863353,213,0 +170763863401,213,0 +170763863449,214,0 +170763863497,214,0 +170763863545,214,0 +170763863593,214,0 +170763863641,215,0 +170763863689,214,0 +170763863738,215,0 +170763863786,215,0 +170763863836,215,0 +170763863884,216,0 +170763863932,215,0 +170763863980,216,0 +170763864028,216,0 +170763864075,216,0 +170763864123,216,0 +170763864171,214,0 +170763864219,213,0 +170763864267,213,0 +170763864317,213,0 +170763864366,213,0 +170763864414,214,0 +170763864462,214,0 +170763864512,214,0 +170763864560,214,0 +170763864608,214,0 +170763864656,215,0 +170763864703,215,0 +170763864751,215,0 +170763864799,215,0 +170763864847,216,0 +170763864895,215,0 +170763864945,215,0 +170763864992,216,0 +170763865040,216,0 +170763865090,214,0 +170763865138,213,0 +170763865186,213,0 +170763865234,213,0 +170763865282,213,0 +170763865330,214,0 +170763865378,214,0 +170763865425,214,0 +170763865473,214,0 +170763865521,214,0 +170763865569,215,0 +170763865619,215,0 +170763865667,214,0 +170763865715,214,0 +170763865762,215,0 +170763865812,215,0 +170763865860,215,0 +170763865908,215,0 +170763865956,216,0 +170763866005,215,0 +170763866053,213,0 +170763866103,213,0 +170763866152,213,0 +170763866200,213,0 +170763866248,214,0 +170763866296,213,0 +170763866344,214,0 +170763866393,214,0 +170763866441,214,0 +170763866489,214,0 +170763866539,214,0 +170763866587,215,0 +170763866636,215,0 +170763866685,215,0 +170763866733,215,0 +170763866781,215,0 +170763866829,215,0 +170763866879,215,0 +170763866927,215,0 +170763866975,214,0 +170763867024,213,0 +170763867074,213,0 +170763867121,213,0 +170763867171,213,0 +170763867219,213,0 +170763867267,214,0 +170763867315,214,0 +170763867363,214,0 +170763867411,214,0 +170763867460,214,0 +170763867508,215,0 +170763867556,214,0 +170763867604,215,0 +170763867653,215,0 +170763867703,215,0 +170763867752,215,0 +170763867800,215,0 +170763867848,216,0 +170763867898,214,0 +170763867946,213,0 +170763867995,213,0 +170763868043,213,0 +170763868093,213,0 +170763868142,214,0 +170763868192,214,0 +170763868240,214,0 +170763868288,214,0 +170763868336,214,0 +170763868385,215,0 +170763868433,215,0 +170763868481,215,0 +170763868529,215,0 +170763868578,215,0 +170763868626,215,0 +170763868674,214,0 +170763868722,215,0 +170763868770,215,0 +170763868819,215,0 +170763868867,213,0 +170763868915,213,0 +170763868963,213,0 +170763869011,213,0 +170763869059,214,0 +170763869107,214,0 +170763869157,214,0 +170763869204,214,0 +170763869252,214,0 +170763869300,214,0 +170763869350,215,0 +170763869398,215,0 +170763869447,215,0 +170763869495,215,0 +170763869544,216,0 +170763869592,216,0 +170763869640,216,0 +170763869689,216,0 +170763869737,216,0 +170763869786,213,0 +170763869834,213,0 +170763869883,213,0 +170763869931,213,0 +170763869979,214,0 +170763870027,214,0 +170763870077,214,0 +170763870126,214,0 +170763870176,214,0 +170763870224,214,0 +170763870272,214,0 +170763870320,215,0 +170763870367,215,0 +170763870417,215,0 +170763870465,215,0 +170763870513,215,0 +170763870562,216,0 +170763870610,216,0 +170763870658,216,0 +170763870706,214,0 +170763870754,213,0 +170763870802,213,0 +170763870850,213,0 +170763870899,213,0 +170763870947,213,0 +170763870995,213,0 +170763871044,213,0 +170763871094,213,0 +170763871142,214,0 +170763871189,214,0 +170763871239,215,0 +170763871287,215,0 +170763871334,215,0 +170763871382,215,0 +170763871430,215,0 +170763871478,216,0 +170763871526,215,0 +170763871574,216,0 +170763871623,216,0 +170763871671,213,0 +170763871719,213,0 +170763871767,213,0 +170763871815,213,0 +170763871863,213,0 +170763871912,213,0 +170763871960,213,0 +170763872010,213,0 +170763872059,214,0 +170763872109,214,0 +170763872157,214,0 +170763872205,214,0 +170763872254,215,0 +170763872302,216,0 +170763872350,215,0 +170763872400,215,0 +170763872448,215,0 +170763872497,215,0 +170763872545,216,0 +170763872595,213,0 +170763872643,213,0 +170763872692,213,0 +170763872740,213,0 +170763872788,213,0 +170763872837,213,0 +170763872885,213,0 +170763872935,214,0 +170763872983,214,0 +170763873032,214,0 +170763873080,214,0 +170763873128,214,0 +170763873176,215,0 +170763873224,215,0 +170763873274,215,0 +170763873321,215,0 +170763873371,215,0 +170763873419,215,0 +170763873467,215,0 +170763873516,214,0 +170763873566,213,0 +170763873613,213,0 +170763873661,213,0 +170763873711,213,0 +170763873760,213,0 +170763873808,214,0 +170763873858,214,0 +170763873906,214,0 +170763873955,214,0 +170763874003,214,0 +170763874051,215,0 +170763874099,215,0 +170763874147,215,0 +170763874195,216,0 +170763874243,215,0 +170763874291,215,0 +170763874340,216,0 +170763874388,215,0 +170763874436,214,0 +170763874485,213,0 +170763874535,213,0 +170763874583,213,0 +170763874631,214,0 +170763874680,214,0 +170763874729,214,0 +170763874777,214,0 +170763874825,214,0 +170763874873,214,0 +170763874922,215,0 +170763874972,215,0 +170763875021,215,0 +170763875071,215,0 +170763875120,215,0 +170763875168,216,0 +170763875216,216,0 +170763875264,216,0 +170763875313,215,0 +170763875363,214,0 +170763875413,213,0 +170763875462,213,0 +170763875510,213,0 +170763875560,213,0 +170763875609,213,0 +170763875657,214,0 +170763875705,214,0 +170763875755,214,0 +170763875804,214,0 +170763875854,214,0 +170763875901,215,0 +170763875951,215,0 +170763875999,215,0 +170763876047,215,0 +170763876095,215,0 +170763876144,215,0 +170763876194,215,0 +170763876243,215,0 +170763876292,216,0 +170763876340,213,0 +170763876390,213,0 +170763876438,213,0 +170763876486,213,0 +170763876534,213,0 +170763876583,213,0 +170763876631,213,0 +170763876679,214,0 +170763876727,214,0 +170763876775,214,0 +170763876824,214,0 +170763876872,214,0 +170763876920,215,0 +170763876970,215,0 +170763877019,215,0 +170763877067,215,0 +170763877115,215,0 +170763877165,216,0 +170763877214,215,0 +170763877264,213,0 +170763877312,213,0 +170763877359,213,0 +170763877409,212,0 +170763877457,213,0 +170763877505,213,0 +170763877553,213,0 +170763877602,213,0 +170763877650,213,0 +170763877698,214,0 +170763877746,214,0 +170763877794,214,0 +170763877843,214,0 +170763877891,215,0 +170763877939,215,0 +170763877987,215,0 +170763878035,215,0 +170763878083,215,0 +170763878131,215,0 +170763878178,214,0 +170763878226,213,0 +170763878274,213,0 +170763878322,213,0 +170763878370,213,0 +170763878418,213,0 +170763878466,213,0 +170763878514,213,0 +170763878562,213,0 +170763878610,213,0 +170763878657,214,0 +170763878707,214,0 +170763878757,214,0 +170763878804,214,0 +170763878852,214,0 +170763878902,215,0 +170763878951,215,0 +170763879001,215,0 +170763879049,215,0 +170763879098,215,0 +170763879146,213,0 +170763879194,213,0 +170763879244,213,0 +170763879292,213,0 +170763879341,213,0 +170763879389,213,0 +170763879437,214,0 +170763879485,214,0 +170763879533,214,0 +170763879581,214,0 +170763879629,214,0 +170763879677,214,0 +170763879725,215,0 +170763879774,215,0 +170763879824,215,0 +170763879872,215,0 +170763879920,216,0 +170763879968,215,0 +170763880016,215,0 +170763880065,213,0 +170763880115,213,0 +170763880163,213,0 +170763880212,213,0 +170763880260,213,0 +170763880310,214,0 +170763880358,214,0 +170763880407,214,0 +170763880455,214,0 +170763880505,215,0 +170763880553,215,0 +170763880601,215,0 +170763880648,215,0 +170763880696,215,0 +170763880746,215,0 +170763880794,215,0 +170763880842,215,0 +170763880891,216,0 +170763880939,215,0 +170763880989,213,0 +170763881037,213,0 +170763881084,213,0 +170763881132,213,0 +170763881180,213,0 +170763881228,213,0 +170763881278,214,0 +170763881326,214,0 +170763881374,214,0 +170763881423,214,0 +170763881472,214,0 +170763881520,214,0 +170763881568,215,0 +170763881616,215,0 +170763881666,215,0 +170763881714,215,0 +170763881761,215,0 +170763881809,215,0 +170763881859,215,0 +170763881907,214,0 +170763881955,213,0 +170763882003,213,0 +170763882050,213,0 +170763882098,213,0 +170763882148,213,0 +170763882196,213,0 +170763882244,213,0 +170763882292,214,0 +170763882340,214,0 +170763882389,214,0 +170763882438,214,0 +170763882486,215,0 +170763882534,215,0 +170763882582,215,0 +170763882630,215,0 +170763882679,215,0 +170763882727,215,0 +170763882775,215,0 +170763882823,215,0 +170763882870,213,0 +170763882918,213,0 +170763882966,213,0 +170763883014,213,0 +170763883062,213,0 +170763883110,213,0 +170763883157,213,0 +170763883207,214,0 +170763883255,214,0 +170763883303,214,0 +170763883350,214,0 +170763883398,214,0 +170763883448,215,0 +170763883497,215,0 +170763883545,215,0 +170763883593,215,0 +170763883641,215,0 +170763883690,215,0 +170763883738,215,0 +170763883786,214,0 +170763883834,213,0 +170763883882,213,0 +170763883931,213,0 +170763883979,213,0 +170763884027,213,0 +170763884075,214,0 +170763884123,214,0 +170763884171,214,0 +170763884219,214,0 +170763884267,214,0 +170763884315,214,0 +170763884363,215,0 +170763884411,215,0 +170763884459,215,0 +170763884507,215,0 +170763884556,215,0 +170763884604,215,0 +170763884652,216,0 +170763884702,216,0 +170763884750,213,0 +170763884798,213,0 +170763884847,213,0 +170763884895,213,0 +170763884943,213,0 +170763884992,214,0 +170763885040,214,0 +170763885088,214,0 +170763885138,214,0 +170763885186,214,0 +170763885234,214,0 +170763885281,215,0 +170763885329,215,0 +170763885377,215,0 +170763885425,215,0 +170763885473,215,0 +170763885521,215,0 +170763885569,216,0 +170763885618,216,0 +170763885668,213,0 +170763885716,213,0 +170763885764,213,0 +170763885812,214,0 +170763885861,214,0 +170763885909,214,0 +170763885959,214,0 +170763886008,214,0 +170763886056,214,0 +170763886104,215,0 +170763886152,215,0 +170763886200,215,0 +170763886249,215,0 +170763886297,216,0 +170763886347,216,0 +170763886394,215,0 +170763886444,216,0 +170763886492,216,0 +170763886540,216,0 +170763886588,214,0 +170763886637,213,0 +170763886685,213,0 +170763886733,213,0 +170763886781,214,0 +170763886830,214,0 +170763886878,215,0 +170763886926,214,0 +170763886976,214,0 +170763887024,215,0 +170763887073,215,0 +170763887121,215,0 +170763887171,216,0 +170763887218,216,0 +170763887268,216,0 +170763887316,216,0 +170763887365,216,0 +170763887413,215,0 +170763887461,216,0 +170763887510,215,0 +170763887560,213,0 +170763887610,213,0 +170763887659,213,0 +170763887707,214,0 +170763887755,214,0 +170763887803,214,0 +170763887852,214,0 +170763887900,214,0 +170763887948,215,0 +170763887996,216,0 +170763888046,215,0 +170763888095,215,0 +170763888143,215,0 +170763888191,216,0 +170763888239,216,0 +170763888289,216,0 +170763888336,215,0 +170763888384,216,0 +170763888432,215,0 +170763888480,213,0 +170763888528,213,0 +170763888576,213,0 +170763888624,214,0 +170763888672,213,0 +170763888720,214,0 +170763888768,214,0 +170763888817,214,0 +170763888867,214,0 +170763888916,214,0 +170763888964,215,0 +170763889014,215,0 +170763889062,215,0 +170763889110,215,0 +170763889158,215,0 +170763889205,215,0 +170763889253,216,0 +170763889301,216,0 +170763889351,216,0 +170763889399,214,0 +170763889446,213,0 +170763889494,213,0 +170763889544,213,0 +170763889592,213,0 +170763889640,213,0 +170763889689,213,0 +170763889737,214,0 +170763889787,214,0 +170763889835,214,0 +170763889883,214,0 +170763889932,214,0 +170763889980,215,0 +170763890030,215,0 +170763890078,215,0 +170763890126,215,0 +170763890173,215,0 +170763890221,215,0 +170763890269,216,0 +170763890317,215,0 +170763890365,213,0 +170763890413,213,0 +170763890461,213,0 +170763890509,213,0 +170763890559,213,0 +170763890606,213,0 +170763890654,213,0 +170763890702,214,0 +170763890752,214,0 +170763890800,214,0 +170763890847,214,0 +170763890895,214,0 +170763890943,215,0 +170763890991,214,0 +170763891039,215,0 +170763891089,215,0 +170763891138,215,0 +170763891186,215,0 +170763891234,216,0 +170763891284,213,0 +170763891333,213,0 +170763891381,213,0 +170763891429,213,0 +170763891477,213,0 +170763891525,214,0 +170763891573,214,0 +170763891622,214,0 +170763891670,214,0 +170763891720,214,0 +170763891768,214,0 +170763891817,215,0 +170763891865,215,0 +170763891913,215,0 +170763891961,215,0 +170763892011,216,0 +170763892059,216,0 +170763892106,216,0 +170763892154,216,0 +170763892204,213,0 +170763892252,213,0 +170763892301,213,0 +170763892349,213,0 +170763892399,213,0 +170763892448,213,0 +170763892496,214,0 +170763892544,214,0 +170763892592,213,0 +170763892640,214,0 +170763892688,213,0 +170763892738,215,0 +170763892786,216,0 +170763892835,215,0 +170763892883,215,0 +170763892931,216,0 +170763892980,215,0 +170763893028,216,0 +170763893076,216,0 +170763893124,214,0 +170763893172,213,0 +170763893222,213,0 +170763893270,213,0 +170763893318,213,0 +170763893367,214,0 +170763893415,214,0 +170763893463,214,0 +170763893511,214,0 +170763893559,214,0 +170763893607,215,0 +170763893655,215,0 +170763893704,215,0 +170763893753,215,0 +170763893803,215,0 +170763893851,215,0 +170763893900,216,0 +170763893948,216,0 +170763893998,216,0 +170763894047,214,0 +170763894095,213,0 +170763894145,213,0 +170763894194,213,0 +170763894244,213,0 +170763894293,213,0 +170763894343,214,0 +170763894391,214,0 +170763894438,214,0 +170763894488,214,0 +170763894536,214,0 +170763894585,214,0 +170763894635,215,0 +170763894684,215,0 +170763894734,215,0 +170763894782,216,0 +170763894830,216,0 +170763894878,216,0 +170763894926,216,0 +170763894975,215,0 +170763895023,213,0 +170763895072,213,0 +170763895120,213,0 +170763895168,213,0 +170763895218,213,0 +170763895266,214,0 +170763895314,214,0 +170763895362,214,0 +170763895410,214,0 +170763895457,214,0 +170763895505,214,0 +170763895555,214,0 +170763895605,215,0 +170763895654,215,0 +170763895702,215,0 +170763895752,215,0 +170763895799,215,0 +170763895849,216,0 +170763895898,216,0 +170763895948,213,0 +170763895996,213,0 +170763896044,213,0 +170763896093,213,0 +170763896143,213,0 +170763896193,213,0 +170763896240,213,0 +170763896288,213,0 +170763896336,214,0 +170763896386,214,0 +170763896434,214,0 +170763896482,214,0 +170763896530,215,0 +170763896579,215,0 +170763896627,215,0 +170763896675,215,0 +170763896723,215,0 +170763896771,215,0 +170763896819,216,0 +170763896867,214,0 +170763896916,213,0 +170763896964,213,0 +170763897012,213,0 +170763897060,213,0 +170763897108,213,0 +170763897157,213,0 +170763897207,213,0 +170763897255,213,0 +170763897303,213,0 +170763897352,214,0 +170763897402,214,0 +170763897450,215,0 +170763897499,215,0 +170763897549,215,0 +170763897597,215,0 +170763897646,215,0 +170763897694,215,0 +170763897742,216,0 +170763897790,214,0 +170763897838,213,0 +170763897887,213,0 +170763897935,213,0 +170763897983,213,0 +170763898033,213,0 +170763898081,213,0 +170763898130,213,0 +170763898178,213,0 +170763898228,214,0 +170763898277,214,0 +170763898325,214,0 +170763898373,214,0 +170763898423,215,0 +170763898470,215,0 +170763898520,215,0 +170763898569,215,0 +170763898619,215,0 +170763898668,216,0 +170763898718,214,0 +170763898766,213,0 +170763898814,213,0 +170763898863,213,0 +170763898911,213,0 +170763898959,213,0 +170763899009,213,0 +170763899056,213,0 +170763899104,213,0 +170763899152,213,0 +170763899202,213,0 +170763899250,214,0 +170763899298,214,0 +170763899345,214,0 +170763899393,215,0 +170763899443,215,0 +170763899491,215,0 +170763899539,215,0 +170763899587,215,0 +170763899636,215,0 +170763899684,213,0 +170763899732,213,0 +170763899780,213,0 +170763899829,213,0 +170763899877,213,0 +170763899927,214,0 +170763899975,214,0 +170763900023,214,0 +170763900071,214,0 +170763900120,215,0 +170763900168,215,0 +170763900218,215,0 +170763900266,215,0 +170763900314,216,0 +170763900361,216,0 +170763900411,216,0 +170763900459,216,0 +170763900507,216,0 +170763900556,215,0 +170763900604,214,0 +170763900652,213,0 +170763900700,213,0 +170763900748,214,0 +170763900797,214,0 +170763900845,214,0 +170763900893,215,0 +170763900941,215,0 +170763900989,215,0 +170763901039,215,0 +170763901087,215,0 +170763901135,216,0 +170763901182,216,0 +170763901230,216,0 +170763901278,216,0 +170763901328,216,0 +170763901376,216,0 +170763901425,216,0 +170763901475,216,0 +170763901523,214,0 +170763901572,213,0 +170763901622,214,0 +170763901671,214,0 +170763901719,214,0 +170763901767,214,0 +170763901815,214,0 +170763901863,214,0 +170763901911,215,0 +170763901959,215,0 +170763902006,215,0 +170763902054,215,0 +170763902102,215,0 +170763902150,215,0 +170763902198,215,0 +170763902248,216,0 +170763902295,216,0 +170763902343,216,0 +170763902391,216,0 +170763902439,216,0 +170763902489,213,0 +170763902538,213,0 +170763902588,214,0 +170763902636,214,0 +170763902684,214,0 +170763902731,214,0 +170763902779,214,0 +170763902829,214,0 +170763902879,215,0 +170763902928,215,0 +170763902978,215,0 +170763903027,215,0 +170763903075,216,0 +170763903125,215,0 +170763903173,215,0 +170763903222,215,0 +170763903270,216,0 +170763903320,216,0 +170763903368,216,0 +170763903417,213,0 +170763903467,213,0 +170763903516,214,0 +170763903564,214,0 +170763903614,214,0 +170763903663,214,0 +170763903711,214,0 +170763903759,214,0 +170763903807,215,0 +170763903855,215,0 +170763903903,215,0 +170763903952,215,0 +170763904002,215,0 +170763904051,216,0 +170763904101,216,0 +170763904149,216,0 +170763904196,216,0 +170763904244,216,0 +170763904292,216,0 +170763904340,214,0 +170763904388,213,0 +170763904438,214,0 +170763904486,214,0 +170763904534,214,0 +170763904581,214,0 +170763904631,214,0 +170763904679,214,0 +170763904728,215,0 +170763904776,215,0 +170763904824,215,0 +170763904872,215,0 +170763904920,215,0 +170763904968,215,0 +170763905016,216,0 +170763905064,216,0 +170763905112,216,0 +170763905160,216,0 +170763905208,216,0 +170763905255,214,0 +170763905303,213,0 +170763905351,214,0 +170763905399,214,0 +170763905447,214,0 +170763905495,214,0 +170763905543,214,0 +170763905591,215,0 +170763905639,215,0 +170763905687,215,0 +170763905734,215,0 +170763905784,215,0 +170763905833,216,0 +170763905881,216,0 +170763905929,216,0 +170763905977,216,0 +170763906025,216,0 +170763906073,216,0 +170763906121,216,0 +170763906170,216,0 +170763906220,213,0 +170763906269,213,0 +170763906319,214,0 +170763906367,213,0 +170763906415,214,0 +170763906463,214,0 +170763906510,215,0 +170763906558,214,0 +170763906606,215,0 +170763906654,215,0 +170763906702,215,0 +170763906750,216,0 +170763906798,216,0 +170763906847,216,0 +170763906895,216,0 +170763906945,216,0 +170763906993,216,0 +170763907041,216,0 +170763907090,216,0 +170763907140,214,0 +170763907188,213,0 +170763907235,213,0 +170763907283,214,0 +170763907331,214,0 +170763907379,214,0 +170763907429,214,0 +170763907478,214,0 +170763907526,214,0 +170763907576,214,0 +170763907624,215,0 +170763907671,215,0 +170763907721,215,0 +170763907769,215,0 +170763907817,216,0 +170763907866,216,0 +170763907914,216,0 +170763907962,216,0 +170763908010,215,0 +170763908058,214,0 +170763908108,213,0 +170763908155,213,0 +170763908205,213,0 +170763908253,213,0 +170763908302,214,0 +170763908352,214,0 +170763908400,214,0 +170763908448,215,0 +170763908496,215,0 +170763908543,215,0 +170763908593,215,0 +170763908641,215,0 +170763908690,215,0 +170763908738,215,0 +170763908786,216,0 +170763908834,216,0 +170763908882,216,0 +170763908930,216,0 +170763908979,215,0 +170763909027,213,0 +170763909075,213,0 +170763909122,213,0 +170763909170,213,0 +170763909218,213,0 +170763909266,214,0 +170763909313,213,0 +170763909361,214,0 +170763909409,214,0 +170763909457,214,0 +170763909506,215,0 +170763909554,215,0 +170763909602,215,0 +170763909650,215,0 +170763909698,215,0 +170763909748,215,0 +170763909796,215,0 +170763909844,216,0 +170763909893,216,0 +170763909941,214,0 +170763909989,213,0 +170763910037,213,0 +170763910085,213,0 +170763910134,213,0 +170763910184,214,0 +170763910231,213,0 +170763910279,214,0 +170763910329,214,0 +170763910377,214,0 +170763910425,215,0 +170763910473,215,0 +170763910521,215,0 +170763910569,215,0 +170763910616,215,0 +170763910664,216,0 +170763910712,216,0 +170763910760,216,0 +170763910808,216,0 +170763910857,214,0 +170763910905,214,0 +170763910955,213,0 +170763911004,213,0 +170763911052,213,0 +170763911100,213,0 +170763911148,213,0 +170763911197,214,0 +170763911247,214,0 +170763911296,214,0 +170763911344,214,0 +170763911392,215,0 +170763911440,215,0 +170763911490,214,0 +170763911538,215,0 +170763911587,215,0 +170763911637,215,0 +170763911686,215,0 +170763911734,216,0 +170763911784,214,0 +170763911833,213,0 +170763911883,213,0 +170763911931,213,0 +170763911979,213,0 +170763912028,213,0 +170763912078,213,0 +170763912126,213,0 +170763912175,213,0 +170763912223,213,0 +170763912271,214,0 +170763912319,214,0 +170763912368,214,0 +170763912416,214,0 +170763912464,215,0 +170763912513,215,0 +170763912561,215,0 +170763912610,215,0 +170763912658,216,0 +170763912706,215,0 +170763912754,213,0 +170763912802,213,0 +170763912851,213,0 +170763912901,214,0 +170763912948,214,0 +170763912998,214,0 +170763913046,214,0 +170763913095,214,0 +170763913143,214,0 +170763913191,215,0 +170763913240,215,0 +170763913288,215,0 +170763913338,215,0 +170763913386,216,0 +170763913434,216,0 +170763913482,215,0 +170763913530,216,0 +170763913578,216,0 +170763913626,216,0 +170763913674,213,0 +170763913723,213,0 +170763913771,213,0 +170763913821,213,0 +170763913870,214,0 +170763913918,214,0 +170763913966,214,0 +170763914014,214,0 +170763914062,214,0 +170763914110,214,0 +170763914158,215,0 +170763914205,215,0 +170763914255,215,0 +170763914303,215,0 +170763914350,216,0 +170763914398,216,0 +170763914446,216,0 +170763914496,216,0 +170763914543,216,0 +170763914593,214,0 +170763914641,213,0 +170763914690,213,0 +170763914738,213,0 +170763914786,213,0 +170763914834,213,0 +170763914883,213,0 +170763914931,214,0 +170763914979,214,0 +170763915027,214,0 +170763915075,215,0 +170763915123,215,0 +170763915171,215,0 +170763915218,215,0 +170763915266,215,0 +170763915314,215,0 +170763915362,215,0 +170763915411,215,0 +170763915459,216,0 +170763915507,215,0 +170763915555,213,0 +170763915603,213,0 +170763915651,213,0 +170763915699,213,0 +170763915746,213,0 +170763915794,213,0 +170763915842,213,0 +170763915892,214,0 +170763915940,214,0 +170763915989,214,0 +170763916037,214,0 +170763916085,215,0 +170763916133,215,0 +170763916181,215,0 +170763916230,215,0 +170763916280,215,0 +170763916328,215,0 +170763916376,216,0 +170763916423,216,0 +170763916473,214,0 +170763916521,213,0 +170763916569,213,0 +170763916617,213,0 +170763916665,213,0 +170763916713,213,0 +170763916761,214,0 +170763916810,214,0 +170763916860,214,0 +170763916909,214,0 +170763916959,215,0 +170763917007,215,0 +170763917055,216,0 +170763917102,215,0 +170763917150,216,0 +170763917200,216,0 +170763917248,216,0 +170763917298,216,0 +170763917345,216,0 +170763917395,214,0 +170763917443,213,0 +170763917491,213,0 +170763917539,213,0 +170763917587,213,0 +170763917635,213,0 +170763917683,214,0 +170763917731,214,0 +170763917778,214,0 +170763917828,213,0 +170763917877,214,0 +170763917925,214,0 +170763917973,215,0 +170763918021,215,0 +170763918069,215,0 +170763918119,215,0 +170763918167,215,0 +170763918215,215,0 +170763918264,216,0 +170763918314,214,0 +170763918362,213,0 +170763918411,213,0 +170763918461,213,0 +170763918509,213,0 +170763918557,213,0 +170763918605,214,0 +170763918654,214,0 +170763918704,214,0 +170763918753,214,0 +170763918801,214,0 +170763918849,215,0 +170763918897,215,0 +170763918945,215,0 +170763918993,215,0 +170763919041,215,0 +170763919089,215,0 +170763919136,216,0 +170763919186,216,0 +170763919235,214,0 +170763919285,213,0 +170763919333,213,0 +170763919382,213,0 +170763919430,213,0 +170763919478,214,0 +170763919526,214,0 +170763919574,214,0 +170763919622,213,0 +170763919671,214,0 +170763919719,214,0 +170763919769,214,0 +170763919817,215,0 +170763919865,215,0 +170763919912,215,0 +170763919960,215,0 +170763920008,215,0 +170763920058,216,0 +170763920106,216,0 +170763920154,215,0 +170763920203,213,0 +170763920251,213,0 +170763920301,213,0 +170763920350,214,0 +170763920400,214,0 +170763920447,214,0 +170763920495,214,0 +170763920545,214,0 +170763920594,215,0 +170763920642,215,0 +170763920690,215,0 +170763920740,215,0 +170763920788,216,0 +170763920837,216,0 +170763920885,215,0 +170763920935,216,0 +170763920983,216,0 +170763921032,216,0 +170763921080,216,0 +170763921128,214,0 +170763921178,213,0 +170763921226,214,0 +170763921274,213,0 +170763921323,214,0 +170763921371,214,0 +170763921419,214,0 +170763921467,215,0 +170763921515,215,0 +170763921563,215,0 +170763921611,215,0 +170763921659,215,0 +170763921706,216,0 +170763921754,216,0 +170763921802,216,0 +170763921850,216,0 +170763921898,216,0 +170763921946,216,0 +170763921995,216,0 +170763922045,214,0 +170763922094,213,0 +170763922142,213,0 +170763922190,213,0 +170763922239,214,0 +170763922287,214,0 +170763922335,214,0 +170763922383,214,0 +170763922431,214,0 +170763922479,215,0 +170763922527,215,0 +170763922576,215,0 +170763922624,215,0 +170763922674,215,0 +170763922721,215,0 +170763922771,216,0 +170763922819,215,0 +170763922867,216,0 +170763922916,216,0 +170763922964,214,0 +170763923012,213,0 +170763923060,213,0 +170763923108,214,0 +170763923156,214,0 +170763923204,214,0 +170763923251,214,0 +170763923299,214,0 +170763923347,214,0 +170763923395,215,0 +170763923443,215,0 +170763923490,215,0 +170763923538,215,0 +170763923586,215,0 +170763923634,215,0 +170763923682,215,0 +170763923730,215,0 +170763923778,216,0 +170763923825,216,0 +170763923873,216,0 +170763923921,214,0 +170763923969,213,0 +170763924017,213,0 +170763924065,213,0 +170763924113,213,0 +170763924161,213,0 +170763924208,213,0 +170763924256,214,0 +170763924304,214,0 +170763924352,214,0 +170763924401,214,0 +170763924449,215,0 +170763924497,215,0 +170763924545,214,0 +170763924593,215,0 +170763924641,215,0 +170763924689,215,0 +170763924738,215,0 +170763924786,216,0 +170763924834,214,0 +170763924882,213,0 +170763924930,214,0 +170763924978,214,0 +170763925026,214,0 +170763925074,214,0 +170763925124,214,0 +170763925173,214,0 +170763925221,214,0 +170763925269,214,0 +170763925317,215,0 +170763925365,215,0 +170763925413,215,0 +170763925462,215,0 +170763925510,215,0 +170763925559,216,0 +170763925607,216,0 +170763925657,216,0 +170763925705,216,0 +170763925752,214,0 +170763925800,213,0 +170763925848,213,0 +170763925896,214,0 +170763925943,214,0 +170763925991,214,0 +170763926039,214,0 +170763926087,214,0 +170763926135,215,0 +170763926183,215,0 +170763926230,215,0 +170763926278,215,0 +170763926326,215,0 +170763926374,215,0 +170763926421,216,0 +170763926469,216,0 +170763926517,216,0 +170763926565,216,0 +170763926613,216,0 +170763926661,216,0 +170763926709,213,0 +170763926759,214,0 +170763926808,214,0 +170763926856,214,0 +170763926904,214,0 +170763926952,214,0 +170763927000,214,0 +170763927049,215,0 +170763927097,215,0 +170763927145,215,0 +170763927194,215,0 +170763927242,216,0 +170763927292,216,0 +170763927340,216,0 +170763927387,216,0 +170763927435,216,0 +170763927483,216,0 +170763927531,216,0 +170763927579,216,0 +170763927627,214,0 +170763927675,213,0 +170763927722,214,0 +170763927770,214,0 +170763927818,214,0 +170763927867,214,0 +170763927915,214,0 +170763927963,215,0 +170763928011,214,0 +170763928059,215,0 +170763928107,215,0 +170763928154,215,0 +170763928202,215,0 +170763928250,215,0 +170763928298,215,0 +170763928346,216,0 +170763928393,215,0 +170763928441,216,0 +170763928489,216,0 +170763928537,216,0 +170763928585,213,0 +170763928633,213,0 +170763928680,213,0 +170763928728,214,0 +170763928776,214,0 +170763928824,214,0 +170763928872,214,0 +170763928921,214,0 +170763928969,214,0 +170763929017,215,0 +170763929064,215,0 +170763929112,215,0 +170763929162,215,0 +170763929211,215,0 +170763929261,216,0 +170763929310,216,0 +170763929358,216,0 +170763929406,216,0 +170763929456,216,0 +170763929505,214,0 +170763929553,213,0 +170763929603,214,0 +170763929650,213,0 +170763929700,214,0 +170763929748,214,0 +170763929796,214,0 +170763929845,214,0 +170763929895,214,0 +170763929943,215,0 +170763929992,215,0 +170763930040,215,0 +170763930088,215,0 +170763930137,215,0 +170763930185,216,0 +170763930233,216,0 +170763930283,216,0 +170763930331,216,0 +170763930379,216,0 +170763930427,214,0 +170763930474,213,0 +170763930523,213,0 +170763930572,213,0 +170763930621,213,0 +170763930669,213,0 +170763930717,214,0 +170763930765,214,0 +170763930813,214,0 +170763930861,214,0 +170763930909,214,0 +170763930957,215,0 +170763931004,215,0 +170763931052,215,0 +170763931100,215,0 +170763931148,216,0 +170763931196,216,0 +170763931246,215,0 +170763931293,216,0 +170763931341,214,0 +170763931389,213,0 +170763931437,213,0 +170763931485,213,0 +170763931535,213,0 +170763931583,214,0 +170763931631,213,0 +170763931680,214,0 +170763931728,214,0 +170763931776,214,0 +170763931824,214,0 +170763931872,214,0 +170763931919,215,0 +170763931967,215,0 +170763932015,215,0 +170763932063,216,0 +170763932111,216,0 +170763932159,216,0 +170763932207,216,0 +170763932255,216,0 +170763932302,214,0 +170763932350,213,0 +170763932398,213,0 +170763932447,213,0 +170763932495,213,0 +170763932543,213,0 +170763932591,214,0 +170763932641,214,0 +170763932688,214,0 +170763932736,214,0 +170763932784,215,0 +170763932832,215,0 +170763932880,215,0 +170763932928,215,0 +170763932976,216,0 +170763933024,216,0 +170763933071,216,0 +170763933119,216,0 +170763933167,216,0 +170763933215,214,0 +170763933263,213,0 +170763933311,213,0 +170763933359,213,0 +170763933406,213,0 +170763933454,213,0 +170763933502,213,0 +170763933550,214,0 +170763933598,214,0 +170763933646,214,0 +170763933694,214,0 +170763933741,215,0 +170763933789,215,0 +170763933837,215,0 +170763933885,215,0 +170763933933,215,0 +170763933981,215,0 +170763934030,216,0 +170763934079,216,0 +170763934129,216,0 +170763934177,213,0 +170763934225,213,0 +170763934272,213,0 +170763934320,213,0 +170763934368,213,0 +170763934416,214,0 +170763934464,213,0 +170763934513,214,0 +170763934563,214,0 +170763934611,214,0 +170763934659,214,0 +170763934708,214,0 +170763934758,214,0 +170763934807,215,0 +170763934857,215,0 +170763934905,216,0 +170763934952,215,0 +170763935000,215,0 +170763935048,216,0 +170763935096,214,0 +170763935144,213,0 +170763935192,213,0 +170763935239,213,0 +170763935287,213,0 +170763935335,213,0 +170763935383,214,0 +170763935431,214,0 +170763935478,214,0 +170763935526,214,0 +170763935574,214,0 +170763935622,215,0 +170763935671,215,0 +170763935719,215,0 +170763935767,215,0 +170763935816,216,0 +170763935864,216,0 +170763935912,216,0 +170763935960,216,0 +170763936009,214,0 +170763936057,213,0 +170763936106,213,0 +170763936156,213,0 +170763936204,213,0 +170763936252,213,0 +170763936300,213,0 +170763936347,213,0 +170763936395,213,0 +170763936443,214,0 +170763936491,214,0 +170763936539,215,0 +170763936587,215,0 +170763936634,215,0 +170763936682,215,0 +170763936730,215,0 +170763936779,215,0 +170763936827,216,0 +170763936875,216,0 +170763936923,216,0 +170763936971,213,0 +170763937018,213,0 +170763937066,213,0 +170763937114,213,0 +170763937162,213,0 +170763937210,213,0 +170763937257,213,0 +170763937305,213,0 +170763937353,213,0 +170763937401,213,0 +170763937449,214,0 +170763937496,214,0 +170763937546,214,0 +170763937593,214,0 +170763937641,215,0 +170763937689,215,0 +170763937737,215,0 +170763937785,215,0 +170763937832,215,0 +170763937880,216,0 +170763937928,216,0 +170763937976,216,0 +170763938024,216,0 +170763938072,216,0 +170763938122,216,0 +170763938170,216,0 +170763938217,216,0 +170763938265,216,0 +170763938315,216,0 +170763938363,213,0 +170763938411,213,0 +170763938459,213,0 +170763938507,214,0 +170763938556,214,0 +170763938606,213,0 +170763938654,214,0 +170763938702,213,0 +170763938751,214,0 +170763938799,214,0 +170763938849,214,0 +170763938896,215,0 +170763938944,215,0 +170763938992,215,0 +170763939042,215,0 +170763939089,215,0 +170763939137,215,0 +170763939187,216,0 +170763939235,216,0 +170763939283,213,0 +170763939330,213,0 +170763939378,213,0 +170763939428,214,0 +170763939476,214,0 +170763939525,214,0 +170763939573,213,0 +170763939621,214,0 +170763939670,214,0 +170763939718,214,0 +170763939766,214,0 +170763939816,214,0 +170763939864,214,0 +170763939912,215,0 +170763939959,215,0 +170763940007,215,0 +170763940055,215,0 +170763940103,215,0 +170763940151,216,0 +170763940199,214,0 +170763940247,213,0 +170763940296,213,0 +170763940344,213,0 +170763940392,213,0 +170763940439,213,0 +170763940487,214,0 +170763940535,214,0 +170763940583,214,0 +170763940631,214,0 +170763940679,213,0 +170763940726,214,0 +170763940774,215,0 +170763940822,215,0 +170763940870,215,0 +170763940918,215,0 +170763940966,215,0 +170763941014,216,0 +170763941063,216,0 +170763941111,215,0 +170763941159,213,0 +170763941208,213,0 +170763941256,213,0 +170763941304,214,0 +170763941352,214,0 +170763941400,214,0 +170763941448,214,0 +170763941497,214,0 +170763941545,215,0 +170763941593,215,0 +170763941641,215,0 +170763941689,216,0 +170763941738,216,0 +170763941786,216,0 +170763941835,217,0 +170763941885,216,0 +170763941932,216,0 +170763941980,216,0 +170763942028,216,0 +170763942076,214,0 +170763942124,213,0 +170763942172,214,0 +170763942221,214,0 +170763942271,214,0 +170763942319,214,0 +170763942368,214,0 +170763942416,214,0 +170763942466,215,0 +170763942514,215,0 +170763942563,215,0 +170763942611,215,0 +170763942659,216,0 +170763942707,216,0 +170763942754,216,0 +170763942802,216,0 +170763942850,216,0 +170763942898,216,0 +170763942946,216,0 +170763942994,214,0 +170763943043,213,0 +170763943091,213,0 +170763943139,213,0 +170763943187,213,0 +170763943235,214,0 +170763943282,214,0 +170763943332,214,0 +170763943382,214,0 +170763943429,215,0 +170763943477,215,0 +170763943525,215,0 +170763943573,215,0 +170763943621,215,0 +170763943669,216,0 +170763943717,216,0 +170763943767,216,0 +170763943815,216,0 +170763943863,216,0 +170763943911,214,0 +170763943959,213,0 +170763944007,213,0 +170763944056,213,0 +170763944104,213,0 +170763944153,213,0 +170763944201,213,0 +170763944249,214,0 +170763944298,214,0 +170763944348,214,0 +170763944396,214,0 +170763944444,215,0 +170763944492,214,0 +170763944540,215,0 +170763944589,215,0 +170763944639,215,0 +170763944687,215,0 +170763944735,216,0 +170763944783,216,0 +170763944830,216,0 +170763944878,213,0 +170763944926,213,0 +170763944974,213,0 +170763945022,213,0 +170763945070,213,0 +170763945118,213,0 +170763945165,214,0 +170763945213,214,0 +170763945261,214,0 +170763945309,214,0 +170763945357,215,0 +170763945405,215,0 +170763945453,215,0 +170763945500,215,0 +170763945548,215,0 +170763945596,216,0 +170763945644,216,0 +170763945692,216,0 +170763945741,216,0 +170763945789,214,0 +170763945837,213,0 +170763945885,213,0 +170763945933,213,0 +170763945981,213,0 +170763946030,213,0 +170763946080,214,0 +170763946129,214,0 +170763946179,214,0 +170763946227,214,0 +170763946276,214,0 +170763946324,215,0 +170763946372,215,0 +170763946422,215,0 +170763946469,215,0 +170763946519,215,0 +170763946567,215,0 +170763946615,216,0 +170763946664,216,0 +170763946712,214,0 +170763946760,213,0 +170763946808,213,0 +170763946856,213,0 +170763946904,213,0 +170763946952,214,0 +170763947001,214,0 +170763947051,214,0 +170763947100,214,0 +170763947148,214,0 +170763947196,214,0 +170763947244,215,0 +170763947292,215,0 +170763947340,215,0 +170763947388,215,0 +170763947438,216,0 +170763947485,216,0 +170763947533,216,0 +170763947581,216,0 +170763947631,215,0 +170763947679,214,0 +170763947727,213,0 +170763947775,213,0 +170763947822,214,0 +170763947872,214,0 +170763947919,214,0 +170763947967,214,0 +170763948015,214,0 +170763948063,215,0 +170763948111,215,0 +170763948159,215,0 +170763948207,215,0 +170763948254,215,0 +170763948302,216,0 +170763948350,216,0 +170763948398,215,0 +170763948447,216,0 +170763948495,216,0 +170763948543,215,0 +170763948591,213,0 +170763948639,213,0 +170763948687,213,0 +170763948735,213,0 +170763948782,214,0 +170763948830,214,0 +170763948878,214,0 +170763948926,214,0 +170763948974,214,0 +170763949021,215,0 +170763949071,215,0 +170763949119,215,0 +170763949167,215,0 +170763949216,215,0 +170763949264,216,0 +170763949312,216,0 +170763949362,216,0 +170763949410,216,0 +170763949457,216,0 +170763949507,214,0 +170763949555,213,0 +170763949603,213,0 +170763949652,213,0 +170763949700,213,0 +170763949750,214,0 +170763949798,214,0 +170763949846,214,0 +170763949895,214,0 +170763949943,215,0 +170763949993,215,0 +170763950041,215,0 +170763950089,215,0 +170763950137,215,0 +170763950185,215,0 +170763950232,216,0 +170763950282,216,0 +170763950330,216,0 +170763950378,215,0 +170763950427,214,0 +170763950477,213,0 +170763950525,213,0 +170763950572,213,0 +170763950620,213,0 +170763950668,214,0 +170763950716,214,0 +170763950764,214,0 +170763950812,214,0 +170763950862,214,0 +170763950909,215,0 +170763950959,215,0 +170763951007,215,0 +170763951056,215,0 +170763951104,216,0 +170763951154,216,0 +170763951203,215,0 +170763951251,216,0 +170763951299,216,0 +170763951349,216,0 +170763951398,213,0 +170763951446,213,0 +170763951496,214,0 +170763951544,214,0 +170763951593,214,0 +170763951643,214,0 +170763951692,214,0 +170763951740,214,0 +170763951788,214,0 +170763951836,215,0 +170763951884,215,0 +170763951931,215,0 +170763951979,215,0 +170763952027,215,0 +170763952075,216,0 +170763952123,216,0 +170763952171,215,0 +170763952219,216,0 +170763952267,216,0 +170763952314,213,0 +170763952362,213,0 +170763952410,214,0 +170763952458,214,0 +170763952506,214,0 +170763952554,214,0 +170763952602,214,0 +170763952651,214,0 +170763952699,214,0 +170763952749,215,0 +170763952798,215,0 +170763952846,215,0 +170763952896,215,0 +170763952944,215,0 +170763952993,215,0 +170763953041,216,0 +170763953089,216,0 +170763953138,216,0 +170763953186,216,0 +170763953236,214,0 +170763953284,213,0 +170763953333,213,0 +170763953381,214,0 +170763953430,214,0 +170763953478,214,0 +170763953528,214,0 +170763953576,214,0 +170763953626,214,0 +170763953675,215,0 +170763953725,215,0 +170763953774,216,0 +170763953822,216,0 +170763953872,216,0 +170763953920,216,0 +170763953968,216,0 +170763954015,216,0 +170763954065,216,0 +170763954113,216,0 +170763954161,214,0 +170763954210,213,0 +170763954260,213,0 +170763954307,213,0 +170763954355,214,0 +170763954403,214,0 +170763954453,214,0 +170763954501,214,0 +170763954549,214,0 +170763954598,214,0 +170763954646,215,0 +170763954694,215,0 +170763954742,215,0 +170763954792,215,0 +170763954840,215,0 +170763954887,215,0 +170763954937,216,0 +170763954985,216,0 +170763955034,216,0 +170763955084,214,0 +170763955132,213,0 +170763955180,213,0 +170763955228,214,0 +170763955277,213,0 +170763955327,213,0 +170763955376,214,0 +170763955426,214,0 +170763955474,214,0 +170763955521,215,0 +170763955569,215,0 +170763955617,215,0 +170763955667,215,0 +170763955714,215,0 +170763955762,215,0 +170763955812,215,0 +170763955860,216,0 +170763955907,216,0 +170763955957,216,0 +170763956005,216,0 +170763956053,213,0 +170763956102,213,0 +170763956150,214,0 +170763956198,214,0 +170763956246,214,0 +170763956294,214,0 +170763956342,214,0 +170763956390,215,0 +170763956438,215,0 +170763956487,215,0 +170763956536,215,0 +170763956585,215,0 +170763956633,215,0 +170763956681,216,0 +170763956729,216,0 +170763956779,216,0 +170763956827,216,0 +170763956876,216,0 +170763956926,216,0 +170763956974,214,0 +170763957022,213,0 +170763957071,213,0 +170763957119,214,0 +170763957167,214,0 +170763957215,214,0 +170763957263,214,0 +170763957312,214,0 +170763957360,214,0 +170763957408,215,0 +170763957455,215,0 +170763957503,216,0 +170763957551,215,0 +170763957599,215,0 +170763957647,216,0 +170763957694,216,0 +170763957742,216,0 +170763957790,216,0 +170763957838,216,0 +170763957888,214,0 +170763957937,213,0 +170763957985,213,0 +170763958033,213,0 +170763958081,213,0 +170763958130,214,0 +170763958180,214,0 +170763958228,214,0 +170763958276,214,0 +170763958324,214,0 +170763958372,214,0 +170763958421,215,0 +170763958469,215,0 +170763958519,215,0 +170763958567,215,0 +170763958614,215,0 +170763958664,215,0 +170763958713,216,0 +170763958763,216,0 +170763958811,214,0 +170763958860,213,0 +170763958908,213,0 +170763958958,213,0 +170763959005,213,0 +170763959055,213,0 +170763959103,213,0 +170763959151,214,0 +170763959200,214,0 +170763959248,213,0 +170763959296,214,0 +170763959344,214,0 +170763959392,214,0 +170763959440,215,0 +170763959489,215,0 +170763959539,215,0 +170763959587,215,0 +170763959635,215,0 +170763959683,216,0 +170763959731,214,0 +170763959779,213,0 +170763959828,213,0 +170763959876,213,0 +170763959924,213,0 +170763959972,213,0 +170763960020,213,0 +170763960068,214,0 +170763960116,214,0 +170763960164,214,0 +170763960211,214,0 +170763960259,214,0 +170763960307,215,0 +170763960355,215,0 +170763960403,215,0 +170763960451,215,0 +170763960499,215,0 +170763960549,216,0 +170763960598,216,0 +170763960646,216,0 +170763960694,214,0 +170763960742,213,0 +170763960792,213,0 +170763960839,213,0 +170763960889,213,0 +170763960938,213,0 +170763960986,214,0 +170763961036,214,0 +170763961085,214,0 +170763961135,214,0 +170763961183,214,0 +170763961232,215,0 +170763961280,215,0 +170763961328,215,0 +170763961378,215,0 +170763961427,215,0 +170763961477,215,0 +170763961525,216,0 +170763961574,216,0 +170763961622,213,0 +170763961670,213,0 +170763961718,213,0 +170763961767,214,0 +170763961815,214,0 +170763961865,214,0 +170763961913,214,0 +170763961962,214,0 +170763962010,215,0 +170763962058,215,0 +170763962106,215,0 +170763962154,215,0 +170763962202,215,0 +170763962250,216,0 +170763962298,216,0 +170763962346,216,0 +170763962394,216,0 +170763962442,216,0 +170763962491,216,0 +170763962539,214,0 +170763962587,213,0 +170763962636,213,0 +170763962686,214,0 +170763962734,214,0 +170763962782,214,0 +170763962829,214,0 +170763962879,215,0 +170763962927,215,0 +170763962975,215,0 +170763963024,215,0 +170763963072,215,0 +170763963120,216,0 +170763963168,216,0 +170763963218,216,0 +170763963266,216,0 +170763963315,216,0 +170763963365,216,0 +170763963413,216,0 +170763963460,214,0 +170763963510,213,0 +170763963558,213,0 +170763963607,213,0 +170763963655,214,0 +170763963703,214,0 +170763963751,214,0 +170763963799,214,0 +170763963847,214,0 +170763963895,215,0 +170763963943,215,0 +170763963991,215,0 +170763964039,215,0 +170763964087,215,0 +170763964135,215,0 +170763964184,216,0 +170763964234,216,0 +170763964283,216,0 +170763964331,216,0 +170763964379,215,0 +170763964427,213,0 +170763964475,213,0 +170763964523,213,0 +170763964571,213,0 +170763964620,214,0 +170763964668,214,0 +170763964716,214,0 +170763964764,214,0 +170763964814,214,0 +170763964863,214,0 +170763964911,214,0 +170763964959,215,0 +170763965009,215,0 +170763965056,215,0 +170763965104,215,0 +170763965152,215,0 +170763965202,215,0 +170763965250,216,0 +170763965298,217,0 +170763965346,213,0 +170763965394,213,0 +170763965442,213,0 +170763965490,214,0 +170763965538,214,0 +170763965587,214,0 +170763965635,214,0 +170763965683,214,0 +170763965731,214,0 +170763965779,214,0 +170763965827,214,0 +170763965875,215,0 +170763965923,215,0 +170763965971,215,0 +170763966019,215,0 +170763966068,215,0 +170763966118,216,0 +170763966167,216,0 +170763966217,216,0 +170763966265,213,0 +170763966313,214,0 +170763966361,214,0 +170763966408,214,0 +170763966456,214,0 +170763966506,214,0 +170763966554,214,0 +170763966602,214,0 +170763966650,214,0 +170763966699,215,0 +170763966747,215,0 +170763966795,215,0 +170763966843,215,0 +170763966891,216,0 +170763966939,215,0 +170763966987,216,0 +170763967037,216,0 +170763967085,216,0 +170763967132,216,0 +170763967180,214,0 +170763967230,213,0 +170763967279,214,0 +170763967327,214,0 +170763967375,214,0 +170763967423,214,0 +170763967473,214,0 +170763967521,214,0 +170763967568,215,0 +170763967618,215,0 +170763967666,215,0 +170763967714,215,0 +170763967763,216,0 +170763967811,216,0 +170763967859,216,0 +170763967907,216,0 +170763967957,216,0 +170763968005,216,0 +170763968053,216,0 +170763968101,214,0 +170763968149,213,0 +170763968196,214,0 +170763968244,214,0 +170763968294,214,0 +170763968342,214,0 +170763968390,214,0 +170763968437,214,0 +170763968485,215,0 +170763968533,215,0 +170763968581,216,0 +170763968629,216,0 +170763968678,216,0 +170763968726,216,0 +170763968774,216,0 +170763968821,216,0 +170763968869,216,0 +170763968917,216,0 +170763968965,216,0 +170763969013,215,0 +170763969060,213,0 +170763969108,213,0 +170763969156,213,0 +170763969204,214,0 +170763969252,214,0 +170763969300,214,0 +170763969348,214,0 +170763969397,214,0 +170763969445,215,0 +170763969495,215,0 +170763969542,215,0 +170763969590,215,0 +170763969638,215,0 +170763969686,216,0 +170763969736,215,0 +170763969784,216,0 +170763969832,216,0 +170763969879,216,0 +170763969927,216,0 +170763969977,214,0 +170763970025,213,0 +170763970074,213,0 +170763970124,214,0 +170763970172,214,0 +170763970220,214,0 +170763970269,214,0 +170763970319,215,0 +170763970367,215,0 +170763970415,215,0 +170763970464,215,0 +170763970512,215,0 +170763970562,215,0 +170763970610,215,0 +170763970658,216,0 +170763970705,216,0 +170763970755,216,0 +170763970803,216,0 +170763970852,216,0 +170763970902,214,0 +170763970950,213,0 +170763970998,213,0 +170763971047,213,0 +170763971097,214,0 +170763971146,214,0 +170763971196,214,0 +170763971245,215,0 +170763971295,215,0 +170763971343,215,0 +170763971391,215,0 +170763971439,215,0 +170763971488,215,0 +170763971538,216,0 +170763971587,216,0 +170763971635,216,0 +170763971685,216,0 +170763971734,216,0 +170763971782,216,0 +170763971830,213,0 +170763971878,213,0 +170763971928,213,0 +170763971977,213,0 +170763972025,214,0 +170763972073,214,0 +170763972122,214,0 +170763972172,214,0 +170763972221,214,0 +170763972271,215,0 +170763972320,215,0 +170763972370,215,0 +170763972418,215,0 +170763972467,216,0 +170763972517,215,0 +170763972566,216,0 +170763972614,215,0 +170763972664,216,0 +170763972712,216,0 +170763972760,214,0 +170763972809,213,0 +170763972857,213,0 +170763972905,213,0 +170763972953,213,0 +170763973001,214,0 +170763973049,214,0 +170763973097,214,0 +170763973146,214,0 +170763973196,214,0 +170763973243,215,0 +170763973291,215,0 +170763973341,215,0 +170763973389,215,0 +170763973437,215,0 +170763973485,215,0 +170763973533,216,0 +170763973581,216,0 +170763973630,216,0 +170763973678,214,0 +170763973726,213,0 +170763973774,213,0 +170763973821,213,0 +170763973869,213,0 +170763973917,214,0 +170763973965,214,0 +170763974015,214,0 +170763974063,214,0 +170763974111,214,0 +170763974159,215,0 +170763974206,215,0 +170763974254,215,0 +170763974302,215,0 +170763974350,216,0 +170763974398,216,0 +170763974448,216,0 +170763974497,216,0 +170763974547,216,0 +170763974596,214,0 +170763974644,213,0 +170763974692,213,0 +170763974741,213,0 +170763974789,213,0 +170763974839,213,0 +170763974887,214,0 +170763974936,214,0 +170763974984,214,0 +170763975032,214,0 +170763975080,214,0 +170763975130,215,0 +170763975178,215,0 +170763975226,215,0 +170763975274,215,0 +170763975322,216,0 +170763975370,216,0 +170763975417,216,0 +170763975467,216,0 +170763975515,216,0 +170763975563,213,0 +170763975611,213,0 +170763975659,213,0 +170763975707,213,0 +170763975754,213,0 +170763975802,213,0 +170763975850,213,0 +170763975898,213,0 +170763975946,214,0 +170763975994,214,0 +170763976042,215,0 +170763976090,215,0 +170763976139,215,0 +170763976187,215,0 +170763976235,216,0 +170763976283,215,0 +170763976331,216,0 +170763976379,216,0 +170763976427,216,0 +170763976475,214,0 +170763976523,213,0 +170763976571,213,0 +170763976618,213,0 +170763976666,213,0 +170763976714,213,0 +170763976763,213,0 +170763976813,214,0 +170763976863,213,0 +170763976910,214,0 +170763976958,214,0 +170763977006,214,0 +170763977054,215,0 +170763977102,215,0 +170763977150,215,0 +170763977198,215,0 +170763977248,215,0 +170763977296,216,0 +170763977344,216,0 +170763977391,214,0 +170763977439,213,0 +170763977487,213,0 +170763977535,214,0 +170763977585,213,0 +170763977633,213,0 +170763977681,213,0 +170763977728,214,0 +170763977776,214,0 +170763977824,214,0 +170763977874,215,0 +170763977922,215,0 +170763977970,215,0 +170763978018,215,0 +170763978067,215,0 +170763978115,216,0 +170763978165,216,0 +170763978214,216,0 +170763978264,216,0 +170763978312,214,0 +170763978359,213,0 +170763978407,213,0 +170763978457,213,0 +170763978506,213,0 +170763978554,213,0 +170763978602,214,0 +170763978650,214,0 +170763978700,214,0 +170763978749,214,0 +170763978799,214,0 +170763978847,215,0 +170763978895,215,0 +170763978942,215,0 +170763978990,215,0 +170763979038,216,0 +170763979086,216,0 +170763979134,216,0 +170763979182,216,0 +170763979230,216,0 +170763979278,213,0 +170763979327,213,0 +170763979375,213,0 +170763979423,213,0 +170763979471,213,0 +170763979521,214,0 +170763979570,214,0 +170763979618,214,0 +170763979667,214,0 +170763979715,214,0 +170763979765,214,0 +170763979814,215,0 +170763979862,215,0 +170763979910,215,0 +170763979958,215,0 +170763980008,215,0 +170763980057,215,0 +170763980105,216,0 +170763980153,216,0 +170763980201,214,0 +170763980249,213,0 +170763980297,213,0 +170763980346,213,0 +170763980396,213,0 +170763980445,213,0 +170763980493,213,0 +170763980541,213,0 +170763980589,214,0 +170763980637,214,0 +170763980686,214,0 +170763980736,214,0 +170763980784,215,0 +170763980833,215,0 +170763980881,215,0 +170763980929,215,0 +170763980977,215,0 +170763981027,216,0 +170763981075,216,0 +170763981122,214,0 +170763981170,213,0 +170763981220,213,0 +170763981268,213,0 +170763981316,213,0 +170763981364,213,0 +170763981413,213,0 +170763981461,214,0 +170763981509,214,0 +170763981557,214,0 +170763981605,214,0 +170763981653,215,0 +170763981701,215,0 +170763981749,215,0 +170763981797,215,0 +170763981845,216,0 +170763981894,216,0 +170763981942,215,0 +170763981990,216,0 +170763982038,216,0 +170763982086,213,0 +170763982136,213,0 +170763982183,214,0 +170763982233,214,0 +170763982281,214,0 +170763982329,214,0 +170763982377,215,0 +170763982426,215,0 +170763982476,215,0 +170763982525,215,0 +170763982574,215,0 +170763982622,215,0 +170763982672,216,0 +170763982720,216,0 +170763982768,216,0 +170763982816,216,0 +170763982864,216,0 +170763982912,216,0 +170763982960,216,0 +170763983007,213,0 +170763983055,213,0 +170763983103,213,0 +170763983151,213,0 +170763983199,214,0 +170763983247,214,0 +170763983295,214,0 +170763983343,215,0 +170763983392,215,0 +170763983440,215,0 +170763983489,215,0 +170763983537,215,0 +170763983585,215,0 +170763983633,216,0 +170763983681,215,0 +170763983731,216,0 +170763983779,216,0 +170763983827,216,0 +170763983876,216,0 +170763983924,214,0 +170763983974,213,0 +170763984022,213,0 +170763984070,213,0 +170763984119,214,0 +170763984167,214,0 +170763984215,214,0 +170763984263,214,0 +170763984312,214,0 +170763984362,214,0 +170763984411,214,0 +170763984459,215,0 +170763984507,215,0 +170763984555,215,0 +170763984605,215,0 +170763984653,215,0 +170763984701,215,0 +170763984749,216,0 +170763984797,216,0 +170763984845,214,0 +170763984893,213,0 +170763984942,213,0 +170763984990,213,0 +170763985040,214,0 +170763985087,214,0 +170763985135,214,0 +170763985185,214,0 +170763985233,214,0 +170763985281,214,0 +170763985330,215,0 +170763985380,215,0 +170763985428,215,0 +170763985476,215,0 +170763985524,216,0 +170763985572,216,0 +170763985620,216,0 +170763985667,216,0 +170763985715,216,0 +170763985763,215,0 +170763985813,213,0 +170763985861,213,0 +170763985910,213,0 +170763985958,214,0 +170763986006,214,0 +170763986056,214,0 +170763986105,214,0 +170763986153,214,0 +170763986201,214,0 +170763986249,215,0 +170763986297,215,0 +170763986345,215,0 +170763986393,215,0 +170763986441,216,0 +170763986489,216,0 +170763986538,216,0 +170763986586,216,0 +170763986634,216,0 +170763986682,216,0 +170763986730,214,0 +170763986778,214,0 +170763986827,214,0 +170763986875,214,0 +170763986923,214,0 +170763986971,214,0 +170763987021,214,0 +170763987069,214,0 +170763987117,215,0 +170763987164,215,0 +170763987212,215,0 +170763987260,215,0 +170763987308,215,0 +170763987356,216,0 +170763987404,216,0 +170763987451,216,0 +170763987501,216,0 +170763987549,216,0 +170763987597,216,0 +170763987644,214,0 +170763987692,213,0 +170763987740,213,0 +170763987790,214,0 +170763987837,214,0 +170763987885,214,0 +170763987933,214,0 +170763987981,214,0 +170763988031,215,0 +170763988080,215,0 +170763988128,215,0 +170763988176,216,0 +170763988224,215,0 +170763988272,216,0 +170763988320,216,0 +170763988368,216,0 +170763988416,216,0 +170763988464,216,0 +170763988513,216,0 +170763988563,216,0 +170763988611,213,0 +170763988659,214,0 +170763988708,214,0 +170763988758,214,0 +170763988805,214,0 +170763988853,214,0 +170763988903,215,0 +170763988953,215,0 +170763989002,215,0 +170763989050,215,0 +170763989098,216,0 +170763989146,216,0 +170763989194,214,0 +170763989243,216,0 +170763989291,216,0 +170763989341,216,0 +170763989390,216,0 +170763989438,216,0 +170763989486,216,0 +170763989534,214,0 +170763989584,213,0 +170763989631,213,0 +170763989681,214,0 +170763989729,214,0 +170763989777,214,0 +170763989825,214,0 +170763989874,214,0 +170763989924,215,0 +170763989972,215,0 +170763990021,215,0 +170763990069,215,0 +170763990117,215,0 +170763990165,216,0 +170763990213,216,0 +170763990261,216,0 +170763990308,216,0 +170763990356,216,0 +170763990406,216,0 +170763990454,214,0 +170763990503,213,0 +170763990551,213,0 +170763990599,214,0 +170763990647,214,0 +170763990695,214,0 +170763990743,214,0 +170763990792,215,0 +170763990840,214,0 +170763990888,214,0 +170763990936,215,0 +170763990984,215,0 +170763991032,215,0 +170763991082,215,0 +170763991130,215,0 +170763991179,216,0 +170763991229,216,0 +170763991277,216,0 +170763991324,216,0 +170763991372,214,0 +170763991420,213,0 +170763991468,213,0 +170763991516,213,0 +170763991564,213,0 +170763991611,213,0 +170763991661,214,0 +170763991709,214,0 +170763991757,214,0 +170763991804,214,0 +170763991852,214,0 +170763991900,214,0 +170763991948,215,0 +170763991996,215,0 +170763992044,214,0 +170763992092,215,0 +170763992139,216,0 +170763992187,215,0 +170763992235,216,0 +170763992283,216,0 +170763992331,213,0 +170763992379,213,0 +170763992426,213,0 +170763992474,213,0 +170763992522,213,0 +170763992570,213,0 +170763992618,213,0 +170763992666,214,0 +170763992714,214,0 +170763992763,214,0 +170763992813,215,0 +170763992862,215,0 +170763992912,215,0 +170763992961,215,0 +170763993011,215,0 +170763993060,215,0 +170763993108,216,0 +170763993156,216,0 +170763993206,216,0 +170763993254,213,0 +170763993302,213,0 +170763993351,213,0 +170763993401,213,0 +170763993450,213,0 +170763993498,213,0 +170763993546,213,0 +170763993594,213,0 +170763993642,214,0 +170763993691,214,0 +170763993741,214,0 +170763993790,214,0 +170763993840,215,0 +170763993888,215,0 +170763993937,215,0 +170763993987,215,0 +170763994035,215,0 +170763994083,215,0 +170763994131,216,0 +170763994178,214,0 +170763994226,213,0 +170763994274,213,0 +170763994322,213,0 +170763994370,213,0 +170763994418,213,0 +170763994466,213,0 +170763994514,214,0 +170763994562,214,0 +170763994610,214,0 +170763994660,215,0 +170763994709,215,0 +170763994757,215,0 +170763994805,215,0 +170763994853,215,0 +170763994900,216,0 +170763994948,216,0 +170763994996,216,0 +170763995044,216,0 +170763995091,214,0 +170763995139,213,0 +170763995187,213,0 +170763995235,213,0 +170763995283,213,0 +170763995331,213,0 +170763995378,213,0 +170763995426,213,0 +170763995476,214,0 +170763995524,214,0 +170763995571,214,0 +170763995619,214,0 +170763995667,215,0 +170763995715,215,0 +170763995763,215,0 +170763995811,215,0 +170763995858,215,0 +170763995906,215,0 +170763995954,216,0 +170763996002,216,0 +170763996049,214,0 +170763996097,213,0 +170763996145,213,0 +170763996193,213,0 +170763996241,213,0 +170763996289,213,0 +170763996336,213,0 +170763996384,213,0 +170763996432,213,0 +170763996480,214,0 +170763996528,214,0 +170763996576,214,0 +170763996624,214,0 +170763996671,215,0 +170763996719,215,0 +170763996767,215,0 +170763996815,215,0 +170763996862,215,0 +170763996912,215,0 +170763996960,214,0 +170763997007,213,0 +170763997055,213,0 +170763997103,213,0 +170763997151,213,0 +170763997199,214,0 +170763997247,214,0 +170763997295,214,0 +170763997343,214,0 +170763997391,214,0 +170763997438,214,0 +170763997486,215,0 +170763997534,215,0 +170763997582,215,0 +170763997630,215,0 +170763997678,215,0 +170763997726,215,0 +170763997775,216,0 +170763997824,216,0 +170763997872,216,0 +170763997922,213,0 +170763997970,213,0 +170763998018,213,0 +170763998065,213,0 +170763998113,213,0 +170763998161,213,0 +170763998209,214,0 +170763998257,214,0 +170763998305,214,0 +170763998353,214,0 +170763998400,214,0 +170763998448,215,0 +170763998496,215,0 +170763998544,215,0 +170763998593,215,0 +170763998641,215,0 +170763998689,216,0 +170763998737,216,0 +170763998785,216,0 +170763998834,214,0 +170763998882,213,0 +170763998930,213,0 +170763998977,213,0 +170763999025,213,0 +170763999073,213,0 +170763999121,213,0 +170763999170,214,0 +170763999218,214,0 +170763999266,214,0 +170763999314,214,0 +170763999362,215,0 +170763999409,215,0 +170763999457,215,0 +170763999505,215,0 +170763999553,215,0 +170763999601,215,0 +170763999648,215,0 +170763999696,216,0 +170763999744,215,0 +170763999794,213,0 +170763999842,213,0 +170763999891,213,0 +170763999939,213,0 +170763999987,213,0 +170764000035,213,0 +170764000084,213,0 +170764000132,213,0 +170764000180,213,0 +170764000228,214,0 +170764000278,214,0 +170764000326,214,0 +170764000373,214,0 +170764000423,215,0 +170764000471,215,0 +170764000520,215,0 +170764000570,215,0 +170764000618,216,0 +170764000665,216,0 +170764000713,213,0 +170764000761,213,0 +170764000809,213,0 +170764000857,213,0 +170764000905,214,0 +170764000953,214,0 +170764001002,214,0 +170764001050,214,0 +170764001098,214,0 +170764001146,214,0 +170764001193,214,0 +170764001241,214,0 +170764001289,214,0 +170764001337,215,0 +170764001385,215,0 +170764001432,215,0 +170764001480,215,0 +170764001528,215,0 +170764001576,215,0 +170764001624,214,0 +170764001672,213,0 +170764001720,213,0 +170764001767,213,0 +170764001815,213,0 +170764001863,214,0 +170764001911,214,0 +170764001959,214,0 +170764002006,214,0 +170764002054,215,0 +170764002102,215,0 +170764002150,215,0 +170764002198,215,0 +170764002247,215,0 +170764002295,216,0 +170764002343,216,0 +170764002390,216,0 +170764002438,216,0 +170764002486,216,0 +170764002534,215,0 +170764002581,213,0 +170764002629,214,0 +170764002677,213,0 +170764002725,214,0 +170764002773,214,0 +170764002821,214,0 +170764002869,215,0 +170764002916,215,0 +170764002964,215,0 +170764003012,215,0 +170764003060,215,0 +170764003108,216,0 +170764003156,216,0 +170764003204,216,0 +170764003251,216,0 +170764003299,216,0 +170764003347,216,0 +170764003395,216,0 +170764003443,215,0 +170764003490,214,0 +170764003538,213,0 +170764003586,214,0 +170764003634,214,0 +170764003682,214,0 +170764003730,214,0 +170764003778,214,0 +170764003827,215,0 +170764003875,215,0 +170764003923,215,0 +170764003971,215,0 +170764004020,215,0 +170764004068,215,0 +170764004116,216,0 +170764004164,216,0 +170764004212,216,0 +170764004260,216,0 +170764004309,216,0 +170764004357,215,0 +170764004405,214,0 +170764004453,213,0 +170764004501,213,0 +170764004551,213,0 +170764004600,214,0 +170764004650,214,0 +170764004698,214,0 +170764004746,214,0 +170764004795,214,0 +170764004843,215,0 +170764004891,215,0 +170764004939,215,0 +170764004987,215,0 +170764005035,215,0 +170764005084,216,0 +170764005134,216,0 +170764005181,216,0 +170764005229,216,0 +170764005277,216,0 +170764005325,214,0 +170764005373,213,0 +170764005421,213,0 +170764005470,213,0 +170764005518,214,0 +170764005566,214,0 +170764005614,214,0 +170764005662,214,0 +170764005709,214,0 +170764005757,214,0 +170764005807,214,0 +170764005855,214,0 +170764005903,215,0 +170764005951,215,0 +170764006000,216,0 +170764006048,216,0 +170764006097,216,0 +170764006145,216,0 +170764006193,216,0 +170764006243,215,0 +170764006292,213,0 +170764006340,213,0 +170764006388,213,0 +170764006437,214,0 +170764006485,214,0 +170764006533,214,0 +170764006583,214,0 +170764006631,214,0 +170764006678,214,0 +170764006726,214,0 +170764006774,215,0 +170764006822,214,0 +170764006870,215,0 +170764006918,215,0 +170764006966,216,0 +170764007014,216,0 +170764007062,216,0 +170764007111,216,0 +170764007159,216,0 +170764007207,213,0 +170764007255,214,0 +170764007303,214,0 +170764007351,214,0 +170764007399,214,0 +170764007446,214,0 +170764007494,214,0 +170764007542,214,0 +170764007592,214,0 +170764007640,215,0 +170764007688,215,0 +170764007736,215,0 +170764007785,215,0 +170764007833,216,0 +170764007883,216,0 +170764007930,216,0 +170764007980,216,0 +170764008030,216,0 +170764008078,216,0 +170764008127,213,0 +170764008175,213,0 +170764008225,214,0 +170764008273,214,0 +170764008321,214,0 +170764008370,214,0 +170764008420,214,0 +170764008468,215,0 +170764008516,215,0 +170764008563,215,0 +170764008613,215,0 +170764008661,215,0 +170764008709,216,0 +170764008756,216,0 +170764008806,215,0 +170764008854,216,0 +170764008902,216,0 +170764008950,216,0 +170764008997,216,0 +170764009047,214,0 +170764009096,213,0 +170764009144,213,0 +170764009192,214,0 +170764009240,214,0 +170764009288,214,0 +170764009338,214,0 +170764009387,214,0 +170764009437,215,0 +170764009487,215,0 +170764009534,215,0 +170764009582,215,0 +170764009630,215,0 +170764009678,216,0 +170764009726,216,0 +170764009774,216,0 +170764009822,214,0 +170764009871,215,0 +170764009919,216,0 +170764009967,214,0 +170764010015,213,0 +170764010063,213,0 +170764010111,213,0 +170764010158,213,0 +170764010208,213,0 +170764010256,214,0 +170764010304,214,0 +170764010352,214,0 +170764010400,214,0 +170764010448,214,0 +170764010497,215,0 +170764010545,215,0 +170764010593,215,0 +170764010641,215,0 +170764010689,215,0 +170764010737,215,0 +170764010785,216,0 +170764010833,216,0 +170764010881,216,0 +170764010930,213,0 +170764010978,213,0 +170764011028,213,0 +170764011076,213,0 +170764011125,213,0 +170764011173,213,0 +170764011221,214,0 +170764011269,214,0 +170764011317,214,0 +170764011367,214,0 +170764011414,214,0 +170764011464,215,0 +170764011512,215,0 +170764011560,215,0 +170764011609,215,0 +170764011659,215,0 +170764011708,215,0 +170764011756,216,0 +170764011806,215,0 +170764011855,213,0 +170764011903,213,0 +170764011951,213,0 +170764011999,213,0 +170764012047,213,0 +170764012094,213,0 +170764012142,214,0 +170764012190,214,0 +170764012238,214,0 +170764012286,214,0 +170764012334,214,0 +170764012382,215,0 +170764012429,215,0 +170764012477,215,0 +170764012525,215,0 +170764012573,216,0 +170764012622,216,0 +170764012670,216,0 +170764012718,216,0 +170764012768,214,0 +170764012817,213,0 +170764012867,213,0 +170764012915,213,0 +170764012962,213,0 +170764013010,213,0 +170764013060,213,0 +170764013108,214,0 +170764013157,214,0 +170764013207,214,0 +170764013254,214,0 +170764013302,214,0 +170764013350,215,0 +170764013398,215,0 +170764013446,215,0 +170764013494,215,0 +170764013542,215,0 +170764013590,216,0 +170764013638,216,0 +170764013686,214,0 +170764013734,213,0 +170764013782,213,0 +170764013829,213,0 +170764013877,213,0 +170764013925,213,0 +170764013975,213,0 +170764014024,214,0 +170764014072,214,0 +170764014120,214,0 +170764014168,214,0 +170764014216,214,0 +170764014264,215,0 +170764014312,215,0 +170764014361,215,0 +170764014411,215,0 +170764014460,215,0 +170764014508,215,0 +170764014556,216,0 +170764014604,213,0 +170764014652,213,0 +170764014702,213,0 +170764014750,213,0 +170764014798,213,0 +170764014847,213,0 +170764014895,213,0 +170764014945,214,0 +170764014992,214,0 +170764015040,214,0 +170764015088,215,0 +170764015136,215,0 +170764015184,215,0 +170764015232,215,0 +170764015280,215,0 +170764015330,215,0 +170764015377,215,0 +170764015425,215,0 +170764015475,216,0 +170764015523,214,0 +170764015572,213,0 +170764015620,213,0 +170764015668,213,0 +170764015716,213,0 +170764015764,213,0 +170764015813,214,0 +170764015861,213,0 +170764015911,214,0 +170764015959,214,0 +170764016007,214,0 +170764016056,214,0 +170764016106,215,0 +170764016155,215,0 +170764016203,215,0 +170764016251,215,0 +170764016299,215,0 +170764016347,215,0 +170764016397,216,0 +170764016444,215,0 +170764016494,213,0 +170764016542,213,0 +170764016590,213,0 +170764016638,213,0 +170764016687,213,0 +170764016735,213,0 +170764016785,213,0 +170764016833,213,0 +170764016881,214,0 +170764016930,214,0 +170764016978,214,0 +170764017026,214,0 +170764017074,214,0 +170764017123,215,0 +170764017171,215,0 +170764017221,215,0 +170764017270,215,0 +170764017320,216,0 +170764017368,216,0 +170764017416,213,0 +170764017464,213,0 +170764017513,213,0 +170764017561,213,0 +170764017610,213,0 +170764017660,213,0 +170764017708,213,0 +170764017757,213,0 +170764017805,214,0 +170764017853,214,0 +170764017903,214,0 +170764017952,214,0 +170764018000,215,0 +170764018048,215,0 +170764018096,215,0 +170764018144,215,0 +170764018192,216,0 +170764018240,216,0 +170764018288,215,0 +170764018336,213,0 +170764018384,213,0 +170764018432,213,0 +170764018480,213,0 +170764018527,214,0 +170764018575,214,0 +170764018623,214,0 +170764018671,214,0 +170764018719,214,0 +170764018767,214,0 +170764018815,215,0 +170764018863,215,0 +170764018910,215,0 +170764018958,215,0 +170764019006,215,0 +170764019055,215,0 +170764019103,216,0 +170764019151,216,0 +170764019199,216,0 +170764019247,214,0 +170764019296,213,0 +170764019344,213,0 +170764019394,213,0 +170764019442,213,0 +170764019490,214,0 +170764019538,214,0 +170764019586,214,0 +170764019633,213,0 +170764019681,214,0 +170764019729,215,0 +170764019779,215,0 +170764019828,215,0 +170764019876,215,0 +170764019924,215,0 +170764019972,215,0 +170764020020,215,0 +170764020068,215,0 +170764020117,216,0 +170764020167,215,0 +170764020215,213,0 +170764020265,213,0 +170764020314,213,0 +170764020362,213,0 +170764020410,213,0 +170764020458,214,0 +170764020507,214,0 +170764020557,214,0 +170764020606,214,0 +170764020656,214,0 +170764020704,214,0 +170764020752,215,0 +170764020801,215,0 +170764020849,215,0 +170764020897,215,0 +170764020945,215,0 +170764020993,215,0 +170764021042,215,0 +170764021090,215,0 +170764021138,213,0 +170764021186,213,0 +170764021234,213,0 +170764021282,213,0 +170764021330,213,0 +170764021380,213,0 +170764021429,213,0 +170764021479,214,0 +170764021528,214,0 +170764021577,214,0 +170764021627,214,0 +170764021675,214,0 +170764021723,215,0 +170764021771,215,0 +170764021819,215,0 +170764021868,215,0 +170764021918,215,0 +170764021967,216,0 +170764022015,215,0 +170764022063,213,0 +170764022111,213,0 +170764022159,213,0 +170764022209,213,0 +170764022258,213,0 +170764022306,213,0 +170764022354,213,0 +170764022403,213,0 +170764022451,213,0 +170764022499,213,0 +170764022549,214,0 +170764022596,214,0 +170764022644,214,0 +170764022694,215,0 +170764022742,215,0 +170764022790,215,0 +170764022838,215,0 +170764022885,215,0 +170764022933,215,0 +170764022981,213,0 +170764023031,213,0 +170764023079,213,0 +170764023128,213,0 +170764023176,213,0 +170764023224,214,0 +170764023272,214,0 +170764023320,214,0 +170764023369,214,0 +170764023417,215,0 +170764023465,215,0 +170764023513,215,0 +170764023563,215,0 +170764023612,215,0 +170764023662,216,0 +170764023709,215,0 +170764023757,215,0 +170764023805,215,0 +170764023853,215,0 +170764023901,213,0 +170764023950,213,0 +170764024000,213,0 +170764024048,213,0 +170764024096,214,0 +170764024144,214,0 +170764024191,214,0 +170764024241,214,0 +170764024290,214,0 +170764024340,215,0 +170764024389,215,0 +170764024439,215,0 +170764024488,215,0 +170764024536,215,0 +170764024584,215,0 +170764024632,215,0 +170764024682,216,0 +170764024732,215,0 +170764024779,215,0 +170764024827,213,0 +170764024875,213,0 +170764024923,213,0 +170764024973,213,0 +170764025021,214,0 +170764025070,214,0 +170764025118,214,0 +170764025166,214,0 +170764025216,214,0 +170764025264,214,0 +170764025313,215,0 +170764025361,215,0 +170764025409,215,0 +170764025457,215,0 +170764025505,215,0 +170764025553,215,0 +170764025601,216,0 +170764025650,216,0 +170764025698,215,0 +170764025748,213,0 +170764025795,213,0 +170764025845,213,0 +170764025894,213,0 +170764025942,213,0 +170764025990,213,0 +170764026038,213,0 +170764026086,214,0 +170764026134,214,0 +170764026182,214,0 +170764026230,214,0 +170764026278,214,0 +170764026326,214,0 +170764026373,215,0 +170764026423,215,0 +170764026472,215,0 +170764026520,216,0 +170764026570,216,0 +170764026618,216,0 +170764026666,214,0 +170764026715,213,0 +170764026765,213,0 +170764026814,213,0 +170764026862,214,0 +170764026910,214,0 +170764026960,214,0 +170764027008,214,0 +170764027056,214,0 +170764027104,214,0 +170764027152,215,0 +170764027200,215,0 +170764027249,215,0 +170764027297,215,0 +170764027345,215,0 +170764027393,215,0 +170764027441,216,0 +170764027489,216,0 +170764027538,216,0 +170764027586,214,0 +170764027634,213,0 +170764027683,213,0 +170764027731,213,0 +170764027779,213,0 +170764027827,214,0 +170764027875,214,0 +170764027923,214,0 +170764027973,214,0 +170764028022,214,0 +170764028070,215,0 +170764028118,215,0 +170764028166,215,0 +170764028214,215,0 +170764028262,216,0 +170764028310,216,0 +170764028359,215,0 +170764028409,216,0 +170764028458,216,0 +170764028506,213,0 +170764028554,213,0 +170764028602,213,0 +170764028651,214,0 +170764028699,214,0 +170764028747,214,0 +170764028796,214,0 +170764028844,214,0 +170764028892,215,0 +170764028940,215,0 +170764028988,215,0 +170764029037,215,0 +170764029085,215,0 +170764029134,215,0 +170764029182,216,0 +170764029230,216,0 +170764029278,216,0 +170764029327,216,0 +170764029375,215,0 +170764029423,214,0 +170764029471,213,0 +170764029520,213,0 +170764029568,213,0 +170764029616,213,0 +170764029664,214,0 +170764029714,213,0 +170764029761,214,0 +170764029811,214,0 +170764029858,214,0 +170764029906,215,0 +170764029954,215,0 +170764030002,215,0 +170764030052,215,0 +170764030101,215,0 +170764030149,215,0 +170764030197,216,0 +170764030247,216,0 +170764030295,216,0 +170764030343,214,0 +170764030392,213,0 +170764030440,213,0 +170764030488,213,0 +170764030538,213,0 +170764030587,213,0 +170764030635,214,0 +170764030685,214,0 +170764030734,214,0 +170764030782,214,0 +170764030832,214,0 +170764030880,215,0 +170764030929,215,0 +170764030977,215,0 +170764031025,215,0 +170764031073,215,0 +170764031123,215,0 +170764031172,216,0 +170764031220,216,0 +170764031268,213,0 +170764031318,213,0 +170764031366,213,0 +170764031413,213,0 +170764031461,213,0 +170764031509,213,0 +170764031559,214,0 +170764031607,214,0 +170764031655,214,0 +170764031704,214,0 +170764031754,215,0 +170764031803,214,0 +170764031851,215,0 +170764031901,215,0 +170764031950,215,0 +170764031998,215,0 +170764032048,215,0 +170764032096,216,0 +170764032145,215,0 +170764032195,213,0 +170764032244,213,0 +170764032294,213,0 +170764032342,213,0 +170764032390,213,0 +170764032438,213,0 +170764032487,213,0 +170764032535,213,0 +170764032583,213,0 +170764032631,214,0 +170764032679,214,0 +170764032727,214,0 +170764032775,214,0 +170764032823,215,0 +170764032870,215,0 +170764032918,215,0 +170764032966,215,0 +170764033014,215,0 +170764033062,216,0 +170764033109,213,0 +170764033157,213,0 +170764033205,213,0 +170764033253,213,0 +170764033301,213,0 +170764033351,213,0 +170764033400,213,0 +170764033448,214,0 +170764033496,214,0 +170764033544,214,0 +170764033592,214,0 +170764033639,214,0 +170764033687,215,0 +170764033735,215,0 +170764033784,215,0 +170764033832,215,0 +170764033882,215,0 +170764033931,215,0 +170764033981,216,0 +170764034029,214,0 +170764034077,213,0 +170764034125,213,0 +170764034174,213,0 +170764034222,213,0 +170764034272,213,0 +170764034320,214,0 +170764034368,214,0 +170764034417,214,0 +170764034465,214,0 +170764034513,214,0 +170764034561,214,0 +170764034609,214,0 +170764034657,215,0 +170764034705,215,0 +170764034755,215,0 +170764034804,215,0 +170764034852,216,0 +170764034902,216,0 +170764034951,213,0 +170764035001,213,0 +170764035050,213,0 +170764035100,213,0 +170764035148,214,0 +170764035196,214,0 +170764035244,214,0 +170764035293,214,0 +170764035343,215,0 +170764035392,215,0 +170764035440,215,0 +170764035488,215,0 +170764035536,215,0 +170764035584,215,0 +170764035632,216,0 +170764035680,216,0 +170764035728,216,0 +170764035778,215,0 +170764035826,215,0 +170764035875,213,0 +170764035923,213,0 +170764035971,213,0 +170764036020,213,0 +170764036070,214,0 +170764036119,214,0 +170764036169,214,0 +170764036217,214,0 +170764036265,214,0 +170764036314,215,0 +170764036362,215,0 +170764036412,215,0 +170764036460,215,0 +170764036508,216,0 +170764036556,215,0 +170764036604,216,0 +170764036652,216,0 +170764036700,216,0 +170764036748,216,0 +170764036796,213,0 +170764036845,213,0 +170764036894,213,0 +170764036942,213,0 +170764036990,213,0 +170764037038,214,0 +170764037086,214,0 +170764037134,214,0 +170764037184,214,0 +170764037232,214,0 +170764037280,214,0 +170764037329,215,0 +170764037377,215,0 +170764037425,215,0 +170764037472,215,0 +170764037520,215,0 +170764037570,215,0 +170764037618,216,0 +170764037666,215,0 +170764037714,213,0 +170764037761,213,0 +170764037809,213,0 +170764037857,213,0 +170764037905,213,0 +170764037954,214,0 +170764038002,214,0 +170764038050,214,0 +170764038098,214,0 +170764038146,214,0 +170764038194,214,0 +170764038242,215,0 +170764038289,215,0 +170764038339,215,0 +170764038387,215,0 +170764038435,216,0 +170764038482,215,0 +170764038530,215,0 +170764038578,216,0 +170764038626,214,0 +170764038674,213,0 +170764038722,213,0 +170764038770,213,0 +170764038818,214,0 +170764038866,214,0 +170764038913,214,0 +170764038961,214,0 +170764039009,214,0 +170764039057,214,0 +170764039105,214,0 +170764039153,214,0 +170764039201,214,0 +170764039248,215,0 +170764039296,215,0 +170764039344,215,0 +170764039394,215,0 +170764039442,216,0 +170764039491,216,0 +170764039539,215,0 +170764039587,213,0 +170764039634,213,0 +170764039682,213,0 +170764039730,213,0 +170764039778,213,0 +170764039827,213,0 +170764039875,213,0 +170764039923,214,0 +170764039971,214,0 +170764040019,214,0 +170764040067,214,0 +170764040115,215,0 +170764040164,215,0 +170764040212,215,0 +170764040260,215,0 +170764040307,215,0 +170764040355,216,0 +170764040403,215,0 +170764040453,214,0 +170764040502,213,0 +170764040552,213,0 +170764040600,213,0 +170764040647,213,0 +170764040695,213,0 +170764040743,213,0 +170764040791,213,0 +170764040839,213,0 +170764040887,214,0 +170764040936,214,0 +170764040984,214,0 +170764041032,215,0 +170764041080,215,0 +170764041129,215,0 +170764041177,215,0 +170764041225,215,0 +170764041273,217,0 +170764041321,216,0 +170764041369,214,0 +170764041416,213,0 +170764041464,213,0 +170764041512,213,0 +170764041560,213,0 +170764041608,213,0 +170764041656,213,0 +170764041704,213,0 +170764041752,214,0 +170764041799,214,0 +170764041847,214,0 +170764041897,214,0 +170764041945,215,0 +170764041992,215,0 +170764042040,215,0 +170764042088,215,0 +170764042138,215,0 +170764042185,215,0 +170764042233,216,0 +170764042281,215,0 +170764042329,213,0 +170764042377,213,0 +170764042425,213,0 +170764042473,213,0 +170764042520,213,0 +170764042570,213,0 +170764042618,213,0 +170764042667,214,0 +170764042715,214,0 +170764042765,214,0 +170764042814,214,0 +170764042864,215,0 +170764042912,215,0 +170764042961,215,0 +170764043011,215,0 +170764043059,215,0 +170764043107,215,0 +170764043154,215,0 +170764043204,214,0 +170764043252,213,0 +170764043300,213,0 +170764043349,213,0 +170764043397,213,0 +170764043447,213,0 +170764043496,214,0 +170764043544,214,0 +170764043594,214,0 +170764043643,214,0 +170764043691,215,0 +170764043739,215,0 +170764043789,215,0 +170764043837,215,0 +170764043885,215,0 +170764043934,215,0 +170764043982,215,0 +170764044030,215,0 +170764044078,216,0 +170764044126,213,0 +170764044174,213,0 +170764044222,213,0 +170764044270,213,0 +170764044319,213,0 +170764044367,213,0 +170764044415,214,0 +170764044465,214,0 +170764044512,214,0 +170764044560,214,0 +170764044608,214,0 +170764044656,214,0 +170764044704,214,0 +170764044752,215,0 +170764044802,215,0 +170764044851,215,0 +170764044899,215,0 +170764044949,215,0 +170764044996,216,0 +170764045044,214,0 +170764045092,213,0 +170764045140,213,0 +170764045190,213,0 +170764045238,213,0 +170764045286,213,0 +170764045334,213,0 +170764045381,214,0 +170764045429,214,0 +170764045479,214,0 +170764045528,214,0 +170764045576,214,0 +170764045626,215,0 +170764045674,215,0 +170764045722,215,0 +170764045770,215,0 +170764045818,215,0 +170764045866,215,0 +170764045915,215,0 +170764045965,214,0 +170764046013,213,0 +170764046061,213,0 +170764046109,213,0 +170764046156,213,0 +170764046204,213,0 +170764046252,213,0 +170764046302,213,0 +170764046350,213,0 +170764046398,214,0 +170764046447,214,0 +170764046495,215,0 +170764046543,214,0 +170764046591,215,0 +170764046640,215,0 +170764046688,214,0 +170764046736,215,0 +170764046786,215,0 +170764046835,216,0 +170764046883,213,0 +170764046933,213,0 +170764046981,213,0 +170764047030,213,0 +170764047078,213,0 +170764047126,213,0 +170764047174,214,0 +170764047223,214,0 +170764047272,214,0 +170764047321,214,0 +170764047369,215,0 +170764047417,215,0 +170764047465,215,0 +170764047513,215,0 +170764047561,215,0 +170764047609,215,0 +170764047657,216,0 +170764047706,216,0 +170764047756,216,0 +170764047804,213,0 +170764047852,213,0 +170764047899,213,0 +170764047947,213,0 +170764047997,214,0 +170764048045,214,0 +170764048094,214,0 +170764048142,214,0 +170764048190,215,0 +170764048240,215,0 +170764048289,215,0 +170764048339,216,0 +170764048387,216,0 +170764048435,216,0 +170764048483,216,0 +170764048532,216,0 +170764048581,216,0 +170764048629,215,0 +170764048677,214,0 +170764048727,213,0 +170764048775,213,0 +170764048823,213,0 +170764048870,213,0 +170764048920,214,0 +170764048968,214,0 +170764049016,214,0 +170764049064,214,0 +170764049112,214,0 +170764049160,215,0 +170764049209,215,0 +170764049257,215,0 +170764049306,215,0 +170764049354,216,0 +170764049402,216,0 +170764049450,216,0 +170764049500,216,0 +170764049548,216,0 +170764049596,213,0 +170764049643,213,0 +170764049691,213,0 +170764049739,213,0 +170764049787,213,0 +170764049835,213,0 +170764049885,214,0 +170764049932,214,0 +170764049980,214,0 +170764050028,214,0 +170764050076,215,0 +170764050124,215,0 +170764050174,215,0 +170764050222,215,0 +170764050271,215,0 +170764050319,215,0 +170764050367,216,0 +170764050415,216,0 +170764050462,213,0 +170764050510,213,0 +170764050558,213,0 +170764050606,213,0 +170764050654,213,0 +170764050702,214,0 +170764050750,213,0 +170764050799,214,0 +170764050849,214,0 +170764050897,214,0 +170764050944,215,0 +170764050992,215,0 +170764051040,215,0 +170764051090,215,0 +170764051139,215,0 +170764051187,215,0 +170764051235,215,0 +170764051283,215,0 +170764051330,216,0 +170764051378,213,0 +170764051426,213,0 +170764051474,213,0 +170764051522,213,0 +170764051570,214,0 +170764051617,214,0 +170764051665,214,0 +170764051713,214,0 +170764051761,214,0 +170764051809,214,0 +170764051857,215,0 +170764051905,215,0 +170764051952,215,0 +170764052000,215,0 +170764052048,215,0 +170764052096,215,0 +170764052144,216,0 +170764052192,216,0 +170764052239,215,0 +170764052287,214,0 +170764052337,213,0 +170764052385,213,0 +170764052433,213,0 +170764052480,213,0 +170764052530,213,0 +170764052578,214,0 +170764052626,214,0 +170764052674,214,0 +170764052722,214,0 +170764052770,214,0 +170764052819,215,0 +170764052867,215,0 +170764052915,215,0 +170764052963,215,0 +170764053011,215,0 +170764053061,215,0 +170764053109,216,0 +170764053157,215,0 +170764053204,213,0 +170764053254,213,0 +170764053302,213,0 +170764053351,213,0 +170764053399,214,0 +170764053447,214,0 +170764053495,215,0 +170764053543,214,0 +170764053592,215,0 +170764053640,215,0 +170764053690,215,0 +170764053739,215,0 +170764053787,216,0 +170764053835,216,0 +170764053883,216,0 +170764053933,216,0 +170764053981,216,0 +170764054028,216,0 +170764054076,213,0 +170764054124,213,0 +170764054172,213,0 +170764054222,214,0 +170764054271,214,0 +170764054319,214,0 +170764054367,214,0 +170764054415,214,0 +170764054465,215,0 +170764054514,215,0 +170764054562,215,0 +170764054610,216,0 +170764054660,216,0 +170764054708,216,0 +170764054756,216,0 +170764054805,216,0 +170764054853,216,0 +170764054902,216,0 +170764054950,215,0 +170764054998,213,0 +170764055048,213,0 +170764055096,213,0 +170764055143,214,0 +170764055191,214,0 +170764055241,214,0 +170764055289,214,0 +170764055337,215,0 +170764055384,215,0 +170764055434,215,0 +170764055483,215,0 +170764055531,216,0 +170764055579,216,0 +170764055627,216,0 +170764055675,216,0 +170764055723,216,0 +170764055771,216,0 +170764055819,216,0 +170764055868,214,0 +170764055918,213,0 +170764055967,213,0 +170764056015,213,0 +170764056063,214,0 +170764056111,214,0 +170764056159,214,0 +170764056207,214,0 +170764056256,215,0 +170764056304,215,0 +170764056352,215,0 +170764056400,215,0 +170764056448,215,0 +170764056496,215,0 +170764056544,216,0 +170764056591,215,0 +170764056639,216,0 +170764056687,216,0 +170764056735,215,0 +170764056783,213,0 +170764056832,213,0 +170764056880,213,0 +170764056928,214,0 +170764056975,214,0 +170764057023,214,0 +170764057071,214,0 +170764057119,214,0 +170764057167,214,0 +170764057215,214,0 +170764057263,214,0 +170764057310,215,0 +170764057358,215,0 +170764057406,215,0 +170764057456,215,0 +170764057505,216,0 +170764057553,216,0 +170764057601,215,0 +170764057649,213,0 +170764057698,213,0 +170764057746,213,0 +170764057794,213,0 +170764057842,214,0 +170764057890,213,0 +170764057938,213,0 +170764057986,213,0 +170764058035,214,0 +170764058083,214,0 +170764058131,215,0 +170764058179,215,0 +170764058227,215,0 +170764058275,215,0 +170764058323,215,0 +170764058371,215,0 +170764058419,216,0 +170764058468,216,0 +170764058516,215,0 +170764058564,214,0 +170764058614,213,0 +170764058661,213,0 +170764058709,213,0 +170764058757,213,0 +170764058805,213,0 +170764058853,213,0 +170764058903,213,0 +170764058951,214,0 +170764058998,214,0 +170764059046,214,0 +170764059094,214,0 +170764059142,215,0 +170764059190,215,0 +170764059238,215,0 +170764059286,215,0 +170764059334,215,0 +170764059382,215,0 +170764059429,215,0 +170764059477,213,0 +170764059525,213,0 +170764059573,213,0 +170764059621,213,0 +170764059669,213,0 +170764059718,213,0 +170764059766,214,0 +170764059814,214,0 +170764059862,214,0 +170764059910,214,0 +170764059959,214,0 +170764060007,214,0 +170764060055,215,0 +170764060102,215,0 +170764060150,215,0 +170764060198,215,0 +170764060246,215,0 +170764060295,215,0 +170764060343,214,0 +170764060391,213,0 +170764060439,213,0 +170764060487,214,0 +170764060535,214,0 +170764060583,214,0 +170764060630,214,0 +170764060678,215,0 +170764060728,215,0 +170764060776,215,0 +170764060825,215,0 +170764060873,215,0 +170764060922,216,0 +170764060970,215,0 +170764061018,216,0 +170764061066,216,0 +170764061114,216,0 +170764061162,216,0 +170764061210,215,0 +170764061259,213,0 +170764061308,214,0 +170764061357,214,0 +170764061404,214,0 +170764061452,214,0 +170764061500,214,0 +170764061548,214,0 +170764061596,215,0 +170764061646,215,0 +170764061694,215,0 +170764061742,215,0 +170764061789,215,0 +170764061837,215,0 +170764061885,215,0 +170764061933,216,0 +170764061981,215,0 +170764062029,216,0 +170764062077,216,0 +170764062125,214,0 +170764062173,213,0 +170764062221,213,0 +170764062269,213,0 +170764062316,214,0 +170764062364,214,0 +170764062412,213,0 +170764062460,214,0 +170764062508,214,0 +170764062556,214,0 +170764062603,214,0 +170764062653,215,0 +170764062701,215,0 +170764062749,215,0 +170764062796,215,0 +170764062846,215,0 +170764062895,216,0 +170764062943,216,0 +170764062991,215,0 +170764063039,213,0 +170764063087,213,0 +170764063135,213,0 +170764063183,213,0 +170764063232,214,0 +170764063280,214,0 +170764063328,214,0 +170764063376,214,0 +170764063424,214,0 +170764063471,214,0 +170764063519,215,0 +170764063567,215,0 +170764063615,215,0 +170764063663,215,0 +170764063712,215,0 +170764063760,215,0 +170764063808,215,0 +170764063856,215,0 +170764063903,215,0 +170764063951,213,0 +170764063999,213,0 +170764064049,213,0 +170764064097,214,0 +170764064144,213,0 +170764064194,214,0 +170764064243,214,0 +170764064291,214,0 +170764064339,214,0 +170764064387,214,0 +170764064437,215,0 +170764064487,215,0 +170764064536,215,0 +170764064584,215,0 +170764064633,215,0 +170764064683,215,0 +170764064731,216,0 +170764064779,216,0 +170764064827,214,0 +170764064876,213,0 +170764064926,213,0 +170764064975,213,0 +170764065025,214,0 +170764065072,214,0 +170764065122,214,0 +170764065170,214,0 +170764065218,214,0 +170764065267,214,0 +170764065315,215,0 +170764065363,215,0 +170764065411,215,0 +170764065459,215,0 +170764065507,216,0 +170764065555,216,0 +170764065604,216,0 +170764065654,216,0 +170764065702,215,0 +170764065749,213,0 +170764065799,213,0 +170764065847,214,0 +170764065895,214,0 +170764065943,214,0 +170764065991,214,0 +170764066038,214,0 +170764066086,214,0 +170764066136,215,0 +170764066185,215,0 +170764066233,216,0 +170764066281,215,0 +170764066329,216,0 +170764066377,216,0 +170764066425,216,0 +170764066475,216,0 +170764066523,216,0 +170764066571,216,0 +170764066618,213,0 +170764066666,213,0 +170764066716,213,0 +170764066764,213,0 +170764066812,214,0 +170764066860,214,0 +170764066907,214,0 +170764066957,215,0 +170764067007,215,0 +170764067056,215,0 +170764067104,215,0 +170764067152,216,0 +170764067201,216,0 +170764067249,216,0 +170764067297,216,0 +170764067345,216,0 +170764067395,216,0 +170764067443,216,0 +170764067490,214,0 +170764067540,213,0 +170764067589,213,0 +170764067637,214,0 +170764067685,214,0 +170764067733,214,0 +170764067783,214,0 +170764067832,213,0 +170764067880,215,0 +170764067929,215,0 +170764067979,215,0 +170764068027,215,0 +170764068076,215,0 +170764068124,215,0 +170764068174,215,0 +170764068223,215,0 +170764068271,216,0 +170764068319,216,0 +170764068367,215,0 +170764068416,213,0 +170764068464,213,0 +170764068512,213,0 +170764068560,213,0 +170764068609,214,0 +170764068657,214,0 +170764068705,214,0 +170764068754,214,0 +170764068802,214,0 +170764068852,214,0 +170764068899,214,0 +170764068947,215,0 +170764068995,215,0 +170764069043,215,0 +170764069091,215,0 +170764069139,215,0 +170764069187,216,0 +170764069235,215,0 +170764069285,213,0 +170764069332,213,0 +170764069382,213,0 +170764069431,213,0 +170764069480,213,0 +170764069527,213,0 +170764069577,214,0 +170764069626,214,0 +170764069674,214,0 +170764069724,214,0 +170764069772,215,0 +170764069820,215,0 +170764069868,215,0 +170764069917,215,0 +170764069965,216,0 +170764070015,215,0 +170764070063,216,0 +170764070111,215,0 +170764070158,214,0 +170764070206,213,0 +170764070254,213,0 +170764070302,213,0 +170764070350,213,0 +170764070398,213,0 +170764070445,214,0 +170764070493,214,0 +170764070541,214,0 +170764070589,214,0 +170764070637,214,0 +170764070685,214,0 +170764070733,215,0 +170764070780,215,0 +170764070828,215,0 +170764070876,215,0 +170764070924,215,0 +170764070973,215,0 +170764071021,215,0 +170764071069,213,0 +170764071119,213,0 +170764071166,213,0 +170764071216,213,0 +170764071265,214,0 +170764071313,214,0 +170764071361,213,0 +170764071409,214,0 +170764071457,214,0 +170764071505,215,0 +170764071555,215,0 +170764071604,215,0 +170764071652,215,0 +170764071700,216,0 +170764071748,215,0 +170764071797,216,0 +170764071845,216,0 +170764071893,215,0 +170764071941,215,0 +170764071991,213,0 +170764072039,213,0 +170764072086,213,0 +170764072136,213,0 +170764072184,213,0 +170764072232,213,0 +170764072280,214,0 +170764072328,214,0 +170764072377,214,0 +170764072425,215,0 +170764072473,215,0 +170764072523,215,0 +170764072570,215,0 +170764072620,216,0 +170764072668,216,0 +170764072716,215,0 +170764072764,216,0 +170764072812,215,0 +170764072860,213,0 +170764072909,213,0 +170764072957,213,0 +170764073005,213,0 +170764073053,213,0 +170764073101,213,0 +170764073149,213,0 +170764073196,214,0 +170764073246,214,0 +170764073295,214,0 +170764073345,214,0 +170764073393,215,0 +170764073441,215,0 +170764073489,215,0 +170764073538,215,0 +170764073586,216,0 +170764073634,215,0 +170764073682,215,0 +170764073731,214,0 +170764073779,213,0 +170764073829,213,0 +170764073877,213,0 +170764073924,214,0 +170764073972,214,0 +170764074020,214,0 +170764074068,214,0 +170764074116,214,0 +170764074164,214,0 +170764074212,215,0 +170764074262,214,0 +170764074309,215,0 +170764074357,215,0 +170764074407,215,0 +170764074455,215,0 +170764074504,216,0 +170764074554,216,0 +170764074602,216,0 +170764074649,213,0 +170764074699,213,0 +170764074747,213,0 +170764074796,213,0 +170764074844,214,0 +170764074892,213,0 +170764074940,214,0 +170764074988,214,0 +170764075037,214,0 +170764075085,215,0 +170764075135,215,0 +170764075183,215,0 +170764075231,215,0 +170764075280,215,0 +170764075330,215,0 +170764075378,215,0 +170764075426,216,0 +170764075474,216,0 +170764075522,213,0 +170764075569,213,0 +170764075617,213,0 +170764075665,213,0 +170764075713,213,0 +170764075761,213,0 +170764075810,214,0 +170764075860,214,0 +170764075909,214,0 +170764075957,214,0 +170764076005,215,0 +170764076053,215,0 +170764076101,215,0 +170764076151,215,0 +170764076200,215,0 +170764076248,215,0 +170764076298,215,0 +170764076345,216,0 +170764076395,214,0 +170764076443,213,0 +170764076491,213,0 +170764076538,213,0 +170764076586,213,0 +170764076634,213,0 +170764076682,213,0 +170764076730,213,0 +170764076778,214,0 +170764076825,214,0 +170764076875,214,0 +170764076923,215,0 +170764076971,215,0 +170764077020,215,0 +170764077068,215,0 +170764077116,215,0 +170764077164,215,0 +170764077213,215,0 +170764077261,215,0 +170764077311,213,0 +170764077359,213,0 +170764077406,213,0 +170764077454,213,0 +170764077502,213,0 +170764077550,214,0 +170764077598,214,0 +170764077646,214,0 +170764077694,214,0 +170764077742,215,0 +170764077791,215,0 +170764077839,215,0 +170764077889,215,0 +170764077938,215,0 +170764077986,216,0 +170764078034,216,0 +170764078082,216,0 +170764078130,215,0 +170764078178,214,0 +170764078226,214,0 +170764078274,214,0 +170764078322,214,0 +170764078371,214,0 +170764078419,214,0 +170764078469,215,0 +170764078516,215,0 +170764078566,215,0 +170764078614,215,0 +170764078663,216,0 +170764078713,216,0 +170764078761,215,0 +170764078810,216,0 +170764078858,216,0 +170764078906,216,0 +170764078954,216,0 +170764079002,215,0 +170764079050,214,0 +170764079099,214,0 +170764079147,214,0 +170764079197,214,0 +170764079247,214,0 +170764079296,214,0 +170764079344,215,0 +170764079393,215,0 +170764079441,215,0 +170764079489,215,0 +170764079537,215,0 +170764079585,216,0 +170764079633,215,0 +170764079681,215,0 +170764079729,216,0 +170764079777,216,0 +170764079825,216,0 +170764079873,216,0 +170764079921,213,0 +170764079969,213,0 +170764080017,214,0 +170764080065,214,0 +170764080114,214,0 +170764080164,214,0 +170764080212,214,0 +170764080260,214,0 +170764080308,214,0 +170764080356,214,0 +170764080404,215,0 +170764080452,215,0 +170764080500,215,0 +170764080548,215,0 +170764080596,215,0 +170764080645,216,0 +170764080694,216,0 +170764080742,215,0 +170764080790,213,0 +170764080838,213,0 +170764080888,213,0 +170764080936,214,0 +170764080984,214,0 +170764081031,214,0 +170764081081,214,0 +170764081129,214,0 +170764081177,214,0 +170764081225,215,0 +170764081273,215,0 +170764081321,215,0 +170764081369,215,0 +170764081417,216,0 +170764081466,216,0 +170764081514,216,0 +170764081564,216,0 +170764081612,215,0 +170764081660,213,0 +170764081708,213,0 +170764081755,214,0 +170764081803,214,0 +170764081853,214,0 +170764081901,214,0 +170764081949,214,0 +170764081997,214,0 +170764082046,214,0 +170764082096,215,0 +170764082144,215,0 +170764082191,215,0 +170764082239,215,0 +170764082287,216,0 +170764082337,216,0 +170764082385,216,0 +170764082433,216,0 +170764082481,216,0 +170764082529,213,0 +170764082576,213,0 +170764082624,214,0 +170764082674,214,0 +170764082722,214,0 +170764082770,214,0 +170764082818,215,0 +170764082866,215,0 +170764082914,215,0 +170764082963,215,0 +170764083011,215,0 +170764083059,216,0 +170764083108,216,0 +170764083156,216,0 +170764083204,216,0 +170764083252,216,0 +170764083302,216,0 +170764083350,215,0 +170764083399,213,0 +170764083447,213,0 +170764083497,213,0 +170764083545,214,0 +170764083594,214,0 +170764083644,214,0 +170764083692,214,0 +170764083739,215,0 +170764083787,215,0 +170764083835,215,0 +170764083885,214,0 +170764083933,215,0 +170764083981,215,0 +170764084029,216,0 +170764084078,216,0 +170764084128,216,0 +170764084176,216,0 +170764084224,214,0 +170764084272,213,0 +170764084320,213,0 +170764084368,213,0 +170764084416,213,0 +170764084464,214,0 +170764084511,214,0 +170764084561,214,0 +170764084609,214,0 +170764084659,215,0 +170764084706,215,0 +170764084756,215,0 +170764084804,215,0 +170764084853,216,0 +170764084901,216,0 +170764084949,216,0 +170764084997,215,0 +170764085045,215,0 +170764085093,214,0 +170764085141,213,0 +170764085191,213,0 +170764085238,213,0 +170764085286,213,0 +170764085336,213,0 +170764085384,213,0 +170764085432,213,0 +170764085480,214,0 +170764085528,214,0 +170764085575,214,0 +170764085623,214,0 +170764085671,215,0 +170764085719,215,0 +170764085767,215,0 +170764085815,215,0 +170764085865,215,0 +170764085913,215,0 +170764085961,214,0 +170764086008,213,0 +170764086056,213,0 +170764086106,213,0 +170764086154,213,0 +170764086202,213,0 +170764086250,214,0 +170764086298,214,0 +170764086347,214,0 +170764086395,214,0 +170764086443,215,0 +170764086491,215,0 +170764086539,215,0 +170764086587,215,0 +170764086635,215,0 +170764086683,216,0 +170764086731,215,0 +170764086780,215,0 +170764086830,214,0 +170764086878,213,0 +170764086926,213,0 +170764086975,213,0 +170764087023,213,0 +170764087071,214,0 +170764087119,214,0 +170764087168,213,0 +170764087218,214,0 +170764087266,214,0 +170764087314,214,0 +170764087362,214,0 +170764087410,215,0 +170764087458,215,0 +170764087506,215,0 +170764087554,215,0 +170764087602,216,0 +170764087650,216,0 +170764087699,214,0 +170764087749,213,0 +170764087798,213,0 +170764087846,213,0 +170764087896,213,0 +170764087943,213,0 +170764087991,213,0 +170764088039,213,0 +170764088089,214,0 +170764088137,214,0 +170764088185,215,0 +170764088233,215,0 +170764088280,215,0 +170764088328,215,0 +170764088376,215,0 +170764088424,215,0 +170764088472,215,0 +170764088520,215,0 +170764088567,215,0 +170764088617,213,0 +170764088665,213,0 +170764088713,213,0 +170764088762,213,0 +170764088810,213,0 +170764088858,213,0 +170764088905,213,0 +170764088953,214,0 +170764089001,214,0 +170764089049,214,0 +170764089097,214,0 +170764089145,215,0 +170764089193,215,0 +170764089240,215,0 +170764089288,215,0 +170764089336,215,0 +170764089384,216,0 +170764089432,216,0 +170764089480,213,0 +170764089527,213,0 +170764089577,213,0 +170764089625,213,0 +170764089673,213,0 +170764089720,213,0 +170764089768,213,0 +170764089816,213,0 +170764089864,214,0 +170764089913,214,0 +170764089961,214,0 +170764090009,214,0 +170764090057,214,0 +170764090105,214,0 +170764090154,214,0 +170764090204,214,0 +170764090252,214,0 +170764090299,215,0 +170764090347,215,0 +170764090395,215,0 +170764090443,216,0 +170764090493,215,0 +170764090541,216,0 +170764090588,215,0 +170764090636,216,0 +170764090684,215,0 +170764090732,215,0 +170764090780,213,0 +170764090828,213,0 +170764090876,213,0 +170764090926,213,0 +170764090974,214,0 +170764091022,214,0 +170764091071,214,0 +170764091120,214,0 +170764091168,214,0 +170764091218,214,0 +170764091265,215,0 +170764091313,215,0 +170764091361,215,0 +170764091411,215,0 +170764091459,215,0 +170764091507,215,0 +170764091556,216,0 +170764091606,215,0 +170764091653,213,0 +170764091701,213,0 +170764091749,213,0 +170764091797,213,0 +170764091845,213,0 +170764091893,213,0 +170764091941,213,0 +170764091989,213,0 +170764092037,214,0 +170764092086,214,0 +170764092134,214,0 +170764092182,215,0 +170764092230,215,0 +170764092278,215,0 +170764092326,215,0 +170764092374,216,0 +170764092423,216,0 +170764092471,215,0 +170764092521,213,0 +170764092570,213,0 +170764092618,213,0 +170764092666,213,0 +170764092714,214,0 +170764092764,214,0 +170764092813,214,0 +170764092863,214,0 +170764092912,214,0 +170764092960,214,0 +170764093008,214,0 +170764093056,215,0 +170764093106,215,0 +170764093154,215,0 +170764093201,215,0 +170764093251,216,0 +170764093299,215,0 +170764093347,213,0 +170764093395,213,0 +170764093443,213,0 +170764093492,213,0 +170764093542,214,0 +170764093591,214,0 +170764093639,214,0 +170764093689,214,0 +170764093737,214,0 +170764093786,215,0 +170764093834,215,0 +170764093884,215,0 +170764093933,215,0 +170764093981,216,0 +170764094029,216,0 +170764094077,216,0 +170764094125,216,0 +170764094173,216,0 +170764094221,213,0 +170764094270,214,0 +170764094318,214,0 +170764094366,214,0 +170764094414,214,0 +170764094464,214,0 +170764094511,215,0 +170764094559,215,0 +170764094607,215,0 +170764094657,215,0 +170764094705,215,0 +170764094753,216,0 +170764094801,216,0 +170764094850,215,0 +170764094898,215,0 +170764094946,216,0 +170764094994,216,0 +170764095043,215,0 +170764095091,214,0 +170764095139,214,0 +170764095187,214,0 +170764095235,214,0 +170764095283,214,0 +170764095330,214,0 +170764095378,214,0 +170764095426,215,0 +170764095474,215,0 +170764095524,215,0 +170764095572,215,0 +170764095619,215,0 +170764095669,215,0 +170764095717,215,0 +170764095765,215,0 +170764095813,216,0 +170764095861,215,0 +170764095910,214,0 +170764095958,213,0 +170764096006,214,0 +170764096054,213,0 +170764096102,213,0 +170764096151,214,0 +170764096199,214,0 +170764096247,214,0 +170764096296,215,0 +170764096344,214,0 +170764096392,215,0 +170764096440,215,0 +170764096488,215,0 +170764096536,215,0 +170764096584,216,0 +170764096631,216,0 +170764096679,216,0 +170764096729,216,0 +170764096777,214,0 +170764096825,213,0 +170764096874,213,0 +170764096922,214,0 +170764096970,214,0 +170764097020,214,0 +170764097068,214,0 +170764097115,214,0 +170764097163,214,0 +170764097211,215,0 +170764097259,215,0 +170764097307,215,0 +170764097357,215,0 +170764097405,215,0 +170764097454,216,0 +170764097502,216,0 +170764097550,216,0 +170764097600,215,0 +170764097649,213,0 +170764097697,213,0 +170764097745,213,0 +170764097793,214,0 +170764097842,214,0 +170764097890,214,0 +170764097938,214,0 +170764097986,215,0 +170764098034,215,0 +170764098082,215,0 +170764098130,215,0 +170764098177,215,0 +170764098225,216,0 +170764098273,216,0 +170764098321,216,0 +170764098371,216,0 +170764098418,216,0 +170764098466,215,0 +170764098516,213,0 +170764098564,213,0 +170764098612,214,0 +170764098660,214,0 +170764098708,214,0 +170764098755,214,0 +170764098803,215,0 +170764098851,215,0 +170764098899,215,0 +170764098947,215,0 +170764098995,216,0 +170764099043,216,0 +170764099091,216,0 +170764099140,216,0 +170764099188,216,0 +170764099236,216,0 +170764099284,215,0 +170764099332,215,0 +170764099380,213,0 +170764099430,214,0 +170764099477,214,0 +170764099525,214,0 +170764099575,214,0 +170764099623,214,0 +170764099672,215,0 +170764099720,215,0 +170764099768,215,0 +170764099816,215,0 +170764099864,215,0 +170764099912,216,0 +170764099960,215,0 +170764100008,216,0 +170764100056,216,0 +170764100104,216,0 +170764100152,216,0 +170764100200,214,0 +170764100247,213,0 +170764100295,214,0 +170764100345,214,0 +170764100395,214,0 +170764100444,214,0 +170764100492,214,0 +170764100540,215,0 +170764100588,214,0 +170764100636,215,0 +170764100684,215,0 +170764100733,215,0 +170764100783,215,0 +170764100831,216,0 +170764100879,215,0 +170764100928,216,0 +170764100976,216,0 +170764101024,216,0 +170764101072,213,0 +170764101122,213,0 +170764101169,214,0 +170764101219,214,0 +170764101267,214,0 +170764101316,214,0 +170764101366,214,0 +170764101415,215,0 +170764101463,215,0 +170764101511,215,0 +170764101560,215,0 +170764101610,215,0 +170764101658,215,0 +170764101706,216,0 +170764101754,216,0 +170764101802,215,0 +170764101849,216,0 +170764101897,215,0 +170764101945,213,0 +170764101993,213,0 +170764102042,213,0 +170764102090,214,0 +170764102140,214,0 +170764102189,214,0 +170764102239,214,0 +170764102287,214,0 +170764102334,214,0 +170764102384,214,0 +170764102432,215,0 +170764102480,215,0 +170764102528,215,0 +170764102577,215,0 +170764102625,215,0 +170764102673,215,0 +170764102721,216,0 +170764102769,214,0 +170764102817,213,0 +170764102867,213,0 +170764102915,213,0 +170764102962,214,0 +170764103010,213,0 +170764103058,214,0 +170764103106,214,0 +170764103154,214,0 +170764103202,214,0 +170764103250,215,0 +170764103298,215,0 +170764103347,215,0 +170764103395,215,0 +170764103443,215,0 +170764103491,215,0 +170764103540,215,0 +170764103588,215,0 +170764103636,213,0 +170764103684,213,0 +170764103732,213,0 +170764103780,213,0 +170764103829,214,0 +170764103879,214,0 +170764103927,214,0 +170764103975,214,0 +170764104023,214,0 +170764104072,214,0 +170764104122,215,0 +170764104170,215,0 +170764104218,215,0 +170764104266,215,0 +170764104314,215,0 +170764104363,215,0 +170764104411,216,0 +170764104459,216,0 +170764104509,213,0 +170764104556,213,0 +170764104604,213,0 +170764104652,213,0 +170764104700,214,0 +170764104748,213,0 +170764104796,214,0 +170764104845,214,0 +170764104893,214,0 +170764104941,214,0 +170764104989,215,0 +170764105037,215,0 +170764105087,215,0 +170764105135,215,0 +170764105182,216,0 +170764105232,216,0 +170764105280,216,0 +170764105328,214,0 +170764105376,213,0 +170764105424,213,0 +170764105472,213,0 +170764105520,214,0 +170764105568,213,0 +170764105616,214,0 +170764105664,214,0 +170764105712,214,0 +170764105760,214,0 +170764105807,214,0 +170764105857,214,0 +170764105906,215,0 +170764105956,215,0 +170764106004,215,0 +170764106052,215,0 +170764106100,215,0 +170764106148,215,0 +170764106196,213,0 +170764106244,213,0 +170764106292,213,0 +170764106340,214,0 +170764106388,213,0 +170764106435,214,0 +170764106483,214,0 +170764106533,214,0 +170764106581,214,0 +170764106629,214,0 +170764106677,214,0 +170764106725,215,0 +170764106773,215,0 +170764106822,214,0 +170764106870,215,0 +170764106919,215,0 +170764106969,216,0 +170764107018,215,0 +170764107066,213,0 +170764107114,213,0 +170764107162,213,0 +170764107210,213,0 +170764107258,214,0 +170764107306,214,0 +170764107354,213,0 +170764107403,215,0 +170764107451,214,0 +170764107499,215,0 +170764107549,215,0 +170764107597,215,0 +170764107645,215,0 +170764107693,216,0 +170764107741,216,0 +170764107789,216,0 +170764107838,216,0 +170764107888,213,0 +170764107936,213,0 +170764107985,213,0 +170764108035,213,0 +170764108083,214,0 +170764108130,214,0 +170764108180,214,0 +170764108228,214,0 +170764108276,215,0 +170764108324,215,0 +170764108373,215,0 +170764108421,215,0 +170764108469,215,0 +170764108517,215,0 +170764108565,215,0 +170764108615,216,0 +170764108664,216,0 +170764108712,215,0 +170764108762,214,0 +170764108809,214,0 +170764108857,214,0 +170764108905,214,0 +170764108953,215,0 +170764109001,215,0 +170764109049,215,0 +170764109097,215,0 +170764109145,215,0 +170764109193,216,0 +170764109243,216,0 +170764109292,216,0 +170764109340,215,0 +170764109390,216,0 +170764109439,216,0 +170764109487,215,0 +170764109535,215,0 +170764109585,214,0 +170764109633,214,0 +170764109682,214,0 +170764109730,214,0 +170764109778,214,0 +170764109826,215,0 +170764109874,215,0 +170764109923,215,0 +170764109973,215,0 +170764110022,215,0 +170764110070,215,0 +170764110118,215,0 +170764110168,215,0 +170764110216,215,0 +170764110265,215,0 +170764110313,215,0 +170764110361,215,0 +170764110409,213,0 +170764110457,213,0 +170764110505,213,0 +170764110554,213,0 +170764110602,214,0 +170764110650,214,0 +170764110698,214,0 +170764110746,214,0 +170764110794,215,0 +170764110842,215,0 +170764110889,215,0 +170764110937,215,0 +170764110985,215,0 +170764111033,215,0 +170764111081,215,0 +170764111129,215,0 +170764111176,215,0 +170764111224,213,0 +170764111272,213,0 +170764111320,213,0 +170764111368,213,0 +170764111416,213,0 +170764111464,214,0 +170764111512,213,0 +170764111560,214,0 +170764111607,214,0 +170764111655,214,0 +170764111703,214,0 +170764111751,215,0 +170764111799,215,0 +170764111847,215,0 +170764111895,215,0 +170764111943,215,0 +170764111991,215,0 +170764112038,214,0 +170764112088,213,0 +170764112136,213,0 +170764112184,213,0 +170764112232,214,0 +170764112280,214,0 +170764112329,214,0 +170764112379,214,0 +170764112427,214,0 +170764112476,214,0 +170764112524,215,0 +170764112572,215,0 +170764112620,215,0 +170764112668,215,0 +170764112716,215,0 +170764112764,216,0 +170764112813,215,0 +170764112861,215,0 +170764112909,213,0 +170764112957,213,0 +170764113005,213,0 +170764113053,214,0 +170764113101,214,0 +170764113149,214,0 +170764113198,214,0 +170764113246,214,0 +170764113296,214,0 +170764113344,215,0 +170764113393,215,0 +170764113441,215,0 +170764113489,215,0 +170764113538,216,0 +170764113586,215,0 +170764113634,216,0 +170764113682,216,0 +170764113730,214,0 +170764113777,214,0 +170764113825,214,0 +170764113873,214,0 +170764113921,214,0 +170764113969,214,0 +170764114016,214,0 +170764114064,215,0 +170764114112,215,0 +170764114160,215,0 +170764114208,215,0 +170764114256,215,0 +170764114304,215,0 +170764114351,216,0 +170764114399,216,0 +170764114447,217,0 +170764114495,216,0 +170764114543,214,0 +170764114591,213,0 +170764114638,214,0 +170764114686,214,0 +170764114734,214,0 +170764114782,214,0 +170764114830,214,0 +170764114878,215,0 +170764114926,215,0 +170764114974,215,0 +170764115021,215,0 +170764115069,215,0 +170764115117,216,0 +170764115165,215,0 +170764115213,215,0 +170764115261,216,0 +170764115310,216,0 +170764115358,215,0 +170764115406,214,0 +170764115453,213,0 +170764115501,214,0 +170764115549,214,0 +170764115597,214,0 +170764115645,214,0 +170764115693,215,0 +170764115740,214,0 +170764115788,215,0 +170764115836,215,0 +170764115884,216,0 +170764115932,215,0 +170764115981,216,0 +170764116029,215,0 +170764116077,215,0 +170764116125,216,0 +170764116173,215,0 +170764116220,213,0 +170764116268,213,0 +170764116316,214,0 +170764116364,214,0 +170764116412,214,0 +170764116460,214,0 +170764116509,214,0 +170764116559,214,0 +170764116606,214,0 +170764116654,215,0 +170764116704,215,0 +170764116753,215,0 +170764116801,215,0 +170764116849,215,0 +170764116899,216,0 +170764116947,215,0 +170764116995,216,0 +170764117043,214,0 +170764117091,213,0 +170764117138,213,0 +170764117186,214,0 +170764117236,214,0 +170764117285,214,0 +170764117333,214,0 +170764117381,215,0 +170764117429,215,0 +170764117477,215,0 +170764117525,215,0 +170764117573,215,0 +170764117621,215,0 +170764117669,215,0 +170764117717,215,0 +170764117765,215,0 +170764117813,215,0 +170764117862,214,0 +170764117910,213,0 +170764117960,213,0 +170764118008,213,0 +170764118056,214,0 +170764118105,214,0 +170764118153,214,0 +170764118201,214,0 +170764118249,215,0 +170764118297,215,0 +170764118345,215,0 +170764118394,215,0 +170764118442,215,0 +170764118492,215,0 +170764118540,215,0 +170764118587,215,0 +170764118635,216,0 +170764118683,215,0 +170764118731,213,0 +170764118779,213,0 +170764118827,214,0 +170764118875,214,0 +170764118923,214,0 +170764118970,214,0 +170764119018,214,0 +170764119066,215,0 +170764119114,215,0 +170764119162,215,0 +170764119210,215,0 +170764119257,215,0 +170764119305,215,0 +170764119353,215,0 +170764119401,215,0 +170764119449,216,0 +170764119497,215,0 +170764119545,214,0 +170764119593,213,0 +170764119642,213,0 +170764119690,214,0 +170764119738,214,0 +170764119786,214,0 +170764119834,214,0 +170764119882,214,0 +170764119930,215,0 +170764119978,215,0 +170764120026,214,0 +170764120075,215,0 +170764120123,215,0 +170764120171,215,0 +170764120221,216,0 +170764120270,216,0 +170764120319,215,0 +170764120367,214,0 +170764120415,213,0 +170764120463,213,0 +170764120511,215,0 +170764120561,213,0 +170764120610,214,0 +170764120658,214,0 +170764120706,214,0 +170764120754,214,0 +170764120802,215,0 +170764120850,215,0 +170764120898,215,0 +170764120946,215,0 +170764120995,216,0 +170764121043,216,0 +170764121091,216,0 +170764121140,215,0 +170764121188,214,0 +170764121236,213,0 +170764121284,213,0 +170764121332,213,0 +170764121380,214,0 +170764121430,214,0 +170764121479,213,0 +170764121527,214,0 +170764121575,214,0 +170764121623,215,0 +170764121671,215,0 +170764121719,215,0 +170764121767,215,0 +170764121816,215,0 +170764121864,215,0 +170764121914,216,0 +170764121962,216,0 +170764122010,215,0 +170764122057,213,0 +170764122105,213,0 +170764122153,213,0 +170764122201,214,0 +170764122251,214,0 +170764122300,214,0 +170764122348,214,0 +170764122396,215,0 +170764122445,215,0 +170764122493,215,0 +170764122543,216,0 +170764122592,216,0 +170764122640,216,0 +170764122688,216,0 +170764122736,215,0 +170764122784,216,0 +170764122832,215,0 +170764122880,214,0 +170764122928,214,0 +170764122977,215,0 +170764123025,215,0 +170764123073,215,0 +170764123121,215,0 +170764123169,215,0 +170764123219,215,0 +170764123267,216,0 +170764123316,215,0 +170764123364,216,0 +170764123412,216,0 +170764123460,215,0 +170764123508,216,0 +170764123556,216,0 +170764123604,215,0 +170764123652,215,0 +170764123700,214,0 +170764123748,213,0 +170764123797,214,0 +170764123845,214,0 +170764123893,214,0 +170764123943,215,0 +170764123992,215,0 +170764124040,215,0 +170764124090,215,0 +170764124139,215,0 +170764124187,215,0 +170764124237,215,0 +170764124284,215,0 +170764124332,215,0 +170764124382,216,0 +170764124430,216,0 +170764124478,215,0 +170764124526,214,0 +170764124574,213,0 +170764124622,213,0 +170764124670,214,0 +170764124719,213,0 +170764124769,213,0 +170764124818,214,0 +170764124866,214,0 +170764124914,214,0 +170764124962,215,0 +170764125011,215,0 +170764125059,215,0 +170764125109,215,0 +170764125158,215,0 +170764125206,215,0 +170764125254,216,0 +170764125302,216,0 +170764125352,213,0 +170764125401,213,0 +170764125449,213,0 +170764125497,214,0 +170764125545,214,0 +170764125593,214,0 +170764125641,214,0 +170764125689,214,0 +170764125738,214,0 +170764125788,214,0 +170764125836,215,0 +170764125884,215,0 +170764125932,215,0 +170764125980,215,0 +170764126029,215,0 +170764126079,216,0 +170764126127,216,0 +170764126175,214,0 +170764126222,213,0 +170764126270,213,0 +170764126320,214,0 +170764126368,214,0 +170764126416,214,0 +170764126465,214,0 +170764126513,214,0 +170764126563,214,0 +170764126611,214,0 +170764126660,214,0 +170764126710,215,0 +170764126758,215,0 +170764126807,215,0 +170764126855,216,0 +170764126903,216,0 +170764126951,216,0 +170764126999,216,0 +170764127047,213,0 +170764127095,213,0 +170764127143,214,0 +170764127192,213,0 +170764127240,214,0 +170764127288,214,0 +170764127336,214,0 +170764127384,215,0 +170764127433,215,0 +170764127481,214,0 +170764127529,215,0 +170764127577,215,0 +170764127625,216,0 +170764127673,215,0 +170764127723,215,0 +170764127770,215,0 +170764127818,216,0 +170764127868,213,0 +170764127916,213,0 +170764127964,214,0 +170764128012,214,0 +170764128061,214,0 +170764128109,214,0 +170764128157,215,0 +170764128205,215,0 +170764128253,215,0 +170764128301,215,0 +170764128349,216,0 +170764128397,216,0 +170764128445,216,0 +170764128494,216,0 +170764128544,216,0 +170764128591,216,0 +170764128641,215,0 +170764128689,214,0 +170764128737,213,0 +170764128785,213,0 +170764128833,214,0 +170764128881,214,0 +170764128929,214,0 +170764128977,214,0 +170764129027,214,0 +170764129076,215,0 +170764129124,215,0 +170764129172,215,0 +170764129220,215,0 +170764129268,215,0 +170764129316,215,0 +170764129364,216,0 +170764129412,216,0 +170764129461,216,0 +170764129509,215,0 +170764129557,213,0 +170764129606,213,0 +170764129654,213,0 +170764129702,214,0 +170764129750,214,0 +170764129798,214,0 +170764129845,214,0 +170764129893,214,0 +170764129941,214,0 +170764129991,214,0 +170764130038,215,0 +170764130086,215,0 +170764130134,214,0 +170764130182,215,0 +170764130230,216,0 +170764130278,215,0 +170764130326,215,0 +170764130373,214,0 +170764130421,214,0 +170764130469,214,0 +170764130517,214,0 +170764130565,214,0 +170764130613,214,0 +170764130661,214,0 +170764130709,214,0 +170764130757,215,0 +170764130804,215,0 +170764130852,215,0 +170764130900,215,0 +170764130948,215,0 +170764130996,216,0 +170764131044,216,0 +170764131092,216,0 +170764131139,215,0 +170764131187,214,0 +170764131237,214,0 +170764131285,214,0 +170764131333,214,0 +170764131381,214,0 +170764131428,214,0 +170764131476,214,0 +170764131524,214,0 +170764131572,215,0 +170764131620,215,0 +170764131667,215,0 +170764131717,215,0 +170764131765,215,0 +170764131814,215,0 +170764131862,215,0 +170764131910,215,0 +170764131958,215,0 +170764132008,215,0 +170764132056,214,0 +170764132104,214,0 +170764132152,214,0 +170764132200,214,0 +170764132249,214,0 +170764132297,215,0 +170764132345,215,0 +170764132393,215,0 +170764132441,215,0 +170764132489,215,0 +170764132537,216,0 +170764132586,216,0 +170764132634,216,0 +170764132682,216,0 +170764132730,215,0 +170764132778,216,0 +170764132826,215,0 +170764132874,213,0 +170764132923,213,0 +170764132973,214,0 +170764133021,214,0 +170764133069,214,0 +170764133116,214,0 +170764133166,214,0 +170764133215,215,0 +170764133263,215,0 +170764133311,215,0 +170764133359,215,0 +170764133407,215,0 +170764133455,216,0 +170764133504,216,0 +170764133552,215,0 +170764133602,216,0 +170764133650,216,0 +170764133699,213,0 +170764133747,213,0 +170764133795,213,0 +170764133843,214,0 +170764133893,214,0 +170764133941,214,0 +170764133988,214,0 +170764134036,215,0 +170764134084,215,0 +170764134134,215,0 +170764134182,215,0 +170764134231,215,0 +170764134279,215,0 +170764134329,215,0 +170764134377,216,0 +170764134424,216,0 +170764134474,216,0 +170764134522,213,0 +170764134570,213,0 +170764134619,213,0 +170764134667,213,0 +170764134715,213,0 +170764134763,214,0 +170764134811,214,0 +170764134859,214,0 +170764134907,214,0 +170764134955,214,0 +170764135003,215,0 +170764135051,215,0 +170764135099,215,0 +170764135148,215,0 +170764135196,215,0 +170764135244,215,0 +170764135292,215,0 +170764135339,214,0 +170764135387,213,0 +170764135435,213,0 +170764135483,213,0 +170764135531,213,0 +170764135579,214,0 +170764135627,214,0 +170764135676,214,0 +170764135724,215,0 +170764135774,215,0 +170764135823,215,0 +170764135871,215,0 +170764135919,215,0 +170764135967,215,0 +170764136015,215,0 +170764136063,216,0 +170764136111,216,0 +170764136158,215,0 +170764136206,214,0 +170764136254,214,0 +170764136302,214,0 +170764136350,214,0 +170764136398,215,0 +170764136446,215,0 +170764136494,215,0 +170764136542,215,0 +170764136590,216,0 +170764136638,215,0 +170764136686,216,0 +170764136734,216,0 +170764136783,216,0 +170764136831,216,0 +170764136881,216,0 +170764136928,216,0 +170764136976,215,0 +170764137024,215,0 +170764137072,215,0 +170764137120,215,0 +170764137168,215,0 +170764137216,215,0 +170764137266,215,0 +170764137314,215,0 +170764137362,216,0 +170764137410,216,0 +170764137459,216,0 +170764137507,216,0 +170764137556,216,0 +170764137604,216,0 +170764137652,216,0 +170764137700,216,0 +170764137748,216,0 +170764137795,215,0 +170764137843,213,0 +170764137891,214,0 +170764137939,214,0 +170764137987,214,0 +170764138035,214,0 +170764138083,214,0 +170764138131,215,0 +170764138178,215,0 +170764138226,215,0 +170764138274,215,0 +170764138322,215,0 +170764138370,215,0 +170764138418,216,0 +170764138466,215,0 +170764138514,215,0 +170764138561,215,0 +170764138609,215,0 +170764138657,213,0 +170764138707,213,0 +170764138754,214,0 +170764138804,214,0 +170764138852,214,0 +170764138899,214,0 +170764138947,214,0 +170764138995,214,0 +170764139043,215,0 +170764139091,215,0 +170764139139,215,0 +170764139187,215,0 +170764139236,215,0 +170764139286,216,0 +170764139333,215,0 +170764139383,216,0 +170764139432,215,0 +170764139480,213,0 +170764139528,213,0 +170764139576,214,0 +170764139624,214,0 +170764139672,214,0 +170764139720,214,0 +170764139767,214,0 +170764139815,214,0 +170764139863,215,0 +170764139911,215,0 +170764139959,215,0 +170764140007,215,0 +170764140055,215,0 +170764140103,215,0 +170764140152,216,0 +170764140200,216,0 +170764140248,214,0 +170764140296,213,0 +170764140343,214,0 +170764140391,214,0 +170764140439,214,0 +170764140487,215,0 +170764140535,214,0 +170764140583,215,0 +170764140631,215,0 +170764140678,215,0 +170764140726,216,0 +170764140774,215,0 +170764140822,216,0 +170764140870,216,0 +170764140918,216,0 +170764140966,216,0 +170764141014,215,0 +170764141062,214,0 +170764141111,214,0 +170764141159,214,0 +170764141208,214,0 +170764141256,214,0 +170764141304,215,0 +170764141352,215,0 +170764141402,215,0 +170764141451,215,0 +170764141499,216,0 +170764141547,216,0 +170764141595,216,0 +170764141645,216,0 +170764141692,216,0 +170764141740,215,0 +170764141788,216,0 +170764141836,215,0 +170764141884,214,0 +170764141934,214,0 +170764141982,214,0 +170764142029,215,0 +170764142079,215,0 +170764142129,215,0 +170764142176,215,0 +170764142226,216,0 +170764142274,216,0 +170764142322,216,0 +170764142370,216,0 +170764142418,216,0 +170764142466,216,0 +170764142514,216,0 +170764142561,216,0 +170764142609,215,0 +170764142657,215,0 +170764142707,213,0 +170764142755,214,0 +170764142803,214,0 +170764142851,214,0 +170764142899,214,0 +170764142947,215,0 +170764142995,215,0 +170764143044,215,0 +170764143094,215,0 +170764143142,215,0 +170764143191,215,0 +170764143239,215,0 +170764143287,215,0 +170764143335,215,0 +170764143383,216,0 +170764143431,216,0 +170764143481,216,0 +170764143530,213,0 +170764143578,213,0 +170764143628,213,0 +170764143677,214,0 +170764143725,214,0 +170764143775,214,0 +170764143824,214,0 +170764143874,215,0 +170764143923,215,0 +170764143973,215,0 +170764144023,215,0 +170764144070,215,0 +170764144120,215,0 +170764144170,215,0 +170764144218,216,0 +170764144266,216,0 +170764144313,213,0 +170764144361,213,0 +170764144409,213,0 +170764144457,213,0 +170764144505,214,0 +170764144553,214,0 +170764144601,214,0 +170764144649,214,0 +170764144697,215,0 +170764144746,215,0 +170764144794,215,0 +170764144844,215,0 +170764144892,215,0 +170764144940,215,0 +170764144988,216,0 +170764145037,215,0 +170764145087,216,0 +170764145135,213,0 +170764145183,213,0 +170764145232,213,0 +170764145280,213,0 +170764145328,214,0 +170764145376,214,0 +170764145424,214,0 +170764145472,214,0 +170764145520,214,0 +170764145568,214,0 +170764145616,215,0 +170764145665,215,0 +170764145713,215,0 +170764145761,215,0 +170764145811,216,0 +170764145859,215,0 +170764145907,216,0 +170764145954,213,0 +170764146002,213,0 +170764146050,213,0 +170764146098,213,0 +170764146146,213,0 +170764146194,214,0 +170764146244,215,0 +170764146293,214,0 +170764146341,214,0 +170764146389,214,0 +170764146437,214,0 +170764146485,215,0 +170764146533,216,0 +170764146581,215,0 +170764146629,216,0 +170764146677,215,0 +170764146726,215,0 +170764146776,213,0 +170764146824,213,0 +170764146872,213,0 +170764146920,214,0 +170764146968,214,0 +170764147015,214,0 +170764147065,214,0 +170764147113,214,0 +170764147161,214,0 +170764147209,215,0 +170764147257,215,0 +170764147305,215,0 +170764147353,215,0 +170764147401,215,0 +170764147449,215,0 +170764147497,216,0 +170764147546,216,0 +170764147596,213,0 +170764147645,213,0 +170764147693,213,0 +170764147741,214,0 +170764147789,214,0 +170764147837,214,0 +170764147885,214,0 +170764147933,214,0 +170764147981,214,0 +170764148029,215,0 +170764148077,215,0 +170764148125,215,0 +170764148174,215,0 +170764148224,215,0 +170764148273,216,0 +170764148321,216,0 +170764148369,214,0 +170764148417,213,0 +170764148465,213,0 +170764148515,213,0 +170764148562,214,0 +170764148612,214,0 +170764148661,214,0 +170764148711,214,0 +170764148759,215,0 +170764148807,215,0 +170764148856,215,0 +170764148906,215,0 +170764148954,215,0 +170764149003,216,0 +170764149051,216,0 +170764149099,216,0 +170764149147,216,0 +170764149195,214,0 +170764149245,213,0 +170764149292,214,0 +170764149340,214,0 +170764149390,214,0 +170764149439,214,0 +170764149487,215,0 +170764149535,215,0 +170764149583,215,0 +170764149633,215,0 +170764149681,216,0 +170764149730,216,0 +170764149778,215,0 +170764149826,216,0 +170764149874,216,0 +170764149922,215,0 +170764149970,215,0 +170764150018,214,0 +170764150066,214,0 +170764150114,214,0 +170764150162,214,0 +170764150210,215,0 +170764150259,215,0 +170764150309,215,0 +170764150357,215,0 +170764150406,215,0 +170764150454,215,0 +170764150504,215,0 +170764150553,215,0 +170764150603,215,0 +170764150651,216,0 +170764150699,215,0 +170764150747,215,0 +170764150796,214,0 +170764150844,213,0 +170764150892,213,0 +170764150940,214,0 +170764150988,214,0 +170764151036,214,0 +170764151084,214,0 +170764151132,215,0 +170764151180,215,0 +170764151228,215,0 +170764151276,215,0 +170764151324,215,0 +170764151372,216,0 +170764151420,216,0 +170764151467,215,0 +170764151515,216,0 +170764151563,216,0 +170764151611,214,0 +170764151659,214,0 +170764151707,214,0 +170764151755,214,0 +170764151803,214,0 +170764151852,214,0 +170764151902,214,0 +170764151951,214,0 +170764151999,215,0 +170764152047,214,0 +170764152095,215,0 +170764152143,215,0 +170764152191,216,0 +170764152239,216,0 +170764152287,216,0 +170764152334,215,0 +170764152382,215,0 +170764152430,214,0 +170764152478,214,0 +170764152526,214,0 +170764152574,215,0 +170764152621,214,0 +170764152669,215,0 +170764152717,215,0 +170764152765,215,0 +170764152813,215,0 +170764152861,215,0 +170764152909,215,0 +170764152957,215,0 +170764153006,216,0 +170764153054,216,0 +170764153102,216,0 +170764153150,215,0 +170764153198,216,0 +170764153246,214,0 +170764153294,214,0 +170764153343,214,0 +170764153393,215,0 +170764153441,215,0 +170764153489,215,0 +170764153537,215,0 +170764153585,215,0 +170764153632,216,0 +170764153680,215,0 +170764153728,216,0 +170764153778,216,0 +170764153827,216,0 +170764153877,216,0 +170764153926,216,0 +170764153974,216,0 +170764154024,216,0 +170764154072,214,0 +170764154121,215,0 +170764154171,215,0 +170764154219,215,0 +170764154266,215,0 +170764154316,216,0 +170764154364,216,0 +170764154412,216,0 +170764154460,216,0 +170764154509,216,0 +170764154559,216,0 +170764154608,216,0 +170764154656,216,0 +170764154704,216,0 +170764154752,216,0 +170764154800,215,0 +170764154850,214,0 +170764154898,214,0 +170764154947,214,0 +170764154995,214,0 +170764155043,215,0 +170764155091,215,0 +170764155139,215,0 +170764155187,215,0 +170764155235,215,0 +170764155283,215,0 +170764155331,216,0 +170764155380,216,0 +170764155430,216,0 +170764155478,215,0 +170764155526,216,0 +170764155574,216,0 +170764155622,215,0 +170764155671,214,0 +170764155719,213,0 +170764155767,214,0 +170764155815,214,0 +170764155863,214,0 +170764155912,214,0 +170764155962,214,0 +170764156010,215,0 +170764156058,215,0 +170764156107,215,0 +170764156155,215,0 +170764156205,216,0 +170764156253,216,0 +170764156301,216,0 +170764156349,215,0 +170764156397,216,0 +170764156446,215,0 +170764156496,213,0 +170764156544,213,0 +170764156593,213,0 +170764156641,213,0 +170764156690,214,0 +170764156740,214,0 +170764156788,214,0 +170764156836,214,0 +170764156884,214,0 +170764156933,215,0 +170764156981,215,0 +170764157029,215,0 +170764157077,216,0 +170764157125,215,0 +170764157173,216,0 +170764157221,215,0 +170764157271,215,0 +170764157320,213,0 +170764157368,213,0 +170764157416,214,0 +170764157465,214,0 +170764157513,214,0 +170764157563,214,0 +170764157611,214,0 +170764157659,214,0 +170764157707,214,0 +170764157754,215,0 +170764157804,215,0 +170764157853,215,0 +170764157901,216,0 +170764157949,215,0 +170764157997,216,0 +170764158045,216,0 +170764158093,214,0 +170764158141,213,0 +170764158189,213,0 +170764158237,214,0 +170764158285,214,0 +170764158334,214,0 +170764158382,214,0 +170764158430,215,0 +170764158478,215,0 +170764158526,215,0 +170764158575,215,0 +170764158623,215,0 +170764158673,215,0 +170764158721,215,0 +170764158770,215,0 +170764158818,217,0 +170764158866,216,0 +170764158914,214,0 +170764158962,213,0 +170764159010,213,0 +170764159058,213,0 +170764159106,213,0 +170764159154,213,0 +170764159203,214,0 +170764159251,214,0 +170764159299,214,0 +170764159349,215,0 +170764159397,215,0 +170764159446,216,0 +170764159494,215,0 +170764159542,215,0 +170764159590,216,0 +170764159637,216,0 +170764159685,215,0 +170764159733,213,0 +170764159781,213,0 +170764159831,213,0 +170764159880,213,0 +170764159928,214,0 +170764159976,214,0 +170764160024,214,0 +170764160072,214,0 +170764160121,215,0 +170764160169,215,0 +170764160217,215,0 +170764160265,216,0 +170764160313,215,0 +170764160361,215,0 +170764160411,215,0 +170764160459,215,0 +170764160507,215,0 +170764160554,213,0 +170764160602,213,0 +170764160652,214,0 +170764160701,214,0 +170764160749,214,0 +170764160797,214,0 +170764160847,214,0 +170764160896,214,0 +170764160944,215,0 +170764160994,215,0 +170764161043,215,0 +170764161093,215,0 +170764161141,215,0 +170764161189,216,0 +170764161237,216,0 +170764161285,215,0 +170764161334,214,0 +170764161382,213,0 +170764161430,213,0 +170764161478,214,0 +170764161526,214,0 +170764161574,214,0 +170764161622,214,0 +170764161669,215,0 +170764161717,215,0 +170764161765,216,0 +170764161815,215,0 +170764161863,215,0 +170764161910,216,0 +170764161960,215,0 +170764162008,216,0 +170764162057,216,0 +170764162105,215,0 +170764162154,214,0 +170764162204,214,0 +170764162252,214,0 +170764162301,214,0 +170764162351,215,0 +170764162400,215,0 +170764162448,215,0 +170764162496,215,0 +170764162543,216,0 +170764162591,215,0 +170764162639,216,0 +170764162687,216,0 +170764162735,216,0 +170764162783,215,0 +170764162831,216,0 +170764162879,215,0 +170764162927,214,0 +170764162975,214,0 +170764163023,214,0 +170764163070,214,0 +170764163118,215,0 +170764163168,215,0 +170764163216,214,0 +170764163263,214,0 +170764163311,215,0 +170764163359,215,0 +170764163409,216,0 +170764163456,215,0 +170764163504,216,0 +170764163552,216,0 +170764163600,216,0 +170764163648,216,0 +170764163698,215,0 +170764163747,214,0 +170764163797,213,0 +170764163845,214,0 +170764163893,214,0 +170764163941,214,0 +170764163988,214,0 +170764164036,215,0 +170764164084,215,0 +170764164132,215,0 +170764164180,215,0 +170764164228,215,0 +170764164276,215,0 +170764164324,216,0 +170764164372,216,0 +170764164421,216,0 +170764164469,216,0 +170764164517,216,0 +170764164566,214,0 +170764164614,213,0 +170764164664,214,0 +170764164711,214,0 +170764164759,214,0 +170764164809,214,0 +170764164858,215,0 +170764164908,215,0 +170764164956,215,0 +170764165005,215,0 +170764165053,215,0 +170764165101,215,0 +170764165149,215,0 +170764165197,216,0 +170764165245,216,0 +170764165293,216,0 +170764165342,214,0 +170764165390,214,0 +170764165440,214,0 +170764165487,214,0 +170764165535,214,0 +170764165585,215,0 +170764165634,215,0 +170764165682,214,0 +170764165730,215,0 +170764165778,215,0 +170764165826,215,0 +170764165874,215,0 +170764165923,216,0 +170764165973,216,0 +170764166021,216,0 +170764166070,215,0 +170764166118,216,0 +170764166166,214,0 +170764166216,214,0 +170764166265,214,0 +170764166315,214,0 +170764166364,215,0 +170764166412,215,0 +170764166460,215,0 +170764166509,215,0 +170764166559,215,0 +170764166607,216,0 +170764166655,216,0 +170764166703,216,0 +170764166751,216,0 +170764166799,216,0 +170764166846,216,0 +170764166894,216,0 +170764166942,216,0 +170764166990,214,0 +170764167038,214,0 +170764167087,214,0 +170764167135,215,0 +170764167183,215,0 +170764167231,215,0 +170764167279,216,0 +170764167326,216,0 +170764167374,216,0 +170764167424,216,0 +170764167472,216,0 +170764167521,216,0 +170764167569,216,0 +170764167617,216,0 +170764167667,216,0 +170764167715,215,0 +170764167763,215,0 +170764167810,214,0 +170764167858,214,0 +170764167908,214,0 +170764167956,214,0 +170764168005,214,0 +170764168053,215,0 +170764168101,215,0 +170764168149,215,0 +170764168197,215,0 +170764168246,215,0 +170764168294,215,0 +170764168344,216,0 +170764168392,215,0 +170764168439,216,0 +170764168487,216,0 +170764168537,215,0 +170764168585,213,0 +170764168634,213,0 +170764168682,214,0 +170764168730,214,0 +170764168778,214,0 +170764168826,214,0 +170764168874,214,0 +170764168921,215,0 +170764168971,215,0 +170764169020,215,0 +170764169068,215,0 +170764169116,216,0 +170764169164,216,0 +170764169212,215,0 +170764169260,216,0 +170764169308,216,0 +170764169356,215,0 +170764169405,213,0 +170764169453,213,0 +170764169503,214,0 +170764169551,214,0 +170764169599,214,0 +170764169648,214,0 +170764169696,215,0 +170764169746,215,0 +170764169795,215,0 +170764169845,215,0 +170764169893,215,0 +170764169940,215,0 +170764169990,216,0 +170764170039,216,0 +170764170087,216,0 +170764170135,216,0 +170764170183,214,0 +170764170231,214,0 +170764170281,214,0 +170764170330,213,0 +170764170378,214,0 +170764170428,214,0 +170764170476,215,0 +170764170524,215,0 +170764170572,215,0 +170764170620,215,0 +170764170669,215,0 +170764170717,215,0 +170764170765,215,0 +170764170814,216,0 +170764170862,216,0 +170764170912,216,0 +170764170961,215,0 +170764171009,214,0 +170764171057,214,0 +170764171105,213,0 +170764171152,214,0 +170764171200,215,0 +170764171250,214,0 +170764171297,215,0 +170764171345,215,0 +170764171393,215,0 +170764171441,215,0 +170764171489,216,0 +170764171537,216,0 +170764171585,215,0 +170764171632,216,0 +170764171680,215,0 +170764171728,215,0 +170764171776,214,0 +170764171824,213,0 +170764171872,214,0 +170764171919,214,0 +170764171969,214,0 +170764172017,214,0 +170764172065,214,0 +170764172112,214,0 +170764172160,215,0 +170764172210,215,0 +170764172259,215,0 +170764172307,215,0 +170764172355,215,0 +170764172403,216,0 +170764172451,216,0 +170764172500,215,0 +170764172550,215,0 +170764172598,213,0 +170764172646,213,0 +170764172693,214,0 +170764172743,213,0 +170764172792,214,0 +170764172840,214,0 +170764172888,214,0 +170764172938,215,0 +170764172986,214,0 +170764173033,215,0 +170764173081,215,0 +170764173129,216,0 +170764173177,215,0 +170764173225,217,0 +170764173273,216,0 +170764173321,216,0 +170764173369,215,0 +170764173416,213,0 +170764173466,214,0 +170764173514,213,0 +170764173562,214,0 +170764173610,214,0 +170764173658,214,0 +170764173705,214,0 +170764173755,215,0 +170764173803,215,0 +170764173852,215,0 +170764173900,216,0 +170764173948,216,0 +170764173998,216,0 +170764174045,216,0 +170764174093,216,0 +170764174141,216,0 +170764174190,214,0 +170764174238,214,0 +170764174288,214,0 +170764174337,214,0 +170764174387,215,0 +170764174435,215,0 +170764174483,215,0 +170764174531,215,0 +170764174580,216,0 +170764174630,216,0 +170764174678,216,0 +170764174725,216,0 +170764174775,216,0 +170764174823,215,0 +170764174872,216,0 +170764174920,216,0 +170764174968,215,0 +170764175016,215,0 +170764175064,215,0 +170764175112,215,0 +170764175160,215,0 +170764175207,215,0 +170764175255,216,0 +170764175303,216,0 +170764175351,215,0 +170764175399,216,0 +170764175446,216,0 +170764175496,216,0 +170764175544,216,0 +170764175591,216,0 +170764175639,216,0 +170764175687,216,0 +170764175735,216,0 +170764175783,214,0 +170764175830,213,0 +170764175878,214,0 +170764175926,214,0 +170764175974,214,0 +170764176022,214,0 +170764176070,215,0 +170764176117,215,0 +170764176165,215,0 +170764176213,215,0 +170764176263,215,0 +170764176310,215,0 +170764176360,216,0 +170764176408,216,0 +170764176455,216,0 +170764176503,216,0 +170764176551,216,0 +170764176599,214,0 +170764176647,213,0 +170764176695,214,0 +170764176742,214,0 +170764176790,214,0 +170764176838,214,0 +170764176886,214,0 +170764176935,215,0 +170764176983,214,0 +170764177031,215,0 +170764177081,215,0 +170764177128,216,0 +170764177176,216,0 +170764177224,216,0 +170764177272,216,0 +170764177320,216,0 +170764177368,216,0 +170764177415,213,0 +170764177463,213,0 +170764177511,214,0 +170764177559,214,0 +170764177607,214,0 +170764177654,214,0 +170764177702,215,0 +170764177750,215,0 +170764177798,215,0 +170764177846,215,0 +170764177894,215,0 +170764177942,215,0 +170764177989,216,0 +170764178037,216,0 +170764178085,215,0 +170764178133,216,0 +170764178182,214,0 +170764178230,213,0 +170764178280,213,0 +170764178327,214,0 +170764178375,214,0 +170764178423,214,0 +170764178471,215,0 +170764178519,215,0 +170764178567,215,0 +170764178614,215,0 +170764178662,215,0 +170764178710,215,0 +170764178758,216,0 +170764178806,215,0 +170764178854,216,0 +170764178901,216,0 +170764178949,216,0 +170764178997,214,0 +170764179045,213,0 +170764179093,214,0 +170764179141,214,0 +170764179188,214,0 +170764179236,214,0 +170764179284,215,0 +170764179332,215,0 +170764179380,215,0 +170764179428,215,0 +170764179476,215,0 +170764179523,216,0 +170764179571,216,0 +170764179619,216,0 +170764179668,216,0 +170764179716,216,0 +170764179764,216,0 +170764179812,214,0 +170764179860,213,0 +170764179909,214,0 +170764179957,214,0 +170764180005,214,0 +170764180053,214,0 +170764180100,215,0 +170764180148,215,0 +170764180196,215,0 +170764180244,214,0 +170764180292,216,0 +170764180341,216,0 +170764180389,216,0 +170764180437,216,0 +170764180485,216,0 +170764180534,216,0 +170764180582,215,0 +170764180630,214,0 +170764180678,214,0 +170764180726,214,0 +170764180774,214,0 +170764180821,214,0 +170764180869,215,0 +170764180917,215,0 +170764180965,215,0 +170764181013,215,0 +170764181061,215,0 +170764181110,216,0 +170764181158,215,0 +170764181206,216,0 +170764181254,216,0 +170764181301,216,0 +170764181349,215,0 +170764181397,214,0 +170764181445,214,0 +170764181493,214,0 +170764181541,214,0 +170764181589,214,0 +170764181636,215,0 +170764181684,215,0 +170764181732,215,0 +170764181780,215,0 +170764181828,215,0 +170764181876,216,0 +170764181923,216,0 +170764181971,215,0 +170764182019,216,0 +170764182067,216,0 +170764182115,216,0 +170764182163,216,0 +170764182211,214,0 +170764182258,213,0 +170764182306,213,0 +170764182354,214,0 +170764182402,214,0 +170764182450,215,0 +170764182498,214,0 +170764182546,215,0 +170764182593,215,0 +170764182641,215,0 +170764182689,215,0 +170764182737,216,0 +170764182785,216,0 +170764182833,216,0 +170764182881,216,0 +170764182930,216,0 +170764182978,215,0 +170764183026,214,0 +170764183074,214,0 +170764183121,213,0 +170764183169,214,0 +170764183217,214,0 +170764183265,214,0 +170764183313,214,0 +170764183361,215,0 +170764183409,215,0 +170764183458,215,0 +170764183506,215,0 +170764183555,216,0 +170764183603,216,0 +170764183653,216,0 +170764183701,216,0 +170764183750,216,0 +170764183798,214,0 +170764183846,214,0 +170764183894,214,0 +170764183942,214,0 +170764183991,214,0 +170764184039,214,0 +170764184087,214,0 +170764184135,215,0 +170764184183,215,0 +170764184230,215,0 +170764184278,216,0 +170764184326,216,0 +170764184374,216,0 +170764184423,216,0 +170764184471,216,0 +170764184519,216,0 +170764184567,216,0 +170764184615,214,0 +170764184662,214,0 +170764184712,213,0 +170764184759,214,0 +170764184809,214,0 +170764184857,215,0 +170764184905,215,0 +170764184953,215,0 +170764185000,215,0 +170764185048,215,0 +170764185096,215,0 +170764185144,215,0 +170764185192,216,0 +170764185240,216,0 +170764185289,216,0 +170764185337,216,0 +170764185385,215,0 +170764185433,214,0 +170764185481,214,0 +170764185528,214,0 +170764185576,214,0 +170764185624,214,0 +170764185672,215,0 +170764185719,215,0 +170764185767,215,0 +170764185815,215,0 +170764185865,215,0 +170764185912,215,0 +170764185960,215,0 +170764186008,216,0 +170764186056,216,0 +170764186104,216,0 +170764186153,216,0 +170764186201,214,0 +170764186249,214,0 +170764186297,214,0 +170764186346,214,0 +170764186394,215,0 +170764186442,215,0 +170764186490,215,0 +170764186538,215,0 +170764186586,216,0 +170764186633,216,0 +170764186681,216,0 +170764186729,216,0 +170764186777,216,0 +170764186825,216,0 +170764186873,216,0 +170764186920,216,0 +170764186970,216,0 +170764187018,215,0 +170764187065,215,0 +170764187115,215,0 +170764187163,215,0 +170764187212,215,0 +170764187260,215,0 +170764187308,215,0 +170764187357,216,0 +170764187405,216,0 +170764187453,216,0 +170764187501,216,0 +170764187548,216,0 +170764187596,216,0 +170764187646,216,0 +170764187694,216,0 +170764187741,216,0 +170764187789,216,0 +170764187837,214,0 +170764187885,214,0 +170764187933,215,0 +170764187981,215,0 +170764188028,215,0 +170764188076,215,0 +170764188124,215,0 +170764188172,215,0 +170764188220,215,0 +170764188268,216,0 +170764188316,216,0 +170764188363,216,0 +170764188411,216,0 +170764188461,216,0 +170764188509,216,0 +170764188556,216,0 +170764188604,214,0 +170764188652,214,0 +170764188700,214,0 +170764188748,214,0 +170764188796,214,0 +170764188844,215,0 +170764188891,215,0 +170764188939,215,0 +170764188987,215,0 +170764189035,215,0 +170764189083,215,0 +170764189131,216,0 +170764189178,216,0 +170764189226,217,0 +170764189274,216,0 +170764189322,216,0 +170764189370,215,0 +170764189418,214,0 +170764189465,214,0 +170764189513,214,0 +170764189563,214,0 +170764189612,215,0 +170764189660,215,0 +170764189710,215,0 +170764189757,215,0 +170764189805,215,0 +170764189853,215,0 +170764189901,215,0 +170764189949,215,0 +170764189997,216,0 +170764190044,216,0 +170764190092,216,0 +170764190140,216,0 +170764190188,216,0 +170764190236,214,0 +170764190285,214,0 +170764190333,214,0 +170764190383,214,0 +170764190431,214,0 +170764190480,214,0 +170764190528,215,0 +170764190576,215,0 +170764190624,215,0 +170764190671,216,0 +170764190719,215,0 +170764190767,216,0 +170764190815,216,0 +170764190864,216,0 +170764190912,216,0 +170764190960,215,0 +170764191008,214,0 +170764191056,214,0 +170764191103,214,0 +170764191151,214,0 +170764191199,214,0 +170764191247,214,0 +170764191295,215,0 +170764191343,215,0 +170764191390,216,0 +170764191438,216,0 +170764191486,215,0 +170764191534,216,0 +170764191583,216,0 +170764191631,216,0 +170764191679,216,0 +170764191728,215,0 +170764191776,216,0 +170764191824,214,0 +170764191872,214,0 +170764191920,214,0 +170764191968,214,0 +170764192015,215,0 +170764192065,215,0 +170764192113,215,0 +170764192161,215,0 +170764192208,215,0 +170764192256,215,0 +170764192304,216,0 +170764192352,215,0 +170764192400,216,0 +170764192448,216,0 +170764192496,216,0 +170764192544,216,0 +170764192592,215,0 +170764192640,214,0 +170764192689,214,0 +170764192739,214,0 +170764192787,214,0 +170764192835,215,0 +170764192882,215,0 +170764192932,215,0 +170764192980,215,0 +170764193028,215,0 +170764193076,215,0 +170764193124,215,0 +170764193172,216,0 +170764193219,216,0 +170764193267,215,0 +170764193315,216,0 +170764193363,216,0 +170764193411,215,0 +170764193461,214,0 +170764193508,214,0 +170764193556,214,0 +170764193604,215,0 +170764193654,215,0 +170764193702,215,0 +170764193749,215,0 +170764193797,215,0 +170764193845,216,0 +170764193893,215,0 +170764193941,216,0 +170764193990,215,0 +170764194038,216,0 +170764194087,216,0 +170764194135,216,0 +170764194185,216,0 +170764194233,214,0 +170764194280,214,0 +170764194328,214,0 +170764194376,214,0 +170764194424,214,0 +170764194472,214,0 +170764194520,215,0 +170764194569,215,0 +170764194617,215,0 +170764194665,216,0 +170764194712,216,0 +170764194760,216,0 +170764194810,216,0 +170764194858,215,0 +170764194905,216,0 +170764194953,216,0 +170764195001,215,0 +170764195049,214,0 +170764195098,214,0 +170764195146,214,0 +170764195194,214,0 +170764195242,214,0 +170764195290,215,0 +170764195338,214,0 +170764195385,215,0 +170764195433,215,0 +170764195481,215,0 +170764195529,215,0 +170764195577,215,0 +170764195625,216,0 +170764195672,216,0 +170764195720,216,0 +170764195768,216,0 +170764195816,214,0 +170764195864,213,0 +170764195912,213,0 +170764195959,213,0 +170764196009,214,0 +170764196057,214,0 +170764196104,214,0 +170764196152,214,0 +170764196200,215,0 +170764196248,215,0 +170764196296,215,0 +170764196344,216,0 +170764196392,216,0 +170764196439,215,0 +170764196487,216,0 +170764196535,216,0 +170764196584,216,0 +170764196632,213,0 +170764196680,213,0 +170764196728,213,0 +170764196776,213,0 +170764196824,213,0 +170764196872,214,0 +170764196919,214,0 +170764196967,214,0 +170764197015,214,0 +170764197065,214,0 +170764197113,215,0 +170764197160,215,0 +170764197208,216,0 +170764197256,216,0 +170764197304,215,0 +170764197352,216,0 +170764197399,215,0 +170764197447,213,0 +170764197495,213,0 +170764197543,213,0 +170764197591,213,0 +170764197639,214,0 +170764197687,214,0 +170764197734,214,0 +170764197782,214,0 +170764197830,214,0 +170764197878,214,0 +170764197926,215,0 +170764197973,214,0 +170764198021,215,0 +170764198069,215,0 +170764198117,215,0 +170764198165,216,0 +170764198214,215,0 +170764198262,213,0 +170764198310,213,0 +170764198358,213,0 +170764198406,214,0 +170764198453,214,0 +170764198501,214,0 +170764198549,214,0 +170764198598,214,0 +170764198646,215,0 +170764198694,215,0 +170764198742,215,0 +170764198790,216,0 +170764198838,216,0 +170764198886,216,0 +170764198933,216,0 +170764198981,215,0 +170764199029,214,0 +170764199077,214,0 +170764199125,214,0 +170764199174,214,0 +170764199222,214,0 +170764199270,215,0 +170764199318,215,0 +170764199366,215,0 +170764199413,215,0 +170764199463,216,0 +170764199511,215,0 +170764199558,216,0 +170764199608,216,0 +170764199656,216,0 +170764199705,216,0 +170764199753,216,0 +170764199801,216,0 +170764199849,214,0 +170764199898,214,0 +170764199948,215,0 +170764199996,214,0 diff --git a/laser_value/0211-19.csv b/laser_value/0211-19.csv new file mode 100644 index 0000000..0b94677 --- /dev/null +++ b/laser_value/0211-19.csv @@ -0,0 +1,7447 @@ +timestamp,laser_value,event +170764200044,214,0 +170764200092,215,0 +170764200140,215,0 +170764200188,215,0 +170764200237,215,0 +170764200285,216,0 +170764200333,215,0 +170764200381,215,0 +170764200428,216,0 +170764200476,216,0 +170764200524,216,0 +170764200572,216,0 +170764200620,214,0 +170764200668,214,0 +170764200716,214,0 +170764200763,214,0 +170764200811,215,0 +170764200859,215,0 +170764200907,214,0 +170764200956,215,0 +170764201006,215,0 +170764201054,216,0 +170764201101,216,0 +170764201149,216,0 +170764201199,216,0 +170764201247,216,0 +170764201294,215,0 +170764201342,216,0 +170764201390,215,0 +170764201438,214,0 +170764201486,214,0 +170764201535,214,0 +170764201585,214,0 +170764201633,215,0 +170764201681,214,0 +170764201729,215,0 +170764201778,215,0 +170764201828,216,0 +170764201876,215,0 +170764201925,216,0 +170764201973,216,0 +170764202021,216,0 +170764202069,216,0 +170764202117,216,0 +170764202166,216,0 +170764202214,216,0 +170764202264,214,0 +170764202312,215,0 +170764202360,215,0 +170764202408,215,0 +170764202456,214,0 +170764202504,215,0 +170764202552,215,0 +170764202601,215,0 +170764202651,215,0 +170764202699,215,0 +170764202748,215,0 +170764202796,216,0 +170764202844,216,0 +170764202892,216,0 +170764202940,216,0 +170764202987,214,0 +170764203035,215,0 +170764203083,214,0 +170764203131,215,0 +170764203179,215,0 +170764203227,215,0 +170764203276,216,0 +170764203324,216,0 +170764203374,216,0 +170764203423,216,0 +170764203471,216,0 +170764203519,216,0 +170764203567,216,0 +170764203617,216,0 +170764203665,216,0 +170764203713,216,0 +170764203761,216,0 +170764203809,216,0 +170764203857,215,0 +170764203906,215,0 +170764203954,216,0 +170764204002,216,0 +170764204051,216,0 +170764204099,216,0 +170764204149,216,0 +170764204197,216,0 +170764204245,216,0 +170764204293,217,0 +170764204340,217,0 +170764204388,216,0 +170764204436,216,0 +170764204484,216,0 +170764204532,216,0 +170764204579,216,0 +170764204629,214,0 +170764204677,214,0 +170764204726,214,0 +170764204776,214,0 +170764204823,215,0 +170764204871,215,0 +170764204919,215,0 +170764204967,215,0 +170764205015,216,0 +170764205063,216,0 +170764205110,216,0 +170764205158,216,0 +170764205206,216,0 +170764205254,216,0 +170764205302,216,0 +170764205351,216,0 +170764205401,216,0 +170764205448,214,0 +170764205496,214,0 +170764205544,214,0 +170764205592,214,0 +170764205640,215,0 +170764205688,215,0 +170764205736,215,0 +170764205785,215,0 +170764205833,215,0 +170764205883,215,0 +170764205932,215,0 +170764205980,216,0 +170764206028,215,0 +170764206076,216,0 +170764206124,215,0 +170764206171,216,0 +170764206219,216,0 +170764206267,214,0 +170764206315,214,0 +170764206363,214,0 +170764206411,214,0 +170764206459,214,0 +170764206508,215,0 +170764206558,214,0 +170764206606,215,0 +170764206654,215,0 +170764206703,216,0 +170764206751,216,0 +170764206799,216,0 +170764206847,214,0 +170764206897,215,0 +170764206945,216,0 +170764206993,215,0 +170764207040,214,0 +170764207088,213,0 +170764207138,214,0 +170764207186,214,0 +170764207234,214,0 +170764207281,215,0 +170764207329,214,0 +170764207377,215,0 +170764207427,215,0 +170764207475,215,0 +170764207524,215,0 +170764207574,215,0 +170764207623,216,0 +170764207671,216,0 +170764207721,216,0 +170764207770,216,0 +170764207818,215,0 +170764207868,213,0 +170764207916,213,0 +170764207963,213,0 +170764208011,214,0 +170764208061,214,0 +170764208109,214,0 +170764208157,214,0 +170764208205,214,0 +170764208255,214,0 +170764208302,215,0 +170764208352,215,0 +170764208400,215,0 +170764208448,215,0 +170764208496,215,0 +170764208544,215,0 +170764208592,216,0 +170764208640,214,0 +170764208687,213,0 +170764208735,213,0 +170764208783,213,0 +170764208831,213,0 +170764208881,213,0 +170764208929,213,0 +170764208976,214,0 +170764209026,214,0 +170764209074,214,0 +170764209122,214,0 +170764209170,215,0 +170764209219,215,0 +170764209269,215,0 +170764209318,216,0 +170764209366,216,0 +170764209416,215,0 +170764209465,213,0 +170764209513,213,0 +170764209561,213,0 +170764209609,214,0 +170764209657,213,0 +170764209705,214,0 +170764209754,214,0 +170764209803,214,0 +170764209853,215,0 +170764209901,215,0 +170764209950,214,0 +170764209998,215,0 +170764210046,215,0 +170764210096,215,0 +170764210145,216,0 +170764210193,216,0 +170764210243,214,0 +170764210291,213,0 +170764210339,213,0 +170764210387,214,0 +170764210435,214,0 +170764210483,214,0 +170764210531,214,0 +170764210578,215,0 +170764210626,215,0 +170764210676,215,0 +170764210724,215,0 +170764210771,215,0 +170764210821,216,0 +170764210869,216,0 +170764210917,216,0 +170764210964,216,0 +170764211012,215,0 +170764211060,214,0 +170764211108,214,0 +170764211156,214,0 +170764211205,214,0 +170764211255,214,0 +170764211304,215,0 +170764211354,215,0 +170764211402,215,0 +170764211449,215,0 +170764211497,215,0 +170764211545,216,0 +170764211593,216,0 +170764211641,216,0 +170764211691,216,0 +170764211739,216,0 +170764211787,216,0 +170764211835,215,0 +170764211882,214,0 +170764211930,214,0 +170764211978,215,0 +170764212028,215,0 +170764212076,215,0 +170764212124,215,0 +170764212173,215,0 +170764212221,215,0 +170764212269,216,0 +170764212317,216,0 +170764212365,216,0 +170764212414,216,0 +170764212462,216,0 +170764212510,216,0 +170764212560,216,0 +170764212608,216,0 +170764212657,214,0 +170764212705,214,0 +170764212753,214,0 +170764212801,215,0 +170764212849,215,0 +170764212897,214,0 +170764212946,215,0 +170764212994,215,0 +170764213042,215,0 +170764213090,216,0 +170764213138,215,0 +170764213188,216,0 +170764213237,216,0 +170764213285,216,0 +170764213333,216,0 +170764213383,216,0 +170764213432,214,0 +170764213480,214,0 +170764213530,214,0 +170764213579,215,0 +170764213627,214,0 +170764213675,215,0 +170764213723,215,0 +170764213771,215,0 +170764213820,215,0 +170764213868,215,0 +170764213916,216,0 +170764213964,216,0 +170764214012,216,0 +170764214060,216,0 +170764214107,216,0 +170764214155,215,0 +170764214203,216,0 +170764214253,214,0 +170764214301,214,0 +170764214350,214,0 +170764214398,215,0 +170764214446,215,0 +170764214494,215,0 +170764214542,215,0 +170764214591,215,0 +170764214639,216,0 +170764214687,215,0 +170764214735,216,0 +170764214783,216,0 +170764214831,216,0 +170764214879,216,0 +170764214927,216,0 +170764214975,216,0 +170764215024,216,0 +170764215074,214,0 +170764215123,214,0 +170764215171,214,0 +170764215221,214,0 +170764215270,214,0 +170764215318,215,0 +170764215366,214,0 +170764215414,215,0 +170764215463,216,0 +170764215511,216,0 +170764215559,216,0 +170764215607,216,0 +170764215655,216,0 +170764215703,216,0 +170764215752,216,0 +170764215800,216,0 +170764215848,214,0 +170764215896,214,0 +170764215944,214,0 +170764215992,215,0 +170764216040,214,0 +170764216088,215,0 +170764216136,215,0 +170764216183,215,0 +170764216231,216,0 +170764216279,216,0 +170764216327,216,0 +170764216375,216,0 +170764216423,216,0 +170764216473,216,0 +170764216521,216,0 +170764216570,216,0 +170764216618,216,0 +170764216666,214,0 +170764216714,214,0 +170764216764,214,0 +170764216812,215,0 +170764216861,215,0 +170764216911,215,0 +170764216959,215,0 +170764217008,215,0 +170764217058,215,0 +170764217105,215,0 +170764217153,216,0 +170764217203,215,0 +170764217251,216,0 +170764217300,216,0 +170764217348,216,0 +170764217396,216,0 +170764217444,214,0 +170764217492,214,0 +170764217540,214,0 +170764217588,214,0 +170764217636,215,0 +170764217683,214,0 +170764217731,215,0 +170764217779,215,0 +170764217827,215,0 +170764217876,216,0 +170764217924,216,0 +170764217972,216,0 +170764218022,216,0 +170764218070,216,0 +170764218118,216,0 +170764218166,215,0 +170764218214,216,0 +170764218263,214,0 +170764218313,214,0 +170764218362,214,0 +170764218410,215,0 +170764218458,215,0 +170764218506,215,0 +170764218555,215,0 +170764218605,215,0 +170764218653,216,0 +170764218701,216,0 +170764218748,216,0 +170764218798,216,0 +170764218848,216,0 +170764218895,216,0 +170764218945,216,0 +170764218994,216,0 +170764219042,214,0 +170764219090,214,0 +170764219138,214,0 +170764219186,214,0 +170764219234,215,0 +170764219282,215,0 +170764219330,215,0 +170764219379,215,0 +170764219427,215,0 +170764219475,216,0 +170764219523,216,0 +170764219571,215,0 +170764219619,216,0 +170764219669,216,0 +170764219717,216,0 +170764219764,216,0 +170764219814,216,0 +170764219862,214,0 +170764219910,214,0 +170764219959,214,0 +170764220007,214,0 +170764220057,215,0 +170764220105,215,0 +170764220154,215,0 +170764220202,215,0 +170764220250,215,0 +170764220299,215,0 +170764220347,216,0 +170764220397,216,0 +170764220446,216,0 +170764220494,215,0 +170764220542,215,0 +170764220590,216,0 +170764220639,215,0 +170764220687,213,0 +170764220735,213,0 +170764220783,213,0 +170764220831,214,0 +170764220879,214,0 +170764220927,214,0 +170764220975,214,0 +170764221022,214,0 +170764221070,215,0 +170764221118,215,0 +170764221166,215,0 +170764221214,216,0 +170764221262,216,0 +170764221310,215,0 +170764221358,216,0 +170764221406,216,0 +170764221453,214,0 +170764221501,213,0 +170764221551,213,0 +170764221599,214,0 +170764221646,214,0 +170764221694,214,0 +170764221742,214,0 +170764221792,214,0 +170764221841,214,0 +170764221891,215,0 +170764221940,215,0 +170764221988,215,0 +170764222036,215,0 +170764222084,216,0 +170764222132,216,0 +170764222180,216,0 +170764222228,216,0 +170764222277,213,0 +170764222325,213,0 +170764222373,213,0 +170764222421,214,0 +170764222469,214,0 +170764222517,214,0 +170764222565,214,0 +170764222613,214,0 +170764222661,215,0 +170764222710,215,0 +170764222758,215,0 +170764222806,215,0 +170764222854,216,0 +170764222901,215,0 +170764222949,216,0 +170764222997,216,0 +170764223045,214,0 +170764223094,213,0 +170764223142,214,0 +170764223190,214,0 +170764223238,214,0 +170764223286,215,0 +170764223335,215,0 +170764223383,215,0 +170764223431,215,0 +170764223479,216,0 +170764223527,216,0 +170764223575,216,0 +170764223623,216,0 +170764223671,216,0 +170764223719,216,0 +170764223768,216,0 +170764223816,216,0 +170764223866,214,0 +170764223914,214,0 +170764223962,214,0 +170764224011,215,0 +170764224059,215,0 +170764224107,215,0 +170764224155,215,0 +170764224203,215,0 +170764224251,216,0 +170764224299,216,0 +170764224347,216,0 +170764224395,216,0 +170764224443,216,0 +170764224490,216,0 +170764224538,216,0 +170764224586,216,0 +170764224634,215,0 +170764224682,213,0 +170764224730,213,0 +170764224778,214,0 +170764224827,214,0 +170764224875,214,0 +170764224924,214,0 +170764224972,214,0 +170764225022,215,0 +170764225071,215,0 +170764225119,215,0 +170764225167,215,0 +170764225215,215,0 +170764225263,216,0 +170764225312,216,0 +170764225360,216,0 +170764225410,216,0 +170764225459,214,0 +170764225509,213,0 +170764225557,213,0 +170764225605,214,0 +170764225653,214,0 +170764225702,214,0 +170764225752,214,0 +170764225800,214,0 +170764225849,214,0 +170764225897,215,0 +170764225945,215,0 +170764225993,214,0 +170764226043,215,0 +170764226092,215,0 +170764226140,215,0 +170764226189,215,0 +170764226237,215,0 +170764226285,216,0 +170764226335,216,0 +170764226383,216,0 +170764226430,216,0 +170764226478,216,0 +170764226526,216,0 +170764226574,216,0 +170764226622,216,0 +170764226670,213,0 +170764226718,213,0 +170764226765,214,0 +170764226813,214,0 +170764226863,214,0 +170764226911,214,0 +170764226958,215,0 +170764227006,215,0 +170764227054,215,0 +170764227102,215,0 +170764227150,216,0 +170764227198,215,0 +170764227248,216,0 +170764227295,216,0 +170764227345,216,0 +170764227393,216,0 +170764227441,214,0 +170764227489,214,0 +170764227537,214,0 +170764227585,214,0 +170764227633,214,0 +170764227681,214,0 +170764227730,214,0 +170764227778,214,0 +170764227827,215,0 +170764227875,216,0 +170764227923,216,0 +170764227971,215,0 +170764228019,216,0 +170764228069,216,0 +170764228118,215,0 +170764228166,216,0 +170764228216,216,0 +170764228263,214,0 +170764228311,214,0 +170764228359,214,0 +170764228407,214,0 +170764228455,214,0 +170764228503,215,0 +170764228551,215,0 +170764228599,215,0 +170764228647,215,0 +170764228695,216,0 +170764228743,216,0 +170764228790,216,0 +170764228838,216,0 +170764228888,216,0 +170764228936,216,0 +170764228984,216,0 +170764229032,216,0 +170764229081,214,0 +170764229129,214,0 +170764229177,214,0 +170764229225,214,0 +170764229274,214,0 +170764229322,215,0 +170764229370,215,0 +170764229420,215,0 +170764229468,215,0 +170764229516,215,0 +170764229563,216,0 +170764229611,216,0 +170764229659,216,0 +170764229707,216,0 +170764229755,216,0 +170764229803,216,0 +170764229851,214,0 +170764229899,214,0 +170764229947,213,0 +170764229995,214,0 +170764230043,214,0 +170764230092,215,0 +170764230140,215,0 +170764230188,215,0 +170764230238,215,0 +170764230286,215,0 +170764230334,216,0 +170764230381,216,0 +170764230429,216,0 +170764230477,216,0 +170764230525,216,0 +170764230575,216,0 +170764230624,216,0 +170764230672,214,0 +170764230722,213,0 +170764230770,214,0 +170764230818,214,0 +170764230867,215,0 +170764230917,214,0 +170764230965,215,0 +170764231013,215,0 +170764231061,215,0 +170764231108,215,0 +170764231156,215,0 +170764231206,216,0 +170764231254,215,0 +170764231302,215,0 +170764231351,216,0 +170764231399,216,0 +170764231449,214,0 +170764231497,214,0 +170764231545,214,0 +170764231592,214,0 +170764231640,214,0 +170764231688,214,0 +170764231736,215,0 +170764231784,215,0 +170764231832,215,0 +170764231880,215,0 +170764231930,215,0 +170764231979,215,0 +170764232027,215,0 +170764232075,215,0 +170764232125,216,0 +170764232172,216,0 +170764232222,216,0 +170764232270,214,0 +170764232318,214,0 +170764232366,214,0 +170764232414,214,0 +170764232463,214,0 +170764232513,214,0 +170764232560,215,0 +170764232608,215,0 +170764232658,215,0 +170764232706,215,0 +170764232755,215,0 +170764232803,216,0 +170764232853,216,0 +170764232901,216,0 +170764232950,216,0 +170764233000,215,0 +170764233049,214,0 +170764233097,214,0 +170764233145,214,0 +170764233193,215,0 +170764233241,215,0 +170764233289,215,0 +170764233338,215,0 +170764233386,215,0 +170764233434,215,0 +170764233482,216,0 +170764233532,216,0 +170764233580,215,0 +170764233629,216,0 +170764233679,216,0 +170764233726,216,0 +170764233776,216,0 +170764233824,216,0 +170764233873,214,0 +170764233923,214,0 +170764233971,214,0 +170764234020,214,0 +170764234068,215,0 +170764234116,215,0 +170764234165,215,0 +170764234213,215,0 +170764234261,215,0 +170764234309,215,0 +170764234357,216,0 +170764234405,216,0 +170764234455,216,0 +170764234503,216,0 +170764234550,215,0 +170764234600,216,0 +170764234648,215,0 +170764234696,214,0 +170764234744,214,0 +170764234793,215,0 +170764234841,215,0 +170764234891,215,0 +170764234940,215,0 +170764234988,215,0 +170764235036,215,0 +170764235084,216,0 +170764235132,216,0 +170764235180,216,0 +170764235229,215,0 +170764235277,215,0 +170764235325,216,0 +170764235373,215,0 +170764235421,216,0 +170764235470,215,0 +170764235520,215,0 +170764235569,214,0 +170764235617,215,0 +170764235665,215,0 +170764235713,216,0 +170764235761,216,0 +170764235809,216,0 +170764235858,216,0 +170764235906,216,0 +170764235954,216,0 +170764236002,216,0 +170764236050,216,0 +170764236100,216,0 +170764236149,216,0 +170764236197,215,0 +170764236245,214,0 +170764236293,214,0 +170764236341,215,0 +170764236389,215,0 +170764236437,215,0 +170764236484,215,0 +170764236532,215,0 +170764236582,216,0 +170764236630,216,0 +170764236678,216,0 +170764236726,216,0 +170764236775,216,0 +170764236825,217,0 +170764236873,216,0 +170764236921,216,0 +170764236969,216,0 +170764237018,216,0 +170764237066,214,0 +170764237114,214,0 +170764237164,214,0 +170764237213,214,0 +170764237261,214,0 +170764237309,215,0 +170764237359,215,0 +170764237408,215,0 +170764237456,215,0 +170764237504,215,0 +170764237552,215,0 +170764237600,215,0 +170764237650,216,0 +170764237699,216,0 +170764237747,216,0 +170764237795,216,0 +170764237844,216,0 +170764237892,213,0 +170764237940,213,0 +170764237990,214,0 +170764238038,214,0 +170764238086,214,0 +170764238135,214,0 +170764238185,214,0 +170764238233,214,0 +170764238281,215,0 +170764238328,215,0 +170764238376,215,0 +170764238424,215,0 +170764238472,215,0 +170764238520,216,0 +170764238570,216,0 +170764238619,216,0 +170764238669,214,0 +170764238717,213,0 +170764238765,214,0 +170764238813,214,0 +170764238861,214,0 +170764238908,214,0 +170764238956,214,0 +170764239004,215,0 +170764239054,215,0 +170764239103,215,0 +170764239151,215,0 +170764239199,216,0 +170764239247,216,0 +170764239295,216,0 +170764239345,216,0 +170764239392,216,0 +170764239440,215,0 +170764239490,214,0 +170764239539,214,0 +170764239587,214,0 +170764239637,214,0 +170764239686,214,0 +170764239734,215,0 +170764239784,215,0 +170764239831,215,0 +170764239880,216,0 +170764239927,215,0 +170764239975,216,0 +170764240023,216,0 +170764240073,216,0 +170764240122,216,0 +170764240170,216,0 +170764240218,216,0 +170764240266,214,0 +170764240314,214,0 +170764240362,214,0 +170764240410,214,0 +170764240458,215,0 +170764240506,215,0 +170764240554,215,0 +170764240603,216,0 +170764240651,215,0 +170764240701,216,0 +170764240750,216,0 +170764240798,216,0 +170764240846,216,0 +170764240894,216,0 +170764240944,216,0 +170764240992,216,0 +170764241041,216,0 +170764241089,214,0 +170764241137,214,0 +170764241186,214,0 +170764241236,214,0 +170764241285,215,0 +170764241335,215,0 +170764241383,215,0 +170764241432,215,0 +170764241480,215,0 +170764241528,216,0 +170764241576,216,0 +170764241626,216,0 +170764241675,216,0 +170764241725,216,0 +170764241773,216,0 +170764241821,216,0 +170764241869,214,0 +170764241917,214,0 +170764241966,214,0 +170764242014,214,0 +170764242063,214,0 +170764242113,215,0 +170764242163,215,0 +170764242212,215,0 +170764242260,215,0 +170764242310,214,0 +170764242358,215,0 +170764242407,216,0 +170764242457,216,0 +170764242504,216,0 +170764242554,216,0 +170764242604,215,0 +170764242651,215,0 +170764242699,213,0 +170764242749,214,0 +170764242797,214,0 +170764242845,214,0 +170764242893,214,0 +170764242940,215,0 +170764242988,215,0 +170764243038,215,0 +170764243086,215,0 +170764243134,215,0 +170764243182,215,0 +170764243230,216,0 +170764243278,216,0 +170764243326,216,0 +170764243374,216,0 +170764243423,216,0 +170764243471,214,0 +170764243519,214,0 +170764243569,214,0 +170764243618,214,0 +170764243666,214,0 +170764243714,215,0 +170764243762,215,0 +170764243810,215,0 +170764243858,216,0 +170764243906,215,0 +170764243955,216,0 +170764244005,216,0 +170764244053,216,0 +170764244101,216,0 +170764244149,216,0 +170764244198,216,0 +170764244246,216,0 +170764244296,214,0 +170764244345,214,0 +170764244393,214,0 +170764244441,214,0 +170764244489,214,0 +170764244537,215,0 +170764244585,215,0 +170764244633,215,0 +170764244681,215,0 +170764244730,216,0 +170764244778,216,0 +170764244826,216,0 +170764244874,216,0 +170764244922,216,0 +170764244970,216,0 +170764245018,216,0 +170764245065,214,0 +170764245115,213,0 +170764245164,214,0 +170764245212,214,0 +170764245262,214,0 +170764245310,214,0 +170764245359,215,0 +170764245409,215,0 +170764245457,215,0 +170764245506,215,0 +170764245554,215,0 +170764245602,215,0 +170764245650,216,0 +170764245698,216,0 +170764245747,216,0 +170764245795,216,0 +170764245843,216,0 +170764245891,213,0 +170764245939,214,0 +170764245988,214,0 +170764246038,213,0 +170764246086,213,0 +170764246135,214,0 +170764246183,214,0 +170764246233,214,0 +170764246281,214,0 +170764246329,215,0 +170764246378,215,0 +170764246428,215,0 +170764246475,215,0 +170764246523,216,0 +170764246573,216,0 +170764246621,216,0 +170764246670,214,0 +170764246718,213,0 +170764246766,214,0 +170764246814,214,0 +170764246862,213,0 +170764246910,214,0 +170764246960,214,0 +170764247008,214,0 +170764247056,214,0 +170764247103,215,0 +170764247151,215,0 +170764247199,215,0 +170764247247,215,0 +170764247295,215,0 +170764247343,216,0 +170764247391,215,0 +170764247439,215,0 +170764247487,213,0 +170764247535,213,0 +170764247583,214,0 +170764247632,214,0 +170764247680,214,0 +170764247728,214,0 +170764247776,215,0 +170764247824,215,0 +170764247872,215,0 +170764247920,215,0 +170764247968,216,0 +170764248016,216,0 +170764248065,216,0 +170764248113,216,0 +170764248161,216,0 +170764248209,216,0 +170764248257,215,0 +170764248305,214,0 +170764248353,214,0 +170764248402,215,0 +170764248450,215,0 +170764248500,215,0 +170764248548,215,0 +170764248596,215,0 +170764248645,216,0 +170764248695,216,0 +170764248744,216,0 +170764248792,216,0 +170764248840,216,0 +170764248888,216,0 +170764248936,216,0 +170764248986,216,0 +170764249034,216,0 +170764249081,214,0 +170764249129,214,0 +170764249177,214,0 +170764249225,215,0 +170764249273,214,0 +170764249323,215,0 +170764249370,215,0 +170764249418,215,0 +170764249468,215,0 +170764249516,216,0 +170764249565,216,0 +170764249613,216,0 +170764249661,215,0 +170764249711,215,0 +170764249760,216,0 +170764249808,216,0 +170764249858,216,0 +170764249907,214,0 +170764249955,214,0 +170764250005,214,0 +170764250054,214,0 +170764250104,214,0 +170764250153,214,0 +170764250201,214,0 +170764250251,215,0 +170764250299,215,0 +170764250348,215,0 +170764250396,215,0 +170764250444,215,0 +170764250492,216,0 +170764250540,216,0 +170764250589,216,0 +170764250637,216,0 +170764250687,214,0 +170764250736,214,0 +170764250784,214,0 +170764250832,215,0 +170764250880,215,0 +170764250929,215,0 +170764250977,215,0 +170764251027,215,0 +170764251075,215,0 +170764251123,215,0 +170764251172,216,0 +170764251220,216,0 +170764251268,216,0 +170764251316,216,0 +170764251364,216,0 +170764251412,216,0 +170764251461,215,0 +170764251509,214,0 +170764251557,214,0 +170764251605,215,0 +170764251654,215,0 +170764251704,215,0 +170764251752,215,0 +170764251800,215,0 +170764251848,215,0 +170764251896,215,0 +170764251944,216,0 +170764251992,216,0 +170764252039,216,0 +170764252089,216,0 +170764252137,216,0 +170764252186,216,0 +170764252234,216,0 +170764252282,215,0 +170764252332,214,0 +170764252381,214,0 +170764252429,215,0 +170764252477,216,0 +170764252526,216,0 +170764252574,215,0 +170764252622,216,0 +170764252670,216,0 +170764252718,216,0 +170764252766,216,0 +170764252814,216,0 +170764252862,216,0 +170764252910,216,0 +170764252960,216,0 +170764253007,216,0 +170764253055,216,0 +170764253103,214,0 +170764253151,215,0 +170764253201,215,0 +170764253250,215,0 +170764253298,215,0 +170764253347,216,0 +170764253395,216,0 +170764253445,216,0 +170764253494,216,0 +170764253542,216,0 +170764253590,216,0 +170764253640,216,0 +170764253689,215,0 +170764253737,216,0 +170764253785,216,0 +170764253834,216,0 +170764253882,214,0 +170764253930,214,0 +170764253978,214,0 +170764254026,214,0 +170764254074,215,0 +170764254122,215,0 +170764254172,215,0 +170764254220,215,0 +170764254268,215,0 +170764254315,216,0 +170764254365,215,0 +170764254413,216,0 +170764254461,216,0 +170764254509,216,0 +170764254558,216,0 +170764254606,216,0 +170764254656,216,0 +170764254704,213,0 +170764254752,213,0 +170764254800,214,0 +170764254849,214,0 +170764254897,214,0 +170764254945,215,0 +170764254993,215,0 +170764255041,215,0 +170764255089,215,0 +170764255137,215,0 +170764255184,215,0 +170764255232,216,0 +170764255280,216,0 +170764255330,216,0 +170764255379,216,0 +170764255427,216,0 +170764255475,215,0 +170764255525,213,0 +170764255573,214,0 +170764255621,214,0 +170764255668,214,0 +170764255716,214,0 +170764255766,215,0 +170764255814,215,0 +170764255862,215,0 +170764255909,216,0 +170764255957,216,0 +170764256005,216,0 +170764256053,216,0 +170764256101,216,0 +170764256150,216,0 +170764256198,216,0 +170764256248,216,0 +170764256296,214,0 +170764256345,214,0 +170764256395,214,0 +170764256443,214,0 +170764256491,214,0 +170764256540,214,0 +170764256590,215,0 +170764256640,215,0 +170764256689,215,0 +170764256737,215,0 +170764256785,215,0 +170764256833,215,0 +170764256881,216,0 +170764256929,216,0 +170764256977,216,0 +170764257026,215,0 +170764257074,214,0 +170764257122,213,0 +170764257170,214,0 +170764257219,213,0 +170764257267,214,0 +170764257317,215,0 +170764257365,214,0 +170764257414,215,0 +170764257462,215,0 +170764257510,215,0 +170764257558,215,0 +170764257606,216,0 +170764257654,216,0 +170764257702,216,0 +170764257750,216,0 +170764257799,216,0 +170764257849,216,0 +170764257898,214,0 +170764257946,213,0 +170764257994,213,0 +170764258042,214,0 +170764258090,214,0 +170764258139,214,0 +170764258187,215,0 +170764258235,215,0 +170764258283,215,0 +170764258331,215,0 +170764258380,215,0 +170764258430,215,0 +170764258478,215,0 +170764258526,216,0 +170764258575,216,0 +170764258623,216,0 +170764258673,215,0 +170764258721,213,0 +170764258769,213,0 +170764258818,214,0 +170764258866,214,0 +170764258914,214,0 +170764258962,214,0 +170764259010,215,0 +170764259058,215,0 +170764259106,215,0 +170764259154,215,0 +170764259202,215,0 +170764259249,216,0 +170764259297,216,0 +170764259347,216,0 +170764259395,216,0 +170764259443,216,0 +170764259491,214,0 +170764259540,213,0 +170764259590,213,0 +170764259637,214,0 +170764259685,214,0 +170764259733,213,0 +170764259781,214,0 +170764259831,214,0 +170764259879,215,0 +170764259927,215,0 +170764259974,215,0 +170764260022,216,0 +170764260072,216,0 +170764260120,216,0 +170764260168,216,0 +170764260216,216,0 +170764260263,216,0 +170764260311,214,0 +170764260361,214,0 +170764260409,214,0 +170764260458,214,0 +170764260506,215,0 +170764260554,215,0 +170764260602,215,0 +170764260650,215,0 +170764260700,216,0 +170764260748,215,0 +170764260797,216,0 +170764260845,216,0 +170764260893,216,0 +170764260943,216,0 +170764260992,216,0 +170764261040,216,0 +170764261088,215,0 +170764261138,214,0 +170764261185,214,0 +170764261233,214,0 +170764261283,215,0 +170764261331,215,0 +170764261379,215,0 +170764261427,215,0 +170764261476,215,0 +170764261524,215,0 +170764261573,216,0 +170764261623,216,0 +170764261671,216,0 +170764261719,216,0 +170764261768,216,0 +170764261818,216,0 +170764261868,215,0 +170764261915,213,0 +170764261963,213,0 +170764262011,214,0 +170764262059,214,0 +170764262109,214,0 +170764262156,214,0 +170764262204,215,0 +170764262252,215,0 +170764262300,215,0 +170764262348,215,0 +170764262396,216,0 +170764262443,216,0 +170764262491,216,0 +170764262539,216,0 +170764262587,216,0 +170764262635,216,0 +170764262683,215,0 +170764262731,214,0 +170764262778,214,0 +170764262826,214,0 +170764262874,214,0 +170764262924,214,0 +170764262971,215,0 +170764263019,215,0 +170764263067,215,0 +170764263115,215,0 +170764263163,215,0 +170764263211,215,0 +170764263260,216,0 +170764263308,216,0 +170764263356,216,0 +170764263404,216,0 +170764263452,215,0 +170764263500,214,0 +170764263549,214,0 +170764263597,214,0 +170764263645,214,0 +170764263694,214,0 +170764263744,215,0 +170764263793,214,0 +170764263841,215,0 +170764263889,215,0 +170764263937,216,0 +170764263985,216,0 +170764264033,216,0 +170764264080,216,0 +170764264128,216,0 +170764264176,216,0 +170764264224,215,0 +170764264274,216,0 +170764264323,214,0 +170764264371,214,0 +170764264419,215,0 +170764264469,215,0 +170764264517,215,0 +170764264565,215,0 +170764264613,215,0 +170764264660,216,0 +170764264708,215,0 +170764264756,216,0 +170764264806,216,0 +170764264855,216,0 +170764264905,216,0 +170764264953,216,0 +170764265001,216,0 +170764265050,216,0 +170764265098,215,0 +170764265146,215,0 +170764265195,215,0 +170764265245,215,0 +170764265293,216,0 +170764265341,215,0 +170764265388,215,0 +170764265436,216,0 +170764265486,216,0 +170764265535,216,0 +170764265583,216,0 +170764265631,216,0 +170764265680,216,0 +170764265730,216,0 +170764265778,216,0 +170764265826,216,0 +170764265873,216,0 +170764265921,215,0 +170764265969,215,0 +170764266017,215,0 +170764266065,215,0 +170764266114,215,0 +170764266164,215,0 +170764266212,215,0 +170764266260,216,0 +170764266307,216,0 +170764266355,216,0 +170764266403,216,0 +170764266451,216,0 +170764266501,216,0 +170764266548,215,0 +170764266596,216,0 +170764266644,215,0 +170764266692,214,0 +170764266742,214,0 +170764266790,214,0 +170764266838,215,0 +170764266886,215,0 +170764266934,215,0 +170764266982,215,0 +170764267029,215,0 +170764267077,215,0 +170764267125,215,0 +170764267173,216,0 +170764267221,216,0 +170764267269,216,0 +170764267316,216,0 +170764267364,216,0 +170764267412,216,0 +170764267460,216,0 +170764267508,214,0 +170764267557,214,0 +170764267605,214,0 +170764267653,215,0 +170764267701,215,0 +170764267749,215,0 +170764267796,215,0 +170764267844,215,0 +170764267892,216,0 +170764267940,215,0 +170764267988,216,0 +170764268037,216,0 +170764268085,216,0 +170764268133,216,0 +170764268181,215,0 +170764268229,216,0 +170764268277,216,0 +170764268325,213,0 +170764268372,214,0 +170764268420,214,0 +170764268468,214,0 +170764268516,214,0 +170764268564,215,0 +170764268612,215,0 +170764268660,215,0 +170764268709,216,0 +170764268757,215,0 +170764268805,215,0 +170764268853,216,0 +170764268902,216,0 +170764268952,216,0 +170764269000,216,0 +170764269048,216,0 +170764269096,214,0 +170764269145,214,0 +170764269195,213,0 +170764269243,214,0 +170764269291,214,0 +170764269340,215,0 +170764269390,214,0 +170764269438,215,0 +170764269487,215,0 +170764269535,215,0 +170764269585,215,0 +170764269632,215,0 +170764269682,215,0 +170764269730,216,0 +170764269779,216,0 +170764269827,216,0 +170764269875,215,0 +170764269925,214,0 +170764269974,214,0 +170764270022,214,0 +170764270072,214,0 +170764270120,214,0 +170764270168,214,0 +170764270216,215,0 +170764270264,215,0 +170764270312,215,0 +170764270360,215,0 +170764270408,215,0 +170764270456,216,0 +170764270505,215,0 +170764270553,216,0 +170764270601,216,0 +170764270649,216,0 +170764270697,215,0 +170764270745,213,0 +170764270793,214,0 +170764270841,214,0 +170764270890,214,0 +170764270940,214,0 +170764270988,215,0 +170764271036,215,0 +170764271085,215,0 +170764271133,215,0 +170764271183,215,0 +170764271232,215,0 +170764271280,215,0 +170764271328,215,0 +170764271376,215,0 +170764271425,215,0 +170764271473,216,0 +170764271521,213,0 +170764271569,213,0 +170764271619,214,0 +170764271668,214,0 +170764271716,214,0 +170764271764,214,0 +170764271814,214,0 +170764271862,215,0 +170764271910,215,0 +170764271958,215,0 +170764272007,216,0 +170764272057,216,0 +170764272105,215,0 +170764272152,216,0 +170764272202,216,0 +170764272252,216,0 +170764272300,215,0 +170764272347,214,0 +170764272395,214,0 +170764272445,214,0 +170764272493,215,0 +170764272541,215,0 +170764272589,215,0 +170764272637,215,0 +170764272686,216,0 +170764272736,216,0 +170764272784,216,0 +170764272831,216,0 +170764272879,216,0 +170764272927,216,0 +170764272975,216,0 +170764273023,216,0 +170764273071,215,0 +170764273121,214,0 +170764273170,215,0 +170764273220,215,0 +170764273268,215,0 +170764273316,215,0 +170764273365,215,0 +170764273415,215,0 +170764273462,216,0 +170764273510,216,0 +170764273558,216,0 +170764273606,216,0 +170764273656,216,0 +170764273704,216,0 +170764273753,216,0 +170764273801,216,0 +170764273849,216,0 +170764273897,215,0 +170764273947,214,0 +170764273994,214,0 +170764274042,214,0 +170764274092,214,0 +170764274140,214,0 +170764274189,215,0 +170764274239,215,0 +170764274288,215,0 +170764274336,215,0 +170764274384,215,0 +170764274432,215,0 +170764274480,216,0 +170764274528,216,0 +170764274576,216,0 +170764274624,216,0 +170764274672,216,0 +170764274720,214,0 +170764274769,213,0 +170764274819,213,0 +170764274867,214,0 +170764274916,214,0 +170764274964,214,0 +170764275012,214,0 +170764275060,215,0 +170764275108,215,0 +170764275156,215,0 +170764275203,215,0 +170764275253,216,0 +170764275301,216,0 +170764275350,216,0 +170764275398,216,0 +170764275446,216,0 +170764275494,215,0 +170764275543,214,0 +170764275591,214,0 +170764275640,214,0 +170764275688,214,0 +170764275736,215,0 +170764275786,215,0 +170764275833,215,0 +170764275883,215,0 +170764275931,215,0 +170764275979,216,0 +170764276027,215,0 +170764276075,216,0 +170764276124,216,0 +170764276172,216,0 +170764276220,216,0 +170764276269,215,0 +170764276317,214,0 +170764276367,214,0 +170764276416,214,0 +170764276466,214,0 +170764276514,214,0 +170764276562,214,0 +170764276610,215,0 +170764276658,215,0 +170764276707,215,0 +170764276755,215,0 +170764276803,216,0 +170764276851,216,0 +170764276901,216,0 +170764276949,216,0 +170764276998,216,0 +170764277046,216,0 +170764277094,216,0 +170764277142,214,0 +170764277190,214,0 +170764277238,214,0 +170764277286,215,0 +170764277335,215,0 +170764277383,215,0 +170764277431,215,0 +170764277479,215,0 +170764277527,216,0 +170764277575,216,0 +170764277623,216,0 +170764277671,216,0 +170764277720,216,0 +170764277768,216,0 +170764277816,216,0 +170764277864,216,0 +170764277912,214,0 +170764277960,214,0 +170764278007,214,0 +170764278055,214,0 +170764278103,215,0 +170764278151,215,0 +170764278199,215,0 +170764278247,216,0 +170764278297,215,0 +170764278346,216,0 +170764278394,215,0 +170764278442,216,0 +170764278490,216,0 +170764278538,216,0 +170764278587,216,0 +170764278635,216,0 +170764278683,215,0 +170764278731,214,0 +170764278779,214,0 +170764278827,214,0 +170764278875,214,0 +170764278923,214,0 +170764278971,214,0 +170764279018,214,0 +170764279068,215,0 +170764279116,215,0 +170764279165,215,0 +170764279213,216,0 +170764279263,215,0 +170764279312,216,0 +170764279360,216,0 +170764279409,216,0 +170764279457,216,0 +170764279505,215,0 +170764279555,214,0 +170764279603,214,0 +170764279651,214,0 +170764279699,214,0 +170764279746,214,0 +170764279796,215,0 +170764279844,215,0 +170764279892,215,0 +170764279940,215,0 +170764279988,215,0 +170764280035,215,0 +170764280085,216,0 +170764280135,216,0 +170764280184,216,0 +170764280232,216,0 +170764280280,216,0 +170764280328,214,0 +170764280378,214,0 +170764280425,214,0 +170764280473,214,0 +170764280521,214,0 +170764280571,215,0 +170764280619,215,0 +170764280667,215,0 +170764280715,215,0 +170764280763,215,0 +170764280811,215,0 +170764280860,216,0 +170764280908,216,0 +170764280958,216,0 +170764281006,216,0 +170764281053,216,0 +170764281103,215,0 +170764281151,214,0 +170764281199,214,0 +170764281248,214,0 +170764281298,214,0 +170764281346,214,0 +170764281394,215,0 +170764281443,215,0 +170764281491,215,0 +170764281539,215,0 +170764281587,215,0 +170764281635,215,0 +170764281683,215,0 +170764281730,216,0 +170764281778,216,0 +170764281828,216,0 +170764281876,216,0 +170764281924,214,0 +170764281973,214,0 +170764282021,214,0 +170764282069,215,0 +170764282117,215,0 +170764282165,215,0 +170764282214,215,0 +170764282264,215,0 +170764282312,215,0 +170764282360,215,0 +170764282408,216,0 +170764282456,216,0 +170764282504,215,0 +170764282552,217,0 +170764282599,216,0 +170764282647,216,0 +170764282697,216,0 +170764282746,214,0 +170764282794,214,0 +170764282842,214,0 +170764282890,214,0 +170764282938,215,0 +170764282985,215,0 +170764283033,215,0 +170764283081,215,0 +170764283131,216,0 +170764283179,216,0 +170764283228,216,0 +170764283276,216,0 +170764283324,216,0 +170764283372,216,0 +170764283421,216,0 +170764283469,216,0 +170764283517,215,0 +170764283565,214,0 +170764283613,214,0 +170764283661,214,0 +170764283709,214,0 +170764283757,215,0 +170764283805,215,0 +170764283853,215,0 +170764283900,215,0 +170764283948,216,0 +170764283996,216,0 +170764284044,216,0 +170764284092,216,0 +170764284141,216,0 +170764284189,216,0 +170764284237,216,0 +170764284287,216,0 +170764284335,214,0 +170764284384,214,0 +170764284432,214,0 +170764284481,215,0 +170764284529,215,0 +170764284579,215,0 +170764284628,215,0 +170764284676,215,0 +170764284724,216,0 +170764284772,216,0 +170764284820,216,0 +170764284868,216,0 +170764284916,216,0 +170764284963,216,0 +170764285011,216,0 +170764285059,216,0 +170764285107,216,0 +170764285155,214,0 +170764285203,215,0 +170764285251,215,0 +170764285299,215,0 +170764285347,215,0 +170764285395,215,0 +170764285443,216,0 +170764285491,216,0 +170764285538,216,0 +170764285588,216,0 +170764285636,216,0 +170764285684,216,0 +170764285732,216,0 +170764285780,216,0 +170764285827,216,0 +170764285875,216,0 +170764285923,215,0 +170764285971,214,0 +170764286019,214,0 +170764286066,214,0 +170764286116,215,0 +170764286164,215,0 +170764286211,215,0 +170764286259,215,0 +170764286307,215,0 +170764286355,215,0 +170764286403,215,0 +170764286451,216,0 +170764286498,216,0 +170764286546,216,0 +170764286594,216,0 +170764286642,216,0 +170764286690,216,0 +170764286739,214,0 +170764286787,214,0 +170764286835,214,0 +170764286883,214,0 +170764286930,214,0 +170764286980,214,0 +170764287029,214,0 +170764287077,215,0 +170764287125,215,0 +170764287173,215,0 +170764287221,215,0 +170764287269,215,0 +170764287317,216,0 +170764287364,215,0 +170764287412,215,0 +170764287460,216,0 +170764287508,215,0 +170764287556,214,0 +170764287604,214,0 +170764287652,214,0 +170764287700,214,0 +170764287748,214,0 +170764287796,214,0 +170764287844,215,0 +170764287891,214,0 +170764287939,215,0 +170764287987,215,0 +170764288035,215,0 +170764288083,216,0 +170764288131,216,0 +170764288179,216,0 +170764288227,216,0 +170764288277,216,0 +170764288324,216,0 +170764288372,214,0 +170764288420,214,0 +170764288468,214,0 +170764288518,214,0 +170764288566,214,0 +170764288614,215,0 +170764288662,215,0 +170764288710,215,0 +170764288758,215,0 +170764288807,215,0 +170764288857,216,0 +170764288904,216,0 +170764288954,216,0 +170764289004,216,0 +170764289051,216,0 +170764289099,216,0 +170764289147,214,0 +170764289195,214,0 +170764289245,215,0 +170764289293,214,0 +170764289342,215,0 +170764289390,215,0 +170764289438,215,0 +170764289488,216,0 +170764289536,216,0 +170764289585,216,0 +170764289633,216,0 +170764289681,216,0 +170764289729,216,0 +170764289778,216,0 +170764289826,216,0 +170764289876,216,0 +170764289924,215,0 +170764289974,214,0 +170764290023,215,0 +170764290071,215,0 +170764290121,215,0 +170764290169,215,0 +170764290216,215,0 +170764290264,216,0 +170764290312,216,0 +170764290362,216,0 +170764290410,216,0 +170764290457,216,0 +170764290505,216,0 +170764290555,216,0 +170764290603,216,0 +170764290651,216,0 +170764290699,216,0 +170764290747,214,0 +170764290795,214,0 +170764290844,214,0 +170764290892,214,0 +170764290942,215,0 +170764290991,215,0 +170764291039,215,0 +170764291087,215,0 +170764291135,216,0 +170764291183,216,0 +170764291230,216,0 +170764291278,216,0 +170764291326,216,0 +170764291374,216,0 +170764291422,216,0 +170764291470,216,0 +170764291518,216,0 +170764291565,214,0 +170764291613,214,0 +170764291661,214,0 +170764291711,214,0 +170764291758,215,0 +170764291808,215,0 +170764291856,215,0 +170764291905,215,0 +170764291955,215,0 +170764292004,216,0 +170764292054,216,0 +170764292102,216,0 +170764292150,216,0 +170764292199,216,0 +170764292247,216,0 +170764292295,216,0 +170764292344,214,0 +170764292392,214,0 +170764292440,214,0 +170764292490,214,0 +170764292538,214,0 +170764292586,214,0 +170764292633,214,0 +170764292681,215,0 +170764292729,215,0 +170764292777,216,0 +170764292825,216,0 +170764292874,216,0 +170764292924,216,0 +170764292972,216,0 +170764293020,216,0 +170764293068,216,0 +170764293115,216,0 +170764293163,214,0 +170764293211,214,0 +170764293259,214,0 +170764293307,214,0 +170764293355,214,0 +170764293403,215,0 +170764293451,215,0 +170764293500,215,0 +170764293548,215,0 +170764293596,216,0 +170764293644,215,0 +170764293692,216,0 +170764293740,216,0 +170764293788,216,0 +170764293835,216,0 +170764293885,216,0 +170764293934,215,0 +170764293982,214,0 +170764294032,213,0 +170764294080,214,0 +170764294128,214,0 +170764294177,215,0 +170764294225,214,0 +170764294273,215,0 +170764294321,215,0 +170764294369,215,0 +170764294419,216,0 +170764294467,216,0 +170764294516,216,0 +170764294564,216,0 +170764294614,216,0 +170764294662,216,0 +170764294709,216,0 +170764294757,214,0 +170764294805,213,0 +170764294855,213,0 +170764294904,213,0 +170764294952,214,0 +170764295000,214,0 +170764295050,214,0 +170764295098,215,0 +170764295145,215,0 +170764295193,215,0 +170764295241,215,0 +170764295289,216,0 +170764295337,216,0 +170764295385,216,0 +170764295434,216,0 +170764295482,216,0 +170764295529,215,0 +170764295577,213,0 +170764295625,213,0 +170764295673,213,0 +170764295721,214,0 +170764295769,214,0 +170764295817,214,0 +170764295866,214,0 +170764295914,214,0 +170764295962,214,0 +170764296009,215,0 +170764296057,215,0 +170764296107,215,0 +170764296155,215,0 +170764296203,216,0 +170764296251,216,0 +170764296299,216,0 +170764296346,213,0 +170764296394,213,0 +170764296442,213,0 +170764296490,213,0 +170764296538,214,0 +170764296586,214,0 +170764296634,214,0 +170764296682,215,0 +170764296729,215,0 +170764296779,215,0 +170764296827,216,0 +170764296875,216,0 +170764296923,216,0 +170764296971,216,0 +170764297019,216,0 +170764297067,216,0 +170764297115,216,0 +170764297162,214,0 +170764297210,214,0 +170764297258,214,0 +170764297306,215,0 +170764297356,215,0 +170764297405,215,0 +170764297453,215,0 +170764297501,215,0 +170764297550,215,0 +170764297598,215,0 +170764297647,216,0 +170764297697,216,0 +170764297745,216,0 +170764297793,216,0 +170764297842,216,0 +170764297890,215,0 +170764297938,214,0 +170764297986,214,0 +170764298034,215,0 +170764298084,214,0 +170764298132,215,0 +170764298179,215,0 +170764298227,215,0 +170764298277,215,0 +170764298325,215,0 +170764298374,215,0 +170764298422,216,0 +170764298470,215,0 +170764298518,215,0 +170764298566,216,0 +170764298614,216,0 +170764298664,215,0 +170764298713,215,0 +170764298763,213,0 +170764298812,214,0 +170764298862,215,0 +170764298911,215,0 +170764298959,215,0 +170764299009,215,0 +170764299058,215,0 +170764299106,215,0 +170764299155,215,0 +170764299203,215,0 +170764299251,216,0 +170764299301,215,0 +170764299349,216,0 +170764299398,216,0 +170764299446,216,0 +170764299495,216,0 +170764299545,216,0 +170764299594,213,0 +170764299642,214,0 +170764299692,214,0 +170764299741,214,0 +170764299789,215,0 +170764299837,215,0 +170764299885,215,0 +170764299933,215,0 +170764299982,215,0 +170764300030,216,0 +170764300078,216,0 +170764300126,216,0 +170764300174,216,0 +170764300224,216,0 +170764300272,216,0 +170764300320,216,0 +170764300368,214,0 +170764300417,214,0 +170764300467,214,0 +170764300515,215,0 +170764300563,215,0 +170764300611,215,0 +170764300658,215,0 +170764300706,215,0 +170764300756,215,0 +170764300805,216,0 +170764300855,216,0 +170764300903,216,0 +170764300952,215,0 +170764301000,216,0 +170764301048,216,0 +170764301096,216,0 +170764301144,214,0 +170764301192,214,0 +170764301240,215,0 +170764301288,215,0 +170764301337,215,0 +170764301385,215,0 +170764301433,215,0 +170764301481,216,0 +170764301529,214,0 +170764301577,216,0 +170764301625,216,0 +170764301672,216,0 +170764301720,216,0 +170764301768,216,0 +170764301816,216,0 +170764301864,216,0 +170764301912,216,0 +170764301960,215,0 +170764302008,215,0 +170764302055,215,0 +170764302103,215,0 +170764302151,216,0 +170764302199,216,0 +170764302247,215,0 +170764302295,216,0 +170764302344,216,0 +170764302392,216,0 +170764302440,216,0 +170764302489,216,0 +170764302537,216,0 +170764302586,216,0 +170764302636,216,0 +170764302684,216,0 +170764302732,216,0 +170764302780,214,0 +170764302828,214,0 +170764302877,214,0 +170764302925,215,0 +170764302973,215,0 +170764303021,215,0 +170764303069,215,0 +170764303119,215,0 +170764303167,216,0 +170764303214,216,0 +170764303262,216,0 +170764303310,216,0 +170764303360,216,0 +170764303409,216,0 +170764303459,216,0 +170764303508,215,0 +170764303558,214,0 +170764303607,214,0 +170764303655,214,0 +170764303703,214,0 +170764303751,214,0 +170764303799,215,0 +170764303847,214,0 +170764303895,215,0 +170764303943,215,0 +170764303990,215,0 +170764304040,215,0 +170764304088,216,0 +170764304136,216,0 +170764304183,216,0 +170764304231,216,0 +170764304279,216,0 +170764304327,216,0 +170764304375,213,0 +170764304424,213,0 +170764304472,214,0 +170764304520,214,0 +170764304568,214,0 +170764304616,214,0 +170764304664,215,0 +170764304711,215,0 +170764304759,215,0 +170764304809,215,0 +170764304857,215,0 +170764304905,216,0 +170764304953,216,0 +170764305001,216,0 +170764305048,216,0 +170764305096,216,0 +170764305144,215,0 +170764305192,213,0 +170764305240,213,0 +170764305288,214,0 +170764305336,214,0 +170764305384,214,0 +170764305431,214,0 +170764305479,214,0 +170764305527,214,0 +170764305575,215,0 +170764305623,215,0 +170764305671,215,0 +170764305718,215,0 +170764305766,215,0 +170764305816,216,0 +170764305864,216,0 +170764305912,216,0 +170764305960,214,0 +170764306009,213,0 +170764306057,213,0 +170764306106,214,0 +170764306154,214,0 +170764306204,214,0 +170764306252,214,0 +170764306301,215,0 +170764306349,215,0 +170764306397,215,0 +170764306445,215,0 +170764306493,214,0 +170764306540,216,0 +170764306588,216,0 +170764306636,216,0 +170764306684,216,0 +170764306732,215,0 +170764306781,213,0 +170764306829,213,0 +170764306878,214,0 +170764306926,214,0 +170764306974,213,0 +170764307022,214,0 +170764307070,214,0 +170764307120,214,0 +170764307168,215,0 +170764307215,215,0 +170764307263,216,0 +170764307311,216,0 +170764307359,214,0 +170764307409,216,0 +170764307457,216,0 +170764307505,215,0 +170764307553,215,0 +170764307601,213,0 +170764307650,213,0 +170764307698,214,0 +170764307747,214,0 +170764307795,213,0 +170764307843,214,0 +170764307891,214,0 +170764307939,214,0 +170764307987,215,0 +170764308035,214,0 +170764308083,215,0 +170764308131,215,0 +170764308180,216,0 +170764308230,215,0 +170764308279,216,0 +170764308327,216,0 +170764308375,214,0 +170764308425,213,0 +170764308473,213,0 +170764308520,213,0 +170764308568,213,0 +170764308618,213,0 +170764308666,216,0 +170764308714,215,0 +170764308762,215,0 +170764308810,215,0 +170764308859,215,0 +170764308907,215,0 +170764308957,216,0 +170764309005,215,0 +170764309053,216,0 +170764309100,216,0 +170764309148,215,0 +170764309196,214,0 +170764309244,214,0 +170764309292,214,0 +170764309340,215,0 +170764309388,215,0 +170764309436,215,0 +170764309484,215,0 +170764309532,215,0 +170764309580,216,0 +170764309628,215,0 +170764309677,216,0 +170764309725,216,0 +170764309775,216,0 +170764309823,216,0 +170764309872,216,0 +170764309920,216,0 +170764309970,215,0 +170764310018,215,0 +170764310065,215,0 +170764310113,215,0 +170764310161,215,0 +170764310209,215,0 +170764310259,216,0 +170764310307,216,0 +170764310356,216,0 +170764310404,216,0 +170764310452,216,0 +170764310500,216,0 +170764310548,216,0 +170764310596,216,0 +170764310644,216,0 +170764310692,216,0 +170764310740,215,0 +170764310789,214,0 +170764310839,214,0 +170764310887,214,0 +170764310935,215,0 +170764310982,215,0 +170764311030,215,0 +170764311078,215,0 +170764311126,215,0 +170764311174,215,0 +170764311222,215,0 +170764311269,216,0 +170764311317,216,0 +170764311365,216,0 +170764311413,216,0 +170764311461,216,0 +170764311509,216,0 +170764311557,215,0 +170764311605,214,0 +170764311652,214,0 +170764311700,214,0 +170764311750,215,0 +170764311798,215,0 +170764311846,215,0 +170764311894,215,0 +170764311943,215,0 +170764311991,215,0 +170764312039,215,0 +170764312088,216,0 +170764312136,216,0 +170764312184,216,0 +170764312232,216,0 +170764312280,216,0 +170764312328,215,0 +170764312377,214,0 +170764312425,214,0 +170764312473,214,0 +170764312521,214,0 +170764312570,214,0 +170764312620,215,0 +170764312668,215,0 +170764312716,215,0 +170764312763,215,0 +170764312811,215,0 +170764312859,216,0 +170764312907,216,0 +170764312955,215,0 +170764313003,216,0 +170764313052,216,0 +170764313101,216,0 +170764313151,216,0 +170764313199,214,0 +170764313247,214,0 +170764313295,214,0 +170764313342,215,0 +170764313390,215,0 +170764313438,215,0 +170764313486,215,0 +170764313534,215,0 +170764313582,215,0 +170764313631,215,0 +170764313679,216,0 +170764313727,216,0 +170764313775,216,0 +170764313823,216,0 +170764313872,216,0 +170764313922,216,0 +170764313970,215,0 +170764314019,215,0 +170764314067,215,0 +170764314115,215,0 +170764314163,215,0 +170764314211,215,0 +170764314259,216,0 +170764314308,216,0 +170764314358,216,0 +170764314406,216,0 +170764314454,216,0 +170764314503,216,0 +170764314551,216,0 +170764314599,216,0 +170764314647,216,0 +170764314695,216,0 +170764314743,216,0 +170764314791,215,0 +170764314839,215,0 +170764314887,215,0 +170764314934,215,0 +170764314982,215,0 +170764315030,215,0 +170764315078,216,0 +170764315126,216,0 +170764315174,216,0 +170764315222,216,0 +170764315270,216,0 +170764315318,216,0 +170764315367,216,0 +170764315415,216,0 +170764315465,216,0 +170764315513,216,0 +170764315561,216,0 +170764315609,214,0 +170764315658,214,0 +170764315706,215,0 +170764315755,215,0 +170764315805,215,0 +170764315853,215,0 +170764315901,215,0 +170764315950,216,0 +170764316000,215,0 +170764316049,216,0 +170764316097,216,0 +170764316147,216,0 +170764316195,216,0 +170764316243,216,0 +170764316291,216,0 +170764316339,215,0 +170764316388,214,0 +170764316438,214,0 +170764316486,214,0 +170764316535,214,0 +170764316583,214,0 +170764316631,214,0 +170764316679,215,0 +170764316727,215,0 +170764316775,215,0 +170764316823,215,0 +170764316872,216,0 +170764316922,216,0 +170764316970,216,0 +170764317019,215,0 +170764317069,216,0 +170764317117,216,0 +170764317165,216,0 +170764317213,214,0 +170764317261,214,0 +170764317310,214,0 +170764317360,214,0 +170764317408,214,0 +170764317457,215,0 +170764317507,215,0 +170764317555,215,0 +170764317603,215,0 +170764317650,216,0 +170764317699,216,0 +170764317748,216,0 +170764317798,216,0 +170764317847,216,0 +170764317895,216,0 +170764317943,216,0 +170764317991,214,0 +170764318040,213,0 +170764318090,214,0 +170764318138,214,0 +170764318186,214,0 +170764318235,214,0 +170764318283,215,0 +170764318333,215,0 +170764318381,215,0 +170764318430,215,0 +170764318478,216,0 +170764318527,216,0 +170764318575,215,0 +170764318623,216,0 +170764318671,216,0 +170764318719,216,0 +170764318767,215,0 +170764318815,213,0 +170764318863,213,0 +170764318911,213,0 +170764318959,213,0 +170764319007,214,0 +170764319055,214,0 +170764319104,214,0 +170764319152,214,0 +170764319200,214,0 +170764319250,215,0 +170764319300,215,0 +170764319349,215,0 +170764319397,215,0 +170764319445,215,0 +170764319493,215,0 +170764319541,216,0 +170764319589,214,0 +170764319637,213,0 +170764319685,213,0 +170764319733,214,0 +170764319781,214,0 +170764319829,214,0 +170764319878,214,0 +170764319926,214,0 +170764319976,215,0 +170764320025,215,0 +170764320073,215,0 +170764320122,215,0 +170764320170,215,0 +170764320218,216,0 +170764320268,216,0 +170764320318,216,0 +170764320365,216,0 +170764320415,214,0 +170764320464,213,0 +170764320512,214,0 +170764320562,214,0 +170764320610,214,0 +170764320658,215,0 +170764320706,214,0 +170764320755,215,0 +170764320803,215,0 +170764320851,216,0 +170764320899,215,0 +170764320947,215,0 +170764320995,216,0 +170764321043,216,0 +170764321092,216,0 +170764321142,216,0 +170764321190,214,0 +170764321238,214,0 +170764321286,214,0 +170764321335,214,0 +170764321385,215,0 +170764321434,215,0 +170764321484,215,0 +170764321533,215,0 +170764321581,216,0 +170764321631,216,0 +170764321679,216,0 +170764321727,216,0 +170764321775,216,0 +170764321824,216,0 +170764321874,216,0 +170764321922,216,0 +170764321970,216,0 +170764322018,215,0 +170764322065,215,0 +170764322114,215,0 +170764322163,215,0 +170764322213,214,0 +170764322261,214,0 +170764322310,216,0 +170764322360,216,0 +170764322408,216,0 +170764322456,216,0 +170764322505,216,0 +170764322553,216,0 +170764322601,216,0 +170764322649,216,0 +170764322699,216,0 +170764322748,216,0 +170764322796,214,0 +170764322844,214,0 +170764322892,214,0 +170764322940,213,0 +170764322988,215,0 +170764323036,215,0 +170764323084,215,0 +170764323132,215,0 +170764323180,215,0 +170764323229,216,0 +170764323277,215,0 +170764323327,216,0 +170764323375,216,0 +170764323423,216,0 +170764323470,215,0 +170764323518,216,0 +170764323566,216,0 +170764323614,214,0 +170764323664,213,0 +170764323713,214,0 +170764323761,214,0 +170764323809,214,0 +170764323859,215,0 +170764323906,215,0 +170764323954,214,0 +170764324002,215,0 +170764324050,215,0 +170764324098,216,0 +170764324146,215,0 +170764324194,216,0 +170764324244,216,0 +170764324293,216,0 +170764324342,216,0 +170764324390,215,0 +170764324438,213,0 +170764324488,214,0 +170764324535,214,0 +170764324585,214,0 +170764324633,214,0 +170764324681,214,0 +170764324729,215,0 +170764324777,215,0 +170764324824,215,0 +170764324872,215,0 +170764324920,216,0 +170764324968,216,0 +170764325016,216,0 +170764325066,216,0 +170764325114,215,0 +170764325161,216,0 +170764325209,213,0 +170764325257,213,0 +170764325307,214,0 +170764325354,214,0 +170764325404,214,0 +170764325452,214,0 +170764325500,214,0 +170764325549,215,0 +170764325597,215,0 +170764325645,215,0 +170764325693,215,0 +170764325740,215,0 +170764325788,215,0 +170764325836,215,0 +170764325884,216,0 +170764325932,216,0 +170764325979,215,0 +170764326027,213,0 +170764326075,213,0 +170764326123,214,0 +170764326171,214,0 +170764326219,214,0 +170764326267,215,0 +170764326315,215,0 +170764326364,215,0 +170764326412,216,0 +170764326462,216,0 +170764326510,216,0 +170764326558,216,0 +170764326606,216,0 +170764326654,216,0 +170764326703,216,0 +170764326751,216,0 +170764326799,215,0 +170764326848,214,0 +170764326896,214,0 +170764326944,214,0 +170764326992,214,0 +170764327040,215,0 +170764327088,215,0 +170764327136,215,0 +170764327185,215,0 +170764327233,214,0 +170764327281,215,0 +170764327330,215,0 +170764327380,216,0 +170764327428,216,0 +170764327476,216,0 +170764327523,215,0 +170764327571,216,0 +170764327621,214,0 +170764327670,214,0 +170764327718,214,0 +170764327766,214,0 +170764327814,214,0 +170764327862,215,0 +170764327911,215,0 +170764327959,215,0 +170764328007,215,0 +170764328057,216,0 +170764328106,216,0 +170764328155,216,0 +170764328203,216,0 +170764328253,216,0 +170764328301,216,0 +170764328349,216,0 +170764328397,216,0 +170764328445,214,0 +170764328492,214,0 +170764328540,214,0 +170764328588,214,0 +170764328637,214,0 +170764328687,214,0 +170764328735,215,0 +170764328784,215,0 +170764328832,215,0 +170764328880,215,0 +170764328928,216,0 +170764328975,215,0 +170764329023,216,0 +170764329071,216,0 +170764329119,216,0 +170764329167,216,0 +170764329215,214,0 +170764329263,214,0 +170764329310,214,0 +170764329358,214,0 +170764329408,214,0 +170764329456,214,0 +170764329503,215,0 +170764329553,215,0 +170764329601,216,0 +170764329649,216,0 +170764329696,216,0 +170764329744,216,0 +170764329792,216,0 +170764329840,216,0 +170764329888,216,0 +170764329936,216,0 +170764329984,216,0 +170764330033,214,0 +170764330083,214,0 +170764330132,214,0 +170764330180,214,0 +170764330228,215,0 +170764330278,215,0 +170764330325,214,0 +170764330373,215,0 +170764330423,215,0 +170764330473,215,0 +170764330520,216,0 +170764330570,215,0 +170764330618,216,0 +170764330667,216,0 +170764330715,216,0 +170764330763,216,0 +170764330811,214,0 +170764330861,214,0 +170764330910,214,0 +170764330960,215,0 +170764331008,215,0 +170764331056,215,0 +170764331104,214,0 +170764331152,215,0 +170764331201,215,0 +170764331249,216,0 +170764331299,216,0 +170764331346,216,0 +170764331396,216,0 +170764331444,216,0 +170764331492,216,0 +170764331540,216,0 +170764331589,216,0 +170764331639,215,0 +170764331687,215,0 +170764331735,214,0 +170764331783,215,0 +170764331831,215,0 +170764331880,215,0 +170764331930,215,0 +170764331978,215,0 +170764332026,215,0 +170764332074,216,0 +170764332122,216,0 +170764332169,216,0 +170764332217,216,0 +170764332265,216,0 +170764332315,216,0 +170764332363,216,0 +170764332411,216,0 +170764332460,214,0 +170764332508,214,0 +170764332558,214,0 +170764332606,214,0 +170764332654,215,0 +170764332702,215,0 +170764332749,215,0 +170764332797,215,0 +170764332845,215,0 +170764332893,216,0 +170764332941,216,0 +170764332990,216,0 +170764333038,216,0 +170764333086,216,0 +170764333136,216,0 +170764333184,216,0 +170764333232,214,0 +170764333280,214,0 +170764333328,214,0 +170764333377,214,0 +170764333427,215,0 +170764333474,214,0 +170764333524,215,0 +170764333572,215,0 +170764333620,215,0 +170764333669,215,0 +170764333717,216,0 +170764333765,216,0 +170764333813,216,0 +170764333863,216,0 +170764333912,216,0 +170764333960,216,0 +170764334008,215,0 +170764334056,214,0 +170764334104,214,0 +170764334153,214,0 +170764334203,215,0 +170764334251,215,0 +170764334299,215,0 +170764334347,215,0 +170764334395,215,0 +170764334443,216,0 +170764334492,216,0 +170764334540,216,0 +170764334590,216,0 +170764334639,216,0 +170764334689,216,0 +170764334738,216,0 +170764334786,216,0 +170764334836,214,0 +170764334884,214,0 +170764334933,214,0 +170764334982,215,0 +170764335030,215,0 +170764335080,215,0 +170764335128,215,0 +170764335176,216,0 +170764335225,216,0 +170764335273,216,0 +170764335321,216,0 +170764335369,216,0 +170764335419,216,0 +170764335466,216,0 +170764335516,216,0 +170764335564,216,0 +170764335612,216,0 +170764335660,213,0 +170764335707,214,0 +170764335757,214,0 +170764335805,214,0 +170764335853,214,0 +170764335901,215,0 +170764335950,215,0 +170764335998,215,0 +170764336048,215,0 +170764336096,215,0 +170764336145,215,0 +170764336195,216,0 +170764336243,216,0 +170764336291,216,0 +170764336340,216,0 +170764336390,216,0 +170764336439,213,0 +170764336489,213,0 +170764336537,214,0 +170764336585,214,0 +170764336634,214,0 +170764336682,214,0 +170764336730,215,0 +170764336778,214,0 +170764336826,215,0 +170764336875,215,0 +170764336923,215,0 +170764336973,215,0 +170764337020,216,0 +170764337068,216,0 +170764337116,216,0 +170764337164,216,0 +170764337212,215,0 +170764337260,213,0 +170764337308,214,0 +170764337356,214,0 +170764337404,214,0 +170764337452,214,0 +170764337500,214,0 +170764337548,214,0 +170764337596,214,0 +170764337645,215,0 +170764337695,215,0 +170764337744,216,0 +170764337794,216,0 +170764337843,215,0 +170764337891,216,0 +170764337939,216,0 +170764337987,216,0 +170764338036,214,0 +170764338084,214,0 +170764338132,214,0 +170764338180,215,0 +170764338228,215,0 +170764338276,215,0 +170764338325,215,0 +170764338373,216,0 +170764338421,216,0 +170764338471,216,0 +170764338520,216,0 +170764338568,216,0 +170764338616,216,0 +170764338666,216,0 +170764338714,216,0 +170764338763,216,0 +170764338811,216,0 +170764338859,214,0 +170764338907,214,0 +170764338955,215,0 +170764339003,216,0 +170764339052,216,0 +170764339100,215,0 +170764339150,216,0 +170764339198,216,0 +170764339247,216,0 +170764339295,216,0 +170764339343,216,0 +170764339391,216,0 +170764339439,216,0 +170764339487,216,0 +170764339536,216,0 +170764339584,216,0 +170764339634,214,0 +170764339682,214,0 +170764339730,214,0 +170764339778,214,0 +170764339827,214,0 +170764339875,215,0 +170764339923,215,0 +170764339971,214,0 +170764340019,215,0 +170764340066,216,0 +170764340114,216,0 +170764340162,216,0 +170764340210,215,0 +170764340258,216,0 +170764340306,216,0 +170764340355,216,0 +170764340403,215,0 +170764340451,214,0 +170764340501,214,0 +170764340550,214,0 +170764340598,214,0 +170764340646,214,0 +170764340694,215,0 +170764340742,215,0 +170764340790,215,0 +170764340839,215,0 +170764340887,215,0 +170764340935,216,0 +170764340983,216,0 +170764341032,216,0 +170764341080,216,0 +170764341128,216,0 +170764341176,216,0 +170764341223,215,0 +170764341271,214,0 +170764341319,214,0 +170764341367,214,0 +170764341416,214,0 +170764341464,214,0 +170764341512,215,0 +170764341560,215,0 +170764341608,215,0 +170764341656,216,0 +170764341704,215,0 +170764341752,216,0 +170764341800,216,0 +170764341848,216,0 +170764341895,216,0 +170764341943,216,0 +170764341991,216,0 +170764342039,214,0 +170764342089,214,0 +170764342137,214,0 +170764342185,214,0 +170764342233,215,0 +170764342281,215,0 +170764342328,216,0 +170764342376,215,0 +170764342426,216,0 +170764342474,216,0 +170764342522,216,0 +170764342570,216,0 +170764342619,216,0 +170764342667,216,0 +170764342717,216,0 +170764342765,216,0 +170764342813,216,0 +170764342862,214,0 +170764342912,214,0 +170764342960,214,0 +170764343009,214,0 +170764343059,214,0 +170764343107,214,0 +170764343155,215,0 +170764343204,215,0 +170764343254,215,0 +170764343303,216,0 +170764343351,216,0 +170764343399,216,0 +170764343447,216,0 +170764343495,216,0 +170764343543,216,0 +170764343591,216,0 +170764343640,214,0 +170764343688,213,0 +170764343736,214,0 +170764343784,214,0 +170764343832,214,0 +170764343880,214,0 +170764343929,214,0 +170764343978,215,0 +170764344026,215,0 +170764344076,215,0 +170764344123,215,0 +170764344171,216,0 +170764344219,216,0 +170764344267,216,0 +170764344315,216,0 +170764344362,216,0 +170764344410,216,0 +170764344458,214,0 +170764344506,213,0 +170764344554,214,0 +170764344602,214,0 +170764344649,214,0 +170764344697,214,0 +170764344747,214,0 +170764344794,215,0 +170764344842,214,0 +170764344890,215,0 +170764344938,215,0 +170764344986,216,0 +170764345034,216,0 +170764345081,216,0 +170764345129,216,0 +170764345177,216,0 +170764345225,215,0 +170764345273,213,0 +170764345322,214,0 +170764345372,214,0 +170764345420,214,0 +170764345468,215,0 +170764345517,215,0 +170764345565,215,0 +170764345613,215,0 +170764345661,215,0 +170764345709,215,0 +170764345757,216,0 +170764345805,216,0 +170764345853,216,0 +170764345902,216,0 +170764345950,216,0 +170764345998,215,0 +170764346046,214,0 +170764346094,214,0 +170764346142,214,0 +170764346190,214,0 +170764346238,215,0 +170764346287,215,0 +170764346337,215,0 +170764346386,215,0 +170764346434,215,0 +170764346482,215,0 +170764346530,215,0 +170764346578,216,0 +170764346626,216,0 +170764346674,216,0 +170764346721,216,0 +170764346769,216,0 +170764346817,215,0 +170764346865,214,0 +170764346913,214,0 +170764346962,215,0 +170764347010,215,0 +170764347059,215,0 +170764347107,215,0 +170764347155,215,0 +170764347203,217,0 +170764347251,216,0 +170764347298,216,0 +170764347346,216,0 +170764347394,216,0 +170764347443,216,0 +170764347491,216,0 +170764347541,216,0 +170764347589,216,0 +170764347637,214,0 +170764347684,214,0 +170764347732,214,0 +170764347780,214,0 +170764347828,214,0 +170764347876,215,0 +170764347924,215,0 +170764347971,215,0 +170764348019,215,0 +170764348067,215,0 +170764348115,216,0 +170764348164,216,0 +170764348214,216,0 +170764348262,216,0 +170764348310,216,0 +170764348358,216,0 +170764348405,216,0 +170764348453,214,0 +170764348503,214,0 +170764348550,214,0 +170764348598,214,0 +170764348646,215,0 +170764348694,215,0 +170764348742,215,0 +170764348790,215,0 +170764348839,215,0 +170764348887,215,0 +170764348936,215,0 +170764348984,215,0 +170764349032,216,0 +170764349081,216,0 +170764349131,215,0 +170764349180,216,0 +170764349228,215,0 +170764349276,214,0 +170764349324,214,0 +170764349372,214,0 +170764349420,214,0 +170764349468,215,0 +170764349515,215,0 +170764349565,215,0 +170764349613,215,0 +170764349661,215,0 +170764349708,215,0 +170764349756,215,0 +170764349804,216,0 +170764349852,216,0 +170764349900,216,0 +170764349948,216,0 +170764349996,216,0 +170764350044,215,0 +170764350091,214,0 +170764350139,214,0 +170764350187,215,0 +170764350237,215,0 +170764350286,215,0 +170764350334,215,0 +170764350382,215,0 +170764350430,215,0 +170764350478,216,0 +170764350526,216,0 +170764350575,216,0 +170764350623,216,0 +170764350673,216,0 +170764350722,216,0 +170764350770,216,0 +170764350818,216,0 +170764350866,214,0 +170764350914,215,0 +170764350963,215,0 +170764351011,215,0 +170764351059,215,0 +170764351107,216,0 +170764351157,216,0 +170764351205,215,0 +170764351253,216,0 +170764351302,216,0 +170764351352,216,0 +170764351400,216,0 +170764351448,216,0 +170764351495,216,0 +170764351543,216,0 +170764351591,216,0 +170764351641,214,0 +170764351689,214,0 +170764351737,214,0 +170764351785,214,0 +170764351834,215,0 +170764351883,215,0 +170764351931,215,0 +170764351981,215,0 +170764352029,216,0 +170764352078,216,0 +170764352126,216,0 +170764352174,216,0 +170764352224,216,0 +170764352271,216,0 +170764352321,216,0 +170764352369,216,0 +170764352418,216,0 +170764352468,214,0 +170764352516,214,0 +170764352564,214,0 +170764352612,214,0 +170764352660,214,0 +170764352707,215,0 +170764352755,215,0 +170764352803,215,0 +170764352851,215,0 +170764352899,216,0 +170764352947,215,0 +170764352996,216,0 +170764353044,216,0 +170764353094,216,0 +170764353142,216,0 +170764353190,215,0 +170764353238,215,0 +170764353286,213,0 +170764353335,214,0 +170764353383,214,0 +170764353433,214,0 +170764353482,214,0 +170764353530,215,0 +170764353578,214,0 +170764353627,215,0 +170764353675,215,0 +170764353723,216,0 +170764353771,216,0 +170764353819,216,0 +170764353867,216,0 +170764353915,216,0 +170764353963,216,0 +170764354013,214,0 +170764354061,214,0 +170764354110,213,0 +170764354158,214,0 +170764354206,214,0 +170764354254,214,0 +170764354302,214,0 +170764354351,214,0 +170764354399,215,0 +170764354447,215,0 +170764354495,215,0 +170764354543,215,0 +170764354593,216,0 +170764354641,216,0 +170764354689,216,0 +170764354738,216,0 +170764354786,216,0 +170764354834,216,0 +170764354882,213,0 +170764354930,213,0 +170764354979,214,0 +170764355027,214,0 +170764355075,214,0 +170764355123,214,0 +170764355173,214,0 +170764355221,215,0 +170764355269,215,0 +170764355318,216,0 +170764355368,216,0 +170764355416,216,0 +170764355464,215,0 +170764355513,216,0 +170764355561,216,0 +170764355609,216,0 +170764355657,214,0 +170764355707,213,0 +170764355755,213,0 +170764355802,214,0 +170764355850,214,0 +170764355900,214,0 +170764355948,214,0 +170764355996,214,0 +170764356044,215,0 +170764356091,215,0 +170764356139,215,0 +170764356187,215,0 +170764356235,215,0 +170764356283,216,0 +170764356331,215,0 +170764356379,216,0 +170764356426,215,0 +170764356476,213,0 +170764356524,213,0 +170764356572,213,0 +170764356619,213,0 +170764356667,214,0 +170764356715,214,0 +170764356764,214,0 +170764356812,214,0 +170764356860,215,0 +170764356910,215,0 +170764356957,214,0 +170764357005,215,0 +170764357053,215,0 +170764357101,215,0 +170764357149,216,0 +170764357198,216,0 +170764357246,214,0 +170764357294,213,0 +170764357342,213,0 +170764357390,214,0 +170764357438,214,0 +170764357485,214,0 +170764357533,214,0 +170764357581,214,0 +170764357629,214,0 +170764357677,215,0 +170764357725,215,0 +170764357774,215,0 +170764357822,215,0 +170764357870,215,0 +170764357920,216,0 +170764357968,216,0 +170764358016,216,0 +170764358063,213,0 +170764358111,213,0 +170764358161,214,0 +170764358209,214,0 +170764358257,214,0 +170764358305,214,0 +170764358354,214,0 +170764358402,215,0 +170764358450,215,0 +170764358498,215,0 +170764358546,215,0 +170764358594,216,0 +170764358642,216,0 +170764358690,216,0 +170764358738,216,0 +170764358787,216,0 +170764358835,216,0 +170764358883,213,0 +170764358931,213,0 +170764358980,213,0 +170764359028,214,0 +170764359078,214,0 +170764359126,214,0 +170764359174,214,0 +170764359222,215,0 +170764359270,215,0 +170764359318,215,0 +170764359366,215,0 +170764359414,216,0 +170764359462,215,0 +170764359509,216,0 +170764359557,216,0 +170764359605,216,0 +170764359653,216,0 +170764359701,216,0 +170764359749,216,0 +170764359796,216,0 +170764359844,216,0 +170764359892,216,0 +170764359940,216,0 +170764359988,216,0 +170764360036,215,0 +170764360085,214,0 +170764360133,214,0 +170764360182,214,0 +170764360232,214,0 +170764360280,215,0 +170764360329,215,0 +170764360377,215,0 +170764360425,215,0 +170764360473,215,0 +170764360520,215,0 +170764360568,216,0 +170764360616,216,0 +170764360664,216,0 +170764360712,216,0 +170764360759,216,0 +170764360807,216,0 +170764360855,214,0 +170764360903,214,0 +170764360951,214,0 +170764360999,214,0 +170764361046,215,0 +170764361094,214,0 +170764361144,215,0 +170764361192,215,0 +170764361239,215,0 +170764361287,215,0 +170764361336,216,0 +170764361383,216,0 +170764361431,216,0 +170764361479,216,0 +170764361529,216,0 +170764361577,216,0 +170764361625,215,0 +170764361673,214,0 +170764361721,214,0 +170764361769,214,0 +170764361817,214,0 +170764361864,214,0 +170764361912,215,0 +170764361960,215,0 +170764362010,215,0 +170764362058,215,0 +170764362107,215,0 +170764362155,216,0 +170764362203,216,0 +170764362251,216,0 +170764362299,216,0 +170764362349,216,0 +170764362397,216,0 +170764362445,215,0 +170764362492,214,0 +170764362542,214,0 +170764362592,214,0 +170764362640,214,0 +170764362689,214,0 +170764362737,215,0 +170764362785,215,0 +170764362833,215,0 +170764362882,216,0 +170764362932,216,0 +170764362980,216,0 +170764363028,216,0 +170764363076,216,0 +170764363124,216,0 +170764363172,216,0 +170764363220,216,0 +170764363268,215,0 +170764363315,214,0 +170764363365,215,0 +170764363413,215,0 +170764363461,216,0 +170764363509,216,0 +170764363557,216,0 +170764363605,216,0 +170764363653,216,0 +170764363700,216,0 +170764363748,216,0 +170764363796,216,0 +170764363844,216,0 +170764363892,216,0 +170764363941,216,0 +170764363989,216,0 +170764364037,215,0 +170764364087,214,0 +170764364135,215,0 +170764364183,215,0 +170764364232,215,0 +170764364280,215,0 +170764364328,215,0 +170764364376,215,0 +170764364424,216,0 +170764364472,216,0 +170764364520,216,0 +170764364568,216,0 +170764364616,217,0 +170764364665,216,0 +170764364715,216,0 +170764364763,216,0 +170764364812,216,0 +170764364862,214,0 +170764364910,214,0 +170764364958,214,0 +170764365006,215,0 +170764365054,215,0 +170764365103,215,0 +170764365151,215,0 +170764365199,216,0 +170764365247,215,0 +170764365295,216,0 +170764365344,216,0 +170764365392,216,0 +170764365440,216,0 +170764365488,216,0 +170764365536,216,0 +170764365584,216,0 +170764365632,216,0 +170764365680,214,0 +170764365728,214,0 +170764365776,214,0 +170764365825,214,0 +170764365873,214,0 +170764365921,215,0 +170764365969,215,0 +170764366016,215,0 +170764366064,215,0 +170764366114,216,0 +170764366162,216,0 +170764366209,216,0 +170764366257,216,0 +170764366305,216,0 +170764366353,216,0 +170764366401,216,0 +170764366449,215,0 +170764366497,213,0 +170764366546,214,0 +170764366594,214,0 +170764366643,214,0 +170764366691,214,0 +170764366741,214,0 +170764366789,214,0 +170764366838,215,0 +170764366886,215,0 +170764366936,215,0 +170764366983,215,0 +170764367033,216,0 +170764367083,216,0 +170764367132,215,0 +170764367180,215,0 +170764367228,216,0 +170764367276,213,0 +170764367324,213,0 +170764367373,214,0 +170764367421,214,0 +170764367471,214,0 +170764367519,214,0 +170764367567,214,0 +170764367616,214,0 +170764367666,215,0 +170764367713,215,0 +170764367761,215,0 +170764367809,215,0 +170764367859,216,0 +170764367907,216,0 +170764367955,216,0 +170764368003,216,0 +170764368050,215,0 +170764368100,213,0 +170764368149,213,0 +170764368197,214,0 +170764368245,214,0 +170764368293,215,0 +170764368341,214,0 +170764368389,214,0 +170764368437,215,0 +170764368485,215,0 +170764368533,215,0 +170764368581,215,0 +170764368629,216,0 +170764368677,216,0 +170764368724,216,0 +170764368772,216,0 +170764368820,216,0 +170764368868,214,0 +170764368916,213,0 +170764368964,214,0 +170764369012,214,0 +170764369060,215,0 +170764369110,214,0 +170764369159,214,0 +170764369207,215,0 +170764369255,215,0 +170764369303,215,0 +170764369353,215,0 +170764369400,216,0 +170764369448,215,0 +170764369496,216,0 +170764369546,216,0 +170764369595,216,0 +170764369643,215,0 +170764369693,213,0 +170764369741,213,0 +170764369789,214,0 +170764369838,214,0 +170764369886,214,0 +170764369934,214,0 +170764369983,214,0 +170764370031,215,0 +170764370079,215,0 +170764370127,215,0 +170764370175,215,0 +170764370223,215,0 +170764370271,215,0 +170764370319,216,0 +170764370369,216,0 +170764370416,216,0 +170764370464,214,0 +170764370512,213,0 +170764370562,214,0 +170764370610,214,0 +170764370658,214,0 +170764370706,214,0 +170764370754,215,0 +170764370803,215,0 +170764370853,215,0 +170764370901,216,0 +170764370950,216,0 +170764370998,216,0 +170764371047,216,0 +170764371095,216,0 +170764371143,216,0 +170764371193,216,0 +170764371242,216,0 +170764371290,214,0 +170764371338,214,0 +170764371386,214,0 +170764371434,215,0 +170764371482,215,0 +170764371532,215,0 +170764371579,215,0 +170764371627,216,0 +170764371675,216,0 +170764371723,216,0 +170764371771,216,0 +170764371819,216,0 +170764371869,216,0 +170764371917,216,0 +170764371965,216,0 +170764372014,216,0 +170764372064,214,0 +170764372112,214,0 +170764372160,214,0 +170764372209,214,0 +170764372257,214,0 +170764372307,215,0 +170764372355,215,0 +170764372403,215,0 +170764372451,215,0 +170764372499,215,0 +170764372547,215,0 +170764372595,215,0 +170764372642,216,0 +170764372690,216,0 +170764372738,216,0 +170764372788,216,0 +170764372837,216,0 +170764372885,214,0 +170764372933,213,0 +170764372982,214,0 +170764373030,214,0 +170764373078,214,0 +170764373126,215,0 +170764373174,215,0 +170764373224,215,0 +170764373272,215,0 +170764373320,215,0 +170764373367,216,0 +170764373417,216,0 +170764373465,216,0 +170764373513,215,0 +170764373562,216,0 +170764373610,216,0 +170764373658,215,0 +170764373706,214,0 +170764373754,214,0 +170764373802,214,0 +170764373850,214,0 +170764373899,214,0 +170764373947,215,0 +170764373995,215,0 +170764374043,215,0 +170764374093,215,0 +170764374142,215,0 +170764374190,215,0 +170764374239,215,0 +170764374287,216,0 +170764374337,216,0 +170764374385,216,0 +170764374434,216,0 +170764374482,214,0 +170764374530,214,0 +170764374578,214,0 +170764374626,214,0 +170764374676,214,0 +170764374724,214,0 +170764374773,215,0 +170764374821,215,0 +170764374869,215,0 +170764374919,215,0 +170764374967,215,0 +170764375016,216,0 +170764375066,216,0 +170764375114,216,0 +170764375162,216,0 +170764375210,216,0 +170764375257,216,0 +170764375305,214,0 +170764375355,214,0 +170764375405,214,0 +170764375452,215,0 +170764375500,215,0 +170764375550,215,0 +170764375598,215,0 +170764375646,215,0 +170764375694,216,0 +170764375743,216,0 +170764375791,216,0 +170764375841,216,0 +170764375889,216,0 +170764375937,216,0 +170764375987,216,0 +170764376036,216,0 +170764376086,214,0 +170764376135,214,0 +170764376185,215,0 +170764376233,215,0 +170764376281,215,0 +170764376328,215,0 +170764376378,215,0 +170764376428,215,0 +170764376477,216,0 +170764376525,216,0 +170764376573,216,0 +170764376621,216,0 +170764376669,216,0 +170764376717,216,0 +170764376765,216,0 +170764376813,216,0 +170764376862,216,0 +170764376910,213,0 +170764376960,214,0 +170764377009,214,0 +170764377059,214,0 +170764377107,214,0 +170764377154,215,0 +170764377202,215,0 +170764377250,215,0 +170764377300,215,0 +170764377349,215,0 +170764377397,215,0 +170764377447,216,0 +170764377496,216,0 +170764377544,216,0 +170764377594,216,0 +170764377642,216,0 +170764377689,213,0 +170764377737,213,0 +170764377785,214,0 +170764377833,214,0 +170764377881,214,0 +170764377929,214,0 +170764377977,214,0 +170764378025,214,0 +170764378072,215,0 +170764378120,215,0 +170764378168,215,0 +170764378216,215,0 +170764378264,216,0 +170764378312,216,0 +170764378360,215,0 +170764378408,216,0 +170764378455,215,0 +170764378503,214,0 +170764378551,214,0 +170764378599,214,0 +170764378647,214,0 +170764378695,214,0 +170764378743,214,0 +170764378792,215,0 +170764378840,215,0 +170764378888,215,0 +170764378938,215,0 +170764378986,216,0 +170764379034,216,0 +170764379083,216,0 +170764379131,216,0 +170764379179,216,0 +170764379227,216,0 +170764379275,214,0 +170764379323,213,0 +170764379371,214,0 +170764379419,214,0 +170764379468,214,0 +170764379516,214,0 +170764379566,215,0 +170764379615,215,0 +170764379665,215,0 +170764379713,215,0 +170764379762,215,0 +170764379810,216,0 +170764379858,216,0 +170764379906,216,0 +170764379954,216,0 +170764380002,216,0 +170764380050,216,0 +170764380098,214,0 +170764380146,214,0 +170764380194,213,0 +170764380243,214,0 +170764380293,215,0 +170764380341,215,0 +170764380389,215,0 +170764380437,215,0 +170764380486,215,0 +170764380535,216,0 +170764380585,216,0 +170764380633,216,0 +170764380682,216,0 +170764380730,216,0 +170764380780,216,0 +170764380828,216,0 +170764380877,214,0 +170764380925,214,0 +170764380975,214,0 +170764381022,215,0 +170764381072,215,0 +170764381120,215,0 +170764381169,216,0 +170764381219,215,0 +170764381267,216,0 +170764381315,216,0 +170764381364,216,0 +170764381412,216,0 +170764381462,216,0 +170764381510,216,0 +170764381557,216,0 +170764381605,216,0 +170764381655,216,0 +170764381703,214,0 +170764381752,214,0 +170764381802,214,0 +170764381850,214,0 +170764381899,214,0 +170764381949,215,0 +170764381997,215,0 +170764382044,215,0 +170764382092,215,0 +170764382140,215,0 +170764382188,216,0 +170764382236,216,0 +170764382284,216,0 +170764382332,216,0 +170764382380,216,0 +170764382428,215,0 +170764382477,215,0 +170764382525,213,0 +170764382573,213,0 +170764382622,214,0 +170764382670,214,0 +170764382718,215,0 +170764382766,215,0 +170764382816,215,0 +170764382863,215,0 +170764382913,216,0 +170764382962,216,0 +170764383010,216,0 +170764383060,216,0 +170764383108,216,0 +170764383157,216,0 +170764383205,216,0 +170764383253,215,0 +170764383301,214,0 +170764383349,214,0 +170764383397,214,0 +170764383445,214,0 +170764383494,214,0 +170764383542,215,0 +170764383590,215,0 +170764383638,215,0 +170764383687,216,0 +170764383735,216,0 +170764383783,216,0 +170764383832,216,0 +170764383880,216,0 +170764383930,216,0 +170764383978,216,0 +170764384026,216,0 +170764384074,216,0 +170764384123,214,0 +170764384172,214,0 +170764384220,214,0 +170764384268,214,0 +170764384316,215,0 +170764384366,215,0 +170764384414,215,0 +170764384462,215,0 +170764384509,215,0 +170764384557,215,0 +170764384605,215,0 +170764384653,216,0 +170764384701,216,0 +170764384749,216,0 +170764384797,215,0 +170764384845,216,0 +170764384893,214,0 +170764384942,213,0 +170764384990,214,0 +170764385038,214,0 +170764385087,214,0 +170764385137,214,0 +170764385185,215,0 +170764385232,215,0 +170764385280,215,0 +170764385330,215,0 +170764385378,215,0 +170764385425,216,0 +170764385473,215,0 +170764385523,216,0 +170764385571,216,0 +170764385619,216,0 +170764385668,216,0 +170764385718,213,0 +170764385767,214,0 +170764385817,214,0 +170764385864,214,0 +170764385912,214,0 +170764385962,214,0 +170764386011,214,0 +170764386059,214,0 +170764386107,215,0 +170764386155,214,0 +170764386203,215,0 +170764386252,215,0 +170764386300,215,0 +170764386348,216,0 +170764386398,216,0 +170764386445,216,0 +170764386493,214,0 +170764386541,214,0 +170764386589,214,0 +170764386637,215,0 +170764386685,215,0 +170764386734,215,0 +170764386784,215,0 +170764386832,215,0 +170764386881,215,0 +170764386930,216,0 +170764386978,216,0 +170764387026,216,0 +170764387076,217,0 +170764387124,216,0 +170764387172,216,0 +170764387220,216,0 +170764387268,216,0 +170764387316,214,0 +170764387365,214,0 +170764387415,215,0 +170764387463,215,0 +170764387511,216,0 +170764387559,215,0 +170764387608,216,0 +170764387658,216,0 +170764387707,216,0 +170764387757,216,0 +170764387805,217,0 +170764387853,216,0 +170764387902,216,0 +170764387950,216,0 +170764387998,216,0 +170764388046,216,0 +170764388095,214,0 +170764388143,214,0 +170764388191,214,0 +170764388239,214,0 +170764388287,215,0 +170764388337,215,0 +170764388385,215,0 +170764388434,215,0 +170764388483,216,0 +170764388533,216,0 +170764388581,216,0 +170764388629,216,0 +170764388678,216,0 +170764388728,216,0 +170764388776,216,0 +170764388824,216,0 +170764388872,215,0 +170764388921,214,0 +170764388969,214,0 +170764389017,214,0 +170764389065,214,0 +170764389115,215,0 +170764389163,215,0 +170764389212,215,0 +170764389262,216,0 +170764389311,216,0 +170764389359,216,0 +170764389409,216,0 +170764389457,216,0 +170764389504,216,0 +170764389552,216,0 +170764389600,216,0 +170764389648,216,0 +170764389696,214,0 +170764389744,214,0 +170764389792,214,0 +170764389839,214,0 +170764389889,214,0 +170764389937,215,0 +170764389984,215,0 +170764390032,215,0 +170764390082,215,0 +170764390131,216,0 +170764390179,215,0 +170764390227,216,0 +170764390275,216,0 +170764390323,216,0 +170764390371,216,0 +170764390419,216,0 +170764390468,216,0 +170764390516,214,0 +170764390564,214,0 +170764390612,214,0 +170764390659,215,0 +170764390707,215,0 +170764390755,215,0 +170764390803,215,0 +170764390851,215,0 +170764390899,216,0 +170764390947,216,0 +170764390995,216,0 +170764391044,216,0 +170764391092,216,0 +170764391142,216,0 +170764391191,216,0 +170764391241,216,0 +170764391289,215,0 +170764391337,214,0 +170764391385,214,0 +170764391432,214,0 +170764391480,214,0 +170764391528,214,0 +170764391576,215,0 +170764391624,215,0 +170764391674,215,0 +170764391723,216,0 +170764391772,216,0 +170764391820,216,0 +170764391868,216,0 +170764391916,216,0 +170764391964,216,0 +170764392012,216,0 +170764392060,216,0 +170764392108,214,0 +170764392156,214,0 +170764392204,214,0 +170764392252,214,0 +170764392301,214,0 +170764392349,214,0 +170764392399,214,0 +170764392448,215,0 +170764392498,215,0 +170764392546,216,0 +170764392594,215,0 +170764392642,216,0 +170764392691,216,0 +170764392739,216,0 +170764392787,216,0 +170764392837,216,0 +170764392886,215,0 +170764392934,213,0 +170764392982,213,0 +170764393030,213,0 +170764393080,213,0 +170764393127,214,0 +170764393175,214,0 +170764393223,215,0 +170764393271,214,0 +170764393319,215,0 +170764393367,215,0 +170764393415,215,0 +170764393463,216,0 +170764393511,216,0 +170764393559,216,0 +170764393607,216,0 +170764393655,216,0 +170764393703,214,0 +170764393751,213,0 +170764393800,213,0 +170764393848,214,0 +170764393896,214,0 +170764393944,214,0 +170764393992,214,0 +170764394040,214,0 +170764394088,215,0 +170764394136,215,0 +170764394184,215,0 +170764394233,216,0 +170764394283,215,0 +170764394331,216,0 +170764394380,216,0 +170764394428,216,0 +170764394476,215,0 +170764394524,213,0 +170764394572,213,0 +170764394620,213,0 +170764394668,214,0 +170764394716,214,0 +170764394764,214,0 +170764394813,215,0 +170764394861,215,0 +170764394911,215,0 +170764394958,215,0 +170764395006,215,0 +170764395056,216,0 +170764395105,217,0 +170764395153,216,0 +170764395201,216,0 +170764395249,215,0 +170764395299,215,0 +170764395348,214,0 +170764395396,215,0 +170764395444,215,0 +170764395492,215,0 +170764395541,215,0 +170764395589,215,0 +170764395637,216,0 +170764395687,216,0 +170764395735,216,0 +170764395784,216,0 +170764395834,216,0 +170764395882,216,0 +170764395930,216,0 +170764395978,216,0 +170764396027,216,0 +170764396077,216,0 +170764396125,214,0 +170764396172,214,0 +170764396220,215,0 +170764396268,215,0 +170764396318,215,0 +170764396367,215,0 +170764396415,215,0 +170764396463,216,0 +170764396511,216,0 +170764396559,216,0 +170764396609,216,0 +170764396657,216,0 +170764396705,216,0 +170764396753,216,0 +170764396801,216,0 +170764396849,217,0 +170764396898,215,0 +170764396946,214,0 +170764396994,214,0 +170764397042,214,0 +170764397090,215,0 +170764397138,214,0 +170764397187,215,0 +170764397235,215,0 +170764397285,215,0 +170764397333,215,0 +170764397381,215,0 +170764397429,216,0 +170764397477,216,0 +170764397525,216,0 +170764397572,215,0 +170764397620,216,0 +170764397670,216,0 +170764397719,214,0 +170764397767,214,0 +170764397815,214,0 +170764397865,214,0 +170764397913,215,0 +170764397961,215,0 +170764398010,215,0 +170764398060,215,0 +170764398108,215,0 +170764398155,215,0 +170764398205,216,0 +170764398253,216,0 +170764398301,216,0 +170764398349,216,0 +170764398397,216,0 +170764398445,216,0 +170764398494,216,0 +170764398544,214,0 +170764398592,214,0 +170764398640,214,0 +170764398688,214,0 +170764398735,215,0 +170764398783,215,0 +170764398833,215,0 +170764398881,215,0 +170764398929,215,0 +170764398977,216,0 +170764399025,216,0 +170764399073,216,0 +170764399120,216,0 +170764399168,216,0 +170764399216,216,0 +170764399266,216,0 +170764399315,214,0 +170764399363,214,0 +170764399413,215,0 +170764399461,214,0 +170764399509,214,0 +170764399558,215,0 +170764399606,215,0 +170764399655,215,0 +170764399705,215,0 +170764399753,216,0 +170764399802,216,0 +170764399850,216,0 +170764399898,216,0 +170764399946,217,0 +170764399996,216,0 +170764400043,215,0 +170764400091,216,0 +170764400139,215,0 +170764400187,214,0 +170764400235,215,0 +170764400283,215,0 +170764400331,215,0 +170764400379,215,0 +170764400427,216,0 +170764400475,216,0 +170764400523,216,0 +170764400571,216,0 +170764400620,216,0 +170764400668,216,0 +170764400716,216,0 +170764400764,216,0 +170764400812,216,0 +170764400862,216,0 +170764400910,215,0 +170764400958,214,0 +170764401006,214,0 +170764401054,214,0 +170764401102,215,0 +170764401149,215,0 +170764401197,215,0 +170764401247,215,0 +170764401295,215,0 +170764401343,216,0 +170764401392,216,0 +170764401440,216,0 +170764401488,216,0 +170764401536,216,0 +170764401586,216,0 +170764401635,216,0 +170764401683,216,0 +170764401731,214,0 +170764401780,213,0 +170764401828,214,0 +170764401876,214,0 +170764401926,214,0 +170764401974,215,0 +170764402022,215,0 +170764402070,215,0 +170764402118,215,0 +170764402166,215,0 +170764402214,216,0 +170764402262,215,0 +170764402310,216,0 +170764402359,216,0 +170764402408,216,0 +170764402457,216,0 +170764402506,216,0 +170764402556,214,0 +170764402604,214,0 +170764402653,214,0 +170764402703,214,0 +170764402751,214,0 +170764402798,215,0 +170764402848,215,0 +170764402896,215,0 +170764402944,215,0 +170764402992,215,0 +170764403040,215,0 +170764403088,216,0 +170764403135,216,0 +170764403185,216,0 +170764403234,216,0 +170764403282,216,0 +170764403330,214,0 +170764403380,214,0 +170764403429,214,0 +170764403477,214,0 +170764403525,214,0 +170764403573,214,0 +170764403621,215,0 +170764403669,215,0 +170764403717,215,0 +170764403765,215,0 +170764403813,216,0 +170764403860,216,0 +170764403908,216,0 +170764403956,216,0 +170764404004,216,0 +170764404052,216,0 +170764404100,216,0 +170764404148,213,0 +170764404196,213,0 +170764404244,214,0 +170764404294,214,0 +170764404343,214,0 +170764404393,214,0 +170764404441,214,0 +170764404490,215,0 +170764404538,215,0 +170764404586,215,0 +170764404634,215,0 +170764404684,216,0 +170764404732,216,0 +170764404780,215,0 +170764404828,216,0 +170764404875,216,0 +170764404923,214,0 +170764404971,213,0 +170764405021,213,0 +170764405069,214,0 +170764405117,213,0 +170764405165,214,0 +170764405214,214,0 +170764405262,214,0 +170764405312,214,0 +170764405361,214,0 +170764405410,215,0 +170764405460,215,0 +170764405509,215,0 +170764405557,215,0 +170764405605,216,0 +170764405653,215,0 +170764405703,215,0 +170764405751,213,0 +170764405800,213,0 +170764405850,213,0 +170764405899,213,0 +170764405947,214,0 +170764405997,214,0 +170764406045,214,0 +170764406093,214,0 +170764406140,214,0 +170764406188,215,0 +170764406236,215,0 +170764406284,215,0 +170764406332,215,0 +170764406380,215,0 +170764406428,216,0 +170764406476,215,0 +170764406523,215,0 +170764406573,213,0 +170764406621,213,0 +170764406670,214,0 +170764406718,214,0 +170764406768,214,0 +170764406816,214,0 +170764406864,214,0 +170764406913,214,0 +170764406961,215,0 +170764407010,215,0 +170764407060,215,0 +170764407108,215,0 +170764407156,216,0 +170764407205,215,0 +170764407255,216,0 +170764407303,215,0 +170764407351,214,0 +170764407399,213,0 +170764407448,214,0 +170764407498,214,0 +170764407545,214,0 +170764407593,214,0 +170764407641,215,0 +170764407689,215,0 +170764407737,215,0 +170764407785,215,0 +170764407833,215,0 +170764407881,216,0 +170764407931,216,0 +170764407978,216,0 +170764408026,216,0 +170764408074,216,0 +170764408122,216,0 +170764408170,214,0 +170764408218,214,0 +170764408266,214,0 +170764408314,215,0 +170764408362,215,0 +170764408410,215,0 +170764408458,215,0 +170764408508,216,0 +170764408556,216,0 +170764408603,216,0 +170764408651,216,0 +170764408699,216,0 +170764408749,216,0 +170764408798,216,0 +170764408848,216,0 +170764408897,216,0 +170764408947,214,0 +170764408996,214,0 +170764409046,214,0 +170764409095,215,0 +170764409143,215,0 +170764409193,215,0 +170764409241,215,0 +170764409290,215,0 +170764409338,215,0 +170764409386,216,0 +170764409436,216,0 +170764409485,216,0 +170764409533,217,0 +170764409581,216,0 +170764409631,216,0 +170764409679,214,0 +170764409726,215,0 +170764409774,214,0 +170764409824,214,0 +170764409871,214,0 +170764409919,215,0 +170764409967,214,0 +170764410015,215,0 +170764410063,215,0 +170764410111,215,0 +170764410158,215,0 +170764410206,215,0 +170764410254,216,0 +170764410302,216,0 +170764410351,216,0 +170764410399,216,0 +170764410447,216,0 +170764410495,216,0 +170764410543,214,0 +170764410591,214,0 +170764410638,214,0 +170764410686,214,0 +170764410734,215,0 +170764410782,215,0 +170764410830,215,0 +170764410877,215,0 +170764410925,215,0 +170764410973,215,0 +170764411021,216,0 +170764411069,216,0 +170764411117,216,0 +170764411164,216,0 +170764411212,216,0 +170764411260,216,0 +170764411308,216,0 +170764411356,214,0 +170764411403,214,0 +170764411451,214,0 +170764411499,214,0 +170764411547,215,0 +170764411595,215,0 +170764411644,215,0 +170764411692,215,0 +170764411740,215,0 +170764411787,216,0 +170764411835,216,0 +170764411885,216,0 +170764411934,216,0 +170764411982,216,0 +170764412030,216,0 +170764412078,216,0 +170764412125,216,0 +170764412173,215,0 +170764412221,215,0 +170764412271,215,0 +170764412318,215,0 +170764412366,215,0 +170764412414,215,0 +170764412462,216,0 +170764412510,216,0 +170764412558,216,0 +170764412607,216,0 +170764412655,217,0 +170764412703,216,0 +170764412750,216,0 +170764412798,216,0 +170764412846,216,0 +170764412894,216,0 +170764412942,216,0 +170764412989,215,0 +170764413037,215,0 +170764413085,215,0 +170764413133,216,0 +170764413181,215,0 +170764413228,216,0 +170764413276,216,0 +170764413324,216,0 +170764413372,216,0 +170764413419,216,0 +170764413467,216,0 +170764413515,216,0 +170764413563,216,0 +170764413611,216,0 +170764413659,216,0 +170764413707,216,0 +170764413755,214,0 +170764413802,214,0 +170764413850,214,0 +170764413900,215,0 +170764413947,215,0 +170764413997,215,0 +170764414045,215,0 +170764414092,215,0 +170764414140,216,0 +170764414188,215,0 +170764414236,216,0 +170764414284,216,0 +170764414332,216,0 +170764414381,216,0 +170764414430,216,0 +170764414478,216,0 +170764414526,216,0 +170764414574,214,0 +170764414622,214,0 +170764414670,214,0 +170764414718,214,0 +170764414765,215,0 +170764414813,215,0 +170764414861,215,0 +170764414909,215,0 +170764414957,216,0 +170764415005,216,0 +170764415052,216,0 +170764415102,216,0 +170764415150,216,0 +170764415199,216,0 +170764415249,216,0 +170764415297,215,0 +170764415345,216,0 +170764415393,213,0 +170764415441,214,0 +170764415488,214,0 +170764415538,214,0 +170764415586,215,0 +170764415634,215,0 +170764415682,215,0 +170764415731,215,0 +170764415779,215,0 +170764415827,216,0 +170764415875,216,0 +170764415923,216,0 +170764415971,216,0 +170764416019,216,0 +170764416067,216,0 +170764416114,216,0 +170764416162,214,0 +170764416210,213,0 +170764416258,213,0 +170764416306,214,0 +170764416354,214,0 +170764416402,214,0 +170764416450,214,0 +170764416499,215,0 +170764416547,215,0 +170764416595,215,0 +170764416645,216,0 +170764416693,215,0 +170764416742,216,0 +170764416790,216,0 +170764416838,215,0 +170764416887,216,0 +170764416935,216,0 +170764416983,214,0 +170764417031,213,0 +170764417081,214,0 +170764417128,214,0 +170764417176,214,0 +170764417224,214,0 +170764417274,214,0 +170764417322,214,0 +170764417369,215,0 +170764417419,215,0 +170764417467,215,0 +170764417515,216,0 +170764417563,216,0 +170764417612,215,0 +170764417660,216,0 +170764417710,216,0 +170764417759,215,0 +170764417809,213,0 +170764417857,213,0 +170764417905,214,0 +170764417953,214,0 +170764418001,214,0 +170764418050,214,0 +170764418098,214,0 +170764418146,214,0 +170764418194,215,0 +170764418241,215,0 +170764418289,215,0 +170764418337,215,0 +170764418387,215,0 +170764418435,216,0 +170764418483,215,0 +170764418530,216,0 +170764418580,214,0 +170764418628,213,0 +170764418676,214,0 +170764418725,214,0 +170764418773,214,0 +170764418821,214,0 +170764418869,214,0 +170764418917,215,0 +170764418965,215,0 +170764419013,215,0 +170764419063,215,0 +170764419112,216,0 +170764419160,216,0 +170764419208,216,0 +170764419256,216,0 +170764419304,216,0 +170764419352,216,0 +170764419400,214,0 +170764419448,214,0 +170764419496,214,0 +170764419544,214,0 +170764419592,214,0 +170764419640,215,0 +170764419687,216,0 +170764419737,214,0 +170764419785,215,0 +170764419832,215,0 +170764419880,215,0 +170764419930,216,0 +170764419978,216,0 +170764420026,216,0 +170764420073,216,0 +170764420123,216,0 +170764420172,215,0 +170764420222,214,0 +170764420270,214,0 +170764420318,215,0 +170764420365,215,0 +170764420413,215,0 +170764420463,216,0 +170764420510,215,0 +170764420558,216,0 +170764420608,216,0 +170764420657,216,0 +170764420705,216,0 +170764420753,216,0 +170764420801,216,0 +170764420849,216,0 +170764420898,216,0 +170764420946,216,0 +170764420994,215,0 +170764421042,215,0 +170764421092,215,0 +170764421139,215,0 +170764421187,215,0 +170764421237,215,0 +170764421285,215,0 +170764421333,215,0 +170764421381,216,0 +170764421430,216,0 +170764421478,217,0 +170764421526,216,0 +170764421575,215,0 +170764421623,216,0 +170764421671,216,0 +170764421721,216,0 +170764421768,216,0 +170764421818,214,0 +170764421867,214,0 +170764421916,214,0 +170764421963,214,0 +170764422013,214,0 +170764422061,214,0 +170764422109,215,0 +170764422158,215,0 +170764422208,215,0 +170764422256,215,0 +170764422304,216,0 +170764422353,215,0 +170764422401,215,0 +170764422449,216,0 +170764422499,216,0 +170764422547,215,0 +170764422595,215,0 +170764422643,214,0 +170764422691,214,0 +170764422738,214,0 +170764422786,214,0 +170764422834,214,0 +170764422883,215,0 +170764422931,215,0 +170764422979,215,0 +170764423029,214,0 +170764423077,215,0 +170764423125,216,0 +170764423173,215,0 +170764423221,216,0 +170764423270,216,0 +170764423318,216,0 +170764423367,216,0 +170764423415,214,0 +170764423463,214,0 +170764423511,214,0 +170764423559,214,0 +170764423607,214,0 +170764423655,215,0 +170764423703,215,0 +170764423751,215,0 +170764423800,215,0 +170764423848,215,0 +170764423896,215,0 +170764423944,216,0 +170764423992,216,0 +170764424040,216,0 +170764424088,216,0 +170764424136,216,0 +170764424184,216,0 +170764424231,214,0 +170764424281,214,0 +170764424329,214,0 +170764424377,214,0 +170764424425,214,0 +170764424473,214,0 +170764424521,214,0 +170764424569,215,0 +170764424617,215,0 +170764424666,216,0 +170764424715,216,0 +170764424763,216,0 +170764424811,216,0 +170764424861,215,0 +170764424909,216,0 +170764424957,215,0 +170764425006,215,0 +170764425054,214,0 +170764425102,214,0 +170764425151,214,0 +170764425199,214,0 +170764425247,215,0 +170764425295,215,0 +170764425343,215,0 +170764425390,215,0 +170764425438,216,0 +170764425486,216,0 +170764425534,216,0 +170764425582,216,0 +170764425630,216,0 +170764425678,216,0 +170764425726,216,0 +170764425773,216,0 +170764425821,214,0 +170764425869,214,0 +170764425917,214,0 +170764425967,214,0 +170764426015,214,0 +170764426062,214,0 +170764426112,215,0 +170764426160,215,0 +170764426208,215,0 +170764426256,215,0 +170764426305,215,0 +170764426353,216,0 +170764426401,216,0 +170764426449,216,0 +170764426498,216,0 +170764426546,215,0 +170764426596,216,0 +170764426644,214,0 +170764426692,214,0 +170764426740,214,0 +170764426787,214,0 +170764426835,214,0 +170764426883,214,0 +170764426931,215,0 +170764426978,215,0 +170764427026,215,0 +170764427074,215,0 +170764427122,216,0 +170764427170,216,0 +170764427217,216,0 +170764427265,216,0 +170764427313,215,0 +170764427361,216,0 +170764427409,216,0 +170764427457,214,0 +170764427506,214,0 +170764427554,214,0 +170764427604,215,0 +170764427652,215,0 +170764427701,215,0 +170764427750,215,0 +170764427798,215,0 +170764427846,216,0 +170764427894,215,0 +170764427942,216,0 +170764427990,216,0 +170764428038,216,0 +170764428085,216,0 +170764428133,216,0 +170764428181,216,0 +170764428229,215,0 +170764428276,214,0 +170764428324,214,0 +170764428372,215,0 +170764428420,215,0 +170764428468,215,0 +170764428516,215,0 +170764428563,215,0 +170764428611,215,0 +170764428659,215,0 +170764428707,216,0 +170764428757,216,0 +170764428804,216,0 +170764428852,216,0 +170764428900,217,0 +170764428948,216,0 +170764428996,216,0 +170764429045,214,0 +170764429093,214,0 +170764429141,214,0 +170764429189,215,0 +170764429237,215,0 +170764429285,215,0 +170764429333,216,0 +170764429381,215,0 +170764429430,216,0 +170764429478,216,0 +170764429526,216,0 +170764429574,216,0 +170764429622,216,0 +170764429669,216,0 +170764429717,216,0 +170764429765,216,0 +170764429813,215,0 +170764429861,214,0 +170764429909,214,0 +170764429957,214,0 +170764430005,214,0 +170764430052,215,0 +170764430100,215,0 +170764430148,216,0 +170764430196,216,0 +170764430244,215,0 +170764430293,215,0 +170764430341,217,0 +170764430389,216,0 +170764430439,216,0 +170764430487,216,0 +170764430534,216,0 +170764430582,216,0 +170764430632,215,0 +170764430681,214,0 +170764430729,214,0 +170764430777,214,0 +170764430825,214,0 +170764430874,215,0 +170764430924,215,0 +170764430973,215,0 +170764431023,215,0 +170764431073,215,0 +170764431121,216,0 +170764431168,216,0 +170764431218,216,0 +170764431268,216,0 +170764431317,216,0 +170764431365,216,0 +170764431413,216,0 +170764431461,213,0 +170764431509,213,0 +170764431558,214,0 +170764431606,214,0 +170764431654,213,0 +170764431702,214,0 +170764431750,214,0 +170764431798,215,0 +170764431846,215,0 +170764431895,215,0 +170764431943,215,0 +170764431992,216,0 +170764432040,215,0 +170764432088,216,0 +170764432138,216,0 +170764432187,215,0 +170764432235,215,0 +170764432283,213,0 +170764432331,214,0 +170764432379,214,0 +170764432427,214,0 +170764432475,214,0 +170764432523,214,0 +170764432573,215,0 +170764432621,215,0 +170764432669,215,0 +170764432718,216,0 +170764432766,216,0 +170764432814,216,0 +170764432862,216,0 +170764432910,216,0 +170764432958,216,0 +170764433006,216,0 +170764433054,214,0 +170764433102,214,0 +170764433150,214,0 +170764433198,214,0 +170764433245,215,0 +170764433293,215,0 +170764433341,215,0 +170764433391,215,0 +170764433439,215,0 +170764433488,216,0 +170764433538,216,0 +170764433586,216,0 +170764433635,216,0 +170764433683,216,0 +170764433731,216,0 +170764433781,215,0 +170764433829,216,0 +170764433878,214,0 +170764433928,214,0 +170764433977,214,0 +170764434027,214,0 +170764434075,214,0 +170764434124,215,0 +170764434174,215,0 +170764434224,215,0 +170764434273,215,0 +170764434321,216,0 +170764434370,216,0 +170764434418,216,0 +170764434468,216,0 +170764434517,216,0 +170764434565,215,0 +170764434613,216,0 +170764434662,214,0 +170764434710,214,0 +170764434758,214,0 +170764434806,214,0 +170764434854,214,0 +170764434902,214,0 +170764434950,215,0 +170764434999,215,0 +170764435049,215,0 +170764435097,215,0 +170764435144,215,0 +170764435192,215,0 +170764435240,215,0 +170764435290,216,0 +170764435338,216,0 +170764435387,216,0 +170764435435,215,0 +170764435485,213,0 +170764435533,214,0 +170764435581,214,0 +170764435630,215,0 +170764435680,215,0 +170764435728,215,0 +170764435776,215,0 +170764435825,215,0 +170764435875,215,0 +170764435923,216,0 +170764435971,216,0 +170764436020,216,0 +170764436070,216,0 +170764436119,216,0 +170764436167,215,0 +170764436215,216,0 +170764436263,214,0 +170764436313,214,0 +170764436361,214,0 +170764436409,214,0 +170764436458,215,0 +170764436506,215,0 +170764436556,215,0 +170764436604,215,0 +170764436653,216,0 +170764436703,215,0 +170764436750,216,0 +170764436798,216,0 +170764436846,216,0 +170764436896,216,0 +170764436945,216,0 +170764436995,216,0 +170764437043,216,0 +170764437091,214,0 +170764437139,214,0 +170764437188,215,0 +170764437236,215,0 +170764437286,215,0 +170764437335,215,0 +170764437383,216,0 +170764437431,215,0 +170764437479,216,0 +170764437527,216,0 +170764437575,216,0 +170764437622,216,0 +170764437670,216,0 +170764437718,217,0 +170764437768,216,0 +170764437816,216,0 +170764437865,215,0 +170764437913,215,0 +170764437961,215,0 +170764438009,215,0 +170764438058,215,0 +170764438106,215,0 +170764438154,216,0 +170764438204,215,0 +170764438253,216,0 +170764438303,216,0 +170764438351,216,0 +170764438399,216,0 +170764438447,216,0 +170764438496,216,0 +170764438546,216,0 +170764438595,216,0 +170764438643,215,0 +170764438691,214,0 +170764438741,214,0 +170764438789,214,0 +170764438837,215,0 +170764438885,214,0 +170764438934,215,0 +170764438984,215,0 +170764439032,215,0 +170764439081,216,0 +170764439129,216,0 +170764439177,216,0 +170764439227,216,0 +170764439274,216,0 +170764439322,216,0 +170764439370,216,0 +170764439418,216,0 +170764439466,215,0 +170764439514,214,0 +170764439564,214,0 +170764439612,214,0 +170764439660,214,0 +170764439709,214,0 +170764439757,215,0 +170764439805,215,0 +170764439854,215,0 +170764439904,215,0 +170764439952,215,0 +170764440001,216,0 +170764440051,216,0 +170764440099,216,0 +170764440147,216,0 +170764440195,216,0 +170764440244,216,0 +170764440292,214,0 +170764440340,214,0 +170764440388,214,0 +170764440437,214,0 +170764440487,214,0 +170764440536,214,0 +170764440586,214,0 +170764440634,215,0 +170764440683,215,0 +170764440731,215,0 +170764440781,216,0 +170764440828,216,0 +170764440876,216,0 +170764440924,215,0 +170764440972,216,0 +170764441022,215,0 +170764441071,214,0 +170764441119,213,0 +170764441167,213,0 +170764441217,214,0 +170764441264,214,0 +170764441314,214,0 +170764441362,214,0 +170764441410,214,0 +170764441460,214,0 +170764441509,215,0 +170764441558,215,0 +170764441608,215,0 +170764441656,216,0 +170764441706,215,0 +170764441755,216,0 +170764441805,216,0 +170764441853,216,0 +170764441902,213,0 +170764441950,213,0 +170764442000,214,0 +170764442048,214,0 +170764442097,214,0 +170764442145,214,0 +170764442193,215,0 +170764442243,215,0 +170764442292,215,0 +170764442342,215,0 +170764442391,215,0 +170764442439,216,0 +170764442487,216,0 +170764442535,216,0 +170764442583,216,0 +170764442631,215,0 +170764442679,214,0 +170764442727,213,0 +170764442775,214,0 +170764442823,213,0 +170764442872,214,0 +170764442920,214,0 +170764442968,214,0 +170764443016,214,0 +170764443064,215,0 +170764443112,215,0 +170764443160,215,0 +170764443208,215,0 +170764443256,216,0 +170764443305,215,0 +170764443355,216,0 +170764443403,216,0 +170764443451,216,0 +170764443499,214,0 +170764443546,214,0 +170764443594,214,0 +170764443644,214,0 +170764443692,214,0 +170764443740,214,0 +170764443789,215,0 +170764443839,215,0 +170764443888,215,0 +170764443938,215,0 +170764443986,215,0 +170764444035,216,0 +170764444083,215,0 +170764444133,215,0 +170764444181,216,0 +170764444229,215,0 +170764444277,214,0 +170764444325,213,0 +170764444373,214,0 +170764444420,214,0 +170764444468,214,0 +170764444516,215,0 +170764444564,215,0 +170764444612,215,0 +170764444661,215,0 +170764444709,215,0 +170764444757,216,0 +170764444805,216,0 +170764444853,216,0 +170764444900,216,0 +170764444948,216,0 +170764444996,216,0 +170764445044,216,0 +170764445092,214,0 +170764445140,214,0 +170764445188,215,0 +170764445237,215,0 +170764445285,215,0 +170764445333,215,0 +170764445382,215,0 +170764445432,216,0 +170764445480,216,0 +170764445528,216,0 +170764445576,216,0 +170764445624,216,0 +170764445672,216,0 +170764445720,216,0 +170764445768,216,0 +170764445816,216,0 +170764445865,215,0 +170764445915,214,0 +170764445962,214,0 +170764446010,215,0 +170764446058,215,0 +170764446106,215,0 +170764446154,215,0 +170764446202,215,0 +170764446252,216,0 +170764446300,216,0 +170764446348,216,0 +170764446396,216,0 +170764446444,216,0 +170764446491,216,0 +170764446539,216,0 +170764446589,216,0 +170764446637,216,0 +170764446686,214,0 +170764446736,214,0 +170764446784,214,0 +170764446832,214,0 +170764446881,214,0 +170764446931,215,0 +170764446980,215,0 +170764447030,215,0 +170764447078,215,0 +170764447125,215,0 +170764447175,215,0 +170764447223,216,0 +170764447271,216,0 +170764447320,216,0 +170764447368,216,0 +170764447416,216,0 +170764447464,215,0 +170764447512,213,0 +170764447561,214,0 +170764447611,214,0 +170764447659,214,0 +170764447707,214,0 +170764447755,215,0 +170764447803,215,0 +170764447851,215,0 +170764447899,215,0 +170764447947,215,0 +170764447995,216,0 +170764448042,216,0 +170764448090,216,0 +170764448138,216,0 +170764448186,216,0 +170764448236,216,0 +170764448285,216,0 +170764448335,214,0 +170764448384,214,0 +170764448432,214,0 +170764448480,215,0 +170764448530,215,0 +170764448578,214,0 +170764448626,215,0 +170764448674,215,0 +170764448723,215,0 +170764448773,216,0 +170764448821,215,0 +170764448869,216,0 +170764448917,216,0 +170764448965,216,0 +170764449014,216,0 +170764449062,216,0 +170764449110,214,0 +170764449158,214,0 +170764449206,214,0 +170764449254,215,0 +170764449304,215,0 +170764449352,215,0 +170764449399,215,0 +170764449447,216,0 +170764449495,216,0 +170764449543,216,0 +170764449591,216,0 +170764449641,216,0 +170764449689,216,0 +170764449737,216,0 +170764449784,216,0 +170764449832,216,0 +170764449880,216,0 +170764449930,215,0 +170764449978,215,0 +170764450026,215,0 +170764450074,216,0 +170764450122,216,0 +170764450171,216,0 +170764450219,216,0 +170764450267,216,0 +170764450317,216,0 +170764450364,217,0 +170764450412,216,0 +170764450460,216,0 +170764450510,216,0 +170764450559,216,0 +170764450609,216,0 +170764450657,215,0 +170764450705,215,0 +170764450753,214,0 +170764450801,214,0 +170764450849,214,0 +170764450898,215,0 +170764450946,215,0 +170764450995,215,0 +170764451043,215,0 +170764451093,215,0 +170764451142,216,0 +170764451190,216,0 +170764451238,216,0 +170764451286,216,0 +170764451334,216,0 +170764451382,216,0 +170764451430,215,0 +170764451478,215,0 +170764451526,214,0 +170764451575,214,0 +170764451623,214,0 +170764451673,214,0 +170764451722,214,0 +170764451770,214,0 +170764451818,215,0 +170764451866,215,0 +170764451914,215,0 +170764451962,215,0 +170764452010,216,0 +170764452059,216,0 +170764452107,216,0 +170764452155,216,0 +170764452203,216,0 +170764452251,216,0 +170764452299,214,0 +170764452349,214,0 +170764452397,214,0 +170764452446,214,0 +170764452496,213,0 +170764452544,215,0 +170764452592,214,0 +170764452640,215,0 +170764452689,215,0 +170764452739,216,0 +170764452787,216,0 +170764452836,216,0 +170764452884,216,0 +170764452932,216,0 +170764452980,216,0 +170764453028,216,0 +170764453076,215,0 +170764453124,213,0 +170764453172,213,0 +170764453220,213,0 +170764453269,214,0 +170764453317,214,0 +170764453365,214,0 +170764453414,214,0 +170764453464,214,0 +170764453513,215,0 +170764453561,215,0 +170764453611,215,0 +170764453661,216,0 +170764453710,216,0 +170764453758,216,0 +170764453806,216,0 +170764453854,216,0 +170764453904,214,0 +170764453951,213,0 +170764453999,213,0 +170764454049,213,0 +170764454097,213,0 +170764454146,214,0 +170764454196,214,0 +170764454244,214,0 +170764454292,214,0 +170764454341,215,0 +170764454389,215,0 +170764454439,215,0 +170764454488,215,0 +170764454536,215,0 +170764454584,215,0 +170764454632,216,0 +170764454680,216,0 +170764454728,213,0 +170764454776,213,0 +170764454824,213,0 +170764454872,213,0 +170764454919,213,0 +170764454967,214,0 +170764455015,214,0 +170764455063,214,0 +170764455113,214,0 +170764455162,214,0 +170764455210,214,0 +170764455258,214,0 +170764455306,215,0 +170764455354,215,0 +170764455404,215,0 +170764455453,215,0 +170764455501,214,0 +170764455549,213,0 +170764455599,214,0 +170764455647,214,0 +170764455695,213,0 +170764455743,214,0 +170764455792,214,0 +170764455842,214,0 +170764455891,214,0 +170764455939,215,0 +170764455988,215,0 +170764456038,215,0 +170764456088,216,0 +170764456136,216,0 +170764456183,216,0 +170764456231,216,0 +170764456281,216,0 +170764456329,214,0 +170764456376,213,0 +170764456424,214,0 +170764456472,214,0 +170764456520,214,0 +170764456568,214,0 +170764456616,214,0 +170764456664,215,0 +170764456712,215,0 +170764456760,215,0 +170764456808,215,0 +170764456856,216,0 +170764456905,216,0 +170764456953,216,0 +170764457001,216,0 +170764457051,216,0 +170764457099,215,0 +170764457146,214,0 +170764457196,214,0 +170764457244,214,0 +170764457292,215,0 +170764457340,215,0 +170764457388,215,0 +170764457437,215,0 +170764457485,216,0 +170764457533,216,0 +170764457581,216,0 +170764457629,216,0 +170764457679,216,0 +170764457727,216,0 +170764457776,216,0 +170764457824,216,0 +170764457872,216,0 +170764457920,214,0 +170764457969,214,0 +170764458017,215,0 +170764458065,215,0 +170764458115,215,0 +170764458164,215,0 +170764458212,215,0 +170764458262,216,0 +170764458309,216,0 +170764458357,216,0 +170764458405,216,0 +170764458453,216,0 +170764458501,216,0 +170764458551,216,0 +170764458600,216,0 +170764458650,216,0 +170764458698,215,0 +170764458747,214,0 +170764458797,214,0 +170764458844,214,0 +170764458892,215,0 +170764458940,215,0 +170764458988,215,0 +170764459036,215,0 +170764459084,216,0 +170764459132,215,0 +170764459180,216,0 +170764459228,215,0 +170764459278,216,0 +170764459327,216,0 +170764459375,216,0 +170764459425,216,0 +170764459472,216,0 +170764459520,214,0 +170764459568,214,0 +170764459616,214,0 +170764459664,214,0 +170764459712,214,0 +170764459761,215,0 +170764459811,215,0 +170764459860,215,0 +170764459908,215,0 +170764459956,215,0 +170764460006,216,0 +170764460054,216,0 +170764460103,216,0 +170764460151,216,0 +170764460199,216,0 +170764460247,216,0 +170764460295,216,0 +170764460343,215,0 +170764460391,214,0 +170764460438,215,0 +170764460486,215,0 +170764460534,215,0 +170764460582,215,0 +170764460630,216,0 +170764460678,215,0 +170764460725,215,0 +170764460775,216,0 +170764460823,216,0 +170764460871,216,0 +170764460918,216,0 +170764460966,216,0 +170764461016,216,0 +170764461064,216,0 +170764461111,216,0 +170764461161,215,0 +170764461209,215,0 +170764461256,215,0 +170764461304,215,0 +170764461352,215,0 +170764461400,216,0 +170764461449,216,0 +170764461499,216,0 +170764461547,216,0 +170764461595,216,0 +170764461644,216,0 +170764461694,216,0 +170764461743,217,0 +170764461791,216,0 +170764461839,216,0 +170764461887,216,0 +170764461935,215,0 +170764461983,215,0 +170764462031,215,0 +170764462079,215,0 +170764462128,216,0 +170764462176,216,0 +170764462224,216,0 +170764462272,216,0 +170764462320,217,0 +170764462368,216,0 +170764462417,217,0 +170764462465,217,0 +170764462515,217,0 +170764462563,216,0 +170764462611,216,0 +170764462659,216,0 +170764462708,215,0 +170764462756,215,0 +170764462805,214,0 +170764462853,215,0 +170764462901,215,0 +170764462949,215,0 +170764462997,215,0 +170764463046,215,0 +170764463096,216,0 +170764463144,216,0 +170764463193,216,0 +170764463241,216,0 +170764463289,216,0 +170764463337,216,0 +170764463385,216,0 +170764463433,216,0 +170764463481,216,0 +170764463529,216,0 +170764463577,213,0 +170764463625,213,0 +170764463673,214,0 +170764463722,214,0 +170764463770,214,0 +170764463818,215,0 +170764463866,214,0 +170764463916,215,0 +170764463964,215,0 +170764464013,215,0 +170764464061,215,0 +170764464109,216,0 +170764464157,216,0 +170764464206,216,0 +170764464256,216,0 +170764464304,216,0 +170764464352,214,0 +170764464400,213,0 +170764464447,214,0 +170764464495,214,0 +170764464545,214,0 +170764464593,214,0 +170764464641,214,0 +170764464689,215,0 +170764464737,215,0 +170764464784,215,0 +170764464834,215,0 +170764464883,216,0 +170764464931,216,0 +170764464979,216,0 +170764465027,215,0 +170764465075,216,0 +170764465125,215,0 +170764465174,213,0 +170764465224,213,0 +170764465272,214,0 +170764465320,214,0 +170764465369,214,0 +170764465419,214,0 +170764465468,214,0 +170764465516,215,0 +170764465564,215,0 +170764465614,215,0 +170764465663,215,0 +170764465711,216,0 +170764465759,216,0 +170764465808,216,0 +170764465858,216,0 +170764465906,216,0 +170764465955,214,0 +170764466005,214,0 +170764466053,214,0 +170764466101,214,0 +170764466149,214,0 +170764466198,214,0 +170764466246,214,0 +170764466296,214,0 +170764466344,215,0 +170764466392,215,0 +170764466440,215,0 +170764466488,215,0 +170764466535,215,0 +170764466583,215,0 +170764466631,216,0 +170764466679,216,0 +170764466729,215,0 +170764466777,214,0 +170764466825,214,0 +170764466874,213,0 +170764466922,214,0 +170764466970,214,0 +170764467018,215,0 +170764467066,215,0 +170764467116,215,0 +170764467165,215,0 +170764467213,215,0 +170764467261,215,0 +170764467311,215,0 +170764467360,216,0 +170764467408,216,0 +170764467456,215,0 +170764467504,216,0 +170764467551,214,0 +170764467599,213,0 +170764467649,214,0 +170764467696,214,0 +170764467744,214,0 +170764467792,214,0 +170764467840,214,0 +170764467888,214,0 +170764467936,215,0 +170764467984,215,0 +170764468031,215,0 +170764468079,216,0 +170764468127,216,0 +170764468175,214,0 +170764468223,216,0 +170764468271,216,0 +170764468319,216,0 +170764468369,214,0 +170764468418,214,0 +170764468466,213,0 +170764468514,214,0 +170764468564,214,0 +170764468613,215,0 +170764468663,214,0 +170764468711,215,0 +170764468760,215,0 +170764468810,215,0 +170764468857,215,0 +170764468905,215,0 +170764468955,216,0 +170764469003,216,0 +170764469050,216,0 +170764469098,216,0 +170764469146,215,0 +170764469194,214,0 +170764469242,214,0 +170764469290,215,0 +170764469337,215,0 +170764469385,215,0 +170764469433,215,0 +170764469481,215,0 +170764469529,216,0 +170764469577,216,0 +170764469626,216,0 +170764469674,216,0 +170764469722,216,0 +170764469770,216,0 +170764469817,216,0 +170764469867,216,0 +170764469914,216,0 +170764469962,215,0 +170764470010,214,0 +170764470058,215,0 +170764470106,215,0 +170764470154,215,0 +170764470202,215,0 +170764470250,216,0 +170764470297,216,0 +170764470345,216,0 +170764470393,217,0 +170764470441,216,0 +170764470489,216,0 +170764470536,217,0 +170764470584,216,0 +170764470632,216,0 +170764470680,216,0 +170764470728,216,0 +170764470776,214,0 +170764470823,214,0 +170764470873,214,0 +170764470921,215,0 +170764470969,215,0 +170764471016,215,0 +170764471064,215,0 +170764471112,215,0 +170764471160,215,0 +170764471208,216,0 +170764471256,216,0 +170764471303,216,0 +170764471351,216,0 +170764471399,216,0 +170764471447,216,0 +170764471496,216,0 +170764471544,216,0 +170764471592,213,0 +170764471641,214,0 +170764471691,214,0 +170764471740,214,0 +170764471790,214,0 +170764471840,214,0 +170764471889,215,0 +170764471939,215,0 +170764471986,215,0 +170764472034,215,0 +170764472082,215,0 +170764472130,216,0 +170764472178,216,0 +170764472228,216,0 +170764472275,216,0 +170764472325,216,0 +170764472373,214,0 +170764472421,214,0 +170764472469,214,0 +170764472518,214,0 +170764472568,214,0 +170764472616,214,0 +170764472664,215,0 +170764472713,215,0 +170764472763,215,0 +170764472812,215,0 +170764472860,214,0 +170764472908,216,0 +170764472957,216,0 +170764473007,216,0 +170764473055,216,0 +170764473104,217,0 +170764473154,215,0 +170764473202,214,0 +170764473251,214,0 +170764473301,214,0 +170764473349,215,0 +170764473398,214,0 +170764473446,215,0 +170764473494,215,0 +170764473543,215,0 +170764473591,215,0 +170764473639,216,0 +170764473689,216,0 +170764473737,216,0 +170764473785,216,0 +170764473833,216,0 +170764473882,216,0 +170764473930,216,0 +170764473978,214,0 +170764474026,214,0 +170764474075,214,0 +170764474125,214,0 +170764474174,214,0 +170764474222,215,0 +170764474270,215,0 +170764474318,215,0 +170764474366,215,0 +170764474414,216,0 +170764474462,216,0 +170764474512,216,0 +170764474561,216,0 +170764474609,216,0 +170764474659,216,0 +170764474708,216,0 +170764474756,216,0 +170764474806,214,0 +170764474854,214,0 +170764474901,215,0 +170764474949,215,0 +170764474997,215,0 +170764475045,215,0 +170764475093,215,0 +170764475143,215,0 +170764475191,216,0 +170764475240,216,0 +170764475290,216,0 +170764475338,216,0 +170764475386,216,0 +170764475434,216,0 +170764475483,216,0 +170764475531,216,0 +170764475581,214,0 +170764475629,214,0 +170764475677,214,0 +170764475726,214,0 +170764475774,215,0 +170764475824,215,0 +170764475872,215,0 +170764475921,215,0 +170764475969,215,0 +170764476019,215,0 +170764476066,216,0 +170764476114,216,0 +170764476162,216,0 +170764476210,216,0 +170764476260,216,0 +170764476308,216,0 +170764476356,216,0 +170764476404,214,0 +170764476452,214,0 +170764476499,214,0 +170764476547,214,0 +170764476595,214,0 +170764476643,215,0 +170764476693,215,0 +170764476742,215,0 +170764476790,215,0 +170764476839,215,0 +170764476887,215,0 +170764476935,215,0 +170764476983,216,0 +170764477031,216,0 +170764477079,215,0 +170764477127,216,0 +170764477175,214,0 +170764477223,214,0 +170764477273,214,0 +170764477322,214,0 +170764477370,214,0 +170764477418,214,0 +170764477467,215,0 +170764477515,215,0 +170764477563,215,0 +170764477611,215,0 +170764477661,216,0 +170764477709,216,0 +170764477758,216,0 +170764477806,216,0 +170764477854,216,0 +170764477902,216,0 +170764477951,216,0 +170764477999,214,0 +170764478047,214,0 +170764478095,214,0 +170764478145,215,0 +170764478193,215,0 +170764478241,215,0 +170764478290,215,0 +170764478338,215,0 +170764478386,215,0 +170764478436,216,0 +170764478484,216,0 +170764478532,216,0 +170764478580,216,0 +170764478628,216,0 +170764478677,216,0 +170764478727,216,0 +170764478775,215,0 +170764478824,214,0 +170764478872,214,0 +170764478920,213,0 +170764478970,214,0 +170764479017,214,0 +170764479065,215,0 +170764479113,215,0 +170764479163,215,0 +170764479211,216,0 +170764479258,216,0 +170764479306,216,0 +170764479354,216,0 +170764479402,216,0 +170764479451,216,0 +170764479500,216,0 +170764479547,216,0 +170764479595,213,0 +170764479645,214,0 +170764479693,214,0 +170764479741,214,0 +170764479789,215,0 +170764479836,215,0 +170764479884,215,0 +170764479932,215,0 +170764479980,215,0 +170764480030,216,0 +170764480078,216,0 +170764480126,216,0 +170764480174,216,0 +170764480222,216,0 +170764480270,216,0 +170764480317,216,0 +170764480365,216,0 +170764480413,214,0 +170764480461,214,0 +170764480509,214,0 +170764480557,214,0 +170764480606,214,0 +170764480654,214,0 +170764480702,215,0 +170764480750,214,0 +170764480798,215,0 +170764480846,215,0 +170764480894,215,0 +170764480942,216,0 +170764480990,216,0 +170764481038,215,0 +170764481086,215,0 +170764481134,214,0 +170764481183,214,0 +170764481231,213,0 +170764481279,214,0 +170764481327,213,0 +170764481375,214,0 +170764481424,214,0 +170764481472,215,0 +170764481520,215,0 +170764481568,215,0 +170764481616,215,0 +170764481665,216,0 +170764481713,216,0 +170764481763,216,0 +170764481811,216,0 +170764481859,216,0 +170764481907,216,0 +170764481955,216,0 +170764482003,214,0 +170764482051,214,0 +170764482099,215,0 +170764482147,215,0 +170764482194,215,0 +170764482244,215,0 +170764482292,215,0 +170764482340,216,0 +170764482389,216,0 +170764482437,216,0 +170764482485,216,0 +170764482533,216,0 +170764482582,216,0 +170764482630,216,0 +170764482678,216,0 +170764482726,216,0 +170764482776,215,0 +170764482824,214,0 +170764482871,214,0 +170764482919,214,0 +170764482967,214,0 +170764483015,214,0 +170764483065,215,0 +170764483114,215,0 +170764483162,215,0 +170764483210,215,0 +170764483258,216,0 +170764483306,216,0 +170764483354,215,0 +170764483402,216,0 +170764483449,216,0 +170764483499,216,0 +170764483547,216,0 +170764483595,214,0 +170764483643,213,0 +170764483691,214,0 +170764483739,214,0 +170764483786,214,0 +170764483836,214,0 +170764483886,215,0 +170764483933,215,0 +170764483983,215,0 +170764484031,215,0 +170764484079,215,0 +170764484126,216,0 +170764484174,216,0 +170764484222,216,0 +170764484270,216,0 +170764484318,216,0 +170764484366,215,0 +170764484414,214,0 +170764484462,214,0 +170764484510,214,0 +170764484557,214,0 +170764484607,215,0 +170764484656,215,0 +170764484704,215,0 +170764484752,215,0 +170764484800,215,0 +170764484850,215,0 +170764484899,216,0 +170764484947,215,0 +170764484995,215,0 +170764485043,215,0 +170764485092,216,0 +170764485140,215,0 +170764485190,215,0 +170764485237,214,0 +170764485287,214,0 +170764485335,214,0 +170764485383,214,0 +170764485432,214,0 +170764485480,214,0 +170764485528,215,0 +170764485576,215,0 +170764485625,215,0 +170764485673,215,0 +170764485721,215,0 +170764485769,216,0 +170764485817,216,0 +170764485867,216,0 +170764485914,216,0 +170764485964,216,0 +170764486012,214,0 +170764486060,214,0 +170764486109,214,0 +170764486157,215,0 +170764486207,215,0 +170764486255,215,0 +170764486303,215,0 +170764486352,215,0 +170764486400,215,0 +170764486449,216,0 +170764486497,216,0 +170764486545,216,0 +170764486593,216,0 +170764486641,215,0 +170764486689,216,0 +170764486736,216,0 +170764486784,215,0 +170764486832,215,0 +170764486880,214,0 +170764486928,215,0 +170764486976,215,0 +170764487025,215,0 +170764487075,215,0 +170764487124,215,0 +170764487174,216,0 +170764487222,216,0 +170764487269,216,0 +170764487317,216,0 +170764487367,216,0 +170764487415,216,0 +170764487463,216,0 +170764487510,216,0 +170764487558,216,0 +170764487606,214,0 +170764487654,214,0 +170764487704,214,0 +170764487752,215,0 +170764487800,215,0 +170764487849,215,0 +170764487897,215,0 +170764487945,215,0 +170764487993,215,0 +170764488041,215,0 +170764488090,216,0 +170764488138,215,0 +170764488186,216,0 +170764488236,216,0 +170764488285,216,0 +170764488333,216,0 +170764488381,216,0 +170764488429,214,0 +170764488477,214,0 +170764488525,214,0 +170764488573,214,0 +170764488623,215,0 +170764488670,215,0 +170764488720,215,0 +170764488770,215,0 +170764488817,215,0 +170764488865,216,0 +170764488913,215,0 +170764488963,216,0 +170764489011,216,0 +170764489059,216,0 +170764489108,216,0 +170764489156,216,0 +170764489204,215,0 +170764489252,214,0 +170764489301,214,0 +170764489349,214,0 +170764489397,214,0 +170764489445,215,0 +170764489493,215,0 +170764489541,215,0 +170764489591,215,0 +170764489639,215,0 +170764489686,216,0 +170764489734,216,0 +170764489782,216,0 +170764489832,216,0 +170764489881,215,0 +170764489931,216,0 +170764489979,216,0 +170764490026,214,0 +170764490074,213,0 +170764490124,214,0 +170764490172,214,0 +170764490219,214,0 +170764490269,214,0 +170764490317,215,0 +170764490365,215,0 +170764490413,215,0 +170764490460,215,0 +170764490508,215,0 +170764490556,215,0 +170764490604,215,0 +170764490651,216,0 +170764490699,216,0 +170764490747,216,0 +170764490795,216,0 +170764490843,213,0 +170764490891,213,0 +170764490940,214,0 +170764490988,214,0 +170764491036,214,0 +170764491084,214,0 +170764491133,214,0 +170764491181,215,0 +170764491229,215,0 +170764491277,215,0 +170764491327,215,0 +170764491374,215,0 +170764491422,216,0 +170764491472,216,0 +170764491521,216,0 +170764491569,216,0 +170764491619,214,0 +170764491668,213,0 +170764491716,213,0 +170764491764,213,0 +170764491812,213,0 +170764491860,214,0 +170764491909,214,0 +170764491957,214,0 +170764492005,214,0 +170764492053,214,0 +170764492103,215,0 +170764492150,215,0 +170764492198,215,0 +170764492248,216,0 +170764492296,216,0 +170764492344,215,0 +170764492392,216,0 +170764492439,213,0 +170764492487,213,0 +170764492535,213,0 +170764492585,214,0 +170764492634,214,0 +170764492682,214,0 +170764492732,214,0 +170764492780,214,0 +170764492829,214,0 +170764492877,214,0 +170764492925,214,0 +170764492973,214,0 +170764493022,214,0 +170764493070,215,0 +170764493118,215,0 +170764493168,215,0 +170764493217,216,0 +170764493265,216,0 +170764493313,215,0 +170764493361,216,0 +170764493409,215,0 +170764493457,216,0 +170764493505,216,0 +170764493554,216,0 +170764493602,215,0 +170764493652,214,0 +170764493700,214,0 +170764493747,214,0 +170764493797,214,0 +170764493847,215,0 +170764493896,215,0 +170764493944,215,0 +170764493992,215,0 +170764494040,216,0 +170764494088,216,0 +170764494137,216,0 +170764494185,216,0 +170764494233,216,0 +170764494283,216,0 +170764494331,216,0 +170764494379,216,0 +170764494427,215,0 +170764494476,215,0 +170764494524,215,0 +170764494572,215,0 +170764494620,215,0 +170764494670,215,0 +170764494719,216,0 +170764494768,216,0 +170764494818,216,0 +170764494866,216,0 +170764494914,216,0 +170764494962,216,0 +170764495010,216,0 +170764495059,216,0 +170764495109,216,0 +170764495157,216,0 +170764495205,216,0 +170764495254,214,0 +170764495304,214,0 +170764495352,215,0 +170764495400,215,0 +170764495448,215,0 +170764495496,215,0 +170764495545,216,0 +170764495593,216,0 +170764495641,216,0 +170764495689,216,0 +170764495736,216,0 +170764495784,216,0 +170764495832,216,0 +170764495882,216,0 +170764495931,216,0 +170764495979,216,0 +170764496027,215,0 +170764496075,214,0 +170764496123,214,0 +170764496170,214,0 +170764496218,215,0 +170764496268,215,0 +170764496316,215,0 +170764496364,215,0 +170764496412,216,0 +170764496461,215,0 +170764496511,216,0 +170764496559,216,0 +170764496607,216,0 +170764496654,216,0 +170764496702,216,0 +170764496750,216,0 +170764496800,216,0 +170764496848,214,0 +170764496897,214,0 +170764496947,214,0 +170764496996,215,0 +170764497044,215,0 +170764497092,215,0 +170764497140,215,0 +170764497188,215,0 +170764497236,215,0 +170764497284,215,0 +170764497332,216,0 +170764497382,216,0 +170764497431,216,0 +170764497479,216,0 +170764497527,216,0 +170764497575,216,0 +170764497623,215,0 +170764497671,214,0 +170764497719,214,0 +170764497768,214,0 +170764497816,214,0 +170764497864,214,0 +170764497912,214,0 +170764497960,215,0 +170764498010,215,0 +170764498058,215,0 +170764498105,215,0 +170764498153,215,0 +170764498201,216,0 +170764498251,216,0 +170764498299,216,0 +170764498347,216,0 +170764498396,216,0 +170764498444,214,0 +170764498492,214,0 +170764498540,214,0 +170764498589,215,0 +170764498639,215,0 +170764498687,215,0 +170764498735,215,0 +170764498783,216,0 +170764498832,216,0 +170764498882,216,0 +170764498930,216,0 +170764498979,216,0 +170764499029,216,0 +170764499078,216,0 +170764499126,216,0 +170764499174,216,0 +170764499224,215,0 +170764499272,214,0 +170764499320,215,0 +170764499368,215,0 +170764499417,215,0 +170764499465,215,0 +170764499513,215,0 +170764499561,215,0 +170764499609,216,0 +170764499657,216,0 +170764499705,216,0 +170764499753,216,0 +170764499801,216,0 +170764499850,216,0 +170764499898,216,0 +170764499946,216,0 +170764499994,215,0 +170764500043,214,0 +170764500091,214,0 +170764500141,214,0 +170764500190,214,0 +170764500240,214,0 +170764500288,215,0 +170764500337,215,0 +170764500385,215,0 +170764500433,215,0 +170764500481,216,0 +170764500528,215,0 +170764500576,216,0 +170764500624,216,0 +170764500673,216,0 +170764500721,216,0 +170764500769,216,0 +170764500817,216,0 +170764500865,213,0 +170764500913,214,0 +170764500961,214,0 +170764501009,214,0 +170764501058,214,0 +170764501106,214,0 +170764501154,215,0 +170764501201,215,0 +170764501249,215,0 +170764501297,215,0 +170764501345,215,0 +170764501393,215,0 +170764501441,216,0 +170764501490,216,0 +170764501538,216,0 +170764501587,215,0 +170764501635,215,0 +170764501683,214,0 +170764501731,214,0 +170764501779,214,0 +170764501827,215,0 +170764501875,215,0 +170764501923,215,0 +170764501972,215,0 +170764502020,215,0 +170764502070,215,0 +170764502117,216,0 +170764502165,215,0 +170764502213,216,0 +170764502261,216,0 +170764502309,216,0 +170764502357,216,0 +170764502404,216,0 +170764502452,214,0 +170764502500,214,0 +170764502549,214,0 +170764502597,214,0 +170764502645,214,0 +170764502693,215,0 +170764502741,214,0 +170764502789,215,0 +170764502837,215,0 +170764502884,215,0 +170764502932,216,0 +170764502980,216,0 +170764503028,216,0 +170764503076,216,0 +170764503124,216,0 +170764503171,216,0 +170764503219,216,0 +170764503267,214,0 +170764503315,214,0 +170764503363,213,0 +170764503411,214,0 +170764503460,213,0 +170764503508,214,0 +170764503556,214,0 +170764503603,214,0 +170764503651,215,0 +170764503699,215,0 +170764503747,216,0 +170764503797,216,0 +170764503844,216,0 +170764503894,216,0 +170764503942,215,0 +170764503991,216,0 +170764504039,215,0 +170764504087,213,0 +170764504135,213,0 +170764504185,213,0 +170764504234,214,0 +170764504282,214,0 +170764504330,214,0 +170764504378,214,0 +170764504426,214,0 +170764504474,215,0 +170764504523,215,0 +170764504571,215,0 +170764504621,215,0 +170764504669,215,0 +170764504718,215,0 +170764504766,215,0 +170764504814,216,0 +170764504862,213,0 +170764504910,213,0 +170764504958,213,0 +170764505006,213,0 +170764505054,214,0 +170764505101,214,0 +170764505149,214,0 +170764505197,214,0 +170764505245,214,0 +170764505293,215,0 +170764505342,215,0 +170764505390,215,0 +170764505438,215,0 +170764505486,215,0 +170764505534,215,0 +170764505582,215,0 +170764505629,216,0 +170764505677,213,0 +170764505725,213,0 +170764505773,214,0 +170764505821,214,0 +170764505869,214,0 +170764505916,214,0 +170764505966,214,0 +170764506014,215,0 +170764506063,215,0 +170764506111,215,0 +170764506160,215,0 +170764506208,216,0 +170764506256,216,0 +170764506304,216,0 +170764506352,216,0 +170764506400,216,0 +170764506447,216,0 +170764506497,214,0 +170764506546,214,0 +170764506594,214,0 +170764506642,215,0 +170764506690,215,0 +170764506739,215,0 +170764506787,215,0 +170764506835,215,0 +170764506883,216,0 +170764506931,216,0 +170764506978,216,0 +170764507026,216,0 +170764507074,216,0 +170764507123,216,0 +170764507171,216,0 +170764507219,216,0 +170764507267,215,0 +170764507316,214,0 +170764507364,215,0 +170764507413,215,0 +170764507461,215,0 +170764507509,215,0 +170764507557,215,0 +170764507605,215,0 +170764507653,216,0 +170764507700,216,0 +170764507748,216,0 +170764507796,216,0 +170764507844,216,0 +170764507892,216,0 +170764507940,216,0 +170764507987,216,0 +170764508035,216,0 +170764508083,214,0 +170764508131,214,0 +170764508179,214,0 +170764508227,215,0 +170764508275,215,0 +170764508323,215,0 +170764508370,215,0 +170764508418,215,0 +170764508468,215,0 +170764508516,215,0 +170764508563,215,0 +170764508611,215,0 +170764508659,216,0 +170764508707,216,0 +170764508755,216,0 +170764508803,216,0 +170764508851,215,0 +170764508899,214,0 +170764508946,214,0 +170764508994,214,0 +170764509042,215,0 +170764509090,215,0 +170764509138,215,0 +170764509185,215,0 +170764509233,215,0 +170764509281,215,0 +170764509329,215,0 +170764509378,216,0 +170764509426,216,0 +170764509474,216,0 +170764509522,216,0 +170764509569,216,0 +170764509619,216,0 +170764509667,216,0 +170764509715,214,0 +170764509762,214,0 +170764509810,214,0 +170764509858,215,0 +170764509906,215,0 +170764509954,215,0 +170764510002,215,0 +170764510049,215,0 +170764510099,216,0 +170764510146,216,0 +170764510194,216,0 +170764510242,216,0 +170764510290,216,0 +170764510338,216,0 +170764510386,216,0 +170764510434,216,0 +170764510481,215,0 +170764510529,215,0 +170764510577,215,0 +170764510625,215,0 +170764510673,215,0 +170764510721,215,0 +170764510769,215,0 +170764510817,216,0 +170764510865,216,0 +170764510913,216,0 +170764510962,216,0 +170764511012,216,0 +170764511061,216,0 +170764511109,216,0 +170764511157,216,0 +170764511205,216,0 +170764511254,216,0 +170764511302,215,0 +170764511350,215,0 +170764511398,215,0 +170764511448,215,0 +170764511496,216,0 +170764511543,216,0 +170764511591,216,0 +170764511639,216,0 +170764511687,217,0 +170764511735,216,0 +170764511783,216,0 +170764511831,216,0 +170764511878,216,0 +170764511926,216,0 +170764511974,216,0 +170764512022,216,0 +170764512070,215,0 +170764512118,214,0 +170764512165,214,0 +170764512213,214,0 +170764512261,215,0 +170764512309,215,0 +170764512357,215,0 +170764512405,216,0 +170764512452,215,0 +170764512500,216,0 +170764512548,216,0 +170764512596,216,0 +170764512644,216,0 +170764512692,216,0 +170764512740,215,0 +170764512787,216,0 +170764512837,216,0 +170764512886,215,0 +170764512934,214,0 +170764512982,214,0 +170764513030,214,0 +170764513078,214,0 +170764513126,214,0 +170764513174,214,0 +170764513223,215,0 +170764513271,215,0 +170764513319,215,0 +170764513368,215,0 +170764513416,216,0 +170764513466,216,0 +170764513513,216,0 +170764513561,216,0 +170764513609,215,0 +170764513657,215,0 +170764513705,214,0 +170764513753,214,0 +170764513802,214,0 +170764513850,214,0 +170764513898,214,0 +170764513946,214,0 +170764513994,214,0 +170764514042,215,0 +170764514090,215,0 +170764514138,215,0 +170764514186,215,0 +170764514235,216,0 +170764514283,216,0 +170764514331,216,0 +170764514379,216,0 +170764514427,216,0 +170764514475,216,0 +170764514523,214,0 +170764514571,214,0 +170764514619,214,0 +170764514667,215,0 +170764514716,215,0 +170764514764,215,0 +170764514814,215,0 +170764514863,215,0 +170764514913,216,0 +170764514961,216,0 +170764515010,216,0 +170764515060,216,0 +170764515109,216,0 +170764515159,216,0 +170764515207,216,0 +170764515255,216,0 +170764515303,214,0 +170764515351,213,0 +170764515399,214,0 +170764515446,214,0 +170764515494,214,0 +170764515544,215,0 +170764515592,214,0 +170764515640,215,0 +170764515688,215,0 +170764515738,215,0 +170764515787,215,0 +170764515835,215,0 +170764515883,216,0 +170764515931,216,0 +170764515978,216,0 +170764516026,216,0 +170764516074,216,0 +170764516122,214,0 +170764516171,214,0 +170764516219,214,0 +170764516267,214,0 +170764516315,214,0 +170764516364,214,0 +170764516412,214,0 +170764516462,215,0 +170764516510,215,0 +170764516559,215,0 +170764516609,215,0 +170764516657,216,0 +170764516706,216,0 +170764516756,216,0 +170764516805,216,0 +170764516853,216,0 +170764516901,214,0 +170764516950,213,0 +170764516998,214,0 +170764517046,214,0 +170764517094,214,0 +170764517142,214,0 +170764517190,214,0 +170764517238,215,0 +170764517286,214,0 +170764517336,215,0 +170764517384,215,0 +170764517433,215,0 +170764517481,215,0 +170764517529,215,0 +170764517577,216,0 +170764517626,216,0 +170764517674,216,0 +170764517722,216,0 +170764517770,215,0 +170764517818,214,0 +170764517866,214,0 +170764517914,214,0 +170764517962,214,0 +170764518010,214,0 +170764518059,214,0 +170764518107,214,0 +170764518157,214,0 +170764518205,215,0 +170764518254,215,0 +170764518304,215,0 +170764518352,215,0 +170764518399,215,0 +170764518447,215,0 +170764518495,216,0 +170764518543,215,0 +170764518591,216,0 +170764518640,216,0 +170764518690,216,0 +170764518739,214,0 +170764518787,214,0 +170764518837,214,0 +170764518885,215,0 +170764518933,215,0 +170764518981,215,0 +170764519030,215,0 +170764519078,216,0 +170764519128,215,0 +170764519176,216,0 +170764519225,216,0 +170764519273,216,0 +170764519321,216,0 +170764519369,216,0 +170764519418,216,0 +170764519466,216,0 +170764519516,216,0 +170764519565,216,0 +170764519613,216,0 +170764519661,215,0 +170764519709,214,0 +170764519757,215,0 +170764519805,215,0 +170764519853,215,0 +170764519902,215,0 +170764519952,216,0 +170764520002,215,0 +170764520049,215,0 +170764520098,215,0 +170764520145,216,0 +170764520195,216,0 +170764520245,216,0 +170764520294,216,0 +170764520344,216,0 +170764520393,216,0 +170764520441,216,0 +170764520489,216,0 +170764520539,216,0 +170764520587,214,0 +170764520635,214,0 +170764520684,214,0 +170764520734,214,0 +170764520782,214,0 +170764520831,215,0 +170764520879,214,0 +170764520927,215,0 +170764520977,215,0 +170764521026,215,0 +170764521074,215,0 +170764521122,215,0 +170764521171,216,0 +170764521219,216,0 +170764521267,216,0 +170764521315,216,0 +170764521365,216,0 +170764521414,216,0 +170764521462,216,0 +170764521512,216,0 +170764521560,214,0 +170764521609,213,0 +170764521659,214,0 +170764521707,214,0 +170764521756,214,0 +170764521804,214,0 +170764521852,214,0 +170764521902,215,0 +170764521950,215,0 +170764521999,215,0 +170764522047,215,0 +170764522095,215,0 +170764522145,216,0 +170764522193,216,0 +170764522241,216,0 +170764522289,215,0 +170764522337,216,0 +170764522386,216,0 +170764522434,215,0 +170764522482,213,0 +170764522532,213,0 +170764522581,214,0 +170764522631,214,0 +170764522679,214,0 +170764522728,214,0 +170764522776,214,0 +170764522826,214,0 +170764522874,214,0 +170764522922,214,0 +170764522971,214,0 +170764523019,215,0 +170764523069,215,0 +170764523116,215,0 +170764523164,215,0 +170764523212,215,0 +170764523260,215,0 +170764523308,215,0 +170764523358,215,0 +170764523406,213,0 +170764523455,213,0 +170764523503,214,0 +170764523551,214,0 +170764523600,214,0 +170764523650,214,0 +170764523698,214,0 +170764523746,214,0 +170764523794,214,0 +170764523842,215,0 +170764523891,215,0 +170764523941,215,0 +170764523989,215,0 +170764524037,215,0 +170764524086,215,0 +170764524136,216,0 +170764524184,216,0 +170764524232,216,0 +170764524280,216,0 +170764524329,213,0 +170764524377,214,0 +170764524427,214,0 +170764524475,214,0 +170764524523,214,0 +170764524570,214,0 +170764524618,214,0 +170764524666,215,0 +170764524714,215,0 +170764524763,215,0 +170764524811,215,0 +170764524861,215,0 +170764524909,216,0 +170764524956,216,0 +170764525004,215,0 +170764525054,216,0 +170764525103,216,0 +170764525151,216,0 +170764525199,216,0 +170764525247,215,0 +170764525295,214,0 +170764525344,214,0 +170764525392,214,0 +170764525440,214,0 +170764525488,214,0 +170764525536,215,0 +170764525585,214,0 +170764525633,215,0 +170764525681,215,0 +170764525729,215,0 +170764525778,215,0 +170764525826,216,0 +170764525876,216,0 +170764525925,216,0 +170764525975,215,0 +170764526024,215,0 +170764526074,216,0 +170764526122,216,0 +170764526170,215,0 +170764526219,214,0 +170764526267,213,0 +170764526315,214,0 +170764526363,214,0 +170764526411,214,0 +170764526459,214,0 +170764526507,215,0 +170764526555,215,0 +170764526603,215,0 +170764526651,215,0 +170764526699,215,0 +170764526748,215,0 +170764526796,216,0 +170764526844,216,0 +170764526894,216,0 +170764526942,216,0 +170764526990,216,0 +170764527038,216,0 +170764527087,215,0 +170764527135,214,0 +170764527183,213,0 +170764527231,214,0 +170764527281,214,0 +170764527330,214,0 +170764527378,214,0 +170764527426,214,0 +170764527474,214,0 +170764527521,215,0 +170764527569,215,0 +170764527617,215,0 +170764527665,215,0 +170764527713,215,0 +170764527761,215,0 +170764527809,216,0 +170764527857,216,0 +170764527905,215,0 +170764527953,216,0 +170764528001,215,0 +170764528050,214,0 +170764528098,213,0 +170764528146,214,0 +170764528194,214,0 +170764528244,214,0 +170764528291,214,0 +170764528339,214,0 +170764528387,215,0 +170764528437,215,0 +170764528485,215,0 +170764528533,215,0 +170764528582,215,0 +170764528630,215,0 +170764528678,216,0 +170764528726,216,0 +170764528774,216,0 +170764528822,216,0 +170764528871,216,0 +170764528919,216,0 +170764528967,215,0 +170764529015,213,0 +170764529063,214,0 +170764529110,214,0 +170764529158,214,0 +170764529206,214,0 +170764529254,215,0 +170764529302,215,0 +170764529350,215,0 +170764529397,215,0 +170764529447,215,0 +170764529495,216,0 +170764529543,216,0 +170764529590,216,0 +170764529638,216,0 +170764529688,216,0 +170764529737,216,0 +170764529785,216,0 +170764529833,216,0 +170764529881,215,0 +170764529929,214,0 +170764529977,214,0 +170764530025,214,0 +170764530073,214,0 +170764530122,214,0 +170764530170,215,0 +170764530220,215,0 +170764530268,215,0 +170764530317,215,0 +170764530367,216,0 +170764530415,216,0 +170764530463,216,0 +170764530512,216,0 +170764530560,215,0 +170764530608,216,0 +170764530656,216,0 +170764530704,216,0 +170764530752,216,0 +170764530800,215,0 +170764530848,214,0 +170764530897,213,0 +170764530945,213,0 +170764530993,214,0 +170764531041,214,0 +170764531091,214,0 +170764531139,215,0 +170764531187,215,0 +170764531235,215,0 +170764531282,215,0 +170764531332,216,0 +170764531380,216,0 +170764531428,216,0 +170764531477,216,0 +170764531525,216,0 +170764531573,216,0 +170764531621,216,0 +170764531671,216,0 +170764531719,216,0 +170764531766,214,0 +170764531814,213,0 +170764531862,213,0 +170764531912,213,0 +170764531960,214,0 +170764532008,214,0 +170764532057,214,0 +170764532105,214,0 +170764532153,214,0 +170764532201,214,0 +170764532249,215,0 +170764532298,215,0 +170764532348,215,0 +170764532396,215,0 +170764532444,216,0 +170764532492,215,0 +170764532540,216,0 +170764532589,216,0 +170764532637,216,0 +170764532687,216,0 +170764532735,213,0 +170764532783,213,0 +170764532831,213,0 +170764532880,213,0 +170764532930,214,0 +170764532979,214,0 +170764533027,214,0 +170764533077,214,0 +170764533125,214,0 +170764533173,215,0 +170764533221,215,0 +170764533268,215,0 +170764533318,215,0 +170764533366,215,0 +170764533414,215,0 +170764533463,215,0 +170764533511,216,0 +170764533561,216,0 +170764533609,215,0 +170764533657,213,0 +170764533705,213,0 +170764533753,213,0 +170764533801,213,0 +170764533850,213,0 +170764533898,213,0 +170764533946,214,0 +170764533994,214,0 +170764534042,214,0 +170764534090,214,0 +170764534139,215,0 +170764534187,215,0 +170764534235,215,0 +170764534285,215,0 +170764534334,217,0 +170764534382,216,0 +170764534430,216,0 +170764534480,216,0 +170764534529,215,0 +170764534579,213,0 +170764534627,213,0 +170764534675,213,0 +170764534723,214,0 +170764534771,214,0 +170764534820,214,0 +170764534868,214,0 +170764534916,214,0 +170764534966,214,0 +170764535015,214,0 +170764535065,214,0 +170764535113,215,0 +170764535162,215,0 +170764535212,215,0 +170764535260,215,0 +170764535308,216,0 +170764535356,216,0 +170764535405,216,0 +170764535453,216,0 +170764535501,213,0 +170764535549,213,0 +170764535597,213,0 +170764535645,213,0 +170764535693,213,0 +170764535742,213,0 +170764535790,214,0 +170764535840,214,0 +170764535888,214,0 +170764535936,214,0 +170764535985,214,0 +170764536033,215,0 +170764536081,214,0 +170764536129,215,0 +170764536177,215,0 +170764536225,216,0 +170764536274,215,0 +170764536322,216,0 +170764536370,215,0 +170764536418,215,0 +170764536466,213,0 +170764536514,213,0 +170764536562,213,0 +170764536610,214,0 +170764536658,214,0 +170764536706,214,0 +170764536754,214,0 +170764536803,214,0 +170764536853,215,0 +170764536901,215,0 +170764536949,214,0 +170764536997,215,0 +170764537045,215,0 +170764537094,215,0 +170764537142,215,0 +170764537190,215,0 +170764537239,216,0 +170764537289,215,0 +170764537337,215,0 +170764537386,213,0 +170764537436,213,0 +170764537484,213,0 +170764537532,213,0 +170764537580,214,0 +170764537629,214,0 +170764537677,214,0 +170764537725,214,0 +170764537773,214,0 +170764537821,214,0 +170764537869,214,0 +170764537919,215,0 +170764537966,215,0 +170764538014,215,0 +170764538062,215,0 +170764538110,215,0 +170764538160,215,0 +170764538208,215,0 +170764538257,216,0 +170764538305,213,0 +170764538353,213,0 +170764538401,213,0 +170764538449,213,0 +170764538499,213,0 +170764538547,213,0 +170764538595,214,0 +170764538644,214,0 +170764538692,214,0 +170764538740,214,0 +170764538788,215,0 +170764538836,215,0 +170764538884,215,0 +170764538934,214,0 +170764538982,215,0 +170764539030,216,0 +170764539079,216,0 +170764539129,216,0 +170764539178,216,0 +170764539226,214,0 +170764539274,213,0 +170764539322,213,0 +170764539370,213,0 +170764539418,213,0 +170764539466,213,0 +170764539515,214,0 +170764539563,214,0 +170764539611,214,0 +170764539661,214,0 +170764539709,215,0 +170764539757,215,0 +170764539804,215,0 +170764539852,215,0 +170764539900,215,0 +170764539948,215,0 +170764539996,215,0 +170764540045,215,0 +170764540095,216,0 +170764540143,214,0 +170764540191,213,0 +170764540239,213,0 +170764540286,214,0 +170764540334,214,0 +170764540382,214,0 +170764540430,214,0 +170764540479,214,0 +170764540527,214,0 +170764540577,215,0 +170764540625,215,0 +170764540674,215,0 +170764540722,216,0 +170764540770,216,0 +170764540818,215,0 +170764540867,216,0 +170764540915,216,0 +170764540964,216,0 +170764541012,216,0 +170764541060,216,0 +170764541108,213,0 +170764541156,213,0 +170764541205,213,0 +170764541253,213,0 +170764541301,214,0 +170764541349,213,0 +170764541397,214,0 +170764541445,214,0 +170764541493,214,0 +170764541541,215,0 +170764541590,215,0 +170764541638,215,0 +170764541686,215,0 +170764541734,215,0 +170764541782,215,0 +170764541831,216,0 +170764541879,215,0 +170764541927,216,0 +170764541977,216,0 +170764542025,213,0 +170764542074,213,0 +170764542122,213,0 +170764542170,214,0 +170764542218,214,0 +170764542266,214,0 +170764542314,214,0 +170764542363,214,0 +170764542411,215,0 +170764542459,215,0 +170764542507,215,0 +170764542555,215,0 +170764542602,215,0 +170764542650,215,0 +170764542698,216,0 +170764542748,215,0 +170764542795,216,0 +170764542843,216,0 +170764542891,216,0 +170764542939,214,0 +170764542988,213,0 +170764543036,213,0 +170764543084,214,0 +170764543132,214,0 +170764543182,214,0 +170764543230,214,0 +170764543279,215,0 +170764543329,215,0 +170764543378,215,0 +170764543426,215,0 +170764543476,215,0 +170764543524,215,0 +170764543573,216,0 +170764543623,216,0 +170764543671,216,0 +170764543719,216,0 +170764543767,216,0 +170764543815,216,0 +170764543864,214,0 +170764543914,214,0 +170764543963,214,0 +170764544013,214,0 +170764544061,214,0 +170764544109,214,0 +170764544157,214,0 +170764544205,215,0 +170764544254,215,0 +170764544302,215,0 +170764544352,215,0 +170764544400,215,0 +170764544449,216,0 +170764544499,216,0 +170764544548,216,0 +170764544598,216,0 +170764544646,216,0 +170764544694,216,0 +170764544742,216,0 +170764544791,215,0 +170764544839,214,0 +170764544887,214,0 +170764544935,214,0 +170764544985,214,0 +170764545033,214,0 +170764545080,215,0 +170764545130,215,0 +170764545180,215,0 +170764545229,215,0 +170764545277,215,0 +170764545325,216,0 +170764545373,215,0 +170764545423,216,0 +170764545470,216,0 +170764545518,216,0 +170764545568,216,0 +170764545616,216,0 +170764545664,215,0 +170764545713,215,0 +170764545761,213,0 +170764545811,213,0 +170764545859,213,0 +170764545907,213,0 +170764545955,213,0 +170764546002,214,0 +170764546052,214,0 +170764546100,214,0 +170764546148,215,0 +170764546196,215,0 +170764546244,215,0 +170764546293,215,0 +170764546341,215,0 +170764546391,215,0 +170764546439,215,0 +170764546487,216,0 +170764546536,215,0 +170764546584,216,0 +170764546632,215,0 +170764546680,213,0 +170764546728,213,0 +170764546776,213,0 +170764546825,213,0 +170764546873,213,0 +170764546921,214,0 +170764546971,214,0 +170764547020,214,0 +170764547068,214,0 +170764547116,214,0 +170764547164,214,0 +170764547212,215,0 +170764547260,215,0 +170764547310,215,0 +170764547358,215,0 +170764547406,215,0 +170764547453,215,0 +170764547501,215,0 +170764547549,215,0 +170764547599,213,0 +170764547647,213,0 +170764547696,213,0 +170764547744,213,0 +170764547792,213,0 +170764547842,213,0 +170764547891,213,0 +170764547939,214,0 +170764547987,214,0 +170764548037,214,0 +170764548085,214,0 +170764548134,214,0 +170764548182,214,0 +170764548230,215,0 +170764548278,215,0 +170764548326,215,0 +170764548374,215,0 +170764548424,216,0 +170764548472,216,0 +170764548520,213,0 +170764548569,213,0 +170764548618,213,0 +170764548666,213,0 +170764548716,213,0 +170764548765,213,0 +170764548813,213,0 +170764548861,214,0 +170764548911,214,0 +170764548960,214,0 +170764549008,214,0 +170764549056,214,0 +170764549106,215,0 +170764549154,215,0 +170764549203,215,0 +170764549253,215,0 +170764549301,215,0 +170764549349,216,0 +170764549398,215,0 +170764549446,213,0 +170764549494,213,0 +170764549542,213,0 +170764549590,213,0 +170764549638,213,0 +170764549686,213,0 +170764549735,213,0 +170764549783,214,0 +170764549831,214,0 +170764549879,214,0 +170764549927,214,0 +170764549975,215,0 +170764550023,215,0 +170764550073,215,0 +170764550120,215,0 +170764550168,215,0 +170764550216,215,0 +170764550264,215,0 +170764550314,215,0 +170764550362,213,0 +170764550410,213,0 +170764550458,213,0 +170764550505,213,0 +170764550553,213,0 +170764550603,213,0 +170764550651,213,0 +170764550699,214,0 +170764550748,214,0 +170764550796,214,0 +170764550846,214,0 +170764550895,214,0 +170764550943,215,0 +170764550993,215,0 +170764551042,215,0 +170764551092,215,0 +170764551141,215,0 +170764551189,215,0 +170764551237,215,0 +170764551287,213,0 +170764551336,213,0 +170764551384,213,0 +170764551434,213,0 +170764551482,214,0 +170764551530,214,0 +170764551579,214,0 +170764551627,214,0 +170764551677,214,0 +170764551726,214,0 +170764551774,214,0 +170764551824,215,0 +170764551872,214,0 +170764551921,215,0 +170764551969,216,0 +170764552019,215,0 +170764552067,216,0 +170764552115,216,0 +170764552163,215,0 +170764552211,213,0 +170764552260,213,0 +170764552310,213,0 +170764552359,214,0 +170764552407,214,0 +170764552455,214,0 +170764552503,214,0 +170764552551,214,0 +170764552600,214,0 +170764552648,215,0 +170764552696,215,0 +170764552744,215,0 +170764552792,215,0 +170764552840,215,0 +170764552888,216,0 +170764552936,215,0 +170764552984,216,0 +170764553032,216,0 +170764553080,215,0 +170764553128,213,0 +170764553177,213,0 +170764553227,213,0 +170764553275,214,0 +170764553323,214,0 +170764553370,214,0 +170764553420,214,0 +170764553468,214,0 +170764553516,214,0 +170764553564,215,0 +170764553612,215,0 +170764553661,216,0 +170764553711,215,0 +170764553760,216,0 +170764553808,216,0 +170764553856,216,0 +170764553906,216,0 +170764553954,216,0 +170764554003,216,0 +170764554051,214,0 +170764554099,213,0 +170764554147,214,0 +170764554195,214,0 +170764554243,214,0 +170764554292,214,0 +170764554342,214,0 +170764554390,214,0 +170764554438,214,0 +170764554486,215,0 +170764554535,215,0 +170764554583,215,0 +170764554633,215,0 +170764554682,215,0 +170764554730,215,0 +170764554778,216,0 +170764554826,216,0 +170764554876,215,0 +170764554925,216,0 +170764554973,214,0 +170764555021,213,0 +170764555071,213,0 +170764555120,213,0 +170764555168,213,0 +170764555218,214,0 +170764555266,214,0 +170764555315,214,0 +170764555363,214,0 +170764555411,214,0 +170764555459,215,0 +170764555507,215,0 +170764555555,215,0 +170764555604,216,0 +170764555652,215,0 +170764555702,215,0 +170764555751,216,0 +170764555799,216,0 +170764555847,215,0 +170764555895,214,0 +170764555943,213,0 +170764555993,213,0 +170764556042,213,0 +170764556092,214,0 +170764556140,213,0 +170764556188,213,0 +170764556236,214,0 +170764556284,214,0 +170764556333,214,0 +170764556383,214,0 +170764556432,214,0 +170764556482,215,0 +170764556529,215,0 +170764556577,215,0 +170764556625,215,0 +170764556673,215,0 +170764556721,216,0 +170764556769,215,0 +170764556818,214,0 +170764556868,213,0 +170764556916,213,0 +170764556964,213,0 +170764557012,214,0 +170764557059,214,0 +170764557107,213,0 +170764557155,214,0 +170764557203,214,0 +170764557251,214,0 +170764557299,214,0 +170764557347,215,0 +170764557395,215,0 +170764557443,215,0 +170764557490,215,0 +170764557538,215,0 +170764557586,216,0 +170764557634,215,0 +170764557684,216,0 +170764557732,215,0 +170764557780,213,0 +170764557828,213,0 +170764557877,214,0 +170764557925,214,0 +170764557973,214,0 +170764558021,214,0 +170764558069,214,0 +170764558117,215,0 +170764558164,215,0 +170764558212,215,0 +170764558260,215,0 +170764558308,215,0 +170764558356,216,0 +170764558404,215,0 +170764558452,216,0 +170764558501,215,0 +170764558549,215,0 +170764558597,215,0 +170764558646,215,0 +170764558694,214,0 +170764558742,214,0 +170764558792,214,0 +170764558841,214,0 +170764558891,214,0 +170764558938,215,0 +170764558986,215,0 +170764559036,215,0 +170764559084,215,0 +170764559132,216,0 +170764559180,216,0 +170764559227,216,0 +170764559277,216,0 +170764559325,216,0 +170764559373,216,0 +170764559422,216,0 +170764559470,216,0 +170764559518,216,0 +170764559568,215,0 +170764559616,214,0 +170764559663,214,0 +170764559712,214,0 +170764559761,214,0 +170764559809,215,0 +170764559857,215,0 +170764559906,215,0 +170764559954,215,0 +170764560002,215,0 diff --git a/laser_value/0211-20.csv b/laser_value/0211-20.csv new file mode 100644 index 0000000..31436dc --- /dev/null +++ b/laser_value/0211-20.csv @@ -0,0 +1,7453 @@ +timestamp,laser_value,event +170764560053,215,0 +170764560101,216,0 +170764560149,216,0 +170764560197,216,0 +170764560245,216,0 +170764560293,216,0 +170764560341,216,0 +170764560388,216,0 +170764560436,216,0 +170764560484,216,0 +170764560532,214,0 +170764560580,214,0 +170764560628,214,0 +170764560676,214,0 +170764560724,214,0 +170764560772,214,0 +170764560820,215,0 +170764560868,215,0 +170764560916,215,0 +170764560964,215,0 +170764561013,215,0 +170764561061,215,0 +170764561109,215,0 +170764561157,216,0 +170764561205,215,0 +170764561254,216,0 +170764561302,215,0 +170764561352,216,0 +170764561401,216,0 +170764561449,213,0 +170764561499,213,0 +170764561547,213,0 +170764561595,213,0 +170764561644,214,0 +170764561694,214,0 +170764561742,214,0 +170764561790,214,0 +170764561838,214,0 +170764561887,214,0 +170764561935,215,0 +170764561983,215,0 +170764562033,215,0 +170764562081,215,0 +170764562129,216,0 +170764562176,216,0 +170764562226,216,0 +170764562274,216,0 +170764562322,216,0 +170764562370,213,0 +170764562418,213,0 +170764562466,213,0 +170764562514,213,0 +170764562563,214,0 +170764562611,213,0 +170764562661,214,0 +170764562709,214,0 +170764562757,214,0 +170764562804,214,0 +170764562852,215,0 +170764562900,215,0 +170764562948,215,0 +170764562996,215,0 +170764563044,214,0 +170764563092,215,0 +170764563139,216,0 +170764563187,216,0 +170764563237,216,0 +170764563285,214,0 +170764563333,213,0 +170764563381,213,0 +170764563429,214,0 +170764563477,214,0 +170764563524,214,0 +170764563574,214,0 +170764563622,214,0 +170764563670,214,0 +170764563718,215,0 +170764563767,215,0 +170764563815,215,0 +170764563863,215,0 +170764563913,216,0 +170764563961,216,0 +170764564009,216,0 +170764564057,216,0 +170764564104,216,0 +170764564152,216,0 +170764564200,214,0 +170764564248,213,0 +170764564298,213,0 +170764564347,213,0 +170764564395,214,0 +170764564443,214,0 +170764564492,214,0 +170764564540,214,0 +170764564590,214,0 +170764564638,214,0 +170764564686,215,0 +170764564734,215,0 +170764564782,215,0 +170764564831,215,0 +170764564879,216,0 +170764564928,216,0 +170764564976,215,0 +170764565026,216,0 +170764565074,216,0 +170764565122,214,0 +170764565170,213,0 +170764565219,213,0 +170764565267,214,0 +170764565315,214,0 +170764565364,214,0 +170764565412,214,0 +170764565460,214,0 +170764565508,214,0 +170764565556,214,0 +170764565605,215,0 +170764565655,215,0 +170764565703,215,0 +170764565752,215,0 +170764565800,215,0 +170764565850,215,0 +170764565897,216,0 +170764565947,216,0 +170764565995,216,0 +170764566043,214,0 +170764566091,213,0 +170764566139,214,0 +170764566188,214,0 +170764566238,214,0 +170764566286,214,0 +170764566334,215,0 +170764566383,214,0 +170764566431,215,0 +170764566480,215,0 +170764566530,215,0 +170764566578,215,0 +170764566626,216,0 +170764566674,216,0 +170764566722,216,0 +170764566769,216,0 +170764566817,216,0 +170764566865,216,0 +170764566915,216,0 +170764566963,214,0 +170764567010,213,0 +170764567058,213,0 +170764567106,214,0 +170764567155,214,0 +170764567203,214,0 +170764567253,214,0 +170764567301,214,0 +170764567349,215,0 +170764567398,215,0 +170764567446,215,0 +170764567494,215,0 +170764567541,216,0 +170764567589,216,0 +170764567637,215,0 +170764567687,216,0 +170764567736,215,0 +170764567784,216,0 +170764567832,216,0 +170764567882,214,0 +170764567931,213,0 +170764567981,213,0 +170764568029,213,0 +170764568078,213,0 +170764568128,214,0 +170764568177,214,0 +170764568225,214,0 +170764568275,214,0 +170764568323,215,0 +170764568371,215,0 +170764568419,215,0 +170764568466,215,0 +170764568515,215,0 +170764568564,216,0 +170764568613,216,0 +170764568661,216,0 +170764568709,216,0 +170764568757,216,0 +170764568805,214,0 +170764568853,213,0 +170764568900,213,0 +170764568948,214,0 +170764568996,214,0 +170764569045,214,0 +170764569093,214,0 +170764569143,214,0 +170764569191,214,0 +170764569239,215,0 +170764569287,215,0 +170764569335,215,0 +170764569384,215,0 +170764569434,216,0 +170764569483,215,0 +170764569531,216,0 +170764569581,216,0 +170764569630,216,0 +170764569678,215,0 +170764569726,214,0 +170764569774,213,0 +170764569822,213,0 +170764569870,214,0 +170764569918,214,0 +170764569966,214,0 +170764570014,214,0 +170764570062,214,0 +170764570111,214,0 +170764570161,215,0 +170764570210,215,0 +170764570260,215,0 +170764570308,215,0 +170764570356,215,0 +170764570404,216,0 +170764570453,216,0 +170764570503,216,0 +170764570551,216,0 +170764570600,216,0 +170764570650,213,0 +170764570699,213,0 +170764570747,213,0 +170764570795,213,0 +170764570845,213,0 +170764570893,214,0 +170764570941,214,0 +170764570989,214,0 +170764571037,214,0 +170764571084,215,0 +170764571132,215,0 +170764571182,215,0 +170764571231,215,0 +170764571279,216,0 +170764571327,216,0 +170764571375,216,0 +170764571423,216,0 +170764571471,216,0 +170764571519,216,0 +170764571569,213,0 +170764571617,213,0 +170764571666,213,0 +170764571714,213,0 +170764571763,214,0 +170764571811,214,0 +170764571861,214,0 +170764571909,214,0 +170764571958,214,0 +170764572006,215,0 +170764572054,215,0 +170764572102,215,0 +170764572150,215,0 +170764572197,215,0 +170764572245,216,0 +170764572293,216,0 +170764572341,216,0 +170764572389,216,0 +170764572436,216,0 +170764572484,214,0 +170764572532,213,0 +170764572580,213,0 +170764572628,213,0 +170764572676,213,0 +170764572724,213,0 +170764572773,213,0 +170764572821,214,0 +170764572869,216,0 +170764572917,214,0 +170764572965,214,0 +170764573013,215,0 +170764573060,215,0 +170764573108,215,0 +170764573156,215,0 +170764573204,215,0 +170764573252,216,0 +170764573300,216,0 +170764573348,215,0 +170764573395,213,0 +170764573443,213,0 +170764573491,213,0 +170764573541,213,0 +170764573588,214,0 +170764573638,214,0 +170764573686,214,0 +170764573734,214,0 +170764573782,214,0 +170764573829,215,0 +170764573877,214,0 +170764573925,215,0 +170764573973,215,0 +170764574021,215,0 +170764574069,216,0 +170764574118,215,0 +170764574166,216,0 +170764574214,216,0 +170764574262,216,0 +170764574310,213,0 +170764574357,213,0 +170764574407,213,0 +170764574455,214,0 +170764574503,214,0 +170764574552,213,0 +170764574600,214,0 +170764574648,214,0 +170764574696,214,0 +170764574744,215,0 +170764574792,215,0 +170764574840,215,0 +170764574888,215,0 +170764574935,215,0 +170764574985,216,0 +170764575033,215,0 +170764575082,215,0 +170764575132,216,0 +170764575180,214,0 +170764575229,213,0 +170764575277,213,0 +170764575327,214,0 +170764575375,214,0 +170764575424,214,0 +170764575472,214,0 +170764575520,214,0 +170764575570,215,0 +170764575618,215,0 +170764575666,215,0 +170764575715,215,0 +170764575763,215,0 +170764575813,215,0 +170764575862,216,0 +170764575912,216,0 +170764575961,215,0 +170764576009,216,0 +170764576059,216,0 +170764576108,213,0 +170764576156,213,0 +170764576206,213,0 +170764576255,214,0 +170764576305,214,0 +170764576353,214,0 +170764576401,214,0 +170764576449,214,0 +170764576497,215,0 +170764576545,215,0 +170764576593,215,0 +170764576642,215,0 +170764576690,215,0 +170764576739,215,0 +170764576787,216,0 +170764576835,215,0 +170764576883,216,0 +170764576931,215,0 +170764576979,213,0 +170764577027,214,0 +170764577077,214,0 +170764577126,214,0 +170764577174,214,0 +170764577222,214,0 +170764577270,215,0 +170764577318,215,0 +170764577366,215,0 +170764577414,215,0 +170764577462,215,0 +170764577510,216,0 +170764577558,216,0 +170764577606,216,0 +170764577654,216,0 +170764577703,216,0 +170764577751,216,0 +170764577799,216,0 +170764577847,214,0 +170764577895,214,0 +170764577943,214,0 +170764577991,214,0 +170764578039,214,0 +170764578087,215,0 +170764578135,215,0 +170764578182,215,0 +170764578230,215,0 +170764578280,216,0 +170764578328,216,0 +170764578376,216,0 +170764578423,216,0 +170764578471,216,0 +170764578519,216,0 +170764578567,216,0 +170764578617,216,0 +170764578665,216,0 +170764578712,216,0 +170764578760,214,0 +170764578808,214,0 +170764578856,214,0 +170764578904,214,0 +170764578951,214,0 +170764578999,215,0 +170764579047,215,0 +170764579095,215,0 +170764579143,215,0 +170764579191,216,0 +170764579238,216,0 +170764579286,216,0 +170764579335,216,0 +170764579383,216,0 +170764579433,216,0 +170764579480,216,0 +170764579528,216,0 +170764579578,216,0 +170764579627,214,0 +170764579675,213,0 +170764579723,213,0 +170764579772,214,0 +170764579822,214,0 +170764579870,214,0 +170764579917,214,0 +170764579965,215,0 +170764580013,215,0 +170764580061,215,0 +170764580109,215,0 +170764580157,215,0 +170764580206,215,0 +170764580254,215,0 +170764580302,216,0 +170764580350,216,0 +170764580398,216,0 +170764580446,216,0 +170764580493,216,0 +170764580541,214,0 +170764580590,213,0 +170764580638,214,0 +170764580686,213,0 +170764580734,214,0 +170764580782,214,0 +170764580830,214,0 +170764580879,214,0 +170764580927,214,0 +170764580975,215,0 +170764581024,215,0 +170764581072,215,0 +170764581120,215,0 +170764581168,215,0 +170764581216,216,0 +170764581265,215,0 +170764581313,216,0 +170764581362,216,0 +170764581412,214,0 +170764581462,213,0 +170764581511,213,0 +170764581559,214,0 +170764581609,214,0 +170764581657,214,0 +170764581706,214,0 +170764581754,214,0 +170764581802,214,0 +170764581850,214,0 +170764581898,215,0 +170764581946,215,0 +170764581994,215,0 +170764582042,215,0 +170764582090,215,0 +170764582138,215,0 +170764582185,215,0 +170764582235,216,0 +170764582283,216,0 +170764582332,214,0 +170764582382,213,0 +170764582430,213,0 +170764582478,214,0 +170764582525,214,0 +170764582573,214,0 +170764582621,214,0 +170764582669,214,0 +170764582717,214,0 +170764582765,215,0 +170764582812,215,0 +170764582860,215,0 +170764582908,215,0 +170764582956,216,0 +170764583004,215,0 +170764583052,216,0 +170764583099,216,0 +170764583147,216,0 +170764583195,216,0 +170764583243,214,0 +170764583291,214,0 +170764583339,214,0 +170764583386,214,0 +170764583434,214,0 +170764583482,215,0 +170764583530,215,0 +170764583580,215,0 +170764583627,215,0 +170764583675,215,0 +170764583723,216,0 +170764583773,216,0 +170764583822,216,0 +170764583872,215,0 +170764583920,216,0 +170764583968,216,0 +170764584015,216,0 +170764584063,216,0 +170764584111,214,0 +170764584161,214,0 +170764584209,214,0 +170764584257,214,0 +170764584305,214,0 +170764584354,215,0 +170764584402,215,0 +170764584452,215,0 +170764584501,216,0 +170764584549,215,0 +170764584598,216,0 +170764584646,216,0 +170764584696,215,0 +170764584745,215,0 +170764584795,216,0 +170764584844,215,0 +170764584892,216,0 +170764584940,216,0 +170764584988,214,0 +170764585036,214,0 +170764585084,213,0 +170764585131,213,0 +170764585181,214,0 +170764585230,214,0 +170764585278,214,0 +170764585326,214,0 +170764585376,214,0 +170764585424,215,0 +170764585471,215,0 +170764585519,215,0 +170764585567,216,0 +170764585615,216,0 +170764585665,216,0 +170764585713,215,0 +170764585762,216,0 +170764585812,216,0 +170764585861,216,0 +170764585909,214,0 +170764585957,213,0 +170764586005,213,0 +170764586054,213,0 +170764586102,213,0 +170764586150,213,0 +170764586198,213,0 +170764586246,214,0 +170764586295,214,0 +170764586343,214,0 +170764586391,215,0 +170764586441,215,0 +170764586490,215,0 +170764586538,215,0 +170764586586,215,0 +170764586635,215,0 +170764586683,216,0 +170764586731,216,0 +170764586779,214,0 +170764586829,213,0 +170764586877,213,0 +170764586924,213,0 +170764586972,213,0 +170764587020,213,0 +170764587068,213,0 +170764587116,214,0 +170764587164,214,0 +170764587212,214,0 +170764587262,215,0 +170764587310,215,0 +170764587358,215,0 +170764587406,215,0 +170764587453,215,0 +170764587501,215,0 +170764587549,216,0 +170764587597,216,0 +170764587647,216,0 +170764587695,213,0 +170764587743,213,0 +170764587791,214,0 +170764587839,214,0 +170764587887,214,0 +170764587936,214,0 +170764587986,214,0 +170764588035,214,0 +170764588083,214,0 +170764588131,215,0 +170764588179,215,0 +170764588229,215,0 +170764588277,215,0 +170764588326,215,0 +170764588374,216,0 +170764588422,216,0 +170764588470,216,0 +170764588519,216,0 +170764588569,215,0 +170764588617,213,0 +170764588665,213,0 +170764588714,213,0 +170764588762,214,0 +170764588810,214,0 +170764588858,214,0 +170764588908,214,0 +170764588956,215,0 +170764589003,214,0 +170764589051,215,0 +170764589101,215,0 +170764589149,215,0 +170764589197,215,0 +170764589245,215,0 +170764589292,216,0 +170764589340,216,0 +170764589390,215,0 +170764589438,215,0 +170764589485,214,0 +170764589535,213,0 +170764589584,214,0 +170764589632,214,0 +170764589680,214,0 +170764589728,214,0 +170764589776,214,0 +170764589826,214,0 +170764589874,215,0 +170764589921,215,0 +170764589969,215,0 +170764590017,215,0 +170764590065,216,0 +170764590113,216,0 +170764590161,216,0 +170764590209,216,0 +170764590257,216,0 +170764590305,216,0 +170764590352,216,0 +170764590400,214,0 +170764590450,214,0 +170764590497,214,0 +170764590545,214,0 +170764590595,214,0 +170764590643,214,0 +170764590691,215,0 +170764590739,215,0 +170764590788,215,0 +170764590836,215,0 +170764590886,216,0 +170764590933,215,0 +170764590981,216,0 +170764591031,216,0 +170764591080,216,0 +170764591130,216,0 +170764591178,216,0 +170764591227,216,0 +170764591275,213,0 +170764591325,213,0 +170764591373,214,0 +170764591420,214,0 +170764591468,214,0 +170764591518,214,0 +170764591567,214,0 +170764591615,215,0 +170764591665,215,0 +170764591712,215,0 +170764591760,215,0 +170764591808,216,0 +170764591856,216,0 +170764591904,216,0 +170764591953,216,0 +170764592003,216,0 +170764592051,216,0 +170764592099,216,0 +170764592147,214,0 +170764592195,213,0 +170764592244,213,0 +170764592294,214,0 +170764592342,214,0 +170764592391,214,0 +170764592439,214,0 +170764592487,214,0 +170764592535,214,0 +170764592583,215,0 +170764592631,215,0 +170764592679,215,0 +170764592726,215,0 +170764592774,215,0 +170764592822,215,0 +170764592872,216,0 +170764592919,215,0 +170764592967,216,0 +170764593015,215,0 +170764593063,213,0 +170764593111,213,0 +170764593161,213,0 +170764593209,213,0 +170764593258,214,0 +170764593308,214,0 +170764593356,214,0 +170764593404,214,0 +170764593453,214,0 +170764593501,215,0 +170764593549,214,0 +170764593597,215,0 +170764593645,215,0 +170764593693,215,0 +170764593740,215,0 +170764593790,216,0 +170764593839,215,0 +170764593887,215,0 +170764593935,213,0 +170764593983,213,0 +170764594032,213,0 +170764594080,214,0 +170764594130,214,0 +170764594179,214,0 +170764594229,214,0 +170764594277,214,0 +170764594325,214,0 +170764594374,215,0 +170764594423,215,0 +170764594471,216,0 +170764594519,215,0 +170764594567,215,0 +170764594615,215,0 +170764594663,216,0 +170764594712,215,0 +170764594760,216,0 +170764594808,214,0 +170764594856,213,0 +170764594904,213,0 +170764594953,213,0 +170764595001,214,0 +170764595049,214,0 +170764595097,214,0 +170764595145,214,0 +170764595193,214,0 +170764595240,215,0 +170764595288,215,0 +170764595336,215,0 +170764595384,215,0 +170764595432,216,0 +170764595480,215,0 +170764595527,216,0 +170764595575,216,0 +170764595623,216,0 +170764595671,215,0 +170764595720,213,0 +170764595768,213,0 +170764595816,213,0 +170764595864,214,0 +170764595913,214,0 +170764595961,214,0 +170764596009,214,0 +170764596057,215,0 +170764596105,215,0 +170764596152,215,0 +170764596200,215,0 +170764596248,215,0 +170764596296,216,0 +170764596344,216,0 +170764596392,216,0 +170764596440,215,0 +170764596487,216,0 +170764596535,216,0 +170764596585,214,0 +170764596634,213,0 +170764596682,214,0 +170764596730,214,0 +170764596778,214,0 +170764596827,214,0 +170764596875,214,0 +170764596923,214,0 +170764596971,215,0 +170764597018,215,0 +170764597066,215,0 +170764597114,215,0 +170764597162,215,0 +170764597210,216,0 +170764597258,216,0 +170764597305,215,0 +170764597353,216,0 +170764597403,216,0 +170764597452,215,0 +170764597500,213,0 +170764597548,213,0 +170764597597,214,0 +170764597645,214,0 +170764597693,214,0 +170764597740,214,0 +170764597788,214,0 +170764597836,215,0 +170764597884,215,0 +170764597932,215,0 +170764597980,215,0 +170764598028,215,0 +170764598075,216,0 +170764598123,216,0 +170764598171,216,0 +170764598221,216,0 +170764598269,216,0 +170764598316,216,0 +170764598364,215,0 +170764598412,213,0 +170764598460,214,0 +170764598508,214,0 +170764598556,214,0 +170764598604,214,0 +170764598653,214,0 +170764598701,214,0 +170764598749,215,0 +170764598797,215,0 +170764598844,215,0 +170764598892,216,0 +170764598942,216,0 +170764598990,216,0 +170764599039,216,0 +170764599087,216,0 +170764599135,216,0 +170764599183,216,0 +170764599230,214,0 +170764599278,213,0 +170764599326,214,0 +170764599374,214,0 +170764599422,214,0 +170764599470,214,0 +170764599518,214,0 +170764599566,215,0 +170764599615,215,0 +170764599663,215,0 +170764599712,215,0 +170764599762,215,0 +170764599810,216,0 +170764599858,216,0 +170764599906,215,0 +170764599953,216,0 +170764600001,216,0 +170764600049,216,0 +170764600097,215,0 +170764600147,213,0 +170764600194,214,0 +170764600242,214,0 +170764600290,214,0 +170764600338,215,0 +170764600386,215,0 +170764600434,215,0 +170764600483,215,0 +170764600533,215,0 +170764600581,215,0 +170764600629,216,0 +170764600678,216,0 +170764600726,216,0 +170764600774,216,0 +170764600822,216,0 +170764600870,216,0 +170764600918,216,0 +170764600966,216,0 +170764601013,214,0 +170764601061,213,0 +170764601109,214,0 +170764601157,214,0 +170764601205,214,0 +170764601253,214,0 +170764601301,215,0 +170764601349,215,0 +170764601396,215,0 +170764601446,215,0 +170764601494,215,0 +170764601542,216,0 +170764601591,216,0 +170764601639,216,0 +170764601687,216,0 +170764601737,216,0 +170764601784,216,0 +170764601832,216,0 +170764601880,215,0 +170764601928,213,0 +170764601976,213,0 +170764602024,214,0 +170764602071,214,0 +170764602119,214,0 +170764602169,214,0 +170764602216,214,0 +170764602264,214,0 +170764602312,215,0 +170764602360,215,0 +170764602408,215,0 +170764602456,215,0 +170764602504,216,0 +170764602551,215,0 +170764602601,216,0 +170764602649,216,0 +170764602696,216,0 +170764602744,215,0 +170764602792,213,0 +170764602840,213,0 +170764602888,214,0 +170764602936,214,0 +170764602984,214,0 +170764603032,214,0 +170764603079,214,0 +170764603127,214,0 +170764603175,214,0 +170764603223,214,0 +170764603271,215,0 +170764603319,214,0 +170764603367,215,0 +170764603414,215,0 +170764603462,215,0 +170764603510,215,0 +170764603558,216,0 +170764603606,216,0 +170764603654,214,0 +170764603701,213,0 +170764603749,214,0 +170764603797,214,0 +170764603845,214,0 +170764603893,214,0 +170764603941,215,0 +170764603989,215,0 +170764604036,215,0 +170764604086,215,0 +170764604134,215,0 +170764604182,215,0 +170764604231,216,0 +170764604279,216,0 +170764604327,216,0 +170764604374,216,0 +170764604422,216,0 +170764604470,216,0 +170764604518,214,0 +170764604566,213,0 +170764604614,214,0 +170764604662,214,0 +170764604709,214,0 +170764604757,214,0 +170764604805,214,0 +170764604853,214,0 +170764604901,214,0 +170764604949,215,0 +170764604997,215,0 +170764605045,216,0 +170764605092,216,0 +170764605140,216,0 +170764605188,216,0 +170764605236,216,0 +170764605284,216,0 +170764605333,215,0 +170764605381,213,0 +170764605429,213,0 +170764605476,214,0 +170764605526,214,0 +170764605574,214,0 +170764605621,214,0 +170764605669,214,0 +170764605717,214,0 +170764605765,215,0 +170764605813,215,0 +170764605861,215,0 +170764605910,215,0 +170764605958,215,0 +170764606006,215,0 +170764606055,215,0 +170764606103,215,0 +170764606151,216,0 +170764606199,215,0 +170764606247,213,0 +170764606294,213,0 +170764606342,214,0 +170764606390,214,0 +170764606438,214,0 +170764606486,214,0 +170764606534,214,0 +170764606581,215,0 +170764606629,215,0 +170764606677,215,0 +170764606725,215,0 +170764606773,215,0 +170764606821,216,0 +170764606868,215,0 +170764606916,216,0 +170764606964,216,0 +170764607012,215,0 +170764607060,216,0 +170764607108,213,0 +170764607157,213,0 +170764607205,213,0 +170764607253,214,0 +170764607300,214,0 +170764607348,214,0 +170764607396,214,0 +170764607444,214,0 +170764607492,214,0 +170764607540,215,0 +170764607587,215,0 +170764607635,215,0 +170764607683,215,0 +170764607731,216,0 +170764607779,215,0 +170764607828,216,0 +170764607876,216,0 +170764607926,216,0 +170764607974,213,0 +170764608021,213,0 +170764608069,213,0 +170764608117,213,0 +170764608165,214,0 +170764608213,214,0 +170764608261,213,0 +170764608309,214,0 +170764608358,214,0 +170764608408,215,0 +170764608456,215,0 +170764608505,215,0 +170764608553,214,0 +170764608603,215,0 +170764608652,215,0 +170764608700,216,0 +170764608750,216,0 +170764608798,215,0 +170764608846,213,0 +170764608893,213,0 +170764608941,213,0 +170764608989,213,0 +170764609037,214,0 +170764609085,213,0 +170764609135,214,0 +170764609183,214,0 +170764609231,214,0 +170764609280,215,0 +170764609330,215,0 +170764609378,215,0 +170764609426,215,0 +170764609473,216,0 +170764609521,215,0 +170764609571,215,0 +170764609620,215,0 +170764609670,214,0 +170764609718,213,0 +170764609766,213,0 +170764609816,213,0 +170764609864,213,0 +170764609911,213,0 +170764609959,214,0 +170764610007,214,0 +170764610055,214,0 +170764610103,214,0 +170764610151,215,0 +170764610199,214,0 +170764610246,215,0 +170764610294,215,0 +170764610342,216,0 +170764610390,216,0 +170764610438,216,0 +170764610486,215,0 +170764610533,214,0 +170764610581,213,0 +170764610629,213,0 +170764610677,213,0 +170764610725,213,0 +170764610773,213,0 +170764610821,214,0 +170764610869,213,0 +170764610916,213,0 +170764610964,214,0 +170764611012,214,0 +170764611060,214,0 +170764611109,215,0 +170764611157,215,0 +170764611205,215,0 +170764611254,215,0 +170764611302,215,0 +170764611350,215,0 +170764611398,214,0 +170764611446,213,0 +170764611494,213,0 +170764611543,213,0 +170764611591,213,0 +170764611639,214,0 +170764611687,214,0 +170764611735,214,0 +170764611782,214,0 +170764611830,215,0 +170764611878,215,0 +170764611926,215,0 +170764611974,216,0 +170764612022,215,0 +170764612069,215,0 +170764612117,216,0 +170764612165,215,0 +170764612213,215,0 +170764612261,213,0 +170764612309,213,0 +170764612357,213,0 +170764612406,214,0 +170764612454,214,0 +170764612502,214,0 +170764612550,215,0 +170764612598,214,0 +170764612645,215,0 +170764612693,215,0 +170764612741,215,0 +170764612789,216,0 +170764612837,216,0 +170764612885,216,0 +170764612934,215,0 +170764612982,216,0 +170764613030,216,0 +170764613078,216,0 +170764613126,214,0 +170764613173,213,0 +170764613223,214,0 +170764613271,214,0 +170764613318,214,0 +170764613366,214,0 +170764613414,214,0 +170764613464,215,0 +170764613512,215,0 +170764613560,215,0 +170764613608,215,0 +170764613655,215,0 +170764613705,216,0 +170764613753,216,0 +170764613801,215,0 +170764613848,214,0 +170764613898,216,0 +170764613946,215,0 +170764613993,214,0 +170764614041,213,0 +170764614089,214,0 +170764614137,214,0 +170764614185,215,0 +170764614234,214,0 +170764614282,214,0 +170764614330,214,0 +170764614379,215,0 +170764614427,215,0 +170764614475,215,0 +170764614524,215,0 +170764614572,216,0 +170764614620,216,0 +170764614668,216,0 +170764614716,215,0 +170764614764,216,0 +170764614812,215,0 +170764614860,213,0 +170764614909,213,0 +170764614957,214,0 +170764615005,213,0 +170764615054,214,0 +170764615102,214,0 +170764615150,214,0 +170764615198,214,0 +170764615246,214,0 +170764615293,215,0 +170764615341,215,0 +170764615389,215,0 +170764615437,215,0 +170764615485,215,0 +170764615533,215,0 +170764615580,215,0 +170764615628,216,0 +170764615676,215,0 +170764615724,213,0 +170764615772,213,0 +170764615820,214,0 +170764615868,214,0 +170764615916,214,0 +170764615964,214,0 +170764616012,214,0 +170764616060,214,0 +170764616109,214,0 +170764616158,215,0 +170764616206,215,0 +170764616254,215,0 +170764616302,215,0 +170764616350,215,0 +170764616400,216,0 +170764616447,216,0 +170764616495,215,0 +170764616543,214,0 +170764616591,213,0 +170764616641,214,0 +170764616689,214,0 +170764616737,214,0 +170764616785,214,0 +170764616832,214,0 +170764616880,214,0 +170764616930,215,0 +170764616978,215,0 +170764617027,215,0 +170764617077,215,0 +170764617125,215,0 +170764617173,216,0 +170764617222,216,0 +170764617272,216,0 +170764617319,216,0 +170764617367,215,0 +170764617415,214,0 +170764617463,214,0 +170764617511,214,0 +170764617561,214,0 +170764617609,215,0 +170764617656,215,0 +170764617704,215,0 +170764617752,215,0 +170764617800,215,0 +170764617850,216,0 +170764617898,216,0 +170764617945,216,0 +170764617993,216,0 +170764618041,216,0 +170764618089,216,0 +170764618139,216,0 +170764618187,216,0 +170764618234,215,0 +170764618284,214,0 +170764618333,214,0 +170764618381,214,0 +170764618431,214,0 +170764618479,214,0 +170764618527,214,0 +170764618575,215,0 +170764618623,215,0 +170764618671,215,0 +170764618718,215,0 +170764618766,215,0 +170764618814,215,0 +170764618864,216,0 +170764618913,215,0 +170764618963,216,0 +170764619012,216,0 +170764619062,216,0 +170764619110,214,0 +170764619158,214,0 +170764619206,214,0 +170764619255,214,0 +170764619303,214,0 +170764619352,214,0 +170764619400,215,0 +170764619448,215,0 +170764619496,215,0 +170764619544,215,0 +170764619594,215,0 +170764619642,215,0 +170764619691,216,0 +170764619741,216,0 +170764619790,216,0 +170764619838,216,0 +170764619888,216,0 +170764619935,216,0 +170764619983,214,0 +170764620031,214,0 +170764620081,214,0 +170764620129,214,0 +170764620177,214,0 +170764620225,214,0 +170764620273,215,0 +170764620322,215,0 +170764620370,215,0 +170764620419,214,0 +170764620467,215,0 +170764620517,215,0 +170764620567,216,0 +170764620614,216,0 +170764620664,216,0 +170764620712,215,0 +170764620761,215,0 +170764620809,215,0 +170764620859,214,0 +170764620907,214,0 +170764620955,214,0 +170764621003,214,0 +170764621051,214,0 +170764621099,215,0 +170764621148,215,0 +170764621196,215,0 +170764621244,215,0 +170764621294,215,0 +170764621342,216,0 +170764621391,216,0 +170764621439,216,0 +170764621489,216,0 +170764621536,216,0 +170764621584,216,0 +170764621632,216,0 +170764621680,214,0 +170764621730,214,0 +170764621778,214,0 +170764621827,214,0 +170764621877,214,0 +170764621926,214,0 +170764621974,215,0 +170764622022,215,0 +170764622070,215,0 +170764622118,215,0 +170764622165,216,0 +170764622213,216,0 +170764622261,216,0 +170764622309,216,0 +170764622357,216,0 +170764622405,216,0 +170764622452,216,0 +170764622500,215,0 +170764622548,214,0 +170764622598,213,0 +170764622647,213,0 +170764622695,214,0 +170764622743,214,0 +170764622791,214,0 +170764622841,214,0 +170764622890,214,0 +170764622938,214,0 +170764622987,214,0 +170764623035,214,0 +170764623085,215,0 +170764623134,215,0 +170764623182,215,0 +170764623230,215,0 +170764623278,215,0 +170764623326,216,0 +170764623374,215,0 +170764623422,213,0 +170764623471,213,0 +170764623519,213,0 +170764623569,213,0 +170764623617,214,0 +170764623665,213,0 +170764623713,213,0 +170764623761,214,0 +170764623809,214,0 +170764623857,214,0 +170764623906,214,0 +170764623954,215,0 +170764624002,215,0 +170764624050,215,0 +170764624100,215,0 +170764624148,215,0 +170764624197,215,0 +170764624245,214,0 +170764624293,213,0 +170764624341,213,0 +170764624389,213,0 +170764624437,213,0 +170764624485,214,0 +170764624534,214,0 +170764624582,214,0 +170764624630,214,0 +170764624678,214,0 +170764624726,214,0 +170764624774,214,0 +170764624823,215,0 +170764624871,215,0 +170764624921,215,0 +170764624969,215,0 +170764625018,216,0 +170764625066,215,0 +170764625114,214,0 +170764625162,213,0 +170764625212,213,0 +170764625261,213,0 +170764625311,213,0 +170764625360,213,0 +170764625408,213,0 +170764625456,213,0 +170764625506,214,0 +170764625554,214,0 +170764625603,214,0 +170764625651,215,0 +170764625699,215,0 +170764625747,215,0 +170764625795,215,0 +170764625843,215,0 +170764625892,215,0 +170764625940,215,0 +170764625990,213,0 +170764626038,213,0 +170764626086,213,0 +170764626134,213,0 +170764626181,213,0 +170764626231,214,0 +170764626280,214,0 +170764626328,215,0 +170764626376,215,0 +170764626424,215,0 +170764626472,215,0 +170764626521,215,0 +170764626569,216,0 +170764626617,216,0 +170764626665,216,0 +170764626712,216,0 +170764626760,216,0 +170764626808,214,0 +170764626856,213,0 +170764626904,213,0 +170764626953,214,0 +170764627001,214,0 +170764627049,214,0 +170764627097,214,0 +170764627146,215,0 +170764627196,215,0 +170764627244,215,0 +170764627292,215,0 +170764627340,216,0 +170764627389,215,0 +170764627437,215,0 +170764627487,216,0 +170764627535,216,0 +170764627584,215,0 +170764627632,215,0 +170764627682,214,0 +170764627730,214,0 +170764627778,214,0 +170764627827,214,0 +170764627875,214,0 +170764627923,215,0 +170764627971,215,0 +170764628019,215,0 +170764628069,215,0 +170764628118,215,0 +170764628166,216,0 +170764628215,216,0 +170764628263,216,0 +170764628311,216,0 +170764628359,216,0 +170764628407,216,0 +170764628455,216,0 +170764628503,215,0 +170764628550,213,0 +170764628598,213,0 +170764628646,214,0 +170764628694,214,0 +170764628743,214,0 +170764628793,214,0 +170764628842,214,0 +170764628892,215,0 +170764628940,215,0 +170764628987,215,0 +170764629035,215,0 +170764629083,215,0 +170764629131,215,0 +170764629181,216,0 +170764629229,216,0 +170764629277,216,0 +170764629325,215,0 +170764629373,214,0 +170764629421,213,0 +170764629468,213,0 +170764629518,214,0 +170764629566,214,0 +170764629614,214,0 +170764629662,214,0 +170764629711,214,0 +170764629761,214,0 +170764629809,216,0 +170764629858,215,0 +170764629908,215,0 +170764629957,215,0 +170764630005,216,0 +170764630053,215,0 +170764630101,216,0 +170764630151,216,0 +170764630200,216,0 +170764630248,214,0 +170764630296,214,0 +170764630346,214,0 +170764630394,214,0 +170764630441,214,0 +170764630491,214,0 +170764630539,215,0 +170764630588,215,0 +170764630638,215,0 +170764630687,215,0 +170764630737,215,0 +170764630785,216,0 +170764630833,216,0 +170764630881,216,0 +170764630929,216,0 +170764630978,216,0 +170764631026,216,0 +170764631074,214,0 +170764631123,214,0 +170764631173,214,0 +170764631221,214,0 +170764631270,214,0 +170764631320,215,0 +170764631368,215,0 +170764631417,215,0 +170764631467,215,0 +170764631517,216,0 +170764631564,216,0 +170764631612,216,0 +170764631662,216,0 +170764631711,216,0 +170764631761,216,0 +170764631811,216,0 +170764631858,216,0 +170764631906,215,0 +170764631956,214,0 +170764632005,214,0 +170764632055,214,0 +170764632103,215,0 +170764632152,215,0 +170764632200,215,0 +170764632248,215,0 +170764632296,215,0 +170764632345,216,0 +170764632393,216,0 +170764632441,215,0 +170764632489,216,0 +170764632537,216,0 +170764632585,216,0 +170764632633,216,0 +170764632682,216,0 +170764632730,216,0 +170764632780,214,0 +170764632828,214,0 +170764632877,214,0 +170764632927,214,0 +170764632975,214,0 +170764633023,214,0 +170764633071,215,0 +170764633119,215,0 +170764633167,215,0 +170764633216,215,0 +170764633264,215,0 +170764633312,216,0 +170764633360,216,0 +170764633409,216,0 +170764633457,216,0 +170764633505,216,0 +170764633553,216,0 +170764633601,215,0 +170764633649,214,0 +170764633697,214,0 +170764633745,214,0 +170764633793,214,0 +170764633841,214,0 +170764633890,214,0 +170764633938,214,0 +170764633986,214,0 +170764634034,215,0 +170764634082,215,0 +170764634130,215,0 +170764634178,216,0 +170764634226,216,0 +170764634276,216,0 +170764634323,216,0 +170764634371,216,0 +170764634421,216,0 +170764634469,214,0 +170764634518,213,0 +170764634566,214,0 +170764634614,214,0 +170764634662,214,0 +170764634710,214,0 +170764634758,214,0 +170764634805,214,0 +170764634853,214,0 +170764634901,215,0 +170764634949,215,0 +170764634997,215,0 +170764635045,216,0 +170764635093,216,0 +170764635142,216,0 +170764635190,216,0 +170764635238,216,0 +170764635287,216,0 +170764635335,214,0 +170764635383,214,0 +170764635431,214,0 +170764635478,214,0 +170764635526,215,0 +170764635574,214,0 +170764635622,214,0 +170764635670,215,0 +170764635718,215,0 +170764635767,215,0 +170764635815,215,0 +170764635863,216,0 +170764635911,215,0 +170764635959,216,0 +170764636007,216,0 +170764636056,216,0 +170764636106,216,0 +170764636154,213,0 +170764636202,213,0 +170764636250,214,0 +170764636298,214,0 +170764636346,214,0 +170764636394,215,0 +170764636442,215,0 +170764636490,214,0 +170764636538,215,0 +170764636585,215,0 +170764636633,215,0 +170764636681,215,0 +170764636729,216,0 +170764636778,215,0 +170764636826,216,0 +170764636874,216,0 +170764636922,216,0 +170764636970,214,0 +170764637018,213,0 +170764637066,213,0 +170764637114,214,0 +170764637163,214,0 +170764637213,214,0 +170764637261,214,0 +170764637308,214,0 +170764637356,215,0 +170764637404,215,0 +170764637452,215,0 +170764637500,215,0 +170764637550,216,0 +170764637598,215,0 +170764637647,216,0 +170764637695,216,0 +170764637743,216,0 +170764637792,216,0 +170764637840,213,0 +170764637888,213,0 +170764637936,213,0 +170764637984,213,0 +170764638032,213,0 +170764638080,214,0 +170764638128,214,0 +170764638175,214,0 +170764638223,214,0 +170764638271,214,0 +170764638319,215,0 +170764638367,215,0 +170764638415,214,0 +170764638463,215,0 +170764638510,215,0 +170764638558,215,0 +170764638608,216,0 +170764638656,214,0 +170764638704,213,0 +170764638751,213,0 +170764638799,213,0 +170764638849,213,0 +170764638897,213,0 +170764638946,213,0 +170764638996,213,0 +170764639045,214,0 +170764639095,214,0 +170764639144,214,0 +170764639192,214,0 +170764639240,214,0 +170764639288,214,0 +170764639336,214,0 +170764639383,214,0 +170764639431,215,0 +170764639481,215,0 +170764639530,215,0 +170764639578,215,0 +170764639626,216,0 +170764639674,216,0 +170764639722,216,0 +170764639769,216,0 +170764639817,216,0 +170764639865,216,0 +170764639915,214,0 +170764639962,213,0 +170764640010,214,0 +170764640058,214,0 +170764640106,214,0 +170764640154,214,0 +170764640202,214,0 +170764640249,214,0 +170764640297,215,0 +170764640347,215,0 +170764640395,215,0 +170764640443,215,0 +170764640490,215,0 +170764640540,215,0 +170764640589,215,0 +170764640637,216,0 +170764640685,215,0 +170764640733,214,0 +170764640781,213,0 +170764640830,213,0 +170764640880,214,0 +170764640929,214,0 +170764640978,214,0 +170764641028,214,0 +170764641076,215,0 +170764641123,215,0 +170764641171,215,0 +170764641219,215,0 +170764641267,216,0 +170764641315,216,0 +170764641364,216,0 +170764641412,216,0 +170764641460,216,0 +170764641508,216,0 +170764641557,216,0 +170764641605,214,0 +170764641653,214,0 +170764641701,214,0 +170764641749,215,0 +170764641798,215,0 +170764641846,215,0 +170764641894,215,0 +170764641941,215,0 +170764641989,216,0 +170764642037,216,0 +170764642085,216,0 +170764642133,216,0 +170764642181,216,0 +170764642229,216,0 +170764642276,216,0 +170764642324,215,0 +170764642372,216,0 +170764642420,215,0 +170764642468,215,0 +170764642516,215,0 +170764642564,215,0 +170764642611,215,0 +170764642659,215,0 +170764642707,216,0 +170764642755,216,0 +170764642803,216,0 +170764642851,216,0 +170764642899,216,0 +170764642947,215,0 +170764642995,216,0 +170764643043,216,0 +170764643090,216,0 +170764643138,216,0 +170764643186,216,0 +170764643234,214,0 +170764643284,214,0 +170764643331,214,0 +170764643379,214,0 +170764643427,215,0 +170764643475,215,0 +170764643523,215,0 +170764643571,215,0 +170764643619,215,0 +170764643668,215,0 +170764643716,216,0 +170764643764,216,0 +170764643812,216,0 +170764643860,216,0 +170764643908,215,0 +170764643955,216,0 +170764644005,216,0 +170764644053,216,0 +170764644100,214,0 +170764644148,214,0 +170764644196,214,0 +170764644244,214,0 +170764644292,214,0 +170764644340,215,0 +170764644388,215,0 +170764644435,215,0 +170764644483,215,0 +170764644531,215,0 +170764644579,215,0 +170764644627,216,0 +170764644675,216,0 +170764644723,216,0 +170764644771,216,0 +170764644819,215,0 +170764644866,216,0 +170764644914,214,0 +170764644962,214,0 +170764645010,214,0 +170764645058,214,0 +170764645106,214,0 +170764645155,215,0 +170764645203,215,0 +170764645252,215,0 +170764645300,215,0 +170764645348,215,0 +170764645396,215,0 +170764645444,216,0 +170764645492,216,0 +170764645539,216,0 +170764645587,216,0 +170764645635,216,0 +170764645683,216,0 +170764645731,214,0 +170764645779,214,0 +170764645827,214,0 +170764645876,214,0 +170764645925,214,0 +170764645973,215,0 +170764646021,215,0 +170764646069,215,0 +170764646117,216,0 +170764646165,215,0 +170764646213,216,0 +170764646260,216,0 +170764646310,216,0 +170764646358,216,0 +170764646406,216,0 +170764646453,216,0 +170764646501,216,0 +170764646549,215,0 +170764646597,214,0 +170764646645,214,0 +170764646693,214,0 +170764646741,215,0 +170764646789,215,0 +170764646837,215,0 +170764646885,215,0 +170764646932,215,0 +170764646980,216,0 +170764647028,216,0 +170764647076,216,0 +170764647124,216,0 +170764647171,215,0 +170764647219,216,0 +170764647267,216,0 +170764647315,216,0 +170764647363,215,0 +170764647410,214,0 +170764647458,214,0 +170764647506,214,0 +170764647554,214,0 +170764647602,214,0 +170764647650,214,0 +170764647698,215,0 +170764647746,215,0 +170764647794,215,0 +170764647842,215,0 +170764647890,215,0 +170764647937,215,0 +170764647985,216,0 +170764648033,216,0 +170764648081,215,0 +170764648130,216,0 +170764648178,216,0 +170764648226,214,0 +170764648274,213,0 +170764648322,213,0 +170764648369,214,0 +170764648417,214,0 +170764648465,214,0 +170764648513,214,0 +170764648561,214,0 +170764648610,214,0 +170764648658,215,0 +170764648707,216,0 +170764648755,215,0 +170764648803,216,0 +170764648851,215,0 +170764648900,215,0 +170764648950,216,0 +170764648998,216,0 +170764649046,214,0 +170764649094,213,0 +170764649141,213,0 +170764649189,213,0 +170764649237,214,0 +170764649285,214,0 +170764649333,214,0 +170764649381,214,0 +170764649428,215,0 +170764649476,215,0 +170764649524,215,0 +170764649572,215,0 +170764649620,215,0 +170764649669,215,0 +170764649717,215,0 +170764649765,216,0 +170764649813,216,0 +170764649860,216,0 +170764649908,213,0 +170764649956,213,0 +170764650004,213,0 +170764650052,213,0 +170764650100,213,0 +170764650147,214,0 +170764650195,214,0 +170764650243,214,0 +170764650291,214,0 +170764650339,215,0 +170764650387,215,0 +170764650434,215,0 +170764650484,215,0 +170764650532,215,0 +170764650579,215,0 +170764650627,215,0 +170764650677,215,0 +170764650725,213,0 +170764650774,213,0 +170764650822,213,0 +170764650871,214,0 +170764650919,214,0 +170764650967,214,0 +170764651017,214,0 +170764651064,214,0 +170764651114,214,0 +170764651162,214,0 +170764651210,215,0 +170764651257,215,0 +170764651305,215,0 +170764651353,215,0 +170764651402,216,0 +170764651450,216,0 +170764651498,216,0 +170764651546,214,0 +170764651594,213,0 +170764651642,214,0 +170764651689,213,0 +170764651739,214,0 +170764651788,214,0 +170764651836,214,0 +170764651884,214,0 +170764651932,215,0 +170764651980,215,0 +170764652027,215,0 +170764652075,215,0 +170764652123,215,0 +170764652171,216,0 +170764652219,216,0 +170764652267,216,0 +170764652315,216,0 +170764652362,215,0 +170764652410,213,0 +170764652458,213,0 +170764652506,213,0 +170764652554,213,0 +170764652601,214,0 +170764652651,214,0 +170764652699,214,0 +170764652747,214,0 +170764652795,214,0 +170764652843,214,0 +170764652891,215,0 +170764652939,215,0 +170764652987,216,0 +170764653035,216,0 +170764653083,216,0 +170764653132,216,0 +170764653182,216,0 +170764653231,213,0 +170764653279,213,0 +170764653327,213,0 +170764653376,214,0 +170764653424,214,0 +170764653472,214,0 +170764653520,214,0 +170764653568,215,0 +170764653616,215,0 +170764653664,215,0 +170764653713,215,0 +170764653761,215,0 +170764653809,216,0 +170764653857,215,0 +170764653905,216,0 +170764653952,215,0 +170764654000,215,0 +170764654050,213,0 +170764654098,213,0 +170764654146,214,0 +170764654193,214,0 +170764654241,214,0 +170764654291,214,0 +170764654339,214,0 +170764654387,214,0 +170764654435,214,0 +170764654483,215,0 +170764654532,215,0 +170764654580,215,0 +170764654628,215,0 +170764654675,215,0 +170764654723,216,0 +170764654771,216,0 +170764654819,216,0 +170764654867,214,0 +170764654915,214,0 +170764654963,214,0 +170764655010,214,0 +170764655060,215,0 +170764655108,215,0 +170764655156,215,0 +170764655203,215,0 +170764655251,215,0 +170764655299,215,0 +170764655348,216,0 +170764655396,216,0 +170764655444,216,0 +170764655492,216,0 +170764655540,216,0 +170764655588,216,0 +170764655635,216,0 +170764655683,216,0 +170764655731,214,0 +170764655779,214,0 +170764655827,215,0 +170764655875,215,0 +170764655923,215,0 +170764655971,215,0 +170764656018,215,0 +170764656066,215,0 +170764656114,215,0 +170764656162,216,0 +170764656210,216,0 +170764656258,216,0 +170764656305,216,0 +170764656353,216,0 +170764656401,216,0 +170764656449,215,0 +170764656497,215,0 +170764656545,214,0 +170764656592,214,0 +170764656640,214,0 +170764656688,214,0 +170764656736,215,0 +170764656784,214,0 +170764656832,215,0 +170764656881,215,0 +170764656929,215,0 +170764656977,215,0 +170764657025,214,0 +170764657072,215,0 +170764657120,215,0 +170764657168,216,0 +170764657216,216,0 +170764657264,216,0 +170764657311,215,0 +170764657359,214,0 +170764657407,213,0 +170764657455,213,0 +170764657503,214,0 +170764657551,214,0 +170764657598,214,0 +170764657646,214,0 +170764657694,215,0 +170764657742,215,0 +170764657790,215,0 +170764657839,215,0 +170764657887,215,0 +170764657935,215,0 +170764657983,216,0 +170764658030,216,0 +170764658078,216,0 +170764658126,216,0 +170764658174,215,0 +170764658222,214,0 +170764658270,214,0 +170764658319,214,0 +170764658367,213,0 +170764658415,214,0 +170764658463,214,0 +170764658512,215,0 +170764658560,214,0 +170764658608,215,0 +170764658656,215,0 +170764658705,215,0 +170764658753,215,0 +170764658801,215,0 +170764658849,215,0 +170764658896,216,0 +170764658944,216,0 +170764658992,216,0 +170764659040,214,0 +170764659088,214,0 +170764659136,214,0 +170764659184,214,0 +170764659231,214,0 +170764659279,215,0 +170764659327,215,0 +170764659376,215,0 +170764659424,215,0 +170764659472,216,0 +170764659520,216,0 +170764659568,216,0 +170764659616,216,0 +170764659664,216,0 +170764659711,216,0 +170764659759,216,0 +170764659807,215,0 +170764659855,214,0 +170764659903,214,0 +170764659951,214,0 +170764659998,214,0 +170764660046,215,0 +170764660094,215,0 +170764660144,215,0 +170764660192,216,0 +170764660239,216,0 +170764660287,216,0 +170764660335,216,0 +170764660383,216,0 +170764660431,216,0 +170764660480,216,0 +170764660528,216,0 +170764660576,216,0 +170764660625,216,0 +170764660673,214,0 +170764660723,215,0 +170764660771,215,0 +170764660820,215,0 +170764660868,215,0 +170764660917,215,0 +170764660965,215,0 +170764661013,215,0 +170764661061,215,0 +170764661109,216,0 +170764661157,215,0 +170764661205,216,0 +170764661254,216,0 +170764661302,216,0 +170764661351,216,0 +170764661401,216,0 +170764661448,216,0 +170764661496,214,0 +170764661544,214,0 +170764661592,214,0 +170764661640,214,0 +170764661688,214,0 +170764661735,215,0 +170764661785,215,0 +170764661833,215,0 +170764661880,215,0 +170764661928,215,0 +170764661976,215,0 +170764662024,216,0 +170764662073,216,0 +170764662121,216,0 +170764662169,216,0 +170764662217,216,0 +170764662265,216,0 +170764662314,216,0 +170764662364,214,0 +170764662411,214,0 +170764662459,214,0 +170764662509,214,0 +170764662557,215,0 +170764662604,215,0 +170764662652,215,0 +170764662700,215,0 +170764662748,215,0 +170764662796,215,0 +170764662843,216,0 +170764662891,216,0 +170764662939,216,0 +170764662987,216,0 +170764663035,216,0 +170764663083,216,0 +170764663131,216,0 +170764663178,214,0 +170764663226,214,0 +170764663274,214,0 +170764663322,214,0 +170764663370,214,0 +170764663418,215,0 +170764663466,215,0 +170764663513,215,0 +170764663561,215,0 +170764663609,215,0 +170764663657,216,0 +170764663707,216,0 +170764663755,216,0 +170764663804,216,0 +170764663854,216,0 +170764663902,216,0 +170764663949,216,0 +170764663997,213,0 +170764664047,214,0 +170764664095,214,0 +170764664143,213,0 +170764664192,214,0 +170764664242,214,0 +170764664290,214,0 +170764664339,214,0 +170764664387,215,0 +170764664436,215,0 +170764664484,215,0 +170764664532,216,0 +170764664580,215,0 +170764664628,216,0 +170764664676,216,0 +170764664725,216,0 +170764664775,214,0 +170764664823,214,0 +170764664871,214,0 +170764664919,214,0 +170764664966,214,0 +170764665014,214,0 +170764665064,214,0 +170764665112,215,0 +170764665160,215,0 +170764665207,215,0 +170764665255,215,0 +170764665303,215,0 +170764665351,215,0 +170764665399,215,0 +170764665447,215,0 +170764665495,216,0 +170764665543,216,0 +170764665591,214,0 +170764665639,214,0 +170764665687,214,0 +170764665736,214,0 +170764665784,214,0 +170764665832,214,0 +170764665880,214,0 +170764665930,215,0 +170764665979,215,0 +170764666029,215,0 +170764666078,215,0 +170764666126,215,0 +170764666174,216,0 +170764666224,216,0 +170764666272,216,0 +170764666320,215,0 +170764666368,215,0 +170764666417,213,0 +170764666465,214,0 +170764666513,213,0 +170764666561,214,0 +170764666609,214,0 +170764666657,214,0 +170764666706,215,0 +170764666756,215,0 +170764666805,215,0 +170764666853,215,0 +170764666901,215,0 +170764666950,215,0 +170764666998,215,0 +170764667046,216,0 +170764667096,217,0 +170764667144,216,0 +170764667192,215,0 +170764667241,213,0 +170764667289,213,0 +170764667337,214,0 +170764667387,214,0 +170764667436,214,0 +170764667484,214,0 +170764667532,215,0 +170764667580,215,0 +170764667628,215,0 +170764667677,215,0 +170764667725,215,0 +170764667773,215,0 +170764667821,216,0 +170764667869,216,0 +170764667919,216,0 +170764667967,216,0 +170764668015,215,0 +170764668063,214,0 +170764668111,214,0 +170764668159,214,0 +170764668207,215,0 +170764668254,215,0 +170764668302,215,0 +170764668350,215,0 +170764668400,215,0 +170764668449,216,0 +170764668497,216,0 +170764668547,216,0 +170764668595,216,0 +170764668643,216,0 +170764668692,216,0 +170764668740,216,0 +170764668788,216,0 +170764668836,214,0 +170764668884,214,0 +170764668932,215,0 +170764668980,215,0 +170764669029,215,0 +170764669077,215,0 +170764669127,215,0 +170764669175,215,0 +170764669223,216,0 +170764669270,216,0 +170764669318,216,0 +170764669366,216,0 +170764669414,215,0 +170764669462,216,0 +170764669512,216,0 +170764669560,216,0 +170764669609,216,0 +170764669657,214,0 +170764669707,214,0 +170764669755,214,0 +170764669803,214,0 +170764669850,215,0 +170764669900,215,0 +170764669948,215,0 +170764669996,215,0 +170764670045,215,0 +170764670095,215,0 +170764670144,215,0 +170764670192,216,0 +170764670242,215,0 +170764670290,216,0 +170764670338,215,0 +170764670387,215,0 +170764670435,214,0 +170764670485,213,0 +170764670533,214,0 +170764670580,214,0 +170764670628,214,0 +170764670676,214,0 +170764670726,214,0 +170764670774,214,0 +170764670822,215,0 +170764670871,215,0 +170764670919,215,0 +170764670969,215,0 +170764671018,216,0 +170764671068,215,0 +170764671116,215,0 +170764671164,215,0 +170764671212,215,0 +170764671261,214,0 +170764671309,213,0 +170764671357,214,0 +170764671405,214,0 +170764671453,214,0 +170764671501,214,0 +170764671549,214,0 +170764671597,214,0 +170764671645,215,0 +170764671693,215,0 +170764671741,215,0 +170764671790,215,0 +170764671840,215,0 +170764671888,215,0 +170764671936,215,0 +170764671983,216,0 +170764672031,215,0 +170764672079,213,0 +170764672127,213,0 +170764672177,214,0 +170764672225,214,0 +170764672273,214,0 +170764672321,215,0 +170764672369,214,0 +170764672418,214,0 +170764672468,215,0 +170764672517,215,0 +170764672565,215,0 +170764672613,215,0 +170764672662,216,0 +170764672710,216,0 +170764672758,216,0 +170764672808,216,0 +170764672856,214,0 +170764672904,214,0 +170764672952,213,0 +170764673000,214,0 +170764673049,214,0 +170764673097,214,0 +170764673146,215,0 +170764673194,215,0 +170764673242,215,0 +170764673290,215,0 +170764673340,216,0 +170764673387,216,0 +170764673435,216,0 +170764673483,216,0 +170764673533,216,0 +170764673581,216,0 +170764673629,216,0 +170764673676,214,0 +170764673724,214,0 +170764673772,214,0 +170764673820,214,0 +170764673868,215,0 +170764673916,215,0 +170764673966,215,0 +170764674015,215,0 +170764674063,216,0 +170764674111,216,0 +170764674161,216,0 +170764674210,216,0 +170764674258,216,0 +170764674306,216,0 +170764674354,216,0 +170764674402,216,0 +170764674450,215,0 +170764674500,214,0 +170764674549,214,0 +170764674597,214,0 +170764674645,214,0 +170764674693,214,0 +170764674741,214,0 +170764674790,214,0 +170764674838,214,0 +170764674886,215,0 +170764674934,215,0 +170764674982,215,0 +170764675030,215,0 +170764675078,216,0 +170764675127,216,0 +170764675175,216,0 +170764675223,216,0 +170764675271,216,0 +170764675319,213,0 +170764675367,214,0 +170764675415,214,0 +170764675463,214,0 +170764675511,214,0 +170764675559,215,0 +170764675607,215,0 +170764675656,215,0 +170764675704,215,0 +170764675752,215,0 +170764675800,216,0 +170764675849,215,0 +170764675897,216,0 +170764675945,216,0 +170764675993,216,0 +170764676042,215,0 +170764676092,214,0 +170764676139,214,0 +170764676187,214,0 +170764676235,214,0 +170764676285,215,0 +170764676334,215,0 +170764676382,215,0 +170764676432,215,0 +170764676480,215,0 +170764676527,215,0 +170764676577,216,0 +170764676625,216,0 +170764676673,216,0 +170764676722,216,0 +170764676770,216,0 +170764676818,216,0 +170764676866,216,0 +170764676914,214,0 +170764676961,214,0 +170764677009,214,0 +170764677057,214,0 +170764677105,215,0 +170764677153,215,0 +170764677200,215,0 +170764677248,215,0 +170764677296,216,0 +170764677344,216,0 +170764677392,216,0 +170764677440,216,0 +170764677487,216,0 +170764677535,216,0 +170764677583,216,0 +170764677631,216,0 +170764677680,217,0 +170764677730,214,0 +170764677778,214,0 +170764677825,214,0 +170764677873,214,0 +170764677921,215,0 +170764677969,214,0 +170764678017,215,0 +170764678066,215,0 +170764678114,215,0 +170764678162,215,0 +170764678212,216,0 +170764678260,216,0 +170764678307,216,0 +170764678357,215,0 +170764678405,216,0 +170764678453,216,0 +170764678501,215,0 +170764678549,213,0 +170764678597,213,0 +170764678645,214,0 +170764678694,214,0 +170764678742,215,0 +170764678790,214,0 +170764678838,215,0 +170764678887,215,0 +170764678935,215,0 +170764678984,215,0 +170764679032,215,0 +170764679080,216,0 +170764679128,216,0 +170764679176,216,0 +170764679224,216,0 +170764679272,215,0 +170764679319,214,0 +170764679367,213,0 +170764679415,214,0 +170764679463,214,0 +170764679511,214,0 +170764679560,214,0 +170764679608,214,0 +170764679656,214,0 +170764679704,214,0 +170764679752,215,0 +170764679801,215,0 +170764679849,215,0 +170764679897,215,0 +170764679945,215,0 +170764679993,215,0 +170764680041,216,0 +170764680090,216,0 +170764680138,213,0 +170764680186,213,0 +170764680234,213,0 +170764680282,214,0 +170764680332,214,0 +170764680380,214,0 +170764680428,215,0 +170764680476,215,0 +170764680524,215,0 +170764680571,215,0 +170764680619,216,0 +170764680667,216,0 +170764680715,216,0 +170764680764,216,0 +170764680814,216,0 +170764680864,216,0 +170764680911,215,0 +170764680959,214,0 +170764681009,215,0 +170764681057,215,0 +170764681105,215,0 +170764681153,215,0 +170764681202,215,0 +170764681252,215,0 +170764681301,216,0 +170764681349,216,0 +170764681397,216,0 +170764681447,216,0 +170764681496,216,0 +170764681544,216,0 +170764681594,216,0 +170764681641,216,0 +170764681691,216,0 +170764681739,214,0 +170764681787,214,0 +170764681836,215,0 +170764681884,215,0 +170764681932,215,0 +170764681982,215,0 +170764682030,215,0 +170764682078,216,0 +170764682125,216,0 +170764682175,216,0 +170764682223,216,0 +170764682271,216,0 +170764682319,216,0 +170764682368,216,0 +170764682418,216,0 +170764682466,216,0 +170764682515,216,0 +170764682565,214,0 +170764682613,214,0 +170764682661,214,0 +170764682708,214,0 +170764682758,215,0 +170764682806,214,0 +170764682855,215,0 +170764682903,215,0 +170764682951,214,0 +170764682999,215,0 +170764683047,215,0 +170764683097,215,0 +170764683144,215,0 +170764683192,215,0 +170764683240,215,0 +170764683288,215,0 +170764683336,215,0 +170764683386,213,0 +170764683434,214,0 +170764683483,214,0 +170764683531,214,0 +170764683579,214,0 +170764683627,214,0 +170764683677,215,0 +170764683725,215,0 +170764683773,215,0 +170764683822,215,0 +170764683870,215,0 +170764683918,215,0 +170764683968,216,0 +170764684017,216,0 +170764684067,216,0 +170764684116,215,0 +170764684166,213,0 +170764684215,213,0 +170764684263,214,0 +170764684313,214,0 +170764684362,214,0 +170764684412,214,0 +170764684460,214,0 +170764684508,214,0 +170764684556,215,0 +170764684605,215,0 +170764684653,215,0 +170764684701,215,0 +170764684749,215,0 +170764684797,216,0 +170764684845,216,0 +170764684893,216,0 +170764684941,215,0 +170764684990,214,0 +170764685038,214,0 +170764685086,214,0 +170764685134,214,0 +170764685182,214,0 +170764685230,214,0 +170764685278,215,0 +170764685325,215,0 +170764685373,215,0 +170764685421,215,0 +170764685469,215,0 +170764685517,216,0 +170764685565,216,0 +170764685613,216,0 +170764685661,216,0 +170764685710,216,0 +170764685758,214,0 +170764685806,214,0 +170764685855,215,0 +170764685903,215,0 +170764685951,215,0 +170764685999,215,0 +170764686047,215,0 +170764686095,215,0 +170764686142,215,0 +170764686190,216,0 +170764686238,214,0 +170764686286,216,0 +170764686336,216,0 +170764686383,216,0 +170764686431,216,0 +170764686479,216,0 +170764686527,216,0 +170764686575,214,0 +170764686623,214,0 +170764686671,214,0 +170764686719,214,0 +170764686767,215,0 +170764686815,215,0 +170764686862,215,0 +170764686910,215,0 +170764686958,215,0 +170764687006,216,0 +170764687054,216,0 +170764687103,216,0 +170764687151,216,0 +170764687201,216,0 +170764687249,216,0 +170764687298,216,0 +170764687346,215,0 +170764687394,214,0 +170764687442,214,0 +170764687490,214,0 +170764687538,215,0 +170764687586,214,0 +170764687635,215,0 +170764687683,215,0 +170764687731,215,0 +170764687779,216,0 +170764687827,216,0 +170764687875,216,0 +170764687922,216,0 +170764687970,216,0 +170764688018,216,0 +170764688066,216,0 +170764688114,216,0 +170764688162,214,0 +170764688211,214,0 +170764688261,214,0 +170764688311,214,0 +170764688358,215,0 +170764688406,215,0 +170764688454,215,0 +170764688502,215,0 +170764688550,216,0 +170764688598,216,0 +170764688646,216,0 +170764688695,216,0 +170764688745,216,0 +170764688793,216,0 +170764688840,216,0 +170764688888,216,0 +170764688936,216,0 +170764688984,214,0 +170764689034,214,0 +170764689082,214,0 +170764689130,214,0 +170764689179,214,0 +170764689227,215,0 +170764689277,215,0 +170764689325,215,0 +170764689372,215,0 +170764689422,215,0 +170764689470,215,0 +170764689518,216,0 +170764689565,215,0 +170764689613,216,0 +170764689661,216,0 +170764689709,216,0 +170764689758,216,0 +170764689806,213,0 +170764689854,214,0 +170764689902,214,0 +170764689950,214,0 +170764689998,214,0 +170764690046,214,0 +170764690094,214,0 +170764690142,215,0 +170764690191,214,0 +170764690240,215,0 +170764690290,215,0 +170764690338,216,0 +170764690385,215,0 +170764690433,215,0 +170764690481,216,0 +170764690531,216,0 +170764690578,214,0 +170764690626,213,0 +170764690674,213,0 +170764690722,213,0 +170764690770,213,0 +170764690819,214,0 +170764690867,214,0 +170764690915,214,0 +170764690963,214,0 +170764691012,215,0 +170764691060,215,0 +170764691108,215,0 +170764691156,215,0 +170764691204,216,0 +170764691251,215,0 +170764691299,216,0 +170764691347,215,0 +170764691395,214,0 +170764691444,213,0 +170764691492,214,0 +170764691540,214,0 +170764691588,214,0 +170764691636,214,0 +170764691684,214,0 +170764691732,214,0 +170764691780,215,0 +170764691828,215,0 +170764691877,215,0 +170764691925,215,0 +170764691973,216,0 +170764692023,216,0 +170764692072,215,0 +170764692122,215,0 +170764692170,215,0 +170764692218,214,0 +170764692267,214,0 +170764692315,214,0 +170764692365,214,0 +170764692413,214,0 +170764692462,215,0 +170764692510,215,0 +170764692560,215,0 +170764692608,215,0 +170764692656,216,0 +170764692704,215,0 +170764692752,216,0 +170764692801,216,0 +170764692849,215,0 +170764692898,215,0 +170764692948,216,0 +170764692996,214,0 +170764693044,214,0 +170764693092,214,0 +170764693141,215,0 +170764693191,215,0 +170764693239,215,0 +170764693287,215,0 +170764693335,215,0 +170764693383,215,0 +170764693432,215,0 +170764693480,215,0 +170764693530,216,0 +170764693577,216,0 +170764693627,216,0 +170764693677,216,0 +170764693726,216,0 +170764693776,215,0 +170764693824,215,0 +170764693871,215,0 +170764693919,215,0 +170764693969,215,0 +170764694017,215,0 +170764694066,215,0 +170764694114,215,0 +170764694164,216,0 +170764694214,216,0 +170764694263,216,0 +170764694313,216,0 +170764694362,216,0 +170764694410,217,0 +170764694460,216,0 +170764694507,216,0 +170764694555,216,0 +170764694603,214,0 +170764694651,215,0 +170764694699,214,0 +170764694747,215,0 +170764694797,215,0 +170764694845,215,0 +170764694893,216,0 +170764694941,215,0 +170764694988,216,0 +170764695036,215,0 +170764695084,216,0 +170764695132,216,0 +170764695182,216,0 +170764695230,216,0 +170764695278,216,0 +170764695325,216,0 +170764695373,215,0 +170764695421,214,0 +170764695469,214,0 +170764695517,214,0 +170764695565,214,0 +170764695615,215,0 +170764695662,214,0 +170764695710,215,0 +170764695758,215,0 +170764695806,215,0 +170764695854,215,0 +170764695902,215,0 +170764695950,216,0 +170764695999,214,0 +170764696049,216,0 +170764696097,216,0 +170764696146,216,0 +170764696194,216,0 +170764696242,214,0 +170764696290,214,0 +170764696340,214,0 +170764696389,215,0 +170764696437,214,0 +170764696485,215,0 +170764696534,215,0 +170764696582,215,0 +170764696632,215,0 +170764696679,215,0 +170764696727,216,0 +170764696775,216,0 +170764696823,216,0 +170764696871,216,0 +170764696919,216,0 +170764696967,216,0 +170764697015,215,0 +170764697063,214,0 +170764697112,214,0 +170764697162,214,0 +170764697211,214,0 +170764697259,215,0 +170764697307,215,0 +170764697355,215,0 +170764697402,215,0 +170764697450,215,0 +170764697498,216,0 +170764697546,216,0 +170764697596,216,0 +170764697643,216,0 +170764697691,216,0 +170764697739,216,0 +170764697787,216,0 +170764697837,214,0 +170764697884,215,0 +170764697934,215,0 +170764697982,215,0 +170764698030,215,0 +170764698077,215,0 +170764698125,215,0 +170764698173,215,0 +170764698223,216,0 +170764698271,216,0 +170764698319,216,0 +170764698368,216,0 +170764698416,216,0 +170764698464,216,0 +170764698513,215,0 +170764698561,215,0 +170764698609,214,0 +170764698657,214,0 +170764698707,214,0 +170764698755,215,0 +170764698803,215,0 +170764698851,215,0 +170764698899,215,0 +170764698946,215,0 +170764698994,216,0 +170764699042,216,0 +170764699090,216,0 +170764699138,216,0 +170764699186,216,0 +170764699234,216,0 +170764699282,216,0 +170764699332,216,0 +170764699380,216,0 +170764699428,214,0 +170764699477,214,0 +170764699525,214,0 +170764699575,214,0 +170764699624,214,0 +170764699674,214,0 +170764699723,215,0 +170764699771,215,0 +170764699819,215,0 +170764699868,215,0 +170764699916,215,0 +170764699964,215,0 +170764700012,216,0 +170764700060,216,0 +170764700108,216,0 +170764700156,216,0 +170764700204,215,0 +170764700254,213,0 +170764700301,214,0 +170764700351,214,0 +170764700400,214,0 +170764700448,214,0 +170764700498,214,0 +170764700546,215,0 +170764700594,215,0 +170764700643,215,0 +170764700693,216,0 +170764700741,215,0 +170764700789,216,0 +170764700837,216,0 +170764700885,216,0 +170764700934,215,0 +170764700982,215,0 +170764701030,213,0 +170764701079,213,0 +170764701127,214,0 +170764701175,214,0 +170764701223,214,0 +170764701273,214,0 +170764701321,214,0 +170764701369,215,0 +170764701418,214,0 +170764701466,215,0 +170764701514,215,0 +170764701562,216,0 +170764701611,215,0 +170764701659,216,0 +170764701709,215,0 +170764701758,215,0 +170764701806,215,0 +170764701854,213,0 +170764701902,213,0 +170764701950,214,0 +170764701998,214,0 +170764702046,214,0 +170764702094,214,0 +170764702143,214,0 +170764702191,215,0 +170764702241,215,0 +170764702290,215,0 +170764702340,215,0 +170764702388,215,0 +170764702436,215,0 +170764702484,216,0 +170764702531,216,0 +170764702579,214,0 +170764702629,213,0 +170764702678,213,0 +170764702726,213,0 +170764702776,214,0 +170764702825,214,0 +170764702873,213,0 +170764702922,214,0 +170764702970,214,0 +170764703018,214,0 +170764703068,215,0 +170764703116,215,0 +170764703165,215,0 +170764703215,215,0 +170764703263,216,0 +170764703311,215,0 +170764703359,216,0 +170764703408,215,0 +170764703456,213,0 +170764703506,213,0 +170764703554,213,0 +170764703603,213,0 +170764703653,213,0 +170764703702,214,0 +170764703750,214,0 +170764703800,214,0 +170764703848,215,0 +170764703895,215,0 +170764703945,215,0 +170764703993,215,0 +170764704042,215,0 +170764704090,215,0 +170764704138,215,0 +170764704188,215,0 +170764704236,214,0 +170764704284,213,0 +170764704331,214,0 +170764704379,214,0 +170764704429,214,0 +170764704478,214,0 +170764704526,215,0 +170764704576,214,0 +170764704625,215,0 +170764704673,215,0 +170764704721,215,0 +170764704769,215,0 +170764704817,215,0 +170764704865,216,0 +170764704915,216,0 +170764704962,216,0 +170764705012,215,0 +170764705061,213,0 +170764705111,214,0 +170764705159,214,0 +170764705207,214,0 +170764705256,214,0 +170764705304,214,0 +170764705352,215,0 +170764705400,215,0 +170764705450,215,0 +170764705498,216,0 +170764705546,215,0 +170764705595,216,0 +170764705643,216,0 +170764705693,216,0 +170764705741,217,0 +170764705789,216,0 +170764705837,215,0 +170764705885,214,0 +170764705933,215,0 +170764705980,215,0 +170764706030,215,0 +170764706078,215,0 +170764706126,215,0 +170764706175,215,0 +170764706225,215,0 +170764706273,216,0 +170764706321,215,0 +170764706370,216,0 +170764706418,215,0 +170764706468,216,0 +170764706516,216,0 +170764706565,216,0 +170764706613,215,0 +170764706663,215,0 +170764706711,214,0 +170764706759,215,0 +170764706807,215,0 +170764706855,215,0 +170764706904,215,0 +170764706954,215,0 +170764707002,216,0 +170764707050,215,0 +170764707098,216,0 +170764707146,215,0 +170764707195,216,0 +170764707243,216,0 +170764707291,216,0 +170764707339,216,0 +170764707389,215,0 +170764707437,214,0 +170764707485,214,0 +170764707534,214,0 +170764707582,214,0 +170764707632,214,0 +170764707681,215,0 +170764707731,214,0 +170764707779,215,0 +170764707827,215,0 +170764707874,215,0 +170764707922,215,0 +170764707972,216,0 +170764708021,216,0 +170764708069,216,0 +170764708117,216,0 +170764708167,216,0 +170764708215,215,0 +170764708263,214,0 +170764708311,214,0 +170764708360,214,0 +170764708408,214,0 +170764708458,215,0 +170764708507,215,0 +170764708555,215,0 +170764708603,215,0 +170764708651,215,0 +170764708699,215,0 +170764708747,216,0 +170764708797,215,0 +170764708845,216,0 +170764708893,216,0 +170764708942,216,0 +170764708991,216,0 +170764709039,215,0 +170764709089,214,0 +170764709137,214,0 +170764709185,215,0 +170764709234,215,0 +170764709282,215,0 +170764709330,215,0 +170764709380,215,0 +170764709428,215,0 +170764709476,216,0 +170764709524,216,0 +170764709572,216,0 +170764709619,216,0 +170764709667,216,0 +170764709717,216,0 +170764709766,216,0 +170764709814,216,0 +170764709862,215,0 +170764709912,215,0 +170764709961,215,0 +170764710009,215,0 +170764710057,215,0 +170764710107,216,0 +170764710155,216,0 +170764710204,216,0 +170764710254,216,0 +170764710303,216,0 +170764710351,216,0 +170764710401,216,0 +170764710449,216,0 +170764710497,216,0 +170764710545,216,0 +170764710593,215,0 +170764710642,214,0 +170764710690,214,0 +170764710740,214,0 +170764710788,215,0 +170764710836,215,0 +170764710885,215,0 +170764710935,215,0 +170764710983,215,0 +170764711031,216,0 +170764711080,216,0 +170764711130,216,0 +170764711179,216,0 +170764711227,216,0 +170764711277,216,0 +170764711325,216,0 +170764711373,216,0 +170764711421,216,0 +170764711469,213,0 +170764711518,214,0 +170764711566,214,0 +170764711614,214,0 +170764711662,215,0 +170764711710,215,0 +170764711759,215,0 +170764711809,215,0 +170764711857,215,0 +170764711906,215,0 +170764711956,216,0 +170764712004,216,0 +170764712053,215,0 +170764712101,216,0 +170764712149,216,0 +170764712199,216,0 +170764712248,214,0 +170764712298,214,0 +170764712347,214,0 +170764712395,214,0 +170764712443,214,0 +170764712491,214,0 +170764712540,215,0 +170764712590,215,0 +170764712638,215,0 +170764712686,215,0 +170764712735,215,0 +170764712785,215,0 +170764712833,216,0 +170764712881,216,0 +170764712930,216,0 +170764712978,216,0 +170764713026,214,0 +170764713074,213,0 +170764713122,214,0 +170764713170,214,0 +170764713218,214,0 +170764713266,214,0 +170764713314,214,0 +170764713362,215,0 +170764713411,215,0 +170764713459,215,0 +170764713507,215,0 +170764713557,216,0 +170764713605,215,0 +170764713653,216,0 +170764713701,216,0 +170764713750,215,0 +170764713798,215,0 +170764713846,214,0 +170764713894,213,0 +170764713942,214,0 +170764713990,214,0 +170764714038,214,0 +170764714087,214,0 +170764714135,214,0 +170764714185,215,0 +170764714234,215,0 +170764714282,215,0 +170764714330,215,0 +170764714378,215,0 +170764714428,216,0 +170764714475,216,0 +170764714523,216,0 +170764714571,216,0 +170764714619,216,0 +170764714667,214,0 +170764714717,214,0 +170764714765,214,0 +170764714812,214,0 +170764714860,214,0 +170764714908,214,0 +170764714958,215,0 +170764715007,215,0 +170764715055,215,0 +170764715103,215,0 +170764715153,215,0 +170764715202,215,0 +170764715250,216,0 +170764715298,216,0 +170764715346,216,0 +170764715395,216,0 +170764715443,214,0 +170764715491,213,0 +170764715539,214,0 +170764715587,213,0 +170764715635,214,0 +170764715683,214,0 +170764715732,214,0 +170764715782,214,0 +170764715830,215,0 +170764715878,215,0 +170764715928,216,0 +170764715975,215,0 +170764716023,216,0 +170764716071,216,0 +170764716119,216,0 +170764716167,215,0 +170764716215,215,0 +170764716265,213,0 +170764716313,213,0 +170764716361,214,0 +170764716410,214,0 +170764716458,214,0 +170764716506,214,0 +170764716554,214,0 +170764716602,214,0 +170764716650,215,0 +170764716698,214,0 +170764716746,215,0 +170764716796,215,0 +170764716844,216,0 +170764716892,216,0 +170764716940,216,0 +170764716988,216,0 +170764717035,216,0 +170764717083,213,0 +170764717131,214,0 +170764717179,214,0 +170764717227,214,0 +170764717275,214,0 +170764717323,214,0 +170764717371,215,0 +170764717419,214,0 +170764717467,215,0 +170764717517,215,0 +170764717566,215,0 +170764717616,215,0 +170764717665,216,0 +170764717715,216,0 +170764717764,216,0 +170764717814,215,0 +170764717862,214,0 +170764717910,214,0 +170764717959,214,0 +170764718007,214,0 +170764718057,215,0 +170764718105,215,0 +170764718153,215,0 +170764718202,215,0 +170764718250,215,0 +170764718298,216,0 +170764718346,215,0 +170764718395,216,0 +170764718443,216,0 +170764718493,216,0 +170764718541,216,0 +170764718589,216,0 +170764718637,215,0 +170764718684,214,0 +170764718734,214,0 +170764718782,214,0 +170764718830,214,0 +170764718879,214,0 +170764718927,215,0 +170764718977,215,0 +170764719024,215,0 +170764719074,215,0 +170764719122,215,0 +170764719170,216,0 +170764719218,216,0 +170764719266,215,0 +170764719314,215,0 +170764719362,216,0 +170764719410,216,0 +170764719457,214,0 +170764719505,213,0 +170764719555,214,0 +170764719603,214,0 +170764719651,214,0 +170764719700,215,0 +170764719748,215,0 +170764719798,215,0 +170764719845,215,0 +170764719893,215,0 +170764719941,215,0 +170764719989,215,0 +170764720037,215,0 +170764720085,216,0 +170764720133,215,0 +170764720181,216,0 +170764720229,215,0 +170764720277,213,0 +170764720325,213,0 +170764720374,214,0 +170764720422,214,0 +170764720470,214,0 +170764720518,214,0 +170764720566,214,0 +170764720614,214,0 +170764720662,215,0 +170764720711,215,0 +170764720759,215,0 +170764720807,215,0 +170764720855,215,0 +170764720903,216,0 +170764720952,216,0 +170764721000,216,0 +170764721048,214,0 +170764721096,214,0 +170764721144,214,0 +170764721192,214,0 +170764721240,214,0 +170764721288,214,0 +170764721336,214,0 +170764721385,214,0 +170764721433,215,0 +170764721481,215,0 +170764721529,215,0 +170764721577,215,0 +170764721626,215,0 +170764721676,216,0 +170764721724,214,0 +170764721772,215,0 +170764721820,216,0 +170764721867,214,0 +170764721915,214,0 +170764721965,214,0 +170764722012,214,0 +170764722060,214,0 +170764722108,215,0 +170764722156,215,0 +170764722206,215,0 +170764722253,215,0 +170764722301,215,0 +170764722349,216,0 +170764722397,216,0 +170764722445,216,0 +170764722493,216,0 +170764722541,216,0 +170764722589,216,0 +170764722637,216,0 +170764722685,215,0 +170764722732,215,0 +170764722780,215,0 +170764722830,215,0 +170764722878,216,0 +170764722927,216,0 +170764722975,216,0 +170764723025,216,0 +170764723072,216,0 +170764723120,216,0 +170764723170,216,0 +170764723218,216,0 +170764723266,216,0 +170764723313,216,0 +170764723361,216,0 +170764723409,216,0 +170764723457,215,0 +170764723507,215,0 +170764723556,215,0 +170764723604,215,0 +170764723654,215,0 +170764723702,216,0 +170764723751,215,0 +170764723799,216,0 +170764723847,216,0 +170764723896,216,0 +170764723944,216,0 +170764723992,216,0 +170764724042,216,0 +170764724090,216,0 +170764724137,216,0 +170764724185,216,0 +170764724235,215,0 +170764724283,214,0 +170764724331,214,0 +170764724379,214,0 +170764724427,214,0 +170764724475,214,0 +170764724523,215,0 +170764724572,215,0 +170764724620,215,0 +170764724668,215,0 +170764724716,215,0 +170764724765,216,0 +170764724813,216,0 +170764724863,216,0 +170764724911,215,0 +170764724958,215,0 +170764725006,215,0 +170764725054,214,0 +170764725102,214,0 +170764725150,214,0 +170764725200,215,0 +170764725249,215,0 +170764725298,215,0 +170764725346,215,0 +170764725396,215,0 +170764725445,215,0 +170764725493,215,0 +170764725541,215,0 +170764725589,216,0 +170764725637,216,0 +170764725685,216,0 +170764725733,216,0 +170764725781,216,0 +170764725830,216,0 +170764725880,214,0 +170764725927,215,0 +170764725975,215,0 +170764726023,215,0 +170764726071,215,0 +170764726119,215,0 +170764726167,215,0 +170764726215,215,0 +170764726263,216,0 +170764726311,216,0 +170764726360,216,0 +170764726408,216,0 +170764726456,216,0 +170764726504,216,0 +170764726551,216,0 +170764726599,216,0 +170764726647,216,0 +170764726695,214,0 +170764726744,215,0 +170764726792,215,0 +170764726840,215,0 +170764726888,215,0 +170764726936,215,0 +170764726983,215,0 +170764727031,216,0 +170764727079,216,0 +170764727127,216,0 +170764727175,216,0 +170764727223,216,0 +170764727271,216,0 +170764727319,216,0 +170764727369,216,0 +170764727418,215,0 +170764727466,214,0 +170764727514,214,0 +170764727564,214,0 +170764727612,214,0 +170764727659,214,0 +170764727709,214,0 +170764727756,215,0 +170764727804,215,0 +170764727852,215,0 +170764727900,215,0 +170764727949,216,0 +170764727999,216,0 +170764728047,216,0 +170764728094,216,0 +170764728142,216,0 +170764728190,216,0 +170764728238,215,0 +170764728286,214,0 +170764728334,213,0 +170764728382,214,0 +170764728431,214,0 +170764728479,214,0 +170764728529,214,0 +170764728577,214,0 +170764728626,214,0 +170764728674,215,0 +170764728724,215,0 +170764728772,215,0 +170764728820,215,0 +170764728869,216,0 +170764728917,215,0 +170764728965,216,0 +170764729013,216,0 +170764729060,215,0 +170764729108,213,0 +170764729156,214,0 +170764729206,214,0 +170764729254,214,0 +170764729302,214,0 +170764729350,214,0 +170764729397,215,0 +170764729445,215,0 +170764729493,215,0 +170764729543,215,0 +170764729591,216,0 +170764729640,216,0 +170764729690,216,0 +170764729738,216,0 +170764729786,216,0 +170764729833,216,0 +170764729883,214,0 +170764729932,214,0 +170764729982,214,0 +170764730030,214,0 +170764730078,214,0 +170764730127,215,0 +170764730175,215,0 +170764730223,215,0 +170764730272,215,0 +170764730320,216,0 +170764730368,216,0 +170764730416,216,0 +170764730464,216,0 +170764730513,216,0 +170764730563,216,0 +170764730611,216,0 +170764730659,215,0 +170764730707,214,0 +170764730756,214,0 +170764730804,214,0 +170764730852,215,0 +170764730900,214,0 +170764730949,215,0 +170764730997,215,0 +170764731045,215,0 +170764731094,215,0 +170764731142,215,0 +170764731190,216,0 +170764731238,216,0 +170764731286,215,0 +170764731334,216,0 +170764731382,216,0 +170764731430,216,0 +170764731479,214,0 +170764731529,214,0 +170764731576,214,0 +170764731624,214,0 +170764731672,214,0 +170764731720,215,0 +170764731768,215,0 +170764731816,215,0 +170764731863,215,0 +170764731911,215,0 +170764731959,215,0 +170764732007,216,0 +170764732055,216,0 +170764732103,216,0 +170764732150,215,0 +170764732198,215,0 +170764732246,216,0 +170764732294,214,0 +170764732342,214,0 +170764732390,214,0 +170764732438,214,0 +170764732486,215,0 +170764732534,214,0 +170764732581,214,0 +170764732629,215,0 +170764732679,215,0 +170764732728,215,0 +170764732776,215,0 +170764732826,215,0 +170764732873,216,0 +170764732921,216,0 +170764732969,216,0 +170764733017,216,0 +170764733065,215,0 +170764733113,214,0 +170764733161,214,0 +170764733209,214,0 +170764733256,214,0 +170764733304,214,0 +170764733352,214,0 +170764733400,215,0 +170764733448,215,0 +170764733496,215,0 +170764733543,215,0 +170764733591,215,0 +170764733639,216,0 +170764733687,215,0 +170764733735,216,0 +170764733783,216,0 +170764733831,216,0 +170764733880,214,0 +170764733928,214,0 +170764733976,214,0 +170764734024,214,0 +170764734072,215,0 +170764734120,215,0 +170764734167,215,0 +170764734217,215,0 +170764734265,215,0 +170764734314,215,0 +170764734362,215,0 +170764734410,216,0 +170764734460,216,0 +170764734508,216,0 +170764734556,216,0 +170764734604,216,0 +170764734651,216,0 +170764734699,215,0 +170764734747,215,0 +170764734797,215,0 +170764734845,215,0 +170764734893,215,0 +170764734941,215,0 +170764734989,215,0 +170764735038,216,0 +170764735086,216,0 +170764735134,216,0 +170764735182,216,0 +170764735230,216,0 +170764735277,216,0 +170764735325,216,0 +170764735373,216,0 +170764735421,216,0 +170764735469,215,0 +170764735518,214,0 +170764735566,214,0 +170764735614,214,0 +170764735662,215,0 +170764735709,215,0 +170764735757,215,0 +170764735807,215,0 +170764735855,216,0 +170764735902,216,0 +170764735952,216,0 +170764736001,216,0 +170764736049,216,0 +170764736097,216,0 +170764736145,216,0 +170764736193,216,0 +170764736240,216,0 +170764736288,214,0 +170764736336,214,0 +170764736384,214,0 +170764736432,214,0 +170764736480,214,0 +170764736527,214,0 +170764736575,214,0 +170764736625,215,0 +170764736673,215,0 +170764736721,216,0 +170764736769,216,0 +170764736816,216,0 +170764736864,216,0 +170764736912,216,0 +170764736960,216,0 +170764737008,216,0 +170764737056,215,0 +170764737105,213,0 +170764737153,213,0 +170764737201,214,0 +170764737250,214,0 +170764737298,214,0 +170764737346,214,0 +170764737394,214,0 +170764737442,215,0 +170764737489,215,0 +170764737537,215,0 +170764737585,216,0 +170764737633,216,0 +170764737681,216,0 +170764737729,216,0 +170764737777,215,0 +170764737825,215,0 +170764737873,215,0 +170764737921,214,0 +170764737969,214,0 +170764738018,214,0 +170764738066,214,0 +170764738114,214,0 +170764738162,214,0 +170764738209,215,0 +170764738257,215,0 +170764738305,215,0 +170764738353,215,0 +170764738403,215,0 +170764738452,215,0 +170764738500,215,0 +170764738548,216,0 +170764738596,215,0 +170764738645,215,0 +170764738693,214,0 +170764738741,214,0 +170764738789,214,0 +170764738838,214,0 +170764738886,214,0 +170764738934,215,0 +170764738982,215,0 +170764739030,215,0 +170764739078,215,0 +170764739128,216,0 +170764739175,215,0 +170764739223,215,0 +170764739271,215,0 +170764739319,215,0 +170764739369,216,0 +170764739417,216,0 +170764739465,216,0 +170764739513,214,0 +170764739561,214,0 +170764739610,214,0 +170764739659,214,0 +170764739707,214,0 +170764739757,214,0 +170764739805,215,0 +170764739854,215,0 +170764739902,215,0 +170764739950,215,0 +170764739999,216,0 +170764740049,216,0 +170764740097,216,0 +170764740145,216,0 +170764740193,216,0 +170764740242,216,0 +170764740290,214,0 +170764740338,214,0 +170764740387,214,0 +170764740435,214,0 +170764740483,214,0 +170764740531,215,0 +170764740579,215,0 +170764740629,215,0 +170764740677,215,0 +170764740726,215,0 +170764740776,215,0 +170764740825,216,0 +170764740875,216,0 +170764740924,216,0 +170764740972,216,0 +170764741020,216,0 +170764741070,216,0 +170764741118,214,0 +170764741167,214,0 +170764741215,214,0 +170764741263,214,0 +170764741311,214,0 +170764741359,215,0 +170764741408,215,0 +170764741456,215,0 +170764741504,215,0 +170764741552,215,0 +170764741600,216,0 +170764741648,216,0 +170764741696,216,0 +170764741744,216,0 +170764741793,216,0 +170764741841,216,0 +170764741891,214,0 +170764741939,214,0 +170764741987,214,0 +170764742034,215,0 +170764742082,214,0 +170764742132,215,0 +170764742180,215,0 +170764742228,215,0 +170764742275,216,0 +170764742323,216,0 +170764742373,216,0 +170764742422,216,0 +170764742472,216,0 +170764742520,216,0 +170764742568,216,0 +170764742615,216,0 +170764742663,216,0 +170764742711,215,0 +170764742759,215,0 +170764742809,215,0 +170764742857,215,0 +170764742904,215,0 +170764742952,216,0 +170764743000,216,0 +170764743048,216,0 +170764743096,216,0 +170764743146,216,0 +170764743194,216,0 +170764743242,216,0 +170764743291,216,0 +170764743341,216,0 +170764743389,216,0 +170764743436,216,0 +170764743484,215,0 +170764743532,214,0 +170764743580,215,0 +170764743628,215,0 +170764743676,215,0 +170764743724,215,0 +170764743773,216,0 +170764743821,216,0 +170764743869,216,0 +170764743917,216,0 +170764743964,216,0 +170764744012,216,0 +170764744062,216,0 +170764744109,216,0 +170764744157,216,0 +170764744205,216,0 +170764744253,215,0 +170764744301,214,0 +170764744349,214,0 +170764744397,214,0 +170764744446,214,0 +170764744494,215,0 +170764744544,214,0 +170764744592,214,0 +170764744640,215,0 +170764744688,215,0 +170764744737,215,0 +170764744786,215,0 +170764744834,215,0 +170764744882,216,0 +170764744930,216,0 +170764744978,215,0 +170764745026,216,0 +170764745074,216,0 +170764745121,214,0 +170764745169,214,0 +170764745217,214,0 +170764745265,215,0 +170764745313,214,0 +170764745361,215,0 +170764745408,215,0 +170764745456,215,0 +170764745504,215,0 +170764745552,215,0 +170764745600,216,0 +170764745648,216,0 +170764745697,216,0 +170764745745,215,0 +170764745793,216,0 +170764745841,215,0 +170764745889,214,0 +170764745936,214,0 +170764745984,214,0 +170764746032,214,0 +170764746080,215,0 +170764746130,215,0 +170764746177,215,0 +170764746225,215,0 +170764746275,215,0 +170764746323,214,0 +170764746372,216,0 +170764746421,216,0 +170764746469,216,0 +170764746519,216,0 +170764746568,216,0 +170764746618,216,0 +170764746666,216,0 +170764746714,214,0 +170764746763,215,0 +170764746811,215,0 +170764746859,215,0 +170764746907,215,0 +170764746955,215,0 +170764747003,216,0 +170764747051,216,0 +170764747098,216,0 +170764747148,216,0 +170764747196,216,0 +170764747244,216,0 +170764747291,216,0 +170764747339,216,0 +170764747389,216,0 +170764747437,216,0 +170764747484,216,0 +170764747532,214,0 +170764747582,215,0 +170764747629,215,0 +170764747679,215,0 +170764747727,215,0 +170764747775,215,0 +170764747823,216,0 +170764747871,216,0 +170764747918,216,0 +170764747966,216,0 +170764748016,216,0 +170764748065,216,0 +170764748113,216,0 +170764748161,216,0 +170764748209,216,0 +170764748257,216,0 +170764748305,214,0 +170764748352,214,0 +170764748400,214,0 +170764748448,214,0 +170764748496,215,0 +170764748544,215,0 +170764748592,215,0 +170764748639,216,0 +170764748687,216,0 +170764748735,215,0 +170764748783,215,0 +170764748832,216,0 +170764748882,216,0 +170764748931,216,0 +170764748979,216,0 +170764749027,216,0 +170764749075,216,0 +170764749122,213,0 +170764749170,214,0 +170764749218,214,0 +170764749266,214,0 +170764749314,214,0 +170764749361,215,0 +170764749409,215,0 +170764749457,215,0 +170764749507,215,0 +170764749556,216,0 +170764749604,215,0 +170764749652,216,0 +170764749699,216,0 +170764749747,216,0 +170764749795,216,0 +170764749843,215,0 +170764749891,214,0 +170764749939,213,0 +170764749988,214,0 +170764750038,214,0 +170764750085,214,0 +170764750135,214,0 +170764750184,214,0 +170764750232,215,0 +170764750280,215,0 +170764750330,215,0 +170764750378,215,0 +170764750425,215,0 +170764750473,216,0 +170764750521,215,0 +170764750569,216,0 +170764750617,215,0 +170764750665,216,0 +170764750715,214,0 +170764750764,213,0 +170764750814,214,0 +170764750863,214,0 +170764750911,214,0 +170764750959,214,0 +170764751007,214,0 +170764751055,215,0 +170764751103,215,0 +170764751151,215,0 +170764751199,215,0 +170764751248,216,0 +170764751296,216,0 +170764751344,216,0 +170764751392,215,0 +170764751439,216,0 +170764751489,215,0 +170764751538,213,0 +170764751588,213,0 +170764751636,214,0 +170764751685,214,0 +170764751733,214,0 +170764751781,213,0 +170764751831,214,0 +170764751879,214,0 +170764751927,214,0 +170764751975,215,0 +170764752024,215,0 +170764752073,215,0 +170764752123,215,0 +170764752171,215,0 +170764752220,215,0 +170764752268,216,0 +170764752316,213,0 +170764752364,213,0 +170764752413,214,0 +170764752463,214,0 +170764752510,214,0 +170764752560,214,0 +170764752608,214,0 +170764752656,215,0 +170764752705,215,0 +170764752753,215,0 +170764752803,215,0 +170764752851,215,0 +170764752900,215,0 +170764752950,215,0 +170764752998,216,0 +170764753047,216,0 +170764753097,215,0 +170764753144,213,0 +170764753194,213,0 +170764753242,213,0 +170764753291,214,0 +170764753339,214,0 +170764753387,214,0 +170764753435,214,0 +170764753484,215,0 +170764753532,215,0 +170764753580,215,0 +170764753628,215,0 +170764753678,216,0 +170764753727,216,0 +170764753775,216,0 +170764753823,216,0 +170764753873,216,0 +170764753922,214,0 +170764753970,214,0 +170764754019,214,0 +170764754067,214,0 +170764754117,214,0 +170764754165,214,0 +170764754213,214,0 +170764754260,215,0 +170764754310,215,0 +170764754359,215,0 +170764754407,215,0 +170764754457,216,0 +170764754506,216,0 +170764754556,216,0 +170764754604,216,0 +170764754651,215,0 +170764754699,215,0 +170764754747,214,0 +170764754795,214,0 +170764754843,215,0 +170764754891,215,0 +170764754939,215,0 +170764754986,215,0 +170764755034,215,0 +170764755082,216,0 +170764755130,216,0 +170764755178,216,0 +170764755225,215,0 +170764755273,216,0 +170764755321,216,0 +170764755369,216,0 +170764755416,216,0 +170764755464,216,0 +170764755512,215,0 +170764755562,215,0 +170764755610,215,0 +170764755657,214,0 +170764755707,215,0 +170764755756,215,0 +170764755806,215,0 +170764755855,216,0 +170764755903,216,0 +170764755951,216,0 +170764756001,215,0 +170764756049,216,0 +170764756096,216,0 +170764756144,216,0 +170764756194,216,0 +170764756242,216,0 +170764756291,215,0 +170764756339,214,0 +170764756387,214,0 +170764756437,215,0 +170764756484,215,0 +170764756532,215,0 +170764756580,216,0 +170764756630,215,0 +170764756677,215,0 +170764756725,215,0 +170764756773,215,0 +170764756821,216,0 +170764756870,216,0 +170764756918,216,0 +170764756966,216,0 +170764757014,216,0 +170764757062,216,0 +170764757109,214,0 +170764757157,214,0 +170764757205,214,0 +170764757253,215,0 +170764757301,215,0 +170764757349,215,0 +170764757396,215,0 +170764757444,215,0 +170764757492,215,0 +170764757540,216,0 +170764757588,216,0 +170764757636,216,0 +170764757683,216,0 +170764757733,216,0 +170764757781,216,0 +170764757828,216,0 +170764757876,216,0 +170764757924,214,0 +170764757973,214,0 +170764758021,215,0 +170764758069,215,0 +170764758117,215,0 +170764758165,215,0 +170764758213,215,0 +170764758262,215,0 +170764758310,216,0 +170764758358,216,0 +170764758406,216,0 +170764758453,216,0 +170764758501,216,0 +170764758549,216,0 +170764758598,216,0 +170764758646,216,0 +170764758694,215,0 +170764758742,214,0 +170764758790,215,0 +170764758838,215,0 +170764758886,215,0 +170764758933,215,0 +170764758981,215,0 +170764759029,216,0 +170764759077,216,0 +170764759125,216,0 +170764759173,216,0 +170764759220,216,0 +170764759268,216,0 +170764759316,216,0 +170764759365,216,0 +170764759413,216,0 +170764759461,216,0 +170764759511,214,0 +170764759560,214,0 +170764759610,214,0 +170764759659,215,0 +170764759707,215,0 +170764759755,215,0 +170764759803,216,0 +170764759851,216,0 +170764759899,216,0 +170764759948,216,0 +170764759996,216,0 +170764760046,216,0 +170764760095,216,0 +170764760145,216,0 +170764760194,216,0 +170764760242,216,0 +170764760290,216,0 +170764760340,214,0 +170764760388,214,0 +170764760435,214,0 +170764760483,214,0 +170764760531,215,0 +170764760579,215,0 +170764760627,215,0 +170764760677,215,0 +170764760725,215,0 +170764760773,216,0 +170764760821,216,0 +170764760869,216,0 +170764760917,216,0 +170764760966,216,0 +170764761014,216,0 +170764761062,215,0 +170764761110,214,0 +170764761158,213,0 +170764761207,214,0 +170764761255,214,0 +170764761303,214,0 +170764761351,214,0 +170764761399,214,0 +170764761447,215,0 +170764761495,215,0 +170764761545,215,0 +170764761593,215,0 +170764761642,215,0 +170764761690,216,0 +170764761739,216,0 +170764761787,215,0 +170764761835,216,0 +170764761883,216,0 +170764761933,213,0 +170764761981,214,0 +170764762028,214,0 +170764762076,214,0 +170764762126,215,0 +170764762174,215,0 +170764762222,215,0 +170764762270,215,0 +170764762318,215,0 +170764762367,215,0 +170764762417,214,0 +170764762465,215,0 +170764762514,215,0 +170764762562,216,0 +170764762610,216,0 +170764762658,216,0 +170764762707,214,0 +170764762755,214,0 +170764762803,214,0 +170764762853,214,0 +170764762901,214,0 +170764762949,215,0 +170764762997,215,0 +170764763045,215,0 +170764763094,215,0 +170764763142,215,0 +170764763190,216,0 +170764763238,216,0 +170764763287,216,0 +170764763335,216,0 +170764763383,216,0 +170764763432,215,0 +170764763482,216,0 +170764763530,214,0 +170764763577,214,0 +170764763627,215,0 +170764763677,215,0 +170764763724,215,0 +170764763772,215,0 +170764763820,215,0 +170764763868,216,0 +170764763916,215,0 +170764763966,216,0 +170764764013,216,0 +170764764061,216,0 +170764764109,216,0 +170764764157,216,0 +170764764205,216,0 +170764764253,216,0 +170764764302,214,0 +170764764350,214,0 +170764764398,214,0 +170764764447,214,0 +170764764495,215,0 +170764764545,215,0 +170764764593,215,0 +170764764641,215,0 +170764764689,216,0 +170764764737,216,0 +170764764786,215,0 +170764764834,216,0 +170764764882,216,0 +170764764930,216,0 +170764764978,216,0 +170764765026,216,0 +170764765074,216,0 +170764765123,214,0 +170764765171,214,0 +170764765221,214,0 +170764765270,214,0 +170764765318,214,0 +170764765368,214,0 +170764765416,215,0 +170764765463,214,0 +170764765513,215,0 +170764765561,216,0 +170764765610,216,0 +170764765658,215,0 +170764765706,216,0 +170764765754,216,0 +170764765802,216,0 +170764765849,216,0 +170764765897,216,0 +170764765945,214,0 +170764765993,214,0 +170764766041,214,0 +170764766088,214,0 +170764766136,214,0 +170764766184,215,0 +170764766232,215,0 +170764766280,215,0 +170764766329,215,0 +170764766379,215,0 +170764766426,216,0 +170764766474,216,0 +170764766522,216,0 +170764766570,216,0 +170764766618,216,0 +170764766666,216,0 +170764766714,214,0 +170764766761,214,0 +170764766809,214,0 +170764766857,215,0 +170764766905,215,0 +170764766953,215,0 +170764767002,215,0 +170764767050,215,0 +170764767098,216,0 +170764767146,216,0 +170764767195,216,0 +170764767243,216,0 +170764767291,216,0 +170764767339,216,0 +170764767389,216,0 +170764767436,216,0 +170764767484,215,0 +170764767532,214,0 +170764767580,214,0 +170764767628,214,0 +170764767677,215,0 +170764767725,215,0 +170764767773,215,0 +170764767821,215,0 +170764767869,215,0 +170764767916,216,0 +170764767964,215,0 +170764768012,216,0 +170764768060,216,0 +170764768108,216,0 +170764768156,216,0 +170764768205,216,0 +170764768253,216,0 +170764768303,215,0 +170764768351,214,0 +170764768400,214,0 +170764768448,214,0 +170764768496,214,0 +170764768544,214,0 +170764768592,214,0 +170764768641,215,0 +170764768691,215,0 +170764768739,215,0 +170764768787,215,0 +170764768836,215,0 +170764768886,215,0 +170764768934,216,0 +170764768983,215,0 +170764769031,216,0 +170764769079,216,0 +170764769127,214,0 +170764769175,213,0 +170764769223,214,0 +170764769272,214,0 +170764769320,214,0 +170764769368,214,0 +170764769418,214,0 +170764769466,214,0 +170764769514,215,0 +170764769561,215,0 +170764769609,214,0 +170764769659,215,0 +170764769708,215,0 +170764769756,215,0 +170764769804,215,0 +170764769852,216,0 +170764769900,215,0 +170764769949,213,0 +170764769997,214,0 +170764770047,214,0 +170764770095,214,0 +170764770144,214,0 +170764770194,215,0 +170764770241,215,0 +170764770291,215,0 +170764770339,215,0 +170764770387,215,0 +170764770436,217,0 +170764770486,216,0 +170764770534,215,0 +170764770582,216,0 +170764770630,216,0 +170764770679,216,0 +170764770729,214,0 +170764770778,214,0 +170764770826,214,0 +170764770874,214,0 +170764770922,214,0 +170764770970,214,0 +170764771018,215,0 +170764771066,215,0 +170764771114,215,0 +170764771162,215,0 +170764771211,215,0 +170764771259,216,0 +170764771309,215,0 +170764771356,216,0 +170764771406,216,0 +170764771454,216,0 +170764771502,216,0 +170764771550,214,0 +170764771599,214,0 +170764771647,214,0 +170764771697,215,0 +170764771744,215,0 +170764771794,215,0 +170764771842,215,0 +170764771891,215,0 +170764771941,216,0 +170764771989,216,0 +170764772038,216,0 +170764772086,216,0 +170764772135,216,0 +170764772183,216,0 +170764772231,216,0 +170764772281,216,0 +170764772329,214,0 +170764772377,214,0 +170764772426,214,0 +170764772476,214,0 +170764772524,215,0 +170764772572,215,0 +170764772619,215,0 +170764772667,215,0 +170764772717,215,0 +170764772765,216,0 +170764772812,215,0 +170764772860,216,0 +170764772908,215,0 +170764772956,216,0 +170764773004,216,0 +170764773052,217,0 +170764773102,215,0 +170764773149,213,0 +170764773197,215,0 +170764773245,214,0 +170764773293,214,0 +170764773343,214,0 +170764773390,215,0 +170764773438,214,0 +170764773486,215,0 +170764773534,215,0 +170764773582,215,0 +170764773630,215,0 +170764773680,215,0 +170764773729,216,0 +170764773777,215,0 +170764773825,216,0 +170764773875,216,0 +170764773923,216,0 +170764773971,216,0 +170764774019,215,0 +170764774067,216,0 +170764774116,216,0 +170764774164,216,0 +170764774212,216,0 +170764774260,216,0 +170764774308,214,0 +170764774356,214,0 +170764774405,215,0 +170764774455,215,0 +170764774503,215,0 +170764774551,215,0 +170764774599,215,0 +170764774646,215,0 +170764774696,216,0 +170764774744,216,0 +170764774793,216,0 +170764774841,216,0 +170764774891,216,0 +170764774939,216,0 +170764774987,216,0 +170764775036,216,0 +170764775086,216,0 +170764775133,214,0 +170764775181,215,0 +170764775229,215,0 +170764775277,215,0 +170764775325,215,0 +170764775373,214,0 +170764775421,215,0 +170764775469,216,0 +170764775517,215,0 +170764775566,216,0 +170764775614,216,0 +170764775662,215,0 +170764775710,216,0 +170764775758,216,0 +170764775806,216,0 +170764775854,216,0 +170764775901,215,0 +170764775949,215,0 +170764775997,215,0 +170764776047,215,0 +170764776095,215,0 +170764776142,215,0 +170764776190,215,0 +170764776240,216,0 +170764776288,216,0 +170764776337,216,0 +170764776387,216,0 +170764776436,216,0 +170764776486,216,0 +170764776534,216,0 +170764776583,216,0 +170764776631,216,0 +170764776681,215,0 +170764776729,213,0 +170764776778,214,0 +170764776826,214,0 +170764776875,214,0 +170764776923,214,0 +170764776973,214,0 +170764777021,215,0 +170764777068,215,0 +170764777116,215,0 +170764777164,215,0 +170764777212,216,0 +170764777261,216,0 +170764777309,216,0 +170764777357,216,0 +170764777407,216,0 +170764777455,216,0 +170764777504,215,0 +170764777554,213,0 +170764777602,213,0 +170764777651,214,0 +170764777699,214,0 +170764777748,214,0 +170764777796,214,0 +170764777844,215,0 +170764777892,215,0 +170764777940,215,0 +170764777988,215,0 +170764778037,215,0 +170764778087,215,0 +170764778135,216,0 +170764778184,215,0 +170764778232,216,0 +170764778280,216,0 +170764778328,214,0 +170764778376,214,0 +170764778426,214,0 +170764778473,214,0 +170764778523,214,0 +170764778571,214,0 +170764778619,214,0 +170764778668,214,0 +170764778716,215,0 +170764778766,215,0 +170764778814,215,0 +170764778863,216,0 +170764778911,216,0 +170764778960,216,0 +170764779010,216,0 +170764779058,216,0 +170764779106,215,0 +170764779153,214,0 +170764779203,214,0 +170764779251,214,0 +170764779299,214,0 +170764779347,215,0 +170764779396,215,0 +170764779444,215,0 +170764779492,215,0 +170764779539,216,0 +170764779587,216,0 +170764779635,216,0 +170764779683,216,0 +170764779731,216,0 +170764779778,215,0 +170764779826,216,0 +170764779876,216,0 +170764779924,215,0 +170764779971,214,0 +170764780019,214,0 +170764780067,214,0 +170764780115,215,0 +170764780163,215,0 +170764780211,215,0 +170764780260,215,0 +170764780308,216,0 +170764780356,216,0 +170764780404,216,0 +170764780452,216,0 +170764780499,216,0 +170764780547,216,0 +170764780595,216,0 +170764780643,216,0 +170764780691,216,0 +170764780739,214,0 +170764780787,214,0 +170764780835,214,0 +170764780883,215,0 +170764780930,214,0 +170764780980,215,0 +170764781029,215,0 +170764781077,215,0 +170764781125,215,0 +170764781173,215,0 +170764781223,216,0 +170764781270,216,0 +170764781318,215,0 +170764781366,216,0 +170764781414,216,0 +170764781461,216,0 +170764781509,215,0 +170764781557,213,0 +170764781605,214,0 +170764781653,214,0 +170764781700,214,0 +170764781748,214,0 +170764781796,214,0 +170764781844,214,0 +170764781891,215,0 +170764781939,215,0 +170764781987,215,0 +170764782035,215,0 +170764782082,215,0 +170764782130,216,0 +170764782178,216,0 +170764782226,215,0 +170764782274,215,0 +170764782321,214,0 +170764782369,213,0 +170764782419,214,0 +170764782466,214,0 +170764782514,214,0 +170764782562,214,0 +170764782612,214,0 +170764782660,215,0 +170764782709,215,0 +170764782757,215,0 +170764782805,215,0 +170764782854,216,0 +170764782904,215,0 +170764782952,215,0 +170764782999,216,0 +170764783047,216,0 +170764783095,216,0 +170764783143,214,0 +170764783191,214,0 +170764783239,214,0 +170764783287,215,0 +170764783335,215,0 +170764783384,215,0 +170764783432,215,0 +170764783480,215,0 +170764783528,215,0 +170764783576,215,0 +170764783624,215,0 +170764783673,216,0 +170764783721,216,0 +170764783769,216,0 +170764783817,216,0 +170764783867,216,0 +170764783915,215,0 +170764783963,214,0 +170764784010,215,0 +170764784058,215,0 +170764784106,215,0 +170764784154,215,0 +170764784202,215,0 +170764784252,216,0 +170764784299,216,0 +170764784349,216,0 +170764784397,216,0 +170764784445,216,0 +170764784494,216,0 +170764784542,216,0 +170764784592,217,0 +170764784641,216,0 +170764784690,216,0 +170764784740,214,0 +170764784788,214,0 +170764784837,215,0 +170764784885,215,0 +170764784934,215,0 +170764784982,215,0 +170764785032,216,0 +170764785080,215,0 +170764785128,216,0 +170764785175,216,0 +170764785223,216,0 +170764785271,216,0 +170764785319,216,0 +170764785367,216,0 +170764785414,216,0 +170764785462,216,0 +170764785510,216,0 +170764785558,214,0 +170764785605,214,0 +170764785653,214,0 +170764785703,215,0 +170764785751,215,0 +170764785798,215,0 +170764785846,215,0 +170764785896,215,0 +170764785944,216,0 +170764785993,216,0 +170764786043,216,0 +170764786092,216,0 +170764786142,216,0 +170764786190,216,0 +170764786238,216,0 +170764786287,216,0 +170764786335,214,0 +170764786383,214,0 +170764786432,214,0 +170764786482,214,0 +170764786531,214,0 +170764786581,215,0 +170764786630,215,0 +170764786680,215,0 +170764786728,215,0 +170764786777,215,0 +170764786825,216,0 +170764786873,216,0 +170764786921,216,0 +170764786971,216,0 +170764787019,216,0 +170764787067,216,0 +170764787115,215,0 +170764787163,213,0 +170764787210,214,0 +170764787258,214,0 +170764787306,214,0 +170764787354,215,0 +170764787402,215,0 +170764787450,214,0 +170764787498,215,0 +170764787546,215,0 +170764787593,215,0 +170764787641,215,0 +170764787689,216,0 +170764787737,216,0 +170764787785,216,0 +170764787833,215,0 +170764787881,215,0 +170764787929,214,0 +170764787976,214,0 +170764788024,214,0 +170764788072,214,0 +170764788120,215,0 +170764788168,215,0 +170764788215,215,0 +170764788263,215,0 +170764788311,215,0 +170764788359,215,0 +170764788407,215,0 +170764788455,216,0 +170764788502,216,0 +170764788550,216,0 +170764788598,216,0 +170764788646,216,0 +170764788694,215,0 +170764788742,214,0 +170764788790,213,0 +170764788838,214,0 +170764788886,214,0 +170764788934,214,0 +170764788984,214,0 +170764789033,215,0 +170764789082,215,0 +170764789130,215,0 +170764789178,215,0 +170764789226,215,0 +170764789274,215,0 +170764789322,215,0 +170764789370,216,0 +170764789418,216,0 +170764789467,215,0 +170764789515,215,0 +170764789565,214,0 +170764789613,214,0 +170764789661,214,0 +170764789709,214,0 +170764789757,214,0 +170764789806,214,0 +170764789854,214,0 +170764789902,214,0 +170764789950,215,0 +170764789998,215,0 +170764790047,215,0 +170764790095,216,0 +170764790143,216,0 +170764790191,215,0 +170764790239,216,0 +170764790286,215,0 +170764790334,214,0 +170764790382,214,0 +170764790431,214,0 +170764790479,214,0 +170764790527,214,0 +170764790575,215,0 +170764790623,214,0 +170764790671,215,0 +170764790720,215,0 +170764790768,215,0 +170764790817,215,0 +170764790867,216,0 +170764790916,216,0 +170764790964,216,0 +170764791012,216,0 +170764791062,216,0 +170764791109,215,0 +170764791159,214,0 +170764791207,214,0 +170764791255,214,0 +170764791303,214,0 +170764791351,215,0 +170764791399,215,0 +170764791447,215,0 +170764791496,215,0 +170764791544,216,0 +170764791592,216,0 +170764791640,216,0 +170764791688,216,0 +170764791736,216,0 +170764791784,216,0 +170764791832,216,0 +170764791880,215,0 +170764791928,215,0 +170764791975,214,0 +170764792023,215,0 +170764792071,215,0 +170764792119,215,0 +170764792168,215,0 +170764792216,215,0 +170764792266,215,0 +170764792313,215,0 +170764792361,216,0 +170764792409,214,0 +170764792457,216,0 +170764792505,216,0 +170764792554,215,0 +170764792602,216,0 +170764792650,216,0 +170764792698,216,0 +170764792746,214,0 +170764792795,215,0 +170764792843,214,0 +170764792891,215,0 +170764792940,215,0 +170764792988,215,0 +170764793036,215,0 +170764793084,215,0 +170764793133,215,0 +170764793181,215,0 +170764793229,215,0 +170764793277,216,0 +170764793325,215,0 +170764793372,216,0 +170764793420,215,0 +170764793468,215,0 +170764793516,215,0 +170764793565,214,0 +170764793613,214,0 +170764793663,214,0 +170764793711,214,0 +170764793759,214,0 +170764793807,214,0 +170764793856,215,0 +170764793904,215,0 +170764793952,215,0 +170764794000,215,0 +170764794049,215,0 +170764794099,216,0 +170764794147,215,0 +170764794196,216,0 +170764794246,216,0 +170764794294,216,0 +170764794342,214,0 +170764794389,214,0 +170764794437,214,0 +170764794485,214,0 +170764794533,214,0 +170764794583,215,0 +170764794631,215,0 +170764794680,215,0 +170764794730,215,0 +170764794777,215,0 +170764794825,215,0 +170764794873,216,0 +170764794921,215,0 +170764794969,215,0 +170764795017,216,0 +170764795066,215,0 +170764795114,216,0 +170764795163,214,0 +170764795213,214,0 +170764795261,214,0 +170764795308,215,0 +170764795356,215,0 +170764795404,215,0 +170764795452,215,0 +170764795500,215,0 +170764795548,216,0 +170764795597,216,0 +170764795645,216,0 +170764795694,216,0 +170764795742,216,0 +170764795790,216,0 +170764795838,216,0 +170764795886,216,0 +170764795933,215,0 +170764795981,214,0 +170764796031,214,0 +170764796079,215,0 +170764796126,215,0 +170764796174,215,0 +170764796222,215,0 +170764796270,216,0 +170764796319,216,0 +170764796367,216,0 +170764796415,216,0 +170764796462,216,0 +170764796510,216,0 +170764796558,216,0 +170764796607,216,0 +170764796655,216,0 +170764796703,216,0 +170764796751,214,0 +170764796799,215,0 +170764796849,215,0 +170764796898,215,0 +170764796946,215,0 +170764796995,215,0 +170764797043,215,0 +170764797091,216,0 +170764797139,216,0 +170764797189,216,0 +170764797237,216,0 +170764797286,216,0 +170764797334,216,0 +170764797382,216,0 +170764797431,215,0 +170764797481,216,0 +170764797529,216,0 +170764797578,214,0 +170764797626,214,0 +170764797674,214,0 +170764797722,214,0 +170764797770,215,0 +170764797820,215,0 +170764797868,215,0 +170764797917,215,0 +170764797965,215,0 +170764798013,215,0 +170764798061,216,0 +170764798109,215,0 +170764798157,215,0 +170764798205,215,0 +170764798254,216,0 +170764798302,216,0 +170764798350,214,0 +170764798398,214,0 +170764798448,214,0 +170764798496,214,0 +170764798543,214,0 +170764798591,214,0 +170764798639,214,0 +170764798687,215,0 +170764798735,215,0 +170764798783,215,0 +170764798833,215,0 +170764798882,215,0 +170764798930,216,0 +170764798978,216,0 +170764799028,216,0 +170764799077,216,0 +170764799125,215,0 +170764799173,214,0 +170764799221,214,0 +170764799270,214,0 +170764799320,214,0 +170764799368,215,0 +170764799417,215,0 +170764799465,215,0 +170764799515,215,0 +170764799563,215,0 +170764799611,216,0 +170764799659,216,0 +170764799707,216,0 +170764799755,216,0 +170764799802,216,0 +170764799850,215,0 +170764799900,215,0 +170764799948,214,0 +170764799996,214,0 +170764800045,214,0 +170764800093,214,0 +170764800141,214,0 +170764800189,214,0 +170764800237,215,0 +170764800286,215,0 +170764800334,215,0 +170764800382,216,0 +170764800432,215,0 +170764800481,215,0 +170764800529,215,0 +170764800577,215,0 +170764800625,215,0 +170764800673,216,0 +170764800722,215,0 +170764800770,214,0 +170764800818,214,0 +170764800866,214,0 +170764800914,214,0 +170764800962,214,0 +170764801010,214,0 +170764801058,214,0 +170764801107,214,0 +170764801155,214,0 +170764801203,215,0 +170764801251,215,0 +170764801299,215,0 +170764801347,215,0 +170764801396,215,0 +170764801444,215,0 +170764801494,215,0 +170764801543,215,0 +170764801593,213,0 +170764801641,214,0 +170764801690,214,0 +170764801740,213,0 +170764801787,214,0 +170764801835,214,0 +170764801883,214,0 +170764801933,215,0 +170764801981,215,0 +170764802029,215,0 +170764802077,215,0 +170764802124,216,0 +170764802172,216,0 +170764802222,216,0 +170764802271,216,0 +170764802321,216,0 +170764802370,214,0 +170764802418,214,0 +170764802466,214,0 +170764802516,214,0 +170764802564,214,0 +170764802613,214,0 +170764802661,214,0 +170764802709,214,0 +170764802757,214,0 +170764802805,215,0 +170764802853,215,0 +170764802903,215,0 +170764802952,216,0 +170764803000,216,0 +170764803050,216,0 +170764803097,216,0 +170764803145,214,0 +170764803195,214,0 +170764803243,214,0 +170764803292,214,0 +170764803340,214,0 +170764803389,215,0 +170764803437,215,0 +170764803485,215,0 +170764803533,215,0 +170764803583,215,0 +170764803632,216,0 +170764803680,216,0 +170764803729,216,0 +170764803777,216,0 +170764803825,216,0 +170764803873,216,0 +170764803921,216,0 +170764803969,215,0 +170764804017,215,0 +170764804065,215,0 +170764804112,215,0 +170764804160,215,0 +170764804208,215,0 +170764804256,215,0 +170764804304,215,0 +170764804353,215,0 +170764804401,216,0 +170764804449,215,0 +170764804497,216,0 +170764804545,216,0 +170764804592,216,0 +170764804640,216,0 +170764804688,216,0 +170764804736,215,0 +170764804786,214,0 +170764804835,215,0 +170764804883,215,0 +170764804931,215,0 +170764804979,215,0 +170764805027,216,0 +170764805075,215,0 +170764805123,215,0 +170764805172,216,0 +170764805220,216,0 +170764805268,216,0 +170764805316,216,0 +170764805364,216,0 +170764805413,216,0 +170764805463,216,0 +170764805511,215,0 +170764805559,214,0 +170764805608,214,0 +170764805656,214,0 +170764805704,215,0 +170764805752,215,0 +170764805800,215,0 +170764805849,215,0 +170764805897,215,0 +170764805945,215,0 +170764805993,216,0 +170764806042,216,0 +170764806092,215,0 +170764806141,216,0 +170764806189,216,0 +170764806237,216,0 +170764806285,216,0 +170764806333,216,0 +170764806381,214,0 +170764806428,214,0 +170764806476,215,0 +170764806524,214,0 +170764806572,215,0 +170764806620,215,0 +170764806668,215,0 +170764806716,215,0 +170764806764,215,0 +170764806813,216,0 +170764806861,215,0 +170764806911,216,0 +170764806960,216,0 +170764807010,216,0 +170764807058,216,0 +170764807107,216,0 +170764807155,214,0 +170764807203,214,0 +170764807253,214,0 +170764807301,214,0 +170764807350,215,0 +170764807398,215,0 +170764807446,215,0 +170764807495,215,0 +170764807545,215,0 +170764807594,215,0 +170764807642,216,0 +170764807690,216,0 +170764807739,216,0 +170764807787,216,0 +170764807837,216,0 +170764807885,216,0 +170764807933,216,0 +170764807982,215,0 +170764808030,215,0 +170764808078,215,0 +170764808126,215,0 +170764808174,216,0 +170764808223,215,0 +170764808271,216,0 +170764808319,215,0 +170764808368,217,0 +170764808418,216,0 +170764808466,216,0 +170764808514,216,0 +170764808563,216,0 +170764808611,216,0 +170764808659,216,0 +170764808708,215,0 +170764808756,215,0 +170764808804,214,0 +170764808854,215,0 +170764808903,215,0 +170764808952,215,0 +170764809000,216,0 +170764809048,215,0 +170764809096,215,0 +170764809144,216,0 +170764809193,216,0 +170764809243,216,0 +170764809291,216,0 +170764809339,215,0 +170764809387,216,0 +170764809434,216,0 +170764809482,216,0 +170764809530,215,0 +170764809578,214,0 +170764809627,214,0 +170764809675,214,0 +170764809723,214,0 +170764809771,214,0 +170764809819,214,0 +170764809867,215,0 +170764809917,215,0 +170764809964,215,0 +170764810012,215,0 +170764810060,216,0 +170764810110,215,0 +170764810158,216,0 +170764810206,216,0 +170764810255,216,0 +170764810304,216,0 +170764810352,214,0 +170764810402,213,0 +170764810450,214,0 +170764810498,214,0 +170764810545,214,0 +170764810593,214,0 +170764810641,214,0 +170764810691,215,0 +170764810739,215,0 +170764810787,215,0 +170764810834,215,0 +170764810882,216,0 +170764810932,216,0 +170764810980,216,0 +170764811027,216,0 +170764811077,215,0 +170764811125,215,0 +170764811173,214,0 +170764811221,214,0 +170764811270,214,0 +170764811320,214,0 +170764811367,214,0 +170764811415,215,0 +170764811463,214,0 +170764811511,215,0 +170764811560,215,0 +170764811608,215,0 +170764811656,216,0 +170764811704,216,0 +170764811752,216,0 +170764811800,216,0 +170764811848,216,0 +170764811896,216,0 +170764811943,215,0 +170764811991,214,0 +170764812039,214,0 +170764812089,214,0 +170764812138,214,0 +170764812188,214,0 +170764812235,215,0 +170764812283,215,0 +170764812333,215,0 +170764812382,215,0 +170764812430,214,0 +170764812479,215,0 +170764812527,215,0 +170764812575,215,0 +170764812623,216,0 +170764812670,215,0 +170764812718,216,0 +170764812768,214,0 +170764812817,214,0 +170764812865,214,0 +170764812913,214,0 +170764812960,214,0 +170764813008,215,0 +170764813056,215,0 +170764813105,215,0 +170764813153,215,0 +170764813201,215,0 +170764813249,216,0 +170764813297,215,0 +170764813344,215,0 +170764813394,216,0 +170764813442,216,0 +170764813490,216,0 +170764813538,215,0 +170764813586,214,0 +170764813634,214,0 +170764813682,214,0 +170764813729,214,0 +170764813779,214,0 +170764813827,215,0 +170764813874,215,0 +170764813924,215,0 +170764813971,216,0 +170764814019,215,0 +170764814067,215,0 +170764814115,216,0 +170764814163,216,0 +170764814211,216,0 +170764814258,216,0 +170764814306,216,0 +170764814356,214,0 +170764814405,214,0 +170764814453,214,0 +170764814501,214,0 +170764814549,214,0 +170764814597,215,0 +170764814647,215,0 +170764814694,215,0 +170764814742,215,0 +170764814790,215,0 +170764814839,216,0 +170764814887,216,0 +170764814935,216,0 +170764814985,216,0 +170764815032,216,0 +170764815080,216,0 +170764815128,215,0 +170764815176,214,0 +170764815224,214,0 +170764815272,214,0 +170764815319,214,0 +170764815367,214,0 +170764815417,214,0 +170764815465,215,0 +170764815513,215,0 +170764815561,215,0 +170764815608,216,0 +170764815656,216,0 +170764815704,216,0 +170764815752,216,0 +170764815800,216,0 +170764815848,216,0 +170764815896,216,0 +170764815944,215,0 +170764815991,214,0 +170764816039,214,0 +170764816087,214,0 +170764816135,214,0 +170764816183,215,0 +170764816231,215,0 +170764816279,215,0 +170764816327,215,0 +170764816374,215,0 +170764816422,215,0 +170764816470,216,0 +170764816518,216,0 +170764816566,216,0 +170764816614,216,0 +170764816662,216,0 +170764816710,216,0 +170764816757,215,0 +170764816805,214,0 +170764816853,214,0 +170764816902,214,0 +170764816950,214,0 +170764816998,215,0 +170764817046,215,0 +170764817093,215,0 +170764817141,215,0 +170764817189,216,0 +170764817237,216,0 +170764817285,216,0 +170764817333,216,0 +170764817381,216,0 +170764817428,216,0 +170764817476,216,0 +170764817524,216,0 +170764817572,214,0 +170764817620,213,0 +170764817667,214,0 +170764817715,214,0 +170764817763,214,0 +170764817811,215,0 +170764817859,215,0 +170764817907,215,0 +170764817956,215,0 +170764818004,215,0 +170764818052,216,0 +170764818101,216,0 +170764818149,215,0 +170764818197,216,0 +170764818245,216,0 +170764818294,216,0 +170764818342,216,0 +170764818390,213,0 +170764818438,214,0 +170764818485,214,0 +170764818533,214,0 +170764818583,214,0 +170764818630,214,0 +170764818678,215,0 +170764818726,214,0 +170764818774,215,0 +170764818822,215,0 +170764818870,215,0 +170764818917,216,0 +170764818965,215,0 +170764819014,215,0 +170764819061,216,0 +170764819109,216,0 +170764819157,214,0 +170764819205,214,0 +170764819253,214,0 +170764819302,214,0 +170764819352,214,0 +170764819400,214,0 +170764819449,214,0 +170764819497,215,0 +170764819545,215,0 +170764819593,215,0 +170764819642,215,0 +170764819690,215,0 +170764819740,216,0 +170764819788,216,0 +170764819835,216,0 +170764819885,216,0 +170764819934,216,0 +170764819982,214,0 +170764820030,214,0 +170764820078,214,0 +170764820127,214,0 +170764820175,215,0 +170764820223,215,0 +170764820271,215,0 +170764820319,215,0 +170764820367,215,0 +170764820416,216,0 +170764820464,216,0 +170764820512,216,0 +170764820560,216,0 +170764820609,216,0 +170764820659,216,0 +170764820706,216,0 +170764820754,216,0 +170764820802,214,0 +170764820852,215,0 +170764820900,215,0 +170764820947,215,0 +170764820995,215,0 +170764821043,215,0 +170764821091,216,0 +170764821139,216,0 +170764821187,216,0 +170764821235,216,0 +170764821282,216,0 +170764821330,216,0 +170764821378,216,0 +170764821426,216,0 +170764821474,215,0 +170764821522,215,0 +170764821569,215,0 +170764821617,214,0 +170764821665,214,0 +170764821713,215,0 +170764821761,215,0 +170764821808,215,0 +170764821858,215,0 +170764821906,215,0 +170764821953,216,0 +170764822001,216,0 +170764822049,216,0 +170764822097,217,0 +170764822145,216,0 +170764822193,216,0 +170764822240,216,0 +170764822288,216,0 +170764822336,216,0 +170764822384,214,0 +170764822432,214,0 +170764822479,214,0 +170764822529,214,0 +170764822577,215,0 +170764822624,215,0 +170764822672,215,0 +170764822722,215,0 +170764822769,215,0 +170764822817,215,0 +170764822865,215,0 +170764822914,215,0 +170764822962,215,0 +170764823010,216,0 +170764823058,216,0 +170764823106,216,0 +170764823154,215,0 +170764823201,214,0 +170764823251,214,0 +170764823299,214,0 +170764823346,214,0 +170764823394,215,0 +170764823442,215,0 +170764823490,215,0 +170764823538,215,0 +170764823586,215,0 +170764823633,216,0 +170764823681,216,0 +170764823729,216,0 +170764823777,216,0 +170764823825,216,0 +170764823872,216,0 +170764823920,215,0 +170764823968,214,0 +170764824016,214,0 +170764824064,215,0 +170764824112,215,0 +170764824159,215,0 +170764824207,215,0 +170764824257,215,0 +170764824306,215,0 +170764824354,215,0 +170764824403,216,0 +170764824451,216,0 +170764824499,216,0 +170764824549,216,0 +170764824596,216,0 +170764824644,216,0 +170764824692,216,0 +170764824740,216,0 +170764824788,214,0 +170764824837,214,0 +170764824885,214,0 +170764824933,214,0 +170764824981,214,0 +170764825028,214,0 +170764825076,215,0 +170764825124,215,0 +170764825172,215,0 +170764825220,215,0 +170764825267,215,0 +170764825315,216,0 +170764825363,215,0 +170764825411,215,0 +170764825459,216,0 +170764825507,216,0 +170764825554,216,0 +170764825602,214,0 +170764825650,214,0 +170764825698,214,0 +170764825747,214,0 +170764825795,214,0 +170764825843,215,0 +170764825891,215,0 +170764825939,215,0 +170764825987,215,0 +170764826035,215,0 +170764826083,215,0 +170764826130,215,0 +170764826178,215,0 +170764826226,216,0 +170764826274,216,0 +170764826323,215,0 +170764826371,214,0 +170764826419,214,0 +170764826469,214,0 +170764826517,214,0 +170764826565,214,0 +170764826613,214,0 +170764826660,214,0 +170764826710,215,0 +170764826758,215,0 +170764826806,215,0 +170764826855,215,0 +170764826903,216,0 +170764826951,215,0 +170764826999,215,0 +170764827047,216,0 +170764827095,215,0 +170764827143,216,0 +170764827191,214,0 +170764827239,214,0 +170764827287,214,0 +170764827334,214,0 +170764827382,214,0 +170764827430,214,0 +170764827478,215,0 +170764827527,214,0 +170764827575,215,0 +170764827623,215,0 +170764827671,215,0 +170764827719,215,0 +170764827768,215,0 +170764827816,216,0 +170764827866,216,0 +170764827914,216,0 +170764827963,215,0 +170764828011,214,0 +170764828059,214,0 +170764828107,214,0 +170764828155,214,0 +170764828202,214,0 +170764828252,215,0 +170764828300,215,0 +170764828349,215,0 +170764828397,216,0 +170764828445,216,0 +170764828493,216,0 +170764828541,216,0 +170764828590,216,0 +170764828640,216,0 +170764828688,215,0 +170764828736,216,0 +170764828785,214,0 +170764828833,214,0 +170764828881,214,0 +170764828931,215,0 +170764828980,215,0 +170764829028,215,0 +170764829076,215,0 +170764829126,215,0 +170764829173,215,0 +170764829221,216,0 +170764829271,215,0 +170764829320,216,0 +170764829368,216,0 +170764829418,215,0 +170764829467,216,0 +170764829515,215,0 +170764829563,215,0 +170764829611,214,0 +170764829659,214,0 +170764829707,214,0 +170764829755,214,0 +170764829804,215,0 +170764829854,215,0 +170764829902,215,0 +170764829951,215,0 +170764830001,215,0 +170764830049,215,0 +170764830097,215,0 +170764830145,215,0 +170764830194,215,0 +170764830242,215,0 +170764830290,215,0 +170764830339,215,0 +170764830389,214,0 +170764830438,214,0 +170764830486,214,0 +170764830534,214,0 +170764830584,214,0 +170764830632,214,0 +170764830680,214,0 +170764830728,214,0 +170764830776,215,0 +170764830824,215,0 +170764830871,215,0 +170764830921,215,0 +170764830969,215,0 +170764831017,215,0 +170764831066,215,0 +170764831114,216,0 +170764831162,215,0 +170764831210,213,0 +170764831258,213,0 +170764831306,214,0 +170764831354,214,0 +170764831402,214,0 +170764831450,214,0 +170764831498,214,0 +170764831545,214,0 +170764831593,214,0 +170764831643,214,0 +170764831691,215,0 +170764831738,215,0 +170764831788,215,0 +170764831838,215,0 +170764831886,215,0 +170764831935,216,0 +170764831983,215,0 +170764832031,214,0 +170764832079,214,0 +170764832127,214,0 +170764832175,214,0 +170764832223,214,0 +170764832271,214,0 +170764832320,214,0 +170764832368,215,0 +170764832416,215,0 +170764832464,215,0 +170764832513,215,0 +170764832563,215,0 +170764832612,216,0 +170764832660,216,0 +170764832708,216,0 +170764832756,217,0 +170764832806,214,0 +170764832854,214,0 +170764832902,214,0 +170764832949,215,0 +170764832999,215,0 +170764833047,215,0 +170764833095,215,0 +170764833143,215,0 +170764833192,216,0 +170764833242,216,0 +170764833291,216,0 +170764833341,216,0 +170764833390,216,0 +170764833440,216,0 +170764833488,215,0 +170764833536,216,0 +170764833583,214,0 +170764833631,214,0 +170764833681,215,0 +170764833729,215,0 +170764833777,215,0 +170764833825,215,0 +170764833874,215,0 +170764833922,215,0 +170764833970,216,0 +170764834018,216,0 +170764834066,216,0 +170764834115,216,0 +170764834165,216,0 +170764834214,216,0 +170764834262,216,0 +170764834311,216,0 +170764834359,216,0 +170764834407,214,0 +170764834455,214,0 +170764834505,214,0 +170764834553,214,0 +170764834600,214,0 +170764834648,214,0 +170764834698,215,0 +170764834747,215,0 +170764834797,215,0 +170764834845,215,0 +170764834893,215,0 +170764834941,216,0 +170764834990,216,0 +170764835040,216,0 +170764835088,215,0 +170764835136,216,0 +170764835185,215,0 +170764835235,213,0 +170764835283,213,0 +170764835330,214,0 +170764835378,214,0 +170764835426,214,0 +170764835474,214,0 +170764835522,214,0 +170764835570,215,0 +170764835618,214,0 +170764835668,215,0 +170764835715,215,0 +170764835763,216,0 +170764835811,216,0 +170764835859,216,0 +170764835907,216,0 +170764835955,216,0 +170764836003,214,0 +170764836051,214,0 +170764836098,214,0 +170764836146,214,0 +170764836194,214,0 +170764836242,214,0 +170764836290,215,0 +170764836338,215,0 +170764836386,215,0 +170764836434,215,0 +170764836481,215,0 +170764836529,216,0 +170764836577,216,0 +170764836625,216,0 +170764836673,216,0 +170764836721,216,0 +170764836769,215,0 +170764836817,213,0 +170764836866,214,0 +170764836914,214,0 +170764836964,214,0 +170764837012,214,0 +170764837060,214,0 +170764837108,214,0 +170764837156,215,0 +170764837203,215,0 +170764837253,215,0 +170764837301,216,0 +170764837349,215,0 +170764837397,216,0 +170764837445,216,0 +170764837494,216,0 +170764837542,216,0 +170764837590,215,0 +170764837638,214,0 +170764837687,214,0 +170764837735,214,0 +170764837783,213,0 +170764837833,214,0 +170764837882,215,0 +170764837930,214,0 +170764837978,215,0 +170764838026,215,0 +170764838076,215,0 +170764838125,215,0 +170764838175,215,0 +170764838223,216,0 +170764838271,216,0 +170764838319,216,0 +170764838368,215,0 +170764838416,214,0 +170764838464,213,0 +170764838512,214,0 +170764838560,213,0 +170764838608,214,0 +170764838656,214,0 +170764838705,214,0 +170764838753,215,0 +170764838801,215,0 +170764838849,215,0 +170764838897,216,0 +170764838945,215,0 +170764838993,216,0 +170764839041,216,0 +170764839089,216,0 +170764839137,215,0 +170764839184,215,0 +170764839232,214,0 +170764839282,214,0 +170764839330,214,0 +170764839378,214,0 +170764839426,214,0 +170764839474,215,0 +170764839523,215,0 +170764839571,215,0 +170764839620,215,0 +170764839668,216,0 +170764839716,216,0 +170764839764,216,0 +170764839814,216,0 +170764839863,216,0 +170764839913,216,0 +170764839961,216,0 +170764840009,214,0 +170764840058,214,0 +170764840106,214,0 +170764840156,214,0 +170764840204,215,0 +170764840252,215,0 +170764840301,215,0 +170764840351,215,0 +170764840399,215,0 +170764840446,216,0 +170764840494,215,0 +170764840542,216,0 +170764840592,216,0 +170764840640,216,0 +170764840687,216,0 +170764840735,215,0 +170764840783,216,0 +170764840831,214,0 +170764840881,214,0 +170764840929,214,0 +170764840978,215,0 +170764841026,215,0 +170764841076,215,0 +170764841124,215,0 +170764841171,215,0 +170764841221,216,0 +170764841270,216,0 +170764841318,216,0 +170764841366,216,0 +170764841416,216,0 +170764841464,216,0 +170764841512,216,0 +170764841561,216,0 +170764841609,214,0 +170764841657,214,0 +170764841705,214,0 +170764841753,215,0 +170764841801,215,0 +170764841850,215,0 +170764841900,215,0 +170764841949,215,0 +170764841999,216,0 +170764842047,216,0 +170764842094,216,0 +170764842142,215,0 +170764842190,217,0 +170764842240,216,0 +170764842288,216,0 +170764842336,215,0 +170764842383,215,0 +170764842431,214,0 +170764842481,214,0 +170764842530,214,0 +170764842578,214,0 +170764842626,215,0 +170764842674,215,0 +170764842722,215,0 +170764842770,215,0 +170764842818,215,0 +170764842865,216,0 +170764842913,215,0 +170764842961,215,0 +170764843009,215,0 +170764843057,215,0 +170764843105,216,0 +170764843154,216,0 +170764843204,214,0 +170764843253,214,0 +170764843301,214,0 +170764843349,214,0 +170764843397,214,0 +170764843445,214,0 +170764843492,215,0 +170764843540,215,0 +170764843590,215,0 +170764843638,215,0 +170764843687,215,0 +170764843737,216,0 +170764843785,217,0 +170764843833,215,0 +170764843882,215,0 +170764843931,215,0 +170764843981,215,0 +170764844029,214,0 +170764844077,214,0 +170764844126,214,0 +170764844174,215,0 +170764844222,215,0 +170764844270,215,0 +170764844319,215,0 +170764844367,215,0 +170764844417,216,0 +170764844465,216,0 +170764844512,216,0 +170764844560,216,0 +170764844610,216,0 +170764844658,216,0 +170764844705,216,0 +170764844753,215,0 +170764844803,214,0 +170764844851,214,0 +170764844900,215,0 +170764844948,215,0 +170764844996,215,0 +170764845044,215,0 +170764845092,215,0 +170764845141,215,0 +170764845189,215,0 +170764845237,215,0 +170764845285,216,0 +170764845333,216,0 +170764845381,216,0 +170764845430,216,0 +170764845480,216,0 +170764845528,216,0 +170764845576,215,0 +170764845624,215,0 +170764845673,214,0 +170764845721,215,0 +170764845769,215,0 +170764845817,215,0 +170764845865,215,0 +170764845913,215,0 +170764845961,215,0 +170764846009,216,0 +170764846058,216,0 +170764846106,216,0 +170764846156,216,0 +170764846205,216,0 +170764846255,216,0 +170764846303,216,0 +170764846351,216,0 +170764846398,215,0 +170764846446,214,0 +170764846496,214,0 +170764846544,214,0 +170764846592,214,0 +170764846641,215,0 +170764846689,215,0 +170764846739,215,0 +170764846788,215,0 +170764846836,215,0 +170764846884,215,0 +170764846932,215,0 +170764846980,216,0 +170764847028,216,0 +170764847076,216,0 +170764847126,216,0 +170764847173,216,0 +170764847221,214,0 +170764847269,214,0 +170764847317,214,0 +170764847365,214,0 +170764847413,214,0 +170764847462,215,0 +170764847512,215,0 +170764847560,215,0 +170764847609,216,0 +170764847658,215,0 +170764847706,215,0 +170764847754,216,0 +170764847802,216,0 +170764847850,216,0 +170764847899,216,0 +170764847947,215,0 +170764847995,215,0 +170764848043,214,0 +170764848091,214,0 +170764848139,214,0 +170764848187,214,0 +170764848235,215,0 +170764848283,215,0 +170764848331,215,0 +170764848379,215,0 +170764848427,215,0 +170764848475,215,0 +170764848524,215,0 +170764848572,216,0 +170764848622,216,0 +170764848670,216,0 +170764848719,216,0 +170764848769,216,0 +170764848817,214,0 +170764848864,214,0 +170764848912,214,0 +170764848960,214,0 +170764849008,214,0 +170764849058,214,0 +170764849106,215,0 +170764849154,215,0 +170764849201,215,0 +170764849251,215,0 +170764849299,215,0 +170764849347,215,0 +170764849395,216,0 +170764849442,216,0 +170764849492,216,0 +170764849540,216,0 +170764849587,215,0 +170764849635,213,0 +170764849683,213,0 +170764849731,213,0 +170764849779,214,0 +170764849827,214,0 +170764849874,214,0 +170764849922,214,0 +170764849970,214,0 +170764850018,215,0 +170764850068,214,0 +170764850117,215,0 +170764850165,215,0 +170764850214,215,0 +170764850264,216,0 +170764850312,216,0 +170764850360,216,0 +170764850408,215,0 +170764850457,213,0 +170764850507,213,0 +170764850554,213,0 +170764850602,214,0 +170764850652,214,0 +170764850701,214,0 +170764850749,214,0 +170764850797,215,0 +170764850847,215,0 +170764850896,215,0 +170764850944,215,0 +170764850992,215,0 +170764851040,216,0 +170764851088,216,0 +170764851138,215,0 +170764851185,215,0 +170764851235,213,0 +170764851284,213,0 +170764851334,213,0 +170764851382,214,0 +170764851431,214,0 +170764851481,214,0 +170764851529,214,0 +170764851578,215,0 +170764851628,214,0 +170764851677,215,0 +170764851725,214,0 +170764851775,215,0 +170764851823,215,0 +170764851871,214,0 +170764851919,214,0 +170764851968,215,0 +170764852016,214,0 +170764852064,214,0 +170764852114,214,0 +170764852163,214,0 +170764852211,214,0 +170764852259,214,0 +170764852307,214,0 +170764852355,214,0 +170764852403,215,0 +170764852452,215,0 +170764852500,215,0 +170764852550,215,0 +170764852598,215,0 +170764852647,215,0 +170764852697,216,0 +170764852746,216,0 +170764852794,216,0 +170764852844,214,0 +170764852892,214,0 +170764852941,215,0 +170764852989,215,0 +170764853037,215,0 +170764853085,215,0 +170764853134,215,0 +170764853184,215,0 +170764853234,216,0 +170764853283,216,0 +170764853333,216,0 +170764853381,216,0 +170764853428,215,0 +170764853477,216,0 +170764853526,216,0 +170764853576,216,0 +170764853625,215,0 +170764853673,215,0 +170764853721,215,0 +170764853769,215,0 +170764853817,215,0 +170764853866,215,0 +170764853914,215,0 +170764853962,215,0 +170764854010,216,0 +170764854060,216,0 +170764854108,216,0 +170764854156,216,0 +170764854204,216,0 +170764854252,216,0 +170764854299,216,0 +170764854347,216,0 +170764854395,215,0 +170764854443,215,0 +170764854491,215,0 +170764854541,215,0 +170764854590,215,0 +170764854640,215,0 +170764854689,215,0 +170764854739,215,0 +170764854788,215,0 +170764854836,215,0 +170764854884,216,0 +170764854932,216,0 +170764854980,216,0 +170764855028,216,0 +170764855077,216,0 +170764855125,216,0 +170764855173,215,0 +170764855221,214,0 +170764855271,214,0 +170764855319,215,0 +170764855366,215,0 +170764855414,215,0 +170764855464,215,0 +170764855512,215,0 +170764855560,215,0 +170764855609,215,0 +170764855659,216,0 +170764855707,216,0 +170764855755,216,0 +170764855803,216,0 +170764855852,216,0 +170764855900,216,0 +170764855948,215,0 +170764855996,215,0 +170764856045,214,0 +170764856093,214,0 +170764856141,214,0 +170764856189,215,0 +170764856237,214,0 +170764856285,215,0 +170764856333,215,0 +170764856381,215,0 +170764856430,215,0 +170764856478,216,0 +170764856526,216,0 +170764856574,216,0 +170764856623,216,0 +170764856671,216,0 +170764856721,216,0 +170764856769,216,0 +170764856818,216,0 +170764856866,214,0 +170764856916,214,0 +170764856964,215,0 +170764857012,215,0 +170764857059,215,0 +170764857107,215,0 +170764857157,215,0 +170764857207,215,0 +170764857256,216,0 +170764857306,216,0 +170764857353,216,0 +170764857401,216,0 +170764857449,216,0 +170764857497,216,0 +170764857545,216,0 +170764857593,216,0 +170764857642,215,0 +170764857692,214,0 +170764857740,215,0 +170764857788,215,0 +170764857836,215,0 +170764857885,215,0 +170764857933,215,0 +170764857981,216,0 +170764858031,216,0 +170764858080,216,0 +170764858130,216,0 +170764858177,215,0 +170764858225,216,0 +170764858275,216,0 +170764858323,216,0 +170764858372,216,0 +170764858420,215,0 +170764858470,214,0 +170764858518,214,0 +170764858565,215,0 +170764858613,215,0 +170764858661,215,0 +170764858709,216,0 +170764858759,215,0 +170764858807,216,0 +170764858854,216,0 +170764858904,216,0 +170764858952,216,0 +170764859001,216,0 +170764859049,216,0 +170764859097,216,0 +170764859145,216,0 +170764859193,215,0 +170764859241,214,0 +170764859290,214,0 +170764859338,214,0 +170764859388,214,0 +170764859437,214,0 +170764859485,214,0 +170764859533,215,0 +170764859581,215,0 +170764859629,215,0 +170764859677,215,0 +170764859725,216,0 +170764859773,216,0 +170764859821,216,0 +170764859869,215,0 +170764859916,216,0 +170764859964,216,0 +170764860012,216,0 +170764860062,214,0 +170764860110,214,0 +170764860159,214,0 +170764860209,214,0 +170764860258,214,0 +170764860306,214,0 +170764860354,215,0 +170764860404,215,0 +170764860451,215,0 +170764860501,215,0 +170764860550,215,0 +170764860600,215,0 +170764860648,216,0 +170764860697,216,0 +170764860745,216,0 +170764860793,216,0 +170764860843,214,0 +170764860891,213,0 +170764860939,214,0 +170764860987,214,0 +170764861036,214,0 +170764861086,214,0 +170764861133,214,0 +170764861181,215,0 +170764861229,215,0 +170764861277,215,0 +170764861325,215,0 +170764861373,216,0 +170764861423,215,0 +170764861471,216,0 +170764861519,215,0 +170764861568,215,0 +170764861616,215,0 +170764861664,213,0 +170764861713,214,0 +170764861763,213,0 +170764861812,214,0 +170764861860,214,0 +170764861910,214,0 +170764861958,214,0 +170764862005,215,0 +170764862053,214,0 +170764862101,215,0 +170764862149,215,0 +170764862199,215,0 +170764862248,215,0 +170764862296,215,0 +170764862344,215,0 +170764862392,215,0 +170764862439,215,0 +170764862487,214,0 +170764862535,214,0 +170764862583,214,0 +170764862631,214,0 +170764862679,214,0 +170764862728,215,0 +170764862776,215,0 +170764862824,215,0 +170764862872,215,0 +170764862920,215,0 +170764862968,215,0 +170764863016,215,0 +170764863064,216,0 +170764863112,216,0 +170764863161,216,0 +170764863211,215,0 +170764863260,214,0 +170764863308,214,0 +170764863356,214,0 +170764863404,214,0 +170764863452,214,0 +170764863501,214,0 +170764863551,215,0 +170764863599,215,0 +170764863647,215,0 +170764863695,215,0 +170764863744,215,0 +170764863792,216,0 +170764863841,216,0 +170764863891,216,0 +170764863939,216,0 +170764863988,215,0 +170764864038,214,0 +170764864087,213,0 +170764864135,213,0 +170764864183,214,0 +170764864232,214,0 +170764864282,214,0 +170764864330,214,0 +170764864378,215,0 +170764864426,215,0 +170764864473,215,0 +170764864521,216,0 +170764864569,215,0 +170764864618,216,0 +170764864666,216,0 +170764864714,216,0 +170764864762,215,0 +170764864810,215,0 +170764864858,214,0 +170764864906,213,0 +170764864953,214,0 +170764865003,214,0 +170764865051,214,0 +170764865100,214,0 +170764865148,214,0 +170764865196,215,0 +170764865244,215,0 +170764865291,216,0 +170764865339,215,0 +170764865387,216,0 +170764865435,216,0 +170764865483,216,0 +170764865531,216,0 +170764865578,216,0 +170764865628,215,0 +170764865676,214,0 +170764865724,214,0 +170764865772,214,0 +170764865821,215,0 +170764865871,215,0 +170764865920,215,0 +170764865968,215,0 +170764866016,215,0 +170764866064,215,0 +170764866112,216,0 +170764866160,216,0 +170764866208,216,0 +170764866255,216,0 +170764866303,216,0 +170764866351,216,0 +170764866401,216,0 +170764866450,214,0 +170764866498,214,0 +170764866546,214,0 +170764866596,215,0 +170764866644,215,0 +170764866693,215,0 +170764866741,215,0 +170764866789,215,0 +170764866837,215,0 +170764866885,215,0 +170764866933,215,0 +170764866981,216,0 +170764867029,216,0 +170764867077,216,0 +170764867126,216,0 +170764867174,216,0 +170764867223,216,0 +170764867271,214,0 +170764867319,214,0 +170764867369,214,0 +170764867417,214,0 +170764867465,214,0 +170764867514,214,0 +170764867562,215,0 +170764867612,215,0 +170764867660,215,0 +170764867709,215,0 +170764867757,215,0 +170764867806,216,0 +170764867854,216,0 +170764867902,216,0 +170764867950,216,0 +170764867998,216,0 +170764868046,214,0 +170764868094,214,0 +170764868143,214,0 +170764868191,214,0 +170764868239,214,0 +170764868287,214,0 +170764868336,214,0 +170764868384,215,0 +170764868432,215,0 +170764868479,215,0 +170764868527,215,0 +170764868575,215,0 +170764868625,215,0 +170764868673,216,0 +170764868721,216,0 +170764868770,216,0 +170764868820,216,0 +170764868868,214,0 +170764868915,214,0 +170764868965,214,0 +170764869014,214,0 +170764869064,214,0 +170764869112,215,0 +170764869161,215,0 +170764869211,215,0 +170764869260,215,0 +170764869308,215,0 +170764869356,216,0 +170764869406,216,0 +170764869454,216,0 +170764869501,216,0 +170764869549,215,0 +170764869597,216,0 +170764869645,214,0 +170764869693,214,0 +170764869741,214,0 +170764869789,215,0 +170764869836,215,0 +170764869884,215,0 +170764869932,215,0 +170764869980,216,0 +170764870028,216,0 +170764870075,216,0 +170764870123,216,0 +170764870171,216,0 +170764870219,216,0 +170764870267,216,0 +170764870317,215,0 +170764870366,216,0 +170764870416,215,0 +170764870463,215,0 +170764870511,215,0 +170764870559,215,0 +170764870607,215,0 +170764870655,216,0 +170764870704,215,0 +170764870754,216,0 +170764870802,216,0 +170764870850,215,0 +170764870899,216,0 +170764870948,216,0 +170764870996,216,0 +170764871044,216,0 +170764871092,215,0 +170764871140,216,0 +170764871190,215,0 +170764871238,216,0 +170764871285,215,0 +170764871335,215,0 +170764871383,215,0 +170764871431,215,0 +170764871479,215,0 +170764871527,215,0 +170764871575,216,0 +170764871622,215,0 +170764871670,216,0 +170764871718,215,0 +170764871768,216,0 +170764871816,216,0 +170764871864,216,0 +170764871912,216,0 +170764871960,216,0 +170764872007,216,0 +170764872055,214,0 +170764872103,214,0 +170764872151,214,0 +170764872201,214,0 +170764872249,214,0 +170764872296,215,0 +170764872344,215,0 +170764872392,215,0 +170764872440,215,0 +170764872490,215,0 +170764872538,216,0 +170764872586,216,0 +170764872635,216,0 +170764872683,216,0 +170764872733,216,0 +170764872782,216,0 +170764872830,215,0 +170764872879,214,0 +170764872929,214,0 +170764872977,214,0 +170764873025,215,0 +170764873073,215,0 +170764873122,215,0 +170764873170,215,0 +170764873220,215,0 +170764873268,216,0 +170764873316,216,0 +170764873365,216,0 +170764873413,216,0 +170764873463,216,0 +170764873511,215,0 +170764873559,216,0 +170764873607,215,0 +170764873655,214,0 +170764873702,214,0 +170764873750,214,0 +170764873798,215,0 +170764873846,215,0 +170764873894,214,0 +170764873942,214,0 +170764873990,215,0 +170764874040,215,0 +170764874089,215,0 +170764874137,216,0 +170764874185,216,0 +170764874233,216,0 +170764874281,216,0 +170764874330,216,0 +170764874378,216,0 +170764874428,216,0 +170764874476,214,0 +170764874523,214,0 +170764874571,214,0 +170764874619,214,0 +170764874667,215,0 +170764874715,215,0 +170764874762,215,0 +170764874810,215,0 +170764874860,215,0 +170764874908,215,0 +170764874955,216,0 +170764875003,216,0 +170764875053,216,0 +170764875102,216,0 +170764875150,217,0 +170764875198,215,0 +170764875246,215,0 +170764875293,214,0 +170764875341,214,0 +170764875389,214,0 +170764875438,214,0 +170764875486,214,0 +170764875534,215,0 +170764875584,215,0 +170764875632,215,0 +170764875680,215,0 +170764875728,215,0 +170764875776,215,0 +170764875824,215,0 +170764875872,216,0 +170764875921,215,0 +170764875969,216,0 +170764876019,215,0 +170764876067,214,0 +170764876114,213,0 +170764876162,214,0 +170764876210,214,0 +170764876258,214,0 +170764876306,214,0 +170764876354,215,0 +170764876402,215,0 +170764876449,215,0 +170764876497,215,0 +170764876545,215,0 +170764876595,216,0 +170764876642,216,0 +170764876690,216,0 +170764876738,216,0 +170764876788,216,0 +170764876837,216,0 +170764876885,214,0 +170764876933,214,0 +170764876981,214,0 +170764877028,214,0 +170764877076,214,0 +170764877124,215,0 +170764877172,215,0 +170764877221,215,0 +170764877269,215,0 +170764877317,216,0 +170764877365,216,0 +170764877414,216,0 +170764877462,216,0 +170764877510,216,0 +170764877558,216,0 +170764877606,216,0 +170764877654,215,0 +170764877704,214,0 +170764877751,214,0 +170764877799,214,0 +170764877849,214,0 +170764877898,215,0 +170764877946,215,0 +170764877994,215,0 +170764878042,215,0 +170764878092,216,0 +170764878141,215,0 +170764878189,216,0 +170764878237,215,0 +170764878286,216,0 +170764878334,216,0 +170764878384,216,0 +170764878433,215,0 +170764878481,214,0 +170764878529,214,0 +170764878577,215,0 +170764878625,215,0 +170764878673,215,0 +170764878721,215,0 +170764878769,215,0 +170764878818,216,0 +170764878866,215,0 +170764878914,216,0 +170764878962,215,0 +170764879010,216,0 +170764879057,216,0 +170764879107,216,0 +170764879155,216,0 +170764879203,215,0 +170764879250,215,0 +170764879298,214,0 +170764879346,214,0 +170764879394,214,0 +170764879442,214,0 +170764879489,214,0 +170764879537,214,0 +170764879587,215,0 +170764879636,215,0 +170764879684,215,0 +170764879732,215,0 +170764879780,215,0 +170764879830,216,0 +170764879878,216,0 +170764879926,216,0 +170764879974,215,0 +170764880022,215,0 +170764880070,214,0 +170764880118,213,0 +170764880165,214,0 +170764880215,214,0 +170764880264,214,0 +170764880312,214,0 +170764880360,214,0 +170764880408,214,0 +170764880456,215,0 +170764880506,215,0 +170764880555,215,0 +170764880603,215,0 +170764880651,215,0 +170764880701,215,0 +170764880750,215,0 +170764880798,215,0 +170764880846,216,0 +170764880894,214,0 +170764880943,214,0 +170764880991,214,0 +170764881039,214,0 +170764881089,214,0 +170764881137,214,0 +170764881186,215,0 +170764881236,215,0 +170764881283,215,0 +170764881331,215,0 +170764881381,216,0 +170764881429,216,0 +170764881477,216,0 +170764881525,216,0 +170764881574,215,0 +170764881622,215,0 +170764881670,214,0 +170764881720,214,0 +170764881769,214,0 +170764881818,215,0 +170764881866,215,0 +170764881914,215,0 +170764881964,215,0 +170764882012,216,0 +170764882059,215,0 +170764882107,216,0 +170764882155,215,0 +170764882203,216,0 +170764882251,216,0 +170764882301,216,0 +170764882349,216,0 +170764882396,216,0 +170764882444,215,0 +170764882492,214,0 +170764882542,214,0 +170764882590,214,0 +170764882638,215,0 +170764882686,215,0 +170764882735,215,0 +170764882783,215,0 +170764882832,215,0 +170764882880,216,0 +170764882928,216,0 +170764882976,216,0 +170764883026,216,0 +170764883074,216,0 +170764883122,216,0 +170764883171,216,0 +170764883219,216,0 +170764883267,214,0 +170764883316,214,0 +170764883366,214,0 +170764883414,214,0 +170764883463,214,0 +170764883513,214,0 +170764883560,215,0 +170764883608,215,0 +170764883658,215,0 +170764883706,215,0 +170764883754,216,0 +170764883802,215,0 +170764883850,216,0 +170764883898,216,0 +170764883945,216,0 +170764883993,215,0 +170764884043,215,0 +170764884091,214,0 +170764884140,214,0 +170764884188,214,0 +170764884236,214,0 +170764884284,215,0 +170764884332,215,0 +170764884382,215,0 +170764884430,215,0 +170764884478,215,0 +170764884526,216,0 +170764884575,215,0 +170764884623,216,0 +170764884671,216,0 +170764884719,216,0 +170764884767,216,0 +170764884815,215,0 +170764884863,215,0 +170764884912,214,0 +170764884961,214,0 +170764885011,215,0 +170764885060,215,0 +170764885108,215,0 +170764885156,215,0 +170764885206,215,0 +170764885254,215,0 +170764885303,215,0 +170764885352,215,0 +170764885400,216,0 +170764885448,216,0 +170764885498,216,0 +170764885546,216,0 +170764885595,215,0 +170764885643,215,0 +170764885691,214,0 +170764885738,214,0 +170764885786,214,0 +170764885834,214,0 +170764885882,215,0 +170764885930,215,0 +170764885979,215,0 +170764886027,215,0 +170764886075,215,0 +170764886123,215,0 +170764886171,215,0 +170764886220,216,0 +170764886268,215,0 +170764886316,216,0 +170764886366,215,0 +170764886414,215,0 +170764886462,215,0 +170764886510,214,0 +170764886558,214,0 +170764886607,214,0 +170764886655,214,0 +170764886705,215,0 +170764886753,215,0 +170764886800,215,0 +170764886850,216,0 +170764886898,215,0 +170764886946,215,0 +170764886994,215,0 +170764887041,216,0 +170764887089,216,0 +170764887139,216,0 +170764887188,216,0 +170764887236,216,0 +170764887284,214,0 +170764887332,214,0 +170764887380,214,0 +170764887428,214,0 +170764887476,214,0 +170764887523,214,0 +170764887571,214,0 +170764887619,215,0 +170764887669,215,0 +170764887717,215,0 +170764887766,215,0 +170764887814,216,0 +170764887862,215,0 +170764887910,216,0 +170764887959,216,0 +170764888009,216,0 +170764888058,215,0 +170764888108,214,0 +170764888156,214,0 +170764888205,214,0 +170764888253,214,0 +170764888301,215,0 +170764888351,215,0 +170764888399,215,0 +170764888446,215,0 +170764888494,215,0 +170764888542,215,0 +170764888590,216,0 +170764888640,215,0 +170764888688,216,0 +170764888737,216,0 +170764888785,216,0 +170764888835,216,0 +170764888883,213,0 +170764888930,213,0 +170764888978,214,0 +170764889028,214,0 +170764889075,214,0 +170764889125,214,0 +170764889173,214,0 +170764889221,215,0 +170764889269,214,0 +170764889317,215,0 +170764889365,215,0 +170764889413,215,0 +170764889462,215,0 +170764889511,215,0 +170764889559,215,0 +170764889607,215,0 +170764889655,215,0 +170764889703,213,0 +170764889751,213,0 +170764889798,213,0 +170764889846,214,0 +170764889894,214,0 +170764889944,214,0 +170764889992,215,0 +170764890039,215,0 +170764890087,215,0 +170764890137,215,0 +170764890186,215,0 +170764890236,215,0 +170764890284,215,0 +170764890333,215,0 +170764890383,215,0 +170764890432,215,0 +170764890482,214,0 +170764890530,214,0 +170764890579,214,0 +170764890627,214,0 +170764890675,215,0 +170764890723,215,0 +170764890771,215,0 +170764890819,215,0 +170764890867,215,0 +170764890915,216,0 +170764890963,216,0 +170764891010,216,0 +170764891058,216,0 +170764891106,216,0 +170764891154,216,0 +170764891202,215,0 +170764891250,216,0 +170764891299,214,0 +170764891347,214,0 +170764891395,214,0 +170764891444,214,0 +170764891494,214,0 +170764891542,214,0 +170764891591,214,0 +170764891639,215,0 +170764891687,215,0 +170764891735,214,0 +170764891783,214,0 +170764891832,216,0 +170764891880,216,0 +170764891928,215,0 +170764891976,215,0 +170764892026,215,0 +170764892075,214,0 +170764892123,214,0 +170764892171,214,0 +170764892219,214,0 +170764892267,214,0 +170764892315,214,0 +170764892362,215,0 +170764892410,215,0 +170764892460,215,0 +170764892508,217,0 +170764892557,215,0 +170764892605,215,0 +170764892654,216,0 +170764892702,215,0 +170764892750,216,0 +170764892798,216,0 +170764892846,215,0 +170764892894,215,0 +170764892942,214,0 +170764892992,214,0 +170764893040,214,0 +170764893089,214,0 +170764893139,215,0 +170764893186,215,0 +170764893236,215,0 +170764893286,215,0 +170764893333,215,0 +170764893381,215,0 +170764893429,216,0 +170764893477,216,0 +170764893525,216,0 +170764893573,216,0 +170764893621,216,0 +170764893669,215,0 +170764893717,214,0 +170764893765,214,0 +170764893814,215,0 +170764893864,215,0 +170764893912,215,0 +170764893960,215,0 +170764894007,215,0 +170764894055,215,0 +170764894105,216,0 +170764894153,216,0 +170764894202,216,0 +170764894250,216,0 +170764894298,216,0 +170764894346,215,0 +170764894394,216,0 +170764894442,215,0 +170764894491,214,0 +170764894539,215,0 +170764894587,215,0 +170764894635,215,0 +170764894685,215,0 +170764894733,215,0 +170764894782,216,0 +170764894832,216,0 +170764894880,216,0 +170764894928,216,0 +170764894976,216,0 +170764895024,216,0 +170764895071,216,0 +170764895119,216,0 +170764895167,216,0 +170764895215,216,0 +170764895265,215,0 +170764895312,214,0 +170764895362,214,0 +170764895410,215,0 +170764895459,215,0 +170764895509,215,0 +170764895558,215,0 +170764895606,215,0 +170764895656,215,0 +170764895704,216,0 +170764895752,216,0 +170764895801,216,0 +170764895849,216,0 +170764895899,216,0 +170764895948,216,0 +170764895996,216,0 +170764896044,215,0 +170764896092,214,0 +170764896141,214,0 +170764896189,214,0 +170764896237,214,0 +170764896287,214,0 +170764896335,214,0 +170764896383,215,0 +170764896432,215,0 +170764896480,215,0 +170764896528,215,0 +170764896576,215,0 +170764896625,216,0 +170764896673,216,0 +170764896723,216,0 +170764896771,216,0 +170764896819,216,0 +170764896867,215,0 +170764896916,213,0 +170764896965,214,0 +170764897015,214,0 +170764897063,214,0 +170764897112,214,0 +170764897162,214,0 +170764897210,215,0 +170764897259,215,0 +170764897307,215,0 +170764897355,215,0 +170764897405,215,0 +170764897452,215,0 +170764897502,215,0 +170764897551,216,0 +170764897599,215,0 +170764897649,215,0 +170764897699,213,0 +170764897746,213,0 +170764897796,214,0 +170764897845,214,0 +170764897893,214,0 +170764897941,214,0 +170764897991,214,0 +170764898040,214,0 +170764898090,215,0 +170764898138,215,0 +170764898186,215,0 +170764898234,215,0 +170764898282,215,0 +170764898331,216,0 +170764898379,216,0 +170764898427,215,0 +170764898475,214,0 +170764898524,214,0 +170764898572,214,0 +170764898622,214,0 +170764898669,214,0 +170764898717,214,0 +170764898767,214,0 +170764898815,214,0 +170764898863,215,0 +170764898911,215,0 +170764898958,214,0 +170764899006,216,0 +170764899054,216,0 +170764899102,215,0 +170764899152,216,0 +170764899199,216,0 +170764899247,215,0 +170764899295,214,0 +170764899343,213,0 +170764899391,214,0 +170764899439,214,0 +170764899489,214,0 +170764899538,214,0 +170764899586,215,0 +170764899634,215,0 +170764899683,215,0 +170764899733,215,0 +170764899782,215,0 +170764899832,216,0 +170764899882,216,0 +170764899930,216,0 +170764899979,216,0 +170764900027,216,0 +170764900075,214,0 +170764900124,213,0 +170764900174,214,0 +170764900222,214,0 +170764900270,214,0 +170764900318,214,0 +170764900367,215,0 +170764900415,214,0 +170764900463,215,0 +170764900511,215,0 +170764900561,215,0 +170764900608,215,0 +170764900656,216,0 +170764900704,215,0 +170764900752,216,0 +170764900800,216,0 +170764900849,215,0 +170764900897,213,0 +170764900944,213,0 +170764900994,213,0 +170764901042,214,0 +170764901091,214,0 +170764901141,214,0 +170764901190,214,0 +170764901240,214,0 +170764901288,214,0 +170764901337,215,0 +170764901385,215,0 +170764901435,215,0 +170764901482,215,0 +170764901532,215,0 +170764901580,215,0 +170764901629,216,0 +170764901677,215,0 +170764901725,214,0 +170764901773,214,0 +170764901821,214,0 +170764901870,214,0 +170764901918,214,0 +170764901966,215,0 +170764902014,215,0 +170764902062,215,0 +170764902110,215,0 +170764902159,216,0 +170764902207,215,0 +170764902255,216,0 +170764902303,216,0 +170764902352,216,0 +170764902400,216,0 +170764902448,215,0 +170764902496,215,0 +170764902546,215,0 +170764902595,214,0 +170764902643,215,0 +170764902693,215,0 +170764902741,215,0 +170764902790,215,0 +170764902838,216,0 +170764902887,215,0 +170764902935,216,0 +170764902985,216,0 +170764903033,216,0 +170764903081,215,0 +170764903130,216,0 +170764903180,216,0 +170764903229,215,0 +170764903279,215,0 +170764903328,215,0 +170764903378,215,0 +170764903427,215,0 +170764903475,215,0 +170764903523,215,0 +170764903572,215,0 +170764903622,216,0 +170764903671,216,0 +170764903721,216,0 +170764903769,216,0 +170764903817,216,0 +170764903865,216,0 +170764903913,216,0 +170764903961,216,0 +170764904010,216,0 +170764904058,215,0 +170764904106,214,0 +170764904154,214,0 +170764904202,214,0 +170764904251,215,0 +170764904299,215,0 +170764904347,215,0 +170764904395,215,0 +170764904443,215,0 +170764904491,215,0 +170764904538,215,0 +170764904588,216,0 +170764904636,216,0 +170764904684,216,0 +170764904732,216,0 +170764904779,216,0 +170764904829,216,0 +170764904877,215,0 +170764904925,214,0 +170764904974,214,0 +170764905022,214,0 +170764905072,214,0 +170764905119,214,0 +170764905167,215,0 +170764905215,215,0 +170764905265,215,0 +170764905313,215,0 +170764905360,215,0 +170764905410,216,0 +170764905458,215,0 +170764905507,216,0 +170764905555,216,0 +170764905605,215,0 +170764905653,215,0 +170764905702,214,0 +170764905750,213,0 +170764905798,214,0 +170764905846,214,0 +170764905894,214,0 +170764905942,214,0 +170764905990,214,0 +170764906038,215,0 +170764906087,215,0 +170764906135,215,0 +170764906183,215,0 +170764906231,215,0 +170764906279,215,0 +170764906327,216,0 +170764906375,216,0 +170764906424,216,0 +170764906472,215,0 +170764906520,213,0 +170764906568,213,0 +170764906616,214,0 +170764906664,214,0 +170764906712,214,0 +170764906759,214,0 +170764906807,214,0 +170764906855,215,0 +170764906904,215,0 +170764906952,216,0 +170764907002,216,0 +170764907051,216,0 +170764907099,216,0 +170764907147,216,0 +170764907196,216,0 +170764907244,216,0 +170764907292,216,0 +170764907341,216,0 +170764907389,216,0 +170764907438,216,0 +170764907486,216,0 +170764907534,216,0 +170764907582,216,0 +170764907630,216,0 +170764907677,215,0 +170764907725,214,0 +170764907773,214,0 +170764907821,214,0 +170764907869,214,0 +170764907917,214,0 +170764907966,215,0 +170764908014,215,0 +170764908062,215,0 +170764908110,215,0 +170764908159,215,0 +170764908207,216,0 +170764908257,216,0 +170764908306,216,0 +170764908356,216,0 +170764908404,216,0 +170764908452,216,0 +170764908501,214,0 +170764908551,213,0 +170764908599,214,0 +170764908648,214,0 +170764908698,214,0 +170764908746,214,0 +170764908794,214,0 +170764908841,214,0 +170764908891,215,0 +170764908940,214,0 +170764908988,215,0 +170764909038,215,0 +170764909085,215,0 +170764909135,216,0 +170764909183,215,0 +170764909232,215,0 +170764909282,215,0 +170764909330,214,0 +170764909377,213,0 +170764909425,214,0 +170764909473,214,0 +170764909521,214,0 +170764909569,215,0 +170764909617,215,0 +170764909666,215,0 +170764909716,215,0 +170764909765,215,0 +170764909813,216,0 +170764909863,216,0 +170764909912,216,0 +170764909960,216,0 +170764910008,216,0 +170764910056,216,0 +170764910105,214,0 +170764910155,214,0 +170764910203,214,0 +170764910251,215,0 +170764910299,215,0 +170764910348,215,0 +170764910396,215,0 +170764910444,215,0 +170764910493,215,0 +170764910541,216,0 +170764910589,216,0 +170764910637,216,0 +170764910685,216,0 +170764910733,215,0 +170764910781,215,0 +170764910829,216,0 +170764910877,215,0 +170764910925,214,0 +170764910974,214,0 +170764911024,214,0 +170764911072,215,0 +170764911119,215,0 +170764911169,214,0 +170764911217,215,0 +170764911266,215,0 +170764911316,215,0 +170764911365,216,0 +170764911413,216,0 +170764911463,216,0 +170764911511,216,0 +170764911559,216,0 +170764911607,216,0 +170764911655,216,0 +170764911702,214,0 +170764911750,214,0 +170764911800,214,0 +170764911848,214,0 +170764911896,214,0 +170764911943,214,0 +170764911991,215,0 +170764912039,215,0 +170764912089,215,0 +170764912138,215,0 +170764912186,216,0 +170764912234,216,0 +170764912282,218,0 +170764912330,216,0 +170764912377,216,0 +170764912425,216,0 +170764912473,216,0 +170764912521,214,0 +170764912569,214,0 +170764912618,214,0 +170764912668,214,0 +170764912717,214,0 +170764912765,215,0 +170764912813,215,0 +170764912861,215,0 +170764912909,215,0 +170764912958,215,0 +170764913006,215,0 +170764913054,216,0 +170764913102,216,0 +170764913150,216,0 +170764913198,216,0 +170764913246,216,0 +170764913294,214,0 +170764913342,214,0 +170764913390,214,0 +170764913438,214,0 +170764913486,214,0 +170764913534,215,0 +170764913582,215,0 +170764913630,215,0 +170764913679,215,0 +170764913727,215,0 +170764913775,216,0 +170764913823,216,0 +170764913871,216,0 +170764913919,216,0 +170764913967,216,0 +170764914015,216,0 +170764914063,216,0 +170764914111,214,0 +170764914158,214,0 +170764914206,214,0 +170764914254,215,0 +170764914302,215,0 +170764914350,215,0 +170764914399,215,0 +170764914449,215,0 +170764914497,216,0 +170764914545,216,0 +170764914593,216,0 +170764914641,216,0 +170764914690,216,0 +170764914738,216,0 +170764914786,216,0 +170764914833,216,0 +170764914881,215,0 +170764914929,214,0 +170764914977,215,0 +170764915027,215,0 +170764915075,215,0 +170764915124,215,0 +170764915174,215,0 +170764915222,215,0 +170764915270,216,0 +170764915317,216,0 +170764915367,216,0 +170764915415,216,0 +170764915464,216,0 +170764915512,216,0 +170764915560,216,0 +170764915610,216,0 +170764915658,216,0 +170764915706,214,0 +170764915753,214,0 +170764915803,214,0 +170764915851,214,0 +170764915899,215,0 +170764915947,215,0 +170764915996,215,0 +170764916044,215,0 +170764916092,215,0 +170764916142,215,0 +170764916190,216,0 +170764916238,216,0 +170764916285,216,0 +170764916333,216,0 +170764916381,216,0 +170764916429,216,0 +170764916479,215,0 +170764916528,214,0 +170764916578,214,0 +170764916626,214,0 +170764916674,214,0 +170764916721,214,0 +170764916769,215,0 +170764916817,214,0 +170764916867,215,0 +170764916915,215,0 +170764916964,215,0 +170764917012,215,0 +170764917061,215,0 +170764917109,216,0 +170764917159,215,0 +170764917207,216,0 +170764917256,215,0 +170764917306,214,0 +170764917353,214,0 +170764917401,214,0 +170764917449,214,0 +170764917497,214,0 +170764917547,214,0 +170764917596,214,0 +170764917644,215,0 +170764917694,215,0 +170764917741,215,0 +170764917791,215,0 +170764917839,215,0 +170764917887,216,0 +170764917935,216,0 +170764917984,216,0 +170764918032,215,0 +170764918080,215,0 +170764918128,214,0 +170764918177,214,0 +170764918225,214,0 +170764918273,214,0 +170764918323,214,0 +170764918371,215,0 +170764918418,215,0 +170764918466,215,0 +170764918514,216,0 +170764918564,215,0 +170764918612,216,0 +170764918659,216,0 +170764918707,216,0 +170764918755,216,0 +170764918803,216,0 +170764918853,216,0 +170764918901,215,0 +170764918950,214,0 +170764918998,215,0 +170764919047,215,0 +170764919097,215,0 +170764919145,215,0 +170764919193,215,0 +170764919242,216,0 +170764919290,216,0 +170764919339,216,0 +170764919387,216,0 +170764919435,216,0 +170764919483,216,0 +170764919531,216,0 +170764919579,216,0 +170764919627,216,0 +170764919675,215,0 +170764919725,215,0 +170764919774,215,0 +170764919824,215,0 +170764919873,215,0 +170764919921,215,0 +170764919969,216,0 +170764920017,215,0 diff --git a/laser_value/0211-21.csv b/laser_value/0211-21.csv new file mode 100644 index 0000000..6384584 --- /dev/null +++ b/laser_value/0211-21.csv @@ -0,0 +1,7447 @@ +timestamp,laser_value,event +170764920065,216,0 +170764920113,216,0 +170764920163,216,0 +170764920210,216,0 +170764920258,216,0 +170764920306,216,0 +170764920356,216,0 +170764920404,216,0 +170764920452,216,0 +170764920499,215,0 +170764920547,214,0 +170764920595,215,0 +170764920643,215,0 +170764920691,215,0 +170764920739,215,0 +170764920787,215,0 +170764920835,215,0 +170764920883,216,0 +170764920931,216,0 +170764920979,216,0 +170764921027,216,0 +170764921074,216,0 +170764921122,216,0 +170764921170,217,0 +170764921218,216,0 +170764921266,216,0 +170764921314,214,0 +170764921362,215,0 +170764921410,214,0 +170764921458,215,0 +170764921506,215,0 +170764921555,215,0 +170764921603,215,0 +170764921653,215,0 +170764921702,216,0 +170764921750,216,0 +170764921800,216,0 +170764921849,216,0 +170764921897,216,0 +170764921945,216,0 +170764921993,216,0 +170764922042,216,0 +170764922090,216,0 +170764922138,214,0 +170764922187,214,0 +170764922237,214,0 +170764922285,214,0 +170764922333,215,0 +170764922382,215,0 +170764922430,215,0 +170764922479,215,0 +170764922527,215,0 +170764922575,215,0 +170764922625,216,0 +170764922673,216,0 +170764922721,215,0 +170764922768,216,0 +170764922816,216,0 +170764922864,216,0 +170764922914,214,0 +170764922962,214,0 +170764923011,215,0 +170764923059,215,0 +170764923107,215,0 +170764923155,215,0 +170764923203,215,0 +170764923251,215,0 +170764923298,216,0 +170764923348,216,0 +170764923396,216,0 +170764923444,216,0 +170764923492,216,0 +170764923539,216,0 +170764923587,216,0 +170764923635,216,0 +170764923683,215,0 +170764923732,214,0 +170764923780,214,0 +170764923828,214,0 +170764923878,215,0 +170764923925,215,0 +170764923973,215,0 +170764924021,215,0 +170764924069,215,0 +170764924117,216,0 +170764924166,215,0 +170764924214,216,0 +170764924263,216,0 +170764924313,217,0 +170764924362,216,0 +170764924410,216,0 +170764924458,216,0 +170764924507,214,0 +170764924557,214,0 +170764924605,214,0 +170764924652,214,0 +170764924702,214,0 +170764924750,214,0 +170764924798,215,0 +170764924846,215,0 +170764924893,215,0 +170764924941,215,0 +170764924989,216,0 +170764925039,215,0 +170764925087,216,0 +170764925134,216,0 +170764925184,216,0 +170764925232,216,0 +170764925280,216,0 +170764925327,214,0 +170764925375,214,0 +170764925423,214,0 +170764925471,214,0 +170764925519,214,0 +170764925567,214,0 +170764925614,214,0 +170764925662,214,0 +170764925710,215,0 +170764925759,215,0 +170764925807,215,0 +170764925855,216,0 +170764925905,217,0 +170764925954,216,0 +170764926004,216,0 +170764926053,215,0 +170764926101,215,0 +170764926149,213,0 +170764926197,214,0 +170764926245,214,0 +170764926293,215,0 +170764926341,214,0 +170764926389,215,0 +170764926437,215,0 +170764926485,215,0 +170764926532,216,0 +170764926580,215,0 +170764926628,216,0 +170764926676,216,0 +170764926725,216,0 +170764926773,216,0 +170764926823,216,0 +170764926870,216,0 +170764926918,214,0 +170764926966,214,0 +170764927014,214,0 +170764927062,214,0 +170764927109,215,0 +170764927157,214,0 +170764927207,215,0 +170764927254,215,0 +170764927302,215,0 +170764927350,216,0 +170764927398,215,0 +170764927446,216,0 +170764927494,216,0 +170764927541,216,0 +170764927589,216,0 +170764927637,216,0 +170764927685,215,0 +170764927732,214,0 +170764927780,215,0 +170764927830,215,0 +170764927878,215,0 +170764927925,215,0 +170764927973,215,0 +170764928021,215,0 +170764928069,216,0 +170764928118,216,0 +170764928166,216,0 +170764928214,215,0 +170764928262,216,0 +170764928310,216,0 +170764928358,216,0 +170764928405,216,0 +170764928455,216,0 +170764928503,215,0 +170764928551,213,0 +170764928599,214,0 +170764928647,214,0 +170764928696,214,0 +170764928744,215,0 +170764928793,215,0 +170764928841,215,0 +170764928889,215,0 +170764928937,215,0 +170764928985,215,0 +170764929033,215,0 +170764929081,215,0 +170764929129,216,0 +170764929176,216,0 +170764929226,216,0 +170764929274,215,0 +170764929322,214,0 +170764929369,214,0 +170764929417,214,0 +170764929465,214,0 +170764929513,214,0 +170764929561,214,0 +170764929609,215,0 +170764929656,215,0 +170764929706,215,0 +170764929754,215,0 +170764929803,215,0 +170764929851,216,0 +170764929900,216,0 +170764929948,216,0 +170764929998,215,0 +170764930046,216,0 +170764930093,216,0 +170764930141,214,0 +170764930191,214,0 +170764930239,214,0 +170764930287,214,0 +170764930334,215,0 +170764930382,215,0 +170764930430,215,0 +170764930478,215,0 +170764930526,215,0 +170764930574,215,0 +170764930623,216,0 +170764930671,215,0 +170764930719,216,0 +170764930767,216,0 +170764930816,216,0 +170764930864,216,0 +170764930912,214,0 +170764930960,213,0 +170764931008,214,0 +170764931056,214,0 +170764931104,215,0 +170764931152,215,0 +170764931199,215,0 +170764931247,216,0 +170764931295,215,0 +170764931343,215,0 +170764931391,215,0 +170764931439,216,0 +170764931486,216,0 +170764931534,216,0 +170764931582,216,0 +170764931630,216,0 +170764931678,215,0 +170764931726,214,0 +170764931774,213,0 +170764931822,214,0 +170764931870,214,0 +170764931917,214,0 +170764931965,215,0 +170764932013,215,0 +170764932061,215,0 +170764932110,215,0 +170764932158,214,0 +170764932206,215,0 +170764932254,215,0 +170764932303,216,0 +170764932351,216,0 +170764932399,216,0 +170764932447,216,0 +170764932495,216,0 +170764932543,214,0 +170764932590,214,0 +170764932638,214,0 +170764932686,214,0 +170764932734,214,0 +170764932784,214,0 +170764932832,215,0 +170764932880,214,0 +170764932929,215,0 +170764932977,215,0 +170764933025,215,0 +170764933073,216,0 +170764933121,216,0 +170764933169,215,0 +170764933217,216,0 +170764933266,216,0 +170764933316,214,0 +170764933365,214,0 +170764933413,214,0 +170764933461,214,0 +170764933509,215,0 +170764933559,215,0 +170764933607,215,0 +170764933656,215,0 +170764933704,215,0 +170764933752,216,0 +170764933800,216,0 +170764933848,216,0 +170764933896,215,0 +170764933944,216,0 +170764933992,216,0 +170764934040,215,0 +170764934089,216,0 +170764934137,214,0 +170764934185,214,0 +170764934235,214,0 +170764934284,214,0 +170764934332,215,0 +170764934382,215,0 +170764934430,215,0 +170764934479,215,0 +170764934529,215,0 +170764934576,216,0 +170764934624,216,0 +170764934674,216,0 +170764934722,216,0 +170764934770,216,0 +170764934818,216,0 +170764934866,216,0 +170764934915,215,0 +170764934963,214,0 +170764935013,214,0 +170764935060,214,0 +170764935108,214,0 +170764935158,214,0 +170764935206,215,0 +170764935254,215,0 +170764935302,215,0 +170764935350,215,0 +170764935399,215,0 +170764935447,215,0 +170764935495,216,0 +170764935543,216,0 +170764935591,216,0 +170764935640,216,0 +170764935690,216,0 +170764935739,214,0 +170764935789,214,0 +170764935838,214,0 +170764935886,214,0 +170764935934,214,0 +170764935982,214,0 +170764936030,215,0 +170764936078,215,0 +170764936127,215,0 +170764936177,215,0 +170764936225,215,0 +170764936274,215,0 +170764936324,215,0 +170764936372,215,0 +170764936421,216,0 +170764936469,216,0 +170764936517,214,0 +170764936565,214,0 +170764936612,214,0 +170764936660,215,0 +170764936708,215,0 +170764936756,215,0 +170764936804,215,0 +170764936852,215,0 +170764936900,215,0 +170764936948,216,0 +170764936997,216,0 +170764937045,216,0 +170764937093,216,0 +170764937143,216,0 +170764937191,216,0 +170764937240,216,0 +170764937288,215,0 +170764937336,214,0 +170764937384,214,0 +170764937434,214,0 +170764937482,214,0 +170764937531,214,0 +170764937579,215,0 +170764937627,215,0 +170764937677,215,0 +170764937724,215,0 +170764937772,215,0 +170764937820,216,0 +170764937870,216,0 +170764937918,216,0 +170764937965,216,0 +170764938013,216,0 +170764938061,216,0 +170764938109,215,0 +170764938156,213,0 +170764938206,213,0 +170764938254,213,0 +170764938302,214,0 +170764938349,214,0 +170764938397,214,0 +170764938445,214,0 +170764938493,215,0 +170764938541,215,0 +170764938589,215,0 +170764938637,215,0 +170764938685,216,0 +170764938734,216,0 +170764938782,216,0 +170764938830,216,0 +170764938879,216,0 +170764938927,214,0 +170764938975,214,0 +170764939024,214,0 +170764939074,214,0 +170764939122,215,0 +170764939170,215,0 +170764939219,215,0 +170764939267,215,0 +170764939317,215,0 +170764939365,215,0 +170764939413,216,0 +170764939462,216,0 +170764939512,216,0 +170764939560,216,0 +170764939609,216,0 +170764939657,215,0 +170764939705,215,0 +170764939755,214,0 +170764939802,214,0 +170764939850,214,0 +170764939900,215,0 +170764939948,215,0 +170764939997,215,0 +170764940047,215,0 +170764940095,215,0 +170764940144,215,0 +170764940194,216,0 +170764940242,215,0 +170764940289,216,0 +170764940337,216,0 +170764940385,215,0 +170764940433,215,0 +170764940481,215,0 +170764940529,214,0 +170764940578,214,0 +170764940626,214,0 +170764940674,214,0 +170764940724,215,0 +170764940772,215,0 +170764940821,215,0 +170764940871,215,0 +170764940918,216,0 +170764940966,215,0 +170764941014,216,0 +170764941063,216,0 +170764941111,216,0 +170764941159,216,0 +170764941207,216,0 +170764941255,216,0 +170764941303,215,0 +170764941350,214,0 +170764941398,214,0 +170764941446,214,0 +170764941494,214,0 +170764941542,215,0 +170764941591,215,0 +170764941641,215,0 +170764941689,215,0 +170764941738,215,0 +170764941786,215,0 +170764941834,216,0 +170764941882,215,0 +170764941930,215,0 +170764941978,215,0 +170764942026,216,0 +170764942075,216,0 +170764942123,214,0 +170764942172,214,0 +170764942220,214,0 +170764942270,214,0 +170764942318,214,0 +170764942366,215,0 +170764942413,215,0 +170764942461,215,0 +170764942509,215,0 +170764942557,216,0 +170764942605,215,0 +170764942652,216,0 +170764942700,216,0 +170764942748,216,0 +170764942796,216,0 +170764942844,215,0 +170764942892,216,0 +170764942939,214,0 +170764942987,214,0 +170764943037,215,0 +170764943085,215,0 +170764943132,215,0 +170764943182,215,0 +170764943231,215,0 +170764943279,215,0 +170764943327,216,0 +170764943375,216,0 +170764943423,216,0 +170764943470,216,0 +170764943520,216,0 +170764943569,216,0 +170764943617,216,0 +170764943665,216,0 +170764943713,215,0 +170764943761,215,0 +170764943809,215,0 +170764943857,215,0 +170764943904,215,0 +170764943952,216,0 +170764944000,216,0 +170764944048,216,0 +170764944096,216,0 +170764944145,216,0 +170764944193,216,0 +170764944243,216,0 +170764944291,216,0 +170764944338,216,0 +170764944386,216,0 +170764944436,216,0 +170764944484,215,0 +170764944532,214,0 +170764944580,214,0 +170764944629,214,0 +170764944677,214,0 +170764944725,214,0 +170764944774,215,0 +170764944822,215,0 +170764944870,215,0 +170764944920,215,0 +170764944968,215,0 +170764945018,216,0 +170764945066,216,0 +170764945115,216,0 +170764945163,215,0 +170764945211,216,0 +170764945259,215,0 +170764945308,215,0 +170764945356,214,0 +170764945404,214,0 +170764945453,214,0 +170764945501,214,0 +170764945549,214,0 +170764945597,214,0 +170764945645,215,0 +170764945693,215,0 +170764945741,215,0 +170764945789,215,0 +170764945836,216,0 +170764945884,216,0 +170764945934,215,0 +170764945983,216,0 +170764946031,216,0 +170764946079,216,0 +170764946127,214,0 +170764946175,214,0 +170764946223,214,0 +170764946270,214,0 +170764946318,214,0 +170764946366,214,0 +170764946415,214,0 +170764946463,215,0 +170764946511,215,0 +170764946559,215,0 +170764946607,215,0 +170764946655,215,0 +170764946702,215,0 +170764946750,215,0 +170764946800,216,0 +170764946848,215,0 +170764946896,215,0 +170764946944,214,0 +170764946992,214,0 +170764947039,214,0 +170764947089,214,0 +170764947137,214,0 +170764947185,215,0 +170764947234,215,0 +170764947282,215,0 +170764947330,215,0 +170764947378,215,0 +170764947427,215,0 +170764947475,215,0 +170764947525,215,0 +170764947573,216,0 +170764947621,216,0 +170764947670,215,0 +170764947718,215,0 +170764947767,214,0 +170764947815,214,0 +170764947863,214,0 +170764947913,214,0 +170764947961,214,0 +170764948010,214,0 +170764948058,215,0 +170764948107,214,0 +170764948155,215,0 +170764948203,215,0 +170764948251,215,0 +170764948301,216,0 +170764948348,215,0 +170764948398,216,0 +170764948446,216,0 +170764948495,216,0 +170764948543,214,0 +170764948591,214,0 +170764948639,214,0 +170764948687,214,0 +170764948736,214,0 +170764948784,214,0 +170764948832,215,0 +170764948880,215,0 +170764948928,215,0 +170764948976,215,0 +170764949025,215,0 +170764949073,215,0 +170764949123,215,0 +170764949170,216,0 +170764949218,216,0 +170764949266,216,0 +170764949314,215,0 +170764949364,213,0 +170764949412,214,0 +170764949460,214,0 +170764949508,214,0 +170764949555,214,0 +170764949605,214,0 +170764949653,215,0 +170764949701,214,0 +170764949748,214,0 +170764949796,214,0 +170764949844,215,0 +170764949892,215,0 +170764949940,215,0 +170764949988,215,0 +170764950037,216,0 +170764950084,216,0 +170764950132,214,0 +170764950180,213,0 +170764950228,213,0 +170764950276,214,0 +170764950324,214,0 +170764950372,214,0 +170764950420,214,0 +170764950468,215,0 +170764950516,215,0 +170764950563,215,0 +170764950611,215,0 +170764950661,216,0 +170764950709,216,0 +170764950758,216,0 +170764950806,216,0 +170764950854,216,0 +170764950902,215,0 +170764950950,214,0 +170764950997,214,0 +170764951045,215,0 +170764951093,215,0 +170764951143,216,0 +170764951191,215,0 +170764951239,215,0 +170764951286,215,0 +170764951336,216,0 +170764951384,216,0 +170764951433,216,0 +170764951483,216,0 +170764951532,216,0 +170764951580,216,0 +170764951628,216,0 +170764951677,216,0 +170764951725,215,0 +170764951773,215,0 +170764951821,215,0 +170764951869,215,0 +170764951916,215,0 +170764951964,215,0 +170764952012,216,0 +170764952060,216,0 +170764952108,216,0 +170764952156,216,0 +170764952203,216,0 +170764952251,216,0 +170764952299,216,0 +170764952347,216,0 +170764952395,216,0 +170764952443,216,0 +170764952491,215,0 +170764952539,215,0 +170764952586,215,0 +170764952634,215,0 +170764952684,215,0 +170764952733,215,0 +170764952781,215,0 +170764952830,216,0 +170764952878,216,0 +170764952928,216,0 +170764952976,216,0 +170764953024,216,0 +170764953071,216,0 +170764953121,216,0 +170764953169,216,0 +170764953218,216,0 +170764953266,216,0 +170764953315,216,0 +170764953363,214,0 +170764953413,215,0 +170764953461,215,0 +170764953509,215,0 +170764953556,215,0 +170764953604,215,0 +170764953654,216,0 +170764953702,216,0 +170764953749,216,0 +170764953797,216,0 +170764953845,216,0 +170764953893,216,0 +170764953941,216,0 +170764953989,216,0 +170764954037,216,0 +170764954084,216,0 +170764954132,215,0 +170764954180,214,0 +170764954228,215,0 +170764954277,215,0 +170764954325,215,0 +170764954373,215,0 +170764954421,215,0 +170764954469,215,0 +170764954517,215,0 +170764954564,215,0 +170764954614,215,0 +170764954662,216,0 +170764954711,216,0 +170764954759,215,0 +170764954808,216,0 +170764954856,215,0 +170764954904,216,0 +170764954952,214,0 +170764955000,214,0 +170764955048,215,0 +170764955097,214,0 +170764955147,215,0 +170764955196,215,0 +170764955246,215,0 +170764955293,215,0 +170764955341,215,0 +170764955389,215,0 +170764955439,215,0 +170764955488,216,0 +170764955536,215,0 +170764955584,216,0 +170764955633,216,0 +170764955681,216,0 +170764955729,215,0 +170764955779,214,0 +170764955828,215,0 +170764955876,215,0 +170764955924,215,0 +170764955972,215,0 +170764956020,215,0 +170764956069,216,0 +170764956118,215,0 +170764956166,216,0 +170764956214,216,0 +170764956262,216,0 +170764956310,216,0 +170764956360,216,0 +170764956409,216,0 +170764956457,216,0 +170764956505,216,0 +170764956553,214,0 +170764956601,214,0 +170764956650,214,0 +170764956698,215,0 +170764956746,215,0 +170764956794,215,0 +170764956842,215,0 +170764956890,215,0 +170764956938,216,0 +170764956985,215,0 +170764957035,216,0 +170764957083,216,0 +170764957131,216,0 +170764957178,216,0 +170764957228,216,0 +170764957278,216,0 +170764957325,216,0 +170764957375,214,0 +170764957423,214,0 +170764957470,214,0 +170764957520,215,0 +170764957568,214,0 +170764957615,215,0 +170764957663,215,0 +170764957711,215,0 +170764957759,215,0 +170764957807,216,0 +170764957854,215,0 +170764957904,216,0 +170764957952,216,0 +170764958000,216,0 +170764958047,216,0 +170764958095,215,0 +170764958143,214,0 +170764958191,214,0 +170764958239,214,0 +170764958288,214,0 +170764958337,214,0 +170764958385,214,0 +170764958435,214,0 +170764958484,215,0 +170764958534,215,0 +170764958583,215,0 +170764958633,215,0 +170764958681,215,0 +170764958729,215,0 +170764958778,216,0 +170764958826,216,0 +170764958874,216,0 +170764958921,216,0 +170764958971,213,0 +170764959019,213,0 +170764959066,214,0 +170764959114,214,0 +170764959162,213,0 +170764959210,214,0 +170764959258,214,0 +170764959306,214,0 +170764959356,215,0 +170764959405,215,0 +170764959455,215,0 +170764959503,215,0 +170764959551,215,0 +170764959599,215,0 +170764959648,216,0 +170764959696,216,0 +170764959745,214,0 +170764959793,214,0 +170764959841,214,0 +170764959891,214,0 +170764959939,214,0 +170764959986,214,0 +170764960034,214,0 +170764960082,215,0 +170764960130,215,0 +170764960179,215,0 +170764960227,215,0 +170764960275,215,0 +170764960323,215,0 +170764960373,214,0 +170764960420,215,0 +170764960468,215,0 +170764960516,215,0 +170764960564,214,0 +170764960612,214,0 +170764960661,214,0 +170764960709,214,0 +170764960757,214,0 +170764960805,215,0 +170764960853,214,0 +170764960901,215,0 +170764960949,215,0 +170764960998,215,0 +170764961046,215,0 +170764961096,216,0 +170764961143,215,0 +170764961193,215,0 +170764961242,215,0 +170764961292,216,0 +170764961340,215,0 +170764961388,214,0 +170764961436,214,0 +170764961485,214,0 +170764961534,214,0 +170764961582,214,0 +170764961630,214,0 +170764961678,214,0 +170764961726,214,0 +170764961773,215,0 +170764961821,216,0 +170764961869,215,0 +170764961917,215,0 +170764961965,216,0 +170764962013,216,0 +170764962062,216,0 +170764962110,215,0 +170764962158,214,0 +170764962205,213,0 +170764962253,214,0 +170764962301,214,0 +170764962351,214,0 +170764962398,215,0 +170764962446,214,0 +170764962494,215,0 +170764962542,215,0 +170764962590,215,0 +170764962638,215,0 +170764962686,216,0 +170764962734,216,0 +170764962782,216,0 +170764962831,216,0 +170764962879,216,0 +170764962927,215,0 +170764962975,214,0 +170764963025,214,0 +170764963074,214,0 +170764963122,214,0 +170764963170,215,0 +170764963218,215,0 +170764963267,215,0 +170764963317,215,0 +170764963365,215,0 +170764963413,216,0 +170764963462,216,0 +170764963510,216,0 +170764963558,216,0 +170764963606,216,0 +170764963654,216,0 +170764963704,215,0 +170764963753,214,0 +170764963803,214,0 +170764963850,214,0 +170764963898,214,0 +170764963946,215,0 +170764963994,215,0 +170764964042,215,0 +170764964092,215,0 +170764964140,216,0 +170764964188,215,0 +170764964237,216,0 +170764964287,216,0 +170764964334,216,0 +170764964382,216,0 +170764964430,216,0 +170764964480,216,0 +170764964529,215,0 +170764964579,215,0 +170764964628,214,0 +170764964676,215,0 +170764964726,214,0 +170764964774,215,0 +170764964822,215,0 +170764964871,215,0 +170764964919,215,0 +170764964967,216,0 +170764965015,216,0 +170764965064,216,0 +170764965112,216,0 +170764965160,216,0 +170764965208,216,0 +170764965256,216,0 +170764965306,216,0 +170764965354,215,0 +170764965403,214,0 +170764965451,214,0 +170764965500,214,0 +170764965548,214,0 +170764965597,214,0 +170764965645,215,0 +170764965693,214,0 +170764965741,215,0 +170764965790,215,0 +170764965840,215,0 +170764965888,215,0 +170764965937,215,0 +170764965987,216,0 +170764966036,216,0 +170764966084,216,0 +170764966134,216,0 +170764966182,214,0 +170764966230,214,0 +170764966277,214,0 +170764966327,214,0 +170764966376,214,0 +170764966424,214,0 +170764966474,214,0 +170764966522,214,0 +170764966570,215,0 +170764966618,215,0 +170764966666,215,0 +170764966715,215,0 +170764966763,215,0 +170764966811,216,0 +170764966861,216,0 +170764966910,215,0 +170764966959,215,0 +170764967007,214,0 +170764967055,214,0 +170764967105,214,0 +170764967153,215,0 +170764967201,215,0 +170764967250,215,0 +170764967300,215,0 +170764967348,215,0 +170764967397,215,0 +170764967445,215,0 +170764967493,215,0 +170764967541,215,0 +170764967589,216,0 +170764967638,216,0 +170764967688,216,0 +170764967737,216,0 +170764967787,215,0 +170764967836,215,0 +170764967884,215,0 +170764967932,215,0 +170764967980,215,0 +170764968030,216,0 +170764968077,215,0 +170764968127,216,0 +170764968176,216,0 +170764968224,216,0 +170764968272,216,0 +170764968320,216,0 +170764968368,216,0 +170764968418,216,0 +170764968466,216,0 +170764968515,215,0 +170764968563,215,0 +170764968611,215,0 +170764968659,215,0 +170764968707,215,0 +170764968755,215,0 +170764968803,216,0 +170764968850,216,0 +170764968898,216,0 +170764968946,216,0 +170764968994,216,0 +170764969042,216,0 +170764969090,216,0 +170764969140,216,0 +170764969189,216,0 +170764969237,216,0 +170764969285,215,0 +170764969334,215,0 +170764969384,214,0 +170764969433,215,0 +170764969483,215,0 +170764969532,215,0 +170764969580,215,0 +170764969628,215,0 +170764969676,215,0 +170764969724,214,0 +170764969773,216,0 +170764969823,216,0 +170764969871,216,0 +170764969920,216,0 +170764969969,216,0 +170764970017,216,0 +170764970065,216,0 +170764970113,216,0 +170764970161,215,0 +170764970210,214,0 +170764970259,215,0 +170764970307,214,0 +170764970355,215,0 +170764970403,215,0 +170764970451,215,0 +170764970499,215,0 +170764970547,215,0 +170764970595,215,0 +170764970643,215,0 +170764970691,216,0 +170764970740,216,0 +170764970788,216,0 +170764970836,216,0 +170764970884,216,0 +170764970933,216,0 +170764970981,214,0 +170764971029,214,0 +170764971077,214,0 +170764971125,214,0 +170764971173,215,0 +170764971221,215,0 +170764971269,215,0 +170764971317,215,0 +170764971365,215,0 +170764971413,216,0 +170764971460,215,0 +170764971510,216,0 +170764971558,216,0 +170764971606,216,0 +170764971655,215,0 +170764971703,215,0 +170764971751,215,0 +170764971799,214,0 +170764971847,214,0 +170764971895,214,0 +170764971944,214,0 +170764971992,215,0 +170764972042,215,0 +170764972090,215,0 +170764972138,215,0 +170764972186,215,0 +170764972234,216,0 +170764972281,216,0 +170764972329,216,0 +170764972377,216,0 +170764972425,215,0 +170764972473,216,0 +170764972522,216,0 +170764972570,214,0 +170764972618,214,0 +170764972666,214,0 +170764972714,214,0 +170764972762,215,0 +170764972811,215,0 +170764972861,215,0 +170764972909,215,0 +170764972957,215,0 +170764973006,215,0 +170764973054,216,0 +170764973102,216,0 +170764973150,216,0 +170764973198,216,0 +170764973246,216,0 +170764973293,216,0 +170764973341,216,0 +170764973391,214,0 +170764973440,214,0 +170764973488,214,0 +170764973536,214,0 +170764973584,214,0 +170764973632,214,0 +170764973680,215,0 +170764973728,215,0 +170764973776,215,0 +170764973824,216,0 +170764973873,216,0 +170764973921,216,0 +170764973971,216,0 +170764974019,216,0 +170764974068,216,0 +170764974116,215,0 +170764974164,215,0 +170764974212,214,0 +170764974260,214,0 +170764974309,214,0 +170764974359,214,0 +170764974406,214,0 +170764974454,214,0 +170764974502,215,0 +170764974550,215,0 +170764974598,215,0 +170764974647,215,0 +170764974697,215,0 +170764974746,215,0 +170764974796,216,0 +170764974844,215,0 +170764974892,216,0 +170764974940,215,0 +170764974988,214,0 +170764975037,214,0 +170764975085,214,0 +170764975133,214,0 +170764975181,214,0 +170764975229,214,0 +170764975277,215,0 +170764975326,215,0 +170764975376,215,0 +170764975424,215,0 +170764975472,215,0 +170764975521,216,0 +170764975569,216,0 +170764975618,216,0 +170764975666,216,0 +170764975714,216,0 +170764975762,215,0 +170764975810,214,0 +170764975858,214,0 +170764975906,214,0 +170764975954,215,0 +170764976003,215,0 +170764976051,215,0 +170764976101,215,0 +170764976150,215,0 +170764976200,215,0 +170764976248,216,0 +170764976296,215,0 +170764976344,216,0 +170764976391,215,0 +170764976439,216,0 +170764976487,216,0 +170764976535,215,0 +170764976583,215,0 +170764976631,215,0 +170764976679,215,0 +170764976728,215,0 +170764976778,215,0 +170764976826,215,0 +170764976875,216,0 +170764976923,215,0 +170764976973,216,0 +170764977022,216,0 +170764977072,216,0 +170764977121,216,0 +170764977169,216,0 +170764977217,216,0 +170764977265,216,0 +170764977313,216,0 +170764977361,215,0 +170764977409,214,0 +170764977457,214,0 +170764977504,214,0 +170764977552,214,0 +170764977602,214,0 +170764977650,214,0 +170764977698,215,0 +170764977747,215,0 +170764977795,215,0 +170764977843,215,0 +170764977892,215,0 +170764977940,215,0 +170764977988,215,0 +170764978036,216,0 +170764978085,216,0 +170764978133,216,0 +170764978181,214,0 +170764978230,214,0 +170764978280,214,0 +170764978328,214,0 +170764978375,214,0 +170764978423,214,0 +170764978473,214,0 +170764978521,215,0 +170764978570,215,0 +170764978620,215,0 +170764978668,215,0 +170764978716,215,0 +170764978764,215,0 +170764978811,215,0 +170764978859,216,0 +170764978907,215,0 +170764978955,216,0 +170764979003,214,0 +170764979051,214,0 +170764979099,214,0 +170764979147,214,0 +170764979195,214,0 +170764979243,214,0 +170764979291,215,0 +170764979340,215,0 +170764979390,215,0 +170764979438,215,0 +170764979486,215,0 +170764979533,216,0 +170764979581,216,0 +170764979629,216,0 +170764979677,216,0 +170764979725,216,0 +170764979774,214,0 +170764979822,214,0 +170764979870,214,0 +170764979918,214,0 +170764979965,214,0 +170764980013,214,0 +170764980061,215,0 +170764980109,215,0 +170764980157,215,0 +170764980206,215,0 +170764980254,215,0 +170764980302,216,0 +170764980350,216,0 +170764980398,216,0 +170764980445,216,0 +170764980495,216,0 +170764980543,216,0 +170764980592,215,0 +170764980640,214,0 +170764980689,215,0 +170764980737,215,0 +170764980785,215,0 +170764980833,215,0 +170764980881,215,0 +170764980929,215,0 +170764980978,216,0 +170764981026,216,0 +170764981073,216,0 +170764981121,216,0 +170764981171,216,0 +170764981219,217,0 +170764981266,217,0 +170764981314,216,0 +170764981362,215,0 +170764981410,215,0 +170764981458,214,0 +170764981506,215,0 +170764981553,215,0 +170764981601,215,0 +170764981651,215,0 +170764981698,215,0 +170764981746,215,0 +170764981796,215,0 +170764981843,216,0 +170764981891,216,0 +170764981939,216,0 +170764981987,216,0 +170764982035,216,0 +170764982083,216,0 +170764982131,216,0 +170764982179,214,0 +170764982228,214,0 +170764982276,214,0 +170764982324,214,0 +170764982372,215,0 +170764982421,215,0 +170764982469,215,0 +170764982517,215,0 +170764982565,215,0 +170764982613,216,0 +170764982661,215,0 +170764982708,216,0 +170764982758,216,0 +170764982806,216,0 +170764982855,216,0 +170764982903,216,0 +170764982953,216,0 +170764983001,214,0 +170764983048,214,0 +170764983096,215,0 +170764983144,215,0 +170764983192,215,0 +170764983240,215,0 +170764983288,215,0 +170764983336,216,0 +170764983384,216,0 +170764983433,216,0 +170764983483,216,0 +170764983530,216,0 +170764983578,216,0 +170764983626,216,0 +170764983674,216,0 +170764983722,216,0 +170764983770,215,0 +170764983818,214,0 +170764983866,214,0 +170764983913,214,0 +170764983961,215,0 +170764984009,215,0 +170764984057,215,0 +170764984105,215,0 +170764984153,215,0 +170764984201,216,0 +170764984250,216,0 +170764984300,216,0 +170764984348,216,0 +170764984396,216,0 +170764984444,216,0 +170764984492,216,0 +170764984540,216,0 +170764984589,214,0 +170764984639,214,0 +170764984688,214,0 +170764984736,214,0 +170764984784,215,0 +170764984833,215,0 +170764984881,215,0 +170764984931,214,0 +170764984979,215,0 +170764985027,215,0 +170764985075,215,0 +170764985124,215,0 +170764985172,215,0 +170764985220,216,0 +170764985267,216,0 +170764985315,216,0 +170764985363,216,0 +170764985411,214,0 +170764985459,214,0 +170764985507,214,0 +170764985554,214,0 +170764985602,214,0 +170764985652,215,0 +170764985700,215,0 +170764985747,215,0 +170764985797,216,0 +170764985845,215,0 +170764985894,215,0 +170764985942,216,0 +170764985990,216,0 +170764986039,216,0 +170764986087,216,0 +170764986135,216,0 +170764986184,215,0 +170764986232,214,0 +170764986282,214,0 +170764986329,214,0 +170764986377,214,0 +170764986427,214,0 +170764986475,214,0 +170764986522,215,0 +170764986570,215,0 +170764986620,215,0 +170764986668,215,0 +170764986717,215,0 +170764986765,216,0 +170764986813,216,0 +170764986862,216,0 +170764986910,215,0 +170764986958,216,0 +170764987005,214,0 +170764987053,214,0 +170764987101,214,0 +170764987149,214,0 +170764987197,214,0 +170764987244,214,0 +170764987292,214,0 +170764987340,215,0 +170764987388,215,0 +170764987436,215,0 +170764987483,215,0 +170764987533,215,0 +170764987581,216,0 +170764987628,216,0 +170764987676,216,0 +170764987724,216,0 +170764987772,215,0 +170764987820,214,0 +170764987868,214,0 +170764987917,214,0 +170764987965,215,0 +170764988013,215,0 +170764988061,215,0 +170764988109,215,0 +170764988156,215,0 +170764988204,216,0 +170764988252,216,0 +170764988300,216,0 +170764988348,216,0 +170764988396,216,0 +170764988444,216,0 +170764988491,216,0 +170764988539,216,0 +170764988587,215,0 +170764988635,214,0 +170764988683,214,0 +170764988731,215,0 +170764988779,215,0 +170764988828,215,0 +170764988877,215,0 +170764988925,215,0 +170764988975,216,0 +170764989024,215,0 +170764989072,216,0 +170764989120,216,0 +170764989168,216,0 +170764989217,216,0 +170764989265,215,0 +170764989313,215,0 +170764989360,216,0 +170764989408,214,0 +170764989456,214,0 +170764989504,214,0 +170764989552,214,0 +170764989601,215,0 +170764989649,215,0 +170764989696,214,0 +170764989744,215,0 +170764989792,215,0 +170764989840,215,0 +170764989890,216,0 +170764989937,216,0 +170764989987,216,0 +170764990035,215,0 +170764990082,216,0 +170764990130,216,0 +170764990178,215,0 +170764990226,214,0 +170764990274,214,0 +170764990321,214,0 +170764990369,214,0 +170764990419,214,0 +170764990466,215,0 +170764990514,215,0 +170764990562,215,0 +170764990610,215,0 +170764990658,215,0 +170764990706,215,0 +170764990753,215,0 +170764990801,215,0 +170764990851,216,0 +170764990898,216,0 +170764990946,216,0 +170764990994,215,0 +170764991042,214,0 +170764991090,214,0 +170764991138,215,0 +170764991186,215,0 +170764991233,215,0 +170764991281,215,0 +170764991329,215,0 +170764991377,215,0 +170764991425,216,0 +170764991472,215,0 +170764991520,215,0 +170764991568,216,0 +170764991616,216,0 +170764991664,216,0 +170764991712,216,0 +170764991760,216,0 +170764991807,215,0 +170764991855,214,0 +170764991903,215,0 +170764991951,215,0 +170764991999,215,0 +170764992046,215,0 +170764992096,215,0 +170764992144,215,0 +170764992191,216,0 +170764992239,216,0 +170764992287,216,0 +170764992335,216,0 +170764992384,216,0 +170764992432,216,0 +170764992480,216,0 +170764992528,216,0 +170764992576,216,0 +170764992624,215,0 +170764992672,215,0 +170764992721,215,0 +170764992769,216,0 +170764992817,216,0 +170764992865,216,0 +170764992912,216,0 +170764992960,216,0 +170764993008,216,0 +170764993056,216,0 +170764993105,217,0 +170764993153,216,0 +170764993201,216,0 +170764993249,216,0 +170764993296,216,0 +170764993346,216,0 +170764993394,216,0 +170764993442,215,0 +170764993491,215,0 +170764993541,215,0 +170764993589,215,0 +170764993638,215,0 +170764993688,215,0 +170764993735,216,0 +170764993783,216,0 +170764993833,216,0 +170764993881,216,0 +170764993930,216,0 +170764993978,216,0 +170764994026,216,0 +170764994074,216,0 +170764994122,216,0 +170764994171,215,0 +170764994219,214,0 +170764994267,214,0 +170764994315,214,0 +170764994365,214,0 +170764994413,214,0 +170764994461,215,0 +170764994509,215,0 +170764994558,215,0 +170764994608,215,0 +170764994656,215,0 +170764994705,216,0 +170764994753,216,0 +170764994801,215,0 +170764994851,216,0 +170764994898,216,0 +170764994946,216,0 +170764994994,216,0 +170764995042,214,0 +170764995090,214,0 +170764995140,214,0 +170764995189,214,0 +170764995239,215,0 +170764995288,215,0 +170764995338,215,0 +170764995386,215,0 +170764995435,215,0 +170764995485,216,0 +170764995533,216,0 +170764995581,215,0 +170764995630,216,0 +170764995678,216,0 +170764995726,216,0 +170764995774,216,0 +170764995824,214,0 +170764995872,214,0 +170764995919,214,0 +170764995967,214,0 +170764996015,215,0 +170764996065,215,0 +170764996113,215,0 +170764996160,215,0 +170764996210,215,0 +170764996259,215,0 +170764996309,216,0 +170764996357,216,0 +170764996404,216,0 +170764996452,216,0 +170764996502,216,0 +170764996550,216,0 +170764996597,215,0 +170764996647,214,0 +170764996695,214,0 +170764996743,214,0 +170764996792,214,0 +170764996840,214,0 +170764996888,215,0 +170764996937,215,0 +170764996985,215,0 +170764997033,215,0 +170764997081,215,0 +170764997129,216,0 +170764997177,215,0 +170764997226,216,0 +170764997274,216,0 +170764997323,216,0 +170764997371,216,0 +170764997419,214,0 +170764997468,213,0 +170764997516,213,0 +170764997566,213,0 +170764997613,213,0 +170764997661,214,0 +170764997709,214,0 +170764997757,214,0 +170764997805,214,0 +170764997854,214,0 +170764997902,214,0 +170764997952,215,0 +170764998000,215,0 +170764998048,215,0 +170764998096,215,0 +170764998145,215,0 +170764998194,216,0 +170764998244,214,0 +170764998292,214,0 +170764998341,214,0 +170764998389,214,0 +170764998437,214,0 +170764998487,215,0 +170764998535,214,0 +170764998583,215,0 +170764998630,215,0 +170764998678,215,0 +170764998728,216,0 +170764998776,216,0 +170764998824,214,0 +170764998871,216,0 +170764998921,216,0 +170764998969,216,0 +170764999018,215,0 +170764999066,214,0 +170764999114,214,0 +170764999164,214,0 +170764999212,215,0 +170764999259,215,0 +170764999307,215,0 +170764999355,215,0 +170764999403,215,0 +170764999451,216,0 +170764999498,216,0 +170764999546,216,0 +170764999594,216,0 +170764999642,216,0 +170764999690,216,0 +170764999738,216,0 +170764999786,216,0 +170764999833,214,0 +170764999881,214,0 +170764999929,215,0 +170764999977,215,0 +170765000025,215,0 +170765000072,215,0 +170765000122,215,0 +170765000170,215,0 +170765000219,216,0 +170765000269,216,0 +170765000318,216,0 +170765000366,216,0 +170765000414,216,0 +170765000462,216,0 +170765000509,216,0 +170765000557,216,0 +170765000605,216,0 +170765000653,215,0 +170765000702,215,0 +170765000750,215,0 +170765000798,215,0 +170765000846,216,0 +170765000894,216,0 +170765000942,216,0 +170765000990,216,0 +170765001038,216,0 +170765001087,216,0 +170765001135,216,0 +170765001184,216,0 +170765001234,216,0 +170765001282,216,0 +170765001330,216,0 +170765001378,216,0 +170765001425,215,0 +170765001473,215,0 +170765001523,215,0 +170765001570,215,0 +170765001620,216,0 +170765001668,215,0 +170765001717,216,0 +170765001765,216,0 +170765001813,216,0 +170765001863,216,0 +170765001911,216,0 +170765001960,216,0 +170765002010,216,0 +170765002058,216,0 +170765002105,216,0 +170765002153,216,0 +170765002203,216,0 +170765002251,214,0 +170765002299,215,0 +170765002347,215,0 +170765002394,215,0 +170765002442,215,0 +170765002492,215,0 +170765002539,215,0 +170765002587,216,0 +170765002635,216,0 +170765002684,216,0 +170765002732,216,0 +170765002780,216,0 +170765002828,216,0 +170765002876,215,0 +170765002925,216,0 +170765002973,216,0 +170765003021,214,0 +170765003069,215,0 +170765003117,215,0 +170765003164,215,0 +170765003212,215,0 +170765003260,215,0 +170765003308,215,0 +170765003356,215,0 +170765003403,215,0 +170765003451,215,0 +170765003501,216,0 +170765003549,216,0 +170765003596,216,0 +170765003644,216,0 +170765003692,216,0 +170765003740,216,0 +170765003789,216,0 +170765003839,215,0 +170765003888,214,0 +170765003936,214,0 +170765003984,215,0 +170765004032,215,0 +170765004082,215,0 +170765004131,215,0 +170765004179,215,0 +170765004227,215,0 +170765004275,215,0 +170765004324,216,0 +170765004372,216,0 +170765004420,216,0 +170765004468,215,0 +170765004516,216,0 +170765004564,216,0 +170765004614,215,0 +170765004663,215,0 +170765004711,215,0 +170765004759,215,0 +170765004808,215,0 +170765004856,215,0 +170765004906,215,0 +170765004954,216,0 +170765005002,215,0 +170765005049,216,0 +170765005099,216,0 +170765005147,216,0 +170765005195,216,0 +170765005243,216,0 +170765005290,216,0 +170765005340,216,0 +170765005389,216,0 +170765005439,214,0 +170765005487,215,0 +170765005535,215,0 +170765005583,215,0 +170765005631,215,0 +170765005679,215,0 +170765005726,215,0 +170765005774,216,0 +170765005824,216,0 +170765005872,216,0 +170765005920,216,0 +170765005968,216,0 +170765006016,216,0 +170765006065,216,0 +170765006113,216,0 +170765006161,216,0 +170765006209,215,0 +170765006259,214,0 +170765006307,214,0 +170765006354,214,0 +170765006402,214,0 +170765006450,214,0 +170765006498,215,0 +170765006546,215,0 +170765006594,215,0 +170765006642,215,0 +170765006690,215,0 +170765006739,216,0 +170765006787,216,0 +170765006835,216,0 +170765006885,216,0 +170765006933,216,0 +170765006981,216,0 +170765007030,214,0 +170765007078,213,0 +170765007126,214,0 +170765007175,214,0 +170765007223,214,0 +170765007271,214,0 +170765007319,215,0 +170765007367,215,0 +170765007415,214,0 +170765007465,215,0 +170765007514,216,0 +170765007564,216,0 +170765007612,216,0 +170765007661,216,0 +170765007711,216,0 +170765007758,216,0 +170765007806,216,0 +170765007854,213,0 +170765007902,213,0 +170765007950,214,0 +170765007998,214,0 +170765008046,214,0 +170765008094,214,0 +170765008143,214,0 +170765008193,214,0 +170765008241,214,0 +170765008290,214,0 +170765008340,215,0 +170765008389,215,0 +170765008437,216,0 +170765008487,216,0 +170765008535,216,0 +170765008582,215,0 +170765008630,214,0 +170765008680,214,0 +170765008728,214,0 +170765008775,214,0 +170765008823,214,0 +170765008871,215,0 +170765008919,215,0 +170765008967,215,0 +170765009016,215,0 +170765009064,215,0 +170765009112,215,0 +170765009160,215,0 +170765009207,216,0 +170765009255,216,0 +170765009303,215,0 +170765009353,216,0 +170765009401,216,0 +170765009450,214,0 +170765009498,214,0 +170765009546,214,0 +170765009595,214,0 +170765009643,215,0 +170765009693,214,0 +170765009742,215,0 +170765009790,215,0 +170765009838,215,0 +170765009886,216,0 +170765009934,215,0 +170765009982,215,0 +170765010031,216,0 +170765010081,216,0 +170765010129,216,0 +170765010177,216,0 +170765010225,215,0 +170765010273,214,0 +170765010321,214,0 +170765010370,214,0 +170765010419,214,0 +170765010469,215,0 +170765010517,215,0 +170765010566,215,0 +170765010616,215,0 +170765010665,215,0 +170765010715,215,0 +170765010764,216,0 +170765010812,216,0 +170765010860,215,0 +170765010908,216,0 +170765010956,216,0 +170765011004,216,0 +170765011052,214,0 +170765011102,214,0 +170765011150,214,0 +170765011198,215,0 +170765011247,214,0 +170765011295,215,0 +170765011343,215,0 +170765011391,215,0 +170765011439,215,0 +170765011488,216,0 +170765011536,216,0 +170765011584,216,0 +170765011632,216,0 +170765011680,216,0 +170765011728,216,0 +170765011776,216,0 +170765011824,216,0 +170765011872,214,0 +170765011920,214,0 +170765011969,215,0 +170765012017,215,0 +170765012065,215,0 +170765012113,215,0 +170765012161,215,0 +170765012210,216,0 +170765012258,216,0 +170765012306,216,0 +170765012356,216,0 +170765012405,216,0 +170765012455,216,0 +170765012504,216,0 +170765012552,216,0 +170765012602,216,0 +170765012650,215,0 +170765012699,215,0 +170765012747,215,0 +170765012795,215,0 +170765012843,215,0 +170765012891,215,0 +170765012939,216,0 +170765012988,216,0 +170765013036,216,0 +170765013084,216,0 +170765013132,216,0 +170765013180,216,0 +170765013228,216,0 +170765013277,216,0 +170765013325,216,0 +170765013373,216,0 +170765013421,216,0 +170765013469,215,0 +170765013517,215,0 +170765013567,215,0 +170765013616,215,0 +170765013664,215,0 +170765013714,216,0 +170765013762,216,0 +170765013810,216,0 +170765013857,216,0 +170765013907,216,0 +170765013955,216,0 +170765014003,216,0 +170765014050,216,0 +170765014098,216,0 +170765014148,216,0 +170765014196,216,0 +170765014243,214,0 +170765014291,214,0 +170765014339,214,0 +170765014387,214,0 +170765014437,214,0 +170765014486,215,0 +170765014534,215,0 +170765014582,215,0 +170765014630,215,0 +170765014678,215,0 +170765014726,215,0 +170765014775,215,0 +170765014823,216,0 +170765014871,216,0 +170765014919,216,0 +170765014967,216,0 +170765015015,216,0 +170765015063,214,0 +170765015112,214,0 +170765015162,214,0 +170765015210,214,0 +170765015258,214,0 +170765015306,215,0 +170765015353,215,0 +170765015401,215,0 +170765015449,215,0 +170765015497,215,0 +170765015545,216,0 +170765015595,216,0 +170765015642,216,0 +170765015690,216,0 +170765015738,216,0 +170765015786,216,0 +170765015834,215,0 +170765015882,214,0 +170765015929,214,0 +170765015977,214,0 +170765016025,214,0 +170765016073,215,0 +170765016121,215,0 +170765016169,215,0 +170765016216,215,0 +170765016264,216,0 +170765016312,216,0 +170765016360,216,0 +170765016408,216,0 +170765016457,216,0 +170765016505,216,0 +170765016553,216,0 +170765016601,216,0 +170765016649,215,0 +170765016698,214,0 +170765016746,214,0 +170765016794,215,0 +170765016842,215,0 +170765016890,215,0 +170765016938,215,0 +170765016986,215,0 +170765017034,215,0 +170765017082,216,0 +170765017130,216,0 +170765017178,216,0 +170765017226,216,0 +170765017274,216,0 +170765017323,216,0 +170765017371,216,0 +170765017420,216,0 +170765017468,215,0 +170765017516,215,0 +170765017564,215,0 +170765017612,215,0 +170765017660,216,0 +170765017708,216,0 +170765017757,216,0 +170765017807,216,0 +170765017855,216,0 +170765017904,216,0 +170765017952,216,0 +170765018000,216,0 +170765018048,216,0 +170765018096,216,0 +170765018144,216,0 +170765018191,216,0 +170765018239,215,0 +170765018287,215,0 +170765018335,215,0 +170765018383,215,0 +170765018431,215,0 +170765018478,215,0 +170765018526,215,0 +170765018574,216,0 +170765018622,216,0 +170765018670,216,0 +170765018718,216,0 +170765018765,216,0 +170765018813,216,0 +170765018861,216,0 +170765018911,216,0 +170765018959,216,0 +170765019006,216,0 +170765019054,215,0 +170765019102,214,0 +170765019150,214,0 +170765019199,216,0 +170765019247,215,0 +170765019295,215,0 +170765019343,215,0 +170765019391,215,0 +170765019439,216,0 +170765019487,216,0 +170765019534,216,0 +170765019582,216,0 +170765019630,216,0 +170765019678,216,0 +170765019726,216,0 +170765019774,216,0 +170765019823,216,0 +170765019871,214,0 +170765019919,214,0 +170765019967,214,0 +170765020016,214,0 +170765020064,214,0 +170765020112,215,0 +170765020160,215,0 +170765020208,215,0 +170765020256,215,0 +170765020304,216,0 +170765020352,216,0 +170765020401,216,0 +170765020451,216,0 +170765020500,216,0 +170765020548,216,0 +170765020596,216,0 +170765020644,214,0 +170765020694,213,0 +170765020742,214,0 +170765020791,214,0 +170765020839,214,0 +170765020888,215,0 +170765020938,215,0 +170765020986,215,0 +170765021034,215,0 +170765021083,215,0 +170765021133,215,0 +170765021181,215,0 +170765021230,216,0 +170765021278,215,0 +170765021326,216,0 +170765021374,216,0 +170765021423,215,0 +170765021473,214,0 +170765021522,214,0 +170765021572,214,0 +170765021620,214,0 +170765021668,215,0 +170765021716,215,0 +170765021765,215,0 +170765021813,216,0 +170765021861,216,0 +170765021909,216,0 +170765021956,216,0 +170765022004,216,0 +170765022054,215,0 +170765022102,216,0 +170765022150,216,0 +170765022197,216,0 +170765022245,215,0 +170765022293,214,0 +170765022341,214,0 +170765022389,214,0 +170765022437,214,0 +170765022485,214,0 +170765022534,215,0 +170765022583,215,0 +170765022631,215,0 +170765022679,216,0 +170765022727,216,0 +170765022775,216,0 +170765022822,216,0 +170765022870,216,0 +170765022920,216,0 +170765022968,216,0 +170765023016,216,0 +170765023063,214,0 +170765023111,214,0 +170765023159,214,0 +170765023207,214,0 +170765023255,214,0 +170765023303,214,0 +170765023350,214,0 +170765023398,215,0 +170765023446,215,0 +170765023494,216,0 +170765023541,215,0 +170765023589,216,0 +170765023639,216,0 +170765023687,216,0 +170765023734,215,0 +170765023784,216,0 +170765023832,215,0 +170765023880,214,0 +170765023929,213,0 +170765023979,214,0 +170765024027,214,0 +170765024074,214,0 +170765024124,214,0 +170765024172,215,0 +170765024221,215,0 +170765024269,215,0 +170765024317,215,0 +170765024365,215,0 +170765024414,215,0 +170765024462,216,0 +170765024510,216,0 +170765024559,216,0 +170765024607,215,0 +170765024655,214,0 +170765024703,214,0 +170765024753,214,0 +170765024802,214,0 +170765024850,214,0 +170765024899,215,0 +170765024947,215,0 +170765024997,215,0 +170765025045,215,0 +170765025093,216,0 +170765025141,216,0 +170765025190,216,0 +170765025238,216,0 +170765025287,216,0 +170765025335,216,0 +170765025383,215,0 +170765025433,216,0 +170765025482,214,0 +170765025532,215,0 +170765025580,214,0 +170765025628,215,0 +170765025676,215,0 +170765025725,216,0 +170765025773,215,0 +170765025823,216,0 +170765025871,216,0 +170765025919,216,0 +170765025966,216,0 +170765026014,216,0 +170765026062,216,0 +170765026112,216,0 +170765026160,216,0 +170765026208,216,0 +170765026257,214,0 +170765026305,214,0 +170765026355,214,0 +170765026402,214,0 +170765026450,214,0 +170765026498,215,0 +170765026546,215,0 +170765026594,215,0 +170765026642,215,0 +170765026690,215,0 +170765026738,215,0 +170765026786,215,0 +170765026834,215,0 +170765026882,215,0 +170765026930,216,0 +170765026977,215,0 +170765027025,215,0 +170765027075,214,0 +170765027124,214,0 +170765027172,214,0 +170765027220,214,0 +170765027270,214,0 +170765027319,214,0 +170765027367,214,0 +170765027415,215,0 +170765027465,215,0 +170765027514,215,0 +170765027564,215,0 +170765027612,215,0 +170765027659,215,0 +170765027707,215,0 +170765027755,216,0 +170765027805,216,0 +170765027853,215,0 +170765027902,214,0 +170765027951,214,0 +170765027999,214,0 +170765028047,214,0 +170765028097,214,0 +170765028145,215,0 +170765028192,215,0 +170765028240,215,0 +170765028288,215,0 +170765028336,215,0 +170765028384,215,0 +170765028434,215,0 +170765028482,216,0 +170765028531,216,0 +170765028581,216,0 +170765028629,215,0 +170765028678,214,0 +170765028728,214,0 +170765028776,214,0 +170765028824,215,0 +170765028871,215,0 +170765028919,215,0 +170765028967,215,0 +170765029017,215,0 +170765029066,215,0 +170765029114,216,0 +170765029164,216,0 +170765029212,216,0 +170765029259,216,0 +170765029307,216,0 +170765029355,216,0 +170765029405,216,0 +170765029453,215,0 +170765029500,214,0 +170765029548,215,0 +170765029596,215,0 +170765029644,215,0 +170765029692,215,0 +170765029740,215,0 +170765029789,215,0 +170765029837,216,0 +170765029885,215,0 +170765029933,216,0 +170765029981,216,0 +170765030028,216,0 +170765030076,216,0 +170765030124,216,0 +170765030172,216,0 +170765030220,216,0 +170765030270,214,0 +170765030319,214,0 +170765030367,214,0 +170765030415,215,0 +170765030464,215,0 +170765030512,214,0 +170765030560,215,0 +170765030610,215,0 +170765030659,215,0 +170765030707,215,0 +170765030757,216,0 +170765030805,216,0 +170765030852,216,0 +170765030902,216,0 +170765030950,216,0 +170765030998,216,0 +170765031046,215,0 +170765031095,214,0 +170765031143,214,0 +170765031191,214,0 +170765031239,214,0 +170765031288,214,0 +170765031336,215,0 +170765031384,215,0 +170765031432,215,0 +170765031481,215,0 +170765031529,215,0 +170765031577,216,0 +170765031625,216,0 +170765031672,216,0 +170765031720,216,0 +170765031768,215,0 +170765031816,215,0 +170765031864,214,0 +170765031911,214,0 +170765031959,214,0 +170765032007,214,0 +170765032055,214,0 +170765032103,215,0 +170765032151,215,0 +170765032199,215,0 +170765032246,215,0 +170765032294,215,0 +170765032342,215,0 +170765032390,216,0 +170765032438,215,0 +170765032486,216,0 +170765032535,216,0 +170765032583,216,0 +170765032632,215,0 +170765032680,214,0 +170765032728,214,0 +170765032776,214,0 +170765032824,215,0 +170765032872,215,0 +170765032920,215,0 +170765032968,215,0 +170765033015,215,0 +170765033063,215,0 +170765033111,215,0 +170765033159,216,0 +170765033207,216,0 +170765033254,215,0 +170765033302,216,0 +170765033350,216,0 +170765033398,216,0 +170765033445,216,0 +170765033493,214,0 +170765033543,214,0 +170765033591,214,0 +170765033640,215,0 +170765033688,215,0 +170765033737,215,0 +170765033785,215,0 +170765033833,215,0 +170765033883,215,0 +170765033931,215,0 +170765033980,216,0 +170765034030,216,0 +170765034077,216,0 +170765034125,216,0 +170765034173,216,0 +170765034221,216,0 +170765034269,214,0 +170765034318,214,0 +170765034366,214,0 +170765034414,215,0 +170765034462,215,0 +170765034509,214,0 +170765034557,215,0 +170765034605,215,0 +170765034653,216,0 +170765034701,216,0 +170765034749,216,0 +170765034798,216,0 +170765034846,216,0 +170765034894,216,0 +170765034941,216,0 +170765034989,216,0 +170765035037,215,0 +170765035085,214,0 +170765035133,214,0 +170765035180,214,0 +170765035228,214,0 +170765035276,214,0 +170765035324,214,0 +170765035372,215,0 +170765035420,215,0 +170765035468,215,0 +170765035516,215,0 +170765035563,215,0 +170765035611,216,0 +170765035660,216,0 +170765035708,216,0 +170765035756,216,0 +170765035804,215,0 +170765035852,215,0 +170765035901,213,0 +170765035949,213,0 +170765035997,214,0 +170765036047,214,0 +170765036096,214,0 +170765036144,214,0 +170765036192,215,0 +170765036239,214,0 +170765036287,215,0 +170765036337,215,0 +170765036385,215,0 +170765036434,215,0 +170765036482,215,0 +170765036530,216,0 +170765036578,215,0 +170765036628,216,0 +170765036675,214,0 +170765036723,214,0 +170765036773,214,0 +170765036821,214,0 +170765036870,214,0 +170765036918,214,0 +170765036966,214,0 +170765037016,214,0 +170765037064,214,0 +170765037113,215,0 +170765037161,215,0 +170765037211,215,0 +170765037260,215,0 +170765037308,216,0 +170765037356,216,0 +170765037405,216,0 +170765037453,216,0 +170765037503,214,0 +170765037552,214,0 +170765037600,214,0 +170765037650,214,0 +170765037698,214,0 +170765037746,215,0 +170765037795,215,0 +170765037843,215,0 +170765037892,215,0 +170765037942,215,0 +170765037990,216,0 +170765038038,216,0 +170765038086,216,0 +170765038135,216,0 +170765038183,216,0 +170765038231,216,0 +170765038280,214,0 +170765038328,214,0 +170765038376,214,0 +170765038424,214,0 +170765038472,214,0 +170765038520,215,0 +170765038569,215,0 +170765038617,215,0 +170765038665,215,0 +170765038715,215,0 +170765038764,215,0 +170765038812,215,0 +170765038860,215,0 +170765038908,216,0 +170765038958,216,0 +170765039006,215,0 +170765039054,216,0 +170765039102,214,0 +170765039151,214,0 +170765039200,214,0 +170765039248,214,0 +170765039298,214,0 +170765039346,214,0 +170765039394,214,0 +170765039442,214,0 +170765039490,214,0 +170765039539,215,0 +170765039587,215,0 +170765039635,215,0 +170765039683,215,0 +170765039731,215,0 +170765039780,216,0 +170765039828,216,0 +170765039876,214,0 +170765039924,213,0 +170765039972,214,0 +170765040020,214,0 +170765040068,214,0 +170765040116,214,0 +170765040164,214,0 +170765040213,214,0 +170765040263,214,0 +170765040312,215,0 +170765040360,215,0 +170765040408,215,0 +170765040456,215,0 +170765040504,215,0 +170765040554,215,0 +170765040601,215,0 +170765040649,215,0 +170765040699,216,0 +170765040748,216,0 +170765040796,216,0 +170765040846,216,0 +170765040895,216,0 +170765040943,216,0 +170765040992,216,0 +170765041040,215,0 +170765041090,215,0 +170765041138,214,0 +170765041187,215,0 +170765041235,215,0 +170765041283,215,0 +170765041331,215,0 +170765041379,215,0 +170765041427,215,0 +170765041476,216,0 +170765041524,216,0 +170765041574,216,0 +170765041621,216,0 +170765041671,216,0 +170765041719,216,0 +170765041768,216,0 +170765041818,215,0 +170765041866,215,0 +170765041914,215,0 +170765041963,215,0 +170765042011,215,0 +170765042060,216,0 +170765042110,216,0 +170765042159,216,0 +170765042207,216,0 +170765042255,216,0 +170765042305,216,0 +170765042352,217,0 +170765042400,216,0 +170765042450,216,0 +170765042498,216,0 +170765042547,216,0 +170765042595,216,0 +170765042643,216,0 +170765042691,215,0 +170765042739,215,0 +170765042787,215,0 +170765042836,215,0 +170765042884,215,0 +170765042934,216,0 +170765042983,216,0 +170765043033,216,0 +170765043080,216,0 +170765043130,216,0 +170765043179,216,0 +170765043227,216,0 +170765043275,216,0 +170765043323,216,0 +170765043373,216,0 +170765043421,215,0 +170765043471,215,0 +170765043519,214,0 +170765043567,214,0 +170765043614,214,0 +170765043664,214,0 +170765043713,214,0 +170765043761,215,0 +170765043809,215,0 +170765043857,215,0 +170765043905,215,0 +170765043954,215,0 +170765044004,216,0 +170765044052,216,0 +170765044100,216,0 +170765044149,216,0 +170765044197,216,0 +170765044245,215,0 +170765044293,214,0 +170765044341,214,0 +170765044389,214,0 +170765044438,214,0 +170765044488,214,0 +170765044535,214,0 +170765044583,215,0 +170765044631,215,0 +170765044679,215,0 +170765044729,215,0 +170765044777,215,0 +170765044825,215,0 +170765044874,216,0 +170765044924,216,0 +170765044971,216,0 +170765045021,216,0 +170765045069,215,0 +170765045118,214,0 +170765045166,214,0 +170765045214,214,0 +170765045262,214,0 +170765045310,214,0 +170765045358,214,0 +170765045406,215,0 +170765045454,215,0 +170765045503,215,0 +170765045551,215,0 +170765045599,216,0 +170765045647,216,0 +170765045695,216,0 +170765045743,216,0 +170765045792,216,0 +170765045840,216,0 +170765045888,214,0 +170765045938,214,0 +170765045985,214,0 +170765046033,214,0 +170765046083,214,0 +170765046131,214,0 +170765046180,214,0 +170765046228,214,0 +170765046276,215,0 +170765046325,215,0 +170765046375,215,0 +170765046424,216,0 +170765046472,216,0 +170765046522,216,0 +170765046569,216,0 +170765046619,215,0 +170765046667,215,0 +170765046716,213,0 +170765046764,213,0 +170765046814,213,0 +170765046861,214,0 +170765046911,214,0 +170765046959,214,0 +170765047007,214,0 +170765047055,215,0 +170765047102,215,0 +170765047152,215,0 +170765047200,215,0 +170765047248,215,0 +170765047296,216,0 +170765047344,216,0 +170765047393,216,0 +170765047441,215,0 +170765047489,214,0 +170765047537,213,0 +170765047585,214,0 +170765047634,214,0 +170765047682,213,0 +170765047731,214,0 +170765047779,214,0 +170765047827,214,0 +170765047875,214,0 +170765047923,215,0 +170765047971,215,0 +170765048019,215,0 +170765048068,215,0 +170765048116,215,0 +170765048166,215,0 +170765048213,216,0 +170765048263,216,0 +170765048311,214,0 +170765048359,214,0 +170765048408,214,0 +170765048456,214,0 +170765048504,214,0 +170765048553,215,0 +170765048603,215,0 +170765048652,215,0 +170765048700,215,0 +170765048748,215,0 +170765048798,215,0 +170765048846,215,0 +170765048894,216,0 +170765048942,215,0 +170765048991,216,0 +170765049039,215,0 +170765049088,215,0 +170765049138,214,0 +170765049187,214,0 +170765049235,215,0 +170765049283,215,0 +170765049331,215,0 +170765049380,215,0 +170765049428,215,0 +170765049476,216,0 +170765049524,216,0 +170765049572,216,0 +170765049620,216,0 +170765049668,216,0 +170765049717,216,0 +170765049765,216,0 +170765049814,216,0 +170765049864,216,0 +170765049913,215,0 +170765049961,215,0 +170765050011,215,0 +170765050058,215,0 +170765050106,215,0 +170765050154,215,0 +170765050202,216,0 +170765050250,215,0 +170765050298,216,0 +170765050347,216,0 +170765050395,216,0 +170765050443,216,0 +170765050492,216,0 +170765050542,216,0 +170765050590,216,0 +170765050638,216,0 +170765050686,216,0 +170765050735,215,0 +170765050785,215,0 +170765050833,215,0 +170765050881,216,0 +170765050928,216,0 +170765050978,216,0 +170765051026,216,0 +170765051074,216,0 +170765051122,216,0 +170765051170,216,0 +170765051218,216,0 +170765051267,216,0 +170765051315,216,0 +170765051363,216,0 +170765051411,216,0 +170765051459,216,0 +170765051508,214,0 +170765051558,214,0 +170765051606,214,0 +170765051654,215,0 +170765051703,215,0 +170765051751,215,0 +170765051799,215,0 +170765051847,215,0 +170765051895,215,0 +170765051943,215,0 +170765051991,216,0 +170765052040,216,0 +170765052088,217,0 +170765052138,216,0 +170765052187,216,0 +170765052237,215,0 +170765052286,215,0 +170765052334,214,0 +170765052384,214,0 +170765052432,215,0 +170765052480,215,0 +170765052529,215,0 +170765052577,215,0 +170765052625,215,0 +170765052673,215,0 +170765052722,215,0 +170765052772,215,0 +170765052821,215,0 +170765052869,216,0 +170765052919,216,0 +170765052967,216,0 +170765053015,216,0 +170765053064,215,0 +170765053112,214,0 +170765053162,214,0 +170765053209,214,0 +170765053259,214,0 +170765053309,215,0 +170765053357,215,0 +170765053406,215,0 +170765053454,215,0 +170765053502,215,0 +170765053550,216,0 +170765053598,216,0 +170765053647,216,0 +170765053695,216,0 +170765053743,216,0 +170765053791,216,0 +170765053839,216,0 +170765053887,215,0 +170765053935,214,0 +170765053985,214,0 +170765054032,214,0 +170765054082,215,0 +170765054130,215,0 +170765054178,215,0 +170765054226,215,0 +170765054274,215,0 +170765054321,216,0 +170765054369,216,0 +170765054417,216,0 +170765054465,216,0 +170765054513,216,0 +170765054563,216,0 +170765054611,216,0 +170765054659,216,0 +170765054708,214,0 +170765054756,214,0 +170765054806,215,0 +170765054855,215,0 +170765054905,215,0 +170765054953,215,0 +170765055001,215,0 +170765055048,215,0 +170765055096,216,0 +170765055144,216,0 +170765055192,216,0 +170765055240,216,0 +170765055288,216,0 +170765055337,216,0 +170765055387,216,0 +170765055435,216,0 +170765055483,215,0 +170765055532,214,0 +170765055580,214,0 +170765055630,214,0 +170765055678,214,0 +170765055726,215,0 +170765055775,215,0 +170765055823,215,0 +170765055871,215,0 +170765055919,216,0 +170765055967,215,0 +170765056015,215,0 +170765056062,216,0 +170765056112,215,0 +170765056160,216,0 +170765056208,216,0 +170765056255,216,0 +170765056305,215,0 +170765056354,214,0 +170765056402,214,0 +170765056450,214,0 +170765056498,214,0 +170765056546,214,0 +170765056593,215,0 +170765056641,215,0 +170765056689,215,0 +170765056737,215,0 +170765056785,215,0 +170765056833,216,0 +170765056881,215,0 +170765056928,215,0 +170765056976,216,0 +170765057024,216,0 +170765057072,216,0 +170765057121,213,0 +170765057171,214,0 +170765057219,214,0 +170765057267,214,0 +170765057315,214,0 +170765057363,214,0 +170765057412,215,0 +170765057461,215,0 +170765057509,216,0 +170765057557,215,0 +170765057607,216,0 +170765057655,216,0 +170765057702,216,0 +170765057750,216,0 +170765057798,216,0 +170765057846,215,0 +170765057895,216,0 +170765057943,214,0 +170765057991,214,0 +170765058041,214,0 +170765058089,215,0 +170765058136,215,0 +170765058184,215,0 +170765058232,215,0 +170765058280,215,0 +170765058328,215,0 +170765058376,216,0 +170765058424,216,0 +170765058471,215,0 +170765058519,216,0 +170765058567,216,0 +170765058617,216,0 +170765058665,216,0 +170765058712,215,0 +170765058760,214,0 +170765058810,214,0 +170765058858,214,0 +170765058906,214,0 +170765058954,214,0 +170765059002,215,0 +170765059051,215,0 +170765059099,215,0 +170765059148,215,0 +170765059196,217,0 +170765059246,215,0 +170765059294,216,0 +170765059342,216,0 +170765059390,215,0 +170765059437,216,0 +170765059487,216,0 +170765059535,214,0 +170765059582,213,0 +170765059630,214,0 +170765059678,214,0 +170765059726,214,0 +170765059774,214,0 +170765059822,215,0 +170765059869,215,0 +170765059917,215,0 +170765059965,215,0 +170765060014,215,0 +170765060062,216,0 +170765060110,216,0 +170765060158,215,0 +170765060206,216,0 +170765060254,216,0 +170765060302,216,0 +170765060349,214,0 +170765060397,214,0 +170765060445,214,0 +170765060493,214,0 +170765060541,214,0 +170765060589,215,0 +170765060637,215,0 +170765060685,215,0 +170765060733,215,0 +170765060782,215,0 +170765060830,215,0 +170765060878,215,0 +170765060928,215,0 +170765060976,215,0 +170765061025,216,0 +170765061073,216,0 +170765061122,215,0 +170765061172,214,0 +170765061221,214,0 +170765061269,214,0 +170765061317,214,0 +170765061365,215,0 +170765061415,215,0 +170765061462,215,0 +170765061510,215,0 +170765061560,215,0 +170765061609,216,0 +170765061659,216,0 +170765061707,216,0 +170765061755,216,0 +170765061804,216,0 +170765061854,216,0 +170765061903,216,0 +170765061951,214,0 +170765061999,214,0 +170765062049,214,0 +170765062097,215,0 +170765062146,215,0 +170765062194,215,0 +170765062242,215,0 +170765062290,215,0 +170765062338,215,0 +170765062387,216,0 +170765062437,216,0 +170765062485,216,0 +170765062534,216,0 +170765062584,216,0 +170765062631,216,0 +170765062679,216,0 +170765062729,215,0 +170765062777,214,0 +170765062826,214,0 +170765062874,215,0 +170765062924,215,0 +170765062972,215,0 +170765063021,215,0 +170765063071,215,0 +170765063120,215,0 +170765063168,216,0 +170765063216,216,0 +170765063264,216,0 +170765063312,216,0 +170765063360,216,0 +170765063409,216,0 +170765063457,216,0 +170765063507,216,0 +170765063556,214,0 +170765063604,214,0 +170765063652,214,0 +170765063702,214,0 +170765063751,214,0 +170765063801,215,0 +170765063848,215,0 +170765063896,215,0 +170765063944,215,0 +170765063994,215,0 +170765064042,216,0 +170765064091,216,0 +170765064139,216,0 +170765064189,216,0 +170765064238,216,0 +170765064286,216,0 +170765064334,216,0 +170765064382,214,0 +170765064431,214,0 +170765064479,214,0 +170765064527,215,0 +170765064575,215,0 +170765064623,215,0 +170765064671,215,0 +170765064719,215,0 +170765064767,215,0 +170765064815,215,0 +170765064863,215,0 +170765064912,215,0 +170765064960,215,0 +170765065010,216,0 +170765065058,216,0 +170765065107,216,0 +170765065155,214,0 +170765065203,214,0 +170765065251,214,0 +170765065298,214,0 +170765065346,214,0 +170765065394,214,0 +170765065442,215,0 +170765065490,215,0 +170765065538,215,0 +170765065586,215,0 +170765065634,215,0 +170765065681,215,0 +170765065729,216,0 +170765065777,215,0 +170765065826,216,0 +170765065875,216,0 +170765065925,216,0 +170765065973,215,0 +170765066020,215,0 +170765066068,215,0 +170765066116,215,0 +170765066164,215,0 +170765066212,216,0 +170765066260,216,0 +170765066307,216,0 +170765066355,216,0 +170765066403,216,0 +170765066451,216,0 +170765066499,216,0 +170765066548,216,0 +170765066596,216,0 +170765066644,216,0 +170765066693,216,0 +170765066741,215,0 +170765066789,215,0 +170765066839,215,0 +170765066887,215,0 +170765066936,215,0 +170765066984,215,0 +170765067032,215,0 +170765067080,216,0 +170765067129,216,0 +170765067177,216,0 +170765067225,216,0 +170765067273,216,0 +170765067322,216,0 +170765067370,216,0 +170765067418,216,0 +170765067465,216,0 +170765067513,216,0 +170765067561,215,0 +170765067609,215,0 +170765067657,215,0 +170765067706,215,0 +170765067754,215,0 +170765067802,216,0 +170765067850,215,0 +170765067898,216,0 +170765067946,216,0 +170765067994,216,0 +170765068043,216,0 +170765068091,216,0 +170765068140,216,0 +170765068188,216,0 +170765068236,216,0 +170765068284,216,0 +170765068332,216,0 +170765068381,215,0 +170765068429,215,0 +170765068477,215,0 +170765068526,215,0 +170765068574,215,0 +170765068622,215,0 +170765068670,215,0 +170765068718,216,0 +170765068765,215,0 +170765068813,216,0 +170765068861,216,0 +170765068911,216,0 +170765068958,215,0 +170765069006,216,0 +170765069056,216,0 +170765069103,216,0 +170765069151,215,0 +170765069199,214,0 +170765069247,215,0 +170765069295,214,0 +170765069344,215,0 +170765069392,215,0 +170765069441,215,0 +170765069489,215,0 +170765069537,215,0 +170765069587,215,0 +170765069635,216,0 +170765069684,216,0 +170765069732,216,0 +170765069781,216,0 +170765069829,216,0 +170765069879,216,0 +170765069927,216,0 +170765069976,214,0 +170765070024,214,0 +170765070072,214,0 +170765070122,215,0 +170765070169,215,0 +170765070217,215,0 +170765070265,215,0 +170765070315,216,0 +170765070363,215,0 +170765070410,216,0 +170765070458,216,0 +170765070508,216,0 +170765070556,216,0 +170765070604,216,0 +170765070651,215,0 +170765070699,216,0 +170765070747,215,0 +170765070795,214,0 +170765070843,214,0 +170765070891,214,0 +170765070939,214,0 +170765070987,215,0 +170765071036,215,0 +170765071086,215,0 +170765071135,215,0 +170765071183,215,0 +170765071231,215,0 +170765071280,216,0 +170765071330,216,0 +170765071378,215,0 +170765071426,216,0 +170765071474,216,0 +170765071523,216,0 +170765071573,214,0 +170765071621,214,0 +170765071669,214,0 +170765071717,214,0 +170765071765,214,0 +170765071814,214,0 +170765071862,214,0 +170765071910,215,0 +170765071958,215,0 +170765072008,215,0 +170765072056,215,0 +170765072104,215,0 +170765072152,216,0 +170765072201,215,0 +170765072249,215,0 +170765072297,216,0 +170765072345,216,0 +170765072394,214,0 +170765072442,213,0 +170765072490,214,0 +170765072540,214,0 +170765072588,214,0 +170765072637,214,0 +170765072685,214,0 +170765072735,215,0 +170765072783,215,0 +170765072830,215,0 +170765072878,215,0 +170765072926,216,0 +170765072976,216,0 +170765073024,216,0 +170765073072,216,0 +170765073121,216,0 +170765073169,214,0 +170765073219,214,0 +170765073267,214,0 +170765073316,213,0 +170765073366,214,0 +170765073414,214,0 +170765073463,214,0 +170765073511,214,0 +170765073559,215,0 +170765073607,215,0 +170765073655,215,0 +170765073703,215,0 +170765073751,216,0 +170765073800,216,0 +170765073848,216,0 +170765073898,215,0 +170765073945,215,0 +170765073993,214,0 +170765074043,214,0 +170765074091,214,0 +170765074139,214,0 +170765074187,215,0 +170765074235,215,0 +170765074282,215,0 +170765074330,215,0 +170765074378,216,0 +170765074428,215,0 +170765074476,216,0 +170765074524,216,0 +170765074573,216,0 +170765074621,216,0 +170765074670,216,0 +170765074720,216,0 +170765074768,214,0 +170765074816,214,0 +170765074865,214,0 +170765074915,214,0 +170765074964,215,0 +170765075014,215,0 +170765075063,215,0 +170765075113,215,0 +170765075161,215,0 +170765075208,216,0 +170765075256,216,0 +170765075306,216,0 +170765075354,216,0 +170765075403,216,0 +170765075453,216,0 +170765075501,216,0 +170765075549,215,0 +170765075597,214,0 +170765075644,214,0 +170765075692,214,0 +170765075740,214,0 +170765075788,215,0 +170765075836,215,0 +170765075884,215,0 +170765075933,215,0 +170765075981,216,0 +170765076029,216,0 +170765076077,215,0 +170765076126,216,0 +170765076174,216,0 +170765076222,216,0 +170765076270,216,0 +170765076318,216,0 +170765076366,216,0 +170765076413,214,0 +170765076461,214,0 +170765076509,214,0 +170765076559,214,0 +170765076606,214,0 +170765076654,214,0 +170765076704,214,0 +170765076753,215,0 +170765076803,215,0 +170765076851,215,0 +170765076899,215,0 +170765076946,215,0 +170765076995,216,0 +170765077042,216,0 +170765077090,216,0 +170765077138,216,0 +170765077187,214,0 +170765077235,214,0 +170765077283,214,0 +170765077333,214,0 +170765077381,214,0 +170765077430,214,0 +170765077480,214,0 +170765077527,215,0 +170765077575,215,0 +170765077623,215,0 +170765077671,215,0 +170765077719,215,0 +170765077769,216,0 +170765077817,216,0 +170765077866,215,0 +170765077914,216,0 +170765077962,215,0 +170765078010,214,0 +170765078058,214,0 +170765078106,214,0 +170765078154,214,0 +170765078203,215,0 +170765078251,215,0 +170765078299,215,0 +170765078347,215,0 +170765078395,215,0 +170765078443,215,0 +170765078492,215,0 +170765078542,215,0 +170765078590,216,0 +170765078639,216,0 +170765078687,216,0 +170765078735,216,0 +170765078784,215,0 +170765078832,215,0 +170765078880,215,0 +170765078928,215,0 +170765078976,215,0 +170765079024,216,0 +170765079074,216,0 +170765079121,216,0 +170765079169,216,0 +170765079219,216,0 +170765079267,216,0 +170765079316,216,0 +170765079364,216,0 +170765079412,216,0 +170765079462,216,0 +170765079511,216,0 +170765079559,216,0 +170765079607,215,0 +170765079656,215,0 +170765079705,215,0 +170765079752,216,0 +170765079800,216,0 +170765079848,216,0 +170765079896,216,0 +170765079946,216,0 +170765079994,216,0 +170765080042,216,0 +170765080089,216,0 +170765080139,216,0 +170765080187,216,0 +170765080236,216,0 +170765080284,216,0 +170765080332,216,0 +170765080380,214,0 +170765080428,214,0 +170765080478,214,0 +170765080527,215,0 +170765080577,215,0 +170765080625,215,0 +170765080674,215,0 +170765080722,215,0 +170765080770,216,0 +170765080818,216,0 +170765080867,215,0 +170765080915,216,0 +170765080963,216,0 +170765081012,216,0 +170765081062,216,0 +170765081110,216,0 +170765081158,216,0 +170765081206,214,0 +170765081255,214,0 +170765081303,214,0 +170765081352,214,0 +170765081402,215,0 +170765081450,215,0 +170765081498,215,0 +170765081546,216,0 +170765081595,215,0 +170765081643,216,0 +170765081691,216,0 +170765081739,214,0 +170765081789,213,0 +170765081838,215,0 +170765081886,216,0 +170765081935,216,0 +170765081983,215,0 +170765082033,214,0 +170765082081,214,0 +170765082130,214,0 +170765082180,214,0 +170765082228,215,0 +170765082275,215,0 +170765082323,215,0 +170765082373,215,0 +170765082421,215,0 +170765082468,215,0 +170765082516,216,0 +170765082564,216,0 +170765082612,216,0 +170765082661,216,0 +170765082709,216,0 +170765082757,216,0 +170765082806,214,0 +170765082854,214,0 +170765082902,214,0 +170765082950,214,0 +170765082998,215,0 +170765083047,215,0 +170765083095,215,0 +170765083143,215,0 +170765083191,215,0 +170765083240,215,0 +170765083288,216,0 +170765083337,216,0 +170765083385,216,0 +170765083433,216,0 +170765083481,216,0 +170765083529,216,0 +170765083576,216,0 +170765083624,214,0 +170765083672,214,0 +170765083720,214,0 +170765083768,214,0 +170765083815,215,0 +170765083863,215,0 +170765083911,215,0 +170765083959,215,0 +170765084008,215,0 +170765084058,216,0 +170765084106,216,0 +170765084153,216,0 +170765084201,216,0 +170765084249,215,0 +170765084297,216,0 +170765084345,216,0 +170765084393,216,0 +170765084440,214,0 +170765084488,214,0 +170765084538,214,0 +170765084588,214,0 +170765084637,215,0 +170765084685,215,0 +170765084733,215,0 +170765084781,215,0 +170765084829,215,0 +170765084877,215,0 +170765084926,215,0 +170765084974,216,0 +170765085022,216,0 +170765085070,215,0 +170765085118,216,0 +170765085166,216,0 +170765085216,214,0 +170765085263,214,0 +170765085313,214,0 +170765085361,214,0 +170765085409,214,0 +170765085459,215,0 +170765085508,215,0 +170765085558,214,0 +170765085606,215,0 +170765085653,215,0 +170765085701,216,0 +170765085751,216,0 +170765085800,215,0 +170765085850,216,0 +170765085898,216,0 +170765085947,216,0 +170765085995,215,0 +170765086045,214,0 +170765086094,214,0 +170765086144,215,0 +170765086193,215,0 +170765086241,215,0 +170765086289,215,0 +170765086337,215,0 +170765086387,215,0 +170765086434,216,0 +170765086482,216,0 +170765086530,216,0 +170765086578,216,0 +170765086628,216,0 +170765086676,216,0 +170765086725,215,0 +170765086773,216,0 +170765086821,215,0 +170765086870,215,0 +170765086920,215,0 +170765086968,215,0 +170765087016,215,0 +170765087064,215,0 +170765087113,216,0 +170765087161,216,0 +170765087209,216,0 +170765087257,216,0 +170765087305,216,0 +170765087354,216,0 +170765087404,216,0 +170765087452,216,0 +170765087500,216,0 +170765087548,215,0 +170765087596,216,0 +170765087644,214,0 +170765087693,214,0 +170765087743,215,0 +170765087792,215,0 +170765087840,215,0 +170765087890,215,0 +170765087939,215,0 +170765087987,215,0 +170765088035,215,0 +170765088083,216,0 +170765088131,216,0 +170765088179,216,0 +170765088227,216,0 +170765088274,216,0 +170765088322,216,0 +170765088370,216,0 +170765088420,214,0 +170765088469,214,0 +170765088517,214,0 +170765088565,214,0 +170765088615,214,0 +170765088663,215,0 +170765088710,214,0 +170765088760,215,0 +170765088808,215,0 +170765088856,215,0 +170765088904,215,0 +170765088952,216,0 +170765088999,215,0 +170765089047,215,0 +170765089095,216,0 +170765089143,216,0 +170765089193,216,0 +170765089241,214,0 +170765089289,214,0 +170765089337,214,0 +170765089385,214,0 +170765089432,215,0 +170765089480,215,0 +170765089528,215,0 +170765089576,215,0 +170765089626,215,0 +170765089675,215,0 +170765089723,215,0 +170765089771,215,0 +170765089819,216,0 +170765089867,216,0 +170765089917,216,0 +170765089964,216,0 +170765090014,215,0 +170765090063,214,0 +170765090113,214,0 +170765090161,214,0 +170765090209,214,0 +170765090257,215,0 +170765090306,215,0 +170765090356,215,0 +170765090404,215,0 +170765090451,215,0 +170765090499,215,0 +170765090547,216,0 +170765090597,216,0 +170765090645,216,0 +170765090694,216,0 +170765090742,216,0 +170765090790,216,0 +170765090838,215,0 +170765090886,215,0 +170765090935,215,0 +170765090983,215,0 +170765091031,215,0 +170765091080,215,0 +170765091128,216,0 +170765091176,216,0 +170765091226,216,0 +170765091275,216,0 +170765091325,216,0 +170765091373,216,0 +170765091421,216,0 +170765091469,216,0 +170765091517,216,0 +170765091565,215,0 +170765091614,216,0 +170765091662,214,0 +170765091710,215,0 +170765091759,215,0 +170765091809,215,0 +170765091857,214,0 +170765091905,215,0 +170765091953,215,0 +170765092001,215,0 +170765092048,216,0 +170765092096,216,0 +170765092144,216,0 +170765092194,216,0 +170765092243,216,0 +170765092291,216,0 +170765092339,216,0 +170765092387,216,0 +170765092435,215,0 +170765092483,214,0 +170765092531,214,0 +170765092579,214,0 +170765092626,214,0 +170765092676,215,0 +170765092724,215,0 +170765092773,215,0 +170765092821,215,0 +170765092869,215,0 +170765092917,216,0 +170765092966,216,0 +170765093014,216,0 +170765093062,216,0 +170765093110,216,0 +170765093158,216,0 +170765093207,216,0 +170765093255,214,0 +170765093304,213,0 +170765093352,214,0 +170765093400,214,0 +170765093448,214,0 +170765093496,214,0 +170765093544,214,0 +170765093592,215,0 +170765093641,215,0 +170765093691,215,0 +170765093738,215,0 +170765093786,215,0 +170765093834,215,0 +170765093882,215,0 +170765093931,215,0 +170765093979,216,0 +170765094029,215,0 +170765094076,215,0 +170765094124,213,0 +170765094172,214,0 +170765094221,214,0 +170765094269,214,0 +170765094317,214,0 +170765094365,214,0 +170765094413,214,0 +170765094460,214,0 +170765094508,214,0 +170765094556,215,0 +170765094604,215,0 +170765094652,215,0 +170765094699,215,0 +170765094749,215,0 +170765094798,215,0 +170765094846,215,0 +170765094894,216,0 +170765094942,216,0 +170765094990,215,0 +170765095038,214,0 +170765095086,213,0 +170765095134,214,0 +170765095182,214,0 +170765095230,214,0 +170765095279,214,0 +170765095329,214,0 +170765095377,214,0 +170765095424,214,0 +170765095472,215,0 +170765095520,215,0 +170765095568,215,0 +170765095616,215,0 +170765095666,215,0 +170765095715,216,0 +170765095764,216,0 +170765095812,216,0 +170765095862,216,0 +170765095910,216,0 +170765095957,214,0 +170765096005,214,0 +170765096053,213,0 +170765096101,214,0 +170765096148,214,0 +170765096196,214,0 +170765096244,214,0 +170765096292,214,0 +170765096341,215,0 +170765096389,215,0 +170765096437,215,0 +170765096485,215,0 +170765096533,215,0 +170765096581,216,0 +170765096628,215,0 +170765096676,216,0 +170765096724,216,0 +170765096773,216,0 +170765096821,216,0 +170765096869,216,0 +170765096917,214,0 +170765096966,214,0 +170765097014,214,0 +170765097063,214,0 +170765097111,214,0 +170765097159,214,0 +170765097207,214,0 +170765097255,214,0 +170765097302,215,0 +170765097352,215,0 +170765097401,215,0 +170765097451,215,0 +170765097498,215,0 +170765097546,216,0 +170765097594,216,0 +170765097642,216,0 +170765097690,215,0 +170765097738,216,0 +170765097785,216,0 +170765097833,214,0 +170765097881,214,0 +170765097929,214,0 +170765097977,214,0 +170765098024,214,0 +170765098072,214,0 +170765098120,215,0 +170765098168,215,0 +170765098216,215,0 +170765098263,215,0 +170765098311,215,0 +170765098359,216,0 +170765098407,215,0 +170765098455,216,0 +170765098503,216,0 +170765098551,216,0 +170765098599,216,0 +170765098646,216,0 +170765098696,216,0 +170765098744,215,0 +170765098792,213,0 +170765098839,214,0 +170765098887,214,0 +170765098935,214,0 +170765098984,214,0 +170765099034,215,0 +170765099082,215,0 +170765099131,215,0 +170765099181,215,0 +170765099229,215,0 +170765099276,215,0 +170765099326,215,0 +170765099374,216,0 +170765099422,216,0 +170765099469,215,0 +170765099517,216,0 +170765099565,216,0 +170765099613,216,0 +170765099661,215,0 +170765099710,214,0 +170765099760,214,0 +170765099808,214,0 +170765099856,214,0 +170765099905,214,0 +170765099953,214,0 +170765100002,214,0 +170765100052,215,0 +170765100100,215,0 +170765100149,215,0 +170765100197,215,0 +170765100246,215,0 +170765100294,215,0 +170765100342,216,0 +170765100392,216,0 +170765100439,216,0 +170765100489,216,0 +170765100537,216,0 +170765100585,216,0 +170765100633,215,0 +170765100681,214,0 +170765100729,214,0 +170765100777,215,0 +170765100824,215,0 +170765100872,215,0 +170765100920,215,0 +170765100968,215,0 +170765101018,215,0 +170765101067,216,0 +170765101115,216,0 +170765101165,216,0 +170765101215,216,0 +170765101263,216,0 +170765101312,216,0 +170765101362,216,0 +170765101410,216,0 +170765101458,216,0 +170765101505,216,0 +170765101555,215,0 +170765101604,215,0 +170765101652,215,0 +170765101702,215,0 +170765101750,215,0 +170765101799,215,0 +170765101847,216,0 +170765101895,215,0 +170765101943,216,0 +170765101992,216,0 +170765102040,216,0 +170765102090,216,0 +170765102139,216,0 +170765102187,216,0 +170765102235,216,0 +170765102283,216,0 +170765102331,216,0 +170765102379,216,0 +170765102429,216,0 +170765102477,214,0 +170765102525,214,0 +170765102574,214,0 +170765102622,215,0 +170765102672,215,0 +170765102720,215,0 +170765102767,215,0 +170765102817,215,0 +170765102865,215,0 +170765102913,215,0 +170765102961,215,0 +170765103010,216,0 +170765103058,215,0 +170765103106,216,0 +170765103154,216,0 +170765103202,216,0 +170765103250,216,0 +170765103298,216,0 +170765103345,216,0 +170765103395,215,0 +170765103444,214,0 +170765103492,214,0 +170765103540,214,0 +170765103590,214,0 +170765103639,214,0 +170765103687,214,0 +170765103735,214,0 +170765103784,214,0 +170765103832,214,0 +170765103880,215,0 +170765103928,215,0 +170765103976,216,0 +170765104024,215,0 +170765104072,215,0 +170765104122,216,0 +170765104170,216,0 +170765104217,216,0 +170765104267,216,0 +170765104315,216,0 +170765104363,214,0 +170765104411,213,0 +170765104459,214,0 +170765104508,214,0 +170765104558,214,0 +170765104607,214,0 +170765104655,214,0 +170765104703,214,0 +170765104751,215,0 +170765104799,215,0 +170765104848,215,0 +170765104898,215,0 +170765104947,215,0 +170765104995,216,0 +170765105043,216,0 +170765105091,215,0 +170765105141,216,0 +170765105190,216,0 +170765105238,216,0 +170765105286,214,0 +170765105334,214,0 +170765105382,214,0 +170765105430,214,0 +170765105478,214,0 +170765105526,215,0 +170765105576,215,0 +170765105625,215,0 +170765105675,215,0 +170765105724,215,0 +170765105773,216,0 +170765105821,216,0 +170765105869,216,0 +170765105917,216,0 +170765105965,216,0 +170765106015,216,0 +170765106063,216,0 +170765106110,216,0 +170765106158,216,0 +170765106206,215,0 +170765106254,214,0 +170765106302,214,0 +170765106350,214,0 +170765106398,214,0 +170765106446,215,0 +170765106494,215,0 +170765106544,215,0 +170765106592,215,0 +170765106641,215,0 +170765106689,216,0 +170765106739,216,0 +170765106787,216,0 +170765106835,216,0 +170765106884,216,0 +170765106934,216,0 +170765106982,216,0 +170765107030,216,0 +170765107079,216,0 +170765107127,216,0 +170765107175,214,0 +170765107223,215,0 +170765107271,215,0 +170765107318,215,0 +170765107368,215,0 +170765107416,215,0 +170765107464,215,0 +170765107513,215,0 +170765107563,215,0 +170765107612,215,0 +170765107662,216,0 +170765107710,216,0 +170765107757,216,0 +170765107807,216,0 +170765107857,216,0 +170765107906,216,0 +170765107954,216,0 +170765108004,216,0 +170765108051,216,0 +170765108101,214,0 +170765108149,214,0 +170765108198,214,0 +170765108248,214,0 +170765108297,214,0 +170765108345,214,0 +170765108395,214,0 +170765108443,215,0 +170765108491,215,0 +170765108539,215,0 +170765108587,215,0 +170765108635,215,0 +170765108682,216,0 +170765108732,216,0 +170765108780,215,0 +170765108829,216,0 +170765108879,216,0 +170765108927,216,0 +170765108976,216,0 +170765109026,214,0 +170765109075,214,0 +170765109123,214,0 +170765109171,214,0 +170765109219,214,0 +170765109269,214,0 +170765109317,214,0 +170765109365,215,0 +170765109414,215,0 +170765109462,215,0 +170765109510,215,0 +170765109559,215,0 +170765109607,216,0 +170765109655,216,0 +170765109703,216,0 +170765109753,215,0 +170765109802,216,0 +170765109850,216,0 +170765109898,216,0 +170765109946,214,0 +170765109994,214,0 +170765110042,214,0 +170765110090,214,0 +170765110139,214,0 +170765110187,214,0 +170765110235,214,0 +170765110283,215,0 +170765110331,214,0 +170765110381,215,0 +170765110430,215,0 +170765110479,215,0 +170765110529,215,0 +170765110577,215,0 +170765110626,215,0 +170765110674,216,0 +170765110724,216,0 +170765110772,216,0 +170765110820,216,0 +170765110868,214,0 +170765110916,213,0 +170765110965,213,0 +170765111015,214,0 +170765111062,214,0 +170765111110,214,0 +170765111158,214,0 +170765111206,214,0 +170765111254,215,0 +170765111302,215,0 +170765111350,215,0 +170765111398,215,0 +170765111446,215,0 +170765111494,215,0 +170765111543,215,0 +170765111591,216,0 +170765111641,216,0 +170765111689,216,0 +170765111738,216,0 +170765111788,215,0 +170765111836,213,0 +170765111885,214,0 +170765111935,214,0 +170765111984,214,0 +170765112032,214,0 +170765112080,214,0 +170765112128,214,0 +170765112178,214,0 +170765112226,214,0 +170765112273,215,0 +170765112323,215,0 +170765112371,215,0 +170765112420,216,0 +170765112470,216,0 +170765112518,215,0 +170765112566,216,0 +170765112613,216,0 +170765112661,216,0 +170765112709,216,0 +170765112757,214,0 +170765112805,213,0 +170765112853,213,0 +170765112900,214,0 +170765112948,214,0 +170765112996,214,0 +170765113044,214,0 +170765113092,215,0 +170765113140,215,0 +170765113188,215,0 +170765113237,215,0 +170765113286,215,0 +170765113334,215,0 +170765113382,215,0 +170765113430,216,0 +170765113478,216,0 +170765113526,216,0 +170765113574,216,0 +170765113621,216,0 +170765113669,214,0 +170765113717,214,0 +170765113765,214,0 +170765113813,214,0 +170765113862,214,0 +170765113910,214,0 +170765113958,214,0 +170765114007,215,0 +170765114055,214,0 +170765114103,215,0 +170765114152,215,0 +170765114200,215,0 +170765114248,215,0 +170765114297,215,0 +170765114345,216,0 +170765114393,216,0 +170765114441,216,0 +170765114488,216,0 +170765114536,216,0 +170765114584,214,0 +170765114632,213,0 +170765114680,213,0 +170765114729,214,0 +170765114777,214,0 +170765114825,214,0 +170765114873,214,0 +170765114921,214,0 +170765114970,214,0 +170765115020,214,0 +170765115068,215,0 +170765115116,215,0 +170765115164,215,0 +170765115212,215,0 +170765115260,215,0 +170765115307,216,0 +170765115357,216,0 +170765115406,216,0 +170765115454,216,0 +170765115504,216,0 +170765115552,213,0 +170765115600,213,0 +170765115648,214,0 +170765115695,214,0 +170765115743,214,0 +170765115793,214,0 +170765115841,214,0 +170765115890,214,0 +170765115940,214,0 +170765115988,215,0 +170765116035,215,0 +170765116083,215,0 +170765116131,215,0 +170765116181,215,0 +170765116230,216,0 +170765116278,216,0 +170765116326,216,0 +170765116376,216,0 +170765116424,215,0 +170765116472,214,0 +170765116519,213,0 +170765116567,214,0 +170765116617,214,0 +170765116666,214,0 +170765116714,214,0 +170765116762,214,0 +170765116812,214,0 +170765116860,214,0 +170765116908,215,0 +170765116956,215,0 +170765117004,215,0 +170765117052,215,0 +170765117099,215,0 +170765117147,215,0 +170765117197,216,0 +170765117245,216,0 +170765117294,216,0 +170765117344,216,0 +170765117393,214,0 +170765117441,213,0 +170765117489,213,0 +170765117537,214,0 +170765117587,214,0 +170765117636,214,0 +170765117686,214,0 +170765117733,214,0 +170765117783,214,0 +170765117831,214,0 +170765117880,214,0 +170765117930,215,0 +170765117978,215,0 +170765118026,215,0 +170765118074,215,0 +170765118123,215,0 +170765118171,215,0 +170765118219,215,0 +170765118267,216,0 +170765118315,214,0 +170765118364,213,0 +170765118412,213,0 +170765118460,213,0 +170765118510,214,0 +170765118559,214,0 +170765118609,214,0 +170765118658,214,0 +170765118706,214,0 +170765118754,215,0 +170765118802,215,0 +170765118852,215,0 +170765118900,215,0 +170765118947,216,0 +170765118995,216,0 +170765119043,215,0 +170765119091,215,0 +170765119139,216,0 +170765119187,216,0 +170765119235,214,0 +170765119285,213,0 +170765119332,213,0 +170765119382,214,0 +170765119430,214,0 +170765119478,214,0 +170765119526,213,0 +170765119574,214,0 +170765119623,214,0 +170765119673,214,0 +170765119721,214,0 +170765119768,214,0 +170765119816,215,0 +170765119866,215,0 +170765119915,215,0 +170765119963,215,0 +170765120013,215,0 +170765120061,216,0 +170765120109,216,0 +170765120157,216,0 +170765120206,213,0 +170765120256,214,0 +170765120304,213,0 +170765120353,214,0 +170765120403,214,0 +170765120451,214,0 +170765120498,214,0 +170765120548,214,0 +170765120596,214,0 +170765120644,215,0 +170765120691,215,0 +170765120739,215,0 +170765120789,215,0 +170765120837,215,0 +170765120886,215,0 +170765120934,215,0 +170765120982,216,0 +170765121030,216,0 +170765121078,215,0 +170765121126,214,0 +170765121174,214,0 +170765121222,214,0 +170765121271,214,0 +170765121319,214,0 +170765121369,214,0 +170765121416,215,0 +170765121464,215,0 +170765121514,215,0 +170765121563,215,0 +170765121613,215,0 +170765121661,216,0 +170765121709,216,0 +170765121756,216,0 +170765121806,216,0 +170765121854,216,0 +170765121902,216,0 +170765121950,216,0 +170765121998,216,0 +170765122046,214,0 +170765122093,214,0 +170765122141,214,0 +170765122189,214,0 +170765122237,214,0 +170765122285,215,0 +170765122333,215,0 +170765122381,215,0 +170765122428,215,0 +170765122476,215,0 +170765122526,215,0 +170765122574,215,0 +170765122623,216,0 +170765122671,216,0 +170765122719,216,0 +170765122768,216,0 +170765122816,216,0 +170765122864,216,0 +170765122912,216,0 +170765122960,214,0 +170765123008,213,0 +170765123056,214,0 +170765123104,214,0 +170765123151,214,0 +170765123201,214,0 +170765123249,214,0 +170765123297,215,0 +170765123346,215,0 +170765123396,215,0 +170765123443,215,0 +170765123491,215,0 +170765123541,215,0 +170765123590,215,0 +170765123638,216,0 +170765123688,215,0 +170765123737,216,0 +170765123785,216,0 +170765123834,216,0 +170765123882,216,0 +170765123930,213,0 +170765123978,213,0 +170765124028,213,0 +170765124077,214,0 +170765124126,214,0 +170765124176,214,0 +170765124226,214,0 +170765124275,214,0 +170765124323,214,0 +170765124372,214,0 +170765124422,214,0 +170765124470,215,0 +170765124519,215,0 +170765124569,215,0 +170765124618,215,0 +170765124666,215,0 +170765124716,216,0 +170765124764,216,0 +170765124811,216,0 +170765124859,214,0 +170765124907,214,0 +170765124955,214,0 +170765125005,214,0 +170765125054,214,0 +170765125104,214,0 +170765125152,214,0 +170765125200,214,0 +170765125248,214,0 +170765125296,214,0 +170765125343,214,0 +170765125391,215,0 +170765125439,215,0 +170765125487,215,0 +170765125535,215,0 +170765125584,215,0 +170765125632,216,0 +170765125680,216,0 +170765125730,216,0 +170765125779,214,0 +170765125827,214,0 +170765125875,214,0 +170765125925,214,0 +170765125973,214,0 +170765126021,214,0 +170765126069,214,0 +170765126118,214,0 +170765126167,214,0 +170765126217,214,0 +170765126266,215,0 +170765126316,215,0 +170765126364,215,0 +170765126412,215,0 +170765126460,215,0 +170765126509,216,0 +170765126557,216,0 +170765126607,216,0 +170765126656,216,0 +170765126704,214,0 +170765126752,214,0 +170765126801,214,0 +170765126849,214,0 +170765126897,214,0 +170765126947,215,0 +170765126995,215,0 +170765127044,215,0 +170765127092,215,0 +170765127140,215,0 +170765127188,215,0 +170765127236,216,0 +170765127285,216,0 +170765127333,216,0 +170765127383,216,0 +170765127431,216,0 +170765127480,216,0 +170765127528,216,0 +170765127576,216,0 +170765127625,215,0 +170765127673,214,0 +170765127721,214,0 +170765127770,215,0 +170765127820,215,0 +170765127868,215,0 +170765127915,215,0 +170765127963,215,0 +170765128011,215,0 +170765128059,216,0 +170765128107,216,0 +170765128155,216,0 +170765128205,216,0 +170765128252,216,0 +170765128302,216,0 +170765128350,216,0 +170765128399,216,0 +170765128449,216,0 +170765128497,216,0 +170765128545,215,0 +170765128594,214,0 +170765128642,214,0 +170765128690,214,0 +170765128738,215,0 +170765128787,215,0 +170765128835,215,0 +170765128885,215,0 +170765128933,215,0 +170765128981,215,0 +170765129029,216,0 +170765129076,216,0 +170765129124,216,0 +170765129172,216,0 +170765129222,216,0 +170765129271,216,0 +170765129321,216,0 +170765129369,216,0 +170765129416,216,0 +170765129466,214,0 +170765129514,214,0 +170765129562,214,0 +170765129611,214,0 +170765129659,214,0 +170765129707,214,0 +170765129755,214,0 +170765129803,214,0 +170765129851,214,0 +170765129899,215,0 +170765129947,215,0 +170765129994,215,0 +170765130042,215,0 +170765130092,215,0 +170765130140,216,0 +170765130188,216,0 +170765130236,216,0 +170765130285,216,0 +170765130333,214,0 +170765130382,213,0 +170765130432,214,0 +170765130481,213,0 +170765130531,213,0 +170765130580,214,0 +170765130628,214,0 +170765130676,214,0 +170765130724,214,0 +170765130772,214,0 +170765130820,215,0 +170765130869,215,0 +170765130919,215,0 +170765130968,215,0 +170765131018,215,0 +170765131066,215,0 +170765131114,215,0 +170765131162,216,0 +170765131211,215,0 +170765131261,213,0 +170765131308,213,0 +170765131356,213,0 +170765131404,213,0 +170765131452,214,0 +170765131500,213,0 +170765131550,214,0 +170765131599,214,0 +170765131647,214,0 +170765131697,215,0 +170765131746,215,0 +170765131796,215,0 +170765131844,215,0 +170765131891,215,0 +170765131939,215,0 +170765131987,216,0 +170765132035,215,0 +170765132083,216,0 +170765132131,214,0 +170765132181,213,0 +170765132228,214,0 +170765132276,213,0 +170765132324,214,0 +170765132372,214,0 +170765132420,214,0 +170765132468,214,0 +170765132516,214,0 +170765132564,214,0 +170765132612,214,0 +170765132661,215,0 +170765132711,215,0 +170765132760,215,0 +170765132808,216,0 +170765132856,216,0 +170765132904,216,0 +170765132952,216,0 +170765133000,215,0 +170765133048,213,0 +170765133096,214,0 +170765133143,214,0 +170765133193,214,0 +170765133241,214,0 +170765133289,214,0 +170765133337,214,0 +170765133385,215,0 +170765133432,215,0 +170765133480,215,0 +170765133528,216,0 +170765133576,215,0 +170765133626,215,0 +170765133674,216,0 +170765133721,216,0 +170765133769,216,0 +170765133817,216,0 +170765133867,215,0 +170765133916,214,0 +170765133964,213,0 +170765134012,214,0 +170765134060,214,0 +170765134110,214,0 +170765134158,214,0 +170765134205,214,0 +170765134255,214,0 +170765134303,215,0 +170765134351,215,0 +170765134398,215,0 +170765134446,215,0 +170765134496,215,0 +170765134545,216,0 +170765134593,216,0 +170765134643,216,0 +170765134692,216,0 +170765134740,216,0 +170765134788,215,0 +170765134836,213,0 +170765134884,213,0 +170765134932,214,0 +170765134981,214,0 +170765135031,214,0 +170765135079,214,0 +170765135127,214,0 +170765135175,214,0 +170765135222,215,0 +170765135272,215,0 +170765135322,215,0 +170765135369,215,0 +170765135417,215,0 +170765135465,215,0 +170765135515,215,0 +170765135563,216,0 +170765135612,216,0 +170765135660,216,0 +170765135708,214,0 +170765135756,213,0 +170765135804,213,0 +170765135853,213,0 +170765135901,214,0 +170765135949,214,0 +170765135998,214,0 +170765136046,214,0 +170765136094,214,0 +170765136142,214,0 +170765136190,215,0 +170765136238,215,0 +170765136286,215,0 +170765136334,215,0 +170765136382,215,0 +170765136430,215,0 +170765136478,216,0 +170765136526,216,0 +170765136575,214,0 +170765136623,213,0 +170765136671,213,0 +170765136719,213,0 +170765136768,213,0 +170765136816,214,0 +170765136866,214,0 +170765136915,214,0 +170765136963,214,0 +170765137011,214,0 +170765137061,215,0 +170765137108,215,0 +170765137156,215,0 +170765137204,215,0 +170765137252,215,0 +170765137302,215,0 +170765137350,216,0 +170765137398,216,0 +170765137447,215,0 +170765137495,214,0 +170765137543,213,0 +170765137591,213,0 +170765137640,213,0 +170765137688,214,0 +170765137736,214,0 +170765137784,213,0 +170765137832,214,0 +170765137881,214,0 +170765137929,214,0 +170765137977,215,0 +170765138027,215,0 +170765138075,215,0 +170765138122,215,0 +170765138170,215,0 +170765138220,215,0 +170765138269,215,0 +170765138317,216,0 +170765138365,214,0 +170765138413,214,0 +170765138461,213,0 +170765138509,213,0 +170765138557,213,0 +170765138605,213,0 +170765138653,214,0 +170765138700,213,0 +170765138748,213,0 +170765138798,214,0 +170765138846,214,0 +170765138895,214,0 +170765138943,215,0 +170765138993,215,0 +170765139040,215,0 +170765139090,215,0 +170765139139,215,0 +170765139187,215,0 +170765139237,215,0 +170765139285,213,0 +170765139333,213,0 +170765139381,213,0 +170765139429,213,0 +170765139478,213,0 +170765139526,213,0 +170765139575,214,0 +170765139625,214,0 +170765139673,213,0 +170765139720,214,0 +170765139768,214,0 +170765139816,215,0 +170765139864,214,0 +170765139913,215,0 +170765139963,215,0 +170765140011,215,0 +170765140059,215,0 +170765140108,215,0 +170765140156,214,0 +170765140204,213,0 +170765140253,213,0 +170765140301,213,0 +170765140351,213,0 +170765140399,213,0 +170765140446,213,0 +170765140494,213,0 +170765140544,214,0 +170765140592,214,0 +170765140639,214,0 +170765140687,214,0 +170765140735,214,0 +170765140785,214,0 +170765140832,214,0 +170765140880,215,0 +170765140928,215,0 +170765140976,215,0 +170765141024,215,0 +170765141072,213,0 +170765141120,213,0 +170765141168,213,0 +170765141215,214,0 +170765141263,214,0 +170765141313,214,0 +170765141360,214,0 +170765141408,214,0 +170765141456,214,0 +170765141504,214,0 +170765141552,215,0 +170765141601,215,0 +170765141649,215,0 +170765141697,215,0 +170765141745,215,0 +170765141794,215,0 +170765141842,216,0 +170765141890,215,0 +170765141938,214,0 +170765141986,213,0 +170765142034,213,0 +170765142081,214,0 +170765142129,214,0 +170765142177,214,0 +170765142227,214,0 +170765142275,214,0 +170765142322,214,0 +170765142372,215,0 +170765142420,215,0 +170765142469,215,0 +170765142517,215,0 +170765142565,215,0 +170765142613,216,0 +170765142661,216,0 +170765142709,216,0 +170765142757,216,0 +170765142805,215,0 +170765142853,213,0 +170765142901,214,0 +170765142948,214,0 +170765142998,214,0 +170765143046,214,0 +170765143095,214,0 +170765143143,215,0 +170765143191,214,0 +170765143239,215,0 +170765143286,215,0 +170765143334,215,0 +170765143382,215,0 +170765143430,215,0 +170765143479,215,0 +170765143527,215,0 +170765143575,216,0 +170765143625,216,0 +170765143674,216,0 +170765143722,214,0 +170765143770,213,0 +170765143818,213,0 +170765143866,213,0 +170765143915,214,0 +170765143965,214,0 +170765144014,214,0 +170765144062,214,0 +170765144110,214,0 +170765144160,214,0 +170765144208,215,0 +170765144256,215,0 +170765144304,215,0 +170765144353,215,0 +170765144401,215,0 +170765144449,215,0 +170765144497,216,0 +170765144547,215,0 +170765144594,214,0 +170765144642,213,0 +170765144690,213,0 +170765144738,214,0 +170765144786,214,0 +170765144834,214,0 +170765144884,214,0 +170765144932,214,0 +170765144980,214,0 +170765145027,214,0 +170765145075,215,0 +170765145125,215,0 +170765145173,215,0 +170765145221,215,0 +170765145269,215,0 +170765145317,215,0 +170765145365,216,0 +170765145413,216,0 +170765145461,216,0 +170765145510,213,0 +170765145558,213,0 +170765145607,213,0 +170765145655,214,0 +170765145703,214,0 +170765145751,214,0 +170765145799,214,0 +170765145848,214,0 +170765145896,215,0 +170765145944,215,0 +170765145992,215,0 +170765146040,215,0 +170765146088,216,0 +170765146137,216,0 +170765146185,216,0 +170765146235,216,0 +170765146283,216,0 +170765146331,216,0 +170765146380,214,0 +170765146428,214,0 +170765146476,214,0 +170765146524,214,0 +170765146572,215,0 +170765146622,215,0 +170765146669,215,0 +170765146717,215,0 +170765146765,215,0 +170765146815,216,0 +170765146863,216,0 +170765146910,216,0 +170765146958,216,0 +170765147008,216,0 +170765147056,216,0 +170765147104,216,0 +170765147152,216,0 +170765147200,216,0 +170765147249,216,0 +170765147297,214,0 +170765147347,214,0 +170765147395,215,0 +170765147443,215,0 +170765147492,215,0 +170765147540,215,0 +170765147588,215,0 +170765147636,215,0 +170765147684,216,0 +170765147732,215,0 +170765147780,216,0 +170765147828,216,0 +170765147877,216,0 +170765147927,216,0 +170765147976,215,0 +170765148024,216,0 +170765148072,215,0 +170765148120,215,0 +170765148168,213,0 +170765148217,213,0 +170765148265,214,0 +170765148313,214,0 +170765148361,214,0 +170765148409,214,0 +170765148457,214,0 +170765148505,215,0 +170765148555,215,0 +170765148603,215,0 +170765148652,215,0 +170765148700,215,0 +170765148748,215,0 +170765148797,215,0 +170765148847,216,0 +170765148895,216,0 +170765148943,216,0 +170765148991,215,0 +170765149040,214,0 +170765149088,213,0 +170765149136,213,0 +170765149184,214,0 +170765149234,214,0 +170765149283,214,0 +170765149331,214,0 +170765149379,214,0 +170765149427,214,0 +170765149475,214,0 +170765149523,215,0 +170765149572,215,0 +170765149622,215,0 +170765149670,215,0 +170765149719,215,0 +170765149767,215,0 +170765149816,215,0 +170765149866,215,0 +170765149914,216,0 +170765149962,213,0 +170765150010,213,0 +170765150058,214,0 +170765150107,213,0 +170765150155,214,0 +170765150203,214,0 +170765150252,214,0 +170765150300,214,0 +170765150348,214,0 +170765150396,215,0 +170765150444,215,0 +170765150494,215,0 +170765150542,215,0 +170765150591,215,0 +170765150641,216,0 +170765150689,216,0 +170765150736,216,0 +170765150784,216,0 +170765150832,214,0 +170765150880,213,0 +170765150928,213,0 +170765150976,213,0 +170765151024,213,0 +170765151072,213,0 +170765151121,214,0 +170765151169,213,0 +170765151217,214,0 +170765151265,214,0 +170765151315,214,0 +170765151364,215,0 +170765151412,215,0 +170765151460,215,0 +170765151508,215,0 +170765151556,215,0 +170765151606,215,0 +170765151654,216,0 +170765151702,214,0 +170765151749,213,0 +170765151797,214,0 +170765151847,214,0 +170765151895,213,0 +170765151943,213,0 +170765151991,213,0 +170765152040,213,0 +170765152088,214,0 +170765152138,214,0 +170765152186,214,0 +170765152234,214,0 +170765152282,215,0 +170765152330,214,0 +170765152379,214,0 +170765152427,215,0 +170765152475,215,0 +170765152524,215,0 +170765152572,214,0 +170765152622,214,0 +170765152670,213,0 +170765152718,214,0 +170765152767,213,0 +170765152815,214,0 +170765152865,213,0 +170765152912,214,0 +170765152960,214,0 +170765153008,215,0 +170765153056,215,0 +170765153104,215,0 +170765153152,215,0 +170765153200,215,0 +170765153250,215,0 +170765153299,215,0 +170765153347,216,0 +170765153397,216,0 +170765153444,216,0 +170765153492,213,0 +170765153540,214,0 +170765153588,214,0 +170765153638,214,0 +170765153687,214,0 +170765153735,214,0 +170765153784,214,0 +170765153834,214,0 +170765153884,215,0 +170765153933,215,0 +170765153981,215,0 +170765154030,215,0 +170765154078,216,0 +170765154126,215,0 +170765154176,216,0 +170765154224,216,0 +170765154273,216,0 +170765154321,215,0 +170765154369,213,0 +170765154417,214,0 +170765154466,214,0 +170765154514,214,0 +170765154564,214,0 +170765154612,214,0 +170765154661,214,0 +170765154709,214,0 +170765154759,215,0 +170765154807,214,0 +170765154856,215,0 +170765154904,215,0 +170765154954,215,0 +170765155002,215,0 +170765155050,216,0 +170765155099,215,0 +170765155147,216,0 +170765155195,215,0 +170765155243,214,0 +170765155293,213,0 +170765155341,213,0 +170765155388,214,0 +170765155436,213,0 +170765155484,214,0 +170765155532,214,0 +170765155580,214,0 +170765155628,214,0 +170765155676,214,0 +170765155726,215,0 +170765155775,215,0 +170765155825,215,0 +170765155873,215,0 +170765155920,215,0 +170765155970,215,0 +170765156018,216,0 +170765156066,216,0 +170765156114,215,0 +170765156163,213,0 +170765156213,214,0 +170765156262,214,0 +170765156310,214,0 +170765156360,214,0 +170765156408,214,0 +170765156456,214,0 +170765156503,214,0 +170765156551,214,0 +170765156599,215,0 +170765156647,215,0 +170765156697,215,0 +170765156744,215,0 +170765156792,216,0 +170765156840,216,0 +170765156890,215,0 +170765156938,215,0 +170765156986,216,0 +170765157033,214,0 +170765157083,213,0 +170765157131,213,0 +170765157179,214,0 +170765157227,214,0 +170765157275,214,0 +170765157322,214,0 +170765157372,215,0 +170765157421,215,0 +170765157471,215,0 +170765157520,215,0 +170765157568,215,0 +170765157616,215,0 +170765157664,216,0 +170765157714,216,0 +170765157761,216,0 +170765157811,216,0 +170765157859,215,0 +170765157908,214,0 +170765157958,214,0 +170765158005,213,0 +170765158055,213,0 +170765158103,213,0 +170765158152,214,0 +170765158200,214,0 +170765158248,214,0 +170765158296,214,0 +170765158344,214,0 +170765158392,215,0 +170765158440,215,0 +170765158489,215,0 +170765158537,215,0 +170765158585,216,0 +170765158633,216,0 +170765158683,216,0 +170765158730,216,0 +170765158778,214,0 +170765158828,213,0 +170765158876,213,0 +170765158924,214,0 +170765158973,214,0 +170765159021,214,0 +170765159069,214,0 +170765159119,214,0 +170765159168,214,0 +170765159218,214,0 +170765159267,215,0 +170765159315,215,0 +170765159363,215,0 +170765159412,215,0 +170765159460,215,0 +170765159510,215,0 +170765159557,216,0 +170765159605,216,0 +170765159655,216,0 +170765159703,214,0 +170765159751,213,0 +170765159800,214,0 +170765159848,214,0 +170765159896,214,0 +170765159944,214,0 +170765159992,214,0 +170765160041,214,0 +170765160089,214,0 +170765160139,215,0 +170765160187,215,0 +170765160235,215,0 +170765160283,215,0 +170765160332,216,0 +170765160380,216,0 +170765160428,216,0 +170765160477,216,0 +170765160525,216,0 +170765160573,214,0 +170765160621,213,0 +170765160669,214,0 +170765160717,214,0 +170765160766,214,0 +170765160814,214,0 +170765160862,214,0 +170765160910,214,0 +170765160957,215,0 +170765161005,215,0 +170765161053,215,0 +170765161101,215,0 +170765161149,216,0 +170765161197,216,0 +170765161244,216,0 +170765161292,216,0 +170765161342,216,0 +170765161390,216,0 +170765161437,215,0 +170765161487,214,0 +170765161536,214,0 +170765161584,214,0 +170765161632,214,0 +170765161680,214,0 +170765161728,214,0 +170765161776,215,0 +170765161825,215,0 +170765161873,215,0 +170765161921,215,0 +170765161971,215,0 +170765162019,215,0 +170765162067,216,0 +170765162115,216,0 +170765162162,216,0 +170765162212,216,0 +170765162260,216,0 +170765162309,216,0 +170765162357,214,0 +170765162405,214,0 +170765162453,213,0 +170765162503,214,0 +170765162551,214,0 +170765162599,214,0 +170765162646,214,0 +170765162694,214,0 +170765162744,214,0 +170765162792,215,0 +170765162840,215,0 +170765162889,215,0 +170765162939,215,0 +170765162987,215,0 +170765163035,215,0 +170765163083,215,0 +170765163131,215,0 +170765163178,216,0 +170765163226,215,0 +170765163274,213,0 +170765163322,213,0 +170765163371,214,0 +170765163419,213,0 +170765163469,213,0 +170765163517,214,0 +170765163565,214,0 +170765163614,214,0 +170765163662,214,0 +170765163712,214,0 +170765163759,215,0 +170765163809,215,0 +170765163858,215,0 +170765163906,215,0 +170765163954,215,0 +170765164002,215,0 +170765164050,215,0 +170765164098,214,0 +170765164146,214,0 +170765164194,213,0 +170765164242,214,0 +170765164290,213,0 +170765164338,214,0 +170765164385,214,0 +170765164433,214,0 +170765164481,214,0 +170765164529,214,0 +170765164578,215,0 +170765164626,215,0 +170765164675,215,0 +170765164723,215,0 +170765164771,215,0 +170765164819,215,0 +170765164867,215,0 +170765164915,215,0 +170765164963,214,0 +170765165012,213,0 +170765165062,214,0 +170765165111,214,0 +170765165161,214,0 +170765165209,214,0 +170765165256,214,0 +170765165304,214,0 +170765165354,214,0 +170765165402,214,0 +170765165451,214,0 +170765165501,215,0 +170765165549,215,0 +170765165598,215,0 +170765165646,215,0 +170765165694,215,0 +170765165742,215,0 +170765165791,216,0 +170765165839,214,0 +170765165887,214,0 +170765165935,214,0 +170765165983,214,0 +170765166032,214,0 +170765166080,214,0 +170765166130,215,0 +170765166179,215,0 +170765166227,215,0 +170765166277,215,0 +170765166326,215,0 +170765166376,216,0 +170765166425,216,0 +170765166474,216,0 +170765166522,216,0 +170765166570,215,0 +170765166618,216,0 +170765166666,215,0 +170765166714,214,0 +170765166762,214,0 +170765166809,214,0 +170765166857,214,0 +170765166905,214,0 +170765166953,214,0 +170765167001,215,0 +170765167049,215,0 +170765167098,215,0 +170765167146,215,0 +170765167194,215,0 +170765167242,215,0 +170765167290,216,0 +170765167338,216,0 +170765167387,216,0 +170765167435,215,0 +170765167483,216,0 +170765167533,215,0 +170765167581,214,0 +170765167628,214,0 +170765167676,213,0 +170765167726,214,0 +170765167775,214,0 +170765167823,214,0 +170765167871,214,0 +170765167919,214,0 +170765167969,215,0 +170765168018,215,0 +170765168066,215,0 +170765168114,215,0 +170765168162,215,0 +170765168210,216,0 +170765168259,215,0 +170765168309,215,0 +170765168357,216,0 +170765168406,216,0 +170765168454,214,0 +170765168502,214,0 +170765168550,213,0 +170765168599,214,0 +170765168647,214,0 +170765168695,214,0 +170765168743,214,0 +170765168791,214,0 +170765168839,214,0 +170765168886,214,0 +170765168934,214,0 +170765168982,215,0 +170765169030,214,0 +170765169079,215,0 +170765169127,215,0 +170765169175,216,0 +170765169223,216,0 +170765169271,216,0 +170765169319,214,0 +170765169368,213,0 +170765169417,213,0 +170765169465,214,0 +170765169513,214,0 +170765169561,214,0 +170765169609,214,0 +170765169657,214,0 +170765169705,214,0 +170765169753,214,0 +170765169802,214,0 +170765169850,215,0 +170765169900,215,0 +170765169949,215,0 +170765169997,215,0 +170765170045,215,0 +170765170094,216,0 +170765170142,216,0 +170765170190,214,0 +170765170240,213,0 +170765170289,214,0 +170765170337,214,0 +170765170387,214,0 +170765170435,214,0 +170765170484,215,0 +170765170532,215,0 +170765170582,215,0 +170765170630,215,0 +170765170679,215,0 +170765170727,216,0 +170765170775,216,0 +170765170824,216,0 +170765170872,216,0 +170765170922,215,0 +170765170971,216,0 +170765171021,215,0 +170765171069,213,0 +170765171116,213,0 +170765171166,214,0 +170765171214,214,0 +170765171262,214,0 +170765171310,214,0 +170765171358,214,0 +170765171406,214,0 +170765171454,215,0 +170765171502,215,0 +170765171549,215,0 +170765171597,215,0 +170765171645,215,0 +170765171693,216,0 +170765171741,216,0 +170765171791,216,0 +170765171840,216,0 +170765171888,215,0 +170765171936,213,0 +170765171984,213,0 +170765172032,213,0 +170765172080,214,0 +170765172129,214,0 +170765172177,214,0 +170765172225,214,0 +170765172273,215,0 +170765172321,215,0 +170765172370,215,0 +170765172418,215,0 +170765172467,215,0 +170765172515,215,0 +170765172563,216,0 +170765172611,216,0 +170765172659,216,0 +170765172707,216,0 +170765172757,217,0 +170765172804,214,0 +170765172852,213,0 +170765172900,214,0 +170765172950,214,0 +170765172998,214,0 +170765173046,214,0 +170765173094,214,0 +170765173141,214,0 +170765173189,215,0 +170765173237,215,0 +170765173285,215,0 +170765173335,215,0 +170765173382,216,0 +170765173430,216,0 +170765173480,216,0 +170765173528,216,0 +170765173576,216,0 +170765173624,214,0 +170765173671,213,0 +170765173719,214,0 +170765173767,214,0 +170765173817,214,0 +170765173865,214,0 +170765173914,214,0 +170765173962,214,0 +170765174012,214,0 +170765174059,214,0 +170765174107,215,0 +170765174157,215,0 +170765174205,215,0 +170765174253,215,0 +170765174302,216,0 +170765174350,216,0 +170765174398,215,0 +170765174446,216,0 +170765174494,214,0 +170765174543,213,0 +170765174591,213,0 +170765174639,213,0 +170765174688,214,0 +170765174736,214,0 +170765174784,214,0 +170765174834,214,0 +170765174882,214,0 +170765174930,215,0 +170765174978,215,0 +170765175027,215,0 +170765175075,215,0 +170765175123,215,0 +170765175172,215,0 +170765175220,215,0 +170765175269,215,0 +170765175319,216,0 +170765175368,214,0 +170765175418,213,0 +170765175466,213,0 +170765175514,213,0 +170765175563,214,0 +170765175611,214,0 +170765175659,214,0 +170765175708,214,0 +170765175756,214,0 +170765175804,214,0 +170765175854,215,0 +170765175902,215,0 +170765175950,215,0 +170765175999,215,0 +170765176047,216,0 +170765176095,216,0 +170765176144,216,0 +170765176194,215,0 +170765176243,214,0 +170765176293,213,0 +170765176342,213,0 +170765176390,214,0 +170765176440,214,0 +170765176489,214,0 +170765176537,214,0 +170765176585,214,0 +170765176633,214,0 +170765176681,215,0 +170765176730,215,0 +170765176778,215,0 +170765176826,215,0 +170765176876,216,0 +170765176923,216,0 +170765176973,216,0 +170765177022,216,0 +170765177070,215,0 +170765177118,213,0 +170765177166,214,0 +170765177214,214,0 +170765177262,214,0 +170765177312,214,0 +170765177361,214,0 +170765177411,214,0 +170765177460,215,0 +170765177510,215,0 +170765177558,215,0 +170765177607,215,0 +170765177657,215,0 +170765177706,216,0 +170765177754,216,0 +170765177802,216,0 +170765177850,216,0 +170765177898,216,0 +170765177948,214,0 +170765177997,213,0 +170765178047,214,0 +170765178095,213,0 +170765178144,214,0 +170765178192,214,0 +170765178240,214,0 +170765178290,214,0 +170765178339,214,0 +170765178387,214,0 +170765178435,215,0 +170765178483,215,0 +170765178532,215,0 +170765178580,215,0 +170765178628,215,0 +170765178676,215,0 +170765178724,216,0 +170765178774,215,0 +170765178822,214,0 +170765178870,214,0 +170765178919,214,0 +170765178967,214,0 +170765179017,214,0 +170765179066,214,0 +170765179114,214,0 +170765179162,214,0 +170765179210,215,0 +170765179258,215,0 +170765179307,215,0 +170765179355,215,0 +170765179403,215,0 +170765179452,216,0 +170765179502,216,0 +170765179550,216,0 +170765179598,216,0 +170765179646,216,0 +170765179694,213,0 +170765179743,214,0 +170765179793,214,0 +170765179841,214,0 +170765179888,214,0 +170765179938,214,0 +170765179986,215,0 +170765180034,215,0 +170765180082,215,0 +170765180130,215,0 +170765180178,215,0 +170765180226,215,0 +170765180275,216,0 +170765180323,216,0 +170765180373,216,0 +170765180420,216,0 +170765180468,216,0 +170765180518,216,0 +170765180567,214,0 +170765180615,214,0 +170765180663,214,0 +170765180711,214,0 +170765180759,214,0 +170765180807,215,0 +170765180857,215,0 +170765180906,215,0 +170765180956,215,0 +170765181005,215,0 +170765181053,216,0 +170765181101,216,0 +170765181149,216,0 +170765181199,216,0 +170765181248,215,0 +170765181296,216,0 +170765181344,216,0 +170765181392,215,0 +170765181441,213,0 +170765181489,213,0 +170765181537,213,0 +170765181585,213,0 +170765181635,214,0 +170765181682,214,0 +170765181730,214,0 +170765181778,214,0 +170765181826,214,0 +170765181874,214,0 +170765181922,215,0 +170765181970,215,0 +170765182018,215,0 +170765182066,215,0 +170765182114,216,0 +170765182163,215,0 +170765182211,216,0 +170765182259,214,0 +170765182307,214,0 +170765182355,214,0 +170765182404,213,0 +170765182452,214,0 +170765182500,214,0 +170765182550,214,0 +170765182599,214,0 +170765182649,214,0 +170765182697,214,0 +170765182745,215,0 +170765182793,215,0 +170765182841,215,0 +170765182889,215,0 +170765182937,215,0 +170765182985,216,0 +170765183033,216,0 +170765183081,215,0 +170765183129,214,0 +170765183178,213,0 +170765183228,213,0 +170765183276,214,0 +170765183324,214,0 +170765183373,214,0 +170765183422,214,0 +170765183470,214,0 +170765183520,214,0 +170765183568,214,0 +170765183616,214,0 +170765183664,214,0 +170765183713,215,0 +170765183761,215,0 +170765183809,215,0 +170765183857,215,0 +170765183905,215,0 +170765183954,215,0 +170765184004,215,0 +170765184053,216,0 +170765184103,216,0 +170765184152,216,0 +170765184202,216,0 +170765184250,216,0 +170765184298,216,0 +170765184346,216,0 +170765184393,214,0 +170765184441,214,0 +170765184491,214,0 +170765184539,214,0 +170765184588,215,0 +170765184636,215,0 +170765184684,215,0 +170765184732,215,0 +170765184782,215,0 +170765184831,216,0 +170765184881,216,0 +170765184929,216,0 +170765184978,216,0 +170765185026,216,0 +170765185076,216,0 +170765185124,216,0 +170765185173,216,0 +170765185221,216,0 +170765185269,214,0 +170765185317,213,0 +170765185367,214,0 +170765185414,214,0 +170765185464,214,0 +170765185512,214,0 +170765185560,214,0 +170765185608,215,0 +170765185656,215,0 +170765185705,215,0 +170765185753,215,0 +170765185801,215,0 +170765185849,215,0 +170765185897,216,0 +170765185945,216,0 +170765185993,216,0 +170765186042,216,0 +170765186090,216,0 +170765186138,213,0 +170765186187,213,0 +170765186235,214,0 +170765186283,214,0 +170765186331,214,0 +170765186380,214,0 +170765186428,214,0 +170765186476,214,0 +170765186524,214,0 +170765186574,215,0 +170765186623,214,0 +170765186671,215,0 +170765186719,215,0 +170765186768,215,0 +170765186818,215,0 +170765186866,215,0 +170765186913,216,0 +170765186961,214,0 +170765187009,213,0 +170765187057,213,0 +170765187106,214,0 +170765187154,214,0 +170765187202,214,0 +170765187250,214,0 +170765187298,214,0 +170765187347,214,0 +170765187395,214,0 +170765187443,215,0 +170765187491,215,0 +170765187540,215,0 +170765187588,215,0 +170765187636,216,0 +170765187685,215,0 +170765187735,215,0 +170765187782,216,0 +170765187830,214,0 +170765187878,214,0 +170765187926,214,0 +170765187974,214,0 +170765188022,214,0 +170765188070,214,0 +170765188118,214,0 +170765188167,214,0 +170765188216,214,0 +170765188264,215,0 +170765188312,215,0 +170765188360,215,0 +170765188408,215,0 +170765188456,216,0 +170765188504,216,0 +170765188552,216,0 +170765188600,216,0 +170765188647,216,0 +170765188695,213,0 +170765188743,213,0 +170765188791,213,0 +170765188839,214,0 +170765188887,213,0 +170765188935,213,0 +170765188983,214,0 +170765189031,214,0 +170765189079,214,0 +170765189128,215,0 +170765189176,215,0 +170765189224,215,0 +170765189274,215,0 +170765189323,216,0 +170765189371,216,0 +170765189421,216,0 +170765189468,216,0 +170765189516,216,0 +170765189564,213,0 +170765189614,214,0 +170765189663,214,0 +170765189711,214,0 +170765189761,214,0 +170765189808,214,0 +170765189856,214,0 +170765189906,214,0 +170765189955,214,0 +170765190003,215,0 +170765190053,215,0 +170765190102,215,0 +170765190152,215,0 +170765190199,215,0 +170765190247,216,0 +170765190297,215,0 +170765190346,216,0 +170765190394,214,0 +170765190442,214,0 +170765190492,214,0 +170765190540,214,0 +170765190588,214,0 +170765190637,214,0 +170765190685,214,0 +170765190733,214,0 +170765190782,215,0 +170765190830,215,0 +170765190878,215,0 +170765190926,215,0 +170765190974,216,0 +170765191022,216,0 +170765191070,216,0 +170765191118,216,0 +170765191167,215,0 +170765191215,215,0 +170765191265,213,0 +170765191314,214,0 +170765191362,214,0 +170765191410,214,0 +170765191460,214,0 +170765191509,214,0 +170765191559,215,0 +170765191607,215,0 +170765191655,215,0 +170765191704,215,0 +170765191752,216,0 +170765191800,216,0 +170765191848,215,0 +170765191897,215,0 +170765191945,216,0 +170765191993,215,0 +170765192041,216,0 +170765192091,214,0 +170765192139,214,0 +170765192187,213,0 +170765192235,214,0 +170765192283,214,0 +170765192332,214,0 +170765192380,214,0 +170765192428,214,0 +170765192476,215,0 +170765192524,215,0 +170765192572,215,0 +170765192621,215,0 +170765192669,215,0 +170765192717,216,0 +170765192766,216,0 +170765192816,216,0 +170765192865,216,0 +170765192913,215,0 +170765192963,213,0 +170765193011,214,0 +170765193059,214,0 +170765193108,214,0 +170765193157,214,0 +170765193205,214,0 +170765193255,214,0 +170765193303,214,0 +170765193351,215,0 +170765193399,215,0 +170765193446,215,0 +170765193494,215,0 +170765193542,215,0 +170765193592,215,0 +170765193641,215,0 +170765193689,215,0 +170765193737,216,0 +170765193785,214,0 +170765193833,214,0 +170765193882,213,0 +170765193930,214,0 +170765193978,214,0 +170765194026,214,0 +170765194074,214,0 +170765194122,215,0 +170765194169,215,0 +170765194219,215,0 +170765194267,215,0 +170765194315,215,0 +170765194363,216,0 +170765194411,215,0 +170765194459,216,0 +170765194508,216,0 +170765194556,216,0 +170765194604,216,0 +170765194652,214,0 +170765194700,213,0 +170765194748,213,0 +170765194796,213,0 +170765194844,214,0 +170765194892,214,0 +170765194940,214,0 +170765194987,215,0 +170765195035,215,0 +170765195085,215,0 +170765195134,215,0 +170765195182,215,0 +170765195230,216,0 +170765195278,216,0 +170765195325,216,0 +170765195373,215,0 +170765195423,215,0 +170765195470,214,0 +170765195518,214,0 +170765195568,213,0 +170765195615,213,0 +170765195663,214,0 +170765195713,214,0 +170765195760,214,0 +170765195808,214,0 +170765195856,215,0 +170765195904,215,0 +170765195953,215,0 +170765196001,215,0 +170765196049,215,0 +170765196097,216,0 +170765196145,216,0 +170765196192,216,0 +170765196240,216,0 +170765196288,215,0 +170765196336,213,0 +170765196384,214,0 +170765196433,214,0 +170765196481,214,0 +170765196529,214,0 +170765196577,214,0 +170765196625,215,0 +170765196672,215,0 +170765196722,215,0 +170765196771,215,0 +170765196819,215,0 +170765196867,215,0 +170765196915,215,0 +170765196963,216,0 +170765197011,215,0 +170765197059,216,0 +170765197107,215,0 +170765197155,213,0 +170765197203,213,0 +170765197252,213,0 +170765197300,214,0 +170765197348,214,0 +170765197398,214,0 +170765197447,214,0 +170765197495,214,0 +170765197544,214,0 +170765197592,215,0 +170765197640,215,0 +170765197688,215,0 +170765197736,215,0 +170765197784,216,0 +170765197834,215,0 +170765197883,215,0 +170765197931,216,0 +170765197979,214,0 +170765198027,213,0 +170765198075,213,0 +170765198124,213,0 +170765198172,213,0 +170765198221,214,0 +170765198269,214,0 +170765198317,214,0 +170765198366,214,0 +170765198414,214,0 +170765198462,214,0 +170765198510,214,0 +170765198560,215,0 +170765198609,215,0 +170765198658,215,0 +170765198706,215,0 +170765198756,215,0 +170765198804,215,0 +170765198852,213,0 +170765198900,213,0 +170765198948,214,0 +170765198997,214,0 +170765199047,214,0 +170765199095,214,0 +170765199142,214,0 +170765199190,214,0 +170765199238,214,0 +170765199286,214,0 +170765199336,215,0 +170765199385,215,0 +170765199435,215,0 +170765199482,215,0 +170765199532,216,0 +170765199580,215,0 +170765199629,215,0 +170765199677,213,0 +170765199725,213,0 +170765199773,214,0 +170765199821,213,0 +170765199869,214,0 +170765199917,214,0 +170765199965,214,0 +170765200013,214,0 +170765200062,214,0 +170765200110,214,0 +170765200160,215,0 +170765200208,215,0 +170765200256,215,0 +170765200305,216,0 +170765200355,216,0 +170765200402,216,0 +170765200450,215,0 +170765200500,214,0 +170765200549,213,0 +170765200597,214,0 +170765200645,214,0 +170765200693,214,0 +170765200743,214,0 +170765200790,214,0 +170765200838,214,0 +170765200886,215,0 +170765200934,215,0 +170765200983,215,0 +170765201031,216,0 +170765201079,215,0 +170765201127,216,0 +170765201176,215,0 +170765201224,215,0 +170765201272,216,0 +170765201322,215,0 +170765201370,214,0 +170765201419,214,0 +170765201467,214,0 +170765201515,214,0 +170765201563,214,0 +170765201611,215,0 +170765201659,215,0 +170765201707,215,0 +170765201756,215,0 +170765201806,216,0 +170765201854,216,0 +170765201902,216,0 +170765201951,216,0 +170765201999,216,0 +170765202048,216,0 +170765202096,216,0 +170765202144,215,0 +170765202192,213,0 +170765202240,214,0 +170765202288,214,0 +170765202336,214,0 +170765202384,214,0 +170765202432,214,0 +170765202481,215,0 +170765202531,215,0 +170765202578,215,0 +170765202626,215,0 +170765202674,215,0 +170765202724,216,0 +170765202771,216,0 +170765202819,216,0 +170765202867,216,0 +170765202915,216,0 +170765202965,216,0 +170765203012,214,0 +170765203060,213,0 +170765203108,214,0 +170765203156,214,0 +170765203204,214,0 +170765203252,214,0 +170765203300,214,0 +170765203348,214,0 +170765203396,215,0 +170765203445,215,0 +170765203495,215,0 +170765203543,215,0 +170765203590,215,0 +170765203638,216,0 +170765203686,215,0 +170765203734,216,0 +170765203782,216,0 +170765203830,214,0 +170765203877,213,0 +170765203925,213,0 +170765203973,214,0 +170765204021,214,0 +170765204071,214,0 +170765204119,214,0 +170765204168,214,0 +170765204216,215,0 +170765204264,215,0 +170765204312,214,0 +170765204360,215,0 +170765204408,215,0 +170765204456,216,0 +170765204504,216,0 +170765204553,215,0 +170765204601,216,0 +170765204649,215,0 +170765204699,213,0 +170765204747,213,0 +170765204795,213,0 +170765204844,213,0 +170765204892,214,0 +170765204940,214,0 +170765204988,214,0 +170765205037,214,0 +170765205085,214,0 +170765205134,215,0 +170765205182,215,0 +170765205230,215,0 +170765205278,215,0 +170765205326,215,0 +170765205373,216,0 +170765205421,215,0 +170765205469,215,0 +170765205517,213,0 +170765205565,213,0 +170765205614,214,0 +170765205662,214,0 +170765205710,214,0 +170765205758,214,0 +170765205806,214,0 +170765205855,214,0 +170765205903,215,0 +170765205951,215,0 +170765206001,215,0 +170765206050,215,0 +170765206098,215,0 +170765206146,215,0 +170765206195,215,0 +170765206243,216,0 +170765206293,215,0 +170765206341,214,0 +170765206389,213,0 +170765206438,213,0 +170765206488,214,0 +170765206536,214,0 +170765206585,214,0 +170765206633,214,0 +170765206682,214,0 +170765206730,214,0 +170765206778,214,0 +170765206826,215,0 +170765206876,215,0 +170765206925,215,0 +170765206975,216,0 +170765207023,215,0 +170765207072,215,0 +170765207120,216,0 +170765207168,214,0 +170765207216,213,0 +170765207265,213,0 +170765207313,214,0 +170765207361,214,0 +170765207409,214,0 +170765207459,214,0 +170765207508,214,0 +170765207556,215,0 +170765207604,215,0 +170765207652,215,0 +170765207700,215,0 +170765207748,215,0 +170765207795,215,0 +170765207843,216,0 +170765207891,216,0 +170765207940,216,0 +170765207988,215,0 +170765208036,213,0 +170765208084,213,0 +170765208132,213,0 +170765208179,214,0 +170765208227,213,0 +170765208275,214,0 +170765208323,214,0 +170765208371,214,0 +170765208419,214,0 +170765208466,215,0 +170765208514,215,0 +170765208562,215,0 +170765208610,215,0 +170765208658,215,0 +170765208705,216,0 +170765208753,216,0 +170765208801,216,0 +170765208851,213,0 +170765208899,213,0 +170765208948,213,0 +170765208997,214,0 +170765209045,213,0 +170765209093,214,0 +170765209141,214,0 +170765209191,214,0 +170765209238,214,0 +170765209288,214,0 +170765209336,215,0 +170765209384,215,0 +170765209432,215,0 +170765209480,215,0 +170765209529,215,0 +170765209579,215,0 +170765209628,215,0 +170765209676,214,0 +170765209724,213,0 +170765209773,213,0 +170765209821,213,0 +170765209871,214,0 +170765209919,214,0 +170765209967,214,0 +170765210015,214,0 +170765210064,214,0 +170765210112,215,0 +170765210162,215,0 +170765210211,215,0 +170765210259,215,0 +170765210307,215,0 +170765210357,215,0 +170765210406,215,0 +170765210456,215,0 +170765210505,214,0 +170765210555,213,0 +170765210604,213,0 +170765210652,213,0 +170765210702,213,0 +170765210751,213,0 +170765210799,214,0 +170765210847,214,0 +170765210895,214,0 +170765210944,214,0 +170765210994,215,0 +170765211043,215,0 +170765211091,215,0 +170765211139,216,0 +170765211189,216,0 +170765211237,216,0 +170765211286,215,0 +170765211334,214,0 +170765211382,213,0 +170765211430,213,0 +170765211477,213,0 +170765211527,214,0 +170765211575,214,0 +170765211623,214,0 +170765211670,215,0 +170765211718,214,0 +170765211766,215,0 +170765211816,215,0 +170765211864,215,0 +170765211912,215,0 +170765211960,216,0 +170765212007,215,0 +170765212055,216,0 +170765212103,216,0 +170765212151,215,0 +170765212200,213,0 +170765212248,214,0 +170765212297,214,0 +170765212345,214,0 +170765212393,214,0 +170765212441,214,0 +170765212490,215,0 +170765212540,215,0 +170765212588,215,0 +170765212636,215,0 +170765212684,215,0 +170765212732,215,0 +170765212780,216,0 +170765212827,216,0 +170765212877,216,0 +170765212925,215,0 +170765212974,215,0 +170765213022,214,0 +170765213070,214,0 +170765213120,214,0 +170765213168,214,0 +170765213216,214,0 +170765213264,214,0 +170765213312,215,0 +170765213359,215,0 +170765213407,215,0 +170765213455,215,0 +170765213503,215,0 +170765213553,215,0 +170765213601,215,0 +170765213648,215,0 +170765213696,216,0 +170765213744,216,0 +170765213792,216,0 +170765213840,214,0 +170765213888,214,0 +170765213935,213,0 +170765213983,214,0 +170765214031,214,0 +170765214080,214,0 +170765214128,214,0 +170765214176,215,0 +170765214224,214,0 +170765214272,215,0 +170765214320,215,0 +170765214368,215,0 +170765214415,215,0 +170765214463,215,0 +170765214513,216,0 +170765214561,216,0 +170765214608,216,0 +170765214656,214,0 +170765214704,214,0 +170765214752,214,0 +170765214801,214,0 +170765214849,214,0 +170765214897,214,0 +170765214945,214,0 +170765214995,214,0 +170765215044,215,0 +170765215094,215,0 +170765215143,215,0 +170765215191,215,0 +170765215239,215,0 +170765215287,215,0 +170765215335,215,0 +170765215383,216,0 +170765215431,216,0 +170765215479,214,0 +170765215526,214,0 +170765215574,214,0 +170765215622,214,0 +170765215670,214,0 +170765215718,214,0 +170765215766,215,0 +170765215815,215,0 +170765215863,215,0 +170765215911,215,0 +170765215958,215,0 +170765216006,215,0 +170765216054,216,0 +170765216102,216,0 +170765216152,216,0 +170765216200,216,0 +170765216247,215,0 +170765216295,216,0 +170765216343,215,0 +170765216391,215,0 +170765216439,215,0 +170765216487,215,0 +170765216535,215,0 +170765216583,215,0 +170765216630,215,0 +170765216678,216,0 +170765216726,216,0 +170765216774,216,0 +170765216822,216,0 +170765216870,216,0 +170765216918,216,0 +170765216965,216,0 +170765217015,216,0 +170765217063,215,0 +170765217111,215,0 +170765217158,214,0 +170765217206,214,0 +170765217254,214,0 +170765217302,214,0 +170765217350,215,0 +170765217399,215,0 +170765217449,215,0 +170765217497,215,0 +170765217545,215,0 +170765217593,216,0 +170765217640,215,0 +170765217688,216,0 +170765217736,216,0 +170765217784,216,0 +170765217832,216,0 +170765217880,216,0 +170765217929,215,0 +170765217977,214,0 +170765218025,214,0 +170765218073,214,0 +170765218121,214,0 +170765218169,214,0 +170765218217,214,0 +170765218265,214,0 +170765218313,215,0 +170765218363,215,0 +170765218411,215,0 +170765218460,216,0 +170765218509,215,0 +170765218557,216,0 +170765218605,215,0 +170765218655,216,0 +170765218703,216,0 +170765218751,216,0 +170765218800,214,0 +170765218848,213,0 +170765218896,214,0 +170765218944,214,0 +170765218992,214,0 +170765219041,214,0 +170765219089,214,0 +170765219137,214,0 +170765219185,215,0 +170765219233,215,0 +170765219281,215,0 +170765219331,215,0 +170765219378,215,0 +170765219428,216,0 +170765219476,216,0 +170765219524,216,0 +170765219572,215,0 +170765219621,214,0 +170765219671,213,0 +170765219720,214,0 +170765219770,214,0 +170765219817,214,0 +170765219865,214,0 +170765219913,214,0 +170765219961,214,0 +170765220009,214,0 +170765220057,215,0 +170765220106,215,0 +170765220156,215,0 +170765220205,215,0 +170765220253,215,0 +170765220303,215,0 +170765220351,215,0 +170765220400,215,0 +170765220450,213,0 +170765220498,213,0 +170765220547,214,0 +170765220597,213,0 +170765220645,214,0 +170765220692,214,0 +170765220740,214,0 +170765220788,214,0 +170765220836,215,0 +170765220884,215,0 +170765220932,215,0 +170765220980,215,0 +170765221028,215,0 +170765221076,215,0 +170765221125,215,0 +170765221173,216,0 +170765221221,215,0 +170765221269,213,0 +170765221317,213,0 +170765221365,213,0 +170765221415,214,0 +170765221462,214,0 +170765221510,214,0 +170765221560,214,0 +170765221608,214,0 +170765221657,215,0 +170765221705,215,0 +170765221753,215,0 +170765221801,215,0 +170765221849,215,0 +170765221898,215,0 +170765221946,216,0 +170765221996,216,0 +170765222045,215,0 +170765222093,214,0 +170765222142,213,0 +170765222192,213,0 +170765222240,214,0 +170765222287,213,0 +170765222337,214,0 +170765222385,214,0 +170765222434,214,0 +170765222482,214,0 +170765222530,214,0 +170765222578,215,0 +170765222626,215,0 +170765222674,215,0 +170765222722,215,0 +170765222769,215,0 +170765222817,215,0 +170765222865,215,0 +170765222913,214,0 +170765222961,213,0 +170765223009,213,0 +170765223058,213,0 +170765223108,213,0 +170765223156,214,0 +170765223205,214,0 +170765223255,214,0 +170765223302,214,0 +170765223350,214,0 +170765223398,214,0 +170765223446,215,0 +170765223494,215,0 +170765223542,215,0 +170765223590,215,0 +170765223638,215,0 +170765223686,215,0 +170765223733,214,0 +170765223781,213,0 +170765223829,213,0 +170765223879,213,0 +170765223926,214,0 +170765223974,214,0 +170765224022,214,0 +170765224070,213,0 +170765224118,214,0 +170765224166,214,0 +170765224214,215,0 +170765224262,215,0 +170765224311,215,0 +170765224359,215,0 +170765224407,215,0 +170765224456,215,0 +170765224506,215,0 +170765224554,214,0 +170765224602,213,0 +170765224649,214,0 +170765224697,213,0 +170765224747,214,0 +170765224796,214,0 +170765224845,214,0 +170765224895,214,0 +170765224944,214,0 +170765224992,214,0 +170765225040,215,0 +170765225089,215,0 +170765225137,215,0 +170765225185,215,0 +170765225233,215,0 +170765225281,216,0 +170765225328,215,0 +170765225376,214,0 +170765225424,213,0 +170765225472,213,0 +170765225520,213,0 +170765225569,214,0 +170765225617,214,0 +170765225665,214,0 +170765225713,214,0 +170765225760,214,0 +170765225808,215,0 +170765225856,215,0 +170765225904,215,0 +170765225952,216,0 +170765225999,215,0 +170765226047,215,0 +170765226095,216,0 +170765226143,215,0 +170765226191,214,0 +170765226239,214,0 +170765226287,214,0 +170765226336,214,0 +170765226384,214,0 +170765226432,214,0 +170765226480,215,0 +170765226528,215,0 +170765226577,215,0 +170765226625,215,0 +170765226673,215,0 +170765226721,215,0 +170765226768,215,0 +170765226816,216,0 +170765226864,216,0 +170765226912,215,0 +170765226960,215,0 +170765227007,214,0 +170765227055,214,0 +170765227103,214,0 +170765227151,214,0 +170765227200,214,0 +170765227248,214,0 +170765227296,215,0 +170765227344,215,0 +170765227392,215,0 +170765227440,215,0 +170765227487,216,0 +170765227535,216,0 +170765227583,216,0 +170765227631,216,0 +170765227681,216,0 +170765227729,215,0 +170765227778,215,0 +170765227827,214,0 +170765227875,214,0 +170765227925,214,0 +170765227973,214,0 +170765228020,214,0 +170765228068,215,0 +170765228116,215,0 +170765228164,215,0 +170765228214,215,0 +170765228263,215,0 +170765228311,215,0 +170765228359,215,0 +170765228407,215,0 +170765228456,215,0 +170765228506,216,0 +170765228555,215,0 +170765228603,215,0 +170765228651,214,0 +170765228699,214,0 +170765228747,214,0 +170765228795,214,0 +170765228844,214,0 +170765228892,214,0 +170765228940,215,0 +170765228988,215,0 +170765229036,215,0 +170765229084,215,0 +170765229131,216,0 +170765229179,215,0 +170765229227,216,0 +170765229277,216,0 +170765229326,216,0 +170765229374,216,0 +170765229422,214,0 +170765229470,214,0 +170765229518,214,0 +170765229567,214,0 +170765229615,214,0 +170765229663,214,0 +170765229711,214,0 +170765229759,215,0 +170765229806,215,0 +170765229856,215,0 +170765229905,215,0 +170765229955,216,0 +170765230003,215,0 +170765230051,215,0 +170765230099,216,0 +170765230147,216,0 +170765230195,215,0 +170765230244,214,0 +170765230292,214,0 +170765230340,214,0 +170765230388,214,0 +170765230436,215,0 +170765230484,215,0 +170765230532,215,0 +170765230579,215,0 +170765230627,215,0 +170765230675,216,0 +170765230725,216,0 +170765230772,216,0 +170765230822,216,0 +170765230870,215,0 +170765230919,216,0 +170765230969,216,0 +170765231017,215,0 +170765231065,214,0 +170765231114,214,0 +170765231162,214,0 +170765231212,215,0 +170765231260,215,0 +170765231308,215,0 +170765231356,215,0 +170765231405,215,0 +170765231453,216,0 +170765231503,216,0 +170765231551,216,0 +170765231598,216,0 +170765231648,216,0 +170765231696,216,0 +170765231744,216,0 +170765231792,216,0 +170765231840,216,0 +170765231888,213,0 +170765231936,214,0 +170765231984,214,0 +170765232032,214,0 +170765232081,214,0 +170765232129,214,0 +170765232177,214,0 +170765232225,215,0 +170765232273,216,0 +170765232321,215,0 +170765232369,215,0 +170765232417,215,0 +170765232466,215,0 +170765232514,216,0 +170765232562,215,0 +170765232610,216,0 +170765232658,215,0 +170765232706,214,0 +170765232754,214,0 +170765232802,214,0 +170765232851,214,0 +170765232899,214,0 +170765232949,214,0 +170765232997,214,0 +170765233046,214,0 +170765233094,215,0 +170765233144,215,0 +170765233192,215,0 +170765233240,215,0 +170765233289,215,0 +170765233337,216,0 +170765233386,216,0 +170765233436,216,0 +170765233484,214,0 +170765233532,214,0 +170765233580,214,0 +170765233629,214,0 +170765233677,214,0 +170765233725,214,0 +170765233773,214,0 +170765233822,215,0 +170765233870,215,0 +170765233918,215,0 +170765233968,215,0 +170765234017,216,0 +170765234065,215,0 +170765234113,215,0 +170765234161,216,0 +170765234209,216,0 +170765234257,215,0 +170765234305,214,0 +170765234353,214,0 +170765234401,214,0 +170765234449,214,0 +170765234497,214,0 +170765234545,214,0 +170765234592,215,0 +170765234640,215,0 +170765234688,215,0 +170765234736,216,0 +170765234784,216,0 +170765234834,215,0 +170765234882,216,0 +170765234930,216,0 +170765234978,216,0 +170765235026,216,0 +170765235073,215,0 +170765235121,214,0 +170765235169,214,0 +170765235217,214,0 +170765235265,214,0 +170765235313,215,0 +170765235361,215,0 +170765235411,215,0 +170765235459,215,0 +170765235507,215,0 +170765235554,216,0 +170765235604,216,0 +170765235652,216,0 +170765235700,216,0 +170765235748,216,0 +170765235797,216,0 +170765235845,216,0 +170765235893,215,0 +170765235941,214,0 +170765235990,213,0 +170765236040,214,0 +170765236088,214,0 +170765236136,214,0 +170765236183,214,0 +170765236231,215,0 +170765236279,215,0 +170765236327,215,0 +170765236377,215,0 +170765236425,216,0 +170765236474,216,0 +170765236524,216,0 +170765236571,216,0 +170765236621,215,0 +170765236669,216,0 +170765236717,214,0 +170765236765,213,0 +170765236813,214,0 +170765236861,214,0 +170765236909,214,0 +170765236956,214,0 +170765237006,215,0 +170765237054,214,0 +170765237103,215,0 +170765237151,215,0 +170765237199,215,0 +170765237247,215,0 +170765237295,216,0 +170765237343,215,0 +170765237390,216,0 +170765237438,216,0 +170765237486,215,0 +170765237536,213,0 +170765237584,213,0 +170765237632,214,0 +170765237681,213,0 +170765237731,214,0 +170765237779,214,0 +170765237827,214,0 +170765237876,214,0 +170765237924,215,0 +170765237972,215,0 +170765238021,215,0 +170765238069,215,0 +170765238117,215,0 +170765238167,216,0 +170765238215,216,0 +170765238263,216,0 +170765238312,215,0 +170765238360,213,0 +170765238408,213,0 +170765238457,213,0 +170765238505,213,0 +170765238553,213,0 +170765238601,214,0 +170765238648,214,0 +170765238698,214,0 +170765238747,215,0 +170765238795,215,0 +170765238843,215,0 +170765238891,215,0 +170765238940,215,0 +170765238988,216,0 +170765239036,216,0 +170765239084,215,0 +170765239133,214,0 +170765239183,213,0 +170765239231,213,0 +170765239280,213,0 +170765239330,214,0 +170765239379,214,0 +170765239429,214,0 +170765239477,214,0 +170765239525,215,0 +170765239574,215,0 +170765239624,215,0 +170765239672,215,0 +170765239720,215,0 +170765239768,215,0 +170765239816,215,0 +170765239863,216,0 +170765239911,215,0 +170765239959,214,0 +170765240007,214,0 +170765240055,214,0 +170765240104,215,0 +170765240152,214,0 +170765240200,215,0 +170765240248,215,0 +170765240296,215,0 +170765240344,215,0 +170765240392,215,0 +170765240439,215,0 +170765240487,215,0 +170765240535,216,0 +170765240583,216,0 +170765240632,216,0 +170765240682,216,0 +170765240730,216,0 +170765240777,214,0 +170765240827,214,0 +170765240875,215,0 +170765240922,215,0 +170765240970,215,0 +170765241018,215,0 +170765241066,215,0 +170765241113,215,0 +170765241161,216,0 +170765241209,216,0 +170765241257,216,0 +170765241305,215,0 +170765241353,216,0 +170765241401,216,0 +170765241450,216,0 +170765241498,216,0 +170765241546,215,0 +170765241593,214,0 +170765241641,214,0 +170765241689,214,0 +170765241737,214,0 +170765241785,215,0 +170765241833,215,0 +170765241881,215,0 +170765241929,215,0 +170765241976,215,0 +170765242026,215,0 +170765242074,215,0 +170765242123,216,0 +170765242171,215,0 +170765242221,215,0 +170765242270,216,0 +170765242320,216,0 +170765242369,214,0 +170765242417,214,0 +170765242467,214,0 +170765242516,214,0 +170765242564,214,0 +170765242613,214,0 +170765242663,214,0 +170765242711,215,0 +170765242759,215,0 +170765242807,215,0 +170765242856,215,0 +170765242906,215,0 +170765242955,216,0 +170765243003,216,0 +170765243051,216,0 +170765243099,216,0 +170765243149,215,0 +170765243198,214,0 +170765243246,214,0 +170765243296,214,0 +170765243345,214,0 +170765243393,214,0 +170765243441,214,0 +170765243489,215,0 +170765243537,215,0 +170765243585,215,0 +170765243633,215,0 +170765243682,215,0 +170765243730,215,0 +170765243778,216,0 +170765243826,215,0 +170765243875,216,0 +170765243925,215,0 +170765243973,215,0 +170765244022,214,0 +170765244070,214,0 +170765244118,214,0 +170765244166,215,0 +170765244216,215,0 +170765244264,215,0 +170765244313,215,0 +170765244361,215,0 +170765244409,216,0 +170765244459,216,0 +170765244508,216,0 +170765244556,216,0 +170765244604,216,0 +170765244654,216,0 +170765244702,216,0 +170765244749,216,0 +170765244797,214,0 +170765244847,214,0 +170765244896,214,0 +170765244944,214,0 +170765244992,215,0 +170765245040,215,0 +170765245088,215,0 +170765245136,215,0 +170765245184,216,0 +170765245232,216,0 +170765245280,216,0 +170765245329,216,0 +170765245379,216,0 +170765245427,216,0 +170765245475,216,0 +170765245523,216,0 +170765245571,216,0 +170765245619,214,0 +170765245668,214,0 +170765245716,214,0 +170765245766,214,0 +170765245814,214,0 +170765245861,214,0 +170765245909,215,0 +170765245957,215,0 +170765246007,215,0 +170765246055,215,0 +170765246103,215,0 +170765246151,215,0 +170765246200,216,0 +170765246248,216,0 +170765246296,216,0 +170765246345,216,0 +170765246393,216,0 +170765246441,214,0 +170765246489,213,0 +170765246537,214,0 +170765246585,214,0 +170765246635,214,0 +170765246684,214,0 +170765246732,215,0 +170765246780,215,0 +170765246829,215,0 +170765246879,215,0 +170765246927,215,0 +170765246975,216,0 +170765247023,216,0 +170765247071,216,0 +170765247120,215,0 +170765247168,216,0 +170765247216,214,0 +170765247264,213,0 +170765247312,213,0 +170765247359,214,0 +170765247407,214,0 +170765247455,214,0 +170765247503,214,0 +170765247551,214,0 +170765247599,215,0 +170765247647,215,0 +170765247694,215,0 +170765247742,216,0 +170765247790,216,0 +170765247838,215,0 +170765247886,216,0 +170765247934,214,0 +170765247981,215,0 +170765248029,214,0 +170765248077,213,0 +170765248127,213,0 +170765248176,214,0 +170765248224,214,0 +170765248274,214,0 +170765248322,214,0 +170765248370,214,0 +170765248417,215,0 +170765248465,215,0 +170765248513,215,0 +170765248561,215,0 +170765248609,215,0 +170765248657,216,0 +170765248705,216,0 +170765248754,215,0 +170765248802,215,0 +170765248852,213,0 +170765248901,213,0 +170765248949,214,0 +170765248997,214,0 +170765249046,214,0 +170765249096,214,0 +170765249144,214,0 +170765249193,214,0 +170765249243,214,0 +170765249291,215,0 +170765249339,215,0 +170765249386,215,0 +170765249434,215,0 +170765249482,215,0 +170765249530,215,0 +170765249578,215,0 +170765249626,215,0 +170765249673,213,0 +170765249721,213,0 +170765249769,214,0 +170765249817,214,0 +170765249865,214,0 +170765249913,214,0 +170765249962,214,0 +170765250010,214,0 +170765250058,214,0 +170765250108,215,0 +170765250156,215,0 +170765250205,215,0 +170765250253,215,0 +170765250302,215,0 +170765250350,215,0 +170765250398,216,0 +170765250448,214,0 +170765250497,214,0 +170765250545,214,0 +170765250595,214,0 +170765250643,214,0 +170765250692,214,0 +170765250740,215,0 +170765250788,215,0 +170765250836,215,0 +170765250884,215,0 +170765250933,215,0 +170765250981,215,0 +170765251031,215,0 +170765251079,216,0 +170765251127,216,0 +170765251176,216,0 +170765251224,215,0 +170765251272,214,0 +170765251320,214,0 +170765251368,214,0 +170765251415,214,0 +170765251463,214,0 +170765251511,215,0 +170765251559,214,0 +170765251607,215,0 +170765251655,215,0 +170765251703,215,0 +170765251750,215,0 +170765251798,216,0 +170765251846,216,0 +170765251894,216,0 +170765251942,215,0 +170765251990,215,0 +170765252037,215,0 +170765252085,214,0 +170765252133,214,0 +170765252181,214,0 +170765252229,214,0 +170765252278,214,0 +170765252326,214,0 +170765252374,215,0 +170765252422,215,0 +170765252470,215,0 +170765252518,216,0 +170765252566,216,0 +170765252615,216,0 +170765252663,216,0 +170765252713,216,0 +170765252761,216,0 +170765252809,215,0 +170765252857,214,0 +170765252906,215,0 +170765252954,215,0 +170765253002,215,0 +170765253051,215,0 +170765253099,215,0 +170765253149,216,0 +170765253197,215,0 +170765253246,216,0 +170765253296,216,0 +170765253345,216,0 +170765253395,216,0 +170765253443,216,0 +170765253491,216,0 +170765253540,216,0 +170765253588,216,0 +170765253637,214,0 +170765253685,214,0 +170765253735,215,0 +170765253783,215,0 +170765253831,215,0 +170765253878,215,0 +170765253926,215,0 +170765253974,216,0 +170765254022,216,0 +170765254070,216,0 +170765254117,216,0 +170765254165,216,0 +170765254213,216,0 +170765254262,216,0 +170765254310,216,0 +170765254358,216,0 +170765254405,215,0 +170765254453,214,0 +170765254501,214,0 +170765254549,214,0 +170765254598,215,0 +170765254646,215,0 +170765254696,215,0 +170765254745,215,0 +170765254793,215,0 +170765254841,215,0 +170765254889,216,0 +170765254937,216,0 +170765254985,215,0 +170765255033,216,0 +170765255081,216,0 +170765255128,216,0 +170765255176,216,0 +170765255226,214,0 +170765255274,213,0 +170765255323,214,0 +170765255373,214,0 +170765255421,214,0 +170765255469,214,0 +170765255517,214,0 +170765255565,215,0 +170765255613,215,0 +170765255661,215,0 +170765255708,215,0 +170765255758,215,0 +170765255806,215,0 +170765255854,215,0 +170765255902,215,0 +170765255950,215,0 +170765255998,215,0 +170765256047,214,0 +170765256095,214,0 +170765256144,214,0 +170765256192,214,0 +170765256240,214,0 +170765256288,214,0 +170765256336,214,0 +170765256386,215,0 +170765256434,215,0 +170765256481,215,0 +170765256529,216,0 +170765256577,216,0 +170765256625,216,0 +170765256673,215,0 +170765256721,216,0 +170765256769,215,0 +170765256817,214,0 +170765256867,214,0 +170765256914,214,0 +170765256964,214,0 +170765257012,214,0 +170765257061,215,0 +170765257109,215,0 +170765257157,215,0 +170765257207,215,0 +170765257256,215,0 +170765257304,215,0 +170765257354,215,0 +170765257403,216,0 +170765257451,216,0 +170765257501,216,0 +170765257549,216,0 +170765257597,214,0 +170765257645,214,0 +170765257694,214,0 +170765257742,215,0 +170765257790,215,0 +170765257840,215,0 +170765257888,215,0 +170765257937,216,0 +170765257985,215,0 +170765258033,216,0 +170765258082,216,0 +170765258130,216,0 +170765258178,216,0 +170765258226,216,0 +170765258274,215,0 +170765258322,216,0 +170765258370,214,0 +170765258417,214,0 +170765258465,214,0 +170765258513,214,0 +170765258561,215,0 +170765258609,215,0 +170765258657,215,0 +170765258705,216,0 +170765258753,216,0 +170765258801,216,0 +170765258850,216,0 +170765258900,216,0 +170765258948,216,0 +170765258995,216,0 +170765259043,216,0 +170765259091,216,0 +170765259139,215,0 +170765259187,213,0 +170765259235,214,0 +170765259283,214,0 +170765259332,214,0 +170765259380,214,0 +170765259428,215,0 +170765259478,214,0 +170765259526,215,0 +170765259575,215,0 +170765259623,215,0 +170765259673,216,0 +170765259722,215,0 +170765259770,216,0 +170765259818,216,0 +170765259866,216,0 +170765259914,215,0 +170765259962,213,0 +170765260011,213,0 +170765260059,214,0 +170765260109,214,0 +170765260158,214,0 +170765260206,214,0 +170765260254,214,0 +170765260302,215,0 +170765260350,215,0 +170765260399,215,0 +170765260449,215,0 +170765260497,215,0 +170765260545,216,0 +170765260594,216,0 +170765260644,216,0 +170765260692,216,0 +170765260740,214,0 +170765260787,213,0 +170765260835,214,0 +170765260885,214,0 +170765260933,214,0 +170765260980,214,0 +170765261028,214,0 +170765261076,214,0 +170765261124,214,0 +170765261172,215,0 +170765261220,215,0 +170765261268,215,0 +170765261317,215,0 +170765261365,215,0 +170765261414,216,0 +170765261462,215,0 +170765261510,214,0 +170765261558,214,0 +170765261607,214,0 +170765261655,214,0 +170765261705,214,0 +170765261754,214,0 +170765261802,214,0 +170765261852,215,0 +170765261901,215,0 +170765261949,215,0 +170765261997,215,0 +170765262046,215,0 +170765262096,215,0 +170765262144,215,0 +170765262192,215,0 +170765262240,215,0 +170765262289,214,0 +170765262337,214,0 +170765262387,214,0 +170765262436,214,0 +170765262484,214,0 +170765262532,215,0 +170765262580,215,0 +170765262628,215,0 +170765262677,215,0 +170765262727,215,0 +170765262774,215,0 +170765262822,216,0 +170765262872,215,0 +170765262920,216,0 +170765262968,216,0 +170765263016,215,0 +170765263063,216,0 +170765263111,214,0 +170765263161,214,0 +170765263209,214,0 +170765263257,214,0 +170765263305,215,0 +170765263354,215,0 +170765263402,215,0 +170765263450,216,0 +170765263499,215,0 +170765263547,215,0 +170765263597,215,0 +170765263646,216,0 +170765263696,216,0 +170765263745,216,0 +170765263793,216,0 +170765263843,215,0 +170765263891,214,0 +170765263939,214,0 +170765263987,214,0 +170765264035,214,0 +170765264083,214,0 +170765264132,215,0 +170765264180,214,0 +170765264230,215,0 +170765264278,215,0 +170765264326,215,0 +170765264375,216,0 +170765264423,215,0 +170765264472,216,0 +170765264520,216,0 +170765264568,216,0 +170765264618,215,0 +170765264667,214,0 +170765264717,213,0 +170765264766,214,0 +170765264816,214,0 +170765264865,214,0 +170765264913,214,0 +170765264962,214,0 +170765265010,215,0 +170765265058,215,0 +170765265106,215,0 +170765265156,215,0 +170765265204,215,0 +170765265252,216,0 +170765265301,216,0 +170765265349,216,0 +170765265397,216,0 +170765265445,214,0 +170765265493,214,0 +170765265541,214,0 +170765265589,214,0 +170765265637,214,0 +170765265684,214,0 +170765265732,214,0 +170765265780,215,0 +170765265830,215,0 +170765265879,215,0 +170765265929,215,0 +170765265977,216,0 +170765266025,216,0 +170765266073,216,0 +170765266121,217,0 +170765266170,216,0 +170765266218,215,0 +170765266266,214,0 +170765266314,214,0 +170765266362,214,0 +170765266411,214,0 +170765266459,214,0 +170765266509,215,0 +170765266557,215,0 +170765266606,215,0 +170765266656,215,0 +170765266705,216,0 +170765266755,216,0 +170765266804,216,0 +170765266852,216,0 +170765266902,216,0 +170765266950,216,0 +170765266999,215,0 +170765267047,214,0 +170765267095,214,0 +170765267143,214,0 +170765267191,214,0 +170765267240,215,0 +170765267290,215,0 +170765267337,215,0 +170765267385,215,0 +170765267433,215,0 +170765267481,215,0 +170765267529,215,0 +170765267577,215,0 +170765267625,215,0 +170765267673,215,0 +170765267723,216,0 +170765267770,215,0 +170765267820,214,0 +170765267869,214,0 +170765267919,214,0 +170765267967,214,0 +170765268015,214,0 +170765268064,215,0 +170765268112,215,0 +170765268162,215,0 +170765268210,215,0 +170765268259,215,0 +170765268307,215,0 +170765268357,215,0 +170765268406,216,0 +170765268456,216,0 +170765268505,216,0 +170765268553,215,0 +170765268601,214,0 +170765268649,214,0 +170765268697,214,0 +170765268745,214,0 +170765268793,214,0 +170765268842,214,0 +170765268890,215,0 +170765268940,215,0 +170765268989,215,0 +170765269037,215,0 +170765269085,215,0 +170765269133,215,0 +170765269181,216,0 +170765269229,216,0 +170765269277,216,0 +170765269325,215,0 +170765269372,216,0 +170765269420,215,0 +170765269468,214,0 +170765269516,214,0 +170765269564,215,0 +170765269614,215,0 +170765269663,215,0 +170765269711,215,0 +170765269759,215,0 +170765269807,215,0 +170765269855,215,0 +170765269903,216,0 +170765269951,216,0 +170765270000,216,0 +170765270048,216,0 +170765270096,216,0 +170765270144,216,0 +170765270192,215,0 +170765270241,215,0 +170765270289,215,0 +170765270339,215,0 +170765270388,216,0 +170765270437,215,0 +170765270485,215,0 +170765270533,216,0 +170765270581,216,0 +170765270629,216,0 +170765270679,216,0 +170765270727,216,0 +170765270775,216,0 +170765270824,216,0 +170765270872,215,0 +170765270922,216,0 +170765270971,215,0 +170765271019,215,0 +170765271067,215,0 +170765271115,215,0 +170765271163,215,0 +170765271212,216,0 +170765271260,215,0 +170765271310,216,0 +170765271358,216,0 +170765271405,216,0 +170765271453,216,0 +170765271501,216,0 +170765271549,216,0 +170765271597,216,0 +170765271647,215,0 +170765271696,216,0 +170765271744,214,0 +170765271792,214,0 +170765271839,214,0 +170765271887,215,0 +170765271935,215,0 +170765271983,215,0 +170765272031,215,0 +170765272079,215,0 +170765272127,215,0 +170765272174,215,0 +170765272222,215,0 +170765272270,216,0 +170765272320,215,0 +170765272368,216,0 +170765272416,216,0 +170765272465,216,0 +170765272514,216,0 +170765272562,214,0 +170765272610,214,0 +170765272660,214,0 +170765272708,214,0 +170765272756,214,0 +170765272803,214,0 +170765272851,215,0 +170765272899,214,0 +170765272947,216,0 +170765272995,215,0 +170765273043,216,0 +170765273091,216,0 +170765273139,216,0 +170765273187,216,0 +170765273236,216,0 +170765273284,216,0 +170765273332,214,0 +170765273382,214,0 +170765273431,214,0 +170765273479,214,0 +170765273529,214,0 +170765273577,215,0 +170765273624,215,0 +170765273672,215,0 +170765273720,215,0 +170765273768,215,0 +170765273818,215,0 +170765273867,216,0 +170765273915,216,0 +170765273964,216,0 +170765274014,216,0 +170765274062,216,0 +170765274111,214,0 +170765274159,214,0 +170765274207,214,0 +170765274255,214,0 +170765274303,214,0 +170765274352,214,0 +170765274400,215,0 +170765274448,215,0 +170765274496,215,0 +170765274544,215,0 +170765274592,216,0 +170765274640,216,0 +170765274688,216,0 +170765274736,216,0 +170765274784,216,0 +170765274832,216,0 +170765274880,215,0 +170765274928,213,0 +170765274976,214,0 +170765275024,214,0 +170765275071,214,0 +170765275121,214,0 +170765275170,214,0 +170765275218,214,0 +170765275268,215,0 +170765275316,215,0 +170765275364,215,0 +170765275412,215,0 +170765275460,216,0 +170765275507,215,0 +170765275557,216,0 +170765275605,216,0 +170765275653,216,0 +170765275702,214,0 +170765275752,214,0 +170765275800,214,0 +170765275848,214,0 +170765275896,214,0 +170765275944,214,0 +170765275992,214,0 +170765276039,215,0 +170765276087,214,0 +170765276135,215,0 +170765276183,216,0 +170765276231,216,0 +170765276279,215,0 +170765276327,215,0 +170765276375,216,0 +170765276423,215,0 +170765276471,214,0 +170765276521,213,0 +170765276569,214,0 +170765276617,213,0 +170765276665,214,0 +170765276712,214,0 +170765276760,214,0 +170765276808,214,0 +170765276858,215,0 +170765276906,214,0 +170765276954,215,0 +170765277003,215,0 +170765277051,215,0 +170765277099,215,0 +170765277147,216,0 +170765277195,215,0 +170765277243,214,0 +170765277291,213,0 +170765277341,213,0 +170765277388,214,0 +170765277436,214,0 +170765277486,214,0 +170765277534,214,0 +170765277582,214,0 +170765277631,215,0 +170765277679,215,0 +170765277727,215,0 +170765277775,215,0 +170765277823,216,0 +170765277871,215,0 +170765277919,215,0 +170765277967,216,0 +170765278015,216,0 +170765278063,214,0 +170765278111,214,0 +170765278160,214,0 +170765278208,215,0 +170765278256,215,0 +170765278304,215,0 +170765278352,215,0 +170765278399,215,0 +170765278447,215,0 +170765278495,215,0 +170765278545,216,0 +170765278594,215,0 +170765278642,216,0 +170765278690,216,0 +170765278738,216,0 +170765278785,215,0 +170765278833,215,0 +170765278881,215,0 +170765278929,214,0 +170765278977,215,0 +170765279025,215,0 +170765279073,215,0 +170765279121,215,0 +170765279169,215,0 +170765279216,216,0 +170765279264,216,0 +170765279314,216,0 +170765279363,215,0 +170765279413,216,0 +170765279461,216,0 +170765279510,216,0 +170765279558,216,0 +170765279608,214,0 +170765279657,214,0 +170765279705,214,0 +170765279753,214,0 +170765279801,214,0 +170765279849,215,0 +170765279899,215,0 +170765279948,215,0 +170765279996,215,0 diff --git a/laser_value/0211-22.csv b/laser_value/0211-22.csv new file mode 100644 index 0000000..b450b06 --- /dev/null +++ b/laser_value/0211-22.csv @@ -0,0 +1,7451 @@ +timestamp,laser_value,event +170765280045,216,0 +170765280093,215,0 +170765280141,216,0 +170765280188,216,0 +170765280238,216,0 +170765280286,216,0 +170765280335,216,0 +170765280385,215,0 +170765280433,214,0 +170765280481,214,0 +170765280530,214,0 +170765280580,214,0 +170765280629,214,0 +170765280677,214,0 +170765280727,215,0 +170765280775,215,0 +170765280823,215,0 +170765280872,215,0 +170765280920,215,0 +170765280970,215,0 +170765281019,216,0 +170765281067,215,0 +170765281117,215,0 +170765281164,215,0 +170765281212,214,0 +170765281260,214,0 +170765281309,214,0 +170765281357,214,0 +170765281407,215,0 +170765281455,215,0 +170765281503,215,0 +170765281551,215,0 +170765281599,215,0 +170765281646,215,0 +170765281694,215,0 +170765281742,216,0 +170765281790,216,0 +170765281838,216,0 +170765281888,216,0 +170765281936,215,0 +170765281985,215,0 +170765282033,215,0 +170765282082,215,0 +170765282130,215,0 +170765282180,215,0 +170765282228,215,0 +170765282276,216,0 +170765282324,216,0 +170765282372,216,0 +170765282420,216,0 +170765282467,216,0 +170765282515,216,0 +170765282563,216,0 +170765282611,216,0 +170765282659,216,0 +170765282707,215,0 +170765282755,215,0 +170765282805,215,0 +170765282852,215,0 +170765282900,216,0 +170765282950,216,0 +170765282998,216,0 +170765283047,216,0 +170765283095,216,0 +170765283143,216,0 +170765283191,216,0 +170765283240,216,0 +170765283290,216,0 +170765283340,216,0 +170765283387,216,0 +170765283435,216,0 +170765283485,216,0 +170765283534,215,0 +170765283584,215,0 +170765283632,214,0 +170765283680,215,0 +170765283729,215,0 +170765283779,216,0 +170765283828,216,0 +170765283876,215,0 +170765283926,216,0 +170765283974,216,0 +170765284022,216,0 +170765284070,216,0 +170765284119,216,0 +170765284167,216,0 +170765284215,216,0 +170765284263,216,0 +170765284311,215,0 +170765284359,214,0 +170765284407,214,0 +170765284455,214,0 +170765284503,214,0 +170765284552,215,0 +170765284602,215,0 +170765284650,215,0 +170765284699,215,0 +170765284747,215,0 +170765284797,216,0 +170765284846,216,0 +170765284895,216,0 +170765284945,216,0 +170765284993,216,0 +170765285041,216,0 +170765285090,215,0 +170765285140,214,0 +170765285188,214,0 +170765285237,214,0 +170765285285,214,0 +170765285335,214,0 +170765285384,215,0 +170765285432,215,0 +170765285480,215,0 +170765285528,215,0 +170765285576,216,0 +170765285625,215,0 +170765285673,216,0 +170765285721,216,0 +170765285769,216,0 +170765285817,216,0 +170765285864,216,0 +170765285912,214,0 +170765285960,214,0 +170765286008,214,0 +170765286057,214,0 +170765286105,214,0 +170765286155,214,0 +170765286203,215,0 +170765286251,215,0 +170765286298,215,0 +170765286346,215,0 +170765286394,216,0 +170765286442,216,0 +170765286490,216,0 +170765286540,216,0 +170765286588,216,0 +170765286636,215,0 +170765286684,214,0 +170765286733,214,0 +170765286782,214,0 +170765286830,214,0 +170765286880,214,0 +170765286928,214,0 +170765286977,215,0 +170765287025,215,0 +170765287073,215,0 +170765287121,215,0 +170765287169,215,0 +170765287217,216,0 +170765287265,215,0 +170765287313,216,0 +170765287361,215,0 +170765287410,216,0 +170765287458,214,0 +170765287506,214,0 +170765287554,214,0 +170765287602,214,0 +170765287650,215,0 +170765287699,215,0 +170765287747,215,0 +170765287797,215,0 +170765287845,215,0 +170765287894,216,0 +170765287942,215,0 +170765287990,216,0 +170765288038,216,0 +170765288086,216,0 +170765288134,216,0 +170765288182,216,0 +170765288231,215,0 +170765288281,213,0 +170765288329,214,0 +170765288376,214,0 +170765288426,213,0 +170765288475,213,0 +170765288525,214,0 +170765288573,214,0 +170765288622,215,0 +170765288670,215,0 +170765288720,215,0 +170765288768,215,0 +170765288816,216,0 +170765288864,215,0 +170765288911,216,0 +170765288959,215,0 +170765289009,216,0 +170765289057,214,0 +170765289105,213,0 +170765289154,214,0 +170765289202,214,0 +170765289252,214,0 +170765289300,214,0 +170765289349,214,0 +170765289398,215,0 +170765289446,215,0 +170765289494,215,0 +170765289544,215,0 +170765289592,215,0 +170765289641,216,0 +170765289689,216,0 +170765289737,216,0 +170765289785,216,0 +170765289833,214,0 +170765289881,213,0 +170765289929,213,0 +170765289977,214,0 +170765290025,214,0 +170765290073,214,0 +170765290121,214,0 +170765290168,215,0 +170765290216,215,0 +170765290264,215,0 +170765290314,215,0 +170765290361,215,0 +170765290409,216,0 +170765290457,215,0 +170765290505,216,0 +170765290553,216,0 +170765290601,215,0 +170765290649,213,0 +170765290696,214,0 +170765290744,214,0 +170765290794,214,0 +170765290842,215,0 +170765290890,215,0 +170765290937,215,0 +170765290985,215,0 +170765291035,215,0 +170765291083,215,0 +170765291131,215,0 +170765291178,215,0 +170765291228,216,0 +170765291276,215,0 +170765291323,215,0 +170765291371,215,0 +170765291421,214,0 +170765291468,214,0 +170765291516,214,0 +170765291564,215,0 +170765291614,215,0 +170765291662,215,0 +170765291709,215,0 +170765291759,216,0 +170765291807,215,0 +170765291857,215,0 +170765291904,215,0 +170765291952,215,0 +170765292000,216,0 +170765292050,216,0 +170765292098,216,0 +170765292147,216,0 +170765292197,214,0 +170765292245,214,0 +170765292294,214,0 +170765292344,214,0 +170765292393,214,0 +170765292442,214,0 +170765292490,215,0 +170765292538,215,0 +170765292588,215,0 +170765292636,215,0 +170765292685,216,0 +170765292733,215,0 +170765292783,216,0 +170765292832,216,0 +170765292882,215,0 +170765292930,216,0 +170765292979,214,0 +170765293027,214,0 +170765293075,214,0 +170765293123,214,0 +170765293171,215,0 +170765293218,215,0 +170765293266,215,0 +170765293314,215,0 +170765293362,215,0 +170765293410,215,0 +170765293458,215,0 +170765293505,215,0 +170765293553,216,0 +170765293601,216,0 +170765293649,216,0 +170765293697,216,0 +170765293746,215,0 +170765293796,214,0 +170765293843,214,0 +170765293893,215,0 +170765293942,215,0 +170765293992,215,0 +170765294041,215,0 +170765294089,215,0 +170765294138,215,0 +170765294186,216,0 +170765294236,216,0 +170765294284,216,0 +170765294332,216,0 +170765294380,216,0 +170765294428,216,0 +170765294477,216,0 +170765294525,216,0 +170765294573,215,0 +170765294622,215,0 +170765294670,214,0 +170765294718,215,0 +170765294766,215,0 +170765294814,215,0 +170765294862,216,0 +170765294910,216,0 +170765294958,216,0 +170765295008,216,0 +170765295055,216,0 +170765295103,216,0 +170765295153,216,0 +170765295200,216,0 +170765295248,216,0 +170765295296,216,0 +170765295344,215,0 +170765295392,215,0 +170765295440,215,0 +170765295488,215,0 +170765295535,216,0 +170765295583,216,0 +170765295631,216,0 +170765295679,216,0 +170765295727,216,0 +170765295775,216,0 +170765295823,217,0 +170765295872,216,0 +170765295920,216,0 +170765295969,216,0 +170765296017,216,0 +170765296065,216,0 +170765296113,214,0 +170765296160,214,0 +170765296208,214,0 +170765296256,214,0 +170765296304,215,0 +170765296352,215,0 +170765296401,215,0 +170765296449,215,0 +170765296497,215,0 +170765296546,215,0 +170765296594,216,0 +170765296642,216,0 +170765296690,216,0 +170765296739,216,0 +170765296789,215,0 +170765296838,216,0 +170765296886,216,0 +170765296934,214,0 +170765296982,214,0 +170765297030,214,0 +170765297078,214,0 +170765297125,214,0 +170765297173,215,0 +170765297221,215,0 +170765297269,215,0 +170765297317,215,0 +170765297366,215,0 +170765297416,215,0 +170765297464,216,0 +170765297513,216,0 +170765297561,216,0 +170765297609,216,0 +170765297659,216,0 +170765297707,214,0 +170765297755,214,0 +170765297804,214,0 +170765297854,214,0 +170765297902,215,0 +170765297950,215,0 +170765297998,215,0 +170765298047,215,0 +170765298097,215,0 +170765298146,215,0 +170765298194,216,0 +170765298242,216,0 +170765298290,216,0 +170765298338,216,0 +170765298385,215,0 +170765298433,216,0 +170765298481,214,0 +170765298529,214,0 +170765298578,214,0 +170765298626,214,0 +170765298674,214,0 +170765298722,214,0 +170765298770,215,0 +170765298820,215,0 +170765298868,215,0 +170765298915,215,0 +170765298963,215,0 +170765299011,216,0 +170765299059,216,0 +170765299109,215,0 +170765299157,215,0 +170765299206,216,0 +170765299254,214,0 +170765299302,214,0 +170765299352,214,0 +170765299399,214,0 +170765299447,214,0 +170765299495,215,0 +170765299545,215,0 +170765299593,215,0 +170765299641,215,0 +170765299690,215,0 +170765299740,215,0 +170765299789,216,0 +170765299839,216,0 +170765299888,216,0 +170765299936,215,0 +170765299984,216,0 +170765300032,215,0 +170765300081,214,0 +170765300131,214,0 +170765300179,214,0 +170765300227,214,0 +170765300275,214,0 +170765300323,214,0 +170765300371,214,0 +170765300418,214,0 +170765300468,215,0 +170765300517,215,0 +170765300565,216,0 +170765300613,215,0 +170765300661,215,0 +170765300709,215,0 +170765300757,216,0 +170765300806,216,0 +170765300856,213,0 +170765300904,214,0 +170765300951,214,0 +170765301001,214,0 +170765301050,214,0 +170765301098,214,0 +170765301146,215,0 +170765301194,215,0 +170765301242,215,0 +170765301290,215,0 +170765301340,215,0 +170765301387,214,0 +170765301435,216,0 +170765301483,216,0 +170765301533,216,0 +170765301582,216,0 +170765301632,214,0 +170765301681,214,0 +170765301729,214,0 +170765301779,214,0 +170765301827,215,0 +170765301874,215,0 +170765301922,215,0 +170765301972,215,0 +170765302020,215,0 +170765302068,216,0 +170765302117,216,0 +170765302165,216,0 +170765302213,216,0 +170765302261,216,0 +170765302308,216,0 +170765302356,216,0 +170765302404,215,0 +170765302452,214,0 +170765302500,215,0 +170765302548,215,0 +170765302595,215,0 +170765302643,215,0 +170765302691,216,0 +170765302739,216,0 +170765302787,216,0 +170765302835,216,0 +170765302882,216,0 +170765302930,216,0 +170765302978,216,0 +170765303026,216,0 +170765303075,216,0 +170765303125,216,0 +170765303172,215,0 +170765303220,214,0 +170765303268,215,0 +170765303316,215,0 +170765303364,216,0 +170765303412,215,0 +170765303459,215,0 +170765303507,216,0 +170765303555,216,0 +170765303603,216,0 +170765303651,216,0 +170765303699,216,0 +170765303747,216,0 +170765303795,216,0 +170765303843,216,0 +170765303890,216,0 +170765303938,216,0 +170765303986,215,0 +170765304034,215,0 +170765304082,215,0 +170765304130,215,0 +170765304179,215,0 +170765304227,215,0 +170765304275,215,0 +170765304323,216,0 +170765304371,216,0 +170765304419,216,0 +170765304466,216,0 +170765304514,216,0 +170765304562,216,0 +170765304610,216,0 +170765304658,216,0 +170765304706,216,0 +170765304753,214,0 +170765304801,213,0 +170765304851,214,0 +170765304899,214,0 +170765304946,214,0 +170765304994,214,0 +170765305042,214,0 +170765305090,214,0 +170765305138,215,0 +170765305186,215,0 +170765305234,215,0 +170765305281,215,0 +170765305329,215,0 +170765305377,216,0 +170765305425,216,0 +170765305473,216,0 +170765305521,216,0 +170765305569,214,0 +170765305616,214,0 +170765305664,214,0 +170765305712,214,0 +170765305760,214,0 +170765305808,214,0 +170765305855,214,0 +170765305903,215,0 +170765305953,215,0 +170765306001,215,0 +170765306050,215,0 +170765306098,215,0 +170765306146,216,0 +170765306193,215,0 +170765306241,216,0 +170765306289,215,0 +170765306337,214,0 +170765306385,214,0 +170765306433,214,0 +170765306480,214,0 +170765306528,215,0 +170765306576,214,0 +170765306624,215,0 +170765306672,215,0 +170765306720,215,0 +170765306768,216,0 +170765306816,216,0 +170765306863,216,0 +170765306911,216,0 +170765306959,215,0 +170765307008,215,0 +170765307056,216,0 +170765307104,215,0 +170765307152,214,0 +170765307200,214,0 +170765307248,215,0 +170765307297,215,0 +170765307345,215,0 +170765307392,215,0 +170765307440,215,0 +170765307488,216,0 +170765307538,216,0 +170765307587,216,0 +170765307635,216,0 +170765307685,216,0 +170765307732,215,0 +170765307780,216,0 +170765307828,216,0 +170765307878,216,0 +170765307926,215,0 +170765307973,215,0 +170765308021,215,0 +170765308069,215,0 +170765308117,215,0 +170765308165,215,0 +170765308213,215,0 +170765308260,216,0 +170765308308,216,0 +170765308356,216,0 +170765308404,216,0 +170765308452,216,0 +170765308501,216,0 +170765308549,216,0 +170765308598,216,0 +170765308646,216,0 +170765308694,214,0 +170765308743,214,0 +170765308791,214,0 +170765308841,214,0 +170765308889,215,0 +170765308936,214,0 +170765308984,215,0 +170765309032,215,0 +170765309082,215,0 +170765309130,215,0 +170765309177,215,0 +170765309227,216,0 +170765309275,216,0 +170765309323,216,0 +170765309371,216,0 +170765309419,216,0 +170765309467,214,0 +170765309514,214,0 +170765309562,214,0 +170765309612,214,0 +170765309660,214,0 +170765309709,215,0 +170765309757,215,0 +170765309805,215,0 +170765309853,215,0 +170765309900,215,0 +170765309948,216,0 +170765309998,215,0 +170765310046,216,0 +170765310094,216,0 +170765310141,216,0 +170765310191,216,0 +170765310239,215,0 +170765310287,214,0 +170765310335,214,0 +170765310382,214,0 +170765310430,214,0 +170765310478,214,0 +170765310526,214,0 +170765310574,215,0 +170765310622,215,0 +170765310672,215,0 +170765310720,216,0 +170765310767,215,0 +170765310817,216,0 +170765310867,216,0 +170765310915,215,0 +170765310962,216,0 +170765311010,215,0 +170765311060,214,0 +170765311108,214,0 +170765311157,214,0 +170765311205,214,0 +170765311253,215,0 +170765311303,215,0 +170765311351,215,0 +170765311398,215,0 +170765311448,215,0 +170765311496,216,0 +170765311544,216,0 +170765311593,216,0 +170765311641,216,0 +170765311689,216,0 +170765311737,216,0 +170765311785,215,0 +170765311834,214,0 +170765311884,214,0 +170765311932,214,0 +170765311980,214,0 +170765312029,215,0 +170765312077,215,0 +170765312127,214,0 +170765312174,215,0 +170765312224,215,0 +170765312273,214,0 +170765312321,216,0 +170765312371,216,0 +170765312419,215,0 +170765312467,216,0 +170765312515,216,0 +170765312564,215,0 +170765312612,214,0 +170765312660,214,0 +170765312708,214,0 +170765312758,214,0 +170765312807,214,0 +170765312855,215,0 +170765312903,215,0 +170765312951,215,0 +170765312999,215,0 +170765313047,216,0 +170765313095,216,0 +170765313143,216,0 +170765313190,216,0 +170765313238,216,0 +170765313288,216,0 +170765313336,216,0 +170765313384,215,0 +170765313431,213,0 +170765313481,214,0 +170765313530,214,0 +170765313580,214,0 +170765313629,214,0 +170765313677,214,0 +170765313725,215,0 +170765313773,215,0 +170765313821,215,0 +170765313869,215,0 +170765313917,216,0 +170765313965,215,0 +170765314014,216,0 +170765314062,216,0 +170765314112,216,0 +170765314160,215,0 +170765314209,213,0 +170765314257,213,0 +170765314305,214,0 +170765314354,214,0 +170765314402,214,0 +170765314450,214,0 +170765314498,215,0 +170765314548,215,0 +170765314597,215,0 +170765314647,216,0 +170765314696,216,0 +170765314744,216,0 +170765314794,216,0 +170765314842,216,0 +170765314890,216,0 +170765314938,215,0 +170765314987,214,0 +170765315035,214,0 +170765315083,214,0 +170765315132,214,0 +170765315180,215,0 +170765315228,215,0 +170765315278,215,0 +170765315326,215,0 +170765315374,216,0 +170765315422,216,0 +170765315471,215,0 +170765315519,216,0 +170765315567,216,0 +170765315617,216,0 +170765315665,216,0 +170765315712,216,0 +170765315760,214,0 +170765315810,214,0 +170765315858,214,0 +170765315907,214,0 +170765315955,215,0 +170765316003,215,0 +170765316053,214,0 +170765316101,215,0 +170765316150,215,0 +170765316198,215,0 +170765316248,215,0 +170765316297,216,0 +170765316345,216,0 +170765316393,216,0 +170765316441,216,0 +170765316489,216,0 +170765316537,214,0 +170765316586,213,0 +170765316634,214,0 +170765316682,214,0 +170765316731,214,0 +170765316779,214,0 +170765316829,214,0 +170765316878,214,0 +170765316926,215,0 +170765316974,215,0 +170765317024,215,0 +170765317072,216,0 +170765317121,215,0 +170765317171,215,0 +170765317219,216,0 +170765317268,216,0 +170765317316,214,0 +170765317364,213,0 +170765317412,214,0 +170765317461,214,0 +170765317511,214,0 +170765317561,214,0 +170765317608,214,0 +170765317656,214,0 +170765317704,215,0 +170765317754,215,0 +170765317802,215,0 +170765317850,215,0 +170765317897,215,0 +170765317945,215,0 +170765317995,215,0 +170765318043,216,0 +170765318092,216,0 +170765318142,216,0 +170765318190,216,0 +170765318238,216,0 +170765318288,217,0 +170765318337,216,0 +170765318387,216,0 +170765318434,216,0 +170765318484,216,0 +170765318532,214,0 +170765318581,215,0 +170765318629,215,0 +170765318677,215,0 +170765318725,215,0 +170765318775,215,0 +170765318823,215,0 +170765318871,215,0 +170765318919,215,0 +170765318968,216,0 +170765319016,216,0 +170765319064,215,0 +170765319112,216,0 +170765319162,216,0 +170765319211,216,0 +170765319259,216,0 +170765319307,215,0 +170765319355,215,0 +170765319405,215,0 +170765319452,215,0 +170765319500,215,0 +170765319550,215,0 +170765319599,216,0 +170765319649,216,0 +170765319698,216,0 +170765319746,216,0 +170765319794,216,0 +170765319844,216,0 +170765319892,216,0 +170765319940,216,0 +170765319989,216,0 +170765320039,215,0 +170765320087,215,0 +170765320134,215,0 +170765320182,215,0 +170765320230,215,0 +170765320278,215,0 +170765320326,216,0 +170765320376,216,0 +170765320424,216,0 +170765320472,216,0 +170765320521,216,0 +170765320569,216,0 +170765320619,216,0 +170765320666,216,0 +170765320716,216,0 +170765320764,216,0 +170765320813,216,0 +170765320863,215,0 +170765320911,214,0 +170765320960,215,0 +170765321010,214,0 +170765321059,215,0 +170765321107,215,0 +170765321155,215,0 +170765321203,215,0 +170765321253,216,0 +170765321301,215,0 +170765321348,215,0 +170765321398,215,0 +170765321446,216,0 +170765321495,216,0 +170765321543,216,0 +170765321592,216,0 +170765321640,214,0 +170765321690,214,0 +170765321738,214,0 +170765321786,215,0 +170765321834,215,0 +170765321882,215,0 +170765321929,215,0 +170765321977,215,0 +170765322025,215,0 +170765322073,215,0 +170765322123,216,0 +170765322171,216,0 +170765322219,216,0 +170765322267,216,0 +170765322315,216,0 +170765322362,216,0 +170765322412,216,0 +170765322461,214,0 +170765322509,215,0 +170765322557,215,0 +170765322607,215,0 +170765322656,215,0 +170765322704,215,0 +170765322754,215,0 +170765322802,216,0 +170765322851,216,0 +170765322899,216,0 +170765322947,216,0 +170765322995,216,0 +170765323043,216,0 +170765323092,216,0 +170765323140,216,0 +170765323190,216,0 +170765323239,214,0 +170765323289,214,0 +170765323338,214,0 +170765323386,215,0 +170765323434,215,0 +170765323482,215,0 +170765323531,215,0 +170765323581,215,0 +170765323630,216,0 +170765323678,216,0 +170765323728,216,0 +170765323776,216,0 +170765323824,216,0 +170765323872,216,0 +170765323920,216,0 +170765323968,216,0 +170765324016,214,0 +170765324063,214,0 +170765324111,214,0 +170765324159,214,0 +170765324209,214,0 +170765324258,214,0 +170765324306,215,0 +170765324354,215,0 +170765324402,215,0 +170765324450,215,0 +170765324498,216,0 +170765324546,216,0 +170765324594,215,0 +170765324642,216,0 +170765324691,216,0 +170765324739,216,0 +170765324789,214,0 +170765324836,213,0 +170765324886,214,0 +170765324934,214,0 +170765324982,214,0 +170765325030,214,0 +170765325078,215,0 +170765325127,215,0 +170765325175,215,0 +170765325223,215,0 +170765325271,215,0 +170765325319,215,0 +170765325367,216,0 +170765325415,215,0 +170765325463,216,0 +170765325512,216,0 +170765325560,214,0 +170765325608,213,0 +170765325656,214,0 +170765325704,214,0 +170765325751,214,0 +170765325799,214,0 +170765325849,214,0 +170765325897,214,0 +170765325944,215,0 +170765325992,215,0 +170765326042,215,0 +170765326090,215,0 +170765326138,216,0 +170765326186,216,0 +170765326234,216,0 +170765326281,216,0 +170765326329,216,0 +170765326377,213,0 +170765326427,214,0 +170765326475,214,0 +170765326523,214,0 +170765326571,214,0 +170765326619,214,0 +170765326666,214,0 +170765326716,215,0 +170765326765,215,0 +170765326813,215,0 +170765326861,215,0 +170765326909,216,0 +170765326958,216,0 +170765327006,216,0 +170765327056,216,0 +170765327104,216,0 +170765327153,214,0 +170765327203,214,0 +170765327251,214,0 +170765327299,214,0 +170765327347,214,0 +170765327394,215,0 +170765327442,215,0 +170765327490,215,0 +170765327538,215,0 +170765327586,215,0 +170765327634,215,0 +170765327683,216,0 +170765327731,215,0 +170765327781,215,0 +170765327829,215,0 +170765327877,216,0 +170765327926,214,0 +170765327976,214,0 +170765328024,214,0 +170765328071,214,0 +170765328119,215,0 +170765328167,215,0 +170765328215,215,0 +170765328263,215,0 +170765328311,215,0 +170765328361,215,0 +170765328409,216,0 +170765328457,215,0 +170765328505,216,0 +170765328552,216,0 +170765328602,215,0 +170765328651,216,0 +170765328699,215,0 +170765328747,214,0 +170765328795,214,0 +170765328843,214,0 +170765328891,214,0 +170765328940,215,0 +170765328988,215,0 +170765329038,214,0 +170765329087,215,0 +170765329135,215,0 +170765329183,215,0 +170765329231,216,0 +170765329279,216,0 +170765329328,216,0 +170765329376,216,0 +170765329424,216,0 +170765329472,215,0 +170765329520,214,0 +170765329568,214,0 +170765329616,214,0 +170765329664,214,0 +170765329712,214,0 +170765329761,214,0 +170765329811,214,0 +170765329858,215,0 +170765329908,215,0 +170765329957,215,0 +170765330005,215,0 +170765330053,215,0 +170765330103,216,0 +170765330152,215,0 +170765330200,216,0 +170765330248,215,0 +170765330298,214,0 +170765330346,214,0 +170765330394,214,0 +170765330441,214,0 +170765330489,214,0 +170765330539,215,0 +170765330587,214,0 +170765330636,215,0 +170765330684,215,0 +170765330732,216,0 +170765330780,215,0 +170765330829,216,0 +170765330877,216,0 +170765330926,216,0 +170765330976,216,0 +170765331025,216,0 +170765331073,215,0 +170765331121,214,0 +170765331171,215,0 +170765331218,215,0 +170765331266,215,0 +170765331314,215,0 +170765331362,215,0 +170765331410,216,0 +170765331458,216,0 +170765331506,216,0 +170765331555,216,0 +170765331603,216,0 +170765331653,216,0 +170765331701,216,0 +170765331749,216,0 +170765331797,215,0 +170765331845,215,0 +170765331892,215,0 +170765331940,215,0 +170765331990,215,0 +170765332039,215,0 +170765332087,215,0 +170765332135,216,0 +170765332183,216,0 +170765332233,216,0 +170765332280,216,0 +170765332330,216,0 +170765332378,216,0 +170765332427,216,0 +170765332475,216,0 +170765332523,216,0 +170765332571,216,0 +170765332620,215,0 +170765332668,215,0 +170765332716,215,0 +170765332764,215,0 +170765332814,215,0 +170765332862,216,0 +170765332910,216,0 +170765332959,216,0 +170765333009,216,0 +170765333056,216,0 +170765333106,216,0 +170765333156,216,0 +170765333203,216,0 +170765333253,216,0 +170765333301,216,0 +170765333350,216,0 +170765333398,216,0 +170765333448,214,0 +170765333496,215,0 +170765333545,215,0 +170765333593,215,0 +170765333641,215,0 +170765333689,215,0 +170765333738,215,0 +170765333788,216,0 +170765333837,215,0 +170765333887,216,0 +170765333936,216,0 +170765333985,216,0 +170765334033,216,0 +170765334081,216,0 +170765334129,216,0 +170765334177,216,0 +170765334225,215,0 +170765334275,214,0 +170765334322,214,0 +170765334370,215,0 +170765334420,215,0 +170765334469,215,0 +170765334517,215,0 +170765334565,216,0 +170765334615,216,0 +170765334663,216,0 +170765334712,216,0 +170765334760,216,0 +170765334810,216,0 +170765334857,215,0 +170765334905,216,0 +170765334955,215,0 +170765335003,215,0 +170765335052,214,0 +170765335100,214,0 +170765335150,215,0 +170765335197,214,0 +170765335247,215,0 +170765335295,215,0 +170765335343,215,0 +170765335391,215,0 +170765335439,216,0 +170765335486,216,0 +170765335534,216,0 +170765335582,215,0 +170765335630,215,0 +170765335678,215,0 +170765335726,216,0 +170765335776,215,0 +170765335824,214,0 +170765335873,214,0 +170765335921,214,0 +170765335969,215,0 +170765336017,215,0 +170765336066,215,0 +170765336114,215,0 +170765336162,214,0 +170765336212,215,0 +170765336261,215,0 +170765336311,215,0 +170765336359,216,0 +170765336406,216,0 +170765336454,216,0 +170765336502,216,0 +170765336550,215,0 +170765336600,214,0 +170765336648,214,0 +170765336696,214,0 +170765336745,214,0 +170765336793,214,0 +170765336842,215,0 +170765336890,215,0 +170765336940,215,0 +170765336988,215,0 +170765337036,215,0 +170765337084,216,0 +170765337133,215,0 +170765337181,215,0 +170765337229,216,0 +170765337277,216,0 +170765337326,215,0 +170765337374,214,0 +170765337422,214,0 +170765337470,214,0 +170765337518,214,0 +170765337566,214,0 +170765337615,215,0 +170765337663,215,0 +170765337711,215,0 +170765337759,215,0 +170765337807,216,0 +170765337855,215,0 +170765337902,216,0 +170765337950,216,0 +170765337998,216,0 +170765338046,216,0 +170765338094,216,0 +170765338142,214,0 +170765338190,214,0 +170765338237,214,0 +170765338285,214,0 +170765338333,214,0 +170765338381,214,0 +170765338429,214,0 +170765338477,215,0 +170765338526,215,0 +170765338574,215,0 +170765338622,215,0 +170765338670,215,0 +170765338717,215,0 +170765338765,216,0 +170765338813,215,0 +170765338861,216,0 +170765338909,215,0 +170765338957,214,0 +170765339006,214,0 +170765339056,214,0 +170765339104,214,0 +170765339152,215,0 +170765339200,215,0 +170765339249,215,0 +170765339297,215,0 +170765339346,215,0 +170765339394,216,0 +170765339442,216,0 +170765339492,216,0 +170765339540,216,0 +170765339589,216,0 +170765339637,216,0 +170765339686,215,0 +170765339734,214,0 +170765339782,215,0 +170765339830,215,0 +170765339878,215,0 +170765339926,215,0 +170765339974,215,0 +170765340022,215,0 +170765340070,215,0 +170765340117,215,0 +170765340165,216,0 +170765340215,216,0 +170765340262,216,0 +170765340310,216,0 +170765340358,216,0 +170765340406,216,0 +170765340454,216,0 +170765340504,215,0 +170765340551,215,0 +170765340601,215,0 +170765340649,215,0 +170765340697,215,0 +170765340746,215,0 +170765340794,215,0 +170765340842,215,0 +170765340892,216,0 +170765340940,215,0 +170765340988,215,0 +170765341037,215,0 +170765341085,215,0 +170765341133,216,0 +170765341181,216,0 +170765341229,215,0 +170765341277,215,0 +170765341325,214,0 +170765341373,214,0 +170765341421,214,0 +170765341470,214,0 +170765341518,215,0 +170765341568,215,0 +170765341615,215,0 +170765341663,215,0 +170765341711,215,0 +170765341759,215,0 +170765341807,216,0 +170765341855,216,0 +170765341903,216,0 +170765341951,216,0 +170765341999,215,0 +170765342046,215,0 +170765342094,214,0 +170765342142,214,0 +170765342190,214,0 +170765342239,214,0 +170765342287,214,0 +170765342335,215,0 +170765342383,215,0 +170765342431,215,0 +170765342478,215,0 +170765342526,216,0 +170765342574,216,0 +170765342622,216,0 +170765342670,216,0 +170765342718,216,0 +170765342767,216,0 +170765342815,216,0 +170765342863,214,0 +170765342911,214,0 +170765342958,214,0 +170765343006,214,0 +170765343054,215,0 +170765343102,215,0 +170765343150,215,0 +170765343198,215,0 +170765343246,216,0 +170765343294,216,0 +170765343341,215,0 +170765343391,216,0 +170765343439,216,0 +170765343487,216,0 +170765343534,216,0 +170765343582,216,0 +170765343630,215,0 +170765343678,214,0 +170765343726,215,0 +170765343776,215,0 +170765343825,215,0 +170765343873,215,0 +170765343921,215,0 +170765343969,216,0 +170765344017,216,0 +170765344065,216,0 +170765344114,216,0 +170765344162,216,0 +170765344210,216,0 +170765344258,216,0 +170765344306,216,0 +170765344354,216,0 +170765344402,215,0 +170765344451,214,0 +170765344499,214,0 +170765344547,215,0 +170765344595,215,0 +170765344643,215,0 +170765344691,215,0 +170765344739,215,0 +170765344789,216,0 +170765344838,216,0 +170765344886,216,0 +170765344934,216,0 +170765344983,216,0 +170765345031,216,0 +170765345079,216,0 +170765345127,216,0 +170765345175,216,0 +170765345223,214,0 +170765345273,214,0 +170765345321,214,0 +170765345368,214,0 +170765345416,215,0 +170765345464,214,0 +170765345512,215,0 +170765345560,215,0 +170765345608,215,0 +170765345656,215,0 +170765345703,215,0 +170765345751,215,0 +170765345799,216,0 +170765345847,216,0 +170765345897,216,0 +170765345945,216,0 +170765345993,214,0 +170765346042,213,0 +170765346090,214,0 +170765346138,214,0 +170765346186,214,0 +170765346235,214,0 +170765346283,214,0 +170765346331,215,0 +170765346379,215,0 +170765346427,215,0 +170765346475,215,0 +170765346523,215,0 +170765346572,216,0 +170765346620,216,0 +170765346668,216,0 +170765346716,216,0 +170765346766,215,0 +170765346814,213,0 +170765346863,214,0 +170765346911,214,0 +170765346959,214,0 +170765347007,214,0 +170765347054,214,0 +170765347102,215,0 +170765347150,215,0 +170765347200,215,0 +170765347247,215,0 +170765347295,215,0 +170765347345,215,0 +170765347393,216,0 +170765347442,216,0 +170765347490,216,0 +170765347538,216,0 +170765347586,214,0 +170765347635,214,0 +170765347684,214,0 +170765347732,214,0 +170765347780,214,0 +170765347828,215,0 +170765347876,214,0 +170765347925,215,0 +170765347973,215,0 +170765348021,215,0 +170765348068,215,0 +170765348116,215,0 +170765348164,215,0 +170765348212,216,0 +170765348260,216,0 +170765348309,216,0 +170765348359,214,0 +170765348407,214,0 +170765348456,214,0 +170765348506,214,0 +170765348554,214,0 +170765348602,215,0 +170765348650,215,0 +170765348697,215,0 +170765348747,215,0 +170765348795,215,0 +170765348843,216,0 +170765348891,216,0 +170765348939,216,0 +170765348987,216,0 +170765349036,216,0 +170765349086,216,0 +170765349133,214,0 +170765349183,214,0 +170765349231,214,0 +170765349279,214,0 +170765349328,214,0 +170765349376,215,0 +170765349424,215,0 +170765349472,215,0 +170765349520,215,0 +170765349568,215,0 +170765349616,215,0 +170765349665,216,0 +170765349715,216,0 +170765349762,216,0 +170765349812,216,0 +170765349860,216,0 +170765349908,215,0 +170765349957,214,0 +170765350007,214,0 +170765350055,214,0 +170765350102,214,0 +170765350150,214,0 +170765350198,214,0 +170765350246,215,0 +170765350294,215,0 +170765350342,215,0 +170765350390,215,0 +170765350438,216,0 +170765350487,216,0 +170765350535,216,0 +170765350585,216,0 +170765350633,216,0 +170765350682,216,0 +170765350730,214,0 +170765350778,214,0 +170765350826,213,0 +170765350875,214,0 +170765350925,214,0 +170765350973,215,0 +170765351022,215,0 +170765351072,215,0 +170765351120,216,0 +170765351168,216,0 +170765351217,216,0 +170765351267,216,0 +170765351315,216,0 +170765351362,216,0 +170765351412,216,0 +170765351461,216,0 +170765351509,215,0 +170765351557,215,0 +170765351605,215,0 +170765351653,215,0 +170765351701,215,0 +170765351749,215,0 +170765351797,215,0 +170765351845,216,0 +170765351895,216,0 +170765351942,216,0 +170765351990,216,0 +170765352038,216,0 +170765352088,216,0 +170765352137,216,0 +170765352185,216,0 +170765352235,216,0 +170765352283,215,0 +170765352331,214,0 +170765352379,215,0 +170765352428,215,0 +170765352476,215,0 +170765352524,215,0 +170765352572,215,0 +170765352620,215,0 +170765352669,216,0 +170765352717,216,0 +170765352767,216,0 +170765352815,215,0 +170765352863,216,0 +170765352912,215,0 +170765352960,216,0 +170765353010,215,0 +170765353058,214,0 +170765353107,214,0 +170765353157,215,0 +170765353206,214,0 +170765353254,214,0 +170765353302,214,0 +170765353350,215,0 +170765353400,215,0 +170765353447,215,0 +170765353495,215,0 +170765353545,215,0 +170765353594,215,0 +170765353644,215,0 +170765353692,216,0 +170765353741,216,0 +170765353789,216,0 +170765353839,214,0 +170765353887,214,0 +170765353935,214,0 +170765353983,214,0 +170765354032,214,0 +170765354080,215,0 +170765354130,215,0 +170765354179,215,0 +170765354227,215,0 +170765354275,215,0 +170765354323,215,0 +170765354371,218,0 +170765354419,215,0 +170765354467,215,0 +170765354515,216,0 +170765354563,216,0 +170765354611,216,0 +170765354659,214,0 +170765354707,214,0 +170765354755,214,0 +170765354803,214,0 +170765354852,214,0 +170765354900,215,0 +170765354948,214,0 +170765354998,215,0 +170765355046,215,0 +170765355093,215,0 +170765355143,215,0 +170765355191,215,0 +170765355239,216,0 +170765355287,216,0 +170765355336,216,0 +170765355384,216,0 +170765355432,214,0 +170765355480,214,0 +170765355528,214,0 +170765355577,215,0 +170765355625,215,0 +170765355673,215,0 +170765355723,215,0 +170765355771,215,0 +170765355820,216,0 +170765355868,215,0 +170765355917,216,0 +170765355967,216,0 +170765356017,216,0 +170765356066,216,0 +170765356116,216,0 +170765356165,216,0 +170765356213,214,0 +170765356261,214,0 +170765356311,214,0 +170765356360,215,0 +170765356408,215,0 +170765356456,215,0 +170765356506,215,0 +170765356553,216,0 +170765356601,216,0 +170765356651,216,0 +170765356699,216,0 +170765356747,216,0 +170765356796,216,0 +170765356844,216,0 +170765356892,216,0 +170765356940,216,0 +170765356988,214,0 +170765357036,214,0 +170765357084,214,0 +170765357133,214,0 +170765357181,214,0 +170765357231,214,0 +170765357279,215,0 +170765357328,215,0 +170765357378,215,0 +170765357427,216,0 +170765357475,216,0 +170765357523,216,0 +170765357572,216,0 +170765357620,216,0 +170765357668,216,0 +170765357716,216,0 +170765357764,216,0 +170765357812,214,0 +170765357860,214,0 +170765357908,214,0 +170765357956,214,0 +170765358003,214,0 +170765358053,214,0 +170765358102,215,0 +170765358152,215,0 +170765358201,215,0 +170765358249,215,0 +170765358297,215,0 +170765358345,216,0 +170765358393,216,0 +170765358441,216,0 +170765358489,216,0 +170765358537,216,0 +170765358585,213,0 +170765358634,214,0 +170765358682,214,0 +170765358730,214,0 +170765358778,214,0 +170765358826,215,0 +170765358874,214,0 +170765358922,215,0 +170765358970,215,0 +170765359019,215,0 +170765359067,215,0 +170765359115,215,0 +170765359165,216,0 +170765359212,215,0 +170765359262,216,0 +170765359311,215,0 +170765359359,214,0 +170765359407,214,0 +170765359455,214,0 +170765359505,214,0 +170765359553,214,0 +170765359602,215,0 +170765359652,214,0 +170765359701,215,0 +170765359749,215,0 +170765359798,215,0 +170765359846,215,0 +170765359896,215,0 +170765359944,216,0 +170765359992,216,0 +170765360040,216,0 +170765360088,216,0 +170765360137,214,0 +170765360186,214,0 +170765360234,214,0 +170765360282,214,0 +170765360330,215,0 +170765360378,215,0 +170765360426,215,0 +170765360476,215,0 +170765360523,215,0 +170765360571,215,0 +170765360619,215,0 +170765360669,216,0 +170765360717,216,0 +170765360765,216,0 +170765360813,216,0 +170765360861,216,0 +170765360910,215,0 +170765360958,214,0 +170765361008,214,0 +170765361056,214,0 +170765361105,215,0 +170765361153,214,0 +170765361201,215,0 +170765361250,215,0 +170765361298,215,0 +170765361346,215,0 +170765361394,215,0 +170765361442,215,0 +170765361490,216,0 +170765361538,215,0 +170765361586,216,0 +170765361634,216,0 +170765361682,216,0 +170765361731,214,0 +170765361779,214,0 +170765361827,214,0 +170765361876,214,0 +170765361924,215,0 +170765361972,215,0 +170765362021,215,0 +170765362069,215,0 +170765362117,215,0 +170765362167,215,0 +170765362216,215,0 +170765362264,215,0 +170765362312,216,0 +170765362362,216,0 +170765362411,216,0 +170765362459,215,0 +170765362507,214,0 +170765362555,214,0 +170765362603,214,0 +170765362651,214,0 +170765362698,214,0 +170765362746,214,0 +170765362794,215,0 +170765362842,215,0 +170765362890,215,0 +170765362938,215,0 +170765362986,216,0 +170765363034,216,0 +170765363084,216,0 +170765363132,216,0 +170765363179,216,0 +170765363229,216,0 +170765363277,215,0 +170765363325,214,0 +170765363372,214,0 +170765363422,214,0 +170765363470,215,0 +170765363519,215,0 +170765363567,215,0 +170765363615,215,0 +170765363663,215,0 +170765363711,215,0 +170765363759,215,0 +170765363806,216,0 +170765363854,215,0 +170765363902,216,0 +170765363950,216,0 +170765363998,216,0 +170765364046,216,0 +170765364095,214,0 +170765364143,214,0 +170765364192,215,0 +170765364242,215,0 +170765364290,215,0 +170765364337,215,0 +170765364385,215,0 +170765364433,215,0 +170765364481,215,0 +170765364529,216,0 +170765364577,216,0 +170765364625,216,0 +170765364672,216,0 +170765364720,216,0 +170765364768,216,0 +170765364817,216,0 +170765364865,215,0 +170765364913,215,0 +170765364963,215,0 +170765365010,215,0 +170765365060,215,0 +170765365108,215,0 +170765365155,215,0 +170765365203,215,0 +170765365251,215,0 +170765365299,216,0 +170765365348,216,0 +170765365398,216,0 +170765365446,216,0 +170765365494,216,0 +170765365542,216,0 +170765365590,216,0 +170765365637,214,0 +170765365687,214,0 +170765365735,214,0 +170765365783,214,0 +170765365832,215,0 +170765365880,215,0 +170765365930,215,0 +170765365978,215,0 +170765366025,215,0 +170765366073,215,0 +170765366121,215,0 +170765366171,216,0 +170765366219,216,0 +170765366266,216,0 +170765366314,216,0 +170765366362,216,0 +170765366410,215,0 +170765366458,214,0 +170765366506,214,0 +170765366555,214,0 +170765366603,214,0 +170765366651,214,0 +170765366699,215,0 +170765366747,215,0 +170765366794,215,0 +170765366842,215,0 +170765366890,216,0 +170765366940,216,0 +170765366987,216,0 +170765367035,216,0 +170765367083,216,0 +170765367131,216,0 +170765367179,215,0 +170765367227,214,0 +170765367275,214,0 +170765367323,214,0 +170765367372,214,0 +170765367420,215,0 +170765367469,215,0 +170765367517,215,0 +170765367567,215,0 +170765367615,215,0 +170765367663,216,0 +170765367711,216,0 +170765367758,216,0 +170765367806,216,0 +170765367854,216,0 +170765367902,216,0 +170765367950,216,0 +170765367998,215,0 +170765368046,215,0 +170765368096,215,0 +170765368143,214,0 +170765368193,215,0 +170765368241,215,0 +170765368289,215,0 +170765368338,215,0 +170765368386,216,0 +170765368434,216,0 +170765368482,216,0 +170765368530,216,0 +170765368578,216,0 +170765368626,216,0 +170765368674,216,0 +170765368722,216,0 +170765368770,215,0 +170765368818,214,0 +170765368866,215,0 +170765368914,215,0 +170765368962,215,0 +170765369011,215,0 +170765369060,215,0 +170765369108,216,0 +170765369156,216,0 +170765369204,216,0 +170765369252,216,0 +170765369300,216,0 +170765369348,216,0 +170765369396,216,0 +170765369444,215,0 +170765369492,216,0 +170765369541,216,0 +170765369589,214,0 +170765369637,214,0 +170765369685,214,0 +170765369733,214,0 +170765369780,215,0 +170765369828,215,0 +170765369876,215,0 +170765369924,215,0 +170765369972,215,0 +170765370020,215,0 +170765370068,215,0 +170765370117,216,0 +170765370165,216,0 +170765370213,216,0 +170765370261,216,0 +170765370310,216,0 +170765370360,214,0 +170765370408,214,0 +170765370456,214,0 +170765370504,215,0 +170765370552,215,0 +170765370600,215,0 +170765370648,215,0 +170765370695,215,0 +170765370743,215,0 +170765370791,216,0 +170765370839,216,0 +170765370887,216,0 +170765370936,216,0 +170765370984,216,0 +170765371034,216,0 +170765371082,216,0 +170765371131,215,0 +170765371179,214,0 +170765371227,214,0 +170765371275,214,0 +170765371323,214,0 +170765371371,215,0 +170765371419,215,0 +170765371467,215,0 +170765371515,215,0 +170765371562,216,0 +170765371612,215,0 +170765371660,216,0 +170765371708,216,0 +170765371757,216,0 +170765371807,216,0 +170765371856,216,0 +170765371906,216,0 +170765371955,214,0 +170765372003,214,0 +170765372053,214,0 +170765372102,214,0 +170765372150,215,0 +170765372199,215,0 +170765372249,216,0 +170765372297,215,0 +170765372345,215,0 +170765372392,216,0 +170765372442,215,0 +170765372491,216,0 +170765372539,216,0 +170765372587,216,0 +170765372635,215,0 +170765372683,216,0 +170765372731,214,0 +170765372779,214,0 +170765372828,214,0 +170765372876,214,0 +170765372926,215,0 +170765372975,215,0 +170765373025,215,0 +170765373073,215,0 +170765373121,216,0 +170765373168,215,0 +170765373216,216,0 +170765373264,216,0 +170765373312,216,0 +170765373360,216,0 +170765373408,216,0 +170765373456,216,0 +170765373504,214,0 +170765373552,214,0 +170765373601,214,0 +170765373649,214,0 +170765373697,214,0 +170765373747,214,0 +170765373795,215,0 +170765373844,215,0 +170765373892,215,0 +170765373940,215,0 +170765373988,216,0 +170765374036,215,0 +170765374085,216,0 +170765374135,216,0 +170765374183,216,0 +170765374231,216,0 +170765374279,215,0 +170765374327,213,0 +170765374376,214,0 +170765374426,214,0 +170765374474,214,0 +170765374521,214,0 +170765374571,214,0 +170765374619,215,0 +170765374667,215,0 +170765374715,215,0 +170765374763,215,0 +170765374812,215,0 +170765374862,216,0 +170765374911,216,0 +170765374959,216,0 +170765375009,216,0 +170765375058,215,0 +170765375106,213,0 +170765375154,213,0 +170765375202,213,0 +170765375250,214,0 +170765375297,214,0 +170765375345,214,0 +170765375393,214,0 +170765375441,214,0 +170765375489,215,0 +170765375539,215,0 +170765375586,215,0 +170765375634,215,0 +170765375682,216,0 +170765375730,216,0 +170765375778,216,0 +170765375826,216,0 +170765375874,214,0 +170765375923,213,0 +170765375971,214,0 +170765376019,214,0 +170765376067,214,0 +170765376115,215,0 +170765376163,215,0 +170765376211,215,0 +170765376259,214,0 +170765376308,216,0 +170765376358,216,0 +170765376406,215,0 +170765376453,216,0 +170765376501,216,0 +170765376549,216,0 +170765376599,216,0 +170765376648,214,0 +170765376698,214,0 +170765376747,214,0 +170765376795,214,0 +170765376843,215,0 +170765376891,215,0 +170765376941,215,0 +170765376990,215,0 +170765377040,215,0 +170765377088,216,0 +170765377137,216,0 +170765377185,216,0 +170765377233,216,0 +170765377281,216,0 +170765377329,216,0 +170765377377,216,0 +170765377425,215,0 +170765377474,214,0 +170765377522,214,0 +170765377572,214,0 +170765377621,214,0 +170765377669,215,0 +170765377717,215,0 +170765377767,215,0 +170765377815,215,0 +170765377864,215,0 +170765377914,215,0 +170765377961,215,0 +170765378011,216,0 +170765378060,216,0 +170765378108,216,0 +170765378156,216,0 +170765378204,215,0 +170765378254,214,0 +170765378302,214,0 +170765378350,214,0 +170765378398,214,0 +170765378446,214,0 +170765378493,214,0 +170765378543,214,0 +170765378591,215,0 +170765378639,215,0 +170765378687,215,0 +170765378735,215,0 +170765378783,215,0 +170765378830,216,0 +170765378880,215,0 +170765378929,216,0 +170765378979,215,0 +170765379027,214,0 +170765379076,214,0 +170765379124,214,0 +170765379174,214,0 +170765379222,214,0 +170765379270,214,0 +170765379319,214,0 +170765379367,214,0 +170765379415,215,0 +170765379465,215,0 +170765379514,215,0 +170765379564,216,0 +170765379612,215,0 +170765379660,215,0 +170765379708,215,0 +170765379756,216,0 +170765379805,214,0 +170765379853,214,0 +170765379901,215,0 +170765379949,215,0 +170765379997,215,0 +170765380046,215,0 +170765380096,215,0 +170765380144,215,0 +170765380193,216,0 +170765380241,216,0 +170765380289,216,0 +170765380337,216,0 +170765380385,216,0 +170765380433,216,0 +170765380480,216,0 +170765380528,216,0 +170765380576,215,0 +170765380624,215,0 +170765380672,215,0 +170765380720,215,0 +170765380768,215,0 +170765380816,215,0 +170765380864,215,0 +170765380911,215,0 +170765380961,215,0 +170765381009,216,0 +170765381057,216,0 +170765381104,216,0 +170765381154,216,0 +170765381202,216,0 +170765381250,216,0 +170765381299,216,0 +170765381347,215,0 +170765381396,215,0 +170765381444,215,0 +170765381492,215,0 +170765381541,215,0 +170765381589,215,0 +170765381639,216,0 +170765381687,216,0 +170765381736,216,0 +170765381786,216,0 +170765381834,216,0 +170765381882,216,0 +170765381931,216,0 +170765381979,216,0 +170765382027,216,0 +170765382075,216,0 +170765382124,216,0 +170765382172,215,0 +170765382220,215,0 +170765382268,214,0 +170765382315,215,0 +170765382365,215,0 +170765382413,215,0 +170765382461,215,0 +170765382509,215,0 +170765382558,215,0 +170765382606,216,0 +170765382655,216,0 +170765382705,216,0 +170765382753,216,0 +170765382801,216,0 +170765382849,216,0 +170765382897,216,0 +170765382946,214,0 +170765382994,214,0 +170765383043,214,0 +170765383093,214,0 +170765383141,215,0 +170765383190,215,0 +170765383240,216,0 +170765383288,215,0 +170765383337,216,0 +170765383387,216,0 +170765383435,216,0 +170765383483,216,0 +170765383531,216,0 +170765383579,216,0 +170765383627,216,0 +170765383674,216,0 +170765383722,214,0 +170765383772,214,0 +170765383822,215,0 +170765383869,215,0 +170765383917,215,0 +170765383967,215,0 +170765384016,215,0 +170765384066,216,0 +170765384114,216,0 +170765384163,216,0 +170765384213,216,0 +170765384261,216,0 +170765384309,216,0 +170765384357,216,0 +170765384406,216,0 +170765384456,215,0 +170765384504,214,0 +170765384552,214,0 +170765384600,214,0 +170765384648,214,0 +170765384697,214,0 +170765384745,215,0 +170765384793,215,0 +170765384841,215,0 +170765384889,216,0 +170765384937,216,0 +170765384985,216,0 +170765385034,216,0 +170765385084,216,0 +170765385132,216,0 +170765385180,216,0 +170765385227,216,0 +170765385275,215,0 +170765385325,213,0 +170765385374,214,0 +170765385422,215,0 +170765385470,215,0 +170765385520,215,0 +170765385567,215,0 +170765385617,215,0 +170765385665,215,0 +170765385714,216,0 +170765385762,216,0 +170765385812,216,0 +170765385860,216,0 +170765385909,216,0 +170765385957,216,0 +170765386007,216,0 +170765386055,216,0 +170765386104,214,0 +170765386152,214,0 +170765386200,214,0 +170765386248,215,0 +170765386296,215,0 +170765386344,215,0 +170765386392,215,0 +170765386440,215,0 +170765386489,215,0 +170765386537,215,0 +170765386585,216,0 +170765386634,216,0 +170765386682,216,0 +170765386730,216,0 +170765386778,216,0 +170765386826,215,0 +170765386874,214,0 +170765386924,214,0 +170765386972,214,0 +170765387019,214,0 +170765387069,214,0 +170765387118,214,0 +170765387166,214,0 +170765387214,214,0 +170765387262,215,0 +170765387312,215,0 +170765387360,215,0 +170765387408,215,0 +170765387456,215,0 +170765387506,215,0 +170765387555,216,0 +170765387603,216,0 +170765387653,214,0 +170765387700,213,0 +170765387748,213,0 +170765387796,213,0 +170765387844,214,0 +170765387892,214,0 +170765387940,214,0 +170765387990,214,0 +170765388037,215,0 +170765388087,215,0 +170765388136,215,0 +170765388184,215,0 +170765388234,215,0 +170765388283,216,0 +170765388331,216,0 +170765388381,216,0 +170765388430,214,0 +170765388478,214,0 +170765388526,214,0 +170765388574,214,0 +170765388622,214,0 +170765388671,215,0 +170765388719,215,0 +170765388767,215,0 +170765388815,215,0 +170765388862,215,0 +170765388910,216,0 +170765388958,216,0 +170765389006,216,0 +170765389055,216,0 +170765389103,216,0 +170765389151,216,0 +170765389199,215,0 +170765389247,214,0 +170765389295,215,0 +170765389342,215,0 +170765389390,215,0 +170765389438,215,0 +170765389486,215,0 +170765389534,215,0 +170765389582,216,0 +170765389631,216,0 +170765389679,216,0 +170765389727,216,0 +170765389775,216,0 +170765389822,216,0 +170765389870,216,0 +170765389918,216,0 +170765389966,216,0 +170765390014,215,0 +170765390062,214,0 +170765390110,215,0 +170765390158,215,0 +170765390205,215,0 +170765390253,215,0 +170765390301,215,0 +170765390349,215,0 +170765390397,215,0 +170765390445,216,0 +170765390493,216,0 +170765390541,216,0 +170765390589,216,0 +170765390636,216,0 +170765390684,216,0 +170765390734,216,0 +170765390782,215,0 +170765390829,214,0 +170765390877,214,0 +170765390925,214,0 +170765390973,215,0 +170765391021,214,0 +170765391069,215,0 +170765391116,215,0 +170765391166,215,0 +170765391214,215,0 +170765391262,215,0 +170765391311,215,0 +170765391359,216,0 +170765391407,216,0 +170765391454,216,0 +170765391502,216,0 +170765391550,216,0 +170765391598,214,0 +170765391646,214,0 +170765391694,214,0 +170765391741,214,0 +170765391789,215,0 +170765391837,215,0 +170765391885,215,0 +170765391934,215,0 +170765391982,215,0 +170765392030,216,0 +170765392078,216,0 +170765392126,216,0 +170765392174,216,0 +170765392221,216,0 +170765392271,216,0 +170765392319,216,0 +170765392367,215,0 +170765392414,215,0 +170765392462,214,0 +170765392510,215,0 +170765392558,215,0 +170765392606,215,0 +170765392653,216,0 +170765392701,216,0 +170765392751,216,0 +170765392798,216,0 +170765392846,216,0 +170765392896,216,0 +170765392943,216,0 +170765392991,216,0 +170765393039,216,0 +170765393087,216,0 +170765393135,215,0 +170765393183,214,0 +170765393231,214,0 +170765393278,215,0 +170765393326,215,0 +170765393374,215,0 +170765393422,215,0 +170765393470,216,0 +170765393518,216,0 +170765393565,216,0 +170765393613,216,0 +170765393661,216,0 +170765393709,216,0 +170765393758,216,0 +170765393808,216,0 +170765393855,216,0 +170765393903,216,0 +170765393951,214,0 +170765393999,214,0 +170765394047,214,0 +170765394095,214,0 +170765394144,214,0 +170765394192,215,0 +170765394240,215,0 +170765394288,215,0 +170765394336,215,0 +170765394383,215,0 +170765394431,216,0 +170765394479,216,0 +170765394527,216,0 +170765394575,216,0 +170765394623,216,0 +170765394671,215,0 +170765394718,215,0 +170765394766,214,0 +170765394814,214,0 +170765394862,214,0 +170765394910,214,0 +170765394958,214,0 +170765395005,214,0 +170765395053,215,0 +170765395101,215,0 +170765395149,215,0 +170765395197,215,0 +170765395245,215,0 +170765395293,216,0 +170765395340,216,0 +170765395390,216,0 +170765395438,216,0 +170765395487,215,0 +170765395535,214,0 +170765395583,214,0 +170765395632,214,0 +170765395680,214,0 +170765395728,214,0 +170765395777,215,0 +170765395825,215,0 +170765395873,215,0 +170765395921,215,0 +170765395968,215,0 +170765396016,215,0 +170765396064,215,0 +170765396112,216,0 +170765396160,215,0 +170765396208,217,0 +170765396255,216,0 +170765396305,214,0 +170765396353,214,0 +170765396400,214,0 +170765396448,214,0 +170765396496,215,0 +170765396544,215,0 +170765396592,215,0 +170765396640,215,0 +170765396687,215,0 +170765396735,215,0 +170765396783,215,0 +170765396831,216,0 +170765396880,216,0 +170765396930,216,0 +170765396978,216,0 +170765397026,216,0 +170765397075,215,0 +170765397124,214,0 +170765397172,214,0 +170765397220,214,0 +170765397269,214,0 +170765397319,214,0 +170765397367,215,0 +170765397416,215,0 +170765397464,215,0 +170765397512,215,0 +170765397560,215,0 +170765397607,215,0 +170765397655,216,0 +170765397703,216,0 +170765397751,216,0 +170765397799,216,0 +170765397847,215,0 +170765397894,214,0 +170765397942,214,0 +170765397990,214,0 +170765398038,214,0 +170765398086,215,0 +170765398134,215,0 +170765398182,214,0 +170765398229,215,0 +170765398279,215,0 +170765398327,215,0 +170765398374,215,0 +170765398422,216,0 +170765398470,215,0 +170765398518,216,0 +170765398566,216,0 +170765398613,216,0 +170765398661,214,0 +170765398709,214,0 +170765398757,214,0 +170765398806,214,0 +170765398854,214,0 +170765398902,215,0 +170765398951,215,0 +170765398999,215,0 +170765399047,215,0 +170765399095,215,0 +170765399142,215,0 +170765399190,215,0 +170765399238,215,0 +170765399288,216,0 +170765399335,215,0 +170765399385,216,0 +170765399433,215,0 +170765399480,214,0 +170765399528,214,0 +170765399576,214,0 +170765399624,215,0 +170765399672,215,0 +170765399720,215,0 +170765399768,215,0 +170765399817,215,0 +170765399865,215,0 +170765399913,216,0 +170765399960,216,0 +170765400008,215,0 +170765400056,216,0 +170765400104,216,0 +170765400152,216,0 +170765400200,216,0 +170765400247,214,0 +170765400295,214,0 +170765400343,214,0 +170765400391,214,0 +170765400439,214,0 +170765400487,214,0 +170765400534,215,0 +170765400582,215,0 +170765400630,215,0 +170765400678,215,0 +170765400726,216,0 +170765400774,216,0 +170765400822,216,0 +170765400869,216,0 +170765400917,216,0 +170765400965,216,0 +170765401013,215,0 +170765401061,215,0 +170765401109,215,0 +170765401157,215,0 +170765401204,215,0 +170765401252,215,0 +170765401300,215,0 +170765401348,215,0 +170765401395,215,0 +170765401443,216,0 +170765401491,216,0 +170765401539,216,0 +170765401587,216,0 +170765401635,216,0 +170765401684,216,0 +170765401732,215,0 +170765401780,215,0 +170765401828,215,0 +170765401878,215,0 +170765401926,215,0 +170765401975,215,0 +170765402025,215,0 +170765402072,215,0 +170765402120,216,0 +170765402170,215,0 +170765402219,216,0 +170765402267,216,0 +170765402315,216,0 +170765402363,216,0 +170765402411,216,0 +170765402459,216,0 +170765402507,216,0 +170765402555,216,0 +170765402603,214,0 +170765402651,214,0 +170765402699,214,0 +170765402748,214,0 +170765402797,215,0 +170765402845,215,0 +170765402893,215,0 +170765402941,215,0 +170765402989,215,0 +170765403037,215,0 +170765403086,216,0 +170765403134,216,0 +170765403182,216,0 +170765403231,216,0 +170765403279,216,0 +170765403327,216,0 +170765403375,214,0 +170765403423,214,0 +170765403471,214,0 +170765403518,214,0 +170765403566,214,0 +170765403616,215,0 +170765403665,215,0 +170765403713,215,0 +170765403763,215,0 +170765403810,215,0 +170765403860,215,0 +170765403908,216,0 +170765403955,216,0 +170765404003,216,0 +170765404051,216,0 +170765404099,216,0 +170765404147,215,0 +170765404195,214,0 +170765404242,214,0 +170765404292,214,0 +170765404340,214,0 +170765404388,214,0 +170765404437,215,0 +170765404486,215,0 +170765404534,215,0 +170765404584,216,0 +170765404632,215,0 +170765404680,216,0 +170765404728,216,0 +170765404776,216,0 +170765404824,216,0 +170765404871,216,0 +170765404919,216,0 +170765404969,214,0 +170765405017,214,0 +170765405065,214,0 +170765405113,214,0 +170765405162,215,0 +170765405212,215,0 +170765405261,215,0 +170765405311,215,0 +170765405360,216,0 +170765405408,216,0 +170765405456,216,0 +170765405504,216,0 +170765405552,216,0 +170765405601,216,0 +170765405649,215,0 +170765405699,216,0 +170765405746,214,0 +170765405794,215,0 +170765405842,215,0 +170765405890,215,0 +170765405938,215,0 +170765405988,215,0 +170765406037,215,0 +170765406087,215,0 +170765406136,216,0 +170765406184,216,0 +170765406232,216,0 +170765406281,215,0 +170765406329,215,0 +170765406377,216,0 +170765406425,216,0 +170765406473,215,0 +170765406521,214,0 +170765406571,214,0 +170765406618,214,0 +170765406666,214,0 +170765406716,214,0 +170765406765,215,0 +170765406815,215,0 +170765406863,215,0 +170765406912,215,0 +170765406960,215,0 +170765407008,215,0 +170765407056,215,0 +170765407104,216,0 +170765407152,216,0 +170765407200,216,0 +170765407247,216,0 +170765407295,214,0 +170765407343,214,0 +170765407391,214,0 +170765407439,214,0 +170765407487,214,0 +170765407535,214,0 +170765407582,214,0 +170765407632,215,0 +170765407680,215,0 +170765407727,215,0 +170765407775,215,0 +170765407823,216,0 +170765407871,215,0 +170765407919,215,0 +170765407966,216,0 +170765408014,216,0 +170765408062,215,0 +170765408110,214,0 +170765408158,214,0 +170765408207,214,0 +170765408255,214,0 +170765408303,214,0 +170765408351,215,0 +170765408399,215,0 +170765408446,215,0 +170765408494,215,0 +170765408542,215,0 +170765408590,215,0 +170765408638,215,0 +170765408685,215,0 +170765408733,216,0 +170765408781,215,0 +170765408829,215,0 +170765408876,214,0 +170765408924,213,0 +170765408972,214,0 +170765409020,214,0 +170765409069,214,0 +170765409119,214,0 +170765409167,214,0 +170765409214,215,0 +170765409262,215,0 +170765409310,215,0 +170765409358,215,0 +170765409407,216,0 +170765409455,215,0 +170765409503,216,0 +170765409552,216,0 +170765409600,216,0 +170765409650,215,0 +170765409698,213,0 +170765409745,213,0 +170765409795,214,0 +170765409843,214,0 +170765409891,214,0 +170765409938,215,0 +170765409986,215,0 +170765410036,215,0 +170765410084,215,0 +170765410133,216,0 +170765410181,215,0 +170765410229,216,0 +170765410278,216,0 +170765410326,216,0 +170765410376,216,0 +170765410423,215,0 +170765410473,214,0 +170765410521,214,0 +170765410569,214,0 +170765410616,214,0 +170765410664,214,0 +170765410714,214,0 +170765410762,215,0 +170765410809,215,0 +170765410857,215,0 +170765410905,215,0 +170765410953,215,0 +170765411001,216,0 +170765411048,215,0 +170765411096,216,0 +170765411144,216,0 +170765411192,215,0 +170765411240,214,0 +170765411289,213,0 +170765411337,214,0 +170765411387,214,0 +170765411434,214,0 +170765411482,214,0 +170765411530,214,0 +170765411578,215,0 +170765411626,215,0 +170765411674,215,0 +170765411722,215,0 +170765411771,215,0 +170765411819,216,0 +170765411867,215,0 +170765411915,215,0 +170765411962,215,0 +170765412010,215,0 +170765412058,214,0 +170765412107,214,0 +170765412155,214,0 +170765412204,214,0 +170765412252,214,0 +170765412300,214,0 +170765412349,214,0 +170765412397,215,0 +170765412445,215,0 +170765412495,215,0 +170765412542,215,0 +170765412590,216,0 +170765412638,216,0 +170765412686,216,0 +170765412735,215,0 +170765412783,215,0 +170765412831,214,0 +170765412879,214,0 +170765412927,214,0 +170765412974,214,0 +170765413024,215,0 +170765413072,215,0 +170765413119,215,0 +170765413167,215,0 +170765413215,216,0 +170765413263,216,0 +170765413311,216,0 +170765413359,216,0 +170765413406,216,0 +170765413454,215,0 +170765413502,216,0 +170765413550,215,0 +170765413598,214,0 +170765413646,214,0 +170765413693,215,0 +170765413741,214,0 +170765413789,215,0 +170765413837,215,0 +170765413885,215,0 +170765413933,215,0 +170765413981,215,0 +170765414029,216,0 +170765414078,216,0 +170765414126,215,0 +170765414174,216,0 +170765414221,216,0 +170765414269,216,0 +170765414317,216,0 +170765414365,215,0 +170765414413,214,0 +170765414460,214,0 +170765414508,215,0 +170765414556,215,0 +170765414604,215,0 +170765414652,215,0 +170765414700,215,0 +170765414747,215,0 +170765414795,215,0 +170765414843,215,0 +170765414891,216,0 +170765414939,216,0 +170765414987,216,0 +170765415036,216,0 +170765415085,216,0 +170765415133,216,0 +170765415181,214,0 +170765415229,214,0 +170765415277,214,0 +170765415324,214,0 +170765415372,215,0 +170765415420,215,0 +170765415468,215,0 +170765415517,215,0 +170765415565,215,0 +170765415615,216,0 +170765415662,216,0 +170765415710,216,0 +170765415758,215,0 +170765415806,216,0 +170765415854,216,0 +170765415901,215,0 +170765415951,214,0 +170765415999,214,0 +170765416047,214,0 +170765416094,214,0 +170765416142,215,0 +170765416190,215,0 +170765416238,215,0 +170765416286,215,0 +170765416334,215,0 +170765416382,216,0 +170765416429,216,0 +170765416477,215,0 +170765416525,216,0 +170765416573,216,0 +170765416622,216,0 +170765416670,216,0 +170765416718,215,0 +170765416766,214,0 +170765416814,214,0 +170765416862,214,0 +170765416910,214,0 +170765416958,215,0 +170765417006,214,0 +170765417053,215,0 +170765417101,215,0 +170765417149,215,0 +170765417197,215,0 +170765417246,216,0 +170765417294,215,0 +170765417342,216,0 +170765417390,216,0 +170765417438,216,0 +170765417486,216,0 +170765417533,214,0 +170765417581,214,0 +170765417629,215,0 +170765417677,215,0 +170765417725,215,0 +170765417773,215,0 +170765417821,215,0 +170765417868,216,0 +170765417916,216,0 +170765417964,216,0 +170765418012,216,0 +170765418060,216,0 +170765418108,216,0 +170765418157,216,0 +170765418205,216,0 +170765418253,216,0 +170765418300,214,0 +170765418348,215,0 +170765418396,215,0 +170765418444,215,0 +170765418492,215,0 +170765418540,215,0 +170765418587,215,0 +170765418635,215,0 +170765418683,216,0 +170765418731,216,0 +170765418779,216,0 +170765418827,216,0 +170765418875,216,0 +170765418922,216,0 +170765418970,216,0 +170765419020,216,0 +170765419068,216,0 +170765419115,214,0 +170765419163,214,0 +170765419211,215,0 +170765419259,214,0 +170765419307,214,0 +170765419355,215,0 +170765419404,215,0 +170765419452,215,0 +170765419500,215,0 +170765419547,216,0 +170765419595,216,0 +170765419643,216,0 +170765419691,216,0 +170765419739,216,0 +170765419787,216,0 +170765419835,215,0 +170765419882,214,0 +170765419930,214,0 +170765419978,214,0 +170765420026,214,0 +170765420074,215,0 +170765420121,215,0 +170765420169,215,0 +170765420219,215,0 +170765420268,215,0 +170765420316,215,0 +170765420364,216,0 +170765420412,216,0 +170765420459,216,0 +170765420507,216,0 +170765420557,216,0 +170765420604,216,0 +170765420652,215,0 +170765420702,214,0 +170765420750,214,0 +170765420797,214,0 +170765420845,215,0 +170765420895,215,0 +170765420944,215,0 +170765420992,215,0 +170765421040,215,0 +170765421087,216,0 +170765421135,216,0 +170765421183,216,0 +170765421233,216,0 +170765421282,216,0 +170765421330,216,0 +170765421377,216,0 +170765421425,215,0 +170765421473,214,0 +170765421521,214,0 +170765421569,214,0 +170765421617,214,0 +170765421664,215,0 +170765421712,215,0 +170765421760,214,0 +170765421808,215,0 +170765421856,215,0 +170765421904,216,0 +170765421952,216,0 +170765421999,216,0 +170765422049,216,0 +170765422097,216,0 +170765422145,215,0 +170765422192,215,0 +170765422240,214,0 +170765422288,214,0 +170765422336,214,0 +170765422384,214,0 +170765422432,214,0 +170765422479,215,0 +170765422527,215,0 +170765422575,215,0 +170765422623,215,0 +170765422671,215,0 +170765422719,216,0 +170765422768,216,0 +170765422816,216,0 +170765422864,215,0 +170765422912,216,0 +170765422959,216,0 +170765423007,215,0 +170765423057,213,0 +170765423106,214,0 +170765423154,214,0 +170765423202,214,0 +170765423250,214,0 +170765423298,214,0 +170765423346,215,0 +170765423393,215,0 +170765423441,215,0 +170765423489,215,0 +170765423537,215,0 +170765423585,215,0 +170765423633,216,0 +170765423680,216,0 +170765423728,215,0 +170765423776,215,0 +170765423824,214,0 +170765423872,213,0 +170765423920,213,0 +170765423967,214,0 +170765424017,214,0 +170765424065,214,0 +170765424112,214,0 +170765424160,214,0 +170765424208,215,0 +170765424257,215,0 +170765424307,215,0 +170765424355,215,0 +170765424402,215,0 +170765424450,215,0 +170765424498,216,0 +170765424546,216,0 +170765424594,214,0 +170765424642,213,0 +170765424690,214,0 +170765424737,214,0 +170765424785,214,0 +170765424833,214,0 +170765424881,214,0 +170765424929,214,0 +170765424977,215,0 +170765425024,215,0 +170765425072,215,0 +170765425120,215,0 +170765425168,215,0 +170765425217,216,0 +170765425265,216,0 +170765425313,215,0 +170765425362,215,0 +170765425412,214,0 +170765425460,214,0 +170765425509,214,0 +170765425557,214,0 +170765425605,215,0 +170765425653,215,0 +170765425700,215,0 +170765425748,215,0 +170765425798,215,0 +170765425845,215,0 +170765425895,215,0 +170765425943,216,0 +170765425990,215,0 +170765426040,215,0 +170765426088,216,0 +170765426135,215,0 +170765426183,214,0 +170765426231,214,0 +170765426279,214,0 +170765426327,214,0 +170765426375,215,0 +170765426423,215,0 +170765426470,215,0 +170765426518,215,0 +170765426566,215,0 +170765426614,215,0 +170765426662,216,0 +170765426710,215,0 +170765426757,216,0 +170765426805,216,0 +170765426853,216,0 +170765426901,216,0 +170765426949,214,0 +170765426996,214,0 +170765427044,214,0 +170765427092,214,0 +170765427140,214,0 +170765427188,215,0 +170765427236,215,0 +170765427283,215,0 +170765427333,215,0 +170765427381,215,0 +170765427428,215,0 +170765427476,216,0 +170765427524,216,0 +170765427572,215,0 +170765427620,216,0 +170765427668,215,0 +170765427715,215,0 +170765427763,214,0 +170765427811,214,0 +170765427860,214,0 +170765427910,214,0 +170765427958,214,0 +170765428005,214,0 +170765428053,214,0 +170765428101,215,0 +170765428150,215,0 +170765428198,215,0 +170765428246,215,0 +170765428294,215,0 +170765428342,215,0 +170765428390,215,0 +170765428437,215,0 +170765428485,215,0 +170765428533,214,0 +170765428581,214,0 +170765428629,214,0 +170765428677,214,0 +170765428724,214,0 +170765428772,214,0 +170765428820,214,0 +170765428868,215,0 +170765428916,215,0 +170765428964,215,0 +170765429011,215,0 +170765429059,215,0 +170765429107,216,0 +170765429156,215,0 +170765429204,216,0 +170765429254,216,0 +170765429302,215,0 +170765429349,214,0 +170765429397,214,0 +170765429447,214,0 +170765429495,215,0 +170765429542,215,0 +170765429590,215,0 +170765429638,215,0 +170765429686,216,0 +170765429734,216,0 +170765429783,216,0 +170765429831,216,0 +170765429879,216,0 +170765429928,216,0 +170765429976,216,0 +170765430026,216,0 +170765430075,215,0 +170765430123,214,0 +170765430171,215,0 +170765430219,215,0 +170765430267,215,0 +170765430316,215,0 +170765430364,215,0 +170765430412,215,0 +170765430460,216,0 +170765430508,215,0 +170765430558,216,0 +170765430605,216,0 +170765430653,216,0 +170765430701,216,0 +170765430749,216,0 +170765430799,216,0 +170765430847,215,0 +170765430895,215,0 +170765430944,214,0 +170765430992,215,0 +170765431040,215,0 +170765431089,215,0 +170765431137,215,0 +170765431185,215,0 +170765431233,215,0 +170765431283,216,0 +170765431330,216,0 +170765431378,216,0 +170765431426,216,0 +170765431474,216,0 +170765431522,216,0 +170765431570,216,0 +170765431617,216,0 +170765431665,215,0 +170765431714,214,0 +170765431762,215,0 +170765431812,215,0 +170765431860,215,0 +170765431909,215,0 +170765431957,215,0 +170765432005,215,0 +170765432055,215,0 +170765432102,215,0 +170765432152,216,0 +170765432201,216,0 +170765432249,216,0 +170765432299,216,0 +170765432348,216,0 +170765432396,216,0 +170765432444,214,0 +170765432493,214,0 +170765432541,214,0 +170765432591,214,0 +170765432639,214,0 +170765432687,215,0 +170765432735,215,0 +170765432783,215,0 +170765432831,215,0 +170765432880,216,0 +170765432928,216,0 +170765432976,216,0 +170765433024,216,0 +170765433072,216,0 +170765433120,216,0 +170765433169,216,0 +170765433217,215,0 +170765433265,214,0 +170765433313,214,0 +170765433361,214,0 +170765433410,215,0 +170765433458,215,0 +170765433506,215,0 +170765433554,215,0 +170765433604,215,0 +170765433653,216,0 +170765433703,216,0 +170765433751,216,0 +170765433799,216,0 +170765433848,215,0 +170765433896,216,0 +170765433945,216,0 +170765433993,215,0 +170765434041,214,0 +170765434091,214,0 +170765434139,214,0 +170765434186,214,0 +170765434236,214,0 +170765434284,215,0 +170765434332,214,0 +170765434380,215,0 +170765434429,215,0 +170765434477,216,0 +170765434525,215,0 +170765434575,216,0 +170765434622,216,0 +170765434670,216,0 +170765434720,216,0 +170765434769,216,0 +170765434817,214,0 +170765434865,213,0 +170765434913,214,0 +170765434963,214,0 +170765435011,214,0 +170765435059,214,0 +170765435107,215,0 +170765435154,215,0 +170765435202,215,0 +170765435250,215,0 +170765435298,216,0 +170765435346,215,0 +170765435393,216,0 +170765435441,216,0 +170765435489,215,0 +170765435537,216,0 +170765435585,214,0 +170765435635,213,0 +170765435684,213,0 +170765435732,214,0 +170765435782,214,0 +170765435831,214,0 +170765435879,214,0 +170765435927,214,0 +170765435975,214,0 +170765436023,215,0 +170765436071,215,0 +170765436119,215,0 +170765436167,215,0 +170765436216,215,0 +170765436266,216,0 +170765436315,216,0 +170765436363,214,0 +170765436412,214,0 +170765436460,214,0 +170765436508,214,0 +170765436556,214,0 +170765436606,214,0 +170765436655,215,0 +170765436703,215,0 +170765436751,215,0 +170765436801,215,0 +170765436850,215,0 +170765436898,215,0 +170765436946,215,0 +170765436994,215,0 +170765437042,215,0 +170765437090,215,0 +170765437138,215,0 +170765437186,213,0 +170765437234,213,0 +170765437282,214,0 +170765437330,214,0 +170765437378,214,0 +170765437427,215,0 +170765437475,215,0 +170765437523,215,0 +170765437572,215,0 +170765437620,215,0 +170765437670,216,0 +170765437718,216,0 +170765437766,216,0 +170765437814,216,0 +170765437863,216,0 +170765437913,215,0 +170765437960,215,0 +170765438008,215,0 +170765438056,215,0 +170765438104,215,0 +170765438152,215,0 +170765438200,215,0 +170765438248,215,0 +170765438297,215,0 +170765438345,215,0 +170765438393,216,0 +170765438441,216,0 +170765438489,215,0 +170765438539,215,0 +170765438587,215,0 +170765438635,216,0 +170765438684,215,0 +170765438734,215,0 +170765438783,215,0 +170765438831,215,0 +170765438881,215,0 +170765438929,216,0 +170765438977,215,0 +170765439026,215,0 +170765439074,215,0 +170765439124,215,0 +170765439173,216,0 +170765439221,216,0 +170765439270,216,0 +170765439320,216,0 +170765439368,216,0 +170765439417,216,0 +170765439467,216,0 +170765439516,214,0 +170765439564,214,0 +170765439612,214,0 +170765439660,215,0 +170765439708,215,0 +170765439756,215,0 +170765439804,215,0 +170765439852,215,0 +170765439901,215,0 +170765439949,215,0 +170765439997,215,0 +170765440045,216,0 +170765440095,216,0 +170765440144,215,0 +170765440192,216,0 +170765440241,216,0 +170765440289,215,0 +170765440337,214,0 +170765440387,214,0 +170765440436,214,0 +170765440484,215,0 +170765440532,215,0 +170765440580,215,0 +170765440628,215,0 +170765440676,215,0 +170765440724,215,0 +170765440772,216,0 +170765440820,216,0 +170765440869,215,0 +170765440917,216,0 +170765440965,216,0 +170765441015,216,0 +170765441062,216,0 +170765441112,214,0 +170765441160,214,0 +170765441208,214,0 +170765441256,214,0 +170765441304,215,0 +170765441351,215,0 +170765441399,215,0 +170765441447,215,0 +170765441497,215,0 +170765441546,215,0 +170765441594,216,0 +170765441643,216,0 +170765441691,215,0 +170765441739,217,0 +170765441787,216,0 +170765441835,216,0 +170765441883,214,0 +170765441931,214,0 +170765441979,215,0 +170765442028,215,0 +170765442076,215,0 +170765442125,215,0 +170765442173,215,0 +170765442223,216,0 +170765442272,215,0 +170765442322,216,0 +170765442370,216,0 +170765442417,216,0 +170765442465,216,0 +170765442513,216,0 +170765442562,216,0 +170765442612,216,0 +170765442660,214,0 +170765442707,214,0 +170765442755,214,0 +170765442805,214,0 +170765442852,215,0 +170765442900,215,0 +170765442948,215,0 +170765442998,215,0 +170765443045,215,0 +170765443093,215,0 +170765443141,216,0 +170765443189,216,0 +170765443237,216,0 +170765443285,215,0 +170765443333,216,0 +170765443382,216,0 +170765443431,215,0 +170765443479,214,0 +170765443527,214,0 +170765443575,214,0 +170765443623,214,0 +170765443671,214,0 +170765443720,215,0 +170765443768,215,0 +170765443816,215,0 +170765443864,215,0 +170765443912,215,0 +170765443959,216,0 +170765444007,215,0 +170765444057,215,0 +170765444104,216,0 +170765444152,215,0 +170765444200,215,0 +170765444248,214,0 +170765444296,214,0 +170765444343,214,0 +170765444391,214,0 +170765444439,214,0 +170765444487,214,0 +170765444536,214,0 +170765444584,214,0 +170765444632,214,0 +170765444680,215,0 +170765444728,214,0 +170765444775,215,0 +170765444825,215,0 +170765444873,215,0 +170765444922,215,0 +170765444970,215,0 +170765445018,213,0 +170765445065,213,0 +170765445113,213,0 +170765445161,214,0 +170765445209,214,0 +170765445257,214,0 +170765445304,214,0 +170765445352,214,0 +170765445402,215,0 +170765445450,215,0 +170765445497,215,0 +170765445547,215,0 +170765445595,215,0 +170765445644,215,0 +170765445692,215,0 +170765445740,215,0 +170765445788,214,0 +170765445835,213,0 +170765445885,214,0 +170765445933,214,0 +170765445981,214,0 +170765446030,214,0 +170765446080,214,0 +170765446128,214,0 +170765446177,215,0 +170765446225,215,0 +170765446273,215,0 +170765446321,215,0 +170765446369,215,0 +170765446417,215,0 +170765446465,216,0 +170765446513,215,0 +170765446563,215,0 +170765446612,214,0 +170765446660,214,0 +170765446708,214,0 +170765446756,214,0 +170765446804,214,0 +170765446852,214,0 +170765446899,214,0 +170765446947,215,0 +170765446995,215,0 +170765447043,215,0 +170765447091,215,0 +170765447139,215,0 +170765447188,216,0 +170765447236,216,0 +170765447284,215,0 +170765447332,215,0 +170765447379,214,0 +170765447427,213,0 +170765447475,213,0 +170765447523,213,0 +170765447571,214,0 +170765447620,214,0 +170765447668,214,0 +170765447718,214,0 +170765447765,214,0 +170765447813,215,0 +170765447861,215,0 +170765447909,215,0 +170765447957,215,0 +170765448005,215,0 +170765448054,215,0 +170765448102,215,0 +170765448150,214,0 +170765448198,213,0 +170765448247,213,0 +170765448295,213,0 +170765448345,213,0 +170765448393,214,0 +170765448442,214,0 +170765448490,214,0 +170765448538,214,0 +170765448587,214,0 +170765448635,215,0 +170765448685,215,0 +170765448733,214,0 +170765448782,215,0 +170765448830,216,0 +170765448880,216,0 +170765448928,215,0 +170765448976,215,0 +170765449024,216,0 +170765449072,216,0 +170765449121,216,0 +170765449169,216,0 +170765449219,216,0 +170765449268,216,0 +170765449316,215,0 +170765449366,214,0 +170765449414,214,0 +170765449461,214,0 +170765449509,214,0 +170765449557,215,0 +170765449605,215,0 +170765449653,215,0 +170765449701,215,0 +170765449749,216,0 +170765449799,216,0 +170765449847,216,0 +170765449896,216,0 +170765449946,216,0 +170765449994,216,0 +170765450041,215,0 +170765450091,216,0 +170765450139,215,0 +170765450188,215,0 +170765450236,215,0 +170765450284,215,0 +170765450332,216,0 +170765450380,216,0 +170765450428,215,0 +170765450478,215,0 +170765450526,216,0 +170765450574,216,0 +170765450622,216,0 +170765450669,216,0 +170765450717,216,0 +170765450765,216,0 +170765450815,216,0 +170765450864,215,0 +170765450912,215,0 +170765450962,215,0 +170765451010,215,0 +170765451059,215,0 +170765451109,215,0 +170765451156,216,0 +170765451204,216,0 +170765451252,216,0 +170765451302,215,0 +170765451350,216,0 +170765451399,216,0 +170765451447,216,0 +170765451497,216,0 +170765451546,216,0 +170765451596,216,0 +170765451644,216,0 +170765451693,214,0 +170765451741,214,0 +170765451789,215,0 +170765451837,215,0 +170765451886,215,0 +170765451934,215,0 +170765451982,215,0 +170765452030,215,0 +170765452080,215,0 +170765452127,216,0 +170765452177,215,0 +170765452225,215,0 +170765452273,216,0 +170765452322,215,0 +170765452370,216,0 +170765452418,216,0 +170765452468,214,0 +170765452515,214,0 +170765452563,214,0 +170765452613,214,0 +170765452662,214,0 +170765452710,214,0 +170765452758,214,0 +170765452806,215,0 +170765452854,215,0 +170765452902,215,0 +170765452950,215,0 +170765452999,215,0 +170765453047,215,0 +170765453095,216,0 +170765453142,216,0 +170765453190,215,0 +170765453238,215,0 +170765453286,214,0 +170765453334,214,0 +170765453382,214,0 +170765453429,214,0 +170765453479,214,0 +170765453527,214,0 +170765453575,215,0 +170765453622,215,0 +170765453670,215,0 +170765453718,215,0 +170765453767,215,0 +170765453815,216,0 +170765453863,215,0 +170765453913,215,0 +170765453962,216,0 +170765454010,216,0 +170765454058,214,0 +170765454106,214,0 +170765454154,214,0 +170765454202,214,0 +170765454251,214,0 +170765454301,215,0 +170765454349,215,0 +170765454398,215,0 +170765454446,215,0 +170765454496,215,0 +170765454544,216,0 +170765454591,216,0 +170765454641,216,0 +170765454689,216,0 +170765454737,216,0 +170765454785,215,0 +170765454832,214,0 +170765454880,214,0 +170765454930,214,0 +170765454978,214,0 +170765455026,215,0 +170765455075,215,0 +170765455123,215,0 +170765455171,215,0 +170765455219,216,0 +170765455268,215,0 +170765455318,216,0 +170765455366,216,0 +170765455414,215,0 +170765455462,216,0 +170765455511,216,0 +170765455559,216,0 +170765455607,214,0 +170765455655,214,0 +170765455704,214,0 +170765455752,214,0 +170765455800,214,0 +170765455848,214,0 +170765455897,215,0 +170765455945,215,0 +170765455993,215,0 +170765456041,215,0 +170765456089,215,0 +170765456137,215,0 +170765456185,215,0 +170765456233,216,0 +170765456281,216,0 +170765456330,216,0 +170765456380,215,0 +170765456428,214,0 +170765456476,214,0 +170765456525,214,0 +170765456575,214,0 +170765456623,214,0 +170765456671,215,0 +170765456719,215,0 +170765456767,215,0 +170765456816,215,0 +170765456864,216,0 +170765456912,215,0 +170765456960,216,0 +170765457008,216,0 +170765457056,216,0 +170765457106,216,0 +170765457153,215,0 +170765457201,214,0 +170765457249,214,0 +170765457297,214,0 +170765457345,214,0 +170765457394,215,0 +170765457444,215,0 +170765457492,215,0 +170765457541,215,0 +170765457589,215,0 +170765457639,215,0 +170765457688,215,0 +170765457736,216,0 +170765457784,216,0 +170765457832,216,0 +170765457882,215,0 +170765457931,216,0 +170765457979,214,0 +170765458027,214,0 +170765458075,214,0 +170765458123,214,0 +170765458171,215,0 +170765458219,215,0 +170765458267,215,0 +170765458315,215,0 +170765458362,215,0 +170765458410,215,0 +170765458458,215,0 +170765458508,216,0 +170765458556,216,0 +170765458605,216,0 +170765458654,215,0 +170765458702,216,0 +170765458750,214,0 +170765458800,214,0 +170765458848,214,0 +170765458896,214,0 +170765458944,214,0 +170765458993,214,0 +170765459041,215,0 +170765459091,215,0 +170765459139,215,0 +170765459187,215,0 +170765459234,215,0 +170765459282,215,0 +170765459332,216,0 +170765459380,216,0 +170765459428,216,0 +170765459476,216,0 +170765459524,215,0 +170765459573,213,0 +170765459622,214,0 +170765459670,214,0 +170765459718,214,0 +170765459766,214,0 +170765459814,215,0 +170765459862,215,0 +170765459912,215,0 +170765459959,215,0 +170765460007,215,0 +170765460055,215,0 +170765460103,215,0 +170765460151,216,0 +170765460201,215,0 +170765460249,216,0 +170765460297,215,0 +170765460344,214,0 +170765460392,214,0 +170765460440,214,0 +170765460488,214,0 +170765460536,214,0 +170765460585,215,0 +170765460635,215,0 +170765460684,214,0 +170765460732,215,0 +170765460782,215,0 +170765460831,215,0 +170765460879,216,0 +170765460927,216,0 +170765460975,216,0 +170765461023,216,0 +170765461071,215,0 +170765461119,214,0 +170765461167,214,0 +170765461215,214,0 +170765461264,214,0 +170765461314,214,0 +170765461362,214,0 +170765461410,215,0 +170765461458,215,0 +170765461506,215,0 +170765461555,215,0 +170765461604,215,0 +170765461652,216,0 +170765461700,216,0 +170765461750,216,0 +170765461798,216,0 +170765461847,216,0 +170765461895,214,0 +170765461945,214,0 +170765461993,214,0 +170765462041,214,0 +170765462089,215,0 +170765462137,215,0 +170765462185,215,0 +170765462232,215,0 +170765462280,215,0 +170765462328,216,0 +170765462376,216,0 +170765462424,216,0 +170765462473,216,0 +170765462523,216,0 +170765462571,216,0 +170765462620,216,0 +170765462668,215,0 +170765462716,214,0 +170765462766,214,0 +170765462814,214,0 +170765462863,215,0 +170765462911,215,0 +170765462961,215,0 +170765463009,215,0 +170765463057,215,0 +170765463104,216,0 +170765463152,216,0 +170765463200,215,0 +170765463248,216,0 +170765463298,216,0 +170765463346,215,0 +170765463394,216,0 +170765463442,215,0 +170765463490,214,0 +170765463538,214,0 +170765463586,215,0 +170765463634,215,0 +170765463682,215,0 +170765463731,215,0 +170765463779,215,0 +170765463829,215,0 +170765463876,215,0 +170765463924,216,0 +170765463974,216,0 +170765464022,215,0 +170765464071,215,0 +170765464121,216,0 +170765464169,216,0 +170765464218,216,0 +170765464268,214,0 +170765464317,214,0 +170765464365,214,0 +170765464415,214,0 +170765464463,215,0 +170765464511,215,0 +170765464560,215,0 +170765464609,215,0 +170765464657,217,0 +170765464705,215,0 +170765464755,216,0 +170765464803,216,0 +170765464852,216,0 +170765464900,216,0 +170765464948,216,0 +170765464996,216,0 +170765465044,214,0 +170765465094,214,0 +170765465142,214,0 +170765465190,214,0 +170765465238,214,0 +170765465287,215,0 +170765465335,215,0 +170765465385,215,0 +170765465432,215,0 +170765465480,215,0 +170765465530,216,0 +170765465579,216,0 +170765465627,216,0 +170765465675,216,0 +170765465723,215,0 +170765465773,216,0 +170765465822,215,0 +170765465872,214,0 +170765465920,214,0 +170765465968,214,0 +170765466016,215,0 +170765466064,215,0 +170765466113,215,0 +170765466163,215,0 +170765466212,215,0 +170765466260,216,0 +170765466308,216,0 +170765466356,216,0 +170765466404,216,0 +170765466452,216,0 +170765466500,216,0 +170765466548,216,0 +170765466596,215,0 +170765466645,214,0 +170765466693,214,0 +170765466741,214,0 +170765466789,214,0 +170765466837,215,0 +170765466885,215,0 +170765466933,215,0 +170765466980,215,0 +170765467028,216,0 +170765467078,216,0 +170765467127,216,0 +170765467175,216,0 +170765467223,216,0 +170765467273,216,0 +170765467322,216,0 +170765467372,216,0 +170765467420,214,0 +170765467469,214,0 +170765467517,214,0 +170765467567,215,0 +170765467616,215,0 +170765467666,215,0 +170765467713,215,0 +170765467761,215,0 +170765467811,215,0 +170765467859,216,0 +170765467907,215,0 +170765467955,216,0 +170765468003,216,0 +170765468051,216,0 +170765468100,216,0 +170765468150,215,0 +170765468197,214,0 +170765468247,214,0 +170765468295,214,0 +170765468343,215,0 +170765468391,214,0 +170765468439,215,0 +170765468487,215,0 +170765468535,215,0 +170765468582,215,0 +170765468632,215,0 +170765468680,216,0 +170765468729,216,0 +170765468777,216,0 +170765468825,216,0 +170765468875,216,0 +170765468923,215,0 +170765468971,214,0 +170765469019,214,0 +170765469067,214,0 +170765469115,214,0 +170765469163,215,0 +170765469212,215,0 +170765469260,215,0 +170765469308,215,0 +170765469357,215,0 +170765469405,215,0 +170765469453,215,0 +170765469501,216,0 +170765469549,215,0 +170765469597,216,0 +170765469647,216,0 +170765469695,216,0 +170765469743,215,0 +170765469792,214,0 +170765469840,214,0 +170765469888,214,0 +170765469938,215,0 +170765469987,215,0 +170765470035,215,0 +170765470083,215,0 +170765470132,216,0 +170765470182,215,0 +170765470230,216,0 +170765470278,216,0 +170765470327,216,0 +170765470377,216,0 +170765470425,216,0 +170765470474,216,0 +170765470522,215,0 +170765470572,214,0 +170765470621,214,0 +170765470669,214,0 +170765470717,215,0 +170765470767,215,0 +170765470814,215,0 +170765470864,215,0 +170765470912,215,0 +170765470961,215,0 +170765471009,215,0 +170765471057,216,0 +170765471107,216,0 +170765471155,217,0 +170765471204,216,0 +170765471252,216,0 +170765471300,215,0 +170765471348,213,0 +170765471396,213,0 +170765471444,214,0 +170765471492,214,0 +170765471540,214,0 +170765471588,214,0 +170765471637,214,0 +170765471685,215,0 +170765471733,215,0 +170765471783,215,0 +170765471832,215,0 +170765471880,215,0 +170765471928,216,0 +170765471976,215,0 +170765472025,216,0 +170765472075,215,0 +170765472123,214,0 +170765472171,213,0 +170765472220,214,0 +170765472268,214,0 +170765472316,214,0 +170765472364,214,0 +170765472412,214,0 +170765472460,214,0 +170765472508,214,0 +170765472556,215,0 +170765472604,215,0 +170765472651,215,0 +170765472699,215,0 +170765472749,215,0 +170765472798,215,0 +170765472848,215,0 +170765472897,214,0 +170765472947,213,0 +170765472996,213,0 +170765473044,214,0 +170765473094,214,0 +170765473142,214,0 +170765473190,214,0 +170765473238,214,0 +170765473286,214,0 +170765473334,215,0 +170765473383,215,0 +170765473433,215,0 +170765473482,216,0 +170765473532,215,0 +170765473580,216,0 +170765473629,215,0 +170765473677,215,0 +170765473727,213,0 +170765473775,213,0 +170765473824,214,0 +170765473874,214,0 +170765473921,214,0 +170765473971,214,0 +170765474019,215,0 +170765474067,215,0 +170765474116,215,0 +170765474164,215,0 +170765474212,215,0 +170765474260,216,0 +170765474308,216,0 +170765474358,216,0 +170765474405,216,0 +170765474453,215,0 +170765474501,214,0 +170765474549,214,0 +170765474597,214,0 +170765474647,215,0 +170765474696,215,0 +170765474746,215,0 +170765474794,215,0 +170765474842,215,0 +170765474889,215,0 +170765474937,215,0 +170765474985,216,0 +170765475033,216,0 +170765475081,215,0 +170765475129,215,0 +170765475178,216,0 +170765475228,215,0 +170765475277,214,0 +170765475327,214,0 +170765475375,214,0 +170765475423,214,0 +170765475471,215,0 +170765475519,215,0 +170765475566,215,0 +170765475614,215,0 +170765475664,215,0 +170765475713,215,0 +170765475761,216,0 +170765475810,215,0 +170765475858,215,0 +170765475906,216,0 +170765475956,216,0 +170765476004,215,0 +170765476052,214,0 +170765476101,214,0 +170765476149,214,0 +170765476197,214,0 +170765476245,214,0 +170765476294,215,0 +170765476342,215,0 +170765476390,215,0 +170765476438,215,0 +170765476486,215,0 +170765476536,215,0 +170765476585,215,0 +170765476633,216,0 +170765476681,216,0 +170765476729,215,0 +170765476777,214,0 +170765476826,214,0 +170765476874,214,0 +170765476922,214,0 +170765476970,214,0 +170765477018,214,0 +170765477066,214,0 +170765477113,214,0 +170765477163,214,0 +170765477211,215,0 +170765477259,215,0 +170765477307,215,0 +170765477354,215,0 +170765477402,215,0 +170765477450,215,0 +170765477499,215,0 +170765477547,215,0 +170765477597,215,0 +170765477645,214,0 +170765477694,214,0 +170765477742,214,0 +170765477790,214,0 +170765477840,214,0 +170765477887,214,0 +170765477935,215,0 +170765477985,215,0 +170765478034,215,0 +170765478082,215,0 +170765478132,215,0 +170765478180,216,0 +170765478228,215,0 +170765478277,216,0 +170765478325,216,0 +170765478373,216,0 +170765478421,214,0 +170765478469,215,0 +170765478517,214,0 +170765478565,215,0 +170765478614,215,0 +170765478662,215,0 +170765478711,215,0 +170765478759,215,0 +170765478807,216,0 +170765478855,216,0 +170765478903,216,0 +170765478951,216,0 +170765479001,216,0 +170765479050,216,0 +170765479098,216,0 +170765479146,216,0 +170765479194,214,0 +170765479242,215,0 +170765479290,215,0 +170765479337,215,0 +170765479385,215,0 +170765479433,215,0 +170765479481,216,0 +170765479529,216,0 +170765479577,216,0 +170765479626,215,0 +170765479674,216,0 +170765479722,216,0 +170765479770,216,0 +170765479818,216,0 +170765479866,216,0 +170765479915,216,0 +170765479963,215,0 +170765480011,215,0 +170765480059,215,0 +170765480107,215,0 +170765480155,215,0 +170765480203,215,0 +170765480253,216,0 +170765480301,216,0 +170765480349,216,0 +170765480396,216,0 +170765480444,216,0 +170765480494,216,0 +170765480543,216,0 +170765480591,216,0 +170765480639,215,0 +170765480687,215,0 +170765480735,216,0 +170765480783,215,0 +170765480830,215,0 +170765480878,215,0 +170765480926,215,0 +170765480974,215,0 +170765481022,216,0 +170765481070,215,0 +170765481118,216,0 +170765481166,216,0 +170765481213,216,0 +170765481261,216,0 +170765481309,216,0 +170765481358,216,0 +170765481406,216,0 +170765481454,216,0 +170765481503,216,0 +170765481551,215,0 +170765481599,214,0 +170765481647,215,0 +170765481695,215,0 +170765481743,215,0 +170765481791,215,0 +170765481839,215,0 +170765481887,216,0 +170765481936,216,0 +170765481984,216,0 +170765482032,216,0 +170765482080,216,0 +170765482129,216,0 +170765482177,216,0 +170765482225,216,0 +170765482273,215,0 +170765482321,214,0 +170765482369,214,0 +170765482419,214,0 +170765482467,214,0 +170765482516,215,0 +170765482564,215,0 +170765482612,215,0 +170765482660,215,0 +170765482709,215,0 +170765482759,215,0 +170765482808,216,0 +170765482856,216,0 +170765482906,216,0 +170765482954,216,0 +170765483003,216,0 +170765483053,216,0 +170765483102,215,0 +170765483150,214,0 +170765483200,214,0 +170765483248,214,0 +170765483296,214,0 +170765483344,215,0 +170765483392,215,0 +170765483441,215,0 +170765483489,215,0 +170765483537,215,0 +170765483586,215,0 +170765483636,216,0 +170765483685,215,0 +170765483735,215,0 +170765483783,216,0 +170765483831,215,0 +170765483880,215,0 +170765483929,213,0 +170765483979,213,0 +170765484028,214,0 +170765484076,214,0 +170765484124,214,0 +170765484172,215,0 +170765484220,215,0 +170765484270,215,0 +170765484319,215,0 +170765484368,215,0 +170765484416,215,0 +170765484464,216,0 +170765484512,215,0 +170765484562,216,0 +170765484610,216,0 +170765484658,215,0 +170765484705,214,0 +170765484753,213,0 +170765484801,214,0 +170765484849,214,0 +170765484897,214,0 +170765484945,214,0 +170765484993,214,0 +170765485040,215,0 +170765485088,215,0 +170765485136,215,0 +170765485184,215,0 +170765485233,215,0 +170765485281,216,0 +170765485329,216,0 +170765485378,215,0 +170765485426,215,0 +170765485474,214,0 +170765485522,213,0 +170765485570,213,0 +170765485618,214,0 +170765485665,214,0 +170765485715,214,0 +170765485762,214,0 +170765485812,214,0 +170765485860,214,0 +170765485908,214,0 +170765485957,215,0 +170765486007,215,0 +170765486056,215,0 +170765486104,216,0 +170765486153,216,0 +170765486203,216,0 +170765486252,214,0 +170765486300,213,0 +170765486348,214,0 +170765486396,214,0 +170765486446,214,0 +170765486495,214,0 +170765486543,215,0 +170765486591,216,0 +170765486640,215,0 +170765486688,216,0 +170765486738,216,0 +170765486786,216,0 +170765486834,216,0 +170765486882,216,0 +170765486929,216,0 +170765486979,215,0 +170765487027,215,0 +170765487076,214,0 +170765487126,214,0 +170765487174,215,0 +170765487222,215,0 +170765487270,215,0 +170765487318,215,0 +170765487366,215,0 +170765487413,215,0 +170765487463,216,0 +170765487513,216,0 +170765487562,216,0 +170765487612,216,0 +170765487660,216,0 +170765487707,216,0 +170765487757,216,0 +170765487805,215,0 +170765487853,214,0 +170765487901,214,0 +170765487949,215,0 +170765487998,215,0 +170765488048,215,0 +170765488096,215,0 +170765488143,215,0 +170765488193,215,0 +170765488241,215,0 +170765488289,216,0 +170765488337,216,0 +170765488385,216,0 +170765488434,216,0 +170765488484,216,0 +170765488533,215,0 +170765488583,216,0 +170765488632,214,0 +170765488680,214,0 +170765488728,214,0 +170765488776,214,0 +170765488824,214,0 +170765488872,214,0 +170765488919,215,0 +170765488969,215,0 +170765489017,215,0 +170765489064,215,0 +170765489112,215,0 +170765489160,216,0 +170765489208,216,0 +170765489256,216,0 +170765489304,215,0 +170765489353,216,0 +170765489403,215,0 +170765489451,214,0 +170765489499,214,0 +170765489547,214,0 +170765489595,214,0 +170765489643,214,0 +170765489691,215,0 +170765489740,215,0 +170765489790,215,0 +170765489838,215,0 +170765489887,216,0 +170765489935,215,0 +170765489985,215,0 +170765490032,215,0 +170765490080,216,0 +170765490128,216,0 +170765490178,216,0 +170765490226,214,0 +170765490274,214,0 +170765490322,214,0 +170765490370,214,0 +170765490419,215,0 +170765490467,214,0 +170765490515,215,0 +170765490563,215,0 +170765490612,215,0 +170765490662,215,0 +170765490710,215,0 +170765490759,215,0 +170765490807,215,0 +170765490855,215,0 +170765490904,215,0 +170765490952,215,0 +170765491000,215,0 +170765491050,214,0 +170765491098,214,0 +170765491146,214,0 +170765491195,215,0 +170765491243,215,0 +170765491291,215,0 +170765491339,215,0 +170765491386,215,0 +170765491434,215,0 +170765491482,216,0 +170765491530,215,0 +170765491578,216,0 +170765491628,216,0 +170765491676,215,0 +170765491723,215,0 +170765491771,215,0 +170765491819,214,0 +170765491869,214,0 +170765491918,214,0 +170765491966,215,0 +170765492014,215,0 +170765492062,215,0 +170765492112,215,0 +170765492161,215,0 +170765492209,215,0 +170765492258,216,0 +170765492306,215,0 +170765492354,215,0 +170765492402,216,0 +170765492450,216,0 +170765492498,215,0 +170765492545,216,0 +170765492593,215,0 +170765492641,214,0 +170765492691,214,0 +170765492738,214,0 +170765492786,215,0 +170765492834,215,0 +170765492882,215,0 +170765492930,215,0 +170765492978,215,0 +170765493026,215,0 +170765493073,215,0 +170765493123,216,0 +170765493171,215,0 +170765493220,216,0 +170765493268,216,0 +170765493316,216,0 +170765493364,215,0 +170765493414,215,0 +170765493463,214,0 +170765493511,214,0 +170765493561,214,0 +170765493608,214,0 +170765493656,214,0 +170765493704,215,0 +170765493752,215,0 +170765493800,215,0 +170765493847,215,0 +170765493895,215,0 +170765493943,215,0 +170765493993,216,0 +170765494041,215,0 +170765494089,216,0 +170765494138,216,0 +170765494188,215,0 +170765494236,214,0 +170765494283,214,0 +170765494333,214,0 +170765494381,214,0 +170765494430,214,0 +170765494478,214,0 +170765494526,214,0 +170765494576,215,0 +170765494624,215,0 +170765494672,215,0 +170765494720,215,0 +170765494767,215,0 +170765494815,217,0 +170765494863,216,0 +170765494913,216,0 +170765494961,216,0 +170765495010,215,0 +170765495058,214,0 +170765495108,214,0 +170765495157,214,0 +170765495207,214,0 +170765495256,214,0 +170765495304,214,0 +170765495354,214,0 +170765495403,215,0 +170765495451,215,0 +170765495501,215,0 +170765495549,215,0 +170765495598,215,0 +170765495646,215,0 +170765495694,216,0 +170765495742,215,0 +170765495790,215,0 +170765495838,214,0 +170765495885,214,0 +170765495933,214,0 +170765495981,214,0 +170765496029,214,0 +170765496077,215,0 +170765496125,215,0 +170765496174,215,0 +170765496222,215,0 +170765496270,215,0 +170765496318,216,0 +170765496368,216,0 +170765496416,216,0 +170765496464,216,0 +170765496511,215,0 +170765496559,216,0 +170765496607,215,0 +170765496655,214,0 +170765496703,214,0 +170765496751,214,0 +170765496799,214,0 +170765496847,215,0 +170765496895,215,0 +170765496943,215,0 +170765496990,215,0 +170765497038,215,0 +170765497088,215,0 +170765497136,215,0 +170765497184,215,0 +170765497232,216,0 +170765497280,215,0 +170765497327,216,0 +170765497375,215,0 +170765497423,215,0 +170765497471,214,0 +170765497519,214,0 +170765497567,214,0 +170765497617,214,0 +170765497665,215,0 +170765497712,214,0 +170765497762,214,0 +170765497810,215,0 +170765497859,215,0 +170765497907,215,0 +170765497955,215,0 +170765498003,216,0 +170765498053,216,0 +170765498101,215,0 +170765498148,216,0 +170765498196,215,0 +170765498244,215,0 +170765498294,214,0 +170765498342,214,0 +170765498391,214,0 +170765498439,214,0 +170765498488,215,0 +170765498536,215,0 +170765498584,215,0 +170765498632,215,0 +170765498680,215,0 +170765498728,215,0 +170765498776,216,0 +170765498824,215,0 +170765498873,216,0 +170765498921,216,0 +170765498969,216,0 +170765499017,215,0 +170765499066,215,0 +170765499114,215,0 +170765499162,215,0 +170765499210,215,0 +170765499258,215,0 +170765499306,215,0 +170765499354,215,0 +170765499402,216,0 +170765499450,216,0 +170765499498,216,0 +170765499546,216,0 +170765499595,216,0 +170765499645,216,0 +170765499693,216,0 +170765499741,216,0 +170765499789,215,0 +170765499836,215,0 +170765499886,214,0 +170765499934,214,0 +170765499983,214,0 +170765500031,214,0 +170765500079,215,0 +170765500127,215,0 +170765500177,215,0 +170765500225,216,0 +170765500273,215,0 +170765500322,215,0 +170765500370,215,0 +170765500419,216,0 +170765500467,216,0 +170765500515,216,0 +170765500563,216,0 +170765500613,215,0 +170765500662,216,0 +170765500710,214,0 +170765500760,214,0 +170765500809,214,0 +170765500859,214,0 +170765500908,214,0 +170765500957,214,0 +170765501007,215,0 +170765501056,215,0 +170765501106,215,0 +170765501154,215,0 +170765501203,215,0 +170765501253,215,0 +170765501300,216,0 +170765501350,215,0 +170765501399,215,0 +170765501447,215,0 +170765501497,215,0 +170765501545,214,0 +170765501593,214,0 +170765501641,214,0 +170765501688,214,0 +170765501736,214,0 +170765501784,214,0 +170765501832,214,0 +170765501882,214,0 +170765501931,214,0 +170765501979,215,0 +170765502029,215,0 +170765502078,215,0 +170765502128,215,0 +170765502176,215,0 +170765502225,215,0 +170765502273,216,0 +170765502321,216,0 +170765502370,215,0 +170765502418,214,0 +170765502468,214,0 +170765502516,214,0 +170765502564,215,0 +170765502612,214,0 +170765502660,214,0 +170765502708,215,0 +170765502755,215,0 +170765502803,215,0 +170765502853,215,0 +170765502901,215,0 +170765502949,215,0 +170765502997,215,0 +170765503046,216,0 +170765503096,216,0 +170765503144,216,0 +170765503192,215,0 +170765503240,214,0 +170765503288,214,0 +170765503337,214,0 +170765503385,214,0 +170765503433,215,0 +170765503481,215,0 +170765503529,215,0 +170765503577,215,0 +170765503624,215,0 +170765503672,215,0 +170765503720,216,0 +170765503770,216,0 +170765503818,216,0 +170765503866,216,0 +170765503914,216,0 +170765503961,215,0 +170765504011,216,0 +170765504059,214,0 +170765504107,214,0 +170765504156,214,0 +170765504204,214,0 +170765504253,215,0 +170765504303,215,0 +170765504352,215,0 +170765504400,215,0 +170765504448,215,0 +170765504496,216,0 +170765504546,216,0 +170765504593,216,0 +170765504641,215,0 +170765504689,216,0 +170765504739,216,0 +170765504788,216,0 +170765504836,215,0 +170765504884,215,0 +170765504932,214,0 +170765504982,214,0 +170765505029,214,0 +170765505077,214,0 +170765505125,215,0 +170765505175,214,0 +170765505223,215,0 +170765505272,215,0 +170765505321,215,0 +170765505371,215,0 +170765505419,215,0 +170765505467,215,0 +170765505516,216,0 +170765505564,216,0 +170765505614,216,0 +170765505662,215,0 +170765505710,216,0 +170765505759,214,0 +170765505807,214,0 +170765505855,214,0 +170765505904,214,0 +170765505952,214,0 +170765506002,214,0 +170765506051,215,0 +170765506101,215,0 +170765506149,215,0 +170765506197,215,0 +170765506246,215,0 +170765506296,215,0 +170765506345,215,0 +170765506395,216,0 +170765506443,216,0 +170765506490,216,0 +170765506538,216,0 +170765506586,214,0 +170765506634,214,0 +170765506682,214,0 +170765506732,214,0 +170765506780,214,0 +170765506828,214,0 +170765506876,214,0 +170765506924,215,0 +170765506971,215,0 +170765507021,215,0 +170765507069,215,0 +170765507117,215,0 +170765507165,215,0 +170765507213,216,0 +170765507262,216,0 +170765507310,216,0 +170765507360,215,0 +170765507407,214,0 +170765507457,214,0 +170765507506,214,0 +170765507554,214,0 +170765507602,214,0 +170765507650,214,0 +170765507698,214,0 +170765507748,215,0 +170765507796,214,0 +170765507845,215,0 +170765507893,216,0 +170765507942,215,0 +170765507990,215,0 +170765508038,215,0 +170765508086,216,0 +170765508134,215,0 +170765508182,215,0 +170765508230,215,0 +170765508278,213,0 +170765508327,214,0 +170765508375,214,0 +170765508423,214,0 +170765508473,214,0 +170765508521,214,0 +170765508568,215,0 +170765508618,215,0 +170765508666,215,0 +170765508714,215,0 +170765508762,215,0 +170765508810,216,0 +170765508858,215,0 +170765508906,216,0 +170765508955,216,0 +170765509005,215,0 +170765509053,215,0 +170765509102,214,0 +170765509152,214,0 +170765509200,214,0 +170765509248,215,0 +170765509297,214,0 +170765509345,214,0 +170765509393,215,0 +170765509442,215,0 +170765509492,215,0 +170765509540,215,0 +170765509588,216,0 +170765509637,216,0 +170765509687,215,0 +170765509737,216,0 +170765509786,216,0 +170765509836,215,0 +170765509885,215,0 +170765509934,214,0 +170765509982,213,0 +170765510030,213,0 +170765510080,214,0 +170765510128,214,0 +170765510177,214,0 +170765510227,215,0 +170765510275,215,0 +170765510323,215,0 +170765510372,215,0 +170765510420,215,0 +170765510468,215,0 +170765510516,216,0 +170765510564,216,0 +170765510612,216,0 +170765510660,216,0 +170765510709,215,0 +170765510757,214,0 +170765510807,213,0 +170765510856,214,0 +170765510904,214,0 +170765510954,214,0 +170765511002,214,0 +170765511049,214,0 +170765511097,215,0 +170765511145,215,0 +170765511195,215,0 +170765511244,215,0 +170765511292,215,0 +170765511340,215,0 +170765511390,216,0 +170765511437,216,0 +170765511487,215,0 +170765511535,215,0 +170765511583,214,0 +170765511632,213,0 +170765511682,213,0 +170765511731,214,0 +170765511779,214,0 +170765511829,214,0 +170765511877,214,0 +170765511926,214,0 +170765511974,215,0 +170765512022,215,0 +170765512071,215,0 +170765512119,215,0 +170765512169,215,0 +170765512217,215,0 +170765512265,215,0 +170765512313,215,0 +170765512362,215,0 +170765512412,215,0 +170765512460,214,0 +170765512508,214,0 +170765512556,214,0 +170765512604,214,0 +170765512652,215,0 +170765512700,215,0 +170765512748,215,0 +170765512795,215,0 +170765512843,215,0 +170765512891,215,0 +170765512939,216,0 +170765512987,216,0 +170765513035,216,0 +170765513083,215,0 +170765513131,216,0 +170765513179,216,0 +170765513227,215,0 +170765513276,214,0 +170765513324,214,0 +170765513372,214,0 +170765513422,214,0 +170765513470,215,0 +170765513517,215,0 +170765513565,215,0 +170765513615,215,0 +170765513663,215,0 +170765513711,216,0 +170765513759,216,0 +170765513807,216,0 +170765513855,216,0 +170765513902,216,0 +170765513952,215,0 +170765514000,215,0 +170765514048,215,0 +170765514097,214,0 +170765514145,214,0 +170765514193,214,0 +170765514241,214,0 +170765514289,215,0 +170765514339,215,0 +170765514388,215,0 +170765514438,215,0 +170765514485,215,0 +170765514533,215,0 +170765514583,215,0 +170765514631,216,0 +170765514679,215,0 +170765514727,216,0 +170765514775,216,0 +170765514823,216,0 +170765514871,216,0 +170765514918,215,0 +170765514966,214,0 +170765515014,214,0 +170765515064,214,0 +170765515112,214,0 +170765515160,214,0 +170765515208,214,0 +170765515256,214,0 +170765515303,214,0 +170765515351,215,0 +170765515399,215,0 +170765515447,215,0 +170765515497,215,0 +170765515545,215,0 +170765515593,215,0 +170765515641,215,0 +170765515690,215,0 +170765515738,215,0 +170765515787,213,0 +170765515837,213,0 +170765515885,214,0 +170765515934,213,0 +170765515984,214,0 +170765516032,214,0 +170765516080,214,0 +170765516128,214,0 +170765516177,214,0 +170765516225,215,0 +170765516275,215,0 +170765516323,215,0 +170765516371,215,0 +170765516420,215,0 +170765516468,216,0 +170765516516,216,0 +170765516566,215,0 +170765516615,214,0 +170765516664,214,0 +170765516712,214,0 +170765516760,214,0 +170765516808,214,0 +170765516856,215,0 +170765516904,215,0 +170765516954,214,0 +170765517001,215,0 +170765517049,215,0 +170765517097,215,0 +170765517145,215,0 +170765517195,215,0 +170765517243,216,0 +170765517291,216,0 +170765517339,216,0 +170765517387,216,0 +170765517436,214,0 +170765517485,214,0 +170765517533,214,0 +170765517583,214,0 +170765517631,214,0 +170765517679,215,0 +170765517728,215,0 +170765517776,215,0 +170765517824,215,0 +170765517872,216,0 +170765517921,216,0 +170765517969,216,0 +170765518017,216,0 +170765518065,215,0 +170765518113,216,0 +170765518163,215,0 +170765518212,216,0 +170765518261,215,0 +170765518309,214,0 +170765518359,214,0 +170765518408,214,0 +170765518456,215,0 +170765518506,215,0 +170765518554,215,0 +170765518602,215,0 +170765518651,215,0 +170765518699,215,0 +170765518748,215,0 +170765518798,215,0 +170765518847,215,0 +170765518895,216,0 +170765518943,215,0 +170765518991,215,0 +170765519039,216,0 +170765519087,215,0 +170765519135,214,0 +170765519183,214,0 +170765519231,214,0 +170765519278,214,0 +170765519326,214,0 +170765519374,215,0 +170765519422,214,0 +170765519470,215,0 +170765519520,215,0 +170765519568,215,0 +170765519616,215,0 +170765519664,216,0 +170765519711,215,0 +170765519759,216,0 +170765519807,216,0 +170765519855,216,0 +170765519903,215,0 +170765519953,214,0 +170765520002,214,0 +170765520052,214,0 +170765520100,214,0 +170765520148,214,0 +170765520196,214,0 +170765520244,214,0 +170765520293,214,0 +170765520341,215,0 +170765520390,215,0 +170765520438,215,0 +170765520488,215,0 +170765520536,215,0 +170765520584,216,0 +170765520632,215,0 +170765520680,216,0 +170765520728,215,0 +170765520776,215,0 +170765520823,214,0 +170765520871,214,0 +170765520919,214,0 +170765520967,214,0 +170765521017,214,0 +170765521065,215,0 +170765521114,215,0 +170765521162,215,0 +170765521212,215,0 +170765521259,215,0 +170765521307,215,0 +170765521357,216,0 +170765521405,216,0 +170765521453,215,0 +170765521502,215,0 +170765521552,215,0 +170765521599,215,0 +170765521647,214,0 +170765521695,214,0 +170765521743,214,0 +170765521792,214,0 +170765521840,214,0 +170765521888,215,0 +170765521937,215,0 +170765521987,215,0 +170765522034,215,0 +170765522082,215,0 +170765522132,215,0 +170765522180,216,0 +170765522228,215,0 +170765522275,216,0 +170765522323,216,0 +170765522371,216,0 +170765522420,215,0 +170765522468,215,0 +170765522516,213,0 +170765522564,214,0 +170765522612,214,0 +170765522660,214,0 +170765522707,214,0 +170765522755,214,0 +170765522803,214,0 +170765522851,215,0 +170765522901,215,0 +170765522950,215,0 +170765522998,215,0 +170765523046,216,0 +170765523094,215,0 +170765523141,215,0 +170765523191,215,0 +170765523239,216,0 +170765523287,215,0 +170765523334,214,0 +170765523384,214,0 +170765523432,214,0 +170765523479,214,0 +170765523529,214,0 +170765523577,214,0 +170765523625,215,0 +170765523672,215,0 +170765523720,215,0 +170765523768,215,0 +170765523816,215,0 +170765523864,215,0 +170765523912,215,0 +170765523959,216,0 +170765524007,216,0 +170765524055,216,0 +170765524103,215,0 +170765524151,214,0 +170765524199,213,0 +170765524248,214,0 +170765524296,214,0 +170765524344,214,0 +170765524391,214,0 +170765524439,214,0 +170765524487,214,0 +170765524535,215,0 +170765524584,215,0 +170765524632,215,0 +170765524680,215,0 +170765524728,215,0 +170765524776,215,0 +170765524823,215,0 +170765524871,215,0 +170765524919,215,0 +170765524967,215,0 +170765525015,213,0 +170765525063,213,0 +170765525112,214,0 +170765525160,214,0 +170765525208,214,0 +170765525255,214,0 +170765525303,214,0 +170765525353,215,0 +170765525400,215,0 +170765525448,215,0 +170765525498,215,0 +170765525545,215,0 +170765525595,215,0 +170765525643,216,0 +170765525691,215,0 +170765525738,215,0 +170765525786,215,0 +170765525834,214,0 +170765525883,213,0 +170765525931,214,0 +170765525979,214,0 +170765526027,214,0 +170765526076,214,0 +170765526124,214,0 +170765526172,214,0 +170765526222,215,0 +170765526269,215,0 +170765526317,215,0 +170765526367,215,0 +170765526415,215,0 +170765526462,215,0 +170765526510,215,0 +170765526558,215,0 +170765526606,215,0 +170765526654,214,0 +170765526702,213,0 +170765526751,214,0 +170765526799,213,0 +170765526847,214,0 +170765526895,214,0 +170765526943,214,0 +170765526990,214,0 +170765527038,214,0 +170765527086,215,0 +170765527134,215,0 +170765527183,215,0 +170765527231,215,0 +170765527279,216,0 +170765527327,215,0 +170765527375,215,0 +170765527423,216,0 +170765527471,215,0 +170765527520,214,0 +170765527568,214,0 +170765527616,214,0 +170765527664,214,0 +170765527711,214,0 +170765527759,214,0 +170765527807,215,0 +170765527855,215,0 +170765527903,215,0 +170765527951,215,0 +170765527999,215,0 +170765528047,215,0 +170765528094,215,0 +170765528142,215,0 +170765528192,215,0 +170765528240,215,0 +170765528289,215,0 +170765528337,214,0 +170765528385,214,0 +170765528434,214,0 +170765528482,214,0 +170765528530,214,0 +170765528578,214,0 +170765528626,215,0 +170765528673,214,0 +170765528721,214,0 +170765528771,215,0 +170765528819,215,0 +170765528866,215,0 +170765528914,215,0 +170765528964,215,0 +170765529012,215,0 +170765529060,215,0 +170765529107,215,0 +170765529157,216,0 +170765529205,214,0 +170765529253,214,0 +170765529302,214,0 +170765529350,214,0 +170765529398,214,0 +170765529446,214,0 +170765529494,215,0 +170765529542,215,0 +170765529589,214,0 +170765529639,215,0 +170765529687,215,0 +170765529735,215,0 +170765529784,215,0 +170765529832,216,0 +170765529880,215,0 +170765529928,215,0 +170765529975,216,0 +170765530023,214,0 +170765530073,214,0 +170765530121,214,0 +170765530168,214,0 +170765530216,214,0 +170765530264,214,0 +170765530312,215,0 +170765530360,214,0 +170765530408,214,0 +170765530456,215,0 +170765530503,215,0 +170765530553,215,0 +170765530601,215,0 +170765530650,215,0 +170765530698,216,0 +170765530746,215,0 +170765530794,216,0 +170765530842,215,0 +170765530889,214,0 +170765530939,214,0 +170765530987,215,0 +170765531035,214,0 +170765531082,215,0 +170765531132,215,0 +170765531181,215,0 +170765531229,215,0 +170765531277,215,0 +170765531325,215,0 +170765531373,216,0 +170765531420,216,0 +170765531468,216,0 +170765531518,216,0 +170765531565,216,0 +170765531613,215,0 +170765531663,215,0 +170765531711,215,0 +170765531759,215,0 +170765531808,215,0 +170765531856,215,0 +170765531904,215,0 +170765531953,215,0 +170765532001,216,0 +170765532049,216,0 +170765532097,215,0 +170765532145,216,0 +170765532192,216,0 +170765532242,216,0 +170765532290,216,0 +170765532338,216,0 +170765532386,215,0 +170765532434,216,0 +170765532483,216,0 +170765532531,215,0 +170765532579,214,0 +170765532629,215,0 +170765532678,215,0 +170765532726,215,0 +170765532776,215,0 +170765532825,216,0 +170765532873,216,0 +170765532921,216,0 +170765532969,216,0 +170765533016,216,0 +170765533066,216,0 +170765533114,216,0 +170765533162,216,0 +170765533209,216,0 +170765533257,216,0 +170765533305,215,0 +170765533354,215,0 +170765533402,214,0 +170765533450,214,0 +170765533498,214,0 +170765533546,214,0 +170765533594,214,0 +170765533642,215,0 +170765533689,215,0 +170765533737,215,0 +170765533787,215,0 +170765533834,215,0 +170765533882,215,0 +170765533930,216,0 +170765533978,215,0 +170765534026,215,0 +170765534075,216,0 +170765534123,216,0 +170765534172,215,0 +170765534222,214,0 +170765534270,213,0 +170765534318,214,0 +170765534365,214,0 +170765534413,214,0 +170765534461,214,0 +170765534509,214,0 +170765534557,214,0 +170765534605,214,0 +170765534653,215,0 +170765534700,215,0 +170765534748,215,0 +170765534796,215,0 +170765534844,215,0 +170765534894,215,0 +170765534943,215,0 +170765534991,216,0 +170765535039,214,0 +170765535087,213,0 +170765535137,214,0 +170765535186,214,0 +170765535236,214,0 +170765535285,214,0 +170765535333,214,0 +170765535381,215,0 +170765535429,215,0 +170765535478,215,0 +170765535526,215,0 +170765535574,215,0 +170765535622,215,0 +170765535670,215,0 +170765535718,215,0 +170765535766,215,0 +170765535813,215,0 +170765535862,215,0 +170765535909,213,0 +170765535959,213,0 +170765536007,214,0 +170765536055,214,0 +170765536103,214,0 +170765536151,214,0 +170765536198,214,0 +170765536246,215,0 +170765536296,215,0 +170765536344,215,0 +170765536392,215,0 +170765536439,215,0 +170765536487,216,0 +170765536535,215,0 +170765536583,216,0 +170765536631,215,0 +170765536680,215,0 +170765536728,213,0 +170765536778,213,0 +170765536826,214,0 +170765536874,214,0 +170765536922,214,0 +170765536969,214,0 +170765537017,214,0 +170765537067,215,0 +170765537115,215,0 +170765537163,215,0 +170765537211,215,0 +170765537258,216,0 +170765537308,216,0 +170765537356,216,0 +170765537404,216,0 +170765537452,216,0 +170765537501,216,0 +170765537549,214,0 +170765537597,213,0 +170765537645,213,0 +170765537695,213,0 +170765537742,214,0 +170765537792,214,0 +170765537841,214,0 +170765537891,214,0 +170765537939,214,0 +170765537987,215,0 +170765538035,215,0 +170765538083,215,0 +170765538131,215,0 +170765538180,215,0 +170765538228,215,0 +170765538276,216,0 +170765538325,215,0 +170765538373,215,0 +170765538421,213,0 +170765538471,213,0 +170765538519,213,0 +170765538567,213,0 +170765538614,214,0 +170765538662,213,0 +170765538710,214,0 +170765538758,214,0 +170765538808,214,0 +170765538856,214,0 +170765538903,215,0 +170765538951,215,0 +170765538999,215,0 +170765539047,215,0 +170765539095,215,0 +170765539145,215,0 +170765539194,215,0 +170765539242,213,0 +170765539290,213,0 +170765539339,213,0 +170765539389,213,0 +170765539437,213,0 +170765539485,213,0 +170765539533,214,0 +170765539581,214,0 +170765539630,214,0 +170765539678,215,0 +170765539727,215,0 +170765539775,215,0 +170765539823,215,0 +170765539873,215,0 +170765539921,215,0 +170765539970,216,0 +170765540020,215,0 +170765540068,214,0 +170765540115,213,0 +170765540163,213,0 +170765540211,214,0 +170765540259,214,0 +170765540309,214,0 +170765540357,214,0 +170765540404,215,0 +170765540452,215,0 +170765540500,215,0 +170765540550,215,0 +170765540599,216,0 +170765540647,216,0 +170765540695,216,0 +170765540743,216,0 +170765540791,216,0 +170765540839,215,0 +170765540888,214,0 +170765540938,214,0 +170765540987,214,0 +170765541035,215,0 +170765541085,215,0 +170765541133,215,0 +170765541181,215,0 +170765541229,215,0 +170765541276,215,0 +170765541324,215,0 +170765541372,216,0 +170765541420,216,0 +170765541468,216,0 +170765541516,216,0 +170765541564,215,0 +170765541612,216,0 +170765541661,215,0 +170765541709,215,0 +170765541757,214,0 +170765541807,214,0 +170765541855,214,0 +170765541902,215,0 +170765541950,214,0 +170765541998,215,0 +170765542046,215,0 +170765542094,215,0 +170765542142,215,0 +170765542190,215,0 +170765542239,215,0 +170765542287,216,0 +170765542335,216,0 +170765542385,215,0 +170765542433,215,0 +170765542481,216,0 +170765542529,215,0 +170765542577,214,0 +170765542625,214,0 +170765542673,214,0 +170765542720,214,0 +170765542768,214,0 +170765542816,215,0 +170765542864,215,0 +170765542914,215,0 +170765542963,215,0 +170765543011,215,0 +170765543059,215,0 +170765543107,215,0 +170765543155,215,0 +170765543205,215,0 +170765543254,215,0 +170765543302,215,0 +170765543350,215,0 +170765543399,215,0 +170765543447,214,0 +170765543497,214,0 +170765543545,214,0 +170765543593,214,0 +170765543641,214,0 +170765543688,214,0 +170765543736,215,0 +170765543786,215,0 +170765543834,215,0 +170765543882,215,0 +170765543930,215,0 +170765543977,216,0 +170765544027,215,0 +170765544076,215,0 +170765544126,216,0 +170765544174,215,0 +170765544223,215,0 +170765544271,214,0 +170765544319,214,0 +170765544369,214,0 +170765544416,214,0 +170765544464,214,0 +170765544512,214,0 +170765544560,215,0 +170765544610,214,0 +170765544658,215,0 +170765544706,215,0 +170765544754,215,0 +170765544802,215,0 +170765544849,215,0 +170765544899,216,0 +170765544948,216,0 +170765544996,215,0 +170765545044,215,0 +170765545092,214,0 +170765545140,214,0 +170765545188,214,0 +170765545236,214,0 +170765545285,214,0 +170765545335,214,0 +170765545383,214,0 +170765545431,214,0 +170765545479,215,0 +170765545528,215,0 +170765545576,215,0 +170765545624,216,0 +170765545672,216,0 +170765545722,215,0 +170765545770,215,0 +170765545819,215,0 +170765545869,215,0 +170765545918,214,0 +170765545966,214,0 +170765546014,214,0 +170765546062,214,0 +170765546111,214,0 +170765546159,214,0 +170765546209,214,0 +170765546257,215,0 +170765546306,215,0 +170765546355,215,0 +170765546405,215,0 +170765546453,215,0 +170765546502,215,0 +170765546550,215,0 +170765546598,216,0 +170765546648,216,0 +170765546696,215,0 +170765546745,215,0 +170765546793,214,0 +170765546841,214,0 +170765546889,214,0 +170765546937,214,0 +170765546985,214,0 +170765547034,214,0 +170765547082,215,0 +170765547132,215,0 +170765547181,215,0 +170765547229,215,0 +170765547277,215,0 +170765547327,215,0 +170765547375,215,0 +170765547423,216,0 +170765547471,215,0 +170765547520,215,0 +170765547570,215,0 +170765547618,214,0 +170765547665,214,0 +170765547713,214,0 +170765547763,214,0 +170765547812,214,0 +170765547860,214,0 +170765547908,214,0 +170765547958,214,0 +170765548007,215,0 +170765548056,215,0 +170765548104,215,0 +170765548154,215,0 +170765548202,215,0 +170765548250,215,0 +170765548298,215,0 +170765548346,216,0 +170765548394,215,0 +170765548441,214,0 +170765548489,214,0 +170765548539,214,0 +170765548587,214,0 +170765548636,214,0 +170765548684,214,0 +170765548732,215,0 +170765548782,215,0 +170765548831,215,0 +170765548879,215,0 +170765548927,215,0 +170765548975,215,0 +170765549024,216,0 +170765549074,215,0 +170765549121,215,0 +170765549169,216,0 +170765549217,215,0 +170765549265,214,0 +170765549313,214,0 +170765549361,214,0 +170765549409,214,0 +170765549459,214,0 +170765549507,215,0 +170765549554,215,0 +170765549604,215,0 +170765549652,215,0 +170765549700,215,0 +170765549748,215,0 +170765549797,215,0 +170765549847,215,0 +170765549895,215,0 +170765549944,216,0 +170765549992,215,0 +170765550041,216,0 +170765550089,215,0 +170765550137,214,0 +170765550185,214,0 +170765550233,214,0 +170765550281,215,0 +170765550329,215,0 +170765550377,215,0 +170765550425,215,0 +170765550473,215,0 +170765550522,215,0 +170765550572,216,0 +170765550620,216,0 +170765550668,216,0 +170765550717,216,0 +170765550765,216,0 +170765550814,216,0 +170765550864,216,0 +170765550912,215,0 +170765550960,214,0 +170765551008,214,0 +170765551057,214,0 +170765551105,214,0 +170765551153,215,0 +170765551201,215,0 +170765551249,215,0 +170765551297,215,0 +170765551345,215,0 +170765551392,215,0 +170765551440,216,0 +170765551488,215,0 +170765551538,216,0 +170765551586,216,0 +170765551633,216,0 +170765551681,216,0 +170765551729,215,0 +170765551779,214,0 +170765551826,214,0 +170765551874,214,0 +170765551922,214,0 +170765551972,214,0 +170765552020,213,0 +170765552069,213,0 +170765552117,215,0 +170765552165,215,0 +170765552214,215,0 +170765552262,215,0 +170765552310,215,0 +170765552358,216,0 +170765552407,216,0 +170765552455,215,0 +170765552503,216,0 +170765552553,215,0 +170765552602,215,0 +170765552650,213,0 +170765552700,214,0 +170765552749,214,0 +170765552797,214,0 +170765552847,214,0 +170765552895,214,0 +170765552944,215,0 +170765552993,215,0 +170765553041,215,0 +170765553089,215,0 +170765553137,215,0 +170765553185,215,0 +170765553233,216,0 +170765553281,215,0 +170765553330,215,0 +170765553378,216,0 +170765553426,215,0 +170765553475,214,0 +170765553525,213,0 +170765553574,214,0 +170765553622,213,0 +170765553670,214,0 +170765553718,214,0 +170765553768,214,0 +170765553815,215,0 +170765553863,215,0 +170765553911,215,0 +170765553960,215,0 +170765554010,215,0 +170765554060,215,0 +170765554108,215,0 +170765554155,215,0 +170765554203,216,0 +170765554253,215,0 +170765554302,214,0 +170765554352,214,0 +170765554400,214,0 +170765554449,214,0 +170765554497,214,0 +170765554545,214,0 +170765554593,215,0 +170765554641,215,0 +170765554689,215,0 +170765554738,215,0 +170765554788,215,0 +170765554836,216,0 +170765554884,216,0 +170765554932,216,0 +170765554980,216,0 +170765555029,216,0 +170765555077,215,0 +170765555125,214,0 +170765555174,214,0 +170765555222,214,0 +170765555272,214,0 +170765555321,214,0 +170765555369,214,0 +170765555417,215,0 +170765555467,215,0 +170765555515,215,0 +170765555563,215,0 +170765555611,215,0 +170765555660,215,0 +170765555708,216,0 +170765555756,216,0 +170765555804,216,0 +170765555852,215,0 +170765555900,215,0 +170765555948,215,0 +170765555996,214,0 +170765556044,214,0 +170765556092,214,0 +170765556141,214,0 +170765556189,214,0 +170765556237,214,0 +170765556285,214,0 +170765556334,215,0 +170765556382,215,0 +170765556430,215,0 +170765556478,215,0 +170765556526,215,0 +170765556574,215,0 +170765556622,215,0 +170765556669,215,0 +170765556719,215,0 +170765556767,215,0 +170765556815,214,0 +170765556863,213,0 +170765556911,214,0 +170765556959,214,0 +170765557006,214,0 +170765557056,214,0 +170765557104,214,0 +170765557152,214,0 +170765557200,214,0 +170765557248,215,0 +170765557296,215,0 +170765557344,215,0 +170765557393,215,0 +170765557441,215,0 +170765557489,216,0 +170765557537,215,0 +170765557585,215,0 +170765557633,214,0 +170765557681,213,0 +170765557729,214,0 +170765557778,214,0 +170765557828,214,0 +170765557876,214,0 +170765557925,214,0 +170765557973,214,0 +170765558021,214,0 +170765558069,215,0 +170765558118,215,0 +170765558167,215,0 +170765558215,215,0 +170765558263,215,0 +170765558311,215,0 +170765558359,215,0 +170765558407,215,0 +170765558456,215,0 +170765558504,214,0 +170765558552,213,0 +170765558600,214,0 +170765558648,214,0 +170765558696,214,0 +170765558744,214,0 +170765558791,214,0 +170765558839,215,0 +170765558887,215,0 +170765558937,215,0 +170765558986,215,0 +170765559034,215,0 +170765559084,215,0 +170765559133,216,0 +170765559181,215,0 +170765559229,215,0 +170765559277,215,0 +170765559325,214,0 +170765559373,214,0 +170765559421,214,0 +170765559468,214,0 +170765559516,214,0 +170765559564,215,0 +170765559612,215,0 +170765559662,215,0 +170765559709,215,0 +170765559757,216,0 +170765559805,215,0 +170765559855,215,0 +170765559902,215,0 +170765559950,216,0 +170765559998,216,0 +170765560046,216,0 +170765560095,216,0 +170765560145,215,0 +170765560193,214,0 +170765560241,213,0 +170765560289,214,0 +170765560337,214,0 +170765560385,214,0 +170765560434,214,0 +170765560482,214,0 +170765560530,215,0 +170765560578,215,0 +170765560626,215,0 +170765560674,215,0 +170765560722,216,0 +170765560770,216,0 +170765560819,216,0 +170765560869,216,0 +170765560917,216,0 +170765560966,215,0 +170765561014,213,0 +170765561062,214,0 +170765561111,214,0 +170765561161,214,0 +170765561210,214,0 +170765561258,214,0 +170765561308,214,0 +170765561356,214,0 +170765561404,215,0 +170765561452,215,0 +170765561500,215,0 +170765561547,215,0 +170765561597,215,0 +170765561645,215,0 +170765561693,215,0 +170765561742,216,0 +170765561790,215,0 +170765561838,214,0 +170765561886,214,0 +170765561934,214,0 +170765561983,214,0 +170765562033,214,0 +170765562082,214,0 +170765562130,214,0 +170765562180,215,0 +170765562227,215,0 +170765562275,215,0 +170765562323,215,0 +170765562371,215,0 +170765562420,215,0 +170765562468,215,0 +170765562516,215,0 +170765562564,215,0 +170765562612,215,0 +170765562660,215,0 +170765562708,214,0 +170765562755,214,0 +170765562803,214,0 +170765562851,214,0 +170765562899,214,0 +170765562948,214,0 +170765562996,215,0 +170765563044,215,0 +170765563092,215,0 +170765563140,215,0 +170765563188,215,0 +170765563236,216,0 +170765563285,215,0 +170765563335,215,0 +170765563383,216,0 +170765563431,216,0 +170765563479,215,0 +170765563527,214,0 +170765563576,214,0 +170765563626,214,0 +170765563673,214,0 +170765563721,214,0 +170765563769,214,0 +170765563817,215,0 +170765563865,215,0 +170765563913,215,0 +170765563961,215,0 +170765564008,215,0 +170765564056,216,0 +170765564104,216,0 +170765564152,216,0 +170765564200,216,0 +170765564247,216,0 +170765564295,215,0 +170765564343,214,0 +170765564391,214,0 +170765564439,214,0 +170765564487,214,0 +170765564535,214,0 +170765564582,214,0 +170765564630,214,0 +170765564678,215,0 +170765564727,215,0 +170765564775,215,0 +170765564823,215,0 +170765564871,215,0 +170765564919,215,0 +170765564966,216,0 +170765565014,216,0 +170765565062,215,0 +170765565110,215,0 +170765565159,215,0 +170765565207,214,0 +170765565255,214,0 +170765565303,214,0 +170765565351,214,0 +170765565399,214,0 +170765565447,214,0 +170765565494,215,0 +170765565542,215,0 +170765565590,215,0 +170765565638,215,0 +170765565686,215,0 +170765565734,215,0 +170765565782,215,0 +170765565830,215,0 +170765565878,215,0 +170765565925,216,0 +170765565973,215,0 +170765566021,214,0 +170765566069,214,0 +170765566117,214,0 +170765566165,214,0 +170765566213,214,0 +170765566261,214,0 +170765566309,214,0 +170765566357,215,0 +170765566405,215,0 +170765566453,215,0 +170765566501,215,0 +170765566548,215,0 +170765566596,216,0 +170765566644,216,0 +170765566692,215,0 +170765566740,216,0 +170765566790,216,0 +170765566837,215,0 +170765566885,214,0 +170765566935,214,0 +170765566983,214,0 +170765567031,213,0 +170765567080,214,0 +170765567128,214,0 +170765567178,214,0 +170765567226,215,0 +170765567274,215,0 +170765567323,215,0 +170765567371,215,0 +170765567419,215,0 +170765567469,215,0 +170765567518,215,0 +170765567566,215,0 +170765567614,216,0 +170765567662,215,0 +170765567711,214,0 +170765567759,214,0 +170765567807,214,0 +170765567855,214,0 +170765567903,214,0 +170765567951,214,0 +170765567999,215,0 +170765568047,214,0 +170765568095,214,0 +170765568144,215,0 +170765568192,215,0 +170765568240,215,0 +170765568288,215,0 +170765568336,215,0 +170765568384,216,0 +170765568434,216,0 +170765568481,215,0 +170765568529,214,0 +170765568577,214,0 +170765568625,214,0 +170765568675,214,0 +170765568723,215,0 +170765568771,215,0 +170765568818,215,0 +170765568866,215,0 +170765568914,215,0 +170765568962,215,0 +170765569010,216,0 +170765569058,216,0 +170765569106,216,0 +170765569154,216,0 +170765569202,216,0 +170765569250,216,0 +170765569298,215,0 +170765569346,216,0 +170765569393,214,0 +170765569441,214,0 +170765569489,214,0 +170765569537,215,0 +170765569585,215,0 +170765569633,215,0 +170765569681,215,0 +170765569728,215,0 +170765569776,215,0 +170765569824,215,0 +170765569872,216,0 +170765569920,216,0 +170765569968,216,0 +170765570015,216,0 +170765570063,216,0 +170765570111,215,0 +170765570161,216,0 +170765570210,214,0 +170765570258,214,0 +170765570307,214,0 +170765570355,214,0 +170765570403,214,0 +170765570451,214,0 +170765570499,214,0 +170765570546,215,0 +170765570594,215,0 +170765570642,215,0 +170765570690,215,0 +170765570738,215,0 +170765570786,215,0 +170765570834,216,0 +170765570882,216,0 +170765570930,216,0 +170765570977,215,0 +170765571025,215,0 +170765571075,214,0 +170765571124,214,0 +170765571172,214,0 +170765571220,214,0 +170765571268,214,0 +170765571316,214,0 +170765571364,214,0 +170765571411,215,0 +170765571459,215,0 +170765571507,215,0 +170765571557,215,0 +170765571606,215,0 +170765571654,215,0 +170765571702,215,0 +170765571750,215,0 +170765571798,216,0 +170765571846,216,0 +170765571896,214,0 +170765571944,214,0 +170765571992,214,0 +170765572041,214,0 +170765572091,214,0 +170765572138,215,0 +170765572186,214,0 +170765572234,215,0 +170765572282,215,0 +170765572330,215,0 +170765572378,215,0 +170765572428,215,0 +170765572475,215,0 +170765572525,215,0 +170765572573,215,0 +170765572622,215,0 +170765572672,215,0 +170765572721,214,0 +170765572769,214,0 +170765572817,214,0 +170765572865,214,0 +170765572913,214,0 +170765572961,215,0 +170765573009,215,0 +170765573056,215,0 +170765573104,215,0 +170765573152,215,0 +170765573202,215,0 +170765573250,215,0 +170765573298,216,0 +170765573347,216,0 +170765573395,216,0 +170765573444,215,0 +170765573492,215,0 +170765573540,214,0 +170765573588,214,0 +170765573636,214,0 +170765573684,215,0 +170765573733,215,0 +170765573781,215,0 +170765573830,215,0 +170765573880,215,0 +170765573929,215,0 +170765573979,215,0 +170765574027,215,0 +170765574075,216,0 +170765574123,216,0 +170765574172,216,0 +170765574220,216,0 +170765574268,216,0 +170765574316,216,0 +170765574364,215,0 +170765574412,214,0 +170765574460,214,0 +170765574509,214,0 +170765574557,214,0 +170765574605,215,0 +170765574653,215,0 +170765574702,215,0 +170765574750,215,0 +170765574798,215,0 +170765574847,215,0 +170765574895,216,0 +170765574943,216,0 +170765574991,216,0 +170765575039,215,0 +170765575087,216,0 +170765575135,216,0 +170765575182,215,0 +170765575232,214,0 +170765575281,213,0 +170765575331,214,0 +170765575379,214,0 +170765575427,214,0 +170765575475,214,0 +170765575522,214,0 +170765575572,215,0 +170765575621,215,0 +170765575671,215,0 +170765575719,215,0 +170765575768,215,0 +170765575816,215,0 +170765575864,215,0 +170765575912,215,0 +170765575960,215,0 +170765576008,215,0 +170765576056,214,0 +170765576106,214,0 +170765576155,214,0 +170765576205,214,0 +170765576253,214,0 +170765576300,214,0 +170765576348,215,0 +170765576396,215,0 +170765576444,215,0 +170765576492,215,0 +170765576540,215,0 +170765576588,215,0 +170765576637,216,0 +170765576685,215,0 +170765576733,216,0 +170765576781,216,0 +170765576829,215,0 +170765576877,215,0 +170765576925,214,0 +170765576973,215,0 +170765577023,215,0 +170765577071,215,0 +170765577119,215,0 +170765577166,215,0 +170765577214,215,0 +170765577262,215,0 +170765577310,216,0 +170765577358,216,0 +170765577406,215,0 +170765577454,216,0 +170765577502,216,0 +170765577550,216,0 +170765577599,216,0 +170765577649,215,0 +170765577698,215,0 +170765577746,214,0 +170765577794,214,0 +170765577843,214,0 +170765577891,214,0 +170765577939,214,0 +170765577987,215,0 +170765578035,215,0 +170765578085,215,0 +170765578132,215,0 +170765578182,215,0 +170765578230,216,0 +170765578278,216,0 +170765578326,216,0 +170765578375,216,0 +170765578423,216,0 +170765578471,216,0 +170765578520,216,0 +170765578568,214,0 +170765578616,214,0 +170765578664,213,0 +170765578714,214,0 +170765578761,214,0 +170765578809,214,0 +170765578857,214,0 +170765578907,214,0 +170765578955,215,0 +170765579003,215,0 +170765579051,215,0 +170765579099,215,0 +170765579147,215,0 +170765579196,215,0 +170765579246,215,0 +170765579295,216,0 +170765579345,215,0 +170765579394,214,0 +170765579444,213,0 +170765579492,213,0 +170765579541,213,0 +170765579591,214,0 +170765579640,214,0 +170765579690,214,0 +170765579738,214,0 +170765579785,214,0 +170765579833,214,0 +170765579883,215,0 +170765579931,215,0 +170765579979,215,0 +170765580027,215,0 +170765580075,215,0 +170765580123,216,0 +170765580172,215,0 +170765580220,215,0 +170765580270,213,0 +170765580317,213,0 +170765580365,213,0 +170765580413,213,0 +170765580461,213,0 +170765580509,213,0 +170765580557,214,0 +170765580605,214,0 +170765580653,215,0 +170765580700,215,0 +170765580748,215,0 +170765580796,215,0 +170765580844,215,0 +170765580892,215,0 +170765580939,215,0 +170765580987,215,0 +170765581035,215,0 +170765581083,214,0 +170765581131,213,0 +170765581179,213,0 +170765581227,214,0 +170765581274,214,0 +170765581322,214,0 +170765581370,214,0 +170765581418,214,0 +170765581466,213,0 +170765581515,214,0 +170765581563,215,0 +170765581611,215,0 +170765581659,215,0 +170765581707,215,0 +170765581755,215,0 +170765581802,215,0 +170765581852,215,0 +170765581900,214,0 +170765581948,214,0 +170765581995,214,0 +170765582043,214,0 +170765582091,214,0 +170765582141,214,0 +170765582190,214,0 +170765582238,214,0 +170765582286,215,0 +170765582336,215,0 +170765582385,215,0 +170765582433,215,0 +170765582483,215,0 +170765582531,216,0 +170765582580,216,0 +170765582630,215,0 +170765582678,215,0 +170765582726,215,0 +170765582774,213,0 +170765582823,213,0 +170765582871,214,0 +170765582919,214,0 +170765582968,214,0 +170765583016,214,0 +170765583066,215,0 +170765583115,215,0 +170765583163,215,0 +170765583213,215,0 +170765583261,215,0 +170765583309,215,0 +170765583357,215,0 +170765583406,215,0 +170765583454,215,0 +170765583503,215,0 +170765583553,215,0 +170765583601,214,0 +170765583649,214,0 +170765583697,214,0 +170765583745,214,0 +170765583794,214,0 +170765583842,215,0 +170765583890,215,0 +170765583938,215,0 +170765583986,215,0 +170765584034,215,0 +170765584083,215,0 +170765584131,215,0 +170765584179,216,0 +170765584227,216,0 +170765584275,215,0 +170765584323,215,0 +170765584370,215,0 +170765584420,214,0 +170765584468,213,0 +170765584517,214,0 +170765584565,214,0 +170765584613,214,0 +170765584661,214,0 +170765584709,214,0 +170765584759,214,0 +170765584807,214,0 +170765584854,214,0 +170765584902,214,0 +170765584952,215,0 +170765585000,215,0 +170765585047,215,0 +170765585095,215,0 +170765585143,215,0 +170765585191,215,0 +170765585238,215,0 +170765585286,215,0 +170765585334,215,0 +170765585382,216,0 +170765585430,216,0 +170765585479,216,0 +170765585529,215,0 +170765585578,216,0 +170765585628,215,0 +170765585677,214,0 +170765585727,214,0 +170765585775,214,0 +170765585823,214,0 +170765585871,214,0 +170765585918,214,0 +170765585968,215,0 +170765586017,214,0 +170765586065,215,0 +170765586113,216,0 +170765586161,215,0 +170765586209,216,0 +170765586257,215,0 +170765586305,216,0 +170765586353,216,0 +170765586402,216,0 +170765586450,216,0 +170765586499,215,0 +170765586547,215,0 +170765586595,214,0 +170765586643,215,0 +170765586691,215,0 +170765586739,215,0 +170765586788,215,0 +170765586836,215,0 +170765586884,215,0 +170765586932,216,0 +170765586980,216,0 +170765587028,216,0 +170765587076,216,0 +170765587125,216,0 +170765587173,216,0 +170765587223,216,0 +170765587272,216,0 +170765587321,215,0 +170765587371,215,0 +170765587419,215,0 +170765587467,215,0 +170765587514,215,0 +170765587562,215,0 +170765587610,215,0 +170765587658,215,0 +170765587708,216,0 +170765587756,215,0 +170765587803,216,0 +170765587851,216,0 +170765587899,216,0 +170765587948,216,0 +170765587996,216,0 +170765588044,216,0 +170765588092,216,0 +170765588140,215,0 +170765588187,215,0 +170765588235,215,0 +170765588283,215,0 +170765588331,215,0 +170765588380,215,0 +170765588428,215,0 +170765588476,215,0 +170765588524,215,0 +170765588574,215,0 +170765588623,216,0 +170765588671,216,0 +170765588719,216,0 +170765588766,216,0 +170765588814,216,0 +170765588862,216,0 +170765588910,216,0 +170765588958,216,0 +170765589006,215,0 +170765589055,214,0 +170765589103,214,0 +170765589151,214,0 +170765589199,214,0 +170765589247,215,0 +170765589295,214,0 +170765589343,215,0 +170765589391,215,0 +170765589438,215,0 +170765589488,215,0 +170765589537,216,0 +170765589587,215,0 +170765589636,216,0 +170765589684,215,0 +170765589734,215,0 +170765589782,216,0 +170765589830,215,0 +170765589879,214,0 +170765589929,214,0 +170765589977,214,0 +170765590024,214,0 +170765590072,214,0 +170765590120,215,0 +170765590170,215,0 +170765590218,215,0 +170765590265,215,0 +170765590313,215,0 +170765590361,215,0 +170765590409,215,0 +170765590457,216,0 +170765590505,216,0 +170765590552,216,0 +170765590600,215,0 +170765590648,215,0 +170765590696,214,0 +170765590744,214,0 +170765590792,214,0 +170765590840,213,0 +170765590888,214,0 +170765590936,214,0 +170765590984,214,0 +170765591032,215,0 +170765591081,215,0 +170765591129,215,0 +170765591178,215,0 +170765591226,215,0 +170765591276,215,0 +170765591324,216,0 +170765591373,216,0 +170765591421,216,0 +170765591470,215,0 +170765591520,214,0 +170765591568,214,0 +170765591616,214,0 +170765591663,214,0 +170765591711,214,0 +170765591759,214,0 +170765591809,214,0 +170765591856,215,0 +170765591904,215,0 +170765591952,215,0 +170765592000,215,0 +170765592048,215,0 +170765592096,215,0 +170765592144,215,0 +170765592193,216,0 +170765592241,215,0 +170765592289,216,0 +170765592339,215,0 +170765592387,214,0 +170765592434,213,0 +170765592482,214,0 +170765592530,214,0 +170765592578,214,0 +170765592626,214,0 +170765592674,215,0 +170765592723,215,0 +170765592771,215,0 +170765592819,215,0 +170765592867,215,0 +170765592915,216,0 +170765592963,215,0 +170765593011,215,0 +170765593059,216,0 +170765593107,215,0 +170765593155,215,0 +170765593203,214,0 +170765593251,213,0 +170765593300,213,0 +170765593348,214,0 +170765593396,214,0 +170765593445,214,0 +170765593493,214,0 +170765593541,214,0 +170765593591,214,0 +170765593640,214,0 +170765593690,215,0 +170765593738,215,0 +170765593787,215,0 +170765593835,215,0 +170765593883,215,0 +170765593931,215,0 +170765593979,216,0 +170765594027,214,0 +170765594076,213,0 +170765594124,213,0 +170765594172,214,0 +170765594220,214,0 +170765594268,214,0 +170765594316,214,0 +170765594365,214,0 +170765594413,215,0 +170765594461,214,0 +170765594511,215,0 +170765594559,215,0 +170765594606,215,0 +170765594654,215,0 +170765594704,216,0 +170765594752,215,0 +170765594801,215,0 +170765594851,215,0 +170765594900,213,0 +170765594948,213,0 +170765594996,213,0 +170765595044,214,0 +170765595092,213,0 +170765595140,214,0 +170765595188,214,0 +170765595237,214,0 +170765595287,214,0 +170765595336,215,0 +170765595384,215,0 +170765595432,215,0 +170765595481,215,0 +170765595529,215,0 +170765595577,215,0 +170765595627,216,0 +170765595675,215,0 +170765595723,214,0 +170765595770,214,0 +170765595818,214,0 +170765595866,213,0 +170765595914,214,0 +170765595962,214,0 +170765596010,214,0 +170765596060,215,0 +170765596109,215,0 +170765596157,215,0 +170765596205,215,0 +170765596254,215,0 +170765596304,215,0 +170765596353,216,0 +170765596403,216,0 +170765596451,216,0 +170765596499,215,0 +170765596548,214,0 +170765596596,214,0 +170765596646,214,0 +170765596695,214,0 +170765596743,215,0 +170765596791,215,0 +170765596840,215,0 +170765596888,215,0 +170765596936,215,0 +170765596984,215,0 +170765597032,215,0 +170765597080,216,0 +170765597128,215,0 +170765597176,216,0 +170765597223,215,0 +170765597271,216,0 +170765597319,215,0 +170765597369,215,0 +170765597416,214,0 +170765597464,214,0 +170765597512,215,0 +170765597560,215,0 +170765597608,215,0 +170765597656,215,0 +170765597704,215,0 +170765597751,215,0 +170765597799,215,0 +170765597849,215,0 +170765597897,216,0 +170765597946,216,0 +170765597994,215,0 +170765598043,215,0 +170765598091,216,0 +170765598139,216,0 +170765598189,215,0 +170765598237,214,0 +170765598286,214,0 +170765598336,214,0 +170765598385,214,0 +170765598433,214,0 +170765598481,214,0 +170765598529,215,0 +170765598577,214,0 +170765598625,215,0 +170765598673,215,0 +170765598720,215,0 +170765598770,215,0 +170765598819,215,0 +170765598867,215,0 +170765598915,216,0 +170765598965,215,0 +170765599013,215,0 +170765599060,214,0 +170765599110,214,0 +170765599158,214,0 +170765599206,214,0 +170765599254,214,0 +170765599302,214,0 +170765599350,214,0 +170765599397,214,0 +170765599445,215,0 +170765599493,215,0 +170765599543,215,0 +170765599591,215,0 +170765599639,215,0 +170765599688,215,0 +170765599738,215,0 +170765599786,216,0 +170765599834,215,0 +170765599882,214,0 +170765599930,214,0 +170765599978,214,0 +170765600027,214,0 +170765600075,214,0 +170765600123,214,0 +170765600171,214,0 +170765600220,214,0 +170765600268,214,0 +170765600316,215,0 +170765600364,215,0 +170765600412,215,0 +170765600459,215,0 +170765600508,215,0 +170765600556,215,0 +170765600605,216,0 +170765600653,216,0 +170765600701,215,0 +170765600750,214,0 +170765600798,214,0 +170765600846,214,0 +170765600894,214,0 +170765600942,214,0 +170765600990,214,0 +170765601038,215,0 +170765601086,215,0 +170765601134,215,0 +170765601182,215,0 +170765601231,215,0 +170765601279,216,0 +170765601327,215,0 +170765601375,216,0 +170765601423,216,0 +170765601471,216,0 +170765601520,215,0 +170765601568,214,0 +170765601618,214,0 +170765601666,214,0 +170765601713,214,0 +170765601761,215,0 +170765601809,215,0 +170765601859,215,0 +170765601907,215,0 +170765601956,215,0 +170765602006,215,0 +170765602054,216,0 +170765602101,215,0 +170765602149,216,0 +170765602197,215,0 +170765602245,216,0 +170765602293,216,0 +170765602341,216,0 +170765602389,214,0 +170765602439,214,0 +170765602488,215,0 +170765602538,215,0 +170765602586,215,0 +170765602634,215,0 +170765602682,215,0 +170765602731,215,0 +170765602780,215,0 +170765602828,215,0 +170765602876,216,0 +170765602924,216,0 +170765602972,216,0 +170765603020,216,0 +170765603070,216,0 +170765603119,216,0 +170765603167,216,0 +170765603215,215,0 +170765603263,214,0 +170765603310,214,0 +170765603358,214,0 +170765603406,215,0 +170765603454,215,0 +170765603501,215,0 +170765603549,215,0 +170765603597,215,0 +170765603645,215,0 +170765603693,215,0 +170765603741,215,0 +170765603789,216,0 +170765603837,216,0 +170765603885,215,0 +170765603932,215,0 +170765603980,216,0 +170765604030,215,0 +170765604078,214,0 +170765604126,214,0 +170765604175,214,0 +170765604223,214,0 +170765604271,214,0 +170765604319,215,0 +170765604368,215,0 +170765604416,215,0 +170765604464,215,0 +170765604512,216,0 +170765604560,215,0 +170765604607,216,0 +170765604655,216,0 +170765604703,216,0 +170765604751,216,0 +170765604799,216,0 +170765604846,216,0 +170765604894,215,0 +170765604942,214,0 +170765604990,214,0 +170765605037,214,0 +170765605085,214,0 +170765605133,214,0 +170765605181,214,0 +170765605229,215,0 +170765605278,215,0 +170765605326,215,0 +170765605374,215,0 +170765605423,215,0 +170765605471,216,0 +170765605519,216,0 +170765605567,215,0 +170765605615,216,0 +170765605662,216,0 +170765605710,216,0 +170765605758,214,0 +170765605806,214,0 +170765605854,214,0 +170765605901,214,0 +170765605949,214,0 +170765605997,214,0 +170765606045,215,0 +170765606093,215,0 +170765606141,215,0 +170765606189,215,0 +170765606236,215,0 +170765606284,215,0 +170765606332,215,0 +170765606380,216,0 +170765606428,216,0 +170765606476,215,0 +170765606524,216,0 +170765606572,214,0 +170765606619,214,0 +170765606667,214,0 +170765606717,214,0 +170765606765,214,0 +170765606813,214,0 +170765606862,215,0 +170765606912,215,0 +170765606961,215,0 +170765607009,215,0 +170765607057,215,0 +170765607105,215,0 +170765607153,216,0 +170765607202,216,0 +170765607250,216,0 +170765607298,216,0 +170765607346,215,0 +170765607394,215,0 +170765607442,214,0 +170765607490,214,0 +170765607538,214,0 +170765607586,214,0 +170765607634,214,0 +170765607683,214,0 +170765607731,214,0 +170765607779,214,0 +170765607826,214,0 +170765607874,215,0 +170765607922,215,0 +170765607970,215,0 +170765608018,215,0 +170765608066,215,0 +170765608113,216,0 +170765608161,215,0 +170765608209,215,0 +170765608257,214,0 +170765608305,214,0 +170765608354,214,0 +170765608402,214,0 +170765608450,214,0 +170765608498,214,0 +170765608546,214,0 +170765608594,214,0 +170765608642,215,0 +170765608690,215,0 +170765608740,215,0 +170765608788,215,0 +170765608835,215,0 +170765608883,215,0 +170765608933,215,0 +170765608983,215,0 +170765609031,215,0 +170765609078,214,0 +170765609128,213,0 +170765609176,213,0 +170765609224,214,0 +170765609272,214,0 +170765609320,214,0 +170765609368,214,0 +170765609417,215,0 +170765609465,215,0 +170765609513,215,0 +170765609563,215,0 +170765609612,215,0 +170765609662,215,0 +170765609711,216,0 +170765609761,216,0 +170765609809,216,0 +170765609857,215,0 +170765609905,215,0 +170765609952,214,0 +170765610000,214,0 +170765610048,214,0 +170765610096,214,0 +170765610144,214,0 +170765610194,215,0 +170765610243,215,0 +170765610291,215,0 +170765610339,215,0 +170765610387,215,0 +170765610435,216,0 +170765610485,216,0 +170765610534,216,0 +170765610584,216,0 +170765610631,216,0 +170765610681,216,0 +170765610729,215,0 +170765610777,214,0 +170765610826,214,0 +170765610874,214,0 +170765610922,214,0 +170765610972,215,0 +170765611020,215,0 +170765611068,215,0 +170765611117,215,0 +170765611165,216,0 +170765611213,216,0 +170765611263,216,0 +170765611312,216,0 +170765611360,216,0 +170765611408,216,0 +170765611456,215,0 +170765611504,216,0 +170765611551,215,0 +170765611601,214,0 +170765611650,214,0 +170765611698,214,0 +170765611746,215,0 +170765611794,215,0 +170765611842,215,0 +170765611892,215,0 +170765611940,215,0 +170765611988,216,0 +170765612037,215,0 +170765612085,216,0 +170765612133,216,0 +170765612182,215,0 +170765612232,216,0 +170765612281,216,0 +170765612329,215,0 +170765612377,215,0 +170765612425,214,0 +170765612473,213,0 +170765612523,213,0 +170765612571,214,0 +170765612619,214,0 +170765612668,214,0 +170765612716,214,0 +170765612764,214,0 +170765612812,215,0 +170765612860,215,0 +170765612908,215,0 +170765612956,215,0 +170765613004,215,0 +170765613052,215,0 +170765613101,215,0 +170765613149,215,0 +170765613199,215,0 +170765613247,214,0 +170765613295,213,0 +170765613343,214,0 +170765613391,214,0 +170765613439,213,0 +170765613487,214,0 +170765613535,214,0 +170765613582,214,0 +170765613630,214,0 +170765613678,214,0 +170765613728,215,0 +170765613776,215,0 +170765613825,215,0 +170765613873,215,0 +170765613923,215,0 +170765613970,215,0 +170765614020,215,0 +170765614068,216,0 +170765614116,214,0 +170765614164,214,0 +170765614212,214,0 +170765614260,214,0 +170765614309,215,0 +170765614357,214,0 +170765614405,215,0 +170765614453,215,0 +170765614501,215,0 +170765614550,215,0 +170765614598,215,0 +170765614646,215,0 +170765614694,215,0 +170765614744,215,0 +170765614792,216,0 +170765614840,216,0 +170765614889,215,0 +170765614939,214,0 +170765614987,214,0 +170765615035,214,0 +170765615083,214,0 +170765615132,214,0 +170765615182,215,0 +170765615231,215,0 +170765615279,215,0 +170765615327,215,0 +170765615377,215,0 +170765615425,215,0 +170765615473,216,0 +170765615522,216,0 +170765615572,216,0 +170765615620,216,0 +170765615668,216,0 +170765615716,215,0 +170765615765,214,0 +170765615813,214,0 +170765615861,214,0 +170765615909,214,0 +170765615957,214,0 +170765616007,214,0 +170765616056,215,0 +170765616104,215,0 +170765616152,215,0 +170765616202,215,0 +170765616250,216,0 +170765616298,216,0 +170765616347,216,0 +170765616395,215,0 +170765616443,216,0 +170765616491,216,0 +170765616539,216,0 +170765616588,215,0 +170765616636,214,0 +170765616684,214,0 +170765616734,214,0 +170765616782,214,0 +170765616831,214,0 +170765616879,215,0 +170765616927,215,0 +170765616975,215,0 +170765617024,215,0 +170765617072,215,0 +170765617120,215,0 +170765617170,215,0 +170765617219,216,0 +170765617267,216,0 +170765617315,215,0 +170765617364,215,0 +170765617414,215,0 +170765617463,214,0 +170765617513,213,0 +170765617562,214,0 +170765617612,214,0 +170765617660,214,0 +170765617708,214,0 +170765617756,215,0 +170765617805,215,0 +170765617855,215,0 +170765617902,215,0 +170765617950,215,0 +170765617998,215,0 +170765618048,215,0 +170765618097,215,0 +170765618145,215,0 +170765618194,216,0 +170765618244,215,0 +170765618293,214,0 +170765618343,214,0 +170765618392,214,0 +170765618442,214,0 +170765618491,214,0 +170765618541,215,0 +170765618589,215,0 +170765618638,215,0 +170765618686,215,0 +170765618734,215,0 +170765618783,215,0 +170765618831,216,0 +170765618879,216,0 +170765618929,216,0 +170765618977,215,0 +170765619025,215,0 +170765619074,215,0 +170765619122,214,0 +170765619171,214,0 +170765619219,214,0 +170765619269,214,0 +170765619319,215,0 +170765619366,215,0 +170765619414,215,0 +170765619464,215,0 +170765619513,215,0 +170765619561,215,0 +170765619609,215,0 +170765619659,215,0 +170765619708,215,0 +170765619756,216,0 +170765619804,216,0 +170765619853,216,0 +170765619903,215,0 +170765619951,214,0 +170765619998,214,0 +170765620046,214,0 +170765620094,214,0 +170765620142,214,0 +170765620190,215,0 +170765620239,215,0 +170765620287,215,0 +170765620335,215,0 +170765620383,215,0 +170765620433,215,0 +170765620482,215,0 +170765620530,216,0 +170765620580,216,0 +170765620627,216,0 +170765620677,216,0 +170765620726,215,0 +170765620774,215,0 +170765620822,214,0 +170765620872,214,0 +170765620920,214,0 +170765620969,214,0 +170765621017,214,0 +170765621066,215,0 +170765621114,215,0 +170765621164,215,0 +170765621212,215,0 +170765621259,215,0 +170765621307,216,0 +170765621355,216,0 +170765621403,216,0 +170765621451,216,0 +170765621499,216,0 +170765621548,215,0 +170765621598,215,0 +170765621645,214,0 +170765621693,214,0 +170765621741,214,0 +170765621789,214,0 +170765621839,214,0 +170765621887,214,0 +170765621935,215,0 +170765621982,215,0 +170765622030,215,0 +170765622078,215,0 +170765622126,215,0 +170765622176,215,0 +170765622224,216,0 +170765622272,216,0 +170765622319,216,0 +170765622369,216,0 +170765622417,215,0 +170765622465,214,0 +170765622513,214,0 +170765622561,214,0 +170765622608,214,0 +170765622658,214,0 +170765622706,214,0 +170765622754,215,0 +170765622802,214,0 +170765622851,215,0 +170765622899,215,0 +170765622947,215,0 +170765622995,215,0 +170765623043,215,0 +170765623090,216,0 +170765623140,215,0 +170765623189,216,0 +170765623239,215,0 +170765623287,215,0 +170765623335,214,0 +170765623383,214,0 +170765623432,214,0 +170765623480,214,0 +170765623528,214,0 +170765623576,214,0 +170765623624,215,0 +170765623672,215,0 +170765623720,215,0 +170765623767,215,0 +170765623817,215,0 +170765623865,216,0 +170765623913,215,0 +170765623961,216,0 +170765624008,216,0 +170765624056,215,0 +170765624104,216,0 +170765624154,214,0 +170765624203,214,0 +170765624251,214,0 +170765624299,214,0 +170765624349,215,0 +170765624397,215,0 +170765624446,215,0 +170765624496,215,0 +170765624543,216,0 +170765624591,216,0 +170765624641,216,0 +170765624689,216,0 +170765624737,216,0 +170765624785,216,0 +170765624833,216,0 +170765624881,216,0 +170765624930,216,0 +170765624978,214,0 +170765625026,214,0 +170765625074,215,0 +170765625123,214,0 +170765625173,215,0 +170765625221,215,0 +170765625269,215,0 +170765625317,215,0 +170765625365,215,0 +170765625413,216,0 +170765625460,215,0 +170765625508,216,0 +170765625558,216,0 +170765625605,216,0 +170765625655,216,0 +170765625704,216,0 +170765625754,215,0 +170765625802,215,0 +170765625851,214,0 +170765625899,214,0 +170765625947,214,0 +170765625995,214,0 +170765626043,215,0 +170765626091,215,0 +170765626140,215,0 +170765626188,215,0 +170765626238,214,0 +170765626287,215,0 +170765626335,215,0 +170765626383,215,0 +170765626431,215,0 +170765626479,215,0 +170765626527,216,0 +170765626576,215,0 +170765626624,215,0 +170765626672,214,0 +170765626720,214,0 +170765626769,214,0 +170765626817,214,0 +170765626865,214,0 +170765626915,214,0 +170765626963,214,0 +170765627012,215,0 +170765627060,215,0 +170765627110,215,0 +170765627158,215,0 +170765627206,215,0 +170765627254,215,0 +170765627302,215,0 +170765627350,214,0 +170765627398,215,0 +170765627445,215,0 +170765627493,214,0 +170765627541,214,0 +170765627589,214,0 +170765627637,214,0 +170765627685,214,0 +170765627733,214,0 +170765627781,214,0 +170765627829,215,0 +170765627877,215,0 +170765627925,215,0 +170765627973,215,0 +170765628022,215,0 +170765628072,215,0 +170765628119,215,0 +170765628169,216,0 +170765628217,215,0 +170765628265,215,0 +170765628314,215,0 +170765628362,214,0 +170765628411,214,0 +170765628459,214,0 +170765628507,214,0 +170765628555,214,0 +170765628603,214,0 +170765628651,214,0 +170765628699,215,0 +170765628748,215,0 +170765628796,215,0 +170765628844,215,0 +170765628892,215,0 +170765628940,215,0 +170765628988,216,0 +170765629038,216,0 +170765629086,215,0 +170765629134,215,0 +170765629183,214,0 +170765629231,214,0 +170765629279,214,0 +170765629327,214,0 +170765629376,214,0 +170765629424,215,0 +170765629472,215,0 +170765629522,215,0 +170765629570,215,0 +170765629619,215,0 +170765629667,215,0 +170765629715,215,0 +170765629764,215,0 +170765629812,215,0 +170765629860,216,0 +170765629908,215,0 +170765629956,215,0 +170765630004,214,0 +170765630053,214,0 +170765630101,214,0 +170765630149,214,0 +170765630197,214,0 +170765630244,214,0 +170765630292,215,0 +170765630340,215,0 +170765630390,215,0 +170765630438,215,0 +170765630485,215,0 +170765630533,215,0 +170765630581,215,0 +170765630629,215,0 +170765630677,215,0 +170765630725,216,0 +170765630773,215,0 +170765630821,215,0 +170765630868,214,0 +170765630916,213,0 +170765630964,214,0 +170765631014,214,0 +170765631062,214,0 +170765631109,214,0 +170765631157,215,0 +170765631205,215,0 +170765631253,215,0 +170765631301,215,0 +170765631348,215,0 +170765631396,216,0 +170765631444,215,0 +170765631494,215,0 +170765631541,216,0 +170765631589,215,0 +170765631637,215,0 +170765631687,214,0 +170765631735,214,0 +170765631782,214,0 +170765631830,214,0 +170765631880,214,0 +170765631928,215,0 +170765631977,215,0 +170765632025,215,0 +170765632074,215,0 +170765632122,215,0 +170765632170,215,0 +170765632218,215,0 +170765632268,215,0 +170765632317,216,0 +170765632367,216,0 +170765632416,216,0 +170765632466,216,0 +170765632514,215,0 +170765632563,214,0 +170765632611,214,0 +170765632659,214,0 +170765632707,214,0 +170765632755,214,0 +170765632803,215,0 +170765632852,215,0 +170765632900,215,0 +170765632948,215,0 +170765632996,215,0 +170765633045,215,0 +170765633093,216,0 +170765633143,215,0 +170765633190,216,0 +170765633238,216,0 +170765633286,216,0 +170765633334,215,0 +170765633383,214,0 +170765633431,214,0 +170765633479,214,0 +170765633527,214,0 +170765633575,214,0 +170765633623,215,0 +170765633672,215,0 +170765633722,215,0 +170765633770,215,0 +170765633819,215,0 +170765633867,215,0 +170765633915,215,0 +170765633963,216,0 +170765634011,215,0 +170765634059,216,0 +170765634108,215,0 +170765634156,215,0 +170765634204,214,0 +170765634254,214,0 +170765634302,214,0 +170765634351,214,0 +170765634399,214,0 +170765634447,214,0 +170765634497,214,0 +170765634545,214,0 +170765634594,214,0 +170765634643,215,0 +170765634691,215,0 +170765634739,215,0 +170765634787,215,0 +170765634835,216,0 +170765634883,216,0 +170765634930,215,0 +170765634979,215,0 +170765635028,214,0 +170765635077,213,0 +170765635127,213,0 +170765635175,214,0 +170765635223,214,0 +170765635271,214,0 +170765635320,214,0 +170765635368,214,0 +170765635416,214,0 +170765635464,214,0 +170765635514,214,0 +170765635563,215,0 +170765635611,215,0 +170765635661,215,0 +170765635709,215,0 +170765635757,215,0 +170765635805,215,0 +170765635852,216,0 +170765635902,214,0 +170765635950,214,0 +170765635999,214,0 +170765636047,214,0 +170765636095,214,0 +170765636143,214,0 +170765636191,214,0 +170765636239,214,0 +170765636287,215,0 +170765636336,215,0 +170765636384,215,0 +170765636432,215,0 +170765636480,215,0 +170765636528,216,0 +170765636576,215,0 +170765636624,215,0 +170765636672,215,0 +170765636722,214,0 +170765636771,214,0 +170765636819,214,0 +170765636867,214,0 +170765636915,214,0 +170765636963,214,0 +170765637012,214,0 +170765637060,214,0 +170765637110,214,0 +170765637159,215,0 +170765637207,215,0 +170765637255,215,0 +170765637303,214,0 +170765637352,215,0 +170765637400,216,0 +170765637450,215,0 +170765637499,215,0 +170765637547,214,0 +170765637595,213,0 +170765637643,214,0 +170765637691,214,0 +170765637739,213,0 +170765637787,214,0 +170765637835,214,0 +170765637883,214,0 +170765637931,215,0 +170765637979,215,0 +170765638028,215,0 +170765638076,215,0 +170765638124,215,0 +170765638172,215,0 +170765638220,215,0 +170765638268,216,0 +170765638316,216,0 +170765638364,215,0 +170765638412,214,0 +170765638460,214,0 +170765638509,214,0 +170765638559,214,0 +170765638608,214,0 +170765638656,215,0 +170765638704,215,0 +170765638752,215,0 +170765638800,215,0 +170765638848,215,0 +170765638897,215,0 +170765638945,215,0 +170765638993,215,0 +170765639041,216,0 +170765639089,216,0 +170765639137,215,0 +170765639187,215,0 +170765639234,214,0 +170765639282,214,0 +170765639330,214,0 +170765639378,214,0 +170765639428,214,0 +170765639476,215,0 +170765639524,215,0 +170765639573,215,0 +170765639621,215,0 +170765639669,215,0 +170765639717,216,0 +170765639766,215,0 +170765639814,216,0 +170765639862,215,0 +170765639912,215,0 +170765639961,215,0 +170765640009,215,0 diff --git a/laser_value/0211-23.csv b/laser_value/0211-23.csv new file mode 100644 index 0000000..758da35 --- /dev/null +++ b/laser_value/0211-23.csv @@ -0,0 +1,7446 @@ +timestamp,laser_value,event +170765640058,215,0 +170765640107,214,0 +170765640157,214,0 +170765640205,214,0 +170765640253,214,0 +170765640301,214,0 +170765640349,215,0 +170765640398,215,0 +170765640446,215,0 +170765640494,215,0 +170765640542,215,0 +170765640590,215,0 +170765640637,215,0 +170765640685,215,0 +170765640733,215,0 +170765640783,215,0 +170765640832,215,0 +170765640882,215,0 +170765640929,214,0 +170765640977,214,0 +170765641027,214,0 +170765641075,214,0 +170765641123,214,0 +170765641171,215,0 +170765641219,215,0 +170765641267,215,0 +170765641316,215,0 +170765641364,215,0 +170765641412,215,0 +170765641460,215,0 +170765641509,215,0 +170765641559,215,0 +170765641607,215,0 +170765641656,215,0 +170765641704,216,0 +170765641752,214,0 +170765641802,214,0 +170765641851,213,0 +170765641901,214,0 +170765641949,214,0 +170765641997,214,0 +170765642046,214,0 +170765642096,215,0 +170765642144,215,0 +170765642193,215,0 +170765642241,215,0 +170765642289,216,0 +170765642337,216,0 +170765642386,215,0 +170765642434,215,0 +170765642482,215,0 +170765642532,216,0 +170765642580,215,0 +170765642628,214,0 +170765642677,214,0 +170765642725,214,0 +170765642773,214,0 +170765642823,215,0 +170765642872,215,0 +170765642920,215,0 +170765642968,215,0 +170765643017,215,0 +170765643067,216,0 +170765643117,216,0 +170765643166,216,0 +170765643216,215,0 +170765643263,216,0 +170765643311,216,0 +170765643359,215,0 +170765643407,215,0 +170765643457,215,0 +170765643506,215,0 +170765643554,215,0 +170765643602,215,0 +170765643651,215,0 +170765643699,216,0 +170765643749,215,0 +170765643797,216,0 +170765643845,216,0 +170765643892,216,0 +170765643940,216,0 +170765643990,216,0 +170765644039,216,0 +170765644089,216,0 +170765644138,216,0 +170765644186,216,0 +170765644234,215,0 +170765644282,214,0 +170765644330,214,0 +170765644378,215,0 +170765644427,215,0 +170765644475,214,0 +170765644523,215,0 +170765644571,215,0 +170765644619,215,0 +170765644667,215,0 +170765644715,215,0 +170765644762,215,0 +170765644810,216,0 +170765644858,215,0 +170765644906,215,0 +170765644956,215,0 +170765645004,216,0 +170765645051,216,0 +170765645099,214,0 +170765645149,214,0 +170765645197,214,0 +170765645246,214,0 +170765645294,214,0 +170765645342,215,0 +170765645391,215,0 +170765645439,214,0 +170765645487,215,0 +170765645537,215,0 +170765645586,215,0 +170765645636,216,0 +170765645684,216,0 +170765645732,216,0 +170765645779,216,0 +170765645827,216,0 +170765645875,216,0 +170765645923,215,0 +170765645971,214,0 +170765646019,214,0 +170765646067,214,0 +170765646116,214,0 +170765646166,214,0 +170765646215,215,0 +170765646263,215,0 +170765646313,215,0 +170765646361,215,0 +170765646409,215,0 +170765646458,216,0 +170765646508,216,0 +170765646555,216,0 +170765646605,216,0 +170765646653,216,0 +170765646701,215,0 +170765646749,215,0 +170765646797,214,0 +170765646846,214,0 +170765646894,214,0 +170765646942,214,0 +170765646991,214,0 +170765647039,215,0 +170765647087,215,0 +170765647135,215,0 +170765647183,215,0 +170765647231,215,0 +170765647279,215,0 +170765647327,216,0 +170765647375,215,0 +170765647424,215,0 +170765647472,216,0 +170765647520,216,0 +170765647568,216,0 +170765647617,214,0 +170765647667,214,0 +170765647715,214,0 +170765647764,214,0 +170765647812,214,0 +170765647860,214,0 +170765647910,214,0 +170765647958,215,0 +170765648005,215,0 +170765648053,215,0 +170765648101,215,0 +170765648149,215,0 +170765648198,215,0 +170765648246,215,0 +170765648296,215,0 +170765648344,216,0 +170765648391,216,0 +170765648439,215,0 +170765648487,214,0 +170765648535,213,0 +170765648583,214,0 +170765648631,214,0 +170765648679,214,0 +170765648727,214,0 +170765648775,214,0 +170765648823,214,0 +170765648871,215,0 +170765648919,215,0 +170765648967,215,0 +170765649016,215,0 +170765649066,215,0 +170765649113,215,0 +170765649161,215,0 +170765649209,216,0 +170765649257,215,0 +170765649305,214,0 +170765649353,213,0 +170765649401,214,0 +170765649449,214,0 +170765649497,214,0 +170765649544,214,0 +170765649592,214,0 +170765649640,214,0 +170765649688,214,0 +170765649736,215,0 +170765649784,215,0 +170765649832,215,0 +170765649880,215,0 +170765649928,216,0 +170765649975,216,0 +170765650023,216,0 +170765650071,215,0 +170765650119,215,0 +170765650167,213,0 +170765650216,213,0 +170765650266,214,0 +170765650314,214,0 +170765650362,214,0 +170765650410,214,0 +170765650459,214,0 +170765650507,214,0 +170765650557,214,0 +170765650605,214,0 +170765650654,215,0 +170765650702,215,0 +170765650751,215,0 +170765650801,215,0 +170765650849,215,0 +170765650898,215,0 +170765650946,215,0 +170765650994,214,0 +170765651042,213,0 +170765651092,213,0 +170765651140,213,0 +170765651189,213,0 +170765651237,214,0 +170765651287,214,0 +170765651334,214,0 +170765651382,214,0 +170765651432,214,0 +170765651481,215,0 +170765651531,215,0 +170765651580,215,0 +170765651630,215,0 +170765651677,215,0 +170765651725,215,0 +170765651773,216,0 +170765651821,214,0 +170765651869,213,0 +170765651919,214,0 +170765651967,213,0 +170765652015,214,0 +170765652062,214,0 +170765652112,214,0 +170765652160,214,0 +170765652209,215,0 +170765652257,215,0 +170765652307,215,0 +170765652355,215,0 +170765652403,216,0 +170765652451,216,0 +170765652498,216,0 +170765652548,216,0 +170765652596,216,0 +170765652644,214,0 +170765652693,214,0 +170765652743,214,0 +170765652791,214,0 +170765652839,214,0 +170765652887,214,0 +170765652936,214,0 +170765652986,215,0 +170765653035,215,0 +170765653083,215,0 +170765653131,215,0 +170765653180,215,0 +170765653228,215,0 +170765653276,215,0 +170765653324,216,0 +170765653372,215,0 +170765653420,216,0 +170765653468,215,0 +170765653518,214,0 +170765653565,214,0 +170765653613,214,0 +170765653663,214,0 +170765653711,214,0 +170765653759,215,0 +170765653807,214,0 +170765653855,215,0 +170765653904,215,0 +170765653952,215,0 +170765654002,215,0 +170765654049,215,0 +170765654097,215,0 +170765654145,215,0 +170765654193,215,0 +170765654243,215,0 +170765654291,216,0 +170765654339,214,0 +170765654388,214,0 +170765654436,214,0 +170765654484,214,0 +170765654532,214,0 +170765654580,214,0 +170765654628,214,0 +170765654676,215,0 +170765654725,215,0 +170765654773,215,0 +170765654821,215,0 +170765654870,215,0 +170765654920,215,0 +170765654968,216,0 +170765655017,216,0 +170765655065,216,0 +170765655115,215,0 +170765655163,215,0 +170765655210,214,0 +170765655258,214,0 +170765655306,214,0 +170765655354,214,0 +170765655402,214,0 +170765655450,215,0 +170765655498,215,0 +170765655548,215,0 +170765655597,215,0 +170765655645,215,0 +170765655693,215,0 +170765655741,215,0 +170765655789,216,0 +170765655839,216,0 +170765655888,216,0 +170765655936,215,0 +170765655986,215,0 +170765656033,214,0 +170765656083,214,0 +170765656131,214,0 +170765656179,215,0 +170765656227,214,0 +170765656275,215,0 +170765656323,215,0 +170765656371,215,0 +170765656419,215,0 +170765656467,215,0 +170765656516,215,0 +170765656566,216,0 +170765656615,215,0 +170765656665,215,0 +170765656713,216,0 +170765656760,216,0 +170765656808,215,0 +170765656856,214,0 +170765656904,214,0 +170765656954,214,0 +170765657003,214,0 +170765657051,215,0 +170765657099,215,0 +170765657147,215,0 +170765657195,215,0 +170765657243,215,0 +170765657291,215,0 +170765657339,215,0 +170765657387,220,0 +170765657436,216,0 +170765657484,216,0 +170765657534,216,0 +170765657583,216,0 +170765657633,215,0 +170765657681,214,0 +170765657729,214,0 +170765657778,214,0 +170765657826,214,0 +170765657875,215,0 +170765657923,215,0 +170765657973,215,0 +170765658021,215,0 +170765658069,215,0 +170765658117,216,0 +170765658165,216,0 +170765658212,216,0 +170765658262,216,0 +170765658310,216,0 +170765658359,216,0 +170765658407,215,0 +170765658455,216,0 +170765658503,215,0 +170765658553,214,0 +170765658602,214,0 +170765658650,214,0 +170765658698,214,0 +170765658748,214,0 +170765658797,215,0 +170765658845,215,0 +170765658893,215,0 +170765658941,215,0 +170765658990,215,0 +170765659038,216,0 +170765659088,215,0 +170765659136,216,0 +170765659184,216,0 +170765659233,216,0 +170765659281,216,0 +170765659329,215,0 +170765659377,214,0 +170765659425,214,0 +170765659474,214,0 +170765659523,214,0 +170765659571,214,0 +170765659619,215,0 +170765659667,215,0 +170765659717,215,0 +170765659765,215,0 +170765659813,215,0 +170765659861,215,0 +170765659909,216,0 +170765659956,216,0 +170765660004,216,0 +170765660054,216,0 +170765660102,216,0 +170765660150,215,0 +170765660198,214,0 +170765660246,214,0 +170765660294,214,0 +170765660342,214,0 +170765660391,214,0 +170765660439,214,0 +170765660487,215,0 +170765660535,215,0 +170765660585,215,0 +170765660632,215,0 +170765660680,215,0 +170765660728,215,0 +170765660776,216,0 +170765660826,216,0 +170765660875,216,0 +170765660925,216,0 +170765660972,216,0 +170765661022,215,0 +170765661070,214,0 +170765661118,214,0 +170765661166,214,0 +170765661214,215,0 +170765661263,214,0 +170765661311,215,0 +170765661359,215,0 +170765661408,215,0 +170765661456,215,0 +170765661504,216,0 +170765661552,215,0 +170765661601,216,0 +170765661651,216,0 +170765661699,215,0 +170765661747,216,0 +170765661795,215,0 +170765661843,215,0 +170765661891,214,0 +170765661939,214,0 +170765661987,214,0 +170765662034,214,0 +170765662082,214,0 +170765662130,215,0 +170765662178,215,0 +170765662228,215,0 +170765662276,215,0 +170765662325,216,0 +170765662373,215,0 +170765662421,216,0 +170765662469,216,0 +170765662519,216,0 +170765662567,216,0 +170765662614,216,0 +170765662664,216,0 +170765662712,214,0 +170765662762,214,0 +170765662811,214,0 +170765662859,214,0 +170765662908,214,0 +170765662958,215,0 +170765663007,214,0 +170765663055,215,0 +170765663103,215,0 +170765663153,215,0 +170765663201,215,0 +170765663249,215,0 +170765663298,215,0 +170765663348,216,0 +170765663395,216,0 +170765663443,216,0 +170765663493,215,0 +170765663540,215,0 +170765663588,214,0 +170765663636,214,0 +170765663684,214,0 +170765663732,214,0 +170765663782,214,0 +170765663831,214,0 +170765663880,214,0 +170765663929,215,0 +170765663978,215,0 +170765664028,215,0 +170765664075,215,0 +170765664123,216,0 +170765664171,216,0 +170765664221,215,0 +170765664269,216,0 +170765664317,216,0 +170765664365,215,0 +170765664412,214,0 +170765664460,214,0 +170765664510,214,0 +170765664558,214,0 +170765664606,215,0 +170765664655,215,0 +170765664703,214,0 +170765664752,215,0 +170765664800,215,0 +170765664850,215,0 +170765664899,215,0 +170765664949,215,0 +170765664997,216,0 +170765665046,216,0 +170765665096,215,0 +170765665144,216,0 +170765665193,216,0 +170765665241,214,0 +170765665289,214,0 +170765665337,214,0 +170765665386,214,0 +170765665434,214,0 +170765665484,214,0 +170765665533,215,0 +170765665581,214,0 +170765665631,214,0 +170765665680,215,0 +170765665728,215,0 +170765665778,215,0 +170765665827,215,0 +170765665877,215,0 +170765665926,215,0 +170765665974,215,0 +170765666024,216,0 +170765666072,214,0 +170765666121,214,0 +170765666169,214,0 +170765666217,214,0 +170765666267,215,0 +170765666315,215,0 +170765666364,215,0 +170765666412,215,0 +170765666460,215,0 +170765666510,215,0 +170765666559,216,0 +170765666609,216,0 +170765666657,216,0 +170765666706,216,0 +170765666756,216,0 +170765666805,216,0 +170765666853,216,0 +170765666903,215,0 +170765666951,214,0 +170765666999,215,0 +170765667046,215,0 +170765667095,215,0 +170765667143,215,0 +170765667190,215,0 +170765667240,215,0 +170765667290,215,0 +170765667339,215,0 +170765667389,215,0 +170765667439,215,0 +170765667487,216,0 +170765667536,216,0 +170765667584,215,0 +170765667632,216,0 +170765667680,216,0 +170765667730,215,0 +170765667778,214,0 +170765667826,214,0 +170765667873,214,0 +170765667921,214,0 +170765667969,215,0 +170765668017,215,0 +170765668065,215,0 +170765668113,215,0 +170765668161,215,0 +170765668209,215,0 +170765668256,215,0 +170765668304,216,0 +170765668352,216,0 +170765668400,216,0 +170765668448,216,0 +170765668496,216,0 +170765668544,215,0 +170765668592,214,0 +170765668639,214,0 +170765668687,214,0 +170765668735,214,0 +170765668783,214,0 +170765668833,214,0 +170765668881,214,0 +170765668929,215,0 +170765668978,214,0 +170765669026,215,0 +170765669074,216,0 +170765669124,215,0 +170765669172,215,0 +170765669220,216,0 +170765669267,216,0 +170765669315,216,0 +170765669365,216,0 +170765669414,216,0 +170765669464,214,0 +170765669514,214,0 +170765669561,214,0 +170765669611,214,0 +170765669661,214,0 +170765669708,214,0 +170765669756,214,0 +170765669806,215,0 +170765669854,215,0 +170765669902,215,0 +170765669950,215,0 +170765669998,215,0 +170765670047,215,0 +170765670095,216,0 +170765670143,216,0 +170765670191,216,0 +170765670239,215,0 +170765670287,214,0 +170765670335,214,0 +170765670383,214,0 +170765670432,214,0 +170765670482,214,0 +170765670530,214,0 +170765670578,214,0 +170765670627,214,0 +170765670675,215,0 +170765670725,215,0 +170765670773,215,0 +170765670821,215,0 +170765670869,215,0 +170765670918,215,0 +170765670966,215,0 +170765671014,216,0 +170765671063,215,0 +170765671111,214,0 +170765671159,214,0 +170765671207,214,0 +170765671255,214,0 +170765671303,214,0 +170765671351,214,0 +170765671401,215,0 +170765671449,215,0 +170765671497,215,0 +170765671544,215,0 +170765671592,215,0 +170765671640,216,0 +170765671688,216,0 +170765671736,216,0 +170765671784,216,0 +170765671831,216,0 +170765671879,216,0 +170765671929,215,0 +170765671976,214,0 +170765672024,214,0 +170765672072,214,0 +170765672120,214,0 +170765672168,215,0 +170765672216,215,0 +170765672263,215,0 +170765672311,215,0 +170765672359,215,0 +170765672407,215,0 +170765672455,216,0 +170765672503,216,0 +170765672551,216,0 +170765672598,216,0 +170765672646,216,0 +170765672694,215,0 +170765672742,215,0 +170765672790,214,0 +170765672838,214,0 +170765672885,214,0 +170765672933,214,0 +170765672981,214,0 +170765673029,214,0 +170765673077,214,0 +170765673125,215,0 +170765673172,215,0 +170765673220,215,0 +170765673268,215,0 +170765673316,215,0 +170765673365,215,0 +170765673413,215,0 +170765673461,215,0 +170765673510,215,0 +170765673558,216,0 +170765673606,215,0 +170765673654,214,0 +170765673704,214,0 +170765673752,214,0 +170765673800,214,0 +170765673848,214,0 +170765673897,214,0 +170765673945,214,0 +170765673995,215,0 +170765674042,215,0 +170765674090,215,0 +170765674138,215,0 +170765674186,215,0 +170765674236,216,0 +170765674284,215,0 +170765674332,216,0 +170765674379,215,0 +170765674429,215,0 +170765674477,214,0 +170765674525,214,0 +170765674574,214,0 +170765674622,214,0 +170765674670,214,0 +170765674718,215,0 +170765674766,215,0 +170765674814,215,0 +170765674862,215,0 +170765674911,215,0 +170765674959,215,0 +170765675008,215,0 +170765675056,216,0 +170765675104,215,0 +170765675152,216,0 +170765675201,216,0 +170765675251,215,0 +170765675299,215,0 +170765675347,214,0 +170765675396,214,0 +170765675446,214,0 +170765675493,214,0 +170765675541,215,0 +170765675589,215,0 +170765675637,215,0 +170765675687,215,0 +170765675735,215,0 +170765675784,215,0 +170765675832,215,0 +170765675882,216,0 +170765675930,216,0 +170765675979,215,0 +170765676027,215,0 +170765676076,216,0 +170765676124,215,0 +170765676172,214,0 +170765676220,214,0 +170765676268,214,0 +170765676316,214,0 +170765676363,214,0 +170765676411,215,0 +170765676459,215,0 +170765676507,215,0 +170765676555,215,0 +170765676603,215,0 +170765676651,215,0 +170765676698,215,0 +170765676748,216,0 +170765676796,216,0 +170765676843,216,0 +170765676891,215,0 +170765676939,215,0 +170765676987,214,0 +170765677035,214,0 +170765677084,214,0 +170765677134,214,0 +170765677182,215,0 +170765677229,215,0 +170765677277,215,0 +170765677325,215,0 +170765677374,215,0 +170765677422,215,0 +170765677470,216,0 +170765677518,215,0 +170765677566,215,0 +170765677614,216,0 +170765677662,216,0 +170765677710,216,0 +170765677757,216,0 +170765677805,215,0 +170765677853,214,0 +170765677903,214,0 +170765677950,214,0 +170765677998,215,0 +170765678046,215,0 +170765678095,215,0 +170765678143,215,0 +170765678191,215,0 +170765678239,215,0 +170765678287,215,0 +170765678334,215,0 +170765678384,216,0 +170765678432,216,0 +170765678479,216,0 +170765678527,215,0 +170765678575,216,0 +170765678623,215,0 +170765678671,214,0 +170765678719,214,0 +170765678766,214,0 +170765678814,214,0 +170765678862,214,0 +170765678910,215,0 +170765678958,215,0 +170765679006,215,0 +170765679055,215,0 +170765679103,215,0 +170765679151,215,0 +170765679198,215,0 +170765679246,215,0 +170765679294,215,0 +170765679343,215,0 +170765679393,216,0 +170765679442,216,0 +170765679490,215,0 +170765679538,214,0 +170765679586,213,0 +170765679634,214,0 +170765679681,214,0 +170765679729,214,0 +170765679777,214,0 +170765679825,214,0 +170765679873,214,0 +170765679922,214,0 +170765679970,215,0 +170765680018,215,0 +170765680067,215,0 +170765680115,215,0 +170765680163,215,0 +170765680211,215,0 +170765680259,216,0 +170765680308,215,0 +170765680356,214,0 +170765680406,213,0 +170765680453,214,0 +170765680501,214,0 +170765680551,214,0 +170765680600,214,0 +170765680650,214,0 +170765680700,214,0 +170765680749,215,0 +170765680799,215,0 +170765680848,215,0 +170765680898,215,0 +170765680947,216,0 +170765680995,216,0 +170765681045,215,0 +170765681093,215,0 +170765681142,215,0 +170765681190,214,0 +170765681240,213,0 +170765681288,214,0 +170765681336,214,0 +170765681383,214,0 +170765681433,214,0 +170765681481,214,0 +170765681530,215,0 +170765681578,215,0 +170765681626,215,0 +170765681674,215,0 +170765681722,215,0 +170765681772,215,0 +170765681820,215,0 +170765681867,215,0 +170765681915,216,0 +170765681963,215,0 +170765682011,215,0 +170765682059,214,0 +170765682109,214,0 +170765682158,214,0 +170765682208,214,0 +170765682257,214,0 +170765682307,214,0 +170765682355,214,0 +170765682403,215,0 +170765682451,215,0 +170765682499,215,0 +170765682547,215,0 +170765682595,215,0 +170765682644,215,0 +170765682694,215,0 +170765682742,215,0 +170765682791,215,0 +170765682841,215,0 +170765682890,214,0 +170765682938,214,0 +170765682986,214,0 +170765683035,214,0 +170765683083,214,0 +170765683131,214,0 +170765683179,214,0 +170765683227,214,0 +170765683275,214,0 +170765683323,215,0 +170765683370,215,0 +170765683418,215,0 +170765683468,215,0 +170765683516,215,0 +170765683563,215,0 +170765683611,215,0 +170765683659,215,0 +170765683707,214,0 +170765683755,214,0 +170765683803,214,0 +170765683851,214,0 +170765683899,214,0 +170765683947,214,0 +170765683995,214,0 +170765684044,214,0 +170765684094,214,0 +170765684142,214,0 +170765684190,215,0 +170765684237,215,0 +170765684285,215,0 +170765684335,215,0 +170765684384,215,0 +170765684432,215,0 +170765684480,215,0 +170765684528,215,0 +170765684576,214,0 +170765684626,214,0 +170765684675,214,0 +170765684725,215,0 +170765684773,215,0 +170765684821,215,0 +170765684869,215,0 +170765684916,215,0 +170765684964,215,0 +170765685012,215,0 +170765685060,215,0 +170765685108,216,0 +170765685156,216,0 +170765685205,216,0 +170765685255,216,0 +170765685303,215,0 +170765685352,215,0 +170765685400,214,0 +170765685448,214,0 +170765685496,214,0 +170765685545,214,0 +170765685593,215,0 +170765685641,215,0 +170765685689,215,0 +170765685737,215,0 +170765685787,215,0 +170765685836,215,0 +170765685884,215,0 +170765685933,216,0 +170765685981,216,0 +170765686029,215,0 +170765686079,215,0 +170765686127,216,0 +170765686174,215,0 +170765686222,214,0 +170765686270,215,0 +170765686318,215,0 +170765686366,215,0 +170765686413,215,0 +170765686463,215,0 +170765686511,215,0 +170765686559,215,0 +170765686608,215,0 +170765686656,216,0 +170765686704,216,0 +170765686752,216,0 +170765686800,216,0 +170765686848,215,0 +170765686896,215,0 +170765686944,215,0 +170765686992,216,0 +170765687040,215,0 +170765687089,213,0 +170765687137,214,0 +170765687186,214,0 +170765687236,214,0 +170765687285,214,0 +170765687333,215,0 +170765687383,215,0 +170765687431,215,0 +170765687479,215,0 +170765687528,215,0 +170765687576,215,0 +170765687624,216,0 +170765687672,215,0 +170765687719,215,0 +170765687767,216,0 +170765687815,216,0 +170765687863,216,0 +170765687911,214,0 +170765687959,214,0 +170765688007,214,0 +170765688056,214,0 +170765688106,215,0 +170765688155,214,0 +170765688203,215,0 +170765688251,215,0 +170765688299,215,0 +170765688348,215,0 +170765688396,215,0 +170765688444,216,0 +170765688492,216,0 +170765688540,216,0 +170765688590,216,0 +170765688638,216,0 +170765688687,215,0 +170765688737,214,0 +170765688786,214,0 +170765688836,214,0 +170765688884,214,0 +170765688932,214,0 +170765688981,214,0 +170765689029,214,0 +170765689077,215,0 +170765689127,215,0 +170765689176,215,0 +170765689224,215,0 +170765689273,215,0 +170765689321,216,0 +170765689369,216,0 +170765689417,216,0 +170765689465,216,0 +170765689513,215,0 +170765689561,215,0 +170765689609,214,0 +170765689658,214,0 +170765689708,214,0 +170765689756,214,0 +170765689804,214,0 +170765689852,215,0 +170765689901,215,0 +170765689949,215,0 +170765689997,215,0 +170765690045,215,0 +170765690093,215,0 +170765690140,215,0 +170765690188,216,0 +170765690238,216,0 +170765690285,216,0 +170765690333,216,0 +170765690383,215,0 +170765690431,214,0 +170765690480,214,0 +170765690528,214,0 +170765690576,214,0 +170765690625,214,0 +170765690673,214,0 +170765690723,215,0 +170765690772,215,0 +170765690820,215,0 +170765690868,215,0 +170765690916,215,0 +170765690964,215,0 +170765691013,216,0 +170765691061,215,0 +170765691109,216,0 +170765691159,215,0 +170765691206,215,0 +170765691256,214,0 +170765691304,214,0 +170765691353,214,0 +170765691403,214,0 +170765691453,214,0 +170765691500,214,0 +170765691548,214,0 +170765691598,215,0 +170765691646,215,0 +170765691695,215,0 +170765691743,215,0 +170765691791,215,0 +170765691839,215,0 +170765691889,216,0 +170765691937,216,0 +170765691986,215,0 +170765692036,215,0 +170765692083,215,0 +170765692131,214,0 +170765692179,214,0 +170765692227,214,0 +170765692275,214,0 +170765692325,214,0 +170765692373,214,0 +170765692422,214,0 +170765692470,214,0 +170765692519,214,0 +170765692569,215,0 +170765692619,215,0 +170765692666,216,0 +170765692716,215,0 +170765692764,216,0 +170765692812,215,0 +170765692860,215,0 +170765692908,216,0 +170765692956,214,0 +170765693004,213,0 +170765693051,214,0 +170765693099,213,0 +170765693147,214,0 +170765693197,214,0 +170765693245,214,0 +170765693294,214,0 +170765693342,215,0 +170765693390,215,0 +170765693439,215,0 +170765693487,215,0 +170765693535,215,0 +170765693583,215,0 +170765693633,215,0 +170765693682,215,0 +170765693730,216,0 +170765693780,214,0 +170765693828,213,0 +170765693876,213,0 +170765693923,214,0 +170765693971,214,0 +170765694021,214,0 +170765694071,214,0 +170765694118,214,0 +170765694166,214,0 +170765694214,215,0 +170765694264,215,0 +170765694312,215,0 +170765694360,215,0 +170765694408,215,0 +170765694457,215,0 +170765694505,215,0 +170765694553,216,0 +170765694602,215,0 +170765694650,214,0 +170765694698,214,0 +170765694746,214,0 +170765694796,214,0 +170765694845,214,0 +170765694893,215,0 +170765694942,215,0 +170765694990,215,0 +170765695038,215,0 +170765695086,215,0 +170765695134,216,0 +170765695182,215,0 +170765695230,215,0 +170765695280,216,0 +170765695329,216,0 +170765695377,215,0 +170765695425,215,0 +170765695475,214,0 +170765695523,214,0 +170765695572,215,0 +170765695621,215,0 +170765695671,215,0 +170765695720,215,0 +170765695770,215,0 +170765695818,215,0 +170765695867,215,0 +170765695917,215,0 +170765695965,215,0 +170765696013,215,0 +170765696061,215,0 +170765696109,216,0 +170765696156,215,0 +170765696204,215,0 +170765696254,215,0 +170765696303,214,0 +170765696353,214,0 +170765696401,214,0 +170765696448,215,0 +170765696496,214,0 +170765696544,215,0 +170765696592,215,0 +170765696640,215,0 +170765696689,215,0 +170765696739,215,0 +170765696788,215,0 +170765696836,215,0 +170765696884,215,0 +170765696934,215,0 +170765696983,215,0 +170765697031,215,0 +170765697079,215,0 +170765697127,215,0 +170765697175,214,0 +170765697222,214,0 +170765697270,214,0 +170765697318,214,0 +170765697366,215,0 +170765697415,215,0 +170765697463,215,0 +170765697511,215,0 +170765697559,215,0 +170765697607,215,0 +170765697654,215,0 +170765697704,215,0 +170765697752,215,0 +170765697800,215,0 +170765697848,216,0 +170765697896,216,0 +170765697944,215,0 +170765697993,214,0 +170765698043,214,0 +170765698091,214,0 +170765698138,214,0 +170765698186,214,0 +170765698234,214,0 +170765698282,215,0 +170765698330,215,0 +170765698378,215,0 +170765698428,215,0 +170765698475,215,0 +170765698523,215,0 +170765698573,215,0 +170765698621,216,0 +170765698669,216,0 +170765698717,216,0 +170765698764,215,0 +170765698812,215,0 +170765698860,214,0 +170765698908,214,0 +170765698956,214,0 +170765699004,215,0 +170765699052,215,0 +170765699102,215,0 +170765699150,215,0 +170765699199,215,0 +170765699247,215,0 +170765699297,216,0 +170765699346,216,0 +170765699395,216,0 +170765699443,216,0 +170765699491,216,0 +170765699539,216,0 +170765699587,215,0 +170765699635,215,0 +170765699685,215,0 +170765699734,215,0 +170765699782,215,0 +170765699831,215,0 +170765699879,215,0 +170765699927,215,0 +170765699977,215,0 +170765700025,215,0 +170765700074,216,0 +170765700122,216,0 +170765700170,215,0 +170765700218,216,0 +170765700267,216,0 +170765700315,216,0 +170765700363,216,0 +170765700411,216,0 +170765700459,216,0 +170765700507,215,0 +170765700555,215,0 +170765700603,215,0 +170765700652,215,0 +170765700700,215,0 +170765700748,215,0 +170765700796,215,0 +170765700844,215,0 +170765700892,215,0 +170765700940,216,0 +170765700988,216,0 +170765701036,216,0 +170765701084,216,0 +170765701132,216,0 +170765701180,216,0 +170765701229,216,0 +170765701277,215,0 +170765701325,215,0 +170765701373,214,0 +170765701421,214,0 +170765701470,214,0 +170765701518,215,0 +170765701566,215,0 +170765701614,215,0 +170765701662,215,0 +170765701712,215,0 +170765701761,215,0 +170765701809,216,0 +170765701857,216,0 +170765701905,216,0 +170765701953,216,0 +170765702001,216,0 +170765702051,215,0 +170765702098,216,0 +170765702146,215,0 +170765702196,214,0 +170765702244,214,0 +170765702293,214,0 +170765702343,214,0 +170765702391,215,0 +170765702438,214,0 +170765702488,215,0 +170765702537,215,0 +170765702585,215,0 +170765702635,215,0 +170765702683,215,0 +170765702731,215,0 +170765702780,216,0 +170765702830,216,0 +170765702878,216,0 +170765702927,216,0 +170765702975,215,0 +170765703023,214,0 +170765703071,214,0 +170765703120,214,0 +170765703170,214,0 +170765703218,214,0 +170765703266,214,0 +170765703314,214,0 +170765703362,214,0 +170765703411,215,0 +170765703459,215,0 +170765703507,215,0 +170765703555,215,0 +170765703603,215,0 +170765703651,216,0 +170765703698,216,0 +170765703746,216,0 +170765703794,215,0 +170765703842,215,0 +170765703890,214,0 +170765703938,213,0 +170765703986,213,0 +170765704034,213,0 +170765704082,214,0 +170765704130,214,0 +170765704178,214,0 +170765704227,214,0 +170765704277,215,0 +170765704325,215,0 +170765704373,215,0 +170765704421,215,0 +170765704470,215,0 +170765704518,215,0 +170765704566,216,0 +170765704614,215,0 +170765704663,215,0 +170765704711,214,0 +170765704759,214,0 +170765704807,214,0 +170765704855,214,0 +170765704903,214,0 +170765704952,214,0 +170765705002,215,0 +170765705051,215,0 +170765705099,215,0 +170765705149,215,0 +170765705198,215,0 +170765705248,216,0 +170765705297,216,0 +170765705345,215,0 +170765705395,215,0 +170765705443,216,0 +170765705492,216,0 +170765705540,214,0 +170765705588,214,0 +170765705636,214,0 +170765705684,214,0 +170765705732,214,0 +170765705780,214,0 +170765705829,214,0 +170765705877,214,0 +170765705925,215,0 +170765705972,215,0 +170765706020,215,0 +170765706068,215,0 +170765706116,215,0 +170765706164,215,0 +170765706212,215,0 +170765706260,215,0 +170765706308,215,0 +170765706357,215,0 +170765706405,214,0 +170765706453,214,0 +170765706501,214,0 +170765706549,214,0 +170765706597,214,0 +170765706645,214,0 +170765706694,214,0 +170765706742,214,0 +170765706790,215,0 +170765706839,215,0 +170765706887,215,0 +170765706937,215,0 +170765706985,215,0 +170765707033,215,0 +170765707082,215,0 +170765707130,215,0 +170765707180,216,0 +170765707229,214,0 +170765707277,213,0 +170765707326,213,0 +170765707374,214,0 +170765707424,214,0 +170765707471,214,0 +170765707519,214,0 +170765707567,214,0 +170765707615,214,0 +170765707665,214,0 +170765707714,215,0 +170765707762,215,0 +170765707810,215,0 +170765707860,215,0 +170765707907,215,0 +170765707956,215,0 +170765708003,215,0 +170765708051,214,0 +170765708099,213,0 +170765708147,213,0 +170765708195,213,0 +170765708243,214,0 +170765708292,213,0 +170765708340,213,0 +170765708388,214,0 +170765708436,214,0 +170765708484,214,0 +170765708532,215,0 +170765708582,215,0 +170765708630,215,0 +170765708678,215,0 +170765708726,215,0 +170765708775,215,0 +170765708823,215,0 +170765708871,215,0 +170765708920,214,0 +170765708968,213,0 +170765709016,213,0 +170765709064,214,0 +170765709113,214,0 +170765709163,214,0 +170765709211,214,0 +170765709259,215,0 +170765709307,215,0 +170765709355,215,0 +170765709404,215,0 +170765709454,215,0 +170765709502,215,0 +170765709551,215,0 +170765709600,216,0 +170765709650,215,0 +170765709698,215,0 +170765709746,215,0 +170765709795,214,0 +170765709843,214,0 +170765709891,214,0 +170765709939,214,0 +170765709987,214,0 +170765710035,215,0 +170765710083,215,0 +170765710131,215,0 +170765710180,215,0 +170765710230,215,0 +170765710278,214,0 +170765710327,215,0 +170765710377,215,0 +170765710425,216,0 +170765710473,215,0 +170765710520,215,0 +170765710568,215,0 +170765710616,214,0 +170765710666,214,0 +170765710714,214,0 +170765710763,214,0 +170765710813,214,0 +170765710861,215,0 +170765710910,214,0 +170765710958,215,0 +170765711008,215,0 +170765711056,215,0 +170765711103,215,0 +170765711151,215,0 +170765711201,215,0 +170765711249,215,0 +170765711297,216,0 +170765711345,215,0 +170765711394,215,0 +170765711442,214,0 +170765711490,214,0 +170765711538,214,0 +170765711585,214,0 +170765711635,214,0 +170765711683,214,0 +170765711731,215,0 +170765711778,215,0 +170765711826,215,0 +170765711874,215,0 +170765711924,215,0 +170765711972,215,0 +170765712020,215,0 +170765712068,215,0 +170765712117,215,0 +170765712165,215,0 +170765712213,215,0 +170765712261,215,0 +170765712309,214,0 +170765712357,214,0 +170765712405,214,0 +170765712454,214,0 +170765712503,215,0 +170765712551,215,0 +170765712599,215,0 +170765712647,215,0 +170765712695,215,0 +170765712745,215,0 +170765712794,216,0 +170765712842,216,0 +170765712890,215,0 +170765712939,216,0 +170765712987,216,0 +170765713035,215,0 +170765713083,215,0 +170765713131,214,0 +170765713179,214,0 +170765713229,215,0 +170765713278,215,0 +170765713326,215,0 +170765713374,215,0 +170765713422,215,0 +170765713470,215,0 +170765713518,216,0 +170765713567,216,0 +170765713615,216,0 +170765713663,216,0 +170765713711,216,0 +170765713759,216,0 +170765713809,216,0 +170765713857,215,0 +170765713906,215,0 +170765713954,214,0 +170765714003,214,0 +170765714051,215,0 +170765714099,215,0 +170765714147,215,0 +170765714195,215,0 +170765714243,215,0 +170765714291,216,0 +170765714338,216,0 +170765714386,216,0 +170765714434,216,0 +170765714482,216,0 +170765714530,216,0 +170765714578,216,0 +170765714626,216,0 +170765714674,216,0 +170765714721,216,0 +170765714769,215,0 +170765714817,214,0 +170765714865,214,0 +170765714913,214,0 +170765714961,214,0 +170765715009,215,0 +170765715057,215,0 +170765715105,216,0 +170765715154,215,0 +170765715202,215,0 +170765715250,215,0 +170765715299,216,0 +170765715349,216,0 +170765715398,216,0 +170765715446,216,0 +170765715496,216,0 +170765715545,216,0 +170765715593,216,0 +170765715643,214,0 +170765715692,214,0 +170765715741,214,0 +170765715789,214,0 +170765715837,215,0 +170765715885,215,0 +170765715933,215,0 +170765715981,215,0 +170765716029,215,0 +170765716077,215,0 +170765716126,216,0 +170765716174,216,0 +170765716222,216,0 +170765716270,216,0 +170765716320,216,0 +170765716368,216,0 +170765716416,215,0 +170765716464,215,0 +170765716512,214,0 +170765716560,214,0 +170765716609,214,0 +170765716657,214,0 +170765716706,214,0 +170765716754,215,0 +170765716802,214,0 +170765716850,215,0 +170765716898,215,0 +170765716946,215,0 +170765716996,215,0 +170765717043,215,0 +170765717091,215,0 +170765717139,215,0 +170765717189,216,0 +170765717237,216,0 +170765717285,215,0 +170765717332,214,0 +170765717382,214,0 +170765717432,214,0 +170765717480,214,0 +170765717527,214,0 +170765717575,214,0 +170765717623,215,0 +170765717671,215,0 +170765717719,215,0 +170765717767,215,0 +170765717817,215,0 +170765717864,215,0 +170765717912,216,0 +170765717960,215,0 +170765718008,215,0 +170765718056,215,0 +170765718104,215,0 +170765718152,214,0 +170765718200,213,0 +170765718248,214,0 +170765718296,214,0 +170765718345,214,0 +170765718393,214,0 +170765718441,214,0 +170765718489,214,0 +170765718537,215,0 +170765718585,215,0 +170765718633,215,0 +170765718682,215,0 +170765718732,215,0 +170765718780,215,0 +170765718828,215,0 +170765718876,216,0 +170765718924,215,0 +170765718972,215,0 +170765719020,213,0 +170765719068,213,0 +170765719117,214,0 +170765719165,214,0 +170765719215,214,0 +170765719262,214,0 +170765719310,214,0 +170765719358,214,0 +170765719406,215,0 +170765719454,215,0 +170765719504,215,0 +170765719551,215,0 +170765719601,216,0 +170765719649,215,0 +170765719698,216,0 +170765719748,215,0 +170765719797,215,0 +170765719845,213,0 +170765719895,214,0 +170765719944,213,0 +170765719994,214,0 +170765720042,214,0 +170765720091,214,0 +170765720141,214,0 +170765720189,215,0 +170765720237,215,0 +170765720286,215,0 +170765720336,215,0 +170765720385,215,0 +170765720435,215,0 +170765720483,215,0 +170765720531,215,0 +170765720580,215,0 +170765720630,215,0 +170765720678,213,0 +170765720726,213,0 +170765720774,213,0 +170765720823,214,0 +170765720871,214,0 +170765720920,214,0 +170765720970,214,0 +170765721019,214,0 +170765721067,214,0 +170765721115,215,0 +170765721163,215,0 +170765721211,215,0 +170765721258,215,0 +170765721306,215,0 +170765721354,215,0 +170765721402,215,0 +170765721450,216,0 +170765721498,215,0 +170765721545,213,0 +170765721593,214,0 +170765721641,214,0 +170765721689,213,0 +170765721737,214,0 +170765721785,214,0 +170765721834,214,0 +170765721884,214,0 +170765721932,214,0 +170765721980,214,0 +170765722029,215,0 +170765722077,215,0 +170765722125,215,0 +170765722173,215,0 +170765722221,215,0 +170765722270,215,0 +170765722318,216,0 +170765722366,213,0 +170765722414,213,0 +170765722461,214,0 +170765722509,213,0 +170765722557,213,0 +170765722605,214,0 +170765722653,214,0 +170765722701,215,0 +170765722751,215,0 +170765722799,215,0 +170765722848,215,0 +170765722898,215,0 +170765722946,216,0 +170765722995,215,0 +170765723045,216,0 +170765723093,215,0 +170765723141,215,0 +170765723189,214,0 +170765723238,214,0 +170765723286,214,0 +170765723335,214,0 +170765723385,214,0 +170765723434,214,0 +170765723482,215,0 +170765723530,215,0 +170765723580,215,0 +170765723628,215,0 +170765723676,215,0 +170765723724,215,0 +170765723772,215,0 +170765723819,215,0 +170765723867,215,0 +170765723915,215,0 +170765723963,215,0 +170765724011,214,0 +170765724061,213,0 +170765724109,214,0 +170765724156,214,0 +170765724206,214,0 +170765724254,214,0 +170765724304,214,0 +170765724353,214,0 +170765724403,215,0 +170765724450,215,0 +170765724498,215,0 +170765724546,215,0 +170765724594,215,0 +170765724643,215,0 +170765724691,215,0 +170765724739,215,0 +170765724789,216,0 +170765724837,216,0 +170765724885,216,0 +170765724934,216,0 +170765724982,215,0 +170765725030,215,0 +170765725079,216,0 +170765725127,215,0 +170765725175,215,0 +170765725223,215,0 +170765725273,214,0 +170765725321,214,0 +170765725370,214,0 +170765725418,214,0 +170765725467,214,0 +170765725517,215,0 +170765725565,214,0 +170765725614,215,0 +170765725662,215,0 +170765725710,216,0 +170765725758,215,0 +170765725807,215,0 +170765725855,215,0 +170765725904,216,0 +170765725952,216,0 +170765726000,216,0 +170765726048,216,0 +170765726096,214,0 +170765726144,213,0 +170765726192,214,0 +170765726240,214,0 +170765726287,214,0 +170765726335,214,0 +170765726383,214,0 +170765726431,214,0 +170765726479,214,0 +170765726528,215,0 +170765726578,215,0 +170765726627,215,0 +170765726677,215,0 +170765726725,216,0 +170765726773,216,0 +170765726822,215,0 +170765726870,215,0 +170765726918,215,0 +170765726968,214,0 +170765727016,214,0 +170765727063,214,0 +170765727111,214,0 +170765727159,214,0 +170765727207,214,0 +170765727255,214,0 +170765727303,214,0 +170765727351,214,0 +170765727400,215,0 +170765727448,215,0 +170765727496,215,0 +170765727546,215,0 +170765727594,216,0 +170765727643,215,0 +170765727693,215,0 +170765727740,215,0 +170765727790,214,0 +170765727838,214,0 +170765727886,214,0 +170765727934,214,0 +170765727982,214,0 +170765728030,214,0 +170765728078,215,0 +170765728125,215,0 +170765728173,215,0 +170765728221,215,0 +170765728269,215,0 +170765728319,215,0 +170765728368,216,0 +170765728418,215,0 +170765728466,215,0 +170765728514,216,0 +170765728562,215,0 +170765728610,215,0 +170765728658,214,0 +170765728705,214,0 +170765728753,214,0 +170765728801,214,0 +170765728851,214,0 +170765728900,215,0 +170765728948,215,0 +170765728996,215,0 +170765729044,215,0 +170765729092,215,0 +170765729140,216,0 +170765729188,216,0 +170765729236,216,0 +170765729284,215,0 +170765729332,215,0 +170765729379,216,0 +170765729429,215,0 +170765729477,214,0 +170765729525,214,0 +170765729574,214,0 +170765729624,214,0 +170765729673,214,0 +170765729721,214,0 +170765729771,214,0 +170765729820,214,0 +170765729870,215,0 +170765729918,215,0 +170765729967,215,0 +170765730017,215,0 +170765730065,216,0 +170765730113,215,0 +170765730162,216,0 +170765730210,215,0 +170765730260,215,0 +170765730307,214,0 +170765730355,214,0 +170765730403,214,0 +170765730451,214,0 +170765730501,214,0 +170765730548,214,0 +170765730598,214,0 +170765730646,215,0 +170765730694,215,0 +170765730743,215,0 +170765730793,215,0 +170765730841,215,0 +170765730889,216,0 +170765730937,216,0 +170765730984,215,0 +170765731034,216,0 +170765731084,216,0 +170765731133,214,0 +170765731183,214,0 +170765731231,214,0 +170765731278,214,0 +170765731328,214,0 +170765731376,214,0 +170765731424,215,0 +170765731472,214,0 +170765731520,215,0 +170765731569,215,0 +170765731619,215,0 +170765731667,215,0 +170765731715,216,0 +170765731763,215,0 +170765731812,216,0 +170765731860,216,0 +170765731908,215,0 +170765731956,215,0 +170765732005,214,0 +170765732053,214,0 +170765732101,214,0 +170765732149,214,0 +170765732197,214,0 +170765732245,215,0 +170765732293,215,0 +170765732341,215,0 +170765732389,215,0 +170765732438,215,0 +170765732486,215,0 +170765732534,216,0 +170765732582,215,0 +170765732629,215,0 +170765732677,216,0 +170765732727,216,0 +170765732775,215,0 +170765732823,214,0 +170765732871,214,0 +170765732919,214,0 +170765732967,214,0 +170765733015,214,0 +170765733063,215,0 +170765733110,215,0 +170765733158,215,0 +170765733206,215,0 +170765733254,215,0 +170765733302,215,0 +170765733350,216,0 +170765733398,215,0 +170765733448,216,0 +170765733496,216,0 +170765733545,215,0 +170765733594,215,0 +170765733644,215,0 +170765733692,214,0 +170765733740,214,0 +170765733788,214,0 +170765733837,215,0 +170765733885,215,0 +170765733933,215,0 +170765733981,215,0 +170765734029,215,0 +170765734078,215,0 +170765734126,215,0 +170765734174,215,0 +170765734224,216,0 +170765734272,216,0 +170765734320,216,0 +170765734369,216,0 +170765734418,216,0 +170765734468,215,0 +170765734516,214,0 +170765734564,214,0 +170765734612,214,0 +170765734660,214,0 +170765734709,214,0 +170765734757,215,0 +170765734806,214,0 +170765734854,214,0 +170765734902,215,0 +170765734952,215,0 +170765735000,215,0 +170765735048,215,0 +170765735096,216,0 +170765735145,215,0 +170765735193,216,0 +170765735241,215,0 +170765735291,215,0 +170765735339,213,0 +170765735387,214,0 +170765735434,214,0 +170765735484,214,0 +170765735532,214,0 +170765735580,215,0 +170765735628,215,0 +170765735677,214,0 +170765735727,215,0 +170765735774,215,0 +170765735822,215,0 +170765735870,215,0 +170765735918,216,0 +170765735966,215,0 +170765736014,216,0 +170765736062,216,0 +170765736110,215,0 +170765736159,214,0 +170765736207,213,0 +170765736255,213,0 +170765736304,214,0 +170765736354,214,0 +170765736402,214,0 +170765736450,214,0 +170765736498,214,0 +170765736547,214,0 +170765736596,215,0 +170765736644,215,0 +170765736694,215,0 +170765736742,215,0 +170765736790,215,0 +170765736839,215,0 +170765736887,215,0 +170765736935,216,0 +170765736983,215,0 +170765737031,214,0 +170765737079,214,0 +170765737128,214,0 +170765737176,214,0 +170765737224,214,0 +170765737272,214,0 +170765737322,215,0 +170765737371,215,0 +170765737421,215,0 +170765737469,215,0 +170765737518,215,0 +170765737566,215,0 +170765737614,215,0 +170765737662,215,0 +170765737710,215,0 +170765737759,216,0 +170765737807,216,0 +170765737855,214,0 +170765737905,214,0 +170765737953,214,0 +170765738001,214,0 +170765738049,214,0 +170765738096,214,0 +170765738146,215,0 +170765738194,215,0 +170765738242,215,0 +170765738290,215,0 +170765738339,215,0 +170765738389,215,0 +170765738436,216,0 +170765738484,215,0 +170765738534,215,0 +170765738582,215,0 +170765738631,215,0 +170765738679,214,0 +170765738727,214,0 +170765738775,214,0 +170765738824,214,0 +170765738872,214,0 +170765738922,215,0 +170765738970,215,0 +170765739018,215,0 +170765739066,215,0 +170765739113,215,0 +170765739161,215,0 +170765739211,215,0 +170765739259,215,0 +170765739306,216,0 +170765739356,215,0 +170765739404,216,0 +170765739452,215,0 +170765739501,215,0 +170765739549,213,0 +170765739598,214,0 +170765739646,214,0 +170765739694,214,0 +170765739742,214,0 +170765739792,214,0 +170765739840,214,0 +170765739888,214,0 +170765739936,215,0 +170765739984,215,0 +170765740033,215,0 +170765740081,215,0 +170765740129,215,0 +170765740177,215,0 +170765740225,215,0 +170765740273,215,0 +170765740321,215,0 +170765740370,214,0 +170765740418,213,0 +170765740466,214,0 +170765740516,214,0 +170765740563,214,0 +170765740613,214,0 +170765740662,215,0 +170765740710,215,0 +170765740760,215,0 +170765740808,215,0 +170765740856,215,0 +170765740905,215,0 +170765740953,215,0 +170765741001,216,0 +170765741049,216,0 +170765741097,215,0 +170765741145,215,0 +170765741193,215,0 +170765741241,214,0 +170765741288,214,0 +170765741336,214,0 +170765741384,214,0 +170765741434,214,0 +170765741484,214,0 +170765741531,215,0 +170765741579,215,0 +170765741627,215,0 +170765741677,216,0 +170765741725,215,0 +170765741774,215,0 +170765741822,216,0 +170765741870,216,0 +170765741918,216,0 +170765741966,215,0 +170765742014,215,0 +170765742062,214,0 +170765742110,214,0 +170765742157,214,0 +170765742205,215,0 +170765742253,215,0 +170765742301,215,0 +170765742349,215,0 +170765742397,215,0 +170765742446,215,0 +170765742496,216,0 +170765742544,215,0 +170765742592,215,0 +170765742640,215,0 +170765742687,215,0 +170765742735,216,0 +170765742785,215,0 +170765742834,215,0 +170765742884,214,0 +170765742933,214,0 +170765742981,214,0 +170765743029,214,0 +170765743077,214,0 +170765743126,215,0 +170765743174,215,0 +170765743222,215,0 +170765743270,215,0 +170765743318,215,0 +170765743366,215,0 +170765743413,215,0 +170765743461,216,0 +170765743509,215,0 +170765743557,215,0 +170765743605,215,0 +170765743653,215,0 +170765743700,215,0 +170765743748,214,0 +170765743796,214,0 +170765743846,214,0 +170765743894,214,0 +170765743942,214,0 +170765743990,215,0 +170765744038,214,0 +170765744087,215,0 +170765744135,215,0 +170765744183,215,0 +170765744231,215,0 +170765744279,215,0 +170765744327,216,0 +170765744374,216,0 +170765744422,216,0 +170765744470,215,0 +170765744518,215,0 +170765744566,214,0 +170765744614,214,0 +170765744661,214,0 +170765744709,214,0 +170765744757,214,0 +170765744805,214,0 +170765744853,215,0 +170765744902,214,0 +170765744952,215,0 +170765745001,215,0 +170765745049,215,0 +170765745097,215,0 +170765745145,215,0 +170765745193,216,0 +170765745240,215,0 +170765745288,215,0 +170765745336,215,0 +170765745384,215,0 +170765745433,214,0 +170765745481,214,0 +170765745529,214,0 +170765745577,214,0 +170765745625,214,0 +170765745674,215,0 +170765745722,215,0 +170765745770,215,0 +170765745818,215,0 +170765745865,215,0 +170765745913,215,0 +170765745961,216,0 +170765746010,216,0 +170765746060,215,0 +170765746108,215,0 +170765746155,216,0 +170765746203,215,0 +170765746253,214,0 +170765746301,214,0 +170765746348,214,0 +170765746396,214,0 +170765746446,214,0 +170765746493,214,0 +170765746541,215,0 +170765746589,215,0 +170765746639,215,0 +170765746686,215,0 +170765746734,215,0 +170765746782,216,0 +170765746832,215,0 +170765746881,216,0 +170765746929,215,0 +170765746977,215,0 +170765747025,216,0 +170765747073,214,0 +170765747122,214,0 +170765747172,214,0 +170765747221,214,0 +170765747269,214,0 +170765747317,214,0 +170765747365,214,0 +170765747414,215,0 +170765747462,215,0 +170765747510,215,0 +170765747559,215,0 +170765747607,215,0 +170765747655,215,0 +170765747703,216,0 +170765747751,216,0 +170765747799,216,0 +170765747848,215,0 +170765747898,215,0 +170765747945,213,0 +170765747993,213,0 +170765748043,214,0 +170765748091,214,0 +170765748139,214,0 +170765748186,214,0 +170765748236,215,0 +170765748285,215,0 +170765748333,215,0 +170765748383,215,0 +170765748431,215,0 +170765748478,215,0 +170765748526,215,0 +170765748576,215,0 +170765748624,216,0 +170765748672,215,0 +170765748719,215,0 +170765748767,214,0 +170765748817,213,0 +170765748864,214,0 +170765748912,214,0 +170765748960,214,0 +170765749008,214,0 +170765749055,214,0 +170765749103,214,0 +170765749151,214,0 +170765749199,214,0 +170765749247,215,0 +170765749294,215,0 +170765749342,215,0 +170765749390,215,0 +170765749438,215,0 +170765749486,215,0 +170765749534,215,0 +170765749581,215,0 +170765749629,213,0 +170765749677,213,0 +170765749725,213,0 +170765749772,213,0 +170765749820,214,0 +170765749868,214,0 +170765749916,214,0 +170765749963,214,0 +170765750011,214,0 +170765750059,215,0 +170765750107,215,0 +170765750155,215,0 +170765750203,215,0 +170765750251,215,0 +170765750299,215,0 +170765750347,215,0 +170765750396,215,0 +170765750444,214,0 +170765750492,213,0 +170765750540,214,0 +170765750588,214,0 +170765750636,214,0 +170765750684,214,0 +170765750731,214,0 +170765750779,214,0 +170765750829,215,0 +170765750876,215,0 +170765750924,215,0 +170765750972,215,0 +170765751020,215,0 +170765751068,215,0 +170765751116,216,0 +170765751163,215,0 +170765751211,216,0 +170765751259,215,0 +170765751307,214,0 +170765751355,214,0 +170765751403,214,0 +170765751451,215,0 +170765751498,215,0 +170765751546,215,0 +170765751594,215,0 +170765751642,215,0 +170765751690,215,0 +170765751738,216,0 +170765751786,215,0 +170765751833,216,0 +170765751881,216,0 +170765751929,216,0 +170765751977,215,0 +170765752025,216,0 +170765752073,215,0 +170765752120,214,0 +170765752170,214,0 +170765752218,214,0 +170765752266,214,0 +170765752315,215,0 +170765752363,214,0 +170765752410,215,0 +170765752458,215,0 +170765752508,215,0 +170765752555,215,0 +170765752603,215,0 +170765752651,215,0 +170765752699,215,0 +170765752747,215,0 +170765752795,215,0 +170765752842,216,0 +170765752892,215,0 +170765752941,215,0 +170765752989,214,0 +170765753037,214,0 +170765753085,214,0 +170765753133,214,0 +170765753180,214,0 +170765753228,214,0 +170765753276,214,0 +170765753324,214,0 +170765753372,215,0 +170765753419,215,0 +170765753467,215,0 +170765753515,215,0 +170765753563,215,0 +170765753611,216,0 +170765753659,215,0 +170765753706,216,0 +170765753754,216,0 +170765753802,214,0 +170765753850,214,0 +170765753898,214,0 +170765753946,214,0 +170765753994,214,0 +170765754041,214,0 +170765754089,215,0 +170765754137,215,0 +170765754185,215,0 +170765754233,215,0 +170765754282,215,0 +170765754330,215,0 +170765754379,215,0 +170765754427,215,0 +170765754475,215,0 +170765754523,215,0 +170765754570,215,0 +170765754618,215,0 +170765754666,213,0 +170765754714,214,0 +170765754762,214,0 +170765754810,214,0 +170765754858,214,0 +170765754905,214,0 +170765754955,214,0 +170765755003,215,0 +170765755051,215,0 +170765755099,215,0 +170765755146,215,0 +170765755194,215,0 +170765755242,215,0 +170765755290,215,0 +170765755339,215,0 +170765755387,216,0 +170765755435,215,0 +170765755483,214,0 +170765755530,214,0 +170765755578,214,0 +170765755626,214,0 +170765755674,215,0 +170765755723,215,0 +170765755771,215,0 +170765755820,215,0 +170765755870,215,0 +170765755917,215,0 +170765755965,215,0 +170765756015,216,0 +170765756064,216,0 +170765756112,216,0 +170765756160,216,0 +170765756208,215,0 +170765756256,215,0 +170765756304,214,0 +170765756352,215,0 +170765756401,215,0 +170765756449,215,0 +170765756497,215,0 +170765756545,215,0 +170765756595,215,0 +170765756644,215,0 +170765756694,216,0 +170765756741,216,0 +170765756791,216,0 +170765756839,216,0 +170765756887,216,0 +170765756935,216,0 +170765756983,216,0 +170765757031,216,0 +170765757078,216,0 +170765757126,215,0 +170765757176,214,0 +170765757225,214,0 +170765757273,215,0 +170765757321,214,0 +170765757370,215,0 +170765757418,215,0 +170765757466,215,0 +170765757516,215,0 +170765757565,215,0 +170765757613,215,0 +170765757661,215,0 +170765757709,215,0 +170765757759,215,0 +170765757807,216,0 +170765757854,216,0 +170765757902,215,0 +170765757950,215,0 +170765758000,214,0 +170765758049,214,0 +170765758097,214,0 +170765758145,214,0 +170765758195,214,0 +170765758243,214,0 +170765758292,215,0 +170765758342,215,0 +170765758390,215,0 +170765758438,215,0 +170765758486,215,0 +170765758535,215,0 +170765758585,216,0 +170765758634,216,0 +170765758682,216,0 +170765758730,215,0 +170765758778,215,0 +170765758827,214,0 +170765758875,213,0 +170765758925,214,0 +170765758974,214,0 +170765759022,214,0 +170765759070,214,0 +170765759118,214,0 +170765759166,214,0 +170765759214,215,0 +170765759261,215,0 +170765759309,215,0 +170765759359,215,0 +170765759407,215,0 +170765759454,215,0 +170765759502,216,0 +170765759550,215,0 +170765759598,215,0 +170765759646,215,0 +170765759694,213,0 +170765759741,214,0 +170765759789,214,0 +170765759837,214,0 +170765759886,214,0 +170765759934,214,0 +170765759982,215,0 +170765760030,215,0 +170765760078,215,0 +170765760126,215,0 +170765760174,215,0 +170765760221,215,0 +170765760269,215,0 +170765760319,215,0 +170765760367,216,0 +170765760416,215,0 +170765760464,215,0 +170765760513,214,0 +170765760561,214,0 +170765760611,214,0 +170765760659,214,0 +170765760707,214,0 +170765760756,214,0 +170765760804,214,0 +170765760852,214,0 +170765760901,215,0 +170765760949,215,0 +170765760997,215,0 +170765761047,216,0 +170765761096,215,0 +170765761144,215,0 +170765761192,215,0 +170765761240,216,0 +170765761288,215,0 +170765761338,214,0 +170765761386,213,0 +170765761433,213,0 +170765761481,213,0 +170765761531,214,0 +170765761579,214,0 +170765761628,214,0 +170765761676,214,0 +170765761724,214,0 +170765761774,215,0 +170765761822,215,0 +170765761871,215,0 +170765761919,215,0 +170765761967,215,0 +170765762016,215,0 +170765762064,216,0 +170765762112,215,0 +170765762160,215,0 +170765762208,213,0 +170765762257,213,0 +170765762305,213,0 +170765762353,214,0 +170765762401,214,0 +170765762451,214,0 +170765762499,214,0 +170765762548,214,0 +170765762596,214,0 +170765762644,215,0 +170765762693,215,0 +170765762743,215,0 +170765762792,215,0 +170765762842,215,0 +170765762890,215,0 +170765762938,215,0 +170765762986,215,0 +170765763035,213,0 +170765763085,213,0 +170765763133,214,0 +170765763181,213,0 +170765763230,214,0 +170765763278,214,0 +170765763328,214,0 +170765763376,214,0 +170765763423,214,0 +170765763471,215,0 +170765763519,215,0 +170765763567,215,0 +170765763617,215,0 +170765763666,215,0 +170765763716,215,0 +170765763764,215,0 +170765763812,215,0 +170765763861,214,0 +170765763909,213,0 +170765763957,213,0 +170765764005,214,0 +170765764053,213,0 +170765764102,213,0 +170765764150,214,0 +170765764200,214,0 +170765764249,214,0 +170765764297,214,0 +170765764347,214,0 +170765764396,215,0 +170765764444,215,0 +170765764493,215,0 +170765764543,215,0 +170765764591,215,0 +170765764640,215,0 +170765764690,214,0 +170765764738,213,0 +170765764786,213,0 +170765764835,213,0 +170765764885,214,0 +170765764934,214,0 +170765764982,214,0 +170765765031,214,0 +170765765079,214,0 +170765765129,217,0 +170765765177,215,0 +170765765225,215,0 +170765765274,215,0 +170765765324,215,0 +170765765373,216,0 +170765765421,215,0 +170765765471,215,0 +170765765520,215,0 +170765765568,214,0 +170765765616,214,0 +170765765665,214,0 +170765765713,214,0 +170765765761,215,0 +170765765811,215,0 +170765765858,215,0 +170765765908,215,0 +170765765957,215,0 +170765766007,215,0 +170765766055,215,0 +170765766104,215,0 +170765766152,215,0 +170765766200,215,0 +170765766250,215,0 +170765766299,216,0 +170765766349,215,0 +170765766398,214,0 +170765766448,214,0 +170765766497,214,0 +170765766545,214,0 +170765766593,214,0 +170765766641,214,0 +170765766690,215,0 +170765766738,214,0 +170765766788,215,0 +170765766837,215,0 +170765766885,215,0 +170765766933,215,0 +170765766981,215,0 +170765767030,215,0 +170765767080,215,0 +170765767128,215,0 +170765767177,215,0 +170765767227,214,0 +170765767276,214,0 +170765767324,214,0 +170765767372,214,0 +170765767422,214,0 +170765767469,214,0 +170765767517,214,0 +170765767567,214,0 +170765767616,215,0 +170765767666,215,0 +170765767715,215,0 +170765767765,215,0 +170765767813,216,0 +170765767862,215,0 +170765767910,215,0 +170765767958,215,0 +170765768006,215,0 +170765768054,214,0 +170765768102,214,0 +170765768150,214,0 +170765768199,214,0 +170765768249,214,0 +170765768297,214,0 +170765768346,215,0 +170765768394,215,0 +170765768442,215,0 +170765768490,215,0 +170765768538,215,0 +170765768588,215,0 +170765768636,215,0 +170765768684,216,0 +170765768731,215,0 +170765768779,216,0 +170765768829,216,0 +170765768877,215,0 +170765768925,214,0 +170765768973,214,0 +170765769020,214,0 +170765769068,214,0 +170765769118,215,0 +170765769166,215,0 +170765769214,215,0 +170765769262,215,0 +170765769311,215,0 +170765769359,215,0 +170765769409,216,0 +170765769457,215,0 +170765769506,216,0 +170765769554,216,0 +170765769604,215,0 +170765769651,215,0 +170765769701,215,0 +170765769749,215,0 +170765769796,214,0 +170765769844,215,0 +170765769892,215,0 +170765769940,215,0 +170765769988,215,0 +170765770036,215,0 +170765770084,216,0 +170765770132,216,0 +170765770180,215,0 +170765770228,216,0 +170765770277,216,0 +170765770325,216,0 +170765770373,216,0 +170765770421,216,0 +170765770469,215,0 +170765770517,216,0 +170765770565,214,0 +170765770613,215,0 +170765770660,215,0 +170765770708,215,0 +170765770758,215,0 +170765770806,215,0 +170765770853,216,0 +170765770901,215,0 +170765770949,215,0 +170765770999,216,0 +170765771047,216,0 +170765771095,216,0 +170765771143,216,0 +170765771192,216,0 +170765771240,216,0 +170765771288,216,0 +170765771337,216,0 +170765771387,215,0 +170765771435,214,0 +170765771483,214,0 +170765771531,215,0 +170765771580,214,0 +170765771628,214,0 +170765771677,215,0 +170765771725,215,0 +170765771773,215,0 +170765771821,215,0 +170765771869,215,0 +170765771919,215,0 +170765771967,215,0 +170765772015,215,0 +170765772064,216,0 +170765772112,216,0 +170765772161,216,0 +170765772209,215,0 +170765772257,214,0 +170765772305,214,0 +170765772353,214,0 +170765772401,214,0 +170765772450,214,0 +170765772498,214,0 +170765772546,215,0 +170765772596,215,0 +170765772644,215,0 +170765772691,215,0 +170765772739,215,0 +170765772787,216,0 +170765772835,216,0 +170765772883,216,0 +170765772933,216,0 +170765772982,215,0 +170765773030,215,0 +170765773080,215,0 +170765773127,214,0 +170765773175,214,0 +170765773223,214,0 +170765773271,214,0 +170765773319,214,0 +170765773367,214,0 +170765773416,215,0 +170765773464,215,0 +170765773512,215,0 +170765773560,215,0 +170765773610,215,0 +170765773659,215,0 +170765773707,215,0 +170765773755,215,0 +170765773802,215,0 +170765773850,215,0 +170765773898,215,0 +170765773946,214,0 +170765773994,214,0 +170765774042,214,0 +170765774090,214,0 +170765774137,214,0 +170765774187,214,0 +170765774235,215,0 +170765774283,215,0 +170765774331,215,0 +170765774379,215,0 +170765774426,215,0 +170765774474,215,0 +170765774522,215,0 +170765774570,215,0 +170765774618,215,0 +170765774666,216,0 +170765774714,215,0 +170765774764,215,0 +170765774811,213,0 +170765774859,214,0 +170765774907,214,0 +170765774955,214,0 +170765775005,214,0 +170765775053,214,0 +170765775102,214,0 +170765775150,215,0 +170765775198,215,0 +170765775248,215,0 +170765775297,215,0 +170765775345,215,0 +170765775395,216,0 +170765775442,215,0 +170765775492,215,0 +170765775540,215,0 +170765775588,215,0 +170765775636,213,0 +170765775684,213,0 +170765775732,213,0 +170765775781,214,0 +170765775829,214,0 +170765775877,214,0 +170765775925,214,0 +170765775974,215,0 +170765776024,215,0 +170765776072,215,0 +170765776120,215,0 +170765776168,215,0 +170765776217,215,0 +170765776265,216,0 +170765776315,215,0 +170765776363,216,0 +170765776411,215,0 +170765776460,214,0 +170765776508,213,0 +170765776557,214,0 +170765776605,214,0 +170765776653,214,0 +170765776701,214,0 +170765776749,214,0 +170765776797,214,0 +170765776845,214,0 +170765776893,215,0 +170765776941,215,0 +170765776989,215,0 +170765777038,215,0 +170765777086,215,0 +170765777134,215,0 +170765777183,215,0 +170765777233,216,0 +170765777281,215,0 +170765777329,213,0 +170765777377,213,0 +170765777425,213,0 +170765777473,214,0 +170765777520,214,0 +170765777568,214,0 +170765777618,214,0 +170765777667,214,0 +170765777717,214,0 +170765777765,215,0 +170765777813,215,0 +170765777860,215,0 +170765777908,215,0 +170765777956,215,0 +170765778004,215,0 +170765778052,215,0 +170765778100,215,0 +170765778147,213,0 +170765778195,213,0 +170765778243,214,0 +170765778291,214,0 +170765778339,214,0 +170765778387,214,0 +170765778434,214,0 +170765778482,214,0 +170765778530,214,0 +170765778578,214,0 +170765778627,214,0 +170765778675,214,0 +170765778723,215,0 +170765778771,215,0 +170765778820,215,0 +170765778868,215,0 +170765778918,215,0 +170765778965,215,0 +170765779013,213,0 +170765779061,213,0 +170765779109,214,0 +170765779157,214,0 +170765779205,214,0 +170765779252,214,0 +170765779302,214,0 +170765779352,215,0 +170765779400,215,0 +170765779447,215,0 +170765779497,215,0 +170765779546,215,0 +170765779596,216,0 +170765779644,215,0 +170765779692,215,0 +170765779739,216,0 +170765779787,215,0 +170765779837,214,0 +170765779885,214,0 +170765779932,214,0 +170765779982,215,0 +170765780030,214,0 +170765780077,215,0 +170765780125,214,0 +170765780173,215,0 +170765780221,215,0 +170765780270,215,0 +170765780318,215,0 +170765780368,215,0 +170765780416,215,0 +170765780464,215,0 +170765780512,216,0 +170765780561,216,0 +170765780609,215,0 +170765780659,214,0 +170765780708,214,0 +170765780756,214,0 +170765780805,214,0 +170765780853,215,0 +170765780901,215,0 +170765780949,215,0 +170765780997,215,0 +170765781045,215,0 +170765781094,215,0 +170765781142,216,0 +170765781191,216,0 +170765781239,215,0 +170765781287,215,0 +170765781335,215,0 +170765781385,215,0 +170765781433,216,0 +170765781481,215,0 +170765781528,214,0 +170765781576,214,0 +170765781624,214,0 +170765781672,214,0 +170765781720,214,0 +170765781770,214,0 +170765781819,215,0 +170765781869,215,0 +170765781918,215,0 +170765781966,215,0 +170765782014,215,0 +170765782062,216,0 +170765782112,215,0 +170765782160,216,0 +170765782208,216,0 +170765782256,215,0 +170765782304,215,0 +170765782351,214,0 +170765782399,214,0 +170765782447,214,0 +170765782497,214,0 +170765782545,214,0 +170765782593,214,0 +170765782641,214,0 +170765782689,215,0 +170765782738,215,0 +170765782786,215,0 +170765782834,215,0 +170765782883,215,0 +170765782931,215,0 +170765782979,215,0 +170765783027,216,0 +170765783077,216,0 +170765783125,215,0 +170765783173,215,0 +170765783221,214,0 +170765783270,214,0 +170765783318,214,0 +170765783366,214,0 +170765783414,214,0 +170765783461,214,0 +170765783509,215,0 +170765783557,215,0 +170765783605,215,0 +170765783653,215,0 +170765783701,215,0 +170765783748,216,0 +170765783796,215,0 +170765783844,215,0 +170765783892,216,0 +170765783940,215,0 +170765783988,216,0 +170765784035,214,0 +170765784083,214,0 +170765784133,214,0 +170765784181,214,0 +170765784230,215,0 +170765784278,215,0 +170765784326,215,0 +170765784374,215,0 +170765784422,215,0 +170765784470,215,0 +170765784518,215,0 +170765784566,215,0 +170765784614,215,0 +170765784661,215,0 +170765784711,216,0 +170765784759,216,0 +170765784807,215,0 +170765784854,215,0 +170765784902,214,0 +170765784950,214,0 +170765784999,214,0 +170765785047,214,0 +170765785097,214,0 +170765785145,214,0 +170765785192,215,0 +170765785240,215,0 +170765785288,215,0 +170765785338,215,0 +170765785386,215,0 +170765785435,216,0 +170765785483,215,0 +170765785531,215,0 +170765785581,216,0 +170765785628,215,0 +170765785676,215,0 +170765785724,214,0 +170765785772,213,0 +170765785820,214,0 +170765785868,214,0 +170765785916,214,0 +170765785964,214,0 +170765786012,214,0 +170765786061,214,0 +170765786109,215,0 +170765786157,215,0 +170765786205,215,0 +170765786253,215,0 +170765786301,215,0 +170765786349,215,0 +170765786397,215,0 +170765786445,215,0 +170765786494,215,0 +170765786544,214,0 +170765786592,214,0 +170765786641,214,0 +170765786689,214,0 +170765786737,214,0 +170765786787,214,0 +170765786835,214,0 +170765786883,214,0 +170765786931,215,0 +170765786978,215,0 +170765787026,215,0 +170765787074,215,0 +170765787122,215,0 +170765787172,215,0 +170765787221,216,0 +170765787271,215,0 +170765787319,216,0 +170765787367,215,0 +170765787415,214,0 +170765787464,214,0 +170765787512,214,0 +170765787560,214,0 +170765787608,214,0 +170765787656,215,0 +170765787704,214,0 +170765787752,215,0 +170765787800,215,0 +170765787849,215,0 +170765787899,215,0 +170765787948,215,0 +170765787998,215,0 +170765788046,215,0 +170765788095,216,0 +170765788145,215,0 +170765788193,215,0 +170765788241,214,0 +170765788289,214,0 +170765788338,214,0 +170765788386,214,0 +170765788436,214,0 +170765788484,214,0 +170765788533,214,0 +170765788581,215,0 +170765788629,215,0 +170765788677,215,0 +170765788725,215,0 +170765788773,216,0 +170765788821,215,0 +170765788869,216,0 +170765788917,216,0 +170765788965,216,0 +170765789012,215,0 +170765789060,215,0 +170765789110,214,0 +170765789158,214,0 +170765789206,215,0 +170765789254,215,0 +170765789302,215,0 +170765789350,215,0 +170765789398,215,0 +170765789445,215,0 +170765789495,215,0 +170765789544,216,0 +170765789592,216,0 +170765789640,216,0 +170765789690,216,0 +170765789739,216,0 +170765789787,216,0 +170765789835,216,0 +170765789883,215,0 +170765789931,214,0 +170765789979,214,0 +170765790029,214,0 +170765790078,214,0 +170765790128,214,0 +170765790175,215,0 +170765790225,215,0 +170765790273,215,0 +170765790322,214,0 +170765790372,215,0 +170765790421,214,0 +170765790469,215,0 +170765790517,216,0 +170765790565,215,0 +170765790613,216,0 +170765790663,215,0 +170765790710,215,0 +170765790758,214,0 +170765790808,213,0 +170765790857,214,0 +170765790907,214,0 +170765790955,214,0 +170765791003,214,0 +170765791052,214,0 +170765791100,214,0 +170765791148,215,0 +170765791198,215,0 +170765791247,215,0 +170765791296,215,0 +170765791344,215,0 +170765791394,215,0 +170765791443,216,0 +170765791491,215,0 +170765791541,215,0 +170765791590,214,0 +170765791640,213,0 +170765791689,213,0 +170765791737,214,0 +170765791787,214,0 +170765791835,214,0 +170765791883,214,0 +170765791931,215,0 +170765791978,215,0 +170765792026,215,0 +170765792074,215,0 +170765792124,215,0 +170765792172,215,0 +170765792220,215,0 +170765792268,215,0 +170765792315,215,0 +170765792363,215,0 +170765792411,214,0 +170765792459,214,0 +170765792509,213,0 +170765792558,214,0 +170765792608,214,0 +170765792657,214,0 +170765792705,214,0 +170765792753,214,0 +170765792802,214,0 +170765792850,215,0 +170765792898,215,0 +170765792946,215,0 +170765792994,215,0 +170765793042,215,0 +170765793090,215,0 +170765793138,215,0 +170765793186,215,0 +170765793233,215,0 +170765793281,214,0 +170765793329,214,0 +170765793377,214,0 +170765793427,214,0 +170765793475,214,0 +170765793524,214,0 +170765793572,215,0 +170765793620,215,0 +170765793670,215,0 +170765793717,215,0 +170765793765,215,0 +170765793813,216,0 +170765793861,215,0 +170765793909,216,0 +170765793957,216,0 +170765794005,216,0 +170765794053,215,0 +170765794102,214,0 +170765794150,214,0 +170765794198,214,0 +170765794246,215,0 +170765794295,215,0 +170765794345,214,0 +170765794393,215,0 +170765794441,215,0 +170765794490,215,0 +170765794538,215,0 +170765794586,215,0 +170765794634,215,0 +170765794682,215,0 +170765794731,215,0 +170765794779,215,0 +170765794827,215,0 +170765794875,215,0 +170765794923,215,0 +170765794973,214,0 +170765795021,214,0 +170765795069,215,0 +170765795117,214,0 +170765795164,214,0 +170765795212,215,0 +170765795260,215,0 +170765795310,215,0 +170765795358,215,0 +170765795406,215,0 +170765795453,215,0 +170765795503,215,0 +170765795552,216,0 +170765795600,215,0 +170765795648,215,0 +170765795696,215,0 +170765795746,215,0 +170765795795,214,0 +170765795843,214,0 +170765795893,214,0 +170765795941,214,0 +170765795990,214,0 +170765796038,214,0 +170765796086,214,0 +170765796134,214,0 +170765796183,215,0 +170765796233,215,0 +170765796281,215,0 +170765796329,215,0 +170765796377,215,0 +170765796424,215,0 +170765796474,215,0 +170765796522,215,0 +170765796570,215,0 +170765796618,215,0 +170765796666,213,0 +170765796713,214,0 +170765796761,214,0 +170765796809,214,0 +170765796859,214,0 +170765796907,214,0 +170765796954,214,0 +170765797002,214,0 +170765797052,215,0 +170765797100,215,0 +170765797148,215,0 +170765797197,215,0 +170765797247,215,0 +170765797294,215,0 +170765797344,215,0 +170765797392,215,0 +170765797440,215,0 +170765797489,214,0 +170765797537,214,0 +170765797585,214,0 +170765797633,214,0 +170765797681,214,0 +170765797730,214,0 +170765797778,215,0 +170765797826,215,0 +170765797874,215,0 +170765797921,215,0 +170765797969,215,0 +170765798017,215,0 +170765798065,216,0 +170765798114,215,0 +170765798164,216,0 +170765798212,215,0 +170765798261,215,0 +170765798309,214,0 +170765798357,214,0 +170765798407,214,0 +170765798455,214,0 +170765798504,214,0 +170765798552,215,0 +170765798600,215,0 +170765798648,215,0 +170765798696,215,0 +170765798743,215,0 +170765798791,216,0 +170765798839,216,0 +170765798887,215,0 +170765798935,216,0 +170765798984,215,0 +170765799032,216,0 +170765799080,215,0 +170765799128,215,0 +170765799176,213,0 +170765799224,214,0 +170765799271,214,0 +170765799321,214,0 +170765799369,214,0 +170765799417,215,0 +170765799464,215,0 +170765799514,215,0 +170765799562,215,0 +170765799610,215,0 +170765799659,215,0 +170765799707,215,0 +170765799755,216,0 +170765799803,215,0 +170765799850,215,0 +170765799898,215,0 +170765799948,215,0 +170765799997,214,0 +170765800047,214,0 +170765800095,214,0 +170765800143,214,0 +170765800192,214,0 +170765800242,214,0 +170765800291,214,0 +170765800339,215,0 +170765800388,215,0 +170765800436,215,0 +170765800486,215,0 +170765800534,215,0 +170765800583,215,0 +170765800633,215,0 +170765800681,216,0 +170765800730,215,0 +170765800780,215,0 +170765800829,214,0 +170765800877,213,0 +170765800925,214,0 +170765800973,214,0 +170765801021,214,0 +170765801069,214,0 +170765801117,215,0 +170765801166,214,0 +170765801214,214,0 +170765801264,215,0 +170765801313,215,0 +170765801363,215,0 +170765801412,215,0 +170765801460,215,0 +170765801510,215,0 +170765801559,215,0 +170765801607,216,0 +170765801655,214,0 +170765801703,214,0 +170765801751,214,0 +170765801801,214,0 +170765801849,214,0 +170765801897,215,0 +170765801945,215,0 +170765801993,215,0 +170765802041,215,0 +170765802089,215,0 +170765802138,215,0 +170765802187,215,0 +170765802237,216,0 +170765802285,215,0 +170765802334,216,0 +170765802382,215,0 +170765802430,215,0 +170765802478,215,0 +170765802526,214,0 +170765802574,214,0 +170765802622,214,0 +170765802670,214,0 +170765802718,214,0 +170765802766,214,0 +170765802815,215,0 +170765802863,214,0 +170765802913,216,0 +170765802961,215,0 +170765803010,215,0 +170765803058,215,0 +170765803106,215,0 +170765803155,215,0 +170765803203,215,0 +170765803251,215,0 +170765803299,215,0 +170765803347,214,0 +170765803397,214,0 +170765803445,214,0 +170765803492,214,0 +170765803542,214,0 +170765803592,214,0 +170765803639,215,0 +170765803687,215,0 +170765803735,215,0 +170765803783,215,0 +170765803831,215,0 +170765803879,216,0 +170765803927,215,0 +170765803977,216,0 +170765804026,216,0 +170765804074,216,0 +170765804122,215,0 +170765804170,215,0 +170765804219,214,0 +170765804267,214,0 +170765804317,214,0 +170765804365,214,0 +170765804414,214,0 +170765804462,214,0 +170765804512,214,0 +170765804560,215,0 +170765804609,215,0 +170765804657,215,0 +170765804705,216,0 +170765804753,216,0 +170765804801,215,0 +170765804849,216,0 +170765804896,215,0 +170765804946,215,0 +170765804994,215,0 +170765805042,214,0 +170765805090,214,0 +170765805137,214,0 +170765805185,214,0 +170765805233,214,0 +170765805281,214,0 +170765805329,214,0 +170765805378,214,0 +170765805426,214,0 +170765805476,215,0 +170765805525,215,0 +170765805573,215,0 +170765805623,215,0 +170765805672,215,0 +170765805720,216,0 +170765805768,215,0 +170765805818,215,0 +170765805867,215,0 +170765805915,213,0 +170765805965,214,0 +170765806014,214,0 +170765806062,214,0 +170765806110,214,0 +170765806158,214,0 +170765806207,215,0 +170765806257,215,0 +170765806306,215,0 +170765806354,215,0 +170765806402,215,0 +170765806450,215,0 +170765806500,215,0 +170765806548,215,0 +170765806596,216,0 +170765806644,215,0 +170765806693,215,0 +170765806743,213,0 +170765806791,213,0 +170765806840,214,0 +170765806888,213,0 +170765806938,214,0 +170765806985,214,0 +170765807033,215,0 +170765807081,214,0 +170765807129,214,0 +170765807177,215,0 +170765807225,215,0 +170765807273,215,0 +170765807321,215,0 +170765807369,215,0 +170765807418,216,0 +170765807468,215,0 +170765807516,215,0 +170765807563,214,0 +170765807611,214,0 +170765807659,214,0 +170765807707,214,0 +170765807755,214,0 +170765807803,214,0 +170765807851,214,0 +170765807899,215,0 +170765807946,215,0 +170765807994,215,0 +170765808042,215,0 +170765808090,216,0 +170765808138,215,0 +170765808186,216,0 +170765808234,216,0 +170765808281,216,0 +170765808329,215,0 +170765808379,215,0 +170765808427,214,0 +170765808475,214,0 +170765808522,214,0 +170765808572,214,0 +170765808620,215,0 +170765808667,215,0 +170765808715,215,0 +170765808763,215,0 +170765808813,215,0 +170765808861,215,0 +170765808910,215,0 +170765808958,216,0 +170765809006,215,0 +170765809054,215,0 +170765809101,215,0 +170765809149,216,0 +170765809197,215,0 +170765809245,214,0 +170765809294,214,0 +170765809342,214,0 +170765809390,214,0 +170765809438,214,0 +170765809486,214,0 +170765809535,214,0 +170765809583,214,0 +170765809631,215,0 +170765809679,215,0 +170765809727,214,0 +170765809774,215,0 +170765809822,215,0 +170765809870,215,0 +170765809918,215,0 +170765809966,216,0 +170765810014,215,0 +170765810062,215,0 +170765810109,213,0 +170765810157,214,0 +170765810205,214,0 +170765810253,214,0 +170765810301,214,0 +170765810348,214,0 +170765810396,214,0 +170765810444,215,0 +170765810492,215,0 +170765810540,215,0 +170765810588,215,0 +170765810635,215,0 +170765810683,215,0 +170765810731,215,0 +170765810779,215,0 +170765810828,215,0 +170765810876,215,0 +170765810924,213,0 +170765810972,213,0 +170765811020,214,0 +170765811070,214,0 +170765811119,214,0 +170765811167,214,0 +170765811215,214,0 +170765811265,214,0 +170765811314,214,0 +170765811362,215,0 +170765811410,215,0 +170765811459,215,0 +170765811509,215,0 +170765811557,215,0 +170765811605,216,0 +170765811653,215,0 +170765811701,215,0 +170765811749,214,0 +170765811796,214,0 +170765811846,214,0 +170765811896,214,0 +170765811944,214,0 +170765811991,215,0 +170765812039,214,0 +170765812087,215,0 +170765812135,215,0 +170765812183,215,0 +170765812231,216,0 +170765812279,215,0 +170765812329,215,0 +170765812377,215,0 +170765812425,215,0 +170765812473,216,0 +170765812521,215,0 +170765812570,215,0 +170765812618,214,0 +170765812666,214,0 +170765812714,214,0 +170765812762,214,0 +170765812810,215,0 +170765812858,215,0 +170765812906,215,0 +170765812954,215,0 +170765813003,215,0 +170765813053,216,0 +170765813101,216,0 +170765813150,216,0 +170765813198,216,0 +170765813248,215,0 +170765813297,216,0 +170765813345,216,0 +170765813393,215,0 +170765813441,215,0 +170765813488,214,0 +170765813536,215,0 +170765813586,215,0 +170765813635,215,0 +170765813683,215,0 +170765813731,215,0 +170765813781,215,0 +170765813830,215,0 +170765813880,216,0 +170765813929,216,0 +170765813977,216,0 +170765814027,216,0 +170765814075,216,0 +170765814124,215,0 +170765814172,216,0 +170765814222,215,0 +170765814270,214,0 +170765814318,214,0 +170765814366,214,0 +170765814415,214,0 +170765814465,214,0 +170765814513,214,0 +170765814562,215,0 +170765814612,215,0 +170765814661,215,0 +170765814711,215,0 +170765814759,215,0 +170765814807,215,0 +170765814855,216,0 +170765814904,215,0 +170765814954,216,0 +170765815003,216,0 +170765815053,215,0 +170765815101,215,0 +170765815149,214,0 +170765815196,214,0 +170765815245,214,0 +170765815292,214,0 +170765815340,214,0 +170765815390,215,0 +170765815438,215,0 +170765815485,215,0 +170765815533,215,0 +170765815581,215,0 +170765815631,215,0 +170765815679,215,0 +170765815728,216,0 +170765815776,215,0 +170765815824,216,0 +170765815872,215,0 +170765815919,215,0 +170765815967,214,0 +170765816015,213,0 +170765816063,213,0 +170765816111,214,0 +170765816159,214,0 +170765816207,214,0 +170765816255,214,0 +170765816303,215,0 +170765816350,215,0 +170765816398,215,0 +170765816448,215,0 +170765816496,215,0 +170765816543,215,0 +170765816591,215,0 +170765816639,215,0 +170765816689,215,0 +170765816738,215,0 +170765816788,215,0 +170765816835,213,0 +170765816884,213,0 +170765816933,213,0 +170765816981,214,0 +170765817030,214,0 +170765817080,214,0 +170765817128,214,0 +170765817176,214,0 +170765817224,214,0 +170765817271,215,0 +170765817319,215,0 +170765817369,215,0 +170765817417,215,0 +170765817464,216,0 +170765817512,215,0 +170765817560,215,0 +170765817608,215,0 +170765817656,214,0 +170765817704,213,0 +170765817754,213,0 +170765817803,214,0 +170765817851,214,0 +170765817901,214,0 +170765817949,214,0 +170765817996,214,0 +170765818046,214,0 +170765818094,215,0 +170765818142,215,0 +170765818189,215,0 +170765818237,215,0 +170765818285,215,0 +170765818333,215,0 +170765818381,215,0 +170765818429,215,0 +170765818479,215,0 +170765818528,213,0 +170765818578,213,0 +170765818626,213,0 +170765818674,214,0 +170765818722,214,0 +170765818770,214,0 +170765818818,214,0 +170765818866,214,0 +170765818913,214,0 +170765818961,214,0 +170765819011,215,0 +170765819059,215,0 +170765819107,215,0 +170765819156,215,0 +170765819206,215,0 +170765819255,215,0 +170765819303,215,0 +170765819353,214,0 +170765819401,213,0 +170765819449,214,0 +170765819497,213,0 +170765819544,214,0 +170765819592,214,0 +170765819640,214,0 +170765819688,214,0 +170765819736,214,0 +170765819785,215,0 +170765819833,215,0 +170765819881,215,0 +170765819929,215,0 +170765819979,215,0 +170765820028,215,0 +170765820076,215,0 +170765820126,215,0 +170765820174,214,0 +170765820223,213,0 +170765820271,213,0 +170765820319,213,0 +170765820367,214,0 +170765820415,214,0 +170765820463,214,0 +170765820512,214,0 +170765820562,214,0 +170765820610,214,0 +170765820658,215,0 +170765820706,214,0 +170765820755,215,0 +170765820803,215,0 +170765820853,215,0 +170765820902,215,0 +170765820950,215,0 +170765820998,215,0 +170765821046,213,0 +170765821094,214,0 +170765821142,213,0 +170765821190,214,0 +170765821239,213,0 +170765821287,214,0 +170765821335,214,0 +170765821385,214,0 +170765821434,214,0 +170765821482,215,0 +170765821532,215,0 +170765821580,215,0 +170765821629,215,0 +170765821679,215,0 +170765821727,215,0 +170765821775,215,0 +170765821822,215,0 +170765821870,214,0 +170765821920,214,0 +170765821968,214,0 +170765822016,214,0 +170765822065,215,0 +170765822113,215,0 +170765822163,215,0 +170765822211,215,0 +170765822260,215,0 +170765822310,216,0 +170765822359,215,0 +170765822407,216,0 +170765822455,216,0 +170765822503,215,0 +170765822551,216,0 +170765822599,216,0 +170765822647,216,0 +170765822696,214,0 +170765822744,214,0 +170765822792,214,0 +170765822840,214,0 +170765822888,214,0 +170765822938,214,0 +170765822986,215,0 +170765823033,215,0 +170765823081,215,0 +170765823129,215,0 +170765823177,215,0 +170765823225,215,0 +170765823275,215,0 +170765823323,215,0 +170765823370,215,0 +170765823418,215,0 +170765823466,215,0 +170765823516,215,0 +170765823565,214,0 +170765823613,214,0 +170765823661,214,0 +170765823709,214,0 +170765823758,214,0 +170765823806,214,0 +170765823854,214,0 +170765823902,214,0 +170765823950,215,0 +170765824000,215,0 +170765824047,215,0 +170765824095,215,0 +170765824143,215,0 +170765824192,215,0 +170765824242,215,0 +170765824290,215,0 +170765824338,215,0 +170765824387,214,0 +170765824437,214,0 +170765824485,214,0 +170765824532,214,0 +170765824580,214,0 +170765824628,214,0 +170765824676,215,0 +170765824724,215,0 +170765824774,215,0 +170765824822,215,0 +170765824869,215,0 +170765824919,215,0 +170765824968,215,0 +170765825016,215,0 +170765825064,215,0 +170765825112,215,0 +170765825162,215,0 +170765825210,215,0 +170765825257,214,0 +170765825307,214,0 +170765825355,214,0 +170765825403,214,0 +170765825451,215,0 +170765825500,215,0 +170765825548,215,0 +170765825598,215,0 +170765825646,215,0 +170765825695,215,0 +170765825744,216,0 +170765825792,216,0 +170765825840,216,0 +170765825890,215,0 +170765825938,216,0 +170765825986,216,0 +170765826035,215,0 +170765826085,215,0 +170765826133,215,0 +170765826182,215,0 +170765826232,215,0 +170765826280,215,0 +170765826327,215,0 +170765826377,216,0 +170765826426,216,0 +170765826474,216,0 +170765826522,216,0 +170765826572,216,0 +170765826620,216,0 +170765826668,216,0 +170765826716,215,0 +170765826764,216,0 +170765826812,215,0 +170765826861,216,0 +170765826909,215,0 +170765826958,215,0 +170765827006,215,0 +170765827054,215,0 +170765827102,215,0 +170765827150,215,0 +170765827198,215,0 +170765827247,216,0 +170765827295,216,0 +170765827345,216,0 +170765827394,216,0 +170765827444,216,0 +170765827493,216,0 +170765827541,216,0 +170765827591,216,0 +170765827639,216,0 +170765827688,216,0 +170765827736,214,0 +170765827784,214,0 +170765827832,214,0 +170765827880,214,0 +170765827928,214,0 +170765827976,214,0 +170765828024,214,0 +170765828072,215,0 +170765828120,215,0 +170765828169,215,0 +170765828217,215,0 +170765828265,215,0 +170765828315,215,0 +170765828362,215,0 +170765828412,216,0 +170765828460,215,0 +170765828508,215,0 +170765828557,215,0 +170765828605,213,0 +170765828653,214,0 +170765828701,214,0 +170765828749,214,0 +170765828797,214,0 +170765828845,214,0 +170765828893,214,0 +170765828941,214,0 +170765828989,215,0 +170765829038,214,0 +170765829086,215,0 +170765829134,215,0 +170765829182,215,0 +170765829231,215,0 +170765829279,215,0 +170765829327,215,0 +170765829375,215,0 +170765829423,214,0 +170765829471,214,0 +170765829519,214,0 +170765829569,214,0 +170765829617,214,0 +170765829664,214,0 +170765829712,214,0 +170765829762,214,0 +170765829811,215,0 +170765829859,215,0 +170765829907,215,0 +170765829955,215,0 +170765830003,215,0 +170765830051,215,0 +170765830099,215,0 +170765830148,215,0 +170765830198,215,0 +170765830246,215,0 +170765830294,214,0 +170765830342,213,0 +170765830390,214,0 +170765830438,214,0 +170765830485,214,0 +170765830533,214,0 +170765830581,215,0 +170765830629,215,0 +170765830677,215,0 +170765830725,215,0 +170765830772,215,0 +170765830820,215,0 +170765830868,216,0 +170765830916,216,0 +170765830964,215,0 +170765831012,215,0 +170765831059,215,0 +170765831107,214,0 +170765831157,214,0 +170765831205,214,0 +170765831252,214,0 +170765831300,214,0 +170765831348,215,0 +170765831396,215,0 +170765831444,215,0 +170765831492,215,0 +170765831541,215,0 +170765831589,216,0 +170765831638,215,0 +170765831686,215,0 +170765831734,216,0 +170765831782,215,0 +170765831830,216,0 +170765831878,216,0 +170765831926,215,0 +170765831974,213,0 +170765832022,214,0 +170765832069,214,0 +170765832117,214,0 +170765832165,214,0 +170765832213,214,0 +170765832261,215,0 +170765832309,215,0 +170765832359,215,0 +170765832407,215,0 +170765832455,215,0 +170765832505,215,0 +170765832554,215,0 +170765832604,215,0 +170765832652,215,0 +170765832701,215,0 +170765832751,215,0 +170765832800,213,0 +170765832848,214,0 +170765832896,214,0 +170765832943,214,0 +170765832993,214,0 +170765833041,214,0 +170765833089,214,0 +170765833136,214,0 +170765833184,215,0 +170765833232,215,0 +170765833280,215,0 +170765833330,215,0 +170765833379,215,0 +170765833427,215,0 +170765833475,215,0 +170765833525,215,0 +170765833573,215,0 +170765833622,214,0 +170765833670,213,0 +170765833718,213,0 +170765833766,214,0 +170765833814,214,0 +170765833863,214,0 +170765833911,214,0 +170765833959,214,0 +170765834007,214,0 +170765834055,214,0 +170765834103,214,0 +170765834152,214,0 +170765834200,215,0 +170765834249,215,0 +170765834299,215,0 +170765834347,215,0 +170765834394,215,0 +170765834444,215,0 +170765834492,214,0 +170765834540,213,0 +170765834588,213,0 +170765834637,214,0 +170765834685,214,0 +170765834733,214,0 +170765834782,214,0 +170765834830,214,0 +170765834880,214,0 +170765834928,215,0 +170765834977,215,0 +170765835027,215,0 +170765835075,215,0 +170765835124,215,0 +170765835172,216,0 +170765835220,215,0 +170765835270,215,0 +170765835317,214,0 +170765835365,214,0 +170765835413,214,0 +170765835461,214,0 +170765835509,214,0 +170765835558,214,0 +170765835606,214,0 +170765835654,215,0 +170765835703,215,0 +170765835751,215,0 +170765835799,215,0 +170765835847,215,0 +170765835895,215,0 +170765835943,216,0 +170765835991,216,0 +170765836039,215,0 +170765836087,215,0 +170765836135,215,0 +170765836182,214,0 +170765836232,214,0 +170765836280,214,0 +170765836328,215,0 +170765836376,215,0 +170765836424,215,0 +170765836472,215,0 +170765836521,215,0 +170765836569,215,0 +170765836617,215,0 +170765836667,215,0 +170765836716,215,0 +170765836764,215,0 +170765836813,216,0 +170765836863,215,0 +170765836911,215,0 +170765836960,215,0 +170765837010,214,0 +170765837058,214,0 +170765837107,214,0 +170765837155,214,0 +170765837203,215,0 +170765837251,215,0 +170765837300,215,0 +170765837350,215,0 +170765837398,215,0 +170765837446,215,0 +170765837494,215,0 +170765837542,216,0 +170765837591,216,0 +170765837641,215,0 +170765837689,216,0 +170765837738,215,0 +170765837786,215,0 +170765837834,215,0 +170765837882,214,0 +170765837932,214,0 +170765837979,214,0 +170765838027,214,0 +170765838075,214,0 +170765838123,215,0 +170765838172,215,0 +170765838220,215,0 +170765838268,215,0 +170765838318,215,0 +170765838367,215,0 +170765838417,216,0 +170765838465,216,0 +170765838514,215,0 +170765838562,215,0 +170765838610,216,0 +170765838660,215,0 +170765838708,214,0 +170765838757,214,0 +170765838805,214,0 +170765838853,214,0 +170765838901,214,0 +170765838949,214,0 +170765838997,214,0 +170765839047,215,0 +170765839094,215,0 +170765839142,215,0 +170765839192,215,0 +170765839241,215,0 +170765839289,216,0 +170765839337,215,0 +170765839387,216,0 +170765839436,215,0 +170765839486,215,0 +170765839534,214,0 +170765839583,214,0 +170765839631,214,0 +170765839681,214,0 +170765839729,214,0 +170765839777,214,0 +170765839824,214,0 +170765839872,214,0 +170765839920,215,0 +170765839968,215,0 +170765840018,215,0 +170765840066,216,0 +170765840115,215,0 +170765840163,215,0 +170765840211,215,0 +170765840259,215,0 +170765840307,216,0 +170765840355,215,0 +170765840403,214,0 +170765840451,214,0 +170765840499,214,0 +170765840547,214,0 +170765840595,214,0 +170765840643,215,0 +170765840692,215,0 +170765840740,215,0 +170765840790,215,0 +170765840839,215,0 +170765840887,216,0 +170765840935,216,0 +170765840984,216,0 +170765841032,215,0 +170765841080,215,0 +170765841128,216,0 +170765841176,215,0 +170765841224,214,0 +170765841272,214,0 +170765841320,214,0 +170765841367,214,0 +170765841415,214,0 +170765841463,214,0 +170765841511,215,0 +170765841559,215,0 +170765841609,215,0 +170765841657,215,0 +170765841704,215,0 +170765841752,216,0 +170765841800,216,0 +170765841848,216,0 +170765841897,216,0 +170765841945,216,0 +170765841994,215,0 +170765842042,215,0 +170765842090,214,0 +170765842138,214,0 +170765842186,214,0 +170765842233,214,0 +170765842281,214,0 +170765842329,214,0 +170765842379,214,0 +170765842427,215,0 +170765842476,215,0 +170765842524,215,0 +170765842572,215,0 +170765842620,215,0 +170765842668,215,0 +170765842717,215,0 +170765842765,215,0 +170765842813,215,0 +170765842861,215,0 +170765842909,214,0 +170765842957,214,0 +170765843005,214,0 +170765843053,214,0 +170765843102,214,0 +170765843150,215,0 +170765843199,215,0 +170765843247,215,0 +170765843295,215,0 +170765843343,215,0 +170765843393,216,0 +170765843440,215,0 +170765843490,216,0 +170765843538,216,0 +170765843586,216,0 +170765843633,216,0 +170765843681,216,0 +170765843729,215,0 +170765843777,214,0 +170765843825,214,0 +170765843874,214,0 +170765843922,214,0 +170765843970,215,0 +170765844018,215,0 +170765844066,215,0 +170765844114,215,0 +170765844163,215,0 +170765844211,215,0 +170765844259,216,0 +170765844307,215,0 +170765844354,215,0 +170765844402,215,0 +170765844450,215,0 +170765844498,215,0 +170765844547,215,0 +170765844595,214,0 +170765844645,214,0 +170765844693,214,0 +170765844740,214,0 +170765844788,214,0 +170765844836,214,0 +170765844884,215,0 +170765844933,215,0 +170765844983,215,0 +170765845031,215,0 +170765845079,215,0 +170765845127,215,0 +170765845175,216,0 +170765845222,216,0 +170765845270,216,0 +170765845318,216,0 +170765845366,215,0 +170765845414,215,0 +170765845462,213,0 +170765845510,213,0 +170765845558,213,0 +170765845607,214,0 +170765845657,214,0 +170765845705,214,0 +170765845752,214,0 +170765845802,214,0 +170765845850,215,0 +170765845897,215,0 +170765845945,215,0 +170765845993,215,0 +170765846041,215,0 +170765846089,215,0 +170765846136,215,0 +170765846186,215,0 +170765846235,215,0 +170765846283,214,0 +170765846331,214,0 +170765846379,214,0 +170765846427,214,0 +170765846475,214,0 +170765846523,214,0 +170765846572,214,0 +170765846620,215,0 +170765846669,215,0 +170765846717,215,0 +170765846765,215,0 +170765846813,215,0 +170765846862,215,0 +170765846910,215,0 +170765846958,215,0 +170765847006,215,0 +170765847054,215,0 +170765847101,215,0 +170765847149,214,0 +170765847197,214,0 +170765847247,214,0 +170765847295,214,0 +170765847343,214,0 +170765847390,214,0 +170765847438,214,0 +170765847486,215,0 +170765847534,215,0 +170765847582,215,0 +170765847630,215,0 +170765847678,216,0 +170765847726,215,0 +170765847774,215,0 +170765847822,216,0 +170765847870,216,0 +170765847919,215,0 +170765847969,214,0 +170765848017,214,0 +170765848065,214,0 +170765848113,214,0 +170765848161,214,0 +170765848209,214,0 +170765848256,214,0 +170765848304,214,0 +170765848352,215,0 +170765848400,215,0 +170765848450,215,0 +170765848498,215,0 +170765848546,215,0 +170765848594,215,0 +170765848642,215,0 +170765848691,215,0 +170765848739,215,0 +170765848788,215,0 +170765848836,213,0 +170765848884,214,0 +170765848932,213,0 +170765848981,214,0 +170765849029,214,0 +170765849077,214,0 +170765849125,214,0 +170765849173,214,0 +170765849221,214,0 +170765849268,215,0 +170765849316,215,0 +170765849364,215,0 +170765849414,215,0 +170765849461,215,0 +170765849511,215,0 +170765849558,215,0 +170765849608,215,0 +170765849655,214,0 +170765849703,213,0 +170765849751,213,0 +170765849799,213,0 +170765849848,213,0 +170765849896,214,0 +170765849944,214,0 +170765849992,214,0 +170765850041,214,0 +170765850089,215,0 +170765850139,215,0 +170765850186,215,0 +170765850234,215,0 +170765850282,215,0 +170765850332,216,0 +170765850381,215,0 +170765850429,215,0 +170765850477,215,0 +170765850525,214,0 +170765850574,214,0 +170765850624,214,0 +170765850673,214,0 +170765850721,214,0 +170765850769,215,0 +170765850817,215,0 +170765850865,215,0 +170765850913,215,0 +170765850961,215,0 +170765851010,216,0 +170765851058,215,0 +170765851106,215,0 +170765851154,215,0 +170765851202,216,0 +170765851250,216,0 +170765851298,215,0 +170765851346,214,0 +170765851394,214,0 +170765851442,214,0 +170765851490,214,0 +170765851537,214,0 +170765851585,215,0 +170765851633,215,0 +170765851681,215,0 +170765851728,215,0 +170765851776,215,0 +170765851824,215,0 +170765851872,215,0 +170765851920,215,0 +170765851967,216,0 +170765852015,215,0 +170765852063,215,0 +170765852111,216,0 +170765852159,215,0 +170765852207,213,0 +170765852255,214,0 +170765852303,214,0 +170765852351,214,0 +170765852400,214,0 +170765852450,214,0 +170765852498,214,0 +170765852546,214,0 +170765852595,214,0 +170765852643,215,0 +170765852691,215,0 +170765852739,215,0 +170765852787,215,0 +170765852835,215,0 +170765852883,215,0 +170765852930,215,0 +170765852978,215,0 +170765853028,214,0 +170765853076,214,0 +170765853124,214,0 +170765853173,214,0 +170765853221,214,0 +170765853269,214,0 +170765853317,214,0 +170765853364,214,0 +170765853412,214,0 +170765853460,214,0 +170765853508,215,0 +170765853558,215,0 +170765853606,215,0 +170765853654,215,0 +170765853703,215,0 +170765853751,215,0 +170765853799,215,0 +170765853848,215,0 +170765853896,214,0 +170765853944,213,0 +170765853992,213,0 +170765854040,214,0 +170765854087,214,0 +170765854135,214,0 +170765854183,214,0 +170765854233,214,0 +170765854281,214,0 +170765854330,214,0 +170765854378,215,0 +170765854426,215,0 +170765854474,215,0 +170765854523,215,0 +170765854571,215,0 +170765854619,215,0 +170765854667,215,0 +170765854715,214,0 +170765854763,214,0 +170765854810,214,0 +170765854858,214,0 +170765854906,215,0 +170765854954,215,0 +170765855002,215,0 +170765855050,215,0 +170765855099,215,0 +170765855147,215,0 +170765855195,215,0 +170765855243,215,0 +170765855291,216,0 +170765855341,216,0 +170765855389,216,0 +170765855436,216,0 +170765855484,215,0 +170765855532,215,0 +170765855580,214,0 +170765855630,214,0 +170765855677,214,0 +170765855725,214,0 +170765855773,214,0 +170765855821,214,0 +170765855869,215,0 +170765855917,215,0 +170765855965,215,0 +170765856013,214,0 +170765856061,215,0 +170765856110,215,0 +170765856158,215,0 +170765856206,215,0 +170765856254,215,0 +170765856302,215,0 +170765856351,215,0 +170765856401,215,0 +170765856449,214,0 +170765856497,214,0 +170765856544,214,0 +170765856592,214,0 +170765856640,214,0 +170765856688,214,0 +170765856736,214,0 +170765856785,215,0 +170765856833,215,0 +170765856881,214,0 +170765856929,215,0 +170765856976,215,0 +170765857026,215,0 +170765857074,215,0 +170765857122,216,0 +170765857169,215,0 +170765857217,215,0 +170765857265,214,0 +170765857313,214,0 +170765857361,214,0 +170765857408,214,0 +170765857456,214,0 +170765857504,214,0 +170765857552,214,0 +170765857601,215,0 +170765857649,215,0 +170765857697,215,0 +170765857745,215,0 +170765857792,215,0 +170765857840,215,0 +170765857888,215,0 +170765857936,215,0 +170765857984,216,0 +170765858033,215,0 +170765858081,215,0 +170765858129,214,0 +170765858177,214,0 +170765858225,214,0 +170765858273,215,0 +170765858322,215,0 +170765858372,215,0 +170765858420,215,0 +170765858468,215,0 +170765858515,215,0 +170765858563,215,0 +170765858611,215,0 +170765858659,215,0 +170765858707,215,0 +170765858755,215,0 +170765858803,214,0 +170765858851,216,0 +170765858899,215,0 +170765858947,215,0 +170765858995,214,0 +170765859043,214,0 +170765859091,214,0 +170765859140,215,0 +170765859188,215,0 +170765859237,215,0 +170765859285,215,0 +170765859333,215,0 +170765859381,215,0 +170765859431,215,0 +170765859479,216,0 +170765859527,216,0 +170765859575,216,0 +170765859624,216,0 +170765859672,216,0 +170765859722,216,0 +170765859769,215,0 +170765859817,214,0 +170765859865,214,0 +170765859913,214,0 +170765859963,214,0 +170765860011,214,0 +170765860059,215,0 +170765860107,215,0 +170765860155,215,0 +170765860203,215,0 +170765860251,216,0 +170765860298,215,0 +170765860346,215,0 +170765860394,216,0 +170765860442,215,0 +170765860490,216,0 +170765860540,216,0 +170765860589,215,0 +170765860639,214,0 +170765860687,214,0 +170765860734,214,0 +170765860782,214,0 +170765860832,214,0 +170765860880,214,0 +170765860928,215,0 +170765860977,215,0 +170765861025,215,0 +170765861075,215,0 +170765861123,215,0 +170765861172,215,0 +170765861220,215,0 +170765861270,215,0 +170765861319,216,0 +170765861367,216,0 +170765861417,215,0 +170765861465,215,0 +170765861513,214,0 +170765861561,214,0 +170765861610,214,0 +170765861658,214,0 +170765861708,214,0 +170765861757,214,0 +170765861807,214,0 +170765861855,215,0 +170765861904,215,0 +170765861954,215,0 +170765862003,215,0 +170765862051,215,0 +170765862099,215,0 +170765862147,215,0 +170765862195,215,0 +170765862244,215,0 +170765862294,215,0 +170765862343,214,0 +170765862393,213,0 +170765862441,214,0 +170765862489,214,0 +170765862538,214,0 +170765862588,213,0 +170765862637,214,0 +170765862685,214,0 +170765862735,214,0 +170765862783,215,0 +170765862830,215,0 +170765862878,215,0 +170765862926,215,0 +170765862974,215,0 +170765863022,215,0 +170765863072,215,0 +170765863120,215,0 +170765863169,215,0 +170765863217,213,0 +170765863265,213,0 +170765863315,214,0 +170765863363,213,0 +170765863412,214,0 +170765863460,214,0 +170765863510,214,0 +170765863559,214,0 +170765863607,214,0 +170765863655,214,0 +170765863704,214,0 +170765863752,215,0 +170765863800,215,0 +170765863848,215,0 +170765863896,215,0 +170765863946,215,0 +170765863995,215,0 +170765864045,214,0 +170765864093,213,0 +170765864141,213,0 +170765864189,213,0 +170765864236,213,0 +170765864284,213,0 +170765864332,214,0 +170765864382,214,0 +170765864430,214,0 +170765864478,214,0 +170765864527,214,0 +170765864575,214,0 +170765864625,215,0 +170765864673,215,0 +170765864722,215,0 +170765864770,215,0 +170765864820,216,0 +170765864868,216,0 +170765864916,216,0 +170765864964,216,0 +170765865011,216,0 +170765865059,216,0 +170765865107,216,0 +170765865155,215,0 +170765865203,215,0 +170765865251,215,0 +170765865299,215,0 +170765865347,214,0 +170765865396,214,0 +170765865444,214,0 +170765865492,214,0 +170765865540,215,0 +170765865590,215,0 +170765865638,215,0 +170765865686,215,0 +170765865734,215,0 +170765865781,215,0 +170765865829,215,0 +170765865877,215,0 +170765865927,215,0 +170765865975,215,0 +170765866023,215,0 +170765866071,215,0 +170765866119,215,0 +170765866167,214,0 +170765866215,214,0 +170765866263,214,0 +170765866311,214,0 +170765866360,214,0 +170765866410,214,0 +170765866459,214,0 +170765866507,215,0 +170765866557,215,0 +170765866605,215,0 +170765866653,215,0 +170765866701,215,0 +170765866750,215,0 +170765866800,215,0 +170765866847,215,0 +170765866895,215,0 +170765866943,215,0 +170765866991,215,0 +170765867041,214,0 +170765867089,213,0 +170765867137,214,0 +170765867186,214,0 +170765867234,214,0 +170765867282,214,0 +170765867332,214,0 +170765867380,215,0 +170765867427,215,0 +170765867475,214,0 +170765867523,215,0 +170765867573,215,0 +170765867621,215,0 +170765867669,215,0 +170765867718,215,0 +170765867768,215,0 +170765867816,215,0 +170765867865,214,0 +170765867913,214,0 +170765867963,214,0 +170765868011,214,0 +170765868059,214,0 +170765868108,214,0 +170765868156,214,0 +170765868204,214,0 +170765868252,214,0 +170765868300,215,0 +170765868348,215,0 +170765868397,215,0 +170765868447,215,0 +170765868495,215,0 +170765868544,215,0 +170765868592,215,0 +170765868640,215,0 +170765868690,215,0 +170765868738,214,0 +170765868786,214,0 +170765868834,214,0 +170765868883,214,0 +170765868931,214,0 +170765868979,215,0 +170765869028,215,0 +170765869078,215,0 +170765869127,215,0 +170765869175,215,0 +170765869225,215,0 +170765869273,215,0 +170765869322,215,0 +170765869370,215,0 +170765869418,215,0 +170765869466,216,0 +170765869514,215,0 +170765869562,214,0 +170765869610,215,0 +170765869658,215,0 +170765869706,215,0 +170765869754,215,0 +170765869802,215,0 +170765869851,215,0 +170765869899,215,0 +170765869947,215,0 +170765869995,216,0 +170765870045,216,0 +170765870093,215,0 +170765870142,215,0 +170765870190,216,0 +170765870240,215,0 +170765870289,215,0 +170765870339,216,0 +170765870388,215,0 +170765870436,214,0 +170765870484,214,0 +170765870532,214,0 +170765870582,215,0 +170765870631,215,0 +170765870679,215,0 +170765870727,215,0 +170765870775,215,0 +170765870823,215,0 +170765870871,215,0 +170765870920,216,0 +170765870968,216,0 +170765871016,215,0 +170765871064,216,0 +170765871113,216,0 +170765871163,215,0 +170765871211,215,0 +170765871259,215,0 +170765871307,214,0 +170765871355,214,0 +170765871404,214,0 +170765871452,214,0 +170765871500,215,0 +170765871550,215,0 +170765871598,215,0 +170765871647,215,0 +170765871695,215,0 +170765871743,215,0 +170765871793,215,0 +170765871842,215,0 +170765871890,215,0 +170765871940,216,0 +170765871988,216,0 +170765872035,215,0 +170765872083,215,0 +170765872131,214,0 +170765872179,214,0 +170765872227,214,0 +170765872275,214,0 +170765872323,214,0 +170765872371,214,0 +170765872419,215,0 +170765872467,215,0 +170765872515,215,0 +170765872563,215,0 +170765872611,215,0 +170765872660,215,0 +170765872708,215,0 +170765872756,216,0 +170765872804,215,0 +170765872852,216,0 +170765872899,215,0 +170765872948,215,0 +170765872997,214,0 +170765873045,214,0 +170765873093,214,0 +170765873141,214,0 +170765873189,214,0 +170765873237,215,0 +170765873284,215,0 +170765873334,215,0 +170765873382,215,0 +170765873431,215,0 +170765873479,215,0 +170765873529,216,0 +170765873576,216,0 +170765873624,215,0 +170765873674,215,0 +170765873722,216,0 +170765873771,215,0 +170765873819,215,0 +170765873869,214,0 +170765873918,213,0 +170765873966,214,0 +170765874014,214,0 +170765874063,214,0 +170765874111,214,0 +170765874159,214,0 +170765874209,215,0 +170765874257,215,0 +170765874306,215,0 +170765874354,215,0 +170765874402,215,0 +170765874450,215,0 +170765874500,216,0 +170765874549,216,0 +170765874597,216,0 +170765874645,215,0 +170765874693,215,0 +170765874741,213,0 +170765874791,213,0 +170765874839,213,0 +170765874886,214,0 +170765874934,214,0 +170765874984,214,0 +170765875032,214,0 +170765875080,214,0 +170765875128,214,0 +170765875177,214,0 +170765875225,215,0 +170765875273,215,0 +170765875321,215,0 +170765875370,215,0 +170765875420,215,0 +170765875469,215,0 +170765875517,215,0 +170765875565,215,0 +170765875615,213,0 +170765875664,214,0 +170765875714,213,0 +170765875763,214,0 +170765875813,214,0 +170765875861,214,0 +170765875910,214,0 +170765875958,214,0 +170765876006,214,0 +170765876054,214,0 +170765876103,215,0 +170765876153,215,0 +170765876201,215,0 +170765876249,215,0 +170765876298,215,0 +170765876348,215,0 +170765876396,215,0 +170765876444,215,0 +170765876492,215,0 +170765876540,214,0 +170765876588,213,0 +170765876636,213,0 +170765876685,214,0 +170765876735,214,0 +170765876784,214,0 +170765876834,214,0 +170765876881,214,0 +170765876929,214,0 +170765876979,214,0 +170765877027,215,0 +170765877075,215,0 +170765877123,215,0 +170765877171,215,0 +170765877219,215,0 +170765877268,215,0 +170765877318,215,0 +170765877366,216,0 +170765877415,215,0 +170765877465,214,0 +170765877513,213,0 +170765877561,213,0 +170765877610,213,0 +170765877660,213,0 +170765877707,213,0 +170765877755,214,0 +170765877803,214,0 +170765877853,214,0 +170765877901,213,0 +170765877950,214,0 +170765877998,214,0 +170765878046,214,0 +170765878094,215,0 +170765878144,215,0 +170765878193,215,0 +170765878241,215,0 +170765878289,215,0 +170765878337,215,0 +170765878385,215,0 +170765878434,213,0 +170765878484,213,0 +170765878532,214,0 +170765878580,213,0 +170765878629,214,0 +170765878677,213,0 +170765878725,214,0 +170765878773,214,0 +170765878821,214,0 +170765878869,214,0 +170765878917,214,0 +170765878965,215,0 +170765879013,215,0 +170765879061,215,0 +170765879109,215,0 +170765879158,215,0 +170765879206,215,0 +170765879256,215,0 +170765879305,215,0 +170765879353,214,0 +170765879403,213,0 +170765879451,214,0 +170765879499,214,0 +170765879546,214,0 +170765879594,214,0 +170765879642,214,0 +170765879690,214,0 +170765879738,214,0 +170765879786,214,0 +170765879834,214,0 +170765879882,215,0 +170765879932,215,0 +170765879981,215,0 +170765880031,215,0 +170765880079,215,0 +170765880128,216,0 +170765880176,215,0 +170765880224,215,0 +170765880272,214,0 +170765880322,214,0 +170765880371,214,0 +170765880419,214,0 +170765880467,214,0 +170765880515,214,0 +170765880563,215,0 +170765880612,215,0 +170765880660,215,0 +170765880708,215,0 +170765880757,215,0 +170765880807,215,0 +170765880856,215,0 +170765880904,216,0 +170765880952,216,0 +170765881000,216,0 +170765881050,216,0 +170765881098,215,0 +170765881146,215,0 +170765881194,215,0 +170765881242,214,0 +170765881290,214,0 +170765881338,214,0 +170765881387,215,0 +170765881437,215,0 +170765881485,215,0 +170765881533,215,0 +170765881580,215,0 +170765881628,215,0 +170765881676,215,0 +170765881724,215,0 +170765881772,215,0 +170765881820,215,0 +170765881868,215,0 +170765881916,215,0 +170765881964,215,0 +170765882012,215,0 +170765882061,215,0 +170765882109,215,0 +170765882159,214,0 +170765882207,214,0 +170765882255,214,0 +170765882303,214,0 +170765882352,215,0 +170765882400,215,0 +170765882448,215,0 +170765882497,215,0 +170765882547,215,0 +170765882596,215,0 +170765882646,215,0 +170765882695,215,0 +170765882743,215,0 +170765882791,215,0 +170765882839,215,0 +170765882889,216,0 +170765882937,215,0 +170765882985,215,0 +170765883034,215,0 +170765883082,215,0 +170765883130,214,0 +170765883178,214,0 +170765883226,214,0 +170765883274,214,0 +170765883322,215,0 +170765883370,215,0 +170765883418,215,0 +170765883467,215,0 +170765883517,215,0 +170765883566,215,0 +170765883614,215,0 +170765883662,215,0 +170765883711,215,0 +170765883759,215,0 +170765883807,215,0 +170765883855,215,0 +170765883905,215,0 +170765883952,215,0 +170765884002,215,0 +170765884051,214,0 +170765884099,214,0 +170765884149,214,0 +170765884198,214,0 +170765884246,214,0 +170765884294,214,0 +170765884342,214,0 +170765884390,215,0 +170765884438,215,0 +170765884488,215,0 +170765884537,215,0 +170765884587,215,0 +170765884635,215,0 +170765884683,215,0 +170765884730,215,0 +170765884780,215,0 +170765884828,216,0 +170765884876,215,0 +170765884924,215,0 +170765884972,214,0 +170765885020,214,0 +170765885069,214,0 +170765885119,214,0 +170765885167,214,0 +170765885215,215,0 +170765885263,214,0 +170765885312,215,0 +170765885362,215,0 +170765885409,215,0 +170765885457,215,0 +170765885505,215,0 +170765885555,215,0 +170765885604,215,0 +170765885652,216,0 +170765885700,215,0 +170765885750,216,0 +170765885798,216,0 +170765885847,215,0 +170765885895,214,0 +170765885943,214,0 +170765885991,214,0 +170765886039,214,0 +170765886088,214,0 +170765886138,214,0 +170765886186,215,0 +170765886234,215,0 +170765886283,215,0 +170765886331,215,0 +170765886379,215,0 +170765886427,215,0 +170765886475,215,0 +170765886524,215,0 +170765886572,215,0 +170765886620,215,0 +170765886668,215,0 +170765886716,216,0 +170765886764,215,0 +170765886812,215,0 +170765886860,213,0 +170765886908,214,0 +170765886956,214,0 +170765887004,214,0 +170765887051,214,0 +170765887099,214,0 +170765887149,214,0 +170765887197,214,0 +170765887245,215,0 +170765887293,215,0 +170765887341,215,0 +170765887389,215,0 +170765887438,215,0 +170765887486,215,0 +170765887534,215,0 +170765887584,216,0 +170765887632,215,0 +170765887681,215,0 +170765887729,215,0 +170765887777,214,0 +170765887827,213,0 +170765887876,214,0 +170765887924,214,0 +170765887972,214,0 +170765888021,214,0 +170765888069,214,0 +170765888119,214,0 +170765888167,214,0 +170765888215,214,0 +170765888263,215,0 +170765888311,215,0 +170765888359,215,0 +170765888407,215,0 +170765888455,215,0 +170765888503,216,0 +170765888550,215,0 +170765888598,215,0 +170765888646,215,0 +170765888696,215,0 +170765888744,213,0 +170765888793,214,0 +170765888841,214,0 +170765888891,214,0 +170765888939,214,0 +170765888987,214,0 +170765889035,214,0 +170765889084,214,0 +170765889132,214,0 +170765889180,215,0 +170765889228,215,0 +170765889276,215,0 +170765889324,215,0 +170765889372,215,0 +170765889420,215,0 +170765889468,215,0 +170765889516,216,0 +170765889563,216,0 +170765889611,215,0 +170765889659,214,0 +170765889709,213,0 +170765889757,214,0 +170765889806,214,0 +170765889854,214,0 +170765889902,214,0 +170765889950,214,0 +170765889999,214,0 +170765890049,214,0 +170765890098,215,0 +170765890146,215,0 +170765890194,215,0 +170765890242,215,0 +170765890290,215,0 +170765890338,215,0 +170765890386,215,0 +170765890434,216,0 +170765890482,215,0 +170765890531,215,0 +170765890579,215,0 +170765890629,214,0 +170765890677,213,0 +170765890724,213,0 +170765890774,214,0 +170765890822,214,0 +170765890870,214,0 +170765890918,214,0 +170765890966,214,0 +170765891015,214,0 +170765891063,215,0 +170765891113,215,0 +170765891161,215,0 +170765891208,215,0 +170765891256,215,0 +170765891304,215,0 +170765891352,216,0 +170765891400,215,0 +170765891448,215,0 +170765891496,215,0 +170765891544,214,0 +170765891592,213,0 +170765891639,213,0 +170765891689,213,0 +170765891737,213,0 +170765891785,214,0 +170765891833,214,0 +170765891881,214,0 +170765891928,214,0 +170765891976,214,0 +170765892024,214,0 +170765892072,214,0 +170765892120,215,0 +170765892169,215,0 +170765892217,215,0 +170765892267,215,0 +170765892315,215,0 +170765892363,215,0 +170765892410,215,0 +170765892458,215,0 +170765892506,214,0 +170765892556,213,0 +170765892604,213,0 +170765892652,213,0 +170765892701,213,0 +170765892749,214,0 +170765892797,214,0 +170765892846,214,0 +170765892894,214,0 +170765892944,214,0 +170765892992,214,0 +170765893040,215,0 +170765893088,215,0 +170765893136,215,0 +170765893183,215,0 +170765893231,215,0 +170765893279,215,0 +170765893327,216,0 +170765893375,215,0 +170765893423,215,0 +170765893473,213,0 +170765893522,213,0 +170765893570,213,0 +170765893618,213,0 +170765893666,214,0 +170765893714,214,0 +170765893763,214,0 +170765893813,214,0 +170765893862,214,0 +170765893912,215,0 +170765893960,214,0 +170765894009,215,0 +170765894057,215,0 +170765894107,215,0 +170765894156,215,0 +170765894204,215,0 +170765894252,216,0 +170765894300,216,0 +170765894348,215,0 +170765894396,214,0 +170765894444,213,0 +170765894493,213,0 +170765894543,214,0 +170765894591,214,0 +170765894639,214,0 +170765894687,214,0 +170765894735,214,0 +170765894784,214,0 +170765894832,214,0 +170765894881,214,0 +170765894929,215,0 +170765894979,215,0 +170765895027,215,0 +170765895075,215,0 +170765895123,215,0 +170765895172,215,0 +170765895220,215,0 +170765895270,216,0 +170765895318,215,0 +170765895365,213,0 +170765895413,213,0 +170765895461,213,0 +170765895509,214,0 +170765895559,214,0 +170765895607,214,0 +170765895655,214,0 +170765895703,214,0 +170765895752,214,0 +170765895802,214,0 +170765895850,215,0 +170765895899,215,0 +170765895947,215,0 +170765895995,215,0 +170765896045,215,0 +170765896093,216,0 +170765896142,216,0 +170765896190,215,0 +170765896238,215,0 +170765896286,214,0 +170765896334,213,0 +170765896382,213,0 +170765896430,213,0 +170765896479,213,0 +170765896527,214,0 +170765896575,214,0 +170765896623,214,0 +170765896673,214,0 +170765896721,214,0 +170765896768,214,0 +170765896818,215,0 +170765896868,215,0 +170765896915,215,0 +170765896965,215,0 +170765897013,215,0 +170765897061,215,0 +170765897108,215,0 +170765897156,215,0 +170765897204,215,0 +170765897252,214,0 +170765897300,213,0 +170765897348,213,0 +170765897396,213,0 +170765897443,213,0 +170765897493,214,0 +170765897541,214,0 +170765897589,214,0 +170765897636,214,0 +170765897684,214,0 +170765897732,215,0 +170765897780,215,0 +170765897829,215,0 +170765897877,215,0 +170765897925,215,0 +170765897973,215,0 +170765898021,215,0 +170765898069,215,0 +170765898119,215,0 +170765898168,214,0 +170765898217,213,0 +170765898265,213,0 +170765898315,213,0 +170765898363,213,0 +170765898411,213,0 +170765898459,213,0 +170765898508,214,0 +170765898556,214,0 +170765898606,214,0 +170765898655,214,0 +170765898705,214,0 +170765898754,215,0 +170765898802,215,0 +170765898850,215,0 +170765898900,215,0 +170765898949,215,0 +170765898997,215,0 +170765899045,215,0 +170765899093,215,0 +170765899141,213,0 +170765899189,213,0 +170765899237,213,0 +170765899285,213,0 +170765899333,213,0 +170765899381,214,0 +170765899429,214,0 +170765899477,214,0 +170765899525,214,0 +170765899572,214,0 +170765899622,214,0 +170765899672,214,0 +170765899720,215,0 +170765899769,215,0 +170765899819,215,0 +170765899867,215,0 +170765899914,215,0 +170765899964,215,0 +170765900012,215,0 +170765900060,214,0 +170765900108,213,0 +170765900157,213,0 +170765900207,213,0 +170765900255,213,0 +170765900303,213,0 +170765900351,214,0 +170765900400,214,0 +170765900450,214,0 +170765900498,214,0 +170765900547,214,0 +170765900597,214,0 +170765900645,215,0 +170765900694,215,0 +170765900742,215,0 +170765900792,215,0 +170765900840,215,0 +170765900889,215,0 +170765900939,215,0 +170765900987,215,0 +170765901035,214,0 +170765901083,213,0 +170765901131,213,0 +170765901180,214,0 +170765901228,213,0 +170765901276,214,0 +170765901324,214,0 +170765901372,214,0 +170765901422,214,0 +170765901470,214,0 +170765901517,214,0 +170765901565,215,0 +170765901613,215,0 +170765901661,215,0 +170765901709,215,0 +170765901757,215,0 +170765901805,215,0 +170765901853,215,0 +170765901900,215,0 +170765901948,214,0 +170765901996,213,0 +170765902044,213,0 +170765902092,213,0 +170765902140,213,0 +170765902188,213,0 +170765902235,214,0 +170765902283,214,0 +170765902331,214,0 +170765902379,214,0 +170765902427,214,0 +170765902475,215,0 +170765902524,214,0 +170765902572,215,0 +170765902620,215,0 +170765902668,215,0 +170765902716,215,0 +170765902764,215,0 +170765902813,215,0 +170765902861,215,0 +170765902909,214,0 +170765902957,213,0 +170765903004,213,0 +170765903052,213,0 +170765903102,213,0 +170765903150,214,0 +170765903198,214,0 +170765903245,214,0 +170765903293,214,0 +170765903343,214,0 +170765903392,215,0 +170765903442,215,0 +170765903489,215,0 +170765903539,215,0 +170765903588,215,0 +170765903636,215,0 +170765903684,215,0 +170765903732,215,0 +170765903782,215,0 +170765903830,215,0 +170765903878,213,0 +170765903925,214,0 +170765903975,214,0 +170765904024,214,0 +170765904072,214,0 +170765904120,214,0 +170765904168,214,0 +170765904216,215,0 +170765904264,215,0 +170765904312,215,0 +170765904361,215,0 +170765904409,215,0 +170765904457,215,0 +170765904505,215,0 +170765904555,215,0 +170765904602,215,0 +170765904652,216,0 +170765904702,216,0 +170765904749,216,0 +170765904797,214,0 +170765904847,213,0 +170765904896,214,0 +170765904944,214,0 +170765904992,214,0 +170765905040,214,0 +170765905090,214,0 +170765905139,214,0 +170765905187,215,0 +170765905236,215,0 +170765905284,215,0 +170765905334,215,0 +170765905382,215,0 +170765905430,215,0 +170765905479,215,0 +170765905527,214,0 +170765905577,215,0 +170765905625,215,0 +170765905673,215,0 +170765905722,215,0 +170765905770,214,0 +170765905818,214,0 +170765905866,214,0 +170765905914,214,0 +170765905962,214,0 +170765906010,214,0 +170765906059,214,0 +170765906109,215,0 +170765906157,214,0 +170765906205,215,0 +170765906254,215,0 +170765906302,215,0 +170765906350,215,0 +170765906400,215,0 +170765906448,215,0 +170765906495,215,0 +170765906545,216,0 +170765906593,215,0 +170765906641,215,0 +170765906690,214,0 +170765906740,214,0 +170765906789,214,0 +170765906837,214,0 +170765906887,214,0 +170765906935,214,0 +170765906983,214,0 +170765907032,214,0 +170765907080,214,0 +170765907129,215,0 +170765907179,215,0 +170765907227,215,0 +170765907276,215,0 +170765907324,215,0 +170765907374,215,0 +170765907423,215,0 +170765907473,215,0 +170765907522,216,0 +170765907570,216,0 +170765907618,216,0 +170765907668,214,0 +170765907716,214,0 +170765907764,214,0 +170765907812,214,0 +170765907861,214,0 +170765907909,214,0 +170765907957,214,0 +170765908005,215,0 +170765908052,215,0 +170765908100,215,0 +170765908148,215,0 +170765908196,215,0 +170765908244,215,0 +170765908292,215,0 +170765908340,216,0 +170765908388,215,0 +170765908437,216,0 +170765908485,216,0 +170765908533,216,0 +170765908581,214,0 +170765908629,213,0 +170765908677,214,0 +170765908725,214,0 +170765908773,214,0 +170765908822,214,0 +170765908870,214,0 +170765908918,214,0 +170765908966,214,0 +170765909014,215,0 +170765909063,215,0 +170765909111,215,0 +170765909159,215,0 +170765909207,216,0 +170765909255,216,0 +170765909303,215,0 +170765909352,216,0 +170765909400,215,0 +170765909448,216,0 +170765909496,215,0 +170765909544,214,0 +170765909592,214,0 +170765909640,214,0 +170765909689,214,0 +170765909737,214,0 +170765909785,214,0 +170765909833,214,0 +170765909881,215,0 +170765909929,214,0 +170765909978,215,0 +170765910028,215,0 +170765910076,215,0 +170765910125,215,0 +170765910173,216,0 +170765910221,216,0 +170765910271,216,0 +170765910320,216,0 +170765910368,216,0 +170765910416,215,0 +170765910464,215,0 +170765910513,214,0 +170765910561,214,0 +170765910609,214,0 +170765910659,214,0 +170765910707,214,0 +170765910755,214,0 +170765910804,214,0 +170765910852,214,0 +170765910900,214,0 +170765910950,215,0 +170765910998,215,0 +170765911045,215,0 +170765911093,215,0 +170765911141,215,0 +170765911189,215,0 +170765911237,215,0 +170765911285,215,0 +170765911333,215,0 +170765911381,215,0 +170765911429,214,0 +170765911478,213,0 +170765911526,213,0 +170765911574,213,0 +170765911624,214,0 +170765911672,214,0 +170765911720,214,0 +170765911768,214,0 +170765911816,214,0 +170765911864,214,0 +170765911913,214,0 +170765911963,215,0 +170765912011,215,0 +170765912060,215,0 +170765912110,215,0 +170765912159,215,0 +170765912209,215,0 +170765912258,215,0 +170765912307,215,0 +170765912355,214,0 +170765912403,214,0 +170765912453,213,0 +170765912502,213,0 +170765912552,214,0 +170765912600,214,0 +170765912648,214,0 +170765912696,214,0 +170765912744,214,0 +170765912791,215,0 +170765912839,214,0 +170765912887,214,0 +170765912935,215,0 +170765912983,215,0 +170765913033,215,0 +170765913081,215,0 +170765913129,215,0 +170765913178,215,0 +170765913227,215,0 +170765913275,215,0 +170765913323,215,0 +170765913371,213,0 +170765913419,213,0 +170765913467,214,0 +170765913515,214,0 +170765913563,214,0 +170765913612,214,0 +170765913660,214,0 +170765913708,214,0 +170765913756,215,0 +170765913806,215,0 +170765913855,214,0 +170765913905,215,0 +170765913954,215,0 +170765914002,215,0 +170765914052,215,0 +170765914100,215,0 +170765914149,215,0 +170765914199,216,0 +170765914248,215,0 +170765914296,213,0 +170765914344,213,0 +170765914392,214,0 +170765914441,214,0 +170765914489,214,0 +170765914537,214,0 +170765914587,214,0 +170765914636,214,0 +170765914684,215,0 +170765914732,215,0 +170765914782,215,0 +170765914831,215,0 +170765914881,215,0 +170765914929,215,0 +170765914978,215,0 +170765915026,216,0 +170765915074,216,0 +170765915122,216,0 +170765915172,215,0 +170765915219,214,0 +170765915269,214,0 +170765915318,214,0 +170765915368,214,0 +170765915416,214,0 +170765915464,214,0 +170765915512,214,0 +170765915561,214,0 +170765915609,215,0 +170765915657,215,0 +170765915705,215,0 +170765915753,215,0 +170765915801,215,0 +170765915849,215,0 +170765915897,215,0 +170765915945,215,0 +170765915993,215,0 +170765916040,215,0 +170765916090,215,0 +170765916139,215,0 +170765916189,213,0 +170765916239,214,0 +170765916287,214,0 +170765916335,214,0 +170765916382,214,0 +170765916430,214,0 +170765916478,214,0 +170765916528,214,0 +170765916576,214,0 +170765916624,215,0 +170765916672,215,0 +170765916721,215,0 +170765916769,215,0 +170765916819,215,0 +170765916866,215,0 +170765916914,215,0 +170765916962,215,0 +170765917012,215,0 +170765917061,215,0 +170765917109,214,0 +170765917157,213,0 +170765917205,213,0 +170765917255,213,0 +170765917303,213,0 +170765917351,214,0 +170765917400,214,0 +170765917450,214,0 +170765917498,214,0 +170765917546,214,0 +170765917594,214,0 +170765917643,215,0 +170765917691,215,0 +170765917739,215,0 +170765917787,215,0 +170765917835,215,0 +170765917883,215,0 +170765917932,215,0 +170765917980,215,0 +170765918028,216,0 +170765918078,213,0 +170765918126,213,0 +170765918174,214,0 +170765918222,214,0 +170765918269,214,0 +170765918319,213,0 +170765918367,214,0 +170765918415,214,0 +170765918463,214,0 +170765918511,215,0 +170765918559,215,0 +170765918607,215,0 +170765918655,215,0 +170765918703,215,0 +170765918752,215,0 +170765918800,215,0 +170765918850,215,0 +170765918898,215,0 +170765918946,215,0 +170765918993,214,0 +170765919041,213,0 +170765919089,213,0 +170765919139,214,0 +170765919187,214,0 +170765919236,214,0 +170765919286,214,0 +170765919334,214,0 +170765919383,214,0 +170765919433,214,0 +170765919480,214,0 +170765919530,215,0 +170765919578,215,0 +170765919627,215,0 +170765919675,215,0 +170765919723,215,0 +170765919771,215,0 +170765919819,215,0 +170765919867,215,0 +170765919917,215,0 +170765919965,214,0 +170765920014,213,0 +170765920062,214,0 +170765920110,213,0 +170765920160,213,0 +170765920207,213,0 +170765920255,214,0 +170765920303,214,0 +170765920353,214,0 +170765920402,214,0 +170765920450,214,0 +170765920498,214,0 +170765920546,214,0 +170765920596,215,0 +170765920645,215,0 +170765920695,215,0 +170765920743,215,0 +170765920790,215,0 +170765920838,215,0 +170765920886,214,0 +170765920934,213,0 +170765920984,213,0 +170765921032,214,0 +170765921081,214,0 +170765921129,213,0 +170765921177,213,0 +170765921226,213,0 +170765921274,214,0 +170765921322,214,0 +170765921372,214,0 +170765921420,214,0 +170765921468,214,0 +170765921517,215,0 +170765921565,215,0 +170765921614,215,0 +170765921662,215,0 +170765921710,215,0 +170765921758,215,0 +170765921807,215,0 +170765921855,214,0 +170765921903,213,0 +170765921951,213,0 +170765921999,213,0 +170765922048,213,0 +170765922098,214,0 +170765922146,214,0 +170765922194,214,0 +170765922243,214,0 +170765922291,214,0 +170765922339,214,0 +170765922387,214,0 +170765922436,214,0 +170765922484,215,0 +170765922532,215,0 +170765922580,215,0 +170765922628,215,0 +170765922677,215,0 +170765922727,215,0 +170765922775,214,0 +170765922822,213,0 +170765922870,213,0 +170765922918,213,0 +170765922968,213,0 +170765923016,214,0 +170765923065,213,0 +170765923113,213,0 +170765923162,214,0 +170765923210,214,0 +170765923260,214,0 +170765923308,214,0 +170765923357,215,0 +170765923407,214,0 +170765923455,215,0 +170765923502,215,0 +170765923552,215,0 +170765923600,215,0 +170765923648,215,0 +170765923695,216,0 +170765923745,214,0 +170765923794,213,0 +170765923844,213,0 +170765923892,214,0 +170765923940,214,0 +170765923988,214,0 +170765924035,214,0 +170765924083,214,0 +170765924131,214,0 +170765924179,214,0 +170765924227,215,0 +170765924275,215,0 +170765924323,215,0 +170765924371,215,0 +170765924421,215,0 +170765924469,216,0 +170765924517,215,0 +170765924565,215,0 +170765924612,216,0 +170765924660,215,0 +170765924708,213,0 +170765924758,213,0 +170765924806,213,0 +170765924855,213,0 +170765924903,214,0 +170765924953,213,0 +170765925000,214,0 +170765925050,214,0 +170765925098,214,0 +170765925146,214,0 +170765925195,214,0 +170765925245,214,0 +170765925294,215,0 +170765925344,215,0 +170765925393,215,0 +170765925441,215,0 +170765925491,215,0 +170765925539,215,0 +170765925587,215,0 +170765925634,214,0 +170765925682,213,0 +170765925730,213,0 +170765925778,214,0 +170765925826,214,0 +170765925874,213,0 +170765925922,214,0 +170765925969,213,0 +170765926017,214,0 +170765926065,214,0 +170765926113,214,0 +170765926161,214,0 +170765926209,214,0 +170765926257,214,0 +170765926305,215,0 +170765926353,214,0 +170765926402,215,0 +170765926450,215,0 +170765926500,215,0 +170765926548,215,0 +170765926595,214,0 +170765926643,213,0 +170765926693,213,0 +170765926741,213,0 +170765926789,214,0 +170765926837,213,0 +170765926885,214,0 +170765926933,214,0 +170765926981,214,0 +170765927030,214,0 +170765927078,214,0 +170765927126,214,0 +170765927174,215,0 +170765927223,215,0 +170765927271,214,0 +170765927319,215,0 +170765927369,215,0 +170765927417,215,0 +170765927465,215,0 +170765927513,215,0 +170765927560,213,0 +170765927610,214,0 +170765927658,213,0 +170765927706,214,0 +170765927755,214,0 +170765927805,214,0 +170765927854,214,0 +170765927902,214,0 +170765927950,214,0 +170765928000,214,0 +170765928048,215,0 +170765928096,215,0 +170765928145,215,0 +170765928193,215,0 +170765928241,215,0 +170765928290,215,0 +170765928339,216,0 +170765928387,215,0 +170765928435,215,0 +170765928483,214,0 +170765928531,214,0 +170765928579,214,0 +170765928627,214,0 +170765928674,214,0 +170765928722,215,0 +170765928770,215,0 +170765928818,215,0 +170765928866,215,0 +170765928915,215,0 +170765928965,215,0 +170765929014,215,0 +170765929062,215,0 +170765929111,216,0 +170765929159,215,0 +170765929209,215,0 +170765929257,216,0 +170765929306,216,0 +170765929354,214,0 +170765929404,215,0 +170765929453,214,0 +170765929501,214,0 +170765929549,214,0 +170765929599,214,0 +170765929647,214,0 +170765929694,215,0 +170765929742,215,0 +170765929790,215,0 +170765929838,215,0 +170765929886,215,0 +170765929934,215,0 +170765929982,215,0 +170765930030,216,0 +170765930077,215,0 +170765930125,215,0 +170765930175,215,0 +170765930223,215,0 +170765930270,215,0 +170765930318,215,0 +170765930366,214,0 +170765930414,214,0 +170765930462,214,0 +170765930510,214,0 +170765930558,214,0 +170765930606,214,0 +170765930655,214,0 +170765930703,214,0 +170765930751,215,0 +170765930799,215,0 +170765930849,215,0 +170765930897,215,0 +170765930945,215,0 +170765930993,215,0 +170765931041,215,0 +170765931088,215,0 +170765931136,216,0 +170765931184,216,0 +170765931232,215,0 +170765931280,216,0 +170765931330,214,0 +170765931378,214,0 +170765931426,214,0 +170765931474,214,0 +170765931522,214,0 +170765931570,214,0 +170765931618,214,0 +170765931667,214,0 +170765931715,215,0 +170765931763,215,0 +170765931811,215,0 +170765931860,215,0 +170765931910,215,0 +170765931958,215,0 +170765932007,216,0 +170765932057,216,0 +170765932106,216,0 +170765932154,216,0 +170765932202,215,0 +170765932252,215,0 +170765932301,214,0 +170765932349,214,0 +170765932397,214,0 +170765932445,214,0 +170765932493,214,0 +170765932541,214,0 +170765932589,215,0 +170765932638,215,0 +170765932686,215,0 +170765932734,215,0 +170765932782,215,0 +170765932830,215,0 +170765932878,215,0 +170765932928,216,0 +170765932977,215,0 +170765933025,215,0 +170765933075,215,0 +170765933122,215,0 +170765933170,216,0 +170765933218,214,0 +170765933268,214,0 +170765933317,214,0 +170765933365,214,0 +170765933413,214,0 +170765933463,214,0 +170765933511,215,0 +170765933560,215,0 +170765933608,215,0 +170765933656,215,0 +170765933705,215,0 +170765933753,215,0 +170765933803,215,0 +170765933851,216,0 +170765933899,216,0 +170765933947,216,0 +170765933995,216,0 +170765934043,215,0 +170765934091,215,0 +170765934139,215,0 +170765934187,214,0 +170765934236,214,0 +170765934284,214,0 +170765934332,214,0 +170765934381,214,0 +170765934429,214,0 +170765934479,215,0 +170765934527,215,0 +170765934576,215,0 +170765934626,215,0 +170765934674,215,0 +170765934723,215,0 +170765934771,216,0 +170765934821,216,0 +170765934870,216,0 +170765934918,216,0 +170765934966,216,0 +170765935016,215,0 +170765935065,215,0 +170765935113,214,0 +170765935163,213,0 +170765935212,213,0 +170765935260,213,0 +170765935309,214,0 +170765935359,214,0 +170765935408,214,0 +170765935458,214,0 +170765935507,214,0 +170765935555,214,0 +170765935603,214,0 +170765935651,214,0 +170765935699,215,0 +170765935747,215,0 +170765935797,215,0 +170765935845,215,0 +170765935893,215,0 +170765935940,215,0 +170765935988,216,0 +170765936036,215,0 +170765936084,214,0 +170765936132,213,0 +170765936180,213,0 +170765936230,214,0 +170765936279,214,0 +170765936327,214,0 +170765936377,214,0 +170765936425,214,0 +170765936473,214,0 +170765936522,215,0 +170765936572,215,0 +170765936620,215,0 +170765936669,215,0 +170765936717,215,0 +170765936765,216,0 +170765936815,215,0 +170765936862,215,0 +170765936910,215,0 +170765936958,215,0 +170765937008,214,0 +170765937056,214,0 +170765937104,213,0 +170765937152,213,0 +170765937201,213,0 +170765937251,214,0 +170765937298,214,0 +170765937346,214,0 +170765937394,214,0 +170765937442,214,0 +170765937490,214,0 +170765937540,215,0 +170765937589,215,0 +170765937639,215,0 +170765937687,215,0 +170765937735,215,0 +170765937783,215,0 +170765937831,215,0 +170765937880,215,0 +170765937930,215,0 +170765937979,214,0 +170765938029,213,0 +170765938078,213,0 +170765938126,214,0 +170765938174,214,0 +170765938222,214,0 +170765938270,214,0 +170765938317,214,0 +170765938367,214,0 +170765938416,214,0 +170765938464,215,0 +170765938512,215,0 +170765938562,215,0 +170765938611,215,0 +170765938659,215,0 +170765938707,215,0 +170765938757,215,0 +170765938806,215,0 +170765938854,216,0 +170765938902,214,0 +170765938951,213,0 +170765939001,214,0 +170765939050,213,0 +170765939098,214,0 +170765939146,213,0 +170765939194,214,0 +170765939242,214,0 +170765939292,214,0 +170765939341,214,0 +170765939389,214,0 +170765939437,215,0 +170765939485,215,0 +170765939533,215,0 +170765939581,215,0 +170765939629,215,0 +170765939677,215,0 +170765939725,215,0 +170765939773,216,0 +170765939821,215,0 +170765939869,214,0 +170765939916,213,0 +170765939964,213,0 +170765940012,213,0 +170765940060,214,0 +170765940108,213,0 +170765940156,214,0 +170765940204,214,0 +170765940253,214,0 +170765940302,214,0 +170765940350,214,0 +170765940398,215,0 +170765940448,215,0 +170765940495,215,0 +170765940543,215,0 +170765940591,215,0 +170765940639,215,0 +170765940687,215,0 +170765940735,215,0 +170765940783,215,0 +170765940830,214,0 +170765940878,213,0 +170765940926,213,0 +170765940974,214,0 +170765941022,213,0 +170765941071,214,0 +170765941119,214,0 +170765941167,214,0 +170765941215,214,0 +170765941263,214,0 +170765941311,214,0 +170765941359,214,0 +170765941407,215,0 +170765941456,215,0 +170765941504,215,0 +170765941554,215,0 +170765941602,215,0 +170765941650,215,0 +170765941699,216,0 +170765941749,214,0 +170765941798,214,0 +170765941846,214,0 +170765941894,214,0 +170765941942,214,0 +170765941991,214,0 +170765942039,214,0 +170765942087,214,0 +170765942135,214,0 +170765942183,214,0 +170765942233,214,0 +170765942280,215,0 +170765942328,215,0 +170765942376,215,0 +170765942426,215,0 +170765942474,215,0 +170765942521,215,0 +170765942569,216,0 +170765942617,216,0 +170765942665,215,0 +170765942713,213,0 +170765942761,213,0 +170765942809,213,0 +170765942858,213,0 +170765942906,214,0 +170765942954,214,0 +170765943003,214,0 +170765943051,214,0 +170765943099,214,0 +170765943149,214,0 +170765943197,214,0 +170765943244,215,0 +170765943292,215,0 +170765943340,215,0 +170765943388,215,0 +170765943436,215,0 +170765943484,215,0 +170765943532,215,0 +170765943580,215,0 +170765943629,215,0 +170765943677,214,0 +170765943725,213,0 +170765943773,214,0 +170765943821,213,0 +170765943868,213,0 +170765943916,214,0 +170765943964,214,0 +170765944014,214,0 +170765944061,214,0 +170765944109,214,0 +170765944157,214,0 +170765944207,215,0 +170765944256,215,0 +170765944304,215,0 +170765944352,215,0 +170765944401,215,0 +170765944451,215,0 +170765944499,216,0 +170765944547,215,0 +170765944595,214,0 +170765944642,213,0 +170765944690,213,0 +170765944738,214,0 +170765944786,213,0 +170765944834,214,0 +170765944883,214,0 +170765944933,214,0 +170765944981,214,0 +170765945029,214,0 +170765945078,215,0 +170765945126,215,0 +170765945174,215,0 +170765945223,215,0 +170765945271,215,0 +170765945319,215,0 +170765945369,216,0 +170765945417,216,0 +170765945465,216,0 +170765945514,215,0 +170765945564,213,0 +170765945612,213,0 +170765945660,213,0 +170765945709,213,0 +170765945757,213,0 +170765945805,213,0 +170765945855,214,0 +170765945903,214,0 +170765945950,214,0 +170765945998,214,0 +170765946048,214,0 +170765946097,214,0 +170765946145,215,0 +170765946193,215,0 +170765946243,215,0 +170765946291,215,0 +170765946339,215,0 +170765946388,215,0 +170765946436,215,0 +170765946484,214,0 +170765946533,213,0 +170765946581,213,0 +170765946629,214,0 +170765946679,214,0 +170765946727,214,0 +170765946776,214,0 +170765946824,214,0 +170765946874,214,0 +170765946923,215,0 +170765946971,215,0 +170765947021,215,0 +170765947070,215,0 +170765947118,215,0 +170765947166,215,0 +170765947214,215,0 +170765947262,215,0 +170765947310,215,0 +170765947358,216,0 +170765947406,215,0 +170765947454,214,0 +170765947502,213,0 +170765947550,213,0 +170765947598,214,0 +170765947646,213,0 +170765947694,214,0 +170765947743,214,0 +170765947793,214,0 +170765947840,214,0 +170765947890,214,0 +170765947938,214,0 +170765947987,215,0 +170765948035,215,0 +170765948083,215,0 +170765948131,215,0 +170765948181,215,0 +170765948229,216,0 +170765948276,215,0 +170765948324,216,0 +170765948372,215,0 +170765948420,214,0 +170765948470,213,0 +170765948519,213,0 +170765948567,214,0 +170765948615,214,0 +170765948663,214,0 +170765948711,214,0 +170765948759,214,0 +170765948808,214,0 +170765948858,214,0 +170765948905,215,0 +170765948953,215,0 +170765949001,215,0 +170765949049,215,0 +170765949097,215,0 +170765949147,215,0 +170765949195,215,0 +170765949243,215,0 +170765949290,215,0 +170765949338,214,0 +170765949388,213,0 +170765949436,213,0 +170765949485,213,0 +170765949535,214,0 +170765949583,214,0 +170765949632,214,0 +170765949682,214,0 +170765949730,214,0 +170765949777,214,0 +170765949825,214,0 +170765949873,215,0 +170765949921,215,0 +170765949969,215,0 +170765950017,215,0 +170765950065,215,0 +170765950113,215,0 +170765950161,215,0 +170765950208,215,0 +170765950256,215,0 +170765950304,213,0 +170765950352,213,0 +170765950400,213,0 +170765950448,214,0 +170765950498,214,0 +170765950546,214,0 +170765950593,214,0 +170765950643,214,0 +170765950692,214,0 +170765950740,214,0 +170765950790,214,0 +170765950839,215,0 +170765950887,215,0 +170765950937,215,0 +170765950985,215,0 +170765951033,215,0 +170765951081,215,0 +170765951129,215,0 +170765951177,215,0 +170765951225,214,0 +170765951273,213,0 +170765951321,213,0 +170765951368,213,0 +170765951416,214,0 +170765951464,214,0 +170765951512,213,0 +170765951562,214,0 +170765951611,214,0 +170765951659,214,0 +170765951707,214,0 +170765951757,214,0 +170765951805,215,0 +170765951853,214,0 +170765951902,215,0 +170765951951,215,0 +170765951999,215,0 +170765952047,215,0 +170765952095,215,0 +170765952145,215,0 +170765952192,214,0 +170765952240,213,0 +170765952290,213,0 +170765952339,214,0 +170765952389,214,0 +170765952437,214,0 +170765952485,214,0 +170765952533,214,0 +170765952580,214,0 +170765952628,214,0 +170765952678,214,0 +170765952726,215,0 +170765952774,215,0 +170765952821,215,0 +170765952869,215,0 +170765952919,215,0 +170765952968,215,0 +170765953016,215,0 +170765953064,215,0 +170765953114,215,0 +170765953161,213,0 +170765953209,213,0 +170765953257,214,0 +170765953305,214,0 +170765953353,214,0 +170765953403,214,0 +170765953451,214,0 +170765953499,214,0 +170765953548,214,0 +170765953596,215,0 +170765953644,215,0 +170765953693,215,0 +170765953743,215,0 +170765953793,215,0 +170765953841,215,0 +170765953890,215,0 +170765953938,215,0 +170765953988,216,0 +170765954037,215,0 +170765954085,214,0 +170765954135,213,0 +170765954183,213,0 +170765954231,214,0 +170765954278,213,0 +170765954326,214,0 +170765954374,214,0 +170765954422,214,0 +170765954472,214,0 +170765954521,214,0 +170765954569,215,0 +170765954617,215,0 +170765954667,215,0 +170765954715,215,0 +170765954763,215,0 +170765954812,215,0 +170765954862,215,0 +170765954909,215,0 +170765954957,215,0 +170765955005,215,0 +170765955053,214,0 +170765955101,213,0 +170765955149,213,0 +170765955197,213,0 +170765955245,213,0 +170765955292,213,0 +170765955340,213,0 +170765955388,214,0 +170765955436,214,0 +170765955484,214,0 +170765955532,214,0 +170765955579,214,0 +170765955627,214,0 +170765955675,214,0 +170765955723,215,0 +170765955771,215,0 +170765955819,215,0 +170765955867,215,0 +170765955914,215,0 +170765955962,215,0 +170765956010,213,0 +170765956058,213,0 +170765956106,213,0 +170765956154,213,0 +170765956202,213,0 +170765956250,214,0 +170765956298,214,0 +170765956345,214,0 +170765956393,213,0 +170765956441,214,0 +170765956489,215,0 +170765956537,214,0 +170765956586,215,0 +170765956634,215,0 +170765956683,214,0 +170765956731,215,0 +170765956779,215,0 +170765956827,215,0 +170765956875,215,0 +170765956923,214,0 +170765956971,214,0 +170765957018,213,0 +170765957066,214,0 +170765957114,214,0 +170765957162,214,0 +170765957209,214,0 +170765957257,214,0 +170765957305,214,0 +170765957353,214,0 +170765957401,214,0 +170765957448,214,0 +170765957496,215,0 +170765957544,215,0 +170765957592,215,0 +170765957640,215,0 +170765957687,215,0 +170765957735,215,0 +170765957783,215,0 +170765957831,216,0 +170765957879,214,0 +170765957928,214,0 +170765957976,214,0 +170765958024,214,0 +170765958072,214,0 +170765958120,214,0 +170765958167,214,0 +170765958215,214,0 +170765958263,214,0 +170765958311,215,0 +170765958360,215,0 +170765958410,215,0 +170765958458,215,0 +170765958506,215,0 +170765958553,215,0 +170765958601,215,0 +170765958649,215,0 +170765958699,215,0 +170765958746,215,0 +170765958794,215,0 +170765958842,214,0 +170765958890,214,0 +170765958940,214,0 +170765958988,214,0 +170765959036,214,0 +170765959083,214,0 +170765959133,214,0 +170765959181,215,0 +170765959230,215,0 +170765959278,215,0 +170765959326,215,0 +170765959374,215,0 +170765959422,216,0 +170765959470,215,0 +170765959519,215,0 +170765959567,215,0 +170765959615,215,0 +170765959662,215,0 +170765959712,215,0 +170765959760,215,0 +170765959808,214,0 +170765959855,214,0 +170765959903,214,0 +170765959951,214,0 +170765959999,214,0 +170765960047,214,0 +170765960095,214,0 +170765960142,215,0 +170765960190,215,0 +170765960238,215,0 +170765960286,215,0 +170765960334,215,0 +170765960382,215,0 +170765960430,215,0 +170765960478,216,0 +170765960525,216,0 +170765960573,215,0 +170765960623,216,0 +170765960671,215,0 +170765960720,215,0 +170765960768,213,0 +170765960817,213,0 +170765960865,214,0 +170765960913,214,0 +170765960961,214,0 +170765961009,214,0 +170765961057,214,0 +170765961104,214,0 +170765961152,214,0 +170765961200,215,0 +170765961248,215,0 +170765961296,215,0 +170765961344,215,0 +170765961391,215,0 +170765961439,215,0 +170765961487,215,0 +170765961535,216,0 +170765961582,215,0 +170765961632,215,0 +170765961680,215,0 +170765961727,214,0 +170765961775,214,0 +170765961823,214,0 +170765961871,214,0 +170765961919,214,0 +170765961967,214,0 +170765962014,214,0 +170765962062,214,0 +170765962110,214,0 +170765962158,214,0 +170765962206,215,0 +170765962253,215,0 +170765962301,215,0 +170765962349,215,0 +170765962397,215,0 +170765962445,216,0 +170765962493,215,0 +170765962542,216,0 +170765962590,215,0 +170765962638,214,0 +170765962686,213,0 +170765962734,213,0 +170765962782,214,0 +170765962829,214,0 +170765962877,214,0 +170765962925,214,0 +170765962973,214,0 +170765963021,214,0 +170765963068,215,0 +170765963116,215,0 +170765963166,215,0 +170765963214,215,0 +170765963261,215,0 +170765963309,215,0 +170765963357,215,0 +170765963405,215,0 +170765963453,215,0 +170765963503,216,0 +170765963552,215,0 +170765963600,214,0 +170765963649,213,0 +170765963697,213,0 +170765963747,214,0 +170765963795,214,0 +170765963844,214,0 +170765963894,214,0 +170765963942,214,0 +170765963989,214,0 +170765964037,215,0 +170765964085,214,0 +170765964133,215,0 +170765964181,215,0 +170765964229,215,0 +170765964277,215,0 +170765964325,215,0 +170765964373,215,0 +170765964421,215,0 +170765964470,215,0 +170765964518,215,0 +170765964566,213,0 +170765964614,214,0 +170765964663,213,0 +170765964711,214,0 +170765964759,214,0 +170765964807,214,0 +170765964855,214,0 +170765964904,214,0 +170765964954,214,0 +170765965002,215,0 +170765965050,215,0 +170765965099,215,0 +170765965149,215,0 +170765965197,215,0 +170765965246,215,0 +170765965294,215,0 +170765965343,215,0 +170765965393,215,0 +170765965441,215,0 +170765965489,214,0 +170765965537,213,0 +170765965586,213,0 +170765965634,213,0 +170765965682,213,0 +170765965730,214,0 +170765965778,214,0 +170765965827,214,0 +170765965875,214,0 +170765965925,214,0 +170765965973,214,0 +170765966022,214,0 +170765966070,215,0 +170765966119,215,0 +170765966167,215,0 +170765966217,215,0 +170765966265,215,0 +170765966313,215,0 +170765966360,216,0 +170765966410,215,0 +170765966458,214,0 +170765966506,213,0 +170765966554,213,0 +170765966602,214,0 +170765966649,213,0 +170765966697,214,0 +170765966745,214,0 +170765966793,214,0 +170765966841,214,0 +170765966890,214,0 +170765966938,214,0 +170765966988,215,0 +170765967036,215,0 +170765967085,215,0 +170765967133,215,0 +170765967181,215,0 +170765967229,215,0 +170765967277,215,0 +170765967325,215,0 +170765967373,215,0 +170765967421,213,0 +170765967470,213,0 +170765967518,214,0 +170765967567,213,0 +170765967617,214,0 +170765967665,214,0 +170765967713,214,0 +170765967761,214,0 +170765967809,214,0 +170765967856,214,0 +170765967904,214,0 +170765967952,215,0 +170765968000,215,0 +170765968050,215,0 +170765968099,215,0 +170765968147,215,0 +170765968195,215,0 +170765968244,215,0 +170765968292,215,0 +170765968340,215,0 +170765968388,214,0 +170765968438,213,0 +170765968486,213,0 +170765968534,214,0 +170765968581,214,0 +170765968629,214,0 +170765968677,214,0 +170765968725,214,0 +170765968773,214,0 +170765968821,214,0 +170765968869,214,0 +170765968918,215,0 +170765968966,215,0 +170765969016,215,0 +170765969064,215,0 +170765969112,215,0 +170765969160,215,0 +170765969208,215,0 +170765969256,215,0 +170765969304,214,0 +170765969353,213,0 +170765969401,213,0 +170765969449,213,0 +170765969497,213,0 +170765969545,213,0 +170765969592,213,0 +170765969640,214,0 +170765969688,214,0 +170765969738,214,0 +170765969786,214,0 +170765969835,214,0 +170765969883,215,0 +170765969931,215,0 +170765969980,215,0 +170765970028,215,0 +170765970076,215,0 +170765970124,215,0 +170765970172,215,0 +170765970220,215,0 +170765970268,213,0 +170765970316,213,0 +170765970364,213,0 +170765970413,213,0 +170765970461,213,0 +170765970509,213,0 +170765970557,214,0 +170765970605,213,0 +170765970652,214,0 +170765970700,214,0 +170765970748,214,0 +170765970796,214,0 +170765970844,215,0 +170765970892,215,0 +170765970940,214,0 +170765970987,215,0 +170765971035,215,0 +170765971083,215,0 +170765971131,215,0 +170765971179,215,0 +170765971227,214,0 +170765971275,213,0 +170765971323,213,0 +170765971372,213,0 +170765971420,213,0 +170765971468,213,0 +170765971516,213,0 +170765971564,213,0 +170765971613,214,0 +170765971661,214,0 +170765971709,214,0 +170765971757,214,0 +170765971805,214,0 +170765971852,215,0 +170765971902,215,0 +170765971950,215,0 +170765971998,215,0 +170765972045,215,0 +170765972095,215,0 +170765972143,214,0 +170765972191,213,0 +170765972240,213,0 +170765972288,213,0 +170765972338,213,0 +170765972387,214,0 +170765972435,214,0 +170765972483,214,0 +170765972533,214,0 +170765972581,214,0 +170765972630,214,0 +170765972678,214,0 +170765972726,214,0 +170765972774,214,0 +170765972821,215,0 +170765972869,215,0 +170765972917,215,0 +170765972965,215,0 +170765973012,215,0 +170765973060,215,0 +170765973108,214,0 +170765973156,213,0 +170765973204,213,0 +170765973252,213,0 +170765973299,213,0 +170765973347,214,0 +170765973395,214,0 +170765973444,214,0 +170765973492,214,0 +170765973540,214,0 +170765973588,214,0 +170765973637,214,0 +170765973685,215,0 +170765973733,215,0 +170765973781,215,0 +170765973829,215,0 +170765973877,215,0 +170765973924,215,0 +170765973972,215,0 +170765974020,215,0 +170765974068,214,0 +170765974116,213,0 +170765974164,213,0 +170765974211,213,0 +170765974261,213,0 +170765974309,213,0 +170765974357,214,0 +170765974405,214,0 +170765974453,214,0 +170765974500,214,0 +170765974548,214,0 +170765974598,214,0 +170765974646,215,0 +170765974695,215,0 +170765974743,215,0 +170765974791,215,0 +170765974839,215,0 +170765974887,215,0 +170765974935,215,0 +170765974983,215,0 +170765975031,214,0 +170765975079,213,0 +170765975128,213,0 +170765975176,214,0 +170765975224,213,0 +170765975273,213,0 +170765975321,214,0 +170765975371,214,0 +170765975420,214,0 +170765975468,214,0 +170765975516,214,0 +170765975564,214,0 +170765975612,215,0 +170765975660,215,0 +170765975708,215,0 +170765975756,215,0 +170765975803,215,0 +170765975851,215,0 +170765975899,215,0 +170765975947,214,0 +170765975995,213,0 +170765976045,213,0 +170765976094,213,0 +170765976142,213,0 +170765976192,213,0 +170765976240,213,0 +170765976289,214,0 +170765976337,214,0 +170765976387,214,0 +170765976434,214,0 +170765976482,214,0 +170765976530,214,0 +170765976578,214,0 +170765976625,215,0 +170765976675,215,0 +170765976723,215,0 +170765976771,215,0 +170765976818,215,0 +170765976866,215,0 +170765976916,214,0 +170765976964,213,0 +170765977011,213,0 +170765977059,213,0 +170765977107,213,0 +170765977155,214,0 +170765977204,214,0 +170765977254,214,0 +170765977303,214,0 +170765977351,214,0 +170765977399,214,0 +170765977447,214,0 +170765977495,214,0 +170765977543,215,0 +170765977591,215,0 +170765977639,215,0 +170765977686,215,0 +170765977736,215,0 +170765977784,215,0 +170765977832,215,0 +170765977880,213,0 +170765977928,213,0 +170765977975,213,0 +170765978023,213,0 +170765978071,214,0 +170765978119,214,0 +170765978167,213,0 +170765978215,214,0 +170765978263,214,0 +170765978312,214,0 +170765978361,214,0 +170765978409,214,0 +170765978459,215,0 +170765978508,215,0 +170765978558,215,0 +170765978606,215,0 +170765978654,215,0 +170765978703,215,0 +170765978751,215,0 +170765978799,214,0 +170765978847,213,0 +170765978895,213,0 +170765978943,213,0 +170765978991,214,0 +170765979039,214,0 +170765979088,214,0 +170765979136,214,0 +170765979184,214,0 +170765979232,214,0 +170765979280,214,0 +170765979328,214,0 +170765979377,215,0 +170765979425,215,0 +170765979473,215,0 +170765979521,215,0 +170765979570,215,0 +170765979618,215,0 +170765979666,215,0 +170765979716,215,0 +170765979764,214,0 +170765979812,213,0 +170765979860,213,0 +170765979908,214,0 +170765979955,214,0 +170765980003,214,0 +170765980051,214,0 +170765980099,214,0 +170765980147,214,0 +170765980197,215,0 +170765980245,215,0 +170765980294,215,0 +170765980344,215,0 +170765980393,215,0 +170765980441,215,0 +170765980489,215,0 +170765980537,215,0 +170765980585,215,0 +170765980635,216,0 +170765980682,215,0 +170765980730,214,0 +170765980778,213,0 +170765980828,213,0 +170765980876,214,0 +170765980923,214,0 +170765980971,214,0 +170765981019,214,0 +170765981069,214,0 +170765981117,214,0 +170765981164,215,0 +170765981214,215,0 +170765981262,215,0 +170765981310,215,0 +170765981358,215,0 +170765981405,215,0 +170765981453,215,0 +170765981503,215,0 +170765981551,215,0 +170765981599,215,0 +170765981648,215,0 +170765981696,214,0 +170765981744,213,0 +170765981792,213,0 +170765981842,213,0 +170765981891,214,0 +170765981941,214,0 +170765981989,214,0 +170765982037,214,0 +170765982085,214,0 +170765982134,214,0 +170765982182,214,0 +170765982232,215,0 +170765982279,215,0 +170765982327,215,0 +170765982377,215,0 +170765982425,215,0 +170765982473,215,0 +170765982522,215,0 +170765982571,215,0 +170765982618,214,0 +170765982666,213,0 +170765982714,213,0 +170765982762,213,0 +170765982812,213,0 +170765982860,214,0 +170765982908,214,0 +170765982956,214,0 +170765983004,214,0 +170765983051,214,0 +170765983099,214,0 +170765983149,214,0 +170765983198,214,0 +170765983248,215,0 +170765983296,215,0 +170765983344,215,0 +170765983393,215,0 +170765983441,215,0 +170765983489,215,0 +170765983537,215,0 +170765983585,214,0 +170765983634,213,0 +170765983682,214,0 +170765983732,214,0 +170765983781,214,0 +170765983831,214,0 +170765983879,214,0 +170765983927,214,0 +170765983974,214,0 +170765984022,214,0 +170765984070,214,0 +170765984118,214,0 +170765984166,215,0 +170765984214,215,0 +170765984262,215,0 +170765984309,215,0 +170765984357,215,0 +170765984405,215,0 +170765984453,215,0 +170765984502,215,0 +170765984550,214,0 +170765984600,214,0 +170765984649,214,0 +170765984697,214,0 +170765984745,214,0 +170765984793,214,0 +170765984841,214,0 +170765984889,214,0 +170765984936,214,0 +170765984984,214,0 +170765985032,214,0 +170765985080,214,0 +170765985128,214,0 +170765985176,214,0 +170765985224,214,0 +170765985271,214,0 +170765985319,214,0 +170765985367,214,0 +170765985415,214,0 +170765985463,213,0 +170765985511,214,0 +170765985558,214,0 +170765985606,214,0 +170765985654,214,0 +170765985704,214,0 +170765985752,214,0 +170765985801,214,0 +170765985851,215,0 +170765985900,215,0 +170765985950,215,0 +170765985999,215,0 +170765986049,215,0 +170765986097,215,0 +170765986145,215,0 +170765986192,215,0 +170765986240,216,0 +170765986288,215,0 +170765986336,215,0 +170765986384,215,0 +170765986432,214,0 +170765986481,214,0 +170765986529,214,0 +170765986577,213,0 +170765986625,214,0 +170765986673,214,0 +170765986721,214,0 +170765986769,214,0 +170765986817,215,0 +170765986865,215,0 +170765986913,215,0 +170765986961,215,0 +170765987010,215,0 +170765987058,215,0 +170765987106,215,0 +170765987154,215,0 +170765987202,215,0 +170765987250,215,0 +170765987298,215,0 +170765987346,215,0 +170765987393,213,0 +170765987441,214,0 +170765987489,213,0 +170765987537,214,0 +170765987585,214,0 +170765987634,214,0 +170765987682,214,0 +170765987730,214,0 +170765987777,214,0 +170765987825,215,0 +170765987875,215,0 +170765987923,215,0 +170765987970,215,0 +170765988018,215,0 +170765988066,215,0 +170765988114,215,0 +170765988162,215,0 +170765988210,215,0 +170765988257,215,0 +170765988305,215,0 +170765988353,213,0 +170765988401,213,0 +170765988449,213,0 +170765988497,214,0 +170765988544,214,0 +170765988592,214,0 +170765988640,214,0 +170765988688,214,0 +170765988738,214,0 +170765988785,214,0 +170765988833,215,0 +170765988881,215,0 +170765988929,215,0 +170765988977,215,0 +170765989025,215,0 +170765989073,215,0 +170765989123,215,0 +170765989172,215,0 +170765989220,215,0 +170765989268,214,0 +170765989316,213,0 +170765989364,213,0 +170765989412,214,0 +170765989460,214,0 +170765989508,214,0 +170765989557,214,0 +170765989607,214,0 +170765989655,214,0 +170765989703,215,0 +170765989750,214,0 +170765989798,215,0 +170765989846,215,0 +170765989894,215,0 +170765989942,215,0 +170765989992,215,0 +170765990039,216,0 +170765990087,215,0 +170765990135,215,0 +170765990185,215,0 +170765990234,214,0 +170765990282,213,0 +170765990330,213,0 +170765990378,214,0 +170765990426,214,0 +170765990474,214,0 +170765990522,214,0 +170765990570,214,0 +170765990619,214,0 +170765990667,214,0 +170765990715,215,0 +170765990763,215,0 +170765990812,215,0 +170765990862,215,0 +170765990910,215,0 +170765990958,215,0 +170765991006,215,0 +170765991053,215,0 +170765991103,215,0 +170765991151,215,0 +170765991199,213,0 +170765991247,213,0 +170765991295,213,0 +170765991344,213,0 +170765991394,214,0 +170765991441,214,0 +170765991489,214,0 +170765991537,214,0 +170765991587,214,0 +170765991635,214,0 +170765991683,214,0 +170765991732,214,0 +170765991782,215,0 +170765991830,215,0 +170765991879,215,0 +170765991927,215,0 +170765991975,215,0 +170765992023,215,0 +170765992071,215,0 +170765992120,214,0 +170765992170,213,0 +170765992218,213,0 +170765992266,213,0 +170765992314,213,0 +170765992363,213,0 +170765992411,214,0 +170765992461,214,0 +170765992509,214,0 +170765992557,214,0 +170765992605,214,0 +170765992653,214,0 +170765992700,215,0 +170765992748,215,0 +170765992796,215,0 +170765992844,215,0 +170765992894,215,0 +170765992942,215,0 +170765992990,215,0 +170765993039,215,0 +170765993088,214,0 +170765993138,213,0 +170765993186,214,0 +170765993234,213,0 +170765993282,213,0 +170765993331,213,0 +170765993379,214,0 +170765993427,214,0 +170765993475,214,0 +170765993523,214,0 +170765993571,214,0 +170765993619,214,0 +170765993667,215,0 +170765993715,215,0 +170765993764,215,0 +170765993814,215,0 +170765993862,215,0 +170765993910,215,0 +170765993958,215,0 +170765994006,215,0 +170765994054,213,0 +170765994101,213,0 +170765994149,213,0 +170765994199,213,0 +170765994247,213,0 +170765994295,213,0 +170765994344,214,0 +170765994394,214,0 +170765994441,214,0 +170765994491,214,0 +170765994539,214,0 +170765994588,215,0 +170765994636,215,0 +170765994686,215,0 +170765994735,215,0 +170765994785,215,0 +170765994833,215,0 +170765994881,215,0 +170765994929,216,0 +170765994977,214,0 +170765995025,213,0 +170765995074,213,0 +170765995122,213,0 +170765995170,214,0 +170765995218,214,0 +170765995266,214,0 +170765995315,214,0 +170765995363,214,0 +170765995411,214,0 +170765995459,215,0 +170765995507,215,0 +170765995555,215,0 +170765995603,215,0 +170765995652,215,0 +170765995700,215,0 +170765995748,215,0 +170765995796,215,0 +170765995844,215,0 +170765995892,215,0 +170765995942,214,0 +170765995989,213,0 +170765996037,213,0 +170765996087,214,0 +170765996135,214,0 +170765996184,214,0 +170765996234,214,0 +170765996283,214,0 +170765996333,214,0 +170765996381,214,0 +170765996430,214,0 +170765996478,214,0 +170765996526,215,0 +170765996576,215,0 +170765996624,215,0 +170765996672,215,0 +170765996721,215,0 +170765996769,215,0 +170765996817,216,0 +170765996865,215,0 +170765996913,213,0 +170765996961,213,0 +170765997011,214,0 +170765997058,214,0 +170765997106,214,0 +170765997154,214,0 +170765997204,214,0 +170765997252,214,0 +170765997300,214,0 +170765997348,215,0 +170765997396,215,0 +170765997443,215,0 +170765997491,215,0 +170765997541,215,0 +170765997591,215,0 +170765997640,216,0 +170765997688,215,0 +170765997738,215,0 +170765997786,215,0 +170765997834,214,0 +170765997881,213,0 +170765997929,213,0 +170765997977,213,0 +170765998027,213,0 +170765998075,214,0 +170765998123,214,0 +170765998172,214,0 +170765998220,214,0 +170765998268,214,0 +170765998316,214,0 +170765998366,215,0 +170765998415,215,0 +170765998463,215,0 +170765998513,215,0 +170765998561,215,0 +170765998609,215,0 +170765998658,215,0 +170765998708,215,0 +170765998756,215,0 +170765998805,214,0 +170765998853,213,0 +170765998901,213,0 +170765998949,214,0 +170765998997,213,0 +170765999046,213,0 +170765999094,214,0 +170765999142,214,0 +170765999190,214,0 +170765999238,214,0 +170765999286,214,0 +170765999334,214,0 +170765999382,215,0 +170765999430,215,0 +170765999478,215,0 +170765999526,215,0 +170765999574,215,0 +170765999623,215,0 +170765999671,215,0 +170765999720,214,0 +170765999768,213,0 +170765999818,213,0 +170765999866,213,0 +170765999915,213,0 +170765999965,213,0 +170766000013,214,0 diff --git a/laser_value/0212-00.csv b/laser_value/0212-00.csv new file mode 100644 index 0000000..779ee9c --- /dev/null +++ b/laser_value/0212-00.csv @@ -0,0 +1,7450 @@ +timestamp,laser_value,event +170766000061,214,0 +170766000111,214,0 +170766000159,214,0 +170766000207,214,0 +170766000255,214,0 +170766000304,215,0 +170766000354,215,0 +170766000402,215,0 +170766000450,215,0 +170766000499,215,0 +170766000549,215,0 +170766000597,215,0 +170766000644,215,0 +170766000692,214,0 +170766000740,213,0 +170766000788,213,0 +170766000836,213,0 +170766000886,214,0 +170766000934,213,0 +170766000983,214,0 +170766001031,214,0 +170766001080,214,0 +170766001128,214,0 +170766001176,214,0 +170766001224,214,0 +170766001272,215,0 +170766001320,215,0 +170766001368,215,0 +170766001417,215,0 +170766001465,215,0 +170766001513,215,0 +170766001561,216,0 +170766001609,215,0 +170766001657,214,0 +170766001705,213,0 +170766001755,214,0 +170766001804,213,0 +170766001852,214,0 +170766001900,214,0 +170766001948,214,0 +170766001997,214,0 +170766002045,214,0 +170766002095,214,0 +170766002143,214,0 +170766002192,214,0 +170766002240,215,0 +170766002288,215,0 +170766002338,215,0 +170766002386,215,0 +170766002433,215,0 +170766002481,215,0 +170766002529,215,0 +170766002577,214,0 +170766002625,213,0 +170766002673,213,0 +170766002721,213,0 +170766002769,214,0 +170766002817,214,0 +170766002865,214,0 +170766002913,214,0 +170766002961,214,0 +170766003010,214,0 +170766003060,214,0 +170766003108,215,0 +170766003155,215,0 +170766003203,215,0 +170766003251,215,0 +170766003299,215,0 +170766003347,215,0 +170766003397,215,0 +170766003445,215,0 +170766003493,215,0 +170766003540,214,0 +170766003590,213,0 +170766003640,213,0 +170766003689,213,0 +170766003737,213,0 +170766003785,214,0 +170766003833,213,0 +170766003881,213,0 +170766003929,214,0 +170766003977,214,0 +170766004025,214,0 +170766004074,214,0 +170766004122,214,0 +170766004170,215,0 +170766004219,215,0 +170766004269,215,0 +170766004319,215,0 +170766004366,215,0 +170766004414,215,0 +170766004462,215,0 +170766004510,213,0 +170766004560,213,0 +170766004608,213,0 +170766004656,213,0 +170766004705,213,0 +170766004753,213,0 +170766004801,213,0 +170766004849,213,0 +170766004899,214,0 +170766004946,214,0 +170766004994,214,0 +170766005042,214,0 +170766005090,214,0 +170766005140,214,0 +170766005188,215,0 +170766005236,215,0 +170766005284,215,0 +170766005332,215,0 +170766005381,215,0 +170766005429,214,0 +170766005477,213,0 +170766005525,213,0 +170766005573,213,0 +170766005621,213,0 +170766005670,213,0 +170766005720,213,0 +170766005768,213,0 +170766005815,214,0 +170766005865,214,0 +170766005913,214,0 +170766005961,214,0 +170766006009,215,0 +170766006057,214,0 +170766006106,215,0 +170766006156,215,0 +170766006204,215,0 +170766006252,215,0 +170766006300,215,0 +170766006349,215,0 +170766006397,214,0 +170766006445,213,0 +170766006495,213,0 +170766006544,214,0 +170766006592,213,0 +170766006640,214,0 +170766006690,214,0 +170766006738,214,0 +170766006786,214,0 +170766006835,214,0 +170766006883,214,0 +170766006933,215,0 +170766006982,215,0 +170766007030,215,0 +170766007078,215,0 +170766007126,215,0 +170766007174,216,0 +170766007222,215,0 +170766007271,215,0 +170766007321,215,0 +170766007369,213,0 +170766007418,213,0 +170766007466,213,0 +170766007514,213,0 +170766007562,213,0 +170766007610,213,0 +170766007660,214,0 +170766007708,214,0 +170766007757,214,0 +170766007805,214,0 +170766007853,214,0 +170766007901,214,0 +170766007950,215,0 +170766007998,214,0 +170766008048,215,0 +170766008096,215,0 +170766008145,215,0 +170766008193,215,0 +170766008243,215,0 +170766008292,214,0 +170766008340,214,0 +170766008388,214,0 +170766008438,214,0 +170766008486,214,0 +170766008534,214,0 +170766008582,214,0 +170766008630,214,0 +170766008677,214,0 +170766008725,214,0 +170766008773,214,0 +170766008823,215,0 +170766008871,215,0 +170766008919,215,0 +170766008967,215,0 +170766009015,215,0 +170766009063,215,0 +170766009112,215,0 +170766009160,215,0 +170766009208,215,0 +170766009256,214,0 +170766009304,213,0 +170766009353,213,0 +170766009403,214,0 +170766009451,214,0 +170766009499,214,0 +170766009547,214,0 +170766009596,214,0 +170766009644,214,0 +170766009692,214,0 +170766009740,215,0 +170766009788,215,0 +170766009836,215,0 +170766009884,215,0 +170766009932,215,0 +170766009979,215,0 +170766010027,215,0 +170766010075,215,0 +170766010123,216,0 +170766010171,215,0 +170766010219,214,0 +170766010267,213,0 +170766010316,214,0 +170766010364,214,0 +170766010412,214,0 +170766010460,214,0 +170766010508,214,0 +170766010558,214,0 +170766010606,214,0 +170766010655,214,0 +170766010703,214,0 +170766010753,215,0 +170766010801,215,0 +170766010850,215,0 +170766010898,215,0 +170766010946,215,0 +170766010996,215,0 +170766011044,215,0 +170766011091,215,0 +170766011139,214,0 +170766011187,214,0 +170766011235,214,0 +170766011285,214,0 +170766011333,214,0 +170766011382,214,0 +170766011432,214,0 +170766011481,214,0 +170766011531,215,0 +170766011580,215,0 +170766011630,215,0 +170766011678,215,0 +170766011726,215,0 +170766011775,216,0 +170766011823,215,0 +170766011873,216,0 +170766011922,215,0 +170766011970,216,0 +170766012018,215,0 +170766012066,215,0 +170766012114,214,0 +170766012163,214,0 +170766012211,214,0 +170766012261,214,0 +170766012309,214,0 +170766012358,214,0 +170766012406,214,0 +170766012455,214,0 +170766012505,215,0 +170766012554,215,0 +170766012604,215,0 +170766012654,215,0 +170766012701,215,0 +170766012749,215,0 +170766012797,215,0 +170766012845,215,0 +170766012893,216,0 +170766012941,215,0 +170766012989,215,0 +170766013038,214,0 +170766013086,214,0 +170766013134,214,0 +170766013182,214,0 +170766013230,214,0 +170766013278,214,0 +170766013328,214,0 +170766013375,214,0 +170766013423,214,0 +170766013471,215,0 +170766013519,215,0 +170766013569,215,0 +170766013617,215,0 +170766013665,216,0 +170766013713,215,0 +170766013760,215,0 +170766013810,215,0 +170766013858,215,0 +170766013906,216,0 +170766013954,215,0 +170766014002,214,0 +170766014050,214,0 +170766014098,214,0 +170766014145,214,0 +170766014193,214,0 +170766014241,214,0 +170766014291,214,0 +170766014339,214,0 +170766014387,215,0 +170766014435,214,0 +170766014484,215,0 +170766014534,215,0 +170766014583,215,0 +170766014631,215,0 +170766014679,215,0 +170766014727,215,0 +170766014775,215,0 +170766014824,215,0 +170766014872,216,0 +170766014922,215,0 +170766014970,214,0 +170766015017,213,0 +170766015067,214,0 +170766015115,214,0 +170766015163,214,0 +170766015211,214,0 +170766015260,214,0 +170766015308,214,0 +170766015356,214,0 +170766015404,215,0 +170766015454,215,0 +170766015502,215,0 +170766015551,215,0 +170766015601,215,0 +170766015648,216,0 +170766015698,216,0 +170766015746,215,0 +170766015795,215,0 +170766015845,215,0 +170766015893,214,0 +170766015941,213,0 +170766015989,213,0 +170766016037,214,0 +170766016086,214,0 +170766016134,214,0 +170766016184,214,0 +170766016233,214,0 +170766016281,214,0 +170766016329,214,0 +170766016379,215,0 +170766016427,215,0 +170766016475,215,0 +170766016524,215,0 +170766016574,215,0 +170766016623,215,0 +170766016671,215,0 +170766016721,215,0 +170766016770,215,0 +170766016818,215,0 +170766016866,214,0 +170766016914,213,0 +170766016962,214,0 +170766017010,213,0 +170766017058,214,0 +170766017106,214,0 +170766017154,214,0 +170766017203,214,0 +170766017251,214,0 +170766017299,214,0 +170766017349,215,0 +170766017398,215,0 +170766017446,215,0 +170766017494,215,0 +170766017542,215,0 +170766017591,216,0 +170766017639,215,0 +170766017687,215,0 +170766017737,215,0 +170766017785,214,0 +170766017834,213,0 +170766017882,213,0 +170766017930,213,0 +170766017978,213,0 +170766018028,213,0 +170766018076,213,0 +170766018125,213,0 +170766018173,214,0 +170766018221,214,0 +170766018269,214,0 +170766018318,214,0 +170766018366,214,0 +170766018416,215,0 +170766018464,215,0 +170766018513,215,0 +170766018561,215,0 +170766018610,215,0 +170766018658,215,0 +170766018706,215,0 +170766018756,213,0 +170766018805,213,0 +170766018853,213,0 +170766018901,213,0 +170766018951,213,0 +170766019000,214,0 +170766019050,214,0 +170766019097,214,0 +170766019145,214,0 +170766019193,214,0 +170766019241,214,0 +170766019291,215,0 +170766019340,214,0 +170766019388,215,0 +170766019438,215,0 +170766019487,215,0 +170766019535,215,0 +170766019583,215,0 +170766019631,215,0 +170766019679,214,0 +170766019727,213,0 +170766019775,213,0 +170766019823,213,0 +170766019871,213,0 +170766019920,213,0 +170766019970,213,0 +170766020018,213,0 +170766020065,214,0 +170766020113,214,0 +170766020161,214,0 +170766020209,214,0 +170766020257,215,0 +170766020305,214,0 +170766020353,215,0 +170766020401,215,0 +170766020449,215,0 +170766020498,215,0 +170766020546,215,0 +170766020594,215,0 +170766020642,214,0 +170766020690,213,0 +170766020739,213,0 +170766020787,213,0 +170766020835,213,0 +170766020883,213,0 +170766020931,213,0 +170766020979,214,0 +170766021027,213,0 +170766021075,213,0 +170766021123,214,0 +170766021171,213,0 +170766021219,214,0 +170766021266,214,0 +170766021314,214,0 +170766021362,214,0 +170766021410,214,0 +170766021460,214,0 +170766021507,215,0 +170766021555,214,0 +170766021603,215,0 +170766021651,215,0 +170766021701,215,0 +170766021750,215,0 +170766021798,215,0 +170766021846,215,0 +170766021894,216,0 +170766021942,215,0 +170766021990,215,0 +170766022039,215,0 +170766022089,213,0 +170766022137,213,0 +170766022186,213,0 +170766022236,213,0 +170766022284,214,0 +170766022332,214,0 +170766022381,214,0 +170766022429,214,0 +170766022479,214,0 +170766022526,214,0 +170766022574,214,0 +170766022622,215,0 +170766022670,215,0 +170766022720,215,0 +170766022768,215,0 +170766022817,215,0 +170766022865,215,0 +170766022913,215,0 +170766022963,215,0 +170766023010,214,0 +170766023058,213,0 +170766023108,213,0 +170766023156,213,0 +170766023205,213,0 +170766023255,214,0 +170766023303,214,0 +170766023352,214,0 +170766023400,214,0 +170766023448,214,0 +170766023497,214,0 +170766023545,215,0 +170766023593,215,0 +170766023641,215,0 +170766023689,215,0 +170766023736,215,0 +170766023784,215,0 +170766023832,215,0 +170766023880,215,0 +170766023928,215,0 +170766023976,214,0 +170766024024,213,0 +170766024072,214,0 +170766024120,214,0 +170766024168,213,0 +170766024215,214,0 +170766024263,214,0 +170766024311,214,0 +170766024359,214,0 +170766024407,215,0 +170766024455,215,0 +170766024503,215,0 +170766024550,215,0 +170766024598,215,0 +170766024646,215,0 +170766024694,215,0 +170766024741,215,0 +170766024789,215,0 +170766024839,215,0 +170766024886,215,0 +170766024934,213,0 +170766024984,213,0 +170766025032,213,0 +170766025079,214,0 +170766025127,214,0 +170766025175,214,0 +170766025223,213,0 +170766025271,214,0 +170766025320,214,0 +170766025368,214,0 +170766025416,214,0 +170766025463,214,0 +170766025511,214,0 +170766025559,214,0 +170766025607,214,0 +170766025655,214,0 +170766025703,215,0 +170766025750,215,0 +170766025798,215,0 +170766025846,215,0 +170766025894,213,0 +170766025942,213,0 +170766025990,213,0 +170766026037,213,0 +170766026085,213,0 +170766026135,214,0 +170766026183,213,0 +170766026230,214,0 +170766026278,213,0 +170766026326,214,0 +170766026374,214,0 +170766026423,214,0 +170766026471,214,0 +170766026519,214,0 +170766026567,214,0 +170766026615,214,0 +170766026663,215,0 +170766026712,215,0 +170766026760,215,0 +170766026808,215,0 +170766026856,213,0 +170766026904,213,0 +170766026951,214,0 +170766026999,214,0 +170766027049,214,0 +170766027096,214,0 +170766027144,214,0 +170766027192,214,0 +170766027240,214,0 +170766027288,214,0 +170766027336,214,0 +170766027384,214,0 +170766027431,215,0 +170766027481,215,0 +170766027529,215,0 +170766027576,215,0 +170766027624,215,0 +170766027672,215,0 +170766027720,216,0 +170766027768,214,0 +170766027815,214,0 +170766027863,213,0 +170766027911,213,0 +170766027960,214,0 +170766028008,214,0 +170766028056,214,0 +170766028104,214,0 +170766028152,214,0 +170766028201,214,0 +170766028249,214,0 +170766028297,215,0 +170766028345,215,0 +170766028393,215,0 +170766028440,215,0 +170766028488,215,0 +170766028536,215,0 +170766028584,215,0 +170766028632,216,0 +170766028679,215,0 +170766028729,214,0 +170766028777,213,0 +170766028824,213,0 +170766028872,214,0 +170766028922,213,0 +170766028969,213,0 +170766029017,214,0 +170766029065,214,0 +170766029113,214,0 +170766029161,214,0 +170766029208,214,0 +170766029256,215,0 +170766029304,215,0 +170766029352,215,0 +170766029400,215,0 +170766029447,215,0 +170766029495,215,0 +170766029543,215,0 +170766029591,215,0 +170766029639,215,0 +170766029687,214,0 +170766029734,213,0 +170766029782,213,0 +170766029832,213,0 +170766029880,213,0 +170766029928,214,0 +170766029975,214,0 +170766030023,214,0 +170766030071,214,0 +170766030119,214,0 +170766030167,214,0 +170766030215,215,0 +170766030263,215,0 +170766030311,215,0 +170766030359,215,0 +170766030406,215,0 +170766030454,215,0 +170766030502,215,0 +170766030550,215,0 +170766030598,215,0 +170766030646,213,0 +170766030693,213,0 +170766030741,213,0 +170766030789,213,0 +170766030837,213,0 +170766030885,214,0 +170766030933,214,0 +170766030981,214,0 +170766031028,214,0 +170766031076,214,0 +170766031124,214,0 +170766031172,215,0 +170766031222,215,0 +170766031271,215,0 +170766031319,215,0 +170766031368,215,0 +170766031418,215,0 +170766031467,215,0 +170766031515,215,0 +170766031563,214,0 +170766031613,213,0 +170766031661,213,0 +170766031710,213,0 +170766031758,213,0 +170766031806,213,0 +170766031854,214,0 +170766031902,214,0 +170766031949,214,0 +170766031999,214,0 +170766032047,214,0 +170766032094,214,0 +170766032142,215,0 +170766032192,215,0 +170766032241,215,0 +170766032291,215,0 +170766032339,215,0 +170766032388,215,0 +170766032438,215,0 +170766032486,215,0 +170766032534,213,0 +170766032582,213,0 +170766032631,213,0 +170766032679,213,0 +170766032727,214,0 +170766032775,214,0 +170766032823,214,0 +170766032871,214,0 +170766032919,214,0 +170766032967,214,0 +170766033015,215,0 +170766033064,215,0 +170766033112,215,0 +170766033162,215,0 +170766033210,216,0 +170766033258,215,0 +170766033305,216,0 +170766033355,215,0 +170766033404,215,0 +170766033454,215,0 +170766033502,213,0 +170766033552,213,0 +170766033600,213,0 +170766033649,213,0 +170766033697,214,0 +170766033747,214,0 +170766033794,214,0 +170766033842,214,0 +170766033890,214,0 +170766033938,214,0 +170766033986,215,0 +170766034036,215,0 +170766034084,215,0 +170766034132,215,0 +170766034181,215,0 +170766034231,215,0 +170766034279,215,0 +170766034327,215,0 +170766034374,215,0 +170766034422,214,0 +170766034470,214,0 +170766034518,213,0 +170766034566,213,0 +170766034614,213,0 +170766034662,213,0 +170766034710,213,0 +170766034758,213,0 +170766034807,214,0 +170766034855,214,0 +170766034903,214,0 +170766034951,214,0 +170766035000,214,0 +170766035048,215,0 +170766035098,215,0 +170766035146,215,0 +170766035195,215,0 +170766035243,215,0 +170766035291,215,0 +170766035339,215,0 +170766035387,214,0 +170766035435,213,0 +170766035484,213,0 +170766035532,213,0 +170766035580,213,0 +170766035628,214,0 +170766035676,214,0 +170766035726,214,0 +170766035775,214,0 +170766035823,214,0 +170766035871,214,0 +170766035919,215,0 +170766035967,215,0 +170766036015,215,0 +170766036064,215,0 +170766036114,215,0 +170766036163,215,0 +170766036211,215,0 +170766036259,215,0 +170766036309,215,0 +170766036357,213,0 +170766036405,213,0 +170766036453,213,0 +170766036502,214,0 +170766036552,214,0 +170766036600,214,0 +170766036649,214,0 +170766036697,214,0 +170766036745,214,0 +170766036795,214,0 +170766036843,214,0 +170766036890,214,0 +170766036938,215,0 +170766036986,215,0 +170766037034,215,0 +170766037082,215,0 +170766037130,215,0 +170766037178,215,0 +170766037228,215,0 +170766037277,214,0 +170766037325,214,0 +170766037373,213,0 +170766037421,214,0 +170766037470,214,0 +170766037518,214,0 +170766037568,214,0 +170766037617,214,0 +170766037665,214,0 +170766037713,214,0 +170766037762,214,0 +170766037810,215,0 +170766037860,215,0 +170766037908,215,0 +170766037956,215,0 +170766038004,216,0 +170766038052,215,0 +170766038100,216,0 +170766038148,215,0 +170766038196,215,0 +170766038243,214,0 +170766038293,213,0 +170766038341,213,0 +170766038389,214,0 +170766038437,214,0 +170766038486,214,0 +170766038536,214,0 +170766038585,214,0 +170766038635,214,0 +170766038683,214,0 +170766038731,215,0 +170766038779,215,0 +170766038827,215,0 +170766038876,215,0 +170766038926,216,0 +170766038974,215,0 +170766039022,215,0 +170766039070,215,0 +170766039119,215,0 +170766039168,214,0 +170766039216,213,0 +170766039266,213,0 +170766039314,214,0 +170766039362,214,0 +170766039411,214,0 +170766039461,214,0 +170766039509,214,0 +170766039558,215,0 +170766039606,214,0 +170766039654,215,0 +170766039702,215,0 +170766039750,215,0 +170766039798,215,0 +170766039846,215,0 +170766039895,215,0 +170766039945,215,0 +170766039994,215,0 +170766040044,215,0 +170766040092,215,0 +170766040141,214,0 +170766040191,213,0 +170766040239,213,0 +170766040287,213,0 +170766040336,213,0 +170766040386,214,0 +170766040434,214,0 +170766040481,214,0 +170766040529,214,0 +170766040579,214,0 +170766040627,214,0 +170766040675,215,0 +170766040724,215,0 +170766040772,215,0 +170766040820,215,0 +170766040868,215,0 +170766040916,215,0 +170766040963,215,0 +170766041011,215,0 +170766041061,215,0 +170766041109,214,0 +170766041156,213,0 +170766041206,213,0 +170766041254,213,0 +170766041303,213,0 +170766041351,213,0 +170766041401,213,0 +170766041448,214,0 +170766041496,214,0 +170766041546,214,0 +170766041594,214,0 +170766041643,214,0 +170766041691,214,0 +170766041739,215,0 +170766041789,215,0 +170766041837,215,0 +170766041884,215,0 +170766041932,215,0 +170766041980,215,0 +170766042028,214,0 +170766042076,213,0 +170766042125,213,0 +170766042175,213,0 +170766042223,213,0 +170766042270,214,0 +170766042318,213,0 +170766042366,213,0 +170766042414,213,0 +170766042462,213,0 +170766042510,214,0 +170766042558,214,0 +170766042605,214,0 +170766042653,214,0 +170766042701,214,0 +170766042749,214,0 +170766042797,214,0 +170766042845,215,0 +170766042895,215,0 +170766042943,215,0 +170766042990,214,0 +170766043038,213,0 +170766043088,213,0 +170766043136,213,0 +170766043185,213,0 +170766043233,214,0 +170766043281,213,0 +170766043331,214,0 +170766043378,214,0 +170766043426,214,0 +170766043474,214,0 +170766043522,215,0 +170766043570,215,0 +170766043618,215,0 +170766043667,215,0 +170766043715,215,0 +170766043763,215,0 +170766043813,215,0 +170766043861,215,0 +170766043908,215,0 +170766043958,214,0 +170766044006,214,0 +170766044054,213,0 +170766044103,213,0 +170766044151,214,0 +170766044199,214,0 +170766044247,214,0 +170766044297,214,0 +170766044345,214,0 +170766044394,214,0 +170766044442,214,0 +170766044491,214,0 +170766044539,215,0 +170766044587,215,0 +170766044635,215,0 +170766044683,215,0 +170766044731,215,0 +170766044779,215,0 +170766044827,215,0 +170766044874,214,0 +170766044922,213,0 +170766044970,213,0 +170766045020,214,0 +170766045068,214,0 +170766045117,214,0 +170766045165,214,0 +170766045213,214,0 +170766045261,214,0 +170766045309,214,0 +170766045357,214,0 +170766045405,215,0 +170766045453,215,0 +170766045501,215,0 +170766045549,215,0 +170766045597,215,0 +170766045644,215,0 +170766045694,216,0 +170766045742,215,0 +170766045790,215,0 +170766045839,214,0 +170766045887,213,0 +170766045937,214,0 +170766045984,214,0 +170766046032,214,0 +170766046080,214,0 +170766046130,214,0 +170766046178,214,0 +170766046226,214,0 +170766046274,214,0 +170766046322,214,0 +170766046371,215,0 +170766046420,215,0 +170766046468,215,0 +170766046516,215,0 +170766046566,215,0 +170766046616,215,0 +170766046663,215,0 +170766046711,215,0 +170766046761,216,0 +170766046809,214,0 +170766046857,214,0 +170766046905,214,0 +170766046953,214,0 +170766047002,214,0 +170766047052,214,0 +170766047100,214,0 +170766047147,214,0 +170766047195,214,0 +170766047243,214,0 +170766047293,215,0 +170766047342,215,0 +170766047390,215,0 +170766047440,215,0 +170766047488,216,0 +170766047535,216,0 +170766047583,216,0 +170766047631,216,0 +170766047681,216,0 +170766047729,215,0 +170766047777,214,0 +170766047824,214,0 +170766047874,214,0 +170766047923,214,0 +170766047971,214,0 +170766048019,215,0 +170766048069,214,0 +170766048118,215,0 +170766048168,215,0 +170766048215,215,0 +170766048263,215,0 +170766048311,215,0 +170766048359,215,0 +170766048409,215,0 +170766048457,215,0 +170766048505,215,0 +170766048552,215,0 +170766048600,216,0 +170766048648,215,0 +170766048696,214,0 +170766048746,214,0 +170766048795,213,0 +170766048843,214,0 +170766048893,214,0 +170766048942,214,0 +170766048991,215,0 +170766049039,214,0 +170766049087,214,0 +170766049135,215,0 +170766049183,215,0 +170766049231,215,0 +170766049279,215,0 +170766049327,215,0 +170766049375,216,0 +170766049423,215,0 +170766049472,216,0 +170766049520,215,0 +170766049570,216,0 +170766049617,215,0 +170766049667,213,0 +170766049715,213,0 +170766049764,213,0 +170766049814,213,0 +170766049862,213,0 +170766049911,214,0 +170766049959,214,0 +170766050007,214,0 +170766050055,214,0 +170766050103,214,0 +170766050151,215,0 +170766050199,214,0 +170766050247,215,0 +170766050294,215,0 +170766050342,215,0 +170766050392,215,0 +170766050440,215,0 +170766050488,215,0 +170766050536,215,0 +170766050583,214,0 +170766050631,213,0 +170766050679,213,0 +170766050727,213,0 +170766050775,213,0 +170766050823,213,0 +170766050871,213,0 +170766050919,213,0 +170766050967,214,0 +170766051015,214,0 +170766051063,214,0 +170766051111,214,0 +170766051160,214,0 +170766051210,215,0 +170766051258,215,0 +170766051305,215,0 +170766051353,215,0 +170766051401,215,0 +170766051449,216,0 +170766051499,214,0 +170766051547,213,0 +170766051595,213,0 +170766051643,214,0 +170766051690,214,0 +170766051738,213,0 +170766051788,213,0 +170766051837,213,0 +170766051885,214,0 +170766051933,214,0 +170766051981,214,0 +170766052029,214,0 +170766052077,214,0 +170766052125,215,0 +170766052173,215,0 +170766052220,215,0 +170766052268,215,0 +170766052318,215,0 +170766052366,215,0 +170766052414,214,0 +170766052462,213,0 +170766052510,213,0 +170766052558,213,0 +170766052605,213,0 +170766052653,214,0 +170766052701,213,0 +170766052751,214,0 +170766052800,214,0 +170766052848,214,0 +170766052896,214,0 +170766052944,214,0 +170766052993,214,0 +170766053043,214,0 +170766053092,215,0 +170766053140,215,0 +170766053188,215,0 +170766053238,215,0 +170766053285,215,0 +170766053333,214,0 +170766053381,213,0 +170766053429,214,0 +170766053477,214,0 +170766053525,214,0 +170766053574,213,0 +170766053622,214,0 +170766053672,214,0 +170766053721,214,0 +170766053769,214,0 +170766053817,214,0 +170766053866,215,0 +170766053914,215,0 +170766053962,215,0 +170766054010,215,0 +170766054058,215,0 +170766054107,215,0 +170766054157,215,0 +170766054206,215,0 +170766054254,214,0 +170766054304,214,0 +170766054352,213,0 +170766054401,213,0 +170766054449,214,0 +170766054497,214,0 +170766054545,214,0 +170766054594,214,0 +170766054642,214,0 +170766054690,214,0 +170766054738,214,0 +170766054786,215,0 +170766054834,214,0 +170766054882,215,0 +170766054930,215,0 +170766054979,215,0 +170766055029,215,0 +170766055077,215,0 +170766055125,215,0 +170766055172,214,0 +170766055220,213,0 +170766055268,213,0 +170766055318,213,0 +170766055365,214,0 +170766055413,214,0 +170766055461,214,0 +170766055509,214,0 +170766055557,214,0 +170766055606,214,0 +170766055654,214,0 +170766055702,214,0 +170766055752,215,0 +170766055799,215,0 +170766055847,215,0 +170766055895,215,0 +170766055943,215,0 +170766055991,215,0 +170766056040,215,0 +170766056088,214,0 +170766056136,213,0 +170766056186,213,0 +170766056233,213,0 +170766056281,213,0 +170766056329,213,0 +170766056377,214,0 +170766056427,214,0 +170766056476,214,0 +170766056524,214,0 +170766056572,214,0 +170766056621,214,0 +170766056669,215,0 +170766056717,215,0 +170766056767,215,0 +170766056816,215,0 +170766056866,215,0 +170766056914,215,0 +170766056962,215,0 +170766057011,214,0 +170766057059,213,0 +170766057107,213,0 +170766057155,213,0 +170766057203,214,0 +170766057251,214,0 +170766057300,214,0 +170766057348,214,0 +170766057396,214,0 +170766057445,215,0 +170766057495,215,0 +170766057545,215,0 +170766057594,215,0 +170766057642,215,0 +170766057690,216,0 +170766057739,216,0 +170766057787,215,0 +170766057835,215,0 +170766057883,215,0 +170766057931,213,0 +170766057979,214,0 +170766058027,213,0 +170766058075,214,0 +170766058123,214,0 +170766058171,214,0 +170766058220,214,0 +170766058268,214,0 +170766058316,214,0 +170766058364,215,0 +170766058414,215,0 +170766058462,215,0 +170766058510,215,0 +170766058557,215,0 +170766058607,215,0 +170766058655,215,0 +170766058704,215,0 +170766058752,215,0 +170766058800,215,0 +170766058850,213,0 +170766058899,213,0 +170766058949,213,0 +170766058997,213,0 +170766059046,213,0 +170766059094,214,0 +170766059142,214,0 +170766059190,214,0 +170766059238,214,0 +170766059285,214,0 +170766059333,215,0 +170766059381,215,0 +170766059429,215,0 +170766059477,215,0 +170766059525,215,0 +170766059573,215,0 +170766059621,215,0 +170766059670,215,0 +170766059719,215,0 +170766059769,214,0 +170766059817,213,0 +170766059865,213,0 +170766059913,213,0 +170766059961,213,0 +170766060010,214,0 +170766060058,214,0 +170766060106,214,0 +170766060154,214,0 +170766060202,214,0 +170766060250,214,0 +170766060298,214,0 +170766060346,214,0 +170766060394,215,0 +170766060442,215,0 +170766060491,215,0 +170766060539,215,0 +170766060587,215,0 +170766060635,215,0 +170766060685,214,0 +170766060733,214,0 +170766060782,214,0 +170766060830,214,0 +170766060878,214,0 +170766060926,214,0 +170766060976,214,0 +170766061025,214,0 +170766061075,214,0 +170766061122,214,0 +170766061170,215,0 +170766061220,215,0 +170766061270,215,0 +170766061317,215,0 +170766061366,215,0 +170766061413,215,0 +170766061461,215,0 +170766061509,216,0 +170766061557,215,0 +170766061605,214,0 +170766061653,214,0 +170766061701,214,0 +170766061749,214,0 +170766061797,214,0 +170766061845,214,0 +170766061895,214,0 +170766061942,214,0 +170766061990,215,0 +170766062038,215,0 +170766062086,215,0 +170766062136,215,0 +170766062184,215,0 +170766062232,215,0 +170766062281,215,0 +170766062331,216,0 +170766062379,215,0 +170766062428,216,0 +170766062476,214,0 +170766062524,214,0 +170766062574,214,0 +170766062622,214,0 +170766062670,214,0 +170766062718,214,0 +170766062766,215,0 +170766062813,215,0 +170766062863,215,0 +170766062911,215,0 +170766062960,215,0 +170766063008,215,0 +170766063056,215,0 +170766063106,216,0 +170766063154,215,0 +170766063203,215,0 +170766063253,216,0 +170766063301,216,0 +170766063349,216,0 +170766063399,215,0 +170766063446,214,0 +170766063494,214,0 +170766063542,214,0 +170766063590,214,0 +170766063638,214,0 +170766063688,215,0 +170766063736,215,0 +170766063784,215,0 +170766063831,215,0 +170766063881,215,0 +170766063930,215,0 +170766063978,215,0 +170766064026,216,0 +170766064074,215,0 +170766064122,216,0 +170766064170,216,0 +170766064218,215,0 +170766064267,215,0 +170766064317,214,0 +170766064365,214,0 +170766064413,214,0 +170766064461,214,0 +170766064509,214,0 +170766064558,214,0 +170766064606,214,0 +170766064654,214,0 +170766064702,215,0 +170766064752,215,0 +170766064801,215,0 +170766064851,215,0 +170766064899,215,0 +170766064947,215,0 +170766064994,215,0 +170766065044,215,0 +170766065092,215,0 +170766065140,216,0 +170766065188,215,0 +170766065236,214,0 +170766065284,214,0 +170766065332,214,0 +170766065379,214,0 +170766065427,214,0 +170766065477,215,0 +170766065525,214,0 +170766065573,215,0 +170766065621,215,0 +170766065670,215,0 +170766065718,215,0 +170766065766,215,0 +170766065815,215,0 +170766065863,215,0 +170766065911,215,0 +170766065959,216,0 +170766066009,215,0 +170766066057,215,0 +170766066104,216,0 +170766066152,215,0 +170766066200,214,0 +170766066248,214,0 +170766066296,214,0 +170766066344,214,0 +170766066394,214,0 +170766066442,214,0 +170766066490,214,0 +170766066537,215,0 +170766066585,215,0 +170766066635,215,0 +170766066685,215,0 +170766066734,215,0 +170766066782,215,0 +170766066830,216,0 +170766066878,215,0 +170766066926,215,0 +170766066975,215,0 +170766067023,216,0 +170766067071,214,0 +170766067120,213,0 +170766067168,214,0 +170766067216,214,0 +170766067266,214,0 +170766067315,214,0 +170766067363,214,0 +170766067411,214,0 +170766067459,214,0 +170766067507,215,0 +170766067555,215,0 +170766067605,215,0 +170766067654,215,0 +170766067702,215,0 +170766067750,216,0 +170766067798,215,0 +170766067847,216,0 +170766067895,216,0 +170766067943,215,0 +170766067991,214,0 +170766068039,214,0 +170766068087,213,0 +170766068135,213,0 +170766068184,214,0 +170766068232,214,0 +170766068282,214,0 +170766068330,214,0 +170766068378,214,0 +170766068427,214,0 +170766068475,214,0 +170766068523,215,0 +170766068571,215,0 +170766068619,215,0 +170766068666,215,0 +170766068714,215,0 +170766068762,215,0 +170766068810,215,0 +170766068858,215,0 +170766068906,214,0 +170766068955,213,0 +170766069004,214,0 +170766069052,213,0 +170766069100,214,0 +170766069148,214,0 +170766069198,214,0 +170766069245,214,0 +170766069293,214,0 +170766069341,214,0 +170766069389,215,0 +170766069437,214,0 +170766069485,215,0 +170766069534,215,0 +170766069582,215,0 +170766069630,215,0 +170766069678,215,0 +170766069726,215,0 +170766069774,215,0 +170766069822,215,0 +170766069869,213,0 +170766069917,213,0 +170766069965,213,0 +170766070013,214,0 +170766070061,214,0 +170766070109,214,0 +170766070157,214,0 +170766070205,214,0 +170766070253,215,0 +170766070302,215,0 +170766070350,215,0 +170766070398,215,0 +170766070446,215,0 +170766070494,215,0 +170766070542,215,0 +170766070590,215,0 +170766070638,215,0 +170766070686,215,0 +170766070735,215,0 +170766070783,214,0 +170766070831,213,0 +170766070879,213,0 +170766070927,213,0 +170766070977,214,0 +170766071026,214,0 +170766071076,214,0 +170766071123,214,0 +170766071171,214,0 +170766071221,214,0 +170766071269,214,0 +170766071317,215,0 +170766071365,215,0 +170766071414,215,0 +170766071462,215,0 +170766071510,215,0 +170766071560,215,0 +170766071609,215,0 +170766071657,214,0 +170766071705,213,0 +170766071753,213,0 +170766071801,213,0 +170766071850,213,0 +170766071900,214,0 +170766071948,214,0 +170766071996,213,0 +170766072045,213,0 +170766072095,214,0 +170766072143,214,0 +170766072191,214,0 +170766072238,215,0 +170766072286,215,0 +170766072334,215,0 +170766072382,215,0 +170766072430,215,0 +170766072478,215,0 +170766072526,215,0 +170766072576,215,0 +170766072625,213,0 +170766072673,213,0 +170766072721,213,0 +170766072769,213,0 +170766072818,213,0 +170766072868,213,0 +170766072917,214,0 +170766072965,214,0 +170766073013,214,0 +170766073061,214,0 +170766073111,215,0 +170766073159,214,0 +170766073206,215,0 +170766073254,215,0 +170766073304,215,0 +170766073352,215,0 +170766073400,215,0 +170766073448,215,0 +170766073497,215,0 +170766073547,213,0 +170766073595,213,0 +170766073643,213,0 +170766073691,213,0 +170766073740,214,0 +170766073790,214,0 +170766073838,214,0 +170766073886,214,0 +170766073934,214,0 +170766073982,214,0 +170766074031,214,0 +170766074079,214,0 +170766074127,215,0 +170766074175,215,0 +170766074223,215,0 +170766074272,215,0 +170766074322,215,0 +170766074370,216,0 +170766074418,215,0 +170766074465,214,0 +170766074513,213,0 +170766074561,213,0 +170766074611,213,0 +170766074660,214,0 +170766074710,214,0 +170766074759,214,0 +170766074807,214,0 +170766074855,214,0 +170766074905,214,0 +170766074954,214,0 +170766075002,215,0 +170766075050,215,0 +170766075098,215,0 +170766075146,215,0 +170766075194,215,0 +170766075242,215,0 +170766075291,215,0 +170766075339,214,0 +170766075389,213,0 +170766075436,213,0 +170766075484,213,0 +170766075534,213,0 +170766075583,214,0 +170766075633,213,0 +170766075681,213,0 +170766075729,214,0 +170766075777,214,0 +170766075825,214,0 +170766075874,214,0 +170766075922,214,0 +170766075970,215,0 +170766076019,215,0 +170766076067,215,0 +170766076115,216,0 +170766076165,216,0 +170766076213,216,0 +170766076261,215,0 +170766076310,214,0 +170766076360,213,0 +170766076408,214,0 +170766076456,214,0 +170766076504,214,0 +170766076552,214,0 +170766076600,214,0 +170766076647,214,0 +170766076695,214,0 +170766076743,214,0 +170766076793,215,0 +170766076842,215,0 +170766076892,215,0 +170766076940,215,0 +170766076988,215,0 +170766077036,216,0 +170766077085,215,0 +170766077133,215,0 +170766077181,214,0 +170766077230,214,0 +170766077278,214,0 +170766077328,214,0 +170766077377,214,0 +170766077427,214,0 +170766077475,214,0 +170766077524,215,0 +170766077574,214,0 +170766077622,215,0 +170766077670,215,0 +170766077719,215,0 +170766077767,215,0 +170766077816,215,0 +170766077866,215,0 +170766077914,215,0 +170766077962,215,0 +170766078010,215,0 +170766078058,215,0 +170766078106,214,0 +170766078154,214,0 +170766078203,214,0 +170766078251,214,0 +170766078301,214,0 +170766078348,214,0 +170766078397,215,0 +170766078444,215,0 +170766078492,214,0 +170766078540,215,0 +170766078588,215,0 +170766078636,215,0 +170766078684,215,0 +170766078732,215,0 +170766078780,215,0 +170766078828,215,0 +170766078876,215,0 +170766078924,216,0 +170766078972,215,0 +170766079021,215,0 +170766079069,213,0 +170766079117,214,0 +170766079165,214,0 +170766079214,214,0 +170766079262,214,0 +170766079310,214,0 +170766079358,214,0 +170766079406,214,0 +170766079454,214,0 +170766079502,214,0 +170766079549,214,0 +170766079597,214,0 +170766079645,215,0 +170766079693,215,0 +170766079741,216,0 +170766079789,215,0 +170766079838,215,0 +170766079886,215,0 +170766079934,215,0 +170766079982,213,0 +170766080030,213,0 +170766080078,214,0 +170766080125,214,0 +170766080173,214,0 +170766080221,214,0 +170766080269,214,0 +170766080317,214,0 +170766080366,215,0 +170766080414,215,0 +170766080462,215,0 +170766080510,215,0 +170766080559,215,0 +170766080607,215,0 +170766080655,215,0 +170766080703,215,0 +170766080752,215,0 +170766080800,215,0 +170766080848,216,0 +170766080896,214,0 +170766080943,214,0 +170766080993,214,0 +170766081041,214,0 +170766081088,214,0 +170766081136,214,0 +170766081184,214,0 +170766081232,214,0 +170766081280,215,0 +170766081328,215,0 +170766081376,215,0 +170766081423,215,0 +170766081471,215,0 +170766081519,215,0 +170766081567,215,0 +170766081615,216,0 +170766081663,215,0 +170766081712,215,0 +170766081760,215,0 +170766081808,214,0 +170766081856,213,0 +170766081904,214,0 +170766081952,214,0 +170766082000,214,0 +170766082047,214,0 +170766082097,215,0 +170766082147,215,0 +170766082194,215,0 +170766082242,215,0 +170766082290,215,0 +170766082338,215,0 +170766082386,215,0 +170766082435,215,0 +170766082483,215,0 +170766082531,215,0 +170766082581,216,0 +170766082628,216,0 +170766082676,215,0 +170766082726,214,0 +170766082775,213,0 +170766082823,213,0 +170766082872,214,0 +170766082922,214,0 +170766082970,214,0 +170766083017,214,0 +170766083067,214,0 +170766083116,214,0 +170766083164,215,0 +170766083212,215,0 +170766083260,215,0 +170766083308,214,0 +170766083355,215,0 +170766083403,215,0 +170766083451,215,0 +170766083499,215,0 +170766083547,215,0 +170766083595,215,0 +170766083644,213,0 +170766083692,213,0 +170766083740,213,0 +170766083788,213,0 +170766083836,213,0 +170766083883,213,0 +170766083931,214,0 +170766083979,214,0 +170766084027,214,0 +170766084076,214,0 +170766084124,214,0 +170766084172,214,0 +170766084220,215,0 +170766084268,215,0 +170766084316,215,0 +170766084364,215,0 +170766084412,215,0 +170766084460,215,0 +170766084508,215,0 +170766084555,213,0 +170766084605,213,0 +170766084653,213,0 +170766084701,213,0 +170766084749,213,0 +170766084797,213,0 +170766084845,214,0 +170766084893,214,0 +170766084941,214,0 +170766084990,214,0 +170766085040,214,0 +170766085088,214,0 +170766085136,215,0 +170766085184,214,0 +170766085233,215,0 +170766085283,215,0 +170766085332,215,0 +170766085380,215,0 +170766085428,215,0 +170766085476,213,0 +170766085524,213,0 +170766085573,213,0 +170766085623,214,0 +170766085672,214,0 +170766085720,214,0 +170766085768,214,0 +170766085816,214,0 +170766085866,214,0 +170766085915,214,0 +170766085963,215,0 +170766086011,215,0 +170766086059,215,0 +170766086107,215,0 +170766086155,215,0 +170766086203,215,0 +170766086251,215,0 +170766086299,215,0 +170766086347,215,0 +170766086394,214,0 +170766086442,213,0 +170766086490,213,0 +170766086540,213,0 +170766086589,214,0 +170766086637,214,0 +170766086685,214,0 +170766086733,214,0 +170766086781,214,0 +170766086831,214,0 +170766086879,215,0 +170766086926,215,0 +170766086976,215,0 +170766087024,215,0 +170766087073,215,0 +170766087121,215,0 +170766087171,215,0 +170766087219,215,0 +170766087267,215,0 +170766087316,213,0 +170766087364,213,0 +170766087414,213,0 +170766087463,214,0 +170766087512,214,0 +170766087560,214,0 +170766087610,214,0 +170766087659,214,0 +170766087707,214,0 +170766087757,215,0 +170766087805,215,0 +170766087854,215,0 +170766087902,215,0 +170766087952,215,0 +170766088000,215,0 +170766088047,215,0 +170766088095,215,0 +170766088145,215,0 +170766088193,215,0 +170766088241,213,0 +170766088290,213,0 +170766088338,214,0 +170766088386,214,0 +170766088436,214,0 +170766088483,214,0 +170766088531,214,0 +170766088579,214,0 +170766088627,214,0 +170766088675,214,0 +170766088723,215,0 +170766088771,215,0 +170766088821,215,0 +170766088868,215,0 +170766088916,216,0 +170766088964,216,0 +170766089012,215,0 +170766089062,216,0 +170766089109,215,0 +170766089157,213,0 +170766089205,213,0 +170766089253,213,0 +170766089301,214,0 +170766089348,214,0 +170766089396,214,0 +170766089444,214,0 +170766089492,214,0 +170766089540,215,0 +170766089588,215,0 +170766089636,215,0 +170766089684,215,0 +170766089731,215,0 +170766089779,215,0 +170766089829,216,0 +170766089876,215,0 +170766089924,215,0 +170766089972,215,0 +170766090020,215,0 +170766090068,214,0 +170766090116,213,0 +170766090165,214,0 +170766090213,214,0 +170766090261,214,0 +170766090309,214,0 +170766090358,214,0 +170766090406,214,0 +170766090454,214,0 +170766090504,215,0 +170766090552,215,0 +170766090600,215,0 +170766090648,215,0 +170766090695,215,0 +170766090743,215,0 +170766090793,215,0 +170766090841,215,0 +170766090889,215,0 +170766090937,215,0 +170766090985,213,0 +170766091034,214,0 +170766091084,214,0 +170766091133,214,0 +170766091181,214,0 +170766091231,214,0 +170766091278,214,0 +170766091326,214,0 +170766091374,214,0 +170766091422,214,0 +170766091470,215,0 +170766091518,215,0 +170766091566,215,0 +170766091615,215,0 +170766091663,215,0 +170766091711,215,0 +170766091759,215,0 +170766091807,216,0 +170766091857,215,0 +170766091906,213,0 +170766091954,213,0 +170766092003,214,0 +170766092051,214,0 +170766092099,214,0 +170766092147,214,0 +170766092195,214,0 +170766092243,214,0 +170766092291,214,0 +170766092339,214,0 +170766092387,214,0 +170766092436,215,0 +170766092484,215,0 +170766092532,215,0 +170766092580,215,0 +170766092628,215,0 +170766092676,215,0 +170766092724,215,0 +170766092774,215,0 +170766092822,213,0 +170766092870,213,0 +170766092918,213,0 +170766092966,213,0 +170766093015,214,0 +170766093065,214,0 +170766093114,214,0 +170766093164,214,0 +170766093212,214,0 +170766093260,214,0 +170766093309,215,0 +170766093359,215,0 +170766093407,214,0 +170766093456,215,0 +170766093504,215,0 +170766093552,215,0 +170766093602,215,0 +170766093649,215,0 +170766093697,214,0 +170766093745,213,0 +170766093793,213,0 +170766093843,213,0 +170766093892,214,0 +170766093940,214,0 +170766093988,214,0 +170766094036,214,0 +170766094084,214,0 +170766094132,214,0 +170766094182,214,0 +170766094230,214,0 +170766094279,215,0 +170766094327,215,0 +170766094375,215,0 +170766094423,215,0 +170766094471,215,0 +170766094520,215,0 +170766094570,215,0 +170766094618,215,0 +170766094666,213,0 +170766094714,213,0 +170766094762,213,0 +170766094811,213,0 +170766094859,214,0 +170766094907,214,0 +170766094955,214,0 +170766095004,214,0 +170766095054,214,0 +170766095102,214,0 +170766095150,214,0 +170766095199,215,0 +170766095249,215,0 +170766095297,215,0 +170766095346,215,0 +170766095394,215,0 +170766095444,215,0 +170766095493,215,0 +170766095541,214,0 +170766095589,213,0 +170766095639,213,0 +170766095688,213,0 +170766095736,213,0 +170766095784,213,0 +170766095832,214,0 +170766095880,214,0 +170766095928,214,0 +170766095976,214,0 +170766096025,214,0 +170766096073,215,0 +170766096121,215,0 +170766096169,215,0 +170766096219,215,0 +170766096267,215,0 +170766096315,215,0 +170766096362,215,0 +170766096410,215,0 +170766096458,214,0 +170766096506,213,0 +170766096554,213,0 +170766096602,213,0 +170766096652,213,0 +170766096700,214,0 +170766096749,214,0 +170766096797,214,0 +170766096845,214,0 +170766096895,214,0 +170766096944,215,0 +170766096992,215,0 +170766097042,215,0 +170766097090,215,0 +170766097138,215,0 +170766097185,215,0 +170766097233,215,0 +170766097283,215,0 +170766097331,215,0 +170766097379,214,0 +170766097427,214,0 +170766097475,214,0 +170766097523,214,0 +170766097570,214,0 +170766097620,214,0 +170766097668,214,0 +170766097716,214,0 +170766097765,215,0 +170766097813,215,0 +170766097861,215,0 +170766097909,215,0 +170766097957,215,0 +170766098005,215,0 +170766098055,215,0 +170766098103,215,0 +170766098151,215,0 +170766098198,215,0 +170766098248,215,0 +170766098297,214,0 +170766098347,213,0 +170766098395,214,0 +170766098443,214,0 +170766098492,214,0 +170766098540,214,0 +170766098588,214,0 +170766098636,214,0 +170766098684,214,0 +170766098732,215,0 +170766098780,215,0 +170766098830,215,0 +170766098879,215,0 +170766098929,215,0 +170766098977,215,0 +170766099026,215,0 +170766099075,215,0 +170766099123,215,0 +170766099173,215,0 +170766099222,213,0 +170766099270,213,0 +170766099320,213,0 +170766099369,214,0 +170766099419,214,0 +170766099467,214,0 +170766099516,214,0 +170766099566,214,0 +170766099614,214,0 +170766099662,214,0 +170766099710,215,0 +170766099758,215,0 +170766099807,215,0 +170766099857,215,0 +170766099905,215,0 +170766099953,215,0 +170766100001,215,0 +170766100050,216,0 +170766100098,215,0 +170766100146,214,0 +170766100194,214,0 +170766100242,214,0 +170766100290,214,0 +170766100338,214,0 +170766100385,214,0 +170766100435,214,0 +170766100483,214,0 +170766100531,215,0 +170766100580,215,0 +170766100628,215,0 +170766100676,215,0 +170766100724,215,0 +170766100772,215,0 +170766100822,215,0 +170766100870,215,0 +170766100919,215,0 +170766100967,215,0 +170766101015,215,0 +170766101065,214,0 +170766101114,214,0 +170766101164,214,0 +170766101212,214,0 +170766101260,214,0 +170766101307,215,0 +170766101355,214,0 +170766101403,215,0 +170766101451,215,0 +170766101499,215,0 +170766101547,215,0 +170766101595,215,0 +170766101644,215,0 +170766101692,215,0 +170766101740,215,0 +170766101788,215,0 +170766101836,215,0 +170766101886,216,0 +170766101935,215,0 +170766101983,214,0 +170766102031,213,0 +170766102080,213,0 +170766102128,214,0 +170766102176,214,0 +170766102224,214,0 +170766102272,214,0 +170766102320,214,0 +170766102370,214,0 +170766102418,214,0 +170766102467,214,0 +170766102515,215,0 +170766102565,215,0 +170766102614,215,0 +170766102662,215,0 +170766102710,215,0 +170766102759,215,0 +170766102807,215,0 +170766102857,214,0 +170766102906,213,0 +170766102956,213,0 +170766103004,213,0 +170766103052,213,0 +170766103101,214,0 +170766103149,214,0 +170766103197,214,0 +170766103245,214,0 +170766103293,214,0 +170766103341,214,0 +170766103391,214,0 +170766103438,215,0 +170766103486,215,0 +170766103534,215,0 +170766103584,215,0 +170766103632,215,0 +170766103680,216,0 +170766103728,215,0 +170766103776,214,0 +170766103824,213,0 +170766103872,213,0 +170766103920,214,0 +170766103967,214,0 +170766104017,214,0 +170766104065,214,0 +170766104114,214,0 +170766104162,214,0 +170766104210,215,0 +170766104260,215,0 +170766104308,215,0 +170766104357,215,0 +170766104405,215,0 +170766104453,215,0 +170766104501,215,0 +170766104549,216,0 +170766104597,215,0 +170766104645,215,0 +170766104694,214,0 +170766104742,213,0 +170766104790,213,0 +170766104838,214,0 +170766104888,214,0 +170766104937,214,0 +170766104987,214,0 +170766105036,214,0 +170766105086,214,0 +170766105134,214,0 +170766105182,214,0 +170766105231,215,0 +170766105279,215,0 +170766105327,215,0 +170766105375,215,0 +170766105423,215,0 +170766105472,215,0 +170766105520,215,0 +170766105568,215,0 +170766105617,213,0 +170766105665,213,0 +170766105713,213,0 +170766105761,213,0 +170766105809,213,0 +170766105857,214,0 +170766105907,214,0 +170766105955,214,0 +170766106003,214,0 +170766106051,214,0 +170766106098,214,0 +170766106146,214,0 +170766106196,215,0 +170766106246,215,0 +170766106295,215,0 +170766106343,215,0 +170766106391,215,0 +170766106439,215,0 +170766106487,215,0 +170766106536,213,0 +170766106586,213,0 +170766106635,213,0 +170766106685,213,0 +170766106734,213,0 +170766106782,214,0 +170766106830,214,0 +170766106878,214,0 +170766106926,214,0 +170766106974,214,0 +170766107022,214,0 +170766107070,215,0 +170766107118,214,0 +170766107167,215,0 +170766107215,215,0 +170766107265,215,0 +170766107313,215,0 +170766107361,215,0 +170766107409,215,0 +170766107458,214,0 +170766107506,213,0 +170766107555,214,0 +170766107603,214,0 +170766107651,214,0 +170766107699,214,0 +170766107747,214,0 +170766107797,214,0 +170766107844,214,0 +170766107892,214,0 +170766107940,214,0 +170766107990,215,0 +170766108039,215,0 +170766108087,215,0 +170766108136,215,0 +170766108186,215,0 +170766108234,215,0 +170766108282,215,0 +170766108329,215,0 +170766108377,213,0 +170766108425,213,0 +170766108473,214,0 +170766108521,214,0 +170766108569,214,0 +170766108617,214,0 +170766108664,214,0 +170766108712,214,0 +170766108760,214,0 +170766108808,214,0 +170766108856,215,0 +170766108904,215,0 +170766108951,215,0 +170766108999,215,0 +170766109049,215,0 +170766109096,215,0 +170766109144,215,0 +170766109192,215,0 +170766109240,215,0 +170766109288,213,0 +170766109336,213,0 +170766109384,214,0 +170766109431,214,0 +170766109481,214,0 +170766109529,214,0 +170766109577,214,0 +170766109624,214,0 +170766109674,214,0 +170766109722,215,0 +170766109771,215,0 +170766109819,215,0 +170766109867,215,0 +170766109915,215,0 +170766109963,215,0 +170766110011,216,0 +170766110059,215,0 +170766110108,215,0 +170766110156,215,0 +170766110204,213,0 +170766110252,213,0 +170766110300,214,0 +170766110347,214,0 +170766110395,214,0 +170766110443,214,0 +170766110491,214,0 +170766110539,214,0 +170766110587,215,0 +170766110635,214,0 +170766110684,215,0 +170766110732,215,0 +170766110780,215,0 +170766110829,215,0 +170766110877,215,0 +170766110925,215,0 +170766110973,215,0 +170766111021,215,0 +170766111068,215,0 +170766111118,214,0 +170766111166,214,0 +170766111214,213,0 +170766111261,214,0 +170766111309,214,0 +170766111357,214,0 +170766111405,214,0 +170766111453,214,0 +170766111501,214,0 +170766111548,214,0 +170766111596,215,0 +170766111644,215,0 +170766111692,215,0 +170766111740,215,0 +170766111787,215,0 +170766111835,215,0 +170766111883,215,0 +170766111931,215,0 +170766111979,215,0 +170766112027,214,0 +170766112075,213,0 +170766112123,214,0 +170766112171,214,0 +170766112219,214,0 +170766112267,214,0 +170766112315,214,0 +170766112363,214,0 +170766112412,214,0 +170766112460,214,0 +170766112508,215,0 +170766112558,215,0 +170766112607,215,0 +170766112655,215,0 +170766112703,215,0 +170766112751,215,0 +170766112801,215,0 +170766112850,215,0 +170766112900,215,0 +170766112948,213,0 +170766112996,213,0 +170766113044,214,0 +170766113093,213,0 +170766113143,214,0 +170766113192,214,0 +170766113240,214,0 +170766113288,214,0 +170766113336,214,0 +170766113384,215,0 +170766113431,215,0 +170766113479,215,0 +170766113527,215,0 +170766113575,215,0 +170766113623,215,0 +170766113671,215,0 +170766113720,215,0 +170766113768,215,0 +170766113816,215,0 +170766113865,213,0 +170766113913,213,0 +170766113961,214,0 +170766114009,214,0 +170766114058,214,0 +170766114106,214,0 +170766114154,214,0 +170766114202,214,0 +170766114250,214,0 +170766114299,215,0 +170766114347,215,0 +170766114397,215,0 +170766114446,215,0 +170766114494,215,0 +170766114542,215,0 +170766114590,215,0 +170766114637,215,0 +170766114687,215,0 +170766114735,215,0 +170766114783,213,0 +170766114830,214,0 +170766114878,213,0 +170766114926,214,0 +170766114974,214,0 +170766115022,214,0 +170766115070,215,0 +170766115118,214,0 +170766115166,215,0 +170766115213,215,0 +170766115261,215,0 +170766115309,215,0 +170766115357,215,0 +170766115406,215,0 +170766115454,215,0 +170766115504,215,0 +170766115552,215,0 +170766115601,215,0 +170766115649,214,0 +170766115697,214,0 +170766115746,213,0 +170766115794,214,0 +170766115842,214,0 +170766115890,214,0 +170766115938,214,0 +170766115986,214,0 +170766116034,215,0 +170766116082,215,0 +170766116130,215,0 +170766116179,215,0 +170766116227,215,0 +170766116275,215,0 +170766116323,215,0 +170766116371,215,0 +170766116421,215,0 +170766116469,215,0 +170766116517,215,0 +170766116565,214,0 +170766116612,213,0 +170766116660,213,0 +170766116710,214,0 +170766116759,214,0 +170766116809,214,0 +170766116857,214,0 +170766116905,214,0 +170766116954,215,0 +170766117002,214,0 +170766117050,215,0 +170766117098,215,0 +170766117148,215,0 +170766117197,215,0 +170766117245,215,0 +170766117293,215,0 +170766117341,215,0 +170766117391,215,0 +170766117439,215,0 +170766117488,214,0 +170766117536,213,0 +170766117584,213,0 +170766117632,213,0 +170766117680,213,0 +170766117728,213,0 +170766117776,213,0 +170766117824,213,0 +170766117872,214,0 +170766117920,214,0 +170766117967,214,0 +170766118017,214,0 +170766118066,215,0 +170766118114,215,0 +170766118164,215,0 +170766118213,215,0 +170766118261,215,0 +170766118309,215,0 +170766118357,215,0 +170766118407,214,0 +170766118456,213,0 +170766118504,213,0 +170766118554,214,0 +170766118602,213,0 +170766118651,214,0 +170766118699,214,0 +170766118747,214,0 +170766118797,214,0 +170766118846,214,0 +170766118894,214,0 +170766118942,215,0 +170766118990,214,0 +170766119040,214,0 +170766119089,215,0 +170766119137,215,0 +170766119185,215,0 +170766119233,215,0 +170766119283,215,0 +170766119331,214,0 +170766119379,214,0 +170766119427,214,0 +170766119475,214,0 +170766119524,214,0 +170766119572,214,0 +170766119622,214,0 +170766119671,214,0 +170766119719,215,0 +170766119767,215,0 +170766119815,215,0 +170766119865,215,0 +170766119913,215,0 +170766119961,216,0 +170766120009,216,0 +170766120057,215,0 +170766120104,215,0 +170766120152,215,0 +170766120200,215,0 +170766120250,214,0 +170766120299,214,0 +170766120347,214,0 +170766120397,214,0 +170766120445,214,0 +170766120493,214,0 +170766120542,214,0 +170766120590,215,0 +170766120639,215,0 +170766120687,215,0 +170766120736,215,0 +170766120784,215,0 +170766120832,215,0 +170766120880,216,0 +170766120928,215,0 +170766120976,216,0 +170766121024,215,0 +170766121074,215,0 +170766121122,215,0 +170766121171,213,0 +170766121219,213,0 +170766121267,214,0 +170766121316,214,0 +170766121366,214,0 +170766121415,214,0 +170766121465,214,0 +170766121513,214,0 +170766121562,215,0 +170766121612,215,0 +170766121661,215,0 +170766121709,215,0 +170766121757,214,0 +170766121805,215,0 +170766121855,215,0 +170766121904,215,0 +170766121954,215,0 +170766122003,215,0 +170766122051,214,0 +170766122099,213,0 +170766122149,213,0 +170766122197,214,0 +170766122245,214,0 +170766122293,214,0 +170766122341,214,0 +170766122389,214,0 +170766122438,214,0 +170766122486,214,0 +170766122534,214,0 +170766122582,215,0 +170766122631,215,0 +170766122681,215,0 +170766122729,215,0 +170766122778,215,0 +170766122826,215,0 +170766122874,215,0 +170766122922,215,0 +170766122970,214,0 +170766123020,213,0 +170766123068,213,0 +170766123116,213,0 +170766123163,213,0 +170766123211,213,0 +170766123261,214,0 +170766123309,214,0 +170766123357,214,0 +170766123406,214,0 +170766123456,214,0 +170766123504,214,0 +170766123552,214,0 +170766123601,215,0 +170766123649,215,0 +170766123697,215,0 +170766123745,215,0 +170766123795,215,0 +170766123843,215,0 +170766123891,214,0 +170766123939,213,0 +170766123988,213,0 +170766124036,213,0 +170766124084,213,0 +170766124133,213,0 +170766124181,213,0 +170766124229,213,0 +170766124279,213,0 +170766124328,214,0 +170766124376,214,0 +170766124424,214,0 +170766124472,214,0 +170766124522,215,0 +170766124571,215,0 +170766124619,215,0 +170766124667,215,0 +170766124717,215,0 +170766124765,215,0 +170766124814,213,0 +170766124862,213,0 +170766124912,213,0 +170766124959,213,0 +170766125007,214,0 +170766125055,214,0 +170766125103,214,0 +170766125153,214,0 +170766125201,214,0 +170766125249,214,0 +170766125297,214,0 +170766125344,214,0 +170766125392,215,0 +170766125440,214,0 +170766125488,215,0 +170766125536,215,0 +170766125584,215,0 +170766125632,215,0 +170766125682,215,0 +170766125729,213,0 +170766125779,213,0 +170766125827,213,0 +170766125877,214,0 +170766125924,213,0 +170766125972,214,0 +170766126020,214,0 +170766126068,214,0 +170766126116,214,0 +170766126166,214,0 +170766126214,214,0 +170766126263,215,0 +170766126311,215,0 +170766126359,215,0 +170766126407,215,0 +170766126455,215,0 +170766126503,215,0 +170766126551,215,0 +170766126600,215,0 +170766126648,213,0 +170766126698,213,0 +170766126746,214,0 +170766126794,214,0 +170766126842,214,0 +170766126889,214,0 +170766126937,214,0 +170766126987,214,0 +170766127035,215,0 +170766127083,215,0 +170766127132,215,0 +170766127180,215,0 +170766127228,215,0 +170766127275,215,0 +170766127323,215,0 +170766127371,215,0 +170766127419,215,0 +170766127467,215,0 +170766127515,215,0 +170766127563,213,0 +170766127610,213,0 +170766127658,214,0 +170766127708,214,0 +170766127756,214,0 +170766127804,214,0 +170766127851,214,0 +170766127899,214,0 +170766127947,214,0 +170766127995,214,0 +170766128043,215,0 +170766128092,215,0 +170766128140,215,0 +170766128188,215,0 +170766128236,215,0 +170766128284,215,0 +170766128332,215,0 +170766128380,215,0 +170766128430,215,0 +170766128477,213,0 +170766128525,213,0 +170766128573,213,0 +170766128621,213,0 +170766128669,213,0 +170766128717,214,0 +170766128765,214,0 +170766128813,214,0 +170766128861,214,0 +170766128909,214,0 +170766128958,214,0 +170766129007,214,0 +170766129055,215,0 +170766129105,215,0 +170766129153,215,0 +170766129201,215,0 +170766129250,215,0 +170766129298,215,0 +170766129346,215,0 +170766129394,213,0 +170766129442,213,0 +170766129490,213,0 +170766129537,213,0 +170766129587,213,0 +170766129635,213,0 +170766129683,214,0 +170766129731,214,0 +170766129780,214,0 +170766129828,214,0 +170766129878,214,0 +170766129927,215,0 +170766129977,215,0 +170766130025,215,0 +170766130072,215,0 +170766130120,215,0 +170766130170,215,0 +170766130220,215,0 +170766130268,215,0 +170766130315,213,0 +170766130365,213,0 +170766130415,213,0 +170766130464,213,0 +170766130512,213,0 +170766130561,213,0 +170766130611,213,0 +170766130659,214,0 +170766130709,214,0 +170766130756,214,0 +170766130804,214,0 +170766130852,214,0 +170766130902,214,0 +170766130951,215,0 +170766130999,214,0 +170766131047,215,0 +170766131095,215,0 +170766131143,215,0 +170766131191,214,0 +170766131239,213,0 +170766131287,213,0 +170766131335,213,0 +170766131383,213,0 +170766131432,213,0 +170766131480,213,0 +170766131528,213,0 +170766131577,213,0 +170766131625,213,0 +170766131673,213,0 +170766131723,214,0 +170766131771,214,0 +170766131819,214,0 +170766131868,214,0 +170766131916,214,0 +170766131965,215,0 +170766132015,215,0 +170766132065,215,0 +170766132114,213,0 +170766132164,213,0 +170766132212,213,0 +170766132259,213,0 +170766132307,213,0 +170766132355,213,0 +170766132403,213,0 +170766132451,214,0 +170766132501,214,0 +170766132548,214,0 +170766132596,214,0 +170766132644,214,0 +170766132692,214,0 +170766132740,215,0 +170766132788,215,0 +170766132838,215,0 +170766132886,215,0 +170766132934,216,0 +170766132982,215,0 +170766133030,213,0 +170766133077,213,0 +170766133125,213,0 +170766133173,213,0 +170766133221,213,0 +170766133269,214,0 +170766133317,214,0 +170766133365,214,0 +170766133413,214,0 +170766133462,214,0 +170766133510,215,0 +170766133558,215,0 +170766133608,215,0 +170766133657,215,0 +170766133705,215,0 +170766133755,216,0 +170766133804,215,0 +170766133852,216,0 +170766133900,215,0 +170766133948,213,0 +170766133996,214,0 +170766134044,214,0 +170766134093,214,0 +170766134143,214,0 +170766134191,214,0 +170766134239,214,0 +170766134287,214,0 +170766134335,215,0 +170766134382,215,0 +170766134432,215,0 +170766134481,215,0 +170766134529,215,0 +170766134579,215,0 +170766134627,215,0 +170766134674,215,0 +170766134722,215,0 +170766134772,215,0 +170766134822,214,0 +170766134871,213,0 +170766134921,214,0 +170766134968,214,0 +170766135016,214,0 +170766135064,214,0 +170766135112,214,0 +170766135160,214,0 +170766135208,214,0 +170766135257,215,0 +170766135305,215,0 +170766135354,215,0 +170766135404,215,0 +170766135452,215,0 +170766135499,215,0 +170766135547,215,0 +170766135595,215,0 +170766135643,215,0 +170766135691,215,0 +170766135739,214,0 +170766135786,213,0 +170766135836,213,0 +170766135884,214,0 +170766135933,214,0 +170766135983,214,0 +170766136031,214,0 +170766136078,214,0 +170766136126,215,0 +170766136174,214,0 +170766136222,214,0 +170766136271,214,0 +170766136319,214,0 +170766136367,215,0 +170766136417,215,0 +170766136464,215,0 +170766136512,215,0 +170766136560,215,0 +170766136608,215,0 +170766136656,214,0 +170766136704,213,0 +170766136752,213,0 +170766136799,214,0 +170766136847,214,0 +170766136895,214,0 +170766136943,214,0 +170766136991,214,0 +170766137039,214,0 +170766137087,214,0 +170766137135,214,0 +170766137182,214,0 +170766137230,214,0 +170766137278,215,0 +170766137326,215,0 +170766137374,215,0 +170766137421,215,0 +170766137469,215,0 +170766137517,215,0 +170766137565,214,0 +170766137613,214,0 +170766137661,214,0 +170766137709,214,0 +170766137757,214,0 +170766137805,214,0 +170766137854,214,0 +170766137902,214,0 +170766137952,214,0 +170766138001,214,0 +170766138051,214,0 +170766138100,215,0 +170766138148,215,0 +170766138196,215,0 +170766138245,215,0 +170766138293,215,0 +170766138341,215,0 +170766138389,215,0 +170766138437,215,0 +170766138485,214,0 +170766138535,214,0 +170766138583,214,0 +170766138632,214,0 +170766138682,214,0 +170766138730,215,0 +170766138778,215,0 +170766138826,215,0 +170766138874,215,0 +170766138922,215,0 +170766138969,215,0 +170766139017,215,0 +170766139065,215,0 +170766139113,216,0 +170766139163,216,0 +170766139211,216,0 +170766139259,215,0 +170766139308,215,0 +170766139356,215,0 +170766139406,214,0 +170766139454,214,0 +170766139502,214,0 +170766139549,214,0 +170766139597,215,0 +170766139645,215,0 +170766139693,215,0 +170766139741,215,0 +170766139789,215,0 +170766139837,215,0 +170766139887,215,0 +170766139935,215,0 +170766139983,215,0 +170766140031,216,0 +170766140079,216,0 +170766140127,215,0 +170766140174,215,0 +170766140222,215,0 +170766140270,215,0 +170766140320,214,0 +170766140368,214,0 +170766140417,214,0 +170766140465,214,0 +170766140515,214,0 +170766140564,215,0 +170766140612,215,0 +170766140662,214,0 +170766140710,215,0 +170766140758,215,0 +170766140807,215,0 +170766140855,215,0 +170766140903,215,0 +170766140951,215,0 +170766140999,215,0 +170766141049,215,0 +170766141098,215,0 +170766141146,215,0 +170766141194,215,0 +170766141242,213,0 +170766141290,213,0 +170766141338,214,0 +170766141386,214,0 +170766141434,214,0 +170766141481,214,0 +170766141531,214,0 +170766141579,214,0 +170766141628,214,0 +170766141676,214,0 +170766141726,215,0 +170766141774,215,0 +170766141823,215,0 +170766141871,215,0 +170766141919,215,0 +170766141969,215,0 +170766142017,215,0 +170766142064,215,0 +170766142112,215,0 +170766142160,213,0 +170766142208,213,0 +170766142257,213,0 +170766142305,213,0 +170766142353,213,0 +170766142403,214,0 +170766142452,214,0 +170766142500,214,0 +170766142548,214,0 +170766142596,215,0 +170766142644,214,0 +170766142692,215,0 +170766142740,215,0 +170766142788,215,0 +170766142837,215,0 +170766142887,215,0 +170766142936,215,0 +170766142984,215,0 +170766143034,215,0 +170766143082,213,0 +170766143131,213,0 +170766143179,213,0 +170766143227,213,0 +170766143276,214,0 +170766143324,214,0 +170766143374,214,0 +170766143422,214,0 +170766143469,214,0 +170766143519,214,0 +170766143567,215,0 +170766143615,215,0 +170766143664,215,0 +170766143712,215,0 +170766143762,215,0 +170766143811,215,0 +170766143859,215,0 +170766143907,215,0 +170766143955,214,0 +170766144003,213,0 +170766144051,213,0 +170766144099,213,0 +170766144147,214,0 +170766144195,214,0 +170766144243,214,0 +170766144291,214,0 +170766144339,214,0 +170766144387,214,0 +170766144436,214,0 +170766144484,214,0 +170766144532,215,0 +170766144580,215,0 +170766144628,215,0 +170766144676,215,0 +170766144725,215,0 +170766144773,215,0 +170766144821,215,0 +170766144869,214,0 +170766144919,213,0 +170766144966,213,0 +170766145014,213,0 +170766145062,213,0 +170766145110,214,0 +170766145158,214,0 +170766145206,214,0 +170766145254,214,0 +170766145302,214,0 +170766145352,214,0 +170766145399,214,0 +170766145447,215,0 +170766145497,215,0 +170766145545,215,0 +170766145594,215,0 +170766145642,214,0 +170766145690,215,0 +170766145740,215,0 +170766145788,214,0 +170766145836,213,0 +170766145885,213,0 +170766145933,213,0 +170766145981,214,0 +170766146029,214,0 +170766146077,214,0 +170766146125,214,0 +170766146174,214,0 +170766146224,214,0 +170766146272,214,0 +170766146320,215,0 +170766146369,215,0 +170766146417,215,0 +170766146465,215,0 +170766146514,215,0 +170766146564,215,0 +170766146614,215,0 +170766146661,215,0 +170766146709,213,0 +170766146757,213,0 +170766146805,213,0 +170766146853,213,0 +170766146903,213,0 +170766146951,213,0 +170766146999,214,0 +170766147047,214,0 +170766147096,214,0 +170766147146,214,0 +170766147195,214,0 +170766147245,214,0 +170766147292,215,0 +170766147340,215,0 +170766147390,215,0 +170766147438,215,0 +170766147486,215,0 +170766147534,215,0 +170766147582,215,0 +170766147629,213,0 +170766147677,213,0 +170766147727,213,0 +170766147775,213,0 +170766147823,213,0 +170766147871,213,0 +170766147919,214,0 +170766147967,214,0 +170766148016,214,0 +170766148064,214,0 +170766148112,214,0 +170766148160,214,0 +170766148208,215,0 +170766148257,215,0 +170766148305,215,0 +170766148353,215,0 +170766148401,215,0 +170766148449,215,0 +170766148497,215,0 +170766148545,213,0 +170766148593,213,0 +170766148640,213,0 +170766148690,214,0 +170766148738,214,0 +170766148786,214,0 +170766148834,214,0 +170766148883,214,0 +170766148931,214,0 +170766148981,214,0 +170766149030,214,0 +170766149078,214,0 +170766149126,215,0 +170766149174,215,0 +170766149222,215,0 +170766149270,215,0 +170766149318,215,0 +170766149366,215,0 +170766149414,215,0 +170766149462,213,0 +170766149510,213,0 +170766149557,213,0 +170766149607,213,0 +170766149655,214,0 +170766149703,214,0 +170766149751,214,0 +170766149798,214,0 +170766149846,214,0 +170766149896,214,0 +170766149944,214,0 +170766149991,214,0 +170766150039,214,0 +170766150087,215,0 +170766150135,215,0 +170766150183,215,0 +170766150232,215,0 +170766150282,215,0 +170766150330,215,0 +170766150379,213,0 +170766150427,213,0 +170766150475,213,0 +170766150525,213,0 +170766150572,213,0 +170766150620,213,0 +170766150670,213,0 +170766150718,213,0 +170766150766,214,0 +170766150813,214,0 +170766150861,214,0 +170766150909,214,0 +170766150957,214,0 +170766151007,214,0 +170766151056,214,0 +170766151106,215,0 +170766151155,215,0 +170766151203,215,0 +170766151251,214,0 +170766151300,213,0 +170766151348,213,0 +170766151396,213,0 +170766151444,213,0 +170766151492,213,0 +170766151540,213,0 +170766151588,213,0 +170766151636,213,0 +170766151684,214,0 +170766151732,214,0 +170766151780,214,0 +170766151828,214,0 +170766151876,214,0 +170766151924,215,0 +170766151971,215,0 +170766152019,215,0 +170766152067,215,0 +170766152115,215,0 +170766152163,214,0 +170766152211,213,0 +170766152259,213,0 +170766152309,213,0 +170766152357,213,0 +170766152406,214,0 +170766152454,214,0 +170766152503,214,0 +170766152551,214,0 +170766152599,214,0 +170766152649,215,0 +170766152697,215,0 +170766152745,215,0 +170766152793,215,0 +170766152842,215,0 +170766152890,215,0 +170766152940,215,0 +170766152988,215,0 +170766153036,215,0 +170766153083,214,0 +170766153131,213,0 +170766153181,213,0 +170766153229,213,0 +170766153277,214,0 +170766153325,214,0 +170766153373,214,0 +170766153422,214,0 +170766153470,214,0 +170766153518,214,0 +170766153566,214,0 +170766153614,215,0 +170766153662,215,0 +170766153711,215,0 +170766153759,215,0 +170766153807,215,0 +170766153855,215,0 +170766153905,215,0 +170766153953,215,0 +170766154001,213,0 +170766154049,213,0 +170766154097,214,0 +170766154144,213,0 +170766154192,214,0 +170766154240,214,0 +170766154288,214,0 +170766154336,214,0 +170766154384,214,0 +170766154434,214,0 +170766154482,214,0 +170766154529,214,0 +170766154577,214,0 +170766154627,215,0 +170766154675,215,0 +170766154723,215,0 +170766154770,215,0 +170766154818,215,0 +170766154866,215,0 +170766154914,214,0 +170766154962,214,0 +170766155010,213,0 +170766155057,214,0 +170766155105,213,0 +170766155155,214,0 +170766155203,214,0 +170766155251,214,0 +170766155299,214,0 +170766155346,214,0 +170766155394,214,0 +170766155442,215,0 +170766155490,215,0 +170766155538,215,0 +170766155588,215,0 +170766155636,215,0 +170766155683,215,0 +170766155733,215,0 +170766155783,215,0 +170766155831,213,0 +170766155880,213,0 +170766155928,213,0 +170766155976,213,0 +170766156024,213,0 +170766156072,214,0 +170766156122,214,0 +170766156170,214,0 +170766156218,214,0 +170766156266,214,0 +170766156315,214,0 +170766156365,215,0 +170766156414,215,0 +170766156462,215,0 +170766156510,215,0 +170766156560,215,0 +170766156609,215,0 +170766156659,215,0 +170766156708,215,0 +170766156758,213,0 +170766156806,214,0 +170766156854,214,0 +170766156902,214,0 +170766156950,214,0 +170766156998,214,0 +170766157045,214,0 +170766157093,214,0 +170766157141,215,0 +170766157189,214,0 +170766157237,215,0 +170766157285,215,0 +170766157333,215,0 +170766157383,215,0 +170766157431,215,0 +170766157479,215,0 +170766157526,215,0 +170766157574,215,0 +170766157622,214,0 +170766157670,214,0 +170766157720,214,0 +170766157769,214,0 +170766157817,214,0 +170766157867,214,0 +170766157915,214,0 +170766157963,215,0 +170766158012,215,0 +170766158062,215,0 +170766158111,215,0 +170766158159,215,0 +170766158207,215,0 +170766158255,215,0 +170766158303,215,0 +170766158351,216,0 +170766158399,215,0 +170766158447,215,0 +170766158495,215,0 +170766158544,214,0 +170766158592,214,0 +170766158642,213,0 +170766158690,214,0 +170766158737,214,0 +170766158785,214,0 +170766158833,214,0 +170766158881,215,0 +170766158931,215,0 +170766158979,215,0 +170766159027,215,0 +170766159075,215,0 +170766159123,215,0 +170766159172,215,0 +170766159220,215,0 +170766159270,215,0 +170766159319,215,0 +170766159367,215,0 +170766159415,215,0 +170766159465,214,0 +170766159514,214,0 +170766159562,213,0 +170766159610,214,0 +170766159658,214,0 +170766159706,214,0 +170766159754,214,0 +170766159803,214,0 +170766159851,214,0 +170766159901,215,0 +170766159949,215,0 +170766159997,215,0 +170766160044,215,0 +170766160092,215,0 +170766160140,215,0 +170766160188,215,0 +170766160236,215,0 +170766160284,215,0 +170766160332,215,0 +170766160381,213,0 +170766160429,214,0 +170766160478,214,0 +170766160528,214,0 +170766160576,214,0 +170766160624,214,0 +170766160672,214,0 +170766160720,215,0 +170766160768,215,0 +170766160817,215,0 +170766160865,215,0 +170766160913,215,0 +170766160961,215,0 +170766161010,215,0 +170766161058,215,0 +170766161108,215,0 +170766161157,215,0 +170766161205,215,0 +170766161254,214,0 +170766161304,213,0 +170766161352,214,0 +170766161400,214,0 +170766161449,214,0 +170766161499,214,0 +170766161547,214,0 +170766161595,214,0 +170766161643,214,0 +170766161691,214,0 +170766161739,214,0 +170766161788,215,0 +170766161836,215,0 +170766161884,215,0 +170766161932,215,0 +170766161980,215,0 +170766162028,215,0 +170766162078,215,0 +170766162127,215,0 +170766162177,214,0 +170766162225,213,0 +170766162274,213,0 +170766162322,213,0 +170766162371,213,0 +170766162419,213,0 +170766162467,214,0 +170766162515,214,0 +170766162563,214,0 +170766162611,214,0 +170766162659,214,0 +170766162707,214,0 +170766162755,214,0 +170766162803,215,0 +170766162851,215,0 +170766162899,215,0 +170766162947,215,0 +170766162995,215,0 +170766163042,215,0 +170766163090,214,0 +170766163138,213,0 +170766163188,213,0 +170766163236,213,0 +170766163284,213,0 +170766163331,213,0 +170766163379,214,0 +170766163429,214,0 +170766163477,214,0 +170766163524,214,0 +170766163572,215,0 +170766163622,215,0 +170766163671,215,0 +170766163721,215,0 +170766163769,215,0 +170766163817,215,0 +170766163866,215,0 +170766163916,215,0 +170766163964,215,0 +170766164012,214,0 +170766164060,213,0 +170766164108,214,0 +170766164157,213,0 +170766164205,214,0 +170766164253,214,0 +170766164301,214,0 +170766164349,214,0 +170766164398,215,0 +170766164446,215,0 +170766164496,215,0 +170766164544,215,0 +170766164592,215,0 +170766164640,215,0 +170766164689,215,0 +170766164737,215,0 +170766164785,215,0 +170766164833,216,0 +170766164882,215,0 +170766164930,213,0 +170766164978,214,0 +170766165027,214,0 +170766165075,214,0 +170766165123,214,0 +170766165171,214,0 +170766165219,214,0 +170766165267,214,0 +170766165315,215,0 +170766165363,215,0 +170766165413,215,0 +170766165461,215,0 +170766165509,215,0 +170766165556,215,0 +170766165606,215,0 +170766165654,215,0 +170766165703,215,0 +170766165753,215,0 +170766165802,215,0 +170766165850,213,0 +170766165900,213,0 +170766165948,214,0 +170766165996,214,0 +170766166044,214,0 +170766166092,214,0 +170766166140,214,0 +170766166189,214,0 +170766166237,214,0 +170766166285,215,0 +170766166333,215,0 +170766166382,215,0 +170766166430,215,0 +170766166478,215,0 +170766166526,215,0 +170766166574,215,0 +170766166624,215,0 +170766166672,215,0 +170766166720,215,0 +170766166767,213,0 +170766166817,213,0 +170766166867,213,0 +170766166914,213,0 +170766166962,214,0 +170766167012,214,0 +170766167060,214,0 +170766167107,214,0 +170766167157,214,0 +170766167205,215,0 +170766167253,214,0 +170766167300,215,0 +170766167348,215,0 +170766167396,215,0 +170766167444,215,0 +170766167494,215,0 +170766167542,215,0 +170766167589,215,0 +170766167639,214,0 +170766167686,213,0 +170766167736,213,0 +170766167784,213,0 +170766167832,213,0 +170766167879,213,0 +170766167927,213,0 +170766167975,214,0 +170766168023,214,0 +170766168071,214,0 +170766168118,214,0 +170766168166,214,0 +170766168214,215,0 +170766168262,215,0 +170766168311,215,0 +170766168359,215,0 +170766168407,215,0 +170766168455,215,0 +170766168503,215,0 +170766168551,214,0 +170766168599,213,0 +170766168646,213,0 +170766168694,213,0 +170766168742,213,0 +170766168792,213,0 +170766168840,213,0 +170766168888,213,0 +170766168937,213,0 +170766168987,213,0 +170766169036,214,0 +170766169085,214,0 +170766169135,214,0 +170766169184,214,0 +170766169232,214,0 +170766169280,214,0 +170766169328,214,0 +170766169378,215,0 +170766169427,215,0 +170766169477,214,0 +170766169525,213,0 +170766169573,213,0 +170766169620,213,0 +170766169670,213,0 +170766169718,213,0 +170766169766,213,0 +170766169814,213,0 +170766169862,214,0 +170766169911,214,0 +170766169961,214,0 +170766170010,214,0 +170766170058,214,0 +170766170108,215,0 +170766170156,215,0 +170766170204,215,0 +170766170253,215,0 +170766170301,215,0 +170766170350,215,0 +170766170400,214,0 +170766170448,213,0 +170766170495,213,0 +170766170543,213,0 +170766170591,213,0 +170766170639,214,0 +170766170687,214,0 +170766170736,214,0 +170766170784,214,0 +170766170832,214,0 +170766170880,214,0 +170766170927,214,0 +170766170975,215,0 +170766171023,215,0 +170766171071,215,0 +170766171119,215,0 +170766171167,215,0 +170766171215,215,0 +170766171263,215,0 +170766171310,213,0 +170766171358,213,0 +170766171406,214,0 +170766171454,214,0 +170766171502,214,0 +170766171550,214,0 +170766171598,214,0 +170766171647,214,0 +170766171695,215,0 +170766171743,215,0 +170766171791,215,0 +170766171839,215,0 +170766171887,215,0 +170766171936,215,0 +170766171986,215,0 +170766172034,215,0 +170766172083,215,0 +170766172131,215,0 +170766172180,215,0 +170766172228,214,0 +170766172276,213,0 +170766172326,214,0 +170766172374,214,0 +170766172421,214,0 +170766172469,214,0 +170766172519,215,0 +170766172569,215,0 +170766172617,215,0 +170766172666,215,0 +170766172716,215,0 +170766172765,215,0 +170766172813,215,0 +170766172863,216,0 +170766172911,216,0 +170766172959,215,0 +170766173007,215,0 +170766173055,215,0 +170766173102,215,0 +170766173150,213,0 +170766173198,213,0 +170766173248,214,0 +170766173296,214,0 +170766173345,214,0 +170766173395,214,0 +170766173442,214,0 +170766173490,214,0 +170766173538,214,0 +170766173586,214,0 +170766173634,215,0 +170766173684,215,0 +170766173733,215,0 +170766173781,215,0 +170766173829,215,0 +170766173877,215,0 +170766173927,215,0 +170766173976,215,0 +170766174024,214,0 +170766174072,213,0 +170766174120,213,0 +170766174168,213,0 +170766174215,213,0 +170766174263,213,0 +170766174311,214,0 +170766174359,214,0 +170766174408,214,0 +170766174456,214,0 +170766174504,214,0 +170766174552,214,0 +170766174602,214,0 +170766174650,214,0 +170766174698,214,0 +170766174746,214,0 +170766174793,215,0 +170766174841,215,0 +170766174889,215,0 +170766174938,215,0 +170766174986,215,0 +170766175034,215,0 +170766175082,215,0 +170766175130,215,0 +170766175178,215,0 +170766175226,215,0 +170766175274,216,0 +170766175323,215,0 +170766175371,215,0 +170766175419,213,0 +170766175467,213,0 +170766175515,213,0 +170766175565,214,0 +170766175612,214,0 +170766175662,214,0 +170766175711,214,0 +170766175761,214,0 +170766175809,214,0 +170766175857,214,0 +170766175906,214,0 +170766175954,215,0 +170766176002,215,0 +170766176052,215,0 +170766176099,215,0 +170766176147,215,0 +170766176195,215,0 +170766176245,215,0 +170766176294,214,0 +170766176342,213,0 +170766176392,213,0 +170766176440,213,0 +170766176488,213,0 +170766176535,213,0 +170766176583,213,0 +170766176631,214,0 +170766176679,214,0 +170766176727,214,0 +170766176775,214,0 +170766176823,214,0 +170766176871,214,0 +170766176921,215,0 +170766176969,214,0 +170766177018,215,0 +170766177066,215,0 +170766177116,215,0 +170766177164,215,0 +170766177213,214,0 +170766177261,213,0 +170766177309,214,0 +170766177357,214,0 +170766177405,214,0 +170766177453,214,0 +170766177501,214,0 +170766177549,214,0 +170766177597,214,0 +170766177644,215,0 +170766177692,215,0 +170766177740,215,0 +170766177788,215,0 +170766177836,215,0 +170766177884,215,0 +170766177933,215,0 +170766177981,215,0 +170766178031,215,0 +170766178080,215,0 +170766178128,214,0 +170766178176,213,0 +170766178224,213,0 +170766178272,214,0 +170766178321,214,0 +170766178369,214,0 +170766178417,214,0 +170766178465,214,0 +170766178513,214,0 +170766178561,214,0 +170766178611,214,0 +170766178659,215,0 +170766178708,215,0 +170766178756,215,0 +170766178805,215,0 +170766178853,215,0 +170766178903,215,0 +170766178951,216,0 +170766178999,215,0 +170766179049,213,0 +170766179098,213,0 +170766179146,213,0 +170766179194,214,0 +170766179242,214,0 +170766179291,214,0 +170766179339,214,0 +170766179387,214,0 +170766179435,214,0 +170766179483,215,0 +170766179531,215,0 +170766179580,215,0 +170766179628,215,0 +170766179676,215,0 +170766179724,215,0 +170766179772,215,0 +170766179820,215,0 +170766179868,215,0 +170766179916,215,0 +170766179965,213,0 +170766180013,213,0 +170766180061,213,0 +170766180109,213,0 +170766180157,214,0 +170766180204,214,0 +170766180252,214,0 +170766180300,214,0 +170766180348,214,0 +170766180396,214,0 +170766180444,214,0 +170766180492,215,0 +170766180539,215,0 +170766180587,215,0 +170766180635,215,0 +170766180683,215,0 +170766180733,215,0 +170766180780,215,0 +170766180828,215,0 +170766180876,213,0 +170766180924,213,0 +170766180972,213,0 +170766181020,213,0 +170766181068,213,0 +170766181115,214,0 +170766181163,214,0 +170766181211,214,0 +170766181259,214,0 +170766181307,214,0 +170766181355,214,0 +170766181403,215,0 +170766181451,215,0 +170766181498,215,0 +170766181546,215,0 +170766181594,215,0 +170766181642,215,0 +170766181690,215,0 +170766181739,215,0 +170766181787,213,0 +170766181835,213,0 +170766181883,213,0 +170766181931,213,0 +170766181978,214,0 +170766182028,214,0 +170766182076,214,0 +170766182124,214,0 +170766182172,214,0 +170766182219,215,0 +170766182267,215,0 +170766182315,215,0 +170766182363,215,0 +170766182411,215,0 +170766182458,215,0 +170766182506,215,0 +170766182554,214,0 +170766182602,215,0 +170766182650,215,0 +170766182698,213,0 +170766182746,213,0 +170766182794,213,0 +170766182842,214,0 +170766182890,213,0 +170766182938,213,0 +170766182987,214,0 +170766183037,214,0 +170766183086,214,0 +170766183136,214,0 +170766183184,215,0 +170766183233,215,0 +170766183283,215,0 +170766183331,215,0 +170766183379,215,0 +170766183428,215,0 +170766183476,215,0 +170766183524,215,0 +170766183572,214,0 +170766183620,213,0 +170766183668,213,0 +170766183718,213,0 +170766183765,213,0 +170766183815,214,0 +170766183863,214,0 +170766183911,214,0 +170766183959,214,0 +170766184007,214,0 +170766184055,214,0 +170766184103,214,0 +170766184152,214,0 +170766184200,215,0 +170766184250,215,0 +170766184297,215,0 +170766184345,215,0 +170766184393,215,0 +170766184443,215,0 +170766184491,214,0 +170766184539,213,0 +170766184587,213,0 +170766184635,213,0 +170766184683,214,0 +170766184732,214,0 +170766184782,214,0 +170766184831,214,0 +170766184879,214,0 +170766184927,215,0 +170766184975,215,0 +170766185023,215,0 +170766185071,215,0 +170766185119,215,0 +170766185168,215,0 +170766185216,215,0 +170766185266,215,0 +170766185315,215,0 +170766185365,215,0 +170766185413,213,0 +170766185461,213,0 +170766185509,213,0 +170766185558,213,0 +170766185606,214,0 +170766185654,214,0 +170766185702,214,0 +170766185750,214,0 +170766185800,214,0 +170766185849,215,0 +170766185899,215,0 +170766185948,215,0 +170766185998,215,0 +170766186046,215,0 +170766186095,215,0 +170766186145,215,0 +170766186194,215,0 +170766186244,215,0 +170766186292,214,0 +170766186341,213,0 +170766186391,213,0 +170766186440,213,0 +170766186488,213,0 +170766186538,214,0 +170766186586,214,0 +170766186635,214,0 +170766186683,214,0 +170766186733,214,0 +170766186781,214,0 +170766186830,214,0 +170766186878,215,0 +170766186926,215,0 +170766186974,215,0 +170766187023,215,0 +170766187071,215,0 +170766187121,215,0 +170766187169,215,0 +170766187217,213,0 +170766187265,213,0 +170766187313,213,0 +170766187361,213,0 +170766187410,213,0 +170766187458,213,0 +170766187506,213,0 +170766187554,213,0 +170766187603,214,0 +170766187651,214,0 +170766187699,214,0 +170766187747,214,0 +170766187795,214,0 +170766187843,214,0 +170766187891,215,0 +170766187940,214,0 +170766187990,215,0 +170766188038,215,0 +170766188086,215,0 +170766188134,213,0 +170766188181,213,0 +170766188229,213,0 +170766188277,213,0 +170766188325,213,0 +170766188373,213,0 +170766188421,214,0 +170766188469,214,0 +170766188517,214,0 +170766188564,214,0 +170766188612,214,0 +170766188660,214,0 +170766188710,214,0 +170766188758,214,0 +170766188806,215,0 +170766188853,215,0 +170766188901,215,0 +170766188949,215,0 +170766188999,215,0 +170766189047,213,0 +170766189096,213,0 +170766189144,213,0 +170766189192,213,0 +170766189241,213,0 +170766189289,213,0 +170766189337,214,0 +170766189385,214,0 +170766189433,214,0 +170766189481,214,0 +170766189530,214,0 +170766189580,215,0 +170766189628,215,0 +170766189677,215,0 +170766189725,215,0 +170766189773,215,0 +170766189823,215,0 +170766189871,215,0 +170766189919,215,0 +170766189966,213,0 +170766190014,213,0 +170766190062,213,0 +170766190112,213,0 +170766190160,213,0 +170766190208,214,0 +170766190256,214,0 +170766190303,214,0 +170766190351,214,0 +170766190401,214,0 +170766190449,215,0 +170766190497,215,0 +170766190546,215,0 +170766190594,215,0 +170766190642,215,0 +170766190691,215,0 +170766190741,215,0 +170766190790,215,0 +170766190840,215,0 +170766190888,213,0 +170766190937,213,0 +170766190988,213,0 +170766191036,213,0 +170766191085,214,0 +170766191135,214,0 +170766191183,214,0 +170766191231,214,0 +170766191279,214,0 +170766191326,214,0 +170766191374,214,0 +170766191422,215,0 +170766191470,215,0 +170766191518,215,0 +170766191566,215,0 +170766191614,215,0 +170766191663,215,0 +170766191712,215,0 +170766191760,214,0 +170766191810,213,0 +170766191858,213,0 +170766191906,213,0 +170766191954,214,0 +170766192001,214,0 +170766192049,214,0 +170766192097,214,0 +170766192145,214,0 +170766192193,214,0 +170766192241,214,0 +170766192289,214,0 +170766192337,215,0 +170766192385,214,0 +170766192433,215,0 +170766192481,215,0 +170766192528,215,0 +170766192576,215,0 +170766192626,215,0 +170766192674,214,0 +170766192722,213,0 +170766192771,213,0 +170766192821,213,0 +170766192870,213,0 +170766192918,214,0 +170766192966,214,0 +170766193014,214,0 +170766193062,214,0 +170766193110,214,0 +170766193158,214,0 +170766193206,214,0 +170766193254,215,0 +170766193302,215,0 +170766193350,215,0 +170766193398,215,0 +170766193446,215,0 +170766193494,215,0 +170766193541,215,0 +170766193591,214,0 +170766193640,213,0 +170766193688,213,0 +170766193738,213,0 +170766193786,214,0 +170766193834,214,0 +170766193882,214,0 +170766193931,214,0 +170766193979,214,0 +170766194027,214,0 +170766194076,214,0 +170766194126,215,0 +170766194174,215,0 +170766194222,215,0 +170766194270,215,0 +170766194318,215,0 +170766194366,215,0 +170766194414,215,0 +170766194463,215,0 +170766194511,213,0 +170766194560,213,0 +170766194608,213,0 +170766194656,214,0 +170766194706,214,0 +170766194754,214,0 +170766194802,214,0 +170766194850,214,0 +170766194898,214,0 +170766194945,214,0 +170766194993,214,0 +170766195041,215,0 +170766195089,215,0 +170766195137,215,0 +170766195187,215,0 +170766195235,215,0 +170766195284,215,0 +170766195332,215,0 +170766195380,215,0 +170766195429,214,0 +170766195477,214,0 +170766195525,214,0 +170766195573,214,0 +170766195621,214,0 +170766195670,214,0 +170766195718,215,0 +170766195766,215,0 +170766195816,215,0 +170766195864,215,0 +170766195913,215,0 +170766195961,215,0 +170766196009,215,0 +170766196057,216,0 +170766196105,216,0 +170766196153,215,0 +170766196201,215,0 +170766196250,215,0 +170766196298,215,0 +170766196346,213,0 +170766196394,213,0 +170766196442,213,0 +170766196492,214,0 +170766196541,214,0 +170766196589,214,0 +170766196639,214,0 +170766196687,214,0 +170766196735,215,0 +170766196782,215,0 +170766196832,215,0 +170766196881,215,0 +170766196929,215,0 +170766196977,215,0 +170766197027,215,0 +170766197076,215,0 +170766197124,215,0 +170766197172,215,0 +170766197222,215,0 +170766197270,213,0 +170766197317,213,0 +170766197365,213,0 +170766197415,213,0 +170766197463,214,0 +170766197511,214,0 +170766197560,214,0 +170766197608,214,0 +170766197656,214,0 +170766197705,214,0 +170766197753,214,0 +170766197801,215,0 +170766197849,214,0 +170766197899,215,0 +170766197947,215,0 +170766197995,215,0 +170766198043,215,0 +170766198092,215,0 +170766198140,214,0 +170766198188,213,0 +170766198236,213,0 +170766198285,213,0 +170766198333,214,0 +170766198381,213,0 +170766198429,214,0 +170766198479,214,0 +170766198526,214,0 +170766198574,214,0 +170766198624,214,0 +170766198672,215,0 +170766198720,215,0 +170766198769,215,0 +170766198817,215,0 +170766198865,215,0 +170766198913,215,0 +170766198963,215,0 +170766199011,215,0 +170766199060,214,0 +170766199108,213,0 +170766199156,213,0 +170766199204,213,0 +170766199252,214,0 +170766199300,213,0 +170766199349,214,0 +170766199397,214,0 +170766199445,214,0 +170766199495,214,0 +170766199544,214,0 +170766199592,214,0 +170766199640,214,0 +170766199690,215,0 +170766199737,215,0 +170766199785,215,0 +170766199833,215,0 +170766199881,215,0 +170766199929,215,0 +170766199977,215,0 +170766200025,213,0 +170766200073,213,0 +170766200121,213,0 +170766200171,214,0 +170766200220,213,0 +170766200268,214,0 +170766200318,214,0 +170766200367,214,0 +170766200415,214,0 +170766200463,215,0 +170766200512,215,0 +170766200562,215,0 +170766200610,215,0 +170766200658,215,0 +170766200706,214,0 +170766200754,215,0 +170766200802,215,0 +170766200850,215,0 +170766200899,214,0 +170766200947,213,0 +170766200995,213,0 +170766201043,213,0 +170766201091,214,0 +170766201140,214,0 +170766201188,214,0 +170766201236,214,0 +170766201284,214,0 +170766201332,214,0 +170766201380,214,0 +170766201428,215,0 +170766201476,215,0 +170766201524,215,0 +170766201574,215,0 +170766201621,215,0 +170766201669,215,0 +170766201719,215,0 +170766201768,215,0 +170766201818,214,0 +170766201866,213,0 +170766201914,213,0 +170766201963,213,0 +170766202011,214,0 +170766202059,214,0 +170766202109,214,0 +170766202158,214,0 +170766202206,214,0 +170766202256,214,0 +170766202304,215,0 +170766202352,215,0 +170766202399,215,0 +170766202447,215,0 +170766202495,215,0 +170766202545,215,0 +170766202593,215,0 +170766202641,215,0 +170766202689,215,0 +170766202738,214,0 +170766202788,213,0 +170766202836,213,0 +170766202884,213,0 +170766202933,213,0 +170766202981,213,0 +170766203030,214,0 +170766203078,214,0 +170766203126,214,0 +170766203174,214,0 +170766203222,214,0 +170766203270,215,0 +170766203318,215,0 +170766203366,215,0 +170766203416,215,0 +170766203465,215,0 +170766203513,215,0 +170766203561,215,0 +170766203609,215,0 +170766203657,214,0 +170766203705,213,0 +170766203753,213,0 +170766203801,214,0 +170766203849,214,0 +170766203896,214,0 +170766203944,214,0 +170766203992,214,0 +170766204040,214,0 +170766204089,214,0 +170766204137,215,0 +170766204185,215,0 +170766204235,215,0 +170766204284,215,0 +170766204332,215,0 +170766204380,215,0 +170766204428,215,0 +170766204476,215,0 +170766204524,215,0 +170766204574,214,0 +170766204623,213,0 +170766204671,214,0 +170766204719,214,0 +170766204767,214,0 +170766204815,214,0 +170766204863,214,0 +170766204911,214,0 +170766204960,214,0 +170766205010,214,0 +170766205058,215,0 +170766205107,215,0 +170766205155,215,0 +170766205203,215,0 +170766205253,215,0 +170766205301,215,0 +170766205349,215,0 +170766205398,216,0 +170766205446,215,0 +170766205495,214,0 +170766205545,213,0 +170766205593,214,0 +170766205641,214,0 +170766205689,214,0 +170766205738,214,0 +170766205786,214,0 +170766205836,214,0 +170766205884,215,0 +170766205932,215,0 +170766205981,215,0 +170766206031,215,0 +170766206080,215,0 +170766206130,215,0 +170766206179,215,0 +170766206229,215,0 +170766206277,215,0 +170766206325,216,0 +170766206373,215,0 +170766206421,214,0 +170766206469,214,0 +170766206518,214,0 +170766206566,214,0 +170766206616,214,0 +170766206664,214,0 +170766206712,214,0 +170766206759,214,0 +170766206809,214,0 +170766206857,214,0 +170766206905,215,0 +170766206953,215,0 +170766207001,215,0 +170766207050,215,0 +170766207098,215,0 +170766207146,215,0 +170766207194,215,0 +170766207242,215,0 +170766207290,215,0 +170766207338,213,0 +170766207386,213,0 +170766207434,213,0 +170766207483,214,0 +170766207531,214,0 +170766207581,214,0 +170766207629,214,0 +170766207678,214,0 +170766207726,214,0 +170766207774,214,0 +170766207822,214,0 +170766207870,215,0 +170766207918,215,0 +170766207967,215,0 +170766208015,215,0 +170766208065,215,0 +170766208115,215,0 +170766208163,215,0 +170766208210,215,0 +170766208258,213,0 +170766208308,213,0 +170766208357,214,0 +170766208405,214,0 +170766208453,214,0 +170766208501,214,0 +170766208549,214,0 +170766208599,214,0 +170766208647,215,0 +170766208695,215,0 +170766208742,215,0 +170766208790,215,0 +170766208838,216,0 +170766208886,215,0 +170766208934,216,0 +170766208982,215,0 +170766209030,215,0 +170766209078,215,0 +170766209127,214,0 +170766209175,213,0 +170766209223,214,0 +170766209271,214,0 +170766209319,214,0 +170766209367,214,0 +170766209417,214,0 +170766209465,215,0 +170766209513,215,0 +170766209561,215,0 +170766209610,215,0 +170766209660,215,0 +170766209708,215,0 +170766209756,215,0 +170766209803,215,0 +170766209852,215,0 +170766209899,215,0 +170766209949,215,0 +170766209997,215,0 +170766210046,215,0 +170766210094,214,0 +170766210142,213,0 +170766210192,214,0 +170766210241,214,0 +170766210289,214,0 +170766210339,214,0 +170766210387,214,0 +170766210436,214,0 +170766210484,214,0 +170766210532,215,0 +170766210580,215,0 +170766210628,215,0 +170766210676,215,0 +170766210723,215,0 +170766210771,215,0 +170766210819,215,0 +170766210867,215,0 +170766210915,215,0 +170766210963,214,0 +170766211011,213,0 +170766211059,213,0 +170766211106,214,0 +170766211154,214,0 +170766211202,214,0 +170766211250,214,0 +170766211298,214,0 +170766211346,214,0 +170766211394,214,0 +170766211443,214,0 +170766211492,215,0 +170766211540,215,0 +170766211588,215,0 +170766211636,215,0 +170766211686,215,0 +170766211735,215,0 +170766211785,215,0 +170766211833,215,0 +170766211882,214,0 +170766211930,213,0 +170766211980,213,0 +170766212027,213,0 +170766212075,214,0 +170766212123,214,0 +170766212171,214,0 +170766212220,214,0 +170766212268,214,0 +170766212316,214,0 +170766212364,214,0 +170766212412,215,0 +170766212461,215,0 +170766212509,215,0 +170766212557,215,0 +170766212605,215,0 +170766212653,215,0 +170766212701,215,0 +170766212750,215,0 +170766212800,214,0 +170766212848,213,0 +170766212897,213,0 +170766212947,214,0 +170766212997,214,0 +170766213045,214,0 +170766213094,214,0 +170766213142,214,0 +170766213190,214,0 +170766213238,214,0 +170766213286,215,0 +170766213334,215,0 +170766213382,215,0 +170766213430,215,0 +170766213478,215,0 +170766213526,215,0 +170766213574,215,0 +170766213622,215,0 +170766213669,215,0 +170766213717,214,0 +170766213765,213,0 +170766213813,214,0 +170766213861,214,0 +170766213909,214,0 +170766213957,214,0 +170766214004,214,0 +170766214052,214,0 +170766214100,215,0 +170766214148,215,0 +170766214197,215,0 +170766214245,215,0 +170766214293,215,0 +170766214341,215,0 +170766214389,215,0 +170766214438,215,0 +170766214486,215,0 +170766214534,216,0 +170766214582,215,0 +170766214630,214,0 +170766214679,213,0 +170766214729,213,0 +170766214777,214,0 +170766214826,214,0 +170766214874,214,0 +170766214924,214,0 +170766214972,214,0 +170766215020,214,0 +170766215069,214,0 +170766215117,214,0 +170766215167,215,0 +170766215215,215,0 +170766215263,215,0 +170766215311,215,0 +170766215358,215,0 +170766215406,215,0 +170766215454,215,0 +170766215502,215,0 +170766215550,214,0 +170766215598,213,0 +170766215646,213,0 +170766215694,213,0 +170766215743,214,0 +170766215793,214,0 +170766215841,214,0 +170766215889,214,0 +170766215937,214,0 +170766215985,214,0 +170766216034,214,0 +170766216082,215,0 +170766216132,215,0 +170766216181,215,0 +170766216231,215,0 +170766216280,215,0 +170766216328,215,0 +170766216378,215,0 +170766216426,215,0 +170766216475,214,0 +170766216523,213,0 +170766216573,213,0 +170766216622,213,0 +170766216670,214,0 +170766216718,213,0 +170766216766,213,0 +170766216814,214,0 +170766216863,214,0 +170766216911,214,0 +170766216959,214,0 +170766217007,214,0 +170766217055,215,0 +170766217105,215,0 +170766217154,215,0 +170766217202,215,0 +170766217252,215,0 +170766217300,215,0 +170766217348,215,0 +170766217396,214,0 +170766217445,213,0 +170766217493,213,0 +170766217541,214,0 +170766217589,214,0 +170766217637,214,0 +170766217685,214,0 +170766217733,214,0 +170766217781,214,0 +170766217829,214,0 +170766217878,214,0 +170766217926,215,0 +170766217976,215,0 +170766218023,215,0 +170766218071,215,0 +170766218119,215,0 +170766218167,215,0 +170766218215,216,0 +170766218263,215,0 +170766218312,213,0 +170766218360,213,0 +170766218408,213,0 +170766218456,213,0 +170766218504,214,0 +170766218554,214,0 +170766218601,214,0 +170766218651,214,0 +170766218701,214,0 +170766218749,215,0 +170766218797,215,0 +170766218845,215,0 +170766218892,215,0 +170766218940,215,0 +170766218988,215,0 +170766219038,215,0 +170766219086,215,0 +170766219134,215,0 +170766219182,215,0 +170766219230,214,0 +170766219278,213,0 +170766219326,214,0 +170766219375,214,0 +170766219423,214,0 +170766219471,214,0 +170766219519,214,0 +170766219567,214,0 +170766219616,214,0 +170766219664,215,0 +170766219712,215,0 +170766219762,215,0 +170766219810,215,0 +170766219859,215,0 +170766219907,215,0 +170766219955,215,0 +170766220003,215,0 +170766220051,215,0 +170766220099,215,0 +170766220147,214,0 +170766220195,213,0 +170766220243,214,0 +170766220291,214,0 +170766220338,214,0 +170766220388,214,0 +170766220437,214,0 +170766220485,214,0 +170766220533,214,0 +170766220583,215,0 +170766220631,215,0 +170766220678,215,0 +170766220726,215,0 +170766220776,215,0 +170766220825,215,0 +170766220873,215,0 +170766220920,215,0 +170766220968,215,0 +170766221016,215,0 +170766221064,213,0 +170766221112,213,0 +170766221160,213,0 +170766221208,214,0 +170766221256,214,0 +170766221305,214,0 +170766221355,214,0 +170766221403,214,0 +170766221450,215,0 +170766221498,215,0 +170766221546,215,0 +170766221594,215,0 +170766221642,215,0 +170766221690,215,0 +170766221739,215,0 +170766221787,215,0 +170766221836,216,0 +170766221884,215,0 +170766221934,215,0 +170766221982,213,0 +170766222031,213,0 +170766222079,213,0 +170766222127,214,0 +170766222176,214,0 +170766222224,214,0 +170766222272,214,0 +170766222320,214,0 +170766222369,214,0 +170766222417,214,0 +170766222465,215,0 +170766222513,215,0 +170766222561,215,0 +170766222610,215,0 +170766222658,215,0 +170766222706,215,0 +170766222754,215,0 +170766222802,215,0 +170766222851,215,0 +170766222901,213,0 +170766222949,213,0 +170766222997,213,0 +170766223045,213,0 +170766223093,213,0 +170766223140,214,0 +170766223188,214,0 +170766223238,214,0 +170766223286,214,0 +170766223334,214,0 +170766223382,214,0 +170766223430,215,0 +170766223478,215,0 +170766223527,215,0 +170766223575,215,0 +170766223623,215,0 +170766223673,215,0 +170766223720,215,0 +170766223770,215,0 +170766223819,213,0 +170766223869,213,0 +170766223917,213,0 +170766223965,213,0 +170766224014,213,0 +170766224064,213,0 +170766224113,214,0 +170766224161,214,0 +170766224209,214,0 +170766224257,214,0 +170766224306,214,0 +170766224356,214,0 +170766224405,214,0 +170766224453,215,0 +170766224501,215,0 +170766224549,215,0 +170766224597,215,0 +170766224645,215,0 +170766224695,214,0 +170766224744,213,0 +170766224792,213,0 +170766224840,213,0 +170766224888,213,0 +170766224938,213,0 +170766224985,213,0 +170766225033,213,0 +170766225081,213,0 +170766225129,214,0 +170766225177,214,0 +170766225226,214,0 +170766225274,214,0 +170766225322,215,0 +170766225372,215,0 +170766225420,215,0 +170766225469,215,0 +170766225519,215,0 +170766225567,215,0 +170766225614,214,0 +170766225662,213,0 +170766225710,213,0 +170766225760,213,0 +170766225808,213,0 +170766225856,213,0 +170766225905,213,0 +170766225953,213,0 +170766226003,213,0 +170766226051,213,0 +170766226099,214,0 +170766226146,214,0 +170766226194,214,0 +170766226242,214,0 +170766226291,214,0 +170766226339,214,0 +170766226387,215,0 +170766226435,215,0 +170766226483,215,0 +170766226531,214,0 +170766226579,213,0 +170766226626,213,0 +170766226674,213,0 +170766226724,213,0 +170766226772,213,0 +170766226820,214,0 +170766226867,214,0 +170766226915,214,0 +170766226963,214,0 +170766227013,214,0 +170766227060,215,0 +170766227108,215,0 +170766227156,215,0 +170766227204,215,0 +170766227252,215,0 +170766227300,215,0 +170766227348,215,0 +170766227395,215,0 +170766227443,214,0 +170766227491,213,0 +170766227539,213,0 +170766227587,214,0 +170766227635,214,0 +170766227682,214,0 +170766227730,214,0 +170766227778,214,0 +170766227826,214,0 +170766227876,214,0 +170766227925,215,0 +170766227973,215,0 +170766228021,215,0 +170766228069,215,0 +170766228116,215,0 +170766228164,215,0 +170766228212,216,0 +170766228262,216,0 +170766228311,215,0 +170766228361,214,0 +170766228410,213,0 +170766228458,214,0 +170766228507,214,0 +170766228556,214,0 +170766228603,214,0 +170766228651,214,0 +170766228699,214,0 +170766228749,214,0 +170766228797,215,0 +170766228845,215,0 +170766228893,215,0 +170766228940,215,0 +170766228988,215,0 +170766229036,215,0 +170766229084,215,0 +170766229132,216,0 +170766229180,215,0 +170766229229,215,0 +170766229279,214,0 +170766229327,214,0 +170766229375,214,0 +170766229422,214,0 +170766229470,214,0 +170766229518,214,0 +170766229566,214,0 +170766229614,214,0 +170766229662,214,0 +170766229712,214,0 +170766229760,215,0 +170766229809,215,0 +170766229857,215,0 +170766229905,215,0 +170766229954,215,0 +170766230002,215,0 +170766230052,215,0 +170766230100,215,0 +170766230148,215,0 +170766230197,214,0 +170766230247,214,0 +170766230296,214,0 +170766230344,214,0 +170766230392,214,0 +170766230441,214,0 +170766230489,214,0 +170766230538,214,0 +170766230586,214,0 +170766230634,215,0 +170766230684,215,0 +170766230732,215,0 +170766230779,215,0 +170766230829,215,0 +170766230877,215,0 +170766230926,215,0 +170766230974,215,0 +170766231022,216,0 +170766231070,215,0 +170766231118,214,0 +170766231166,214,0 +170766231214,214,0 +170766231262,214,0 +170766231310,214,0 +170766231359,214,0 +170766231407,214,0 +170766231455,214,0 +170766231505,215,0 +170766231554,215,0 +170766231602,215,0 +170766231650,215,0 +170766231698,215,0 +170766231746,214,0 +170766231794,215,0 +170766231842,215,0 +170766231890,215,0 +170766231939,215,0 +170766231987,215,0 +170766232035,214,0 +170766232083,214,0 +170766232131,214,0 +170766232179,214,0 +170766232227,215,0 +170766232276,214,0 +170766232324,214,0 +170766232372,215,0 +170766232420,215,0 +170766232468,215,0 +170766232516,215,0 +170766232565,215,0 +170766232613,215,0 +170766232661,215,0 +170766232711,215,0 +170766232759,216,0 +170766232807,216,0 +170766232854,216,0 +170766232904,215,0 +170766232952,214,0 +170766233000,214,0 +170766233048,214,0 +170766233095,214,0 +170766233143,215,0 +170766233191,215,0 +170766233239,215,0 +170766233287,215,0 +170766233334,215,0 +170766233382,215,0 +170766233432,215,0 +170766233479,216,0 +170766233527,216,0 +170766233575,216,0 +170766233623,216,0 +170766233671,216,0 +170766233719,216,0 +170766233767,216,0 +170766233815,215,0 +170766233864,214,0 +170766233914,214,0 +170766233963,214,0 +170766234011,214,0 +170766234059,214,0 +170766234109,215,0 +170766234157,215,0 +170766234206,215,0 +170766234254,215,0 +170766234304,215,0 +170766234351,215,0 +170766234399,215,0 +170766234449,215,0 +170766234497,216,0 +170766234545,216,0 +170766234594,216,0 +170766234644,215,0 +170766234692,215,0 +170766234740,215,0 +170766234787,214,0 +170766234835,214,0 +170766234885,214,0 +170766234933,214,0 +170766234981,214,0 +170766235029,214,0 +170766235077,214,0 +170766235125,214,0 +170766235173,214,0 +170766235220,215,0 +170766235270,215,0 +170766235318,214,0 +170766235366,215,0 +170766235415,215,0 +170766235463,216,0 +170766235513,215,0 +170766235561,216,0 +170766235610,215,0 +170766235660,215,0 +170766235708,213,0 +170766235757,213,0 +170766235807,213,0 +170766235855,214,0 +170766235903,214,0 +170766235952,214,0 +170766236000,214,0 +170766236048,214,0 +170766236096,214,0 +170766236144,215,0 +170766236192,215,0 +170766236240,215,0 +170766236289,215,0 +170766236339,215,0 +170766236387,215,0 +170766236435,215,0 +170766236483,215,0 +170766236531,216,0 +170766236579,215,0 +170766236627,214,0 +170766236676,214,0 +170766236726,214,0 +170766236775,214,0 +170766236823,214,0 +170766236872,214,0 +170766236922,214,0 +170766236970,214,0 +170766237018,214,0 +170766237066,215,0 +170766237114,215,0 +170766237162,215,0 +170766237210,215,0 +170766237258,215,0 +170766237305,215,0 +170766237353,215,0 +170766237401,215,0 +170766237451,216,0 +170766237499,215,0 +170766237548,213,0 +170766237598,213,0 +170766237647,213,0 +170766237697,214,0 +170766237745,214,0 +170766237793,214,0 +170766237842,214,0 +170766237890,214,0 +170766237940,214,0 +170766237989,215,0 +170766238037,215,0 +170766238087,215,0 +170766238134,215,0 +170766238184,215,0 +170766238232,215,0 +170766238281,215,0 +170766238329,215,0 +170766238377,215,0 +170766238425,214,0 +170766238473,213,0 +170766238521,213,0 +170766238569,214,0 +170766238617,214,0 +170766238666,214,0 +170766238716,214,0 +170766238764,214,0 +170766238812,214,0 +170766238859,215,0 +170766238907,215,0 +170766238955,215,0 +170766239003,215,0 +170766239053,215,0 +170766239101,215,0 +170766239150,215,0 +170766239200,215,0 +170766239248,216,0 +170766239297,215,0 +170766239345,214,0 +170766239393,213,0 +170766239441,213,0 +170766239489,213,0 +170766239537,214,0 +170766239585,214,0 +170766239633,214,0 +170766239681,214,0 +170766239731,214,0 +170766239779,214,0 +170766239828,215,0 +170766239876,215,0 +170766239924,215,0 +170766239972,215,0 +170766240020,215,0 +170766240069,215,0 +170766240117,215,0 +170766240165,216,0 +170766240213,215,0 +170766240263,214,0 +170766240311,213,0 +170766240359,213,0 +170766240408,214,0 +170766240458,214,0 +170766240506,214,0 +170766240555,214,0 +170766240605,214,0 +170766240653,214,0 +170766240702,214,0 +170766240752,215,0 +170766240800,215,0 +170766240849,215,0 +170766240897,215,0 +170766240945,215,0 +170766240993,215,0 +170766241041,215,0 +170766241088,215,0 +170766241138,215,0 +170766241186,214,0 +170766241234,213,0 +170766241283,213,0 +170766241333,213,0 +170766241382,213,0 +170766241432,214,0 +170766241480,214,0 +170766241529,214,0 +170766241577,214,0 +170766241625,214,0 +170766241675,214,0 +170766241722,215,0 +170766241770,215,0 +170766241818,215,0 +170766241866,215,0 +170766241916,215,0 +170766241964,215,0 +170766242012,216,0 +170766242061,215,0 +170766242111,214,0 +170766242159,213,0 +170766242207,213,0 +170766242254,213,0 +170766242302,213,0 +170766242350,214,0 +170766242398,214,0 +170766242446,214,0 +170766242496,214,0 +170766242545,214,0 +170766242593,215,0 +170766242641,215,0 +170766242689,215,0 +170766242737,215,0 +170766242787,215,0 +170766242835,216,0 +170766242883,215,0 +170766242930,216,0 +170766242980,215,0 +170766243029,214,0 +170766243077,213,0 +170766243125,213,0 +170766243175,213,0 +170766243223,214,0 +170766243271,213,0 +170766243320,214,0 +170766243370,214,0 +170766243419,214,0 +170766243467,214,0 +170766243515,214,0 +170766243563,214,0 +170766243611,215,0 +170766243659,215,0 +170766243709,215,0 +170766243757,215,0 +170766243806,215,0 +170766243854,215,0 +170766243902,215,0 +170766243951,214,0 +170766244001,213,0 +170766244049,213,0 +170766244098,213,0 +170766244146,214,0 +170766244194,214,0 +170766244242,214,0 +170766244290,214,0 +170766244339,214,0 +170766244387,214,0 +170766244435,215,0 +170766244483,215,0 +170766244531,215,0 +170766244580,215,0 +170766244630,215,0 +170766244678,215,0 +170766244726,216,0 +170766244775,215,0 +170766244823,215,0 +170766244871,213,0 +170766244919,213,0 +170766244967,213,0 +170766245015,213,0 +170766245064,214,0 +170766245112,214,0 +170766245160,214,0 +170766245210,214,0 +170766245258,214,0 +170766245305,214,0 +170766245355,214,0 +170766245405,215,0 +170766245454,215,0 +170766245504,215,0 +170766245553,215,0 +170766245601,215,0 +170766245649,215,0 +170766245697,215,0 +170766245745,214,0 +170766245793,213,0 +170766245841,213,0 +170766245891,213,0 +170766245938,213,0 +170766245986,213,0 +170766246036,214,0 +170766246084,214,0 +170766246132,214,0 +170766246180,214,0 +170766246229,214,0 +170766246277,214,0 +170766246325,215,0 +170766246373,215,0 +170766246421,215,0 +170766246470,215,0 +170766246518,215,0 +170766246566,215,0 +170766246614,215,0 +170766246662,214,0 +170766246710,213,0 +170766246758,214,0 +170766246808,213,0 +170766246855,214,0 +170766246905,214,0 +170766246953,214,0 +170766247001,214,0 +170766247049,214,0 +170766247097,215,0 +170766247145,215,0 +170766247193,215,0 +170766247240,215,0 +170766247290,216,0 +170766247340,215,0 +170766247388,216,0 +170766247435,215,0 +170766247483,215,0 +170766247531,215,0 +170766247579,214,0 +170766247627,214,0 +170766247675,213,0 +170766247725,214,0 +170766247773,214,0 +170766247821,214,0 +170766247869,214,0 +170766247917,214,0 +170766247964,214,0 +170766248012,214,0 +170766248060,215,0 +170766248108,215,0 +170766248156,215,0 +170766248204,215,0 +170766248252,215,0 +170766248300,215,0 +170766248348,215,0 +170766248396,215,0 +170766248444,215,0 +170766248492,214,0 +170766248540,213,0 +170766248588,213,0 +170766248635,213,0 +170766248683,214,0 +170766248733,214,0 +170766248781,214,0 +170766248829,214,0 +170766248877,214,0 +170766248924,214,0 +170766248974,215,0 +170766249022,215,0 +170766249070,215,0 +170766249117,215,0 +170766249165,215,0 +170766249213,215,0 +170766249261,215,0 +170766249311,215,0 +170766249360,215,0 +170766249410,214,0 +170766249459,213,0 +170766249507,214,0 +170766249555,214,0 +170766249603,214,0 +170766249651,214,0 +170766249699,214,0 +170766249748,214,0 +170766249796,214,0 +170766249844,214,0 +170766249892,214,0 +170766249940,215,0 +170766249990,215,0 +170766250038,215,0 +170766250087,215,0 +170766250137,215,0 +170766250185,215,0 +170766250232,216,0 +170766250280,215,0 +170766250328,214,0 +170766250376,214,0 +170766250424,213,0 +170766250472,214,0 +170766250520,214,0 +170766250567,214,0 +170766250615,214,0 +170766250663,214,0 +170766250711,214,0 +170766250759,214,0 +170766250807,214,0 +170766250855,215,0 +170766250903,215,0 +170766250950,215,0 +170766250998,215,0 +170766251046,215,0 +170766251094,215,0 +170766251142,215,0 +170766251192,215,0 +170766251241,214,0 +170766251290,214,0 +170766251338,214,0 +170766251386,214,0 +170766251436,214,0 +170766251484,214,0 +170766251533,214,0 +170766251581,214,0 +170766251629,214,0 +170766251677,215,0 +170766251725,215,0 +170766251773,215,0 +170766251821,215,0 +170766251869,215,0 +170766251917,215,0 +170766251965,215,0 +170766252014,215,0 +170766252064,215,0 +170766252112,215,0 +170766252160,214,0 +170766252208,214,0 +170766252256,214,0 +170766252305,214,0 +170766252353,214,0 +170766252401,214,0 +170766252451,214,0 +170766252499,215,0 +170766252548,215,0 +170766252596,215,0 +170766252646,215,0 +170766252695,215,0 +170766252743,215,0 +170766252791,215,0 +170766252839,215,0 +170766252889,215,0 +170766252936,215,0 +170766252984,215,0 +170766253032,215,0 +170766253080,213,0 +170766253130,213,0 +170766253178,214,0 +170766253227,214,0 +170766253275,214,0 +170766253323,214,0 +170766253373,214,0 +170766253421,215,0 +170766253469,215,0 +170766253517,215,0 +170766253564,215,0 +170766253612,215,0 +170766253660,215,0 +170766253708,215,0 +170766253756,215,0 +170766253804,215,0 +170766253854,215,0 +170766253902,215,0 +170766253950,215,0 +170766253997,214,0 +170766254045,213,0 +170766254095,214,0 +170766254143,214,0 +170766254190,214,0 +170766254238,214,0 +170766254286,214,0 +170766254334,214,0 +170766254382,214,0 +170766254430,215,0 +170766254477,215,0 +170766254527,215,0 +170766254576,215,0 +170766254624,215,0 +170766254672,215,0 +170766254722,215,0 +170766254770,215,0 +170766254818,215,0 +170766254866,215,0 +170766254913,213,0 +170766254961,213,0 +170766255009,214,0 +170766255059,214,0 +170766255108,214,0 +170766255156,214,0 +170766255204,214,0 +170766255252,214,0 +170766255302,214,0 +170766255350,214,0 +170766255399,215,0 +170766255447,215,0 +170766255497,215,0 +170766255545,215,0 +170766255593,215,0 +170766255641,215,0 +170766255690,215,0 +170766255738,215,0 +170766255786,214,0 +170766255834,213,0 +170766255882,214,0 +170766255931,214,0 +170766255981,214,0 +170766256029,214,0 +170766256077,214,0 +170766256126,214,0 +170766256176,214,0 +170766256224,214,0 +170766256272,215,0 +170766256321,215,0 +170766256369,215,0 +170766256419,215,0 +170766256467,215,0 +170766256516,215,0 +170766256566,215,0 +170766256615,216,0 +170766256663,215,0 +170766256711,214,0 +170766256759,213,0 +170766256809,214,0 +170766256856,214,0 +170766256904,214,0 +170766256952,214,0 +170766257000,214,0 +170766257050,214,0 +170766257097,215,0 +170766257145,215,0 +170766257193,215,0 +170766257241,215,0 +170766257289,215,0 +170766257337,215,0 +170766257385,215,0 +170766257433,216,0 +170766257481,215,0 +170766257530,215,0 +170766257580,215,0 +170766257628,214,0 +170766257675,214,0 +170766257723,214,0 +170766257771,214,0 +170766257819,214,0 +170766257869,214,0 +170766257917,214,0 +170766257965,215,0 +170766258013,215,0 +170766258062,215,0 +170766258110,215,0 +170766258158,215,0 +170766258206,215,0 +170766258256,215,0 +170766258304,216,0 +170766258352,216,0 +170766258399,216,0 +170766258447,215,0 +170766258495,215,0 +170766258543,214,0 +170766258591,213,0 +170766258639,213,0 +170766258689,213,0 +170766258738,214,0 +170766258786,214,0 +170766258834,214,0 +170766258884,214,0 +170766258933,214,0 +170766258981,214,0 +170766259031,214,0 +170766259079,215,0 +170766259127,215,0 +170766259175,215,0 +170766259224,215,0 +170766259274,215,0 +170766259323,215,0 +170766259371,215,0 +170766259419,215,0 +170766259469,213,0 +170766259518,213,0 +170766259566,213,0 +170766259614,213,0 +170766259662,213,0 +170766259710,214,0 +170766259759,214,0 +170766259807,214,0 +170766259855,214,0 +170766259905,214,0 +170766259953,215,0 +170766260001,215,0 +170766260048,215,0 +170766260096,215,0 +170766260144,215,0 +170766260192,215,0 +170766260240,215,0 +170766260288,215,0 +170766260336,215,0 +170766260384,214,0 +170766260431,213,0 +170766260479,213,0 +170766260527,214,0 +170766260575,213,0 +170766260623,214,0 +170766260671,214,0 +170766260719,214,0 +170766260767,214,0 +170766260814,214,0 +170766260862,215,0 +170766260910,215,0 +170766260958,215,0 +170766261006,215,0 +170766261054,215,0 +170766261101,215,0 +170766261149,216,0 +170766261197,215,0 +170766261245,215,0 +170766261293,213,0 +170766261342,213,0 +170766261392,213,0 +170766261440,213,0 +170766261487,214,0 +170766261535,214,0 +170766261585,214,0 +170766261634,214,0 +170766261682,214,0 +170766261730,214,0 +170766261778,214,0 +170766261826,214,0 +170766261873,215,0 +170766261921,215,0 +170766261969,215,0 +170766262017,215,0 +170766262065,215,0 +170766262114,215,0 +170766262162,215,0 +170766262210,214,0 +170766262258,214,0 +170766262306,213,0 +170766262356,214,0 +170766262403,214,0 +170766262451,214,0 +170766262499,214,0 +170766262547,214,0 +170766262597,214,0 +170766262646,215,0 +170766262694,215,0 +170766262742,215,0 +170766262790,215,0 +170766262840,215,0 +170766262887,215,0 +170766262935,215,0 +170766262983,215,0 +170766263031,215,0 +170766263081,215,0 +170766263130,213,0 +170766263178,214,0 +170766263226,214,0 +170766263274,214,0 +170766263322,214,0 +170766263370,214,0 +170766263418,214,0 +170766263466,214,0 +170766263514,215,0 +170766263562,215,0 +170766263610,215,0 +170766263658,215,0 +170766263706,215,0 +170766263753,215,0 +170766263801,215,0 +170766263849,216,0 +170766263897,216,0 +170766263945,215,0 +170766263993,215,0 +170766264041,214,0 +170766264089,213,0 +170766264137,213,0 +170766264185,214,0 +170766264232,214,0 +170766264280,214,0 +170766264328,214,0 +170766264376,214,0 +170766264424,214,0 +170766264472,215,0 +170766264519,214,0 +170766264567,215,0 +170766264615,215,0 +170766264663,215,0 +170766264711,215,0 +170766264759,215,0 +170766264807,215,0 +170766264854,216,0 +170766264902,215,0 +170766264950,213,0 +170766264998,214,0 +170766265046,214,0 +170766265094,214,0 +170766265141,214,0 +170766265189,214,0 +170766265237,214,0 +170766265285,215,0 +170766265333,215,0 +170766265381,215,0 +170766265429,215,0 +170766265476,215,0 +170766265524,216,0 +170766265572,216,0 +170766265620,216,0 +170766265668,216,0 +170766265716,216,0 +170766265764,216,0 +170766265812,215,0 +170766265859,214,0 +170766265907,214,0 +170766265955,214,0 +170766266003,214,0 +170766266051,214,0 +170766266099,215,0 +170766266147,215,0 +170766266196,215,0 +170766266244,215,0 +170766266292,215,0 +170766266339,215,0 +170766266387,215,0 +170766266435,215,0 +170766266483,215,0 +170766266531,215,0 +170766266579,216,0 +170766266626,216,0 +170766266674,215,0 +170766266722,215,0 +170766266770,214,0 +170766266818,214,0 +170766266866,214,0 +170766266913,214,0 +170766266961,214,0 +170766267009,214,0 +170766267059,214,0 +170766267106,215,0 +170766267154,215,0 +170766267202,215,0 +170766267250,215,0 +170766267298,215,0 +170766267345,215,0 +170766267393,215,0 +170766267441,215,0 +170766267489,215,0 +170766267537,215,0 +170766267584,215,0 +170766267632,215,0 +170766267680,214,0 +170766267728,214,0 +170766267776,214,0 +170766267824,214,0 +170766267873,214,0 +170766267921,214,0 +170766267969,214,0 +170766268017,214,0 +170766268064,214,0 +170766268112,214,0 +170766268161,214,0 +170766268209,215,0 +170766268257,215,0 +170766268305,215,0 +170766268353,215,0 +170766268401,215,0 +170766268448,215,0 +170766268496,215,0 +170766268544,215,0 +170766268592,214,0 +170766268640,213,0 +170766268688,214,0 +170766268736,214,0 +170766268785,214,0 +170766268833,214,0 +170766268881,214,0 +170766268929,214,0 +170766268977,214,0 +170766269025,214,0 +170766269073,215,0 +170766269123,215,0 +170766269171,215,0 +170766269220,215,0 +170766269268,215,0 +170766269316,215,0 +170766269364,215,0 +170766269411,215,0 +170766269459,215,0 +170766269507,213,0 +170766269555,213,0 +170766269603,214,0 +170766269651,214,0 +170766269699,214,0 +170766269746,214,0 +170766269794,214,0 +170766269842,214,0 +170766269890,214,0 +170766269938,215,0 +170766269986,215,0 +170766270033,215,0 +170766270081,215,0 +170766270129,215,0 +170766270177,215,0 +170766270225,215,0 +170766270274,215,0 +170766270322,215,0 +170766270370,215,0 +170766270418,213,0 +170766270468,214,0 +170766270517,214,0 +170766270567,214,0 +170766270615,214,0 +170766270662,214,0 +170766270710,214,0 +170766270758,215,0 +170766270808,215,0 +170766270857,215,0 +170766270905,215,0 +170766270953,215,0 +170766271001,215,0 +170766271049,215,0 +170766271097,216,0 +170766271145,216,0 +170766271195,216,0 +170766271242,215,0 +170766271290,215,0 +170766271338,214,0 +170766271386,214,0 +170766271434,214,0 +170766271482,214,0 +170766271530,214,0 +170766271578,214,0 +170766271625,215,0 +170766271673,215,0 +170766271721,215,0 +170766271769,215,0 +170766271816,215,0 +170766271864,215,0 +170766271914,215,0 +170766271961,215,0 +170766272009,215,0 +170766272057,215,0 +170766272105,215,0 +170766272153,215,0 +170766272201,215,0 +170766272249,213,0 +170766272297,214,0 +170766272347,214,0 +170766272394,214,0 +170766272442,214,0 +170766272490,214,0 +170766272540,214,0 +170766272588,214,0 +170766272635,214,0 +170766272683,215,0 +170766272733,215,0 +170766272781,215,0 +170766272828,215,0 +170766272876,216,0 +170766272924,215,0 +170766272972,215,0 +170766273020,215,0 +170766273068,215,0 +170766273116,214,0 +170766273163,213,0 +170766273211,213,0 +170766273259,214,0 +170766273307,214,0 +170766273355,214,0 +170766273403,214,0 +170766273451,214,0 +170766273499,214,0 +170766273546,214,0 +170766273594,214,0 +170766273642,215,0 +170766273690,215,0 +170766273738,215,0 +170766273786,215,0 +170766273834,215,0 +170766273882,215,0 +170766273929,215,0 +170766273977,215,0 +170766274025,215,0 +170766274073,214,0 +170766274121,213,0 +170766274169,214,0 +170766274217,213,0 +170766274266,214,0 +170766274314,214,0 +170766274363,214,0 +170766274411,214,0 +170766274461,214,0 +170766274509,214,0 +170766274558,214,0 +170766274606,215,0 +170766274654,215,0 +170766274702,215,0 +170766274750,215,0 +170766274798,215,0 +170766274846,215,0 +170766274894,215,0 +170766274942,215,0 +170766274990,213,0 +170766275038,213,0 +170766275087,213,0 +170766275135,213,0 +170766275183,214,0 +170766275230,213,0 +170766275278,214,0 +170766275326,214,0 +170766275374,214,0 +170766275423,214,0 +170766275471,214,0 +170766275519,215,0 +170766275567,215,0 +170766275615,215,0 +170766275663,215,0 +170766275711,215,0 +170766275758,215,0 +170766275806,215,0 +170766275854,215,0 +170766275902,213,0 +170766275950,213,0 +170766275998,213,0 +170766276046,213,0 +170766276093,214,0 +170766276143,214,0 +170766276191,214,0 +170766276240,214,0 +170766276288,214,0 +170766276338,214,0 +170766276386,215,0 +170766276435,215,0 +170766276483,215,0 +170766276531,215,0 +170766276579,215,0 +170766276628,215,0 +170766276676,215,0 +170766276726,215,0 +170766276774,214,0 +170766276822,213,0 +170766276870,213,0 +170766276918,214,0 +170766276965,214,0 +170766277013,214,0 +170766277061,214,0 +170766277109,214,0 +170766277159,214,0 +170766277207,214,0 +170766277255,215,0 +170766277303,215,0 +170766277352,215,0 +170766277400,215,0 +170766277448,215,0 +170766277496,215,0 +170766277544,215,0 +170766277592,215,0 +170766277641,215,0 +170766277690,214,0 +170766277740,213,0 +170766277788,214,0 +170766277836,214,0 +170766277884,214,0 +170766277932,214,0 +170766277981,214,0 +170766278031,214,0 +170766278080,214,0 +170766278128,214,0 +170766278176,215,0 +170766278224,215,0 +170766278272,215,0 +170766278320,215,0 +170766278369,215,0 +170766278417,215,0 +170766278467,215,0 +170766278514,215,0 +170766278562,215,0 +170766278610,214,0 +170766278658,214,0 +170766278706,214,0 +170766278754,214,0 +170766278802,214,0 +170766278850,214,0 +170766278900,214,0 +170766278948,214,0 +170766278996,215,0 +170766279044,215,0 +170766279093,215,0 +170766279141,215,0 +170766279189,215,0 +170766279239,216,0 +170766279286,215,0 +170766279335,215,0 +170766279382,215,0 +170766279430,215,0 +170766279478,215,0 +170766279526,214,0 +170766279574,214,0 +170766279622,214,0 +170766279672,214,0 +170766279721,214,0 +170766279769,214,0 +170766279817,214,0 +170766279865,214,0 +170766279913,214,0 +170766279963,215,0 +170766280010,215,0 +170766280060,215,0 +170766280108,215,0 +170766280156,215,0 +170766280204,215,0 +170766280251,215,0 +170766280299,215,0 +170766280349,215,0 +170766280397,215,0 +170766280444,214,0 +170766280492,214,0 +170766280540,214,0 +170766280588,214,0 +170766280636,214,0 +170766280684,214,0 +170766280731,214,0 +170766280781,215,0 +170766280829,215,0 +170766280877,215,0 +170766280924,215,0 +170766280974,215,0 +170766281022,215,0 +170766281069,215,0 +170766281117,216,0 +170766281165,215,0 +170766281213,216,0 +170766281261,215,0 +170766281309,214,0 +170766281357,213,0 +170766281405,214,0 +170766281453,214,0 +170766281500,214,0 +170766281548,214,0 +170766281596,214,0 +170766281646,215,0 +170766281693,215,0 +170766281741,215,0 +170766281791,215,0 +170766281839,215,0 +170766281886,216,0 +170766281934,216,0 +170766281982,216,0 +170766282030,215,0 +170766282078,215,0 +170766282126,215,0 +170766282174,215,0 +170766282222,214,0 +170766282270,213,0 +170766282319,213,0 +170766282369,214,0 +170766282417,214,0 +170766282465,214,0 +170766282513,214,0 +170766282561,214,0 +170766282609,214,0 +170766282656,214,0 +170766282704,214,0 +170766282752,214,0 +170766282800,215,0 +170766282850,215,0 +170766282898,215,0 +170766282946,215,0 +170766282995,215,0 +170766283043,215,0 +170766283091,215,0 +170766283141,214,0 +170766283189,213,0 +170766283237,213,0 +170766283284,213,0 +170766283334,213,0 +170766283382,213,0 +170766283430,214,0 +170766283478,214,0 +170766283525,214,0 +170766283573,214,0 +170766283623,215,0 +170766283671,215,0 +170766283720,215,0 +170766283768,215,0 +170766283816,215,0 +170766283864,215,0 +170766283912,215,0 +170766283960,215,0 +170766284008,215,0 +170766284057,214,0 +170766284105,213,0 +170766284153,214,0 +170766284201,214,0 +170766284251,214,0 +170766284298,214,0 +170766284346,214,0 +170766284396,215,0 +170766284444,215,0 +170766284492,215,0 +170766284540,215,0 +170766284589,215,0 +170766284637,215,0 +170766284687,215,0 +170766284734,215,0 +170766284782,216,0 +170766284830,215,0 +170766284878,215,0 +170766284928,215,0 +170766284976,213,0 +170766285023,214,0 +170766285071,213,0 +170766285119,214,0 +170766285167,214,0 +170766285217,214,0 +170766285265,214,0 +170766285312,214,0 +170766285360,215,0 +170766285408,215,0 +170766285456,215,0 +170766285504,215,0 +170766285552,215,0 +170766285600,215,0 +170766285648,215,0 +170766285696,215,0 +170766285743,215,0 +170766285791,215,0 +170766285839,215,0 +170766285887,213,0 +170766285935,213,0 +170766285984,213,0 +170766286032,213,0 +170766286080,214,0 +170766286128,214,0 +170766286176,214,0 +170766286224,214,0 +170766286272,214,0 +170766286320,215,0 +170766286367,215,0 +170766286415,215,0 +170766286463,215,0 +170766286512,215,0 +170766286560,215,0 +170766286608,215,0 +170766286656,215,0 +170766286704,215,0 +170766286752,215,0 +170766286800,213,0 +170766286848,213,0 +170766286895,213,0 +170766286943,213,0 +170766286992,214,0 +170766287040,214,0 +170766287090,214,0 +170766287137,214,0 +170766287185,214,0 +170766287233,214,0 +170766287281,214,0 +170766287329,215,0 +170766287379,215,0 +170766287428,215,0 +170766287476,215,0 +170766287524,215,0 +170766287572,215,0 +170766287620,215,0 +170766287669,214,0 +170766287719,213,0 +170766287767,214,0 +170766287815,213,0 +170766287862,214,0 +170766287912,214,0 +170766287961,214,0 +170766288009,214,0 +170766288057,214,0 +170766288107,214,0 +170766288156,214,0 +170766288204,215,0 +170766288254,214,0 +170766288303,215,0 +170766288351,215,0 +170766288400,215,0 +170766288450,215,0 +170766288498,215,0 +170766288546,215,0 +170766288593,213,0 +170766288643,214,0 +170766288691,214,0 +170766288739,214,0 +170766288788,214,0 +170766288836,214,0 +170766288886,214,0 +170766288933,214,0 +170766288981,214,0 +170766289029,215,0 +170766289077,215,0 +170766289127,215,0 +170766289175,215,0 +170766289223,215,0 +170766289271,215,0 +170766289319,215,0 +170766289367,215,0 +170766289414,215,0 +170766289462,215,0 +170766289510,214,0 +170766289560,214,0 +170766289608,214,0 +170766289655,214,0 +170766289703,214,0 +170766289751,214,0 +170766289801,214,0 +170766289849,215,0 +170766289898,215,0 +170766289946,215,0 +170766289994,215,0 +170766290042,215,0 +170766290090,215,0 +170766290138,215,0 +170766290186,215,0 +170766290235,216,0 +170766290283,215,0 +170766290333,215,0 +170766290381,214,0 +170766290428,213,0 +170766290476,213,0 +170766290524,214,0 +170766290574,214,0 +170766290622,214,0 +170766290670,214,0 +170766290719,214,0 +170766290767,214,0 +170766290817,214,0 +170766290866,214,0 +170766290914,215,0 +170766290962,215,0 +170766291010,215,0 +170766291058,215,0 +170766291107,215,0 +170766291155,215,0 +170766291203,215,0 +170766291251,215,0 +170766291299,213,0 +170766291348,213,0 +170766291396,213,0 +170766291444,213,0 +170766291492,213,0 +170766291540,213,0 +170766291588,214,0 +170766291636,214,0 +170766291684,214,0 +170766291733,214,0 +170766291781,215,0 +170766291831,215,0 +170766291880,215,0 +170766291930,214,0 +170766291979,215,0 +170766292029,215,0 +170766292077,215,0 +170766292125,215,0 +170766292173,215,0 +170766292220,213,0 +170766292268,213,0 +170766292316,213,0 +170766292366,213,0 +170766292414,214,0 +170766292461,214,0 +170766292509,214,0 +170766292557,214,0 +170766292605,214,0 +170766292653,214,0 +170766292701,214,0 +170766292749,215,0 +170766292797,215,0 +170766292845,215,0 +170766292894,215,0 +170766292944,215,0 +170766292992,215,0 +170766293041,215,0 +170766293089,215,0 +170766293139,213,0 +170766293187,213,0 +170766293236,213,0 +170766293286,213,0 +170766293334,213,0 +170766293382,213,0 +170766293429,213,0 +170766293477,214,0 +170766293525,214,0 +170766293575,214,0 +170766293624,214,0 +170766293674,214,0 +170766293722,214,0 +170766293770,215,0 +170766293818,215,0 +170766293866,215,0 +170766293915,215,0 +170766293964,215,0 +170766294012,214,0 +170766294060,213,0 +170766294108,213,0 +170766294158,213,0 +170766294207,213,0 +170766294255,214,0 +170766294305,214,0 +170766294353,214,0 +170766294401,214,0 +170766294450,214,0 +170766294498,214,0 +170766294548,214,0 +170766294595,214,0 +170766294645,215,0 +170766294693,215,0 +170766294741,215,0 +170766294789,215,0 +170766294838,215,0 +170766294888,215,0 +170766294937,214,0 +170766294985,213,0 +170766295033,214,0 +170766295081,214,0 +170766295129,214,0 +170766295177,214,0 +170766295226,214,0 +170766295274,214,0 +170766295322,214,0 +170766295370,215,0 +170766295418,215,0 +170766295466,215,0 +170766295516,215,0 +170766295565,215,0 +170766295614,215,0 +170766295662,216,0 +170766295712,215,0 +170766295760,215,0 +170766295808,215,0 +170766295856,213,0 +170766295904,213,0 +170766295952,213,0 +170766295999,214,0 +170766296047,214,0 +170766296097,214,0 +170766296146,214,0 +170766296194,214,0 +170766296242,214,0 +170766296292,215,0 +170766296340,214,0 +170766296388,215,0 +170766296435,215,0 +170766296483,215,0 +170766296531,215,0 +170766296579,216,0 +170766296627,215,0 +170766296675,215,0 +170766296725,215,0 +170766296774,213,0 +170766296824,214,0 +170766296872,213,0 +170766296920,214,0 +170766296969,214,0 +170766297019,214,0 +170766297067,214,0 +170766297116,214,0 +170766297166,215,0 +170766297214,215,0 +170766297262,215,0 +170766297311,215,0 +170766297359,215,0 +170766297408,215,0 +170766297458,215,0 +170766297506,215,0 +170766297554,215,0 +170766297602,215,0 +170766297650,214,0 +170766297698,213,0 +170766297747,213,0 +170766297795,214,0 +170766297845,214,0 +170766297893,214,0 +170766297940,214,0 +170766297990,214,0 +170766298038,214,0 +170766298086,214,0 +170766298135,214,0 +170766298185,214,0 +170766298233,215,0 +170766298281,215,0 +170766298329,215,0 +170766298377,215,0 +170766298426,215,0 +170766298476,215,0 +170766298525,215,0 +170766298573,213,0 +170766298621,213,0 +170766298671,213,0 +170766298719,213,0 +170766298766,213,0 +170766298814,214,0 +170766298862,214,0 +170766298910,214,0 +170766298958,214,0 +170766299006,214,0 +170766299054,214,0 +170766299101,214,0 +170766299149,214,0 +170766299197,215,0 +170766299245,214,0 +170766299293,215,0 +170766299341,215,0 +170766299388,215,0 +170766299436,215,0 +170766299484,213,0 +170766299532,213,0 +170766299580,213,0 +170766299628,213,0 +170766299676,214,0 +170766299724,213,0 +170766299772,214,0 +170766299821,214,0 +170766299869,214,0 +170766299917,214,0 +170766299965,214,0 +170766300013,214,0 +170766300060,215,0 +170766300108,214,0 +170766300156,215,0 +170766300204,215,0 +170766300252,215,0 +170766300302,215,0 +170766300351,215,0 +170766300399,213,0 +170766300447,213,0 +170766300495,213,0 +170766300544,213,0 +170766300592,214,0 +170766300640,213,0 +170766300688,214,0 +170766300738,214,0 +170766300786,214,0 +170766300835,214,0 +170766300884,214,0 +170766300932,214,0 +170766300980,215,0 +170766301028,215,0 +170766301076,215,0 +170766301124,215,0 +170766301172,215,0 +170766301220,215,0 +170766301267,215,0 +170766301315,213,0 +170766301363,213,0 +170766301411,213,0 +170766301460,213,0 +170766301508,213,0 +170766301556,214,0 +170766301604,214,0 +170766301652,214,0 +170766301699,214,0 +170766301747,214,0 +170766301795,215,0 +170766301843,215,0 +170766301891,215,0 +170766301939,215,0 +170766301989,215,0 +170766302036,215,0 +170766302084,215,0 +170766302132,215,0 +170766302180,215,0 +170766302228,213,0 +170766302276,213,0 +170766302324,213,0 +170766302372,214,0 +170766302419,214,0 +170766302467,214,0 +170766302515,214,0 +170766302563,214,0 +170766302611,215,0 +170766302659,215,0 +170766302707,215,0 +170766302756,215,0 +170766302806,215,0 +170766302854,215,0 +170766302901,215,0 +170766302949,215,0 +170766302999,215,0 +170766303047,215,0 +170766303095,215,0 +170766303143,214,0 +170766303190,214,0 +170766303238,214,0 +170766303286,214,0 +170766303336,214,0 +170766303384,214,0 +170766303431,215,0 +170766303479,215,0 +170766303527,215,0 +170766303575,215,0 +170766303623,215,0 +170766303671,215,0 +170766303718,215,0 +170766303766,215,0 +170766303814,215,0 +170766303862,215,0 +170766303910,215,0 +170766303958,215,0 +170766304005,214,0 +170766304053,213,0 +170766304103,213,0 +170766304151,214,0 +170766304199,214,0 +170766304246,214,0 +170766304294,214,0 +170766304342,214,0 +170766304390,214,0 +170766304438,214,0 +170766304486,215,0 +170766304534,215,0 +170766304583,215,0 +170766304631,215,0 +170766304679,215,0 +170766304727,215,0 +170766304775,215,0 +170766304823,215,0 +170766304871,215,0 +170766304919,214,0 +170766304968,213,0 +170766305016,213,0 +170766305066,213,0 +170766305115,213,0 +170766305163,214,0 +170766305213,214,0 +170766305261,214,0 +170766305309,214,0 +170766305357,214,0 +170766305405,214,0 +170766305452,214,0 +170766305502,215,0 +170766305550,215,0 +170766305598,214,0 +170766305646,215,0 +170766305693,215,0 +170766305743,215,0 +170766305792,215,0 +170766305842,214,0 +170766305891,213,0 +170766305941,213,0 +170766305989,214,0 +170766306037,214,0 +170766306085,214,0 +170766306133,214,0 +170766306180,214,0 +170766306230,214,0 +170766306278,214,0 +170766306327,214,0 +170766306375,215,0 +170766306423,215,0 +170766306473,215,0 +170766306521,215,0 +170766306570,215,0 +170766306618,215,0 +170766306666,215,0 +170766306714,215,0 +170766306764,213,0 +170766306811,214,0 +170766306859,214,0 +170766306907,214,0 +170766306955,214,0 +170766307005,214,0 +170766307053,214,0 +170766307101,214,0 +170766307150,214,0 +170766307198,215,0 +170766307246,215,0 +170766307296,215,0 +170766307345,215,0 +170766307393,215,0 +170766307441,215,0 +170766307489,215,0 +170766307537,215,0 +170766307587,215,0 +170766307635,215,0 +170766307684,214,0 +170766307732,213,0 +170766307782,214,0 +170766307829,214,0 +170766307879,214,0 +170766307928,214,0 +170766307976,215,0 +170766308026,215,0 +170766308075,215,0 +170766308123,215,0 +170766308171,215,0 +170766308219,215,0 +170766308269,215,0 +170766308318,215,0 +170766308366,216,0 +170766308414,215,0 +170766308464,216,0 +170766308512,215,0 +170766308560,214,0 +170766308608,214,0 +170766308655,214,0 +170766308705,214,0 +170766308753,214,0 +170766308802,214,0 +170766308852,215,0 +170766308900,215,0 +170766308947,215,0 +170766308995,215,0 +170766309043,215,0 +170766309091,215,0 +170766309139,215,0 +170766309187,215,0 +170766309235,215,0 +170766309283,215,0 +170766309331,215,0 +170766309379,215,0 +170766309428,215,0 +170766309476,214,0 +170766309526,213,0 +170766309574,213,0 +170766309621,214,0 +170766309671,214,0 +170766309720,214,0 +170766309768,214,0 +170766309816,214,0 +170766309864,214,0 +170766309914,214,0 +170766309962,215,0 +170766310011,214,0 +170766310061,215,0 +170766310110,214,0 +170766310158,215,0 +170766310206,215,0 +170766310254,215,0 +170766310302,215,0 +170766310352,215,0 +170766310400,214,0 +170766310448,213,0 +170766310495,213,0 +170766310543,213,0 +170766310593,213,0 +170766310641,214,0 +170766310689,214,0 +170766310737,214,0 +170766310785,214,0 +170766310835,214,0 +170766310884,214,0 +170766310932,214,0 +170766310980,214,0 +170766311028,215,0 +170766311076,215,0 +170766311125,215,0 +170766311175,215,0 +170766311223,215,0 +170766311271,215,0 +170766311319,213,0 +170766311367,213,0 +170766311416,213,0 +170766311464,213,0 +170766311512,213,0 +170766311560,214,0 +170766311608,213,0 +170766311657,214,0 +170766311705,214,0 +170766311753,214,0 +170766311801,214,0 +170766311849,214,0 +170766311899,214,0 +170766311947,215,0 +170766311995,215,0 +170766312043,215,0 +170766312091,215,0 +170766312139,215,0 +170766312187,215,0 +170766312235,214,0 +170766312283,213,0 +170766312331,213,0 +170766312380,213,0 +170766312428,213,0 +170766312476,213,0 +170766312524,214,0 +170766312573,214,0 +170766312623,214,0 +170766312671,214,0 +170766312720,214,0 +170766312768,215,0 +170766312816,215,0 +170766312866,215,0 +170766312915,215,0 +170766312963,215,0 +170766313011,215,0 +170766313059,215,0 +170766313108,215,0 +170766313158,213,0 +170766313206,213,0 +170766313254,213,0 +170766313303,213,0 +170766313353,213,0 +170766313401,213,0 +170766313450,214,0 +170766313498,214,0 +170766313548,214,0 +170766313596,214,0 +170766313644,214,0 +170766313691,214,0 +170766313739,215,0 +170766313787,215,0 +170766313837,215,0 +170766313885,215,0 +170766313932,215,0 +170766313980,215,0 +170766314028,215,0 +170766314076,214,0 +170766314124,213,0 +170766314172,213,0 +170766314220,214,0 +170766314268,214,0 +170766314315,214,0 +170766314363,214,0 +170766314411,214,0 +170766314459,214,0 +170766314507,214,0 +170766314556,214,0 +170766314604,215,0 +170766314652,215,0 +170766314701,215,0 +170766314749,215,0 +170766314797,215,0 +170766314845,215,0 +170766314893,215,0 +170766314941,215,0 +170766314989,213,0 +170766315038,213,0 +170766315086,213,0 +170766315134,214,0 +170766315182,213,0 +170766315230,214,0 +170766315278,214,0 +170766315326,214,0 +170766315373,214,0 +170766315423,214,0 +170766315471,214,0 +170766315520,214,0 +170766315568,215,0 +170766315617,215,0 +170766315665,215,0 +170766315713,215,0 +170766315761,215,0 +170766315809,215,0 +170766315859,215,0 +170766315906,214,0 +170766315954,213,0 +170766316002,213,0 +170766316052,213,0 +170766316100,213,0 +170766316148,214,0 +170766316196,214,0 +170766316244,214,0 +170766316293,214,0 +170766316343,214,0 +170766316391,214,0 +170766316439,214,0 +170766316488,215,0 +170766316538,214,0 +170766316585,214,0 +170766316635,215,0 +170766316683,215,0 +170766316731,215,0 +170766316779,215,0 +170766316827,213,0 +170766316876,213,0 +170766316926,213,0 +170766316974,213,0 +170766317023,213,0 +170766317071,213,0 +170766317121,213,0 +170766317169,214,0 +170766317217,214,0 +170766317266,214,0 +170766317316,214,0 +170766317364,215,0 +170766317412,214,0 +170766317461,215,0 +170766317509,215,0 +170766317559,215,0 +170766317608,215,0 +170766317656,215,0 +170766317706,215,0 +170766317753,213,0 +170766317803,213,0 +170766317851,213,0 +170766317898,213,0 +170766317946,213,0 +170766317994,213,0 +170766318042,214,0 +170766318090,214,0 +170766318140,214,0 +170766318187,214,0 +170766318235,214,0 +170766318285,215,0 +170766318333,215,0 +170766318381,215,0 +170766318429,215,0 +170766318477,215,0 +170766318526,215,0 +170766318574,215,0 +170766318622,215,0 +170766318670,213,0 +170766318718,213,0 +170766318768,213,0 +170766318816,213,0 +170766318865,213,0 +170766318913,214,0 +170766318963,214,0 +170766319011,214,0 +170766319060,214,0 +170766319108,214,0 +170766319158,214,0 +170766319207,215,0 +170766319255,215,0 +170766319303,215,0 +170766319351,215,0 +170766319399,215,0 +170766319447,215,0 +170766319495,215,0 +170766319543,214,0 +170766319591,213,0 +170766319640,213,0 +170766319690,213,0 +170766319738,213,0 +170766319786,213,0 +170766319834,213,0 +170766319883,214,0 +170766319931,213,0 +170766319981,214,0 +170766320030,214,0 +170766320078,214,0 +170766320128,214,0 +170766320176,214,0 +170766320225,215,0 +170766320273,215,0 +170766320323,215,0 +170766320371,215,0 +170766320419,215,0 +170766320467,214,0 +170766320516,213,0 +170766320564,213,0 +170766320612,213,0 +170766320662,213,0 +170766320710,213,0 +170766320759,213,0 +170766320809,213,0 +170766320857,213,0 +170766320904,214,0 +170766320952,214,0 +170766321002,214,0 +170766321051,214,0 +170766321099,215,0 +170766321147,215,0 +170766321195,215,0 +170766321245,215,0 +170766321293,215,0 +170766321341,215,0 +170766321389,214,0 +170766321437,213,0 +170766321486,213,0 +170766321534,213,0 +170766321582,214,0 +170766321630,214,0 +170766321678,214,0 +170766321727,214,0 +170766321775,214,0 +170766321823,214,0 +170766321871,215,0 +170766321919,215,0 +170766321967,215,0 +170766322015,215,0 +170766322063,215,0 +170766322111,215,0 +170766322159,215,0 +170766322207,215,0 +170766322256,215,0 +170766322304,214,0 +170766322352,213,0 +170766322402,214,0 +170766322451,214,0 +170766322499,214,0 +170766322547,214,0 +170766322595,214,0 +170766322642,214,0 +170766322690,214,0 +170766322738,214,0 +170766322786,215,0 +170766322834,215,0 +170766322882,215,0 +170766322929,215,0 +170766322979,215,0 +170766323027,215,0 +170766323075,215,0 +170766323122,215,0 +170766323170,215,0 +170766323220,214,0 +170766323268,213,0 +170766323316,213,0 +170766323363,213,0 +170766323411,213,0 +170766323459,214,0 +170766323507,214,0 +170766323555,214,0 +170766323603,214,0 +170766323651,214,0 +170766323698,214,0 +170766323746,214,0 +170766323794,215,0 +170766323842,215,0 +170766323891,215,0 +170766323939,215,0 +170766323987,215,0 +170766324035,215,0 +170766324083,215,0 +170766324131,213,0 +170766324179,213,0 +170766324226,213,0 +170766324274,213,0 +170766324322,213,0 +170766324370,213,0 +170766324418,213,0 +170766324466,214,0 +170766324514,214,0 +170766324562,214,0 +170766324609,214,0 +170766324657,214,0 +170766324705,214,0 +170766324753,214,0 +170766324801,214,0 +170766324849,215,0 +170766324897,215,0 +170766324945,215,0 +170766324993,215,0 +170766325041,214,0 +170766325089,213,0 +170766325138,213,0 +170766325186,213,0 +170766325234,213,0 +170766325282,214,0 +170766325330,214,0 +170766325378,214,0 +170766325425,214,0 +170766325473,214,0 +170766325521,214,0 +170766325569,215,0 +170766325617,214,0 +170766325665,215,0 +170766325713,215,0 +170766325760,215,0 +170766325808,215,0 +170766325858,215,0 +170766325906,215,0 +170766325954,213,0 +170766326003,213,0 +170766326052,213,0 +170766326100,214,0 +170766326148,213,0 +170766326196,213,0 +170766326244,214,0 +170766326291,214,0 +170766326339,214,0 +170766326387,214,0 +170766326435,214,0 +170766326483,214,0 +170766326531,214,0 +170766326579,214,0 +170766326627,215,0 +170766326675,215,0 +170766326722,215,0 +170766326770,215,0 +170766326818,215,0 +170766326866,215,0 +170766326914,215,0 +170766326963,215,0 +170766327011,215,0 +170766327059,216,0 +170766327107,215,0 +170766327155,216,0 +170766327202,215,0 +170766327250,215,0 +170766327298,214,0 +170766327346,214,0 +170766327394,214,0 +170766327442,214,0 +170766327489,214,0 +170766327537,215,0 +170766327585,215,0 +170766327635,215,0 +170766327683,215,0 +170766327730,215,0 +170766327778,215,0 +170766327828,215,0 +170766327875,216,0 +170766327923,215,0 +170766327971,215,0 +170766328019,216,0 +170766328068,215,0 +170766328116,215,0 +170766328164,215,0 +170766328212,215,0 +170766328260,213,0 +170766328308,214,0 +170766328356,214,0 +170766328403,214,0 +170766328451,214,0 +170766328499,214,0 +170766328547,214,0 +170766328595,215,0 +170766328643,215,0 +170766328691,215,0 +170766328740,215,0 +170766328788,215,0 +170766328836,215,0 +170766328884,215,0 +170766328931,215,0 +170766328979,215,0 +170766329027,215,0 +170766329075,215,0 +170766329123,215,0 +170766329171,213,0 +170766329219,213,0 +170766329266,214,0 +170766329314,214,0 +170766329362,214,0 +170766329410,214,0 +170766329458,214,0 +170766329506,214,0 +170766329554,215,0 +170766329603,215,0 +170766329651,215,0 +170766329699,215,0 +170766329748,215,0 +170766329796,215,0 +170766329844,215,0 +170766329894,215,0 +170766329942,215,0 +170766329990,215,0 +170766330039,215,0 +170766330087,213,0 +170766330135,213,0 +170766330185,214,0 +170766330233,214,0 +170766330281,214,0 +170766330330,214,0 +170766330380,214,0 +170766330429,214,0 +170766330477,214,0 +170766330525,214,0 +170766330573,214,0 +170766330621,215,0 +170766330669,215,0 +170766330717,215,0 +170766330765,215,0 +170766330813,215,0 +170766330862,215,0 +170766330910,215,0 +170766330958,215,0 +170766331006,213,0 +170766331054,213,0 +170766331102,213,0 +170766331151,213,0 +170766331199,214,0 +170766331247,214,0 +170766331295,214,0 +170766331343,214,0 +170766331393,214,0 +170766331440,214,0 +170766331488,214,0 +170766331538,215,0 +170766331586,215,0 +170766331634,215,0 +170766331682,215,0 +170766331731,215,0 +170766331779,215,0 +170766331827,215,0 +170766331877,215,0 +170766331925,213,0 +170766331974,213,0 +170766332024,213,0 +170766332072,213,0 +170766332120,214,0 +170766332168,214,0 +170766332217,214,0 +170766332267,214,0 +170766332315,214,0 +170766332364,214,0 +170766332414,215,0 +170766332463,214,0 +170766332513,215,0 +170766332561,215,0 +170766332610,215,0 +170766332660,215,0 +170766332708,215,0 +170766332756,215,0 +170766332804,214,0 +170766332852,213,0 +170766332901,213,0 +170766332949,213,0 +170766332997,213,0 +170766333045,214,0 +170766333093,214,0 +170766333141,214,0 +170766333189,214,0 +170766333239,214,0 +170766333287,214,0 +170766333334,214,0 +170766333382,215,0 +170766333432,215,0 +170766333480,215,0 +170766333528,215,0 +170766333577,214,0 +170766333625,215,0 +170766333675,215,0 +170766333723,213,0 +170766333771,213,0 +170766333819,213,0 +170766333868,213,0 +170766333918,213,0 +170766333966,213,0 +170766334014,213,0 +170766334061,214,0 +170766334109,214,0 +170766334157,214,0 +170766334205,213,0 +170766334255,214,0 +170766334304,215,0 +170766334352,215,0 +170766334400,215,0 +170766334448,215,0 +170766334498,215,0 +170766334546,215,0 +170766334593,215,0 +170766334641,213,0 +170766334689,213,0 +170766334737,213,0 +170766334785,213,0 +170766334833,213,0 +170766334881,213,0 +170766334929,213,0 +170766334978,214,0 +170766335028,214,0 +170766335077,214,0 +170766335127,214,0 +170766335174,214,0 +170766335222,214,0 +170766335270,214,0 +170766335318,215,0 +170766335366,215,0 +170766335414,215,0 +170766335462,215,0 +170766335510,215,0 +170766335557,214,0 +170766335605,213,0 +170766335653,213,0 +170766335703,213,0 +170766335751,213,0 +170766335798,213,0 +170766335846,213,0 +170766335894,214,0 +170766335942,214,0 +170766335990,214,0 +170766336038,214,0 +170766336086,214,0 +170766336133,215,0 +170766336181,215,0 +170766336229,215,0 +170766336277,215,0 +170766336325,215,0 +170766336373,215,0 +170766336421,215,0 +170766336469,213,0 +170766336516,213,0 +170766336564,213,0 +170766336612,213,0 +170766336662,213,0 +170766336709,213,0 +170766336757,214,0 +170766336805,214,0 +170766336853,214,0 +170766336901,214,0 +170766336949,214,0 +170766336997,215,0 +170766337045,215,0 +170766337092,215,0 +170766337140,215,0 +170766337188,215,0 +170766337238,215,0 +170766337287,215,0 +170766337335,215,0 +170766337383,214,0 +170766337432,213,0 +170766337480,213,0 +170766337530,213,0 +170766337578,213,0 +170766337625,213,0 +170766337673,213,0 +170766337721,214,0 +170766337769,213,0 +170766337817,214,0 +170766337865,214,0 +170766337913,214,0 +170766337961,215,0 +170766338010,215,0 +170766338058,215,0 +170766338106,215,0 +170766338154,215,0 +170766338202,215,0 +170766338251,214,0 +170766338299,213,0 +170766338347,213,0 +170766338395,213,0 +170766338443,213,0 +170766338491,213,0 +170766338539,213,0 +170766338587,213,0 +170766338634,214,0 +170766338682,214,0 +170766338730,214,0 +170766338778,214,0 +170766338826,214,0 +170766338874,214,0 +170766338921,215,0 +170766338969,215,0 +170766339017,215,0 +170766339065,215,0 +170766339113,214,0 +170766339161,213,0 +170766339209,213,0 +170766339258,213,0 +170766339306,213,0 +170766339354,213,0 +170766339402,213,0 +170766339451,213,0 +170766339499,213,0 +170766339547,214,0 +170766339595,214,0 +170766339643,214,0 +170766339691,214,0 +170766339739,215,0 +170766339787,215,0 +170766339836,215,0 +170766339884,215,0 +170766339932,215,0 +170766339980,215,0 +170766340028,213,0 +170766340076,213,0 +170766340123,213,0 +170766340173,213,0 +170766340221,213,0 +170766340269,214,0 +170766340317,214,0 +170766340365,214,0 +170766340414,214,0 +170766340462,214,0 +170766340512,215,0 +170766340560,215,0 +170766340609,215,0 +170766340657,215,0 +170766340705,215,0 +170766340754,215,0 +170766340804,215,0 +170766340852,215,0 +170766340900,213,0 +170766340948,213,0 +170766340997,213,0 +170766341047,213,0 +170766341095,214,0 +170766341144,214,0 +170766341192,214,0 +170766341240,214,0 +170766341288,214,0 +170766341336,214,0 +170766341384,214,0 +170766341432,215,0 +170766341480,215,0 +170766341529,215,0 +170766341577,215,0 +170766341625,215,0 +170766341675,215,0 +170766341722,214,0 +170766341770,213,0 +170766341818,213,0 +170766341868,213,0 +170766341916,214,0 +170766341965,214,0 +170766342013,214,0 +170766342061,214,0 +170766342109,214,0 +170766342157,214,0 +170766342205,214,0 +170766342253,215,0 +170766342301,215,0 +170766342349,215,0 +170766342396,215,0 +170766342446,215,0 +170766342495,215,0 +170766342543,215,0 +170766342591,213,0 +170766342641,213,0 +170766342689,213,0 +170766342737,214,0 +170766342785,214,0 +170766342832,214,0 +170766342880,214,0 +170766342928,214,0 +170766342978,214,0 +170766343027,214,0 +170766343075,214,0 +170766343123,215,0 +170766343171,215,0 +170766343219,215,0 +170766343269,215,0 +170766343318,215,0 +170766343368,215,0 +170766343416,214,0 +170766343464,213,0 +170766343512,213,0 +170766343561,214,0 +170766343611,214,0 +170766343658,214,0 +170766343708,214,0 +170766343756,214,0 +170766343804,214,0 +170766343852,214,0 +170766343900,215,0 +170766343948,215,0 +170766343996,215,0 +170766344044,215,0 +170766344093,215,0 +170766344141,215,0 +170766344191,215,0 +170766344240,215,0 +170766344288,214,0 +170766344336,213,0 +170766344384,214,0 +170766344432,214,0 +170766344480,214,0 +170766344528,214,0 +170766344577,214,0 +170766344625,214,0 +170766344673,214,0 +170766344721,215,0 +170766344769,215,0 +170766344817,215,0 +170766344865,215,0 +170766344913,215,0 +170766344961,215,0 +170766345010,215,0 +170766345058,215,0 +170766345106,215,0 +170766345155,213,0 +170766345203,213,0 +170766345251,214,0 +170766345299,214,0 +170766345347,214,0 +170766345396,214,0 +170766345446,214,0 +170766345494,215,0 +170766345542,215,0 +170766345590,215,0 +170766345638,214,0 +170766345687,215,0 +170766345735,215,0 +170766345785,215,0 +170766345834,215,0 +170766345884,215,0 +170766345933,215,0 +170766345981,214,0 +170766346030,213,0 +170766346080,213,0 +170766346128,214,0 +170766346176,214,0 +170766346224,214,0 +170766346273,214,0 +170766346323,214,0 +170766346372,214,0 +170766346422,214,0 +170766346470,214,0 +170766346518,215,0 +170766346566,215,0 +170766346615,215,0 +170766346665,215,0 +170766346713,215,0 +170766346760,215,0 +170766346808,215,0 +170766346856,213,0 +170766346904,213,0 +170766346954,213,0 +170766347002,213,0 +170766347050,213,0 +170766347099,214,0 +170766347149,214,0 +170766347197,214,0 +170766347246,214,0 +170766347296,214,0 +170766347344,214,0 +170766347391,214,0 +170766347439,215,0 +170766347489,214,0 +170766347537,215,0 +170766347585,215,0 +170766347634,215,0 +170766347684,214,0 +170766347732,213,0 +170766347780,213,0 +170766347828,213,0 +170766347875,214,0 +170766347923,214,0 +170766347971,214,0 +170766348019,214,0 +170766348067,214,0 +170766348115,214,0 +170766348163,215,0 +170766348211,215,0 +170766348259,215,0 +170766348309,215,0 +170766348358,215,0 +170766348408,215,0 +170766348455,215,0 +170766348503,215,0 +170766348553,213,0 +170766348601,213,0 +170766348649,213,0 +170766348698,213,0 +170766348748,214,0 +170766348797,214,0 +170766348845,214,0 +170766348895,214,0 +170766348943,214,0 +170766348992,214,0 +170766349040,215,0 +170766349088,215,0 +170766349137,215,0 +170766349185,215,0 +170766349233,215,0 +170766349281,215,0 +170766349329,215,0 +170766349379,215,0 +170766349426,213,0 +170766349474,213,0 +170766349522,213,0 +170766349570,213,0 +170766349618,214,0 +170766349668,214,0 +170766349716,214,0 +170766349764,214,0 +170766349812,214,0 +170766349861,214,0 +170766349909,215,0 +170766349959,215,0 +170766350007,215,0 +170766350056,215,0 +170766350104,215,0 +170766350152,215,0 +170766350200,215,0 +170766350248,214,0 +170766350296,213,0 +170766350344,214,0 +170766350392,214,0 +170766350440,214,0 +170766350487,214,0 +170766350537,214,0 +170766350585,214,0 +170766350633,214,0 +170766350681,214,0 +170766350729,215,0 +170766350777,215,0 +170766350825,215,0 +170766350873,215,0 +170766350920,215,0 +170766350968,215,0 +170766351016,215,0 +170766351064,215,0 +170766351112,214,0 +170766351160,213,0 +170766351210,214,0 +170766351258,214,0 +170766351306,214,0 +170766351353,214,0 +170766351403,214,0 +170766351453,214,0 +170766351501,215,0 +170766351548,215,0 +170766351596,215,0 +170766351646,215,0 +170766351694,215,0 +170766351742,215,0 +170766351791,215,0 +170766351839,215,0 +170766351889,215,0 +170766351938,214,0 +170766351988,213,0 +170766352036,213,0 +170766352084,213,0 +170766352133,214,0 +170766352181,214,0 +170766352229,214,0 +170766352277,214,0 +170766352327,214,0 +170766352375,215,0 +170766352423,215,0 +170766352471,215,0 +170766352520,215,0 +170766352568,216,0 +170766352616,215,0 +170766352664,215,0 +170766352712,215,0 +170766352762,215,0 +170766352809,213,0 +170766352857,213,0 +170766352905,213,0 +170766352955,213,0 +170766353003,213,0 +170766353052,214,0 +170766353100,214,0 +170766353148,214,0 +170766353196,214,0 +170766353244,214,0 +170766353292,214,0 +170766353340,214,0 +170766353389,215,0 +170766353437,215,0 +170766353485,215,0 +170766353533,215,0 +170766353583,215,0 +170766353631,215,0 +170766353679,213,0 +170766353728,213,0 +170766353776,213,0 +170766353824,213,0 +170766353872,213,0 +170766353919,214,0 +170766353967,213,0 +170766354015,214,0 +170766354065,214,0 +170766354113,214,0 +170766354161,214,0 +170766354208,215,0 +170766354256,214,0 +170766354306,214,0 +170766354354,215,0 +170766354402,215,0 +170766354450,215,0 +170766354498,214,0 +170766354546,213,0 +170766354595,213,0 +170766354643,213,0 +170766354691,213,0 +170766354741,213,0 +170766354789,214,0 +170766354836,214,0 +170766354884,214,0 +170766354932,214,0 +170766354980,214,0 +170766355030,214,0 +170766355078,215,0 +170766355126,215,0 +170766355175,215,0 +170766355225,215,0 +170766355273,215,0 +170766355321,215,0 +170766355370,214,0 +170766355420,214,0 +170766355469,214,0 +170766355517,214,0 +170766355565,214,0 +170766355613,214,0 +170766355661,214,0 +170766355709,215,0 +170766355757,215,0 +170766355805,215,0 +170766355853,215,0 +170766355902,215,0 +170766355950,215,0 +170766355999,215,0 +170766356047,215,0 +170766356095,215,0 +170766356143,215,0 +170766356192,214,0 +170766356240,214,0 +170766356288,214,0 +170766356336,214,0 +170766356385,214,0 +170766356434,215,0 +170766356483,215,0 +170766356531,214,0 +170766356579,215,0 +170766356628,215,0 +170766356676,215,0 +170766356724,215,0 +170766356774,215,0 +170766356822,215,0 +170766356869,215,0 +170766356919,215,0 +170766356967,215,0 +170766357016,215,0 +170766357064,213,0 +170766357112,213,0 +170766357161,214,0 +170766357209,214,0 +170766357257,214,0 +170766357306,214,0 +170766357354,214,0 +170766357402,215,0 +170766357450,215,0 +170766357500,215,0 +170766357548,215,0 +170766357595,215,0 +170766357645,215,0 +170766357693,215,0 +170766357741,215,0 +170766357789,215,0 +170766357837,215,0 +170766357885,213,0 +170766357933,213,0 +170766357980,213,0 +170766358030,213,0 +170766358079,214,0 +170766358127,214,0 +170766358175,214,0 +170766358223,214,0 +170766358271,214,0 +170766358319,214,0 +170766358367,215,0 +170766358417,215,0 +170766358465,215,0 +170766358513,215,0 +170766358562,215,0 +170766358611,215,0 +170766358659,214,0 +170766358709,215,0 +170766358759,213,0 +170766358807,214,0 +170766358855,214,0 +170766358902,214,0 +170766358950,214,0 +170766358998,214,0 +170766359046,214,0 +170766359094,215,0 +170766359144,215,0 +170766359192,215,0 +170766359240,215,0 +170766359288,215,0 +170766359336,215,0 +170766359383,215,0 +170766359431,215,0 +170766359479,215,0 +170766359529,215,0 +170766359577,214,0 +170766359625,213,0 +170766359673,214,0 +170766359721,214,0 +170766359769,214,0 +170766359818,214,0 +170766359866,214,0 +170766359914,214,0 +170766359962,215,0 +170766360011,215,0 diff --git a/laser_value/0212-01.csv b/laser_value/0212-01.csv new file mode 100644 index 0000000..37233b4 --- /dev/null +++ b/laser_value/0212-01.csv @@ -0,0 +1,7426 @@ +timestamp,laser_value,event +170766361463,214,0 +170766361511,214,0 +170766361558,214,0 +170766361606,214,0 +170766361654,214,0 +170766361702,214,0 +170766361750,215,0 +170766361798,215,0 +170766361845,215,0 +170766361893,215,0 +170766361942,215,0 +170766361990,215,0 +170766362038,215,0 +170766362086,215,0 +170766362134,213,0 +170766362181,213,0 +170766362229,213,0 +170766362277,213,0 +170766362325,213,0 +170766362374,214,0 +170766362422,214,0 +170766362470,214,0 +170766362518,214,0 +170766362566,214,0 +170766362613,214,0 +170766362661,215,0 +170766362709,215,0 +170766362757,215,0 +170766362805,215,0 +170766362853,215,0 +170766362900,215,0 +170766362948,215,0 +170766362996,213,0 +170766363044,213,0 +170766363092,213,0 +170766363139,213,0 +170766363187,214,0 +170766363235,214,0 +170766363283,214,0 +170766363331,214,0 +170766363379,215,0 +170766363426,215,0 +170766363474,215,0 +170766363522,215,0 +170766363570,215,0 +170766363617,215,0 +170766363665,215,0 +170766363713,215,0 +170766363761,215,0 +170766363808,215,0 +170766363856,213,0 +170766363904,213,0 +170766363952,214,0 +170766363999,214,0 +170766364047,214,0 +170766364095,214,0 +170766364143,214,0 +170766364190,214,0 +170766364238,214,0 +170766364286,215,0 +170766364334,215,0 +170766364382,215,0 +170766364431,215,0 +170766364479,215,0 +170766364527,215,0 +170766364574,215,0 +170766364622,215,0 +170766364670,214,0 +170766364718,213,0 +170766364766,213,0 +170766364813,213,0 +170766364861,214,0 +170766364909,214,0 +170766364957,214,0 +170766365005,214,0 +170766365052,214,0 +170766365100,215,0 +170766365148,215,0 +170766365196,215,0 +170766365244,215,0 +170766365292,215,0 +170766365339,215,0 +170766365387,215,0 +170766365435,215,0 +170766365483,215,0 +170766365531,213,0 +170766365578,213,0 +170766365626,213,0 +170766365674,214,0 +170766365722,214,0 +170766365770,214,0 +170766365817,214,0 +170766365865,214,0 +170766365913,215,0 +170766365961,215,0 +170766366008,215,0 +170766366056,215,0 +170766366104,215,0 +170766366152,215,0 +170766366200,215,0 +170766366247,215,0 +170766366295,215,0 +170766366343,214,0 +170766366391,213,0 +170766366439,213,0 +170766366488,214,0 +170766366536,214,0 +170766366584,214,0 +170766366631,214,0 +170766366679,214,0 +170766366727,214,0 +170766366775,214,0 +170766366822,215,0 +170766366870,215,0 +170766366918,215,0 +170766366966,215,0 +170766367014,215,0 +170766367063,215,0 +170766367111,215,0 +170766367159,215,0 +170766367206,213,0 +170766367254,213,0 +170766367302,213,0 +170766367350,213,0 +170766367398,213,0 +170766367446,213,0 +170766367493,214,0 +170766367543,214,0 +170766367591,214,0 +170766367640,214,0 +170766367688,215,0 +170766367736,215,0 +170766367786,215,0 +170766367835,215,0 +170766367883,215,0 +170766367931,215,0 +170766367979,215,0 +170766368027,215,0 +170766368075,213,0 +170766368123,213,0 +170766368172,214,0 +170766368220,213,0 +170766368268,213,0 +170766368316,214,0 +170766368364,214,0 +170766368412,215,0 +170766368461,214,0 +170766368509,214,0 +170766368559,215,0 +170766368607,215,0 +170766368655,215,0 +170766368704,215,0 +170766368752,215,0 +170766368802,215,0 +170766368850,215,0 +170766368897,215,0 +170766368945,213,0 +170766368993,213,0 +170766369041,213,0 +170766369089,214,0 +170766369137,214,0 +170766369187,214,0 +170766369235,214,0 +170766369282,214,0 +170766369330,215,0 +170766369380,215,0 +170766369430,215,0 +170766369479,215,0 +170766369529,215,0 +170766369577,215,0 +170766369624,215,0 +170766369672,215,0 +170766369720,215,0 +170766369768,214,0 +170766369816,214,0 +170766369865,214,0 +170766369913,214,0 +170766369963,215,0 +170766370011,214,0 +170766370059,214,0 +170766370108,215,0 +170766370156,215,0 +170766370204,215,0 +170766370252,215,0 +170766370301,215,0 +170766370349,215,0 +170766370397,215,0 +170766370445,216,0 +170766370493,215,0 +170766370541,215,0 +170766370589,215,0 +170766370636,214,0 +170766370684,214,0 +170766370732,214,0 +170766370780,215,0 +170766370828,215,0 +170766370876,215,0 +170766370924,215,0 +170766370972,215,0 +170766371019,215,0 +170766371067,215,0 +170766371115,215,0 +170766371163,215,0 +170766371211,215,0 +170766371259,215,0 +170766371308,215,0 +170766371357,215,0 +170766371405,215,0 +170766371453,214,0 +170766371501,214,0 +170766371549,214,0 +170766371597,214,0 +170766371645,214,0 +170766371693,214,0 +170766371740,214,0 +170766371788,215,0 +170766371836,215,0 +170766371884,215,0 +170766371932,215,0 +170766371980,215,0 +170766372028,215,0 +170766372076,215,0 +170766372123,215,0 +170766372173,215,0 +170766372220,215,0 +170766372268,215,0 +170766372316,214,0 +170766372364,214,0 +170766372412,214,0 +170766372460,214,0 +170766372508,214,0 +170766372557,214,0 +170766372605,214,0 +170766372652,214,0 +170766372700,215,0 +170766372748,215,0 +170766372796,215,0 +170766372844,215,0 +170766372893,214,0 +170766372941,214,0 +170766372989,215,0 +170766373037,215,0 +170766373085,215,0 +170766373132,214,0 +170766373180,213,0 +170766373228,214,0 +170766373276,214,0 +170766373324,214,0 +170766373373,214,0 +170766373423,214,0 +170766373471,214,0 +170766373520,214,0 +170766373568,215,0 +170766373617,215,0 +170766373665,215,0 +170766373715,215,0 +170766373762,215,0 +170766373810,215,0 +170766373858,215,0 +170766373906,215,0 +170766373954,215,0 +170766374002,213,0 +170766374050,214,0 +170766374099,214,0 +170766374147,214,0 +170766374195,214,0 +170766374243,214,0 +170766374291,214,0 +170766374339,215,0 +170766374387,215,0 +170766374434,215,0 +170766374484,215,0 +170766374533,215,0 +170766374581,215,0 +170766374631,215,0 +170766374680,215,0 +170766374728,215,0 +170766374776,215,0 +170766374824,214,0 +170766374872,214,0 +170766374919,214,0 +170766374967,214,0 +170766375015,214,0 +170766375063,214,0 +170766375111,215,0 +170766375158,215,0 +170766375206,215,0 +170766375254,215,0 +170766375302,215,0 +170766375350,215,0 +170766375398,215,0 +170766375445,215,0 +170766375493,215,0 +170766375541,215,0 +170766375589,215,0 +170766375637,215,0 +170766375685,213,0 +170766375732,213,0 +170766375780,214,0 +170766375828,214,0 +170766375877,214,0 +170766375925,214,0 +170766375973,214,0 +170766376021,214,0 +170766376068,214,0 +170766376116,214,0 +170766376164,215,0 +170766376212,215,0 +170766376261,215,0 +170766376309,215,0 +170766376357,215,0 +170766376407,215,0 +170766376455,215,0 +170766376504,213,0 +170766376552,213,0 +170766376600,213,0 +170766376648,214,0 +170766376697,214,0 +170766376745,214,0 +170766376795,214,0 +170766376843,214,0 +170766376892,214,0 +170766376940,215,0 +170766376989,214,0 +170766377037,215,0 +170766377087,214,0 +170766377136,215,0 +170766377186,215,0 +170766377234,215,0 +170766377283,215,0 +170766377331,214,0 +170766377381,214,0 +170766377429,214,0 +170766377478,214,0 +170766377528,214,0 +170766377575,214,0 +170766377623,214,0 +170766377671,214,0 +170766377719,214,0 +170766377767,215,0 +170766377816,214,0 +170766377866,215,0 +170766377914,215,0 +170766377961,215,0 +170766378011,215,0 +170766378059,215,0 +170766378107,215,0 +170766378154,215,0 +170766378204,214,0 +170766378252,214,0 +170766378300,214,0 +170766378349,214,0 +170766378397,214,0 +170766378445,214,0 +170766378494,214,0 +170766378544,214,0 +170766378592,215,0 +170766378640,215,0 +170766378689,215,0 +170766378737,215,0 +170766378785,215,0 +170766378835,215,0 +170766378882,215,0 +170766378932,215,0 +170766378980,215,0 +170766379028,214,0 +170766379077,214,0 +170766379125,214,0 +170766379173,214,0 +170766379223,214,0 +170766379272,214,0 +170766379320,214,0 +170766379368,214,0 +170766379418,214,0 +170766379465,215,0 +170766379513,215,0 +170766379561,215,0 +170766379609,215,0 +170766379657,215,0 +170766379705,215,0 +170766379753,215,0 +170766379800,215,0 +170766379848,215,0 +170766379898,213,0 +170766379946,213,0 +170766379995,214,0 +170766380043,214,0 +170766380092,214,0 +170766380142,214,0 +170766380190,214,0 +170766380239,214,0 +170766380287,214,0 +170766380335,215,0 +170766380383,215,0 +170766380433,215,0 +170766380480,215,0 +170766380528,215,0 +170766380576,215,0 +170766380624,215,0 +170766380672,215,0 +170766380722,213,0 +170766380770,213,0 +170766380819,213,0 +170766380869,214,0 +170766380917,214,0 +170766380966,214,0 +170766381014,214,0 +170766381062,214,0 +170766381110,215,0 +170766381160,214,0 +170766381208,215,0 +170766381256,215,0 +170766381305,215,0 +170766381354,215,0 +170766381402,215,0 +170766381450,215,0 +170766381498,215,0 +170766381548,214,0 +170766381597,213,0 +170766381645,213,0 +170766381693,213,0 +170766381741,214,0 +170766381791,214,0 +170766381839,214,0 +170766381887,214,0 +170766381935,214,0 +170766381982,214,0 +170766382032,214,0 +170766382081,215,0 +170766382129,215,0 +170766382177,215,0 +170766382225,215,0 +170766382273,215,0 +170766382321,215,0 +170766382369,215,0 +170766382417,213,0 +170766382465,213,0 +170766382513,213,0 +170766382561,213,0 +170766382609,214,0 +170766382657,214,0 +170766382706,214,0 +170766382754,214,0 +170766382802,214,0 +170766382850,214,0 +170766382898,214,0 +170766382947,215,0 +170766382997,215,0 +170766383045,215,0 +170766383093,216,0 +170766383141,215,0 +170766383188,215,0 +170766383236,214,0 +170766383286,213,0 +170766383334,213,0 +170766383383,213,0 +170766383431,213,0 +170766383479,214,0 +170766383527,214,0 +170766383575,214,0 +170766383623,214,0 +170766383671,214,0 +170766383720,215,0 +170766383770,215,0 +170766383819,215,0 +170766383867,215,0 +170766383915,215,0 +170766383963,215,0 +170766384013,215,0 +170766384060,215,0 +170766384108,214,0 +170766384156,214,0 +170766384206,214,0 +170766384254,214,0 +170766384302,214,0 +170766384351,215,0 +170766384399,214,0 +170766384449,215,0 +170766384496,215,0 +170766384544,215,0 +170766384592,215,0 +170766384640,215,0 +170766384688,215,0 +170766384736,215,0 +170766384786,215,0 +170766384834,215,0 +170766384882,215,0 +170766384929,214,0 +170766384977,214,0 +170766385025,214,0 +170766385073,214,0 +170766385121,214,0 +170766385169,214,0 +170766385219,215,0 +170766385268,215,0 +170766385316,215,0 +170766385366,215,0 +170766385414,215,0 +170766385463,215,0 +170766385511,215,0 +170766385559,215,0 +170766385608,215,0 +170766385656,215,0 +170766385706,215,0 +170766385754,215,0 +170766385803,213,0 +170766385853,214,0 +170766385900,213,0 +170766385948,214,0 +170766385996,214,0 +170766386046,214,0 +170766386094,214,0 +170766386141,214,0 +170766386189,215,0 +170766386237,215,0 +170766386285,215,0 +170766386335,215,0 +170766386382,215,0 +170766386432,215,0 +170766386480,215,0 +170766386528,215,0 +170766386576,215,0 +170766386625,214,0 +170766386673,213,0 +170766386721,213,0 +170766386771,214,0 +170766386819,214,0 +170766386867,214,0 +170766386916,214,0 +170766386965,214,0 +170766387015,214,0 +170766387064,214,0 +170766387112,215,0 +170766387160,215,0 +170766387210,215,0 +170766387259,215,0 +170766387309,215,0 +170766387357,215,0 +170766387406,215,0 +170766387456,214,0 +170766387503,213,0 +170766387551,213,0 +170766387599,214,0 +170766387647,213,0 +170766387697,214,0 +170766387745,214,0 +170766387792,214,0 +170766387840,214,0 +170766387888,214,0 +170766387936,214,0 +170766387986,215,0 +170766388035,215,0 +170766388085,215,0 +170766388133,215,0 +170766388181,215,0 +170766388230,215,0 +170766388278,216,0 +170766388326,213,0 +170766388374,214,0 +170766388422,214,0 +170766388470,214,0 +170766388518,214,0 +170766388567,214,0 +170766388617,214,0 +170766388665,214,0 +170766388714,215,0 +170766388762,215,0 +170766388810,215,0 +170766388860,215,0 +170766388908,215,0 +170766388957,215,0 +170766389005,215,0 +170766389053,215,0 +170766389101,215,0 +170766389150,214,0 +170766389198,214,0 +170766389246,214,0 +170766389295,215,0 +170766389345,215,0 +170766389394,215,0 +170766389442,215,0 +170766389490,215,0 +170766389538,215,0 +170766389588,215,0 +170766389636,215,0 +170766389684,215,0 +170766389731,215,0 +170766389779,215,0 +170766389827,215,0 +170766389875,215,0 +170766389923,215,0 +170766389971,215,0 +170766390019,214,0 +170766390067,214,0 +170766390115,215,0 +170766390164,214,0 +170766390214,215,0 +170766390263,215,0 +170766390311,215,0 +170766390359,215,0 +170766390407,215,0 +170766390455,215,0 +170766390503,215,0 +170766390551,215,0 +170766390599,215,0 +170766390646,215,0 +170766390694,215,0 +170766390744,215,0 +170766390792,215,0 +170766390840,214,0 +170766390887,214,0 +170766390937,214,0 +170766390985,214,0 +170766391034,214,0 +170766391084,214,0 +170766391132,214,0 +170766391181,215,0 +170766391231,215,0 +170766391278,215,0 +170766391326,215,0 +170766391374,215,0 +170766391422,215,0 +170766391472,215,0 +170766391519,215,0 +170766391569,215,0 +170766391617,215,0 +170766391665,214,0 +170766391713,213,0 +170766391761,214,0 +170766391810,214,0 +170766391860,214,0 +170766391908,214,0 +170766391956,214,0 +170766392003,214,0 +170766392053,215,0 +170766392102,215,0 +170766392150,215,0 +170766392198,215,0 +170766392246,215,0 +170766392294,215,0 +170766392342,215,0 +170766392390,215,0 +170766392438,215,0 +170766392486,214,0 +170766392534,213,0 +170766392582,214,0 +170766392631,214,0 +170766392681,214,0 +170766392729,214,0 +170766392778,214,0 +170766392826,215,0 +170766392874,215,0 +170766392923,215,0 +170766392971,215,0 +170766393021,215,0 +170766393069,215,0 +170766393117,215,0 +170766393166,215,0 +170766393214,215,0 +170766393262,215,0 +170766393310,215,0 +170766393358,214,0 +170766393405,214,0 +170766393453,214,0 +170766393501,214,0 +170766393549,214,0 +170766393597,214,0 +170766393645,215,0 +170766393692,215,0 +170766393740,215,0 +170766393788,215,0 +170766393836,215,0 +170766393884,215,0 +170766393932,215,0 +170766393980,215,0 +170766394027,215,0 +170766394075,215,0 +170766394123,215,0 +170766394172,215,0 +170766394220,213,0 +170766394268,213,0 +170766394316,214,0 +170766394364,214,0 +170766394413,214,0 +170766394461,214,0 +170766394509,214,0 +170766394557,214,0 +170766394605,214,0 +170766394653,215,0 +170766394701,215,0 +170766394748,215,0 +170766394796,215,0 +170766394844,215,0 +170766394892,215,0 +170766394940,215,0 +170766394988,215,0 +170766395035,213,0 +170766395083,214,0 +170766395131,214,0 +170766395179,214,0 +170766395227,214,0 +170766395276,214,0 +170766395324,214,0 +170766395372,214,0 +170766395420,214,0 +170766395469,215,0 +170766395517,215,0 +170766395565,215,0 +170766395614,215,0 +170766395662,215,0 +170766395710,215,0 +170766395758,215,0 +170766395806,215,0 +170766395854,214,0 +170766395901,213,0 +170766395949,213,0 +170766395999,214,0 +170766396047,213,0 +170766396095,214,0 +170766396143,214,0 +170766396190,214,0 +170766396238,214,0 +170766396286,214,0 +170766396334,215,0 +170766396383,215,0 +170766396431,215,0 +170766396481,215,0 +170766396530,214,0 +170766396578,215,0 +170766396626,215,0 +170766396674,215,0 +170766396722,213,0 +170766396770,213,0 +170766396818,214,0 +170766396866,213,0 +170766396914,214,0 +170766396963,214,0 +170766397012,214,0 +170766397060,214,0 +170766397108,214,0 +170766397156,214,0 +170766397206,215,0 +170766397254,215,0 +170766397302,215,0 +170766397349,215,0 +170766397399,215,0 +170766397447,215,0 +170766397495,215,0 +170766397543,214,0 +170766397592,213,0 +170766397641,213,0 +170766397689,214,0 +170766397737,214,0 +170766397787,214,0 +170766397835,214,0 +170766397883,214,0 +170766397932,214,0 +170766397982,215,0 +170766398031,215,0 +170766398081,215,0 +170766398128,215,0 +170766398176,215,0 +170766398224,215,0 +170766398272,215,0 +170766398322,215,0 +170766398370,215,0 +170766398418,214,0 +170766398467,214,0 +170766398515,214,0 +170766398563,214,0 +170766398613,214,0 +170766398660,214,0 +170766398708,214,0 +170766398756,215,0 +170766398806,215,0 +170766398854,215,0 +170766398903,215,0 +170766398951,215,0 +170766398999,215,0 +170766399047,215,0 +170766399096,215,0 +170766399144,215,0 +170766399194,215,0 +170766399242,214,0 +170766399289,214,0 +170766399337,214,0 +170766399385,214,0 +170766399433,214,0 +170766399481,214,0 +170766399529,215,0 +170766399577,215,0 +170766399626,215,0 +170766399674,215,0 +170766399722,215,0 +170766399772,215,0 +170766399819,215,0 +170766399869,215,0 +170766399917,215,0 +170766399965,215,0 +170766400013,215,0 +170766400060,215,0 +170766400108,214,0 +170766400156,213,0 +170766400204,214,0 +170766400252,214,0 +170766400300,214,0 +170766400348,214,0 +170766400397,214,0 +170766400445,214,0 +170766400493,214,0 +170766400542,215,0 +170766400590,215,0 +170766400638,215,0 +170766400686,215,0 +170766400734,216,0 +170766400782,215,0 +170766400830,215,0 +170766400878,215,0 +170766400926,214,0 +170766400975,213,0 +170766401023,214,0 +170766401073,214,0 +170766401122,214,0 +170766401172,214,0 +170766401219,214,0 +170766401267,214,0 +170766401317,214,0 +170766401366,215,0 +170766401416,215,0 +170766401464,215,0 +170766401513,215,0 +170766401561,215,0 +170766401610,215,0 +170766401658,215,0 +170766401708,215,0 +170766401755,214,0 +170766401805,213,0 +170766401853,213,0 +170766401902,214,0 +170766401950,214,0 +170766401998,214,0 +170766402046,214,0 +170766402094,214,0 +170766402142,214,0 +170766402191,214,0 +170766402239,215,0 +170766402287,215,0 +170766402335,215,0 +170766402385,215,0 +170766402433,215,0 +170766402480,215,0 +170766402528,215,0 +170766402576,214,0 +170766402624,214,0 +170766402672,214,0 +170766402720,214,0 +170766402768,214,0 +170766402817,214,0 +170766402867,214,0 +170766402914,215,0 +170766402962,215,0 +170766403012,215,0 +170766403060,215,0 +170766403107,215,0 +170766403155,215,0 +170766403205,215,0 +170766403254,215,0 +170766403302,215,0 +170766403350,215,0 +170766403398,214,0 +170766403446,214,0 +170766403495,214,0 +170766403545,214,0 +170766403593,214,0 +170766403640,215,0 +170766403690,215,0 +170766403738,215,0 +170766403786,215,0 +170766403834,215,0 +170766403883,215,0 +170766403931,215,0 +170766403979,215,0 +170766404027,215,0 +170766404076,216,0 +170766404124,215,0 +170766404172,215,0 +170766404220,214,0 +170766404268,214,0 +170766404316,214,0 +170766404365,214,0 +170766404413,214,0 +170766404461,215,0 +170766404510,215,0 +170766404558,215,0 +170766404606,215,0 +170766404654,215,0 +170766404702,215,0 +170766404750,215,0 +170766404799,215,0 +170766404847,216,0 +170766404895,215,0 +170766404943,215,0 +170766404991,215,0 +170766405039,214,0 +170766405088,214,0 +170766405138,214,0 +170766405186,214,0 +170766405235,214,0 +170766405283,214,0 +170766405331,214,0 +170766405379,214,0 +170766405428,215,0 +170766405476,215,0 +170766405524,215,0 +170766405572,215,0 +170766405620,215,0 +170766405667,215,0 +170766405715,215,0 +170766405763,215,0 +170766405811,215,0 +170766405861,215,0 +170766405908,213,0 +170766405958,214,0 +170766406007,214,0 +170766406055,214,0 +170766406103,213,0 +170766406153,214,0 +170766406202,214,0 +170766406250,214,0 +170766406298,215,0 +170766406346,215,0 +170766406394,215,0 +170766406443,215,0 +170766406491,215,0 +170766406539,215,0 +170766406587,215,0 +170766406635,215,0 +170766406683,215,0 +170766406732,214,0 +170766406782,213,0 +170766406829,214,0 +170766406877,214,0 +170766406927,214,0 +170766406975,214,0 +170766407023,214,0 +170766407071,215,0 +170766407119,215,0 +170766407166,215,0 +170766407216,215,0 +170766407264,215,0 +170766407312,215,0 +170766407360,215,0 +170766407409,215,0 +170766407457,215,0 +170766407507,215,0 +170766407554,214,0 +170766407604,214,0 +170766407652,214,0 +170766407701,214,0 +170766407749,214,0 +170766407797,214,0 +170766407847,214,0 +170766407895,215,0 +170766407944,215,0 +170766407992,215,0 +170766408041,215,0 +170766408089,215,0 +170766408139,215,0 +170766408188,215,0 +170766408238,215,0 +170766408286,215,0 +170766408335,215,0 +170766408383,214,0 +170766408431,214,0 +170766408479,214,0 +170766408527,214,0 +170766408576,214,0 +170766408624,214,0 +170766408672,215,0 +170766408720,214,0 +170766408768,215,0 +170766408816,214,0 +170766408864,215,0 +170766408912,215,0 +170766408961,215,0 +170766409009,215,0 +170766409057,215,0 +170766409106,215,0 +170766409154,215,0 +170766409202,214,0 +170766409250,213,0 +170766409298,214,0 +170766409346,214,0 +170766409393,214,0 +170766409441,214,0 +170766409489,214,0 +170766409537,214,0 +170766409585,215,0 +170766409635,215,0 +170766409683,215,0 +170766409731,215,0 +170766409780,215,0 +170766409830,215,0 +170766409877,215,0 +170766409925,215,0 +170766409973,215,0 +170766410021,213,0 +170766410069,213,0 +170766410118,213,0 +170766410166,213,0 +170766410216,213,0 +170766410265,213,0 +170766410313,214,0 +170766410361,214,0 +170766410409,214,0 +170766410457,214,0 +170766410506,215,0 +170766410554,215,0 +170766410602,215,0 +170766410650,215,0 +170766410698,215,0 +170766410746,215,0 +170766410794,215,0 +170766410843,213,0 +170766410891,213,0 +170766410939,213,0 +170766410987,213,0 +170766411035,213,0 +170766411083,214,0 +170766411130,214,0 +170766411180,214,0 +170766411227,214,0 +170766411275,214,0 +170766411323,214,0 +170766411373,214,0 +170766411420,215,0 +170766411468,215,0 +170766411518,215,0 +170766411566,215,0 +170766411614,215,0 +170766411662,213,0 +170766411711,213,0 +170766411759,213,0 +170766411807,213,0 +170766411855,214,0 +170766411903,214,0 +170766411951,214,0 +170766411999,214,0 +170766412048,215,0 +170766412098,215,0 +170766412147,215,0 +170766412195,215,0 +170766412243,215,0 +170766412291,215,0 +170766412339,215,0 +170766412387,215,0 +170766412435,215,0 +170766412483,214,0 +170766412532,214,0 +170766412580,214,0 +170766412628,214,0 +170766412676,214,0 +170766412724,215,0 +170766412772,214,0 +170766412820,215,0 +170766412868,215,0 +170766412917,215,0 +170766412967,215,0 +170766413016,215,0 +170766413064,215,0 +170766413112,215,0 +170766413160,215,0 +170766413208,215,0 +170766413257,215,0 +170766413305,214,0 +170766413355,213,0 +170766413403,214,0 +170766413450,213,0 +170766413498,214,0 +170766413546,214,0 +170766413594,214,0 +170766413643,214,0 +170766413691,214,0 +170766413739,215,0 +170766413787,215,0 +170766413835,215,0 +170766413882,215,0 +170766413930,215,0 +170766413978,215,0 +170766414026,215,0 +170766414074,215,0 +170766414123,214,0 +170766414173,213,0 +170766414221,214,0 +170766414269,214,0 +170766414318,214,0 +170766414368,214,0 +170766414417,214,0 +170766414465,214,0 +170766414513,215,0 +170766414561,214,0 +170766414609,214,0 +170766414657,215,0 +170766414706,215,0 +170766414756,215,0 +170766414804,215,0 +170766414852,215,0 +170766414901,215,0 +170766414949,214,0 +170766414997,214,0 +170766415045,214,0 +170766415094,214,0 +170766415142,214,0 +170766415190,214,0 +170766415238,214,0 +170766415286,214,0 +170766415335,214,0 +170766415383,215,0 +170766415431,215,0 +170766415481,215,0 +170766415528,215,0 +170766415576,215,0 +170766415624,215,0 +170766415672,215,0 +170766415720,215,0 +170766415770,214,0 +170766415817,214,0 +170766415865,214,0 +170766415913,214,0 +170766415961,214,0 +170766416009,215,0 +170766416058,215,0 +170766416106,215,0 +170766416154,215,0 +170766416202,215,0 +170766416250,216,0 +170766416297,215,0 +170766416345,215,0 +170766416393,215,0 +170766416441,215,0 +170766416490,215,0 +170766416538,215,0 +170766416586,214,0 +170766416634,214,0 +170766416684,214,0 +170766416732,214,0 +170766416779,215,0 +170766416827,215,0 +170766416875,215,0 +170766416923,215,0 +170766416972,215,0 +170766417020,215,0 +170766417070,215,0 +170766417119,215,0 +170766417169,215,0 +170766417218,215,0 +170766417266,215,0 +170766417316,215,0 +170766417364,214,0 +170766417412,215,0 +170766417460,214,0 +170766417507,214,0 +170766417557,214,0 +170766417605,214,0 +170766417654,214,0 +170766417702,215,0 +170766417752,215,0 +170766417800,215,0 +170766417847,215,0 +170766417895,215,0 +170766417945,215,0 +170766417994,215,0 +170766418044,215,0 +170766418093,215,0 +170766418141,215,0 +170766418189,215,0 +170766418237,215,0 +170766418287,213,0 +170766418335,213,0 +170766418383,214,0 +170766418430,213,0 +170766418478,213,0 +170766418528,214,0 +170766418577,214,0 +170766418625,214,0 +170766418673,214,0 +170766418723,215,0 +170766418772,215,0 +170766418820,215,0 +170766418868,215,0 +170766418916,215,0 +170766418964,215,0 +170766419011,215,0 +170766419059,215,0 +170766419107,213,0 +170766419155,213,0 +170766419205,213,0 +170766419253,213,0 +170766419300,214,0 +170766419348,214,0 +170766419396,214,0 +170766419444,214,0 +170766419492,214,0 +170766419540,214,0 +170766419589,214,0 +170766419639,215,0 +170766419688,215,0 +170766419736,215,0 +170766419784,215,0 +170766419832,215,0 +170766419880,215,0 +170766419928,213,0 +170766419976,213,0 +170766420024,214,0 +170766420072,214,0 +170766420120,214,0 +170766420169,214,0 +170766420217,214,0 +170766420265,214,0 +170766420313,215,0 +170766420363,215,0 +170766420410,215,0 +170766420458,215,0 +170766420508,215,0 +170766420556,215,0 +170766420603,215,0 +170766420651,215,0 +170766420699,215,0 +170766420749,213,0 +170766420797,213,0 +170766420845,213,0 +170766420893,214,0 +170766420942,214,0 +170766420991,214,0 +170766421039,214,0 +170766421087,214,0 +170766421135,215,0 +170766421183,215,0 +170766421231,215,0 +170766421279,215,0 +170766421327,215,0 +170766421377,215,0 +170766421424,215,0 +170766421472,215,0 +170766421522,215,0 +170766421570,213,0 +170766421618,213,0 +170766421665,213,0 +170766421715,213,0 +170766421763,214,0 +170766421812,214,0 +170766421860,214,0 +170766421908,214,0 +170766421956,214,0 +170766422005,214,0 +170766422055,214,0 +170766422103,215,0 +170766422152,215,0 +170766422200,215,0 +170766422248,214,0 +170766422297,215,0 +170766422345,214,0 +170766422393,213,0 +170766422441,213,0 +170766422489,213,0 +170766422537,213,0 +170766422586,213,0 +170766422636,214,0 +170766422686,214,0 +170766422733,214,0 +170766422783,214,0 +170766422831,215,0 +170766422880,215,0 +170766422928,215,0 +170766422976,215,0 +170766423024,215,0 +170766423074,215,0 +170766423121,215,0 +170766423171,215,0 +170766423219,213,0 +170766423268,213,0 +170766423316,213,0 +170766423364,213,0 +170766423414,213,0 +170766423462,214,0 +170766423511,214,0 +170766423559,214,0 +170766423608,214,0 +170766423658,214,0 +170766423706,214,0 +170766423754,215,0 +170766423803,215,0 +170766423853,215,0 +170766423902,215,0 +170766423950,215,0 +170766423998,215,0 +170766424046,213,0 +170766424095,213,0 +170766424143,213,0 +170766424191,213,0 +170766424239,214,0 +170766424287,214,0 +170766424336,214,0 +170766424384,214,0 +170766424432,214,0 +170766424480,214,0 +170766424528,215,0 +170766424577,215,0 +170766424625,215,0 +170766424673,215,0 +170766424721,214,0 +170766424769,215,0 +170766424817,215,0 +170766424864,213,0 +170766424912,213,0 +170766424960,214,0 +170766425008,214,0 +170766425056,214,0 +170766425104,214,0 +170766425153,214,0 +170766425201,214,0 +170766425249,215,0 +170766425297,215,0 +170766425344,215,0 +170766425394,215,0 +170766425443,215,0 +170766425491,215,0 +170766425539,215,0 +170766425589,215,0 +170766425636,215,0 +170766425684,214,0 +170766425734,215,0 +170766425782,215,0 +170766425830,215,0 +170766425877,215,0 +170766425925,215,0 +170766425973,215,0 +170766426021,215,0 +170766426069,215,0 +170766426117,215,0 +170766426164,215,0 +170766426212,216,0 +170766426260,215,0 +170766426310,215,0 +170766426358,215,0 +170766426407,215,0 +170766426455,215,0 +170766426503,215,0 +170766426551,215,0 +170766426599,215,0 +170766426647,215,0 +170766426694,215,0 +170766426742,215,0 +170766426790,215,0 +170766426838,215,0 +170766426886,215,0 +170766426934,215,0 +170766426982,215,0 +170766427030,215,0 +170766427079,215,0 +170766427129,215,0 +170766427178,215,0 +170766427226,215,0 +170766427275,215,0 +170766427323,214,0 +170766427371,214,0 +170766427421,214,0 +170766427468,214,0 +170766427518,214,0 +170766427566,214,0 +170766427614,215,0 +170766427663,215,0 +170766427711,215,0 +170766427759,215,0 +170766427807,215,0 +170766427855,215,0 +170766427902,215,0 +170766427950,215,0 +170766428000,215,0 +170766428049,215,0 +170766428099,215,0 +170766428147,214,0 +170766428196,214,0 +170766428246,214,0 +170766428295,213,0 +170766428343,214,0 +170766428391,214,0 +170766428439,214,0 +170766428487,214,0 +170766428535,214,0 +170766428582,215,0 +170766428632,215,0 +170766428680,215,0 +170766428728,215,0 +170766428776,215,0 +170766428823,215,0 +170766428873,215,0 +170766428921,215,0 +170766428969,214,0 +170766429017,214,0 +170766429066,214,0 +170766429114,214,0 +170766429164,214,0 +170766429213,214,0 +170766429261,215,0 +170766429310,215,0 +170766429360,215,0 +170766429408,215,0 +170766429456,215,0 +170766429505,215,0 +170766429553,215,0 +170766429601,215,0 +170766429649,215,0 +170766429697,215,0 +170766429746,215,0 +170766429794,214,0 +170766429842,214,0 +170766429890,214,0 +170766429937,214,0 +170766429985,215,0 +170766430033,215,0 +170766430081,215,0 +170766430128,215,0 +170766430176,215,0 +170766430224,215,0 +170766430272,215,0 +170766430320,216,0 +170766430368,215,0 +170766430416,215,0 +170766430463,215,0 +170766430513,215,0 +170766430561,215,0 +170766430610,214,0 +170766430658,214,0 +170766430706,214,0 +170766430756,214,0 +170766430804,214,0 +170766430851,214,0 +170766430899,214,0 +170766430947,215,0 +170766430995,215,0 +170766431043,215,0 +170766431090,215,0 +170766431138,215,0 +170766431186,215,0 +170766431234,215,0 +170766431282,215,0 +170766431330,215,0 +170766431379,215,0 +170766431427,214,0 +170766431475,214,0 +170766431523,214,0 +170766431571,214,0 +170766431620,214,0 +170766431668,214,0 +170766431716,214,0 +170766431764,215,0 +170766431814,215,0 +170766431863,215,0 +170766431911,215,0 +170766431961,215,0 +170766432008,215,0 +170766432056,215,0 +170766432104,215,0 +170766432152,215,0 +170766432200,215,0 +170766432249,214,0 +170766432297,213,0 +170766432345,213,0 +170766432393,214,0 +170766432441,214,0 +170766432489,214,0 +170766432536,214,0 +170766432584,214,0 +170766432632,214,0 +170766432682,215,0 +170766432730,215,0 +170766432777,215,0 +170766432827,215,0 +170766432875,215,0 +170766432922,215,0 +170766432970,215,0 +170766433018,215,0 +170766433066,214,0 +170766433114,213,0 +170766433161,213,0 +170766433209,214,0 +170766433257,214,0 +170766433305,214,0 +170766433353,214,0 +170766433401,214,0 +170766433448,214,0 +170766433496,214,0 +170766433544,214,0 +170766433592,215,0 +170766433640,215,0 +170766433688,215,0 +170766433736,215,0 +170766433784,215,0 +170766433834,215,0 +170766433881,214,0 +170766433929,213,0 +170766433977,213,0 +170766434025,214,0 +170766434073,214,0 +170766434121,214,0 +170766434169,214,0 +170766434217,214,0 +170766434265,214,0 +170766434313,215,0 +170766434361,215,0 +170766434409,215,0 +170766434457,215,0 +170766434505,215,0 +170766434554,215,0 +170766434602,215,0 +170766434651,215,0 +170766434699,215,0 +170766434749,213,0 +170766434797,213,0 +170766434845,214,0 +170766434894,214,0 +170766434942,214,0 +170766434990,214,0 +170766435038,214,0 +170766435086,214,0 +170766435134,215,0 +170766435183,215,0 +170766435231,215,0 +170766435281,215,0 +170766435329,215,0 +170766435376,215,0 +170766435424,215,0 +170766435472,215,0 +170766435520,214,0 +170766435570,213,0 +170766435618,214,0 +170766435665,214,0 +170766435715,214,0 +170766435763,214,0 +170766435812,214,0 +170766435862,215,0 +170766435909,215,0 +170766435957,215,0 +170766436005,215,0 +170766436053,215,0 +170766436101,215,0 +170766436149,215,0 +170766436197,215,0 +170766436245,215,0 +170766436293,215,0 +170766436341,214,0 +170766436389,213,0 +170766436436,213,0 +170766436486,214,0 +170766436534,213,0 +170766436582,214,0 +170766436630,214,0 +170766436677,214,0 +170766436725,214,0 +170766436773,214,0 +170766436821,215,0 +170766436869,215,0 +170766436918,215,0 +170766436968,215,0 +170766437016,215,0 +170766437065,215,0 +170766437115,215,0 +170766437163,214,0 +170766437210,213,0 +170766437258,213,0 +170766437306,214,0 +170766437354,214,0 +170766437402,213,0 +170766437450,214,0 +170766437497,214,0 +170766437545,214,0 +170766437595,215,0 +170766437642,214,0 +170766437690,215,0 +170766437738,215,0 +170766437786,215,0 +170766437834,215,0 +170766437882,215,0 +170766437931,215,0 +170766437981,214,0 +170766438030,213,0 +170766438078,213,0 +170766438126,213,0 +170766438174,214,0 +170766438222,214,0 +170766438270,214,0 +170766438318,214,0 +170766438366,215,0 +170766438415,215,0 +170766438465,215,0 +170766438513,215,0 +170766438561,215,0 +170766438609,215,0 +170766438657,215,0 +170766438706,215,0 +170766438756,215,0 +170766438805,214,0 +170766438855,214,0 +170766438903,214,0 +170766438950,214,0 +170766438998,214,0 +170766439046,214,0 +170766439094,215,0 +170766439142,215,0 +170766439190,215,0 +170766439238,215,0 +170766439285,215,0 +170766439333,215,0 +170766439381,215,0 +170766439429,215,0 +170766439477,215,0 +170766439524,215,0 +170766439572,215,0 +170766439620,214,0 +170766439669,214,0 +170766439719,214,0 +170766439767,214,0 +170766439816,215,0 +170766439864,214,0 +170766439912,215,0 +170766439960,215,0 +170766440008,215,0 +170766440056,215,0 +170766440105,215,0 +170766440155,215,0 +170766440204,215,0 +170766440252,215,0 +170766440300,215,0 +170766440348,215,0 +170766440396,215,0 +170766440444,214,0 +170766440492,213,0 +170766440539,214,0 +170766440587,214,0 +170766440635,214,0 +170766440683,214,0 +170766440732,214,0 +170766440782,214,0 +170766440830,214,0 +170766440877,214,0 +170766440925,214,0 +170766440973,214,0 +170766441021,215,0 +170766441068,215,0 +170766441116,215,0 +170766441164,215,0 +170766441212,215,0 +170766441260,215,0 +170766441308,214,0 +170766441355,213,0 +170766441403,214,0 +170766441451,214,0 +170766441499,214,0 +170766441547,214,0 +170766441596,214,0 +170766441644,214,0 +170766441692,214,0 +170766441742,214,0 +170766441791,215,0 +170766441841,215,0 +170766441890,215,0 +170766441938,215,0 +170766441986,215,0 +170766442035,215,0 +170766442085,214,0 +170766442133,213,0 +170766442181,214,0 +170766442229,214,0 +170766442278,214,0 +170766442326,214,0 +170766442376,214,0 +170766442425,215,0 +170766442473,215,0 +170766442521,215,0 +170766442570,215,0 +170766442620,215,0 +170766442668,215,0 +170766442716,215,0 +170766442764,215,0 +170766442813,215,0 +170766442861,215,0 +170766442909,215,0 +170766442958,214,0 +170766443008,214,0 +170766443057,214,0 +170766443105,214,0 +170766443153,215,0 +170766443201,215,0 +170766443249,215,0 +170766443297,215,0 +170766443344,215,0 +170766443392,215,0 +170766443442,215,0 +170766443490,215,0 +170766443537,215,0 +170766443585,215,0 +170766443633,215,0 +170766443683,215,0 +170766443730,214,0 +170766443780,214,0 +170766443828,215,0 +170766443876,215,0 +170766443924,215,0 +170766443971,215,0 +170766444019,215,0 +170766444067,215,0 +170766444117,215,0 +170766444166,216,0 +170766444214,215,0 +170766444262,215,0 +170766444310,216,0 +170766444357,215,0 +170766444405,215,0 +170766444453,215,0 +170766444501,215,0 +170766444549,214,0 +170766444597,214,0 +170766444644,214,0 +170766444694,214,0 +170766444742,214,0 +170766444790,214,0 +170766444837,214,0 +170766444885,214,0 +170766444935,215,0 +170766444984,215,0 +170766445032,215,0 +170766445082,215,0 +170766445130,215,0 +170766445178,215,0 +170766445225,215,0 +170766445273,215,0 +170766445323,215,0 +170766445371,215,0 +170766445420,214,0 +170766445468,213,0 +170766445517,214,0 +170766445565,214,0 +170766445615,214,0 +170766445663,215,0 +170766445711,215,0 +170766445760,215,0 +170766445808,215,0 +170766445856,214,0 +170766445904,215,0 +170766445952,215,0 +170766446000,215,0 +170766446047,215,0 +170766446095,215,0 +170766446143,215,0 +170766446193,215,0 +170766446241,214,0 +170766446288,214,0 +170766446336,214,0 +170766446384,214,0 +170766446432,214,0 +170766446480,214,0 +170766446528,215,0 +170766446576,214,0 +170766446623,215,0 +170766446673,215,0 +170766446721,215,0 +170766446769,215,0 +170766446816,216,0 +170766446864,215,0 +170766446912,216,0 +170766446960,216,0 +170766447009,215,0 +170766447057,214,0 +170766447105,214,0 +170766447153,214,0 +170766447201,214,0 +170766447249,214,0 +170766447297,215,0 +170766447346,215,0 +170766447396,215,0 +170766447444,215,0 +170766447493,215,0 +170766447541,215,0 +170766447590,215,0 +170766447638,215,0 +170766447686,216,0 +170766447736,216,0 +170766447785,215,0 +170766447835,215,0 +170766447882,214,0 +170766447930,214,0 +170766447978,214,0 +170766448026,214,0 +170766448074,214,0 +170766448122,214,0 +170766448169,215,0 +170766448217,215,0 +170766448265,215,0 +170766448314,215,0 +170766448362,215,0 +170766448410,216,0 +170766448458,215,0 +170766448505,216,0 +170766448553,215,0 +170766448601,215,0 +170766448649,215,0 +170766448696,213,0 +170766448746,214,0 +170766448794,214,0 +170766448842,214,0 +170766448889,214,0 +170766448937,214,0 +170766448985,214,0 +170766449034,214,0 +170766449082,215,0 +170766449130,215,0 +170766449178,215,0 +170766449226,215,0 +170766449275,215,0 +170766449323,215,0 +170766449371,215,0 +170766449420,215,0 +170766449468,215,0 +170766449517,213,0 +170766449565,213,0 +170766449613,213,0 +170766449661,213,0 +170766449709,214,0 +170766449758,214,0 +170766449806,214,0 +170766449856,214,0 +170766449905,214,0 +170766449953,214,0 +170766450001,214,0 +170766450050,215,0 +170766450098,215,0 +170766450146,215,0 +170766450194,215,0 +170766450242,215,0 +170766450290,215,0 +170766450339,213,0 +170766450387,213,0 +170766450437,213,0 +170766450486,213,0 +170766450534,214,0 +170766450582,214,0 +170766450629,214,0 +170766450677,214,0 +170766450725,214,0 +170766450773,215,0 +170766450822,215,0 +170766450870,215,0 +170766450918,215,0 +170766450965,215,0 +170766451013,215,0 +170766451061,215,0 +170766451109,215,0 +170766451157,213,0 +170766451207,213,0 +170766451256,213,0 +170766451304,214,0 +170766451352,214,0 +170766451400,214,0 +170766451449,214,0 +170766451499,214,0 +170766451547,215,0 +170766451595,215,0 +170766451643,215,0 +170766451691,215,0 +170766451738,215,0 +170766451786,215,0 +170766451834,215,0 +170766451882,215,0 +170766451930,215,0 +170766451978,214,0 +170766452026,214,0 +170766452075,214,0 +170766452123,214,0 +170766452173,214,0 +170766452222,214,0 +170766452272,214,0 +170766452321,215,0 +170766452369,215,0 +170766452417,214,0 +170766452465,215,0 +170766452514,215,0 +170766452564,215,0 +170766452612,215,0 +170766452660,215,0 +170766452707,215,0 +170766452755,215,0 +170766452803,213,0 +170766452851,213,0 +170766452899,214,0 +170766452947,214,0 +170766452995,214,0 +170766453043,214,0 +170766453092,215,0 +170766453142,215,0 +170766453190,214,0 +170766453238,215,0 +170766453285,215,0 +170766453333,215,0 +170766453383,215,0 +170766453431,215,0 +170766453479,215,0 +170766453527,215,0 +170766453574,214,0 +170766453622,213,0 +170766453670,213,0 +170766453720,214,0 +170766453768,214,0 +170766453816,214,0 +170766453864,214,0 +170766453912,214,0 +170766453960,214,0 +170766454009,214,0 +170766454057,215,0 +170766454105,214,0 +170766454153,215,0 +170766454202,215,0 +170766454250,215,0 +170766454298,215,0 +170766454346,215,0 +170766454394,215,0 +170766454442,213,0 +170766454490,213,0 +170766454538,213,0 +170766454586,214,0 +170766454634,214,0 +170766454681,214,0 +170766454729,214,0 +170766454779,214,0 +170766454828,214,0 +170766454876,214,0 +170766454924,214,0 +170766454971,214,0 +170766455019,215,0 +170766455067,215,0 +170766455115,214,0 +170766455163,215,0 +170766455210,215,0 +170766455258,213,0 +170766455306,213,0 +170766455354,213,0 +170766455402,214,0 +170766455451,214,0 +170766455501,214,0 +170766455549,214,0 +170766455597,214,0 +170766455645,214,0 +170766455693,214,0 +170766455742,215,0 +170766455792,214,0 +170766455839,215,0 +170766455889,215,0 +170766455937,215,0 +170766455986,215,0 +170766456034,215,0 +170766456082,214,0 +170766456130,214,0 +170766456178,214,0 +170766456226,214,0 +170766456275,214,0 +170766456323,215,0 +170766456373,215,0 +170766456421,215,0 +170766456470,215,0 +170766456518,215,0 +170766456568,215,0 +170766456616,215,0 +170766456664,215,0 +170766456711,215,0 +170766456759,215,0 +170766456807,215,0 +170766456857,215,0 +170766456904,214,0 +170766456952,214,0 +170766457000,214,0 +170766457048,214,0 +170766457096,215,0 +170766457144,215,0 +170766457194,215,0 +170766457243,215,0 +170766457291,215,0 +170766457339,215,0 +170766457387,216,0 +170766457437,215,0 +170766457486,215,0 +170766457534,215,0 +170766457582,215,0 +170766457630,215,0 +170766457679,215,0 +170766457727,214,0 +170766457775,214,0 +170766457823,214,0 +170766457872,214,0 +170766457920,214,0 +170766457968,214,0 +170766458018,215,0 +170766458066,214,0 +170766458114,215,0 +170766458162,215,0 +170766458210,215,0 +170766458259,215,0 +170766458307,215,0 +170766458355,215,0 +170766458403,215,0 +170766458453,215,0 +170766458502,215,0 +170766458552,214,0 +170766458599,214,0 +170766458647,214,0 +170766458697,214,0 +170766458745,214,0 +170766458793,214,0 +170766458841,214,0 +170766458890,214,0 +170766458938,215,0 +170766458986,215,0 +170766459036,215,0 +170766459083,215,0 +170766459131,215,0 +170766459181,215,0 +170766459230,215,0 +170766459279,215,0 +170766459327,215,0 +170766459377,214,0 +170766459425,214,0 +170766459473,214,0 +170766459521,214,0 +170766459570,214,0 +170766459618,215,0 +170766459666,215,0 +170766459715,215,0 +170766459763,215,0 +170766459811,215,0 +170766459859,215,0 +170766459908,215,0 +170766459956,215,0 +170766460004,215,0 +170766460054,215,0 +170766460101,215,0 +170766460149,215,0 +170766460197,214,0 +170766460246,214,0 +170766460294,214,0 +170766460342,214,0 +170766460392,214,0 +170766460439,215,0 +170766460487,215,0 +170766460535,215,0 +170766460583,215,0 +170766460631,215,0 +170766460679,215,0 +170766460727,215,0 +170766460776,215,0 +170766460824,215,0 +170766460872,214,0 +170766460920,215,0 +170766460968,215,0 +170766461017,214,0 +170766461067,214,0 +170766461115,214,0 +170766461163,214,0 +170766461210,214,0 +170766461260,214,0 +170766461309,215,0 +170766461357,215,0 +170766461407,215,0 +170766461455,215,0 +170766461504,215,0 +170766461552,215,0 +170766461600,215,0 +170766461649,215,0 +170766461699,215,0 +170766461747,215,0 +170766461795,215,0 +170766461843,213,0 +170766461890,213,0 +170766461940,213,0 +170766461987,213,0 +170766462035,214,0 +170766462083,215,0 +170766462131,214,0 +170766462179,214,0 +170766462227,214,0 +170766462275,214,0 +170766462324,215,0 +170766462372,214,0 +170766462421,215,0 +170766462469,215,0 +170766462519,215,0 +170766462568,215,0 +170766462618,215,0 +170766462667,213,0 +170766462717,213,0 +170766462764,213,0 +170766462812,213,0 +170766462860,213,0 +170766462908,214,0 +170766462958,214,0 +170766463007,214,0 +170766463055,214,0 +170766463104,214,0 +170766463154,214,0 +170766463202,214,0 +170766463250,215,0 +170766463299,215,0 +170766463347,215,0 +170766463395,215,0 +170766463444,215,0 +170766463494,213,0 +170766463542,213,0 +170766463590,213,0 +170766463637,213,0 +170766463687,213,0 +170766463735,213,0 +170766463783,214,0 +170766463830,214,0 +170766463878,214,0 +170766463926,214,0 +170766463976,214,0 +170766464024,215,0 +170766464072,215,0 +170766464120,215,0 +170766464168,215,0 +170766464217,215,0 +170766464265,215,0 +170766464313,213,0 +170766464362,213,0 +170766464410,213,0 +170766464460,213,0 +170766464507,213,0 +170766464555,214,0 +170766464605,214,0 +170766464653,214,0 +170766464701,214,0 +170766464750,214,0 +170766464798,215,0 +170766464846,215,0 +170766464894,215,0 +170766464943,215,0 +170766464991,215,0 +170766465039,215,0 +170766465089,215,0 +170766465136,213,0 +170766465186,213,0 +170766465235,213,0 +170766465283,214,0 +170766465331,214,0 +170766465379,214,0 +170766465427,214,0 +170766465475,214,0 +170766465522,215,0 +170766465570,215,0 +170766465620,215,0 +170766465668,215,0 +170766465717,215,0 +170766465765,215,0 +170766465813,215,0 +170766465862,215,0 +170766465910,215,0 +170766465958,213,0 +170766466007,213,0 +170766466055,213,0 +170766466105,214,0 +170766466153,214,0 +170766466202,214,0 +170766466250,214,0 +170766466298,214,0 +170766466346,215,0 +170766466394,214,0 +170766466441,214,0 +170766466489,215,0 +170766466537,214,0 +170766466585,215,0 +170766466635,215,0 +170766466682,214,0 +170766466732,215,0 +170766466780,215,0 +170766466829,215,0 +170766466879,215,0 +170766466927,215,0 +170766466975,215,0 +170766467023,215,0 +170766467072,215,0 +170766467120,215,0 +170766467169,214,0 +170766467217,214,0 +170766467265,214,0 +170766467313,214,0 +170766467361,214,0 +170766467409,214,0 +170766467457,214,0 +170766467505,214,0 +170766467552,215,0 +170766467600,215,0 +170766467648,215,0 +170766467696,215,0 +170766467744,215,0 +170766467792,215,0 +170766467840,215,0 +170766467888,215,0 +170766467936,215,0 +170766467984,214,0 +170766468032,213,0 +170766468080,214,0 +170766468129,214,0 +170766468178,214,0 +170766468226,214,0 +170766468276,214,0 +170766468325,214,0 +170766468373,215,0 +170766468421,215,0 +170766468469,215,0 +170766468519,215,0 +170766468568,215,0 +170766468616,215,0 +170766468664,215,0 +170766468713,215,0 +170766468761,215,0 +170766468811,214,0 +170766468858,214,0 +170766468908,214,0 +170766468956,214,0 +170766469004,214,0 +170766469051,214,0 +170766469099,214,0 +170766469147,215,0 +170766469195,215,0 +170766469243,215,0 +170766469291,215,0 +170766469339,215,0 +170766469387,215,0 +170766469436,215,0 +170766469484,215,0 +170766469533,215,0 +170766469581,215,0 +170766469629,214,0 +170766469677,214,0 +170766469725,214,0 +170766469773,215,0 +170766469822,215,0 +170766469870,215,0 +170766469918,215,0 +170766469966,215,0 +170766470015,215,0 +170766470064,215,0 +170766470112,216,0 +170766470162,215,0 +170766470210,215,0 +170766470259,215,0 +170766470307,216,0 +170766470355,215,0 +170766470404,215,0 +170766470452,214,0 +170766470500,214,0 +170766470548,215,0 +170766470598,215,0 +170766470645,215,0 +170766470693,215,0 +170766470741,215,0 +170766470789,215,0 +170766470837,215,0 +170766470885,215,0 +170766470933,215,0 +170766470981,215,0 +170766471029,215,0 +170766471076,215,0 +170766471124,215,0 +170766471172,215,0 +170766471220,215,0 +170766471270,214,0 +170766471318,214,0 +170766471366,214,0 +170766471414,214,0 +170766471462,214,0 +170766471511,215,0 +170766471559,215,0 +170766471607,215,0 +170766471655,215,0 +170766471703,215,0 +170766471751,215,0 +170766471798,215,0 +170766471846,215,0 +170766471894,215,0 +170766471942,215,0 +170766471990,215,0 +170766472038,215,0 +170766472086,214,0 +170766472134,213,0 +170766472182,214,0 +170766472229,214,0 +170766472277,214,0 +170766472325,214,0 +170766472373,214,0 +170766472421,214,0 +170766472469,215,0 +170766472517,215,0 +170766472566,215,0 +170766472614,215,0 +170766472662,215,0 +170766472711,215,0 +170766472761,215,0 +170766472809,214,0 +170766472858,215,0 +170766472906,213,0 +170766472956,213,0 +170766473003,213,0 +170766473051,214,0 +170766473101,214,0 +170766473149,214,0 +170766473197,214,0 +170766473245,214,0 +170766473294,215,0 +170766473342,215,0 +170766473390,215,0 +170766473438,215,0 +170766473486,215,0 +170766473534,215,0 +170766473581,215,0 +170766473629,215,0 +170766473677,215,0 +170766473725,213,0 +170766473774,213,0 +170766473822,213,0 +170766473870,214,0 +170766473918,214,0 +170766473966,214,0 +170766474014,214,0 +170766474062,214,0 +170766474110,214,0 +170766474160,215,0 +170766474208,214,0 +170766474257,215,0 +170766474305,215,0 +170766474353,215,0 +170766474401,215,0 +170766474449,215,0 +170766474497,215,0 +170766474545,213,0 +170766474593,213,0 +170766474640,213,0 +170766474688,213,0 +170766474736,214,0 +170766474784,214,0 +170766474832,213,0 +170766474880,214,0 +170766474928,214,0 +170766474977,214,0 +170766475027,214,0 +170766475076,214,0 +170766475124,215,0 +170766475172,215,0 +170766475221,215,0 +170766475269,215,0 +170766475317,215,0 +170766475365,214,0 +170766475415,213,0 +170766475464,213,0 +170766475512,213,0 +170766475561,213,0 +170766475611,213,0 +170766475660,214,0 +170766475710,214,0 +170766475758,214,0 +170766475807,214,0 +170766475855,214,0 +170766475903,215,0 +170766475951,215,0 +170766475999,215,0 +170766476047,215,0 +170766476095,215,0 +170766476143,215,0 +170766476192,214,0 +170766476240,213,0 +170766476289,213,0 +170766476337,214,0 +170766476385,214,0 +170766476433,214,0 +170766476482,214,0 +170766476530,214,0 +170766476578,214,0 +170766476626,214,0 +170766476676,215,0 +170766476724,215,0 +170766476772,215,0 +170766476819,215,0 +170766476869,215,0 +170766476917,215,0 +170766476965,215,0 +170766477013,213,0 +170766477062,213,0 +170766477110,213,0 +170766477158,214,0 +170766477208,214,0 +170766477257,214,0 +170766477305,214,0 +170766477355,214,0 +170766477402,214,0 +170766477450,214,0 +170766477498,215,0 +170766477548,215,0 +170766477596,215,0 +170766477643,215,0 +170766477693,215,0 +170766477741,215,0 +170766477789,215,0 +170766477837,214,0 +170766477886,213,0 +170766477934,214,0 +170766477984,214,0 +170766478032,214,0 +170766478080,214,0 +170766478128,214,0 +170766478175,215,0 +170766478225,215,0 +170766478273,215,0 +170766478322,215,0 +170766478370,215,0 +170766478419,216,0 +170766478467,215,0 +170766478515,215,0 +170766478565,215,0 +170766478613,215,0 +170766478661,215,0 +170766478709,214,0 +170766478757,215,0 +170766478806,215,0 +170766478854,215,0 +170766478903,215,0 +170766478953,215,0 +170766479001,215,0 +170766479048,215,0 +170766479096,215,0 +170766479144,215,0 +170766479192,215,0 +170766479240,215,0 +170766479289,215,0 +170766479337,215,0 +170766479387,215,0 +170766479434,215,0 +170766479482,215,0 +170766479530,215,0 +170766479578,214,0 +170766479628,215,0 +170766479675,214,0 +170766479723,215,0 +170766479771,214,0 +170766479819,215,0 +170766479867,215,0 +170766479915,215,0 +170766479962,215,0 +170766480010,215,0 +170766480058,215,0 +170766480106,215,0 +170766480154,215,0 +170766480201,215,0 +170766480249,215,0 +170766480297,214,0 +170766480345,213,0 +170766480393,213,0 +170766480440,213,0 +170766480490,214,0 +170766480538,214,0 +170766480587,214,0 +170766480635,214,0 +170766480683,214,0 +170766480732,214,0 +170766480780,215,0 +170766480828,215,0 +170766480876,215,0 +170766480924,215,0 +170766480972,215,0 +170766481021,215,0 +170766481071,215,0 +170766481119,215,0 +170766481167,214,0 +170766481214,213,0 +170766481262,213,0 +170766481310,213,0 +170766481358,214,0 +170766481406,214,0 +170766481455,214,0 +170766481505,214,0 +170766481554,214,0 +170766481602,214,0 +170766481651,214,0 +170766481701,214,0 +170766481750,215,0 +170766481798,214,0 +170766481846,215,0 +170766481894,215,0 +170766481942,215,0 +170766481990,215,0 +170766482039,213,0 +170766482089,213,0 +170766482137,213,0 +170766482186,213,0 +170766482234,214,0 +170766482282,214,0 +170766482330,214,0 +170766482378,214,0 +170766482427,214,0 +170766482475,214,0 +170766482523,215,0 +170766482573,215,0 +170766482621,215,0 +170766482669,215,0 +170766482717,215,0 +170766482766,215,0 +170766482816,215,0 +170766482865,214,0 +170766482913,214,0 +170766482963,214,0 +170766483010,214,0 +170766483058,214,0 +170766483108,214,0 +170766483157,214,0 +170766483205,214,0 +170766483253,215,0 +170766483301,215,0 +170766483349,215,0 +170766483397,215,0 +170766483447,215,0 +170766483494,215,0 +170766483544,215,0 +170766483593,215,0 +170766483643,215,0 +170766483691,215,0 +170766483739,214,0 +170766483788,213,0 +170766483836,214,0 +170766483884,214,0 +170766483932,214,0 +170766483980,214,0 +170766484027,214,0 +170766484075,214,0 +170766484125,215,0 +170766484173,215,0 +170766484222,215,0 +170766484270,215,0 +170766484318,215,0 +170766484366,215,0 +170766484414,215,0 +170766484462,215,0 +170766484512,215,0 +170766484559,215,0 +170766484607,213,0 +170766484657,213,0 +170766484705,213,0 +170766484753,213,0 +170766484802,214,0 +170766484850,214,0 +170766484898,214,0 +170766484946,214,0 +170766484994,214,0 +170766485042,214,0 +170766485091,214,0 +170766485141,215,0 +170766485189,215,0 +170766485237,215,0 +170766485286,215,0 +170766485334,215,0 +170766485382,215,0 +170766485430,214,0 +170766485478,213,0 +170766485527,213,0 +170766485575,213,0 +170766485623,213,0 +170766485672,214,0 +170766485720,214,0 +170766485770,214,0 +170766485818,214,0 +170766485865,214,0 +170766485915,214,0 +170766485963,214,0 +170766486011,214,0 +170766486059,215,0 +170766486108,215,0 +170766486156,215,0 +170766486204,215,0 +170766486252,215,0 +170766486301,213,0 +170766486349,213,0 +170766486397,213,0 +170766486445,213,0 +170766486495,213,0 +170766486544,214,0 +170766486593,214,0 +170766486641,214,0 +170766486689,214,0 +170766486737,214,0 +170766486787,214,0 +170766486835,215,0 +170766486883,215,0 +170766486931,215,0 +170766486980,215,0 +170766487028,215,0 +170766487076,215,0 +170766487124,215,0 +170766487172,213,0 +170766487220,213,0 +170766487269,213,0 +170766487317,214,0 +170766487365,214,0 +170766487415,214,0 +170766487464,214,0 +170766487512,214,0 +170766487560,214,0 +170766487607,214,0 +170766487655,214,0 +170766487703,215,0 +170766487751,215,0 +170766487799,215,0 +170766487847,215,0 +170766487895,215,0 +170766487943,215,0 +170766487992,215,0 +170766488040,213,0 +170766488088,213,0 +170766488136,213,0 +170766488183,214,0 +170766488231,214,0 +170766488281,214,0 +170766488330,214,0 +170766488378,214,0 +170766488426,214,0 +170766488475,214,0 +170766488523,215,0 +170766488571,215,0 +170766488619,215,0 +170766488669,215,0 +170766488718,215,0 +170766488766,215,0 +170766488815,215,0 +170766488863,213,0 +170766488911,213,0 +170766488959,213,0 +170766489007,213,0 +170766489055,213,0 +170766489103,214,0 +170766489151,214,0 +170766489199,214,0 +170766489246,214,0 +170766489294,214,0 +170766489344,214,0 +170766489392,214,0 +170766489439,215,0 +170766489487,215,0 +170766489535,215,0 +170766489583,215,0 +170766489632,215,0 +170766489682,215,0 +170766489730,213,0 +170766489778,213,0 +170766489826,213,0 +170766489874,214,0 +170766489922,214,0 +170766489970,214,0 +170766490018,214,0 +170766490065,214,0 +170766490113,214,0 +170766490163,215,0 +170766490212,214,0 +170766490262,214,0 +170766490310,215,0 +170766490359,215,0 +170766490407,215,0 +170766490456,215,0 +170766490504,215,0 +170766490554,215,0 +170766490603,213,0 +170766490653,213,0 +170766490701,213,0 +170766490750,213,0 +170766490798,213,0 +170766490847,214,0 +170766490895,214,0 +170766490943,214,0 +170766490993,214,0 +170766491041,214,0 +170766491088,214,0 +170766491136,214,0 +170766491184,215,0 +170766491232,215,0 +170766491280,215,0 +170766491328,215,0 +170766491377,215,0 +170766491425,214,0 +170766491473,213,0 +170766491521,213,0 +170766491569,213,0 +170766491617,213,0 +170766491665,214,0 +170766491713,214,0 +170766491760,214,0 +170766491808,214,0 +170766491858,214,0 +170766491907,214,0 +170766491955,214,0 +170766492003,214,0 +170766492051,215,0 +170766492100,215,0 +170766492150,215,0 +170766492199,215,0 +170766492247,215,0 +170766492295,213,0 +170766492345,213,0 +170766492392,213,0 +170766492440,214,0 +170766492488,214,0 +170766492538,214,0 +170766492586,214,0 +170766492633,214,0 +170766492681,214,0 +170766492731,214,0 +170766492779,214,0 +170766492827,215,0 +170766492876,215,0 +170766492926,215,0 +170766492973,215,0 +170766493021,215,0 +170766493071,215,0 +170766493119,215,0 +170766493166,214,0 +170766493214,214,0 +170766493262,214,0 +170766493310,214,0 +170766493358,214,0 +170766493406,214,0 +170766493455,214,0 +170766493505,215,0 +170766493553,214,0 +170766493601,215,0 +170766493648,215,0 +170766493696,215,0 +170766493746,215,0 +170766493794,215,0 +170766493841,215,0 +170766493889,215,0 +170766493937,215,0 +170766493985,215,0 +170766494033,213,0 +170766494081,214,0 +170766494129,214,0 +170766494176,214,0 +170766494224,214,0 +170766494272,214,0 +170766494321,214,0 +170766494369,214,0 +170766494417,214,0 +170766494465,214,0 +170766494514,215,0 +170766494562,214,0 +170766494610,215,0 +170766494658,215,0 +170766494708,215,0 +170766494756,214,0 +170766494804,215,0 +170766494852,214,0 +170766494901,213,0 +170766494949,213,0 +170766494997,213,0 +170766495047,213,0 +170766495094,214,0 +170766495142,214,0 +170766495190,214,0 +170766495238,214,0 +170766495286,214,0 +170766495335,214,0 +170766495383,214,0 +170766495432,214,0 +170766495482,215,0 +170766495530,215,0 +170766495579,215,0 +170766495629,215,0 +170766495677,214,0 +170766495724,214,0 +170766495772,213,0 +170766495820,214,0 +170766495868,214,0 +170766495916,214,0 +170766495964,214,0 +170766496012,214,0 +170766496061,214,0 +170766496111,214,0 +170766496159,214,0 +170766496208,214,0 +170766496256,215,0 +170766496304,215,0 +170766496352,215,0 +170766496400,215,0 +170766496450,215,0 +170766496498,215,0 +170766496545,215,0 +170766496593,213,0 +170766496641,214,0 +170766496689,214,0 +170766496739,214,0 +170766496786,214,0 +170766496834,214,0 +170766496882,214,0 +170766496932,214,0 +170766496980,215,0 +170766497028,215,0 +170766497076,215,0 +170766497123,215,0 +170766497171,215,0 +170766497219,215,0 +170766497269,215,0 +170766497317,215,0 +170766497365,215,0 +170766497413,214,0 +170766497462,214,0 +170766497510,214,0 +170766497560,214,0 +170766497607,214,0 +170766497657,214,0 +170766497706,215,0 +170766497754,214,0 +170766497804,215,0 +170766497853,215,0 +170766497901,215,0 +170766497949,215,0 +170766497997,215,0 +170766498045,215,0 +170766498093,215,0 +170766498141,215,0 +170766498189,215,0 +170766498237,215,0 +170766498285,213,0 +170766498333,213,0 +170766498381,213,0 +170766498428,214,0 +170766498476,214,0 +170766498526,214,0 +170766498575,214,0 +170766498625,214,0 +170766498673,215,0 +170766498722,215,0 +170766498772,215,0 +170766498820,215,0 +170766498869,215,0 +170766498919,215,0 +170766498967,215,0 +170766499014,215,0 +170766499064,215,0 +170766499113,215,0 +170766499161,213,0 +170766499211,213,0 +170766499259,213,0 +170766499307,213,0 +170766499356,214,0 +170766499404,214,0 +170766499452,214,0 +170766499500,214,0 +170766499548,214,0 +170766499596,214,0 +170766499644,214,0 +170766499692,214,0 +170766499740,215,0 +170766499788,215,0 +170766499837,215,0 +170766499887,215,0 +170766499936,215,0 +170766499986,215,0 +170766500034,213,0 +170766500083,213,0 +170766500131,213,0 +170766500179,213,0 +170766500227,214,0 +170766500275,214,0 +170766500324,214,0 +170766500374,214,0 +170766500423,214,0 +170766500471,214,0 +170766500519,214,0 +170766500567,215,0 +170766500615,214,0 +170766500663,214,0 +170766500711,215,0 +170766500759,215,0 +170766500807,215,0 +170766500855,215,0 +170766500903,213,0 +170766500950,213,0 +170766501000,213,0 +170766501048,213,0 +170766501097,213,0 +170766501147,214,0 +170766501196,214,0 +170766501244,214,0 +170766501292,214,0 +170766501342,214,0 +170766501390,214,0 +170766501437,215,0 +170766501485,215,0 +170766501533,215,0 +170766501581,215,0 +170766501631,214,0 +170766501679,215,0 +170766501727,214,0 +170766501775,213,0 +170766501822,213,0 +170766501870,213,0 +170766501918,214,0 +170766501966,213,0 +170766502014,214,0 +170766502064,214,0 +170766502112,214,0 +170766502161,214,0 +170766502209,214,0 +170766502257,215,0 +170766502305,215,0 +170766502353,215,0 +170766502401,215,0 +170766502448,215,0 +170766502496,215,0 +170766502546,215,0 +170766502595,214,0 +170766502643,213,0 +170766502693,213,0 +170766502742,213,0 +170766502792,214,0 +170766502840,214,0 +170766502888,214,0 +170766502935,214,0 +170766502985,214,0 +170766503034,214,0 +170766503082,215,0 +170766503130,215,0 +170766503178,215,0 +170766503226,215,0 +170766503273,215,0 +170766503321,215,0 +170766503369,215,0 +170766503417,215,0 +170766503465,213,0 +170766503513,213,0 +170766503561,213,0 +170766503609,213,0 +170766503658,213,0 +170766503706,214,0 +170766503755,214,0 +170766503803,214,0 +170766503851,214,0 +170766503899,214,0 +170766503946,214,0 +170766503994,215,0 +170766504042,215,0 +170766504090,215,0 +170766504138,215,0 +170766504186,215,0 +170766504234,215,0 +170766504281,214,0 +170766504329,213,0 +170766504377,213,0 +170766504425,213,0 +170766504475,213,0 +170766504523,213,0 +170766504572,213,0 +170766504620,213,0 +170766504668,213,0 +170766504716,213,0 +170766504764,214,0 +170766504812,214,0 +170766504860,214,0 +170766504909,214,0 +170766504959,214,0 +170766505006,215,0 +170766505054,215,0 +170766505102,215,0 +170766505150,215,0 +170766505200,213,0 +170766505249,213,0 +170766505297,213,0 +170766505345,213,0 +170766505393,213,0 +170766505442,213,0 +170766505490,213,0 +170766505540,214,0 +170766505589,214,0 +170766505637,214,0 +170766505685,214,0 +170766505733,214,0 +170766505781,214,0 +170766505829,215,0 +170766505878,215,0 +170766505926,215,0 +170766505974,215,0 +170766506022,215,0 +170766506070,213,0 +170766506117,213,0 +170766506165,213,0 +170766506213,213,0 +170766506261,213,0 +170766506309,213,0 +170766506357,213,0 +170766506405,214,0 +170766506452,214,0 +170766506500,214,0 +170766506548,214,0 +170766506596,214,0 +170766506644,214,0 +170766506691,215,0 +170766506739,214,0 +170766506787,215,0 +170766506835,215,0 +170766506883,215,0 +170766506930,213,0 +170766506978,213,0 +170766507026,213,0 +170766507074,213,0 +170766507122,213,0 +170766507170,213,0 +170766507217,213,0 +170766507265,213,0 +170766507315,214,0 +170766507364,214,0 +170766507412,214,0 +170766507460,214,0 +170766507508,214,0 +170766507556,215,0 +170766507604,215,0 +170766507652,215,0 +170766507700,215,0 +170766507747,214,0 +170766507795,213,0 +170766507843,213,0 +170766507891,213,0 +170766507939,214,0 +170766507987,214,0 +170766508035,214,0 +170766508084,214,0 +170766508132,214,0 +170766508180,214,0 +170766508228,215,0 +170766508276,215,0 +170766508324,214,0 +170766508372,215,0 +170766508420,215,0 +170766508468,215,0 +170766508517,215,0 +170766508567,215,0 +170766508615,215,0 +170766508663,213,0 +170766508711,213,0 +170766508760,213,0 +170766508810,214,0 +170766508858,214,0 +170766508905,214,0 +170766508953,214,0 +170766509001,214,0 +170766509049,214,0 +170766509097,215,0 +170766509147,215,0 +170766509195,215,0 +170766509244,215,0 +170766509293,215,0 +170766509341,215,0 +170766509389,215,0 +170766509437,214,0 +170766509485,213,0 +170766509532,213,0 +170766509580,213,0 +170766509628,213,0 +170766509676,213,0 +170766509724,214,0 +170766509772,214,0 +170766509820,214,0 +170766509868,214,0 +170766509916,214,0 +170766509965,214,0 +170766510013,214,0 +170766510061,215,0 +170766510111,215,0 +170766510158,215,0 +170766510208,215,0 +170766510256,215,0 +170766510305,215,0 +170766510353,213,0 +170766510401,213,0 +170766510451,213,0 +170766510499,213,0 +170766510547,213,0 +170766510594,213,0 +170766510644,213,0 +170766510692,213,0 +170766510741,214,0 +170766510789,214,0 +170766510837,214,0 +170766510885,214,0 +170766510933,214,0 +170766510981,214,0 +170766511028,215,0 +170766511076,215,0 +170766511124,215,0 +170766511172,215,0 +170766511220,213,0 +170766511270,213,0 +170766511318,213,0 +170766511366,213,0 +170766511413,213,0 +170766511461,213,0 +170766511510,213,0 +170766511558,214,0 +170766511606,214,0 +170766511654,214,0 +170766511703,214,0 +170766511751,214,0 +170766511801,214,0 +170766511848,214,0 +170766511898,214,0 +170766511946,214,0 +170766511994,215,0 +170766512042,214,0 +170766512090,213,0 +170766512139,213,0 +170766512187,213,0 +170766512235,213,0 +170766512283,214,0 +170766512331,214,0 +170766512379,214,0 +170766512427,214,0 +170766512475,214,0 +170766512523,214,0 +170766512572,215,0 +170766512622,215,0 +170766512670,215,0 +170766512719,215,0 +170766512767,215,0 +170766512815,215,0 +170766512863,215,0 +170766512913,215,0 +170766512960,214,0 +170766513008,214,0 +170766513056,213,0 +170766513106,214,0 +170766513155,214,0 +170766513203,214,0 +170766513251,214,0 +170766513299,214,0 +170766513348,214,0 +170766513398,215,0 +170766513446,215,0 +170766513495,215,0 +170766513545,215,0 +170766513593,215,0 +170766513641,215,0 +170766513690,215,0 +170766513738,215,0 +170766513786,215,0 +170766513834,214,0 +170766513882,214,0 +170766513930,214,0 +170766513979,214,0 +170766514027,214,0 +170766514075,214,0 +170766514123,214,0 +170766514172,214,0 +170766514220,214,0 +170766514270,214,0 +170766514317,215,0 +170766514367,215,0 +170766514415,215,0 +170766514463,215,0 +170766514512,215,0 +170766514562,215,0 +170766514611,215,0 +170766514659,214,0 +170766514707,214,0 +170766514755,213,0 +170766514804,214,0 +170766514854,214,0 +170766514902,214,0 +170766514950,214,0 +170766514998,213,0 +170766515047,214,0 +170766515097,215,0 +170766515145,215,0 +170766515192,215,0 +170766515240,215,0 +170766515288,215,0 +170766515336,215,0 +170766515384,215,0 +170766515433,215,0 +170766515481,214,0 +170766515529,214,0 +170766515577,213,0 +170766515625,214,0 +170766515674,214,0 +170766515724,214,0 +170766515772,214,0 +170766515821,214,0 +170766515871,214,0 +170766515919,214,0 +170766515967,215,0 +170766516015,215,0 +170766516062,215,0 +170766516112,215,0 +170766516161,215,0 +170766516209,215,0 +170766516257,215,0 +170766516305,215,0 +170766516355,215,0 +170766516402,214,0 +170766516450,213,0 +170766516498,214,0 +170766516548,214,0 +170766516597,214,0 +170766516645,214,0 +170766516693,214,0 +170766516741,214,0 +170766516790,214,0 +170766516838,215,0 +170766516886,215,0 +170766516935,215,0 +170766516983,215,0 +170766517033,215,0 +170766517081,215,0 +170766517129,215,0 +170766517177,215,0 +170766517225,215,0 +170766517274,213,0 +170766517322,213,0 +170766517370,213,0 +170766517418,213,0 +170766517466,214,0 +170766517514,214,0 +170766517563,214,0 +170766517611,214,0 +170766517659,214,0 +170766517707,214,0 +170766517755,214,0 +170766517805,215,0 +170766517852,215,0 +170766517902,215,0 +170766517950,215,0 +170766517998,215,0 +170766518046,215,0 +170766518094,215,0 +170766518143,213,0 +170766518193,213,0 +170766518242,213,0 +170766518290,213,0 +170766518338,213,0 +170766518387,214,0 +170766518435,214,0 +170766518483,214,0 +170766518531,214,0 +170766518579,214,0 +170766518627,214,0 +170766518676,214,0 +170766518724,214,0 +170766518773,215,0 +170766518821,215,0 +170766518869,215,0 +170766518917,215,0 +170766518965,215,0 +170766519013,213,0 +170766519062,213,0 +170766519110,213,0 +170766519160,213,0 +170766519208,213,0 +170766519257,213,0 +170766519307,213,0 +170766519354,213,0 +170766519402,214,0 +170766519450,214,0 +170766519498,214,0 +170766519546,215,0 +170766519593,214,0 +170766519641,214,0 +170766519689,215,0 +170766519737,215,0 +170766519786,215,0 +170766519834,215,0 +170766519882,213,0 +170766519930,213,0 +170766519980,213,0 +170766520028,213,0 +170766520075,213,0 +170766520125,213,0 +170766520173,213,0 +170766520221,213,0 +170766520270,214,0 +170766520318,214,0 +170766520366,214,0 +170766520414,214,0 +170766520463,214,0 +170766520511,214,0 +170766520559,215,0 +170766520607,215,0 +170766520655,215,0 +170766520703,215,0 +170766520751,213,0 +170766520799,213,0 +170766520847,213,0 +170766520895,213,0 +170766520942,213,0 +170766520992,213,0 +170766521041,213,0 +170766521089,213,0 +170766521137,213,0 +170766521187,214,0 +170766521235,214,0 +170766521284,214,0 +170766521332,214,0 +170766521382,214,0 +170766521429,214,0 +170766521479,215,0 +170766521528,215,0 +170766521578,215,0 +170766521627,213,0 +170766521675,213,0 +170766521725,213,0 +170766521774,213,0 +170766521822,213,0 +170766521870,213,0 +170766521918,213,0 +170766521966,214,0 +170766522014,214,0 +170766522062,214,0 +170766522110,214,0 +170766522159,214,0 +170766522207,214,0 +170766522257,215,0 +170766522304,215,0 +170766522354,215,0 +170766522402,215,0 +170766522450,215,0 +170766522498,213,0 +170766522547,213,0 +170766522595,213,0 +170766522643,213,0 +170766522692,213,0 +170766522740,213,0 +170766522790,213,0 +170766522838,213,0 +170766522886,214,0 +170766522934,214,0 +170766522982,214,0 +170766523029,214,0 +170766523079,214,0 +170766523128,214,0 +170766523176,215,0 +170766523224,215,0 +170766523274,215,0 +170766523321,215,0 +170766523369,213,0 +170766523417,213,0 +170766523465,213,0 +170766523513,213,0 +170766523561,214,0 +170766523609,214,0 +170766523657,214,0 +170766523706,214,0 +170766523756,214,0 +170766523804,214,0 +170766523853,214,0 +170766523903,215,0 +170766523950,215,0 +170766523998,215,0 +170766524048,215,0 +170766524096,215,0 +170766524143,215,0 +170766524191,215,0 +170766524241,213,0 +170766524289,213,0 +170766524337,213,0 +170766524385,213,0 +170766524434,214,0 +170766524482,214,0 +170766524530,214,0 +170766524578,214,0 +170766524626,214,0 +170766524674,214,0 +170766524722,214,0 +170766524770,215,0 +170766524819,215,0 +170766524867,215,0 +170766524915,215,0 +170766524964,215,0 +170766525012,215,0 +170766525062,215,0 +170766525110,213,0 +170766525158,213,0 +170766525206,213,0 +170766525255,213,0 +170766525305,214,0 +170766525353,213,0 +170766525400,214,0 +170766525448,214,0 +170766525496,214,0 +170766525544,214,0 +170766525594,214,0 +170766525642,215,0 +170766525690,215,0 +170766525738,215,0 +170766525785,215,0 +170766525833,215,0 +170766525881,215,0 +170766525931,215,0 +170766525978,213,0 +170766526026,213,0 +170766526074,213,0 +170766526122,213,0 +170766526171,214,0 +170766526221,214,0 +170766526270,214,0 +170766526318,214,0 +170766526368,214,0 +170766526415,214,0 +170766526465,214,0 +170766526513,214,0 +170766526561,214,0 +170766526608,215,0 +170766526656,215,0 +170766526704,214,0 +170766526752,215,0 +170766526801,215,0 +170766526849,213,0 +170766526897,213,0 +170766526947,213,0 +170766526996,213,0 +170766527044,213,0 +170766527092,213,0 +170766527140,213,0 +170766527188,214,0 +170766527235,214,0 +170766527283,214,0 +170766527331,214,0 +170766527379,215,0 +170766527427,214,0 +170766527475,215,0 +170766527524,215,0 +170766527574,214,0 +170766527622,215,0 +170766527671,215,0 +170766527719,214,0 +170766527769,213,0 +170766527816,213,0 +170766527866,214,0 +170766527914,214,0 +170766527962,214,0 +170766528010,214,0 +170766528058,214,0 +170766528106,214,0 +170766528155,214,0 +170766528203,214,0 +170766528251,215,0 +170766528299,215,0 +170766528347,215,0 +170766528395,215,0 +170766528443,215,0 +170766528491,215,0 +170766528539,214,0 +170766528588,214,0 +170766528637,214,0 +170766528685,214,0 +170766528733,214,0 +170766528781,214,0 +170766528829,214,0 +170766528877,214,0 +170766528926,215,0 +170766528974,215,0 +170766529022,215,0 +170766529070,215,0 +170766529118,215,0 +170766529166,215,0 +170766529213,215,0 +170766529261,215,0 +170766529309,215,0 +170766529357,215,0 +170766529405,215,0 +170766529453,215,0 +170766529502,213,0 +170766529550,213,0 +170766529598,214,0 +170766529646,214,0 +170766529696,214,0 +170766529744,214,0 +170766529793,214,0 +170766529841,215,0 +170766529889,215,0 +170766529937,215,0 +170766529985,215,0 +170766530033,215,0 +170766530081,215,0 +170766530128,215,0 +170766530178,215,0 +170766530227,215,0 +170766530275,215,0 +170766530323,215,0 +170766530373,213,0 +170766530421,213,0 +170766530468,213,0 +170766530516,214,0 +170766530564,213,0 +170766530612,214,0 +170766530660,214,0 +170766530710,214,0 +170766530758,214,0 +170766530806,214,0 +170766530854,214,0 +170766530901,214,0 +170766530949,215,0 +170766530999,215,0 +170766531047,215,0 +170766531096,215,0 +170766531146,215,0 +170766531194,214,0 +170766531243,213,0 +170766531293,213,0 +170766531341,213,0 +170766531388,213,0 +170766531438,213,0 +170766531487,213,0 +170766531535,214,0 +170766531583,214,0 +170766531631,214,0 +170766531678,214,0 +170766531726,214,0 +170766531774,215,0 +170766531822,215,0 +170766531870,215,0 +170766531919,215,0 +170766531967,214,0 +170766532015,215,0 +170766532063,215,0 +170766532111,213,0 +170766532159,213,0 +170766532206,213,0 +170766532254,213,0 +170766532302,213,0 +170766532350,213,0 +170766532398,214,0 +170766532446,214,0 +170766532494,214,0 +170766532543,214,0 +170766532591,214,0 +170766532639,214,0 +170766532687,214,0 +170766532736,215,0 +170766532784,215,0 +170766532833,215,0 +170766532881,215,0 +170766532931,215,0 +170766532979,213,0 +170766533028,213,0 +170766533078,213,0 +170766533126,213,0 +170766533174,213,0 +170766533221,214,0 +170766533269,214,0 +170766533317,214,0 +170766533365,214,0 +170766533413,214,0 +170766533462,214,0 +170766533512,215,0 +170766533560,215,0 +170766533609,215,0 +170766533657,215,0 +170766533705,215,0 +170766533753,215,0 +170766533802,215,0 +170766533852,213,0 +170766533900,213,0 +170766533948,213,0 +170766533995,213,0 +170766534043,213,0 +170766534093,214,0 +170766534141,214,0 +170766534189,214,0 +170766534238,214,0 +170766534286,214,0 +170766534334,214,0 +170766534382,215,0 +170766534430,215,0 +170766534478,215,0 +170766534527,215,0 +170766534577,215,0 +170766534626,214,0 +170766534674,215,0 +170766534722,213,0 +170766534772,213,0 +170766534820,213,0 +170766534869,213,0 +170766534917,213,0 +170766534965,213,0 +170766535013,213,0 +170766535061,214,0 +170766535111,214,0 +170766535159,214,0 +170766535208,214,0 +170766535256,214,0 +170766535304,214,0 +170766535352,215,0 +170766535400,215,0 +170766535448,214,0 +170766535497,215,0 +170766535545,215,0 +170766535593,214,0 +170766535641,213,0 +170766535689,213,0 +170766535737,213,0 +170766535787,213,0 +170766535835,213,0 +170766535884,214,0 +170766535932,214,0 +170766535980,214,0 +170766536028,214,0 +170766536076,214,0 +170766536126,214,0 +170766536173,214,0 +170766536223,215,0 +170766536271,215,0 +170766536319,215,0 +170766536367,215,0 +170766536416,215,0 +170766536466,215,0 +170766536514,213,0 +170766536562,213,0 +170766536610,213,0 +170766536658,213,0 +170766536707,213,0 +170766536756,213,0 +170766536806,213,0 +170766536854,214,0 +170766536902,214,0 +170766536950,214,0 +170766536999,214,0 +170766537047,214,0 +170766537095,214,0 +170766537145,215,0 +170766537194,215,0 +170766537244,215,0 +170766537291,215,0 +170766537339,215,0 +170766537387,213,0 +170766537437,213,0 +170766537485,213,0 +170766537534,213,0 +170766537582,213,0 +170766537632,213,0 +170766537681,214,0 +170766537729,214,0 +170766537777,214,0 +170766537827,214,0 +170766537875,214,0 +170766537922,215,0 +170766537970,215,0 +170766538020,215,0 +170766538068,215,0 +170766538117,215,0 +170766538165,215,0 +170766538215,215,0 +170766538263,213,0 +170766538312,213,0 +170766538360,213,0 +170766538409,213,0 +170766538457,213,0 +170766538507,214,0 +170766538556,213,0 +170766538604,214,0 +170766538652,214,0 +170766538700,214,0 +170766538748,215,0 +170766538797,215,0 +170766538845,215,0 +170766538895,215,0 +170766538944,215,0 +170766538992,215,0 +170766539040,215,0 +170766539088,215,0 +170766539138,213,0 +170766539185,213,0 +170766539233,213,0 +170766539281,213,0 +170766539331,213,0 +170766539379,214,0 +170766539426,214,0 +170766539476,214,0 +170766539525,214,0 +170766539573,214,0 +170766539623,215,0 +170766539671,215,0 +170766539719,215,0 +170766539767,215,0 +170766539815,215,0 +170766539863,215,0 +170766539912,215,0 +170766539960,215,0 +170766540008,214,0 +170766540056,213,0 +170766540104,213,0 +170766540151,213,0 +170766540199,213,0 +170766540247,214,0 +170766540295,214,0 +170766540343,214,0 +170766540391,214,0 +170766540439,214,0 +170766540486,214,0 +170766540534,215,0 +170766540582,214,0 +170766540630,215,0 +170766540678,215,0 +170766540725,215,0 +170766540773,215,0 +170766540821,215,0 +170766540869,214,0 +170766540917,213,0 +170766540965,213,0 +170766541013,213,0 +170766541060,214,0 +170766541110,214,0 +170766541158,213,0 +170766541206,214,0 +170766541253,214,0 +170766541301,214,0 +170766541349,214,0 +170766541397,214,0 +170766541445,214,0 +170766541493,215,0 +170766541541,215,0 +170766541588,215,0 +170766541636,215,0 +170766541684,215,0 +170766541732,215,0 +170766541780,215,0 +170766541828,213,0 +170766541876,213,0 +170766541923,213,0 +170766541971,213,0 +170766542019,213,0 +170766542067,214,0 +170766542115,214,0 +170766542163,213,0 +170766542211,214,0 +170766542258,214,0 +170766542306,214,0 +170766542354,214,0 +170766542402,214,0 +170766542450,214,0 +170766542498,215,0 +170766542546,215,0 +170766542594,215,0 +170766542641,215,0 +170766542691,214,0 +170766542740,213,0 +170766542788,213,0 +170766542836,213,0 +170766542884,213,0 +170766542932,213,0 +170766542980,213,0 +170766543029,214,0 +170766543077,214,0 +170766543125,214,0 +170766543175,214,0 +170766543224,214,0 +170766543272,214,0 +170766543322,214,0 +170766543370,214,0 +170766543419,215,0 +170766543469,215,0 +170766543518,215,0 +170766543566,215,0 +170766543614,214,0 +170766543663,213,0 +170766543711,213,0 +170766543759,213,0 +170766543809,214,0 +170766543857,214,0 +170766543904,214,0 +170766543952,214,0 +170766544002,214,0 +170766544051,214,0 +170766544101,215,0 +170766544150,215,0 +170766544200,215,0 +170766544248,215,0 +170766544296,215,0 +170766544344,215,0 +170766544392,215,0 +170766544441,215,0 +170766544489,215,0 +170766544539,214,0 +170766544586,214,0 +170766544634,214,0 +170766544682,214,0 +170766544730,214,0 +170766544778,214,0 +170766544826,215,0 +170766544874,214,0 +170766544922,215,0 +170766544969,215,0 +170766545017,215,0 +170766545065,215,0 +170766545113,215,0 +170766545162,215,0 +170766545210,215,0 +170766545258,215,0 +170766545306,215,0 +170766545354,215,0 +170766545402,215,0 +170766545450,214,0 +170766545498,214,0 +170766545547,214,0 +170766545595,214,0 +170766545643,214,0 +170766545691,214,0 +170766545741,214,0 +170766545789,214,0 +170766545836,214,0 +170766545886,215,0 +170766545934,215,0 +170766545982,215,0 +170766546030,215,0 +170766546079,215,0 +170766546127,215,0 +170766546177,215,0 +170766546225,215,0 +170766546273,215,0 +170766546322,215,0 +170766546370,214,0 +170766546419,213,0 +170766546469,213,0 +170766546517,213,0 +170766546565,213,0 +170766546613,214,0 +170766546661,214,0 +170766546709,214,0 +170766546758,214,0 +170766546808,214,0 +170766546857,214,0 +170766546905,214,0 +170766546953,214,0 +170766547001,215,0 +170766547049,215,0 +170766547097,215,0 +170766547144,215,0 +170766547192,215,0 +170766547240,215,0 +170766547290,215,0 +170766547339,213,0 +170766547387,213,0 +170766547435,213,0 +170766547485,213,0 +170766547532,213,0 +170766547580,214,0 +170766547628,214,0 +170766547676,214,0 +170766547724,214,0 +170766547772,214,0 +170766547820,214,0 +170766547868,214,0 +170766547916,215,0 +170766547964,215,0 +170766548012,215,0 +170766548061,215,0 +170766548109,215,0 +170766548159,215,0 +170766548207,215,0 +170766548256,213,0 +170766548304,213,0 +170766548352,213,0 +170766548401,213,0 +170766548451,213,0 +170766548499,213,0 +170766548547,213,0 +170766548596,213,0 +170766548644,213,0 +170766548694,213,0 +170766548743,214,0 +170766548791,214,0 +170766548839,214,0 +170766548887,214,0 +170766548935,214,0 +170766548982,214,0 +170766549030,215,0 +170766549080,215,0 +170766549128,215,0 +170766549177,213,0 +170766549227,213,0 +170766549275,213,0 +170766549322,213,0 +170766549370,213,0 +170766549418,213,0 +170766549468,213,0 +170766549516,213,0 +170766549565,213,0 +170766549615,213,0 +170766549663,214,0 +170766549711,214,0 +170766549759,214,0 +170766549808,214,0 +170766549856,214,0 +170766549904,214,0 +170766549952,214,0 +170766550000,215,0 +170766550048,215,0 +170766550096,214,0 +170766550145,213,0 +170766550193,213,0 +170766550241,213,0 +170766550289,213,0 +170766550337,213,0 +170766550385,213,0 +170766550433,213,0 +170766550482,213,0 +170766550530,214,0 +170766550578,214,0 +170766550628,214,0 +170766550677,214,0 +170766550727,214,0 +170766550776,214,0 +170766550826,214,0 +170766550874,215,0 +170766550922,215,0 +170766550970,215,0 +170766551019,215,0 +170766551067,213,0 +170766551115,213,0 +170766551164,213,0 +170766551212,213,0 +170766551260,213,0 +170766551310,213,0 +170766551358,213,0 +170766551406,213,0 +170766551455,214,0 +170766551503,214,0 +170766551553,214,0 +170766551600,214,0 +170766551650,214,0 +170766551698,214,0 +170766551746,214,0 +170766551795,214,0 +170766551845,215,0 +170766551893,215,0 +170766551940,215,0 +170766551990,213,0 +170766552038,213,0 +170766552086,213,0 +170766552134,213,0 +170766552182,213,0 +170766552231,213,0 +170766552279,213,0 +170766552327,213,0 +170766552375,213,0 +170766552423,214,0 +170766552471,214,0 +170766552520,214,0 +170766552570,214,0 +170766552617,214,0 +170766552667,215,0 +170766552715,215,0 +170766552763,215,0 +170766552811,215,0 +170766552859,215,0 +170766552907,215,0 +170766552954,213,0 +170766553002,213,0 +170766553050,213,0 +170766553098,213,0 +170766553146,213,0 +170766553194,213,0 +170766553242,213,0 +170766553290,214,0 +170766553337,214,0 +170766553385,214,0 +170766553433,214,0 +170766553481,214,0 +170766553531,214,0 +170766553579,215,0 +170766553627,215,0 +170766553674,215,0 +170766553724,215,0 +170766553772,215,0 +170766553820,215,0 +170766553868,214,0 +170766553916,213,0 +170766553965,213,0 +170766554013,213,0 +170766554063,213,0 +170766554111,213,0 +170766554158,213,0 +170766554206,213,0 +170766554254,213,0 +170766554302,214,0 +170766554350,214,0 +170766554398,214,0 +170766554446,214,0 +170766554495,214,0 +170766554543,215,0 +170766554592,214,0 +170766554640,215,0 +170766554688,215,0 +170766554736,215,0 +170766554784,214,0 +170766554832,213,0 +170766554880,213,0 +170766554928,213,0 +170766554976,213,0 +170766555024,213,0 +170766555073,213,0 +170766555123,213,0 +170766555171,213,0 +170766555219,213,0 +170766555266,213,0 +170766555316,214,0 +170766555364,214,0 +170766555413,214,0 +170766555461,214,0 +170766555509,214,0 +170766555558,214,0 +170766555606,215,0 +170766555654,215,0 +170766555702,215,0 +170766555752,215,0 +170766555800,213,0 +170766555848,213,0 +170766555896,213,0 +170766555944,213,0 +170766555991,213,0 +170766556041,213,0 +170766556089,213,0 +170766556138,213,0 +170766556186,213,0 +170766556234,214,0 +170766556284,214,0 +170766556331,214,0 +170766556379,214,0 +170766556429,214,0 +170766556477,214,0 +170766556525,215,0 +170766556573,215,0 +170766556621,215,0 +170766556668,215,0 +170766556716,214,0 +170766556764,213,0 +170766556814,213,0 +170766556862,213,0 +170766556909,213,0 +170766556957,213,0 +170766557005,214,0 +170766557055,214,0 +170766557104,214,0 +170766557152,214,0 +170766557200,214,0 +170766557250,214,0 +170766557298,214,0 +170766557347,215,0 +170766557395,215,0 +170766557443,215,0 +170766557492,215,0 +170766557542,215,0 +170766557590,215,0 +170766557638,215,0 +170766557687,213,0 +170766557737,213,0 +170766557785,213,0 +170766557833,213,0 +170766557882,213,0 +170766557930,213,0 +170766557980,213,0 +170766558027,214,0 +170766558075,214,0 +170766558125,214,0 +170766558173,214,0 +170766558221,214,0 +170766558268,215,0 +170766558316,214,0 +170766558364,215,0 +170766558412,214,0 +170766558460,215,0 +170766558510,215,0 +170766558558,215,0 +170766558607,214,0 +170766558655,213,0 +170766558703,213,0 +170766558751,213,0 +170766558800,213,0 +170766558848,213,0 +170766558896,213,0 +170766558946,214,0 +170766558993,214,0 +170766559041,214,0 +170766559091,214,0 +170766559139,214,0 +170766559187,214,0 +170766559235,215,0 +170766559283,215,0 +170766559330,215,0 +170766559380,215,0 +170766559428,215,0 +170766559476,215,0 +170766559524,215,0 +170766559571,213,0 +170766559619,213,0 +170766559667,213,0 +170766559715,213,0 +170766559763,213,0 +170766559813,214,0 +170766559861,214,0 +170766559908,214,0 +170766559956,214,0 +170766560004,214,0 +170766560054,214,0 +170766560102,214,0 +170766560151,215,0 +170766560201,215,0 +170766560249,215,0 +170766560298,215,0 +170766560346,215,0 +170766560396,215,0 +170766560445,215,0 +170766560494,215,0 +170766560544,213,0 +170766560592,213,0 +170766560640,213,0 +170766560688,213,0 +170766560736,213,0 +170766560784,213,0 +170766560833,213,0 +170766560881,213,0 +170766560929,214,0 +170766560978,214,0 +170766561026,214,0 +170766561076,214,0 +170766561125,214,0 +170766561173,214,0 +170766561222,214,0 +170766561270,214,0 +170766561318,215,0 +170766561366,215,0 +170766561414,215,0 +170766561462,215,0 +170766561510,213,0 +170766561558,213,0 +170766561606,213,0 +170766561654,213,0 +170766561701,213,0 +170766561749,213,0 +170766561799,213,0 +170766561847,214,0 +170766561895,214,0 +170766561942,214,0 +170766561992,214,0 +170766562041,214,0 +170766562089,214,0 +170766562137,214,0 +170766562185,214,0 +170766562233,215,0 +170766562282,214,0 +170766562330,214,0 +170766562378,215,0 +170766562428,214,0 +170766562477,213,0 +170766562525,213,0 +170766562575,213,0 +170766562624,213,0 +170766562672,213,0 +170766562720,213,0 +170766562769,213,0 +170766562819,213,0 +170766562867,213,0 +170766562915,214,0 +170766562963,214,0 +170766563011,214,0 +170766563060,214,0 +170766563108,214,0 +170766563156,214,0 +170766563204,214,0 +170766563253,214,0 +170766563303,214,0 +170766563352,214,0 +170766563400,213,0 +170766563448,213,0 +170766563496,213,0 +170766563544,213,0 +170766563593,213,0 +170766563641,213,0 +170766563689,213,0 +170766563737,213,0 +170766563785,213,0 +170766563835,214,0 +170766563882,214,0 +170766563930,214,0 +170766563978,214,0 +170766564026,214,0 +170766564076,215,0 +170766564124,214,0 +170766564172,215,0 +170766564220,214,0 +170766564268,215,0 +170766564317,215,0 +170766564367,213,0 +170766564415,213,0 +170766564463,213,0 +170766564511,213,0 +170766564559,213,0 +170766564606,213,0 +170766564654,213,0 +170766564702,214,0 +170766564750,214,0 +170766564798,214,0 +170766564847,214,0 +170766564897,214,0 +170766564945,215,0 +170766564993,215,0 +170766565041,215,0 +170766565090,215,0 +170766565140,215,0 +170766565188,215,0 +170766565237,215,0 +170766565285,213,0 +170766565333,213,0 +170766565381,213,0 +170766565430,214,0 +170766565480,213,0 +170766565528,214,0 +170766565577,213,0 +170766565627,214,0 +170766565676,214,0 +170766565724,215,0 +170766565772,214,0 +170766565822,215,0 +170766565870,215,0 +170766565917,215,0 +170766565965,215,0 +170766566015,215,0 +170766566063,215,0 +170766566111,215,0 +170766566159,215,0 +170766566206,215,0 +170766566254,213,0 +170766566302,213,0 +170766566350,213,0 +170766566398,214,0 +170766566448,214,0 +170766566496,214,0 +170766566544,214,0 +170766566593,214,0 +170766566641,214,0 +170766566691,214,0 +170766566738,214,0 +170766566788,215,0 +170766566836,215,0 +170766566886,215,0 +170766566933,215,0 +170766566983,215,0 +170766567031,215,0 +170766567079,215,0 +170766567128,215,0 +170766567178,214,0 +170766567225,213,0 +170766567275,213,0 +170766567323,213,0 +170766567371,213,0 +170766567418,213,0 +170766567466,213,0 +170766567514,214,0 +170766567562,214,0 +170766567610,214,0 +170766567658,214,0 +170766567706,214,0 +170766567755,214,0 +170766567803,215,0 +170766567851,215,0 +170766567899,215,0 +170766567947,215,0 +170766567995,215,0 +170766568042,215,0 +170766568092,215,0 +170766568140,214,0 +170766568188,213,0 +170766568236,213,0 +170766568284,213,0 +170766568333,213,0 +170766568381,213,0 +170766568429,213,0 +170766568477,213,0 +170766568525,214,0 +170766568573,214,0 +170766568620,214,0 +170766568668,214,0 +170766568716,214,0 +170766568764,214,0 +170766568812,215,0 +170766568860,214,0 +170766568908,214,0 +170766568956,215,0 +170766569004,215,0 +170766569052,215,0 +170766569100,213,0 +170766569148,213,0 +170766569195,213,0 +170766569243,213,0 +170766569291,213,0 +170766569339,213,0 +170766569387,213,0 +170766569435,213,0 +170766569485,213,0 +170766569533,214,0 +170766569581,214,0 +170766569628,214,0 +170766569676,214,0 +170766569726,214,0 +170766569774,214,0 +170766569822,214,0 +170766569870,214,0 +170766569918,215,0 +170766569965,214,0 +170766570013,215,0 +170766570061,213,0 +170766570109,213,0 +170766570157,213,0 +170766570205,213,0 +170766570252,213,0 +170766570300,213,0 +170766570348,213,0 +170766570396,213,0 +170766570444,213,0 +170766570492,213,0 +170766570540,214,0 +170766570588,214,0 +170766570636,214,0 +170766570683,214,0 +170766570733,214,0 +170766570781,214,0 +170766570829,215,0 +170766570876,215,0 +170766570924,215,0 +170766570972,214,0 +170766571020,213,0 +170766571068,213,0 +170766571117,213,0 +170766571165,213,0 +170766571213,213,0 +170766571261,213,0 +170766571309,213,0 +170766571356,213,0 +170766571406,214,0 +170766571454,214,0 +170766571501,214,0 +170766571549,214,0 +170766571597,214,0 +170766571645,214,0 +170766571693,214,0 +170766571741,214,0 +170766571788,215,0 +170766571836,215,0 +170766571884,215,0 +170766571932,215,0 +170766571980,213,0 +170766572028,213,0 +170766572076,213,0 +170766572123,213,0 +170766572171,213,0 +170766572219,213,0 +170766572268,213,0 +170766572318,213,0 +170766572366,213,0 +170766572413,214,0 +170766572461,214,0 +170766572509,214,0 +170766572557,214,0 +170766572605,214,0 +170766572653,214,0 +170766572702,215,0 +170766572750,214,0 +170766572798,215,0 +170766572846,215,0 +170766572894,213,0 +170766572942,213,0 +170766572991,212,0 +170766573041,213,0 +170766573089,213,0 +170766573138,213,0 +170766573187,213,0 +170766573237,213,0 +170766573286,213,0 +170766573336,213,0 +170766573384,213,0 +170766573432,213,0 +170766573480,214,0 +170766573528,214,0 +170766573577,214,0 +170766573625,214,0 +170766573673,214,0 +170766573721,214,0 +170766573769,215,0 +170766573816,214,0 +170766573864,213,0 +170766573914,213,0 +170766573962,213,0 +170766574011,213,0 +170766574061,213,0 +170766574108,213,0 +170766574156,213,0 +170766574204,213,0 +170766574252,213,0 +170766574302,213,0 +170766574351,214,0 +170766574399,214,0 +170766574447,214,0 +170766574494,214,0 +170766574542,214,0 +170766574590,214,0 +170766574638,214,0 +170766574686,215,0 +170766574734,215,0 +170766574781,214,0 +170766574829,213,0 +170766574877,213,0 +170766574925,212,0 +170766574973,213,0 +170766575021,213,0 +170766575068,213,0 +170766575116,213,0 +170766575166,213,0 +170766575213,213,0 +170766575263,213,0 +170766575311,213,0 +170766575359,214,0 +170766575408,214,0 +170766575456,214,0 +170766575504,214,0 +170766575554,214,0 +170766575602,214,0 +170766575649,215,0 +170766575697,215,0 +170766575747,213,0 +170766575795,213,0 +170766575843,213,0 +170766575891,213,0 +170766575938,213,0 +170766575986,213,0 +170766576034,213,0 +170766576082,213,0 +170766576130,213,0 +170766576178,213,0 +170766576226,213,0 +170766576274,213,0 +170766576321,214,0 +170766576371,214,0 +170766576419,214,0 +170766576468,214,0 +170766576516,214,0 +170766576564,215,0 +170766576612,215,0 +170766576659,215,0 +170766576707,213,0 +170766576755,213,0 +170766576803,213,0 +170766576851,213,0 +170766576899,213,0 +170766576946,213,0 +170766576994,213,0 +170766577042,213,0 +170766577090,213,0 +170766577138,213,0 +170766577186,213,0 +170766577234,213,0 +170766577281,214,0 +170766577329,214,0 +170766577377,214,0 +170766577425,214,0 +170766577473,214,0 +170766577521,214,0 +170766577569,215,0 +170766577617,214,0 +170766577665,213,0 +170766577713,213,0 +170766577762,213,0 +170766577812,213,0 +170766577860,213,0 +170766577909,213,0 +170766577957,213,0 +170766578005,213,0 +170766578053,213,0 +170766578101,214,0 +170766578150,214,0 +170766578198,214,0 +170766578248,214,0 +170766578296,214,0 +170766578344,214,0 +170766578391,215,0 +170766578439,215,0 +170766578489,215,0 +170766578537,215,0 +170766578585,213,0 +170766578632,213,0 +170766578680,213,0 +170766578728,213,0 +170766578776,213,0 +170766578826,213,0 +170766578873,213,0 +170766578921,213,0 +170766578969,214,0 +170766579017,214,0 +170766579065,214,0 +170766579115,214,0 +170766579162,214,0 +170766579210,215,0 +170766579258,215,0 +170766579306,215,0 +170766579354,215,0 +170766579402,215,0 +170766579451,215,0 +170766579499,215,0 +170766579547,213,0 +170766579595,213,0 +170766579643,213,0 +170766579693,213,0 +170766579742,213,0 +170766579790,213,0 +170766579838,213,0 +170766579886,213,0 +170766579934,214,0 +170766579983,214,0 +170766580031,214,0 +170766580079,214,0 +170766580128,214,0 +170766580176,215,0 +170766580226,214,0 +170766580274,215,0 +170766580322,215,0 +170766580369,215,0 +170766580419,215,0 +170766580468,213,0 +170766580516,213,0 +170766580564,213,0 +170766580612,213,0 +170766580660,213,0 +170766580707,213,0 +170766580757,213,0 +170766580805,213,0 +170766580852,213,0 +170766580900,213,0 +170766580948,214,0 +170766580996,214,0 +170766581044,214,0 +170766581092,214,0 +170766581140,214,0 +170766581187,214,0 +170766581235,214,0 +170766581283,215,0 +170766581331,215,0 +170766581379,215,0 +170766581427,213,0 +170766581474,213,0 +170766581522,213,0 +170766581570,213,0 +170766581618,213,0 +170766581666,213,0 +170766581714,213,0 +170766581761,213,0 +170766581809,213,0 +170766581857,213,0 +170766581905,213,0 +170766581953,213,0 +170766582001,214,0 +170766582048,214,0 +170766582096,214,0 +170766582144,214,0 +170766582192,214,0 +170766582240,214,0 +170766582288,214,0 +170766582336,215,0 +170766582383,213,0 +170766582431,213,0 +170766582479,213,0 +170766582527,213,0 +170766582575,213,0 +170766582623,213,0 +170766582670,213,0 +170766582718,213,0 +170766582768,213,0 +170766582815,213,0 +170766582863,214,0 +170766582913,214,0 +170766582962,214,0 +170766583010,214,0 +170766583058,214,0 +170766583106,214,0 +170766583153,215,0 +170766583201,215,0 +170766583249,215,0 +170766583297,213,0 +170766583345,213,0 +170766583392,213,0 +170766583440,213,0 +170766583488,213,0 +170766583536,213,0 +170766583584,213,0 +170766583633,214,0 +170766583681,214,0 +170766583729,214,0 +170766583777,214,0 +170766583824,214,0 +170766583872,214,0 +170766583920,215,0 +170766583970,214,0 +170766584018,215,0 +170766584065,215,0 +170766584113,215,0 +170766584161,215,0 +170766584209,215,0 +170766584257,213,0 +170766584305,213,0 +170766584352,213,0 +170766584400,213,0 +170766584448,213,0 +170766584496,213,0 +170766584544,214,0 +170766584593,214,0 +170766584641,214,0 +170766584690,214,0 +170766584738,214,0 +170766584786,214,0 +170766584835,215,0 +170766584883,215,0 +170766584931,215,0 +170766584979,215,0 +170766585028,215,0 +170766585076,215,0 +170766585125,215,0 +170766585173,214,0 +170766585221,213,0 +170766585269,213,0 +170766585317,213,0 +170766585365,214,0 +170766585412,214,0 +170766585462,214,0 +170766585510,214,0 +170766585557,214,0 +170766585605,214,0 +170766585653,215,0 +170766585701,215,0 +170766585749,215,0 +170766585797,215,0 +170766585846,215,0 +170766585894,215,0 +170766585942,215,0 +170766585990,215,0 +170766586038,215,0 +170766586087,215,0 +170766586135,213,0 +170766586185,213,0 +170766586233,213,0 +170766586280,213,0 +170766586328,214,0 +170766586376,214,0 +170766586424,214,0 +170766586472,214,0 +170766586520,214,0 +170766586567,214,0 +170766586615,215,0 +170766586663,215,0 +170766586711,214,0 +170766586759,215,0 +170766586806,215,0 +170766586856,215,0 +170766586904,215,0 +170766586951,215,0 +170766587001,215,0 +170766587049,214,0 +170766587096,213,0 +170766587144,213,0 +170766587192,213,0 +170766587240,213,0 +170766587289,213,0 +170766587337,214,0 +170766587385,214,0 +170766587433,214,0 +170766587481,214,0 +170766587529,214,0 +170766587576,214,0 +170766587624,214,0 +170766587672,215,0 +170766587720,215,0 +170766587768,215,0 +170766587817,215,0 +170766587865,215,0 +170766587913,215,0 +170766587961,214,0 +170766588011,213,0 +170766588059,213,0 +170766588106,213,0 +170766588156,213,0 +170766588204,213,0 +170766588252,213,0 +170766588301,213,0 +170766588351,213,0 +170766588399,214,0 +170766588447,214,0 +170766588496,214,0 +170766588544,214,0 +170766588594,214,0 +170766588643,214,0 +170766588691,214,0 +170766588739,215,0 +170766588787,215,0 +170766588835,215,0 +170766588883,215,0 +170766588931,215,0 +170766588980,213,0 +170766589028,213,0 +170766589076,213,0 +170766589124,213,0 +170766589173,213,0 +170766589221,213,0 +170766589271,213,0 +170766589319,213,0 +170766589367,213,0 +170766589415,214,0 +170766589462,214,0 +170766589510,214,0 +170766589558,214,0 +170766589608,214,0 +170766589656,214,0 +170766589703,214,0 +170766589751,214,0 +170766589801,214,0 +170766589849,215,0 +170766589896,213,0 +170766589944,213,0 +170766589992,213,0 +170766590040,213,0 +170766590090,213,0 +170766590138,213,0 +170766590186,213,0 +170766590235,214,0 +170766590285,214,0 +170766590332,214,0 +170766590382,214,0 +170766590432,214,0 +170766590481,214,0 +170766590529,215,0 +170766590578,215,0 +170766590626,215,0 +170766590674,215,0 +170766590724,215,0 +170766590772,215,0 +170766590820,214,0 +170766590868,213,0 +170766590916,213,0 +170766590964,213,0 +170766591011,213,0 +170766591059,213,0 +170766591109,213,0 +170766591158,213,0 +170766591206,214,0 +170766591254,214,0 +170766591302,214,0 +170766591350,214,0 +170766591398,214,0 +170766591446,214,0 +170766591494,214,0 +170766591542,215,0 +170766591591,214,0 +170766591639,214,0 +170766591687,215,0 +170766591736,215,0 +170766591784,213,0 +170766591832,213,0 +170766591880,213,0 +170766591928,213,0 +170766591976,213,0 +170766592024,213,0 +170766592072,213,0 +170766592121,213,0 +170766592169,213,0 +170766592217,213,0 +170766592265,213,0 +170766592313,214,0 +170766592361,214,0 +170766592409,214,0 +170766592457,214,0 +170766592505,214,0 +170766592554,214,0 +170766592602,215,0 +170766592652,215,0 +170766592701,214,0 +170766592751,213,0 +170766592799,213,0 +170766592848,213,0 +170766592896,213,0 +170766592946,213,0 +170766592995,213,0 +170766593045,213,0 +170766593093,213,0 +170766593141,213,0 +170766593189,214,0 +170766593236,214,0 +170766593284,214,0 +170766593332,214,0 +170766593382,214,0 +170766593431,214,0 +170766593479,214,0 +170766593527,215,0 +170766593577,215,0 +170766593625,215,0 +170766593673,213,0 +170766593721,213,0 +170766593768,213,0 +170766593816,213,0 +170766593864,213,0 +170766593912,213,0 +170766593960,213,0 +170766594008,213,0 +170766594056,214,0 +170766594106,214,0 +170766594154,214,0 +170766594203,214,0 +170766594252,214,0 +170766594302,214,0 +170766594351,215,0 +170766594399,215,0 +170766594447,214,0 +170766594495,215,0 +170766594545,215,0 +170766594593,213,0 +170766594640,213,0 +170766594688,213,0 +170766594736,213,0 +170766594784,213,0 +170766594834,213,0 +170766594882,213,0 +170766594931,213,0 +170766594980,213,0 +170766595028,214,0 +170766595078,214,0 +170766595126,214,0 +170766595174,214,0 +170766595222,214,0 +170766595270,215,0 +170766595318,215,0 +170766595366,215,0 +170766595413,215,0 +170766595463,215,0 +170766595511,214,0 +170766595559,213,0 +170766595607,213,0 +170766595656,213,0 +170766595704,213,0 +170766595752,213,0 +170766595802,213,0 +170766595849,213,0 +170766595897,213,0 +170766595945,213,0 +170766595993,214,0 +170766596041,214,0 +170766596089,214,0 +170766596137,214,0 +170766596185,214,0 +170766596233,215,0 +170766596282,215,0 +170766596330,215,0 +170766596378,215,0 +170766596428,215,0 +170766596476,213,0 +170766596525,213,0 +170766596573,213,0 +170766596623,213,0 +170766596672,213,0 +170766596722,213,0 +170766596770,213,0 +170766596819,213,0 +170766596869,214,0 +170766596917,214,0 +170766596964,214,0 +170766597014,214,0 +170766597062,214,0 +170766597112,214,0 +170766597159,214,0 +170766597207,215,0 +170766597257,215,0 +170766597307,215,0 +170766597354,215,0 +170766597402,213,0 +170766597452,213,0 +170766597501,212,0 +170766597548,213,0 +170766597598,213,0 +170766597646,213,0 +170766597694,213,0 +170766597743,213,0 +170766597793,213,0 +170766597842,213,0 +170766597890,214,0 +170766597940,214,0 +170766597988,214,0 +170766598036,214,0 +170766598083,214,0 +170766598131,214,0 +170766598179,214,0 +170766598227,215,0 +170766598275,215,0 +170766598323,213,0 +170766598371,213,0 +170766598419,213,0 +170766598467,213,0 +170766598515,213,0 +170766598563,213,0 +170766598611,213,0 +170766598659,213,0 +170766598708,214,0 +170766598756,214,0 +170766598804,214,0 +170766598852,214,0 +170766598901,214,0 +170766598949,214,0 +170766598999,214,0 +170766599046,214,0 +170766599096,215,0 +170766599145,215,0 +170766599193,215,0 +170766599241,213,0 +170766599289,213,0 +170766599336,213,0 +170766599384,213,0 +170766599432,213,0 +170766599481,213,0 +170766599529,213,0 +170766599577,213,0 +170766599625,213,0 +170766599673,214,0 +170766599721,214,0 +170766599769,214,0 +170766599817,214,0 +170766599864,214,0 +170766599912,214,0 +170766599960,215,0 +170766600009,215,0 +170766600059,214,0 +170766600107,215,0 +170766600154,214,0 +170766600202,213,0 +170766600250,213,0 +170766600298,213,0 +170766600346,213,0 +170766600394,213,0 +170766600442,213,0 +170766600489,213,0 +170766600537,213,0 +170766600585,214,0 +170766600633,214,0 +170766600681,214,0 +170766600729,214,0 +170766600776,214,0 +170766600824,214,0 +170766600872,214,0 +170766600920,215,0 +170766600968,215,0 +170766601016,215,0 +170766601064,215,0 +170766601112,213,0 +170766601160,213,0 +170766601208,213,0 +170766601255,213,0 +170766601303,213,0 +170766601351,213,0 +170766601399,213,0 +170766601447,214,0 +170766601494,214,0 +170766601542,214,0 +170766601590,214,0 +170766601638,214,0 +170766601686,215,0 +170766601735,215,0 +170766601783,215,0 +170766601831,215,0 +170766601879,215,0 +170766601927,215,0 +170766601975,214,0 +170766602023,213,0 +170766602070,213,0 +170766602118,213,0 +170766602166,213,0 +170766602214,213,0 +170766602262,213,0 +170766602311,213,0 +170766602359,213,0 +170766602407,213,0 +170766602456,214,0 +170766602506,214,0 +170766602554,214,0 +170766602602,214,0 +170766602650,214,0 +170766602698,214,0 +170766602747,214,0 +170766602797,215,0 +170766602846,215,0 +170766602894,215,0 +170766602942,213,0 +170766602991,213,0 +170766603039,212,0 +170766603087,213,0 +170766603137,213,0 +170766603185,213,0 +170766603233,213,0 +170766603282,213,0 +170766603332,213,0 +170766603379,213,0 +170766603429,214,0 +170766603477,214,0 +170766603525,214,0 +170766603573,214,0 +170766603621,214,0 +170766603669,214,0 +170766603717,214,0 +170766603765,215,0 +170766603814,215,0 +170766603862,213,0 +170766603910,213,0 +170766603958,213,0 +170766604006,213,0 +170766604054,213,0 +170766604102,213,0 +170766604150,213,0 +170766604198,213,0 +170766604246,213,0 +170766604294,213,0 +170766604343,214,0 +170766604391,214,0 +170766604439,214,0 +170766604487,214,0 +170766604535,214,0 +170766604583,215,0 +170766604632,214,0 +170766604682,215,0 +170766604729,215,0 +170766604779,213,0 +170766604827,213,0 +170766604875,213,0 +170766604923,213,0 +170766604971,213,0 +170766605019,213,0 +170766605067,213,0 +170766605114,213,0 +170766605164,213,0 +170766605212,213,0 +170766605261,213,0 +170766605309,213,0 +170766605357,213,0 +170766605405,214,0 +170766605453,214,0 +170766605501,214,0 +170766605550,214,0 +170766605600,214,0 +170766605648,215,0 +170766605695,214,0 +170766605743,213,0 +170766605791,213,0 +170766605841,213,0 +170766605889,213,0 +170766605937,213,0 +170766605986,213,0 +170766606036,213,0 +170766606083,213,0 +170766606131,213,0 +170766606181,214,0 +170766606229,214,0 +170766606276,214,0 +170766606324,214,0 +170766606372,214,0 +170766606420,215,0 +170766606470,215,0 +170766606518,215,0 +170766606566,215,0 +170766606614,214,0 +170766606662,213,0 +170766606711,213,0 +170766606759,213,0 +170766606807,213,0 +170766606855,213,0 +170766606903,214,0 +170766606952,214,0 +170766607000,214,0 +170766607050,214,0 +170766607098,214,0 +170766607146,214,0 +170766607194,215,0 +170766607241,215,0 +170766607289,215,0 +170766607337,215,0 +170766607385,215,0 +170766607435,215,0 +170766607483,215,0 +170766607532,214,0 +170766607580,213,0 +170766607628,213,0 +170766607678,213,0 +170766607726,214,0 +170766607773,214,0 +170766607821,214,0 +170766607871,214,0 +170766607919,214,0 +170766607967,214,0 +170766608015,214,0 +170766608064,214,0 +170766608112,215,0 +170766608160,215,0 +170766608207,215,0 +170766608255,215,0 +170766608303,215,0 +170766608351,215,0 +170766608399,215,0 +170766608447,214,0 +170766608496,213,0 +170766608544,213,0 +170766608592,213,0 +170766608640,213,0 +170766608689,214,0 +170766608738,214,0 +170766608786,214,0 +170766608834,214,0 +170766608882,214,0 +170766608930,214,0 +170766608978,214,0 +170766609026,214,0 +170766609074,214,0 +170766609122,214,0 +170766609170,214,0 +170766609218,215,0 +170766609265,215,0 +170766609313,215,0 +170766609361,213,0 +170766609409,213,0 +170766609459,213,0 +170766609507,213,0 +170766609555,213,0 +170766609602,213,0 +170766609650,213,0 +170766609700,214,0 +170766609748,214,0 +170766609796,214,0 +170766609844,214,0 +170766609892,214,0 +170766609940,214,0 +170766609988,215,0 +170766610035,215,0 +170766610085,215,0 +170766610133,215,0 +170766610181,215,0 +170766610229,215,0 +170766610277,213,0 +170766610325,213,0 +170766610373,213,0 +170766610421,213,0 +170766610469,213,0 +170766610518,213,0 +170766610566,214,0 +170766610615,213,0 +170766610665,214,0 +170766610713,214,0 +170766610761,214,0 +170766610810,214,0 +170766610858,214,0 +170766610908,214,0 +170766610956,215,0 +170766611005,214,0 +170766611055,215,0 +170766611104,215,0 +170766611153,215,0 +170766611201,213,0 +170766611251,213,0 +170766611300,213,0 +170766611348,213,0 +170766611396,213,0 +170766611446,214,0 +170766611495,214,0 +170766611543,214,0 +170766611593,214,0 +170766611640,214,0 +170766611688,214,0 +170766611738,214,0 +170766611786,215,0 +170766611835,215,0 +170766611883,215,0 +170766611931,215,0 +170766611979,215,0 +170766612027,215,0 +170766612075,215,0 +170766612123,213,0 +170766612171,213,0 +170766612221,213,0 +170766612270,213,0 +170766612318,214,0 +170766612368,214,0 +170766612415,214,0 +170766612463,214,0 +170766612511,214,0 +170766612559,214,0 +170766612607,215,0 +170766612657,214,0 +170766612705,215,0 +170766612754,215,0 +170766612802,215,0 +170766612851,215,0 +170766612899,215,0 +170766612947,215,0 +170766612997,215,0 +170766613046,213,0 +170766613094,213,0 +170766613142,213,0 +170766613190,213,0 +170766613239,213,0 +170766613287,214,0 +170766613335,214,0 +170766613383,214,0 +170766613433,214,0 +170766613481,214,0 +170766613528,214,0 +170766613578,214,0 +170766613628,214,0 +170766613675,214,0 +170766613723,215,0 +170766613771,215,0 +170766613819,215,0 +170766613867,215,0 +170766613915,214,0 +170766613963,213,0 +170766614011,213,0 +170766614059,213,0 +170766614106,213,0 +170766614154,213,0 +170766614202,213,0 +170766614252,213,0 +170766614300,213,0 +170766614347,214,0 +170766614397,214,0 +170766614445,214,0 +170766614494,214,0 +170766614542,214,0 +170766614592,214,0 +170766614639,214,0 +170766614687,215,0 +170766614737,215,0 +170766614785,215,0 +170766614834,213,0 +170766614884,213,0 +170766614931,213,0 +170766614979,213,0 +170766615027,213,0 +170766615077,213,0 +170766615125,213,0 +170766615173,213,0 +170766615220,213,0 +170766615270,214,0 +170766615318,214,0 +170766615366,214,0 +170766615415,214,0 +170766615463,214,0 +170766615513,214,0 +170766615562,214,0 +170766615610,214,0 +170766615660,214,0 +170766615708,214,0 +170766615755,215,0 +170766615803,215,0 +170766615851,215,0 +170766615901,215,0 +170766615949,215,0 +170766615997,215,0 +170766616046,215,0 +170766616094,215,0 +170766616143,215,0 +170766616191,213,0 +170766616239,213,0 +170766616287,213,0 +170766616337,213,0 +170766616385,213,0 +170766616433,213,0 +170766616482,213,0 +170766616532,214,0 +170766616580,214,0 +170766616627,214,0 +170766616675,214,0 +170766616723,214,0 +170766616773,215,0 +170766616821,214,0 +170766616870,215,0 +170766616918,215,0 +170766616968,215,0 +170766617016,215,0 +170766617064,215,0 +170766617113,213,0 +170766617163,213,0 +170766617212,213,0 +170766617262,213,0 +170766617310,213,0 +170766617359,214,0 +170766617409,214,0 +170766617457,214,0 +170766617505,214,0 +170766617553,214,0 +170766617602,214,0 +170766617650,214,0 +170766617698,214,0 +170766617746,215,0 +170766617794,215,0 +170766617843,215,0 +170766617891,215,0 +170766617939,215,0 +170766617987,213,0 +170766618036,213,0 +170766618084,213,0 +170766618134,213,0 +170766618183,213,0 +170766618231,213,0 +170766618279,213,0 +170766618327,214,0 +170766618377,214,0 +170766618426,214,0 +170766618475,214,0 +170766618523,214,0 +170766618571,214,0 +170766618619,215,0 +170766618669,214,0 +170766618717,215,0 +170766618765,215,0 +170766618813,215,0 +170766618861,215,0 +170766618908,213,0 +170766618956,213,0 +170766619004,213,0 +170766619054,213,0 +170766619103,213,0 +170766619153,214,0 +170766619201,214,0 +170766619250,214,0 +170766619298,214,0 +170766619346,214,0 +170766619394,214,0 +170766619442,215,0 +170766619490,215,0 +170766619538,215,0 +170766619586,215,0 +170766619634,215,0 +170766619683,215,0 +170766619731,215,0 +170766619779,213,0 +170766619827,213,0 +170766619877,213,0 +170766619925,213,0 +170766619973,213,0 +170766620020,214,0 +170766620068,214,0 +170766620118,214,0 +170766620166,214,0 +170766620214,214,0 +170766620263,214,0 +170766620311,214,0 +170766620360,215,0 +170766620410,215,0 +170766620458,215,0 +170766620507,215,0 +170766620555,215,0 +170766620605,215,0 +170766620653,215,0 +170766620701,213,0 +170766620749,213,0 +170766620798,213,0 +170766620846,213,0 +170766620894,213,0 +170766620942,213,0 +170766620991,213,0 +170766621039,214,0 +170766621087,214,0 +170766621135,214,0 +170766621185,214,0 +170766621233,214,0 +170766621280,214,0 +170766621328,214,0 +170766621376,215,0 +170766621424,215,0 +170766621474,215,0 +170766621522,215,0 +170766621570,213,0 +170766621618,213,0 +170766621665,213,0 +170766621713,213,0 +170766621763,213,0 +170766621812,213,0 +170766621862,213,0 +170766621910,213,0 +170766621959,213,0 +170766622007,214,0 +170766622057,214,0 +170766622106,214,0 +170766622154,214,0 +170766622203,214,0 +170766622251,214,0 +170766622301,214,0 +170766622349,215,0 +170766622398,215,0 +170766622448,215,0 +170766622496,213,0 +170766622544,213,0 +170766622592,213,0 +170766622641,213,0 +170766622690,213,0 +170766622738,213,0 +170766622786,213,0 +170766622834,213,0 +170766622882,213,0 +170766622932,213,0 +170766622981,213,0 +170766623029,214,0 +170766623077,214,0 +170766623125,214,0 +170766623173,214,0 +170766623221,214,0 +170766623268,214,0 +170766623316,214,0 +170766623364,213,0 +170766623412,213,0 +170766623460,213,0 +170766623508,213,0 +170766623556,213,0 +170766623603,213,0 +170766623651,213,0 +170766623699,213,0 +170766623749,213,0 +170766623797,213,0 +170766623845,213,0 +170766623894,213,0 +170766623942,214,0 +170766623990,214,0 +170766624040,214,0 +170766624089,214,0 +170766624139,214,0 +170766624187,215,0 +170766624236,214,0 +170766624284,213,0 +170766624332,213,0 +170766624380,213,0 +170766624429,213,0 +170766624477,213,0 +170766624525,213,0 +170766624573,213,0 +170766624621,213,0 +170766624670,213,0 +170766624720,213,0 +170766624768,214,0 +170766624816,214,0 +170766624864,214,0 +170766624912,214,0 +170766624960,214,0 +170766625008,214,0 +170766625057,215,0 +170766625105,215,0 +170766625153,213,0 +170766625202,213,0 +170766625252,213,0 +170766625300,213,0 +170766625348,213,0 +170766625395,213,0 +170766625443,214,0 +170766625491,214,0 +170766625539,214,0 +170766625587,214,0 +170766625635,214,0 +170766625682,214,0 +170766625730,215,0 +170766625778,215,0 +170766625826,215,0 +170766625874,215,0 +170766625923,215,0 +170766625971,215,0 +170766626018,213,0 +170766626066,213,0 +170766626114,213,0 +170766626162,214,0 +170766626210,214,0 +170766626257,214,0 +170766626305,214,0 +170766626353,214,0 +170766626401,214,0 +170766626448,214,0 +170766626496,215,0 +170766626544,215,0 +170766626592,215,0 +170766626640,215,0 +170766626688,215,0 +170766626735,215,0 +170766626783,215,0 +170766626831,215,0 +170766626879,213,0 +170766626927,213,0 +170766626974,213,0 +170766627022,213,0 +170766627070,213,0 +170766627118,214,0 +170766627166,214,0 +170766627214,214,0 +170766627262,214,0 +170766627309,214,0 +170766627357,214,0 +170766627405,215,0 +170766627453,215,0 +170766627501,215,0 +170766627550,215,0 +170766627598,215,0 +170766627646,215,0 +170766627694,215,0 +170766627741,213,0 +170766627789,213,0 +170766627837,213,0 +170766627885,213,0 +170766627933,213,0 +170766627981,213,0 +170766628029,213,0 +170766628078,213,0 +170766628128,214,0 +170766628176,214,0 +170766628224,214,0 +170766628273,214,0 +170766628321,214,0 +170766628369,214,0 +170766628417,215,0 +170766628465,214,0 +170766628514,215,0 +170766628562,215,0 +170766628610,213,0 +170766628658,213,0 +170766628706,213,0 +170766628754,213,0 +170766628802,213,0 +170766628851,213,0 +170766628899,213,0 +170766628947,214,0 +170766628995,214,0 +170766629044,214,0 +170766629092,214,0 +170766629140,214,0 +170766629188,214,0 +170766629236,214,0 +170766629284,215,0 +170766629334,215,0 +170766629382,215,0 +170766629430,215,0 +170766629478,214,0 +170766629526,213,0 +170766629575,213,0 +170766629625,214,0 +170766629673,214,0 +170766629721,214,0 +170766629769,214,0 +170766629816,214,0 +170766629866,214,0 +170766629914,214,0 +170766629963,215,0 +170766630011,215,0 +170766630059,215,0 +170766630107,215,0 +170766630157,215,0 +170766630205,215,0 +170766630254,215,0 +170766630304,215,0 +170766630352,213,0 +170766630400,213,0 +170766630448,214,0 +170766630496,214,0 +170766630543,214,0 +170766630591,213,0 +170766630639,214,0 +170766630689,214,0 +170766630737,214,0 +170766630785,214,0 +170766630832,215,0 +170766630880,215,0 +170766630930,214,0 +170766630979,215,0 +170766631027,215,0 +170766631075,215,0 +170766631125,215,0 +170766631173,215,0 +170766631220,213,0 +170766631270,214,0 +170766631318,213,0 +170766631365,214,0 +170766631413,214,0 +170766631461,214,0 +170766631509,214,0 +170766631557,214,0 +170766631607,214,0 +170766631656,215,0 +170766631704,215,0 +170766631752,215,0 +170766631800,215,0 +170766631848,215,0 +170766631897,215,0 +170766631945,215,0 +170766631995,215,0 +170766632044,215,0 +170766632094,213,0 +170766632142,214,0 +170766632189,213,0 +170766632237,213,0 +170766632285,214,0 +170766632333,214,0 +170766632381,214,0 +170766632429,214,0 +170766632477,215,0 +170766632525,214,0 +170766632572,215,0 +170766632620,215,0 +170766632668,215,0 +170766632716,215,0 +170766632764,215,0 +170766632812,215,0 +170766632860,215,0 +170766632908,214,0 +170766632956,213,0 +170766633005,213,0 +170766633054,214,0 +170766633102,214,0 +170766633152,214,0 +170766633201,214,0 +170766633251,214,0 +170766633299,214,0 +170766633348,215,0 +170766633396,215,0 +170766633444,215,0 +170766633492,215,0 +170766633541,215,0 +170766633591,215,0 +170766633640,215,0 +170766633688,215,0 +170766633736,215,0 +170766633784,213,0 +170766633832,213,0 +170766633879,214,0 +170766633927,214,0 +170766633975,214,0 +170766634023,214,0 +170766634071,214,0 +170766634119,214,0 +170766634167,214,0 +170766634214,215,0 +170766634262,215,0 +170766634310,215,0 +170766634360,215,0 +170766634408,215,0 +170766634455,215,0 +170766634503,215,0 +170766634553,215,0 +170766634602,213,0 +170766634650,213,0 +170766634699,213,0 +170766634747,213,0 +170766634797,213,0 +170766634846,214,0 +170766634894,214,0 +170766634942,214,0 +170766634990,214,0 +170766635039,214,0 +170766635087,215,0 +170766635135,215,0 +170766635185,215,0 +170766635234,215,0 +170766635283,215,0 +170766635331,215,0 +170766635379,215,0 +170766635427,213,0 +170766635475,213,0 +170766635523,213,0 +170766635571,213,0 +170766635619,213,0 +170766635667,213,0 +170766635715,214,0 +170766635763,214,0 +170766635812,214,0 +170766635860,214,0 +170766635908,214,0 +170766635956,215,0 +170766636004,214,0 +170766636052,215,0 +170766636100,214,0 +170766636148,215,0 +170766636196,215,0 +170766636243,213,0 +170766636291,213,0 +170766636341,213,0 +170766636389,213,0 +170766636437,213,0 +170766636485,213,0 +170766636534,213,0 +170766636582,214,0 +170766636632,214,0 +170766636679,214,0 +170766636727,214,0 +170766636775,214,0 +170766636823,214,0 +170766636871,215,0 +170766636920,215,0 +170766636968,215,0 +170766637016,215,0 +170766637064,213,0 +170766637112,213,0 +170766637160,213,0 +170766637208,213,0 +170766637256,213,0 +170766637304,213,0 +170766637352,213,0 +170766637399,213,0 +170766637447,214,0 +170766637495,214,0 +170766637545,214,0 +170766637594,214,0 +170766637642,214,0 +170766637690,214,0 +170766637738,215,0 +170766637786,215,0 +170766637834,215,0 +170766637882,214,0 +170766637931,213,0 +170766637979,213,0 +170766638027,213,0 +170766638074,213,0 +170766638122,213,0 +170766638170,213,0 +170766638218,214,0 +170766638267,214,0 +170766638315,214,0 +170766638363,214,0 +170766638411,214,0 +170766638459,214,0 +170766638507,215,0 +170766638555,214,0 +170766638604,215,0 +170766638653,214,0 +170766638701,215,0 +170766638749,213,0 +170766638797,213,0 +170766638845,213,0 +170766638894,213,0 +170766638942,213,0 +170766638992,213,0 +170766639040,213,0 +170766639088,214,0 +170766639136,214,0 +170766639185,214,0 +170766639233,214,0 +170766639281,214,0 +170766639329,214,0 +170766639378,215,0 +170766639426,215,0 +170766639476,215,0 +170766639523,215,0 +170766639571,213,0 +170766639619,213,0 +170766639667,213,0 +170766639715,213,0 +170766639763,213,0 +170766639811,213,0 +170766639858,213,0 +170766639908,213,0 +170766639956,213,0 +170766640004,214,0 +170766640052,214,0 +170766640101,214,0 +170766640150,214,0 +170766640198,215,0 +170766640246,215,0 +170766640296,215,0 +170766640344,215,0 +170766640392,213,0 +170766640441,213,0 +170766640489,213,0 +170766640539,213,0 +170766640586,214,0 +170766640636,214,0 +170766640684,214,0 +170766640733,214,0 +170766640783,215,0 +170766640832,215,0 +170766640880,214,0 +170766640930,215,0 +170766640979,215,0 +170766641027,215,0 +170766641077,215,0 +170766641124,215,0 +170766641174,215,0 +170766641223,213,0 +170766641271,213,0 +170766641319,213,0 +170766641369,213,0 +170766641417,214,0 +170766641466,214,0 +170766641514,214,0 +170766641563,215,0 +170766641613,214,0 +170766641660,215,0 +170766641708,215,0 +170766641756,215,0 +170766641804,215,0 +170766641852,215,0 +170766641900,215,0 +170766641947,215,0 +170766641995,215,0 +170766642045,213,0 +170766642093,213,0 +170766642140,213,0 +170766642188,214,0 +170766642236,214,0 +170766642284,214,0 +170766642332,214,0 +170766642380,214,0 +170766642428,214,0 +170766642476,214,0 +170766642523,214,0 +170766642571,214,0 +170766642619,215,0 +170766642667,215,0 +170766642715,215,0 +170766642762,215,0 +170766642810,215,0 +170766642858,213,0 +170766642906,213,0 +170766642954,213,0 +170766643002,213,0 +170766643049,214,0 +170766643097,213,0 +170766643145,214,0 +170766643193,214,0 +170766643241,214,0 +170766643289,214,0 +170766643338,214,0 +170766643386,215,0 +170766643436,215,0 +170766643485,215,0 +170766643533,215,0 +170766643581,215,0 +170766643631,215,0 +170766643680,214,0 +170766643728,213,0 +170766643776,213,0 +170766643824,213,0 +170766643873,213,0 +170766643921,214,0 +170766643969,213,0 +170766644017,214,0 +170766644065,214,0 +170766644113,214,0 +170766644161,214,0 +170766644208,215,0 +170766644258,214,0 +170766644305,215,0 +170766644353,215,0 +170766644401,214,0 +170766644449,215,0 +170766644497,214,0 +170766644544,213,0 +170766644592,213,0 +170766644640,213,0 +170766644688,214,0 +170766644736,214,0 +170766644784,214,0 +170766644832,214,0 +170766644881,214,0 +170766644929,214,0 +170766644978,215,0 +170766645026,215,0 +170766645074,215,0 +170766645124,215,0 +170766645171,215,0 +170766645219,215,0 +170766645269,215,0 +170766645318,215,0 +170766645366,213,0 +170766645413,213,0 +170766645461,214,0 +170766645509,215,0 +170766645557,214,0 +170766645605,214,0 +170766645653,214,0 +170766645702,215,0 +170766645750,215,0 +170766645798,215,0 +170766645845,215,0 +170766645893,215,0 +170766645941,215,0 +170766645989,215,0 +170766646036,215,0 +170766646084,215,0 +170766646132,215,0 +170766646180,214,0 +170766646228,213,0 +170766646275,213,0 +170766646323,213,0 +170766646371,214,0 +170766646419,214,0 +170766646466,214,0 +170766646514,214,0 +170766646564,214,0 +170766646611,215,0 +170766646659,215,0 +170766646709,214,0 +170766646756,215,0 +170766646804,214,0 +170766646852,215,0 +170766646900,214,0 +170766646948,215,0 +170766646996,214,0 +170766647044,213,0 +170766647091,213,0 +170766647139,214,0 +170766647187,214,0 +170766647235,214,0 +170766647282,214,0 +170766647330,214,0 +170766647378,214,0 +170766647426,214,0 +170766647474,215,0 +170766647522,215,0 +170766647569,215,0 +170766647617,215,0 +170766647665,215,0 +170766647713,215,0 +170766647761,215,0 +170766647809,213,0 +170766647857,213,0 +170766647905,213,0 +170766647952,213,0 +170766648000,214,0 +170766648048,214,0 +170766648096,214,0 +170766648144,214,0 +170766648192,214,0 +170766648240,214,0 +170766648287,214,0 +170766648335,215,0 +170766648383,215,0 +170766648431,215,0 +170766648479,215,0 +170766648528,215,0 +170766648576,215,0 +170766648624,214,0 +170766648672,213,0 +170766648720,213,0 +170766648768,213,0 +170766648817,213,0 +170766648867,213,0 +170766648915,214,0 +170766648963,214,0 +170766649011,214,0 +170766649059,214,0 +170766649107,214,0 +170766649155,215,0 +170766649202,215,0 +170766649250,215,0 +170766649298,215,0 +170766649348,215,0 +170766649396,215,0 +170766649443,215,0 +170766649491,213,0 +170766649539,213,0 +170766649587,213,0 +170766649635,214,0 +170766649685,214,0 +170766649733,214,0 +170766649781,214,0 +170766649828,214,0 +170766649878,214,0 +170766649926,215,0 +170766649974,215,0 +170766650022,215,0 +170766650070,215,0 +170766650119,215,0 +170766650167,215,0 +170766650215,215,0 +170766650263,215,0 +170766650311,213,0 +170766650358,213,0 +170766650406,213,0 +170766650454,214,0 +170766650502,214,0 +170766650550,214,0 +170766650598,214,0 +170766650646,214,0 +170766650695,214,0 +170766650743,214,0 +170766650791,214,0 +170766650839,215,0 +170766650887,215,0 +170766650934,215,0 +170766650982,215,0 +170766651030,215,0 +170766651078,215,0 +170766651126,213,0 +170766651174,213,0 +170766651221,214,0 +170766651269,214,0 +170766651317,214,0 +170766651365,214,0 +170766651413,213,0 +170766651461,214,0 +170766651509,214,0 +170766651557,215,0 +170766651604,214,0 +170766651652,215,0 +170766651700,215,0 +170766651748,215,0 +170766651796,215,0 +170766651844,215,0 +170766651891,215,0 +170766651939,214,0 +170766651987,213,0 +170766652035,213,0 +170766652083,214,0 +170766652132,213,0 +170766652180,214,0 +170766652230,214,0 +170766652278,214,0 +170766652326,214,0 +170766652373,214,0 +170766652423,214,0 +170766652471,214,0 +170766652519,215,0 +170766652568,215,0 +170766652618,215,0 +170766652666,215,0 +170766652714,215,0 +170766652762,213,0 +170766652810,213,0 +170766652857,213,0 +170766652905,214,0 +170766652955,213,0 +170766653003,213,0 +170766653052,214,0 +170766653100,214,0 +170766653148,214,0 +170766653196,213,0 +170766653244,214,0 +170766653292,215,0 +170766653340,215,0 +170766653389,215,0 +170766653437,215,0 +170766653485,215,0 +170766653533,215,0 +170766653582,213,0 +170766653630,213,0 +170766653678,213,0 +170766653727,213,0 +170766653775,214,0 +170766653825,214,0 +170766653873,214,0 +170766653921,214,0 +170766653969,214,0 +170766654018,215,0 +170766654066,215,0 +170766654114,215,0 +170766654162,215,0 +170766654210,215,0 +170766654259,215,0 +170766654307,215,0 +170766654357,215,0 +170766654406,214,0 +170766654454,214,0 +170766654504,214,0 +170766654552,214,0 +170766654599,214,0 +170766654647,214,0 +170766654695,215,0 +170766654745,215,0 +170766654794,215,0 +170766654844,215,0 +170766654892,215,0 +170766654941,215,0 +170766654989,215,0 +170766655037,215,0 +170766655085,215,0 +170766655134,215,0 +170766655182,215,0 +170766655230,214,0 +170766655280,213,0 +170766655328,214,0 +170766655375,214,0 +170766655423,214,0 +170766655473,214,0 +170766655521,214,0 +170766655569,214,0 +170766655617,214,0 +170766655666,214,0 +170766655714,214,0 +170766655762,214,0 +170766655810,214,0 +170766655859,214,0 +170766655909,215,0 +170766655958,215,0 +170766656008,215,0 +170766656057,213,0 +170766656105,214,0 +170766656153,214,0 +170766656201,214,0 +170766656249,214,0 +170766656297,214,0 +170766656345,214,0 +170766656393,214,0 +170766656441,214,0 +170766656489,214,0 +170766656537,215,0 +170766656585,215,0 +170766656634,215,0 +170766656684,215,0 +170766656732,215,0 +170766656781,215,0 +170766656829,214,0 +170766656877,213,0 +170766656925,214,0 +170766656973,213,0 +170766657022,214,0 +170766657070,214,0 +170766657118,213,0 +170766657166,214,0 +170766657214,214,0 +170766657262,215,0 +170766657311,215,0 +170766657359,214,0 +170766657407,215,0 +170766657455,215,0 +170766657503,215,0 +170766657551,215,0 +170766657600,215,0 +170766657648,214,0 +170766657696,214,0 +170766657744,214,0 +170766657792,214,0 +170766657840,214,0 +170766657888,214,0 +170766657935,214,0 +170766657983,214,0 +170766658031,215,0 +170766658080,215,0 +170766658128,215,0 +170766658176,215,0 +170766658224,215,0 +170766658272,215,0 +170766658320,215,0 +170766658368,215,0 +170766658416,215,0 +170766658464,214,0 +170766658511,215,0 +170766658559,214,0 +170766658607,215,0 +170766658655,215,0 +170766658704,215,0 +170766658752,215,0 +170766658800,215,0 +170766658848,215,0 +170766658896,215,0 +170766658944,215,0 +170766658992,216,0 +170766659040,215,0 +170766659088,215,0 +170766659135,215,0 +170766659183,215,0 +170766659231,215,0 +170766659281,214,0 +170766659328,214,0 +170766659376,214,0 +170766659424,215,0 +170766659474,215,0 +170766659523,215,0 +170766659571,215,0 +170766659620,215,0 +170766659668,215,0 +170766659716,215,0 +170766659764,215,0 +170766659812,215,0 +170766659860,215,0 +170766659908,215,0 +170766659955,215,0 +170766660005,215,0 +170766660053,214,0 +170766660102,213,0 +170766660150,213,0 +170766660198,214,0 +170766660246,214,0 +170766660294,214,0 +170766660341,214,0 +170766660389,214,0 +170766660437,215,0 +170766660487,215,0 +170766660536,215,0 +170766660584,215,0 +170766660632,215,0 +170766660680,215,0 +170766660728,215,0 +170766660775,215,0 +170766660823,215,0 +170766660871,213,0 +170766660921,213,0 +170766660970,213,0 +170766661018,213,0 +170766661066,214,0 +170766661114,214,0 +170766661163,214,0 +170766661211,214,0 +170766661259,214,0 +170766661307,215,0 +170766661355,215,0 +170766661403,215,0 +170766661450,215,0 +170766661498,215,0 +170766661546,215,0 +170766661594,215,0 +170766661642,215,0 +170766661691,214,0 +170766661739,213,0 +170766661789,213,0 +170766661837,213,0 +170766661886,213,0 +170766661934,214,0 +170766661982,214,0 +170766662032,214,0 +170766662081,214,0 +170766662129,214,0 +170766662177,214,0 +170766662226,215,0 +170766662274,215,0 +170766662322,215,0 +170766662370,215,0 +170766662418,215,0 +170766662466,215,0 +170766662514,213,0 +170766662561,213,0 +170766662609,213,0 +170766662659,213,0 +170766662707,214,0 +170766662754,214,0 +170766662802,214,0 +170766662852,214,0 +170766662901,214,0 +170766662951,215,0 +170766662999,215,0 +170766663047,215,0 +170766663095,215,0 +170766663144,215,0 +170766663194,215,0 +170766663243,215,0 +170766663291,213,0 +170766663340,213,0 +170766663388,213,0 +170766663438,213,0 +170766663486,213,0 +170766663534,213,0 +170766663583,214,0 +170766663631,214,0 +170766663681,214,0 +170766663729,214,0 +170766663778,215,0 +170766663826,215,0 +170766663874,215,0 +170766663922,215,0 +170766663970,215,0 +170766664020,215,0 +170766664068,215,0 +170766664115,213,0 +170766664163,213,0 +170766664211,213,0 +170766664259,213,0 +170766664307,213,0 +170766664357,213,0 +170766664405,214,0 +170766664452,214,0 +170766664502,214,0 +170766664550,214,0 +170766664599,214,0 +170766664647,214,0 +170766664695,214,0 +170766664743,215,0 +170766664793,215,0 +170766664841,215,0 +170766664889,215,0 +170766664938,213,0 +170766664986,213,0 +170766665036,213,0 +170766665083,213,0 +170766665131,213,0 +170766665181,213,0 +170766665229,213,0 +170766665277,214,0 +170766665325,214,0 +170766665373,214,0 +170766665422,214,0 +170766665470,214,0 +170766665518,214,0 +170766665566,215,0 +170766665615,215,0 +170766665663,215,0 +170766665713,213,0 +170766665762,213,0 +170766665810,213,0 +170766665859,213,0 +170766665909,213,0 +170766665958,213,0 +170766666006,213,0 +170766666056,214,0 +170766666104,214,0 +170766666152,214,0 +170766666201,214,0 +170766666249,215,0 +170766666299,215,0 +170766666347,215,0 +170766666394,215,0 +170766666442,215,0 +170766666490,215,0 +170766666538,213,0 +170766666588,214,0 +170766666636,214,0 +170766666684,214,0 +170766666732,214,0 +170766666779,214,0 +170766666827,214,0 +170766666875,215,0 +170766666925,215,0 +170766666974,215,0 +170766667022,215,0 +170766667071,215,0 +170766667121,215,0 +170766667170,215,0 +170766667218,215,0 +170766667266,215,0 +170766667316,214,0 +170766667364,214,0 +170766667413,214,0 +170766667462,214,0 +170766667510,214,0 +170766667560,215,0 +170766667608,215,0 +170766667656,215,0 +170766667705,215,0 +170766667753,215,0 +170766667801,215,0 +170766667849,215,0 +170766667897,215,0 +170766667945,215,0 +170766667993,215,0 +170766668041,215,0 +170766668088,215,0 +170766668136,214,0 +170766668184,214,0 +170766668232,214,0 +170766668282,214,0 +170766668331,215,0 +170766668381,215,0 +170766668429,214,0 +170766668477,215,0 +170766668525,215,0 +170766668574,215,0 +170766668624,215,0 +170766668671,215,0 +170766668719,215,0 +170766668769,215,0 +170766668816,215,0 +170766668864,215,0 +170766668912,215,0 +170766668960,214,0 +170766669008,214,0 +170766669056,214,0 +170766669104,214,0 +170766669152,214,0 +170766669199,214,0 +170766669247,215,0 +170766669295,215,0 +170766669343,215,0 +170766669391,215,0 +170766669438,215,0 +170766669486,215,0 +170766669534,215,0 +170766669582,215,0 +170766669630,215,0 +170766669678,215,0 +170766669725,214,0 +170766669773,214,0 +170766669821,214,0 +170766669869,214,0 +170766669917,214,0 +170766669964,214,0 +170766670012,214,0 +170766670060,214,0 +170766670108,215,0 +170766670156,215,0 +170766670204,215,0 +170766670252,214,0 +170766670301,215,0 +170766670349,216,0 +170766670397,215,0 +170766670445,215,0 +170766670493,215,0 +170766670541,214,0 +170766670589,214,0 +170766670637,214,0 +170766670684,214,0 +170766670732,214,0 +170766670780,215,0 +170766670828,215,0 +170766670876,215,0 +170766670926,215,0 +170766670973,215,0 +170766671023,215,0 +170766671072,215,0 +170766671120,215,0 +170766671168,215,0 +170766671216,215,0 +170766671264,215,0 +170766671314,215,0 +170766671361,214,0 +170766671411,214,0 +170766671460,214,0 +170766671510,214,0 +170766671558,215,0 +170766671607,215,0 +170766671655,215,0 +170766671704,215,0 +170766671754,215,0 +170766671802,215,0 +170766671850,215,0 +170766671898,215,0 +170766671945,215,0 +170766671993,215,0 +170766672041,215,0 +170766672089,215,0 +170766672137,214,0 +170766672187,214,0 +170766672235,214,0 +170766672284,214,0 +170766672333,214,0 +170766672381,214,0 +170766672431,214,0 +170766672479,214,0 +170766672527,215,0 +170766672576,214,0 +170766672624,215,0 +170766672672,215,0 +170766672720,215,0 +170766672769,215,0 +170766672817,215,0 +170766672865,215,0 +170766672913,215,0 +170766672961,213,0 +170766673009,214,0 +170766673057,214,0 +170766673106,214,0 +170766673154,214,0 +170766673202,214,0 +170766673250,214,0 +170766673298,215,0 +170766673346,215,0 +170766673394,215,0 +170766673442,215,0 +170766673489,215,0 +170766673537,215,0 +170766673585,215,0 +170766673633,215,0 +170766673681,215,0 +170766673729,215,0 +170766673777,213,0 +170766673824,213,0 +170766673872,214,0 +170766673920,214,0 +170766673970,214,0 +170766674019,214,0 +170766674067,214,0 +170766674115,214,0 +170766674163,215,0 +170766674210,215,0 +170766674258,215,0 +170766674308,215,0 +170766674356,215,0 +170766674404,215,0 +170766674452,215,0 +170766674499,215,0 +170766674547,214,0 +170766674595,213,0 +170766674643,213,0 +170766674691,213,0 +170766674739,214,0 +170766674787,214,0 +170766674835,214,0 +170766674883,214,0 +170766674931,214,0 +170766674978,214,0 +170766675026,215,0 +170766675076,215,0 +170766675124,215,0 +170766675172,215,0 +170766675219,215,0 +170766675269,214,0 +170766675317,215,0 +170766675365,214,0 +170766675413,213,0 +170766675462,213,0 +170766675510,213,0 +170766675558,213,0 +170766675606,213,0 +170766675654,214,0 +170766675702,214,0 +170766675750,214,0 +170766675798,215,0 +170766675847,214,0 +170766675895,215,0 +170766675943,215,0 +170766675993,215,0 +170766676040,215,0 +170766676090,215,0 +170766676139,215,0 +170766676187,213,0 +170766676235,213,0 +170766676283,213,0 +170766676331,214,0 +170766676379,213,0 +170766676427,214,0 +170766676475,214,0 +170766676523,214,0 +170766676572,214,0 +170766676622,214,0 +170766676670,215,0 +170766676719,214,0 +170766676767,215,0 +170766676815,215,0 +170766676863,215,0 +170766676911,215,0 +170766676959,214,0 +170766677007,213,0 +170766677055,213,0 +170766677104,213,0 +170766677152,213,0 +170766677200,214,0 +170766677248,214,0 +170766677297,214,0 +170766677347,214,0 +170766677395,214,0 +170766677444,215,0 +170766677492,215,0 +170766677540,215,0 +170766677589,215,0 +170766677637,215,0 +170766677685,215,0 +170766677735,215,0 +170766677783,213,0 +170766677830,213,0 +170766677878,213,0 +170766677926,213,0 +170766677974,213,0 +170766678023,214,0 +170766678071,214,0 +170766678121,214,0 +170766678169,214,0 +170766678217,215,0 +170766678264,215,0 +170766678312,215,0 +170766678360,215,0 +170766678410,215,0 +170766678458,215,0 +170766678507,215,0 +170766678556,215,0 +170766678604,213,0 +170766678652,213,0 +170766678702,213,0 +170766678750,213,0 +170766678798,214,0 +170766678846,214,0 +170766678894,214,0 +170766678942,214,0 +170766678991,215,0 +170766679039,215,0 +170766679088,215,0 +170766679136,215,0 +170766679186,215,0 +170766679235,215,0 +170766679283,215,0 +170766679331,215,0 +170766679379,213,0 +170766679427,213,0 +170766679475,214,0 +170766679524,214,0 +170766679572,214,0 +170766679622,214,0 +170766679671,214,0 +170766679721,214,0 +170766679770,214,0 +170766679818,215,0 +170766679866,215,0 +170766679914,215,0 +170766679963,215,0 +170766680011,215,0 +170766680059,215,0 +170766680107,215,0 +170766680156,215,0 +170766680204,214,0 +170766680252,214,0 +170766680302,214,0 +170766680350,214,0 +170766680399,214,0 +170766680447,214,0 +170766680495,214,0 +170766680543,214,0 +170766680591,215,0 +170766680639,215,0 +170766680686,215,0 +170766680734,215,0 +170766680782,215,0 +170766680832,215,0 +170766680881,215,0 +170766680931,215,0 +170766680980,215,0 +170766681028,213,0 +170766681078,213,0 +170766681127,213,0 +170766681175,213,0 +170766681225,214,0 +170766681273,214,0 +170766681320,214,0 +170766681368,213,0 +170766681416,214,0 +170766681464,214,0 +170766681512,214,0 +170766681560,214,0 +170766681608,215,0 +170766681656,215,0 +170766681706,215,0 +170766681753,215,0 +170766681801,214,0 +170766681849,213,0 +170766681899,213,0 +170766681947,213,0 +170766681995,214,0 +170766682044,214,0 +170766682092,214,0 +170766682140,214,0 +170766682188,214,0 +170766682238,214,0 +170766682285,214,0 +170766682333,214,0 +170766682381,215,0 +170766682429,215,0 +170766682477,215,0 +170766682527,215,0 +170766682575,215,0 +170766682623,214,0 +170766682670,213,0 +170766682718,214,0 +170766682766,214,0 +170766682816,214,0 +170766682864,214,0 +170766682911,214,0 +170766682959,215,0 +170766683007,215,0 +170766683055,215,0 +170766683103,215,0 +170766683153,214,0 +170766683201,215,0 +170766683250,215,0 +170766683298,215,0 +170766683346,215,0 +170766683394,214,0 +170766683441,214,0 +170766683489,214,0 +170766683539,214,0 +170766683587,214,0 +170766683636,215,0 +170766683684,215,0 +170766683734,215,0 +170766683783,214,0 +170766683831,215,0 +170766683879,215,0 +170766683927,215,0 +170766683975,215,0 +170766684023,215,0 +170766684071,215,0 +170766684120,215,0 +170766684168,215,0 +170766684218,214,0 +170766684266,214,0 +170766684314,214,0 +170766684361,214,0 +170766684409,214,0 +170766684457,214,0 +170766684505,215,0 +170766684553,215,0 +170766684601,215,0 +170766684650,215,0 +170766684698,215,0 +170766684748,215,0 +170766684797,215,0 +170766684846,215,0 +170766684894,215,0 +170766684942,215,0 +170766684989,215,0 +170766685037,214,0 +170766685085,214,0 +170766685133,213,0 +170766685181,214,0 +170766685229,214,0 +170766685276,214,0 +170766685324,214,0 +170766685372,215,0 +170766685422,215,0 +170766685469,215,0 +170766685517,215,0 +170766685565,215,0 +170766685613,215,0 +170766685661,215,0 +170766685709,215,0 +170766685756,215,0 +170766685804,214,0 +170766685852,214,0 +170766685900,214,0 +170766685948,214,0 +170766685996,214,0 +170766686043,214,0 +170766686091,214,0 +170766686139,214,0 +170766686187,215,0 +170766686235,214,0 +170766686282,215,0 +170766686332,215,0 +170766686380,215,0 +170766686429,215,0 +170766686477,215,0 +170766686525,215,0 +170766686573,215,0 +170766686621,214,0 +170766686669,213,0 +170766686718,214,0 +170766686768,214,0 +170766686816,214,0 +170766686865,214,0 +170766686913,214,0 +170766686963,214,0 +170766687011,214,0 +170766687060,215,0 +170766687108,215,0 +170766687156,215,0 +170766687204,215,0 +170766687252,215,0 +170766687300,215,0 +170766687349,215,0 +170766687397,215,0 +170766687445,214,0 +170766687493,213,0 +170766687541,214,0 +170766687590,214,0 +170766687638,214,0 +170766687686,214,0 +170766687736,215,0 +170766687784,215,0 +170766687833,215,0 +170766687881,215,0 +170766687929,215,0 +170766687977,215,0 +170766688025,215,0 +170766688073,215,0 +170766688121,215,0 +170766688169,215,0 +170766688217,214,0 +170766688266,213,0 +170766688314,214,0 +170766688362,214,0 +170766688411,214,0 +170766688459,214,0 +170766688507,215,0 +170766688555,214,0 +170766688604,214,0 +170766688652,215,0 +170766688700,215,0 +170766688749,215,0 +170766688799,215,0 +170766688848,215,0 +170766688896,215,0 +170766688946,215,0 +170766688994,215,0 +170766689043,213,0 +170766689091,213,0 +170766689139,213,0 +170766689189,213,0 +170766689237,214,0 +170766689285,214,0 +170766689332,214,0 +170766689380,214,0 +170766689430,215,0 +170766689478,215,0 +170766689526,215,0 +170766689574,215,0 +170766689622,215,0 +170766689670,215,0 +170766689718,215,0 +170766689766,215,0 +170766689813,215,0 +170766689861,213,0 +170766689909,213,0 +170766689959,213,0 +170766690007,213,0 +170766690054,214,0 +170766690102,214,0 +170766690150,214,0 +170766690198,214,0 +170766690246,214,0 +170766690295,214,0 +170766690343,215,0 +170766690391,214,0 +170766690439,215,0 +170766690487,215,0 +170766690535,215,0 +170766690584,215,0 +170766690632,213,0 +170766690680,213,0 +170766690729,213,0 +170766690777,213,0 +170766690825,213,0 +170766690873,214,0 +170766690921,214,0 +170766690969,214,0 +170766691017,214,0 +170766691065,215,0 +170766691113,215,0 +170766691161,215,0 +170766691209,215,0 +170766691256,215,0 +170766691304,215,0 +170766691352,215,0 +170766691402,215,0 +170766691449,213,0 +170766691497,213,0 +170766691545,214,0 +170766691593,214,0 +170766691641,214,0 +170766691688,215,0 +170766691736,214,0 +170766691784,215,0 +170766691832,215,0 +170766691880,215,0 +170766691928,215,0 +170766691976,215,0 +170766692025,215,0 +170766692073,215,0 +170766692121,215,0 +170766692169,215,0 +170766692216,215,0 +170766692264,214,0 +170766692312,213,0 +170766692360,213,0 +170766692408,214,0 +170766692456,214,0 +170766692503,214,0 +170766692551,214,0 +170766692599,214,0 +170766692647,214,0 +170766692695,215,0 +170766692744,215,0 +170766692794,215,0 +170766692842,215,0 +170766692890,215,0 +170766692938,214,0 +170766692987,215,0 +170766693035,215,0 +170766693084,213,0 +170766693134,213,0 +170766693183,214,0 +170766693231,214,0 +170766693281,214,0 +170766693329,214,0 +170766693377,214,0 +170766693426,214,0 +170766693474,214,0 +170766693522,214,0 +170766693572,214,0 +170766693620,215,0 +170766693668,215,0 +170766693715,215,0 +170766693763,215,0 +170766693811,215,0 +170766693861,213,0 +170766693909,213,0 +170766693957,213,0 +170766694004,213,0 +170766694052,214,0 +170766694100,214,0 +170766694150,214,0 +170766694197,214,0 +170766694245,214,0 +170766694293,214,0 +170766694343,214,0 +170766694391,214,0 +170766694438,215,0 +170766694486,215,0 +170766694534,215,0 +170766694582,214,0 +170766694630,215,0 +170766694678,213,0 +170766694726,213,0 +170766694774,213,0 +170766694822,213,0 +170766694870,214,0 +170766694918,214,0 +170766694965,214,0 +170766695013,214,0 +170766695061,214,0 +170766695111,214,0 +170766695158,215,0 +170766695206,215,0 +170766695254,215,0 +170766695302,215,0 +170766695350,215,0 +170766695398,215,0 +170766695445,214,0 +170766695493,213,0 +170766695541,214,0 +170766695589,214,0 +170766695637,214,0 +170766695685,214,0 +170766695733,214,0 +170766695781,214,0 +170766695829,214,0 +170766695878,215,0 +170766695928,215,0 +170766695976,215,0 +170766696024,215,0 +170766696073,215,0 +170766696121,215,0 +170766696170,215,0 +170766696218,215,0 +170766696266,214,0 +170766696314,214,0 +170766696363,214,0 +170766696413,214,0 +170766696461,214,0 +170766696509,214,0 +170766696557,215,0 +170766696604,215,0 +170766696652,215,0 +170766696702,215,0 +170766696750,215,0 +170766696799,215,0 +170766696847,215,0 +170766696895,215,0 +170766696945,215,0 +170766696993,215,0 +170766697040,215,0 +170766697088,213,0 +170766697136,214,0 +170766697184,214,0 +170766697232,214,0 +170766697280,214,0 +170766697328,214,0 +170766697376,214,0 +170766697424,214,0 +170766697472,214,0 +170766697520,214,0 +170766697568,215,0 +170766697615,215,0 +170766697663,215,0 +170766697711,215,0 +170766697759,215,0 +170766697809,215,0 +170766697857,214,0 +170766697905,213,0 +170766697952,213,0 +170766698000,214,0 +170766698048,214,0 +170766698096,214,0 +170766698144,214,0 +170766698192,214,0 +170766698241,214,0 +170766698289,215,0 +170766698337,215,0 +170766698385,215,0 +170766698433,215,0 +170766698481,215,0 +170766698528,215,0 +170766698576,215,0 +170766698624,215,0 +170766698672,214,0 +170766698720,213,0 +170766698767,213,0 +170766698815,213,0 +170766698863,214,0 +170766698911,214,0 +170766698959,214,0 +170766699007,214,0 +170766699055,214,0 +170766699103,214,0 +170766699150,215,0 +170766699198,215,0 +170766699246,215,0 +170766699294,215,0 +170766699342,215,0 +170766699390,215,0 +170766699439,215,0 +170766699487,213,0 +170766699535,213,0 +170766699583,213,0 +170766699630,213,0 +170766699678,213,0 +170766699726,214,0 +170766699774,214,0 +170766699822,214,0 +170766699872,214,0 +170766699921,215,0 +170766699970,215,0 +170766700018,215,0 +170766700068,215,0 +170766700116,215,0 +170766700164,215,0 +170766700211,214,0 +170766700259,215,0 +170766700307,213,0 +170766700355,213,0 +170766700405,213,0 +170766700453,214,0 +170766700501,213,0 +170766700550,214,0 +170766700598,214,0 +170766700646,214,0 +170766700694,214,0 +170766700743,214,0 +170766700791,214,0 +170766700839,215,0 +170766700888,215,0 +170766700936,215,0 +170766700984,215,0 +170766701032,215,0 +170766701080,214,0 +170766701130,213,0 +170766701179,213,0 +170766701229,213,0 +170766701277,214,0 +170766701326,214,0 +170766701374,214,0 +170766701422,214,0 +170766701471,214,0 +170766701519,214,0 +170766701567,214,0 +170766701615,215,0 +170766701663,215,0 +170766701713,215,0 +170766701762,215,0 +170766701810,215,0 +170766701860,215,0 +170766701908,213,0 +170766701957,213,0 +170766702005,213,0 +170766702053,213,0 +170766702101,213,0 +170766702149,214,0 +170766702198,214,0 +170766702246,214,0 +170766702296,214,0 +170766702345,214,0 +170766702395,214,0 +170766702444,214,0 +170766702494,214,0 +170766702543,215,0 +170766702591,214,0 +170766702639,215,0 +170766702689,214,0 +170766702736,213,0 +170766702786,213,0 +170766702834,213,0 +170766702881,214,0 +170766702929,214,0 +170766702979,214,0 +170766703026,214,0 +170766703074,214,0 +170766703122,215,0 +170766703170,215,0 +170766703218,215,0 +170766703266,215,0 +170766703314,215,0 +170766703363,215,0 +170766703411,214,0 +170766703459,215,0 +170766703507,214,0 +170766703555,214,0 +170766703603,214,0 +170766703651,214,0 +170766703698,214,0 +170766703746,214,0 +170766703794,214,0 +170766703842,215,0 +170766703890,215,0 +170766703938,215,0 +170766703986,215,0 +170766704034,215,0 +170766704081,215,0 +170766704131,215,0 +170766704179,215,0 +170766704227,215,0 +170766704275,215,0 +170766704323,214,0 +170766704371,214,0 +170766704419,214,0 +170766704467,214,0 +170766704515,214,0 +170766704562,214,0 +170766704610,214,0 +170766704660,215,0 +170766704709,215,0 +170766704757,215,0 +170766704805,215,0 +170766704855,215,0 +170766704903,215,0 +170766704951,215,0 +170766705000,215,0 +170766705048,215,0 +170766705096,214,0 +170766705144,213,0 +170766705193,213,0 +170766705243,213,0 +170766705292,213,0 +170766705340,214,0 +170766705388,214,0 +170766705438,214,0 +170766705487,214,0 +170766705535,214,0 +170766705583,214,0 +170766705631,214,0 +170766705679,215,0 +170766705727,215,0 +170766705775,215,0 +170766705824,215,0 +170766705874,215,0 +170766705923,214,0 +170766705971,213,0 +170766706019,213,0 +170766706069,214,0 +170766706116,214,0 +170766706166,214,0 +170766706214,214,0 +170766706262,214,0 +170766706311,214,0 +170766706361,214,0 +170766706409,215,0 +170766706457,215,0 +170766706504,215,0 +170766706552,215,0 +170766706600,215,0 +170766706648,215,0 +170766706696,215,0 +170766706744,214,0 +170766706791,214,0 +170766706839,214,0 +170766706887,214,0 +170766706935,214,0 +170766706983,214,0 +170766707032,214,0 +170766707080,215,0 +170766707128,214,0 +170766707176,214,0 +170766707226,215,0 +170766707274,215,0 +170766707322,215,0 +170766707371,215,0 +170766707419,215,0 +170766707467,215,0 +170766707515,215,0 +170766707563,214,0 +170766707611,214,0 +170766707659,214,0 +170766707706,216,0 +170766707754,215,0 +170766707804,215,0 +170766707852,215,0 +170766707900,215,0 +170766707948,215,0 +170766707996,215,0 +170766708045,215,0 +170766708095,215,0 +170766708143,215,0 +170766708192,215,0 +170766708241,215,0 +170766708289,215,0 +170766708337,215,0 +170766708385,215,0 +170766708435,215,0 +170766708484,214,0 +170766708532,215,0 +170766708580,215,0 +170766708629,215,0 +170766708677,215,0 +170766708727,215,0 +170766708776,215,0 +170766708826,215,0 +170766708874,215,0 +170766708923,215,0 +170766708973,215,0 +170766709021,215,0 +170766709070,215,0 +170766709118,215,0 +170766709167,214,0 +170766709215,214,0 +170766709263,214,0 +170766709313,215,0 +170766709361,214,0 +170766709409,215,0 +170766709457,215,0 +170766709505,215,0 +170766709554,215,0 +170766709602,215,0 +170766709652,215,0 +170766709699,215,0 +170766709747,215,0 +170766709795,215,0 +170766709843,215,0 +170766709893,215,0 +170766709941,213,0 +170766709989,213,0 +170766710036,214,0 +170766710084,214,0 +170766710132,214,0 +170766710180,214,0 +170766710228,214,0 +170766710276,214,0 +170766710324,215,0 +170766710372,214,0 +170766710420,215,0 +170766710470,215,0 +170766710518,215,0 +170766710567,215,0 +170766710617,215,0 +170766710664,215,0 +170766710712,214,0 +170766710760,213,0 +170766710808,213,0 +170766710856,213,0 +170766710904,213,0 +170766710952,214,0 +170766711000,213,0 +170766711048,214,0 +170766711096,214,0 +170766711144,214,0 +170766711193,214,0 +170766711243,214,0 +170766711291,215,0 +170766711340,215,0 +170766711390,215,0 +170766711438,215,0 +170766711487,215,0 +170766711535,214,0 +170766711583,213,0 +170766711632,213,0 +170766711682,213,0 +170766711730,213,0 +170766711777,213,0 +170766711827,213,0 +170766711875,214,0 +170766711923,214,0 +170766711972,214,0 +170766712020,214,0 +170766712068,214,0 +170766712116,214,0 +170766712164,215,0 +170766712212,215,0 +170766712262,215,0 +170766712310,215,0 +170766712358,213,0 +170766712407,213,0 +170766712456,213,0 +170766712504,213,0 +170766712552,213,0 +170766712600,213,0 +170766712649,214,0 +170766712697,214,0 +170766712745,214,0 +170766712793,214,0 +170766712841,214,0 +170766712889,215,0 +170766712939,215,0 +170766712987,215,0 +170766713036,215,0 +170766713084,215,0 +170766713134,215,0 +170766713181,213,0 +170766713229,213,0 +170766713277,213,0 +170766713325,213,0 +170766713373,213,0 +170766713421,214,0 +170766713469,213,0 +170766713517,214,0 +170766713564,214,0 +170766713612,214,0 +170766713662,214,0 +170766713711,215,0 +170766713759,215,0 +170766713807,214,0 +170766713855,214,0 +170766713903,215,0 +170766713951,214,0 +170766713999,213,0 +170766714047,213,0 +170766714095,213,0 +170766714144,213,0 +170766714192,213,0 +170766714240,213,0 +170766714289,213,0 +170766714339,214,0 +170766714387,214,0 +170766714435,214,0 +170766714484,214,0 +170766714532,214,0 +170766714580,215,0 +170766714628,215,0 +170766714676,215,0 +170766714726,215,0 +170766714775,213,0 +170766714823,213,0 +170766714871,213,0 +170766714920,213,0 +170766714970,213,0 +170766715018,213,0 +170766715065,214,0 +170766715113,214,0 +170766715161,214,0 +170766715209,214,0 +170766715257,215,0 +170766715305,215,0 +170766715354,215,0 +170766715402,215,0 +170766715450,215,0 +170766715498,215,0 +170766715546,214,0 +170766715593,213,0 +170766715643,213,0 +170766715691,213,0 +170766715739,214,0 +170766715786,214,0 +170766715836,214,0 +170766715884,214,0 +170766715932,215,0 +170766715980,215,0 +170766716028,215,0 +170766716075,215,0 +170766716123,215,0 +170766716171,215,0 +170766716219,215,0 +170766716267,215,0 +170766716315,215,0 +170766716363,214,0 +170766716413,214,0 +170766716461,214,0 +170766716508,214,0 +170766716556,214,0 +170766716604,214,0 +170766716652,215,0 +170766716700,215,0 +170766716748,215,0 +170766716798,215,0 +170766716847,215,0 +170766716895,215,0 +170766716943,215,0 +170766716991,215,0 +170766717039,215,0 +170766717087,215,0 +170766717135,215,0 +170766717183,214,0 +170766717231,214,0 +170766717281,214,0 +170766717328,214,0 +170766717376,214,0 +170766717424,214,0 +170766717472,214,0 +170766717522,214,0 +170766717570,215,0 +170766717619,214,0 +170766717667,215,0 +170766717717,215,0 +170766717765,215,0 +170766717812,215,0 +170766717860,215,0 +170766717908,215,0 +170766717958,214,0 +170766718007,214,0 +170766718055,214,0 +170766718105,214,0 +170766718153,214,0 +170766718201,214,0 +170766718249,214,0 +170766718298,214,0 +170766718348,214,0 +170766718396,215,0 +170766718445,215,0 +170766718493,215,0 +170766718541,215,0 +170766718589,215,0 +170766718638,215,0 +170766718686,215,0 +170766718734,215,0 +170766718782,214,0 +170766718830,214,0 +170766718878,214,0 +170766718926,214,0 +170766718976,214,0 +170766719024,214,0 +170766719072,214,0 +170766719120,215,0 +170766719167,215,0 +170766719215,215,0 +170766719265,215,0 +170766719313,215,0 +170766719361,215,0 +170766719409,215,0 +170766719457,215,0 +170766719506,215,0 +170766719556,215,0 +170766719605,214,0 +170766719653,214,0 +170766719703,214,0 +170766719751,214,0 +170766719799,215,0 +170766719846,215,0 +170766719894,215,0 +170766719944,215,0 +170766719992,215,0 diff --git a/laser_value/0212-02.csv b/laser_value/0212-02.csv new file mode 100644 index 0000000..296e623 --- /dev/null +++ b/laser_value/0212-02.csv @@ -0,0 +1,7457 @@ +timestamp,laser_value,event +170766720040,215,0 +170766720088,215,0 +170766720136,215,0 +170766720184,215,0 +170766720232,215,0 +170766720280,215,0 +170766720327,215,0 +170766720375,215,0 +170766720423,214,0 +170766720471,214,0 +170766720519,215,0 +170766720567,215,0 +170766720616,215,0 +170766720666,215,0 +170766720714,215,0 +170766720763,215,0 +170766720813,215,0 +170766720862,215,0 +170766720910,215,0 +170766720959,215,0 +170766721007,215,0 +170766721055,215,0 +170766721103,215,0 +170766721151,215,0 +170766721198,214,0 +170766721246,213,0 +170766721296,214,0 +170766721343,214,0 +170766721391,214,0 +170766721439,214,0 +170766721487,215,0 +170766721535,214,0 +170766721583,215,0 +170766721631,215,0 +170766721678,215,0 +170766721726,215,0 +170766721774,215,0 +170766721822,215,0 +170766721872,215,0 +170766721919,215,0 +170766721969,214,0 +170766722018,213,0 +170766722068,213,0 +170766722117,214,0 +170766722165,213,0 +170766722215,214,0 +170766722263,214,0 +170766722311,214,0 +170766722360,214,0 +170766722408,214,0 +170766722456,214,0 +170766722506,214,0 +170766722554,214,0 +170766722602,215,0 +170766722650,215,0 +170766722697,215,0 +170766722745,215,0 +170766722795,214,0 +170766722842,213,0 +170766722890,213,0 +170766722938,214,0 +170766722986,214,0 +170766723034,214,0 +170766723082,214,0 +170766723130,214,0 +170766723177,214,0 +170766723225,214,0 +170766723273,215,0 +170766723321,215,0 +170766723369,215,0 +170766723417,215,0 +170766723465,215,0 +170766723513,215,0 +170766723560,215,0 +170766723608,213,0 +170766723656,213,0 +170766723706,213,0 +170766723755,214,0 +170766723803,214,0 +170766723851,214,0 +170766723899,214,0 +170766723946,214,0 +170766723994,214,0 +170766724042,215,0 +170766724090,215,0 +170766724138,215,0 +170766724187,215,0 +170766724235,215,0 +170766724285,215,0 +170766724333,215,0 +170766724381,215,0 +170766724428,213,0 +170766724478,213,0 +170766724526,213,0 +170766724574,213,0 +170766724622,214,0 +170766724670,214,0 +170766724718,214,0 +170766724766,214,0 +170766724815,214,0 +170766724863,214,0 +170766724911,215,0 +170766724961,215,0 +170766725010,215,0 +170766725058,215,0 +170766725107,215,0 +170766725155,215,0 +170766725205,214,0 +170766725253,213,0 +170766725301,213,0 +170766725349,213,0 +170766725396,213,0 +170766725444,214,0 +170766725494,214,0 +170766725543,214,0 +170766725593,214,0 +170766725641,214,0 +170766725690,214,0 +170766725740,215,0 +170766725789,215,0 +170766725837,215,0 +170766725885,215,0 +170766725934,215,0 +170766725982,215,0 +170766726030,213,0 +170766726078,213,0 +170766726126,213,0 +170766726173,213,0 +170766726221,213,0 +170766726269,214,0 +170766726317,214,0 +170766726367,214,0 +170766726415,215,0 +170766726462,215,0 +170766726510,215,0 +170766726558,215,0 +170766726606,215,0 +170766726654,215,0 +170766726702,215,0 +170766726750,215,0 +170766726798,215,0 +170766726846,213,0 +170766726894,213,0 +170766726942,213,0 +170766726991,213,0 +170766727039,214,0 +170766727087,214,0 +170766727135,214,0 +170766727183,214,0 +170766727233,214,0 +170766727281,215,0 +170766727329,215,0 +170766727378,215,0 +170766727426,215,0 +170766727475,215,0 +170766727523,215,0 +170766727573,215,0 +170766727622,213,0 +170766727672,213,0 +170766727720,213,0 +170766727768,214,0 +170766727817,214,0 +170766727865,214,0 +170766727913,214,0 +170766727961,214,0 +170766728009,215,0 +170766728058,215,0 +170766728106,215,0 +170766728155,215,0 +170766728203,215,0 +170766728251,215,0 +170766728299,215,0 +170766728347,215,0 +170766728395,215,0 +170766728443,214,0 +170766728491,214,0 +170766728539,214,0 +170766728587,214,0 +170766728635,215,0 +170766728683,215,0 +170766728731,215,0 +170766728780,215,0 +170766728828,215,0 +170766728876,215,0 +170766728924,215,0 +170766728972,215,0 +170766729020,215,0 +170766729068,215,0 +170766729117,215,0 +170766729166,215,0 +170766729214,215,0 +170766729262,214,0 +170766729310,214,0 +170766729360,214,0 +170766729409,214,0 +170766729457,215,0 +170766729506,215,0 +170766729554,215,0 +170766729602,215,0 +170766729652,215,0 +170766729700,215,0 +170766729748,215,0 +170766729795,215,0 +170766729843,215,0 +170766729891,215,0 +170766729939,215,0 +170766729987,215,0 +170766730037,214,0 +170766730085,214,0 +170766730132,214,0 +170766730180,214,0 +170766730230,214,0 +170766730278,214,0 +170766730326,214,0 +170766730374,214,0 +170766730423,214,0 +170766730473,215,0 +170766730521,214,0 +170766730568,214,0 +170766730618,214,0 +170766730667,215,0 +170766730715,215,0 +170766730763,215,0 +170766730813,215,0 +170766730861,213,0 +170766730909,213,0 +170766730957,214,0 +170766731006,214,0 +170766731054,214,0 +170766731103,214,0 +170766731151,214,0 +170766731199,214,0 +170766731249,214,0 +170766731296,215,0 +170766731344,215,0 +170766731392,215,0 +170766731440,215,0 +170766731488,215,0 +170766731536,215,0 +170766731585,215,0 +170766731633,213,0 +170766731681,213,0 +170766731729,214,0 +170766731777,214,0 +170766731825,214,0 +170766731873,214,0 +170766731923,214,0 +170766731970,214,0 +170766732018,214,0 +170766732068,214,0 +170766732117,215,0 +170766732165,215,0 +170766732213,215,0 +170766732261,215,0 +170766732309,215,0 +170766732358,215,0 +170766732406,215,0 +170766732454,214,0 +170766732502,214,0 +170766732550,214,0 +170766732598,214,0 +170766732648,214,0 +170766732695,214,0 +170766732745,214,0 +170766732793,215,0 +170766732841,215,0 +170766732889,215,0 +170766732937,215,0 +170766732986,215,0 +170766733036,215,0 +170766733083,215,0 +170766733131,215,0 +170766733179,215,0 +170766733227,215,0 +170766733275,214,0 +170766733325,214,0 +170766733374,214,0 +170766733422,214,0 +170766733470,215,0 +170766733518,215,0 +170766733566,215,0 +170766733613,215,0 +170766733661,215,0 +170766733711,215,0 +170766733759,215,0 +170766733807,215,0 +170766733854,215,0 +170766733904,215,0 +170766733953,215,0 +170766734003,215,0 +170766734051,213,0 +170766734100,213,0 +170766734148,213,0 +170766734197,213,0 +170766734245,214,0 +170766734293,214,0 +170766734341,214,0 +170766734389,214,0 +170766734436,214,0 +170766734484,215,0 +170766734532,215,0 +170766734582,215,0 +170766734630,215,0 +170766734677,215,0 +170766734725,215,0 +170766734773,215,0 +170766734821,215,0 +170766734871,213,0 +170766734920,214,0 +170766734968,214,0 +170766735018,214,0 +170766735065,214,0 +170766735113,214,0 +170766735161,214,0 +170766735209,214,0 +170766735259,214,0 +170766735307,214,0 +170766735356,214,0 +170766735404,215,0 +170766735452,214,0 +170766735501,215,0 +170766735551,215,0 +170766735599,215,0 +170766735647,214,0 +170766735694,213,0 +170766735742,213,0 +170766735792,214,0 +170766735840,214,0 +170766735888,214,0 +170766735936,214,0 +170766735984,214,0 +170766736032,215,0 +170766736079,215,0 +170766736127,215,0 +170766736177,214,0 +170766736225,215,0 +170766736273,215,0 +170766736321,215,0 +170766736369,215,0 +170766736417,215,0 +170766736465,214,0 +170766736514,214,0 +170766736564,214,0 +170766736611,214,0 +170766736661,214,0 +170766736709,215,0 +170766736757,215,0 +170766736805,214,0 +170766736853,215,0 +170766736902,215,0 +170766736950,215,0 +170766736998,215,0 +170766737046,215,0 +170766737096,215,0 +170766737145,215,0 +170766737193,215,0 +170766737241,215,0 +170766737289,213,0 +170766737337,214,0 +170766737384,214,0 +170766737432,214,0 +170766737480,214,0 +170766737528,215,0 +170766737576,215,0 +170766737624,215,0 +170766737672,215,0 +170766737719,215,0 +170766737767,215,0 +170766737815,215,0 +170766737863,215,0 +170766737911,215,0 +170766737959,215,0 +170766738007,215,0 +170766738055,214,0 +170766738103,213,0 +170766738151,213,0 +170766738200,213,0 +170766738249,214,0 +170766738297,214,0 +170766738345,214,0 +170766738393,214,0 +170766738441,214,0 +170766738490,215,0 +170766738540,215,0 +170766738587,215,0 +170766738635,215,0 +170766738683,215,0 +170766738732,215,0 +170766738780,215,0 +170766738828,215,0 +170766738876,213,0 +170766738924,213,0 +170766738974,213,0 +170766739022,213,0 +170766739069,214,0 +170766739119,214,0 +170766739167,214,0 +170766739215,214,0 +170766739263,214,0 +170766739311,215,0 +170766739359,215,0 +170766739408,215,0 +170766739456,215,0 +170766739504,215,0 +170766739554,215,0 +170766739601,215,0 +170766739649,215,0 +170766739697,213,0 +170766739745,213,0 +170766739793,213,0 +170766739841,213,0 +170766739889,214,0 +170766739937,214,0 +170766739985,214,0 +170766740033,214,0 +170766740083,214,0 +170766740131,215,0 +170766740180,215,0 +170766740228,215,0 +170766740276,215,0 +170766740324,215,0 +170766740373,215,0 +170766740421,215,0 +170766740469,214,0 +170766740519,214,0 +170766740568,214,0 +170766740616,214,0 +170766740664,214,0 +170766740712,214,0 +170766740760,214,0 +170766740808,215,0 +170766740857,215,0 +170766740907,215,0 +170766740956,215,0 +170766741004,215,0 +170766741052,215,0 +170766741100,215,0 +170766741149,215,0 +170766741199,215,0 +170766741247,215,0 +170766741294,215,0 +170766741342,214,0 +170766741390,214,0 +170766741438,215,0 +170766741486,215,0 +170766741535,214,0 +170766741583,215,0 +170766741631,215,0 +170766741680,215,0 +170766741728,215,0 +170766741777,215,0 +170766741825,215,0 +170766741873,215,0 +170766741921,215,0 +170766741969,215,0 +170766742018,215,0 +170766742068,214,0 +170766742116,213,0 +170766742164,213,0 +170766742212,214,0 +170766742261,214,0 +170766742311,214,0 +170766742360,214,0 +170766742408,214,0 +170766742457,214,0 +170766742505,215,0 +170766742553,214,0 +170766742601,214,0 +170766742649,215,0 +170766742697,215,0 +170766742745,215,0 +170766742793,215,0 +170766742840,215,0 +170766742888,214,0 +170766742936,213,0 +170766742984,213,0 +170766743032,214,0 +170766743080,214,0 +170766743128,214,0 +170766743175,214,0 +170766743225,214,0 +170766743274,214,0 +170766743322,214,0 +170766743370,215,0 +170766743418,215,0 +170766743466,215,0 +170766743516,215,0 +170766743564,215,0 +170766743611,215,0 +170766743659,215,0 +170766743707,214,0 +170766743755,213,0 +170766743803,214,0 +170766743851,213,0 +170766743899,214,0 +170766743946,214,0 +170766743994,214,0 +170766744042,214,0 +170766744090,214,0 +170766744138,215,0 +170766744185,215,0 +170766744233,215,0 +170766744281,215,0 +170766744329,215,0 +170766744378,215,0 +170766744426,215,0 +170766744474,215,0 +170766744522,214,0 +170766744569,214,0 +170766744617,214,0 +170766744665,214,0 +170766744713,215,0 +170766744761,215,0 +170766744809,215,0 +170766744856,215,0 +170766744904,215,0 +170766744952,215,0 +170766745000,215,0 +170766745048,215,0 +170766745096,215,0 +170766745143,215,0 +170766745191,215,0 +170766745239,215,0 +170766745287,214,0 +170766745335,214,0 +170766745382,214,0 +170766745430,215,0 +170766745478,215,0 +170766745526,215,0 +170766745574,215,0 +170766745622,215,0 +170766745670,215,0 +170766745719,215,0 +170766745767,215,0 +170766745816,215,0 +170766745865,215,0 +170766745913,215,0 +170766745961,215,0 +170766746010,215,0 +170766746058,215,0 +170766746106,214,0 +170766746154,214,0 +170766746202,214,0 +170766746249,214,0 +170766746297,214,0 +170766746345,214,0 +170766746393,215,0 +170766746441,215,0 +170766746488,215,0 +170766746536,215,0 +170766746584,215,0 +170766746632,215,0 +170766746680,215,0 +170766746727,215,0 +170766746775,215,0 +170766746823,215,0 +170766746871,215,0 +170766746920,213,0 +170766746968,213,0 +170766747016,213,0 +170766747064,214,0 +170766747112,214,0 +170766747160,214,0 +170766747207,214,0 +170766747255,214,0 +170766747303,214,0 +170766747351,215,0 +170766747399,215,0 +170766747447,215,0 +170766747494,215,0 +170766747544,215,0 +170766747592,215,0 +170766747639,215,0 +170766747687,215,0 +170766747735,213,0 +170766747783,213,0 +170766747831,214,0 +170766747879,214,0 +170766747928,214,0 +170766747976,214,0 +170766748024,214,0 +170766748072,215,0 +170766748121,215,0 +170766748171,215,0 +170766748220,215,0 +170766748270,215,0 +170766748319,215,0 +170766748367,215,0 +170766748415,215,0 +170766748463,215,0 +170766748511,213,0 +170766748559,213,0 +170766748609,213,0 +170766748656,213,0 +170766748706,214,0 +170766748754,214,0 +170766748802,214,0 +170766748850,214,0 +170766748899,214,0 +170766748947,214,0 +170766748997,215,0 +170766749045,215,0 +170766749093,215,0 +170766749141,215,0 +170766749189,215,0 +170766749238,215,0 +170766749286,215,0 +170766749334,213,0 +170766749383,213,0 +170766749431,213,0 +170766749481,213,0 +170766749529,214,0 +170766749577,214,0 +170766749625,214,0 +170766749673,214,0 +170766749721,214,0 +170766749769,214,0 +170766749818,215,0 +170766749868,215,0 +170766749916,215,0 +170766749964,215,0 +170766750013,215,0 +170766750063,215,0 +170766750110,213,0 +170766750160,213,0 +170766750208,213,0 +170766750256,213,0 +170766750304,213,0 +170766750352,213,0 +170766750401,214,0 +170766750449,214,0 +170766750497,214,0 +170766750547,214,0 +170766750595,215,0 +170766750643,215,0 +170766750690,215,0 +170766750738,215,0 +170766750786,215,0 +170766750836,215,0 +170766750884,215,0 +170766750932,213,0 +170766750981,213,0 +170766751031,213,0 +170766751079,213,0 +170766751127,213,0 +170766751175,213,0 +170766751223,214,0 +170766751270,214,0 +170766751318,214,0 +170766751366,214,0 +170766751414,214,0 +170766751464,215,0 +170766751512,214,0 +170766751559,215,0 +170766751609,215,0 +170766751658,215,0 +170766751706,215,0 +170766751754,215,0 +170766751804,215,0 +170766751852,215,0 +170766751900,215,0 +170766751947,215,0 +170766751995,215,0 +170766752043,215,0 +170766752091,215,0 +170766752141,213,0 +170766752189,214,0 +170766752237,214,0 +170766752286,214,0 +170766752334,214,0 +170766752382,214,0 +170766752432,214,0 +170766752481,215,0 +170766752529,215,0 +170766752578,215,0 +170766752628,215,0 +170766752677,215,0 +170766752725,216,0 +170766752773,215,0 +170766752821,215,0 +170766752869,215,0 +170766752917,215,0 +170766752965,214,0 +170766753012,214,0 +170766753060,215,0 +170766753108,215,0 +170766753156,215,0 +170766753204,215,0 +170766753252,215,0 +170766753302,215,0 +170766753349,215,0 +170766753397,215,0 +170766753445,215,0 +170766753495,216,0 +170766753543,215,0 +170766753591,215,0 +170766753638,215,0 +170766753686,215,0 +170766753734,215,0 +170766753782,215,0 +170766753830,215,0 +170766753878,215,0 +170766753926,215,0 +170766753973,215,0 +170766754021,215,0 +170766754069,215,0 +170766754117,216,0 +170766754165,215,0 +170766754213,215,0 +170766754262,215,0 +170766754311,215,0 +170766754361,215,0 +170766754409,215,0 +170766754457,215,0 +170766754504,214,0 +170766754552,214,0 +170766754600,214,0 +170766754648,214,0 +170766754697,215,0 +170766754745,215,0 +170766754793,215,0 +170766754841,215,0 +170766754889,215,0 +170766754937,215,0 +170766754984,215,0 +170766755034,215,0 +170766755082,215,0 +170766755130,215,0 +170766755177,215,0 +170766755225,215,0 +170766755273,215,0 +170766755321,214,0 +170766755369,214,0 +170766755418,214,0 +170766755466,214,0 +170766755514,214,0 +170766755562,214,0 +170766755610,214,0 +170766755658,214,0 +170766755706,214,0 +170766755755,215,0 +170766755804,215,0 +170766755854,215,0 +170766755902,215,0 +170766755950,215,0 +170766755999,215,0 +170766756049,215,0 +170766756097,215,0 +170766756146,214,0 +170766756194,214,0 +170766756242,214,0 +170766756290,214,0 +170766756339,214,0 +170766756387,215,0 +170766756437,214,0 +170766756485,215,0 +170766756534,215,0 +170766756582,215,0 +170766756630,215,0 +170766756680,216,0 +170766756728,215,0 +170766756777,215,0 +170766756826,215,0 +170766756876,215,0 +170766756924,214,0 +170766756972,214,0 +170766757020,215,0 +170766757068,214,0 +170766757116,215,0 +170766757164,215,0 +170766757213,215,0 +170766757261,215,0 +170766757311,215,0 +170766757360,215,0 +170766757410,215,0 +170766757457,215,0 +170766757505,215,0 +170766757553,215,0 +170766757601,215,0 +170766757649,215,0 +170766757697,215,0 +170766757745,215,0 +170766757793,215,0 +170766757841,215,0 +170766757888,215,0 +170766757936,215,0 +170766757984,215,0 +170766758032,215,0 +170766758080,215,0 +170766758128,215,0 +170766758175,215,0 +170766758223,215,0 +170766758271,215,0 +170766758319,215,0 +170766758367,215,0 +170766758415,215,0 +170766758463,215,0 +170766758511,215,0 +170766758560,214,0 +170766758608,214,0 +170766758656,214,0 +170766758704,214,0 +170766758751,214,0 +170766758799,214,0 +170766758847,215,0 +170766758895,215,0 +170766758943,215,0 +170766758991,215,0 +170766759040,215,0 +170766759088,215,0 +170766759136,215,0 +170766759185,216,0 +170766759233,215,0 +170766759281,215,0 +170766759331,215,0 +170766759380,213,0 +170766759428,213,0 +170766759476,214,0 +170766759524,214,0 +170766759572,214,0 +170766759620,214,0 +170766759668,214,0 +170766759716,214,0 +170766759764,215,0 +170766759813,214,0 +170766759861,215,0 +170766759909,215,0 +170766759958,215,0 +170766760006,215,0 +170766760056,215,0 +170766760105,215,0 +170766760153,213,0 +170766760203,213,0 +170766760252,213,0 +170766760300,214,0 +170766760349,213,0 +170766760397,214,0 +170766760445,214,0 +170766760493,214,0 +170766760541,215,0 +170766760589,215,0 +170766760637,215,0 +170766760686,215,0 +170766760734,215,0 +170766760782,215,0 +170766760830,215,0 +170766760878,215,0 +170766760926,215,0 +170766760974,213,0 +170766761023,213,0 +170766761071,213,0 +170766761121,214,0 +170766761169,214,0 +170766761217,214,0 +170766761265,214,0 +170766761314,214,0 +170766761362,215,0 +170766761410,215,0 +170766761458,215,0 +170766761507,215,0 +170766761557,215,0 +170766761605,215,0 +170766761653,215,0 +170766761701,215,0 +170766761748,214,0 +170766761796,213,0 +170766761844,213,0 +170766761892,213,0 +170766761940,214,0 +170766761988,214,0 +170766762036,214,0 +170766762084,214,0 +170766762132,214,0 +170766762180,214,0 +170766762227,214,0 +170766762275,215,0 +170766762323,215,0 +170766762371,215,0 +170766762419,215,0 +170766762467,215,0 +170766762515,215,0 +170766762563,213,0 +170766762611,213,0 +170766762658,213,0 +170766762706,213,0 +170766762754,213,0 +170766762802,214,0 +170766762850,214,0 +170766762898,214,0 +170766762946,214,0 +170766762994,215,0 +170766763042,215,0 +170766763091,215,0 +170766763139,215,0 +170766763187,215,0 +170766763235,215,0 +170766763283,215,0 +170766763332,215,0 +170766763382,213,0 +170766763431,213,0 +170766763479,213,0 +170766763527,213,0 +170766763577,213,0 +170766763625,214,0 +170766763672,214,0 +170766763720,214,0 +170766763768,214,0 +170766763816,214,0 +170766763866,215,0 +170766763914,215,0 +170766763961,215,0 +170766764009,215,0 +170766764057,215,0 +170766764105,215,0 +170766764153,214,0 +170766764201,213,0 +170766764250,213,0 +170766764298,213,0 +170766764346,213,0 +170766764394,214,0 +170766764442,214,0 +170766764491,214,0 +170766764539,214,0 +170766764587,215,0 +170766764635,215,0 +170766764684,215,0 +170766764734,215,0 +170766764783,215,0 +170766764831,215,0 +170766764879,215,0 +170766764927,215,0 +170766764975,214,0 +170766765023,214,0 +170766765071,214,0 +170766765119,214,0 +170766765167,214,0 +170766765215,214,0 +170766765264,214,0 +170766765312,215,0 +170766765360,215,0 +170766765408,215,0 +170766765456,215,0 +170766765505,215,0 +170766765555,215,0 +170766765603,215,0 +170766765651,215,0 +170766765698,215,0 +170766765746,215,0 +170766765794,214,0 +170766765842,214,0 +170766765891,214,0 +170766765940,214,0 +170766765988,214,0 +170766766038,215,0 +170766766087,214,0 +170766766135,215,0 +170766766183,215,0 +170766766231,215,0 +170766766281,215,0 +170766766330,215,0 +170766766380,215,0 +170766766428,215,0 +170766766475,215,0 +170766766525,215,0 +170766766573,214,0 +170766766622,214,0 +170766766672,214,0 +170766766720,214,0 +170766766768,214,0 +170766766816,214,0 +170766766864,214,0 +170766766912,215,0 +170766766960,215,0 +170766767009,215,0 +170766767057,215,0 +170766767105,215,0 +170766767153,215,0 +170766767200,215,0 +170766767248,215,0 +170766767296,215,0 +170766767344,215,0 +170766767393,214,0 +170766767441,214,0 +170766767489,214,0 +170766767537,214,0 +170766767584,214,0 +170766767632,215,0 +170766767680,214,0 +170766767728,215,0 +170766767776,215,0 +170766767823,215,0 +170766767871,215,0 +170766767919,215,0 +170766767969,215,0 +170766768018,215,0 +170766768067,215,0 +170766768115,215,0 +170766768163,215,0 +170766768211,214,0 +170766768259,214,0 +170766768306,214,0 +170766768354,214,0 +170766768404,214,0 +170766768452,214,0 +170766768499,215,0 +170766768547,215,0 +170766768595,215,0 +170766768643,215,0 +170766768690,215,0 +170766768738,215,0 +170766768786,215,0 +170766768834,215,0 +170766768882,216,0 +170766768930,215,0 +170766768978,215,0 +170766769025,214,0 +170766769073,214,0 +170766769121,215,0 +170766769169,215,0 +170766769217,215,0 +170766769265,215,0 +170766769313,215,0 +170766769360,215,0 +170766769408,215,0 +170766769456,215,0 +170766769504,215,0 +170766769552,216,0 +170766769600,215,0 +170766769647,215,0 +170766769695,215,0 +170766769743,215,0 +170766769791,214,0 +170766769839,214,0 +170766769887,215,0 +170766769936,215,0 +170766769984,215,0 +170766770032,215,0 +170766770080,215,0 +170766770128,215,0 +170766770176,215,0 +170766770223,215,0 +170766770271,215,0 +170766770319,215,0 +170766770367,215,0 +170766770415,215,0 +170766770463,215,0 +170766770511,216,0 +170766770559,215,0 +170766770606,213,0 +170766770654,214,0 +170766770702,214,0 +170766770752,214,0 +170766770799,215,0 +170766770847,214,0 +170766770895,214,0 +170766770943,215,0 +170766770991,215,0 +170766771039,215,0 +170766771087,215,0 +170766771137,215,0 +170766771186,215,0 +170766771234,215,0 +170766771282,215,0 +170766771330,215,0 +170766771378,215,0 +170766771425,213,0 +170766771473,213,0 +170766771521,213,0 +170766771569,214,0 +170766771617,214,0 +170766771665,214,0 +170766771714,214,0 +170766771764,215,0 +170766771812,215,0 +170766771859,215,0 +170766771908,215,0 +170766771955,215,0 +170766772005,215,0 +170766772053,215,0 +170766772102,215,0 +170766772150,215,0 +170766772200,214,0 +170766772248,213,0 +170766772296,213,0 +170766772345,214,0 +170766772393,214,0 +170766772441,214,0 +170766772489,214,0 +170766772537,215,0 +170766772585,214,0 +170766772632,215,0 +170766772680,215,0 +170766772728,215,0 +170766772776,216,0 +170766772824,215,0 +170766772872,215,0 +170766772920,215,0 +170766772967,215,0 +170766773015,214,0 +170766773063,213,0 +170766773111,214,0 +170766773160,214,0 +170766773208,214,0 +170766773256,214,0 +170766773303,214,0 +170766773351,214,0 +170766773399,215,0 +170766773447,215,0 +170766773495,215,0 +170766773542,215,0 +170766773590,215,0 +170766773638,215,0 +170766773686,215,0 +170766773734,215,0 +170766773783,215,0 +170766773833,213,0 +170766773882,213,0 +170766773932,214,0 +170766773980,213,0 +170766774027,214,0 +170766774075,214,0 +170766774123,214,0 +170766774171,214,0 +170766774219,215,0 +170766774269,215,0 +170766774316,215,0 +170766774366,215,0 +170766774414,215,0 +170766774463,215,0 +170766774511,215,0 +170766774559,215,0 +170766774607,214,0 +170766774655,213,0 +170766774703,214,0 +170766774751,214,0 +170766774798,214,0 +170766774846,214,0 +170766774894,215,0 +170766774942,214,0 +170766774990,215,0 +170766775038,215,0 +170766775087,215,0 +170766775135,215,0 +170766775183,215,0 +170766775231,215,0 +170766775279,215,0 +170766775327,215,0 +170766775375,215,0 +170766775423,213,0 +170766775471,213,0 +170766775518,214,0 +170766775568,213,0 +170766775616,214,0 +170766775664,214,0 +170766775712,214,0 +170766775759,214,0 +170766775807,215,0 +170766775855,215,0 +170766775903,215,0 +170766775951,215,0 +170766776000,215,0 +170766776048,215,0 +170766776096,215,0 +170766776144,215,0 +170766776194,215,0 +170766776241,213,0 +170766776289,213,0 +170766776337,213,0 +170766776385,214,0 +170766776434,214,0 +170766776484,214,0 +170766776534,215,0 +170766776581,214,0 +170766776629,215,0 +170766776677,215,0 +170766776725,215,0 +170766776773,215,0 +170766776821,215,0 +170766776871,215,0 +170766776919,215,0 +170766776968,215,0 +170766777016,214,0 +170766777066,214,0 +170766777113,214,0 +170766777163,214,0 +170766777211,214,0 +170766777260,215,0 +170766777308,215,0 +170766777357,215,0 +170766777405,215,0 +170766777455,215,0 +170766777503,215,0 +170766777551,215,0 +170766777599,215,0 +170766777646,215,0 +170766777694,215,0 +170766777742,215,0 +170766777790,215,0 +170766777840,214,0 +170766777887,215,0 +170766777935,215,0 +170766777983,215,0 +170766778033,215,0 +170766778081,215,0 +170766778129,215,0 +170766778178,215,0 +170766778226,215,0 +170766778274,215,0 +170766778322,216,0 +170766778370,215,0 +170766778417,216,0 +170766778467,216,0 +170766778515,215,0 +170766778564,215,0 +170766778612,214,0 +170766778660,214,0 +170766778708,214,0 +170766778756,213,0 +170766778803,214,0 +170766778851,214,0 +170766778899,215,0 +170766778947,215,0 +170766778997,215,0 +170766779044,215,0 +170766779092,215,0 +170766779140,215,0 +170766779189,216,0 +170766779237,215,0 +170766779285,215,0 +170766779333,215,0 +170766779381,215,0 +170766779430,215,0 +170766779480,214,0 +170766779528,214,0 +170766779576,214,0 +170766779623,214,0 +170766779671,214,0 +170766779719,214,0 +170766779767,214,0 +170766779815,214,0 +170766779863,215,0 +170766779910,215,0 +170766779958,215,0 +170766780006,215,0 +170766780054,215,0 +170766780102,215,0 +170766780149,215,0 +170766780197,215,0 +170766780245,214,0 +170766780293,213,0 +170766780341,214,0 +170766780388,214,0 +170766780438,214,0 +170766780486,214,0 +170766780533,214,0 +170766780581,214,0 +170766780629,215,0 +170766780677,215,0 +170766780725,215,0 +170766780773,215,0 +170766780821,215,0 +170766780870,215,0 +170766780918,215,0 +170766780966,215,0 +170766781014,215,0 +170766781062,214,0 +170766781110,214,0 +170766781158,214,0 +170766781206,214,0 +170766781253,214,0 +170766781301,214,0 +170766781349,214,0 +170766781397,214,0 +170766781447,215,0 +170766781496,215,0 +170766781544,215,0 +170766781592,215,0 +170766781640,215,0 +170766781689,215,0 +170766781737,215,0 +170766781785,215,0 +170766781833,214,0 +170766781883,214,0 +170766781931,214,0 +170766781978,214,0 +170766782028,214,0 +170766782077,215,0 +170766782127,215,0 +170766782175,215,0 +170766782223,215,0 +170766782271,215,0 +170766782319,215,0 +170766782368,215,0 +170766782416,216,0 +170766782466,215,0 +170766782513,216,0 +170766782561,215,0 +170766782609,215,0 +170766782657,214,0 +170766782705,214,0 +170766782755,214,0 +170766782802,214,0 +170766782852,214,0 +170766782900,214,0 +170766782949,215,0 +170766782997,214,0 +170766783045,215,0 +170766783093,215,0 +170766783141,215,0 +170766783189,215,0 +170766783237,215,0 +170766783286,216,0 +170766783336,215,0 +170766783386,215,0 +170766783434,213,0 +170766783483,213,0 +170766783531,213,0 +170766783581,214,0 +170766783630,214,0 +170766783678,214,0 +170766783726,214,0 +170766783774,214,0 +170766783823,214,0 +170766783873,214,0 +170766783921,215,0 +170766783969,215,0 +170766784017,215,0 +170766784065,215,0 +170766784113,215,0 +170766784161,214,0 +170766784210,215,0 +170766784258,213,0 +170766784308,214,0 +170766784356,213,0 +170766784405,214,0 +170766784453,214,0 +170766784503,214,0 +170766784551,214,0 +170766784599,214,0 +170766784648,215,0 +170766784696,215,0 +170766784744,215,0 +170766784792,215,0 +170766784841,215,0 +170766784889,215,0 +170766784937,215,0 +170766784985,215,0 +170766785034,215,0 +170766785082,214,0 +170766785132,214,0 +170766785180,213,0 +170766785227,214,0 +170766785275,214,0 +170766785323,214,0 +170766785371,214,0 +170766785419,215,0 +170766785467,215,0 +170766785515,215,0 +170766785564,215,0 +170766785612,215,0 +170766785660,215,0 +170766785708,215,0 +170766785758,216,0 +170766785807,215,0 +170766785855,214,0 +170766785904,214,0 +170766785954,214,0 +170766786003,214,0 +170766786053,215,0 +170766786101,215,0 +170766786149,215,0 +170766786197,215,0 +170766786245,215,0 +170766786294,215,0 +170766786344,215,0 +170766786392,216,0 +170766786440,215,0 +170766786488,215,0 +170766786537,215,0 +170766786587,215,0 +170766786634,215,0 +170766786682,214,0 +170766786732,214,0 +170766786780,214,0 +170766786828,214,0 +170766786875,215,0 +170766786923,215,0 +170766786971,215,0 +170766787019,215,0 +170766787067,215,0 +170766787116,215,0 +170766787164,215,0 +170766787214,215,0 +170766787262,215,0 +170766787309,215,0 +170766787357,215,0 +170766787407,215,0 +170766787455,214,0 +170766787503,214,0 +170766787552,214,0 +170766787600,214,0 +170766787650,214,0 +170766787699,214,0 +170766787747,215,0 +170766787796,215,0 +170766787844,214,0 +170766787892,215,0 +170766787942,215,0 +170766787990,215,0 +170766788038,215,0 +170766788087,215,0 +170766788135,215,0 +170766788183,215,0 +170766788231,215,0 +170766788280,213,0 +170766788330,213,0 +170766788378,213,0 +170766788425,213,0 +170766788475,214,0 +170766788523,214,0 +170766788571,214,0 +170766788619,214,0 +170766788666,215,0 +170766788714,215,0 +170766788762,215,0 +170766788810,215,0 +170766788858,215,0 +170766788908,215,0 +170766788955,215,0 +170766789003,215,0 +170766789051,215,0 +170766789099,213,0 +170766789147,213,0 +170766789196,213,0 +170766789244,213,0 +170766789292,214,0 +170766789340,214,0 +170766789388,214,0 +170766789436,214,0 +170766789484,214,0 +170766789532,215,0 +170766789580,215,0 +170766789628,215,0 +170766789676,215,0 +170766789723,215,0 +170766789771,215,0 +170766789819,215,0 +170766789867,214,0 +170766789917,214,0 +170766789965,214,0 +170766790013,214,0 +170766790061,214,0 +170766790109,215,0 +170766790157,215,0 +170766790204,215,0 +170766790252,215,0 +170766790300,215,0 +170766790348,215,0 +170766790397,215,0 +170766790445,215,0 +170766790493,215,0 +170766790541,215,0 +170766790588,215,0 +170766790636,215,0 +170766790684,214,0 +170766790732,214,0 +170766790780,214,0 +170766790827,214,0 +170766790875,214,0 +170766790925,215,0 +170766790973,215,0 +170766791022,215,0 +170766791070,215,0 +170766791118,215,0 +170766791166,215,0 +170766791214,215,0 +170766791262,215,0 +170766791309,215,0 +170766791357,215,0 +170766791407,215,0 +170766791455,215,0 +170766791504,213,0 +170766791552,213,0 +170766791602,214,0 +170766791649,214,0 +170766791697,214,0 +170766791745,214,0 +170766791793,214,0 +170766791841,214,0 +170766791889,215,0 +170766791937,215,0 +170766791985,215,0 +170766792032,215,0 +170766792080,215,0 +170766792128,216,0 +170766792176,216,0 +170766792224,215,0 +170766792272,215,0 +170766792319,213,0 +170766792367,214,0 +170766792415,214,0 +170766792463,214,0 +170766792511,214,0 +170766792559,214,0 +170766792607,214,0 +170766792654,215,0 +170766792702,215,0 +170766792750,215,0 +170766792798,215,0 +170766792846,215,0 +170766792893,215,0 +170766792941,215,0 +170766792989,215,0 +170766793037,215,0 +170766793085,214,0 +170766793133,214,0 +170766793180,214,0 +170766793228,214,0 +170766793276,214,0 +170766793324,214,0 +170766793372,214,0 +170766793420,215,0 +170766793467,215,0 +170766793515,215,0 +170766793563,215,0 +170766793611,215,0 +170766793659,215,0 +170766793708,215,0 +170766793756,215,0 +170766793804,215,0 +170766793852,215,0 +170766793901,215,0 +170766793949,214,0 +170766793997,215,0 +170766794045,215,0 +170766794093,215,0 +170766794140,215,0 +170766794190,215,0 +170766794238,215,0 +170766794286,215,0 +170766794333,215,0 +170766794381,216,0 +170766794431,214,0 +170766794479,215,0 +170766794526,216,0 +170766794574,215,0 +170766794622,215,0 +170766794670,215,0 +170766794718,214,0 +170766794765,215,0 +170766794813,214,0 +170766794861,214,0 +170766794909,215,0 +170766794958,215,0 +170766795006,215,0 +170766795054,215,0 +170766795102,215,0 +170766795151,215,0 +170766795199,215,0 +170766795247,215,0 +170766795295,215,0 +170766795343,216,0 +170766795391,215,0 +170766795439,215,0 +170766795486,215,0 +170766795534,214,0 +170766795582,214,0 +170766795630,214,0 +170766795678,214,0 +170766795726,214,0 +170766795773,214,0 +170766795821,215,0 +170766795869,215,0 +170766795917,215,0 +170766795965,215,0 +170766796013,215,0 +170766796061,216,0 +170766796109,215,0 +170766796157,215,0 +170766796205,215,0 +170766796252,215,0 +170766796300,214,0 +170766796348,214,0 +170766796396,214,0 +170766796444,214,0 +170766796492,214,0 +170766796539,215,0 +170766796587,215,0 +170766796635,215,0 +170766796683,215,0 +170766796731,215,0 +170766796781,215,0 +170766796830,216,0 +170766796878,216,0 +170766796926,216,0 +170766796973,215,0 +170766797023,215,0 +170766797071,215,0 +170766797119,214,0 +170766797166,214,0 +170766797214,214,0 +170766797264,214,0 +170766797311,214,0 +170766797359,215,0 +170766797407,215,0 +170766797455,215,0 +170766797504,215,0 +170766797554,215,0 +170766797602,215,0 +170766797649,215,0 +170766797697,215,0 +170766797745,215,0 +170766797793,215,0 +170766797841,215,0 +170766797890,215,0 +170766797938,213,0 +170766797986,213,0 +170766798034,214,0 +170766798082,214,0 +170766798129,214,0 +170766798177,214,0 +170766798225,214,0 +170766798273,214,0 +170766798321,214,0 +170766798368,215,0 +170766798416,215,0 +170766798464,215,0 +170766798514,215,0 +170766798561,215,0 +170766798609,215,0 +170766798657,215,0 +170766798705,215,0 +170766798753,213,0 +170766798802,213,0 +170766798852,213,0 +170766798901,214,0 +170766798949,213,0 +170766798997,214,0 +170766799045,214,0 +170766799093,214,0 +170766799140,215,0 +170766799188,215,0 +170766799236,215,0 +170766799284,215,0 +170766799332,215,0 +170766799380,215,0 +170766799427,215,0 +170766799475,215,0 +170766799523,213,0 +170766799571,213,0 +170766799619,213,0 +170766799667,213,0 +170766799716,213,0 +170766799764,214,0 +170766799812,214,0 +170766799860,214,0 +170766799910,214,0 +170766799958,214,0 +170766800005,215,0 +170766800053,215,0 +170766800101,215,0 +170766800149,215,0 +170766800197,215,0 +170766800245,215,0 +170766800295,215,0 +170766800344,213,0 +170766800392,213,0 +170766800440,213,0 +170766800489,214,0 +170766800537,213,0 +170766800585,214,0 +170766800633,214,0 +170766800681,213,0 +170766800729,214,0 +170766800777,214,0 +170766800826,215,0 +170766800876,214,0 +170766800923,214,0 +170766800971,215,0 +170766801019,215,0 +170766801067,215,0 +170766801115,215,0 +170766801163,213,0 +170766801211,213,0 +170766801260,213,0 +170766801308,214,0 +170766801356,214,0 +170766801404,214,0 +170766801452,214,0 +170766801499,214,0 +170766801547,214,0 +170766801595,215,0 +170766801643,215,0 +170766801691,215,0 +170766801739,215,0 +170766801788,215,0 +170766801836,215,0 +170766801884,215,0 +170766801932,214,0 +170766801980,214,0 +170766802028,214,0 +170766802076,214,0 +170766802123,214,0 +170766802171,214,0 +170766802221,215,0 +170766802269,215,0 +170766802316,215,0 +170766802364,215,0 +170766802412,215,0 +170766802460,215,0 +170766802508,215,0 +170766802556,215,0 +170766802604,215,0 +170766802652,215,0 +170766802699,215,0 +170766802747,214,0 +170766802797,214,0 +170766802845,214,0 +170766802893,214,0 +170766802941,214,0 +170766802989,215,0 +170766803038,215,0 +170766803086,215,0 +170766803134,215,0 +170766803182,215,0 +170766803230,215,0 +170766803278,215,0 +170766803326,215,0 +170766803374,215,0 +170766803423,215,0 +170766803471,215,0 +170766803521,215,0 +170766803569,213,0 +170766803618,214,0 +170766803666,214,0 +170766803716,214,0 +170766803764,214,0 +170766803812,214,0 +170766803861,214,0 +170766803909,214,0 +170766803957,215,0 +170766804005,215,0 +170766804053,215,0 +170766804102,215,0 +170766804150,215,0 +170766804198,215,0 +170766804247,215,0 +170766804295,215,0 +170766804343,214,0 +170766804391,214,0 +170766804439,214,0 +170766804487,214,0 +170766804535,214,0 +170766804582,214,0 +170766804630,214,0 +170766804678,214,0 +170766804726,215,0 +170766804774,215,0 +170766804823,215,0 +170766804873,215,0 +170766804921,215,0 +170766804969,215,0 +170766805016,215,0 +170766805064,215,0 +170766805112,215,0 +170766805160,214,0 +170766805208,214,0 +170766805256,214,0 +170766805304,214,0 +170766805352,214,0 +170766805401,214,0 +170766805449,215,0 +170766805499,215,0 +170766805547,215,0 +170766805595,215,0 +170766805643,215,0 +170766805691,215,0 +170766805740,215,0 +170766805790,216,0 +170766805838,216,0 +170766805885,215,0 +170766805933,215,0 +170766805983,215,0 +170766806031,214,0 +170766806080,215,0 +170766806128,215,0 +170766806176,215,0 +170766806224,215,0 +170766806274,215,0 +170766806322,216,0 +170766806370,215,0 +170766806418,215,0 +170766806466,216,0 +170766806513,215,0 +170766806563,215,0 +170766806611,215,0 +170766806659,215,0 +170766806707,215,0 +170766806756,215,0 +170766806806,214,0 +170766806854,215,0 +170766806902,215,0 +170766806951,215,0 +170766807001,215,0 +170766807048,215,0 +170766807098,215,0 +170766807146,215,0 +170766807195,215,0 +170766807243,216,0 +170766807291,215,0 +170766807341,215,0 +170766807389,215,0 +170766807437,216,0 +170766807484,215,0 +170766807532,215,0 +170766807580,213,0 +170766807628,214,0 +170766807678,214,0 +170766807727,214,0 +170766807775,214,0 +170766807825,215,0 +170766807872,215,0 +170766807920,215,0 +170766807968,215,0 +170766808016,215,0 +170766808066,215,0 +170766808113,215,0 +170766808163,215,0 +170766808211,215,0 +170766808259,215,0 +170766808306,215,0 +170766808354,215,0 +170766808402,214,0 +170766808450,214,0 +170766808498,214,0 +170766808545,214,0 +170766808593,214,0 +170766808641,214,0 +170766808689,215,0 +170766808737,215,0 +170766808786,215,0 +170766808834,215,0 +170766808882,215,0 +170766808930,215,0 +170766808980,215,0 +170766809028,215,0 +170766809076,215,0 +170766809125,215,0 +170766809174,214,0 +170766809222,213,0 +170766809270,214,0 +170766809318,214,0 +170766809366,214,0 +170766809416,214,0 +170766809465,214,0 +170766809515,215,0 +170766809564,215,0 +170766809612,215,0 +170766809660,215,0 +170766809710,215,0 +170766809758,215,0 +170766809806,215,0 +170766809854,215,0 +170766809903,215,0 +170766809953,214,0 +170766810000,213,0 +170766810050,213,0 +170766810099,214,0 +170766810149,214,0 +170766810197,214,0 +170766810246,214,0 +170766810296,214,0 +170766810345,215,0 +170766810393,215,0 +170766810441,215,0 +170766810489,215,0 +170766810538,215,0 +170766810586,215,0 +170766810634,215,0 +170766810682,215,0 +170766810730,215,0 +170766810777,213,0 +170766810825,213,0 +170766810873,213,0 +170766810921,213,0 +170766810969,213,0 +170766811017,213,0 +170766811065,214,0 +170766811113,214,0 +170766811160,214,0 +170766811208,215,0 +170766811256,215,0 +170766811304,214,0 +170766811352,215,0 +170766811399,215,0 +170766811447,215,0 +170766811497,215,0 +170766811545,215,0 +170766811593,213,0 +170766811641,213,0 +170766811688,213,0 +170766811738,213,0 +170766811786,213,0 +170766811834,213,0 +170766811882,214,0 +170766811929,214,0 +170766811977,214,0 +170766812027,214,0 +170766812075,214,0 +170766812124,215,0 +170766812172,214,0 +170766812222,214,0 +170766812269,214,0 +170766812317,214,0 +170766812366,214,0 +170766812413,213,0 +170766812461,213,0 +170766812509,213,0 +170766812557,213,0 +170766812605,213,0 +170766812653,213,0 +170766812700,214,0 +170766812748,214,0 +170766812796,214,0 +170766812844,214,0 +170766812893,214,0 +170766812941,215,0 +170766812989,215,0 +170766813037,215,0 +170766813084,215,0 +170766813132,215,0 +170766813180,213,0 +170766813228,213,0 +170766813276,213,0 +170766813324,213,0 +170766813373,213,0 +170766813421,214,0 +170766813469,214,0 +170766813517,214,0 +170766813564,214,0 +170766813612,214,0 +170766813660,214,0 +170766813708,215,0 +170766813756,214,0 +170766813804,215,0 +170766813852,215,0 +170766813900,215,0 +170766813948,215,0 +170766813997,214,0 +170766814047,214,0 +170766814096,214,0 +170766814145,214,0 +170766814195,214,0 +170766814244,214,0 +170766814292,214,0 +170766814340,215,0 +170766814390,215,0 +170766814439,215,0 +170766814487,215,0 +170766814535,215,0 +170766814583,215,0 +170766814630,215,0 +170766814678,215,0 +170766814726,215,0 +170766814774,214,0 +170766814822,214,0 +170766814870,214,0 +170766814918,214,0 +170766814966,214,0 +170766815013,214,0 +170766815061,215,0 +170766815109,215,0 +170766815157,215,0 +170766815205,215,0 +170766815253,215,0 +170766815301,215,0 +170766815348,215,0 +170766815396,215,0 +170766815444,215,0 +170766815492,215,0 +170766815541,215,0 +170766815589,214,0 +170766815637,214,0 +170766815685,214,0 +170766815733,214,0 +170766815780,214,0 +170766815828,214,0 +170766815876,214,0 +170766815926,214,0 +170766815974,214,0 +170766816021,214,0 +170766816071,215,0 +170766816119,215,0 +170766816167,214,0 +170766816216,215,0 +170766816264,215,0 +170766816314,215,0 +170766816363,215,0 +170766816411,214,0 +170766816461,213,0 +170766816509,214,0 +170766816557,214,0 +170766816605,214,0 +170766816654,214,0 +170766816702,214,0 +170766816750,214,0 +170766816800,214,0 +170766816848,215,0 +170766816896,215,0 +170766816944,215,0 +170766816993,215,0 +170766817042,215,0 +170766817090,215,0 +170766817138,215,0 +170766817188,215,0 +170766817237,214,0 +170766817285,214,0 +170766817335,214,0 +170766817383,214,0 +170766817431,214,0 +170766817478,214,0 +170766817526,214,0 +170766817574,214,0 +170766817622,215,0 +170766817670,215,0 +170766817718,215,0 +170766817766,215,0 +170766817814,215,0 +170766817862,215,0 +170766817910,215,0 +170766817958,215,0 +170766818006,214,0 +170766818054,214,0 +170766818102,214,0 +170766818149,214,0 +170766818197,214,0 +170766818247,215,0 +170766818295,215,0 +170766818343,215,0 +170766818391,215,0 +170766818438,215,0 +170766818486,215,0 +170766818536,215,0 +170766818585,215,0 +170766818634,215,0 +170766818682,215,0 +170766818732,215,0 +170766818779,215,0 +170766818827,214,0 +170766818875,214,0 +170766818923,214,0 +170766818971,215,0 +170766819020,215,0 +170766819068,215,0 +170766819116,215,0 +170766819163,215,0 +170766819211,215,0 +170766819259,215,0 +170766819307,215,0 +170766819355,215,0 +170766819403,215,0 +170766819450,215,0 +170766819498,215,0 +170766819546,215,0 +170766819596,215,0 +170766819644,214,0 +170766819693,214,0 +170766819741,214,0 +170766819789,214,0 +170766819836,215,0 +170766819884,215,0 +170766819932,215,0 +170766819980,215,0 +170766820028,215,0 +170766820076,215,0 +170766820123,215,0 +170766820171,215,0 +170766820219,215,0 +170766820267,215,0 +170766820315,215,0 +170766820363,215,0 +170766820410,214,0 +170766820458,214,0 +170766820506,214,0 +170766820554,214,0 +170766820602,215,0 +170766820649,214,0 +170766820697,215,0 +170766820745,215,0 +170766820795,215,0 +170766820843,215,0 +170766820890,215,0 +170766820938,215,0 +170766820986,215,0 +170766821035,215,0 +170766821083,215,0 +170766821131,215,0 +170766821179,215,0 +170766821227,214,0 +170766821274,214,0 +170766821322,214,0 +170766821370,214,0 +170766821418,214,0 +170766821466,214,0 +170766821514,215,0 +170766821561,215,0 +170766821609,215,0 +170766821657,215,0 +170766821705,215,0 +170766821753,215,0 +170766821801,215,0 +170766821849,215,0 +170766821896,215,0 +170766821946,215,0 +170766821994,214,0 +170766822041,214,0 +170766822089,214,0 +170766822137,214,0 +170766822185,214,0 +170766822233,214,0 +170766822281,214,0 +170766822328,214,0 +170766822376,214,0 +170766822424,215,0 +170766822472,215,0 +170766822520,215,0 +170766822568,215,0 +170766822615,215,0 +170766822663,215,0 +170766822711,215,0 +170766822759,215,0 +170766822807,214,0 +170766822855,213,0 +170766822903,213,0 +170766822951,213,0 +170766822998,213,0 +170766823046,214,0 +170766823094,214,0 +170766823142,214,0 +170766823190,214,0 +170766823238,214,0 +170766823286,215,0 +170766823333,215,0 +170766823381,215,0 +170766823429,216,0 +170766823477,215,0 +170766823525,215,0 +170766823572,215,0 +170766823620,213,0 +170766823670,213,0 +170766823718,213,0 +170766823767,213,0 +170766823815,214,0 +170766823863,214,0 +170766823911,214,0 +170766823959,214,0 +170766824008,214,0 +170766824056,214,0 +170766824104,215,0 +170766824152,215,0 +170766824201,215,0 +170766824251,215,0 +170766824298,215,0 +170766824346,215,0 +170766824394,215,0 +170766824442,213,0 +170766824490,213,0 +170766824537,214,0 +170766824585,214,0 +170766824633,214,0 +170766824682,214,0 +170766824732,214,0 +170766824780,214,0 +170766824827,215,0 +170766824875,215,0 +170766824923,215,0 +170766824971,215,0 +170766825020,215,0 +170766825068,215,0 +170766825118,215,0 +170766825167,215,0 +170766825215,214,0 +170766825263,214,0 +170766825312,214,0 +170766825360,214,0 +170766825408,214,0 +170766825456,214,0 +170766825505,214,0 +170766825553,215,0 +170766825601,215,0 +170766825649,215,0 +170766825697,215,0 +170766825745,215,0 +170766825793,215,0 +170766825841,215,0 +170766825889,215,0 +170766825936,215,0 +170766825986,215,0 +170766826035,213,0 +170766826083,214,0 +170766826133,214,0 +170766826181,214,0 +170766826229,214,0 +170766826277,215,0 +170766826325,215,0 +170766826374,215,0 +170766826422,215,0 +170766826471,215,0 +170766826519,215,0 +170766826569,215,0 +170766826617,215,0 +170766826665,215,0 +170766826712,215,0 +170766826760,215,0 +170766826808,214,0 +170766826858,214,0 +170766826906,214,0 +170766826954,215,0 +170766827001,215,0 +170766827051,215,0 +170766827100,215,0 +170766827148,215,0 +170766827196,215,0 +170766827244,215,0 +170766827292,215,0 +170766827342,215,0 +170766827391,215,0 +170766827441,215,0 +170766827488,215,0 +170766827536,215,0 +170766827584,215,0 +170766827632,214,0 +170766827680,214,0 +170766827728,214,0 +170766827776,214,0 +170766827824,214,0 +170766827872,215,0 +170766827920,215,0 +170766827968,214,0 +170766828016,215,0 +170766828064,215,0 +170766828112,215,0 +170766828159,215,0 +170766828207,215,0 +170766828255,215,0 +170766828304,215,0 +170766828352,215,0 +170766828400,215,0 +170766828448,213,0 +170766828496,213,0 +170766828543,214,0 +170766828591,214,0 +170766828639,214,0 +170766828687,214,0 +170766828735,214,0 +170766828782,215,0 +170766828832,215,0 +170766828881,215,0 +170766828929,215,0 +170766828977,215,0 +170766829025,215,0 +170766829073,215,0 +170766829122,215,0 +170766829170,215,0 +170766829218,213,0 +170766829266,213,0 +170766829313,213,0 +170766829361,214,0 +170766829409,214,0 +170766829457,214,0 +170766829505,214,0 +170766829553,214,0 +170766829601,214,0 +170766829649,215,0 +170766829698,215,0 +170766829746,215,0 +170766829794,215,0 +170766829842,215,0 +170766829890,215,0 +170766829938,215,0 +170766829986,215,0 +170766830034,213,0 +170766830081,213,0 +170766830131,213,0 +170766830179,213,0 +170766830228,214,0 +170766830276,214,0 +170766830325,214,0 +170766830373,214,0 +170766830421,214,0 +170766830469,215,0 +170766830516,215,0 +170766830564,215,0 +170766830612,215,0 +170766830660,215,0 +170766830708,215,0 +170766830756,215,0 +170766830803,215,0 +170766830851,213,0 +170766830899,214,0 +170766830947,214,0 +170766830995,214,0 +170766831043,214,0 +170766831090,214,0 +170766831138,215,0 +170766831186,215,0 +170766831234,215,0 +170766831284,215,0 +170766831332,215,0 +170766831380,215,0 +170766831429,215,0 +170766831477,215,0 +170766831525,215,0 +170766831573,215,0 +170766831621,214,0 +170766831669,214,0 +170766831716,213,0 +170766831764,214,0 +170766831812,214,0 +170766831860,214,0 +170766831908,214,0 +170766831958,214,0 +170766832007,215,0 +170766832057,215,0 +170766832106,215,0 +170766832154,215,0 +170766832204,215,0 +170766832252,215,0 +170766832300,215,0 +170766832349,215,0 +170766832397,215,0 +170766832447,213,0 +170766832495,213,0 +170766832542,213,0 +170766832590,213,0 +170766832638,214,0 +170766832686,214,0 +170766832734,214,0 +170766832782,214,0 +170766832831,215,0 +170766832881,215,0 +170766832930,215,0 +170766832978,215,0 +170766833028,215,0 +170766833076,215,0 +170766833125,215,0 +170766833175,215,0 +170766833224,213,0 +170766833272,213,0 +170766833320,213,0 +170766833368,213,0 +170766833416,213,0 +170766833465,214,0 +170766833515,214,0 +170766833563,214,0 +170766833612,214,0 +170766833660,215,0 +170766833710,215,0 +170766833758,215,0 +170766833805,215,0 +170766833855,215,0 +170766833903,215,0 +170766833951,215,0 +170766833999,215,0 +170766834046,213,0 +170766834094,213,0 +170766834142,214,0 +170766834190,214,0 +170766834238,214,0 +170766834288,214,0 +170766834335,214,0 +170766834383,214,0 +170766834431,215,0 +170766834479,215,0 +170766834527,215,0 +170766834577,215,0 +170766834625,215,0 +170766834673,215,0 +170766834722,215,0 +170766834770,215,0 +170766834820,215,0 +170766834869,214,0 +170766834917,214,0 +170766834967,214,0 +170766835015,214,0 +170766835063,214,0 +170766835111,215,0 +170766835159,215,0 +170766835206,215,0 +170766835254,215,0 +170766835302,215,0 +170766835350,215,0 +170766835400,215,0 +170766835448,215,0 +170766835496,215,0 +170766835543,215,0 +170766835591,215,0 +170766835639,214,0 +170766835687,214,0 +170766835735,214,0 +170766835783,214,0 +170766835830,214,0 +170766835880,215,0 +170766835929,215,0 +170766835977,215,0 +170766836027,215,0 +170766836075,215,0 +170766836124,215,0 +170766836174,215,0 +170766836223,215,0 +170766836271,216,0 +170766836319,215,0 +170766836367,215,0 +170766836415,215,0 +170766836463,214,0 +170766836511,214,0 +170766836560,214,0 +170766836608,214,0 +170766836656,215,0 +170766836706,215,0 +170766836755,215,0 +170766836805,215,0 +170766836853,215,0 +170766836901,215,0 +170766836950,215,0 +170766836998,215,0 +170766837046,215,0 +170766837094,215,0 +170766837142,215,0 +170766837191,215,0 +170766837239,214,0 +170766837287,214,0 +170766837335,214,0 +170766837383,214,0 +170766837431,214,0 +170766837480,214,0 +170766837530,215,0 +170766837578,215,0 +170766837626,215,0 +170766837674,215,0 +170766837721,215,0 +170766837769,215,0 +170766837819,216,0 +170766837868,215,0 +170766837916,215,0 +170766837964,215,0 +170766838012,215,0 +170766838060,213,0 +170766838108,214,0 +170766838156,214,0 +170766838206,214,0 +170766838254,214,0 +170766838301,214,0 +170766838349,215,0 +170766838397,215,0 +170766838445,215,0 +170766838493,215,0 +170766838541,215,0 +170766838590,215,0 +170766838640,215,0 +170766838689,215,0 +170766838737,215,0 +170766838786,215,0 +170766838834,214,0 +170766838882,213,0 +170766838930,214,0 +170766838978,214,0 +170766839026,214,0 +170766839074,214,0 +170766839122,214,0 +170766839170,214,0 +170766839218,214,0 +170766839267,215,0 +170766839315,215,0 +170766839363,215,0 +170766839411,215,0 +170766839461,215,0 +170766839510,215,0 +170766839558,215,0 +170766839606,215,0 +170766839654,214,0 +170766839702,214,0 +170766839752,214,0 +170766839801,214,0 +170766839850,214,0 +170766839900,214,0 +170766839948,215,0 +170766839996,215,0 +170766840044,215,0 +170766840092,215,0 +170766840140,215,0 +170766840189,215,0 +170766840237,215,0 +170766840286,215,0 +170766840336,215,0 +170766840384,215,0 +170766840432,215,0 +170766840481,214,0 +170766840529,214,0 +170766840577,214,0 +170766840625,214,0 +170766840673,214,0 +170766840722,214,0 +170766840770,215,0 +170766840818,214,0 +170766840868,214,0 +170766840916,215,0 +170766840964,215,0 +170766841011,215,0 +170766841061,215,0 +170766841109,216,0 +170766841157,215,0 +170766841206,215,0 +170766841254,214,0 +170766841302,213,0 +170766841350,213,0 +170766841398,214,0 +170766841446,214,0 +170766841494,214,0 +170766841542,214,0 +170766841590,214,0 +170766841638,214,0 +170766841685,215,0 +170766841733,215,0 +170766841781,215,0 +170766841831,215,0 +170766841880,215,0 +170766841928,215,0 +170766841976,215,0 +170766842024,215,0 +170766842072,213,0 +170766842120,213,0 +170766842169,213,0 +170766842219,214,0 +170766842268,214,0 +170766842316,214,0 +170766842364,214,0 +170766842414,214,0 +170766842462,215,0 +170766842511,215,0 +170766842559,215,0 +170766842608,215,0 +170766842658,215,0 +170766842707,215,0 +170766842755,215,0 +170766842803,215,0 +170766842851,214,0 +170766842899,214,0 +170766842947,214,0 +170766842997,214,0 +170766843045,214,0 +170766843092,214,0 +170766843140,215,0 +170766843188,215,0 +170766843238,215,0 +170766843286,215,0 +170766843334,215,0 +170766843382,215,0 +170766843429,215,0 +170766843477,215,0 +170766843525,215,0 +170766843573,215,0 +170766843621,215,0 +170766843669,214,0 +170766843717,214,0 +170766843765,214,0 +170766843813,215,0 +170766843862,215,0 +170766843910,215,0 +170766843958,215,0 +170766844008,215,0 +170766844056,215,0 +170766844105,215,0 +170766844153,215,0 +170766844202,215,0 +170766844250,215,0 +170766844300,215,0 +170766844348,215,0 +170766844396,215,0 +170766844445,214,0 +170766844493,214,0 +170766844541,214,0 +170766844589,214,0 +170766844637,214,0 +170766844684,214,0 +170766844732,214,0 +170766844780,215,0 +170766844829,215,0 +170766844877,215,0 +170766844925,215,0 +170766844973,215,0 +170766845021,215,0 +170766845069,215,0 +170766845116,216,0 +170766845166,215,0 +170766845214,215,0 +170766845263,213,0 +170766845311,214,0 +170766845359,214,0 +170766845407,214,0 +170766845454,214,0 +170766845502,214,0 +170766845552,214,0 +170766845599,214,0 +170766845647,215,0 +170766845695,215,0 +170766845743,215,0 +170766845790,215,0 +170766845838,215,0 +170766845886,215,0 +170766845934,215,0 +170766845983,215,0 +170766846031,215,0 +170766846079,213,0 +170766846127,213,0 +170766846175,213,0 +170766846223,214,0 +170766846272,214,0 +170766846320,214,0 +170766846368,214,0 +170766846416,215,0 +170766846463,214,0 +170766846511,215,0 +170766846559,215,0 +170766846607,214,0 +170766846655,215,0 +170766846703,215,0 +170766846750,215,0 +170766846798,215,0 +170766846846,215,0 +170766846894,213,0 +170766846942,213,0 +170766846990,213,0 +170766847037,214,0 +170766847085,214,0 +170766847133,214,0 +170766847181,214,0 +170766847229,214,0 +170766847277,215,0 +170766847325,214,0 +170766847372,215,0 +170766847420,214,0 +170766847468,215,0 +170766847517,215,0 +170766847565,215,0 +170766847613,215,0 +170766847661,213,0 +170766847709,213,0 +170766847757,214,0 +170766847806,214,0 +170766847854,214,0 +170766847902,214,0 +170766847950,214,0 +170766847998,214,0 +170766848047,214,0 +170766848095,215,0 +170766848143,214,0 +170766848190,215,0 +170766848238,215,0 +170766848286,215,0 +170766848334,215,0 +170766848382,215,0 +170766848431,215,0 +170766848479,213,0 +170766848528,213,0 +170766848576,214,0 +170766848624,214,0 +170766848672,214,0 +170766848720,213,0 +170766848768,214,0 +170766848815,214,0 +170766848863,215,0 +170766848911,215,0 +170766848960,215,0 +170766849008,215,0 +170766849056,215,0 +170766849104,215,0 +170766849152,215,0 +170766849201,215,0 +170766849249,215,0 +170766849297,213,0 +170766849345,213,0 +170766849393,213,0 +170766849440,214,0 +170766849488,214,0 +170766849538,214,0 +170766849586,214,0 +170766849633,214,0 +170766849681,214,0 +170766849729,215,0 +170766849777,215,0 +170766849825,215,0 +170766849873,215,0 +170766849922,215,0 +170766849970,215,0 +170766850017,215,0 +170766850067,213,0 +170766850115,213,0 +170766850162,213,0 +170766850210,214,0 +170766850258,213,0 +170766850306,214,0 +170766850354,214,0 +170766850402,214,0 +170766850451,215,0 +170766850499,215,0 +170766850546,215,0 +170766850594,215,0 +170766850642,215,0 +170766850690,215,0 +170766850738,215,0 +170766850786,215,0 +170766850834,215,0 +170766850881,214,0 +170766850929,214,0 +170766850977,214,0 +170766851025,214,0 +170766851073,214,0 +170766851121,214,0 +170766851168,215,0 +170766851216,215,0 +170766851266,215,0 +170766851313,215,0 +170766851363,215,0 +170766851411,216,0 +170766851459,215,0 +170766851507,215,0 +170766851554,215,0 +170766851602,215,0 +170766851650,214,0 +170766851698,214,0 +170766851746,214,0 +170766851794,214,0 +170766851841,214,0 +170766851889,215,0 +170766851937,215,0 +170766851985,215,0 +170766852033,215,0 +170766852080,215,0 +170766852128,215,0 +170766852176,215,0 +170766852224,215,0 +170766852272,215,0 +170766852319,215,0 +170766852367,215,0 +170766852415,215,0 +170766852463,214,0 +170766852511,214,0 +170766852559,214,0 +170766852607,214,0 +170766852654,214,0 +170766852704,215,0 +170766852752,215,0 +170766852799,214,0 +170766852847,215,0 +170766852895,215,0 +170766852943,215,0 +170766852992,216,0 +170766853042,215,0 +170766853090,215,0 +170766853137,215,0 +170766853185,215,0 +170766853233,215,0 +170766853282,214,0 +170766853330,214,0 +170766853378,214,0 +170766853426,214,0 +170766853474,214,0 +170766853521,214,0 +170766853569,215,0 +170766853617,215,0 +170766853665,215,0 +170766853713,215,0 +170766853761,215,0 +170766853808,215,0 +170766853856,215,0 +170766853904,215,0 +170766853952,215,0 +170766854000,215,0 +170766854048,215,0 +170766854095,214,0 +170766854143,214,0 +170766854191,214,0 +170766854240,214,0 +170766854288,215,0 +170766854336,215,0 +170766854384,215,0 +170766854432,215,0 +170766854479,215,0 +170766854527,215,0 +170766854575,215,0 +170766854623,216,0 +170766854671,216,0 +170766854718,215,0 +170766854768,215,0 +170766854816,215,0 +170766854863,214,0 +170766854911,214,0 +170766854959,215,0 +170766855007,215,0 +170766855056,215,0 +170766855104,215,0 +170766855152,215,0 +170766855200,215,0 +170766855248,215,0 +170766855295,215,0 +170766855343,215,0 +170766855391,215,0 +170766855439,216,0 +170766855488,215,0 +170766855536,215,0 +170766855584,215,0 +170766855632,215,0 +170766855679,214,0 +170766855727,215,0 +170766855775,215,0 +170766855823,215,0 +170766855870,215,0 +170766855918,215,0 +170766855966,215,0 +170766856016,215,0 +170766856065,215,0 +170766856114,216,0 +170766856162,215,0 +170766856210,215,0 +170766856258,216,0 +170766856306,215,0 +170766856354,215,0 +170766856402,215,0 +170766856449,215,0 +170766856497,214,0 +170766856545,214,0 +170766856593,214,0 +170766856641,214,0 +170766856689,214,0 +170766856737,215,0 +170766856784,215,0 +170766856832,215,0 +170766856880,215,0 +170766856928,215,0 +170766856976,215,0 +170766857025,215,0 +170766857073,215,0 +170766857121,215,0 +170766857170,215,0 +170766857218,215,0 +170766857267,214,0 +170766857315,213,0 +170766857363,213,0 +170766857411,214,0 +170766857459,214,0 +170766857508,214,0 +170766857556,214,0 +170766857604,214,0 +170766857653,214,0 +170766857701,215,0 +170766857749,215,0 +170766857797,215,0 +170766857846,215,0 +170766857894,215,0 +170766857942,215,0 +170766857991,215,0 +170766858040,215,0 +170766858088,213,0 +170766858136,213,0 +170766858185,213,0 +170766858233,214,0 +170766858281,213,0 +170766858329,214,0 +170766858377,214,0 +170766858424,214,0 +170766858472,215,0 +170766858522,215,0 +170766858569,215,0 +170766858617,215,0 +170766858667,215,0 +170766858714,215,0 +170766858762,215,0 +170766858812,215,0 +170766858859,215,0 +170766858907,213,0 +170766858955,214,0 +170766859005,213,0 +170766859052,214,0 +170766859100,214,0 +170766859148,214,0 +170766859196,214,0 +170766859244,214,0 +170766859292,215,0 +170766859340,215,0 +170766859387,215,0 +170766859435,215,0 +170766859483,215,0 +170766859531,215,0 +170766859579,215,0 +170766859627,214,0 +170766859674,213,0 +170766859722,213,0 +170766859772,213,0 +170766859819,214,0 +170766859867,214,0 +170766859915,214,0 +170766859963,214,0 +170766860011,214,0 +170766860059,215,0 +170766860106,215,0 +170766860154,215,0 +170766860202,215,0 +170766860250,215,0 +170766860297,215,0 +170766860345,215,0 +170766860393,215,0 +170766860441,215,0 +170766860489,213,0 +170766860536,213,0 +170766860586,213,0 +170766860634,213,0 +170766860683,214,0 +170766860731,214,0 +170766860780,214,0 +170766860828,214,0 +170766860876,214,0 +170766860924,214,0 +170766860972,215,0 +170766861020,215,0 +170766861068,214,0 +170766861116,215,0 +170766861163,215,0 +170766861213,215,0 +170766861260,214,0 +170766861310,213,0 +170766861358,213,0 +170766861405,213,0 +170766861453,213,0 +170766861503,213,0 +170766861550,213,0 +170766861598,213,0 +170766861646,214,0 +170766861694,214,0 +170766861742,214,0 +170766861790,214,0 +170766861838,214,0 +170766861885,215,0 +170766861933,215,0 +170766861981,215,0 +170766862029,215,0 +170766862077,213,0 +170766862125,213,0 +170766862173,213,0 +170766862220,214,0 +170766862268,213,0 +170766862316,214,0 +170766862364,213,0 +170766862412,213,0 +170766862460,214,0 +170766862507,214,0 +170766862555,214,0 +170766862603,214,0 +170766862653,215,0 +170766862700,215,0 +170766862750,215,0 +170766862798,215,0 +170766862846,215,0 +170766862895,213,0 +170766862943,213,0 +170766862991,213,0 +170766863039,214,0 +170766863088,214,0 +170766863136,214,0 +170766863184,214,0 +170766863232,214,0 +170766863281,214,0 +170766863329,215,0 +170766863377,215,0 +170766863424,215,0 +170766863472,215,0 +170766863520,215,0 +170766863568,215,0 +170766863616,215,0 +170766863663,215,0 +170766863713,214,0 +170766863761,214,0 +170766863809,214,0 +170766863856,214,0 +170766863904,214,0 +170766863952,214,0 +170766864000,214,0 +170766864048,215,0 +170766864096,215,0 +170766864143,215,0 +170766864191,215,0 +170766864239,215,0 +170766864287,215,0 +170766864335,215,0 +170766864383,215,0 +170766864432,215,0 +170766864480,214,0 +170766864528,214,0 +170766864576,214,0 +170766864624,214,0 +170766864671,214,0 +170766864721,214,0 +170766864768,214,0 +170766864816,215,0 +170766864864,215,0 +170766864914,215,0 +170766864963,215,0 +170766865011,215,0 +170766865059,215,0 +170766865108,215,0 +170766865156,215,0 +170766865204,215,0 +170766865252,215,0 +170766865301,213,0 +170766865349,213,0 +170766865399,214,0 +170766865447,214,0 +170766865496,214,0 +170766865544,214,0 +170766865593,214,0 +170766865643,214,0 +170766865691,214,0 +170766865739,215,0 +170766865787,215,0 +170766865835,215,0 +170766865883,215,0 +170766865931,215,0 +170766865980,215,0 +170766866028,215,0 +170766866076,213,0 +170766866124,213,0 +170766866172,213,0 +170766866220,213,0 +170766866269,214,0 +170766866318,214,0 +170766866368,214,0 +170766866416,214,0 +170766866464,214,0 +170766866512,214,0 +170766866561,214,0 +170766866609,215,0 +170766866657,215,0 +170766866705,215,0 +170766866753,215,0 +170766866801,215,0 +170766866849,215,0 +170766866897,214,0 +170766866945,214,0 +170766866993,214,0 +170766867041,214,0 +170766867088,214,0 +170766867136,214,0 +170766867184,214,0 +170766867232,215,0 +170766867282,215,0 +170766867330,215,0 +170766867378,215,0 +170766867426,215,0 +170766867475,215,0 +170766867523,215,0 +170766867571,215,0 +170766867619,215,0 +170766867667,214,0 +170766867716,214,0 +170766867764,214,0 +170766867812,215,0 +170766867860,215,0 +170766867910,215,0 +170766867957,215,0 +170766868007,215,0 +170766868055,215,0 +170766868103,216,0 +170766868152,215,0 +170766868202,215,0 +170766868251,215,0 +170766868299,215,0 +170766868349,215,0 +170766868397,215,0 +170766868445,215,0 +170766868493,214,0 +170766868542,215,0 +170766868590,215,0 +170766868638,215,0 +170766868686,215,0 +170766868734,215,0 +170766868782,215,0 +170766868830,215,0 +170766868878,215,0 +170766868926,215,0 +170766868975,215,0 +170766869023,214,0 +170766869071,215,0 +170766869119,215,0 +170766869167,215,0 +170766869215,215,0 +170766869263,215,0 +170766869311,214,0 +170766869359,214,0 +170766869408,214,0 +170766869456,214,0 +170766869506,214,0 +170766869555,215,0 +170766869603,215,0 +170766869651,215,0 +170766869699,215,0 +170766869749,215,0 +170766869797,215,0 +170766869844,215,0 +170766869892,215,0 +170766869940,215,0 +170766869988,215,0 +170766870036,215,0 +170766870084,214,0 +170766870132,214,0 +170766870180,214,0 +170766870229,214,0 +170766870277,214,0 +170766870325,214,0 +170766870373,214,0 +170766870421,214,0 +170766870469,215,0 +170766870518,215,0 +170766870568,215,0 +170766870616,215,0 +170766870664,215,0 +170766870713,215,0 +170766870761,215,0 +170766870811,215,0 +170766870859,214,0 +170766870907,213,0 +170766870956,213,0 +170766871004,214,0 +170766871052,214,0 +170766871100,214,0 +170766871148,213,0 +170766871196,214,0 +170766871245,215,0 +170766871293,214,0 +170766871342,214,0 +170766871390,215,0 +170766871438,215,0 +170766871486,215,0 +170766871534,215,0 +170766871582,215,0 +170766871630,215,0 +170766871678,213,0 +170766871726,213,0 +170766871775,213,0 +170766871823,213,0 +170766871871,214,0 +170766871919,214,0 +170766871967,214,0 +170766872015,214,0 +170766872063,214,0 +170766872110,215,0 +170766872158,215,0 +170766872206,215,0 +170766872256,215,0 +170766872303,215,0 +170766872351,215,0 +170766872399,214,0 +170766872449,215,0 +170766872497,213,0 +170766872545,214,0 +170766872593,214,0 +170766872640,214,0 +170766872688,214,0 +170766872736,214,0 +170766872784,214,0 +170766872832,214,0 +170766872880,214,0 +170766872928,215,0 +170766872976,215,0 +170766873023,215,0 +170766873071,215,0 +170766873119,215,0 +170766873167,215,0 +170766873215,215,0 +170766873263,215,0 +170766873310,213,0 +170766873358,214,0 +170766873406,214,0 +170766873454,214,0 +170766873502,214,0 +170766873550,214,0 +170766873597,214,0 +170766873645,214,0 +170766873693,215,0 +170766873741,215,0 +170766873790,215,0 +170766873838,215,0 +170766873886,215,0 +170766873934,215,0 +170766873984,215,0 +170766874033,215,0 +170766874081,213,0 +170766874129,213,0 +170766874177,213,0 +170766874225,213,0 +170766874273,214,0 +170766874321,214,0 +170766874370,214,0 +170766874418,214,0 +170766874466,214,0 +170766874514,214,0 +170766874563,215,0 +170766874611,215,0 +170766874661,215,0 +170766874709,215,0 +170766874757,215,0 +170766874805,215,0 +170766874852,215,0 +170766874902,213,0 +170766874950,213,0 +170766874998,214,0 +170766875046,214,0 +170766875094,214,0 +170766875142,214,0 +170766875191,215,0 +170766875239,215,0 +170766875287,215,0 +170766875335,215,0 +170766875383,215,0 +170766875430,215,0 +170766875478,215,0 +170766875526,215,0 +170766875574,214,0 +170766875623,215,0 +170766875671,215,0 +170766875719,214,0 +170766875767,214,0 +170766875816,214,0 +170766875866,214,0 +170766875915,214,0 +170766875963,215,0 +170766876011,215,0 +170766876061,215,0 +170766876110,215,0 +170766876158,215,0 +170766876206,215,0 +170766876255,215,0 +170766876303,215,0 +170766876351,215,0 +170766876399,215,0 +170766876447,215,0 +170766876495,214,0 +170766876543,214,0 +170766876592,214,0 +170766876640,214,0 +170766876689,214,0 +170766876739,214,0 +170766876789,215,0 +170766876837,215,0 +170766876884,215,0 +170766876932,215,0 +170766876980,215,0 +170766877028,215,0 +170766877076,215,0 +170766877124,214,0 +170766877172,215,0 +170766877220,215,0 +170766877268,215,0 +170766877316,214,0 +170766877366,214,0 +170766877413,214,0 +170766877463,214,0 +170766877511,214,0 +170766877559,214,0 +170766877608,214,0 +170766877656,214,0 +170766877704,214,0 +170766877752,215,0 +170766877801,215,0 +170766877851,215,0 +170766877899,215,0 +170766877947,215,0 +170766877995,215,0 +170766878043,215,0 +170766878091,213,0 +170766878138,213,0 +170766878188,214,0 +170766878236,214,0 +170766878284,214,0 +170766878332,214,0 +170766878380,214,0 +170766878428,214,0 +170766878476,214,0 +170766878523,214,0 +170766878571,215,0 +170766878619,215,0 +170766878669,215,0 +170766878717,215,0 +170766878765,215,0 +170766878813,215,0 +170766878861,215,0 +170766878909,213,0 +170766878957,213,0 +170766879005,213,0 +170766879053,214,0 +170766879102,214,0 +170766879152,214,0 +170766879199,214,0 +170766879247,214,0 +170766879295,214,0 +170766879343,215,0 +170766879391,215,0 +170766879439,215,0 +170766879487,215,0 +170766879537,215,0 +170766879586,215,0 +170766879636,215,0 +170766879684,213,0 +170766879731,213,0 +170766879779,213,0 +170766879829,214,0 +170766879877,214,0 +170766879926,214,0 +170766879974,214,0 +170766880022,214,0 +170766880072,214,0 +170766880121,215,0 +170766880171,215,0 +170766880219,215,0 +170766880267,215,0 +170766880316,215,0 +170766880366,215,0 +170766880415,215,0 +170766880463,215,0 +170766880511,213,0 +170766880561,213,0 +170766880610,213,0 +170766880658,213,0 +170766880707,214,0 +170766880755,214,0 +170766880803,214,0 +170766880851,215,0 +170766880899,214,0 +170766880947,215,0 +170766880994,215,0 +170766881042,215,0 +170766881090,215,0 +170766881138,215,0 +170766881188,215,0 +170766881235,215,0 +170766881283,214,0 +170766881331,213,0 +170766881379,213,0 +170766881427,213,0 +170766881475,214,0 +170766881523,214,0 +170766881572,214,0 +170766881622,214,0 +170766881670,214,0 +170766881719,215,0 +170766881767,214,0 +170766881816,213,0 +170766881866,215,0 +170766881914,215,0 +170766881962,215,0 +170766882011,215,0 +170766882059,215,0 +170766882109,213,0 +170766882158,213,0 +170766882206,213,0 +170766882254,213,0 +170766882302,213,0 +170766882350,214,0 +170766882398,214,0 +170766882446,214,0 +170766882495,215,0 +170766882543,214,0 +170766882591,214,0 +170766882639,215,0 +170766882689,215,0 +170766882738,215,0 +170766882786,215,0 +170766882836,215,0 +170766882883,214,0 +170766882931,213,0 +170766882979,213,0 +170766883027,213,0 +170766883075,214,0 +170766883125,214,0 +170766883173,214,0 +170766883222,214,0 +170766883271,214,0 +170766883319,215,0 +170766883369,215,0 +170766883419,215,0 +170766883466,215,0 +170766883514,215,0 +170766883562,215,0 +170766883610,215,0 +170766883658,215,0 +170766883706,213,0 +170766883755,213,0 +170766883803,213,0 +170766883851,214,0 +170766883901,214,0 +170766883948,214,0 +170766883998,214,0 +170766884048,215,0 +170766884095,215,0 +170766884143,215,0 +170766884191,215,0 +170766884239,215,0 +170766884287,215,0 +170766884335,216,0 +170766884382,215,0 +170766884430,215,0 +170766884478,214,0 +170766884526,213,0 +170766884574,213,0 +170766884622,213,0 +170766884669,214,0 +170766884717,214,0 +170766884765,214,0 +170766884815,214,0 +170766884863,214,0 +170766884911,214,0 +170766884960,214,0 +170766885008,215,0 +170766885056,215,0 +170766885104,214,0 +170766885152,215,0 +170766885201,215,0 +170766885251,215,0 +170766885299,215,0 +170766885347,215,0 +170766885395,215,0 +170766885443,215,0 +170766885491,215,0 +170766885539,215,0 +170766885587,215,0 +170766885635,215,0 +170766885683,214,0 +170766885732,214,0 +170766885780,214,0 +170766885829,214,0 +170766885877,214,0 +170766885925,214,0 +170766885975,214,0 +170766886024,215,0 +170766886074,215,0 +170766886122,215,0 +170766886169,215,0 +170766886219,215,0 +170766886267,215,0 +170766886315,215,0 +170766886364,215,0 +170766886412,215,0 +170766886462,215,0 +170766886511,213,0 +170766886561,213,0 +170766886609,213,0 +170766886657,213,0 +170766886705,214,0 +170766886754,214,0 +170766886803,214,0 +170766886851,214,0 +170766886899,214,0 +170766886947,215,0 +170766886995,215,0 +170766887043,215,0 +170766887091,215,0 +170766887139,215,0 +170766887187,215,0 +170766887235,215,0 +170766887284,214,0 +170766887332,213,0 +170766887380,213,0 +170766887428,214,0 +170766887476,214,0 +170766887524,214,0 +170766887572,215,0 +170766887621,214,0 +170766887669,215,0 +170766887719,215,0 +170766887767,215,0 +170766887816,215,0 +170766887864,216,0 +170766887912,215,0 +170766887962,215,0 +170766888010,215,0 +170766888057,215,0 +170766888105,214,0 +170766888153,214,0 +170766888203,214,0 +170766888252,214,0 +170766888300,215,0 +170766888350,215,0 +170766888399,215,0 +170766888447,215,0 +170766888495,215,0 +170766888543,215,0 +170766888591,215,0 +170766888641,215,0 +170766888689,215,0 +170766888737,215,0 +170766888785,215,0 +170766888832,215,0 +170766888880,215,0 +170766888928,213,0 +170766888976,214,0 +170766889024,214,0 +170766889072,214,0 +170766889120,214,0 +170766889170,214,0 +170766889219,215,0 +170766889267,215,0 +170766889315,214,0 +170766889363,215,0 +170766889411,215,0 +170766889459,215,0 +170766889506,215,0 +170766889554,215,0 +170766889602,215,0 +170766889650,215,0 +170766889698,213,0 +170766889747,213,0 +170766889795,214,0 +170766889843,213,0 +170766889891,214,0 +170766889939,214,0 +170766889986,214,0 +170766890034,214,0 +170766890082,214,0 +170766890130,214,0 +170766890178,214,0 +170766890228,214,0 +170766890277,214,0 +170766890327,215,0 +170766890374,215,0 +170766890424,215,0 +170766890472,215,0 +170766890520,213,0 +170766890569,213,0 +170766890619,213,0 +170766890667,213,0 +170766890716,214,0 +170766890764,214,0 +170766890812,214,0 +170766890862,214,0 +170766890910,214,0 +170766890958,214,0 +170766891007,214,0 +170766891057,215,0 +170766891106,215,0 +170766891154,215,0 +170766891202,215,0 +170766891251,215,0 +170766891299,214,0 +170766891347,214,0 +170766891395,214,0 +170766891443,214,0 +170766891491,215,0 +170766891539,214,0 +170766891587,214,0 +170766891635,215,0 +170766891684,215,0 +170766891734,215,0 +170766891782,215,0 +170766891831,215,0 +170766891879,215,0 +170766891929,215,0 +170766891976,215,0 +170766892024,215,0 +170766892072,215,0 +170766892120,214,0 +170766892168,214,0 +170766892216,214,0 +170766892264,214,0 +170766892312,214,0 +170766892360,215,0 +170766892408,215,0 +170766892457,215,0 +170766892507,215,0 +170766892555,215,0 +170766892603,215,0 +170766892651,215,0 +170766892699,215,0 +170766892747,215,0 +170766892796,215,0 +170766892844,215,0 +170766892892,214,0 +170766892940,214,0 +170766892988,214,0 +170766893036,214,0 +170766893084,214,0 +170766893131,214,0 +170766893181,214,0 +170766893230,214,0 +170766893278,215,0 +170766893326,215,0 +170766893374,215,0 +170766893422,215,0 +170766893470,215,0 +170766893518,215,0 +170766893566,215,0 +170766893615,215,0 +170766893663,215,0 +170766893711,214,0 +170766893759,214,0 +170766893807,214,0 +170766893855,214,0 +170766893903,214,0 +170766893951,214,0 +170766893999,214,0 +170766894048,214,0 +170766894096,215,0 +170766894144,214,0 +170766894192,215,0 +170766894240,215,0 +170766894288,215,0 +170766894336,215,0 +170766894385,215,0 +170766894435,215,0 +170766894483,215,0 +170766894532,213,0 +170766894580,214,0 +170766894630,214,0 +170766894678,214,0 +170766894727,214,0 +170766894775,214,0 +170766894823,215,0 +170766894871,214,0 +170766894919,215,0 +170766894968,215,0 +170766895018,215,0 +170766895067,215,0 +170766895115,215,0 +170766895163,215,0 +170766895211,215,0 +170766895259,214,0 +170766895307,213,0 +170766895356,213,0 +170766895406,213,0 +170766895454,214,0 +170766895502,214,0 +170766895551,214,0 +170766895599,214,0 +170766895647,214,0 +170766895695,215,0 +170766895743,215,0 +170766895791,215,0 +170766895840,215,0 +170766895888,215,0 +170766895936,215,0 +170766895984,215,0 +170766896032,215,0 +170766896080,214,0 +170766896128,213,0 +170766896176,213,0 +170766896225,213,0 +170766896273,213,0 +170766896321,214,0 +170766896368,214,0 +170766896416,214,0 +170766896466,214,0 +170766896514,214,0 +170766896562,215,0 +170766896610,215,0 +170766896657,215,0 +170766896707,215,0 +170766896755,216,0 +170766896803,215,0 +170766896850,215,0 +170766896898,214,0 +170766896946,213,0 +170766896994,213,0 +170766897042,213,0 +170766897090,214,0 +170766897138,214,0 +170766897185,214,0 +170766897233,214,0 +170766897281,214,0 +170766897331,214,0 +170766897378,215,0 +170766897426,215,0 +170766897474,215,0 +170766897522,215,0 +170766897570,215,0 +170766897617,215,0 +170766897667,215,0 +170766897715,213,0 +170766897762,212,0 +170766897810,213,0 +170766897858,213,0 +170766897906,213,0 +170766897954,213,0 +170766898001,214,0 +170766898049,214,0 +170766898097,214,0 +170766898145,214,0 +170766898194,214,0 +170766898242,214,0 +170766898290,214,0 +170766898338,215,0 +170766898386,215,0 +170766898434,215,0 +170766898482,215,0 +170766898531,213,0 +170766898579,213,0 +170766898627,213,0 +170766898675,213,0 +170766898722,213,0 +170766898770,213,0 +170766898820,213,0 +170766898867,214,0 +170766898915,214,0 +170766898963,214,0 +170766899013,214,0 +170766899061,215,0 +170766899110,214,0 +170766899158,215,0 +170766899206,215,0 +170766899254,215,0 +170766899302,213,0 +170766899351,213,0 +170766899399,213,0 +170766899447,213,0 +170766899496,213,0 +170766899546,213,0 +170766899594,214,0 +170766899642,214,0 +170766899690,214,0 +170766899738,214,0 +170766899786,215,0 +170766899835,215,0 +170766899883,215,0 +170766899933,215,0 +170766899980,215,0 +170766900028,215,0 +170766900076,215,0 +170766900126,214,0 +170766900175,214,0 +170766900223,214,0 +170766900271,214,0 +170766900319,215,0 +170766900367,215,0 +170766900415,215,0 +170766900463,215,0 +170766900512,215,0 +170766900562,215,0 +170766900610,215,0 +170766900658,215,0 +170766900706,216,0 +170766900754,215,0 +170766900801,215,0 +170766900849,215,0 +170766900897,215,0 +170766900945,214,0 +170766900993,215,0 +170766901041,215,0 +170766901088,215,0 +170766901136,215,0 +170766901184,215,0 +170766901232,215,0 +170766901280,215,0 +170766901328,215,0 +170766901376,215,0 +170766901423,215,0 +170766901471,215,0 +170766901519,215,0 +170766901567,215,0 +170766901616,215,0 +170766901664,215,0 +170766901712,214,0 +170766901760,214,0 +170766901808,214,0 +170766901856,214,0 +170766901904,214,0 +170766901952,214,0 +170766902000,215,0 +170766902048,214,0 +170766902095,215,0 +170766902143,215,0 +170766902193,215,0 +170766902241,215,0 +170766902289,215,0 +170766902338,215,0 +170766902386,215,0 +170766902435,215,0 +170766902483,215,0 +170766902533,214,0 +170766902581,214,0 +170766902630,214,0 +170766902678,214,0 +170766902728,214,0 +170766902776,214,0 +170766902825,214,0 +170766902873,214,0 +170766902921,215,0 +170766902970,215,0 +170766903018,215,0 +170766903066,215,0 +170766903116,215,0 +170766903164,215,0 +170766903212,215,0 +170766903261,215,0 +170766903309,214,0 +170766903357,214,0 +170766903405,214,0 +170766903452,214,0 +170766903500,214,0 +170766903548,215,0 +170766903598,215,0 +170766903647,215,0 +170766903695,215,0 +170766903743,215,0 +170766903792,215,0 +170766903840,215,0 +170766903888,215,0 +170766903936,215,0 +170766903984,215,0 +170766904033,215,0 +170766904083,215,0 +170766904131,214,0 +170766904180,215,0 +170766904228,214,0 +170766904276,215,0 +170766904324,215,0 +170766904372,215,0 +170766904421,215,0 +170766904469,215,0 +170766904517,215,0 +170766904565,215,0 +170766904613,215,0 +170766904663,216,0 +170766904712,215,0 +170766904761,215,0 +170766904811,215,0 +170766904859,215,0 +170766904907,215,0 +170766904956,214,0 +170766905004,214,0 +170766905052,215,0 +170766905100,215,0 +170766905148,215,0 +170766905197,215,0 +170766905246,215,0 +170766905296,215,0 +170766905344,215,0 +170766905392,215,0 +170766905440,215,0 +170766905487,215,0 +170766905535,215,0 +170766905583,215,0 +170766905631,215,0 +170766905681,215,0 +170766905729,214,0 +170766905777,214,0 +170766905824,214,0 +170766905872,214,0 +170766905920,215,0 +170766905968,215,0 +170766906018,215,0 +170766906066,215,0 +170766906114,215,0 +170766906161,215,0 +170766906209,215,0 +170766906257,215,0 +170766906305,215,0 +170766906353,215,0 +170766906401,215,0 +170766906449,215,0 +170766906497,215,0 +170766906545,213,0 +170766906593,213,0 +170766906642,213,0 +170766906692,214,0 +170766906741,214,0 +170766906791,214,0 +170766906839,214,0 +170766906886,214,0 +170766906936,214,0 +170766906984,215,0 +170766907033,215,0 +170766907083,215,0 +170766907131,215,0 +170766907179,215,0 +170766907228,215,0 +170766907276,215,0 +170766907324,213,0 +170766907373,213,0 +170766907421,213,0 +170766907471,214,0 +170766907519,214,0 +170766907566,214,0 +170766907616,214,0 +170766907664,214,0 +170766907713,215,0 +170766907761,215,0 +170766907811,215,0 +170766907859,215,0 +170766907907,215,0 +170766907955,215,0 +170766908004,215,0 +170766908054,215,0 +170766908103,214,0 +170766908151,213,0 +170766908199,213,0 +170766908247,213,0 +170766908295,214,0 +170766908343,214,0 +170766908392,214,0 +170766908440,214,0 +170766908490,214,0 +170766908538,214,0 +170766908586,215,0 +170766908635,215,0 +170766908683,215,0 +170766908733,215,0 +170766908780,215,0 +170766908830,215,0 +170766908878,215,0 +170766908926,213,0 +170766908974,213,0 +170766909023,213,0 +170766909073,213,0 +170766909120,214,0 +170766909170,214,0 +170766909218,214,0 +170766909266,214,0 +170766909315,214,0 +170766909365,215,0 +170766909413,215,0 +170766909461,215,0 +170766909510,215,0 +170766909560,215,0 +170766909608,215,0 +170766909656,215,0 +170766909705,214,0 +170766909753,213,0 +170766909801,213,0 +170766909849,213,0 +170766909897,213,0 +170766909945,214,0 +170766909993,214,0 +170766910042,214,0 +170766910090,214,0 +170766910138,214,0 +170766910186,215,0 +170766910234,215,0 +170766910282,215,0 +170766910330,215,0 +170766910378,215,0 +170766910426,215,0 +170766910475,215,0 +170766910525,213,0 +170766910574,213,0 +170766910624,213,0 +170766910672,213,0 +170766910721,214,0 +170766910769,214,0 +170766910817,214,0 +170766910865,214,0 +170766910913,215,0 +170766910963,215,0 +170766911012,215,0 +170766911060,215,0 +170766911109,215,0 +170766911157,215,0 +170766911205,215,0 +170766911253,215,0 +170766911301,215,0 +170766911351,213,0 +170766911399,213,0 +170766911447,213,0 +170766911496,214,0 +170766911544,214,0 +170766911592,214,0 +170766911640,214,0 +170766911688,214,0 +170766911736,214,0 +170766911784,215,0 +170766911833,215,0 +170766911881,215,0 +170766911930,215,0 +170766911980,215,0 +170766912028,215,0 +170766912076,215,0 +170766912124,214,0 +170766912172,213,0 +170766912221,214,0 +170766912269,214,0 +170766912317,214,0 +170766912367,214,0 +170766912416,214,0 +170766912466,214,0 +170766912514,215,0 +170766912561,215,0 +170766912611,215,0 +170766912661,215,0 +170766912708,215,0 +170766912758,215,0 +170766912807,215,0 +170766912855,215,0 +170766912905,215,0 +170766912954,214,0 +170766913002,214,0 +170766913050,214,0 +170766913100,214,0 +170766913148,214,0 +170766913197,215,0 +170766913247,215,0 +170766913295,215,0 +170766913344,215,0 +170766913392,215,0 +170766913440,215,0 +170766913490,215,0 +170766913537,215,0 +170766913585,215,0 +170766913635,215,0 +170766913683,215,0 +170766913731,214,0 +170766913779,214,0 +170766913828,214,0 +170766913876,214,0 +170766913924,214,0 +170766913972,214,0 +170766914022,215,0 +170766914071,215,0 +170766914121,215,0 +170766914169,215,0 +170766914218,215,0 +170766914268,215,0 +170766914316,215,0 +170766914365,215,0 +170766914413,215,0 +170766914461,215,0 +170766914509,214,0 +170766914558,213,0 +170766914608,213,0 +170766914656,214,0 +170766914704,214,0 +170766914753,214,0 +170766914801,214,0 +170766914849,214,0 +170766914897,215,0 +170766914945,215,0 +170766914993,215,0 +170766915041,214,0 +170766915089,215,0 +170766915137,215,0 +170766915185,215,0 +170766915233,215,0 +170766915282,215,0 +170766915332,214,0 +170766915380,214,0 +170766915429,214,0 +170766915479,214,0 +170766915528,214,0 +170766915576,214,0 +170766915624,214,0 +170766915672,214,0 +170766915720,215,0 +170766915768,215,0 +170766915815,215,0 +170766915863,215,0 +170766915911,215,0 +170766915961,215,0 +170766916008,215,0 +170766916056,215,0 +170766916104,215,0 +170766916152,213,0 +170766916200,214,0 +170766916248,214,0 +170766916296,214,0 +170766916343,214,0 +170766916393,214,0 +170766916441,215,0 +170766916488,215,0 +170766916536,215,0 +170766916584,215,0 +170766916632,215,0 +170766916680,215,0 +170766916728,215,0 +170766916775,215,0 +170766916823,215,0 +170766916871,215,0 +170766916919,214,0 +170766916967,214,0 +170766917015,214,0 +170766917063,214,0 +170766917110,214,0 +170766917158,215,0 +170766917206,215,0 +170766917254,215,0 +170766917302,215,0 +170766917351,215,0 +170766917399,215,0 +170766917447,215,0 +170766917495,215,0 +170766917544,215,0 +170766917594,215,0 +170766917641,215,0 +170766917689,214,0 +170766917737,213,0 +170766917787,213,0 +170766917835,213,0 +170766917883,214,0 +170766917931,214,0 +170766917980,214,0 +170766918030,214,0 +170766918079,215,0 +170766918127,215,0 +170766918175,215,0 +170766918223,215,0 +170766918271,215,0 +170766918319,215,0 +170766918368,215,0 +170766918418,215,0 +170766918466,215,0 +170766918513,214,0 +170766918562,213,0 +170766918611,213,0 +170766918659,214,0 +170766918707,214,0 +170766918755,214,0 +170766918804,214,0 +170766918852,214,0 +170766918900,214,0 +170766918948,215,0 +170766918996,215,0 +170766919044,215,0 +170766919092,215,0 +170766919140,215,0 +170766919188,215,0 +170766919236,215,0 +170766919283,215,0 +170766919331,214,0 +170766919379,214,0 +170766919429,213,0 +170766919478,214,0 +170766919527,214,0 +170766919575,214,0 +170766919623,214,0 +170766919671,215,0 +170766919719,214,0 +170766919767,215,0 +170766919814,215,0 +170766919862,215,0 +170766919910,215,0 +170766919958,215,0 +170766920006,215,0 +170766920054,215,0 +170766920102,215,0 +170766920149,213,0 +170766920197,214,0 +170766920245,214,0 +170766920293,214,0 +170766920341,214,0 +170766920389,214,0 +170766920437,214,0 +170766920485,214,0 +170766920532,215,0 +170766920580,215,0 +170766920628,215,0 +170766920677,215,0 +170766920725,215,0 +170766920773,215,0 +170766920821,215,0 +170766920869,214,0 +170766920917,215,0 +170766920967,214,0 +170766921014,214,0 +170766921062,214,0 +170766921110,214,0 +170766921158,214,0 +170766921206,214,0 +170766921254,214,0 +170766921302,215,0 +170766921352,215,0 +170766921400,215,0 +170766921448,215,0 +170766921496,215,0 +170766921545,215,0 +170766921595,215,0 +170766921642,215,0 +170766921692,215,0 +170766921742,213,0 +170766921791,213,0 +170766921841,213,0 +170766921890,214,0 +170766921938,213,0 +170766921988,214,0 +170766922036,214,0 +170766922084,214,0 +170766922133,214,0 +170766922183,214,0 +170766922232,215,0 +170766922280,215,0 +170766922328,215,0 +170766922376,215,0 +170766922424,215,0 +170766922472,215,0 +170766922520,214,0 +170766922568,213,0 +170766922617,213,0 +170766922667,213,0 +170766922716,214,0 +170766922764,214,0 +170766922812,214,0 +170766922860,214,0 +170766922908,214,0 +170766922956,214,0 +170766923005,214,0 +170766923053,215,0 +170766923103,215,0 +170766923152,215,0 +170766923200,215,0 +170766923248,215,0 +170766923296,215,0 +170766923344,213,0 +170766923393,213,0 +170766923441,213,0 +170766923489,214,0 +170766923537,213,0 +170766923586,214,0 +170766923634,214,0 +170766923682,214,0 +170766923730,214,0 +170766923780,215,0 +170766923828,215,0 +170766923875,215,0 +170766923925,215,0 +170766923973,215,0 +170766924021,215,0 +170766924069,215,0 +170766924117,215,0 +170766924165,213,0 +170766924212,214,0 +170766924260,214,0 +170766924308,214,0 +170766924356,214,0 +170766924404,214,0 +170766924452,215,0 +170766924500,215,0 +170766924548,215,0 +170766924596,215,0 +170766924645,215,0 +170766924693,215,0 +170766924741,215,0 +170766924791,215,0 +170766924840,215,0 +170766924888,215,0 +170766924936,214,0 +170766924985,214,0 +170766925033,214,0 +170766925081,214,0 +170766925129,214,0 +170766925179,214,0 +170766925227,215,0 +170766925275,215,0 +170766925324,215,0 +170766925372,215,0 +170766925420,215,0 +170766925468,216,0 +170766925516,215,0 +170766925564,215,0 +170766925612,215,0 +170766925661,215,0 +170766925709,215,0 +170766925757,214,0 +170766925805,214,0 +170766925853,214,0 +170766925903,214,0 +170766925950,214,0 +170766926000,214,0 +170766926048,215,0 +170766926096,215,0 +170766926145,215,0 +170766926193,215,0 +170766926241,215,0 +170766926289,215,0 +170766926337,215,0 +170766926385,215,0 +170766926433,215,0 +170766926481,215,0 +170766926530,214,0 +170766926578,213,0 +170766926626,213,0 +170766926676,213,0 +170766926724,214,0 +170766926772,214,0 +170766926821,214,0 +170766926869,214,0 +170766926918,214,0 +170766926966,214,0 +170766927014,215,0 +170766927062,215,0 +170766927110,215,0 +170766927158,215,0 +170766927206,215,0 +170766927254,215,0 +170766927303,214,0 +170766927351,213,0 +170766927399,213,0 +170766927447,213,0 +170766927495,213,0 +170766927544,213,0 +170766927592,214,0 +170766927642,214,0 +170766927690,214,0 +170766927739,214,0 +170766927787,215,0 +170766927835,215,0 +170766927883,215,0 +170766927931,215,0 +170766927979,215,0 +170766928028,215,0 +170766928078,215,0 +170766928126,215,0 +170766928174,213,0 +170766928222,213,0 +170766928270,214,0 +170766928318,214,0 +170766928367,214,0 +170766928417,214,0 +170766928464,214,0 +170766928512,215,0 +170766928560,215,0 +170766928608,215,0 +170766928658,215,0 +170766928706,215,0 +170766928754,215,0 +170766928803,215,0 +170766928853,215,0 +170766928902,215,0 +170766928952,214,0 +170766929001,214,0 +170766929051,214,0 +170766929101,214,0 +170766929149,215,0 +170766929197,215,0 +170766929246,215,0 +170766929294,215,0 +170766929344,215,0 +170766929392,215,0 +170766929440,215,0 +170766929487,215,0 +170766929537,215,0 +170766929587,215,0 +170766929635,215,0 +170766929682,215,0 +170766929730,215,0 +170766929778,214,0 +170766929826,214,0 +170766929876,214,0 +170766929925,214,0 +170766929973,214,0 +170766930023,214,0 +170766930072,215,0 +170766930120,215,0 +170766930168,215,0 +170766930216,215,0 +170766930266,215,0 +170766930313,215,0 +170766930361,215,0 +170766930409,215,0 +170766930457,215,0 +170766930507,215,0 +170766930555,214,0 +170766930604,213,0 +170766930652,214,0 +170766930702,214,0 +170766930751,214,0 +170766930799,214,0 +170766930847,214,0 +170766930897,214,0 +170766930944,215,0 +170766930992,214,0 +170766931040,215,0 +170766931088,215,0 +170766931136,215,0 +170766931186,215,0 +170766931235,215,0 +170766931283,215,0 +170766931331,215,0 +170766931379,213,0 +170766931427,213,0 +170766931476,214,0 +170766931526,214,0 +170766931575,214,0 +170766931624,214,0 +170766931672,214,0 +170766931722,214,0 +170766931770,214,0 +170766931818,214,0 +170766931867,215,0 +170766931915,215,0 +170766931965,215,0 +170766932014,215,0 +170766932064,215,0 +170766932112,215,0 +170766932159,214,0 +170766932209,214,0 +170766932257,214,0 +170766932305,214,0 +170766932353,214,0 +170766932401,214,0 +170766932449,215,0 +170766932497,215,0 +170766932545,215,0 +170766932592,215,0 +170766932640,215,0 +170766932688,215,0 +170766932736,215,0 +170766932784,215,0 +170766932832,215,0 +170766932880,215,0 +170766932928,215,0 +170766932976,214,0 +170766933024,214,0 +170766933073,214,0 +170766933121,214,0 +170766933169,214,0 +170766933217,214,0 +170766933265,215,0 +170766933315,215,0 +170766933363,215,0 +170766933411,215,0 +170766933459,215,0 +170766933508,215,0 +170766933557,215,0 +170766933605,216,0 +170766933653,215,0 +170766933701,215,0 +170766933751,214,0 +170766933799,214,0 +170766933847,214,0 +170766933895,214,0 +170766933943,214,0 +170766933991,214,0 +170766934038,215,0 +170766934086,215,0 +170766934134,215,0 +170766934182,215,0 +170766934230,215,0 +170766934279,215,0 +170766934327,215,0 +170766934375,215,0 +170766934423,215,0 +170766934473,215,0 +170766934521,215,0 +170766934569,214,0 +170766934618,214,0 +170766934666,214,0 +170766934714,214,0 +170766934762,215,0 +170766934809,214,0 +170766934857,214,0 +170766934905,215,0 +170766934953,215,0 +170766935001,215,0 +170766935049,215,0 +170766935097,215,0 +170766935145,215,0 +170766935194,216,0 +170766935242,215,0 +170766935290,215,0 +170766935338,215,0 +170766935386,214,0 +170766935434,214,0 +170766935481,214,0 +170766935531,214,0 +170766935579,214,0 +170766935627,214,0 +170766935675,214,0 +170766935723,214,0 +170766935771,215,0 +170766935819,215,0 +170766935867,215,0 +170766935915,215,0 +170766935963,216,0 +170766936011,215,0 +170766936060,215,0 +170766936108,215,0 +170766936157,214,0 +170766936207,214,0 +170766936255,214,0 +170766936303,214,0 +170766936351,214,0 +170766936400,214,0 +170766936450,215,0 +170766936498,215,0 +170766936545,215,0 +170766936593,215,0 +170766936641,215,0 +170766936691,216,0 +170766936739,216,0 +170766936788,215,0 +170766936836,215,0 +170766936884,215,0 +170766936932,215,0 +170766936981,214,0 +170766937029,214,0 +170766937079,214,0 +170766937127,215,0 +170766937176,214,0 +170766937226,215,0 +170766937274,215,0 +170766937322,215,0 +170766937370,215,0 +170766937417,215,0 +170766937465,215,0 +170766937513,215,0 +170766937561,215,0 +170766937608,215,0 +170766937656,214,0 +170766937704,215,0 +170766937754,214,0 +170766937802,214,0 +170766937851,214,0 +170766937899,214,0 +170766937947,214,0 +170766937995,214,0 +170766938043,214,0 +170766938090,215,0 +170766938138,215,0 +170766938186,215,0 +170766938234,215,0 +170766938282,215,0 +170766938330,215,0 +170766938378,215,0 +170766938426,215,0 +170766938475,215,0 +170766938523,215,0 +170766938573,213,0 +170766938621,213,0 +170766938670,213,0 +170766938718,214,0 +170766938767,214,0 +170766938817,214,0 +170766938866,214,0 +170766938914,214,0 +170766938962,214,0 +170766939010,215,0 +170766939059,215,0 +170766939107,215,0 +170766939155,215,0 +170766939203,215,0 +170766939253,215,0 +170766939302,215,0 +170766939350,215,0 +170766939398,213,0 +170766939446,213,0 +170766939494,213,0 +170766939542,213,0 +170766939590,214,0 +170766939638,214,0 +170766939686,214,0 +170766939735,214,0 +170766939783,214,0 +170766939833,215,0 +170766939882,215,0 +170766939932,215,0 +170766939981,215,0 +170766940029,215,0 +170766940079,215,0 +170766940127,215,0 +170766940175,214,0 +170766940223,214,0 +170766940270,214,0 +170766940318,214,0 +170766940366,214,0 +170766940414,214,0 +170766940462,214,0 +170766940512,214,0 +170766940560,214,0 +170766940608,215,0 +170766940657,215,0 +170766940705,215,0 +170766940753,215,0 +170766940801,215,0 +170766940849,215,0 +170766940897,215,0 +170766940946,215,0 +170766940994,214,0 +170766941042,214,0 +170766941090,214,0 +170766941138,214,0 +170766941187,215,0 +170766941235,215,0 +170766941285,215,0 +170766941334,215,0 +170766941382,215,0 +170766941430,215,0 +170766941478,215,0 +170766941526,216,0 +170766941575,215,0 +170766941623,215,0 +170766941671,215,0 +170766941719,215,0 +170766941768,214,0 +170766941818,214,0 +170766941866,214,0 +170766941914,215,0 +170766941962,214,0 +170766942010,215,0 +170766942058,215,0 +170766942107,215,0 +170766942157,215,0 +170766942206,215,0 +170766942256,215,0 +170766942304,216,0 +170766942352,215,0 +170766942401,215,0 +170766942451,215,0 +170766942499,215,0 +170766942547,215,0 +170766942595,214,0 +170766942643,214,0 +170766942692,214,0 +170766942740,214,0 +170766942788,214,0 +170766942836,214,0 +170766942884,215,0 +170766942932,215,0 +170766942980,215,0 +170766943028,215,0 +170766943075,215,0 +170766943125,215,0 +170766943173,215,0 +170766943221,215,0 +170766943269,215,0 +170766943318,215,0 +170766943366,214,0 +170766943415,214,0 +170766943465,214,0 +170766943513,214,0 +170766943561,214,0 +170766943609,214,0 +170766943657,214,0 +170766943705,214,0 +170766943754,215,0 +170766943804,215,0 +170766943851,215,0 +170766943901,215,0 +170766943950,215,0 +170766944000,215,0 +170766944048,215,0 +170766944096,215,0 +170766944145,215,0 +170766944193,213,0 +170766944241,214,0 +170766944289,214,0 +170766944338,214,0 +170766944386,214,0 +170766944434,214,0 +170766944482,214,0 +170766944531,215,0 +170766944579,215,0 +170766944627,215,0 +170766944675,215,0 +170766944723,215,0 +170766944772,215,0 +170766944822,215,0 +170766944870,215,0 +170766944919,215,0 +170766944967,215,0 +170766945017,213,0 +170766945066,213,0 +170766945114,214,0 +170766945163,213,0 +170766945211,214,0 +170766945259,214,0 +170766945307,214,0 +170766945357,214,0 +170766945405,215,0 +170766945454,215,0 +170766945502,215,0 +170766945550,215,0 +170766945598,215,0 +170766945645,215,0 +170766945693,215,0 +170766945743,215,0 +170766945791,213,0 +170766945839,213,0 +170766945888,213,0 +170766945936,213,0 +170766945984,213,0 +170766946034,213,0 +170766946081,214,0 +170766946131,214,0 +170766946179,214,0 +170766946227,214,0 +170766946275,215,0 +170766946324,215,0 +170766946372,215,0 +170766946420,215,0 +170766946468,215,0 +170766946516,215,0 +170766946564,214,0 +170766946613,213,0 +170766946661,213,0 +170766946709,213,0 +170766946756,213,0 +170766946804,213,0 +170766946852,214,0 +170766946900,214,0 +170766946948,214,0 +170766946996,214,0 +170766947043,215,0 +170766947091,214,0 +170766947139,215,0 +170766947189,215,0 +170766947237,215,0 +170766947286,215,0 +170766947334,215,0 +170766947382,214,0 +170766947430,213,0 +170766947478,213,0 +170766947526,213,0 +170766947573,213,0 +170766947623,213,0 +170766947671,214,0 +170766947719,214,0 +170766947767,214,0 +170766947815,214,0 +170766947864,214,0 +170766947912,215,0 +170766947960,214,0 +170766948009,215,0 +170766948057,215,0 +170766948105,215,0 +170766948153,215,0 +170766948201,215,0 +170766948249,214,0 +170766948297,214,0 +170766948344,214,0 +170766948392,214,0 +170766948440,214,0 +170766948488,214,0 +170766948535,214,0 +170766948585,215,0 +170766948633,215,0 +170766948680,215,0 +170766948728,215,0 +170766948778,215,0 +170766948826,215,0 +170766948875,215,0 +170766948923,215,0 +170766948971,215,0 +170766949019,214,0 +170766949066,214,0 +170766949116,214,0 +170766949164,215,0 +170766949212,215,0 +170766949259,215,0 +170766949307,215,0 +170766949355,215,0 +170766949403,215,0 +170766949452,215,0 +170766949500,215,0 +170766949548,215,0 +170766949596,215,0 +170766949643,215,0 +170766949691,215,0 +170766949741,215,0 +170766949788,214,0 +170766949836,214,0 +170766949884,214,0 +170766949932,214,0 +170766949980,215,0 +170766950028,215,0 +170766950076,215,0 +170766950124,215,0 +170766950171,215,0 +170766950219,215,0 +170766950267,215,0 +170766950315,215,0 +170766950363,215,0 +170766950411,215,0 +170766950459,215,0 +170766950507,215,0 +170766950556,215,0 +170766950604,215,0 +170766950653,215,0 +170766950701,214,0 +170766950749,214,0 +170766950799,214,0 +170766950848,214,0 +170766950898,214,0 +170766950946,215,0 +170766950993,215,0 +170766951041,215,0 +170766951091,215,0 +170766951139,215,0 +170766951188,215,0 +170766951236,215,0 +170766951284,215,0 +170766951332,215,0 +170766951380,215,0 +170766951427,215,0 +170766951475,215,0 +170766951523,215,0 +170766951571,214,0 +170766951619,214,0 +170766951667,214,0 +170766951715,214,0 +170766951762,214,0 +170766951810,214,0 +170766951858,215,0 +170766951906,214,0 +170766951954,215,0 +170766952002,214,0 +170766952050,215,0 +170766952099,215,0 +170766952147,215,0 +170766952195,215,0 +170766952243,215,0 +170766952290,215,0 +170766952340,215,0 +170766952388,215,0 +170766952435,214,0 +170766952483,214,0 +170766952533,214,0 +170766952582,214,0 +170766952630,214,0 +170766952678,214,0 +170766952726,214,0 +170766952774,214,0 +170766952823,215,0 +170766952871,215,0 +170766952919,215,0 +170766952969,215,0 +170766953017,215,0 +170766953066,215,0 +170766953114,215,0 +170766953162,215,0 +170766953209,215,0 +170766953259,215,0 +170766953307,214,0 +170766953355,214,0 +170766953402,215,0 +170766953450,215,0 +170766953498,214,0 +170766953546,215,0 +170766953594,215,0 +170766953642,215,0 +170766953689,215,0 +170766953737,215,0 +170766953785,215,0 +170766953833,216,0 +170766953881,215,0 +170766953928,217,0 +170766953976,215,0 +170766954024,216,0 +170766954072,215,0 +170766954121,215,0 +170766954169,215,0 +170766954219,215,0 +170766954268,215,0 +170766954316,215,0 +170766954364,215,0 +170766954412,215,0 +170766954459,215,0 +170766954507,215,0 +170766954555,215,0 +170766954603,216,0 +170766954651,216,0 +170766954700,215,0 +170766954748,215,0 +170766954796,216,0 +170766954844,216,0 +170766954892,215,0 +170766954939,215,0 +170766954987,215,0 +170766955035,215,0 +170766955083,214,0 +170766955131,214,0 +170766955178,214,0 +170766955226,214,0 +170766955274,214,0 +170766955322,214,0 +170766955370,215,0 +170766955419,215,0 +170766955467,215,0 +170766955515,215,0 +170766955563,215,0 +170766955611,215,0 +170766955660,215,0 +170766955708,215,0 +170766955756,215,0 +170766955804,215,0 +170766955852,215,0 +170766955900,215,0 +170766955947,215,0 +170766955995,213,0 +170766956043,214,0 +170766956091,214,0 +170766956139,214,0 +170766956187,214,0 +170766956236,214,0 +170766956284,214,0 +170766956332,214,0 +170766956379,215,0 +170766956427,215,0 +170766956475,215,0 +170766956523,215,0 +170766956571,215,0 +170766956619,215,0 +170766956666,215,0 +170766956714,215,0 +170766956762,215,0 +170766956812,215,0 +170766956859,213,0 +170766956909,213,0 +170766956957,213,0 +170766957005,213,0 +170766957053,213,0 +170766957102,214,0 +170766957150,214,0 +170766957198,214,0 +170766957246,214,0 +170766957293,214,0 +170766957341,214,0 +170766957389,214,0 +170766957437,215,0 +170766957485,215,0 +170766957533,215,0 +170766957580,215,0 +170766957628,215,0 +170766957678,215,0 +170766957726,213,0 +170766957774,213,0 +170766957821,213,0 +170766957869,213,0 +170766957917,213,0 +170766957967,213,0 +170766958014,213,0 +170766958062,213,0 +170766958112,213,0 +170766958161,214,0 +170766958211,214,0 +170766958260,214,0 +170766958308,214,0 +170766958356,215,0 +170766958404,215,0 +170766958452,214,0 +170766958500,215,0 +170766958548,215,0 +170766958596,215,0 +170766958644,213,0 +170766958691,213,0 +170766958739,213,0 +170766958787,213,0 +170766958837,213,0 +170766958885,213,0 +170766958932,214,0 +170766958980,214,0 +170766959028,214,0 +170766959076,214,0 +170766959124,214,0 +170766959172,214,0 +170766959221,215,0 +170766959269,215,0 +170766959319,215,0 +170766959367,215,0 +170766959415,215,0 +170766959464,215,0 +170766959512,214,0 +170766959560,213,0 +170766959608,214,0 +170766959655,214,0 +170766959703,214,0 +170766959751,214,0 +170766959799,214,0 +170766959847,215,0 +170766959895,215,0 +170766959943,215,0 +170766959991,215,0 +170766960039,215,0 +170766960087,215,0 +170766960136,215,0 +170766960184,215,0 +170766960234,215,0 +170766960283,215,0 +170766960331,215,0 +170766960379,214,0 +170766960427,213,0 +170766960475,213,0 +170766960523,213,0 +170766960571,214,0 +170766960619,214,0 +170766960667,214,0 +170766960715,214,0 +170766960763,214,0 +170766960810,214,0 +170766960858,214,0 +170766960908,214,0 +170766960956,214,0 +170766961004,214,0 +170766961052,214,0 +170766961100,214,0 +170766961148,214,0 +170766961196,214,0 +170766961243,214,0 +170766961291,213,0 +170766961339,213,0 +170766961387,213,0 +170766961435,213,0 +170766961484,213,0 +170766961532,213,0 +170766961580,213,0 +170766961628,213,0 +170766961675,213,0 +170766961723,213,0 +170766961771,214,0 +170766961819,214,0 +170766961867,214,0 +170766961915,214,0 +170766961963,214,0 +170766962010,214,0 +170766962058,214,0 +170766962106,215,0 +170766962154,213,0 +170766962202,213,0 +170766962250,213,0 +170766962298,213,0 +170766962346,213,0 +170766962393,213,0 +170766962441,213,0 +170766962489,213,0 +170766962537,213,0 +170766962585,214,0 +170766962633,214,0 +170766962680,214,0 +170766962728,214,0 +170766962776,214,0 +170766962825,214,0 +170766962873,214,0 +170766962921,214,0 +170766962969,214,0 +170766963017,214,0 +170766963064,213,0 +170766963112,213,0 +170766963162,213,0 +170766963209,213,0 +170766963257,213,0 +170766963305,213,0 +170766963353,213,0 +170766963401,213,0 +170766963449,214,0 +170766963496,214,0 +170766963544,214,0 +170766963592,214,0 +170766963642,215,0 +170766963691,215,0 +170766963739,214,0 +170766963787,215,0 +170766963835,215,0 +170766963883,214,0 +170766963931,213,0 +170766963979,213,0 +170766964027,213,0 +170766964075,213,0 +170766964122,213,0 +170766964170,214,0 +170766964218,214,0 +170766964266,214,0 +170766964314,214,0 +170766964364,214,0 +170766964412,214,0 +170766964461,215,0 +170766964509,215,0 +170766964559,215,0 +170766964606,215,0 +170766964656,215,0 +170766964704,215,0 +170766964752,215,0 +170766964800,214,0 +170766964849,214,0 +170766964898,214,0 +170766964946,214,0 +170766964994,214,0 +170766965042,214,0 +170766965090,214,0 +170766965138,214,0 +170766965186,214,0 +170766965233,215,0 +170766965281,215,0 +170766965329,215,0 +170766965377,215,0 +170766965425,215,0 +170766965473,215,0 +170766965522,215,0 +170766965570,215,0 +170766965618,215,0 +170766965666,215,0 +170766965714,214,0 +170766965761,214,0 +170766965809,214,0 +170766965857,214,0 +170766965905,214,0 +170766965953,214,0 +170766966002,214,0 +170766966050,214,0 +170766966098,215,0 +170766966146,215,0 +170766966194,215,0 +170766966242,215,0 +170766966290,215,0 +170766966338,215,0 +170766966386,215,0 +170766966435,215,0 +170766966483,215,0 +170766966533,214,0 +170766966581,214,0 +170766966629,213,0 +170766966677,214,0 +170766966725,214,0 +170766966773,214,0 +170766966821,214,0 +170766966868,214,0 +170766966916,214,0 +170766966964,215,0 +170766967012,214,0 +170766967060,214,0 +170766967108,215,0 +170766967156,215,0 +170766967203,215,0 +170766967251,215,0 +170766967299,215,0 +170766967347,215,0 +170766967395,214,0 +170766967443,213,0 +170766967491,213,0 +170766967538,214,0 +170766967586,214,0 +170766967634,214,0 +170766967682,214,0 +170766967730,214,0 +170766967778,214,0 +170766967825,215,0 +170766967873,214,0 +170766967921,215,0 +170766967971,215,0 +170766968019,215,0 +170766968068,215,0 +170766968118,215,0 +170766968167,215,0 +170766968217,215,0 +170766968266,215,0 +170766968316,213,0 +170766968365,213,0 +170766968415,214,0 +170766968463,214,0 +170766968511,214,0 +170766968560,214,0 +170766968610,214,0 +170766968658,214,0 +170766968707,214,0 +170766968757,215,0 +170766968805,215,0 +170766968853,215,0 +170766968901,215,0 +170766968949,215,0 +170766968998,215,0 +170766969046,215,0 +170766969094,215,0 +170766969142,214,0 +170766969190,213,0 +170766969239,214,0 +170766969287,214,0 +170766969335,214,0 +170766969383,214,0 +170766969431,214,0 +170766969479,215,0 +170766969527,214,0 +170766969575,215,0 +170766969625,215,0 +170766969672,215,0 +170766969720,215,0 +170766969770,215,0 +170766969819,215,0 +170766969867,215,0 +170766969915,215,0 +170766969964,215,0 +170766970012,214,0 +170766970060,213,0 +170766970108,213,0 +170766970156,214,0 +170766970205,214,0 +170766970253,214,0 +170766970301,214,0 +170766970350,214,0 +170766970398,215,0 +170766970446,214,0 +170766970494,215,0 +170766970541,215,0 +170766970589,215,0 +170766970637,215,0 +170766970685,215,0 +170766970733,215,0 +170766970781,215,0 +170766970830,215,0 +170766970878,214,0 +170766970926,213,0 +170766970974,213,0 +170766971022,213,0 +170766971070,213,0 +170766971117,214,0 +170766971165,213,0 +170766971215,214,0 +170766971263,214,0 +170766971310,214,0 +170766971358,215,0 +170766971406,215,0 +170766971454,215,0 +170766971502,215,0 +170766971550,215,0 +170766971598,215,0 +170766971647,216,0 +170766971695,216,0 +170766971743,217,0 +170766971791,213,0 +170766971838,213,0 +170766971888,213,0 +170766971936,213,0 +170766971984,213,0 +170766972031,213,0 +170766972079,214,0 +170766972127,214,0 +170766972175,214,0 +170766972223,214,0 +170766972271,215,0 +170766972320,215,0 +170766972368,215,0 +170766972416,215,0 +170766972464,215,0 +170766972512,215,0 +170766972560,215,0 +170766972608,215,0 +170766972657,213,0 +170766972705,213,0 +170766972753,213,0 +170766972801,213,0 +170766972849,214,0 +170766972897,214,0 +170766972945,214,0 +170766972993,214,0 +170766973040,214,0 +170766973088,214,0 +170766973136,214,0 +170766973184,215,0 +170766973232,215,0 +170766973280,215,0 +170766973328,215,0 +170766973376,215,0 +170766973423,215,0 +170766973473,215,0 +170766973521,214,0 +170766973569,213,0 +170766973616,213,0 +170766973666,213,0 +170766973714,213,0 +170766973762,213,0 +170766973810,213,0 +170766973859,214,0 +170766973909,214,0 +170766973956,214,0 +170766974006,214,0 +170766974054,214,0 +170766974102,215,0 +170766974150,215,0 +170766974198,215,0 +170766974246,215,0 +170766974294,215,0 +170766974342,215,0 +170766974391,215,0 +170766974439,214,0 +170766974487,213,0 +170766974537,213,0 +170766974584,213,0 +170766974632,214,0 +170766974680,214,0 +170766974728,214,0 +170766974778,214,0 +170766974827,214,0 +170766974877,214,0 +170766974924,214,0 +170766974972,214,0 +170766975022,215,0 +170766975070,215,0 +170766975118,215,0 +170766975166,215,0 +170766975214,215,0 +170766975262,215,0 +170766975310,216,0 +170766975359,214,0 +170766975407,213,0 +170766975455,213,0 +170766975503,214,0 +170766975551,214,0 +170766975599,214,0 +170766975647,214,0 +170766975695,214,0 +170766975742,214,0 +170766975790,214,0 +170766975838,214,0 +170766975886,215,0 +170766975934,215,0 +170766975982,215,0 +170766976030,215,0 +170766976078,215,0 +170766976126,215,0 +170766976174,215,0 +170766976222,215,0 +170766976271,214,0 +170766976319,213,0 +170766976367,213,0 +170766976417,214,0 +170766976466,214,0 +170766976514,214,0 +170766976562,214,0 +170766976612,214,0 +170766976661,215,0 +170766976709,214,0 +170766976757,214,0 +170766976804,215,0 +170766976852,215,0 +170766976900,215,0 +170766976948,215,0 +170766976997,215,0 +170766977045,215,0 +170766977093,215,0 +170766977141,215,0 +170766977189,214,0 +170766977237,213,0 +170766977285,214,0 +170766977333,214,0 +170766977381,214,0 +170766977429,214,0 +170766977477,214,0 +170766977526,214,0 +170766977574,215,0 +170766977622,214,0 +170766977671,215,0 +170766977721,215,0 +170766977769,217,0 +170766977817,216,0 +170766977866,215,0 +170766977914,215,0 +170766977964,216,0 +170766978013,215,0 +170766978061,215,0 +170766978111,214,0 +170766978159,214,0 +170766978207,214,0 +170766978254,214,0 +170766978304,214,0 +170766978352,214,0 +170766978400,214,0 +170766978448,214,0 +170766978496,215,0 +170766978544,215,0 +170766978592,215,0 +170766978640,215,0 +170766978687,215,0 +170766978735,215,0 +170766978783,215,0 +170766978831,215,0 +170766978879,215,0 +170766978927,215,0 +170766978974,215,0 +170766979022,213,0 +170766979070,213,0 +170766979120,213,0 +170766979169,213,0 +170766979217,214,0 +170766979265,213,0 +170766979313,214,0 +170766979360,214,0 +170766979408,214,0 +170766979458,214,0 +170766979506,214,0 +170766979555,214,0 +170766979603,214,0 +170766979651,215,0 +170766979698,215,0 +170766979746,215,0 +170766979794,215,0 +170766979842,215,0 +170766979890,215,0 +170766979938,214,0 +170766979985,213,0 +170766980033,213,0 +170766980081,213,0 +170766980129,213,0 +170766980178,213,0 +170766980226,214,0 +170766980276,214,0 +170766980324,214,0 +170766980372,214,0 +170766980420,215,0 +170766980468,215,0 +170766980516,215,0 +170766980564,215,0 +170766980612,215,0 +170766980660,215,0 +170766980708,215,0 +170766980757,215,0 +170766980805,215,0 +170766980855,215,0 +170766980904,213,0 +170766980952,213,0 +170766981001,213,0 +170766981049,213,0 +170766981097,213,0 +170766981147,213,0 +170766981195,213,0 +170766981243,214,0 +170766981291,214,0 +170766981339,214,0 +170766981388,214,0 +170766981436,215,0 +170766981484,214,0 +170766981532,215,0 +170766981582,215,0 +170766981630,215,0 +170766981678,215,0 +170766981726,215,0 +170766981773,213,0 +170766981821,213,0 +170766981871,213,0 +170766981919,213,0 +170766981968,214,0 +170766982016,213,0 +170766982064,214,0 +170766982112,214,0 +170766982160,214,0 +170766982210,214,0 +170766982257,214,0 +170766982305,215,0 +170766982353,215,0 +170766982401,215,0 +170766982449,215,0 +170766982497,215,0 +170766982547,215,0 +170766982595,215,0 +170766982644,215,0 +170766982692,214,0 +170766982740,213,0 +170766982788,213,0 +170766982836,213,0 +170766982884,214,0 +170766982932,214,0 +170766982981,214,0 +170766983031,214,0 +170766983079,214,0 +170766983127,214,0 +170766983174,214,0 +170766983222,215,0 +170766983270,215,0 +170766983318,215,0 +170766983367,215,0 +170766983415,215,0 +170766983463,216,0 +170766983511,215,0 +170766983559,215,0 +170766983607,214,0 +170766983654,213,0 +170766983702,213,0 +170766983750,213,0 +170766983798,213,0 +170766983846,214,0 +170766983894,214,0 +170766983943,214,0 +170766983991,214,0 +170766984039,214,0 +170766984087,214,0 +170766984136,214,0 +170766984184,214,0 +170766984232,214,0 +170766984282,215,0 +170766984330,215,0 +170766984378,215,0 +170766984426,215,0 +170766984474,215,0 +170766984522,214,0 +170766984570,213,0 +170766984617,213,0 +170766984665,213,0 +170766984713,213,0 +170766984761,213,0 +170766984809,213,0 +170766984858,214,0 +170766984906,214,0 +170766984954,213,0 +170766985002,214,0 +170766985052,214,0 +170766985099,214,0 +170766985149,215,0 +170766985197,214,0 +170766985246,215,0 +170766985294,215,0 +170766985342,215,0 +170766985390,215,0 +170766985438,214,0 +170766985486,213,0 +170766985535,213,0 +170766985585,213,0 +170766985634,213,0 +170766985682,213,0 +170766985730,214,0 +170766985778,214,0 +170766985825,213,0 +170766985873,214,0 +170766985921,214,0 +170766985969,214,0 +170766986017,214,0 +170766986064,214,0 +170766986112,215,0 +170766986160,215,0 +170766986208,215,0 +170766986256,215,0 +170766986305,215,0 +170766986353,213,0 +170766986401,213,0 +170766986449,213,0 +170766986497,213,0 +170766986547,213,0 +170766986594,214,0 +170766986642,214,0 +170766986690,214,0 +170766986738,214,0 +170766986786,214,0 +170766986834,215,0 +170766986881,215,0 +170766986929,215,0 +170766986977,215,0 +170766987025,215,0 +170766987073,215,0 +170766987121,215,0 +170766987169,215,0 +170766987216,215,0 +170766987264,214,0 +170766987314,213,0 +170766987361,213,0 +170766987409,213,0 +170766987457,214,0 +170766987505,214,0 +170766987553,214,0 +170766987601,214,0 +170766987649,214,0 +170766987696,215,0 +170766987744,215,0 +170766987792,215,0 +170766987840,215,0 +170766987888,215,0 +170766987936,215,0 +170766987985,215,0 +170766988033,215,0 +170766988081,215,0 +170766988128,215,0 +170766988176,215,0 +170766988224,213,0 +170766988272,213,0 +170766988322,213,0 +170766988370,214,0 +170766988419,214,0 +170766988469,214,0 +170766988516,214,0 +170766988566,214,0 +170766988615,215,0 +170766988663,215,0 +170766988711,215,0 +170766988761,215,0 +170766988809,215,0 +170766988857,215,0 +170766988905,215,0 +170766988953,215,0 +170766989002,215,0 +170766989050,215,0 +170766989098,214,0 +170766989146,214,0 +170766989196,214,0 +170766989243,214,0 +170766989291,214,0 +170766989339,214,0 +170766989387,214,0 +170766989437,214,0 +170766989485,214,0 +170766989533,214,0 +170766989580,215,0 +170766989628,215,0 +170766989676,215,0 +170766989726,215,0 +170766989775,215,0 +170766989825,215,0 +170766989873,215,0 +170766989922,215,0 +170766989970,215,0 +170766990020,214,0 +170766990069,214,0 +170766990119,214,0 +170766990168,214,0 +170766990218,214,0 +170766990266,214,0 +170766990314,214,0 +170766990363,215,0 +170766990411,215,0 +170766990459,215,0 +170766990509,215,0 +170766990558,215,0 +170766990606,215,0 +170766990654,215,0 +170766990702,216,0 +170766990750,215,0 +170766990797,216,0 +170766990845,215,0 +170766990895,215,0 +170766990943,214,0 +170766990992,214,0 +170766991040,214,0 +170766991088,214,0 +170766991138,214,0 +170766991185,214,0 +170766991235,214,0 +170766991283,215,0 +170766991331,215,0 +170766991380,215,0 +170766991428,215,0 +170766991478,215,0 +170766991527,215,0 +170766991577,215,0 +170766991625,215,0 +170766991673,215,0 +170766991721,215,0 +170766991769,215,0 +170766991817,215,0 +170766991864,213,0 +170766991914,213,0 +170766991962,213,0 +170766992010,213,0 +170766992058,214,0 +170766992106,214,0 +170766992154,214,0 +170766992202,214,0 +170766992250,215,0 +170766992297,214,0 +170766992345,215,0 +170766992395,215,0 +170766992443,215,0 +170766992492,215,0 +170766992542,215,0 +170766992591,215,0 +170766992641,215,0 +170766992690,216,0 +170766992740,215,0 +170766992788,213,0 +170766992837,213,0 +170766992887,213,0 +170766992935,213,0 +170766992984,213,0 +170766993032,214,0 +170766993080,214,0 +170766993130,214,0 +170766993179,214,0 +170766993229,214,0 +170766993277,215,0 +170766993325,214,0 +170766993374,215,0 +170766993422,215,0 +170766993472,215,0 +170766993519,215,0 +170766993567,215,0 +170766993615,215,0 +170766993663,215,0 +170766993711,213,0 +170766993761,213,0 +170766993810,213,0 +170766993858,213,0 +170766993906,213,0 +170766993956,213,0 +170766994004,213,0 +170766994053,213,0 +170766994101,214,0 +170766994151,214,0 +170766994199,214,0 +170766994248,214,0 +170766994296,214,0 +170766994344,214,0 +170766994392,215,0 +170766994440,215,0 +170766994488,215,0 +170766994536,215,0 +170766994585,215,0 +170766994635,215,0 +170766994684,213,0 +170766994732,213,0 +170766994780,213,0 +170766994828,213,0 +170766994876,213,0 +170766994924,213,0 +170766994974,213,0 +170766995021,213,0 +170766995069,214,0 +170766995119,214,0 +170766995167,214,0 +170766995215,214,0 +170766995263,214,0 +170766995312,214,0 +170766995360,214,0 +170766995408,215,0 +170766995456,215,0 +170766995506,215,0 +170766995555,215,0 +170766995603,213,0 +170766995651,213,0 +170766995701,213,0 +170766995749,213,0 +170766995798,213,0 +170766995846,213,0 +170766995894,214,0 +170766995942,214,0 +170766995990,214,0 +170766996038,214,0 +170766996087,214,0 +170766996135,215,0 +170766996183,214,0 +170766996231,215,0 +170766996279,215,0 +170766996327,215,0 +170766996375,215,0 +170766996422,215,0 +170766996472,215,0 +170766996521,213,0 +170766996569,213,0 +170766996617,213,0 +170766996665,213,0 +170766996714,213,0 +170766996762,213,0 +170766996810,214,0 +170766996860,214,0 +170766996909,214,0 +170766996959,214,0 +170766997008,214,0 +170766997056,214,0 +170766997104,215,0 +170766997152,215,0 +170766997201,215,0 +170766997249,215,0 +170766997297,215,0 +170766997345,215,0 +170766997393,215,0 +170766997441,215,0 +170766997491,213,0 +170766997540,213,0 +170766997590,213,0 +170766997637,213,0 +170766997687,213,0 +170766997735,213,0 +170766997784,213,0 +170766997834,213,0 +170766997882,213,0 +170766997931,214,0 +170766997979,214,0 +170766998028,214,0 +170766998078,214,0 +170766998126,215,0 +170766998175,215,0 +170766998225,215,0 +170766998273,215,0 +170766998321,215,0 +170766998368,215,0 +170766998416,213,0 +170766998464,213,0 +170766998512,213,0 +170766998560,213,0 +170766998608,213,0 +170766998656,213,0 +170766998704,213,0 +170766998753,213,0 +170766998801,213,0 +170766998849,214,0 +170766998897,214,0 +170766998944,214,0 +170766998992,214,0 +170766999042,214,0 +170766999090,214,0 +170766999139,215,0 +170766999189,215,0 +170766999237,215,0 +170766999284,215,0 +170766999334,214,0 +170766999383,213,0 +170766999431,213,0 +170766999479,213,0 +170766999527,213,0 +170766999575,213,0 +170766999623,213,0 +170766999671,213,0 +170766999719,213,0 +170766999767,213,0 +170766999816,213,0 +170766999864,214,0 +170766999912,214,0 +170766999960,214,0 +170767000008,214,0 +170767000056,214,0 +170767000104,215,0 +170767000153,215,0 +170767000201,215,0 +170767000251,215,0 +170767000299,213,0 +170767000347,213,0 +170767000395,213,0 +170767000443,212,0 +170767000491,213,0 +170767000538,213,0 +170767000586,213,0 +170767000634,213,0 +170767000682,213,0 +170767000730,214,0 +170767000778,214,0 +170767000826,214,0 +170767000874,214,0 +170767000921,214,0 +170767000969,215,0 +170767001017,214,0 +170767001065,215,0 +170767001113,215,0 +170767001161,215,0 +170767001209,215,0 +170767001257,213,0 +170767001305,213,0 +170767001353,213,0 +170767001402,213,0 +170767001451,213,0 +170767001499,214,0 +170767001547,214,0 +170767001595,214,0 +170767001644,214,0 +170767001692,214,0 +170767001741,215,0 +170767001789,215,0 +170767001837,215,0 +170767001887,215,0 +170767001935,215,0 +170767001983,215,0 +170767002031,215,0 +170767002078,215,0 +170767002128,214,0 +170767002176,213,0 +170767002226,213,0 +170767002273,213,0 +170767002321,213,0 +170767002371,214,0 +170767002419,214,0 +170767002468,214,0 +170767002518,214,0 +170767002566,214,0 +170767002615,214,0 +170767002663,215,0 +170767002713,215,0 +170767002761,215,0 +170767002808,215,0 +170767002858,215,0 +170767002907,215,0 +170767002955,215,0 +170767003005,215,0 +170767003052,215,0 +170767003100,213,0 +170767003148,213,0 +170767003196,213,0 +170767003244,213,0 +170767003291,213,0 +170767003339,214,0 +170767003389,214,0 +170767003436,214,0 +170767003484,214,0 +170767003532,214,0 +170767003580,214,0 +170767003630,215,0 +170767003678,215,0 +170767003725,215,0 +170767003773,215,0 +170767003823,215,0 +170767003871,215,0 +170767003919,215,0 +170767003967,215,0 +170767004014,215,0 +170767004062,213,0 +170767004110,213,0 +170767004158,213,0 +170767004208,213,0 +170767004256,213,0 +170767004303,214,0 +170767004351,214,0 +170767004399,214,0 +170767004447,214,0 +170767004497,214,0 +170767004545,214,0 +170767004594,214,0 +170767004642,214,0 +170767004690,214,0 +170767004738,214,0 +170767004786,215,0 +170767004835,215,0 +170767004883,215,0 +170767004931,215,0 +170767004981,213,0 +170767005029,213,0 +170767005076,213,0 +170767005126,213,0 +170767005174,213,0 +170767005222,214,0 +170767005270,213,0 +170767005319,214,0 +170767005367,214,0 +170767005417,214,0 +170767005465,214,0 +170767005513,214,0 +170767005562,214,0 +170767005610,215,0 +170767005660,215,0 +170767005707,215,0 +170767005755,215,0 +170767005805,215,0 +170767005853,215,0 +170767005901,213,0 +170767005949,213,0 +170767005996,213,0 +170767006046,213,0 +170767006094,213,0 +170767006142,213,0 +170767006190,214,0 +170767006238,214,0 +170767006287,214,0 +170767006335,214,0 +170767006383,214,0 +170767006431,214,0 +170767006479,215,0 +170767006528,215,0 +170767006576,215,0 +170767006624,215,0 +170767006674,215,0 +170767006722,215,0 +170767006771,215,0 +170767006819,215,0 +170767006867,214,0 +170767006916,213,0 +170767006966,213,0 +170767007014,214,0 +170767007063,214,0 +170767007111,214,0 +170767007161,214,0 +170767007209,214,0 +170767007257,215,0 +170767007306,215,0 +170767007354,215,0 +170767007402,215,0 +170767007450,215,0 +170767007498,215,0 +170767007547,215,0 +170767007595,215,0 +170767007643,215,0 +170767007691,215,0 +170767007741,215,0 +170767007789,213,0 +170767007837,213,0 +170767007885,213,0 +170767007934,213,0 +170767007982,213,0 +170767008030,214,0 +170767008079,214,0 +170767008129,214,0 +170767008177,214,0 +170767008226,214,0 +170767008274,214,0 +170767008322,215,0 +170767008370,214,0 +170767008418,215,0 +170767008467,215,0 +170767008517,215,0 +170767008566,215,0 +170767008616,214,0 +170767008664,215,0 +170767008712,214,0 +170767008761,213,0 +170767008811,213,0 +170767008859,213,0 +170767008908,213,0 +170767008956,213,0 +170767009006,213,0 +170767009054,213,0 +170767009101,213,0 +170767009149,214,0 +170767009197,214,0 +170767009245,214,0 +170767009293,214,0 +170767009343,215,0 +170767009391,214,0 +170767009439,215,0 +170767009488,215,0 +170767009536,215,0 +170767009584,214,0 +170767009632,215,0 +170767009680,213,0 +170767009728,213,0 +170767009777,213,0 +170767009825,213,0 +170767009873,213,0 +170767009922,213,0 +170767009972,213,0 +170767010020,213,0 +170767010068,213,0 +170767010117,214,0 +170767010165,214,0 +170767010213,214,0 +170767010261,214,0 +170767010309,215,0 +170767010358,215,0 +170767010406,215,0 +170767010454,215,0 +170767010502,216,0 +170767010550,215,0 +170767010600,213,0 +170767010647,213,0 +170767010695,213,0 +170767010743,213,0 +170767010793,213,0 +170767010841,213,0 +170767010889,213,0 +170767010938,213,0 +170767010986,213,0 +170767011034,213,0 +170767011083,214,0 +170767011133,214,0 +170767011181,214,0 +170767011229,215,0 +170767011277,215,0 +170767011326,215,0 +170767011374,215,0 +170767011424,215,0 +170767011473,215,0 +170767011521,215,0 +170767011569,213,0 +170767011617,213,0 +170767011665,213,0 +170767011713,213,0 +170767011762,214,0 +170767011810,213,0 +170767011858,214,0 +170767011906,214,0 +170767011954,214,0 +170767012002,214,0 +170767012050,214,0 +170767012098,214,0 +170767012146,214,0 +170767012194,214,0 +170767012242,214,0 +170767012290,215,0 +170767012337,215,0 +170767012387,215,0 +170767012435,215,0 +170767012483,213,0 +170767012532,213,0 +170767012582,213,0 +170767012631,213,0 +170767012680,213,0 +170767012729,213,0 +170767012777,213,0 +170767012825,213,0 +170767012873,213,0 +170767012921,213,0 +170767012970,214,0 +170767013018,214,0 +170767013066,214,0 +170767013114,214,0 +170767013163,215,0 +170767013213,215,0 +170767013261,214,0 +170767013310,214,0 +170767013360,215,0 +170767013408,213,0 +170767013457,213,0 +170767013505,213,0 +170767013553,213,0 +170767013601,213,0 +170767013649,213,0 +170767013697,213,0 +170767013745,213,0 +170767013793,214,0 +170767013842,214,0 +170767013892,214,0 +170767013940,214,0 +170767013988,214,0 +170767014036,214,0 +170767014084,215,0 +170767014133,215,0 +170767014181,215,0 +170767014229,215,0 +170767014278,215,0 +170767014326,215,0 +170767014376,213,0 +170767014424,213,0 +170767014472,213,0 +170767014519,213,0 +170767014567,213,0 +170767014615,213,0 +170767014665,213,0 +170767014714,214,0 +170767014762,214,0 +170767014810,214,0 +170767014859,214,0 +170767014909,214,0 +170767014957,215,0 +170767015005,215,0 +170767015054,215,0 +170767015102,215,0 +170767015150,215,0 +170767015198,215,0 +170767015246,215,0 +170767015294,213,0 +170767015342,213,0 +170767015392,213,0 +170767015440,213,0 +170767015489,213,0 +170767015537,213,0 +170767015585,214,0 +170767015633,214,0 +170767015683,214,0 +170767015731,214,0 +170767015780,214,0 +170767015829,215,0 +170767015877,215,0 +170767015927,215,0 +170767015975,215,0 +170767016023,215,0 +170767016072,215,0 +170767016120,215,0 +170767016168,215,0 +170767016216,213,0 +170767016265,213,0 +170767016313,213,0 +170767016361,213,0 +170767016411,213,0 +170767016460,213,0 +170767016508,213,0 +170767016556,213,0 +170767016605,213,0 +170767016653,214,0 +170767016701,214,0 +170767016751,214,0 +170767016799,214,0 +170767016847,215,0 +170767016895,215,0 +170767016944,215,0 +170767016994,215,0 +170767017042,215,0 +170767017089,215,0 +170767017139,215,0 +170767017188,213,0 +170767017238,213,0 +170767017286,213,0 +170767017334,213,0 +170767017383,213,0 +170767017433,214,0 +170767017482,213,0 +170767017530,214,0 +170767017578,214,0 +170767017626,214,0 +170767017674,215,0 +170767017722,214,0 +170767017770,215,0 +170767017818,215,0 +170767017866,215,0 +170767017915,215,0 +170767017963,215,0 +170767018011,215,0 +170767018059,215,0 +170767018109,213,0 +170767018157,213,0 +170767018205,213,0 +170767018255,213,0 +170767018303,213,0 +170767018351,213,0 +170767018399,214,0 +170767018447,214,0 +170767018496,214,0 +170767018546,214,0 +170767018594,214,0 +170767018642,214,0 +170767018690,214,0 +170767018739,215,0 +170767018787,215,0 +170767018837,215,0 +170767018884,215,0 +170767018934,215,0 +170767018983,215,0 +170767019031,214,0 +170767019079,213,0 +170767019129,213,0 +170767019178,213,0 +170767019226,213,0 +170767019276,213,0 +170767019324,213,0 +170767019371,214,0 +170767019421,214,0 +170767019470,214,0 +170767019520,214,0 +170767019569,214,0 +170767019617,215,0 +170767019665,215,0 +170767019713,215,0 +170767019761,215,0 +170767019810,215,0 +170767019858,215,0 +170767019906,215,0 +170767019954,215,0 +170767020002,213,0 +170767020051,213,0 +170767020101,213,0 +170767020149,213,0 +170767020197,214,0 +170767020245,214,0 +170767020293,214,0 +170767020341,214,0 +170767020390,214,0 +170767020438,214,0 +170767020487,214,0 +170767020535,215,0 +170767020583,215,0 +170767020631,215,0 +170767020679,215,0 +170767020727,215,0 +170767020775,215,0 +170767020823,215,0 +170767020871,215,0 +170767020921,213,0 +170767020970,213,0 +170767021020,213,0 +170767021067,213,0 +170767021117,213,0 +170767021166,213,0 +170767021216,213,0 +170767021264,213,0 +170767021312,214,0 +170767021361,214,0 +170767021409,214,0 +170767021457,214,0 +170767021507,215,0 +170767021556,215,0 +170767021606,215,0 +170767021654,215,0 +170767021703,215,0 +170767021753,216,0 +170767021801,215,0 +170767021850,214,0 +170767021898,213,0 +170767021946,213,0 +170767021994,213,0 +170767022042,213,0 +170767022090,213,0 +170767022140,213,0 +170767022189,214,0 +170767022239,214,0 +170767022288,214,0 +170767022336,214,0 +170767022385,214,0 +170767022433,215,0 +170767022481,215,0 +170767022529,215,0 +170767022579,215,0 +170767022628,215,0 +170767022678,215,0 +170767022726,215,0 +170767022774,213,0 +170767022823,213,0 +170767022871,213,0 +170767022919,213,0 +170767022968,213,0 +170767023016,213,0 +170767023064,213,0 +170767023112,214,0 +170767023162,214,0 +170767023211,214,0 +170767023261,214,0 +170767023309,215,0 +170767023356,214,0 +170767023404,215,0 +170767023452,215,0 +170767023500,215,0 +170767023548,215,0 +170767023596,215,0 +170767023644,215,0 +170767023692,215,0 +170767023739,213,0 +170767023787,213,0 +170767023835,213,0 +170767023883,213,0 +170767023931,213,0 +170767023979,214,0 +170767024027,214,0 +170767024074,214,0 +170767024122,214,0 +170767024170,214,0 +170767024219,214,0 +170767024267,215,0 +170767024315,215,0 +170767024365,215,0 +170767024412,215,0 +170767024460,215,0 +170767024508,215,0 +170767024558,215,0 +170767024606,215,0 +170767024653,213,0 +170767024701,213,0 +170767024749,213,0 +170767024797,213,0 +170767024845,213,0 +170767024892,214,0 +170767024940,214,0 +170767024988,214,0 +170767025038,214,0 +170767025085,214,0 +170767025135,214,0 +170767025183,214,0 +170767025231,215,0 +170767025278,215,0 +170767025326,215,0 +170767025374,215,0 +170767025422,215,0 +170767025470,215,0 +170767025518,215,0 +170767025567,213,0 +170767025615,213,0 +170767025663,213,0 +170767025710,213,0 +170767025758,213,0 +170767025806,213,0 +170767025854,213,0 +170767025902,214,0 +170767025951,214,0 +170767025999,214,0 +170767026047,214,0 +170767026095,214,0 +170767026143,214,0 +170767026191,215,0 +170767026238,215,0 +170767026286,215,0 +170767026334,215,0 +170767026382,215,0 +170767026430,215,0 +170767026478,214,0 +170767026525,213,0 +170767026573,213,0 +170767026623,213,0 +170767026671,213,0 +170767026718,213,0 +170767026768,213,0 +170767026816,213,0 +170767026864,213,0 +170767026912,213,0 +170767026959,213,0 +170767027007,213,0 +170767027055,214,0 +170767027103,214,0 +170767027151,214,0 +170767027199,214,0 +170767027247,214,0 +170767027294,214,0 +170767027342,215,0 +170767027390,215,0 +170767027438,213,0 +170767027486,213,0 +170767027534,213,0 +170767027581,213,0 +170767027629,213,0 +170767027677,213,0 +170767027725,213,0 +170767027773,213,0 +170767027821,214,0 +170767027869,213,0 +170767027916,214,0 +170767027964,214,0 +170767028012,214,0 +170767028060,214,0 +170767028108,214,0 +170767028156,214,0 +170767028204,214,0 +170767028253,215,0 +170767028303,214,0 +170767028350,215,0 +170767028398,215,0 +170767028446,215,0 +170767028494,215,0 +170767028542,216,0 +170767028590,216,0 +170767028638,216,0 +170767028686,215,0 +170767028734,215,0 +170767028782,215,0 +170767028829,213,0 +170767028877,213,0 +170767028925,213,0 +170767028973,213,0 +170767029021,213,0 +170767029068,214,0 +170767029116,214,0 +170767029164,214,0 +170767029212,214,0 +170767029260,214,0 +170767029308,214,0 +170767029355,215,0 +170767029403,215,0 +170767029451,215,0 +170767029499,215,0 +170767029546,215,0 +170767029594,215,0 +170767029642,215,0 +170767029690,215,0 +170767029738,213,0 +170767029786,213,0 +170767029833,213,0 +170767029881,213,0 +170767029931,213,0 +170767029979,213,0 +170767030027,213,0 +170767030074,213,0 +170767030122,214,0 +170767030170,214,0 +170767030218,214,0 +170767030266,214,0 +170767030313,214,0 +170767030361,215,0 +170767030409,214,0 +170767030459,215,0 +170767030506,215,0 +170767030554,215,0 +170767030602,215,0 +170767030652,215,0 +170767030700,213,0 +170767030749,213,0 +170767030797,213,0 +170767030845,213,0 +170767030893,213,0 +170767030941,213,0 +170767030989,213,0 +170767031038,213,0 +170767031086,213,0 +170767031134,213,0 +170767031184,213,0 +170767031231,213,0 +170767031281,214,0 +170767031329,214,0 +170767031377,214,0 +170767031424,214,0 +170767031474,214,0 +170767031522,215,0 +170767031570,215,0 +170767031619,213,0 +170767031667,213,0 +170767031715,213,0 +170767031765,213,0 +170767031812,213,0 +170767031860,213,0 +170767031908,213,0 +170767031958,213,0 +170767032006,214,0 +170767032055,214,0 +170767032103,214,0 +170767032153,214,0 +170767032200,214,0 +170767032248,214,0 +170767032298,215,0 +170767032347,215,0 +170767032397,214,0 +170767032444,215,0 +170767032492,215,0 +170767032540,213,0 +170767032588,213,0 +170767032636,213,0 +170767032684,213,0 +170767032732,213,0 +170767032780,213,0 +170767032828,213,0 +170767032877,213,0 +170767032925,213,0 +170767032973,213,0 +170767033021,214,0 +170767033070,214,0 +170767033118,214,0 +170767033166,214,0 +170767033214,214,0 +170767033262,214,0 +170767033310,214,0 +170767033358,215,0 +170767033406,215,0 +170767033453,213,0 +170767033501,213,0 +170767033551,213,0 +170767033599,213,0 +170767033647,213,0 +170767033695,213,0 +170767033743,213,0 +170767033790,214,0 +170767033838,214,0 +170767033886,214,0 +170767033934,214,0 +170767033982,214,0 +170767034030,215,0 +170767034078,215,0 +170767034125,215,0 +170767034173,215,0 +170767034223,215,0 +170767034271,215,0 +170767034320,215,0 +170767034368,214,0 +170767034416,213,0 +170767034466,213,0 +170767034515,213,0 +170767034563,213,0 +170767034611,213,0 +170767034660,213,0 +170767034708,213,0 +170767034758,214,0 +170767034806,214,0 +170767034855,214,0 +170767034903,214,0 +170767034951,214,0 +170767034999,214,0 +170767035047,215,0 +170767035095,215,0 +170767035143,215,0 +170767035193,215,0 +170767035242,215,0 +170767035290,215,0 +170767035338,213,0 +170767035386,213,0 +170767035435,213,0 +170767035483,213,0 +170767035533,213,0 +170767035582,213,0 +170767035630,213,0 +170767035678,214,0 +170767035728,213,0 +170767035776,214,0 +170767035824,214,0 +170767035873,214,0 +170767035923,214,0 +170767035971,215,0 +170767036018,215,0 +170767036066,215,0 +170767036114,215,0 +170767036164,215,0 +170767036214,215,0 +170767036263,213,0 +170767036311,213,0 +170767036359,213,0 +170767036407,213,0 +170767036456,213,0 +170767036504,213,0 +170767036554,214,0 +170767036601,213,0 +170767036651,214,0 +170767036700,214,0 +170767036748,214,0 +170767036796,214,0 +170767036844,214,0 +170767036892,215,0 +170767036940,215,0 +170767036988,215,0 +170767037036,215,0 +170767037084,215,0 +170767037132,215,0 +170767037180,213,0 +170767037227,213,0 +170767037275,213,0 +170767037323,213,0 +170767037373,214,0 +170767037422,214,0 +170767037470,214,0 +170767037520,214,0 +170767037569,214,0 +170767037617,214,0 +170767037667,214,0 +170767037716,215,0 +170767037766,215,0 +170767037814,215,0 +170767037862,215,0 +170767037910,215,0 +170767037959,215,0 +170767038007,215,0 +170767038055,215,0 +170767038103,213,0 +170767038151,213,0 +170767038199,213,0 +170767038248,213,0 +170767038298,213,0 +170767038347,214,0 +170767038395,214,0 +170767038445,214,0 +170767038493,214,0 +170767038540,215,0 +170767038588,215,0 +170767038636,215,0 +170767038684,215,0 +170767038732,215,0 +170767038780,215,0 +170767038828,215,0 +170767038877,215,0 +170767038925,215,0 +170767038973,215,0 +170767039021,213,0 +170767039069,213,0 +170767039117,213,0 +170767039165,213,0 +170767039214,213,0 +170767039264,214,0 +170767039312,214,0 +170767039360,214,0 +170767039408,214,0 +170767039457,214,0 +170767039507,215,0 +170767039555,215,0 +170767039603,215,0 +170767039651,215,0 +170767039700,215,0 +170767039749,215,0 +170767039798,215,0 +170767039847,215,0 +170767039897,214,0 +170767039946,213,0 +170767039996,213,0 +170767040043,213,0 +170767040091,213,0 +170767040139,213,0 +170767040187,213,0 +170767040237,214,0 +170767040285,214,0 +170767040334,214,0 +170767040382,214,0 +170767040430,214,0 +170767040478,214,0 +170767040526,214,0 +170767040574,215,0 +170767040622,215,0 +170767040670,215,0 +170767040717,215,0 +170767040765,215,0 +170767040813,213,0 +170767040861,213,0 +170767040909,213,0 +170767040957,213,0 +170767041007,213,0 +170767041054,213,0 +170767041102,213,0 +170767041150,214,0 +170767041200,214,0 +170767041249,214,0 +170767041297,214,0 +170767041347,215,0 +170767041396,215,0 +170767041446,216,0 +170767041494,215,0 +170767041543,215,0 +170767041591,215,0 +170767041639,215,0 +170767041687,215,0 +170767041735,213,0 +170767041783,213,0 +170767041832,213,0 +170767041882,213,0 +170767041930,213,0 +170767041979,214,0 +170767042027,214,0 +170767042075,214,0 +170767042123,214,0 +170767042173,214,0 +170767042221,214,0 +170767042268,215,0 +170767042318,215,0 +170767042366,215,0 +170767042414,215,0 +170767042463,215,0 +170767042513,215,0 +170767042560,215,0 +170767042610,215,0 +170767042658,213,0 +170767042707,213,0 +170767042755,213,0 +170767042803,213,0 +170767042851,213,0 +170767042901,213,0 +170767042949,213,0 +170767042996,213,0 +170767043046,213,0 +170767043094,214,0 +170767043142,214,0 +170767043191,214,0 +170767043241,214,0 +170767043289,215,0 +170767043337,215,0 +170767043386,215,0 +170767043434,215,0 +170767043482,215,0 +170767043530,214,0 +170767043579,213,0 +170767043627,213,0 +170767043675,213,0 +170767043723,213,0 +170767043771,213,0 +170767043821,213,0 +170767043868,213,0 +170767043916,213,0 +170767043966,214,0 +170767044015,214,0 +170767044063,214,0 +170767044111,214,0 +170767044159,215,0 +170767044209,214,0 +170767044258,214,0 +170767044306,215,0 +170767044354,215,0 +170767044404,215,0 +170767044451,214,0 +170767044499,213,0 +170767044547,213,0 +170767044595,213,0 +170767044645,213,0 +170767044693,213,0 +170767044741,213,0 +170767044788,213,0 +170767044836,213,0 +170767044884,214,0 +170767044932,214,0 +170767044980,214,0 +170767045028,214,0 +170767045077,214,0 +170767045125,215,0 +170767045173,215,0 +170767045221,215,0 +170767045270,215,0 +170767045318,215,0 +170767045366,213,0 +170767045414,213,0 +170767045462,213,0 +170767045510,213,0 +170767045558,213,0 +170767045608,213,0 +170767045656,214,0 +170767045705,214,0 +170767045753,214,0 +170767045801,214,0 +170767045850,215,0 +170767045898,215,0 +170767045946,215,0 +170767045994,215,0 +170767046042,215,0 +170767046090,215,0 +170767046138,215,0 +170767046185,215,0 +170767046235,215,0 +170767046283,213,0 +170767046332,213,0 +170767046382,213,0 +170767046430,213,0 +170767046478,214,0 +170767046526,214,0 +170767046574,214,0 +170767046622,214,0 +170767046669,214,0 +170767046719,215,0 +170767046767,215,0 +170767046816,215,0 +170767046866,215,0 +170767046914,215,0 +170767046962,215,0 +170767047010,215,0 +170767047058,215,0 +170767047107,215,0 +170767047156,215,0 +170767047204,213,0 +170767047252,213,0 +170767047302,213,0 +170767047350,213,0 +170767047397,214,0 +170767047445,214,0 +170767047493,214,0 +170767047541,214,0 +170767047589,214,0 +170767047639,214,0 +170767047687,215,0 +170767047735,215,0 +170767047784,215,0 +170767047832,215,0 +170767047880,215,0 +170767047928,215,0 +170767047976,215,0 +170767048024,215,0 +170767048073,215,0 +170767048121,213,0 +170767048169,213,0 +170767048217,213,0 +170767048265,213,0 +170767048315,213,0 +170767048363,213,0 +170767048410,213,0 +170767048460,214,0 +170767048508,213,0 +170767048556,214,0 +170767048604,214,0 +170767048653,214,0 +170767048701,215,0 +170767048751,215,0 +170767048799,215,0 +170767048846,215,0 +170767048894,215,0 +170767048942,215,0 +170767048990,213,0 +170767049038,213,0 +170767049086,213,0 +170767049134,213,0 +170767049182,213,0 +170767049230,213,0 +170767049279,213,0 +170767049329,214,0 +170767049378,214,0 +170767049428,214,0 +170767049476,214,0 +170767049524,215,0 +170767049573,214,0 +170767049621,215,0 +170767049669,215,0 +170767049717,215,0 +170767049765,215,0 +170767049813,215,0 +170767049861,215,0 +170767049909,213,0 +170767049958,213,0 +170767050008,213,0 +170767050055,213,0 +170767050105,213,0 +170767050153,214,0 +170767050201,214,0 +170767050250,214,0 +170767050298,214,0 +170767050348,214,0 +170767050397,214,0 +170767050447,214,0 +170767050495,215,0 +170767050544,215,0 +170767050592,215,0 +170767050642,215,0 +170767050691,215,0 +170767050739,215,0 +170767050789,215,0 +170767050838,213,0 +170767050888,213,0 +170767050936,213,0 +170767050984,213,0 +170767051033,214,0 +170767051081,214,0 +170767051130,214,0 +170767051178,214,0 +170767051228,214,0 +170767051276,214,0 +170767051325,215,0 +170767051373,215,0 +170767051421,215,0 +170767051469,214,0 +170767051517,215,0 +170767051566,215,0 +170767051614,215,0 +170767051664,215,0 +170767051713,214,0 +170767051761,213,0 +170767051810,213,0 +170767051858,214,0 +170767051906,214,0 +170767051954,214,0 +170767052002,214,0 +170767052050,214,0 +170767052098,214,0 +170767052146,214,0 +170767052195,215,0 +170767052243,215,0 +170767052291,215,0 +170767052339,215,0 +170767052389,215,0 +170767052437,215,0 +170767052486,215,0 +170767052534,215,0 +170767052582,215,0 +170767052631,213,0 +170767052679,213,0 +170767052727,213,0 +170767052777,213,0 +170767052826,214,0 +170767052876,214,0 +170767052925,213,0 +170767052973,214,0 +170767053021,214,0 +170767053070,214,0 +170767053120,214,0 +170767053169,215,0 +170767053219,215,0 +170767053267,215,0 +170767053316,215,0 +170767053364,215,0 +170767053412,215,0 +170767053460,215,0 +170767053509,215,0 +170767053559,213,0 +170767053608,213,0 +170767053656,213,0 +170767053704,213,0 +170767053752,213,0 +170767053800,213,0 +170767053849,213,0 +170767053899,214,0 +170767053948,214,0 +170767053998,214,0 +170767054046,214,0 +170767054095,214,0 +170767054143,215,0 +170767054193,215,0 +170767054242,215,0 +170767054290,215,0 +170767054340,215,0 +170767054389,215,0 +170767054437,213,0 +170767054487,213,0 +170767054536,213,0 +170767054586,213,0 +170767054633,213,0 +170767054681,213,0 +170767054729,213,0 +170767054777,213,0 +170767054825,213,0 +170767054873,214,0 +170767054921,214,0 +170767054971,214,0 +170767055020,215,0 +170767055068,214,0 +170767055116,215,0 +170767055165,214,0 +170767055213,214,0 +170767055261,215,0 +170767055309,215,0 +170767055359,213,0 +170767055408,213,0 +170767055456,213,0 +170767055506,213,0 +170767055555,213,0 +170767055603,213,0 +170767055653,214,0 +170767055701,213,0 +170767055749,214,0 +170767055798,214,0 +170767055848,214,0 +170767055896,215,0 +170767055944,214,0 +170767055992,214,0 +170767056040,214,0 +170767056089,215,0 +170767056137,215,0 +170767056185,215,0 +170767056233,215,0 +170767056283,213,0 +170767056330,213,0 +170767056378,213,0 +170767056428,213,0 +170767056477,213,0 +170767056525,213,0 +170767056573,213,0 +170767056623,214,0 +170767056671,214,0 +170767056720,214,0 +170767056768,214,0 +170767056818,214,0 +170767056866,214,0 +170767056914,215,0 +170767056962,215,0 +170767057010,215,0 +170767057058,215,0 +170767057106,215,0 +170767057153,214,0 +170767057201,213,0 +170767057251,213,0 +170767057300,213,0 +170767057348,213,0 +170767057396,213,0 +170767057446,213,0 +170767057494,214,0 +170767057543,214,0 +170767057591,214,0 +170767057639,214,0 +170767057687,214,0 +170767057737,214,0 +170767057786,214,0 +170767057834,215,0 +170767057883,215,0 +170767057933,215,0 +170767057982,215,0 +170767058030,215,0 +170767058078,213,0 +170767058126,213,0 +170767058176,213,0 +170767058224,213,0 +170767058272,213,0 +170767058320,213,0 +170767058369,213,0 +170767058417,213,0 +170767058465,213,0 +170767058513,214,0 +170767058562,214,0 +170767058610,214,0 +170767058658,214,0 +170767058706,215,0 +170767058754,215,0 +170767058804,215,0 +170767058852,215,0 +170767058901,215,0 +170767058951,215,0 +170767058999,213,0 +170767059047,213,0 +170767059095,212,0 +170767059144,213,0 +170767059192,213,0 +170767059241,213,0 +170767059291,213,0 +170767059340,214,0 +170767059390,214,0 +170767059439,214,0 +170767059487,214,0 +170767059535,215,0 +170767059583,215,0 +170767059633,215,0 +170767059681,215,0 +170767059729,215,0 +170767059777,215,0 +170767059824,215,0 +170767059874,215,0 +170767059923,213,0 +170767059971,213,0 +170767060019,213,0 +170767060069,213,0 +170767060118,213,0 +170767060166,213,0 +170767060214,213,0 +170767060264,213,0 +170767060312,214,0 +170767060361,214,0 +170767060409,214,0 +170767060457,214,0 +170767060505,214,0 +170767060555,214,0 +170767060603,215,0 +170767060651,215,0 +170767060698,215,0 +170767060746,215,0 +170767060796,213,0 +170767060844,213,0 +170767060892,213,0 +170767060941,213,0 +170767060989,213,0 +170767061037,213,0 +170767061087,213,0 +170767061135,213,0 +170767061184,213,0 +170767061234,213,0 +170767061282,213,0 +170767061329,213,0 +170767061377,213,0 +170767061427,213,0 +170767061475,214,0 +170767061524,214,0 +170767061572,214,0 +170767061622,215,0 +170767061670,215,0 +170767061718,213,0 +170767061766,213,0 +170767061814,213,0 +170767061863,213,0 +170767061913,213,0 +170767061961,213,0 +170767062009,213,0 +170767062057,213,0 +170767062106,213,0 +170767062156,214,0 +170767062204,214,0 +170767062253,214,0 +170767062303,214,0 +170767062352,214,0 +170767062400,215,0 +170767062448,215,0 +170767062498,215,0 +170767062547,215,0 +170767062595,214,0 +170767062645,213,0 +170767062692,213,0 +170767062740,213,0 +170767062788,213,0 +170767062836,213,0 +170767062884,213,0 +170767062932,213,0 +170767062980,213,0 +170767063028,214,0 +170767063077,214,0 +170767063125,214,0 +170767063175,214,0 +170767063223,214,0 +170767063271,214,0 +170767063320,215,0 +170767063368,215,0 +170767063416,214,0 +170767063464,215,0 +170767063512,214,0 +170767063560,213,0 +170767063608,213,0 +170767063656,213,0 +170767063705,213,0 +170767063753,213,0 +170767063803,214,0 +170767063850,214,0 +170767063900,214,0 +170767063949,214,0 +170767063997,214,0 +170767064045,214,0 +170767064093,215,0 +170767064143,215,0 +170767064191,214,0 +170767064239,215,0 +170767064287,215,0 +170767064336,215,0 +170767064384,215,0 +170767064432,213,0 +170767064481,213,0 +170767064529,213,0 +170767064577,213,0 +170767064626,213,0 +170767064674,213,0 +170767064724,213,0 +170767064772,213,0 +170767064820,214,0 +170767064868,214,0 +170767064917,214,0 +170767064965,214,0 +170767065015,214,0 +170767065063,215,0 +170767065110,215,0 +170767065160,215,0 +170767065208,215,0 +170767065257,215,0 +170767065307,215,0 +170767065355,213,0 +170767065403,213,0 +170767065451,213,0 +170767065500,213,0 +170767065550,213,0 +170767065599,213,0 +170767065647,213,0 +170767065695,213,0 +170767065743,214,0 +170767065791,214,0 +170767065839,214,0 +170767065887,214,0 +170767065934,215,0 +170767065982,215,0 +170767066030,215,0 +170767066078,215,0 +170767066126,215,0 +170767066174,215,0 +170767066222,215,0 +170767066270,213,0 +170767066317,213,0 +170767066365,213,0 +170767066413,213,0 +170767066461,213,0 +170767066511,213,0 +170767066559,213,0 +170767066607,214,0 +170767066656,214,0 +170767066704,214,0 +170767066752,214,0 +170767066800,215,0 +170767066848,215,0 +170767066896,215,0 +170767066943,215,0 +170767066991,215,0 +170767067039,215,0 +170767067087,215,0 +170767067135,215,0 +170767067183,213,0 +170767067231,213,0 +170767067279,213,0 +170767067327,213,0 +170767067374,214,0 +170767067422,214,0 +170767067470,214,0 +170767067518,214,0 +170767067568,215,0 +170767067615,215,0 +170767067665,215,0 +170767067713,215,0 +170767067761,215,0 +170767067809,215,0 +170767067858,215,0 +170767067906,216,0 +170767067954,215,0 +170767068002,215,0 +170767068050,214,0 +170767068099,214,0 +170767068147,214,0 +170767068195,214,0 +170767068243,214,0 +170767068291,214,0 +170767068340,215,0 +170767068388,215,0 +170767068436,215,0 +170767068486,215,0 +170767068535,215,0 +170767068585,215,0 +170767068633,215,0 +170767068681,215,0 +170767068729,215,0 +170767068776,215,0 +170767068826,215,0 +170767068875,215,0 +170767068923,215,0 +170767068971,214,0 +170767069019,213,0 +170767069067,214,0 +170767069115,214,0 +170767069163,214,0 +170767069213,214,0 +170767069261,214,0 +170767069310,214,0 +170767069358,215,0 +170767069406,215,0 +170767069454,215,0 +170767069502,215,0 +170767069549,215,0 +170767069597,215,0 +170767069645,215,0 +170767069693,215,0 +170767069741,215,0 +170767069790,215,0 +170767069838,215,0 +170767069886,214,0 +170767069934,213,0 +170767069984,213,0 +170767070032,214,0 +170767070081,214,0 +170767070129,214,0 +170767070177,214,0 +170767070225,214,0 +170767070273,214,0 +170767070321,214,0 +170767070368,215,0 +170767070418,215,0 +170767070467,215,0 +170767070515,215,0 +170767070565,215,0 +170767070613,215,0 +170767070662,215,0 +170767070710,215,0 +170767070758,215,0 +170767070807,213,0 +170767070855,213,0 +170767070903,213,0 +170767070951,214,0 +170767070999,214,0 +170767071049,214,0 +170767071096,214,0 +170767071144,214,0 +170767071192,214,0 +170767071242,214,0 +170767071290,214,0 +170767071338,215,0 +170767071385,215,0 +170767071435,215,0 +170767071484,215,0 +170767071532,215,0 +170767071580,215,0 +170767071628,215,0 +170767071676,215,0 +170767071724,213,0 +170767071772,213,0 +170767071820,213,0 +170767071868,214,0 +170767071918,213,0 +170767071967,214,0 +170767072015,214,0 +170767072063,214,0 +170767072112,214,0 +170767072160,215,0 +170767072208,215,0 +170767072258,215,0 +170767072307,215,0 +170767072355,215,0 +170767072403,215,0 +170767072451,215,0 +170767072500,215,0 +170767072548,215,0 +170767072596,214,0 +170767072645,213,0 +170767072693,213,0 +170767072741,213,0 +170767072789,214,0 +170767072837,214,0 +170767072885,214,0 +170767072933,214,0 +170767072982,214,0 +170767073030,214,0 +170767073080,214,0 +170767073128,215,0 +170767073175,215,0 +170767073225,215,0 +170767073274,215,0 +170767073322,215,0 +170767073370,215,0 +170767073418,215,0 +170767073466,215,0 +170767073515,214,0 +170767073563,213,0 +170767073611,213,0 +170767073660,213,0 +170767073710,214,0 +170767073758,214,0 +170767073807,214,0 +170767073855,214,0 +170767073903,214,0 +170767073951,215,0 +170767073999,215,0 +170767074048,215,0 +170767074096,215,0 +170767074146,215,0 +170767074194,215,0 +170767074243,215,0 +170767074291,215,0 +170767074341,215,0 +170767074390,215,0 +170767074438,213,0 +170767074488,213,0 +170767074537,213,0 +170767074585,213,0 +170767074633,213,0 +170767074681,213,0 +170767074729,214,0 +170767074778,214,0 +170767074828,214,0 +170767074876,214,0 +170767074924,214,0 +170767074973,215,0 +170767075021,215,0 +170767075069,215,0 +170767075119,215,0 +170767075167,215,0 +170767075215,215,0 +170767075263,215,0 +170767075312,215,0 +170767075362,213,0 +170767075411,213,0 +170767075459,213,0 +170767075507,213,0 +170767075555,213,0 +170767075604,213,0 +170767075652,213,0 +170767075700,214,0 +170767075748,214,0 +170767075798,214,0 +170767075847,214,0 +170767075897,215,0 +170767075945,215,0 +170767075994,215,0 +170767076042,215,0 +170767076092,215,0 +170767076141,215,0 +170767076189,215,0 +170767076238,213,0 +170767076286,213,0 +170767076336,213,0 +170767076384,213,0 +170767076432,213,0 +170767076479,213,0 +170767076527,213,0 +170767076575,213,0 +170767076625,214,0 +170767076673,214,0 +170767076721,214,0 +170767076768,214,0 +170767076818,214,0 +170767076866,214,0 +170767076914,215,0 +170767076963,214,0 +170767077013,215,0 +170767077061,215,0 +170767077110,215,0 +170767077158,213,0 +170767077208,213,0 +170767077257,213,0 +170767077307,213,0 +170767077355,213,0 +170767077403,213,0 +170767077452,213,0 +170767077500,213,0 +170767077548,213,0 +170767077596,214,0 +170767077646,214,0 +170767077695,214,0 +170767077743,214,0 +170767077791,215,0 +170767077839,215,0 +170767077887,215,0 +170767077935,215,0 +170767077983,215,0 +170767078031,214,0 +170767078080,213,0 +170767078128,213,0 +170767078178,213,0 +170767078227,213,0 +170767078275,213,0 +170767078323,213,0 +170767078373,213,0 +170767078421,214,0 +170767078470,214,0 +170767078520,214,0 +170767078569,214,0 +170767078619,214,0 +170767078666,214,0 +170767078716,215,0 +170767078764,215,0 +170767078812,215,0 +170767078860,215,0 +170767078909,215,0 +170767078957,214,0 +170767079007,213,0 +170767079056,213,0 +170767079104,213,0 +170767079153,213,0 +170767079201,213,0 +170767079249,213,0 +170767079297,213,0 +170767079345,214,0 +170767079394,214,0 +170767079444,214,0 +170767079492,214,0 +170767079540,214,0 +170767079589,214,0 +170767079637,214,0 +170767079685,214,0 +170767079735,214,0 +170767079783,214,0 +170767079832,214,0 +170767079880,214,0 +170767079929,214,0 +170767079979,214,0 +170767080028,214,0 diff --git a/laser_value/0212-03.csv b/laser_value/0212-03.csv new file mode 100644 index 0000000..f0ead01 --- /dev/null +++ b/laser_value/0212-03.csv @@ -0,0 +1,7460 @@ +timestamp,laser_value,event +170767080077,214,0 +170767080125,214,0 +170767080174,214,0 +170767080224,214,0 +170767080273,214,0 +170767080321,214,0 +170767080369,214,0 +170767080419,214,0 +170767080467,214,0 +170767080514,214,0 +170767080562,214,0 +170767080610,214,0 +170767080658,214,0 +170767080706,214,0 +170767080754,214,0 +170767080802,214,0 +170767080849,214,0 +170767080897,214,0 +170767080945,214,0 +170767080995,214,0 +170767081042,214,0 +170767081090,214,0 +170767081138,214,0 +170767081186,214,0 +170767081234,214,0 +170767081283,214,0 +170767081331,214,0 +170767081379,214,0 +170767081427,214,0 +170767081475,214,0 +170767081524,214,0 +170767081572,214,0 +170767081621,214,0 +170767081669,214,0 +170767081717,214,0 +170767081765,214,0 +170767081813,214,0 +170767081861,214,0 +170767081909,214,0 +170767081957,214,0 +170767082004,214,0 +170767082052,214,0 +170767082100,214,0 +170767082148,214,0 +170767082197,214,0 +170767082245,214,0 +170767082293,214,0 +170767082341,215,0 +170767082389,214,0 +170767082438,215,0 +170767082486,215,0 +170767082534,215,0 +170767082581,215,0 +170767082629,215,0 +170767082677,215,0 +170767082725,215,0 +170767082773,213,0 +170767082821,213,0 +170767082869,213,0 +170767082916,213,0 +170767082966,213,0 +170767083014,213,0 +170767083062,213,0 +170767083110,213,0 +170767083157,213,0 +170767083205,214,0 +170767083253,213,0 +170767083301,213,0 +170767083349,214,0 +170767083396,214,0 +170767083446,214,0 +170767083495,214,0 +170767083543,214,0 +170767083593,214,0 +170767083642,214,0 +170767083690,215,0 +170767083738,215,0 +170767083788,215,0 +170767083836,215,0 +170767083884,213,0 +170767083932,213,0 +170767083981,213,0 +170767084029,213,0 +170767084077,213,0 +170767084125,213,0 +170767084173,213,0 +170767084221,214,0 +170767084270,213,0 +170767084318,214,0 +170767084368,214,0 +170767084417,214,0 +170767084467,215,0 +170767084516,214,0 +170767084564,215,0 +170767084612,215,0 +170767084662,215,0 +170767084710,215,0 +170767084757,215,0 +170767084807,213,0 +170767084855,213,0 +170767084903,213,0 +170767084951,213,0 +170767084999,213,0 +170767085048,214,0 +170767085098,214,0 +170767085147,214,0 +170767085195,214,0 +170767085243,215,0 +170767085292,214,0 +170767085340,215,0 +170767085390,215,0 +170767085438,215,0 +170767085485,215,0 +170767085533,215,0 +170767085583,215,0 +170767085631,215,0 +170767085680,215,0 +170767085728,215,0 +170767085776,213,0 +170767085826,213,0 +170767085874,214,0 +170767085923,213,0 +170767085971,213,0 +170767086021,213,0 +170767086068,213,0 +170767086116,214,0 +170767086164,214,0 +170767086212,214,0 +170767086260,214,0 +170767086308,215,0 +170767086356,215,0 +170767086404,215,0 +170767086453,215,0 +170767086501,215,0 +170767086549,215,0 +170767086598,215,0 +170767086646,215,0 +170767086694,213,0 +170767086743,213,0 +170767086791,213,0 +170767086840,213,0 +170767086888,213,0 +170767086936,213,0 +170767086984,213,0 +170767087033,214,0 +170767087081,214,0 +170767087129,214,0 +170767087176,214,0 +170767087224,215,0 +170767087272,215,0 +170767087320,215,0 +170767087368,215,0 +170767087416,215,0 +170767087463,215,0 +170767087513,215,0 +170767087561,216,0 +170767087610,213,0 +170767087658,213,0 +170767087706,213,0 +170767087753,213,0 +170767087801,213,0 +170767087849,213,0 +170767087897,213,0 +170767087945,213,0 +170767087993,214,0 +170767088041,214,0 +170767088091,214,0 +170767088138,214,0 +170767088188,214,0 +170767088238,215,0 +170767088286,215,0 +170767088335,215,0 +170767088383,215,0 +170767088431,215,0 +170767088479,215,0 +170767088527,213,0 +170767088575,213,0 +170767088623,213,0 +170767088672,213,0 +170767088722,213,0 +170767088770,213,0 +170767088818,213,0 +170767088865,214,0 +170767088913,214,0 +170767088961,214,0 +170767089009,214,0 +170767089057,214,0 +170767089105,214,0 +170767089153,214,0 +170767089203,215,0 +170767089252,215,0 +170767089300,215,0 +170767089348,215,0 +170767089397,215,0 +170767089445,213,0 +170767089495,213,0 +170767089542,213,0 +170767089590,213,0 +170767089638,213,0 +170767089687,213,0 +170767089735,214,0 +170767089783,214,0 +170767089831,214,0 +170767089879,214,0 +170767089928,214,0 +170767089976,215,0 +170767090024,214,0 +170767090072,215,0 +170767090119,214,0 +170767090167,214,0 +170767090215,214,0 +170767090263,214,0 +170767090311,214,0 +170767090358,213,0 +170767090406,212,0 +170767090454,213,0 +170767090502,213,0 +170767090550,213,0 +170767090598,213,0 +170767090646,213,0 +170767090695,213,0 +170767090743,213,0 +170767090791,213,0 +170767090840,213,0 +170767090888,213,0 +170767090936,214,0 +170767090983,214,0 +170767091031,214,0 +170767091079,214,0 +170767091127,214,0 +170767091175,215,0 +170767091223,214,0 +170767091272,215,0 +170767091320,213,0 +170767091368,213,0 +170767091416,212,0 +170767091465,213,0 +170767091513,213,0 +170767091562,213,0 +170767091610,213,0 +170767091658,213,0 +170767091707,213,0 +170767091755,213,0 +170767091803,213,0 +170767091851,213,0 +170767091899,213,0 +170767091947,213,0 +170767091995,213,0 +170767092044,214,0 +170767092092,213,0 +170767092140,214,0 +170767092187,215,0 +170767092235,213,0 +170767092283,213,0 +170767092331,213,0 +170767092379,213,0 +170767092427,213,0 +170767092475,213,0 +170767092522,213,0 +170767092570,213,0 +170767092618,213,0 +170767092666,214,0 +170767092714,214,0 +170767092762,214,0 +170767092809,214,0 +170767092857,214,0 +170767092905,215,0 +170767092954,215,0 +170767093003,215,0 +170767093051,215,0 +170767093099,215,0 +170767093147,213,0 +170767093196,213,0 +170767093244,213,0 +170767093292,213,0 +170767093339,213,0 +170767093389,213,0 +170767093437,213,0 +170767093485,213,0 +170767093532,214,0 +170767093580,214,0 +170767093628,214,0 +170767093676,214,0 +170767093725,214,0 +170767093773,215,0 +170767093821,215,0 +170767093870,215,0 +170767093918,215,0 +170767093966,214,0 +170767094014,214,0 +170767094062,213,0 +170767094111,213,0 +170767094160,213,0 +170767094208,213,0 +170767094256,213,0 +170767094304,213,0 +170767094352,214,0 +170767094399,214,0 +170767094447,214,0 +170767094495,215,0 +170767094543,214,0 +170767094591,215,0 +170767094640,214,0 +170767094688,215,0 +170767094737,215,0 +170767094785,215,0 +170767094835,215,0 +170767094883,215,0 +170767094932,213,0 +170767094982,213,0 +170767095031,213,0 +170767095079,212,0 +170767095127,213,0 +170767095175,213,0 +170767095222,213,0 +170767095272,213,0 +170767095320,213,0 +170767095367,213,0 +170767095415,214,0 +170767095463,214,0 +170767095511,214,0 +170767095560,214,0 +170767095608,214,0 +170767095656,214,0 +170767095704,214,0 +170767095752,215,0 +170767095799,215,0 +170767095847,213,0 +170767095895,213,0 +170767095943,213,0 +170767095991,213,0 +170767096038,213,0 +170767096086,213,0 +170767096136,213,0 +170767096184,214,0 +170767096231,214,0 +170767096279,214,0 +170767096329,214,0 +170767096376,214,0 +170767096424,214,0 +170767096474,214,0 +170767096521,214,0 +170767096569,214,0 +170767096617,215,0 +170767096665,215,0 +170767096713,214,0 +170767096761,213,0 +170767096808,213,0 +170767096856,213,0 +170767096904,213,0 +170767096954,213,0 +170767097001,213,0 +170767097049,213,0 +170767097097,213,0 +170767097145,214,0 +170767097193,214,0 +170767097241,214,0 +170767097288,214,0 +170767097336,214,0 +170767097386,214,0 +170767097434,214,0 +170767097482,215,0 +170767097529,215,0 +170767097577,215,0 +170767097625,215,0 +170767097673,213,0 +170767097721,213,0 +170767097771,213,0 +170767097818,213,0 +170767097868,213,0 +170767097916,213,0 +170767097963,213,0 +170767098011,214,0 +170767098059,214,0 +170767098109,214,0 +170767098158,214,0 +170767098206,214,0 +170767098254,214,0 +170767098301,214,0 +170767098349,214,0 +170767098397,215,0 +170767098445,215,0 +170767098493,215,0 +170767098540,215,0 +170767098588,214,0 +170767098636,213,0 +170767098686,213,0 +170767098733,214,0 +170767098783,214,0 +170767098831,213,0 +170767098879,214,0 +170767098926,214,0 +170767098976,214,0 +170767099024,214,0 +170767099072,214,0 +170767099121,215,0 +170767099169,215,0 +170767099217,215,0 +170767099265,214,0 +170767099314,215,0 +170767099362,214,0 +170767099410,215,0 +170767099459,215,0 +170767099509,213,0 +170767099557,213,0 +170767099606,213,0 +170767099654,213,0 +170767099702,213,0 +170767099752,214,0 +170767099801,214,0 +170767099851,214,0 +170767099900,214,0 +170767099948,214,0 +170767099996,214,0 +170767100044,214,0 +170767100092,214,0 +170767100140,215,0 +170767100189,215,0 +170767100237,215,0 +170767100285,215,0 +170767100333,215,0 +170767100382,214,0 +170767100430,214,0 +170767100479,213,0 +170767100527,213,0 +170767100575,214,0 +170767100623,214,0 +170767100672,214,0 +170767100720,214,0 +170767100768,214,0 +170767100816,214,0 +170767100864,214,0 +170767100911,214,0 +170767100961,215,0 +170767101009,215,0 +170767101056,215,0 +170767101104,215,0 +170767101152,215,0 +170767101200,215,0 +170767101248,215,0 +170767101297,214,0 +170767101345,213,0 +170767101393,213,0 +170767101441,213,0 +170767101490,214,0 +170767101538,213,0 +170767101588,214,0 +170767101635,214,0 +170767101683,214,0 +170767101731,214,0 +170767101779,214,0 +170767101827,214,0 +170767101875,215,0 +170767101924,215,0 +170767101972,215,0 +170767102021,215,0 +170767102069,215,0 +170767102117,215,0 +170767102165,215,0 +170767102213,215,0 +170767102260,213,0 +170767102308,213,0 +170767102358,213,0 +170767102405,213,0 +170767102453,213,0 +170767102501,214,0 +170767102550,214,0 +170767102598,214,0 +170767102646,214,0 +170767102694,214,0 +170767102742,214,0 +170767102790,215,0 +170767102837,214,0 +170767102885,215,0 +170767102933,215,0 +170767102981,215,0 +170767103029,215,0 +170767103077,215,0 +170767103125,215,0 +170767103172,213,0 +170767103220,213,0 +170767103268,213,0 +170767103316,213,0 +170767103364,213,0 +170767103411,213,0 +170767103459,214,0 +170767103507,214,0 +170767103557,214,0 +170767103604,214,0 +170767103652,214,0 +170767103700,214,0 +170767103750,215,0 +170767103799,215,0 +170767103847,215,0 +170767103897,215,0 +170767103946,215,0 +170767103996,215,0 +170767104043,214,0 +170767104093,213,0 +170767104141,213,0 +170767104189,213,0 +170767104238,213,0 +170767104286,213,0 +170767104334,213,0 +170767104381,213,0 +170767104431,213,0 +170767104480,213,0 +170767104528,213,0 +170767104576,214,0 +170767104625,214,0 +170767104673,214,0 +170767104721,214,0 +170767104769,214,0 +170767104817,215,0 +170767104866,215,0 +170767104915,215,0 +170767104963,215,0 +170767105013,213,0 +170767105061,213,0 +170767105108,213,0 +170767105156,213,0 +170767105204,213,0 +170767105252,213,0 +170767105300,213,0 +170767105348,213,0 +170767105396,213,0 +170767105443,213,0 +170767105491,213,0 +170767105541,214,0 +170767105590,214,0 +170767105638,214,0 +170767105687,214,0 +170767105735,214,0 +170767105783,214,0 +170767105831,215,0 +170767105878,214,0 +170767105926,213,0 +170767105974,213,0 +170767106022,213,0 +170767106070,213,0 +170767106118,213,0 +170767106166,213,0 +170767106214,213,0 +170767106262,213,0 +170767106310,214,0 +170767106358,214,0 +170767106405,214,0 +170767106453,214,0 +170767106503,214,0 +170767106551,214,0 +170767106599,214,0 +170767106646,214,0 +170767106696,215,0 +170767106744,215,0 +170767106792,213,0 +170767106840,213,0 +170767106888,213,0 +170767106937,213,0 +170767106985,213,0 +170767107033,213,0 +170767107081,213,0 +170767107130,213,0 +170767107178,213,0 +170767107226,214,0 +170767107274,214,0 +170767107322,214,0 +170767107370,214,0 +170767107418,214,0 +170767107468,214,0 +170767107516,215,0 +170767107564,215,0 +170767107612,215,0 +170767107660,215,0 +170767107708,213,0 +170767107755,212,0 +170767107805,213,0 +170767107854,213,0 +170767107902,213,0 +170767107950,213,0 +170767107998,213,0 +170767108046,213,0 +170767108094,214,0 +170767108142,213,0 +170767108190,214,0 +170767108238,214,0 +170767108287,214,0 +170767108336,214,0 +170767108383,214,0 +170767108431,214,0 +170767108479,215,0 +170767108527,215,0 +170767108575,215,0 +170767108623,213,0 +170767108673,213,0 +170767108721,213,0 +170767108769,213,0 +170767108817,213,0 +170767108866,213,0 +170767108916,213,0 +170767108965,214,0 +170767109013,214,0 +170767109063,214,0 +170767109112,214,0 +170767109160,214,0 +170767109210,215,0 +170767109257,215,0 +170767109307,215,0 +170767109355,215,0 +170767109404,215,0 +170767109452,215,0 +170767109500,215,0 +170767109548,213,0 +170767109598,213,0 +170767109646,213,0 +170767109695,213,0 +170767109743,213,0 +170767109791,213,0 +170767109839,213,0 +170767109889,213,0 +170767109938,213,0 +170767109986,214,0 +170767110034,214,0 +170767110083,214,0 +170767110131,215,0 +170767110179,215,0 +170767110229,215,0 +170767110277,215,0 +170767110326,215,0 +170767110374,215,0 +170767110422,215,0 +170767110470,213,0 +170767110518,213,0 +170767110566,213,0 +170767110615,213,0 +170767110663,213,0 +170767110711,213,0 +170767110759,213,0 +170767110807,213,0 +170767110855,213,0 +170767110903,214,0 +170767110951,214,0 +170767110999,214,0 +170767111046,214,0 +170767111094,214,0 +170767111144,215,0 +170767111192,215,0 +170767111240,215,0 +170767111289,215,0 +170767111337,215,0 +170767111385,213,0 +170767111433,213,0 +170767111482,213,0 +170767111532,213,0 +170767111580,213,0 +170767111629,213,0 +170767111679,213,0 +170767111728,213,0 +170767111778,213,0 +170767111826,213,0 +170767111874,214,0 +170767111923,214,0 +170767111971,214,0 +170767112021,214,0 +170767112070,214,0 +170767112118,214,0 +170767112168,214,0 +170767112216,215,0 +170767112265,213,0 +170767112313,213,0 +170767112361,213,0 +170767112409,213,0 +170767112457,213,0 +170767112505,213,0 +170767112553,213,0 +170767112600,214,0 +170767112650,213,0 +170767112698,214,0 +170767112747,214,0 +170767112795,214,0 +170767112845,214,0 +170767112893,214,0 +170767112941,214,0 +170767112988,214,0 +170767113036,215,0 +170767113084,215,0 +170767113132,215,0 +170767113182,213,0 +170767113229,213,0 +170767113279,213,0 +170767113327,213,0 +170767113375,213,0 +170767113423,213,0 +170767113472,213,0 +170767113520,213,0 +170767113568,213,0 +170767113616,214,0 +170767113666,214,0 +170767113713,214,0 +170767113763,214,0 +170767113813,214,0 +170767113860,214,0 +170767113910,215,0 +170767113958,215,0 +170767114006,215,0 +170767114054,215,0 +170767114102,213,0 +170767114149,213,0 +170767114197,213,0 +170767114247,213,0 +170767114295,213,0 +170767114343,213,0 +170767114390,213,0 +170767114438,214,0 +170767114486,214,0 +170767114536,214,0 +170767114583,214,0 +170767114631,214,0 +170767114679,215,0 +170767114729,215,0 +170767114777,215,0 +170767114824,215,0 +170767114872,215,0 +170767114920,215,0 +170767114968,214,0 +170767115016,213,0 +170767115064,213,0 +170767115113,213,0 +170767115161,213,0 +170767115209,213,0 +170767115257,213,0 +170767115305,213,0 +170767115354,214,0 +170767115402,214,0 +170767115450,214,0 +170767115498,214,0 +170767115545,215,0 +170767115593,214,0 +170767115641,215,0 +170767115689,215,0 +170767115737,215,0 +170767115786,215,0 +170767115834,215,0 +170767115882,215,0 +170767115930,213,0 +170767115979,213,0 +170767116027,213,0 +170767116075,214,0 +170767116123,214,0 +170767116171,214,0 +170767116219,214,0 +170767116267,214,0 +170767116314,214,0 +170767116364,215,0 +170767116412,215,0 +170767116459,215,0 +170767116507,215,0 +170767116555,215,0 +170767116603,215,0 +170767116651,215,0 +170767116698,215,0 +170767116748,215,0 +170767116796,215,0 +170767116843,213,0 +170767116893,213,0 +170767116941,213,0 +170767116988,214,0 +170767117036,214,0 +170767117084,214,0 +170767117134,214,0 +170767117181,214,0 +170767117229,214,0 +170767117277,214,0 +170767117325,215,0 +170767117372,214,0 +170767117420,215,0 +170767117468,215,0 +170767117516,215,0 +170767117565,215,0 +170767117613,215,0 +170767117663,215,0 +170767117711,215,0 +170767117759,213,0 +170767117808,213,0 +170767117856,214,0 +170767117904,213,0 +170767117952,214,0 +170767118000,214,0 +170767118048,214,0 +170767118096,214,0 +170767118145,214,0 +170767118195,214,0 +170767118243,214,0 +170767118290,214,0 +170767118338,215,0 +170767118386,215,0 +170767118436,215,0 +170767118484,215,0 +170767118531,215,0 +170767118579,215,0 +170767118627,215,0 +170767118677,213,0 +170767118724,213,0 +170767118772,213,0 +170767118820,213,0 +170767118868,213,0 +170767118917,213,0 +170767118967,214,0 +170767119015,213,0 +170767119064,214,0 +170767119112,214,0 +170767119160,214,0 +170767119210,214,0 +170767119258,215,0 +170767119306,215,0 +170767119355,215,0 +170767119403,215,0 +170767119451,215,0 +170767119500,215,0 +170767119550,214,0 +170767119598,213,0 +170767119646,213,0 +170767119695,213,0 +170767119743,213,0 +170767119791,213,0 +170767119839,213,0 +170767119887,213,0 +170767119937,213,0 +170767119986,214,0 +170767120036,214,0 +170767120084,214,0 +170767120132,214,0 +170767120179,214,0 +170767120227,215,0 +170767120275,214,0 +170767120323,215,0 +170767120371,215,0 +170767120419,215,0 +170767120468,214,0 +170767120516,213,0 +170767120564,213,0 +170767120612,213,0 +170767120660,213,0 +170767120708,213,0 +170767120756,214,0 +170767120804,214,0 +170767120852,214,0 +170767120900,214,0 +170767120947,214,0 +170767120995,214,0 +170767121043,215,0 +170767121092,214,0 +170767121140,215,0 +170767121188,215,0 +170767121238,215,0 +170767121287,215,0 +170767121335,215,0 +170767121385,214,0 +170767121433,213,0 +170767121481,213,0 +170767121530,213,0 +170767121580,213,0 +170767121629,213,0 +170767121677,213,0 +170767121725,214,0 +170767121775,214,0 +170767121824,214,0 +170767121872,214,0 +170767121920,214,0 +170767121970,215,0 +170767122019,215,0 +170767122067,215,0 +170767122115,215,0 +170767122163,215,0 +170767122210,215,0 +170767122258,215,0 +170767122306,213,0 +170767122354,213,0 +170767122403,213,0 +170767122451,213,0 +170767122499,213,0 +170767122549,213,0 +170767122596,213,0 +170767122644,213,0 +170767122694,214,0 +170767122742,214,0 +170767122789,214,0 +170767122837,214,0 +170767122885,214,0 +170767122933,215,0 +170767122981,215,0 +170767123029,215,0 +170767123077,215,0 +170767123124,215,0 +170767123172,215,0 +170767123220,213,0 +170767123268,213,0 +170767123317,213,0 +170767123365,213,0 +170767123413,213,0 +170767123463,213,0 +170767123512,213,0 +170767123560,213,0 +170767123608,213,0 +170767123658,213,0 +170767123705,214,0 +170767123753,214,0 +170767123801,214,0 +170767123849,214,0 +170767123897,214,0 +170767123945,215,0 +170767123993,214,0 +170767124041,214,0 +170767124089,215,0 +170767124137,213,0 +170767124185,213,0 +170767124232,213,0 +170767124280,213,0 +170767124328,213,0 +170767124376,213,0 +170767124424,213,0 +170767124474,213,0 +170767124522,213,0 +170767124569,214,0 +170767124619,214,0 +170767124668,214,0 +170767124716,214,0 +170767124764,214,0 +170767124812,214,0 +170767124860,214,0 +170767124910,214,0 +170767124958,214,0 +170767125006,215,0 +170767125055,213,0 +170767125103,213,0 +170767125153,213,0 +170767125200,213,0 +170767125248,213,0 +170767125296,213,0 +170767125344,213,0 +170767125392,214,0 +170767125440,213,0 +170767125488,214,0 +170767125538,214,0 +170767125587,214,0 +170767125637,214,0 +170767125685,214,0 +170767125734,214,0 +170767125782,214,0 +170767125830,214,0 +170767125877,215,0 +170767125927,215,0 +170767125975,213,0 +170767126023,213,0 +170767126070,213,0 +170767126118,213,0 +170767126168,213,0 +170767126216,213,0 +170767126263,213,0 +170767126311,214,0 +170767126359,214,0 +170767126407,214,0 +170767126455,214,0 +170767126503,214,0 +170767126550,214,0 +170767126598,214,0 +170767126648,215,0 +170767126695,215,0 +170767126743,215,0 +170767126791,215,0 +170767126839,215,0 +170767126887,213,0 +170767126935,213,0 +170767126982,213,0 +170767127030,213,0 +170767127080,213,0 +170767127127,213,0 +170767127175,213,0 +170767127223,214,0 +170767127271,214,0 +170767127319,214,0 +170767127367,214,0 +170767127414,214,0 +170767127464,214,0 +170767127511,214,0 +170767127559,215,0 +170767127607,215,0 +170767127655,215,0 +170767127703,215,0 +170767127751,215,0 +170767127800,213,0 +170767127848,213,0 +170767127896,213,0 +170767127944,213,0 +170767127992,214,0 +170767128041,214,0 +170767128089,214,0 +170767128138,214,0 +170767128186,214,0 +170767128234,214,0 +170767128284,214,0 +170767128332,214,0 +170767128379,215,0 +170767128427,215,0 +170767128475,215,0 +170767128523,215,0 +170767128570,215,0 +170767128618,215,0 +170767128666,215,0 +170767128714,213,0 +170767128763,213,0 +170767128811,213,0 +170767128859,213,0 +170767128907,213,0 +170767128955,214,0 +170767129003,214,0 +170767129052,214,0 +170767129100,214,0 +170767129148,214,0 +170767129196,215,0 +170767129243,215,0 +170767129291,215,0 +170767129339,215,0 +170767129387,215,0 +170767129435,215,0 +170767129483,215,0 +170767129531,215,0 +170767129579,215,0 +170767129627,213,0 +170767129674,213,0 +170767129724,213,0 +170767129771,213,0 +170767129819,214,0 +170767129867,214,0 +170767129915,214,0 +170767129964,214,0 +170767130014,214,0 +170767130061,214,0 +170767130109,214,0 +170767130157,215,0 +170767130205,215,0 +170767130253,215,0 +170767130301,215,0 +170767130350,215,0 +170767130398,215,0 +170767130446,215,0 +170767130493,214,0 +170767130541,213,0 +170767130589,213,0 +170767130637,213,0 +170767130686,213,0 +170767130736,213,0 +170767130784,213,0 +170767130833,213,0 +170767130881,214,0 +170767130929,214,0 +170767130976,214,0 +170767131024,214,0 +170767131072,215,0 +170767131120,215,0 +170767131168,215,0 +170767131215,215,0 +170767131263,215,0 +170767131311,215,0 +170767131359,215,0 +170767131407,215,0 +170767131454,213,0 +170767131504,213,0 +170767131553,213,0 +170767131603,213,0 +170767131653,214,0 +170767131700,214,0 +170767131748,214,0 +170767131798,214,0 +170767131846,214,0 +170767131895,214,0 +170767131943,214,0 +170767131991,215,0 +170767132039,215,0 +170767132087,215,0 +170767132136,215,0 +170767132184,215,0 +170767132232,215,0 +170767132280,215,0 +170767132328,215,0 +170767132376,213,0 +170767132424,213,0 +170767132472,213,0 +170767132520,213,0 +170767132567,213,0 +170767132615,214,0 +170767132663,214,0 +170767132713,214,0 +170767132760,214,0 +170767132808,214,0 +170767132858,214,0 +170767132906,215,0 +170767132953,215,0 +170767133003,215,0 +170767133051,215,0 +170767133100,215,0 +170767133148,215,0 +170767133197,215,0 +170767133245,213,0 +170767133293,213,0 +170767133341,213,0 +170767133389,213,0 +170767133437,213,0 +170767133485,213,0 +170767133533,213,0 +170767133580,214,0 +170767133628,214,0 +170767133676,214,0 +170767133724,214,0 +170767133774,214,0 +170767133822,214,0 +170767133871,215,0 +170767133919,215,0 +170767133967,215,0 +170767134017,215,0 +170767134065,215,0 +170767134114,215,0 +170767134162,213,0 +170767134210,213,0 +170767134258,213,0 +170767134306,213,0 +170767134354,213,0 +170767134403,213,0 +170767134453,213,0 +170767134501,213,0 +170767134550,213,0 +170767134598,214,0 +170767134646,214,0 +170767134694,214,0 +170767134742,214,0 +170767134790,214,0 +170767134838,215,0 +170767134888,214,0 +170767134936,214,0 +170767134983,215,0 +170767135031,215,0 +170767135081,213,0 +170767135129,213,0 +170767135178,213,0 +170767135228,213,0 +170767135276,213,0 +170767135324,213,0 +170767135372,213,0 +170767135420,213,0 +170767135469,213,0 +170767135517,213,0 +170767135565,214,0 +170767135613,214,0 +170767135662,214,0 +170767135712,214,0 +170767135760,214,0 +170767135809,215,0 +170767135857,214,0 +170767135907,215,0 +170767135956,215,0 +170767136004,213,0 +170767136052,213,0 +170767136100,213,0 +170767136149,213,0 +170767136197,213,0 +170767136244,213,0 +170767136292,213,0 +170767136340,213,0 +170767136388,213,0 +170767136436,213,0 +170767136484,213,0 +170767136532,214,0 +170767136579,214,0 +170767136627,214,0 +170767136675,214,0 +170767136723,214,0 +170767136771,214,0 +170767136818,214,0 +170767136866,215,0 +170767136914,213,0 +170767136962,213,0 +170767137010,213,0 +170767137057,213,0 +170767137107,213,0 +170767137154,213,0 +170767137202,214,0 +170767137252,214,0 +170767137300,214,0 +170767137347,214,0 +170767137397,214,0 +170767137445,214,0 +170767137492,215,0 +170767137540,215,0 +170767137588,215,0 +170767137636,215,0 +170767137684,215,0 +170767137732,215,0 +170767137781,215,0 +170767137829,213,0 +170767137877,213,0 +170767137925,213,0 +170767137972,213,0 +170767138020,213,0 +170767138068,214,0 +170767138116,214,0 +170767138164,214,0 +170767138212,214,0 +170767138260,214,0 +170767138307,214,0 +170767138355,214,0 +170767138403,215,0 +170767138451,215,0 +170767138499,214,0 +170767138547,215,0 +170767138594,215,0 +170767138642,215,0 +170767138690,215,0 +170767138738,213,0 +170767138786,213,0 +170767138834,213,0 +170767138882,213,0 +170767138931,213,0 +170767138979,213,0 +170767139027,214,0 +170767139075,214,0 +170767139122,214,0 +170767139170,214,0 +170767139218,214,0 +170767139266,214,0 +170767139314,214,0 +170767139361,215,0 +170767139409,214,0 +170767139457,215,0 +170767139505,215,0 +170767139552,214,0 +170767139600,215,0 +170767139648,213,0 +170767139698,213,0 +170767139745,213,0 +170767139795,213,0 +170767139843,213,0 +170767139892,213,0 +170767139940,214,0 +170767139988,214,0 +170767140035,214,0 +170767140083,214,0 +170767140131,214,0 +170767140179,214,0 +170767140227,214,0 +170767140274,214,0 +170767140322,214,0 +170767140370,215,0 +170767140418,215,0 +170767140466,215,0 +170767140513,215,0 +170767140561,213,0 +170767140610,213,0 +170767140658,213,0 +170767140706,213,0 +170767140754,213,0 +170767140802,213,0 +170767140849,213,0 +170767140897,213,0 +170767140945,213,0 +170767140995,213,0 +170767141042,214,0 +170767141090,214,0 +170767141138,214,0 +170767141188,214,0 +170767141237,214,0 +170767141285,214,0 +170767141333,215,0 +170767141381,215,0 +170767141429,215,0 +170767141476,213,0 +170767141524,213,0 +170767141572,213,0 +170767141620,213,0 +170767141669,213,0 +170767141717,213,0 +170767141765,213,0 +170767141813,214,0 +170767141860,214,0 +170767141908,214,0 +170767141956,214,0 +170767142004,214,0 +170767142052,214,0 +170767142099,214,0 +170767142147,215,0 +170767142195,215,0 +170767142243,215,0 +170767142291,215,0 +170767142339,215,0 +170767142388,213,0 +170767142436,213,0 +170767142485,213,0 +170767142533,213,0 +170767142581,213,0 +170767142629,213,0 +170767142676,213,0 +170767142724,214,0 +170767142772,214,0 +170767142820,214,0 +170767142868,214,0 +170767142916,214,0 +170767142963,215,0 +170767143011,215,0 +170767143059,215,0 +170767143107,215,0 +170767143155,215,0 +170767143203,215,0 +170767143250,215,0 +170767143298,213,0 +170767143346,213,0 +170767143394,213,0 +170767143442,213,0 +170767143490,213,0 +170767143537,214,0 +170767143585,213,0 +170767143633,214,0 +170767143682,214,0 +170767143730,214,0 +170767143778,214,0 +170767143826,214,0 +170767143873,215,0 +170767143921,215,0 +170767143969,215,0 +170767144018,215,0 +170767144066,215,0 +170767144114,215,0 +170767144163,215,0 +170767144213,213,0 +170767144261,213,0 +170767144309,213,0 +170767144357,213,0 +170767144404,213,0 +170767144452,213,0 +170767144502,214,0 +170767144550,214,0 +170767144598,214,0 +170767144645,214,0 +170767144693,214,0 +170767144743,214,0 +170767144791,214,0 +170767144838,215,0 +170767144886,215,0 +170767144934,215,0 +170767144982,215,0 +170767145030,215,0 +170767145077,215,0 +170767145125,213,0 +170767145173,213,0 +170767145221,213,0 +170767145269,213,0 +170767145317,213,0 +170767145365,213,0 +170767145412,213,0 +170767145460,213,0 +170767145508,214,0 +170767145556,214,0 +170767145604,214,0 +170767145652,214,0 +170767145699,214,0 +170767145747,215,0 +170767145795,215,0 +170767145843,215,0 +170767145891,215,0 +170767145939,215,0 +170767145986,215,0 +170767146034,213,0 +170767146082,213,0 +170767146130,213,0 +170767146178,213,0 +170767146226,213,0 +170767146273,213,0 +170767146321,214,0 +170767146369,214,0 +170767146417,214,0 +170767146465,214,0 +170767146513,214,0 +170767146560,214,0 +170767146608,214,0 +170767146658,215,0 +170767146705,215,0 +170767146753,215,0 +170767146801,215,0 +170767146849,215,0 +170767146897,215,0 +170767146945,213,0 +170767146994,213,0 +170767147042,213,0 +170767147091,213,0 +170767147139,213,0 +170767147187,214,0 +170767147235,213,0 +170767147284,214,0 +170767147332,214,0 +170767147381,214,0 +170767147429,214,0 +170767147477,215,0 +170767147525,214,0 +170767147573,214,0 +170767147620,215,0 +170767147668,215,0 +170767147716,215,0 +170767147764,215,0 +170767147812,215,0 +170767147861,213,0 +170767147909,213,0 +170767147957,213,0 +170767148005,213,0 +170767148053,213,0 +170767148101,213,0 +170767148148,214,0 +170767148196,214,0 +170767148244,214,0 +170767148292,214,0 +170767148340,214,0 +170767148387,215,0 +170767148435,215,0 +170767148483,215,0 +170767148531,215,0 +170767148579,215,0 +170767148627,215,0 +170767148674,215,0 +170767148724,215,0 +170767148773,213,0 +170767148821,213,0 +170767148869,213,0 +170767148917,213,0 +170767148965,213,0 +170767149012,213,0 +170767149060,213,0 +170767149110,214,0 +170767149158,214,0 +170767149205,214,0 +170767149253,214,0 +170767149301,215,0 +170767149351,214,0 +170767149399,215,0 +170767149446,214,0 +170767149494,215,0 +170767149544,215,0 +170767149592,215,0 +170767149640,213,0 +170767149688,213,0 +170767149735,213,0 +170767149785,213,0 +170767149833,213,0 +170767149881,213,0 +170767149929,213,0 +170767149977,213,0 +170767150025,214,0 +170767150072,214,0 +170767150120,214,0 +170767150168,214,0 +170767150216,214,0 +170767150264,214,0 +170767150311,215,0 +170767150359,215,0 +170767150407,215,0 +170767150455,215,0 +170767150504,215,0 +170767150552,213,0 +170767150600,213,0 +170767150648,213,0 +170767150696,213,0 +170767150743,213,0 +170767150791,213,0 +170767150839,213,0 +170767150887,214,0 +170767150935,214,0 +170767150983,214,0 +170767151031,214,0 +170767151078,214,0 +170767151126,214,0 +170767151174,215,0 +170767151223,215,0 +170767151271,215,0 +170767151319,215,0 +170767151369,214,0 +170767151418,215,0 +170767151466,213,0 +170767151514,213,0 +170767151561,213,0 +170767151609,213,0 +170767151657,213,0 +170767151705,213,0 +170767151753,213,0 +170767151801,213,0 +170767151849,214,0 +170767151898,214,0 +170767151946,214,0 +170767151994,214,0 +170767152042,214,0 +170767152090,214,0 +170767152139,214,0 +170767152187,215,0 +170767152235,215,0 +170767152285,215,0 +170767152333,215,0 +170767152380,213,0 +170767152428,213,0 +170767152476,213,0 +170767152524,213,0 +170767152572,213,0 +170767152620,213,0 +170767152668,213,0 +170767152716,214,0 +170767152764,214,0 +170767152812,214,0 +170767152861,214,0 +170767152909,214,0 +170767152957,214,0 +170767153005,215,0 +170767153053,215,0 +170767153102,215,0 +170767153152,215,0 +170767153199,215,0 +170767153247,215,0 +170767153295,213,0 +170767153343,213,0 +170767153391,213,0 +170767153439,213,0 +170767153486,213,0 +170767153536,214,0 +170767153584,214,0 +170767153633,214,0 +170767153681,214,0 +170767153729,214,0 +170767153777,214,0 +170767153824,214,0 +170767153872,214,0 +170767153922,215,0 +170767153970,215,0 +170767154019,215,0 +170767154067,215,0 +170767154116,215,0 +170767154166,215,0 +170767154214,213,0 +170767154262,213,0 +170767154311,213,0 +170767154359,213,0 +170767154409,214,0 +170767154456,214,0 +170767154504,214,0 +170767154552,214,0 +170767154600,214,0 +170767154648,214,0 +170767154698,214,0 +170767154746,214,0 +170767154793,215,0 +170767154841,215,0 +170767154889,215,0 +170767154937,215,0 +170767154985,215,0 +170767155033,215,0 +170767155081,215,0 +170767155129,213,0 +170767155176,213,0 +170767155224,213,0 +170767155272,213,0 +170767155320,213,0 +170767155368,214,0 +170767155416,214,0 +170767155464,214,0 +170767155512,214,0 +170767155560,214,0 +170767155607,214,0 +170767155655,215,0 +170767155703,215,0 +170767155753,215,0 +170767155800,215,0 +170767155848,215,0 +170767155898,215,0 +170767155946,215,0 +170767155994,213,0 +170767156043,213,0 +170767156091,213,0 +170767156139,213,0 +170767156187,213,0 +170767156235,213,0 +170767156283,213,0 +170767156331,213,0 +170767156379,214,0 +170767156427,214,0 +170767156475,214,0 +170767156522,214,0 +170767156570,214,0 +170767156620,214,0 +170767156668,214,0 +170767156716,215,0 +170767156765,215,0 +170767156813,215,0 +170767156863,215,0 +170767156912,213,0 +170767156960,213,0 +170767157008,213,0 +170767157056,213,0 +170767157104,213,0 +170767157151,213,0 +170767157199,213,0 +170767157247,213,0 +170767157295,214,0 +170767157343,214,0 +170767157391,214,0 +170767157439,214,0 +170767157487,214,0 +170767157536,214,0 +170767157584,214,0 +170767157633,215,0 +170767157681,214,0 +170767157729,215,0 +170767157777,215,0 +170767157825,213,0 +170767157873,213,0 +170767157921,213,0 +170767157968,213,0 +170767158016,213,0 +170767158066,213,0 +170767158113,214,0 +170767158161,214,0 +170767158209,214,0 +170767158257,214,0 +170767158305,214,0 +170767158353,214,0 +170767158402,215,0 +170767158450,215,0 +170767158500,215,0 +170767158549,215,0 +170767158597,215,0 +170767158647,215,0 +170767158695,215,0 +170767158742,213,0 +170767158790,213,0 +170767158838,213,0 +170767158886,213,0 +170767158936,213,0 +170767158984,213,0 +170767159031,213,0 +170767159081,214,0 +170767159130,214,0 +170767159178,214,0 +170767159228,214,0 +170767159276,215,0 +170767159324,215,0 +170767159373,215,0 +170767159423,215,0 +170767159470,215,0 +170767159518,215,0 +170767159566,215,0 +170767159615,213,0 +170767159663,213,0 +170767159713,213,0 +170767159762,213,0 +170767159810,213,0 +170767159860,213,0 +170767159908,214,0 +170767159955,214,0 +170767160003,214,0 +170767160051,214,0 +170767160101,214,0 +170767160149,214,0 +170767160196,215,0 +170767160244,215,0 +170767160292,215,0 +170767160340,215,0 +170767160388,215,0 +170767160436,215,0 +170767160484,215,0 +170767160532,214,0 +170767160579,213,0 +170767160629,213,0 +170767160677,213,0 +170767160725,213,0 +170767160772,213,0 +170767160822,213,0 +170767160870,214,0 +170767160919,214,0 +170767160969,214,0 +170767161017,214,0 +170767161065,214,0 +170767161113,215,0 +170767161162,215,0 +170767161210,215,0 +170767161260,215,0 +170767161308,215,0 +170767161357,215,0 +170767161405,215,0 +170767161453,214,0 +170767161503,213,0 +170767161552,214,0 +170767161602,214,0 +170767161650,214,0 +170767161697,214,0 +170767161745,214,0 +170767161793,214,0 +170767161843,214,0 +170767161892,214,0 +170767161940,215,0 +170767161988,215,0 +170767162036,215,0 +170767162086,215,0 +170767162134,215,0 +170767162182,215,0 +170767162230,215,0 +170767162279,215,0 +170767162327,215,0 +170767162377,213,0 +170767162425,213,0 +170767162473,213,0 +170767162521,213,0 +170767162568,213,0 +170767162616,214,0 +170767162664,214,0 +170767162712,214,0 +170767162760,214,0 +170767162808,214,0 +170767162857,215,0 +170767162905,214,0 +170767162955,214,0 +170767163004,215,0 +170767163054,215,0 +170767163102,215,0 +170767163150,215,0 +170767163199,215,0 +170767163247,213,0 +170767163297,213,0 +170767163344,213,0 +170767163392,213,0 +170767163440,213,0 +170767163488,214,0 +170767163536,214,0 +170767163584,214,0 +170767163632,214,0 +170767163680,214,0 +170767163727,214,0 +170767163777,214,0 +170767163825,215,0 +170767163874,215,0 +170767163922,215,0 +170767163972,215,0 +170767164020,215,0 +170767164067,215,0 +170767164115,215,0 +170767164163,213,0 +170767164211,213,0 +170767164259,213,0 +170767164307,213,0 +170767164355,214,0 +170767164402,213,0 +170767164450,214,0 +170767164498,214,0 +170767164546,214,0 +170767164596,214,0 +170767164645,214,0 +170767164693,214,0 +170767164741,215,0 +170767164789,215,0 +170767164837,215,0 +170767164885,215,0 +170767164934,215,0 +170767164982,215,0 +170767165030,215,0 +170767165079,213,0 +170767165127,213,0 +170767165175,213,0 +170767165223,213,0 +170767165271,214,0 +170767165319,213,0 +170767165369,214,0 +170767165417,213,0 +170767165466,214,0 +170767165514,214,0 +170767165564,214,0 +170767165613,214,0 +170767165661,215,0 +170767165709,214,0 +170767165757,215,0 +170767165805,215,0 +170767165854,215,0 +170767165902,215,0 +170767165952,215,0 +170767166001,213,0 +170767166049,213,0 +170767166097,213,0 +170767166145,213,0 +170767166193,213,0 +170767166242,214,0 +170767166292,214,0 +170767166340,214,0 +170767166388,214,0 +170767166436,214,0 +170767166485,214,0 +170767166533,214,0 +170767166581,214,0 +170767166631,214,0 +170767166680,215,0 +170767166728,215,0 +170767166776,215,0 +170767166825,215,0 +170767166873,214,0 +170767166921,213,0 +170767166971,213,0 +170767167019,213,0 +170767167067,213,0 +170767167115,213,0 +170767167164,214,0 +170767167214,214,0 +170767167262,214,0 +170767167311,214,0 +170767167359,214,0 +170767167407,214,0 +170767167455,214,0 +170767167504,214,0 +170767167552,215,0 +170767167600,215,0 +170767167648,215,0 +170767167698,215,0 +170767167747,215,0 +170767167797,213,0 +170767167845,213,0 +170767167893,213,0 +170767167941,213,0 +170767167990,213,0 +170767168038,213,0 +170767168088,213,0 +170767168137,213,0 +170767168185,214,0 +170767168234,214,0 +170767168282,214,0 +170767168330,214,0 +170767168380,214,0 +170767168428,214,0 +170767168476,215,0 +170767168524,215,0 +170767168572,215,0 +170767168621,215,0 +170767168669,215,0 +170767168719,213,0 +170767168767,213,0 +170767168816,213,0 +170767168865,213,0 +170767168913,213,0 +170767168961,213,0 +170767169009,213,0 +170767169057,214,0 +170767169105,214,0 +170767169153,214,0 +170767169201,214,0 +170767169249,214,0 +170767169299,214,0 +170767169346,215,0 +170767169394,215,0 +170767169442,215,0 +170767169490,214,0 +170767169538,215,0 +170767169586,214,0 +170767169634,213,0 +170767169682,213,0 +170767169730,213,0 +170767169778,213,0 +170767169826,213,0 +170767169874,213,0 +170767169922,214,0 +170767169970,213,0 +170767170019,214,0 +170767170067,214,0 +170767170115,214,0 +170767170163,214,0 +170767170212,214,0 +170767170260,214,0 +170767170308,214,0 +170767170356,215,0 +170767170404,215,0 +170767170452,215,0 +170767170500,214,0 +170767170548,213,0 +170767170596,213,0 +170767170644,213,0 +170767170692,213,0 +170767170740,213,0 +170767170789,214,0 +170767170837,214,0 +170767170885,214,0 +170767170933,214,0 +170767170981,214,0 +170767171029,214,0 +170767171078,214,0 +170767171126,214,0 +170767171174,215,0 +170767171224,215,0 +170767171273,215,0 +170767171321,215,0 +170767171369,215,0 +170767171418,213,0 +170767171466,213,0 +170767171514,213,0 +170767171562,213,0 +170767171611,213,0 +170767171659,213,0 +170767171707,213,0 +170767171755,213,0 +170767171803,213,0 +170767171850,214,0 +170767171898,214,0 +170767171946,214,0 +170767171994,214,0 +170767172042,214,0 +170767172089,215,0 +170767172137,215,0 +170767172185,215,0 +170767172233,215,0 +170767172281,215,0 +170767172329,213,0 +170767172377,213,0 +170767172426,213,0 +170767172474,213,0 +170767172522,213,0 +170767172570,213,0 +170767172619,213,0 +170767172669,213,0 +170767172717,214,0 +170767172765,214,0 +170767172813,214,0 +170767172862,214,0 +170767172910,214,0 +170767172960,214,0 +170767173009,214,0 +170767173057,215,0 +170767173105,215,0 +170767173155,215,0 +170767173202,215,0 +170767173252,213,0 +170767173301,213,0 +170767173349,213,0 +170767173399,213,0 +170767173448,213,0 +170767173496,213,0 +170767173544,213,0 +170767173592,214,0 +170767173642,214,0 +170767173689,214,0 +170767173737,214,0 +170767173787,214,0 +170767173834,214,0 +170767173882,215,0 +170767173932,215,0 +170767173981,215,0 +170767174031,215,0 +170767174080,215,0 +170767174128,215,0 +170767174176,213,0 +170767174224,213,0 +170767174272,213,0 +170767174320,213,0 +170767174368,214,0 +170767174418,214,0 +170767174467,214,0 +170767174515,214,0 +170767174563,214,0 +170767174611,214,0 +170767174659,214,0 +170767174707,214,0 +170767174755,215,0 +170767174803,214,0 +170767174851,215,0 +170767174899,215,0 +170767174947,215,0 +170767174996,215,0 +170767175046,214,0 +170767175094,213,0 +170767175142,213,0 +170767175190,213,0 +170767175239,214,0 +170767175287,214,0 +170767175336,214,0 +170767175384,214,0 +170767175432,214,0 +170767175480,214,0 +170767175530,214,0 +170767175578,214,0 +170767175626,215,0 +170767175674,215,0 +170767175723,215,0 +170767175773,215,0 +170767175821,215,0 +170767175871,215,0 +170767175919,215,0 +170767175968,213,0 +170767176016,213,0 +170767176064,213,0 +170767176112,213,0 +170767176161,213,0 +170767176209,214,0 +170767176259,214,0 +170767176307,214,0 +170767176355,214,0 +170767176403,214,0 +170767176451,214,0 +170767176499,215,0 +170767176546,215,0 +170767176596,215,0 +170767176644,215,0 +170767176693,215,0 +170767176743,215,0 +170767176792,215,0 +170767176840,215,0 +170767176888,213,0 +170767176938,213,0 +170767176986,213,0 +170767177034,213,0 +170767177082,213,0 +170767177131,214,0 +170767177179,214,0 +170767177228,214,0 +170767177276,214,0 +170767177324,214,0 +170767177372,214,0 +170767177420,215,0 +170767177468,215,0 +170767177516,215,0 +170767177565,215,0 +170767177613,215,0 +170767177661,215,0 +170767177709,215,0 +170767177759,213,0 +170767177807,213,0 +170767177856,213,0 +170767177906,213,0 +170767177954,213,0 +170767178002,213,0 +170767178049,213,0 +170767178097,214,0 +170767178145,214,0 +170767178195,214,0 +170767178243,214,0 +170767178290,214,0 +170767178340,215,0 +170767178388,215,0 +170767178436,216,0 +170767178484,215,0 +170767178533,215,0 +170767178581,215,0 +170767178629,215,0 +170767178677,213,0 +170767178725,213,0 +170767178773,213,0 +170767178822,213,0 +170767178870,213,0 +170767178918,213,0 +170767178966,213,0 +170767179014,214,0 +170767179062,214,0 +170767179110,214,0 +170767179159,214,0 +170767179207,214,0 +170767179257,214,0 +170767179305,214,0 +170767179353,214,0 +170767179402,214,0 +170767179450,214,0 +170767179500,215,0 +170767179548,215,0 +170767179596,213,0 +170767179645,213,0 +170767179693,213,0 +170767179741,213,0 +170767179790,213,0 +170767179840,213,0 +170767179888,213,0 +170767179936,213,0 +170767179985,213,0 +170767180035,214,0 +170767180083,213,0 +170767180132,214,0 +170767180182,214,0 +170767180231,214,0 +170767180281,215,0 +170767180329,214,0 +170767180378,215,0 +170767180428,215,0 +170767180477,213,0 +170767180525,213,0 +170767180573,213,0 +170767180623,213,0 +170767180672,213,0 +170767180720,213,0 +170767180768,213,0 +170767180816,213,0 +170767180866,213,0 +170767180915,213,0 +170767180963,213,0 +170767181013,214,0 +170767181062,214,0 +170767181112,214,0 +170767181160,214,0 +170767181208,214,0 +170767181257,214,0 +170767181307,215,0 +170767181355,215,0 +170767181403,213,0 +170767181450,213,0 +170767181498,213,0 +170767181546,213,0 +170767181596,213,0 +170767181645,213,0 +170767181693,213,0 +170767181741,213,0 +170767181791,214,0 +170767181839,214,0 +170767181888,214,0 +170767181938,214,0 +170767181985,215,0 +170767182033,215,0 +170767182081,215,0 +170767182129,215,0 +170767182179,215,0 +170767182227,215,0 +170767182275,215,0 +170767182324,213,0 +170767182374,213,0 +170767182421,213,0 +170767182469,213,0 +170767182517,213,0 +170767182567,214,0 +170767182615,214,0 +170767182663,214,0 +170767182712,214,0 +170767182762,214,0 +170767182810,214,0 +170767182858,214,0 +170767182907,214,0 +170767182957,214,0 +170767183004,214,0 +170767183052,214,0 +170767183100,215,0 +170767183150,215,0 +170767183199,215,0 +170767183247,215,0 +170767183295,215,0 +170767183343,215,0 +170767183391,215,0 +170767183439,215,0 +170767183487,215,0 +170767183536,215,0 +170767183584,215,0 +170767183632,215,0 +170767183680,214,0 +170767183729,213,0 +170767183777,213,0 +170767183825,214,0 +170767183875,214,0 +170767183923,214,0 +170767183971,214,0 +170767184019,214,0 +170767184067,215,0 +170767184114,215,0 +170767184164,215,0 +170767184213,215,0 +170767184261,215,0 +170767184309,215,0 +170767184357,215,0 +170767184407,215,0 +170767184455,215,0 +170767184503,215,0 +170767184550,213,0 +170767184598,213,0 +170767184648,213,0 +170767184696,213,0 +170767184744,214,0 +170767184792,214,0 +170767184839,214,0 +170767184887,214,0 +170767184935,214,0 +170767184983,214,0 +170767185031,214,0 +170767185079,215,0 +170767185126,214,0 +170767185174,215,0 +170767185222,215,0 +170767185270,215,0 +170767185318,215,0 +170767185368,215,0 +170767185416,215,0 +170767185464,213,0 +170767185511,213,0 +170767185559,213,0 +170767185607,214,0 +170767185655,214,0 +170767185703,214,0 +170767185751,214,0 +170767185799,214,0 +170767185847,214,0 +170767185895,214,0 +170767185943,215,0 +170767185991,214,0 +170767186039,215,0 +170767186087,215,0 +170767186135,215,0 +170767186184,215,0 +170767186234,215,0 +170767186281,215,0 +170767186329,215,0 +170767186377,214,0 +170767186425,214,0 +170767186473,214,0 +170767186521,214,0 +170767186568,214,0 +170767186616,214,0 +170767186664,214,0 +170767186714,214,0 +170767186762,214,0 +170767186809,214,0 +170767186857,215,0 +170767186905,215,0 +170767186955,215,0 +170767187003,215,0 +170767187050,215,0 +170767187098,215,0 +170767187148,215,0 +170767187196,215,0 +170767187244,215,0 +170767187293,214,0 +170767187343,213,0 +170767187391,213,0 +170767187439,213,0 +170767187487,214,0 +170767187535,214,0 +170767187583,214,0 +170767187631,214,0 +170767187680,214,0 +170767187728,214,0 +170767187776,215,0 +170767187826,215,0 +170767187874,215,0 +170767187923,215,0 +170767187971,215,0 +170767188019,215,0 +170767188068,215,0 +170767188118,215,0 +170767188167,214,0 +170767188217,213,0 +170767188265,213,0 +170767188314,213,0 +170767188362,213,0 +170767188410,214,0 +170767188458,214,0 +170767188508,214,0 +170767188557,214,0 +170767188605,214,0 +170767188655,214,0 +170767188704,214,0 +170767188752,214,0 +170767188801,214,0 +170767188849,215,0 +170767188897,215,0 +170767188945,215,0 +170767188995,215,0 +170767189042,215,0 +170767189090,213,0 +170767189138,213,0 +170767189186,213,0 +170767189234,213,0 +170767189282,213,0 +170767189330,214,0 +170767189378,213,0 +170767189427,214,0 +170767189475,214,0 +170767189523,214,0 +170767189571,214,0 +170767189621,214,0 +170767189670,215,0 +170767189720,214,0 +170767189768,215,0 +170767189817,215,0 +170767189867,214,0 +170767189916,215,0 +170767189966,215,0 +170767190014,213,0 +170767190063,213,0 +170767190111,213,0 +170767190159,213,0 +170767190208,213,0 +170767190256,213,0 +170767190304,214,0 +170767190354,214,0 +170767190403,214,0 +170767190453,214,0 +170767190501,214,0 +170767190549,214,0 +170767190597,214,0 +170767190644,215,0 +170767190692,215,0 +170767190740,214,0 +170767190790,215,0 +170767190838,215,0 +170767190887,215,0 +170767190935,213,0 +170767190985,213,0 +170767191033,213,0 +170767191082,213,0 +170767191130,213,0 +170767191180,213,0 +170767191227,214,0 +170767191277,214,0 +170767191325,214,0 +170767191374,214,0 +170767191422,214,0 +170767191470,214,0 +170767191518,215,0 +170767191566,215,0 +170767191614,215,0 +170767191662,215,0 +170767191712,215,0 +170767191760,215,0 +170767191807,213,0 +170767191855,213,0 +170767191905,213,0 +170767191953,213,0 +170767192001,213,0 +170767192050,213,0 +170767192100,213,0 +170767192148,213,0 +170767192196,214,0 +170767192244,214,0 +170767192292,214,0 +170767192340,214,0 +170767192387,214,0 +170767192435,214,0 +170767192483,215,0 +170767192533,215,0 +170767192581,215,0 +170767192629,215,0 +170767192677,215,0 +170767192724,213,0 +170767192772,213,0 +170767192820,213,0 +170767192868,213,0 +170767192916,213,0 +170767192964,213,0 +170767193011,213,0 +170767193059,213,0 +170767193107,213,0 +170767193155,213,0 +170767193204,214,0 +170767193254,214,0 +170767193301,214,0 +170767193349,214,0 +170767193397,215,0 +170767193445,215,0 +170767193494,215,0 +170767193542,215,0 +170767193592,215,0 +170767193640,213,0 +170767193688,213,0 +170767193737,213,0 +170767193785,213,0 +170767193833,213,0 +170767193881,213,0 +170767193929,213,0 +170767193979,214,0 +170767194026,214,0 +170767194076,214,0 +170767194126,214,0 +170767194174,214,0 +170767194222,214,0 +170767194269,215,0 +170767194317,215,0 +170767194367,215,0 +170767194415,214,0 +170767194463,215,0 +170767194511,215,0 +170767194559,213,0 +170767194607,213,0 +170767194655,213,0 +170767194703,213,0 +170767194752,213,0 +170767194800,214,0 +170767194848,213,0 +170767194898,214,0 +170767194947,214,0 +170767194995,214,0 +170767195043,214,0 +170767195091,214,0 +170767195139,214,0 +170767195188,214,0 +170767195238,215,0 +170767195286,215,0 +170767195334,215,0 +170767195383,215,0 +170767195433,214,0 +170767195481,213,0 +170767195529,213,0 +170767195577,213,0 +170767195626,213,0 +170767195676,213,0 +170767195723,213,0 +170767195773,213,0 +170767195822,213,0 +170767195872,214,0 +170767195920,214,0 +170767195968,214,0 +170767196016,214,0 +170767196065,215,0 +170767196113,214,0 +170767196161,215,0 +170767196210,215,0 +170767196258,215,0 +170767196306,215,0 +170767196356,213,0 +170767196404,213,0 +170767196453,213,0 +170767196501,213,0 +170767196549,213,0 +170767196597,213,0 +170767196645,213,0 +170767196692,214,0 +170767196740,214,0 +170767196788,214,0 +170767196836,214,0 +170767196884,214,0 +170767196932,215,0 +170767196979,215,0 +170767197027,215,0 +170767197075,215,0 +170767197123,215,0 +170767197171,215,0 +170767197219,215,0 +170767197266,213,0 +170767197314,213,0 +170767197362,213,0 +170767197410,213,0 +170767197458,213,0 +170767197506,213,0 +170767197555,213,0 +170767197603,214,0 +170767197651,214,0 +170767197699,214,0 +170767197747,214,0 +170767197796,214,0 +170767197844,214,0 +170767197892,215,0 +170767197940,215,0 +170767197988,215,0 +170767198036,215,0 +170767198083,215,0 +170767198131,215,0 +170767198179,213,0 +170767198227,213,0 +170767198275,213,0 +170767198323,213,0 +170767198372,213,0 +170767198420,213,0 +170767198468,213,0 +170767198516,213,0 +170767198564,214,0 +170767198612,214,0 +170767198660,214,0 +170767198708,214,0 +170767198756,214,0 +170767198805,215,0 +170767198853,215,0 +170767198901,215,0 +170767198949,215,0 +170767198997,215,0 +170767199045,215,0 +170767199092,213,0 +170767199140,213,0 +170767199188,213,0 +170767199236,213,0 +170767199284,213,0 +170767199332,213,0 +170767199379,213,0 +170767199427,213,0 +170767199475,214,0 +170767199523,214,0 +170767199573,214,0 +170767199620,214,0 +170767199668,214,0 +170767199718,215,0 +170767199766,215,0 +170767199814,215,0 +170767199862,215,0 +170767199910,215,0 +170767199958,214,0 +170767200007,213,0 +170767200055,213,0 +170767200105,213,0 +170767200153,213,0 +170767200202,213,0 +170767200250,213,0 +170767200298,213,0 +170767200346,213,0 +170767200394,214,0 +170767200442,214,0 +170767200489,214,0 +170767200537,214,0 +170767200587,214,0 +170767200636,214,0 +170767200684,214,0 +170767200732,215,0 +170767200780,215,0 +170767200828,215,0 +170767200876,213,0 +170767200924,213,0 +170767200973,213,0 +170767201023,213,0 +170767201071,213,0 +170767201120,213,0 +170767201168,213,0 +170767201218,213,0 +170767201267,213,0 +170767201315,213,0 +170767201363,214,0 +170767201411,214,0 +170767201459,214,0 +170767201507,214,0 +170767201554,214,0 +170767201604,214,0 +170767201653,215,0 +170767201703,215,0 +170767201751,215,0 +170767201800,213,0 +170767201848,213,0 +170767201896,213,0 +170767201944,213,0 +170767201992,213,0 +170767202041,213,0 +170767202089,213,0 +170767202137,213,0 +170767202187,213,0 +170767202235,213,0 +170767202284,213,0 +170767202332,214,0 +170767202381,214,0 +170767202429,214,0 +170767202477,214,0 +170767202525,214,0 +170767202575,215,0 +170767202623,215,0 +170767202671,215,0 +170767202720,213,0 +170767202768,213,0 +170767202818,213,0 +170767202866,213,0 +170767202914,213,0 +170767202962,213,0 +170767203009,213,0 +170767203057,213,0 +170767203105,213,0 +170767203153,214,0 +170767203201,214,0 +170767203250,214,0 +170767203298,215,0 +170767203346,214,0 +170767203396,215,0 +170767203445,215,0 +170767203493,215,0 +170767203541,215,0 +170767203590,213,0 +170767203638,213,0 +170767203688,213,0 +170767203737,213,0 +170767203785,213,0 +170767203833,213,0 +170767203881,213,0 +170767203931,214,0 +170767203980,214,0 +170767204028,214,0 +170767204076,214,0 +170767204125,214,0 +170767204173,214,0 +170767204223,215,0 +170767204272,215,0 +170767204322,215,0 +170767204370,215,0 +170767204418,215,0 +170767204467,215,0 +170767204515,213,0 +170767204563,213,0 +170767204611,213,0 +170767204659,213,0 +170767204708,213,0 +170767204756,214,0 +170767204804,214,0 +170767204854,214,0 +170767204901,214,0 +170767204951,214,0 +170767205000,214,0 +170767205048,214,0 +170767205098,215,0 +170767205146,215,0 +170767205195,215,0 +170767205243,215,0 +170767205291,215,0 +170767205341,215,0 +170767205389,215,0 +170767205438,213,0 +170767205486,213,0 +170767205534,213,0 +170767205582,213,0 +170767205630,213,0 +170767205679,214,0 +170767205727,214,0 +170767205777,214,0 +170767205825,214,0 +170767205873,214,0 +170767205921,214,0 +170767205968,214,0 +170767206018,214,0 +170767206066,215,0 +170767206115,214,0 +170767206163,215,0 +170767206211,215,0 +170767206259,215,0 +170767206307,213,0 +170767206356,213,0 +170767206406,213,0 +170767206454,213,0 +170767206503,213,0 +170767206551,213,0 +170767206599,213,0 +170767206649,213,0 +170767206697,214,0 +170767206746,214,0 +170767206794,214,0 +170767206842,214,0 +170767206890,214,0 +170767206939,214,0 +170767206987,214,0 +170767207037,215,0 +170767207086,214,0 +170767207134,215,0 +170767207184,215,0 +170767207233,213,0 +170767207283,213,0 +170767207331,213,0 +170767207380,213,0 +170767207430,213,0 +170767207478,213,0 +170767207526,213,0 +170767207573,213,0 +170767207621,214,0 +170767207669,213,0 +170767207717,214,0 +170767207765,214,0 +170767207813,214,0 +170767207861,215,0 +170767207908,215,0 +170767207956,215,0 +170767208004,215,0 +170767208053,215,0 +170767208101,215,0 +170767208149,213,0 +170767208199,213,0 +170767208247,213,0 +170767208295,213,0 +170767208342,213,0 +170767208392,213,0 +170767208441,214,0 +170767208489,214,0 +170767208537,214,0 +170767208585,214,0 +170767208633,214,0 +170767208681,214,0 +170767208729,215,0 +170767208776,215,0 +170767208824,215,0 +170767208872,215,0 +170767208920,215,0 +170767208968,215,0 +170767209017,215,0 +170767209065,213,0 +170767209113,213,0 +170767209161,213,0 +170767209209,213,0 +170767209258,214,0 +170767209308,214,0 +170767209356,214,0 +170767209405,214,0 +170767209453,214,0 +170767209501,214,0 +170767209549,215,0 +170767209599,215,0 +170767209646,215,0 +170767209696,214,0 +170767209744,215,0 +170767209793,215,0 +170767209841,215,0 +170767209891,215,0 +170767209939,213,0 +170767209988,213,0 +170767210036,213,0 +170767210084,214,0 +170767210134,214,0 +170767210182,214,0 +170767210230,214,0 +170767210278,214,0 +170767210327,214,0 +170767210377,214,0 +170767210425,214,0 +170767210473,215,0 +170767210522,215,0 +170767210570,215,0 +170767210618,215,0 +170767210666,215,0 +170767210713,215,0 +170767210761,215,0 +170767210811,214,0 +170767210859,213,0 +170767210908,213,0 +170767210958,213,0 +170767211005,213,0 +170767211053,214,0 +170767211101,214,0 +170767211149,214,0 +170767211197,214,0 +170767211247,214,0 +170767211295,214,0 +170767211342,215,0 +170767211390,215,0 +170767211438,215,0 +170767211486,215,0 +170767211534,215,0 +170767211581,215,0 +170767211632,215,0 +170767211680,215,0 +170767211729,215,0 +170767211777,213,0 +170767211826,213,0 +170767211876,213,0 +170767211924,213,0 +170767211972,213,0 +170767212020,214,0 +170767212068,214,0 +170767212116,214,0 +170767212164,214,0 +170767212212,214,0 +170767212260,214,0 +170767212309,214,0 +170767212357,215,0 +170767212406,215,0 +170767212454,215,0 +170767212502,215,0 +170767212552,215,0 +170767212601,215,0 +170767212649,213,0 +170767212697,213,0 +170767212745,213,0 +170767212795,213,0 +170767212843,213,0 +170767212890,213,0 +170767212938,213,0 +170767212986,214,0 +170767213034,213,0 +170767213082,214,0 +170767213130,214,0 +170767213178,214,0 +170767213226,214,0 +170767213275,214,0 +170767213323,215,0 +170767213373,215,0 +170767213422,215,0 +170767213470,215,0 +170767213520,215,0 +170767213569,213,0 +170767213617,213,0 +170767213665,213,0 +170767213713,213,0 +170767213761,213,0 +170767213809,213,0 +170767213859,213,0 +170767213908,213,0 +170767213956,214,0 +170767214004,214,0 +170767214053,214,0 +170767214101,214,0 +170767214149,214,0 +170767214199,214,0 +170767214248,215,0 +170767214296,215,0 +170767214344,215,0 +170767214394,215,0 +170767214442,215,0 +170767214491,213,0 +170767214539,213,0 +170767214588,213,0 +170767214638,213,0 +170767214686,213,0 +170767214734,213,0 +170767214782,213,0 +170767214831,213,0 +170767214879,213,0 +170767214929,213,0 +170767214978,214,0 +170767215028,214,0 +170767215077,214,0 +170767215127,214,0 +170767215175,214,0 +170767215224,215,0 +170767215274,215,0 +170767215323,215,0 +170767215371,213,0 +170767215419,213,0 +170767215467,213,0 +170767215516,213,0 +170767215564,213,0 +170767215612,213,0 +170767215660,213,0 +170767215708,214,0 +170767215758,214,0 +170767215807,214,0 +170767215857,214,0 +170767215906,214,0 +170767215954,214,0 +170767216002,215,0 +170767216052,215,0 +170767216100,215,0 +170767216147,215,0 +170767216195,215,0 +170767216243,213,0 +170767216291,213,0 +170767216339,213,0 +170767216387,213,0 +170767216436,213,0 +170767216484,213,0 +170767216532,213,0 +170767216580,214,0 +170767216628,214,0 +170767216676,214,0 +170767216724,214,0 +170767216774,214,0 +170767216823,214,0 +170767216871,215,0 +170767216919,215,0 +170767216967,215,0 +170767217015,215,0 +170767217063,215,0 +170767217111,214,0 +170767217158,213,0 +170767217208,213,0 +170767217256,213,0 +170767217304,213,0 +170767217352,213,0 +170767217399,213,0 +170767217447,214,0 +170767217495,214,0 +170767217545,214,0 +170767217594,214,0 +170767217642,214,0 +170767217692,214,0 +170767217740,215,0 +170767217787,215,0 +170767217835,215,0 +170767217883,214,0 +170767217931,215,0 +170767217979,215,0 +170767218027,213,0 +170767218077,213,0 +170767218126,213,0 +170767218176,213,0 +170767218224,213,0 +170767218272,213,0 +170767218321,214,0 +170767218369,214,0 +170767218419,214,0 +170767218466,214,0 +170767218516,214,0 +170767218565,214,0 +170767218614,214,0 +170767218663,215,0 +170767218712,214,0 +170767218760,215,0 +170767218810,215,0 +170767218858,215,0 +170767218906,213,0 +170767218955,213,0 +170767219003,213,0 +170767219053,213,0 +170767219102,213,0 +170767219150,213,0 +170767219198,214,0 +170767219248,214,0 +170767219296,214,0 +170767219345,214,0 +170767219393,214,0 +170767219441,214,0 +170767219489,215,0 +170767219537,215,0 +170767219587,215,0 +170767219635,215,0 +170767219683,215,0 +170767219731,215,0 +170767219778,214,0 +170767219826,213,0 +170767219876,213,0 +170767219924,213,0 +170767219972,213,0 +170767220020,213,0 +170767220069,213,0 +170767220117,214,0 +170767220165,214,0 +170767220215,214,0 +170767220262,214,0 +170767220312,214,0 +170767220360,215,0 +170767220409,215,0 +170767220457,215,0 +170767220505,215,0 +170767220555,215,0 +170767220604,215,0 +170767220652,215,0 +170767220702,213,0 +170767220751,213,0 +170767220799,213,0 +170767220847,213,0 +170767220897,213,0 +170767220945,213,0 +170767220994,213,0 +170767221042,214,0 +170767221090,214,0 +170767221138,214,0 +170767221186,214,0 +170767221233,214,0 +170767221281,214,0 +170767221331,214,0 +170767221379,215,0 +170767221428,215,0 +170767221478,215,0 +170767221525,215,0 +170767221575,213,0 +170767221623,213,0 +170767221672,213,0 +170767221722,213,0 +170767221770,213,0 +170767221818,213,0 +170767221867,213,0 +170767221916,213,0 +170767221964,213,0 +170767222014,213,0 +170767222062,214,0 +170767222110,214,0 +170767222158,214,0 +170767222206,214,0 +170767222255,214,0 +170767222305,214,0 +170767222354,215,0 +170767222404,215,0 +170767222451,213,0 +170767222499,213,0 +170767222549,213,0 +170767222596,213,0 +170767222644,213,0 +170767222692,213,0 +170767222742,213,0 +170767222790,213,0 +170767222837,213,0 +170767222885,213,0 +170767222933,213,0 +170767222983,214,0 +170767223032,214,0 +170767223082,214,0 +170767223130,214,0 +170767223179,214,0 +170767223229,214,0 +170767223277,215,0 +170767223324,215,0 +170767223374,213,0 +170767223422,213,0 +170767223471,213,0 +170767223519,213,0 +170767223567,213,0 +170767223615,213,0 +170767223662,213,0 +170767223710,213,0 +170767223758,213,0 +170767223806,213,0 +170767223854,213,0 +170767223902,214,0 +170767223950,214,0 +170767223998,214,0 +170767224045,214,0 +170767224093,214,0 +170767224141,215,0 +170767224189,215,0 +170767224238,213,0 +170767224286,213,0 +170767224336,213,0 +170767224384,213,0 +170767224431,213,0 +170767224479,213,0 +170767224527,213,0 +170767224575,214,0 +170767224623,214,0 +170767224671,214,0 +170767224719,214,0 +170767224767,214,0 +170767224815,215,0 +170767224863,215,0 +170767224911,215,0 +170767224959,215,0 +170767225006,215,0 +170767225054,215,0 +170767225102,215,0 +170767225150,213,0 +170767225198,213,0 +170767225246,213,0 +170767225294,214,0 +170767225342,214,0 +170767225391,214,0 +170767225439,214,0 +170767225487,214,0 +170767225535,214,0 +170767225583,215,0 +170767225631,214,0 +170767225679,215,0 +170767225728,215,0 +170767225778,215,0 +170767225826,215,0 +170767225874,215,0 +170767225922,215,0 +170767225969,215,0 +170767226019,213,0 +170767226067,213,0 +170767226115,213,0 +170767226164,213,0 +170767226212,214,0 +170767226260,214,0 +170767226308,214,0 +170767226356,214,0 +170767226404,214,0 +170767226452,214,0 +170767226500,215,0 +170767226549,214,0 +170767226597,215,0 +170767226645,214,0 +170767226693,215,0 +170767226742,215,0 +170767226790,215,0 +170767226838,215,0 +170767226886,214,0 +170767226934,213,0 +170767226982,213,0 +170767227030,213,0 +170767227078,213,0 +170767227125,214,0 +170767227173,214,0 +170767227223,214,0 +170767227272,214,0 +170767227320,214,0 +170767227370,214,0 +170767227419,214,0 +170767227467,214,0 +170767227515,215,0 +170767227565,215,0 +170767227614,215,0 +170767227662,215,0 +170767227710,215,0 +170767227758,215,0 +170767227807,213,0 +170767227855,213,0 +170767227903,213,0 +170767227951,213,0 +170767228001,214,0 +170767228048,214,0 +170767228096,214,0 +170767228144,214,0 +170767228194,214,0 +170767228242,214,0 +170767228290,215,0 +170767228337,214,0 +170767228387,214,0 +170767228435,215,0 +170767228483,214,0 +170767228531,214,0 +170767228579,214,0 +170767228628,215,0 +170767228678,213,0 +170767228725,213,0 +170767228775,213,0 +170767228823,213,0 +170767228872,213,0 +170767228920,213,0 +170767228968,214,0 +170767229016,214,0 +170767229064,214,0 +170767229113,214,0 +170767229161,214,0 +170767229209,215,0 +170767229257,215,0 +170767229306,215,0 +170767229354,215,0 +170767229402,215,0 +170767229450,215,0 +170767229499,215,0 +170767229549,214,0 +170767229597,213,0 +170767229645,213,0 +170767229693,213,0 +170767229742,213,0 +170767229790,214,0 +170767229840,214,0 +170767229888,214,0 +170767229936,214,0 +170767229983,214,0 +170767230031,214,0 +170767230079,215,0 +170767230127,215,0 +170767230175,215,0 +170767230223,215,0 +170767230271,215,0 +170767230319,215,0 +170767230368,215,0 +170767230417,215,0 +170767230467,213,0 +170767230515,213,0 +170767230563,213,0 +170767230610,213,0 +170767230658,213,0 +170767230706,213,0 +170767230754,214,0 +170767230804,214,0 +170767230853,214,0 +170767230901,214,0 +170767230949,214,0 +170767230997,214,0 +170767231045,214,0 +170767231094,215,0 +170767231142,215,0 +170767231192,215,0 +170767231241,215,0 +170767231289,215,0 +170767231337,213,0 +170767231386,213,0 +170767231434,213,0 +170767231484,213,0 +170767231533,213,0 +170767231583,213,0 +170767231631,213,0 +170767231680,214,0 +170767231728,214,0 +170767231777,214,0 +170767231825,214,0 +170767231873,214,0 +170767231921,214,0 +170767231969,214,0 +170767232019,215,0 +170767232066,215,0 +170767232116,215,0 +170767232165,215,0 +170767232213,214,0 +170767232261,213,0 +170767232311,213,0 +170767232360,213,0 +170767232408,213,0 +170767232456,213,0 +170767232504,214,0 +170767232552,214,0 +170767232600,214,0 +170767232648,214,0 +170767232695,214,0 +170767232743,215,0 +170767232791,215,0 +170767232839,214,0 +170767232889,215,0 +170767232936,215,0 +170767232986,215,0 +170767233034,215,0 +170767233082,215,0 +170767233130,213,0 +170767233178,213,0 +170767233226,213,0 +170767233273,213,0 +170767233321,213,0 +170767233369,213,0 +170767233419,213,0 +170767233467,214,0 +170767233515,214,0 +170767233563,214,0 +170767233611,214,0 +170767233658,214,0 +170767233708,214,0 +170767233756,215,0 +170767233805,215,0 +170767233853,215,0 +170767233901,214,0 +170767233949,215,0 +170767233997,213,0 +170767234045,213,0 +170767234093,213,0 +170767234142,213,0 +170767234191,214,0 +170767234238,214,0 +170767234288,214,0 +170767234336,214,0 +170767234384,214,0 +170767234433,214,0 +170767234481,214,0 +170767234529,214,0 +170767234577,214,0 +170767234625,215,0 +170767234672,215,0 +170767234720,215,0 +170767234768,215,0 +170767234816,215,0 +170767234864,214,0 +170767234912,213,0 +170767234960,213,0 +170767235007,213,0 +170767235055,213,0 +170767235103,214,0 +170767235153,213,0 +170767235200,214,0 +170767235248,214,0 +170767235296,214,0 +170767235344,214,0 +170767235392,214,0 +170767235440,215,0 +170767235488,215,0 +170767235537,215,0 +170767235585,215,0 +170767235633,215,0 +170767235681,215,0 +170767235729,215,0 +170767235777,213,0 +170767235824,213,0 +170767235872,213,0 +170767235920,213,0 +170767235968,214,0 +170767236017,213,0 +170767236067,214,0 +170767236115,214,0 +170767236162,214,0 +170767236212,214,0 +170767236259,214,0 +170767236307,215,0 +170767236355,215,0 +170767236404,215,0 +170767236452,215,0 +170767236500,215,0 +170767236548,215,0 +170767236596,215,0 +170767236643,215,0 +170767236691,213,0 +170767236739,213,0 +170767236787,213,0 +170767236835,213,0 +170767236884,213,0 +170767236932,214,0 +170767236982,214,0 +170767237029,214,0 +170767237079,214,0 +170767237127,215,0 +170767237176,215,0 +170767237224,215,0 +170767237272,215,0 +170767237320,215,0 +170767237368,215,0 +170767237415,215,0 +170767237463,215,0 +170767237511,215,0 +170767237559,213,0 +170767237607,213,0 +170767237655,213,0 +170767237702,214,0 +170767237750,213,0 +170767237798,214,0 +170767237846,214,0 +170767237893,214,0 +170767237941,214,0 +170767237989,214,0 +170767238037,214,0 +170767238085,215,0 +170767238132,215,0 +170767238180,215,0 +170767238228,215,0 +170767238276,215,0 +170767238324,215,0 +170767238373,215,0 +170767238421,214,0 +170767238469,213,0 +170767238517,213,0 +170767238564,213,0 +170767238614,213,0 +170767238662,213,0 +170767238709,214,0 +170767238757,214,0 +170767238805,214,0 +170767238853,214,0 +170767238901,214,0 +170767238949,214,0 +170767238996,214,0 +170767239044,215,0 +170767239092,214,0 +170767239140,215,0 +170767239188,215,0 +170767239235,215,0 +170767239283,215,0 +170767239331,213,0 +170767239379,213,0 +170767239426,213,0 +170767239474,213,0 +170767239522,213,0 +170767239570,213,0 +170767239618,213,0 +170767239665,213,0 +170767239713,214,0 +170767239761,214,0 +170767239809,214,0 +170767239857,214,0 +170767239904,214,0 +170767239952,214,0 +170767240000,215,0 +170767240048,215,0 +170767240095,215,0 +170767240143,215,0 +170767240191,214,0 +170767240239,213,0 +170767240286,213,0 +170767240334,213,0 +170767240382,213,0 +170767240430,213,0 +170767240478,213,0 +170767240525,213,0 +170767240573,214,0 +170767240621,214,0 +170767240671,214,0 +170767240718,214,0 +170767240768,215,0 +170767240817,214,0 +170767240865,215,0 +170767240913,215,0 +170767240961,215,0 +170767241010,215,0 +170767241058,215,0 +170767241106,213,0 +170767241154,213,0 +170767241201,213,0 +170767241249,213,0 +170767241297,213,0 +170767241345,213,0 +170767241393,213,0 +170767241440,213,0 +170767241488,214,0 +170767241536,214,0 +170767241584,214,0 +170767241632,214,0 +170767241679,214,0 +170767241727,214,0 +170767241775,215,0 +170767241823,215,0 +170767241871,215,0 +170767241918,215,0 +170767241966,213,0 +170767242014,213,0 +170767242062,213,0 +170767242110,213,0 +170767242158,213,0 +170767242205,213,0 +170767242253,213,0 +170767242303,214,0 +170767242350,214,0 +170767242398,214,0 +170767242446,214,0 +170767242494,214,0 +170767242542,214,0 +170767242589,214,0 +170767242637,215,0 +170767242685,215,0 +170767242735,215,0 +170767242782,215,0 +170767242830,215,0 +170767242878,213,0 +170767242926,213,0 +170767242974,213,0 +170767243021,213,0 +170767243069,213,0 +170767243117,213,0 +170767243165,214,0 +170767243213,214,0 +170767243261,214,0 +170767243308,214,0 +170767243356,215,0 +170767243406,215,0 +170767243454,215,0 +170767243502,215,0 +170767243549,215,0 +170767243597,215,0 +170767243645,215,0 +170767243693,215,0 +170767243742,213,0 +170767243790,213,0 +170767243838,213,0 +170767243887,213,0 +170767243935,213,0 +170767243983,214,0 +170767244032,214,0 +170767244080,214,0 +170767244128,214,0 +170767244176,214,0 +170767244225,214,0 +170767244273,214,0 +170767244322,215,0 +170767244370,215,0 +170767244420,215,0 +170767244469,215,0 +170767244517,215,0 +170767244565,215,0 +170767244612,215,0 +170767244660,213,0 +170767244708,213,0 +170767244756,213,0 +170767244805,213,0 +170767244853,214,0 +170767244901,214,0 +170767244949,214,0 +170767244996,214,0 +170767245044,214,0 +170767245092,214,0 +170767245140,214,0 +170767245188,215,0 +170767245236,215,0 +170767245283,215,0 +170767245331,215,0 +170767245381,215,0 +170767245429,215,0 +170767245477,214,0 +170767245525,213,0 +170767245574,213,0 +170767245624,213,0 +170767245673,213,0 +170767245721,213,0 +170767245769,213,0 +170767245817,213,0 +170767245865,214,0 +170767245912,214,0 +170767245960,214,0 +170767246008,214,0 +170767246056,214,0 +170767246103,214,0 +170767246151,214,0 +170767246199,214,0 +170767246247,215,0 +170767246295,215,0 +170767246343,215,0 +170767246390,213,0 +170767246438,213,0 +170767246486,213,0 +170767246534,213,0 +170767246581,213,0 +170767246629,213,0 +170767246677,213,0 +170767246725,213,0 +170767246773,214,0 +170767246821,214,0 +170767246869,214,0 +170767246918,214,0 +170767246966,214,0 +170767247014,215,0 +170767247061,215,0 +170767247109,215,0 +170767247157,215,0 +170767247205,215,0 +170767247253,215,0 +170767247301,213,0 +170767247349,213,0 +170767247398,213,0 +170767247446,213,0 +170767247494,213,0 +170767247542,213,0 +170767247590,213,0 +170767247638,214,0 +170767247685,214,0 +170767247733,214,0 +170767247781,214,0 +170767247829,214,0 +170767247877,214,0 +170767247925,214,0 +170767247973,214,0 +170767248020,214,0 +170767248070,214,0 +170767248118,215,0 +170767248166,214,0 +170767248213,213,0 +170767248261,213,0 +170767248309,214,0 +170767248357,213,0 +170767248405,214,0 +170767248452,214,0 +170767248500,214,0 +170767248548,214,0 +170767248596,215,0 +170767248644,215,0 +170767248693,215,0 +170767248741,215,0 +170767248790,215,0 +170767248838,216,0 +170767248886,215,0 +170767248934,215,0 +170767248982,215,0 +170767249029,215,0 +170767249077,213,0 +170767249127,214,0 +170767249174,214,0 +170767249222,214,0 +170767249270,214,0 +170767249318,214,0 +170767249366,214,0 +170767249414,214,0 +170767249461,214,0 +170767249509,215,0 +170767249557,215,0 +170767249605,215,0 +170767249653,215,0 +170767249701,215,0 +170767249749,215,0 +170767249796,215,0 +170767249844,215,0 +170767249892,215,0 +170767249940,213,0 +170767249989,213,0 +170767250037,213,0 +170767250085,213,0 +170767250133,214,0 +170767250181,214,0 +170767250228,214,0 +170767250276,214,0 +170767250324,214,0 +170767250372,214,0 +170767250420,214,0 +170767250468,215,0 +170767250516,215,0 +170767250563,215,0 +170767250611,215,0 +170767250661,215,0 +170767250709,215,0 +170767250757,215,0 +170767250805,215,0 +170767250853,213,0 +170767250901,213,0 +170767250950,213,0 +170767250998,214,0 +170767251046,214,0 +170767251094,214,0 +170767251143,214,0 +170767251193,214,0 +170767251242,214,0 +170767251290,214,0 +170767251338,215,0 +170767251386,214,0 +170767251434,215,0 +170767251482,215,0 +170767251532,215,0 +170767251581,215,0 +170767251629,215,0 +170767251677,215,0 +170767251725,213,0 +170767251773,213,0 +170767251820,213,0 +170767251868,213,0 +170767251916,214,0 +170767251964,214,0 +170767252012,214,0 +170767252060,214,0 +170767252107,214,0 +170767252155,214,0 +170767252203,214,0 +170767252251,214,0 +170767252299,215,0 +170767252347,215,0 +170767252395,215,0 +170767252442,215,0 +170767252490,215,0 +170767252538,215,0 +170767252586,214,0 +170767252634,213,0 +170767252683,213,0 +170767252731,213,0 +170767252780,213,0 +170767252828,213,0 +170767252876,214,0 +170767252924,214,0 +170767252973,214,0 +170767253021,214,0 +170767253069,214,0 +170767253116,215,0 +170767253166,215,0 +170767253214,215,0 +170767253263,215,0 +170767253313,215,0 +170767253361,215,0 +170767253410,215,0 +170767253458,214,0 +170767253508,213,0 +170767253555,213,0 +170767253603,213,0 +170767253651,213,0 +170767253699,213,0 +170767253747,213,0 +170767253795,213,0 +170767253843,214,0 +170767253892,214,0 +170767253940,214,0 +170767253990,214,0 +170767254039,214,0 +170767254089,215,0 +170767254137,215,0 +170767254185,214,0 +170767254234,215,0 +170767254282,215,0 +170767254330,215,0 +170767254380,213,0 +170767254427,213,0 +170767254477,213,0 +170767254525,213,0 +170767254573,213,0 +170767254622,213,0 +170767254672,214,0 +170767254720,214,0 +170767254768,214,0 +170767254816,214,0 +170767254864,214,0 +170767254913,214,0 +170767254961,215,0 +170767255011,214,0 +170767255059,214,0 +170767255107,215,0 +170767255155,215,0 +170767255203,215,0 +170767255252,213,0 +170767255300,213,0 +170767255348,213,0 +170767255398,213,0 +170767255446,213,0 +170767255493,213,0 +170767255541,213,0 +170767255591,213,0 +170767255639,214,0 +170767255687,214,0 +170767255735,214,0 +170767255783,214,0 +170767255831,214,0 +170767255878,214,0 +170767255926,215,0 +170767255974,215,0 +170767256022,215,0 +170767256072,215,0 +170767256120,213,0 +170767256168,213,0 +170767256217,213,0 +170767256265,213,0 +170767256315,213,0 +170767256363,213,0 +170767256412,213,0 +170767256460,214,0 +170767256508,213,0 +170767256557,214,0 +170767256605,214,0 +170767256653,214,0 +170767256701,215,0 +170767256749,215,0 +170767256799,215,0 +170767256846,215,0 +170767256894,215,0 +170767256942,215,0 +170767256990,215,0 +170767257040,213,0 +170767257089,213,0 +170767257137,213,0 +170767257186,213,0 +170767257234,213,0 +170767257282,213,0 +170767257330,213,0 +170767257378,213,0 +170767257426,213,0 +170767257474,214,0 +170767257522,214,0 +170767257570,214,0 +170767257618,214,0 +170767257667,214,0 +170767257717,215,0 +170767257765,215,0 +170767257814,215,0 +170767257864,215,0 +170767257912,213,0 +170767257960,213,0 +170767258008,213,0 +170767258055,213,0 +170767258103,213,0 +170767258151,213,0 +170767258199,213,0 +170767258249,213,0 +170767258297,213,0 +170767258344,214,0 +170767258392,214,0 +170767258440,214,0 +170767258488,214,0 +170767258536,214,0 +170767258584,214,0 +170767258631,214,0 +170767258679,214,0 +170767258727,214,0 +170767258775,213,0 +170767258823,213,0 +170767258870,213,0 +170767258918,213,0 +170767258966,213,0 +170767259014,213,0 +170767259062,213,0 +170767259109,213,0 +170767259157,213,0 +170767259205,214,0 +170767259253,214,0 +170767259301,214,0 +170767259348,214,0 +170767259396,214,0 +170767259444,214,0 +170767259492,214,0 +170767259542,214,0 +170767259591,215,0 +170767259639,214,0 +170767259687,213,0 +170767259736,213,0 +170767259784,213,0 +170767259834,213,0 +170767259882,213,0 +170767259930,213,0 +170767259978,214,0 +170767260027,214,0 +170767260077,214,0 +170767260125,214,0 +170767260173,214,0 +170767260220,214,0 +170767260270,214,0 +170767260318,215,0 +170767260366,215,0 +170767260414,215,0 +170767260462,215,0 +170767260509,215,0 +170767260557,213,0 +170767260605,213,0 +170767260655,213,0 +170767260703,213,0 +170767260751,213,0 +170767260799,214,0 +170767260847,213,0 +170767260895,214,0 +170767260943,214,0 +170767260991,214,0 +170767261038,214,0 +170767261086,214,0 +170767261134,215,0 +170767261183,215,0 +170767261231,215,0 +170767261279,215,0 +170767261327,215,0 +170767261375,215,0 +170767261423,213,0 +170767261471,213,0 +170767261519,213,0 +170767261566,213,0 +170767261614,213,0 +170767261662,213,0 +170767261710,214,0 +170767261758,214,0 +170767261805,214,0 +170767261853,214,0 +170767261901,214,0 +170767261949,215,0 +170767261997,215,0 +170767262046,215,0 +170767262094,215,0 +170767262142,215,0 +170767262190,215,0 +170767262237,215,0 +170767262285,215,0 +170767262333,213,0 +170767262381,213,0 +170767262429,214,0 +170767262477,214,0 +170767262524,214,0 +170767262572,214,0 +170767262620,214,0 +170767262668,214,0 +170767262716,215,0 +170767262764,215,0 +170767262811,215,0 +170767262859,215,0 +170767262907,215,0 +170767262955,215,0 +170767263003,215,0 +170767263052,215,0 +170767263100,215,0 +170767263148,215,0 +170767263196,214,0 +170767263243,213,0 +170767263291,214,0 +170767263339,214,0 +170767263387,214,0 +170767263435,214,0 +170767263483,214,0 +170767263533,214,0 +170767263580,214,0 +170767263628,214,0 +170767263676,215,0 +170767263724,214,0 +170767263772,215,0 +170767263820,215,0 +170767263869,215,0 +170767263917,215,0 +170767263965,215,0 +170767264013,214,0 +170767264061,215,0 +170767264109,213,0 +170767264157,213,0 +170767264204,214,0 +170767264252,213,0 +170767264300,214,0 +170767264348,214,0 +170767264396,214,0 +170767264444,215,0 +170767264491,214,0 +170767264539,214,0 +170767264587,215,0 +170767264635,215,0 +170767264683,215,0 +170767264731,215,0 +170767264778,215,0 +170767264826,214,0 +170767264874,214,0 +170767264924,215,0 +170767264972,213,0 +170767265019,213,0 +170767265067,213,0 +170767265117,214,0 +170767265166,214,0 +170767265214,214,0 +170767265262,214,0 +170767265310,214,0 +170767265358,214,0 +170767265407,214,0 +170767265457,215,0 +170767265506,215,0 +170767265554,214,0 +170767265603,215,0 +170767265651,215,0 +170767265699,215,0 +170767265747,215,0 +170767265796,214,0 +170767265844,213,0 +170767265892,213,0 +170767265942,213,0 +170767265989,213,0 +170767266039,213,0 +170767266087,214,0 +170767266136,214,0 +170767266184,214,0 +170767266233,214,0 +170767266281,214,0 +170767266331,214,0 +170767266379,214,0 +170767266428,215,0 +170767266476,215,0 +170767266524,215,0 +170767266574,215,0 +170767266621,215,0 +170767266669,215,0 +170767266719,214,0 +170767266768,213,0 +170767266818,213,0 +170767266866,213,0 +170767266914,213,0 +170767266962,213,0 +170767267010,214,0 +170767267058,214,0 +170767267106,214,0 +170767267154,214,0 +170767267203,215,0 +170767267251,215,0 +170767267299,215,0 +170767267347,215,0 +170767267395,215,0 +170767267444,215,0 +170767267492,215,0 +170767267540,215,0 +170767267588,215,0 +170767267636,213,0 +170767267684,213,0 +170767267733,213,0 +170767267781,213,0 +170767267829,214,0 +170767267877,214,0 +170767267925,214,0 +170767267973,214,0 +170767268022,214,0 +170767268072,214,0 +170767268120,214,0 +170767268169,215,0 +170767268219,215,0 +170767268267,215,0 +170767268315,215,0 +170767268363,215,0 +170767268412,215,0 +170767268461,215,0 +170767268511,213,0 +170767268559,213,0 +170767268607,213,0 +170767268655,213,0 +170767268703,213,0 +170767268751,213,0 +170767268798,214,0 +170767268846,213,0 +170767268894,214,0 +170767268944,214,0 +170767268991,214,0 +170767269039,214,0 +170767269089,214,0 +170767269137,214,0 +170767269185,215,0 +170767269233,214,0 +170767269280,215,0 +170767269328,215,0 +170767269376,214,0 +170767269424,213,0 +170767269474,213,0 +170767269522,213,0 +170767269569,213,0 +170767269617,213,0 +170767269667,214,0 +170767269715,213,0 +170767269763,214,0 +170767269810,214,0 +170767269860,214,0 +170767269908,214,0 +170767269957,215,0 +170767270005,215,0 +170767270053,215,0 +170767270101,215,0 +170767270149,215,0 +170767270197,215,0 +170767270246,215,0 +170767270296,213,0 +170767270344,213,0 +170767270392,213,0 +170767270441,213,0 +170767270490,213,0 +170767270538,213,0 +170767270586,213,0 +170767270634,213,0 +170767270683,214,0 +170767270731,214,0 +170767270780,214,0 +170767270830,214,0 +170767270878,214,0 +170767270927,214,0 +170767270975,214,0 +170767271023,215,0 +170767271072,215,0 +170767271120,215,0 +170767271168,213,0 +170767271216,213,0 +170767271266,213,0 +170767271314,213,0 +170767271363,213,0 +170767271411,213,0 +170767271461,213,0 +170767271508,213,0 +170767271556,214,0 +170767271604,214,0 +170767271654,214,0 +170767271702,214,0 +170767271751,214,0 +170767271799,215,0 +170767271848,215,0 +170767271896,215,0 +170767271944,215,0 +170767271992,215,0 +170767272040,213,0 +170767272090,213,0 +170767272139,213,0 +170767272189,213,0 +170767272236,213,0 +170767272284,213,0 +170767272334,213,0 +170767272383,214,0 +170767272431,213,0 +170767272479,214,0 +170767272527,214,0 +170767272575,214,0 +170767272623,214,0 +170767272673,215,0 +170767272722,215,0 +170767272770,215,0 +170767272818,215,0 +170767272866,215,0 +170767272914,215,0 +170767272961,213,0 +170767273011,213,0 +170767273060,213,0 +170767273110,213,0 +170767273158,213,0 +170767273207,214,0 +170767273255,214,0 +170767273303,214,0 +170767273351,214,0 +170767273401,214,0 +170767273448,214,0 +170767273496,215,0 +170767273544,215,0 +170767273592,215,0 +170767273640,215,0 +170767273688,215,0 +170767273736,215,0 +170767273784,215,0 +170767273832,213,0 +170767273880,213,0 +170767273928,213,0 +170767273975,213,0 +170767274023,213,0 +170767274071,213,0 +170767274119,214,0 +170767274167,214,0 +170767274215,214,0 +170767274263,214,0 +170767274310,214,0 +170767274358,214,0 +170767274406,215,0 +170767274454,215,0 +170767274503,215,0 +170767274551,215,0 +170767274599,215,0 +170767274647,215,0 +170767274695,213,0 +170767274743,213,0 +170767274791,213,0 +170767274839,213,0 +170767274886,213,0 +170767274934,213,0 +170767274982,214,0 +170767275030,214,0 +170767275078,214,0 +170767275127,214,0 +170767275177,214,0 +170767275225,214,0 +170767275274,214,0 +170767275322,215,0 +170767275370,215,0 +170767275418,214,0 +170767275466,215,0 +170767275516,215,0 +170767275564,215,0 +170767275613,213,0 +170767275661,213,0 +170767275709,213,0 +170767275757,213,0 +170767275805,213,0 +170767275853,214,0 +170767275901,214,0 +170767275949,214,0 +170767275997,214,0 +170767276045,214,0 +170767276093,214,0 +170767276140,215,0 +170767276188,215,0 +170767276236,214,0 +170767276284,215,0 +170767276334,215,0 +170767276383,215,0 +170767276431,215,0 +170767276479,213,0 +170767276527,213,0 +170767276577,213,0 +170767276625,213,0 +170767276673,213,0 +170767276721,213,0 +170767276769,213,0 +170767276816,214,0 +170767276864,214,0 +170767276912,214,0 +170767276960,214,0 +170767277010,215,0 +170767277058,215,0 +170767277106,215,0 +170767277155,215,0 +170767277205,215,0 +170767277253,215,0 +170767277301,215,0 +170767277350,213,0 +170767277398,213,0 +170767277446,213,0 +170767277494,213,0 +170767277542,213,0 +170767277592,213,0 +170767277639,213,0 +170767277687,214,0 +170767277735,214,0 +170767277783,214,0 +170767277831,214,0 +170767277879,214,0 +170767277927,215,0 +170767277975,215,0 +170767278023,215,0 +170767278071,215,0 +170767278119,215,0 +170767278169,215,0 +170767278218,213,0 +170767278266,213,0 +170767278315,213,0 +170767278363,213,0 +170767278411,213,0 +170767278459,213,0 +170767278509,213,0 +170767278557,214,0 +170767278605,214,0 +170767278653,214,0 +170767278701,214,0 +170767278748,214,0 +170767278796,215,0 +170767278844,215,0 +170767278894,215,0 +170767278942,215,0 +170767278991,215,0 +170767279039,214,0 +170767279088,213,0 +170767279136,213,0 +170767279186,213,0 +170767279234,213,0 +170767279282,213,0 +170767279330,213,0 +170767279378,213,0 +170767279426,214,0 +170767279473,214,0 +170767279521,214,0 +170767279569,215,0 +170767279617,214,0 +170767279667,215,0 +170767279715,215,0 +170767279762,215,0 +170767279810,215,0 +170767279858,215,0 +170767279908,213,0 +170767279956,213,0 +170767280004,213,0 +170767280052,213,0 +170767280101,213,0 +170767280149,213,0 +170767280197,214,0 +170767280245,214,0 +170767280293,214,0 +170767280342,214,0 +170767280392,214,0 +170767280440,214,0 +170767280488,215,0 +170767280537,215,0 +170767280585,215,0 +170767280633,215,0 +170767280681,215,0 +170767280731,215,0 +170767280779,213,0 +170767280827,213,0 +170767280874,213,0 +170767280924,213,0 +170767280972,213,0 +170767281020,214,0 +170767281068,214,0 +170767281117,214,0 +170767281165,214,0 +170767281213,215,0 +170767281261,215,0 +170767281310,215,0 +170767281358,215,0 +170767281406,215,0 +170767281456,215,0 +170767281504,215,0 +170767281552,215,0 +170767281601,215,0 +170767281649,213,0 +170767281697,213,0 +170767281745,213,0 +170767281793,214,0 +170767281842,214,0 +170767281892,214,0 +170767281940,214,0 +170767281989,215,0 +170767282037,214,0 +170767282085,215,0 +170767282135,215,0 +170767282183,215,0 +170767282231,215,0 +170767282279,215,0 +170767282327,215,0 +170767282375,215,0 +170767282423,215,0 +170767282471,214,0 +170767282519,213,0 +170767282567,213,0 +170767282615,214,0 +170767282664,214,0 +170767282712,214,0 +170767282760,214,0 +170767282808,214,0 +170767282856,214,0 +170767282904,214,0 +170767282952,215,0 +170767282999,215,0 +170767283047,215,0 +170767283095,215,0 +170767283143,215,0 +170767283191,215,0 +170767283241,215,0 +170767283290,215,0 +170767283338,213,0 +170767283386,213,0 +170767283434,213,0 +170767283482,213,0 +170767283530,214,0 +170767283577,214,0 +170767283627,214,0 +170767283676,214,0 +170767283724,214,0 +170767283774,215,0 +170767283823,215,0 +170767283871,215,0 +170767283921,215,0 +170767283969,214,0 +170767284016,215,0 +170767284064,215,0 +170767284112,215,0 +170767284160,214,0 +170767284210,213,0 +170767284259,213,0 +170767284309,213,0 +170767284357,213,0 +170767284405,214,0 +170767284453,214,0 +170767284501,214,0 +170767284549,214,0 +170767284596,214,0 +170767284646,214,0 +170767284696,214,0 +170767284743,215,0 +170767284793,215,0 +170767284843,215,0 +170767284892,215,0 +170767284940,215,0 +170767284988,215,0 +170767285036,213,0 +170767285084,213,0 +170767285132,214,0 +170767285180,214,0 +170767285228,214,0 +170767285276,214,0 +170767285324,214,0 +170767285373,214,0 +170767285423,214,0 +170767285470,214,0 +170767285518,214,0 +170767285566,215,0 +170767285614,215,0 +170767285663,215,0 +170767285711,215,0 +170767285759,215,0 +170767285807,215,0 +170767285857,215,0 +170767285905,213,0 +170767285953,213,0 +170767286001,214,0 +170767286049,214,0 +170767286098,214,0 +170767286146,214,0 +170767286194,214,0 +170767286243,214,0 +170767286291,215,0 +170767286339,215,0 +170767286387,215,0 +170767286435,215,0 +170767286483,215,0 +170767286530,215,0 +170767286578,215,0 +170767286626,215,0 +170767286674,215,0 +170767286722,214,0 +170767286770,214,0 +170767286817,214,0 +170767286867,214,0 +170767286915,214,0 +170767286963,214,0 +170767287012,214,0 +170767287060,215,0 +170767287108,215,0 +170767287156,215,0 +170767287205,215,0 +170767287253,216,0 +170767287301,215,0 +170767287349,215,0 +170767287398,215,0 +170767287446,215,0 +170767287494,215,0 +170767287542,215,0 +170767287590,213,0 +170767287637,213,0 +170767287685,213,0 +170767287735,214,0 +170767287782,214,0 +170767287830,214,0 +170767287880,214,0 +170767287927,214,0 +170767287975,214,0 +170767288023,215,0 +170767288071,215,0 +170767288119,215,0 +170767288169,215,0 +170767288217,215,0 +170767288264,215,0 +170767288312,215,0 +170767288360,215,0 +170767288408,215,0 +170767288456,213,0 +170767288504,213,0 +170767288551,213,0 +170767288601,213,0 +170767288649,214,0 +170767288696,214,0 +170767288744,214,0 +170767288792,214,0 +170767288840,214,0 +170767288888,215,0 +170767288935,214,0 +170767288983,215,0 +170767289031,215,0 +170767289079,215,0 +170767289127,215,0 +170767289175,215,0 +170767289223,215,0 +170767289270,214,0 +170767289318,213,0 +170767289366,213,0 +170767289414,213,0 +170767289462,213,0 +170767289510,213,0 +170767289558,213,0 +170767289606,214,0 +170767289653,214,0 +170767289701,214,0 +170767289749,214,0 +170767289797,214,0 +170767289845,214,0 +170767289893,215,0 +170767289942,215,0 +170767289990,215,0 +170767290038,215,0 +170767290086,215,0 +170767290134,213,0 +170767290182,213,0 +170767290230,213,0 +170767290279,213,0 +170767290327,213,0 +170767290375,214,0 +170767290423,214,0 +170767290470,214,0 +170767290518,214,0 +170767290566,214,0 +170767290614,214,0 +170767290662,216,0 +170767290710,215,0 +170767290758,215,0 +170767290805,215,0 +170767290853,215,0 +170767290901,215,0 +170767290949,215,0 +170767290997,213,0 +170767291045,213,0 +170767291092,214,0 +170767291140,213,0 +170767291188,214,0 +170767291236,214,0 +170767291284,214,0 +170767291332,214,0 +170767291381,214,0 +170767291429,214,0 +170767291477,214,0 +170767291525,215,0 +170767291574,215,0 +170767291622,215,0 +170767291672,215,0 +170767291721,215,0 +170767291769,215,0 +170767291817,215,0 +170767291867,213,0 +170767291915,213,0 +170767291964,214,0 +170767292012,214,0 +170767292060,213,0 +170767292108,214,0 +170767292158,214,0 +170767292205,214,0 +170767292253,214,0 +170767292301,214,0 +170767292349,214,0 +170767292397,215,0 +170767292445,214,0 +170767292493,215,0 +170767292541,215,0 +170767292590,215,0 +170767292638,215,0 +170767292686,214,0 +170767292734,213,0 +170767292782,214,0 +170767292830,214,0 +170767292880,214,0 +170767292927,214,0 +170767292975,214,0 +170767293025,214,0 +170767293073,214,0 +170767293121,214,0 +170767293169,214,0 +170767293217,215,0 +170767293265,215,0 +170767293313,215,0 +170767293360,215,0 +170767293410,215,0 +170767293458,215,0 +170767293505,215,0 +170767293555,213,0 +170767293604,213,0 +170767293652,213,0 +170767293702,213,0 +170767293750,214,0 +170767293797,214,0 +170767293845,214,0 +170767293893,214,0 +170767293941,215,0 +170767293989,214,0 +170767294038,215,0 +170767294086,215,0 +170767294134,215,0 +170767294182,215,0 +170767294231,215,0 +170767294279,215,0 +170767294327,215,0 +170767294375,215,0 +170767294423,213,0 +170767294471,213,0 +170767294518,213,0 +170767294566,213,0 +170767294616,214,0 +170767294663,214,0 +170767294713,214,0 +170767294761,214,0 +170767294808,214,0 +170767294856,214,0 +170767294904,215,0 +170767294952,215,0 +170767295000,215,0 +170767295050,215,0 +170767295099,215,0 +170767295149,215,0 +170767295197,215,0 +170767295246,214,0 +170767295296,213,0 +170767295343,213,0 +170767295391,213,0 +170767295441,213,0 +170767295490,214,0 +170767295540,214,0 +170767295589,214,0 +170767295637,214,0 +170767295687,214,0 +170767295736,214,0 +170767295786,215,0 +170767295833,215,0 +170767295881,215,0 +170767295929,215,0 +170767295977,215,0 +170767296025,215,0 +170767296073,215,0 +170767296121,213,0 +170767296169,213,0 +170767296218,213,0 +170767296266,213,0 +170767296316,213,0 +170767296364,214,0 +170767296413,214,0 +170767296461,214,0 +170767296509,214,0 +170767296557,215,0 +170767296605,214,0 +170767296653,215,0 +170767296701,215,0 +170767296749,215,0 +170767296797,215,0 +170767296845,215,0 +170767296893,215,0 +170767296941,214,0 +170767296990,213,0 +170767297038,213,0 +170767297088,213,0 +170767297136,213,0 +170767297185,213,0 +170767297235,214,0 +170767297283,214,0 +170767297330,214,0 +170767297378,214,0 +170767297428,214,0 +170767297476,215,0 +170767297524,214,0 +170767297572,215,0 +170767297620,215,0 +170767297668,215,0 +170767297716,215,0 +170767297764,215,0 +170767297811,214,0 +170767297861,213,0 +170767297909,213,0 +170767297957,213,0 +170767298006,213,0 +170767298056,213,0 +170767298104,214,0 +170767298152,214,0 +170767298200,214,0 +170767298248,214,0 +170767298297,214,0 +170767298345,214,0 +170767298393,214,0 +170767298441,215,0 +170767298489,215,0 +170767298536,215,0 +170767298584,215,0 +170767298632,215,0 +170767298682,213,0 +170767298730,213,0 +170767298777,213,0 +170767298825,213,0 +170767298873,213,0 +170767298921,214,0 +170767298971,213,0 +170767299018,214,0 +170767299066,214,0 +170767299114,214,0 +170767299162,214,0 +170767299210,214,0 +170767299258,215,0 +170767299305,215,0 +170767299353,215,0 +170767299401,215,0 +170767299449,215,0 +170767299497,214,0 +170767299545,213,0 +170767299594,213,0 +170767299644,214,0 +170767299693,214,0 +170767299741,214,0 +170767299789,214,0 +170767299837,214,0 +170767299885,214,0 +170767299932,215,0 +170767299980,215,0 +170767300028,215,0 +170767300076,215,0 +170767300124,215,0 +170767300173,215,0 +170767300221,215,0 +170767300269,215,0 +170767300317,215,0 +170767300365,214,0 +170767300413,214,0 +170767300461,214,0 +170767300508,214,0 +170767300556,214,0 +170767300604,214,0 +170767300654,215,0 +170767300703,215,0 +170767300751,215,0 +170767300801,215,0 +170767300849,215,0 +170767300897,215,0 +170767300945,215,0 +170767300993,216,0 +170767301040,215,0 +170767301088,215,0 +170767301138,215,0 +170767301187,215,0 +170767301237,214,0 +170767301285,214,0 +170767301333,214,0 +170767301381,214,0 +170767301429,214,0 +170767301477,214,0 +170767301526,215,0 +170767301576,215,0 +170767301625,215,0 +170767301673,215,0 +170767301721,215,0 +170767301769,215,0 +170767301817,215,0 +170767301865,215,0 +170767301914,215,0 +170767301962,215,0 +170767302012,215,0 +170767302061,214,0 +170767302111,213,0 +170767302159,214,0 +170767302206,214,0 +170767302256,214,0 +170767302305,214,0 +170767302353,214,0 +170767302403,214,0 +170767302451,214,0 +170767302499,215,0 +170767302547,215,0 +170767302596,215,0 +170767302644,215,0 +170767302692,215,0 +170767302740,215,0 +170767302788,215,0 +170767302837,215,0 +170767302885,215,0 +170767302933,213,0 +170767302981,213,0 +170767303031,213,0 +170767303080,214,0 +170767303128,214,0 +170767303176,214,0 +170767303224,214,0 +170767303273,214,0 +170767303323,214,0 +170767303371,215,0 +170767303418,215,0 +170767303466,215,0 +170767303514,215,0 +170767303562,215,0 +170767303610,215,0 +170767303658,215,0 +170767303706,215,0 +170767303753,215,0 +170767303803,213,0 +170767303851,214,0 +170767303898,214,0 +170767303946,214,0 +170767303994,213,0 +170767304042,214,0 +170767304090,214,0 +170767304138,214,0 +170767304187,214,0 +170767304235,214,0 +170767304283,215,0 +170767304331,215,0 +170767304379,215,0 +170767304429,215,0 +170767304476,215,0 +170767304524,215,0 +170767304572,215,0 +170767304620,214,0 +170767304670,213,0 +170767304718,214,0 +170767304766,214,0 +170767304815,214,0 +170767304863,214,0 +170767304911,214,0 +170767304959,214,0 +170767305008,214,0 +170767305058,215,0 +170767305106,215,0 +170767305153,215,0 +170767305203,215,0 +170767305251,215,0 +170767305299,215,0 +170767305348,215,0 +170767305398,215,0 +170767305446,215,0 +170767305494,213,0 +170767305542,213,0 +170767305590,213,0 +170767305639,213,0 +170767305687,214,0 +170767305735,214,0 +170767305783,214,0 +170767305832,214,0 +170767305880,214,0 +170767305928,215,0 +170767305976,215,0 +170767306024,215,0 +170767306072,215,0 +170767306119,215,0 +170767306169,215,0 +170767306217,215,0 +170767306265,215,0 +170767306314,215,0 +170767306364,213,0 +170767306413,213,0 +170767306463,214,0 +170767306511,214,0 +170767306559,214,0 +170767306606,214,0 +170767306656,214,0 +170767306705,214,0 +170767306753,215,0 +170767306803,215,0 +170767306851,215,0 +170767306899,215,0 +170767306947,215,0 +170767306995,215,0 +170767307043,215,0 +170767307091,215,0 +170767307141,215,0 +170767307189,214,0 +170767307238,213,0 +170767307288,213,0 +170767307335,214,0 +170767307385,214,0 +170767307433,214,0 +170767307481,214,0 +170767307529,214,0 +170767307577,214,0 +170767307626,215,0 +170767307676,215,0 +170767307723,215,0 +170767307771,215,0 +170767307819,215,0 +170767307869,215,0 +170767307917,215,0 +170767307964,215,0 +170767308012,215,0 +170767308060,213,0 +170767308108,213,0 +170767308156,214,0 +170767308204,214,0 +170767308252,214,0 +170767308301,214,0 +170767308349,214,0 +170767308398,214,0 +170767308448,214,0 +170767308496,214,0 +170767308544,215,0 +170767308593,215,0 +170767308641,215,0 +170767308691,215,0 +170767308739,215,0 +170767308787,215,0 +170767308834,215,0 +170767308882,214,0 +170767308932,213,0 +170767308980,214,0 +170767309027,214,0 +170767309075,214,0 +170767309123,214,0 +170767309173,214,0 +170767309221,214,0 +170767309269,214,0 +170767309317,215,0 +170767309365,215,0 +170767309412,215,0 +170767309460,215,0 +170767309508,215,0 +170767309556,215,0 +170767309604,215,0 +170767309652,215,0 +170767309700,215,0 +170767309748,214,0 +170767309796,213,0 +170767309845,214,0 +170767309895,214,0 +170767309942,214,0 +170767309990,214,0 +170767310038,214,0 +170767310088,214,0 +170767310136,214,0 +170767310184,214,0 +170767310232,215,0 +170767310279,215,0 +170767310327,215,0 +170767310377,215,0 +170767310426,215,0 +170767310474,215,0 +170767310522,215,0 +170767310570,215,0 +170767310618,213,0 +170767310667,213,0 +170767310715,214,0 +170767310763,214,0 +170767310813,214,0 +170767310860,214,0 +170767310908,214,0 +170767310956,214,0 +170767311006,214,0 +170767311054,215,0 +170767311102,215,0 +170767311151,215,0 +170767311199,215,0 +170767311247,215,0 +170767311297,215,0 +170767311345,215,0 +170767311392,215,0 +170767311440,214,0 +170767311488,214,0 +170767311538,214,0 +170767311586,214,0 +170767311634,214,0 +170767311683,214,0 +170767311733,215,0 +170767311781,215,0 +170767311829,215,0 +170767311876,215,0 +170767311924,215,0 +170767311974,215,0 +170767312022,215,0 +170767312069,215,0 +170767312117,215,0 +170767312167,214,0 +170767312214,215,0 +170767312262,215,0 +170767312310,214,0 +170767312358,213,0 +170767312406,213,0 +170767312454,213,0 +170767312502,214,0 +170767312550,214,0 +170767312597,214,0 +170767312647,214,0 +170767312696,214,0 +170767312744,215,0 +170767312792,215,0 +170767312842,215,0 +170767312890,215,0 +170767312939,215,0 +170767312987,215,0 +170767313037,215,0 +170767313084,215,0 +170767313132,215,0 +170767313180,213,0 +170767313230,213,0 +170767313279,213,0 +170767313329,213,0 +170767313377,213,0 +170767313425,213,0 +170767313472,214,0 +170767313520,214,0 +170767313568,214,0 +170767313616,214,0 +170767313664,215,0 +170767313712,215,0 +170767313760,215,0 +170767313810,215,0 +170767313858,215,0 +170767313906,215,0 +170767313955,215,0 +170767314003,214,0 +170767314052,213,0 +170767314102,213,0 +170767314151,213,0 +170767314199,214,0 +170767314247,213,0 +170767314295,214,0 +170767314343,214,0 +170767314391,214,0 +170767314440,214,0 +170767314488,214,0 +170767314536,215,0 +170767314586,215,0 +170767314633,215,0 +170767314683,215,0 +170767314731,215,0 +170767314780,215,0 +170767314828,215,0 +170767314876,213,0 +170767314924,213,0 +170767314971,213,0 +170767315019,213,0 +170767315067,214,0 +170767315115,213,0 +170767315163,214,0 +170767315210,214,0 +170767315258,214,0 +170767315308,214,0 +170767315356,214,0 +170767315404,215,0 +170767315451,215,0 +170767315499,215,0 +170767315547,215,0 +170767315597,215,0 +170767315645,215,0 +170767315693,215,0 +170767315741,213,0 +170767315789,213,0 +170767315838,213,0 +170767315886,213,0 +170767315936,214,0 +170767315985,213,0 +170767316033,214,0 +170767316081,214,0 +170767316131,214,0 +170767316179,214,0 +170767316228,215,0 +170767316278,215,0 +170767316326,215,0 +170767316375,215,0 +170767316423,215,0 +170767316471,215,0 +170767316520,215,0 +170767316568,213,0 +170767316618,213,0 +170767316667,213,0 +170767316717,213,0 +170767316766,213,0 +170767316814,213,0 +170767316862,214,0 +170767316912,214,0 +170767316959,214,0 +170767317007,214,0 +170767317055,214,0 +170767317103,215,0 +170767317151,214,0 +170767317199,215,0 +170767317247,215,0 +170767317295,215,0 +170767317344,214,0 +170767317392,215,0 +170767317440,213,0 +170767317488,213,0 +170767317538,213,0 +170767317586,213,0 +170767317633,213,0 +170767317681,213,0 +170767317729,214,0 +170767317777,214,0 +170767317824,214,0 +170767317872,215,0 +170767317920,215,0 +170767317968,215,0 +170767318015,214,0 +170767318063,215,0 +170767318111,215,0 +170767318159,215,0 +170767318207,215,0 +170767318254,214,0 +170767318302,213,0 +170767318350,213,0 +170767318398,213,0 +170767318446,214,0 +170767318494,214,0 +170767318541,214,0 +170767318589,214,0 +170767318639,214,0 +170767318686,214,0 +170767318734,214,0 +170767318782,214,0 +170767318830,215,0 +170767318878,214,0 +170767318926,214,0 +170767318973,215,0 +170767319023,215,0 +170767319072,215,0 +170767319122,213,0 +170767319169,213,0 +170767319217,213,0 +170767319265,213,0 +170767319313,213,0 +170767319361,214,0 +170767319410,214,0 +170767319458,214,0 +170767319506,214,0 +170767319554,215,0 +170767319601,215,0 +170767319651,215,0 +170767319699,215,0 +170767319746,215,0 +170767319796,215,0 +170767319844,216,0 +170767319892,215,0 +170767319939,215,0 +170767319987,214,0 +170767320035,213,0 +170767320083,214,0 +170767320131,214,0 +170767320178,214,0 +170767320226,214,0 +170767320274,214,0 +170767320324,214,0 +170767320372,214,0 +170767320419,215,0 +170767320467,215,0 +170767320515,215,0 +170767320565,215,0 +170767320612,215,0 +170767320662,215,0 +170767320710,215,0 +170767320758,215,0 +170767320805,215,0 +170767320853,214,0 +170767320901,214,0 +170767320949,213,0 +170767320997,214,0 +170767321044,214,0 +170767321092,214,0 +170767321140,214,0 +170767321188,214,0 +170767321236,214,0 +170767321284,214,0 +170767321331,214,0 +170767321381,215,0 +170767321429,215,0 +170767321476,215,0 +170767321524,215,0 +170767321572,215,0 +170767321620,215,0 +170767321668,214,0 +170767321716,214,0 +170767321764,214,0 +170767321811,214,0 +170767321859,214,0 +170767321907,214,0 +170767321957,214,0 +170767322006,214,0 +170767322054,214,0 +170767322102,214,0 +170767322151,214,0 +170767322199,214,0 +170767322247,215,0 +170767322297,215,0 +170767322345,215,0 +170767322394,215,0 +170767322444,215,0 +170767322492,215,0 +170767322541,214,0 +170767322591,213,0 +170767322638,214,0 +170767322686,214,0 +170767322734,214,0 +170767322784,214,0 +170767322833,214,0 +170767322881,215,0 +170767322929,214,0 +170767322977,214,0 +170767323025,215,0 +170767323073,215,0 +170767323123,215,0 +170767323170,215,0 +170767323220,215,0 +170767323270,215,0 +170767323318,215,0 +170767323365,215,0 +170767323413,214,0 +170767323461,214,0 +170767323509,214,0 +170767323557,214,0 +170767323605,214,0 +170767323653,215,0 +170767323702,214,0 +170767323752,215,0 +170767323800,215,0 +170767323848,215,0 +170767323896,215,0 +170767323944,215,0 +170767323991,215,0 +170767324039,215,0 +170767324087,215,0 +170767324135,215,0 +170767324183,215,0 +170767324231,214,0 +170767324278,214,0 +170767324326,214,0 +170767324374,214,0 +170767324422,215,0 +170767324472,215,0 +170767324519,215,0 +170767324567,215,0 +170767324615,215,0 +170767324663,215,0 +170767324712,215,0 +170767324760,215,0 +170767324809,215,0 +170767324857,215,0 +170767324905,215,0 +170767324953,215,0 +170767325002,215,0 +170767325050,215,0 +170767325098,214,0 +170767325146,214,0 +170767325194,214,0 +170767325241,214,0 +170767325289,214,0 +170767325337,214,0 +170767325385,215,0 +170767325433,215,0 +170767325482,215,0 +170767325530,215,0 +170767325578,215,0 +170767325628,215,0 +170767325677,215,0 +170767325725,215,0 +170767325775,215,0 +170767325823,215,0 +170767325870,215,0 +170767325918,215,0 +170767325966,213,0 +170767326016,213,0 +170767326064,213,0 +170767326113,213,0 +170767326161,213,0 +170767326211,214,0 +170767326259,214,0 +170767326308,214,0 +170767326356,214,0 +170767326404,214,0 +170767326452,215,0 +170767326500,214,0 +170767326547,215,0 +170767326595,215,0 +170767326643,215,0 +170767326691,215,0 +170767326739,215,0 +170767326787,214,0 +170767326835,213,0 +170767326884,213,0 +170767326932,213,0 +170767326980,213,0 +170767327028,213,0 +170767327076,213,0 +170767327123,213,0 +170767327171,214,0 +170767327219,214,0 +170767327267,214,0 +170767327315,214,0 +170767327364,214,0 +170767327412,214,0 +170767327460,215,0 +170767327508,214,0 +170767327556,215,0 +170767327604,215,0 +170767327653,213,0 +170767327701,213,0 +170767327749,213,0 +170767327797,213,0 +170767327845,213,0 +170767327895,213,0 +170767327943,214,0 +170767327990,214,0 +170767328038,214,0 +170767328086,214,0 +170767328134,214,0 +170767328182,214,0 +170767328230,214,0 +170767328278,215,0 +170767328326,215,0 +170767328374,215,0 +170767328423,215,0 +170767328473,215,0 +170767328522,213,0 +170767328572,213,0 +170767328621,213,0 +170767328669,213,0 +170767328719,213,0 +170767328768,213,0 +170767328816,214,0 +170767328866,214,0 +170767328914,214,0 +170767328963,214,0 +170767329011,214,0 +170767329059,214,0 +170767329107,214,0 +170767329155,215,0 +170767329204,215,0 +170767329252,215,0 +170767329301,215,0 +170767329349,215,0 +170767329397,215,0 +170767329445,215,0 +170767329493,215,0 +170767329541,215,0 +170767329588,215,0 +170767329636,215,0 +170767329684,215,0 +170767329732,215,0 +170767329779,213,0 +170767329829,214,0 +170767329877,214,0 +170767329925,214,0 +170767329972,214,0 +170767330022,214,0 +170767330070,214,0 +170767330118,214,0 +170767330165,214,0 +170767330213,214,0 +170767330261,215,0 +170767330309,215,0 +170767330357,215,0 +170767330405,215,0 +170767330453,215,0 +170767330502,215,0 +170767330550,215,0 +170767330598,215,0 +170767330646,213,0 +170767330694,214,0 +170767330743,213,0 +170767330791,214,0 +170767330839,214,0 +170767330887,214,0 +170767330935,214,0 +170767330983,214,0 +170767331031,214,0 +170767331080,215,0 +170767331130,215,0 +170767331178,215,0 +170767331226,215,0 +170767331275,215,0 +170767331323,215,0 +170767331371,215,0 +170767331419,215,0 +170767331467,214,0 +170767331515,213,0 +170767331562,214,0 +170767331610,214,0 +170767331658,214,0 +170767331708,214,0 +170767331757,214,0 +170767331805,214,0 +170767331853,214,0 +170767331901,214,0 +170767331949,215,0 +170767331997,215,0 +170767332047,215,0 +170767332096,215,0 +170767332144,215,0 +170767332193,215,0 +170767332241,215,0 +170767332289,215,0 +170767332337,214,0 +170767332385,214,0 +170767332433,214,0 +170767332481,214,0 +170767332529,214,0 +170767332577,214,0 +170767332625,214,0 +170767332673,214,0 +170767332721,214,0 +170767332768,214,0 +170767332818,215,0 +170767332866,215,0 +170767332914,215,0 +170767332963,215,0 +170767333013,215,0 +170767333062,215,0 +170767333110,215,0 +170767333160,215,0 +170767333208,214,0 +170767333256,214,0 +170767333304,214,0 +170767333353,214,0 +170767333401,214,0 +170767333449,214,0 +170767333498,214,0 +170767333548,214,0 +170767333598,214,0 +170767333645,214,0 +170767333695,215,0 +170767333743,215,0 +170767333791,215,0 +170767333840,215,0 +170767333890,215,0 +170767333938,215,0 +170767333986,215,0 +170767334035,214,0 +170767334085,213,0 +170767334133,214,0 +170767334182,214,0 +170767334230,214,0 +170767334279,214,0 +170767334329,214,0 +170767334377,215,0 +170767334425,215,0 +170767334472,215,0 +170767334520,215,0 +170767334570,215,0 +170767334619,215,0 +170767334669,215,0 +170767334717,215,0 +170767334765,215,0 +170767334812,215,0 +170767334860,215,0 +170767334908,213,0 +170767334958,213,0 +170767335006,214,0 +170767335055,214,0 +170767335103,214,0 +170767335153,214,0 +170767335200,214,0 +170767335248,214,0 +170767335298,214,0 +170767335346,215,0 +170767335394,215,0 +170767335443,215,0 +170767335491,215,0 +170767335541,215,0 +170767335590,215,0 +170767335638,215,0 +170767335686,215,0 +170767335734,214,0 +170767335784,213,0 +170767335833,213,0 +170767335881,213,0 +170767335929,213,0 +170767335977,213,0 +170767336025,214,0 +170767336074,214,0 +170767336124,214,0 +170767336172,214,0 +170767336220,214,0 +170767336268,214,0 +170767336317,214,0 +170767336365,215,0 +170767336413,215,0 +170767336463,215,0 +170767336511,215,0 +170767336559,215,0 +170767336607,213,0 +170767336655,213,0 +170767336704,213,0 +170767336752,213,0 +170767336800,213,0 +170767336847,213,0 +170767336895,213,0 +170767336945,214,0 +170767336993,214,0 +170767337041,214,0 +170767337089,214,0 +170767337138,214,0 +170767337186,215,0 +170767337234,215,0 +170767337283,215,0 +170767337331,215,0 +170767337379,215,0 +170767337427,215,0 +170767337475,213,0 +170767337523,213,0 +170767337571,214,0 +170767337618,214,0 +170767337666,214,0 +170767337714,214,0 +170767337762,214,0 +170767337810,214,0 +170767337858,214,0 +170767337907,215,0 +170767337955,215,0 +170767338003,215,0 +170767338051,215,0 +170767338098,215,0 +170767338146,215,0 +170767338196,215,0 +170767338244,215,0 +170767338292,214,0 +170767338341,213,0 +170767338391,214,0 +170767338438,214,0 +170767338488,214,0 +170767338536,214,0 +170767338585,214,0 +170767338633,214,0 +170767338681,214,0 +170767338729,215,0 +170767338777,215,0 +170767338825,215,0 +170767338875,215,0 +170767338922,215,0 +170767338972,215,0 +170767339020,216,0 +170767339069,215,0 +170767339119,215,0 +170767339167,214,0 +170767339215,214,0 +170767339264,214,0 +170767339312,214,0 +170767339360,214,0 +170767339410,215,0 +170767339458,215,0 +170767339506,215,0 +170767339554,215,0 +170767339603,215,0 +170767339651,215,0 +170767339701,215,0 +170767339750,215,0 +170767339800,215,0 +170767339849,215,0 +170767339897,215,0 +170767339947,215,0 +170767339996,215,0 +170767340046,213,0 +170767340095,214,0 +170767340145,214,0 +170767340194,214,0 +170767340242,214,0 +170767340290,214,0 +170767340340,214,0 +170767340389,215,0 +170767340439,215,0 +170767340487,215,0 +170767340535,215,0 +170767340583,215,0 +170767340632,215,0 +170767340682,215,0 +170767340730,215,0 +170767340777,215,0 +170767340825,215,0 +170767340873,214,0 +170767340921,213,0 +170767340970,214,0 +170767341018,214,0 +170767341066,214,0 +170767341114,214,0 +170767341162,214,0 +170767341211,214,0 +170767341261,214,0 +170767341309,214,0 +170767341358,214,0 +170767341408,215,0 +170767341456,215,0 +170767341504,215,0 +170767341553,215,0 +170767341603,215,0 +170767341651,215,0 +170767341700,215,0 +170767341748,213,0 +170767341798,213,0 +170767341846,213,0 +170767341895,214,0 +170767341943,214,0 +170767341991,214,0 +170767342041,214,0 +170767342090,214,0 +170767342138,214,0 +170767342186,214,0 +170767342236,214,0 +170767342285,214,0 +170767342333,214,0 +170767342381,215,0 +170767342430,215,0 +170767342480,215,0 +170767342528,215,0 +170767342576,213,0 +170767342624,214,0 +170767342672,214,0 +170767342721,214,0 +170767342769,214,0 +170767342817,214,0 +170767342866,214,0 +170767342914,215,0 +170767342962,214,0 +170767343011,215,0 +170767343061,215,0 +170767343108,215,0 +170767343156,215,0 +170767343204,215,0 +170767343254,215,0 +170767343302,215,0 +170767343350,215,0 +170767343399,214,0 +170767343447,214,0 +170767343495,214,0 +170767343544,214,0 +170767343592,214,0 +170767343642,214,0 +170767343691,214,0 +170767343739,215,0 +170767343787,215,0 +170767343835,215,0 +170767343883,215,0 +170767343933,215,0 +170767343982,215,0 +170767344032,215,0 +170767344081,215,0 +170767344131,215,0 +170767344179,215,0 +170767344227,215,0 +170767344275,214,0 +170767344323,214,0 +170767344372,214,0 +170767344420,214,0 +170767344469,214,0 +170767344519,214,0 +170767344568,215,0 +170767344618,214,0 +170767344666,215,0 +170767344715,215,0 +170767344765,215,0 +170767344814,215,0 +170767344864,215,0 +170767344912,215,0 +170767344961,216,0 +170767345009,215,0 +170767345057,215,0 +170767345105,215,0 +170767345153,214,0 +170767345203,214,0 +170767345251,214,0 +170767345299,214,0 +170767345347,214,0 +170767345396,214,0 +170767345444,215,0 +170767345494,215,0 +170767345541,215,0 +170767345591,215,0 +170767345639,215,0 +170767345687,215,0 +170767345736,215,0 +170767345786,215,0 +170767345836,215,0 +170767345885,215,0 +170767345933,215,0 +170767345982,214,0 +170767346030,214,0 +170767346078,214,0 +170767346126,214,0 +170767346176,214,0 +170767346225,214,0 +170767346275,214,0 +170767346324,215,0 +170767346372,215,0 +170767346422,215,0 +170767346470,215,0 +170767346517,215,0 +170767346565,215,0 +170767346615,215,0 +170767346663,215,0 +170767346711,215,0 +170767346759,215,0 +170767346808,215,0 +170767346856,213,0 +170767346904,213,0 +170767346952,214,0 +170767347002,214,0 +170767347051,214,0 +170767347101,214,0 +170767347149,214,0 +170767347196,214,0 +170767347244,214,0 +170767347292,215,0 +170767347340,215,0 +170767347388,215,0 +170767347438,215,0 +170767347487,215,0 +170767347535,215,0 +170767347583,215,0 +170767347631,215,0 +170767347679,214,0 +170767347727,213,0 +170767347776,213,0 +170767347824,214,0 +170767347872,214,0 +170767347921,214,0 +170767347971,214,0 +170767348019,214,0 +170767348067,214,0 +170767348115,214,0 +170767348163,214,0 +170767348211,215,0 +170767348260,215,0 +170767348310,215,0 +170767348358,215,0 +170767348405,215,0 +170767348455,215,0 +170767348503,214,0 +170767348551,214,0 +170767348599,213,0 +170767348647,213,0 +170767348694,213,0 +170767348742,214,0 +170767348792,214,0 +170767348840,214,0 +170767348889,214,0 +170767348937,214,0 +170767348985,215,0 +170767349035,214,0 +170767349083,215,0 +170767349132,215,0 +170767349180,215,0 +170767349228,215,0 +170767349276,215,0 +170767349325,215,0 +170767349373,214,0 +170767349421,213,0 +170767349471,213,0 +170767349518,213,0 +170767349566,214,0 +170767349614,214,0 +170767349662,214,0 +170767349710,214,0 +170767349758,214,0 +170767349806,214,0 +170767349855,215,0 +170767349905,214,0 +170767349953,215,0 +170767350003,215,0 +170767350051,215,0 +170767350099,215,0 +170767350147,215,0 +170767350195,215,0 +170767350243,213,0 +170767350292,213,0 +170767350342,213,0 +170767350389,213,0 +170767350437,213,0 +170767350487,213,0 +170767350536,214,0 +170767350584,214,0 +170767350632,214,0 +170767350680,214,0 +170767350728,214,0 +170767350776,215,0 +170767350824,215,0 +170767350872,215,0 +170767350920,215,0 +170767350967,215,0 +170767351015,215,0 +170767351065,215,0 +170767351112,213,0 +170767351160,213,0 +170767351210,213,0 +170767351258,213,0 +170767351307,214,0 +170767351355,214,0 +170767351403,214,0 +170767351453,214,0 +170767351500,214,0 +170767351548,214,0 +170767351598,214,0 +170767351646,215,0 +170767351694,215,0 +170767351742,215,0 +170767351790,215,0 +170767351839,215,0 +170767351887,214,0 +170767351935,214,0 +170767351983,213,0 +170767352031,213,0 +170767352079,213,0 +170767352128,214,0 +170767352178,214,0 +170767352227,214,0 +170767352277,214,0 +170767352326,214,0 +170767352376,214,0 +170767352425,214,0 +170767352475,214,0 +170767352524,215,0 +170767352572,215,0 +170767352622,215,0 +170767352670,215,0 +170767352718,215,0 +170767352767,215,0 +170767352815,213,0 +170767352863,213,0 +170767352911,213,0 +170767352959,213,0 +170767353008,214,0 +170767353058,214,0 +170767353106,214,0 +170767353154,214,0 +170767353203,214,0 +170767353251,214,0 +170767353299,215,0 +170767353347,215,0 +170767353396,215,0 +170767353444,215,0 +170767353492,215,0 +170767353540,215,0 +170767353588,214,0 +170767353638,214,0 +170767353687,213,0 +170767353735,213,0 +170767353785,213,0 +170767353833,214,0 +170767353881,214,0 +170767353929,214,0 +170767353977,214,0 +170767354026,214,0 +170767354074,214,0 +170767354122,214,0 +170767354170,215,0 +170767354218,215,0 +170767354266,214,0 +170767354314,215,0 +170767354362,214,0 +170767354410,215,0 +170767354459,215,0 +170767354507,213,0 +170767354557,213,0 +170767354606,213,0 +170767354656,213,0 +170767354704,213,0 +170767354752,214,0 +170767354801,214,0 +170767354851,214,0 +170767354899,214,0 +170767354947,215,0 +170767354994,215,0 +170767355042,215,0 +170767355090,215,0 +170767355138,215,0 +170767355188,215,0 +170767355237,215,0 +170767355287,215,0 +170767355335,215,0 +170767355384,213,0 +170767355434,213,0 +170767355482,213,0 +170767355531,213,0 +170767355580,214,0 +170767355628,214,0 +170767355678,214,0 +170767355727,214,0 +170767355777,215,0 +170767355826,214,0 +170767355876,214,0 +170767355925,215,0 +170767355973,215,0 +170767356021,215,0 +170767356071,215,0 +170767356120,215,0 +170767356168,215,0 +170767356216,213,0 +170767356264,213,0 +170767356313,213,0 +170767356361,213,0 +170767356409,213,0 +170767356457,213,0 +170767356505,214,0 +170767356554,214,0 +170767356602,214,0 +170767356650,214,0 +170767356698,214,0 +170767356746,214,0 +170767356793,214,0 +170767356843,215,0 +170767356891,215,0 +170767356938,215,0 +170767356986,215,0 +170767357034,215,0 +170767357084,213,0 +170767357131,213,0 +170767357179,213,0 +170767357229,213,0 +170767357278,213,0 +170767357326,214,0 +170767357376,214,0 +170767357424,214,0 +170767357471,214,0 +170767357519,214,0 +170767357569,214,0 +170767357617,215,0 +170767357666,215,0 +170767357714,215,0 +170767357762,215,0 +170767357812,215,0 +170767357861,215,0 +170767357911,213,0 +170767357959,213,0 +170767358006,213,0 +170767358054,213,0 +170767358104,213,0 +170767358152,214,0 +170767358200,214,0 +170767358247,214,0 +170767358295,214,0 +170767358343,214,0 +170767358391,214,0 +170767358439,215,0 +170767358487,215,0 +170767358534,215,0 +170767358582,215,0 +170767358630,215,0 +170767358678,215,0 +170767358726,215,0 +170767358775,213,0 +170767358823,213,0 +170767358871,213,0 +170767358919,213,0 +170767358966,213,0 +170767359014,213,0 +170767359062,214,0 +170767359110,214,0 +170767359158,214,0 +170767359206,214,0 +170767359253,214,0 +170767359301,214,0 +170767359349,214,0 +170767359397,215,0 +170767359445,215,0 +170767359493,215,0 +170767359541,215,0 +170767359588,215,0 +170767359636,213,0 +170767359684,213,0 +170767359732,214,0 +170767359780,214,0 +170767359828,213,0 +170767359876,214,0 +170767359924,214,0 +170767359972,214,0 +170767360019,214,0 +170767360067,214,0 +170767360115,214,0 +170767360163,214,0 +170767360213,214,0 +170767360261,215,0 +170767360309,215,0 +170767360357,214,0 +170767360406,215,0 +170767360456,214,0 +170767360505,213,0 +170767360553,213,0 +170767360601,213,0 +170767360649,213,0 +170767360698,213,0 +170767360746,213,0 +170767360794,213,0 +170767360841,214,0 +170767360889,214,0 +170767360937,214,0 +170767360985,214,0 +170767361033,214,0 +170767361081,214,0 +170767361129,215,0 +170767361177,215,0 +170767361224,215,0 +170767361272,215,0 +170767361320,213,0 +170767361368,213,0 +170767361416,213,0 +170767361465,213,0 +170767361513,213,0 +170767361561,213,0 +170767361609,214,0 +170767361657,214,0 +170767361705,214,0 +170767361752,214,0 +170767361800,214,0 +170767361850,214,0 +170767361898,215,0 +170767361946,215,0 +170767361993,215,0 +170767362043,215,0 +170767362092,215,0 +170767362142,215,0 +170767362190,213,0 +170767362238,213,0 +170767362286,213,0 +170767362334,213,0 +170767362381,213,0 +170767362429,214,0 +170767362477,214,0 +170767362525,214,0 +170767362575,214,0 +170767362624,215,0 +170767362672,214,0 +170767362720,215,0 +170767362768,215,0 +170767362818,215,0 +170767362867,215,0 +170767362915,215,0 +170767362963,215,0 +170767363012,213,0 +170767363060,213,0 +170767363108,213,0 +170767363156,214,0 +170767363204,214,0 +170767363252,214,0 +170767363300,214,0 +170767363348,214,0 +170767363396,214,0 +170767363444,214,0 +170767363491,215,0 +170767363539,215,0 +170767363589,215,0 +170767363637,215,0 +170767363685,215,0 +170767363732,215,0 +170767363780,215,0 +170767363828,215,0 +170767363878,214,0 +170767363926,213,0 +170767363974,214,0 +170767364024,214,0 +170767364072,214,0 +170767364119,214,0 +170767364167,214,0 +170767364217,214,0 +170767364265,214,0 +170767364313,215,0 +170767364361,215,0 +170767364410,215,0 +170767364458,215,0 +170767364506,215,0 +170767364556,215,0 +170767364604,214,0 +170767364653,215,0 +170767364701,215,0 +170767364749,213,0 +170767364797,213,0 +170767364847,213,0 +170767364896,213,0 +170767364944,214,0 +170767364994,214,0 +170767365041,214,0 +170767365089,214,0 +170767365137,214,0 +170767365185,214,0 +170767365233,214,0 +170767365281,214,0 +170767365329,215,0 +170767365379,214,0 +170767365427,215,0 +170767365476,215,0 +170767365524,215,0 +170767365572,213,0 +170767365620,214,0 +170767365668,213,0 +170767365717,214,0 +170767365765,214,0 +170767365813,213,0 +170767365863,214,0 +170767365911,214,0 +170767365960,214,0 +170767366008,214,0 +170767366056,214,0 +170767366104,215,0 +170767366153,215,0 +170767366201,215,0 +170767366249,215,0 +170767366299,215,0 +170767366347,215,0 +170767366395,215,0 +170767366444,213,0 +170767366492,213,0 +170767366542,213,0 +170767366590,214,0 +170767366638,213,0 +170767366687,214,0 +170767366735,214,0 +170767366783,214,0 +170767366831,214,0 +170767366879,214,0 +170767366928,215,0 +170767366976,214,0 +170767367026,215,0 +170767367074,215,0 +170767367123,215,0 +170767367171,215,0 +170767367219,215,0 +170767367267,214,0 +170767367315,213,0 +170767367363,213,0 +170767367412,213,0 +170767367462,214,0 +170767367510,214,0 +170767367557,214,0 +170767367605,214,0 +170767367653,214,0 +170767367701,214,0 +170767367749,215,0 +170767367796,214,0 +170767367844,215,0 +170767367892,215,0 +170767367940,215,0 +170767367988,215,0 +170767368035,215,0 +170767368083,215,0 +170767368131,214,0 +170767368179,213,0 +170767368229,213,0 +170767368276,214,0 +170767368326,214,0 +170767368374,214,0 +170767368422,214,0 +170767368470,215,0 +170767368519,214,0 +170767368567,215,0 +170767368617,215,0 +170767368665,215,0 +170767368712,215,0 +170767368760,215,0 +170767368808,215,0 +170767368856,215,0 +170767368904,215,0 +170767368951,215,0 +170767369001,213,0 +170767369049,213,0 +170767369097,213,0 +170767369144,214,0 +170767369192,214,0 +170767369240,214,0 +170767369288,214,0 +170767369337,214,0 +170767369385,214,0 +170767369435,214,0 +170767369483,215,0 +170767369530,215,0 +170767369578,215,0 +170767369626,215,0 +170767369674,215,0 +170767369722,215,0 +170767369769,215,0 +170767369817,214,0 +170767369865,213,0 +170767369913,213,0 +170767369961,213,0 +170767370009,214,0 +170767370056,214,0 +170767370104,214,0 +170767370152,214,0 +170767370200,214,0 +170767370248,214,0 +170767370295,215,0 +170767370343,215,0 +170767370391,215,0 +170767370439,215,0 +170767370487,215,0 +170767370535,215,0 +170767370583,215,0 +170767370630,215,0 +170767370678,214,0 +170767370726,213,0 +170767370774,213,0 +170767370822,214,0 +170767370869,214,0 +170767370917,213,0 +170767370967,214,0 +170767371014,214,0 +170767371062,214,0 +170767371110,214,0 +170767371158,214,0 +170767371206,214,0 +170767371255,215,0 +170767371303,215,0 +170767371352,215,0 +170767371400,215,0 +170767371448,215,0 +170767371496,215,0 +170767371544,213,0 +170767371591,213,0 +170767371639,213,0 +170767371687,213,0 +170767371735,213,0 +170767371783,214,0 +170767371831,214,0 +170767371878,214,0 +170767371926,214,0 +170767371974,214,0 +170767372023,214,0 +170767372071,214,0 +170767372119,214,0 +170767372167,215,0 +170767372215,215,0 +170767372263,215,0 +170767372311,215,0 +170767372358,215,0 +170767372406,213,0 +170767372454,213,0 +170767372502,213,0 +170767372550,213,0 +170767372598,213,0 +170767372645,213,0 +170767372693,213,0 +170767372741,214,0 +170767372789,214,0 +170767372837,214,0 +170767372885,214,0 +170767372933,214,0 +170767372980,214,0 +170767373028,214,0 +170767373078,215,0 +170767373126,215,0 +170767373173,215,0 +170767373221,215,0 +170767373269,213,0 +170767373317,213,0 +170767373365,213,0 +170767373413,213,0 +170767373462,213,0 +170767373512,213,0 +170767373560,213,0 +170767373607,213,0 +170767373655,214,0 +170767373703,214,0 +170767373751,214,0 +170767373799,214,0 +170767373847,215,0 +170767373895,215,0 +170767373942,214,0 +170767373990,215,0 +170767374038,215,0 +170767374086,214,0 +170767374134,213,0 +170767374182,213,0 +170767374230,213,0 +170767374277,213,0 +170767374325,213,0 +170767374373,213,0 +170767374421,214,0 +170767374469,214,0 +170767374516,214,0 +170767374564,214,0 +170767374612,214,0 +170767374660,214,0 +170767374708,214,0 +170767374756,215,0 +170767374804,215,0 +170767374852,215,0 +170767374899,215,0 +170767374947,214,0 +170767374997,212,0 +170767375046,213,0 +170767375094,213,0 +170767375142,213,0 +170767375190,213,0 +170767375237,213,0 +170767375285,213,0 +170767375333,213,0 +170767375382,214,0 +170767375430,214,0 +170767375478,214,0 +170767375526,214,0 +170767375574,214,0 +170767375622,214,0 +170767375670,214,0 +170767375717,215,0 +170767375765,215,0 +170767375813,213,0 +170767375863,212,0 +170767375912,213,0 +170767375960,213,0 +170767376008,213,0 +170767376056,212,0 +170767376103,213,0 +170767376151,213,0 +170767376199,213,0 +170767376247,213,0 +170767376295,213,0 +170767376343,213,0 +170767376391,214,0 +170767376438,214,0 +170767376486,214,0 +170767376534,214,0 +170767376582,214,0 +170767376629,214,0 +170767376677,213,0 +170767376725,213,0 +170767376773,213,0 +170767376821,213,0 +170767376869,213,0 +170767376917,213,0 +170767376964,214,0 +170767377012,214,0 +170767377060,214,0 +170767377108,214,0 +170767377157,214,0 +170767377205,215,0 +170767377253,215,0 +170767377301,215,0 +170767377348,215,0 +170767377396,215,0 +170767377444,214,0 +170767377492,214,0 +170767377539,213,0 +170767377587,214,0 +170767377635,214,0 +170767377683,214,0 +170767377731,214,0 +170767377779,214,0 +170767377827,214,0 +170767377874,214,0 +170767377922,214,0 +170767377970,214,0 +170767378018,214,0 +170767378067,215,0 +170767378117,214,0 +170767378165,215,0 +170767378213,215,0 +170767378260,215,0 +170767378308,215,0 +170767378356,214,0 +170767378404,213,0 +170767378452,213,0 +170767378501,213,0 +170767378550,214,0 +170767378598,214,0 +170767378646,214,0 +170767378694,214,0 +170767378743,214,0 +170767378791,214,0 +170767378839,214,0 +170767378888,215,0 +170767378936,215,0 +170767378984,215,0 +170767379032,214,0 +170767379080,215,0 +170767379128,214,0 +170767379176,215,0 +170767379223,214,0 +170767379271,213,0 +170767379319,214,0 +170767379369,214,0 +170767379416,214,0 +170767379464,214,0 +170767379512,214,0 +170767379560,214,0 +170767379608,214,0 +170767379655,214,0 +170767379703,214,0 +170767379751,215,0 +170767379799,215,0 +170767379847,215,0 +170767379895,215,0 +170767379943,215,0 +170767379991,215,0 +170767380038,214,0 +170767380086,214,0 +170767380134,213,0 +170767380182,214,0 +170767380230,214,0 +170767380278,214,0 +170767380326,214,0 +170767380373,214,0 +170767380421,214,0 +170767380469,214,0 +170767380517,215,0 +170767380565,215,0 +170767380613,215,0 +170767380662,215,0 +170767380710,215,0 +170767380758,215,0 +170767380805,215,0 +170767380853,215,0 +170767380901,215,0 +170767380949,213,0 +170767380998,213,0 +170767381046,213,0 +170767381094,214,0 +170767381142,214,0 +170767381190,214,0 +170767381237,214,0 +170767381285,214,0 +170767381335,214,0 +170767381382,214,0 +170767381430,214,0 +170767381478,215,0 +170767381526,214,0 +170767381574,215,0 +170767381622,215,0 +170767381670,215,0 +170767381717,215,0 +170767381765,214,0 +170767381813,213,0 +170767381861,213,0 +170767381909,214,0 +170767381957,214,0 +170767382004,214,0 +170767382052,214,0 +170767382100,214,0 +170767382148,215,0 +170767382196,214,0 +170767382244,214,0 +170767382292,214,0 +170767382339,214,0 +170767382387,215,0 +170767382435,215,0 +170767382483,215,0 +170767382531,215,0 +170767382578,215,0 +170767382626,214,0 +170767382674,213,0 +170767382722,214,0 +170767382770,214,0 +170767382817,214,0 +170767382865,214,0 +170767382913,214,0 +170767382961,214,0 +170767383009,214,0 +170767383057,214,0 +170767383105,215,0 +170767383152,214,0 +170767383200,215,0 +170767383248,215,0 +170767383296,215,0 +170767383344,215,0 +170767383392,214,0 +170767383440,215,0 +170767383487,213,0 +170767383535,213,0 +170767383583,213,0 +170767383631,213,0 +170767383679,214,0 +170767383727,214,0 +170767383774,214,0 +170767383822,214,0 +170767383870,214,0 +170767383918,214,0 +170767383966,214,0 +170767384013,215,0 +170767384063,214,0 +170767384111,214,0 +170767384159,215,0 +170767384206,215,0 +170767384254,215,0 +170767384302,215,0 +170767384350,213,0 +170767384398,213,0 +170767384446,213,0 +170767384493,213,0 +170767384541,214,0 +170767384589,214,0 +170767384637,214,0 +170767384685,214,0 +170767384733,214,0 +170767384782,214,0 +170767384830,214,0 +170767384878,215,0 +170767384926,215,0 +170767384973,215,0 +170767385021,215,0 +170767385069,215,0 +170767385117,215,0 +170767385165,215,0 +170767385213,213,0 +170767385260,213,0 +170767385308,213,0 +170767385356,213,0 +170767385404,213,0 +170767385452,214,0 +170767385500,214,0 +170767385547,214,0 +170767385595,214,0 +170767385643,214,0 +170767385691,214,0 +170767385739,214,0 +170767385786,215,0 +170767385834,215,0 +170767385882,215,0 +170767385932,215,0 +170767385979,215,0 +170767386027,215,0 +170767386075,213,0 +170767386123,213,0 +170767386171,213,0 +170767386220,213,0 +170767386270,213,0 +170767386317,213,0 +170767386365,214,0 +170767386413,214,0 +170767386461,214,0 +170767386509,214,0 +170767386557,214,0 +170767386605,214,0 +170767386653,215,0 +170767386700,215,0 +170767386748,215,0 +170767386796,215,0 +170767386844,215,0 +170767386892,214,0 +170767386940,213,0 +170767386987,213,0 +170767387035,213,0 +170767387085,213,0 +170767387133,213,0 +170767387180,213,0 +170767387228,214,0 +170767387276,214,0 +170767387324,214,0 +170767387372,214,0 +170767387421,214,0 +170767387469,215,0 +170767387517,215,0 +170767387565,215,0 +170767387612,215,0 +170767387660,215,0 +170767387708,215,0 +170767387756,214,0 +170767387805,213,0 +170767387853,213,0 +170767387902,213,0 +170767387952,214,0 +170767388000,213,0 +170767388048,214,0 +170767388095,214,0 +170767388143,214,0 +170767388193,214,0 +170767388241,214,0 +170767388288,214,0 +170767388336,215,0 +170767388384,215,0 +170767388433,215,0 +170767388481,215,0 +170767388531,215,0 +170767388578,215,0 +170767388626,213,0 +170767388674,213,0 +170767388722,213,0 +170767388770,213,0 +170767388818,213,0 +170767388865,214,0 +170767388913,214,0 +170767388961,214,0 +170767389009,214,0 +170767389057,214,0 +170767389104,214,0 +170767389152,214,0 +170767389200,215,0 +170767389248,215,0 +170767389296,215,0 +170767389344,215,0 +170767389391,215,0 +170767389439,215,0 +170767389487,213,0 +170767389535,213,0 +170767389583,213,0 +170767389631,213,0 +170767389678,213,0 +170767389726,214,0 +170767389774,214,0 +170767389822,214,0 +170767389871,214,0 +170767389919,214,0 +170767389967,214,0 +170767390016,215,0 +170767390064,215,0 +170767390112,215,0 +170767390160,215,0 +170767390208,215,0 +170767390256,215,0 +170767390303,214,0 +170767390351,213,0 +170767390401,213,0 +170767390448,213,0 +170767390496,213,0 +170767390544,213,0 +170767390592,213,0 +170767390640,214,0 +170767390687,214,0 +170767390735,214,0 +170767390783,214,0 +170767390831,215,0 +170767390879,215,0 +170767390927,215,0 +170767390974,215,0 +170767391022,215,0 +170767391070,215,0 +170767391118,215,0 +170767391166,214,0 +170767391213,213,0 +170767391261,213,0 +170767391309,213,0 +170767391357,213,0 +170767391405,214,0 +170767391454,214,0 +170767391502,214,0 +170767391550,214,0 +170767391599,214,0 +170767391649,214,0 +170767391697,215,0 +170767391744,215,0 +170767391792,215,0 +170767391840,215,0 +170767391888,215,0 +170767391936,215,0 +170767391984,215,0 +170767392032,213,0 +170767392079,213,0 +170767392127,213,0 +170767392175,213,0 +170767392223,213,0 +170767392271,213,0 +170767392319,214,0 +170767392367,214,0 +170767392414,214,0 +170767392462,214,0 +170767392510,214,0 +170767392558,214,0 +170767392606,215,0 +170767392654,215,0 +170767392701,215,0 +170767392749,215,0 +170767392797,215,0 +170767392845,215,0 +170767392893,213,0 +170767392942,213,0 +170767392990,213,0 +170767393038,213,0 +170767393086,213,0 +170767393135,214,0 +170767393184,214,0 +170767393231,214,0 +170767393279,214,0 +170767393329,214,0 +170767393377,214,0 +170767393424,214,0 +170767393472,215,0 +170767393520,215,0 +170767393569,215,0 +170767393617,215,0 +170767393665,215,0 +170767393713,215,0 +170767393761,213,0 +170767393809,213,0 +170767393856,213,0 +170767393904,213,0 +170767393954,213,0 +170767394002,213,0 +170767394049,213,0 +170767394097,214,0 +170767394145,214,0 +170767394193,214,0 +170767394241,214,0 +170767394289,214,0 +170767394336,214,0 +170767394386,214,0 +170767394434,215,0 +170767394482,215,0 +170767394529,215,0 +170767394577,214,0 +170767394627,213,0 +170767394675,213,0 +170767394722,213,0 +170767394770,213,0 +170767394818,213,0 +170767394868,213,0 +170767394916,213,0 +170767394965,213,0 +170767395013,214,0 +170767395062,214,0 +170767395112,214,0 +170767395160,214,0 +170767395208,214,0 +170767395256,215,0 +170767395305,214,0 +170767395354,215,0 +170767395404,215,0 +170767395452,213,0 +170767395500,212,0 +170767395548,213,0 +170767395596,213,0 +170767395645,213,0 +170767395693,213,0 +170767395741,213,0 +170767395789,214,0 +170767395837,214,0 +170767395885,214,0 +170767395934,214,0 +170767395982,214,0 +170767396030,214,0 +170767396078,215,0 +170767396126,215,0 +170767396174,215,0 +170767396222,215,0 +170767396270,214,0 +170767396318,213,0 +170767396366,213,0 +170767396414,213,0 +170767396462,213,0 +170767396509,213,0 +170767396557,214,0 +170767396605,214,0 +170767396655,214,0 +170767396703,214,0 +170767396752,214,0 +170767396802,214,0 +170767396850,214,0 +170767396899,215,0 +170767396949,215,0 +170767396998,215,0 +170767397046,215,0 +170767397094,215,0 +170767397142,214,0 +170767397192,213,0 +170767397241,213,0 +170767397289,213,0 +170767397339,214,0 +170767397387,214,0 +170767397436,214,0 +170767397484,214,0 +170767397533,214,0 +170767397581,214,0 +170767397631,214,0 +170767397679,215,0 +170767397728,215,0 +170767397778,215,0 +170767397826,215,0 +170767397874,215,0 +170767397922,215,0 +170767397970,215,0 +170767398018,213,0 +170767398067,213,0 +170767398115,213,0 +170767398163,213,0 +170767398211,214,0 +170767398259,214,0 +170767398307,214,0 +170767398355,214,0 +170767398403,214,0 +170767398450,214,0 +170767398498,215,0 +170767398546,214,0 +170767398594,214,0 +170767398642,215,0 +170767398690,215,0 +170767398737,215,0 +170767398785,215,0 +170767398833,214,0 +170767398881,214,0 +170767398929,214,0 +170767398977,214,0 +170767399025,214,0 +170767399074,214,0 +170767399122,214,0 +170767399170,214,0 +170767399219,214,0 +170767399267,214,0 +170767399315,215,0 +170767399363,214,0 +170767399411,215,0 +170767399459,215,0 +170767399507,215,0 +170767399555,215,0 +170767399603,215,0 +170767399651,215,0 +170767399700,214,0 +170767399748,213,0 +170767399798,213,0 +170767399847,213,0 +170767399897,214,0 +170767399945,214,0 +170767399993,214,0 +170767400042,215,0 +170767400092,215,0 +170767400141,215,0 +170767400189,215,0 +170767400237,215,0 +170767400287,215,0 +170767400335,215,0 +170767400383,215,0 +170767400431,215,0 +170767400480,215,0 +170767400528,215,0 +170767400576,213,0 +170767400624,214,0 +170767400672,214,0 +170767400720,214,0 +170767400768,214,0 +170767400817,214,0 +170767400867,215,0 +170767400915,215,0 +170767400963,215,0 +170767401011,215,0 +170767401059,215,0 +170767401107,215,0 +170767401155,215,0 +170767401204,215,0 +170767401252,215,0 +170767401300,215,0 +170767401348,215,0 +170767401396,215,0 +170767401445,214,0 +170767401493,214,0 +170767401543,214,0 +170767401592,214,0 +170767401640,214,0 +170767401690,215,0 +170767401738,215,0 +170767401787,215,0 +170767401835,215,0 +170767401885,215,0 +170767401932,215,0 +170767401980,215,0 +170767402028,215,0 +170767402076,215,0 +170767402124,215,0 +170767402172,215,0 +170767402220,215,0 +170767402268,214,0 +170767402316,214,0 +170767402364,214,0 +170767402413,214,0 +170767402461,214,0 +170767402509,214,0 +170767402558,214,0 +170767402606,215,0 +170767402654,214,0 +170767402704,215,0 +170767402751,215,0 +170767402799,215,0 +170767402847,215,0 +170767402895,215,0 +170767402943,215,0 +170767402993,215,0 +170767403041,215,0 +170767403088,214,0 +170767403138,213,0 +170767403186,213,0 +170767403235,213,0 +170767403283,214,0 +170767403331,214,0 +170767403381,214,0 +170767403429,214,0 +170767403478,214,0 +170767403526,214,0 +170767403575,214,0 +170767403623,214,0 +170767403671,214,0 +170767403718,215,0 +170767403768,215,0 +170767403817,215,0 +170767403867,215,0 +170767403915,214,0 +170767403964,213,0 +170767404014,213,0 +170767404063,213,0 +170767404111,213,0 +170767404159,213,0 +170767404207,214,0 +170767404257,214,0 +170767404305,214,0 +170767404353,214,0 +170767404401,214,0 +170767404448,214,0 +170767404496,215,0 +170767404544,215,0 +170767404592,215,0 +170767404640,215,0 +170767404688,215,0 +170767404736,215,0 +170767404783,215,0 +170767404831,213,0 +170767404879,213,0 +170767404927,213,0 +170767404975,213,0 +170767405022,214,0 +170767405070,214,0 +170767405118,214,0 +170767405166,214,0 +170767405215,214,0 +170767405263,214,0 +170767405311,215,0 +170767405358,214,0 +170767405408,215,0 +170767405456,215,0 +170767405505,215,0 +170767405553,215,0 +170767405601,215,0 +170767405649,214,0 +170767405698,213,0 +170767405746,213,0 +170767405794,213,0 +170767405843,213,0 +170767405891,213,0 +170767405939,214,0 +170767405988,214,0 +170767406036,214,0 +170767406084,214,0 +170767406132,214,0 +170767406180,214,0 +170767406227,214,0 +170767406275,215,0 +170767406323,215,0 +170767406371,215,0 +170767406419,215,0 +170767406467,215,0 +170767406515,213,0 +170767406565,213,0 +170767406614,213,0 +170767406664,213,0 +170767406713,213,0 +170767406763,213,0 +170767406811,213,0 +170767406860,214,0 +170767406908,214,0 +170767406956,214,0 +170767407004,214,0 +170767407052,214,0 +170767407100,214,0 +170767407148,214,0 +170767407195,214,0 +170767407243,215,0 +170767407291,215,0 +170767407339,214,0 +170767407387,213,0 +170767407434,213,0 +170767407482,213,0 +170767407532,213,0 +170767407579,213,0 +170767407627,213,0 +170767407675,213,0 +170767407723,214,0 +170767407770,214,0 +170767407818,214,0 +170767407866,214,0 +170767407914,214,0 +170767407962,215,0 +170767408010,215,0 +170767408058,214,0 +170767408106,215,0 +170767408154,214,0 +170767408201,214,0 +170767408249,213,0 +170767408297,213,0 +170767408345,213,0 +170767408393,213,0 +170767408441,213,0 +170767408488,213,0 +170767408538,213,0 +170767408586,214,0 +170767408634,214,0 +170767408681,214,0 +170767408729,214,0 +170767408777,214,0 +170767408825,214,0 +170767408873,215,0 +170767408921,215,0 +170767408969,215,0 +170767409017,214,0 +170767409064,214,0 +170767409112,213,0 +170767409160,213,0 +170767409208,213,0 +170767409256,213,0 +170767409304,213,0 +170767409352,213,0 +170767409399,214,0 +170767409447,213,0 +170767409495,214,0 +170767409543,214,0 +170767409591,214,0 +170767409639,214,0 +170767409687,214,0 +170767409735,214,0 +170767409784,215,0 +170767409834,214,0 +170767409881,214,0 +170767409931,213,0 +170767409979,213,0 +170767410028,213,0 +170767410076,213,0 +170767410124,213,0 +170767410171,213,0 +170767410219,213,0 +170767410267,213,0 +170767410315,214,0 +170767410364,214,0 +170767410412,214,0 +170767410460,214,0 +170767410510,214,0 +170767410559,215,0 +170767410609,215,0 +170767410657,215,0 +170767410704,215,0 +170767410752,214,0 +170767410800,213,0 +170767410848,213,0 +170767410896,213,0 +170767410944,213,0 +170767410992,213,0 +170767411039,213,0 +170767411087,213,0 +170767411135,214,0 +170767411183,214,0 +170767411231,214,0 +170767411279,214,0 +170767411327,214,0 +170767411376,214,0 +170767411424,214,0 +170767411472,214,0 +170767411520,214,0 +170767411570,214,0 +170767411619,214,0 +170767411667,213,0 +170767411715,213,0 +170767411762,213,0 +170767411812,213,0 +170767411859,213,0 +170767411907,213,0 +170767411955,214,0 +170767412003,214,0 +170767412051,214,0 +170767412099,214,0 +170767412148,214,0 +170767412196,214,0 +170767412244,214,0 +170767412292,215,0 +170767412339,215,0 +170767412389,214,0 +170767412437,214,0 +170767412485,214,0 +170767412532,213,0 +170767412580,213,0 +170767412628,213,0 +170767412676,213,0 +170767412724,213,0 +170767412772,213,0 +170767412820,214,0 +170767412867,214,0 +170767412915,214,0 +170767412963,215,0 +170767413011,214,0 +170767413059,215,0 +170767413107,215,0 +170767413155,215,0 +170767413203,214,0 +170767413251,215,0 +170767413299,215,0 +170767413348,214,0 +170767413396,213,0 +170767413446,214,0 +170767413495,214,0 +170767413544,214,0 +170767413592,214,0 +170767413640,214,0 +170767413688,214,0 +170767413737,214,0 +170767413785,215,0 +170767413833,215,0 +170767413881,215,0 +170767413929,214,0 +170767413977,215,0 +170767414025,215,0 +170767414073,215,0 +170767414122,215,0 +170767414172,214,0 +170767414220,213,0 +170767414267,213,0 +170767414315,213,0 +170767414363,213,0 +170767414411,214,0 +170767414459,214,0 +170767414507,214,0 +170767414554,214,0 +170767414602,214,0 +170767414650,214,0 +170767414698,215,0 +170767414747,215,0 +170767414795,215,0 +170767414843,215,0 +170767414891,215,0 +170767414940,215,0 +170767414988,215,0 +170767415038,214,0 +170767415086,213,0 +170767415134,213,0 +170767415181,213,0 +170767415230,214,0 +170767415279,214,0 +170767415327,214,0 +170767415375,214,0 +170767415424,214,0 +170767415474,215,0 +170767415522,215,0 +170767415570,215,0 +170767415618,215,0 +170767415667,215,0 +170767415716,215,0 +170767415766,215,0 +170767415814,215,0 +170767415862,215,0 +170767415911,213,0 +170767415960,213,0 +170767416008,213,0 +170767416058,213,0 +170767416106,214,0 +170767416154,214,0 +170767416203,214,0 +170767416251,214,0 +170767416299,214,0 +170767416348,214,0 +170767416396,214,0 +170767416444,214,0 +170767416492,214,0 +170767416540,214,0 +170767416588,214,0 +170767416636,215,0 +170767416684,215,0 +170767416733,214,0 +170767416781,213,0 +170767416829,213,0 +170767416877,213,0 +170767416924,213,0 +170767416974,213,0 +170767417022,213,0 +170767417069,214,0 +170767417117,213,0 +170767417165,214,0 +170767417213,214,0 +170767417261,214,0 +170767417310,214,0 +170767417358,214,0 +170767417406,214,0 +170767417454,215,0 +170767417503,214,0 +170767417551,214,0 +170767417599,214,0 +170767417649,213,0 +170767417697,213,0 +170767417745,213,0 +170767417793,213,0 +170767417842,213,0 +170767417890,214,0 +170767417938,214,0 +170767417986,214,0 +170767418033,214,0 +170767418083,214,0 +170767418130,214,0 +170767418178,215,0 +170767418226,214,0 +170767418274,215,0 +170767418322,215,0 +170767418370,215,0 +170767418418,215,0 +170767418466,213,0 +170767418514,213,0 +170767418562,213,0 +170767418610,213,0 +170767418658,213,0 +170767418706,213,0 +170767418754,214,0 +170767418802,214,0 +170767418849,214,0 +170767418897,214,0 +170767418945,214,0 +170767418993,215,0 +170767419043,215,0 +170767419092,215,0 +170767419141,215,0 +170767419189,215,0 +170767419239,215,0 +170767419288,215,0 +170767419336,213,0 +170767419384,213,0 +170767419432,213,0 +170767419480,214,0 +170767419529,214,0 +170767419577,213,0 +170767419627,214,0 +170767419676,214,0 +170767419724,214,0 +170767419772,215,0 +170767419820,215,0 +170767419868,215,0 +170767419918,215,0 +170767419967,215,0 +170767420015,215,0 +170767420064,215,0 +170767420114,215,0 +170767420163,215,0 +170767420211,213,0 +170767420259,213,0 +170767420307,213,0 +170767420357,214,0 +170767420404,214,0 +170767420452,214,0 +170767420500,214,0 +170767420548,214,0 +170767420596,215,0 +170767420646,214,0 +170767420693,215,0 +170767420743,215,0 +170767420791,215,0 +170767420839,215,0 +170767420888,215,0 +170767420938,215,0 +170767420987,215,0 +170767421035,213,0 +170767421083,213,0 +170767421131,213,0 +170767421179,213,0 +170767421227,214,0 +170767421275,214,0 +170767421324,214,0 +170767421374,214,0 +170767421423,214,0 +170767421471,214,0 +170767421519,214,0 +170767421567,215,0 +170767421615,215,0 +170767421663,215,0 +170767421712,215,0 +170767421760,215,0 +170767421808,215,0 +170767421856,215,0 +170767421904,213,0 +170767421953,213,0 +170767422003,213,0 +170767422051,213,0 +170767422099,214,0 +170767422148,214,0 +170767422196,214,0 +170767422244,214,0 +170767422292,214,0 +170767422342,214,0 +170767422390,214,0 +170767422438,214,0 +170767422487,215,0 +170767422535,215,0 +170767422583,215,0 +170767422631,215,0 +170767422679,214,0 +170767422728,214,0 +170767422776,213,0 +170767422824,213,0 +170767422874,213,0 +170767422922,213,0 +170767422970,214,0 +170767423017,214,0 +170767423067,214,0 +170767423115,214,0 +170767423163,214,0 +170767423211,214,0 +170767423259,214,0 +170767423307,214,0 +170767423356,215,0 +170767423404,215,0 +170767423452,215,0 +170767423500,215,0 +170767423549,215,0 +170767423597,215,0 +170767423645,215,0 +170767423693,213,0 +170767423742,213,0 +170767423792,213,0 +170767423841,214,0 +170767423889,214,0 +170767423937,214,0 +170767423985,214,0 +170767424035,214,0 +170767424084,214,0 +170767424133,214,0 +170767424181,214,0 +170767424229,215,0 +170767424277,215,0 +170767424325,215,0 +170767424373,215,0 +170767424421,215,0 +170767424470,215,0 +170767424518,214,0 +170767424566,213,0 +170767424613,213,0 +170767424661,214,0 +170767424709,214,0 +170767424757,214,0 +170767424806,214,0 +170767424854,214,0 +170767424904,214,0 +170767424951,214,0 +170767424999,215,0 +170767425047,215,0 +170767425095,215,0 +170767425143,215,0 +170767425191,215,0 +170767425238,215,0 +170767425286,215,0 +170767425334,215,0 +170767425382,214,0 +170767425430,213,0 +170767425477,213,0 +170767425525,214,0 +170767425573,214,0 +170767425621,214,0 +170767425669,214,0 +170767425717,214,0 +170767425765,214,0 +170767425812,214,0 +170767425860,215,0 +170767425908,214,0 +170767425956,215,0 +170767426004,215,0 +170767426052,215,0 +170767426100,215,0 +170767426148,215,0 +170767426197,215,0 +170767426245,215,0 +170767426295,213,0 +170767426344,213,0 +170767426394,213,0 +170767426443,214,0 +170767426493,214,0 +170767426541,214,0 +170767426589,214,0 +170767426637,214,0 +170767426684,214,0 +170767426732,214,0 +170767426780,214,0 +170767426828,215,0 +170767426876,215,0 +170767426924,215,0 +170767426973,215,0 +170767427023,215,0 +170767427071,215,0 +170767427119,215,0 +170767427167,214,0 +170767427216,213,0 +170767427264,213,0 +170767427312,214,0 +170767427361,214,0 +170767427409,214,0 +170767427457,214,0 +170767427506,214,0 +170767427554,214,0 +170767427602,214,0 +170767427650,214,0 +170767427698,215,0 +170767427746,215,0 +170767427794,215,0 +170767427842,215,0 +170767427890,215,0 +170767427938,215,0 +170767427986,215,0 +170767428034,214,0 +170767428081,214,0 +170767428129,214,0 +170767428177,214,0 +170767428225,214,0 +170767428273,214,0 +170767428321,214,0 +170767428368,214,0 +170767428416,215,0 +170767428464,214,0 +170767428512,215,0 +170767428560,215,0 +170767428609,215,0 +170767428657,215,0 +170767428705,215,0 +170767428753,215,0 +170767428801,215,0 +170767428850,215,0 +170767428898,215,0 +170767428946,213,0 +170767428994,213,0 +170767429041,214,0 +170767429089,214,0 +170767429137,214,0 +170767429185,214,0 +170767429233,214,0 +170767429281,214,0 +170767429328,214,0 +170767429376,214,0 +170767429424,215,0 +170767429472,215,0 +170767429520,215,0 +170767429568,215,0 +170767429616,215,0 +170767429664,215,0 +170767429712,215,0 +170767429760,215,0 +170767429807,214,0 +170767429855,213,0 +170767429903,213,0 +170767429951,214,0 +170767430001,214,0 +170767430049,214,0 +170767430098,214,0 +170767430146,214,0 +170767430194,214,0 +170767430242,214,0 +170767430290,215,0 +170767430339,215,0 +170767430387,215,0 +170767430435,215,0 +170767430483,215,0 +170767430531,215,0 +170767430579,215,0 +170767430628,215,0 +170767430676,214,0 +170767430724,213,0 +170767430772,213,0 +170767430820,213,0 +170767430867,213,0 +170767430915,214,0 +170767430963,213,0 +170767431011,214,0 +170767431059,214,0 +170767431107,214,0 +170767431154,214,0 +170767431202,215,0 +170767431250,215,0 +170767431299,215,0 +170767431347,215,0 +170767431395,215,0 +170767431443,215,0 +170767431491,215,0 +170767431538,215,0 +170767431586,213,0 +170767431634,213,0 +170767431682,213,0 +170767431730,213,0 +170767431778,213,0 +170767431825,213,0 +170767431873,213,0 +170767431921,213,0 +170767431969,214,0 +170767432017,214,0 +170767432065,214,0 +170767432113,214,0 +170767432161,215,0 +170767432208,215,0 +170767432256,215,0 +170767432304,215,0 +170767432352,215,0 +170767432400,215,0 +170767432447,213,0 +170767432495,213,0 +170767432543,213,0 +170767432591,213,0 +170767432639,213,0 +170767432687,213,0 +170767432735,213,0 +170767432783,214,0 +170767432831,214,0 +170767432879,214,0 +170767432926,214,0 +170767432976,214,0 +170767433024,215,0 +170767433072,214,0 +170767433121,214,0 +170767433169,215,0 +170767433217,215,0 +170767433265,215,0 +170767433314,213,0 +170767433362,213,0 +170767433412,213,0 +170767433460,213,0 +170767433508,213,0 +170767433556,213,0 +170767433604,213,0 +170767433651,214,0 +170767433699,214,0 +170767433747,214,0 +170767433795,214,0 +170767433843,214,0 +170767433891,215,0 +170767433938,215,0 +170767433986,215,0 +170767434034,215,0 +170767434082,215,0 +170767434130,215,0 +170767434178,214,0 +170767434225,213,0 +170767434275,213,0 +170767434323,213,0 +170767434370,213,0 +170767434418,214,0 +170767434466,214,0 +170767434514,214,0 +170767434562,214,0 +170767434610,214,0 +170767434657,215,0 +170767434705,215,0 +170767434753,215,0 +170767434801,215,0 +170767434849,215,0 +170767434897,215,0 +170767434944,215,0 +170767434992,215,0 +170767435040,215,0 +170767435088,214,0 +170767435136,213,0 +170767435184,213,0 +170767435231,214,0 +170767435279,214,0 +170767435329,214,0 +170767435376,214,0 +170767435426,214,0 +170767435474,214,0 +170767435521,215,0 +170767435569,215,0 +170767435619,215,0 +170767435666,215,0 +170767435716,215,0 +170767435764,215,0 +170767435811,215,0 +170767435859,215,0 +170767435907,215,0 +170767435955,214,0 +170767436003,214,0 +170767436053,214,0 +170767436101,214,0 +170767436149,214,0 +170767436197,214,0 +170767436244,214,0 +170767436292,214,0 +170767436342,215,0 +170767436390,215,0 +170767436438,215,0 +170767436487,215,0 +170767436537,215,0 +170767436586,215,0 +170767436636,215,0 +170767436684,215,0 +170767436731,215,0 +170767436779,215,0 +170767436827,213,0 +170767436875,213,0 +170767436923,213,0 +170767436971,214,0 +170767437018,214,0 +170767437066,214,0 +170767437114,214,0 +170767437162,214,0 +170767437211,214,0 +170767437259,214,0 +170767437307,215,0 +170767437355,215,0 +170767437403,215,0 +170767437451,215,0 +170767437498,215,0 +170767437546,215,0 +170767437594,215,0 +170767437642,215,0 +170767437690,214,0 +170767437738,213,0 +170767437785,213,0 +170767437833,213,0 +170767437881,214,0 +170767437929,214,0 +170767437977,214,0 +170767438026,214,0 +170767438074,214,0 +170767438122,214,0 +170767438170,214,0 +170767438220,214,0 +170767438269,215,0 +170767438317,215,0 +170767438365,214,0 +170767438413,215,0 +170767438460,215,0 +170767438508,215,0 +170767438556,215,0 +170767438604,213,0 +170767438652,213,0 +170767438700,214,0 +170767438747,214,0 +170767438797,214,0 +170767438846,213,0 +170767438896,214,0 +170767438944,214,0 +170767438991,214,0 +170767439039,214,0 +170767439087,214,0 +170767439136,215,0 +170767439184,215,0 +170767439232,215,0 +170767439280,215,0 +170767439329,215,0 +170767439379,215,0 +170767439427,215,0 +170767439474,213,0 +170767439522,213,0 +170767439570,213,0 +170767439620,213,0 +170767439668,214,0 +170767439716,214,0 +170767439764,214,0 +170767439811,214,0 +170767439859,214,0 +170767439907,215,0 +170767439955,214,0 +170767440003,215,0 diff --git a/laser_value/0212-04.csv b/laser_value/0212-04.csv new file mode 100644 index 0000000..3c8f7f4 --- /dev/null +++ b/laser_value/0212-04.csv @@ -0,0 +1,7448 @@ +timestamp,laser_value,event +170767440051,215,0 +170767440099,215,0 +170767440148,215,0 +170767440196,215,0 +170767440244,215,0 +170767440293,215,0 +170767440341,213,0 +170767440389,213,0 +170767440437,213,0 +170767440485,213,0 +170767440533,214,0 +170767440580,214,0 +170767440630,214,0 +170767440678,214,0 +170767440725,214,0 +170767440773,215,0 +170767440823,215,0 +170767440872,215,0 +170767440921,215,0 +170767440969,215,0 +170767441017,215,0 +170767441065,215,0 +170767441114,215,0 +170767441164,215,0 +170767441212,213,0 +170767441260,213,0 +170767441307,214,0 +170767441355,213,0 +170767441403,214,0 +170767441451,214,0 +170767441499,214,0 +170767441547,214,0 +170767441595,214,0 +170767441642,215,0 +170767441690,214,0 +170767441740,215,0 +170767441788,215,0 +170767441835,215,0 +170767441885,215,0 +170767441933,215,0 +170767441981,215,0 +170767442029,215,0 +170767442077,215,0 +170767442124,213,0 +170767442172,213,0 +170767442220,213,0 +170767442268,214,0 +170767442318,214,0 +170767442366,214,0 +170767442414,214,0 +170767442463,214,0 +170767442511,214,0 +170767442559,215,0 +170767442609,215,0 +170767442657,215,0 +170767442706,215,0 +170767442754,215,0 +170767442802,215,0 +170767442850,215,0 +170767442898,215,0 +170767442945,215,0 +170767442993,213,0 +170767443043,213,0 +170767443091,213,0 +170767443138,214,0 +170767443186,214,0 +170767443234,214,0 +170767443282,214,0 +170767443330,214,0 +170767443377,214,0 +170767443425,215,0 +170767443473,215,0 +170767443521,215,0 +170767443569,215,0 +170767443616,215,0 +170767443664,215,0 +170767443712,215,0 +170767443760,215,0 +170767443808,215,0 +170767443856,214,0 +170767443903,213,0 +170767443951,213,0 +170767443999,214,0 +170767444047,213,0 +170767444095,214,0 +170767444143,215,0 +170767444190,214,0 +170767444238,214,0 +170767444286,214,0 +170767444336,214,0 +170767444385,215,0 +170767444434,215,0 +170767444482,215,0 +170767444532,215,0 +170767444581,215,0 +170767444629,215,0 +170767444677,215,0 +170767444727,214,0 +170767444776,213,0 +170767444824,214,0 +170767444872,214,0 +170767444922,214,0 +170767444970,214,0 +170767445020,215,0 +170767445069,214,0 +170767445117,215,0 +170767445165,214,0 +170767445213,215,0 +170767445262,215,0 +170767445310,215,0 +170767445358,215,0 +170767445406,215,0 +170767445454,215,0 +170767445503,215,0 +170767445551,215,0 +170767445599,214,0 +170767445649,213,0 +170767445698,213,0 +170767445748,214,0 +170767445797,214,0 +170767445845,214,0 +170767445893,214,0 +170767445943,214,0 +170767445992,214,0 +170767446040,215,0 +170767446090,215,0 +170767446138,215,0 +170767446187,215,0 +170767446237,215,0 +170767446285,215,0 +170767446334,215,0 +170767446382,215,0 +170767446432,215,0 +170767446481,213,0 +170767446529,213,0 +170767446577,213,0 +170767446625,214,0 +170767446673,214,0 +170767446721,214,0 +170767446771,214,0 +170767446819,214,0 +170767446867,215,0 +170767446915,214,0 +170767446964,215,0 +170767447012,215,0 +170767447060,215,0 +170767447108,215,0 +170767447156,215,0 +170767447204,215,0 +170767447252,215,0 +170767447299,215,0 +170767447347,214,0 +170767447395,213,0 +170767447443,213,0 +170767447491,214,0 +170767447539,214,0 +170767447586,214,0 +170767447634,214,0 +170767447682,214,0 +170767447730,214,0 +170767447778,215,0 +170767447826,214,0 +170767447874,215,0 +170767447923,215,0 +170767447971,215,0 +170767448019,215,0 +170767448067,215,0 +170767448114,215,0 +170767448162,215,0 +170767448210,215,0 +170767448259,213,0 +170767448307,213,0 +170767448355,213,0 +170767448403,213,0 +170767448452,213,0 +170767448500,214,0 +170767448548,214,0 +170767448596,214,0 +170767448644,214,0 +170767448692,214,0 +170767448740,215,0 +170767448787,215,0 +170767448835,215,0 +170767448885,215,0 +170767448932,215,0 +170767448980,215,0 +170767449028,215,0 +170767449078,215,0 +170767449126,213,0 +170767449173,213,0 +170767449221,213,0 +170767449269,213,0 +170767449317,214,0 +170767449367,214,0 +170767449415,214,0 +170767449464,214,0 +170767449513,214,0 +170767449563,214,0 +170767449611,214,0 +170767449659,215,0 +170767449707,215,0 +170767449756,215,0 +170767449806,215,0 +170767449855,215,0 +170767449905,215,0 +170767449954,215,0 +170767450004,213,0 +170767450052,213,0 +170767450101,213,0 +170767450151,213,0 +170767450198,213,0 +170767450246,214,0 +170767450296,214,0 +170767450345,214,0 +170767450393,214,0 +170767450441,214,0 +170767450489,214,0 +170767450537,215,0 +170767450585,215,0 +170767450632,215,0 +170767450680,215,0 +170767450728,215,0 +170767450778,215,0 +170767450825,215,0 +170767450873,213,0 +170767450921,213,0 +170767450969,213,0 +170767451017,213,0 +170767451065,214,0 +170767451112,214,0 +170767451160,214,0 +170767451208,214,0 +170767451256,214,0 +170767451304,214,0 +170767451352,214,0 +170767451399,215,0 +170767451447,215,0 +170767451495,215,0 +170767451543,215,0 +170767451591,215,0 +170767451638,215,0 +170767451686,215,0 +170767451734,213,0 +170767451782,213,0 +170767451830,213,0 +170767451878,213,0 +170767451925,213,0 +170767451973,213,0 +170767452021,213,0 +170767452069,213,0 +170767452117,214,0 +170767452166,214,0 +170767452214,214,0 +170767452263,214,0 +170767452311,214,0 +170767452361,215,0 +170767452410,215,0 +170767452458,215,0 +170767452505,215,0 +170767452555,215,0 +170767452603,214,0 +170767452652,213,0 +170767452702,213,0 +170767452751,213,0 +170767452799,213,0 +170767452847,213,0 +170767452895,214,0 +170767452943,214,0 +170767452991,214,0 +170767453039,214,0 +170767453089,214,0 +170767453138,214,0 +170767453186,215,0 +170767453235,215,0 +170767453285,215,0 +170767453333,215,0 +170767453382,215,0 +170767453430,215,0 +170767453480,213,0 +170767453528,213,0 +170767453575,213,0 +170767453623,213,0 +170767453671,213,0 +170767453721,214,0 +170767453769,214,0 +170767453817,214,0 +170767453866,214,0 +170767453914,214,0 +170767453962,214,0 +170767454010,215,0 +170767454058,215,0 +170767454105,215,0 +170767454153,215,0 +170767454201,215,0 +170767454249,215,0 +170767454297,215,0 +170767454346,215,0 +170767454394,213,0 +170767454442,213,0 +170767454489,214,0 +170767454537,214,0 +170767454585,214,0 +170767454633,214,0 +170767454681,214,0 +170767454729,214,0 +170767454776,214,0 +170767454824,214,0 +170767454872,214,0 +170767454920,215,0 +170767454968,215,0 +170767455016,215,0 +170767455064,215,0 +170767455112,215,0 +170767455160,214,0 +170767455207,215,0 +170767455255,214,0 +170767455305,213,0 +170767455353,213,0 +170767455401,214,0 +170767455450,214,0 +170767455498,214,0 +170767455547,214,0 +170767455595,214,0 +170767455643,214,0 +170767455691,214,0 +170767455741,214,0 +170767455790,214,0 +170767455838,215,0 +170767455886,215,0 +170767455934,215,0 +170767455982,215,0 +170767456030,215,0 +170767456078,215,0 +170767456128,214,0 +170767456175,214,0 +170767456224,214,0 +170767456271,214,0 +170767456319,214,0 +170767456369,214,0 +170767456417,214,0 +170767456466,214,0 +170767456514,214,0 +170767456562,214,0 +170767456612,215,0 +170767456659,215,0 +170767456709,215,0 +170767456757,215,0 +170767456805,214,0 +170767456854,215,0 +170767456902,215,0 +170767456952,215,0 +170767457001,214,0 +170767457051,214,0 +170767457098,214,0 +170767457146,214,0 +170767457194,214,0 +170767457242,214,0 +170767457290,214,0 +170767457338,214,0 +170767457387,214,0 +170767457437,214,0 +170767457485,215,0 +170767457534,215,0 +170767457582,215,0 +170767457630,215,0 +170767457680,215,0 +170767457728,215,0 +170767457777,215,0 +170767457825,215,0 +170767457875,214,0 +170767457924,214,0 +170767457972,214,0 +170767458021,215,0 +170767458069,215,0 +170767458117,214,0 +170767458165,215,0 +170767458215,215,0 +170767458263,215,0 +170767458310,215,0 +170767458358,215,0 +170767458406,215,0 +170767458456,215,0 +170767458505,215,0 +170767458553,215,0 +170767458601,215,0 +170767458649,215,0 +170767458697,215,0 +170767458747,215,0 +170767458796,215,0 +170767458844,215,0 +170767458892,215,0 +170767458939,215,0 +170767458987,215,0 +170767459037,215,0 +170767459085,215,0 +170767459133,215,0 +170767459180,215,0 +170767459228,215,0 +170767459276,216,0 +170767459324,215,0 +170767459372,216,0 +170767459420,215,0 +170767459468,215,0 +170767459517,215,0 +170767459565,215,0 +170767459613,214,0 +170767459663,214,0 +170767459711,214,0 +170767459759,215,0 +170767459806,214,0 +170767459854,215,0 +170767459904,215,0 +170767459952,215,0 +170767460001,215,0 +170767460049,215,0 +170767460097,215,0 +170767460147,215,0 +170767460196,215,0 +170767460244,215,0 +170767460292,215,0 +170767460340,216,0 +170767460388,215,0 +170767460436,215,0 +170767460484,215,0 +170767460532,214,0 +170767460580,214,0 +170767460629,214,0 +170767460677,214,0 +170767460725,214,0 +170767460773,214,0 +170767460823,215,0 +170767460872,215,0 +170767460920,215,0 +170767460970,215,0 +170767461018,215,0 +170767461065,215,0 +170767461115,215,0 +170767461163,216,0 +170767461211,215,0 +170767461259,215,0 +170767461306,216,0 +170767461356,215,0 +170767461404,213,0 +170767461451,214,0 +170767461499,213,0 +170767461547,214,0 +170767461595,214,0 +170767461643,214,0 +170767461691,214,0 +170767461739,214,0 +170767461786,214,0 +170767461834,215,0 +170767461882,215,0 +170767461930,215,0 +170767461979,215,0 +170767462027,215,0 +170767462075,215,0 +170767462123,215,0 +170767462171,215,0 +170767462219,215,0 +170767462266,213,0 +170767462314,213,0 +170767462362,213,0 +170767462410,214,0 +170767462458,214,0 +170767462506,214,0 +170767462553,214,0 +170767462601,214,0 +170767462651,215,0 +170767462700,215,0 +170767462748,215,0 +170767462798,215,0 +170767462846,215,0 +170767462894,215,0 +170767462942,215,0 +170767462990,215,0 +170767463038,215,0 +170767463086,215,0 +170767463133,214,0 +170767463183,213,0 +170767463233,213,0 +170767463280,214,0 +170767463328,214,0 +170767463376,214,0 +170767463424,214,0 +170767463472,214,0 +170767463521,214,0 +170767463569,214,0 +170767463617,215,0 +170767463666,215,0 +170767463714,215,0 +170767463762,215,0 +170767463812,215,0 +170767463860,215,0 +170767463907,215,0 +170767463955,215,0 +170767464003,214,0 +170767464053,213,0 +170767464101,213,0 +170767464149,213,0 +170767464197,214,0 +170767464245,214,0 +170767464294,214,0 +170767464342,214,0 +170767464392,214,0 +170767464441,214,0 +170767464489,214,0 +170767464539,215,0 +170767464586,215,0 +170767464634,215,0 +170767464682,215,0 +170767464730,215,0 +170767464780,215,0 +170767464828,215,0 +170767464876,215,0 +170767464923,213,0 +170767464973,213,0 +170767465022,213,0 +170767465072,213,0 +170767465120,214,0 +170767465168,214,0 +170767465217,214,0 +170767465267,214,0 +170767465316,214,0 +170767465364,214,0 +170767465414,215,0 +170767465463,215,0 +170767465511,215,0 +170767465559,215,0 +170767465607,215,0 +170767465655,215,0 +170767465703,215,0 +170767465751,215,0 +170767465800,213,0 +170767465850,213,0 +170767465899,213,0 +170767465949,213,0 +170767465997,213,0 +170767466045,214,0 +170767466093,214,0 +170767466142,214,0 +170767466190,214,0 +170767466238,214,0 +170767466286,214,0 +170767466335,215,0 +170767466385,214,0 +170767466433,215,0 +170767466481,215,0 +170767466530,215,0 +170767466578,215,0 +170767466628,215,0 +170767466676,213,0 +170767466725,213,0 +170767466773,213,0 +170767466821,214,0 +170767466869,213,0 +170767466917,213,0 +170767466966,213,0 +170767467014,214,0 +170767467064,214,0 +170767467113,214,0 +170767467163,215,0 +170767467211,215,0 +170767467260,216,0 +170767467308,215,0 +170767467356,215,0 +170767467404,215,0 +170767467452,215,0 +170767467501,215,0 +170767467549,213,0 +170767467597,213,0 +170767467645,213,0 +170767467693,213,0 +170767467741,214,0 +170767467789,214,0 +170767467837,214,0 +170767467885,214,0 +170767467933,214,0 +170767467981,214,0 +170767468030,214,0 +170767468080,214,0 +170767468129,214,0 +170767468179,215,0 +170767468227,215,0 +170767468274,215,0 +170767468322,215,0 +170767468370,215,0 +170767468418,213,0 +170767468466,213,0 +170767468513,213,0 +170767468561,213,0 +170767468609,214,0 +170767468657,214,0 +170767468705,214,0 +170767468754,214,0 +170767468803,214,0 +170767468851,214,0 +170767468899,214,0 +170767468947,214,0 +170767468995,215,0 +170767469043,215,0 +170767469093,215,0 +170767469141,215,0 +170767469188,215,0 +170767469236,215,0 +170767469286,214,0 +170767469335,213,0 +170767469385,213,0 +170767469433,213,0 +170767469481,214,0 +170767469529,213,0 +170767469578,214,0 +170767469626,214,0 +170767469674,214,0 +170767469722,214,0 +170767469770,214,0 +170767469818,215,0 +170767469866,214,0 +170767469913,215,0 +170767469963,215,0 +170767470012,215,0 +170767470060,215,0 +170767470110,215,0 +170767470159,213,0 +170767470207,213,0 +170767470255,213,0 +170767470303,213,0 +170767470351,213,0 +170767470399,214,0 +170767470448,214,0 +170767470498,214,0 +170767470546,214,0 +170767470595,214,0 +170767470643,215,0 +170767470693,215,0 +170767470741,215,0 +170767470790,215,0 +170767470838,215,0 +170767470886,215,0 +170767470934,215,0 +170767470982,215,0 +170767471031,213,0 +170767471079,213,0 +170767471127,213,0 +170767471177,213,0 +170767471226,213,0 +170767471276,214,0 +170767471325,213,0 +170767471373,214,0 +170767471421,214,0 +170767471470,214,0 +170767471518,214,0 +170767471568,214,0 +170767471617,214,0 +170767471667,214,0 +170767471715,215,0 +170767471764,215,0 +170767471812,215,0 +170767471860,215,0 +170767471908,213,0 +170767471958,213,0 +170767472006,213,0 +170767472055,213,0 +170767472105,213,0 +170767472154,213,0 +170767472202,213,0 +170767472250,214,0 +170767472298,214,0 +170767472346,214,0 +170767472394,214,0 +170767472444,214,0 +170767472492,214,0 +170767472540,215,0 +170767472589,215,0 +170767472639,215,0 +170767472687,215,0 +170767472735,215,0 +170767472783,215,0 +170767472831,215,0 +170767472879,215,0 +170767472927,216,0 +170767472975,216,0 +170767473023,215,0 +170767473071,215,0 +170767473118,215,0 +170767473166,215,0 +170767473214,214,0 +170767473264,214,0 +170767473313,214,0 +170767473363,214,0 +170767473412,214,0 +170767473460,215,0 +170767473508,214,0 +170767473556,214,0 +170767473606,215,0 +170767473653,215,0 +170767473703,215,0 +170767473753,215,0 +170767473800,215,0 +170767473848,215,0 +170767473898,215,0 +170767473946,215,0 +170767473995,215,0 +170767474043,215,0 +170767474091,214,0 +170767474139,214,0 +170767474187,214,0 +170767474235,214,0 +170767474283,214,0 +170767474331,214,0 +170767474379,214,0 +170767474427,214,0 +170767474475,215,0 +170767474523,215,0 +170767474572,215,0 +170767474620,215,0 +170767474668,215,0 +170767474716,215,0 +170767474764,215,0 +170767474812,215,0 +170767474860,215,0 +170767474909,215,0 +170767474959,215,0 +170767475008,214,0 +170767475056,214,0 +170767475106,214,0 +170767475154,214,0 +170767475203,214,0 +170767475251,214,0 +170767475299,214,0 +170767475347,215,0 +170767475396,215,0 +170767475444,215,0 +170767475492,215,0 +170767475542,215,0 +170767475589,215,0 +170767475639,215,0 +170767475687,215,0 +170767475736,215,0 +170767475784,215,0 +170767475832,215,0 +170767475882,213,0 +170767475930,213,0 +170767475979,214,0 +170767476027,214,0 +170767476077,214,0 +170767476125,214,0 +170767476173,214,0 +170767476221,215,0 +170767476268,214,0 +170767476316,214,0 +170767476366,215,0 +170767476415,215,0 +170767476465,215,0 +170767476514,215,0 +170767476564,215,0 +170767476612,215,0 +170767476661,215,0 +170767476711,215,0 +170767476759,214,0 +170767476807,213,0 +170767476854,213,0 +170767476902,214,0 +170767476950,214,0 +170767477000,214,0 +170767477049,215,0 +170767477097,214,0 +170767477145,214,0 +170767477195,214,0 +170767477244,215,0 +170767477292,215,0 +170767477340,215,0 +170767477390,215,0 +170767477437,215,0 +170767477487,215,0 +170767477535,215,0 +170767477584,215,0 +170767477634,213,0 +170767477682,213,0 +170767477730,214,0 +170767477778,214,0 +170767477827,214,0 +170767477875,214,0 +170767477923,214,0 +170767477971,214,0 +170767478019,215,0 +170767478067,215,0 +170767478115,215,0 +170767478162,215,0 +170767478210,215,0 +170767478258,215,0 +170767478306,215,0 +170767478354,215,0 +170767478402,215,0 +170767478449,215,0 +170767478497,214,0 +170767478547,213,0 +170767478595,214,0 +170767478643,214,0 +170767478691,214,0 +170767478739,214,0 +170767478788,214,0 +170767478836,215,0 +170767478884,215,0 +170767478932,215,0 +170767478981,215,0 +170767479029,215,0 +170767479079,215,0 +170767479128,215,0 +170767479178,215,0 +170767479226,215,0 +170767479274,215,0 +170767479323,215,0 +170767479373,214,0 +170767479421,213,0 +170767479471,213,0 +170767479518,214,0 +170767479566,214,0 +170767479614,214,0 +170767479662,214,0 +170767479710,214,0 +170767479758,214,0 +170767479806,214,0 +170767479854,214,0 +170767479904,214,0 +170767479953,215,0 +170767480001,215,0 +170767480049,215,0 +170767480097,215,0 +170767480146,215,0 +170767480196,215,0 +170767480244,214,0 +170767480292,213,0 +170767480340,213,0 +170767480389,214,0 +170767480437,214,0 +170767480485,214,0 +170767480533,214,0 +170767480583,214,0 +170767480631,214,0 +170767480680,214,0 +170767480728,214,0 +170767480776,215,0 +170767480824,215,0 +170767480872,215,0 +170767480920,215,0 +170767480968,215,0 +170767481017,215,0 +170767481067,215,0 +170767481115,215,0 +170767481163,214,0 +170767481211,214,0 +170767481259,214,0 +170767481307,214,0 +170767481355,214,0 +170767481403,214,0 +170767481452,215,0 +170767481502,214,0 +170767481550,215,0 +170767481598,215,0 +170767481647,215,0 +170767481695,215,0 +170767481743,215,0 +170767481793,215,0 +170767481841,215,0 +170767481888,215,0 +170767481938,215,0 +170767481987,214,0 +170767482035,213,0 +170767482083,213,0 +170767482133,214,0 +170767482181,214,0 +170767482230,214,0 +170767482278,214,0 +170767482326,214,0 +170767482376,214,0 +170767482424,215,0 +170767482473,215,0 +170767482521,215,0 +170767482571,215,0 +170767482619,215,0 +170767482668,215,0 +170767482718,215,0 +170767482767,215,0 +170767482815,215,0 +170767482863,215,0 +170767482911,213,0 +170767482959,213,0 +170767483009,213,0 +170767483058,213,0 +170767483108,214,0 +170767483155,214,0 +170767483205,214,0 +170767483255,214,0 +170767483303,214,0 +170767483350,215,0 +170767483398,215,0 +170767483448,214,0 +170767483496,215,0 +170767483545,215,0 +170767483593,215,0 +170767483641,215,0 +170767483689,215,0 +170767483739,214,0 +170767483788,213,0 +170767483836,213,0 +170767483884,213,0 +170767483933,214,0 +170767483981,213,0 +170767484031,214,0 +170767484079,214,0 +170767484127,214,0 +170767484176,214,0 +170767484224,214,0 +170767484274,215,0 +170767484322,214,0 +170767484369,215,0 +170767484417,215,0 +170767484467,215,0 +170767484515,215,0 +170767484564,215,0 +170767484612,215,0 +170767484662,213,0 +170767484710,213,0 +170767484759,213,0 +170767484807,213,0 +170767484855,213,0 +170767484905,214,0 +170767484954,214,0 +170767485002,214,0 +170767485050,214,0 +170767485098,214,0 +170767485146,214,0 +170767485194,214,0 +170767485243,215,0 +170767485291,215,0 +170767485339,215,0 +170767485389,215,0 +170767485437,215,0 +170767485485,215,0 +170767485533,213,0 +170767485581,213,0 +170767485628,213,0 +170767485676,213,0 +170767485724,213,0 +170767485772,214,0 +170767485821,213,0 +170767485869,214,0 +170767485917,214,0 +170767485965,214,0 +170767486013,214,0 +170767486063,215,0 +170767486112,215,0 +170767486160,215,0 +170767486208,215,0 +170767486256,215,0 +170767486304,215,0 +170767486352,215,0 +170767486400,213,0 +170767486449,213,0 +170767486499,213,0 +170767486548,213,0 +170767486596,213,0 +170767486646,213,0 +170767486694,214,0 +170767486743,214,0 +170767486791,214,0 +170767486839,214,0 +170767486889,214,0 +170767486937,214,0 +170767486984,215,0 +170767487034,215,0 +170767487082,215,0 +170767487130,215,0 +170767487179,215,0 +170767487229,215,0 +170767487277,213,0 +170767487324,213,0 +170767487372,213,0 +170767487422,213,0 +170767487471,214,0 +170767487521,213,0 +170767487570,214,0 +170767487620,214,0 +170767487669,214,0 +170767487719,214,0 +170767487768,215,0 +170767487818,215,0 +170767487866,215,0 +170767487914,215,0 +170767487962,215,0 +170767488010,215,0 +170767488058,215,0 +170767488106,215,0 +170767488154,214,0 +170767488202,213,0 +170767488250,213,0 +170767488297,213,0 +170767488345,213,0 +170767488393,213,0 +170767488441,214,0 +170767488489,214,0 +170767488537,214,0 +170767488585,214,0 +170767488633,214,0 +170767488682,215,0 +170767488730,215,0 +170767488779,215,0 +170767488827,215,0 +170767488875,215,0 +170767488923,215,0 +170767488971,215,0 +170767489019,215,0 +170767489067,213,0 +170767489114,213,0 +170767489162,213,0 +170767489210,213,0 +170767489258,214,0 +170767489306,214,0 +170767489354,214,0 +170767489402,214,0 +170767489449,214,0 +170767489497,214,0 +170767489545,215,0 +170767489593,214,0 +170767489641,215,0 +170767489689,215,0 +170767489737,215,0 +170767489784,215,0 +170767489832,215,0 +170767489880,215,0 +170767489928,213,0 +170767489976,213,0 +170767490024,213,0 +170767490072,214,0 +170767490120,214,0 +170767490168,214,0 +170767490216,214,0 +170767490263,214,0 +170767490311,214,0 +170767490359,214,0 +170767490409,214,0 +170767490457,214,0 +170767490506,215,0 +170767490554,215,0 +170767490602,215,0 +170767490651,215,0 +170767490699,215,0 +170767490749,215,0 +170767490797,213,0 +170767490846,213,0 +170767490894,213,0 +170767490942,213,0 +170767490990,214,0 +170767491038,214,0 +170767491086,214,0 +170767491134,214,0 +170767491183,214,0 +170767491231,214,0 +170767491279,214,0 +170767491327,215,0 +170767491376,214,0 +170767491424,215,0 +170767491472,215,0 +170767491520,215,0 +170767491569,215,0 +170767491617,215,0 +170767491665,215,0 +170767491713,213,0 +170767491761,214,0 +170767491811,214,0 +170767491860,214,0 +170767491908,214,0 +170767491956,214,0 +170767492005,214,0 +170767492055,215,0 +170767492104,215,0 +170767492152,215,0 +170767492202,215,0 +170767492251,215,0 +170767492301,215,0 +170767492350,215,0 +170767492398,215,0 +170767492446,215,0 +170767492496,215,0 +170767492543,214,0 +170767492593,214,0 +170767492641,214,0 +170767492689,215,0 +170767492737,214,0 +170767492785,215,0 +170767492833,215,0 +170767492881,215,0 +170767492930,215,0 +170767492978,215,0 +170767493027,215,0 +170767493075,215,0 +170767493125,215,0 +170767493173,215,0 +170767493222,215,0 +170767493270,215,0 +170767493318,215,0 +170767493366,215,0 +170767493414,214,0 +170767493462,214,0 +170767493510,214,0 +170767493559,214,0 +170767493607,214,0 +170767493655,214,0 +170767493705,214,0 +170767493753,214,0 +170767493801,215,0 +170767493849,215,0 +170767493896,215,0 +170767493944,215,0 +170767493994,215,0 +170767494042,215,0 +170767494090,215,0 +170767494138,215,0 +170767494187,215,0 +170767494235,215,0 +170767494285,215,0 +170767494334,214,0 +170767494382,213,0 +170767494432,214,0 +170767494479,214,0 +170767494529,214,0 +170767494577,214,0 +170767494625,214,0 +170767494673,214,0 +170767494721,214,0 +170767494769,214,0 +170767494817,215,0 +170767494865,215,0 +170767494914,215,0 +170767494962,215,0 +170767495010,215,0 +170767495058,215,0 +170767495108,215,0 +170767495157,215,0 +170767495207,213,0 +170767495254,213,0 +170767495304,213,0 +170767495352,214,0 +170767495401,214,0 +170767495449,214,0 +170767495499,214,0 +170767495547,214,0 +170767495596,214,0 +170767495644,214,0 +170767495692,214,0 +170767495740,215,0 +170767495788,215,0 +170767495837,215,0 +170767495885,215,0 +170767495933,215,0 +170767495981,215,0 +170767496029,215,0 +170767496078,213,0 +170767496126,213,0 +170767496176,213,0 +170767496224,213,0 +170767496273,214,0 +170767496323,214,0 +170767496372,214,0 +170767496422,214,0 +170767496470,214,0 +170767496519,214,0 +170767496567,215,0 +170767496615,215,0 +170767496665,215,0 +170767496713,215,0 +170767496761,215,0 +170767496810,215,0 +170767496858,215,0 +170767496906,215,0 +170767496955,214,0 +170767497005,213,0 +170767497053,213,0 +170767497101,213,0 +170767497149,213,0 +170767497196,214,0 +170767497244,214,0 +170767497292,214,0 +170767497340,214,0 +170767497390,214,0 +170767497438,215,0 +170767497486,215,0 +170767497534,215,0 +170767497581,215,0 +170767497629,215,0 +170767497677,215,0 +170767497725,215,0 +170767497773,215,0 +170767497821,214,0 +170767497869,213,0 +170767497916,213,0 +170767497964,213,0 +170767498012,214,0 +170767498060,214,0 +170767498108,214,0 +170767498156,214,0 +170767498204,214,0 +170767498251,214,0 +170767498301,214,0 +170767498350,214,0 +170767498398,215,0 +170767498446,215,0 +170767498494,215,0 +170767498542,215,0 +170767498590,214,0 +170767498639,215,0 +170767498689,213,0 +170767498738,213,0 +170767498786,213,0 +170767498834,213,0 +170767498883,213,0 +170767498931,214,0 +170767498979,213,0 +170767499029,214,0 +170767499078,214,0 +170767499128,214,0 +170767499176,214,0 +170767499224,214,0 +170767499272,215,0 +170767499321,215,0 +170767499371,215,0 +170767499419,214,0 +170767499468,214,0 +170767499516,215,0 +170767499564,214,0 +170767499612,213,0 +170767499660,213,0 +170767499708,214,0 +170767499758,214,0 +170767499806,214,0 +170767499854,214,0 +170767499902,214,0 +170767499949,214,0 +170767499999,215,0 +170767500048,215,0 +170767500098,215,0 +170767500146,215,0 +170767500194,215,0 +170767500242,215,0 +170767500290,215,0 +170767500338,215,0 +170767500386,215,0 +170767500435,215,0 +170767500483,213,0 +170767500533,214,0 +170767500580,214,0 +170767500628,214,0 +170767500678,214,0 +170767500726,214,0 +170767500774,214,0 +170767500822,214,0 +170767500869,214,0 +170767500917,214,0 +170767500965,214,0 +170767501013,214,0 +170767501061,215,0 +170767501109,215,0 +170767501157,215,0 +170767501206,215,0 +170767501256,215,0 +170767501304,214,0 +170767501352,214,0 +170767501400,213,0 +170767501449,214,0 +170767501497,214,0 +170767501545,214,0 +170767501593,214,0 +170767501642,214,0 +170767501692,214,0 +170767501742,214,0 +170767501789,214,0 +170767501837,215,0 +170767501887,215,0 +170767501935,215,0 +170767501983,215,0 +170767502032,215,0 +170767502082,215,0 +170767502130,215,0 +170767502179,215,0 +170767502227,214,0 +170767502275,214,0 +170767502323,214,0 +170767502371,214,0 +170767502418,214,0 +170767502466,214,0 +170767502516,214,0 +170767502564,214,0 +170767502612,214,0 +170767502661,215,0 +170767502711,214,0 +170767502760,215,0 +170767502808,215,0 +170767502856,215,0 +170767502904,215,0 +170767502952,215,0 +170767503000,215,0 +170767503048,215,0 +170767503098,214,0 +170767503146,214,0 +170767503193,214,0 +170767503241,214,0 +170767503289,215,0 +170767503337,215,0 +170767503387,214,0 +170767503436,215,0 +170767503486,215,0 +170767503534,216,0 +170767503582,215,0 +170767503629,215,0 +170767503677,215,0 +170767503725,215,0 +170767503775,215,0 +170767503823,215,0 +170767503870,215,0 +170767503918,215,0 +170767503968,214,0 +170767504016,214,0 +170767504065,214,0 +170767504113,214,0 +170767504161,215,0 +170767504211,214,0 +170767504259,215,0 +170767504308,215,0 +170767504358,215,0 +170767504407,215,0 +170767504455,215,0 +170767504503,215,0 +170767504553,215,0 +170767504601,215,0 +170767504650,215,0 +170767504698,215,0 +170767504746,215,0 +170767504795,215,0 +170767504843,214,0 +170767504891,213,0 +170767504939,213,0 +170767504987,214,0 +170767505035,213,0 +170767505083,214,0 +170767505131,214,0 +170767505180,214,0 +170767505230,215,0 +170767505278,214,0 +170767505326,215,0 +170767505374,215,0 +170767505422,215,0 +170767505471,215,0 +170767505521,215,0 +170767505568,215,0 +170767505618,215,0 +170767505666,215,0 +170767505714,214,0 +170767505763,213,0 +170767505811,213,0 +170767505861,213,0 +170767505910,214,0 +170767505958,214,0 +170767506008,214,0 +170767506056,214,0 +170767506105,214,0 +170767506153,214,0 +170767506201,214,0 +170767506251,215,0 +170767506299,215,0 +170767506347,215,0 +170767506394,215,0 +170767506442,215,0 +170767506490,215,0 +170767506538,215,0 +170767506588,214,0 +170767506637,213,0 +170767506687,213,0 +170767506736,214,0 +170767506784,214,0 +170767506832,214,0 +170767506880,214,0 +170767506928,214,0 +170767506976,214,0 +170767507025,214,0 +170767507073,214,0 +170767507121,215,0 +170767507169,215,0 +170767507218,215,0 +170767507266,215,0 +170767507316,215,0 +170767507365,215,0 +170767507413,215,0 +170767507462,214,0 +170767507510,213,0 +170767507560,213,0 +170767507609,213,0 +170767507657,214,0 +170767507705,214,0 +170767507754,214,0 +170767507804,214,0 +170767507852,214,0 +170767507900,214,0 +170767507948,214,0 +170767507996,215,0 +170767508044,214,0 +170767508091,215,0 +170767508139,215,0 +170767508189,215,0 +170767508237,215,0 +170767508285,216,0 +170767508333,215,0 +170767508382,213,0 +170767508430,213,0 +170767508478,213,0 +170767508526,213,0 +170767508574,213,0 +170767508623,214,0 +170767508673,214,0 +170767508722,214,0 +170767508772,214,0 +170767508821,214,0 +170767508871,214,0 +170767508919,215,0 +170767508966,215,0 +170767509014,215,0 +170767509064,215,0 +170767509112,215,0 +170767509160,215,0 +170767509207,215,0 +170767509255,213,0 +170767509303,213,0 +170767509353,213,0 +170767509402,213,0 +170767509450,213,0 +170767509498,213,0 +170767509546,213,0 +170767509594,213,0 +170767509642,214,0 +170767509690,214,0 +170767509739,214,0 +170767509789,214,0 +170767509837,215,0 +170767509884,215,0 +170767509932,214,0 +170767509980,215,0 +170767510028,215,0 +170767510076,215,0 +170767510126,213,0 +170767510175,213,0 +170767510223,213,0 +170767510271,213,0 +170767510319,213,0 +170767510367,214,0 +170767510417,214,0 +170767510466,214,0 +170767510514,214,0 +170767510562,214,0 +170767510610,214,0 +170767510658,214,0 +170767510706,215,0 +170767510754,215,0 +170767510802,215,0 +170767510851,215,0 +170767510899,215,0 +170767510947,215,0 +170767510997,213,0 +170767511045,213,0 +170767511093,213,0 +170767511141,214,0 +170767511189,214,0 +170767511237,214,0 +170767511285,214,0 +170767511332,214,0 +170767511380,215,0 +170767511428,215,0 +170767511476,215,0 +170767511524,215,0 +170767511572,215,0 +170767511622,215,0 +170767511670,215,0 +170767511718,216,0 +170767511765,216,0 +170767511813,215,0 +170767511861,214,0 +170767511909,214,0 +170767511957,214,0 +170767512007,214,0 +170767512056,214,0 +170767512106,214,0 +170767512153,214,0 +170767512201,214,0 +170767512251,214,0 +170767512300,215,0 +170767512348,215,0 +170767512396,215,0 +170767512444,215,0 +170767512494,215,0 +170767512543,215,0 +170767512593,215,0 +170767512641,215,0 +170767512689,215,0 +170767512737,214,0 +170767512785,214,0 +170767512834,214,0 +170767512884,214,0 +170767512932,214,0 +170767512980,214,0 +170767513027,214,0 +170767513075,214,0 +170767513123,214,0 +170767513171,214,0 +170767513219,214,0 +170767513269,215,0 +170767513318,215,0 +170767513366,215,0 +170767513414,215,0 +170767513463,215,0 +170767513513,215,0 +170767513561,215,0 +170767513609,214,0 +170767513658,213,0 +170767513708,213,0 +170767513757,214,0 +170767513807,214,0 +170767513855,214,0 +170767513904,214,0 +170767513954,214,0 +170767514003,214,0 +170767514051,214,0 +170767514099,215,0 +170767514147,215,0 +170767514195,215,0 +170767514244,215,0 +170767514293,215,0 +170767514341,215,0 +170767514389,215,0 +170767514437,215,0 +170767514485,214,0 +170767514533,213,0 +170767514582,214,0 +170767514630,214,0 +170767514678,214,0 +170767514725,214,0 +170767514773,214,0 +170767514821,214,0 +170767514869,215,0 +170767514919,215,0 +170767514968,215,0 +170767515016,215,0 +170767515065,215,0 +170767515113,215,0 +170767515161,215,0 +170767515209,215,0 +170767515257,215,0 +170767515304,215,0 +170767515352,215,0 +170767515402,214,0 +170767515450,214,0 +170767515499,214,0 +170767515547,214,0 +170767515595,215,0 +170767515643,215,0 +170767515691,215,0 +170767515740,215,0 +170767515788,215,0 +170767515836,215,0 +170767515884,215,0 +170767515933,215,0 +170767515981,215,0 +170767516031,215,0 +170767516078,215,0 +170767516126,215,0 +170767516174,215,0 +170767516224,215,0 +170767516272,214,0 +170767516321,214,0 +170767516369,214,0 +170767516417,214,0 +170767516465,214,0 +170767516513,215,0 +170767516561,215,0 +170767516610,215,0 +170767516658,215,0 +170767516706,216,0 +170767516754,216,0 +170767516804,215,0 +170767516852,216,0 +170767516901,216,0 +170767516949,215,0 +170767516999,215,0 +170767517046,215,0 +170767517094,215,0 +170767517144,214,0 +170767517193,214,0 +170767517243,214,0 +170767517291,215,0 +170767517339,214,0 +170767517387,215,0 +170767517436,215,0 +170767517484,215,0 +170767517534,215,0 +170767517583,215,0 +170767517633,215,0 +170767517682,215,0 +170767517730,216,0 +170767517778,216,0 +170767517828,215,0 +170767517876,215,0 +170767517924,215,0 +170767517971,215,0 +170767518021,214,0 +170767518069,214,0 +170767518117,214,0 +170767518165,215,0 +170767518213,215,0 +170767518262,215,0 +170767518310,215,0 +170767518360,215,0 +170767518408,215,0 +170767518457,215,0 +170767518505,216,0 +170767518553,215,0 +170767518602,215,0 +170767518650,215,0 +170767518700,216,0 +170767518748,215,0 +170767518795,215,0 +170767518843,215,0 +170767518893,215,0 +170767518941,214,0 +170767518989,214,0 +170767519038,214,0 +170767519086,214,0 +170767519136,215,0 +170767519184,215,0 +170767519232,215,0 +170767519280,215,0 +170767519327,215,0 +170767519375,215,0 +170767519423,215,0 +170767519471,216,0 +170767519519,215,0 +170767519568,215,0 +170767519616,215,0 +170767519664,215,0 +170767519714,215,0 +170767519763,214,0 +170767519811,214,0 +170767519859,214,0 +170767519909,214,0 +170767519958,214,0 +170767520008,214,0 +170767520057,214,0 +170767520107,215,0 +170767520155,215,0 +170767520203,215,0 +170767520250,215,0 +170767520298,215,0 +170767520346,215,0 +170767520394,215,0 +170767520442,215,0 +170767520492,215,0 +170767520540,215,0 +170767520589,215,0 +170767520637,214,0 +170767520685,213,0 +170767520733,213,0 +170767520783,213,0 +170767520832,213,0 +170767520880,214,0 +170767520928,214,0 +170767520976,214,0 +170767521024,214,0 +170767521072,214,0 +170767521121,214,0 +170767521171,215,0 +170767521219,215,0 +170767521268,215,0 +170767521318,215,0 +170767521367,215,0 +170767521417,215,0 +170767521465,215,0 +170767521514,214,0 +170767521562,213,0 +170767521612,213,0 +170767521659,213,0 +170767521707,213,0 +170767521757,213,0 +170767521805,213,0 +170767521854,214,0 +170767521902,214,0 +170767521950,214,0 +170767521998,214,0 +170767522048,214,0 +170767522097,215,0 +170767522147,215,0 +170767522195,215,0 +170767522244,215,0 +170767522292,215,0 +170767522342,215,0 +170767522391,214,0 +170767522439,213,0 +170767522487,213,0 +170767522535,213,0 +170767522583,214,0 +170767522630,214,0 +170767522678,214,0 +170767522726,214,0 +170767522774,214,0 +170767522822,214,0 +170767522870,215,0 +170767522917,215,0 +170767522965,215,0 +170767523013,215,0 +170767523061,215,0 +170767523109,215,0 +170767523157,215,0 +170767523207,215,0 +170767523255,215,0 +170767523303,213,0 +170767523351,213,0 +170767523398,213,0 +170767523446,214,0 +170767523494,214,0 +170767523542,214,0 +170767523590,214,0 +170767523638,214,0 +170767523687,214,0 +170767523737,214,0 +170767523785,215,0 +170767523833,215,0 +170767523881,215,0 +170767523929,215,0 +170767523977,215,0 +170767524026,215,0 +170767524074,215,0 +170767524122,215,0 +170767524170,213,0 +170767524218,213,0 +170767524268,213,0 +170767524317,213,0 +170767524367,213,0 +170767524414,214,0 +170767524462,214,0 +170767524510,214,0 +170767524558,214,0 +170767524606,214,0 +170767524655,214,0 +170767524703,214,0 +170767524751,214,0 +170767524799,214,0 +170767524849,215,0 +170767524897,215,0 +170767524945,215,0 +170767524994,215,0 +170767525042,214,0 +170767525092,213,0 +170767525140,213,0 +170767525189,214,0 +170767525237,214,0 +170767525285,214,0 +170767525335,214,0 +170767525382,214,0 +170767525430,214,0 +170767525480,215,0 +170767525528,215,0 +170767525576,215,0 +170767525625,215,0 +170767525673,215,0 +170767525721,215,0 +170767525769,215,0 +170767525817,215,0 +170767525867,215,0 +170767525915,214,0 +170767525964,214,0 +170767526014,214,0 +170767526062,214,0 +170767526110,214,0 +170767526158,214,0 +170767526206,214,0 +170767526255,215,0 +170767526304,215,0 +170767526352,215,0 +170767526402,215,0 +170767526450,215,0 +170767526497,215,0 +170767526545,215,0 +170767526593,215,0 +170767526641,215,0 +170767526689,216,0 +170767526737,215,0 +170767526785,214,0 +170767526832,213,0 +170767526880,213,0 +170767526928,213,0 +170767526976,214,0 +170767527024,214,0 +170767527072,214,0 +170767527119,214,0 +170767527167,214,0 +170767527215,215,0 +170767527263,215,0 +170767527311,215,0 +170767527360,215,0 +170767527408,215,0 +170767527456,215,0 +170767527504,215,0 +170767527552,215,0 +170767527600,215,0 +170767527649,215,0 +170767527697,213,0 +170767527745,213,0 +170767527792,213,0 +170767527840,213,0 +170767527890,213,0 +170767527938,213,0 +170767527986,214,0 +170767528034,214,0 +170767528083,214,0 +170767528131,214,0 +170767528181,214,0 +170767528229,214,0 +170767528276,215,0 +170767528324,215,0 +170767528372,215,0 +170767528420,215,0 +170767528468,215,0 +170767528516,215,0 +170767528565,213,0 +170767528613,213,0 +170767528661,213,0 +170767528708,213,0 +170767528756,213,0 +170767528804,213,0 +170767528852,213,0 +170767528900,214,0 +170767528948,214,0 +170767528996,214,0 +170767529044,214,0 +170767529093,215,0 +170767529141,214,0 +170767529189,215,0 +170767529237,215,0 +170767529285,215,0 +170767529334,215,0 +170767529382,215,0 +170767529430,214,0 +170767529478,213,0 +170767529526,213,0 +170767529573,214,0 +170767529623,213,0 +170767529673,213,0 +170767529721,213,0 +170767529768,213,0 +170767529818,214,0 +170767529867,214,0 +170767529915,214,0 +170767529965,214,0 +170767530013,214,0 +170767530061,215,0 +170767530110,215,0 +170767530160,215,0 +170767530209,215,0 +170767530257,215,0 +170767530305,214,0 +170767530353,213,0 +170767530401,213,0 +170767530450,213,0 +170767530498,213,0 +170767530546,214,0 +170767530594,214,0 +170767530642,214,0 +170767530692,214,0 +170767530740,214,0 +170767530787,215,0 +170767530835,215,0 +170767530885,215,0 +170767530933,215,0 +170767530982,215,0 +170767531030,215,0 +170767531080,215,0 +170767531129,215,0 +170767531177,214,0 +170767531225,214,0 +170767531273,214,0 +170767531321,214,0 +170767531369,214,0 +170767531418,214,0 +170767531466,214,0 +170767531514,215,0 +170767531562,215,0 +170767531610,215,0 +170767531658,215,0 +170767531706,215,0 +170767531754,215,0 +170767531803,215,0 +170767531851,215,0 +170767531899,215,0 +170767531947,215,0 +170767531995,215,0 +170767532045,215,0 +170767532093,214,0 +170767532142,214,0 +170767532190,214,0 +170767532239,214,0 +170767532287,214,0 +170767532337,214,0 +170767532385,214,0 +170767532434,215,0 +170767532484,215,0 +170767532533,215,0 +170767532581,215,0 +170767532629,215,0 +170767532677,215,0 +170767532725,215,0 +170767532772,215,0 +170767532820,215,0 +170767532868,215,0 +170767532916,215,0 +170767532964,214,0 +170767533012,214,0 +170767533059,214,0 +170767533107,214,0 +170767533155,214,0 +170767533203,214,0 +170767533251,214,0 +170767533299,214,0 +170767533347,215,0 +170767533396,215,0 +170767533444,215,0 +170767533492,215,0 +170767533540,215,0 +170767533588,215,0 +170767533637,215,0 +170767533687,215,0 +170767533735,215,0 +170767533783,215,0 +170767533832,214,0 +170767533880,214,0 +170767533928,214,0 +170767533976,214,0 +170767534024,214,0 +170767534071,214,0 +170767534119,215,0 +170767534169,215,0 +170767534217,215,0 +170767534266,215,0 +170767534316,215,0 +170767534363,215,0 +170767534411,215,0 +170767534459,215,0 +170767534509,216,0 +170767534557,215,0 +170767534605,215,0 +170767534652,215,0 +170767534702,214,0 +170767534750,214,0 +170767534798,214,0 +170767534847,215,0 +170767534895,214,0 +170767534943,215,0 +170767534991,215,0 +170767535039,215,0 +170767535087,215,0 +170767535134,215,0 +170767535184,215,0 +170767535232,215,0 +170767535280,216,0 +170767535327,215,0 +170767535375,215,0 +170767535423,215,0 +170767535471,215,0 +170767535519,215,0 +170767535567,214,0 +170767535615,214,0 +170767535662,214,0 +170767535710,214,0 +170767535760,214,0 +170767535808,215,0 +170767535856,215,0 +170767535904,214,0 +170767535952,215,0 +170767536000,215,0 +170767536048,215,0 +170767536095,215,0 +170767536143,215,0 +170767536191,215,0 +170767536239,215,0 +170767536287,215,0 +170767536336,215,0 +170767536384,215,0 +170767536432,215,0 +170767536480,214,0 +170767536528,214,0 +170767536577,215,0 +170767536625,215,0 +170767536673,215,0 +170767536721,215,0 +170767536769,215,0 +170767536819,215,0 +170767536868,215,0 +170767536916,215,0 +170767536964,215,0 +170767537012,215,0 +170767537060,216,0 +170767537109,215,0 +170767537157,215,0 +170767537205,216,0 +170767537253,215,0 +170767537302,215,0 +170767537350,214,0 +170767537400,214,0 +170767537448,214,0 +170767537496,214,0 +170767537545,214,0 +170767537595,215,0 +170767537643,215,0 +170767537692,215,0 +170767537740,215,0 +170767537788,215,0 +170767537836,215,0 +170767537885,215,0 +170767537935,215,0 +170767537984,216,0 +170767538034,215,0 +170767538082,215,0 +170767538130,215,0 +170767538178,215,0 +170767538226,214,0 +170767538274,214,0 +170767538321,214,0 +170767538369,214,0 +170767538419,214,0 +170767538467,214,0 +170767538516,214,0 +170767538564,214,0 +170767538614,215,0 +170767538661,215,0 +170767538709,215,0 +170767538759,215,0 +170767538807,216,0 +170767538855,215,0 +170767538903,215,0 +170767538951,215,0 +170767538999,215,0 +170767539048,215,0 +170767539096,213,0 +170767539144,213,0 +170767539194,214,0 +170767539243,214,0 +170767539293,214,0 +170767539342,214,0 +170767539390,214,0 +170767539438,215,0 +170767539486,214,0 +170767539535,215,0 +170767539583,215,0 +170767539631,215,0 +170767539681,215,0 +170767539729,215,0 +170767539778,215,0 +170767539826,215,0 +170767539874,215,0 +170767539922,215,0 +170767539971,213,0 +170767540019,213,0 +170767540067,213,0 +170767540115,213,0 +170767540163,213,0 +170767540211,213,0 +170767540259,213,0 +170767540307,214,0 +170767540354,214,0 +170767540402,214,0 +170767540450,214,0 +170767540498,214,0 +170767540546,214,0 +170767540594,215,0 +170767540641,214,0 +170767540689,215,0 +170767540737,215,0 +170767540785,215,0 +170767540833,214,0 +170767540881,213,0 +170767540929,213,0 +170767540977,213,0 +170767541026,213,0 +170767541074,214,0 +170767541124,214,0 +170767541172,214,0 +170767541219,214,0 +170767541269,214,0 +170767541317,214,0 +170767541365,214,0 +170767541412,214,0 +170767541460,215,0 +170767541508,215,0 +170767541556,215,0 +170767541604,215,0 +170767541651,215,0 +170767541699,215,0 +170767541747,213,0 +170767541795,214,0 +170767541843,213,0 +170767541891,213,0 +170767541939,214,0 +170767541987,214,0 +170767542036,214,0 +170767542084,214,0 +170767542132,214,0 +170767542180,215,0 +170767542228,214,0 +170767542277,215,0 +170767542325,215,0 +170767542375,215,0 +170767542424,215,0 +170767542472,215,0 +170767542520,215,0 +170767542568,215,0 +170767542616,213,0 +170767542664,213,0 +170767542713,213,0 +170767542763,214,0 +170767542811,214,0 +170767542859,214,0 +170767542908,214,0 +170767542958,214,0 +170767543007,214,0 +170767543055,215,0 +170767543104,215,0 +170767543152,215,0 +170767543200,215,0 +170767543250,215,0 +170767543299,215,0 +170767543347,215,0 +170767543397,215,0 +170767543445,215,0 +170767543493,213,0 +170767543541,213,0 +170767543588,213,0 +170767543636,213,0 +170767543684,214,0 +170767543732,214,0 +170767543782,214,0 +170767543831,214,0 +170767543879,214,0 +170767543927,214,0 +170767543976,215,0 +170767544026,214,0 +170767544074,215,0 +170767544122,215,0 +170767544170,215,0 +170767544218,215,0 +170767544266,215,0 +170767544314,215,0 +170767544363,213,0 +170767544411,213,0 +170767544459,213,0 +170767544507,213,0 +170767544555,213,0 +170767544604,213,0 +170767544652,213,0 +170767544700,213,0 +170767544750,214,0 +170767544799,214,0 +170767544847,214,0 +170767544895,214,0 +170767544945,215,0 +170767544994,215,0 +170767545042,215,0 +170767545090,215,0 +170767545138,215,0 +170767545186,215,0 +170767545235,213,0 +170767545285,213,0 +170767545333,213,0 +170767545380,213,0 +170767545430,213,0 +170767545478,213,0 +170767545526,214,0 +170767545574,214,0 +170767545623,214,0 +170767545671,214,0 +170767545719,214,0 +170767545767,214,0 +170767545815,215,0 +170767545864,215,0 +170767545914,215,0 +170767545962,215,0 +170767546010,215,0 +170767546059,215,0 +170767546107,213,0 +170767546155,213,0 +170767546205,213,0 +170767546254,214,0 +170767546302,214,0 +170767546350,214,0 +170767546398,214,0 +170767546446,214,0 +170767546495,214,0 +170767546543,214,0 +170767546593,214,0 +170767546641,214,0 +170767546690,215,0 +170767546738,215,0 +170767546786,215,0 +170767546834,215,0 +170767546882,215,0 +170767546930,215,0 +170767546978,214,0 +170767547027,213,0 +170767547075,214,0 +170767547123,214,0 +170767547171,214,0 +170767547220,214,0 +170767547268,214,0 +170767547316,214,0 +170767547365,214,0 +170767547415,214,0 +170767547463,215,0 +170767547511,215,0 +170767547560,215,0 +170767547610,215,0 +170767547658,215,0 +170767547706,215,0 +170767547753,215,0 +170767547801,215,0 +170767547849,214,0 +170767547897,213,0 +170767547945,214,0 +170767547993,214,0 +170767548041,214,0 +170767548089,214,0 +170767548138,214,0 +170767548186,214,0 +170767548236,214,0 +170767548284,215,0 +170767548332,215,0 +170767548380,215,0 +170767548429,215,0 +170767548477,215,0 +170767548527,215,0 +170767548576,215,0 +170767548626,215,0 +170767548675,215,0 +170767548723,214,0 +170767548773,214,0 +170767548822,214,0 +170767548870,214,0 +170767548918,214,0 +170767548966,214,0 +170767549014,214,0 +170767549062,215,0 +170767549111,215,0 +170767549159,215,0 +170767549207,215,0 +170767549255,215,0 +170767549304,216,0 +170767549352,215,0 +170767549402,215,0 +170767549450,215,0 +170767549499,215,0 +170767549547,215,0 +170767549595,215,0 +170767549643,214,0 +170767549692,214,0 +170767549742,214,0 +170767549790,214,0 +170767549838,215,0 +170767549886,215,0 +170767549934,215,0 +170767549982,215,0 +170767550029,215,0 +170767550077,215,0 +170767550125,215,0 +170767550173,215,0 +170767550221,216,0 +170767550269,215,0 +170767550316,215,0 +170767550364,215,0 +170767550412,215,0 +170767550460,215,0 +170767550507,214,0 +170767550555,214,0 +170767550603,214,0 +170767550653,214,0 +170767550701,214,0 +170767550748,215,0 +170767550796,215,0 +170767550844,215,0 +170767550892,215,0 +170767550940,215,0 +170767550988,215,0 +170767551036,215,0 +170767551085,215,0 +170767551133,215,0 +170767551181,215,0 +170767551231,215,0 +170767551280,215,0 +170767551328,215,0 +170767551376,214,0 +170767551424,214,0 +170767551473,214,0 +170767551523,214,0 +170767551572,214,0 +170767551620,214,0 +170767551668,214,0 +170767551716,214,0 +170767551766,214,0 +170767551814,215,0 +170767551862,215,0 +170767551910,215,0 +170767551959,215,0 +170767552009,215,0 +170767552058,215,0 +170767552106,215,0 +170767552154,215,0 +170767552204,215,0 +170767552253,213,0 +170767552301,214,0 +170767552349,214,0 +170767552397,214,0 +170767552447,214,0 +170767552496,214,0 +170767552544,214,0 +170767552594,214,0 +170767552642,214,0 +170767552691,215,0 +170767552739,215,0 +170767552788,215,0 +170767552838,215,0 +170767552886,215,0 +170767552934,215,0 +170767552982,215,0 +170767553030,215,0 +170767553079,215,0 +170767553129,214,0 +170767553177,214,0 +170767553226,214,0 +170767553274,214,0 +170767553322,214,0 +170767553370,214,0 +170767553418,214,0 +170767553468,214,0 +170767553517,214,0 +170767553566,214,0 +170767553614,215,0 +170767553662,215,0 +170767553712,215,0 +170767553760,215,0 +170767553809,215,0 +170767553857,215,0 +170767553905,215,0 +170767553953,215,0 +170767554001,214,0 +170767554051,213,0 +170767554099,214,0 +170767554148,214,0 +170767554196,214,0 +170767554244,214,0 +170767554294,214,0 +170767554342,215,0 +170767554389,215,0 +170767554439,215,0 +170767554488,215,0 +170767554536,215,0 +170767554584,215,0 +170767554632,215,0 +170767554680,215,0 +170767554728,215,0 +170767554776,215,0 +170767554824,215,0 +170767554873,213,0 +170767554921,213,0 +170767554969,213,0 +170767555017,214,0 +170767555067,214,0 +170767555115,214,0 +170767555163,214,0 +170767555211,214,0 +170767555259,215,0 +170767555308,215,0 +170767555356,215,0 +170767555404,215,0 +170767555452,215,0 +170767555500,215,0 +170767555548,215,0 +170767555597,215,0 +170767555645,215,0 +170767555695,215,0 +170767555743,215,0 +170767555793,213,0 +170767555842,214,0 +170767555891,214,0 +170767555941,214,0 +170767555989,214,0 +170767556037,214,0 +170767556085,214,0 +170767556134,214,0 +170767556184,214,0 +170767556232,215,0 +170767556280,215,0 +170767556328,215,0 +170767556376,215,0 +170767556425,215,0 +170767556473,215,0 +170767556521,215,0 +170767556569,215,0 +170767556617,215,0 +170767556666,213,0 +170767556714,213,0 +170767556762,214,0 +170767556810,214,0 +170767556858,214,0 +170767556906,214,0 +170767556954,214,0 +170767557002,214,0 +170767557050,214,0 +170767557098,214,0 +170767557146,215,0 +170767557195,215,0 +170767557243,215,0 +170767557293,215,0 +170767557341,215,0 +170767557390,215,0 +170767557440,215,0 +170767557489,215,0 +170767557537,213,0 +170767557585,213,0 +170767557633,214,0 +170767557682,214,0 +170767557730,214,0 +170767557778,214,0 +170767557828,214,0 +170767557877,214,0 +170767557925,214,0 +170767557973,215,0 +170767558023,215,0 +170767558072,215,0 +170767558122,215,0 +170767558171,215,0 +170767558219,215,0 +170767558267,215,0 +170767558316,215,0 +170767558364,215,0 +170767558412,214,0 +170767558462,213,0 +170767558511,214,0 +170767558559,214,0 +170767558609,214,0 +170767558657,214,0 +170767558705,214,0 +170767558753,214,0 +170767558800,214,0 +170767558850,214,0 +170767558898,215,0 +170767558946,215,0 +170767558994,215,0 +170767559043,215,0 +170767559093,215,0 +170767559141,215,0 +170767559189,215,0 +170767559237,215,0 +170767559285,214,0 +170767559332,214,0 +170767559382,214,0 +170767559430,214,0 +170767559479,214,0 +170767559527,214,0 +170767559575,214,0 +170767559623,214,0 +170767559673,214,0 +170767559721,215,0 +170767559769,215,0 +170767559818,215,0 +170767559866,215,0 +170767559916,215,0 +170767559963,215,0 +170767560011,215,0 +170767560059,215,0 +170767560109,215,0 +170767560157,213,0 +170767560205,213,0 +170767560253,213,0 +170767560302,214,0 +170767560350,214,0 +170767560399,214,0 +170767560447,214,0 +170767560495,214,0 +170767560543,214,0 +170767560591,215,0 +170767560639,215,0 +170767560687,215,0 +170767560735,215,0 +170767560784,215,0 +170767560832,215,0 +170767560882,215,0 +170767560931,215,0 +170767560979,215,0 +170767561027,214,0 +170767561075,214,0 +170767561123,214,0 +170767561171,214,0 +170767561219,214,0 +170767561268,214,0 +170767561316,214,0 +170767561364,214,0 +170767561414,214,0 +170767561463,214,0 +170767561511,215,0 +170767561559,215,0 +170767561607,215,0 +170767561655,215,0 +170767561704,215,0 +170767561752,216,0 +170767561802,215,0 +170767561850,215,0 +170767561898,215,0 +170767561946,214,0 +170767561994,214,0 +170767562043,214,0 +170767562093,214,0 +170767562141,214,0 +170767562189,214,0 +170767562236,214,0 +170767562284,215,0 +170767562332,215,0 +170767562380,215,0 +170767562428,215,0 +170767562476,215,0 +170767562526,215,0 +170767562574,215,0 +170767562622,215,0 +170767562670,215,0 +170767562718,215,0 +170767562765,215,0 +170767562815,213,0 +170767562863,214,0 +170767562911,214,0 +170767562958,214,0 +170767563006,214,0 +170767563054,214,0 +170767563102,214,0 +170767563150,215,0 +170767563198,215,0 +170767563248,215,0 +170767563297,215,0 +170767563347,215,0 +170767563396,215,0 +170767563444,215,0 +170767563492,215,0 +170767563540,215,0 +170767563588,215,0 +170767563636,215,0 +170767563684,213,0 +170767563732,213,0 +170767563780,213,0 +170767563828,214,0 +170767563876,214,0 +170767563925,214,0 +170767563973,214,0 +170767564021,214,0 +170767564070,215,0 +170767564118,215,0 +170767564166,215,0 +170767564216,215,0 +170767564264,215,0 +170767564312,215,0 +170767564360,215,0 +170767564408,215,0 +170767564456,215,0 +170767564504,215,0 +170767564553,213,0 +170767564601,213,0 +170767564649,213,0 +170767564697,213,0 +170767564747,213,0 +170767564794,213,0 +170767564844,214,0 +170767564892,214,0 +170767564940,214,0 +170767564988,214,0 +170767565037,215,0 +170767565087,215,0 +170767565135,215,0 +170767565183,215,0 +170767565231,215,0 +170767565279,215,0 +170767565327,215,0 +170767565374,215,0 +170767565422,213,0 +170767565470,213,0 +170767565518,213,0 +170767565568,213,0 +170767565616,213,0 +170767565665,214,0 +170767565713,214,0 +170767565763,214,0 +170767565811,214,0 +170767565859,214,0 +170767565907,214,0 +170767565955,214,0 +170767566003,215,0 +170767566051,215,0 +170767566098,215,0 +170767566146,215,0 +170767566196,215,0 +170767566245,215,0 +170767566295,213,0 +170767566343,213,0 +170767566390,213,0 +170767566438,213,0 +170767566486,213,0 +170767566534,213,0 +170767566582,213,0 +170767566630,214,0 +170767566679,214,0 +170767566727,214,0 +170767566775,214,0 +170767566824,214,0 +170767566872,214,0 +170767566920,215,0 +170767566968,215,0 +170767567016,215,0 +170767567064,215,0 +170767567112,215,0 +170767567159,214,0 +170767567207,213,0 +170767567255,213,0 +170767567303,213,0 +170767567351,214,0 +170767567399,213,0 +170767567447,214,0 +170767567494,214,0 +170767567542,214,0 +170767567590,214,0 +170767567638,214,0 +170767567686,214,0 +170767567736,215,0 +170767567783,215,0 +170767567831,215,0 +170767567881,215,0 +170767567929,215,0 +170767567976,215,0 +170767568024,215,0 +170767568072,213,0 +170767568120,213,0 +170767568168,213,0 +170767568215,213,0 +170767568263,214,0 +170767568311,213,0 +170767568359,214,0 +170767568407,214,0 +170767568455,214,0 +170767568503,214,0 +170767568551,214,0 +170767568600,214,0 +170767568648,215,0 +170767568696,215,0 +170767568744,215,0 +170767568791,215,0 +170767568839,215,0 +170767568887,215,0 +170767568937,214,0 +170767568985,213,0 +170767569032,214,0 +170767569080,214,0 +170767569128,214,0 +170767569178,214,0 +170767569226,215,0 +170767569274,214,0 +170767569323,215,0 +170767569371,215,0 +170767569419,215,0 +170767569467,215,0 +170767569515,215,0 +170767569563,215,0 +170767569610,215,0 +170767569658,215,0 +170767569706,215,0 +170767569754,215,0 +170767569804,214,0 +170767569852,214,0 +170767569899,214,0 +170767569947,214,0 +170767569995,214,0 +170767570043,214,0 +170767570091,214,0 +170767570140,214,0 +170767570188,215,0 +170767570238,215,0 +170767570286,215,0 +170767570335,215,0 +170767570385,215,0 +170767570433,215,0 +170767570481,215,0 +170767570530,215,0 +170767570578,215,0 +170767570626,215,0 +170767570676,214,0 +170767570724,214,0 +170767570771,214,0 +170767570819,214,0 +170767570869,214,0 +170767570917,214,0 +170767570966,214,0 +170767571014,215,0 +170767571062,215,0 +170767571110,215,0 +170767571158,215,0 +170767571206,215,0 +170767571254,215,0 +170767571303,215,0 +170767571353,215,0 +170767571401,216,0 +170767571450,215,0 +170767571498,215,0 +170767571546,215,0 +170767571594,214,0 +170767571642,214,0 +170767571689,214,0 +170767571737,214,0 +170767571785,215,0 +170767571833,215,0 +170767571881,214,0 +170767571929,215,0 +170767571976,215,0 +170767572024,215,0 +170767572072,215,0 +170767572120,215,0 +170767572168,215,0 +170767572216,215,0 +170767572264,215,0 +170767572312,215,0 +170767572360,215,0 +170767572407,215,0 +170767572455,214,0 +170767572503,214,0 +170767572551,214,0 +170767572599,214,0 +170767572647,214,0 +170767572694,214,0 +170767572742,214,0 +170767572790,215,0 +170767572838,215,0 +170767572886,215,0 +170767572935,215,0 +170767572983,215,0 +170767573031,215,0 +170767573079,215,0 +170767573127,215,0 +170767573175,215,0 +170767573222,215,0 +170767573270,215,0 +170767573318,214,0 +170767573366,214,0 +170767573414,214,0 +170767573462,214,0 +170767573510,214,0 +170767573558,214,0 +170767573606,215,0 +170767573654,215,0 +170767573701,215,0 +170767573749,215,0 +170767573797,216,0 +170767573845,215,0 +170767573893,215,0 +170767573941,215,0 +170767573989,215,0 +170767574036,215,0 +170767574084,215,0 +170767574134,215,0 +170767574183,215,0 +170767574233,214,0 +170767574281,214,0 +170767574330,214,0 +170767574378,214,0 +170767574426,214,0 +170767574474,214,0 +170767574522,214,0 +170767574570,215,0 +170767574618,215,0 +170767574666,215,0 +170767574715,215,0 +170767574765,215,0 +170767574813,215,0 +170767574862,215,0 +170767574912,215,0 +170767574960,215,0 +170767575008,215,0 +170767575056,215,0 +170767575103,214,0 +170767575153,213,0 +170767575202,214,0 +170767575250,214,0 +170767575300,214,0 +170767575348,214,0 +170767575396,214,0 +170767575444,215,0 +170767575493,215,0 +170767575541,215,0 +170767575589,215,0 +170767575639,215,0 +170767575688,215,0 +170767575738,215,0 +170767575787,215,0 +170767575835,215,0 +170767575885,215,0 +170767575933,215,0 +170767575981,214,0 +170767576029,214,0 +170767576077,214,0 +170767576126,214,0 +170767576174,214,0 +170767576224,214,0 +170767576273,214,0 +170767576323,214,0 +170767576371,215,0 +170767576419,215,0 +170767576466,215,0 +170767576514,215,0 +170767576562,215,0 +170767576610,215,0 +170767576658,215,0 +170767576707,215,0 +170767576757,215,0 +170767576804,215,0 +170767576852,214,0 +170767576900,214,0 +170767576950,214,0 +170767576998,214,0 +170767577047,214,0 +170767577097,214,0 +170767577146,214,0 +170767577194,215,0 +170767577242,215,0 +170767577290,215,0 +170767577338,215,0 +170767577386,215,0 +170767577434,215,0 +170767577483,215,0 +170767577531,215,0 +170767577579,216,0 +170767577627,215,0 +170767577676,215,0 +170767577726,214,0 +170767577775,213,0 +170767577825,214,0 +170767577873,214,0 +170767577921,214,0 +170767577968,214,0 +170767578016,214,0 +170767578064,215,0 +170767578112,215,0 +170767578160,215,0 +170767578210,215,0 +170767578257,215,0 +170767578305,215,0 +170767578355,215,0 +170767578403,215,0 +170767578452,216,0 +170767578500,215,0 +170767578548,215,0 +170767578596,214,0 +170767578644,214,0 +170767578694,214,0 +170767578742,214,0 +170767578790,214,0 +170767578838,214,0 +170767578886,214,0 +170767578934,214,0 +170767578982,214,0 +170767579029,215,0 +170767579077,215,0 +170767579127,215,0 +170767579175,215,0 +170767579223,215,0 +170767579272,215,0 +170767579320,216,0 +170767579370,215,0 +170767579418,215,0 +170767579466,214,0 +170767579515,213,0 +170767579563,214,0 +170767579611,214,0 +170767579661,214,0 +170767579710,214,0 +170767579758,214,0 +170767579808,214,0 +170767579857,214,0 +170767579905,215,0 +170767579954,215,0 +170767580004,215,0 +170767580052,215,0 +170767580100,215,0 +170767580148,215,0 +170767580197,215,0 +170767580245,215,0 +170767580293,215,0 +170767580342,214,0 +170767580392,213,0 +170767580440,213,0 +170767580489,214,0 +170767580537,214,0 +170767580587,214,0 +170767580636,214,0 +170767580686,214,0 +170767580733,214,0 +170767580781,214,0 +170767580829,215,0 +170767580877,215,0 +170767580925,215,0 +170767580974,215,0 +170767581024,215,0 +170767581073,215,0 +170767581121,215,0 +170767581169,215,0 +170767581217,214,0 +170767581267,213,0 +170767581315,214,0 +170767581362,214,0 +170767581412,214,0 +170767581461,214,0 +170767581509,214,0 +170767581557,214,0 +170767581607,214,0 +170767581655,215,0 +170767581704,215,0 +170767581752,215,0 +170767581800,215,0 +170767581849,215,0 +170767581899,216,0 +170767581947,215,0 +170767581996,215,0 +170767582044,215,0 +170767582092,214,0 +170767582141,214,0 +170767582189,214,0 +170767582237,214,0 +170767582285,214,0 +170767582333,214,0 +170767582381,214,0 +170767582431,214,0 +170767582478,215,0 +170767582526,215,0 +170767582574,215,0 +170767582622,215,0 +170767582670,215,0 +170767582718,215,0 +170767582766,216,0 +170767582815,216,0 +170767582863,216,0 +170767582911,216,0 +170767582959,215,0 +170767583007,214,0 +170767583055,214,0 +170767583103,214,0 +170767583151,214,0 +170767583200,214,0 +170767583248,215,0 +170767583296,215,0 +170767583344,215,0 +170767583392,215,0 +170767583440,215,0 +170767583489,215,0 +170767583539,215,0 +170767583587,216,0 +170767583635,215,0 +170767583682,216,0 +170767583730,215,0 +170767583778,215,0 +170767583826,215,0 +170767583874,214,0 +170767583922,213,0 +170767583972,214,0 +170767584020,214,0 +170767584067,214,0 +170767584117,214,0 +170767584165,214,0 +170767584213,215,0 +170767584260,215,0 +170767584308,215,0 +170767584358,215,0 +170767584406,215,0 +170767584453,215,0 +170767584501,215,0 +170767584551,215,0 +170767584599,215,0 +170767584647,215,0 +170767584696,215,0 +170767584744,214,0 +170767584794,213,0 +170767584841,214,0 +170767584891,214,0 +170767584939,214,0 +170767584987,214,0 +170767585035,214,0 +170767585084,214,0 +170767585134,214,0 +170767585183,214,0 +170767585231,215,0 +170767585279,215,0 +170767585327,215,0 +170767585375,215,0 +170767585425,215,0 +170767585473,215,0 +170767585521,215,0 +170767585569,215,0 +170767585617,214,0 +170767585666,214,0 +170767585716,214,0 +170767585764,214,0 +170767585813,214,0 +170767585861,214,0 +170767585909,214,0 +170767585958,214,0 +170767586006,214,0 +170767586054,214,0 +170767586102,214,0 +170767586150,215,0 +170767586198,215,0 +170767586246,215,0 +170767586295,215,0 +170767586345,215,0 +170767586394,215,0 +170767586444,215,0 +170767586492,214,0 +170767586540,213,0 +170767586588,213,0 +170767586637,213,0 +170767586685,214,0 +170767586733,214,0 +170767586781,214,0 +170767586830,214,0 +170767586880,214,0 +170767586927,214,0 +170767586977,214,0 +170767587025,215,0 +170767587073,215,0 +170767587122,215,0 +170767587170,215,0 +170767587220,215,0 +170767587268,215,0 +170767587316,215,0 +170767587363,214,0 +170767587411,213,0 +170767587461,213,0 +170767587511,213,0 +170767587558,213,0 +170767587608,214,0 +170767587656,214,0 +170767587704,214,0 +170767587752,214,0 +170767587801,214,0 +170767587851,215,0 +170767587899,215,0 +170767587947,215,0 +170767587995,215,0 +170767588043,216,0 +170767588091,216,0 +170767588139,216,0 +170767588187,215,0 +170767588235,214,0 +170767588282,213,0 +170767588330,213,0 +170767588378,214,0 +170767588426,214,0 +170767588474,214,0 +170767588524,214,0 +170767588573,214,0 +170767588622,214,0 +170767588670,215,0 +170767588718,215,0 +170767588766,215,0 +170767588814,215,0 +170767588863,215,0 +170767588911,215,0 +170767588959,215,0 +170767589009,215,0 +170767589057,215,0 +170767589105,214,0 +170767589153,213,0 +170767589201,214,0 +170767589249,214,0 +170767589296,214,0 +170767589344,214,0 +170767589394,214,0 +170767589441,215,0 +170767589489,215,0 +170767589537,215,0 +170767589585,215,0 +170767589633,215,0 +170767589682,215,0 +170767589732,215,0 +170767589780,215,0 +170767589828,215,0 +170767589875,215,0 +170767589923,215,0 +170767589971,215,0 +170767590019,214,0 +170767590067,214,0 +170767590115,214,0 +170767590163,214,0 +170767590213,214,0 +170767590262,214,0 +170767590310,214,0 +170767590358,215,0 +170767590406,215,0 +170767590454,215,0 +170767590504,215,0 +170767590551,215,0 +170767590599,215,0 +170767590647,215,0 +170767590695,215,0 +170767590743,215,0 +170767590791,215,0 +170767590839,215,0 +170767590889,214,0 +170767590938,214,0 +170767590986,214,0 +170767591034,214,0 +170767591082,214,0 +170767591130,214,0 +170767591177,214,0 +170767591225,214,0 +170767591273,215,0 +170767591321,215,0 +170767591369,215,0 +170767591417,215,0 +170767591465,215,0 +170767591513,215,0 +170767591561,215,0 +170767591609,215,0 +170767591658,215,0 +170767591706,215,0 +170767591756,214,0 +170767591805,214,0 +170767591853,214,0 +170767591901,215,0 +170767591950,215,0 +170767592000,215,0 +170767592048,215,0 +170767592096,215,0 +170767592144,215,0 +170767592192,216,0 +170767592240,216,0 +170767592289,216,0 +170767592337,216,0 +170767592385,216,0 +170767592433,216,0 +170767592481,216,0 +170767592531,215,0 +170767592580,215,0 +170767592628,215,0 +170767592676,215,0 +170767592725,215,0 +170767592773,215,0 +170767592821,215,0 +170767592869,215,0 +170767592919,215,0 +170767592967,215,0 +170767593015,216,0 +170767593064,216,0 +170767593112,216,0 +170767593160,216,0 +170767593208,216,0 +170767593255,216,0 +170767593303,216,0 +170767593351,216,0 +170767593399,216,0 +170767593447,215,0 +170767593495,215,0 +170767593542,215,0 +170767593590,215,0 +170767593638,216,0 +170767593686,215,0 +170767593734,215,0 +170767593781,216,0 +170767593829,216,0 +170767593877,216,0 +170767593925,216,0 +170767593973,216,0 +170767594021,216,0 +170767594070,216,0 +170767594118,216,0 +170767594166,216,0 +170767594215,216,0 +170767594263,216,0 +170767594311,215,0 +170767594359,215,0 +170767594407,214,0 +170767594456,214,0 +170767594504,215,0 +170767594552,215,0 +170767594600,215,0 +170767594648,215,0 +170767594698,215,0 +170767594746,215,0 +170767594793,215,0 +170767594843,216,0 +170767594892,215,0 +170767594940,215,0 +170767594988,216,0 +170767595036,215,0 +170767595086,216,0 +170767595134,215,0 +170767595183,215,0 +170767595233,215,0 +170767595281,214,0 +170767595329,214,0 +170767595377,214,0 +170767595424,214,0 +170767595472,214,0 +170767595520,214,0 +170767595568,214,0 +170767595616,215,0 +170767595663,215,0 +170767595711,215,0 +170767595761,215,0 +170767595810,215,0 +170767595858,215,0 +170767595906,215,0 +170767595954,215,0 +170767596004,215,0 +170767596052,215,0 +170767596101,215,0 +170767596149,214,0 +170767596197,214,0 +170767596245,214,0 +170767596293,214,0 +170767596341,214,0 +170767596389,215,0 +170767596436,214,0 +170767596486,215,0 +170767596536,215,0 +170767596583,215,0 +170767596633,215,0 +170767596681,215,0 +170767596729,215,0 +170767596777,215,0 +170767596826,216,0 +170767596874,215,0 +170767596922,216,0 +170767596972,215,0 +170767597019,214,0 +170767597067,214,0 +170767597117,214,0 +170767597166,214,0 +170767597214,214,0 +170767597262,214,0 +170767597312,214,0 +170767597359,215,0 +170767597409,215,0 +170767597457,215,0 +170767597505,215,0 +170767597553,215,0 +170767597601,215,0 +170767597649,215,0 +170767597696,215,0 +170767597744,215,0 +170767597792,215,0 +170767597840,215,0 +170767597888,214,0 +170767597936,214,0 +170767597984,214,0 +170767598032,214,0 +170767598080,214,0 +170767598127,214,0 +170767598177,214,0 +170767598225,214,0 +170767598273,214,0 +170767598322,214,0 +170767598370,215,0 +170767598420,215,0 +170767598468,215,0 +170767598516,215,0 +170767598564,215,0 +170767598611,216,0 +170767598659,215,0 +170767598707,215,0 +170767598757,214,0 +170767598806,214,0 +170767598854,214,0 +170767598902,214,0 +170767598950,214,0 +170767598998,214,0 +170767599046,214,0 +170767599094,215,0 +170767599141,215,0 +170767599189,215,0 +170767599237,215,0 +170767599285,215,0 +170767599333,215,0 +170767599381,216,0 +170767599429,215,0 +170767599477,216,0 +170767599526,215,0 +170767599574,215,0 +170767599622,215,0 +170767599670,213,0 +170767599720,214,0 +170767599767,214,0 +170767599815,214,0 +170767599863,214,0 +170767599913,214,0 +170767599961,214,0 +170767600010,214,0 +170767600060,215,0 +170767600108,215,0 +170767600156,215,0 +170767600204,215,0 +170767600252,215,0 +170767600300,215,0 +170767600349,215,0 +170767600397,216,0 +170767600445,215,0 +170767600493,215,0 +170767600541,213,0 +170767600589,213,0 +170767600636,213,0 +170767600686,214,0 +170767600734,214,0 +170767600782,214,0 +170767600830,214,0 +170767600879,214,0 +170767600927,214,0 +170767600977,214,0 +170767601025,214,0 +170767601074,215,0 +170767601122,215,0 +170767601170,215,0 +170767601218,215,0 +170767601268,215,0 +170767601317,215,0 +170767601365,215,0 +170767601413,213,0 +170767601461,213,0 +170767601509,213,0 +170767601557,213,0 +170767601605,213,0 +170767601653,214,0 +170767601701,214,0 +170767601749,214,0 +170767601797,214,0 +170767601846,214,0 +170767601894,214,0 +170767601942,215,0 +170767601992,215,0 +170767602040,215,0 +170767602088,215,0 +170767602135,215,0 +170767602185,215,0 +170767602234,215,0 +170767602282,214,0 +170767602330,213,0 +170767602378,213,0 +170767602428,213,0 +170767602476,214,0 +170767602524,214,0 +170767602571,214,0 +170767602621,214,0 +170767602670,214,0 +170767602720,214,0 +170767602769,214,0 +170767602819,215,0 +170767602867,215,0 +170767602916,215,0 +170767602964,215,0 +170767603012,215,0 +170767603062,215,0 +170767603110,215,0 +170767603158,214,0 +170767603206,214,0 +170767603255,213,0 +170767603303,214,0 +170767603351,214,0 +170767603400,214,0 +170767603448,214,0 +170767603496,214,0 +170767603544,214,0 +170767603594,215,0 +170767603643,215,0 +170767603691,215,0 +170767603741,215,0 +170767603790,215,0 +170767603840,215,0 +170767603888,215,0 +170767603936,215,0 +170767603984,215,0 +170767604033,214,0 +170767604083,213,0 +170767604130,214,0 +170767604178,213,0 +170767604226,214,0 +170767604276,214,0 +170767604325,214,0 +170767604375,214,0 +170767604423,214,0 +170767604471,214,0 +170767604519,215,0 +170767604567,215,0 +170767604615,215,0 +170767604663,215,0 +170767604711,215,0 +170767604758,215,0 +170767604808,215,0 +170767604856,215,0 +170767604905,214,0 +170767604953,213,0 +170767605003,214,0 +170767605052,214,0 +170767605100,214,0 +170767605148,214,0 +170767605196,214,0 +170767605246,214,0 +170767605294,215,0 +170767605341,215,0 +170767605391,215,0 +170767605439,215,0 +170767605488,215,0 +170767605536,215,0 +170767605584,215,0 +170767605632,215,0 +170767605682,215,0 +170767605730,215,0 +170767605778,214,0 +170767605825,214,0 +170767605873,214,0 +170767605921,214,0 +170767605969,214,0 +170767606019,214,0 +170767606067,214,0 +170767606114,214,0 +170767606162,214,0 +170767606212,215,0 +170767606260,215,0 +170767606308,215,0 +170767606357,215,0 +170767606405,215,0 +170767606453,215,0 +170767606501,215,0 +170767606549,215,0 +170767606597,215,0 +170767606645,214,0 +170767606693,214,0 +170767606740,214,0 +170767606788,214,0 +170767606836,214,0 +170767606886,214,0 +170767606935,214,0 +170767606983,215,0 +170767607033,215,0 +170767607081,215,0 +170767607128,215,0 +170767607176,215,0 +170767607224,215,0 +170767607272,216,0 +170767607321,216,0 +170767607369,215,0 +170767607417,215,0 +170767607465,215,0 +170767607513,215,0 +170767607561,214,0 +170767607610,214,0 +170767607658,214,0 +170767607708,214,0 +170767607757,215,0 +170767607805,215,0 +170767607855,215,0 +170767607904,215,0 +170767607952,215,0 +170767608002,215,0 +170767608051,216,0 +170767608099,215,0 +170767608149,215,0 +170767608198,215,0 +170767608246,215,0 +170767608294,215,0 +170767608342,215,0 +170767608391,215,0 +170767608439,214,0 +170767608487,214,0 +170767608535,214,0 +170767608583,214,0 +170767608632,214,0 +170767608680,214,0 +170767608728,215,0 +170767608776,215,0 +170767608826,215,0 +170767608873,215,0 +170767608921,215,0 +170767608971,215,0 +170767609019,215,0 +170767609067,215,0 +170767609114,215,0 +170767609162,215,0 +170767609210,215,0 +170767609258,215,0 +170767609307,213,0 +170767609357,213,0 +170767609405,214,0 +170767609453,214,0 +170767609501,214,0 +170767609550,214,0 +170767609598,214,0 +170767609646,214,0 +170767609694,214,0 +170767609742,214,0 +170767609791,214,0 +170767609839,215,0 +170767609887,215,0 +170767609935,215,0 +170767609985,215,0 +170767610033,215,0 +170767610081,215,0 +170767610130,215,0 +170767610178,214,0 +170767610226,213,0 +170767610274,214,0 +170767610322,214,0 +170767610371,214,0 +170767610421,214,0 +170767610470,214,0 +170767610518,214,0 +170767610566,215,0 +170767610614,215,0 +170767610661,215,0 +170767610709,215,0 +170767610757,215,0 +170767610805,215,0 +170767610853,215,0 +170767610901,215,0 +170767610949,215,0 +170767610996,215,0 +170767611044,214,0 +170767611092,214,0 +170767611142,214,0 +170767611190,214,0 +170767611238,214,0 +170767611287,214,0 +170767611335,214,0 +170767611383,215,0 +170767611431,215,0 +170767611479,215,0 +170767611527,215,0 +170767611575,215,0 +170767611623,215,0 +170767611670,216,0 +170767611718,216,0 +170767611766,215,0 +170767611814,215,0 +170767611862,215,0 +170767611912,214,0 +170767611960,214,0 +170767612009,214,0 +170767612057,214,0 +170767612105,214,0 +170767612153,214,0 +170767612201,214,0 +170767612249,215,0 +170767612297,215,0 +170767612346,215,0 +170767612394,215,0 +170767612442,215,0 +170767612490,215,0 +170767612540,216,0 +170767612588,216,0 +170767612636,215,0 +170767612685,215,0 +170767612733,215,0 +170767612781,214,0 +170767612829,213,0 +170767612877,214,0 +170767612925,214,0 +170767612973,214,0 +170767613021,214,0 +170767613069,214,0 +170767613117,214,0 +170767613166,215,0 +170767613214,215,0 +170767613262,215,0 +170767613310,215,0 +170767613358,215,0 +170767613406,215,0 +170767613454,215,0 +170767613501,215,0 +170767613549,215,0 +170767613597,215,0 +170767613645,215,0 +170767613693,214,0 +170767613741,214,0 +170767613790,214,0 +170767613838,214,0 +170767613886,214,0 +170767613934,214,0 +170767613984,214,0 +170767614032,214,0 +170767614079,214,0 +170767614127,215,0 +170767614175,215,0 +170767614223,215,0 +170767614271,215,0 +170767614319,215,0 +170767614369,215,0 +170767614417,215,0 +170767614464,215,0 +170767614514,215,0 +170767614564,214,0 +170767614613,214,0 +170767614661,214,0 +170767614711,214,0 +170767614758,214,0 +170767614806,214,0 +170767614854,214,0 +170767614902,214,0 +170767614950,215,0 +170767614998,215,0 +170767615046,215,0 +170767615094,215,0 +170767615142,215,0 +170767615190,215,0 +170767615239,215,0 +170767615287,215,0 +170767615337,215,0 +170767615385,215,0 +170767615433,214,0 +170767615482,214,0 +170767615530,214,0 +170767615578,214,0 +170767615628,214,0 +170767615676,214,0 +170767615723,214,0 +170767615771,214,0 +170767615821,215,0 +170767615869,215,0 +170767615917,215,0 +170767615965,215,0 +170767616013,215,0 +170767616061,215,0 +170767616109,216,0 +170767616156,215,0 +170767616204,215,0 +170767616252,215,0 +170767616300,214,0 +170767616348,214,0 +170767616396,214,0 +170767616445,214,0 +170767616493,214,0 +170767616541,214,0 +170767616589,214,0 +170767616639,215,0 +170767616687,215,0 +170767616736,215,0 +170767616786,215,0 +170767616835,215,0 +170767616883,215,0 +170767616933,215,0 +170767616981,215,0 +170767617030,215,0 +170767617078,215,0 +170767617128,216,0 +170767617176,214,0 +170767617224,213,0 +170767617273,213,0 +170767617321,213,0 +170767617369,213,0 +170767617417,214,0 +170767617466,214,0 +170767617516,214,0 +170767617565,214,0 +170767617613,214,0 +170767617663,214,0 +170767617711,215,0 +170767617759,215,0 +170767617807,215,0 +170767617854,215,0 +170767617904,215,0 +170767617952,215,0 +170767618000,215,0 +170767618049,214,0 +170767618097,213,0 +170767618145,213,0 +170767618193,213,0 +170767618241,213,0 +170767618289,213,0 +170767618337,213,0 +170767618385,213,0 +170767618433,213,0 +170767618481,214,0 +170767618530,214,0 +170767618578,214,0 +170767618626,214,0 +170767618674,214,0 +170767618722,214,0 +170767618771,214,0 +170767618819,214,0 +170767618869,215,0 +170767618917,215,0 +170767618966,215,0 +170767619016,215,0 +170767619065,215,0 +170767619113,215,0 +170767619161,215,0 +170767619209,216,0 +170767619257,215,0 +170767619305,215,0 +170767619354,214,0 +170767619402,213,0 +170767619450,213,0 +170767619500,213,0 +170767619548,214,0 +170767619597,214,0 +170767619647,214,0 +170767619695,214,0 +170767619743,214,0 +170767619791,215,0 +170767619839,215,0 +170767619887,215,0 +170767619936,215,0 +170767619984,215,0 +170767620033,215,0 +170767620083,215,0 +170767620131,215,0 +170767620179,215,0 +170767620227,215,0 +170767620275,213,0 +170767620322,213,0 +170767620370,214,0 +170767620418,214,0 +170767620466,214,0 +170767620514,214,0 +170767620562,214,0 +170767620609,214,0 +170767620659,214,0 +170767620708,215,0 +170767620756,215,0 +170767620804,215,0 +170767620852,215,0 +170767620900,215,0 +170767620948,215,0 +170767620995,215,0 +170767621043,216,0 +170767621091,215,0 +170767621139,213,0 +170767621187,213,0 +170767621237,213,0 +170767621285,214,0 +170767621332,214,0 +170767621380,214,0 +170767621428,214,0 +170767621476,214,0 +170767621526,214,0 +170767621574,215,0 +170767621623,215,0 +170767621673,215,0 +170767621722,215,0 +170767621770,215,0 +170767621820,215,0 +170767621869,215,0 +170767621917,215,0 +170767621965,215,0 +170767622013,213,0 +170767622061,213,0 +170767622109,213,0 +170767622157,214,0 +170767622205,214,0 +170767622253,214,0 +170767622301,214,0 +170767622348,214,0 +170767622398,214,0 +170767622446,215,0 +170767622494,215,0 +170767622542,215,0 +170767622590,215,0 +170767622639,215,0 +170767622687,215,0 +170767622735,215,0 +170767622783,215,0 +170767622831,215,0 +170767622880,214,0 +170767622930,213,0 +170767622978,214,0 +170767623026,214,0 +170767623075,214,0 +170767623124,214,0 +170767623172,214,0 +170767623220,214,0 +170767623268,215,0 +170767623318,215,0 +170767623367,215,0 +170767623417,215,0 +170767623465,215,0 +170767623514,215,0 +170767623564,215,0 +170767623612,215,0 +170767623661,215,0 +170767623709,215,0 +170767623759,214,0 +170767623806,214,0 +170767623854,214,0 +170767623904,214,0 +170767623952,214,0 +170767624000,214,0 +170767624048,214,0 +170767624096,214,0 +170767624144,215,0 +170767624193,214,0 +170767624241,214,0 +170767624289,215,0 +170767624337,215,0 +170767624386,215,0 +170767624436,215,0 +170767624484,215,0 +170767624532,215,0 +170767624580,215,0 +170767624628,213,0 +170767624676,213,0 +170767624725,213,0 +170767624775,214,0 +170767624824,214,0 +170767624874,214,0 +170767624922,214,0 +170767624969,214,0 +170767625019,214,0 +170767625067,214,0 +170767625115,215,0 +170767625164,214,0 +170767625212,215,0 +170767625260,215,0 +170767625308,215,0 +170767625356,215,0 +170767625404,215,0 +170767625452,215,0 +170767625500,214,0 +170767625548,213,0 +170767625597,213,0 +170767625645,214,0 +170767625695,214,0 +170767625743,214,0 +170767625791,214,0 +170767625839,215,0 +170767625888,214,0 +170767625936,215,0 +170767625986,215,0 +170767626033,215,0 +170767626083,215,0 +170767626131,215,0 +170767626179,215,0 +170767626227,215,0 +170767626275,216,0 +170767626324,215,0 +170767626372,215,0 +170767626420,214,0 +170767626470,214,0 +170767626518,214,0 +170767626565,214,0 +170767626613,214,0 +170767626663,215,0 +170767626713,214,0 +170767626760,215,0 +170767626810,215,0 +170767626858,215,0 +170767626906,215,0 +170767626954,216,0 +170767627002,215,0 +170767627051,216,0 +170767627099,215,0 +170767627147,215,0 +170767627195,215,0 +170767627243,215,0 +170767627293,214,0 +170767627342,214,0 +170767627390,214,0 +170767627438,214,0 +170767627488,214,0 +170767627535,215,0 +170767627583,215,0 +170767627631,215,0 +170767627681,215,0 +170767627729,215,0 +170767627777,215,0 +170767627825,215,0 +170767627874,215,0 +170767627924,215,0 +170767627973,215,0 +170767628021,215,0 +170767628071,215,0 +170767628120,214,0 +170767628168,214,0 +170767628216,214,0 +170767628265,215,0 +170767628315,214,0 +170767628363,214,0 +170767628411,215,0 +170767628459,215,0 +170767628507,215,0 +170767628555,215,0 +170767628603,215,0 +170767628650,215,0 +170767628698,215,0 +170767628748,215,0 +170767628796,215,0 +170767628845,215,0 +170767628893,215,0 +170767628943,215,0 +170767628991,215,0 +170767629039,214,0 +170767629087,214,0 +170767629135,214,0 +170767629182,214,0 +170767629230,215,0 +170767629278,214,0 +170767629328,215,0 +170767629376,215,0 +170767629425,215,0 +170767629473,215,0 +170767629523,215,0 +170767629570,215,0 +170767629618,215,0 +170767629668,215,0 +170767629716,215,0 +170767629765,215,0 +170767629813,215,0 +170767629861,215,0 +170767629909,214,0 +170767629957,214,0 +170767630004,214,0 +170767630052,214,0 +170767630100,214,0 +170767630150,214,0 +170767630198,214,0 +170767630245,214,0 +170767630295,215,0 +170767630344,215,0 +170767630392,215,0 +170767630440,215,0 +170767630490,215,0 +170767630538,216,0 +170767630587,215,0 +170767630635,215,0 +170767630683,215,0 +170767630731,215,0 +170767630779,214,0 +170767630827,214,0 +170767630875,214,0 +170767630924,214,0 +170767630972,214,0 +170767631020,214,0 +170767631069,214,0 +170767631117,214,0 +170767631167,215,0 +170767631215,215,0 +170767631263,215,0 +170767631311,215,0 +170767631359,215,0 +170767631408,215,0 +170767631456,215,0 +170767631504,216,0 +170767631552,215,0 +170767631600,215,0 +170767631648,214,0 +170767631695,213,0 +170767631743,213,0 +170767631791,214,0 +170767631839,214,0 +170767631887,214,0 +170767631937,214,0 +170767631984,214,0 +170767632032,215,0 +170767632080,215,0 +170767632128,215,0 +170767632177,215,0 +170767632225,215,0 +170767632275,215,0 +170767632323,215,0 +170767632372,215,0 +170767632420,215,0 +170767632468,215,0 +170767632518,214,0 +170767632567,213,0 +170767632615,213,0 +170767632663,214,0 +170767632711,214,0 +170767632759,214,0 +170767632806,214,0 +170767632854,214,0 +170767632902,214,0 +170767632950,214,0 +170767632998,215,0 +170767633048,215,0 +170767633097,215,0 +170767633147,215,0 +170767633194,215,0 +170767633242,216,0 +170767633290,215,0 +170767633338,215,0 +170767633386,214,0 +170767633434,213,0 +170767633482,213,0 +170767633529,213,0 +170767633577,213,0 +170767633627,214,0 +170767633675,214,0 +170767633723,214,0 +170767633771,214,0 +170767633820,214,0 +170767633868,214,0 +170767633916,214,0 +170767633964,215,0 +170767634013,215,0 +170767634061,215,0 +170767634109,215,0 +170767634158,215,0 +170767634206,215,0 +170767634254,215,0 +170767634302,213,0 +170767634350,213,0 +170767634398,214,0 +170767634446,214,0 +170767634494,214,0 +170767634542,214,0 +170767634590,214,0 +170767634638,214,0 +170767634685,214,0 +170767634735,214,0 +170767634783,214,0 +170767634831,215,0 +170767634879,215,0 +170767634927,215,0 +170767634974,215,0 +170767635022,215,0 +170767635072,215,0 +170767635121,215,0 +170767635169,214,0 +170767635217,213,0 +170767635265,214,0 +170767635313,214,0 +170767635361,214,0 +170767635409,214,0 +170767635458,215,0 +170767635506,214,0 +170767635554,215,0 +170767635603,215,0 +170767635651,215,0 +170767635699,215,0 +170767635747,215,0 +170767635795,215,0 +170767635843,215,0 +170767635892,215,0 +170767635942,215,0 +170767635989,215,0 +170767636039,214,0 +170767636088,213,0 +170767636136,214,0 +170767636184,214,0 +170767636232,214,0 +170767636280,214,0 +170767636328,214,0 +170767636376,214,0 +170767636424,215,0 +170767636473,215,0 +170767636521,215,0 +170767636571,215,0 +170767636619,215,0 +170767636668,215,0 +170767636718,215,0 +170767636766,215,0 +170767636814,215,0 +170767636863,215,0 +170767636911,214,0 +170767636959,214,0 +170767637007,214,0 +170767637055,214,0 +170767637103,214,0 +170767637152,214,0 +170767637202,215,0 +170767637250,215,0 +170767637298,215,0 +170767637345,215,0 +170767637393,215,0 +170767637441,215,0 +170767637489,215,0 +170767637537,215,0 +170767637585,215,0 +170767637633,215,0 +170767637681,215,0 +170767637729,215,0 +170767637777,215,0 +170767637825,214,0 +170767637873,214,0 +170767637920,214,0 +170767637970,214,0 +170767638019,214,0 +170767638067,214,0 +170767638115,215,0 +170767638165,215,0 +170767638213,215,0 +170767638260,215,0 +170767638310,215,0 +170767638358,215,0 +170767638407,215,0 +170767638457,215,0 +170767638505,216,0 +170767638554,215,0 +170767638602,215,0 +170767638650,215,0 +170767638700,215,0 +170767638750,214,0 +170767638799,214,0 +170767638847,214,0 +170767638895,214,0 +170767638943,214,0 +170767638992,215,0 +170767639040,215,0 +170767639088,215,0 +170767639136,215,0 +170767639184,215,0 +170767639233,215,0 +170767639281,215,0 +170767639329,215,0 +170767639377,215,0 +170767639425,216,0 +170767639473,215,0 +170767639521,215,0 +170767639570,215,0 +170767639618,215,0 +170767639668,214,0 +170767639716,214,0 +170767639765,214,0 +170767639815,214,0 +170767639863,214,0 +170767639910,215,0 +170767639958,215,0 +170767640006,215,0 +170767640054,215,0 +170767640102,215,0 +170767640150,215,0 +170767640198,215,0 +170767640246,215,0 +170767640294,215,0 +170767640342,215,0 +170767640390,215,0 +170767640437,215,0 +170767640485,215,0 +170767640535,214,0 +170767640583,213,0 +170767640631,214,0 +170767640679,214,0 +170767640727,214,0 +170767640774,214,0 +170767640822,214,0 +170767640870,214,0 +170767640920,214,0 +170767640969,215,0 +170767641019,215,0 +170767641068,215,0 +170767641116,215,0 +170767641164,215,0 +170767641214,215,0 +170767641262,215,0 +170767641310,215,0 +170767641358,215,0 +170767641405,215,0 +170767641455,214,0 +170767641504,213,0 +170767641552,213,0 +170767641600,213,0 +170767641650,213,0 +170767641699,214,0 +170767641749,214,0 +170767641798,214,0 +170767641846,214,0 +170767641894,214,0 +170767641942,215,0 +170767641992,215,0 +170767642039,215,0 +170767642088,215,0 +170767642135,215,0 +170767642183,215,0 +170767642231,215,0 +170767642279,215,0 +170767642329,215,0 +170767642377,213,0 +170767642425,213,0 +170767642473,213,0 +170767642522,213,0 +170767642570,213,0 +170767642619,214,0 +170767642667,214,0 +170767642717,214,0 +170767642765,214,0 +170767642813,214,0 +170767642862,214,0 +170767642912,215,0 +170767642961,215,0 +170767643011,215,0 +170767643059,215,0 +170767643108,215,0 +170767643156,215,0 +170767643204,215,0 +170767643254,215,0 +170767643303,213,0 +170767643351,213,0 +170767643401,214,0 +170767643449,213,0 +170767643496,214,0 +170767643544,214,0 +170767643592,214,0 +170767643640,214,0 +170767643688,214,0 +170767643737,214,0 +170767643785,215,0 +170767643833,215,0 +170767643881,215,0 +170767643929,215,0 +170767643977,215,0 +170767644026,215,0 +170767644074,215,0 +170767644122,215,0 +170767644170,215,0 +170767644220,213,0 +170767644268,213,0 +170767644316,213,0 +170767644364,214,0 +170767644412,214,0 +170767644460,214,0 +170767644507,214,0 +170767644557,214,0 +170767644605,214,0 +170767644653,214,0 +170767644702,214,0 +170767644750,214,0 +170767644800,215,0 +170767644849,215,0 +170767644899,215,0 +170767644947,215,0 +170767644995,215,0 +170767645044,215,0 +170767645092,215,0 +170767645140,213,0 +170767645188,213,0 +170767645236,214,0 +170767645284,214,0 +170767645332,214,0 +170767645381,214,0 +170767645429,214,0 +170767645477,214,0 +170767645525,215,0 +170767645575,215,0 +170767645623,215,0 +170767645672,215,0 +170767645720,215,0 +170767645768,215,0 +170767645818,215,0 +170767645865,215,0 +170767645913,215,0 +170767645963,214,0 +170767646012,214,0 +170767646060,213,0 +170767646108,214,0 +170767646156,214,0 +170767646204,214,0 +170767646252,214,0 +170767646301,214,0 +170767646349,215,0 +170767646397,215,0 +170767646445,215,0 +170767646493,215,0 +170767646541,215,0 +170767646589,215,0 +170767646637,215,0 +170767646686,215,0 +170767646734,216,0 +170767646782,215,0 +170767646830,215,0 +170767646880,215,0 +170767646928,214,0 +170767646975,214,0 +170767647023,214,0 +170767647073,214,0 +170767647121,214,0 +170767647169,214,0 +170767647217,214,0 +170767647264,215,0 +170767647312,214,0 +170767647360,214,0 +170767647408,215,0 +170767647456,215,0 +170767647505,215,0 +170767647555,215,0 +170767647604,215,0 +170767647652,215,0 +170767647700,215,0 +170767647748,215,0 +170767647797,215,0 +170767647845,213,0 +170767647893,213,0 +170767647941,214,0 +170767647989,214,0 +170767648037,214,0 +170767648086,214,0 +170767648134,214,0 +170767648184,214,0 +170767648232,214,0 +170767648280,215,0 +170767648328,215,0 +170767648376,215,0 +170767648423,215,0 +170767648471,215,0 +170767648521,215,0 +170767648570,215,0 +170767648618,215,0 +170767648668,215,0 +170767648717,215,0 +170767648765,213,0 +170767648813,213,0 +170767648861,214,0 +170767648909,214,0 +170767648957,214,0 +170767649006,214,0 +170767649054,214,0 +170767649102,214,0 +170767649151,214,0 +170767649199,214,0 +170767649249,215,0 +170767649297,215,0 +170767649346,215,0 +170767649394,215,0 +170767649444,215,0 +170767649492,215,0 +170767649540,215,0 +170767649588,215,0 +170767649635,215,0 +170767649683,214,0 +170767649731,214,0 +170767649779,214,0 +170767649827,214,0 +170767649875,214,0 +170767649924,214,0 +170767649972,214,0 +170767650020,215,0 +170767650068,215,0 +170767650116,215,0 +170767650163,215,0 +170767650211,215,0 +170767650259,216,0 +170767650307,215,0 +170767650355,215,0 +170767650403,215,0 +170767650451,215,0 +170767650498,215,0 +170767650546,215,0 +170767650594,214,0 +170767650642,214,0 +170767650690,214,0 +170767650738,214,0 +170767650786,214,0 +170767650834,215,0 +170767650881,215,0 +170767650929,215,0 +170767650977,215,0 +170767651025,215,0 +170767651073,215,0 +170767651121,216,0 +170767651171,216,0 +170767651218,216,0 +170767651266,215,0 +170767651316,215,0 +170767651364,215,0 +170767651413,215,0 +170767651461,215,0 +170767651509,214,0 +170767651557,214,0 +170767651605,214,0 +170767651653,214,0 +170767651701,215,0 +170767651748,215,0 +170767651798,215,0 +170767651846,215,0 +170767651895,215,0 +170767651943,215,0 +170767651991,215,0 +170767652039,216,0 +170767652089,216,0 +170767652138,216,0 +170767652186,215,0 +170767652234,215,0 +170767652282,215,0 +170767652332,215,0 +170767652380,215,0 +170767652429,214,0 +170767652477,214,0 +170767652525,214,0 +170767652575,214,0 +170767652624,214,0 +170767652674,214,0 +170767652723,214,0 +170767652771,215,0 +170767652821,214,0 +170767652869,215,0 +170767652918,215,0 +170767652966,215,0 +170767653016,215,0 +170767653064,215,0 +170767653111,215,0 +170767653159,215,0 +170767653207,215,0 +170767653255,215,0 +170767653303,214,0 +170767653351,213,0 +170767653401,213,0 +170767653448,214,0 +170767653498,214,0 +170767653547,214,0 +170767653595,214,0 +170767653643,214,0 +170767653693,214,0 +170767653742,214,0 +170767653790,215,0 +170767653838,215,0 +170767653885,215,0 +170767653933,215,0 +170767653981,215,0 +170767654029,215,0 +170767654077,215,0 +170767654126,215,0 +170767654174,215,0 +170767654222,214,0 +170767654272,213,0 +170767654320,213,0 +170767654367,213,0 +170767654417,214,0 +170767654464,214,0 +170767654512,214,0 +170767654560,214,0 +170767654608,214,0 +170767654656,214,0 +170767654703,215,0 +170767654751,215,0 +170767654801,215,0 +170767654850,215,0 +170767654900,215,0 +170767654947,215,0 +170767654995,215,0 +170767655043,215,0 +170767655091,215,0 +170767655139,213,0 +170767655186,213,0 +170767655234,213,0 +170767655282,213,0 +170767655330,214,0 +170767655378,214,0 +170767655426,214,0 +170767655473,214,0 +170767655521,214,0 +170767655569,214,0 +170767655617,215,0 +170767655667,215,0 +170767655716,215,0 +170767655764,215,0 +170767655814,215,0 +170767655863,215,0 +170767655911,215,0 +170767655959,215,0 +170767656007,215,0 +170767656057,213,0 +170767656105,213,0 +170767656154,213,0 +170767656202,213,0 +170767656250,214,0 +170767656298,214,0 +170767656346,214,0 +170767656395,214,0 +170767656443,214,0 +170767656491,215,0 +170767656541,215,0 +170767656589,215,0 +170767656637,215,0 +170767656684,215,0 +170767656732,215,0 +170767656780,215,0 +170767656828,215,0 +170767656878,215,0 +170767656926,215,0 +170767656975,213,0 +170767657023,213,0 +170767657071,213,0 +170767657120,213,0 +170767657170,213,0 +170767657218,214,0 +170767657266,213,0 +170767657315,214,0 +170767657365,214,0 +170767657413,214,0 +170767657462,214,0 +170767657510,214,0 +170767657558,215,0 +170767657606,215,0 +170767657654,215,0 +170767657702,215,0 +170767657752,215,0 +170767657800,215,0 +170767657847,215,0 +170767657895,213,0 +170767657945,213,0 +170767657993,213,0 +170767658041,213,0 +170767658089,213,0 +170767658138,213,0 +170767658188,213,0 +170767658236,213,0 +170767658284,213,0 +170767658332,213,0 +170767658380,214,0 +170767658428,214,0 +170767658477,214,0 +170767658525,214,0 +170767658573,214,0 +170767658621,214,0 +170767658669,214,0 +170767658719,215,0 +170767658768,215,0 +170767658818,213,0 +170767658866,213,0 +170767658914,213,0 +170767658962,213,0 +170767659010,213,0 +170767659059,213,0 +170767659107,213,0 +170767659155,214,0 +170767659203,214,0 +170767659253,214,0 +170767659300,214,0 +170767659348,214,0 +170767659396,215,0 +170767659444,214,0 +170767659492,215,0 +170767659540,215,0 +170767659588,215,0 +170767659637,215,0 +170767659685,214,0 +170767659733,213,0 +170767659781,213,0 +170767659831,213,0 +170767659880,214,0 +170767659928,214,0 +170767659976,214,0 +170767660024,214,0 +170767660072,214,0 +170767660120,215,0 +170767660168,215,0 +170767660216,215,0 +170767660264,215,0 +170767660313,215,0 +170767660363,216,0 +170767660412,215,0 +170767660460,215,0 +170767660508,215,0 +170767660558,215,0 +170767660606,214,0 +170767660654,213,0 +170767660702,213,0 +170767660750,213,0 +170767660797,214,0 +170767660845,214,0 +170767660893,214,0 +170767660941,214,0 +170767660989,214,0 +170767661037,214,0 +170767661084,214,0 +170767661132,214,0 +170767661180,215,0 +170767661228,215,0 +170767661276,215,0 +170767661324,215,0 +170767661372,215,0 +170767661419,215,0 +170767661467,215,0 +170767661515,213,0 +170767661563,213,0 +170767661611,213,0 +170767661659,213,0 +170767661706,213,0 +170767661754,214,0 +170767661802,214,0 +170767661850,213,0 +170767661898,214,0 +170767661946,214,0 +170767661994,214,0 +170767662041,214,0 +170767662089,215,0 +170767662137,215,0 +170767662185,215,0 +170767662233,215,0 +170767662281,215,0 +170767662329,215,0 +170767662377,215,0 +170767662425,213,0 +170767662473,213,0 +170767662521,213,0 +170767662569,213,0 +170767662616,213,0 +170767662664,213,0 +170767662714,213,0 +170767662762,214,0 +170767662810,214,0 +170767662858,214,0 +170767662907,214,0 +170767662955,214,0 +170767663003,214,0 +170767663051,214,0 +170767663099,215,0 +170767663147,215,0 +170767663194,214,0 +170767663242,215,0 +170767663290,215,0 +170767663339,214,0 +170767663387,213,0 +170767663435,213,0 +170767663483,213,0 +170767663531,213,0 +170767663579,213,0 +170767663626,214,0 +170767663674,213,0 +170767663722,214,0 +170767663770,214,0 +170767663818,214,0 +170767663866,214,0 +170767663914,214,0 +170767663961,215,0 +170767664011,215,0 +170767664059,215,0 +170767664106,215,0 +170767664154,215,0 +170767664202,215,0 +170767664250,214,0 +170767664298,213,0 +170767664346,213,0 +170767664394,213,0 +170767664441,214,0 +170767664489,214,0 +170767664537,214,0 +170767664585,214,0 +170767664633,214,0 +170767664681,214,0 +170767664728,214,0 +170767664776,215,0 +170767664826,215,0 +170767664874,215,0 +170767664921,215,0 +170767664969,215,0 +170767665017,215,0 +170767665065,215,0 +170767665113,215,0 +170767665163,214,0 +170767665211,213,0 +170767665260,213,0 +170767665310,214,0 +170767665359,214,0 +170767665407,214,0 +170767665455,214,0 +170767665504,214,0 +170767665554,214,0 +170767665602,214,0 +170767665650,215,0 +170767665698,215,0 +170767665747,215,0 +170767665795,215,0 +170767665843,215,0 +170767665891,215,0 +170767665938,215,0 +170767665986,215,0 +170767666034,215,0 +170767666082,214,0 +170767666130,213,0 +170767666178,213,0 +170767666225,213,0 +170767666273,214,0 +170767666321,214,0 +170767666369,214,0 +170767666417,214,0 +170767666465,214,0 +170767666513,214,0 +170767666560,214,0 +170767666608,215,0 +170767666656,214,0 +170767666704,215,0 +170767666752,215,0 +170767666800,215,0 +170767666848,215,0 +170767666895,215,0 +170767666943,215,0 +170767666991,214,0 +170767667039,213,0 +170767667087,213,0 +170767667135,213,0 +170767667184,214,0 +170767667232,214,0 +170767667280,214,0 +170767667327,214,0 +170767667375,214,0 +170767667423,214,0 +170767667471,214,0 +170767667520,214,0 +170767667568,215,0 +170767667618,215,0 +170767667666,215,0 +170767667713,215,0 +170767667761,215,0 +170767667809,215,0 +170767667857,215,0 +170767667905,214,0 +170767667953,213,0 +170767668001,213,0 +170767668050,213,0 +170767668098,213,0 +170767668146,214,0 +170767668194,214,0 +170767668242,214,0 +170767668290,214,0 +170767668338,214,0 +170767668386,215,0 +170767668434,215,0 +170767668482,215,0 +170767668530,215,0 +170767668579,215,0 +170767668627,215,0 +170767668675,215,0 +170767668723,215,0 +170767668772,215,0 +170767668820,214,0 +170767668868,213,0 +170767668916,214,0 +170767668966,214,0 +170767669014,214,0 +170767669063,214,0 +170767669111,214,0 +170767669159,214,0 +170767669208,214,0 +170767669258,215,0 +170767669308,215,0 +170767669355,215,0 +170767669403,215,0 +170767669451,215,0 +170767669499,215,0 +170767669547,215,0 +170767669597,215,0 +170767669645,215,0 +170767669694,215,0 +170767669744,214,0 +170767669792,214,0 +170767669841,214,0 +170767669891,214,0 +170767669939,214,0 +170767669987,214,0 +170767670034,214,0 +170767670082,215,0 +170767670130,215,0 +170767670178,215,0 +170767670226,215,0 +170767670273,215,0 +170767670321,215,0 +170767670369,215,0 +170767670417,215,0 +170767670465,215,0 +170767670513,216,0 +170767670562,215,0 +170767670610,215,0 +170767670658,214,0 +170767670706,214,0 +170767670754,213,0 +170767670803,214,0 +170767670851,214,0 +170767670901,214,0 +170767670949,214,0 +170767670997,215,0 +170767671045,215,0 +170767671093,215,0 +170767671141,215,0 +170767671189,215,0 +170767671236,215,0 +170767671284,215,0 +170767671332,215,0 +170767671380,215,0 +170767671428,215,0 +170767671478,215,0 +170767671527,215,0 +170767671575,214,0 +170767671623,213,0 +170767671671,213,0 +170767671719,213,0 +170767671767,214,0 +170767671817,214,0 +170767671864,214,0 +170767671914,214,0 +170767671964,214,0 +170767672013,215,0 +170767672061,215,0 +170767672109,215,0 +170767672157,215,0 +170767672206,215,0 +170767672254,215,0 +170767672302,215,0 +170767672350,215,0 +170767672398,215,0 +170767672446,215,0 +170767672494,213,0 +170767672542,213,0 +170767672591,213,0 +170767672641,213,0 +170767672689,214,0 +170767672738,214,0 +170767672786,214,0 +170767672834,214,0 +170767672882,214,0 +170767672930,214,0 +170767672978,214,0 +170767673025,214,0 +170767673075,215,0 +170767673123,215,0 +170767673171,215,0 +170767673219,215,0 +170767673267,215,0 +170767673315,215,0 +170767673362,215,0 +170767673410,213,0 +170767673458,213,0 +170767673506,213,0 +170767673554,213,0 +170767673602,213,0 +170767673650,214,0 +170767673698,214,0 +170767673746,214,0 +170767673795,214,0 +170767673843,214,0 +170767673893,215,0 +170767673941,215,0 +170767673989,215,0 +170767674037,215,0 +170767674085,215,0 +170767674132,215,0 +170767674180,215,0 +170767674228,215,0 +170767674278,215,0 +170767674326,213,0 +170767674375,213,0 +170767674425,213,0 +170767674473,213,0 +170767674521,213,0 +170767674569,213,0 +170767674618,214,0 +170767674668,214,0 +170767674717,214,0 +170767674765,214,0 +170767674813,214,0 +170767674861,215,0 +170767674909,215,0 +170767674957,215,0 +170767675005,215,0 +170767675053,215,0 +170767675102,215,0 +170767675152,215,0 +170767675200,215,0 +170767675248,213,0 +170767675296,213,0 +170767675343,213,0 +170767675393,213,0 +170767675441,214,0 +170767675489,213,0 +170767675537,214,0 +170767675585,214,0 +170767675633,214,0 +170767675682,214,0 +170767675732,214,0 +170767675779,215,0 +170767675829,215,0 +170767675877,215,0 +170767675926,215,0 +170767675974,215,0 +170767676022,215,0 +170767676070,215,0 +170767676119,215,0 +170767676169,213,0 +170767676217,213,0 +170767676264,213,0 +170767676312,213,0 +170767676360,213,0 +170767676408,214,0 +170767676456,213,0 +170767676504,214,0 +170767676553,214,0 +170767676601,214,0 +170767676649,214,0 +170767676697,214,0 +170767676747,214,0 +170767676796,214,0 +170767676844,215,0 +170767676894,215,0 +170767676941,215,0 +170767676989,215,0 +170767677037,215,0 +170767677085,213,0 +170767677133,213,0 +170767677181,213,0 +170767677228,213,0 +170767677276,213,0 +170767677324,213,0 +170767677372,214,0 +170767677420,214,0 +170767677468,214,0 +170767677517,214,0 +170767677565,214,0 +170767677613,214,0 +170767677661,215,0 +170767677711,215,0 +170767677760,215,0 +170767677810,215,0 +170767677858,215,0 +170767677905,215,0 +170767677953,215,0 +170767678001,213,0 +170767678049,213,0 +170767678097,213,0 +170767678146,214,0 +170767678194,214,0 +170767678244,214,0 +170767678292,214,0 +170767678341,214,0 +170767678389,214,0 +170767678437,214,0 +170767678485,215,0 +170767678535,214,0 +170767678583,214,0 +170767678631,215,0 +170767678679,215,0 +170767678727,215,0 +170767678775,215,0 +170767678823,215,0 +170767678872,215,0 +170767678920,213,0 +170767678968,213,0 +170767679016,214,0 +170767679065,214,0 +170767679113,214,0 +170767679161,214,0 +170767679209,214,0 +170767679257,214,0 +170767679304,214,0 +170767679352,214,0 +170767679400,215,0 +170767679448,215,0 +170767679495,215,0 +170767679543,215,0 +170767679591,215,0 +170767679639,215,0 +170767679687,215,0 +170767679734,215,0 +170767679782,215,0 +170767679830,213,0 +170767679878,213,0 +170767679926,214,0 +170767679973,214,0 +170767680023,214,0 +170767680071,214,0 +170767680120,214,0 +170767680168,214,0 +170767680216,214,0 +170767680265,215,0 +170767680313,215,0 +170767680361,215,0 +170767680408,215,0 +170767680456,215,0 +170767680504,215,0 +170767680552,215,0 +170767680600,215,0 +170767680648,215,0 +170767680695,215,0 +170767680743,213,0 +170767680791,213,0 +170767680839,214,0 +170767680887,214,0 +170767680934,214,0 +170767680982,214,0 +170767681030,214,0 +170767681078,214,0 +170767681128,214,0 +170767681175,215,0 +170767681223,215,0 +170767681271,215,0 +170767681319,215,0 +170767681367,215,0 +170767681414,215,0 +170767681462,215,0 +170767681510,215,0 +170767681558,215,0 +170767681606,215,0 +170767681653,214,0 +170767681701,213,0 +170767681749,213,0 +170767681797,214,0 +170767681845,214,0 +170767681894,214,0 +170767681942,214,0 +170767681991,214,0 +170767682039,214,0 +170767682089,214,0 +170767682136,215,0 +170767682184,215,0 +170767682232,215,0 +170767682280,215,0 +170767682327,215,0 +170767682375,215,0 +170767682423,215,0 +170767682471,215,0 +170767682519,215,0 +170767682567,214,0 +170767682615,214,0 +170767682664,213,0 +170767682714,213,0 +170767682762,213,0 +170767682811,214,0 +170767682859,214,0 +170767682907,214,0 +170767682956,214,0 +170767683006,214,0 +170767683054,214,0 +170767683102,215,0 +170767683150,215,0 +170767683199,215,0 +170767683247,215,0 +170767683295,215,0 +170767683343,215,0 +170767683391,215,0 +170767683439,215,0 +170767683488,215,0 +170767683536,214,0 +170767683586,213,0 +170767683633,213,0 +170767683681,213,0 +170767683729,213,0 +170767683777,213,0 +170767683825,214,0 +170767683873,214,0 +170767683921,214,0 +170767683969,214,0 +170767684016,214,0 +170767684064,214,0 +170767684112,215,0 +170767684160,215,0 +170767684208,215,0 +170767684255,215,0 +170767684305,215,0 +170767684353,215,0 +170767684402,215,0 +170767684452,214,0 +170767684500,213,0 +170767684548,213,0 +170767684597,213,0 +170767684647,213,0 +170767684695,214,0 +170767684743,214,0 +170767684791,214,0 +170767684839,214,0 +170767684886,215,0 +170767684934,215,0 +170767684982,215,0 +170767685032,215,0 +170767685080,215,0 +170767685129,215,0 +170767685177,215,0 +170767685227,215,0 +170767685275,215,0 +170767685323,215,0 +170767685372,215,0 +170767685420,213,0 +170767685468,213,0 +170767685516,213,0 +170767685564,213,0 +170767685611,214,0 +170767685659,214,0 +170767685709,214,0 +170767685757,214,0 +170767685804,214,0 +170767685852,214,0 +170767685900,215,0 +170767685948,215,0 +170767685996,215,0 +170767686044,215,0 +170767686091,215,0 +170767686139,215,0 +170767686187,215,0 +170767686235,215,0 +170767686283,215,0 +170767686331,214,0 +170767686378,213,0 +170767686426,213,0 +170767686474,213,0 +170767686522,213,0 +170767686570,213,0 +170767686618,213,0 +170767686665,213,0 +170767686713,214,0 +170767686761,214,0 +170767686809,214,0 +170767686858,214,0 +170767686906,214,0 +170767686954,214,0 +170767687002,214,0 +170767687050,214,0 +170767687099,214,0 +170767687147,215,0 +170767687195,215,0 +170767687243,215,0 +170767687290,213,0 +170767687338,213,0 +170767687386,214,0 +170767687434,214,0 +170767687482,213,0 +170767687530,214,0 +170767687578,214,0 +170767687625,214,0 +170767687673,214,0 +170767687721,214,0 +170767687769,214,0 +170767687818,214,0 +170767687866,215,0 +170767687914,215,0 +170767687962,215,0 +170767688010,215,0 +170767688058,215,0 +170767688105,215,0 +170767688153,215,0 +170767688201,214,0 +170767688249,214,0 +170767688297,214,0 +170767688345,214,0 +170767688394,214,0 +170767688442,214,0 +170767688491,214,0 +170767688539,214,0 +170767688587,215,0 +170767688635,215,0 +170767688683,215,0 +170767688730,215,0 +170767688778,215,0 +170767688826,215,0 +170767688874,215,0 +170767688923,215,0 +170767688971,215,0 +170767689019,215,0 +170767689067,215,0 +170767689114,214,0 +170767689162,214,0 +170767689210,214,0 +170767689258,214,0 +170767689306,214,0 +170767689354,214,0 +170767689401,215,0 +170767689449,215,0 +170767689497,215,0 +170767689545,215,0 +170767689593,215,0 +170767689640,215,0 +170767689688,215,0 +170767689736,216,0 +170767689784,215,0 +170767689832,215,0 +170767689881,216,0 +170767689929,215,0 +170767689979,215,0 +170767690028,215,0 +170767690076,214,0 +170767690126,214,0 +170767690173,214,0 +170767690221,214,0 +170767690269,214,0 +170767690319,214,0 +170767690368,215,0 +170767690416,215,0 +170767690466,215,0 +170767690514,215,0 +170767690562,215,0 +170767690609,216,0 +170767690657,215,0 +170767690705,215,0 +170767690753,216,0 +170767690803,215,0 +170767690851,215,0 +170767690899,215,0 +170767690947,215,0 +170767690995,213,0 +170767691042,213,0 +170767691090,213,0 +170767691138,213,0 +170767691188,214,0 +170767691236,214,0 +170767691284,214,0 +170767691332,214,0 +170767691381,214,0 +170767691429,214,0 +170767691479,215,0 +170767691528,215,0 +170767691576,215,0 +170767691625,215,0 +170767691673,215,0 +170767691721,215,0 +170767691769,215,0 +170767691819,215,0 +170767691866,215,0 +170767691914,214,0 +170767691962,213,0 +170767692010,213,0 +170767692060,213,0 +170767692108,213,0 +170767692156,213,0 +170767692205,214,0 +170767692253,214,0 +170767692301,214,0 +170767692349,214,0 +170767692397,214,0 +170767692445,214,0 +170767692494,215,0 +170767692542,215,0 +170767692590,215,0 +170767692638,215,0 +170767692686,215,0 +170767692735,215,0 +170767692783,215,0 +170767692832,215,0 +170767692880,213,0 +170767692928,213,0 +170767692976,213,0 +170767693024,213,0 +170767693072,213,0 +170767693120,214,0 +170767693168,213,0 +170767693216,214,0 +170767693263,214,0 +170767693311,214,0 +170767693359,214,0 +170767693407,214,0 +170767693454,214,0 +170767693502,215,0 +170767693550,215,0 +170767693598,215,0 +170767693646,215,0 +170767693695,215,0 +170767693745,215,0 +170767693792,214,0 +170767693840,213,0 +170767693888,214,0 +170767693936,213,0 +170767693984,214,0 +170767694033,214,0 +170767694081,214,0 +170767694129,214,0 +170767694177,214,0 +170767694225,214,0 +170767694272,215,0 +170767694320,215,0 +170767694368,215,0 +170767694416,215,0 +170767694464,215,0 +170767694512,215,0 +170767694560,215,0 +170767694607,215,0 +170767694655,215,0 +170767694703,215,0 +170767694753,214,0 +170767694800,213,0 +170767694848,214,0 +170767694896,214,0 +170767694944,214,0 +170767694992,214,0 +170767695040,214,0 +170767695088,214,0 +170767695137,214,0 +170767695185,215,0 +170767695233,215,0 +170767695281,215,0 +170767695328,215,0 +170767695376,215,0 +170767695426,215,0 +170767695474,215,0 +170767695523,215,0 +170767695571,215,0 +170767695619,215,0 +170767695667,213,0 +170767695717,213,0 +170767695764,214,0 +170767695814,214,0 +170767695862,214,0 +170767695910,214,0 +170767695958,214,0 +170767696006,214,0 +170767696055,215,0 +170767696103,215,0 +170767696153,215,0 +170767696202,215,0 +170767696252,215,0 +170767696300,215,0 +170767696349,215,0 +170767696397,215,0 +170767696445,215,0 +170767696493,215,0 +170767696542,216,0 +170767696590,214,0 +170767696640,214,0 +170767696689,214,0 +170767696737,214,0 +170767696785,214,0 +170767696835,214,0 +170767696883,214,0 +170767696931,214,0 +170767696980,215,0 +170767697029,215,0 +170767697077,215,0 +170767697125,215,0 +170767697173,215,0 +170767697222,215,0 +170767697270,215,0 +170767697318,215,0 +170767697366,215,0 +170767697414,215,0 +170767697462,215,0 +170767697510,214,0 +170767697559,214,0 +170767697608,214,0 +170767697656,214,0 +170767697706,214,0 +170767697754,214,0 +170767697802,214,0 +170767697850,215,0 +170767697898,215,0 +170767697946,215,0 +170767697995,215,0 +170767698043,215,0 +170767698091,215,0 +170767698139,215,0 +170767698189,215,0 +170767698237,215,0 +170767698285,215,0 +170767698333,215,0 +170767698381,215,0 +170767698429,215,0 +170767698477,214,0 +170767698526,214,0 +170767698574,214,0 +170767698622,214,0 +170767698670,214,0 +170767698718,214,0 +170767698766,214,0 +170767698815,214,0 +170767698863,215,0 +170767698911,215,0 +170767698959,215,0 +170767699008,215,0 +170767699056,215,0 +170767699104,215,0 +170767699152,216,0 +170767699199,216,0 +170767699247,216,0 +170767699295,215,0 +170767699345,215,0 +170767699392,214,0 +170767699440,213,0 +170767699488,213,0 +170767699536,213,0 +170767699584,214,0 +170767699631,214,0 +170767699679,214,0 +170767699727,214,0 +170767699775,214,0 +170767699823,214,0 +170767699871,214,0 +170767699920,215,0 +170767699968,215,0 +170767700015,215,0 +170767700063,215,0 +170767700111,215,0 +170767700159,215,0 +170767700207,215,0 +170767700255,215,0 +170767700302,214,0 +170767700350,213,0 +170767700398,213,0 +170767700446,213,0 +170767700494,213,0 +170767700542,213,0 +170767700590,213,0 +170767700637,214,0 +170767700685,214,0 +170767700733,214,0 +170767700781,214,0 +170767700829,214,0 +170767700876,214,0 +170767700924,214,0 +170767700972,214,0 +170767701020,215,0 +170767701068,215,0 +170767701117,215,0 +170767701165,215,0 +170767701213,215,0 +170767701261,213,0 +170767701309,213,0 +170767701357,213,0 +170767701404,213,0 +170767701452,213,0 +170767701500,214,0 +170767701548,214,0 +170767701596,214,0 +170767701645,214,0 +170767701693,214,0 +170767701743,214,0 +170767701791,216,0 +170767701840,214,0 +170767701888,215,0 +170767701937,215,0 +170767701985,215,0 +170767702035,215,0 +170767702083,215,0 +170767702132,215,0 +170767702180,214,0 +170767702230,213,0 +170767702279,213,0 +170767702329,213,0 +170767702378,213,0 +170767702426,213,0 +170767702476,213,0 +170767702524,214,0 +170767702572,214,0 +170767702620,214,0 +170767702668,214,0 +170767702716,214,0 +170767702763,214,0 +170767702811,214,0 +170767702861,215,0 +170767702909,215,0 +170767702957,215,0 +170767703005,215,0 +170767703054,215,0 +170767703102,215,0 +170767703152,213,0 +170767703199,213,0 +170767703247,213,0 +170767703295,213,0 +170767703343,213,0 +170767703393,213,0 +170767703442,214,0 +170767703490,214,0 +170767703538,214,0 +170767703586,214,0 +170767703634,214,0 +170767703682,214,0 +170767703729,214,0 +170767703777,214,0 +170767703827,214,0 +170767703875,215,0 +170767703924,215,0 +170767703974,215,0 +170767704022,215,0 +170767704070,213,0 +170767704119,213,0 +170767704167,213,0 +170767704216,213,0 +170767704264,213,0 +170767704314,214,0 +170767704361,214,0 +170767704409,213,0 +170767704459,214,0 +170767704507,214,0 +170767704554,214,0 +170767704602,214,0 +170767704650,214,0 +170767704698,214,0 +170767704748,215,0 +170767704796,215,0 +170767704843,214,0 +170767704891,215,0 +170767704939,215,0 +170767704987,213,0 +170767705037,213,0 +170767705085,213,0 +170767705134,214,0 +170767705184,214,0 +170767705231,214,0 +170767705279,214,0 +170767705327,214,0 +170767705375,214,0 +170767705423,214,0 +170767705471,214,0 +170767705521,214,0 +170767705569,215,0 +170767705617,215,0 +170767705665,215,0 +170767705713,215,0 +170767705760,215,0 +170767705808,215,0 +170767705858,215,0 +170767705906,214,0 +170767705954,213,0 +170767706003,214,0 +170767706051,213,0 +170767706099,214,0 +170767706147,214,0 +170767706195,214,0 +170767706243,214,0 +170767706292,214,0 +170767706342,215,0 +170767706390,215,0 +170767706438,215,0 +170767706485,215,0 +170767706533,215,0 +170767706581,216,0 +170767706629,216,0 +170767706679,216,0 +170767706727,215,0 +170767706775,215,0 +170767706823,214,0 +170767706871,213,0 +170767706918,213,0 +170767706966,214,0 +170767707014,214,0 +170767707062,214,0 +170767707110,214,0 +170767707158,214,0 +170767707206,214,0 +170767707254,215,0 +170767707301,215,0 +170767707349,215,0 +170767707397,215,0 +170767707445,215,0 +170767707493,215,0 +170767707543,215,0 +170767707590,215,0 +170767707638,215,0 +170767707686,215,0 +170767707734,215,0 +170767707784,213,0 +170767707831,213,0 +170767707879,213,0 +170767707927,213,0 +170767707975,214,0 +170767708023,214,0 +170767708073,214,0 +170767708120,214,0 +170767708168,214,0 +170767708218,214,0 +170767708266,215,0 +170767708314,215,0 +170767708362,215,0 +170767708410,215,0 +170767708459,215,0 +170767708509,215,0 +170767708557,215,0 +170767708606,215,0 +170767708654,215,0 +170767708702,214,0 +170767708750,213,0 +170767708799,213,0 +170767708849,214,0 +170767708898,214,0 +170767708946,214,0 +170767708996,214,0 +170767709045,214,0 +170767709095,214,0 +170767709143,214,0 +170767709192,214,0 +170767709240,215,0 +170767709288,215,0 +170767709338,215,0 +170767709387,215,0 +170767709437,215,0 +170767709484,215,0 +170767709534,215,0 +170767709582,215,0 +170767709631,214,0 +170767709679,213,0 +170767709727,213,0 +170767709775,213,0 +170767709822,213,0 +170767709870,214,0 +170767709918,214,0 +170767709966,214,0 +170767710014,214,0 +170767710062,214,0 +170767710110,214,0 +170767710157,215,0 +170767710205,215,0 +170767710253,215,0 +170767710301,215,0 +170767710349,215,0 +170767710397,215,0 +170767710445,215,0 +170767710492,215,0 +170767710542,214,0 +170767710590,213,0 +170767710639,213,0 +170767710689,213,0 +170767710737,213,0 +170767710786,214,0 +170767710834,214,0 +170767710884,214,0 +170767710933,214,0 +170767710983,214,0 +170767711031,215,0 +170767711079,215,0 +170767711128,215,0 +170767711176,215,0 +170767711224,215,0 +170767711272,215,0 +170767711320,215,0 +170767711368,216,0 +170767711417,215,0 +170767711465,214,0 +170767711515,213,0 +170767711563,213,0 +170767711612,213,0 +170767711660,214,0 +170767711708,214,0 +170767711756,214,0 +170767711806,214,0 +170767711855,215,0 +170767711903,215,0 +170767711951,214,0 +170767711999,215,0 +170767712047,215,0 +170767712095,215,0 +170767712143,215,0 +170767712192,215,0 +170767712240,215,0 +170767712290,215,0 +170767712338,215,0 +170767712386,215,0 +170767712435,213,0 +170767712483,213,0 +170767712533,213,0 +170767712581,214,0 +170767712630,214,0 +170767712680,214,0 +170767712728,214,0 +170767712777,214,0 +170767712827,214,0 +170767712875,214,0 +170767712922,215,0 +170767712972,215,0 +170767713020,215,0 +170767713069,215,0 +170767713117,215,0 +170767713165,215,0 +170767713213,215,0 +170767713261,215,0 +170767713309,215,0 +170767713357,213,0 +170767713405,213,0 +170767713453,213,0 +170767713501,214,0 +170767713549,214,0 +170767713598,214,0 +170767713646,214,0 +170767713694,214,0 +170767713743,214,0 +170767713793,215,0 +170767713841,215,0 +170767713889,215,0 +170767713938,215,0 +170767713988,215,0 +170767714036,215,0 +170767714084,215,0 +170767714133,215,0 +170767714181,216,0 +170767714229,215,0 +170767714277,214,0 +170767714325,213,0 +170767714374,214,0 +170767714422,214,0 +170767714472,214,0 +170767714521,214,0 +170767714571,214,0 +170767714619,214,0 +170767714668,214,0 +170767714716,215,0 +170767714764,215,0 +170767714812,215,0 +170767714861,215,0 +170767714911,215,0 +170767714960,215,0 +170767715010,215,0 +170767715058,215,0 +170767715106,215,0 +170767715154,215,0 +170767715202,214,0 +170767715251,213,0 +170767715301,213,0 +170767715349,214,0 +170767715397,214,0 +170767715445,214,0 +170767715494,214,0 +170767715543,214,0 +170767715591,214,0 +170767715639,214,0 +170767715687,215,0 +170767715735,215,0 +170767715783,215,0 +170767715832,215,0 +170767715880,215,0 +170767715928,216,0 +170767715976,215,0 +170767716024,215,0 +170767716073,215,0 +170767716121,214,0 +170767716169,213,0 +170767716217,213,0 +170767716265,213,0 +170767716313,214,0 +170767716361,214,0 +170767716410,213,0 +170767716458,214,0 +170767716506,214,0 +170767716553,214,0 +170767716601,214,0 +170767716649,215,0 +170767716697,215,0 +170767716745,215,0 +170767716793,215,0 +170767716841,215,0 +170767716888,215,0 +170767716936,215,0 +170767716984,215,0 +170767717032,215,0 +170767717080,213,0 +170767717128,213,0 +170767717178,213,0 +170767717226,214,0 +170767717274,213,0 +170767717321,214,0 +170767717369,214,0 +170767717417,214,0 +170767717465,214,0 +170767717515,214,0 +170767717563,214,0 +170767717612,214,0 +170767717661,215,0 +170767717711,215,0 +170767717759,215,0 +170767717807,215,0 +170767717855,216,0 +170767717904,216,0 +170767717952,215,0 +170767718000,213,0 +170767718048,213,0 +170767718096,213,0 +170767718144,213,0 +170767718194,214,0 +170767718242,214,0 +170767718290,213,0 +170767718339,214,0 +170767718389,214,0 +170767718436,214,0 +170767718484,214,0 +170767718534,215,0 +170767718582,215,0 +170767718630,215,0 +170767718679,215,0 +170767718727,215,0 +170767718775,215,0 +170767718823,215,0 +170767718871,215,0 +170767718919,214,0 +170767718967,213,0 +170767719015,213,0 +170767719064,213,0 +170767719112,214,0 +170767719160,214,0 +170767719208,214,0 +170767719256,214,0 +170767719304,214,0 +170767719354,214,0 +170767719401,214,0 +170767719449,214,0 +170767719497,215,0 +170767719545,215,0 +170767719593,215,0 +170767719641,215,0 +170767719689,215,0 +170767719738,215,0 +170767719786,215,0 +170767719836,214,0 +170767719884,213,0 +170767719932,213,0 +170767719980,213,0 +170767720028,213,0 +170767720076,213,0 +170767720124,214,0 +170767720172,214,0 +170767720220,214,0 +170767720267,214,0 +170767720317,214,0 +170767720365,214,0 +170767720413,214,0 +170767720461,214,0 +170767720510,215,0 +170767720560,215,0 +170767720608,215,0 +170767720655,215,0 +170767720703,215,0 +170767720751,215,0 +170767720799,213,0 +170767720849,213,0 +170767720898,213,0 +170767720946,214,0 +170767720994,214,0 +170767721042,214,0 +170767721090,214,0 +170767721137,214,0 +170767721185,214,0 +170767721233,214,0 +170767721281,215,0 +170767721329,215,0 +170767721377,215,0 +170767721425,215,0 +170767721474,215,0 +170767721522,215,0 +170767721571,215,0 +170767721619,215,0 +170767721669,215,0 +170767721716,213,0 +170767721764,213,0 +170767721812,213,0 +170767721860,213,0 +170767721908,214,0 +170767721956,213,0 +170767722004,214,0 +170767722051,214,0 +170767722099,214,0 +170767722147,214,0 +170767722195,214,0 +170767722243,215,0 +170767722291,215,0 +170767722339,215,0 +170767722388,215,0 +170767722438,215,0 +170767722486,215,0 +170767722535,215,0 +170767722583,215,0 +170767722631,215,0 +170767722679,213,0 +170767722727,214,0 +170767722775,213,0 +170767722823,214,0 +170767722871,214,0 +170767722919,214,0 +170767722967,214,0 +170767723015,214,0 +170767723064,214,0 +170767723114,214,0 +170767723161,215,0 +170767723209,215,0 +170767723257,215,0 +170767723307,215,0 +170767723355,215,0 +170767723403,215,0 +170767723451,215,0 +170767723499,215,0 +170767723548,215,0 +170767723596,213,0 +170767723644,213,0 +170767723692,213,0 +170767723740,213,0 +170767723788,213,0 +170767723837,214,0 +170767723885,213,0 +170767723935,214,0 +170767723984,214,0 +170767724034,214,0 +170767724082,214,0 +170767724130,215,0 +170767724178,215,0 +170767724227,215,0 +170767724275,215,0 +170767724323,215,0 +170767724373,215,0 +170767724421,215,0 +170767724468,215,0 +170767724518,213,0 +170767724568,213,0 +170767724617,213,0 +170767724666,213,0 +170767724714,213,0 +170767724762,214,0 +170767724810,214,0 +170767724858,214,0 +170767724906,214,0 +170767724954,214,0 +170767725002,214,0 +170767725049,214,0 +170767725097,215,0 +170767725145,215,0 +170767725193,215,0 +170767725241,215,0 +170767725289,215,0 +170767725338,215,0 +170767725386,215,0 +170767725434,214,0 +170767725482,213,0 +170767725530,213,0 +170767725577,213,0 +170767725625,213,0 +170767725673,213,0 +170767725721,214,0 +170767725769,214,0 +170767725817,214,0 +170767725865,214,0 +170767725912,214,0 +170767725960,214,0 +170767726008,214,0 +170767726056,215,0 +170767726104,215,0 +170767726153,215,0 +170767726201,215,0 +170767726249,215,0 +170767726297,215,0 +170767726345,215,0 +170767726393,213,0 +170767726441,213,0 +170767726488,213,0 +170767726536,213,0 +170767726586,213,0 +170767726634,214,0 +170767726681,214,0 +170767726731,214,0 +170767726780,214,0 +170767726828,214,0 +170767726876,215,0 +170767726924,215,0 +170767726972,215,0 +170767727020,215,0 +170767727068,215,0 +170767727117,216,0 +170767727165,215,0 +170767727215,215,0 +170767727263,215,0 +170767727311,213,0 +170767727358,213,0 +170767727406,214,0 +170767727454,213,0 +170767727504,214,0 +170767727553,214,0 +170767727601,214,0 +170767727649,214,0 +170767727697,214,0 +170767727745,214,0 +170767727794,214,0 +170767727844,215,0 +170767727892,215,0 +170767727941,215,0 +170767727989,215,0 +170767728037,215,0 +170767728087,215,0 +170767728136,215,0 +170767728184,215,0 +170767728232,214,0 +170767728280,213,0 +170767728328,214,0 +170767728377,214,0 +170767728425,214,0 +170767728473,214,0 +170767728523,214,0 +170767728572,214,0 +170767728620,215,0 +170767728668,215,0 +170767728716,215,0 +170767728766,215,0 +170767728813,215,0 +170767728861,215,0 +170767728909,215,0 +170767728959,215,0 +170767729008,215,0 +170767729056,216,0 +170767729104,215,0 +170767729152,214,0 +170767729200,213,0 +170767729248,214,0 +170767729298,214,0 +170767729346,214,0 +170767729395,214,0 +170767729443,214,0 +170767729491,214,0 +170767729539,215,0 +170767729587,215,0 +170767729635,215,0 +170767729683,215,0 +170767729731,215,0 +170767729779,215,0 +170767729828,215,0 +170767729878,215,0 +170767729926,215,0 +170767729974,215,0 +170767730022,215,0 +170767730070,214,0 +170767730117,213,0 +170767730165,213,0 +170767730215,214,0 +170767730263,214,0 +170767730312,214,0 +170767730362,214,0 +170767730411,214,0 +170767730461,214,0 +170767730509,214,0 +170767730557,215,0 +170767730604,215,0 +170767730654,215,0 +170767730702,215,0 +170767730751,215,0 +170767730799,215,0 +170767730847,215,0 +170767730895,216,0 +170767730943,215,0 +170767730991,214,0 +170767731039,213,0 +170767731087,213,0 +170767731135,213,0 +170767731185,213,0 +170767731234,214,0 +170767731283,214,0 +170767731331,214,0 +170767731379,214,0 +170767731429,214,0 +170767731479,214,0 +170767731528,214,0 +170767731576,214,0 +170767731624,215,0 +170767731672,215,0 +170767731720,215,0 +170767731768,215,0 +170767731817,215,0 +170767731865,215,0 +170767731913,215,0 +170767731961,213,0 +170767732009,213,0 +170767732057,213,0 +170767732105,213,0 +170767732153,213,0 +170767732201,213,0 +170767732250,213,0 +170767732298,214,0 +170767732346,214,0 +170767732394,214,0 +170767732442,214,0 +170767732492,214,0 +170767732540,214,0 +170767732588,214,0 +170767732636,215,0 +170767732684,215,0 +170767732731,215,0 +170767732779,215,0 +170767732829,215,0 +170767732877,213,0 +170767732926,213,0 +170767732976,213,0 +170767733024,213,0 +170767733072,213,0 +170767733120,214,0 +170767733168,213,0 +170767733217,214,0 +170767733265,214,0 +170767733313,214,0 +170767733363,214,0 +170767733411,214,0 +170767733459,215,0 +170767733507,215,0 +170767733555,215,0 +170767733603,215,0 +170767733651,215,0 +170767733700,215,0 +170767733748,215,0 +170767733796,213,0 +170767733846,213,0 +170767733894,213,0 +170767733941,213,0 +170767733989,213,0 +170767734037,213,0 +170767734085,213,0 +170767734135,214,0 +170767734183,214,0 +170767734230,214,0 +170767734278,214,0 +170767734326,214,0 +170767734374,215,0 +170767734422,215,0 +170767734470,215,0 +170767734518,215,0 +170767734565,215,0 +170767734613,215,0 +170767734661,215,0 +170767734709,214,0 +170767734757,213,0 +170767734805,213,0 +170767734852,213,0 +170767734900,213,0 +170767734948,213,0 +170767734996,213,0 +170767735044,213,0 +170767735092,213,0 +170767735140,214,0 +170767735187,214,0 +170767735235,214,0 +170767735283,214,0 +170767735331,214,0 +170767735379,215,0 +170767735427,215,0 +170767735475,215,0 +170767735522,215,0 +170767735570,215,0 +170767735618,215,0 +170767735666,213,0 +170767735714,213,0 +170767735762,213,0 +170767735811,213,0 +170767735859,213,0 +170767735907,213,0 +170767735955,213,0 +170767736004,213,0 +170767736052,213,0 +170767736100,213,0 +170767736148,214,0 +170767736196,214,0 +170767736243,214,0 +170767736291,214,0 +170767736339,214,0 +170767736387,214,0 +170767736435,215,0 +170767736483,215,0 +170767736530,215,0 +170767736580,214,0 +170767736628,213,0 +170767736676,213,0 +170767736723,213,0 +170767736771,213,0 +170767736819,213,0 +170767736867,213,0 +170767736915,214,0 +170767736963,214,0 +170767737011,214,0 +170767737058,214,0 +170767737106,214,0 +170767737154,214,0 +170767737202,214,0 +170767737250,214,0 +170767737298,214,0 +170767737346,214,0 +170767737393,214,0 +170767737441,215,0 +170767737489,215,0 +170767737537,213,0 +170767737585,213,0 +170767737633,214,0 +170767737681,214,0 +170767737729,214,0 +170767737776,214,0 +170767737824,214,0 +170767737874,214,0 +170767737922,214,0 +170767737970,214,0 +170767738018,214,0 +170767738065,214,0 +170767738113,215,0 +170767738161,215,0 +170767738209,215,0 +170767738257,215,0 +170767738305,215,0 +170767738353,215,0 +170767738401,215,0 +170767738448,214,0 +170767738496,213,0 +170767738544,214,0 +170767738592,214,0 +170767738640,214,0 +170767738688,214,0 +170767738736,214,0 +170767738784,214,0 +170767738832,214,0 +170767738880,215,0 +170767738928,215,0 +170767738975,215,0 +170767739023,215,0 +170767739071,215,0 +170767739119,215,0 +170767739167,215,0 +170767739215,215,0 +170767739263,215,0 +170767739311,215,0 +170767739359,214,0 +170767739407,213,0 +170767739456,213,0 +170767739506,214,0 +170767739554,214,0 +170767739602,214,0 +170767739650,214,0 +170767739697,214,0 +170767739745,214,0 +170767739795,214,0 +170767739843,214,0 +170767739892,215,0 +170767739940,214,0 +170767739990,215,0 +170767740038,216,0 +170767740085,215,0 +170767740133,215,0 +170767740181,215,0 +170767740229,215,0 +170767740279,214,0 +170767740328,213,0 +170767740376,213,0 +170767740426,214,0 +170767740473,213,0 +170767740523,214,0 +170767740573,214,0 +170767740622,214,0 +170767740672,214,0 +170767740720,214,0 +170767740767,215,0 +170767740815,214,0 +170767740863,215,0 +170767740911,215,0 +170767740959,215,0 +170767741007,215,0 +170767741056,215,0 +170767741106,215,0 +170767741154,215,0 +170767741202,215,0 +170767741250,214,0 +170767741299,213,0 +170767741349,214,0 +170767741397,214,0 +170767741445,214,0 +170767741493,214,0 +170767741542,214,0 +170767741590,214,0 +170767741640,214,0 +170767741688,214,0 +170767741737,215,0 +170767741785,215,0 +170767741835,215,0 +170767741883,215,0 +170767741932,215,0 +170767741980,215,0 +170767742028,215,0 +170767742076,215,0 +170767742124,215,0 +170767742172,214,0 +170767742220,214,0 +170767742268,214,0 +170767742317,214,0 +170767742367,214,0 +170767742415,214,0 +170767742464,214,0 +170767742514,214,0 +170767742562,215,0 +170767742611,215,0 +170767742659,215,0 +170767742707,215,0 +170767742757,215,0 +170767742805,215,0 +170767742853,215,0 +170767742901,215,0 +170767742948,215,0 +170767742996,215,0 +170767743046,214,0 +170767743095,214,0 +170767743143,214,0 +170767743191,214,0 +170767743239,214,0 +170767743289,214,0 +170767743338,214,0 +170767743386,214,0 +170767743436,214,0 +170767743484,215,0 +170767743532,215,0 +170767743580,215,0 +170767743629,215,0 +170767743679,215,0 +170767743727,215,0 +170767743775,215,0 +170767743823,215,0 +170767743872,215,0 +170767743922,215,0 +170767743970,215,0 +170767744018,213,0 +170767744065,213,0 +170767744115,213,0 +170767744163,214,0 +170767744212,214,0 +170767744260,214,0 +170767744308,214,0 +170767744356,214,0 +170767744404,214,0 +170767744452,214,0 +170767744502,215,0 +170767744551,215,0 +170767744599,215,0 +170767744647,215,0 +170767744695,215,0 +170767744743,215,0 +170767744793,215,0 +170767744841,215,0 +170767744889,215,0 +170767744938,214,0 +170767744986,213,0 +170767745034,213,0 +170767745082,213,0 +170767745130,214,0 +170767745178,214,0 +170767745226,214,0 +170767745274,214,0 +170767745322,214,0 +170767745370,214,0 +170767745417,215,0 +170767745467,215,0 +170767745516,215,0 +170767745564,215,0 +170767745614,215,0 +170767745662,215,0 +170767745710,215,0 +170767745759,215,0 +170767745807,215,0 +170767745855,214,0 +170767745903,213,0 +170767745950,213,0 +170767745998,213,0 +170767746048,213,0 +170767746096,213,0 +170767746144,213,0 +170767746192,213,0 +170767746239,214,0 +170767746289,214,0 +170767746337,214,0 +170767746387,214,0 +170767746434,214,0 +170767746482,214,0 +170767746530,215,0 +170767746580,215,0 +170767746627,215,0 +170767746677,215,0 +170767746726,215,0 +170767746774,215,0 +170767746822,213,0 +170767746872,213,0 +170767746919,213,0 +170767746969,213,0 +170767747019,213,0 +170767747067,213,0 +170767747114,213,0 +170767747162,213,0 +170767747210,213,0 +170767747258,214,0 +170767747308,214,0 +170767747356,214,0 +170767747405,214,0 +170767747453,214,0 +170767747503,215,0 +170767747552,215,0 +170767747602,215,0 +170767747651,215,0 +170767747699,215,0 +170767747747,213,0 +170767747796,213,0 +170767747846,213,0 +170767747895,213,0 +170767747943,213,0 +170767747991,214,0 +170767748041,214,0 +170767748089,214,0 +170767748138,214,0 +170767748186,214,0 +170767748234,214,0 +170767748283,214,0 +170767748331,214,0 +170767748379,214,0 +170767748429,215,0 +170767748478,215,0 +170767748528,215,0 +170767748577,215,0 +170767748625,215,0 +170767748673,213,0 +170767748721,213,0 +170767748769,213,0 +170767748819,213,0 +170767748867,213,0 +170767748916,214,0 +170767748966,214,0 +170767749013,213,0 +170767749061,214,0 +170767749109,214,0 +170767749157,214,0 +170767749205,214,0 +170767749255,214,0 +170767749303,214,0 +170767749351,215,0 +170767749398,215,0 +170767749448,215,0 +170767749497,215,0 +170767749547,215,0 +170767749595,213,0 +170767749643,213,0 +170767749691,213,0 +170767749739,213,0 +170767749787,213,0 +170767749835,213,0 +170767749884,213,0 +170767749934,213,0 +170767749982,213,0 +170767750029,214,0 +170767750079,214,0 +170767750127,214,0 +170767750176,214,0 +170767750224,214,0 +170767750272,215,0 +170767750320,215,0 +170767750368,215,0 +170767750416,215,0 +170767750465,215,0 +170767750513,213,0 +170767750561,213,0 +170767750611,213,0 +170767750659,213,0 +170767750706,214,0 +170767750756,214,0 +170767750804,214,0 +170767750852,214,0 +170767750901,214,0 +170767750951,215,0 +170767750999,214,0 +170767751048,215,0 +170767751096,215,0 +170767751144,215,0 +170767751192,215,0 +170767751242,215,0 +170767751291,215,0 +170767751339,215,0 +170767751389,215,0 +170767751437,214,0 +170767751485,213,0 +170767751533,213,0 +170767751581,213,0 +170767751628,214,0 +170767751676,214,0 +170767751724,214,0 +170767751772,214,0 +170767751820,214,0 +170767751870,214,0 +170767751918,214,0 +170767751966,215,0 +170767752013,215,0 +170767752061,215,0 +170767752111,215,0 +170767752159,215,0 +170767752208,215,0 +170767752256,215,0 +170767752304,215,0 +170767752354,214,0 +170767752403,213,0 +170767752451,213,0 +170767752501,213,0 +170767752548,213,0 +170767752596,213,0 +170767752644,214,0 +170767752692,214,0 +170767752740,214,0 +170767752790,214,0 +170767752838,214,0 +170767752887,214,0 +170767752935,215,0 +170767752985,215,0 +170767753033,215,0 +170767753082,215,0 +170767753130,215,0 +170767753178,215,0 +170767753228,215,0 +170767753276,215,0 +170767753325,213,0 +170767753375,213,0 +170767753423,213,0 +170767753471,213,0 +170767753518,213,0 +170767753566,213,0 +170767753614,214,0 +170767753662,214,0 +170767753710,214,0 +170767753760,214,0 +170767753808,214,0 +170767753857,215,0 +170767753907,215,0 +170767753955,215,0 +170767754002,215,0 +170767754050,215,0 +170767754098,215,0 +170767754148,215,0 +170767754197,215,0 +170767754245,213,0 +170767754293,213,0 +170767754341,214,0 +170767754389,214,0 +170767754437,214,0 +170767754485,214,0 +170767754533,214,0 +170767754581,214,0 +170767754629,214,0 +170767754678,214,0 +170767754726,215,0 +170767754774,215,0 +170767754822,215,0 +170767754870,215,0 +170767754918,215,0 +170767754966,216,0 +170767755015,215,0 +170767755063,215,0 +170767755113,215,0 +170767755161,214,0 +170767755208,213,0 +170767755256,213,0 +170767755304,213,0 +170767755354,214,0 +170767755403,214,0 +170767755451,214,0 +170767755499,214,0 +170767755547,214,0 +170767755595,214,0 +170767755643,215,0 +170767755691,215,0 +170767755739,215,0 +170767755788,215,0 +170767755838,215,0 +170767755886,215,0 +170767755933,215,0 +170767755981,215,0 +170767756029,215,0 +170767756077,214,0 +170767756127,213,0 +170767756175,213,0 +170767756223,214,0 +170767756272,214,0 +170767756320,214,0 +170767756370,214,0 +170767756418,214,0 +170767756467,214,0 +170767756515,214,0 +170767756565,215,0 +170767756614,215,0 +170767756664,215,0 +170767756712,215,0 +170767756759,215,0 +170767756807,215,0 +170767756855,215,0 +170767756903,215,0 +170767756953,215,0 +170767757002,214,0 +170767757050,214,0 +170767757098,214,0 +170767757146,214,0 +170767757194,214,0 +170767757242,214,0 +170767757290,214,0 +170767757338,215,0 +170767757387,215,0 +170767757437,215,0 +170767757486,215,0 +170767757536,215,0 +170767757585,215,0 +170767757635,215,0 +170767757683,215,0 +170767757731,215,0 +170767757779,215,0 +170767757827,215,0 +170767757876,215,0 +170767757926,213,0 +170767757974,213,0 +170767758021,213,0 +170767758071,214,0 +170767758119,214,0 +170767758167,214,0 +170767758215,214,0 +170767758263,215,0 +170767758311,214,0 +170767758359,214,0 +170767758407,215,0 +170767758455,215,0 +170767758503,215,0 +170767758551,215,0 +170767758598,215,0 +170767758646,215,0 +170767758696,215,0 +170767758744,215,0 +170767758792,215,0 +170767758840,215,0 +170767758888,213,0 +170767758937,213,0 +170767758985,213,0 +170767759033,213,0 +170767759081,214,0 +170767759131,214,0 +170767759180,214,0 +170767759230,214,0 +170767759278,214,0 +170767759327,214,0 +170767759375,214,0 +170767759423,215,0 +170767759471,215,0 +170767759519,215,0 +170767759567,215,0 +170767759615,215,0 +170767759663,215,0 +170767759712,215,0 +170767759760,215,0 +170767759808,213,0 +170767759856,213,0 +170767759904,213,0 +170767759952,213,0 +170767760001,213,0 +170767760049,214,0 +170767760097,214,0 +170767760145,214,0 +170767760195,214,0 +170767760242,214,0 +170767760290,214,0 +170767760340,214,0 +170767760388,214,0 +170767760436,215,0 +170767760484,215,0 +170767760533,215,0 +170767760583,215,0 +170767760631,215,0 +170767760680,215,0 +170767760730,213,0 +170767760779,213,0 +170767760827,213,0 +170767760877,213,0 +170767760925,213,0 +170767760973,213,0 +170767761022,213,0 +170767761072,214,0 +170767761121,214,0 +170767761169,214,0 +170767761219,214,0 +170767761268,214,0 +170767761316,214,0 +170767761364,214,0 +170767761412,214,0 +170767761460,215,0 +170767761510,215,0 +170767761557,215,0 +170767761607,215,0 +170767761655,213,0 +170767761703,213,0 +170767761750,213,0 +170767761800,213,0 +170767761848,213,0 +170767761896,213,0 +170767761943,213,0 +170767761991,214,0 +170767762039,214,0 +170767762087,214,0 +170767762135,214,0 +170767762183,214,0 +170767762231,215,0 +170767762279,215,0 +170767762327,215,0 +170767762374,215,0 +170767762422,215,0 +170767762470,215,0 +170767762518,215,0 +170767762566,214,0 +170767762616,213,0 +170767762664,213,0 +170767762712,213,0 +170767762761,213,0 +170767762811,213,0 +170767762859,213,0 +170767762906,213,0 +170767762954,213,0 +170767763002,213,0 +170767763052,214,0 +170767763100,214,0 +170767763149,214,0 +170767763197,214,0 +170767763245,214,0 +170767763295,215,0 +170767763343,215,0 +170767763392,215,0 +170767763442,215,0 +170767763490,215,0 +170767763538,213,0 +170767763587,213,0 +170767763637,213,0 +170767763684,213,0 +170767763734,213,0 +170767763784,213,0 +170767763833,213,0 +170767763883,213,0 +170767763931,213,0 +170767763978,214,0 +170767764026,214,0 +170767764074,214,0 +170767764122,214,0 +170767764172,215,0 +170767764220,215,0 +170767764268,215,0 +170767764316,214,0 +170767764364,215,0 +170767764412,216,0 +170767764460,213,0 +170767764508,213,0 +170767764556,213,0 +170767764605,213,0 +170767764653,213,0 +170767764701,213,0 +170767764751,213,0 +170767764800,213,0 +170767764850,213,0 +170767764898,213,0 +170767764946,214,0 +170767764994,214,0 +170767765043,214,0 +170767765093,214,0 +170767765142,215,0 +170767765190,215,0 +170767765240,215,0 +170767765288,215,0 +170767765335,215,0 +170767765383,213,0 +170767765433,213,0 +170767765481,213,0 +170767765529,213,0 +170767765577,213,0 +170767765625,213,0 +170767765674,214,0 +170767765724,213,0 +170767765771,214,0 +170767765819,214,0 +170767765869,214,0 +170767765917,214,0 +170767765965,214,0 +170767766013,214,0 +170767766061,215,0 +170767766109,215,0 +170767766158,215,0 +170767766208,215,0 +170767766257,215,0 +170767766307,213,0 +170767766355,213,0 +170767766403,213,0 +170767766450,213,0 +170767766498,213,0 +170767766548,213,0 +170767766597,213,0 +170767766645,213,0 +170767766694,213,0 +170767766742,214,0 +170767766790,214,0 +170767766838,214,0 +170767766886,214,0 +170767766934,214,0 +170767766981,215,0 +170767767031,215,0 +170767767079,215,0 +170767767128,215,0 +170767767176,215,0 +170767767224,214,0 +170767767272,213,0 +170767767320,213,0 +170767767369,213,0 +170767767417,213,0 +170767767465,213,0 +170767767515,213,0 +170767767564,213,0 +170767767613,213,0 +170767767661,213,0 +170767767709,213,0 +170767767759,214,0 +170767767808,214,0 +170767767856,215,0 +170767767904,215,0 +170767767954,214,0 +170767768001,215,0 +170767768049,215,0 +170767768097,215,0 +170767768145,214,0 +170767768193,213,0 +170767768243,213,0 +170767768291,213,0 +170767768340,213,0 +170767768388,213,0 +170767768436,213,0 +170767768484,213,0 +170767768532,213,0 +170767768581,214,0 +170767768629,214,0 +170767768677,214,0 +170767768727,214,0 +170767768775,214,0 +170767768823,215,0 +170767768871,215,0 +170767768920,215,0 +170767768968,215,0 +170767769018,215,0 +170767769067,214,0 +170767769117,213,0 +170767769164,213,0 +170767769212,213,0 +170767769260,213,0 +170767769308,213,0 +170767769358,213,0 +170767769406,213,0 +170767769455,214,0 +170767769503,214,0 +170767769553,214,0 +170767769601,214,0 +170767769650,214,0 +170767769698,215,0 +170767769747,215,0 +170767769795,215,0 +170767769843,215,0 +170767769893,215,0 +170767769941,215,0 +170767769989,215,0 +170767770037,213,0 +170767770086,213,0 +170767770136,213,0 +170767770184,213,0 +170767770233,213,0 +170767770282,213,0 +170767770332,213,0 +170767770380,213,0 +170767770430,213,0 +170767770478,213,0 +170767770526,214,0 +170767770574,214,0 +170767770623,214,0 +170767770671,214,0 +170767770719,214,0 +170767770767,214,0 +170767770815,214,0 +170767770862,215,0 +170767770910,215,0 +170767770958,213,0 +170767771006,213,0 +170767771054,213,0 +170767771102,213,0 +170767771150,213,0 +170767771199,213,0 +170767771247,214,0 +170767771295,213,0 +170767771343,213,0 +170767771391,214,0 +170767771439,214,0 +170767771487,214,0 +170767771535,214,0 +170767771584,214,0 +170767771632,214,0 +170767771682,215,0 +170767771730,215,0 +170767771779,215,0 +170767771827,215,0 +170767771875,215,0 +170767771923,216,0 +170767771973,215,0 +170767772021,215,0 +170767772070,215,0 +170767772120,215,0 +170767772169,215,0 +170767772217,215,0 +170767772265,215,0 +170767772313,214,0 +170767772361,214,0 +170767772409,214,0 +170767772457,214,0 +170767772505,214,0 +170767772553,214,0 +170767772601,214,0 +170767772649,215,0 +170767772697,215,0 +170767772744,215,0 +170767772792,215,0 +170767772840,215,0 +170767772888,216,0 +170767772938,215,0 +170767772986,215,0 +170767773035,215,0 +170767773085,215,0 +170767773134,215,0 +170767773182,215,0 +170767773230,215,0 +170767773278,213,0 +170767773327,213,0 +170767773375,213,0 +170767773423,214,0 +170767773471,214,0 +170767773518,214,0 +170767773566,214,0 +170767773614,214,0 +170767773662,214,0 +170767773710,214,0 +170767773758,215,0 +170767773807,215,0 +170767773857,215,0 +170767773905,215,0 +170767773953,215,0 +170767774001,215,0 +170767774050,215,0 +170767774098,215,0 +170767774148,215,0 +170767774196,213,0 +170767774245,213,0 +170767774293,213,0 +170767774343,213,0 +170767774391,213,0 +170767774438,214,0 +170767774488,214,0 +170767774536,214,0 +170767774584,214,0 +170767774632,214,0 +170767774681,214,0 +170767774729,214,0 +170767774779,214,0 +170767774827,215,0 +170767774875,215,0 +170767774922,215,0 +170767774972,215,0 +170767775020,215,0 +170767775068,215,0 +170767775115,213,0 +170767775163,213,0 +170767775211,213,0 +170767775259,213,0 +170767775307,213,0 +170767775356,213,0 +170767775404,213,0 +170767775452,214,0 +170767775502,213,0 +170767775551,214,0 +170767775599,214,0 +170767775647,214,0 +170767775697,214,0 +170767775745,214,0 +170767775793,214,0 +170767775840,215,0 +170767775890,215,0 +170767775939,215,0 +170767775987,215,0 +170767776035,213,0 +170767776085,213,0 +170767776133,213,0 +170767776181,213,0 +170767776229,213,0 +170767776276,213,0 +170767776324,213,0 +170767776372,213,0 +170767776422,214,0 +170767776470,214,0 +170767776518,214,0 +170767776566,214,0 +170767776614,214,0 +170767776662,214,0 +170767776710,214,0 +170767776759,215,0 +170767776809,215,0 +170767776857,215,0 +170767776905,215,0 +170767776954,214,0 +170767777002,213,0 +170767777050,213,0 +170767777100,213,0 +170767777148,213,0 +170767777196,214,0 +170767777245,214,0 +170767777293,214,0 +170767777341,214,0 +170767777390,214,0 +170767777438,215,0 +170767777488,215,0 +170767777536,215,0 +170767777584,215,0 +170767777633,215,0 +170767777681,215,0 +170767777729,215,0 +170767777777,215,0 +170767777826,215,0 +170767777874,215,0 +170767777922,213,0 +170767777972,213,0 +170767778020,213,0 +170767778068,213,0 +170767778115,213,0 +170767778165,214,0 +170767778213,214,0 +170767778261,214,0 +170767778309,214,0 +170767778358,214,0 +170767778406,214,0 +170767778454,215,0 +170767778502,215,0 +170767778550,215,0 +170767778597,215,0 +170767778647,215,0 +170767778695,215,0 +170767778743,215,0 +170767778791,215,0 +170767778839,213,0 +170767778888,213,0 +170767778936,213,0 +170767778984,213,0 +170767779032,213,0 +170767779080,214,0 +170767779128,214,0 +170767779176,214,0 +170767779225,214,0 +170767779273,215,0 +170767779323,214,0 +170767779372,215,0 +170767779420,215,0 +170767779468,215,0 +170767779518,215,0 +170767779566,215,0 +170767779615,215,0 +170767779663,215,0 +170767779713,215,0 +170767779761,213,0 +170767779808,213,0 +170767779856,213,0 +170767779904,213,0 +170767779952,214,0 +170767780002,213,0 +170767780051,214,0 +170767780099,214,0 +170767780147,214,0 +170767780195,214,0 +170767780245,214,0 +170767780293,214,0 +170767780342,215,0 +170767780390,215,0 +170767780438,215,0 +170767780487,215,0 +170767780537,215,0 +170767780585,215,0 +170767780633,215,0 +170767780681,214,0 +170767780730,213,0 +170767780780,213,0 +170767780828,213,0 +170767780875,213,0 +170767780925,214,0 +170767780973,213,0 +170767781021,214,0 +170767781069,214,0 +170767781117,214,0 +170767781166,214,0 +170767781214,214,0 +170767781262,214,0 +170767781311,215,0 +170767781359,215,0 +170767781409,215,0 +170767781458,215,0 +170767781506,215,0 +170767781554,215,0 +170767781602,214,0 +170767781650,213,0 +170767781698,213,0 +170767781746,213,0 +170767781794,213,0 +170767781843,213,0 +170767781891,214,0 +170767781939,214,0 +170767781988,214,0 +170767782038,214,0 +170767782087,214,0 +170767782135,214,0 +170767782183,215,0 +170767782233,215,0 +170767782281,215,0 +170767782329,215,0 +170767782378,215,0 +170767782426,215,0 +170767782476,215,0 +170767782523,214,0 +170767782571,213,0 +170767782619,213,0 +170767782667,213,0 +170767782715,213,0 +170767782763,214,0 +170767782811,214,0 +170767782859,214,0 +170767782907,214,0 +170767782955,214,0 +170767783004,214,0 +170767783054,214,0 +170767783102,214,0 +170767783150,215,0 +170767783199,215,0 +170767783247,215,0 +170767783297,215,0 +170767783346,215,0 +170767783396,215,0 +170767783444,215,0 +170767783491,213,0 +170767783539,213,0 +170767783587,213,0 +170767783635,213,0 +170767783683,214,0 +170767783732,214,0 +170767783780,214,0 +170767783828,214,0 +170767783878,214,0 +170767783926,214,0 +170767783973,214,0 +170767784021,214,0 +170767784069,215,0 +170767784119,215,0 +170767784166,215,0 +170767784214,215,0 +170767784262,215,0 +170767784310,215,0 +170767784360,215,0 +170767784408,213,0 +170767784455,213,0 +170767784503,213,0 +170767784551,213,0 +170767784599,214,0 +170767784647,214,0 +170767784695,214,0 +170767784743,214,0 +170767784790,214,0 +170767784838,214,0 +170767784886,214,0 +170767784934,214,0 +170767784983,215,0 +170767785031,214,0 +170767785079,215,0 +170767785127,215,0 +170767785175,215,0 +170767785223,215,0 +170767785270,215,0 +170767785318,214,0 +170767785366,213,0 +170767785414,213,0 +170767785464,213,0 +170767785513,214,0 +170767785561,214,0 +170767785609,214,0 +170767785657,214,0 +170767785705,214,0 +170767785753,214,0 +170767785802,214,0 +170767785850,214,0 +170767785900,215,0 +170767785947,215,0 +170767785995,215,0 +170767786045,215,0 +170767786093,216,0 +170767786140,215,0 +170767786190,215,0 +170767786238,214,0 +170767786286,213,0 +170767786334,213,0 +170767786382,213,0 +170767786430,213,0 +170767786478,214,0 +170767786526,214,0 +170767786573,214,0 +170767786621,214,0 +170767786669,214,0 +170767786717,214,0 +170767786767,214,0 +170767786816,214,0 +170767786866,215,0 +170767786914,215,0 +170767786961,215,0 +170767787011,215,0 +170767787059,215,0 +170767787106,215,0 +170767787154,215,0 +170767787202,213,0 +170767787250,213,0 +170767787298,213,0 +170767787345,214,0 +170767787393,214,0 +170767787441,214,0 +170767787489,214,0 +170767787537,214,0 +170767787584,214,0 +170767787634,214,0 +170767787682,214,0 +170767787729,214,0 +170767787777,215,0 +170767787825,215,0 +170767787873,215,0 +170767787921,215,0 +170767787969,215,0 +170767788017,215,0 +170767788065,215,0 +170767788114,213,0 +170767788162,213,0 +170767788210,213,0 +170767788258,213,0 +170767788307,213,0 +170767788355,213,0 +170767788405,213,0 +170767788454,214,0 +170767788502,214,0 +170767788550,214,0 +170767788598,214,0 +170767788646,214,0 +170767788694,215,0 +170767788741,215,0 +170767788789,215,0 +170767788837,215,0 +170767788885,215,0 +170767788935,215,0 +170767788984,215,0 +170767789032,213,0 +170767789082,213,0 +170767789129,213,0 +170767789177,213,0 +170767789227,213,0 +170767789276,213,0 +170767789324,213,0 +170767789374,214,0 +170767789422,214,0 +170767789471,214,0 +170767789519,214,0 +170767789567,214,0 +170767789616,215,0 +170767789666,215,0 +170767789714,215,0 +170767789762,215,0 +170767789810,215,0 +170767789858,215,0 +170767789906,215,0 +170767789955,214,0 +170767790003,213,0 +170767790051,213,0 +170767790101,213,0 +170767790149,213,0 +170767790197,214,0 +170767790244,213,0 +170767790292,214,0 +170767790342,214,0 +170767790390,214,0 +170767790438,214,0 +170767790486,214,0 +170767790534,215,0 +170767790582,215,0 +170767790631,215,0 +170767790680,215,0 +170767790730,215,0 +170767790779,215,0 +170767790827,215,0 +170767790875,215,0 +170767790925,213,0 +170767790973,213,0 +170767791021,213,0 +170767791069,213,0 +170767791117,213,0 +170767791164,213,0 +170767791214,213,0 +170767791264,214,0 +170767791311,214,0 +170767791359,214,0 +170767791407,214,0 +170767791457,214,0 +170767791505,214,0 +170767791553,215,0 +170767791600,215,0 +170767791650,215,0 +170767791699,215,0 +170767791747,215,0 +170767791795,215,0 +170767791845,213,0 +170767791893,213,0 +170767791941,213,0 +170767791988,213,0 +170767792036,213,0 +170767792084,213,0 +170767792132,213,0 +170767792180,214,0 +170767792228,213,0 +170767792278,214,0 +170767792325,214,0 +170767792373,214,0 +170767792421,214,0 +170767792469,215,0 +170767792517,215,0 +170767792565,215,0 +170767792613,215,0 +170767792661,215,0 +170767792709,215,0 +170767792757,213,0 +170767792805,213,0 +170767792853,213,0 +170767792902,213,0 +170767792950,213,0 +170767792998,213,0 +170767793047,213,0 +170767793097,214,0 +170767793145,214,0 +170767793193,214,0 +170767793241,214,0 +170767793289,214,0 +170767793337,214,0 +170767793385,215,0 +170767793434,215,0 +170767793483,215,0 +170767793531,215,0 +170767793579,215,0 +170767793627,215,0 +170767793675,214,0 +170767793723,213,0 +170767793772,213,0 +170767793822,213,0 +170767793870,213,0 +170767793918,214,0 +170767793966,214,0 +170767794015,214,0 +170767794063,214,0 +170767794111,214,0 +170767794159,215,0 +170767794206,215,0 +170767794254,215,0 +170767794304,215,0 +170767794352,215,0 +170767794400,215,0 +170767794449,215,0 +170767794497,215,0 +170767794545,215,0 +170767794593,214,0 +170767794643,213,0 +170767794690,213,0 +170767794738,213,0 +170767794788,214,0 +170767794836,214,0 +170767794884,214,0 +170767794932,214,0 +170767794981,214,0 +170767795029,215,0 +170767795077,215,0 +170767795125,215,0 +170767795173,215,0 +170767795221,215,0 +170767795269,215,0 +170767795317,215,0 +170767795365,215,0 +170767795414,215,0 +170767795462,215,0 +170767795510,215,0 +170767795560,213,0 +170767795608,213,0 +170767795657,213,0 +170767795707,213,0 +170767795755,214,0 +170767795804,214,0 +170767795854,214,0 +170767795903,214,0 +170767795951,214,0 +170767796001,214,0 +170767796050,214,0 +170767796098,215,0 +170767796146,215,0 +170767796195,215,0 +170767796243,215,0 +170767796291,215,0 +170767796339,215,0 +170767796389,215,0 +170767796437,215,0 +170767796484,213,0 +170767796532,213,0 +170767796580,213,0 +170767796630,213,0 +170767796678,213,0 +170767796725,214,0 +170767796773,214,0 +170767796821,214,0 +170767796869,214,0 +170767796917,214,0 +170767796965,214,0 +170767797013,214,0 +170767797062,214,0 +170767797112,214,0 +170767797161,214,0 +170767797211,214,0 +170767797261,215,0 +170767797310,215,0 +170767797358,214,0 +170767797406,213,0 +170767797455,213,0 +170767797503,213,0 +170767797551,213,0 +170767797601,213,0 +170767797650,214,0 +170767797698,214,0 +170767797746,214,0 +170767797796,214,0 +170767797844,214,0 +170767797892,214,0 +170767797940,214,0 +170767797988,214,0 +170767798037,214,0 +170767798085,215,0 +170767798133,214,0 +170767798181,215,0 +170767798229,215,0 +170767798277,215,0 +170767798327,213,0 +170767798375,213,0 +170767798422,213,0 +170767798472,213,0 +170767798520,214,0 +170767798568,214,0 +170767798617,214,0 +170767798667,214,0 +170767798715,214,0 +170767798763,214,0 +170767798811,214,0 +170767798859,214,0 +170767798907,214,0 +170767798956,215,0 +170767799004,215,0 +170767799054,215,0 +170767799103,215,0 +170767799151,215,0 +170767799199,215,0 +170767799247,213,0 +170767799295,213,0 +170767799343,213,0 +170767799391,214,0 +170767799440,213,0 +170767799490,214,0 +170767799538,214,0 +170767799586,214,0 +170767799634,214,0 +170767799682,214,0 +170767799730,214,0 +170767799778,214,0 +170767799827,215,0 +170767799877,215,0 +170767799926,215,0 +170767799976,215,0 +170767800024,215,0 diff --git a/laser_value/0212-05.csv b/laser_value/0212-05.csv new file mode 100644 index 0000000..3091c2a --- /dev/null +++ b/laser_value/0212-05.csv @@ -0,0 +1,7458 @@ +timestamp,laser_value,event +170767800072,215,0 +170767800120,215,0 +170767800168,214,0 +170767800216,214,0 +170767800264,213,0 +170767800311,214,0 +170767800359,214,0 +170767800407,214,0 +170767800455,214,0 +170767800503,214,0 +170767800551,215,0 +170767800599,215,0 +170767800647,215,0 +170767800695,215,0 +170767800743,215,0 +170767800791,215,0 +170767800839,215,0 +170767800886,215,0 +170767800936,215,0 +170767800984,215,0 +170767801032,215,0 +170767801081,214,0 +170767801129,213,0 +170767801177,214,0 +170767801225,214,0 +170767801273,214,0 +170767801321,214,0 +170767801368,214,0 +170767801416,214,0 +170767801464,215,0 +170767801514,215,0 +170767801562,215,0 +170767801610,215,0 +170767801659,215,0 +170767801707,215,0 +170767801755,215,0 +170767801803,215,0 +170767801853,215,0 +170767801901,215,0 +170767801948,215,0 +170767801996,215,0 +170767802044,213,0 +170767802092,213,0 +170767802140,213,0 +170767802188,213,0 +170767802236,214,0 +170767802284,214,0 +170767802333,214,0 +170767802382,214,0 +170767802430,214,0 +170767802478,215,0 +170767802528,215,0 +170767802576,215,0 +170767802624,215,0 +170767802672,215,0 +170767802720,215,0 +170767802768,215,0 +170767802817,215,0 +170767802865,215,0 +170767802913,215,0 +170767802961,213,0 +170767803009,213,0 +170767803057,213,0 +170767803105,213,0 +170767803153,213,0 +170767803201,213,0 +170767803250,214,0 +170767803298,214,0 +170767803346,214,0 +170767803394,214,0 +170767803442,214,0 +170767803491,215,0 +170767803539,215,0 +170767803587,215,0 +170767803637,215,0 +170767803685,215,0 +170767803733,215,0 +170767803781,215,0 +170767803830,215,0 +170767803878,213,0 +170767803927,213,0 +170767803975,213,0 +170767804023,213,0 +170767804071,213,0 +170767804121,213,0 +170767804169,213,0 +170767804217,213,0 +170767804266,214,0 +170767804314,214,0 +170767804364,214,0 +170767804412,214,0 +170767804461,214,0 +170767804509,214,0 +170767804557,214,0 +170767804607,215,0 +170767804656,215,0 +170767804704,215,0 +170767804754,215,0 +170767804802,213,0 +170767804850,213,0 +170767804899,213,0 +170767804949,213,0 +170767804996,213,0 +170767805044,214,0 +170767805092,214,0 +170767805140,213,0 +170767805190,214,0 +170767805237,214,0 +170767805285,214,0 +170767805333,214,0 +170767805383,214,0 +170767805432,215,0 +170767805482,215,0 +170767805530,215,0 +170767805578,215,0 +170767805627,215,0 +170767805675,215,0 +170767805723,213,0 +170767805771,213,0 +170767805820,213,0 +170767805868,213,0 +170767805916,213,0 +170767805964,213,0 +170767806012,213,0 +170767806061,214,0 +170767806109,214,0 +170767806159,214,0 +170767806207,214,0 +170767806255,214,0 +170767806304,214,0 +170767806352,214,0 +170767806402,214,0 +170767806449,215,0 +170767806497,215,0 +170767806547,215,0 +170767806595,215,0 +170767806644,213,0 +170767806692,213,0 +170767806740,213,0 +170767806790,213,0 +170767806839,213,0 +170767806889,213,0 +170767806937,213,0 +170767806985,213,0 +170767807033,214,0 +170767807081,214,0 +170767807128,214,0 +170767807176,214,0 +170767807224,214,0 +170767807272,215,0 +170767807320,215,0 +170767807368,215,0 +170767807417,215,0 +170767807465,215,0 +170767807513,215,0 +170767807563,214,0 +170767807612,213,0 +170767807660,213,0 +170767807708,213,0 +170767807756,213,0 +170767807806,214,0 +170767807855,214,0 +170767807905,214,0 +170767807953,214,0 +170767808001,214,0 +170767808048,214,0 +170767808098,214,0 +170767808146,214,0 +170767808194,215,0 +170767808241,215,0 +170767808289,215,0 +170767808339,215,0 +170767808386,215,0 +170767808434,215,0 +170767808482,214,0 +170767808532,213,0 +170767808579,213,0 +170767808627,213,0 +170767808677,213,0 +170767808726,213,0 +170767808774,213,0 +170767808824,214,0 +170767808873,214,0 +170767808921,214,0 +170767808969,214,0 +170767809017,215,0 +170767809065,214,0 +170767809114,215,0 +170767809162,215,0 +170767809210,215,0 +170767809258,215,0 +170767809306,215,0 +170767809354,216,0 +170767809403,215,0 +170767809451,213,0 +170767809499,213,0 +170767809547,213,0 +170767809596,213,0 +170767809644,213,0 +170767809692,213,0 +170767809740,213,0 +170767809788,214,0 +170767809837,214,0 +170767809885,214,0 +170767809935,214,0 +170767809983,214,0 +170767810030,214,0 +170767810078,215,0 +170767810126,215,0 +170767810174,215,0 +170767810224,215,0 +170767810271,215,0 +170767810319,215,0 +170767810369,213,0 +170767810417,213,0 +170767810465,213,0 +170767810513,213,0 +170767810560,213,0 +170767810608,213,0 +170767810656,213,0 +170767810704,213,0 +170767810752,214,0 +170767810800,214,0 +170767810850,214,0 +170767810897,214,0 +170767810945,214,0 +170767810993,214,0 +170767811043,215,0 +170767811091,215,0 +170767811139,215,0 +170767811188,215,0 +170767811236,215,0 +170767811284,213,0 +170767811332,213,0 +170767811380,213,0 +170767811428,213,0 +170767811476,213,0 +170767811524,213,0 +170767811571,213,0 +170767811619,213,0 +170767811667,213,0 +170767811715,213,0 +170767811763,213,0 +170767811811,214,0 +170767811859,214,0 +170767811909,214,0 +170767811956,214,0 +170767812004,214,0 +170767812054,214,0 +170767812102,214,0 +170767812150,215,0 +170767812197,213,0 +170767812247,213,0 +170767812295,213,0 +170767812343,213,0 +170767812391,213,0 +170767812438,213,0 +170767812486,213,0 +170767812534,213,0 +170767812582,213,0 +170767812630,213,0 +170767812678,213,0 +170767812725,213,0 +170767812773,213,0 +170767812821,213,0 +170767812869,214,0 +170767812917,214,0 +170767812964,214,0 +170767813012,214,0 +170767813060,215,0 +170767813108,215,0 +170767813156,213,0 +170767813204,213,0 +170767813253,213,0 +170767813301,213,0 +170767813349,213,0 +170767813396,213,0 +170767813444,213,0 +170767813492,213,0 +170767813540,213,0 +170767813588,214,0 +170767813636,214,0 +170767813683,214,0 +170767813731,214,0 +170767813779,214,0 +170767813827,214,0 +170767813875,215,0 +170767813923,215,0 +170767813970,215,0 +170767814018,215,0 +170767814066,213,0 +170767814114,213,0 +170767814162,213,0 +170767814211,214,0 +170767814259,214,0 +170767814307,214,0 +170767814355,214,0 +170767814403,214,0 +170767814450,214,0 +170767814498,214,0 +170767814548,214,0 +170767814596,215,0 +170767814643,215,0 +170767814691,215,0 +170767814739,215,0 +170767814787,215,0 +170767814835,215,0 +170767814882,215,0 +170767814932,215,0 +170767814980,214,0 +170767815027,213,0 +170767815075,213,0 +170767815123,214,0 +170767815171,214,0 +170767815219,214,0 +170767815267,214,0 +170767815315,214,0 +170767815364,215,0 +170767815412,215,0 +170767815460,215,0 +170767815507,215,0 +170767815555,215,0 +170767815603,215,0 +170767815651,215,0 +170767815699,215,0 +170767815747,215,0 +170767815795,216,0 +170767815842,215,0 +170767815890,215,0 +170767815938,214,0 +170767815986,214,0 +170767816034,214,0 +170767816082,214,0 +170767816130,214,0 +170767816179,214,0 +170767816227,215,0 +170767816274,215,0 +170767816322,215,0 +170767816370,215,0 +170767816418,215,0 +170767816467,215,0 +170767816515,215,0 +170767816563,215,0 +170767816611,215,0 +170767816659,215,0 +170767816708,215,0 +170767816756,215,0 +170767816805,215,0 +170767816853,214,0 +170767816901,214,0 +170767816949,214,0 +170767816997,214,0 +170767817045,214,0 +170767817092,214,0 +170767817140,214,0 +170767817188,214,0 +170767817236,215,0 +170767817284,215,0 +170767817332,215,0 +170767817379,215,0 +170767817427,215,0 +170767817475,215,0 +170767817523,215,0 +170767817571,215,0 +170767817619,215,0 +170767817667,215,0 +170767817714,215,0 +170767817764,214,0 +170767817812,213,0 +170767817861,214,0 +170767817909,214,0 +170767817957,214,0 +170767818005,214,0 +170767818052,214,0 +170767818100,214,0 +170767818148,214,0 +170767818196,214,0 +170767818244,214,0 +170767818291,214,0 +170767818339,215,0 +170767818387,215,0 +170767818435,215,0 +170767818485,215,0 +170767818533,215,0 +170767818581,215,0 +170767818629,215,0 +170767818676,214,0 +170767818724,213,0 +170767818772,213,0 +170767818822,213,0 +170767818869,213,0 +170767818919,213,0 +170767818967,213,0 +170767819015,214,0 +170767819062,214,0 +170767819110,214,0 +170767819158,214,0 +170767819206,214,0 +170767819254,215,0 +170767819302,214,0 +170767819349,215,0 +170767819397,215,0 +170767819445,215,0 +170767819493,214,0 +170767819541,215,0 +170767819591,215,0 +170767819638,213,0 +170767819686,213,0 +170767819734,213,0 +170767819782,213,0 +170767819830,213,0 +170767819878,213,0 +170767819928,214,0 +170767819975,214,0 +170767820023,214,0 +170767820071,215,0 +170767820119,214,0 +170767820169,215,0 +170767820217,215,0 +170767820265,215,0 +170767820314,215,0 +170767820364,215,0 +170767820413,215,0 +170767820461,215,0 +170767820511,215,0 +170767820560,213,0 +170767820610,213,0 +170767820658,213,0 +170767820705,214,0 +170767820755,214,0 +170767820803,214,0 +170767820851,214,0 +170767820900,214,0 +170767820948,214,0 +170767820998,214,0 +170767821046,214,0 +170767821094,214,0 +170767821142,214,0 +170767821191,215,0 +170767821239,215,0 +170767821289,215,0 +170767821337,215,0 +170767821384,215,0 +170767821434,215,0 +170767821484,213,0 +170767821531,213,0 +170767821579,213,0 +170767821627,214,0 +170767821675,214,0 +170767821725,214,0 +170767821773,214,0 +170767821821,214,0 +170767821870,214,0 +170767821918,215,0 +170767821966,214,0 +170767822014,215,0 +170767822063,215,0 +170767822111,215,0 +170767822159,215,0 +170767822209,215,0 +170767822258,215,0 +170767822308,215,0 +170767822356,215,0 +170767822404,213,0 +170767822451,213,0 +170767822499,213,0 +170767822549,213,0 +170767822597,213,0 +170767822645,214,0 +170767822694,214,0 +170767822744,214,0 +170767822792,214,0 +170767822841,214,0 +170767822890,214,0 +170767822939,214,0 +170767822987,215,0 +170767823035,215,0 +170767823083,215,0 +170767823131,215,0 +170767823179,215,0 +170767823226,215,0 +170767823274,215,0 +170767823324,213,0 +170767823372,213,0 +170767823419,213,0 +170767823467,213,0 +170767823515,213,0 +170767823565,213,0 +170767823614,213,0 +170767823662,213,0 +170767823712,214,0 +170767823759,214,0 +170767823809,214,0 +170767823857,214,0 +170767823905,214,0 +170767823953,215,0 +170767824001,215,0 +170767824049,215,0 +170767824097,215,0 +170767824145,215,0 +170767824193,215,0 +170767824241,213,0 +170767824290,213,0 +170767824339,213,0 +170767824389,213,0 +170767824437,214,0 +170767824486,213,0 +170767824536,214,0 +170767824584,214,0 +170767824633,214,0 +170767824683,214,0 +170767824732,214,0 +170767824780,215,0 +170767824828,215,0 +170767824876,215,0 +170767824924,215,0 +170767824972,215,0 +170767825021,215,0 +170767825069,215,0 +170767825117,215,0 +170767825165,213,0 +170767825213,213,0 +170767825261,213,0 +170767825309,213,0 +170767825357,213,0 +170767825406,214,0 +170767825454,214,0 +170767825502,214,0 +170767825550,214,0 +170767825598,214,0 +170767825646,214,0 +170767825694,214,0 +170767825744,214,0 +170767825792,215,0 +170767825840,215,0 +170767825888,215,0 +170767825935,215,0 +170767825983,215,0 +170767826031,215,0 +170767826081,215,0 +170767826129,213,0 +170767826178,213,0 +170767826226,213,0 +170767826274,213,0 +170767826322,213,0 +170767826370,213,0 +170767826420,214,0 +170767826468,213,0 +170767826516,214,0 +170767826563,214,0 +170767826611,214,0 +170767826661,214,0 +170767826709,214,0 +170767826757,215,0 +170767826805,215,0 +170767826852,215,0 +170767826902,215,0 +170767826951,215,0 +170767826999,215,0 +170767827049,213,0 +170767827097,213,0 +170767827145,213,0 +170767827193,213,0 +170767827241,213,0 +170767827289,213,0 +170767827338,214,0 +170767827388,214,0 +170767827437,214,0 +170767827485,214,0 +170767827533,214,0 +170767827582,214,0 +170767827630,214,0 +170767827678,215,0 +170767827726,215,0 +170767827774,215,0 +170767827822,215,0 +170767827870,215,0 +170767827918,215,0 +170767827966,213,0 +170767828014,213,0 +170767828062,213,0 +170767828111,213,0 +170767828161,213,0 +170767828210,213,0 +170767828260,214,0 +170767828309,214,0 +170767828357,214,0 +170767828405,214,0 +170767828453,214,0 +170767828501,214,0 +170767828549,215,0 +170767828598,214,0 +170767828646,214,0 +170767828694,215,0 +170767828744,215,0 +170767828792,215,0 +170767828841,215,0 +170767828889,213,0 +170767828939,213,0 +170767828988,213,0 +170767829038,213,0 +170767829085,213,0 +170767829135,213,0 +170767829183,214,0 +170767829231,213,0 +170767829280,214,0 +170767829328,214,0 +170767829378,214,0 +170767829425,214,0 +170767829473,214,0 +170767829521,215,0 +170767829569,215,0 +170767829619,215,0 +170767829666,215,0 +170767829714,215,0 +170767829762,215,0 +170767829812,213,0 +170767829861,213,0 +170767829909,213,0 +170767829959,213,0 +170767830007,213,0 +170767830056,213,0 +170767830106,214,0 +170767830153,214,0 +170767830203,214,0 +170767830251,214,0 +170767830299,214,0 +170767830347,215,0 +170767830396,214,0 +170767830446,215,0 +170767830494,215,0 +170767830541,215,0 +170767830589,215,0 +170767830637,215,0 +170767830685,215,0 +170767830735,213,0 +170767830784,213,0 +170767830832,214,0 +170767830880,214,0 +170767830928,214,0 +170767830976,214,0 +170767831024,214,0 +170767831074,214,0 +170767831123,214,0 +170767831171,214,0 +170767831219,215,0 +170767831269,215,0 +170767831318,215,0 +170767831366,215,0 +170767831416,215,0 +170767831465,215,0 +170767831513,215,0 +170767831563,215,0 +170767831612,215,0 +170767831660,213,0 +170767831708,213,0 +170767831756,213,0 +170767831804,214,0 +170767831852,214,0 +170767831901,214,0 +170767831949,214,0 +170767831999,214,0 +170767832046,214,0 +170767832094,214,0 +170767832142,215,0 +170767832190,215,0 +170767832240,215,0 +170767832289,215,0 +170767832337,215,0 +170767832385,215,0 +170767832434,215,0 +170767832482,216,0 +170767832530,215,0 +170767832580,213,0 +170767832628,213,0 +170767832676,213,0 +170767832725,213,0 +170767832773,213,0 +170767832822,213,0 +170767832870,214,0 +170767832920,214,0 +170767832968,214,0 +170767833015,214,0 +170767833065,214,0 +170767833113,215,0 +170767833161,215,0 +170767833209,215,0 +170767833256,215,0 +170767833306,215,0 +170767833354,215,0 +170767833402,215,0 +170767833451,215,0 +170767833499,213,0 +170767833547,213,0 +170767833595,213,0 +170767833642,213,0 +170767833690,213,0 +170767833738,213,0 +170767833786,214,0 +170767833834,214,0 +170767833882,214,0 +170767833930,214,0 +170767833977,214,0 +170767834025,214,0 +170767834073,215,0 +170767834121,215,0 +170767834169,215,0 +170767834217,215,0 +170767834265,215,0 +170767834314,215,0 +170767834362,215,0 +170767834409,213,0 +170767834459,213,0 +170767834507,213,0 +170767834555,213,0 +170767834602,213,0 +170767834650,213,0 +170767834698,214,0 +170767834746,213,0 +170767834796,214,0 +170767834843,214,0 +170767834891,214,0 +170767834939,214,0 +170767834989,214,0 +170767835038,215,0 +170767835088,215,0 +170767835137,215,0 +170767835185,215,0 +170767835235,215,0 +170767835283,215,0 +170767835331,214,0 +170767835380,213,0 +170767835430,213,0 +170767835478,213,0 +170767835527,213,0 +170767835575,214,0 +170767835625,214,0 +170767835673,214,0 +170767835722,214,0 +170767835770,214,0 +170767835818,215,0 +170767835866,215,0 +170767835914,215,0 +170767835963,215,0 +170767836011,215,0 +170767836061,215,0 +170767836108,215,0 +170767836156,215,0 +170767836204,215,0 +170767836254,214,0 +170767836301,213,0 +170767836349,213,0 +170767836397,213,0 +170767836445,214,0 +170767836493,214,0 +170767836541,214,0 +170767836588,214,0 +170767836636,214,0 +170767836684,214,0 +170767836732,215,0 +170767836780,215,0 +170767836828,215,0 +170767836877,215,0 +170767836925,215,0 +170767836973,216,0 +170767837021,215,0 +170767837069,215,0 +170767837117,215,0 +170767837165,215,0 +170767837213,213,0 +170767837261,213,0 +170767837310,213,0 +170767837358,214,0 +170767837406,214,0 +170767837454,214,0 +170767837502,214,0 +170767837550,214,0 +170767837598,214,0 +170767837646,215,0 +170767837695,215,0 +170767837743,215,0 +170767837791,215,0 +170767837839,215,0 +170767837887,215,0 +170767837934,215,0 +170767837982,215,0 +170767838030,215,0 +170767838078,215,0 +170767838126,213,0 +170767838173,213,0 +170767838221,213,0 +170767838269,213,0 +170767838317,213,0 +170767838365,213,0 +170767838412,213,0 +170767838460,213,0 +170767838508,213,0 +170767838556,213,0 +170767838605,214,0 +170767838653,214,0 +170767838701,214,0 +170767838749,214,0 +170767838797,214,0 +170767838845,214,0 +170767838892,215,0 +170767838940,215,0 +170767838988,215,0 +170767839036,213,0 +170767839084,213,0 +170767839131,213,0 +170767839179,213,0 +170767839227,213,0 +170767839275,213,0 +170767839323,213,0 +170767839371,213,0 +170767839419,213,0 +170767839466,214,0 +170767839514,214,0 +170767839562,214,0 +170767839610,214,0 +170767839658,215,0 +170767839705,214,0 +170767839753,214,0 +170767839801,215,0 +170767839849,215,0 +170767839897,215,0 +170767839944,213,0 +170767839992,213,0 +170767840040,213,0 +170767840088,213,0 +170767840136,213,0 +170767840184,214,0 +170767840231,214,0 +170767840279,214,0 +170767840327,214,0 +170767840375,214,0 +170767840423,214,0 +170767840472,214,0 +170767840520,214,0 +170767840568,214,0 +170767840616,215,0 +170767840663,215,0 +170767840711,215,0 +170767840759,215,0 +170767840807,214,0 +170767840855,213,0 +170767840903,213,0 +170767840951,213,0 +170767840998,213,0 +170767841046,214,0 +170767841094,214,0 +170767841142,214,0 +170767841190,214,0 +170767841238,214,0 +170767841285,214,0 +170767841333,214,0 +170767841383,215,0 +170767841430,214,0 +170767841478,215,0 +170767841526,215,0 +170767841574,215,0 +170767841622,215,0 +170767841670,215,0 +170767841718,215,0 +170767841765,214,0 +170767841813,213,0 +170767841861,214,0 +170767841909,214,0 +170767841957,214,0 +170767842004,214,0 +170767842052,214,0 +170767842100,214,0 +170767842150,214,0 +170767842197,215,0 +170767842245,215,0 +170767842293,215,0 +170767842341,215,0 +170767842389,215,0 +170767842438,215,0 +170767842488,215,0 +170767842536,215,0 +170767842585,215,0 +170767842635,214,0 +170767842684,214,0 +170767842732,214,0 +170767842781,214,0 +170767842829,214,0 +170767842877,214,0 +170767842925,214,0 +170767842973,215,0 +170767843021,215,0 +170767843068,215,0 +170767843116,215,0 +170767843164,215,0 +170767843212,216,0 +170767843260,215,0 +170767843309,216,0 +170767843359,215,0 +170767843407,215,0 +170767843455,215,0 +170767843505,215,0 +170767843554,213,0 +170767843602,213,0 +170767843650,214,0 +170767843700,214,0 +170767843747,214,0 +170767843795,214,0 +170767843845,214,0 +170767843893,214,0 +170767843942,214,0 +170767843990,215,0 +170767844038,215,0 +170767844088,215,0 +170767844137,215,0 +170767844185,215,0 +170767844233,215,0 +170767844281,215,0 +170767844329,215,0 +170767844377,215,0 +170767844425,215,0 +170767844473,214,0 +170767844521,214,0 +170767844569,214,0 +170767844617,214,0 +170767844665,214,0 +170767844714,214,0 +170767844762,214,0 +170767844812,214,0 +170767844860,215,0 +170767844908,215,0 +170767844955,215,0 +170767845003,215,0 +170767845051,215,0 +170767845099,215,0 +170767845149,215,0 +170767845196,215,0 +170767845246,215,0 +170767845294,215,0 +170767845342,215,0 +170767845390,214,0 +170767845437,214,0 +170767845485,214,0 +170767845535,214,0 +170767845584,214,0 +170767845632,214,0 +170767845680,214,0 +170767845728,215,0 +170767845778,214,0 +170767845826,215,0 +170767845875,215,0 +170767845925,215,0 +170767845974,215,0 +170767846022,215,0 +170767846070,216,0 +170767846120,216,0 +170767846169,216,0 +170767846217,215,0 +170767846265,214,0 +170767846314,213,0 +170767846362,214,0 +170767846412,214,0 +170767846460,214,0 +170767846508,214,0 +170767846557,214,0 +170767846607,214,0 +170767846655,215,0 +170767846703,215,0 +170767846750,215,0 +170767846798,215,0 +170767846846,215,0 +170767846896,215,0 +170767846944,215,0 +170767846992,215,0 +170767847041,215,0 +170767847089,215,0 +170767847137,215,0 +170767847186,213,0 +170767847236,213,0 +170767847284,213,0 +170767847333,213,0 +170767847381,214,0 +170767847429,214,0 +170767847478,214,0 +170767847526,214,0 +170767847576,214,0 +170767847624,214,0 +170767847672,214,0 +170767847720,215,0 +170767847769,215,0 +170767847817,215,0 +170767847865,215,0 +170767847913,215,0 +170767847961,215,0 +170767848008,215,0 +170767848056,215,0 +170767848106,213,0 +170767848154,213,0 +170767848202,213,0 +170767848249,213,0 +170767848297,213,0 +170767848345,213,0 +170767848393,214,0 +170767848441,214,0 +170767848488,214,0 +170767848538,214,0 +170767848587,214,0 +170767848635,214,0 +170767848685,215,0 +170767848733,215,0 +170767848781,215,0 +170767848828,215,0 +170767848878,215,0 +170767848927,215,0 +170767848975,215,0 +170767849023,213,0 +170767849071,213,0 +170767849121,213,0 +170767849169,213,0 +170767849216,213,0 +170767849264,213,0 +170767849312,214,0 +170767849360,214,0 +170767849410,214,0 +170767849457,214,0 +170767849505,214,0 +170767849555,214,0 +170767849604,215,0 +170767849652,215,0 +170767849700,215,0 +170767849748,215,0 +170767849796,215,0 +170767849845,215,0 +170767849893,215,0 +170767849941,213,0 +170767849989,213,0 +170767850038,213,0 +170767850086,213,0 +170767850134,213,0 +170767850182,213,0 +170767850230,214,0 +170767850278,214,0 +170767850326,214,0 +170767850374,214,0 +170767850422,214,0 +170767850470,215,0 +170767850519,215,0 +170767850567,215,0 +170767850615,215,0 +170767850665,215,0 +170767850713,215,0 +170767850760,215,0 +170767850808,215,0 +170767850858,213,0 +170767850906,213,0 +170767850954,213,0 +170767851003,213,0 +170767851053,213,0 +170767851101,214,0 +170767851150,214,0 +170767851200,214,0 +170767851248,214,0 +170767851296,214,0 +170767851345,214,0 +170767851395,214,0 +170767851444,215,0 +170767851492,215,0 +170767851541,215,0 +170767851589,215,0 +170767851637,215,0 +170767851685,215,0 +170767851733,214,0 +170767851782,213,0 +170767851832,213,0 +170767851880,213,0 +170767851928,213,0 +170767851977,214,0 +170767852025,213,0 +170767852073,214,0 +170767852121,214,0 +170767852169,214,0 +170767852217,214,0 +170767852265,214,0 +170767852314,215,0 +170767852362,215,0 +170767852410,215,0 +170767852458,215,0 +170767852506,215,0 +170767852554,215,0 +170767852602,215,0 +170767852651,213,0 +170767852701,213,0 +170767852749,213,0 +170767852797,213,0 +170767852844,213,0 +170767852892,214,0 +170767852940,213,0 +170767852990,214,0 +170767853038,214,0 +170767853086,214,0 +170767853135,214,0 +170767853183,214,0 +170767853231,214,0 +170767853279,214,0 +170767853328,215,0 +170767853378,215,0 +170767853426,215,0 +170767853474,215,0 +170767853521,215,0 +170767853571,213,0 +170767853620,213,0 +170767853668,213,0 +170767853716,213,0 +170767853764,213,0 +170767853812,213,0 +170767853861,213,0 +170767853909,213,0 +170767853959,213,0 +170767854007,213,0 +170767854056,214,0 +170767854104,214,0 +170767854154,214,0 +170767854202,214,0 +170767854249,214,0 +170767854299,214,0 +170767854347,214,0 +170767854395,215,0 +170767854443,215,0 +170767854492,213,0 +170767854540,213,0 +170767854588,213,0 +170767854636,213,0 +170767854685,213,0 +170767854733,214,0 +170767854781,213,0 +170767854829,214,0 +170767854877,214,0 +170767854925,214,0 +170767854973,214,0 +170767855020,215,0 +170767855068,215,0 +170767855118,215,0 +170767855166,215,0 +170767855213,215,0 +170767855261,215,0 +170767855309,216,0 +170767855357,215,0 +170767855405,213,0 +170767855455,213,0 +170767855504,213,0 +170767855552,213,0 +170767855600,213,0 +170767855649,213,0 +170767855699,214,0 +170767855748,214,0 +170767855798,214,0 +170767855846,214,0 +170767855894,214,0 +170767855943,215,0 +170767855993,215,0 +170767856041,215,0 +170767856089,215,0 +170767856138,215,0 +170767856186,215,0 +170767856234,215,0 +170767856283,214,0 +170767856331,213,0 +170767856379,213,0 +170767856427,214,0 +170767856475,214,0 +170767856523,214,0 +170767856571,214,0 +170767856619,214,0 +170767856667,215,0 +170767856717,215,0 +170767856765,215,0 +170767856812,215,0 +170767856862,215,0 +170767856910,215,0 +170767856959,215,0 +170767857007,215,0 +170767857057,215,0 +170767857105,215,0 +170767857153,215,0 +170767857202,214,0 +170767857252,213,0 +170767857301,214,0 +170767857351,214,0 +170767857399,214,0 +170767857447,214,0 +170767857495,214,0 +170767857543,214,0 +170767857591,214,0 +170767857639,215,0 +170767857688,215,0 +170767857736,215,0 +170767857786,215,0 +170767857835,215,0 +170767857883,215,0 +170767857932,215,0 +170767857980,215,0 +170767858028,215,0 +170767858078,215,0 +170767858126,213,0 +170767858175,213,0 +170767858223,214,0 +170767858271,214,0 +170767858321,214,0 +170767858369,214,0 +170767858418,214,0 +170767858466,214,0 +170767858514,214,0 +170767858564,214,0 +170767858613,215,0 +170767858661,215,0 +170767858709,215,0 +170767858757,215,0 +170767858805,215,0 +170767858853,215,0 +170767858901,216,0 +170767858949,215,0 +170767858997,215,0 +170767859046,213,0 +170767859096,214,0 +170767859145,214,0 +170767859195,214,0 +170767859244,214,0 +170767859292,214,0 +170767859340,214,0 +170767859389,215,0 +170767859437,215,0 +170767859485,215,0 +170767859533,215,0 +170767859581,215,0 +170767859629,215,0 +170767859677,215,0 +170767859725,215,0 +170767859773,215,0 +170767859822,215,0 +170767859872,215,0 +170767859920,214,0 +170767859968,214,0 +170767860016,214,0 +170767860064,214,0 +170767860111,214,0 +170767860159,214,0 +170767860207,214,0 +170767860255,215,0 +170767860305,215,0 +170767860353,215,0 +170767860402,215,0 +170767860450,215,0 +170767860498,216,0 +170767860546,215,0 +170767860596,215,0 +170767860644,215,0 +170767860693,215,0 +170767860741,215,0 +170767860789,215,0 +170767860837,214,0 +170767860885,214,0 +170767860933,214,0 +170767860981,214,0 +170767861030,214,0 +170767861078,214,0 +170767861126,214,0 +170767861176,215,0 +170767861224,215,0 +170767861272,215,0 +170767861320,215,0 +170767861367,215,0 +170767861415,215,0 +170767861465,215,0 +170767861513,215,0 +170767861562,215,0 +170767861610,215,0 +170767861660,215,0 +170767861708,215,0 +170767861758,214,0 +170767861807,214,0 +170767861857,214,0 +170767861904,214,0 +170767861952,214,0 +170767862000,214,0 +170767862050,214,0 +170767862099,215,0 +170767862149,215,0 +170767862197,215,0 +170767862245,215,0 +170767862294,215,0 +170767862342,215,0 +170767862392,215,0 +170767862440,216,0 +170767862487,215,0 +170767862535,215,0 +170767862583,215,0 +170767862631,215,0 +170767862681,214,0 +170767862729,214,0 +170767862778,214,0 +170767862826,214,0 +170767862874,214,0 +170767862922,214,0 +170767862970,215,0 +170767863018,215,0 +170767863067,215,0 +170767863117,215,0 +170767863165,215,0 +170767863214,215,0 +170767863262,215,0 +170767863310,215,0 +170767863358,215,0 +170767863406,216,0 +170767863454,215,0 +170767863503,215,0 +170767863552,214,0 +170767863601,213,0 +170767863649,213,0 +170767863697,213,0 +170767863745,213,0 +170767863793,214,0 +170767863841,214,0 +170767863889,214,0 +170767863938,214,0 +170767863988,214,0 +170767864038,215,0 +170767864086,215,0 +170767864134,215,0 +170767864183,215,0 +170767864233,215,0 +170767864281,215,0 +170767864329,215,0 +170767864377,214,0 +170767864425,215,0 +170767864474,214,0 +170767864524,213,0 +170767864572,213,0 +170767864620,213,0 +170767864667,213,0 +170767864715,213,0 +170767864763,213,0 +170767864811,213,0 +170767864859,213,0 +170767864907,214,0 +170767864955,214,0 +170767865003,214,0 +170767865051,214,0 +170767865099,214,0 +170767865147,214,0 +170767865195,214,0 +170767865242,214,0 +170767865292,215,0 +170767865340,215,0 +170767865388,213,0 +170767865437,213,0 +170767865485,213,0 +170767865533,213,0 +170767865582,213,0 +170767865632,213,0 +170767865680,213,0 +170767865728,213,0 +170767865776,213,0 +170767865824,213,0 +170767865872,214,0 +170767865919,214,0 +170767865967,214,0 +170767866017,214,0 +170767866066,214,0 +170767866114,214,0 +170767866162,215,0 +170767866210,215,0 +170767866258,215,0 +170767866308,213,0 +170767866357,213,0 +170767866405,213,0 +170767866453,213,0 +170767866503,213,0 +170767866550,213,0 +170767866598,213,0 +170767866646,214,0 +170767866694,214,0 +170767866742,214,0 +170767866790,214,0 +170767866838,214,0 +170767866886,215,0 +170767866935,214,0 +170767866983,214,0 +170767867031,215,0 +170767867081,215,0 +170767867129,215,0 +170767867176,215,0 +170767867224,213,0 +170767867274,213,0 +170767867322,213,0 +170767867370,213,0 +170767867418,213,0 +170767867467,213,0 +170767867515,214,0 +170767867565,214,0 +170767867614,214,0 +170767867662,214,0 +170767867712,215,0 +170767867761,214,0 +170767867809,215,0 +170767867858,215,0 +170767867906,215,0 +170767867954,215,0 +170767868002,215,0 +170767868050,215,0 +170767868098,214,0 +170767868146,213,0 +170767868195,213,0 +170767868245,213,0 +170767868293,213,0 +170767868342,213,0 +170767868392,213,0 +170767868440,213,0 +170767868487,213,0 +170767868537,213,0 +170767868585,213,0 +170767868633,214,0 +170767868682,214,0 +170767868730,214,0 +170767868778,214,0 +170767868826,214,0 +170767868876,214,0 +170767868925,215,0 +170767868973,215,0 +170767869021,213,0 +170767869069,213,0 +170767869117,213,0 +170767869166,213,0 +170767869216,213,0 +170767869265,213,0 +170767869315,213,0 +170767869363,213,0 +170767869412,213,0 +170767869460,214,0 +170767869508,214,0 +170767869558,214,0 +170767869606,214,0 +170767869653,215,0 +170767869703,215,0 +170767869751,215,0 +170767869799,215,0 +170767869847,215,0 +170767869896,215,0 +170767869946,213,0 +170767869995,213,0 +170767870043,213,0 +170767870091,213,0 +170767870139,213,0 +170767870189,214,0 +170767870236,213,0 +170767870284,213,0 +170767870334,214,0 +170767870382,214,0 +170767870430,214,0 +170767870479,214,0 +170767870527,214,0 +170767870575,215,0 +170767870623,215,0 +170767870673,215,0 +170767870722,215,0 +170767870770,215,0 +170767870818,215,0 +170767870868,213,0 +170767870917,213,0 +170767870967,213,0 +170767871014,213,0 +170767871062,214,0 +170767871110,214,0 +170767871158,214,0 +170767871206,214,0 +170767871254,214,0 +170767871302,214,0 +170767871351,214,0 +170767871401,215,0 +170767871450,214,0 +170767871500,215,0 +170767871548,215,0 +170767871596,215,0 +170767871645,215,0 +170767871693,215,0 +170767871741,214,0 +170767871790,213,0 +170767871838,213,0 +170767871886,213,0 +170767871934,213,0 +170767871982,213,0 +170767872030,214,0 +170767872078,213,0 +170767872126,214,0 +170767872174,214,0 +170767872223,214,0 +170767872271,214,0 +170767872321,215,0 +170767872369,215,0 +170767872417,215,0 +170767872465,215,0 +170767872514,215,0 +170767872562,215,0 +170767872610,215,0 +170767872659,214,0 +170767872709,213,0 +170767872757,213,0 +170767872806,213,0 +170767872854,214,0 +170767872902,214,0 +170767872950,214,0 +170767872998,214,0 +170767873046,214,0 +170767873094,214,0 +170767873142,214,0 +170767873191,214,0 +170767873239,215,0 +170767873287,214,0 +170767873335,215,0 +170767873383,215,0 +170767873431,215,0 +170767873479,215,0 +170767873527,215,0 +170767873574,214,0 +170767873622,213,0 +170767873670,214,0 +170767873720,214,0 +170767873768,214,0 +170767873817,214,0 +170767873865,214,0 +170767873913,214,0 +170767873963,214,0 +170767874010,214,0 +170767874060,215,0 +170767874108,215,0 +170767874156,215,0 +170767874205,215,0 +170767874255,216,0 +170767874303,215,0 +170767874351,216,0 +170767874400,215,0 +170767874448,215,0 +170767874496,214,0 +170767874544,214,0 +170767874592,214,0 +170767874641,214,0 +170767874691,214,0 +170767874740,214,0 +170767874788,214,0 +170767874836,214,0 +170767874886,215,0 +170767874933,215,0 +170767874981,215,0 +170767875031,215,0 +170767875079,215,0 +170767875128,216,0 +170767875176,215,0 +170767875224,216,0 +170767875272,215,0 +170767875320,215,0 +170767875368,214,0 +170767875416,214,0 +170767875464,214,0 +170767875512,214,0 +170767875560,214,0 +170767875607,214,0 +170767875655,214,0 +170767875703,214,0 +170767875751,215,0 +170767875801,215,0 +170767875849,215,0 +170767875897,215,0 +170767875945,215,0 +170767875993,215,0 +170767876041,216,0 +170767876088,215,0 +170767876136,215,0 +170767876186,215,0 +170767876234,215,0 +170767876281,214,0 +170767876331,213,0 +170767876380,214,0 +170767876430,214,0 +170767876478,214,0 +170767876526,214,0 +170767876575,214,0 +170767876623,214,0 +170767876673,215,0 +170767876721,215,0 +170767876769,215,0 +170767876816,215,0 +170767876864,215,0 +170767876914,215,0 +170767876962,215,0 +170767877010,215,0 +170767877058,216,0 +170767877106,215,0 +170767877154,215,0 +170767877202,214,0 +170767877250,213,0 +170767877298,213,0 +170767877346,214,0 +170767877395,214,0 +170767877443,214,0 +170767877491,214,0 +170767877541,214,0 +170767877588,214,0 +170767877638,214,0 +170767877687,214,0 +170767877735,214,0 +170767877783,215,0 +170767877833,214,0 +170767877881,215,0 +170767877929,215,0 +170767877976,215,0 +170767878024,216,0 +170767878072,215,0 +170767878120,213,0 +170767878168,213,0 +170767878216,213,0 +170767878264,213,0 +170767878312,214,0 +170767878359,214,0 +170767878407,214,0 +170767878455,214,0 +170767878503,214,0 +170767878551,214,0 +170767878599,214,0 +170767878647,215,0 +170767878695,214,0 +170767878742,215,0 +170767878790,215,0 +170767878838,215,0 +170767878888,215,0 +170767878936,215,0 +170767878984,215,0 +170767879032,213,0 +170767879081,213,0 +170767879129,213,0 +170767879177,213,0 +170767879225,213,0 +170767879272,214,0 +170767879322,214,0 +170767879370,214,0 +170767879419,214,0 +170767879467,214,0 +170767879515,214,0 +170767879563,214,0 +170767879611,215,0 +170767879661,215,0 +170767879709,215,0 +170767879757,215,0 +170767879805,215,0 +170767879852,215,0 +170767879900,215,0 +170767879950,213,0 +170767879998,213,0 +170767880047,213,0 +170767880095,213,0 +170767880143,213,0 +170767880191,214,0 +170767880240,214,0 +170767880288,214,0 +170767880336,214,0 +170767880384,214,0 +170767880432,214,0 +170767880480,215,0 +170767880528,215,0 +170767880576,215,0 +170767880624,215,0 +170767880672,215,0 +170767880719,215,0 +170767880767,215,0 +170767880817,215,0 +170767880865,213,0 +170767880913,213,0 +170767880961,213,0 +170767881008,214,0 +170767881056,214,0 +170767881104,214,0 +170767881152,214,0 +170767881200,214,0 +170767881248,214,0 +170767881296,215,0 +170767881344,215,0 +170767881391,215,0 +170767881439,215,0 +170767881487,215,0 +170767881535,215,0 +170767881583,215,0 +170767881631,216,0 +170767881680,215,0 +170767881728,214,0 +170767881776,213,0 +170767881824,213,0 +170767881871,213,0 +170767881919,214,0 +170767881967,214,0 +170767882015,214,0 +170767882063,214,0 +170767882111,214,0 +170767882160,214,0 +170767882208,215,0 +170767882256,214,0 +170767882304,215,0 +170767882352,215,0 +170767882399,215,0 +170767882447,215,0 +170767882495,215,0 +170767882545,215,0 +170767882592,215,0 +170767882640,213,0 +170767882688,213,0 +170767882736,213,0 +170767882784,213,0 +170767882832,214,0 +170767882880,214,0 +170767882927,214,0 +170767882975,214,0 +170767883025,214,0 +170767883073,214,0 +170767883122,215,0 +170767883170,215,0 +170767883218,215,0 +170767883266,215,0 +170767883316,215,0 +170767883365,215,0 +170767883413,215,0 +170767883461,215,0 +170767883510,215,0 +170767883560,214,0 +170767883609,213,0 +170767883657,213,0 +170767883705,213,0 +170767883753,214,0 +170767883801,214,0 +170767883849,214,0 +170767883897,214,0 +170767883945,214,0 +170767883993,214,0 +170767884041,215,0 +170767884091,215,0 +170767884139,214,0 +170767884188,215,0 +170767884236,215,0 +170767884286,215,0 +170767884335,215,0 +170767884385,215,0 +170767884434,215,0 +170767884482,213,0 +170767884532,213,0 +170767884581,213,0 +170767884631,213,0 +170767884680,214,0 +170767884728,214,0 +170767884776,214,0 +170767884826,214,0 +170767884874,214,0 +170767884922,214,0 +170767884971,214,0 +170767885019,215,0 +170767885067,214,0 +170767885115,215,0 +170767885164,215,0 +170767885212,215,0 +170767885260,215,0 +170767885310,215,0 +170767885358,213,0 +170767885406,213,0 +170767885454,213,0 +170767885502,213,0 +170767885551,214,0 +170767885599,214,0 +170767885647,214,0 +170767885697,214,0 +170767885746,214,0 +170767885794,214,0 +170767885844,215,0 +170767885893,215,0 +170767885941,215,0 +170767885989,215,0 +170767886039,215,0 +170767886088,215,0 +170767886136,215,0 +170767886186,215,0 +170767886234,215,0 +170767886282,213,0 +170767886331,213,0 +170767886381,213,0 +170767886428,213,0 +170767886478,213,0 +170767886526,213,0 +170767886576,214,0 +170767886625,214,0 +170767886673,214,0 +170767886722,214,0 +170767886771,214,0 +170767886820,214,0 +170767886868,215,0 +170767886916,215,0 +170767886964,215,0 +170767887012,215,0 +170767887060,215,0 +170767887109,215,0 +170767887159,215,0 +170767887207,213,0 +170767887255,213,0 +170767887302,213,0 +170767887350,213,0 +170767887400,213,0 +170767887447,214,0 +170767887495,214,0 +170767887543,214,0 +170767887591,214,0 +170767887640,214,0 +170767887687,215,0 +170767887735,215,0 +170767887783,215,0 +170767887831,215,0 +170767887879,215,0 +170767887927,215,0 +170767887975,215,0 +170767888024,215,0 +170767888072,214,0 +170767888120,213,0 +170767888169,213,0 +170767888219,213,0 +170767888267,213,0 +170767888315,213,0 +170767888364,214,0 +170767888414,214,0 +170767888462,214,0 +170767888510,214,0 +170767888559,214,0 +170767888607,214,0 +170767888655,215,0 +170767888703,215,0 +170767888751,215,0 +170767888799,215,0 +170767888849,215,0 +170767888896,215,0 +170767888946,215,0 +170767888994,213,0 +170767889042,213,0 +170767889090,213,0 +170767889138,214,0 +170767889186,214,0 +170767889234,214,0 +170767889282,214,0 +170767889329,214,0 +170767889377,214,0 +170767889425,215,0 +170767889473,215,0 +170767889521,215,0 +170767889571,215,0 +170767889619,215,0 +170767889667,215,0 +170767889715,215,0 +170767889763,215,0 +170767889811,215,0 +170767889860,215,0 +170767889908,214,0 +170767889958,213,0 +170767890006,213,0 +170767890054,214,0 +170767890102,214,0 +170767890151,214,0 +170767890199,214,0 +170767890247,214,0 +170767890295,214,0 +170767890345,214,0 +170767890393,215,0 +170767890440,215,0 +170767890488,215,0 +170767890536,215,0 +170767890584,215,0 +170767890632,215,0 +170767890680,215,0 +170767890728,215,0 +170767890776,215,0 +170767890825,213,0 +170767890875,213,0 +170767890924,213,0 +170767890972,214,0 +170767891022,214,0 +170767891070,214,0 +170767891118,214,0 +170767891167,214,0 +170767891217,214,0 +170767891265,215,0 +170767891314,215,0 +170767891362,215,0 +170767891412,215,0 +170767891460,215,0 +170767891509,215,0 +170767891559,215,0 +170767891607,215,0 +170767891655,215,0 +170767891703,214,0 +170767891752,213,0 +170767891802,213,0 +170767891850,213,0 +170767891898,213,0 +170767891946,213,0 +170767891994,213,0 +170767892043,213,0 +170767892091,214,0 +170767892141,214,0 +170767892190,214,0 +170767892238,214,0 +170767892286,214,0 +170767892334,214,0 +170767892382,215,0 +170767892430,215,0 +170767892477,215,0 +170767892525,215,0 +170767892575,215,0 +170767892625,213,0 +170767892673,213,0 +170767892722,213,0 +170767892770,213,0 +170767892818,213,0 +170767892866,213,0 +170767892915,213,0 +170767892963,213,0 +170767893013,214,0 +170767893061,214,0 +170767893110,214,0 +170767893158,215,0 +170767893206,215,0 +170767893254,215,0 +170767893302,215,0 +170767893350,215,0 +170767893399,215,0 +170767893447,215,0 +170767893495,215,0 +170767893543,213,0 +170767893592,213,0 +170767893642,214,0 +170767893691,214,0 +170767893739,214,0 +170767893789,214,0 +170767893838,214,0 +170767893886,214,0 +170767893936,214,0 +170767893985,215,0 +170767894033,215,0 +170767894083,215,0 +170767894132,215,0 +170767894182,215,0 +170767894230,215,0 +170767894278,215,0 +170767894326,215,0 +170767894375,215,0 +170767894425,214,0 +170767894474,213,0 +170767894522,213,0 +170767894570,214,0 +170767894618,214,0 +170767894666,214,0 +170767894714,214,0 +170767894763,214,0 +170767894811,214,0 +170767894859,214,0 +170767894909,215,0 +170767894957,215,0 +170767895006,215,0 +170767895054,215,0 +170767895102,216,0 +170767895152,215,0 +170767895200,215,0 +170767895248,215,0 +170767895297,215,0 +170767895345,214,0 +170767895393,213,0 +170767895441,213,0 +170767895489,214,0 +170767895537,214,0 +170767895585,214,0 +170767895634,215,0 +170767895682,214,0 +170767895730,214,0 +170767895778,215,0 +170767895826,214,0 +170767895874,215,0 +170767895923,215,0 +170767895971,215,0 +170767896019,215,0 +170767896067,215,0 +170767896115,215,0 +170767896163,215,0 +170767896212,215,0 +170767896260,213,0 +170767896310,213,0 +170767896358,213,0 +170767896407,213,0 +170767896455,214,0 +170767896505,214,0 +170767896553,214,0 +170767896602,214,0 +170767896650,214,0 +170767896700,214,0 +170767896748,214,0 +170767896797,215,0 +170767896845,214,0 +170767896895,215,0 +170767896943,214,0 +170767896991,214,0 +170767897039,215,0 +170767897087,215,0 +170767897134,215,0 +170767897184,213,0 +170767897232,213,0 +170767897282,213,0 +170767897331,213,0 +170767897381,214,0 +170767897429,214,0 +170767897476,214,0 +170767897524,214,0 +170767897572,214,0 +170767897620,214,0 +170767897668,215,0 +170767897716,214,0 +170767897764,215,0 +170767897814,215,0 +170767897862,215,0 +170767897911,215,0 +170767897959,215,0 +170767898007,215,0 +170767898055,214,0 +170767898103,213,0 +170767898151,213,0 +170767898199,213,0 +170767898247,213,0 +170767898296,213,0 +170767898344,214,0 +170767898392,214,0 +170767898440,214,0 +170767898488,214,0 +170767898536,214,0 +170767898584,214,0 +170767898633,215,0 +170767898681,215,0 +170767898729,215,0 +170767898776,215,0 +170767898824,215,0 +170767898872,215,0 +170767898920,215,0 +170767898968,214,0 +170767899016,213,0 +170767899063,213,0 +170767899111,213,0 +170767899159,213,0 +170767899207,213,0 +170767899254,214,0 +170767899302,214,0 +170767899350,214,0 +170767899398,214,0 +170767899446,214,0 +170767899494,215,0 +170767899541,215,0 +170767899589,215,0 +170767899639,215,0 +170767899687,215,0 +170767899734,215,0 +170767899782,215,0 +170767899830,215,0 +170767899878,213,0 +170767899926,213,0 +170767899975,213,0 +170767900023,213,0 +170767900071,213,0 +170767900120,213,0 +170767900168,214,0 +170767900216,214,0 +170767900264,214,0 +170767900312,214,0 +170767900360,214,0 +170767900407,215,0 +170767900455,214,0 +170767900503,215,0 +170767900551,215,0 +170767900599,215,0 +170767900646,215,0 +170767900694,215,0 +170767900742,215,0 +170767900792,213,0 +170767900840,213,0 +170767900888,213,0 +170767900936,214,0 +170767900985,214,0 +170767901035,214,0 +170767901083,214,0 +170767901132,214,0 +170767901180,214,0 +170767901228,214,0 +170767901276,214,0 +170767901324,215,0 +170767901372,215,0 +170767901421,215,0 +170767901469,215,0 +170767901517,215,0 +170767901565,215,0 +170767901613,215,0 +170767901661,215,0 +170767901711,213,0 +170767901759,213,0 +170767901806,213,0 +170767901854,213,0 +170767901902,213,0 +170767901950,213,0 +170767901998,213,0 +170767902046,213,0 +170767902094,214,0 +170767902142,214,0 +170767902190,214,0 +170767902238,214,0 +170767902286,214,0 +170767902335,214,0 +170767902383,215,0 +170767902431,215,0 +170767902479,215,0 +170767902527,215,0 +170767902575,215,0 +170767902623,213,0 +170767902673,213,0 +170767902721,213,0 +170767902769,213,0 +170767902817,214,0 +170767902865,214,0 +170767902914,214,0 +170767902962,214,0 +170767903012,214,0 +170767903060,214,0 +170767903108,214,0 +170767903156,215,0 +170767903203,215,0 +170767903251,215,0 +170767903299,215,0 +170767903347,215,0 +170767903395,215,0 +170767903443,215,0 +170767903491,214,0 +170767903539,214,0 +170767903586,214,0 +170767903634,214,0 +170767903682,214,0 +170767903730,214,0 +170767903778,214,0 +170767903826,214,0 +170767903875,214,0 +170767903923,215,0 +170767903971,215,0 +170767904019,215,0 +170767904067,215,0 +170767904115,215,0 +170767904163,215,0 +170767904212,215,0 +170767904260,215,0 +170767904308,215,0 +170767904356,215,0 +170767904404,214,0 +170767904452,214,0 +170767904500,214,0 +170767904550,214,0 +170767904598,214,0 +170767904646,214,0 +170767904695,214,0 +170767904743,215,0 +170767904791,215,0 +170767904839,215,0 +170767904888,215,0 +170767904936,215,0 +170767904984,215,0 +170767905034,215,0 +170767905082,215,0 +170767905130,215,0 +170767905179,215,0 +170767905227,215,0 +170767905275,215,0 +170767905323,214,0 +170767905371,214,0 +170767905419,214,0 +170767905468,214,0 +170767905516,214,0 +170767905564,214,0 +170767905612,214,0 +170767905660,215,0 +170767905710,215,0 +170767905759,215,0 +170767905807,215,0 +170767905855,215,0 +170767905904,215,0 +170767905953,215,0 +170767906002,215,0 +170767906050,215,0 +170767906099,215,0 +170767906149,215,0 +170767906197,214,0 +170767906245,213,0 +170767906293,213,0 +170767906340,214,0 +170767906388,214,0 +170767906436,214,0 +170767906484,214,0 +170767906532,214,0 +170767906580,214,0 +170767906628,215,0 +170767906676,215,0 +170767906724,215,0 +170767906773,215,0 +170767906821,215,0 +170767906869,215,0 +170767906917,215,0 +170767906965,215,0 +170767907013,215,0 +170767907061,215,0 +170767907109,213,0 +170767907157,213,0 +170767907205,213,0 +170767907254,213,0 +170767907302,213,0 +170767907350,214,0 +170767907398,214,0 +170767907448,214,0 +170767907496,214,0 +170767907545,214,0 +170767907593,215,0 +170767907641,215,0 +170767907689,215,0 +170767907737,215,0 +170767907785,215,0 +170767907833,215,0 +170767907881,215,0 +170767907929,215,0 +170767907977,215,0 +170767908025,213,0 +170767908073,213,0 +170767908120,213,0 +170767908168,213,0 +170767908218,213,0 +170767908266,213,0 +170767908314,214,0 +170767908363,214,0 +170767908413,214,0 +170767908462,214,0 +170767908510,215,0 +170767908558,215,0 +170767908606,215,0 +170767908654,215,0 +170767908703,215,0 +170767908751,215,0 +170767908799,215,0 +170767908847,215,0 +170767908895,215,0 +170767908943,213,0 +170767908993,213,0 +170767909040,213,0 +170767909088,213,0 +170767909136,214,0 +170767909184,214,0 +170767909234,214,0 +170767909283,214,0 +170767909331,214,0 +170767909379,214,0 +170767909427,215,0 +170767909475,215,0 +170767909523,215,0 +170767909570,215,0 +170767909618,215,0 +170767909666,215,0 +170767909714,215,0 +170767909762,215,0 +170767909809,214,0 +170767909857,213,0 +170767909905,213,0 +170767909953,213,0 +170767910001,213,0 +170767910049,213,0 +170767910097,213,0 +170767910145,213,0 +170767910192,213,0 +170767910240,213,0 +170767910290,213,0 +170767910338,214,0 +170767910387,214,0 +170767910437,214,0 +170767910486,214,0 +170767910536,215,0 +170767910584,215,0 +170767910632,215,0 +170767910680,215,0 +170767910729,213,0 +170767910777,213,0 +170767910825,213,0 +170767910875,213,0 +170767910924,213,0 +170767910972,213,0 +170767911020,213,0 +170767911068,213,0 +170767911116,213,0 +170767911166,213,0 +170767911215,214,0 +170767911263,214,0 +170767911313,214,0 +170767911362,214,0 +170767911410,214,0 +170767911458,214,0 +170767911506,215,0 +170767911555,215,0 +170767911603,215,0 +170767911651,213,0 +170767911701,213,0 +170767911749,213,0 +170767911798,213,0 +170767911848,213,0 +170767911896,214,0 +170767911943,214,0 +170767911991,214,0 +170767912039,214,0 +170767912087,214,0 +170767912137,214,0 +170767912185,215,0 +170767912233,215,0 +170767912281,215,0 +170767912328,215,0 +170767912378,215,0 +170767912428,215,0 +170767912476,215,0 +170767912523,214,0 +170767912571,213,0 +170767912621,213,0 +170767912670,214,0 +170767912718,214,0 +170767912768,214,0 +170767912817,214,0 +170767912865,214,0 +170767912913,215,0 +170767912963,215,0 +170767913011,215,0 +170767913059,215,0 +170767913107,215,0 +170767913154,215,0 +170767913204,215,0 +170767913252,215,0 +170767913302,215,0 +170767913349,215,0 +170767913397,215,0 +170767913445,213,0 +170767913495,213,0 +170767913543,213,0 +170767913591,213,0 +170767913640,214,0 +170767913688,214,0 +170767913738,214,0 +170767913785,214,0 +170767913833,214,0 +170767913883,214,0 +170767913931,214,0 +170767913979,215,0 +170767914027,215,0 +170767914075,215,0 +170767914123,215,0 +170767914170,215,0 +170767914218,215,0 +170767914266,215,0 +170767914314,214,0 +170767914362,213,0 +170767914411,213,0 +170767914459,214,0 +170767914507,213,0 +170767914555,214,0 +170767914603,214,0 +170767914651,214,0 +170767914699,214,0 +170767914747,214,0 +170767914795,215,0 +170767914844,215,0 +170767914894,215,0 +170767914944,215,0 +170767914991,215,0 +170767915041,215,0 +170767915090,215,0 +170767915138,215,0 +170767915188,215,0 +170767915236,213,0 +170767915284,214,0 +170767915333,214,0 +170767915381,214,0 +170767915431,214,0 +170767915480,214,0 +170767915528,214,0 +170767915578,214,0 +170767915627,215,0 +170767915675,215,0 +170767915725,215,0 +170767915774,215,0 +170767915824,215,0 +170767915871,215,0 +170767915919,215,0 +170767915967,215,0 +170767916017,215,0 +170767916065,216,0 +170767916113,213,0 +170767916161,213,0 +170767916209,214,0 +170767916257,214,0 +170767916307,214,0 +170767916355,215,0 +170767916404,214,0 +170767916454,214,0 +170767916502,215,0 +170767916550,215,0 +170767916598,215,0 +170767916645,215,0 +170767916693,215,0 +170767916743,215,0 +170767916791,215,0 +170767916839,215,0 +170767916888,215,0 +170767916936,215,0 +170767916986,214,0 +170767917035,214,0 +170767917083,214,0 +170767917133,214,0 +170767917181,214,0 +170767917229,214,0 +170767917277,215,0 +170767917325,215,0 +170767917372,215,0 +170767917420,215,0 +170767917468,215,0 +170767917516,216,0 +170767917564,215,0 +170767917612,215,0 +170767917660,215,0 +170767917708,215,0 +170767917756,215,0 +170767917804,214,0 +170767917852,214,0 +170767917900,213,0 +170767917949,214,0 +170767917999,214,0 +170767918047,214,0 +170767918095,214,0 +170767918144,215,0 +170767918192,215,0 +170767918240,215,0 +170767918290,215,0 +170767918338,215,0 +170767918386,215,0 +170767918435,215,0 +170767918483,215,0 +170767918531,215,0 +170767918579,215,0 +170767918627,215,0 +170767918675,213,0 +170767918724,213,0 +170767918774,214,0 +170767918823,214,0 +170767918873,214,0 +170767918921,214,0 +170767918970,214,0 +170767919018,215,0 +170767919068,215,0 +170767919117,215,0 +170767919165,215,0 +170767919213,215,0 +170767919261,215,0 +170767919309,215,0 +170767919357,215,0 +170767919406,215,0 +170767919456,215,0 +170767919504,213,0 +170767919552,213,0 +170767919600,213,0 +170767919648,214,0 +170767919696,214,0 +170767919745,214,0 +170767919793,214,0 +170767919841,214,0 +170767919889,215,0 +170767919939,214,0 +170767919986,215,0 +170767920036,215,0 +170767920084,215,0 +170767920132,215,0 +170767920180,215,0 +170767920229,215,0 +170767920277,215,0 +170767920325,213,0 +170767920373,213,0 +170767920421,213,0 +170767920469,213,0 +170767920517,213,0 +170767920567,213,0 +170767920616,214,0 +170767920666,214,0 +170767920713,214,0 +170767920761,214,0 +170767920809,214,0 +170767920857,215,0 +170767920905,215,0 +170767920953,215,0 +170767921001,215,0 +170767921048,215,0 +170767921096,215,0 +170767921144,213,0 +170767921192,213,0 +170767921240,213,0 +170767921288,213,0 +170767921336,213,0 +170767921383,213,0 +170767921431,213,0 +170767921479,214,0 +170767921527,214,0 +170767921575,214,0 +170767921623,214,0 +170767921672,215,0 +170767921722,215,0 +170767921770,215,0 +170767921819,215,0 +170767921867,215,0 +170767921917,215,0 +170767921966,213,0 +170767922016,213,0 +170767922064,213,0 +170767922113,213,0 +170767922161,213,0 +170767922211,213,0 +170767922259,213,0 +170767922307,214,0 +170767922356,214,0 +170767922404,214,0 +170767922454,214,0 +170767922503,215,0 +170767922553,215,0 +170767922601,215,0 +170767922649,215,0 +170767922697,215,0 +170767922746,215,0 +170767922796,213,0 +170767922845,213,0 +170767922895,213,0 +170767922943,213,0 +170767922990,213,0 +170767923038,213,0 +170767923086,213,0 +170767923136,213,0 +170767923184,213,0 +170767923232,214,0 +170767923281,214,0 +170767923329,214,0 +170767923378,214,0 +170767923426,214,0 +170767923476,214,0 +170767923524,215,0 +170767923572,215,0 +170767923620,215,0 +170767923668,215,0 +170767923716,215,0 +170767923765,215,0 +170767923815,215,0 +170767923864,215,0 +170767923912,215,0 +170767923960,215,0 +170767924010,214,0 +170767924059,213,0 +170767924109,213,0 +170767924157,213,0 +170767924205,214,0 +170767924252,214,0 +170767924300,214,0 +170767924348,214,0 +170767924396,214,0 +170767924444,214,0 +170767924492,215,0 +170767924540,215,0 +170767924588,215,0 +170767924637,215,0 +170767924685,215,0 +170767924733,215,0 +170767924781,215,0 +170767924829,213,0 +170767924878,213,0 +170767924928,213,0 +170767924977,213,0 +170767925025,214,0 +170767925073,213,0 +170767925123,214,0 +170767925171,214,0 +170767925219,214,0 +170767925267,214,0 +170767925315,215,0 +170767925363,215,0 +170767925411,214,0 +170767925460,215,0 +170767925508,215,0 +170767925556,215,0 +170767925604,215,0 +170767925652,213,0 +170767925701,213,0 +170767925751,213,0 +170767925799,213,0 +170767925847,213,0 +170767925895,213,0 +170767925943,213,0 +170767925991,213,0 +170767926040,214,0 +170767926089,214,0 +170767926137,214,0 +170767926185,214,0 +170767926233,214,0 +170767926283,215,0 +170767926331,215,0 +170767926379,215,0 +170767926427,215,0 +170767926475,213,0 +170767926524,213,0 +170767926574,213,0 +170767926622,213,0 +170767926671,213,0 +170767926719,214,0 +170767926767,214,0 +170767926815,214,0 +170767926865,214,0 +170767926913,214,0 +170767926961,215,0 +170767927008,215,0 +170767927056,215,0 +170767927104,215,0 +170767927152,215,0 +170767927202,215,0 +170767927250,215,0 +170767927299,214,0 +170767927347,213,0 +170767927395,213,0 +170767927443,214,0 +170767927490,213,0 +170767927538,214,0 +170767927588,214,0 +170767927637,214,0 +170767927687,214,0 +170767927737,215,0 +170767927786,215,0 +170767927835,215,0 +170767927883,215,0 +170767927931,215,0 +170767927979,215,0 +170767928027,215,0 +170767928075,215,0 +170767928123,214,0 +170767928171,213,0 +170767928218,213,0 +170767928266,213,0 +170767928316,214,0 +170767928363,214,0 +170767928411,214,0 +170767928459,214,0 +170767928507,214,0 +170767928555,214,0 +170767928603,215,0 +170767928652,215,0 +170767928700,215,0 +170767928748,215,0 +170767928796,215,0 +170767928844,215,0 +170767928891,215,0 +170767928939,214,0 +170767928987,213,0 +170767929035,213,0 +170767929083,213,0 +170767929130,213,0 +170767929178,214,0 +170767929226,213,0 +170767929275,214,0 +170767929323,214,0 +170767929371,214,0 +170767929419,214,0 +170767929467,214,0 +170767929515,215,0 +170767929563,215,0 +170767929611,215,0 +170767929658,215,0 +170767929706,215,0 +170767929754,215,0 +170767929802,213,0 +170767929850,213,0 +170767929898,214,0 +170767929946,213,0 +170767929995,214,0 +170767930043,214,0 +170767930091,214,0 +170767930139,214,0 +170767930187,214,0 +170767930237,214,0 +170767930286,215,0 +170767930334,215,0 +170767930384,215,0 +170767930432,215,0 +170767930480,215,0 +170767930529,215,0 +170767930577,215,0 +170767930625,213,0 +170767930673,213,0 +170767930720,214,0 +170767930768,214,0 +170767930816,214,0 +170767930864,214,0 +170767930912,214,0 +170767930960,214,0 +170767931007,215,0 +170767931055,215,0 +170767931103,215,0 +170767931151,215,0 +170767931199,215,0 +170767931247,215,0 +170767931294,215,0 +170767931342,215,0 +170767931390,215,0 +170767931438,214,0 +170767931486,214,0 +170767931534,214,0 +170767931581,214,0 +170767931629,214,0 +170767931677,215,0 +170767931725,215,0 +170767931773,215,0 +170767931820,215,0 +170767931868,215,0 +170767931916,215,0 +170767931964,215,0 +170767932013,216,0 +170767932061,215,0 +170767932111,215,0 +170767932158,215,0 +170767932206,215,0 +170767932254,214,0 +170767932302,214,0 +170767932352,214,0 +170767932401,214,0 +170767932449,214,0 +170767932497,215,0 +170767932546,215,0 +170767932594,215,0 +170767932642,215,0 +170767932690,216,0 +170767932738,215,0 +170767932786,216,0 +170767932834,215,0 +170767932882,215,0 +170767932930,216,0 +170767932978,215,0 +170767933025,215,0 +170767933073,214,0 +170767933123,214,0 +170767933172,214,0 +170767933222,214,0 +170767933270,214,0 +170767933318,214,0 +170767933366,215,0 +170767933414,215,0 +170767933462,215,0 +170767933509,215,0 +170767933557,215,0 +170767933605,215,0 +170767933653,216,0 +170767933701,215,0 +170767933751,215,0 +170767933798,215,0 +170767933846,215,0 +170767933894,214,0 +170767933942,214,0 +170767933990,214,0 +170767934038,214,0 +170767934088,214,0 +170767934135,214,0 +170767934185,214,0 +170767934233,215,0 +170767934281,215,0 +170767934328,215,0 +170767934376,215,0 +170767934424,215,0 +170767934472,215,0 +170767934520,215,0 +170767934568,215,0 +170767934616,215,0 +170767934664,215,0 +170767934713,214,0 +170767934761,213,0 +170767934809,213,0 +170767934858,213,0 +170767934906,213,0 +170767934954,214,0 +170767935002,214,0 +170767935049,214,0 +170767935097,214,0 +170767935145,214,0 +170767935195,215,0 +170767935243,215,0 +170767935291,215,0 +170767935339,215,0 +170767935388,215,0 +170767935436,215,0 +170767935484,215,0 +170767935532,214,0 +170767935580,213,0 +170767935627,213,0 +170767935675,213,0 +170767935723,213,0 +170767935773,214,0 +170767935822,214,0 +170767935870,214,0 +170767935918,214,0 +170767935966,214,0 +170767936014,214,0 +170767936062,215,0 +170767936110,215,0 +170767936157,215,0 +170767936205,215,0 +170767936253,215,0 +170767936301,215,0 +170767936351,213,0 +170767936400,213,0 +170767936448,213,0 +170767936496,213,0 +170767936544,213,0 +170767936592,214,0 +170767936640,214,0 +170767936689,214,0 +170767936737,214,0 +170767936785,214,0 +170767936833,215,0 +170767936881,215,0 +170767936930,215,0 +170767936978,215,0 +170767937026,215,0 +170767937074,215,0 +170767937122,215,0 +170767937170,214,0 +170767937217,213,0 +170767937265,213,0 +170767937313,213,0 +170767937361,214,0 +170767937409,214,0 +170767937458,214,0 +170767937508,214,0 +170767937556,214,0 +170767937604,214,0 +170767937652,215,0 +170767937699,215,0 +170767937747,215,0 +170767937795,215,0 +170767937843,215,0 +170767937891,215,0 +170767937939,215,0 +170767937986,215,0 +170767938034,213,0 +170767938082,213,0 +170767938130,213,0 +170767938178,213,0 +170767938226,214,0 +170767938273,214,0 +170767938321,213,0 +170767938369,213,0 +170767938417,214,0 +170767938465,214,0 +170767938514,214,0 +170767938562,214,0 +170767938612,215,0 +170767938659,215,0 +170767938707,215,0 +170767938755,215,0 +170767938803,215,0 +170767938851,213,0 +170767938899,213,0 +170767938947,213,0 +170767938996,213,0 +170767939044,213,0 +170767939092,213,0 +170767939140,213,0 +170767939189,214,0 +170767939238,214,0 +170767939286,214,0 +170767939333,215,0 +170767939383,215,0 +170767939431,215,0 +170767939479,215,0 +170767939526,215,0 +170767939574,215,0 +170767939622,215,0 +170767939670,213,0 +170767939718,213,0 +170767939766,213,0 +170767939813,213,0 +170767939861,213,0 +170767939909,214,0 +170767939957,214,0 +170767940005,214,0 +170767940053,214,0 +170767940101,214,0 +170767940149,215,0 +170767940198,215,0 +170767940246,215,0 +170767940295,215,0 +170767940343,215,0 +170767940391,215,0 +170767940439,215,0 +170767940487,213,0 +170767940535,213,0 +170767940583,213,0 +170767940631,214,0 +170767940678,214,0 +170767940726,214,0 +170767940774,215,0 +170767940822,215,0 +170767940870,215,0 +170767940918,215,0 +170767940965,215,0 +170767941013,215,0 +170767941061,215,0 +170767941109,215,0 +170767941157,215,0 +170767941205,215,0 +170767941253,215,0 +170767941300,213,0 +170767941348,213,0 +170767941396,214,0 +170767941444,214,0 +170767941492,214,0 +170767941540,214,0 +170767941588,215,0 +170767941636,214,0 +170767941684,214,0 +170767941732,214,0 +170767941779,215,0 +170767941827,215,0 +170767941875,215,0 +170767941923,215,0 +170767941973,215,0 +170767942020,215,0 +170767942070,215,0 +170767942118,214,0 +170767942166,213,0 +170767942214,214,0 +170767942262,214,0 +170767942311,214,0 +170767942359,214,0 +170767942409,214,0 +170767942457,215,0 +170767942504,214,0 +170767942552,215,0 +170767942600,215,0 +170767942648,215,0 +170767942696,215,0 +170767942744,215,0 +170767942794,215,0 +170767942841,215,0 +170767942889,215,0 +170767942937,214,0 +170767942985,213,0 +170767943033,214,0 +170767943081,214,0 +170767943129,214,0 +170767943176,214,0 +170767943226,214,0 +170767943274,214,0 +170767943322,215,0 +170767943371,215,0 +170767943419,215,0 +170767943467,215,0 +170767943516,215,0 +170767943566,215,0 +170767943615,215,0 +170767943663,216,0 +170767943711,215,0 +170767943759,214,0 +170767943807,214,0 +170767943855,214,0 +170767943902,214,0 +170767943950,214,0 +170767943998,214,0 +170767944048,214,0 +170767944096,215,0 +170767944145,215,0 +170767944193,215,0 +170767944241,215,0 +170767944289,215,0 +170767944337,215,0 +170767944385,215,0 +170767944433,215,0 +170767944482,215,0 +170767944532,215,0 +170767944581,214,0 +170767944629,215,0 +170767944677,215,0 +170767944725,215,0 +170767944773,215,0 +170767944822,215,0 +170767944870,215,0 +170767944918,215,0 +170767944966,215,0 +170767945014,216,0 +170767945062,215,0 +170767945112,215,0 +170767945159,216,0 +170767945207,216,0 +170767945255,216,0 +170767945303,215,0 +170767945351,215,0 +170767945399,215,0 +170767945447,215,0 +170767945495,215,0 +170767945543,215,0 +170767945591,215,0 +170767945639,215,0 +170767945688,215,0 +170767945738,216,0 +170767945786,215,0 +170767945833,216,0 +170767945881,216,0 +170767945929,216,0 +170767945979,216,0 +170767946028,216,0 +170767946078,215,0 +170767946126,214,0 +170767946173,214,0 +170767946223,215,0 +170767946270,215,0 +170767946318,214,0 +170767946366,215,0 +170767946414,215,0 +170767946463,215,0 +170767946511,215,0 +170767946561,215,0 +170767946609,216,0 +170767946656,215,0 +170767946704,215,0 +170767946752,215,0 +170767946800,215,0 +170767946848,215,0 +170767946896,215,0 +170767946944,215,0 +170767946992,213,0 +170767947039,214,0 +170767947087,214,0 +170767947135,214,0 +170767947183,214,0 +170767947231,214,0 +170767947279,215,0 +170767947327,215,0 +170767947375,215,0 +170767947423,215,0 +170767947471,215,0 +170767947520,215,0 +170767947568,216,0 +170767947617,215,0 +170767947665,215,0 +170767947713,215,0 +170767947761,214,0 +170767947809,213,0 +170767947857,214,0 +170767947904,214,0 +170767947952,214,0 +170767948000,214,0 +170767948050,214,0 +170767948098,214,0 +170767948146,215,0 +170767948194,214,0 +170767948242,215,0 +170767948290,215,0 +170767948338,215,0 +170767948385,215,0 +170767948433,215,0 +170767948481,215,0 +170767948531,215,0 +170767948578,213,0 +170767948626,213,0 +170767948674,214,0 +170767948722,214,0 +170767948770,214,0 +170767948817,214,0 +170767948865,214,0 +170767948913,214,0 +170767948961,214,0 +170767949009,215,0 +170767949057,215,0 +170767949104,215,0 +170767949152,215,0 +170767949200,215,0 +170767949248,215,0 +170767949296,215,0 +170767949344,215,0 +170767949391,213,0 +170767949439,213,0 +170767949489,213,0 +170767949538,213,0 +170767949586,214,0 +170767949634,214,0 +170767949682,214,0 +170767949730,214,0 +170767949778,214,0 +170767949826,215,0 +170767949874,215,0 +170767949922,215,0 +170767949970,215,0 +170767950019,215,0 +170767950069,215,0 +170767950117,215,0 +170767950166,214,0 +170767950214,213,0 +170767950262,213,0 +170767950312,213,0 +170767950360,213,0 +170767950408,214,0 +170767950456,214,0 +170767950505,214,0 +170767950553,214,0 +170767950601,214,0 +170767950649,214,0 +170767950697,215,0 +170767950745,215,0 +170767950794,215,0 +170767950842,215,0 +170767950891,215,0 +170767950939,215,0 +170767950989,213,0 +170767951037,213,0 +170767951086,213,0 +170767951134,214,0 +170767951182,214,0 +170767951230,214,0 +170767951280,214,0 +170767951329,214,0 +170767951377,214,0 +170767951425,214,0 +170767951473,215,0 +170767951521,215,0 +170767951571,215,0 +170767951619,215,0 +170767951667,215,0 +170767951715,215,0 +170767951764,215,0 +170767951812,213,0 +170767951860,214,0 +170767951909,214,0 +170767951959,214,0 +170767952008,214,0 +170767952056,214,0 +170767952104,214,0 +170767952152,214,0 +170767952200,214,0 +170767952248,214,0 +170767952295,215,0 +170767952345,215,0 +170767952393,215,0 +170767952441,215,0 +170767952488,215,0 +170767952536,215,0 +170767952584,214,0 +170767952632,214,0 +170767952680,214,0 +170767952728,214,0 +170767952777,214,0 +170767952825,214,0 +170767952873,215,0 +170767952921,215,0 +170767952969,215,0 +170767953017,215,0 +170767953066,215,0 +170767953114,216,0 +170767953162,215,0 +170767953210,216,0 +170767953258,215,0 +170767953306,215,0 +170767953354,215,0 +170767953402,214,0 +170767953450,214,0 +170767953497,215,0 +170767953545,215,0 +170767953593,215,0 +170767953641,215,0 +170767953689,215,0 +170767953737,215,0 +170767953784,215,0 +170767953832,215,0 +170767953880,215,0 +170767953928,215,0 +170767953976,215,0 +170767954024,215,0 +170767954072,215,0 +170767954120,215,0 +170767954167,214,0 +170767954215,214,0 +170767954263,214,0 +170767954311,214,0 +170767954359,214,0 +170767954408,214,0 +170767954456,215,0 +170767954504,215,0 +170767954552,215,0 +170767954600,215,0 +170767954648,215,0 +170767954696,215,0 +170767954744,215,0 +170767954792,215,0 +170767954840,215,0 +170767954888,216,0 +170767954936,215,0 +170767954984,214,0 +170767955031,213,0 +170767955079,214,0 +170767955129,214,0 +170767955177,214,0 +170767955225,214,0 +170767955274,214,0 +170767955322,214,0 +170767955372,214,0 +170767955419,215,0 +170767955467,215,0 +170767955515,215,0 +170767955563,215,0 +170767955611,215,0 +170767955659,215,0 +170767955707,215,0 +170767955754,215,0 +170767955802,213,0 +170767955850,214,0 +170767955898,214,0 +170767955946,214,0 +170767955994,214,0 +170767956041,214,0 +170767956089,214,0 +170767956137,214,0 +170767956185,214,0 +170767956233,215,0 +170767956281,215,0 +170767956329,215,0 +170767956377,215,0 +170767956426,215,0 +170767956476,215,0 +170767956523,215,0 +170767956571,215,0 +170767956619,214,0 +170767956667,214,0 +170767956715,214,0 +170767956763,214,0 +170767956811,214,0 +170767956859,214,0 +170767956907,215,0 +170767956955,215,0 +170767957004,215,0 +170767957052,215,0 +170767957100,215,0 +170767957148,217,0 +170767957197,216,0 +170767957245,215,0 +170767957293,215,0 +170767957341,215,0 +170767957389,214,0 +170767957436,214,0 +170767957484,214,0 +170767957532,214,0 +170767957580,214,0 +170767957628,214,0 +170767957675,214,0 +170767957723,215,0 +170767957771,215,0 +170767957819,215,0 +170767957868,215,0 +170767957918,215,0 +170767957966,215,0 +170767958014,216,0 +170767958063,215,0 +170767958113,215,0 +170767958162,215,0 +170767958211,214,0 +170767958260,214,0 +170767958308,214,0 +170767958356,214,0 +170767958404,215,0 +170767958452,215,0 +170767958500,215,0 +170767958548,215,0 +170767958596,215,0 +170767958645,215,0 +170767958693,216,0 +170767958741,216,0 +170767958791,216,0 +170767958839,216,0 +170767958888,215,0 +170767958936,215,0 +170767958984,214,0 +170767959032,213,0 +170767959080,214,0 +170767959128,214,0 +170767959176,214,0 +170767959224,214,0 +170767959272,214,0 +170767959319,215,0 +170767959367,215,0 +170767959415,215,0 +170767959463,215,0 +170767959512,215,0 +170767959560,215,0 +170767959608,215,0 +170767959656,216,0 +170767959704,215,0 +170767959752,215,0 +170767959800,214,0 +170767959847,214,0 +170767959895,214,0 +170767959943,214,0 +170767959991,214,0 +170767960039,214,0 +170767960088,215,0 +170767960136,215,0 +170767960184,215,0 +170767960233,215,0 +170767960281,215,0 +170767960329,215,0 +170767960379,215,0 +170767960427,215,0 +170767960476,215,0 +170767960524,215,0 +170767960572,215,0 +170767960620,214,0 +170767960670,214,0 +170767960719,214,0 +170767960768,214,0 +170767960816,214,0 +170767960864,214,0 +170767960912,214,0 +170767960960,214,0 +170767961008,215,0 +170767961056,215,0 +170767961105,215,0 +170767961153,215,0 +170767961201,215,0 +170767961249,215,0 +170767961297,215,0 +170767961344,215,0 +170767961392,215,0 +170767961440,213,0 +170767961488,213,0 +170767961538,214,0 +170767961586,214,0 +170767961634,214,0 +170767961683,214,0 +170767961731,214,0 +170767961779,214,0 +170767961827,215,0 +170767961875,215,0 +170767961923,215,0 +170767961970,215,0 +170767962018,215,0 +170767962066,216,0 +170767962114,215,0 +170767962162,215,0 +170767962210,214,0 +170767962259,213,0 +170767962309,213,0 +170767962358,214,0 +170767962406,214,0 +170767962454,214,0 +170767962502,214,0 +170767962550,214,0 +170767962598,214,0 +170767962646,215,0 +170767962694,214,0 +170767962744,215,0 +170767962792,215,0 +170767962841,215,0 +170767962890,215,0 +170767962938,215,0 +170767962986,215,0 +170767963034,214,0 +170767963082,214,0 +170767963130,214,0 +170767963178,214,0 +170767963225,214,0 +170767963273,214,0 +170767963321,214,0 +170767963371,215,0 +170767963419,215,0 +170767963467,215,0 +170767963516,215,0 +170767963564,215,0 +170767963612,215,0 +170767963660,215,0 +170767963708,215,0 +170767963758,215,0 +170767963807,214,0 +170767963857,214,0 +170767963904,214,0 +170767963954,214,0 +170767964002,214,0 +170767964050,214,0 +170767964098,214,0 +170767964146,215,0 +170767964193,215,0 +170767964241,215,0 +170767964289,215,0 +170767964339,215,0 +170767964388,215,0 +170767964436,215,0 +170767964484,215,0 +170767964532,215,0 +170767964580,215,0 +170767964628,214,0 +170767964676,214,0 +170767964724,214,0 +170767964772,214,0 +170767964820,215,0 +170767964868,215,0 +170767964917,215,0 +170767964965,215,0 +170767965013,215,0 +170767965063,215,0 +170767965110,215,0 +170767965158,215,0 +170767965206,216,0 +170767965256,216,0 +170767965305,215,0 +170767965353,215,0 +170767965401,214,0 +170767965449,215,0 +170767965497,214,0 +170767965547,215,0 +170767965595,215,0 +170767965643,215,0 +170767965692,215,0 +170767965741,215,0 +170767965789,215,0 +170767965837,216,0 +170767965887,216,0 +170767965935,216,0 +170767965982,215,0 +170767966030,215,0 +170767966078,215,0 +170767966126,215,0 +170767966174,215,0 +170767966222,214,0 +170767966270,214,0 +170767966318,214,0 +170767966367,214,0 +170767966417,214,0 +170767966466,214,0 +170767966514,214,0 +170767966564,215,0 +170767966612,216,0 +170767966661,215,0 +170767966709,215,0 +170767966759,215,0 +170767966807,215,0 +170767966856,215,0 +170767966904,215,0 +170767966952,215,0 +170767967001,215,0 +170767967051,214,0 +170767967099,214,0 +170767967148,214,0 +170767967198,214,0 +170767967246,214,0 +170767967294,214,0 +170767967342,214,0 +170767967391,215,0 +170767967439,215,0 +170767967487,215,0 +170767967537,215,0 +170767967585,215,0 +170767967632,215,0 +170767967682,215,0 +170767967730,215,0 +170767967779,215,0 +170767967827,214,0 +170767967877,214,0 +170767967926,214,0 +170767967974,214,0 +170767968024,214,0 +170767968072,214,0 +170767968121,214,0 +170767968169,214,0 +170767968217,214,0 +170767968265,215,0 +170767968313,215,0 +170767968361,215,0 +170767968409,215,0 +170767968457,215,0 +170767968505,215,0 +170767968553,215,0 +170767968601,215,0 +170767968648,213,0 +170767968696,213,0 +170767968746,214,0 +170767968794,214,0 +170767968842,214,0 +170767968891,214,0 +170767968939,214,0 +170767968989,215,0 +170767969037,215,0 +170767969085,215,0 +170767969133,215,0 +170767969180,215,0 +170767969228,215,0 +170767969276,215,0 +170767969326,215,0 +170767969375,215,0 +170767969425,213,0 +170767969473,213,0 +170767969522,213,0 +170767969570,214,0 +170767969620,214,0 +170767969668,214,0 +170767969716,214,0 +170767969765,214,0 +170767969813,215,0 +170767969861,215,0 +170767969911,215,0 +170767969959,215,0 +170767970008,215,0 +170767970056,215,0 +170767970104,215,0 +170767970154,215,0 +170767970202,214,0 +170767970250,214,0 +170767970299,214,0 +170767970349,214,0 +170767970397,214,0 +170767970446,214,0 +170767970494,214,0 +170767970544,215,0 +170767970591,215,0 +170767970639,215,0 +170767970687,215,0 +170767970737,215,0 +170767970785,216,0 +170767970834,216,0 +170767970884,215,0 +170767970932,215,0 +170767970981,215,0 +170767971031,214,0 +170767971079,214,0 +170767971128,214,0 +170767971176,214,0 +170767971224,214,0 +170767971272,214,0 +170767971320,214,0 +170767971368,215,0 +170767971417,214,0 +170767971465,215,0 +170767971513,215,0 +170767971561,215,0 +170767971609,215,0 +170767971657,215,0 +170767971705,215,0 +170767971753,215,0 +170767971801,215,0 +170767971849,213,0 +170767971897,213,0 +170767971946,214,0 +170767971996,214,0 +170767972044,214,0 +170767972093,214,0 +170767972141,214,0 +170767972189,214,0 +170767972239,215,0 +170767972288,215,0 +170767972338,215,0 +170767972386,215,0 +170767972434,215,0 +170767972482,215,0 +170767972530,215,0 +170767972579,215,0 +170767972629,214,0 +170767972677,214,0 +170767972726,214,0 +170767972776,214,0 +170767972824,214,0 +170767972872,214,0 +170767972921,214,0 +170767972969,215,0 +170767973017,215,0 +170767973065,215,0 +170767973113,215,0 +170767973161,215,0 +170767973209,215,0 +170767973257,215,0 +170767973305,215,0 +170767973353,215,0 +170767973402,215,0 +170767973452,214,0 +170767973501,214,0 +170767973549,214,0 +170767973597,214,0 +170767973647,214,0 +170767973696,214,0 +170767973744,215,0 +170767973792,215,0 +170767973840,215,0 +170767973888,215,0 +170767973938,215,0 +170767973986,215,0 +170767974034,215,0 +170767974083,215,0 +170767974131,215,0 +170767974179,215,0 +170767974227,214,0 +170767974275,214,0 +170767974323,214,0 +170767974371,214,0 +170767974419,214,0 +170767974468,214,0 +170767974516,214,0 +170767974564,215,0 +170767974614,215,0 +170767974662,215,0 +170767974711,215,0 +170767974759,215,0 +170767974807,215,0 +170767974855,215,0 +170767974903,215,0 +170767974952,215,0 +170767975000,215,0 +170767975048,214,0 +170767975096,214,0 +170767975144,214,0 +170767975194,214,0 +170767975242,214,0 +170767975290,214,0 +170767975339,215,0 +170767975387,215,0 +170767975436,215,0 +170767975484,215,0 +170767975532,215,0 +170767975580,216,0 +170767975628,215,0 +170767975676,215,0 +170767975725,215,0 +170767975775,215,0 +170767975823,215,0 +170767975872,213,0 +170767975920,214,0 +170767975968,214,0 +170767976016,214,0 +170767976064,214,0 +170767976112,214,0 +170767976162,215,0 +170767976211,214,0 +170767976259,215,0 +170767976307,215,0 +170767976357,215,0 +170767976406,215,0 +170767976456,215,0 +170767976505,215,0 +170767976553,215,0 +170767976603,215,0 +170767976651,213,0 +170767976699,213,0 +170767976748,213,0 +170767976796,214,0 +170767976844,214,0 +170767976894,214,0 +170767976942,214,0 +170767976991,214,0 +170767977039,214,0 +170767977087,214,0 +170767977135,215,0 +170767977185,215,0 +170767977233,215,0 +170767977281,215,0 +170767977329,215,0 +170767977378,215,0 +170767977426,214,0 +170767977476,213,0 +170767977524,213,0 +170767977572,213,0 +170767977620,214,0 +170767977668,214,0 +170767977715,214,0 +170767977763,214,0 +170767977811,214,0 +170767977861,215,0 +170767977909,215,0 +170767977958,215,0 +170767978006,215,0 +170767978054,215,0 +170767978102,215,0 +170767978150,215,0 +170767978198,215,0 +170767978246,214,0 +170767978294,213,0 +170767978342,213,0 +170767978391,214,0 +170767978439,214,0 +170767978487,214,0 +170767978537,214,0 +170767978586,215,0 +170767978636,214,0 +170767978684,215,0 +170767978732,215,0 +170767978781,215,0 +170767978829,215,0 +170767978877,215,0 +170767978925,215,0 +170767978972,215,0 +170767979020,215,0 +170767979068,213,0 +170767979116,214,0 +170767979164,214,0 +170767979212,214,0 +170767979260,214,0 +170767979307,214,0 +170767979355,214,0 +170767979403,214,0 +170767979451,215,0 +170767979499,215,0 +170767979547,215,0 +170767979594,215,0 +170767979642,215,0 +170767979690,215,0 +170767979738,215,0 +170767979786,215,0 +170767979834,215,0 +170767979883,213,0 +170767979932,213,0 +170767979980,214,0 +170767980028,214,0 +170767980076,214,0 +170767980124,214,0 +170767980172,214,0 +170767980219,214,0 +170767980267,214,0 +170767980317,215,0 +170767980365,215,0 +170767980412,215,0 +170767980460,215,0 +170767980510,215,0 +170767980557,215,0 +170767980605,215,0 +170767980653,214,0 +170767980701,214,0 +170767980749,214,0 +170767980797,214,0 +170767980844,214,0 +170767980892,214,0 +170767980940,214,0 +170767980988,215,0 +170767981036,215,0 +170767981084,215,0 +170767981132,215,0 +170767981180,215,0 +170767981229,215,0 +170767981277,215,0 +170767981325,215,0 +170767981373,215,0 +170767981421,215,0 +170767981469,214,0 +170767981517,214,0 +170767981565,214,0 +170767981613,214,0 +170767981661,214,0 +170767981709,214,0 +170767981757,214,0 +170767981806,214,0 +170767981854,215,0 +170767981902,215,0 +170767981950,215,0 +170767981999,215,0 +170767982047,215,0 +170767982094,215,0 +170767982144,215,0 +170767982192,215,0 +170767982240,215,0 +170767982287,214,0 +170767982335,214,0 +170767982383,214,0 +170767982431,214,0 +170767982479,215,0 +170767982526,214,0 +170767982574,215,0 +170767982622,215,0 +170767982670,215,0 +170767982718,216,0 +170767982765,215,0 +170767982813,215,0 +170767982861,215,0 +170767982910,216,0 +170767982958,215,0 +170767983006,215,0 +170767983055,214,0 +170767983103,214,0 +170767983151,215,0 +170767983200,214,0 +170767983250,215,0 +170767983298,215,0 +170767983347,215,0 +170767983395,215,0 +170767983443,215,0 +170767983493,215,0 +170767983540,216,0 +170767983588,216,0 +170767983636,216,0 +170767983684,216,0 +170767983732,216,0 +170767983780,215,0 +170767983828,215,0 +170767983875,214,0 +170767983923,214,0 +170767983971,214,0 +170767984019,214,0 +170767984067,215,0 +170767984115,214,0 +170767984163,215,0 +170767984212,215,0 +170767984261,215,0 +170767984309,215,0 +170767984357,215,0 +170767984405,215,0 +170767984453,216,0 +170767984501,215,0 +170767984549,215,0 +170767984596,215,0 +170767984644,214,0 +170767984692,214,0 +170767984740,214,0 +170767984789,214,0 +170767984837,215,0 +170767984885,215,0 +170767984933,215,0 +170767984981,215,0 +170767985028,215,0 +170767985076,215,0 +170767985126,216,0 +170767985173,215,0 +170767985221,215,0 +170767985269,215,0 +170767985317,215,0 +170767985365,215,0 +170767985413,215,0 +170767985460,215,0 +170767985508,214,0 +170767985556,214,0 +170767985604,215,0 +170767985652,215,0 +170767985700,215,0 +170767985747,215,0 +170767985797,215,0 +170767985845,215,0 +170767985893,216,0 +170767985940,215,0 +170767985988,215,0 +170767986036,215,0 +170767986084,215,0 +170767986132,215,0 +170767986180,215,0 +170767986227,215,0 +170767986275,213,0 +170767986323,214,0 +170767986371,213,0 +170767986419,214,0 +170767986467,214,0 +170767986515,214,0 +170767986562,214,0 +170767986612,214,0 +170767986660,215,0 +170767986707,215,0 +170767986755,215,0 +170767986803,215,0 +170767986851,215,0 +170767986899,215,0 +170767986947,215,0 +170767986994,215,0 +170767987042,214,0 +170767987090,213,0 +170767987138,213,0 +170767987186,214,0 +170767987233,214,0 +170767987281,214,0 +170767987329,214,0 +170767987377,214,0 +170767987425,214,0 +170767987473,214,0 +170767987520,215,0 +170767987568,215,0 +170767987616,215,0 +170767987664,215,0 +170767987712,215,0 +170767987760,215,0 +170767987809,215,0 +170767987857,213,0 +170767987905,213,0 +170767987953,213,0 +170767988001,213,0 +170767988050,213,0 +170767988098,214,0 +170767988146,214,0 +170767988194,214,0 +170767988242,214,0 +170767988289,214,0 +170767988337,214,0 +170767988385,215,0 +170767988433,215,0 +170767988481,215,0 +170767988529,215,0 +170767988576,215,0 +170767988624,215,0 +170767988672,214,0 +170767988720,213,0 +170767988768,214,0 +170767988816,214,0 +170767988863,214,0 +170767988911,214,0 +170767988959,214,0 +170767989008,214,0 +170767989056,214,0 +170767989104,214,0 +170767989152,215,0 +170767989200,215,0 +170767989247,215,0 +170767989295,215,0 +170767989345,216,0 +170767989392,215,0 +170767989440,215,0 +170767989488,213,0 +170767989536,213,0 +170767989584,214,0 +170767989632,214,0 +170767989680,214,0 +170767989727,214,0 +170767989775,215,0 +170767989825,215,0 +170767989873,215,0 +170767989921,215,0 +170767989969,215,0 +170767990017,215,0 +170767990064,215,0 +170767990112,215,0 +170767990162,215,0 +170767990210,215,0 +170767990258,214,0 +170767990305,214,0 +170767990353,214,0 +170767990403,214,0 +170767990450,214,0 +170767990498,214,0 +170767990546,214,0 +170767990594,214,0 +170767990643,215,0 +170767990691,215,0 +170767990739,215,0 +170767990787,215,0 +170767990835,215,0 +170767990882,215,0 +170767990930,215,0 +170767990978,215,0 +170767991026,215,0 +170767991074,213,0 +170767991121,213,0 +170767991169,213,0 +170767991217,213,0 +170767991265,214,0 +170767991313,214,0 +170767991361,214,0 +170767991410,214,0 +170767991458,214,0 +170767991506,215,0 +170767991555,215,0 +170767991603,215,0 +170767991651,215,0 +170767991700,215,0 +170767991748,215,0 +170767991798,215,0 +170767991846,215,0 +170767991894,213,0 +170767991941,213,0 +170767991989,213,0 +170767992037,213,0 +170767992085,214,0 +170767992133,214,0 +170767992181,214,0 +170767992229,214,0 +170767992277,214,0 +170767992327,214,0 +170767992375,214,0 +170767992423,215,0 +170767992472,215,0 +170767992520,215,0 +170767992568,215,0 +170767992616,215,0 +170767992665,214,0 +170767992713,213,0 +170767992761,214,0 +170767992810,214,0 +170767992858,214,0 +170767992906,214,0 +170767992956,214,0 +170767993005,214,0 +170767993053,214,0 +170767993101,214,0 +170767993151,214,0 +170767993198,215,0 +170767993246,215,0 +170767993294,215,0 +170767993342,215,0 +170767993392,215,0 +170767993440,215,0 +170767993487,214,0 +170767993535,214,0 +170767993583,214,0 +170767993631,214,0 +170767993679,214,0 +170767993727,215,0 +170767993775,215,0 +170767993823,215,0 +170767993870,215,0 +170767993918,215,0 +170767993966,215,0 +170767994014,215,0 +170767994062,216,0 +170767994110,216,0 +170767994158,215,0 +170767994205,215,0 +170767994253,215,0 +170767994301,215,0 +170767994349,215,0 +170767994397,215,0 +170767994445,215,0 +170767994494,215,0 +170767994544,215,0 +170767994592,215,0 +170767994639,215,0 +170767994687,215,0 +170767994735,216,0 +170767994783,216,0 +170767994831,216,0 +170767994879,216,0 +170767994927,215,0 +170767994975,215,0 +170767995022,215,0 +170767995070,215,0 +170767995118,215,0 +170767995166,215,0 +170767995214,215,0 +170767995262,215,0 +170767995310,215,0 +170767995357,215,0 +170767995405,215,0 +170767995453,216,0 +170767995501,215,0 +170767995549,216,0 +170767995597,216,0 +170767995644,216,0 +170767995692,216,0 +170767995740,216,0 +170767995788,215,0 +170767995836,215,0 +170767995885,214,0 +170767995935,214,0 +170767995982,214,0 +170767996030,215,0 +170767996078,215,0 +170767996126,215,0 +170767996174,215,0 +170767996222,215,0 +170767996270,215,0 +170767996319,215,0 +170767996367,215,0 +170767996415,215,0 +170767996463,215,0 +170767996512,215,0 +170767996560,215,0 +170767996608,215,0 +170767996656,215,0 +170767996704,214,0 +170767996752,214,0 +170767996799,214,0 +170767996847,214,0 +170767996895,214,0 +170767996943,214,0 +170767996991,215,0 +170767997039,214,0 +170767997087,215,0 +170767997134,215,0 +170767997182,215,0 +170767997230,215,0 +170767997278,215,0 +170767997326,215,0 +170767997374,215,0 +170767997422,215,0 +170767997469,215,0 +170767997517,213,0 +170767997565,213,0 +170767997613,214,0 +170767997661,214,0 +170767997709,214,0 +170767997757,214,0 +170767997805,214,0 +170767997852,214,0 +170767997900,215,0 +170767997948,215,0 +170767997996,215,0 +170767998044,215,0 +170767998092,215,0 +170767998140,215,0 +170767998188,215,0 +170767998237,215,0 +170767998285,214,0 +170767998333,213,0 +170767998380,214,0 +170767998428,214,0 +170767998476,214,0 +170767998524,214,0 +170767998572,214,0 +170767998620,214,0 +170767998668,215,0 +170767998716,215,0 +170767998763,215,0 +170767998811,215,0 +170767998859,215,0 +170767998907,215,0 +170767998955,215,0 +170767999003,215,0 +170767999050,215,0 +170767999098,213,0 +170767999146,213,0 +170767999194,214,0 +170767999242,213,0 +170767999290,214,0 +170767999338,214,0 +170767999385,214,0 +170767999435,214,0 +170767999483,214,0 +170767999531,215,0 +170767999579,215,0 +170767999626,215,0 +170767999676,215,0 +170767999724,215,0 +170767999771,215,0 +170767999819,215,0 +170767999867,215,0 +170767999917,213,0 +170767999964,213,0 +170768000012,214,0 +170768000060,214,0 +170768000108,214,0 +170768000156,214,0 +170768000203,214,0 +170768000251,214,0 +170768000299,214,0 +170768000347,215,0 +170768000395,215,0 +170768000442,215,0 +170768000490,215,0 +170768000538,215,0 +170768000586,215,0 +170768000634,215,0 +170768000683,214,0 +170768000731,213,0 +170768000779,213,0 +170768000827,213,0 +170768000876,214,0 +170768000924,214,0 +170768000972,214,0 +170768001019,214,0 +170768001067,214,0 +170768001115,214,0 +170768001163,214,0 +170768001211,215,0 +170768001258,215,0 +170768001306,215,0 +170768001354,215,0 +170768001402,215,0 +170768001450,215,0 +170768001499,214,0 +170768001547,213,0 +170768001595,213,0 +170768001643,214,0 +170768001693,214,0 +170768001740,214,0 +170768001788,214,0 +170768001838,214,0 +170768001887,215,0 +170768001935,215,0 +170768001983,215,0 +170768002033,215,0 +170768002081,215,0 +170768002129,215,0 +170768002177,215,0 +170768002225,215,0 +170768002273,215,0 +170768002321,214,0 +170768002370,214,0 +170768002420,214,0 +170768002467,214,0 +170768002515,214,0 +170768002563,214,0 +170768002611,214,0 +170768002659,215,0 +170768002707,215,0 +170768002755,215,0 +170768002803,215,0 +170768002850,215,0 +170768002898,215,0 +170768002946,215,0 +170768002994,215,0 +170768003044,215,0 +170768003092,215,0 +170768003139,214,0 +170768003187,214,0 +170768003235,214,0 +170768003283,214,0 +170768003331,214,0 +170768003379,215,0 +170768003427,215,0 +170768003475,215,0 +170768003523,215,0 +170768003570,215,0 +170768003618,215,0 +170768003666,215,0 +170768003714,216,0 +170768003762,215,0 +170768003809,215,0 +170768003857,215,0 +170768003905,214,0 +170768003953,214,0 +170768004001,214,0 +170768004049,214,0 +170768004096,214,0 +170768004144,214,0 +170768004192,214,0 +170768004240,214,0 +170768004288,215,0 +170768004336,215,0 +170768004384,215,0 +170768004431,215,0 +170768004479,215,0 +170768004527,215,0 +170768004575,215,0 +170768004623,215,0 +170768004671,215,0 +170768004718,214,0 +170768004766,214,0 +170768004814,214,0 +170768004862,214,0 +170768004910,214,0 +170768004958,214,0 +170768005005,214,0 +170768005053,215,0 +170768005101,215,0 +170768005149,215,0 +170768005197,215,0 +170768005246,215,0 +170768005294,215,0 +170768005342,215,0 +170768005390,215,0 +170768005438,215,0 +170768005486,215,0 +170768005534,214,0 +170768005583,214,0 +170768005631,214,0 +170768005681,214,0 +170768005729,214,0 +170768005776,215,0 +170768005824,214,0 +170768005872,215,0 +170768005920,215,0 +170768005968,215,0 +170768006016,215,0 +170768006063,215,0 +170768006113,216,0 +170768006160,215,0 +170768006208,215,0 +170768006256,215,0 +170768006304,215,0 +170768006352,214,0 +170768006400,214,0 +170768006447,214,0 +170768006495,214,0 +170768006543,215,0 +170768006591,215,0 +170768006639,215,0 +170768006687,215,0 +170768006735,215,0 +170768006782,215,0 +170768006830,215,0 +170768006878,215,0 +170768006926,216,0 +170768006975,215,0 +170768007023,216,0 +170768007071,215,0 +170768007121,214,0 +170768007169,213,0 +170768007217,214,0 +170768007266,214,0 +170768007314,214,0 +170768007362,214,0 +170768007410,215,0 +170768007458,215,0 +170768007506,215,0 +170768007555,215,0 +170768007603,215,0 +170768007652,215,0 +170768007700,216,0 +170768007750,215,0 +170768007798,215,0 +170768007846,215,0 +170768007894,215,0 +170768007942,214,0 +170768007991,214,0 +170768008039,214,0 +170768008089,214,0 +170768008136,214,0 +170768008184,214,0 +170768008232,214,0 +170768008280,215,0 +170768008328,214,0 +170768008376,215,0 +170768008424,215,0 +170768008473,215,0 +170768008521,215,0 +170768008569,215,0 +170768008617,215,0 +170768008666,215,0 +170768008714,214,0 +170768008764,213,0 +170768008812,213,0 +170768008860,214,0 +170768008908,214,0 +170768008955,214,0 +170768009005,214,0 +170768009053,214,0 +170768009102,215,0 +170768009150,214,0 +170768009198,215,0 +170768009246,215,0 +170768009294,215,0 +170768009342,215,0 +170768009390,215,0 +170768009438,215,0 +170768009486,215,0 +170768009535,213,0 +170768009583,213,0 +170768009631,214,0 +170768009679,214,0 +170768009729,214,0 +170768009777,214,0 +170768009826,215,0 +170768009874,215,0 +170768009922,214,0 +170768009971,215,0 +170768010021,215,0 +170768010071,215,0 +170768010118,215,0 +170768010166,215,0 +170768010214,215,0 +170768010262,215,0 +170768010311,214,0 +170768010361,213,0 +170768010409,213,0 +170768010457,214,0 +170768010505,214,0 +170768010553,214,0 +170768010601,214,0 +170768010648,214,0 +170768010696,215,0 +170768010746,215,0 +170768010795,215,0 +170768010843,215,0 +170768010891,215,0 +170768010939,215,0 +170768010987,216,0 +170768011037,217,0 +170768011084,215,0 +170768011132,213,0 +170768011180,213,0 +170768011228,214,0 +170768011276,213,0 +170768011324,214,0 +170768011372,214,0 +170768011420,214,0 +170768011468,214,0 +170768011516,215,0 +170768011564,215,0 +170768011612,215,0 +170768011659,215,0 +170768011707,215,0 +170768011755,215,0 +170768011805,215,0 +170768011854,215,0 +170768011904,215,0 +170768011952,213,0 +170768011999,213,0 +170768012047,214,0 +170768012095,214,0 +170768012143,214,0 +170768012191,214,0 +170768012239,214,0 +170768012287,214,0 +170768012335,215,0 +170768012383,215,0 +170768012432,215,0 +170768012480,215,0 +170768012528,215,0 +170768012576,215,0 +170768012624,215,0 +170768012671,215,0 +170768012719,214,0 +170768012767,214,0 +170768012815,214,0 +170768012863,214,0 +170768012912,214,0 +170768012960,214,0 +170768013008,214,0 +170768013056,215,0 +170768013104,215,0 +170768013152,215,0 +170768013200,215,0 +170768013248,215,0 +170768013296,215,0 +170768013344,215,0 +170768013392,215,0 +170768013440,215,0 +170768013488,215,0 +170768013535,214,0 +170768013583,214,0 +170768013631,214,0 +170768013679,214,0 +170768013727,214,0 +170768013775,214,0 +170768013825,214,0 +170768013872,214,0 +170768013920,215,0 +170768013968,215,0 +170768014016,215,0 +170768014064,215,0 +170768014112,215,0 +170768014159,215,0 +170768014207,215,0 +170768014255,215,0 +170768014303,215,0 +170768014353,214,0 +170768014400,214,0 +170768014450,214,0 +170768014498,215,0 +170768014546,215,0 +170768014594,215,0 +170768014642,215,0 +170768014691,215,0 +170768014741,215,0 +170768014789,215,0 +170768014837,215,0 +170768014885,216,0 +170768014933,215,0 +170768014981,216,0 +170768015030,215,0 +170768015078,215,0 +170768015126,214,0 +170768015174,214,0 +170768015222,214,0 +170768015270,215,0 +170768015319,215,0 +170768015369,215,0 +170768015418,215,0 +170768015466,215,0 +170768015516,215,0 +170768015564,215,0 +170768015613,215,0 +170768015661,215,0 +170768015709,215,0 +170768015757,216,0 +170768015805,215,0 +170768015853,215,0 +170768015901,215,0 +170768015949,214,0 +170768015996,214,0 +170768016044,214,0 +170768016092,214,0 +170768016142,214,0 +170768016191,214,0 +170768016239,214,0 +170768016287,215,0 +170768016335,215,0 +170768016385,215,0 +170768016434,215,0 +170768016482,215,0 +170768016530,215,0 +170768016578,215,0 +170768016628,215,0 +170768016676,215,0 +170768016725,214,0 +170768016775,213,0 +170768016823,214,0 +170768016872,214,0 +170768016920,214,0 +170768016969,214,0 +170768017019,214,0 +170768017067,214,0 +170768017115,214,0 +170768017163,214,0 +170768017212,215,0 +170768017260,215,0 +170768017308,215,0 +170768017356,215,0 +170768017405,215,0 +170768017455,215,0 +170768017504,215,0 +170768017554,213,0 +170768017603,213,0 +170768017653,213,0 +170768017701,214,0 +170768017749,214,0 +170768017797,214,0 +170768017845,214,0 +170768017893,214,0 +170768017941,214,0 +170768017989,214,0 +170768018038,214,0 +170768018086,214,0 +170768018134,215,0 +170768018183,215,0 +170768018233,215,0 +170768018281,215,0 +170768018330,214,0 +170768018378,213,0 +170768018426,213,0 +170768018476,214,0 +170768018523,214,0 +170768018571,214,0 +170768018619,214,0 +170768018667,215,0 +170768018715,214,0 +170768018763,215,0 +170768018812,215,0 +170768018860,217,0 +170768018908,215,0 +170768018956,215,0 +170768019004,216,0 +170768019052,215,0 +170768019100,215,0 +170768019148,214,0 +170768019196,214,0 +170768019245,214,0 +170768019295,214,0 +170768019343,214,0 +170768019391,214,0 +170768019440,214,0 +170768019488,215,0 +170768019536,215,0 +170768019586,215,0 +170768019635,215,0 +170768019685,215,0 +170768019733,215,0 +170768019782,215,0 +170768019832,215,0 +170768019880,215,0 +170768019927,214,0 +170768019977,214,0 +170768020025,214,0 +170768020073,214,0 +170768020120,214,0 +170768020168,214,0 +170768020216,215,0 +170768020264,215,0 +170768020312,215,0 +170768020360,215,0 +170768020409,215,0 +170768020459,215,0 +170768020507,215,0 +170768020555,215,0 +170768020604,215,0 +170768020652,215,0 +170768020702,215,0 +170768020750,213,0 +170768020798,213,0 +170768020847,213,0 +170768020895,213,0 +170768020943,214,0 +170768020992,214,0 +170768021040,214,0 +170768021088,215,0 +170768021136,215,0 +170768021186,215,0 +170768021234,215,0 +170768021282,215,0 +170768021329,215,0 +170768021377,215,0 +170768021427,215,0 +170768021475,215,0 +170768021524,214,0 +170768021574,214,0 +170768021622,214,0 +170768021671,214,0 +170768021719,214,0 +170768021767,214,0 +170768021815,214,0 +170768021863,214,0 +170768021910,215,0 +170768021958,215,0 +170768022006,215,0 +170768022054,215,0 +170768022102,215,0 +170768022150,215,0 +170768022199,215,0 +170768022247,215,0 +170768022295,215,0 +170768022343,214,0 +170768022391,213,0 +170768022439,214,0 +170768022487,214,0 +170768022536,214,0 +170768022586,214,0 +170768022634,214,0 +170768022681,215,0 +170768022729,215,0 +170768022777,215,0 +170768022825,215,0 +170768022873,215,0 +170768022921,215,0 +170768022969,215,0 +170768023017,215,0 +170768023065,215,0 +170768023114,215,0 +170768023162,214,0 +170768023210,214,0 +170768023258,214,0 +170768023306,214,0 +170768023354,214,0 +170768023402,214,0 +170768023449,214,0 +170768023497,214,0 +170768023545,214,0 +170768023594,215,0 +170768023642,215,0 +170768023690,215,0 +170768023738,215,0 +170768023786,215,0 +170768023833,215,0 +170768023881,215,0 +170768023931,215,0 +170768023980,214,0 +170768024028,214,0 +170768024076,214,0 +170768024124,214,0 +170768024173,214,0 +170768024221,215,0 +170768024269,214,0 +170768024317,215,0 +170768024364,215,0 +170768024414,215,0 +170768024462,215,0 +170768024511,215,0 +170768024559,215,0 +170768024607,215,0 +170768024656,215,0 +170768024704,215,0 +170768024754,214,0 +170768024802,213,0 +170768024850,214,0 +170768024898,214,0 +170768024947,214,0 +170768024995,214,0 +170768025043,214,0 +170768025092,214,0 +170768025140,214,0 +170768025190,215,0 +170768025239,215,0 +170768025287,215,0 +170768025337,215,0 +170768025385,215,0 +170768025434,215,0 +170768025482,215,0 +170768025530,214,0 +170768025578,214,0 +170768025626,213,0 +170768025676,214,0 +170768025725,214,0 +170768025773,214,0 +170768025822,214,0 +170768025872,214,0 +170768025920,214,0 +170768025968,215,0 +170768026016,215,0 +170768026064,214,0 +170768026112,215,0 +170768026160,215,0 +170768026208,216,0 +170768026255,215,0 +170768026303,215,0 +170768026351,213,0 +170768026401,213,0 +170768026449,213,0 +170768026497,214,0 +170768026546,214,0 +170768026596,214,0 +170768026644,214,0 +170768026692,214,0 +170768026740,215,0 +170768026788,215,0 +170768026836,215,0 +170768026883,215,0 +170768026931,215,0 +170768026981,215,0 +170768027031,215,0 +170768027078,215,0 +170768027126,215,0 +170768027174,213,0 +170768027224,214,0 +170768027273,214,0 +170768027323,214,0 +170768027371,214,0 +170768027419,214,0 +170768027467,215,0 +170768027516,215,0 +170768027564,215,0 +170768027612,215,0 +170768027660,215,0 +170768027708,215,0 +170768027756,215,0 +170768027803,215,0 +170768027851,215,0 +170768027899,215,0 +170768027947,214,0 +170768027995,213,0 +170768028043,214,0 +170768028091,214,0 +170768028140,214,0 +170768028188,214,0 +170768028238,214,0 +170768028286,214,0 +170768028334,215,0 +170768028381,215,0 +170768028431,215,0 +170768028480,215,0 +170768028530,215,0 +170768028578,215,0 +170768028626,215,0 +170768028673,215,0 +170768028723,215,0 +170768028771,213,0 +170768028819,213,0 +170768028867,213,0 +170768028916,214,0 +170768028964,214,0 +170768029012,214,0 +170768029060,214,0 +170768029108,214,0 +170768029156,214,0 +170768029204,214,0 +170768029252,215,0 +170768029300,215,0 +170768029349,215,0 +170768029397,215,0 +170768029447,215,0 +170768029496,215,0 +170768029544,214,0 +170768029592,213,0 +170768029640,213,0 +170768029690,214,0 +170768029738,214,0 +170768029787,214,0 +170768029837,214,0 +170768029885,214,0 +170768029934,214,0 +170768029984,215,0 +170768030032,215,0 +170768030079,215,0 +170768030127,215,0 +170768030175,215,0 +170768030223,215,0 +170768030271,215,0 +170768030319,215,0 +170768030366,214,0 +170768030414,214,0 +170768030462,214,0 +170768030510,214,0 +170768030558,214,0 +170768030606,214,0 +170768030653,214,0 +170768030701,214,0 +170768030749,214,0 +170768030797,215,0 +170768030845,215,0 +170768030893,215,0 +170768030941,215,0 +170768030988,215,0 +170768031037,215,0 +170768031086,215,0 +170768031136,215,0 +170768031184,214,0 +170768031231,214,0 +170768031279,214,0 +170768031327,214,0 +170768031375,214,0 +170768031423,215,0 +170768031471,215,0 +170768031519,215,0 +170768031569,215,0 +170768031618,215,0 +170768031666,215,0 +170768031714,215,0 +170768031762,215,0 +170768031810,215,0 +170768031859,215,0 +170768031907,215,0 +170768031955,214,0 +170768032003,214,0 +170768032051,214,0 +170768032099,214,0 +170768032149,214,0 +170768032198,215,0 +170768032246,215,0 +170768032294,215,0 +170768032342,215,0 +170768032390,215,0 +170768032438,215,0 +170768032486,215,0 +170768032535,215,0 +170768032585,215,0 +170768032633,215,0 +170768032682,215,0 +170768032732,215,0 +170768032780,214,0 +170768032828,214,0 +170768032875,214,0 +170768032923,214,0 +170768032971,215,0 +170768033021,215,0 +170768033069,215,0 +170768033117,215,0 +170768033164,215,0 +170768033212,215,0 +170768033262,215,0 +170768033310,215,0 +170768033358,215,0 +170768033406,215,0 +170768033453,215,0 +170768033501,215,0 +170768033549,214,0 +170768033597,214,0 +170768033645,214,0 +170768033693,214,0 +170768033741,214,0 +170768033789,215,0 +170768033837,215,0 +170768033885,215,0 +170768033932,215,0 +170768033980,215,0 +170768034028,215,0 +170768034076,215,0 +170768034124,215,0 +170768034172,215,0 +170768034220,215,0 +170768034270,215,0 +170768034317,215,0 +170768034367,214,0 +170768034415,214,0 +170768034464,214,0 +170768034514,214,0 +170768034564,214,0 +170768034613,215,0 +170768034663,215,0 +170768034711,215,0 +170768034759,215,0 +170768034806,215,0 +170768034856,215,0 +170768034906,215,0 +170768034954,215,0 +170768035001,215,0 +170768035049,215,0 +170768035097,215,0 +170768035147,214,0 +170768035196,213,0 +170768035244,214,0 +170768035294,214,0 +170768035342,214,0 +170768035389,214,0 +170768035439,214,0 +170768035487,214,0 +170768035536,214,0 +170768035586,215,0 +170768035634,215,0 +170768035682,215,0 +170768035730,215,0 +170768035778,215,0 +170768035827,215,0 +170768035877,215,0 +170768035925,215,0 +170768035973,213,0 +170768036022,213,0 +170768036072,213,0 +170768036121,213,0 +170768036169,214,0 +170768036217,214,0 +170768036265,214,0 +170768036313,214,0 +170768036361,214,0 +170768036409,214,0 +170768036457,215,0 +170768036507,215,0 +170768036556,215,0 +170768036604,215,0 +170768036652,215,0 +170768036702,215,0 +170768036750,214,0 +170768036797,213,0 +170768036845,213,0 +170768036893,214,0 +170768036941,214,0 +170768036989,214,0 +170768037039,214,0 +170768037087,214,0 +170768037136,214,0 +170768037184,215,0 +170768037232,214,0 +170768037280,215,0 +170768037328,215,0 +170768037378,215,0 +170768037425,215,0 +170768037473,215,0 +170768037523,215,0 +170768037572,213,0 +170768037620,213,0 +170768037670,213,0 +170768037717,214,0 +170768037765,214,0 +170768037813,214,0 +170768037861,214,0 +170768037911,214,0 +170768037959,214,0 +170768038006,214,0 +170768038054,215,0 +170768038102,217,0 +170768038150,216,0 +170768038198,215,0 +170768038246,215,0 +170768038294,215,0 +170768038342,215,0 +170768038391,213,0 +170768038441,213,0 +170768038490,214,0 +170768038540,213,0 +170768038588,213,0 +170768038637,214,0 +170768038685,214,0 +170768038734,214,0 +170768038782,214,0 +170768038830,215,0 +170768038878,215,0 +170768038928,215,0 +170768038976,215,0 +170768039025,215,0 +170768039075,215,0 +170768039123,215,0 +170768039170,214,0 +170768039218,214,0 +170768039266,213,0 +170768039314,214,0 +170768039364,214,0 +170768039412,214,0 +170768039460,214,0 +170768039507,214,0 +170768039555,214,0 +170768039603,215,0 +170768039651,215,0 +170768039699,215,0 +170768039747,215,0 +170768039795,215,0 +170768039843,215,0 +170768039891,215,0 +170768039939,214,0 +170768039988,213,0 +170768040036,213,0 +170768040086,214,0 +170768040134,214,0 +170768040182,214,0 +170768040229,214,0 +170768040279,214,0 +170768040327,214,0 +170768040376,215,0 +170768040424,214,0 +170768040474,215,0 +170768040522,215,0 +170768040571,215,0 +170768040619,215,0 +170768040668,216,0 +170768040716,215,0 +170768040764,214,0 +170768040812,213,0 +170768040860,213,0 +170768040910,214,0 +170768040958,214,0 +170768041007,214,0 +170768041055,214,0 +170768041105,214,0 +170768041153,214,0 +170768041202,214,0 +170768041252,214,0 +170768041300,215,0 +170768041347,215,0 +170768041395,215,0 +170768041443,215,0 +170768041491,215,0 +170768041539,215,0 +170768041587,214,0 +170768041637,214,0 +170768041686,214,0 +170768041736,214,0 +170768041783,214,0 +170768041831,214,0 +170768041881,214,0 +170768041929,214,0 +170768041978,214,0 +170768042028,214,0 +170768042076,215,0 +170768042123,215,0 +170768042171,215,0 +170768042219,215,0 +170768042269,215,0 +170768042317,215,0 +170768042366,214,0 +170768042414,214,0 +170768042462,214,0 +170768042512,214,0 +170768042559,214,0 +170768042607,214,0 +170768042655,214,0 +170768042703,214,0 +170768042751,214,0 +170768042801,214,0 +170768042850,215,0 +170768042898,215,0 +170768042946,215,0 +170768042994,215,0 +170768043044,215,0 +170768043092,215,0 +170768043139,215,0 +170768043189,214,0 +170768043238,214,0 +170768043288,214,0 +170768043336,214,0 +170768043384,215,0 +170768043432,215,0 +170768043481,215,0 +170768043529,215,0 +170768043577,215,0 +170768043625,215,0 +170768043673,215,0 +170768043722,215,0 +170768043770,216,0 +170768043818,215,0 +170768043866,215,0 +170768043916,215,0 +170768043963,215,0 +170768044011,215,0 +170768044059,215,0 +170768044107,215,0 +170768044155,215,0 +170768044203,215,0 +170768044251,215,0 +170768044299,215,0 +170768044347,216,0 +170768044395,215,0 +170768044443,215,0 +170768044492,215,0 +170768044542,215,0 +170768044590,215,0 +170768044638,215,0 +170768044685,215,0 +170768044733,215,0 +170768044781,214,0 +170768044829,214,0 +170768044877,214,0 +170768044925,215,0 +170768044973,215,0 +170768045021,215,0 +170768045069,215,0 +170768045118,215,0 +170768045166,215,0 +170768045214,215,0 +170768045262,215,0 +170768045310,215,0 +170768045359,215,0 +170768045409,216,0 +170768045458,215,0 +170768045506,215,0 +170768045554,214,0 +170768045603,213,0 +170768045651,213,0 +170768045699,213,0 +170768045747,214,0 +170768045797,214,0 +170768045845,214,0 +170768045892,214,0 +170768045942,214,0 +170768045991,214,0 +170768046039,215,0 +170768046087,215,0 +170768046135,215,0 +170768046185,215,0 +170768046233,215,0 +170768046281,215,0 +170768046328,215,0 +170768046376,213,0 +170768046424,213,0 +170768046472,213,0 +170768046522,214,0 +170768046571,213,0 +170768046619,214,0 +170768046667,214,0 +170768046715,214,0 +170768046763,215,0 +170768046811,214,0 +170768046859,215,0 +170768046907,215,0 +170768046954,215,0 +170768047002,215,0 +170768047050,215,0 +170768047098,215,0 +170768047146,215,0 +170768047194,213,0 +170768047242,213,0 +170768047290,213,0 +170768047338,213,0 +170768047387,214,0 +170768047435,214,0 +170768047483,214,0 +170768047531,214,0 +170768047581,214,0 +170768047630,214,0 +170768047678,215,0 +170768047726,214,0 +170768047774,215,0 +170768047824,215,0 +170768047873,215,0 +170768047921,215,0 +170768047969,213,0 +170768048018,213,0 +170768048066,213,0 +170768048116,213,0 +170768048164,213,0 +170768048213,213,0 +170768048261,214,0 +170768048311,214,0 +170768048360,214,0 +170768048408,215,0 +170768048456,215,0 +170768048504,215,0 +170768048552,215,0 +170768048599,215,0 +170768048647,215,0 +170768048695,215,0 +170768048745,215,0 +170768048793,213,0 +170768048842,213,0 +170768048890,213,0 +170768048940,214,0 +170768048989,214,0 +170768049037,214,0 +170768049086,214,0 +170768049136,214,0 +170768049184,214,0 +170768049232,214,0 +170768049281,215,0 +170768049331,214,0 +170768049379,215,0 +170768049426,215,0 +170768049476,215,0 +170768049524,215,0 +170768049573,213,0 +170768049623,213,0 +170768049671,213,0 +170768049719,213,0 +170768049768,214,0 +170768049818,214,0 +170768049865,214,0 +170768049915,214,0 +170768049962,214,0 +170768050010,214,0 +170768050058,214,0 +170768050106,215,0 +170768050154,214,0 +170768050202,215,0 +170768050250,215,0 +170768050298,215,0 +170768050347,215,0 +170768050395,213,0 +170768050443,213,0 +170768050491,213,0 +170768050540,213,0 +170768050588,213,0 +170768050636,214,0 +170768050684,214,0 +170768050734,214,0 +170768050782,214,0 +170768050831,214,0 +170768050879,215,0 +170768050927,215,0 +170768050977,215,0 +170768051026,215,0 +170768051074,215,0 +170768051122,215,0 +170768051170,214,0 +170768051219,213,0 +170768051269,213,0 +170768051317,214,0 +170768051365,214,0 +170768051413,214,0 +170768051460,214,0 +170768051508,215,0 +170768051556,215,0 +170768051604,215,0 +170768051652,215,0 +170768051700,215,0 +170768051748,215,0 +170768051797,216,0 +170768051845,215,0 +170768051893,215,0 +170768051941,215,0 +170768051989,214,0 +170768052037,214,0 +170768052085,214,0 +170768052132,214,0 +170768052182,215,0 +170768052231,215,0 +170768052279,215,0 +170768052329,215,0 +170768052376,215,0 +170768052424,215,0 +170768052472,215,0 +170768052520,215,0 +170768052568,215,0 +170768052616,215,0 +170768052664,215,0 +170768052712,215,0 +170768052759,214,0 +170768052807,214,0 +170768052855,215,0 +170768052903,214,0 +170768052951,214,0 +170768052999,214,0 +170768053046,215,0 +170768053094,215,0 +170768053142,214,0 +170768053192,215,0 +170768053240,215,0 +170768053287,215,0 +170768053335,215,0 +170768053383,215,0 +170768053433,215,0 +170768053482,215,0 +170768053530,215,0 +170768053578,214,0 +170768053628,214,0 +170768053676,214,0 +170768053725,214,0 +170768053773,214,0 +170768053821,214,0 +170768053869,214,0 +170768053917,215,0 +170768053965,215,0 +170768054012,215,0 +170768054060,215,0 +170768054110,216,0 +170768054158,215,0 +170768054206,215,0 +170768054254,215,0 +170768054302,215,0 +170768054349,215,0 +170768054399,214,0 +170768054447,214,0 +170768054496,214,0 +170768054544,214,0 +170768054592,214,0 +170768054640,214,0 +170768054688,214,0 +170768054736,214,0 +170768054784,215,0 +170768054832,215,0 +170768054881,215,0 +170768054931,215,0 +170768054979,215,0 +170768055027,215,0 +170768055075,215,0 +170768055123,215,0 +170768055172,214,0 +170768055221,214,0 +170768055269,214,0 +170768055317,214,0 +170768055367,214,0 +170768055415,214,0 +170768055463,214,0 +170768055511,215,0 +170768055558,215,0 +170768055608,215,0 +170768055656,215,0 +170768055705,215,0 +170768055755,215,0 +170768055803,215,0 +170768055851,215,0 +170768055898,215,0 +170768055948,215,0 +170768055997,214,0 +170768056045,213,0 +170768056095,213,0 +170768056143,214,0 +170768056192,214,0 +170768056240,214,0 +170768056288,214,0 +170768056336,214,0 +170768056386,215,0 +170768056435,215,0 +170768056483,215,0 +170768056533,215,0 +170768056581,215,0 +170768056629,215,0 +170768056678,215,0 +170768056726,215,0 +170768056774,215,0 +170768056823,213,0 +170768056873,213,0 +170768056921,213,0 +170768056969,213,0 +170768057016,213,0 +170768057066,214,0 +170768057115,214,0 +170768057163,214,0 +170768057211,214,0 +170768057261,214,0 +170768057309,214,0 +170768057358,215,0 +170768057406,215,0 +170768057454,215,0 +170768057502,215,0 +170768057550,215,0 +170768057598,215,0 +170768057647,216,0 +170768057695,215,0 +170768057743,215,0 +170768057791,216,0 +170768057840,215,0 +170768057888,215,0 +170768057936,215,0 +170768057984,214,0 +170768058034,213,0 +170768058082,214,0 +170768058129,214,0 +170768058177,214,0 +170768058225,214,0 +170768058275,214,0 +170768058324,214,0 +170768058374,214,0 +170768058422,215,0 +170768058470,215,0 +170768058519,215,0 +170768058567,215,0 +170768058615,215,0 +170768058663,215,0 +170768058711,215,0 +170768058759,215,0 +170768058807,213,0 +170768058856,213,0 +170768058904,214,0 +170768058954,214,0 +170768059001,214,0 +170768059051,214,0 +170768059099,214,0 +170768059147,214,0 +170768059195,215,0 +170768059244,215,0 +170768059292,215,0 +170768059340,215,0 +170768059388,215,0 +170768059436,215,0 +170768059484,215,0 +170768059532,215,0 +170768059580,214,0 +170768059628,214,0 +170768059675,214,0 +170768059723,214,0 +170768059771,214,0 +170768059819,214,0 +170768059869,214,0 +170768059918,214,0 +170768059966,214,0 +170768060014,215,0 +170768060064,215,0 +170768060111,215,0 +170768060159,215,0 +170768060209,215,0 +170768060258,215,0 +170768060308,217,0 +170768060357,215,0 +170768060405,214,0 +170768060455,214,0 +170768060503,214,0 +170768060552,214,0 +170768060602,214,0 +170768060650,214,0 +170768060699,215,0 +170768060747,215,0 +170768060795,215,0 +170768060843,215,0 +170768060891,215,0 +170768060938,215,0 +170768060988,215,0 +170768061036,215,0 +170768061084,215,0 +170768061132,215,0 +170768061180,214,0 +170768061227,213,0 +170768061275,213,0 +170768061323,214,0 +170768061371,214,0 +170768061421,214,0 +170768061470,214,0 +170768061518,214,0 +170768061567,214,0 +170768061615,214,0 +170768061663,214,0 +170768061711,215,0 +170768061759,215,0 +170768061807,215,0 +170768061856,215,0 +170768061904,215,0 +170768061952,215,0 +170768062000,213,0 +170768062048,213,0 +170768062097,213,0 +170768062145,213,0 +170768062193,213,0 +170768062241,214,0 +170768062289,214,0 +170768062337,214,0 +170768062386,214,0 +170768062434,214,0 +170768062482,215,0 +170768062530,215,0 +170768062578,215,0 +170768062628,215,0 +170768062675,215,0 +170768062723,215,0 +170768062771,215,0 +170768062821,213,0 +170768062870,213,0 +170768062920,214,0 +170768062968,214,0 +170768063016,214,0 +170768063064,214,0 +170768063111,214,0 +170768063159,214,0 +170768063209,215,0 +170768063257,215,0 +170768063305,215,0 +170768063353,215,0 +170768063400,215,0 +170768063448,215,0 +170768063496,215,0 +170768063546,215,0 +170768063593,214,0 +170768063641,214,0 +170768063691,214,0 +170768063739,214,0 +170768063788,214,0 +170768063836,215,0 +170768063884,215,0 +170768063932,215,0 +170768063980,215,0 +170768064028,215,0 +170768064076,215,0 +170768064123,215,0 +170768064171,216,0 +170768064219,215,0 +170768064267,215,0 +170768064315,215,0 +170768064363,215,0 +170768064411,214,0 +170768064460,214,0 +170768064510,214,0 +170768064558,214,0 +170768064606,214,0 +170768064655,215,0 +170768064703,215,0 +170768064751,215,0 +170768064801,215,0 +170768064848,215,0 +170768064896,215,0 +170768064944,215,0 +170768064992,215,0 +170768065040,215,0 +170768065088,215,0 +170768065136,215,0 +170768065184,214,0 +170768065232,213,0 +170768065280,213,0 +170768065329,214,0 +170768065377,214,0 +170768065427,214,0 +170768065474,214,0 +170768065522,215,0 +170768065572,215,0 +170768065620,215,0 +170768065668,214,0 +170768065717,215,0 +170768065767,215,0 +170768065816,215,0 +170768065864,215,0 +170768065914,215,0 +170768065963,215,0 +170768066011,213,0 +170768066059,213,0 +170768066107,214,0 +170768066154,214,0 +170768066202,214,0 +170768066250,214,0 +170768066298,214,0 +170768066346,214,0 +170768066394,214,0 +170768066441,215,0 +170768066489,215,0 +170768066537,215,0 +170768066587,215,0 +170768066635,215,0 +170768066683,215,0 +170768066732,215,0 +170768066782,214,0 +170768066829,213,0 +170768066879,213,0 +170768066927,214,0 +170768066975,214,0 +170768067023,214,0 +170768067071,214,0 +170768067119,214,0 +170768067166,214,0 +170768067214,214,0 +170768067264,215,0 +170768067313,215,0 +170768067363,215,0 +170768067413,215,0 +170768067462,215,0 +170768067510,215,0 +170768067558,215,0 +170768067607,214,0 +170768067657,213,0 +170768067706,213,0 +170768067756,214,0 +170768067805,214,0 +170768067853,214,0 +170768067901,214,0 +170768067949,214,0 +170768067998,215,0 +170768068048,215,0 +170768068096,215,0 +170768068145,215,0 +170768068193,215,0 +170768068241,215,0 +170768068290,215,0 +170768068338,215,0 +170768068386,214,0 +170768068434,213,0 +170768068481,213,0 +170768068529,213,0 +170768068577,214,0 +170768068625,214,0 +170768068673,214,0 +170768068721,214,0 +170768068768,214,0 +170768068816,215,0 +170768068864,214,0 +170768068912,215,0 +170768068960,215,0 +170768069007,215,0 +170768069057,215,0 +170768069105,215,0 +170768069152,215,0 +170768069200,214,0 +170768069248,213,0 +170768069298,213,0 +170768069346,213,0 +170768069394,214,0 +170768069442,214,0 +170768069490,214,0 +170768069538,214,0 +170768069587,214,0 +170768069637,215,0 +170768069686,215,0 +170768069734,215,0 +170768069782,215,0 +170768069830,215,0 +170768069879,215,0 +170768069927,215,0 +170768069975,215,0 +170768070023,213,0 +170768070071,213,0 +170768070118,213,0 +170768070166,214,0 +170768070215,214,0 +170768070263,214,0 +170768070311,214,0 +170768070359,214,0 +170768070408,214,0 +170768070456,214,0 +170768070504,214,0 +170768070552,215,0 +170768070600,215,0 +170768070648,215,0 +170768070697,215,0 +170768070747,215,0 +170768070796,214,0 +170768070844,213,0 +170768070892,214,0 +170768070940,214,0 +170768070988,214,0 +170768071037,214,0 +170768071087,214,0 +170768071136,214,0 +170768071186,214,0 +170768071233,214,0 +170768071281,215,0 +170768071329,215,0 +170768071379,215,0 +170768071427,215,0 +170768071474,215,0 +170768071522,215,0 +170768071570,215,0 +170768071618,214,0 +170768071666,214,0 +170768071714,214,0 +170768071761,214,0 +170768071811,214,0 +170768071858,214,0 +170768071906,214,0 +170768071956,214,0 +170768072003,215,0 +170768072051,215,0 +170768072099,215,0 +170768072147,215,0 +170768072195,215,0 +170768072243,215,0 +170768072290,215,0 +170768072338,215,0 +170768072386,215,0 +170768072434,214,0 +170768072482,214,0 +170768072530,214,0 +170768072577,214,0 +170768072625,214,0 +170768072673,214,0 +170768072721,214,0 +170768072769,215,0 +170768072817,215,0 +170768072865,215,0 +170768072913,215,0 +170768072961,215,0 +170768073009,215,0 +170768073058,215,0 +170768073106,215,0 +170768073154,215,0 +170768073203,214,0 +170768073251,214,0 +170768073300,214,0 +170768073348,214,0 +170768073396,214,0 +170768073444,214,0 +170768073492,214,0 +170768073539,215,0 +170768073587,214,0 +170768073637,215,0 +170768073685,215,0 +170768073734,215,0 +170768073782,215,0 +170768073830,215,0 +170768073877,215,0 +170768073925,215,0 +170768073973,215,0 +170768074023,213,0 +170768074070,213,0 +170768074120,213,0 +170768074168,214,0 +170768074217,214,0 +170768074266,214,0 +170768074314,214,0 +170768074362,214,0 +170768074410,214,0 +170768074458,214,0 +170768074506,215,0 +170768074553,215,0 +170768074603,215,0 +170768074651,215,0 +170768074700,215,0 +170768074748,215,0 +170768074796,215,0 +170768074843,213,0 +170768074891,213,0 +170768074939,213,0 +170768074988,213,0 +170768075036,213,0 +170768075084,213,0 +170768075132,214,0 +170768075180,214,0 +170768075228,214,0 +170768075276,214,0 +170768075323,214,0 +170768075371,215,0 +170768075419,215,0 +170768075467,215,0 +170768075515,215,0 +170768075563,215,0 +170768075612,214,0 +170768075660,213,0 +170768075708,214,0 +170768075756,214,0 +170768075804,214,0 +170768075852,214,0 +170768075901,214,0 +170768075949,214,0 +170768075997,214,0 +170768076045,215,0 +170768076093,215,0 +170768076141,215,0 +170768076191,215,0 +170768076238,215,0 +170768076286,215,0 +170768076336,215,0 +170768076384,215,0 +170768076432,214,0 +170768076480,214,0 +170768076528,214,0 +170768076576,214,0 +170768076624,214,0 +170768076671,214,0 +170768076719,214,0 +170768076767,214,0 +170768076817,215,0 +170768076866,215,0 +170768076914,215,0 +170768076964,215,0 +170768077012,215,0 +170768077061,215,0 +170768077110,215,0 +170768077160,215,0 +170768077208,215,0 +170768077256,213,0 +170768077303,214,0 +170768077351,214,0 +170768077399,214,0 +170768077447,214,0 +170768077496,214,0 +170768077544,214,0 +170768077592,214,0 +170768077640,215,0 +170768077689,215,0 +170768077737,215,0 +170768077785,215,0 +170768077833,215,0 +170768077880,215,0 +170768077928,215,0 +170768077978,215,0 +170768078026,214,0 +170768078073,213,0 +170768078121,213,0 +170768078169,214,0 +170768078217,214,0 +170768078265,214,0 +170768078313,214,0 +170768078360,214,0 +170768078408,214,0 +170768078456,214,0 +170768078504,214,0 +170768078552,215,0 +170768078600,215,0 +170768078647,215,0 +170768078695,215,0 +170768078745,215,0 +170768078792,215,0 +170768078840,213,0 +170768078888,213,0 +170768078936,213,0 +170768078985,213,0 +170768079033,214,0 +170768079081,213,0 +170768079129,214,0 +170768079177,214,0 +170768079224,214,0 +170768079274,214,0 +170768079322,214,0 +170768079369,214,0 +170768079417,215,0 +170768079465,214,0 +170768079513,215,0 +170768079561,215,0 +170768079608,215,0 +170768079656,213,0 +170768079704,213,0 +170768079752,214,0 +170768079800,214,0 +170768079848,214,0 +170768079895,214,0 +170768079943,214,0 +170768079991,214,0 +170768080039,214,0 +170768080087,215,0 +170768080134,215,0 +170768080182,215,0 +170768080230,215,0 +170768080278,215,0 +170768080326,215,0 +170768080374,215,0 +170768080422,214,0 +170768080469,214,0 +170768080517,213,0 +170768080565,214,0 +170768080614,214,0 +170768080662,214,0 +170768080712,214,0 +170768080761,214,0 +170768080809,214,0 +170768080857,214,0 +170768080905,215,0 +170768080954,215,0 +170768081002,215,0 +170768081051,215,0 +170768081099,215,0 +170768081147,215,0 +170768081195,215,0 +170768081244,214,0 +170768081292,214,0 +170768081340,214,0 +170768081388,214,0 +170768081436,214,0 +170768081483,214,0 +170768081531,215,0 +170768081579,215,0 +170768081627,215,0 +170768081675,215,0 +170768081723,215,0 +170768081771,215,0 +170768081818,215,0 +170768081866,215,0 +170768081914,215,0 +170768081963,215,0 +170768082011,215,0 +170768082059,214,0 +170768082107,214,0 +170768082155,214,0 +170768082203,214,0 +170768082250,214,0 +170768082298,214,0 +170768082346,215,0 +170768082394,215,0 +170768082442,215,0 +170768082490,215,0 +170768082539,215,0 +170768082587,215,0 +170768082635,215,0 +170768082683,215,0 +170768082730,215,0 +170768082778,215,0 +170768082826,214,0 +170768082874,214,0 +170768082922,214,0 +170768082970,214,0 +170768083018,214,0 +170768083066,214,0 +170768083113,215,0 +170768083161,215,0 +170768083209,215,0 +170768083259,215,0 +170768083307,215,0 +170768083354,215,0 +170768083404,215,0 +170768083452,215,0 +170768083500,215,0 +170768083548,215,0 +170768083597,215,0 +170768083647,214,0 +170768083696,214,0 +170768083744,215,0 +170768083792,215,0 +170768083841,214,0 +170768083889,215,0 +170768083939,215,0 +170768083987,215,0 +170768084034,215,0 +170768084084,215,0 +170768084133,215,0 +170768084181,215,0 +170768084229,215,0 +170768084277,215,0 +170768084325,216,0 +170768084373,215,0 +170768084421,215,0 +170768084469,214,0 +170768084517,214,0 +170768084565,214,0 +170768084613,214,0 +170768084660,214,0 +170768084710,214,0 +170768084758,215,0 +170768084807,215,0 +170768084857,214,0 +170768084906,215,0 +170768084954,215,0 +170768085004,215,0 +170768085053,215,0 +170768085101,215,0 +170768085150,215,0 +170768085198,215,0 +170768085248,214,0 +170768085296,213,0 +170768085344,213,0 +170768085392,213,0 +170768085439,214,0 +170768085487,214,0 +170768085535,214,0 +170768085583,214,0 +170768085631,214,0 +170768085681,214,0 +170768085729,214,0 +170768085778,215,0 +170768085826,215,0 +170768085874,215,0 +170768085922,215,0 +170768085970,215,0 +170768086018,215,0 +170768086065,213,0 +170768086113,213,0 +170768086161,213,0 +170768086209,213,0 +170768086257,213,0 +170768086306,213,0 +170768086354,214,0 +170768086402,214,0 +170768086449,214,0 +170768086499,214,0 +170768086547,214,0 +170768086595,215,0 +170768086642,214,0 +170768086692,214,0 +170768086740,215,0 +170768086788,215,0 +170768086835,214,0 +170768086883,213,0 +170768086932,213,0 +170768086980,213,0 +170768087027,213,0 +170768087075,213,0 +170768087123,213,0 +170768087171,214,0 +170768087219,214,0 +170768087266,214,0 +170768087314,214,0 +170768087362,214,0 +170768087410,214,0 +170768087458,214,0 +170768087505,214,0 +170768087553,214,0 +170768087601,215,0 +170768087649,213,0 +170768087697,213,0 +170768087745,213,0 +170768087792,213,0 +170768087840,213,0 +170768087888,213,0 +170768087936,214,0 +170768087984,214,0 +170768088031,214,0 +170768088079,215,0 +170768088127,215,0 +170768088175,215,0 +170768088224,215,0 +170768088272,215,0 +170768088320,215,0 +170768088368,215,0 +170768088417,215,0 +170768088465,213,0 +170768088513,213,0 +170768088562,214,0 +170768088610,214,0 +170768088658,214,0 +170768088706,214,0 +170768088755,214,0 +170768088803,214,0 +170768088851,214,0 +170768088900,214,0 +170768088948,215,0 +170768088996,215,0 +170768089044,215,0 +170768089093,215,0 +170768089141,214,0 +170768089189,215,0 +170768089238,214,0 +170768089286,213,0 +170768089334,213,0 +170768089383,214,0 +170768089431,214,0 +170768089479,214,0 +170768089527,214,0 +170768089575,214,0 +170768089623,215,0 +170768089671,215,0 +170768089718,215,0 +170768089766,215,0 +170768089814,215,0 +170768089862,215,0 +170768089910,215,0 +170768089957,215,0 +170768090005,215,0 +170768090053,214,0 +170768090101,213,0 +170768090149,213,0 +170768090196,213,0 +170768090244,214,0 +170768090292,214,0 +170768090340,214,0 +170768090388,214,0 +170768090437,214,0 +170768090485,214,0 +170768090533,215,0 +170768090581,215,0 +170768090628,215,0 +170768090676,215,0 +170768090724,215,0 +170768090772,215,0 +170768090820,215,0 +170768090867,214,0 +170768090917,214,0 +170768090965,214,0 +170768091013,214,0 +170768091060,214,0 +170768091110,214,0 +170768091159,214,0 +170768091209,214,0 +170768091257,215,0 +170768091305,215,0 +170768091353,215,0 +170768091402,215,0 +170768091450,215,0 +170768091498,215,0 +170768091546,215,0 +170768091595,215,0 +170768091643,214,0 +170768091691,214,0 +170768091739,214,0 +170768091787,214,0 +170768091835,214,0 +170768091883,214,0 +170768091931,215,0 +170768091979,215,0 +170768092027,215,0 +170768092075,215,0 +170768092123,215,0 +170768092171,215,0 +170768092220,215,0 +170768092268,215,0 +170768092316,215,0 +170768092364,215,0 +170768092411,214,0 +170768092459,214,0 +170768092507,214,0 +170768092555,215,0 +170768092602,215,0 +170768092650,215,0 +170768092700,215,0 +170768092748,215,0 +170768092795,215,0 +170768092843,215,0 +170768092891,215,0 +170768092939,216,0 +170768092987,215,0 +170768093037,216,0 +170768093084,215,0 +170768093132,216,0 +170768093182,215,0 +170768093230,215,0 +170768093278,215,0 +170768093327,215,0 +170768093375,215,0 +170768093423,215,0 +170768093471,215,0 +170768093520,215,0 +170768093568,215,0 +170768093616,216,0 +170768093666,215,0 +170768093714,215,0 +170768093762,215,0 +170768093811,216,0 +170768093859,216,0 +170768093909,215,0 +170768093956,215,0 +170768094004,215,0 +170768094052,214,0 +170768094102,214,0 +170768094151,214,0 +170768094199,214,0 +170768094247,214,0 +170768094295,215,0 +170768094344,215,0 +170768094392,215,0 +170768094440,215,0 +170768094488,215,0 +170768094536,215,0 +170768094584,215,0 +170768094632,215,0 +170768094680,215,0 +170768094729,215,0 +170768094777,215,0 +170768094825,215,0 +170768094873,214,0 +170768094921,213,0 +170768094970,213,0 +170768095020,214,0 +170768095069,214,0 +170768095117,214,0 +170768095165,214,0 +170768095215,214,0 +170768095262,215,0 +170768095310,215,0 +170768095358,215,0 +170768095406,215,0 +170768095454,215,0 +170768095502,215,0 +170768095550,215,0 +170768095598,215,0 +170768095647,215,0 +170768095697,213,0 +170768095745,213,0 +170768095793,213,0 +170768095842,214,0 +170768095890,214,0 +170768095938,214,0 +170768095986,214,0 +170768096034,214,0 +170768096082,214,0 +170768096130,215,0 +170768096177,215,0 +170768096225,215,0 +170768096273,215,0 +170768096323,215,0 +170768096371,215,0 +170768096419,215,0 +170768096467,213,0 +170768096514,213,0 +170768096562,213,0 +170768096610,213,0 +170768096658,214,0 +170768096706,214,0 +170768096754,214,0 +170768096802,214,0 +170768096851,214,0 +170768096899,214,0 +170768096947,214,0 +170768096995,215,0 +170768097043,215,0 +170768097091,215,0 +170768097140,215,0 +170768097190,215,0 +170768097238,215,0 +170768097285,213,0 +170768097333,213,0 +170768097383,213,0 +170768097431,213,0 +170768097479,214,0 +170768097526,214,0 +170768097574,214,0 +170768097622,214,0 +170768097670,214,0 +170768097719,215,0 +170768097767,215,0 +170768097817,215,0 +170768097865,215,0 +170768097913,215,0 +170768097961,215,0 +170768098010,215,0 +170768098058,214,0 +170768098107,213,0 +170768098155,213,0 +170768098203,213,0 +170768098251,213,0 +170768098298,214,0 +170768098346,214,0 +170768098394,214,0 +170768098442,214,0 +170768098490,214,0 +170768098537,214,0 +170768098585,214,0 +170768098633,214,0 +170768098681,214,0 +170768098729,215,0 +170768098777,215,0 +170768098826,215,0 +170768098874,213,0 +170768098922,213,0 +170768098969,213,0 +170768099017,213,0 +170768099067,213,0 +170768099114,214,0 +170768099162,214,0 +170768099210,214,0 +170768099258,214,0 +170768099306,215,0 +170768099353,214,0 +170768099401,215,0 +170768099449,215,0 +170768099497,214,0 +170768099545,215,0 +170768099593,215,0 +170768099641,215,0 +170768099688,213,0 +170768099736,213,0 +170768099784,213,0 +170768099832,214,0 +170768099880,213,0 +170768099928,214,0 +170768099976,214,0 +170768100024,214,0 +170768100073,214,0 +170768100121,215,0 +170768100169,215,0 +170768100217,215,0 +170768100265,215,0 +170768100312,215,0 +170768100362,215,0 +170768100410,215,0 +170768100458,214,0 +170768100506,214,0 +170768100555,213,0 +170768100603,214,0 +170768100653,214,0 +170768100700,214,0 +170768100748,214,0 +170768100796,214,0 +170768100844,214,0 +170768100892,215,0 +170768100939,215,0 +170768100987,215,0 +170768101035,215,0 +170768101083,215,0 +170768101132,215,0 +170768101180,215,0 +170768101228,215,0 +170768101276,214,0 +170768101324,214,0 +170768101371,214,0 +170768101419,214,0 +170768101467,214,0 +170768101515,214,0 +170768101562,214,0 +170768101610,214,0 +170768101658,215,0 +170768101706,215,0 +170768101754,215,0 +170768101802,215,0 +170768101849,215,0 +170768101897,215,0 +170768101945,215,0 +170768101993,215,0 +170768102040,215,0 +170768102088,214,0 +170768102138,214,0 +170768102186,214,0 +170768102234,214,0 +170768102281,214,0 +170768102329,214,0 +170768102377,214,0 +170768102425,215,0 +170768102474,215,0 +170768102522,215,0 +170768102570,215,0 +170768102620,215,0 +170768102668,215,0 +170768102717,215,0 +170768102767,215,0 +170768102815,215,0 +170768102864,214,0 +170768102912,214,0 +170768102960,214,0 +170768103008,214,0 +170768103056,214,0 +170768103104,215,0 +170768103152,215,0 +170768103199,215,0 +170768103247,215,0 +170768103295,215,0 +170768103343,215,0 +170768103391,215,0 +170768103439,215,0 +170768103487,215,0 +170768103535,215,0 +170768103583,215,0 +170768103632,215,0 +170768103680,214,0 +170768103728,214,0 +170768103777,214,0 +170768103825,214,0 +170768103873,214,0 +170768103923,214,0 +170768103971,214,0 +170768104018,215,0 +170768104066,215,0 +170768104114,215,0 +170768104162,215,0 +170768104210,215,0 +170768104258,215,0 +170768104306,215,0 +170768104354,215,0 +170768104401,215,0 +170768104451,215,0 +170768104499,214,0 +170768104547,214,0 +170768104595,214,0 +170768104642,214,0 +170768104690,214,0 +170768104738,215,0 +170768104786,215,0 +170768104834,215,0 +170768104881,215,0 +170768104929,215,0 +170768104977,215,0 +170768105025,215,0 +170768105073,215,0 +170768105121,215,0 +170768105168,215,0 +170768105216,215,0 +170768105264,214,0 +170768105312,214,0 +170768105359,214,0 +170768105407,214,0 +170768105455,214,0 +170768105503,214,0 +170768105551,214,0 +170768105599,214,0 +170768105647,215,0 +170768105695,215,0 +170768105744,215,0 +170768105792,215,0 +170768105842,215,0 +170768105891,215,0 +170768105939,215,0 +170768105989,215,0 +170768106038,215,0 +170768106086,214,0 +170768106134,214,0 +170768106182,214,0 +170768106230,214,0 +170768106279,214,0 +170768106327,214,0 +170768106375,214,0 +170768106424,215,0 +170768106472,215,0 +170768106520,215,0 +170768106570,215,0 +170768106618,215,0 +170768106666,215,0 +170768106715,215,0 +170768106763,215,0 +170768106811,215,0 +170768106859,215,0 +170768106907,214,0 +170768106956,213,0 +170768107006,214,0 +170768107054,214,0 +170768107101,214,0 +170768107151,214,0 +170768107199,214,0 +170768107247,215,0 +170768107294,214,0 +170768107344,214,0 +170768107392,215,0 +170768107440,215,0 +170768107487,215,0 +170768107537,215,0 +170768107586,215,0 +170768107634,215,0 +170768107682,214,0 +170768107730,213,0 +170768107778,213,0 +170768107825,214,0 +170768107873,214,0 +170768107921,214,0 +170768107969,214,0 +170768108017,214,0 +170768108064,214,0 +170768108114,214,0 +170768108162,215,0 +170768108209,215,0 +170768108257,215,0 +170768108305,215,0 +170768108353,215,0 +170768108402,215,0 +170768108452,215,0 +170768108500,213,0 +170768108548,213,0 +170768108597,213,0 +170768108645,214,0 +170768108694,214,0 +170768108744,214,0 +170768108792,214,0 +170768108839,214,0 +170768108887,215,0 +170768108935,215,0 +170768108985,215,0 +170768109033,215,0 +170768109080,215,0 +170768109128,215,0 +170768109176,215,0 +170768109226,215,0 +170768109274,213,0 +170768109322,214,0 +170768109370,214,0 +170768109417,214,0 +170768109467,214,0 +170768109515,214,0 +170768109563,214,0 +170768109611,214,0 +170768109660,214,0 +170768109708,215,0 +170768109756,215,0 +170768109804,215,0 +170768109853,215,0 +170768109901,215,0 +170768109951,215,0 +170768110000,215,0 +170768110048,215,0 +170768110096,213,0 +170768110144,213,0 +170768110192,213,0 +170768110239,213,0 +170768110287,214,0 +170768110335,214,0 +170768110383,214,0 +170768110431,214,0 +170768110479,214,0 +170768110528,214,0 +170768110578,214,0 +170768110625,214,0 +170768110673,214,0 +170768110721,215,0 +170768110771,215,0 +170768110820,215,0 +170768110868,215,0 +170768110916,215,0 +170768110966,213,0 +170768111015,213,0 +170768111063,213,0 +170768111112,214,0 +170768111160,214,0 +170768111208,214,0 +170768111256,214,0 +170768111304,214,0 +170768111354,214,0 +170768111402,214,0 +170768111449,215,0 +170768111497,215,0 +170768111545,215,0 +170768111593,215,0 +170768111641,215,0 +170768111688,215,0 +170768111736,215,0 +170768111784,215,0 +170768111832,213,0 +170768111880,214,0 +170768111927,214,0 +170768111977,214,0 +170768112025,214,0 +170768112072,214,0 +170768112120,214,0 +170768112170,214,0 +170768112218,214,0 +170768112266,215,0 +170768112315,215,0 +170768112365,215,0 +170768112414,215,0 +170768112462,215,0 +170768112512,215,0 +170768112561,215,0 +170768112609,215,0 +170768112657,214,0 +170768112706,214,0 +170768112756,214,0 +170768112805,214,0 +170768112855,214,0 +170768112904,214,0 +170768112952,215,0 +170768113002,215,0 +170768113049,215,0 +170768113097,215,0 +170768113147,215,0 +170768113195,215,0 +170768113242,215,0 +170768113290,215,0 +170768113338,216,0 +170768113386,215,0 +170768113435,215,0 +170768113483,215,0 +170768113531,214,0 +170768113581,214,0 +170768113629,214,0 +170768113676,214,0 +170768113724,215,0 +170768113772,215,0 +170768113820,215,0 +170768113868,215,0 +170768113916,215,0 +170768113965,215,0 +170768114013,215,0 +170768114061,215,0 +170768114109,215,0 +170768114159,215,0 +170768114207,215,0 +170768114256,215,0 +170768114304,215,0 +170768114352,215,0 +170768114401,214,0 +170768114451,214,0 +170768114499,214,0 +170768114548,214,0 +170768114596,214,0 +170768114644,214,0 +170768114692,214,0 +170768114739,214,0 +170768114789,214,0 +170768114837,214,0 +170768114885,215,0 +170768114932,215,0 +170768114980,215,0 +170768115028,215,0 +170768115076,215,0 +170768115124,215,0 +170768115172,215,0 +170768115219,213,0 +170768115267,213,0 +170768115315,214,0 +170768115363,213,0 +170768115411,214,0 +170768115459,214,0 +170768115506,214,0 +170768115554,214,0 +170768115602,214,0 +170768115650,214,0 +170768115698,214,0 +170768115746,215,0 +170768115794,215,0 +170768115841,215,0 +170768115891,215,0 +170768115939,215,0 +170768115987,215,0 +170768116036,215,0 +170768116084,214,0 +170768116134,213,0 +170768116182,213,0 +170768116231,214,0 +170768116281,214,0 +170768116328,214,0 +170768116378,214,0 +170768116426,214,0 +170768116474,214,0 +170768116523,214,0 +170768116571,215,0 +170768116619,214,0 +170768116667,214,0 +170768116716,215,0 +170768116764,215,0 +170768116814,215,0 +170768116861,215,0 +170768116909,215,0 +170768116957,213,0 +170768117005,213,0 +170768117055,214,0 +170768117104,214,0 +170768117153,214,0 +170768117201,214,0 +170768117249,214,0 +170768117299,214,0 +170768117347,214,0 +170768117394,214,0 +170768117442,215,0 +170768117490,215,0 +170768117538,215,0 +170768117586,215,0 +170768117635,215,0 +170768117683,215,0 +170768117731,215,0 +170768117778,214,0 +170768117826,214,0 +170768117874,213,0 +170768117922,214,0 +170768117970,214,0 +170768118018,214,0 +170768118065,214,0 +170768118113,214,0 +170768118161,215,0 +170768118209,215,0 +170768118257,215,0 +170768118304,215,0 +170768118352,215,0 +170768118402,215,0 +170768118449,215,0 +170768118497,215,0 +170768118545,215,0 +170768118593,215,0 +170768118641,214,0 +170768118689,214,0 +170768118737,214,0 +170768118784,214,0 +170768118832,214,0 +170768118880,214,0 +170768118928,214,0 +170768118976,215,0 +170768119024,215,0 +170768119072,215,0 +170768119121,215,0 +170768119169,216,0 +170768119217,215,0 +170768119265,215,0 +170768119313,215,0 +170768119361,215,0 +170768119410,215,0 +170768119458,215,0 +170768119506,214,0 +170768119556,214,0 +170768119603,213,0 +170768119651,214,0 +170768119701,214,0 +170768119750,214,0 +170768119800,214,0 +170768119849,214,0 +170768119897,215,0 +170768119945,215,0 +170768119994,214,0 +170768120044,215,0 +170768120092,215,0 +170768120141,215,0 +170768120189,215,0 +170768120239,215,0 +170768120286,215,0 +170768120334,215,0 +170768120382,213,0 +170768120430,213,0 +170768120478,214,0 +170768120527,214,0 +170768120575,214,0 +170768120623,214,0 +170768120673,214,0 +170768120720,214,0 +170768120770,215,0 +170768120818,215,0 +170768120865,214,0 +170768120913,215,0 +170768120961,215,0 +170768121009,215,0 +170768121056,215,0 +170768121104,215,0 +170768121152,215,0 +170768121202,214,0 +170768121249,213,0 +170768121297,213,0 +170768121345,214,0 +170768121393,214,0 +170768121440,214,0 +170768121488,214,0 +170768121536,214,0 +170768121584,214,0 +170768121633,214,0 +170768121681,215,0 +170768121729,215,0 +170768121776,215,0 +170768121824,215,0 +170768121872,215,0 +170768121920,215,0 +170768121968,215,0 +170768122017,215,0 +170768122065,214,0 +170768122113,213,0 +170768122161,214,0 +170768122209,214,0 +170768122256,214,0 +170768122304,214,0 +170768122352,214,0 +170768122400,214,0 +170768122448,214,0 +170768122496,215,0 +170768122544,215,0 +170768122593,215,0 +170768122641,215,0 +170768122691,215,0 +170768122740,215,0 +170768122788,215,0 +170768122836,215,0 +170768122884,215,0 +170768122933,214,0 +170768122981,214,0 +170768123029,214,0 +170768123079,214,0 +170768123127,214,0 +170768123176,215,0 +170768123225,215,0 +170768123273,215,0 +170768123323,215,0 +170768123372,215,0 +170768123420,215,0 +170768123470,215,0 +170768123519,215,0 +170768123569,215,0 +170768123616,215,0 +170768123664,215,0 +170768123712,215,0 +170768123762,214,0 +170768123809,214,0 +170768123859,214,0 +170768123907,214,0 +170768123954,214,0 +170768124002,215,0 +170768124050,215,0 +170768124100,215,0 +170768124148,215,0 +170768124196,215,0 +170768124243,215,0 +170768124293,215,0 +170768124342,215,0 +170768124390,215,0 +170768124438,215,0 +170768124486,215,0 +170768124534,215,0 +170768124582,215,0 +170768124630,214,0 +170768124679,214,0 +170768124727,214,0 +170768124775,214,0 +170768124824,214,0 +170768124872,214,0 +170768124920,214,0 +170768124968,214,0 +170768125016,214,0 +170768125063,215,0 +170768125111,215,0 +170768125161,215,0 +170768125209,215,0 +170768125256,215,0 +170768125304,215,0 +170768125352,215,0 +170768125400,215,0 +170768125448,215,0 +170768125496,214,0 +170768125544,213,0 +170768125592,213,0 +170768125641,214,0 +170768125689,214,0 +170768125738,214,0 +170768125788,214,0 +170768125837,214,0 +170768125885,214,0 +170768125933,215,0 +170768125983,215,0 +170768126032,215,0 +170768126080,215,0 +170768126130,215,0 +170768126177,215,0 +170768126227,215,0 +170768126275,215,0 +170768126323,214,0 +170768126372,213,0 +170768126422,213,0 +170768126470,213,0 +170768126517,214,0 +170768126565,214,0 +170768126613,214,0 +170768126661,214,0 +170768126709,214,0 +170768126757,214,0 +170768126804,214,0 +170768126854,214,0 +170768126903,214,0 +170768126951,214,0 +170768127001,215,0 +170768127050,215,0 +170768127100,215,0 +170768127148,215,0 +170768127197,213,0 +170768127245,213,0 +170768127295,213,0 +170768127342,213,0 +170768127392,213,0 +170768127442,213,0 +170768127491,213,0 +170768127539,214,0 +170768127587,214,0 +170768127635,214,0 +170768127683,214,0 +170768127732,215,0 +170768127780,215,0 +170768127830,215,0 +170768127879,215,0 +170768127927,215,0 +170768127975,215,0 +170768128023,215,0 +170768128072,213,0 +170768128122,213,0 +170768128171,213,0 +170768128221,213,0 +170768128269,214,0 +170768128318,214,0 +170768128366,214,0 +170768128414,214,0 +170768128463,214,0 +170768128511,215,0 +170768128561,215,0 +170768128609,215,0 +170768128658,215,0 +170768128706,215,0 +170768128754,215,0 +170768128802,215,0 +170768128850,215,0 +170768128900,214,0 +170768128948,213,0 +170768128996,213,0 +170768129045,213,0 +170768129093,214,0 +170768129143,214,0 +170768129191,214,0 +170768129239,214,0 +170768129287,214,0 +170768129335,215,0 +170768129383,215,0 +170768129431,215,0 +170768129479,215,0 +170768129527,215,0 +170768129575,215,0 +170768129622,215,0 +170768129672,215,0 +170768129720,215,0 +170768129769,213,0 +170768129817,213,0 +170768129867,213,0 +170768129915,214,0 +170768129963,214,0 +170768130010,214,0 +170768130058,214,0 +170768130108,214,0 +170768130156,214,0 +170768130204,214,0 +170768130252,214,0 +170768130300,215,0 +170768130348,215,0 +170768130397,215,0 +170768130445,215,0 +170768130493,215,0 +170768130541,215,0 +170768130589,215,0 +170768130637,213,0 +170768130686,213,0 +170768130734,213,0 +170768130784,213,0 +170768130831,214,0 +170768130879,214,0 +170768130927,214,0 +170768130975,214,0 +170768131023,214,0 +170768131072,214,0 +170768131120,214,0 +170768131170,215,0 +170768131218,215,0 +170768131266,215,0 +170768131313,215,0 +170768131361,215,0 +170768131409,215,0 +170768131457,214,0 +170768131505,213,0 +170768131552,213,0 +170768131600,213,0 +170768131648,214,0 +170768131696,214,0 +170768131744,214,0 +170768131792,214,0 +170768131840,214,0 +170768131887,214,0 +170768131935,214,0 +170768131983,214,0 +170768132031,214,0 +170768132079,215,0 +170768132126,215,0 +170768132176,215,0 +170768132224,215,0 +170768132273,215,0 +170768132321,213,0 +170768132369,213,0 +170768132417,213,0 +170768132464,214,0 +170768132512,214,0 +170768132562,214,0 +170768132610,214,0 +170768132658,214,0 +170768132707,215,0 +170768132757,214,0 +170768132806,215,0 +170768132854,215,0 +170768132902,215,0 +170768132950,215,0 +170768132998,215,0 +170768133046,215,0 +170768133095,215,0 +170768133143,215,0 +170768133193,214,0 +170768133240,214,0 +170768133288,214,0 +170768133336,214,0 +170768133386,214,0 +170768133434,214,0 +170768133482,215,0 +170768133529,215,0 +170768133577,215,0 +170768133625,215,0 +170768133673,215,0 +170768133721,215,0 +170768133768,215,0 +170768133816,215,0 +170768133864,215,0 +170768133912,215,0 +170768133960,215,0 +170768134010,215,0 +170768134057,213,0 +170768134107,214,0 +170768134155,214,0 +170768134203,214,0 +170768134250,214,0 +170768134298,215,0 +170768134346,214,0 +170768134394,215,0 +170768134442,215,0 +170768134490,215,0 +170768134537,215,0 +170768134585,215,0 +170768134635,215,0 +170768134683,215,0 +170768134731,215,0 +170768134778,215,0 +170768134828,215,0 +170768134876,214,0 +170768134925,214,0 +170768134973,214,0 +170768135023,214,0 +170768135071,214,0 +170768135118,215,0 +170768135166,214,0 +170768135216,214,0 +170768135265,215,0 +170768135313,215,0 +170768135361,215,0 +170768135411,215,0 +170768135460,215,0 +170768135508,215,0 +170768135556,215,0 +170768135604,215,0 +170768135652,215,0 +170768135700,215,0 +170768135749,214,0 +170768135797,213,0 +170768135845,214,0 +170768135893,214,0 +170768135941,214,0 +170768135989,214,0 +170768136037,214,0 +170768136085,214,0 +170768136134,215,0 +170768136184,215,0 +170768136232,215,0 +170768136281,215,0 +170768136329,215,0 +170768136377,215,0 +170768136425,215,0 +170768136475,215,0 +170768136524,215,0 +170768136572,215,0 +170768136620,213,0 +170768136668,213,0 +170768136716,213,0 +170768136764,214,0 +170768136812,214,0 +170768136859,214,0 +170768136907,214,0 +170768136955,214,0 +170768137005,214,0 +170768137052,215,0 +170768137100,215,0 +170768137148,215,0 +170768137196,215,0 +170768137245,215,0 +170768137293,215,0 +170768137341,215,0 +170768137389,215,0 +170768137438,214,0 +170768137486,213,0 +170768137534,213,0 +170768137582,213,0 +170768137631,213,0 +170768137679,213,0 +170768137729,214,0 +170768137778,214,0 +170768137826,214,0 +170768137874,214,0 +170768137922,214,0 +170768137970,214,0 +170768138019,215,0 +170768138067,215,0 +170768138115,215,0 +170768138163,215,0 +170768138211,215,0 +170768138259,215,0 +170768138307,214,0 +170768138355,213,0 +170768138402,213,0 +170768138450,214,0 +170768138500,214,0 +170768138548,214,0 +170768138597,214,0 +170768138645,214,0 +170768138693,214,0 +170768138741,214,0 +170768138790,215,0 +170768138838,215,0 +170768138886,215,0 +170768138934,215,0 +170768138982,215,0 +170768139030,215,0 +170768139079,215,0 +170768139127,215,0 +170768139175,213,0 +170768139223,213,0 +170768139272,213,0 +170768139320,213,0 +170768139368,214,0 +170768139416,214,0 +170768139464,214,0 +170768139513,214,0 +170768139561,214,0 +170768139609,215,0 +170768139657,214,0 +170768139705,215,0 +170768139752,215,0 +170768139800,215,0 +170768139848,215,0 +170768139896,215,0 +170768139944,215,0 +170768139992,214,0 +170768140040,213,0 +170768140087,213,0 +170768140137,213,0 +170768140185,213,0 +170768140234,213,0 +170768140282,214,0 +170768140332,214,0 +170768140380,213,0 +170768140429,214,0 +170768140477,214,0 +170768140526,214,0 +170768140574,214,0 +170768140622,215,0 +170768140670,215,0 +170768140718,215,0 +170768140766,215,0 +170768140814,215,0 +170768140862,213,0 +170768140909,213,0 +170768140957,213,0 +170768141005,213,0 +170768141053,213,0 +170768141102,213,0 +170768141150,213,0 +170768141198,213,0 +170768141248,213,0 +170768141297,214,0 +170768141345,214,0 +170768141394,214,0 +170768141442,214,0 +170768141490,214,0 +170768141538,215,0 +170768141586,215,0 +170768141634,215,0 +170768141682,215,0 +170768141730,213,0 +170768141778,213,0 +170768141827,213,0 +170768141875,213,0 +170768141925,213,0 +170768141972,213,0 +170768142020,213,0 +170768142068,213,0 +170768142118,214,0 +170768142166,214,0 +170768142214,214,0 +170768142262,214,0 +170768142310,214,0 +170768142358,214,0 +170768142407,215,0 +170768142457,214,0 +170768142505,215,0 +170768142554,214,0 +170768142602,213,0 +170768142651,213,0 +170768142699,213,0 +170768142749,213,0 +170768142798,213,0 +170768142846,214,0 +170768142894,214,0 +170768142942,214,0 +170768142991,214,0 +170768143039,214,0 +170768143087,215,0 +170768143135,215,0 +170768143183,215,0 +170768143231,215,0 +170768143279,215,0 +170768143327,215,0 +170768143375,215,0 +170768143424,214,0 +170768143472,214,0 +170768143520,214,0 +170768143569,214,0 +170768143617,214,0 +170768143665,214,0 +170768143715,214,0 +170768143763,215,0 +170768143812,215,0 +170768143860,215,0 +170768143908,215,0 +170768143956,215,0 +170768144005,215,0 +170768144053,215,0 +170768144101,215,0 +170768144149,215,0 +170768144197,215,0 +170768144245,215,0 +170768144293,214,0 +170768144341,214,0 +170768144389,214,0 +170768144438,214,0 +170768144488,214,0 +170768144536,215,0 +170768144583,214,0 +170768144631,215,0 +170768144679,215,0 +170768144729,215,0 +170768144777,215,0 +170768144825,215,0 +170768144873,215,0 +170768144920,214,0 +170768144968,215,0 +170768145018,215,0 +170768145067,215,0 +170768145117,214,0 +170768145166,214,0 +170768145214,214,0 +170768145262,214,0 +170768145310,214,0 +170768145358,214,0 +170768145407,214,0 +170768145455,214,0 +170768145503,214,0 +170768145551,215,0 +170768145600,215,0 +170768145650,215,0 +170768145698,215,0 +170768145747,215,0 +170768145795,215,0 +170768145843,215,0 +170768145891,215,0 +170768145939,215,0 +170768145987,214,0 +170768146035,214,0 +170768146083,214,0 +170768146131,214,0 +170768146179,214,0 +170768146228,214,0 +170768146276,215,0 +170768146324,215,0 +170768146373,215,0 +170768146421,215,0 +170768146469,215,0 +170768146519,215,0 +170768146567,215,0 +170768146615,215,0 +170768146663,215,0 +170768146710,215,0 +170768146760,215,0 +170768146809,215,0 +170768146859,214,0 +170768146907,214,0 +170768146955,214,0 +170768147002,214,0 +170768147050,215,0 +170768147098,214,0 +170768147148,215,0 +170768147196,215,0 +170768147244,215,0 +170768147291,215,0 +170768147339,215,0 +170768147389,215,0 +170768147438,216,0 +170768147488,215,0 +170768147537,215,0 +170768147587,215,0 +170768147636,215,0 +170768147686,214,0 +170768147734,214,0 +170768147782,214,0 +170768147831,214,0 +170768147879,214,0 +170768147927,214,0 +170768147975,214,0 +170768148023,215,0 +170768148071,215,0 +170768148118,215,0 +170768148168,215,0 +170768148217,215,0 +170768148265,215,0 +170768148313,215,0 +170768148361,215,0 +170768148409,215,0 +170768148457,215,0 +170768148505,214,0 +170768148554,214,0 +170768148602,214,0 +170768148650,214,0 +170768148700,214,0 +170768148748,214,0 +170768148796,214,0 +170768148845,214,0 +170768148893,214,0 +170768148941,215,0 +170768148989,215,0 +170768149037,215,0 +170768149084,215,0 +170768149132,215,0 +170768149182,215,0 +170768149231,215,0 +170768149279,215,0 +170768149327,215,0 +170768149375,215,0 +170768149423,213,0 +170768149470,214,0 +170768149518,214,0 +170768149566,214,0 +170768149614,214,0 +170768149662,214,0 +170768149710,215,0 +170768149757,214,0 +170768149805,215,0 +170768149853,215,0 +170768149901,215,0 +170768149949,215,0 +170768149997,215,0 +170768150044,215,0 +170768150092,215,0 +170768150140,215,0 +170768150188,215,0 +170768150236,214,0 +170768150284,213,0 +170768150332,213,0 +170768150379,214,0 +170768150427,214,0 +170768150475,214,0 +170768150523,214,0 +170768150571,214,0 +170768150619,214,0 +170768150667,215,0 +170768150714,214,0 +170768150764,215,0 +170768150812,215,0 +170768150859,215,0 +170768150907,215,0 +170768150955,215,0 +170768151003,215,0 +170768151051,215,0 +170768151100,213,0 +170768151148,213,0 +170768151196,213,0 +170768151246,213,0 +170768151294,214,0 +170768151342,214,0 +170768151391,214,0 +170768151439,214,0 +170768151489,214,0 +170768151536,214,0 +170768151584,214,0 +170768151634,214,0 +170768151683,215,0 +170768151733,215,0 +170768151781,215,0 +170768151830,215,0 +170768151880,215,0 +170768151928,215,0 +170768151975,213,0 +170768152025,213,0 +170768152073,213,0 +170768152121,213,0 +170768152170,214,0 +170768152218,214,0 +170768152267,214,0 +170768152315,214,0 +170768152363,214,0 +170768152411,214,0 +170768152459,214,0 +170768152507,215,0 +170768152555,215,0 +170768152603,215,0 +170768152651,215,0 +170768152698,215,0 +170768152746,215,0 +170768152794,214,0 +170768152844,213,0 +170768152892,213,0 +170768152940,213,0 +170768152989,213,0 +170768153037,213,0 +170768153085,214,0 +170768153133,213,0 +170768153182,214,0 +170768153230,214,0 +170768153278,214,0 +170768153326,214,0 +170768153375,214,0 +170768153423,215,0 +170768153473,215,0 +170768153522,214,0 +170768153570,215,0 +170768153618,215,0 +170768153666,213,0 +170768153715,213,0 +170768153763,213,0 +170768153811,213,0 +170768153859,213,0 +170768153907,213,0 +170768153957,213,0 +170768154004,213,0 +170768154054,214,0 +170768154103,214,0 +170768154151,214,0 +170768154201,214,0 +170768154250,214,0 +170768154298,214,0 +170768154346,214,0 +170768154395,214,0 +170768154443,214,0 +170768154493,215,0 +170768154540,213,0 +170768154588,213,0 +170768154636,213,0 +170768154684,213,0 +170768154732,213,0 +170768154780,213,0 +170768154828,213,0 +170768154876,214,0 +170768154923,214,0 +170768154971,214,0 +170768155021,214,0 +170768155068,214,0 +170768155116,214,0 +170768155164,215,0 +170768155212,215,0 +170768155260,215,0 +170768155308,215,0 +170768155356,214,0 +170768155403,213,0 +170768155451,213,0 +170768155499,213,0 +170768155547,213,0 +170768155596,213,0 +170768155646,213,0 +170768155694,214,0 +170768155743,214,0 +170768155791,214,0 +170768155839,214,0 +170768155887,214,0 +170768155935,214,0 +170768155983,214,0 +170768156031,214,0 +170768156079,215,0 +170768156127,215,0 +170768156176,215,0 +170768156224,213,0 +170768156272,213,0 +170768156320,213,0 +170768156370,213,0 +170768156419,213,0 +170768156467,213,0 +170768156515,213,0 +170768156563,214,0 +170768156611,214,0 +170768156659,214,0 +170768156706,214,0 +170768156754,214,0 +170768156804,214,0 +170768156852,215,0 +170768156901,215,0 +170768156949,215,0 +170768156998,215,0 +170768157046,215,0 +170768157094,213,0 +170768157142,213,0 +170768157190,214,0 +170768157238,214,0 +170768157286,214,0 +170768157333,214,0 +170768157381,214,0 +170768157429,214,0 +170768157477,214,0 +170768157525,215,0 +170768157572,215,0 +170768157620,215,0 +170768157668,215,0 +170768157716,215,0 +170768157764,216,0 +170768157811,215,0 +170768157859,215,0 +170768157907,215,0 +170768157957,214,0 +170768158006,214,0 +170768158054,214,0 +170768158102,214,0 +170768158149,214,0 +170768158197,214,0 +170768158245,215,0 +170768158293,215,0 +170768158341,215,0 +170768158389,215,0 +170768158436,215,0 +170768158484,215,0 +170768158532,215,0 +170768158581,215,0 +170768158629,215,0 +170768158677,215,0 +170768158725,215,0 +170768158775,214,0 +170768158823,214,0 +170768158872,214,0 +170768158920,214,0 +170768158968,214,0 +170768159016,214,0 +170768159064,214,0 +170768159112,214,0 +170768159160,215,0 +170768159209,215,0 +170768159257,215,0 +170768159307,215,0 +170768159355,215,0 +170768159402,215,0 +170768159450,215,0 +170768159498,215,0 +170768159546,215,0 +170768159594,215,0 +170768159642,213,0 +170768159690,213,0 +170768159738,213,0 +170768159786,214,0 +170768159834,214,0 +170768159881,214,0 +170768159929,214,0 +170768159977,214,0 +170768160025,214,0 diff --git a/laser_value/0212-06.csv b/laser_value/0212-06.csv new file mode 100644 index 0000000..cef97b2 --- /dev/null +++ b/laser_value/0212-06.csv @@ -0,0 +1,7455 @@ +timestamp,laser_value,event +170768160074,214,0 +170768160123,214,0 +170768160171,215,0 +170768160219,215,0 +170768160267,215,0 +170768160315,215,0 +170768160363,215,0 +170768160412,215,0 +170768160460,215,0 +170768160508,213,0 +170768160556,213,0 +170768160604,213,0 +170768160652,214,0 +170768160700,214,0 +170768160748,214,0 +170768160796,214,0 +170768160843,214,0 +170768160891,214,0 +170768160939,214,0 +170768160987,215,0 +170768161035,215,0 +170768161083,215,0 +170768161131,215,0 +170768161178,215,0 +170768161228,215,0 +170768161276,215,0 +170768161323,214,0 +170768161371,213,0 +170768161419,213,0 +170768161467,213,0 +170768161515,213,0 +170768161565,213,0 +170768161612,213,0 +170768161660,214,0 +170768161708,214,0 +170768161756,214,0 +170768161804,214,0 +170768161852,214,0 +170768161900,214,0 +170768161949,215,0 +170768161997,215,0 +170768162045,215,0 +170768162094,215,0 +170768162142,215,0 +170768162192,213,0 +170768162240,213,0 +170768162288,214,0 +170768162335,214,0 +170768162385,214,0 +170768162433,214,0 +170768162481,214,0 +170768162529,214,0 +170768162577,215,0 +170768162624,215,0 +170768162672,215,0 +170768162720,215,0 +170768162768,216,0 +170768162816,216,0 +170768162863,215,0 +170768162913,215,0 +170768162961,215,0 +170768163009,215,0 +170768163057,214,0 +170768163104,214,0 +170768163152,214,0 +170768163200,214,0 +170768163248,214,0 +170768163296,214,0 +170768163344,214,0 +170768163393,214,0 +170768163441,215,0 +170768163491,215,0 +170768163538,215,0 +170768163586,215,0 +170768163636,215,0 +170768163683,215,0 +170768163731,215,0 +170768163779,215,0 +170768163827,215,0 +170768163875,214,0 +170768163922,213,0 +170768163970,213,0 +170768164020,213,0 +170768164067,214,0 +170768164115,214,0 +170768164163,214,0 +170768164211,214,0 +170768164259,215,0 +170768164307,215,0 +170768164355,215,0 +170768164402,215,0 +170768164450,215,0 +170768164498,215,0 +170768164546,215,0 +170768164594,215,0 +170768164642,215,0 +170768164689,215,0 +170768164737,213,0 +170768164785,213,0 +170768164833,213,0 +170768164882,213,0 +170768164932,213,0 +170768164981,213,0 +170768165029,214,0 +170768165077,214,0 +170768165126,214,0 +170768165174,214,0 +170768165222,214,0 +170768165270,214,0 +170768165318,214,0 +170768165366,215,0 +170768165413,215,0 +170768165461,215,0 +170768165509,215,0 +170768165557,215,0 +170768165605,213,0 +170768165653,213,0 +170768165700,213,0 +170768165748,214,0 +170768165798,214,0 +170768165846,214,0 +170768165893,214,0 +170768165941,214,0 +170768165989,214,0 +170768166037,214,0 +170768166085,214,0 +170768166133,215,0 +170768166180,214,0 +170768166228,215,0 +170768166276,215,0 +170768166324,215,0 +170768166372,215,0 +170768166420,215,0 +170768166468,213,0 +170768166516,213,0 +170768166563,213,0 +170768166613,213,0 +170768166661,214,0 +170768166709,214,0 +170768166757,214,0 +170768166805,214,0 +170768166852,214,0 +170768166902,214,0 +170768166950,214,0 +170768166999,215,0 +170768167049,215,0 +170768167097,215,0 +170768167146,215,0 +170768167194,215,0 +170768167244,215,0 +170768167292,215,0 +170768167341,213,0 +170768167389,213,0 +170768167437,213,0 +170768167485,214,0 +170768167533,214,0 +170768167581,214,0 +170768167630,214,0 +170768167678,214,0 +170768167726,214,0 +170768167774,215,0 +170768167822,215,0 +170768167871,214,0 +170768167919,215,0 +170768167967,215,0 +170768168017,215,0 +170768168065,215,0 +170768168113,215,0 +170768168161,214,0 +170768168210,213,0 +170768168258,213,0 +170768168308,214,0 +170768168355,214,0 +170768168405,214,0 +170768168453,214,0 +170768168501,214,0 +170768168549,214,0 +170768168596,214,0 +170768168644,214,0 +170768168692,215,0 +170768168740,215,0 +170768168790,215,0 +170768168837,215,0 +170768168885,215,0 +170768168933,215,0 +170768168981,215,0 +170768169029,214,0 +170768169077,213,0 +170768169125,214,0 +170768169172,214,0 +170768169220,214,0 +170768169268,213,0 +170768169316,214,0 +170768169366,214,0 +170768169414,214,0 +170768169461,215,0 +170768169509,215,0 +170768169557,215,0 +170768169605,215,0 +170768169653,215,0 +170768169701,215,0 +170768169749,215,0 +170768169796,215,0 +170768169844,215,0 +170768169892,214,0 +170768169940,214,0 +170768169988,214,0 +170768170036,214,0 +170768170083,214,0 +170768170131,214,0 +170768170179,214,0 +170768170227,215,0 +170768170275,215,0 +170768170323,215,0 +170768170370,215,0 +170768170418,215,0 +170768170466,215,0 +170768170514,215,0 +170768170562,215,0 +170768170610,215,0 +170768170658,215,0 +170768170707,214,0 +170768170755,214,0 +170768170803,214,0 +170768170850,214,0 +170768170898,214,0 +170768170946,214,0 +170768170994,214,0 +170768171042,215,0 +170768171090,215,0 +170768171138,215,0 +170768171186,215,0 +170768171233,215,0 +170768171281,215,0 +170768171329,215,0 +170768171379,215,0 +170768171426,215,0 +170768171474,215,0 +170768171522,215,0 +170768171572,214,0 +170768171620,213,0 +170768171667,213,0 +170768171715,214,0 +170768171763,214,0 +170768171811,214,0 +170768171861,214,0 +170768171910,214,0 +170768171958,214,0 +170768172006,214,0 +170768172055,215,0 +170768172103,215,0 +170768172151,215,0 +170768172201,215,0 +170768172250,215,0 +170768172298,216,0 +170768172347,215,0 +170768172395,215,0 +170768172443,214,0 +170768172493,213,0 +170768172541,213,0 +170768172588,214,0 +170768172638,214,0 +170768172686,214,0 +170768172735,214,0 +170768172783,214,0 +170768172833,215,0 +170768172881,215,0 +170768172929,215,0 +170768172976,215,0 +170768173026,215,0 +170768173074,215,0 +170768173122,215,0 +170768173170,215,0 +170768173217,215,0 +170768173267,215,0 +170768173316,213,0 +170768173364,213,0 +170768173412,213,0 +170768173460,213,0 +170768173508,213,0 +170768173556,214,0 +170768173604,214,0 +170768173653,214,0 +170768173701,214,0 +170768173749,214,0 +170768173797,215,0 +170768173845,215,0 +170768173893,215,0 +170768173940,215,0 +170768173988,215,0 +170768174036,215,0 +170768174084,216,0 +170768174132,213,0 +170768174180,213,0 +170768174230,213,0 +170768174278,213,0 +170768174326,213,0 +170768174374,214,0 +170768174422,214,0 +170768174470,214,0 +170768174519,214,0 +170768174569,214,0 +170768174617,214,0 +170768174664,215,0 +170768174714,214,0 +170768174762,215,0 +170768174811,215,0 +170768174859,215,0 +170768174909,215,0 +170768174957,215,0 +170768175006,213,0 +170768175054,213,0 +170768175102,213,0 +170768175150,213,0 +170768175197,214,0 +170768175245,214,0 +170768175293,214,0 +170768175341,214,0 +170768175389,214,0 +170768175437,214,0 +170768175485,214,0 +170768175534,214,0 +170768175582,215,0 +170768175630,215,0 +170768175678,215,0 +170768175726,215,0 +170768175774,215,0 +170768175822,215,0 +170768175870,213,0 +170768175919,213,0 +170768175969,213,0 +170768176017,214,0 +170768176065,214,0 +170768176113,214,0 +170768176162,214,0 +170768176210,214,0 +170768176258,214,0 +170768176306,215,0 +170768176354,215,0 +170768176403,214,0 +170768176451,214,0 +170768176501,215,0 +170768176549,215,0 +170768176597,215,0 +170768176645,215,0 +170768176694,214,0 +170768176742,214,0 +170768176791,214,0 +170768176839,214,0 +170768176887,214,0 +170768176935,214,0 +170768176983,214,0 +170768177033,214,0 +170768177081,215,0 +170768177129,215,0 +170768177176,215,0 +170768177226,215,0 +170768177274,215,0 +170768177322,215,0 +170768177371,215,0 +170768177419,215,0 +170768177467,215,0 +170768177515,215,0 +170768177563,214,0 +170768177611,213,0 +170768177658,214,0 +170768177706,214,0 +170768177756,214,0 +170768177805,214,0 +170768177855,214,0 +170768177903,214,0 +170768177952,215,0 +170768178000,215,0 +170768178050,215,0 +170768178098,215,0 +170768178147,215,0 +170768178195,215,0 +170768178243,215,0 +170768178291,215,0 +170768178339,215,0 +170768178387,215,0 +170768178435,213,0 +170768178482,213,0 +170768178530,214,0 +170768178580,214,0 +170768178629,214,0 +170768178679,214,0 +170768178727,214,0 +170768178774,214,0 +170768178824,214,0 +170768178873,214,0 +170768178921,215,0 +170768178971,215,0 +170768179020,215,0 +170768179068,215,0 +170768179116,215,0 +170768179164,215,0 +170768179212,215,0 +170768179262,213,0 +170768179310,213,0 +170768179359,213,0 +170768179409,213,0 +170768179456,213,0 +170768179504,214,0 +170768179552,214,0 +170768179600,214,0 +170768179650,214,0 +170768179699,214,0 +170768179747,214,0 +170768179797,215,0 +170768179845,215,0 +170768179892,215,0 +170768179940,215,0 +170768179988,215,0 +170768180038,215,0 +170768180086,215,0 +170768180134,213,0 +170768180183,214,0 +170768180232,214,0 +170768180282,214,0 +170768180331,214,0 +170768180379,214,0 +170768180427,214,0 +170768180477,214,0 +170768180524,214,0 +170768180572,214,0 +170768180622,214,0 +170768180670,214,0 +170768180719,215,0 +170768180768,215,0 +170768180818,215,0 +170768180867,215,0 +170768180917,215,0 +170768180965,214,0 +170768181012,213,0 +170768181060,214,0 +170768181108,214,0 +170768181156,214,0 +170768181204,214,0 +170768181253,214,0 +170768181303,214,0 +170768181352,214,0 +170768181400,215,0 +170768181448,215,0 +170768181496,215,0 +170768181546,215,0 +170768181593,215,0 +170768181641,215,0 +170768181689,215,0 +170768181737,215,0 +170768181787,215,0 +170768181836,214,0 +170768181884,214,0 +170768181933,214,0 +170768181981,214,0 +170768182029,214,0 +170768182077,214,0 +170768182125,214,0 +170768182175,215,0 +170768182222,215,0 +170768182270,215,0 +170768182318,215,0 +170768182366,215,0 +170768182414,215,0 +170768182462,215,0 +170768182510,215,0 +170768182558,215,0 +170768182607,215,0 +170768182655,215,0 +170768182704,214,0 +170768182752,214,0 +170768182800,214,0 +170768182848,214,0 +170768182897,214,0 +170768182945,214,0 +170768182993,215,0 +170768183041,215,0 +170768183089,215,0 +170768183137,215,0 +170768183186,215,0 +170768183234,215,0 +170768183282,215,0 +170768183331,215,0 +170768183379,215,0 +170768183427,215,0 +170768183475,215,0 +170768183524,214,0 +170768183572,214,0 +170768183622,214,0 +170768183670,214,0 +170768183719,214,0 +170768183767,214,0 +170768183816,214,0 +170768183864,214,0 +170768183912,214,0 +170768183960,215,0 +170768184008,215,0 +170768184056,215,0 +170768184104,215,0 +170768184151,215,0 +170768184199,216,0 +170768184249,215,0 +170768184296,215,0 +170768184344,215,0 +170768184392,214,0 +170768184440,214,0 +170768184488,214,0 +170768184536,214,0 +170768184584,214,0 +170768184632,214,0 +170768184679,214,0 +170768184727,214,0 +170768184775,214,0 +170768184823,215,0 +170768184871,215,0 +170768184918,215,0 +170768184966,215,0 +170768185016,215,0 +170768185065,215,0 +170768185115,215,0 +170768185164,215,0 +170768185212,215,0 +170768185260,213,0 +170768185308,213,0 +170768185356,213,0 +170768185405,214,0 +170768185453,214,0 +170768185501,214,0 +170768185549,214,0 +170768185597,214,0 +170768185645,214,0 +170768185693,214,0 +170768185741,215,0 +170768185788,215,0 +170768185836,215,0 +170768185884,215,0 +170768185932,215,0 +170768185980,215,0 +170768186029,215,0 +170768186077,213,0 +170768186125,213,0 +170768186173,213,0 +170768186221,213,0 +170768186269,213,0 +170768186318,214,0 +170768186366,214,0 +170768186415,214,0 +170768186463,214,0 +170768186511,214,0 +170768186559,214,0 +170768186607,215,0 +170768186655,215,0 +170768186703,215,0 +170768186752,215,0 +170768186800,215,0 +170768186848,215,0 +170768186898,215,0 +170768186945,213,0 +170768186993,213,0 +170768187043,213,0 +170768187091,214,0 +170768187140,214,0 +170768187190,214,0 +170768187238,214,0 +170768187285,214,0 +170768187333,214,0 +170768187381,215,0 +170768187429,215,0 +170768187477,215,0 +170768187525,215,0 +170768187573,215,0 +170768187622,215,0 +170768187670,215,0 +170768187720,215,0 +170768187769,215,0 +170768187817,214,0 +170768187865,214,0 +170768187913,214,0 +170768187961,214,0 +170768188009,214,0 +170768188058,214,0 +170768188106,215,0 +170768188154,215,0 +170768188202,215,0 +170768188251,215,0 +170768188299,215,0 +170768188347,215,0 +170768188395,215,0 +170768188445,215,0 +170768188493,215,0 +170768188542,215,0 +170768188592,215,0 +170768188640,214,0 +170768188687,213,0 +170768188737,214,0 +170768188787,214,0 +170768188834,214,0 +170768188884,214,0 +170768188932,214,0 +170768188981,214,0 +170768189031,214,0 +170768189079,215,0 +170768189127,215,0 +170768189175,215,0 +170768189224,215,0 +170768189272,215,0 +170768189320,215,0 +170768189368,215,0 +170768189416,215,0 +170768189464,215,0 +170768189511,213,0 +170768189561,213,0 +170768189609,213,0 +170768189656,213,0 +170768189704,213,0 +170768189752,214,0 +170768189800,214,0 +170768189848,214,0 +170768189896,214,0 +170768189943,214,0 +170768189991,214,0 +170768190039,214,0 +170768190087,214,0 +170768190135,214,0 +170768190183,215,0 +170768190230,215,0 +170768190278,215,0 +170768190326,215,0 +170768190374,213,0 +170768190424,213,0 +170768190472,213,0 +170768190519,214,0 +170768190569,214,0 +170768190618,214,0 +170768190666,214,0 +170768190714,214,0 +170768190764,214,0 +170768190813,214,0 +170768190861,214,0 +170768190909,214,0 +170768190957,215,0 +170768191005,215,0 +170768191053,215,0 +170768191101,215,0 +170768191149,215,0 +170768191197,214,0 +170768191244,213,0 +170768191292,213,0 +170768191340,213,0 +170768191388,214,0 +170768191436,214,0 +170768191484,214,0 +170768191531,214,0 +170768191579,214,0 +170768191627,214,0 +170768191677,215,0 +170768191724,215,0 +170768191774,215,0 +170768191822,215,0 +170768191871,215,0 +170768191919,215,0 +170768191967,215,0 +170768192015,215,0 +170768192063,213,0 +170768192111,213,0 +170768192159,213,0 +170768192207,214,0 +170768192255,214,0 +170768192302,214,0 +170768192350,214,0 +170768192398,214,0 +170768192446,214,0 +170768192494,215,0 +170768192542,215,0 +170768192591,215,0 +170768192641,215,0 +170768192689,215,0 +170768192737,215,0 +170768192786,215,0 +170768192834,215,0 +170768192882,215,0 +170768192931,214,0 +170768192979,214,0 +170768193029,214,0 +170768193077,214,0 +170768193126,214,0 +170768193174,215,0 +170768193223,215,0 +170768193273,215,0 +170768193321,215,0 +170768193369,215,0 +170768193418,215,0 +170768193466,215,0 +170768193514,215,0 +170768193562,215,0 +170768193610,215,0 +170768193659,215,0 +170768193707,215,0 +170768193757,213,0 +170768193805,213,0 +170768193853,213,0 +170768193901,214,0 +170768193948,214,0 +170768193996,214,0 +170768194046,214,0 +170768194094,214,0 +170768194143,214,0 +170768194193,215,0 +170768194240,215,0 +170768194288,215,0 +170768194338,215,0 +170768194387,215,0 +170768194437,215,0 +170768194486,216,0 +170768194536,215,0 +170768194584,215,0 +170768194632,213,0 +170768194679,213,0 +170768194727,213,0 +170768194775,214,0 +170768194823,214,0 +170768194871,214,0 +170768194919,214,0 +170768194966,215,0 +170768195014,215,0 +170768195064,215,0 +170768195111,215,0 +170768195161,215,0 +170768195209,215,0 +170768195257,215,0 +170768195305,215,0 +170768195353,215,0 +170768195400,215,0 +170768195448,214,0 +170768195498,213,0 +170768195547,213,0 +170768195595,213,0 +170768195643,214,0 +170768195691,213,0 +170768195739,214,0 +170768195787,214,0 +170768195836,214,0 +170768195884,214,0 +170768195932,214,0 +170768195980,214,0 +170768196028,214,0 +170768196076,214,0 +170768196124,214,0 +170768196173,215,0 +170768196221,215,0 +170768196269,215,0 +170768196317,215,0 +170768196365,215,0 +170768196414,215,0 +170768196462,216,0 +170768196510,215,0 +170768196558,215,0 +170768196607,215,0 +170768196655,215,0 +170768196703,215,0 +170768196753,214,0 +170768196801,214,0 +170768196848,214,0 +170768196896,214,0 +170768196946,214,0 +170768196994,214,0 +170768197042,214,0 +170768197089,214,0 +170768197137,215,0 +170768197187,215,0 +170768197235,215,0 +170768197282,215,0 +170768197330,215,0 +170768197378,215,0 +170768197426,215,0 +170768197474,215,0 +170768197522,215,0 +170768197570,214,0 +170768197617,213,0 +170768197665,213,0 +170768197713,213,0 +170768197761,214,0 +170768197809,214,0 +170768197857,214,0 +170768197904,214,0 +170768197952,214,0 +170768198000,215,0 +170768198048,214,0 +170768198096,214,0 +170768198143,215,0 +170768198191,215,0 +170768198239,215,0 +170768198287,215,0 +170768198335,215,0 +170768198383,215,0 +170768198432,214,0 +170768198480,213,0 +170768198528,213,0 +170768198576,213,0 +170768198624,213,0 +170768198673,213,0 +170768198721,213,0 +170768198769,214,0 +170768198817,214,0 +170768198865,214,0 +170768198914,214,0 +170768198962,214,0 +170768199012,214,0 +170768199061,215,0 +170768199109,215,0 +170768199157,215,0 +170768199205,215,0 +170768199253,215,0 +170768199301,213,0 +170768199349,213,0 +170768199396,213,0 +170768199444,213,0 +170768199492,214,0 +170768199540,214,0 +170768199588,214,0 +170768199636,214,0 +170768199683,214,0 +170768199731,214,0 +170768199779,214,0 +170768199827,214,0 +170768199875,214,0 +170768199924,215,0 +170768199972,215,0 +170768200020,215,0 +170768200067,215,0 +170768200117,215,0 +170768200165,213,0 +170768200212,213,0 +170768200260,213,0 +170768200308,213,0 +170768200357,214,0 +170768200405,214,0 +170768200453,214,0 +170768200501,214,0 +170768200549,214,0 +170768200596,214,0 +170768200644,214,0 +170768200694,214,0 +170768200741,214,0 +170768200789,215,0 +170768200837,215,0 +170768200885,215,0 +170768200932,215,0 +170768200980,215,0 +170768201028,213,0 +170768201076,213,0 +170768201124,213,0 +170768201173,213,0 +170768201221,213,0 +170768201269,214,0 +170768201317,214,0 +170768201365,214,0 +170768201412,214,0 +170768201460,214,0 +170768201508,214,0 +170768201556,215,0 +170768201604,215,0 +170768201652,215,0 +170768201699,215,0 +170768201747,215,0 +170768201795,215,0 +170768201843,213,0 +170768201891,213,0 +170768201939,213,0 +170768201989,213,0 +170768202036,213,0 +170768202086,214,0 +170768202136,214,0 +170768202183,214,0 +170768202233,214,0 +170768202282,214,0 +170768202332,215,0 +170768202381,215,0 +170768202429,215,0 +170768202477,216,0 +170768202527,215,0 +170768202576,215,0 +170768202624,215,0 +170768202672,215,0 +170768202720,214,0 +170768202768,213,0 +170768202816,214,0 +170768202865,214,0 +170768202913,214,0 +170768202961,214,0 +170768203011,214,0 +170768203059,214,0 +170768203107,214,0 +170768203155,215,0 +170768203204,215,0 +170768203252,215,0 +170768203300,215,0 +170768203349,215,0 +170768203399,215,0 +170768203447,215,0 +170768203495,215,0 +170768203543,215,0 +170768203591,214,0 +170768203639,214,0 +170768203687,214,0 +170768203735,214,0 +170768203783,214,0 +170768203832,214,0 +170768203882,214,0 +170768203930,215,0 +170768203978,215,0 +170768204025,215,0 +170768204075,215,0 +170768204124,215,0 +170768204174,215,0 +170768204222,215,0 +170768204270,215,0 +170768204318,215,0 +170768204367,215,0 +170768204417,214,0 +170768204465,214,0 +170768204513,214,0 +170768204561,214,0 +170768204609,214,0 +170768204657,214,0 +170768204706,214,0 +170768204754,214,0 +170768204803,214,0 +170768204851,215,0 +170768204899,215,0 +170768204947,215,0 +170768204995,215,0 +170768205045,215,0 +170768205093,215,0 +170768205140,215,0 +170768205188,215,0 +170768205236,215,0 +170768205286,214,0 +170768205334,214,0 +170768205382,214,0 +170768205431,214,0 +170768205479,214,0 +170768205527,215,0 +170768205577,214,0 +170768205626,214,0 +170768205676,214,0 +170768205724,215,0 +170768205771,215,0 +170768205821,215,0 +170768205869,215,0 +170768205917,215,0 +170768205964,215,0 +170768206012,215,0 +170768206060,215,0 +170768206108,214,0 +170768206156,214,0 +170768206204,214,0 +170768206253,214,0 +170768206301,215,0 +170768206351,214,0 +170768206399,214,0 +170768206447,215,0 +170768206495,215,0 +170768206544,215,0 +170768206592,215,0 +170768206640,215,0 +170768206688,215,0 +170768206736,215,0 +170768206785,215,0 +170768206833,215,0 +170768206883,215,0 +170768206931,215,0 +170768206979,215,0 +170768207027,214,0 +170768207075,214,0 +170768207124,214,0 +170768207172,215,0 +170768207220,215,0 +170768207269,215,0 +170768207317,215,0 +170768207365,215,0 +170768207413,215,0 +170768207461,215,0 +170768207509,215,0 +170768207557,215,0 +170768207605,215,0 +170768207653,215,0 +170768207703,215,0 +170768207750,215,0 +170768207800,215,0 +170768207848,214,0 +170768207897,214,0 +170768207945,214,0 +170768207995,214,0 +170768208043,214,0 +170768208090,215,0 +170768208138,215,0 +170768208188,215,0 +170768208236,215,0 +170768208284,215,0 +170768208332,215,0 +170768208379,215,0 +170768208427,215,0 +170768208475,215,0 +170768208525,215,0 +170768208574,216,0 +170768208622,215,0 +170768208672,214,0 +170768208720,213,0 +170768208769,213,0 +170768208819,214,0 +170768208867,214,0 +170768208915,214,0 +170768208962,214,0 +170768209010,214,0 +170768209060,214,0 +170768209108,215,0 +170768209156,215,0 +170768209204,215,0 +170768209253,215,0 +170768209303,215,0 +170768209350,215,0 +170768209398,215,0 +170768209446,215,0 +170768209494,215,0 +170768209544,213,0 +170768209593,213,0 +170768209643,213,0 +170768209692,213,0 +170768209740,214,0 +170768209788,214,0 +170768209837,214,0 +170768209885,214,0 +170768209933,214,0 +170768209981,214,0 +170768210029,215,0 +170768210077,215,0 +170768210125,215,0 +170768210173,215,0 +170768210222,215,0 +170768210270,215,0 +170768210320,215,0 +170768210369,215,0 +170768210419,213,0 +170768210467,213,0 +170768210515,213,0 +170768210564,214,0 +170768210612,214,0 +170768210660,214,0 +170768210709,214,0 +170768210759,214,0 +170768210807,214,0 +170768210855,214,0 +170768210903,215,0 +170768210951,215,0 +170768210999,215,0 +170768211046,215,0 +170768211094,215,0 +170768211142,215,0 +170768211190,215,0 +170768211238,214,0 +170768211286,213,0 +170768211334,213,0 +170768211383,213,0 +170768211431,214,0 +170768211481,214,0 +170768211529,214,0 +170768211578,214,0 +170768211626,214,0 +170768211675,215,0 +170768211725,214,0 +170768211773,215,0 +170768211821,215,0 +170768211870,215,0 +170768211918,215,0 +170768211968,215,0 +170768212016,215,0 +170768212064,215,0 +170768212112,213,0 +170768212161,213,0 +170768212209,213,0 +170768212257,214,0 +170768212307,213,0 +170768212356,214,0 +170768212404,214,0 +170768212452,213,0 +170768212500,214,0 +170768212549,214,0 +170768212597,215,0 +170768212647,214,0 +170768212695,215,0 +170768212743,215,0 +170768212792,215,0 +170768212840,215,0 +170768212888,215,0 +170768212936,215,0 +170768212984,213,0 +170768213033,213,0 +170768213083,213,0 +170768213131,213,0 +170768213179,213,0 +170768213226,213,0 +170768213274,213,0 +170768213322,213,0 +170768213372,214,0 +170768213420,214,0 +170768213468,214,0 +170768213516,214,0 +170768213565,214,0 +170768213613,214,0 +170768213661,214,0 +170768213709,215,0 +170768213757,215,0 +170768213805,214,0 +170768213853,213,0 +170768213901,213,0 +170768213950,213,0 +170768214000,213,0 +170768214049,213,0 +170768214097,214,0 +170768214145,214,0 +170768214193,214,0 +170768214242,214,0 +170768214290,214,0 +170768214338,214,0 +170768214386,214,0 +170768214435,215,0 +170768214485,215,0 +170768214533,215,0 +170768214581,215,0 +170768214629,215,0 +170768214677,213,0 +170768214726,213,0 +170768214774,213,0 +170768214824,213,0 +170768214871,213,0 +170768214919,214,0 +170768214967,214,0 +170768215017,214,0 +170768215065,214,0 +170768215114,214,0 +170768215164,215,0 +170768215211,214,0 +170768215259,215,0 +170768215307,215,0 +170768215357,215,0 +170768215405,215,0 +170768215454,215,0 +170768215502,214,0 +170768215550,213,0 +170768215598,213,0 +170768215646,213,0 +170768215696,213,0 +170768215744,213,0 +170768215791,214,0 +170768215839,214,0 +170768215887,214,0 +170768215935,214,0 +170768215983,214,0 +170768216031,214,0 +170768216080,215,0 +170768216128,215,0 +170768216176,215,0 +170768216224,215,0 +170768216272,215,0 +170768216320,215,0 +170768216368,214,0 +170768216415,213,0 +170768216465,213,0 +170768216514,214,0 +170768216562,214,0 +170768216610,214,0 +170768216658,214,0 +170768216708,214,0 +170768216757,214,0 +170768216805,214,0 +170768216853,215,0 +170768216901,215,0 +170768216949,215,0 +170768216998,215,0 +170768217046,215,0 +170768217094,215,0 +170768217142,215,0 +170768217190,215,0 +170768217239,214,0 +170768217287,214,0 +170768217335,214,0 +170768217383,214,0 +170768217431,214,0 +170768217480,214,0 +170768217528,215,0 +170768217576,215,0 +170768217624,215,0 +170768217672,215,0 +170768217720,215,0 +170768217768,215,0 +170768217816,215,0 +170768217863,215,0 +170768217913,215,0 +170768217961,215,0 +170768218008,215,0 +170768218058,214,0 +170768218106,214,0 +170768218154,214,0 +170768218202,214,0 +170768218250,214,0 +170768218298,215,0 +170768218346,214,0 +170768218394,215,0 +170768218441,215,0 +170768218489,215,0 +170768218537,216,0 +170768218585,215,0 +170768218635,215,0 +170768218684,215,0 +170768218734,215,0 +170768218782,215,0 +170768218831,215,0 +170768218879,215,0 +170768218927,214,0 +170768218976,214,0 +170768219026,214,0 +170768219075,214,0 +170768219123,214,0 +170768219171,214,0 +170768219219,214,0 +170768219267,214,0 +170768219315,214,0 +170768219363,215,0 +170768219412,215,0 +170768219460,215,0 +170768219508,215,0 +170768219556,215,0 +170768219604,215,0 +170768219652,215,0 +170768219701,215,0 +170768219749,215,0 +170768219797,214,0 +170768219845,213,0 +170768219892,214,0 +170768219940,214,0 +170768219988,214,0 +170768220036,214,0 +170768220084,214,0 +170768220132,214,0 +170768220180,215,0 +170768220228,215,0 +170768220277,215,0 +170768220325,215,0 +170768220373,215,0 +170768220421,215,0 +170768220469,215,0 +170768220518,215,0 +170768220568,215,0 +170768220616,215,0 +170768220664,213,0 +170768220712,213,0 +170768220761,213,0 +170768220809,214,0 +170768220857,214,0 +170768220905,214,0 +170768220953,214,0 +170768221001,214,0 +170768221048,215,0 +170768221098,215,0 +170768221146,214,0 +170768221195,215,0 +170768221243,215,0 +170768221292,215,0 +170768221340,215,0 +170768221388,215,0 +170768221436,215,0 +170768221484,214,0 +170768221532,213,0 +170768221580,213,0 +170768221629,214,0 +170768221677,214,0 +170768221725,214,0 +170768221774,214,0 +170768221822,214,0 +170768221870,214,0 +170768221918,215,0 +170768221966,215,0 +170768222014,215,0 +170768222063,215,0 +170768222113,215,0 +170768222161,215,0 +170768222209,215,0 +170768222257,215,0 +170768222306,215,0 +170768222354,214,0 +170768222402,213,0 +170768222450,213,0 +170768222499,214,0 +170768222547,214,0 +170768222596,214,0 +170768222646,214,0 +170768222695,215,0 +170768222745,214,0 +170768222793,215,0 +170768222841,215,0 +170768222890,215,0 +170768222938,215,0 +170768222987,215,0 +170768223035,215,0 +170768223083,215,0 +170768223131,215,0 +170768223179,215,0 +170768223228,213,0 +170768223278,213,0 +170768223326,213,0 +170768223375,214,0 +170768223423,214,0 +170768223471,214,0 +170768223519,214,0 +170768223567,214,0 +170768223615,214,0 +170768223664,215,0 +170768223712,215,0 +170768223760,215,0 +170768223809,215,0 +170768223859,215,0 +170768223907,215,0 +170768223955,215,0 +170768224003,215,0 +170768224050,214,0 +170768224098,213,0 +170768224148,213,0 +170768224196,213,0 +170768224244,213,0 +170768224292,214,0 +170768224341,214,0 +170768224389,214,0 +170768224437,214,0 +170768224485,214,0 +170768224533,214,0 +170768224582,215,0 +170768224630,214,0 +170768224678,215,0 +170768224726,215,0 +170768224774,215,0 +170768224823,215,0 +170768224871,215,0 +170768224919,213,0 +170768224967,213,0 +170768225015,213,0 +170768225064,213,0 +170768225114,213,0 +170768225162,214,0 +170768225211,214,0 +170768225259,214,0 +170768225307,214,0 +170768225356,214,0 +170768225404,214,0 +170768225454,215,0 +170768225501,214,0 +170768225549,215,0 +170768225597,215,0 +170768225645,215,0 +170768225693,215,0 +170768225741,215,0 +170768225790,213,0 +170768225840,213,0 +170768225888,213,0 +170768225937,213,0 +170768225987,213,0 +170768226035,214,0 +170768226083,214,0 +170768226132,214,0 +170768226180,214,0 +170768226228,214,0 +170768226276,214,0 +170768226324,215,0 +170768226372,215,0 +170768226420,215,0 +170768226468,215,0 +170768226516,215,0 +170768226563,215,0 +170768226611,214,0 +170768226659,213,0 +170768226707,213,0 +170768226755,213,0 +170768226803,214,0 +170768226851,214,0 +170768226898,214,0 +170768226946,214,0 +170768226994,214,0 +170768227042,214,0 +170768227090,214,0 +170768227138,214,0 +170768227185,214,0 +170768227233,215,0 +170768227281,215,0 +170768227330,215,0 +170768227378,215,0 +170768227428,215,0 +170768227477,214,0 +170768227525,213,0 +170768227573,214,0 +170768227621,214,0 +170768227670,214,0 +170768227720,214,0 +170768227768,214,0 +170768227817,214,0 +170768227865,215,0 +170768227913,215,0 +170768227961,215,0 +170768228010,215,0 +170768228058,215,0 +170768228106,215,0 +170768228156,215,0 +170768228205,215,0 +170768228255,215,0 +170768228303,214,0 +170768228351,214,0 +170768228399,214,0 +170768228447,214,0 +170768228495,214,0 +170768228542,214,0 +170768228590,214,0 +170768228638,214,0 +170768228686,214,0 +170768228734,215,0 +170768228782,214,0 +170768228830,215,0 +170768228878,215,0 +170768228926,215,0 +170768228974,215,0 +170768229022,215,0 +170768229070,215,0 +170768229119,215,0 +170768229167,214,0 +170768229215,214,0 +170768229264,214,0 +170768229312,214,0 +170768229362,214,0 +170768229410,214,0 +170768229457,215,0 +170768229505,214,0 +170768229553,215,0 +170768229601,215,0 +170768229649,215,0 +170768229697,215,0 +170768229745,215,0 +170768229793,215,0 +170768229842,215,0 +170768229890,215,0 +170768229938,215,0 +170768229986,215,0 +170768230034,214,0 +170768230082,214,0 +170768230131,214,0 +170768230179,214,0 +170768230229,214,0 +170768230276,214,0 +170768230326,214,0 +170768230374,214,0 +170768230423,215,0 +170768230471,215,0 +170768230521,215,0 +170768230569,215,0 +170768230618,215,0 +170768230666,215,0 +170768230714,215,0 +170768230764,215,0 +170768230812,215,0 +170768230859,214,0 +170768230909,213,0 +170768230957,214,0 +170768231005,214,0 +170768231053,214,0 +170768231101,214,0 +170768231149,214,0 +170768231197,214,0 +170768231245,215,0 +170768231292,215,0 +170768231342,215,0 +170768231391,216,0 +170768231439,215,0 +170768231487,215,0 +170768231535,215,0 +170768231583,215,0 +170768231631,215,0 +170768231680,215,0 +170768231730,214,0 +170768231778,214,0 +170768231827,214,0 +170768231877,214,0 +170768231925,214,0 +170768231974,214,0 +170768232022,215,0 +170768232072,215,0 +170768232120,215,0 +170768232168,215,0 +170768232216,215,0 +170768232264,215,0 +170768232311,215,0 +170768232361,215,0 +170768232409,216,0 +170768232458,215,0 +170768232508,215,0 +170768232556,215,0 +170768232604,214,0 +170768232653,214,0 +170768232701,214,0 +170768232749,214,0 +170768232797,214,0 +170768232845,214,0 +170768232893,215,0 +170768232941,215,0 +170768232989,215,0 +170768233036,215,0 +170768233086,215,0 +170768233134,215,0 +170768233182,215,0 +170768233231,215,0 +170768233279,215,0 +170768233327,215,0 +170768233375,215,0 +170768233423,214,0 +170768233471,213,0 +170768233519,214,0 +170768233567,214,0 +170768233615,214,0 +170768233665,214,0 +170768233712,214,0 +170768233760,214,0 +170768233808,215,0 +170768233856,215,0 +170768233904,215,0 +170768233952,214,0 +170768234000,215,0 +170768234048,215,0 +170768234096,215,0 +170768234144,215,0 +170768234191,215,0 +170768234239,215,0 +170768234289,213,0 +170768234337,213,0 +170768234385,213,0 +170768234433,213,0 +170768234481,213,0 +170768234529,214,0 +170768234576,214,0 +170768234624,214,0 +170768234674,214,0 +170768234723,214,0 +170768234773,214,0 +170768234821,215,0 +170768234870,215,0 +170768234918,215,0 +170768234966,215,0 +170768235014,215,0 +170768235064,215,0 +170768235112,215,0 +170768235161,213,0 +170768235209,213,0 +170768235257,213,0 +170768235305,214,0 +170768235353,214,0 +170768235402,214,0 +170768235450,214,0 +170768235498,214,0 +170768235546,214,0 +170768235595,214,0 +170768235643,214,0 +170768235691,214,0 +170768235739,215,0 +170768235787,215,0 +170768235835,215,0 +170768235883,215,0 +170768235932,215,0 +170768235980,214,0 +170768236028,213,0 +170768236076,213,0 +170768236124,214,0 +170768236173,214,0 +170768236223,214,0 +170768236271,214,0 +170768236320,214,0 +170768236368,214,0 +170768236418,215,0 +170768236466,215,0 +170768236513,215,0 +170768236561,215,0 +170768236609,215,0 +170768236657,215,0 +170768236705,215,0 +170768236754,215,0 +170768236802,215,0 +170768236851,214,0 +170768236899,214,0 +170768236947,214,0 +170768236995,214,0 +170768237043,214,0 +170768237091,214,0 +170768237139,214,0 +170768237187,214,0 +170768237236,215,0 +170768237284,215,0 +170768237332,215,0 +170768237381,215,0 +170768237429,215,0 +170768237477,215,0 +170768237524,215,0 +170768237572,215,0 +170768237620,215,0 +170768237668,215,0 +170768237716,214,0 +170768237764,214,0 +170768237812,214,0 +170768237859,214,0 +170768237907,214,0 +170768237957,214,0 +170768238006,214,0 +170768238054,214,0 +170768238102,215,0 +170768238150,215,0 +170768238197,215,0 +170768238247,215,0 +170768238295,215,0 +170768238342,215,0 +170768238390,215,0 +170768238438,215,0 +170768238488,215,0 +170768238535,215,0 +170768238583,213,0 +170768238631,213,0 +170768238679,213,0 +170768238727,214,0 +170768238775,214,0 +170768238825,214,0 +170768238872,215,0 +170768238920,214,0 +170768238970,214,0 +170768239018,214,0 +170768239066,214,0 +170768239113,215,0 +170768239161,215,0 +170768239209,215,0 +170768239259,215,0 +170768239307,215,0 +170768239354,215,0 +170768239402,214,0 +170768239452,213,0 +170768239500,214,0 +170768239549,214,0 +170768239597,214,0 +170768239645,214,0 +170768239693,214,0 +170768239741,214,0 +170768239789,214,0 +170768239839,215,0 +170768239887,215,0 +170768239934,215,0 +170768239982,215,0 +170768240030,215,0 +170768240078,215,0 +170768240126,215,0 +170768240174,215,0 +170768240223,215,0 +170768240271,214,0 +170768240321,214,0 +170768240369,214,0 +170768240417,214,0 +170768240465,214,0 +170768240514,214,0 +170768240563,214,0 +170768240611,215,0 +170768240659,215,0 +170768240707,215,0 +170768240755,215,0 +170768240803,215,0 +170768240851,215,0 +170768240899,215,0 +170768240947,215,0 +170768240995,215,0 +170768241044,215,0 +170768241092,215,0 +170768241140,214,0 +170768241190,214,0 +170768241238,214,0 +170768241285,214,0 +170768241333,214,0 +170768241381,214,0 +170768241429,214,0 +170768241477,215,0 +170768241525,215,0 +170768241574,215,0 +170768241622,215,0 +170768241670,215,0 +170768241718,215,0 +170768241768,215,0 +170768241816,215,0 +170768241865,215,0 +170768241913,215,0 +170768241961,215,0 +170768242009,214,0 +170768242057,214,0 +170768242105,214,0 +170768242154,214,0 +170768242203,214,0 +170768242251,214,0 +170768242299,215,0 +170768242347,215,0 +170768242395,215,0 +170768242443,215,0 +170768242491,215,0 +170768242539,215,0 +170768242587,215,0 +170768242634,216,0 +170768242682,215,0 +170768242730,215,0 +170768242780,215,0 +170768242829,214,0 +170768242877,214,0 +170768242927,214,0 +170768242975,214,0 +170768243023,214,0 +170768243072,214,0 +170768243120,214,0 +170768243169,214,0 +170768243219,215,0 +170768243267,215,0 +170768243315,215,0 +170768243363,215,0 +170768243411,215,0 +170768243460,215,0 +170768243508,215,0 +170768243557,215,0 +170768243605,215,0 +170768243653,215,0 +170768243701,214,0 +170768243749,214,0 +170768243797,214,0 +170768243845,214,0 +170768243894,214,0 +170768243942,214,0 +170768243990,214,0 +170768244038,214,0 +170768244087,214,0 +170768244137,215,0 +170768244185,215,0 +170768244233,215,0 +170768244280,215,0 +170768244328,215,0 +170768244376,215,0 +170768244424,215,0 +170768244472,215,0 +170768244520,215,0 +170768244569,213,0 +170768244617,213,0 +170768244665,213,0 +170768244713,214,0 +170768244761,214,0 +170768244810,214,0 +170768244858,214,0 +170768244906,214,0 +170768244954,214,0 +170768245001,214,0 +170768245049,215,0 +170768245097,215,0 +170768245145,215,0 +170768245193,215,0 +170768245242,215,0 +170768245290,215,0 +170768245339,215,0 +170768245387,215,0 +170768245435,213,0 +170768245483,213,0 +170768245531,213,0 +170768245578,213,0 +170768245626,214,0 +170768245674,214,0 +170768245722,214,0 +170768245770,214,0 +170768245818,214,0 +170768245866,214,0 +170768245913,214,0 +170768245961,215,0 +170768246009,215,0 +170768246057,215,0 +170768246105,215,0 +170768246153,215,0 +170768246200,215,0 +170768246248,214,0 +170768246298,213,0 +170768246345,213,0 +170768246393,213,0 +170768246441,213,0 +170768246489,214,0 +170768246538,214,0 +170768246586,214,0 +170768246636,214,0 +170768246684,214,0 +170768246731,215,0 +170768246779,215,0 +170768246827,215,0 +170768246875,215,0 +170768246923,215,0 +170768246972,215,0 +170768247022,217,0 +170768247070,215,0 +170768247119,213,0 +170768247167,213,0 +170768247215,213,0 +170768247263,213,0 +170768247311,213,0 +170768247359,214,0 +170768247407,214,0 +170768247455,214,0 +170768247504,214,0 +170768247552,214,0 +170768247600,214,0 +170768247649,215,0 +170768247697,215,0 +170768247747,215,0 +170768247796,215,0 +170768247844,215,0 +170768247892,215,0 +170768247941,215,0 +170768247989,213,0 +170768248037,213,0 +170768248087,214,0 +170768248135,214,0 +170768248183,214,0 +170768248231,214,0 +170768248280,214,0 +170768248328,214,0 +170768248378,215,0 +170768248427,215,0 +170768248475,215,0 +170768248523,215,0 +170768248571,215,0 +170768248619,215,0 +170768248667,215,0 +170768248716,215,0 +170768248766,215,0 +170768248814,214,0 +170768248862,213,0 +170768248911,213,0 +170768248959,214,0 +170768249007,214,0 +170768249055,214,0 +170768249103,214,0 +170768249151,214,0 +170768249200,214,0 +170768249250,214,0 +170768249298,214,0 +170768249347,215,0 +170768249395,214,0 +170768249443,214,0 +170768249491,215,0 +170768249539,215,0 +170768249587,215,0 +170768249635,215,0 +170768249682,213,0 +170768249730,213,0 +170768249778,213,0 +170768249826,213,0 +170768249874,214,0 +170768249921,214,0 +170768249969,213,0 +170768250017,214,0 +170768250065,214,0 +170768250113,214,0 +170768250161,214,0 +170768250208,214,0 +170768250256,214,0 +170768250304,215,0 +170768250352,215,0 +170768250400,215,0 +170768250448,215,0 +170768250495,215,0 +170768250543,214,0 +170768250591,213,0 +170768250639,213,0 +170768250687,213,0 +170768250735,214,0 +170768250782,214,0 +170768250830,214,0 +170768250878,215,0 +170768250926,214,0 +170768250974,215,0 +170768251023,215,0 +170768251071,215,0 +170768251119,215,0 +170768251166,215,0 +170768251214,215,0 +170768251262,215,0 +170768251310,215,0 +170768251358,215,0 +170768251406,214,0 +170768251455,214,0 +170768251503,214,0 +170768251553,214,0 +170768251601,214,0 +170768251649,214,0 +170768251696,214,0 +170768251744,215,0 +170768251792,215,0 +170768251840,215,0 +170768251888,215,0 +170768251938,215,0 +170768251986,216,0 +170768252034,215,0 +170768252083,215,0 +170768252131,216,0 +170768252180,215,0 +170768252228,215,0 +170768252278,214,0 +170768252327,214,0 +170768252375,214,0 +170768252423,214,0 +170768252471,214,0 +170768252521,215,0 +170768252568,215,0 +170768252616,215,0 +170768252664,215,0 +170768252712,215,0 +170768252760,215,0 +170768252808,215,0 +170768252856,215,0 +170768252904,215,0 +170768252952,215,0 +170768253000,215,0 +170768253049,215,0 +170768253097,214,0 +170768253145,214,0 +170768253193,214,0 +170768253241,214,0 +170768253289,214,0 +170768253339,214,0 +170768253387,214,0 +170768253434,215,0 +170768253482,215,0 +170768253532,215,0 +170768253580,215,0 +170768253628,215,0 +170768253677,215,0 +170768253725,215,0 +170768253775,215,0 +170768253822,215,0 +170768253870,215,0 +170768253920,215,0 +170768253968,214,0 +170768254016,214,0 +170768254064,214,0 +170768254113,214,0 +170768254163,214,0 +170768254211,214,0 +170768254259,215,0 +170768254306,215,0 +170768254354,215,0 +170768254402,215,0 +170768254450,215,0 +170768254498,215,0 +170768254546,215,0 +170768254593,216,0 +170768254643,216,0 +170768254693,215,0 +170768254742,215,0 +170768254790,215,0 +170768254838,214,0 +170768254887,214,0 +170768254935,214,0 +170768254983,214,0 +170768255031,214,0 +170768255079,214,0 +170768255129,215,0 +170768255178,215,0 +170768255226,215,0 +170768255274,215,0 +170768255323,215,0 +170768255371,215,0 +170768255419,215,0 +170768255469,215,0 +170768255518,216,0 +170768255568,215,0 +170768255616,215,0 +170768255665,214,0 +170768255713,213,0 +170768255763,213,0 +170768255810,213,0 +170768255858,214,0 +170768255906,214,0 +170768255954,214,0 +170768256002,214,0 +170768256050,214,0 +170768256098,214,0 +170768256146,215,0 +170768256194,215,0 +170768256242,215,0 +170768256291,215,0 +170768256339,215,0 +170768256389,215,0 +170768256437,215,0 +170768256485,215,0 +170768256532,214,0 +170768256582,213,0 +170768256630,213,0 +170768256678,213,0 +170768256727,214,0 +170768256775,214,0 +170768256825,214,0 +170768256874,214,0 +170768256922,214,0 +170768256970,214,0 +170768257018,215,0 +170768257068,215,0 +170768257116,215,0 +170768257163,216,0 +170768257211,215,0 +170768257259,215,0 +170768257307,215,0 +170768257355,215,0 +170768257402,213,0 +170768257450,213,0 +170768257498,213,0 +170768257546,213,0 +170768257594,213,0 +170768257642,214,0 +170768257689,214,0 +170768257739,214,0 +170768257787,214,0 +170768257835,214,0 +170768257883,214,0 +170768257932,214,0 +170768257981,214,0 +170768258029,215,0 +170768258079,215,0 +170768258127,215,0 +170768258175,215,0 +170768258224,214,0 +170768258272,213,0 +170768258320,213,0 +170768258368,213,0 +170768258416,214,0 +170768258464,214,0 +170768258512,214,0 +170768258562,214,0 +170768258609,214,0 +170768258659,214,0 +170768258707,215,0 +170768258756,215,0 +170768258806,215,0 +170768258855,215,0 +170768258905,215,0 +170768258953,215,0 +170768259002,215,0 +170768259052,216,0 +170768259101,213,0 +170768259151,213,0 +170768259199,213,0 +170768259247,213,0 +170768259294,214,0 +170768259342,213,0 +170768259390,214,0 +170768259438,214,0 +170768259486,214,0 +170768259534,214,0 +170768259584,214,0 +170768259631,214,0 +170768259679,215,0 +170768259727,215,0 +170768259775,215,0 +170768259823,215,0 +170768259871,215,0 +170768259919,215,0 +170768259967,213,0 +170768260015,213,0 +170768260063,213,0 +170768260112,213,0 +170768260160,214,0 +170768260208,214,0 +170768260258,214,0 +170768260305,214,0 +170768260353,214,0 +170768260403,214,0 +170768260451,215,0 +170768260499,215,0 +170768260548,215,0 +170768260596,215,0 +170768260644,215,0 +170768260692,215,0 +170768260740,215,0 +170768260790,214,0 +170768260838,213,0 +170768260885,213,0 +170768260933,213,0 +170768260981,214,0 +170768261029,214,0 +170768261077,214,0 +170768261125,214,0 +170768261173,214,0 +170768261221,214,0 +170768261271,214,0 +170768261319,215,0 +170768261367,215,0 +170768261414,215,0 +170768261464,215,0 +170768261512,215,0 +170768261561,215,0 +170768261611,215,0 +170768261659,214,0 +170768261708,213,0 +170768261758,213,0 +170768261806,214,0 +170768261854,214,0 +170768261902,214,0 +170768261950,214,0 +170768261999,214,0 +170768262047,215,0 +170768262097,215,0 +170768262144,215,0 +170768262194,215,0 +170768262243,215,0 +170768262291,215,0 +170768262339,215,0 +170768262389,215,0 +170768262437,215,0 +170768262484,215,0 +170768262532,214,0 +170768262580,214,0 +170768262628,214,0 +170768262676,214,0 +170768262726,214,0 +170768262773,214,0 +170768262821,214,0 +170768262871,214,0 +170768262919,215,0 +170768262968,215,0 +170768263016,215,0 +170768263066,215,0 +170768263115,215,0 +170768263163,215,0 +170768263211,215,0 +170768263260,215,0 +170768263308,215,0 +170768263358,214,0 +170768263406,214,0 +170768263455,214,0 +170768263503,214,0 +170768263551,214,0 +170768263599,214,0 +170768263647,214,0 +170768263695,214,0 +170768263743,214,0 +170768263790,214,0 +170768263838,215,0 +170768263886,215,0 +170768263934,215,0 +170768263984,215,0 +170768264032,214,0 +170768264079,215,0 +170768264127,215,0 +170768264175,215,0 +170768264223,214,0 +170768264271,213,0 +170768264319,213,0 +170768264367,213,0 +170768264415,214,0 +170768264463,214,0 +170768264511,214,0 +170768264560,214,0 +170768264608,214,0 +170768264656,214,0 +170768264704,215,0 +170768264752,214,0 +170768264800,215,0 +170768264849,215,0 +170768264897,215,0 +170768264945,215,0 +170768264993,215,0 +170768265041,215,0 +170768265089,214,0 +170768265137,214,0 +170768265187,214,0 +170768265234,214,0 +170768265282,214,0 +170768265330,214,0 +170768265380,214,0 +170768265428,214,0 +170768265476,214,0 +170768265524,215,0 +170768265573,215,0 +170768265621,215,0 +170768265669,215,0 +170768265717,215,0 +170768265765,215,0 +170768265813,215,0 +170768265861,215,0 +170768265909,215,0 +170768265956,214,0 +170768266004,214,0 +170768266053,214,0 +170768266101,214,0 +170768266148,215,0 +170768266198,215,0 +170768266246,215,0 +170768266295,215,0 +170768266345,215,0 +170768266394,215,0 +170768266442,216,0 +170768266492,215,0 +170768266540,215,0 +170768266588,215,0 +170768266637,215,0 +170768266687,215,0 +170768266735,215,0 +170768266782,214,0 +170768266832,214,0 +170768266881,214,0 +170768266929,215,0 +170768266979,215,0 +170768267027,215,0 +170768267075,215,0 +170768267124,215,0 +170768267172,215,0 +170768267220,215,0 +170768267268,215,0 +170768267316,215,0 +170768267364,216,0 +170768267412,216,0 +170768267461,215,0 +170768267511,215,0 +170768267560,215,0 +170768267610,215,0 +170768267659,214,0 +170768267707,214,0 +170768267755,214,0 +170768267804,214,0 +170768267852,214,0 +170768267902,215,0 +170768267950,215,0 +170768267998,215,0 +170768268046,215,0 +170768268094,215,0 +170768268141,215,0 +170768268191,215,0 +170768268239,215,0 +170768268287,215,0 +170768268336,215,0 +170768268384,215,0 +170768268432,215,0 +170768268480,214,0 +170768268528,213,0 +170768268576,213,0 +170768268624,213,0 +170768268672,214,0 +170768268721,214,0 +170768268769,214,0 +170768268819,214,0 +170768268867,214,0 +170768268916,215,0 +170768268966,215,0 +170768269015,215,0 +170768269065,215,0 +170768269113,215,0 +170768269160,215,0 +170768269208,215,0 +170768269256,215,0 +170768269304,215,0 +170768269352,214,0 +170768269400,213,0 +170768269448,213,0 +170768269496,214,0 +170768269544,214,0 +170768269592,214,0 +170768269640,214,0 +170768269689,214,0 +170768269737,214,0 +170768269785,215,0 +170768269833,214,0 +170768269881,215,0 +170768269930,215,0 +170768269978,215,0 +170768270026,215,0 +170768270074,215,0 +170768270124,215,0 +170768270173,215,0 +170768270221,213,0 +170768270269,213,0 +170768270318,214,0 +170768270366,214,0 +170768270414,214,0 +170768270462,214,0 +170768270512,214,0 +170768270559,214,0 +170768270607,214,0 +170768270657,215,0 +170768270705,215,0 +170768270754,215,0 +170768270804,215,0 +170768270853,215,0 +170768270903,215,0 +170768270951,215,0 +170768270999,215,0 +170768271046,214,0 +170768271096,213,0 +170768271144,214,0 +170768271193,214,0 +170768271241,214,0 +170768271289,214,0 +170768271337,214,0 +170768271385,214,0 +170768271434,215,0 +170768271482,215,0 +170768271532,215,0 +170768271579,215,0 +170768271627,215,0 +170768271675,215,0 +170768271725,215,0 +170768271773,215,0 +170768271820,215,0 +170768271868,215,0 +170768271918,213,0 +170768271966,213,0 +170768272014,213,0 +170768272062,214,0 +170768272110,214,0 +170768272159,214,0 +170768272207,214,0 +170768272255,214,0 +170768272303,215,0 +170768272351,214,0 +170768272399,215,0 +170768272447,215,0 +170768272495,215,0 +170768272543,215,0 +170768272591,215,0 +170768272639,215,0 +170768272687,215,0 +170768272735,215,0 +170768272782,213,0 +170768272830,213,0 +170768272880,213,0 +170768272928,213,0 +170768272976,214,0 +170768273025,214,0 +170768273073,214,0 +170768273121,214,0 +170768273171,215,0 +170768273218,214,0 +170768273266,215,0 +170768273314,215,0 +170768273362,215,0 +170768273410,215,0 +170768273458,215,0 +170768273506,215,0 +170768273554,215,0 +170768273603,214,0 +170768273653,213,0 +170768273701,213,0 +170768273750,213,0 +170768273800,213,0 +170768273848,213,0 +170768273897,213,0 +170768273945,214,0 +170768273994,214,0 +170768274042,214,0 +170768274090,214,0 +170768274140,214,0 +170768274189,214,0 +170768274237,214,0 +170768274285,215,0 +170768274333,215,0 +170768274381,215,0 +170768274430,215,0 +170768274478,213,0 +170768274526,213,0 +170768274576,213,0 +170768274624,213,0 +170768274672,213,0 +170768274721,213,0 +170768274769,214,0 +170768274818,214,0 +170768274866,214,0 +170768274914,214,0 +170768274964,214,0 +170768275012,214,0 +170768275061,214,0 +170768275109,214,0 +170768275157,215,0 +170768275205,215,0 +170768275255,215,0 +170768275304,215,0 +170768275352,213,0 +170768275402,213,0 +170768275450,213,0 +170768275498,213,0 +170768275546,213,0 +170768275595,213,0 +170768275643,213,0 +170768275691,213,0 +170768275739,213,0 +170768275788,214,0 +170768275838,214,0 +170768275887,214,0 +170768275935,214,0 +170768275983,214,0 +170768276033,214,0 +170768276080,215,0 +170768276130,215,0 +170768276179,214,0 +170768276227,213,0 +170768276277,213,0 +170768276325,213,0 +170768276373,214,0 +170768276420,213,0 +170768276470,214,0 +170768276519,214,0 +170768276567,214,0 +170768276617,214,0 +170768276666,214,0 +170768276716,214,0 +170768276765,215,0 +170768276813,215,0 +170768276861,215,0 +170768276911,215,0 +170768276960,215,0 +170768277008,215,0 +170768277056,214,0 +170768277105,214,0 +170768277153,214,0 +170768277201,214,0 +170768277249,214,0 +170768277299,214,0 +170768277347,215,0 +170768277396,215,0 +170768277444,215,0 +170768277492,215,0 +170768277540,215,0 +170768277588,215,0 +170768277636,215,0 +170768277685,215,0 +170768277733,215,0 +170768277783,215,0 +170768277831,215,0 +170768277879,215,0 +170768277926,214,0 +170768277976,214,0 +170768278024,214,0 +170768278072,214,0 +170768278120,214,0 +170768278169,215,0 +170768278219,215,0 +170768278267,215,0 +170768278315,215,0 +170768278364,215,0 +170768278412,215,0 +170768278460,215,0 +170768278508,215,0 +170768278556,215,0 +170768278604,215,0 +170768278652,215,0 +170768278699,215,0 +170768278749,214,0 +170768278797,214,0 +170768278846,214,0 +170768278896,214,0 +170768278945,214,0 +170768278993,214,0 +170768279041,215,0 +170768279091,215,0 +170768279138,215,0 +170768279186,215,0 +170768279234,215,0 +170768279282,215,0 +170768279330,215,0 +170768279378,215,0 +170768279426,215,0 +170768279473,215,0 +170768279521,215,0 +170768279569,215,0 +170768279617,214,0 +170768279667,214,0 +170768279715,214,0 +170768279762,214,0 +170768279810,214,0 +170768279858,214,0 +170768279906,214,0 +170768279954,214,0 +170768280002,215,0 +170768280049,215,0 +170768280099,215,0 +170768280147,215,0 +170768280195,215,0 +170768280242,216,0 +170768280290,215,0 +170768280340,215,0 +170768280388,215,0 +170768280435,215,0 +170768280485,214,0 +170768280533,214,0 +170768280581,214,0 +170768280629,214,0 +170768280677,214,0 +170768280724,214,0 +170768280772,214,0 +170768280820,214,0 +170768280868,215,0 +170768280916,215,0 +170768280964,215,0 +170768281012,215,0 +170768281061,215,0 +170768281111,215,0 +170768281159,215,0 +170768281207,215,0 +170768281255,215,0 +170768281303,215,0 +170768281352,214,0 +170768281402,214,0 +170768281451,214,0 +170768281501,214,0 +170768281549,214,0 +170768281597,214,0 +170768281645,215,0 +170768281692,215,0 +170768281742,215,0 +170768281790,215,0 +170768281838,215,0 +170768281887,215,0 +170768281937,215,0 +170768281985,215,0 +170768282034,216,0 +170768282082,215,0 +170768282130,215,0 +170768282178,214,0 +170768282226,214,0 +170768282274,214,0 +170768282323,214,0 +170768282371,214,0 +170768282419,214,0 +170768282469,214,0 +170768282517,214,0 +170768282566,215,0 +170768282614,215,0 +170768282662,215,0 +170768282710,215,0 +170768282759,215,0 +170768282807,215,0 +170768282855,215,0 +170768282904,215,0 +170768282952,215,0 +170768283000,215,0 +170768283048,213,0 +170768283096,213,0 +170768283144,213,0 +170768283192,213,0 +170768283239,213,0 +170768283289,213,0 +170768283337,214,0 +170768283385,214,0 +170768283432,214,0 +170768283480,214,0 +170768283528,214,0 +170768283576,214,0 +170768283624,215,0 +170768283671,215,0 +170768283719,215,0 +170768283767,215,0 +170768283815,215,0 +170768283863,215,0 +170768283912,213,0 +170768283960,213,0 +170768284010,213,0 +170768284058,213,0 +170768284106,213,0 +170768284153,213,0 +170768284203,213,0 +170768284251,213,0 +170768284299,214,0 +170768284347,214,0 +170768284396,214,0 +170768284444,214,0 +170768284492,214,0 +170768284541,215,0 +170768284589,215,0 +170768284637,215,0 +170768284687,215,0 +170768284735,215,0 +170768284784,213,0 +170768284834,213,0 +170768284883,213,0 +170768284932,214,0 +170768284982,214,0 +170768285031,214,0 +170768285081,214,0 +170768285129,214,0 +170768285178,214,0 +170768285226,214,0 +170768285276,215,0 +170768285324,215,0 +170768285373,215,0 +170768285421,215,0 +170768285469,215,0 +170768285518,215,0 +170768285566,215,0 +170768285614,213,0 +170768285662,213,0 +170768285710,213,0 +170768285760,213,0 +170768285809,214,0 +170768285857,214,0 +170768285905,214,0 +170768285953,214,0 +170768286003,215,0 +170768286050,214,0 +170768286098,215,0 +170768286146,215,0 +170768286194,215,0 +170768286242,215,0 +170768286290,215,0 +170768286337,215,0 +170768286385,215,0 +170768286435,215,0 +170768286483,213,0 +170768286532,213,0 +170768286580,213,0 +170768286628,214,0 +170768286676,214,0 +170768286724,214,0 +170768286771,214,0 +170768286819,214,0 +170768286867,214,0 +170768286917,215,0 +170768286965,215,0 +170768287014,215,0 +170768287063,215,0 +170768287111,215,0 +170768287159,215,0 +170768287207,215,0 +170768287257,215,0 +170768287304,215,0 +170768287352,213,0 +170768287400,214,0 +170768287450,214,0 +170768287498,214,0 +170768287545,214,0 +170768287593,214,0 +170768287641,214,0 +170768287690,214,0 +170768287738,214,0 +170768287788,215,0 +170768287836,215,0 +170768287885,215,0 +170768287935,215,0 +170768287983,215,0 +170768288030,215,0 +170768288080,215,0 +170768288128,215,0 +170768288176,214,0 +170768288224,213,0 +170768288272,213,0 +170768288320,213,0 +170768288369,214,0 +170768288417,214,0 +170768288465,214,0 +170768288513,214,0 +170768288561,214,0 +170768288609,215,0 +170768288658,215,0 +170768288706,215,0 +170768288754,215,0 +170768288804,215,0 +170768288851,215,0 +170768288899,215,0 +170768288947,215,0 +170768288995,215,0 +170768289043,213,0 +170768289092,213,0 +170768289142,213,0 +170768289190,214,0 +170768289237,214,0 +170768289285,214,0 +170768289333,214,0 +170768289383,214,0 +170768289431,214,0 +170768289479,214,0 +170768289527,215,0 +170768289574,215,0 +170768289622,215,0 +170768289670,215,0 +170768289719,215,0 +170768289767,215,0 +170768289815,216,0 +170768289862,215,0 +170768289910,213,0 +170768289958,213,0 +170768290006,214,0 +170768290054,214,0 +170768290102,214,0 +170768290151,214,0 +170768290201,214,0 +170768290249,214,0 +170768290298,214,0 +170768290346,215,0 +170768290396,215,0 +170768290444,215,0 +170768290492,215,0 +170768290539,215,0 +170768290587,215,0 +170768290637,215,0 +170768290686,215,0 +170768290734,214,0 +170768290782,213,0 +170768290832,213,0 +170768290880,214,0 +170768290929,214,0 +170768290977,214,0 +170768291027,214,0 +170768291074,214,0 +170768291122,214,0 +170768291170,215,0 +170768291218,215,0 +170768291266,215,0 +170768291316,215,0 +170768291363,215,0 +170768291411,216,0 +170768291459,215,0 +170768291507,215,0 +170768291557,215,0 +170768291605,214,0 +170768291652,213,0 +170768291700,214,0 +170768291748,214,0 +170768291796,214,0 +170768291846,214,0 +170768291894,214,0 +170768291942,215,0 +170768291989,215,0 +170768292037,215,0 +170768292085,215,0 +170768292133,215,0 +170768292183,215,0 +170768292232,215,0 +170768292280,215,0 +170768292328,215,0 +170768292376,215,0 +170768292424,215,0 +170768292472,214,0 +170768292521,214,0 +170768292569,214,0 +170768292617,214,0 +170768292665,214,0 +170768292715,214,0 +170768292762,214,0 +170768292810,214,0 +170768292858,215,0 +170768292908,215,0 +170768292957,215,0 +170768293007,215,0 +170768293055,215,0 +170768293103,215,0 +170768293150,215,0 +170768293198,215,0 +170768293246,215,0 +170768293296,215,0 +170768293345,213,0 +170768293393,214,0 +170768293441,214,0 +170768293491,214,0 +170768293538,214,0 +170768293586,214,0 +170768293636,214,0 +170768293684,215,0 +170768293733,214,0 +170768293781,215,0 +170768293829,215,0 +170768293877,215,0 +170768293925,215,0 +170768293973,215,0 +170768294021,215,0 +170768294070,215,0 +170768294118,215,0 +170768294168,214,0 +170768294216,213,0 +170768294265,213,0 +170768294315,214,0 +170768294362,214,0 +170768294410,214,0 +170768294460,214,0 +170768294509,214,0 +170768294557,214,0 +170768294605,214,0 +170768294653,215,0 +170768294701,215,0 +170768294751,215,0 +170768294799,215,0 +170768294847,215,0 +170768294895,215,0 +170768294943,215,0 +170768294992,215,0 +170768295040,213,0 +170768295088,213,0 +170768295136,214,0 +170768295184,214,0 +170768295233,214,0 +170768295281,214,0 +170768295329,214,0 +170768295377,214,0 +170768295427,214,0 +170768295475,215,0 +170768295524,215,0 +170768295573,215,0 +170768295621,215,0 +170768295669,215,0 +170768295717,215,0 +170768295767,215,0 +170768295816,215,0 +170768295864,214,0 +170768295912,213,0 +170768295960,213,0 +170768296008,214,0 +170768296056,214,0 +170768296104,214,0 +170768296152,214,0 +170768296200,214,0 +170768296249,215,0 +170768296297,215,0 +170768296346,215,0 +170768296394,215,0 +170768296444,215,0 +170768296492,215,0 +170768296540,215,0 +170768296587,215,0 +170768296637,215,0 +170768296686,215,0 +170768296734,214,0 +170768296782,213,0 +170768296830,214,0 +170768296878,214,0 +170768296926,214,0 +170768296974,214,0 +170768297023,214,0 +170768297073,214,0 +170768297120,215,0 +170768297168,215,0 +170768297216,215,0 +170768297264,215,0 +170768297312,215,0 +170768297361,215,0 +170768297409,215,0 +170768297457,215,0 +170768297505,215,0 +170768297553,215,0 +170768297601,213,0 +170768297649,213,0 +170768297697,213,0 +170768297746,214,0 +170768297794,214,0 +170768297844,214,0 +170768297891,214,0 +170768297939,214,0 +170768297989,214,0 +170768298037,214,0 +170768298084,215,0 +170768298132,215,0 +170768298182,215,0 +170768298231,215,0 +170768298279,215,0 +170768298329,215,0 +170768298377,215,0 +170768298424,214,0 +170768298472,213,0 +170768298520,213,0 +170768298568,213,0 +170768298616,214,0 +170768298664,214,0 +170768298712,214,0 +170768298761,214,0 +170768298811,214,0 +170768298859,214,0 +170768298907,214,0 +170768298954,215,0 +170768299002,215,0 +170768299050,215,0 +170768299100,215,0 +170768299148,215,0 +170768299195,215,0 +170768299243,215,0 +170768299291,214,0 +170768299339,213,0 +170768299389,213,0 +170768299436,214,0 +170768299486,214,0 +170768299534,214,0 +170768299582,214,0 +170768299630,214,0 +170768299678,214,0 +170768299726,215,0 +170768299774,215,0 +170768299823,215,0 +170768299873,215,0 +170768299920,215,0 +170768299970,215,0 +170768300018,215,0 +170768300066,215,0 +170768300114,215,0 +170768300163,214,0 +170768300211,214,0 +170768300259,214,0 +170768300307,214,0 +170768300356,214,0 +170768300404,214,0 +170768300453,214,0 +170768300501,214,0 +170768300549,215,0 +170768300597,215,0 +170768300645,215,0 +170768300693,215,0 +170768300741,215,0 +170768300790,215,0 +170768300838,215,0 +170768300886,215,0 +170768300936,215,0 +170768300984,215,0 +170768301032,214,0 +170768301081,214,0 +170768301131,214,0 +170768301179,214,0 +170768301228,215,0 +170768301276,215,0 +170768301324,215,0 +170768301374,215,0 +170768301423,215,0 +170768301471,215,0 +170768301519,215,0 +170768301567,215,0 +170768301615,215,0 +170768301663,215,0 +170768301711,216,0 +170768301759,215,0 +170768301807,215,0 +170768301856,214,0 +170768301906,214,0 +170768301954,214,0 +170768302003,214,0 +170768302053,214,0 +170768302102,215,0 +170768302152,214,0 +170768302200,214,0 +170768302247,215,0 +170768302295,215,0 +170768302343,215,0 +170768302391,215,0 +170768302439,215,0 +170768302487,215,0 +170768302535,215,0 +170768302584,215,0 +170768302632,215,0 +170768302680,215,0 +170768302730,214,0 +170768302778,214,0 +170768302826,214,0 +170768302875,214,0 +170768302923,214,0 +170768302971,215,0 +170768303019,215,0 +170768303067,215,0 +170768303115,215,0 +170768303164,215,0 +170768303212,216,0 +170768303260,216,0 +170768303308,215,0 +170768303358,215,0 +170768303407,216,0 +170768303455,215,0 +170768303503,215,0 +170768303552,214,0 +170768303602,214,0 +170768303650,214,0 +170768303699,214,0 +170768303749,214,0 +170768303797,215,0 +170768303845,215,0 +170768303893,215,0 +170768303941,215,0 +170768303990,215,0 +170768304038,215,0 +170768304086,216,0 +170768304135,215,0 +170768304185,216,0 +170768304233,215,0 +170768304281,215,0 +170768304329,215,0 +170768304378,215,0 +170768304426,214,0 +170768304476,214,0 +170768304523,214,0 +170768304571,214,0 +170768304621,214,0 +170768304669,214,0 +170768304717,214,0 +170768304766,215,0 +170768304814,215,0 +170768304862,215,0 +170768304912,215,0 +170768304961,215,0 +170768305009,215,0 +170768305057,215,0 +170768305105,215,0 +170768305155,215,0 +170768305202,215,0 +170768305250,215,0 +170768305298,213,0 +170768305346,213,0 +170768305396,213,0 +170768305443,213,0 +170768305491,213,0 +170768305539,214,0 +170768305587,214,0 +170768305635,214,0 +170768305683,214,0 +170768305730,214,0 +170768305778,215,0 +170768305828,215,0 +170768305876,215,0 +170768305924,215,0 +170768305972,215,0 +170768306019,215,0 +170768306067,215,0 +170768306115,214,0 +170768306163,213,0 +170768306210,213,0 +170768306258,213,0 +170768306306,213,0 +170768306354,214,0 +170768306402,214,0 +170768306450,214,0 +170768306497,214,0 +170768306545,214,0 +170768306593,214,0 +170768306641,214,0 +170768306689,215,0 +170768306738,215,0 +170768306786,215,0 +170768306834,215,0 +170768306881,215,0 +170768306929,215,0 +170768306977,214,0 +170768307025,214,0 +170768307073,213,0 +170768307121,214,0 +170768307169,214,0 +170768307216,214,0 +170768307264,214,0 +170768307312,214,0 +170768307360,214,0 +170768307408,214,0 +170768307455,215,0 +170768307505,215,0 +170768307553,215,0 +170768307600,215,0 +170768307648,215,0 +170768307696,215,0 +170768307744,215,0 +170768307792,215,0 +170768307840,214,0 +170768307888,214,0 +170768307935,214,0 +170768307983,214,0 +170768308031,214,0 +170768308079,214,0 +170768308127,214,0 +170768308175,215,0 +170768308224,215,0 +170768308272,214,0 +170768308321,215,0 +170768308369,215,0 +170768308417,215,0 +170768308465,215,0 +170768308513,215,0 +170768308561,215,0 +170768308609,215,0 +170768308657,215,0 +170768308704,213,0 +170768308752,213,0 +170768308800,214,0 +170768308848,214,0 +170768308896,214,0 +170768308943,214,0 +170768308991,214,0 +170768309039,214,0 +170768309087,214,0 +170768309135,214,0 +170768309183,215,0 +170768309230,215,0 +170768309278,215,0 +170768309326,215,0 +170768309374,215,0 +170768309422,215,0 +170768309470,215,0 +170768309518,215,0 +170768309567,213,0 +170768309615,214,0 +170768309663,214,0 +170768309711,214,0 +170768309761,214,0 +170768309810,214,0 +170768309858,214,0 +170768309907,214,0 +170768309955,214,0 +170768310003,215,0 +170768310051,214,0 +170768310099,215,0 +170768310147,215,0 +170768310195,215,0 +170768310243,215,0 +170768310290,215,0 +170768310338,215,0 +170768310386,214,0 +170768310434,213,0 +170768310482,213,0 +170768310530,213,0 +170768310578,214,0 +170768310625,214,0 +170768310673,214,0 +170768310721,214,0 +170768310769,214,0 +170768310817,214,0 +170768310865,215,0 +170768310914,214,0 +170768310962,215,0 +170768311010,215,0 +170768311058,215,0 +170768311106,215,0 +170768311154,215,0 +170768311201,215,0 +170768311249,214,0 +170768311297,213,0 +170768311345,213,0 +170768311393,214,0 +170768311441,214,0 +170768311488,214,0 +170768311536,214,0 +170768311584,214,0 +170768311633,214,0 +170768311681,215,0 +170768311729,215,0 +170768311779,215,0 +170768311826,215,0 +170768311876,215,0 +170768311924,215,0 +170768311972,215,0 +170768312019,215,0 +170768312067,215,0 +170768312115,214,0 +170768312163,213,0 +170768312211,214,0 +170768312258,213,0 +170768312306,214,0 +170768312354,214,0 +170768312402,214,0 +170768312450,214,0 +170768312498,215,0 +170768312545,215,0 +170768312595,215,0 +170768312643,215,0 +170768312690,215,0 +170768312738,215,0 +170768312786,215,0 +170768312835,215,0 +170768312883,215,0 +170768312931,215,0 +170768312979,214,0 +170768313027,214,0 +170768313075,214,0 +170768313123,214,0 +170768313171,214,0 +170768313218,214,0 +170768313266,214,0 +170768313316,214,0 +170768313364,214,0 +170768313411,215,0 +170768313459,215,0 +170768313507,215,0 +170768313555,215,0 +170768313603,215,0 +170768313651,215,0 +170768313699,215,0 +170768313746,215,0 +170768313794,215,0 +170768313842,214,0 +170768313890,214,0 +170768313938,214,0 +170768313986,214,0 +170768314034,214,0 +170768314082,214,0 +170768314130,214,0 +170768314179,214,0 +170768314227,215,0 +170768314275,215,0 +170768314324,215,0 +170768314374,215,0 +170768314423,215,0 +170768314473,215,0 +170768314522,215,0 +170768314570,215,0 +170768314618,215,0 +170768314666,214,0 +170768314714,214,0 +170768314762,214,0 +170768314810,214,0 +170768314858,214,0 +170768314905,214,0 +170768314955,214,0 +170768315003,215,0 +170768315051,215,0 +170768315099,215,0 +170768315148,215,0 +170768315198,216,0 +170768315246,215,0 +170768315294,215,0 +170768315341,215,0 +170768315391,215,0 +170768315439,215,0 +170768315487,215,0 +170768315534,214,0 +170768315582,214,0 +170768315632,214,0 +170768315680,214,0 +170768315728,214,0 +170768315775,215,0 +170768315823,214,0 +170768315871,214,0 +170768315919,215,0 +170768315967,215,0 +170768316015,215,0 +170768316062,215,0 +170768316110,215,0 +170768316158,215,0 +170768316206,215,0 +170768316254,215,0 +170768316302,215,0 +170768316350,215,0 +170768316397,214,0 +170768316445,214,0 +170768316493,214,0 +170768316541,214,0 +170768316589,215,0 +170768316637,215,0 +170768316684,215,0 +170768316732,215,0 +170768316780,215,0 +170768316828,215,0 +170768316876,215,0 +170768316924,215,0 +170768316972,215,0 +170768317020,215,0 +170768317068,215,0 +170768317116,215,0 +170768317165,215,0 +170768317215,215,0 +170768317263,214,0 +170768317312,214,0 +170768317362,214,0 +170768317410,214,0 +170768317458,214,0 +170768317506,214,0 +170768317555,214,0 +170768317605,215,0 +170768317652,215,0 +170768317702,215,0 +170768317750,215,0 +170768317798,215,0 +170768317847,215,0 +170768317895,215,0 +170768317943,215,0 +170768317990,215,0 +170768318038,215,0 +170768318086,213,0 +170768318134,213,0 +170768318182,213,0 +170768318229,213,0 +170768318279,214,0 +170768318327,214,0 +170768318376,214,0 +170768318424,214,0 +170768318472,214,0 +170768318521,214,0 +170768318569,214,0 +170768318617,215,0 +170768318665,215,0 +170768318713,215,0 +170768318761,215,0 +170768318808,215,0 +170768318856,215,0 +170768318904,215,0 +170768318952,214,0 +170768319000,213,0 +170768319048,213,0 +170768319096,214,0 +170768319143,214,0 +170768319191,214,0 +170768319241,214,0 +170768319288,214,0 +170768319336,215,0 +170768319384,215,0 +170768319432,215,0 +170768319480,215,0 +170768319528,215,0 +170768319575,215,0 +170768319623,215,0 +170768319671,215,0 +170768319719,215,0 +170768319767,215,0 +170768319815,213,0 +170768319863,213,0 +170768319911,213,0 +170768319959,213,0 +170768320006,214,0 +170768320054,214,0 +170768320102,214,0 +170768320150,214,0 +170768320198,214,0 +170768320246,214,0 +170768320293,215,0 +170768320341,215,0 +170768320391,215,0 +170768320438,215,0 +170768320486,215,0 +170768320534,215,0 +170768320582,215,0 +170768320630,215,0 +170768320677,213,0 +170768320725,213,0 +170768320773,214,0 +170768320821,213,0 +170768320869,213,0 +170768320917,214,0 +170768320966,214,0 +170768321014,214,0 +170768321062,214,0 +170768321110,214,0 +170768321158,214,0 +170768321206,215,0 +170768321254,215,0 +170768321301,215,0 +170768321349,215,0 +170768321397,215,0 +170768321445,215,0 +170768321495,215,0 +170768321543,213,0 +170768321591,213,0 +170768321639,214,0 +170768321687,214,0 +170768321735,214,0 +170768321782,214,0 +170768321832,214,0 +170768321880,214,0 +170768321928,215,0 +170768321976,215,0 +170768322024,215,0 +170768322072,215,0 +170768322119,215,0 +170768322169,215,0 +170768322217,215,0 +170768322265,215,0 +170768322314,215,0 +170768322363,214,0 +170768322411,213,0 +170768322461,214,0 +170768322509,214,0 +170768322558,214,0 +170768322606,214,0 +170768322656,214,0 +170768322704,214,0 +170768322752,215,0 +170768322800,215,0 +170768322848,216,0 +170768322897,215,0 +170768322945,215,0 +170768322993,215,0 +170768323041,215,0 +170768323090,215,0 +170768323138,215,0 +170768323186,215,0 +170768323234,214,0 +170768323283,213,0 +170768323331,214,0 +170768323379,214,0 +170768323428,214,0 +170768323476,214,0 +170768323524,214,0 +170768323574,214,0 +170768323623,215,0 +170768323671,215,0 +170768323719,215,0 +170768323767,215,0 +170768323814,215,0 +170768323862,215,0 +170768323910,215,0 +170768323958,215,0 +170768324005,215,0 +170768324053,214,0 +170768324101,213,0 +170768324149,213,0 +170768324197,213,0 +170768324246,214,0 +170768324294,214,0 +170768324342,214,0 +170768324390,214,0 +170768324437,214,0 +170768324485,214,0 +170768324533,214,0 +170768324583,214,0 +170768324630,214,0 +170768324680,214,0 +170768324728,215,0 +170768324776,214,0 +170768324824,215,0 +170768324871,215,0 +170768324919,214,0 +170768324967,213,0 +170768325017,213,0 +170768325066,213,0 +170768325114,214,0 +170768325162,214,0 +170768325211,214,0 +170768325259,214,0 +170768325307,214,0 +170768325355,214,0 +170768325403,215,0 +170768325451,215,0 +170768325499,215,0 +170768325547,215,0 +170768325596,215,0 +170768325644,215,0 +170768325692,215,0 +170768325740,215,0 +170768325787,214,0 +170768325835,214,0 +170768325883,214,0 +170768325931,214,0 +170768325979,214,0 +170768326027,214,0 +170768326075,215,0 +170768326123,214,0 +170768326170,214,0 +170768326220,215,0 +170768326268,215,0 +170768326317,215,0 +170768326365,215,0 +170768326413,215,0 +170768326463,215,0 +170768326510,215,0 +170768326558,215,0 +170768326606,216,0 +170768326654,214,0 +170768326704,214,0 +170768326752,215,0 +170768326800,214,0 +170768326847,215,0 +170768326897,215,0 +170768326945,215,0 +170768326994,215,0 +170768327042,215,0 +170768327090,215,0 +170768327138,215,0 +170768327186,215,0 +170768327234,215,0 +170768327282,215,0 +170768327330,215,0 +170768327379,215,0 +170768327427,215,0 +170768327475,215,0 +170768327524,215,0 +170768327572,214,0 +170768327620,215,0 +170768327668,215,0 +170768327716,215,0 +170768327765,215,0 +170768327813,215,0 +170768327861,215,0 +170768327909,215,0 +170768327959,215,0 +170768328007,215,0 +170768328055,216,0 +170768328104,217,0 +170768328152,216,0 +170768328202,215,0 +170768328249,215,0 +170768328297,215,0 +170768328347,214,0 +170768328395,214,0 +170768328442,214,0 +170768328490,214,0 +170768328538,214,0 +170768328588,214,0 +170768328636,214,0 +170768328683,214,0 +170768328733,215,0 +170768328781,215,0 +170768328830,215,0 +170768328878,215,0 +170768328928,215,0 +170768328977,215,0 +170768329025,215,0 +170768329074,216,0 +170768329122,215,0 +170768329172,215,0 +170768329220,213,0 +170768329267,214,0 +170768329315,214,0 +170768329363,214,0 +170768329412,214,0 +170768329460,214,0 +170768329508,214,0 +170768329556,214,0 +170768329604,214,0 +170768329652,215,0 +170768329700,215,0 +170768329747,215,0 +170768329797,215,0 +170768329845,215,0 +170768329893,215,0 +170768329941,215,0 +170768329989,215,0 +170768330037,214,0 +170768330085,213,0 +170768330134,213,0 +170768330182,213,0 +170768330230,213,0 +170768330278,213,0 +170768330326,214,0 +170768330373,214,0 +170768330421,214,0 +170768330471,214,0 +170768330519,214,0 +170768330567,214,0 +170768330615,215,0 +170768330662,215,0 +170768330712,215,0 +170768330760,215,0 +170768330809,215,0 +170768330857,215,0 +170768330905,214,0 +170768330953,213,0 +170768331001,213,0 +170768331049,213,0 +170768331096,214,0 +170768331144,213,0 +170768331192,214,0 +170768331242,214,0 +170768331289,214,0 +170768331337,214,0 +170768331385,214,0 +170768331433,215,0 +170768331482,215,0 +170768331530,215,0 +170768331578,215,0 +170768331628,215,0 +170768331676,215,0 +170768331724,215,0 +170768331772,214,0 +170768331819,213,0 +170768331867,213,0 +170768331915,214,0 +170768331963,214,0 +170768332011,214,0 +170768332059,214,0 +170768332107,214,0 +170768332155,214,0 +170768332203,214,0 +170768332250,215,0 +170768332298,215,0 +170768332348,215,0 +170768332396,215,0 +170768332444,215,0 +170768332492,215,0 +170768332541,215,0 +170768332589,215,0 +170768332637,213,0 +170768332686,213,0 +170768332734,214,0 +170768332782,214,0 +170768332830,214,0 +170768332879,214,0 +170768332927,214,0 +170768332976,214,0 +170768333024,214,0 +170768333072,215,0 +170768333120,215,0 +170768333168,215,0 +170768333215,215,0 +170768333263,215,0 +170768333313,215,0 +170768333360,215,0 +170768333408,215,0 +170768333456,215,0 +170768333504,213,0 +170768333553,213,0 +170768333601,213,0 +170768333651,213,0 +170768333699,213,0 +170768333748,214,0 +170768333796,214,0 +170768333844,214,0 +170768333892,214,0 +170768333940,214,0 +170768333987,215,0 +170768334037,215,0 +170768334086,215,0 +170768334134,214,0 +170768334182,215,0 +170768334232,215,0 +170768334280,215,0 +170768334327,214,0 +170768334375,213,0 +170768334423,213,0 +170768334471,213,0 +170768334521,213,0 +170768334569,213,0 +170768334618,213,0 +170768334666,213,0 +170768334714,213,0 +170768334763,214,0 +170768334811,214,0 +170768334859,214,0 +170768334907,214,0 +170768334955,214,0 +170768335003,214,0 +170768335053,214,0 +170768335101,214,0 +170768335148,215,0 +170768335196,213,0 +170768335244,213,0 +170768335292,213,0 +170768335342,213,0 +170768335391,213,0 +170768335439,213,0 +170768335487,213,0 +170768335535,213,0 +170768335585,214,0 +170768335634,214,0 +170768335682,214,0 +170768335730,214,0 +170768335778,214,0 +170768335827,214,0 +170768335875,215,0 +170768335923,215,0 +170768335972,215,0 +170768336020,215,0 +170768336068,213,0 +170768336118,213,0 +170768336166,214,0 +170768336213,213,0 +170768336261,214,0 +170768336309,214,0 +170768336359,214,0 +170768336406,214,0 +170768336454,214,0 +170768336504,214,0 +170768336552,214,0 +170768336599,215,0 +170768336647,215,0 +170768336697,215,0 +170768336745,215,0 +170768336793,215,0 +170768336841,215,0 +170768336889,214,0 +170768336937,213,0 +170768336985,214,0 +170768337033,214,0 +170768337081,214,0 +170768337129,214,0 +170768337176,214,0 +170768337226,214,0 +170768337274,214,0 +170768337323,215,0 +170768337371,215,0 +170768337419,215,0 +170768337467,215,0 +170768337515,215,0 +170768337563,215,0 +170768337610,215,0 +170768337658,215,0 +170768337708,215,0 +170768337756,214,0 +170768337804,213,0 +170768337851,213,0 +170768337899,214,0 +170768337947,214,0 +170768337996,214,0 +170768338046,214,0 +170768338094,214,0 +170768338141,215,0 +170768338189,215,0 +170768338237,215,0 +170768338287,215,0 +170768338335,215,0 +170768338383,215,0 +170768338432,215,0 +170768338480,215,0 +170768338528,215,0 +170768338577,215,0 +170768338625,215,0 +170768338673,215,0 +170768338721,215,0 +170768338769,215,0 +170768338818,215,0 +170768338866,215,0 +170768338914,215,0 +170768338963,215,0 +170768339011,215,0 +170768339061,214,0 +170768339109,214,0 +170768339157,214,0 +170768339205,215,0 +170768339254,215,0 +170768339302,214,0 +170768339352,215,0 +170768339401,215,0 +170768339449,215,0 +170768339499,215,0 +170768339547,216,0 +170768339596,215,0 +170768339646,215,0 +170768339694,215,0 +170768339741,215,0 +170768339789,215,0 +170768339837,215,0 +170768339887,214,0 +170768339936,214,0 +170768339985,214,0 +170768340035,214,0 +170768340083,214,0 +170768340132,214,0 +170768340180,214,0 +170768340228,215,0 +170768340278,215,0 +170768340326,215,0 +170768340373,215,0 +170768340421,215,0 +170768340471,215,0 +170768340519,215,0 +170768340567,215,0 +170768340616,215,0 +170768340666,215,0 +170768340713,215,0 +170768340761,214,0 +170768340809,214,0 +170768340857,214,0 +170768340907,214,0 +170768340955,214,0 +170768341002,214,0 +170768341050,215,0 +170768341100,215,0 +170768341148,215,0 +170768341196,215,0 +170768341245,215,0 +170768341293,215,0 +170768341341,215,0 +170768341391,215,0 +170768341439,215,0 +170768341487,215,0 +170768341535,215,0 +170768341584,215,0 +170768341632,214,0 +170768341680,214,0 +170768341728,214,0 +170768341777,214,0 +170768341825,214,0 +170768341875,214,0 +170768341923,214,0 +170768341971,215,0 +170768342018,215,0 +170768342066,215,0 +170768342114,215,0 +170768342162,215,0 +170768342211,215,0 +170768342259,215,0 +170768342307,215,0 +170768342355,215,0 +170768342403,215,0 +170768342451,214,0 +170768342499,213,0 +170768342547,213,0 +170768342595,214,0 +170768342642,214,0 +170768342690,214,0 +170768342740,214,0 +170768342789,214,0 +170768342839,215,0 +170768342888,215,0 +170768342938,215,0 +170768342986,215,0 +170768343034,215,0 +170768343081,215,0 +170768343129,215,0 +170768343177,215,0 +170768343225,215,0 +170768343275,215,0 +170768343323,213,0 +170768343372,213,0 +170768343420,213,0 +170768343468,214,0 +170768343516,213,0 +170768343564,214,0 +170768343611,214,0 +170768343659,214,0 +170768343707,214,0 +170768343755,214,0 +170768343804,214,0 +170768343852,215,0 +170768343900,215,0 +170768343948,215,0 +170768343997,215,0 +170768344045,215,0 +170768344093,215,0 +170768344141,215,0 +170768344191,213,0 +170768344238,213,0 +170768344286,213,0 +170768344334,213,0 +170768344382,213,0 +170768344430,213,0 +170768344479,213,0 +170768344527,213,0 +170768344577,214,0 +170768344625,214,0 +170768344674,214,0 +170768344722,214,0 +170768344771,214,0 +170768344819,214,0 +170768344867,214,0 +170768344917,215,0 +170768344965,215,0 +170768345013,213,0 +170768345061,213,0 +170768345110,213,0 +170768345158,213,0 +170768345206,213,0 +170768345254,213,0 +170768345302,213,0 +170768345350,214,0 +170768345399,214,0 +170768345447,214,0 +170768345497,214,0 +170768345546,214,0 +170768345594,215,0 +170768345644,214,0 +170768345691,215,0 +170768345739,215,0 +170768345789,215,0 +170768345839,215,0 +170768345887,213,0 +170768345936,213,0 +170768345984,213,0 +170768346033,214,0 +170768346081,214,0 +170768346129,214,0 +170768346177,214,0 +170768346225,214,0 +170768346274,214,0 +170768346322,214,0 +170768346370,214,0 +170768346418,214,0 +170768346466,215,0 +170768346514,215,0 +170768346562,215,0 +170768346609,215,0 +170768346659,215,0 +170768346707,215,0 +170768346755,213,0 +170768346803,213,0 +170768346851,213,0 +170768346900,214,0 +170768346948,214,0 +170768346998,214,0 +170768347045,214,0 +170768347093,214,0 +170768347141,214,0 +170768347189,214,0 +170768347237,214,0 +170768347287,215,0 +170768347334,215,0 +170768347384,215,0 +170768347432,215,0 +170768347480,215,0 +170768347528,215,0 +170768347576,215,0 +170768347623,213,0 +170768347671,213,0 +170768347719,213,0 +170768347767,213,0 +170768347817,213,0 +170768347865,214,0 +170768347913,214,0 +170768347962,214,0 +170768348012,214,0 +170768348060,214,0 +170768348108,215,0 +170768348156,214,0 +170768348205,215,0 +170768348253,215,0 +170768348301,215,0 +170768348349,215,0 +170768348398,215,0 +170768348446,214,0 +170768348494,213,0 +170768348542,213,0 +170768348592,214,0 +170768348641,214,0 +170768348691,214,0 +170768348739,214,0 +170768348788,214,0 +170768348836,214,0 +170768348884,214,0 +170768348933,214,0 +170768348980,215,0 +170768349028,215,0 +170768349076,215,0 +170768349126,215,0 +170768349174,215,0 +170768349222,215,0 +170768349271,215,0 +170768349319,213,0 +170768349367,213,0 +170768349416,214,0 +170768349466,213,0 +170768349514,214,0 +170768349563,214,0 +170768349611,214,0 +170768349659,214,0 +170768349707,214,0 +170768349755,214,0 +170768349803,214,0 +170768349851,215,0 +170768349899,215,0 +170768349947,215,0 +170768349995,215,0 +170768350043,215,0 +170768350092,215,0 +170768350140,215,0 +170768350188,213,0 +170768350236,213,0 +170768350284,214,0 +170768350332,214,0 +170768350380,214,0 +170768350429,214,0 +170768350477,214,0 +170768350527,214,0 +170768350576,214,0 +170768350624,215,0 +170768350672,215,0 +170768350720,215,0 +170768350768,215,0 +170768350816,215,0 +170768350865,215,0 +170768350915,215,0 +170768350964,215,0 +170768351012,214,0 +170768351062,213,0 +170768351111,214,0 +170768351159,214,0 +170768351207,214,0 +170768351254,214,0 +170768351302,214,0 +170768351350,214,0 +170768351398,214,0 +170768351446,215,0 +170768351494,215,0 +170768351541,215,0 +170768351589,215,0 +170768351637,215,0 +170768351687,215,0 +170768351734,215,0 +170768351782,215,0 +170768351830,215,0 +170768351878,214,0 +170768351926,214,0 +170768351973,214,0 +170768352021,214,0 +170768352069,214,0 +170768352117,215,0 +170768352166,214,0 +170768352214,215,0 +170768352262,215,0 +170768352310,215,0 +170768352358,215,0 +170768352405,215,0 +170768352453,215,0 +170768352503,215,0 +170768352550,215,0 +170768352598,215,0 +170768352646,215,0 +170768352694,215,0 +170768352742,214,0 +170768352791,214,0 +170768352839,214,0 +170768352887,214,0 +170768352935,214,0 +170768352983,214,0 +170768353030,214,0 +170768353078,214,0 +170768353126,214,0 +170768353174,214,0 +170768353222,215,0 +170768353269,215,0 +170768353319,215,0 +170768353367,215,0 +170768353415,215,0 +170768353462,215,0 +170768353510,215,0 +170768353558,215,0 +170768353606,213,0 +170768353654,213,0 +170768353701,213,0 +170768353749,213,0 +170768353797,214,0 +170768353845,214,0 +170768353893,214,0 +170768353941,214,0 +170768353990,214,0 +170768354040,215,0 +170768354088,215,0 +170768354135,215,0 +170768354183,215,0 +170768354231,215,0 +170768354281,215,0 +170768354329,215,0 +170768354378,215,0 +170768354426,214,0 +170768354474,213,0 +170768354523,213,0 +170768354571,213,0 +170768354621,213,0 +170768354669,214,0 +170768354717,214,0 +170768354765,214,0 +170768354814,214,0 +170768354862,214,0 +170768354911,214,0 +170768354961,214,0 +170768355009,214,0 +170768355058,215,0 +170768355106,215,0 +170768355154,215,0 +170768355204,214,0 +170768355252,215,0 +170768355299,214,0 +170768355347,213,0 +170768355395,213,0 +170768355445,213,0 +170768355493,214,0 +170768355540,213,0 +170768355588,214,0 +170768355636,214,0 +170768355684,214,0 +170768355732,214,0 +170768355780,214,0 +170768355828,214,0 +170768355877,215,0 +170768355925,215,0 +170768355973,215,0 +170768356020,215,0 +170768356068,215,0 +170768356116,215,0 +170768356164,214,0 +170768356211,213,0 +170768356261,214,0 +170768356309,214,0 +170768356356,214,0 +170768356404,214,0 +170768356452,214,0 +170768356500,214,0 +170768356548,215,0 +170768356596,215,0 +170768356643,215,0 +170768356691,215,0 +170768356739,215,0 +170768356788,215,0 +170768356836,215,0 +170768356886,215,0 +170768356934,215,0 +170768356982,215,0 +170768357030,213,0 +170768357077,213,0 +170768357125,214,0 +170768357173,214,0 +170768357221,214,0 +170768357269,214,0 +170768357317,214,0 +170768357364,214,0 +170768357412,214,0 +170768357460,215,0 +170768357508,215,0 +170768357556,215,0 +170768357604,215,0 +170768357651,215,0 +170768357699,215,0 +170768357749,215,0 +170768357797,215,0 +170768357844,214,0 +170768357892,213,0 +170768357940,213,0 +170768357988,214,0 +170768358036,214,0 +170768358083,214,0 +170768358131,214,0 +170768358179,214,0 +170768358227,214,0 +170768358275,214,0 +170768358323,215,0 +170768358370,215,0 +170768358418,215,0 +170768358466,215,0 +170768358514,215,0 +170768358562,215,0 +170768358610,215,0 +170768358657,215,0 +170768358705,214,0 +170768358754,213,0 +170768358802,214,0 +170768358850,213,0 +170768358898,214,0 +170768358946,214,0 +170768358994,214,0 +170768359042,214,0 +170768359089,214,0 +170768359137,215,0 +170768359185,214,0 +170768359233,215,0 +170768359281,215,0 +170768359330,215,0 +170768359378,215,0 +170768359428,215,0 +170768359476,215,0 +170768359524,215,0 +170768359573,214,0 +170768359621,213,0 +170768359669,213,0 +170768359717,214,0 +170768359766,214,0 +170768359814,214,0 +170768359864,214,0 +170768359912,214,0 +170768359960,214,0 +170768360009,214,0 +170768360057,214,0 +170768360105,215,0 +170768360153,215,0 +170768360201,215,0 +170768360248,215,0 +170768360296,215,0 +170768360344,215,0 +170768360392,215,0 +170768360440,213,0 +170768360490,213,0 +170768360539,214,0 +170768360587,214,0 +170768360637,214,0 +170768360685,214,0 +170768360733,214,0 +170768360782,214,0 +170768360832,214,0 +170768360881,215,0 +170768360929,214,0 +170768360977,215,0 +170768361025,215,0 +170768361073,215,0 +170768361122,215,0 +170768361170,215,0 +170768361218,215,0 +170768361266,215,0 +170768361316,213,0 +170768361364,214,0 +170768361412,214,0 +170768361460,214,0 +170768361507,214,0 +170768361555,214,0 +170768361603,214,0 +170768361651,214,0 +170768361699,214,0 +170768361747,215,0 +170768361794,215,0 +170768361844,215,0 +170768361892,215,0 +170768361940,215,0 +170768361987,215,0 +170768362035,215,0 +170768362083,215,0 +170768362131,214,0 +170768362179,214,0 +170768362226,214,0 +170768362274,214,0 +170768362322,214,0 +170768362372,214,0 +170768362421,214,0 +170768362469,214,0 +170768362517,215,0 +170768362565,215,0 +170768362613,215,0 +170768362663,215,0 +170768362711,215,0 +170768362758,215,0 +170768362806,215,0 +170768362854,215,0 +170768362902,215,0 +170768362950,215,0 +170768362997,214,0 +170768363047,214,0 +170768363095,214,0 +170768363143,214,0 +170768363190,214,0 +170768363238,214,0 +170768363286,214,0 +170768363334,214,0 +170768363383,215,0 +170768363431,215,0 +170768363479,215,0 +170768363527,215,0 +170768363575,215,0 +170768363623,215,0 +170768363670,215,0 +170768363718,215,0 +170768363768,215,0 +170768363816,215,0 +170768363863,214,0 +170768363911,214,0 +170768363959,214,0 +170768364007,214,0 +170768364055,214,0 +170768364103,214,0 +170768364151,214,0 +170768364198,214,0 +170768364246,215,0 +170768364294,215,0 +170768364342,215,0 +170768364390,215,0 +170768364438,215,0 +170768364486,215,0 +170768364533,215,0 +170768364581,215,0 +170768364629,215,0 +170768364677,215,0 +170768364725,214,0 +170768364773,214,0 +170768364821,214,0 +170768364868,214,0 +170768364916,214,0 +170768364964,214,0 +170768365012,214,0 +170768365060,214,0 +170768365108,214,0 +170768365156,215,0 +170768365203,215,0 +170768365251,215,0 +170768365299,215,0 +170768365347,215,0 +170768365397,215,0 +170768365445,215,0 +170768365493,215,0 +170768365541,214,0 +170768365589,213,0 +170768365637,213,0 +170768365686,213,0 +170768365734,213,0 +170768365782,214,0 +170768365831,214,0 +170768365879,214,0 +170768365929,214,0 +170768365978,214,0 +170768366028,215,0 +170768366075,215,0 +170768366123,215,0 +170768366173,215,0 +170768366221,215,0 +170768366270,215,0 +170768366318,215,0 +170768366366,215,0 +170768366414,214,0 +170768366462,213,0 +170768366510,214,0 +170768366557,214,0 +170768366605,214,0 +170768366653,214,0 +170768366701,214,0 +170768366749,214,0 +170768366797,215,0 +170768366845,215,0 +170768366893,215,0 +170768366942,215,0 +170768366992,215,0 +170768367041,215,0 +170768367091,215,0 +170768367140,215,0 +170768367188,215,0 +170768367236,214,0 +170768367284,214,0 +170768367332,213,0 +170768367381,213,0 +170768367429,214,0 +170768367477,214,0 +170768367525,214,0 +170768367574,214,0 +170768367624,214,0 +170768367672,214,0 +170768367721,215,0 +170768367771,215,0 +170768367820,215,0 +170768367868,215,0 +170768367916,215,0 +170768367964,215,0 +170768368012,215,0 +170768368060,215,0 +170768368109,215,0 +170768368157,213,0 +170768368205,213,0 +170768368253,213,0 +170768368301,213,0 +170768368349,214,0 +170768368396,214,0 +170768368444,214,0 +170768368492,214,0 +170768368540,214,0 +170768368588,214,0 +170768368636,214,0 +170768368684,215,0 +170768368732,215,0 +170768368779,214,0 +170768368827,215,0 +170768368875,215,0 +170768368923,215,0 +170768368971,213,0 +170768369019,213,0 +170768369067,213,0 +170768369115,213,0 +170768369163,213,0 +170768369211,213,0 +170768369260,213,0 +170768369308,213,0 +170768369356,213,0 +170768369404,213,0 +170768369452,213,0 +170768369500,214,0 +170768369547,214,0 +170768369595,214,0 +170768369643,214,0 +170768369691,214,0 +170768369739,214,0 +170768369787,215,0 +170768369835,213,0 +170768369884,213,0 +170768369934,213,0 +170768369982,214,0 +170768370030,214,0 +170768370077,214,0 +170768370125,214,0 +170768370173,214,0 +170768370221,214,0 +170768370269,214,0 +170768370317,214,0 +170768370365,215,0 +170768370412,214,0 +170768370460,215,0 +170768370510,215,0 +170768370558,215,0 +170768370605,215,0 +170768370655,214,0 +170768370703,213,0 +170768370751,213,0 +170768370799,213,0 +170768370847,214,0 +170768370896,214,0 +170768370944,214,0 +170768370992,214,0 +170768371040,214,0 +170768371088,215,0 +170768371135,214,0 +170768371183,215,0 +170768371231,215,0 +170768371279,215,0 +170768371327,215,0 +170768371375,215,0 +170768371423,215,0 +170768371471,215,0 +170768371520,214,0 +170768371568,213,0 +170768371618,213,0 +170768371666,213,0 +170768371714,214,0 +170768371761,214,0 +170768371811,214,0 +170768371860,214,0 +170768371908,214,0 +170768371958,214,0 +170768372007,215,0 +170768372055,215,0 +170768372105,215,0 +170768372153,215,0 +170768372201,215,0 +170768372249,215,0 +170768372296,215,0 +170768372344,214,0 +170768372392,213,0 +170768372440,213,0 +170768372489,213,0 +170768372539,214,0 +170768372587,214,0 +170768372635,214,0 +170768372684,214,0 +170768372732,214,0 +170768372782,214,0 +170768372831,215,0 +170768372879,215,0 +170768372927,215,0 +170768372975,215,0 +170768373023,215,0 +170768373071,215,0 +170768373118,215,0 +170768373166,215,0 +170768373216,214,0 +170768373265,213,0 +170768373313,213,0 +170768373361,214,0 +170768373411,214,0 +170768373459,214,0 +170768373507,214,0 +170768373555,214,0 +170768373604,214,0 +170768373652,214,0 +170768373701,214,0 +170768373749,215,0 +170768373797,215,0 +170768373847,215,0 +170768373895,215,0 +170768373943,215,0 +170768373992,215,0 +170768374040,215,0 +170768374089,214,0 +170768374139,214,0 +170768374188,214,0 +170768374238,214,0 +170768374286,214,0 +170768374334,214,0 +170768374382,214,0 +170768374430,214,0 +170768374478,214,0 +170768374526,215,0 +170768374574,215,0 +170768374623,215,0 +170768374671,214,0 +170768374719,215,0 +170768374767,215,0 +170768374816,215,0 +170768374864,215,0 +170768374912,215,0 +170768374960,214,0 +170768375008,214,0 +170768375056,214,0 +170768375104,214,0 +170768375152,214,0 +170768375200,214,0 +170768375248,215,0 +170768375297,215,0 +170768375345,215,0 +170768375393,215,0 +170768375441,215,0 +170768375489,215,0 +170768375538,215,0 +170768375588,215,0 +170768375636,215,0 +170768375685,215,0 +170768375733,215,0 +170768375781,215,0 +170768375829,214,0 +170768375877,214,0 +170768375927,214,0 +170768375975,214,0 +170768376023,214,0 +170768376071,214,0 +170768376119,215,0 +170768376167,215,0 +170768376216,215,0 +170768376264,215,0 +170768376312,215,0 +170768376361,215,0 +170768376411,215,0 +170768376460,215,0 +170768376508,215,0 +170768376556,215,0 +170768376604,215,0 +170768376652,214,0 +170768376702,214,0 +170768376750,214,0 +170768376799,214,0 +170768376847,214,0 +170768376895,214,0 +170768376944,214,0 +170768376992,215,0 +170768377040,215,0 +170768377088,215,0 +170768377136,215,0 +170768377184,215,0 +170768377234,215,0 +170768377283,215,0 +170768377331,215,0 +170768377379,215,0 +170768377427,215,0 +170768377475,215,0 +170768377524,214,0 +170768377574,214,0 +170768377622,214,0 +170768377670,214,0 +170768377719,214,0 +170768377767,214,0 +170768377815,214,0 +170768377863,214,0 +170768377913,215,0 +170768377960,215,0 +170768378010,215,0 +170768378058,215,0 +170768378107,215,0 +170768378157,215,0 +170768378207,215,0 +170768378256,215,0 +170768378306,215,0 +170768378353,214,0 +170768378403,213,0 +170768378451,213,0 +170768378499,214,0 +170768378548,214,0 +170768378596,214,0 +170768378644,214,0 +170768378692,214,0 +170768378740,214,0 +170768378788,214,0 +170768378836,215,0 +170768378884,215,0 +170768378933,215,0 +170768378981,215,0 +170768379029,215,0 +170768379077,215,0 +170768379125,215,0 +170768379172,215,0 +170768379222,213,0 +170768379270,213,0 +170768379319,213,0 +170768379367,213,0 +170768379417,213,0 +170768379465,213,0 +170768379514,214,0 +170768379562,214,0 +170768379611,214,0 +170768379661,214,0 +170768379709,214,0 +170768379757,215,0 +170768379805,215,0 +170768379853,214,0 +170768379902,215,0 +170768379950,215,0 +170768380000,215,0 +170768380048,215,0 +170768380096,213,0 +170768380143,213,0 +170768380193,213,0 +170768380241,213,0 +170768380289,213,0 +170768380338,213,0 +170768380386,214,0 +170768380434,214,0 +170768380484,214,0 +170768380532,214,0 +170768380580,214,0 +170768380628,214,0 +170768380676,214,0 +170768380724,215,0 +170768380773,214,0 +170768380823,215,0 +170768380872,215,0 +170768380920,213,0 +170768380970,213,0 +170768381019,213,0 +170768381067,213,0 +170768381115,214,0 +170768381163,214,0 +170768381211,214,0 +170768381259,214,0 +170768381309,214,0 +170768381357,214,0 +170768381404,214,0 +170768381452,215,0 +170768381500,215,0 +170768381550,215,0 +170768381599,215,0 +170768381647,215,0 +170768381695,215,0 +170768381743,215,0 +170768381791,213,0 +170768381839,213,0 +170768381887,213,0 +170768381937,213,0 +170768381985,214,0 +170768382032,214,0 +170768382081,214,0 +170768382130,214,0 +170768382178,214,0 +170768382226,214,0 +170768382276,215,0 +170768382323,215,0 +170768382371,215,0 +170768382419,215,0 +170768382467,215,0 +170768382517,215,0 +170768382565,215,0 +170768382614,214,0 +170768382662,213,0 +170768382710,213,0 +170768382758,213,0 +170768382806,213,0 +170768382854,213,0 +170768382902,213,0 +170768382952,214,0 +170768383000,214,0 +170768383047,214,0 +170768383095,214,0 +170768383143,214,0 +170768383191,214,0 +170768383241,214,0 +170768383289,215,0 +170768383337,214,0 +170768383385,215,0 +170768383433,215,0 +170768383482,213,0 +170768383530,213,0 +170768383578,213,0 +170768383627,213,0 +170768383675,213,0 +170768383723,213,0 +170768383771,214,0 +170768383819,214,0 +170768383867,214,0 +170768383916,214,0 +170768383964,214,0 +170768384012,214,0 +170768384060,215,0 +170768384108,215,0 +170768384158,214,0 +170768384206,215,0 +170768384255,215,0 +170768384303,215,0 +170768384351,213,0 +170768384399,213,0 +170768384448,214,0 +170768384496,214,0 +170768384544,214,0 +170768384592,214,0 +170768384640,214,0 +170768384687,214,0 +170768384737,214,0 +170768384785,214,0 +170768384834,214,0 +170768384884,214,0 +170768384933,215,0 +170768384983,215,0 +170768385032,214,0 +170768385082,215,0 +170768385130,215,0 +170768385178,215,0 +170768385225,213,0 +170768385273,213,0 +170768385321,213,0 +170768385369,214,0 +170768385419,214,0 +170768385467,214,0 +170768385515,214,0 +170768385564,214,0 +170768385612,214,0 +170768385660,215,0 +170768385708,215,0 +170768385756,215,0 +170768385804,215,0 +170768385852,215,0 +170768385900,215,0 +170768385949,215,0 +170768385997,215,0 +170768386045,214,0 +170768386094,214,0 +170768386144,214,0 +170768386192,214,0 +170768386241,214,0 +170768386291,214,0 +170768386339,214,0 +170768386387,215,0 +170768386435,215,0 +170768386483,215,0 +170768386532,215,0 +170768386582,215,0 +170768386630,215,0 +170768386679,215,0 +170768386727,215,0 +170768386777,215,0 +170768386824,215,0 +170768386872,215,0 +170768386920,214,0 +170768386968,214,0 +170768387016,214,0 +170768387063,214,0 +170768387111,215,0 +170768387159,215,0 +170768387207,215,0 +170768387255,215,0 +170768387303,215,0 +170768387352,215,0 +170768387400,215,0 +170768387448,215,0 +170768387495,215,0 +170768387543,215,0 +170768387591,215,0 +170768387639,215,0 +170768387687,215,0 +170768387737,214,0 +170768387784,214,0 +170768387832,214,0 +170768387880,214,0 +170768387928,214,0 +170768387976,214,0 +170768388025,214,0 +170768388073,215,0 +170768388121,214,0 +170768388170,215,0 +170768388218,215,0 +170768388266,215,0 +170768388314,215,0 +170768388362,215,0 +170768388411,215,0 +170768388459,215,0 +170768388508,215,0 +170768388556,215,0 +170768388604,214,0 +170768388652,213,0 +170768388700,214,0 +170768388747,214,0 +170768388795,214,0 +170768388843,214,0 +170768388891,214,0 +170768388939,214,0 +170768388987,215,0 +170768389036,215,0 +170768389084,215,0 +170768389132,215,0 +170768389180,215,0 +170768389227,215,0 +170768389275,215,0 +170768389323,215,0 +170768389373,215,0 +170768389421,215,0 +170768389469,214,0 +170768389518,213,0 +170768389566,214,0 +170768389614,214,0 +170768389661,214,0 +170768389711,214,0 +170768389760,214,0 +170768389808,215,0 +170768389856,214,0 +170768389904,215,0 +170768389954,215,0 +170768390001,215,0 +170768390049,215,0 +170768390099,215,0 +170768390147,215,0 +170768390196,215,0 +170768390244,215,0 +170768390294,215,0 +170768390343,213,0 +170768390391,213,0 +170768390439,213,0 +170768390489,214,0 +170768390538,213,0 +170768390586,214,0 +170768390634,214,0 +170768390682,214,0 +170768390730,214,0 +170768390778,214,0 +170768390826,215,0 +170768390874,215,0 +170768390922,215,0 +170768390970,214,0 +170768391019,215,0 +170768391069,215,0 +170768391117,215,0 +170768391165,213,0 +170768391212,213,0 +170768391260,213,0 +170768391308,213,0 +170768391356,213,0 +170768391404,214,0 +170768391452,213,0 +170768391500,214,0 +170768391548,214,0 +170768391598,214,0 +170768391645,214,0 +170768391695,214,0 +170768391744,215,0 +170768391794,215,0 +170768391843,215,0 +170768391891,215,0 +170768391941,215,0 +170768391989,215,0 +170768392038,213,0 +170768392088,213,0 +170768392137,213,0 +170768392185,213,0 +170768392234,213,0 +170768392282,214,0 +170768392330,213,0 +170768392378,214,0 +170768392427,214,0 +170768392475,214,0 +170768392523,214,0 +170768392571,214,0 +170768392619,214,0 +170768392666,214,0 +170768392714,214,0 +170768392762,214,0 +170768392810,214,0 +170768392858,215,0 +170768392906,213,0 +170768392953,213,0 +170768393001,213,0 +170768393049,213,0 +170768393097,213,0 +170768393145,213,0 +170768393192,213,0 +170768393240,214,0 +170768393288,213,0 +170768393336,213,0 +170768393384,214,0 +170768393432,214,0 +170768393479,214,0 +170768393527,214,0 +170768393575,214,0 +170768393623,213,0 +170768393671,214,0 +170768393719,214,0 +170768393766,213,0 +170768393816,213,0 +170768393864,213,0 +170768393912,213,0 +170768393959,213,0 +170768394007,213,0 +170768394057,213,0 +170768394106,213,0 +170768394154,214,0 +170768394204,214,0 +170768394252,214,0 +170768394299,214,0 +170768394347,214,0 +170768394397,214,0 +170768394445,214,0 +170768394494,214,0 +170768394542,214,0 +170768394590,213,0 +170768394638,213,0 +170768394686,213,0 +170768394736,213,0 +170768394783,213,0 +170768394831,213,0 +170768394881,214,0 +170768394929,214,0 +170768394977,214,0 +170768395024,214,0 +170768395072,214,0 +170768395120,214,0 +170768395168,215,0 +170768395216,215,0 +170768395263,215,0 +170768395311,215,0 +170768395361,215,0 +170768395409,215,0 +170768395458,213,0 +170768395506,213,0 +170768395554,213,0 +170768395601,213,0 +170768395649,214,0 +170768395697,213,0 +170768395745,214,0 +170768395793,214,0 +170768395841,214,0 +170768395890,214,0 +170768395940,214,0 +170768395989,215,0 +170768396037,215,0 +170768396087,215,0 +170768396135,215,0 +170768396184,214,0 +170768396232,215,0 +170768396280,215,0 +170768396328,214,0 +170768396377,214,0 +170768396425,214,0 +170768396473,214,0 +170768396521,214,0 +170768396569,214,0 +170768396617,214,0 +170768396665,215,0 +170768396714,215,0 +170768396762,215,0 +170768396810,215,0 +170768396858,215,0 +170768396905,215,0 +170768396953,215,0 +170768397003,215,0 +170768397050,215,0 +170768397098,215,0 +170768397146,215,0 +170768397194,214,0 +170768397243,214,0 +170768397293,214,0 +170768397342,214,0 +170768397392,214,0 +170768397440,214,0 +170768397488,214,0 +170768397537,215,0 +170768397585,215,0 +170768397633,215,0 +170768397681,215,0 +170768397730,215,0 +170768397778,215,0 +170768397826,215,0 +170768397876,215,0 +170768397925,214,0 +170768397973,215,0 +170768398021,214,0 +170768398069,214,0 +170768398117,214,0 +170768398164,214,0 +170768398212,214,0 +170768398260,214,0 +170768398308,214,0 +170768398356,214,0 +170768398404,215,0 +170768398451,215,0 +170768398499,215,0 +170768398547,215,0 +170768398595,215,0 +170768398644,215,0 +170768398692,215,0 +170768398740,215,0 +170768398788,215,0 +170768398836,214,0 +170768398884,214,0 +170768398932,214,0 +170768398981,214,0 +170768399029,214,0 +170768399079,214,0 +170768399128,214,0 +170768399178,214,0 +170768399225,215,0 +170768399273,214,0 +170768399321,215,0 +170768399369,215,0 +170768399417,215,0 +170768399465,215,0 +170768399513,216,0 +170768399561,215,0 +170768399610,215,0 +170768399658,215,0 +170768399706,214,0 +170768399755,214,0 +170768399803,214,0 +170768399851,214,0 +170768399901,214,0 +170768399948,214,0 +170768399996,214,0 +170768400044,214,0 +170768400092,215,0 +170768400142,215,0 +170768400190,215,0 +170768400237,215,0 +170768400287,215,0 +170768400336,215,0 +170768400384,215,0 +170768400432,215,0 +170768400480,215,0 +170768400528,214,0 +170768400578,214,0 +170768400626,214,0 +170768400673,214,0 +170768400721,214,0 +170768400769,214,0 +170768400817,214,0 +170768400865,214,0 +170768400913,214,0 +170768400961,215,0 +170768401011,215,0 +170768401059,215,0 +170768401107,215,0 +170768401155,215,0 +170768401204,215,0 +170768401252,215,0 +170768401300,215,0 +170768401348,215,0 +170768401396,214,0 +170768401445,214,0 +170768401493,214,0 +170768401541,214,0 +170768401589,214,0 +170768401639,214,0 +170768401688,214,0 +170768401736,214,0 +170768401784,214,0 +170768401834,215,0 +170768401882,215,0 +170768401931,215,0 +170768401979,215,0 +170768402027,215,0 +170768402075,215,0 +170768402123,215,0 +170768402171,215,0 +170768402220,215,0 +170768402270,214,0 +170768402319,213,0 +170768402369,213,0 +170768402416,213,0 +170768402464,213,0 +170768402512,214,0 +170768402560,214,0 +170768402608,214,0 +170768402656,214,0 +170768402703,214,0 +170768402751,214,0 +170768402801,215,0 +170768402848,215,0 +170768402896,215,0 +170768402944,215,0 +170768402994,215,0 +170768403041,215,0 +170768403091,214,0 +170768403139,213,0 +170768403187,213,0 +170768403234,213,0 +170768403282,213,0 +170768403330,213,0 +170768403378,213,0 +170768403426,213,0 +170768403475,214,0 +170768403525,214,0 +170768403573,214,0 +170768403622,214,0 +170768403670,214,0 +170768403720,214,0 +170768403768,214,0 +170768403815,215,0 +170768403863,215,0 +170768403913,215,0 +170768403961,214,0 +170768404008,213,0 +170768404056,213,0 +170768404106,213,0 +170768404154,213,0 +170768404203,213,0 +170768404251,214,0 +170768404299,214,0 +170768404347,214,0 +170768404396,214,0 +170768404444,214,0 +170768404492,214,0 +170768404540,215,0 +170768404587,214,0 +170768404635,215,0 +170768404683,215,0 +170768404733,215,0 +170768404780,215,0 +170768404828,213,0 +170768404876,213,0 +170768404924,213,0 +170768404972,213,0 +170768405020,213,0 +170768405068,213,0 +170768405115,214,0 +170768405163,214,0 +170768405211,214,0 +170768405259,214,0 +170768405307,214,0 +170768405356,214,0 +170768405406,215,0 +170768405454,215,0 +170768405503,215,0 +170768405553,215,0 +170768405602,215,0 +170768405650,215,0 +170768405698,213,0 +170768405747,213,0 +170768405795,213,0 +170768405843,213,0 +170768405891,213,0 +170768405939,213,0 +170768405989,214,0 +170768406038,214,0 +170768406088,214,0 +170768406136,214,0 +170768406184,215,0 +170768406233,215,0 +170768406281,215,0 +170768406330,214,0 +170768406380,215,0 +170768406429,215,0 +170768406479,215,0 +170768406527,214,0 +170768406576,213,0 +170768406624,212,0 +170768406672,213,0 +170768406720,213,0 +170768406768,213,0 +170768406816,213,0 +170768406865,213,0 +170768406913,213,0 +170768406962,214,0 +170768407010,214,0 +170768407058,214,0 +170768407108,214,0 +170768407155,215,0 +170768407203,215,0 +170768407253,215,0 +170768407302,215,0 +170768407352,215,0 +170768407400,213,0 +170768407448,213,0 +170768407496,213,0 +170768407544,213,0 +170768407592,213,0 +170768407641,213,0 +170768407689,213,0 +170768407737,213,0 +170768407785,214,0 +170768407833,214,0 +170768407881,214,0 +170768407928,214,0 +170768407976,214,0 +170768408024,214,0 +170768408072,214,0 +170768408120,215,0 +170768408169,215,0 +170768408217,215,0 +170768408265,213,0 +170768408315,213,0 +170768408362,213,0 +170768408410,213,0 +170768408460,213,0 +170768408508,213,0 +170768408556,214,0 +170768408603,214,0 +170768408651,214,0 +170768408699,214,0 +170768408747,214,0 +170768408795,214,0 +170768408843,214,0 +170768408890,214,0 +170768408938,214,0 +170768408986,215,0 +170768409034,214,0 +170768409082,214,0 +170768409130,213,0 +170768409177,213,0 +170768409225,213,0 +170768409273,213,0 +170768409321,213,0 +170768409369,214,0 +170768409416,214,0 +170768409466,214,0 +170768409514,214,0 +170768409562,214,0 +170768409610,214,0 +170768409658,214,0 +170768409705,214,0 +170768409755,215,0 +170768409803,215,0 +170768409851,215,0 +170768409900,214,0 +170768409950,213,0 +170768409999,213,0 +170768410047,213,0 +170768410095,214,0 +170768410145,213,0 +170768410192,214,0 +170768410242,214,0 +170768410292,214,0 +170768410341,214,0 +170768410391,214,0 +170768410438,214,0 +170768410488,215,0 +170768410537,215,0 +170768410587,215,0 +170768410635,215,0 +170768410684,215,0 +170768410734,215,0 +170768410781,214,0 +170768410831,214,0 +170768410880,214,0 +170768410928,214,0 +170768410978,214,0 +170768411026,214,0 +170768411075,214,0 +170768411123,214,0 +170768411171,214,0 +170768411221,215,0 +170768411268,215,0 +170768411316,215,0 +170768411364,215,0 +170768411413,215,0 +170768411461,215,0 +170768411509,215,0 +170768411557,215,0 +170768411605,215,0 +170768411654,214,0 +170768411702,214,0 +170768411751,215,0 +170768411799,214,0 +170768411847,214,0 +170768411895,215,0 +170768411943,215,0 +170768411991,215,0 +170768412038,215,0 +170768412086,215,0 +170768412134,215,0 +170768412182,216,0 +170768412230,215,0 +170768412277,215,0 +170768412325,215,0 +170768412373,215,0 +170768412421,215,0 +170768412469,215,0 +170768412517,214,0 +170768412565,214,0 +170768412614,214,0 +170768412662,215,0 +170768412710,214,0 +170768412758,214,0 +170768412807,214,0 +170768412855,215,0 +170768412903,215,0 +170768412953,215,0 +170768413000,215,0 +170768413050,215,0 +170768413098,215,0 +170768413146,215,0 +170768413195,215,0 +170768413243,215,0 +170768413291,215,0 +170768413341,213,0 +170768413390,214,0 +170768413438,214,0 +170768413487,214,0 +170768413535,214,0 +170768413583,214,0 +170768413631,214,0 +170768413679,214,0 +170768413727,214,0 +170768413775,214,0 +170768413822,215,0 +170768413870,215,0 +170768413918,215,0 +170768413968,215,0 +170768414016,215,0 +170768414065,215,0 +170768414115,215,0 +170768414164,215,0 +170768414214,213,0 +170768414263,213,0 +170768414313,213,0 +170768414361,214,0 +170768414410,214,0 +170768414458,214,0 +170768414506,214,0 +170768414554,214,0 +170768414601,214,0 +170768414649,214,0 +170768414697,215,0 +170768414745,215,0 +170768414793,215,0 +170768414841,215,0 +170768414890,215,0 +170768414938,215,0 +170768414986,215,0 +170768415035,215,0 +170768415085,213,0 +170768415133,213,0 +170768415182,213,0 +170768415230,213,0 +170768415278,214,0 +170768415326,214,0 +170768415374,214,0 +170768415421,214,0 +170768415469,214,0 +170768415517,214,0 +170768415565,214,0 +170768415613,215,0 +170768415661,215,0 +170768415708,215,0 +170768415756,215,0 +170768415804,215,0 +170768415852,215,0 +170768415900,214,0 +170768415947,213,0 +170768415995,214,0 +170768416043,214,0 +170768416091,214,0 +170768416138,214,0 +170768416186,214,0 +170768416234,215,0 +170768416282,215,0 +170768416330,215,0 +170768416379,215,0 +170768416427,215,0 +170768416476,215,0 +170768416524,215,0 +170768416574,215,0 +170768416623,215,0 +170768416673,215,0 +170768416721,215,0 +170768416768,214,0 +170768416816,213,0 +170768416864,213,0 +170768416912,214,0 +170768416962,214,0 +170768417010,214,0 +170768417057,214,0 +170768417105,214,0 +170768417153,215,0 +170768417201,215,0 +170768417249,215,0 +170768417297,215,0 +170768417345,215,0 +170768417393,216,0 +170768417441,215,0 +170768417489,215,0 +170768417538,215,0 +170768417588,215,0 +170768417636,213,0 +170768417684,213,0 +170768417731,213,0 +170768417781,213,0 +170768417830,214,0 +170768417880,214,0 +170768417928,214,0 +170768417976,214,0 +170768418025,214,0 +170768418073,214,0 +170768418122,215,0 +170768418170,215,0 +170768418220,215,0 +170768418268,215,0 +170768418316,215,0 +170768418364,215,0 +170768418412,215,0 +170768418459,214,0 +170768418507,213,0 +170768418555,213,0 +170768418605,213,0 +170768418654,213,0 +170768418704,213,0 +170768418751,213,0 +170768418799,214,0 +170768418847,214,0 +170768418895,214,0 +170768418945,214,0 +170768418992,214,0 +170768419040,214,0 +170768419090,214,0 +170768419139,215,0 +170768419187,215,0 +170768419235,215,0 +170768419284,215,0 +170768419332,213,0 +170768419380,213,0 +170768419428,213,0 +170768419478,213,0 +170768419527,213,0 +170768419576,213,0 +170768419624,214,0 +170768419672,214,0 +170768419720,214,0 +170768419768,214,0 +170768419816,214,0 +170768419864,214,0 +170768419912,214,0 +170768419960,214,0 +170768420008,215,0 +170768420056,215,0 +170768420105,215,0 +170768420154,215,0 +170768420204,213,0 +170768420252,213,0 +170768420301,213,0 +170768420349,213,0 +170768420398,213,0 +170768420446,214,0 +170768420494,214,0 +170768420544,213,0 +170768420593,214,0 +170768420641,214,0 +170768420689,214,0 +170768420737,214,0 +170768420785,215,0 +170768420833,215,0 +170768420881,215,0 +170768420930,215,0 +170768420978,215,0 +170768421026,214,0 +170768421074,213,0 +170768421124,213,0 +170768421172,213,0 +170768421220,213,0 +170768421267,213,0 +170768421315,214,0 +170768421365,214,0 +170768421413,214,0 +170768421460,214,0 +170768421508,214,0 +170768421556,215,0 +170768421604,215,0 +170768421652,215,0 +170768421700,215,0 +170768421750,215,0 +170768421797,215,0 +170768421845,215,0 +170768421893,214,0 +170768421941,213,0 +170768421989,213,0 +170768422037,213,0 +170768422086,214,0 +170768422136,214,0 +170768422185,214,0 +170768422235,214,0 +170768422283,214,0 +170768422331,215,0 +170768422379,214,0 +170768422427,215,0 +170768422475,215,0 +170768422523,215,0 +170768422572,215,0 +170768422620,215,0 +170768422668,215,0 +170768422716,214,0 +170768422764,213,0 +170768422811,213,0 +170768422861,214,0 +170768422909,213,0 +170768422957,214,0 +170768423005,214,0 +170768423053,214,0 +170768423101,214,0 +170768423149,214,0 +170768423196,214,0 +170768423244,215,0 +170768423292,215,0 +170768423342,215,0 +170768423390,215,0 +170768423438,215,0 +170768423485,215,0 +170768423533,215,0 +170768423581,214,0 +170768423629,213,0 +170768423677,214,0 +170768423725,214,0 +170768423774,214,0 +170768423822,214,0 +170768423870,214,0 +170768423918,214,0 +170768423967,214,0 +170768424015,215,0 +170768424063,215,0 +170768424111,215,0 +170768424159,215,0 +170768424207,214,0 +170768424255,215,0 +170768424304,215,0 +170768424352,215,0 +170768424400,214,0 +170768424448,214,0 +170768424496,213,0 +170768424544,213,0 +170768424592,214,0 +170768424641,214,0 +170768424689,214,0 +170768424737,214,0 +170768424785,214,0 +170768424834,214,0 +170768424882,215,0 +170768424932,215,0 +170768424980,215,0 +170768425028,215,0 +170768425075,215,0 +170768425123,215,0 +170768425171,215,0 +170768425221,215,0 +170768425270,214,0 +170768425318,213,0 +170768425368,213,0 +170768425417,213,0 +170768425467,214,0 +170768425515,214,0 +170768425564,214,0 +170768425612,214,0 +170768425660,214,0 +170768425708,214,0 +170768425756,215,0 +170768425804,214,0 +170768425851,215,0 +170768425899,215,0 +170768425947,215,0 +170768425996,215,0 +170768426045,215,0 +170768426093,215,0 +170768426141,213,0 +170768426189,213,0 +170768426237,213,0 +170768426284,213,0 +170768426334,214,0 +170768426382,214,0 +170768426430,214,0 +170768426478,214,0 +170768426526,214,0 +170768426573,214,0 +170768426623,214,0 +170768426671,214,0 +170768426719,215,0 +170768426767,215,0 +170768426815,215,0 +170768426862,215,0 +170768426910,215,0 +170768426958,214,0 +170768427008,213,0 +170768427056,213,0 +170768427105,213,0 +170768427155,214,0 +170768427203,214,0 +170768427251,214,0 +170768427300,214,0 +170768427348,214,0 +170768427396,214,0 +170768427444,215,0 +170768427492,215,0 +170768427540,215,0 +170768427587,215,0 +170768427635,215,0 +170768427683,215,0 +170768427731,215,0 +170768427779,214,0 +170768427827,214,0 +170768427875,213,0 +170768427923,213,0 +170768427970,213,0 +170768428018,213,0 +170768428066,213,0 +170768428116,214,0 +170768428163,214,0 +170768428211,214,0 +170768428259,214,0 +170768428307,214,0 +170768428355,214,0 +170768428402,214,0 +170768428450,214,0 +170768428498,214,0 +170768428548,214,0 +170768428595,214,0 +170768428643,215,0 +170768428691,214,0 +170768428739,213,0 +170768428787,213,0 +170768428836,213,0 +170768428884,213,0 +170768428934,213,0 +170768428982,214,0 +170768429031,214,0 +170768429081,214,0 +170768429129,214,0 +170768429178,214,0 +170768429228,214,0 +170768429277,214,0 +170768429327,214,0 +170768429375,214,0 +170768429423,214,0 +170768429472,214,0 +170768429522,214,0 +170768429571,213,0 +170768429619,213,0 +170768429667,213,0 +170768429715,213,0 +170768429763,213,0 +170768429811,213,0 +170768429858,213,0 +170768429906,214,0 +170768429956,214,0 +170768430004,214,0 +170768430053,214,0 +170768430101,214,0 +170768430149,215,0 +170768430197,214,0 +170768430245,214,0 +170768430293,214,0 +170768430342,215,0 +170768430392,214,0 +170768430440,213,0 +170768430488,213,0 +170768430535,213,0 +170768430583,213,0 +170768430631,213,0 +170768430679,213,0 +170768430727,213,0 +170768430775,213,0 +170768430823,213,0 +170768430870,213,0 +170768430918,213,0 +170768430968,213,0 +170768431016,213,0 +170768431063,213,0 +170768431111,213,0 +170768431159,213,0 +170768431209,213,0 +170768431257,213,0 +170768431304,213,0 +170768431354,213,0 +170768431403,213,0 +170768431451,213,0 +170768431499,213,0 +170768431547,213,0 +170768431595,213,0 +170768431645,213,0 +170768431693,213,0 +170768431742,213,0 +170768431790,213,0 +170768431838,213,0 +170768431887,213,0 +170768431935,213,0 +170768431985,213,0 +170768432033,213,0 +170768432080,213,0 +170768432128,213,0 +170768432178,213,0 +170768432226,213,0 +170768432274,213,0 +170768432323,213,0 +170768432372,213,0 +170768432420,213,0 +170768432468,213,0 +170768432516,213,0 +170768432564,213,0 +170768432612,213,0 +170768432661,213,0 +170768432709,213,0 +170768432757,213,0 +170768432804,213,0 +170768432854,213,0 +170768432902,213,0 +170768432949,213,0 +170768432997,213,0 +170768433045,213,0 +170768433095,213,0 +170768433142,213,0 +170768433190,213,0 +170768433238,213,0 +170768433286,213,0 +170768433334,213,0 +170768433382,213,0 +170768433429,213,0 +170768433477,213,0 +170768433525,213,0 +170768433573,213,0 +170768433622,213,0 +170768433672,213,0 +170768433719,213,0 +170768433767,213,0 +170768433815,213,0 +170768433863,213,0 +170768433912,213,0 +170768433960,213,0 +170768434008,213,0 +170768434056,213,0 +170768434104,213,0 +170768434152,213,0 +170768434200,213,0 +170768434249,213,0 +170768434297,213,0 +170768434346,213,0 +170768434394,213,0 +170768434442,213,0 +170768434492,213,0 +170768434539,213,0 +170768434589,213,0 +170768434637,213,0 +170768434685,213,0 +170768434732,213,0 +170768434780,213,0 +170768434828,213,0 +170768434876,213,0 +170768434924,213,0 +170768434971,213,0 +170768435019,213,0 +170768435067,213,0 +170768435115,213,0 +170768435163,213,0 +170768435211,213,0 +170768435258,213,0 +170768435306,213,0 +170768435354,213,0 +170768435402,213,0 +170768435451,213,0 +170768435499,213,0 +170768435547,213,0 +170768435595,213,0 +170768435643,213,0 +170768435692,213,0 +170768435740,213,0 +170768435788,213,0 +170768435836,213,0 +170768435884,213,0 +170768435933,213,0 +170768435981,213,0 +170768436029,213,0 +170768436077,213,0 +170768436125,213,0 +170768436173,213,0 +170768436221,213,0 +170768436271,213,0 +170768436320,213,0 +170768436368,213,0 +170768436416,213,0 +170768436464,213,0 +170768436512,213,0 +170768436560,213,0 +170768436609,213,0 +170768436657,213,0 +170768436705,213,0 +170768436754,213,0 +170768436802,213,0 +170768436850,213,0 +170768436899,213,0 +170768436947,213,0 +170768436995,213,0 +170768437043,213,0 +170768437091,213,0 +170768437138,213,0 +170768437186,213,0 +170768437236,213,0 +170768437284,213,0 +170768437331,213,0 +170768437379,213,0 +170768437427,213,0 +170768437475,213,0 +170768437523,213,0 +170768437571,213,0 +170768437619,213,0 +170768437666,213,0 +170768437714,213,0 +170768437762,213,0 +170768437811,213,0 +170768437859,213,0 +170768437907,213,0 +170768437955,213,0 +170768438004,213,0 +170768438052,213,0 +170768438100,213,0 +170768438148,213,0 +170768438196,213,0 +170768438244,213,0 +170768438293,213,0 +170768438341,213,0 +170768438389,213,0 +170768438436,213,0 +170768438486,213,0 +170768438534,213,0 +170768438581,213,0 +170768438629,213,0 +170768438677,213,0 +170768438726,213,0 +170768438774,213,0 +170768438822,213,0 +170768438870,213,0 +170768438918,213,0 +170768438966,213,0 +170768439013,213,0 +170768439061,213,0 +170768439109,213,0 +170768439158,213,0 +170768439206,213,0 +170768439254,213,0 +170768439302,213,0 +170768439350,213,0 +170768439397,213,0 +170768439445,213,0 +170768439493,213,0 +170768439541,213,0 +170768439590,213,0 +170768439638,213,0 +170768439686,213,0 +170768439734,213,0 +170768439782,213,0 +170768439829,213,0 +170768439877,213,0 +170768439925,213,0 +170768439973,213,0 +170768440021,213,0 +170768440070,213,0 +170768440118,213,0 +170768440166,213,0 +170768440214,213,0 +170768440261,213,0 +170768440309,213,0 +170768440357,213,0 +170768440405,213,0 +170768440453,213,0 +170768440500,213,0 +170768440548,213,0 +170768440596,213,0 +170768440644,213,0 +170768440692,213,0 +170768440740,213,0 +170768440787,213,0 +170768440835,213,0 +170768440883,213,0 +170768440933,213,0 +170768440981,213,0 +170768441030,213,0 +170768441078,213,0 +170768441127,213,0 +170768441177,213,0 +170768441225,213,0 +170768441272,213,0 +170768441322,213,0 +170768441370,213,0 +170768441417,213,0 +170768441465,213,0 +170768441513,213,0 +170768441561,213,0 +170768441609,213,0 +170768441656,213,0 +170768441704,213,0 +170768441752,213,0 +170768441800,213,0 +170768441848,213,0 +170768441895,213,0 +170768441943,213,0 +170768441991,213,0 +170768442040,213,0 +170768442088,213,0 +170768442136,213,0 +170768442184,213,0 +170768442234,213,0 +170768442282,213,0 +170768442329,213,0 +170768442379,213,0 +170768442427,213,0 +170768442475,213,0 +170768442522,213,0 +170768442570,213,0 +170768442618,213,0 +170768442668,213,0 +170768442716,213,0 +170768442763,213,0 +170768442811,213,0 +170768442859,213,0 +170768442907,213,0 +170768442954,213,0 +170768443002,213,0 +170768443050,213,0 +170768443100,213,0 +170768443147,213,0 +170768443195,213,0 +170768443243,213,0 +170768443291,213,0 +170768443339,213,0 +170768443387,213,0 +170768443436,213,0 +170768443484,213,0 +170768443533,213,0 +170768443581,213,0 +170768443629,213,0 +170768443678,213,0 +170768443728,213,0 +170768443777,213,0 +170768443825,213,0 +170768443875,213,0 +170768443924,213,0 +170768443972,213,0 +170768444022,213,0 +170768444069,213,0 +170768444117,213,0 +170768444165,213,0 +170768444215,213,0 +170768444263,213,0 +170768444311,213,0 +170768444359,213,0 +170768444406,213,0 +170768444454,213,0 +170768444502,213,0 +170768444550,213,0 +170768444598,213,0 +170768444646,213,0 +170768444696,213,0 +170768444744,213,0 +170768444791,213,0 +170768444839,213,0 +170768444889,213,0 +170768444937,213,0 +170768444985,213,0 +170768445033,213,0 +170768445082,213,0 +170768445130,213,0 +170768445178,213,0 +170768445227,213,0 +170768445275,213,0 +170768445325,213,0 +170768445373,213,0 +170768445421,213,0 +170768445469,213,0 +170768445517,213,0 +170768445564,213,0 +170768445614,213,0 +170768445662,213,0 +170768445710,213,0 +170768445758,213,0 +170768445807,213,0 +170768445857,213,0 +170768445906,213,0 +170768445956,213,0 +170768446004,213,0 +170768446051,213,0 +170768446099,213,0 +170768446147,213,0 +170768446195,213,0 +170768446243,213,0 +170768446291,213,0 +170768446339,213,0 +170768446386,213,0 +170768446434,213,0 +170768446482,213,0 +170768446530,213,0 +170768446578,213,0 +170768446626,213,0 +170768446673,213,0 +170768446721,213,0 +170768446769,213,0 +170768446817,213,0 +170768446865,213,0 +170768446913,213,0 +170768446960,213,0 +170768447008,213,0 +170768447056,213,0 +170768447104,213,0 +170768447152,213,0 +170768447200,213,0 +170768447247,213,0 +170768447295,213,0 +170768447343,213,0 +170768447393,213,0 +170768447442,213,0 +170768447492,213,0 +170768447541,213,0 +170768447589,213,0 +170768447637,213,0 +170768447685,213,0 +170768447733,213,0 +170768447781,213,0 +170768447829,213,0 +170768447877,213,0 +170768447925,213,0 +170768447972,213,0 +170768448020,213,0 +170768448068,213,0 +170768448116,213,0 +170768448164,213,0 +170768448213,213,0 +170768448261,213,0 +170768448309,213,0 +170768448357,213,0 +170768448405,213,0 +170768448454,213,0 +170768448502,213,0 +170768448551,213,0 +170768448599,213,0 +170768448647,213,0 +170768448695,213,0 +170768448743,213,0 +170768448790,213,0 +170768448838,213,0 +170768448886,214,0 +170768448934,213,0 +170768448983,213,0 +170768449031,213,0 +170768449079,213,0 +170768449127,213,0 +170768449174,213,0 +170768449222,213,0 +170768449270,213,0 +170768449318,213,0 +170768449366,213,0 +170768449413,213,0 +170768449461,213,0 +170768449509,213,0 +170768449557,213,0 +170768449606,213,0 +170768449656,213,0 +170768449705,213,0 +170768449753,213,0 +170768449803,213,0 +170768449851,214,0 +170768449900,213,0 +170768449948,213,0 +170768449996,213,0 +170768450046,213,0 +170768450093,213,0 +170768450141,213,0 +170768450189,213,0 +170768450237,213,0 +170768450285,213,0 +170768450333,213,0 +170768450381,213,0 +170768450428,213,0 +170768450476,213,0 +170768450524,213,0 +170768450573,213,0 +170768450621,213,0 +170768450671,213,0 +170768450719,213,0 +170768450767,213,0 +170768450816,213,0 +170768450866,213,0 +170768450915,213,0 +170768450965,213,0 +170768451013,213,0 +170768451061,213,0 +170768451108,213,0 +170768451158,213,0 +170768451206,213,0 +170768451254,213,0 +170768451302,213,0 +170768451351,213,0 +170768451399,213,0 +170768451448,213,0 +170768451498,213,0 +170768451547,213,0 +170768451595,213,0 +170768451645,213,0 +170768451693,213,0 +170768451741,213,0 +170768451790,213,0 +170768451838,213,0 +170768451887,213,0 +170768451935,213,0 +170768451985,213,0 +170768452033,213,0 +170768452081,213,0 +170768452129,213,0 +170768452178,213,0 +170768452226,213,0 +170768452274,213,0 +170768452322,213,0 +170768452370,213,0 +170768452419,213,0 +170768452467,213,0 +170768452517,213,0 +170768452566,213,0 +170768452616,213,0 +170768452663,213,0 +170768452711,213,0 +170768452759,213,0 +170768452807,213,0 +170768452857,213,0 +170768452906,213,0 +170768452955,213,0 +170768453003,213,0 +170768453051,213,0 +170768453101,213,0 +170768453149,213,0 +170768453197,213,0 +170768453245,213,0 +170768453292,213,0 +170768453342,213,0 +170768453390,213,0 +170768453439,213,0 +170768453487,213,0 +170768453535,213,0 +170768453583,213,0 +170768453631,213,0 +170768453680,213,0 +170768453728,213,0 +170768453778,213,0 +170768453826,213,0 +170768453875,213,0 +170768453923,213,0 +170768453972,213,0 +170768454022,213,0 +170768454071,213,0 +170768454119,213,0 +170768454169,213,0 +170768454219,213,0 +170768454266,213,0 +170768454314,213,0 +170768454362,213,0 +170768454412,213,0 +170768454460,213,0 +170768454507,213,0 +170768454557,213,0 +170768454605,213,0 +170768454654,213,0 +170768454704,213,0 +170768454752,213,0 +170768454801,213,0 +170768454851,213,0 +170768454900,214,0 +170768454948,213,0 +170768454997,213,0 +170768455047,213,0 +170768455096,213,0 +170768455144,213,0 +170768455192,213,0 +170768455242,213,0 +170768455290,213,0 +170768455337,213,0 +170768455385,213,0 +170768455433,213,0 +170768455481,213,0 +170768455529,213,0 +170768455579,213,0 +170768455628,213,0 +170768455678,213,0 +170768455725,213,0 +170768455775,213,0 +170768455824,213,0 +170768455872,213,0 +170768455920,213,0 +170768455968,213,0 +170768456016,213,0 +170768456064,213,0 +170768456113,213,0 +170768456163,214,0 +170768456212,213,0 +170768456260,213,0 +170768456310,213,0 +170768456357,213,0 +170768456407,213,0 +170768456456,213,0 +170768456504,213,0 +170768456554,213,0 +170768456602,213,0 +170768456651,213,0 +170768456701,213,0 +170768456749,213,0 +170768456798,213,0 +170768456847,213,0 +170768456895,213,0 +170768456943,213,0 +170768456991,213,0 +170768457039,213,0 +170768457089,213,0 +170768457138,213,0 +170768457186,213,0 +170768457234,213,0 +170768457284,213,0 +170768457331,213,0 +170768457379,213,0 +170768457427,213,0 +170768457477,213,0 +170768457525,213,0 +170768457574,213,0 +170768457622,213,0 +170768457671,213,0 +170768457719,213,0 +170768457767,213,0 +170768457817,213,0 +170768457866,213,0 +170768457914,213,0 +170768457963,213,0 +170768458011,213,0 +170768458059,213,0 +170768458107,213,0 +170768458155,213,0 +170768458203,213,0 +170768458251,213,0 +170768458299,213,0 +170768458347,213,0 +170768458395,213,0 +170768458443,213,0 +170768458491,213,0 +170768458540,213,0 +170768458588,213,0 +170768458636,213,0 +170768458684,213,0 +170768458733,213,0 +170768458781,213,0 +170768458831,213,0 +170768458879,213,0 +170768458928,213,0 +170768458978,213,0 +170768459026,213,0 +170768459074,213,0 +170768459121,213,0 +170768459171,213,0 +170768459219,213,0 +170768459267,213,0 +170768459315,213,0 +170768459364,213,0 +170768459414,213,0 +170768459462,213,0 +170768459509,213,0 +170768459557,213,0 +170768459605,213,0 +170768459653,213,0 +170768459701,213,0 +170768459749,213,0 +170768459797,213,0 +170768459844,213,0 +170768459892,213,0 +170768459940,213,0 +170768459989,213,0 +170768460037,213,0 +170768460085,213,0 +170768460133,213,0 +170768460181,213,0 +170768460230,213,0 +170768460278,213,0 +170768460326,213,0 +170768460374,213,0 +170768460423,213,0 +170768460473,213,0 +170768460521,213,0 +170768460568,213,0 +170768460616,213,0 +170768460664,213,0 +170768460712,213,0 +170768460760,213,0 +170768460808,213,0 +170768460857,213,0 +170768460905,213,0 +170768460953,213,0 +170768461003,213,0 +170768461051,213,0 +170768461100,213,0 +170768461148,213,0 +170768461198,213,0 +170768461247,213,0 +170768461297,213,0 +170768461346,213,0 +170768461395,213,0 +170768461443,213,0 +170768461493,213,0 +170768461542,213,0 +170768461592,213,0 +170768461640,213,0 +170768461689,213,0 +170768461737,213,0 +170768461785,213,0 +170768461835,213,0 +170768461884,213,0 +170768461932,213,0 +170768461980,213,0 +170768462029,213,0 +170768462077,213,0 +170768462125,213,0 +170768462173,213,0 +170768462223,213,0 +170768462271,213,0 +170768462319,213,0 +170768462368,213,0 +170768462418,213,0 +170768462466,213,0 +170768462515,213,0 +170768462563,213,0 +170768462611,213,0 +170768462659,213,0 +170768462707,213,0 +170768462756,213,0 +170768462804,213,0 +170768462854,213,0 +170768462902,213,0 +170768462950,213,0 +170768462998,213,0 +170768463045,213,0 +170768463095,213,0 +170768463143,213,0 +170768463192,213,0 +170768463240,213,0 +170768463288,213,0 +170768463338,213,0 +170768463387,213,0 +170768463435,213,0 +170768463483,213,0 +170768463531,213,0 +170768463579,213,0 +170768463627,213,0 +170768463675,213,0 +170768463723,213,0 +170768463770,213,0 +170768463818,213,0 +170768463866,213,0 +170768463914,213,0 +170768463961,213,0 +170768464011,213,0 +170768464059,213,0 +170768464108,213,0 +170768464156,213,0 +170768464205,213,0 +170768464253,213,0 +170768464301,213,0 +170768464349,213,0 +170768464397,213,0 +170768464445,213,0 +170768464494,213,0 +170768464542,213,0 +170768464590,213,0 +170768464638,213,0 +170768464688,213,0 +170768464735,213,0 +170768464783,213,0 +170768464831,213,0 +170768464879,213,0 +170768464927,213,0 +170768464975,213,0 +170768465022,213,0 +170768465070,213,0 +170768465118,213,0 +170768465166,213,0 +170768465214,213,0 +170768465262,213,0 +170768465310,213,0 +170768465357,213,0 +170768465405,213,0 +170768465453,213,0 +170768465501,213,0 +170768465549,213,0 +170768465597,213,0 +170768465644,213,0 +170768465692,213,0 +170768465742,213,0 +170768465790,213,0 +170768465839,213,0 +170768465887,213,0 +170768465936,213,0 +170768465984,213,0 +170768466032,213,0 +170768466082,213,0 +170768466131,213,0 +170768466181,213,0 +170768466229,213,0 +170768466277,213,0 +170768466324,213,0 +170768466372,213,0 +170768466422,213,0 +170768466470,213,0 +170768466518,213,0 +170768466567,213,0 +170768466617,213,0 +170768466666,213,0 +170768466714,213,0 +170768466762,213,0 +170768466810,213,0 +170768466858,213,0 +170768466906,213,0 +170768466954,213,0 +170768467002,213,0 +170768467050,213,0 +170768467098,213,0 +170768467146,213,0 +170768467194,213,0 +170768467242,213,0 +170768467290,213,0 +170768467339,213,0 +170768467387,213,0 +170768467435,213,0 +170768467483,213,0 +170768467531,213,0 +170768467581,213,0 +170768467630,213,0 +170768467678,213,0 +170768467728,213,0 +170768467776,213,0 +170768467825,213,0 +170768467873,213,0 +170768467923,213,0 +170768467970,213,0 +170768468020,213,0 +170768468068,213,0 +170768468117,213,0 +170768468165,213,0 +170768468213,213,0 +170768468263,213,0 +170768468311,213,0 +170768468360,213,0 +170768468408,213,0 +170768468456,213,0 +170768468505,213,0 +170768468553,213,0 +170768468601,213,0 +170768468649,213,0 +170768468697,213,0 +170768468745,213,0 +170768468793,213,0 +170768468841,213,0 +170768468889,213,0 +170768468937,213,0 +170768468984,213,0 +170768469034,213,0 +170768469082,213,0 +170768469130,213,0 +170768469179,213,0 +170768469227,213,0 +170768469275,213,0 +170768469324,213,0 +170768469372,213,0 +170768469422,213,0 +170768469471,213,0 +170768469519,213,0 +170768469567,213,0 +170768469617,213,0 +170768469664,213,0 +170768469714,213,0 +170768469762,213,0 +170768469811,213,0 +170768469859,213,0 +170768469909,213,0 +170768469957,213,0 +170768470006,213,0 +170768470054,213,0 +170768470104,213,0 +170768470152,213,0 +170768470199,213,0 +170768470247,213,0 +170768470295,213,0 +170768470345,213,0 +170768470395,213,0 +170768470442,213,0 +170768470490,213,0 +170768470540,213,0 +170768470589,213,0 +170768470639,213,0 +170768470687,213,0 +170768470735,213,0 +170768470783,213,0 +170768470831,213,0 +170768470879,213,0 +170768470927,213,0 +170768470976,213,0 +170768471024,213,0 +170768471073,213,0 +170768471123,213,0 +170768471172,213,0 +170768471220,213,0 +170768471270,213,0 +170768471318,213,0 +170768471367,213,0 +170768471417,213,0 +170768471465,213,0 +170768471513,213,0 +170768471562,213,0 +170768471610,213,0 +170768471658,213,0 +170768471706,213,0 +170768471756,213,0 +170768471803,213,0 +170768471851,213,0 +170768471899,213,0 +170768471947,213,0 +170768471995,213,0 +170768472045,213,0 +170768472093,213,0 +170768472140,213,0 +170768472188,213,0 +170768472236,213,0 +170768472284,213,0 +170768472332,213,0 +170768472380,213,0 +170768472428,213,0 +170768472476,213,0 +170768472524,213,0 +170768472572,213,0 +170768472622,213,0 +170768472671,213,0 +170768472719,213,0 +170768472769,213,0 +170768472817,213,0 +170768472864,213,0 +170768472914,213,0 +170768472963,213,0 +170768473013,213,0 +170768473061,213,0 +170768473110,213,0 +170768473158,213,0 +170768473208,213,0 +170768473256,213,0 +170768473304,213,0 +170768473352,213,0 +170768473400,213,0 +170768473448,213,0 +170768473496,213,0 +170768473544,213,0 +170768473591,213,0 +170768473639,213,0 +170768473687,213,0 +170768473735,213,0 +170768473783,213,0 +170768473830,213,0 +170768473878,213,0 +170768473926,213,0 +170768473974,213,0 +170768474024,213,0 +170768474071,213,0 +170768474121,213,0 +170768474169,213,0 +170768474217,213,0 +170768474264,213,0 +170768474312,213,0 +170768474362,213,0 +170768474409,213,0 +170768474457,213,0 +170768474505,213,0 +170768474553,213,0 +170768474601,213,0 +170768474649,213,0 +170768474696,213,0 +170768474744,213,0 +170768474792,213,0 +170768474840,213,0 +170768474888,213,0 +170768474936,213,0 +170768474984,213,0 +170768475031,213,0 +170768475079,213,0 +170768475127,213,0 +170768475175,213,0 +170768475223,213,0 +170768475271,213,0 +170768475320,213,0 +170768475368,213,0 +170768475416,213,0 +170768475466,213,0 +170768475515,213,0 +170768475565,213,0 +170768475613,213,0 +170768475662,213,0 +170768475711,213,0 +170768475759,213,0 +170768475807,213,0 +170768475857,213,0 +170768475905,213,0 +170768475954,213,0 +170768476002,213,0 +170768476052,213,0 +170768476100,213,0 +170768476148,213,0 +170768476197,213,0 +170768476246,213,0 +170768476294,213,0 +170768476344,213,0 +170768476392,213,0 +170768476440,213,0 +170768476488,213,0 +170768476537,213,0 +170768476585,213,0 +170768476633,213,0 +170768476683,213,0 +170768476731,213,0 +170768476778,213,0 +170768476828,213,0 +170768476876,213,0 +170768476924,213,0 +170768476973,213,0 +170768477023,213,0 +170768477071,213,0 +170768477119,213,0 +170768477166,213,0 +170768477214,213,0 +170768477264,213,0 +170768477312,213,0 +170768477360,213,0 +170768477408,213,0 +170768477455,213,0 +170768477505,213,0 +170768477553,213,0 +170768477602,213,0 +170768477650,213,0 +170768477700,213,0 +170768477748,213,0 +170768477795,213,0 +170768477843,213,0 +170768477891,213,0 +170768477939,213,0 +170768477987,213,0 +170768478035,213,0 +170768478083,213,0 +170768478131,213,0 +170768478179,213,0 +170768478227,213,0 +170768478276,213,0 +170768478326,213,0 +170768478375,213,0 +170768478423,213,0 +170768478473,213,0 +170768478520,213,0 +170768478570,213,0 +170768478618,213,0 +170768478667,213,0 +170768478715,213,0 +170768478763,213,0 +170768478811,213,0 +170768478861,213,0 +170768478910,213,0 +170768478958,213,0 +170768479006,213,0 +170768479054,213,0 +170768479102,213,0 +170768479151,213,0 +170768479201,213,0 +170768479249,213,0 +170768479297,213,0 +170768479344,213,0 +170768479392,213,0 +170768479440,213,0 +170768479488,213,0 +170768479536,213,0 +170768479584,213,0 +170768479632,213,0 +170768479681,214,0 +170768479729,213,0 +170768479777,213,0 +170768479825,213,0 +170768479873,213,0 +170768479921,213,0 +170768479970,213,0 +170768480018,213,0 +170768480066,213,0 +170768480114,213,0 +170768480162,213,0 +170768480211,213,0 +170768480259,213,0 +170768480307,213,0 +170768480357,213,0 +170768480406,213,0 +170768480454,213,0 +170768480502,213,0 +170768480552,213,0 +170768480599,213,0 +170768480647,213,0 +170768480695,213,0 +170768480745,213,0 +170768480793,213,0 +170768480842,214,0 +170768480890,213,0 +170768480938,213,0 +170768480986,213,0 +170768481034,213,0 +170768481082,213,0 +170768481130,213,0 +170768481179,213,0 +170768481227,213,0 +170768481276,213,0 +170768481326,213,0 +170768481375,213,0 +170768481423,213,0 +170768481473,213,0 +170768481521,213,0 +170768481569,213,0 +170768481616,213,0 +170768481664,213,0 +170768481712,213,0 +170768481762,213,0 +170768481810,213,0 +170768481858,213,0 +170768481907,213,0 +170768481955,213,0 +170768482003,213,0 +170768482051,213,0 +170768482099,213,0 +170768482147,213,0 +170768482195,213,0 +170768482243,213,0 +170768482292,213,0 +170768482342,213,0 +170768482390,213,0 +170768482437,213,0 +170768482485,213,0 +170768482533,213,0 +170768482581,213,0 +170768482631,213,0 +170768482679,213,0 +170768482726,213,0 +170768482774,213,0 +170768482822,213,0 +170768482870,213,0 +170768482918,213,0 +170768482966,213,0 +170768483013,213,0 +170768483061,213,0 +170768483109,213,0 +170768483157,213,0 +170768483207,213,0 +170768483256,213,0 +170768483304,213,0 +170768483352,213,0 +170768483400,213,0 +170768483447,213,0 +170768483495,213,0 +170768483543,213,0 +170768483591,213,0 +170768483639,213,0 +170768483686,213,0 +170768483734,213,0 +170768483783,213,0 +170768483831,213,0 +170768483879,214,0 +170768483927,213,0 +170768483975,213,0 +170768484023,213,0 +170768484073,213,0 +170768484120,213,0 +170768484168,213,0 +170768484218,213,0 +170768484266,213,0 +170768484314,213,0 +170768484362,213,0 +170768484410,213,0 +170768484458,213,0 +170768484506,213,0 +170768484553,213,0 +170768484601,213,0 +170768484649,213,0 +170768484697,213,0 +170768484745,213,0 +170768484793,213,0 +170768484842,213,0 +170768484890,213,0 +170768484938,213,0 +170768484986,213,0 +170768485034,213,0 +170768485081,213,0 +170768485129,213,0 +170768485177,213,0 +170768485225,213,0 +170768485275,213,0 +170768485323,213,0 +170768485371,213,0 +170768485419,213,0 +170768485468,213,0 +170768485518,213,0 +170768485565,213,0 +170768485613,213,0 +170768485661,213,0 +170768485711,213,0 +170768485760,213,0 +170768485808,213,0 +170768485856,213,0 +170768485904,213,0 +170768485952,213,0 +170768486001,213,0 +170768486049,214,0 +170768486097,213,0 +170768486147,213,0 +170768486194,213,0 +170768486244,213,0 +170768486294,213,0 +170768486343,213,0 +170768486391,213,0 +170768486439,214,0 +170768486488,213,0 +170768486536,213,0 +170768486586,213,0 +170768486634,213,0 +170768486683,213,0 +170768486733,213,0 +170768486782,213,0 +170768486830,213,0 +170768486878,213,0 +170768486927,213,0 +170768486975,213,0 +170768487023,213,0 +170768487071,213,0 +170768487119,213,0 +170768487168,213,0 +170768487218,213,0 +170768487266,213,0 +170768487315,213,0 +170768487363,213,0 +170768487413,213,0 +170768487461,213,0 +170768487510,213,0 +170768487558,213,0 +170768487606,213,0 +170768487654,213,0 +170768487703,213,0 +170768487751,213,0 +170768487799,213,0 +170768487847,213,0 +170768487895,213,0 +170768487943,213,0 +170768487990,213,0 +170768488038,213,0 +170768488086,213,0 +170768488134,213,0 +170768488182,213,0 +170768488230,213,0 +170768488278,213,0 +170768488325,213,0 +170768488373,213,0 +170768488421,213,0 +170768488469,213,0 +170768488517,213,0 +170768488565,213,0 +170768488613,213,0 +170768488661,213,0 +170768488709,213,0 +170768488757,213,0 +170768488806,213,0 +170768488854,213,0 +170768488902,213,0 +170768488950,213,0 +170768488998,213,0 +170768489046,213,0 +170768489094,213,0 +170768489141,213,0 +170768489189,213,0 +170768489237,213,0 +170768489285,213,0 +170768489333,214,0 +170768489381,213,0 +170768489429,213,0 +170768489479,213,0 +170768489526,213,0 +170768489574,213,0 +170768489622,213,0 +170768489670,213,0 +170768489718,213,0 +170768489766,213,0 +170768489813,213,0 +170768489861,213,0 +170768489909,213,0 +170768489958,213,0 +170768490006,214,0 +170768490054,213,0 +170768490102,213,0 +170768490150,213,0 +170768490198,213,0 +170768490245,213,0 +170768490295,213,0 +170768490343,213,0 +170768490392,213,0 +170768490440,213,0 +170768490488,213,0 +170768490537,213,0 +170768490585,213,0 +170768490633,213,0 +170768490681,213,0 +170768490729,213,0 +170768490777,213,0 +170768490825,213,0 +170768490873,213,0 +170768490921,213,0 +170768490969,213,0 +170768491017,213,0 +170768491065,213,0 +170768491114,213,0 +170768491163,213,0 +170768491211,213,0 +170768491261,213,0 +170768491310,213,0 +170768491358,213,0 +170768491406,213,0 +170768491454,213,0 +170768491503,213,0 +170768491553,213,0 +170768491601,213,0 +170768491650,213,0 +170768491698,213,0 +170768491746,213,0 +170768491796,213,0 +170768491845,213,0 +170768491893,213,0 +170768491941,213,0 +170768491989,213,0 +170768492039,213,0 +170768492087,213,0 +170768492134,213,0 +170768492182,213,0 +170768492230,214,0 +170768492278,213,0 +170768492326,213,0 +170768492374,213,0 +170768492422,213,0 +170768492471,213,0 +170768492519,213,0 +170768492567,213,0 +170768492615,213,0 +170768492663,213,0 +170768492711,213,0 +170768492758,213,0 +170768492806,213,0 +170768492854,213,0 +170768492902,213,0 +170768492952,213,0 +170768493001,213,0 +170768493051,213,0 +170768493099,213,0 +170768493148,213,0 +170768493196,213,0 +170768493244,213,0 +170768493292,213,0 +170768493340,213,0 +170768493388,213,0 +170768493436,213,0 +170768493484,213,0 +170768493533,213,0 +170768493583,213,0 +170768493632,213,0 +170768493680,213,0 +170768493728,213,0 +170768493778,213,0 +170768493827,213,0 +170768493877,213,0 +170768493925,213,0 +170768493972,213,0 +170768494020,213,0 +170768494068,213,0 +170768494116,213,0 +170768494164,213,0 +170768494212,213,0 +170768494260,213,0 +170768494307,213,0 +170768494355,213,0 +170768494403,213,0 +170768494450,213,0 +170768494498,213,0 +170768494546,213,0 +170768494594,213,0 +170768494643,213,0 +170768494691,213,0 +170768494739,213,0 +170768494787,213,0 +170768494837,213,0 +170768494886,213,0 +170768494934,213,0 +170768494982,213,0 +170768495029,213,0 +170768495077,213,0 +170768495125,213,0 +170768495175,213,0 +170768495223,213,0 +170768495270,213,0 +170768495318,213,0 +170768495368,213,0 +170768495416,213,0 +170768495464,213,0 +170768495513,213,0 +170768495561,213,0 +170768495609,213,0 +170768495657,213,0 +170768495704,213,0 +170768495752,213,0 +170768495800,213,0 +170768495848,213,0 +170768495896,213,0 +170768495944,213,0 +170768495991,213,0 +170768496039,213,0 +170768496087,213,0 +170768496135,213,0 +170768496183,213,0 +170768496231,213,0 +170768496280,213,0 +170768496330,213,0 +170768496378,213,0 +170768496426,213,0 +170768496474,213,0 +170768496523,213,0 +170768496571,213,0 +170768496619,213,0 +170768496667,213,0 +170768496716,213,0 +170768496764,213,0 +170768496814,213,0 +170768496862,213,0 +170768496911,213,0 +170768496959,213,0 +170768497007,213,0 +170768497055,213,0 +170768497103,213,0 +170768497151,213,0 +170768497201,213,0 +170768497250,213,0 +170768497300,213,0 +170768497347,213,0 +170768497395,213,0 +170768497443,213,0 +170768497493,213,0 +170768497542,213,0 +170768497590,213,0 +170768497640,213,0 +170768497689,213,0 +170768497737,213,0 +170768497786,213,0 +170768497836,213,0 +170768497884,213,0 +170768497932,213,0 +170768497981,213,0 +170768498031,213,0 +170768498079,213,0 +170768498128,213,0 +170768498178,213,0 +170768498226,213,0 +170768498273,213,0 +170768498323,213,0 +170768498372,213,0 +170768498420,213,0 +170768498468,213,0 +170768498516,213,0 +170768498566,213,0 +170768498615,213,0 +170768498665,213,0 +170768498713,213,0 +170768498760,213,0 +170768498808,213,0 +170768498856,213,0 +170768498904,213,0 +170768498952,213,0 +170768498999,213,0 +170768499047,213,0 +170768499095,213,0 +170768499143,213,0 +170768499191,213,0 +170768499239,213,0 +170768499288,213,0 +170768499336,213,0 +170768499385,213,0 +170768499433,213,0 +170768499481,213,0 +170768499529,213,0 +170768499577,213,0 +170768499625,213,0 +170768499673,213,0 +170768499720,213,0 +170768499768,213,0 +170768499818,213,0 +170768499865,213,0 +170768499913,213,0 +170768499963,213,0 +170768500011,213,0 +170768500059,213,0 +170768500107,213,0 +170768500156,213,0 +170768500204,213,0 +170768500252,213,0 +170768500300,213,0 +170768500348,213,0 +170768500396,213,0 +170768500444,213,0 +170768500491,213,0 +170768500539,213,0 +170768500587,213,0 +170768500635,213,0 +170768500683,213,0 +170768500731,213,0 +170768500781,213,0 +170768500830,213,0 +170768500878,213,0 +170768500926,213,0 +170768500974,213,0 +170768501021,213,0 +170768501069,213,0 +170768501117,213,0 +170768501165,213,0 +170768501213,213,0 +170768501261,213,0 +170768501309,213,0 +170768501356,213,0 +170768501406,213,0 +170768501454,213,0 +170768501501,213,0 +170768501549,213,0 +170768501597,213,0 +170768501645,213,0 +170768501693,213,0 +170768501740,213,0 +170768501788,213,0 +170768501836,213,0 +170768501884,213,0 +170768501932,213,0 +170768501979,213,0 +170768502027,213,0 +170768502075,213,0 +170768502123,213,0 +170768502171,213,0 +170768502219,213,0 +170768502267,213,0 +170768502315,213,0 +170768502363,213,0 +170768502412,213,0 +170768502460,213,0 +170768502508,213,0 +170768502556,213,0 +170768502603,213,0 +170768502653,213,0 +170768502702,213,0 +170768502752,213,0 +170768502801,213,0 +170768502849,213,0 +170768502899,213,0 +170768502947,213,0 +170768502996,213,0 +170768503046,213,0 +170768503095,213,0 +170768503143,213,0 +170768503193,213,0 +170768503241,213,0 +170768503289,213,0 +170768503337,213,0 +170768503385,213,0 +170768503432,213,0 +170768503480,213,0 +170768503528,213,0 +170768503576,213,0 +170768503624,213,0 +170768503672,213,0 +170768503722,213,0 +170768503770,213,0 +170768503818,213,0 +170768503866,213,0 +170768503913,213,0 +170768503961,213,0 +170768504011,213,0 +170768504059,213,0 +170768504107,213,0 +170768504156,213,0 +170768504204,213,0 +170768504252,213,0 +170768504300,213,0 +170768504348,213,0 +170768504396,213,0 +170768504444,213,0 +170768504492,213,0 +170768504541,213,0 +170768504589,213,0 +170768504637,213,0 +170768504685,213,0 +170768504733,213,0 +170768504781,213,0 +170768504828,213,0 +170768504876,213,0 +170768504924,213,0 +170768504974,213,0 +170768505023,213,0 +170768505071,213,0 +170768505121,213,0 +170768505169,213,0 +170768505217,213,0 +170768505265,213,0 +170768505312,213,0 +170768505360,213,0 +170768505408,213,0 +170768505456,213,0 +170768505506,213,0 +170768505555,213,0 +170768505603,213,0 +170768505651,213,0 +170768505699,213,0 +170768505747,213,0 +170768505795,213,0 +170768505843,213,0 +170768505892,213,0 +170768505940,213,0 +170768505988,213,0 +170768506036,213,0 +170768506085,213,0 +170768506133,213,0 +170768506181,213,0 +170768506229,213,0 +170768506277,213,0 +170768506327,213,0 +170768506376,213,0 +170768506424,213,0 +170768506473,213,0 +170768506523,213,0 +170768506571,213,0 +170768506620,213,0 +170768506670,213,0 +170768506719,213,0 +170768506767,213,0 +170768506817,213,0 +170768506865,213,0 +170768506913,213,0 +170768506960,213,0 +170768507010,213,0 +170768507058,213,0 +170768507106,213,0 +170768507155,213,0 +170768507203,213,0 +170768507253,213,0 +170768507301,213,0 +170768507350,213,0 +170768507398,213,0 +170768507448,213,0 +170768507496,213,0 +170768507544,213,0 +170768507592,213,0 +170768507639,213,0 +170768507687,213,0 +170768507735,213,0 +170768507783,213,0 +170768507831,213,0 +170768507879,213,0 +170768507927,213,0 +170768507975,213,0 +170768508023,213,0 +170768508070,213,0 +170768508118,213,0 +170768508168,213,0 +170768508217,213,0 +170768508265,213,0 +170768508313,213,0 +170768508361,213,0 +170768508411,213,0 +170768508458,213,0 +170768508506,213,0 +170768508556,213,0 +170768508605,213,0 +170768508653,213,0 +170768508701,213,0 +170768508749,213,0 +170768508797,213,0 +170768508846,213,0 +170768508894,213,0 +170768508942,213,0 +170768508990,213,0 +170768509038,213,0 +170768509086,213,0 +170768509134,213,0 +170768509182,213,0 +170768509231,213,0 +170768509279,213,0 +170768509327,213,0 +170768509375,213,0 +170768509424,213,0 +170768509472,213,0 +170768509522,213,0 +170768509569,213,0 +170768509619,213,0 +170768509668,213,0 +170768509716,213,0 +170768509764,213,0 +170768509812,213,0 +170768509861,213,0 +170768509909,213,0 +170768509957,213,0 +170768510005,213,0 +170768510055,213,0 +170768510104,213,0 +170768510153,213,0 +170768510201,213,0 +170768510249,213,0 +170768510297,213,0 +170768510345,213,0 +170768510393,213,0 +170768510441,213,0 +170768510489,213,0 +170768510537,213,0 +170768510584,213,0 +170768510632,213,0 +170768510680,213,0 +170768510728,213,0 +170768510776,213,0 +170768510824,213,0 +170768510872,213,0 +170768510922,213,0 +170768510970,213,0 +170768511018,213,0 +170768511066,213,0 +170768511113,213,0 +170768511161,213,0 +170768511209,213,0 +170768511257,213,0 +170768511307,213,0 +170768511356,213,0 +170768511406,213,0 +170768511455,213,0 +170768511503,213,0 +170768511551,213,0 +170768511599,213,0 +170768511647,213,0 +170768511695,213,0 +170768511744,213,0 +170768511792,213,0 +170768511842,213,0 +170768511891,213,0 +170768511939,213,0 +170768511987,213,0 +170768512036,213,0 +170768512084,213,0 +170768512132,213,0 +170768512182,213,0 +170768512230,213,0 +170768512277,213,0 +170768512327,213,0 +170768512375,213,0 +170768512424,213,0 +170768512472,213,0 +170768512520,213,0 +170768512570,213,0 +170768512617,213,0 +170768512665,213,0 +170768512713,213,0 +170768512761,213,0 +170768512809,213,0 +170768512857,213,0 +170768512905,213,0 +170768512953,213,0 +170768513001,213,0 +170768513050,213,0 +170768513098,213,0 +170768513146,213,0 +170768513195,213,0 +170768513243,213,0 +170768513291,213,0 +170768513339,213,0 +170768513387,213,0 +170768513436,213,0 +170768513484,213,0 +170768513532,213,0 +170768513580,213,0 +170768513628,213,0 +170768513676,213,0 +170768513724,213,0 +170768513772,213,0 +170768513820,213,0 +170768513868,213,0 +170768513917,213,0 +170768513965,213,0 +170768514015,213,0 +170768514062,213,0 +170768514110,213,0 +170768514158,213,0 +170768514206,213,0 +170768514254,213,0 +170768514302,213,0 +170768514350,213,0 +170768514398,213,0 +170768514446,213,0 +170768514493,213,0 +170768514543,213,0 +170768514591,213,0 +170768514639,213,0 +170768514687,213,0 +170768514735,213,0 +170768514784,213,0 +170768514833,213,0 +170768514881,213,0 +170768514929,213,0 +170768514979,213,0 +170768515027,213,0 +170768515076,213,0 +170768515124,213,0 +170768515172,213,0 +170768515220,213,0 +170768515267,213,0 +170768515317,213,0 +170768515365,213,0 +170768515413,213,0 +170768515461,213,0 +170768515510,213,0 +170768515558,213,0 +170768515606,213,0 +170768515654,213,0 +170768515702,213,0 +170768515750,213,0 +170768515799,213,0 +170768515847,213,0 +170768515895,213,0 +170768515945,213,0 +170768515994,213,0 +170768516044,213,0 +170768516092,213,0 +170768516141,213,0 +170768516189,213,0 +170768516237,213,0 +170768516285,213,0 +170768516332,213,0 +170768516380,213,0 +170768516428,213,0 +170768516478,213,0 +170768516527,213,0 +170768516577,213,0 +170768516625,213,0 +170768516673,213,0 +170768516722,213,0 +170768516772,213,0 +170768516820,213,0 +170768516869,213,0 +170768516917,213,0 +170768516965,213,0 +170768517013,213,0 +170768517061,213,0 +170768517110,213,0 +170768517158,213,0 +170768517208,213,0 +170768517255,213,0 +170768517303,213,0 +170768517353,213,0 +170768517401,213,0 +170768517449,213,0 +170768517497,213,0 +170768517546,213,0 +170768517596,213,0 +170768517645,213,0 +170768517693,213,0 +170768517741,213,0 +170768517789,213,0 +170768517837,213,0 +170768517886,213,0 +170768517934,213,0 +170768517982,213,0 +170768518030,213,0 +170768518078,213,0 +170768518125,213,0 +170768518173,213,0 +170768518221,213,0 +170768518269,213,0 +170768518317,213,0 +170768518365,213,0 +170768518414,213,0 +170768518462,213,0 +170768518510,213,0 +170768518558,213,0 +170768518605,213,0 +170768518655,213,0 +170768518703,213,0 +170768518751,213,0 +170768518799,213,0 +170768518848,213,0 +170768518896,213,0 +170768518946,213,0 +170768518993,213,0 +170768519043,213,0 +170768519091,213,0 +170768519140,213,0 +170768519188,213,0 +170768519238,213,0 +170768519286,213,0 +170768519335,213,0 +170768519383,213,0 +170768519433,213,0 +170768519482,213,0 +170768519530,213,0 +170768519579,213,0 +170768519627,213,0 +170768519677,213,0 +170768519725,213,0 +170768519774,213,0 +170768519822,213,0 +170768519870,213,0 +170768519918,213,0 +170768519966,213,0 +170768520014,213,0 diff --git a/laser_value/0212-07.csv b/laser_value/0212-07.csv new file mode 100644 index 0000000..1d443fa --- /dev/null +++ b/laser_value/0212-07.csv @@ -0,0 +1,7450 @@ +timestamp,laser_value,event +170768520062,213,0 +170768520112,213,0 +170768520160,213,0 +170768520208,213,0 +170768520256,213,0 +170768520305,213,0 +170768520353,213,0 +170768520401,213,0 +170768520451,213,0 +170768520499,213,0 +170768520548,213,0 +170768520597,213,0 +170768520645,213,0 +170768520695,213,0 +170768520743,213,0 +170768520792,213,0 +170768520842,213,0 +170768520890,213,0 +170768520939,213,0 +170768520987,213,0 +170768521037,213,0 +170768521085,213,0 +170768521134,213,0 +170768521182,213,0 +170768521230,213,0 +170768521277,213,0 +170768521325,213,0 +170768521373,213,0 +170768521421,213,0 +170768521469,213,0 +170768521517,213,0 +170768521565,213,0 +170768521612,213,0 +170768521660,213,0 +170768521708,213,0 +170768521756,213,0 +170768521804,213,0 +170768521852,213,0 +170768521900,213,0 +170768521948,213,0 +170768521997,213,0 +170768522047,213,0 +170768522096,213,0 +170768522146,213,0 +170768522195,213,0 +170768522243,213,0 +170768522292,213,0 +170768522342,213,0 +170768522390,213,0 +170768522438,213,0 +170768522487,213,0 +170768522535,213,0 +170768522583,213,0 +170768522631,213,0 +170768522679,213,0 +170768522727,213,0 +170768522777,213,0 +170768522826,213,0 +170768522874,213,0 +170768522922,213,0 +170768522970,213,0 +170768523018,213,0 +170768523067,213,0 +170768523115,213,0 +170768523163,213,0 +170768523211,213,0 +170768523259,213,0 +170768523308,213,0 +170768523356,213,0 +170768523404,213,0 +170768523452,213,0 +170768523502,213,0 +170768523551,213,0 +170768523599,213,0 +170768523647,213,0 +170768523697,213,0 +170768523746,213,0 +170768523794,213,0 +170768523842,213,0 +170768523890,213,0 +170768523939,213,0 +170768523987,213,0 +170768524035,213,0 +170768524083,213,0 +170768524131,213,0 +170768524181,213,0 +170768524229,213,0 +170768524276,213,0 +170768524324,213,0 +170768524374,213,0 +170768524422,213,0 +170768524471,213,0 +170768524519,213,0 +170768524569,213,0 +170768524617,213,0 +170768524665,213,0 +170768524713,213,0 +170768524762,213,0 +170768524812,213,0 +170768524861,213,0 +170768524909,213,0 +170768524957,213,0 +170768525007,213,0 +170768525056,213,0 +170768525104,213,0 +170768525152,213,0 +170768525200,213,0 +170768525249,213,0 +170768525299,213,0 +170768525347,213,0 +170768525396,213,0 +170768525446,213,0 +170768525495,213,0 +170768525543,213,0 +170768525591,213,0 +170768525641,213,0 +170768525690,213,0 +170768525738,213,0 +170768525787,213,0 +170768525837,213,0 +170768525885,213,0 +170768525933,213,0 +170768525982,213,0 +170768526030,213,0 +170768526080,213,0 +170768526128,213,0 +170768526176,213,0 +170768526225,213,0 +170768526275,213,0 +170768526323,213,0 +170768526371,213,0 +170768526420,213,0 +170768526468,213,0 +170768526516,213,0 +170768526564,213,0 +170768526612,213,0 +170768526660,213,0 +170768526708,213,0 +170768526757,213,0 +170768526805,213,0 +170768526854,213,0 +170768526902,213,0 +170768526950,213,0 +170768526998,213,0 +170768527046,213,0 +170768527096,213,0 +170768527144,213,0 +170768527192,213,0 +170768527239,213,0 +170768527287,213,0 +170768527337,213,0 +170768527386,213,0 +170768527434,213,0 +170768527484,213,0 +170768527533,213,0 +170768527581,213,0 +170768527629,213,0 +170768527678,213,0 +170768527726,213,0 +170768527776,213,0 +170768527824,213,0 +170768527872,213,0 +170768527920,213,0 +170768527969,213,0 +170768528018,213,0 +170768528066,213,0 +170768528116,213,0 +170768528164,213,0 +170768528213,213,0 +170768528261,214,0 +170768528311,213,0 +170768528359,213,0 +170768528407,213,0 +170768528455,213,0 +170768528504,213,0 +170768528552,213,0 +170768528600,213,0 +170768528648,213,0 +170768528696,213,0 +170768528744,213,0 +170768528793,213,0 +170768528841,213,0 +170768528889,213,0 +170768528937,213,0 +170768528985,213,0 +170768529032,213,0 +170768529082,213,0 +170768529130,213,0 +170768529178,213,0 +170768529226,213,0 +170768529273,213,0 +170768529321,213,0 +170768529369,213,0 +170768529417,213,0 +170768529467,213,0 +170768529516,213,0 +170768529566,213,0 +170768529614,213,0 +170768529661,213,0 +170768529709,213,0 +170768529757,213,0 +170768529805,213,0 +170768529853,213,0 +170768529901,213,0 +170768529949,213,0 +170768529998,213,0 +170768530046,213,0 +170768530094,213,0 +170768530142,213,0 +170768530190,213,0 +170768530237,213,0 +170768530285,213,0 +170768530334,213,0 +170768530382,213,0 +170768530430,213,0 +170768530478,213,0 +170768530526,213,0 +170768530573,213,0 +170768530623,213,0 +170768530671,213,0 +170768530719,213,0 +170768530766,213,0 +170768530814,213,0 +170768530862,213,0 +170768530910,213,0 +170768530958,213,0 +170768531006,213,0 +170768531053,213,0 +170768531101,213,0 +170768531149,213,0 +170768531197,213,0 +170768531244,213,0 +170768531292,213,0 +170768531340,213,0 +170768531388,213,0 +170768531436,213,0 +170768531485,213,0 +170768531535,213,0 +170768531583,213,0 +170768531631,213,0 +170768531680,213,0 +170768531730,213,0 +170768531778,213,0 +170768531825,213,0 +170768531875,213,0 +170768531923,213,0 +170768531971,213,0 +170768532019,213,0 +170768532067,213,0 +170768532116,213,0 +170768532164,213,0 +170768532212,213,0 +170768532260,213,0 +170768532309,213,0 +170768532357,213,0 +170768532405,213,0 +170768532453,213,0 +170768532501,213,0 +170768532548,213,0 +170768532598,213,0 +170768532646,213,0 +170768532695,213,0 +170768532743,213,0 +170768532791,214,0 +170768532839,213,0 +170768532887,213,0 +170768532936,213,0 +170768532984,213,0 +170768533032,213,0 +170768533082,213,0 +170768533131,213,0 +170768533179,213,0 +170768533227,213,0 +170768533275,213,0 +170768533323,213,0 +170768533371,213,0 +170768533419,213,0 +170768533467,213,0 +170768533515,213,0 +170768533563,213,0 +170768533611,213,0 +170768533659,213,0 +170768533708,213,0 +170768533756,213,0 +170768533806,214,0 +170768533854,213,0 +170768533902,213,0 +170768533949,213,0 +170768533997,213,0 +170768534045,213,0 +170768534093,213,0 +170768534143,213,0 +170768534191,213,0 +170768534239,213,0 +170768534288,213,0 +170768534336,213,0 +170768534385,213,0 +170768534433,213,0 +170768534481,213,0 +170768534531,213,0 +170768534580,213,0 +170768534630,213,0 +170768534678,213,0 +170768534726,213,0 +170768534775,213,0 +170768534823,213,0 +170768534871,213,0 +170768534920,213,0 +170768534968,213,0 +170768535018,213,0 +170768535067,213,0 +170768535115,213,0 +170768535163,213,0 +170768535211,213,0 +170768535259,213,0 +170768535307,213,0 +170768535355,213,0 +170768535402,213,0 +170768535450,213,0 +170768535498,213,0 +170768535548,213,0 +170768535595,213,0 +170768535643,213,0 +170768535691,213,0 +170768535739,214,0 +170768535789,213,0 +170768535836,213,0 +170768535884,213,0 +170768535932,213,0 +170768535980,213,0 +170768536030,213,0 +170768536078,213,0 +170768536127,213,0 +170768536176,213,0 +170768536226,213,0 +170768536274,213,0 +170768536322,213,0 +170768536369,213,0 +170768536417,213,0 +170768536465,213,0 +170768536513,213,0 +170768536563,213,0 +170768536610,213,0 +170768536658,213,0 +170768536706,213,0 +170768536756,213,0 +170768536805,213,0 +170768536853,213,0 +170768536903,213,0 +170768536950,213,0 +170768537000,213,0 +170768537049,213,0 +170768537097,213,0 +170768537145,213,0 +170768537193,213,0 +170768537241,213,0 +170768537289,213,0 +170768537337,213,0 +170768537385,213,0 +170768537433,213,0 +170768537482,213,0 +170768537532,213,0 +170768537581,213,0 +170768537629,213,0 +170768537677,213,0 +170768537725,213,0 +170768537773,213,0 +170768537820,213,0 +170768537868,213,0 +170768537918,213,0 +170768537966,213,0 +170768538014,213,0 +170768538062,213,0 +170768538110,213,0 +170768538159,213,0 +170768538207,213,0 +170768538255,213,0 +170768538303,213,0 +170768538351,213,0 +170768538399,213,0 +170768538447,213,0 +170768538495,213,0 +170768538543,213,0 +170768538591,213,0 +170768538639,213,0 +170768538686,213,0 +170768538734,213,0 +170768538784,213,0 +170768538833,213,0 +170768538881,213,0 +170768538929,213,0 +170768538979,213,0 +170768539026,213,0 +170768539076,213,0 +170768539124,213,0 +170768539172,213,0 +170768539221,213,0 +170768539271,213,0 +170768539318,213,0 +170768539366,213,0 +170768539414,213,0 +170768539462,213,0 +170768539510,213,0 +170768539560,213,0 +170768539607,213,0 +170768539655,213,0 +170768539703,213,0 +170768539751,213,0 +170768539801,213,0 +170768539849,213,0 +170768539898,213,0 +170768539946,213,0 +170768539994,213,0 +170768540042,213,0 +170768540090,213,0 +170768540138,213,0 +170768540186,213,0 +170768540234,213,0 +170768540282,213,0 +170768540331,213,0 +170768540379,213,0 +170768540428,213,0 +170768540476,213,0 +170768540526,213,0 +170768540574,213,0 +170768540623,213,0 +170768540673,213,0 +170768540722,213,0 +170768540770,213,0 +170768540820,213,0 +170768540868,213,0 +170768540915,213,0 +170768540963,213,0 +170768541013,213,0 +170768541061,213,0 +170768541109,213,0 +170768541158,213,0 +170768541206,213,0 +170768541254,213,0 +170768541302,213,0 +170768541350,213,0 +170768541398,213,0 +170768541447,213,0 +170768541495,213,0 +170768541545,213,0 +170768541593,213,0 +170768541641,213,0 +170768541690,213,0 +170768541740,213,0 +170768541788,213,0 +170768541835,213,0 +170768541885,213,0 +170768541934,213,0 +170768541982,213,0 +170768542030,213,0 +170768542078,213,0 +170768542128,213,0 +170768542175,213,0 +170768542223,213,0 +170768542271,213,0 +170768542321,213,0 +170768542370,213,0 +170768542420,213,0 +170768542469,213,0 +170768542517,213,0 +170768542565,213,0 +170768542615,213,0 +170768542662,213,0 +170768542710,213,0 +170768542758,213,0 +170768542806,213,0 +170768542856,213,0 +170768542904,213,0 +170768542953,213,0 +170768543003,213,0 +170768543051,213,0 +170768543100,213,0 +170768543148,213,0 +170768543196,213,0 +170768543244,213,0 +170768543293,213,0 +170768543341,213,0 +170768543391,213,0 +170768543438,213,0 +170768543486,213,0 +170768543534,213,0 +170768543582,213,0 +170768543630,213,0 +170768543679,213,0 +170768543727,213,0 +170768543775,213,0 +170768543823,213,0 +170768543872,213,0 +170768543920,213,0 +170768543968,213,0 +170768544016,213,0 +170768544064,213,0 +170768544112,213,0 +170768544160,213,0 +170768544208,213,0 +170768544256,213,0 +170768544304,213,0 +170768544352,213,0 +170768544399,213,0 +170768544447,213,0 +170768544495,213,0 +170768544543,213,0 +170768544593,213,0 +170768544642,213,0 +170768544692,213,0 +170768544739,213,0 +170768544789,213,0 +170768544837,213,0 +170768544885,213,0 +170768544933,213,0 +170768544981,213,0 +170768545029,213,0 +170768545078,213,0 +170768545126,213,0 +170768545174,213,0 +170768545222,213,0 +170768545269,213,0 +170768545317,213,0 +170768545365,213,0 +170768545413,213,0 +170768545463,214,0 +170768545510,214,0 +170768545558,214,0 +170768545608,214,0 +170768545657,214,0 +170768545707,214,0 +170768545754,214,0 +170768545802,214,0 +170768545850,214,0 +170768545900,215,0 +170768545947,214,0 +170768545995,215,0 +170768546043,215,0 +170768546091,215,0 +170768546139,215,0 +170768546187,215,0 +170768546235,215,0 +170768546284,215,0 +170768546334,215,0 +170768546382,215,0 +170768546430,215,0 +170768546478,215,0 +170768546525,215,0 +170768546573,213,0 +170768546621,213,0 +170768546669,213,0 +170768546717,213,0 +170768546767,213,0 +170768546815,213,0 +170768546862,214,0 +170768546912,214,0 +170768546960,214,0 +170768547008,214,0 +170768547056,214,0 +170768547104,214,0 +170768547153,214,0 +170768547203,214,0 +170768547251,215,0 +170768547299,214,0 +170768547346,215,0 +170768547394,215,0 +170768547444,215,0 +170768547493,215,0 +170768547543,215,0 +170768547593,215,0 +170768547642,215,0 +170768547690,215,0 +170768547739,214,0 +170768547789,213,0 +170768547837,213,0 +170768547885,213,0 +170768547933,213,0 +170768547982,213,0 +170768548032,213,0 +170768548081,213,0 +170768548129,213,0 +170768548177,214,0 +170768548225,214,0 +170768548273,214,0 +170768548321,214,0 +170768548370,214,0 +170768548420,215,0 +170768548468,214,0 +170768548515,215,0 +170768548563,215,0 +170768548613,215,0 +170768548662,214,0 +170768548710,215,0 +170768548758,213,0 +170768548807,213,0 +170768548855,213,0 +170768548903,213,0 +170768548951,214,0 +170768548999,214,0 +170768549049,214,0 +170768549097,214,0 +170768549144,214,0 +170768549192,214,0 +170768549240,214,0 +170768549288,214,0 +170768549336,215,0 +170768549384,215,0 +170768549432,215,0 +170768549481,215,0 +170768549529,215,0 +170768549578,214,0 +170768549626,213,0 +170768549674,213,0 +170768549722,213,0 +170768549770,213,0 +170768549819,213,0 +170768549867,213,0 +170768549917,214,0 +170768549965,214,0 +170768550012,214,0 +170768550060,214,0 +170768550108,214,0 +170768550156,215,0 +170768550204,215,0 +170768550252,214,0 +170768550301,215,0 +170768550349,214,0 +170768550397,215,0 +170768550445,214,0 +170768550492,213,0 +170768550540,213,0 +170768550588,213,0 +170768550636,213,0 +170768550684,213,0 +170768550731,214,0 +170768550779,214,0 +170768550829,214,0 +170768550876,214,0 +170768550924,215,0 +170768550972,215,0 +170768551020,215,0 +170768551068,215,0 +170768551116,215,0 +170768551166,215,0 +170768551213,215,0 +170768551261,215,0 +170768551309,214,0 +170768551358,213,0 +170768551406,214,0 +170768551454,214,0 +170768551503,214,0 +170768551551,214,0 +170768551599,214,0 +170768551647,215,0 +170768551695,215,0 +170768551743,215,0 +170768551791,215,0 +170768551838,215,0 +170768551886,215,0 +170768551934,215,0 +170768551982,215,0 +170768552030,215,0 +170768552078,215,0 +170768552126,215,0 +170768552174,214,0 +170768552221,214,0 +170768552269,214,0 +170768552317,214,0 +170768552365,214,0 +170768552413,214,0 +170768552461,214,0 +170768552509,214,0 +170768552556,215,0 +170768552604,215,0 +170768552652,215,0 +170768552700,215,0 +170768552748,215,0 +170768552795,215,0 +170768552843,215,0 +170768552891,215,0 +170768552939,215,0 +170768552987,215,0 +170768553035,214,0 +170768553082,214,0 +170768553130,214,0 +170768553180,214,0 +170768553228,214,0 +170768553277,214,0 +170768553325,214,0 +170768553373,214,0 +170768553423,214,0 +170768553472,215,0 +170768553520,215,0 +170768553568,215,0 +170768553618,214,0 +170768553666,215,0 +170768553713,215,0 +170768553761,215,0 +170768553809,215,0 +170768553857,214,0 +170768553907,213,0 +170768553955,213,0 +170768554004,213,0 +170768554052,213,0 +170768554100,213,0 +170768554148,213,0 +170768554198,214,0 +170768554247,214,0 +170768554297,214,0 +170768554344,214,0 +170768554394,214,0 +170768554442,214,0 +170768554490,214,0 +170768554538,214,0 +170768554587,214,0 +170768554637,214,0 +170768554685,215,0 +170768554732,213,0 +170768554782,212,0 +170768554831,213,0 +170768554881,213,0 +170768554929,213,0 +170768554977,213,0 +170768555025,213,0 +170768555074,213,0 +170768555122,214,0 +170768555170,214,0 +170768555218,214,0 +170768555266,214,0 +170768555314,214,0 +170768555362,214,0 +170768555411,214,0 +170768555459,215,0 +170768555509,214,0 +170768555558,214,0 +170768555608,213,0 +170768555656,213,0 +170768555705,213,0 +170768555753,213,0 +170768555801,213,0 +170768555849,213,0 +170768555897,213,0 +170768555945,214,0 +170768555992,214,0 +170768556040,214,0 +170768556088,214,0 +170768556136,214,0 +170768556186,214,0 +170768556234,215,0 +170768556281,214,0 +170768556331,215,0 +170768556379,215,0 +170768556427,213,0 +170768556475,213,0 +170768556524,213,0 +170768556574,213,0 +170768556622,213,0 +170768556670,213,0 +170768556719,213,0 +170768556767,213,0 +170768556815,214,0 +170768556863,214,0 +170768556912,214,0 +170768556962,214,0 +170768557010,214,0 +170768557058,214,0 +170768557106,214,0 +170768557154,215,0 +170768557203,215,0 +170768557251,214,0 +170768557299,213,0 +170768557347,213,0 +170768557396,213,0 +170768557444,213,0 +170768557492,213,0 +170768557542,213,0 +170768557590,213,0 +170768557638,213,0 +170768557686,213,0 +170768557735,214,0 +170768557783,214,0 +170768557831,214,0 +170768557880,214,0 +170768557928,214,0 +170768557978,214,0 +170768558026,215,0 +170768558074,214,0 +170768558122,214,0 +170768558169,213,0 +170768558219,212,0 +170768558267,212,0 +170768558315,212,0 +170768558364,213,0 +170768558412,213,0 +170768558460,213,0 +170768558508,213,0 +170768558558,213,0 +170768558605,213,0 +170768558653,213,0 +170768558703,214,0 +170768558751,214,0 +170768558800,214,0 +170768558850,214,0 +170768558898,214,0 +170768558946,214,0 +170768558995,214,0 +170768559043,212,0 +170768559093,212,0 +170768559141,213,0 +170768559189,213,0 +170768559238,213,0 +170768559287,213,0 +170768559335,213,0 +170768559383,214,0 +170768559433,214,0 +170768559481,214,0 +170768559529,214,0 +170768559577,214,0 +170768559625,215,0 +170768559672,214,0 +170768559720,215,0 +170768559768,215,0 +170768559816,214,0 +170768559866,213,0 +170768559914,213,0 +170768559963,213,0 +170768560013,213,0 +170768560062,213,0 +170768560110,213,0 +170768560158,213,0 +170768560206,213,0 +170768560254,214,0 +170768560302,214,0 +170768560352,214,0 +170768560399,214,0 +170768560447,214,0 +170768560497,214,0 +170768560545,214,0 +170768560594,214,0 +170768560644,215,0 +170768560692,214,0 +170768560740,213,0 +170768560790,213,0 +170768560838,214,0 +170768560886,214,0 +170768560934,214,0 +170768560982,214,0 +170768561030,214,0 +170768561079,214,0 +170768561127,215,0 +170768561175,215,0 +170768561225,215,0 +170768561273,215,0 +170768561320,214,0 +170768561370,214,0 +170768561418,215,0 +170768561467,215,0 +170768561515,215,0 +170768561563,213,0 +170768561611,213,0 +170768561661,213,0 +170768561709,214,0 +170768561757,214,0 +170768561804,214,0 +170768561854,214,0 +170768561902,214,0 +170768561950,214,0 +170768561998,215,0 +170768562046,214,0 +170768562093,214,0 +170768562143,215,0 +170768562192,215,0 +170768562240,215,0 +170768562290,215,0 +170768562339,214,0 +170768562387,214,0 +170768562435,213,0 +170768562483,213,0 +170768562531,214,0 +170768562581,214,0 +170768562630,214,0 +170768562678,214,0 +170768562727,214,0 +170768562775,214,0 +170768562823,214,0 +170768562873,214,0 +170768562921,214,0 +170768562968,214,0 +170768563018,215,0 +170768563066,215,0 +170768563115,215,0 +170768563163,215,0 +170768563213,215,0 +170768563261,214,0 +170768563309,213,0 +170768563357,214,0 +170768563404,214,0 +170768563452,214,0 +170768563500,214,0 +170768563549,214,0 +170768563597,215,0 +170768563645,215,0 +170768563693,215,0 +170768563742,215,0 +170768563790,215,0 +170768563838,215,0 +170768563886,215,0 +170768563934,215,0 +170768563983,215,0 +170768564031,215,0 +170768564079,214,0 +170768564128,214,0 +170768564176,214,0 +170768564226,214,0 +170768564274,214,0 +170768564322,214,0 +170768564371,214,0 +170768564419,214,0 +170768564467,215,0 +170768564515,215,0 +170768564563,215,0 +170768564611,215,0 +170768564660,215,0 +170768564708,215,0 +170768564756,215,0 +170768564804,215,0 +170768564853,215,0 +170768564901,215,0 +170768564951,214,0 +170768564999,213,0 +170768565048,213,0 +170768565096,214,0 +170768565144,214,0 +170768565194,214,0 +170768565243,214,0 +170768565292,214,0 +170768565340,214,0 +170768565388,214,0 +170768565436,215,0 +170768565486,215,0 +170768565534,215,0 +170768565582,215,0 +170768565630,215,0 +170768565677,215,0 +170768565725,214,0 +170768565773,214,0 +170768565823,213,0 +170768565871,213,0 +170768565918,213,0 +170768565966,213,0 +170768566014,213,0 +170768566062,213,0 +170768566110,213,0 +170768566158,213,0 +170768566206,214,0 +170768566254,214,0 +170768566303,214,0 +170768566351,214,0 +170768566399,214,0 +170768566447,214,0 +170768566495,214,0 +170768566543,215,0 +170768566590,215,0 +170768566638,214,0 +170768566686,213,0 +170768566736,212,0 +170768566784,212,0 +170768566831,213,0 +170768566881,213,0 +170768566929,213,0 +170768566976,213,0 +170768567026,213,0 +170768567074,213,0 +170768567123,213,0 +170768567171,214,0 +170768567219,214,0 +170768567267,214,0 +170768567315,214,0 +170768567365,214,0 +170768567412,214,0 +170768567460,214,0 +170768567508,214,0 +170768567558,213,0 +170768567606,213,0 +170768567654,213,0 +170768567703,213,0 +170768567753,213,0 +170768567800,213,0 +170768567850,213,0 +170768567898,213,0 +170768567946,213,0 +170768567995,213,0 +170768568043,213,0 +170768568093,214,0 +170768568140,214,0 +170768568190,214,0 +170768568238,214,0 +170768568287,214,0 +170768568335,215,0 +170768568385,213,0 +170768568433,212,0 +170768568482,213,0 +170768568530,213,0 +170768568578,213,0 +170768568626,213,0 +170768568676,213,0 +170768568725,213,0 +170768568775,213,0 +170768568822,214,0 +170768568870,214,0 +170768568918,214,0 +170768568968,214,0 +170768569017,214,0 +170768569065,214,0 +170768569113,215,0 +170768569163,214,0 +170768569212,214,0 +170768569261,213,0 +170768569309,213,0 +170768569357,213,0 +170768569407,213,0 +170768569455,213,0 +170768569502,213,0 +170768569550,213,0 +170768569598,214,0 +170768569646,214,0 +170768569694,214,0 +170768569742,214,0 +170768569791,214,0 +170768569839,214,0 +170768569887,214,0 +170768569937,215,0 +170768569985,215,0 +170768570032,214,0 +170768570080,213,0 +170768570128,213,0 +170768570178,212,0 +170768570227,213,0 +170768570277,213,0 +170768570326,213,0 +170768570376,213,0 +170768570424,213,0 +170768570473,214,0 +170768570521,214,0 +170768570569,214,0 +170768570619,214,0 +170768570668,214,0 +170768570716,214,0 +170768570765,214,0 +170768570813,215,0 +170768570861,215,0 +170768570909,215,0 +170768570959,213,0 +170768571007,213,0 +170768571055,213,0 +170768571104,213,0 +170768571152,213,0 +170768571200,213,0 +170768571248,214,0 +170768571296,214,0 +170768571344,214,0 +170768571392,214,0 +170768571440,214,0 +170768571489,215,0 +170768571537,214,0 +170768571585,214,0 +170768571633,214,0 +170768571682,215,0 +170768571730,214,0 +170768571778,214,0 +170768571828,213,0 +170768571875,213,0 +170768571925,213,0 +170768571973,213,0 +170768572021,214,0 +170768572069,214,0 +170768572117,214,0 +170768572165,214,0 +170768572213,214,0 +170768572260,214,0 +170768572308,214,0 +170768572356,214,0 +170768572404,214,0 +170768572452,215,0 +170768572502,215,0 +170768572549,215,0 +170768572599,215,0 +170768572647,213,0 +170768572695,213,0 +170768572742,213,0 +170768572792,213,0 +170768572841,214,0 +170768572891,213,0 +170768572939,214,0 +170768572987,214,0 +170768573035,214,0 +170768573083,214,0 +170768573131,214,0 +170768573180,214,0 +170768573228,215,0 +170768573277,215,0 +170768573325,215,0 +170768573373,215,0 +170768573421,215,0 +170768573471,215,0 +170768573520,213,0 +170768573568,213,0 +170768573616,213,0 +170768573666,213,0 +170768573714,214,0 +170768573763,214,0 +170768573811,214,0 +170768573859,214,0 +170768573907,214,0 +170768573955,214,0 +170768574003,215,0 +170768574052,215,0 +170768574100,215,0 +170768574148,215,0 +170768574196,215,0 +170768574244,215,0 +170768574292,215,0 +170768574341,214,0 +170768574389,214,0 +170768574437,214,0 +170768574486,214,0 +170768574534,214,0 +170768574582,214,0 +170768574630,214,0 +170768574678,214,0 +170768574726,214,0 +170768574776,214,0 +170768574824,214,0 +170768574873,214,0 +170768574921,215,0 +170768574969,215,0 +170768575017,215,0 +170768575065,215,0 +170768575113,215,0 +170768575162,215,0 +170768575210,214,0 +170768575258,214,0 +170768575307,214,0 +170768575355,214,0 +170768575403,214,0 +170768575451,214,0 +170768575501,214,0 +170768575549,214,0 +170768575597,214,0 +170768575644,215,0 +170768575692,215,0 +170768575740,215,0 +170768575788,215,0 +170768575836,215,0 +170768575884,215,0 +170768575932,215,0 +170768575981,215,0 +170768576030,215,0 +170768576078,214,0 +170768576126,214,0 +170768576174,214,0 +170768576222,214,0 +170768576269,214,0 +170768576317,214,0 +170768576365,214,0 +170768576413,215,0 +170768576461,214,0 +170768576509,214,0 +170768576556,214,0 +170768576604,214,0 +170768576652,215,0 +170768576700,215,0 +170768576748,215,0 +170768576796,215,0 +170768576843,215,0 +170768576891,214,0 +170768576939,213,0 +170768576987,214,0 +170768577035,213,0 +170768577083,214,0 +170768577130,214,0 +170768577178,214,0 +170768577226,214,0 +170768577274,214,0 +170768577323,214,0 +170768577371,214,0 +170768577419,214,0 +170768577467,215,0 +170768577515,215,0 +170768577562,215,0 +170768577612,215,0 +170768577659,215,0 +170768577709,214,0 +170768577757,214,0 +170768577804,213,0 +170768577852,214,0 +170768577900,214,0 +170768577948,214,0 +170768577996,214,0 +170768578044,214,0 +170768578091,214,0 +170768578141,214,0 +170768578189,215,0 +170768578238,214,0 +170768578288,215,0 +170768578337,215,0 +170768578385,215,0 +170768578433,215,0 +170768578481,215,0 +170768578531,214,0 +170768578578,214,0 +170768578628,214,0 +170768578676,214,0 +170768578725,214,0 +170768578773,214,0 +170768578821,214,0 +170768578869,215,0 +170768578917,215,0 +170768578965,215,0 +170768579013,215,0 +170768579061,215,0 +170768579109,215,0 +170768579157,215,0 +170768579204,215,0 +170768579254,215,0 +170768579302,215,0 +170768579350,215,0 +170768579398,215,0 +170768579445,214,0 +170768579493,214,0 +170768579541,214,0 +170768579589,214,0 +170768579637,214,0 +170768579685,214,0 +170768579734,214,0 +170768579782,215,0 +170768579830,215,0 +170768579878,215,0 +170768579926,214,0 +170768579976,215,0 +170768580024,215,0 +170768580073,215,0 +170768580121,215,0 +170768580169,215,0 +170768580216,215,0 +170768580264,215,0 +170768580314,213,0 +170768580362,213,0 +170768580411,213,0 +170768580459,213,0 +170768580507,213,0 +170768580554,213,0 +170768580602,214,0 +170768580650,214,0 +170768580698,214,0 +170768580746,214,0 +170768580793,214,0 +170768580841,214,0 +170768580889,214,0 +170768580937,215,0 +170768580986,215,0 +170768581036,215,0 +170768581084,215,0 +170768581132,214,0 +170768581179,213,0 +170768581227,212,0 +170768581275,213,0 +170768581323,213,0 +170768581371,213,0 +170768581419,213,0 +170768581467,213,0 +170768581517,213,0 +170768581565,213,0 +170768581614,214,0 +170768581662,214,0 +170768581710,214,0 +170768581758,214,0 +170768581806,215,0 +170768581854,214,0 +170768581902,214,0 +170768581951,215,0 +170768581999,213,0 +170768582047,213,0 +170768582095,212,0 +170768582143,213,0 +170768582190,213,0 +170768582240,213,0 +170768582289,213,0 +170768582337,213,0 +170768582387,213,0 +170768582435,214,0 +170768582483,214,0 +170768582532,214,0 +170768582580,214,0 +170768582628,214,0 +170768582676,214,0 +170768582725,214,0 +170768582773,215,0 +170768582821,215,0 +170768582869,213,0 +170768582918,213,0 +170768582968,213,0 +170768583016,213,0 +170768583064,213,0 +170768583112,213,0 +170768583161,213,0 +170768583211,214,0 +170768583259,214,0 +170768583307,214,0 +170768583355,214,0 +170768583402,214,0 +170768583452,214,0 +170768583502,214,0 +170768583549,214,0 +170768583597,215,0 +170768583645,215,0 +170768583693,214,0 +170768583741,212,0 +170768583789,213,0 +170768583837,213,0 +170768583885,213,0 +170768583933,213,0 +170768583982,213,0 +170768584030,213,0 +170768584080,214,0 +170768584128,214,0 +170768584176,214,0 +170768584224,214,0 +170768584272,214,0 +170768584319,214,0 +170768584367,215,0 +170768584417,214,0 +170768584465,215,0 +170768584514,214,0 +170768584564,213,0 +170768584613,212,0 +170768584663,213,0 +170768584711,213,0 +170768584759,213,0 +170768584806,214,0 +170768584854,213,0 +170768584902,213,0 +170768584950,214,0 +170768584998,214,0 +170768585046,214,0 +170768585096,215,0 +170768585143,214,0 +170768585191,215,0 +170768585239,215,0 +170768585287,215,0 +170768585335,215,0 +170768585382,214,0 +170768585432,213,0 +170768585480,213,0 +170768585528,213,0 +170768585577,213,0 +170768585625,213,0 +170768585673,213,0 +170768585720,213,0 +170768585768,213,0 +170768585816,214,0 +170768585864,213,0 +170768585912,214,0 +170768585961,215,0 +170768586009,214,0 +170768586057,215,0 +170768586104,214,0 +170768586152,214,0 +170768586200,215,0 +170768586248,213,0 +170768586296,213,0 +170768586344,213,0 +170768586392,213,0 +170768586439,213,0 +170768586489,213,0 +170768586538,213,0 +170768586586,213,0 +170768586636,214,0 +170768586684,214,0 +170768586732,214,0 +170768586780,214,0 +170768586828,214,0 +170768586876,215,0 +170768586925,214,0 +170768586973,215,0 +170768587021,214,0 +170768587070,214,0 +170768587120,213,0 +170768587168,213,0 +170768587216,213,0 +170768587264,213,0 +170768587312,213,0 +170768587361,213,0 +170768587411,213,0 +170768587458,213,0 +170768587508,214,0 +170768587557,214,0 +170768587607,214,0 +170768587656,214,0 +170768587704,214,0 +170768587752,214,0 +170768587800,215,0 +170768587848,214,0 +170768587896,214,0 +170768587944,213,0 +170768587992,213,0 +170768588041,213,0 +170768588089,213,0 +170768588138,213,0 +170768588188,214,0 +170768588237,214,0 +170768588287,214,0 +170768588336,214,0 +170768588386,214,0 +170768588434,214,0 +170768588482,215,0 +170768588530,215,0 +170768588577,215,0 +170768588627,215,0 +170768588676,215,0 +170768588726,214,0 +170768588775,214,0 +170768588823,214,0 +170768588871,214,0 +170768588919,214,0 +170768588967,214,0 +170768589014,214,0 +170768589062,214,0 +170768589110,215,0 +170768589159,214,0 +170768589207,215,0 +170768589255,215,0 +170768589303,215,0 +170768589351,215,0 +170768589398,215,0 +170768589446,215,0 +170768589494,215,0 +170768589542,215,0 +170768589590,214,0 +170768589639,214,0 +170768589687,214,0 +170768589735,214,0 +170768589784,214,0 +170768589832,214,0 +170768589880,215,0 +170768589928,215,0 +170768589976,214,0 +170768590026,215,0 +170768590075,215,0 +170768590123,215,0 +170768590171,215,0 +170768590221,215,0 +170768590270,215,0 +170768590319,215,0 +170768590367,215,0 +170768590415,214,0 +170768590463,214,0 +170768590511,214,0 +170768590561,214,0 +170768590610,215,0 +170768590658,215,0 +170768590706,214,0 +170768590754,215,0 +170768590802,215,0 +170768590850,215,0 +170768590898,215,0 +170768590947,215,0 +170768590995,215,0 +170768591043,215,0 +170768591092,215,0 +170768591142,215,0 +170768591191,215,0 +170768591241,214,0 +170768591290,214,0 +170768591338,214,0 +170768591386,213,0 +170768591434,214,0 +170768591482,214,0 +170768591530,214,0 +170768591578,214,0 +170768591625,215,0 +170768591673,214,0 +170768591721,215,0 +170768591769,215,0 +170768591817,215,0 +170768591865,215,0 +170768591912,215,0 +170768591960,215,0 +170768592010,215,0 +170768592058,215,0 +170768592107,213,0 +170768592155,213,0 +170768592204,213,0 +170768592252,213,0 +170768592300,214,0 +170768592348,214,0 +170768592396,214,0 +170768592444,214,0 +170768592491,214,0 +170768592541,214,0 +170768592590,214,0 +170768592640,215,0 +170768592688,215,0 +170768592736,215,0 +170768592784,215,0 +170768592832,215,0 +170768592879,215,0 +170768592927,214,0 +170768592975,213,0 +170768593025,213,0 +170768593073,213,0 +170768593122,214,0 +170768593170,214,0 +170768593218,214,0 +170768593266,214,0 +170768593314,214,0 +170768593362,214,0 +170768593412,214,0 +170768593461,215,0 +170768593511,215,0 +170768593558,215,0 +170768593608,215,0 +170768593656,215,0 +170768593704,214,0 +170768593752,214,0 +170768593801,213,0 +170768593851,213,0 +170768593898,213,0 +170768593948,214,0 +170768593998,214,0 +170768594045,214,0 +170768594093,214,0 +170768594143,214,0 +170768594191,215,0 +170768594239,215,0 +170768594286,215,0 +170768594334,215,0 +170768594384,215,0 +170768594432,215,0 +170768594480,215,0 +170768594528,215,0 +170768594576,215,0 +170768594623,213,0 +170768594673,213,0 +170768594721,213,0 +170768594770,213,0 +170768594820,214,0 +170768594868,214,0 +170768594916,214,0 +170768594965,214,0 +170768595013,215,0 +170768595061,214,0 +170768595109,215,0 +170768595158,215,0 +170768595208,215,0 +170768595256,215,0 +170768595305,215,0 +170768595353,214,0 +170768595401,215,0 +170768595449,213,0 +170768595497,213,0 +170768595545,213,0 +170768595595,213,0 +170768595643,213,0 +170768595690,213,0 +170768595738,213,0 +170768595788,213,0 +170768595836,214,0 +170768595883,214,0 +170768595931,214,0 +170768595981,214,0 +170768596029,214,0 +170768596078,214,0 +170768596126,215,0 +170768596174,215,0 +170768596222,215,0 +170768596270,215,0 +170768596318,215,0 +170768596367,215,0 +170768596415,215,0 +170768596463,215,0 +170768596511,215,0 +170768596559,215,0 +170768596607,215,0 +170768596656,214,0 +170768596704,213,0 +170768596752,213,0 +170768596800,213,0 +170768596848,213,0 +170768596896,214,0 +170768596943,214,0 +170768596991,214,0 +170768597039,214,0 +170768597088,214,0 +170768597136,214,0 +170768597184,215,0 +170768597232,215,0 +170768597279,214,0 +170768597327,215,0 +170768597375,215,0 +170768597423,215,0 +170768597472,214,0 +170768597520,213,0 +170768597570,213,0 +170768597618,213,0 +170768597666,213,0 +170768597715,213,0 +170768597763,213,0 +170768597812,214,0 +170768597860,214,0 +170768597910,214,0 +170768597958,214,0 +170768598006,214,0 +170768598054,214,0 +170768598103,214,0 +170768598151,214,0 +170768598199,215,0 +170768598247,215,0 +170768598295,214,0 +170768598343,213,0 +170768598391,213,0 +170768598439,213,0 +170768598486,213,0 +170768598534,213,0 +170768598582,213,0 +170768598632,214,0 +170768598680,214,0 +170768598728,214,0 +170768598777,214,0 +170768598827,214,0 +170768598876,215,0 +170768598925,215,0 +170768598975,215,0 +170768599023,215,0 +170768599072,215,0 +170768599120,214,0 +170768599168,215,0 +170768599218,213,0 +170768599266,213,0 +170768599313,213,0 +170768599361,213,0 +170768599411,214,0 +170768599459,214,0 +170768599507,214,0 +170768599556,214,0 +170768599604,214,0 +170768599652,214,0 +170768599700,214,0 +170768599748,215,0 +170768599796,215,0 +170768599844,215,0 +170768599893,215,0 +170768599941,214,0 +170768599989,215,0 +170768600037,213,0 +170768600085,213,0 +170768600132,213,0 +170768600180,213,0 +170768600228,213,0 +170768600276,214,0 +170768600324,214,0 +170768600373,214,0 +170768600422,214,0 +170768600470,214,0 +170768600518,215,0 +170768600566,215,0 +170768600614,215,0 +170768600662,215,0 +170768600711,215,0 +170768600759,214,0 +170768600807,214,0 +170768600854,213,0 +170768600902,213,0 +170768600950,213,0 +170768600998,213,0 +170768601046,213,0 +170768601094,214,0 +170768601142,214,0 +170768601189,214,0 +170768601237,214,0 +170768601285,214,0 +170768601333,215,0 +170768601381,215,0 +170768601428,215,0 +170768601478,214,0 +170768601527,215,0 +170768601575,215,0 +170768601623,215,0 +170768601671,215,0 +170768601719,213,0 +170768601767,213,0 +170768601814,213,0 +170768601862,213,0 +170768601912,214,0 +170768601961,214,0 +170768602011,214,0 +170768602059,214,0 +170768602108,215,0 +170768602156,215,0 +170768602206,215,0 +170768602253,215,0 +170768602303,215,0 +170768602351,215,0 +170768602399,215,0 +170768602448,215,0 +170768602498,215,0 +170768602547,213,0 +170768602595,214,0 +170768602643,214,0 +170768602693,214,0 +170768602740,214,0 +170768602790,214,0 +170768602839,214,0 +170768602887,214,0 +170768602937,215,0 +170768602985,215,0 +170768603034,215,0 +170768603082,215,0 +170768603130,215,0 +170768603178,215,0 +170768603226,215,0 +170768603274,215,0 +170768603322,214,0 +170768603370,214,0 +170768603417,213,0 +170768603465,214,0 +170768603513,213,0 +170768603561,214,0 +170768603611,214,0 +170768603659,214,0 +170768603706,214,0 +170768603756,214,0 +170768603804,214,0 +170768603853,215,0 +170768603901,215,0 +170768603949,215,0 +170768603999,215,0 +170768604048,215,0 +170768604098,215,0 +170768604147,215,0 +170768604195,213,0 +170768604245,213,0 +170768604292,213,0 +170768604342,213,0 +170768604390,213,0 +170768604438,213,0 +170768604486,213,0 +170768604534,214,0 +170768604581,214,0 +170768604631,214,0 +170768604679,214,0 +170768604727,214,0 +170768604774,214,0 +170768604822,214,0 +170768604870,214,0 +170768604918,215,0 +170768604966,214,0 +170768605014,214,0 +170768605061,213,0 +170768605109,213,0 +170768605157,213,0 +170768605205,213,0 +170768605253,213,0 +170768605301,213,0 +170768605348,214,0 +170768605396,214,0 +170768605444,214,0 +170768605492,214,0 +170768605540,214,0 +170768605588,214,0 +170768605637,215,0 +170768605686,214,0 +170768605734,215,0 +170768605782,214,0 +170768605832,214,0 +170768605880,213,0 +170768605928,213,0 +170768605975,213,0 +170768606023,213,0 +170768606071,213,0 +170768606119,213,0 +170768606167,213,0 +170768606215,213,0 +170768606264,214,0 +170768606312,214,0 +170768606362,214,0 +170768606410,216,0 +170768606458,215,0 +170768606505,214,0 +170768606553,214,0 +170768606601,215,0 +170768606649,215,0 +170768606697,213,0 +170768606745,213,0 +170768606793,213,0 +170768606840,213,0 +170768606888,213,0 +170768606936,213,0 +170768606984,213,0 +170768607033,214,0 +170768607081,214,0 +170768607129,214,0 +170768607177,214,0 +170768607224,214,0 +170768607272,214,0 +170768607320,215,0 +170768607368,215,0 +170768607416,215,0 +170768607464,215,0 +170768607512,214,0 +170768607560,213,0 +170768607609,213,0 +170768607657,213,0 +170768607705,213,0 +170768607753,213,0 +170768607801,213,0 +170768607849,213,0 +170768607898,214,0 +170768607946,214,0 +170768607994,214,0 +170768608042,214,0 +170768608090,215,0 +170768608138,215,0 +170768608186,215,0 +170768608235,215,0 +170768608283,215,0 +170768608333,214,0 +170768608380,213,0 +170768608428,213,0 +170768608476,213,0 +170768608526,213,0 +170768608574,213,0 +170768608622,213,0 +170768608671,213,0 +170768608719,214,0 +170768608767,214,0 +170768608815,214,0 +170768608863,214,0 +170768608911,214,0 +170768608958,215,0 +170768609008,215,0 +170768609056,215,0 +170768609104,215,0 +170768609152,215,0 +170768609200,213,0 +170768609248,213,0 +170768609296,213,0 +170768609343,214,0 +170768609391,214,0 +170768609439,214,0 +170768609487,214,0 +170768609536,214,0 +170768609584,214,0 +170768609632,214,0 +170768609680,215,0 +170768609728,215,0 +170768609777,215,0 +170768609825,215,0 +170768609875,215,0 +170768609923,215,0 +170768609970,214,0 +170768610018,214,0 +170768610066,213,0 +170768610114,214,0 +170768610162,214,0 +170768610211,214,0 +170768610259,214,0 +170768610309,214,0 +170768610357,214,0 +170768610404,214,0 +170768610452,215,0 +170768610500,215,0 +170768610550,215,0 +170768610598,215,0 +170768610647,215,0 +170768610695,215,0 +170768610743,215,0 +170768610791,215,0 +170768610839,214,0 +170768610888,214,0 +170768610936,214,0 +170768610984,214,0 +170768611033,214,0 +170768611081,214,0 +170768611131,214,0 +170768611180,214,0 +170768611230,214,0 +170768611278,215,0 +170768611326,215,0 +170768611375,215,0 +170768611425,215,0 +170768611473,215,0 +170768611521,215,0 +170768611569,215,0 +170768611618,215,0 +170768611666,215,0 +170768611714,214,0 +170768611763,214,0 +170768611811,214,0 +170768611859,214,0 +170768611907,214,0 +170768611957,214,0 +170768612005,214,0 +170768612053,215,0 +170768612100,215,0 +170768612148,215,0 +170768612196,215,0 +170768612246,215,0 +170768612294,215,0 +170768612343,215,0 +170768612393,215,0 +170768612441,215,0 +170768612488,215,0 +170768612538,215,0 +170768612586,214,0 +170768612635,214,0 +170768612683,214,0 +170768612733,214,0 +170768612780,214,0 +170768612828,214,0 +170768612876,214,0 +170768612924,214,0 +170768612972,215,0 +170768613021,215,0 +170768613069,215,0 +170768613119,215,0 +170768613167,215,0 +170768613216,215,0 +170768613266,215,0 +170768613315,215,0 +170768613363,215,0 +170768613411,215,0 +170768613460,214,0 +170768613508,214,0 +170768613558,214,0 +170768613606,214,0 +170768613654,214,0 +170768613703,215,0 +170768613751,214,0 +170768613799,215,0 +170768613847,215,0 +170768613896,215,0 +170768613944,215,0 +170768613992,215,0 +170768614042,215,0 +170768614090,215,0 +170768614137,215,0 +170768614187,215,0 +170768614235,215,0 +170768614284,214,0 +170768614334,213,0 +170768614382,214,0 +170768614429,214,0 +170768614479,214,0 +170768614527,214,0 +170768614575,214,0 +170768614623,214,0 +170768614671,214,0 +170768614720,215,0 +170768614768,214,0 +170768614816,216,0 +170768614865,215,0 +170768614915,215,0 +170768614963,215,0 +170768615012,215,0 +170768615060,215,0 +170768615108,214,0 +170768615157,213,0 +170768615205,213,0 +170768615253,213,0 +170768615303,213,0 +170768615352,213,0 +170768615400,214,0 +170768615448,214,0 +170768615496,214,0 +170768615544,214,0 +170768615593,214,0 +170768615641,214,0 +170768615689,215,0 +170768615737,215,0 +170768615787,215,0 +170768615835,215,0 +170768615883,215,0 +170768615931,215,0 +170768615979,214,0 +170768616027,213,0 +170768616074,213,0 +170768616122,213,0 +170768616172,213,0 +170768616220,213,0 +170768616267,213,0 +170768616315,214,0 +170768616363,214,0 +170768616413,214,0 +170768616461,214,0 +170768616510,214,0 +170768616560,214,0 +170768616609,214,0 +170768616659,215,0 +170768616706,215,0 +170768616756,215,0 +170768616804,215,0 +170768616853,213,0 +170768616901,213,0 +170768616949,213,0 +170768616999,213,0 +170768617047,214,0 +170768617095,214,0 +170768617142,214,0 +170768617190,214,0 +170768617238,214,0 +170768617286,214,0 +170768617334,215,0 +170768617383,214,0 +170768617431,215,0 +170768617481,215,0 +170768617529,215,0 +170768617577,215,0 +170768617625,215,0 +170768617672,215,0 +170768617720,213,0 +170768617768,213,0 +170768617818,213,0 +170768617867,214,0 +170768617915,214,0 +170768617963,214,0 +170768618011,214,0 +170768618059,214,0 +170768618107,215,0 +170768618154,215,0 +170768618202,215,0 +170768618250,215,0 +170768618298,215,0 +170768618346,215,0 +170768618394,215,0 +170768618442,215,0 +170768618489,215,0 +170768618537,214,0 +170768618585,213,0 +170768618633,213,0 +170768618681,213,0 +170768618729,213,0 +170768618776,213,0 +170768618824,214,0 +170768618872,214,0 +170768618920,214,0 +170768618968,214,0 +170768619016,214,0 +170768619064,215,0 +170768619111,214,0 +170768619159,214,0 +170768619209,215,0 +170768619257,215,0 +170768619306,214,0 +170768619354,215,0 +170768619402,213,0 +170768619450,213,0 +170768619498,213,0 +170768619546,213,0 +170768619594,213,0 +170768619642,214,0 +170768619690,213,0 +170768619738,214,0 +170768619785,214,0 +170768619833,214,0 +170768619881,214,0 +170768619931,214,0 +170768619979,215,0 +170768620028,215,0 +170768620076,215,0 +170768620124,215,0 +170768620172,215,0 +170768620220,215,0 +170768620269,213,0 +170768620317,213,0 +170768620365,213,0 +170768620413,213,0 +170768620461,213,0 +170768620509,213,0 +170768620558,213,0 +170768620606,214,0 +170768620654,214,0 +170768620702,214,0 +170768620750,214,0 +170768620798,214,0 +170768620845,214,0 +170768620893,215,0 +170768620943,215,0 +170768620991,215,0 +170768621040,214,0 +170768621088,215,0 +170768621136,213,0 +170768621186,213,0 +170768621234,213,0 +170768621283,214,0 +170768621331,213,0 +170768621379,214,0 +170768621427,214,0 +170768621475,214,0 +170768621523,214,0 +170768621570,214,0 +170768621618,214,0 +170768621666,215,0 +170768621714,214,0 +170768621762,215,0 +170768621810,215,0 +170768621858,215,0 +170768621906,215,0 +170768621953,214,0 +170768622001,213,0 +170768622049,213,0 +170768622097,213,0 +170768622145,213,0 +170768622193,214,0 +170768622242,214,0 +170768622290,214,0 +170768622340,214,0 +170768622389,214,0 +170768622437,214,0 +170768622485,215,0 +170768622535,215,0 +170768622583,215,0 +170768622630,215,0 +170768622678,215,0 +170768622728,215,0 +170768622777,215,0 +170768622825,214,0 +170768622873,213,0 +170768622921,213,0 +170768622969,214,0 +170768623017,214,0 +170768623065,214,0 +170768623113,214,0 +170768623161,214,0 +170768623209,214,0 +170768623257,215,0 +170768623306,215,0 +170768623354,215,0 +170768623403,215,0 +170768623451,215,0 +170768623499,215,0 +170768623547,215,0 +170768623595,214,0 +170768623644,214,0 +170768623692,214,0 +170768623740,213,0 +170768623790,214,0 +170768623838,214,0 +170768623887,214,0 +170768623935,214,0 +170768623983,214,0 +170768624033,215,0 +170768624082,214,0 +170768624131,215,0 +170768624179,215,0 +170768624227,215,0 +170768624275,215,0 +170768624322,215,0 +170768624370,215,0 +170768624420,215,0 +170768624468,215,0 +170768624516,214,0 +170768624563,214,0 +170768624611,214,0 +170768624659,214,0 +170768624707,214,0 +170768624755,214,0 +170768624804,214,0 +170768624852,214,0 +170768624900,214,0 +170768624950,215,0 +170768624998,215,0 +170768625046,215,0 +170768625094,215,0 +170768625142,215,0 +170768625191,215,0 +170768625240,215,0 +170768625288,215,0 +170768625336,214,0 +170768625384,214,0 +170768625432,214,0 +170768625480,214,0 +170768625528,214,0 +170768625576,214,0 +170768625624,214,0 +170768625672,214,0 +170768625719,214,0 +170768625767,215,0 +170768625815,215,0 +170768625863,215,0 +170768625911,215,0 +170768625959,215,0 +170768626007,215,0 +170768626055,215,0 +170768626102,215,0 +170768626152,215,0 +170768626200,214,0 +170768626248,213,0 +170768626297,213,0 +170768626347,213,0 +170768626396,213,0 +170768626446,213,0 +170768626494,214,0 +170768626542,214,0 +170768626591,214,0 +170768626639,214,0 +170768626687,214,0 +170768626735,214,0 +170768626785,214,0 +170768626834,215,0 +170768626882,215,0 +170768626930,215,0 +170768626979,214,0 +170768627027,215,0 +170768627075,214,0 +170768627125,213,0 +170768627173,213,0 +170768627221,213,0 +170768627268,213,0 +170768627316,214,0 +170768627364,214,0 +170768627412,214,0 +170768627460,214,0 +170768627508,214,0 +170768627555,214,0 +170768627605,215,0 +170768627653,215,0 +170768627701,215,0 +170768627749,215,0 +170768627796,215,0 +170768627844,215,0 +170768627892,214,0 +170768627940,213,0 +170768627988,213,0 +170768628036,213,0 +170768628084,213,0 +170768628131,213,0 +170768628179,213,0 +170768628227,213,0 +170768628275,214,0 +170768628324,214,0 +170768628372,214,0 +170768628420,214,0 +170768628468,215,0 +170768628517,214,0 +170768628565,215,0 +170768628615,214,0 +170768628663,215,0 +170768628710,214,0 +170768628758,214,0 +170768628806,213,0 +170768628854,213,0 +170768628902,213,0 +170768628950,213,0 +170768628998,213,0 +170768629045,213,0 +170768629093,214,0 +170768629143,214,0 +170768629191,214,0 +170768629239,214,0 +170768629286,214,0 +170768629334,214,0 +170768629384,214,0 +170768629432,215,0 +170768629479,215,0 +170768629529,215,0 +170768629577,214,0 +170768629626,215,0 +170768629674,213,0 +170768629724,213,0 +170768629771,213,0 +170768629821,213,0 +170768629869,213,0 +170768629916,213,0 +170768629964,214,0 +170768630012,214,0 +170768630060,214,0 +170768630108,214,0 +170768630156,214,0 +170768630204,214,0 +170768630251,214,0 +170768630299,215,0 +170768630349,215,0 +170768630396,215,0 +170768630444,215,0 +170768630492,213,0 +170768630540,213,0 +170768630588,213,0 +170768630636,213,0 +170768630684,213,0 +170768630731,213,0 +170768630779,214,0 +170768630827,214,0 +170768630875,214,0 +170768630923,214,0 +170768630972,214,0 +170768631020,215,0 +170768631068,214,0 +170768631116,214,0 +170768631165,215,0 +170768631215,214,0 +170768631264,215,0 +170768631312,214,0 +170768631360,213,0 +170768631409,213,0 +170768631457,213,0 +170768631505,213,0 +170768631553,213,0 +170768631601,214,0 +170768631649,214,0 +170768631698,214,0 +170768631746,214,0 +170768631794,214,0 +170768631842,214,0 +170768631890,215,0 +170768631937,215,0 +170768631985,215,0 +170768632033,215,0 +170768632081,215,0 +170768632129,215,0 +170768632177,214,0 +170768632224,213,0 +170768632272,213,0 +170768632320,213,0 +170768632368,213,0 +170768632416,213,0 +170768632464,214,0 +170768632513,214,0 +170768632561,214,0 +170768632609,214,0 +170768632657,214,0 +170768632705,215,0 +170768632752,214,0 +170768632800,214,0 +170768632848,215,0 +170768632896,215,0 +170768632944,215,0 +170768632992,215,0 +170768633041,214,0 +170768633091,213,0 +170768633138,213,0 +170768633186,213,0 +170768633234,213,0 +170768633282,214,0 +170768633330,214,0 +170768633378,214,0 +170768633427,214,0 +170768633475,214,0 +170768633523,214,0 +170768633573,214,0 +170768633621,214,0 +170768633669,215,0 +170768633717,215,0 +170768633765,214,0 +170768633813,214,0 +170768633862,214,0 +170768633910,213,0 +170768633958,213,0 +170768634008,213,0 +170768634057,213,0 +170768634105,213,0 +170768634155,213,0 +170768634202,213,0 +170768634250,214,0 +170768634300,214,0 +170768634348,214,0 +170768634397,214,0 +170768634445,214,0 +170768634493,214,0 +170768634541,214,0 +170768634589,214,0 +170768634637,215,0 +170768634685,215,0 +170768634732,214,0 +170768634780,213,0 +170768634828,213,0 +170768634878,213,0 +170768634926,213,0 +170768634974,213,0 +170768635023,214,0 +170768635071,214,0 +170768635119,214,0 +170768635167,214,0 +170768635215,214,0 +170768635264,215,0 +170768635312,214,0 +170768635362,214,0 +170768635410,214,0 +170768635457,215,0 +170768635505,215,0 +170768635553,215,0 +170768635601,215,0 +170768635649,214,0 +170768635696,214,0 +170768635744,214,0 +170768635792,214,0 +170768635840,214,0 +170768635888,214,0 +170768635936,214,0 +170768635983,215,0 +170768636031,215,0 +170768636080,215,0 +170768636128,215,0 +170768636176,215,0 +170768636225,215,0 +170768636275,215,0 +170768636323,215,0 +170768636371,215,0 +170768636418,215,0 +170768636466,214,0 +170768636514,213,0 +170768636562,214,0 +170768636610,214,0 +170768636658,214,0 +170768636705,214,0 +170768636753,214,0 +170768636801,215,0 +170768636851,215,0 +170768636898,215,0 +170768636946,215,0 +170768636994,215,0 +170768637042,215,0 +170768637090,215,0 +170768637137,215,0 +170768637185,215,0 +170768637233,215,0 +170768637283,215,0 +170768637330,214,0 +170768637378,214,0 +170768637428,214,0 +170768637476,214,0 +170768637523,214,0 +170768637573,214,0 +170768637621,215,0 +170768637668,215,0 +170768637716,215,0 +170768637766,215,0 +170768637814,215,0 +170768637861,215,0 +170768637909,215,0 +170768637957,215,0 +170768638005,215,0 +170768638053,216,0 +170768638101,215,0 +170768638148,214,0 +170768638196,213,0 +170768638244,214,0 +170768638292,214,0 +170768638340,214,0 +170768638388,214,0 +170768638436,214,0 +170768638483,214,0 +170768638533,214,0 +170768638582,214,0 +170768638630,214,0 +170768638678,215,0 +170768638726,215,0 +170768638774,215,0 +170768638822,216,0 +170768638871,215,0 +170768638921,215,0 +170768638970,215,0 +170768639018,213,0 +170768639066,213,0 +170768639114,213,0 +170768639162,213,0 +170768639210,214,0 +170768639257,214,0 +170768639305,214,0 +170768639355,214,0 +170768639403,214,0 +170768639451,214,0 +170768639499,214,0 +170768639547,214,0 +170768639594,215,0 +170768639642,214,0 +170768639690,215,0 +170768639738,215,0 +170768639786,215,0 +170768639833,215,0 +170768639881,213,0 +170768639929,213,0 +170768639977,213,0 +170768640025,213,0 +170768640074,213,0 +170768640122,213,0 +170768640170,214,0 +170768640218,213,0 +170768640266,214,0 +170768640313,214,0 +170768640361,214,0 +170768640409,214,0 +170768640457,214,0 +170768640505,215,0 +170768640553,215,0 +170768640601,215,0 +170768640650,215,0 +170768640698,215,0 +170768640746,213,0 +170768640794,213,0 +170768640841,213,0 +170768640889,213,0 +170768640937,213,0 +170768640985,213,0 +170768641033,213,0 +170768641081,213,0 +170768641130,214,0 +170768641178,214,0 +170768641226,214,0 +170768641274,214,0 +170768641322,214,0 +170768641371,214,0 +170768641421,214,0 +170768641469,215,0 +170768641517,214,0 +170768641565,214,0 +170768641613,213,0 +170768641662,212,0 +170768641710,213,0 +170768641758,213,0 +170768641807,213,0 +170768641855,213,0 +170768641903,213,0 +170768641953,213,0 +170768642002,213,0 +170768642050,213,0 +170768642098,214,0 +170768642146,214,0 +170768642194,214,0 +170768642242,214,0 +170768642290,214,0 +170768642338,214,0 +170768642385,214,0 +170768642435,213,0 +170768642483,212,0 +170768642531,212,0 +170768642580,213,0 +170768642628,213,0 +170768642676,213,0 +170768642724,213,0 +170768642772,213,0 +170768642821,214,0 +170768642869,214,0 +170768642917,214,0 +170768642965,214,0 +170768643013,214,0 +170768643061,214,0 +170768643109,214,0 +170768643157,215,0 +170768643204,215,0 +170768643252,214,0 +170768643300,213,0 +170768643348,213,0 +170768643397,213,0 +170768643447,213,0 +170768643495,213,0 +170768643543,213,0 +170768643591,213,0 +170768643639,213,0 +170768643688,214,0 +170768643736,214,0 +170768643786,214,0 +170768643833,214,0 +170768643883,214,0 +170768643931,215,0 +170768643979,215,0 +170768644028,215,0 +170768644076,214,0 +170768644124,214,0 +170768644172,213,0 +170768644220,213,0 +170768644268,213,0 +170768644317,213,0 +170768644365,213,0 +170768644413,214,0 +170768644461,214,0 +170768644509,214,0 +170768644557,214,0 +170768644605,214,0 +170768644653,214,0 +170768644700,214,0 +170768644748,214,0 +170768644796,215,0 +170768644844,215,0 +170768644893,214,0 +170768644943,214,0 +170768644991,213,0 +170768645039,213,0 +170768645087,213,0 +170768645134,213,0 +170768645182,213,0 +170768645230,213,0 +170768645278,214,0 +170768645326,214,0 +170768645375,214,0 +170768645423,214,0 +170768645471,214,0 +170768645520,214,0 +170768645570,215,0 +170768645618,214,0 +170768645667,215,0 +170768645715,215,0 +170768645763,215,0 +170768645811,215,0 +170768645859,213,0 +170768645907,213,0 +170768645955,213,0 +170768646002,213,0 +170768646050,214,0 +170768646098,214,0 +170768646146,214,0 +170768646194,214,0 +170768646243,214,0 +170768646291,214,0 +170768646339,214,0 +170768646388,215,0 +170768646436,215,0 +170768646484,215,0 +170768646532,215,0 +170768646581,215,0 +170768646629,215,0 +170768646677,214,0 +170768646727,214,0 +170768646775,214,0 +170768646823,214,0 +170768646872,214,0 +170768646922,214,0 +170768646969,214,0 +170768647017,214,0 +170768647065,214,0 +170768647113,214,0 +170768647161,215,0 +170768647209,215,0 +170768647257,215,0 +170768647305,215,0 +170768647353,215,0 +170768647401,215,0 +170768647451,214,0 +170768647500,215,0 +170768647549,215,0 +170768647597,214,0 +170768647645,214,0 +170768647693,214,0 +170768647741,214,0 +170768647789,214,0 +170768647837,215,0 +170768647885,215,0 +170768647933,215,0 +170768647980,215,0 +170768648028,215,0 +170768648078,215,0 +170768648127,215,0 +170768648175,215,0 +170768648223,215,0 +170768648271,215,0 +170768648319,215,0 +170768648367,214,0 +170768648416,214,0 +170768648464,214,0 +170768648512,214,0 +170768648560,214,0 +170768648608,214,0 +170768648658,214,0 +170768648707,215,0 +170768648755,215,0 +170768648805,215,0 +170768648853,215,0 +170768648901,215,0 +170768648949,215,0 +170768648996,215,0 +170768649044,215,0 +170768649094,215,0 +170768649142,215,0 +170768649191,215,0 +170768649241,214,0 +170768649289,213,0 +170768649337,213,0 +170768649385,213,0 +170768649433,214,0 +170768649482,214,0 +170768649530,214,0 +170768649579,214,0 +170768649629,214,0 +170768649677,214,0 +170768649725,215,0 +170768649773,215,0 +170768649820,215,0 +170768649870,215,0 +170768649918,215,0 +170768649966,215,0 +170768650013,215,0 +170768650061,215,0 +170768650109,215,0 +170768650157,213,0 +170768650207,213,0 +170768650255,214,0 +170768650303,214,0 +170768650351,214,0 +170768650400,214,0 +170768650448,214,0 +170768650496,214,0 +170768650544,214,0 +170768650593,214,0 +170768650641,215,0 +170768650689,215,0 +170768650737,215,0 +170768650786,215,0 +170768650834,215,0 +170768650882,215,0 +170768650930,215,0 +170768650978,213,0 +170768651026,214,0 +170768651074,214,0 +170768651123,214,0 +170768651171,214,0 +170768651219,214,0 +170768651267,214,0 +170768651316,214,0 +170768651364,215,0 +170768651412,215,0 +170768651462,215,0 +170768651509,215,0 +170768651557,215,0 +170768651605,215,0 +170768651653,215,0 +170768651701,215,0 +170768651749,215,0 +170768651797,216,0 +170768651845,213,0 +170768651893,213,0 +170768651941,213,0 +170768651989,213,0 +170768652038,214,0 +170768652088,214,0 +170768652135,214,0 +170768652183,214,0 +170768652231,214,0 +170768652279,215,0 +170768652329,215,0 +170768652378,215,0 +170768652426,215,0 +170768652474,215,0 +170768652523,215,0 +170768652571,215,0 +170768652621,215,0 +170768652670,214,0 +170768652718,213,0 +170768652768,213,0 +170768652816,213,0 +170768652864,213,0 +170768652912,213,0 +170768652960,213,0 +170768653008,214,0 +170768653056,214,0 +170768653105,214,0 +170768653153,214,0 +170768653201,215,0 +170768653249,214,0 +170768653297,215,0 +170768653347,215,0 +170768653395,214,0 +170768653443,215,0 +170768653492,214,0 +170768653540,213,0 +170768653588,213,0 +170768653638,213,0 +170768653686,213,0 +170768653735,213,0 +170768653783,214,0 +170768653831,214,0 +170768653879,214,0 +170768653927,214,0 +170768653975,214,0 +170768654024,214,0 +170768654074,214,0 +170768654123,214,0 +170768654173,215,0 +170768654221,215,0 +170768654269,215,0 +170768654316,214,0 +170768654364,215,0 +170768654412,213,0 +170768654460,213,0 +170768654508,213,0 +170768654556,213,0 +170768654603,213,0 +170768654651,213,0 +170768654699,213,0 +170768654747,213,0 +170768654795,214,0 +170768654843,214,0 +170768654890,214,0 +170768654938,214,0 +170768654986,214,0 +170768655034,215,0 +170768655082,215,0 +170768655130,215,0 +170768655177,215,0 +170768655225,214,0 +170768655273,213,0 +170768655323,213,0 +170768655370,213,0 +170768655418,213,0 +170768655466,213,0 +170768655514,213,0 +170768655562,213,0 +170768655610,214,0 +170768655658,214,0 +170768655705,214,0 +170768655753,214,0 +170768655801,214,0 +170768655849,214,0 +170768655897,215,0 +170768655945,215,0 +170768655993,214,0 +170768656041,214,0 +170768656088,214,0 +170768656136,213,0 +170768656184,213,0 +170768656232,213,0 +170768656280,213,0 +170768656327,213,0 +170768656375,213,0 +170768656423,214,0 +170768656471,214,0 +170768656520,214,0 +170768656568,214,0 +170768656618,214,0 +170768656666,214,0 +170768656713,215,0 +170768656761,215,0 +170768656809,215,0 +170768656857,214,0 +170768656905,214,0 +170768656953,214,0 +170768657000,213,0 +170768657048,213,0 +170768657096,213,0 +170768657144,213,0 +170768657192,213,0 +170768657240,213,0 +170768657289,214,0 +170768657337,214,0 +170768657385,214,0 +170768657433,214,0 +170768657481,214,0 +170768657530,214,0 +170768657578,214,0 +170768657626,214,0 +170768657674,215,0 +170768657721,214,0 +170768657769,214,0 +170768657817,214,0 +170768657865,213,0 +170768657913,213,0 +170768657961,213,0 +170768658008,213,0 +170768658056,213,0 +170768658104,214,0 +170768658152,214,0 +170768658200,214,0 +170768658249,214,0 +170768658299,214,0 +170768658348,214,0 +170768658396,214,0 +170768658445,214,0 +170768658495,215,0 +170768658543,215,0 +170768658591,215,0 +170768658640,215,0 +170768658688,213,0 +170768658736,213,0 +170768658784,213,0 +170768658832,213,0 +170768658880,214,0 +170768658928,214,0 +170768658977,214,0 +170768659027,214,0 +170768659076,214,0 +170768659126,214,0 +170768659174,214,0 +170768659222,214,0 +170768659270,215,0 +170768659319,215,0 +170768659367,215,0 +170768659415,215,0 +170768659463,214,0 +170768659511,214,0 +170768659559,213,0 +170768659607,213,0 +170768659654,213,0 +170768659702,213,0 +170768659750,213,0 +170768659798,213,0 +170768659846,214,0 +170768659894,214,0 +170768659942,214,0 +170768659991,214,0 +170768660039,214,0 +170768660087,215,0 +170768660135,215,0 +170768660182,215,0 +170768660230,215,0 +170768660278,215,0 +170768660326,215,0 +170768660374,214,0 +170768660422,213,0 +170768660470,213,0 +170768660518,213,0 +170768660567,213,0 +170768660615,213,0 +170768660663,213,0 +170768660711,214,0 +170768660759,214,0 +170768660807,214,0 +170768660854,214,0 +170768660902,215,0 +170768660950,215,0 +170768660998,215,0 +170768661046,215,0 +170768661094,215,0 +170768661143,215,0 +170768661193,215,0 +170768661242,214,0 +170768661290,213,0 +170768661338,213,0 +170768661388,213,0 +170768661435,214,0 +170768661483,214,0 +170768661531,214,0 +170768661581,214,0 +170768661629,214,0 +170768661678,215,0 +170768661726,214,0 +170768661774,215,0 +170768661824,215,0 +170768661871,215,0 +170768661919,215,0 +170768661969,215,0 +170768662018,215,0 +170768662068,215,0 +170768662116,213,0 +170768662165,213,0 +170768662215,213,0 +170768662264,213,0 +170768662314,214,0 +170768662361,214,0 +170768662409,214,0 +170768662459,214,0 +170768662507,214,0 +170768662555,214,0 +170768662603,215,0 +170768662651,215,0 +170768662699,215,0 +170768662746,215,0 +170768662796,215,0 +170768662844,215,0 +170768662892,214,0 +170768662940,214,0 +170768662988,213,0 +170768663036,213,0 +170768663085,213,0 +170768663135,213,0 +170768663183,213,0 +170768663230,213,0 +170768663278,214,0 +170768663326,214,0 +170768663374,214,0 +170768663422,214,0 +170768663470,214,0 +170768663518,214,0 +170768663566,215,0 +170768663614,215,0 +170768663663,215,0 +170768663713,215,0 +170768663762,214,0 +170768663810,214,0 +170768663858,213,0 +170768663906,213,0 +170768663956,213,0 +170768664004,213,0 +170768664053,213,0 +170768664101,213,0 +170768664149,213,0 +170768664199,213,0 +170768664248,214,0 +170768664297,214,0 +170768664347,214,0 +170768664396,214,0 +170768664446,214,0 +170768664495,214,0 +170768664543,215,0 +170768664593,214,0 +170768664641,214,0 +170768664689,213,0 +170768664738,213,0 +170768664786,213,0 +170768664836,213,0 +170768664885,213,0 +170768664935,213,0 +170768664984,214,0 +170768665034,214,0 +170768665083,214,0 +170768665131,214,0 +170768665179,214,0 +170768665227,214,0 +170768665276,215,0 +170768665324,215,0 +170768665372,215,0 +170768665422,214,0 +170768665470,215,0 +170768665518,214,0 +170768665566,213,0 +170768665614,213,0 +170768665662,213,0 +170768665709,213,0 +170768665757,214,0 +170768665805,214,0 +170768665853,214,0 +170768665901,214,0 +170768665949,214,0 +170768665999,214,0 +170768666047,214,0 +170768666096,215,0 +170768666144,215,0 +170768666193,215,0 +170768666243,215,0 +170768666292,215,0 +170768666340,215,0 +170768666388,213,0 +170768666438,213,0 +170768666486,214,0 +170768666534,213,0 +170768666583,214,0 +170768666631,214,0 +170768666681,214,0 +170768666730,214,0 +170768666778,214,0 +170768666828,215,0 +170768666876,215,0 +170768666924,215,0 +170768666972,215,0 +170768667020,215,0 +170768667069,215,0 +170768667117,215,0 +170768667165,214,0 +170768667213,214,0 +170768667263,214,0 +170768667311,214,0 +170768667360,214,0 +170768667408,214,0 +170768667456,214,0 +170768667505,214,0 +170768667553,214,0 +170768667601,214,0 +170768667649,215,0 +170768667697,215,0 +170768667745,215,0 +170768667793,215,0 +170768667843,215,0 +170768667890,215,0 +170768667938,215,0 +170768667988,215,0 +170768668037,215,0 +170768668087,214,0 +170768668135,213,0 +170768668183,214,0 +170768668232,214,0 +170768668280,214,0 +170768668330,214,0 +170768668377,214,0 +170768668425,214,0 +170768668473,214,0 +170768668523,214,0 +170768668571,215,0 +170768668619,215,0 +170768668667,215,0 +170768668715,215,0 +170768668763,215,0 +170768668811,215,0 +170768668860,215,0 +170768668908,214,0 +170768668957,213,0 +170768669007,213,0 +170768669055,214,0 +170768669104,213,0 +170768669152,214,0 +170768669202,214,0 +170768669250,214,0 +170768669298,214,0 +170768669346,214,0 +170768669395,214,0 +170768669445,215,0 +170768669493,214,0 +170768669541,215,0 +170768669589,215,0 +170768669637,215,0 +170768669686,214,0 +170768669734,214,0 +170768669783,214,0 +170768669833,213,0 +170768669881,214,0 +170768669929,214,0 +170768669977,213,0 +170768670026,214,0 +170768670074,214,0 +170768670122,214,0 +170768670170,214,0 +170768670218,214,0 +170768670266,214,0 +170768670314,215,0 +170768670362,215,0 +170768670410,215,0 +170768670458,215,0 +170768670506,216,0 +170768670553,215,0 +170768670601,215,0 +170768670651,214,0 +170768670700,214,0 +170768670748,214,0 +170768670796,214,0 +170768670844,214,0 +170768670894,214,0 +170768670942,214,0 +170768670989,215,0 +170768671039,214,0 +170768671087,215,0 +170768671135,215,0 +170768671183,215,0 +170768671231,215,0 +170768671279,215,0 +170768671328,215,0 +170768671378,215,0 +170768671425,215,0 +170768671473,215,0 +170768671521,214,0 +170768671571,214,0 +170768671619,214,0 +170768671666,214,0 +170768671714,214,0 +170768671762,214,0 +170768671811,214,0 +170768671859,215,0 +170768671907,215,0 +170768671957,215,0 +170768672006,215,0 +170768672054,215,0 +170768672102,215,0 +170768672152,215,0 +170768672201,215,0 +170768672249,215,0 +170768672298,215,0 +170768672346,215,0 +170768672394,214,0 +170768672444,214,0 +170768672492,214,0 +170768672540,214,0 +170768672588,214,0 +170768672635,214,0 +170768672685,214,0 +170768672734,215,0 +170768672784,215,0 +170768672832,215,0 +170768672880,215,0 +170768672928,215,0 +170768672977,215,0 +170768673025,215,0 +170768673073,215,0 +170768673122,215,0 +170768673172,215,0 +170768673220,214,0 +170768673269,213,0 +170768673319,213,0 +170768673367,214,0 +170768673414,214,0 +170768673462,214,0 +170768673510,214,0 +170768673560,214,0 +170768673608,214,0 +170768673656,215,0 +170768673705,215,0 +170768673753,215,0 +170768673803,215,0 +170768673850,215,0 +170768673898,215,0 +170768673946,215,0 +170768673994,215,0 +170768674042,214,0 +170768674090,213,0 +170768674138,213,0 +170768674185,213,0 +170768674233,213,0 +170768674281,213,0 +170768674330,213,0 +170768674380,213,0 +170768674427,214,0 +170768674475,214,0 +170768674523,214,0 +170768674571,214,0 +170768674619,214,0 +170768674667,215,0 +170768674714,215,0 +170768674762,215,0 +170768674810,215,0 +170768674858,214,0 +170768674905,214,0 +170768674953,213,0 +170768675001,213,0 +170768675049,213,0 +170768675097,213,0 +170768675146,213,0 +170768675194,213,0 +170768675242,214,0 +170768675290,214,0 +170768675338,213,0 +170768675386,214,0 +170768675433,214,0 +170768675481,214,0 +170768675529,214,0 +170768675578,214,0 +170768675626,215,0 +170768675674,215,0 +170768675722,214,0 +170768675770,215,0 +170768675818,213,0 +170768675866,212,0 +170768675914,213,0 +170768675961,213,0 +170768676011,213,0 +170768676059,213,0 +170768676106,213,0 +170768676154,214,0 +170768676202,214,0 +170768676252,214,0 +170768676299,214,0 +170768676349,214,0 +170768676397,214,0 +170768676444,214,0 +170768676492,215,0 +170768676540,215,0 +170768676588,215,0 +170768676636,214,0 +170768676684,213,0 +170768676731,213,0 +170768676779,213,0 +170768676827,213,0 +170768676875,213,0 +170768676923,213,0 +170768676971,214,0 +170768677020,214,0 +170768677068,214,0 +170768677116,214,0 +170768677164,214,0 +170768677211,214,0 +170768677259,214,0 +170768677307,214,0 +170768677355,214,0 +170768677403,215,0 +170768677451,214,0 +170768677498,213,0 +170768677546,213,0 +170768677594,213,0 +170768677642,213,0 +170768677690,213,0 +170768677737,213,0 +170768677785,214,0 +170768677833,214,0 +170768677881,214,0 +170768677929,214,0 +170768677977,214,0 +170768678024,214,0 +170768678072,215,0 +170768678120,215,0 +170768678168,215,0 +170768678218,214,0 +170768678267,215,0 +170768678315,215,0 +170768678365,213,0 +170768678414,213,0 +170768678464,213,0 +170768678513,213,0 +170768678561,214,0 +170768678609,213,0 +170768678658,214,0 +170768678706,214,0 +170768678754,214,0 +170768678802,214,0 +170768678850,214,0 +170768678899,214,0 +170768678947,214,0 +170768678997,214,0 +170768679045,215,0 +170768679094,215,0 +170768679142,215,0 +170768679191,214,0 +170768679239,213,0 +170768679289,213,0 +170768679337,213,0 +170768679385,213,0 +170768679433,213,0 +170768679482,213,0 +170768679530,214,0 +170768679578,214,0 +170768679628,214,0 +170768679676,214,0 +170768679724,214,0 +170768679772,215,0 +170768679819,215,0 +170768679867,214,0 +170768679917,215,0 +170768679965,215,0 +170768680013,215,0 +170768680062,213,0 +170768680110,213,0 +170768680158,213,0 +170768680206,213,0 +170768680255,213,0 +170768680303,213,0 +170768680351,213,0 +170768680399,213,0 +170768680447,214,0 +170768680495,214,0 +170768680545,214,0 +170768680592,214,0 +170768680640,214,0 +170768680690,214,0 +170768680738,215,0 +170768680786,215,0 +170768680834,215,0 +170768680882,214,0 +170768680930,213,0 +170768680979,213,0 +170768681029,213,0 +170768681077,213,0 +170768681126,213,0 +170768681176,214,0 +170768681225,214,0 +170768681275,214,0 +170768681322,214,0 +170768681372,214,0 +170768681420,215,0 +170768681468,215,0 +170768681516,215,0 +170768681564,215,0 +170768681613,215,0 +170768681663,215,0 +170768681712,215,0 +170768681760,213,0 +170768681808,213,0 +170768681857,213,0 +170768681907,214,0 +170768681955,214,0 +170768682003,214,0 +170768682050,214,0 +170768682098,214,0 +170768682146,216,0 +170768682194,214,0 +170768682242,215,0 +170768682292,215,0 +170768682339,215,0 +170768682387,215,0 +170768682437,215,0 +170768682485,215,0 +170768682533,215,0 +170768682582,215,0 +170768682630,214,0 +170768682678,214,0 +170768682726,214,0 +170768682774,214,0 +170768682824,214,0 +170768682872,214,0 +170768682921,214,0 +170768682969,214,0 +170768683017,214,0 +170768683066,214,0 +170768683114,214,0 +170768683162,215,0 +170768683210,215,0 +170768683258,215,0 +170768683306,215,0 +170768683356,215,0 +170768683405,215,0 +170768683454,214,0 +170768683502,214,0 +170768683550,214,0 +170768683598,214,0 +170768683648,214,0 +170768683697,214,0 +170768683747,214,0 +170768683795,214,0 +170768683843,216,0 +170768683891,215,0 +170768683939,215,0 +170768683987,215,0 +170768684036,215,0 +170768684084,215,0 +170768684134,215,0 +170768684182,215,0 +170768684231,215,0 +170768684279,215,0 +170768684327,214,0 +170768684377,213,0 +170768684424,214,0 +170768684472,214,0 +170768684520,214,0 +170768684568,214,0 +170768684616,214,0 +170768684664,214,0 +170768684714,215,0 +170768684763,215,0 +170768684813,215,0 +170768684860,215,0 +170768684908,215,0 +170768684958,215,0 +170768685006,215,0 +170768685055,215,0 +170768685105,215,0 +170768685155,215,0 +170768685202,214,0 +170768685252,213,0 +170768685301,214,0 +170768685351,214,0 +170768685399,214,0 +170768685447,214,0 +170768685495,214,0 +170768685543,214,0 +170768685591,214,0 +170768685639,215,0 +170768685686,215,0 +170768685736,215,0 +170768685784,215,0 +170768685833,215,0 +170768685881,215,0 +170768685931,215,0 +170768685980,214,0 +170768686030,214,0 +170768686078,213,0 +170768686126,213,0 +170768686175,213,0 +170768686223,214,0 +170768686273,214,0 +170768686320,214,0 +170768686368,214,0 +170768686416,214,0 +170768686464,214,0 +170768686512,214,0 +170768686560,215,0 +170768686608,215,0 +170768686658,215,0 +170768686707,215,0 +170768686757,214,0 +170768686805,215,0 +170768686852,215,0 +170768686900,213,0 +170768686948,213,0 +170768686997,213,0 +170768687045,213,0 +170768687093,214,0 +170768687141,214,0 +170768687191,214,0 +170768687240,214,0 +170768687290,214,0 +170768687339,214,0 +170768687387,215,0 +170768687437,215,0 +170768687485,215,0 +170768687532,215,0 +170768687582,215,0 +170768687630,215,0 +170768687678,215,0 +170768687725,214,0 +170768687773,213,0 +170768687821,213,0 +170768687869,213,0 +170768687918,213,0 +170768687966,214,0 +170768688014,214,0 +170768688062,214,0 +170768688110,214,0 +170768688157,214,0 +170768688205,214,0 +170768688253,215,0 +170768688301,215,0 +170768688349,215,0 +170768688398,215,0 +170768688446,215,0 +170768688494,215,0 +170768688542,215,0 +170768688590,215,0 +170768688638,213,0 +170768688685,213,0 +170768688733,213,0 +170768688781,213,0 +170768688829,213,0 +170768688877,213,0 +170768688926,214,0 +170768688974,214,0 +170768689022,214,0 +170768689070,214,0 +170768689118,214,0 +170768689168,214,0 +170768689215,214,0 +170768689263,215,0 +170768689313,215,0 +170768689361,215,0 +170768689409,215,0 +170768689457,214,0 +170768689505,213,0 +170768689552,213,0 +170768689600,213,0 +170768689648,213,0 +170768689696,213,0 +170768689744,213,0 +170768689792,213,0 +170768689840,213,0 +170768689888,214,0 +170768689937,214,0 +170768689987,214,0 +170768690035,215,0 +170768690083,214,0 +170768690132,215,0 +170768690182,215,0 +170768690230,215,0 +170768690277,215,0 +170768690325,213,0 +170768690373,213,0 +170768690423,213,0 +170768690471,213,0 +170768690519,213,0 +170768690568,213,0 +170768690616,213,0 +170768690664,214,0 +170768690711,214,0 +170768690759,214,0 +170768690807,214,0 +170768690855,214,0 +170768690903,214,0 +170768690953,215,0 +170768691002,214,0 +170768691051,215,0 +170768691099,215,0 +170768691149,214,0 +170768691197,213,0 +170768691245,213,0 +170768691294,213,0 +170768691342,213,0 +170768691390,214,0 +170768691438,214,0 +170768691486,214,0 +170768691534,214,0 +170768691583,214,0 +170768691631,214,0 +170768691681,215,0 +170768691729,214,0 +170768691778,215,0 +170768691826,215,0 +170768691874,214,0 +170768691923,215,0 +170768691973,214,0 +170768692021,214,0 +170768692070,213,0 +170768692120,213,0 +170768692168,213,0 +170768692217,213,0 +170768692265,214,0 +170768692313,214,0 +170768692362,214,0 +170768692410,214,0 +170768692460,214,0 +170768692508,214,0 +170768692556,215,0 +170768692604,214,0 +170768692652,215,0 +170768692701,215,0 +170768692751,215,0 +170768692798,214,0 +170768692846,215,0 +170768692894,213,0 +170768692942,213,0 +170768692990,213,0 +170768693039,214,0 +170768693087,214,0 +170768693135,214,0 +170768693183,214,0 +170768693231,214,0 +170768693280,214,0 +170768693328,214,0 +170768693376,214,0 +170768693424,215,0 +170768693472,214,0 +170768693520,214,0 +170768693568,214,0 +170768693616,214,0 +170768693664,214,0 +170768693711,214,0 +170768693759,213,0 +170768693809,213,0 +170768693857,213,0 +170768693905,214,0 +170768693953,214,0 +170768694001,213,0 +170768694050,214,0 +170768694098,214,0 +170768694146,214,0 +170768694194,215,0 +170768694242,214,0 +170768694291,214,0 +170768694339,214,0 +170768694387,214,0 +170768694435,215,0 +170768694484,214,0 +170768694532,214,0 +170768694580,214,0 +170768694630,213,0 +170768694677,213,0 +170768694727,213,0 +170768694775,214,0 +170768694824,214,0 +170768694872,214,0 +170768694921,214,0 +170768694971,214,0 +170768695019,214,0 +170768695067,214,0 +170768695115,214,0 +170768695164,214,0 +170768695213,215,0 +170768695261,215,0 +170768695309,215,0 +170768695359,215,0 +170768695407,215,0 +170768695454,214,0 +170768695502,214,0 +170768695550,214,0 +170768695598,214,0 +170768695646,214,0 +170768695694,214,0 +170768695742,214,0 +170768695790,214,0 +170768695837,215,0 +170768695885,215,0 +170768695933,215,0 +170768695983,215,0 +170768696031,215,0 +170768696080,215,0 +170768696128,215,0 +170768696177,215,0 +170768696227,215,0 +170768696275,215,0 +170768696323,214,0 +170768696371,214,0 +170768696419,214,0 +170768696468,214,0 +170768696516,214,0 +170768696564,214,0 +170768696612,215,0 +170768696660,215,0 +170768696709,215,0 +170768696759,215,0 +170768696807,215,0 +170768696855,215,0 +170768696904,215,0 +170768696952,215,0 +170768697002,215,0 +170768697051,215,0 +170768697099,215,0 +170768697147,215,0 +170768697195,214,0 +170768697245,214,0 +170768697292,214,0 +170768697340,214,0 +170768697388,214,0 +170768697436,214,0 +170768697484,215,0 +170768697534,215,0 +170768697583,215,0 +170768697631,215,0 +170768697679,215,0 +170768697728,215,0 +170768697778,215,0 +170768697826,215,0 +170768697874,215,0 +170768697923,215,0 +170768697971,215,0 +170768698021,214,0 +170768698069,214,0 +170768698116,214,0 +170768698166,214,0 +170768698214,214,0 +170768698262,214,0 +170768698310,214,0 +170768698358,214,0 +170768698406,215,0 +170768698454,215,0 +170768698503,215,0 +170768698553,215,0 +170768698601,215,0 +170768698649,215,0 +170768698698,215,0 +170768698748,215,0 +170768698797,215,0 +170768698845,215,0 +170768698894,213,0 +170768698942,213,0 +170768698990,213,0 +170768699038,214,0 +170768699086,214,0 +170768699135,214,0 +170768699183,214,0 +170768699233,214,0 +170768699281,214,0 +170768699329,215,0 +170768699377,215,0 +170768699427,215,0 +170768699475,215,0 +170768699523,215,0 +170768699571,215,0 +170768699618,215,0 +170768699666,215,0 +170768699716,214,0 +170768699765,213,0 +170768699813,213,0 +170768699861,213,0 +170768699910,214,0 +170768699958,214,0 +170768700006,214,0 +170768700054,214,0 +170768700102,214,0 +170768700152,214,0 +170768700200,214,0 +170768700249,215,0 +170768700297,215,0 +170768700347,215,0 +170768700395,215,0 +170768700443,215,0 +170768700490,215,0 +170768700538,215,0 +170768700586,213,0 +170768700634,213,0 +170768700684,213,0 +170768700732,213,0 +170768700779,213,0 +170768700827,213,0 +170768700877,214,0 +170768700925,214,0 +170768700973,214,0 +170768701020,214,0 +170768701070,214,0 +170768701118,215,0 +170768701166,214,0 +170768701214,215,0 +170768701262,215,0 +170768701311,215,0 +170768701359,215,0 +170768701407,215,0 +170768701455,213,0 +170768701503,213,0 +170768701551,213,0 +170768701599,213,0 +170768701647,213,0 +170768701696,213,0 +170768701744,214,0 +170768701792,214,0 +170768701840,214,0 +170768701888,214,0 +170768701937,215,0 +170768701985,214,0 +170768702033,214,0 +170768702082,215,0 +170768702130,215,0 +170768702178,215,0 +170768702227,215,0 +170768702275,214,0 +170768702323,213,0 +170768702371,213,0 +170768702419,213,0 +170768702467,213,0 +170768702515,213,0 +170768702564,213,0 +170768702612,213,0 +170768702662,213,0 +170768702709,213,0 +170768702757,213,0 +170768702807,214,0 +170768702855,214,0 +170768702903,214,0 +170768702951,214,0 +170768702998,214,0 +170768703046,214,0 +170768703096,214,0 +170768703144,213,0 +170768703192,213,0 +170768703239,213,0 +170768703287,213,0 +170768703337,213,0 +170768703386,213,0 +170768703434,213,0 +170768703482,213,0 +170768703532,214,0 +170768703581,214,0 +170768703629,214,0 +170768703678,214,0 +170768703728,214,0 +170768703776,215,0 +170768703825,215,0 +170768703873,215,0 +170768703921,215,0 +170768703969,215,0 +170768704017,213,0 +170768704067,213,0 +170768704115,213,0 +170768704163,213,0 +170768704210,213,0 +170768704258,213,0 +170768704306,213,0 +170768704356,213,0 +170768704405,214,0 +170768704455,214,0 +170768704503,214,0 +170768704552,214,0 +170768704600,214,0 +170768704648,214,0 +170768704696,215,0 +170768704744,214,0 +170768704793,215,0 +170768704843,214,0 +170768704891,213,0 +170768704938,213,0 +170768704988,213,0 +170768705036,213,0 +170768705085,213,0 +170768705133,214,0 +170768705181,214,0 +170768705231,214,0 +170768705278,214,0 +170768705326,214,0 +170768705374,214,0 +170768705424,214,0 +170768705472,214,0 +170768705520,215,0 +170768705568,215,0 +170768705617,215,0 +170768705667,214,0 +170768705714,213,0 +170768705762,213,0 +170768705810,213,0 +170768705858,213,0 +170768705908,214,0 +170768705956,214,0 +170768706005,214,0 +170768706053,214,0 +170768706103,214,0 +170768706151,214,0 +170768706200,214,0 +170768706248,215,0 +170768706298,215,0 +170768706346,215,0 +170768706393,215,0 +170768706441,215,0 +170768706491,215,0 +170768706539,214,0 +170768706588,214,0 +170768706638,214,0 +170768706686,214,0 +170768706735,214,0 +170768706783,214,0 +170768706831,214,0 +170768706879,214,0 +170768706927,215,0 +170768706975,215,0 +170768707023,215,0 +170768707071,215,0 +170768707119,215,0 +170768707167,215,0 +170768707215,215,0 +170768707263,215,0 +170768707312,215,0 +170768707360,215,0 +170768707408,214,0 +170768707456,214,0 +170768707504,214,0 +170768707552,215,0 +170768707600,214,0 +170768707648,215,0 +170768707698,215,0 +170768707746,215,0 +170768707794,215,0 +170768707841,215,0 +170768707891,215,0 +170768707939,215,0 +170768707987,215,0 +170768708034,215,0 +170768708082,215,0 +170768708130,215,0 +170768708178,215,0 +170768708226,214,0 +170768708274,214,0 +170768708323,214,0 +170768708371,214,0 +170768708421,214,0 +170768708468,214,0 +170768708516,214,0 +170768708564,214,0 +170768708612,215,0 +170768708660,214,0 +170768708708,215,0 +170768708757,215,0 +170768708805,215,0 +170768708853,215,0 +170768708901,215,0 +170768708949,215,0 +170768708999,215,0 +170768709048,215,0 +170768709096,215,0 +170768709144,214,0 +170768709191,214,0 +170768709239,214,0 +170768709287,214,0 +170768709337,214,0 +170768709385,214,0 +170768709434,215,0 +170768709482,214,0 +170768709532,215,0 +170768709581,215,0 +170768709629,215,0 +170768709677,215,0 +170768709726,215,0 +170768709776,215,0 +170768709824,215,0 +170768709872,215,0 +170768709921,215,0 +170768709969,214,0 +170768710017,214,0 +170768710067,214,0 +170768710114,214,0 +170768710164,214,0 +170768710213,214,0 +170768710261,214,0 +170768710309,214,0 +170768710357,214,0 +170768710407,214,0 +170768710455,215,0 +170768710502,215,0 +170768710550,215,0 +170768710598,215,0 +170768710646,215,0 +170768710694,215,0 +170768710742,215,0 +170768710790,214,0 +170768710838,213,0 +170768710886,213,0 +170768710934,213,0 +170768710982,214,0 +170768711031,214,0 +170768711079,214,0 +170768711127,214,0 +170768711175,214,0 +170768711223,214,0 +170768711272,214,0 +170768711320,215,0 +170768711370,215,0 +170768711418,215,0 +170768711465,215,0 +170768711513,215,0 +170768711561,215,0 +170768711609,215,0 +170768711657,214,0 +170768711705,213,0 +170768711752,213,0 +170768711802,213,0 +170768711850,213,0 +170768711898,214,0 +170768711946,214,0 +170768711995,214,0 +170768712043,214,0 +170768712091,214,0 +170768712139,215,0 +170768712186,215,0 +170768712236,215,0 +170768712284,215,0 +170768712332,215,0 +170768712380,215,0 +170768712428,215,0 +170768712475,215,0 +170768712523,215,0 +170768712571,214,0 +170768712619,213,0 +170768712667,213,0 +170768712714,213,0 +170768712762,214,0 +170768712810,214,0 +170768712858,214,0 +170768712905,214,0 +170768712953,214,0 +170768713003,214,0 +170768713050,215,0 +170768713098,215,0 +170768713146,215,0 +170768713194,215,0 +170768713242,215,0 +170768713290,215,0 +170768713337,215,0 +170768713385,214,0 +170768713433,213,0 +170768713481,213,0 +170768713529,213,0 +170768713578,213,0 +170768713626,213,0 +170768713674,214,0 +170768713722,214,0 +170768713770,214,0 +170768713819,214,0 +170768713867,214,0 +170768713915,215,0 +170768713964,216,0 +170768714012,215,0 +170768714060,215,0 +170768714108,215,0 +170768714156,215,0 +170768714205,215,0 +170768714253,214,0 +170768714303,213,0 +170768714352,213,0 +170768714400,213,0 +170768714448,213,0 +170768714496,213,0 +170768714544,214,0 +170768714592,214,0 +170768714641,214,0 +170768714691,214,0 +170768714739,214,0 +170768714787,215,0 +170768714834,214,0 +170768714882,215,0 +170768714930,215,0 +170768714978,215,0 +170768715026,215,0 +170768715074,215,0 +170768715121,213,0 +170768715169,213,0 +170768715217,213,0 +170768715265,213,0 +170768715313,213,0 +170768715362,213,0 +170768715410,213,0 +170768715460,213,0 +170768715508,214,0 +170768715556,214,0 +170768715603,214,0 +170768715651,214,0 +170768715699,214,0 +170768715747,214,0 +170768715796,214,0 +170768715844,214,0 +170768715894,214,0 +170768715942,214,0 +170768715990,213,0 +170768716039,213,0 +170768716087,213,0 +170768716135,213,0 +170768716183,213,0 +170768716231,214,0 +170768716278,214,0 +170768716326,214,0 +170768716374,214,0 +170768716422,214,0 +170768716470,214,0 +170768716517,214,0 +170768716565,214,0 +170768716613,215,0 +170768716661,215,0 +170768716709,215,0 +170768716757,215,0 +170768716805,214,0 +170768716852,213,0 +170768716900,213,0 +170768716948,213,0 +170768716996,213,0 +170768717044,213,0 +170768717092,214,0 +170768717140,214,0 +170768717189,214,0 +170768717239,214,0 +170768717288,214,0 +170768717338,214,0 +170768717385,214,0 +170768717433,214,0 +170768717483,214,0 +170768717532,215,0 +170768717582,215,0 +170768717631,215,0 +170768717679,213,0 +170768717729,213,0 +170768717778,213,0 +170768717826,213,0 +170768717874,214,0 +170768717924,214,0 +170768717971,214,0 +170768718019,214,0 +170768718067,214,0 +170768718115,214,0 +170768718164,214,0 +170768718212,214,0 +170768718260,215,0 +170768718308,215,0 +170768718358,215,0 +170768718406,215,0 +170768718454,215,0 +170768718501,215,0 +170768718549,213,0 +170768718599,213,0 +170768718647,213,0 +170768718694,214,0 +170768718742,214,0 +170768718790,214,0 +170768718838,214,0 +170768718886,214,0 +170768718934,214,0 +170768718982,214,0 +170768719029,215,0 +170768719077,215,0 +170768719125,215,0 +170768719173,215,0 +170768719221,215,0 +170768719269,215,0 +170768719317,215,0 +170768719364,215,0 +170768719414,213,0 +170768719462,213,0 +170768719510,213,0 +170768719557,214,0 +170768719607,214,0 +170768719655,214,0 +170768719702,214,0 +170768719750,214,0 +170768719798,214,0 +170768719846,214,0 +170768719894,214,0 +170768719942,214,0 +170768719990,215,0 +170768720037,215,0 +170768720085,215,0 +170768720133,214,0 +170768720181,215,0 +170768720231,214,0 +170768720278,213,0 +170768720326,213,0 +170768720374,213,0 +170768720422,213,0 +170768720470,213,0 +170768720517,214,0 +170768720565,214,0 +170768720613,214,0 +170768720663,214,0 +170768720710,214,0 +170768720758,215,0 +170768720806,214,0 +170768720854,215,0 +170768720902,215,0 +170768720950,215,0 +170768720998,215,0 +170768721046,215,0 +170768721093,214,0 +170768721143,213,0 +170768721191,213,0 +170768721238,213,0 +170768721286,214,0 +170768721336,214,0 +170768721383,214,0 +170768721431,214,0 +170768721481,214,0 +170768721528,214,0 +170768721576,214,0 +170768721624,215,0 +170768721672,215,0 +170768721720,215,0 +170768721768,215,0 +170768721818,215,0 +170768721867,215,0 +170768721917,214,0 +170768721965,213,0 +170768722014,213,0 +170768722062,213,0 +170768722110,214,0 +170768722158,214,0 +170768722206,214,0 +170768722254,214,0 +170768722303,214,0 +170768722353,214,0 +170768722401,214,0 +170768722449,215,0 +170768722497,215,0 +170768722545,215,0 +170768722592,215,0 +170768722640,215,0 +170768722688,215,0 +170768722736,215,0 +170768722784,214,0 +170768722832,213,0 +170768722879,213,0 +170768722927,214,0 +170768722977,214,0 +170768723026,214,0 +170768723074,214,0 +170768723123,214,0 +170768723171,214,0 +170768723219,214,0 +170768723267,214,0 +170768723315,214,0 +170768723363,215,0 +170768723411,214,0 +170768723459,215,0 +170768723506,215,0 +170768723554,215,0 +170768723602,215,0 +170768723650,214,0 +170768723698,213,0 +170768723746,213,0 +170768723794,213,0 +170768723842,213,0 +170768723890,213,0 +170768723939,213,0 +170768723987,214,0 +170768724036,214,0 +170768724086,214,0 +170768724134,214,0 +170768724183,214,0 +170768724231,214,0 +170768724279,215,0 +170768724328,214,0 +170768724376,215,0 +170768724424,215,0 +170768724472,215,0 +170768724521,213,0 +170768724569,213,0 +170768724617,213,0 +170768724665,213,0 +170768724714,213,0 +170768724762,214,0 +170768724812,214,0 +170768724860,214,0 +170768724909,214,0 +170768724959,214,0 +170768725008,214,0 +170768725056,214,0 +170768725104,215,0 +170768725152,215,0 +170768725200,215,0 +170768725248,215,0 +170768725295,215,0 +170768725343,214,0 +170768725391,213,0 +170768725439,213,0 +170768725487,214,0 +170768725536,213,0 +170768725584,214,0 +170768725632,214,0 +170768725680,214,0 +170768725730,215,0 +170768725778,215,0 +170768725826,215,0 +170768725874,215,0 +170768725921,215,0 +170768725969,215,0 +170768726017,215,0 +170768726065,215,0 +170768726113,215,0 +170768726162,214,0 +170768726210,214,0 +170768726258,214,0 +170768726306,214,0 +170768726356,214,0 +170768726404,214,0 +170768726452,214,0 +170768726501,214,0 +170768726551,215,0 +170768726599,215,0 +170768726648,215,0 +170768726696,215,0 +170768726744,215,0 +170768726792,215,0 +170768726840,215,0 +170768726888,215,0 +170768726936,215,0 +170768726986,215,0 +170768727034,214,0 +170768727082,214,0 +170768727130,213,0 +170768727177,214,0 +170768727225,214,0 +170768727273,214,0 +170768727321,214,0 +170768727369,214,0 +170768727417,214,0 +170768727465,214,0 +170768727513,215,0 +170768727560,215,0 +170768727610,215,0 +170768727658,215,0 +170768727707,215,0 +170768727755,215,0 +170768727803,215,0 +170768727851,215,0 +170768727899,215,0 +170768727947,213,0 +170768727994,213,0 +170768728044,213,0 +170768728092,214,0 +170768728140,214,0 +170768728188,214,0 +170768728235,214,0 +170768728283,214,0 +170768728331,214,0 +170768728379,214,0 +170768728427,215,0 +170768728475,215,0 +170768728522,215,0 +170768728572,215,0 +170768728620,215,0 +170768728668,215,0 +170768728715,215,0 +170768728763,214,0 +170768728811,213,0 +170768728859,213,0 +170768728907,213,0 +170768728955,213,0 +170768729003,214,0 +170768729051,214,0 +170768729099,214,0 +170768729146,214,0 +170768729194,214,0 +170768729242,215,0 +170768729290,214,0 +170768729338,214,0 +170768729386,214,0 +170768729434,215,0 +170768729484,215,0 +170768729532,215,0 +170768729579,215,0 +170768729627,215,0 +170768729675,213,0 +170768729725,213,0 +170768729774,213,0 +170768729824,213,0 +170768729872,213,0 +170768729921,214,0 +170768729971,214,0 +170768730020,214,0 +170768730068,214,0 +170768730116,214,0 +170768730164,214,0 +170768730212,214,0 +170768730262,214,0 +170768730311,215,0 +170768730359,214,0 +170768730407,215,0 +170768730455,215,0 +170768730503,214,0 +170768730551,213,0 +170768730599,213,0 +170768730647,213,0 +170768730696,213,0 +170768730744,214,0 +170768730793,214,0 +170768730843,214,0 +170768730893,214,0 +170768730940,214,0 +170768730988,214,0 +170768731036,214,0 +170768731084,215,0 +170768731132,215,0 +170768731182,215,0 +170768731229,214,0 +170768731277,215,0 +170768731327,215,0 +170768731375,214,0 +170768731423,213,0 +170768731471,213,0 +170768731520,213,0 +170768731570,214,0 +170768731618,214,0 +170768731667,214,0 +170768731715,214,0 +170768731763,214,0 +170768731811,214,0 +170768731859,215,0 +170768731907,215,0 +170768731955,215,0 +170768732004,215,0 +170768732052,215,0 +170768732102,215,0 +170768732150,215,0 +170768732198,214,0 +170768732246,213,0 +170768732294,213,0 +170768732341,213,0 +170768732391,214,0 +170768732439,214,0 +170768732487,214,0 +170768732535,215,0 +170768732583,214,0 +170768732632,215,0 +170768732680,215,0 +170768732728,215,0 +170768732776,215,0 +170768732824,215,0 +170768732872,215,0 +170768732922,215,0 +170768732971,215,0 +170768733019,215,0 +170768733068,214,0 +170768733116,213,0 +170768733166,213,0 +170768733214,214,0 +170768733263,213,0 +170768733311,214,0 +170768733361,214,0 +170768733409,214,0 +170768733457,214,0 +170768733505,214,0 +170768733553,214,0 +170768733601,214,0 +170768733649,215,0 +170768733697,215,0 +170768733745,215,0 +170768733794,215,0 +170768733844,215,0 +170768733892,215,0 +170768733940,213,0 +170768733988,213,0 +170768734037,213,0 +170768734087,213,0 +170768734135,213,0 +170768734183,213,0 +170768734232,214,0 +170768734282,214,0 +170768734330,214,0 +170768734379,214,0 +170768734429,214,0 +170768734478,214,0 +170768734527,215,0 +170768734577,214,0 +170768734627,215,0 +170768734676,215,0 +170768734726,214,0 +170768734774,214,0 +170768734823,213,0 +170768734873,213,0 +170768734921,213,0 +170768734969,213,0 +170768735017,213,0 +170768735065,213,0 +170768735113,213,0 +170768735162,214,0 +170768735210,214,0 +170768735258,214,0 +170768735306,214,0 +170768735354,214,0 +170768735402,214,0 +170768735451,214,0 +170768735499,214,0 +170768735549,214,0 +170768735596,215,0 +170768735644,213,0 +170768735694,213,0 +170768735743,213,0 +170768735791,213,0 +170768735841,213,0 +170768735889,213,0 +170768735938,213,0 +170768735988,213,0 +170768736037,213,0 +170768736085,214,0 +170768736133,214,0 +170768736183,214,0 +170768736232,214,0 +170768736282,214,0 +170768736330,214,0 +170768736379,214,0 +170768736427,215,0 +170768736477,215,0 +170768736526,213,0 +170768736574,213,0 +170768736622,213,0 +170768736670,213,0 +170768736720,213,0 +170768736768,213,0 +170768736817,214,0 +170768736866,214,0 +170768736914,214,0 +170768736964,214,0 +170768737012,215,0 +170768737060,214,0 +170768737108,215,0 +170768737156,215,0 +170768737204,214,0 +170768737252,214,0 +170768737300,214,0 +170768737347,214,0 +170768737395,213,0 +170768737443,213,0 +170768737493,213,0 +170768737541,213,0 +170768737589,213,0 +170768737636,213,0 +170768737684,213,0 +170768737734,213,0 +170768737783,214,0 +170768737831,214,0 +170768737879,214,0 +170768737927,214,0 +170768737975,214,0 +170768738023,214,0 +170768738071,214,0 +170768738120,215,0 +170768738168,215,0 +170768738216,215,0 +170768738264,215,0 +170768738312,215,0 +170768738362,215,0 +170768738411,215,0 +170768738459,215,0 +170768738507,215,0 +170768738557,215,0 +170768738605,215,0 +170768738654,213,0 +170768738702,213,0 +170768738750,213,0 +170768738798,213,0 +170768738847,213,0 +170768738897,213,0 +170768738945,213,0 +170768738993,213,0 +170768739042,214,0 +170768739092,214,0 +170768739140,214,0 +170768739188,214,0 +170768739237,214,0 +170768739285,214,0 +170768739333,214,0 +170768739381,214,0 +170768739429,214,0 +170768739478,214,0 +170768739526,213,0 +170768739574,213,0 +170768739622,213,0 +170768739672,213,0 +170768739719,213,0 +170768739767,213,0 +170768739817,213,0 +170768739865,214,0 +170768739913,214,0 +170768739961,214,0 +170768740009,214,0 +170768740057,214,0 +170768740106,214,0 +170768740156,214,0 +170768740205,215,0 +170768740253,214,0 +170768740301,214,0 +170768740351,213,0 +170768740399,213,0 +170768740447,213,0 +170768740495,213,0 +170768740543,213,0 +170768740590,214,0 +170768740638,214,0 +170768740686,214,0 +170768740734,214,0 +170768740782,214,0 +170768740831,214,0 +170768740879,215,0 +170768740927,215,0 +170768740975,215,0 +170768741024,214,0 +170768741072,215,0 +170768741120,214,0 +170768741168,215,0 +170768741216,213,0 +170768741263,213,0 +170768741311,213,0 +170768741359,214,0 +170768741407,213,0 +170768741455,214,0 +170768741503,214,0 +170768741552,214,0 +170768741600,214,0 +170768741648,214,0 +170768741696,215,0 +170768741746,214,0 +170768741795,215,0 +170768741843,215,0 +170768741891,215,0 +170768741939,215,0 +170768741988,215,0 +170768742036,214,0 +170768742086,213,0 +170768742134,214,0 +170768742183,214,0 +170768742233,214,0 +170768742282,214,0 +170768742332,214,0 +170768742381,214,0 +170768742430,214,0 +170768742480,214,0 +170768742529,214,0 +170768742577,215,0 +170768742625,215,0 +170768742673,215,0 +170768742721,215,0 +170768742771,215,0 +170768742818,215,0 +170768742868,214,0 +170768742916,213,0 +170768742965,213,0 +170768743013,213,0 +170768743063,213,0 +170768743111,213,0 +170768743160,214,0 +170768743208,214,0 +170768743256,214,0 +170768743306,214,0 +170768743355,214,0 +170768743403,215,0 +170768743451,215,0 +170768743499,215,0 +170768743547,215,0 +170768743595,215,0 +170768743644,215,0 +170768743692,215,0 +170768743742,214,0 +170768743790,213,0 +170768743837,214,0 +170768743887,214,0 +170768743935,214,0 +170768743983,214,0 +170768744032,214,0 +170768744080,214,0 +170768744128,214,0 +170768744176,214,0 +170768744226,215,0 +170768744273,215,0 +170768744323,215,0 +170768744371,215,0 +170768744421,215,0 +170768744468,215,0 +170768744518,215,0 +170768744567,215,0 +170768744615,214,0 +170768744663,214,0 +170768744713,214,0 +170768744761,214,0 +170768744809,214,0 +170768744857,215,0 +170768744905,215,0 +170768744953,215,0 +170768745000,215,0 +170768745048,215,0 +170768745096,215,0 +170768745144,215,0 +170768745192,215,0 +170768745240,215,0 +170768745288,215,0 +170768745338,215,0 +170768745385,215,0 +170768745435,214,0 +170768745485,214,0 +170768745532,214,0 +170768745582,214,0 +170768745632,214,0 +170768745679,214,0 +170768745727,214,0 +170768745775,215,0 +170768745823,215,0 +170768745873,215,0 +170768745921,215,0 +170768745968,215,0 +170768746016,215,0 +170768746066,215,0 +170768746115,215,0 +170768746163,215,0 +170768746211,215,0 +170768746259,215,0 +170768746309,214,0 +170768746357,214,0 +170768746406,213,0 +170768746454,214,0 +170768746502,214,0 +170768746550,214,0 +170768746598,214,0 +170768746646,214,0 +170768746696,214,0 +170768746743,215,0 +170768746791,214,0 +170768746839,215,0 +170768746887,215,0 +170768746935,215,0 +170768746985,215,0 +170768747033,215,0 +170768747080,215,0 +170768747128,215,0 +170768747176,214,0 +170768747224,213,0 +170768747272,213,0 +170768747320,213,0 +170768747368,213,0 +170768747415,214,0 +170768747463,214,0 +170768747511,214,0 +170768747561,214,0 +170768747608,214,0 +170768747658,214,0 +170768747706,215,0 +170768747754,215,0 +170768747803,215,0 +170768747851,215,0 +170768747899,215,0 +170768747947,215,0 +170768747995,215,0 +170768748043,214,0 +170768748091,213,0 +170768748140,213,0 +170768748190,213,0 +170768748238,213,0 +170768748285,213,0 +170768748333,214,0 +170768748383,214,0 +170768748432,214,0 +170768748482,214,0 +170768748530,214,0 +170768748578,214,0 +170768748626,214,0 +170768748674,214,0 +170768748722,215,0 +170768748769,215,0 +170768748819,215,0 +170768748868,215,0 +170768748918,213,0 +170768748967,213,0 +170768749015,213,0 +170768749063,213,0 +170768749111,213,0 +170768749159,213,0 +170768749207,213,0 +170768749255,214,0 +170768749304,214,0 +170768749352,214,0 +170768749400,214,0 +170768749448,214,0 +170768749496,214,0 +170768749544,214,0 +170768749594,215,0 +170768749642,214,0 +170768749690,214,0 +170768749739,214,0 +170768749787,213,0 +170768749835,213,0 +170768749883,213,0 +170768749931,213,0 +170768749978,213,0 +170768750026,213,0 +170768750074,213,0 +170768750122,213,0 +170768750170,214,0 +170768750219,214,0 +170768750267,214,0 +170768750315,214,0 +170768750362,214,0 +170768750410,214,0 +170768750458,214,0 +170768750506,215,0 +170768750554,214,0 +170768750602,214,0 +170768750650,213,0 +170768750697,213,0 +170768750745,213,0 +170768750793,213,0 +170768750841,213,0 +170768750889,213,0 +170768750937,214,0 +170768750986,214,0 +170768751034,214,0 +170768751082,214,0 +170768751130,214,0 +170768751177,214,0 +170768751225,214,0 +170768751273,214,0 +170768751321,214,0 +170768751369,215,0 +170768751416,214,0 +170768751464,214,0 +170768751512,213,0 +170768751560,213,0 +170768751608,213,0 +170768751656,213,0 +170768751704,213,0 +170768751752,213,0 +170768751800,213,0 +170768751848,214,0 +170768751897,214,0 +170768751945,214,0 +170768751993,214,0 +170768752043,214,0 +170768752090,214,0 +170768752138,214,0 +170768752188,214,0 +170768752236,214,0 +170768752283,214,0 +170768752333,213,0 +170768752381,213,0 +170768752430,213,0 +170768752478,213,0 +170768752525,214,0 +170768752573,213,0 +170768752621,214,0 +170768752669,214,0 +170768752717,214,0 +170768752764,214,0 +170768752812,214,0 +170768752860,214,0 +170768752908,214,0 +170768752955,215,0 +170768753003,215,0 +170768753051,215,0 +170768753099,215,0 +170768753147,214,0 +170768753196,214,0 +170768753244,213,0 +170768753292,213,0 +170768753341,213,0 +170768753389,214,0 +170768753437,214,0 +170768753485,214,0 +170768753533,214,0 +170768753581,214,0 +170768753629,214,0 +170768753676,214,0 +170768753724,215,0 +170768753772,214,0 +170768753820,215,0 +170768753868,215,0 +170768753917,215,0 +170768753966,215,0 +170768754014,214,0 +170768754062,213,0 +170768754110,213,0 +170768754159,213,0 +170768754209,213,0 +170768754256,214,0 +170768754306,214,0 +170768754354,214,0 +170768754402,214,0 +170768754449,214,0 +170768754497,214,0 +170768754545,214,0 +170768754593,214,0 +170768754641,214,0 +170768754688,214,0 +170768754736,214,0 +170768754784,215,0 +170768754832,214,0 +170768754880,215,0 +170768754928,213,0 +170768754976,213,0 +170768755023,213,0 +170768755071,213,0 +170768755119,213,0 +170768755167,214,0 +170768755215,214,0 +170768755262,214,0 +170768755310,214,0 +170768755358,214,0 +170768755406,214,0 +170768755454,214,0 +170768755501,214,0 +170768755549,215,0 +170768755597,215,0 +170768755645,215,0 +170768755693,215,0 +170768755741,215,0 +170768755788,213,0 +170768755836,214,0 +170768755884,214,0 +170768755932,214,0 +170768755980,214,0 +170768756027,214,0 +170768756075,215,0 +170768756123,215,0 +170768756171,215,0 +170768756219,215,0 +170768756267,215,0 +170768756314,215,0 +170768756362,215,0 +170768756410,215,0 +170768756458,215,0 +170768756506,215,0 +170768756554,214,0 +170768756601,214,0 +170768756649,214,0 +170768756697,214,0 +170768756745,214,0 +170768756793,214,0 +170768756840,215,0 +170768756888,214,0 +170768756936,215,0 +170768756984,215,0 +170768757032,215,0 +170768757079,215,0 +170768757127,215,0 +170768757175,215,0 +170768757223,215,0 +170768757271,215,0 +170768757318,215,0 +170768757366,215,0 +170768757414,215,0 +170768757462,214,0 +170768757510,214,0 +170768757557,214,0 +170768757605,214,0 +170768757653,214,0 +170768757701,214,0 +170768757748,214,0 +170768757796,214,0 +170768757844,215,0 +170768757892,215,0 +170768757940,215,0 +170768757987,215,0 +170768758035,215,0 +170768758083,215,0 +170768758131,215,0 +170768758179,215,0 +170768758227,215,0 +170768758274,215,0 +170768758322,213,0 +170768758370,213,0 +170768758418,213,0 +170768758466,213,0 +170768758514,213,0 +170768758561,213,0 +170768758609,213,0 +170768758657,214,0 +170768758705,214,0 +170768758753,214,0 +170768758801,214,0 +170768758849,214,0 +170768758896,214,0 +170768758944,215,0 +170768758992,214,0 +170768759041,215,0 +170768759089,215,0 +170768759137,214,0 +170768759185,213,0 +170768759233,213,0 +170768759282,213,0 +170768759330,213,0 +170768759378,213,0 +170768759425,213,0 +170768759473,213,0 +170768759521,213,0 +170768759569,214,0 +170768759617,214,0 +170768759665,214,0 +170768759714,214,0 +170768759762,214,0 +170768759810,214,0 +170768759858,215,0 +170768759905,214,0 +170768759953,214,0 +170768760003,214,0 +170768760051,213,0 +170768760098,213,0 +170768760146,213,0 +170768760194,213,0 +170768760244,213,0 +170768760293,213,0 +170768760341,214,0 +170768760391,214,0 +170768760439,214,0 +170768760488,214,0 +170768760536,214,0 +170768760584,214,0 +170768760634,215,0 +170768760682,215,0 +170768760730,215,0 +170768760777,215,0 +170768760825,214,0 +170768760873,214,0 +170768760921,213,0 +170768760969,213,0 +170768761017,213,0 +170768761065,213,0 +170768761114,213,0 +170768761162,213,0 +170768761210,214,0 +170768761258,214,0 +170768761306,214,0 +170768761354,214,0 +170768761402,214,0 +170768761450,214,0 +170768761497,215,0 +170768761545,215,0 +170768761593,215,0 +170768761641,214,0 +170768761689,214,0 +170768761736,214,0 +170768761784,213,0 +170768761832,213,0 +170768761880,213,0 +170768761928,213,0 +170768761976,213,0 +170768762023,213,0 +170768762071,213,0 +170768762119,214,0 +170768762169,214,0 +170768762216,214,0 +170768762264,214,0 +170768762312,215,0 +170768762360,215,0 +170768762408,215,0 +170768762456,215,0 +170768762503,215,0 +170768762551,214,0 +170768762599,214,0 +170768762647,213,0 +170768762695,213,0 +170768762743,213,0 +170768762791,212,0 +170768762838,213,0 +170768762886,213,0 +170768762934,213,0 +170768762982,213,0 +170768763030,214,0 +170768763080,214,0 +170768763128,214,0 +170768763176,214,0 +170768763224,214,0 +170768763273,215,0 +170768763323,215,0 +170768763372,215,0 +170768763422,214,0 +170768763471,213,0 +170768763519,213,0 +170768763567,212,0 +170768763616,213,0 +170768763664,213,0 +170768763714,213,0 +170768763762,213,0 +170768763809,213,0 +170768763857,213,0 +170768763907,213,0 +170768763955,214,0 +170768764002,214,0 +170768764050,214,0 +170768764098,214,0 +170768764146,214,0 +170768764193,214,0 +170768764241,214,0 +170768764291,215,0 +170768764339,213,0 +170768764387,213,0 +170768764434,213,0 +170768764482,213,0 +170768764530,213,0 +170768764578,213,0 +170768764626,214,0 +170768764674,213,0 +170768764722,214,0 +170768764770,214,0 +170768764817,214,0 +170768764865,215,0 +170768764913,214,0 +170768764961,214,0 +170768765010,214,0 +170768765060,214,0 +170768765108,215,0 +170768765157,214,0 +170768765205,213,0 +170768765253,213,0 +170768765301,213,0 +170768765349,213,0 +170768765397,213,0 +170768765446,213,0 +170768765494,214,0 +170768765542,214,0 +170768765590,214,0 +170768765639,214,0 +170768765689,214,0 +170768765737,215,0 +170768765786,215,0 +170768765834,214,0 +170768765884,215,0 +170768765932,214,0 +170768765980,215,0 +170768766028,213,0 +170768766076,213,0 +170768766125,213,0 +170768766175,213,0 +170768766222,213,0 +170768766272,213,0 +170768766320,214,0 +170768766368,214,0 +170768766416,214,0 +170768766465,214,0 +170768766513,214,0 +170768766561,215,0 +170768766611,214,0 +170768766659,215,0 +170768766707,215,0 +170768766756,215,0 +170768766804,215,0 +170768766852,215,0 +170768766900,214,0 +170768766948,214,0 +170768766996,214,0 +170768767043,214,0 +170768767091,214,0 +170768767141,214,0 +170768767189,215,0 +170768767237,215,0 +170768767285,215,0 +170768767334,215,0 +170768767382,215,0 +170768767430,215,0 +170768767478,215,0 +170768767528,215,0 +170768767575,215,0 +170768767623,215,0 +170768767673,215,0 +170768767721,215,0 +170768767770,214,0 +170768767818,214,0 +170768767866,214,0 +170768767914,215,0 +170768767962,214,0 +170768768011,215,0 +170768768059,215,0 +170768768107,215,0 +170768768155,215,0 +170768768203,215,0 +170768768252,215,0 +170768768300,215,0 +170768768348,215,0 +170768768396,215,0 +170768768444,215,0 +170768768494,215,0 +170768768542,215,0 +170768768590,214,0 +170768768638,214,0 +170768768687,214,0 +170768768735,214,0 +170768768783,214,0 +170768768831,214,0 +170768768879,214,0 +170768768926,214,0 +170768768974,214,0 +170768769022,214,0 +170768769072,214,0 +170768769120,215,0 +170768769168,214,0 +170768769216,215,0 +170768769265,215,0 +170768769313,215,0 +170768769363,215,0 +170768769411,215,0 +170768769458,213,0 +170768769506,213,0 +170768769554,213,0 +170768769604,213,0 +170768769652,214,0 +170768769700,214,0 +170768769748,214,0 +170768769797,214,0 +170768769845,214,0 +170768769893,214,0 +170768769941,215,0 +170768769990,215,0 +170768770038,214,0 +170768770086,215,0 +170768770134,215,0 +170768770182,215,0 +170768770230,215,0 +170768770278,214,0 +170768770325,213,0 +170768770373,213,0 +170768770421,213,0 +170768770471,213,0 +170768770519,213,0 +170768770568,213,0 +170768770616,214,0 +170768770666,214,0 +170768770714,214,0 +170768770761,214,0 +170768770811,215,0 +170768770859,214,0 +170768770908,215,0 +170768770956,215,0 +170768771004,215,0 +170768771052,215,0 +170768771102,214,0 +170768771151,213,0 +170768771199,213,0 +170768771249,213,0 +170768771297,213,0 +170768771344,213,0 +170768771392,214,0 +170768771440,214,0 +170768771488,214,0 +170768771536,214,0 +170768771584,214,0 +170768771632,213,0 +170768771680,215,0 +170768771728,215,0 +170768771776,215,0 +170768771823,215,0 +170768771871,215,0 +170768771921,215,0 +170768771969,214,0 +170768772018,213,0 +170768772066,213,0 +170768772116,213,0 +170768772164,213,0 +170768772211,214,0 +170768772259,214,0 +170768772307,214,0 +170768772355,214,0 +170768772405,215,0 +170768772453,214,0 +170768772500,214,0 +170768772548,215,0 +170768772596,215,0 +170768772644,215,0 +170768772694,215,0 +170768772743,215,0 +170768772791,215,0 +170768772839,214,0 +170768772887,213,0 +170768772935,213,0 +170768772984,213,0 +170768773034,213,0 +170768773083,213,0 +170768773131,213,0 +170768773179,213,0 +170768773227,214,0 +170768773275,213,0 +170768773323,214,0 +170768773373,214,0 +170768773422,214,0 +170768773470,214,0 +170768773520,215,0 +170768773568,214,0 +170768773616,215,0 +170768773665,214,0 +170768773713,214,0 +170768773762,213,0 +170768773810,213,0 +170768773860,213,0 +170768773908,213,0 +170768773956,213,0 +170768774003,213,0 +170768774053,214,0 +170768774101,214,0 +170768774149,214,0 +170768774197,214,0 +170768774245,214,0 +170768774293,214,0 +170768774340,215,0 +170768774388,215,0 +170768774438,215,0 +170768774486,214,0 +170768774534,214,0 +170768774582,213,0 +170768774631,213,0 +170768774681,213,0 +170768774729,213,0 +170768774777,213,0 +170768774824,213,0 +170768774872,213,0 +170768774920,213,0 +170768774970,214,0 +170768775018,214,0 +170768775066,214,0 +170768775115,214,0 +170768775163,214,0 +170768775211,214,0 +170768775259,215,0 +170768775307,214,0 +170768775355,214,0 +170768775404,214,0 +170768775454,213,0 +170768775504,213,0 +170768775551,213,0 +170768775599,213,0 +170768775647,213,0 +170768775695,213,0 +170768775743,213,0 +170768775791,214,0 +170768775839,214,0 +170768775887,214,0 +170768775935,214,0 +170768775983,214,0 +170768776030,214,0 +170768776078,215,0 +170768776126,215,0 +170768776176,215,0 +170768776225,215,0 +170768776273,214,0 +170768776321,213,0 +170768776369,213,0 +170768776417,213,0 +170768776465,213,0 +170768776513,213,0 +170768776561,213,0 +170768776610,213,0 +170768776658,214,0 +170768776706,214,0 +170768776754,214,0 +170768776802,214,0 +170768776850,214,0 +170768776898,214,0 +170768776945,214,0 +170768776995,215,0 +170768777043,215,0 +170768777091,214,0 +170768777139,214,0 +170768777187,213,0 +170768777234,213,0 +170768777284,213,0 +170768777333,213,0 +170768777381,213,0 +170768777431,213,0 +170768777479,214,0 +170768777528,214,0 +170768777578,214,0 +170768777626,214,0 +170768777674,214,0 +170768777721,214,0 +170768777769,215,0 +170768777817,214,0 +170768777865,214,0 +170768777913,215,0 +170768777961,215,0 +170768778011,213,0 +170768778059,213,0 +170768778108,213,0 +170768778158,213,0 +170768778207,213,0 +170768778255,213,0 +170768778305,214,0 +170768778352,213,0 +170768778402,214,0 +170768778450,214,0 +170768778499,214,0 +170768778547,214,0 +170768778597,214,0 +170768778646,214,0 +170768778696,215,0 +170768778745,215,0 +170768778793,215,0 +170768778843,214,0 +170768778892,213,0 +170768778940,213,0 +170768778988,213,0 +170768779036,213,0 +170768779084,214,0 +170768779134,214,0 +170768779182,214,0 +170768779231,214,0 +170768779279,214,0 +170768779327,215,0 +170768779376,214,0 +170768779426,214,0 +170768779475,214,0 +170768779525,215,0 +170768779574,215,0 +170768779622,215,0 +170768779670,215,0 +170768779718,213,0 +170768779768,213,0 +170768779816,213,0 +170768779864,213,0 +170768779913,214,0 +170768779963,214,0 +170768780011,214,0 +170768780061,214,0 +170768780109,214,0 +170768780158,214,0 +170768780206,214,0 +170768780254,214,0 +170768780302,214,0 +170768780350,215,0 +170768780399,214,0 +170768780447,215,0 +170768780495,215,0 +170768780543,214,0 +170768780591,213,0 +170768780639,213,0 +170768780688,214,0 +170768780736,214,0 +170768780786,214,0 +170768780834,214,0 +170768780882,214,0 +170768780929,214,0 +170768780977,214,0 +170768781027,214,0 +170768781076,215,0 +170768781126,215,0 +170768781174,215,0 +170768781223,215,0 +170768781273,215,0 +170768781322,215,0 +170768781370,215,0 +170768781418,214,0 +170768781466,214,0 +170768781514,214,0 +170768781562,214,0 +170768781610,214,0 +170768781659,214,0 +170768781707,214,0 +170768781757,215,0 +170768781806,214,0 +170768781856,215,0 +170768781904,215,0 +170768781952,215,0 +170768782000,215,0 +170768782047,215,0 +170768782095,215,0 +170768782145,215,0 +170768782193,215,0 +170768782242,214,0 +170768782290,214,0 +170768782338,214,0 +170768782386,214,0 +170768782434,214,0 +170768782484,214,0 +170768782532,214,0 +170768782579,214,0 +170768782629,215,0 +170768782677,215,0 +170768782725,215,0 +170768782773,215,0 +170768782822,215,0 +170768782870,215,0 +170768782920,215,0 +170768782969,215,0 +170768783017,215,0 +170768783065,215,0 +170768783113,215,0 +170768783162,214,0 +170768783212,213,0 +170768783261,213,0 +170768783309,213,0 +170768783357,214,0 +170768783405,214,0 +170768783453,214,0 +170768783501,214,0 +170768783549,214,0 +170768783597,214,0 +170768783646,214,0 +170768783694,215,0 +170768783742,215,0 +170768783790,214,0 +170768783838,215,0 +170768783886,215,0 +170768783934,214,0 +170768783982,214,0 +170768784030,213,0 +170768784079,213,0 +170768784127,213,0 +170768784175,213,0 +170768784223,214,0 +170768784271,214,0 +170768784319,214,0 +170768784368,214,0 +170768784416,214,0 +170768784464,214,0 +170768784514,215,0 +170768784563,214,0 +170768784611,215,0 +170768784659,215,0 +170768784707,215,0 +170768784755,215,0 +170768784803,215,0 +170768784851,214,0 +170768784899,213,0 +170768784948,213,0 +170768784996,213,0 +170768785044,213,0 +170768785094,214,0 +170768785143,214,0 +170768785191,214,0 +170768785239,214,0 +170768785287,214,0 +170768785336,214,0 +170768785386,215,0 +170768785435,215,0 +170768785483,215,0 +170768785531,215,0 +170768785579,215,0 +170768785629,215,0 +170768785677,214,0 +170768785725,214,0 +170768785774,213,0 +170768785822,213,0 +170768785870,213,0 +170768785918,214,0 +170768785966,214,0 +170768786015,214,0 +170768786063,214,0 +170768786111,214,0 +170768786159,215,0 +170768786207,215,0 +170768786255,215,0 +170768786303,215,0 +170768786351,215,0 +170768786399,215,0 +170768786448,215,0 +170768786496,214,0 +170768786546,214,0 +170768786594,213,0 +170768786642,213,0 +170768786690,213,0 +170768786738,214,0 +170768786787,214,0 +170768786835,214,0 +170768786885,214,0 +170768786933,214,0 +170768786982,214,0 +170768787030,214,0 +170768787078,214,0 +170768787126,215,0 +170768787174,215,0 +170768787222,215,0 +170768787271,215,0 +170768787319,215,0 +170768787369,215,0 +170768787417,214,0 +170768787466,213,0 +170768787514,213,0 +170768787562,213,0 +170768787610,213,0 +170768787658,214,0 +170768787706,214,0 +170768787753,214,0 +170768787801,214,0 +170768787851,214,0 +170768787900,214,0 +170768787948,215,0 +170768787996,215,0 +170768788046,215,0 +170768788095,215,0 +170768788143,215,0 +170768788192,215,0 +170768788240,214,0 +170768788288,213,0 +170768788338,213,0 +170768788386,213,0 +170768788435,213,0 +170768788483,213,0 +170768788532,213,0 +170768788580,213,0 +170768788628,214,0 +170768788678,214,0 +170768788726,214,0 +170768788775,214,0 +170768788824,214,0 +170768788872,214,0 +170768788922,215,0 +170768788971,215,0 +170768789019,215,0 +170768789067,215,0 +170768789115,215,0 +170768789165,213,0 +170768789212,213,0 +170768789262,213,0 +170768789310,213,0 +170768789359,213,0 +170768789407,214,0 +170768789455,213,0 +170768789505,214,0 +170768789554,214,0 +170768789602,214,0 +170768789650,214,0 +170768789700,214,0 +170768789747,214,0 +170768789795,214,0 +170768789843,214,0 +170768789891,214,0 +170768789939,215,0 +170768789989,214,0 +170768790038,213,0 +170768790086,213,0 +170768790135,213,0 +170768790183,213,0 +170768790233,214,0 +170768790281,214,0 +170768790330,214,0 +170768790378,214,0 +170768790426,214,0 +170768790474,214,0 +170768790522,214,0 +170768790570,215,0 +170768790620,215,0 +170768790668,215,0 +170768790716,214,0 +170768790763,215,0 +170768790811,215,0 +170768790859,214,0 +170768790907,213,0 +170768790955,213,0 +170768791003,214,0 +170768791051,214,0 +170768791099,214,0 +170768791147,214,0 +170768791197,214,0 +170768791245,214,0 +170768791292,214,0 +170768791342,214,0 +170768791391,214,0 +170768791439,214,0 +170768791487,215,0 +170768791535,215,0 +170768791585,215,0 +170768791633,214,0 +170768791682,214,0 +170768791730,214,0 +170768791778,213,0 +170768791827,214,0 +170768791877,214,0 +170768791925,214,0 +170768791974,214,0 +170768792022,214,0 +170768792072,214,0 +170768792120,214,0 +170768792169,214,0 +170768792217,215,0 +170768792265,215,0 +170768792315,215,0 +170768792362,215,0 +170768792412,215,0 +170768792460,215,0 +170768792508,215,0 +170768792556,214,0 +170768792605,214,0 +170768792653,214,0 +170768792703,214,0 +170768792751,214,0 +170768792799,214,0 +170768792847,214,0 +170768792895,214,0 +170768792943,215,0 +170768792992,214,0 +170768793040,215,0 +170768793090,215,0 +170768793138,215,0 +170768793186,215,0 +170768793234,215,0 +170768793282,215,0 +170768793331,215,0 +170768793379,215,0 +170768793429,214,0 +170768793476,214,0 +170768793524,214,0 +170768793572,214,0 +170768793620,214,0 +170768793670,214,0 +170768793720,214,0 +170768793767,214,0 +170768793817,214,0 +170768793865,215,0 +170768793913,214,0 +170768793960,215,0 +170768794008,215,0 +170768794056,215,0 +170768794104,215,0 +170768794152,215,0 +170768794200,215,0 +170768794248,214,0 +170768794297,214,0 +170768794345,213,0 +170768794395,213,0 +170768794443,214,0 +170768794492,214,0 +170768794542,214,0 +170768794590,214,0 +170768794638,214,0 +170768794686,214,0 +170768794734,214,0 +170768794783,214,0 +170768794831,215,0 +170768794880,214,0 +170768794928,215,0 +170768794976,215,0 +170768795024,214,0 +170768795072,215,0 +170768795120,214,0 +170768795170,213,0 +170768795217,213,0 +170768795265,213,0 +170768795315,213,0 +170768795364,213,0 +170768795414,214,0 +170768795462,214,0 +170768795510,214,0 +170768795558,214,0 +170768795605,214,0 +170768795653,214,0 +170768795701,214,0 +170768795749,214,0 +170768795797,214,0 +170768795845,214,0 +170768795893,214,0 +170768795940,214,0 +170768795988,214,0 +170768796038,213,0 +170768796085,213,0 +170768796133,213,0 +170768796181,213,0 +170768796229,213,0 +170768796277,213,0 +170768796325,213,0 +170768796373,214,0 +170768796421,214,0 +170768796469,214,0 +170768796516,214,0 +170768796566,214,0 +170768796615,214,0 +170768796665,214,0 +170768796713,215,0 +170768796762,215,0 +170768796812,215,0 +170768796860,214,0 +170768796909,213,0 +170768796957,213,0 +170768797005,213,0 +170768797053,214,0 +170768797100,214,0 +170768797148,214,0 +170768797196,214,0 +170768797244,214,0 +170768797293,214,0 +170768797341,214,0 +170768797389,214,0 +170768797437,215,0 +170768797485,215,0 +170768797534,215,0 +170768797584,215,0 +170768797632,215,0 +170768797681,214,0 +170768797730,213,0 +170768797778,213,0 +170768797828,213,0 +170768797876,214,0 +170768797924,213,0 +170768797972,214,0 +170768798020,214,0 +170768798067,214,0 +170768798115,214,0 +170768798163,214,0 +170768798211,215,0 +170768798261,214,0 +170768798309,215,0 +170768798358,215,0 +170768798408,215,0 +170768798456,214,0 +170768798503,215,0 +170768798553,214,0 +170768798601,213,0 +170768798649,213,0 +170768798696,213,0 +170768798746,213,0 +170768798794,213,0 +170768798843,214,0 +170768798891,214,0 +170768798939,213,0 +170768798988,214,0 +170768799036,214,0 +170768799086,214,0 +170768799135,214,0 +170768799183,214,0 +170768799231,214,0 +170768799279,214,0 +170768799329,215,0 +170768799377,214,0 +170768799424,214,0 +170768799472,213,0 +170768799520,213,0 +170768799568,213,0 +170768799618,213,0 +170768799667,213,0 +170768799715,213,0 +170768799765,213,0 +170768799813,213,0 +170768799861,214,0 +170768799909,214,0 +170768799957,214,0 +170768800006,214,0 +170768800054,214,0 +170768800103,214,0 +170768800151,214,0 +170768800199,214,0 +170768800247,214,0 +170768800295,213,0 +170768800343,213,0 +170768800391,213,0 +170768800439,213,0 +170768800487,213,0 +170768800536,213,0 +170768800584,213,0 +170768800632,214,0 +170768800680,214,0 +170768800728,214,0 +170768800777,214,0 +170768800825,214,0 +170768800874,214,0 +170768800922,215,0 +170768800972,215,0 +170768801020,215,0 +170768801068,215,0 +170768801116,215,0 +170768801163,214,0 +170768801211,213,0 +170768801259,213,0 +170768801307,214,0 +170768801355,214,0 +170768801404,214,0 +170768801452,214,0 +170768801502,214,0 +170768801550,214,0 +170768801599,214,0 +170768801649,215,0 +170768801698,215,0 +170768801748,215,0 +170768801796,215,0 +170768801843,215,0 +170768801893,215,0 +170768801942,215,0 +170768801990,215,0 +170768802040,214,0 +170768802088,214,0 +170768802136,214,0 +170768802183,214,0 +170768802231,214,0 +170768802279,214,0 +170768802327,215,0 +170768802375,214,0 +170768802423,215,0 +170768802472,215,0 +170768802520,215,0 +170768802568,215,0 +170768802616,215,0 +170768802666,215,0 +170768802714,215,0 +170768802762,215,0 +170768802809,215,0 +170768802857,214,0 +170768802905,214,0 +170768802953,214,0 +170768803001,214,0 +170768803049,214,0 +170768803097,214,0 +170768803144,214,0 +170768803192,215,0 +170768803242,215,0 +170768803290,214,0 +170768803338,215,0 +170768803387,215,0 +170768803437,215,0 +170768803486,215,0 +170768803534,215,0 +170768803583,215,0 +170768803631,215,0 +170768803679,215,0 +170768803727,214,0 +170768803775,213,0 +170768803825,214,0 +170768803874,214,0 +170768803922,214,0 +170768803970,214,0 +170768804018,214,0 +170768804066,215,0 +170768804114,215,0 +170768804162,214,0 +170768804209,215,0 +170768804257,215,0 +170768804305,215,0 +170768804353,215,0 +170768804401,215,0 +170768804449,215,0 +170768804497,215,0 +170768804547,214,0 +170768804594,214,0 +170768804642,213,0 +170768804690,214,0 +170768804740,214,0 +170768804788,214,0 +170768804835,214,0 +170768804883,214,0 +170768804931,214,0 +170768804979,214,0 +170768805029,215,0 +170768805078,215,0 +170768805126,215,0 +170768805174,215,0 +170768805222,215,0 +170768805271,215,0 +170768805319,215,0 +170768805367,215,0 +170768805415,215,0 +170768805463,214,0 +170768805511,213,0 +170768805559,214,0 +170768805607,214,0 +170768805655,214,0 +170768805703,214,0 +170768805750,214,0 +170768805798,214,0 +170768805848,215,0 +170768805896,215,0 +170768805944,215,0 +170768805991,215,0 +170768806041,215,0 +170768806089,215,0 +170768806137,215,0 +170768806185,215,0 +170768806234,215,0 +170768806282,214,0 +170768806330,213,0 +170768806378,213,0 +170768806426,214,0 +170768806474,213,0 +170768806522,214,0 +170768806570,214,0 +170768806618,214,0 +170768806667,214,0 +170768806717,215,0 +170768806765,215,0 +170768806813,215,0 +170768806861,214,0 +170768806910,215,0 +170768806959,215,0 +170768807007,215,0 +170768807055,215,0 +170768807105,215,0 +170768807153,214,0 +170768807201,213,0 +170768807248,213,0 +170768807296,213,0 +170768807344,214,0 +170768807392,214,0 +170768807440,214,0 +170768807488,214,0 +170768807536,214,0 +170768807585,214,0 +170768807635,214,0 +170768807684,214,0 +170768807732,215,0 +170768807780,214,0 +170768807828,215,0 +170768807876,215,0 +170768807924,215,0 +170768807973,215,0 +170768808022,213,0 +170768808070,213,0 +170768808118,213,0 +170768808166,213,0 +170768808214,213,0 +170768808262,213,0 +170768808311,213,0 +170768808359,213,0 +170768808407,214,0 +170768808455,214,0 +170768808503,214,0 +170768808551,214,0 +170768808599,214,0 +170768808646,215,0 +170768808696,215,0 +170768808744,215,0 +170768808792,215,0 +170768808840,214,0 +170768808887,213,0 +170768808935,213,0 +170768808985,213,0 +170768809034,213,0 +170768809082,213,0 +170768809130,213,0 +170768809178,213,0 +170768809226,214,0 +170768809274,214,0 +170768809321,214,0 +170768809369,215,0 +170768809417,214,0 +170768809465,214,0 +170768809513,215,0 +170768809561,215,0 +170768809611,215,0 +170768809660,215,0 +170768809710,214,0 +170768809759,213,0 +170768809809,213,0 +170768809858,213,0 +170768809908,213,0 +170768809956,213,0 +170768810004,213,0 +170768810052,213,0 +170768810101,213,0 +170768810149,214,0 +170768810198,214,0 +170768810246,214,0 +170768810294,214,0 +170768810344,214,0 +170768810393,214,0 +170768810441,214,0 +170768810489,214,0 +170768810539,215,0 +170768810587,213,0 +170768810636,213,0 +170768810684,213,0 +170768810732,213,0 +170768810780,213,0 +170768810828,213,0 +170768810878,213,0 +170768810926,214,0 +170768810973,214,0 +170768811021,214,0 +170768811071,214,0 +170768811119,214,0 +170768811167,214,0 +170768811216,214,0 +170768811264,215,0 +170768811312,215,0 +170768811362,215,0 +170768811410,214,0 +170768811458,213,0 +170768811506,213,0 +170768811554,213,0 +170768811602,213,0 +170768811651,213,0 +170768811699,213,0 +170768811749,214,0 +170768811797,214,0 +170768811846,214,0 +170768811894,214,0 +170768811944,214,0 +170768811993,215,0 +170768812042,214,0 +170768812090,215,0 +170768812138,215,0 +170768812186,215,0 +170768812236,214,0 +170768812285,214,0 +170768812335,213,0 +170768812383,213,0 +170768812431,213,0 +170768812479,213,0 +170768812528,214,0 +170768812576,214,0 +170768812626,214,0 +170768812674,214,0 +170768812723,214,0 +170768812773,214,0 +170768812822,215,0 +170768812870,215,0 +170768812920,215,0 +170768812969,215,0 +170768813019,215,0 +170768813067,215,0 +170768813115,214,0 +170768813164,213,0 +170768813214,213,0 +170768813262,214,0 +170768813310,214,0 +170768813359,214,0 +170768813409,214,0 +170768813456,214,0 +170768813504,214,0 +170768813552,214,0 +170768813600,214,0 +170768813648,215,0 +170768813696,215,0 +170768813745,215,0 +170768813793,215,0 +170768813841,215,0 +170768813890,215,0 +170768813938,215,0 +170768813986,215,0 +170768814034,213,0 +170768814082,213,0 +170768814130,213,0 +170768814178,213,0 +170768814226,214,0 +170768814275,214,0 +170768814323,214,0 +170768814371,214,0 +170768814419,214,0 +170768814469,214,0 +170768814518,214,0 +170768814566,215,0 +170768814616,215,0 +170768814664,215,0 +170768814711,215,0 +170768814761,215,0 +170768814809,215,0 +170768814857,214,0 +170768814905,213,0 +170768814954,213,0 +170768815002,213,0 +170768815051,213,0 +170768815099,214,0 +170768815149,214,0 +170768815197,214,0 +170768815245,214,0 +170768815294,214,0 +170768815342,214,0 +170768815392,214,0 +170768815440,214,0 +170768815489,214,0 +170768815537,215,0 +170768815587,215,0 +170768815636,215,0 +170768815686,214,0 +170768815734,214,0 +170768815782,214,0 +170768815831,214,0 +170768815879,214,0 +170768815927,214,0 +170768815976,214,0 +170768816024,214,0 +170768816074,215,0 +170768816123,215,0 +170768816171,215,0 +170768816220,215,0 +170768816268,215,0 +170768816316,215,0 +170768816364,215,0 +170768816412,215,0 +170768816460,215,0 +170768816509,215,0 +170768816557,214,0 +170768816605,214,0 +170768816653,214,0 +170768816701,214,0 +170768816750,214,0 +170768816798,214,0 +170768816846,214,0 +170768816895,214,0 +170768816945,215,0 +170768816993,215,0 +170768817041,215,0 +170768817088,215,0 +170768817136,215,0 +170768817184,215,0 +170768817232,215,0 +170768817280,215,0 +170768817328,215,0 +170768817377,214,0 +170768817425,214,0 +170768817473,214,0 +170768817522,214,0 +170768817570,214,0 +170768817618,214,0 +170768817666,214,0 +170768817716,214,0 +170768817765,214,0 +170768817813,215,0 +170768817863,215,0 +170768817912,215,0 +170768817960,215,0 +170768818010,215,0 +170768818058,215,0 +170768818107,215,0 +170768818155,215,0 +170768818203,215,0 +170768818251,215,0 +170768818299,214,0 +170768818347,214,0 +170768818395,214,0 +170768818443,214,0 +170768818493,214,0 +170768818541,214,0 +170768818589,214,0 +170768818636,214,0 +170768818686,214,0 +170768818736,215,0 +170768818784,215,0 +170768818833,215,0 +170768818881,215,0 +170768818931,215,0 +170768818979,215,0 +170768819027,215,0 +170768819074,215,0 +170768819122,214,0 +170768819172,213,0 +170768819222,213,0 +170768819269,213,0 +170768819319,213,0 +170768819369,214,0 +170768819417,214,0 +170768819464,214,0 +170768819512,214,0 +170768819562,214,0 +170768819610,214,0 +170768819658,214,0 +170768819707,214,0 +170768819755,214,0 +170768819803,215,0 +170768819851,215,0 +170768819899,215,0 +170768819947,215,0 +170768819995,215,0 +170768820043,213,0 +170768820091,213,0 +170768820140,213,0 +170768820188,213,0 +170768820238,214,0 +170768820287,213,0 +170768820337,214,0 +170768820385,214,0 +170768820434,214,0 +170768820482,214,0 +170768820532,215,0 +170768820580,215,0 +170768820628,215,0 +170768820677,215,0 +170768820727,215,0 +170768820775,215,0 +170768820823,214,0 +170768820872,214,0 +170768820920,213,0 +170768820968,213,0 +170768821017,213,0 +170768821065,214,0 +170768821113,214,0 +170768821161,214,0 +170768821211,214,0 +170768821260,214,0 +170768821310,214,0 +170768821358,214,0 +170768821406,215,0 +170768821454,215,0 +170768821502,215,0 +170768821550,215,0 +170768821598,215,0 +170768821645,215,0 +170768821693,215,0 +170768821741,214,0 +170768821791,214,0 +170768821839,214,0 +170768821887,214,0 +170768821936,214,0 +170768821984,214,0 +170768822034,214,0 +170768822082,214,0 +170768822130,214,0 +170768822178,215,0 +170768822226,215,0 +170768822273,215,0 +170768822323,215,0 +170768822371,214,0 +170768822419,215,0 +170768822467,215,0 +170768822515,215,0 +170768822562,215,0 +170768822612,213,0 +170768822660,213,0 +170768822709,214,0 +170768822759,214,0 +170768822807,214,0 +170768822856,214,0 +170768822904,214,0 +170768822954,214,0 +170768823003,214,0 +170768823053,214,0 +170768823101,214,0 +170768823149,215,0 +170768823198,215,0 +170768823248,215,0 +170768823296,215,0 +170768823345,215,0 +170768823395,215,0 +170768823444,214,0 +170768823492,213,0 +170768823540,213,0 +170768823590,213,0 +170768823639,214,0 +170768823687,214,0 +170768823737,214,0 +170768823786,214,0 +170768823834,214,0 +170768823884,214,0 +170768823932,214,0 +170768823980,215,0 +170768824027,214,0 +170768824075,214,0 +170768824123,215,0 +170768824171,215,0 +170768824221,215,0 +170768824269,215,0 +170768824317,213,0 +170768824365,213,0 +170768824414,213,0 +170768824462,213,0 +170768824510,214,0 +170768824558,214,0 +170768824608,214,0 +170768824655,214,0 +170768824705,214,0 +170768824753,214,0 +170768824801,214,0 +170768824849,215,0 +170768824897,215,0 +170768824946,215,0 +170768824994,215,0 +170768825042,215,0 +170768825092,215,0 +170768825140,215,0 +170768825188,213,0 +170768825236,213,0 +170768825284,213,0 +170768825332,213,0 +170768825380,214,0 +170768825429,213,0 +170768825479,214,0 +170768825527,214,0 +170768825574,214,0 +170768825624,214,0 +170768825672,214,0 +170768825720,214,0 +170768825768,214,0 +170768825816,215,0 +170768825863,214,0 +170768825911,214,0 +170768825959,214,0 +170768826009,214,0 +170768826057,213,0 +170768826105,213,0 +170768826153,213,0 +170768826202,213,0 +170768826250,213,0 +170768826300,213,0 +170768826349,214,0 +170768826399,214,0 +170768826449,214,0 +170768826496,214,0 +170768826544,214,0 +170768826594,214,0 +170768826642,215,0 +170768826690,215,0 +170768826739,215,0 +170768826789,215,0 +170768826839,215,0 +170768826888,213,0 +170768826936,213,0 +170768826984,213,0 +170768827033,213,0 +170768827081,213,0 +170768827131,214,0 +170768827180,214,0 +170768827230,214,0 +170768827278,214,0 +170768827326,214,0 +170768827375,214,0 +170768827423,215,0 +170768827471,214,0 +170768827519,215,0 +170768827568,215,0 +170768827618,215,0 +170768827666,215,0 +170768827714,214,0 +170768827762,213,0 +170768827810,213,0 +170768827858,213,0 +170768827906,214,0 +170768827954,214,0 +170768828003,214,0 +170768828051,214,0 +170768828099,214,0 +170768828147,214,0 +170768828195,214,0 +170768828243,215,0 +170768828291,215,0 +170768828339,215,0 +170768828388,215,0 +170768828436,215,0 +170768828486,215,0 +170768828534,214,0 +170768828582,214,0 +170768828631,214,0 +170768828681,214,0 +170768828731,214,0 +170768828778,214,0 +170768828826,214,0 +170768828876,214,0 +170768828924,214,0 +170768828973,214,0 +170768829021,214,0 +170768829069,215,0 +170768829117,215,0 +170768829165,215,0 +170768829213,215,0 +170768829262,215,0 +170768829310,214,0 +170768829358,215,0 +170768829406,215,0 +170768829456,214,0 +170768829504,214,0 +170768829553,213,0 +170768829603,214,0 +170768829650,214,0 +170768829698,214,0 +170768829746,214,0 +170768829794,214,0 +170768829841,214,0 +170768829889,215,0 +170768829937,215,0 +170768829985,215,0 +170768830033,214,0 +170768830081,215,0 +170768830130,215,0 +170768830178,215,0 +170768830226,215,0 +170768830274,215,0 +170768830322,214,0 +170768830370,214,0 +170768830418,214,0 +170768830467,214,0 +170768830515,214,0 +170768830563,214,0 +170768830612,214,0 +170768830660,214,0 +170768830708,215,0 +170768830758,214,0 +170768830806,215,0 +170768830855,215,0 +170768830903,215,0 +170768830951,215,0 +170768830999,215,0 +170768831047,215,0 +170768831097,214,0 +170768831145,215,0 +170768831193,214,0 +170768831242,213,0 +170768831290,214,0 +170768831338,214,0 +170768831388,214,0 +170768831437,214,0 +170768831485,214,0 +170768831533,214,0 +170768831581,214,0 +170768831629,216,0 +170768831677,215,0 +170768831726,215,0 +170768831774,215,0 +170768831824,215,0 +170768831872,215,0 +170768831921,215,0 +170768831969,215,0 +170768832017,214,0 +170768832065,214,0 +170768832113,213,0 +170768832161,213,0 +170768832209,214,0 +170768832259,214,0 +170768832307,214,0 +170768832356,214,0 +170768832404,214,0 +170768832452,214,0 +170768832500,215,0 +170768832548,215,0 +170768832596,215,0 +170768832644,215,0 +170768832693,215,0 +170768832743,215,0 +170768832791,215,0 +170768832840,214,0 +170768832888,214,0 +170768832936,213,0 +170768832985,213,0 +170768833035,213,0 +170768833083,213,0 +170768833132,213,0 +170768833180,214,0 +170768833230,214,0 +170768833278,214,0 +170768833327,214,0 +170768833375,214,0 +170768833423,215,0 +170768833471,215,0 +170768833519,215,0 +170768833567,215,0 +170768833617,215,0 +170768833665,215,0 +170768833714,215,0 +170768833762,214,0 +170768833810,213,0 +170768833859,213,0 +170768833907,213,0 +170768833955,214,0 +170768834005,213,0 +170768834053,214,0 +170768834102,214,0 +170768834152,214,0 +170768834201,214,0 +170768834251,214,0 +170768834299,215,0 +170768834346,214,0 +170768834396,215,0 +170768834444,215,0 +170768834493,215,0 +170768834543,215,0 +170768834591,215,0 +170768834640,213,0 +170768834690,214,0 +170768834738,213,0 +170768834786,213,0 +170768834834,214,0 +170768834882,214,0 +170768834929,214,0 +170768834977,214,0 +170768835025,214,0 +170768835073,214,0 +170768835123,214,0 +170768835173,215,0 +170768835220,216,0 +170768835270,215,0 +170768835319,215,0 +170768835367,215,0 +170768835415,215,0 +170768835463,214,0 +170768835511,213,0 +170768835559,213,0 +170768835607,213,0 +170768835655,213,0 +170768835703,213,0 +170768835752,214,0 +170768835800,214,0 +170768835848,214,0 +170768835896,214,0 +170768835944,214,0 +170768835992,215,0 +170768836041,215,0 +170768836089,214,0 +170768836137,215,0 +170768836187,215,0 +170768836235,215,0 +170768836283,215,0 +170768836331,214,0 +170768836380,213,0 +170768836430,213,0 +170768836478,213,0 +170768836525,213,0 +170768836573,213,0 +170768836621,214,0 +170768836669,214,0 +170768836719,214,0 +170768836767,214,0 +170768836816,214,0 +170768836864,214,0 +170768836912,214,0 +170768836962,215,0 +170768837011,215,0 +170768837059,214,0 +170768837108,214,0 +170768837156,214,0 +170768837204,213,0 +170768837254,213,0 +170768837302,213,0 +170768837351,213,0 +170768837401,213,0 +170768837450,213,0 +170768837498,213,0 +170768837546,214,0 +170768837596,214,0 +170768837644,214,0 +170768837692,214,0 +170768837741,214,0 +170768837789,215,0 +170768837839,215,0 +170768837888,215,0 +170768837938,215,0 +170768837987,215,0 +170768838035,215,0 +170768838085,213,0 +170768838133,213,0 +170768838181,213,0 +170768838229,213,0 +170768838277,213,0 +170768838325,213,0 +170768838374,214,0 +170768838422,214,0 +170768838470,214,0 +170768838519,214,0 +170768838569,214,0 +170768838617,214,0 +170768838666,215,0 +170768838714,214,0 +170768838762,215,0 +170768838810,216,0 +170768838858,215,0 +170768838908,214,0 +170768838957,213,0 +170768839007,213,0 +170768839056,213,0 +170768839106,213,0 +170768839154,213,0 +170768839202,214,0 +170768839250,214,0 +170768839299,214,0 +170768839349,214,0 +170768839397,214,0 +170768839445,214,0 +170768839494,214,0 +170768839544,214,0 +170768839592,214,0 +170768839640,214,0 +170768839689,214,0 +170768839737,215,0 +170768839787,213,0 +170768839835,213,0 +170768839883,213,0 +170768839931,213,0 +170768839980,213,0 +170768840030,213,0 +170768840078,213,0 +170768840126,213,0 +170768840175,213,0 +170768840223,214,0 +170768840271,214,0 +170768840319,214,0 +170768840367,214,0 +170768840416,214,0 +170768840466,214,0 +170768840514,215,0 +170768840562,215,0 +170768840610,215,0 +170768840658,214,0 +170768840706,213,0 +170768840754,213,0 +170768840802,213,0 +170768840850,213,0 +170768840897,213,0 +170768840945,214,0 +170768840993,214,0 +170768841041,214,0 +170768841089,214,0 +170768841137,214,0 +170768841187,214,0 +170768841235,214,0 +170768841282,214,0 +170768841330,215,0 +170768841378,215,0 +170768841428,215,0 +170768841477,215,0 +170768841527,214,0 +170768841576,213,0 +170768841624,214,0 +170768841672,214,0 +170768841720,214,0 +170768841768,214,0 +170768841816,214,0 +170768841863,214,0 +170768841911,214,0 +170768841959,215,0 +170768842007,215,0 +170768842055,215,0 +170768842103,215,0 +170768842151,215,0 +170768842200,215,0 +170768842248,215,0 +170768842296,215,0 +170768842344,215,0 +170768842393,214,0 +170768842443,214,0 +170768842491,214,0 +170768842540,214,0 +170768842588,215,0 +170768842636,214,0 +170768842686,215,0 +170768842734,215,0 +170768842781,215,0 +170768842829,215,0 +170768842877,215,0 +170768842925,215,0 +170768842973,215,0 +170768843021,215,0 +170768843069,215,0 +170768843117,215,0 +170768843165,215,0 +170768843213,214,0 +170768843260,214,0 +170768843308,214,0 +170768843356,214,0 +170768843406,214,0 +170768843455,214,0 +170768843503,214,0 +170768843552,215,0 +170768843600,215,0 +170768843647,215,0 +170768843697,215,0 +170768843745,215,0 +170768843794,215,0 +170768843842,215,0 +170768843892,215,0 +170768843940,215,0 +170768843988,215,0 +170768844036,215,0 +170768844083,214,0 +170768844133,213,0 +170768844181,213,0 +170768844229,213,0 +170768844278,214,0 +170768844326,214,0 +170768844374,214,0 +170768844422,214,0 +170768844470,214,0 +170768844518,214,0 +170768844568,214,0 +170768844615,215,0 +170768844663,215,0 +170768844711,215,0 +170768844759,215,0 +170768844807,215,0 +170768844855,215,0 +170768844903,215,0 +170768844951,214,0 +170768845001,213,0 +170768845049,214,0 +170768845097,213,0 +170768845146,214,0 +170768845196,214,0 +170768845244,214,0 +170768845293,214,0 +170768845341,214,0 +170768845390,214,0 +170768845438,214,0 +170768845488,214,0 +170768845537,214,0 +170768845585,214,0 +170768845633,215,0 +170768845681,215,0 +170768845729,214,0 +170768845779,215,0 +170768845827,213,0 +170768845876,213,0 +170768845924,213,0 +170768845972,214,0 +170768846021,214,0 +170768846069,213,0 +170768846117,214,0 +170768846167,214,0 +170768846215,214,0 +170768846263,214,0 +170768846311,215,0 +170768846359,215,0 +170768846407,215,0 +170768846456,215,0 +170768846504,215,0 +170768846552,215,0 +170768846600,215,0 +170768846649,214,0 +170768846699,213,0 +170768846747,213,0 +170768846796,214,0 +170768846844,214,0 +170768846894,214,0 +170768846943,214,0 +170768846991,214,0 +170768847039,214,0 +170768847087,214,0 +170768847137,215,0 +170768847184,215,0 +170768847234,215,0 +170768847283,215,0 +170768847331,215,0 +170768847379,215,0 +170768847427,215,0 +170768847475,215,0 +170768847523,214,0 +170768847572,214,0 +170768847620,214,0 +170768847670,214,0 +170768847718,214,0 +170768847767,214,0 +170768847815,214,0 +170768847865,214,0 +170768847913,215,0 +170768847962,215,0 +170768848010,215,0 +170768848060,215,0 +170768848109,215,0 +170768848159,215,0 +170768848207,215,0 +170768848254,215,0 +170768848302,215,0 +170768848350,215,0 +170768848398,214,0 +170768848446,213,0 +170768848494,214,0 +170768848544,213,0 +170768848592,213,0 +170768848640,214,0 +170768848687,214,0 +170768848735,214,0 +170768848783,214,0 +170768848831,214,0 +170768848879,214,0 +170768848927,215,0 +170768848977,214,0 +170768849026,215,0 +170768849074,215,0 +170768849124,215,0 +170768849173,215,0 +170768849223,214,0 +170768849270,213,0 +170768849320,213,0 +170768849368,213,0 +170768849416,213,0 +170768849465,213,0 +170768849515,213,0 +170768849564,214,0 +170768849612,214,0 +170768849662,214,0 +170768849710,214,0 +170768849759,214,0 +170768849807,214,0 +170768849857,214,0 +170768849904,214,0 +170768849952,215,0 +170768850000,215,0 +170768850048,215,0 +170768850098,215,0 +170768850147,213,0 +170768850197,213,0 +170768850245,213,0 +170768850293,213,0 +170768850341,213,0 +170768850390,214,0 +170768850438,214,0 +170768850486,214,0 +170768850534,214,0 +170768850584,214,0 +170768850633,214,0 +170768850683,215,0 +170768850732,215,0 +170768850780,215,0 +170768850828,215,0 +170768850876,214,0 +170768850925,215,0 +170768850973,214,0 +170768851021,213,0 +170768851069,213,0 +170768851117,213,0 +170768851167,213,0 +170768851216,213,0 +170768851264,214,0 +170768851314,214,0 +170768851362,214,0 +170768851410,214,0 +170768851458,214,0 +170768851506,214,0 +170768851553,214,0 +170768851602,215,0 +170768851651,215,0 +170768851699,214,0 +170768851747,214,0 +170768851795,214,0 +170768851843,213,0 +170768851891,213,0 +170768851939,213,0 +170768851987,213,0 +170768852035,213,0 +170768852084,214,0 +170768852134,214,0 +170768852183,214,0 +170768852231,214,0 +170768852281,214,0 +170768852329,214,0 +170768852377,214,0 +170768852425,214,0 +170768852474,214,0 +170768852522,215,0 +170768852570,215,0 +170768852618,215,0 +170768852666,215,0 +170768852714,213,0 +170768852762,213,0 +170768852810,213,0 +170768852859,213,0 +170768852907,214,0 +170768852955,214,0 +170768853003,214,0 +170768853051,214,0 +170768853099,214,0 +170768853147,214,0 +170768853197,214,0 +170768853245,214,0 +170768853293,215,0 +170768853341,215,0 +170768853389,214,0 +170768853437,215,0 +170768853484,214,0 +170768853534,215,0 +170768853584,213,0 +170768853632,213,0 +170768853679,213,0 +170768853727,214,0 +170768853775,214,0 +170768853823,214,0 +170768853873,214,0 +170768853922,214,0 +170768853972,214,0 +170768854020,214,0 +170768854068,214,0 +170768854116,215,0 +170768854164,215,0 +170768854212,215,0 +170768854261,214,0 +170768854309,215,0 +170768854357,215,0 +170768854405,214,0 +170768854453,213,0 +170768854501,213,0 +170768854549,213,0 +170768854597,213,0 +170768854647,214,0 +170768854695,213,0 +170768854743,214,0 +170768854791,214,0 +170768854838,214,0 +170768854886,214,0 +170768854936,214,0 +170768854984,215,0 +170768855032,215,0 +170768855081,215,0 +170768855129,215,0 +170768855177,215,0 +170768855227,214,0 +170768855275,214,0 +170768855323,213,0 +170768855371,213,0 +170768855419,213,0 +170768855468,213,0 +170768855516,213,0 +170768855564,213,0 +170768855612,214,0 +170768855660,214,0 +170768855708,214,0 +170768855756,214,0 +170768855804,215,0 +170768855852,215,0 +170768855900,215,0 +170768855947,215,0 +170768855997,215,0 +170768856045,215,0 +170768856094,215,0 +170768856142,214,0 +170768856192,213,0 +170768856241,213,0 +170768856289,213,0 +170768856339,213,0 +170768856388,213,0 +170768856436,214,0 +170768856484,214,0 +170768856532,214,0 +170768856580,214,0 +170768856628,214,0 +170768856677,214,0 +170768856725,214,0 +170768856773,214,0 +170768856821,215,0 +170768856869,214,0 +170768856917,215,0 +170768856965,214,0 +170768857013,213,0 +170768857061,213,0 +170768857109,213,0 +170768857157,213,0 +170768857206,213,0 +170768857256,214,0 +170768857304,214,0 +170768857353,214,0 +170768857401,214,0 +170768857449,214,0 +170768857497,214,0 +170768857545,214,0 +170768857593,215,0 +170768857641,215,0 +170768857690,215,0 +170768857738,215,0 +170768857786,214,0 +170768857834,214,0 +170768857882,213,0 +170768857930,213,0 +170768857978,213,0 +170768858026,213,0 +170768858074,213,0 +170768858122,214,0 +170768858171,214,0 +170768858219,214,0 +170768858269,214,0 +170768858318,214,0 +170768858368,214,0 +170768858416,215,0 +170768858464,215,0 +170768858512,214,0 +170768858560,214,0 +170768858607,214,0 +170768858655,214,0 +170768858703,214,0 +170768858751,213,0 +170768858800,213,0 +170768858848,213,0 +170768858898,213,0 +170768858946,213,0 +170768858994,213,0 +170768859041,214,0 +170768859089,214,0 +170768859137,214,0 +170768859185,214,0 +170768859233,214,0 +170768859281,214,0 +170768859329,214,0 +170768859376,214,0 +170768859424,214,0 +170768859472,214,0 +170768859522,214,0 +170768859570,213,0 +170768859619,213,0 +170768859667,213,0 +170768859717,213,0 +170768859766,213,0 +170768859814,213,0 +170768859864,213,0 +170768859912,214,0 +170768859960,214,0 +170768860008,214,0 +170768860055,214,0 +170768860103,214,0 +170768860153,215,0 +170768860201,215,0 +170768860250,215,0 +170768860299,215,0 +170768860348,215,0 +170768860398,214,0 +170768860445,213,0 +170768860493,213,0 +170768860541,213,0 +170768860591,213,0 +170768860639,214,0 +170768860687,213,0 +170768860734,214,0 +170768860782,214,0 +170768860830,214,0 +170768860880,214,0 +170768860928,214,0 +170768860976,215,0 +170768861024,214,0 +170768861073,215,0 +170768861121,215,0 +170768861169,215,0 +170768861217,215,0 +170768861265,214,0 +170768861313,213,0 +170768861361,213,0 +170768861410,213,0 +170768861458,214,0 +170768861506,214,0 +170768861554,214,0 +170768861604,214,0 +170768861652,214,0 +170768861700,214,0 +170768861748,214,0 +170768861797,215,0 +170768861845,215,0 +170768861893,215,0 +170768861941,215,0 +170768861990,215,0 +170768862040,215,0 +170768862088,214,0 +170768862136,213,0 +170768862185,213,0 +170768862233,213,0 +170768862281,214,0 +170768862329,214,0 +170768862377,214,0 +170768862425,214,0 +170768862473,214,0 +170768862523,215,0 +170768862570,215,0 +170768862618,215,0 +170768862668,216,0 +170768862716,215,0 +170768862764,215,0 +170768862813,215,0 +170768862861,215,0 +170768862909,215,0 +170768862957,214,0 +170768863005,214,0 +170768863053,214,0 +170768863100,214,0 +170768863148,214,0 +170768863196,214,0 +170768863244,214,0 +170768863292,214,0 +170768863339,215,0 +170768863387,215,0 +170768863435,215,0 +170768863483,215,0 +170768863532,215,0 +170768863580,215,0 +170768863628,215,0 +170768863676,215,0 +170768863724,215,0 +170768863772,215,0 +170768863819,214,0 +170768863869,214,0 +170768863917,214,0 +170768863966,214,0 +170768864014,214,0 +170768864062,214,0 +170768864110,214,0 +170768864158,214,0 +170768864206,214,0 +170768864253,215,0 +170768864301,215,0 +170768864349,214,0 +170768864398,215,0 +170768864446,215,0 +170768864494,215,0 +170768864542,215,0 +170768864590,215,0 +170768864639,214,0 +170768864687,214,0 +170768864735,213,0 +170768864783,214,0 +170768864831,214,0 +170768864878,214,0 +170768864926,214,0 +170768864974,214,0 +170768865022,214,0 +170768865070,214,0 +170768865118,214,0 +170768865166,215,0 +170768865213,214,0 +170768865261,215,0 +170768865309,215,0 +170768865357,215,0 +170768865405,215,0 +170768865453,215,0 +170768865500,214,0 +170768865548,214,0 +170768865598,213,0 +170768865645,214,0 +170768865693,214,0 +170768865741,214,0 +170768865789,214,0 +170768865837,214,0 +170768865885,214,0 +170768865933,215,0 +170768865981,214,0 +170768866029,215,0 +170768866076,214,0 +170768866124,215,0 +170768866172,215,0 +170768866222,215,0 +170768866270,215,0 +170768866318,215,0 +170768866367,214,0 +170768866417,213,0 +170768866466,213,0 +170768866514,214,0 +170768866562,214,0 +170768866610,214,0 +170768866658,214,0 +170768866706,214,0 +170768866754,215,0 +170768866801,215,0 +170768866849,215,0 +170768866899,215,0 +170768866946,215,0 +170768866996,215,0 +170768867045,215,0 +170768867095,215,0 +170768867144,215,0 +170768867192,215,0 +170768867240,214,0 +170768867288,213,0 +170768867336,214,0 +170768867384,214,0 +170768867432,214,0 +170768867480,214,0 +170768867529,214,0 +170768867579,214,0 +170768867628,214,0 +170768867676,215,0 +170768867726,215,0 +170768867774,215,0 +170768867823,215,0 +170768867871,215,0 +170768867920,215,0 +170768867970,215,0 +170768868018,215,0 +170768868066,214,0 +170768868114,213,0 +170768868162,213,0 +170768868211,213,0 +170768868261,213,0 +170768868309,214,0 +170768868358,214,0 +170768868406,214,0 +170768868456,214,0 +170768868504,214,0 +170768868552,214,0 +170768868599,214,0 +170768868647,215,0 +170768868695,215,0 +170768868743,215,0 +170768868793,215,0 +170768868841,215,0 +170768868889,215,0 +170768868937,214,0 +170768868984,213,0 +170768869032,213,0 +170768869080,213,0 +170768869130,214,0 +170768869179,213,0 +170768869227,214,0 +170768869275,214,0 +170768869323,214,0 +170768869373,214,0 +170768869420,214,0 +170768869468,214,0 +170768869516,214,0 +170768869564,214,0 +170768869612,214,0 +170768869662,214,0 +170768869711,215,0 +170768869761,215,0 +170768869809,213,0 +170768869857,213,0 +170768869904,213,0 +170768869952,213,0 +170768870002,213,0 +170768870050,213,0 +170768870098,214,0 +170768870147,214,0 +170768870195,214,0 +170768870243,214,0 +170768870291,214,0 +170768870341,214,0 +170768870390,214,0 +170768870438,214,0 +170768870486,214,0 +170768870534,215,0 +170768870582,215,0 +170768870630,214,0 +170768870677,213,0 +170768870725,213,0 +170768870773,213,0 +170768870821,213,0 +170768870871,213,0 +170768870920,213,0 +170768870968,213,0 +170768871018,213,0 +170768871066,213,0 +170768871115,214,0 +170768871165,214,0 +170768871213,214,0 +170768871262,214,0 +170768871310,214,0 +170768871358,215,0 +170768871406,215,0 +170768871455,215,0 +170768871505,215,0 +170768871553,213,0 +170768871602,213,0 +170768871650,213,0 +170768871700,213,0 +170768871748,213,0 +170768871796,213,0 +170768871845,214,0 +170768871893,214,0 +170768871941,214,0 +170768871989,214,0 +170768872037,214,0 +170768872085,214,0 +170768872133,215,0 +170768872181,215,0 +170768872228,215,0 +170768872276,214,0 +170768872326,215,0 +170768872374,213,0 +170768872422,213,0 +170768872470,213,0 +170768872517,213,0 +170768872565,214,0 +170768872613,214,0 +170768872661,214,0 +170768872709,214,0 +170768872757,214,0 +170768872805,214,0 +170768872853,214,0 +170768872901,215,0 +170768872948,215,0 +170768872996,214,0 +170768873044,215,0 +170768873092,215,0 +170768873140,215,0 +170768873188,215,0 +170768873237,213,0 +170768873285,213,0 +170768873333,213,0 +170768873381,213,0 +170768873430,214,0 +170768873478,214,0 +170768873526,214,0 +170768873573,214,0 +170768873621,214,0 +170768873671,214,0 +170768873719,214,0 +170768873767,214,0 +170768873816,215,0 +170768873864,214,0 +170768873912,215,0 +170768873960,215,0 +170768874008,215,0 +170768874056,215,0 +170768874105,213,0 +170768874153,213,0 +170768874201,213,0 +170768874249,213,0 +170768874297,213,0 +170768874347,213,0 +170768874395,213,0 +170768874443,213,0 +170768874490,214,0 +170768874538,213,0 +170768874586,214,0 +170768874634,214,0 +170768874682,214,0 +170768874730,214,0 +170768874777,214,0 +170768874825,214,0 +170768874875,214,0 +170768874923,214,0 +170768874971,213,0 +170768875019,213,0 +170768875068,213,0 +170768875116,213,0 +170768875164,213,0 +170768875212,213,0 +170768875260,213,0 +170768875308,213,0 +170768875357,213,0 +170768875405,214,0 +170768875453,214,0 +170768875501,214,0 +170768875549,214,0 +170768875597,214,0 +170768875645,214,0 +170768875694,214,0 +170768875744,215,0 +170768875791,214,0 +170768875839,213,0 +170768875887,213,0 +170768875935,213,0 +170768875983,213,0 +170768876031,213,0 +170768876079,213,0 +170768876129,214,0 +170768876177,214,0 +170768876225,214,0 +170768876273,214,0 +170768876322,214,0 +170768876370,215,0 +170768876418,215,0 +170768876466,215,0 +170768876514,215,0 +170768876562,215,0 +170768876610,214,0 +170768876659,213,0 +170768876707,213,0 +170768876755,213,0 +170768876803,214,0 +170768876852,214,0 +170768876900,214,0 +170768876948,214,0 +170768876996,214,0 +170768877043,215,0 +170768877091,214,0 +170768877139,215,0 +170768877187,215,0 +170768877235,215,0 +170768877283,215,0 +170768877331,215,0 +170768877378,215,0 +170768877426,215,0 +170768877474,215,0 +170768877522,214,0 +170768877570,214,0 +170768877618,214,0 +170768877666,214,0 +170768877713,214,0 +170768877761,215,0 +170768877809,216,0 +170768877857,215,0 +170768877905,215,0 +170768877952,215,0 +170768878000,215,0 +170768878048,215,0 +170768878096,215,0 +170768878144,215,0 +170768878192,215,0 +170768878239,215,0 +170768878289,215,0 +170768878337,214,0 +170768878384,213,0 +170768878432,214,0 +170768878482,214,0 +170768878529,214,0 +170768878577,214,0 +170768878625,214,0 +170768878674,214,0 +170768878722,214,0 +170768878770,215,0 +170768878818,215,0 +170768878866,215,0 +170768878914,215,0 +170768878962,215,0 +170768879010,215,0 +170768879059,215,0 +170768879108,215,0 +170768879156,214,0 +170768879204,213,0 +170768879252,213,0 +170768879300,213,0 +170768879348,214,0 +170768879396,214,0 +170768879444,214,0 +170768879491,214,0 +170768879539,214,0 +170768879587,214,0 +170768879635,214,0 +170768879683,215,0 +170768879731,214,0 +170768879779,215,0 +170768879826,215,0 +170768879876,215,0 +170768879924,215,0 +170768879971,215,0 +170768880019,215,0 diff --git a/laser_value/0212-08.csv b/laser_value/0212-08.csv new file mode 100644 index 0000000..e9e6042 --- /dev/null +++ b/laser_value/0212-08.csv @@ -0,0 +1,7443 @@ +timestamp,laser_value,event +170768880069,213,0 +170768880119,213,0 +170768880166,213,0 +170768880216,213,0 +170768880264,214,0 +170768880311,214,0 +170768880359,214,0 +170768880407,214,0 +170768880455,214,0 +170768880503,214,0 +170768880551,214,0 +170768880599,214,0 +170768880646,214,0 +170768880694,215,0 +170768880742,215,0 +170768880790,215,0 +170768880838,215,0 +170768880886,215,0 +170768880934,215,0 +170768880981,215,0 +170768881029,215,0 +170768881077,215,0 +170768881125,215,0 +170768881174,215,0 +170768881222,215,0 +170768881270,215,0 +170768881318,214,0 +170768881366,214,0 +170768881414,214,0 +170768881461,214,0 +170768881509,214,0 +170768881557,214,0 +170768881605,214,0 +170768881653,214,0 +170768881701,214,0 +170768881749,215,0 +170768881796,215,0 +170768881844,215,0 +170768881892,215,0 +170768881940,215,0 +170768881988,215,0 +170768882035,215,0 +170768882083,215,0 +170768882131,215,0 +170768882179,214,0 +170768882227,213,0 +170768882275,213,0 +170768882324,213,0 +170768882372,214,0 +170768882421,214,0 +170768882469,214,0 +170768882517,214,0 +170768882565,214,0 +170768882614,215,0 +170768882662,215,0 +170768882710,215,0 +170768882758,215,0 +170768882806,215,0 +170768882853,215,0 +170768882901,215,0 +170768882949,215,0 +170768882997,215,0 +170768883045,214,0 +170768883092,213,0 +170768883140,213,0 +170768883190,213,0 +170768883237,214,0 +170768883285,214,0 +170768883333,214,0 +170768883381,214,0 +170768883429,214,0 +170768883477,215,0 +170768883524,215,0 +170768883572,215,0 +170768883620,215,0 +170768883669,215,0 +170768883717,215,0 +170768883765,215,0 +170768883813,215,0 +170768883861,214,0 +170768883909,214,0 +170768883957,213,0 +170768884004,213,0 +170768884052,213,0 +170768884102,213,0 +170768884149,214,0 +170768884197,214,0 +170768884245,214,0 +170768884293,214,0 +170768884341,214,0 +170768884390,215,0 +170768884438,214,0 +170768884486,215,0 +170768884534,215,0 +170768884583,215,0 +170768884631,215,0 +170768884679,215,0 +170768884726,215,0 +170768884774,213,0 +170768884822,213,0 +170768884872,213,0 +170768884920,213,0 +170768884967,214,0 +170768885015,213,0 +170768885063,214,0 +170768885111,214,0 +170768885159,214,0 +170768885206,214,0 +170768885254,214,0 +170768885302,215,0 +170768885350,215,0 +170768885398,215,0 +170768885446,215,0 +170768885493,215,0 +170768885541,215,0 +170768885589,215,0 +170768885637,213,0 +170768885685,213,0 +170768885734,213,0 +170768885782,213,0 +170768885830,213,0 +170768885878,213,0 +170768885926,214,0 +170768885974,214,0 +170768886022,214,0 +170768886070,214,0 +170768886117,214,0 +170768886167,214,0 +170768886215,215,0 +170768886263,215,0 +170768886310,215,0 +170768886358,215,0 +170768886406,215,0 +170768886454,214,0 +170768886502,213,0 +170768886550,213,0 +170768886599,213,0 +170768886647,213,0 +170768886695,213,0 +170768886743,213,0 +170768886790,214,0 +170768886838,214,0 +170768886888,214,0 +170768886935,214,0 +170768886983,214,0 +170768887031,214,0 +170768887079,214,0 +170768887127,215,0 +170768887175,215,0 +170768887222,215,0 +170768887270,215,0 +170768887318,214,0 +170768887366,213,0 +170768887414,214,0 +170768887462,214,0 +170768887510,214,0 +170768887557,214,0 +170768887605,214,0 +170768887653,214,0 +170768887701,214,0 +170768887749,215,0 +170768887797,215,0 +170768887844,215,0 +170768887892,215,0 +170768887940,215,0 +170768887990,215,0 +170768888038,215,0 +170768888085,215,0 +170768888133,215,0 +170768888181,214,0 +170768888231,213,0 +170768888279,213,0 +170768888327,214,0 +170768888375,214,0 +170768888423,214,0 +170768888470,214,0 +170768888518,214,0 +170768888566,214,0 +170768888616,214,0 +170768888664,215,0 +170768888712,215,0 +170768888761,215,0 +170768888810,215,0 +170768888858,215,0 +170768888906,215,0 +170768888954,215,0 +170768889002,214,0 +170768889051,213,0 +170768889099,213,0 +170768889147,213,0 +170768889195,214,0 +170768889243,214,0 +170768889293,214,0 +170768889342,214,0 +170768889390,214,0 +170768889438,214,0 +170768889486,214,0 +170768889534,214,0 +170768889583,215,0 +170768889631,214,0 +170768889679,214,0 +170768889727,214,0 +170768889774,215,0 +170768889822,215,0 +170768889870,215,0 +170768889918,213,0 +170768889967,213,0 +170768890015,213,0 +170768890063,214,0 +170768890111,214,0 +170768890159,214,0 +170768890207,214,0 +170768890255,214,0 +170768890304,214,0 +170768890352,215,0 +170768890400,215,0 +170768890448,215,0 +170768890498,215,0 +170768890545,215,0 +170768890593,215,0 +170768890641,215,0 +170768890691,215,0 +170768890739,214,0 +170768890787,213,0 +170768890835,214,0 +170768890884,214,0 +170768890934,214,0 +170768890981,214,0 +170768891029,214,0 +170768891079,215,0 +170768891127,214,0 +170768891175,214,0 +170768891223,215,0 +170768891271,215,0 +170768891320,215,0 +170768891368,215,0 +170768891416,215,0 +170768891464,215,0 +170768891512,215,0 +170768891559,214,0 +170768891607,214,0 +170768891655,214,0 +170768891704,214,0 +170768891752,214,0 +170768891800,214,0 +170768891848,214,0 +170768891897,215,0 +170768891945,215,0 +170768891993,215,0 +170768892041,215,0 +170768892088,215,0 +170768892136,215,0 +170768892184,215,0 +170768892232,215,0 +170768892281,215,0 +170768892331,215,0 +170768892380,215,0 +170768892428,215,0 +170768892476,214,0 +170768892524,214,0 +170768892574,213,0 +170768892622,214,0 +170768892670,214,0 +170768892717,214,0 +170768892765,214,0 +170768892813,214,0 +170768892861,215,0 +170768892911,215,0 +170768892959,215,0 +170768893006,215,0 +170768893054,215,0 +170768893104,215,0 +170768893153,215,0 +170768893201,215,0 +170768893249,215,0 +170768893297,215,0 +170768893345,213,0 +170768893395,213,0 +170768893442,214,0 +170768893492,214,0 +170768893540,214,0 +170768893589,214,0 +170768893637,214,0 +170768893685,214,0 +170768893733,214,0 +170768893781,215,0 +170768893829,215,0 +170768893878,215,0 +170768893926,215,0 +170768893976,215,0 +170768894024,215,0 +170768894072,215,0 +170768894120,215,0 +170768894168,214,0 +170768894217,213,0 +170768894267,213,0 +170768894314,213,0 +170768894362,213,0 +170768894412,213,0 +170768894461,214,0 +170768894511,214,0 +170768894559,214,0 +170768894608,214,0 +170768894658,214,0 +170768894706,215,0 +170768894754,215,0 +170768894802,215,0 +170768894851,215,0 +170768894900,215,0 +170768894948,215,0 +170768894998,214,0 +170768895047,213,0 +170768895095,213,0 +170768895144,213,0 +170768895192,213,0 +170768895242,213,0 +170768895290,213,0 +170768895338,213,0 +170768895385,213,0 +170768895433,214,0 +170768895481,214,0 +170768895529,214,0 +170768895577,214,0 +170768895627,214,0 +170768895675,215,0 +170768895722,215,0 +170768895770,215,0 +170768895820,215,0 +170768895868,214,0 +170768895916,213,0 +170768895964,213,0 +170768896013,213,0 +170768896061,213,0 +170768896111,213,0 +170768896159,213,0 +170768896207,214,0 +170768896255,214,0 +170768896304,214,0 +170768896352,214,0 +170768896401,214,0 +170768896449,215,0 +170768896497,215,0 +170768896545,215,0 +170768896594,215,0 +170768896642,214,0 +170768896690,214,0 +170768896738,213,0 +170768896786,213,0 +170768896834,213,0 +170768896881,213,0 +170768896931,213,0 +170768896979,213,0 +170768897026,214,0 +170768897074,214,0 +170768897122,214,0 +170768897170,214,0 +170768897218,214,0 +170768897266,214,0 +170768897314,215,0 +170768897362,215,0 +170768897410,215,0 +170768897458,214,0 +170768897506,215,0 +170768897554,215,0 +170768897602,213,0 +170768897649,213,0 +170768897697,213,0 +170768897745,213,0 +170768897793,213,0 +170768897841,213,0 +170768897889,213,0 +170768897939,213,0 +170768897988,213,0 +170768898038,214,0 +170768898085,214,0 +170768898133,214,0 +170768898181,214,0 +170768898229,214,0 +170768898277,214,0 +170768898325,214,0 +170768898373,214,0 +170768898420,215,0 +170768898468,213,0 +170768898516,213,0 +170768898564,213,0 +170768898612,213,0 +170768898660,214,0 +170768898708,213,0 +170768898755,213,0 +170768898803,214,0 +170768898851,214,0 +170768898899,214,0 +170768898947,214,0 +170768898995,214,0 +170768899043,214,0 +170768899092,214,0 +170768899140,215,0 +170768899188,214,0 +170768899236,215,0 +170768899284,215,0 +170768899331,213,0 +170768899381,213,0 +170768899430,213,0 +170768899478,213,0 +170768899526,213,0 +170768899574,214,0 +170768899622,214,0 +170768899669,214,0 +170768899717,214,0 +170768899765,214,0 +170768899813,214,0 +170768899861,214,0 +170768899908,214,0 +170768899956,214,0 +170768900004,214,0 +170768900052,215,0 +170768900100,215,0 +170768900148,214,0 +170768900195,213,0 +170768900243,213,0 +170768900291,213,0 +170768900339,213,0 +170768900387,213,0 +170768900435,214,0 +170768900485,214,0 +170768900534,214,0 +170768900583,214,0 +170768900633,214,0 +170768900681,214,0 +170768900729,214,0 +170768900779,214,0 +170768900827,215,0 +170768900875,215,0 +170768900924,215,0 +170768900972,214,0 +170768901020,214,0 +170768901068,213,0 +170768901116,213,0 +170768901164,213,0 +170768901212,214,0 +170768901261,214,0 +170768901311,214,0 +170768901360,214,0 +170768901408,214,0 +170768901458,214,0 +170768901507,214,0 +170768901556,215,0 +170768901604,215,0 +170768901652,215,0 +170768901702,215,0 +170768901750,215,0 +170768901798,215,0 +170768901845,214,0 +170768901893,214,0 +170768901941,214,0 +170768901989,214,0 +170768902036,214,0 +170768902086,214,0 +170768902134,214,0 +170768902182,214,0 +170768902229,214,0 +170768902277,215,0 +170768902325,215,0 +170768902374,215,0 +170768902422,215,0 +170768902470,215,0 +170768902518,215,0 +170768902566,215,0 +170768902613,215,0 +170768902661,215,0 +170768902709,214,0 +170768902758,214,0 +170768902806,214,0 +170768902854,214,0 +170768902902,215,0 +170768902952,214,0 +170768903000,215,0 +170768903048,215,0 +170768903097,215,0 +170768903145,215,0 +170768903193,215,0 +170768903241,215,0 +170768903288,215,0 +170768903336,215,0 +170768903386,215,0 +170768903434,215,0 +170768903482,215,0 +170768903529,215,0 +170768903577,215,0 +170768903627,214,0 +170768903676,214,0 +170768903724,214,0 +170768903772,214,0 +170768903820,214,0 +170768903868,214,0 +170768903916,214,0 +170768903965,215,0 +170768904013,215,0 +170768904061,215,0 +170768904109,215,0 +170768904157,215,0 +170768904207,215,0 +170768904256,215,0 +170768904304,215,0 +170768904352,215,0 +170768904400,215,0 +170768904448,214,0 +170768904496,213,0 +170768904545,213,0 +170768904593,214,0 +170768904641,214,0 +170768904689,214,0 +170768904737,214,0 +170768904785,214,0 +170768904833,214,0 +170768904881,214,0 +170768904929,214,0 +170768904977,214,0 +170768905025,214,0 +170768905073,215,0 +170768905120,215,0 +170768905168,214,0 +170768905216,214,0 +170768905264,214,0 +170768905312,213,0 +170768905359,213,0 +170768905407,213,0 +170768905455,214,0 +170768905503,213,0 +170768905551,214,0 +170768905599,214,0 +170768905648,214,0 +170768905696,214,0 +170768905744,214,0 +170768905792,214,0 +170768905840,214,0 +170768905889,214,0 +170768905937,214,0 +170768905985,214,0 +170768906033,215,0 +170768906081,215,0 +170768906130,215,0 +170768906178,214,0 +170768906226,213,0 +170768906274,213,0 +170768906322,213,0 +170768906372,214,0 +170768906419,214,0 +170768906467,214,0 +170768906515,214,0 +170768906563,214,0 +170768906611,215,0 +170768906661,214,0 +170768906709,215,0 +170768906756,215,0 +170768906804,215,0 +170768906852,215,0 +170768906900,215,0 +170768906950,215,0 +170768906999,214,0 +170768907049,213,0 +170768907098,213,0 +170768907148,214,0 +170768907195,214,0 +170768907243,214,0 +170768907291,214,0 +170768907339,214,0 +170768907387,215,0 +170768907435,215,0 +170768907483,215,0 +170768907531,215,0 +170768907580,215,0 +170768907628,215,0 +170768907678,215,0 +170768907726,215,0 +170768907774,215,0 +170768907823,214,0 +170768907873,213,0 +170768907921,213,0 +170768907969,213,0 +170768908017,213,0 +170768908064,213,0 +170768908112,214,0 +170768908162,214,0 +170768908211,214,0 +170768908261,214,0 +170768908310,214,0 +170768908358,214,0 +170768908406,214,0 +170768908454,214,0 +170768908502,214,0 +170768908550,215,0 +170768908598,215,0 +170768908646,215,0 +170768908695,214,0 +170768908745,213,0 +170768908793,213,0 +170768908840,213,0 +170768908888,213,0 +170768908938,214,0 +170768908986,214,0 +170768909034,214,0 +170768909082,214,0 +170768909131,214,0 +170768909179,214,0 +170768909227,215,0 +170768909276,214,0 +170768909324,215,0 +170768909374,215,0 +170768909422,215,0 +170768909469,215,0 +170768909517,215,0 +170768909567,214,0 +170768909616,213,0 +170768909664,213,0 +170768909712,213,0 +170768909760,214,0 +170768909808,214,0 +170768909857,214,0 +170768909905,214,0 +170768909955,214,0 +170768910004,214,0 +170768910054,215,0 +170768910102,215,0 +170768910150,215,0 +170768910197,215,0 +170768910247,215,0 +170768910295,215,0 +170768910343,214,0 +170768910390,214,0 +170768910438,213,0 +170768910486,213,0 +170768910534,213,0 +170768910582,213,0 +170768910630,214,0 +170768910678,214,0 +170768910725,213,0 +170768910773,214,0 +170768910821,214,0 +170768910869,214,0 +170768910917,214,0 +170768910966,215,0 +170768911014,215,0 +170768911062,215,0 +170768911110,214,0 +170768911159,215,0 +170768911209,215,0 +170768911257,214,0 +170768911305,213,0 +170768911354,213,0 +170768911402,213,0 +170768911450,213,0 +170768911498,213,0 +170768911546,214,0 +170768911596,214,0 +170768911644,214,0 +170768911692,214,0 +170768911740,214,0 +170768911788,214,0 +170768911837,215,0 +170768911885,215,0 +170768911935,215,0 +170768911983,215,0 +170768912031,215,0 +170768912078,215,0 +170768912128,214,0 +170768912176,213,0 +170768912224,213,0 +170768912272,213,0 +170768912320,213,0 +170768912368,213,0 +170768912417,214,0 +170768912465,214,0 +170768912515,214,0 +170768912563,214,0 +170768912611,214,0 +170768912660,214,0 +170768912708,214,0 +170768912758,215,0 +170768912806,214,0 +170768912855,215,0 +170768912903,214,0 +170768912951,215,0 +170768913000,213,0 +170768913048,213,0 +170768913096,213,0 +170768913146,213,0 +170768913195,213,0 +170768913243,214,0 +170768913293,213,0 +170768913340,214,0 +170768913388,214,0 +170768913436,214,0 +170768913486,214,0 +170768913534,214,0 +170768913583,214,0 +170768913633,214,0 +170768913681,215,0 +170768913730,215,0 +170768913778,215,0 +170768913826,214,0 +170768913874,213,0 +170768913922,213,0 +170768913970,213,0 +170768914019,214,0 +170768914069,214,0 +170768914117,214,0 +170768914166,214,0 +170768914214,214,0 +170768914262,214,0 +170768914311,214,0 +170768914359,215,0 +170768914409,214,0 +170768914457,215,0 +170768914504,215,0 +170768914552,215,0 +170768914600,215,0 +170768914648,215,0 +170768914696,214,0 +170768914744,213,0 +170768914792,213,0 +170768914840,213,0 +170768914889,214,0 +170768914939,214,0 +170768914987,214,0 +170768915036,214,0 +170768915084,214,0 +170768915134,214,0 +170768915183,215,0 +170768915231,214,0 +170768915279,215,0 +170768915327,214,0 +170768915377,215,0 +170768915425,215,0 +170768915473,215,0 +170768915521,215,0 +170768915568,213,0 +170768915616,213,0 +170768915666,213,0 +170768915714,213,0 +170768915762,213,0 +170768915810,214,0 +170768915858,213,0 +170768915906,214,0 +170768915954,214,0 +170768916003,214,0 +170768916053,214,0 +170768916101,215,0 +170768916149,214,0 +170768916197,214,0 +170768916245,215,0 +170768916294,215,0 +170768916344,215,0 +170768916392,214,0 +170768916439,213,0 +170768916487,213,0 +170768916535,213,0 +170768916583,214,0 +170768916631,214,0 +170768916679,214,0 +170768916729,214,0 +170768916777,214,0 +170768916825,214,0 +170768916873,214,0 +170768916921,214,0 +170768916968,214,0 +170768917016,215,0 +170768917064,215,0 +170768917112,215,0 +170768917160,215,0 +170768917208,215,0 +170768917256,215,0 +170768917306,213,0 +170768917354,213,0 +170768917402,214,0 +170768917449,213,0 +170768917497,214,0 +170768917545,214,0 +170768917593,214,0 +170768917643,214,0 +170768917691,215,0 +170768917739,215,0 +170768917788,215,0 +170768917836,215,0 +170768917886,214,0 +170768917935,215,0 +170768917985,214,0 +170768918033,215,0 +170768918080,214,0 +170768918128,214,0 +170768918176,213,0 +170768918224,213,0 +170768918272,214,0 +170768918322,214,0 +170768918371,214,0 +170768918421,214,0 +170768918471,214,0 +170768918519,215,0 +170768918568,214,0 +170768918618,214,0 +170768918666,215,0 +170768918714,214,0 +170768918762,215,0 +170768918810,214,0 +170768918859,215,0 +170768918909,215,0 +170768918957,215,0 +170768919006,213,0 +170768919054,213,0 +170768919103,213,0 +170768919151,213,0 +170768919199,213,0 +170768919247,214,0 +170768919295,213,0 +170768919343,214,0 +170768919393,214,0 +170768919440,214,0 +170768919490,214,0 +170768919539,214,0 +170768919587,214,0 +170768919637,215,0 +170768919685,214,0 +170768919733,215,0 +170768919781,214,0 +170768919829,214,0 +170768919878,213,0 +170768919928,213,0 +170768919976,213,0 +170768920024,213,0 +170768920073,213,0 +170768920121,213,0 +170768920169,214,0 +170768920217,214,0 +170768920265,214,0 +170768920313,214,0 +170768920362,214,0 +170768920410,214,0 +170768920460,214,0 +170768920507,214,0 +170768920557,215,0 +170768920605,215,0 +170768920654,215,0 +170768920702,213,0 +170768920752,213,0 +170768920800,213,0 +170768920848,213,0 +170768920896,213,0 +170768920945,213,0 +170768920993,214,0 +170768921041,214,0 +170768921089,214,0 +170768921138,214,0 +170768921188,214,0 +170768921237,215,0 +170768921285,215,0 +170768921335,215,0 +170768921383,215,0 +170768921430,215,0 +170768921478,215,0 +170768921528,215,0 +170768921577,213,0 +170768921625,213,0 +170768921673,214,0 +170768921721,214,0 +170768921769,214,0 +170768921816,214,0 +170768921864,214,0 +170768921912,214,0 +170768921960,214,0 +170768922009,215,0 +170768922057,215,0 +170768922105,215,0 +170768922154,215,0 +170768922202,215,0 +170768922250,215,0 +170768922298,215,0 +170768922346,215,0 +170768922394,214,0 +170768922441,213,0 +170768922489,214,0 +170768922537,214,0 +170768922585,214,0 +170768922633,214,0 +170768922682,214,0 +170768922730,214,0 +170768922778,214,0 +170768922826,214,0 +170768922874,215,0 +170768922922,215,0 +170768922969,215,0 +170768923017,215,0 +170768923065,215,0 +170768923113,215,0 +170768923161,215,0 +170768923209,215,0 +170768923257,215,0 +170768923305,213,0 +170768923353,213,0 +170768923401,214,0 +170768923449,214,0 +170768923498,214,0 +170768923546,214,0 +170768923596,214,0 +170768923644,214,0 +170768923693,214,0 +170768923741,215,0 +170768923790,215,0 +170768923838,215,0 +170768923886,215,0 +170768923934,215,0 +170768923984,215,0 +170768924032,215,0 +170768924081,215,0 +170768924129,214,0 +170768924177,213,0 +170768924225,213,0 +170768924273,213,0 +170768924321,213,0 +170768924368,214,0 +170768924418,214,0 +170768924468,214,0 +170768924515,214,0 +170768924563,215,0 +170768924613,214,0 +170768924662,214,0 +170768924712,214,0 +170768924761,215,0 +170768924809,215,0 +170768924857,215,0 +170768924905,214,0 +170768924954,215,0 +170768925002,213,0 +170768925052,213,0 +170768925101,214,0 +170768925149,213,0 +170768925197,214,0 +170768925247,214,0 +170768925296,214,0 +170768925346,214,0 +170768925394,214,0 +170768925443,214,0 +170768925491,215,0 +170768925539,215,0 +170768925587,215,0 +170768925635,215,0 +170768925683,215,0 +170768925731,215,0 +170768925781,215,0 +170768925830,214,0 +170768925878,214,0 +170768925928,214,0 +170768925975,214,0 +170768926023,214,0 +170768926073,214,0 +170768926121,214,0 +170768926169,214,0 +170768926218,214,0 +170768926266,215,0 +170768926314,215,0 +170768926362,214,0 +170768926410,215,0 +170768926459,215,0 +170768926507,215,0 +170768926557,215,0 +170768926605,215,0 +170768926653,215,0 +170768926701,214,0 +170768926749,213,0 +170768926798,213,0 +170768926846,213,0 +170768926894,214,0 +170768926942,214,0 +170768926990,214,0 +170768927038,214,0 +170768927087,214,0 +170768927135,215,0 +170768927185,214,0 +170768927232,215,0 +170768927280,215,0 +170768927330,215,0 +170768927378,215,0 +170768927426,215,0 +170768927474,215,0 +170768927522,215,0 +170768927570,214,0 +170768927618,213,0 +170768927666,214,0 +170768927714,214,0 +170768927761,214,0 +170768927811,214,0 +170768927859,214,0 +170768927907,214,0 +170768927955,214,0 +170768928003,214,0 +170768928051,215,0 +170768928100,215,0 +170768928150,215,0 +170768928197,215,0 +170768928247,215,0 +170768928295,215,0 +170768928344,215,0 +170768928394,214,0 +170768928442,213,0 +170768928490,214,0 +170768928537,214,0 +170768928585,214,0 +170768928635,214,0 +170768928684,214,0 +170768928732,214,0 +170768928782,214,0 +170768928830,214,0 +170768928879,215,0 +170768928927,215,0 +170768928975,215,0 +170768929025,215,0 +170768929074,215,0 +170768929122,215,0 +170768929170,215,0 +170768929218,215,0 +170768929266,214,0 +170768929315,213,0 +170768929363,213,0 +170768929411,213,0 +170768929459,214,0 +170768929508,214,0 +170768929556,214,0 +170768929606,214,0 +170768929654,214,0 +170768929702,214,0 +170768929750,214,0 +170768929798,214,0 +170768929845,214,0 +170768929893,215,0 +170768929941,215,0 +170768929989,215,0 +170768930037,215,0 +170768930085,214,0 +170768930133,213,0 +170768930181,213,0 +170768930230,213,0 +170768930280,213,0 +170768930327,213,0 +170768930377,213,0 +170768930425,213,0 +170768930474,214,0 +170768930522,214,0 +170768930570,214,0 +170768930618,214,0 +170768930666,214,0 +170768930714,214,0 +170768930762,215,0 +170768930810,215,0 +170768930858,215,0 +170768930905,214,0 +170768930953,214,0 +170768931001,213,0 +170768931049,213,0 +170768931099,213,0 +170768931147,213,0 +170768931195,213,0 +170768931242,214,0 +170768931290,214,0 +170768931338,214,0 +170768931386,214,0 +170768931434,214,0 +170768931482,214,0 +170768931530,215,0 +170768931580,214,0 +170768931628,214,0 +170768931677,215,0 +170768931726,214,0 +170768931774,215,0 +170768931824,214,0 +170768931872,213,0 +170768931921,213,0 +170768931969,213,0 +170768932019,213,0 +170768932068,214,0 +170768932116,214,0 +170768932164,214,0 +170768932214,214,0 +170768932261,214,0 +170768932311,214,0 +170768932359,215,0 +170768932409,215,0 +170768932458,215,0 +170768932508,215,0 +170768932556,215,0 +170768932603,215,0 +170768932651,214,0 +170768932699,213,0 +170768932749,214,0 +170768932797,213,0 +170768932845,214,0 +170768932892,214,0 +170768932940,214,0 +170768932990,214,0 +170768933037,214,0 +170768933085,214,0 +170768933133,215,0 +170768933182,215,0 +170768933230,215,0 +170768933278,215,0 +170768933326,215,0 +170768933374,215,0 +170768933423,215,0 +170768933471,214,0 +170768933519,215,0 +170768933567,213,0 +170768933614,213,0 +170768933664,213,0 +170768933712,213,0 +170768933760,213,0 +170768933807,214,0 +170768933855,214,0 +170768933903,214,0 +170768933951,214,0 +170768933999,214,0 +170768934046,214,0 +170768934096,214,0 +170768934144,214,0 +170768934192,215,0 +170768934239,215,0 +170768934287,215,0 +170768934335,215,0 +170768934383,214,0 +170768934431,213,0 +170768934479,213,0 +170768934527,213,0 +170768934574,213,0 +170768934622,213,0 +170768934670,213,0 +170768934718,213,0 +170768934766,213,0 +170768934814,213,0 +170768934862,213,0 +170768934909,214,0 +170768934957,214,0 +170768935005,214,0 +170768935054,214,0 +170768935102,214,0 +170768935150,214,0 +170768935199,214,0 +170768935247,214,0 +170768935297,213,0 +170768935345,213,0 +170768935393,213,0 +170768935441,213,0 +170768935489,213,0 +170768935536,213,0 +170768935584,214,0 +170768935632,214,0 +170768935682,214,0 +170768935731,214,0 +170768935779,214,0 +170768935828,214,0 +170768935876,214,0 +170768935924,214,0 +170768935972,214,0 +170768936021,214,0 +170768936069,215,0 +170768936117,214,0 +170768936167,213,0 +170768936216,213,0 +170768936264,213,0 +170768936314,214,0 +170768936362,213,0 +170768936411,214,0 +170768936461,214,0 +170768936508,214,0 +170768936556,214,0 +170768936604,214,0 +170768936652,215,0 +170768936700,215,0 +170768936748,214,0 +170768936798,215,0 +170768936846,214,0 +170768936893,215,0 +170768936943,214,0 +170768936993,214,0 +170768937042,213,0 +170768937090,214,0 +170768937139,214,0 +170768937189,214,0 +170768937237,214,0 +170768937285,214,0 +170768937334,214,0 +170768937382,214,0 +170768937430,215,0 +170768937478,214,0 +170768937527,215,0 +170768937575,215,0 +170768937623,215,0 +170768937672,215,0 +170768937720,215,0 +170768937768,215,0 +170768937817,214,0 +170768937865,214,0 +170768937913,214,0 +170768937961,214,0 +170768938009,214,0 +170768938057,214,0 +170768938106,214,0 +170768938154,215,0 +170768938202,215,0 +170768938250,215,0 +170768938300,215,0 +170768938348,215,0 +170768938396,215,0 +170768938445,215,0 +170768938493,215,0 +170768938541,215,0 +170768938589,215,0 +170768938637,215,0 +170768938685,215,0 +170768938733,214,0 +170768938781,214,0 +170768938830,214,0 +170768938878,214,0 +170768938926,214,0 +170768938974,214,0 +170768939022,214,0 +170768939070,215,0 +170768939119,215,0 +170768939167,215,0 +170768939215,215,0 +170768939265,215,0 +170768939314,215,0 +170768939364,215,0 +170768939412,215,0 +170768939460,215,0 +170768939508,214,0 +170768939557,214,0 +170768939605,214,0 +170768939654,214,0 +170768939702,214,0 +170768939750,214,0 +170768939800,214,0 +170768939848,214,0 +170768939895,215,0 +170768939945,215,0 +170768939994,215,0 +170768940042,215,0 +170768940090,215,0 +170768940138,215,0 +170768940186,215,0 +170768940234,215,0 +170768940283,215,0 +170768940331,215,0 +170768940381,215,0 +170768940429,214,0 +170768940477,214,0 +170768940526,214,0 +170768940574,214,0 +170768940624,214,0 +170768940673,214,0 +170768940721,214,0 +170768940769,214,0 +170768940817,215,0 +170768940864,215,0 +170768940914,215,0 +170768940962,215,0 +170768941010,215,0 +170768941059,215,0 +170768941109,215,0 +170768941158,215,0 +170768941208,215,0 +170768941257,215,0 +170768941307,213,0 +170768941356,213,0 +170768941404,214,0 +170768941454,214,0 +170768941501,214,0 +170768941551,214,0 +170768941599,214,0 +170768941648,214,0 +170768941696,215,0 +170768941744,215,0 +170768941792,215,0 +170768941842,215,0 +170768941889,215,0 +170768941937,215,0 +170768941985,215,0 +170768942033,215,0 +170768942081,214,0 +170768942129,213,0 +170768942177,213,0 +170768942225,213,0 +170768942274,213,0 +170768942322,213,0 +170768942370,214,0 +170768942420,214,0 +170768942468,214,0 +170768942516,214,0 +170768942564,214,0 +170768942613,215,0 +170768942663,214,0 +170768942712,215,0 +170768942760,214,0 +170768942808,215,0 +170768942858,215,0 +170768942906,214,0 +170768942954,214,0 +170768943003,213,0 +170768943051,213,0 +170768943101,213,0 +170768943148,213,0 +170768943196,213,0 +170768943244,213,0 +170768943294,214,0 +170768943342,213,0 +170768943390,214,0 +170768943439,214,0 +170768943487,214,0 +170768943535,214,0 +170768943582,214,0 +170768943630,214,0 +170768943678,214,0 +170768943726,214,0 +170768943775,215,0 +170768943823,214,0 +170768943871,213,0 +170768943919,213,0 +170768943967,213,0 +170768944014,214,0 +170768944062,214,0 +170768944110,214,0 +170768944159,214,0 +170768944207,214,0 +170768944255,214,0 +170768944303,214,0 +170768944351,214,0 +170768944399,214,0 +170768944446,215,0 +170768944494,215,0 +170768944544,215,0 +170768944592,215,0 +170768944639,215,0 +170768944687,214,0 +170768944735,213,0 +170768944783,213,0 +170768944831,213,0 +170768944879,213,0 +170768944927,213,0 +170768944974,213,0 +170768945022,214,0 +170768945070,214,0 +170768945118,214,0 +170768945166,214,0 +170768945213,214,0 +170768945263,214,0 +170768945311,215,0 +170768945359,215,0 +170768945407,215,0 +170768945455,214,0 +170768945503,215,0 +170768945552,213,0 +170768945601,213,0 +170768945651,213,0 +170768945701,213,0 +170768945750,213,0 +170768945798,213,0 +170768945846,213,0 +170768945894,213,0 +170768945942,213,0 +170768945990,214,0 +170768946038,214,0 +170768946087,214,0 +170768946135,214,0 +170768946185,214,0 +170768946233,214,0 +170768946282,214,0 +170768946330,215,0 +170768946378,214,0 +170768946427,213,0 +170768946477,213,0 +170768946526,213,0 +170768946574,213,0 +170768946622,213,0 +170768946670,213,0 +170768946719,213,0 +170768946767,213,0 +170768946815,213,0 +170768946863,214,0 +170768946913,214,0 +170768946961,214,0 +170768947010,214,0 +170768947058,214,0 +170768947107,215,0 +170768947155,215,0 +170768947205,215,0 +170768947255,215,0 +170768947304,213,0 +170768947352,213,0 +170768947402,213,0 +170768947450,214,0 +170768947498,214,0 +170768947546,215,0 +170768947594,214,0 +170768947642,214,0 +170768947691,214,0 +170768947739,215,0 +170768947789,215,0 +170768947838,215,0 +170768947888,215,0 +170768947937,215,0 +170768947985,215,0 +170768948033,215,0 +170768948081,215,0 +170768948129,214,0 +170768948178,214,0 +170768948228,214,0 +170768948277,214,0 +170768948325,214,0 +170768948373,214,0 +170768948421,214,0 +170768948471,214,0 +170768948519,215,0 +170768948567,215,0 +170768948614,215,0 +170768948662,215,0 +170768948710,215,0 +170768948758,215,0 +170768948808,215,0 +170768948857,215,0 +170768948905,215,0 +170768948953,214,0 +170768949001,213,0 +170768949051,213,0 +170768949098,214,0 +170768949146,213,0 +170768949194,214,0 +170768949242,214,0 +170768949292,214,0 +170768949340,214,0 +170768949387,214,0 +170768949435,214,0 +170768949483,215,0 +170768949531,214,0 +170768949579,214,0 +170768949627,214,0 +170768949676,215,0 +170768949724,215,0 +170768949772,215,0 +170768949820,214,0 +170768949868,213,0 +170768949918,213,0 +170768949966,213,0 +170768950015,214,0 +170768950063,213,0 +170768950113,214,0 +170768950161,214,0 +170768950208,214,0 +170768950256,214,0 +170768950306,214,0 +170768950354,214,0 +170768950402,215,0 +170768950450,214,0 +170768950499,215,0 +170768950547,215,0 +170768950595,214,0 +170768950644,214,0 +170768950692,214,0 +170768950742,213,0 +170768950790,214,0 +170768950838,214,0 +170768950887,214,0 +170768950935,214,0 +170768950983,214,0 +170768951032,214,0 +170768951080,214,0 +170768951130,214,0 +170768951180,214,0 +170768951228,214,0 +170768951275,215,0 +170768951323,215,0 +170768951371,214,0 +170768951419,214,0 +170768951467,215,0 +170768951517,215,0 +170768951565,213,0 +170768951612,214,0 +170768951660,214,0 +170768951710,214,0 +170768951758,214,0 +170768951806,214,0 +170768951855,214,0 +170768951903,214,0 +170768951951,215,0 +170768951999,215,0 +170768952047,215,0 +170768952095,215,0 +170768952143,215,0 +170768952191,215,0 +170768952240,215,0 +170768952290,215,0 +170768952339,215,0 +170768952389,214,0 +170768952438,214,0 +170768952486,214,0 +170768952534,214,0 +170768952583,214,0 +170768952633,214,0 +170768952682,214,0 +170768952730,215,0 +170768952780,214,0 +170768952828,215,0 +170768952876,215,0 +170768952925,215,0 +170768952975,215,0 +170768953023,215,0 +170768953070,215,0 +170768953120,215,0 +170768953168,215,0 +170768953217,214,0 +170768953265,213,0 +170768953315,213,0 +170768953363,213,0 +170768953412,214,0 +170768953460,214,0 +170768953508,214,0 +170768953557,214,0 +170768953605,214,0 +170768953653,214,0 +170768953701,214,0 +170768953749,215,0 +170768953797,215,0 +170768953845,214,0 +170768953893,215,0 +170768953941,215,0 +170768953989,215,0 +170768954037,215,0 +170768954084,215,0 +170768954134,213,0 +170768954182,213,0 +170768954231,213,0 +170768954279,213,0 +170768954329,214,0 +170768954377,214,0 +170768954425,214,0 +170768954474,213,0 +170768954522,214,0 +170768954570,214,0 +170768954618,214,0 +170768954666,214,0 +170768954715,214,0 +170768954763,215,0 +170768954811,214,0 +170768954859,215,0 +170768954907,214,0 +170768954957,214,0 +170768955006,213,0 +170768955056,213,0 +170768955104,213,0 +170768955151,213,0 +170768955199,213,0 +170768955247,213,0 +170768955297,214,0 +170768955345,214,0 +170768955394,214,0 +170768955444,214,0 +170768955492,214,0 +170768955539,214,0 +170768955587,214,0 +170768955635,214,0 +170768955683,215,0 +170768955733,214,0 +170768955781,215,0 +170768955829,213,0 +170768955876,213,0 +170768955924,213,0 +170768955972,213,0 +170768956020,213,0 +170768956068,213,0 +170768956116,214,0 +170768956164,214,0 +170768956214,214,0 +170768956262,214,0 +170768956311,214,0 +170768956361,215,0 +170768956410,215,0 +170768956458,215,0 +170768956506,215,0 +170768956554,215,0 +170768956602,215,0 +170768956651,214,0 +170768956699,213,0 +170768956749,213,0 +170768956797,213,0 +170768956845,213,0 +170768956893,213,0 +170768956940,213,0 +170768956988,214,0 +170768957038,214,0 +170768957086,214,0 +170768957134,214,0 +170768957182,214,0 +170768957231,215,0 +170768957279,215,0 +170768957327,215,0 +170768957375,215,0 +170768957423,215,0 +170768957471,215,0 +170768957520,214,0 +170768957568,213,0 +170768957618,213,0 +170768957666,213,0 +170768957714,213,0 +170768957761,213,0 +170768957809,214,0 +170768957859,214,0 +170768957907,214,0 +170768957955,214,0 +170768958003,214,0 +170768958051,214,0 +170768958098,215,0 +170768958146,215,0 +170768958194,215,0 +170768958244,214,0 +170768958292,214,0 +170768958340,215,0 +170768958387,214,0 +170768958435,213,0 +170768958483,213,0 +170768958531,213,0 +170768958581,213,0 +170768958629,214,0 +170768958677,214,0 +170768958725,214,0 +170768958772,214,0 +170768958822,214,0 +170768958870,214,0 +170768958918,215,0 +170768958966,215,0 +170768959015,215,0 +170768959065,215,0 +170768959113,215,0 +170768959162,215,0 +170768959210,215,0 +170768959260,213,0 +170768959308,213,0 +170768959355,214,0 +170768959405,214,0 +170768959453,214,0 +170768959501,214,0 +170768959549,214,0 +170768959598,214,0 +170768959646,214,0 +170768959694,214,0 +170768959743,214,0 +170768959793,214,0 +170768959841,214,0 +170768959889,214,0 +170768959938,214,0 +170768959986,214,0 +170768960035,214,0 +170768960083,214,0 +170768960131,213,0 +170768960181,213,0 +170768960229,214,0 +170768960277,213,0 +170768960325,214,0 +170768960372,214,0 +170768960420,214,0 +170768960470,214,0 +170768960518,214,0 +170768960567,214,0 +170768960617,214,0 +170768960665,215,0 +170768960713,215,0 +170768960761,215,0 +170768960809,214,0 +170768960857,214,0 +170768960904,214,0 +170768960952,213,0 +170768961000,213,0 +170768961048,213,0 +170768961096,213,0 +170768961144,213,0 +170768961192,214,0 +170768961240,213,0 +170768961287,214,0 +170768961335,214,0 +170768961383,214,0 +170768961431,214,0 +170768961479,214,0 +170768961527,215,0 +170768961575,214,0 +170768961625,215,0 +170768961673,215,0 +170768961722,215,0 +170768961770,215,0 +170768961820,213,0 +170768961869,213,0 +170768961917,213,0 +170768961965,214,0 +170768962014,214,0 +170768962062,214,0 +170768962110,214,0 +170768962160,214,0 +170768962209,214,0 +170768962259,214,0 +170768962307,215,0 +170768962356,215,0 +170768962404,215,0 +170768962453,215,0 +170768962501,215,0 +170768962551,215,0 +170768962599,215,0 +170768962647,214,0 +170768962695,214,0 +170768962744,214,0 +170768962792,214,0 +170768962840,214,0 +170768962888,214,0 +170768962936,214,0 +170768962984,215,0 +170768963032,214,0 +170768963081,215,0 +170768963131,215,0 +170768963179,215,0 +170768963226,215,0 +170768963274,215,0 +170768963324,215,0 +170768963372,215,0 +170768963421,215,0 +170768963471,214,0 +170768963520,213,0 +170768963568,214,0 +170768963616,214,0 +170768963664,214,0 +170768963712,214,0 +170768963760,214,0 +170768963809,214,0 +170768963859,214,0 +170768963907,215,0 +170768963956,215,0 +170768964004,215,0 +170768964052,215,0 +170768964100,215,0 +170768964148,215,0 +170768964196,215,0 +170768964244,215,0 +170768964293,215,0 +170768964341,215,0 +170768964389,214,0 +170768964439,214,0 +170768964488,214,0 +170768964536,214,0 +170768964585,214,0 +170768964635,214,0 +170768964684,214,0 +170768964732,214,0 +170768964780,215,0 +170768964830,215,0 +170768964879,215,0 +170768964929,215,0 +170768964978,215,0 +170768965026,215,0 +170768965075,215,0 +170768965125,215,0 +170768965173,215,0 +170768965221,215,0 +170768965269,213,0 +170768965317,213,0 +170768965366,214,0 +170768965416,214,0 +170768965464,214,0 +170768965512,214,0 +170768965561,214,0 +170768965611,214,0 +170768965659,214,0 +170768965707,214,0 +170768965755,215,0 +170768965803,215,0 +170768965851,215,0 +170768965899,214,0 +170768965947,215,0 +170768965994,215,0 +170768966044,215,0 +170768966094,214,0 +170768966142,213,0 +170768966191,213,0 +170768966241,213,0 +170768966288,214,0 +170768966336,214,0 +170768966384,214,0 +170768966432,214,0 +170768966480,214,0 +170768966530,214,0 +170768966578,214,0 +170768966625,215,0 +170768966675,215,0 +170768966723,215,0 +170768966771,215,0 +170768966819,215,0 +170768966867,215,0 +170768966916,214,0 +170768966964,213,0 +170768967012,213,0 +170768967060,214,0 +170768967108,214,0 +170768967157,214,0 +170768967205,214,0 +170768967255,214,0 +170768967304,214,0 +170768967352,214,0 +170768967400,214,0 +170768967448,215,0 +170768967496,215,0 +170768967545,215,0 +170768967593,215,0 +170768967641,215,0 +170768967691,215,0 +170768967738,215,0 +170768967786,215,0 +170768967836,213,0 +170768967884,213,0 +170768967933,213,0 +170768967983,213,0 +170768968032,213,0 +170768968082,214,0 +170768968130,214,0 +170768968177,214,0 +170768968225,214,0 +170768968273,214,0 +170768968321,214,0 +170768968369,214,0 +170768968418,214,0 +170768968466,215,0 +170768968514,215,0 +170768968564,215,0 +170768968612,214,0 +170768968660,213,0 +170768968708,213,0 +170768968756,213,0 +170768968803,214,0 +170768968853,213,0 +170768968901,214,0 +170768968949,214,0 +170768968997,214,0 +170768969045,214,0 +170768969094,214,0 +170768969142,214,0 +170768969191,214,0 +170768969239,215,0 +170768969289,215,0 +170768969337,215,0 +170768969385,215,0 +170768969433,215,0 +170768969481,214,0 +170768969528,213,0 +170768969576,213,0 +170768969624,213,0 +170768969674,213,0 +170768969722,213,0 +170768969771,214,0 +170768969819,213,0 +170768969867,214,0 +170768969915,214,0 +170768969965,215,0 +170768970012,214,0 +170768970060,215,0 +170768970108,215,0 +170768970158,215,0 +170768970206,215,0 +170768970254,215,0 +170768970302,215,0 +170768970349,215,0 +170768970399,213,0 +170768970447,213,0 +170768970495,213,0 +170768970543,214,0 +170768970591,214,0 +170768970638,214,0 +170768970688,214,0 +170768970736,214,0 +170768970784,214,0 +170768970833,215,0 +170768970883,215,0 +170768970931,215,0 +170768970980,215,0 +170768971029,215,0 +170768971079,215,0 +170768971127,215,0 +170768971175,215,0 +170768971224,214,0 +170768971274,213,0 +170768971323,213,0 +170768971373,213,0 +170768971421,213,0 +170768971469,213,0 +170768971518,213,0 +170768971567,214,0 +170768971615,214,0 +170768971663,214,0 +170768971711,214,0 +170768971759,214,0 +170768971807,214,0 +170768971855,215,0 +170768971905,215,0 +170768971954,215,0 +170768972004,215,0 +170768972052,214,0 +170768972100,213,0 +170768972148,213,0 +170768972197,213,0 +170768972247,213,0 +170768972296,213,0 +170768972344,213,0 +170768972394,214,0 +170768972442,214,0 +170768972490,214,0 +170768972538,214,0 +170768972585,214,0 +170768972633,214,0 +170768972681,214,0 +170768972729,214,0 +170768972779,214,0 +170768972827,215,0 +170768972876,214,0 +170768972926,214,0 +170768972975,213,0 +170768973025,213,0 +170768973073,213,0 +170768973122,213,0 +170768973170,213,0 +170768973218,214,0 +170768973268,214,0 +170768973317,214,0 +170768973365,214,0 +170768973415,215,0 +170768973462,215,0 +170768973512,215,0 +170768973560,215,0 +170768973609,215,0 +170768973657,215,0 +170768973705,215,0 +170768973753,215,0 +170768973803,213,0 +170768973852,213,0 +170768973902,213,0 +170768973951,213,0 +170768973999,214,0 +170768974047,214,0 +170768974095,214,0 +170768974143,214,0 +170768974192,214,0 +170768974242,214,0 +170768974291,214,0 +170768974339,215,0 +170768974389,215,0 +170768974437,215,0 +170768974485,215,0 +170768974533,215,0 +170768974581,215,0 +170768974628,215,0 +170768974678,213,0 +170768974726,213,0 +170768974774,214,0 +170768974822,214,0 +170768974870,214,0 +170768974918,214,0 +170768974967,214,0 +170768975017,214,0 +170768975065,214,0 +170768975114,214,0 +170768975162,214,0 +170768975211,214,0 +170768975259,215,0 +170768975307,215,0 +170768975355,215,0 +170768975403,215,0 +170768975451,215,0 +170768975499,214,0 +170768975547,213,0 +170768975595,213,0 +170768975643,213,0 +170768975692,214,0 +170768975740,214,0 +170768975788,214,0 +170768975838,214,0 +170768975887,214,0 +170768975935,214,0 +170768975985,215,0 +170768976034,215,0 +170768976082,215,0 +170768976130,215,0 +170768976180,215,0 +170768976228,215,0 +170768976276,215,0 +170768976324,215,0 +170768976371,214,0 +170768976419,213,0 +170768976469,213,0 +170768976517,214,0 +170768976565,214,0 +170768976613,214,0 +170768976661,214,0 +170768976709,214,0 +170768976757,214,0 +170768976804,214,0 +170768976852,214,0 +170768976900,214,0 +170768976948,215,0 +170768976996,215,0 +170768977044,215,0 +170768977092,215,0 +170768977140,215,0 +170768977189,215,0 +170768977239,214,0 +170768977287,213,0 +170768977335,213,0 +170768977383,214,0 +170768977431,214,0 +170768977479,214,0 +170768977527,214,0 +170768977575,214,0 +170768977623,214,0 +170768977672,214,0 +170768977721,215,0 +170768977769,214,0 +170768977817,215,0 +170768977865,215,0 +170768977913,215,0 +170768977961,215,0 +170768978011,215,0 +170768978059,214,0 +170768978108,213,0 +170768978156,213,0 +170768978206,213,0 +170768978254,214,0 +170768978303,214,0 +170768978351,214,0 +170768978399,214,0 +170768978448,214,0 +170768978496,214,0 +170768978546,214,0 +170768978594,215,0 +170768978642,215,0 +170768978690,215,0 +170768978738,215,0 +170768978787,215,0 +170768978837,215,0 +170768978885,215,0 +170768978934,214,0 +170768978984,214,0 +170768979033,214,0 +170768979083,214,0 +170768979132,214,0 +170768979182,214,0 +170768979230,214,0 +170768979279,214,0 +170768979329,215,0 +170768979377,214,0 +170768979426,215,0 +170768979474,215,0 +170768979524,215,0 +170768979573,215,0 +170768979621,215,0 +170768979671,215,0 +170768979719,215,0 +170768979768,215,0 +170768979816,213,0 +170768979864,213,0 +170768979912,214,0 +170768979960,214,0 +170768980008,214,0 +170768980056,214,0 +170768980103,214,0 +170768980151,215,0 +170768980201,214,0 +170768980250,215,0 +170768980298,215,0 +170768980346,215,0 +170768980396,215,0 +170768980444,215,0 +170768980491,215,0 +170768980539,215,0 +170768980587,215,0 +170768980635,214,0 +170768980685,214,0 +170768980733,214,0 +170768980781,214,0 +170768980829,214,0 +170768980876,214,0 +170768980924,214,0 +170768980972,214,0 +170768981020,214,0 +170768981070,214,0 +170768981118,214,0 +170768981166,214,0 +170768981214,215,0 +170768981261,215,0 +170768981309,215,0 +170768981357,215,0 +170768981407,215,0 +170768981455,215,0 +170768981503,214,0 +170768981551,214,0 +170768981599,214,0 +170768981648,214,0 +170768981697,214,0 +170768981745,214,0 +170768981793,214,0 +170768981841,215,0 +170768981889,214,0 +170768981937,215,0 +170768981985,215,0 +170768982035,215,0 +170768982082,215,0 +170768982130,215,0 +170768982178,215,0 +170768982228,215,0 +170768982277,215,0 +170768982325,215,0 +170768982375,214,0 +170768982424,213,0 +170768982472,214,0 +170768982520,213,0 +170768982569,214,0 +170768982619,214,0 +170768982668,214,0 +170768982718,214,0 +170768982766,214,0 +170768982814,214,0 +170768982862,215,0 +170768982910,215,0 +170768982959,215,0 +170768983009,215,0 +170768983057,215,0 +170768983105,215,0 +170768983153,215,0 +170768983201,215,0 +170768983249,213,0 +170768983298,213,0 +170768983346,213,0 +170768983394,213,0 +170768983442,214,0 +170768983491,213,0 +170768983539,214,0 +170768983587,214,0 +170768983635,214,0 +170768983685,214,0 +170768983734,214,0 +170768983782,214,0 +170768983832,215,0 +170768983880,215,0 +170768983927,215,0 +170768983975,215,0 +170768984025,215,0 +170768984074,215,0 +170768984122,213,0 +170768984170,213,0 +170768984218,213,0 +170768984268,213,0 +170768984317,214,0 +170768984365,214,0 +170768984413,214,0 +170768984461,214,0 +170768984509,214,0 +170768984557,214,0 +170768984605,214,0 +170768984654,215,0 +170768984702,215,0 +170768984752,215,0 +170768984801,215,0 +170768984849,215,0 +170768984898,214,0 +170768984948,213,0 +170768984996,213,0 +170768985044,213,0 +170768985092,213,0 +170768985140,214,0 +170768985187,214,0 +170768985235,214,0 +170768985283,214,0 +170768985331,214,0 +170768985379,215,0 +170768985427,214,0 +170768985477,214,0 +170768985526,214,0 +170768985574,215,0 +170768985622,214,0 +170768985672,215,0 +170768985721,215,0 +170768985770,215,0 +170768985818,214,0 +170768985866,213,0 +170768985914,213,0 +170768985963,213,0 +170768986011,214,0 +170768986059,214,0 +170768986109,214,0 +170768986156,214,0 +170768986206,214,0 +170768986254,214,0 +170768986302,214,0 +170768986349,215,0 +170768986397,215,0 +170768986445,215,0 +170768986493,215,0 +170768986541,215,0 +170768986589,215,0 +170768986638,214,0 +170768986686,214,0 +170768986734,213,0 +170768986784,213,0 +170768986833,214,0 +170768986881,214,0 +170768986929,214,0 +170768986977,214,0 +170768987025,214,0 +170768987074,214,0 +170768987124,215,0 +170768987172,215,0 +170768987221,215,0 +170768987271,215,0 +170768987319,215,0 +170768987368,215,0 +170768987417,215,0 +170768987465,215,0 +170768987513,214,0 +170768987561,213,0 +170768987609,213,0 +170768987657,214,0 +170768987705,214,0 +170768987754,214,0 +170768987802,214,0 +170768987850,214,0 +170768987898,214,0 +170768987946,214,0 +170768987994,215,0 +170768988043,215,0 +170768988093,215,0 +170768988142,215,0 +170768988190,215,0 +170768988238,215,0 +170768988288,215,0 +170768988335,215,0 +170768988385,214,0 +170768988433,213,0 +170768988481,214,0 +170768988531,214,0 +170768988579,214,0 +170768988628,214,0 +170768988676,214,0 +170768988724,214,0 +170768988772,214,0 +170768988820,215,0 +170768988868,215,0 +170768988916,215,0 +170768988964,215,0 +170768989013,215,0 +170768989061,215,0 +170768989111,215,0 +170768989158,215,0 +170768989208,215,0 +170768989257,213,0 +170768989307,213,0 +170768989355,213,0 +170768989403,213,0 +170768989452,213,0 +170768989502,214,0 +170768989550,214,0 +170768989597,214,0 +170768989645,214,0 +170768989695,214,0 +170768989744,214,0 +170768989792,214,0 +170768989842,214,0 +170768989890,214,0 +170768989938,214,0 +170768989985,214,0 +170768990033,214,0 +170768990083,214,0 +170768990131,213,0 +170768990179,213,0 +170768990227,213,0 +170768990275,213,0 +170768990322,213,0 +170768990370,213,0 +170768990420,214,0 +170768990469,214,0 +170768990517,214,0 +170768990565,214,0 +170768990614,214,0 +170768990662,214,0 +170768990710,214,0 +170768990760,215,0 +170768990808,214,0 +170768990856,214,0 +170768990905,214,0 +170768990955,213,0 +170768991003,213,0 +170768991050,213,0 +170768991098,213,0 +170768991146,213,0 +170768991196,214,0 +170768991245,213,0 +170768991293,214,0 +170768991341,214,0 +170768991389,214,0 +170768991437,214,0 +170768991485,214,0 +170768991533,214,0 +170768991581,215,0 +170768991629,215,0 +170768991677,215,0 +170768991724,215,0 +170768991772,214,0 +170768991820,213,0 +170768991868,213,0 +170768991916,213,0 +170768991964,213,0 +170768992012,213,0 +170768992060,214,0 +170768992108,214,0 +170768992157,214,0 +170768992205,214,0 +170768992253,214,0 +170768992301,215,0 +170768992349,214,0 +170768992397,215,0 +170768992445,215,0 +170768992493,215,0 +170768992541,215,0 +170768992590,215,0 +170768992638,215,0 +170768992686,213,0 +170768992734,213,0 +170768992783,213,0 +170768992831,213,0 +170768992879,214,0 +170768992927,214,0 +170768992975,214,0 +170768993025,214,0 +170768993073,214,0 +170768993122,214,0 +170768993170,214,0 +170768993218,214,0 +170768993266,215,0 +170768993315,215,0 +170768993365,214,0 +170768993414,215,0 +170768993462,214,0 +170768993512,214,0 +170768993560,213,0 +170768993608,213,0 +170768993656,214,0 +170768993705,214,0 +170768993753,214,0 +170768993801,214,0 +170768993850,214,0 +170768993900,214,0 +170768993949,215,0 +170768993997,215,0 +170768994045,215,0 +170768994093,215,0 +170768994141,215,0 +170768994189,215,0 +170768994238,215,0 +170768994286,215,0 +170768994336,214,0 +170768994385,214,0 +170768994433,214,0 +170768994483,214,0 +170768994530,214,0 +170768994578,214,0 +170768994626,214,0 +170768994676,214,0 +170768994724,214,0 +170768994773,214,0 +170768994821,214,0 +170768994871,214,0 +170768994920,214,0 +170768994968,214,0 +170768995018,215,0 +170768995066,215,0 +170768995114,215,0 +170768995162,215,0 +170768995210,215,0 +170768995259,213,0 +170768995307,213,0 +170768995355,213,0 +170768995403,213,0 +170768995451,214,0 +170768995499,214,0 +170768995546,214,0 +170768995596,214,0 +170768995645,214,0 +170768995693,214,0 +170768995743,215,0 +170768995791,215,0 +170768995840,215,0 +170768995888,215,0 +170768995936,215,0 +170768995984,215,0 +170768996032,215,0 +170768996080,214,0 +170768996129,213,0 +170768996177,213,0 +170768996225,213,0 +170768996275,213,0 +170768996324,214,0 +170768996372,214,0 +170768996420,214,0 +170768996468,214,0 +170768996516,214,0 +170768996566,214,0 +170768996615,214,0 +170768996663,215,0 +170768996713,215,0 +170768996761,215,0 +170768996808,215,0 +170768996858,215,0 +170768996907,215,0 +170768996957,213,0 +170768997005,214,0 +170768997054,214,0 +170768997104,214,0 +170768997152,214,0 +170768997200,214,0 +170768997248,214,0 +170768997296,214,0 +170768997343,214,0 +170768997391,214,0 +170768997439,215,0 +170768997487,216,0 +170768997535,215,0 +170768997583,215,0 +170768997631,215,0 +170768997679,215,0 +170768997727,215,0 +170768997775,214,0 +170768997823,214,0 +170768997871,213,0 +170768997919,214,0 +170768997966,214,0 +170768998016,214,0 +170768998064,214,0 +170768998112,215,0 +170768998160,215,0 +170768998209,214,0 +170768998257,215,0 +170768998306,215,0 +170768998356,215,0 +170768998404,215,0 +170768998452,215,0 +170768998502,215,0 +170768998550,215,0 +170768998598,215,0 +170768998645,214,0 +170768998693,214,0 +170768998741,214,0 +170768998789,214,0 +170768998837,214,0 +170768998887,214,0 +170768998937,215,0 +170768998986,215,0 +170768999034,215,0 +170768999082,215,0 +170768999130,214,0 +170768999178,215,0 +170768999226,215,0 +170768999273,215,0 +170768999321,215,0 +170768999369,215,0 +170768999417,215,0 +170768999465,215,0 +170768999515,214,0 +170768999563,214,0 +170768999611,214,0 +170768999658,214,0 +170768999706,214,0 +170768999756,214,0 +170768999805,214,0 +170768999853,214,0 +170768999901,215,0 +170768999949,215,0 +170768999999,214,0 +170769000046,215,0 +170769000094,215,0 +170769000144,215,0 +170769000192,215,0 +170769000241,215,0 +170769000289,215,0 +170769000339,214,0 +170769000387,214,0 +170769000435,213,0 +170769000484,213,0 +170769000532,214,0 +170769000580,214,0 +170769000630,214,0 +170769000678,214,0 +170769000725,214,0 +170769000775,215,0 +170769000824,215,0 +170769000872,215,0 +170769000920,215,0 +170769000968,215,0 +170769001016,215,0 +170769001065,215,0 +170769001113,215,0 +170769001163,215,0 +170769001211,214,0 +170769001260,213,0 +170769001308,213,0 +170769001358,214,0 +170769001406,214,0 +170769001454,214,0 +170769001501,214,0 +170769001549,214,0 +170769001597,214,0 +170769001645,214,0 +170769001693,214,0 +170769001741,215,0 +170769001791,215,0 +170769001840,215,0 +170769001888,215,0 +170769001937,215,0 +170769001985,215,0 +170769002035,215,0 +170769002083,214,0 +170769002130,213,0 +170769002178,213,0 +170769002226,214,0 +170769002274,214,0 +170769002322,214,0 +170769002370,214,0 +170769002418,214,0 +170769002465,214,0 +170769002515,214,0 +170769002563,215,0 +170769002611,215,0 +170769002660,215,0 +170769002710,215,0 +170769002759,215,0 +170769002807,214,0 +170769002855,214,0 +170769002903,214,0 +170769002953,213,0 +170769003000,213,0 +170769003048,213,0 +170769003098,213,0 +170769003146,214,0 +170769003195,214,0 +170769003245,214,0 +170769003293,214,0 +170769003341,214,0 +170769003389,214,0 +170769003437,215,0 +170769003484,214,0 +170769003532,215,0 +170769003580,215,0 +170769003628,214,0 +170769003676,215,0 +170769003724,214,0 +170769003774,214,0 +170769003823,213,0 +170769003871,213,0 +170769003919,213,0 +170769003968,213,0 +170769004016,213,0 +170769004066,213,0 +170769004114,214,0 +170769004162,214,0 +170769004210,214,0 +170769004257,214,0 +170769004307,214,0 +170769004355,214,0 +170769004404,215,0 +170769004452,215,0 +170769004500,215,0 +170769004548,215,0 +170769004596,214,0 +170769004644,213,0 +170769004693,213,0 +170769004743,213,0 +170769004791,213,0 +170769004840,213,0 +170769004888,213,0 +170769004936,214,0 +170769004986,214,0 +170769005034,214,0 +170769005083,214,0 +170769005133,214,0 +170769005181,215,0 +170769005229,214,0 +170769005277,215,0 +170769005325,215,0 +170769005374,215,0 +170769005424,214,0 +170769005473,214,0 +170769005523,213,0 +170769005571,213,0 +170769005619,213,0 +170769005667,214,0 +170769005715,213,0 +170769005763,214,0 +170769005811,214,0 +170769005860,214,0 +170769005909,214,0 +170769005957,214,0 +170769006005,214,0 +170769006055,214,0 +170769006104,214,0 +170769006152,215,0 +170769006200,215,0 +170769006250,215,0 +170769006298,216,0 +170769006346,215,0 +170769006393,213,0 +170769006443,213,0 +170769006493,213,0 +170769006541,213,0 +170769006590,213,0 +170769006639,214,0 +170769006687,214,0 +170769006735,214,0 +170769006783,214,0 +170769006831,214,0 +170769006879,214,0 +170769006929,214,0 +170769006978,214,0 +170769007026,215,0 +170769007076,215,0 +170769007125,215,0 +170769007175,215,0 +170769007224,213,0 +170769007272,213,0 +170769007320,213,0 +170769007370,213,0 +170769007418,213,0 +170769007466,213,0 +170769007515,214,0 +170769007563,214,0 +170769007611,214,0 +170769007659,214,0 +170769007707,214,0 +170769007755,215,0 +170769007803,215,0 +170769007851,215,0 +170769007899,215,0 +170769007947,215,0 +170769007995,214,0 +170769008044,214,0 +170769008094,213,0 +170769008142,213,0 +170769008189,213,0 +170769008239,213,0 +170769008288,213,0 +170769008338,214,0 +170769008386,214,0 +170769008434,214,0 +170769008482,214,0 +170769008530,214,0 +170769008578,214,0 +170769008626,215,0 +170769008674,215,0 +170769008722,215,0 +170769008771,215,0 +170769008819,215,0 +170769008867,215,0 +170769008915,214,0 +170769008963,213,0 +170769009011,213,0 +170769009059,213,0 +170769009108,213,0 +170769009156,213,0 +170769009206,213,0 +170769009255,214,0 +170769009303,214,0 +170769009352,214,0 +170769009400,214,0 +170769009448,214,0 +170769009496,215,0 +170769009546,215,0 +170769009595,214,0 +170769009645,214,0 +170769009692,215,0 +170769009742,215,0 +170769009791,213,0 +170769009839,213,0 +170769009889,213,0 +170769009938,213,0 +170769009988,213,0 +170769010036,214,0 +170769010084,214,0 +170769010132,214,0 +170769010181,214,0 +170769010229,214,0 +170769010277,214,0 +170769010325,215,0 +170769010373,215,0 +170769010420,214,0 +170769010468,215,0 +170769010516,215,0 +170769010564,215,0 +170769010612,214,0 +170769010660,213,0 +170769010707,213,0 +170769010755,213,0 +170769010805,213,0 +170769010852,214,0 +170769010900,214,0 +170769010948,214,0 +170769010996,214,0 +170769011044,214,0 +170769011092,214,0 +170769011140,214,0 +170769011189,214,0 +170769011237,215,0 +170769011285,215,0 +170769011333,215,0 +170769011381,215,0 +170769011430,215,0 +170769011478,214,0 +170769011526,214,0 +170769011574,214,0 +170769011622,214,0 +170769011672,214,0 +170769011721,214,0 +170769011769,214,0 +170769011817,214,0 +170769011867,214,0 +170769011915,215,0 +170769011964,215,0 +170769012014,215,0 +170769012063,215,0 +170769012113,215,0 +170769012161,215,0 +170769012210,215,0 +170769012258,215,0 +170769012306,215,0 +170769012356,214,0 +170769012405,214,0 +170769012453,214,0 +170769012501,214,0 +170769012551,214,0 +170769012600,215,0 +170769012648,214,0 +170769012696,214,0 +170769012744,215,0 +170769012792,215,0 +170769012840,215,0 +170769012888,215,0 +170769012937,215,0 +170769012985,215,0 +170769013035,215,0 +170769013084,215,0 +170769013134,215,0 +170769013181,215,0 +170769013229,214,0 +170769013279,214,0 +170769013328,214,0 +170769013378,214,0 +170769013426,214,0 +170769013474,214,0 +170769013522,214,0 +170769013569,215,0 +170769013617,215,0 +170769013665,215,0 +170769013713,215,0 +170769013761,215,0 +170769013809,215,0 +170769013856,215,0 +170769013904,214,0 +170769013952,215,0 +170769014000,215,0 +170769014048,214,0 +170769014098,213,0 +170769014145,213,0 +170769014193,213,0 +170769014243,214,0 +170769014291,214,0 +170769014340,214,0 +170769014388,214,0 +170769014438,214,0 +170769014487,214,0 +170769014537,215,0 +170769014584,214,0 +170769014632,215,0 +170769014680,215,0 +170769014728,215,0 +170769014776,215,0 +170769014824,215,0 +170769014874,215,0 +170769014921,213,0 +170769014969,213,0 +170769015017,213,0 +170769015067,213,0 +170769015115,213,0 +170769015163,214,0 +170769015210,214,0 +170769015258,213,0 +170769015306,214,0 +170769015356,214,0 +170769015404,214,0 +170769015452,214,0 +170769015499,214,0 +170769015547,215,0 +170769015595,215,0 +170769015643,215,0 +170769015693,215,0 +170769015741,214,0 +170769015789,213,0 +170769015838,213,0 +170769015886,213,0 +170769015936,213,0 +170769015984,213,0 +170769016032,214,0 +170769016079,214,0 +170769016127,214,0 +170769016177,214,0 +170769016225,214,0 +170769016274,214,0 +170769016322,214,0 +170769016370,215,0 +170769016420,215,0 +170769016468,215,0 +170769016516,215,0 +170769016564,215,0 +170769016612,214,0 +170769016659,213,0 +170769016709,213,0 +170769016757,213,0 +170769016806,214,0 +170769016854,214,0 +170769016904,214,0 +170769016953,214,0 +170769017001,214,0 +170769017049,214,0 +170769017097,214,0 +170769017145,215,0 +170769017193,215,0 +170769017241,215,0 +170769017290,215,0 +170769017338,215,0 +170769017386,215,0 +170769017434,214,0 +170769017481,213,0 +170769017529,213,0 +170769017577,213,0 +170769017625,213,0 +170769017674,213,0 +170769017722,214,0 +170769017770,214,0 +170769017818,214,0 +170769017867,214,0 +170769017915,214,0 +170769017963,214,0 +170769018011,214,0 +170769018059,215,0 +170769018108,215,0 +170769018156,215,0 +170769018204,215,0 +170769018252,215,0 +170769018300,215,0 +170769018349,213,0 +170769018397,213,0 +170769018445,213,0 +170769018493,213,0 +170769018541,213,0 +170769018589,214,0 +170769018636,214,0 +170769018684,214,0 +170769018732,214,0 +170769018780,214,0 +170769018828,214,0 +170769018878,215,0 +170769018926,214,0 +170769018973,215,0 +170769019023,214,0 +170769019072,215,0 +170769019120,215,0 +170769019168,214,0 +170769019218,213,0 +170769019266,213,0 +170769019314,213,0 +170769019362,214,0 +170769019410,213,0 +170769019458,214,0 +170769019505,214,0 +170769019553,214,0 +170769019601,214,0 +170769019649,214,0 +170769019697,214,0 +170769019745,215,0 +170769019793,215,0 +170769019840,215,0 +170769019888,215,0 +170769019936,215,0 +170769019984,215,0 +170769020032,213,0 +170769020080,213,0 +170769020127,213,0 +170769020175,213,0 +170769020225,213,0 +170769020273,213,0 +170769020321,214,0 +170769020369,214,0 +170769020417,214,0 +170769020464,214,0 +170769020512,214,0 +170769020560,214,0 +170769020610,215,0 +170769020657,215,0 +170769020707,214,0 +170769020756,214,0 +170769020806,214,0 +170769020855,215,0 +170769020903,213,0 +170769020951,213,0 +170769021001,213,0 +170769021050,213,0 +170769021098,213,0 +170769021146,213,0 +170769021196,213,0 +170769021243,214,0 +170769021291,214,0 +170769021341,214,0 +170769021389,214,0 +170769021438,214,0 +170769021486,214,0 +170769021534,214,0 +170769021584,214,0 +170769021632,215,0 +170769021680,215,0 +170769021728,214,0 +170769021775,213,0 +170769021823,213,0 +170769021871,213,0 +170769021919,213,0 +170769021967,213,0 +170769022015,213,0 +170769022062,213,0 +170769022110,214,0 +170769022158,214,0 +170769022206,214,0 +170769022254,214,0 +170769022302,215,0 +170769022350,215,0 +170769022398,214,0 +170769022447,215,0 +170769022497,215,0 +170769022546,214,0 +170769022594,213,0 +170769022642,213,0 +170769022689,213,0 +170769022737,213,0 +170769022785,214,0 +170769022833,214,0 +170769022881,214,0 +170769022929,214,0 +170769022977,214,0 +170769023024,214,0 +170769023072,214,0 +170769023120,214,0 +170769023168,214,0 +170769023216,215,0 +170769023264,214,0 +170769023311,214,0 +170769023361,215,0 +170769023410,215,0 +170769023458,215,0 +170769023506,215,0 +170769023554,215,0 +170769023602,215,0 +170769023649,215,0 +170769023697,215,0 +170769023745,215,0 +170769023793,215,0 +170769023841,215,0 +170769023889,214,0 +170769023936,214,0 +170769023984,214,0 +170769024032,214,0 +170769024080,214,0 +170769024128,214,0 +170769024176,214,0 +170769024225,215,0 +170769024273,215,0 +170769024321,215,0 +170769024370,215,0 +170769024418,215,0 +170769024466,215,0 +170769024514,215,0 +170769024562,215,0 +170769024611,215,0 +170769024661,215,0 +170769024708,215,0 +170769024756,214,0 +170769024804,214,0 +170769024852,214,0 +170769024900,214,0 +170769024948,214,0 +170769024996,214,0 +170769025043,214,0 +170769025091,214,0 +170769025139,215,0 +170769025187,215,0 +170769025235,215,0 +170769025283,215,0 +170769025331,215,0 +170769025380,215,0 +170769025430,214,0 +170769025478,215,0 +170769025527,214,0 +170769025577,214,0 +170769025625,214,0 +170769025674,214,0 +170769025722,214,0 +170769025772,214,0 +170769025821,214,0 +170769025869,214,0 +170769025917,214,0 +170769025965,215,0 +170769026014,215,0 +170769026062,215,0 +170769026112,215,0 +170769026160,215,0 +170769026208,215,0 +170769026256,215,0 +170769026303,215,0 +170769026351,215,0 +170769026401,215,0 +170769026450,214,0 +170769026498,214,0 +170769026546,214,0 +170769026594,214,0 +170769026642,214,0 +170769026690,214,0 +170769026738,214,0 +170769026787,214,0 +170769026837,215,0 +170769026886,215,0 +170769026936,215,0 +170769026984,215,0 +170769027032,215,0 +170769027081,215,0 +170769027129,215,0 +170769027179,215,0 +170769027226,215,0 +170769027274,214,0 +170769027322,213,0 +170769027372,214,0 +170769027420,214,0 +170769027467,214,0 +170769027517,214,0 +170769027565,214,0 +170769027613,214,0 +170769027661,214,0 +170769027710,215,0 +170769027760,214,0 +170769027809,215,0 +170769027857,215,0 +170769027905,215,0 +170769027955,215,0 +170769028003,215,0 +170769028052,215,0 +170769028100,215,0 +170769028148,213,0 +170769028196,213,0 +170769028244,213,0 +170769028292,213,0 +170769028339,214,0 +170769028387,214,0 +170769028437,214,0 +170769028486,214,0 +170769028536,214,0 +170769028584,215,0 +170769028633,215,0 +170769028681,215,0 +170769028729,215,0 +170769028777,215,0 +170769028827,214,0 +170769028874,215,0 +170769028924,215,0 +170769028972,215,0 +170769029020,213,0 +170769029068,213,0 +170769029116,213,0 +170769029164,213,0 +170769029212,213,0 +170769029260,213,0 +170769029308,214,0 +170769029356,214,0 +170769029405,214,0 +170769029453,214,0 +170769029501,214,0 +170769029549,214,0 +170769029597,215,0 +170769029646,214,0 +170769029694,214,0 +170769029742,214,0 +170769029790,214,0 +170769029840,214,0 +170769029889,213,0 +170769029937,213,0 +170769029985,213,0 +170769030033,213,0 +170769030082,213,0 +170769030130,213,0 +170769030180,214,0 +170769030229,213,0 +170769030279,214,0 +170769030328,214,0 +170769030378,214,0 +170769030426,214,0 +170769030474,214,0 +170769030522,214,0 +170769030570,214,0 +170769030618,214,0 +170769030666,215,0 +170769030714,214,0 +170769030761,213,0 +170769030809,213,0 +170769030859,213,0 +170769030908,213,0 +170769030958,213,0 +170769031006,213,0 +170769031054,213,0 +170769031103,214,0 +170769031151,214,0 +170769031199,214,0 +170769031247,214,0 +170769031295,214,0 +170769031343,214,0 +170769031392,214,0 +170769031442,214,0 +170769031491,214,0 +170769031539,215,0 +170769031587,213,0 +170769031635,213,0 +170769031685,213,0 +170769031733,213,0 +170769031781,213,0 +170769031830,213,0 +170769031878,213,0 +170769031928,214,0 +170769031976,214,0 +170769032025,214,0 +170769032073,214,0 +170769032121,214,0 +170769032170,215,0 +170769032220,215,0 +170769032268,215,0 +170769032316,214,0 +170769032364,215,0 +170769032412,214,0 +170769032461,213,0 +170769032509,213,0 +170769032557,214,0 +170769032605,213,0 +170769032654,213,0 +170769032702,214,0 +170769032752,214,0 +170769032800,214,0 +170769032847,214,0 +170769032895,215,0 +170769032943,215,0 +170769032991,215,0 +170769033039,215,0 +170769033087,215,0 +170769033134,215,0 +170769033182,215,0 +170769033230,215,0 +170769033280,213,0 +170769033327,213,0 +170769033377,213,0 +170769033425,213,0 +170769033473,213,0 +170769033521,213,0 +170769033570,214,0 +170769033620,214,0 +170769033668,214,0 +170769033715,214,0 +170769033763,214,0 +170769033811,215,0 +170769033861,215,0 +170769033909,215,0 +170769033958,215,0 +170769034006,215,0 +170769034056,215,0 +170769034105,214,0 +170769034155,213,0 +170769034204,213,0 +170769034252,213,0 +170769034300,213,0 +170769034350,213,0 +170769034398,214,0 +170769034446,214,0 +170769034493,214,0 +170769034543,214,0 +170769034593,214,0 +170769034642,214,0 +170769034690,215,0 +170769034740,215,0 +170769034789,215,0 +170769034837,215,0 +170769034885,214,0 +170769034934,215,0 +170769034982,213,0 +170769035030,213,0 +170769035078,213,0 +170769035126,213,0 +170769035174,213,0 +170769035224,213,0 +170769035272,213,0 +170769035319,214,0 +170769035367,214,0 +170769035417,214,0 +170769035465,214,0 +170769035512,214,0 +170769035562,214,0 +170769035610,214,0 +170769035658,214,0 +170769035707,214,0 +170769035755,214,0 +170769035805,215,0 +170769035853,214,0 +170769035900,213,0 +170769035948,213,0 +170769035998,213,0 +170769036046,214,0 +170769036095,214,0 +170769036143,214,0 +170769036191,214,0 +170769036241,214,0 +170769036289,214,0 +170769036336,214,0 +170769036384,214,0 +170769036432,214,0 +170769036480,215,0 +170769036528,215,0 +170769036576,215,0 +170769036625,215,0 +170769036673,215,0 +170769036723,214,0 +170769036771,214,0 +170769036819,214,0 +170769036868,214,0 +170769036918,214,0 +170769036967,214,0 +170769037017,214,0 +170769037066,214,0 +170769037114,214,0 +170769037164,215,0 +170769037213,215,0 +170769037263,215,0 +170769037311,215,0 +170769037359,215,0 +170769037408,215,0 +170769037456,215,0 +170769037504,215,0 +170769037552,214,0 +170769037601,214,0 +170769037649,214,0 +170769037699,214,0 +170769037747,214,0 +170769037796,215,0 +170769037846,215,0 +170769037895,215,0 +170769037945,215,0 +170769037993,215,0 +170769038042,215,0 +170769038092,215,0 +170769038140,215,0 +170769038189,215,0 +170769038239,215,0 +170769038287,215,0 +170769038335,215,0 +170769038383,215,0 +170769038431,215,0 +170769038479,214,0 +170769038527,214,0 +170769038575,214,0 +170769038622,215,0 +170769038672,214,0 +170769038720,215,0 +170769038768,215,0 +170769038816,215,0 +170769038865,215,0 +170769038913,215,0 +170769038963,215,0 +170769039012,215,0 +170769039060,215,0 +170769039110,215,0 +170769039158,215,0 +170769039207,215,0 +170769039255,214,0 +170769039305,213,0 +170769039353,213,0 +170769039402,214,0 +170769039450,214,0 +170769039498,214,0 +170769039546,214,0 +170769039595,214,0 +170769039645,215,0 +170769039694,214,0 +170769039743,215,0 +170769039791,215,0 +170769039839,215,0 +170769039887,215,0 +170769039935,215,0 +170769039983,215,0 +170769040031,215,0 +170769040079,215,0 +170769040127,213,0 +170769040175,213,0 +170769040224,213,0 +170769040274,213,0 +170769040322,213,0 +170769040371,214,0 +170769040419,214,0 +170769040468,214,0 +170769040516,214,0 +170769040566,214,0 +170769040615,214,0 +170769040663,215,0 +170769040712,214,0 +170769040760,215,0 +170769040808,214,0 +170769040856,215,0 +170769040905,215,0 +170769040955,214,0 +170769041003,213,0 +170769041051,213,0 +170769041099,213,0 +170769041147,213,0 +170769041195,214,0 +170769041243,214,0 +170769041292,214,0 +170769041340,214,0 +170769041388,214,0 +170769041437,214,0 +170769041485,214,0 +170769041533,215,0 +170769041583,215,0 +170769041631,215,0 +170769041679,215,0 +170769041728,215,0 +170769041778,214,0 +170769041826,214,0 +170769041875,213,0 +170769041923,213,0 +170769041971,213,0 +170769042019,214,0 +170769042067,214,0 +170769042116,214,0 +170769042166,214,0 +170769042214,214,0 +170769042262,214,0 +170769042310,214,0 +170769042358,214,0 +170769042406,215,0 +170769042455,215,0 +170769042505,215,0 +170769042554,216,0 +170769042603,215,0 +170769042653,215,0 +170769042701,213,0 +170769042749,213,0 +170769042797,213,0 +170769042845,213,0 +170769042894,214,0 +170769042942,214,0 +170769042990,214,0 +170769043038,214,0 +170769043086,214,0 +170769043136,214,0 +170769043183,214,0 +170769043233,214,0 +170769043281,215,0 +170769043330,215,0 +170769043380,215,0 +170769043428,215,0 +170769043475,215,0 +170769043523,214,0 +170769043571,213,0 +170769043619,213,0 +170769043667,213,0 +170769043715,213,0 +170769043764,214,0 +170769043814,214,0 +170769043862,214,0 +170769043909,214,0 +170769043957,214,0 +170769044005,214,0 +170769044053,214,0 +170769044102,215,0 +170769044152,215,0 +170769044201,215,0 +170769044251,215,0 +170769044299,215,0 +170769044347,215,0 +170769044395,214,0 +170769044442,213,0 +170769044490,213,0 +170769044538,213,0 +170769044586,213,0 +170769044634,213,0 +170769044682,214,0 +170769044730,214,0 +170769044778,214,0 +170769044826,214,0 +170769044875,214,0 +170769044923,214,0 +170769044971,215,0 +170769045019,215,0 +170769045069,215,0 +170769045117,215,0 +170769045165,215,0 +170769045213,214,0 +170769045262,213,0 +170769045310,213,0 +170769045358,213,0 +170769045405,214,0 +170769045453,214,0 +170769045503,214,0 +170769045551,214,0 +170769045599,214,0 +170769045648,214,0 +170769045696,214,0 +170769045744,215,0 +170769045792,214,0 +170769045841,215,0 +170769045889,215,0 +170769045937,215,0 +170769045985,215,0 +170769046033,215,0 +170769046082,215,0 +170769046132,213,0 +170769046181,213,0 +170769046229,213,0 +170769046279,213,0 +170769046326,214,0 +170769046374,214,0 +170769046422,214,0 +170769046472,214,0 +170769046520,214,0 +170769046568,214,0 +170769046615,214,0 +170769046665,214,0 +170769046713,215,0 +170769046762,215,0 +170769046810,215,0 +170769046860,215,0 +170769046908,215,0 +170769046956,214,0 +170769047004,213,0 +170769047052,213,0 +170769047099,214,0 +170769047147,213,0 +170769047195,214,0 +170769047245,214,0 +170769047292,214,0 +170769047340,214,0 +170769047390,214,0 +170769047438,215,0 +170769047486,215,0 +170769047535,215,0 +170769047583,215,0 +170769047631,215,0 +170769047679,215,0 +170769047728,215,0 +170769047778,215,0 +170769047825,213,0 +170769047875,213,0 +170769047924,213,0 +170769047972,214,0 +170769048020,214,0 +170769048070,214,0 +170769048118,214,0 +170769048167,214,0 +170769048215,215,0 +170769048263,215,0 +170769048311,215,0 +170769048359,215,0 +170769048408,215,0 +170769048456,215,0 +170769048506,215,0 +170769048555,215,0 +170769048603,215,0 +170769048651,215,0 +170769048699,213,0 +170769048747,213,0 +170769048795,213,0 +170769048843,214,0 +170769048892,214,0 +170769048942,214,0 +170769048989,214,0 +170769049037,214,0 +170769049085,214,0 +170769049135,214,0 +170769049183,214,0 +170769049232,215,0 +170769049280,215,0 +170769049328,215,0 +170769049376,215,0 +170769049425,215,0 +170769049473,215,0 +170769049522,214,0 +170769049570,213,0 +170769049620,213,0 +170769049668,213,0 +170769049716,213,0 +170769049764,214,0 +170769049813,214,0 +170769049861,214,0 +170769049909,214,0 +170769049957,214,0 +170769050005,214,0 +170769050053,214,0 +170769050101,215,0 +170769050149,215,0 +170769050196,215,0 +170769050244,215,0 +170769050292,215,0 +170769050341,215,0 +170769050389,213,0 +170769050437,213,0 +170769050485,213,0 +170769050534,213,0 +170769050582,213,0 +170769050630,213,0 +170769050678,214,0 +170769050728,214,0 +170769050776,214,0 +170769050823,214,0 +170769050871,214,0 +170769050921,214,0 +170769050969,215,0 +170769051017,215,0 +170769051065,215,0 +170769051114,215,0 +170769051163,215,0 +170769051211,214,0 +170769051261,213,0 +170769051309,213,0 +170769051357,213,0 +170769051406,213,0 +170769051456,213,0 +170769051506,213,0 +170769051555,214,0 +170769051605,214,0 +170769051653,214,0 +170769051702,214,0 +170769051750,215,0 +170769051798,215,0 +170769051846,215,0 +170769051895,215,0 +170769051945,215,0 +170769051994,215,0 +170769052042,215,0 +170769052092,213,0 +170769052140,213,0 +170769052188,213,0 +170769052237,213,0 +170769052287,213,0 +170769052335,213,0 +170769052383,214,0 +170769052430,214,0 +170769052480,214,0 +170769052529,214,0 +170769052579,214,0 +170769052627,215,0 +170769052676,215,0 +170769052724,215,0 +170769052772,215,0 +170769052821,215,0 +170769052871,215,0 +170769052920,215,0 +170769052970,213,0 +170769053019,213,0 +170769053067,214,0 +170769053115,214,0 +170769053163,214,0 +170769053211,214,0 +170769053260,214,0 +170769053308,214,0 +170769053358,215,0 +170769053406,215,0 +170769053455,215,0 +170769053505,215,0 +170769053554,215,0 +170769053602,215,0 +170769053650,215,0 +170769053698,215,0 +170769053746,215,0 +170769053794,214,0 +170769053842,213,0 +170769053889,214,0 +170769053937,213,0 +170769053985,214,0 +170769054033,214,0 +170769054081,214,0 +170769054128,214,0 +170769054176,215,0 +170769054224,214,0 +170769054272,214,0 +170769054320,214,0 +170769054368,215,0 +170769054416,215,0 +170769054463,215,0 +170769054511,215,0 +170769054559,215,0 +170769054607,215,0 +170769054656,214,0 +170769054704,213,0 +170769054752,213,0 +170769054800,213,0 +170769054848,214,0 +170769054896,214,0 +170769054943,213,0 +170769054991,214,0 +170769055039,214,0 +170769055087,214,0 +170769055135,214,0 +170769055182,214,0 +170769055230,214,0 +170769055278,214,0 +170769055326,215,0 +170769055374,214,0 +170769055422,215,0 +170769055469,214,0 +170769055519,213,0 +170769055567,213,0 +170769055614,213,0 +170769055662,213,0 +170769055710,213,0 +170769055758,214,0 +170769055806,213,0 +170769055853,214,0 +170769055903,214,0 +170769055951,214,0 +170769055999,214,0 +170769056046,214,0 +170769056094,214,0 +170769056142,215,0 +170769056190,215,0 +170769056238,215,0 +170769056286,215,0 +170769056334,215,0 +170769056381,214,0 +170769056429,213,0 +170769056477,214,0 +170769056525,214,0 +170769056573,214,0 +170769056621,214,0 +170769056669,214,0 +170769056716,214,0 +170769056766,214,0 +170769056814,214,0 +170769056861,214,0 +170769056911,215,0 +170769056959,215,0 +170769057006,215,0 +170769057054,215,0 +170769057102,215,0 +170769057150,215,0 +170769057198,215,0 +170769057246,214,0 +170769057293,214,0 +170769057341,214,0 +170769057389,214,0 +170769057437,214,0 +170769057485,214,0 +170769057534,214,0 +170769057584,215,0 +170769057632,215,0 +170769057679,215,0 +170769057727,215,0 +170769057775,215,0 +170769057823,215,0 +170769057871,215,0 +170769057919,215,0 +170769057967,215,0 +170769058014,215,0 +170769058062,214,0 +170769058110,214,0 +170769058158,214,0 +170769058208,214,0 +170769058257,214,0 +170769058305,214,0 +170769058353,214,0 +170769058401,215,0 +170769058449,214,0 +170769058497,215,0 +170769058544,215,0 +170769058592,215,0 +170769058640,215,0 +170769058688,215,0 +170769058736,215,0 +170769058784,215,0 +170769058831,215,0 +170769058879,215,0 +170769058927,214,0 +170769058975,213,0 +170769059025,214,0 +170769059073,214,0 +170769059122,214,0 +170769059170,214,0 +170769059218,214,0 +170769059266,214,0 +170769059314,214,0 +170769059362,214,0 +170769059409,214,0 +170769059457,214,0 +170769059505,215,0 +170769059553,215,0 +170769059603,215,0 +170769059650,215,0 +170769059698,215,0 +170769059746,215,0 +170769059794,214,0 +170769059842,214,0 +170769059890,214,0 +170769059937,214,0 +170769059985,214,0 +170769060033,214,0 +170769060081,214,0 +170769060130,214,0 +170769060178,214,0 +170769060226,215,0 +170769060274,215,0 +170769060322,215,0 +170769060370,215,0 +170769060417,215,0 +170769060465,215,0 +170769060513,215,0 +170769060561,215,0 +170769060609,215,0 +170769060657,214,0 +170769060705,213,0 +170769060752,214,0 +170769060800,214,0 +170769060848,214,0 +170769060896,214,0 +170769060944,214,0 +170769060992,214,0 +170769061039,215,0 +170769061087,214,0 +170769061135,214,0 +170769061183,215,0 +170769061231,215,0 +170769061281,215,0 +170769061330,215,0 +170769061378,215,0 +170769061426,215,0 +170769061474,215,0 +170769061523,214,0 +170769061573,213,0 +170769061621,214,0 +170769061670,213,0 +170769061718,214,0 +170769061766,214,0 +170769061814,214,0 +170769061862,214,0 +170769061910,214,0 +170769061958,214,0 +170769062006,215,0 +170769062055,215,0 +170769062103,215,0 +170769062151,215,0 +170769062199,215,0 +170769062247,215,0 +170769062296,215,0 +170769062346,214,0 +170769062394,213,0 +170769062444,213,0 +170769062492,213,0 +170769062541,214,0 +170769062589,214,0 +170769062637,214,0 +170769062685,214,0 +170769062733,214,0 +170769062782,214,0 +170769062830,215,0 +170769062878,215,0 +170769062927,215,0 +170769062977,215,0 +170769063025,215,0 +170769063073,215,0 +170769063122,215,0 +170769063172,215,0 +170769063220,214,0 +170769063268,213,0 +170769063316,213,0 +170769063364,213,0 +170769063412,213,0 +170769063461,213,0 +170769063509,213,0 +170769063557,214,0 +170769063605,214,0 +170769063653,214,0 +170769063701,214,0 +170769063749,214,0 +170769063796,214,0 +170769063846,215,0 +170769063894,215,0 +170769063942,215,0 +170769063991,215,0 +170769064039,214,0 +170769064089,213,0 +170769064137,213,0 +170769064185,213,0 +170769064233,213,0 +170769064281,213,0 +170769064328,214,0 +170769064378,214,0 +170769064428,214,0 +170769064477,214,0 +170769064525,214,0 +170769064573,214,0 +170769064622,214,0 +170769064672,214,0 +170769064720,215,0 +170769064768,215,0 +170769064816,215,0 +170769064864,215,0 +170769064913,214,0 +170769064961,213,0 +170769065011,213,0 +170769065060,213,0 +170769065110,213,0 +170769065159,213,0 +170769065209,214,0 +170769065257,214,0 +170769065305,214,0 +170769065354,214,0 +170769065404,214,0 +170769065452,214,0 +170769065501,214,0 +170769065551,214,0 +170769065599,215,0 +170769065648,215,0 +170769065696,215,0 +170769065744,214,0 +170769065792,213,0 +170769065840,213,0 +170769065888,213,0 +170769065938,213,0 +170769065987,213,0 +170769066035,214,0 +170769066083,214,0 +170769066133,214,0 +170769066182,214,0 +170769066231,214,0 +170769066281,214,0 +170769066331,214,0 +170769066378,214,0 +170769066426,215,0 +170769066476,215,0 +170769066524,215,0 +170769066573,215,0 +170769066621,215,0 +170769066669,213,0 +170769066717,213,0 +170769066767,213,0 +170769066815,213,0 +170769066863,213,0 +170769066912,213,0 +170769066960,214,0 +170769067008,214,0 +170769067057,214,0 +170769067105,214,0 +170769067153,214,0 +170769067201,215,0 +170769067249,215,0 +170769067299,215,0 +170769067347,215,0 +170769067395,215,0 +170769067443,214,0 +170769067490,214,0 +170769067539,213,0 +170769067588,214,0 +170769067638,214,0 +170769067687,214,0 +170769067736,214,0 +170769067786,214,0 +170769067835,214,0 +170769067883,214,0 +170769067931,214,0 +170769067979,215,0 +170769068027,215,0 +170769068075,215,0 +170769068123,215,0 +170769068171,215,0 +170769068221,215,0 +170769068268,215,0 +170769068318,214,0 +170769068366,214,0 +170769068415,213,0 +170769068465,213,0 +170769068513,214,0 +170769068561,214,0 +170769068609,214,0 +170769068658,214,0 +170769068706,214,0 +170769068756,214,0 +170769068804,215,0 +170769068852,215,0 +170769068899,215,0 +170769068947,215,0 +170769068995,215,0 +170769069043,215,0 +170769069093,215,0 +170769069141,215,0 +170769069189,214,0 +170769069238,213,0 +170769069286,213,0 +170769069334,213,0 +170769069384,213,0 +170769069432,214,0 +170769069480,214,0 +170769069529,214,0 +170769069577,214,0 +170769069625,214,0 +170769069674,214,0 +170769069722,214,0 +170769069770,214,0 +170769069818,215,0 +170769069866,215,0 +170769069914,215,0 +170769069963,215,0 +170769070011,214,0 +170769070059,214,0 +170769070109,213,0 +170769070156,213,0 +170769070204,213,0 +170769070254,213,0 +170769070302,213,0 +170769070349,214,0 +170769070397,214,0 +170769070445,214,0 +170769070493,214,0 +170769070541,214,0 +170769070589,214,0 +170769070637,214,0 +170769070685,214,0 +170769070732,215,0 +170769070780,215,0 +170769070828,215,0 +170769070876,215,0 +170769070925,215,0 +170769070973,213,0 +170769071021,213,0 +170769071071,213,0 +170769071119,214,0 +170769071167,214,0 +170769071215,214,0 +170769071264,214,0 +170769071312,214,0 +170769071360,214,0 +170769071410,215,0 +170769071458,215,0 +170769071506,215,0 +170769071554,215,0 +170769071602,215,0 +170769071650,215,0 +170769071699,215,0 +170769071749,215,0 +170769071796,214,0 +170769071844,214,0 +170769071894,214,0 +170769071943,214,0 +170769071991,214,0 +170769072039,214,0 +170769072087,214,0 +170769072137,214,0 +170769072185,215,0 +170769072233,215,0 +170769072281,215,0 +170769072330,215,0 +170769072378,215,0 +170769072427,215,0 +170769072475,215,0 +170769072525,215,0 +170769072575,215,0 +170769072622,215,0 +170769072670,215,0 +170769072718,214,0 +170769072766,214,0 +170769072814,214,0 +170769072862,214,0 +170769072912,214,0 +170769072960,214,0 +170769073008,214,0 +170769073055,215,0 +170769073105,215,0 +170769073154,215,0 +170769073202,215,0 +170769073252,215,0 +170769073300,215,0 +170769073348,215,0 +170769073396,215,0 +170769073445,215,0 +170769073493,215,0 +170769073541,215,0 +170769073589,215,0 +170769073638,214,0 +170769073686,214,0 +170769073734,214,0 +170769073782,214,0 +170769073832,214,0 +170769073880,214,0 +170769073928,215,0 +170769073977,215,0 +170769074025,214,0 +170769074073,215,0 +170769074121,215,0 +170769074169,215,0 +170769074217,215,0 +170769074264,215,0 +170769074312,215,0 +170769074362,215,0 +170769074411,215,0 +170769074461,215,0 +170769074510,215,0 +170769074558,214,0 +170769074606,214,0 +170769074656,214,0 +170769074704,214,0 +170769074752,214,0 +170769074800,214,0 +170769074848,214,0 +170769074896,214,0 +170769074944,215,0 +170769074991,214,0 +170769075041,215,0 +170769075089,215,0 +170769075137,215,0 +170769075185,215,0 +170769075233,215,0 +170769075281,215,0 +170769075328,215,0 +170769075376,214,0 +170769075426,214,0 +170769075474,213,0 +170769075522,213,0 +170769075570,214,0 +170769075618,214,0 +170769075667,214,0 +170769075716,214,0 +170769075766,214,0 +170769075814,214,0 +170769075862,214,0 +170769075910,214,0 +170769075957,215,0 +170769076005,215,0 +170769076053,215,0 +170769076101,215,0 +170769076149,215,0 +170769076198,215,0 +170769076248,215,0 +170769076298,215,0 +170769076345,213,0 +170769076393,213,0 +170769076441,213,0 +170769076489,213,0 +170769076537,214,0 +170769076587,214,0 +170769076635,214,0 +170769076684,214,0 +170769076732,214,0 +170769076780,214,0 +170769076828,215,0 +170769076878,215,0 +170769076926,215,0 +170769076973,215,0 +170769077021,215,0 +170769077069,215,0 +170769077117,215,0 +170769077167,215,0 +170769077215,214,0 +170769077264,213,0 +170769077312,213,0 +170769077360,213,0 +170769077410,214,0 +170769077458,214,0 +170769077505,214,0 +170769077553,214,0 +170769077603,214,0 +170769077651,214,0 +170769077700,215,0 +170769077750,215,0 +170769077798,215,0 +170769077847,215,0 +170769077897,215,0 +170769077946,215,0 +170769077994,215,0 +170769078044,215,0 +170769078093,215,0 +170769078141,213,0 +170769078189,213,0 +170769078237,213,0 +170769078285,213,0 +170769078333,213,0 +170769078383,213,0 +170769078431,214,0 +170769078478,213,0 +170769078526,214,0 +170769078574,214,0 +170769078622,214,0 +170769078670,214,0 +170769078717,215,0 +170769078765,215,0 +170769078813,215,0 +170769078861,215,0 +170769078911,215,0 +170769078958,215,0 +170769079006,214,0 +170769079054,213,0 +170769079104,213,0 +170769079153,213,0 +170769079201,213,0 +170769079249,213,0 +170769079297,214,0 +170769079345,214,0 +170769079394,214,0 +170769079444,214,0 +170769079492,214,0 +170769079540,214,0 +170769079588,214,0 +170769079636,215,0 +170769079684,215,0 +170769079733,215,0 +170769079781,215,0 +170769079829,215,0 +170769079877,215,0 +170769079925,213,0 +170769079974,213,0 +170769080024,213,0 +170769080072,213,0 +170769080119,213,0 +170769080167,213,0 +170769080215,213,0 +170769080265,213,0 +170769080314,214,0 +170769080362,214,0 +170769080412,214,0 +170769080460,214,0 +170769080509,214,0 +170769080557,215,0 +170769080605,215,0 +170769080653,215,0 +170769080701,215,0 +170769080749,215,0 +170769080798,215,0 +170769080846,213,0 +170769080894,213,0 +170769080942,213,0 +170769080989,213,0 +170769081037,213,0 +170769081085,213,0 +170769081133,214,0 +170769081182,214,0 +170769081230,214,0 +170769081278,214,0 +170769081326,214,0 +170769081374,215,0 +170769081422,215,0 +170769081470,215,0 +170769081518,215,0 +170769081566,215,0 +170769081614,215,0 +170769081663,215,0 +170769081713,214,0 +170769081763,213,0 +170769081812,213,0 +170769081862,213,0 +170769081910,213,0 +170769081958,213,0 +170769082006,213,0 +170769082054,214,0 +170769082103,214,0 +170769082151,214,0 +170769082199,214,0 +170769082247,214,0 +170769082296,214,0 +170769082344,214,0 +170769082392,215,0 +170769082440,215,0 +170769082488,215,0 +170769082537,215,0 +170769082585,214,0 +170769082633,213,0 +170769082681,213,0 +170769082729,213,0 +170769082776,213,0 +170769082824,213,0 +170769082872,213,0 +170769082920,214,0 +170769082969,214,0 +170769083017,214,0 +170769083065,214,0 +170769083115,214,0 +170769083163,214,0 +170769083211,215,0 +170769083259,215,0 +170769083308,215,0 +170769083356,214,0 +170769083404,215,0 +170769083452,215,0 +170769083500,215,0 +170769083548,213,0 +170769083597,213,0 +170769083645,213,0 +170769083694,214,0 +170769083744,214,0 +170769083792,214,0 +170769083840,214,0 +170769083889,214,0 +170769083937,214,0 +170769083985,215,0 +170769084033,215,0 +170769084081,215,0 +170769084129,215,0 +170769084177,215,0 +170769084225,215,0 +170769084273,215,0 +170769084322,215,0 +170769084372,215,0 +170769084421,214,0 +170769084469,214,0 +170769084519,214,0 +170769084568,214,0 +170769084618,214,0 +170769084666,214,0 +170769084715,214,0 +170769084765,214,0 +170769084815,215,0 +170769084862,214,0 +170769084910,214,0 +170769084958,215,0 +170769085008,215,0 +170769085056,215,0 +170769085103,215,0 +170769085151,215,0 +170769085199,215,0 +170769085248,215,0 +170769085298,215,0 +170769085346,214,0 +170769085395,214,0 +170769085443,214,0 +170769085491,214,0 +170769085541,214,0 +170769085589,214,0 +170769085637,215,0 +170769085686,215,0 +170769085734,215,0 +170769085782,215,0 +170769085830,215,0 +170769085878,215,0 +170769085928,215,0 +170769085977,215,0 +170769086025,215,0 +170769086074,215,0 +170769086122,215,0 +170769086170,214,0 +170769086218,214,0 +170769086268,214,0 +170769086315,213,0 +170769086363,214,0 +170769086413,214,0 +170769086461,214,0 +170769086509,214,0 +170769086557,214,0 +170769086604,215,0 +170769086652,214,0 +170769086702,215,0 +170769086749,215,0 +170769086797,215,0 +170769086847,215,0 +170769086895,215,0 +170769086943,215,0 +170769086992,215,0 +170769087042,215,0 +170769087091,215,0 +170769087139,213,0 +170769087187,213,0 +170769087235,213,0 +170769087283,214,0 +170769087331,214,0 +170769087380,214,0 +170769087428,214,0 +170769087476,214,0 +170769087524,214,0 +170769087572,214,0 +170769087620,215,0 +170769087668,215,0 +170769087718,215,0 +170769087765,215,0 +170769087815,215,0 +170769087863,215,0 +170769087911,215,0 +170769087960,215,0 +170769088008,214,0 +170769088056,213,0 +170769088104,213,0 +170769088152,213,0 +170769088200,213,0 +170769088248,213,0 +170769088296,214,0 +170769088344,214,0 +170769088392,214,0 +170769088439,214,0 +170769088487,214,0 +170769088537,215,0 +170769088585,215,0 +170769088633,215,0 +170769088681,215,0 +170769088729,215,0 +170769088778,215,0 +170769088826,215,0 +170769088874,215,0 +170769088922,213,0 +170769088970,213,0 +170769089018,213,0 +170769089067,213,0 +170769089117,214,0 +170769089166,214,0 +170769089214,214,0 +170769089262,214,0 +170769089310,214,0 +170769089358,214,0 +170769089406,214,0 +170769089453,214,0 +170769089503,214,0 +170769089553,215,0 +170769089602,215,0 +170769089650,215,0 +170769089700,215,0 +170769089749,215,0 +170769089797,214,0 +170769089846,213,0 +170769089894,213,0 +170769089944,213,0 +170769089992,213,0 +170769090040,214,0 +170769090088,214,0 +170769090135,214,0 +170769090185,214,0 +170769090233,214,0 +170769090281,214,0 +170769090328,215,0 +170769090376,214,0 +170769090424,214,0 +170769090474,215,0 +170769090523,215,0 +170769090573,215,0 +170769090621,215,0 +170769090669,214,0 +170769090717,213,0 +170769090765,213,0 +170769090814,213,0 +170769090862,213,0 +170769090910,213,0 +170769090958,213,0 +170769091007,214,0 +170769091057,214,0 +170769091105,214,0 +170769091153,214,0 +170769091202,214,0 +170769091250,214,0 +170769091298,214,0 +170769091346,215,0 +170769091396,214,0 +170769091445,215,0 +170769091493,215,0 +170769091541,215,0 +170769091590,214,0 +170769091638,213,0 +170769091686,213,0 +170769091734,213,0 +170769091782,213,0 +170769091830,214,0 +170769091879,214,0 +170769091927,214,0 +170769091975,214,0 +170769092023,215,0 +170769092071,214,0 +170769092118,215,0 +170769092168,215,0 +170769092217,215,0 +170769092265,215,0 +170769092313,215,0 +170769092361,215,0 +170769092409,215,0 +170769092457,215,0 +170769092505,213,0 +170769092553,213,0 +170769092601,213,0 +170769092650,213,0 +170769092698,213,0 +170769092748,213,0 +170769092796,214,0 +170769092845,214,0 +170769092893,214,0 +170769092943,214,0 +170769092992,214,0 +170769093040,214,0 +170769093090,214,0 +170769093137,215,0 +170769093185,214,0 +170769093233,215,0 +170769093281,215,0 +170769093331,214,0 +170769093379,214,0 +170769093426,213,0 +170769093474,213,0 +170769093524,213,0 +170769093572,213,0 +170769093621,213,0 +170769093669,213,0 +170769093717,213,0 +170769093764,213,0 +170769093812,214,0 +170769093860,214,0 +170769093910,214,0 +170769093958,214,0 +170769094007,214,0 +170769094055,214,0 +170769094104,215,0 +170769094152,214,0 +170769094202,215,0 +170769094251,215,0 +170769094299,213,0 +170769094347,213,0 +170769094395,213,0 +170769094443,213,0 +170769094492,213,0 +170769094542,213,0 +170769094591,213,0 +170769094639,213,0 +170769094687,213,0 +170769094735,213,0 +170769094783,214,0 +170769094831,214,0 +170769094879,214,0 +170769094927,214,0 +170769094975,214,0 +170769095023,215,0 +170769095072,214,0 +170769095120,214,0 +170769095170,214,0 +170769095218,213,0 +170769095267,213,0 +170769095315,213,0 +170769095363,213,0 +170769095411,213,0 +170769095459,213,0 +170769095507,214,0 +170769095555,214,0 +170769095604,214,0 +170769095652,214,0 +170769095700,214,0 +170769095748,215,0 +170769095796,214,0 +170769095844,215,0 +170769095894,215,0 +170769095941,215,0 +170769095989,215,0 +170769096039,214,0 +170769096087,213,0 +170769096136,213,0 +170769096186,213,0 +170769096235,213,0 +170769096285,213,0 +170769096334,213,0 +170769096384,213,0 +170769096432,213,0 +170769096480,214,0 +170769096529,214,0 +170769096577,214,0 +170769096627,214,0 +170769096675,214,0 +170769096723,214,0 +170769096771,215,0 +170769096818,215,0 +170769096868,215,0 +170769096917,215,0 +170769096965,215,0 +170769097013,213,0 +170769097061,213,0 +170769097110,213,0 +170769097158,213,0 +170769097206,214,0 +170769097256,214,0 +170769097305,214,0 +170769097353,214,0 +170769097401,214,0 +170769097449,214,0 +170769097497,215,0 +170769097545,215,0 +170769097593,215,0 +170769097641,215,0 +170769097689,215,0 +170769097737,215,0 +170769097785,215,0 +170769097834,215,0 +170769097882,213,0 +170769097932,213,0 +170769097980,213,0 +170769098028,213,0 +170769098077,214,0 +170769098125,214,0 +170769098175,214,0 +170769098223,214,0 +170769098271,214,0 +170769098319,214,0 +170769098368,214,0 +170769098416,214,0 +170769098464,215,0 +170769098512,215,0 +170769098561,215,0 +170769098609,215,0 +170769098657,215,0 +170769098707,215,0 +170769098755,215,0 +170769098804,213,0 +170769098852,213,0 +170769098902,213,0 +170769098949,214,0 +170769098999,214,0 +170769099047,214,0 +170769099095,214,0 +170769099143,214,0 +170769099191,215,0 +170769099239,215,0 +170769099287,215,0 +170769099335,215,0 +170769099383,215,0 +170769099431,215,0 +170769099479,215,0 +170769099526,215,0 +170769099574,215,0 +170769099622,215,0 +170769099670,214,0 +170769099718,213,0 +170769099768,214,0 +170769099815,214,0 +170769099865,214,0 +170769099913,214,0 +170769099962,214,0 +170769100012,214,0 +170769100060,215,0 +170769100108,215,0 +170769100156,215,0 +170769100204,215,0 +170769100252,215,0 +170769100299,215,0 +170769100347,215,0 +170769100395,215,0 +170769100443,215,0 +170769100493,215,0 +170769100541,215,0 +170769100590,213,0 +170769100638,214,0 +170769100688,213,0 +170769100736,214,0 +170769100784,214,0 +170769100832,214,0 +170769100881,214,0 +170769100929,214,0 +170769100979,214,0 +170769101027,215,0 +170769101075,215,0 +170769101124,215,0 +170769101172,215,0 +170769101221,215,0 +170769101271,215,0 +170769101320,215,0 +170769101370,215,0 +170769101419,215,0 +170769101467,214,0 +170769101515,213,0 +170769101563,213,0 +170769101611,214,0 +170769101659,214,0 +170769101709,214,0 +170769101758,214,0 +170769101806,214,0 +170769101854,215,0 +170769101902,214,0 +170769101951,215,0 +170769101999,215,0 +170769102047,215,0 +170769102095,215,0 +170769102143,215,0 +170769102192,215,0 +170769102240,215,0 +170769102289,215,0 +170769102337,214,0 +170769102385,213,0 +170769102433,213,0 +170769102481,214,0 +170769102530,214,0 +170769102580,214,0 +170769102629,214,0 +170769102677,214,0 +170769102725,214,0 +170769102775,214,0 +170769102823,215,0 +170769102870,215,0 +170769102918,215,0 +170769102966,215,0 +170769103016,215,0 +170769103064,215,0 +170769103111,215,0 +170769103159,215,0 +170769103207,215,0 +170769103255,213,0 +170769103303,213,0 +170769103351,213,0 +170769103401,213,0 +170769103448,214,0 +170769103496,214,0 +170769103544,214,0 +170769103592,214,0 +170769103640,214,0 +170769103688,214,0 +170769103736,215,0 +170769103784,214,0 +170769103831,214,0 +170769103879,214,0 +170769103927,214,0 +170769103975,215,0 +170769104023,215,0 +170769104071,214,0 +170769104119,215,0 +170769104167,213,0 +170769104214,213,0 +170769104262,213,0 +170769104310,213,0 +170769104358,213,0 +170769104408,213,0 +170769104456,213,0 +170769104505,214,0 +170769104553,214,0 +170769104601,214,0 +170769104649,214,0 +170769104699,214,0 +170769104746,214,0 +170769104796,214,0 +170769104846,215,0 +170769104895,215,0 +170769104944,215,0 +170769104994,215,0 +170769105042,214,0 +170769105090,213,0 +170769105138,213,0 +170769105186,213,0 +170769105235,214,0 +170769105285,213,0 +170769105333,214,0 +170769105381,214,0 +170769105430,214,0 +170769105478,214,0 +170769105526,214,0 +170769105574,214,0 +170769105622,215,0 +170769105670,215,0 +170769105718,215,0 +170769105766,214,0 +170769105814,215,0 +170769105863,215,0 +170769105913,214,0 +170769105962,213,0 +170769106010,213,0 +170769106060,213,0 +170769106109,213,0 +170769106157,213,0 +170769106205,214,0 +170769106255,214,0 +170769106304,214,0 +170769106352,214,0 +170769106400,214,0 +170769106449,214,0 +170769106497,214,0 +170769106547,214,0 +170769106595,215,0 +170769106643,215,0 +170769106691,215,0 +170769106739,215,0 +170769106787,215,0 +170769106836,214,0 +170769106886,213,0 +170769106933,213,0 +170769106981,214,0 +170769107029,213,0 +170769107077,214,0 +170769107127,214,0 +170769107176,214,0 +170769107224,214,0 +170769107274,214,0 +170769107322,214,0 +170769107370,214,0 +170769107418,215,0 +170769107465,215,0 +170769107515,215,0 +170769107563,215,0 +170769107611,215,0 +170769107659,215,0 +170769107707,215,0 +170769107755,213,0 +170769107803,213,0 +170769107852,213,0 +170769107900,213,0 +170769107949,213,0 +170769107997,214,0 +170769108047,214,0 +170769108095,214,0 +170769108142,214,0 +170769108190,214,0 +170769108238,214,0 +170769108288,214,0 +170769108336,215,0 +170769108383,215,0 +170769108431,215,0 +170769108479,215,0 +170769108527,215,0 +170769108575,215,0 +170769108623,215,0 +170769108670,213,0 +170769108718,213,0 +170769108766,213,0 +170769108814,213,0 +170769108862,213,0 +170769108910,213,0 +170769108958,214,0 +170769109008,214,0 +170769109056,214,0 +170769109103,214,0 +170769109153,214,0 +170769109201,214,0 +170769109249,214,0 +170769109297,215,0 +170769109345,215,0 +170769109394,215,0 +170769109444,215,0 +170769109493,215,0 +170769109543,214,0 +170769109591,213,0 +170769109639,213,0 +170769109687,213,0 +170769109736,213,0 +170769109786,213,0 +170769109835,213,0 +170769109885,214,0 +170769109933,214,0 +170769109981,214,0 +170769110030,214,0 +170769110078,214,0 +170769110126,214,0 +170769110174,214,0 +170769110222,214,0 +170769110270,214,0 +170769110319,213,0 +170769110367,214,0 +170769110415,214,0 +170769110463,213,0 +170769110513,213,0 +170769110561,213,0 +170769110609,213,0 +170769110658,213,0 +170769110706,213,0 +170769110754,213,0 +170769110802,213,0 +170769110850,213,0 +170769110898,214,0 +170769110946,214,0 +170769110994,214,0 +170769111042,214,0 +170769111091,214,0 +170769111139,214,0 +170769111189,215,0 +170769111237,215,0 +170769111285,215,0 +170769111333,215,0 +170769111381,213,0 +170769111430,213,0 +170769111478,213,0 +170769111526,213,0 +170769111574,214,0 +170769111624,214,0 +170769111672,214,0 +170769111720,214,0 +170769111769,214,0 +170769111819,214,0 +170769111868,214,0 +170769111918,215,0 +170769111967,214,0 +170769112015,215,0 +170769112063,215,0 +170769112113,215,0 +170769112160,215,0 +170769112208,215,0 +170769112256,214,0 +170769112306,213,0 +170769112355,213,0 +170769112403,214,0 +170769112451,214,0 +170769112499,214,0 +170769112547,214,0 +170769112595,214,0 +170769112644,214,0 +170769112694,214,0 +170769112742,214,0 +170769112790,215,0 +170769112837,214,0 +170769112885,215,0 +170769112933,215,0 +170769112981,215,0 +170769113029,215,0 +170769113077,214,0 +170769113125,214,0 +170769113172,213,0 +170769113220,213,0 +170769113268,213,0 +170769113316,213,0 +170769113364,213,0 +170769113411,214,0 +170769113459,214,0 +170769113507,214,0 +170769113555,214,0 +170769113603,214,0 +170769113651,214,0 +170769113699,215,0 +170769113747,215,0 +170769113794,215,0 +170769113842,215,0 +170769113890,215,0 +170769113938,215,0 +170769113986,215,0 +170769114035,214,0 +170769114083,213,0 +170769114133,213,0 +170769114181,213,0 +170769114229,213,0 +170769114276,214,0 +170769114326,214,0 +170769114374,214,0 +170769114422,214,0 +170769114470,214,0 +170769114518,214,0 +170769114566,214,0 +170769114615,215,0 +170769114665,214,0 +170769114714,215,0 +170769114762,215,0 +170769114810,215,0 +170769114859,215,0 +170769114909,214,0 +170769114958,213,0 +170769115006,213,0 +170769115054,213,0 +170769115102,213,0 +170769115150,213,0 +170769115198,213,0 +170769115246,214,0 +170769115294,214,0 +170769115341,214,0 +170769115389,214,0 +170769115437,214,0 +170769115486,214,0 +170769115534,214,0 +170769115582,214,0 +170769115630,215,0 +170769115678,215,0 +170769115725,215,0 +170769115775,214,0 +170769115823,215,0 +170769115871,213,0 +170769115918,213,0 +170769115966,213,0 +170769116014,213,0 +170769116063,213,0 +170769116111,213,0 +170769116161,213,0 +170769116210,214,0 +170769116258,213,0 +170769116306,214,0 +170769116354,214,0 +170769116402,214,0 +170769116450,214,0 +170769116500,215,0 +170769116547,214,0 +170769116595,215,0 +170769116645,214,0 +170769116694,215,0 +170769116742,214,0 +170769116790,213,0 +170769116838,213,0 +170769116888,213,0 +170769116937,213,0 +170769116987,213,0 +170769117036,213,0 +170769117086,214,0 +170769117134,213,0 +170769117183,214,0 +170769117231,214,0 +170769117280,214,0 +170769117328,214,0 +170769117376,215,0 +170769117424,214,0 +170769117472,215,0 +170769117520,215,0 +170769117570,215,0 +170769117619,215,0 +170769117669,213,0 +170769117717,213,0 +170769117764,213,0 +170769117814,213,0 +170769117862,213,0 +170769117910,213,0 +170769117958,213,0 +170769118006,214,0 +170769118054,214,0 +170769118102,214,0 +170769118150,214,0 +170769118198,214,0 +170769118245,214,0 +170769118295,214,0 +170769118343,214,0 +170769118391,214,0 +170769118439,214,0 +170769118488,214,0 +170769118536,214,0 +170769118584,213,0 +170769118632,213,0 +170769118680,213,0 +170769118728,213,0 +170769118776,213,0 +170769118824,213,0 +170769118873,213,0 +170769118921,213,0 +170769118969,214,0 +170769119017,214,0 +170769119065,214,0 +170769119113,214,0 +170769119162,214,0 +170769119210,214,0 +170769119258,214,0 +170769119306,214,0 +170769119354,214,0 +170769119403,215,0 +170769119451,213,0 +170769119501,213,0 +170769119550,213,0 +170769119600,213,0 +170769119649,213,0 +170769119699,214,0 +170769119748,214,0 +170769119796,214,0 +170769119844,214,0 +170769119894,214,0 +170769119943,214,0 +170769119991,215,0 +170769120040,214,0 +170769120088,215,0 +170769120136,215,0 +170769120184,215,0 +170769120232,215,0 +170769120280,215,0 +170769120328,215,0 +170769120376,213,0 +170769120426,213,0 +170769120474,213,0 +170769120521,213,0 +170769120569,214,0 +170769120617,214,0 +170769120667,214,0 +170769120715,214,0 +170769120763,214,0 +170769120811,214,0 +170769120860,215,0 +170769120908,215,0 +170769120956,215,0 +170769121004,215,0 +170769121053,215,0 +170769121101,215,0 +170769121149,215,0 +170769121199,215,0 +170769121248,213,0 +170769121296,213,0 +170769121344,213,0 +170769121392,213,0 +170769121440,214,0 +170769121490,214,0 +170769121538,214,0 +170769121585,214,0 +170769121635,215,0 +170769121683,214,0 +170769121732,214,0 +170769121780,215,0 +170769121828,215,0 +170769121876,215,0 +170769121926,215,0 +170769121975,215,0 +170769122023,215,0 +170769122073,215,0 +170769122121,214,0 +170769122170,213,0 +170769122220,213,0 +170769122268,213,0 +170769122316,213,0 +170769122364,213,0 +170769122413,213,0 +170769122461,214,0 +170769122511,214,0 +170769122558,214,0 +170769122606,214,0 +170769122654,214,0 +170769122702,214,0 +170769122750,215,0 +170769122798,215,0 +170769122846,215,0 +170769122894,214,0 +170769122942,215,0 +170769122990,215,0 +170769123039,213,0 +170769123089,213,0 +170769123136,213,0 +170769123186,213,0 +170769123235,213,0 +170769123285,213,0 +170769123333,213,0 +170769123381,214,0 +170769123430,213,0 +170769123478,214,0 +170769123526,214,0 +170769123574,214,0 +170769123621,214,0 +170769123671,215,0 +170769123719,215,0 +170769123767,215,0 +170769123816,215,0 +170769123864,215,0 +170769123914,215,0 +170769123962,213,0 +170769124009,213,0 +170769124057,213,0 +170769124105,213,0 +170769124153,214,0 +170769124203,214,0 +170769124251,214,0 +170769124300,214,0 +170769124350,214,0 +170769124399,214,0 +170769124447,215,0 +170769124495,215,0 +170769124543,215,0 +170769124591,215,0 +170769124639,215,0 +170769124687,215,0 +170769124735,215,0 +170769124782,215,0 +170769124830,214,0 +170769124878,213,0 +170769124926,213,0 +170769124974,213,0 +170769125022,213,0 +170769125070,214,0 +170769125118,214,0 +170769125166,214,0 +170769125215,214,0 +170769125263,214,0 +170769125311,214,0 +170769125359,214,0 +170769125407,214,0 +170769125455,215,0 +170769125503,215,0 +170769125551,215,0 +170769125598,215,0 +170769125646,215,0 +170769125694,214,0 +170769125742,213,0 +170769125790,213,0 +170769125838,213,0 +170769125886,213,0 +170769125935,213,0 +170769125983,213,0 +170769126033,214,0 +170769126080,214,0 +170769126130,214,0 +170769126178,214,0 +170769126226,214,0 +170769126273,214,0 +170769126321,214,0 +170769126369,215,0 +170769126417,215,0 +170769126465,215,0 +170769126512,215,0 +170769126560,215,0 +170769126608,214,0 +170769126658,213,0 +170769126707,213,0 +170769126757,213,0 +170769126805,213,0 +170769126853,213,0 +170769126901,213,0 +170769126948,214,0 +170769126996,214,0 +170769127044,214,0 +170769127094,214,0 +170769127143,214,0 +170769127191,215,0 +170769127239,214,0 +170769127287,215,0 +170769127337,215,0 +170769127386,215,0 +170769127434,215,0 +170769127484,215,0 +170769127532,213,0 +170769127581,213,0 +170769127631,213,0 +170769127679,214,0 +170769127727,214,0 +170769127774,214,0 +170769127822,214,0 +170769127870,214,0 +170769127918,214,0 +170769127968,214,0 +170769128017,214,0 +170769128065,215,0 +170769128113,215,0 +170769128161,215,0 +170769128210,215,0 +170769128258,215,0 +170769128308,215,0 +170769128357,215,0 +170769128407,214,0 +170769128456,213,0 +170769128504,213,0 +170769128554,213,0 +170769128603,214,0 +170769128653,214,0 +170769128701,214,0 +170769128748,214,0 +170769128796,214,0 +170769128846,214,0 +170769128896,215,0 +170769128943,215,0 +170769128993,215,0 +170769129041,215,0 +170769129089,215,0 +170769129137,215,0 +170769129185,215,0 +170769129233,215,0 +170769129281,215,0 +170769129329,214,0 +170769129378,213,0 +170769129428,214,0 +170769129477,214,0 +170769129525,214,0 +170769129573,214,0 +170769129622,214,0 +170769129670,214,0 +170769129718,214,0 +170769129766,215,0 +170769129816,214,0 +170769129864,215,0 +170769129913,215,0 +170769129961,215,0 +170769130009,215,0 +170769130059,215,0 +170769130108,215,0 +170769130157,214,0 +170769130205,215,0 +170769130253,213,0 +170769130303,213,0 +170769130351,213,0 +170769130398,213,0 +170769130446,214,0 +170769130496,214,0 +170769130545,214,0 +170769130593,214,0 +170769130641,214,0 +170769130689,214,0 +170769130739,215,0 +170769130788,214,0 +170769130836,215,0 +170769130884,215,0 +170769130933,215,0 +170769130983,215,0 +170769131031,215,0 +170769131079,215,0 +170769131128,213,0 +170769131178,213,0 +170769131226,213,0 +170769131274,213,0 +170769131322,214,0 +170769131369,214,0 +170769131419,214,0 +170769131467,214,0 +170769131515,214,0 +170769131562,214,0 +170769131610,215,0 +170769131658,214,0 +170769131708,215,0 +170769131756,215,0 +170769131804,215,0 +170769131851,215,0 +170769131901,215,0 +170769131950,215,0 +170769131998,214,0 +170769132048,213,0 +170769132097,213,0 +170769132145,213,0 +170769132193,213,0 +170769132241,214,0 +170769132289,214,0 +170769132337,214,0 +170769132385,214,0 +170769132433,214,0 +170769132481,214,0 +170769132531,215,0 +170769132580,215,0 +170769132628,215,0 +170769132676,215,0 +170769132724,215,0 +170769132771,215,0 +170769132819,215,0 +170769132869,214,0 +170769132918,213,0 +170769132968,213,0 +170769133017,213,0 +170769133065,213,0 +170769133113,213,0 +170769133163,214,0 +170769133211,214,0 +170769133259,214,0 +170769133308,214,0 +170769133356,214,0 +170769133406,214,0 +170769133455,214,0 +170769133503,214,0 +170769133551,215,0 +170769133600,214,0 +170769133648,215,0 +170769133696,215,0 +170769133744,215,0 +170769133792,215,0 +170769133840,213,0 +170769133888,213,0 +170769133936,213,0 +170769133984,213,0 +170769134031,213,0 +170769134079,213,0 +170769134127,213,0 +170769134175,213,0 +170769134223,214,0 +170769134270,214,0 +170769134318,214,0 +170769134366,214,0 +170769134414,214,0 +170769134462,214,0 +170769134510,214,0 +170769134558,214,0 +170769134605,215,0 +170769134653,215,0 +170769134701,214,0 +170769134749,213,0 +170769134797,213,0 +170769134845,213,0 +170769134893,213,0 +170769134942,213,0 +170769134990,213,0 +170769135038,213,0 +170769135086,213,0 +170769135136,213,0 +170769135183,214,0 +170769135231,214,0 +170769135281,214,0 +170769135329,214,0 +170769135377,214,0 +170769135425,214,0 +170769135473,214,0 +170769135522,214,0 +170769135570,214,0 +170769135618,213,0 +170769135668,213,0 +170769135715,213,0 +170769135765,213,0 +170769135813,213,0 +170769135861,213,0 +170769135908,213,0 +170769135956,213,0 +170769136004,213,0 +170769136052,214,0 +170769136100,213,0 +170769136148,214,0 +170769136195,214,0 +170769136243,214,0 +170769136293,214,0 +170769136341,214,0 +170769136389,215,0 +170769136436,215,0 +170769136484,215,0 +170769136532,213,0 +170769136580,213,0 +170769136628,213,0 +170769136677,213,0 +170769136727,213,0 +170769136776,213,0 +170769136826,213,0 +170769136874,213,0 +170769136923,214,0 +170769136973,214,0 +170769137022,214,0 +170769137070,214,0 +170769137118,214,0 +170769137166,214,0 +170769137215,215,0 +170769137263,215,0 +170769137311,215,0 +170769137359,215,0 +170769137407,215,0 +170769137455,213,0 +170769137503,213,0 +170769137552,213,0 +170769137600,213,0 +170769137648,213,0 +170769137696,213,0 +170769137746,213,0 +170769137794,214,0 +170769137842,214,0 +170769137890,214,0 +170769137937,214,0 +170769137985,214,0 +170769138035,214,0 +170769138083,214,0 +170769138131,214,0 +170769138180,214,0 +170769138228,214,0 +170769138276,215,0 +170769138324,213,0 +170769138372,213,0 +170769138421,213,0 +170769138469,213,0 +170769138519,213,0 +170769138568,214,0 +170769138616,214,0 +170769138666,214,0 +170769138714,214,0 +170769138761,214,0 +170769138809,214,0 +170769138857,214,0 +170769138905,214,0 +170769138955,215,0 +170769139003,215,0 +170769139050,215,0 +170769139098,215,0 +170769139146,215,0 +170769139194,214,0 +170769139244,213,0 +170769139292,213,0 +170769139339,213,0 +170769139389,213,0 +170769139438,213,0 +170769139488,213,0 +170769139536,214,0 +170769139585,214,0 +170769139635,214,0 +170769139683,214,0 +170769139731,214,0 +170769139778,214,0 +170769139828,214,0 +170769139878,214,0 +170769139927,215,0 +170769139975,214,0 +170769140023,215,0 +170769140072,214,0 +170769140120,213,0 +170769140167,213,0 +170769140215,213,0 +170769140265,213,0 +170769140312,213,0 +170769140360,213,0 +170769140408,214,0 +170769140456,214,0 +170769140505,214,0 +170769140553,214,0 +170769140603,214,0 +170769140651,214,0 +170769140698,214,0 +170769140746,214,0 +170769140794,214,0 +170769140842,214,0 +170769140890,215,0 +170769140939,215,0 +170769140987,215,0 +170769141035,214,0 +170769141085,213,0 +170769141134,213,0 +170769141184,213,0 +170769141233,214,0 +170769141281,214,0 +170769141331,214,0 +170769141379,214,0 +170769141428,214,0 +170769141476,214,0 +170769141524,215,0 +170769141572,214,0 +170769141620,215,0 +170769141668,215,0 +170769141717,215,0 +170769141765,215,0 +170769141813,215,0 +170769141861,214,0 +170769141910,214,0 +170769141958,214,0 +170769142006,214,0 +170769142054,214,0 +170769142102,214,0 +170769142150,214,0 +170769142200,214,0 +170769142249,214,0 +170769142299,214,0 +170769142348,215,0 +170769142398,215,0 +170769142446,215,0 +170769142495,215,0 +170769142545,215,0 +170769142593,215,0 +170769142640,215,0 +170769142690,215,0 +170769142738,214,0 +170769142787,215,0 +170769142835,214,0 +170769142883,214,0 +170769142931,214,0 +170769142979,214,0 +170769143027,215,0 +170769143075,214,0 +170769143123,215,0 +170769143173,215,0 +170769143222,215,0 +170769143270,215,0 +170769143318,215,0 +170769143366,215,0 +170769143414,215,0 +170769143462,215,0 +170769143510,215,0 +170769143558,215,0 +170769143607,215,0 +170769143655,215,0 +170769143705,215,0 +170769143753,214,0 +170769143802,214,0 +170769143852,214,0 +170769143901,214,0 +170769143951,214,0 +170769144000,214,0 +170769144050,215,0 +170769144098,215,0 +170769144146,215,0 +170769144195,215,0 +170769144245,215,0 +170769144294,215,0 +170769144342,215,0 +170769144390,215,0 +170769144438,215,0 +170769144487,215,0 +170769144535,215,0 +170769144583,215,0 +170769144633,214,0 +170769144682,213,0 +170769144732,214,0 +170769144780,214,0 +170769144828,214,0 +170769144877,214,0 +170769144925,214,0 +170769144973,214,0 +170769145021,214,0 +170769145071,215,0 +170769145121,215,0 +170769145170,215,0 +170769145218,215,0 +170769145266,215,0 +170769145315,215,0 +170769145363,215,0 +170769145411,215,0 +170769145459,215,0 +170769145507,214,0 +170769145554,213,0 +170769145602,213,0 +170769145650,213,0 +170769145698,213,0 +170769145746,214,0 +170769145794,214,0 +170769145841,214,0 +170769145889,214,0 +170769145937,214,0 +170769145985,214,0 +170769146033,214,0 +170769146081,214,0 +170769146129,215,0 +170769146176,214,0 +170769146224,215,0 +170769146272,215,0 +170769146320,215,0 +170769146368,215,0 +170769146415,213,0 +170769146463,213,0 +170769146513,213,0 +170769146561,213,0 +170769146609,213,0 +170769146656,213,0 +170769146704,213,0 +170769146752,213,0 +170769146800,213,0 +170769146849,213,0 +170769146899,213,0 +170769146947,213,0 +170769146994,214,0 +170769147042,214,0 +170769147090,214,0 +170769147138,214,0 +170769147186,214,0 +170769147234,214,0 +170769147281,215,0 +170769147331,213,0 +170769147379,213,0 +170769147427,213,0 +170769147474,213,0 +170769147522,213,0 +170769147570,213,0 +170769147618,213,0 +170769147666,214,0 +170769147714,213,0 +170769147762,214,0 +170769147811,214,0 +170769147860,214,0 +170769147908,214,0 +170769147958,214,0 +170769148006,215,0 +170769148055,215,0 +170769148105,214,0 +170769148152,214,0 +170769148200,214,0 +170769148248,213,0 +170769148296,213,0 +170769148344,213,0 +170769148392,213,0 +170769148439,213,0 +170769148489,213,0 +170769148537,213,0 +170769148586,213,0 +170769148634,213,0 +170769148684,214,0 +170769148731,214,0 +170769148781,214,0 +170769148829,214,0 +170769148877,214,0 +170769148925,215,0 +170769148972,214,0 +170769149022,215,0 +170769149070,215,0 +170769149118,214,0 +170769149166,213,0 +170769149215,213,0 +170769149263,213,0 +170769149311,213,0 +170769149359,213,0 +170769149407,213,0 +170769149455,213,0 +170769149505,213,0 +170769149554,214,0 +170769149602,214,0 +170769149650,214,0 +170769149699,214,0 +170769149747,214,0 +170769149795,214,0 +170769149843,215,0 +170769149891,215,0 +170769149939,214,0 +170769149987,214,0 +170769150035,213,0 +170769150083,213,0 +170769150133,213,0 +170769150182,213,0 +170769150230,213,0 +170769150278,213,0 +170769150326,213,0 +170769150376,214,0 +170769150423,213,0 +170769150471,214,0 +170769150519,214,0 +170769150567,214,0 +170769150615,214,0 +170769150663,214,0 +170769150711,214,0 +170769150759,214,0 +170769150807,215,0 +170769150855,214,0 +170769150903,215,0 +170769150952,213,0 +170769151000,213,0 +170769151050,213,0 +170769151099,213,0 +170769151147,213,0 +170769151195,213,0 +170769151243,213,0 +170769151293,213,0 +170769151341,214,0 +170769151389,214,0 +170769151438,214,0 +170769151486,214,0 +170769151536,214,0 +170769151584,214,0 +170769151633,215,0 +170769151681,215,0 +170769151730,215,0 +170769151780,215,0 +170769151829,213,0 +170769151877,213,0 +170769151927,213,0 +170769151976,213,0 +170769152026,213,0 +170769152074,213,0 +170769152122,213,0 +170769152171,213,0 +170769152219,213,0 +170769152267,214,0 +170769152315,214,0 +170769152363,214,0 +170769152413,214,0 +170769152462,215,0 +170769152512,214,0 +170769152560,215,0 +170769152608,215,0 +170769152657,215,0 +170769152705,214,0 +170769152753,213,0 +170769152801,213,0 +170769152849,213,0 +170769152898,213,0 +170769152946,213,0 +170769152994,213,0 +170769153044,213,0 +170769153093,213,0 +170769153141,214,0 +170769153191,214,0 +170769153239,214,0 +170769153288,214,0 +170769153336,214,0 +170769153386,214,0 +170769153435,214,0 +170769153485,214,0 +170769153534,214,0 +170769153582,214,0 +170769153632,213,0 +170769153679,213,0 +170769153727,213,0 +170769153775,213,0 +170769153823,213,0 +170769153871,213,0 +170769153921,213,0 +170769153970,213,0 +170769154020,214,0 +170769154069,213,0 +170769154117,214,0 +170769154165,214,0 +170769154213,214,0 +170769154261,214,0 +170769154311,214,0 +170769154359,215,0 +170769154407,215,0 +170769154455,214,0 +170769154504,214,0 +170769154552,213,0 +170769154602,213,0 +170769154651,213,0 +170769154699,213,0 +170769154747,213,0 +170769154795,214,0 +170769154843,214,0 +170769154891,214,0 +170769154939,214,0 +170769154988,214,0 +170769155036,214,0 +170769155086,214,0 +170769155134,214,0 +170769155182,215,0 +170769155231,215,0 +170769155279,215,0 +170769155327,215,0 +170769155375,215,0 +170769155423,215,0 +170769155471,213,0 +170769155520,213,0 +170769155570,213,0 +170769155619,214,0 +170769155669,214,0 +170769155717,214,0 +170769155766,214,0 +170769155814,214,0 +170769155862,214,0 +170769155910,215,0 +170769155958,215,0 +170769156006,215,0 +170769156054,215,0 +170769156102,215,0 +170769156151,215,0 +170769156201,215,0 +170769156249,215,0 +170769156297,215,0 +170769156346,214,0 +170769156394,214,0 +170769156444,214,0 +170769156492,214,0 +170769156539,214,0 +170769156589,214,0 +170769156637,214,0 +170769156685,214,0 +170769156733,215,0 +170769156781,214,0 +170769156829,215,0 +170769156877,215,0 +170769156926,215,0 +170769156974,215,0 +170769157022,215,0 +170769157070,215,0 +170769157118,215,0 +170769157167,215,0 +170769157215,215,0 +170769157265,213,0 +170769157313,213,0 +170769157361,213,0 +170769157409,214,0 +170769157457,214,0 +170769157505,214,0 +170769157552,214,0 +170769157602,214,0 +170769157652,214,0 +170769157701,214,0 +170769157749,214,0 +170769157797,215,0 +170769157847,215,0 +170769157895,215,0 +170769157944,215,0 +170769157994,215,0 +170769158042,215,0 +170769158089,215,0 +170769158137,213,0 +170769158187,213,0 +170769158235,214,0 +170769158283,214,0 +170769158331,214,0 +170769158379,214,0 +170769158427,214,0 +170769158474,214,0 +170769158522,214,0 +170769158570,214,0 +170769158618,214,0 +170769158668,215,0 +170769158716,215,0 +170769158764,215,0 +170769158813,215,0 +170769158861,215,0 +170769158909,215,0 +170769158959,215,0 +170769159008,215,0 +170769159058,213,0 +170769159106,214,0 +170769159153,213,0 +170769159201,214,0 +170769159249,214,0 +170769159299,214,0 +170769159348,214,0 +170769159396,214,0 +170769159444,214,0 +170769159494,215,0 +170769159543,215,0 +170769159591,215,0 +170769159639,215,0 +170769159687,215,0 +170769159735,215,0 +170769159783,215,0 +170769159831,215,0 +170769159880,215,0 +170769159928,214,0 +170769159976,214,0 +170769160026,214,0 +170769160075,214,0 +170769160125,214,0 +170769160174,214,0 +170769160224,214,0 +170769160273,214,0 +170769160323,214,0 +170769160372,215,0 +170769160422,215,0 +170769160471,215,0 +170769160519,215,0 +170769160569,215,0 +170769160619,215,0 +170769160668,215,0 +170769160716,215,0 +170769160765,215,0 +170769160813,214,0 +170769160863,214,0 +170769160912,214,0 +170769160960,214,0 +170769161008,214,0 +170769161056,214,0 +170769161104,214,0 +170769161152,214,0 +170769161200,215,0 +170769161249,214,0 +170769161297,215,0 +170769161347,215,0 +170769161394,215,0 +170769161442,215,0 +170769161490,215,0 +170769161540,215,0 +170769161587,215,0 +170769161637,215,0 +170769161685,215,0 +170769161734,214,0 +170769161782,213,0 +170769161832,213,0 +170769161880,213,0 +170769161928,213,0 +170769161976,213,0 +170769162025,214,0 +170769162073,213,0 +170769162121,213,0 +170769162169,214,0 +170769162217,214,0 +170769162266,214,0 +170769162314,214,0 +170769162362,214,0 +170769162412,214,0 +170769162460,214,0 +170769162509,215,0 +170769162557,215,0 +170769162607,215,0 +170769162656,213,0 +170769162704,213,0 +170769162752,213,0 +170769162800,213,0 +170769162850,213,0 +170769162898,213,0 +170769162945,213,0 +170769162993,214,0 +170769163041,214,0 +170769163089,214,0 +170769163139,214,0 +170769163187,214,0 +170769163236,214,0 +170769163284,215,0 +170769163332,215,0 +170769163382,214,0 +170769163431,215,0 +170769163481,214,0 +170769163529,214,0 +170769163577,213,0 +170769163626,213,0 +170769163676,213,0 +170769163724,213,0 +170769163771,213,0 +170769163819,213,0 +170769163869,213,0 +170769163917,214,0 +170769163965,214,0 +170769164013,214,0 +170769164062,214,0 +170769164110,214,0 +170769164160,214,0 +170769164209,215,0 +170769164259,215,0 +170769164307,215,0 +170769164355,214,0 +170769164403,214,0 +170769164451,214,0 +170769164500,213,0 +170769164550,213,0 +170769164597,213,0 +170769164647,213,0 +170769164695,213,0 +170769164744,213,0 +170769164792,213,0 +170769164840,214,0 +170769164888,214,0 +170769164936,214,0 +170769164986,214,0 +170769165034,214,0 +170769165082,214,0 +170769165129,214,0 +170769165177,214,0 +170769165225,214,0 +170769165275,214,0 +170769165323,215,0 +170769165372,213,0 +170769165422,213,0 +170769165471,213,0 +170769165519,213,0 +170769165569,213,0 +170769165618,213,0 +170769165666,214,0 +170769165714,214,0 +170769165762,214,0 +170769165810,214,0 +170769165858,214,0 +170769165907,214,0 +170769165955,214,0 +170769166005,214,0 +170769166053,214,0 +170769166101,215,0 +170769166150,215,0 +170769166200,215,0 +170769166248,213,0 +170769166296,213,0 +170769166345,213,0 +170769166393,213,0 +170769166443,213,0 +170769166491,213,0 +170769166539,213,0 +170769166587,214,0 +170769166634,214,0 +170769166682,214,0 +170769166730,214,0 +170769166778,215,0 +170769166826,215,0 +170769166876,214,0 +170769166925,215,0 +170769166973,215,0 +170769167023,215,0 +170769167072,214,0 +170769167122,214,0 +170769167170,213,0 +170769167218,213,0 +170769167267,213,0 +170769167317,213,0 +170769167365,213,0 +170769167413,213,0 +170769167461,213,0 +170769167509,214,0 +170769167557,214,0 +170769167605,214,0 +170769167654,214,0 +170769167704,214,0 +170769167751,214,0 +170769167799,214,0 +170769167847,215,0 +170769167895,215,0 +170769167943,215,0 +170769167991,215,0 +170769168041,214,0 +170769168090,213,0 +170769168140,213,0 +170769168188,213,0 +170769168236,213,0 +170769168283,213,0 +170769168331,213,0 +170769168379,213,0 +170769168427,213,0 +170769168475,213,0 +170769168523,213,0 +170769168571,213,0 +170769168620,213,0 +170769168668,214,0 +170769168716,214,0 +170769168766,214,0 +170769168815,214,0 +170769168865,214,0 +170769168913,215,0 +170769168961,213,0 +170769169009,213,0 +170769169057,213,0 +170769169105,213,0 +170769169154,213,0 +170769169202,213,0 +170769169250,213,0 +170769169299,213,0 +170769169347,213,0 +170769169395,213,0 +170769169443,213,0 +170769169491,213,0 +170769169539,214,0 +170769169586,214,0 +170769169634,214,0 +170769169684,214,0 +170769169732,214,0 +170769169779,214,0 +170769169827,214,0 +170769169875,213,0 +170769169923,213,0 +170769169971,213,0 +170769170020,213,0 +170769170068,213,0 +170769170116,213,0 +170769170165,213,0 +170769170214,213,0 +170769170262,214,0 +170769170310,214,0 +170769170358,214,0 +170769170406,214,0 +170769170454,214,0 +170769170502,214,0 +170769170549,214,0 +170769170597,214,0 +170769170645,214,0 +170769170693,214,0 +170769170741,214,0 +170769170789,215,0 +170769170837,215,0 +170769170884,215,0 +170769170932,215,0 +170769170980,215,0 +170769171028,215,0 +170769171076,215,0 +170769171124,215,0 +170769171172,214,0 +170769171220,213,0 +170769171268,213,0 +170769171317,213,0 +170769171365,213,0 +170769171414,214,0 +170769171462,214,0 +170769171510,214,0 +170769171558,214,0 +170769171606,214,0 +170769171654,214,0 +170769171701,214,0 +170769171749,215,0 +170769171797,214,0 +170769171847,215,0 +170769171896,215,0 +170769171945,214,0 +170769171993,215,0 +170769172041,215,0 +170769172089,213,0 +170769172137,213,0 +170769172184,213,0 +170769172232,214,0 +170769172280,214,0 +170769172328,214,0 +170769172376,214,0 +170769172424,214,0 +170769172471,214,0 +170769172521,215,0 +170769172570,214,0 +170769172620,215,0 +170769172667,215,0 +170769172717,215,0 +170769172764,215,0 +170769172812,215,0 +170769172860,215,0 +170769172910,215,0 +170769172957,215,0 +170769173005,213,0 +170769173053,213,0 +170769173101,214,0 +170769173149,214,0 +170769173197,214,0 +170769173245,214,0 +170769173292,214,0 +170769173340,214,0 +170769173388,214,0 +170769173436,215,0 +170769173484,215,0 +170769173532,215,0 +170769173579,215,0 +170769173627,215,0 +170769173675,215,0 +170769173723,215,0 +170769173773,215,0 +170769173820,215,0 +170769173868,213,0 +170769173916,213,0 +170769173964,214,0 +170769174014,213,0 +170769174062,213,0 +170769174110,214,0 +170769174159,214,0 +170769174209,214,0 +170769174257,214,0 +170769174305,215,0 +170769174352,215,0 +170769174400,215,0 +170769174448,215,0 +170769174498,215,0 +170769174546,215,0 +170769174595,215,0 +170769174643,215,0 +170769174691,215,0 +170769174739,214,0 +170769174787,213,0 +170769174835,213,0 +170769174883,213,0 +170769174932,213,0 +170769174982,214,0 +170769175030,214,0 +170769175078,214,0 +170769175125,214,0 +170769175173,214,0 +170769175221,214,0 +170769175269,214,0 +170769175319,214,0 +170769175367,214,0 +170769175415,215,0 +170769175463,215,0 +170769175511,214,0 +170769175560,215,0 +170769175610,215,0 +170769175659,213,0 +170769175707,213,0 +170769175757,213,0 +170769175805,213,0 +170769175853,213,0 +170769175900,213,0 +170769175950,214,0 +170769175999,213,0 +170769176049,214,0 +170769176097,214,0 +170769176146,214,0 +170769176196,214,0 +170769176244,214,0 +170769176292,214,0 +170769176340,214,0 +170769176387,214,0 +170769176437,215,0 +170769176485,215,0 +170769176534,214,0 +170769176582,213,0 +170769176630,213,0 +170769176678,213,0 +170769176726,213,0 +170769176774,213,0 +170769176822,213,0 +170769176870,213,0 +170769176918,214,0 +170769176967,214,0 +170769177015,214,0 +170769177065,214,0 +170769177113,214,0 +170769177161,214,0 +170769177208,215,0 +170769177256,215,0 +170769177304,215,0 +170769177352,214,0 +170769177400,214,0 +170769177448,214,0 +170769177497,213,0 +170769177545,214,0 +170769177593,214,0 +170769177642,214,0 +170769177692,214,0 +170769177740,214,0 +170769177789,214,0 +170769177837,214,0 +170769177887,214,0 +170769177936,214,0 +170769177984,215,0 +170769178032,215,0 +170769178080,215,0 +170769178128,215,0 +170769178176,215,0 +170769178225,215,0 +170769178273,215,0 +170769178322,214,0 +170769178372,214,0 +170769178420,214,0 +170769178468,214,0 +170769178517,214,0 +170769178565,214,0 +170769178615,214,0 +170769178663,214,0 +170769178710,215,0 +170769178758,215,0 +170769178806,215,0 +170769178854,215,0 +170769178902,215,0 +170769178950,215,0 +170769178998,215,0 +170769179046,215,0 +170769179094,215,0 +170769179142,215,0 +170769179190,215,0 +170769179237,213,0 +170769179285,213,0 +170769179335,213,0 +170769179384,213,0 +170769179432,213,0 +170769179482,214,0 +170769179530,214,0 +170769179578,214,0 +170769179627,214,0 +170769179676,215,0 +170769179724,214,0 +170769179772,214,0 +170769179822,215,0 +170769179870,215,0 +170769179918,215,0 +170769179967,215,0 +170769180015,215,0 +170769180063,215,0 +170769180113,215,0 +170769180160,213,0 +170769180208,213,0 +170769180258,213,0 +170769180306,213,0 +170769180353,213,0 +170769180401,213,0 +170769180449,213,0 +170769180497,214,0 +170769180545,214,0 +170769180593,214,0 +170769180641,214,0 +170769180688,214,0 +170769180736,214,0 +170769180784,214,0 +170769180834,214,0 +170769180883,214,0 +170769180931,214,0 +170769180979,214,0 +170769181027,213,0 +170769181076,213,0 +170769181124,213,0 +170769181172,213,0 +170769181220,213,0 +170769181268,213,0 +170769181316,214,0 +170769181364,213,0 +170769181411,214,0 +170769181459,214,0 +170769181509,214,0 +170769181556,214,0 +170769181604,215,0 +170769181652,215,0 +170769181700,214,0 +170769181748,215,0 +170769181796,215,0 +170769181844,215,0 +170769181892,214,0 +170769181940,213,0 +170769181988,213,0 +170769182037,213,0 +170769182085,213,0 +170769182133,213,0 +170769182182,214,0 +170769182230,214,0 +170769182278,214,0 +170769182328,214,0 +170769182376,214,0 +170769182424,214,0 +170769182473,215,0 +170769182523,215,0 +170769182571,215,0 +170769182618,215,0 +170769182668,215,0 +170769182716,215,0 +170769182765,215,0 +170769182813,213,0 +170769182861,213,0 +170769182909,213,0 +170769182957,213,0 +170769183005,213,0 +170769183052,213,0 +170769183100,213,0 +170769183148,214,0 +170769183196,214,0 +170769183244,214,0 +170769183292,214,0 +170769183340,214,0 +170769183389,215,0 +170769183437,215,0 +170769183485,215,0 +170769183535,215,0 +170769183584,215,0 +170769183634,215,0 +170769183682,215,0 +170769183730,213,0 +170769183778,213,0 +170769183826,213,0 +170769183874,213,0 +170769183922,213,0 +170769183970,214,0 +170769184017,213,0 +170769184065,214,0 +170769184113,214,0 +170769184163,214,0 +170769184211,214,0 +170769184260,214,0 +170769184308,214,0 +170769184358,215,0 +170769184408,214,0 +170769184455,214,0 +170769184503,214,0 +170769184551,215,0 +170769184601,213,0 +170769184649,213,0 +170769184697,213,0 +170769184745,213,0 +170769184793,213,0 +170769184842,213,0 +170769184890,213,0 +170769184940,213,0 +170769184988,214,0 +170769185037,214,0 +170769185085,214,0 +170769185133,214,0 +170769185183,215,0 +170769185230,215,0 +170769185278,215,0 +170769185328,215,0 +170769185376,215,0 +170769185424,215,0 +170769185473,214,0 +170769185521,213,0 +170769185569,213,0 +170769185619,213,0 +170769185668,213,0 +170769185716,214,0 +170769185766,214,0 +170769185814,213,0 +170769185863,214,0 +170769185913,214,0 +170769185961,214,0 +170769186010,214,0 +170769186060,215,0 +170769186109,215,0 +170769186157,215,0 +170769186205,215,0 +170769186253,215,0 +170769186301,215,0 +170769186349,215,0 +170769186397,213,0 +170769186446,213,0 +170769186496,213,0 +170769186544,213,0 +170769186593,214,0 +170769186643,214,0 +170769186691,214,0 +170769186738,214,0 +170769186786,214,0 +170769186834,214,0 +170769186882,214,0 +170769186930,215,0 +170769186978,215,0 +170769187028,215,0 +170769187077,215,0 +170769187127,215,0 +170769187174,215,0 +170769187224,215,0 +170769187272,215,0 +170769187322,213,0 +170769187371,214,0 +170769187419,214,0 +170769187467,214,0 +170769187515,214,0 +170769187562,214,0 +170769187610,214,0 +170769187658,214,0 +170769187706,214,0 +170769187754,214,0 +170769187802,215,0 +170769187850,215,0 +170769187899,215,0 +170769187947,215,0 +170769187995,215,0 +170769188042,215,0 +170769188092,215,0 +170769188140,215,0 +170769188188,214,0 +170769188236,213,0 +170769188285,213,0 +170769188333,213,0 +170769188381,214,0 +170769188431,214,0 +170769188479,214,0 +170769188527,214,0 +170769188575,214,0 +170769188624,214,0 +170769188674,214,0 +170769188722,214,0 +170769188771,215,0 +170769188820,215,0 +170769188868,215,0 +170769188916,215,0 +170769188964,215,0 +170769189014,215,0 +170769189062,215,0 +170769189110,213,0 +170769189159,213,0 +170769189207,213,0 +170769189257,214,0 +170769189305,214,0 +170769189354,214,0 +170769189402,214,0 +170769189450,214,0 +170769189499,214,0 +170769189547,214,0 +170769189597,214,0 +170769189645,214,0 +170769189692,215,0 +170769189740,215,0 +170769189788,215,0 +170769189836,215,0 +170769189886,215,0 +170769189935,215,0 +170769189985,214,0 +170769190033,213,0 +170769190081,213,0 +170769190130,213,0 +170769190178,213,0 +170769190228,214,0 +170769190276,214,0 +170769190325,214,0 +170769190375,214,0 +170769190424,214,0 +170769190472,214,0 +170769190520,215,0 +170769190568,215,0 +170769190616,215,0 +170769190664,215,0 +170769190712,215,0 +170769190762,215,0 +170769190811,214,0 +170769190861,214,0 +170769190908,213,0 +170769190958,213,0 +170769191006,213,0 +170769191055,214,0 +170769191103,214,0 +170769191151,214,0 +170769191200,214,0 +170769191248,214,0 +170769191296,214,0 +170769191344,214,0 +170769191394,215,0 +170769191442,215,0 +170769191490,215,0 +170769191539,215,0 +170769191587,215,0 +170769191635,215,0 +170769191683,215,0 +170769191731,215,0 +170769191779,213,0 +170769191828,213,0 +170769191876,213,0 +170769191924,213,0 +170769191974,213,0 +170769192022,214,0 +170769192071,214,0 +170769192121,214,0 +170769192169,214,0 +170769192218,214,0 +170769192268,214,0 +170769192316,215,0 +170769192364,215,0 +170769192411,215,0 +170769192461,215,0 +170769192509,215,0 +170769192557,215,0 +170769192606,214,0 +170769192654,214,0 +170769192702,213,0 +170769192750,213,0 +170769192798,213,0 +170769192847,213,0 +170769192895,213,0 +170769192943,213,0 +170769192991,213,0 +170769193038,214,0 +170769193086,213,0 +170769193134,214,0 +170769193182,214,0 +170769193230,214,0 +170769193278,214,0 +170769193326,214,0 +170769193373,214,0 +170769193421,214,0 +170769193469,214,0 +170769193517,215,0 +170769193566,213,0 +170769193614,213,0 +170769193662,213,0 +170769193710,213,0 +170769193758,213,0 +170769193806,214,0 +170769193854,213,0 +170769193903,213,0 +170769193951,214,0 +170769193999,214,0 +170769194047,214,0 +170769194097,214,0 +170769194145,214,0 +170769194193,215,0 +170769194241,215,0 +170769194290,215,0 +170769194340,215,0 +170769194388,214,0 +170769194435,215,0 +170769194483,213,0 +170769194531,213,0 +170769194579,213,0 +170769194629,213,0 +170769194677,213,0 +170769194725,213,0 +170769194773,214,0 +170769194821,213,0 +170769194868,214,0 +170769194916,214,0 +170769194964,214,0 +170769195014,214,0 +170769195062,215,0 +170769195110,215,0 +170769195158,215,0 +170769195207,215,0 +170769195255,215,0 +170769195303,215,0 +170769195352,213,0 +170769195402,213,0 +170769195450,213,0 +170769195499,213,0 +170769195549,214,0 +170769195597,214,0 +170769195645,214,0 +170769195693,214,0 +170769195742,215,0 +170769195792,215,0 +170769195841,215,0 +170769195891,215,0 +170769195940,215,0 +170769195988,215,0 +170769196038,215,0 +170769196085,215,0 +170769196133,215,0 +170769196183,215,0 +170769196231,214,0 +170769196279,213,0 +170769196326,213,0 +170769196374,213,0 +170769196422,214,0 +170769196470,214,0 +170769196518,214,0 +170769196566,214,0 +170769196613,214,0 +170769196661,214,0 +170769196711,215,0 +170769196760,215,0 +170769196808,215,0 +170769196856,215,0 +170769196904,215,0 +170769196954,215,0 +170769197003,215,0 +170769197053,215,0 +170769197101,215,0 +170769197149,213,0 +170769197198,213,0 +170769197246,213,0 +170769197294,213,0 +170769197342,213,0 +170769197390,213,0 +170769197438,213,0 +170769197486,214,0 +170769197533,214,0 +170769197581,214,0 +170769197631,214,0 +170769197679,214,0 +170769197727,214,0 +170769197775,215,0 +170769197824,215,0 +170769197872,215,0 +170769197920,215,0 +170769197969,215,0 +170769198017,215,0 +170769198065,213,0 +170769198115,213,0 +170769198163,213,0 +170769198211,213,0 +170769198260,213,0 +170769198310,213,0 +170769198359,213,0 +170769198407,213,0 +170769198457,213,0 +170769198505,214,0 +170769198554,214,0 +170769198602,214,0 +170769198650,214,0 +170769198698,215,0 +170769198746,214,0 +170769198794,215,0 +170769198843,215,0 +170769198893,214,0 +170769198941,214,0 +170769198989,213,0 +170769199036,213,0 +170769199086,213,0 +170769199134,213,0 +170769199182,214,0 +170769199231,214,0 +170769199279,214,0 +170769199327,214,0 +170769199375,214,0 +170769199423,215,0 +170769199471,215,0 +170769199519,215,0 +170769199569,215,0 +170769199616,215,0 +170769199666,215,0 +170769199714,215,0 +170769199762,215,0 +170769199810,215,0 +170769199858,213,0 +170769199906,213,0 +170769199953,213,0 +170769200003,214,0 +170769200051,214,0 +170769200100,214,0 +170769200148,214,0 +170769200198,214,0 +170769200246,214,0 +170769200294,214,0 +170769200342,215,0 +170769200390,215,0 +170769200437,215,0 +170769200487,215,0 +170769200535,215,0 +170769200583,215,0 +170769200631,215,0 +170769200678,214,0 +170769200728,214,0 +170769200776,213,0 +170769200824,213,0 +170769200872,213,0 +170769200921,213,0 +170769200969,213,0 +170769201019,214,0 +170769201068,214,0 +170769201116,214,0 +170769201166,214,0 +170769201214,214,0 +170769201263,214,0 +170769201311,215,0 +170769201359,215,0 +170769201407,215,0 +170769201457,214,0 +170769201505,215,0 +170769201553,215,0 +170769201600,214,0 +170769201648,213,0 +170769201696,213,0 +170769201746,213,0 +170769201794,213,0 +170769201842,213,0 +170769201891,213,0 +170769201939,214,0 +170769201989,214,0 +170769202038,214,0 +170769202088,215,0 +170769202136,214,0 +170769202185,214,0 +170769202235,215,0 +170769202283,215,0 +170769202331,215,0 +170769202380,215,0 +170769202430,215,0 +170769202477,215,0 +170769202525,213,0 +170769202573,213,0 +170769202621,213,0 +170769202669,213,0 +170769202717,213,0 +170769202765,213,0 +170769202814,213,0 +170769202863,214,0 +170769202910,214,0 +170769202958,214,0 +170769203006,214,0 +170769203056,214,0 +170769203103,214,0 +170769203151,215,0 +170769203199,215,0 +170769203247,215,0 +170769203295,215,0 +170769203342,215,0 +170769203390,214,0 +170769203438,213,0 +170769203486,213,0 +170769203533,213,0 +170769203581,213,0 +170769203629,213,0 +170769203677,213,0 +170769203727,213,0 +170769203776,214,0 +170769203824,214,0 +170769203872,214,0 +170769203920,214,0 +170769203968,214,0 +170769204016,214,0 +170769204064,214,0 +170769204113,214,0 +170769204161,215,0 +170769204211,214,0 +170769204259,215,0 +170769204309,213,0 +170769204356,213,0 +170769204404,213,0 +170769204454,213,0 +170769204502,213,0 +170769204550,213,0 +170769204598,213,0 +170769204646,213,0 +170769204693,213,0 +170769204741,214,0 +170769204791,214,0 +170769204839,214,0 +170769204887,214,0 +170769204936,215,0 +170769204984,214,0 +170769205033,215,0 +170769205082,215,0 +170769205131,214,0 +170769205181,214,0 +170769205229,213,0 +170769205276,213,0 +170769205326,213,0 +170769205376,213,0 +170769205423,213,0 +170769205473,213,0 +170769205522,214,0 +170769205572,214,0 +170769205620,214,0 +170769205669,214,0 +170769205717,214,0 +170769205767,214,0 +170769205816,214,0 +170769205864,215,0 +170769205914,214,0 +170769205963,215,0 +170769206011,215,0 +170769206059,214,0 +170769206107,213,0 +170769206155,213,0 +170769206203,213,0 +170769206250,213,0 +170769206298,213,0 +170769206346,213,0 +170769206394,213,0 +170769206442,213,0 +170769206490,213,0 +170769206539,214,0 +170769206589,214,0 +170769206637,214,0 +170769206685,214,0 +170769206733,214,0 +170769206781,214,0 +170769206829,214,0 +170769206876,214,0 +170769206926,214,0 +170769206975,214,0 +170769207025,213,0 +170769207073,213,0 +170769207121,213,0 +170769207170,213,0 +170769207220,213,0 +170769207269,213,0 +170769207317,213,0 +170769207365,213,0 +170769207413,213,0 +170769207461,214,0 +170769207509,214,0 +170769207559,214,0 +170769207606,214,0 +170769207656,214,0 +170769207704,214,0 +170769207752,214,0 +170769207801,215,0 +170769207849,215,0 +170769207899,213,0 +170769207947,213,0 +170769207996,213,0 +170769208044,213,0 +170769208092,213,0 +170769208142,214,0 +170769208189,214,0 +170769208237,214,0 +170769208287,214,0 +170769208335,214,0 +170769208383,214,0 +170769208431,214,0 +170769208479,215,0 +170769208528,215,0 +170769208576,214,0 +170769208624,214,0 +170769208672,215,0 +170769208721,215,0 +170769208769,215,0 +170769208817,213,0 +170769208865,213,0 +170769208913,213,0 +170769208963,213,0 +170769209010,213,0 +170769209058,214,0 +170769209108,214,0 +170769209157,214,0 +170769209205,214,0 +170769209255,214,0 +170769209303,214,0 +170769209351,215,0 +170769209398,214,0 +170769209446,215,0 +170769209496,215,0 +170769209544,214,0 +170769209592,215,0 +170769209640,214,0 +170769209688,213,0 +170769209736,213,0 +170769209784,213,0 +170769209833,213,0 +170769209881,213,0 +170769209929,213,0 +170769209977,213,0 +170769210026,214,0 +170769210074,214,0 +170769210122,214,0 +170769210172,214,0 +170769210220,214,0 +170769210267,214,0 +170769210315,214,0 +170769210363,214,0 +170769210411,214,0 +170769210459,214,0 +170769210507,214,0 +170769210555,214,0 +170769210603,213,0 +170769210651,213,0 +170769210700,213,0 +170769210748,213,0 +170769210796,213,0 +170769210844,214,0 +170769210893,214,0 +170769210941,214,0 +170769210991,214,0 +170769211040,214,0 +170769211088,214,0 +170769211136,214,0 +170769211184,214,0 +170769211232,215,0 +170769211280,215,0 +170769211327,215,0 +170769211375,215,0 +170769211423,215,0 +170769211471,214,0 +170769211521,213,0 +170769211570,213,0 +170769211620,213,0 +170769211668,213,0 +170769211717,213,0 +170769211767,214,0 +170769211815,214,0 +170769211864,214,0 +170769211914,214,0 +170769211962,214,0 +170769212010,214,0 +170769212059,214,0 +170769212107,214,0 +170769212155,215,0 +170769212203,214,0 +170769212253,215,0 +170769212302,215,0 +170769212350,214,0 +170769212398,214,0 +170769212446,213,0 +170769212494,213,0 +170769212542,214,0 +170769212590,214,0 +170769212639,214,0 +170769212687,214,0 +170769212735,214,0 +170769212785,214,0 +170769212833,215,0 +170769212880,215,0 +170769212930,214,0 +170769212978,215,0 +170769213027,215,0 +170769213075,215,0 +170769213125,214,0 +170769213173,215,0 +170769213221,215,0 +170769213269,215,0 +170769213317,213,0 +170769213366,214,0 +170769213416,214,0 +170769213463,214,0 +170769213511,214,0 +170769213561,214,0 +170769213609,214,0 +170769213657,215,0 +170769213706,215,0 +170769213756,215,0 +170769213804,215,0 +170769213852,215,0 +170769213901,215,0 +170769213949,215,0 +170769213997,215,0 +170769214045,215,0 +170769214093,214,0 +170769214141,214,0 +170769214191,214,0 +170769214238,214,0 +170769214286,214,0 +170769214336,214,0 +170769214384,214,0 +170769214432,214,0 +170769214480,214,0 +170769214529,215,0 +170769214577,215,0 +170769214625,215,0 +170769214675,215,0 +170769214723,215,0 +170769214772,215,0 +170769214822,215,0 +170769214869,215,0 +170769214917,215,0 +170769214965,215,0 +170769215013,215,0 +170769215061,214,0 +170769215109,214,0 +170769215157,214,0 +170769215206,214,0 +170769215254,214,0 +170769215302,214,0 +170769215350,214,0 +170769215398,214,0 +170769215446,215,0 +170769215494,215,0 +170769215542,215,0 +170769215589,215,0 +170769215637,215,0 +170769215685,215,0 +170769215733,215,0 +170769215781,215,0 +170769215829,215,0 +170769215879,215,0 +170769215927,215,0 +170769215975,214,0 +170769216023,214,0 +170769216071,214,0 +170769216119,214,0 +170769216167,214,0 +170769216216,214,0 +170769216264,214,0 +170769216312,214,0 +170769216360,214,0 +170769216408,215,0 +170769216455,215,0 +170769216505,215,0 +170769216553,215,0 +170769216601,215,0 +170769216648,215,0 +170769216696,215,0 +170769216744,215,0 +170769216793,214,0 +170769216841,214,0 +170769216889,213,0 +170769216937,213,0 +170769216985,213,0 +170769217034,213,0 +170769217082,214,0 +170769217132,214,0 +170769217180,214,0 +170769217229,214,0 +170769217279,214,0 +170769217328,214,0 +170769217376,215,0 +170769217424,215,0 +170769217474,215,0 +170769217522,215,0 +170769217571,215,0 +170769217619,215,0 +170769217669,215,0 +170769217718,214,0 +170769217766,213,0 +170769217814,213,0 +170769217862,213,0 +170769217912,213,0 +170769217961,213,0 +170769218009,213,0 +170769218057,213,0 +170769218105,213,0 +170769218153,214,0 +170769218201,214,0 +170769218250,214,0 +170769218298,214,0 +170769218348,214,0 +170769218396,215,0 +170769218444,214,0 +170769218493,215,0 +170769218543,214,0 +170769218590,215,0 +170769218640,214,0 +170769218688,213,0 +170769218736,213,0 +170769218784,213,0 +170769218832,213,0 +170769218880,213,0 +170769218928,213,0 +170769218976,213,0 +170769219023,213,0 +170769219071,214,0 +170769219119,213,0 +170769219167,214,0 +170769219215,214,0 +170769219263,214,0 +170769219311,214,0 +170769219359,214,0 +170769219407,214,0 +170769219455,214,0 +170769219504,215,0 +170769219552,214,0 +170769219600,213,0 +170769219650,213,0 +170769219697,213,0 +170769219747,213,0 +170769219797,213,0 +170769219845,213,0 +170769219892,213,0 +170769219940,213,0 +170769219990,214,0 +170769220039,214,0 +170769220087,214,0 +170769220137,214,0 +170769220185,214,0 +170769220234,214,0 +170769220282,214,0 +170769220330,214,0 +170769220378,214,0 +170769220427,214,0 +170769220475,213,0 +170769220523,213,0 +170769220571,213,0 +170769220619,213,0 +170769220667,213,0 +170769220715,213,0 +170769220763,213,0 +170769220811,213,0 +170769220859,213,0 +170769220907,213,0 +170769220955,214,0 +170769221003,214,0 +170769221051,214,0 +170769221100,214,0 +170769221148,214,0 +170769221196,214,0 +170769221245,214,0 +170769221293,214,0 +170769221341,214,0 +170769221389,213,0 +170769221438,213,0 +170769221486,213,0 +170769221534,213,0 +170769221582,213,0 +170769221631,213,0 +170769221679,213,0 +170769221727,214,0 +170769221775,213,0 +170769221824,214,0 +170769221872,214,0 +170769221922,214,0 +170769221969,214,0 +170769222017,214,0 +170769222065,215,0 +170769222113,214,0 +170769222161,214,0 +170769222209,214,0 +170769222257,213,0 +170769222305,213,0 +170769222354,213,0 +170769222402,213,0 +170769222450,213,0 +170769222498,213,0 +170769222548,213,0 +170769222596,213,0 +170769222644,213,0 +170769222691,214,0 +170769222741,214,0 +170769222790,214,0 +170769222838,214,0 +170769222888,214,0 +170769222937,214,0 +170769222985,214,0 +170769223033,215,0 +170769223081,215,0 +170769223129,214,0 +170769223179,213,0 +170769223228,213,0 +170769223277,213,0 +170769223325,213,0 +170769223373,213,0 +170769223421,213,0 +170769223469,213,0 +170769223517,213,0 +170769223565,214,0 +170769223612,214,0 +170769223660,214,0 +170769223708,214,0 +170769223756,214,0 +170769223804,215,0 +170769223852,214,0 +170769223900,214,0 +170769223948,215,0 +170769223996,214,0 +170769224043,213,0 +170769224091,213,0 +170769224139,213,0 +170769224187,213,0 +170769224236,213,0 +170769224286,213,0 +170769224334,213,0 +170769224382,213,0 +170769224431,213,0 +170769224481,214,0 +170769224530,214,0 +170769224580,214,0 +170769224629,214,0 +170769224677,214,0 +170769224727,214,0 +170769224775,214,0 +170769224824,214,0 +170769224872,214,0 +170769224922,215,0 +170769224971,213,0 +170769225021,213,0 +170769225070,213,0 +170769225118,213,0 +170769225166,213,0 +170769225214,213,0 +170769225262,213,0 +170769225310,214,0 +170769225359,214,0 +170769225407,214,0 +170769225457,214,0 +170769225505,214,0 +170769225554,215,0 +170769225602,215,0 +170769225650,215,0 +170769225698,215,0 +170769225746,215,0 +170769225794,215,0 +170769225842,213,0 +170769225891,213,0 +170769225939,213,0 +170769225987,213,0 +170769226035,213,0 +170769226084,214,0 +170769226132,214,0 +170769226180,214,0 +170769226230,214,0 +170769226278,214,0 +170769226325,214,0 +170769226375,214,0 +170769226423,214,0 +170769226470,215,0 +170769226518,214,0 +170769226568,214,0 +170769226616,214,0 +170769226664,214,0 +170769226711,214,0 +170769226759,213,0 +170769226807,213,0 +170769226855,213,0 +170769226903,214,0 +170769226951,214,0 +170769227000,214,0 +170769227048,214,0 +170769227098,214,0 +170769227146,214,0 +170769227195,214,0 +170769227243,215,0 +170769227291,215,0 +170769227339,215,0 +170769227387,215,0 +170769227435,215,0 +170769227483,215,0 +170769227530,215,0 +170769227578,214,0 +170769227628,213,0 +170769227677,213,0 +170769227727,213,0 +170769227775,213,0 +170769227822,213,0 +170769227872,214,0 +170769227920,213,0 +170769227969,213,0 +170769228017,214,0 +170769228065,214,0 +170769228115,214,0 +170769228164,214,0 +170769228213,214,0 +170769228261,214,0 +170769228309,214,0 +170769228359,214,0 +170769228407,214,0 +170769228455,214,0 +170769228502,214,0 +170769228552,213,0 +170769228600,213,0 +170769228649,213,0 +170769228697,213,0 +170769228745,214,0 +170769228795,213,0 +170769228843,214,0 +170769228890,214,0 +170769228938,214,0 +170769228986,214,0 +170769229034,214,0 +170769229082,214,0 +170769229130,214,0 +170769229178,215,0 +170769229225,215,0 +170769229273,215,0 +170769229321,215,0 +170769229369,214,0 +170769229417,214,0 +170769229465,213,0 +170769229513,214,0 +170769229560,213,0 +170769229608,214,0 +170769229658,214,0 +170769229706,214,0 +170769229753,214,0 +170769229801,214,0 +170769229851,213,0 +170769229899,215,0 +170769229947,215,0 +170769229995,215,0 +170769230042,215,0 +170769230090,215,0 +170769230138,215,0 +170769230188,215,0 +170769230236,215,0 +170769230284,214,0 +170769230332,214,0 +170769230380,214,0 +170769230429,213,0 +170769230477,214,0 +170769230527,214,0 +170769230575,214,0 +170769230623,214,0 +170769230671,214,0 +170769230719,214,0 +170769230767,215,0 +170769230815,215,0 +170769230863,215,0 +170769230912,215,0 +170769230962,215,0 +170769231011,215,0 +170769231061,215,0 +170769231110,215,0 +170769231158,215,0 +170769231206,214,0 +170769231254,214,0 +170769231302,214,0 +170769231350,214,0 +170769231397,214,0 +170769231445,214,0 +170769231493,214,0 +170769231541,214,0 +170769231589,214,0 +170769231637,214,0 +170769231684,214,0 +170769231734,215,0 +170769231782,215,0 +170769231830,215,0 +170769231878,215,0 +170769231925,215,0 +170769231973,215,0 +170769232023,214,0 +170769232070,214,0 +170769232118,214,0 +170769232166,213,0 +170769232215,214,0 +170769232263,214,0 +170769232311,214,0 +170769232359,214,0 +170769232407,214,0 +170769232455,214,0 +170769232503,214,0 +170769232550,215,0 +170769232598,215,0 +170769232646,215,0 +170769232694,215,0 +170769232742,215,0 +170769232790,215,0 +170769232837,215,0 +170769232885,215,0 +170769232933,215,0 +170769232981,214,0 +170769233029,214,0 +170769233077,214,0 +170769233126,214,0 +170769233174,214,0 +170769233222,214,0 +170769233270,214,0 +170769233318,214,0 +170769233366,214,0 +170769233413,214,0 +170769233461,215,0 +170769233509,215,0 +170769233559,215,0 +170769233607,215,0 +170769233654,215,0 +170769233702,215,0 +170769233750,215,0 +170769233798,215,0 +170769233846,215,0 +170769233894,214,0 +170769233942,213,0 +170769233989,213,0 +170769234037,213,0 +170769234085,214,0 +170769234135,214,0 +170769234184,214,0 +170769234233,214,0 +170769234281,214,0 +170769234329,214,0 +170769234378,215,0 +170769234426,215,0 +170769234474,215,0 +170769234522,215,0 +170769234570,215,0 +170769234618,215,0 +170769234666,215,0 +170769234713,215,0 +170769234761,215,0 +170769234809,214,0 +170769234857,213,0 +170769234905,213,0 +170769234953,213,0 +170769235000,213,0 +170769235048,214,0 +170769235096,213,0 +170769235144,214,0 +170769235194,214,0 +170769235243,214,0 +170769235292,214,0 +170769235340,214,0 +170769235388,215,0 +170769235436,214,0 +170769235484,214,0 +170769235532,214,0 +170769235582,215,0 +170769235630,214,0 +170769235678,215,0 +170769235726,213,0 +170769235774,213,0 +170769235823,213,0 +170769235871,213,0 +170769235919,213,0 +170769235967,213,0 +170769236017,214,0 +170769236064,214,0 +170769236112,214,0 +170769236160,214,0 +170769236208,214,0 +170769236256,214,0 +170769236306,214,0 +170769236354,215,0 +170769236403,215,0 +170769236451,215,0 +170769236499,215,0 +170769236547,214,0 +170769236595,214,0 +170769236643,213,0 +170769236691,213,0 +170769236740,213,0 +170769236788,213,0 +170769236836,213,0 +170769236884,214,0 +170769236932,214,0 +170769236980,214,0 +170769237028,214,0 +170769237076,214,0 +170769237124,214,0 +170769237173,215,0 +170769237221,215,0 +170769237269,215,0 +170769237318,215,0 +170769237368,215,0 +170769237416,215,0 +170769237464,214,0 +170769237511,213,0 +170769237559,213,0 +170769237607,213,0 +170769237655,213,0 +170769237703,213,0 +170769237751,213,0 +170769237799,214,0 +170769237848,214,0 +170769237896,214,0 +170769237944,214,0 +170769237991,214,0 +170769238039,215,0 +170769238087,214,0 +170769238137,215,0 +170769238184,215,0 +170769238232,215,0 +170769238282,215,0 +170769238330,215,0 +170769238378,215,0 +170769238425,213,0 +170769238473,212,0 +170769238521,213,0 +170769238569,213,0 +170769238617,213,0 +170769238665,213,0 +170769238713,213,0 +170769238760,213,0 +170769238808,213,0 +170769238856,214,0 +170769238904,213,0 +170769238952,214,0 +170769239000,214,0 +170769239049,214,0 +170769239097,214,0 +170769239145,214,0 +170769239193,214,0 +170769239241,215,0 +170769239289,214,0 +170769239336,213,0 +170769239386,213,0 +170769239434,213,0 +170769239482,213,0 +170769239530,213,0 +170769239579,213,0 +170769239627,213,0 +170769239675,213,0 +170769239725,213,0 +170769239773,214,0 +170769239821,214,0 +170769239869,214,0 +170769239916,214,0 +170769239964,214,0 +170769240014,214,0 diff --git a/laser_value/0212-09.csv b/laser_value/0212-09.csv new file mode 100644 index 0000000..e95f7d8 --- /dev/null +++ b/laser_value/0212-09.csv @@ -0,0 +1,7445 @@ +timestamp,laser_value,event +170769240064,215,0 +170769240112,214,0 +170769240160,215,0 +170769240209,213,0 +170769240259,213,0 +170769240308,213,0 +170769240358,213,0 +170769240406,213,0 +170769240453,213,0 +170769240501,213,0 +170769240549,213,0 +170769240597,213,0 +170769240645,214,0 +170769240693,214,0 +170769240740,214,0 +170769240788,214,0 +170769240836,214,0 +170769240884,214,0 +170769240932,214,0 +170769240981,215,0 +170769241029,214,0 +170769241079,214,0 +170769241127,213,0 +170769241175,213,0 +170769241222,213,0 +170769241270,213,0 +170769241318,213,0 +170769241366,213,0 +170769241416,213,0 +170769241464,214,0 +170769241513,214,0 +170769241561,214,0 +170769241609,214,0 +170769241657,214,0 +170769241705,214,0 +170769241753,214,0 +170769241801,214,0 +170769241849,214,0 +170769241897,215,0 +170769241946,215,0 +170769241994,213,0 +170769242042,213,0 +170769242092,213,0 +170769242141,213,0 +170769242189,213,0 +170769242239,213,0 +170769242286,213,0 +170769242336,213,0 +170769242384,214,0 +170769242432,214,0 +170769242480,214,0 +170769242528,214,0 +170769242576,214,0 +170769242623,214,0 +170769242671,214,0 +170769242719,215,0 +170769242769,215,0 +170769242816,215,0 +170769242864,214,0 +170769242912,213,0 +170769242960,213,0 +170769243008,213,0 +170769243057,213,0 +170769243105,214,0 +170769243153,214,0 +170769243201,214,0 +170769243249,214,0 +170769243297,214,0 +170769243345,214,0 +170769243392,214,0 +170769243440,214,0 +170769243488,215,0 +170769243536,215,0 +170769243586,215,0 +170769243635,215,0 +170769243683,215,0 +170769243731,214,0 +170769243779,214,0 +170769243827,213,0 +170769243875,213,0 +170769243923,214,0 +170769243971,214,0 +170769244019,214,0 +170769244066,214,0 +170769244116,214,0 +170769244164,214,0 +170769244213,214,0 +170769244261,214,0 +170769244309,214,0 +170769244359,215,0 +170769244407,215,0 +170769244455,215,0 +170769244502,215,0 +170769244552,215,0 +170769244601,215,0 +170769244649,214,0 +170769244699,213,0 +170769244748,213,0 +170769244796,214,0 +170769244845,214,0 +170769244893,214,0 +170769244941,214,0 +170769244989,214,0 +170769245037,214,0 +170769245085,214,0 +170769245133,215,0 +170769245181,214,0 +170769245229,215,0 +170769245277,215,0 +170769245325,215,0 +170769245372,214,0 +170769245420,214,0 +170769245470,215,0 +170769245518,215,0 +170769245566,214,0 +170769245614,213,0 +170769245661,213,0 +170769245709,213,0 +170769245757,214,0 +170769245805,214,0 +170769245853,214,0 +170769245900,214,0 +170769245948,214,0 +170769245996,214,0 +170769246045,214,0 +170769246093,214,0 +170769246141,215,0 +170769246189,215,0 +170769246237,215,0 +170769246285,215,0 +170769246332,215,0 +170769246380,215,0 +170769246428,215,0 +170769246476,214,0 +170769246524,213,0 +170769246571,213,0 +170769246619,214,0 +170769246667,213,0 +170769246715,214,0 +170769246763,214,0 +170769246811,214,0 +170769246859,214,0 +170769246907,214,0 +170769246954,214,0 +170769247002,214,0 +170769247050,215,0 +170769247098,214,0 +170769247146,215,0 +170769247193,215,0 +170769247243,215,0 +170769247291,215,0 +170769247339,215,0 +170769247386,213,0 +170769247434,213,0 +170769247482,213,0 +170769247530,213,0 +170769247578,213,0 +170769247625,214,0 +170769247673,213,0 +170769247721,214,0 +170769247771,214,0 +170769247821,214,0 +170769247868,214,0 +170769247918,215,0 +170769247966,215,0 +170769248014,215,0 +170769248061,215,0 +170769248109,215,0 +170769248157,215,0 +170769248205,214,0 +170769248253,214,0 +170769248301,213,0 +170769248350,213,0 +170769248398,213,0 +170769248448,213,0 +170769248496,213,0 +170769248544,213,0 +170769248591,213,0 +170769248641,214,0 +170769248689,214,0 +170769248738,214,0 +170769248788,215,0 +170769248836,215,0 +170769248883,214,0 +170769248931,215,0 +170769248981,215,0 +170769249029,215,0 +170769249078,215,0 +170769249126,215,0 +170769249174,213,0 +170769249221,213,0 +170769249269,213,0 +170769249317,213,0 +170769249366,214,0 +170769249414,214,0 +170769249462,214,0 +170769249510,214,0 +170769249558,214,0 +170769249605,214,0 +170769249653,214,0 +170769249701,214,0 +170769249750,215,0 +170769249798,215,0 +170769249846,214,0 +170769249896,215,0 +170769249944,214,0 +170769249992,215,0 +170769250040,214,0 +170769250089,213,0 +170769250137,213,0 +170769250185,213,0 +170769250233,213,0 +170769250281,213,0 +170769250330,213,0 +170769250378,213,0 +170769250426,214,0 +170769250474,214,0 +170769250522,214,0 +170769250571,214,0 +170769250619,214,0 +170769250667,214,0 +170769250717,214,0 +170769250764,215,0 +170769250812,214,0 +170769250860,214,0 +170769250908,215,0 +170769250957,214,0 +170769251005,213,0 +170769251053,213,0 +170769251103,213,0 +170769251151,213,0 +170769251199,213,0 +170769251248,213,0 +170769251298,214,0 +170769251346,214,0 +170769251394,214,0 +170769251443,214,0 +170769251493,214,0 +170769251541,214,0 +170769251588,215,0 +170769251638,215,0 +170769251686,214,0 +170769251734,214,0 +170769251782,215,0 +170769251829,214,0 +170769251879,213,0 +170769251927,213,0 +170769251976,213,0 +170769252026,213,0 +170769252074,213,0 +170769252122,213,0 +170769252171,213,0 +170769252219,214,0 +170769252267,214,0 +170769252316,214,0 +170769252366,214,0 +170769252414,214,0 +170769252462,214,0 +170769252511,214,0 +170769252561,215,0 +170769252609,215,0 +170769252657,214,0 +170769252706,215,0 +170769252754,213,0 +170769252802,213,0 +170769252850,213,0 +170769252898,213,0 +170769252946,213,0 +170769252994,213,0 +170769253042,213,0 +170769253091,213,0 +170769253139,214,0 +170769253187,214,0 +170769253235,214,0 +170769253283,214,0 +170769253331,214,0 +170769253378,214,0 +170769253426,214,0 +170769253474,214,0 +170769253522,214,0 +170769253570,214,0 +170769253618,215,0 +170769253666,213,0 +170769253713,213,0 +170769253761,213,0 +170769253811,213,0 +170769253859,213,0 +170769253908,213,0 +170769253956,213,0 +170769254004,214,0 +170769254052,214,0 +170769254100,214,0 +170769254148,214,0 +170769254196,214,0 +170769254244,214,0 +170769254292,214,0 +170769254340,214,0 +170769254388,214,0 +170769254435,215,0 +170769254483,214,0 +170769254533,215,0 +170769254581,213,0 +170769254630,213,0 +170769254678,213,0 +170769254728,213,0 +170769254777,213,0 +170769254825,213,0 +170769254875,214,0 +170769254923,214,0 +170769254971,214,0 +170769255019,214,0 +170769255067,214,0 +170769255115,214,0 +170769255163,215,0 +170769255211,215,0 +170769255260,215,0 +170769255308,215,0 +170769255356,215,0 +170769255405,215,0 +170769255455,213,0 +170769255503,213,0 +170769255552,213,0 +170769255600,213,0 +170769255650,213,0 +170769255699,213,0 +170769255747,214,0 +170769255795,214,0 +170769255845,214,0 +170769255894,214,0 +170769255942,214,0 +170769255991,214,0 +170769256041,214,0 +170769256090,215,0 +170769256138,215,0 +170769256186,215,0 +170769256236,215,0 +170769256284,215,0 +170769256332,215,0 +170769256380,213,0 +170769256427,213,0 +170769256475,213,0 +170769256523,213,0 +170769256571,214,0 +170769256621,214,0 +170769256669,214,0 +170769256717,214,0 +170769256764,214,0 +170769256814,214,0 +170769256863,214,0 +170769256911,214,0 +170769256961,215,0 +170769257009,215,0 +170769257057,215,0 +170769257106,215,0 +170769257156,215,0 +170769257204,214,0 +170769257252,214,0 +170769257300,213,0 +170769257349,213,0 +170769257397,214,0 +170769257447,214,0 +170769257495,214,0 +170769257542,214,0 +170769257590,214,0 +170769257640,214,0 +170769257688,214,0 +170769257736,214,0 +170769257784,215,0 +170769257831,215,0 +170769257879,215,0 +170769257929,215,0 +170769257977,215,0 +170769258025,215,0 +170769258074,215,0 +170769258122,215,0 +170769258172,213,0 +170769258221,213,0 +170769258271,213,0 +170769258319,214,0 +170769258366,214,0 +170769258414,214,0 +170769258462,214,0 +170769258510,214,0 +170769258558,214,0 +170769258606,214,0 +170769258654,214,0 +170769258703,215,0 +170769258751,215,0 +170769258801,215,0 +170769258849,215,0 +170769258897,215,0 +170769258946,215,0 +170769258994,214,0 +170769259042,213,0 +170769259092,213,0 +170769259140,213,0 +170769259187,213,0 +170769259235,214,0 +170769259283,213,0 +170769259331,214,0 +170769259379,214,0 +170769259427,214,0 +170769259475,214,0 +170769259523,214,0 +170769259573,214,0 +170769259622,215,0 +170769259672,215,0 +170769259720,215,0 +170769259768,215,0 +170769259817,215,0 +170769259865,215,0 +170769259913,215,0 +170769259961,213,0 +170769260009,213,0 +170769260057,213,0 +170769260106,213,0 +170769260154,213,0 +170769260204,214,0 +170769260251,214,0 +170769260301,214,0 +170769260349,214,0 +170769260397,214,0 +170769260445,214,0 +170769260493,214,0 +170769260542,215,0 +170769260592,215,0 +170769260640,215,0 +170769260689,215,0 +170769260737,215,0 +170769260785,215,0 +170769260833,214,0 +170769260882,213,0 +170769260930,213,0 +170769260978,213,0 +170769261026,213,0 +170769261076,213,0 +170769261123,214,0 +170769261171,214,0 +170769261219,214,0 +170769261267,214,0 +170769261315,214,0 +170769261365,214,0 +170769261413,214,0 +170769261461,215,0 +170769261508,215,0 +170769261556,214,0 +170769261604,215,0 +170769261652,215,0 +170769261700,214,0 +170769261748,213,0 +170769261796,213,0 +170769261846,213,0 +170769261895,213,0 +170769261943,213,0 +170769261991,214,0 +170769262040,214,0 +170769262088,214,0 +170769262138,214,0 +170769262186,214,0 +170769262234,214,0 +170769262283,214,0 +170769262333,215,0 +170769262381,215,0 +170769262428,215,0 +170769262476,215,0 +170769262524,215,0 +170769262572,214,0 +170769262622,214,0 +170769262671,213,0 +170769262721,213,0 +170769262769,213,0 +170769262817,213,0 +170769262864,213,0 +170769262912,213,0 +170769262960,214,0 +170769263010,214,0 +170769263058,214,0 +170769263106,214,0 +170769263154,214,0 +170769263202,214,0 +170769263249,214,0 +170769263299,214,0 +170769263348,215,0 +170769263396,215,0 +170769263444,215,0 +170769263492,215,0 +170769263542,214,0 +170769263590,213,0 +170769263638,213,0 +170769263686,213,0 +170769263735,213,0 +170769263783,213,0 +170769263831,213,0 +170769263880,213,0 +170769263930,213,0 +170769263979,214,0 +170769264027,214,0 +170769264075,214,0 +170769264125,214,0 +170769264173,214,0 +170769264221,214,0 +170769264270,214,0 +170769264318,214,0 +170769264366,215,0 +170769264416,214,0 +170769264464,213,0 +170769264513,213,0 +170769264561,213,0 +170769264609,213,0 +170769264657,214,0 +170769264706,213,0 +170769264754,214,0 +170769264804,214,0 +170769264851,214,0 +170769264901,214,0 +170769264949,214,0 +170769264998,214,0 +170769265046,214,0 +170769265096,214,0 +170769265144,215,0 +170769265192,215,0 +170769265241,215,0 +170769265291,214,0 +170769265340,214,0 +170769265388,213,0 +170769265436,213,0 +170769265486,213,0 +170769265534,214,0 +170769265583,214,0 +170769265631,214,0 +170769265680,214,0 +170769265728,214,0 +170769265776,214,0 +170769265824,214,0 +170769265874,215,0 +170769265922,215,0 +170769265970,215,0 +170769266019,215,0 +170769266067,215,0 +170769266117,215,0 +170769266165,215,0 +170769266213,215,0 +170769266262,213,0 +170769266312,213,0 +170769266361,213,0 +170769266409,214,0 +170769266459,214,0 +170769266507,214,0 +170769266555,214,0 +170769266603,214,0 +170769266651,214,0 +170769266700,214,0 +170769266750,215,0 +170769266798,215,0 +170769266847,215,0 +170769266897,215,0 +170769266945,215,0 +170769266993,215,0 +170769267041,215,0 +170769267088,215,0 +170769267136,214,0 +170769267186,213,0 +170769267234,213,0 +170769267282,213,0 +170769267330,213,0 +170769267378,213,0 +170769267426,214,0 +170769267474,214,0 +170769267522,214,0 +170769267571,214,0 +170769267619,214,0 +170769267667,215,0 +170769267715,214,0 +170769267763,214,0 +170769267812,215,0 +170769267860,215,0 +170769267910,215,0 +170769267958,214,0 +170769268006,214,0 +170769268055,213,0 +170769268103,213,0 +170769268151,213,0 +170769268199,213,0 +170769268247,213,0 +170769268294,213,0 +170769268342,214,0 +170769268392,213,0 +170769268439,214,0 +170769268487,214,0 +170769268535,214,0 +170769268583,214,0 +170769268630,214,0 +170769268678,215,0 +170769268726,214,0 +170769268774,215,0 +170769268822,215,0 +170769268871,215,0 +170769268919,214,0 +170769268967,213,0 +170769269014,213,0 +170769269062,213,0 +170769269110,213,0 +170769269159,213,0 +170769269207,213,0 +170769269255,213,0 +170769269303,213,0 +170769269351,214,0 +170769269399,214,0 +170769269446,214,0 +170769269494,214,0 +170769269542,214,0 +170769269590,214,0 +170769269638,214,0 +170769269687,215,0 +170769269735,214,0 +170769269785,215,0 +170769269833,214,0 +170769269881,213,0 +170769269930,213,0 +170769269978,213,0 +170769270028,213,0 +170769270076,213,0 +170769270125,213,0 +170769270173,213,0 +170769270221,213,0 +170769270271,214,0 +170769270320,214,0 +170769270368,214,0 +170769270417,214,0 +170769270465,214,0 +170769270515,215,0 +170769270564,214,0 +170769270612,214,0 +170769270660,214,0 +170769270710,214,0 +170769270759,213,0 +170769270807,213,0 +170769270857,213,0 +170769270905,213,0 +170769270953,213,0 +170769271001,214,0 +170769271050,214,0 +170769271098,214,0 +170769271146,214,0 +170769271194,214,0 +170769271242,214,0 +170769271290,214,0 +170769271339,214,0 +170769271389,215,0 +170769271437,215,0 +170769271486,215,0 +170769271535,215,0 +170769271583,214,0 +170769271631,214,0 +170769271679,213,0 +170769271727,213,0 +170769271777,214,0 +170769271825,213,0 +170769271874,214,0 +170769271922,214,0 +170769271970,214,0 +170769272018,214,0 +170769272067,214,0 +170769272115,214,0 +170769272164,215,0 +170769272212,215,0 +170769272260,215,0 +170769272308,215,0 +170769272356,215,0 +170769272403,215,0 +170769272453,215,0 +170769272501,214,0 +170769272549,213,0 +170769272597,213,0 +170769272644,214,0 +170769272692,214,0 +170769272742,214,0 +170769272790,214,0 +170769272839,214,0 +170769272887,214,0 +170769272937,214,0 +170769272985,214,0 +170769273032,214,0 +170769273080,215,0 +170769273128,214,0 +170769273176,214,0 +170769273224,215,0 +170769273272,215,0 +170769273320,215,0 +170769273369,215,0 +170769273417,215,0 +170769273467,213,0 +170769273516,213,0 +170769273564,213,0 +170769273612,214,0 +170769273660,214,0 +170769273708,214,0 +170769273756,214,0 +170769273804,214,0 +170769273852,214,0 +170769273902,214,0 +170769273950,214,0 +170769273999,215,0 +170769274048,215,0 +170769274096,215,0 +170769274144,215,0 +170769274192,215,0 +170769274240,215,0 +170769274290,215,0 +170769274337,214,0 +170769274385,213,0 +170769274433,213,0 +170769274481,213,0 +170769274529,214,0 +170769274577,214,0 +170769274627,214,0 +170769274676,214,0 +170769274724,214,0 +170769274774,215,0 +170769274821,214,0 +170769274871,214,0 +170769274919,214,0 +170769274967,215,0 +170769275015,215,0 +170769275064,215,0 +170769275114,215,0 +170769275163,215,0 +170769275211,214,0 +170769275261,213,0 +170769275310,213,0 +170769275358,213,0 +170769275406,213,0 +170769275454,213,0 +170769275503,213,0 +170769275551,213,0 +170769275599,214,0 +170769275647,214,0 +170769275694,214,0 +170769275742,214,0 +170769275790,214,0 +170769275838,214,0 +170769275888,214,0 +170769275935,214,0 +170769275983,214,0 +170769276033,214,0 +170769276081,214,0 +170769276130,214,0 +170769276180,213,0 +170769276228,213,0 +170769276277,213,0 +170769276325,213,0 +170769276373,213,0 +170769276423,213,0 +170769276470,213,0 +170769276520,213,0 +170769276568,214,0 +170769276616,214,0 +170769276665,214,0 +170769276715,214,0 +170769276763,214,0 +170769276812,214,0 +170769276860,214,0 +170769276910,215,0 +170769276958,215,0 +170769277005,215,0 +170769277053,213,0 +170769277101,213,0 +170769277149,213,0 +170769277197,213,0 +170769277245,213,0 +170769277295,213,0 +170769277344,213,0 +170769277392,213,0 +170769277442,213,0 +170769277490,214,0 +170769277538,214,0 +170769277586,214,0 +170769277633,214,0 +170769277681,214,0 +170769277731,214,0 +170769277780,214,0 +170769277828,214,0 +170769277878,214,0 +170769277926,214,0 +170769277974,213,0 +170769278021,213,0 +170769278069,213,0 +170769278117,213,0 +170769278167,213,0 +170769278215,213,0 +170769278263,214,0 +170769278311,214,0 +170769278359,214,0 +170769278408,214,0 +170769278456,214,0 +170769278504,214,0 +170769278554,214,0 +170769278603,215,0 +170769278651,215,0 +170769278699,214,0 +170769278747,215,0 +170769278797,214,0 +170769278845,214,0 +170769278893,213,0 +170769278941,213,0 +170769278990,214,0 +170769279038,214,0 +170769279086,214,0 +170769279134,214,0 +170769279184,214,0 +170769279233,214,0 +170769279281,214,0 +170769279330,214,0 +170769279378,215,0 +170769279426,215,0 +170769279476,215,0 +170769279524,215,0 +170769279571,215,0 +170769279619,215,0 +170769279667,215,0 +170769279715,214,0 +170769279763,213,0 +170769279811,214,0 +170769279859,213,0 +170769279907,213,0 +170769279954,214,0 +170769280002,214,0 +170769280050,214,0 +170769280098,214,0 +170769280146,214,0 +170769280193,214,0 +170769280241,215,0 +170769280289,215,0 +170769280337,215,0 +170769280385,215,0 +170769280434,215,0 +170769280482,215,0 +170769280530,214,0 +170769280578,215,0 +170769280626,214,0 +170769280676,213,0 +170769280725,213,0 +170769280775,213,0 +170769280823,213,0 +170769280872,213,0 +170769280920,213,0 +170769280968,214,0 +170769281016,214,0 +170769281064,214,0 +170769281114,214,0 +170769281163,214,0 +170769281211,214,0 +170769281259,214,0 +170769281308,214,0 +170769281356,214,0 +170769281404,217,0 +170769281452,215,0 +170769281500,214,0 +170769281550,213,0 +170769281599,213,0 +170769281649,213,0 +170769281697,213,0 +170769281745,213,0 +170769281794,213,0 +170769281842,213,0 +170769281892,214,0 +170769281940,214,0 +170769281987,214,0 +170769282035,214,0 +170769282085,214,0 +170769282134,214,0 +170769282182,214,0 +170769282232,214,0 +170769282280,214,0 +170769282328,215,0 +170769282376,214,0 +170769282425,214,0 +170769282473,213,0 +170769282523,213,0 +170769282571,213,0 +170769282620,213,0 +170769282670,213,0 +170769282719,214,0 +170769282767,213,0 +170769282815,214,0 +170769282863,214,0 +170769282911,214,0 +170769282959,214,0 +170769283007,214,0 +170769283056,214,0 +170769283104,214,0 +170769283152,214,0 +170769283202,215,0 +170769283251,215,0 +170769283299,215,0 +170769283349,213,0 +170769283397,213,0 +170769283445,213,0 +170769283493,213,0 +170769283541,214,0 +170769283590,214,0 +170769283640,214,0 +170769283688,214,0 +170769283736,214,0 +170769283785,214,0 +170769283833,214,0 +170769283881,214,0 +170769283929,215,0 +170769283979,214,0 +170769284028,215,0 +170769284076,215,0 +170769284125,215,0 +170769284173,214,0 +170769284221,214,0 +170769284269,213,0 +170769284319,213,0 +170769284367,213,0 +170769284415,213,0 +170769284464,214,0 +170769284514,214,0 +170769284562,214,0 +170769284610,214,0 +170769284659,215,0 +170769284707,214,0 +170769284756,215,0 +170769284804,215,0 +170769284852,215,0 +170769284902,215,0 +170769284950,215,0 +170769284998,215,0 +170769285046,214,0 +170769285094,214,0 +170769285143,214,0 +170769285191,213,0 +170769285239,213,0 +170769285289,214,0 +170769285337,214,0 +170769285386,213,0 +170769285434,214,0 +170769285482,214,0 +170769285530,214,0 +170769285578,214,0 +170769285626,215,0 +170769285674,214,0 +170769285722,215,0 +170769285770,215,0 +170769285817,215,0 +170769285865,215,0 +170769285915,215,0 +170769285964,215,0 +170769286012,215,0 +170769286060,213,0 +170769286110,213,0 +170769286159,213,0 +170769286207,214,0 +170769286255,214,0 +170769286305,214,0 +170769286353,214,0 +170769286400,214,0 +170769286448,214,0 +170769286496,215,0 +170769286544,215,0 +170769286592,215,0 +170769286640,215,0 +170769286688,215,0 +170769286737,215,0 +170769286785,215,0 +170769286833,215,0 +170769286881,214,0 +170769286929,213,0 +170769286978,213,0 +170769287026,213,0 +170769287074,214,0 +170769287122,214,0 +170769287172,214,0 +170769287221,214,0 +170769287271,214,0 +170769287319,214,0 +170769287366,214,0 +170769287416,214,0 +170769287464,214,0 +170769287512,215,0 +170769287560,215,0 +170769287609,215,0 +170769287659,215,0 +170769287707,215,0 +170769287755,215,0 +170769287803,215,0 +170769287851,214,0 +170769287898,213,0 +170769287946,213,0 +170769287994,214,0 +170769288042,214,0 +170769288092,214,0 +170769288140,214,0 +170769288187,214,0 +170769288235,214,0 +170769288283,215,0 +170769288331,215,0 +170769288379,215,0 +170769288427,215,0 +170769288475,215,0 +170769288523,215,0 +170769288572,215,0 +170769288620,215,0 +170769288670,215,0 +170769288718,214,0 +170769288766,213,0 +170769288814,213,0 +170769288863,213,0 +170769288913,214,0 +170769288960,214,0 +170769289008,214,0 +170769289058,214,0 +170769289106,214,0 +170769289154,214,0 +170769289202,215,0 +170769289250,215,0 +170769289298,215,0 +170769289346,215,0 +170769289395,215,0 +170769289445,215,0 +170769289492,215,0 +170769289540,215,0 +170769289590,214,0 +170769289639,213,0 +170769289687,213,0 +170769289735,213,0 +170769289785,213,0 +170769289833,213,0 +170769289882,214,0 +170769289930,214,0 +170769289980,214,0 +170769290028,214,0 +170769290077,215,0 +170769290125,215,0 +170769290173,214,0 +170769290221,215,0 +170769290269,215,0 +170769290316,215,0 +170769290364,215,0 +170769290412,215,0 +170769290462,215,0 +170769290510,214,0 +170769290559,213,0 +170769290607,213,0 +170769290657,213,0 +170769290705,213,0 +170769290753,213,0 +170769290800,213,0 +170769290850,214,0 +170769290900,214,0 +170769290948,214,0 +170769290997,214,0 +170769291045,214,0 +170769291093,215,0 +170769291142,215,0 +170769291190,215,0 +170769291238,215,0 +170769291288,215,0 +170769291337,214,0 +170769291385,215,0 +170769291433,213,0 +170769291481,213,0 +170769291531,213,0 +170769291579,213,0 +170769291626,213,0 +170769291676,213,0 +170769291726,214,0 +170769291774,214,0 +170769291822,214,0 +170769291870,214,0 +170769291918,214,0 +170769291966,214,0 +170769292013,214,0 +170769292061,214,0 +170769292109,215,0 +170769292158,214,0 +170769292206,215,0 +170769292254,214,0 +170769292304,214,0 +170769292352,213,0 +170769292399,213,0 +170769292447,213,0 +170769292495,213,0 +170769292543,213,0 +170769292591,213,0 +170769292640,213,0 +170769292690,213,0 +170769292738,214,0 +170769292787,214,0 +170769292835,214,0 +170769292883,214,0 +170769292933,214,0 +170769292981,214,0 +170769293030,214,0 +170769293080,214,0 +170769293129,214,0 +170769293177,214,0 +170769293225,213,0 +170769293273,213,0 +170769293321,213,0 +170769293371,213,0 +170769293418,213,0 +170769293466,213,0 +170769293516,213,0 +170769293565,213,0 +170769293613,213,0 +170769293661,213,0 +170769293711,213,0 +170769293759,213,0 +170769293808,213,0 +170769293858,214,0 +170769293907,214,0 +170769293955,214,0 +170769294003,214,0 +170769294051,214,0 +170769294101,214,0 +170769294150,213,0 +170769294200,213,0 +170769294249,213,0 +170769294298,213,0 +170769294346,213,0 +170769294394,213,0 +170769294442,213,0 +170769294492,213,0 +170769294540,213,0 +170769294588,214,0 +170769294636,214,0 +170769294684,214,0 +170769294733,214,0 +170769294781,214,0 +170769294829,214,0 +170769294877,214,0 +170769294925,214,0 +170769294973,214,0 +170769295022,214,0 +170769295070,213,0 +170769295118,213,0 +170769295166,213,0 +170769295214,213,0 +170769295263,213,0 +170769295311,213,0 +170769295359,213,0 +170769295407,213,0 +170769295455,213,0 +170769295503,213,0 +170769295552,214,0 +170769295600,214,0 +170769295650,214,0 +170769295698,214,0 +170769295746,214,0 +170769295795,215,0 +170769295843,215,0 +170769295893,215,0 +170769295940,213,0 +170769295990,213,0 +170769296038,213,0 +170769296086,213,0 +170769296134,213,0 +170769296183,213,0 +170769296231,214,0 +170769296279,214,0 +170769296329,214,0 +170769296377,214,0 +170769296426,214,0 +170769296474,214,0 +170769296524,214,0 +170769296572,215,0 +170769296620,215,0 +170769296667,215,0 +170769296715,215,0 +170769296765,214,0 +170769296814,213,0 +170769296864,213,0 +170769296913,213,0 +170769296961,213,0 +170769297009,213,0 +170769297057,213,0 +170769297105,213,0 +170769297153,214,0 +170769297201,214,0 +170769297249,214,0 +170769297297,214,0 +170769297344,214,0 +170769297392,215,0 +170769297440,214,0 +170769297489,214,0 +170769297537,214,0 +170769297585,214,0 +170769297633,214,0 +170769297681,214,0 +170769297729,213,0 +170769297777,213,0 +170769297824,213,0 +170769297872,213,0 +170769297922,213,0 +170769297970,213,0 +170769298018,214,0 +170769298066,214,0 +170769298114,214,0 +170769298163,214,0 +170769298211,214,0 +170769298259,214,0 +170769298309,214,0 +170769298356,214,0 +170769298404,214,0 +170769298452,214,0 +170769298500,214,0 +170769298548,214,0 +170769298596,214,0 +170769298644,213,0 +170769298693,213,0 +170769298741,213,0 +170769298789,213,0 +170769298837,213,0 +170769298885,213,0 +170769298933,214,0 +170769298983,213,0 +170769299031,214,0 +170769299078,214,0 +170769299126,214,0 +170769299174,214,0 +170769299224,214,0 +170769299272,214,0 +170769299319,214,0 +170769299367,215,0 +170769299415,215,0 +170769299465,214,0 +170769299513,213,0 +170769299560,213,0 +170769299608,213,0 +170769299656,213,0 +170769299705,213,0 +170769299755,214,0 +170769299803,213,0 +170769299851,214,0 +170769299898,214,0 +170769299946,214,0 +170769299994,214,0 +170769300042,214,0 +170769300090,214,0 +170769300138,214,0 +170769300187,215,0 +170769300235,215,0 +170769300283,214,0 +170769300331,215,0 +170769300378,214,0 +170769300426,213,0 +170769300474,213,0 +170769300522,213,0 +170769300570,213,0 +170769300618,214,0 +170769300665,214,0 +170769300713,214,0 +170769300763,214,0 +170769300811,214,0 +170769300859,214,0 +170769300906,214,0 +170769300954,215,0 +170769301002,214,0 +170769301052,215,0 +170769301099,215,0 +170769301147,215,0 +170769301195,214,0 +170769301243,215,0 +170769301293,214,0 +170769301341,214,0 +170769301389,216,0 +170769301436,214,0 +170769301484,215,0 +170769301532,215,0 +170769301582,214,0 +170769301631,215,0 +170769301679,214,0 +170769301727,214,0 +170769301776,215,0 +170769301826,215,0 +170769301874,215,0 +170769301922,215,0 +170769301971,215,0 +170769302021,215,0 +170769302068,215,0 +170769302116,215,0 +170769302164,214,0 +170769302214,214,0 +170769302262,214,0 +170769302310,214,0 +170769302359,214,0 +170769302407,214,0 +170769302455,214,0 +170769302503,215,0 +170769302551,215,0 +170769302599,215,0 +170769302647,215,0 +170769302695,215,0 +170769302743,215,0 +170769302791,215,0 +170769302839,215,0 +170769302886,215,0 +170769302934,215,0 +170769302982,215,0 +170769303030,214,0 +170769303078,214,0 +170769303126,214,0 +170769303174,214,0 +170769303222,214,0 +170769303269,214,0 +170769303317,214,0 +170769303367,214,0 +170769303416,214,0 +170769303466,214,0 +170769303514,214,0 +170769303562,215,0 +170769303611,215,0 +170769303659,215,0 +170769303709,215,0 +170769303757,215,0 +170769303805,215,0 +170769303854,215,0 +170769303902,215,0 +170769303952,214,0 +170769304000,214,0 +170769304047,213,0 +170769304095,213,0 +170769304145,213,0 +170769304193,213,0 +170769304242,213,0 +170769304290,214,0 +170769304338,214,0 +170769304386,214,0 +170769304434,214,0 +170769304482,214,0 +170769304530,214,0 +170769304578,214,0 +170769304626,214,0 +170769304675,214,0 +170769304725,215,0 +170769304773,214,0 +170769304821,214,0 +170769304869,214,0 +170769304918,213,0 +170769304966,213,0 +170769305015,213,0 +170769305063,213,0 +170769305113,213,0 +170769305161,213,0 +170769305210,213,0 +170769305258,214,0 +170769305308,214,0 +170769305356,214,0 +170769305405,214,0 +170769305455,214,0 +170769305503,214,0 +170769305551,215,0 +170769305599,215,0 +170769305647,215,0 +170769305695,215,0 +170769305743,214,0 +170769305791,214,0 +170769305840,213,0 +170769305888,213,0 +170769305936,213,0 +170769305984,213,0 +170769306033,214,0 +170769306081,214,0 +170769306129,214,0 +170769306177,214,0 +170769306225,214,0 +170769306273,214,0 +170769306321,214,0 +170769306370,214,0 +170769306418,214,0 +170769306466,215,0 +170769306516,214,0 +170769306565,215,0 +170769306615,215,0 +170769306664,214,0 +170769306712,213,0 +170769306760,213,0 +170769306808,213,0 +170769306856,213,0 +170769306904,213,0 +170769306954,213,0 +170769307003,213,0 +170769307053,213,0 +170769307101,213,0 +170769307150,214,0 +170769307200,214,0 +170769307249,214,0 +170769307297,214,0 +170769307347,214,0 +170769307396,214,0 +170769307444,215,0 +170769307492,214,0 +170769307540,214,0 +170769307588,214,0 +170769307636,213,0 +170769307686,213,0 +170769307734,213,0 +170769307782,213,0 +170769307831,213,0 +170769307881,213,0 +170769307930,213,0 +170769307978,213,0 +170769308026,213,0 +170769308076,213,0 +170769308125,213,0 +170769308175,214,0 +170769308223,214,0 +170769308270,214,0 +170769308320,214,0 +170769308368,214,0 +170769308416,214,0 +170769308466,214,0 +170769308515,213,0 +170769308563,213,0 +170769308613,213,0 +170769308661,213,0 +170769308709,213,0 +170769308756,213,0 +170769308804,214,0 +170769308852,214,0 +170769308902,214,0 +170769308949,214,0 +170769308997,214,0 +170769309045,214,0 +170769309093,214,0 +170769309141,214,0 +170769309188,214,0 +170769309238,214,0 +170769309286,214,0 +170769309334,214,0 +170769309381,213,0 +170769309429,213,0 +170769309477,213,0 +170769309525,213,0 +170769309573,213,0 +170769309621,213,0 +170769309669,213,0 +170769309717,213,0 +170769309765,213,0 +170769309814,213,0 +170769309863,213,0 +170769309911,214,0 +170769309959,214,0 +170769310007,214,0 +170769310055,214,0 +170769310104,214,0 +170769310152,214,0 +170769310200,214,0 +170769310248,214,0 +170769310296,213,0 +170769310344,213,0 +170769310392,213,0 +170769310440,213,0 +170769310488,213,0 +170769310536,213,0 +170769310583,213,0 +170769310631,213,0 +170769310681,213,0 +170769310729,213,0 +170769310778,213,0 +170769310826,213,0 +170769310874,214,0 +170769310922,214,0 +170769310970,214,0 +170769311018,214,0 +170769311067,214,0 +170769311115,214,0 +170769311165,214,0 +170769311213,213,0 +170769311262,213,0 +170769311310,213,0 +170769311358,213,0 +170769311406,213,0 +170769311456,213,0 +170769311504,213,0 +170769311551,213,0 +170769311599,214,0 +170769311647,214,0 +170769311695,214,0 +170769311743,214,0 +170769311791,214,0 +170769311841,214,0 +170769311890,214,0 +170769311938,214,0 +170769311986,214,0 +170769312034,214,0 +170769312082,214,0 +170769312131,213,0 +170769312179,213,0 +170769312229,213,0 +170769312277,213,0 +170769312325,213,0 +170769312374,213,0 +170769312424,213,0 +170769312472,214,0 +170769312521,213,0 +170769312571,214,0 +170769312619,214,0 +170769312667,214,0 +170769312716,214,0 +170769312766,214,0 +170769312814,214,0 +170769312863,214,0 +170769312911,214,0 +170769312959,214,0 +170769313007,213,0 +170769313055,213,0 +170769313103,213,0 +170769313151,213,0 +170769313200,213,0 +170769313248,213,0 +170769313296,213,0 +170769313344,213,0 +170769313394,214,0 +170769313442,214,0 +170769313491,214,0 +170769313539,214,0 +170769313587,214,0 +170769313635,214,0 +170769313685,214,0 +170769313732,214,0 +170769313781,214,0 +170769313828,215,0 +170769313877,214,0 +170769313924,213,0 +170769313972,213,0 +170769314020,213,0 +170769314068,213,0 +170769314116,213,0 +170769314164,213,0 +170769314212,214,0 +170769314262,214,0 +170769314311,214,0 +170769314359,214,0 +170769314409,214,0 +170769314458,214,0 +170769314506,215,0 +170769314554,214,0 +170769314603,215,0 +170769314651,215,0 +170769314699,214,0 +170769314748,214,0 +170769314796,213,0 +170769314844,213,0 +170769314892,213,0 +170769314940,213,0 +170769314988,214,0 +170769315037,214,0 +170769315085,214,0 +170769315135,214,0 +170769315184,214,0 +170769315232,214,0 +170769315282,214,0 +170769315331,214,0 +170769315379,214,0 +170769315428,214,0 +170769315476,214,0 +170769315526,214,0 +170769315574,215,0 +170769315621,214,0 +170769315669,214,0 +170769315719,213,0 +170769315767,213,0 +170769315815,213,0 +170769315863,213,0 +170769315911,213,0 +170769315959,213,0 +170769316006,214,0 +170769316054,214,0 +170769316102,214,0 +170769316152,214,0 +170769316201,214,0 +170769316249,214,0 +170769316299,214,0 +170769316348,214,0 +170769316396,215,0 +170769316444,215,0 +170769316492,214,0 +170769316540,214,0 +170769316589,213,0 +170769316637,213,0 +170769316687,213,0 +170769316735,213,0 +170769316783,213,0 +170769316830,213,0 +170769316880,214,0 +170769316929,213,0 +170769316979,214,0 +170769317027,214,0 +170769317075,214,0 +170769317123,214,0 +170769317171,214,0 +170769317219,214,0 +170769317267,214,0 +170769317315,214,0 +170769317362,215,0 +170769317412,215,0 +170769317460,215,0 +170769317508,213,0 +170769317556,213,0 +170769317604,213,0 +170769317652,213,0 +170769317700,213,0 +170769317749,214,0 +170769317799,214,0 +170769317846,214,0 +170769317896,214,0 +170769317944,214,0 +170769317993,214,0 +170769318041,214,0 +170769318091,214,0 +170769318138,214,0 +170769318186,215,0 +170769318234,215,0 +170769318282,215,0 +170769318332,214,0 +170769318380,214,0 +170769318427,213,0 +170769318475,213,0 +170769318523,213,0 +170769318573,213,0 +170769318620,213,0 +170769318668,213,0 +170769318716,214,0 +170769318764,214,0 +170769318812,214,0 +170769318859,214,0 +170769318907,214,0 +170769318955,214,0 +170769319003,214,0 +170769319051,215,0 +170769319098,215,0 +170769319146,214,0 +170769319194,214,0 +170769319242,214,0 +170769319290,213,0 +170769319338,213,0 +170769319385,213,0 +170769319433,213,0 +170769319483,213,0 +170769319531,213,0 +170769319579,213,0 +170769319627,213,0 +170769319676,213,0 +170769319724,213,0 +170769319773,213,0 +170769319821,214,0 +170769319869,214,0 +170769319917,214,0 +170769319966,214,0 +170769320014,214,0 +170769320062,215,0 +170769320110,214,0 +170769320158,215,0 +170769320206,215,0 +170769320253,215,0 +170769320303,215,0 +170769320351,215,0 +170769320399,215,0 +170769320446,214,0 +170769320496,214,0 +170769320545,214,0 +170769320595,214,0 +170769320643,213,0 +170769320692,213,0 +170769320742,213,0 +170769320791,213,0 +170769320841,213,0 +170769320889,213,0 +170769320938,213,0 +170769320986,213,0 +170769321034,213,0 +170769321082,214,0 +170769321130,214,0 +170769321178,214,0 +170769321227,214,0 +170769321277,214,0 +170769321326,214,0 +170769321374,214,0 +170769321422,214,0 +170769321469,214,0 +170769321517,214,0 +170769321567,213,0 +170769321615,213,0 +170769321664,213,0 +170769321712,213,0 +170769321760,213,0 +170769321808,214,0 +170769321857,213,0 +170769321907,213,0 +170769321955,213,0 +170769322004,214,0 +170769322052,214,0 +170769322100,214,0 +170769322148,214,0 +170769322197,215,0 +170769322245,214,0 +170769322293,214,0 +170769322341,214,0 +170769322389,214,0 +170769322436,213,0 +170769322484,213,0 +170769322532,213,0 +170769322580,213,0 +170769322628,213,0 +170769322676,213,0 +170769322724,213,0 +170769322772,213,0 +170769322819,214,0 +170769322867,214,0 +170769322915,214,0 +170769322963,214,0 +170769323013,214,0 +170769323061,214,0 +170769323108,214,0 +170769323156,214,0 +170769323204,215,0 +170769323254,214,0 +170769323302,214,0 +170769323350,213,0 +170769323398,213,0 +170769323447,213,0 +170769323495,213,0 +170769323543,213,0 +170769323591,213,0 +170769323639,214,0 +170769323686,213,0 +170769323734,213,0 +170769323784,214,0 +170769323832,214,0 +170769323880,214,0 +170769323928,214,0 +170769323976,215,0 +170769324024,215,0 +170769324071,215,0 +170769324121,214,0 +170769324169,214,0 +170769324218,214,0 +170769324268,213,0 +170769324316,213,0 +170769324364,213,0 +170769324413,213,0 +170769324461,213,0 +170769324509,213,0 +170769324557,213,0 +170769324605,213,0 +170769324653,214,0 +170769324702,214,0 +170769324750,214,0 +170769324798,214,0 +170769324846,214,0 +170769324894,214,0 +170769324943,214,0 +170769324993,215,0 +170769325041,214,0 +170769325088,214,0 +170769325138,213,0 +170769325186,213,0 +170769325234,213,0 +170769325283,212,0 +170769325333,213,0 +170769325382,213,0 +170769325430,213,0 +170769325478,213,0 +170769325528,213,0 +170769325576,213,0 +170769325623,213,0 +170769325673,213,0 +170769325722,214,0 +170769325772,214,0 +170769325821,214,0 +170769325871,214,0 +170769325920,214,0 +170769325968,214,0 +170769326016,214,0 +170769326064,213,0 +170769326112,212,0 +170769326162,212,0 +170769326211,213,0 +170769326259,212,0 +170769326307,213,0 +170769326355,213,0 +170769326405,213,0 +170769326454,213,0 +170769326502,213,0 +170769326552,213,0 +170769326600,213,0 +170769326647,213,0 +170769326695,213,0 +170769326743,214,0 +170769326791,214,0 +170769326839,214,0 +170769326887,214,0 +170769326935,213,0 +170769326983,213,0 +170769327032,213,0 +170769327080,213,0 +170769327130,213,0 +170769327178,213,0 +170769327226,213,0 +170769327275,213,0 +170769327323,213,0 +170769327373,214,0 +170769327422,214,0 +170769327470,214,0 +170769327518,214,0 +170769327566,214,0 +170769327614,214,0 +170769327662,214,0 +170769327711,214,0 +170769327761,215,0 +170769327810,214,0 +170769327858,213,0 +170769327906,213,0 +170769327954,213,0 +170769328002,213,0 +170769328052,213,0 +170769328100,214,0 +170769328149,214,0 +170769328199,214,0 +170769328247,214,0 +170769328295,214,0 +170769328343,214,0 +170769328391,214,0 +170769328438,215,0 +170769328486,215,0 +170769328536,215,0 +170769328585,215,0 +170769328633,215,0 +170769328681,215,0 +170769328729,213,0 +170769328777,213,0 +170769328825,213,0 +170769328873,213,0 +170769328921,213,0 +170769328969,214,0 +170769329017,214,0 +170769329065,214,0 +170769329113,214,0 +170769329161,214,0 +170769329210,214,0 +170769329258,214,0 +170769329306,215,0 +170769329356,215,0 +170769329404,215,0 +170769329452,215,0 +170769329500,215,0 +170769329549,214,0 +170769329597,214,0 +170769329646,213,0 +170769329694,213,0 +170769329744,213,0 +170769329792,213,0 +170769329841,213,0 +170769329891,213,0 +170769329940,214,0 +170769329990,214,0 +170769330038,214,0 +170769330087,214,0 +170769330135,214,0 +170769330183,214,0 +170769330231,214,0 +170769330279,214,0 +170769330329,214,0 +170769330377,214,0 +170769330425,214,0 +170769330474,214,0 +170769330524,213,0 +170769330572,213,0 +170769330619,213,0 +170769330667,213,0 +170769330717,213,0 +170769330765,213,0 +170769330814,213,0 +170769330862,214,0 +170769330910,214,0 +170769330958,214,0 +170769331006,214,0 +170769331056,214,0 +170769331104,214,0 +170769331153,214,0 +170769331201,214,0 +170769331249,215,0 +170769331297,214,0 +170769331345,214,0 +170769331394,214,0 +170769331442,213,0 +170769331492,213,0 +170769331541,213,0 +170769331589,213,0 +170769331637,214,0 +170769331685,213,0 +170769331734,214,0 +170769331782,214,0 +170769331830,214,0 +170769331878,214,0 +170769331926,214,0 +170769331974,215,0 +170769332024,215,0 +170769332073,215,0 +170769332121,215,0 +170769332171,215,0 +170769332219,215,0 +170769332267,214,0 +170769332315,214,0 +170769332363,213,0 +170769332410,214,0 +170769332458,214,0 +170769332506,214,0 +170769332554,214,0 +170769332604,214,0 +170769332651,214,0 +170769332699,214,0 +170769332747,215,0 +170769332797,215,0 +170769332846,215,0 +170769332896,215,0 +170769332944,215,0 +170769332992,215,0 +170769333040,214,0 +170769333088,215,0 +170769333135,215,0 +170769333183,214,0 +170769333233,213,0 +170769333281,213,0 +170769333330,213,0 +170769333378,214,0 +170769333426,214,0 +170769333474,214,0 +170769333522,214,0 +170769333571,214,0 +170769333619,214,0 +170769333669,214,0 +170769333718,214,0 +170769333766,214,0 +170769333816,214,0 +170769333865,214,0 +170769333915,214,0 +170769333963,214,0 +170769334011,214,0 +170769334059,214,0 +170769334108,214,0 +170769334156,213,0 +170769334204,213,0 +170769334253,213,0 +170769334303,213,0 +170769334352,213,0 +170769334400,213,0 +170769334448,213,0 +170769334496,213,0 +170769334546,214,0 +170769334595,214,0 +170769334643,214,0 +170769334692,214,0 +170769334740,214,0 +170769334788,214,0 +170769334836,214,0 +170769334886,214,0 +170769334934,214,0 +170769334982,214,0 +170769335029,213,0 +170769335079,213,0 +170769335127,213,0 +170769335175,213,0 +170769335224,213,0 +170769335274,213,0 +170769335322,213,0 +170769335371,213,0 +170769335419,213,0 +170769335467,213,0 +170769335515,213,0 +170769335563,214,0 +170769335612,213,0 +170769335660,213,0 +170769335708,213,0 +170769335756,213,0 +170769335804,214,0 +170769335851,214,0 +170769335899,214,0 +170769335947,213,0 +170769335995,213,0 +170769336043,213,0 +170769336090,213,0 +170769336138,213,0 +170769336188,213,0 +170769336235,213,0 +170769336283,213,0 +170769336331,213,0 +170769336379,214,0 +170769336427,214,0 +170769336475,214,0 +170769336522,214,0 +170769336570,214,0 +170769336618,214,0 +170769336666,214,0 +170769336714,214,0 +170769336762,214,0 +170769336810,214,0 +170769336858,213,0 +170769336906,213,0 +170769336954,213,0 +170769337001,214,0 +170769337049,214,0 +170769337097,214,0 +170769337145,214,0 +170769337193,214,0 +170769337241,214,0 +170769337289,214,0 +170769337336,214,0 +170769337386,214,0 +170769337434,215,0 +170769337481,215,0 +170769337529,215,0 +170769337577,214,0 +170769337625,214,0 +170769337673,215,0 +170769337721,213,0 +170769337768,213,0 +170769337818,213,0 +170769337866,213,0 +170769337915,213,0 +170769337963,213,0 +170769338012,214,0 +170769338060,214,0 +170769338109,214,0 +170769338157,214,0 +170769338205,214,0 +170769338255,214,0 +170769338304,214,0 +170769338352,215,0 +170769338401,215,0 +170769338449,215,0 +170769338497,215,0 +170769338545,215,0 +170769338593,214,0 +170769338640,213,0 +170769338688,213,0 +170769338736,213,0 +170769338784,213,0 +170769338832,213,0 +170769338880,213,0 +170769338927,214,0 +170769338975,214,0 +170769339023,214,0 +170769339071,214,0 +170769339120,214,0 +170769339168,214,0 +170769339216,214,0 +170769339264,214,0 +170769339312,215,0 +170769339360,214,0 +170769339408,214,0 +170769339455,214,0 +170769339505,214,0 +170769339553,213,0 +170769339601,212,0 +170769339650,212,0 +170769339700,213,0 +170769339748,212,0 +170769339796,212,0 +170769339844,213,0 +170769339892,213,0 +170769339940,213,0 +170769339989,213,0 +170769340037,213,0 +170769340085,213,0 +170769340132,213,0 +170769340182,213,0 +170769340230,214,0 +170769340277,213,0 +170769340325,214,0 +170769340373,214,0 +170769340421,213,0 +170769340469,213,0 +170769340517,213,0 +170769340565,213,0 +170769340614,213,0 +170769340662,213,0 +170769340709,213,0 +170769340757,214,0 +170769340807,213,0 +170769340855,213,0 +170769340904,213,0 +170769340952,214,0 +170769341001,214,0 +170769341051,214,0 +170769341098,214,0 +170769341146,214,0 +170769341194,214,0 +170769341242,214,0 +170769341290,214,0 +170769341338,213,0 +170769341385,213,0 +170769341433,213,0 +170769341481,213,0 +170769341529,213,0 +170769341577,213,0 +170769341624,213,0 +170769341672,214,0 +170769341720,214,0 +170769341768,214,0 +170769341816,214,0 +170769341865,214,0 +170769341913,214,0 +170769341961,214,0 +170769342010,215,0 +170769342058,214,0 +170769342106,214,0 +170769342154,214,0 +170769342202,214,0 +170769342250,213,0 +170769342297,213,0 +170769342345,213,0 +170769342393,213,0 +170769342441,213,0 +170769342490,213,0 +170769342538,213,0 +170769342586,213,0 +170769342634,213,0 +170769342681,214,0 +170769342729,214,0 +170769342777,214,0 +170769342827,214,0 +170769342876,215,0 +170769342925,214,0 +170769342973,215,0 +170769343022,215,0 +170769343072,214,0 +170769343120,213,0 +170769343168,213,0 +170769343217,213,0 +170769343265,213,0 +170769343313,213,0 +170769343362,213,0 +170769343410,213,0 +170769343458,213,0 +170769343506,214,0 +170769343556,214,0 +170769343604,214,0 +170769343653,214,0 +170769343701,214,0 +170769343749,215,0 +170769343797,215,0 +170769343845,215,0 +170769343895,215,0 +170769343943,215,0 +170769343990,214,0 +170769344040,213,0 +170769344088,213,0 +170769344136,213,0 +170769344184,213,0 +170769344233,213,0 +170769344281,213,0 +170769344331,214,0 +170769344379,214,0 +170769344427,214,0 +170769344475,214,0 +170769344524,215,0 +170769344572,215,0 +170769344620,215,0 +170769344670,215,0 +170769344719,214,0 +170769344767,215,0 +170769344815,215,0 +170769344863,215,0 +170769344911,213,0 +170769344959,213,0 +170769345009,213,0 +170769345056,213,0 +170769345104,213,0 +170769345154,213,0 +170769345202,214,0 +170769345250,214,0 +170769345298,214,0 +170769345346,214,0 +170769345395,214,0 +170769345443,216,0 +170769345493,215,0 +170769345541,215,0 +170769345588,215,0 +170769345636,215,0 +170769345684,214,0 +170769345732,215,0 +170769345780,214,0 +170769345828,213,0 +170769345875,213,0 +170769345923,213,0 +170769345971,214,0 +170769346019,214,0 +170769346066,214,0 +170769346114,214,0 +170769346162,214,0 +170769346210,214,0 +170769346257,214,0 +170769346305,215,0 +170769346353,214,0 +170769346401,214,0 +170769346449,215,0 +170769346497,215,0 +170769346544,215,0 +170769346592,215,0 +170769346640,215,0 +170769346688,214,0 +170769346736,213,0 +170769346784,213,0 +170769346833,213,0 +170769346881,213,0 +170769346929,214,0 +170769346978,214,0 +170769347028,214,0 +170769347076,214,0 +170769347123,215,0 +170769347171,214,0 +170769347219,214,0 +170769347267,215,0 +170769347315,215,0 +170769347363,215,0 +170769347411,215,0 +170769347458,215,0 +170769347506,214,0 +170769347554,214,0 +170769347603,213,0 +170769347651,213,0 +170769347699,213,0 +170769347747,213,0 +170769347795,213,0 +170769347843,214,0 +170769347890,214,0 +170769347938,214,0 +170769347986,214,0 +170769348034,214,0 +170769348082,214,0 +170769348130,214,0 +170769348178,214,0 +170769348225,215,0 +170769348273,215,0 +170769348321,215,0 +170769348369,215,0 +170769348417,215,0 +170769348466,214,0 +170769348514,213,0 +170769348564,213,0 +170769348612,213,0 +170769348659,213,0 +170769348709,213,0 +170769348758,213,0 +170769348806,213,0 +170769348854,213,0 +170769348904,213,0 +170769348952,214,0 +170769349001,214,0 +170769349049,214,0 +170769349099,214,0 +170769349148,214,0 +170769349198,214,0 +170769349246,214,0 +170769349294,215,0 +170769349342,214,0 +170769349390,214,0 +170769349439,213,0 +170769349487,213,0 +170769349537,213,0 +170769349584,213,0 +170769349632,213,0 +170769349680,213,0 +170769349730,213,0 +170769349779,213,0 +170769349827,214,0 +170769349875,214,0 +170769349925,214,0 +170769349973,214,0 +170769350021,214,0 +170769350070,214,0 +170769350118,214,0 +170769350166,214,0 +170769350216,215,0 +170769350264,214,0 +170769350312,213,0 +170769350361,213,0 +170769350409,213,0 +170769350457,213,0 +170769350505,213,0 +170769350553,213,0 +170769350601,213,0 +170769350649,213,0 +170769350697,214,0 +170769350745,214,0 +170769350793,214,0 +170769350842,214,0 +170769350890,214,0 +170769350938,214,0 +170769350986,214,0 +170769351034,214,0 +170769351082,215,0 +170769351130,214,0 +170769351178,214,0 +170769351227,213,0 +170769351275,213,0 +170769351323,213,0 +170769351371,213,0 +170769351418,214,0 +170769351466,214,0 +170769351514,214,0 +170769351564,214,0 +170769351612,214,0 +170769351661,214,0 +170769351709,214,0 +170769351757,214,0 +170769351805,215,0 +170769351853,215,0 +170769351902,215,0 +170769351952,215,0 +170769352000,214,0 +170769352048,215,0 +170769352096,214,0 +170769352144,213,0 +170769352192,213,0 +170769352240,213,0 +170769352289,214,0 +170769352337,213,0 +170769352385,214,0 +170769352433,214,0 +170769352480,213,0 +170769352528,214,0 +170769352576,214,0 +170769352624,214,0 +170769352672,214,0 +170769352720,214,0 +170769352768,214,0 +170769352816,214,0 +170769352863,215,0 +170769352911,214,0 +170769352959,214,0 +170769353009,213,0 +170769353057,213,0 +170769353105,213,0 +170769353153,213,0 +170769353202,213,0 +170769353250,213,0 +170769353298,213,0 +170769353346,214,0 +170769353394,214,0 +170769353442,214,0 +170769353490,214,0 +170769353538,214,0 +170769353587,214,0 +170769353635,214,0 +170769353685,215,0 +170769353734,214,0 +170769353784,215,0 +170769353833,214,0 +170769353881,214,0 +170769353929,213,0 +170769353977,213,0 +170769354025,213,0 +170769354073,213,0 +170769354121,214,0 +170769354169,214,0 +170769354217,214,0 +170769354265,214,0 +170769354312,214,0 +170769354362,214,0 +170769354411,214,0 +170769354459,214,0 +170769354507,215,0 +170769354555,215,0 +170769354603,215,0 +170769354651,215,0 +170769354699,215,0 +170769354747,214,0 +170769354796,214,0 +170769354844,213,0 +170769354892,213,0 +170769354940,213,0 +170769354990,213,0 +170769355037,213,0 +170769355085,214,0 +170769355135,214,0 +170769355183,214,0 +170769355231,214,0 +170769355279,214,0 +170769355326,214,0 +170769355374,215,0 +170769355424,214,0 +170769355472,214,0 +170769355520,215,0 +170769355567,215,0 +170769355617,215,0 +170769355665,214,0 +170769355713,213,0 +170769355761,213,0 +170769355809,213,0 +170769355858,213,0 +170769355908,213,0 +170769355956,214,0 +170769356003,214,0 +170769356051,214,0 +170769356101,214,0 +170769356150,214,0 +170769356198,214,0 +170769356248,214,0 +170769356296,214,0 +170769356344,215,0 +170769356391,215,0 +170769356440,214,0 +170769356488,215,0 +170769356537,214,0 +170769356585,214,0 +170769356633,213,0 +170769356683,213,0 +170769356730,213,0 +170769356778,213,0 +170769356828,213,0 +170769356876,214,0 +170769356924,214,0 +170769356972,214,0 +170769357020,214,0 +170769357068,214,0 +170769357116,214,0 +170769357163,214,0 +170769357211,215,0 +170769357261,215,0 +170769357309,215,0 +170769357357,215,0 +170769357406,215,0 +170769357454,215,0 +170769357504,213,0 +170769357552,213,0 +170769357600,213,0 +170769357648,213,0 +170769357695,213,0 +170769357745,214,0 +170769357795,213,0 +170769357844,214,0 +170769357892,214,0 +170769357940,214,0 +170769357988,214,0 +170769358036,214,0 +170769358085,214,0 +170769358133,214,0 +170769358181,215,0 +170769358229,214,0 +170769358277,214,0 +170769358325,215,0 +170769358374,214,0 +170769358422,213,0 +170769358472,213,0 +170769358520,214,0 +170769358567,213,0 +170769358615,213,0 +170769358663,214,0 +170769358713,214,0 +170769358761,214,0 +170769358808,214,0 +170769358856,214,0 +170769358906,214,0 +170769358954,214,0 +170769359002,214,0 +170769359050,214,0 +170769359100,215,0 +170769359148,214,0 +170769359196,214,0 +170769359243,215,0 +170769359291,213,0 +170769359339,213,0 +170769359389,213,0 +170769359438,213,0 +170769359486,213,0 +170769359534,213,0 +170769359584,214,0 +170769359632,214,0 +170769359680,214,0 +170769359728,214,0 +170769359777,214,0 +170769359825,214,0 +170769359873,214,0 +170769359922,215,0 +170769359972,215,0 +170769360020,215,0 +170769360068,216,0 +170769360116,215,0 +170769360164,214,0 +170769360211,213,0 +170769360259,213,0 +170769360307,213,0 +170769360357,213,0 +170769360406,214,0 +170769360454,214,0 +170769360502,214,0 +170769360552,214,0 +170769360601,214,0 +170769360651,214,0 +170769360699,214,0 +170769360748,215,0 +170769360796,215,0 +170769360846,215,0 +170769360895,215,0 +170769360943,215,0 +170769360991,215,0 +170769361039,215,0 +170769361087,214,0 +170769361135,213,0 +170769361183,213,0 +170769361231,213,0 +170769361280,214,0 +170769361328,213,0 +170769361376,214,0 +170769361426,214,0 +170769361474,214,0 +170769361523,214,0 +170769361573,214,0 +170769361620,214,0 +170769361668,215,0 +170769361716,215,0 +170769361764,215,0 +170769361812,215,0 +170769361860,215,0 +170769361908,215,0 +170769361956,214,0 +170769362004,213,0 +170769362052,213,0 +170769362100,213,0 +170769362148,213,0 +170769362197,213,0 +170769362247,213,0 +170769362295,213,0 +170769362343,213,0 +170769362391,214,0 +170769362438,214,0 +170769362486,214,0 +170769362534,214,0 +170769362582,214,0 +170769362630,214,0 +170769362680,214,0 +170769362729,214,0 +170769362779,215,0 +170769362828,214,0 +170769362876,214,0 +170769362926,213,0 +170769362974,213,0 +170769363021,213,0 +170769363071,213,0 +170769363121,213,0 +170769363169,213,0 +170769363217,213,0 +170769363266,213,0 +170769363316,213,0 +170769363364,214,0 +170769363412,214,0 +170769363460,214,0 +170769363509,214,0 +170769363557,214,0 +170769363605,214,0 +170769363653,215,0 +170769363701,214,0 +170769363749,215,0 +170769363797,213,0 +170769363845,213,0 +170769363894,213,0 +170769363942,213,0 +170769363990,213,0 +170769364038,213,0 +170769364086,213,0 +170769364135,213,0 +170769364183,214,0 +170769364231,213,0 +170769364279,214,0 +170769364329,214,0 +170769364377,214,0 +170769364426,214,0 +170769364474,214,0 +170769364522,214,0 +170769364572,215,0 +170769364621,215,0 +170769364671,214,0 +170769364719,213,0 +170769364767,213,0 +170769364815,213,0 +170769364864,213,0 +170769364912,213,0 +170769364960,213,0 +170769365008,213,0 +170769365056,213,0 +170769365104,214,0 +170769365152,214,0 +170769365200,214,0 +170769365247,214,0 +170769365295,214,0 +170769365345,214,0 +170769365393,214,0 +170769365441,214,0 +170769365489,214,0 +170769365537,214,0 +170769365586,213,0 +170769365634,213,0 +170769365682,213,0 +170769365730,213,0 +170769365777,213,0 +170769365825,213,0 +170769365873,213,0 +170769365921,213,0 +170769365969,213,0 +170769366019,214,0 +170769366068,214,0 +170769366116,214,0 +170769366164,214,0 +170769366214,214,0 +170769366263,214,0 +170769366311,214,0 +170769366359,214,0 +170769366407,214,0 +170769366455,214,0 +170769366502,213,0 +170769366550,213,0 +170769366598,213,0 +170769366648,213,0 +170769366696,213,0 +170769366744,213,0 +170769366792,213,0 +170769366841,213,0 +170769366891,213,0 +170769366939,214,0 +170769366987,214,0 +170769367035,214,0 +170769367084,214,0 +170769367134,214,0 +170769367183,214,0 +170769367233,214,0 +170769367281,214,0 +170769367330,214,0 +170769367378,214,0 +170769367426,213,0 +170769367474,213,0 +170769367524,213,0 +170769367572,213,0 +170769367620,213,0 +170769367668,214,0 +170769367717,214,0 +170769367765,214,0 +170769367813,214,0 +170769367863,214,0 +170769367911,214,0 +170769367960,214,0 +170769368010,215,0 +170769368059,214,0 +170769368109,215,0 +170769368157,214,0 +170769368206,215,0 +170769368254,214,0 +170769368302,213,0 +170769368350,213,0 +170769368400,213,0 +170769368448,213,0 +170769368496,213,0 +170769368546,214,0 +170769368593,214,0 +170769368641,214,0 +170769368689,214,0 +170769368737,214,0 +170769368787,214,0 +170769368836,214,0 +170769368886,214,0 +170769368935,215,0 +170769368985,215,0 +170769369033,215,0 +170769369081,215,0 +170769369129,214,0 +170769369178,214,0 +170769369226,213,0 +170769369274,213,0 +170769369322,213,0 +170769369371,213,0 +170769369419,213,0 +170769369467,214,0 +170769369517,214,0 +170769369565,214,0 +170769369612,214,0 +170769369660,215,0 +170769369710,214,0 +170769369758,214,0 +170769369807,214,0 +170769369857,214,0 +170769369905,215,0 +170769369953,214,0 +170769370001,214,0 +170769370049,215,0 +170769370097,213,0 +170769370144,213,0 +170769370194,213,0 +170769370242,213,0 +170769370290,213,0 +170769370338,213,0 +170769370387,213,0 +170769370437,213,0 +170769370485,214,0 +170769370534,214,0 +170769370582,214,0 +170769370632,214,0 +170769370680,214,0 +170769370728,214,0 +170769370776,215,0 +170769370824,214,0 +170769370871,214,0 +170769370921,214,0 +170769370970,214,0 +170769371018,213,0 +170769371068,213,0 +170769371117,213,0 +170769371165,213,0 +170769371215,213,0 +170769371263,213,0 +170769371311,214,0 +170769371359,214,0 +170769371407,214,0 +170769371456,214,0 +170769371504,214,0 +170769371553,214,0 +170769371601,214,0 +170769371649,214,0 +170769371697,215,0 +170769371745,215,0 +170769371794,215,0 +170769371842,214,0 +170769371890,213,0 +170769371938,213,0 +170769371986,213,0 +170769372034,213,0 +170769372082,213,0 +170769372131,214,0 +170769372180,214,0 +170769372228,214,0 +170769372276,214,0 +170769372324,214,0 +170769372372,215,0 +170769372420,214,0 +170769372468,215,0 +170769372516,215,0 +170769372564,215,0 +170769372612,215,0 +170769372661,215,0 +170769372711,215,0 +170769372760,214,0 +170769372808,214,0 +170769372856,214,0 +170769372904,214,0 +170769372952,214,0 +170769373000,214,0 +170769373049,214,0 +170769373099,214,0 +170769373147,214,0 +170769373196,214,0 +170769373246,215,0 +170769373295,215,0 +170769373345,215,0 +170769373393,215,0 +170769373441,215,0 +170769373489,215,0 +170769373536,215,0 +170769373584,215,0 +170769373632,214,0 +170769373682,214,0 +170769373731,213,0 +170769373779,214,0 +170769373827,213,0 +170769373875,214,0 +170769373923,213,0 +170769373971,214,0 +170769374019,214,0 +170769374068,214,0 +170769374118,214,0 +170769374167,214,0 +170769374215,215,0 +170769374263,215,0 +170769374311,215,0 +170769374359,215,0 +170769374407,215,0 +170769374455,215,0 +170769374503,215,0 +170769374553,214,0 +170769374601,213,0 +170769374648,213,0 +170769374696,214,0 +170769374746,213,0 +170769374794,214,0 +170769374843,214,0 +170769374891,214,0 +170769374939,214,0 +170769374989,215,0 +170769375038,214,0 +170769375086,214,0 +170769375135,214,0 +170769375183,215,0 +170769375231,215,0 +170769375279,215,0 +170769375329,215,0 +170769375377,215,0 +170769375425,215,0 +170769375473,214,0 +170769375522,213,0 +170769375570,214,0 +170769375618,213,0 +170769375666,214,0 +170769375714,214,0 +170769375764,215,0 +170769375812,214,0 +170769375859,214,0 +170769375907,214,0 +170769375957,214,0 +170769376005,214,0 +170769376052,215,0 +170769376100,214,0 +170769376150,215,0 +170769376199,215,0 +170769376247,215,0 +170769376297,215,0 +170769376345,215,0 +170769376393,213,0 +170769376441,213,0 +170769376490,214,0 +170769376538,214,0 +170769376588,214,0 +170769376636,214,0 +170769376683,215,0 +170769376731,214,0 +170769376781,214,0 +170769376829,214,0 +170769376877,215,0 +170769376926,215,0 +170769376974,215,0 +170769377024,215,0 +170769377073,215,0 +170769377121,215,0 +170769377169,215,0 +170769377219,215,0 +170769377268,214,0 +170769377316,213,0 +170769377366,213,0 +170769377414,213,0 +170769377462,213,0 +170769377510,214,0 +170769377559,214,0 +170769377607,214,0 +170769377656,214,0 +170769377704,214,0 +170769377752,214,0 +170769377802,214,0 +170769377851,215,0 +170769377901,214,0 +170769377950,215,0 +170769377998,215,0 +170769378046,215,0 +170769378094,215,0 +170769378143,214,0 +170769378191,213,0 +170769378241,213,0 +170769378289,213,0 +170769378339,213,0 +170769378387,213,0 +170769378435,214,0 +170769378483,214,0 +170769378531,214,0 +170769378579,214,0 +170769378627,214,0 +170769378676,214,0 +170769378726,214,0 +170769378775,214,0 +170769378823,215,0 +170769378871,215,0 +170769378921,215,0 +170769378968,215,0 +170769379016,215,0 +170769379064,214,0 +170769379112,213,0 +170769379160,213,0 +170769379208,213,0 +170769379256,213,0 +170769379306,213,0 +170769379355,214,0 +170769379404,214,0 +170769379454,214,0 +170769379502,214,0 +170769379550,214,0 +170769379598,215,0 +170769379646,214,0 +170769379694,215,0 +170769379742,214,0 +170769379790,214,0 +170769379839,215,0 +170769379887,214,0 +170769379935,214,0 +170769379983,213,0 +170769380031,213,0 +170769380080,213,0 +170769380128,213,0 +170769380176,213,0 +170769380224,213,0 +170769380273,214,0 +170769380323,214,0 +170769380371,214,0 +170769380420,214,0 +170769380468,214,0 +170769380518,214,0 +170769380566,214,0 +170769380614,214,0 +170769380663,214,0 +170769380712,214,0 +170769380760,214,0 +170769380808,214,0 +170769380856,214,0 +170769380904,213,0 +170769380952,213,0 +170769381000,213,0 +170769381048,213,0 +170769381096,213,0 +170769381144,213,0 +170769381192,213,0 +170769381240,213,0 +170769381289,214,0 +170769381337,214,0 +170769381387,214,0 +170769381436,214,0 +170769381485,214,0 +170769381533,214,0 +170769381583,214,0 +170769381631,214,0 +170769381678,214,0 +170769381726,215,0 +170769381776,213,0 +170769381824,213,0 +170769381873,213,0 +170769381921,213,0 +170769381969,213,0 +170769382017,213,0 +170769382065,213,0 +170769382113,214,0 +170769382161,213,0 +170769382209,214,0 +170769382257,214,0 +170769382305,214,0 +170769382353,214,0 +170769382400,214,0 +170769382448,214,0 +170769382498,214,0 +170769382547,215,0 +170769382597,214,0 +170769382645,214,0 +170769382693,213,0 +170769382742,213,0 +170769382790,213,0 +170769382838,213,0 +170769382886,213,0 +170769382934,213,0 +170769382982,213,0 +170769383030,213,0 +170769383079,213,0 +170769383127,213,0 +170769383175,214,0 +170769383225,214,0 +170769383274,214,0 +170769383322,214,0 +170769383372,214,0 +170769383421,214,0 +170769383471,214,0 +170769383519,214,0 +170769383567,213,0 +170769383614,213,0 +170769383662,213,0 +170769383712,213,0 +170769383760,213,0 +170769383808,213,0 +170769383856,213,0 +170769383905,213,0 +170769383953,213,0 +170769384001,213,0 +170769384049,213,0 +170769384097,213,0 +170769384145,213,0 +170769384193,214,0 +170769384240,214,0 +170769384288,214,0 +170769384336,214,0 +170769384384,214,0 +170769384434,214,0 +170769384481,213,0 +170769384529,213,0 +170769384577,213,0 +170769384625,213,0 +170769384673,213,0 +170769384721,213,0 +170769384769,213,0 +170769384817,213,0 +170769384867,214,0 +170769384915,214,0 +170769384963,214,0 +170769385010,214,0 +170769385058,214,0 +170769385108,214,0 +170769385156,215,0 +170769385204,214,0 +170769385252,214,0 +170769385299,214,0 +170769385347,214,0 +170769385395,213,0 +170769385443,213,0 +170769385491,213,0 +170769385539,213,0 +170769385586,213,0 +170769385634,213,0 +170769385682,214,0 +170769385732,214,0 +170769385780,214,0 +170769385828,214,0 +170769385877,214,0 +170769385925,214,0 +170769385973,214,0 +170769386022,215,0 +170769386072,215,0 +170769386120,214,0 +170769386169,214,0 +170769386217,214,0 +170769386267,213,0 +170769386316,213,0 +170769386364,213,0 +170769386412,213,0 +170769386460,213,0 +170769386508,213,0 +170769386557,213,0 +170769386607,214,0 +170769386656,214,0 +170769386705,214,0 +170769386753,214,0 +170769386801,214,0 +170769386849,215,0 +170769386899,214,0 +170769386947,214,0 +170769386996,214,0 +170769387044,214,0 +170769387092,214,0 +170769387141,215,0 +170769387189,213,0 +170769387237,213,0 +170769387285,213,0 +170769387334,213,0 +170769387382,214,0 +170769387430,213,0 +170769387478,214,0 +170769387526,214,0 +170769387574,214,0 +170769387622,214,0 +170769387669,214,0 +170769387717,215,0 +170769387765,214,0 +170769387813,214,0 +170769387861,214,0 +170769387909,214,0 +170769387956,215,0 +170769388004,214,0 +170769388052,213,0 +170769388100,213,0 +170769388148,213,0 +170769388196,213,0 +170769388244,213,0 +170769388291,213,0 +170769388339,214,0 +170769388387,214,0 +170769388435,214,0 +170769388483,214,0 +170769388531,214,0 +170769388578,214,0 +170769388626,214,0 +170769388674,214,0 +170769388722,214,0 +170769388770,215,0 +170769388820,215,0 +170769388869,215,0 +170769388917,214,0 +170769388967,213,0 +170769389016,213,0 +170769389064,213,0 +170769389112,213,0 +170769389160,214,0 +170769389210,213,0 +170769389259,214,0 +170769389307,214,0 +170769389355,214,0 +170769389403,214,0 +170769389452,214,0 +170769389500,214,0 +170769389548,214,0 +170769389596,215,0 +170769389644,215,0 +170769389692,215,0 +170769389740,215,0 +170769389788,215,0 +170769389836,214,0 +170769389884,213,0 +170769389933,214,0 +170769389981,213,0 +170769390029,214,0 +170769390077,214,0 +170769390125,214,0 +170769390173,214,0 +170769390221,214,0 +170769390269,214,0 +170769390317,215,0 +170769390365,215,0 +170769390413,215,0 +170769390461,215,0 +170769390509,214,0 +170769390557,215,0 +170769390605,215,0 +170769390653,214,0 +170769390701,215,0 +170769390749,214,0 +170769390797,214,0 +170769390845,214,0 +170769390894,214,0 +170769390942,214,0 +170769390992,214,0 +170769391039,214,0 +170769391089,214,0 +170769391137,214,0 +170769391186,214,0 +170769391234,214,0 +170769391284,215,0 +170769391332,215,0 +170769391380,214,0 +170769391428,215,0 +170769391476,215,0 +170769391525,215,0 +170769391573,215,0 +170769391621,214,0 +170769391669,214,0 +170769391717,214,0 +170769391765,214,0 +170769391813,214,0 +170769391861,214,0 +170769391910,214,0 +170769391958,214,0 +170769392006,214,0 +170769392054,214,0 +170769392102,215,0 +170769392150,215,0 +170769392199,215,0 +170769392247,215,0 +170769392296,215,0 +170769392344,215,0 +170769392392,215,0 +170769392440,215,0 +170769392488,215,0 +170769392536,214,0 +170769392585,213,0 +170769392633,213,0 +170769392681,213,0 +170769392731,213,0 +170769392779,214,0 +170769392828,214,0 +170769392876,214,0 +170769392924,214,0 +170769392972,214,0 +170769393020,214,0 +170769393068,214,0 +170769393116,215,0 +170769393164,215,0 +170769393212,215,0 +170769393261,215,0 +170769393311,215,0 +170769393360,215,0 +170769393410,215,0 +170769393458,213,0 +170769393506,213,0 +170769393555,213,0 +170769393603,213,0 +170769393651,214,0 +170769393701,214,0 +170769393749,214,0 +170769393798,214,0 +170769393848,214,0 +170769393896,214,0 +170769393944,214,0 +170769393992,214,0 +170769394041,214,0 +170769394090,215,0 +170769394138,215,0 +170769394186,215,0 +170769394234,215,0 +170769394282,215,0 +170769394330,214,0 +170769394380,213,0 +170769394428,213,0 +170769394475,213,0 +170769394523,213,0 +170769394571,214,0 +170769394619,214,0 +170769394667,214,0 +170769394715,214,0 +170769394763,214,0 +170769394811,214,0 +170769394859,214,0 +170769394907,214,0 +170769394955,215,0 +170769395003,215,0 +170769395051,215,0 +170769395101,215,0 +170769395149,215,0 +170769395197,214,0 +170769395246,213,0 +170769395294,213,0 +170769395342,213,0 +170769395392,213,0 +170769395441,213,0 +170769395489,213,0 +170769395538,213,0 +170769395586,213,0 +170769395634,214,0 +170769395684,214,0 +170769395732,214,0 +170769395781,214,0 +170769395829,214,0 +170769395877,214,0 +170769395925,215,0 +170769395975,214,0 +170769396022,214,0 +170769396070,214,0 +170769396120,214,0 +170769396168,213,0 +170769396217,213,0 +170769396267,213,0 +170769396316,213,0 +170769396366,213,0 +170769396414,213,0 +170769396462,214,0 +170769396510,214,0 +170769396558,214,0 +170769396606,214,0 +170769396654,214,0 +170769396703,214,0 +170769396751,214,0 +170769396801,214,0 +170769396850,215,0 +170769396900,214,0 +170769396948,214,0 +170769396995,214,0 +170769397045,213,0 +170769397093,213,0 +170769397141,213,0 +170769397189,213,0 +170769397237,213,0 +170769397286,213,0 +170769397334,213,0 +170769397382,213,0 +170769397430,213,0 +170769397478,214,0 +170769397526,214,0 +170769397574,214,0 +170769397622,214,0 +170769397670,214,0 +170769397718,214,0 +170769397767,214,0 +170769397815,214,0 +170769397863,215,0 +170769397913,214,0 +170769397961,213,0 +170769398009,213,0 +170769398058,213,0 +170769398106,213,0 +170769398156,213,0 +170769398204,213,0 +170769398251,213,0 +170769398299,213,0 +170769398347,213,0 +170769398395,214,0 +170769398443,214,0 +170769398493,214,0 +170769398542,214,0 +170769398592,214,0 +170769398641,214,0 +170769398691,214,0 +170769398740,214,0 +170769398788,214,0 +170769398836,213,0 +170769398886,213,0 +170769398934,213,0 +170769398982,213,0 +170769399030,213,0 +170769399077,213,0 +170769399127,213,0 +170769399175,213,0 +170769399223,214,0 +170769399272,214,0 +170769399322,214,0 +170769399371,214,0 +170769399421,214,0 +170769399470,214,0 +170769399518,215,0 +170769399566,214,0 +170769399616,215,0 +170769399664,215,0 +170769399712,214,0 +170769399760,213,0 +170769399808,213,0 +170769399856,213,0 +170769399903,213,0 +170769399953,213,0 +170769400001,213,0 +170769400049,213,0 +170769400097,214,0 +170769400144,214,0 +170769400192,214,0 +170769400240,214,0 +170769400288,214,0 +170769400336,215,0 +170769400384,215,0 +170769400433,215,0 +170769400481,214,0 +170769400529,215,0 +170769400577,214,0 +170769400625,214,0 +170769400673,213,0 +170769400721,213,0 +170769400768,213,0 +170769400816,213,0 +170769400866,213,0 +170769400914,213,0 +170769400962,213,0 +170769401010,214,0 +170769401059,214,0 +170769401107,214,0 +170769401155,214,0 +170769401205,214,0 +170769401254,214,0 +170769401302,214,0 +170769401352,214,0 +170769401400,215,0 +170769401448,214,0 +170769401497,214,0 +170769401546,213,0 +170769401594,213,0 +170769401642,213,0 +170769401690,213,0 +170769401738,213,0 +170769401788,213,0 +170769401837,213,0 +170769401885,214,0 +170769401933,214,0 +170769401981,214,0 +170769402030,214,0 +170769402080,214,0 +170769402128,214,0 +170769402176,214,0 +170769402224,214,0 +170769402273,214,0 +170769402321,214,0 +170769402371,214,0 +170769402420,214,0 +170769402468,213,0 +170769402516,213,0 +170769402564,213,0 +170769402612,213,0 +170769402660,214,0 +170769402707,213,0 +170769402755,214,0 +170769402803,214,0 +170769402851,214,0 +170769402899,214,0 +170769402947,214,0 +170769402995,214,0 +170769403042,214,0 +170769403092,215,0 +170769403140,214,0 +170769403188,215,0 +170769403236,214,0 +170769403285,215,0 +170769403333,214,0 +170769403381,213,0 +170769403430,214,0 +170769403478,214,0 +170769403526,214,0 +170769403574,214,0 +170769403622,214,0 +170769403670,214,0 +170769403718,214,0 +170769403767,214,0 +170769403816,215,0 +170769403864,214,0 +170769403912,215,0 +170769403960,215,0 +170769404008,215,0 +170769404056,215,0 +170769404103,215,0 +170769404151,215,0 +170769404201,214,0 +170769404249,214,0 +170769404296,213,0 +170769404344,213,0 +170769404392,214,0 +170769404440,214,0 +170769404488,214,0 +170769404536,214,0 +170769404584,214,0 +170769404632,214,0 +170769404679,214,0 +170769404727,215,0 +170769404775,215,0 +170769404823,215,0 +170769404872,215,0 +170769404920,214,0 +170769404968,214,0 +170769405016,215,0 +170769405066,215,0 +170769405113,214,0 +170769405161,213,0 +170769405209,213,0 +170769405257,213,0 +170769405306,213,0 +170769405354,213,0 +170769405402,213,0 +170769405450,214,0 +170769405498,214,0 +170769405546,214,0 +170769405594,214,0 +170769405643,214,0 +170769405691,214,0 +170769405739,215,0 +170769405787,215,0 +170769405836,215,0 +170769405884,215,0 +170769405932,214,0 +170769405982,215,0 +170769406030,213,0 +170769406077,213,0 +170769406127,213,0 +170769406175,213,0 +170769406224,213,0 +170769406272,213,0 +170769406322,213,0 +170769406372,213,0 +170769406421,214,0 +170769406470,214,0 +170769406520,214,0 +170769406569,214,0 +170769406617,214,0 +170769406665,215,0 +170769406713,215,0 +170769406761,215,0 +170769406809,214,0 +170769406859,215,0 +170769406907,215,0 +170769406956,213,0 +170769407006,213,0 +170769407054,213,0 +170769407102,213,0 +170769407150,214,0 +170769407199,214,0 +170769407247,214,0 +170769407295,214,0 +170769407343,214,0 +170769407391,214,0 +170769407439,214,0 +170769407487,214,0 +170769407535,215,0 +170769407583,215,0 +170769407632,215,0 +170769407682,215,0 +170769407730,215,0 +170769407779,214,0 +170769407827,213,0 +170769407875,213,0 +170769407923,213,0 +170769407973,213,0 +170769408021,213,0 +170769408068,214,0 +170769408118,214,0 +170769408166,214,0 +170769408214,214,0 +170769408262,214,0 +170769408310,214,0 +170769408358,214,0 +170769408406,215,0 +170769408454,215,0 +170769408503,214,0 +170769408551,215,0 +170769408601,214,0 +170769408649,214,0 +170769408696,214,0 +170769408744,213,0 +170769408794,213,0 +170769408842,213,0 +170769408891,213,0 +170769408941,213,0 +170769408989,214,0 +170769409038,214,0 +170769409086,214,0 +170769409136,214,0 +170769409184,214,0 +170769409232,214,0 +170769409281,214,0 +170769409329,214,0 +170769409377,214,0 +170769409427,214,0 +170769409476,214,0 +170769409526,214,0 +170769409574,214,0 +170769409622,213,0 +170769409671,212,0 +170769409719,213,0 +170769409769,213,0 +170769409818,213,0 +170769409866,213,0 +170769409914,213,0 +170769409962,213,0 +170769410011,214,0 +170769410059,214,0 +170769410107,214,0 +170769410155,214,0 +170769410203,214,0 +170769410251,214,0 +170769410299,214,0 +170769410347,214,0 +170769410395,214,0 +170769410443,214,0 +170769410492,214,0 +170769410542,213,0 +170769410590,213,0 +170769410638,213,0 +170769410686,213,0 +170769410735,213,0 +170769410783,213,0 +170769410831,213,0 +170769410879,213,0 +170769410927,214,0 +170769410975,214,0 +170769411023,214,0 +170769411071,214,0 +170769411118,214,0 +170769411166,214,0 +170769411214,215,0 +170769411262,214,0 +170769411310,215,0 +170769411358,215,0 +170769411406,214,0 +170769411454,213,0 +170769411502,213,0 +170769411550,213,0 +170769411599,213,0 +170769411647,213,0 +170769411695,213,0 +170769411744,213,0 +170769411792,213,0 +170769411840,213,0 +170769411890,214,0 +170769411938,214,0 +170769411985,214,0 +170769412035,214,0 +170769412083,214,0 +170769412132,214,0 +170769412180,214,0 +170769412228,214,0 +170769412276,214,0 +170769412324,213,0 +170769412372,213,0 +170769412421,213,0 +170769412469,213,0 +170769412517,213,0 +170769412565,213,0 +170769412614,213,0 +170769412662,213,0 +170769412710,214,0 +170769412758,214,0 +170769412807,214,0 +170769412855,214,0 +170769412903,214,0 +170769412953,214,0 +170769413001,215,0 +170769413049,215,0 +170769413097,214,0 +170769413145,214,0 +170769413194,214,0 +170769413242,213,0 +170769413290,213,0 +170769413339,213,0 +170769413387,213,0 +170769413435,213,0 +170769413483,213,0 +170769413531,213,0 +170769413579,214,0 +170769413627,214,0 +170769413675,214,0 +170769413723,214,0 +170769413771,214,0 +170769413819,214,0 +170769413867,214,0 +170769413914,215,0 +170769413962,215,0 +170769414010,215,0 +170769414058,215,0 +170769414106,214,0 +170769414154,213,0 +170769414201,213,0 +170769414249,213,0 +170769414297,213,0 +170769414345,214,0 +170769414393,214,0 +170769414441,214,0 +170769414489,214,0 +170769414537,214,0 +170769414586,214,0 +170769414636,214,0 +170769414685,215,0 +170769414733,215,0 +170769414781,215,0 +170769414829,215,0 +170769414877,215,0 +170769414926,215,0 +170769414974,215,0 +170769415022,213,0 +170769415070,213,0 +170769415118,213,0 +170769415166,213,0 +170769415214,214,0 +170769415262,214,0 +170769415310,214,0 +170769415358,214,0 +170769415408,214,0 +170769415456,214,0 +170769415504,214,0 +170769415552,215,0 +170769415600,215,0 +170769415647,215,0 +170769415697,215,0 +170769415747,215,0 +170769415794,215,0 +170769415842,215,0 +170769415890,214,0 +170769415938,213,0 +170769415986,213,0 +170769416034,213,0 +170769416082,214,0 +170769416131,213,0 +170769416179,214,0 +170769416227,214,0 +170769416275,214,0 +170769416323,214,0 +170769416371,214,0 +170769416418,214,0 +170769416466,214,0 +170769416514,214,0 +170769416562,214,0 +170769416610,214,0 +170769416658,214,0 +170769416706,214,0 +170769416754,214,0 +170769416801,213,0 +170769416849,213,0 +170769416897,213,0 +170769416945,214,0 +170769416994,214,0 +170769417042,214,0 +170769417090,213,0 +170769417138,214,0 +170769417186,214,0 +170769417234,214,0 +170769417282,214,0 +170769417329,214,0 +170769417377,215,0 +170769417425,215,0 +170769417473,215,0 +170769417521,215,0 +170769417569,215,0 +170769417617,215,0 +170769417664,214,0 +170769417714,214,0 +170769417763,213,0 +170769417811,213,0 +170769417859,213,0 +170769417907,214,0 +170769417955,214,0 +170769418003,214,0 +170769418051,214,0 +170769418099,214,0 +170769418148,214,0 +170769418196,214,0 +170769418246,214,0 +170769418294,215,0 +170769418342,215,0 +170769418390,215,0 +170769418438,215,0 +170769418485,215,0 +170769418533,214,0 +170769418581,214,0 +170769418629,213,0 +170769418677,213,0 +170769418725,213,0 +170769418773,213,0 +170769418821,214,0 +170769418869,214,0 +170769418917,214,0 +170769418964,214,0 +170769419014,214,0 +170769419063,214,0 +170769419113,214,0 +170769419161,214,0 +170769419211,215,0 +170769419259,215,0 +170769419306,215,0 +170769419356,215,0 +170769419405,215,0 +170769419453,214,0 +170769419503,213,0 +170769419551,213,0 +170769419598,213,0 +170769419646,213,0 +170769419694,213,0 +170769419744,213,0 +170769419793,214,0 +170769419843,214,0 +170769419891,214,0 +170769419939,214,0 +170769419987,214,0 +170769420036,214,0 +170769420084,214,0 +170769420132,214,0 +170769420180,214,0 +170769420229,214,0 +170769420277,214,0 +170769420325,214,0 +170769420373,214,0 +170769420421,213,0 +170769420469,213,0 +170769420517,213,0 +170769420564,213,0 +170769420612,213,0 +170769420660,213,0 +170769420708,213,0 +170769420756,214,0 +170769420804,214,0 +170769420852,214,0 +170769420900,214,0 +170769420947,214,0 +170769420995,214,0 +170769421043,214,0 +170769421091,215,0 +170769421139,215,0 +170769421188,215,0 +170769421236,214,0 +170769421284,214,0 +170769421333,213,0 +170769421383,213,0 +170769421431,214,0 +170769421479,214,0 +170769421528,213,0 +170769421576,214,0 +170769421624,214,0 +170769421672,214,0 +170769421720,214,0 +170769421768,214,0 +170769421816,215,0 +170769421865,215,0 +170769421913,215,0 +170769421961,215,0 +170769422009,215,0 +170769422057,215,0 +170769422105,215,0 +170769422153,215,0 +170769422201,214,0 +170769422249,213,0 +170769422298,213,0 +170769422346,213,0 +170769422396,213,0 +170769422443,214,0 +170769422491,214,0 +170769422539,214,0 +170769422587,214,0 +170769422636,214,0 +170769422684,214,0 +170769422732,214,0 +170769422782,215,0 +170769422830,215,0 +170769422879,215,0 +170769422927,215,0 +170769422977,215,0 +170769423026,215,0 +170769423074,213,0 +170769423122,213,0 +170769423170,213,0 +170769423220,213,0 +170769423268,213,0 +170769423316,213,0 +170769423364,213,0 +170769423412,214,0 +170769423460,214,0 +170769423508,214,0 +170769423556,214,0 +170769423604,214,0 +170769423652,214,0 +170769423699,215,0 +170769423747,214,0 +170769423797,214,0 +170769423847,215,0 +170769423894,214,0 +170769423942,215,0 +170769423992,213,0 +170769424041,213,0 +170769424089,213,0 +170769424137,213,0 +170769424187,213,0 +170769424235,213,0 +170769424283,213,0 +170769424332,213,0 +170769424382,213,0 +170769424430,214,0 +170769424479,214,0 +170769424527,214,0 +170769424575,214,0 +170769424623,214,0 +170769424671,214,0 +170769424719,214,0 +170769424767,214,0 +170769424815,215,0 +170769424864,214,0 +170769424913,213,0 +170769424961,213,0 +170769425009,213,0 +170769425057,213,0 +170769425105,213,0 +170769425153,214,0 +170769425202,214,0 +170769425250,214,0 +170769425300,214,0 +170769425348,214,0 +170769425396,214,0 +170769425444,215,0 +170769425493,214,0 +170769425543,214,0 +170769425592,215,0 +170769425642,215,0 +170769425690,214,0 +170769425739,214,0 +170769425787,213,0 +170769425837,213,0 +170769425886,213,0 +170769425936,213,0 +170769425985,214,0 +170769426033,213,0 +170769426081,214,0 +170769426131,214,0 +170769426178,214,0 +170769426228,214,0 +170769426276,215,0 +170769426324,215,0 +170769426372,215,0 +170769426420,215,0 +170769426469,215,0 +170769426517,215,0 +170769426565,214,0 +170769426615,214,0 +170769426664,214,0 +170769426714,213,0 +170769426762,213,0 +170769426811,213,0 +170769426859,213,0 +170769426907,213,0 +170769426955,213,0 +170769427003,213,0 +170769427050,213,0 +170769427098,214,0 +170769427146,214,0 +170769427194,214,0 +170769427242,214,0 +170769427292,214,0 +170769427340,214,0 +170769427388,215,0 +170769427436,215,0 +170769427484,214,0 +170769427533,214,0 +170769427581,213,0 +170769427629,213,0 +170769427677,212,0 +170769427725,213,0 +170769427773,212,0 +170769427821,213,0 +170769427869,213,0 +170769427916,213,0 +170769427964,213,0 +170769428014,213,0 +170769428062,213,0 +170769428109,214,0 +170769428157,214,0 +170769428205,214,0 +170769428253,214,0 +170769428303,214,0 +170769428352,214,0 +170769428400,214,0 +170769428448,214,0 +170769428496,213,0 +170769428544,213,0 +170769428593,213,0 +170769428641,213,0 +170769428691,213,0 +170769428738,213,0 +170769428786,213,0 +170769428836,213,0 +170769428885,213,0 +170769428933,214,0 +170769428981,214,0 +170769429028,214,0 +170769429076,214,0 +170769429124,214,0 +170769429172,214,0 +170769429220,214,0 +170769429268,215,0 +170769429315,214,0 +170769429363,213,0 +170769429411,213,0 +170769429459,213,0 +170769429507,213,0 +170769429555,213,0 +170769429604,213,0 +170769429652,213,0 +170769429700,213,0 +170769429748,214,0 +170769429796,214,0 +170769429846,214,0 +170769429894,214,0 +170769429942,214,0 +170769429990,214,0 +170769430038,214,0 +170769430086,215,0 +170769430135,214,0 +170769430183,214,0 +170769430232,214,0 +170769430282,213,0 +170769430330,213,0 +170769430379,213,0 +170769430427,213,0 +170769430477,213,0 +170769430525,213,0 +170769430574,213,0 +170769430622,214,0 +170769430670,214,0 +170769430720,214,0 +170769430768,214,0 +170769430816,214,0 +170769430864,214,0 +170769430913,214,0 +170769430961,214,0 +170769431009,214,0 +170769431057,215,0 +170769431107,214,0 +170769431155,213,0 +170769431204,212,0 +170769431252,213,0 +170769431300,213,0 +170769431348,213,0 +170769431398,213,0 +170769431446,213,0 +170769431494,214,0 +170769431541,214,0 +170769431591,214,0 +170769431639,214,0 +170769431687,214,0 +170769431736,214,0 +170769431784,214,0 +170769431834,215,0 +170769431883,214,0 +170769431933,215,0 +170769431981,215,0 +170769432029,214,0 +170769432076,213,0 +170769432126,213,0 +170769432174,213,0 +170769432221,213,0 +170769432269,213,0 +170769432317,213,0 +170769432365,214,0 +170769432415,213,0 +170769432464,214,0 +170769432512,214,0 +170769432560,214,0 +170769432610,214,0 +170769432657,214,0 +170769432705,214,0 +170769432753,214,0 +170769432801,214,0 +170769432849,214,0 +170769432897,214,0 +170769432945,214,0 +170769432993,213,0 +170769433040,213,0 +170769433089,213,0 +170769433138,213,0 +170769433186,213,0 +170769433234,213,0 +170769433282,214,0 +170769433330,214,0 +170769433379,214,0 +170769433427,214,0 +170769433477,214,0 +170769433524,214,0 +170769433572,214,0 +170769433620,215,0 +170769433668,214,0 +170769433716,215,0 +170769433764,215,0 +170769433812,215,0 +170769433860,213,0 +170769433908,213,0 +170769433956,213,0 +170769434004,213,0 +170769434052,213,0 +170769434101,213,0 +170769434151,214,0 +170769434199,214,0 +170769434248,214,0 +170769434296,214,0 +170769434344,214,0 +170769434392,214,0 +170769434440,214,0 +170769434490,214,0 +170769434537,215,0 +170769434585,214,0 +170769434635,215,0 +170769434683,214,0 +170769434733,214,0 +170769434782,213,0 +170769434830,213,0 +170769434878,213,0 +170769434926,213,0 +170769434974,213,0 +170769435022,213,0 +170769435071,214,0 +170769435121,214,0 +170769435170,214,0 +170769435220,214,0 +170769435269,214,0 +170769435319,214,0 +170769435368,214,0 +170769435416,214,0 +170769435464,214,0 +170769435514,215,0 +170769435562,214,0 +170769435610,214,0 +170769435658,213,0 +170769435705,213,0 +170769435753,213,0 +170769435801,213,0 +170769435851,214,0 +170769435898,214,0 +170769435946,214,0 +170769435994,214,0 +170769436042,214,0 +170769436092,214,0 +170769436140,214,0 +170769436189,214,0 +170769436239,215,0 +170769436288,214,0 +170769436336,214,0 +170769436386,215,0 +170769436435,215,0 +170769436483,214,0 +170769436531,214,0 +170769436579,213,0 +170769436627,213,0 +170769436675,213,0 +170769436724,213,0 +170769436772,214,0 +170769436820,213,0 +170769436870,214,0 +170769436918,214,0 +170769436966,214,0 +170769437015,214,0 +170769437063,214,0 +170769437111,214,0 +170769437159,214,0 +170769437209,214,0 +170769437258,215,0 +170769437306,214,0 +170769437355,214,0 +170769437403,214,0 +170769437451,213,0 +170769437501,213,0 +170769437549,213,0 +170769437598,213,0 +170769437646,213,0 +170769437696,213,0 +170769437744,213,0 +170769437792,214,0 +170769437841,214,0 +170769437889,214,0 +170769437937,214,0 +170769437985,214,0 +170769438034,214,0 +170769438082,214,0 +170769438132,214,0 +170769438180,215,0 +170769438229,214,0 +170769438277,214,0 +170769438327,214,0 +170769438376,213,0 +170769438424,213,0 +170769438472,213,0 +170769438520,213,0 +170769438568,213,0 +170769438616,213,0 +170769438664,214,0 +170769438713,214,0 +170769438761,214,0 +170769438810,214,0 +170769438858,214,0 +170769438906,214,0 +170769438956,214,0 +170769439005,215,0 +170769439053,215,0 +170769439101,215,0 +170769439149,215,0 +170769439197,214,0 +170769439247,213,0 +170769439296,213,0 +170769439346,213,0 +170769439394,213,0 +170769439442,213,0 +170769439489,213,0 +170769439539,214,0 +170769439587,214,0 +170769439635,214,0 +170769439683,214,0 +170769439731,214,0 +170769439780,214,0 +170769439828,214,0 +170769439876,215,0 +170769439926,214,0 +170769439974,214,0 +170769440022,214,0 +170769440070,214,0 +170769440117,214,0 +170769440167,213,0 +170769440215,213,0 +170769440263,213,0 +170769440311,213,0 +170769440359,213,0 +170769440408,213,0 +170769440458,213,0 +170769440507,214,0 +170769440555,214,0 +170769440603,214,0 +170769440651,214,0 +170769440699,214,0 +170769440747,214,0 +170769440795,214,0 +170769440844,214,0 +170769440892,214,0 +170769440940,214,0 +170769440988,214,0 +170769441038,213,0 +170769441085,213,0 +170769441133,213,0 +170769441183,213,0 +170769441231,213,0 +170769441279,213,0 +170769441327,214,0 +170769441375,214,0 +170769441423,214,0 +170769441472,214,0 +170769441522,214,0 +170769441570,214,0 +170769441619,214,0 +170769441667,214,0 +170769441715,214,0 +170769441763,214,0 +170769441812,214,0 +170769441860,215,0 +170769441908,214,0 +170769441958,213,0 +170769442006,213,0 +170769442054,213,0 +170769442102,213,0 +170769442150,213,0 +170769442198,213,0 +170769442247,213,0 +170769442295,213,0 +170769442343,213,0 +170769442391,213,0 +170769442439,214,0 +170769442488,214,0 +170769442536,214,0 +170769442585,214,0 +170769442634,214,0 +170769442682,214,0 +170769442729,214,0 +170769442777,214,0 +170769442825,213,0 +170769442873,213,0 +170769442921,213,0 +170769442969,213,0 +170769443019,213,0 +170769443067,213,0 +170769443115,213,0 +170769443163,213,0 +170769443211,214,0 +170769443259,214,0 +170769443307,214,0 +170769443354,214,0 +170769443404,214,0 +170769443452,214,0 +170769443502,214,0 +170769443549,215,0 +170769443597,214,0 +170769443647,215,0 +170769443696,214,0 +170769443744,213,0 +170769443792,213,0 +170769443840,213,0 +170769443888,213,0 +170769443936,213,0 +170769443984,213,0 +170769444032,214,0 +170769444081,214,0 +170769444131,214,0 +170769444179,214,0 +170769444227,214,0 +170769444276,214,0 +170769444326,214,0 +170769444374,214,0 +170769444422,214,0 +170769444472,215,0 +170769444521,215,0 +170769444569,214,0 +170769444617,213,0 +170769444665,213,0 +170769444713,213,0 +170769444761,213,0 +170769444809,213,0 +170769444856,214,0 +170769444904,213,0 +170769444952,214,0 +170769445002,214,0 +170769445050,214,0 +170769445099,214,0 +170769445147,214,0 +170769445197,214,0 +170769445245,215,0 +170769445293,215,0 +170769445342,215,0 +170769445390,215,0 +170769445440,215,0 +170769445488,214,0 +170769445535,213,0 +170769445583,213,0 +170769445631,213,0 +170769445679,213,0 +170769445729,213,0 +170769445777,214,0 +170769445826,214,0 +170769445876,214,0 +170769445924,214,0 +170769445972,215,0 +170769446021,214,0 +170769446069,214,0 +170769446117,215,0 +170769446165,215,0 +170769446213,215,0 +170769446263,215,0 +170769446312,215,0 +170769446360,214,0 +170769446408,213,0 +170769446456,213,0 +170769446506,213,0 +170769446554,213,0 +170769446602,213,0 +170769446651,214,0 +170769446700,214,0 +170769446748,214,0 +170769446796,214,0 +170769446846,214,0 +170769446894,215,0 +170769446942,214,0 +170769446990,215,0 +170769447038,215,0 +170769447086,215,0 +170769447134,215,0 +170769447183,215,0 +170769447231,215,0 +170769447281,214,0 +170769447328,213,0 +170769447376,213,0 +170769447424,213,0 +170769447472,213,0 +170769447520,213,0 +170769447568,214,0 +170769447616,214,0 +170769447663,214,0 +170769447711,214,0 +170769447759,214,0 +170769447807,214,0 +170769447855,214,0 +170769447904,215,0 +170769447952,215,0 +170769448000,215,0 +170769448050,214,0 +170769448099,214,0 +170769448147,214,0 +170769448197,213,0 +170769448246,213,0 +170769448294,213,0 +170769448342,213,0 +170769448390,213,0 +170769448438,214,0 +170769448488,214,0 +170769448536,214,0 +170769448585,214,0 +170769448633,214,0 +170769448681,214,0 +170769448729,214,0 +170769448777,215,0 +170769448825,214,0 +170769448873,214,0 +170769448922,215,0 +170769448970,214,0 +170769449018,215,0 +170769449066,214,0 +170769449114,213,0 +170769449162,213,0 +170769449212,213,0 +170769449261,214,0 +170769449311,214,0 +170769449360,214,0 +170769449410,214,0 +170769449458,214,0 +170769449507,214,0 +170769449557,214,0 +170769449605,215,0 +170769449653,214,0 +170769449701,215,0 +170769449749,215,0 +170769449797,214,0 +170769449845,214,0 +170769449893,214,0 +170769449941,214,0 +170769449989,213,0 +170769450036,213,0 +170769450084,213,0 +170769450134,213,0 +170769450183,213,0 +170769450231,213,0 +170769450279,213,0 +170769450329,214,0 +170769450377,214,0 +170769450425,214,0 +170769450474,214,0 +170769450524,214,0 +170769450573,215,0 +170769450621,214,0 +170769450669,214,0 +170769450717,215,0 +170769450767,215,0 +170769450814,214,0 +170769450862,213,0 +170769450910,213,0 +170769450958,213,0 +170769451008,213,0 +170769451056,213,0 +170769451105,213,0 +170769451153,213,0 +170769451201,214,0 +170769451249,214,0 +170769451297,214,0 +170769451345,217,0 +170769451393,215,0 +170769451441,214,0 +170769451489,215,0 +170769451537,215,0 +170769451585,215,0 +170769451633,214,0 +170769451682,214,0 +170769451732,213,0 +170769451780,213,0 +170769451829,213,0 +170769451879,213,0 +170769451927,213,0 +170769451976,213,0 +170769452024,213,0 +170769452072,214,0 +170769452121,214,0 +170769452171,214,0 +170769452219,214,0 +170769452267,214,0 +170769452315,214,0 +170769452363,214,0 +170769452411,214,0 +170769452460,214,0 +170769452508,214,0 +170769452558,214,0 +170769452606,213,0 +170769452653,213,0 +170769452701,213,0 +170769452751,213,0 +170769452799,213,0 +170769452847,213,0 +170769452895,213,0 +170769452943,213,0 +170769452992,214,0 +170769453040,213,0 +170769453088,214,0 +170769453136,214,0 +170769453184,214,0 +170769453232,214,0 +170769453282,214,0 +170769453331,214,0 +170769453379,214,0 +170769453427,213,0 +170769453475,213,0 +170769453524,213,0 +170769453572,213,0 +170769453620,213,0 +170769453670,213,0 +170769453718,213,0 +170769453766,213,0 +170769453814,213,0 +170769453862,214,0 +170769453911,214,0 +170769453961,214,0 +170769454010,214,0 +170769454060,214,0 +170769454108,214,0 +170769454156,214,0 +170769454204,214,0 +170769454253,214,0 +170769454303,213,0 +170769454351,213,0 +170769454398,213,0 +170769454448,213,0 +170769454497,213,0 +170769454545,213,0 +170769454593,213,0 +170769454641,213,0 +170769454689,214,0 +170769454739,214,0 +170769454787,214,0 +170769454835,214,0 +170769454883,214,0 +170769454931,214,0 +170769454979,214,0 +170769455026,214,0 +170769455074,214,0 +170769455124,214,0 +170769455172,213,0 +170769455220,213,0 +170769455269,213,0 +170769455317,213,0 +170769455367,213,0 +170769455415,213,0 +170769455464,213,0 +170769455512,213,0 +170769455562,213,0 +170769455611,214,0 +170769455659,214,0 +170769455707,214,0 +170769455755,214,0 +170769455803,214,0 +170769455851,214,0 +170769455899,214,0 +170769455947,214,0 +170769455994,214,0 +170769456042,213,0 +170769456090,213,0 +170769456138,213,0 +170769456186,213,0 +170769456234,213,0 +170769456282,214,0 +170769456330,214,0 +170769456378,214,0 +170769456425,214,0 +170769456475,214,0 +170769456523,214,0 +170769456572,214,0 +170769456620,215,0 +170769456668,214,0 +170769456717,214,0 +170769456765,214,0 +170769456813,214,0 +170769456861,214,0 +170769456909,213,0 +170769456957,213,0 +170769457005,213,0 +170769457052,213,0 +170769457100,213,0 +170769457148,214,0 +170769457196,214,0 +170769457244,214,0 +170769457292,214,0 +170769457340,214,0 +170769457389,214,0 +170769457437,214,0 +170769457486,214,0 +170769457534,215,0 +170769457582,215,0 +170769457631,214,0 +170769457679,214,0 +170769457727,214,0 +170769457775,213,0 +170769457823,213,0 +170769457871,213,0 +170769457919,213,0 +170769457966,213,0 +170769458014,214,0 +170769458062,214,0 +170769458110,214,0 +170769458158,214,0 +170769458206,214,0 +170769458255,214,0 +170769458305,214,0 +170769458352,214,0 +170769458400,215,0 +170769458448,214,0 +170769458498,214,0 +170769458547,215,0 +170769458597,215,0 +170769458645,213,0 +170769458693,213,0 +170769458741,213,0 +170769458788,213,0 +170769458836,213,0 +170769458884,213,0 +170769458932,213,0 +170769458981,214,0 +170769459031,214,0 +170769459079,214,0 +170769459127,214,0 +170769459176,214,0 +170769459224,215,0 +170769459272,214,0 +170769459320,215,0 +170769459368,215,0 +170769459416,215,0 +170769459464,214,0 +170769459511,213,0 +170769459559,213,0 +170769459607,213,0 +170769459655,213,0 +170769459703,213,0 +170769459752,213,0 +170769459800,214,0 +170769459848,214,0 +170769459896,214,0 +170769459944,214,0 +170769459992,215,0 +170769460041,215,0 +170769460089,214,0 +170769460137,214,0 +170769460185,214,0 +170769460233,215,0 +170769460281,215,0 +170769460330,214,0 +170769460378,214,0 +170769460426,213,0 +170769460474,213,0 +170769460524,214,0 +170769460572,214,0 +170769460621,214,0 +170769460669,214,0 +170769460717,214,0 +170769460765,214,0 +170769460813,214,0 +170769460862,215,0 +170769460910,215,0 +170769460958,215,0 +170769461006,215,0 +170769461056,215,0 +170769461105,215,0 +170769461153,215,0 +170769461201,215,0 +170769461249,213,0 +170769461297,214,0 +170769461345,214,0 +170769461393,214,0 +170769461441,214,0 +170769461489,214,0 +170769461537,214,0 +170769461585,214,0 +170769461635,214,0 +170769461683,215,0 +170769461732,215,0 +170769461780,215,0 +170769461828,215,0 +170769461876,214,0 +170769461924,214,0 +170769461973,215,0 +170769462023,214,0 +170769462071,214,0 +170769462120,213,0 +170769462170,213,0 +170769462218,213,0 +170769462267,214,0 +170769462317,214,0 +170769462366,214,0 +170769462414,214,0 +170769462462,214,0 +170769462512,214,0 +170769462560,214,0 +170769462608,214,0 +170769462657,215,0 +170769462705,215,0 +170769462753,215,0 +170769462802,215,0 +170769462850,214,0 +170769462900,215,0 +170769462948,213,0 +170769462996,213,0 +170769463044,213,0 +170769463094,213,0 +170769463141,213,0 +170769463189,214,0 +170769463237,214,0 +170769463285,214,0 +170769463333,214,0 +170769463381,214,0 +170769463429,214,0 +170769463477,215,0 +170769463525,214,0 +170769463573,215,0 +170769463621,215,0 +170769463670,215,0 +170769463718,215,0 +170769463766,215,0 +170769463814,213,0 +170769463862,213,0 +170769463912,213,0 +170769463961,213,0 +170769464009,213,0 +170769464057,213,0 +170769464105,214,0 +170769464155,214,0 +170769464203,214,0 +170769464252,214,0 +170769464302,214,0 +170769464350,214,0 +170769464398,214,0 +170769464445,215,0 +170769464493,215,0 +170769464541,215,0 +170769464591,214,0 +170769464640,214,0 +170769464688,213,0 +170769464736,213,0 +170769464784,213,0 +170769464834,213,0 +170769464882,213,0 +170769464930,213,0 +170769464979,213,0 +170769465027,214,0 +170769465075,214,0 +170769465125,214,0 +170769465173,214,0 +170769465221,214,0 +170769465269,215,0 +170769465316,215,0 +170769465364,214,0 +170769465414,215,0 +170769465462,214,0 +170769465510,214,0 +170769465558,213,0 +170769465607,213,0 +170769465657,213,0 +170769465705,213,0 +170769465754,213,0 +170769465802,213,0 +170769465850,213,0 +170769465898,214,0 +170769465946,214,0 +170769465994,214,0 +170769466042,214,0 +170769466090,214,0 +170769466138,215,0 +170769466186,214,0 +170769466234,214,0 +170769466283,214,0 +170769466331,214,0 +170769466380,214,0 +170769466428,213,0 +170769466478,213,0 +170769466526,213,0 +170769466574,213,0 +170769466622,213,0 +170769466670,213,0 +170769466718,213,0 +170769466767,213,0 +170769466817,213,0 +170769466866,213,0 +170769466914,214,0 +170769466962,214,0 +170769467012,214,0 +170769467060,214,0 +170769467108,214,0 +170769467155,214,0 +170769467203,214,0 +170769467251,214,0 +170769467299,213,0 +170769467347,212,0 +170769467397,213,0 +170769467446,213,0 +170769467494,213,0 +170769467544,213,0 +170769467591,213,0 +170769467640,213,0 +170769467687,213,0 +170769467735,213,0 +170769467785,214,0 +170769467834,214,0 +170769467884,214,0 +170769467932,214,0 +170769467980,214,0 +170769468028,214,0 +170769468078,214,0 +170769468127,214,0 +170769468175,213,0 +170769468223,213,0 +170769468273,213,0 +170769468322,213,0 +170769468370,213,0 +170769468418,213,0 +170769468466,213,0 +170769468516,213,0 +170769468563,213,0 +170769468611,213,0 +170769468661,213,0 +170769468709,214,0 +170769468757,214,0 +170769468804,214,0 +170769468852,214,0 +170769468900,214,0 +170769468948,215,0 +170769468996,215,0 +170769469044,214,0 +170769469092,215,0 +170769469140,215,0 +170769469188,215,0 +170769469236,215,0 +170769469283,215,0 +170769469331,216,0 +170769469379,215,0 +170769469427,213,0 +170769469475,213,0 +170769469523,213,0 +170769469571,213,0 +170769469619,213,0 +170769469667,213,0 +170769469715,213,0 +170769469764,213,0 +170769469814,213,0 +170769469862,214,0 +170769469909,214,0 +170769469957,214,0 +170769470005,214,0 +170769470053,214,0 +170769470101,214,0 +170769470151,214,0 +170769470199,214,0 +170769470248,214,0 +170769470296,213,0 +170769470346,213,0 +170769470395,213,0 +170769470445,213,0 +170769470493,213,0 +170769470541,213,0 +170769470589,213,0 +170769470637,213,0 +170769470684,213,0 +170769470734,213,0 +170769470782,213,0 +170769470830,214,0 +170769470879,214,0 +170769470927,214,0 +170769470975,214,0 +170769471023,214,0 +170769471071,214,0 +170769471119,214,0 +170769471167,213,0 +170769471215,213,0 +170769471262,213,0 +170769471310,213,0 +170769471358,213,0 +170769471406,213,0 +170769471455,213,0 +170769471503,213,0 +170769471551,213,0 +170769471599,213,0 +170769471647,214,0 +170769471697,214,0 +170769471746,214,0 +170769471796,214,0 +170769471845,214,0 +170769471893,214,0 +170769471943,214,0 +170769471991,215,0 +170769472039,213,0 +170769472087,213,0 +170769472135,213,0 +170769472183,213,0 +170769472230,213,0 +170769472280,213,0 +170769472329,213,0 +170769472377,213,0 +170769472427,213,0 +170769472476,213,0 +170769472524,214,0 +170769472574,214,0 +170769472623,214,0 +170769472671,214,0 +170769472719,214,0 +170769472769,214,0 +170769472817,214,0 +170769472865,215,0 +170769472913,213,0 +170769472960,213,0 +170769473008,213,0 +170769473056,213,0 +170769473106,213,0 +170769473154,213,0 +170769473203,213,0 +170769473251,214,0 +170769473301,214,0 +170769473348,214,0 +170769473396,214,0 +170769473444,214,0 +170769473492,214,0 +170769473540,215,0 +170769473588,214,0 +170769473636,214,0 +170769473685,215,0 +170769473733,214,0 +170769473781,213,0 +170769473829,213,0 +170769473877,213,0 +170769473925,213,0 +170769473973,213,0 +170769474021,214,0 +170769474070,214,0 +170769474118,214,0 +170769474168,214,0 +170769474217,214,0 +170769474265,214,0 +170769474313,214,0 +170769474363,214,0 +170769474410,214,0 +170769474458,215,0 +170769474508,215,0 +170769474557,215,0 +170769474605,214,0 +170769474653,213,0 +170769474701,213,0 +170769474749,213,0 +170769474797,213,0 +170769474845,214,0 +170769474895,214,0 +170769474943,214,0 +170769474991,214,0 +170769475038,214,0 +170769475087,214,0 +170769475134,214,0 +170769475182,214,0 +170769475232,215,0 +170769475280,214,0 +170769475328,214,0 +170769475377,215,0 +170769475427,215,0 +170769475475,214,0 +170769475524,213,0 +170769475572,213,0 +170769475620,213,0 +170769475668,213,0 +170769475716,213,0 +170769475764,213,0 +170769475812,214,0 +170769475860,214,0 +170769475908,214,0 +170769475958,214,0 +170769476006,214,0 +170769476055,214,0 +170769476103,214,0 +170769476151,215,0 +170769476199,215,0 +170769476247,217,0 +170769476295,215,0 +170769476343,214,0 +170769476392,213,0 +170769476442,213,0 +170769476490,213,0 +170769476538,213,0 +170769476586,213,0 +170769476634,213,0 +170769476682,214,0 +170769476730,214,0 +170769476779,214,0 +170769476829,214,0 +170769476877,214,0 +170769476925,215,0 +170769476973,214,0 +170769477021,215,0 +170769477069,214,0 +170769477117,214,0 +170769477166,214,0 +170769477215,214,0 +170769477265,213,0 +170769477313,213,0 +170769477362,213,0 +170769477412,213,0 +170769477460,213,0 +170769477509,213,0 +170769477557,214,0 +170769477605,214,0 +170769477653,214,0 +170769477703,214,0 +170769477752,214,0 +170769477802,214,0 +170769477851,215,0 +170769477899,215,0 +170769477949,214,0 +170769477997,215,0 +170769478045,214,0 +170769478092,213,0 +170769478140,213,0 +170769478188,213,0 +170769478238,213,0 +170769478287,213,0 +170769478335,214,0 +170769478383,214,0 +170769478433,214,0 +170769478481,214,0 +170769478530,214,0 +170769478578,214,0 +170769478626,214,0 +170769478674,215,0 +170769478724,215,0 +170769478771,215,0 +170769478821,215,0 +170769478869,215,0 +170769478918,215,0 +170769478966,213,0 +170769479016,213,0 +170769479063,213,0 +170769479111,214,0 +170769479159,214,0 +170769479209,214,0 +170769479257,214,0 +170769479304,214,0 +170769479352,214,0 +170769479400,214,0 +170769479448,215,0 +170769479498,215,0 +170769479546,215,0 +170769479594,215,0 +170769479641,215,0 +170769479689,215,0 +170769479737,215,0 +170769479785,215,0 +170769479835,213,0 +170769479883,213,0 +170769479931,213,0 +170769479979,213,0 +170769480027,214,0 +170769480075,214,0 +170769480124,214,0 +170769480174,214,0 +170769480222,214,0 +170769480270,214,0 +170769480319,214,0 +170769480367,214,0 +170769480415,214,0 +170769480463,215,0 +170769480512,215,0 +170769480560,214,0 +170769480608,214,0 +170769480657,214,0 +170769480705,213,0 +170769480753,213,0 +170769480801,213,0 +170769480849,213,0 +170769480897,213,0 +170769480946,213,0 +170769480994,214,0 +170769481042,214,0 +170769481091,214,0 +170769481139,214,0 +170769481187,214,0 +170769481235,214,0 +170769481284,214,0 +170769481334,215,0 +170769481383,217,0 +170769481431,215,0 +170769481479,214,0 +170769481527,214,0 +170769481575,213,0 +170769481623,213,0 +170769481671,213,0 +170769481719,213,0 +170769481767,213,0 +170769481815,213,0 +170769481862,214,0 +170769481910,214,0 +170769481958,214,0 +170769482006,214,0 +170769482054,214,0 +170769482103,214,0 +170769482151,214,0 +170769482201,215,0 +170769482250,215,0 +170769482298,215,0 +170769482346,214,0 +170769482394,214,0 +170769482442,213,0 +170769482490,213,0 +170769482538,213,0 +170769482586,213,0 +170769482635,213,0 +170769482683,213,0 +170769482733,213,0 +170769482781,214,0 +170769482830,214,0 +170769482880,214,0 +170769482928,214,0 +170769482975,214,0 +170769483023,214,0 +170769483071,215,0 +170769483119,215,0 +170769483167,215,0 +170769483216,214,0 +170769483264,214,0 +170769483312,213,0 +170769483362,213,0 +170769483410,213,0 +170769483458,213,0 +170769483507,213,0 +170769483555,213,0 +170769483603,213,0 +170769483651,213,0 +170769483699,213,0 +170769483747,214,0 +170769483796,214,0 +170769483844,214,0 +170769483892,214,0 +170769483940,214,0 +170769483988,214,0 +170769484036,215,0 +170769484086,214,0 +170769484135,214,0 +170769484185,213,0 +170769484233,213,0 +170769484282,213,0 +170769484331,213,0 +170769484381,213,0 +170769484431,213,0 +170769484478,213,0 +170769484526,214,0 +170769484576,214,0 +170769484625,214,0 +170769484673,214,0 +170769484721,214,0 +170769484771,214,0 +170769484819,214,0 +170769484867,214,0 +170769484915,214,0 +170769484963,214,0 +170769485012,214,0 +170769485062,213,0 +170769485110,213,0 +170769485159,213,0 +170769485207,213,0 +170769485255,213,0 +170769485303,213,0 +170769485351,213,0 +170769485399,213,0 +170769485448,214,0 +170769485496,214,0 +170769485546,214,0 +170769485594,214,0 +170769485642,214,0 +170769485691,214,0 +170769485741,214,0 +170769485789,215,0 +170769485837,215,0 +170769485886,214,0 +170769485936,213,0 +170769485983,213,0 +170769486031,213,0 +170769486081,213,0 +170769486129,213,0 +170769486177,213,0 +170769486225,214,0 +170769486273,214,0 +170769486321,214,0 +170769486368,214,0 +170769486418,214,0 +170769486466,214,0 +170769486514,214,0 +170769486563,215,0 +170769486611,215,0 +170769486659,215,0 +170769486707,215,0 +170769486755,214,0 +170769486803,213,0 +170769486850,213,0 +170769486898,213,0 +170769486946,214,0 +170769486994,213,0 +170769487042,214,0 +170769487091,214,0 +170769487141,214,0 +170769487189,214,0 +170769487238,214,0 +170769487286,214,0 +170769487336,214,0 +170769487384,215,0 +170769487432,215,0 +170769487479,215,0 +170769487527,215,0 +170769487575,214,0 +170769487625,213,0 +170769487673,213,0 +170769487722,213,0 +170769487770,213,0 +170769487818,213,0 +170769487868,213,0 +170769487917,214,0 +170769487967,214,0 +170769488015,214,0 +170769488063,214,0 +170769488111,214,0 +170769488160,214,0 +170769488208,214,0 +170769488256,215,0 +170769488304,215,0 +170769488353,215,0 +170769488401,215,0 +170769488451,214,0 +170769488499,213,0 +170769488547,213,0 +170769488595,213,0 +170769488643,213,0 +170769488691,213,0 +170769488739,214,0 +170769488788,213,0 +170769488836,214,0 +170769488885,214,0 +170769488935,214,0 +170769488984,214,0 +170769489032,214,0 +170769489080,215,0 +170769489128,214,0 +170769489176,215,0 +170769489224,215,0 +170769489274,215,0 +170769489322,215,0 +170769489370,213,0 +170769489418,213,0 +170769489466,213,0 +170769489513,213,0 +170769489563,213,0 +170769489611,214,0 +170769489659,214,0 +170769489708,214,0 +170769489756,214,0 +170769489804,214,0 +170769489852,214,0 +170769489901,214,0 +170769489949,214,0 +170769489997,215,0 +170769490045,215,0 +170769490095,215,0 +170769490143,215,0 +170769490192,214,0 +170769490240,213,0 +170769490288,213,0 +170769490336,213,0 +170769490384,213,0 +170769490432,213,0 +170769490480,214,0 +170769490528,214,0 +170769490576,214,0 +170769490623,214,0 +170769490673,214,0 +170769490721,214,0 +170769490769,214,0 +170769490817,214,0 +170769490865,215,0 +170769490914,215,0 +170769490964,215,0 +170769491011,215,0 +170769491059,214,0 +170769491107,213,0 +170769491157,213,0 +170769491205,213,0 +170769491253,213,0 +170769491302,214,0 +170769491350,214,0 +170769491400,214,0 +170769491448,214,0 +170769491497,214,0 +170769491547,214,0 +170769491594,214,0 +170769491642,215,0 +170769491692,215,0 +170769491740,215,0 +170769491789,215,0 +170769491839,215,0 +170769491888,215,0 +170769491936,214,0 +170769491984,213,0 +170769492032,213,0 +170769492080,213,0 +170769492128,213,0 +170769492176,213,0 +170769492224,214,0 +170769492273,214,0 +170769492323,214,0 +170769492372,214,0 +170769492420,214,0 +170769492469,215,0 +170769492517,215,0 +170769492567,214,0 +170769492615,215,0 +170769492663,215,0 +170769492710,214,0 +170769492758,214,0 +170769492808,214,0 +170769492856,213,0 +170769492905,213,0 +170769492953,213,0 +170769493001,213,0 +170769493050,213,0 +170769493098,214,0 +170769493146,213,0 +170769493194,214,0 +170769493242,214,0 +170769493292,214,0 +170769493341,214,0 +170769493390,214,0 +170769493440,214,0 +170769493488,214,0 +170769493537,216,0 +170769493587,215,0 +170769493634,214,0 +170769493682,214,0 +170769493730,213,0 +170769493778,213,0 +170769493826,213,0 +170769493874,213,0 +170769493924,213,0 +170769493972,213,0 +170769494021,213,0 +170769494069,214,0 +170769494117,214,0 +170769494165,214,0 +170769494214,214,0 +170769494262,214,0 +170769494312,214,0 +170769494360,214,0 +170769494409,215,0 +170769494457,215,0 +170769494505,215,0 +170769494553,214,0 +170769494601,213,0 +170769494649,213,0 +170769494697,213,0 +170769494746,213,0 +170769494796,213,0 +170769494845,213,0 +170769494893,213,0 +170769494941,214,0 +170769494989,214,0 +170769495037,214,0 +170769495086,214,0 +170769495134,215,0 +170769495182,214,0 +170769495230,215,0 +170769495278,215,0 +170769495326,214,0 +170769495374,215,0 +170769495422,213,0 +170769495470,213,0 +170769495518,213,0 +170769495566,213,0 +170769495615,213,0 +170769495663,213,0 +170769495711,213,0 +170769495759,214,0 +170769495807,214,0 +170769495855,214,0 +170769495905,214,0 +170769495953,215,0 +170769496002,215,0 +170769496050,215,0 +170769496098,215,0 +170769496146,215,0 +170769496194,215,0 +170769496243,214,0 +170769496291,214,0 +170769496339,213,0 +170769496387,213,0 +170769496435,213,0 +170769496485,213,0 +170769496534,213,0 +170769496584,213,0 +170769496633,213,0 +170769496683,214,0 +170769496731,214,0 +170769496778,214,0 +170769496828,214,0 +170769496876,214,0 +170769496925,214,0 +170769496973,214,0 +170769497021,214,0 +170769497069,214,0 +170769497117,214,0 +170769497167,213,0 +170769497216,213,0 +170769497264,213,0 +170769497312,213,0 +170769497360,213,0 +170769497410,213,0 +170769497459,213,0 +170769497509,213,0 +170769497558,214,0 +170769497606,214,0 +170769497654,214,0 +170769497704,214,0 +170769497752,214,0 +170769497800,214,0 +170769497848,214,0 +170769497895,215,0 +170769497943,214,0 +170769497991,215,0 +170769498039,213,0 +170769498087,213,0 +170769498136,213,0 +170769498184,213,0 +170769498232,213,0 +170769498282,213,0 +170769498330,213,0 +170769498379,213,0 +170769498427,213,0 +170769498477,214,0 +170769498526,214,0 +170769498574,214,0 +170769498623,214,0 +170769498673,214,0 +170769498721,215,0 +170769498769,214,0 +170769498818,215,0 +170769498868,214,0 +170769498916,213,0 +170769498964,213,0 +170769499013,213,0 +170769499061,213,0 +170769499111,213,0 +170769499159,213,0 +170769499206,213,0 +170769499254,213,0 +170769499302,213,0 +170769499350,214,0 +170769499398,214,0 +170769499446,214,0 +170769499496,214,0 +170769499544,214,0 +170769499592,215,0 +170769499639,214,0 +170769499689,215,0 +170769499737,214,0 +170769499785,213,0 +170769499834,213,0 +170769499882,213,0 +170769499930,213,0 +170769499979,213,0 +170769500027,213,0 +170769500075,213,0 +170769500123,214,0 +170769500171,214,0 +170769500219,214,0 +170769500267,214,0 +170769500315,214,0 +170769500364,215,0 +170769500412,214,0 +170769500462,214,0 +170769500510,214,0 +170769500558,215,0 +170769500606,214,0 +170769500654,213,0 +170769500701,213,0 +170769500749,213,0 +170769500799,213,0 +170769500847,213,0 +170769500895,213,0 +170769500943,214,0 +170769500991,214,0 +170769501039,214,0 +170769501087,214,0 +170769501135,214,0 +170769501184,214,0 +170769501232,215,0 +170769501282,214,0 +170769501330,214,0 +170769501378,215,0 +170769501426,215,0 +170769501475,214,0 +170769501523,213,0 +170769501573,214,0 +170769501622,213,0 +170769501670,214,0 +170769501718,214,0 +170769501766,214,0 +170769501814,214,0 +170769501862,214,0 +170769501910,214,0 +170769501958,214,0 +170769502007,214,0 +170769502057,215,0 +170769502105,215,0 +170769502153,215,0 +170769502201,215,0 +170769502248,215,0 +170769502296,214,0 +170769502346,213,0 +170769502394,213,0 +170769502442,213,0 +170769502490,214,0 +170769502538,214,0 +170769502586,214,0 +170769502634,214,0 +170769502682,214,0 +170769502730,214,0 +170769502778,214,0 +170769502826,215,0 +170769502874,215,0 +170769502922,215,0 +170769502971,215,0 +170769503021,215,0 +170769503069,215,0 +170769503117,215,0 +170769503164,214,0 +170769503212,214,0 +170769503260,213,0 +170769503308,213,0 +170769503357,213,0 +170769503407,213,0 +170769503455,214,0 +170769503504,214,0 +170769503554,214,0 +170769503602,214,0 +170769503651,215,0 +170769503699,214,0 +170769503747,214,0 +170769503795,215,0 +170769503843,215,0 +170769503891,215,0 +170769503939,215,0 +170769503987,215,0 +170769504035,214,0 +170769504083,214,0 +170769504132,213,0 +170769504182,213,0 +170769504230,214,0 +170769504279,214,0 +170769504329,214,0 +170769504377,214,0 +170769504425,214,0 +170769504472,214,0 +170769504522,214,0 +170769504570,214,0 +170769504618,215,0 +170769504666,215,0 +170769504714,215,0 +170769504762,215,0 +170769504810,215,0 +170769504858,215,0 +170769504907,215,0 +170769504957,213,0 +170769505006,213,0 +170769505054,213,0 +170769505102,214,0 +170769505150,214,0 +170769505199,214,0 +170769505249,214,0 +170769505297,214,0 +170769505346,214,0 +170769505396,215,0 +170769505444,215,0 +170769505492,215,0 +170769505541,215,0 +170769505591,215,0 +170769505638,215,0 +170769505686,215,0 +170769505734,215,0 +170769505782,214,0 +170769505830,213,0 +170769505878,213,0 +170769505926,213,0 +170769505974,213,0 +170769506022,213,0 +170769506071,214,0 +170769506119,213,0 +170769506167,214,0 +170769506217,214,0 +170769506265,214,0 +170769506312,214,0 +170769506362,214,0 +170769506410,214,0 +170769506458,215,0 +170769506506,215,0 +170769506554,215,0 +170769506602,214,0 +170769506649,215,0 +170769506697,213,0 +170769506745,213,0 +170769506795,213,0 +170769506844,213,0 +170769506894,213,0 +170769506942,213,0 +170769506990,213,0 +170769507038,214,0 +170769507087,214,0 +170769507135,214,0 +170769507183,214,0 +170769507231,214,0 +170769507279,214,0 +170769507328,215,0 +170769507376,214,0 +170769507424,215,0 +170769507472,215,0 +170769507520,214,0 +170769507568,213,0 +170769507617,213,0 +170769507665,213,0 +170769507713,213,0 +170769507761,213,0 +170769507810,213,0 +170769507858,213,0 +170769507906,214,0 +170769507954,214,0 +170769508002,214,0 +170769508050,214,0 +170769508098,214,0 +170769508145,214,0 +170769508193,214,0 +170769508241,214,0 +170769508289,215,0 +170769508337,214,0 +170769508385,214,0 +170769508432,213,0 +170769508480,213,0 +170769508528,213,0 +170769508576,213,0 +170769508624,213,0 +170769508673,214,0 +170769508721,214,0 +170769508769,214,0 +170769508817,214,0 +170769508865,214,0 +170769508912,215,0 +170769508960,214,0 +170769509008,215,0 +170769509058,215,0 +170769509106,215,0 +170769509155,215,0 +170769509203,215,0 +170769509251,214,0 +170769509299,213,0 +170769509347,213,0 +170769509395,213,0 +170769509444,213,0 +170769509492,213,0 +170769509542,214,0 +170769509590,214,0 +170769509638,214,0 +170769509687,214,0 +170769509737,214,0 +170769509785,214,0 +170769509833,214,0 +170769509881,214,0 +170769509929,214,0 +170769509978,214,0 +170769510026,215,0 +170769510074,214,0 +170769510122,214,0 +170769510171,213,0 +170769510221,213,0 +170769510269,213,0 +170769510317,214,0 +170769510366,214,0 +170769510416,214,0 +170769510465,214,0 +170769510513,214,0 +170769510561,214,0 +170769510611,214,0 +170769510659,214,0 +170769510707,214,0 +170769510755,214,0 +170769510804,214,0 +170769510854,214,0 +170769510903,214,0 +170769510951,214,0 +170769510999,214,0 +170769511049,213,0 +170769511096,213,0 +170769511144,213,0 +170769511194,213,0 +170769511242,213,0 +170769511291,213,0 +170769511339,213,0 +170769511387,214,0 +170769511435,214,0 +170769511483,214,0 +170769511532,214,0 +170769511580,214,0 +170769511628,214,0 +170769511678,214,0 +170769511727,214,0 +170769511775,214,0 +170769511825,215,0 +170769511874,213,0 +170769511922,213,0 +170769511970,213,0 +170769512018,213,0 +170769512068,213,0 +170769512116,213,0 +170769512165,213,0 +170769512213,213,0 +170769512262,214,0 +170769512310,214,0 +170769512358,214,0 +170769512406,214,0 +170769512454,214,0 +170769512502,214,0 +170769512551,214,0 +170769512599,214,0 +170769512647,214,0 +170769512695,214,0 +170769512743,213,0 +170769512792,213,0 +170769512842,213,0 +170769512890,213,0 +170769512938,214,0 +170769512986,213,0 +170769513034,213,0 +170769513083,213,0 +170769513133,214,0 +170769513181,214,0 +170769513229,214,0 +170769513277,214,0 +170769513325,214,0 +170769513372,214,0 +170769513422,215,0 +170769513471,215,0 +170769513519,215,0 +170769513567,214,0 +170769513615,213,0 +170769513664,213,0 +170769513712,213,0 +170769513760,214,0 +170769513808,213,0 +170769513857,214,0 +170769513905,214,0 +170769513953,214,0 +170769514002,214,0 +170769514050,214,0 +170769514100,215,0 +170769514148,214,0 +170769514197,214,0 +170769514247,215,0 +170769514295,215,0 +170769514344,215,0 +170769514392,214,0 +170769514440,214,0 +170769514488,213,0 +170769514538,213,0 +170769514585,213,0 +170769514635,213,0 +170769514683,213,0 +170769514732,214,0 +170769514780,213,0 +170769514830,214,0 +170769514878,214,0 +170769514926,214,0 +170769514974,214,0 +170769515021,214,0 +170769515071,215,0 +170769515119,215,0 +170769515167,215,0 +170769515215,215,0 +170769515264,215,0 +170769515314,215,0 +170769515363,213,0 +170769515413,213,0 +170769515462,213,0 +170769515510,213,0 +170769515558,213,0 +170769515607,214,0 +170769515655,214,0 +170769515705,214,0 +170769515753,214,0 +170769515801,214,0 +170769515850,214,0 +170769515898,214,0 +170769515946,214,0 +170769515994,214,0 +170769516042,215,0 +170769516090,214,0 +170769516138,214,0 +170769516188,214,0 +170769516236,213,0 +170769516284,213,0 +170769516333,213,0 +170769516383,213,0 +170769516430,213,0 +170769516480,213,0 +170769516529,214,0 +170769516577,214,0 +170769516625,214,0 +170769516675,214,0 +170769516723,214,0 +170769516772,214,0 +170769516822,215,0 +170769516869,215,0 +170769516917,215,0 +170769516965,215,0 +170769517013,215,0 +170769517062,214,0 +170769517110,213,0 +170769517158,213,0 +170769517206,213,0 +170769517254,214,0 +170769517302,213,0 +170769517349,213,0 +170769517397,214,0 +170769517445,214,0 +170769517493,214,0 +170769517541,214,0 +170769517588,214,0 +170769517636,214,0 +170769517684,215,0 +170769517732,215,0 +170769517780,215,0 +170769517828,215,0 +170769517876,215,0 +170769517924,213,0 +170769517971,213,0 +170769518019,213,0 +170769518069,214,0 +170769518117,213,0 +170769518166,214,0 +170769518214,214,0 +170769518262,214,0 +170769518310,214,0 +170769518358,214,0 +170769518405,214,0 +170769518453,215,0 +170769518501,215,0 +170769518549,215,0 +170769518597,215,0 +170769518645,215,0 +170769518693,215,0 +170769518740,214,0 +170769518790,213,0 +170769518838,213,0 +170769518886,213,0 +170769518934,213,0 +170769518982,213,0 +170769519029,214,0 +170769519077,214,0 +170769519127,214,0 +170769519175,214,0 +170769519224,214,0 +170769519272,214,0 +170769519320,214,0 +170769519370,214,0 +170769519418,215,0 +170769519466,215,0 +170769519514,215,0 +170769519563,215,0 +170769519613,215,0 +170769519661,213,0 +170769519710,213,0 +170769519760,213,0 +170769519808,213,0 +170769519857,214,0 +170769519907,214,0 +170769519954,214,0 +170769520002,214,0 +170769520052,214,0 +170769520101,214,0 +170769520149,215,0 +170769520197,215,0 +170769520246,214,0 +170769520294,215,0 +170769520342,215,0 +170769520392,215,0 +170769520440,215,0 +170769520488,214,0 +170769520536,213,0 +170769520584,213,0 +170769520631,213,0 +170769520679,213,0 +170769520727,213,0 +170769520775,213,0 +170769520823,213,0 +170769520871,214,0 +170769520919,213,0 +170769520967,214,0 +170769521015,214,0 +170769521063,214,0 +170769521112,214,0 +170769521160,214,0 +170769521208,214,0 +170769521256,215,0 +170769521304,214,0 +170769521351,214,0 +170769521399,213,0 +170769521447,213,0 +170769521495,213,0 +170769521544,213,0 +170769521592,213,0 +170769521640,213,0 +170769521688,213,0 +170769521736,213,0 +170769521783,213,0 +170769521831,214,0 +170769521879,214,0 +170769521929,214,0 +170769521977,214,0 +170769522026,214,0 +170769522076,214,0 +170769522125,215,0 +170769522173,214,0 +170769522221,214,0 +170769522269,213,0 +170769522317,213,0 +170769522365,213,0 +170769522414,213,0 +170769522462,213,0 +170769522510,213,0 +170769522558,213,0 +170769522606,213,0 +170769522654,213,0 +170769522702,214,0 +170769522750,214,0 +170769522798,214,0 +170769522846,214,0 +170769522895,214,0 +170769522943,214,0 +170769522991,214,0 +170769523039,214,0 +170769523087,214,0 +170769523135,213,0 +170769523184,213,0 +170769523232,213,0 +170769523282,213,0 +170769523330,213,0 +170769523377,213,0 +170769523425,213,0 +170769523473,213,0 +170769523523,213,0 +170769523570,214,0 +170769523618,214,0 +170769523666,214,0 +170769523714,214,0 +170769523762,214,0 +170769523811,215,0 +170769523859,215,0 +170769523907,215,0 +170769523955,214,0 +170769524002,213,0 +170769524050,213,0 +170769524098,213,0 +170769524146,213,0 +170769524194,213,0 +170769524242,213,0 +170769524289,213,0 +170769524337,213,0 +170769524385,213,0 +170769524433,214,0 +170769524481,214,0 +170769524529,214,0 +170769524578,214,0 +170769524626,214,0 +170769524674,214,0 +170769524721,214,0 +170769524769,214,0 +170769524817,214,0 +170769524865,213,0 +170769524913,213,0 +170769524961,213,0 +170769525009,213,0 +170769525056,213,0 +170769525104,213,0 +170769525152,213,0 +170769525200,213,0 +170769525248,214,0 +170769525296,214,0 +170769525343,214,0 +170769525391,214,0 +170769525439,214,0 +170769525487,214,0 +170769525535,214,0 +170769525583,214,0 +170769525630,214,0 +170769525678,214,0 +170769525726,213,0 +170769525774,213,0 +170769525822,213,0 +170769525870,213,0 +170769525918,213,0 +170769525965,214,0 +170769526013,214,0 +170769526063,214,0 +170769526112,214,0 +170769526160,214,0 +170769526208,214,0 +170769526256,215,0 +170769526305,215,0 +170769526353,215,0 +170769526401,215,0 +170769526449,215,0 +170769526496,214,0 +170769526544,214,0 +170769526594,214,0 +170769526642,213,0 +170769526689,213,0 +170769526737,214,0 +170769526785,214,0 +170769526833,214,0 +170769526881,214,0 +170769526929,214,0 +170769526976,214,0 +170769527024,214,0 +170769527072,214,0 +170769527120,215,0 +170769527168,214,0 +170769527216,215,0 +170769527264,215,0 +170769527311,215,0 +170769527359,215,0 +170769527407,214,0 +170769527456,213,0 +170769527506,213,0 +170769527554,213,0 +170769527602,213,0 +170769527651,213,0 +170769527700,214,0 +170769527748,214,0 +170769527796,214,0 +170769527844,214,0 +170769527892,214,0 +170769527940,214,0 +170769527987,215,0 +170769528035,215,0 +170769528083,215,0 +170769528131,214,0 +170769528179,215,0 +170769528226,214,0 +170769528274,214,0 +170769528322,213,0 +170769528370,213,0 +170769528418,213,0 +170769528465,213,0 +170769528513,213,0 +170769528561,213,0 +170769528609,214,0 +170769528656,214,0 +170769528704,214,0 +170769528752,214,0 +170769528800,214,0 +170769528848,214,0 +170769528896,215,0 +170769528945,215,0 +170769528993,215,0 +170769529041,215,0 +170769529089,215,0 +170769529137,214,0 +170769529185,213,0 +170769529232,213,0 +170769529280,213,0 +170769529328,213,0 +170769529376,213,0 +170769529424,213,0 +170769529473,213,0 +170769529521,213,0 +170769529569,214,0 +170769529619,214,0 +170769529666,214,0 +170769529714,214,0 +170769529762,214,0 +170769529810,214,0 +170769529858,214,0 +170769529906,215,0 +170769529953,215,0 +170769530001,214,0 +170769530049,213,0 +170769530097,213,0 +170769530145,213,0 +170769530195,213,0 +170769530242,213,0 +170769530290,214,0 +170769530338,214,0 +170769530386,214,0 +170769530434,214,0 +170769530482,214,0 +170769530530,214,0 +170769530580,214,0 +170769530629,214,0 +170769530677,215,0 +170769530724,215,0 +170769530774,215,0 +170769530822,215,0 +170769530871,215,0 +170769530919,213,0 +170769530969,214,0 +170769531017,214,0 +170769531065,214,0 +170769531113,214,0 +170769531160,214,0 +170769531208,214,0 +170769531256,214,0 +170769531304,214,0 +170769531352,214,0 +170769531400,214,0 +170769531447,215,0 +170769531495,215,0 +170769531543,215,0 +170769531592,214,0 +170769531640,215,0 +170769531688,215,0 +170769531736,214,0 +170769531784,213,0 +170769531832,213,0 +170769531879,214,0 +170769531929,214,0 +170769531977,214,0 +170769532024,214,0 +170769532072,214,0 +170769532122,214,0 +170769532170,215,0 +170769532218,215,0 +170769532265,215,0 +170769532315,215,0 +170769532363,215,0 +170769532411,215,0 +170769532459,215,0 +170769532506,214,0 +170769532554,215,0 +170769532602,214,0 +170769532652,213,0 +170769532700,214,0 +170769532748,214,0 +170769532795,213,0 +170769532843,214,0 +170769532891,214,0 +170769532941,214,0 +170769532990,214,0 +170769533038,214,0 +170769533086,215,0 +170769533135,215,0 +170769533183,215,0 +170769533231,215,0 +170769533279,215,0 +170769533329,215,0 +170769533378,215,0 +170769533426,214,0 +170769533476,213,0 +170769533524,213,0 +170769533571,213,0 +170769533619,213,0 +170769533667,213,0 +170769533715,213,0 +170769533763,213,0 +170769533811,214,0 +170769533861,214,0 +170769533909,214,0 +170769533956,214,0 +170769534006,214,0 +170769534054,214,0 +170769534102,215,0 +170769534151,215,0 +170769534201,214,0 +170769534250,214,0 +170769534298,214,0 +170769534347,213,0 +170769534395,213,0 +170769534443,213,0 +170769534491,213,0 +170769534539,213,0 +170769534588,213,0 +170769534638,214,0 +170769534686,214,0 +170769534733,214,0 +170769534783,214,0 +170769534831,214,0 +170769534879,215,0 +170769534927,214,0 +170769534974,214,0 +170769535022,215,0 +170769535070,215,0 +170769535118,215,0 +170769535166,215,0 +170769535214,213,0 +170769535261,213,0 +170769535309,213,0 +170769535357,214,0 +170769535405,213,0 +170769535453,214,0 +170769535501,213,0 +170769535549,214,0 +170769535598,214,0 +170769535646,214,0 +170769535696,214,0 +170769535745,215,0 +170769535795,215,0 +170769535844,214,0 +170769535892,215,0 +170769535940,215,0 +170769535988,214,0 +170769536038,215,0 +170769536086,213,0 +170769536134,213,0 +170769536182,213,0 +170769536230,213,0 +170769536277,213,0 +170769536325,214,0 +170769536373,214,0 +170769536421,214,0 +170769536469,214,0 +170769536517,214,0 +170769536566,214,0 +170769536614,215,0 +170769536662,214,0 +170769536711,215,0 +170769536759,215,0 +170769536807,215,0 +170769536856,214,0 +170769536904,214,0 +170769536952,213,0 +170769537000,213,0 +170769537048,213,0 +170769537096,213,0 +170769537143,213,0 +170769537191,213,0 +170769537239,213,0 +170769537287,214,0 +170769537336,214,0 +170769537386,214,0 +170769537434,214,0 +170769537483,214,0 +170769537533,214,0 +170769537581,214,0 +170769537629,214,0 +170769537678,214,0 +170769537726,215,0 +170769537774,214,0 +170769537822,213,0 +170769537872,213,0 +170769537920,213,0 +170769537968,213,0 +170769538015,213,0 +170769538063,213,0 +170769538113,214,0 +170769538162,214,0 +170769538210,214,0 +170769538258,214,0 +170769538307,214,0 +170769538355,214,0 +170769538403,215,0 +170769538451,215,0 +170769538501,215,0 +170769538549,215,0 +170769538597,215,0 +170769538646,214,0 +170769538694,213,0 +170769538742,213,0 +170769538792,213,0 +170769538841,213,0 +170769538889,213,0 +170769538937,214,0 +170769538985,214,0 +170769539032,214,0 +170769539082,214,0 +170769539129,214,0 +170769539177,214,0 +170769539225,215,0 +170769539273,215,0 +170769539321,215,0 +170769539369,215,0 +170769539417,214,0 +170769539464,215,0 +170769539512,214,0 +170769539560,213,0 +170769539609,213,0 +170769539657,213,0 +170769539705,213,0 +170769539753,213,0 +170769539801,213,0 +170769539848,213,0 +170769539896,214,0 +170769539944,214,0 +170769539994,214,0 +170769540041,214,0 +170769540091,214,0 +170769540139,214,0 +170769540187,215,0 +170769540235,215,0 +170769540282,215,0 +170769540330,215,0 +170769540378,213,0 +170769540426,213,0 +170769540474,213,0 +170769540522,213,0 +170769540572,213,0 +170769540621,213,0 +170769540669,213,0 +170769540718,213,0 +170769540766,213,0 +170769540814,214,0 +170769540862,214,0 +170769540910,214,0 +170769540960,214,0 +170769541008,214,0 +170769541055,214,0 +170769541103,214,0 +170769541151,214,0 +170769541199,214,0 +170769541247,213,0 +170769541295,213,0 +170769541343,213,0 +170769541391,213,0 +170769541439,213,0 +170769541488,213,0 +170769541536,213,0 +170769541585,213,0 +170769541633,213,0 +170769541681,213,0 +170769541729,213,0 +170769541777,214,0 +170769541825,214,0 +170769541875,214,0 +170769541922,214,0 +170769541972,215,0 +170769542020,214,0 +170769542068,215,0 +170769542116,213,0 +170769542164,213,0 +170769542211,213,0 +170769542259,213,0 +170769542307,213,0 +170769542355,213,0 +170769542403,213,0 +170769542453,213,0 +170769542502,214,0 +170769542550,214,0 +170769542598,214,0 +170769542646,214,0 +170769542694,214,0 +170769542742,214,0 +170769542790,214,0 +170769542838,214,0 +170769542887,214,0 +170769542937,215,0 +170769542985,213,0 +170769543033,213,0 +170769543081,213,0 +170769543129,213,0 +170769543178,213,0 +170769543228,213,0 +170769543276,213,0 +170769543324,213,0 +170769543371,213,0 +170769543419,214,0 +170769543467,214,0 +170769543515,214,0 +170769543563,214,0 +170769543611,214,0 +170769543659,214,0 +170769543708,214,0 +170769543756,214,0 +170769543804,214,0 +170769543852,213,0 +170769543899,213,0 +170769543947,213,0 +170769543997,213,0 +170769544044,213,0 +170769544092,213,0 +170769544140,213,0 +170769544188,214,0 +170769544237,214,0 +170769544285,214,0 +170769544333,214,0 +170769544383,214,0 +170769544431,214,0 +170769544479,214,0 +170769544527,214,0 +170769544575,215,0 +170769544622,214,0 +170769544672,213,0 +170769544722,213,0 +170769544769,213,0 +170769544817,214,0 +170769544865,214,0 +170769544913,214,0 +170769544961,214,0 +170769545009,214,0 +170769545058,214,0 +170769545106,214,0 +170769545154,214,0 +170769545202,215,0 +170769545250,215,0 +170769545298,215,0 +170769545347,215,0 +170769545395,214,0 +170769545443,215,0 +170769545493,214,0 +170769545541,214,0 +170769545590,214,0 +170769545638,213,0 +170769545686,213,0 +170769545734,213,0 +170769545782,214,0 +170769545830,214,0 +170769545878,214,0 +170769545927,214,0 +170769545975,214,0 +170769546023,214,0 +170769546071,214,0 +170769546118,215,0 +170769546166,214,0 +170769546214,215,0 +170769546262,215,0 +170769546310,215,0 +170769546358,214,0 +170769546406,214,0 +170769546454,213,0 +170769546502,213,0 +170769546551,213,0 +170769546599,214,0 +170769546647,214,0 +170769546695,213,0 +170769546745,214,0 +170769546795,214,0 +170769546843,214,0 +170769546890,214,0 +170769546938,214,0 +170769546986,215,0 +170769547034,215,0 +170769547082,214,0 +170769547132,215,0 +170769547180,215,0 +170769547228,214,0 +170769547276,213,0 +170769547324,213,0 +170769547371,213,0 +170769547419,214,0 +170769547469,214,0 +170769547517,214,0 +170769547565,214,0 +170769547613,214,0 +170769547661,214,0 +170769547709,214,0 +170769547756,214,0 +170769547804,215,0 +170769547854,215,0 +170769547903,215,0 +170769547951,215,0 +170769547999,215,0 +170769548047,215,0 +170769548097,215,0 +170769548145,214,0 +170769548193,214,0 +170769548240,214,0 +170769548288,214,0 +170769548336,214,0 +170769548384,214,0 +170769548434,214,0 +170769548483,215,0 +170769548531,215,0 +170769548581,215,0 +170769548630,215,0 +170769548680,215,0 +170769548729,215,0 +170769548779,215,0 +170769548827,215,0 +170769548875,215,0 +170769548923,215,0 +170769548972,215,0 +170769549022,214,0 +170769549070,214,0 +170769549119,214,0 +170769549167,214,0 +170769549215,214,0 +170769549263,214,0 +170769549313,215,0 +170769549360,214,0 +170769549408,214,0 +170769549458,215,0 +170769549506,215,0 +170769549554,215,0 +170769549603,215,0 +170769549653,215,0 +170769549702,215,0 +170769549750,215,0 +170769549800,215,0 +170769549849,213,0 +170769549897,213,0 +170769549945,213,0 +170769549995,213,0 +170769550043,214,0 +170769550091,214,0 +170769550140,214,0 +170769550188,214,0 +170769550236,214,0 +170769550284,214,0 +170769550332,214,0 +170769550380,215,0 +170769550429,215,0 +170769550477,215,0 +170769550527,215,0 +170769550575,215,0 +170769550623,215,0 +170769550672,214,0 +170769550722,213,0 +170769550771,213,0 +170769550819,214,0 +170769550868,214,0 +170769550916,214,0 +170769550966,214,0 +170769551015,214,0 +170769551063,214,0 +170769551113,214,0 +170769551161,215,0 +170769551208,215,0 +170769551256,215,0 +170769551304,215,0 +170769551354,215,0 +170769551402,215,0 +170769551450,215,0 +170769551498,214,0 +170769551547,214,0 +170769551595,213,0 +170769551643,213,0 +170769551691,213,0 +170769551739,213,0 +170769551787,213,0 +170769551835,214,0 +170769551883,214,0 +170769551931,214,0 +170769551978,214,0 +170769552028,214,0 +170769552077,215,0 +170769552127,214,0 +170769552175,215,0 +170769552223,215,0 +170769552271,215,0 +170769552319,214,0 +170769552367,214,0 +170769552415,215,0 +170769552463,213,0 +170769552512,213,0 +170769552560,213,0 +170769552608,213,0 +170769552657,213,0 +170769552705,213,0 +170769552753,213,0 +170769552801,213,0 +170769552851,214,0 +170769552899,214,0 +170769552948,214,0 +170769552996,214,0 +170769553046,214,0 +170769553094,215,0 +170769553142,215,0 +170769553190,214,0 +170769553238,214,0 +170769553287,214,0 +170769553337,213,0 +170769553385,213,0 +170769553433,213,0 +170769553481,213,0 +170769553529,213,0 +170769553578,213,0 +170769553628,213,0 +170769553677,213,0 +170769553725,214,0 +170769553774,214,0 +170769553823,214,0 +170769553871,214,0 +170769553919,214,0 +170769553967,214,0 +170769554017,214,0 +170769554066,214,0 +170769554116,214,0 +170769554164,213,0 +170769554212,213,0 +170769554260,212,0 +170769554307,213,0 +170769554355,213,0 +170769554403,213,0 +170769554451,213,0 +170769554499,213,0 +170769554547,214,0 +170769554595,214,0 +170769554643,214,0 +170769554691,214,0 +170769554739,214,0 +170769554787,214,0 +170769554835,215,0 +170769554884,214,0 +170769554934,214,0 +170769554981,214,0 +170769555029,213,0 +170769555077,213,0 +170769555125,213,0 +170769555173,213,0 +170769555221,213,0 +170769555269,213,0 +170769555317,214,0 +170769555365,214,0 +170769555412,214,0 +170769555462,214,0 +170769555510,214,0 +170769555557,214,0 +170769555606,214,0 +170769555653,215,0 +170769555701,215,0 +170769555751,215,0 +170769555799,214,0 +170769555847,215,0 +170769555895,213,0 +170769555943,213,0 +170769555990,213,0 +170769556038,213,0 +170769556086,213,0 +170769556134,213,0 +170769556184,214,0 +170769556232,213,0 +170769556281,213,0 +170769556329,214,0 +170769556377,213,0 +170769556425,214,0 +170769556473,214,0 +170769556523,214,0 +170769556571,214,0 +170769556619,214,0 +170769556667,214,0 +170769556714,214,0 +170769556764,213,0 +170769556812,213,0 +170769556861,213,0 +170769556909,213,0 +170769556959,213,0 +170769557007,213,0 +170769557055,213,0 +170769557103,214,0 +170769557151,214,0 +170769557200,214,0 +170769557248,214,0 +170769557298,214,0 +170769557347,215,0 +170769557395,214,0 +170769557443,215,0 +170769557491,214,0 +170769557541,214,0 +170769557589,213,0 +170769557638,213,0 +170769557688,213,0 +170769557737,213,0 +170769557787,213,0 +170769557835,213,0 +170769557884,214,0 +170769557932,213,0 +170769557980,214,0 +170769558030,214,0 +170769558079,214,0 +170769558127,214,0 +170769558175,214,0 +170769558223,214,0 +170769558271,214,0 +170769558319,214,0 +170769558368,214,0 +170769558416,214,0 +170769558464,213,0 +170769558512,213,0 +170769558560,213,0 +170769558608,213,0 +170769558656,213,0 +170769558704,213,0 +170769558752,213,0 +170769558800,213,0 +170769558849,213,0 +170769558897,214,0 +170769558947,214,0 +170769558996,214,0 +170769559046,214,0 +170769559093,214,0 +170769559143,214,0 +170769559193,214,0 +170769559242,214,0 +170769559290,215,0 +170769559338,213,0 +170769559387,213,0 +170769559435,213,0 +170769559484,213,0 +170769559532,213,0 +170769559580,213,0 +170769559628,213,0 +170769559676,214,0 +170769559724,214,0 +170769559773,214,0 +170769559821,214,0 +170769559869,214,0 +170769559917,214,0 +170769559964,214,0 +170769560012,214,0 +170769560060,215,0 +170769560108,215,0 +170769560156,214,0 +170769560204,213,0 +170769560252,213,0 +170769560299,213,0 +170769560347,213,0 +170769560395,213,0 +170769560443,213,0 +170769560493,214,0 +170769560540,214,0 +170769560588,214,0 +170769560636,214,0 +170769560684,214,0 +170769560732,214,0 +170769560780,215,0 +170769560828,215,0 +170769560876,215,0 +170769560924,214,0 +170769560971,215,0 +170769561019,214,0 +170769561067,213,0 +170769561115,213,0 +170769561163,213,0 +170769561213,214,0 +170769561261,214,0 +170769561310,214,0 +170769561358,214,0 +170769561406,214,0 +170769561455,214,0 +170769561505,215,0 +170769561553,215,0 +170769561602,215,0 +170769561652,215,0 +170769561701,215,0 +170769561749,215,0 +170769561799,215,0 +170769561847,215,0 +170769561896,213,0 +170769561944,213,0 +170769561992,213,0 +170769562040,213,0 +170769562088,214,0 +170769562136,214,0 +170769562184,214,0 +170769562233,214,0 +170769562283,214,0 +170769562333,214,0 +170769562382,214,0 +170769562430,215,0 +170769562480,215,0 +170769562528,215,0 +170769562576,215,0 +170769562623,215,0 +170769562671,215,0 +170769562719,214,0 +170769562767,213,0 +170769562815,213,0 +170769562863,213,0 +170769562913,213,0 +170769562961,214,0 +170769563010,214,0 +170769563060,214,0 +170769563109,214,0 +170769563159,214,0 +170769563207,214,0 +170769563255,214,0 +170769563304,214,0 +170769563354,214,0 +170769563402,215,0 +170769563450,214,0 +170769563498,214,0 +170769563546,215,0 +170769563595,215,0 +170769563643,213,0 +170769563693,213,0 +170769563741,213,0 +170769563789,213,0 +170769563837,213,0 +170769563885,213,0 +170769563933,213,0 +170769563981,214,0 +170769564030,214,0 +170769564078,214,0 +170769564127,214,0 +170769564175,214,0 +170769564225,214,0 +170769564273,214,0 +170769564321,214,0 +170769564369,215,0 +170769564418,215,0 +170769564466,214,0 +170769564514,213,0 +170769564562,213,0 +170769564612,213,0 +170769564661,213,0 +170769564711,213,0 +170769564760,213,0 +170769564808,214,0 +170769564858,214,0 +170769564906,214,0 +170769564955,214,0 +170769565005,214,0 +170769565053,214,0 +170769565101,215,0 +170769565149,215,0 +170769565197,215,0 +170769565244,215,0 +170769565292,215,0 +170769565340,213,0 +170769565388,213,0 +170769565436,213,0 +170769565484,213,0 +170769565532,214,0 +170769565582,213,0 +170769565630,214,0 +170769565679,214,0 +170769565727,214,0 +170769565777,214,0 +170769565826,214,0 +170769565876,215,0 +170769565925,215,0 +170769565975,215,0 +170769566024,215,0 +170769566074,215,0 +170769566122,215,0 +170769566171,215,0 +170769566219,213,0 +170769566267,213,0 +170769566317,213,0 +170769566365,213,0 +170769566413,213,0 +170769566462,213,0 +170769566512,214,0 +170769566560,214,0 +170769566609,214,0 +170769566659,214,0 +170769566708,214,0 +170769566756,215,0 +170769566804,215,0 +170769566852,215,0 +170769566900,215,0 +170769566949,215,0 +170769566997,215,0 +170769567045,213,0 +170769567095,213,0 +170769567145,213,0 +170769567192,213,0 +170769567240,213,0 +170769567288,214,0 +170769567336,213,0 +170769567384,213,0 +170769567432,214,0 +170769567480,214,0 +170769567528,214,0 +170769567576,214,0 +170769567624,215,0 +170769567672,215,0 +170769567721,214,0 +170769567771,215,0 +170769567819,215,0 +170769567868,214,0 +170769567918,213,0 +170769567967,213,0 +170769568015,213,0 +170769568063,213,0 +170769568113,213,0 +170769568161,213,0 +170769568209,213,0 +170769568258,214,0 +170769568308,214,0 +170769568356,214,0 +170769568403,214,0 +170769568451,214,0 +170769568501,215,0 +170769568550,215,0 +170769568600,215,0 +170769568650,214,0 +170769568699,215,0 +170769568749,214,0 +170769568798,213,0 +170769568846,213,0 +170769568894,213,0 +170769568942,213,0 +170769568990,214,0 +170769569038,213,0 +170769569086,213,0 +170769569135,213,0 +170769569185,214,0 +170769569233,214,0 +170769569281,214,0 +170769569329,214,0 +170769569377,214,0 +170769569426,214,0 +170769569474,215,0 +170769569522,215,0 +170769569570,215,0 +170769569618,214,0 +170769569668,213,0 +170769569716,213,0 +170769569764,213,0 +170769569812,213,0 +170769569861,213,0 +170769569911,213,0 +170769569960,214,0 +170769570008,214,0 +170769570056,214,0 +170769570104,214,0 +170769570153,214,0 +170769570201,214,0 +170769570251,214,0 +170769570299,215,0 +170769570347,214,0 +170769570395,215,0 +170769570444,215,0 +170769570492,213,0 +170769570542,213,0 +170769570590,213,0 +170769570638,213,0 +170769570687,213,0 +170769570737,213,0 +170769570786,214,0 +170769570836,214,0 +170769570884,214,0 +170769570931,214,0 +170769570981,214,0 +170769571031,214,0 +170769571080,215,0 +170769571128,215,0 +170769571176,215,0 +170769571224,215,0 +170769571272,215,0 +170769571320,214,0 +170769571368,213,0 +170769571415,213,0 +170769571463,213,0 +170769571511,213,0 +170769571559,213,0 +170769571608,214,0 +170769571658,214,0 +170769571706,214,0 +170769571754,214,0 +170769571802,214,0 +170769571851,214,0 +170769571899,214,0 +170769571947,215,0 +170769571997,215,0 +170769572045,215,0 +170769572094,215,0 +170769572144,214,0 +170769572192,214,0 +170769572240,213,0 +170769572288,213,0 +170769572336,213,0 +170769572385,214,0 +170769572435,214,0 +170769572483,214,0 +170769572532,214,0 +170769572580,214,0 +170769572628,214,0 +170769572676,214,0 +170769572726,214,0 +170769572773,215,0 +170769572823,215,0 +170769572871,215,0 +170769572920,215,0 +170769572968,215,0 +170769573016,215,0 +170769573064,214,0 +170769573114,213,0 +170769573161,213,0 +170769573211,214,0 +170769573260,214,0 +170769573308,214,0 +170769573358,214,0 +170769573407,214,0 +170769573455,214,0 +170769573505,214,0 +170769573554,214,0 +170769573602,214,0 +170769573650,215,0 +170769573700,215,0 +170769573748,215,0 +170769573796,215,0 +170769573845,215,0 +170769573895,214,0 +170769573943,214,0 +170769573992,213,0 +170769574041,213,0 +170769574091,214,0 +170769574139,214,0 +170769574188,214,0 +170769574236,214,0 +170769574284,214,0 +170769574334,214,0 +170769574383,214,0 +170769574431,214,0 +170769574479,215,0 +170769574529,215,0 +170769574577,215,0 +170769574624,215,0 +170769574672,215,0 +170769574722,214,0 +170769574770,214,0 +170769574819,214,0 +170769574867,213,0 +170769574915,213,0 +170769574963,214,0 +170769575011,214,0 +170769575061,214,0 +170769575108,214,0 +170769575156,214,0 +170769575204,214,0 +170769575252,214,0 +170769575300,215,0 +170769575348,215,0 +170769575396,215,0 +170769575446,215,0 +170769575494,215,0 +170769575542,215,0 +170769575591,215,0 +170769575641,214,0 +170769575689,213,0 +170769575737,213,0 +170769575785,213,0 +170769575834,213,0 +170769575882,213,0 +170769575931,213,0 +170769575979,214,0 +170769576027,214,0 +170769576075,214,0 +170769576123,214,0 +170769576171,214,0 +170769576221,214,0 +170769576270,215,0 +170769576320,215,0 +170769576369,215,0 +170769576417,214,0 +170769576465,214,0 +170769576513,213,0 +170769576561,213,0 +170769576609,213,0 +170769576657,213,0 +170769576705,213,0 +170769576754,213,0 +170769576802,213,0 +170769576852,213,0 +170769576900,214,0 +170769576948,214,0 +170769576997,214,0 +170769577045,214,0 +170769577093,214,0 +170769577141,214,0 +170769577190,214,0 +170769577240,214,0 +170769577288,214,0 +170769577336,214,0 +170769577385,213,0 +170769577435,213,0 +170769577482,213,0 +170769577530,213,0 +170769577578,213,0 +170769577626,213,0 +170769577674,213,0 +170769577722,213,0 +170769577770,213,0 +170769577818,214,0 +170769577866,214,0 +170769577915,214,0 +170769577965,214,0 +170769578012,214,0 +170769578062,215,0 +170769578110,215,0 +170769578159,215,0 +170769578207,214,0 +170769578255,213,0 +170769578303,213,0 +170769578351,213,0 +170769578401,213,0 +170769578449,214,0 +170769578498,214,0 +170769578548,214,0 +170769578596,214,0 +170769578644,214,0 +170769578693,214,0 +170769578743,215,0 +170769578792,215,0 +170769578840,215,0 +170769578888,215,0 +170769578937,215,0 +170769578985,215,0 +170769579033,214,0 +170769579081,213,0 +170769579131,213,0 +170769579179,213,0 +170769579228,213,0 +170769579276,213,0 +170769579324,214,0 +170769579372,214,0 +170769579420,214,0 +170769579468,214,0 +170769579516,214,0 +170769579564,214,0 +170769579612,214,0 +170769579661,214,0 +170769579709,215,0 +170769579759,215,0 +170769579807,215,0 +170769579855,214,0 +170769579904,214,0 +170769579954,213,0 +170769580003,213,0 +170769580051,213,0 +170769580099,213,0 +170769580147,213,0 +170769580196,213,0 +170769580244,214,0 +170769580292,214,0 +170769580342,213,0 +170769580391,214,0 +170769580439,214,0 +170769580487,214,0 +170769580535,214,0 +170769580585,214,0 +170769580633,214,0 +170769580681,215,0 +170769580730,215,0 +170769580778,214,0 +170769580826,213,0 +170769580875,213,0 +170769580923,213,0 +170769580971,213,0 +170769581019,213,0 +170769581069,213,0 +170769581117,214,0 +170769581165,213,0 +170769581212,214,0 +170769581260,214,0 +170769581310,214,0 +170769581358,214,0 +170769581406,214,0 +170769581454,214,0 +170769581501,215,0 +170769581549,215,0 +170769581597,215,0 +170769581645,214,0 +170769581693,213,0 +170769581741,213,0 +170769581791,213,0 +170769581839,213,0 +170769581886,213,0 +170769581936,213,0 +170769581984,214,0 +170769582032,214,0 +170769582080,214,0 +170769582128,214,0 +170769582177,214,0 +170769582225,214,0 +170769582275,214,0 +170769582323,215,0 +170769582372,215,0 +170769582420,215,0 +170769582468,215,0 +170769582518,215,0 +170769582566,213,0 +170769582614,213,0 +170769582661,213,0 +170769582709,214,0 +170769582759,214,0 +170769582807,214,0 +170769582856,214,0 +170769582904,214,0 +170769582952,216,0 +170769583002,215,0 +170769583050,215,0 +170769583098,215,0 +170769583145,215,0 +170769583193,215,0 +170769583241,215,0 +170769583289,215,0 +170769583337,215,0 +170769583387,214,0 +170769583435,213,0 +170769583483,213,0 +170769583531,213,0 +170769583579,214,0 +170769583628,214,0 +170769583676,214,0 +170769583724,214,0 +170769583772,214,0 +170769583821,214,0 +170769583869,215,0 +170769583919,215,0 +170769583968,215,0 +170769584018,215,0 +170769584067,215,0 +170769584115,215,0 +170769584163,215,0 +170769584213,215,0 +170769584262,213,0 +170769584310,213,0 +170769584358,213,0 +170769584406,213,0 +170769584455,214,0 +170769584503,214,0 +170769584551,214,0 +170769584599,214,0 +170769584649,214,0 +170769584697,214,0 +170769584745,214,0 +170769584793,214,0 +170769584841,214,0 +170769584889,215,0 +170769584937,215,0 +170769584985,215,0 +170769585032,215,0 +170769585082,215,0 +170769585132,213,0 +170769585179,213,0 +170769585229,213,0 +170769585277,213,0 +170769585325,213,0 +170769585373,213,0 +170769585421,213,0 +170769585469,213,0 +170769585518,213,0 +170769585566,213,0 +170769585614,214,0 +170769585662,214,0 +170769585711,214,0 +170769585761,214,0 +170769585809,214,0 +170769585858,214,0 +170769585907,214,0 +170769585956,214,0 +170769586004,213,0 +170769586052,213,0 +170769586102,213,0 +170769586150,213,0 +170769586199,213,0 +170769586247,213,0 +170769586296,213,0 +170769586344,213,0 +170769586392,213,0 +170769586440,214,0 +170769586490,214,0 +170769586538,214,0 +170769586586,214,0 +170769586633,214,0 +170769586681,214,0 +170769586729,214,0 +170769586779,214,0 +170769586827,214,0 +170769586876,213,0 +170769586924,213,0 +170769586973,213,0 +170769587021,213,0 +170769587069,213,0 +170769587117,213,0 +170769587165,213,0 +170769587213,214,0 +170769587260,214,0 +170769587310,214,0 +170769587358,214,0 +170769587406,214,0 +170769587454,215,0 +170769587501,214,0 +170769587549,215,0 +170769587597,214,0 +170769587645,214,0 +170769587694,214,0 +170769587742,213,0 +170769587790,213,0 +170769587838,213,0 +170769587887,214,0 +170769587935,214,0 +170769587985,214,0 +170769588033,214,0 +170769588081,214,0 +170769588130,214,0 +170769588178,214,0 +170769588228,214,0 +170769588275,215,0 +170769588323,215,0 +170769588371,215,0 +170769588419,215,0 +170769588467,215,0 +170769588515,214,0 +170769588565,213,0 +170769588613,213,0 +170769588661,213,0 +170769588709,213,0 +170769588757,214,0 +170769588805,213,0 +170769588853,214,0 +170769588901,214,0 +170769588948,214,0 +170769588996,214,0 +170769589046,214,0 +170769589094,214,0 +170769589141,215,0 +170769589189,215,0 +170769589237,215,0 +170769589287,215,0 +170769589335,215,0 +170769589382,214,0 +170769589432,213,0 +170769589480,213,0 +170769589528,213,0 +170769589577,213,0 +170769589626,214,0 +170769589674,214,0 +170769589722,214,0 +170769589770,214,0 +170769589818,214,0 +170769589866,214,0 +170769589914,215,0 +170769589961,215,0 +170769590009,214,0 +170769590057,215,0 +170769590105,215,0 +170769590153,215,0 +170769590201,215,0 +170769590249,215,0 +170769590297,214,0 +170769590345,213,0 +170769590393,213,0 +170769590441,213,0 +170769590489,213,0 +170769590538,213,0 +170769590586,214,0 +170769590634,214,0 +170769590682,214,0 +170769590731,214,0 +170769590779,214,0 +170769590827,214,0 +170769590875,214,0 +170769590923,215,0 +170769590970,215,0 +170769591020,215,0 +170769591068,215,0 +170769591116,214,0 +170769591163,213,0 +170769591211,213,0 +170769591259,213,0 +170769591307,213,0 +170769591355,213,0 +170769591403,214,0 +170769591450,213,0 +170769591498,214,0 +170769591546,214,0 +170769591594,214,0 +170769591642,214,0 +170769591690,214,0 +170769591738,214,0 +170769591786,215,0 +170769591835,215,0 +170769591883,215,0 +170769591931,215,0 +170769591979,214,0 +170769592027,213,0 +170769592075,213,0 +170769592123,213,0 +170769592171,213,0 +170769592219,213,0 +170769592267,213,0 +170769592314,213,0 +170769592362,214,0 +170769592410,213,0 +170769592458,213,0 +170769592506,214,0 +170769592555,214,0 +170769592605,214,0 +170769592653,214,0 +170769592700,214,0 +170769592748,214,0 +170769592796,215,0 +170769592844,214,0 +170769592892,213,0 +170769592940,213,0 +170769592988,213,0 +170769593035,213,0 +170769593085,213,0 +170769593133,213,0 +170769593181,213,0 +170769593230,213,0 +170769593278,214,0 +170769593328,214,0 +170769593375,214,0 +170769593425,214,0 +170769593473,214,0 +170769593521,214,0 +170769593569,215,0 +170769593617,214,0 +170769593665,214,0 +170769593714,214,0 +170769593764,213,0 +170769593813,213,0 +170769593861,213,0 +170769593911,213,0 +170769593959,213,0 +170769594008,213,0 +170769594058,213,0 +170769594107,214,0 +170769594155,214,0 +170769594203,214,0 +170769594253,214,0 +170769594301,214,0 +170769594350,214,0 +170769594398,214,0 +170769594448,214,0 +170769594495,214,0 +170769594543,214,0 +170769594591,214,0 +170769594639,213,0 +170769594687,213,0 +170769594735,213,0 +170769594782,213,0 +170769594830,213,0 +170769594878,213,0 +170769594928,214,0 +170769594976,214,0 +170769595024,214,0 +170769595073,214,0 +170769595121,214,0 +170769595169,214,0 +170769595217,215,0 +170769595267,215,0 +170769595316,215,0 +170769595364,215,0 +170769595412,215,0 +170769595460,214,0 +170769595508,213,0 +170769595556,213,0 +170769595603,213,0 +170769595651,213,0 +170769595701,213,0 +170769595749,214,0 +170769595797,214,0 +170769595846,214,0 +170769595894,214,0 +170769595942,214,0 +170769595989,214,0 +170769596037,214,0 +170769596085,215,0 +170769596133,215,0 +170769596181,215,0 +170769596229,215,0 +170769596277,214,0 +170769596325,214,0 +170769596372,213,0 +170769596420,213,0 +170769596468,213,0 +170769596516,213,0 +170769596566,213,0 +170769596614,213,0 +170769596662,213,0 +170769596710,214,0 +170769596759,214,0 +170769596807,214,0 +170769596855,214,0 +170769596903,214,0 +170769596951,214,0 +170769596999,214,0 +170769597046,215,0 +170769597096,215,0 +170769597144,214,0 +170769597192,214,0 +170769597240,213,0 +170769597288,213,0 +170769597337,213,0 +170769597385,213,0 +170769597433,213,0 +170769597481,213,0 +170769597531,213,0 +170769597580,214,0 +170769597628,214,0 +170769597676,214,0 +170769597726,214,0 +170769597775,214,0 +170769597825,214,0 +170769597874,215,0 +170769597922,214,0 +170769597970,214,0 +170769598018,215,0 +170769598066,215,0 +170769598115,213,0 +170769598163,213,0 +170769598213,213,0 +170769598261,213,0 +170769598310,213,0 +170769598358,214,0 +170769598406,214,0 +170769598454,214,0 +170769598504,214,0 +170769598552,214,0 +170769598600,214,0 +170769598648,214,0 +170769598696,214,0 +170769598744,215,0 +170769598791,215,0 +170769598839,215,0 +170769598887,214,0 +170769598937,213,0 +170769598985,213,0 +170769599032,213,0 +170769599080,213,0 +170769599128,213,0 +170769599176,213,0 +170769599225,213,0 +170769599273,214,0 +170769599323,214,0 +170769599370,214,0 +170769599418,214,0 +170769599466,214,0 +170769599514,215,0 +170769599563,215,0 +170769599611,215,0 +170769599659,215,0 +170769599707,214,0 +170769599755,214,0 +170769599803,214,0 +170769599851,213,0 +170769599899,213,0 +170769599948,213,0 +170769599997,213,0 diff --git a/laser_value/0212-10.csv b/laser_value/0212-10.csv new file mode 100644 index 0000000..4e06a60 --- /dev/null +++ b/laser_value/0212-10.csv @@ -0,0 +1,7445 @@ +timestamp,laser_value,event +170769600046,213,0 +170769600094,214,0 +170769600142,214,0 +170769600190,214,0 +170769600238,214,0 +170769600286,214,0 +170769600334,214,0 +170769600382,215,0 +170769600430,214,0 +170769600477,215,0 +170769600527,215,0 +170769600575,215,0 +170769600623,214,0 +170769600673,214,0 +170769600720,213,0 +170769600768,213,0 +170769600816,213,0 +170769600864,214,0 +170769600912,214,0 +170769600960,214,0 +170769601008,214,0 +170769601056,214,0 +170769601104,214,0 +170769601151,214,0 +170769601201,214,0 +170769601249,214,0 +170769601296,214,0 +170769601344,215,0 +170769601392,215,0 +170769601440,214,0 +170769601488,214,0 +170769601536,213,0 +170769601584,213,0 +170769601632,213,0 +170769601681,213,0 +170769601729,214,0 +170769601777,214,0 +170769601825,214,0 +170769601873,214,0 +170769601923,214,0 +170769601972,214,0 +170769602022,214,0 +170769602071,214,0 +170769602121,215,0 +170769602169,215,0 +170769602217,215,0 +170769602264,215,0 +170769602312,214,0 +170769602360,214,0 +170769602408,214,0 +170769602456,213,0 +170769602504,213,0 +170769602552,213,0 +170769602599,214,0 +170769602647,214,0 +170769602695,214,0 +170769602743,214,0 +170769602791,214,0 +170769602840,214,0 +170769602888,215,0 +170769602936,215,0 +170769602984,215,0 +170769603032,215,0 +170769603080,214,0 +170769603128,215,0 +170769603176,215,0 +170769603224,214,0 +170769603272,214,0 +170769603320,213,0 +170769603368,213,0 +170769603415,214,0 +170769603463,213,0 +170769603511,214,0 +170769603561,214,0 +170769603610,214,0 +170769603660,214,0 +170769603708,215,0 +170769603757,214,0 +170769603807,215,0 +170769603856,215,0 +170769603904,215,0 +170769603952,215,0 +170769604002,215,0 +170769604050,215,0 +170769604099,214,0 +170769604147,213,0 +170769604195,213,0 +170769604243,213,0 +170769604291,213,0 +170769604339,214,0 +170769604387,214,0 +170769604435,214,0 +170769604483,214,0 +170769604531,214,0 +170769604579,214,0 +170769604626,214,0 +170769604675,214,0 +170769604722,215,0 +170769604770,215,0 +170769604818,215,0 +170769604866,215,0 +170769604916,215,0 +170769604964,214,0 +170769605013,213,0 +170769605061,213,0 +170769605109,213,0 +170769605157,213,0 +170769605206,214,0 +170769605254,214,0 +170769605302,214,0 +170769605352,214,0 +170769605400,214,0 +170769605449,214,0 +170769605497,214,0 +170769605547,215,0 +170769605595,215,0 +170769605643,215,0 +170769605691,215,0 +170769605740,215,0 +170769605788,215,0 +170769605836,214,0 +170769605884,213,0 +170769605932,213,0 +170769605980,213,0 +170769606027,213,0 +170769606075,213,0 +170769606125,213,0 +170769606173,213,0 +170769606221,214,0 +170769606269,214,0 +170769606318,214,0 +170769606368,214,0 +170769606416,214,0 +170769606465,214,0 +170769606515,215,0 +170769606563,214,0 +170769606612,214,0 +170769606660,214,0 +170769606708,214,0 +170769606756,213,0 +170769606805,213,0 +170769606853,213,0 +170769606901,213,0 +170769606949,213,0 +170769606999,213,0 +170769607046,213,0 +170769607096,213,0 +170769607144,213,0 +170769607192,213,0 +170769607241,214,0 +170769607289,214,0 +170769607339,214,0 +170769607387,214,0 +170769607434,214,0 +170769607482,214,0 +170769607530,215,0 +170769607580,214,0 +170769607628,213,0 +170769607677,213,0 +170769607725,213,0 +170769607773,213,0 +170769607822,213,0 +170769607872,213,0 +170769607920,213,0 +170769607967,213,0 +170769608017,214,0 +170769608065,214,0 +170769608113,214,0 +170769608161,214,0 +170769608210,214,0 +170769608260,214,0 +170769608308,214,0 +170769608357,214,0 +170769608405,214,0 +170769608453,213,0 +170769608501,213,0 +170769608549,213,0 +170769608597,213,0 +170769608647,213,0 +170769608695,213,0 +170769608744,213,0 +170769608792,213,0 +170769608840,213,0 +170769608888,214,0 +170769608937,214,0 +170769608985,214,0 +170769609033,214,0 +170769609083,214,0 +170769609130,214,0 +170769609178,214,0 +170769609228,214,0 +170769609277,214,0 +170769609325,213,0 +170769609373,213,0 +170769609421,213,0 +170769609471,213,0 +170769609519,213,0 +170769609566,213,0 +170769609616,213,0 +170769609664,213,0 +170769609713,213,0 +170769609761,213,0 +170769609809,214,0 +170769609857,214,0 +170769609905,214,0 +170769609953,214,0 +170769610002,214,0 +170769610050,214,0 +170769610098,214,0 +170769610146,214,0 +170769610194,213,0 +170769610244,213,0 +170769610293,213,0 +170769610343,213,0 +170769610391,213,0 +170769610438,213,0 +170769610486,213,0 +170769610534,213,0 +170769610582,213,0 +170769610630,213,0 +170769610678,214,0 +170769610726,214,0 +170769610774,214,0 +170769610822,214,0 +170769610870,214,0 +170769610918,214,0 +170769610966,214,0 +170769611014,214,0 +170769611061,213,0 +170769611109,213,0 +170769611157,213,0 +170769611207,213,0 +170769611255,213,0 +170769611303,213,0 +170769611351,213,0 +170769611400,213,0 +170769611448,213,0 +170769611498,214,0 +170769611547,213,0 +170769611597,214,0 +170769611645,214,0 +170769611693,214,0 +170769611741,214,0 +170769611789,214,0 +170769611838,214,0 +170769611886,214,0 +170769611935,213,0 +170769611983,213,0 +170769612033,213,0 +170769612081,213,0 +170769612129,213,0 +170769612178,213,0 +170769612228,213,0 +170769612276,213,0 +170769612325,213,0 +170769612373,213,0 +170769612421,214,0 +170769612471,214,0 +170769612520,214,0 +170769612568,214,0 +170769612618,214,0 +170769612666,214,0 +170769612714,214,0 +170769612761,214,0 +170769612811,215,0 +170769612859,215,0 +170769612907,215,0 +170769612955,215,0 +170769613002,215,0 +170769613050,215,0 +170769613098,215,0 +170769613148,214,0 +170769613197,213,0 +170769613247,213,0 +170769613295,213,0 +170769613343,213,0 +170769613391,213,0 +170769613438,213,0 +170769613486,214,0 +170769613534,214,0 +170769613582,214,0 +170769613630,214,0 +170769613678,214,0 +170769613726,214,0 +170769613775,214,0 +170769613825,214,0 +170769613873,215,0 +170769613921,215,0 +170769613970,215,0 +170769614020,215,0 +170769614069,214,0 +170769614119,214,0 +170769614167,214,0 +170769614216,214,0 +170769614264,214,0 +170769614312,214,0 +170769614361,214,0 +170769614409,214,0 +170769614457,214,0 +170769614505,214,0 +170769614555,215,0 +170769614603,215,0 +170769614651,215,0 +170769614699,215,0 +170769614748,215,0 +170769614798,215,0 +170769614847,214,0 +170769614895,215,0 +170769614943,213,0 +170769614991,213,0 +170769615040,213,0 +170769615088,213,0 +170769615136,214,0 +170769615184,214,0 +170769615234,214,0 +170769615282,214,0 +170769615331,214,0 +170769615381,214,0 +170769615429,214,0 +170769615478,214,0 +170769615526,214,0 +170769615574,215,0 +170769615622,215,0 +170769615671,215,0 +170769615719,215,0 +170769615767,214,0 +170769615815,213,0 +170769615865,213,0 +170769615912,213,0 +170769615962,213,0 +170769616010,214,0 +170769616059,214,0 +170769616109,214,0 +170769616157,214,0 +170769616205,214,0 +170769616253,214,0 +170769616302,215,0 +170769616352,215,0 +170769616401,215,0 +170769616449,215,0 +170769616499,215,0 +170769616547,214,0 +170769616596,215,0 +170769616644,214,0 +170769616692,214,0 +170769616740,214,0 +170769616788,214,0 +170769616837,214,0 +170769616885,214,0 +170769616933,214,0 +170769616983,214,0 +170769617032,215,0 +170769617080,215,0 +170769617129,215,0 +170769617177,215,0 +170769617225,215,0 +170769617273,215,0 +170769617321,216,0 +170769617370,215,0 +170769617420,215,0 +170769617468,214,0 +170769617517,214,0 +170769617565,213,0 +170769617615,214,0 +170769617663,214,0 +170769617712,214,0 +170769617762,214,0 +170769617811,215,0 +170769617860,214,0 +170769617908,215,0 +170769617956,214,0 +170769618004,215,0 +170769618054,215,0 +170769618101,215,0 +170769618149,215,0 +170769618197,215,0 +170769618247,215,0 +170769618295,215,0 +170769618343,215,0 +170769618391,214,0 +170769618439,213,0 +170769618488,214,0 +170769618536,214,0 +170769618584,214,0 +170769618632,214,0 +170769618680,214,0 +170769618728,214,0 +170769618776,214,0 +170769618824,215,0 +170769618873,214,0 +170769618921,215,0 +170769618970,215,0 +170769619018,215,0 +170769619066,215,0 +170769619116,215,0 +170769619164,215,0 +170769619213,215,0 +170769619263,213,0 +170769619311,213,0 +170769619360,213,0 +170769619408,213,0 +170769619456,213,0 +170769619504,214,0 +170769619552,214,0 +170769619600,214,0 +170769619648,214,0 +170769619696,214,0 +170769619745,214,0 +170769619793,214,0 +170769619841,215,0 +170769619889,214,0 +170769619938,214,0 +170769619988,215,0 +170769620037,214,0 +170769620085,215,0 +170769620135,213,0 +170769620183,213,0 +170769620232,213,0 +170769620282,213,0 +170769620330,213,0 +170769620378,213,0 +170769620427,213,0 +170769620475,214,0 +170769620523,214,0 +170769620571,214,0 +170769620620,214,0 +170769620668,214,0 +170769620716,214,0 +170769620766,214,0 +170769620813,214,0 +170769620863,214,0 +170769620911,214,0 +170769620958,214,0 +170769621006,213,0 +170769621054,213,0 +170769621102,213,0 +170769621150,213,0 +170769621198,213,0 +170769621245,213,0 +170769621293,213,0 +170769621341,213,0 +170769621389,214,0 +170769621437,213,0 +170769621487,214,0 +170769621536,214,0 +170769621586,214,0 +170769621634,214,0 +170769621681,214,0 +170769621731,214,0 +170769621779,214,0 +170769621827,214,0 +170769621875,213,0 +170769621924,213,0 +170769621974,213,0 +170769622022,213,0 +170769622071,214,0 +170769622121,214,0 +170769622169,214,0 +170769622217,214,0 +170769622265,214,0 +170769622313,214,0 +170769622362,214,0 +170769622410,214,0 +170769622458,214,0 +170769622506,215,0 +170769622554,215,0 +170769622602,215,0 +170769622649,214,0 +170769622699,214,0 +170769622747,213,0 +170769622796,213,0 +170769622844,213,0 +170769622892,214,0 +170769622940,213,0 +170769622990,213,0 +170769623037,213,0 +170769623085,214,0 +170769623133,214,0 +170769623181,214,0 +170769623231,214,0 +170769623278,214,0 +170769623326,214,0 +170769623374,215,0 +170769623422,214,0 +170769623470,215,0 +170769623517,214,0 +170769623565,213,0 +170769623613,213,0 +170769623661,213,0 +170769623709,213,0 +170769623757,213,0 +170769623804,213,0 +170769623852,213,0 +170769623902,214,0 +170769623951,214,0 +170769623999,214,0 +170769624047,214,0 +170769624095,214,0 +170769624144,215,0 +170769624192,214,0 +170769624240,214,0 +170769624288,215,0 +170769624336,214,0 +170769624384,214,0 +170769624432,213,0 +170769624481,213,0 +170769624529,213,0 +170769624577,213,0 +170769624626,213,0 +170769624674,213,0 +170769624722,213,0 +170769624769,214,0 +170769624817,214,0 +170769624865,214,0 +170769624913,214,0 +170769624961,214,0 +170769625009,214,0 +170769625057,214,0 +170769625105,215,0 +170769625152,214,0 +170769625200,215,0 +170769625248,214,0 +170769625296,214,0 +170769625346,213,0 +170769625394,213,0 +170769625441,213,0 +170769625491,213,0 +170769625539,213,0 +170769625587,213,0 +170769625635,213,0 +170769625682,214,0 +170769625730,214,0 +170769625778,214,0 +170769625828,214,0 +170769625875,214,0 +170769625923,214,0 +170769625971,214,0 +170769626021,214,0 +170769626069,215,0 +170769626117,215,0 +170769626166,213,0 +170769626214,213,0 +170769626262,213,0 +170769626311,213,0 +170769626359,213,0 +170769626407,213,0 +170769626455,213,0 +170769626503,213,0 +170769626553,213,0 +170769626600,214,0 +170769626648,214,0 +170769626696,214,0 +170769626746,214,0 +170769626794,214,0 +170769626843,214,0 +170769626891,214,0 +170769626939,215,0 +170769626987,214,0 +170769627035,213,0 +170769627083,213,0 +170769627132,213,0 +170769627182,213,0 +170769627231,213,0 +170769627281,213,0 +170769627329,213,0 +170769627378,213,0 +170769627426,213,0 +170769627476,213,0 +170769627523,214,0 +170769627573,214,0 +170769627622,214,0 +170769627670,214,0 +170769627718,214,0 +170769627766,214,0 +170769627814,214,0 +170769627864,214,0 +170769627912,213,0 +170769627959,213,0 +170769628007,213,0 +170769628055,213,0 +170769628103,213,0 +170769628151,213,0 +170769628199,213,0 +170769628247,213,0 +170769628295,214,0 +170769628343,214,0 +170769628391,214,0 +170769628439,214,0 +170769628487,214,0 +170769628534,214,0 +170769628584,214,0 +170769628632,214,0 +170769628682,214,0 +170769628729,215,0 +170769628777,213,0 +170769628825,213,0 +170769628875,213,0 +170769628923,213,0 +170769628972,213,0 +170769629022,213,0 +170769629070,213,0 +170769629118,213,0 +170769629167,213,0 +170769629215,214,0 +170769629263,214,0 +170769629311,214,0 +170769629359,214,0 +170769629407,214,0 +170769629455,214,0 +170769629503,214,0 +170769629551,215,0 +170769629600,214,0 +170769629650,213,0 +170769629699,213,0 +170769629747,213,0 +170769629797,213,0 +170769629846,213,0 +170769629894,213,0 +170769629942,213,0 +170769629990,213,0 +170769630038,213,0 +170769630086,214,0 +170769630135,214,0 +170769630183,214,0 +170769630231,214,0 +170769630279,214,0 +170769630327,214,0 +170769630375,215,0 +170769630423,214,0 +170769630471,214,0 +170769630520,213,0 +170769630570,213,0 +170769630619,214,0 +170769630667,214,0 +170769630716,214,0 +170769630766,214,0 +170769630814,214,0 +170769630862,214,0 +170769630910,214,0 +170769630957,214,0 +170769631007,214,0 +170769631055,215,0 +170769631104,215,0 +170769631152,215,0 +170769631200,214,0 +170769631248,214,0 +170769631296,215,0 +170769631344,215,0 +170769631392,213,0 +170769631440,213,0 +170769631489,213,0 +170769631539,214,0 +170769631587,214,0 +170769631635,214,0 +170769631684,214,0 +170769631732,214,0 +170769631780,214,0 +170769631830,214,0 +170769631878,214,0 +170769631926,214,0 +170769631974,214,0 +170769632022,215,0 +170769632070,215,0 +170769632118,215,0 +170769632166,214,0 +170769632214,214,0 +170769632263,213,0 +170769632311,213,0 +170769632361,213,0 +170769632409,214,0 +170769632458,214,0 +170769632506,213,0 +170769632554,214,0 +170769632602,214,0 +170769632650,214,0 +170769632698,214,0 +170769632747,214,0 +170769632795,215,0 +170769632845,214,0 +170769632894,215,0 +170769632942,215,0 +170769632990,214,0 +170769633038,214,0 +170769633086,213,0 +170769633134,213,0 +170769633183,213,0 +170769633231,213,0 +170769633279,213,0 +170769633327,214,0 +170769633377,213,0 +170769633426,214,0 +170769633474,214,0 +170769633524,214,0 +170769633572,214,0 +170769633621,214,0 +170769633669,215,0 +170769633717,214,0 +170769633765,214,0 +170769633815,215,0 +170769633864,214,0 +170769633912,215,0 +170769633962,213,0 +170769634010,213,0 +170769634058,213,0 +170769634106,213,0 +170769634155,213,0 +170769634204,213,0 +170769634252,214,0 +170769634302,214,0 +170769634350,214,0 +170769634398,214,0 +170769634447,214,0 +170769634497,214,0 +170769634545,214,0 +170769634593,214,0 +170769634642,214,0 +170769634690,215,0 +170769634738,215,0 +170769634786,215,0 +170769634835,213,0 +170769634883,213,0 +170769634931,213,0 +170769634979,213,0 +170769635027,213,0 +170769635075,213,0 +170769635125,214,0 +170769635174,214,0 +170769635224,214,0 +170769635272,214,0 +170769635321,214,0 +170769635371,214,0 +170769635419,214,0 +170769635466,215,0 +170769635514,215,0 +170769635564,215,0 +170769635612,215,0 +170769635660,214,0 +170769635709,213,0 +170769635757,213,0 +170769635805,213,0 +170769635855,214,0 +170769635903,214,0 +170769635950,214,0 +170769635998,214,0 +170769636046,214,0 +170769636094,214,0 +170769636142,214,0 +170769636192,214,0 +170769636240,215,0 +170769636288,214,0 +170769636336,214,0 +170769636385,215,0 +170769636433,215,0 +170769636483,215,0 +170769636531,214,0 +170769636580,213,0 +170769636630,213,0 +170769636677,213,0 +170769636725,214,0 +170769636773,214,0 +170769636823,214,0 +170769636871,214,0 +170769636920,214,0 +170769636968,214,0 +170769637016,214,0 +170769637066,214,0 +170769637113,215,0 +170769637161,215,0 +170769637209,215,0 +170769637259,216,0 +170769637307,215,0 +170769637356,215,0 +170769637404,214,0 +170769637453,213,0 +170769637501,213,0 +170769637549,213,0 +170769637599,213,0 +170769637647,214,0 +170769637695,214,0 +170769637744,214,0 +170769637792,214,0 +170769637842,214,0 +170769637890,214,0 +170769637938,214,0 +170769637985,215,0 +170769638035,214,0 +170769638084,215,0 +170769638132,215,0 +170769638182,215,0 +170769638231,214,0 +170769638279,213,0 +170769638327,213,0 +170769638377,213,0 +170769638426,213,0 +170769638474,213,0 +170769638524,213,0 +170769638571,214,0 +170769638619,214,0 +170769638667,214,0 +170769638717,214,0 +170769638765,214,0 +170769638813,214,0 +170769638862,214,0 +170769638910,214,0 +170769638959,215,0 +170769639007,214,0 +170769639055,215,0 +170769639105,214,0 +170769639153,213,0 +170769639202,213,0 +170769639250,213,0 +170769639300,214,0 +170769639348,213,0 +170769639397,213,0 +170769639445,213,0 +170769639493,214,0 +170769639541,214,0 +170769639589,214,0 +170769639637,214,0 +170769639685,214,0 +170769639733,215,0 +170769639781,215,0 +170769639830,214,0 +170769639878,214,0 +170769639926,214,0 +170769639976,214,0 +170769640023,213,0 +170769640073,213,0 +170769640121,213,0 +170769640170,213,0 +170769640220,213,0 +170769640270,214,0 +170769640317,214,0 +170769640367,214,0 +170769640415,214,0 +170769640463,214,0 +170769640512,214,0 +170769640560,214,0 +170769640608,214,0 +170769640656,214,0 +170769640704,214,0 +170769640753,214,0 +170769640803,214,0 +170769640851,214,0 +170769640899,213,0 +170769640948,213,0 +170769640996,213,0 +170769641046,213,0 +170769641094,213,0 +170769641143,213,0 +170769641191,213,0 +170769641239,213,0 +170769641288,214,0 +170769641336,214,0 +170769641386,214,0 +170769641435,214,0 +170769641485,214,0 +170769641534,214,0 +170769641582,214,0 +170769641630,214,0 +170769641678,214,0 +170769641726,213,0 +170769641776,213,0 +170769641825,213,0 +170769641875,213,0 +170769641923,213,0 +170769641972,213,0 +170769642020,213,0 +170769642070,213,0 +170769642118,213,0 +170769642167,213,0 +170769642215,214,0 +170769642264,214,0 +170769642312,214,0 +170769642360,214,0 +170769642408,214,0 +170769642458,214,0 +170769642505,214,0 +170769642553,214,0 +170769642601,213,0 +170769642649,213,0 +170769642697,213,0 +170769642745,213,0 +170769642793,213,0 +170769642841,213,0 +170769642890,213,0 +170769642938,213,0 +170769642987,214,0 +170769643035,214,0 +170769643083,214,0 +170769643131,214,0 +170769643179,215,0 +170769643227,214,0 +170769643276,214,0 +170769643324,215,0 +170769643374,214,0 +170769643421,214,0 +170769643469,213,0 +170769643517,213,0 +170769643565,213,0 +170769643615,213,0 +170769643663,213,0 +170769643712,213,0 +170769643760,214,0 +170769643808,214,0 +170769643858,214,0 +170769643906,214,0 +170769643955,214,0 +170769644003,214,0 +170769644051,214,0 +170769644099,215,0 +170769644147,215,0 +170769644195,215,0 +170769644244,214,0 +170769644294,214,0 +170769644343,213,0 +170769644391,213,0 +170769644439,213,0 +170769644488,213,0 +170769644536,213,0 +170769644584,214,0 +170769644632,214,0 +170769644680,214,0 +170769644728,214,0 +170769644777,214,0 +170769644825,214,0 +170769644873,214,0 +170769644921,215,0 +170769644970,215,0 +170769645018,215,0 +170769645066,214,0 +170769645114,215,0 +170769645161,214,0 +170769645209,213,0 +170769645257,213,0 +170769645305,213,0 +170769645353,214,0 +170769645401,214,0 +170769645450,214,0 +170769645498,214,0 +170769645546,214,0 +170769645594,214,0 +170769645642,214,0 +170769645689,214,0 +170769645737,215,0 +170769645785,215,0 +170769645834,215,0 +170769645882,215,0 +170769645930,215,0 +170769645978,214,0 +170769646026,214,0 +170769646074,213,0 +170769646121,213,0 +170769646169,213,0 +170769646217,213,0 +170769646265,214,0 +170769646313,214,0 +170769646361,214,0 +170769646408,214,0 +170769646456,214,0 +170769646504,214,0 +170769646552,214,0 +170769646602,214,0 +170769646651,214,0 +170769646699,215,0 +170769646748,215,0 +170769646796,214,0 +170769646844,214,0 +170769646892,213,0 +170769646940,213,0 +170769646988,213,0 +170769647037,213,0 +170769647085,213,0 +170769647133,213,0 +170769647181,213,0 +170769647230,214,0 +170769647278,214,0 +170769647326,214,0 +170769647374,214,0 +170769647424,214,0 +170769647472,215,0 +170769647521,215,0 +170769647569,215,0 +170769647618,215,0 +170769647666,215,0 +170769647714,214,0 +170769647762,213,0 +170769647812,213,0 +170769647859,213,0 +170769647907,213,0 +170769647957,214,0 +170769648005,214,0 +170769648054,214,0 +170769648104,214,0 +170769648153,214,0 +170769648203,214,0 +170769648251,214,0 +170769648300,214,0 +170769648348,215,0 +170769648396,215,0 +170769648444,215,0 +170769648494,215,0 +170769648542,214,0 +170769648590,214,0 +170769648638,213,0 +170769648686,213,0 +170769648733,213,0 +170769648783,213,0 +170769648831,213,0 +170769648879,213,0 +170769648926,214,0 +170769648974,214,0 +170769649022,214,0 +170769649070,214,0 +170769649118,214,0 +170769649166,214,0 +170769649215,215,0 +170769649263,214,0 +170769649311,215,0 +170769649359,215,0 +170769649407,215,0 +170769649456,214,0 +170769649504,213,0 +170769649554,213,0 +170769649602,213,0 +170769649650,213,0 +170769649699,213,0 +170769649747,214,0 +170769649795,214,0 +170769649844,214,0 +170769649894,214,0 +170769649942,214,0 +170769649990,214,0 +170769650037,214,0 +170769650085,214,0 +170769650133,214,0 +170769650181,215,0 +170769650229,215,0 +170769650277,214,0 +170769650325,214,0 +170769650373,213,0 +170769650420,213,0 +170769650468,213,0 +170769650516,213,0 +170769650564,213,0 +170769650611,213,0 +170769650659,214,0 +170769650707,213,0 +170769650755,214,0 +170769650803,214,0 +170769650851,214,0 +170769650900,214,0 +170769650948,214,0 +170769650996,214,0 +170769651044,214,0 +170769651092,215,0 +170769651142,215,0 +170769651190,214,0 +170769651238,213,0 +170769651285,213,0 +170769651333,213,0 +170769651381,213,0 +170769651429,213,0 +170769651477,214,0 +170769651525,213,0 +170769651573,213,0 +170769651620,214,0 +170769651670,214,0 +170769651719,214,0 +170769651767,214,0 +170769651815,214,0 +170769651863,214,0 +170769651911,215,0 +170769651959,215,0 +170769652007,215,0 +170769652054,214,0 +170769652102,213,0 +170769652150,213,0 +170769652198,213,0 +170769652246,213,0 +170769652294,213,0 +170769652342,213,0 +170769652391,213,0 +170769652439,214,0 +170769652487,214,0 +170769652535,214,0 +170769652583,214,0 +170769652632,214,0 +170769652680,215,0 +170769652728,215,0 +170769652776,214,0 +170769652824,214,0 +170769652872,215,0 +170769652922,214,0 +170769652970,213,0 +170769653019,213,0 +170769653067,213,0 +170769653115,213,0 +170769653163,213,0 +170769653211,213,0 +170769653258,214,0 +170769653306,214,0 +170769653354,214,0 +170769653402,214,0 +170769653450,214,0 +170769653499,214,0 +170769653547,214,0 +170769653595,214,0 +170769653643,214,0 +170769653691,215,0 +170769653738,214,0 +170769653786,214,0 +170769653834,213,0 +170769653882,213,0 +170769653930,213,0 +170769653979,213,0 +170769654027,213,0 +170769654075,213,0 +170769654123,214,0 +170769654171,214,0 +170769654219,214,0 +170769654268,214,0 +170769654316,214,0 +170769654364,214,0 +170769654412,215,0 +170769654461,215,0 +170769654509,214,0 +170769654557,214,0 +170769654605,215,0 +170769654653,213,0 +170769654701,213,0 +170769654749,213,0 +170769654798,213,0 +170769654848,213,0 +170769654897,213,0 +170769654947,213,0 +170769654995,213,0 +170769655043,214,0 +170769655092,214,0 +170769655140,214,0 +170769655190,214,0 +170769655238,215,0 +170769655286,214,0 +170769655333,214,0 +170769655381,215,0 +170769655429,214,0 +170769655477,215,0 +170769655525,213,0 +170769655575,213,0 +170769655623,213,0 +170769655670,213,0 +170769655720,213,0 +170769655770,213,0 +170769655818,213,0 +170769655865,214,0 +170769655913,214,0 +170769655963,214,0 +170769656011,214,0 +170769656059,214,0 +170769656108,214,0 +170769656158,214,0 +170769656206,214,0 +170769656254,214,0 +170769656302,214,0 +170769656350,215,0 +170769656398,213,0 +170769656447,213,0 +170769656497,213,0 +170769656544,213,0 +170769656594,213,0 +170769656643,213,0 +170769656691,213,0 +170769656739,214,0 +170769656789,214,0 +170769656837,214,0 +170769656886,214,0 +170769656934,214,0 +170769656984,215,0 +170769657033,215,0 +170769657081,214,0 +170769657129,214,0 +170769657177,214,0 +170769657225,214,0 +170769657273,213,0 +170769657321,213,0 +170769657369,213,0 +170769657416,213,0 +170769657466,213,0 +170769657515,213,0 +170769657563,213,0 +170769657613,213,0 +170769657662,213,0 +170769657712,213,0 +170769657760,213,0 +170769657808,214,0 +170769657856,214,0 +170769657904,214,0 +170769657951,214,0 +170769658001,214,0 +170769658050,215,0 +170769658100,213,0 +170769658148,213,0 +170769658195,213,0 +170769658243,213,0 +170769658291,213,0 +170769658339,213,0 +170769658387,213,0 +170769658437,214,0 +170769658485,214,0 +170769658533,214,0 +170769658581,214,0 +170769658630,214,0 +170769658678,214,0 +170769658727,214,0 +170769658777,214,0 +170769658825,214,0 +170769658873,215,0 +170769658921,214,0 +170769658969,213,0 +170769659018,213,0 +170769659066,213,0 +170769659114,213,0 +170769659162,213,0 +170769659210,214,0 +170769659258,213,0 +170769659305,214,0 +170769659355,214,0 +170769659403,214,0 +170769659451,214,0 +170769659500,214,0 +170769659548,215,0 +170769659596,215,0 +170769659644,215,0 +170769659692,215,0 +170769659740,214,0 +170769659788,214,0 +170769659836,213,0 +170769659884,213,0 +170769659932,213,0 +170769659980,213,0 +170769660027,214,0 +170769660075,214,0 +170769660123,214,0 +170769660171,214,0 +170769660221,214,0 +170769660269,214,0 +170769660317,215,0 +170769660366,215,0 +170769660416,215,0 +170769660463,215,0 +170769660513,215,0 +170769660562,214,0 +170769660610,215,0 +170769660660,214,0 +170769660709,213,0 +170769660759,213,0 +170769660807,213,0 +170769660855,213,0 +170769660903,214,0 +170769660952,214,0 +170769661000,214,0 +170769661050,214,0 +170769661098,214,0 +170769661147,214,0 +170769661195,214,0 +170769661243,214,0 +170769661291,215,0 +170769661339,215,0 +170769661387,215,0 +170769661435,214,0 +170769661483,215,0 +170769661531,214,0 +170769661579,213,0 +170769661627,213,0 +170769661674,213,0 +170769661722,213,0 +170769661770,214,0 +170769661818,214,0 +170769661866,214,0 +170769661914,214,0 +170769661962,214,0 +170769662010,214,0 +170769662058,214,0 +170769662107,214,0 +170769662157,215,0 +170769662204,214,0 +170769662252,215,0 +170769662300,215,0 +170769662348,214,0 +170769662396,214,0 +170769662446,213,0 +170769662493,213,0 +170769662541,213,0 +170769662591,213,0 +170769662640,214,0 +170769662688,213,0 +170769662736,213,0 +170769662786,214,0 +170769662835,214,0 +170769662883,214,0 +170769662933,215,0 +170769662981,215,0 +170769663028,214,0 +170769663078,214,0 +170769663126,214,0 +170769663174,214,0 +170769663222,214,0 +170769663270,214,0 +170769663318,213,0 +170769663366,213,0 +170769663414,213,0 +170769663462,213,0 +170769663511,213,0 +170769663559,213,0 +170769663607,213,0 +170769663655,214,0 +170769663704,214,0 +170769663754,214,0 +170769663802,214,0 +170769663850,214,0 +170769663898,214,0 +170769663946,214,0 +170769663994,214,0 +170769664042,214,0 +170769664090,214,0 +170769664139,213,0 +170769664187,213,0 +170769664235,213,0 +170769664283,213,0 +170769664331,213,0 +170769664381,213,0 +170769664430,213,0 +170769664478,213,0 +170769664526,214,0 +170769664575,214,0 +170769664625,214,0 +170769664673,214,0 +170769664722,214,0 +170769664772,214,0 +170769664820,214,0 +170769664868,214,0 +170769664917,214,0 +170769664967,214,0 +170769665015,213,0 +170769665063,213,0 +170769665112,213,0 +170769665162,213,0 +170769665211,213,0 +170769665261,214,0 +170769665309,214,0 +170769665358,214,0 +170769665408,214,0 +170769665456,214,0 +170769665504,215,0 +170769665552,214,0 +170769665599,214,0 +170769665649,215,0 +170769665697,215,0 +170769665745,215,0 +170769665793,215,0 +170769665841,214,0 +170769665889,213,0 +170769665937,213,0 +170769665985,213,0 +170769666034,213,0 +170769666084,213,0 +170769666132,214,0 +170769666181,214,0 +170769666229,214,0 +170769666277,214,0 +170769666325,214,0 +170769666373,214,0 +170769666422,214,0 +170769666472,214,0 +170769666521,214,0 +170769666569,214,0 +170769666617,215,0 +170769666667,214,0 +170769666715,214,0 +170769666764,213,0 +170769666814,213,0 +170769666863,213,0 +170769666913,213,0 +170769666961,213,0 +170769667010,213,0 +170769667060,214,0 +170769667109,213,0 +170769667157,214,0 +170769667205,214,0 +170769667253,214,0 +170769667302,214,0 +170769667352,214,0 +170769667401,214,0 +170769667449,214,0 +170769667499,214,0 +170769667547,214,0 +170769667596,213,0 +170769667644,213,0 +170769667692,213,0 +170769667740,213,0 +170769667790,213,0 +170769667837,213,0 +170769667887,213,0 +170769667936,213,0 +170769667986,213,0 +170769668034,214,0 +170769668082,214,0 +170769668131,214,0 +170769668179,214,0 +170769668227,214,0 +170769668277,214,0 +170769668326,214,0 +170769668376,214,0 +170769668425,214,0 +170769668475,213,0 +170769668525,213,0 +170769668574,213,0 +170769668622,213,0 +170769668672,213,0 +170769668721,213,0 +170769668771,213,0 +170769668819,213,0 +170769668868,213,0 +170769668918,214,0 +170769668966,214,0 +170769669015,214,0 +170769669065,214,0 +170769669114,214,0 +170769669162,214,0 +170769669210,214,0 +170769669258,214,0 +170769669307,213,0 +170769669357,213,0 +170769669405,214,0 +170769669453,214,0 +170769669502,214,0 +170769669552,214,0 +170769669600,214,0 +170769669648,214,0 +170769669695,214,0 +170769669743,214,0 +170769669791,215,0 +170769669839,214,0 +170769669887,214,0 +170769669937,214,0 +170769669985,214,0 +170769670032,215,0 +170769670080,215,0 +170769670130,214,0 +170769670178,213,0 +170769670227,213,0 +170769670275,213,0 +170769670325,214,0 +170769670373,214,0 +170769670421,214,0 +170769670469,214,0 +170769670517,214,0 +170769670565,215,0 +170769670612,215,0 +170769670660,215,0 +170769670708,215,0 +170769670756,215,0 +170769670804,215,0 +170769670852,215,0 +170769670900,215,0 +170769670947,214,0 +170769670997,214,0 +170769671045,213,0 +170769671093,214,0 +170769671142,214,0 +170769671190,214,0 +170769671240,214,0 +170769671289,214,0 +170769671337,214,0 +170769671385,214,0 +170769671433,214,0 +170769671481,214,0 +170769671531,214,0 +170769671579,214,0 +170769671626,215,0 +170769671674,215,0 +170769671724,215,0 +170769671773,215,0 +170769671821,215,0 +170769671871,214,0 +170769671920,213,0 +170769671968,213,0 +170769672018,213,0 +170769672066,213,0 +170769672115,213,0 +170769672163,213,0 +170769672211,214,0 +170769672259,214,0 +170769672308,214,0 +170769672356,214,0 +170769672404,214,0 +170769672454,214,0 +170769672502,215,0 +170769672550,214,0 +170769672598,214,0 +170769672647,214,0 +170769672695,214,0 +170769672743,214,0 +170769672791,213,0 +170769672839,213,0 +170769672887,213,0 +170769672935,213,0 +170769672983,213,0 +170769673031,214,0 +170769673079,214,0 +170769673127,214,0 +170769673175,214,0 +170769673223,214,0 +170769673271,214,0 +170769673319,214,0 +170769673367,214,0 +170769673416,214,0 +170769673464,214,0 +170769673513,215,0 +170769673561,216,0 +170769673609,213,0 +170769673657,213,0 +170769673707,213,0 +170769673756,213,0 +170769673804,213,0 +170769673852,213,0 +170769673900,214,0 +170769673948,214,0 +170769673995,214,0 +170769674043,214,0 +170769674093,214,0 +170769674141,214,0 +170769674190,214,0 +170769674240,215,0 +170769674289,215,0 +170769674337,215,0 +170769674385,214,0 +170769674433,214,0 +170769674481,213,0 +170769674529,213,0 +170769674577,213,0 +170769674625,213,0 +170769674673,213,0 +170769674721,214,0 +170769674769,214,0 +170769674818,214,0 +170769674867,214,0 +170769674917,214,0 +170769674967,215,0 +170769675015,215,0 +170769675064,214,0 +170769675112,215,0 +170769675162,215,0 +170769675209,215,0 +170769675257,215,0 +170769675305,214,0 +170769675355,213,0 +170769675403,213,0 +170769675451,213,0 +170769675500,213,0 +170769675548,213,0 +170769675596,214,0 +170769675644,214,0 +170769675692,214,0 +170769675740,214,0 +170769675789,214,0 +170769675837,214,0 +170769675885,215,0 +170769675933,214,0 +170769675982,215,0 +170769676030,215,0 +170769676078,215,0 +170769676126,215,0 +170769676174,214,0 +170769676222,213,0 +170769676271,213,0 +170769676321,213,0 +170769676369,213,0 +170769676417,213,0 +170769676466,213,0 +170769676514,213,0 +170769676562,213,0 +170769676610,214,0 +170769676659,214,0 +170769676707,214,0 +170769676755,214,0 +170769676803,214,0 +170769676851,214,0 +170769676899,214,0 +170769676947,214,0 +170769676994,215,0 +170769677042,214,0 +170769677090,213,0 +170769677138,213,0 +170769677186,213,0 +170769677234,213,0 +170769677282,213,0 +170769677329,213,0 +170769677379,214,0 +170769677427,214,0 +170769677476,214,0 +170769677526,214,0 +170769677575,214,0 +170769677623,214,0 +170769677671,214,0 +170769677721,215,0 +170769677768,215,0 +170769677816,215,0 +170769677864,215,0 +170769677912,213,0 +170769677960,213,0 +170769678008,213,0 +170769678057,213,0 +170769678105,213,0 +170769678153,213,0 +170769678203,213,0 +170769678252,213,0 +170769678302,214,0 +170769678351,214,0 +170769678399,214,0 +170769678449,214,0 +170769678498,214,0 +170769678546,214,0 +170769678594,214,0 +170769678642,214,0 +170769678690,214,0 +170769678738,214,0 +170769678787,213,0 +170769678835,213,0 +170769678883,213,0 +170769678933,213,0 +170769678981,213,0 +170769679029,213,0 +170769679077,213,0 +170769679126,213,0 +170769679174,213,0 +170769679222,213,0 +170769679270,213,0 +170769679318,214,0 +170769679368,214,0 +170769679417,214,0 +170769679467,214,0 +170769679515,214,0 +170769679563,214,0 +170769679610,214,0 +170769679658,213,0 +170769679708,213,0 +170769679758,213,0 +170769679806,213,0 +170769679855,213,0 +170769679903,213,0 +170769679953,213,0 +170769680000,213,0 +170769680048,213,0 +170769680096,214,0 +170769680144,213,0 +170769680194,214,0 +170769680243,214,0 +170769680291,214,0 +170769680341,214,0 +170769680389,214,0 +170769680438,214,0 +170769680486,213,0 +170769680536,213,0 +170769680584,213,0 +170769680631,213,0 +170769680679,213,0 +170769680729,213,0 +170769680777,213,0 +170769680826,213,0 +170769680874,213,0 +170769680922,213,0 +170769680970,214,0 +170769681020,214,0 +170769681068,214,0 +170769681116,214,0 +170769681164,214,0 +170769681211,214,0 +170769681259,215,0 +170769681307,214,0 +170769681355,213,0 +170769681405,213,0 +170769681453,213,0 +170769681502,213,0 +170769681552,213,0 +170769681600,213,0 +170769681648,214,0 +170769681697,214,0 +170769681747,214,0 +170769681795,214,0 +170769681844,214,0 +170769681894,214,0 +170769681942,214,0 +170769681990,214,0 +170769682039,215,0 +170769682087,215,0 +170769682135,215,0 +170769682183,214,0 +170769682231,213,0 +170769682278,213,0 +170769682326,213,0 +170769682376,213,0 +170769682424,214,0 +170769682471,214,0 +170769682521,214,0 +170769682569,214,0 +170769682617,214,0 +170769682666,214,0 +170769682716,214,0 +170769682765,215,0 +170769682813,215,0 +170769682861,215,0 +170769682909,215,0 +170769682957,215,0 +170769683004,215,0 +170769683052,214,0 +170769683100,213,0 +170769683148,213,0 +170769683196,214,0 +170769683244,214,0 +170769683292,214,0 +170769683341,214,0 +170769683389,214,0 +170769683437,214,0 +170769683485,214,0 +170769683533,214,0 +170769683581,214,0 +170769683630,215,0 +170769683678,215,0 +170769683726,215,0 +170769683773,215,0 +170769683823,215,0 +170769683871,214,0 +170769683920,213,0 +170769683968,213,0 +170769684016,213,0 +170769684064,213,0 +170769684112,213,0 +170769684159,214,0 +170769684207,214,0 +170769684255,214,0 +170769684303,214,0 +170769684351,214,0 +170769684399,214,0 +170769684447,215,0 +170769684496,214,0 +170769684546,214,0 +170769684594,214,0 +170769684642,215,0 +170769684690,214,0 +170769684738,214,0 +170769684786,213,0 +170769684835,213,0 +170769684883,213,0 +170769684932,213,0 +170769684980,213,0 +170769685030,213,0 +170769685078,214,0 +170769685126,213,0 +170769685174,214,0 +170769685223,214,0 +170769685271,214,0 +170769685320,214,0 +170769685368,214,0 +170769685416,215,0 +170769685464,215,0 +170769685512,214,0 +170769685561,215,0 +170769685609,214,0 +170769685657,213,0 +170769685705,213,0 +170769685752,213,0 +170769685800,213,0 +170769685848,213,0 +170769685896,213,0 +170769685944,213,0 +170769685992,214,0 +170769686039,214,0 +170769686087,214,0 +170769686137,214,0 +170769686186,215,0 +170769686234,214,0 +170769686284,215,0 +170769686333,215,0 +170769686383,215,0 +170769686431,214,0 +170769686479,214,0 +170769686526,213,0 +170769686574,213,0 +170769686622,214,0 +170769686670,213,0 +170769686720,214,0 +170769686769,214,0 +170769686819,214,0 +170769686868,214,0 +170769686916,214,0 +170769686964,214,0 +170769687012,214,0 +170769687061,215,0 +170769687109,215,0 +170769687157,215,0 +170769687205,215,0 +170769687253,215,0 +170769687301,215,0 +170769687350,214,0 +170769687398,213,0 +170769687447,214,0 +170769687495,214,0 +170769687545,214,0 +170769687594,214,0 +170769687642,214,0 +170769687690,214,0 +170769687738,214,0 +170769687786,215,0 +170769687833,215,0 +170769687881,214,0 +170769687929,215,0 +170769687977,215,0 +170769688027,215,0 +170769688076,215,0 +170769688126,215,0 +170769688174,215,0 +170769688222,214,0 +170769688271,214,0 +170769688319,214,0 +170769688367,214,0 +170769688415,213,0 +170769688463,214,0 +170769688511,214,0 +170769688559,214,0 +170769688607,214,0 +170769688655,214,0 +170769688704,214,0 +170769688754,214,0 +170769688802,215,0 +170769688850,215,0 +170769688897,215,0 +170769688945,215,0 +170769688993,214,0 +170769689043,215,0 +170769689092,213,0 +170769689142,213,0 +170769689191,213,0 +170769689241,213,0 +170769689290,213,0 +170769689338,213,0 +170769689386,214,0 +170769689434,214,0 +170769689482,214,0 +170769689530,214,0 +170769689579,214,0 +170769689627,214,0 +170769689677,214,0 +170769689725,214,0 +170769689774,214,0 +170769689824,215,0 +170769689872,214,0 +170769689920,214,0 +170769689969,213,0 +170769690017,213,0 +170769690065,213,0 +170769690113,213,0 +170769690161,213,0 +170769690211,213,0 +170769690258,214,0 +170769690306,214,0 +170769690354,214,0 +170769690404,214,0 +170769690453,214,0 +170769690501,214,0 +170769690551,214,0 +170769690599,215,0 +170769690647,214,0 +170769690695,214,0 +170769690744,214,0 +170769690792,213,0 +170769690840,213,0 +170769690887,213,0 +170769690935,213,0 +170769690983,213,0 +170769691031,213,0 +170769691079,213,0 +170769691127,214,0 +170769691175,214,0 +170769691223,214,0 +170769691271,214,0 +170769691319,214,0 +170769691369,214,0 +170769691416,214,0 +170769691464,215,0 +170769691512,214,0 +170769691560,215,0 +170769691608,215,0 +170769691658,213,0 +170769691706,213,0 +170769691753,213,0 +170769691801,213,0 +170769691851,213,0 +170769691899,213,0 +170769691947,213,0 +170769691995,214,0 +170769692043,214,0 +170769692091,214,0 +170769692139,214,0 +170769692187,214,0 +170769692235,215,0 +170769692283,215,0 +170769692330,215,0 +170769692378,214,0 +170769692426,214,0 +170769692474,214,0 +170769692524,213,0 +170769692573,213,0 +170769692621,213,0 +170769692671,213,0 +170769692718,213,0 +170769692766,213,0 +170769692816,213,0 +170769692864,214,0 +170769692912,214,0 +170769692961,214,0 +170769693009,214,0 +170769693057,214,0 +170769693105,214,0 +170769693153,214,0 +170769693201,214,0 +170769693249,214,0 +170769693296,214,0 +170769693344,214,0 +170769693394,213,0 +170769693442,212,0 +170769693490,213,0 +170769693538,213,0 +170769693586,213,0 +170769693634,213,0 +170769693682,213,0 +170769693729,213,0 +170769693777,213,0 +170769693827,213,0 +170769693876,214,0 +170769693924,214,0 +170769693974,214,0 +170769694022,214,0 +170769694069,215,0 +170769694117,214,0 +170769694167,214,0 +170769694216,214,0 +170769694264,213,0 +170769694312,213,0 +170769694362,213,0 +170769694410,213,0 +170769694458,213,0 +170769694505,213,0 +170769694555,213,0 +170769694603,213,0 +170769694651,213,0 +170769694701,214,0 +170769694750,214,0 +170769694798,214,0 +170769694848,214,0 +170769694895,214,0 +170769694943,214,0 +170769694991,214,0 +170769695039,214,0 +170769695087,214,0 +170769695135,213,0 +170769695185,213,0 +170769695233,213,0 +170769695280,213,0 +170769695328,213,0 +170769695376,213,0 +170769695426,213,0 +170769695475,214,0 +170769695523,214,0 +170769695571,214,0 +170769695621,214,0 +170769695669,214,0 +170769695716,215,0 +170769695764,215,0 +170769695814,214,0 +170769695862,214,0 +170769695910,214,0 +170769695958,213,0 +170769696005,213,0 +170769696053,213,0 +170769696101,213,0 +170769696149,213,0 +170769696197,213,0 +170769696244,213,0 +170769696294,213,0 +170769696342,214,0 +170769696389,214,0 +170769696437,214,0 +170769696487,214,0 +170769696534,214,0 +170769696582,214,0 +170769696630,214,0 +170769696678,215,0 +170769696726,214,0 +170769696773,214,0 +170769696821,213,0 +170769696869,213,0 +170769696917,213,0 +170769696964,213,0 +170769697012,213,0 +170769697060,213,0 +170769697108,213,0 +170769697156,213,0 +170769697204,213,0 +170769697252,213,0 +170769697300,214,0 +170769697348,214,0 +170769697395,214,0 +170769697443,214,0 +170769697491,214,0 +170769697541,214,0 +170769697590,214,0 +170769697638,214,0 +170769697686,213,0 +170769697734,213,0 +170769697782,213,0 +170769697831,213,0 +170769697879,213,0 +170769697928,213,0 +170769697976,213,0 +170769698024,213,0 +170769698074,213,0 +170769698121,213,0 +170769698169,214,0 +170769698217,214,0 +170769698265,214,0 +170769698315,214,0 +170769698362,214,0 +170769698410,214,0 +170769698458,214,0 +170769698508,214,0 +170769698556,213,0 +170769698603,213,0 +170769698651,213,0 +170769698701,213,0 +170769698749,213,0 +170769698797,213,0 +170769698846,213,0 +170769698894,213,0 +170769698942,213,0 +170769698990,214,0 +170769699038,214,0 +170769699086,214,0 +170769699134,214,0 +170769699183,214,0 +170769699231,214,0 +170769699279,214,0 +170769699328,214,0 +170769699376,214,0 +170769699424,213,0 +170769699471,213,0 +170769699519,212,0 +170769699567,213,0 +170769699615,213,0 +170769699663,213,0 +170769699711,213,0 +170769699759,213,0 +170769699807,214,0 +170769699855,214,0 +170769699902,214,0 +170769699950,214,0 +170769699998,214,0 +170769700046,214,0 +170769700094,214,0 +170769700141,214,0 +170769700189,214,0 +170769700237,214,0 +170769700285,213,0 +170769700333,213,0 +170769700381,213,0 +170769700428,213,0 +170769700476,213,0 +170769700524,214,0 +170769700572,214,0 +170769700621,214,0 +170769700671,214,0 +170769700720,214,0 +170769700768,214,0 +170769700816,214,0 +170769700864,214,0 +170769700912,214,0 +170769700959,214,0 +170769701007,214,0 +170769701055,214,0 +170769701103,214,0 +170769701151,213,0 +170769701199,213,0 +170769701248,213,0 +170769701296,214,0 +170769701345,213,0 +170769701393,213,0 +170769701441,214,0 +170769701491,214,0 +170769701538,214,0 +170769701588,214,0 +170769701636,214,0 +170769701685,214,0 +170769701735,214,0 +170769701784,214,0 +170769701832,215,0 +170769701880,214,0 +170769701930,214,0 +170769701978,213,0 +170769702025,213,0 +170769702073,213,0 +170769702123,213,0 +170769702170,213,0 +170769702218,213,0 +170769702266,213,0 +170769702314,214,0 +170769702362,214,0 +170769702410,214,0 +170769702457,214,0 +170769702505,214,0 +170769702553,214,0 +170769702601,214,0 +170769702649,214,0 +170769702697,214,0 +170769702744,214,0 +170769702792,214,0 +170769702841,213,0 +170769702889,213,0 +170769702937,213,0 +170769702985,213,0 +170769703033,213,0 +170769703081,213,0 +170769703129,214,0 +170769703177,214,0 +170769703225,214,0 +170769703273,214,0 +170769703322,214,0 +170769703370,214,0 +170769703418,215,0 +170769703465,214,0 +170769703513,215,0 +170769703561,215,0 +170769703609,215,0 +170769703658,214,0 +170769703706,213,0 +170769703756,213,0 +170769703804,213,0 +170769703852,213,0 +170769703900,213,0 +170769703947,214,0 +170769703995,214,0 +170769704043,214,0 +170769704091,214,0 +170769704139,214,0 +170769704187,214,0 +170769704235,214,0 +170769704282,215,0 +170769704330,215,0 +170769704378,215,0 +170769704426,216,0 +170769704474,215,0 +170769704521,214,0 +170769704569,213,0 +170769704617,213,0 +170769704665,213,0 +170769704713,214,0 +170769704760,214,0 +170769704808,214,0 +170769704856,214,0 +170769704904,214,0 +170769704952,214,0 +170769705000,214,0 +170769705047,214,0 +170769705095,215,0 +170769705143,215,0 +170769705191,215,0 +170769705239,215,0 +170769705287,214,0 +170769705335,215,0 +170769705382,214,0 +170769705430,213,0 +170769705478,213,0 +170769705526,213,0 +170769705574,213,0 +170769705621,213,0 +170769705669,214,0 +170769705717,214,0 +170769705765,214,0 +170769705813,214,0 +170769705861,214,0 +170769705909,214,0 +170769705956,215,0 +170769706004,214,0 +170769706052,214,0 +170769706100,214,0 +170769706149,215,0 +170769706197,214,0 +170769706245,214,0 +170769706293,213,0 +170769706341,213,0 +170769706389,213,0 +170769706437,213,0 +170769706484,213,0 +170769706532,213,0 +170769706580,213,0 +170769706628,214,0 +170769706676,214,0 +170769706723,214,0 +170769706771,214,0 +170769706819,214,0 +170769706869,214,0 +170769706916,214,0 +170769706964,215,0 +170769707012,215,0 +170769707060,215,0 +170769707108,214,0 +170769707156,213,0 +170769707203,213,0 +170769707251,213,0 +170769707299,213,0 +170769707347,213,0 +170769707395,213,0 +170769707442,213,0 +170769707490,213,0 +170769707540,214,0 +170769707587,214,0 +170769707635,214,0 +170769707683,214,0 +170769707731,215,0 +170769707779,215,0 +170769707827,215,0 +170769707875,215,0 +170769707923,214,0 +170769707970,214,0 +170769708018,213,0 +170769708066,213,0 +170769708114,213,0 +170769708164,213,0 +170769708212,213,0 +170769708261,213,0 +170769708309,214,0 +170769708357,214,0 +170769708405,214,0 +170769708454,214,0 +170769708504,214,0 +170769708552,214,0 +170769708600,215,0 +170769708647,214,0 +170769708695,214,0 +170769708743,215,0 +170769708791,214,0 +170769708840,213,0 +170769708888,213,0 +170769708936,213,0 +170769708984,213,0 +170769709032,213,0 +170769709080,213,0 +170769709128,213,0 +170769709176,213,0 +170769709224,213,0 +170769709271,214,0 +170769709321,214,0 +170769709369,214,0 +170769709417,214,0 +170769709466,214,0 +170769709514,214,0 +170769709562,214,0 +170769709610,214,0 +170769709658,214,0 +170769709706,213,0 +170769709754,213,0 +170769709803,213,0 +170769709851,213,0 +170769709898,213,0 +170769709946,213,0 +170769709994,213,0 +170769710042,214,0 +170769710091,214,0 +170769710141,214,0 +170769710190,214,0 +170769710238,214,0 +170769710286,214,0 +170769710333,214,0 +170769710381,214,0 +170769710429,214,0 +170769710477,214,0 +170769710525,214,0 +170769710573,213,0 +170769710622,213,0 +170769710670,213,0 +170769710718,213,0 +170769710767,213,0 +170769710815,213,0 +170769710863,213,0 +170769710911,214,0 +170769710958,214,0 +170769711006,214,0 +170769711054,214,0 +170769711102,214,0 +170769711150,215,0 +170769711198,214,0 +170769711246,214,0 +170769711293,214,0 +170769711341,214,0 +170769711390,214,0 +170769711440,213,0 +170769711489,213,0 +170769711539,213,0 +170769711587,213,0 +170769711635,213,0 +170769711683,213,0 +170769711732,213,0 +170769711782,213,0 +170769711830,214,0 +170769711877,214,0 +170769711925,214,0 +170769711973,214,0 +170769712021,214,0 +170769712069,214,0 +170769712117,214,0 +170769712165,214,0 +170769712214,214,0 +170769712264,214,0 +170769712313,213,0 +170769712361,213,0 +170769712409,213,0 +170769712457,213,0 +170769712507,213,0 +170769712556,213,0 +170769712606,213,0 +170769712655,213,0 +170769712703,213,0 +170769712751,214,0 +170769712799,214,0 +170769712847,214,0 +170769712895,214,0 +170769712942,214,0 +170769712990,214,0 +170769713040,214,0 +170769713089,215,0 +170769713137,214,0 +170769713187,213,0 +170769713235,213,0 +170769713284,213,0 +170769713334,213,0 +170769713381,213,0 +170769713429,213,0 +170769713477,213,0 +170769713525,213,0 +170769713574,213,0 +170769713624,214,0 +170769713672,214,0 +170769713720,214,0 +170769713769,214,0 +170769713819,214,0 +170769713867,214,0 +170769713914,214,0 +170769713964,214,0 +170769714013,213,0 +170769714061,212,0 +170769714109,213,0 +170769714159,213,0 +170769714207,213,0 +170769714255,213,0 +170769714302,213,0 +170769714350,213,0 +170769714398,213,0 +170769714446,214,0 +170769714496,214,0 +170769714545,214,0 +170769714595,214,0 +170769714644,214,0 +170769714692,214,0 +170769714742,214,0 +170769714790,214,0 +170769714838,214,0 +170769714887,213,0 +170769714935,213,0 +170769714983,213,0 +170769715033,213,0 +170769715082,213,0 +170769715132,213,0 +170769715181,213,0 +170769715229,213,0 +170769715277,214,0 +170769715326,214,0 +170769715374,214,0 +170769715422,214,0 +170769715472,214,0 +170769715520,215,0 +170769715568,214,0 +170769715616,214,0 +170769715663,214,0 +170769715713,213,0 +170769715762,213,0 +170769715810,213,0 +170769715858,213,0 +170769715908,213,0 +170769715955,213,0 +170769716005,214,0 +170769716054,214,0 +170769716104,214,0 +170769716152,214,0 +170769716201,214,0 +170769716249,214,0 +170769716299,214,0 +170769716348,215,0 +170769716396,215,0 +170769716446,215,0 +170769716495,215,0 +170769716545,215,0 +170769716592,214,0 +170769716640,213,0 +170769716688,213,0 +170769716736,214,0 +170769716784,214,0 +170769716833,214,0 +170769716883,214,0 +170769716931,214,0 +170769716980,214,0 +170769717028,214,0 +170769717076,215,0 +170769717124,214,0 +170769717174,215,0 +170769717223,214,0 +170769717272,214,0 +170769717320,214,0 +170769717368,214,0 +170769717416,214,0 +170769717464,213,0 +170769717514,213,0 +170769717562,213,0 +170769717609,214,0 +170769717657,214,0 +170769717705,214,0 +170769717755,214,0 +170769717804,214,0 +170769717852,214,0 +170769717902,214,0 +170769717950,215,0 +170769717999,215,0 +170769718047,215,0 +170769718095,215,0 +170769718145,215,0 +170769718193,215,0 +170769718241,214,0 +170769718290,213,0 +170769718340,213,0 +170769718388,213,0 +170769718435,213,0 +170769718485,213,0 +170769718533,213,0 +170769718582,213,0 +170769718630,214,0 +170769718680,214,0 +170769718729,214,0 +170769718779,214,0 +170769718827,214,0 +170769718874,214,0 +170769718922,214,0 +170769718972,214,0 +170769719020,215,0 +170769719069,214,0 +170769719119,214,0 +170769719167,213,0 +170769719214,213,0 +170769719262,213,0 +170769719310,213,0 +170769719358,213,0 +170769719406,213,0 +170769719454,213,0 +170769719502,213,0 +170769719550,214,0 +170769719598,214,0 +170769719647,214,0 +170769719695,214,0 +170769719743,214,0 +170769719791,214,0 +170769719839,215,0 +170769719888,215,0 +170769719936,214,0 +170769719984,214,0 +170769720032,213,0 +170769720080,213,0 +170769720128,213,0 +170769720176,213,0 +170769720224,213,0 +170769720273,214,0 +170769720321,213,0 +170769720371,214,0 +170769720418,214,0 +170769720468,214,0 +170769720516,214,0 +170769720564,214,0 +170769720612,214,0 +170769720661,214,0 +170769720711,215,0 +170769720759,214,0 +170769720807,214,0 +170769720854,214,0 +170769720904,213,0 +170769720952,213,0 +170769721001,213,0 +170769721049,213,0 +170769721097,213,0 +170769721147,214,0 +170769721196,214,0 +170769721244,214,0 +170769721292,214,0 +170769721340,214,0 +170769721388,214,0 +170769721436,214,0 +170769721484,214,0 +170769721532,214,0 +170769721580,214,0 +170769721628,215,0 +170769721676,215,0 +170769721724,213,0 +170769721772,213,0 +170769721820,213,0 +170769721868,213,0 +170769721915,214,0 +170769721963,214,0 +170769722011,214,0 +170769722061,214,0 +170769722109,214,0 +170769722156,214,0 +170769722206,214,0 +170769722254,215,0 +170769722302,215,0 +170769722351,215,0 +170769722399,214,0 +170769722447,214,0 +170769722495,215,0 +170769722544,214,0 +170769722592,213,0 +170769722642,213,0 +170769722689,213,0 +170769722739,213,0 +170769722788,214,0 +170769722836,214,0 +170769722884,214,0 +170769722932,214,0 +170769722980,214,0 +170769723030,214,0 +170769723079,214,0 +170769723129,214,0 +170769723176,215,0 +170769723224,214,0 +170769723272,214,0 +170769723320,214,0 +170769723368,215,0 +170769723416,215,0 +170769723463,213,0 +170769723511,213,0 +170769723559,213,0 +170769723607,213,0 +170769723656,213,0 +170769723704,214,0 +170769723752,214,0 +170769723800,214,0 +170769723849,214,0 +170769723897,214,0 +170769723945,214,0 +170769723993,215,0 +170769724040,214,0 +170769724088,215,0 +170769724136,215,0 +170769724184,214,0 +170769724233,214,0 +170769724281,213,0 +170769724329,213,0 +170769724379,213,0 +170769724427,213,0 +170769724474,213,0 +170769724522,213,0 +170769724570,214,0 +170769724618,213,0 +170769724666,213,0 +170769724716,214,0 +170769724763,214,0 +170769724811,214,0 +170769724859,214,0 +170769724907,215,0 +170769724957,215,0 +170769725005,214,0 +170769725053,214,0 +170769725102,214,0 +170769725150,213,0 +170769725199,213,0 +170769725247,213,0 +170769725295,213,0 +170769725343,214,0 +170769725391,214,0 +170769725439,214,0 +170769725487,214,0 +170769725535,214,0 +170769725583,214,0 +170769725632,214,0 +170769725680,215,0 +170769725730,215,0 +170769725779,214,0 +170769725827,214,0 +170769725875,215,0 +170769725924,214,0 +170769725972,214,0 +170769726022,213,0 +170769726070,213,0 +170769726118,213,0 +170769726165,213,0 +170769726213,213,0 +170769726261,214,0 +170769726309,214,0 +170769726359,214,0 +170769726407,214,0 +170769726454,214,0 +170769726504,214,0 +170769726552,215,0 +170769726600,215,0 +170769726648,214,0 +170769726696,215,0 +170769726743,215,0 +170769726791,215,0 +170769726839,214,0 +170769726887,213,0 +170769726935,213,0 +170769726983,213,0 +170769727031,213,0 +170769727079,213,0 +170769727127,214,0 +170769727175,214,0 +170769727222,214,0 +170769727270,214,0 +170769727318,214,0 +170769727366,215,0 +170769727414,215,0 +170769727462,214,0 +170769727510,214,0 +170769727558,215,0 +170769727605,215,0 +170769727653,214,0 +170769727701,214,0 +170769727749,213,0 +170769727797,213,0 +170769727845,213,0 +170769727894,214,0 +170769727944,213,0 +170769727993,214,0 +170769728041,214,0 +170769728089,214,0 +170769728137,214,0 +170769728185,214,0 +170769728235,214,0 +170769728283,214,0 +170769728332,215,0 +170769728380,215,0 +170769728428,215,0 +170769728476,215,0 +170769728524,215,0 +170769728572,213,0 +170769728621,213,0 +170769728671,213,0 +170769728719,213,0 +170769728768,213,0 +170769728816,214,0 +170769728864,213,0 +170769728912,214,0 +170769728960,214,0 +170769729009,214,0 +170769729059,214,0 +170769729106,214,0 +170769729154,215,0 +170769729204,215,0 +170769729253,215,0 +170769729301,215,0 +170769729349,214,0 +170769729399,214,0 +170769729448,213,0 +170769729498,213,0 +170769729547,213,0 +170769729597,213,0 +170769729646,213,0 +170769729694,213,0 +170769729742,214,0 +170769729791,214,0 +170769729839,214,0 +170769729889,214,0 +170769729937,214,0 +170769729984,214,0 +170769730034,214,0 +170769730082,214,0 +170769730130,214,0 +170769730179,215,0 +170769730229,214,0 +170769730278,214,0 +170769730326,213,0 +170769730376,213,0 +170769730425,213,0 +170769730473,213,0 +170769730523,214,0 +170769730570,214,0 +170769730620,214,0 +170769730668,214,0 +170769730716,214,0 +170769730764,214,0 +170769730812,214,0 +170769730861,214,0 +170769730911,214,0 +170769730959,214,0 +170769731006,214,0 +170769731054,215,0 +170769731102,214,0 +170769731152,213,0 +170769731200,213,0 +170769731249,213,0 +170769731297,213,0 +170769731345,213,0 +170769731393,213,0 +170769731442,213,0 +170769731492,214,0 +170769731541,214,0 +170769731589,214,0 +170769731637,214,0 +170769731685,214,0 +170769731733,214,0 +170769731782,214,0 +170769731832,214,0 +170769731881,214,0 +170769731929,214,0 +170769731979,214,0 +170769732028,213,0 +170769732076,213,0 +170769732124,213,0 +170769732174,213,0 +170769732222,213,0 +170769732271,213,0 +170769732321,213,0 +170769732368,214,0 +170769732416,214,0 +170769732464,214,0 +170769732514,214,0 +170769732562,214,0 +170769732611,214,0 +170769732661,214,0 +170769732710,214,0 +170769732758,215,0 +170769732806,215,0 +170769732854,213,0 +170769732902,213,0 +170769732951,213,0 +170769733001,214,0 +170769733048,214,0 +170769733096,214,0 +170769733144,214,0 +170769733192,214,0 +170769733242,214,0 +170769733290,214,0 +170769733339,214,0 +170769733387,214,0 +170769733435,215,0 +170769733483,215,0 +170769733531,215,0 +170769733579,215,0 +170769733627,215,0 +170769733675,214,0 +170769733724,213,0 +170769733772,213,0 +170769733821,213,0 +170769733869,214,0 +170769733917,214,0 +170769733965,214,0 +170769734013,214,0 +170769734062,214,0 +170769734110,214,0 +170769734160,215,0 +170769734208,215,0 +170769734257,215,0 +170769734305,215,0 +170769734353,215,0 +170769734402,215,0 +170769734452,215,0 +170769734500,214,0 +170769734548,214,0 +170769734597,213,0 +170769734645,213,0 +170769734695,213,0 +170769734743,213,0 +170769734792,213,0 +170769734842,213,0 +170769734891,213,0 +170769734939,213,0 +170769734987,213,0 +170769735035,213,0 +170769735083,214,0 +170769735132,214,0 +170769735182,214,0 +170769735230,214,0 +170769735279,214,0 +170769735327,214,0 +170769735375,214,0 +170769735424,213,0 +170769735474,213,0 +170769735522,213,0 +170769735570,213,0 +170769735617,213,0 +170769735667,213,0 +170769735715,213,0 +170769735763,213,0 +170769735811,213,0 +170769735859,213,0 +170769735908,214,0 +170769735957,214,0 +170769736005,214,0 +170769736053,214,0 +170769736103,214,0 +170769736151,214,0 +170769736200,215,0 +170769736248,214,0 +170769736296,213,0 +170769736345,213,0 +170769736393,213,0 +170769736441,213,0 +170769736489,213,0 +170769736537,214,0 +170769736585,213,0 +170769736633,214,0 +170769736681,214,0 +170769736729,214,0 +170769736776,214,0 +170769736824,215,0 +170769736872,214,0 +170769736920,215,0 +170769736968,214,0 +170769737016,215,0 +170769737064,214,0 +170769737112,214,0 +170769737159,213,0 +170769737207,213,0 +170769737255,213,0 +170769737303,214,0 +170769737351,213,0 +170769737399,214,0 +170769737447,214,0 +170769737495,214,0 +170769737543,214,0 +170769737591,214,0 +170769737638,215,0 +170769737688,215,0 +170769737736,215,0 +170769737783,215,0 +170769737831,215,0 +170769737879,215,0 +170769737927,214,0 +170769737977,214,0 +170769738025,213,0 +170769738072,213,0 +170769738122,213,0 +170769738170,214,0 +170769738219,214,0 +170769738267,214,0 +170769738315,214,0 +170769738364,214,0 +170769738412,214,0 +170769738460,215,0 +170769738508,215,0 +170769738556,215,0 +170769738604,215,0 +170769738652,215,0 +170769738700,214,0 +170769738749,214,0 +170769738797,214,0 +170769738845,213,0 +170769738893,213,0 +170769738941,213,0 +170769738990,213,0 +170769739038,213,0 +170769739088,213,0 +170769739137,214,0 +170769739185,214,0 +170769739233,214,0 +170769739281,214,0 +170769739328,214,0 +170769739378,215,0 +170769739427,214,0 +170769739475,215,0 +170769739523,215,0 +170769739572,215,0 +170769739620,215,0 +170769739670,215,0 +170769739719,213,0 +170769739769,213,0 +170769739817,213,0 +170769739866,213,0 +170769739916,213,0 +170769739964,213,0 +170769740013,214,0 +170769740063,214,0 +170769740110,214,0 +170769740160,214,0 +170769740209,214,0 +170769740259,214,0 +170769740307,215,0 +170769740355,214,0 +170769740403,214,0 +170769740450,214,0 +170769740500,215,0 +170769740548,214,0 +170769740596,213,0 +170769740645,213,0 +170769740693,213,0 +170769740742,213,0 +170769740790,213,0 +170769740840,213,0 +170769740889,213,0 +170769740937,213,0 +170769740985,214,0 +170769741033,214,0 +170769741081,214,0 +170769741130,214,0 +170769741178,214,0 +170769741226,214,0 +170769741276,215,0 +170769741324,214,0 +170769741373,214,0 +170769741421,213,0 +170769741469,213,0 +170769741517,213,0 +170769741566,213,0 +170769741614,213,0 +170769741664,213,0 +170769741712,213,0 +170769741761,213,0 +170769741810,214,0 +170769741858,214,0 +170769741906,214,0 +170769741954,214,0 +170769742004,214,0 +170769742053,214,0 +170769742101,214,0 +170769742149,214,0 +170769742199,214,0 +170769742246,214,0 +170769742294,213,0 +170769742342,213,0 +170769742392,213,0 +170769742441,213,0 +170769742489,213,0 +170769742538,213,0 +170769742586,214,0 +170769742634,214,0 +170769742682,214,0 +170769742730,214,0 +170769742778,214,0 +170769742826,214,0 +170769742874,215,0 +170769742922,214,0 +170769742970,215,0 +170769743019,215,0 +170769743067,214,0 +170769743115,213,0 +170769743165,213,0 +170769743214,213,0 +170769743262,213,0 +170769743310,213,0 +170769743358,213,0 +170769743406,213,0 +170769743454,214,0 +170769743501,214,0 +170769743549,214,0 +170769743599,214,0 +170769743647,214,0 +170769743695,214,0 +170769743743,215,0 +170769743792,214,0 +170769743840,215,0 +170769743889,215,0 +170769743939,214,0 +170769743987,213,0 +170769744035,213,0 +170769744082,213,0 +170769744130,213,0 +170769744180,213,0 +170769744228,214,0 +170769744277,214,0 +170769744325,214,0 +170769744373,214,0 +170769744422,214,0 +170769744472,215,0 +170769744520,215,0 +170769744568,215,0 +170769744616,215,0 +170769744664,215,0 +170769744712,215,0 +170769744759,215,0 +170769744807,214,0 +170769744855,213,0 +170769744903,213,0 +170769744951,214,0 +170769744999,214,0 +170769745047,214,0 +170769745096,213,0 +170769745146,214,0 +170769745194,214,0 +170769745243,214,0 +170769745292,214,0 +170769745342,214,0 +170769745390,215,0 +170769745439,215,0 +170769745487,215,0 +170769745536,215,0 +170769745584,215,0 +170769745632,215,0 +170769745682,214,0 +170769745731,213,0 +170769745780,213,0 +170769745830,213,0 +170769745878,213,0 +170769745926,213,0 +170769745975,214,0 +170769746025,214,0 +170769746073,214,0 +170769746122,214,0 +170769746170,214,0 +170769746218,215,0 +170769746266,215,0 +170769746315,215,0 +170769746365,215,0 +170769746413,215,0 +170769746461,215,0 +170769746509,214,0 +170769746557,213,0 +170769746605,213,0 +170769746653,213,0 +170769746700,214,0 +170769746750,213,0 +170769746798,213,0 +170769746846,214,0 +170769746894,214,0 +170769746941,214,0 +170769746989,214,0 +170769747037,214,0 +170769747087,214,0 +170769747136,214,0 +170769747186,214,0 +170769747235,214,0 +170769747283,215,0 +170769747331,214,0 +170769747379,214,0 +170769747427,213,0 +170769747475,213,0 +170769747523,213,0 +170769747571,213,0 +170769747618,213,0 +170769747666,213,0 +170769747716,214,0 +170769747764,214,0 +170769747812,214,0 +170769747860,214,0 +170769747909,214,0 +170769747957,214,0 +170769748007,214,0 +170769748054,215,0 +170769748104,215,0 +170769748153,214,0 +170769748201,215,0 +170769748251,214,0 +170769748299,213,0 +170769748348,213,0 +170769748398,213,0 +170769748447,213,0 +170769748497,213,0 +170769748546,213,0 +170769748594,213,0 +170769748643,213,0 +170769748691,214,0 +170769748741,214,0 +170769748789,214,0 +170769748836,214,0 +170769748884,214,0 +170769748934,214,0 +170769748981,214,0 +170769749031,214,0 +170769749079,214,0 +170769749127,213,0 +170769749174,213,0 +170769749222,213,0 +170769749270,213,0 +170769749318,213,0 +170769749366,213,0 +170769749414,213,0 +170769749462,214,0 +170769749511,214,0 +170769749559,214,0 +170769749607,214,0 +170769749655,214,0 +170769749704,215,0 +170769749752,214,0 +170769749802,215,0 +170769749851,215,0 +170769749901,214,0 +170769749950,214,0 +170769749998,213,0 +170769750048,213,0 +170769750097,213,0 +170769750145,213,0 +170769750193,213,0 +170769750242,213,0 +170769750292,214,0 +170769750340,214,0 +170769750388,214,0 +170769750436,214,0 +170769750484,214,0 +170769750533,214,0 +170769750581,215,0 +170769750629,214,0 +170769750678,215,0 +170769750726,215,0 +170769750774,214,0 +170769750824,213,0 +170769750873,213,0 +170769750922,213,0 +170769750970,213,0 +170769751018,213,0 +170769751066,213,0 +170769751116,213,0 +170769751165,214,0 +170769751215,214,0 +170769751264,214,0 +170769751314,214,0 +170769751361,214,0 +170769751409,214,0 +170769751459,214,0 +170769751507,214,0 +170769751555,214,0 +170769751603,214,0 +170769751651,214,0 +170769751699,213,0 +170769751747,213,0 +170769751794,213,0 +170769751844,213,0 +170769751892,213,0 +170769751940,213,0 +170769751987,213,0 +170769752035,213,0 +170769752083,213,0 +170769752131,213,0 +170769752181,213,0 +170769752229,214,0 +170769752276,214,0 +170769752324,214,0 +170769752372,214,0 +170769752420,214,0 +170769752470,214,0 +170769752518,214,0 +170769752567,213,0 +170769752617,213,0 +170769752664,213,0 +170769752712,213,0 +170769752760,213,0 +170769752810,213,0 +170769752859,213,0 +170769752907,214,0 +170769752955,214,0 +170769753003,214,0 +170769753051,214,0 +170769753099,214,0 +170769753148,214,0 +170769753196,214,0 +170769753246,214,0 +170769753295,214,0 +170769753343,214,0 +170769753391,213,0 +170769753439,213,0 +170769753487,213,0 +170769753535,213,0 +170769753583,213,0 +170769753632,213,0 +170769753680,213,0 +170769753728,213,0 +170769753776,213,0 +170769753825,214,0 +170769753873,214,0 +170769753921,214,0 +170769753969,214,0 +170769754019,214,0 +170769754067,214,0 +170769754116,214,0 +170769754164,215,0 +170769754214,214,0 +170769754263,213,0 +170769754313,213,0 +170769754361,213,0 +170769754410,213,0 +170769754458,213,0 +170769754506,214,0 +170769754556,214,0 +170769754603,214,0 +170769754651,214,0 +170769754699,214,0 +170769754747,214,0 +170769754795,214,0 +170769754843,215,0 +170769754892,214,0 +170769754942,214,0 +170769754990,214,0 +170769755038,214,0 +170769755085,214,0 +170769755133,213,0 +170769755181,213,0 +170769755229,213,0 +170769755277,213,0 +170769755325,213,0 +170769755373,213,0 +170769755420,214,0 +170769755470,214,0 +170769755518,214,0 +170769755565,214,0 +170769755613,214,0 +170769755663,214,0 +170769755712,214,0 +170769755762,214,0 +170769755809,215,0 +170769755857,215,0 +170769755905,215,0 +170769755953,215,0 +170769756001,215,0 +170769756048,215,0 +170769756096,215,0 +170769756144,215,0 +170769756193,215,0 +170769756241,215,0 +170769756289,214,0 +170769756339,214,0 +170769756388,214,0 +170769756436,213,0 +170769756484,214,0 +170769756532,214,0 +170769756580,214,0 +170769756628,214,0 +170769756676,214,0 +170769756723,214,0 +170769756773,214,0 +170769756821,215,0 +170769756869,215,0 +170769756917,215,0 +170769756965,215,0 +170769757014,215,0 +170769757062,215,0 +170769757110,215,0 +170769757158,214,0 +170769757207,214,0 +170769757255,213,0 +170769757305,213,0 +170769757353,214,0 +170769757402,214,0 +170769757450,214,0 +170769757498,214,0 +170769757547,214,0 +170769757595,214,0 +170769757645,215,0 +170769757693,214,0 +170769757741,215,0 +170769757789,215,0 +170769757838,215,0 +170769757886,215,0 +170769757934,215,0 +170769757982,215,0 +170769758029,215,0 +170769758077,214,0 +170769758125,213,0 +170769758175,214,0 +170769758223,213,0 +170769758271,214,0 +170769758319,214,0 +170769758368,214,0 +170769758417,214,0 +170769758467,214,0 +170769758515,214,0 +170769758563,215,0 +170769758611,214,0 +170769758659,215,0 +170769758708,215,0 +170769758756,215,0 +170769758804,215,0 +170769758852,214,0 +170769758899,214,0 +170769758947,213,0 +170769758995,213,0 +170769759045,213,0 +170769759092,213,0 +170769759140,214,0 +170769759188,214,0 +170769759236,214,0 +170769759284,214,0 +170769759333,214,0 +170769759383,214,0 +170769759431,214,0 +170769759479,214,0 +170769759528,214,0 +170769759576,214,0 +170769759624,215,0 +170769759673,214,0 +170769759723,214,0 +170769759771,214,0 +170769759820,213,0 +170769759870,213,0 +170769759919,213,0 +170769759967,213,0 +170769760015,213,0 +170769760065,213,0 +170769760113,213,0 +170769760160,214,0 +170769760210,214,0 +170769760259,214,0 +170769760307,214,0 +170769760355,214,0 +170769760403,215,0 +170769760451,214,0 +170769760501,214,0 +170769760550,214,0 +170769760598,215,0 +170769760646,213,0 +170769760694,213,0 +170769760742,213,0 +170769760790,213,0 +170769760838,213,0 +170769760886,213,0 +170769760935,213,0 +170769760983,214,0 +170769761032,214,0 +170769761080,214,0 +170769761128,214,0 +170769761178,214,0 +170769761226,214,0 +170769761274,214,0 +170769761322,215,0 +170769761370,215,0 +170769761417,215,0 +170769761467,214,0 +170769761516,213,0 +170769761566,212,0 +170769761614,213,0 +170769761662,213,0 +170769761711,213,0 +170769761759,213,0 +170769761808,213,0 +170769761856,213,0 +170769761906,214,0 +170769761954,214,0 +170769762003,214,0 +170769762051,214,0 +170769762099,214,0 +170769762147,214,0 +170769762196,214,0 +170769762244,215,0 +170769762292,214,0 +170769762341,214,0 +170769762389,213,0 +170769762439,213,0 +170769762487,213,0 +170769762535,213,0 +170769762583,213,0 +170769762630,213,0 +170769762678,213,0 +170769762728,214,0 +170769762776,214,0 +170769762825,214,0 +170769762875,214,0 +170769762924,214,0 +170769762974,214,0 +170769763023,214,0 +170769763071,214,0 +170769763119,215,0 +170769763167,215,0 +170769763214,213,0 +170769763264,213,0 +170769763312,213,0 +170769763359,213,0 +170769763409,213,0 +170769763457,213,0 +170769763505,213,0 +170769763553,213,0 +170769763602,214,0 +170769763652,214,0 +170769763701,214,0 +170769763749,214,0 +170769763797,214,0 +170769763847,214,0 +170769763895,214,0 +170769763942,214,0 +170769763990,214,0 +170769764040,214,0 +170769764089,213,0 +170769764137,212,0 +170769764185,213,0 +170769764233,213,0 +170769764281,213,0 +170769764331,213,0 +170769764378,213,0 +170769764426,213,0 +170769764474,213,0 +170769764522,213,0 +170769764570,214,0 +170769764618,214,0 +170769764668,215,0 +170769764717,214,0 +170769764765,214,0 +170769764815,214,0 +170769764864,214,0 +170769764912,213,0 +170769764960,213,0 +170769765008,213,0 +170769765056,213,0 +170769765105,213,0 +170769765155,213,0 +170769765203,213,0 +170769765250,213,0 +170769765300,213,0 +170769765348,213,0 +170769765396,214,0 +170769765444,214,0 +170769765493,214,0 +170769765541,214,0 +170769765590,214,0 +170769765638,215,0 +170769765686,214,0 +170769765736,214,0 +170769765783,213,0 +170769765833,213,0 +170769765881,213,0 +170769765929,213,0 +170769765976,213,0 +170769766024,213,0 +170769766072,213,0 +170769766120,213,0 +170769766170,214,0 +170769766219,214,0 +170769766267,214,0 +170769766315,214,0 +170769766365,214,0 +170769766413,214,0 +170769766460,214,0 +170769766508,215,0 +170769766556,215,0 +170769766604,214,0 +170769766654,213,0 +170769766703,213,0 +170769766751,213,0 +170769766799,213,0 +170769766847,214,0 +170769766896,214,0 +170769766944,214,0 +170769766992,214,0 +170769767040,214,0 +170769767090,214,0 +170769767137,214,0 +170769767185,214,0 +170769767233,214,0 +170769767281,215,0 +170769767330,214,0 +170769767378,215,0 +170769767426,214,0 +170769767474,213,0 +170769767522,213,0 +170769767571,214,0 +170769767619,213,0 +170769767669,214,0 +170769767717,214,0 +170769767765,214,0 +170769767814,214,0 +170769767862,214,0 +170769767910,214,0 +170769767959,214,0 +170769768009,214,0 +170769768057,214,0 +170769768104,214,0 +170769768154,214,0 +170769768202,214,0 +170769768249,215,0 +170769768297,214,0 +170769768345,213,0 +170769768393,213,0 +170769768441,213,0 +170769768491,214,0 +170769768540,214,0 +170769768588,214,0 +170769768636,214,0 +170769768684,214,0 +170769768732,214,0 +170769768780,214,0 +170769768827,214,0 +170769768875,214,0 +170769768923,215,0 +170769768971,215,0 +170769769019,215,0 +170769769067,215,0 +170769769115,215,0 +170769769164,214,0 +170769769212,213,0 +170769769260,213,0 +170769769309,213,0 +170769769357,214,0 +170769769405,213,0 +170769769453,213,0 +170769769500,214,0 +170769769550,214,0 +170769769598,214,0 +170769769645,214,0 +170769769693,214,0 +170769769741,214,0 +170769769789,215,0 +170769769837,215,0 +170769769885,214,0 +170769769933,215,0 +170769769982,215,0 +170769770030,214,0 +170769770079,214,0 +170769770127,213,0 +170769770175,214,0 +170769770223,214,0 +170769770273,214,0 +170769770321,214,0 +170769770369,214,0 +170769770416,214,0 +170769770464,214,0 +170769770512,214,0 +170769770560,215,0 +170769770608,215,0 +170769770657,214,0 +170769770705,215,0 +170769770753,215,0 +170769770801,214,0 +170769770849,214,0 +170769770896,214,0 +170769770944,214,0 +170769770994,214,0 +170769771042,214,0 +170769771091,214,0 +170769771139,214,0 +170769771189,214,0 +170769771238,215,0 +170769771286,215,0 +170769771335,215,0 +170769771383,215,0 +170769771431,215,0 +170769771479,215,0 +170769771527,215,0 +170769771577,215,0 +170769771624,215,0 +170769771672,215,0 +170769771722,214,0 +170769771770,214,0 +170769771819,214,0 +170769771867,214,0 +170769771917,214,0 +170769771966,214,0 +170769772014,214,0 +170769772063,214,0 +170769772111,214,0 +170769772159,215,0 +170769772207,215,0 +170769772255,215,0 +170769772305,215,0 +170769772354,215,0 +170769772404,215,0 +170769772453,215,0 +170769772501,215,0 +170769772549,214,0 +170769772597,214,0 +170769772646,213,0 +170769772696,213,0 +170769772745,213,0 +170769772793,213,0 +170769772841,213,0 +170769772889,213,0 +170769772937,214,0 +170769772985,214,0 +170769773033,214,0 +170769773082,214,0 +170769773130,214,0 +170769773178,214,0 +170769773226,214,0 +170769773274,214,0 +170769773322,214,0 +170769773370,214,0 +170769773417,214,0 +170769773465,213,0 +170769773513,213,0 +170769773561,213,0 +170769773609,213,0 +170769773657,213,0 +170769773705,214,0 +170769773754,214,0 +170769773802,214,0 +170769773850,214,0 +170769773899,214,0 +170769773947,214,0 +170769773995,214,0 +170769774043,214,0 +170769774093,215,0 +170769774141,215,0 +170769774190,214,0 +170769774240,214,0 +170769774289,214,0 +170769774339,213,0 +170769774388,213,0 +170769774436,213,0 +170769774484,213,0 +170769774532,213,0 +170769774581,214,0 +170769774631,214,0 +170769774679,214,0 +170769774728,214,0 +170769774778,214,0 +170769774826,214,0 +170769774875,214,0 +170769774925,215,0 +170769774973,214,0 +170769775021,214,0 +170769775069,215,0 +170769775118,214,0 +170769775166,214,0 +170769775214,213,0 +170769775262,213,0 +170769775310,213,0 +170769775359,213,0 +170769775409,213,0 +170769775458,213,0 +170769775506,214,0 +170769775555,214,0 +170769775603,214,0 +170769775651,214,0 +170769775699,215,0 +170769775747,214,0 +170769775794,214,0 +170769775842,214,0 +170769775890,214,0 +170769775938,214,0 +170769775987,214,0 +170769776035,213,0 +170769776083,213,0 +170769776131,213,0 +170769776181,213,0 +170769776230,213,0 +170769776278,213,0 +170769776326,213,0 +170769776374,213,0 +170769776422,214,0 +170769776470,214,0 +170769776518,214,0 +170769776567,214,0 +170769776617,214,0 +170769776665,214,0 +170769776712,214,0 +170769776760,215,0 +170769776810,215,0 +170769776859,214,0 +170769776907,213,0 +170769776955,213,0 +170769777003,213,0 +170769777051,213,0 +170769777099,213,0 +170769777147,213,0 +170769777195,213,0 +170769777243,214,0 +170769777291,213,0 +170769777338,214,0 +170769777386,214,0 +170769777434,214,0 +170769777482,214,0 +170769777532,214,0 +170769777581,214,0 +170769777630,214,0 +170769777678,214,0 +170769777726,213,0 +170769777774,213,0 +170769777822,213,0 +170769777870,213,0 +170769777917,213,0 +170769777965,213,0 +170769778013,213,0 +170769778061,213,0 +170769778109,214,0 +170769778156,214,0 +170769778204,214,0 +170769778252,214,0 +170769778300,214,0 +170769778348,214,0 +170769778395,214,0 +170769778443,214,0 +170769778491,215,0 +170769778540,214,0 +170769778588,213,0 +170769778636,213,0 +170769778684,213,0 +170769778732,213,0 +170769778779,213,0 +170769778827,213,0 +170769778875,213,0 +170769778923,214,0 +170769778971,213,0 +170769779018,214,0 +170769779066,214,0 +170769779114,214,0 +170769779162,214,0 +170769779210,214,0 +170769779257,215,0 +170769779307,214,0 +170769779356,214,0 +170769779404,213,0 +170769779452,213,0 +170769779500,213,0 +170769779547,213,0 +170769779595,213,0 +170769779645,213,0 +170769779692,213,0 +170769779740,213,0 +170769779788,213,0 +170769779836,213,0 +170769779886,213,0 +170769779935,214,0 +170769779985,214,0 +170769780033,214,0 +170769780082,214,0 +170769780132,214,0 +170769780180,214,0 +170769780227,214,0 +170769780277,213,0 +170769780325,213,0 +170769780373,213,0 +170769780422,213,0 +170769780470,213,0 +170769780518,213,0 +170769780568,213,0 +170769780616,213,0 +170769780663,214,0 +170769780711,214,0 +170769780759,214,0 +170769780809,214,0 +170769780858,214,0 +170769780906,214,0 +170769780956,214,0 +170769781004,214,0 +170769781052,214,0 +170769781100,213,0 +170769781148,213,0 +170769781197,213,0 +170769781245,213,0 +170769781293,213,0 +170769781341,213,0 +170769781390,213,0 +170769781438,213,0 +170769781486,213,0 +170769781534,213,0 +170769781582,213,0 +170769781629,213,0 +170769781677,214,0 +170769781725,214,0 +170769781773,214,0 +170769781822,214,0 +170769781870,214,0 +170769781918,213,0 +170769781966,213,0 +170769782014,213,0 +170769782062,213,0 +170769782110,213,0 +170769782158,213,0 +170769782205,213,0 +170769782255,213,0 +170769782303,213,0 +170769782352,213,0 +170769782402,213,0 +170769782450,214,0 +170769782499,214,0 +170769782548,214,0 +170769782598,214,0 +170769782646,214,0 +170769782694,214,0 +170769782743,214,0 +170769782791,213,0 +170769782839,213,0 +170769782887,213,0 +170769782935,213,0 +170769782984,213,0 +170769783032,213,0 +170769783082,214,0 +170769783130,214,0 +170769783179,214,0 +170769783228,214,0 +170769783276,214,0 +170769783326,214,0 +170769783374,214,0 +170769783422,215,0 +170769783470,215,0 +170769783519,214,0 +170769783567,214,0 +170769783617,213,0 +170769783665,213,0 +170769783713,213,0 +170769783762,213,0 +170769783811,214,0 +170769783859,214,0 +170769783907,214,0 +170769783955,214,0 +170769784003,214,0 +170769784051,215,0 +170769784099,214,0 +170769784147,214,0 +170769784195,215,0 +170769784243,215,0 +170769784292,215,0 +170769784340,215,0 +170769784388,214,0 +170769784436,213,0 +170769784484,213,0 +170769784532,214,0 +170769784580,214,0 +170769784628,214,0 +170769784677,214,0 +170769784727,214,0 +170769784776,214,0 +170769784824,214,0 +170769784873,215,0 +170769784921,215,0 +170769784969,214,0 +170769785017,214,0 +170769785067,215,0 +170769785115,214,0 +170769785164,214,0 +170769785212,214,0 +170769785262,213,0 +170769785310,213,0 +170769785358,213,0 +170769785407,213,0 +170769785455,214,0 +170769785503,214,0 +170769785552,214,0 +170769785602,214,0 +170769785650,214,0 +170769785699,214,0 +170769785749,214,0 +170769785797,214,0 +170769785844,215,0 +170769785892,215,0 +170769785940,215,0 +170769785990,214,0 +170769786038,214,0 +170769786087,213,0 +170769786137,213,0 +170769786185,213,0 +170769786232,213,0 +170769786280,213,0 +170769786328,213,0 +170769786378,213,0 +170769786427,214,0 +170769786475,214,0 +170769786525,214,0 +170769786573,214,0 +170769786622,214,0 +170769786670,214,0 +170769786718,215,0 +170769786767,214,0 +170769786815,215,0 +170769786865,214,0 +170769786913,214,0 +170769786960,213,0 +170769787010,213,0 +170769787058,213,0 +170769787107,214,0 +170769787155,214,0 +170769787203,214,0 +170769787251,214,0 +170769787299,214,0 +170769787347,214,0 +170769787395,214,0 +170769787443,214,0 +170769787491,215,0 +170769787539,215,0 +170769787587,215,0 +170769787636,215,0 +170769787684,215,0 +170769787732,214,0 +170769787780,213,0 +170769787828,213,0 +170769787876,214,0 +170769787924,214,0 +170769787973,214,0 +170769788023,214,0 +170769788071,214,0 +170769788118,214,0 +170769788166,214,0 +170769788214,215,0 +170769788262,214,0 +170769788312,215,0 +170769788359,215,0 +170769788407,215,0 +170769788455,215,0 +170769788503,215,0 +170769788551,215,0 +170769788599,213,0 +170769788646,213,0 +170769788694,213,0 +170769788742,214,0 +170769788790,214,0 +170769788838,214,0 +170769788886,214,0 +170769788935,214,0 +170769788983,215,0 +170769789031,214,0 +170769789079,214,0 +170769789127,215,0 +170769789175,215,0 +170769789225,215,0 +170769789274,215,0 +170769789322,215,0 +170769789370,215,0 +170769789418,214,0 +170769789465,213,0 +170769789513,213,0 +170769789561,213,0 +170769789609,213,0 +170769789659,214,0 +170769789707,214,0 +170769789754,214,0 +170769789802,214,0 +170769789850,214,0 +170769789898,214,0 +170769789946,214,0 +170769789994,215,0 +170769790043,214,0 +170769790093,215,0 +170769790141,215,0 +170769790189,215,0 +170769790237,214,0 +170769790285,213,0 +170769790333,213,0 +170769790380,213,0 +170769790428,213,0 +170769790478,214,0 +170769790527,214,0 +170769790577,214,0 +170769790625,214,0 +170769790673,214,0 +170769790721,215,0 +170769790770,215,0 +170769790819,215,0 +170769790867,215,0 +170769790917,215,0 +170769790966,214,0 +170769791014,215,0 +170769791062,214,0 +170769791110,213,0 +170769791158,213,0 +170769791206,213,0 +170769791254,213,0 +170769791303,213,0 +170769791353,213,0 +170769791402,214,0 +170769791452,214,0 +170769791501,214,0 +170769791549,214,0 +170769791599,214,0 +170769791647,214,0 +170769791695,215,0 +170769791744,214,0 +170769791792,215,0 +170769791840,215,0 +170769791888,214,0 +170769791936,213,0 +170769791985,213,0 +170769792033,213,0 +170769792081,213,0 +170769792131,213,0 +170769792179,214,0 +170769792228,214,0 +170769792278,214,0 +170769792326,214,0 +170769792374,214,0 +170769792422,214,0 +170769792470,214,0 +170769792517,215,0 +170769792567,215,0 +170769792616,215,0 +170769792664,215,0 +170769792714,214,0 +170769792763,213,0 +170769792811,213,0 +170769792861,213,0 +170769792909,213,0 +170769792957,213,0 +170769793005,213,0 +170769793054,213,0 +170769793102,213,0 +170769793150,214,0 +170769793199,214,0 +170769793249,214,0 +170769793297,214,0 +170769793345,214,0 +170769793392,214,0 +170769793440,215,0 +170769793488,214,0 +170769793536,214,0 +170769793584,214,0 +170769793632,213,0 +170769793680,213,0 +170769793727,213,0 +170769793775,213,0 +170769793823,213,0 +170769793871,213,0 +170769793919,213,0 +170769793967,213,0 +170769794015,213,0 +170769794062,214,0 +170769794112,214,0 +170769794161,214,0 +170769794209,214,0 +170769794257,214,0 +170769794305,214,0 +170769794355,214,0 +170769794403,214,0 +170769794451,213,0 +170769794499,213,0 +170769794546,213,0 +170769794594,213,0 +170769794642,213,0 +170769794690,213,0 +170769794738,213,0 +170769794788,214,0 +170769794835,214,0 +170769794883,214,0 +170769794931,214,0 +170769794979,214,0 +170769795027,214,0 +170769795075,214,0 +170769795122,214,0 +170769795170,214,0 +170769795218,214,0 +170769795266,214,0 +170769795314,213,0 +170769795361,213,0 +170769795409,213,0 +170769795457,213,0 +170769795505,213,0 +170769795553,213,0 +170769795601,213,0 +170769795648,213,0 +170769795696,214,0 +170769795744,214,0 +170769795792,214,0 +170769795840,214,0 +170769795887,214,0 +170769795935,214,0 +170769795983,214,0 +170769796031,214,0 +170769796079,215,0 +170769796126,213,0 +170769796176,213,0 +170769796224,213,0 +170769796271,213,0 +170769796319,213,0 +170769796367,213,0 +170769796415,213,0 +170769796463,213,0 +170769796511,214,0 +170769796558,214,0 +170769796606,214,0 +170769796656,214,0 +170769796705,214,0 +170769796754,214,0 +170769796802,214,0 +170769796850,214,0 +170769796898,214,0 +170769796946,213,0 +170769796994,213,0 +170769797041,213,0 +170769797089,213,0 +170769797137,213,0 +170769797185,213,0 +170769797233,213,0 +170769797280,213,0 +170769797328,214,0 +170769797378,214,0 +170769797425,214,0 +170769797473,214,0 +170769797521,214,0 +170769797569,214,0 +170769797617,214,0 +170769797665,214,0 +170769797712,214,0 +170769797760,215,0 +170769797808,213,0 +170769797856,213,0 +170769797903,213,0 +170769797951,213,0 +170769797999,213,0 +170769798047,213,0 +170769798095,214,0 +170769798144,214,0 +170769798192,214,0 +170769798240,214,0 +170769798288,215,0 +170769798335,215,0 +170769798383,215,0 +170769798431,215,0 +170769798479,214,0 +170769798528,214,0 +170769798576,214,0 +170769798624,213,0 +170769798672,213,0 +170769798720,214,0 +170769798769,214,0 +170769798817,214,0 +170769798865,214,0 +170769798913,214,0 +170769798960,214,0 +170769799008,214,0 +170769799058,214,0 +170769799105,215,0 +170769799153,215,0 +170769799201,215,0 +170769799250,215,0 +170769799300,215,0 +170769799348,215,0 +170769799395,214,0 +170769799443,213,0 +170769799491,213,0 +170769799540,213,0 +170769799588,213,0 +170769799636,214,0 +170769799684,214,0 +170769799732,214,0 +170769799779,214,0 +170769799827,214,0 +170769799875,214,0 +170769799923,215,0 +170769799971,214,0 +170769800018,214,0 +170769800066,215,0 +170769800114,215,0 +170769800162,215,0 +170769800210,214,0 +170769800259,214,0 +170769800307,213,0 +170769800355,213,0 +170769800404,213,0 +170769800452,213,0 +170769800500,213,0 +170769800547,214,0 +170769800595,213,0 +170769800643,214,0 +170769800691,214,0 +170769800739,214,0 +170769800788,214,0 +170769800836,214,0 +170769800884,214,0 +170769800932,214,0 +170769800980,214,0 +170769801029,214,0 +170769801079,214,0 +170769801128,213,0 +170769801176,213,0 +170769801225,213,0 +170769801273,213,0 +170769801322,213,0 +170769801370,214,0 +170769801418,214,0 +170769801467,214,0 +170769801515,214,0 +170769801565,214,0 +170769801614,214,0 +170769801662,214,0 +170769801712,214,0 +170769801761,215,0 +170769801809,214,0 +170769801859,215,0 +170769801907,214,0 +170769801955,213,0 +170769802002,213,0 +170769802050,213,0 +170769802100,213,0 +170769802148,214,0 +170769802196,214,0 +170769802245,214,0 +170769802295,214,0 +170769802343,214,0 +170769802392,214,0 +170769802441,215,0 +170769802491,215,0 +170769802539,215,0 +170769802588,215,0 +170769802638,215,0 +170769802687,214,0 +170769802735,214,0 +170769802783,213,0 +170769802831,213,0 +170769802879,214,0 +170769802926,214,0 +170769802974,214,0 +170769803022,214,0 +170769803070,214,0 +170769803118,214,0 +170769803166,215,0 +170769803215,214,0 +170769803263,215,0 +170769803311,215,0 +170769803359,215,0 +170769803407,215,0 +170769803454,215,0 +170769803502,215,0 +170769803550,214,0 +170769803598,213,0 +170769803645,213,0 +170769803693,213,0 +170769803741,214,0 +170769803789,214,0 +170769803837,214,0 +170769803884,214,0 +170769803934,214,0 +170769803982,214,0 +170769804029,214,0 +170769804077,215,0 +170769804125,214,0 +170769804173,215,0 +170769804221,215,0 +170769804269,214,0 +170769804316,215,0 +170769804364,215,0 +170769804412,214,0 +170769804460,213,0 +170769804508,213,0 +170769804556,213,0 +170769804604,213,0 +170769804652,213,0 +170769804700,213,0 +170769804749,213,0 +170769804798,213,0 +170769804846,214,0 +170769804896,214,0 +170769804944,214,0 +170769804992,214,0 +170769805040,214,0 +170769805089,214,0 +170769805137,215,0 +170769805185,214,0 +170769805233,214,0 +170769805281,213,0 +170769805329,213,0 +170769805378,213,0 +170769805428,213,0 +170769805477,213,0 +170769805526,213,0 +170769805576,213,0 +170769805624,214,0 +170769805672,214,0 +170769805721,214,0 +170769805771,214,0 +170769805820,214,0 +170769805868,214,0 +170769805918,214,0 +170769805967,215,0 +170769806017,215,0 +170769806065,215,0 +170769806113,213,0 +170769806160,213,0 +170769806210,213,0 +170769806258,213,0 +170769806306,213,0 +170769806354,213,0 +170769806403,213,0 +170769806452,213,0 +170769806500,214,0 +170769806548,214,0 +170769806596,214,0 +170769806646,214,0 +170769806694,214,0 +170769806743,214,0 +170769806792,214,0 +170769806840,214,0 +170769806888,214,0 +170769806936,213,0 +170769806984,213,0 +170769807033,213,0 +170769807081,213,0 +170769807129,213,0 +170769807177,213,0 +170769807225,214,0 +170769807273,214,0 +170769807321,214,0 +170769807369,214,0 +170769807417,214,0 +170769807464,214,0 +170769807512,215,0 +170769807560,215,0 +170769807608,214,0 +170769807656,215,0 +170769807705,215,0 +170769807753,213,0 +170769807801,213,0 +170769807849,213,0 +170769807899,213,0 +170769807948,213,0 +170769807997,214,0 +170769808045,214,0 +170769808093,214,0 +170769808142,214,0 +170769808192,214,0 +170769808241,214,0 +170769808291,214,0 +170769808339,215,0 +170769808387,214,0 +170769808434,215,0 +170769808482,215,0 +170769808530,215,0 +170769808578,213,0 +170769808627,213,0 +170769808675,213,0 +170769808723,213,0 +170769808771,213,0 +170769808819,214,0 +170769808868,214,0 +170769808916,214,0 +170769808964,214,0 +170769809012,214,0 +170769809062,214,0 +170769809109,215,0 +170769809157,215,0 +170769809207,215,0 +170769809255,215,0 +170769809304,215,0 +170769809352,214,0 +170769809402,213,0 +170769809449,213,0 +170769809497,213,0 +170769809547,213,0 +170769809595,213,0 +170769809643,213,0 +170769809691,214,0 +170769809739,214,0 +170769809786,214,0 +170769809834,214,0 +170769809884,214,0 +170769809933,215,0 +170769809981,215,0 +170769810029,215,0 +170769810077,215,0 +170769810125,215,0 +170769810173,214,0 +170769810221,214,0 +170769810269,213,0 +170769810316,213,0 +170769810364,213,0 +170769810412,214,0 +170769810460,214,0 +170769810508,214,0 +170769810556,214,0 +170769810604,214,0 +170769810652,214,0 +170769810700,215,0 +170769810749,214,0 +170769810797,214,0 +170769810847,214,0 +170769810895,215,0 +170769810943,215,0 +170769810991,215,0 +170769811038,214,0 +170769811086,213,0 +170769811134,213,0 +170769811182,213,0 +170769811230,213,0 +170769811278,214,0 +170769811326,214,0 +170769811375,214,0 +170769811425,214,0 +170769811473,214,0 +170769811521,214,0 +170769811569,215,0 +170769811616,214,0 +170769811664,214,0 +170769811714,215,0 +170769811763,214,0 +170769811811,215,0 +170769811859,214,0 +170769811907,213,0 +170769811955,213,0 +170769812003,213,0 +170769812052,213,0 +170769812100,213,0 +170769812148,214,0 +170769812198,214,0 +170769812246,214,0 +170769812294,214,0 +170769812342,214,0 +170769812391,214,0 +170769812439,214,0 +170769812487,214,0 +170769812535,214,0 +170769812583,215,0 +170769812631,215,0 +170769812679,214,0 +170769812728,214,0 +170769812776,213,0 +170769812826,213,0 +170769812874,214,0 +170769812922,214,0 +170769812969,214,0 +170769813019,214,0 +170769813067,214,0 +170769813115,214,0 +170769813163,214,0 +170769813212,214,0 +170769813262,214,0 +170769813311,215,0 +170769813361,215,0 +170769813409,215,0 +170769813457,215,0 +170769813506,214,0 +170769813556,214,0 +170769813604,214,0 +170769813652,214,0 +170769813701,214,0 +170769813751,214,0 +170769813799,214,0 +170769813847,214,0 +170769813894,214,0 +170769813944,214,0 +170769813993,214,0 +170769814041,214,0 +170769814089,215,0 +170769814139,214,0 +170769814188,215,0 +170769814236,215,0 +170769814284,215,0 +170769814334,214,0 +170769814384,214,0 +170769814431,214,0 +170769814481,213,0 +170769814530,213,0 +170769814578,214,0 +170769814626,214,0 +170769814676,214,0 +170769814725,215,0 +170769814773,214,0 +170769814821,214,0 +170769814871,215,0 +170769814919,214,0 +170769814968,214,0 +170769815016,214,0 +170769815066,215,0 +170769815114,214,0 +170769815163,215,0 +170769815211,214,0 +170769815259,213,0 +170769815307,213,0 +170769815356,213,0 +170769815404,213,0 +170769815452,213,0 +170769815500,213,0 +170769815548,213,0 +170769815596,214,0 +170769815644,213,0 +170769815693,214,0 +170769815741,214,0 +170769815791,214,0 +170769815840,214,0 +170769815890,214,0 +170769815938,214,0 +170769815986,214,0 +170769816033,214,0 +170769816081,213,0 +170769816129,213,0 +170769816177,213,0 +170769816227,213,0 +170769816275,213,0 +170769816324,213,0 +170769816372,214,0 +170769816420,214,0 +170769816468,214,0 +170769816516,214,0 +170769816565,214,0 +170769816615,214,0 +170769816664,214,0 +170769816712,214,0 +170769816760,214,0 +170769816810,214,0 +170769816859,214,0 +170769816907,214,0 +170769816957,213,0 +170769817005,213,0 +170769817053,213,0 +170769817101,213,0 +170769817149,214,0 +170769817198,214,0 +170769817247,214,0 +170769817295,214,0 +170769817343,214,0 +170769817393,214,0 +170769817441,214,0 +170769817490,214,0 +170769817538,214,0 +170769817586,215,0 +170769817634,215,0 +170769817683,215,0 +170769817733,214,0 +170769817781,213,0 +170769817830,213,0 +170769817880,213,0 +170769817929,213,0 +170769817977,213,0 +170769818025,214,0 +170769818073,214,0 +170769818121,214,0 +170769818171,214,0 +170769818220,214,0 +170769818270,214,0 +170769818319,214,0 +170769818367,214,0 +170769818417,214,0 +170769818466,215,0 +170769818514,214,0 +170769818562,214,0 +170769818610,213,0 +170769818658,213,0 +170769818707,213,0 +170769818755,213,0 +170769818803,213,0 +170769818851,213,0 +170769818899,214,0 +170769818949,214,0 +170769818996,214,0 +170769819046,214,0 +170769819094,214,0 +170769819142,214,0 +170769819190,215,0 +170769819239,215,0 +170769819287,215,0 +170769819337,214,0 +170769819384,214,0 +170769819434,213,0 +170769819482,213,0 +170769819532,213,0 +170769819581,213,0 +170769819629,213,0 +170769819677,213,0 +170769819725,213,0 +170769819774,214,0 +170769819822,214,0 +170769819870,214,0 +170769819920,214,0 +170769819968,214,0 +170769820016,214,0 +170769820064,214,0 +170769820112,214,0 +170769820161,214,0 +170769820209,214,0 +170769820257,214,0 +170769820305,213,0 +170769820354,213,0 +170769820404,213,0 +170769820452,213,0 +170769820499,213,0 +170769820547,214,0 +170769820597,213,0 +170769820645,214,0 +170769820694,214,0 +170769820744,214,0 +170769820792,214,0 +170769820840,214,0 +170769820888,214,0 +170769820936,214,0 +170769820985,215,0 +170769821035,214,0 +170769821083,215,0 +170769821132,213,0 +170769821182,213,0 +170769821230,214,0 +170769821278,214,0 +170769821325,214,0 +170769821373,214,0 +170769821421,214,0 +170769821469,214,0 +170769821519,215,0 +170769821566,214,0 +170769821614,215,0 +170769821662,215,0 +170769821710,215,0 +170769821760,215,0 +170769821808,215,0 +170769821855,214,0 +170769821905,214,0 +170769821954,214,0 +170769822002,213,0 +170769822050,214,0 +170769822099,214,0 +170769822147,214,0 +170769822195,214,0 +170769822243,214,0 +170769822291,214,0 +170769822340,214,0 +170769822388,214,0 +170769822436,214,0 +170769822484,215,0 +170769822534,215,0 +170769822582,214,0 +170769822629,215,0 +170769822679,215,0 +170769822727,214,0 +170769822775,214,0 +170769822823,214,0 +170769822871,213,0 +170769822919,213,0 +170769822967,214,0 +170769823015,214,0 +170769823064,214,0 +170769823112,214,0 +170769823160,214,0 +170769823209,214,0 +170769823257,214,0 +170769823307,214,0 +170769823355,215,0 +170769823404,215,0 +170769823452,215,0 +170769823500,215,0 +170769823549,215,0 +170769823599,214,0 +170769823647,213,0 +170769823695,213,0 +170769823742,213,0 +170769823790,213,0 +170769823839,213,0 +170769823887,214,0 +170769823935,214,0 +170769823982,214,0 +170769824030,214,0 +170769824078,214,0 +170769824126,214,0 +170769824174,215,0 +170769824222,214,0 +170769824269,215,0 +170769824317,214,0 +170769824365,214,0 +170769824413,214,0 +170769824460,214,0 +170769824508,213,0 +170769824556,213,0 +170769824604,213,0 +170769824652,213,0 +170769824700,213,0 +170769824748,213,0 +170769824795,214,0 +170769824843,214,0 +170769824893,214,0 +170769824941,214,0 +170769824989,214,0 +170769825038,214,0 +170769825086,214,0 +170769825136,214,0 +170769825185,214,0 +170769825233,215,0 +170769825281,214,0 +170769825329,213,0 +170769825377,213,0 +170769825426,213,0 +170769825474,213,0 +170769825524,213,0 +170769825572,213,0 +170769825619,213,0 +170769825669,214,0 +170769825717,214,0 +170769825766,214,0 +170769825814,214,0 +170769825862,214,0 +170769825912,214,0 +170769825960,214,0 +170769826008,215,0 +170769826055,214,0 +170769826103,214,0 +170769826153,213,0 +170769826201,213,0 +170769826249,213,0 +170769826297,213,0 +170769826344,213,0 +170769826392,213,0 +170769826440,213,0 +170769826490,213,0 +170769826537,213,0 +170769826585,214,0 +170769826633,214,0 +170769826682,214,0 +170769826732,214,0 +170769826780,214,0 +170769826829,214,0 +170769826877,215,0 +170769826925,214,0 +170769826973,214,0 +170769827021,213,0 +170769827068,213,0 +170769827116,213,0 +170769827164,213,0 +170769827212,214,0 +170769827260,214,0 +170769827308,214,0 +170769827356,214,0 +170769827404,214,0 +170769827451,214,0 +170769827501,214,0 +170769827549,214,0 +170769827596,215,0 +170769827644,215,0 +170769827692,215,0 +170769827740,214,0 +170769827788,214,0 +170769827837,214,0 +170769827885,214,0 +170769827933,214,0 +170769827980,214,0 +170769828028,214,0 +170769828076,214,0 +170769828124,214,0 +170769828172,214,0 +170769828220,214,0 +170769828267,215,0 +170769828315,215,0 +170769828365,215,0 +170769828412,215,0 +170769828460,215,0 +170769828508,215,0 +170769828556,215,0 +170769828605,215,0 +170769828653,214,0 +170769828701,213,0 +170769828749,214,0 +170769828796,214,0 +170769828846,214,0 +170769828894,214,0 +170769828942,214,0 +170769828990,214,0 +170769829039,214,0 +170769829087,215,0 +170769829135,214,0 +170769829184,215,0 +170769829234,215,0 +170769829283,215,0 +170769829331,215,0 +170769829379,215,0 +170769829427,215,0 +170769829475,214,0 +170769829522,213,0 +170769829572,213,0 +170769829620,213,0 +170769829667,213,0 +170769829715,214,0 +170769829763,214,0 +170769829811,214,0 +170769829858,214,0 +170769829908,214,0 +170769829955,214,0 +170769830005,214,0 +170769830053,215,0 +170769830101,215,0 +170769830148,214,0 +170769830196,215,0 +170769830244,215,0 +170769830292,214,0 +170769830342,213,0 +170769830391,213,0 +170769830439,214,0 +170769830487,214,0 +170769830535,214,0 +170769830583,214,0 +170769830631,214,0 +170769830680,214,0 +170769830730,214,0 +170769830778,214,0 +170769830825,214,0 +170769830873,214,0 +170769830921,215,0 +170769830969,215,0 +170769831018,215,0 +170769831068,215,0 +170769831117,215,0 +170769831167,214,0 +170769831214,214,0 +170769831262,213,0 +170769831310,214,0 +170769831358,214,0 +170769831406,214,0 +170769831454,214,0 +170769831502,214,0 +170769831550,214,0 +170769831599,215,0 +170769831647,214,0 +170769831697,215,0 +170769831744,215,0 +170769831794,215,0 +170769831842,215,0 +170769831890,215,0 +170769831938,214,0 +170769831985,215,0 +170769832035,213,0 +170769832083,214,0 +170769832131,214,0 +170769832178,214,0 +170769832226,214,0 +170769832274,214,0 +170769832324,214,0 +170769832373,215,0 +170769832422,214,0 +170769832470,214,0 +170769832518,215,0 +170769832566,215,0 +170769832614,215,0 +170769832663,215,0 +170769832711,214,0 +170769832759,215,0 +170769832807,214,0 +170769832855,214,0 +170769832903,214,0 +170769832952,214,0 +170769833002,214,0 +170769833050,214,0 +170769833098,214,0 +170769833147,214,0 +170769833197,215,0 +170769833245,214,0 +170769833293,215,0 +170769833342,215,0 +170769833392,215,0 +170769833441,215,0 +170769833489,215,0 +170769833537,215,0 +170769833585,215,0 +170769833632,214,0 +170769833680,214,0 +170769833728,214,0 +170769833776,214,0 +170769833824,214,0 +170769833872,214,0 +170769833920,214,0 +170769833968,214,0 +170769834016,214,0 +170769834064,214,0 +170769834112,214,0 +170769834160,215,0 +170769834209,215,0 +170769834257,215,0 +170769834305,214,0 +170769834353,215,0 +170769834403,216,0 +170769834452,215,0 +170769834502,214,0 +170769834551,214,0 +170769834599,214,0 +170769834647,214,0 +170769834696,214,0 +170769834744,214,0 +170769834792,214,0 +170769834842,214,0 +170769834889,214,0 +170769834937,214,0 +170769834985,215,0 +170769835033,215,0 +170769835083,215,0 +170769835132,215,0 +170769835180,215,0 +170769835230,215,0 +170769835279,215,0 +170769835328,215,0 +170769835376,214,0 +170769835424,214,0 +170769835474,214,0 +170769835523,214,0 +170769835571,214,0 +170769835619,214,0 +170769835668,214,0 +170769835718,214,0 +170769835766,214,0 +170769835814,215,0 +170769835862,215,0 +170769835910,215,0 +170769835957,215,0 +170769836005,215,0 +170769836055,215,0 +170769836103,215,0 +170769836151,215,0 +170769836200,214,0 +170769836250,213,0 +170769836299,213,0 +170769836347,213,0 +170769836395,213,0 +170769836443,213,0 +170769836490,213,0 +170769836540,214,0 +170769836588,214,0 +170769836636,214,0 +170769836685,214,0 +170769836733,214,0 +170769836781,214,0 +170769836831,214,0 +170769836878,215,0 +170769836926,214,0 +170769836976,214,0 +170769837024,214,0 +170769837072,213,0 +170769837120,213,0 +170769837169,213,0 +170769837219,213,0 +170769837266,213,0 +170769837314,213,0 +170769837362,213,0 +170769837410,213,0 +170769837458,214,0 +170769837506,214,0 +170769837555,214,0 +170769837604,214,0 +170769837652,215,0 +170769837700,214,0 +170769837750,215,0 +170769837798,215,0 +170769837846,214,0 +170769837893,213,0 +170769837941,213,0 +170769837989,213,0 +170769838037,213,0 +170769838087,213,0 +170769838135,213,0 +170769838184,213,0 +170769838232,213,0 +170769838282,213,0 +170769838331,214,0 +170769838379,214,0 +170769838428,214,0 +170769838476,214,0 +170769838526,214,0 +170769838575,214,0 +170769838623,214,0 +170769838671,215,0 +170769838719,214,0 +170769838767,213,0 +170769838815,213,0 +170769838863,213,0 +170769838910,213,0 +170769838958,213,0 +170769839008,213,0 +170769839055,213,0 +170769839103,213,0 +170769839153,214,0 +170769839201,214,0 +170769839248,214,0 +170769839296,214,0 +170769839344,214,0 +170769839392,214,0 +170769839440,214,0 +170769839488,215,0 +170769839536,214,0 +170769839585,215,0 +170769839633,213,0 +170769839683,213,0 +170769839731,213,0 +170769839780,213,0 +170769839830,213,0 +170769839879,213,0 +170769839929,213,0 +170769839977,214,0 +170769840024,214,0 +170769840074,214,0 +170769840122,214,0 +170769840170,214,0 +170769840218,214,0 +170769840266,214,0 +170769840313,214,0 +170769840361,215,0 +170769840411,215,0 +170769840460,214,0 +170769840508,214,0 +170769840558,213,0 +170769840606,213,0 +170769840655,213,0 +170769840705,213,0 +170769840753,213,0 +170769840801,213,0 +170769840849,213,0 +170769840896,213,0 +170769840944,213,0 +170769840994,214,0 +170769841042,214,0 +170769841091,214,0 +170769841139,214,0 +170769841189,214,0 +170769841237,214,0 +170769841286,214,0 +170769841336,214,0 +170769841384,215,0 +170769841431,213,0 +170769841479,213,0 +170769841527,213,0 +170769841577,213,0 +170769841626,214,0 +170769841676,214,0 +170769841724,214,0 +170769841772,214,0 +170769841821,214,0 +170769841869,214,0 +170769841917,215,0 +170769841965,215,0 +170769842015,215,0 +170769842063,215,0 +170769842111,215,0 +170769842158,215,0 +170769842206,214,0 +170769842256,215,0 +170769842304,214,0 +170769842353,213,0 +170769842401,213,0 +170769842450,213,0 +170769842498,214,0 +170769842548,214,0 +170769842596,214,0 +170769842644,214,0 +170769842691,214,0 +170769842741,214,0 +170769842790,215,0 +170769842840,214,0 +170769842888,215,0 +170769842936,215,0 +170769842984,215,0 +170769843033,215,0 +170769843081,215,0 +170769843131,215,0 +170769843179,215,0 +170769843226,214,0 +170769843274,213,0 +170769843322,213,0 +170769843372,213,0 +170769843420,214,0 +170769843469,214,0 +170769843517,214,0 +170769843567,214,0 +170769843615,214,0 +170769843664,214,0 +170769843712,214,0 +170769843760,214,0 +170769843808,215,0 +170769843856,215,0 +170769843904,215,0 +170769843952,215,0 +170769844000,215,0 +170769844048,214,0 +170769844096,214,0 +170769844143,213,0 +170769844191,213,0 +170769844241,213,0 +170769844289,214,0 +170769844337,214,0 +170769844385,214,0 +170769844433,214,0 +170769844482,214,0 +170769844530,214,0 +170769844578,214,0 +170769844626,214,0 +170769844674,214,0 +170769844722,215,0 +170769844770,215,0 +170769844819,215,0 +170769844867,215,0 +170769844915,214,0 +170769844965,215,0 +170769845013,214,0 +170769845062,213,0 +170769845111,214,0 +170769845159,214,0 +170769845209,214,0 +170769845257,214,0 +170769845305,214,0 +170769845354,214,0 +170769845402,214,0 +170769845451,214,0 +170769845499,215,0 +170769845547,214,0 +170769845595,215,0 +170769845643,215,0 +170769845693,215,0 +170769845742,215,0 +170769845791,215,0 +170769845839,214,0 +170769845887,215,0 +170769845935,214,0 +170769845983,214,0 +170769846033,214,0 +170769846081,214,0 +170769846129,214,0 +170769846178,214,0 +170769846228,214,0 +170769846277,215,0 +170769846325,215,0 +170769846373,215,0 +170769846422,215,0 +170769846470,215,0 +170769846520,215,0 +170769846568,215,0 +170769846615,215,0 +170769846663,214,0 +170769846713,214,0 +170769846761,214,0 +170769846809,213,0 +170769846857,213,0 +170769846905,213,0 +170769846952,213,0 +170769847002,214,0 +170769847050,214,0 +170769847099,214,0 +170769847147,214,0 +170769847195,215,0 +170769847245,214,0 +170769847293,214,0 +170769847342,214,0 +170769847392,214,0 +170769847441,214,0 +170769847489,214,0 +170769847539,214,0 +170769847587,214,0 +170769847635,214,0 +170769847682,214,0 +170769847732,213,0 +170769847781,213,0 +170769847831,213,0 +170769847880,213,0 +170769847928,213,0 +170769847976,213,0 +170769848024,213,0 +170769848074,213,0 +170769848121,213,0 +170769848171,213,0 +170769848220,213,0 +170769848270,213,0 +170769848318,214,0 +170769848366,214,0 +170769848414,214,0 +170769848462,214,0 +170769848511,213,0 +170769848559,214,0 +170769848609,213,0 +170769848657,213,0 +170769848706,213,0 +170769848756,213,0 +170769848805,213,0 +170769848853,213,0 +170769848902,213,0 +170769848950,213,0 +170769848998,213,0 +170769849048,213,0 +170769849096,213,0 +170769849143,213,0 +170769849193,213,0 +170769849241,214,0 +170769849290,214,0 +170769849340,214,0 +170769849388,214,0 +170769849437,214,0 +170769849485,213,0 +170769849533,213,0 +170769849581,213,0 +170769849629,213,0 +170769849677,213,0 +170769849726,213,0 +170769849776,213,0 +170769849824,213,0 +170769849872,213,0 +170769849920,213,0 +170769849968,213,0 +170769850016,214,0 +170769850065,213,0 +170769850115,214,0 +170769850164,214,0 +170769850212,214,0 +170769850260,214,0 +170769850308,214,0 +170769850357,214,0 +170769850405,213,0 +170769850453,213,0 +170769850503,213,0 +170769850552,213,0 +170769850600,213,0 +170769850650,213,0 +170769850698,214,0 +170769850747,214,0 +170769850797,214,0 +170769850846,214,0 +170769850894,214,0 +170769850943,214,0 +170769850993,214,0 +170769851041,214,0 +170769851090,215,0 +170769851140,214,0 +170769851188,214,0 +170769851236,214,0 +170769851284,213,0 +170769851331,213,0 +170769851379,213,0 +170769851427,213,0 +170769851475,213,0 +170769851523,213,0 +170769851570,214,0 +170769851618,214,0 +170769851666,214,0 +170769851714,214,0 +170769851762,214,0 +170769851810,214,0 +170769851858,214,0 +170769851905,214,0 +170769851953,214,0 +170769852001,214,0 +170769852049,214,0 +170769852097,214,0 +170769852145,214,0 +170769852193,213,0 +170769852240,213,0 +170769852290,213,0 +170769852338,213,0 +170769852387,213,0 +170769852435,213,0 +170769852483,213,0 +170769852531,213,0 +170769852579,214,0 +170769852626,214,0 +170769852674,214,0 +170769852722,214,0 +170769852770,214,0 +170769852818,214,0 +170769852867,214,0 +170769852915,214,0 +170769852963,214,0 +170769853011,214,0 +170769853058,214,0 +170769853106,213,0 +170769853154,213,0 +170769853203,213,0 +170769853251,213,0 +170769853299,213,0 +170769853347,213,0 +170769853395,213,0 +170769853444,213,0 +170769853492,213,0 +170769853540,213,0 +170769853590,213,0 +170769853639,213,0 +170769853687,214,0 +170769853735,214,0 +170769853783,214,0 +170769853831,214,0 +170769853879,214,0 +170769853929,214,0 +170769853977,213,0 +170769854024,212,0 +170769854072,213,0 +170769854120,212,0 +170769854168,213,0 +170769854216,213,0 +170769854264,213,0 +170769854312,213,0 +170769854361,213,0 +170769854409,213,0 +170769854457,213,0 +170769854504,213,0 +170769854552,213,0 +170769854600,213,0 +170769854648,214,0 +170769854696,214,0 +170769854744,214,0 +170769854791,214,0 +170769854839,214,0 +170769854887,213,0 +170769854935,213,0 +170769854983,213,0 +170769855031,213,0 +170769855080,213,0 +170769855128,213,0 +170769855176,213,0 +170769855224,213,0 +170769855272,213,0 +170769855321,213,0 +170769855369,213,0 +170769855417,213,0 +170769855465,213,0 +170769855513,214,0 +170769855561,214,0 +170769855610,214,0 +170769855660,214,0 +170769855709,214,0 +170769855759,214,0 +170769855807,213,0 +170769855856,213,0 +170769855904,213,0 +170769855952,213,0 +170769856000,213,0 +170769856048,213,0 +170769856096,213,0 +170769856144,213,0 +170769856192,213,0 +170769856241,213,0 +170769856289,213,0 +170769856337,214,0 +170769856385,214,0 +170769856433,214,0 +170769856480,214,0 +170769856530,214,0 +170769856578,214,0 +170769856626,214,0 +170769856673,213,0 +170769856721,213,0 +170769856771,213,0 +170769856819,213,0 +170769856866,213,0 +170769856914,213,0 +170769856962,213,0 +170769857010,213,0 +170769857059,213,0 +170769857107,214,0 +170769857155,214,0 +170769857203,214,0 +170769857251,214,0 +170769857299,214,0 +170769857348,214,0 +170769857396,214,0 +170769857444,214,0 +170769857491,214,0 +170769857541,214,0 +170769857589,213,0 +170769857638,213,0 +170769857686,213,0 +170769857735,213,0 +170769857783,213,0 +170769857831,213,0 +170769857881,213,0 +170769857930,213,0 +170769857978,214,0 +170769858026,214,0 +170769858074,214,0 +170769858121,214,0 +170769858169,214,0 +170769858217,214,0 +170769858265,214,0 +170769858313,214,0 +170769858361,214,0 +170769858408,214,0 +170769858456,213,0 +170769858504,213,0 +170769858552,213,0 +170769858600,213,0 +170769858648,213,0 +170769858695,213,0 +170769858743,213,0 +170769858791,214,0 +170769858839,214,0 +170769858887,214,0 +170769858935,214,0 +170769858983,214,0 +170769859031,214,0 +170769859078,214,0 +170769859126,214,0 +170769859176,215,0 +170769859224,214,0 +170769859273,215,0 +170769859321,214,0 +170769859369,213,0 +170769859417,213,0 +170769859465,213,0 +170769859514,213,0 +170769859564,213,0 +170769859612,213,0 +170769859661,213,0 +170769859709,214,0 +170769859757,214,0 +170769859805,214,0 +170769859855,214,0 +170769859903,214,0 +170769859952,214,0 +170769860002,214,0 +170769860051,214,0 +170769860099,214,0 +170769860147,214,0 +170769860195,214,0 +170769860243,213,0 +170769860292,213,0 +170769860342,213,0 +170769860390,213,0 +170769860438,213,0 +170769860486,213,0 +170769860534,214,0 +170769860582,214,0 +170769860630,213,0 +170769860678,214,0 +170769860725,214,0 +170769860775,214,0 +170769860823,214,0 +170769860871,214,0 +170769860920,214,0 +170769860968,214,0 +170769861016,214,0 +170769861066,214,0 +170769861114,214,0 +170769861162,213,0 +170769861211,213,0 +170769861259,213,0 +170769861307,213,0 +170769861356,213,0 +170769861404,213,0 +170769861452,213,0 +170769861502,213,0 +170769861550,213,0 +170769861598,213,0 +170769861645,214,0 +170769861694,214,0 +170769861743,214,0 +170769861791,214,0 +170769861840,214,0 +170769861890,214,0 +170769861938,214,0 +170769861986,214,0 +170769862034,213,0 +170769862082,213,0 +170769862131,213,0 +170769862179,213,0 +170769862227,213,0 +170769862275,213,0 +170769862325,213,0 +170769862373,213,0 +170769862421,214,0 +170769862469,214,0 +170769862516,214,0 +170769862564,214,0 +170769862614,214,0 +170769862663,214,0 +170769862713,214,0 +170769862761,214,0 +170769862809,214,0 +170769862858,214,0 +170769862906,214,0 +170769862955,213,0 +170769863003,213,0 +170769863053,213,0 +170769863101,213,0 +170769863150,213,0 +170769863198,214,0 +170769863246,214,0 +170769863294,214,0 +170769863344,214,0 +170769863393,214,0 +170769863441,214,0 +170769863490,214,0 +170769863540,215,0 +170769863589,215,0 +170769863639,215,0 +170769863687,214,0 +170769863736,215,0 +170769863786,215,0 +170769863834,213,0 +170769863882,213,0 +170769863930,213,0 +170769863977,213,0 +170769864025,213,0 +170769864073,213,0 +170769864121,213,0 +170769864169,214,0 +170769864217,214,0 +170769864265,214,0 +170769864315,214,0 +170769864363,214,0 +170769864411,214,0 +170769864459,215,0 +170769864506,214,0 +170769864554,214,0 +170769864604,215,0 +170769864652,214,0 +170769864701,214,0 +170769864749,213,0 +170769864797,213,0 +170769864846,213,0 +170769864894,213,0 +170769864942,213,0 +170769864990,214,0 +170769865038,214,0 +170769865086,213,0 +170769865136,214,0 +170769865184,214,0 +170769865231,214,0 +170769865279,214,0 +170769865327,214,0 +170769865375,215,0 +170769865423,215,0 +170769865471,215,0 +170769865519,214,0 +170769865566,214,0 +170769865614,213,0 +170769865664,213,0 +170769865712,213,0 +170769865761,213,0 +170769865809,213,0 +170769865857,213,0 +170769865906,213,0 +170769865956,213,0 +170769866004,214,0 +170769866053,214,0 +170769866103,214,0 +170769866150,214,0 +170769866198,214,0 +170769866246,214,0 +170769866296,214,0 +170769866345,215,0 +170769866395,215,0 +170769866443,214,0 +170769866492,214,0 +170769866541,213,0 +170769866591,213,0 +170769866639,213,0 +170769866687,213,0 +170769866735,213,0 +170769866784,213,0 +170769866832,213,0 +170769866882,213,0 +170769866931,214,0 +170769866981,214,0 +170769867029,214,0 +170769867077,214,0 +170769867125,214,0 +170769867172,214,0 +170769867220,214,0 +170769867268,214,0 +170769867316,214,0 +170769867364,214,0 +170769867412,213,0 +170769867460,213,0 +170769867508,213,0 +170769867556,213,0 +170769867604,213,0 +170769867652,213,0 +170769867701,213,0 +170769867751,213,0 +170769867800,214,0 +170769867848,214,0 +170769867898,214,0 +170769867947,214,0 +170769867995,214,0 +170769868043,214,0 +170769868091,214,0 +170769868139,215,0 +170769868187,215,0 +170769868236,214,0 +170769868284,213,0 +170769868334,213,0 +170769868383,213,0 +170769868431,213,0 +170769868479,213,0 +170769868529,213,0 +170769868578,213,0 +170769868626,214,0 +170769868674,213,0 +170769868723,214,0 +170769868773,214,0 +170769868821,214,0 +170769868869,214,0 +170769868917,214,0 +170769868965,215,0 +170769869013,215,0 +170769869062,215,0 +170769869110,215,0 +170769869160,214,0 +170769869208,213,0 +170769869255,213,0 +170769869303,214,0 +170769869353,214,0 +170769869402,214,0 +170769869450,214,0 +170769869498,214,0 +170769869546,214,0 +170769869594,214,0 +170769869641,214,0 +170769869691,214,0 +170769869739,214,0 +170769869787,214,0 +170769869834,215,0 +170769869882,215,0 +170769869930,214,0 +170769869978,214,0 +170769870027,214,0 +170769870075,213,0 +170769870123,213,0 +170769870171,213,0 +170769870219,214,0 +170769870267,214,0 +170769870315,214,0 +170769870362,214,0 +170769870410,214,0 +170769870458,214,0 +170769870506,214,0 +170769870554,214,0 +170769870603,214,0 +170769870651,215,0 +170769870700,214,0 +170769870748,215,0 +170769870796,214,0 +170769870844,215,0 +170769870892,215,0 +170769870940,214,0 +170769870987,213,0 +170769871035,213,0 +170769871083,213,0 +170769871131,213,0 +170769871179,214,0 +170769871227,214,0 +170769871275,214,0 +170769871323,214,0 +170769871371,214,0 +170769871420,214,0 +170769871468,214,0 +170769871518,214,0 +170769871567,215,0 +170769871617,215,0 +170769871664,215,0 +170769871714,214,0 +170769871762,214,0 +170769871810,214,0 +170769871858,213,0 +170769871907,213,0 +170769871955,213,0 +170769872003,213,0 +170769872051,213,0 +170769872099,213,0 +170769872147,214,0 +170769872194,214,0 +170769872242,214,0 +170769872290,214,0 +170769872338,214,0 +170769872386,215,0 +170769872434,214,0 +170769872481,215,0 +170769872531,214,0 +170769872579,215,0 +170769872626,215,0 +170769872676,215,0 +170769872724,214,0 +170769872772,213,0 +170769872819,213,0 +170769872869,213,0 +170769872918,213,0 +170769872966,213,0 +170769873016,213,0 +170769873063,214,0 +170769873113,214,0 +170769873161,214,0 +170769873209,214,0 +170769873256,214,0 +170769873304,214,0 +170769873352,214,0 +170769873400,214,0 +170769873448,214,0 +170769873496,215,0 +170769873544,214,0 +170769873592,215,0 +170769873641,214,0 +170769873691,213,0 +170769873739,213,0 +170769873787,213,0 +170769873835,213,0 +170769873882,213,0 +170769873930,213,0 +170769873978,213,0 +170769874026,213,0 +170769874074,214,0 +170769874122,214,0 +170769874172,214,0 +170769874220,214,0 +170769874268,214,0 +170769874315,214,0 +170769874363,214,0 +170769874413,214,0 +170769874461,214,0 +170769874509,214,0 +170769874556,213,0 +170769874604,212,0 +170769874654,213,0 +170769874702,213,0 +170769874750,213,0 +170769874797,213,0 +170769874845,213,0 +170769874893,213,0 +170769874941,213,0 +170769874989,213,0 +170769875037,214,0 +170769875084,214,0 +170769875132,214,0 +170769875180,214,0 +170769875230,214,0 +170769875278,214,0 +170769875327,214,0 +170769875375,214,0 +170769875423,214,0 +170769875473,213,0 +170769875522,213,0 +170769875570,213,0 +170769875618,213,0 +170769875667,213,0 +170769875717,213,0 +170769875765,213,0 +170769875812,213,0 +170769875860,213,0 +170769875908,214,0 +170769875958,214,0 +170769876006,214,0 +170769876055,214,0 +170769876103,214,0 +170769876152,214,0 +170769876200,214,0 +170769876248,214,0 +170769876298,214,0 +170769876347,213,0 +170769876395,213,0 +170769876445,213,0 +170769876494,213,0 +170769876542,213,0 +170769876590,213,0 +170769876639,214,0 +170769876687,214,0 +170769876735,214,0 +170769876785,214,0 +170769876834,214,0 +170769876882,214,0 +170769876930,214,0 +170769876978,215,0 +170769877026,215,0 +170769877075,214,0 +170769877125,214,0 +170769877173,214,0 +170769877220,214,0 +170769877270,213,0 +170769877318,213,0 +170769877366,213,0 +170769877414,213,0 +170769877461,214,0 +170769877509,214,0 +170769877557,214,0 +170769877605,214,0 +170769877653,214,0 +170769877701,215,0 +170769877750,214,0 +170769877800,214,0 +170769877848,214,0 +170769877895,214,0 +170769877945,215,0 +170769877993,214,0 +170769878042,214,0 +170769878090,214,0 +170769878138,213,0 +170769878186,213,0 +170769878235,213,0 +170769878283,213,0 +170769878331,213,0 +170769878379,214,0 +170769878428,214,0 +170769878476,214,0 +170769878524,214,0 +170769878572,214,0 +170769878620,214,0 +170769878670,214,0 +170769878718,214,0 +170769878765,214,0 +170769878815,215,0 +170769878864,215,0 +170769878912,214,0 +170769878962,214,0 +170769879010,213,0 +170769879059,213,0 +170769879107,213,0 +170769879155,213,0 +170769879203,213,0 +170769879251,213,0 +170769879299,213,0 +170769879347,213,0 +170769879396,213,0 +170769879446,214,0 +170769879494,214,0 +170769879543,214,0 +170769879591,214,0 +170769879639,215,0 +170769879687,214,0 +170769879735,214,0 +170769879782,214,0 +170769879832,214,0 +170769879881,214,0 +170769879929,213,0 +170769879977,212,0 +170769880025,213,0 +170769880073,213,0 +170769880121,213,0 +170769880168,213,0 +170769880216,213,0 +170769880264,213,0 +170769880312,214,0 +170769880361,213,0 +170769880409,213,0 +170769880457,214,0 +170769880505,214,0 +170769880553,214,0 +170769880602,214,0 +170769880652,214,0 +170769880701,214,0 +170769880751,214,0 +170769880799,213,0 +170769880848,213,0 +170769880898,213,0 +170769880946,213,0 +170769880995,213,0 +170769881045,213,0 +170769881092,213,0 +170769881140,214,0 +170769881188,213,0 +170769881236,214,0 +170769881286,214,0 +170769881335,214,0 +170769881383,214,0 +170769881431,214,0 +170769881481,214,0 +170769881528,214,0 +170769881578,215,0 +170769881627,214,0 +170769881675,213,0 +170769881725,213,0 +170769881773,213,0 +170769881820,213,0 +170769881868,213,0 +170769881916,213,0 +170769881964,213,0 +170769882012,214,0 +170769882060,214,0 +170769882108,214,0 +170769882155,214,0 +170769882203,214,0 +170769882251,214,0 +170769882299,214,0 +170769882348,215,0 +170769882396,215,0 +170769882446,214,0 +170769882494,214,0 +170769882542,214,0 +170769882589,213,0 +170769882637,213,0 +170769882685,213,0 +170769882733,213,0 +170769882781,213,0 +170769882829,213,0 +170769882876,214,0 +170769882924,213,0 +170769882972,214,0 +170769883020,214,0 +170769883070,214,0 +170769883118,214,0 +170769883167,214,0 +170769883217,214,0 +170769883264,214,0 +170769883312,214,0 +170769883360,215,0 +170769883408,214,0 +170769883456,214,0 +170769883504,213,0 +170769883552,213,0 +170769883600,213,0 +170769883647,213,0 +170769883695,213,0 +170769883743,213,0 +170769883791,214,0 +170769883839,214,0 +170769883888,214,0 +170769883936,214,0 +170769883984,214,0 +170769884033,214,0 +170769884081,214,0 +170769884129,214,0 +170769884177,214,0 +170769884225,215,0 +170769884273,215,0 +170769884321,214,0 +170769884368,213,0 +170769884416,213,0 +170769884466,213,0 +170769884514,213,0 +170769884563,213,0 +170769884613,213,0 +170769884662,214,0 +170769884710,214,0 +170769884758,214,0 +170769884806,214,0 +170769884854,214,0 +170769884902,214,0 +170769884951,214,0 +170769885001,215,0 +170769885049,215,0 +170769885098,215,0 +170769885146,215,0 +170769885195,214,0 +170769885243,214,0 +170769885293,213,0 +170769885341,213,0 +170769885389,213,0 +170769885436,213,0 +170769885484,213,0 +170769885532,213,0 +170769885580,214,0 +170769885628,213,0 +170769885676,214,0 +170769885725,214,0 +170769885773,214,0 +170769885821,214,0 +170769885869,214,0 +170769885919,214,0 +170769885966,214,0 +170769886016,215,0 +170769886065,214,0 +170769886113,214,0 +170769886161,213,0 +170769886209,213,0 +170769886259,213,0 +170769886307,213,0 +170769886355,213,0 +170769886402,213,0 +170769886450,213,0 +170769886498,213,0 +170769886548,214,0 +170769886597,214,0 +170769886647,214,0 +170769886695,214,0 +170769886743,214,0 +170769886791,214,0 +170769886838,214,0 +170769886886,214,0 +170769886934,214,0 +170769886982,214,0 +170769887032,214,0 +170769887080,213,0 +170769887129,213,0 +170769887179,213,0 +170769887227,213,0 +170769887275,213,0 +170769887323,213,0 +170769887371,213,0 +170769887420,213,0 +170769887468,214,0 +170769887517,214,0 +170769887567,214,0 +170769887615,214,0 +170769887663,215,0 +170769887710,215,0 +170769887758,215,0 +170769887808,215,0 +170769887856,215,0 +170769887904,214,0 +170769887952,213,0 +170769888000,213,0 +170769888047,213,0 +170769888095,213,0 +170769888143,214,0 +170769888193,214,0 +170769888242,214,0 +170769888292,214,0 +170769888340,214,0 +170769888387,214,0 +170769888435,215,0 +170769888483,214,0 +170769888531,215,0 +170769888579,215,0 +170769888629,215,0 +170769888677,215,0 +170769888724,215,0 +170769888774,215,0 +170769888822,214,0 +170769888871,213,0 +170769888921,213,0 +170769888969,213,0 +170769889017,214,0 +170769889066,213,0 +170769889116,214,0 +170769889164,214,0 +170769889213,214,0 +170769889261,214,0 +170769889309,214,0 +170769889359,215,0 +170769889407,214,0 +170769889456,215,0 +170769889504,214,0 +170769889552,215,0 +170769889601,215,0 +170769889649,214,0 +170769889698,214,0 +170769889746,213,0 +170769889794,213,0 +170769889842,213,0 +170769889890,213,0 +170769889938,213,0 +170769889986,213,0 +170769890034,213,0 +170769890082,214,0 +170769890130,214,0 +170769890178,214,0 +170769890226,214,0 +170769890275,214,0 +170769890323,214,0 +170769890372,214,0 +170769890420,214,0 +170769890470,214,0 +170769890518,214,0 +170769890567,214,0 +170769890615,213,0 +170769890663,212,0 +170769890711,213,0 +170769890759,213,0 +170769890807,213,0 +170769890855,213,0 +170769890904,213,0 +170769890952,213,0 +170769891000,213,0 +170769891048,214,0 +170769891097,214,0 +170769891145,214,0 +170769891195,214,0 +170769891243,214,0 +170769891291,214,0 +170769891340,214,0 +170769891388,214,0 +170769891437,214,0 +170769891485,214,0 +170769891533,213,0 +170769891581,213,0 +170769891630,213,0 +170769891680,213,0 +170769891728,213,0 +170769891776,213,0 +170769891824,213,0 +170769891873,213,0 +170769891921,213,0 +170769891969,213,0 +170769892017,214,0 +170769892065,214,0 +170769892113,214,0 +170769892161,214,0 +170769892210,214,0 +170769892258,214,0 +170769892306,214,0 +170769892354,214,0 +170769892403,213,0 +170769892451,213,0 +170769892499,213,0 +170769892547,213,0 +170769892597,213,0 +170769892644,213,0 +170769892692,213,0 +170769892740,213,0 +170769892788,213,0 +170769892836,213,0 +170769892884,214,0 +170769892932,214,0 +170769892980,214,0 +170769893028,214,0 +170769893076,214,0 +170769893125,214,0 +170769893173,214,0 +170769893221,214,0 +170769893269,214,0 +170769893318,213,0 +170769893366,213,0 +170769893414,213,0 +170769893464,213,0 +170769893512,213,0 +170769893559,213,0 +170769893607,213,0 +170769893655,213,0 +170769893705,214,0 +170769893753,214,0 +170769893801,214,0 +170769893850,214,0 +170769893900,214,0 +170769893948,214,0 +170769893997,214,0 +170769894045,214,0 +170769894094,214,0 +170769894142,214,0 +170769894190,213,0 +170769894238,213,0 +170769894286,213,0 +170769894334,213,0 +170769894382,213,0 +170769894430,213,0 +170769894478,214,0 +170769894526,214,0 +170769894575,214,0 +170769894625,214,0 +170769894673,214,0 +170769894722,214,0 +170769894772,214,0 +170769894820,214,0 +170769894867,214,0 +170769894915,214,0 +170769894963,214,0 +170769895011,214,0 +170769895059,214,0 +170769895107,213,0 +170769895155,213,0 +170769895203,213,0 +170769895252,213,0 +170769895302,213,0 +170769895351,213,0 +170769895401,213,0 +170769895449,213,0 +170769895498,214,0 +170769895546,214,0 +170769895596,214,0 +170769895644,214,0 +170769895693,214,0 +170769895741,214,0 +170769895791,214,0 +170769895839,214,0 +170769895887,214,0 +170769895936,214,0 +170769895984,213,0 +170769896032,213,0 +170769896080,213,0 +170769896128,213,0 +170769896176,213,0 +170769896225,213,0 +170769896273,213,0 +170769896323,213,0 +170769896370,213,0 +170769896418,213,0 +170769896468,214,0 +170769896516,214,0 +170769896564,214,0 +170769896613,214,0 +170769896661,214,0 +170769896709,214,0 +170769896757,214,0 +170769896805,214,0 +170769896855,214,0 +170769896903,213,0 +170769896951,213,0 +170769896998,213,0 +170769897046,213,0 +170769897094,213,0 +170769897142,213,0 +170769897192,213,0 +170769897240,213,0 +170769897289,214,0 +170769897337,214,0 +170769897385,214,0 +170769897433,214,0 +170769897481,214,0 +170769897529,214,0 +170769897578,214,0 +170769897628,215,0 +170769897676,214,0 +170769897724,214,0 +170769897773,213,0 +170769897823,213,0 +170769897872,213,0 +170769897921,213,0 +170769897971,213,0 +170769898019,213,0 +170769898068,213,0 +170769898116,214,0 +170769898166,214,0 +170769898215,214,0 +170769898265,214,0 +170769898314,214,0 +170769898362,214,0 +170769898410,214,0 +170769898458,214,0 +170769898506,214,0 +170769898554,214,0 +170769898603,214,0 +170769898653,214,0 +170769898701,213,0 +170769898749,213,0 +170769898797,213,0 +170769898846,213,0 +170769898894,213,0 +170769898942,214,0 +170769898990,213,0 +170769899038,214,0 +170769899086,214,0 +170769899134,214,0 +170769899182,214,0 +170769899231,214,0 +170769899281,214,0 +170769899329,214,0 +170769899378,214,0 +170769899426,214,0 +170769899474,215,0 +170769899524,215,0 +170769899573,215,0 +170769899623,215,0 +170769899672,215,0 +170769899720,215,0 +170769899768,215,0 +170769899816,215,0 +170769899864,215,0 +170769899912,214,0 +170769899960,214,0 +170769900008,213,0 +170769900056,213,0 +170769900105,213,0 +170769900155,214,0 +170769900204,214,0 +170769900252,214,0 +170769900302,214,0 +170769900350,214,0 +170769900397,214,0 +170769900447,214,0 +170769900495,214,0 +170769900544,215,0 +170769900592,214,0 +170769900642,215,0 +170769900690,215,0 +170769900739,215,0 +170769900787,215,0 +170769900835,214,0 +170769900885,213,0 +170769900934,213,0 +170769900984,213,0 +170769901033,213,0 +170769901082,213,0 +170769901130,213,0 +170769901178,213,0 +170769901226,213,0 +170769901274,214,0 +170769901324,214,0 +170769901372,214,0 +170769901420,214,0 +170769901468,215,0 +170769901515,214,0 +170769901563,215,0 +170769901611,215,0 +170769901659,215,0 +170769901707,215,0 +170769901757,214,0 +170769901805,213,0 +170769901853,213,0 +170769901902,213,0 +170769901950,213,0 +170769901998,213,0 +170769902046,213,0 +170769902094,213,0 +170769902142,213,0 +170769902190,214,0 +170769902239,214,0 +170769902287,214,0 +170769902335,214,0 +170769902383,214,0 +170769902433,214,0 +170769902482,215,0 +170769902530,214,0 +170769902578,215,0 +170769902627,215,0 +170769902675,214,0 +170769902723,213,0 +170769902771,213,0 +170769902819,213,0 +170769902867,213,0 +170769902917,213,0 +170769902965,213,0 +170769903013,213,0 +170769903062,214,0 +170769903112,214,0 +170769903159,214,0 +170769903207,214,0 +170769903257,214,0 +170769903305,214,0 +170769903354,214,0 +170769903402,214,0 +170769903450,214,0 +170769903498,214,0 +170769903548,214,0 +170769903596,213,0 +170769903643,213,0 +170769903693,213,0 +170769903741,213,0 +170769903789,213,0 +170769903837,214,0 +170769903884,214,0 +170769903934,214,0 +170769903983,214,0 +170769904033,214,0 +170769904081,214,0 +170769904129,214,0 +170769904176,214,0 +170769904224,214,0 +170769904272,215,0 +170769904320,215,0 +170769904368,215,0 +170769904416,214,0 +170769904465,214,0 +170769904513,213,0 +170769904561,213,0 +170769904611,213,0 +170769904659,213,0 +170769904706,213,0 +170769904754,213,0 +170769904802,214,0 +170769904852,214,0 +170769904900,214,0 +170769904947,214,0 +170769904997,214,0 +170769905046,215,0 +170769905096,215,0 +170769905144,215,0 +170769905193,215,0 +170769905241,215,0 +170769905289,215,0 +170769905337,214,0 +170769905385,213,0 +170769905433,213,0 +170769905482,213,0 +170769905530,213,0 +170769905578,213,0 +170769905626,213,0 +170769905676,213,0 +170769905724,214,0 +170769905772,214,0 +170769905819,214,0 +170769905867,214,0 +170769905915,214,0 +170769905963,214,0 +170769906011,214,0 +170769906061,215,0 +170769906108,215,0 +170769906156,214,0 +170769906206,214,0 +170769906254,214,0 +170769906303,213,0 +170769906351,213,0 +170769906399,213,0 +170769906449,213,0 +170769906496,213,0 +170769906544,213,0 +170769906592,213,0 +170769906640,213,0 +170769906688,213,0 +170769906736,214,0 +170769906785,214,0 +170769906835,214,0 +170769906883,214,0 +170769906931,214,0 +170769906980,214,0 +170769907030,214,0 +170769907078,214,0 +170769907126,214,0 +170769907174,213,0 +170769907222,213,0 +170769907270,213,0 +170769907317,213,0 +170769907365,213,0 +170769907413,213,0 +170769907461,213,0 +170769907509,213,0 +170769907557,213,0 +170769907607,214,0 +170769907656,214,0 +170769907704,214,0 +170769907754,214,0 +170769907803,214,0 +170769907853,214,0 +170769907900,214,0 +170769907948,214,0 +170769907996,214,0 +170769908044,213,0 +170769908094,213,0 +170769908141,212,0 +170769908191,213,0 +170769908240,213,0 +170769908290,213,0 +170769908339,213,0 +170769908387,213,0 +170769908435,213,0 +170769908483,213,0 +170769908531,213,0 +170769908579,213,0 +170769908628,214,0 +170769908676,214,0 +170769908726,214,0 +170769908774,214,0 +170769908822,214,0 +170769908871,214,0 +170769908919,214,0 +170769908968,213,0 +170769909016,213,0 +170769909064,213,0 +170769909112,213,0 +170769909160,213,0 +170769909208,213,0 +170769909255,213,0 +170769909305,213,0 +170769909353,213,0 +170769909401,213,0 +170769909450,213,0 +170769909498,214,0 +170769909546,214,0 +170769909594,214,0 +170769909642,214,0 +170769909690,214,0 +170769909737,214,0 +170769909785,214,0 +170769909833,214,0 +170769909881,213,0 +170769909929,213,0 +170769909977,213,0 +170769910024,213,0 +170769910072,213,0 +170769910120,213,0 +170769910168,213,0 +170769910216,213,0 +170769910264,213,0 +170769910311,213,0 +170769910359,213,0 +170769910407,213,0 +170769910455,213,0 +170769910505,214,0 +170769910553,214,0 +170769910601,214,0 +170769910648,214,0 +170769910696,214,0 +170769910746,213,0 +170769910795,213,0 +170769910843,213,0 +170769910891,213,0 +170769910939,213,0 +170769910987,213,0 +170769911035,213,0 +170769911084,213,0 +170769911132,213,0 +170769911180,214,0 +170769911228,214,0 +170769911276,214,0 +170769911326,214,0 +170769911374,214,0 +170769911423,214,0 +170769911471,214,0 +170769911520,214,0 +170769911568,215,0 +170769911616,214,0 +170769911664,213,0 +170769911714,213,0 +170769911763,213,0 +170769911811,214,0 +170769911859,213,0 +170769911908,214,0 +170769911956,214,0 +170769912006,214,0 +170769912055,214,0 +170769912103,214,0 +170769912153,215,0 +170769912201,214,0 +170769912250,215,0 +170769912298,215,0 +170769912346,214,0 +170769912394,215,0 +170769912442,214,0 +170769912490,214,0 +170769912538,214,0 +170769912586,213,0 +170769912635,213,0 +170769912683,214,0 +170769912731,214,0 +170769912781,214,0 +170769912830,214,0 +170769912878,215,0 +170769912927,214,0 +170769912977,214,0 +170769913025,214,0 +170769913074,214,0 +170769913122,214,0 +170769913170,214,0 +170769913218,215,0 +170769913268,214,0 +170769913316,214,0 +170769913363,214,0 +170769913411,214,0 +170769913459,213,0 +170769913509,213,0 +170769913557,213,0 +170769913605,213,0 +170769913653,213,0 +170769913701,214,0 +170769913750,214,0 +170769913800,214,0 +170769913848,214,0 +170769913897,214,0 +170769913945,214,0 +170769913994,214,0 +170769914042,214,0 +170769914092,215,0 +170769914141,215,0 +170769914191,215,0 +170769914239,215,0 +170769914288,214,0 +170769914336,213,0 +170769914384,213,0 +170769914432,213,0 +170769914480,214,0 +170769914528,214,0 +170769914576,214,0 +170769914624,214,0 +170769914672,214,0 +170769914720,214,0 +170769914769,214,0 +170769914817,214,0 +170769914865,214,0 +170769914914,214,0 +170769914964,215,0 +170769915013,215,0 +170769915061,215,0 +170769915111,215,0 +170769915159,215,0 +170769915207,214,0 +170769915254,213,0 +170769915302,214,0 +170769915350,214,0 +170769915398,214,0 +170769915446,214,0 +170769915494,214,0 +170769915541,214,0 +170769915589,215,0 +170769915639,214,0 +170769915688,214,0 +170769915736,215,0 +170769915786,215,0 +170769915833,215,0 +170769915883,215,0 +170769915931,215,0 +170769915979,215,0 +170769916026,214,0 +170769916074,214,0 +170769916122,214,0 +170769916170,214,0 +170769916218,214,0 +170769916266,214,0 +170769916315,214,0 +170769916365,214,0 +170769916415,214,0 +170769916462,214,0 +170769916510,214,0 +170769916558,215,0 +170769916608,215,0 +170769916657,214,0 +170769916705,215,0 +170769916753,215,0 +170769916801,215,0 +170769916849,215,0 +170769916899,215,0 +170769916946,215,0 +170769916996,214,0 +170769917044,214,0 +170769917092,214,0 +170769917140,214,0 +170769917188,214,0 +170769917237,214,0 +170769917285,214,0 +170769917333,214,0 +170769917381,214,0 +170769917430,214,0 +170769917478,215,0 +170769917528,214,0 +170769917576,215,0 +170769917624,215,0 +170769917672,215,0 +170769917720,215,0 +170769917767,215,0 +170769917817,215,0 +170769917865,214,0 +170769917913,213,0 +170769917961,213,0 +170769918009,213,0 +170769918058,213,0 +170769918108,213,0 +170769918156,214,0 +170769918203,214,0 +170769918253,214,0 +170769918302,214,0 +170769918352,214,0 +170769918401,214,0 +170769918449,214,0 +170769918499,215,0 +170769918547,215,0 +170769918595,215,0 +170769918643,215,0 +170769918691,215,0 +170769918739,215,0 +170769918788,213,0 +170769918836,213,0 +170769918884,213,0 +170769918932,213,0 +170769918980,213,0 +170769919028,214,0 +170769919076,214,0 +170769919123,214,0 +170769919171,214,0 +170769919219,214,0 +170769919267,214,0 +170769919315,214,0 +170769919363,214,0 +170769919411,215,0 +170769919459,215,0 +170769919508,214,0 +170769919558,215,0 +170769919606,215,0 +170769919654,214,0 +170769919702,213,0 +170769919751,213,0 +170769919799,213,0 +170769919847,213,0 +170769919896,214,0 +170769919946,214,0 +170769919994,213,0 +170769920042,214,0 +170769920091,214,0 +170769920139,214,0 +170769920189,214,0 +170769920237,214,0 +170769920285,214,0 +170769920334,214,0 +170769920384,215,0 +170769920432,215,0 +170769920481,215,0 +170769920529,215,0 +170769920577,214,0 +170769920626,213,0 +170769920674,213,0 +170769920722,213,0 +170769920772,213,0 +170769920820,213,0 +170769920868,213,0 +170769920917,214,0 +170769920967,214,0 +170769921016,214,0 +170769921065,214,0 +170769921113,214,0 +170769921161,214,0 +170769921211,215,0 +170769921259,215,0 +170769921308,215,0 +170769921356,215,0 +170769921406,215,0 +170769921455,214,0 +170769921503,213,0 +170769921551,213,0 +170769921601,213,0 +170769921650,213,0 +170769921698,213,0 +170769921746,213,0 +170769921794,213,0 +170769921843,214,0 +170769921891,214,0 +170769921939,214,0 +170769921987,214,0 +170769922036,214,0 +170769922084,214,0 +170769922132,214,0 +170769922180,214,0 +170769922228,214,0 +170769922278,215,0 +170769922325,214,0 +170769922373,213,0 +170769922421,213,0 +170769922469,213,0 +170769922517,213,0 +170769922565,213,0 +170769922613,213,0 +170769922661,213,0 +170769922709,213,0 +170769922757,214,0 +170769922805,214,0 +170769922853,214,0 +170769922902,214,0 +170769922952,214,0 +170769922999,214,0 +170769923047,214,0 +170769923095,214,0 +170769923143,215,0 +170769923191,214,0 +170769923239,214,0 +170769923288,213,0 +170769923336,213,0 +170769923384,213,0 +170769923433,213,0 +170769923481,213,0 +170769923529,213,0 +170769923577,213,0 +170769923625,213,0 +170769923672,214,0 +170769923722,214,0 +170769923770,214,0 +170769923819,214,0 +170769923868,214,0 +170769923918,214,0 +170769923966,215,0 +170769924013,214,0 +170769924061,215,0 +170769924109,215,0 +170769924157,213,0 +170769924205,213,0 +170769924252,213,0 +170769924300,213,0 +170769924348,213,0 +170769924396,213,0 +170769924444,213,0 +170769924492,213,0 +170769924541,213,0 +170769924589,213,0 +170769924637,213,0 +170769924685,214,0 +170769924732,214,0 +170769924780,214,0 +170769924828,214,0 +170769924876,214,0 +170769924924,214,0 +170769924971,214,0 +170769925019,214,0 +170769925067,213,0 +170769925116,213,0 +170769925164,213,0 +170769925212,213,0 +170769925262,213,0 +170769925310,213,0 +170769925358,213,0 +170769925406,213,0 +170769925455,213,0 +170769925505,214,0 +170769925552,214,0 +170769925600,214,0 +170769925650,214,0 +170769925698,214,0 +170769925747,214,0 +170769925795,214,0 +170769925843,214,0 +170769925892,214,0 +170769925940,213,0 +170769925988,213,0 +170769926038,213,0 +170769926086,213,0 +170769926134,213,0 +170769926182,213,0 +170769926229,213,0 +170769926279,213,0 +170769926327,213,0 +170769926375,213,0 +170769926424,214,0 +170769926472,214,0 +170769926521,214,0 +170769926569,214,0 +170769926617,214,0 +170769926665,214,0 +170769926713,215,0 +170769926761,214,0 +170769926809,214,0 +170769926857,213,0 +170769926905,213,0 +170769926953,213,0 +170769927001,213,0 +170769927049,213,0 +170769927096,213,0 +170769927146,213,0 +170769927194,214,0 +170769927242,214,0 +170769927290,214,0 +170769927339,214,0 +170769927387,214,0 +170769927435,214,0 +170769927483,214,0 +170769927531,214,0 +170769927579,214,0 +170769927627,214,0 +170769927675,214,0 +170769927723,214,0 +170769927771,213,0 +170769927820,213,0 +170769927868,213,0 +170769927916,213,0 +170769927964,213,0 +170769928012,213,0 +170769928061,213,0 +170769928109,213,0 +170769928157,214,0 +170769928205,214,0 +170769928254,214,0 +170769928304,214,0 +170769928353,214,0 +170769928403,214,0 +170769928452,214,0 +170769928501,214,0 +170769928549,214,0 +170769928599,214,0 +170769928647,213,0 +170769928695,213,0 +170769928743,213,0 +170769928790,213,0 +170769928838,213,0 +170769928886,213,0 +170769928934,214,0 +170769928982,214,0 +170769929032,214,0 +170769929081,214,0 +170769929129,214,0 +170769929177,214,0 +170769929225,214,0 +170769929274,214,0 +170769929322,214,0 +170769929370,215,0 +170769929418,215,0 +170769929468,214,0 +170769929516,214,0 +170769929563,213,0 +170769929613,214,0 +170769929661,214,0 +170769929710,214,0 +170769929758,214,0 +170769929806,214,0 +170769929854,214,0 +170769929904,214,0 +170769929951,214,0 +170769929999,214,0 +170769930047,214,0 +170769930097,216,0 +170769930146,215,0 +170769930196,215,0 +170769930244,215,0 +170769930292,215,0 +170769930340,214,0 +170769930387,214,0 +170769930437,214,0 +170769930486,214,0 +170769930536,214,0 +170769930585,214,0 +170769930633,214,0 +170769930681,214,0 +170769930729,214,0 +170769930777,214,0 +170769930825,214,0 +170769930873,214,0 +170769930923,215,0 +170769930972,214,0 +170769931020,214,0 +170769931068,215,0 +170769931117,215,0 +170769931165,215,0 +170769931213,215,0 +170769931261,214,0 +170769931309,214,0 +170769931357,213,0 +170769931405,213,0 +170769931453,213,0 +170769931502,213,0 +170769931550,214,0 +170769931600,214,0 +170769931649,213,0 +170769931697,214,0 +170769931745,214,0 +170769931795,214,0 +170769931843,214,0 +170769931891,214,0 +170769931940,214,0 +170769931988,214,0 +170769932038,214,0 +170769932087,215,0 +170769932136,215,0 +170769932184,215,0 +170769932232,213,0 +170769932282,213,0 +170769932331,213,0 +170769932379,214,0 +170769932429,214,0 +170769932477,213,0 +170769932525,214,0 +170769932573,214,0 +170769932620,214,0 +170769932668,214,0 +170769932716,214,0 +170769932764,214,0 +170769932812,215,0 +170769932862,215,0 +170769932910,215,0 +170769932958,215,0 +170769933005,214,0 +170769933055,215,0 +170769933104,214,0 +170769933154,213,0 +170769933202,213,0 +170769933252,213,0 +170769933299,213,0 +170769933347,214,0 +170769933397,214,0 +170769933446,214,0 +170769933494,214,0 +170769933542,214,0 +170769933590,214,0 +170769933638,214,0 +170769933688,214,0 +170769933736,215,0 +170769933784,214,0 +170769933831,215,0 +170769933879,215,0 +170769933927,214,0 +170769933975,214,0 +170769934023,213,0 +170769934073,213,0 +170769934121,213,0 +170769934170,213,0 +170769934218,213,0 +170769934266,214,0 +170769934314,214,0 +170769934362,214,0 +170769934411,214,0 +170769934461,214,0 +170769934509,214,0 +170769934558,214,0 +170769934606,214,0 +170769934654,215,0 +170769934702,215,0 +170769934750,214,0 +170769934798,215,0 +170769934846,214,0 +170769934894,214,0 +170769934942,213,0 +170769934989,213,0 +170769935039,213,0 +170769935088,213,0 +170769935136,213,0 +170769935184,214,0 +170769935232,214,0 +170769935282,214,0 +170769935330,214,0 +170769935378,214,0 +170769935425,214,0 +170769935475,214,0 +170769935523,214,0 +170769935571,215,0 +170769935619,215,0 +170769935668,215,0 +170769935718,215,0 +170769935766,214,0 +170769935815,213,0 +170769935865,213,0 +170769935914,213,0 +170769935963,213,0 +170769936013,213,0 +170769936061,214,0 +170769936109,214,0 +170769936157,214,0 +170769936204,214,0 +170769936252,214,0 +170769936302,215,0 +170769936350,215,0 +170769936397,215,0 +170769936445,215,0 +170769936493,215,0 +170769936543,215,0 +170769936592,215,0 +170769936640,215,0 +170769936688,214,0 +170769936738,213,0 +170769936786,213,0 +170769936833,213,0 +170769936883,213,0 +170769936931,214,0 +170769936980,214,0 +170769937028,214,0 +170769937076,214,0 +170769937124,214,0 +170769937173,214,0 +170769937221,215,0 +170769937271,214,0 +170769937319,215,0 +170769937366,215,0 +170769937416,215,0 +170769937464,215,0 +170769937512,215,0 +170769937559,214,0 +170769937607,213,0 +170769937655,213,0 +170769937705,213,0 +170769937753,213,0 +170769937800,213,0 +170769937848,213,0 +170769937896,213,0 +170769937944,213,0 +170769937994,214,0 +170769938043,214,0 +170769938093,214,0 +170769938141,214,0 +170769938190,214,0 +170769938240,214,0 +170769938288,214,0 +170769938335,215,0 +170769938383,214,0 +170769938433,214,0 +170769938482,214,0 +170769938530,213,0 +170769938578,213,0 +170769938626,213,0 +170769938674,213,0 +170769938722,213,0 +170769938770,213,0 +170769938818,213,0 +170769938866,214,0 +170769938914,214,0 +170769938961,214,0 +170769939011,214,0 +170769939059,214,0 +170769939108,214,0 +170769939156,214,0 +170769939204,214,0 +170769939254,214,0 +170769939302,214,0 +170769939349,214,0 +170769939399,213,0 +170769939448,213,0 +170769939496,213,0 +170769939546,213,0 +170769939594,213,0 +170769939643,213,0 +170769939691,214,0 +170769939740,213,0 +170769939790,213,0 +170769939838,214,0 +170769939886,214,0 +170769939934,214,0 +170769939982,214,0 +170769940030,214,0 +170769940079,214,0 +170769940127,214,0 +170769940175,214,0 +170769940223,214,0 +170769940271,214,0 +170769940319,213,0 +170769940367,213,0 +170769940415,213,0 +170769940464,213,0 +170769940512,213,0 +170769940561,213,0 +170769940611,214,0 +170769940659,213,0 +170769940707,214,0 +170769940755,214,0 +170769940804,214,0 +170769940852,214,0 +170769940900,214,0 +170769940948,214,0 +170769940997,214,0 +170769941047,214,0 +170769941096,214,0 +170769941146,214,0 +170769941194,213,0 +170769941242,213,0 +170769941289,213,0 +170769941337,213,0 +170769941385,214,0 +170769941433,213,0 +170769941481,214,0 +170769941529,214,0 +170769941577,214,0 +170769941625,214,0 +170769941673,214,0 +170769941722,214,0 +170769941772,214,0 +170769941820,215,0 +170769941867,214,0 +170769941917,214,0 +170769941965,214,0 +170769942014,214,0 +170769942064,214,0 +170769942112,213,0 +170769942160,213,0 +170769942207,213,0 +170769942255,213,0 +170769942303,213,0 +170769942351,214,0 +170769942401,214,0 +170769942449,214,0 +170769942497,214,0 +170769942544,214,0 +170769942594,214,0 +170769942643,214,0 +170769942691,214,0 +170769942739,214,0 +170769942788,215,0 +170769942836,215,0 +170769942884,214,0 +170769942934,215,0 +170769942983,213,0 +170769943031,213,0 +170769943079,213,0 +170769943128,213,0 +170769943176,213,0 +170769943224,214,0 +170769943273,214,0 +170769943321,214,0 +170769943369,214,0 +170769943417,214,0 +170769943464,214,0 +170769943512,214,0 +170769943560,214,0 +170769943608,215,0 +170769943656,214,0 +170769943704,214,0 +170769943752,215,0 +170769943799,214,0 +170769943847,214,0 +170769943895,213,0 +170769943943,213,0 +170769943991,213,0 +170769944040,213,0 +170769944088,213,0 +170769944136,213,0 +170769944183,213,0 +170769944233,213,0 +170769944281,213,0 +170769944328,214,0 +170769944376,214,0 +170769944424,214,0 +170769944472,214,0 +170769944520,214,0 +170769944567,214,0 +170769944615,214,0 +170769944663,214,0 +170769944711,215,0 +170769944759,214,0 +170769944806,213,0 +170769944854,213,0 +170769944902,213,0 +170769944952,213,0 +170769945001,213,0 +170769945051,213,0 +170769945098,213,0 +170769945146,213,0 +170769945194,213,0 +170769945242,214,0 +170769945290,214,0 +170769945338,214,0 +170769945387,214,0 +170769945435,214,0 +170769945483,214,0 +170769945533,214,0 +170769945582,214,0 +170769945632,214,0 +170769945681,213,0 +170769945729,213,0 +170769945779,213,0 +170769945828,213,0 +170769945876,213,0 +170769945925,213,0 +170769945975,213,0 +170769946023,213,0 +170769946071,213,0 +170769946119,214,0 +170769946166,214,0 +170769946214,214,0 +170769946262,214,0 +170769946310,214,0 +170769946359,214,0 +170769946409,214,0 +170769946457,215,0 +170769946505,214,0 +170769946554,213,0 +170769946602,213,0 +170769946650,213,0 +170769946700,213,0 +170769946749,213,0 +170769946799,214,0 +170769946847,214,0 +170769946894,214,0 +170769946942,214,0 +170769946990,214,0 +170769947040,214,0 +170769947088,214,0 +170769947136,214,0 +170769947183,215,0 +170769947231,215,0 +170769947279,214,0 +170769947327,214,0 +170769947375,214,0 +170769947423,215,0 +170769947473,213,0 +170769947522,213,0 +170769947571,213,0 +170769947621,213,0 +170769947670,213,0 +170769947718,213,0 +170769947766,214,0 +170769947814,214,0 +170769947862,214,0 +170769947910,214,0 +170769947958,214,0 +170769948005,214,0 +170769948055,214,0 +170769948104,214,0 +170769948152,214,0 +170769948202,214,0 +170769948251,215,0 +170769948301,214,0 +170769948349,213,0 +170769948396,213,0 +170769948444,213,0 +170769948492,213,0 +170769948540,213,0 +170769948588,213,0 +170769948636,213,0 +170769948684,213,0 +170769948733,213,0 +170769948783,214,0 +170769948831,214,0 +170769948880,214,0 +170769948928,214,0 +170769948977,214,0 +170769949025,214,0 +170769949073,215,0 +170769949121,214,0 +170769949169,214,0 +170769949217,214,0 +170769949265,213,0 +170769949313,213,0 +170769949361,213,0 +170769949410,213,0 +170769949458,213,0 +170769949506,213,0 +170769949556,213,0 +170769949605,214,0 +170769949653,214,0 +170769949701,214,0 +170769949749,214,0 +170769949797,214,0 +170769949845,214,0 +170769949892,214,0 +170769949940,214,0 +170769949988,215,0 +170769950036,214,0 +170769950084,214,0 +170769950131,214,0 +170769950179,213,0 +170769950227,213,0 +170769950276,213,0 +170769950324,213,0 +170769950372,213,0 +170769950420,213,0 +170769950468,214,0 +170769950515,214,0 +170769950563,214,0 +170769950613,214,0 +170769950662,214,0 +170769950710,214,0 +170769950758,214,0 +170769950807,214,0 +170769950857,214,0 +170769950905,214,0 +170769950953,215,0 +170769951001,214,0 +170769951048,213,0 +170769951096,213,0 +170769951146,213,0 +170769951194,213,0 +170769951242,213,0 +170769951291,214,0 +170769951341,214,0 +170769951389,213,0 +170769951437,214,0 +170769951485,214,0 +170769951533,214,0 +170769951581,214,0 +170769951630,214,0 +170769951679,214,0 +170769951729,214,0 +170769951777,214,0 +170769951825,214,0 +170769951873,214,0 +170769951921,214,0 +170769951970,213,0 +170769952018,213,0 +170769952067,213,0 +170769952115,213,0 +170769952165,214,0 +170769952214,214,0 +170769952262,214,0 +170769952310,214,0 +170769952360,214,0 +170769952409,214,0 +170769952457,214,0 +170769952505,214,0 +170769952553,214,0 +170769952601,215,0 +170769952649,214,0 +170769952698,214,0 +170769952746,214,0 +170769952796,214,0 +170769952845,213,0 +170769952893,213,0 +170769952941,213,0 +170769952989,213,0 +170769953036,213,0 +170769953086,213,0 +170769953134,213,0 +170769953182,213,0 +170769953231,214,0 +170769953281,214,0 +170769953329,214,0 +170769953377,214,0 +170769953425,214,0 +170769953473,214,0 +170769953521,214,0 +170769953569,215,0 +170769953617,215,0 +170769953665,215,0 +170769953714,214,0 +170769953762,213,0 +170769953811,213,0 +170769953859,213,0 +170769953907,213,0 +170769953955,213,0 +170769954003,213,0 +170769954053,213,0 +170769954102,214,0 +170769954150,213,0 +170769954198,213,0 +170769954246,213,0 +170769954295,214,0 +170769954343,214,0 +170769954391,214,0 +170769954440,214,0 +170769954490,214,0 +170769954539,214,0 +170769954589,214,0 +170769954637,213,0 +170769954685,213,0 +170769954733,213,0 +170769954782,213,0 +170769954830,213,0 +170769954878,213,0 +170769954926,214,0 +170769954975,214,0 +170769955023,214,0 +170769955071,214,0 +170769955119,214,0 +170769955167,214,0 +170769955215,215,0 +170769955262,215,0 +170769955310,215,0 +170769955358,214,0 +170769955406,214,0 +170769955454,215,0 +170769955502,214,0 +170769955550,213,0 +170769955597,213,0 +170769955647,213,0 +170769955695,213,0 +170769955742,213,0 +170769955790,213,0 +170769955838,214,0 +170769955886,214,0 +170769955934,214,0 +170769955982,214,0 +170769956029,214,0 +170769956077,214,0 +170769956125,215,0 +170769956174,214,0 +170769956222,215,0 +170769956270,215,0 +170769956318,215,0 +170769956366,214,0 +170769956414,213,0 +170769956462,213,0 +170769956509,213,0 +170769956557,214,0 +170769956606,214,0 +170769956654,214,0 +170769956702,214,0 +170769956750,214,0 +170769956798,214,0 +170769956846,214,0 +170769956893,214,0 +170769956943,214,0 +170769956992,214,0 +170769957042,215,0 +170769957089,214,0 +170769957137,214,0 +170769957185,215,0 +170769957235,214,0 +170769957282,214,0 +170769957330,213,0 +170769957378,213,0 +170769957426,213,0 +170769957474,213,0 +170769957522,213,0 +170769957571,213,0 +170769957619,214,0 +170769957667,214,0 +170769957715,214,0 +170769957763,214,0 +170769957811,214,0 +170769957858,214,0 +170769957906,215,0 +170769957954,215,0 +170769958002,215,0 +170769958050,214,0 +170769958099,214,0 +170769958147,214,0 +170769958196,214,0 +170769958246,213,0 +170769958294,214,0 +170769958341,214,0 +170769958389,214,0 +170769958437,213,0 +170769958487,214,0 +170769958534,214,0 +170769958582,214,0 +170769958630,214,0 +170769958678,215,0 +170769958726,214,0 +170769958774,215,0 +170769958822,215,0 +170769958870,215,0 +170769958918,215,0 +170769958965,215,0 +170769959013,215,0 +170769959063,214,0 +170769959111,214,0 +170769959160,214,0 +170769959208,213,0 +170769959256,213,0 +170769959304,214,0 +170769959352,214,0 +170769959400,214,0 +170769959448,214,0 +170769959497,214,0 +170769959545,214,0 +170769959593,214,0 +170769959641,215,0 +170769959689,215,0 +170769959738,215,0 +170769959786,215,0 +170769959834,215,0 +170769959884,215,0 +170769959933,214,0 +170769959981,214,0 +170769960029,213,0 diff --git a/laser_value/0212-11.csv b/laser_value/0212-11.csv new file mode 100644 index 0000000..c8b82af --- /dev/null +++ b/laser_value/0212-11.csv @@ -0,0 +1,7438 @@ +timestamp,laser_value,event +170769960077,213,0 +170769960127,213,0 +170769960175,214,0 +170769960223,214,0 +170769960271,214,0 +170769960318,214,0 +170769960366,214,0 +170769960414,214,0 +170769960462,214,0 +170769960510,214,0 +170769960557,214,0 +170769960605,214,0 +170769960654,215,0 +170769960702,214,0 +170769960750,214,0 +170769960799,215,0 +170769960847,214,0 +170769960895,213,0 +170769960943,213,0 +170769960991,213,0 +170769961038,213,0 +170769961086,213,0 +170769961134,213,0 +170769961182,213,0 +170769961231,213,0 +170769961279,214,0 +170769961327,214,0 +170769961375,214,0 +170769961423,214,0 +170769961471,214,0 +170769961518,214,0 +170769961566,214,0 +170769961614,214,0 +170769961662,214,0 +170769961710,214,0 +170769961757,214,0 +170769961805,213,0 +170769961853,213,0 +170769961901,213,0 +170769961949,213,0 +170769961996,213,0 +170769962046,213,0 +170769962094,213,0 +170769962141,213,0 +170769962189,213,0 +170769962237,213,0 +170769962285,214,0 +170769962333,214,0 +170769962381,214,0 +170769962429,214,0 +170769962476,215,0 +170769962526,214,0 +170769962573,214,0 +170769962621,214,0 +170769962669,213,0 +170769962717,213,0 +170769962764,213,0 +170769962812,213,0 +170769962862,213,0 +170769962909,213,0 +170769962957,213,0 +170769963005,213,0 +170769963053,213,0 +170769963101,213,0 +170769963148,213,0 +170769963198,214,0 +170769963246,214,0 +170769963293,214,0 +170769963341,214,0 +170769963391,214,0 +170769963440,214,0 +170769963488,214,0 +170769963536,214,0 +170769963584,213,0 +170769963632,213,0 +170769963679,213,0 +170769963729,213,0 +170769963777,213,0 +170769963825,213,0 +170769963874,214,0 +170769963923,213,0 +170769963971,214,0 +170769964019,214,0 +170769964067,214,0 +170769964116,214,0 +170769964164,214,0 +170769964214,214,0 +170769964263,214,0 +170769964311,214,0 +170769964360,214,0 +170769964408,215,0 +170769964458,214,0 +170769964506,213,0 +170769964555,213,0 +170769964603,213,0 +170769964653,213,0 +170769964702,213,0 +170769964752,213,0 +170769964800,214,0 +170769964848,214,0 +170769964896,214,0 +170769964945,214,0 +170769964993,214,0 +170769965041,214,0 +170769965090,214,0 +170769965140,214,0 +170769965189,214,0 +170769965237,214,0 +170769965285,214,0 +170769965333,214,0 +170769965381,213,0 +170769965429,213,0 +170769965477,213,0 +170769965526,213,0 +170769965576,213,0 +170769965624,213,0 +170769965673,213,0 +170769965721,213,0 +170769965771,213,0 +170769965820,214,0 +170769965868,214,0 +170769965916,214,0 +170769965964,214,0 +170769966012,214,0 +170769966061,214,0 +170769966109,214,0 +170769966157,214,0 +170769966207,214,0 +170769966256,213,0 +170769966306,213,0 +170769966353,213,0 +170769966401,213,0 +170769966449,213,0 +170769966497,213,0 +170769966545,213,0 +170769966593,213,0 +170769966641,213,0 +170769966689,213,0 +170769966737,213,0 +170769966785,213,0 +170769966833,214,0 +170769966881,214,0 +170769966929,214,0 +170769966977,214,0 +170769967024,214,0 +170769967074,214,0 +170769967122,214,0 +170769967169,213,0 +170769967219,213,0 +170769967267,213,0 +170769967315,213,0 +170769967363,213,0 +170769967412,213,0 +170769967460,213,0 +170769967508,214,0 +170769967557,213,0 +170769967605,214,0 +170769967653,214,0 +170769967703,214,0 +170769967752,214,0 +170769967802,214,0 +170769967851,214,0 +170769967901,214,0 +170769967950,214,0 +170769967998,215,0 +170769968048,214,0 +170769968097,213,0 +170769968145,213,0 +170769968193,213,0 +170769968242,214,0 +170769968290,214,0 +170769968338,214,0 +170769968386,214,0 +170769968434,214,0 +170769968482,214,0 +170769968530,214,0 +170769968578,214,0 +170769968627,215,0 +170769968675,214,0 +170769968723,215,0 +170769968773,215,0 +170769968822,214,0 +170769968870,214,0 +170769968918,214,0 +170769968966,213,0 +170769969014,213,0 +170769969062,213,0 +170769969110,214,0 +170769969157,214,0 +170769969205,214,0 +170769969253,214,0 +170769969301,215,0 +170769969349,214,0 +170769969398,215,0 +170769969446,214,0 +170769969494,215,0 +170769969542,215,0 +170769969592,215,0 +170769969639,215,0 +170769969687,215,0 +170769969735,215,0 +170769969783,215,0 +170769969831,213,0 +170769969879,214,0 +170769969927,214,0 +170769969975,214,0 +170769970023,214,0 +170769970072,214,0 +170769970120,214,0 +170769970170,214,0 +170769970219,214,0 +170769970267,214,0 +170769970316,215,0 +170769970364,215,0 +170769970412,215,0 +170769970461,214,0 +170769970511,215,0 +170769970559,215,0 +170769970608,214,0 +170769970656,215,0 +170769970704,214,0 +170769970754,213,0 +170769970803,213,0 +170769970851,213,0 +170769970899,214,0 +170769970947,213,0 +170769970995,214,0 +170769971044,214,0 +170769971092,214,0 +170769971140,214,0 +170769971189,214,0 +170769971239,214,0 +170769971287,214,0 +170769971336,214,0 +170769971384,214,0 +170769971432,215,0 +170769971480,215,0 +170769971529,215,0 +170769971577,214,0 +170769971625,214,0 +170769971675,213,0 +170769971724,213,0 +170769971772,214,0 +170769971822,214,0 +170769971870,214,0 +170769971919,214,0 +170769971967,214,0 +170769972015,214,0 +170769972064,214,0 +170769972112,214,0 +170769972160,215,0 +170769972209,214,0 +170769972257,215,0 +170769972305,215,0 +170769972353,215,0 +170769972401,215,0 +170769972450,214,0 +170769972500,214,0 +170769972548,213,0 +170769972596,213,0 +170769972644,213,0 +170769972692,214,0 +170769972741,214,0 +170769972789,214,0 +170769972837,214,0 +170769972886,214,0 +170769972934,214,0 +170769972982,215,0 +170769973030,215,0 +170769973078,215,0 +170769973126,215,0 +170769973174,215,0 +170769973222,214,0 +170769973270,215,0 +170769973318,215,0 +170769973366,214,0 +170769973414,213,0 +170769973462,213,0 +170769973510,213,0 +170769973557,213,0 +170769973607,213,0 +170769973655,213,0 +170769973703,214,0 +170769973751,214,0 +170769973799,214,0 +170769973847,214,0 +170769973895,214,0 +170769973942,215,0 +170769973990,214,0 +170769974040,215,0 +170769974088,215,0 +170769974135,215,0 +170769974183,215,0 +170769974231,215,0 +170769974279,214,0 +170769974329,213,0 +170769974377,213,0 +170769974424,213,0 +170769974472,214,0 +170769974520,214,0 +170769974568,213,0 +170769974616,213,0 +170769974664,214,0 +170769974712,214,0 +170769974760,214,0 +170769974809,214,0 +170769974857,215,0 +170769974907,214,0 +170769974955,215,0 +170769975003,215,0 +170769975050,215,0 +170769975100,215,0 +170769975148,214,0 +170769975197,213,0 +170769975245,213,0 +170769975295,213,0 +170769975343,213,0 +170769975391,213,0 +170769975439,213,0 +170769975486,214,0 +170769975536,213,0 +170769975584,214,0 +170769975632,214,0 +170769975681,214,0 +170769975729,214,0 +170769975777,214,0 +170769975825,214,0 +170769975873,214,0 +170769975921,214,0 +170769975969,214,0 +170769976018,214,0 +170769976068,214,0 +170769976117,213,0 +170769976165,213,0 +170769976214,213,0 +170769976264,213,0 +170769976313,213,0 +170769976361,213,0 +170769976409,213,0 +170769976457,214,0 +170769976507,213,0 +170769976556,214,0 +170769976604,214,0 +170769976652,214,0 +170769976700,214,0 +170769976749,214,0 +170769976797,214,0 +170769976845,214,0 +170769976893,214,0 +170769976941,214,0 +170769976989,213,0 +170769977036,213,0 +170769977086,213,0 +170769977134,213,0 +170769977183,213,0 +170769977233,213,0 +170769977282,213,0 +170769977330,213,0 +170769977378,214,0 +170769977428,214,0 +170769977477,214,0 +170769977527,214,0 +170769977576,214,0 +170769977626,214,0 +170769977675,214,0 +170769977725,214,0 +170769977773,214,0 +170769977822,214,0 +170769977870,213,0 +170769977918,213,0 +170769977967,213,0 +170769978015,213,0 +170769978063,213,0 +170769978111,213,0 +170769978159,213,0 +170769978209,213,0 +170769978256,213,0 +170769978304,213,0 +170769978352,213,0 +170769978400,213,0 +170769978450,213,0 +170769978498,213,0 +170769978546,214,0 +170769978594,213,0 +170769978641,213,0 +170769978691,214,0 +170769978738,214,0 +170769978786,213,0 +170769978834,213,0 +170769978883,213,0 +170769978933,213,0 +170769978981,213,0 +170769979029,213,0 +170769979076,213,0 +170769979124,213,0 +170769979172,213,0 +170769979220,213,0 +170769979268,213,0 +170769979316,214,0 +170769979364,214,0 +170769979413,214,0 +170769979463,214,0 +170769979512,214,0 +170769979560,213,0 +170769979609,214,0 +170769979659,213,0 +170769979708,213,0 +170769979756,213,0 +170769979806,213,0 +170769979855,213,0 +170769979903,213,0 +170769979951,213,0 +170769980001,213,0 +170769980050,214,0 +170769980098,214,0 +170769980146,214,0 +170769980196,214,0 +170769980245,214,0 +170769980293,214,0 +170769980343,215,0 +170769980392,215,0 +170769980440,215,0 +170769980488,215,0 +170769980536,214,0 +170769980585,213,0 +170769980635,213,0 +170769980684,213,0 +170769980732,213,0 +170769980780,213,0 +170769980828,214,0 +170769980876,214,0 +170769980924,214,0 +170769980972,214,0 +170769981021,214,0 +170769981071,214,0 +170769981120,214,0 +170769981170,215,0 +170769981217,214,0 +170769981265,215,0 +170769981315,215,0 +170769981363,215,0 +170769981411,214,0 +170769981459,213,0 +170769981506,213,0 +170769981554,213,0 +170769981602,213,0 +170769981650,214,0 +170769981699,214,0 +170769981747,214,0 +170769981795,214,0 +170769981843,214,0 +170769981891,214,0 +170769981938,214,0 +170769981986,214,0 +170769982034,215,0 +170769982084,215,0 +170769982132,215,0 +170769982180,214,0 +170769982229,215,0 +170769982277,215,0 +170769982325,215,0 +170769982373,214,0 +170769982421,214,0 +170769982469,214,0 +170769982517,214,0 +170769982564,214,0 +170769982612,214,0 +170769982660,214,0 +170769982708,215,0 +170769982756,215,0 +170769982804,215,0 +170769982851,215,0 +170769982899,215,0 +170769982947,215,0 +170769982995,215,0 +170769983044,215,0 +170769983094,215,0 +170769983142,214,0 +170769983190,215,0 +170769983238,214,0 +170769983286,213,0 +170769983333,213,0 +170769983381,214,0 +170769983429,214,0 +170769983479,214,0 +170769983528,214,0 +170769983576,214,0 +170769983624,214,0 +170769983671,214,0 +170769983719,214,0 +170769983767,214,0 +170769983815,214,0 +170769983863,214,0 +170769983911,215,0 +170769983958,215,0 +170769984006,215,0 +170769984056,215,0 +170769984105,215,0 +170769984153,214,0 +170769984202,213,0 +170769984250,213,0 +170769984298,214,0 +170769984346,214,0 +170769984396,214,0 +170769984444,214,0 +170769984492,214,0 +170769984540,214,0 +170769984589,214,0 +170769984637,215,0 +170769984685,214,0 +170769984733,215,0 +170769984782,215,0 +170769984832,215,0 +170769984880,215,0 +170769984928,215,0 +170769984976,215,0 +170769985025,214,0 +170769985075,213,0 +170769985123,214,0 +170769985171,214,0 +170769985219,214,0 +170769985266,214,0 +170769985314,214,0 +170769985362,214,0 +170769985410,215,0 +170769985458,214,0 +170769985506,215,0 +170769985554,215,0 +170769985602,215,0 +170769985651,215,0 +170769985699,215,0 +170769985747,215,0 +170769985795,215,0 +170769985843,215,0 +170769985891,215,0 +170769985939,214,0 +170769985988,213,0 +170769986036,214,0 +170769986084,214,0 +170769986132,214,0 +170769986182,214,0 +170769986231,214,0 +170769986279,214,0 +170769986327,214,0 +170769986375,215,0 +170769986424,215,0 +170769986472,215,0 +170769986520,215,0 +170769986570,215,0 +170769986619,215,0 +170769986667,215,0 +170769986717,215,0 +170769986766,215,0 +170769986816,214,0 +170769986865,213,0 +170769986915,213,0 +170769986963,213,0 +170769987012,213,0 +170769987060,214,0 +170769987109,214,0 +170769987159,214,0 +170769987208,214,0 +170769987256,214,0 +170769987306,214,0 +170769987354,215,0 +170769987403,215,0 +170769987451,215,0 +170769987499,215,0 +170769987549,215,0 +170769987598,215,0 +170769987648,215,0 +170769987697,214,0 +170769987747,213,0 +170769987796,213,0 +170769987846,213,0 +170769987895,213,0 +170769987943,213,0 +170769987991,214,0 +170769988039,214,0 +170769988087,214,0 +170769988136,214,0 +170769988184,214,0 +170769988232,214,0 +170769988282,214,0 +170769988330,215,0 +170769988378,215,0 +170769988427,215,0 +170769988477,215,0 +170769988525,215,0 +170769988574,214,0 +170769988622,213,0 +170769988671,213,0 +170769988721,213,0 +170769988769,213,0 +170769988818,213,0 +170769988868,213,0 +170769988916,214,0 +170769988965,214,0 +170769989013,214,0 +170769989061,214,0 +170769989109,214,0 +170769989157,214,0 +170769989205,214,0 +170769989253,215,0 +170769989302,215,0 +170769989350,215,0 +170769989400,215,0 +170769989448,215,0 +170769989497,215,0 +170769989545,213,0 +170769989595,213,0 +170769989642,213,0 +170769989690,213,0 +170769989738,213,0 +170769989786,214,0 +170769989834,214,0 +170769989882,214,0 +170769989930,214,0 +170769989978,214,0 +170769990025,214,0 +170769990073,214,0 +170769990121,215,0 +170769990171,214,0 +170769990218,215,0 +170769990268,215,0 +170769990316,215,0 +170769990364,215,0 +170769990413,214,0 +170769990461,213,0 +170769990509,213,0 +170769990557,213,0 +170769990607,213,0 +170769990656,213,0 +170769990706,213,0 +170769990754,214,0 +170769990802,214,0 +170769990849,214,0 +170769990897,214,0 +170769990945,214,0 +170769990993,215,0 +170769991041,214,0 +170769991089,214,0 +170769991138,214,0 +170769991186,215,0 +170769991234,215,0 +170769991282,214,0 +170769991331,213,0 +170769991381,213,0 +170769991429,213,0 +170769991478,213,0 +170769991528,213,0 +170769991577,213,0 +170769991625,213,0 +170769991673,213,0 +170769991723,214,0 +170769991772,214,0 +170769991822,214,0 +170769991871,214,0 +170769991919,214,0 +170769991967,214,0 +170769992015,214,0 +170769992065,214,0 +170769992114,215,0 +170769992162,215,0 +170769992210,214,0 +170769992257,213,0 +170769992307,213,0 +170769992355,213,0 +170769992403,213,0 +170769992451,214,0 +170769992499,214,0 +170769992548,214,0 +170769992596,214,0 +170769992644,214,0 +170769992692,214,0 +170769992740,214,0 +170769992789,215,0 +170769992837,215,0 +170769992885,215,0 +170769992933,215,0 +170769992982,215,0 +170769993030,215,0 +170769993078,215,0 +170769993128,213,0 +170769993176,213,0 +170769993224,213,0 +170769993273,213,0 +170769993321,213,0 +170769993371,213,0 +170769993419,213,0 +170769993467,214,0 +170769993516,214,0 +170769993564,214,0 +170769993613,214,0 +170769993663,214,0 +170769993710,214,0 +170769993758,214,0 +170769993806,215,0 +170769993854,215,0 +170769993902,215,0 +170769993950,215,0 +170769994000,214,0 +170769994049,213,0 +170769994099,213,0 +170769994146,213,0 +170769994194,213,0 +170769994242,213,0 +170769994292,213,0 +170769994341,213,0 +170769994389,214,0 +170769994437,214,0 +170769994485,214,0 +170769994535,214,0 +170769994583,214,0 +170769994630,214,0 +170769994678,214,0 +170769994728,214,0 +170769994776,215,0 +170769994824,214,0 +170769994873,214,0 +170769994923,213,0 +170769994971,213,0 +170769995019,213,0 +170769995068,213,0 +170769995116,213,0 +170769995164,213,0 +170769995214,213,0 +170769995263,214,0 +170769995311,214,0 +170769995360,214,0 +170769995408,214,0 +170769995456,214,0 +170769995506,214,0 +170769995554,214,0 +170769995603,214,0 +170769995651,215,0 +170769995700,215,0 +170769995750,214,0 +170769995799,213,0 +170769995847,213,0 +170769995895,213,0 +170769995943,213,0 +170769995991,213,0 +170769996038,213,0 +170769996086,213,0 +170769996134,213,0 +170769996182,214,0 +170769996230,214,0 +170769996279,214,0 +170769996327,214,0 +170769996376,217,0 +170769996426,216,0 +170769996474,214,0 +170769996522,214,0 +170769996570,214,0 +170769996617,214,0 +170769996665,214,0 +170769996713,213,0 +170769996763,213,0 +170769996810,213,0 +170769996858,213,0 +170769996906,213,0 +170769996954,213,0 +170769997002,213,0 +170769997050,213,0 +170769997098,213,0 +170769997145,213,0 +170769997193,214,0 +170769997241,214,0 +170769997290,214,0 +170769997338,214,0 +170769997388,214,0 +170769997437,214,0 +170769997486,214,0 +170769997534,214,0 +170769997584,214,0 +170769997632,213,0 +170769997679,213,0 +170769997727,213,0 +170769997777,213,0 +170769997824,213,0 +170769997874,213,0 +170769997922,213,0 +170769997969,213,0 +170769998017,213,0 +170769998065,214,0 +170769998113,214,0 +170769998161,214,0 +170769998209,214,0 +170769998258,214,0 +170769998306,214,0 +170769998354,214,0 +170769998402,214,0 +170769998450,214,0 +170769998497,213,0 +170769998545,213,0 +170769998593,213,0 +170769998641,213,0 +170769998689,213,0 +170769998736,213,0 +170769998784,214,0 +170769998832,214,0 +170769998882,214,0 +170769998930,214,0 +170769998979,214,0 +170769999027,214,0 +170769999075,214,0 +170769999123,214,0 +170769999170,214,0 +170769999218,214,0 +170769999266,215,0 +170769999315,214,0 +170769999363,214,0 +170769999411,214,0 +170769999459,214,0 +170769999508,214,0 +170769999558,214,0 +170769999606,214,0 +170769999654,214,0 +170769999702,214,0 +170769999750,214,0 +170769999798,214,0 +170769999846,215,0 +170769999893,214,0 +170769999941,214,0 +170769999989,215,0 +170770000037,215,0 +170770000087,215,0 +170770000136,215,0 +170770000186,215,0 +170770000233,215,0 +170770000281,214,0 +170770000329,214,0 +170770000379,214,0 +170770000426,214,0 +170770000474,214,0 +170770000522,214,0 +170770000570,214,0 +170770000617,214,0 +170770000665,214,0 +170770000713,215,0 +170770000762,215,0 +170770000812,215,0 +170770000860,215,0 +170770000908,215,0 +170770000955,215,0 +170770001003,215,0 +170770001051,215,0 +170770001099,214,0 +170770001147,215,0 +170770001195,213,0 +170770001243,213,0 +170770001291,213,0 +170770001339,213,0 +170770001386,214,0 +170770001434,214,0 +170770001482,214,0 +170770001530,214,0 +170770001578,214,0 +170770001626,214,0 +170770001674,214,0 +170770001721,214,0 +170770001769,215,0 +170770001819,214,0 +170770001867,215,0 +170770001914,215,0 +170770001962,215,0 +170770002010,214,0 +170770002059,213,0 +170770002108,213,0 +170770002156,213,0 +170770002204,213,0 +170770002252,214,0 +170770002300,214,0 +170770002347,214,0 +170770002395,214,0 +170770002445,214,0 +170770002493,214,0 +170770002541,214,0 +170770002589,214,0 +170770002638,214,0 +170770002686,215,0 +170770002734,215,0 +170770002783,215,0 +170770002831,215,0 +170770002879,215,0 +170770002927,215,0 +170770002975,214,0 +170770003024,213,0 +170770003072,214,0 +170770003120,214,0 +170770003168,214,0 +170770003216,214,0 +170770003264,214,0 +170770003313,214,0 +170770003361,214,0 +170770003409,214,0 +170770003457,215,0 +170770003505,215,0 +170770003552,215,0 +170770003600,215,0 +170770003648,215,0 +170770003696,215,0 +170770003744,215,0 +170770003792,215,0 +170770003840,214,0 +170770003887,214,0 +170770003935,214,0 +170770003983,214,0 +170770004031,214,0 +170770004079,214,0 +170770004127,214,0 +170770004174,214,0 +170770004222,214,0 +170770004270,215,0 +170770004318,215,0 +170770004368,215,0 +170770004417,215,0 +170770004465,215,0 +170770004514,215,0 +170770004562,215,0 +170770004610,215,0 +170770004658,215,0 +170770004706,215,0 +170770004754,213,0 +170770004802,213,0 +170770004851,213,0 +170770004899,213,0 +170770004948,214,0 +170770004998,214,0 +170770005046,214,0 +170770005095,214,0 +170770005145,214,0 +170770005193,214,0 +170770005241,214,0 +170770005288,214,0 +170770005338,215,0 +170770005387,215,0 +170770005435,215,0 +170770005483,215,0 +170770005531,215,0 +170770005579,215,0 +170770005629,214,0 +170770005677,213,0 +170770005724,213,0 +170770005772,213,0 +170770005820,214,0 +170770005868,214,0 +170770005917,214,0 +170770005965,214,0 +170770006013,214,0 +170770006063,214,0 +170770006111,214,0 +170770006158,214,0 +170770006206,214,0 +170770006254,215,0 +170770006304,215,0 +170770006352,215,0 +170770006400,215,0 +170770006448,215,0 +170770006497,215,0 +170770006545,213,0 +170770006593,213,0 +170770006641,213,0 +170770006690,213,0 +170770006738,213,0 +170770006786,214,0 +170770006834,214,0 +170770006882,214,0 +170770006930,214,0 +170770006978,214,0 +170770007027,214,0 +170770007075,214,0 +170770007125,215,0 +170770007173,215,0 +170770007221,215,0 +170770007269,215,0 +170770007317,215,0 +170770007366,215,0 +170770007416,214,0 +170770007463,213,0 +170770007513,213,0 +170770007561,213,0 +170770007609,213,0 +170770007657,213,0 +170770007705,214,0 +170770007754,214,0 +170770007802,214,0 +170770007850,214,0 +170770007898,214,0 +170770007946,215,0 +170770007994,214,0 +170770008043,215,0 +170770008093,215,0 +170770008142,215,0 +170770008190,215,0 +170770008238,215,0 +170770008286,214,0 +170770008335,213,0 +170770008383,213,0 +170770008431,213,0 +170770008479,213,0 +170770008529,213,0 +170770008576,213,0 +170770008624,213,0 +170770008672,214,0 +170770008722,214,0 +170770008769,214,0 +170770008819,214,0 +170770008868,214,0 +170770008916,214,0 +170770008966,214,0 +170770009015,214,0 +170770009063,214,0 +170770009111,214,0 +170770009159,215,0 +170770009207,215,0 +170770009255,213,0 +170770009304,213,0 +170770009352,213,0 +170770009400,213,0 +170770009448,213,0 +170770009497,213,0 +170770009547,214,0 +170770009595,214,0 +170770009644,214,0 +170770009692,214,0 +170770009740,214,0 +170770009790,214,0 +170770009838,214,0 +170770009886,214,0 +170770009934,214,0 +170770009982,215,0 +170770010030,214,0 +170770010078,215,0 +170770010125,214,0 +170770010173,213,0 +170770010221,213,0 +170770010269,213,0 +170770010319,214,0 +170770010368,213,0 +170770010416,214,0 +170770010466,214,0 +170770010513,214,0 +170770010561,214,0 +170770010609,214,0 +170770010657,214,0 +170770010707,215,0 +170770010756,214,0 +170770010804,215,0 +170770010854,215,0 +170770010902,215,0 +170770010950,215,0 +170770010997,215,0 +170770011045,214,0 +170770011093,213,0 +170770011141,213,0 +170770011189,213,0 +170770011239,213,0 +170770011288,213,0 +170770011336,214,0 +170770011384,213,0 +170770011433,214,0 +170770011481,214,0 +170770011529,214,0 +170770011577,214,0 +170770011627,214,0 +170770011675,214,0 +170770011724,215,0 +170770011772,215,0 +170770011820,215,0 +170770011868,215,0 +170770011918,214,0 +170770011965,213,0 +170770012013,213,0 +170770012061,213,0 +170770012111,213,0 +170770012159,213,0 +170770012207,214,0 +170770012256,213,0 +170770012304,214,0 +170770012352,214,0 +170770012402,214,0 +170770012450,214,0 +170770012497,214,0 +170770012545,215,0 +170770012593,214,0 +170770012643,215,0 +170770012692,215,0 +170770012740,215,0 +170770012790,215,0 +170770012839,213,0 +170770012887,213,0 +170770012935,213,0 +170770012985,214,0 +170770013033,213,0 +170770013081,213,0 +170770013129,214,0 +170770013177,214,0 +170770013224,214,0 +170770013274,214,0 +170770013324,214,0 +170770013373,214,0 +170770013421,215,0 +170770013469,215,0 +170770013518,215,0 +170770013568,215,0 +170770013616,214,0 +170770013664,215,0 +170770013713,214,0 +170770013761,213,0 +170770013809,213,0 +170770013857,214,0 +170770013905,214,0 +170770013954,213,0 +170770014002,214,0 +170770014050,214,0 +170770014098,214,0 +170770014148,214,0 +170770014196,215,0 +170770014243,214,0 +170770014291,215,0 +170770014341,215,0 +170770014390,215,0 +170770014440,215,0 +170770014489,215,0 +170770014537,215,0 +170770014587,215,0 +170770014635,213,0 +170770014683,213,0 +170770014731,213,0 +170770014780,214,0 +170770014828,214,0 +170770014876,214,0 +170770014924,214,0 +170770014973,214,0 +170770015023,214,0 +170770015072,214,0 +170770015120,214,0 +170770015169,214,0 +170770015219,214,0 +170770015267,215,0 +170770015315,215,0 +170770015364,215,0 +170770015412,215,0 +170770015462,214,0 +170770015510,213,0 +170770015558,213,0 +170770015607,213,0 +170770015657,213,0 +170770015706,214,0 +170770015754,214,0 +170770015802,214,0 +170770015850,214,0 +170770015899,214,0 +170770015949,214,0 +170770015996,214,0 +170770016044,214,0 +170770016092,214,0 +170770016140,215,0 +170770016190,215,0 +170770016238,215,0 +170770016287,215,0 +170770016335,215,0 +170770016383,215,0 +170770016432,213,0 +170770016480,214,0 +170770016528,213,0 +170770016577,214,0 +170770016625,214,0 +170770016673,214,0 +170770016721,214,0 +170770016771,214,0 +170770016818,214,0 +170770016868,214,0 +170770016916,215,0 +170770016964,215,0 +170770017013,215,0 +170770017061,215,0 +170770017109,215,0 +170770017158,215,0 +170770017208,215,0 +170770017256,215,0 +170770017304,214,0 +170770017352,213,0 +170770017400,213,0 +170770017448,214,0 +170770017496,214,0 +170770017545,214,0 +170770017595,214,0 +170770017644,214,0 +170770017692,214,0 +170770017742,214,0 +170770017789,214,0 +170770017837,215,0 +170770017885,214,0 +170770017933,215,0 +170770017981,215,0 +170770018029,215,0 +170770018078,215,0 +170770018126,215,0 +170770018174,214,0 +170770018222,213,0 +170770018272,213,0 +170770018321,213,0 +170770018369,213,0 +170770018417,213,0 +170770018467,214,0 +170770018516,213,0 +170770018564,214,0 +170770018612,214,0 +170770018661,214,0 +170770018711,214,0 +170770018759,214,0 +170770018807,214,0 +170770018855,214,0 +170770018903,215,0 +170770018950,214,0 +170770018998,215,0 +170770019046,215,0 +170770019094,213,0 +170770019144,213,0 +170770019193,213,0 +170770019241,213,0 +170770019291,213,0 +170770019339,213,0 +170770019387,214,0 +170770019436,213,0 +170770019484,214,0 +170770019532,214,0 +170770019580,214,0 +170770019630,214,0 +170770019678,214,0 +170770019726,214,0 +170770019775,214,0 +170770019823,214,0 +170770019871,214,0 +170770019919,215,0 +170770019967,214,0 +170770020015,213,0 +170770020064,213,0 +170770020112,213,0 +170770020160,213,0 +170770020208,213,0 +170770020256,213,0 +170770020304,214,0 +170770020352,214,0 +170770020399,214,0 +170770020449,214,0 +170770020498,214,0 +170770020546,215,0 +170770020594,214,0 +170770020642,215,0 +170770020690,215,0 +170770020738,215,0 +170770020786,215,0 +170770020835,215,0 +170770020883,214,0 +170770020931,213,0 +170770020979,213,0 +170770021027,213,0 +170770021076,213,0 +170770021124,214,0 +170770021172,213,0 +170770021220,214,0 +170770021268,214,0 +170770021317,214,0 +170770021367,214,0 +170770021415,215,0 +170770021463,214,0 +170770021512,215,0 +170770021562,215,0 +170770021610,215,0 +170770021658,215,0 +170770021705,215,0 +170770021753,214,0 +170770021803,213,0 +170770021852,213,0 +170770021902,213,0 +170770021950,213,0 +170770021999,214,0 +170770022047,214,0 +170770022096,214,0 +170770022146,214,0 +170770022194,214,0 +170770022242,214,0 +170770022291,215,0 +170770022339,214,0 +170770022388,215,0 +170770022438,215,0 +170770022486,215,0 +170770022535,215,0 +170770022583,215,0 +170770022633,215,0 +170770022682,214,0 +170770022732,213,0 +170770022780,213,0 +170770022829,213,0 +170770022877,213,0 +170770022926,213,0 +170770022974,214,0 +170770023024,214,0 +170770023072,214,0 +170770023121,214,0 +170770023169,214,0 +170770023217,214,0 +170770023265,214,0 +170770023313,214,0 +170770023362,214,0 +170770023410,215,0 +170770023458,214,0 +170770023506,215,0 +170770023554,215,0 +170770023603,214,0 +170770023651,213,0 +170770023699,214,0 +170770023749,214,0 +170770023797,214,0 +170770023846,214,0 +170770023894,214,0 +170770023942,214,0 +170770023990,214,0 +170770024039,214,0 +170770024087,215,0 +170770024137,215,0 +170770024186,215,0 +170770024236,215,0 +170770024285,215,0 +170770024333,215,0 +170770024381,215,0 +170770024429,214,0 +170770024479,214,0 +170770024527,213,0 +170770024576,213,0 +170770024624,214,0 +170770024672,214,0 +170770024720,214,0 +170770024770,214,0 +170770024817,214,0 +170770024865,214,0 +170770024915,214,0 +170770024964,215,0 +170770025014,214,0 +170770025062,214,0 +170770025111,215,0 +170770025161,215,0 +170770025209,215,0 +170770025257,215,0 +170770025306,215,0 +170770025354,213,0 +170770025404,213,0 +170770025452,213,0 +170770025501,213,0 +170770025549,213,0 +170770025599,213,0 +170770025648,213,0 +170770025697,214,0 +170770025745,214,0 +170770025793,214,0 +170770025843,214,0 +170770025891,214,0 +170770025938,214,0 +170770025988,215,0 +170770026036,215,0 +170770026084,215,0 +170770026132,215,0 +170770026180,215,0 +170770026229,215,0 +170770026277,213,0 +170770026325,213,0 +170770026373,213,0 +170770026421,213,0 +170770026470,213,0 +170770026518,214,0 +170770026566,214,0 +170770026614,214,0 +170770026662,214,0 +170770026712,214,0 +170770026759,214,0 +170770026807,215,0 +170770026857,215,0 +170770026905,214,0 +170770026953,215,0 +170770027002,215,0 +170770027050,215,0 +170770027098,215,0 +170770027146,214,0 +170770027194,213,0 +170770027243,213,0 +170770027293,213,0 +170770027340,213,0 +170770027390,214,0 +170770027438,214,0 +170770027487,214,0 +170770027537,214,0 +170770027585,214,0 +170770027634,214,0 +170770027682,215,0 +170770027730,215,0 +170770027778,215,0 +170770027826,215,0 +170770027874,215,0 +170770027922,215,0 +170770027969,215,0 +170770028017,215,0 +170770028065,214,0 +170770028115,214,0 +170770028163,214,0 +170770028212,214,0 +170770028260,214,0 +170770028308,214,0 +170770028356,214,0 +170770028404,214,0 +170770028452,214,0 +170770028502,215,0 +170770028550,215,0 +170770028597,215,0 +170770028647,215,0 +170770028696,215,0 +170770028744,215,0 +170770028794,215,0 +170770028842,215,0 +170770028891,215,0 +170770028941,213,0 +170770028989,213,0 +170770029036,213,0 +170770029084,213,0 +170770029134,214,0 +170770029181,214,0 +170770029229,214,0 +170770029279,214,0 +170770029327,214,0 +170770029375,214,0 +170770029423,214,0 +170770029472,215,0 +170770029520,215,0 +170770029568,215,0 +170770029616,215,0 +170770029664,215,0 +170770029712,215,0 +170770029760,215,0 +170770029807,214,0 +170770029855,213,0 +170770029905,213,0 +170770029953,213,0 +170770030002,214,0 +170770030050,214,0 +170770030098,214,0 +170770030146,214,0 +170770030195,214,0 +170770030243,214,0 +170770030293,214,0 +170770030342,214,0 +170770030390,215,0 +170770030438,215,0 +170770030486,215,0 +170770030536,215,0 +170770030584,215,0 +170770030633,215,0 +170770030682,215,0 +170770030732,214,0 +170770030780,213,0 +170770030828,213,0 +170770030876,213,0 +170770030924,213,0 +170770030973,213,0 +170770031023,214,0 +170770031072,214,0 +170770031122,214,0 +170770031169,214,0 +170770031219,214,0 +170770031267,214,0 +170770031316,214,0 +170770031366,214,0 +170770031415,215,0 +170770031463,215,0 +170770031511,215,0 +170770031559,215,0 +170770031607,215,0 +170770031657,213,0 +170770031706,213,0 +170770031754,213,0 +170770031802,213,0 +170770031850,214,0 +170770031899,213,0 +170770031947,214,0 +170770031997,214,0 +170770032045,214,0 +170770032093,214,0 +170770032142,215,0 +170770032192,214,0 +170770032240,215,0 +170770032287,215,0 +170770032337,215,0 +170770032387,215,0 +170770032434,215,0 +170770032482,214,0 +170770032532,213,0 +170770032580,213,0 +170770032629,213,0 +170770032679,213,0 +170770032727,213,0 +170770032775,213,0 +170770032824,214,0 +170770032872,214,0 +170770032920,214,0 +170770032968,214,0 +170770033016,214,0 +170770033065,214,0 +170770033113,214,0 +170770033163,214,0 +170770033211,215,0 +170770033259,214,0 +170770033308,214,0 +170770033356,215,0 +170770033404,214,0 +170770033453,213,0 +170770033501,213,0 +170770033549,213,0 +170770033597,213,0 +170770033645,214,0 +170770033693,214,0 +170770033741,214,0 +170770033790,214,0 +170770033838,214,0 +170770033886,215,0 +170770033934,215,0 +170770033982,215,0 +170770034030,215,0 +170770034078,215,0 +170770034127,215,0 +170770034175,215,0 +170770034225,215,0 +170770034273,214,0 +170770034321,213,0 +170770034370,213,0 +170770034420,214,0 +170770034468,214,0 +170770034516,214,0 +170770034564,214,0 +170770034612,214,0 +170770034659,214,0 +170770034709,214,0 +170770034758,214,0 +170770034806,214,0 +170770034856,215,0 +170770034904,214,0 +170770034952,215,0 +170770034999,215,0 +170770035047,215,0 +170770035097,215,0 +170770035145,214,0 +170770035193,214,0 +170770035241,213,0 +170770035288,213,0 +170770035338,213,0 +170770035386,213,0 +170770035434,214,0 +170770035483,214,0 +170770035533,214,0 +170770035582,214,0 +170770035630,214,0 +170770035680,214,0 +170770035728,214,0 +170770035777,214,0 +170770035825,214,0 +170770035873,214,0 +170770035921,214,0 +170770035969,215,0 +170770036019,214,0 +170770036067,214,0 +170770036114,214,0 +170770036164,213,0 +170770036213,213,0 +170770036263,213,0 +170770036311,213,0 +170770036359,213,0 +170770036408,213,0 +170770036458,213,0 +170770036507,214,0 +170770036555,214,0 +170770036605,214,0 +170770036654,214,0 +170770036704,214,0 +170770036751,214,0 +170770036801,214,0 +170770036849,215,0 +170770036898,214,0 +170770036946,215,0 +170770036994,214,0 +170770037042,213,0 +170770037092,213,0 +170770037140,213,0 +170770037189,213,0 +170770037237,213,0 +170770037287,213,0 +170770037335,214,0 +170770037382,214,0 +170770037432,214,0 +170770037480,214,0 +170770037529,214,0 +170770037577,214,0 +170770037625,214,0 +170770037673,215,0 +170770037721,214,0 +170770037769,214,0 +170770037817,214,0 +170770037864,215,0 +170770037914,213,0 +170770037962,213,0 +170770038010,213,0 +170770038059,213,0 +170770038109,213,0 +170770038157,213,0 +170770038205,213,0 +170770038253,214,0 +170770038300,214,0 +170770038348,214,0 +170770038398,214,0 +170770038446,214,0 +170770038494,214,0 +170770038541,214,0 +170770038589,215,0 +170770038637,215,0 +170770038685,215,0 +170770038733,215,0 +170770038781,214,0 +170770038829,213,0 +170770038876,213,0 +170770038924,213,0 +170770038972,213,0 +170770039020,213,0 +170770039068,213,0 +170770039116,214,0 +170770039164,214,0 +170770039212,214,0 +170770039260,214,0 +170770039309,214,0 +170770039359,215,0 +170770039408,215,0 +170770039456,215,0 +170770039504,215,0 +170770039554,215,0 +170770039603,215,0 +170770039653,215,0 +170770039701,213,0 +170770039750,213,0 +170770039798,213,0 +170770039846,213,0 +170770039894,213,0 +170770039942,214,0 +170770039990,214,0 +170770040038,214,0 +170770040086,214,0 +170770040135,214,0 +170770040183,214,0 +170770040231,214,0 +170770040280,214,0 +170770040330,215,0 +170770040379,215,0 +170770040429,215,0 +170770040477,215,0 +170770040525,215,0 +170770040573,215,0 +170770040621,213,0 +170770040670,213,0 +170770040718,213,0 +170770040767,213,0 +170770040815,213,0 +170770040865,213,0 +170770040913,213,0 +170770040962,214,0 +170770041012,214,0 +170770041061,214,0 +170770041111,214,0 +170770041159,214,0 +170770041207,214,0 +170770041254,214,0 +170770041302,214,0 +170770041350,214,0 +170770041399,214,0 +170770041447,215,0 +170770041497,213,0 +170770041545,213,0 +170770041594,213,0 +170770041642,213,0 +170770041692,213,0 +170770041740,213,0 +170770041789,214,0 +170770041837,214,0 +170770041885,214,0 +170770041933,214,0 +170770041983,214,0 +170770042030,215,0 +170770042080,214,0 +170770042128,215,0 +170770042176,215,0 +170770042226,215,0 +170770042274,215,0 +170770042323,215,0 +170770042371,215,0 +170770042421,213,0 +170770042470,213,0 +170770042518,213,0 +170770042568,213,0 +170770042616,214,0 +170770042663,214,0 +170770042711,214,0 +170770042761,214,0 +170770042809,214,0 +170770042857,214,0 +170770042905,214,0 +170770042953,214,0 +170770043002,215,0 +170770043050,215,0 +170770043099,215,0 +170770043147,215,0 +170770043197,215,0 +170770043246,215,0 +170770043294,213,0 +170770043344,213,0 +170770043393,213,0 +170770043443,213,0 +170770043492,213,0 +170770043540,213,0 +170770043588,214,0 +170770043636,214,0 +170770043684,214,0 +170770043733,214,0 +170770043783,214,0 +170770043831,214,0 +170770043880,214,0 +170770043928,215,0 +170770043976,215,0 +170770044024,215,0 +170770044072,215,0 +170770044120,215,0 +170770044168,214,0 +170770044216,213,0 +170770044264,213,0 +170770044313,213,0 +170770044363,213,0 +170770044411,213,0 +170770044458,213,0 +170770044506,213,0 +170770044554,214,0 +170770044602,214,0 +170770044652,214,0 +170770044700,214,0 +170770044748,214,0 +170770044795,214,0 +170770044845,214,0 +170770044893,214,0 +170770044941,215,0 +170770044990,214,0 +170770045040,214,0 +170770045088,213,0 +170770045137,213,0 +170770045187,213,0 +170770045236,213,0 +170770045286,213,0 +170770045334,214,0 +170770045381,214,0 +170770045429,214,0 +170770045479,214,0 +170770045527,214,0 +170770045575,214,0 +170770045624,214,0 +170770045672,215,0 +170770045722,215,0 +170770045770,215,0 +170770045819,215,0 +170770045867,215,0 +170770045915,215,0 +170770045965,214,0 +170770046014,213,0 +170770046064,213,0 +170770046112,213,0 +170770046160,214,0 +170770046208,214,0 +170770046256,214,0 +170770046305,214,0 +170770046353,214,0 +170770046402,214,0 +170770046450,215,0 +170770046498,215,0 +170770046546,215,0 +170770046595,215,0 +170770046645,215,0 +170770046693,215,0 +170770046742,215,0 +170770046790,215,0 +170770046838,215,0 +170770046885,213,0 +170770046933,213,0 +170770046983,213,0 +170770047032,213,0 +170770047080,213,0 +170770047128,214,0 +170770047176,214,0 +170770047225,214,0 +170770047273,214,0 +170770047321,214,0 +170770047368,214,0 +170770047416,214,0 +170770047464,215,0 +170770047512,215,0 +170770047560,215,0 +170770047607,214,0 +170770047657,214,0 +170770047704,214,0 +170770047752,214,0 +170770047800,213,0 +170770047849,213,0 +170770047899,213,0 +170770047947,213,0 +170770047996,213,0 +170770048044,213,0 +170770048093,213,0 +170770048141,213,0 +170770048189,213,0 +170770048238,213,0 +170770048286,213,0 +170770048336,213,0 +170770048383,214,0 +170770048431,214,0 +170770048481,214,0 +170770048529,214,0 +170770048578,214,0 +170770048626,214,0 +170770048674,214,0 +170770048721,214,0 +170770048769,214,0 +170770048817,215,0 +170770048865,215,0 +170770048913,215,0 +170770048961,215,0 +170770049008,215,0 +170770049056,215,0 +170770049104,213,0 +170770049152,213,0 +170770049200,213,0 +170770049248,213,0 +170770049297,213,0 +170770049345,213,0 +170770049394,213,0 +170770049442,214,0 +170770049490,213,0 +170770049538,214,0 +170770049586,214,0 +170770049635,214,0 +170770049684,215,0 +170770049732,215,0 +170770049780,215,0 +170770049830,215,0 +170770049877,215,0 +170770049925,215,0 +170770049973,214,0 +170770050023,213,0 +170770050071,213,0 +170770050118,213,0 +170770050166,213,0 +170770050214,213,0 +170770050262,213,0 +170770050312,214,0 +170770050359,214,0 +170770050407,214,0 +170770050455,214,0 +170770050503,214,0 +170770050551,214,0 +170770050600,214,0 +170770050650,214,0 +170770050698,214,0 +170770050746,214,0 +170770050794,214,0 +170770050843,215,0 +170770050891,213,0 +170770050939,213,0 +170770050987,213,0 +170770051036,213,0 +170770051084,213,0 +170770051134,213,0 +170770051182,213,0 +170770051230,214,0 +170770051277,214,0 +170770051325,214,0 +170770051373,214,0 +170770051421,214,0 +170770051469,215,0 +170770051516,215,0 +170770051564,214,0 +170770051612,215,0 +170770051660,215,0 +170770051708,215,0 +170770051756,214,0 +170770051804,213,0 +170770051852,213,0 +170770051899,213,0 +170770051947,213,0 +170770051995,213,0 +170770052045,213,0 +170770052092,213,0 +170770052142,214,0 +170770052190,214,0 +170770052238,214,0 +170770052285,214,0 +170770052333,214,0 +170770052381,214,0 +170770052430,214,0 +170770052478,214,0 +170770052526,215,0 +170770052574,215,0 +170770052622,215,0 +170770052670,214,0 +170770052718,213,0 +170770052766,213,0 +170770052814,213,0 +170770052863,213,0 +170770052913,213,0 +170770052961,214,0 +170770053008,214,0 +170770053058,214,0 +170770053107,214,0 +170770053157,214,0 +170770053205,214,0 +170770053254,214,0 +170770053302,215,0 +170770053350,214,0 +170770053400,215,0 +170770053448,215,0 +170770053496,215,0 +170770053544,215,0 +170770053592,214,0 +170770053640,213,0 +170770053688,213,0 +170770053735,214,0 +170770053783,214,0 +170770053831,214,0 +170770053879,214,0 +170770053927,214,0 +170770053975,214,0 +170770054025,214,0 +170770054073,214,0 +170770054122,214,0 +170770054172,214,0 +170770054221,214,0 +170770054271,215,0 +170770054319,215,0 +170770054367,215,0 +170770054415,215,0 +170770054462,215,0 +170770054510,213,0 +170770054558,213,0 +170770054606,213,0 +170770054654,213,0 +170770054702,214,0 +170770054750,214,0 +170770054798,214,0 +170770054846,214,0 +170770054894,214,0 +170770054942,214,0 +170770054989,214,0 +170770055037,214,0 +170770055085,215,0 +170770055133,215,0 +170770055181,215,0 +170770055229,215,0 +170770055277,215,0 +170770055325,215,0 +170770055373,215,0 +170770055422,213,0 +170770055472,214,0 +170770055521,214,0 +170770055571,214,0 +170770055619,214,0 +170770055668,214,0 +170770055716,214,0 +170770055766,214,0 +170770055814,214,0 +170770055862,214,0 +170770055910,215,0 +170770055957,215,0 +170770056005,215,0 +170770056053,215,0 +170770056101,215,0 +170770056151,215,0 +170770056199,215,0 +170770056248,215,0 +170770056296,214,0 +170770056344,214,0 +170770056393,214,0 +170770056441,214,0 +170770056489,215,0 +170770056537,214,0 +170770056585,214,0 +170770056633,215,0 +170770056681,215,0 +170770056729,215,0 +170770056778,215,0 +170770056828,215,0 +170770056876,215,0 +170770056923,215,0 +170770056971,215,0 +170770057021,215,0 +170770057069,215,0 +170770057118,215,0 +170770057166,214,0 +170770057216,214,0 +170770057263,214,0 +170770057313,214,0 +170770057361,214,0 +170770057409,214,0 +170770057458,214,0 +170770057506,215,0 +170770057554,214,0 +170770057602,215,0 +170770057650,215,0 +170770057699,215,0 +170770057747,215,0 +170770057795,215,0 +170770057843,215,0 +170770057891,215,0 +170770057941,215,0 +170770057988,215,0 +170770058038,215,0 +170770058087,214,0 +170770058137,214,0 +170770058185,214,0 +170770058233,213,0 +170770058281,214,0 +170770058330,214,0 +170770058378,214,0 +170770058428,214,0 +170770058476,215,0 +170770058523,215,0 +170770058573,215,0 +170770058621,215,0 +170770058669,215,0 +170770058717,215,0 +170770058765,215,0 +170770058814,215,0 +170770058864,215,0 +170770058912,215,0 +170770058960,214,0 +170770059007,213,0 +170770059057,213,0 +170770059107,213,0 +170770059154,213,0 +170770059202,214,0 +170770059250,214,0 +170770059298,214,0 +170770059346,214,0 +170770059396,214,0 +170770059444,214,0 +170770059492,214,0 +170770059540,214,0 +170770059588,214,0 +170770059636,215,0 +170770059684,215,0 +170770059732,215,0 +170770059780,215,0 +170770059827,215,0 +170770059877,214,0 +170770059925,213,0 +170770059973,213,0 +170770060022,213,0 +170770060070,214,0 +170770060119,213,0 +170770060167,213,0 +170770060217,213,0 +170770060266,214,0 +170770060314,214,0 +170770060364,214,0 +170770060412,214,0 +170770060461,214,0 +170770060509,214,0 +170770060557,214,0 +170770060607,215,0 +170770060656,214,0 +170770060704,215,0 +170770060752,214,0 +170770060800,213,0 +170770060849,213,0 +170770060897,213,0 +170770060945,213,0 +170770060994,213,0 +170770061044,213,0 +170770061092,214,0 +170770061140,214,0 +170770061188,214,0 +170770061237,214,0 +170770061285,214,0 +170770061333,215,0 +170770061381,214,0 +170770061431,214,0 +170770061478,215,0 +170770061526,215,0 +170770061574,215,0 +170770061622,214,0 +170770061670,214,0 +170770061718,213,0 +170770061765,213,0 +170770061813,213,0 +170770061863,213,0 +170770061910,214,0 +170770061958,213,0 +170770062006,214,0 +170770062054,214,0 +170770062103,214,0 +170770062151,214,0 +170770062199,215,0 +170770062247,215,0 +170770062296,215,0 +170770062344,215,0 +170770062393,215,0 +170770062441,215,0 +170770062490,215,0 +170770062538,215,0 +170770062586,213,0 +170770062634,213,0 +170770062682,213,0 +170770062730,213,0 +170770062778,214,0 +170770062827,213,0 +170770062875,214,0 +170770062924,214,0 +170770062972,214,0 +170770063020,214,0 +170770063070,214,0 +170770063119,215,0 +170770063167,214,0 +170770063215,214,0 +170770063263,215,0 +170770063311,215,0 +170770063359,215,0 +170770063407,214,0 +170770063455,213,0 +170770063503,213,0 +170770063550,213,0 +170770063598,213,0 +170770063646,213,0 +170770063694,214,0 +170770063742,213,0 +170770063791,214,0 +170770063839,214,0 +170770063887,214,0 +170770063935,214,0 +170770063982,214,0 +170770064030,214,0 +170770064078,215,0 +170770064126,215,0 +170770064175,215,0 +170770064223,215,0 +170770064271,215,0 +170770064321,215,0 +170770064369,213,0 +170770064416,213,0 +170770064464,213,0 +170770064512,213,0 +170770064560,213,0 +170770064608,213,0 +170770064656,213,0 +170770064705,214,0 +170770064753,214,0 +170770064803,214,0 +170770064851,214,0 +170770064898,214,0 +170770064946,214,0 +170770064994,214,0 +170770065042,214,0 +170770065090,214,0 +170770065140,214,0 +170770065189,214,0 +170770065237,214,0 +170770065285,213,0 +170770065334,213,0 +170770065382,213,0 +170770065430,213,0 +170770065478,213,0 +170770065526,213,0 +170770065574,213,0 +170770065621,213,0 +170770065669,213,0 +170770065717,213,0 +170770065765,214,0 +170770065813,214,0 +170770065861,214,0 +170770065909,214,0 +170770065956,214,0 +170770066004,214,0 +170770066052,214,0 +170770066102,215,0 +170770066151,214,0 +170770066199,213,0 +170770066247,213,0 +170770066295,213,0 +170770066343,213,0 +170770066391,213,0 +170770066439,213,0 +170770066487,213,0 +170770066535,214,0 +170770066584,214,0 +170770066634,214,0 +170770066682,214,0 +170770066729,214,0 +170770066779,214,0 +170770066827,214,0 +170770066875,215,0 +170770066923,214,0 +170770066971,215,0 +170770067019,215,0 +170770067066,213,0 +170770067114,213,0 +170770067162,213,0 +170770067210,213,0 +170770067258,213,0 +170770067306,213,0 +170770067354,214,0 +170770067403,214,0 +170770067451,214,0 +170770067501,214,0 +170770067549,214,0 +170770067597,214,0 +170770067646,214,0 +170770067694,214,0 +170770067743,215,0 +170770067791,214,0 +170770067841,214,0 +170770067889,214,0 +170770067937,215,0 +170770067984,213,0 +170770068034,213,0 +170770068082,213,0 +170770068130,213,0 +170770068178,213,0 +170770068226,213,0 +170770068275,213,0 +170770068323,213,0 +170770068371,213,0 +170770068419,213,0 +170770068467,214,0 +170770068516,214,0 +170770068564,214,0 +170770068612,214,0 +170770068660,214,0 +170770068708,214,0 +170770068757,214,0 +170770068805,214,0 +170770068853,214,0 +170770068903,213,0 +170770068952,213,0 +170770069002,213,0 +170770069050,214,0 +170770069098,214,0 +170770069145,214,0 +170770069195,214,0 +170770069243,214,0 +170770069292,214,0 +170770069342,214,0 +170770069390,215,0 +170770069438,215,0 +170770069487,215,0 +170770069537,215,0 +170770069585,215,0 +170770069633,215,0 +170770069681,215,0 +170770069729,214,0 +170770069776,213,0 +170770069826,213,0 +170770069875,213,0 +170770069925,214,0 +170770069973,214,0 +170770070021,214,0 +170770070070,214,0 +170770070118,214,0 +170770070166,214,0 +170770070215,214,0 +170770070265,214,0 +170770070313,215,0 +170770070361,215,0 +170770070409,215,0 +170770070457,215,0 +170770070504,215,0 +170770070552,215,0 +170770070602,215,0 +170770070650,214,0 +170770070699,214,0 +170770070747,214,0 +170770070797,214,0 +170770070845,214,0 +170770070894,214,0 +170770070942,214,0 +170770070990,214,0 +170770071038,214,0 +170770071086,214,0 +170770071135,215,0 +170770071183,215,0 +170770071231,215,0 +170770071281,215,0 +170770071330,215,0 +170770071378,215,0 +170770071428,215,0 +170770071477,215,0 +170770071527,215,0 +170770071576,213,0 +170770071626,213,0 +170770071674,214,0 +170770071722,214,0 +170770071771,214,0 +170770071819,214,0 +170770071867,214,0 +170770071917,214,0 +170770071964,214,0 +170770072012,215,0 +170770072060,215,0 +170770072108,215,0 +170770072156,215,0 +170770072204,215,0 +170770072254,215,0 +170770072302,215,0 +170770072350,215,0 +170770072399,215,0 +170770072449,214,0 +170770072497,213,0 +170770072546,214,0 +170770072596,214,0 +170770072645,214,0 +170770072693,214,0 +170770072743,214,0 +170770072790,215,0 +170770072840,215,0 +170770072888,215,0 +170770072936,215,0 +170770072983,215,0 +170770073031,216,0 +170770073079,215,0 +170770073127,215,0 +170770073175,215,0 +170770073223,215,0 +170770073270,215,0 +170770073318,214,0 +170770073368,214,0 +170770073416,214,0 +170770073463,214,0 +170770073511,214,0 +170770073561,214,0 +170770073610,214,0 +170770073660,214,0 +170770073709,214,0 +170770073757,215,0 +170770073807,215,0 +170770073855,215,0 +170770073903,215,0 +170770073950,215,0 +170770074000,215,0 +170770074048,215,0 +170770074096,215,0 +170770074143,215,0 +170770074191,215,0 +170770074239,214,0 +170770074287,213,0 +170770074335,213,0 +170770074383,213,0 +170770074430,214,0 +170770074478,214,0 +170770074526,214,0 +170770074574,214,0 +170770074622,214,0 +170770074671,214,0 +170770074721,214,0 +170770074769,215,0 +170770074817,215,0 +170770074865,215,0 +170770074913,215,0 +170770074962,215,0 +170770075012,215,0 +170770075060,215,0 +170770075109,215,0 +170770075158,213,0 +170770075206,213,0 +170770075254,213,0 +170770075302,213,0 +170770075352,214,0 +170770075400,214,0 +170770075449,214,0 +170770075498,214,0 +170770075548,214,0 +170770075597,214,0 +170770075645,215,0 +170770075695,215,0 +170770075743,215,0 +170770075792,215,0 +170770075840,215,0 +170770075888,215,0 +170770075936,215,0 +170770075985,215,0 +170770076033,213,0 +170770076081,213,0 +170770076129,213,0 +170770076177,213,0 +170770076225,213,0 +170770076274,213,0 +170770076322,214,0 +170770076372,214,0 +170770076420,213,0 +170770076468,214,0 +170770076517,214,0 +170770076565,214,0 +170770076614,214,0 +170770076662,214,0 +170770076712,214,0 +170770076760,215,0 +170770076808,215,0 +170770076857,215,0 +170770076905,215,0 +170770076955,213,0 +170770077003,213,0 +170770077051,213,0 +170770077100,213,0 +170770077150,213,0 +170770077199,213,0 +170770077247,213,0 +170770077295,213,0 +170770077342,214,0 +170770077390,214,0 +170770077438,214,0 +170770077486,214,0 +170770077535,215,0 +170770077583,215,0 +170770077631,215,0 +170770077679,215,0 +170770077727,215,0 +170770077776,215,0 +170770077824,213,0 +170770077872,213,0 +170770077920,213,0 +170770077968,213,0 +170770078015,213,0 +170770078063,214,0 +170770078111,214,0 +170770078159,214,0 +170770078207,214,0 +170770078254,214,0 +170770078302,214,0 +170770078350,214,0 +170770078398,215,0 +170770078446,214,0 +170770078494,215,0 +170770078541,214,0 +170770078591,215,0 +170770078639,215,0 +170770078686,214,0 +170770078734,213,0 +170770078782,213,0 +170770078830,213,0 +170770078878,213,0 +170770078927,213,0 +170770078975,213,0 +170770079023,213,0 +170770079071,214,0 +170770079119,214,0 +170770079167,214,0 +170770079214,214,0 +170770079264,214,0 +170770079312,215,0 +170770079360,215,0 +170770079407,215,0 +170770079455,215,0 +170770079503,215,0 +170770079551,215,0 +170770079601,215,0 +170770079649,213,0 +170770079697,213,0 +170770079746,213,0 +170770079794,213,0 +170770079844,213,0 +170770079893,213,0 +170770079942,213,0 +170770079990,214,0 +170770080040,214,0 +170770080088,214,0 +170770080137,214,0 +170770080187,215,0 +170770080235,215,0 +170770080282,215,0 +170770080330,215,0 +170770080378,215,0 +170770080428,215,0 +170770080477,215,0 +170770080525,213,0 +170770080573,213,0 +170770080621,213,0 +170770080669,213,0 +170770080717,213,0 +170770080765,214,0 +170770080813,214,0 +170770080862,214,0 +170770080910,214,0 +170770080958,214,0 +170770081006,214,0 +170770081053,214,0 +170770081101,214,0 +170770081149,214,0 +170770081197,214,0 +170770081247,215,0 +170770081296,214,0 +170770081346,215,0 +170770081395,215,0 +170770081443,213,0 +170770081492,213,0 +170770081542,213,0 +170770081590,213,0 +170770081638,213,0 +170770081687,213,0 +170770081735,214,0 +170770081783,214,0 +170770081831,214,0 +170770081879,214,0 +170770081927,214,0 +170770081975,215,0 +170770082023,214,0 +170770082071,215,0 +170770082119,215,0 +170770082166,215,0 +170770082214,215,0 +170770082262,215,0 +170770082312,213,0 +170770082361,213,0 +170770082409,213,0 +170770082457,213,0 +170770082505,213,0 +170770082555,213,0 +170770082604,213,0 +170770082654,213,0 +170770082702,214,0 +170770082750,214,0 +170770082799,214,0 +170770082847,214,0 +170770082896,214,0 +170770082944,215,0 +170770082992,215,0 +170770083040,214,0 +170770083088,215,0 +170770083136,215,0 +170770083186,214,0 +170770083235,213,0 +170770083283,213,0 +170770083331,213,0 +170770083379,213,0 +170770083427,213,0 +170770083475,213,0 +170770083522,213,0 +170770083570,213,0 +170770083618,213,0 +170770083666,214,0 +170770083716,214,0 +170770083764,214,0 +170770083813,214,0 +170770083862,214,0 +170770083910,214,0 +170770083958,214,0 +170770084006,214,0 +170770084054,215,0 +170770084102,213,0 +170770084152,213,0 +170770084200,213,0 +170770084247,213,0 +170770084297,213,0 +170770084345,213,0 +170770084393,213,0 +170770084442,214,0 +170770084490,214,0 +170770084540,214,0 +170770084589,214,0 +170770084639,214,0 +170770084688,214,0 +170770084736,215,0 +170770084784,215,0 +170770084832,215,0 +170770084882,215,0 +170770084929,215,0 +170770084977,215,0 +170770085025,213,0 +170770085073,213,0 +170770085121,213,0 +170770085169,213,0 +170770085218,213,0 +170770085268,213,0 +170770085316,213,0 +170770085365,214,0 +170770085415,214,0 +170770085463,214,0 +170770085512,214,0 +170770085562,214,0 +170770085611,214,0 +170770085659,214,0 +170770085709,214,0 +170770085757,214,0 +170770085806,215,0 +170770085856,214,0 +170770085904,213,0 +170770085952,213,0 +170770086000,213,0 +170770086047,213,0 +170770086095,214,0 +170770086143,214,0 +170770086191,214,0 +170770086241,214,0 +170770086289,214,0 +170770086338,214,0 +170770086388,214,0 +170770086436,215,0 +170770086485,215,0 +170770086533,215,0 +170770086581,215,0 +170770086629,215,0 +170770086677,215,0 +170770086726,214,0 +170770086774,214,0 +170770086824,214,0 +170770086872,214,0 +170770086920,214,0 +170770086969,214,0 +170770087019,214,0 +170770087068,214,0 +170770087118,214,0 +170770087165,214,0 +170770087213,214,0 +170770087261,215,0 +170770087311,215,0 +170770087360,215,0 +170770087408,215,0 +170770087457,215,0 +170770087505,215,0 +170770087553,215,0 +170770087601,215,0 +170770087649,214,0 +170770087697,214,0 +170770087744,214,0 +170770087792,214,0 +170770087840,214,0 +170770087889,214,0 +170770087937,214,0 +170770087985,214,0 +170770088033,214,0 +170770088081,214,0 +170770088129,214,0 +170770088176,215,0 +170770088224,215,0 +170770088274,215,0 +170770088322,215,0 +170770088371,215,0 +170770088421,215,0 +170770088470,215,0 +170770088520,214,0 +170770088568,214,0 +170770088616,213,0 +170770088664,214,0 +170770088711,213,0 +170770088759,214,0 +170770088807,214,0 +170770088855,214,0 +170770088903,214,0 +170770088951,214,0 +170770089001,214,0 +170770089049,214,0 +170770089098,214,0 +170770089148,215,0 +170770089196,214,0 +170770089245,215,0 +170770089293,215,0 +170770089341,215,0 +170770089389,215,0 +170770089437,215,0 +170770089485,213,0 +170770089534,213,0 +170770089584,213,0 +170770089632,213,0 +170770089680,213,0 +170770089729,213,0 +170770089778,214,0 +170770089826,214,0 +170770089874,214,0 +170770089922,214,0 +170770089970,214,0 +170770090018,214,0 +170770090065,215,0 +170770090113,215,0 +170770090161,214,0 +170770090209,215,0 +170770090257,215,0 +170770090304,215,0 +170770090352,215,0 +170770090400,213,0 +170770090448,213,0 +170770090496,213,0 +170770090544,213,0 +170770090591,213,0 +170770090641,214,0 +170770090690,214,0 +170770090738,213,0 +170770090786,214,0 +170770090836,214,0 +170770090884,214,0 +170770090931,214,0 +170770090979,214,0 +170770091029,214,0 +170770091078,215,0 +170770091126,214,0 +170770091176,214,0 +170770091225,215,0 +170770091275,213,0 +170770091323,213,0 +170770091371,213,0 +170770091420,213,0 +170770091470,213,0 +170770091518,213,0 +170770091566,214,0 +170770091613,214,0 +170770091661,214,0 +170770091709,214,0 +170770091757,214,0 +170770091805,214,0 +170770091853,214,0 +170770091901,215,0 +170770091949,215,0 +170770091997,215,0 +170770092045,215,0 +170770092093,215,0 +170770092142,214,0 +170770092190,213,0 +170770092238,214,0 +170770092286,214,0 +170770092335,214,0 +170770092383,214,0 +170770092431,214,0 +170770092480,214,0 +170770092528,214,0 +170770092576,214,0 +170770092624,214,0 +170770092672,214,0 +170770092720,215,0 +170770092768,215,0 +170770092816,215,0 +170770092864,215,0 +170770092913,215,0 +170770092961,215,0 +170770093011,215,0 +170770093059,213,0 +170770093107,213,0 +170770093155,213,0 +170770093203,214,0 +170770093250,213,0 +170770093300,214,0 +170770093348,214,0 +170770093396,214,0 +170770093443,214,0 +170770093491,214,0 +170770093541,214,0 +170770093590,214,0 +170770093638,215,0 +170770093686,215,0 +170770093736,215,0 +170770093784,215,0 +170770093831,215,0 +170770093879,215,0 +170770093927,214,0 +170770093975,213,0 +170770094023,213,0 +170770094070,213,0 +170770094118,213,0 +170770094166,213,0 +170770094214,214,0 +170770094262,214,0 +170770094310,214,0 +170770094357,214,0 +170770094405,214,0 +170770094453,214,0 +170770094501,214,0 +170770094550,214,0 +170770094598,215,0 +170770094646,215,0 +170770094694,215,0 +170770094741,215,0 +170770094789,215,0 +170770094837,214,0 +170770094885,213,0 +170770094933,213,0 +170770094981,213,0 +170770095029,213,0 +170770095076,213,0 +170770095124,213,0 +170770095173,214,0 +170770095223,214,0 +170770095271,214,0 +170770095318,214,0 +170770095366,214,0 +170770095416,214,0 +170770095464,214,0 +170770095513,214,0 +170770095563,215,0 +170770095610,215,0 +170770095660,215,0 +170770095708,215,0 +170770095756,213,0 +170770095803,213,0 +170770095851,213,0 +170770095901,213,0 +170770095950,214,0 +170770095998,213,0 +170770096047,214,0 +170770096095,214,0 +170770096143,214,0 +170770096191,214,0 +170770096239,215,0 +170770096287,215,0 +170770096336,215,0 +170770096384,215,0 +170770096434,215,0 +170770096483,215,0 +170770096533,215,0 +170770096581,215,0 +170770096628,214,0 +170770096676,213,0 +170770096724,213,0 +170770096774,213,0 +170770096822,213,0 +170770096869,214,0 +170770096919,214,0 +170770096967,214,0 +170770097015,214,0 +170770097064,214,0 +170770097114,214,0 +170770097163,214,0 +170770097211,214,0 +170770097261,215,0 +170770097308,215,0 +170770097358,215,0 +170770097406,215,0 +170770097454,215,0 +170770097502,214,0 +170770097549,213,0 +170770097599,213,0 +170770097647,213,0 +170770097695,213,0 +170770097742,213,0 +170770097790,213,0 +170770097840,213,0 +170770097888,213,0 +170770097937,214,0 +170770097985,214,0 +170770098033,214,0 +170770098082,214,0 +170770098130,214,0 +170770098180,214,0 +170770098228,214,0 +170770098276,214,0 +170770098325,215,0 +170770098373,215,0 +170770098421,214,0 +170770098469,213,0 +170770098517,213,0 +170770098565,213,0 +170770098614,213,0 +170770098662,213,0 +170770098710,213,0 +170770098759,214,0 +170770098807,214,0 +170770098857,214,0 +170770098905,214,0 +170770098954,214,0 +170770099004,214,0 +170770099052,214,0 +170770099099,214,0 +170770099149,215,0 +170770099197,215,0 +170770099246,214,0 +170770099294,214,0 +170770099344,213,0 +170770099393,213,0 +170770099441,213,0 +170770099491,213,0 +170770099539,214,0 +170770099588,213,0 +170770099638,214,0 +170770099687,214,0 +170770099735,214,0 +170770099783,214,0 +170770099831,214,0 +170770099879,214,0 +170770099926,214,0 +170770099976,215,0 +170770100024,215,0 +170770100073,215,0 +170770100122,215,0 +170770100172,215,0 +170770100220,214,0 +170770100268,213,0 +170770100315,213,0 +170770100363,213,0 +170770100413,214,0 +170770100460,213,0 +170770100508,214,0 +170770100556,214,0 +170770100604,214,0 +170770100652,214,0 +170770100699,214,0 +170770100747,214,0 +170770100795,214,0 +170770100843,215,0 +170770100891,215,0 +170770100939,214,0 +170770100987,215,0 +170770101036,215,0 +170770101084,215,0 +170770101132,213,0 +170770101179,213,0 +170770101229,213,0 +170770101277,213,0 +170770101324,213,0 +170770101372,214,0 +170770101420,214,0 +170770101468,214,0 +170770101516,214,0 +170770101564,214,0 +170770101611,214,0 +170770101659,214,0 +170770101707,214,0 +170770101755,214,0 +170770101803,215,0 +170770101851,215,0 +170770101900,215,0 +170770101948,215,0 +170770101996,214,0 +170770102044,213,0 +170770102092,213,0 +170770102140,213,0 +170770102189,213,0 +170770102237,214,0 +170770102287,213,0 +170770102335,214,0 +170770102383,214,0 +170770102431,214,0 +170770102479,214,0 +170770102528,214,0 +170770102576,215,0 +170770102625,214,0 +170770102673,215,0 +170770102721,215,0 +170770102771,215,0 +170770102818,215,0 +170770102868,215,0 +170770102916,213,0 +170770102965,213,0 +170770103013,213,0 +170770103061,214,0 +170770103109,213,0 +170770103157,214,0 +170770103205,214,0 +170770103253,214,0 +170770103300,214,0 +170770103350,214,0 +170770103399,214,0 +170770103449,215,0 +170770103497,215,0 +170770103545,214,0 +170770103594,215,0 +170770103642,215,0 +170770103692,215,0 +170770103741,215,0 +170770103789,214,0 +170770103837,213,0 +170770103886,213,0 +170770103934,213,0 +170770103982,214,0 +170770104030,214,0 +170770104078,214,0 +170770104126,214,0 +170770104174,214,0 +170770104221,214,0 +170770104269,214,0 +170770104319,215,0 +170770104366,215,0 +170770104414,214,0 +170770104462,215,0 +170770104510,215,0 +170770104557,215,0 +170770104605,215,0 +170770104653,215,0 +170770104701,214,0 +170770104750,213,0 +170770104798,213,0 +170770104846,214,0 +170770104894,214,0 +170770104942,214,0 +170770104989,214,0 +170770105037,214,0 +170770105087,214,0 +170770105134,215,0 +170770105182,215,0 +170770105230,215,0 +170770105278,215,0 +170770105326,214,0 +170770105374,215,0 +170770105421,215,0 +170770105469,214,0 +170770105519,215,0 +170770105567,215,0 +170770105615,213,0 +170770105663,213,0 +170770105712,213,0 +170770105762,213,0 +170770105810,214,0 +170770105858,214,0 +170770105906,214,0 +170770105955,214,0 +170770106003,214,0 +170770106053,214,0 +170770106100,215,0 +170770106150,214,0 +170770106198,215,0 +170770106246,214,0 +170770106294,214,0 +170770106342,215,0 +170770106389,214,0 +170770106437,214,0 +170770106487,214,0 +170770106536,213,0 +170770106584,213,0 +170770106632,213,0 +170770106681,213,0 +170770106731,213,0 +170770106779,214,0 +170770106826,213,0 +170770106876,214,0 +170770106925,214,0 +170770106975,214,0 +170770107023,214,0 +170770107071,214,0 +170770107120,214,0 +170770107168,215,0 +170770107218,214,0 +170770107266,214,0 +170770107315,214,0 +170770107365,214,0 +170770107412,213,0 +170770107462,213,0 +170770107510,213,0 +170770107558,213,0 +170770107606,213,0 +170770107654,213,0 +170770107702,213,0 +170770107750,214,0 +170770107798,214,0 +170770107845,214,0 +170770107895,214,0 +170770107943,215,0 +170770107991,215,0 +170770108039,215,0 +170770108087,214,0 +170770108135,214,0 +170770108183,215,0 +170770108232,215,0 +170770108282,213,0 +170770108329,213,0 +170770108377,213,0 +170770108425,213,0 +170770108473,213,0 +170770108521,213,0 +170770108569,213,0 +170770108617,213,0 +170770108664,213,0 +170770108712,214,0 +170770108762,214,0 +170770108810,214,0 +170770108858,214,0 +170770108907,214,0 +170770108957,214,0 +170770109006,215,0 +170770109054,214,0 +170770109103,214,0 +170770109151,214,0 +170770109199,213,0 +170770109247,213,0 +170770109295,213,0 +170770109343,213,0 +170770109393,213,0 +170770109440,213,0 +170770109488,214,0 +170770109536,214,0 +170770109586,214,0 +170770109635,214,0 +170770109683,214,0 +170770109731,214,0 +170770109778,214,0 +170770109826,214,0 +170770109874,214,0 +170770109923,215,0 +170770109971,215,0 +170770110019,215,0 +170770110067,214,0 +170770110116,213,0 +170770110164,213,0 +170770110212,213,0 +170770110260,213,0 +170770110309,213,0 +170770110357,213,0 +170770110406,214,0 +170770110454,214,0 +170770110502,214,0 +170770110550,214,0 +170770110598,214,0 +170770110647,214,0 +170770110695,214,0 +170770110743,214,0 +170770110792,214,0 +170770110840,214,0 +170770110888,214,0 +170770110936,214,0 +170770110983,213,0 +170770111031,213,0 +170770111079,213,0 +170770111129,213,0 +170770111176,213,0 +170770111224,214,0 +170770111272,213,0 +170770111320,213,0 +170770111368,213,0 +170770111416,214,0 +170770111463,214,0 +170770111511,214,0 +170770111559,214,0 +170770111607,214,0 +170770111656,214,0 +170770111704,214,0 +170770111752,215,0 +170770111800,215,0 +170770111848,214,0 +170770111896,213,0 +170770111944,213,0 +170770111991,213,0 +170770112039,213,0 +170770112087,213,0 +170770112135,213,0 +170770112183,214,0 +170770112232,214,0 +170770112280,214,0 +170770112330,214,0 +170770112378,214,0 +170770112427,214,0 +170770112475,214,0 +170770112525,215,0 +170770112574,215,0 +170770112622,215,0 +170770112671,215,0 +170770112719,214,0 +170770112769,213,0 +170770112817,213,0 +170770112865,213,0 +170770112914,213,0 +170770112962,214,0 +170770113010,213,0 +170770113058,214,0 +170770113106,214,0 +170770113155,214,0 +170770113203,214,0 +170770113253,214,0 +170770113302,214,0 +170770113350,215,0 +170770113398,214,0 +170770113446,215,0 +170770113494,214,0 +170770113544,214,0 +170770113593,215,0 +170770113641,215,0 +170770113689,213,0 +170770113737,213,0 +170770113785,214,0 +170770113833,213,0 +170770113881,214,0 +170770113928,214,0 +170770113976,214,0 +170770114024,214,0 +170770114072,214,0 +170770114120,214,0 +170770114168,214,0 +170770114216,214,0 +170770114264,214,0 +170770114312,215,0 +170770114361,215,0 +170770114411,214,0 +170770114459,215,0 +170770114507,215,0 +170770114556,214,0 +170770114604,213,0 +170770114652,213,0 +170770114700,213,0 +170770114748,213,0 +170770114796,214,0 +170770114845,214,0 +170770114893,214,0 +170770114943,214,0 +170770114992,214,0 +170770115040,214,0 +170770115088,214,0 +170770115136,215,0 +170770115184,215,0 +170770115232,215,0 +170770115281,215,0 +170770115331,215,0 +170770115379,215,0 +170770115427,214,0 +170770115475,214,0 +170770115523,214,0 +170770115570,214,0 +170770115618,214,0 +170770115666,214,0 +170770115714,214,0 +170770115762,214,0 +170770115810,214,0 +170770115858,215,0 +170770115907,215,0 +170770115955,215,0 +170770116004,215,0 +170770116052,215,0 +170770116100,215,0 +170770116148,215,0 +170770116196,215,0 +170770116244,215,0 +170770116291,215,0 +170770116341,214,0 +170770116390,214,0 +170770116438,213,0 +170770116486,214,0 +170770116534,214,0 +170770116584,214,0 +170770116632,214,0 +170770116680,214,0 +170770116729,214,0 +170770116777,214,0 +170770116827,214,0 +170770116874,215,0 +170770116922,215,0 +170770116970,215,0 +170770117018,215,0 +170770117066,215,0 +170770117114,215,0 +170770117162,215,0 +170770117210,214,0 +170770117258,213,0 +170770117307,213,0 +170770117355,213,0 +170770117403,213,0 +170770117452,213,0 +170770117502,214,0 +170770117550,214,0 +170770117598,214,0 +170770117645,214,0 +170770117693,214,0 +170770117743,214,0 +170770117792,214,0 +170770117840,215,0 +170770117890,215,0 +170770117938,215,0 +170770117987,215,0 +170770118035,215,0 +170770118083,215,0 +170770118131,214,0 +170770118180,213,0 +170770118228,213,0 +170770118277,213,0 +170770118325,213,0 +170770118375,213,0 +170770118423,213,0 +170770118472,213,0 +170770118520,213,0 +170770118568,214,0 +170770118616,214,0 +170770118664,214,0 +170770118712,214,0 +170770118761,214,0 +170770118809,214,0 +170770118859,214,0 +170770118907,214,0 +170770118955,215,0 +170770119004,215,0 +170770119054,213,0 +170770119102,213,0 +170770119150,213,0 +170770119198,213,0 +170770119246,213,0 +170770119295,213,0 +170770119345,213,0 +170770119392,213,0 +170770119440,213,0 +170770119488,214,0 +170770119536,213,0 +170770119584,214,0 +170770119632,214,0 +170770119680,214,0 +170770119728,214,0 +170770119777,214,0 +170770119825,214,0 +170770119874,214,0 +170770119924,213,0 +170770119972,213,0 +170770120021,213,0 +170770120069,213,0 +170770120117,213,0 +170770120165,213,0 +170770120213,213,0 +170770120263,214,0 +170770120312,214,0 +170770120362,214,0 +170770120409,214,0 +170770120457,214,0 +170770120505,214,0 +170770120554,214,0 +170770120602,214,0 +170770120652,215,0 +170770120700,214,0 +170770120748,215,0 +170770120796,214,0 +170770120843,213,0 +170770120891,213,0 +170770120939,213,0 +170770120987,213,0 +170770121035,213,0 +170770121084,213,0 +170770121132,214,0 +170770121180,213,0 +170770121228,214,0 +170770121276,214,0 +170770121324,214,0 +170770121372,214,0 +170770121420,214,0 +170770121468,214,0 +170770121516,214,0 +170770121564,214,0 +170770121613,215,0 +170770121661,214,0 +170770121709,215,0 +170770121757,213,0 +170770121805,213,0 +170770121855,213,0 +170770121904,214,0 +170770121952,214,0 +170770122001,214,0 +170770122049,214,0 +170770122099,214,0 +170770122147,214,0 +170770122195,215,0 +170770122244,215,0 +170770122292,215,0 +170770122340,215,0 +170770122388,214,0 +170770122436,215,0 +170770122484,215,0 +170770122533,215,0 +170770122583,214,0 +170770122631,213,0 +170770122679,213,0 +170770122726,213,0 +170770122774,214,0 +170770122822,214,0 +170770122870,214,0 +170770122918,214,0 +170770122966,214,0 +170770123014,214,0 +170770123062,214,0 +170770123110,214,0 +170770123158,214,0 +170770123205,215,0 +170770123253,215,0 +170770123301,215,0 +170770123349,215,0 +170770123399,215,0 +170770123447,215,0 +170770123494,214,0 +170770123544,213,0 +170770123592,213,0 +170770123640,213,0 +170770123689,213,0 +170770123739,214,0 +170770123788,214,0 +170770123836,214,0 +170770123886,214,0 +170770123935,214,0 +170770123983,214,0 +170770124031,214,0 +170770124079,214,0 +170770124126,214,0 +170770124174,214,0 +170770124222,215,0 +170770124270,215,0 +170770124318,215,0 +170770124366,214,0 +170770124414,213,0 +170770124461,213,0 +170770124509,213,0 +170770124557,213,0 +170770124606,214,0 +170770124654,214,0 +170770124704,214,0 +170770124751,214,0 +170770124799,214,0 +170770124847,214,0 +170770124897,214,0 +170770124946,214,0 +170770124994,215,0 +170770125042,215,0 +170770125090,215,0 +170770125138,215,0 +170770125186,215,0 +170770125234,215,0 +170770125282,214,0 +170770125330,213,0 +170770125378,213,0 +170770125426,213,0 +170770125473,214,0 +170770125523,214,0 +170770125571,214,0 +170770125620,214,0 +170770125670,214,0 +170770125718,214,0 +170770125766,214,0 +170770125815,214,0 +170770125863,214,0 +170770125911,215,0 +170770125959,214,0 +170770126007,215,0 +170770126055,215,0 +170770126103,215,0 +170770126152,214,0 +170770126202,213,0 +170770126251,213,0 +170770126299,213,0 +170770126347,213,0 +170770126395,213,0 +170770126443,214,0 +170770126491,214,0 +170770126539,214,0 +170770126587,214,0 +170770126635,214,0 +170770126683,214,0 +170770126730,214,0 +170770126778,215,0 +170770126826,214,0 +170770126876,214,0 +170770126924,215,0 +170770126971,214,0 +170770127019,215,0 +170770127069,214,0 +170770127117,213,0 +170770127165,213,0 +170770127214,214,0 +170770127263,214,0 +170770127313,214,0 +170770127361,214,0 +170770127409,214,0 +170770127456,214,0 +170770127506,214,0 +170770127555,215,0 +170770127603,215,0 +170770127651,215,0 +170770127699,215,0 +170770127747,215,0 +170770127795,215,0 +170770127843,215,0 +170770127892,215,0 +170770127940,215,0 +170770127988,213,0 +170770128036,213,0 +170770128084,213,0 +170770128134,213,0 +170770128181,214,0 +170770128231,214,0 +170770128279,214,0 +170770128327,214,0 +170770128375,214,0 +170770128423,214,0 +170770128471,214,0 +170770128518,215,0 +170770128566,215,0 +170770128614,215,0 +170770128664,215,0 +170770128712,215,0 +170770128759,215,0 +170770128807,215,0 +170770128855,215,0 +170770128905,213,0 +170770128953,213,0 +170770129001,213,0 +170770129050,213,0 +170770129098,214,0 +170770129146,214,0 +170770129195,214,0 +170770129245,214,0 +170770129294,214,0 +170770129342,215,0 +170770129392,215,0 +170770129440,215,0 +170770129488,215,0 +170770129535,215,0 +170770129585,215,0 +170770129633,215,0 +170770129682,215,0 +170770129730,215,0 +170770129780,214,0 +170770129828,213,0 +170770129877,214,0 +170770129925,214,0 +170770129975,214,0 +170770130022,214,0 +170770130070,214,0 +170770130118,214,0 +170770130168,214,0 +170770130216,214,0 +170770130264,215,0 +170770130313,215,0 +170770130361,215,0 +170770130409,215,0 +170770130457,215,0 +170770130505,215,0 +170770130553,215,0 +170770130602,215,0 +170770130650,215,0 +170770130700,213,0 +170770130748,214,0 +170770130797,214,0 +170770130845,214,0 +170770130893,214,0 +170770130943,214,0 +170770130991,214,0 +170770131038,214,0 +170770131088,214,0 +170770131137,214,0 +170770131185,215,0 +170770131233,215,0 +170770131281,215,0 +170770131331,215,0 +170770131380,215,0 +170770131428,215,0 +170770131476,215,0 +170770131525,215,0 +170770131573,213,0 +170770131621,213,0 +170770131670,213,0 +170770131718,213,0 +170770131766,214,0 +170770131816,214,0 +170770131865,214,0 +170770131913,214,0 +170770131961,214,0 +170770132009,214,0 +170770132058,214,0 +170770132108,214,0 +170770132156,215,0 +170770132205,214,0 +170770132253,214,0 +170770132301,214,0 +170770132349,214,0 +170770132397,214,0 +170770132445,214,0 +170770132493,213,0 +170770132542,213,0 +170770132592,213,0 +170770132639,213,0 +170770132689,213,0 +170770132737,213,0 +170770132786,213,0 +170770132836,214,0 +170770132884,214,0 +170770132932,214,0 +170770132980,214,0 +170770133028,214,0 +170770133075,214,0 +170770133125,214,0 +170770133173,214,0 +170770133221,214,0 +170770133269,215,0 +170770133318,214,0 +170770133366,213,0 +170770133416,213,0 +170770133465,213,0 +170770133515,213,0 +170770133562,213,0 +170770133612,214,0 +170770133661,214,0 +170770133711,213,0 +170770133759,214,0 +170770133807,214,0 +170770133855,214,0 +170770133903,214,0 +170770133952,214,0 +170770134002,214,0 +170770134051,215,0 +170770134101,215,0 +170770134150,214,0 +170770134200,215,0 +170770134248,213,0 +170770134295,213,0 +170770134343,213,0 +170770134391,213,0 +170770134439,213,0 +170770134489,213,0 +170770134537,213,0 +170770134584,214,0 +170770134632,214,0 +170770134680,214,0 +170770134728,214,0 +170770134778,214,0 +170770134827,214,0 +170770134877,214,0 +170770134925,214,0 +170770134973,214,0 +170770135022,215,0 +170770135070,215,0 +170770135118,214,0 +170770135166,213,0 +170770135214,213,0 +170770135262,213,0 +170770135310,213,0 +170770135358,213,0 +170770135405,214,0 +170770135453,214,0 +170770135501,214,0 +170770135549,214,0 +170770135597,214,0 +170770135645,214,0 +170770135692,214,0 +170770135740,215,0 +170770135790,215,0 +170770135837,215,0 +170770135887,215,0 +170770135937,215,0 +170770135984,215,0 +170770136032,213,0 +170770136080,213,0 +170770136130,213,0 +170770136179,213,0 +170770136229,213,0 +170770136277,214,0 +170770136326,214,0 +170770136374,213,0 +170770136423,214,0 +170770136471,214,0 +170770136519,214,0 +170770136567,214,0 +170770136615,214,0 +170770136663,214,0 +170770136712,214,0 +170770136762,214,0 +170770136810,214,0 +170770136858,215,0 +170770136906,214,0 +170770136955,213,0 +170770137005,213,0 +170770137052,213,0 +170770137102,213,0 +170770137150,213,0 +170770137198,213,0 +170770137246,213,0 +170770137295,213,0 +170770137345,213,0 +170770137393,214,0 +170770137442,214,0 +170770137492,214,0 +170770137541,214,0 +170770137591,214,0 +170770137639,214,0 +170770137687,214,0 +170770137736,215,0 +170770137784,214,0 +170770137832,213,0 +170770137880,213,0 +170770137928,213,0 +170770137976,213,0 +170770138025,213,0 +170770138073,213,0 +170770138121,213,0 +170770138169,213,0 +170770138217,214,0 +170770138266,214,0 +170770138314,214,0 +170770138364,214,0 +170770138413,214,0 +170770138463,214,0 +170770138510,215,0 +170770138558,215,0 +170770138606,215,0 +170770138654,215,0 +170770138702,213,0 +170770138750,213,0 +170770138800,213,0 +170770138849,213,0 +170770138897,213,0 +170770138945,214,0 +170770138993,214,0 +170770139041,214,0 +170770139091,214,0 +170770139139,214,0 +170770139188,214,0 +170770139236,214,0 +170770139284,215,0 +170770139334,215,0 +170770139382,215,0 +170770139431,215,0 +170770139481,215,0 +170770139530,215,0 +170770139578,214,0 +170770139626,213,0 +170770139675,213,0 +170770139723,213,0 +170770139771,214,0 +170770139819,214,0 +170770139869,214,0 +170770139918,214,0 +170770139966,214,0 +170770140014,214,0 +170770140062,214,0 +170770140110,214,0 +170770140159,215,0 +170770140209,215,0 +170770140258,214,0 +170770140306,215,0 +170770140356,215,0 +170770140404,215,0 +170770140452,214,0 +170770140500,214,0 +170770140548,213,0 +170770140595,213,0 +170770140643,214,0 +170770140691,214,0 +170770140741,214,0 +170770140788,214,0 +170770140838,214,0 +170770140886,214,0 +170770140935,214,0 +170770140983,214,0 +170770141033,214,0 +170770141082,214,0 +170770141130,215,0 +170770141180,215,0 +170770141229,215,0 +170770141277,214,0 +170770141327,215,0 +170770141375,214,0 +170770141423,213,0 +170770141471,213,0 +170770141520,213,0 +170770141570,214,0 +170770141619,214,0 +170770141667,214,0 +170770141715,213,0 +170770141763,214,0 +170770141812,214,0 +170770141860,214,0 +170770141908,214,0 +170770141957,214,0 +170770142005,214,0 +170770142053,215,0 +170770142101,215,0 +170770142149,214,0 +170770142197,214,0 +170770142245,214,0 +170770142294,214,0 +170770142342,213,0 +170770142392,213,0 +170770142441,214,0 +170770142489,214,0 +170770142539,214,0 +170770142588,214,0 +170770142636,214,0 +170770142684,214,0 +170770142732,214,0 +170770142780,215,0 +170770142829,215,0 +170770142877,215,0 +170770142927,215,0 +170770142975,215,0 +170770143023,215,0 +170770143070,215,0 +170770143118,215,0 +170770143168,214,0 +170770143216,213,0 +170770143265,214,0 +170770143313,214,0 +170770143361,214,0 +170770143409,214,0 +170770143457,214,0 +170770143505,214,0 +170770143553,215,0 +170770143603,215,0 +170770143651,215,0 +170770143700,215,0 +170770143748,215,0 +170770143797,215,0 +170770143845,215,0 +170770143895,215,0 +170770143943,215,0 +170770143992,215,0 +170770144042,214,0 +170770144091,214,0 +170770144139,214,0 +170770144187,214,0 +170770144237,214,0 +170770144285,214,0 +170770144332,214,0 +170770144382,215,0 +170770144430,214,0 +170770144479,215,0 +170770144529,215,0 +170770144577,215,0 +170770144626,215,0 +170770144676,215,0 +170770144725,215,0 +170770144773,215,0 +170770144821,215,0 +170770144871,215,0 +170770144919,214,0 +170770144967,213,0 +170770145016,213,0 +170770145064,213,0 +170770145112,214,0 +170770145161,214,0 +170770145209,214,0 +170770145257,214,0 +170770145305,214,0 +170770145353,214,0 +170770145402,215,0 +170770145452,215,0 +170770145502,215,0 +170770145551,215,0 +170770145601,215,0 +170770145649,215,0 +170770145696,215,0 +170770145744,215,0 +170770145792,215,0 +170770145842,214,0 +170770145890,213,0 +170770145938,213,0 +170770145987,213,0 +170770146035,213,0 +170770146085,213,0 +170770146133,214,0 +170770146180,214,0 +170770146228,214,0 +170770146276,214,0 +170770146324,214,0 +170770146372,214,0 +170770146420,214,0 +170770146467,215,0 +170770146515,215,0 +170770146563,215,0 +170770146611,215,0 +170770146659,215,0 +170770146707,215,0 +170770146754,214,0 +170770146804,213,0 +170770146852,213,0 +170770146900,213,0 +170770146948,213,0 +170770146995,214,0 +170770147045,214,0 +170770147093,214,0 +170770147141,214,0 +170770147189,214,0 +170770147238,214,0 +170770147288,215,0 +170770147337,215,0 +170770147385,214,0 +170770147433,215,0 +170770147483,215,0 +170770147532,215,0 +170770147582,214,0 +170770147629,214,0 +170770147679,213,0 +170770147727,213,0 +170770147775,213,0 +170770147822,213,0 +170770147872,213,0 +170770147920,214,0 +170770147968,214,0 +170770148017,214,0 +170770148065,214,0 +170770148113,215,0 +170770148162,215,0 +170770148210,215,0 +170770148258,215,0 +170770148308,215,0 +170770148357,215,0 +170770148405,215,0 +170770148455,215,0 +170770148502,215,0 +170770148550,213,0 +170770148600,213,0 +170770148648,213,0 +170770148696,214,0 +170770148745,214,0 +170770148795,214,0 +170770148844,214,0 +170770148892,214,0 +170770148940,214,0 +170770148989,214,0 +170770149037,214,0 +170770149085,215,0 +170770149135,215,0 +170770149184,215,0 +170770149232,215,0 +170770149280,215,0 +170770149328,215,0 +170770149376,214,0 +170770149424,213,0 +170770149472,213,0 +170770149520,213,0 +170770149569,214,0 +170770149617,213,0 +170770149665,214,0 +170770149713,213,0 +170770149761,214,0 +170770149808,214,0 +170770149858,214,0 +170770149906,215,0 +170770149954,215,0 +170770150003,215,0 +170770150051,215,0 +170770150099,214,0 +170770150147,215,0 +170770150195,215,0 +170770150243,215,0 +170770150292,215,0 +170770150340,213,0 +170770150388,213,0 +170770150436,213,0 +170770150484,213,0 +170770150532,213,0 +170770150580,214,0 +170770150628,214,0 +170770150677,214,0 +170770150727,214,0 +170770150775,214,0 +170770150823,214,0 +170770150871,214,0 +170770150920,215,0 +170770150968,215,0 +170770151017,215,0 +170770151065,215,0 +170770151113,215,0 +170770151163,214,0 +170770151212,213,0 +170770151260,213,0 +170770151310,213,0 +170770151358,213,0 +170770151406,213,0 +170770151453,213,0 +170770151501,213,0 +170770151549,213,0 +170770151597,214,0 +170770151645,214,0 +170770151693,214,0 +170770151741,214,0 +170770151789,214,0 +170770151836,214,0 +170770151884,214,0 +170770151932,214,0 +170770151980,214,0 +170770152028,215,0 +170770152076,214,0 +170770152124,213,0 +170770152172,213,0 +170770152219,213,0 +170770152267,213,0 +170770152315,213,0 +170770152363,213,0 +170770152411,213,0 +170770152459,213,0 +170770152507,213,0 +170770152555,213,0 +170770152605,213,0 +170770152654,213,0 +170770152702,214,0 +170770152751,214,0 +170770152799,214,0 +170770152849,214,0 +170770152898,214,0 +170770152948,214,0 +170770152996,213,0 +170770153044,213,0 +170770153092,213,0 +170770153140,213,0 +170770153188,213,0 +170770153236,213,0 +170770153285,213,0 +170770153334,213,0 +170770153384,213,0 +170770153432,213,0 +170770153480,214,0 +170770153529,214,0 +170770153577,214,0 +170770153625,214,0 +170770153675,215,0 +170770153723,214,0 +170770153772,215,0 +170770153820,214,0 +170770153868,214,0 +170770153916,213,0 +170770153965,213,0 +170770154013,213,0 +170770154061,213,0 +170770154109,213,0 +170770154157,213,0 +170770154207,213,0 +170770154255,213,0 +170770154304,213,0 +170770154352,213,0 +170770154401,213,0 +170770154449,214,0 +170770154497,214,0 +170770154545,214,0 +170770154593,214,0 +170770154641,214,0 +170770154689,214,0 +170770154737,214,0 +170770154785,213,0 +170770154834,213,0 +170770154882,213,0 +170770154932,213,0 +170770154980,213,0 +170770155029,213,0 +170770155079,213,0 +170770155128,213,0 +170770155178,213,0 +170770155225,214,0 +170770155275,214,0 +170770155323,213,0 +170770155371,214,0 +170770155418,214,0 +170770155466,214,0 +170770155514,214,0 +170770155562,214,0 +170770155612,214,0 +170770155660,214,0 +170770155709,213,0 +170770155758,213,0 +170770155806,213,0 +170770155854,213,0 +170770155902,213,0 +170770155950,214,0 +170770155998,213,0 +170770156046,214,0 +170770156094,214,0 +170770156143,214,0 +170770156191,214,0 +170770156239,214,0 +170770156289,215,0 +170770156337,215,0 +170770156386,215,0 +170770156436,215,0 +170770156485,215,0 +170770156535,215,0 +170770156582,213,0 +170770156632,213,0 +170770156681,214,0 +170770156731,214,0 +170770156779,214,0 +170770156827,214,0 +170770156875,214,0 +170770156924,215,0 +170770156972,214,0 +170770157020,215,0 +170770157068,215,0 +170770157116,215,0 +170770157165,215,0 +170770157213,215,0 +170770157261,215,0 +170770157310,215,0 +170770157358,215,0 +170770157406,215,0 +170770157454,214,0 +170770157504,214,0 +170770157551,214,0 +170770157599,214,0 +170770157649,214,0 +170770157697,214,0 +170770157746,215,0 +170770157796,215,0 +170770157844,215,0 +170770157891,215,0 +170770157939,215,0 +170770157989,215,0 +170770158038,215,0 +170770158086,215,0 +170770158134,215,0 +170770158182,215,0 +170770158230,215,0 +170770158279,214,0 +170770158327,214,0 +170770158375,214,0 +170770158423,214,0 +170770158471,214,0 +170770158519,214,0 +170770158567,214,0 +170770158615,214,0 +170770158663,214,0 +170770158710,214,0 +170770158760,215,0 +170770158808,215,0 +170770158856,215,0 +170770158904,215,0 +170770158953,215,0 +170770159003,215,0 +170770159051,215,0 +170770159100,215,0 +170770159148,215,0 +170770159198,215,0 +170770159247,214,0 +170770159297,214,0 +170770159345,214,0 +170770159393,214,0 +170770159440,214,0 +170770159488,214,0 +170770159536,214,0 +170770159584,214,0 +170770159632,214,0 +170770159681,214,0 +170770159729,215,0 +170770159779,215,0 +170770159828,215,0 +170770159878,215,0 +170770159927,215,0 +170770159977,215,0 +170770160026,215,0 +170770160074,215,0 +170770160122,214,0 +170770160170,214,0 +170770160218,214,0 +170770160266,214,0 +170770160314,214,0 +170770160363,214,0 +170770160411,214,0 +170770160459,214,0 +170770160507,214,0 +170770160557,215,0 +170770160605,215,0 +170770160653,215,0 +170770160700,215,0 +170770160748,215,0 +170770160796,215,0 +170770160846,215,0 +170770160895,215,0 +170770160943,215,0 +170770160991,215,0 +170770161040,214,0 +170770161088,214,0 +170770161138,214,0 +170770161186,214,0 +170770161234,214,0 +170770161282,214,0 +170770161330,214,0 +170770161379,214,0 +170770161428,214,0 +170770161478,215,0 +170770161526,215,0 +170770161575,215,0 +170770161625,215,0 +170770161673,216,0 +170770161722,215,0 +170770161770,215,0 +170770161818,215,0 +170770161868,215,0 +170770161916,214,0 +170770161964,213,0 +170770162013,214,0 +170770162061,213,0 +170770162109,214,0 +170770162157,214,0 +170770162205,214,0 +170770162253,214,0 +170770162300,214,0 +170770162348,214,0 +170770162396,215,0 +170770162444,215,0 +170770162492,215,0 +170770162542,215,0 +170770162591,215,0 +170770162641,215,0 +170770162690,215,0 +170770162740,215,0 +170770162787,214,0 +170770162837,213,0 +170770162885,213,0 +170770162934,213,0 +170770162982,214,0 +170770163032,214,0 +170770163081,214,0 +170770163129,214,0 +170770163177,214,0 +170770163225,214,0 +170770163275,216,0 +170770163323,215,0 +170770163371,215,0 +170770163418,214,0 +170770163466,215,0 +170770163514,215,0 +170770163562,215,0 +170770163611,215,0 +170770163661,215,0 +170770163709,213,0 +170770163758,213,0 +170770163806,213,0 +170770163856,213,0 +170770163904,214,0 +170770163951,214,0 +170770164001,214,0 +170770164050,214,0 +170770164098,214,0 +170770164146,214,0 +170770164194,214,0 +170770164242,215,0 +170770164290,215,0 +170770164338,214,0 +170770164387,214,0 +170770164435,215,0 +170770164483,214,0 +170770164531,214,0 +170770164581,214,0 +170770164629,213,0 +170770164677,213,0 +170770164724,213,0 +170770164772,213,0 +170770164820,213,0 +170770164870,214,0 +170770164919,213,0 +170770164969,214,0 +170770165018,214,0 +170770165066,214,0 +170770165116,214,0 +170770165163,215,0 +170770165213,214,0 +170770165261,215,0 +170770165309,215,0 +170770165357,215,0 +170770165406,215,0 +170770165456,215,0 +170770165505,213,0 +170770165553,213,0 +170770165601,213,0 +170770165649,214,0 +170770165698,214,0 +170770165746,214,0 +170770165794,214,0 +170770165844,214,0 +170770165892,214,0 +170770165939,214,0 +170770165989,214,0 +170770166038,215,0 +170770166088,215,0 +170770166136,215,0 +170770166184,215,0 +170770166232,215,0 +170770166279,215,0 +170770166327,215,0 +170770166375,213,0 +170770166423,213,0 +170770166471,213,0 +170770166519,213,0 +170770166567,214,0 +170770166615,214,0 +170770166663,214,0 +170770166711,214,0 +170770166759,214,0 +170770166807,214,0 +170770166855,214,0 +170770166904,214,0 +170770166952,215,0 +170770167000,215,0 +170770167048,215,0 +170770167096,215,0 +170770167144,215,0 +170770167193,215,0 +170770167241,214,0 +170770167289,213,0 +170770167337,213,0 +170770167387,213,0 +170770167434,213,0 +170770167482,214,0 +170770167530,214,0 +170770167578,214,0 +170770167628,214,0 +170770167677,214,0 +170770167725,214,0 +170770167773,215,0 +170770167821,215,0 +170770167870,215,0 +170770167920,215,0 +170770167968,215,0 +170770168015,215,0 +170770168065,215,0 +170770168113,215,0 +170770168162,213,0 +170770168212,213,0 +170770168260,213,0 +170770168309,213,0 +170770168357,213,0 +170770168406,213,0 +170770168456,213,0 +170770168504,213,0 +170770168552,214,0 +170770168599,214,0 +170770168647,214,0 +170770168697,214,0 +170770168745,214,0 +170770168793,214,0 +170770168841,214,0 +170770168890,214,0 +170770168938,214,0 +170770168986,214,0 +170770169034,214,0 +170770169083,213,0 +170770169131,213,0 +170770169180,213,0 +170770169228,213,0 +170770169278,213,0 +170770169327,213,0 +170770169375,213,0 +170770169425,213,0 +170770169474,213,0 +170770169522,214,0 +170770169570,214,0 +170770169618,214,0 +170770169666,214,0 +170770169714,214,0 +170770169761,214,0 +170770169809,214,0 +170770169857,214,0 +170770169905,214,0 +170770169955,213,0 +170770170003,213,0 +170770170050,213,0 +170770170098,213,0 +170770170146,213,0 +170770170194,213,0 +170770170242,213,0 +170770170290,213,0 +170770170339,214,0 +170770170387,214,0 +170770170436,213,0 +170770170486,214,0 +170770170534,214,0 +170770170582,214,0 +170770170629,214,0 +170770170677,214,0 +170770170725,214,0 +170770170775,215,0 +170770170824,213,0 +170770170874,213,0 +170770170923,213,0 +170770170973,213,0 +170770171022,213,0 +170770171070,213,0 +170770171118,213,0 +170770171168,213,0 +170770171216,214,0 +170770171265,214,0 +170770171315,214,0 +170770171364,214,0 +170770171414,214,0 +170770171462,214,0 +170770171511,214,0 +170770171561,214,0 +170770171609,215,0 +170770171658,214,0 +170770171706,214,0 +170770171754,213,0 +170770171802,213,0 +170770171851,213,0 +170770171899,213,0 +170770171947,213,0 +170770171995,214,0 +170770172045,214,0 +170770172094,214,0 +170770172144,214,0 +170770172192,214,0 +170770172240,214,0 +170770172288,215,0 +170770172336,215,0 +170770172385,215,0 +170770172435,215,0 +170770172484,215,0 +170770172534,214,0 +170770172582,215,0 +170770172629,213,0 +170770172679,213,0 +170770172727,213,0 +170770172776,213,0 +170770172824,213,0 +170770172872,213,0 +170770172920,214,0 +170770172970,214,0 +170770173019,214,0 +170770173069,214,0 +170770173117,214,0 +170770173166,214,0 +170770173214,214,0 +170770173264,214,0 +170770173313,215,0 +170770173361,215,0 +170770173409,215,0 +170770173457,215,0 +170770173505,213,0 +170770173553,213,0 +170770173602,213,0 +170770173650,213,0 +170770173698,213,0 +170770173748,213,0 +170770173796,214,0 +170770173844,214,0 +170770173892,214,0 +170770173939,214,0 +170770173988,214,0 +170770174037,214,0 +170770174085,214,0 +170770174133,214,0 +170770174181,215,0 +170770174229,214,0 +170770174277,215,0 +170770174325,215,0 +170770174373,215,0 +170770174420,213,0 +170770174468,213,0 +170770174516,213,0 +170770174566,213,0 +170770174614,214,0 +170770174663,214,0 +170770174711,214,0 +170770174761,214,0 +170770174810,214,0 +170770174858,214,0 +170770174908,214,0 +170770174955,214,0 +170770175003,214,0 +170770175053,215,0 +170770175101,215,0 +170770175149,215,0 +170770175197,215,0 +170770175245,214,0 +170770175294,214,0 +170770175344,213,0 +170770175392,213,0 +170770175439,213,0 +170770175489,213,0 +170770175537,214,0 +170770175585,214,0 +170770175633,214,0 +170770175682,214,0 +170770175732,214,0 +170770175780,214,0 +170770175828,215,0 +170770175877,215,0 +170770175925,215,0 +170770175973,215,0 +170770176021,215,0 +170770176069,215,0 +170770176117,215,0 +170770176165,214,0 +170770176213,213,0 +170770176261,213,0 +170770176310,213,0 +170770176358,214,0 +170770176406,213,0 +170770176454,214,0 +170770176502,214,0 +170770176550,215,0 +170770176598,214,0 +170770176645,214,0 +170770176693,214,0 +170770176741,214,0 +170770176789,214,0 +170770176839,214,0 +170770176887,215,0 +170770176935,215,0 +170770176983,214,0 +170770177030,215,0 +170770177078,214,0 +170770177128,213,0 +170770177176,213,0 +170770177225,213,0 +170770177273,214,0 +170770177323,214,0 +170770177371,214,0 +170770177420,214,0 +170770177468,214,0 +170770177518,214,0 +170770177565,214,0 +170770177613,214,0 +170770177663,214,0 +170770177711,215,0 +170770177759,215,0 +170770177807,215,0 +170770177856,215,0 +170770177904,215,0 +170770177952,214,0 +170770178000,214,0 +170770178048,213,0 +170770178095,213,0 +170770178145,214,0 +170770178194,214,0 +170770178242,214,0 +170770178290,214,0 +170770178338,214,0 +170770178386,214,0 +170770178434,214,0 +170770178482,215,0 +170770178531,214,0 +170770178579,215,0 +170770178627,214,0 +170770178677,215,0 +170770178726,214,0 +170770178776,215,0 +170770178825,214,0 +170770178873,214,0 +170770178921,213,0 +170770178969,213,0 +170770179017,213,0 +170770179065,214,0 +170770179113,214,0 +170770179161,214,0 +170770179210,214,0 +170770179258,214,0 +170770179308,214,0 +170770179355,214,0 +170770179403,215,0 +170770179451,215,0 +170770179501,215,0 +170770179549,215,0 +170770179598,215,0 +170770179648,215,0 +170770179695,215,0 +170770179743,215,0 +170770179791,213,0 +170770179841,213,0 +170770179889,213,0 +170770179936,213,0 +170770179984,213,0 +170770180034,213,0 +170770180083,214,0 +170770180133,214,0 +170770180182,214,0 +170770180230,214,0 +170770180278,214,0 +170770180328,214,0 +170770180376,214,0 +170770180423,214,0 +170770180473,214,0 +170770180521,215,0 +170770180570,215,0 +170770180620,214,0 +170770180669,214,0 +170770180717,213,0 +170770180766,213,0 +170770180814,213,0 +170770180862,213,0 +170770180912,213,0 +170770180961,213,0 +170770181009,213,0 +170770181057,213,0 +170770181105,214,0 +170770181153,214,0 +170770181201,214,0 +170770181249,214,0 +170770181298,214,0 +170770181346,214,0 +170770181396,214,0 +170770181444,214,0 +170770181492,214,0 +170770181540,214,0 +170770181588,213,0 +170770181635,213,0 +170770181683,213,0 +170770181733,213,0 +170770181781,213,0 +170770181829,213,0 +170770181878,213,0 +170770181928,214,0 +170770181976,214,0 +170770182025,214,0 +170770182075,214,0 +170770182123,215,0 +170770182172,215,0 +170770182220,215,0 +170770182268,215,0 +170770182316,215,0 +170770182365,215,0 +170770182413,214,0 +170770182461,213,0 +170770182509,213,0 +170770182559,213,0 +170770182607,214,0 +170770182656,214,0 +170770182704,214,0 +170770182752,214,0 +170770182800,214,0 +170770182848,214,0 +170770182897,214,0 +170770182947,214,0 +170770182995,215,0 +170770183044,214,0 +170770183092,215,0 +170770183140,215,0 +170770183188,215,0 +170770183236,215,0 +170770183284,215,0 +170770183333,214,0 +170770183381,213,0 +170770183429,213,0 +170770183477,214,0 +170770183526,213,0 +170770183574,214,0 +170770183624,214,0 +170770183672,214,0 +170770183721,214,0 +170770183769,214,0 +170770183817,215,0 +170770183865,215,0 +170770183912,215,0 +170770183960,215,0 +170770184008,215,0 +170770184056,215,0 +170770184104,215,0 +170770184152,215,0 +170770184200,215,0 +170770184249,214,0 +170770184297,213,0 +170770184347,213,0 +170770184394,213,0 +170770184442,214,0 +170770184490,214,0 +170770184538,214,0 +170770184586,214,0 +170770184634,214,0 +170770184683,214,0 +170770184731,214,0 +170770184779,215,0 +170770184829,215,0 +170770184879,215,0 +170770184926,215,0 +170770184974,215,0 +170770185022,215,0 +170770185072,215,0 +170770185121,215,0 +170770185169,214,0 +170770185218,213,0 +170770185266,214,0 +170770185316,214,0 +170770185364,214,0 +170770185413,214,0 +170770185463,214,0 +170770185512,214,0 +170770185560,214,0 +170770185608,214,0 +170770185656,215,0 +170770185706,215,0 +170770185753,215,0 +170770185801,215,0 +170770185851,215,0 +170770185899,215,0 +170770185946,215,0 +170770185994,214,0 +170770186044,214,0 +170770186092,213,0 +170770186141,213,0 +170770186190,214,0 +170770186240,214,0 +170770186288,214,0 +170770186336,214,0 +170770186385,214,0 +170770186435,214,0 +170770186483,215,0 +170770186532,215,0 +170770186580,215,0 +170770186628,215,0 +170770186677,215,0 +170770186727,215,0 +170770186775,215,0 +170770186823,215,0 +170770186872,215,0 +170770186920,214,0 +170770186968,213,0 +170770187017,213,0 +170770187067,213,0 +170770187115,213,0 +170770187163,214,0 +170770187211,214,0 +170770187259,214,0 +170770187308,214,0 +170770187356,214,0 +170770187404,214,0 +170770187452,215,0 +170770187501,215,0 +170770187549,215,0 +170770187599,215,0 +170770187648,215,0 +170770187696,215,0 +170770187744,215,0 +170770187792,214,0 +170770187840,213,0 +170770187888,213,0 +170770187935,213,0 +170770187983,213,0 +170770188031,213,0 +170770188079,213,0 +170770188127,213,0 +170770188175,213,0 +170770188223,214,0 +170770188272,214,0 +170770188320,214,0 +170770188368,214,0 +170770188417,214,0 +170770188467,215,0 +170770188516,214,0 +170770188566,215,0 +170770188615,214,0 +170770188665,215,0 +170770188714,215,0 +170770188762,213,0 +170770188810,213,0 +170770188859,213,0 +170770188907,213,0 +170770188957,213,0 +170770189005,213,0 +170770189052,213,0 +170770189100,213,0 +170770189148,213,0 +170770189196,213,0 +170770189246,213,0 +170770189293,213,0 +170770189341,213,0 +170770189391,214,0 +170770189439,214,0 +170770189486,214,0 +170770189534,214,0 +170770189582,214,0 +170770189630,213,0 +170770189678,213,0 +170770189726,213,0 +170770189774,213,0 +170770189821,213,0 +170770189869,213,0 +170770189917,214,0 +170770189967,213,0 +170770190016,213,0 +170770190064,213,0 +170770190112,214,0 +170770190160,214,0 +170770190208,214,0 +170770190256,214,0 +170770190304,214,0 +170770190353,214,0 +170770190403,214,0 +170770190450,214,0 +170770190498,214,0 +170770190546,213,0 +170770190594,213,0 +170770190643,213,0 +170770190693,213,0 +170770190741,213,0 +170770190789,214,0 +170770190837,214,0 +170770190885,214,0 +170770190934,214,0 +170770190982,214,0 +170770191030,214,0 +170770191078,214,0 +170770191126,214,0 +170770191175,215,0 +170770191223,215,0 +170770191271,215,0 +170770191319,215,0 +170770191367,215,0 +170770191416,214,0 +170770191464,213,0 +170770191512,213,0 +170770191560,213,0 +170770191608,213,0 +170770191656,214,0 +170770191704,214,0 +170770191753,214,0 +170770191801,214,0 +170770191849,214,0 +170770191898,214,0 +170770191946,214,0 +170770191994,215,0 +170770192044,215,0 +170770192093,215,0 +170770192143,215,0 +170770192191,215,0 +170770192239,215,0 +170770192287,214,0 +170770192335,214,0 +170770192383,213,0 +170770192430,213,0 +170770192478,214,0 +170770192526,214,0 +170770192574,214,0 +170770192622,214,0 +170770192670,214,0 +170770192719,214,0 +170770192769,214,0 +170770192818,215,0 +170770192866,215,0 +170770192914,215,0 +170770192961,215,0 +170770193009,215,0 +170770193057,215,0 +170770193106,214,0 +170770193154,215,0 +170770193202,215,0 +170770193250,213,0 +170770193299,213,0 +170770193347,213,0 +170770193397,213,0 +170770193444,214,0 +170770193494,214,0 +170770193543,214,0 +170770193591,214,0 +170770193639,214,0 +170770193687,214,0 +170770193735,214,0 +170770193785,214,0 +170770193834,214,0 +170770193884,214,0 +170770193933,215,0 +170770193981,215,0 +170770194029,215,0 +170770194077,215,0 +170770194127,213,0 +170770194175,213,0 +170770194222,213,0 +170770194272,213,0 +170770194320,213,0 +170770194370,214,0 +170770194419,214,0 +170770194467,214,0 +170770194516,214,0 +170770194564,214,0 +170770194614,214,0 +170770194662,214,0 +170770194711,214,0 +170770194759,214,0 +170770194807,215,0 +170770194855,214,0 +170770194903,215,0 +170770194951,215,0 +170770195000,214,0 +170770195048,213,0 +170770195098,213,0 +170770195146,213,0 +170770195194,213,0 +170770195241,213,0 +170770195289,214,0 +170770195339,214,0 +170770195387,214,0 +170770195435,214,0 +170770195483,214,0 +170770195531,214,0 +170770195580,214,0 +170770195628,215,0 +170770195678,215,0 +170770195727,214,0 +170770195775,215,0 +170770195825,215,0 +170770195874,214,0 +170770195922,213,0 +170770195971,213,0 +170770196019,213,0 +170770196067,213,0 +170770196115,213,0 +170770196164,213,0 +170770196212,213,0 +170770196260,213,0 +170770196308,213,0 +170770196356,213,0 +170770196404,214,0 +170770196451,214,0 +170770196499,214,0 +170770196547,214,0 +170770196597,214,0 +170770196645,214,0 +170770196694,214,0 +170770196742,215,0 +170770196790,214,0 +170770196838,213,0 +170770196886,213,0 +170770196934,213,0 +170770196982,213,0 +170770197030,213,0 +170770197077,213,0 +170770197125,213,0 +170770197173,213,0 +170770197221,213,0 +170770197271,214,0 +170770197320,214,0 +170770197368,214,0 +170770197417,214,0 +170770197467,214,0 +170770197517,214,0 +170770197564,214,0 +170770197612,214,0 +170770197660,214,0 +170770197710,214,0 +170770197757,215,0 +170770197807,215,0 +170770197855,215,0 +170770197904,215,0 +170770197954,215,0 +170770198001,215,0 +170770198049,215,0 +170770198097,215,0 +170770198145,214,0 +170770198193,213,0 +170770198241,213,0 +170770198289,213,0 +170770198338,213,0 +170770198386,214,0 +170770198434,214,0 +170770198482,214,0 +170770198529,214,0 +170770198577,214,0 +170770198625,214,0 +170770198675,214,0 +170770198724,214,0 +170770198774,214,0 +170770198822,215,0 +170770198870,215,0 +170770198919,215,0 +170770198967,215,0 +170770199017,214,0 +170770199065,213,0 +170770199114,213,0 +170770199162,214,0 +170770199210,214,0 +170770199258,214,0 +170770199306,214,0 +170770199354,214,0 +170770199402,214,0 +170770199450,214,0 +170770199498,214,0 +170770199547,214,0 +170770199597,215,0 +170770199646,214,0 +170770199696,215,0 +170770199744,215,0 +170770199793,215,0 +170770199841,215,0 +170770199889,215,0 +170770199937,214,0 +170770199985,214,0 +170770200033,213,0 +170770200082,213,0 +170770200130,214,0 +170770200178,214,0 +170770200228,214,0 +170770200276,214,0 +170770200324,214,0 +170770200371,215,0 +170770200421,214,0 +170770200469,214,0 +170770200517,215,0 +170770200565,215,0 +170770200614,215,0 +170770200662,215,0 +170770200712,215,0 +170770200760,215,0 +170770200808,215,0 +170770200855,213,0 +170770200905,213,0 +170770200954,213,0 +170770201002,213,0 +170770201050,214,0 +170770201100,214,0 +170770201148,214,0 +170770201197,214,0 +170770201247,214,0 +170770201295,214,0 +170770201343,214,0 +170770201391,214,0 +170770201438,215,0 +170770201486,215,0 +170770201536,215,0 +170770201585,215,0 +170770201633,215,0 +170770201681,215,0 +170770201731,214,0 +170770201778,213,0 +170770201828,213,0 +170770201877,213,0 +170770201925,213,0 +170770201973,213,0 +170770202021,214,0 +170770202069,214,0 +170770202117,214,0 +170770202166,214,0 +170770202216,214,0 +170770202265,215,0 +170770202313,214,0 +170770202361,215,0 +170770202409,215,0 +170770202458,215,0 +170770202508,215,0 +170770202555,215,0 +170770202603,214,0 +170770202651,213,0 +170770202699,213,0 +170770202747,213,0 +170770202795,213,0 +170770202843,213,0 +170770202891,214,0 +170770202939,214,0 +170770202987,214,0 +170770203034,214,0 +170770203084,214,0 +170770203132,214,0 +170770203181,214,0 +170770203231,214,0 +170770203280,214,0 +170770203328,215,0 +170770203376,215,0 +170770203424,215,0 +170770203473,214,0 +170770203521,215,0 +170770203569,213,0 +170770203617,213,0 +170770203667,213,0 +170770203715,213,0 +170770203764,213,0 +170770203812,213,0 +170770203862,213,0 +170770203910,214,0 +170770203957,214,0 +170770204005,214,0 +170770204053,214,0 +170770204103,214,0 +170770204152,215,0 +170770204202,215,0 +170770204251,215,0 +170770204299,215,0 +170770204347,215,0 +170770204395,214,0 +170770204444,214,0 +170770204492,213,0 +170770204540,213,0 +170770204590,214,0 +170770204638,214,0 +170770204687,213,0 +170770204735,214,0 +170770204784,214,0 +170770204834,214,0 +170770204882,214,0 +170770204931,214,0 +170770204981,214,0 +170770205030,214,0 +170770205080,215,0 +170770205129,215,0 +170770205177,215,0 +170770205225,215,0 +170770205273,215,0 +170770205321,214,0 +170770205369,213,0 +170770205419,213,0 +170770205467,213,0 +170770205515,213,0 +170770205563,214,0 +170770205611,214,0 +170770205658,213,0 +170770205708,214,0 +170770205756,214,0 +170770205804,214,0 +170770205852,214,0 +170770205900,214,0 +170770205948,215,0 +170770205996,215,0 +170770206043,215,0 +170770206091,215,0 +170770206139,215,0 +170770206187,215,0 +170770206235,214,0 +170770206284,213,0 +170770206334,213,0 +170770206382,213,0 +170770206430,213,0 +170770206478,213,0 +170770206526,214,0 +170770206574,214,0 +170770206622,214,0 +170770206670,214,0 +170770206717,214,0 +170770206765,214,0 +170770206813,214,0 +170770206861,214,0 +170770206909,215,0 +170770206957,215,0 +170770207005,214,0 +170770207052,215,0 +170770207100,214,0 +170770207150,213,0 +170770207198,213,0 +170770207247,213,0 +170770207295,213,0 +170770207343,213,0 +170770207391,213,0 +170770207439,213,0 +170770207488,213,0 +170770207536,213,0 +170770207586,214,0 +170770207635,214,0 +170770207683,214,0 +170770207731,214,0 +170770207779,214,0 +170770207827,214,0 +170770207875,214,0 +170770207923,214,0 +170770207971,215,0 +170770208020,214,0 +170770208070,213,0 +170770208118,213,0 +170770208167,213,0 +170770208215,213,0 +170770208263,213,0 +170770208311,213,0 +170770208360,213,0 +170770208410,214,0 +170770208458,214,0 +170770208506,214,0 +170770208555,214,0 +170770208603,214,0 +170770208653,214,0 +170770208702,215,0 +170770208750,215,0 +170770208799,215,0 +170770208849,215,0 +170770208898,214,0 +170770208946,213,0 +170770208996,213,0 +170770209044,213,0 +170770209093,213,0 +170770209141,213,0 +170770209189,214,0 +170770209238,214,0 +170770209288,214,0 +170770209337,214,0 +170770209387,214,0 +170770209435,214,0 +170770209483,215,0 +170770209532,215,0 +170770209580,215,0 +170770209630,214,0 +170770209677,215,0 +170770209725,215,0 +170770209773,215,0 +170770209823,214,0 +170770209872,213,0 +170770209921,213,0 +170770209971,214,0 +170770210019,213,0 +170770210067,214,0 +170770210115,214,0 +170770210163,214,0 +170770210211,214,0 +170770210260,214,0 +170770210308,214,0 +170770210356,214,0 +170770210405,215,0 +170770210455,215,0 +170770210503,214,0 +170770210552,215,0 +170770210600,215,0 +170770210648,214,0 +170770210698,214,0 +170770210746,213,0 +170770210793,213,0 +170770210841,213,0 +170770210889,213,0 +170770210937,213,0 +170770210987,213,0 +170770211035,214,0 +170770211084,214,0 +170770211132,214,0 +170770211180,214,0 +170770211228,214,0 +170770211276,214,0 +170770211325,214,0 +170770211373,214,0 +170770211423,215,0 +170770211471,214,0 +170770211520,215,0 +170770211570,215,0 +170770211618,214,0 +170770211666,213,0 +170770211713,213,0 +170770211763,213,0 +170770211811,213,0 +170770211859,213,0 +170770211908,214,0 +170770211956,214,0 +170770212006,214,0 +170770212054,214,0 +170770212102,214,0 +170770212150,214,0 +170770212198,214,0 +170770212245,214,0 +170770212293,215,0 +170770212341,214,0 +170770212389,215,0 +170770212437,215,0 +170770212485,215,0 +170770212533,213,0 +170770212581,213,0 +170770212629,213,0 +170770212677,213,0 +170770212725,213,0 +170770212773,213,0 +170770212821,213,0 +170770212869,214,0 +170770212916,214,0 +170770212966,214,0 +170770213014,214,0 +170770213062,214,0 +170770213110,214,0 +170770213158,215,0 +170770213206,215,0 +170770213255,215,0 +170770213305,215,0 +170770213353,214,0 +170770213400,215,0 +170770213448,213,0 +170770213498,213,0 +170770213547,214,0 +170770213597,214,0 +170770213645,214,0 +170770213694,214,0 +170770213742,214,0 +170770213790,214,0 +170770213838,215,0 +170770213886,215,0 +170770213934,215,0 +170770213983,215,0 +170770214031,215,0 +170770214079,215,0 +170770214127,215,0 +170770214176,215,0 +170770214224,215,0 +170770214273,215,0 +170770214321,213,0 +170770214371,214,0 +170770214419,214,0 +170770214467,214,0 +170770214516,214,0 +170770214566,214,0 +170770214614,214,0 +170770214663,214,0 +170770214713,214,0 +170770214760,215,0 +170770214808,215,0 +170770214858,215,0 +170770214907,215,0 +170770214955,215,0 +170770215003,215,0 +170770215050,215,0 +170770215098,215,0 +170770215146,215,0 +170770215194,215,0 +170770215244,213,0 +170770215292,213,0 +170770215339,213,0 +170770215387,213,0 +170770215437,213,0 +170770215486,214,0 +170770215534,214,0 +170770215582,214,0 +170770215630,214,0 +170770215678,214,0 +170770215728,214,0 +170770215775,215,0 +170770215823,215,0 +170770215873,214,0 +170770215921,215,0 +170770215969,215,0 +170770216018,215,0 +170770216068,214,0 +170770216115,214,0 +170770216163,213,0 +170770216211,213,0 +170770216259,213,0 +170770216309,213,0 +170770216357,214,0 +170770216404,214,0 +170770216452,214,0 +170770216502,214,0 +170770216549,214,0 +170770216599,214,0 +170770216647,214,0 +170770216695,215,0 +170770216742,215,0 +170770216790,215,0 +170770216838,215,0 +170770216888,215,0 +170770216937,215,0 +170770216985,215,0 +170770217034,213,0 +170770217084,213,0 +170770217132,213,0 +170770217180,213,0 +170770217228,213,0 +170770217277,213,0 +170770217325,214,0 +170770217373,214,0 +170770217423,214,0 +170770217472,214,0 +170770217522,214,0 +170770217569,214,0 +170770217619,214,0 +170770217667,214,0 +170770217715,215,0 +170770217763,215,0 +170770217812,215,0 +170770217860,215,0 +170770217908,214,0 +170770217956,213,0 +170770218003,213,0 +170770218051,213,0 +170770218101,213,0 +170770218150,213,0 +170770218200,214,0 +170770218248,214,0 +170770218297,214,0 +170770218347,214,0 +170770218396,214,0 +170770218444,214,0 +170770218492,214,0 +170770218542,214,0 +170770218591,215,0 +170770218641,215,0 +170770218691,215,0 +170770218738,214,0 +170770218788,215,0 +170770218836,213,0 +170770218884,213,0 +170770218933,213,0 +170770218981,213,0 +170770219031,214,0 +170770219079,213,0 +170770219126,214,0 +170770219176,214,0 +170770219224,214,0 +170770219272,214,0 +170770219321,214,0 +170770219371,214,0 +170770219419,215,0 +170770219467,215,0 +170770219515,215,0 +170770219562,215,0 +170770219610,215,0 +170770219658,215,0 +170770219706,214,0 +170770219754,213,0 +170770219804,213,0 +170770219853,213,0 +170770219901,213,0 +170770219951,213,0 +170770220000,213,0 +170770220048,214,0 +170770220096,214,0 +170770220144,214,0 +170770220192,214,0 +170770220241,214,0 +170770220291,215,0 +170770220339,214,0 +170770220388,215,0 +170770220438,215,0 +170770220486,215,0 +170770220533,215,0 +170770220583,215,0 +170770220632,213,0 +170770220680,213,0 +170770220728,213,0 +170770220776,213,0 +170770220826,213,0 +170770220875,213,0 +170770220925,213,0 +170770220973,214,0 +170770221021,214,0 +170770221068,214,0 +170770221118,214,0 +170770221166,214,0 +170770221215,214,0 +170770221263,214,0 +170770221311,215,0 +170770221359,215,0 +170770221409,215,0 +170770221457,215,0 +170770221505,214,0 +170770221553,213,0 +170770221601,213,0 +170770221650,213,0 +170770221698,213,0 +170770221746,213,0 +170770221794,213,0 +170770221842,213,0 +170770221891,213,0 +170770221939,214,0 +170770221987,214,0 +170770222037,214,0 +170770222085,214,0 +170770222133,214,0 +170770222180,214,0 +170770222228,214,0 +170770222276,214,0 +170770222324,214,0 +170770222372,214,0 +170770222420,213,0 +170770222468,213,0 +170770222518,213,0 +170770222566,213,0 +170770222613,213,0 +170770222661,213,0 +170770222711,213,0 +170770222760,213,0 +170770222808,213,0 +170770222858,214,0 +170770222907,214,0 +170770222957,214,0 +170770223006,214,0 +170770223056,214,0 +170770223103,214,0 +170770223151,214,0 +170770223201,214,0 +170770223250,214,0 +170770223298,214,0 +170770223346,213,0 +170770223396,213,0 +170770223444,213,0 +170770223491,213,0 +170770223541,213,0 +170770223589,213,0 +170770223637,213,0 +170770223684,213,0 +170770223732,214,0 +170770223782,213,0 +170770223830,214,0 +170770223879,214,0 +170770223927,214,0 +170770223977,214,0 +170770224026,214,0 +170770224074,214,0 +170770224122,214,0 +170770224170,214,0 +170770224218,213,0 +170770224266,213,0 +170770224314,213,0 +170770224362,213,0 +170770224410,213,0 +170770224459,213,0 +170770224507,213,0 +170770224557,213,0 +170770224605,213,0 +170770224653,213,0 +170770224701,213,0 +170770224750,213,0 +170770224798,213,0 +170770224848,213,0 +170770224896,213,0 +170770224945,213,0 +170770224995,214,0 +170770225042,214,0 +170770225090,214,0 +170770225138,213,0 +170770225188,213,0 +170770225237,213,0 +170770225287,213,0 +170770225336,213,0 +170770225384,213,0 +170770225434,213,0 +170770225483,213,0 +170770225531,213,0 +170770225581,213,0 +170770225631,213,0 +170770225678,214,0 +170770225726,214,0 +170770225776,214,0 +170770225824,214,0 +170770225873,214,0 +170770225923,214,0 +170770225971,214,0 +170770226019,213,0 +170770226067,213,0 +170770226116,213,0 +170770226166,213,0 +170770226215,213,0 +170770226265,214,0 +170770226314,213,0 +170770226362,214,0 +170770226410,214,0 +170770226458,214,0 +170770226506,214,0 +170770226554,214,0 +170770226603,215,0 +170770226653,214,0 +170770226701,215,0 +170770226749,215,0 +170770226797,215,0 +170770226845,215,0 +170770226894,214,0 +170770226943,213,0 +170770226993,214,0 +170770227043,214,0 +170770227090,214,0 +170770227138,214,0 +170770227186,214,0 +170770227236,214,0 +170770227284,214,0 +170770227333,214,0 +170770227381,214,0 +170770227431,214,0 +170770227480,215,0 +170770227528,215,0 +170770227578,215,0 +170770227626,215,0 +170770227674,215,0 +170770227722,214,0 +170770227771,215,0 +170770227819,214,0 +170770227867,214,0 +170770227915,214,0 +170770227965,214,0 +170770228013,214,0 +170770228062,214,0 +170770228110,214,0 +170770228160,214,0 +170770228208,214,0 +170770228255,215,0 +170770228305,215,0 +170770228353,215,0 +170770228402,215,0 +170770228452,215,0 +170770228500,215,0 +170770228548,215,0 +170770228596,215,0 +170770228644,214,0 +170770228693,214,0 +170770228741,214,0 +170770228789,214,0 +170770228837,214,0 +170770228885,214,0 +170770228933,214,0 +170770228982,214,0 +170770229030,214,0 +170770229078,214,0 +170770229125,214,0 +170770229173,215,0 +170770229221,215,0 +170770229269,215,0 +170770229317,215,0 +170770229364,215,0 +170770229412,215,0 +170770229460,215,0 +170770229508,215,0 +170770229556,215,0 +170770229604,214,0 +170770229651,214,0 +170770229699,214,0 +170770229747,214,0 +170770229795,214,0 +170770229843,214,0 +170770229891,214,0 +170770229938,214,0 +170770229986,215,0 +170770230036,215,0 +170770230084,215,0 +170770230133,215,0 +170770230181,215,0 +170770230229,215,0 +170770230277,215,0 +170770230326,215,0 +170770230376,215,0 +170770230424,215,0 +170770230472,214,0 +170770230520,214,0 +170770230569,214,0 +170770230619,214,0 +170770230667,214,0 +170770230715,214,0 +170770230764,214,0 +170770230814,214,0 +170770230862,215,0 +170770230911,215,0 +170770230959,215,0 +170770231007,215,0 +170770231057,215,0 +170770231104,215,0 +170770231152,215,0 +170770231200,215,0 +170770231248,215,0 +170770231296,215,0 +170770231344,214,0 +170770231394,213,0 +170770231442,213,0 +170770231491,214,0 +170770231539,214,0 +170770231587,214,0 +170770231637,214,0 +170770231685,214,0 +170770231733,214,0 +170770231781,214,0 +170770231829,215,0 +170770231877,215,0 +170770231924,214,0 +170770231974,215,0 +170770232022,215,0 +170770232070,215,0 +170770232119,215,0 +170770232169,215,0 +170770232217,215,0 +170770232266,214,0 +170770232314,213,0 +170770232362,213,0 +170770232410,213,0 +170770232458,213,0 +170770232508,213,0 +170770232555,214,0 +170770232603,214,0 +170770232653,214,0 +170770232701,214,0 +170770232748,214,0 +170770232796,214,0 +170770232844,214,0 +170770232892,214,0 +170770232942,215,0 +170770232990,215,0 +170770233039,215,0 +170770233087,215,0 +170770233135,214,0 +170770233183,213,0 +170770233231,213,0 +170770233279,213,0 +170770233327,213,0 +170770233376,213,0 +170770233424,214,0 +170770233474,214,0 +170770233523,214,0 +170770233573,214,0 +170770233622,214,0 +170770233672,214,0 +170770233721,214,0 +170770233771,214,0 +170770233819,215,0 +170770233866,215,0 +170770233914,215,0 +170770233964,215,0 +170770234012,214,0 +170770234060,214,0 +170770234109,213,0 +170770234159,213,0 +170770234208,213,0 +170770234256,213,0 +170770234304,213,0 +170770234354,214,0 +170770234402,214,0 +170770234449,214,0 +170770234497,214,0 +170770234545,214,0 +170770234593,214,0 +170770234641,214,0 +170770234689,214,0 +170770234737,215,0 +170770234785,215,0 +170770234833,215,0 +170770234881,215,0 +170770234930,214,0 +170770234978,213,0 +170770235028,213,0 +170770235076,213,0 +170770235124,213,0 +170770235173,213,0 +170770235223,213,0 +170770235272,214,0 +170770235320,214,0 +170770235368,214,0 +170770235416,214,0 +170770235464,214,0 +170770235512,214,0 +170770235560,214,0 +170770235609,214,0 +170770235657,214,0 +170770235705,214,0 +170770235755,215,0 +170770235804,214,0 +170770235852,214,0 +170770235900,213,0 +170770235948,213,0 +170770235996,213,0 +170770236044,213,0 +170770236092,213,0 +170770236140,213,0 +170770236189,214,0 +170770236239,214,0 +170770236288,214,0 +170770236338,214,0 +170770236386,214,0 +170770236434,214,0 +170770236482,214,0 +170770236529,215,0 +170770236577,215,0 +170770236625,215,0 +170770236675,215,0 +170770236724,214,0 +170770236772,213,0 +170770236820,213,0 +170770236868,213,0 +170770236916,213,0 +170770236966,213,0 +170770237014,213,0 +170770237063,213,0 +170770237111,214,0 +170770237159,214,0 +170770237207,214,0 +170770237255,214,0 +170770237303,214,0 +170770237351,214,0 +170770237400,214,0 +170770237450,215,0 +170770237497,214,0 +170770237545,214,0 +170770237595,214,0 +170770237643,214,0 +170770237692,213,0 +170770237740,213,0 +170770237790,212,0 +170770237839,213,0 +170770237889,213,0 +170770237937,213,0 +170770237986,213,0 +170770238034,213,0 +170770238082,213,0 +170770238132,213,0 +170770238181,213,0 +170770238231,213,0 +170770238280,213,0 +170770238330,214,0 +170770238378,214,0 +170770238427,214,0 +170770238477,214,0 +170770238525,215,0 +170770238573,213,0 +170770238621,213,0 +170770238669,213,0 +170770238718,213,0 +170770238766,213,0 +170770238814,213,0 +170770238862,213,0 +170770238910,213,0 +170770238957,213,0 +170770239005,213,0 +170770239053,214,0 +170770239101,214,0 +170770239149,214,0 +170770239197,214,0 +170770239245,214,0 +170770239293,214,0 +170770239342,214,0 +170770239390,214,0 +170770239438,214,0 +170770239487,213,0 +170770239537,213,0 +170770239585,213,0 +170770239633,213,0 +170770239682,213,0 +170770239730,213,0 +170770239778,213,0 +170770239826,213,0 +170770239874,214,0 +170770239923,214,0 +170770239973,214,0 +170770240021,214,0 +170770240069,214,0 +170770240117,215,0 +170770240165,214,0 +170770240213,215,0 +170770240262,215,0 +170770240310,214,0 +170770240358,214,0 +170770240407,213,0 +170770240455,213,0 +170770240503,213,0 +170770240553,213,0 +170770240602,213,0 +170770240652,213,0 +170770240701,213,0 +170770240749,213,0 +170770240799,214,0 +170770240847,214,0 +170770240896,214,0 +170770240944,214,0 +170770240993,214,0 +170770241041,214,0 +170770241091,214,0 +170770241140,215,0 +170770241188,214,0 +170770241236,215,0 +170770241284,213,0 +170770241334,213,0 +170770241382,213,0 +170770241430,213,0 +170770241478,213,0 +170770241527,214,0 +170770241577,214,0 +170770241625,214,0 +170770241674,214,0 +170770241722,214,0 +170770241770,214,0 +170770241818,214,0 +170770241866,214,0 +170770241914,215,0 +170770241962,215,0 +170770242010,215,0 +170770242059,215,0 +170770242107,215,0 +170770242155,214,0 +170770242205,213,0 +170770242253,213,0 +170770242300,213,0 +170770242350,213,0 +170770242398,214,0 +170770242446,214,0 +170770242494,214,0 +170770242542,214,0 +170770242590,214,0 +170770242638,214,0 +170770242687,214,0 +170770242737,214,0 +170770242786,214,0 +170770242835,215,0 +170770242885,215,0 +170770242933,215,0 +170770242982,215,0 +170770243030,215,0 +170770243080,213,0 +170770243129,213,0 +170770243177,213,0 +170770243225,213,0 +170770243274,214,0 +170770243322,214,0 +170770243372,214,0 +170770243420,214,0 +170770243469,214,0 +170770243517,214,0 +170770243565,214,0 +170770243615,214,0 +170770243663,214,0 +170770243712,215,0 +170770243760,215,0 +170770243808,215,0 +170770243856,214,0 +170770243905,215,0 +170770243953,214,0 +170770244001,213,0 +170770244049,213,0 +170770244099,213,0 +170770244148,214,0 +170770244196,214,0 +170770244244,214,0 +170770244292,214,0 +170770244340,214,0 +170770244390,214,0 +170770244438,214,0 +170770244487,215,0 +170770244535,215,0 +170770244583,215,0 +170770244631,215,0 +170770244679,215,0 +170770244728,215,0 +170770244776,214,0 +170770244824,215,0 +170770244874,213,0 +170770244921,213,0 +170770244969,213,0 +170770245017,213,0 +170770245065,213,0 +170770245113,214,0 +170770245161,213,0 +170770245209,214,0 +170770245257,214,0 +170770245306,214,0 +170770245354,214,0 +170770245402,214,0 +170770245450,214,0 +170770245499,215,0 +170770245547,214,0 +170770245596,214,0 +170770245644,214,0 +170770245694,214,0 +170770245742,214,0 +170770245790,213,0 +170770245839,213,0 +170770245889,213,0 +170770245937,213,0 +170770245984,213,0 +170770246034,213,0 +170770246083,214,0 +170770246133,213,0 +170770246181,214,0 +170770246230,214,0 +170770246280,214,0 +170770246329,214,0 +170770246377,214,0 +170770246425,214,0 +170770246473,214,0 +170770246521,214,0 +170770246569,214,0 +170770246616,214,0 +170770246664,213,0 +170770246714,213,0 +170770246763,213,0 +170770246811,213,0 +170770246859,213,0 +170770246907,213,0 +170770246955,214,0 +170770247003,214,0 +170770247051,214,0 +170770247099,214,0 +170770247147,214,0 +170770247194,214,0 +170770247242,214,0 +170770247290,214,0 +170770247338,214,0 +170770247386,214,0 +170770247435,214,0 +170770247483,215,0 +170770247531,214,0 +170770247579,213,0 +170770247629,213,0 +170770247676,213,0 +170770247724,214,0 +170770247774,214,0 +170770247823,214,0 +170770247873,214,0 +170770247921,214,0 +170770247968,214,0 +170770248016,214,0 +170770248066,214,0 +170770248115,214,0 +170770248163,215,0 +170770248212,215,0 +170770248260,215,0 +170770248310,215,0 +170770248358,215,0 +170770248405,215,0 +170770248453,214,0 +170770248503,214,0 +170770248551,214,0 +170770248599,214,0 +170770248646,214,0 +170770248694,214,0 +170770248742,214,0 +170770248790,214,0 +170770248838,214,0 +170770248886,215,0 +170770248933,215,0 +170770248981,215,0 +170770249031,215,0 +170770249079,215,0 +170770249126,215,0 +170770249174,215,0 +170770249224,215,0 +170770249272,215,0 +170770249320,214,0 +170770249369,214,0 +170770249417,214,0 +170770249465,214,0 +170770249513,214,0 +170770249560,214,0 +170770249608,214,0 +170770249656,214,0 +170770249704,214,0 +170770249752,214,0 +170770249800,215,0 +170770249848,215,0 +170770249896,215,0 +170770249944,215,0 +170770249991,215,0 +170770250039,215,0 +170770250087,215,0 +170770250135,215,0 +170770250183,214,0 +170770250231,214,0 +170770250280,213,0 +170770250328,213,0 +170770250376,214,0 +170770250424,214,0 +170770250472,214,0 +170770250520,214,0 +170770250567,214,0 +170770250615,214,0 +170770250663,215,0 +170770250711,215,0 +170770250759,214,0 +170770250807,215,0 +170770250855,215,0 +170770250903,215,0 +170770250950,215,0 +170770251000,215,0 +170770251048,215,0 +170770251096,215,0 +170770251143,213,0 +170770251191,213,0 +170770251239,213,0 +170770251287,213,0 +170770251335,213,0 +170770251383,213,0 +170770251431,213,0 +170770251478,213,0 +170770251526,214,0 +170770251574,214,0 +170770251624,214,0 +170770251671,214,0 +170770251719,214,0 +170770251767,214,0 +170770251815,214,0 +170770251863,214,0 +170770251912,214,0 +170770251960,214,0 +170770252008,215,0 +170770252056,213,0 +170770252104,213,0 +170770252152,213,0 +170770252199,213,0 +170770252247,213,0 +170770252295,214,0 +170770252343,214,0 +170770252393,214,0 +170770252441,214,0 +170770252490,214,0 +170770252538,214,0 +170770252586,214,0 +170770252634,214,0 +170770252684,214,0 +170770252731,214,0 +170770252781,214,0 +170770252829,214,0 +170770252877,214,0 +170770252925,213,0 +170770252974,213,0 +170770253022,213,0 +170770253070,213,0 +170770253118,213,0 +170770253166,213,0 +170770253214,213,0 +170770253262,214,0 +170770253310,214,0 +170770253358,214,0 +170770253407,214,0 +170770253455,214,0 +170770253503,214,0 +170770253553,214,0 +170770253600,215,0 +170770253650,215,0 +170770253698,215,0 +170770253746,215,0 +170770253795,215,0 +170770253845,213,0 +170770253893,213,0 +170770253941,213,0 +170770253989,213,0 +170770254037,213,0 +170770254085,213,0 +170770254133,213,0 +170770254181,213,0 +170770254230,214,0 +170770254278,214,0 +170770254326,214,0 +170770254375,214,0 +170770254423,214,0 +170770254471,214,0 +170770254519,214,0 +170770254569,214,0 +170770254617,214,0 +170770254665,214,0 +170770254712,214,0 +170770254762,213,0 +170770254810,213,0 +170770254858,213,0 +170770254906,213,0 +170770254954,213,0 +170770255002,213,0 +170770255051,214,0 +170770255099,214,0 +170770255147,214,0 +170770255195,214,0 +170770255243,214,0 +170770255293,214,0 +170770255341,214,0 +170770255390,214,0 +170770255438,215,0 +170770255487,215,0 +170770255535,214,0 +170770255585,214,0 +170770255633,213,0 +170770255681,213,0 +170770255729,213,0 +170770255778,213,0 +170770255826,213,0 +170770255876,213,0 +170770255924,214,0 +170770255973,214,0 +170770256021,214,0 +170770256069,214,0 +170770256119,214,0 +170770256167,215,0 +170770256214,214,0 +170770256264,215,0 +170770256314,215,0 +170770256361,215,0 +170770256409,215,0 +170770256459,215,0 +170770256506,214,0 +170770256554,213,0 +170770256602,213,0 +170770256650,213,0 +170770256698,214,0 +170770256746,214,0 +170770256794,214,0 +170770256841,214,0 +170770256891,214,0 +170770256939,214,0 +170770256986,214,0 +170770257034,214,0 +170770257082,215,0 +170770257130,215,0 +170770257178,215,0 +170770257226,215,0 +170770257274,215,0 +170770257323,215,0 +170770257372,214,0 +170770257420,213,0 +170770257468,213,0 +170770257518,213,0 +170770257567,213,0 +170770257615,214,0 +170770257665,214,0 +170770257714,214,0 +170770257762,214,0 +170770257812,214,0 +170770257861,214,0 +170770257911,214,0 +170770257959,215,0 +170770258007,215,0 +170770258055,215,0 +170770258104,215,0 +170770258152,215,0 +170770258201,215,0 +170770258249,215,0 +170770258299,213,0 +170770258348,213,0 +170770258396,213,0 +170770258446,213,0 +170770258495,213,0 +170770258545,214,0 +170770258594,214,0 +170770258642,214,0 +170770258692,214,0 +170770258740,214,0 +170770258789,214,0 +170770258837,214,0 +170770258885,214,0 +170770258933,215,0 +170770258982,215,0 +170770259030,215,0 +170770259078,215,0 +170770259128,215,0 +170770259175,214,0 +170770259223,213,0 +170770259273,213,0 +170770259322,213,0 +170770259370,213,0 +170770259418,213,0 +170770259466,213,0 +170770259515,214,0 +170770259563,214,0 +170770259611,214,0 +170770259659,214,0 +170770259706,214,0 +170770259754,214,0 +170770259804,215,0 +170770259853,215,0 +170770259901,215,0 +170770259949,215,0 +170770259998,215,0 +170770260046,214,0 +170770260094,214,0 +170770260142,213,0 +170770260190,213,0 +170770260238,213,0 +170770260287,213,0 +170770260337,213,0 +170770260386,213,0 +170770260436,213,0 +170770260485,213,0 +170770260533,213,0 +170770260583,213,0 +170770260630,214,0 +170770260678,214,0 +170770260726,214,0 +170770260774,214,0 +170770260822,214,0 +170770260870,214,0 +170770260918,214,0 +170770260966,214,0 +170770261015,213,0 +170770261063,213,0 +170770261111,213,0 +170770261161,213,0 +170770261210,213,0 +170770261258,213,0 +170770261308,213,0 +170770261356,213,0 +170770261404,213,0 +170770261451,214,0 +170770261499,214,0 +170770261549,214,0 +170770261597,214,0 +170770261645,214,0 +170770261694,214,0 +170770261742,215,0 +170770261790,215,0 +170770261838,215,0 +170770261886,214,0 +170770261934,213,0 +170770261983,213,0 +170770262031,213,0 +170770262079,213,0 +170770262129,214,0 +170770262178,214,0 +170770262226,214,0 +170770262274,214,0 +170770262324,214,0 +170770262372,214,0 +170770262421,214,0 +170770262471,214,0 +170770262519,215,0 +170770262568,214,0 +170770262617,215,0 +170770262665,214,0 +170770262715,215,0 +170770262764,214,0 +170770262814,213,0 +170770262862,213,0 +170770262910,213,0 +170770262958,214,0 +170770263007,213,0 +170770263055,214,0 +170770263105,214,0 +170770263153,214,0 +170770263200,214,0 +170770263248,214,0 +170770263298,215,0 +170770263348,214,0 +170770263395,215,0 +170770263443,215,0 +170770263491,215,0 +170770263541,215,0 +170770263589,215,0 +170770263638,214,0 +170770263686,213,0 +170770263735,213,0 +170770263785,213,0 +170770263835,213,0 +170770263882,213,0 +170770263930,213,0 +170770263980,213,0 +170770264029,214,0 +170770264079,214,0 +170770264129,214,0 +170770264177,214,0 +170770264226,214,0 +170770264274,214,0 +170770264324,214,0 +170770264372,215,0 +170770264421,214,0 +170770264470,214,0 +170770264518,215,0 +170770264566,214,0 +170770264616,213,0 +170770264664,213,0 +170770264712,213,0 +170770264761,213,0 +170770264811,213,0 +170770264859,213,0 +170770264907,213,0 +170770264956,214,0 +170770265004,214,0 +170770265052,214,0 +170770265102,214,0 +170770265151,214,0 +170770265201,214,0 +170770265248,214,0 +170770265296,214,0 +170770265344,215,0 +170770265392,215,0 +170770265440,214,0 +170770265488,213,0 +170770265538,213,0 +170770265587,213,0 +170770265635,213,0 +170770265683,213,0 +170770265731,213,0 +170770265779,214,0 +170770265827,214,0 +170770265876,214,0 +170770265926,214,0 +170770265974,214,0 +170770266023,214,0 +170770266073,214,0 +170770266121,215,0 +170770266171,215,0 +170770266220,214,0 +170770266268,215,0 +170770266316,215,0 +170770266364,213,0 +170770266412,213,0 +170770266460,213,0 +170770266508,213,0 +170770266555,214,0 +170770266603,214,0 +170770266651,214,0 +170770266699,214,0 +170770266747,214,0 +170770266795,214,0 +170770266843,214,0 +170770266891,214,0 +170770266940,215,0 +170770266988,214,0 +170770267036,215,0 +170770267084,215,0 +170770267132,215,0 +170770267180,215,0 +170770267228,214,0 +170770267276,213,0 +170770267323,213,0 +170770267371,213,0 +170770267421,213,0 +170770267470,213,0 +170770267520,214,0 +170770267567,214,0 +170770267617,214,0 +170770267665,214,0 +170770267713,214,0 +170770267761,214,0 +170770267810,214,0 +170770267858,215,0 +170770267907,215,0 +170770267955,215,0 +170770268003,215,0 +170770268053,215,0 +170770268101,215,0 +170770268149,214,0 +170770268197,213,0 +170770268245,213,0 +170770268292,213,0 +170770268340,213,0 +170770268388,213,0 +170770268436,214,0 +170770268484,214,0 +170770268532,214,0 +170770268580,214,0 +170770268629,214,0 +170770268679,214,0 +170770268727,214,0 +170770268775,214,0 +170770268824,215,0 +170770268873,214,0 +170770268923,214,0 +170770268971,214,0 +170770269019,214,0 +170770269068,213,0 +170770269116,213,0 +170770269164,213,0 +170770269212,213,0 +170770269260,213,0 +170770269307,213,0 +170770269357,214,0 +170770269405,213,0 +170770269453,214,0 +170770269502,214,0 +170770269550,214,0 +170770269598,214,0 +170770269646,214,0 +170770269694,214,0 +170770269742,214,0 +170770269790,214,0 +170770269838,215,0 +170770269885,214,0 +170770269933,214,0 +170770269983,213,0 +170770270031,213,0 +170770270080,213,0 +170770270128,213,0 +170770270176,213,0 +170770270225,214,0 +170770270275,214,0 +170770270323,214,0 +170770270371,214,0 +170770270419,214,0 +170770270467,214,0 +170770270515,214,0 +170770270564,214,0 +170770270612,215,0 +170770270660,215,0 +170770270708,215,0 +170770270756,215,0 +170770270805,214,0 +170770270853,213,0 +170770270901,213,0 +170770270949,213,0 +170770270997,213,0 +170770271046,213,0 +170770271094,214,0 +170770271144,214,0 +170770271192,214,0 +170770271241,214,0 +170770271289,214,0 +170770271337,214,0 +170770271385,214,0 +170770271433,215,0 +170770271481,215,0 +170770271529,215,0 +170770271577,215,0 +170770271625,215,0 +170770271673,215,0 +170770271721,215,0 +170770271769,213,0 +170770271817,213,0 +170770271865,213,0 +170770271913,214,0 +170770271961,214,0 +170770272010,214,0 +170770272058,214,0 +170770272106,214,0 +170770272155,214,0 +170770272203,214,0 +170770272251,215,0 +170770272299,215,0 +170770272347,215,0 +170770272395,215,0 +170770272442,215,0 +170770272490,215,0 +170770272538,215,0 +170770272586,215,0 +170770272636,214,0 +170770272684,213,0 +170770272731,214,0 +170770272779,213,0 +170770272829,214,0 +170770272877,214,0 +170770272926,214,0 +170770272976,214,0 +170770273025,214,0 +170770273073,215,0 +170770273121,215,0 +170770273169,215,0 +170770273217,215,0 +170770273266,215,0 +170770273314,215,0 +170770273362,215,0 +170770273412,215,0 +170770273460,214,0 +170770273508,214,0 +170770273555,214,0 +170770273603,214,0 +170770273651,214,0 +170770273701,213,0 +170770273749,214,0 +170770273796,214,0 +170770273846,214,0 +170770273894,214,0 +170770273942,215,0 +170770273991,215,0 +170770274039,215,0 +170770274087,215,0 +170770274135,215,0 +170770274183,215,0 +170770274231,215,0 +170770274279,215,0 +170770274326,215,0 +170770274376,214,0 +170770274425,214,0 +170770274473,213,0 +170770274523,213,0 +170770274571,213,0 +170770274619,213,0 +170770274668,213,0 +170770274716,214,0 +170770274764,214,0 +170770274812,214,0 +170770274861,214,0 +170770274911,215,0 +170770274959,214,0 +170770275007,214,0 +170770275055,215,0 +170770275103,215,0 +170770275151,215,0 +170770275200,215,0 +170770275248,215,0 +170770275296,214,0 +170770275344,213,0 +170770275392,213,0 +170770275440,213,0 +170770275488,213,0 +170770275536,213,0 +170770275584,214,0 +170770275632,214,0 +170770275680,214,0 +170770275728,214,0 +170770275777,214,0 +170770275825,214,0 +170770275873,214,0 +170770275921,214,0 +170770275969,215,0 +170770276018,214,0 +170770276066,215,0 +170770276114,215,0 +170770276164,215,0 +170770276212,213,0 +170770276259,213,0 +170770276309,213,0 +170770276357,213,0 +170770276405,213,0 +170770276453,213,0 +170770276502,214,0 +170770276550,213,0 +170770276600,214,0 +170770276648,214,0 +170770276695,214,0 +170770276745,214,0 +170770276795,214,0 +170770276842,215,0 +170770276892,215,0 +170770276940,215,0 +170770276989,215,0 +170770277039,215,0 +170770277087,214,0 +170770277135,213,0 +170770277183,213,0 +170770277231,213,0 +170770277278,213,0 +170770277326,213,0 +170770277374,213,0 +170770277424,213,0 +170770277473,214,0 +170770277521,214,0 +170770277569,214,0 +170770277619,214,0 +170770277667,214,0 +170770277714,214,0 +170770277764,214,0 +170770277813,214,0 +170770277863,214,0 +170770277911,214,0 +170770277959,214,0 +170770278008,214,0 +170770278056,213,0 +170770278104,213,0 +170770278152,213,0 +170770278200,213,0 +170770278248,213,0 +170770278297,213,0 +170770278347,213,0 +170770278395,213,0 +170770278444,214,0 +170770278494,213,0 +170770278542,214,0 +170770278590,214,0 +170770278638,214,0 +170770278686,214,0 +170770278734,214,0 +170770278783,214,0 +170770278831,214,0 +170770278879,214,0 +170770278927,213,0 +170770278975,213,0 +170770279023,213,0 +170770279072,213,0 +170770279122,213,0 +170770279170,213,0 +170770279219,213,0 +170770279269,213,0 +170770279318,213,0 +170770279366,213,0 +170770279416,213,0 +170770279464,213,0 +170770279511,214,0 +170770279559,214,0 +170770279607,214,0 +170770279655,214,0 +170770279703,214,0 +170770279753,214,0 +170770279801,214,0 +170770279849,213,0 +170770279898,213,0 +170770279946,214,0 +170770279994,214,0 +170770280044,214,0 +170770280093,214,0 +170770280143,214,0 +170770280191,214,0 +170770280240,214,0 +170770280290,214,0 +170770280337,215,0 +170770280387,215,0 +170770280435,215,0 +170770280483,215,0 +170770280531,215,0 +170770280580,215,0 +170770280630,215,0 +170770280679,214,0 +170770280727,213,0 +170770280777,213,0 +170770280825,214,0 +170770280873,214,0 +170770280920,214,0 +170770280968,214,0 +170770281016,214,0 +170770281066,214,0 +170770281115,214,0 +170770281163,215,0 +170770281211,215,0 +170770281259,215,0 +170770281307,215,0 +170770281356,215,0 +170770281404,215,0 +170770281452,215,0 +170770281500,215,0 +170770281548,214,0 +170770281598,213,0 +170770281646,213,0 +170770281695,213,0 +170770281743,213,0 +170770281793,213,0 +170770281840,214,0 +170770281888,214,0 +170770281938,214,0 +170770281986,214,0 +170770282035,214,0 +170770282083,214,0 +170770282133,214,0 +170770282181,214,0 +170770282229,214,0 +170770282277,214,0 +170770282325,214,0 +170770282373,215,0 +170770282422,214,0 +170770282472,214,0 +170770282520,213,0 +170770282569,213,0 +170770282617,213,0 +170770282665,213,0 +170770282714,214,0 +170770282762,213,0 +170770282810,214,0 +170770282860,214,0 +170770282908,214,0 +170770282957,214,0 +170770283007,214,0 +170770283055,214,0 +170770283103,214,0 +170770283151,214,0 +170770283200,215,0 +170770283248,215,0 +170770283296,215,0 +170770283344,215,0 +170770283393,213,0 +170770283443,213,0 +170770283491,213,0 +170770283540,213,0 +170770283590,213,0 +170770283638,214,0 +170770283685,214,0 +170770283733,214,0 +170770283781,214,0 +170770283829,215,0 +170770283877,214,0 +170770283925,214,0 +170770283973,214,0 +170770284020,214,0 +170770284068,215,0 +170770284116,215,0 +170770284164,215,0 +170770284214,215,0 +170770284263,214,0 +170770284313,213,0 +170770284362,213,0 +170770284410,213,0 +170770284458,213,0 +170770284507,213,0 +170770284555,214,0 +170770284603,214,0 +170770284651,214,0 +170770284699,214,0 +170770284747,214,0 +170770284795,214,0 +170770284843,215,0 +170770284893,215,0 +170770284942,215,0 +170770284990,215,0 +170770285040,215,0 +170770285088,215,0 +170770285137,214,0 +170770285185,213,0 +170770285235,213,0 +170770285283,213,0 +170770285331,213,0 +170770285378,214,0 +170770285426,214,0 +170770285474,214,0 +170770285522,214,0 +170770285571,214,0 +170770285619,214,0 +170770285667,215,0 +170770285715,215,0 +170770285764,215,0 +170770285812,215,0 +170770285860,215,0 +170770285908,215,0 +170770285956,215,0 +170770286006,215,0 +170770286055,214,0 +170770286103,213,0 +170770286153,213,0 +170770286200,213,0 +170770286248,214,0 +170770286296,214,0 +170770286346,214,0 +170770286393,214,0 +170770286441,214,0 +170770286491,214,0 +170770286539,214,0 +170770286587,215,0 +170770286635,215,0 +170770286683,215,0 +170770286730,215,0 +170770286780,215,0 +170770286828,215,0 +170770286876,215,0 +170770286924,215,0 +170770286971,213,0 +170770287021,213,0 +170770287069,213,0 +170770287117,213,0 +170770287164,213,0 +170770287212,213,0 +170770287260,214,0 +170770287308,214,0 +170770287356,214,0 +170770287403,214,0 +170770287451,214,0 +170770287499,214,0 +170770287547,214,0 +170770287595,214,0 +170770287643,215,0 +170770287690,215,0 +170770287738,215,0 +170770287786,215,0 +170770287834,215,0 +170770287882,213,0 +170770287930,213,0 +170770287977,213,0 +170770288025,213,0 +170770288075,213,0 +170770288123,213,0 +170770288171,214,0 +170770288220,214,0 +170770288268,214,0 +170770288316,214,0 +170770288364,214,0 +170770288411,214,0 +170770288459,214,0 +170770288507,215,0 +170770288555,215,0 +170770288602,215,0 +170770288650,215,0 +170770288698,214,0 +170770288746,215,0 +170770288794,213,0 +170770288842,213,0 +170770288891,213,0 +170770288939,213,0 +170770288988,213,0 +170770289036,213,0 +170770289084,213,0 +170770289134,213,0 +170770289183,213,0 +170770289231,214,0 +170770289281,214,0 +170770289329,214,0 +170770289378,214,0 +170770289426,214,0 +170770289476,214,0 +170770289525,214,0 +170770289573,214,0 +170770289621,214,0 +170770289669,213,0 +170770289717,213,0 +170770289765,213,0 +170770289814,213,0 +170770289862,213,0 +170770289910,213,0 +170770289959,214,0 +170770290007,214,0 +170770290055,214,0 +170770290105,214,0 +170770290153,214,0 +170770290201,214,0 +170770290249,214,0 +170770290298,214,0 +170770290346,215,0 +170770290394,214,0 +170770290442,215,0 +170770290489,214,0 +170770290537,214,0 +170770290587,213,0 +170770290635,213,0 +170770290682,213,0 +170770290732,213,0 +170770290781,213,0 +170770290829,214,0 +170770290877,214,0 +170770290927,214,0 +170770290975,214,0 +170770291024,214,0 +170770291072,214,0 +170770291121,215,0 +170770291171,215,0 +170770291219,215,0 +170770291268,214,0 +170770291316,215,0 +170770291364,214,0 +170770291412,215,0 +170770291461,213,0 +170770291509,213,0 +170770291559,213,0 +170770291607,213,0 +170770291655,213,0 +170770291703,213,0 +170770291751,213,0 +170770291799,213,0 +170770291847,213,0 +170770291895,213,0 +170770291942,214,0 +170770291990,214,0 +170770292038,214,0 +170770292088,214,0 +170770292137,214,0 +170770292185,214,0 +170770292233,215,0 +170770292281,214,0 +170770292329,214,0 +170770292378,213,0 +170770292426,213,0 +170770292474,213,0 +170770292523,213,0 +170770292573,214,0 +170770292622,214,0 +170770292670,214,0 +170770292720,214,0 +170770292770,214,0 +170770292819,214,0 +170770292869,214,0 +170770292917,214,0 +170770292966,215,0 +170770293014,215,0 +170770293064,215,0 +170770293112,215,0 +170770293161,215,0 +170770293209,215,0 +170770293258,213,0 +170770293306,213,0 +170770293354,213,0 +170770293404,213,0 +170770293453,213,0 +170770293501,213,0 +170770293551,213,0 +170770293600,214,0 +170770293650,214,0 +170770293698,214,0 +170770293745,214,0 +170770293793,214,0 +170770293841,214,0 +170770293889,214,0 +170770293937,214,0 +170770293985,215,0 +170770294033,214,0 +170770294081,215,0 +170770294129,215,0 +170770294178,213,0 +170770294227,213,0 +170770294275,213,0 +170770294323,213,0 +170770294372,213,0 +170770294420,213,0 +170770294468,213,0 +170770294518,214,0 +170770294566,214,0 +170770294614,214,0 +170770294661,214,0 +170770294709,215,0 +170770294759,215,0 +170770294807,215,0 +170770294856,214,0 +170770294904,214,0 +170770294952,215,0 +170770295002,214,0 +170770295051,213,0 +170770295099,213,0 +170770295147,213,0 +170770295195,213,0 +170770295244,213,0 +170770295294,213,0 +170770295341,213,0 +170770295389,214,0 +170770295437,214,0 +170770295485,214,0 +170770295533,214,0 +170770295581,214,0 +170770295628,214,0 +170770295676,214,0 +170770295724,214,0 +170770295772,214,0 +170770295820,215,0 +170770295868,214,0 +170770295917,214,0 +170770295965,213,0 +170770296013,213,0 +170770296061,213,0 +170770296109,213,0 +170770296156,213,0 +170770296204,213,0 +170770296252,213,0 +170770296300,213,0 +170770296348,213,0 +170770296397,213,0 +170770296445,213,0 +170770296493,213,0 +170770296541,214,0 +170770296589,214,0 +170770296636,214,0 +170770296684,214,0 +170770296734,214,0 +170770296782,214,0 +170770296831,214,0 +170770296881,213,0 +170770296929,213,0 +170770296977,213,0 +170770297025,213,0 +170770297073,214,0 +170770297120,214,0 +170770297168,214,0 +170770297216,214,0 +170770297264,214,0 +170770297311,214,0 +170770297359,215,0 +170770297407,215,0 +170770297455,215,0 +170770297503,215,0 +170770297551,215,0 +170770297598,215,0 +170770297648,215,0 +170770297696,214,0 +170770297744,213,0 +170770297793,213,0 +170770297843,213,0 +170770297892,214,0 +170770297941,214,0 +170770297991,214,0 +170770298039,214,0 +170770298087,214,0 +170770298135,214,0 +170770298184,214,0 +170770298232,214,0 +170770298280,214,0 +170770298328,215,0 +170770298376,215,0 +170770298426,215,0 +170770298474,215,0 +170770298523,215,0 +170770298573,214,0 +170770298620,214,0 +170770298668,213,0 +170770298716,213,0 +170770298764,214,0 +170770298811,214,0 +170770298859,214,0 +170770298907,214,0 +170770298955,214,0 +170770299003,214,0 +170770299051,214,0 +170770299099,214,0 +170770299146,214,0 +170770299196,214,0 +170770299244,214,0 +170770299293,214,0 +170770299341,214,0 +170770299389,214,0 +170770299439,214,0 +170770299488,214,0 +170770299538,213,0 +170770299585,213,0 +170770299633,213,0 +170770299681,214,0 +170770299729,213,0 +170770299777,214,0 +170770299825,214,0 +170770299873,214,0 +170770299921,214,0 +170770299969,214,0 +170770300016,214,0 +170770300064,214,0 +170770300114,214,0 +170770300163,214,0 +170770300211,214,0 +170770300261,215,0 +170770300309,215,0 +170770300357,215,0 +170770300404,214,0 +170770300452,213,0 +170770300502,213,0 +170770300550,214,0 +170770300598,214,0 +170770300646,214,0 +170770300695,214,0 +170770300743,214,0 +170770300793,214,0 +170770300840,214,0 +170770300888,214,0 +170770300936,215,0 +170770300984,215,0 +170770301034,215,0 +170770301081,215,0 +170770301131,215,0 +170770301179,215,0 +170770301228,215,0 +170770301278,214,0 +170770301326,214,0 +170770301375,214,0 +170770301425,214,0 +170770301473,214,0 +170770301520,214,0 +170770301570,214,0 +170770301618,214,0 +170770301667,214,0 +170770301717,215,0 +170770301765,215,0 +170770301814,215,0 +170770301862,215,0 +170770301910,215,0 +170770301958,215,0 +170770302007,215,0 +170770302055,215,0 +170770302105,215,0 +170770302152,215,0 +170770302202,214,0 +170770302250,214,0 +170770302298,214,0 +170770302346,214,0 +170770302395,214,0 +170770302443,214,0 +170770302491,214,0 +170770302539,214,0 +170770302587,214,0 +170770302634,215,0 +170770302682,215,0 +170770302730,215,0 +170770302778,215,0 +170770302826,215,0 +170770302876,215,0 +170770302923,215,0 +170770302971,215,0 +170770303019,215,0 +170770303069,214,0 +170770303117,214,0 +170770303166,214,0 +170770303216,214,0 +170770303264,214,0 +170770303312,214,0 +170770303360,214,0 +170770303409,214,0 +170770303459,214,0 +170770303508,214,0 +170770303556,214,0 +170770303604,214,0 +170770303652,215,0 +170770303700,215,0 +170770303749,215,0 +170770303799,214,0 +170770303847,215,0 +170770303896,214,0 +170770303944,215,0 +170770303994,214,0 +170770304042,213,0 +170770304091,213,0 +170770304139,213,0 +170770304188,214,0 +170770304236,213,0 +170770304284,214,0 +170770304332,214,0 +170770304380,214,0 +170770304428,214,0 +170770304476,214,0 +170770304525,214,0 +170770304573,215,0 +170770304621,215,0 +170770304671,215,0 +170770304719,215,0 +170770304767,215,0 +170770304815,215,0 +170770304863,214,0 +170770304911,213,0 +170770304959,213,0 +170770305007,214,0 +170770305054,213,0 +170770305102,214,0 +170770305150,214,0 +170770305200,214,0 +170770305249,214,0 +170770305297,214,0 +170770305345,214,0 +170770305393,214,0 +170770305441,214,0 +170770305490,214,0 +170770305539,214,0 +170770305587,214,0 +170770305635,214,0 +170770305683,215,0 +170770305731,215,0 +170770305779,213,0 +170770305827,213,0 +170770305874,213,0 +170770305922,213,0 +170770305972,213,0 +170770306021,214,0 +170770306069,214,0 +170770306119,214,0 +170770306167,214,0 +170770306215,214,0 +170770306262,214,0 +170770306310,215,0 +170770306358,215,0 +170770306406,215,0 +170770306454,214,0 +170770306502,215,0 +170770306550,215,0 +170770306597,214,0 +170770306645,214,0 +170770306693,214,0 +170770306743,213,0 +170770306792,214,0 +170770306840,214,0 +170770306888,214,0 +170770306936,214,0 +170770306985,214,0 +170770307035,214,0 +170770307083,214,0 +170770307131,214,0 +170770307179,214,0 +170770307228,215,0 +170770307276,215,0 +170770307325,215,0 +170770307373,215,0 +170770307421,215,0 +170770307469,215,0 +170770307517,215,0 +170770307566,214,0 +170770307614,213,0 +170770307662,213,0 +170770307710,213,0 +170770307758,213,0 +170770307806,213,0 +170770307854,214,0 +170770307903,214,0 +170770307951,214,0 +170770307999,214,0 +170770308047,214,0 +170770308095,214,0 +170770308142,215,0 +170770308190,215,0 +170770308238,215,0 +170770308286,215,0 +170770308334,215,0 +170770308382,215,0 +170770308430,214,0 +170770308478,213,0 +170770308527,213,0 +170770308575,213,0 +170770308625,213,0 +170770308674,213,0 +170770308724,213,0 +170770308772,213,0 +170770308819,213,0 +170770308869,213,0 +170770308918,214,0 +170770308968,214,0 +170770309016,214,0 +170770309065,214,0 +170770309115,214,0 +170770309163,214,0 +170770309210,214,0 +170770309258,215,0 +170770309308,214,0 +170770309356,213,0 +170770309404,213,0 +170770309451,213,0 +170770309499,213,0 +170770309549,213,0 +170770309597,213,0 +170770309645,213,0 +170770309692,213,0 +170770309742,214,0 +170770309790,214,0 +170770309839,214,0 +170770309887,214,0 +170770309937,214,0 +170770309986,214,0 +170770310036,214,0 +170770310083,214,0 +170770310133,214,0 +170770310181,214,0 +170770310229,214,0 +170770310277,213,0 +170770310325,213,0 +170770310373,213,0 +170770310422,213,0 +170770310472,213,0 +170770310519,213,0 +170770310567,213,0 +170770310615,213,0 +170770310665,213,0 +170770310713,214,0 +170770310762,214,0 +170770310810,214,0 +170770310858,214,0 +170770310906,214,0 +170770310954,214,0 +170770311004,215,0 +170770311051,214,0 +170770311099,215,0 +170770311147,213,0 +170770311195,213,0 +170770311243,213,0 +170770311291,213,0 +170770311339,213,0 +170770311387,213,0 +170770311435,213,0 +170770311483,213,0 +170770311531,214,0 +170770311579,214,0 +170770311628,214,0 +170770311676,214,0 +170770311726,214,0 +170770311775,214,0 +170770311823,214,0 +170770311871,214,0 +170770311919,214,0 +170770311967,214,0 +170770312015,214,0 +170770312063,213,0 +170770312111,213,0 +170770312159,213,0 +170770312207,213,0 +170770312255,213,0 +170770312303,213,0 +170770312351,213,0 +170770312399,213,0 +170770312448,214,0 +170770312496,214,0 +170770312546,214,0 +170770312595,214,0 +170770312643,214,0 +170770312691,214,0 +170770312740,214,0 +170770312790,214,0 +170770312839,214,0 +170770312887,214,0 +170770312937,213,0 +170770312986,213,0 +170770313036,213,0 +170770313083,213,0 +170770313131,213,0 +170770313179,213,0 +170770313229,213,0 +170770313276,213,0 +170770313324,213,0 +170770313372,214,0 +170770313422,214,0 +170770313470,214,0 +170770313519,214,0 +170770313568,214,0 +170770313618,214,0 +170770313667,214,0 +170770313715,214,0 +170770313765,214,0 +170770313814,214,0 +170770313862,213,0 +170770313912,213,0 +170770313960,213,0 +170770314008,213,0 +170770314057,213,0 +170770314105,213,0 +170770314153,214,0 +170770314203,214,0 +170770314252,214,0 +170770314300,214,0 +170770314350,214,0 +170770314398,214,0 +170770314447,215,0 +170770314497,215,0 +170770314545,215,0 +170770314593,215,0 +170770314640,215,0 +170770314688,215,0 +170770314736,214,0 +170770314784,214,0 +170770314832,214,0 +170770314881,214,0 +170770314929,214,0 +170770314977,214,0 +170770315025,214,0 +170770315073,214,0 +170770315122,214,0 +170770315170,215,0 +170770315218,215,0 +170770315266,215,0 +170770315314,215,0 +170770315361,215,0 +170770315409,215,0 +170770315457,215,0 +170770315505,215,0 +170770315555,215,0 +170770315602,214,0 +170770315650,214,0 +170770315698,214,0 +170770315747,214,0 +170770315795,214,0 +170770315843,214,0 +170770315891,214,0 +170770315939,214,0 +170770315987,215,0 +170770316036,215,0 +170770316084,214,0 +170770316134,215,0 +170770316182,215,0 +170770316231,215,0 +170770316279,215,0 +170770316327,215,0 +170770316375,215,0 +170770316424,214,0 +170770316472,214,0 +170770316522,214,0 +170770316570,213,0 +170770316618,213,0 +170770316667,214,0 +170770316715,213,0 +170770316765,214,0 +170770316814,214,0 +170770316862,214,0 +170770316912,214,0 +170770316960,214,0 +170770317008,214,0 +170770317056,215,0 +170770317105,215,0 +170770317155,215,0 +170770317204,215,0 +170770317252,215,0 +170770317300,215,0 +170770317349,215,0 +170770317397,214,0 +170770317445,213,0 +170770317493,213,0 +170770317541,214,0 +170770317589,214,0 +170770317637,214,0 +170770317685,214,0 +170770317733,214,0 +170770317782,214,0 +170770317830,214,0 +170770317880,215,0 +170770317927,214,0 +170770317977,215,0 +170770318025,215,0 +170770318074,215,0 +170770318124,215,0 +170770318172,215,0 +170770318220,215,0 +170770318269,214,0 +170770318317,214,0 +170770318365,214,0 +170770318413,214,0 +170770318461,214,0 +170770318509,214,0 +170770318557,214,0 +170770318605,214,0 +170770318653,215,0 +170770318700,215,0 +170770318748,215,0 +170770318796,215,0 +170770318844,215,0 +170770318893,215,0 +170770318941,215,0 +170770318989,215,0 +170770319037,215,0 +170770319085,215,0 +170770319132,215,0 +170770319180,214,0 +170770319230,214,0 +170770319277,214,0 +170770319325,214,0 +170770319373,214,0 +170770319423,214,0 +170770319471,214,0 +170770319520,215,0 +170770319568,215,0 +170770319616,215,0 +170770319665,215,0 +170770319715,215,0 +170770319763,215,0 +170770319811,215,0 +170770319860,215,0 +170770319908,215,0 +170770319956,215,0 +170770320005,215,0 diff --git a/laser_value/0212-12.csv b/laser_value/0212-12.csv new file mode 100644 index 0000000..1ee2bf1 --- /dev/null +++ b/laser_value/0212-12.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170770320054,214,0 +170770320102,214,0 +170770320151,213,0 +170770320199,214,0 +170770320247,214,0 +170770320295,214,0 +170770320343,214,0 +170770320390,214,0 +170770320438,214,0 +170770320486,214,0 +170770320534,214,0 +170770320582,214,0 +170770320631,215,0 +170770320679,215,0 +170770320727,215,0 +170770320775,215,0 +170770320822,215,0 +170770320872,215,0 +170770320920,214,0 +170770320967,213,0 +170770321015,213,0 +170770321063,213,0 +170770321111,213,0 +170770321159,213,0 +170770321207,214,0 +170770321255,214,0 +170770321304,214,0 +170770321354,214,0 +170770321402,214,0 +170770321450,214,0 +170770321497,214,0 +170770321547,215,0 +170770321595,215,0 +170770321643,215,0 +170770321691,215,0 +170770321739,215,0 +170770321788,215,0 +170770321836,215,0 +170770321885,213,0 +170770321935,213,0 +170770321984,213,0 +170770322032,213,0 +170770322080,213,0 +170770322128,214,0 +170770322176,214,0 +170770322223,214,0 +170770322271,214,0 +170770322319,214,0 +170770322367,214,0 +170770322415,214,0 +170770322463,215,0 +170770322511,215,0 +170770322558,215,0 +170770322606,215,0 +170770322654,215,0 +170770322702,215,0 +170770322750,214,0 +170770322798,213,0 +170770322847,213,0 +170770322895,213,0 +170770322943,213,0 +170770322991,213,0 +170770323039,214,0 +170770323087,214,0 +170770323134,214,0 +170770323184,214,0 +170770323234,214,0 +170770323283,215,0 +170770323331,214,0 +170770323379,214,0 +170770323429,214,0 +170770323477,215,0 +170770323524,215,0 +170770323572,215,0 +170770323620,214,0 +170770323668,213,0 +170770323716,213,0 +170770323764,213,0 +170770323814,213,0 +170770323863,213,0 +170770323913,213,0 +170770323961,213,0 +170770324008,213,0 +170770324056,213,0 +170770324104,214,0 +170770324154,214,0 +170770324202,214,0 +170770324250,214,0 +170770324298,214,0 +170770324346,214,0 +170770324394,214,0 +170770324443,214,0 +170770324491,215,0 +170770324539,214,0 +170770324587,213,0 +170770324635,213,0 +170770324685,213,0 +170770324734,213,0 +170770324784,213,0 +170770324832,213,0 +170770324881,213,0 +170770324929,213,0 +170770324977,213,0 +170770325025,213,0 +170770325073,214,0 +170770325122,214,0 +170770325172,214,0 +170770325220,214,0 +170770325268,214,0 +170770325317,214,0 +170770325365,214,0 +170770325415,214,0 +170770325462,213,0 +170770325512,213,0 +170770325561,213,0 +170770325611,213,0 +170770325659,213,0 +170770325707,213,0 +170770325754,214,0 +170770325802,214,0 +170770325850,214,0 +170770325898,214,0 +170770325946,214,0 +170770325994,214,0 +170770326041,214,0 +170770326091,214,0 +170770326140,214,0 +170770326190,214,0 +170770326239,215,0 +170770326287,214,0 +170770326335,213,0 +170770326383,213,0 +170770326432,213,0 +170770326482,213,0 +170770326530,214,0 +170770326578,214,0 +170770326627,214,0 +170770326675,214,0 +170770326723,214,0 +170770326771,214,0 +170770326819,214,0 +170770326866,215,0 +170770326916,215,0 +170770326964,215,0 +170770327011,215,0 +170770327059,215,0 +170770327107,215,0 +170770327157,215,0 +170770327206,214,0 +170770327254,213,0 +170770327302,213,0 +170770327350,213,0 +170770327397,213,0 +170770327445,214,0 +170770327495,214,0 +170770327543,214,0 +170770327591,214,0 +170770327638,214,0 +170770327686,214,0 +170770327734,214,0 +170770327784,214,0 +170770327832,214,0 +170770327880,215,0 +170770327929,215,0 +170770327977,215,0 +170770328026,215,0 +170770328074,215,0 +170770328124,214,0 +170770328172,213,0 +170770328221,213,0 +170770328269,213,0 +170770328319,214,0 +170770328366,214,0 +170770328416,214,0 +170770328464,214,0 +170770328513,214,0 +170770328563,214,0 +170770328611,214,0 +170770328659,214,0 +170770328707,215,0 +170770328755,215,0 +170770328802,215,0 +170770328850,215,0 +170770328898,215,0 +170770328946,215,0 +170770328994,214,0 +170770329042,213,0 +170770329090,213,0 +170770329138,214,0 +170770329186,214,0 +170770329233,214,0 +170770329281,214,0 +170770329329,214,0 +170770329379,214,0 +170770329426,214,0 +170770329474,214,0 +170770329524,214,0 +170770329572,214,0 +170770329621,215,0 +170770329669,214,0 +170770329717,214,0 +170770329765,215,0 +170770329814,215,0 +170770329864,215,0 +170770329913,214,0 +170770329961,213,0 +170770330009,213,0 +170770330057,214,0 +170770330105,214,0 +170770330153,214,0 +170770330201,214,0 +170770330249,214,0 +170770330298,214,0 +170770330346,214,0 +170770330396,214,0 +170770330444,214,0 +170770330493,215,0 +170770330541,215,0 +170770330591,215,0 +170770330639,215,0 +170770330686,215,0 +170770330734,215,0 +170770330782,214,0 +170770330830,213,0 +170770330878,213,0 +170770330926,213,0 +170770330974,213,0 +170770331024,213,0 +170770331073,214,0 +170770331123,214,0 +170770331171,214,0 +170770331218,214,0 +170770331266,214,0 +170770331314,214,0 +170770331362,214,0 +170770331410,215,0 +170770331458,215,0 +170770331506,215,0 +170770331556,215,0 +170770331604,214,0 +170770331653,215,0 +170770331703,214,0 +170770331751,213,0 +170770331800,213,0 +170770331848,213,0 +170770331897,213,0 +170770331947,214,0 +170770331995,214,0 +170770332044,214,0 +170770332094,214,0 +170770332142,214,0 +170770332189,214,0 +170770332237,214,0 +170770332285,215,0 +170770332335,215,0 +170770332383,215,0 +170770332431,215,0 +170770332480,214,0 +170770332528,215,0 +170770332577,214,0 +170770332625,213,0 +170770332673,213,0 +170770332723,214,0 +170770332771,213,0 +170770332818,214,0 +170770332868,214,0 +170770332916,214,0 +170770332964,214,0 +170770333011,214,0 +170770333059,214,0 +170770333107,214,0 +170770333155,214,0 +170770333203,215,0 +170770333251,214,0 +170770333299,215,0 +170770333347,215,0 +170770333395,214,0 +170770333443,214,0 +170770333492,213,0 +170770333540,213,0 +170770333590,213,0 +170770333638,213,0 +170770333685,214,0 +170770333733,214,0 +170770333781,214,0 +170770333831,214,0 +170770333880,214,0 +170770333928,214,0 +170770333978,214,0 +170770334026,214,0 +170770334073,214,0 +170770334121,214,0 +170770334169,215,0 +170770334219,215,0 +170770334267,215,0 +170770334316,214,0 +170770334364,214,0 +170770334412,213,0 +170770334460,213,0 +170770334509,213,0 +170770334557,213,0 +170770334607,213,0 +170770334655,213,0 +170770334703,213,0 +170770334752,213,0 +170770334802,213,0 +170770334850,214,0 +170770334899,214,0 +170770334947,214,0 +170770334995,214,0 +170770335043,214,0 +170770335091,214,0 +170770335139,214,0 +170770335187,214,0 +170770335236,214,0 +170770335284,214,0 +170770335332,213,0 +170770335381,213,0 +170770335429,213,0 +170770335477,214,0 +170770335526,214,0 +170770335574,214,0 +170770335624,214,0 +170770335672,214,0 +170770335721,214,0 +170770335769,214,0 +170770335819,214,0 +170770335868,214,0 +170770335916,215,0 +170770335964,215,0 +170770336012,215,0 +170770336060,215,0 +170770336109,215,0 +170770336157,214,0 +170770336205,213,0 +170770336255,213,0 +170770336304,213,0 +170770336352,213,0 +170770336400,213,0 +170770336448,214,0 +170770336496,213,0 +170770336544,214,0 +170770336593,214,0 +170770336641,214,0 +170770336691,214,0 +170770336739,214,0 +170770336787,215,0 +170770336834,215,0 +170770336882,215,0 +170770336932,214,0 +170770336980,215,0 +170770337029,214,0 +170770337077,214,0 +170770337127,213,0 +170770337174,213,0 +170770337222,213,0 +170770337270,214,0 +170770337318,214,0 +170770337366,214,0 +170770337416,214,0 +170770337463,214,0 +170770337511,214,0 +170770337561,215,0 +170770337609,215,0 +170770337658,215,0 +170770337708,215,0 +170770337756,215,0 +170770337804,215,0 +170770337853,215,0 +170770337901,215,0 +170770337949,214,0 +170770337997,213,0 +170770338045,213,0 +170770338093,213,0 +170770338142,214,0 +170770338190,214,0 +170770338238,214,0 +170770338287,214,0 +170770338335,214,0 +170770338384,214,0 +170770338432,214,0 +170770338480,214,0 +170770338530,215,0 +170770338579,214,0 +170770338627,215,0 +170770338676,215,0 +170770338724,215,0 +170770338772,215,0 +170770338820,214,0 +170770338868,213,0 +170770338916,213,0 +170770338963,213,0 +170770339011,213,0 +170770339059,214,0 +170770339107,214,0 +170770339155,214,0 +170770339203,214,0 +170770339250,214,0 +170770339300,214,0 +170770339348,214,0 +170770339396,215,0 +170770339443,215,0 +170770339491,215,0 +170770339541,215,0 +170770339589,215,0 +170770339637,215,0 +170770339685,215,0 +170770339733,214,0 +170770339780,213,0 +170770339830,213,0 +170770339879,213,0 +170770339929,213,0 +170770339978,213,0 +170770340026,214,0 +170770340074,214,0 +170770340124,214,0 +170770340173,214,0 +170770340223,214,0 +170770340271,214,0 +170770340319,214,0 +170770340367,215,0 +170770340415,215,0 +170770340463,215,0 +170770340511,215,0 +170770340559,215,0 +170770340607,215,0 +170770340654,214,0 +170770340702,213,0 +170770340750,213,0 +170770340800,213,0 +170770340848,213,0 +170770340896,213,0 +170770340944,213,0 +170770340992,214,0 +170770341040,214,0 +170770341088,214,0 +170770341135,214,0 +170770341183,214,0 +170770341231,214,0 +170770341279,214,0 +170770341327,214,0 +170770341375,215,0 +170770341425,214,0 +170770341473,215,0 +170770341520,215,0 +170770341570,213,0 +170770341619,213,0 +170770341669,213,0 +170770341718,213,0 +170770341766,213,0 +170770341816,213,0 +170770341864,213,0 +170770341913,213,0 +170770341961,214,0 +170770342009,214,0 +170770342057,214,0 +170770342105,214,0 +170770342153,215,0 +170770342202,215,0 +170770342252,214,0 +170770342301,215,0 +170770342349,215,0 +170770342397,214,0 +170770342445,213,0 +170770342493,213,0 +170770342541,213,0 +170770342588,213,0 +170770342636,213,0 +170770342686,213,0 +170770342734,213,0 +170770342783,214,0 +170770342831,213,0 +170770342881,214,0 +170770342930,214,0 +170770342978,214,0 +170770343028,214,0 +170770343077,214,0 +170770343127,214,0 +170770343175,214,0 +170770343223,214,0 +170770343270,215,0 +170770343318,214,0 +170770343366,213,0 +170770343414,213,0 +170770343463,213,0 +170770343513,213,0 +170770343561,213,0 +170770343609,214,0 +170770343658,214,0 +170770343706,214,0 +170770343756,214,0 +170770343805,214,0 +170770343855,214,0 +170770343903,214,0 +170770343952,215,0 +170770344000,215,0 +170770344048,214,0 +170770344096,215,0 +170770344144,215,0 +170770344192,214,0 +170770344240,213,0 +170770344289,213,0 +170770344339,213,0 +170770344387,213,0 +170770344434,213,0 +170770344483,213,0 +170770344530,214,0 +170770344578,214,0 +170770344626,214,0 +170770344674,214,0 +170770344722,214,0 +170770344772,214,0 +170770344820,214,0 +170770344868,215,0 +170770344917,215,0 +170770344967,215,0 +170770345015,215,0 +170770345063,215,0 +170770345112,214,0 +170770345160,213,0 +170770345210,213,0 +170770345259,213,0 +170770345307,213,0 +170770345355,213,0 +170770345403,213,0 +170770345451,214,0 +170770345500,214,0 +170770345548,214,0 +170770345596,214,0 +170770345646,215,0 +170770345694,214,0 +170770345742,215,0 +170770345791,214,0 +170770345841,215,0 +170770345890,215,0 +170770345938,215,0 +170770345986,215,0 +170770346034,213,0 +170770346082,213,0 +170770346131,213,0 +170770346181,213,0 +170770346228,213,0 +170770346276,213,0 +170770346326,213,0 +170770346374,214,0 +170770346422,213,0 +170770346470,214,0 +170770346519,214,0 +170770346567,214,0 +170770346616,214,0 +170770346664,214,0 +170770346712,214,0 +170770346760,214,0 +170770346810,214,0 +170770346858,214,0 +170770346906,215,0 +170770346953,214,0 +170770347003,215,0 +170770347051,214,0 +170770347100,215,0 +170770347148,215,0 +170770347198,215,0 +170770347246,215,0 +170770347295,215,0 +170770347345,214,0 +170770347393,213,0 +170770347440,213,0 +170770347488,213,0 +170770347536,213,0 +170770347586,214,0 +170770347635,213,0 +170770347685,213,0 +170770347733,213,0 +170770347781,213,0 +170770347830,214,0 +170770347880,214,0 +170770347928,214,0 +170770347977,214,0 +170770348025,214,0 +170770348073,215,0 +170770348121,214,0 +170770348169,214,0 +170770348218,214,0 +170770348268,213,0 +170770348317,213,0 +170770348365,213,0 +170770348414,213,0 +170770348462,213,0 +170770348512,213,0 +170770348560,214,0 +170770348608,214,0 +170770348657,214,0 +170770348705,214,0 +170770348753,214,0 +170770348803,214,0 +170770348851,215,0 +170770348898,215,0 +170770348946,215,0 +170770348996,215,0 +170770349044,215,0 +170770349092,215,0 +170770349140,214,0 +170770349188,213,0 +170770349237,213,0 +170770349285,213,0 +170770349333,213,0 +170770349381,214,0 +170770349429,214,0 +170770349476,214,0 +170770349526,214,0 +170770349574,214,0 +170770349622,214,0 +170770349670,214,0 +170770349719,214,0 +170770349769,215,0 +170770349818,215,0 +170770349868,215,0 +170770349915,215,0 +170770349963,215,0 +170770350013,214,0 +170770350061,213,0 +170770350110,213,0 +170770350158,213,0 +170770350207,213,0 +170770350257,214,0 +170770350305,214,0 +170770350352,214,0 +170770350402,214,0 +170770350450,214,0 +170770350499,214,0 +170770350547,214,0 +170770350597,214,0 +170770350644,214,0 +170770350692,215,0 +170770350742,214,0 +170770350791,215,0 +170770350839,214,0 +170770350887,215,0 +170770350936,214,0 +170770350984,213,0 +170770351032,213,0 +170770351081,213,0 +170770351129,214,0 +170770351179,213,0 +170770351227,214,0 +170770351275,213,0 +170770351324,214,0 +170770351372,214,0 +170770351420,214,0 +170770351469,214,0 +170770351519,214,0 +170770351567,214,0 +170770351616,214,0 +170770351664,215,0 +170770351712,215,0 +170770351760,215,0 +170770351810,214,0 +170770351859,213,0 +170770351909,213,0 +170770351957,213,0 +170770352005,213,0 +170770352052,213,0 +170770352100,213,0 +170770352148,213,0 +170770352196,214,0 +170770352244,214,0 +170770352294,214,0 +170770352343,214,0 +170770352391,214,0 +170770352439,214,0 +170770352487,214,0 +170770352535,214,0 +170770352583,215,0 +170770352631,214,0 +170770352680,215,0 +170770352728,214,0 +170770352778,213,0 +170770352826,213,0 +170770352875,213,0 +170770352925,213,0 +170770352972,213,0 +170770353022,213,0 +170770353070,214,0 +170770353118,214,0 +170770353167,214,0 +170770353215,214,0 +170770353264,214,0 +170770353312,214,0 +170770353360,214,0 +170770353408,214,0 +170770353456,214,0 +170770353505,215,0 +170770353553,214,0 +170770353601,214,0 +170770353651,213,0 +170770353699,213,0 +170770353747,213,0 +170770353795,213,0 +170770353843,213,0 +170770353890,213,0 +170770353938,213,0 +170770353986,214,0 +170770354036,214,0 +170770354084,214,0 +170770354133,214,0 +170770354183,214,0 +170770354231,214,0 +170770354278,214,0 +170770354326,215,0 +170770354374,215,0 +170770354422,214,0 +170770354470,215,0 +170770354518,214,0 +170770354567,213,0 +170770354615,213,0 +170770354663,213,0 +170770354711,214,0 +170770354759,214,0 +170770354808,214,0 +170770354856,214,0 +170770354906,214,0 +170770354954,214,0 +170770355003,214,0 +170770355051,214,0 +170770355101,215,0 +170770355150,215,0 +170770355198,215,0 +170770355248,215,0 +170770355297,215,0 +170770355345,214,0 +170770355394,214,0 +170770355442,213,0 +170770355492,213,0 +170770355541,213,0 +170770355589,213,0 +170770355639,213,0 +170770355688,213,0 +170770355738,214,0 +170770355786,213,0 +170770355835,214,0 +170770355885,214,0 +170770355933,214,0 +170770355981,214,0 +170770356030,214,0 +170770356078,214,0 +170770356126,214,0 +170770356174,214,0 +170770356221,214,0 +170770356269,214,0 +170770356317,214,0 +170770356365,213,0 +170770356415,213,0 +170770356464,213,0 +170770356514,213,0 +170770356563,213,0 +170770356611,213,0 +170770356659,213,0 +170770356707,213,0 +170770356756,214,0 +170770356804,214,0 +170770356852,214,0 +170770356900,214,0 +170770356948,214,0 +170770356997,214,0 +170770357045,215,0 +170770357095,215,0 +170770357144,215,0 +170770357194,214,0 +170770357241,213,0 +170770357291,213,0 +170770357340,213,0 +170770357388,213,0 +170770357436,213,0 +170770357484,214,0 +170770357532,214,0 +170770357580,214,0 +170770357628,214,0 +170770357676,214,0 +170770357724,214,0 +170770357771,215,0 +170770357821,215,0 +170770357870,215,0 +170770357920,215,0 +170770357969,215,0 +170770358017,215,0 +170770358065,214,0 +170770358115,214,0 +170770358163,213,0 +170770358212,214,0 +170770358262,214,0 +170770358311,214,0 +170770358361,214,0 +170770358410,214,0 +170770358458,214,0 +170770358506,215,0 +170770358554,214,0 +170770358602,214,0 +170770358651,215,0 +170770358699,215,0 +170770358747,215,0 +170770358797,215,0 +170770358846,215,0 +170770358894,215,0 +170770358944,215,0 +170770358992,215,0 +170770359041,214,0 +170770359089,214,0 +170770359137,214,0 +170770359184,214,0 +170770359232,214,0 +170770359280,214,0 +170770359328,215,0 +170770359376,214,0 +170770359423,214,0 +170770359471,215,0 +170770359519,214,0 +170770359567,215,0 +170770359617,215,0 +170770359665,215,0 +170770359712,215,0 +170770359760,215,0 +170770359808,215,0 +170770359856,215,0 +170770359904,213,0 +170770359952,213,0 +170770360001,214,0 +170770360049,214,0 +170770360097,214,0 +170770360145,214,0 +170770360193,214,0 +170770360240,214,0 +170770360288,214,0 +170770360336,214,0 +170770360384,215,0 +170770360432,215,0 +170770360479,215,0 +170770360527,214,0 +170770360575,214,0 +170770360625,214,0 +170770360672,214,0 +170770360720,214,0 +170770360768,215,0 +170770360816,213,0 +170770360864,213,0 +170770360914,213,0 +170770360963,213,0 +170770361011,213,0 +170770361060,213,0 +170770361108,214,0 +170770361157,214,0 +170770361205,214,0 +170770361253,214,0 +170770361301,214,0 +170770361349,215,0 +170770361397,214,0 +170770361444,215,0 +170770361492,215,0 +170770361540,215,0 +170770361588,215,0 +170770361636,215,0 +170770361684,213,0 +170770361732,213,0 +170770361781,213,0 +170770361829,213,0 +170770361877,214,0 +170770361925,214,0 +170770361974,214,0 +170770362022,214,0 +170770362071,214,0 +170770362119,214,0 +170770362167,214,0 +170770362215,215,0 +170770362263,214,0 +170770362311,215,0 +170770362358,215,0 +170770362406,215,0 +170770362454,214,0 +170770362502,214,0 +170770362550,214,0 +170770362598,213,0 +170770362645,213,0 +170770362693,213,0 +170770362741,213,0 +170770362789,213,0 +170770362837,214,0 +170770362885,214,0 +170770362932,214,0 +170770362980,214,0 +170770363028,214,0 +170770363076,214,0 +170770363125,215,0 +170770363173,215,0 +170770363221,215,0 +170770363269,215,0 +170770363317,215,0 +170770363366,215,0 +170770363416,215,0 +170770363465,214,0 +170770363513,213,0 +170770363561,213,0 +170770363609,213,0 +170770363658,214,0 +170770363706,214,0 +170770363756,214,0 +170770363805,214,0 +170770363855,214,0 +170770363904,214,0 +170770363954,214,0 +170770364003,214,0 +170770364051,215,0 +170770364099,215,0 +170770364149,215,0 +170770364197,215,0 +170770364245,215,0 +170770364293,215,0 +170770364342,215,0 +170770364390,213,0 +170770364438,213,0 +170770364486,213,0 +170770364534,213,0 +170770364582,213,0 +170770364630,213,0 +170770364680,214,0 +170770364729,214,0 +170770364777,214,0 +170770364825,214,0 +170770364874,214,0 +170770364922,214,0 +170770364970,216,0 +170770365020,214,0 +170770365068,214,0 +170770365117,215,0 +170770365167,215,0 +170770365215,215,0 +170770365264,215,0 +170770365312,213,0 +170770365360,213,0 +170770365409,213,0 +170770365457,213,0 +170770365505,213,0 +170770365553,213,0 +170770365601,213,0 +170770365649,214,0 +170770365697,214,0 +170770365745,214,0 +170770365794,214,0 +170770365842,214,0 +170770365892,214,0 +170770365940,214,0 +170770365989,214,0 +170770366037,215,0 +170770366085,214,0 +170770366134,215,0 +170770366182,214,0 +170770366230,213,0 +170770366279,213,0 +170770366327,213,0 +170770366377,213,0 +170770366425,213,0 +170770366472,213,0 +170770366520,213,0 +170770366568,213,0 +170770366616,213,0 +170770366666,214,0 +170770366715,214,0 +170770366763,214,0 +170770366811,214,0 +170770366859,214,0 +170770366907,214,0 +170770366956,214,0 +170770367004,214,0 +170770367052,214,0 +170770367100,213,0 +170770367149,213,0 +170770367197,213,0 +170770367245,213,0 +170770367293,213,0 +170770367340,214,0 +170770367388,214,0 +170770367436,214,0 +170770367484,214,0 +170770367532,214,0 +170770367581,214,0 +170770367629,214,0 +170770367678,214,0 +170770367726,214,0 +170770367774,215,0 +170770367822,215,0 +170770367870,215,0 +170770367918,214,0 +170770367965,214,0 +170770368013,213,0 +170770368061,213,0 +170770368109,213,0 +170770368157,214,0 +170770368205,214,0 +170770368253,214,0 +170770368302,214,0 +170770368351,214,0 +170770368399,214,0 +170770368447,214,0 +170770368495,214,0 +170770368543,214,0 +170770368591,215,0 +170770368638,215,0 +170770368688,215,0 +170770368736,215,0 +170770368785,215,0 +170770368833,215,0 +170770368881,213,0 +170770368929,213,0 +170770368979,213,0 +170770369028,213,0 +170770369076,214,0 +170770369124,214,0 +170770369172,214,0 +170770369221,214,0 +170770369269,214,0 +170770369317,214,0 +170770369365,214,0 +170770369413,214,0 +170770369461,214,0 +170770369509,215,0 +170770369557,214,0 +170770369605,215,0 +170770369653,214,0 +170770369700,215,0 +170770369748,214,0 +170770369796,213,0 +170770369844,213,0 +170770369892,214,0 +170770369940,213,0 +170770369988,214,0 +170770370037,214,0 +170770370085,214,0 +170770370133,214,0 +170770370181,214,0 +170770370229,214,0 +170770370278,214,0 +170770370326,214,0 +170770370374,215,0 +170770370423,215,0 +170770370473,215,0 +170770370521,215,0 +170770370570,215,0 +170770370620,214,0 +170770370668,214,0 +170770370717,213,0 +170770370767,213,0 +170770370815,213,0 +170770370862,213,0 +170770370910,214,0 +170770370960,214,0 +170770371008,214,0 +170770371056,214,0 +170770371105,214,0 +170770371155,214,0 +170770371203,215,0 +170770371251,215,0 +170770371299,215,0 +170770371347,214,0 +170770371396,215,0 +170770371444,215,0 +170770371494,215,0 +170770371541,215,0 +170770371591,213,0 +170770371639,213,0 +170770371688,214,0 +170770371736,214,0 +170770371784,214,0 +170770371832,214,0 +170770371880,214,0 +170770371927,214,0 +170770371975,214,0 +170770372023,214,0 +170770372073,215,0 +170770372120,215,0 +170770372168,215,0 +170770372216,215,0 +170770372264,215,0 +170770372312,215,0 +170770372359,214,0 +170770372407,214,0 +170770372455,214,0 +170770372503,214,0 +170770372551,214,0 +170770372598,214,0 +170770372648,214,0 +170770372696,214,0 +170770372745,214,0 +170770372793,215,0 +170770372841,214,0 +170770372888,214,0 +170770372938,215,0 +170770372986,215,0 +170770373034,215,0 +170770373081,215,0 +170770373131,215,0 +170770373179,215,0 +170770373228,215,0 +170770373276,215,0 +170770373324,214,0 +170770373372,214,0 +170770373420,213,0 +170770373467,213,0 +170770373515,213,0 +170770373563,214,0 +170770373611,214,0 +170770373659,214,0 +170770373708,214,0 +170770373756,214,0 +170770373804,214,0 +170770373852,215,0 +170770373900,214,0 +170770373948,215,0 +170770373997,215,0 +170770374045,215,0 +170770374093,215,0 +170770374140,214,0 +170770374188,215,0 +170770374236,215,0 +170770374284,213,0 +170770374332,213,0 +170770374380,213,0 +170770374429,213,0 +170770374477,213,0 +170770374525,213,0 +170770374572,214,0 +170770374620,214,0 +170770374668,214,0 +170770374716,214,0 +170770374764,214,0 +170770374812,214,0 +170770374860,215,0 +170770374908,214,0 +170770374957,215,0 +170770375005,215,0 +170770375053,214,0 +170770375102,214,0 +170770375150,214,0 +170770375198,213,0 +170770375247,213,0 +170770375295,213,0 +170770375345,213,0 +170770375393,213,0 +170770375440,213,0 +170770375488,213,0 +170770375536,214,0 +170770375584,214,0 +170770375632,214,0 +170770375680,214,0 +170770375728,214,0 +170770375775,214,0 +170770375823,214,0 +170770375871,214,0 +170770375919,215,0 +170770375967,215,0 +170770376015,214,0 +170770376063,213,0 +170770376112,213,0 +170770376160,213,0 +170770376208,213,0 +170770376258,213,0 +170770376307,213,0 +170770376355,213,0 +170770376405,213,0 +170770376454,213,0 +170770376504,214,0 +170770376551,214,0 +170770376599,214,0 +170770376649,214,0 +170770376698,214,0 +170770376746,214,0 +170770376796,214,0 +170770376844,214,0 +170770376893,214,0 +170770376941,214,0 +170770376991,213,0 +170770377040,213,0 +170770377088,213,0 +170770377136,213,0 +170770377184,214,0 +170770377233,214,0 +170770377281,213,0 +170770377329,214,0 +170770377377,214,0 +170770377425,214,0 +170770377473,214,0 +170770377520,214,0 +170770377568,215,0 +170770377616,214,0 +170770377664,215,0 +170770377714,215,0 +170770377762,215,0 +170770377810,215,0 +170770377858,214,0 +170770377905,213,0 +170770377953,213,0 +170770378003,213,0 +170770378052,213,0 +170770378102,214,0 +170770378149,214,0 +170770378197,214,0 +170770378247,214,0 +170770378295,214,0 +170770378342,214,0 +170770378390,214,0 +170770378438,215,0 +170770378486,215,0 +170770378534,215,0 +170770378582,215,0 +170770378629,215,0 +170770378677,215,0 +170770378725,214,0 +170770378773,213,0 +170770378821,213,0 +170770378868,213,0 +170770378916,213,0 +170770378964,214,0 +170770379012,213,0 +170770379060,214,0 +170770379108,214,0 +170770379156,214,0 +170770379205,214,0 +170770379253,214,0 +170770379301,214,0 +170770379349,214,0 +170770379396,214,0 +170770379444,215,0 +170770379492,215,0 +170770379540,214,0 +170770379588,214,0 +170770379636,214,0 +170770379685,213,0 +170770379734,213,0 +170770379782,213,0 +170770379830,213,0 +170770379878,213,0 +170770379925,213,0 +170770379973,213,0 +170770380021,213,0 +170770380069,214,0 +170770380117,214,0 +170770380165,214,0 +170770380214,214,0 +170770380263,214,0 +170770380311,215,0 +170770380359,215,0 +170770380409,214,0 +170770380457,215,0 +170770380504,214,0 +170770380552,213,0 +170770380600,213,0 +170770380650,213,0 +170770380698,213,0 +170770380745,213,0 +170770380793,213,0 +170770380841,213,0 +170770380889,213,0 +170770380939,213,0 +170770380988,213,0 +170770381036,213,0 +170770381085,213,0 +170770381135,213,0 +170770381183,214,0 +170770381232,214,0 +170770381280,214,0 +170770381330,214,0 +170770381379,214,0 +170770381427,214,0 +170770381475,213,0 +170770381523,213,0 +170770381571,213,0 +170770381619,213,0 +170770381667,213,0 +170770381716,213,0 +170770381764,213,0 +170770381813,213,0 +170770381861,213,0 +170770381909,213,0 +170770381957,214,0 +170770382006,214,0 +170770382056,214,0 +170770382104,214,0 +170770382153,214,0 +170770382201,214,0 +170770382249,214,0 +170770382297,214,0 +170770382345,213,0 +170770382393,213,0 +170770382440,213,0 +170770382490,213,0 +170770382538,213,0 +170770382587,213,0 +170770382635,213,0 +170770382683,213,0 +170770382731,213,0 +170770382779,213,0 +170770382827,213,0 +170770382875,214,0 +170770382923,214,0 +170770382972,214,0 +170770383022,214,0 +170770383070,214,0 +170770383118,214,0 +170770383165,214,0 +170770383215,214,0 +170770383263,213,0 +170770383311,213,0 +170770383360,213,0 +170770383410,213,0 +170770383458,213,0 +170770383505,213,0 +170770383555,213,0 +170770383603,214,0 +170770383651,214,0 +170770383699,214,0 +170770383746,214,0 +170770383796,214,0 +170770383844,214,0 +170770383891,214,0 +170770383939,215,0 +170770383987,215,0 +170770384035,214,0 +170770384083,214,0 +170770384131,213,0 +170770384180,213,0 +170770384228,213,0 +170770384278,213,0 +170770384327,213,0 +170770384377,214,0 +170770384426,214,0 +170770384474,214,0 +170770384524,214,0 +170770384572,214,0 +170770384619,214,0 +170770384669,214,0 +170770384717,215,0 +170770384765,215,0 +170770384812,215,0 +170770384860,215,0 +170770384908,215,0 +170770384958,215,0 +170770385006,214,0 +170770385054,214,0 +170770385101,214,0 +170770385149,214,0 +170770385197,214,0 +170770385245,214,0 +170770385295,214,0 +170770385343,214,0 +170770385390,214,0 +170770385438,215,0 +170770385486,214,0 +170770385534,215,0 +170770385583,214,0 +170770385631,215,0 +170770385679,214,0 +170770385727,215,0 +170770385775,215,0 +170770385822,215,0 +170770385872,215,0 +170770385920,214,0 +170770385968,214,0 +170770386017,214,0 +170770386065,214,0 +170770386113,214,0 +170770386161,214,0 +170770386208,214,0 +170770386256,214,0 +170770386304,214,0 +170770386352,214,0 +170770386400,214,0 +170770386449,214,0 +170770386497,215,0 +170770386545,215,0 +170770386593,215,0 +170770386643,215,0 +170770386690,215,0 +170770386738,214,0 +170770386786,214,0 +170770386834,214,0 +170770386882,213,0 +170770386930,214,0 +170770386978,214,0 +170770387026,214,0 +170770387074,214,0 +170770387123,214,0 +170770387171,214,0 +170770387219,214,0 +170770387267,214,0 +170770387316,214,0 +170770387364,214,0 +170770387412,214,0 +170770387460,215,0 +170770387508,215,0 +170770387556,215,0 +170770387604,215,0 +170770387652,215,0 +170770387699,215,0 +170770387747,214,0 +170770387797,214,0 +170770387845,214,0 +170770387893,214,0 +170770387940,214,0 +170770387988,214,0 +170770388038,214,0 +170770388087,214,0 +170770388135,214,0 +170770388183,214,0 +170770388231,214,0 +170770388279,215,0 +170770388327,215,0 +170770388376,215,0 +170770388426,215,0 +170770388475,215,0 +170770388523,215,0 +170770388573,215,0 +170770388622,214,0 +170770388672,213,0 +170770388721,214,0 +170770388769,214,0 +170770388817,214,0 +170770388865,214,0 +170770388913,214,0 +170770388962,214,0 +170770389010,214,0 +170770389058,215,0 +170770389106,215,0 +170770389154,214,0 +170770389202,215,0 +170770389251,215,0 +170770389301,215,0 +170770389349,215,0 +170770389398,215,0 +170770389446,215,0 +170770389496,214,0 +170770389545,213,0 +170770389595,213,0 +170770389643,213,0 +170770389691,214,0 +170770389739,213,0 +170770389788,214,0 +170770389836,214,0 +170770389886,214,0 +170770389935,214,0 +170770389983,214,0 +170770390033,214,0 +170770390081,215,0 +170770390130,215,0 +170770390180,215,0 +170770390229,215,0 +170770390278,215,0 +170770390326,215,0 +170770390376,214,0 +170770390425,214,0 +170770390475,213,0 +170770390523,213,0 +170770390571,213,0 +170770390619,213,0 +170770390667,213,0 +170770390715,214,0 +170770390764,214,0 +170770390812,214,0 +170770390860,214,0 +170770390908,214,0 +170770390956,214,0 +170770391005,214,0 +170770391053,214,0 +170770391101,214,0 +170770391149,214,0 +170770391199,214,0 +170770391247,214,0 +170770391296,214,0 +170770391344,213,0 +170770391393,213,0 +170770391441,213,0 +170770391491,213,0 +170770391539,213,0 +170770391588,213,0 +170770391636,213,0 +170770391686,214,0 +170770391735,213,0 +170770391783,214,0 +170770391831,214,0 +170770391879,214,0 +170770391929,214,0 +170770391977,215,0 +170770392024,215,0 +170770392072,214,0 +170770392120,214,0 +170770392170,214,0 +170770392219,214,0 +170770392267,213,0 +170770392315,213,0 +170770392364,213,0 +170770392414,213,0 +170770392462,213,0 +170770392509,213,0 +170770392557,213,0 +170770392605,213,0 +170770392653,214,0 +170770392701,214,0 +170770392749,214,0 +170770392797,214,0 +170770392846,214,0 +170770392894,214,0 +170770392942,214,0 +170770392991,214,0 +170770393039,214,0 +170770393087,214,0 +170770393135,213,0 +170770393184,213,0 +170770393234,213,0 +170770393282,213,0 +170770393330,213,0 +170770393378,213,0 +170770393426,213,0 +170770393474,213,0 +170770393523,213,0 +170770393571,214,0 +170770393619,214,0 +170770393667,214,0 +170770393716,214,0 +170770393764,214,0 +170770393813,214,0 +170770393861,214,0 +170770393909,214,0 +170770393959,214,0 +170770394007,214,0 +170770394055,213,0 +170770394104,213,0 +170770394152,213,0 +170770394201,213,0 +170770394249,213,0 +170770394299,213,0 +170770394347,213,0 +170770394395,213,0 +170770394443,213,0 +170770394491,214,0 +170770394538,214,0 +170770394586,214,0 +170770394636,214,0 +170770394685,214,0 +170770394735,214,0 +170770394784,214,0 +170770394834,214,0 +170770394883,214,0 +170770394931,213,0 +170770394979,213,0 +170770395029,213,0 +170770395077,213,0 +170770395125,213,0 +170770395172,213,0 +170770395220,213,0 +170770395268,213,0 +170770395316,213,0 +170770395366,214,0 +170770395414,214,0 +170770395461,214,0 +170770395509,214,0 +170770395557,214,0 +170770395607,214,0 +170770395654,214,0 +170770395704,214,0 +170770395752,214,0 +170770395800,213,0 +170770395849,213,0 +170770395899,213,0 +170770395946,213,0 +170770395994,213,0 +170770396042,213,0 +170770396090,213,0 +170770396140,213,0 +170770396189,213,0 +170770396237,214,0 +170770396285,214,0 +170770396333,214,0 +170770396381,214,0 +170770396428,214,0 +170770396478,214,0 +170770396526,214,0 +170770396573,214,0 +170770396621,214,0 +170770396669,214,0 +170770396717,213,0 +170770396764,213,0 +170770396812,213,0 +170770396860,213,0 +170770396910,213,0 +170770396959,213,0 +170770397008,213,0 +170770397056,213,0 +170770397104,214,0 +170770397154,214,0 +170770397201,214,0 +170770397249,214,0 +170770397299,214,0 +170770397348,214,0 +170770397398,214,0 +170770397446,214,0 +170770397495,215,0 +170770397543,214,0 +170770397591,214,0 +170770397641,213,0 +170770397688,213,0 +170770397738,213,0 +170770397786,213,0 +170770397834,213,0 +170770397882,213,0 +170770397929,213,0 +170770397977,214,0 +170770398025,214,0 +170770398073,214,0 +170770398121,214,0 +170770398169,214,0 +170770398216,214,0 +170770398264,214,0 +170770398312,215,0 +170770398360,214,0 +170770398410,214,0 +170770398459,214,0 +170770398509,213,0 +170770398557,213,0 +170770398606,213,0 +170770398656,213,0 +170770398704,213,0 +170770398752,213,0 +170770398801,214,0 +170770398851,214,0 +170770398899,214,0 +170770398947,214,0 +170770398995,214,0 +170770399044,214,0 +170770399092,214,0 +170770399140,214,0 +170770399188,215,0 +170770399237,214,0 +170770399285,214,0 +170770399335,214,0 +170770399383,214,0 +170770399430,213,0 +170770399478,213,0 +170770399526,214,0 +170770399574,213,0 +170770399624,213,0 +170770399672,213,0 +170770399720,213,0 +170770399769,214,0 +170770399817,214,0 +170770399866,214,0 +170770399914,214,0 +170770399962,214,0 +170770400010,214,0 +170770400058,215,0 +170770400106,215,0 +170770400156,214,0 +170770400205,215,0 +170770400253,214,0 +170770400301,213,0 +170770400349,213,0 +170770400397,213,0 +170770400446,213,0 +170770400494,213,0 +170770400542,213,0 +170770400590,213,0 +170770400637,213,0 +170770400685,214,0 +170770400733,214,0 +170770400781,214,0 +170770400830,214,0 +170770400878,214,0 +170770400926,214,0 +170770400974,214,0 +170770401021,214,0 +170770401069,215,0 +170770401117,214,0 +170770401165,214,0 +170770401213,213,0 +170770401261,213,0 +170770401309,213,0 +170770401356,213,0 +170770401406,213,0 +170770401454,213,0 +170770401503,214,0 +170770401553,214,0 +170770401601,214,0 +170770401650,214,0 +170770401698,214,0 +170770401746,214,0 +170770401794,214,0 +170770401842,214,0 +170770401890,214,0 +170770401938,214,0 +170770401986,214,0 +170770402035,214,0 +170770402083,213,0 +170770402131,213,0 +170770402179,213,0 +170770402227,213,0 +170770402275,213,0 +170770402323,213,0 +170770402371,214,0 +170770402418,214,0 +170770402466,214,0 +170770402514,214,0 +170770402562,214,0 +170770402610,214,0 +170770402658,214,0 +170770402705,215,0 +170770402753,215,0 +170770402803,214,0 +170770402851,214,0 +170770402900,214,0 +170770402948,214,0 +170770402996,213,0 +170770403044,213,0 +170770403092,213,0 +170770403140,213,0 +170770403187,213,0 +170770403235,213,0 +170770403283,213,0 +170770403332,214,0 +170770403380,214,0 +170770403429,214,0 +170770403477,214,0 +170770403525,214,0 +170770403573,214,0 +170770403621,215,0 +170770403670,214,0 +170770403718,214,0 +170770403766,215,0 +170770403816,214,0 +170770403863,214,0 +170770403911,213,0 +170770403959,213,0 +170770404009,213,0 +170770404057,213,0 +170770404106,214,0 +170770404154,214,0 +170770404204,214,0 +170770404252,214,0 +170770404301,214,0 +170770404349,214,0 +170770404397,214,0 +170770404445,214,0 +170770404493,214,0 +170770404541,214,0 +170770404589,214,0 +170770404638,214,0 +170770404686,214,0 +170770404736,214,0 +170770404785,213,0 +170770404833,213,0 +170770404881,213,0 +170770404931,213,0 +170770404980,213,0 +170770405028,213,0 +170770405078,214,0 +170770405127,214,0 +170770405175,214,0 +170770405223,213,0 +170770405271,214,0 +170770405320,214,0 +170770405370,214,0 +170770405418,214,0 +170770405466,215,0 +170770405514,215,0 +170770405562,214,0 +170770405610,214,0 +170770405658,214,0 +170770405706,213,0 +170770405754,213,0 +170770405801,213,0 +170770405849,213,0 +170770405899,214,0 +170770405947,213,0 +170770405995,214,0 +170770406042,214,0 +170770406092,214,0 +170770406140,214,0 +170770406188,214,0 +170770406237,215,0 +170770406287,215,0 +170770406335,215,0 +170770406382,215,0 +170770406430,214,0 +170770406478,214,0 +170770406526,214,0 +170770406576,213,0 +170770406624,213,0 +170770406673,213,0 +170770406723,214,0 +170770406771,214,0 +170770406818,214,0 +170770406866,214,0 +170770406914,214,0 +170770406962,214,0 +170770407010,214,0 +170770407058,214,0 +170770407106,215,0 +170770407154,214,0 +170770407203,215,0 +170770407253,215,0 +170770407300,215,0 +170770407348,215,0 +170770407396,214,0 +170770407444,214,0 +170770407492,213,0 +170770407540,213,0 +170770407588,213,0 +170770407636,214,0 +170770407684,214,0 +170770407732,214,0 +170770407780,214,0 +170770407828,214,0 +170770407876,214,0 +170770407925,214,0 +170770407973,214,0 +170770408021,215,0 +170770408069,214,0 +170770408118,215,0 +170770408168,215,0 +170770408216,214,0 +170770408264,214,0 +170770408312,214,0 +170770408360,213,0 +170770408407,213,0 +170770408455,213,0 +170770408503,213,0 +170770408551,213,0 +170770408599,213,0 +170770408647,213,0 +170770408695,214,0 +170770408742,214,0 +170770408790,214,0 +170770408840,214,0 +170770408888,214,0 +170770408937,214,0 +170770408985,214,0 +170770409033,214,0 +170770409082,214,0 +170770409132,214,0 +170770409180,214,0 +170770409228,214,0 +170770409276,213,0 +170770409323,213,0 +170770409371,213,0 +170770409419,213,0 +170770409467,213,0 +170770409514,213,0 +170770409562,213,0 +170770409610,214,0 +170770409658,214,0 +170770409706,214,0 +170770409754,214,0 +170770409801,214,0 +170770409849,214,0 +170770409897,214,0 +170770409945,214,0 +170770409993,214,0 +170770410041,214,0 +170770410088,214,0 +170770410136,214,0 +170770410184,213,0 +170770410232,213,0 +170770410280,213,0 +170770410329,213,0 +170770410377,213,0 +170770410425,213,0 +170770410473,213,0 +170770410520,213,0 +170770410568,213,0 +170770410616,213,0 +170770410666,214,0 +170770410713,214,0 +170770410761,214,0 +170770410809,214,0 +170770410857,214,0 +170770410907,214,0 +170770410955,214,0 +170770411003,214,0 +170770411051,213,0 +170770411100,213,0 +170770411148,213,0 +170770411198,213,0 +170770411247,213,0 +170770411295,213,0 +170770411345,213,0 +170770411393,213,0 +170770411442,213,0 +170770411490,214,0 +170770411538,214,0 +170770411586,214,0 +170770411634,214,0 +170770411682,214,0 +170770411730,214,0 +170770411779,214,0 +170770411827,214,0 +170770411875,214,0 +170770411925,214,0 +170770411973,213,0 +170770412022,212,0 +170770412070,213,0 +170770412118,213,0 +170770412167,213,0 +170770412215,213,0 +170770412265,213,0 +170770412313,213,0 +170770412362,213,0 +170770412412,213,0 +170770412460,214,0 +170770412507,214,0 +170770412557,214,0 +170770412605,214,0 +170770412653,214,0 +170770412700,214,0 +170770412748,214,0 +170770412796,214,0 +170770412844,213,0 +170770412894,213,0 +170770412942,213,0 +170770412991,213,0 +170770413041,213,0 +170770413089,213,0 +170770413136,213,0 +170770413184,213,0 +170770413232,213,0 +170770413282,213,0 +170770413330,213,0 +170770413378,214,0 +170770413426,214,0 +170770413475,214,0 +170770413523,214,0 +170770413571,214,0 +170770413619,214,0 +170770413667,215,0 +170770413714,214,0 +170770413762,213,0 +170770413810,213,0 +170770413858,213,0 +170770413906,213,0 +170770413953,213,0 +170770414001,213,0 +170770414049,213,0 +170770414097,213,0 +170770414145,213,0 +170770414193,214,0 +170770414240,214,0 +170770414288,214,0 +170770414336,214,0 +170770414384,214,0 +170770414432,214,0 +170770414479,214,0 +170770414527,214,0 +170770414575,214,0 +170770414623,214,0 +170770414671,213,0 +170770414719,213,0 +170770414767,213,0 +170770414814,213,0 +170770414862,213,0 +170770414910,213,0 +170770414958,213,0 +170770415006,213,0 +170770415054,214,0 +170770415103,214,0 +170770415151,214,0 +170770415199,214,0 +170770415247,214,0 +170770415295,214,0 +170770415342,214,0 +170770415390,214,0 +170770415438,214,0 +170770415486,214,0 +170770415534,214,0 +170770415582,213,0 +170770415629,213,0 +170770415677,213,0 +170770415725,213,0 +170770415773,213,0 +170770415822,213,0 +170770415870,213,0 +170770415918,214,0 +170770415966,214,0 +170770416015,214,0 +170770416063,214,0 +170770416111,214,0 +170770416159,214,0 +170770416207,214,0 +170770416254,214,0 +170770416302,214,0 +170770416350,214,0 +170770416398,214,0 +170770416446,213,0 +170770416494,212,0 +170770416541,213,0 +170770416589,213,0 +170770416637,213,0 +170770416686,213,0 +170770416734,213,0 +170770416784,213,0 +170770416832,214,0 +170770416879,214,0 +170770416927,214,0 +170770416975,214,0 +170770417023,214,0 +170770417071,214,0 +170770417119,214,0 +170770417167,215,0 +170770417215,214,0 +170770417263,214,0 +170770417312,214,0 +170770417362,213,0 +170770417411,213,0 +170770417461,213,0 +170770417509,213,0 +170770417558,213,0 +170770417608,213,0 +170770417656,214,0 +170770417704,214,0 +170770417752,214,0 +170770417800,214,0 +170770417847,214,0 +170770417895,214,0 +170770417943,214,0 +170770417993,214,0 +170770418041,214,0 +170770418089,214,0 +170770418138,214,0 +170770418186,214,0 +170770418236,213,0 +170770418283,213,0 +170770418331,213,0 +170770418379,213,0 +170770418429,213,0 +170770418477,213,0 +170770418526,213,0 +170770418574,213,0 +170770418622,214,0 +170770418670,213,0 +170770418718,214,0 +170770418766,214,0 +170770418814,214,0 +170770418861,214,0 +170770418909,214,0 +170770418957,214,0 +170770419005,214,0 +170770419053,214,0 +170770419101,214,0 +170770419148,213,0 +170770419198,213,0 +170770419246,213,0 +170770419294,213,0 +170770419343,213,0 +170770419391,213,0 +170770419441,213,0 +170770419490,213,0 +170770419540,213,0 +170770419588,214,0 +170770419637,214,0 +170770419687,214,0 +170770419734,214,0 +170770419782,214,0 +170770419830,214,0 +170770419878,214,0 +170770419927,214,0 +170770419975,214,0 +170770420023,214,0 +170770420071,213,0 +170770420119,213,0 +170770420167,213,0 +170770420214,213,0 +170770420262,213,0 +170770420310,213,0 +170770420358,214,0 +170770420406,213,0 +170770420454,214,0 +170770420502,214,0 +170770420549,214,0 +170770420599,214,0 +170770420648,214,0 +170770420696,214,0 +170770420744,215,0 +170770420792,214,0 +170770420840,214,0 +170770420888,214,0 +170770420936,213,0 +170770420984,213,0 +170770421032,213,0 +170770421080,213,0 +170770421128,213,0 +170770421177,213,0 +170770421225,214,0 +170770421273,214,0 +170770421321,214,0 +170770421369,214,0 +170770421417,214,0 +170770421465,214,0 +170770421514,214,0 +170770421562,214,0 +170770421610,214,0 +170770421658,214,0 +170770421705,214,0 +170770421753,214,0 +170770421801,214,0 +170770421849,213,0 +170770421897,213,0 +170770421945,213,0 +170770421994,213,0 +170770422042,213,0 +170770422092,213,0 +170770422140,213,0 +170770422187,213,0 +170770422235,213,0 +170770422283,214,0 +170770422331,214,0 +170770422379,213,0 +170770422427,214,0 +170770422474,214,0 +170770422522,214,0 +170770422570,215,0 +170770422618,214,0 +170770422666,214,0 +170770422714,214,0 +170770422761,213,0 +170770422809,213,0 +170770422857,213,0 +170770422907,213,0 +170770422954,213,0 +170770423002,213,0 +170770423050,214,0 +170770423098,213,0 +170770423146,213,0 +170770423194,213,0 +170770423242,214,0 +170770423289,214,0 +170770423339,214,0 +170770423388,215,0 +170770423436,214,0 +170770423484,214,0 +170770423532,214,0 +170770423580,214,0 +170770423629,213,0 +170770423677,213,0 +170770423727,213,0 +170770423776,213,0 +170770423826,213,0 +170770423875,213,0 +170770423923,213,0 +170770423971,214,0 +170770424019,214,0 +170770424069,214,0 +170770424118,214,0 +170770424167,214,0 +170770424216,214,0 +170770424264,214,0 +170770424312,214,0 +170770424361,214,0 +170770424409,215,0 +170770424457,214,0 +170770424505,214,0 +170770424554,213,0 +170770424602,213,0 +170770424650,213,0 +170770424698,213,0 +170770424746,213,0 +170770424795,213,0 +170770424843,213,0 +170770424891,214,0 +170770424938,214,0 +170770424986,214,0 +170770425034,214,0 +170770425082,214,0 +170770425130,214,0 +170770425178,214,0 +170770425225,214,0 +170770425273,214,0 +170770425321,214,0 +170770425369,214,0 +170770425417,213,0 +170770425465,213,0 +170770425512,212,0 +170770425560,213,0 +170770425608,213,0 +170770425656,213,0 +170770425704,213,0 +170770425751,213,0 +170770425799,213,0 +170770425847,213,0 +170770425895,213,0 +170770425943,213,0 +170770425990,214,0 +170770426038,214,0 +170770426086,214,0 +170770426134,214,0 +170770426181,214,0 +170770426229,214,0 +170770426277,215,0 +170770426325,213,0 +170770426373,213,0 +170770426422,213,0 +170770426470,213,0 +170770426518,213,0 +170770426566,213,0 +170770426614,213,0 +170770426664,213,0 +170770426711,214,0 +170770426761,213,0 +170770426809,213,0 +170770426857,214,0 +170770426906,214,0 +170770426954,214,0 +170770427003,214,0 +170770427051,214,0 +170770427099,214,0 +170770427149,214,0 +170770427198,214,0 +170770427246,213,0 +170770427294,213,0 +170770427342,213,0 +170770427391,213,0 +170770427439,213,0 +170770427487,213,0 +170770427535,213,0 +170770427583,213,0 +170770427633,214,0 +170770427680,214,0 +170770427728,214,0 +170770427778,215,0 +170770427827,214,0 +170770427877,214,0 +170770427925,214,0 +170770427973,214,0 +170770428021,214,0 +170770428069,214,0 +170770428117,213,0 +170770428166,213,0 +170770428216,213,0 +170770428265,213,0 +170770428315,213,0 +170770428363,214,0 +170770428411,213,0 +170770428458,213,0 +170770428506,214,0 +170770428554,214,0 +170770428602,214,0 +170770428650,214,0 +170770428698,214,0 +170770428747,215,0 +170770428795,215,0 +170770428843,215,0 +170770428893,214,0 +170770428941,215,0 +170770428989,214,0 +170770429037,213,0 +170770429086,213,0 +170770429134,213,0 +170770429182,214,0 +170770429230,214,0 +170770429278,214,0 +170770429326,214,0 +170770429375,214,0 +170770429423,214,0 +170770429471,214,0 +170770429519,214,0 +170770429569,215,0 +170770429616,215,0 +170770429664,215,0 +170770429712,215,0 +170770429760,214,0 +170770429808,214,0 +170770429857,214,0 +170770429905,214,0 +170770429953,213,0 +170770430002,214,0 +170770430050,214,0 +170770430098,213,0 +170770430146,214,0 +170770430193,214,0 +170770430241,214,0 +170770430289,214,0 +170770430337,214,0 +170770430386,215,0 +170770430434,214,0 +170770430482,215,0 +170770430530,215,0 +170770430578,215,0 +170770430626,215,0 +170770430673,215,0 +170770430721,214,0 +170770430769,214,0 +170770430817,214,0 +170770430865,213,0 +170770430913,214,0 +170770430962,214,0 +170770431010,214,0 +170770431058,214,0 +170770431106,214,0 +170770431154,214,0 +170770431202,215,0 +170770431250,215,0 +170770431297,215,0 +170770431345,215,0 +170770431393,215,0 +170770431441,215,0 +170770431489,215,0 +170770431536,214,0 +170770431584,215,0 +170770431633,215,0 +170770431681,214,0 +170770431729,213,0 +170770431777,213,0 +170770431825,213,0 +170770431873,213,0 +170770431921,214,0 +170770431970,214,0 +170770432018,214,0 +170770432066,214,0 +170770432114,214,0 +170770432162,214,0 +170770432210,214,0 +170770432258,214,0 +170770432307,215,0 +170770432355,214,0 +170770432403,214,0 +170770432451,214,0 +170770432499,214,0 +170770432546,214,0 +170770432594,214,0 +170770432642,213,0 +170770432692,213,0 +170770432739,213,0 +170770432787,213,0 +170770432835,213,0 +170770432883,213,0 +170770432931,213,0 +170770432979,214,0 +170770433026,214,0 +170770433074,214,0 +170770433122,214,0 +170770433170,214,0 +170770433218,214,0 +170770433265,214,0 +170770433313,214,0 +170770433361,214,0 +170770433409,214,0 +170770433457,214,0 +170770433505,213,0 +170770433552,213,0 +170770433600,213,0 +170770433650,212,0 +170770433697,213,0 +170770433745,213,0 +170770433793,213,0 +170770433841,213,0 +170770433889,213,0 +170770433937,213,0 +170770433984,213,0 +170770434032,214,0 +170770434080,214,0 +170770434128,214,0 +170770434176,214,0 +170770434223,214,0 +170770434271,214,0 +170770434319,214,0 +170770434368,214,0 +170770434416,213,0 +170770434464,213,0 +170770434514,213,0 +170770434563,213,0 +170770434611,213,0 +170770434660,213,0 +170770434710,213,0 +170770434758,213,0 +170770434807,213,0 +170770434855,213,0 +170770434905,214,0 +170770434954,214,0 +170770435002,214,0 +170770435050,214,0 +170770435098,214,0 +170770435146,214,0 +170770435196,214,0 +170770435244,214,0 +170770435291,214,0 +170770435341,213,0 +170770435389,213,0 +170770435437,213,0 +170770435485,213,0 +170770435534,213,0 +170770435582,213,0 +170770435630,213,0 +170770435678,213,0 +170770435727,213,0 +170770435777,213,0 +170770435826,214,0 +170770435876,214,0 +170770435924,214,0 +170770435972,214,0 +170770436021,214,0 +170770436069,214,0 +170770436117,214,0 +170770436165,214,0 +170770436213,213,0 +170770436262,213,0 +170770436312,213,0 +170770436359,213,0 +170770436407,213,0 +170770436455,213,0 +170770436503,213,0 +170770436551,213,0 +170770436599,214,0 +170770436646,214,0 +170770436694,214,0 +170770436742,214,0 +170770436791,214,0 +170770436839,214,0 +170770436889,214,0 +170770436937,214,0 +170770436985,214,0 +170770437034,215,0 +170770437082,214,0 +170770437132,213,0 +170770437180,213,0 +170770437227,213,0 +170770437277,213,0 +170770437327,213,0 +170770437376,213,0 +170770437424,214,0 +170770437474,214,0 +170770437522,214,0 +170770437569,214,0 +170770437619,215,0 +170770437668,214,0 +170770437718,215,0 +170770437766,215,0 +170770437814,215,0 +170770437862,214,0 +170770437910,214,0 +170770437959,214,0 +170770438007,213,0 +170770438055,213,0 +170770438103,213,0 +170770438152,213,0 +170770438200,213,0 +170770438248,213,0 +170770438296,213,0 +170770438344,214,0 +170770438391,214,0 +170770438439,214,0 +170770438487,214,0 +170770438536,214,0 +170770438584,214,0 +170770438632,214,0 +170770438680,214,0 +170770438728,214,0 +170770438776,214,0 +170770438823,214,0 +170770438871,214,0 +170770438921,213,0 +170770438969,213,0 +170770439016,213,0 +170770439066,213,0 +170770439114,213,0 +170770439162,213,0 +170770439209,213,0 +170770439257,213,0 +170770439305,213,0 +170770439353,214,0 +170770439402,214,0 +170770439450,214,0 +170770439498,214,0 +170770439546,214,0 +170770439594,214,0 +170770439642,214,0 +170770439691,214,0 +170770439739,214,0 +170770439787,213,0 +170770439836,213,0 +170770439884,213,0 +170770439932,213,0 +170770439980,213,0 +170770440028,213,0 +170770440075,213,0 +170770440123,213,0 +170770440171,213,0 +170770440219,214,0 +170770440267,214,0 +170770440314,214,0 +170770440362,214,0 +170770440412,214,0 +170770440459,214,0 +170770440507,214,0 +170770440555,214,0 +170770440603,214,0 +170770440651,214,0 +170770440699,213,0 +170770440747,213,0 +170770440795,213,0 +170770440843,213,0 +170770440890,213,0 +170770440938,213,0 +170770440986,213,0 +170770441034,213,0 +170770441084,213,0 +170770441132,214,0 +170770441180,214,0 +170770441228,214,0 +170770441276,214,0 +170770441323,215,0 +170770441373,214,0 +170770441421,215,0 +170770441470,215,0 +170770441520,214,0 +170770441569,214,0 +170770441617,213,0 +170770441665,213,0 +170770441713,213,0 +170770441761,213,0 +170770441809,213,0 +170770441857,213,0 +170770441907,214,0 +170770441954,214,0 +170770442004,214,0 +170770442052,214,0 +170770442100,214,0 +170770442148,214,0 +170770442196,214,0 +170770442245,214,0 +170770442295,215,0 +170770442343,214,0 +170770442391,215,0 +170770442438,214,0 +170770442486,213,0 +170770442534,213,0 +170770442582,213,0 +170770442632,213,0 +170770442680,213,0 +170770442729,214,0 +170770442777,213,0 +170770442827,214,0 +170770442875,214,0 +170770442923,214,0 +170770442972,214,0 +170770443020,214,0 +170770443068,214,0 +170770443118,214,0 +170770443167,215,0 +170770443215,215,0 +170770443263,214,0 +170770443312,215,0 +170770443362,214,0 +170770443411,213,0 +170770443459,213,0 +170770443509,214,0 +170770443558,213,0 +170770443606,214,0 +170770443654,214,0 +170770443702,214,0 +170770443750,214,0 +170770443798,214,0 +170770443846,214,0 +170770443894,214,0 +170770443942,214,0 +170770443992,214,0 +170770444040,215,0 +170770444088,215,0 +170770444137,215,0 +170770444187,214,0 +170770444235,214,0 +170770444283,213,0 +170770444331,213,0 +170770444380,213,0 +170770444430,213,0 +170770444479,214,0 +170770444529,214,0 +170770444578,214,0 +170770444627,214,0 +170770444675,214,0 +170770444723,214,0 +170770444771,214,0 +170770444819,214,0 +170770444867,215,0 +170770444917,215,0 +170770444964,214,0 +170770445012,215,0 +170770445060,214,0 +170770445108,214,0 +170770445156,214,0 +170770445206,213,0 +170770445255,213,0 +170770445305,213,0 +170770445353,213,0 +170770445402,213,0 +170770445450,214,0 +170770445498,214,0 +170770445546,213,0 +170770445594,214,0 +170770445643,214,0 +170770445691,214,0 +170770445739,214,0 +170770445787,214,0 +170770445835,214,0 +170770445883,215,0 +170770445932,214,0 +170770445980,214,0 +170770446028,215,0 +170770446076,213,0 +170770446126,213,0 +170770446174,213,0 +170770446223,213,0 +170770446273,213,0 +170770446321,213,0 +170770446369,214,0 +170770446417,214,0 +170770446465,214,0 +170770446512,214,0 +170770446560,214,0 +170770446608,214,0 +170770446656,214,0 +170770446704,215,0 +170770446752,215,0 +170770446802,214,0 +170770446850,214,0 +170770446898,214,0 +170770446946,214,0 +170770446994,213,0 +170770447042,212,0 +170770447090,213,0 +170770447137,213,0 +170770447187,213,0 +170770447236,213,0 +170770447284,213,0 +170770447332,213,0 +170770447380,213,0 +170770447428,214,0 +170770447476,214,0 +170770447524,214,0 +170770447572,214,0 +170770447620,214,0 +170770447668,214,0 +170770447717,214,0 +170770447767,214,0 +170770447815,214,0 +170770447864,213,0 +170770447912,213,0 +170770447960,213,0 +170770448010,213,0 +170770448058,213,0 +170770448107,213,0 +170770448155,213,0 +170770448203,213,0 +170770448251,213,0 +170770448300,214,0 +170770448350,214,0 +170770448399,214,0 +170770448447,214,0 +170770448495,214,0 +170770448543,214,0 +170770448591,214,0 +170770448641,214,0 +170770448689,214,0 +170770448737,214,0 +170770448785,213,0 +170770448834,213,0 +170770448883,213,0 +170770448931,213,0 +170770448979,213,0 +170770449027,213,0 +170770449077,213,0 +170770449125,213,0 +170770449173,214,0 +170770449220,214,0 +170770449268,214,0 +170770449318,214,0 +170770449366,214,0 +170770449414,214,0 +170770449462,215,0 +170770449511,215,0 +170770449561,214,0 +170770449610,214,0 +170770449658,213,0 +170770449706,213,0 +170770449754,213,0 +170770449804,213,0 +170770449852,213,0 +170770449901,213,0 +170770449949,213,0 +170770449999,213,0 +170770450048,214,0 +170770450096,214,0 +170770450144,214,0 +170770450192,214,0 +170770450240,214,0 +170770450288,214,0 +170770450336,215,0 +170770450385,214,0 +170770450433,214,0 +170770450483,215,0 +170770450531,214,0 +170770450578,213,0 +170770450628,213,0 +170770450676,213,0 +170770450726,213,0 +170770450775,213,0 +170770450823,213,0 +170770450871,214,0 +170770450919,214,0 +170770450967,214,0 +170770451015,214,0 +170770451063,214,0 +170770451111,214,0 +170770451159,214,0 +170770451208,214,0 +170770451256,214,0 +170770451304,215,0 +170770451352,215,0 +170770451400,214,0 +170770451448,213,0 +170770451496,213,0 +170770451544,213,0 +170770451592,213,0 +170770451641,213,0 +170770451689,214,0 +170770451737,214,0 +170770451787,214,0 +170770451836,214,0 +170770451884,214,0 +170770451932,214,0 +170770451982,214,0 +170770452030,214,0 +170770452079,215,0 +170770452127,214,0 +170770452175,215,0 +170770452223,215,0 +170770452271,214,0 +170770452319,214,0 +170770452368,213,0 +170770452416,213,0 +170770452464,213,0 +170770452512,213,0 +170770452562,213,0 +170770452609,213,0 +170770452657,214,0 +170770452705,214,0 +170770452753,214,0 +170770452801,214,0 +170770452849,214,0 +170770452897,214,0 +170770452945,214,0 +170770452994,214,0 +170770453042,214,0 +170770453091,214,0 +170770453139,214,0 +170770453187,214,0 +170770453237,213,0 +170770453286,213,0 +170770453334,213,0 +170770453382,213,0 +170770453430,213,0 +170770453478,213,0 +170770453526,213,0 +170770453574,213,0 +170770453621,213,0 +170770453669,213,0 +170770453717,214,0 +170770453765,214,0 +170770453813,214,0 +170770453861,214,0 +170770453911,214,0 +170770453959,214,0 +170770454006,214,0 +170770454054,214,0 +170770454102,214,0 +170770454152,213,0 +170770454200,213,0 +170770454249,213,0 +170770454299,213,0 +170770454348,213,0 +170770454396,213,0 +170770454444,213,0 +170770454492,213,0 +170770454540,213,0 +170770454587,213,0 +170770454635,214,0 +170770454685,214,0 +170770454732,214,0 +170770454780,214,0 +170770454830,214,0 +170770454878,214,0 +170770454925,214,0 +170770454975,214,0 +170770455023,214,0 +170770455072,213,0 +170770455120,213,0 +170770455168,213,0 +170770455216,213,0 +170770455264,213,0 +170770455312,213,0 +170770455360,213,0 +170770455409,214,0 +170770455457,214,0 +170770455505,214,0 +170770455553,214,0 +170770455600,214,0 +170770455648,214,0 +170770455696,214,0 +170770455744,214,0 +170770455792,214,0 +170770455840,214,0 +170770455888,214,0 +170770455935,213,0 +170770455985,213,0 +170770456032,213,0 +170770456080,213,0 +170770456128,213,0 +170770456176,213,0 +170770456224,214,0 +170770456273,214,0 +170770456323,214,0 +170770456372,214,0 +170770456420,214,0 +170770456470,214,0 +170770456518,214,0 +170770456567,215,0 +170770456617,215,0 +170770456666,214,0 +170770456714,214,0 +170770456764,214,0 +170770456812,214,0 +170770456860,213,0 +170770456909,213,0 +170770456959,213,0 +170770457008,214,0 +170770457058,214,0 +170770457105,214,0 +170770457153,214,0 +170770457203,214,0 +170770457251,214,0 +170770457299,214,0 +170770457347,214,0 +170770457395,214,0 +170770457443,214,0 +170770457491,214,0 +170770457538,214,0 +170770457588,214,0 +170770457636,214,0 +170770457684,214,0 +170770457733,213,0 +170770457781,213,0 +170770457829,213,0 +170770457879,213,0 +170770457927,214,0 +170770457975,214,0 +170770458022,214,0 +170770458072,214,0 +170770458120,214,0 +170770458169,214,0 +170770458217,214,0 +170770458265,214,0 +170770458313,214,0 +170770458361,214,0 +170770458409,214,0 +170770458458,215,0 +170770458506,215,0 +170770458556,215,0 +170770458604,214,0 +170770458651,213,0 +170770458699,214,0 +170770458749,214,0 +170770458797,214,0 +170770458844,214,0 +170770458892,214,0 +170770458940,214,0 +170770458989,214,0 +170770459037,214,0 +170770459087,214,0 +170770459136,215,0 +170770459186,215,0 +170770459235,215,0 +170770459283,215,0 +170770459331,215,0 +170770459380,215,0 +170770459428,215,0 +170770459476,215,0 +170770459524,214,0 +170770459571,214,0 +170770459619,214,0 +170770459669,214,0 +170770459717,214,0 +170770459766,214,0 +170770459814,214,0 +170770459862,214,0 +170770459909,214,0 +170770459957,215,0 +170770460005,215,0 +170770460053,215,0 +170770460101,215,0 +170770460149,215,0 +170770460196,215,0 +170770460244,215,0 +170770460294,215,0 +170770460342,214,0 +170770460389,215,0 +170770460437,213,0 +170770460485,213,0 +170770460533,214,0 +170770460581,214,0 +170770460629,214,0 +170770460676,214,0 +170770460724,214,0 +170770460772,214,0 +170770460820,214,0 +170770460868,214,0 +170770460916,214,0 +170770460964,215,0 +170770461011,214,0 +170770461059,215,0 +170770461107,215,0 +170770461155,215,0 +170770461203,214,0 +170770461252,214,0 +170770461301,214,0 +170770461349,213,0 +170770461397,213,0 +170770461445,213,0 +170770461493,213,0 +170770461541,213,0 +170770461589,213,0 +170770461636,213,0 +170770461684,214,0 +170770461732,214,0 +170770461780,214,0 +170770461829,214,0 +170770461877,214,0 +170770461925,214,0 +170770461973,214,0 +170770462022,214,0 +170770462070,214,0 +170770462118,215,0 +170770462166,214,0 +170770462214,213,0 +170770462261,213,0 +170770462309,213,0 +170770462357,213,0 +170770462405,213,0 +170770462453,213,0 +170770462500,213,0 +170770462548,214,0 +170770462598,214,0 +170770462645,214,0 +170770462695,214,0 +170770462744,214,0 +170770462792,214,0 +170770462840,214,0 +170770462888,214,0 +170770462936,214,0 +170770462985,214,0 +170770463034,214,0 +170770463082,214,0 +170770463132,213,0 +170770463180,213,0 +170770463229,213,0 +170770463279,213,0 +170770463327,213,0 +170770463374,213,0 +170770463422,213,0 +170770463470,213,0 +170770463518,214,0 +170770463566,214,0 +170770463614,214,0 +170770463663,214,0 +170770463713,214,0 +170770463761,214,0 +170770463809,214,0 +170770463857,214,0 +170770463904,214,0 +170770463952,214,0 +170770464000,213,0 +170770464048,213,0 +170770464096,213,0 +170770464144,213,0 +170770464192,213,0 +170770464240,213,0 +170770464290,213,0 +170770464338,213,0 +170770464386,213,0 +170770464433,213,0 +170770464483,214,0 +170770464531,214,0 +170770464579,214,0 +170770464628,214,0 +170770464678,214,0 +170770464727,214,0 +170770464775,214,0 +170770464823,214,0 +170770464871,214,0 +170770464921,213,0 +170770464970,213,0 +170770465020,213,0 +170770465068,213,0 +170770465117,213,0 +170770465167,213,0 +170770465216,213,0 +170770465264,213,0 +170770465314,213,0 +170770465362,214,0 +170770465410,214,0 +170770465459,214,0 +170770465507,214,0 +170770465557,214,0 +170770465605,214,0 +170770465654,214,0 +170770465702,214,0 +170770465750,214,0 +170770465800,213,0 +170770465849,213,0 +170770465897,213,0 +170770465945,213,0 +170770465993,213,0 +170770466041,213,0 +170770466089,213,0 +170770466137,213,0 +170770466185,213,0 +170770466233,214,0 +170770466282,214,0 +170770466330,214,0 +170770466378,214,0 +170770466426,214,0 +170770466476,214,0 +170770466524,214,0 +170770466571,214,0 +170770466621,214,0 +170770466669,214,0 +170770466717,213,0 +170770466765,213,0 +170770466813,213,0 +170770466861,213,0 +170770466909,213,0 +170770466957,213,0 +170770467004,213,0 +170770467054,213,0 +170770467102,213,0 +170770467150,213,0 +170770467199,213,0 +170770467247,214,0 +170770467295,213,0 +170770467343,214,0 +170770467391,214,0 +170770467439,214,0 +170770467487,214,0 +170770467535,214,0 +170770467583,214,0 +170770467631,213,0 +170770467679,213,0 +170770467728,213,0 +170770467776,213,0 +170770467824,213,0 +170770467872,213,0 +170770467920,213,0 +170770467968,213,0 +170770468017,213,0 +170770468065,214,0 +170770468113,214,0 +170770468161,214,0 +170770468211,214,0 +170770468260,214,0 +170770468310,214,0 +170770468358,214,0 +170770468407,214,0 +170770468455,214,0 +170770468503,213,0 +170770468551,213,0 +170770468599,213,0 +170770468648,213,0 +170770468696,213,0 +170770468746,213,0 +170770468795,213,0 +170770468843,213,0 +170770468891,213,0 +170770468941,214,0 +170770468989,214,0 +170770469037,214,0 +170770469086,214,0 +170770469136,214,0 +170770469185,214,0 +170770469233,214,0 +170770469282,214,0 +170770469330,214,0 +170770469378,214,0 +170770469426,213,0 +170770469474,213,0 +170770469522,213,0 +170770469571,213,0 +170770469621,213,0 +170770469668,213,0 +170770469716,213,0 +170770469764,214,0 +170770469812,214,0 +170770469860,214,0 +170770469908,214,0 +170770469956,214,0 +170770470003,214,0 +170770470051,214,0 +170770470099,215,0 +170770470147,215,0 +170770470197,215,0 +170770470245,214,0 +170770470293,213,0 +170770470342,213,0 +170770470390,213,0 +170770470440,213,0 +170770470487,213,0 +170770470535,213,0 +170770470583,213,0 +170770470631,213,0 +170770470679,214,0 +170770470729,214,0 +170770470778,214,0 +170770470828,214,0 +170770470877,214,0 +170770470925,214,0 +170770470973,214,0 +170770471023,215,0 +170770471071,215,0 +170770471119,215,0 +170770471168,213,0 +170770471218,213,0 +170770471267,213,0 +170770471317,213,0 +170770471366,213,0 +170770471414,213,0 +170770471462,213,0 +170770471510,214,0 +170770471558,214,0 +170770471606,214,0 +170770471654,214,0 +170770471701,214,0 +170770471749,214,0 +170770471797,214,0 +170770471847,214,0 +170770471895,214,0 +170770471943,214,0 +170770471990,214,0 +170770472038,214,0 +170770472088,213,0 +170770472136,213,0 +170770472184,213,0 +170770472232,213,0 +170770472281,213,0 +170770472329,213,0 +170770472377,213,0 +170770472425,214,0 +170770472473,214,0 +170770472521,214,0 +170770472570,214,0 +170770472618,214,0 +170770472668,214,0 +170770472718,215,0 +170770472766,214,0 +170770472813,215,0 +170770472861,214,0 +170770472911,214,0 +170770472959,214,0 +170770473007,213,0 +170770473056,214,0 +170770473104,214,0 +170770473152,214,0 +170770473200,214,0 +170770473248,214,0 +170770473295,214,0 +170770473345,214,0 +170770473394,214,0 +170770473442,215,0 +170770473492,214,0 +170770473541,215,0 +170770473589,214,0 +170770473637,215,0 +170770473685,215,0 +170770473733,215,0 +170770473781,214,0 +170770473828,214,0 +170770473876,214,0 +170770473924,213,0 +170770473972,214,0 +170770474020,214,0 +170770474069,214,0 +170770474117,214,0 +170770474165,214,0 +170770474213,215,0 +170770474260,214,0 +170770474308,215,0 +170770474358,214,0 +170770474405,215,0 +170770474453,215,0 +170770474501,215,0 +170770474551,215,0 +170770474599,214,0 +170770474647,214,0 +170770474695,214,0 +170770474743,214,0 +170770474791,213,0 +170770474838,213,0 +170770474886,213,0 +170770474934,213,0 +170770474982,213,0 +170770475030,214,0 +170770475079,214,0 +170770475127,214,0 +170770475177,214,0 +170770475225,214,0 +170770475273,215,0 +170770475320,215,0 +170770475370,215,0 +170770475419,215,0 +170770475467,217,0 +170770475515,215,0 +170770475563,214,0 +170770475611,214,0 +170770475660,213,0 +170770475708,213,0 +170770475758,213,0 +170770475807,213,0 +170770475857,213,0 +170770475905,213,0 +170770475952,214,0 +170770476000,214,0 +170770476050,214,0 +170770476098,214,0 +170770476147,214,0 +170770476195,215,0 +170770476243,214,0 +170770476291,215,0 +170770476339,215,0 +170770476388,215,0 +170770476436,214,0 +170770476486,214,0 +170770476533,214,0 +170770476581,213,0 +170770476629,213,0 +170770476677,213,0 +170770476725,214,0 +170770476773,214,0 +170770476821,214,0 +170770476870,214,0 +170770476920,214,0 +170770476967,214,0 +170770477015,214,0 +170770477065,214,0 +170770477115,214,0 +170770477163,215,0 +170770477212,215,0 +170770477260,215,0 +170770477308,215,0 +170770477356,214,0 +170770477405,214,0 +170770477453,213,0 +170770477501,213,0 +170770477551,213,0 +170770477598,213,0 +170770477646,213,0 +170770477694,213,0 +170770477742,214,0 +170770477790,214,0 +170770477838,214,0 +170770477886,214,0 +170770477933,214,0 +170770477981,214,0 +170770478029,214,0 +170770478077,215,0 +170770478125,215,0 +170770478173,215,0 +170770478220,215,0 +170770478268,215,0 +170770478316,215,0 +170770478366,213,0 +170770478414,213,0 +170770478461,213,0 +170770478511,213,0 +170770478559,213,0 +170770478607,214,0 +170770478654,214,0 +170770478702,214,0 +170770478750,214,0 +170770478798,214,0 +170770478846,214,0 +170770478896,214,0 +170770478943,215,0 +170770478991,214,0 +170770479039,215,0 +170770479089,215,0 +170770479137,215,0 +170770479185,214,0 +170770479232,214,0 +170770479280,213,0 +170770479328,213,0 +170770479376,213,0 +170770479424,213,0 +170770479472,213,0 +170770479519,214,0 +170770479567,214,0 +170770479617,214,0 +170770479665,214,0 +170770479713,214,0 +170770479762,214,0 +170770479810,215,0 +170770479858,214,0 +170770479906,215,0 +170770479953,215,0 +170770480001,215,0 +170770480049,215,0 +170770480097,214,0 +170770480146,213,0 +170770480194,213,0 +170770480242,213,0 +170770480290,213,0 +170770480338,213,0 +170770480386,213,0 +170770480433,214,0 +170770480481,214,0 +170770480529,214,0 +170770480577,214,0 +170770480625,214,0 +170770480673,214,0 +170770480721,215,0 +170770480770,215,0 +170770480818,214,0 +170770480868,215,0 +170770480916,215,0 +170770480965,214,0 +170770481015,214,0 +170770481064,213,0 +170770481112,213,0 +170770481162,213,0 +170770481210,213,0 +170770481259,213,0 +170770481307,213,0 +170770481356,214,0 +170770481404,214,0 +170770481452,214,0 +170770481500,214,0 +170770481548,214,0 +170770481596,214,0 +170770481644,214,0 +170770481693,215,0 +170770481741,214,0 +170770481790,215,0 +170770481840,215,0 +170770481890,214,0 +170770481937,213,0 +170770481985,213,0 +170770482035,213,0 +170770482083,213,0 +170770482131,213,0 +170770482180,213,0 +170770482228,214,0 +170770482276,214,0 +170770482326,214,0 +170770482374,214,0 +170770482423,214,0 +170770482471,214,0 +170770482519,214,0 +170770482567,214,0 +170770482616,214,0 +170770482664,215,0 +170770482712,215,0 +170770482762,214,0 +170770482810,213,0 +170770482858,213,0 +170770482906,213,0 +170770482954,213,0 +170770483001,213,0 +170770483049,213,0 +170770483099,213,0 +170770483147,213,0 +170770483196,213,0 +170770483244,214,0 +170770483294,214,0 +170770483343,214,0 +170770483391,214,0 +170770483439,214,0 +170770483487,215,0 +170770483535,215,0 +170770483583,215,0 +170770483631,214,0 +170770483681,214,0 +170770483729,213,0 +170770483778,213,0 +170770483826,213,0 +170770483874,213,0 +170770483922,213,0 +170770483971,213,0 +170770484021,214,0 +170770484070,213,0 +170770484118,214,0 +170770484166,214,0 +170770484216,214,0 +170770484264,214,0 +170770484313,215,0 +170770484363,214,0 +170770484411,215,0 +170770484459,214,0 +170770484506,214,0 +170770484556,214,0 +170770484604,213,0 +170770484652,213,0 +170770484700,213,0 +170770484748,213,0 +170770484797,213,0 +170770484845,213,0 +170770484895,213,0 +170770484942,213,0 +170770484992,214,0 +170770485040,214,0 +170770485089,214,0 +170770485139,214,0 +170770485188,214,0 +170770485236,214,0 +170770485286,214,0 +170770485334,214,0 +170770485382,215,0 +170770485430,214,0 +170770485479,214,0 +170770485529,213,0 +170770485576,213,0 +170770485626,213,0 +170770485676,213,0 +170770485724,213,0 +170770485773,213,0 +170770485821,214,0 +170770485869,214,0 +170770485917,214,0 +170770485965,214,0 +170770486014,214,0 +170770486062,214,0 +170770486110,214,0 +170770486158,215,0 +170770486206,215,0 +170770486253,215,0 +170770486301,214,0 +170770486349,214,0 +170770486399,213,0 +170770486447,213,0 +170770486495,213,0 +170770486542,213,0 +170770486590,213,0 +170770486638,214,0 +170770486686,213,0 +170770486734,214,0 +170770486782,214,0 +170770486830,214,0 +170770486878,214,0 +170770486926,215,0 +170770486974,214,0 +170770487022,215,0 +170770487070,215,0 +170770487118,215,0 +170770487165,215,0 +170770487213,215,0 +170770487263,214,0 +170770487311,213,0 +170770487359,213,0 +170770487408,213,0 +170770487458,213,0 +170770487507,213,0 +170770487555,214,0 +170770487603,214,0 +170770487651,214,0 +170770487699,214,0 +170770487747,214,0 +170770487795,214,0 +170770487844,214,0 +170770487892,214,0 +170770487940,214,0 +170770487989,215,0 +170770488037,215,0 +170770488087,215,0 +170770488135,214,0 +170770488183,213,0 +170770488231,213,0 +170770488280,213,0 +170770488329,213,0 +170770488377,213,0 +170770488425,214,0 +170770488475,214,0 +170770488524,214,0 +170770488574,214,0 +170770488622,214,0 +170770488671,214,0 +170770488721,214,0 +170770488769,214,0 +170770488818,214,0 +170770488866,214,0 +170770488914,215,0 +170770488962,215,0 +170770489012,215,0 +170770489059,214,0 +170770489109,213,0 +170770489158,213,0 +170770489206,213,0 +170770489254,213,0 +170770489304,213,0 +170770489352,213,0 +170770489400,214,0 +170770489448,214,0 +170770489496,214,0 +170770489545,214,0 +170770489593,215,0 +170770489643,214,0 +170770489691,215,0 +170770489739,214,0 +170770489786,214,0 +170770489834,214,0 +170770489882,215,0 +170770489930,214,0 +170770489980,213,0 +170770490029,213,0 +170770490077,213,0 +170770490127,213,0 +170770490175,213,0 +170770490223,213,0 +170770490272,213,0 +170770490320,214,0 +170770490370,214,0 +170770490418,214,0 +170770490466,214,0 +170770490514,214,0 +170770490562,215,0 +170770490609,214,0 +170770490659,215,0 +170770490709,215,0 +170770490757,214,0 +170770490806,215,0 +170770490855,214,0 +170770490905,213,0 +170770490953,213,0 +170770491001,213,0 +170770491050,213,0 +170770491098,213,0 +170770491146,214,0 +170770491194,214,0 +170770491242,214,0 +170770491290,214,0 +170770491338,214,0 +170770491386,214,0 +170770491434,214,0 +170770491482,215,0 +170770491531,214,0 +170770491581,215,0 +170770491629,214,0 +170770491676,215,0 +170770491726,214,0 +170770491774,213,0 +170770491822,213,0 +170770491870,213,0 +170770491919,213,0 +170770491967,213,0 +170770492017,214,0 +170770492065,214,0 +170770492114,214,0 +170770492164,214,0 +170770492213,214,0 +170770492263,214,0 +170770492312,214,0 +170770492362,214,0 +170770492412,214,0 +170770492461,215,0 +170770492511,214,0 +170770492560,215,0 +170770492610,214,0 +170770492659,214,0 +170770492709,213,0 +170770492757,213,0 +170770492805,213,0 +170770492852,213,0 +170770492902,214,0 +170770492950,213,0 +170770492998,214,0 +170770493046,214,0 +170770493094,214,0 +170770493143,214,0 +170770493191,214,0 +170770493239,214,0 +170770493289,214,0 +170770493338,214,0 +170770493386,215,0 +170770493435,215,0 +170770493485,215,0 +170770493534,214,0 +170770493582,213,0 +170770493632,213,0 +170770493681,213,0 +170770493729,213,0 +170770493777,213,0 +170770493825,213,0 +170770493873,213,0 +170770493923,214,0 +170770493971,214,0 +170770494020,214,0 +170770494068,214,0 +170770494116,214,0 +170770494166,214,0 +170770494215,214,0 +170770494264,215,0 +170770494314,215,0 +170770494362,215,0 +170770494410,215,0 +170770494457,213,0 +170770494505,213,0 +170770494553,213,0 +170770494601,213,0 +170770494651,213,0 +170770494700,213,0 +170770494748,214,0 +170770494796,214,0 +170770494846,214,0 +170770494893,214,0 +170770494943,214,0 +170770494991,214,0 +170770495040,214,0 +170770495088,214,0 +170770495136,215,0 +170770495184,215,0 +170770495233,214,0 +170770495281,215,0 +170770495329,214,0 +170770495379,213,0 +170770495427,213,0 +170770495475,213,0 +170770495523,213,0 +170770495571,213,0 +170770495620,214,0 +170770495668,214,0 +170770495717,214,0 +170770495767,214,0 +170770495815,214,0 +170770495863,214,0 +170770495911,214,0 +170770495960,214,0 +170770496008,214,0 +170770496056,214,0 +170770496104,215,0 +170770496152,215,0 +170770496201,215,0 +170770496249,215,0 +170770496297,215,0 +170770496345,215,0 +170770496394,215,0 +170770496444,215,0 +170770496492,215,0 +170770496541,215,0 +170770496589,215,0 +170770496639,215,0 +170770496687,213,0 +170770496736,213,0 +170770496786,213,0 +170770496835,213,0 +170770496885,213,0 +170770496934,213,0 +170770496982,213,0 +170770497031,214,0 +170770497081,214,0 +170770497129,214,0 +170770497177,214,0 +170770497225,214,0 +170770497273,214,0 +170770497321,214,0 +170770497370,214,0 +170770497418,214,0 +170770497466,214,0 +170770497515,215,0 +170770497563,213,0 +170770497611,213,0 +170770497659,213,0 +170770497708,213,0 +170770497758,213,0 +170770497806,213,0 +170770497854,213,0 +170770497902,213,0 +170770497950,213,0 +170770497997,213,0 +170770498047,213,0 +170770498096,214,0 +170770498144,214,0 +170770498194,214,0 +170770498242,214,0 +170770498290,214,0 +170770498338,214,0 +170770498386,214,0 +170770498435,214,0 +170770498483,213,0 +170770498531,213,0 +170770498580,213,0 +170770498628,213,0 +170770498676,213,0 +170770498724,214,0 +170770498774,213,0 +170770498822,214,0 +170770498871,214,0 +170770498919,214,0 +170770498967,214,0 +170770499015,214,0 +170770499063,214,0 +170770499111,215,0 +170770499160,214,0 +170770499210,214,0 +170770499258,214,0 +170770499305,214,0 +170770499353,214,0 +170770499403,213,0 +170770499452,213,0 +170770499502,213,0 +170770499549,213,0 +170770499599,213,0 +170770499648,214,0 +170770499696,214,0 +170770499744,214,0 +170770499794,214,0 +170770499842,214,0 +170770499890,215,0 +170770499937,215,0 +170770499985,215,0 +170770500033,215,0 +170770500081,215,0 +170770500129,215,0 +170770500177,215,0 +170770500227,214,0 +170770500275,213,0 +170770500322,213,0 +170770500372,214,0 +170770500420,213,0 +170770500468,214,0 +170770500516,214,0 +170770500563,214,0 +170770500611,214,0 +170770500659,214,0 +170770500707,214,0 +170770500756,214,0 +170770500806,214,0 +170770500854,215,0 +170770500902,215,0 +170770500949,215,0 +170770500999,215,0 +170770501047,215,0 +170770501095,215,0 +170770501143,214,0 +170770501192,213,0 +170770501240,213,0 +170770501288,213,0 +170770501336,213,0 +170770501384,213,0 +170770501432,214,0 +170770501479,214,0 +170770501529,214,0 +170770501577,214,0 +170770501625,214,0 +170770501674,214,0 +170770501724,214,0 +170770501773,214,0 +170770501821,215,0 +170770501869,215,0 +170770501918,215,0 +170770501966,214,0 +170770502014,214,0 +170770502062,213,0 +170770502112,213,0 +170770502160,213,0 +170770502208,213,0 +170770502257,213,0 +170770502305,214,0 +170770502355,214,0 +170770502403,214,0 +170770502450,214,0 +170770502500,214,0 +170770502550,215,0 +170770502599,214,0 +170770502647,215,0 +170770502696,214,0 +170770502746,214,0 +170770502795,215,0 +170770502843,214,0 +170770502893,215,0 +170770502942,213,0 +170770502990,213,0 +170770503038,213,0 +170770503087,213,0 +170770503137,214,0 +170770503186,214,0 +170770503236,214,0 +170770503284,214,0 +170770503332,215,0 +170770503381,214,0 +170770503429,214,0 +170770503477,215,0 +170770503525,215,0 +170770503573,215,0 +170770503623,215,0 +170770503671,215,0 +170770503720,215,0 +170770503770,214,0 +170770503818,214,0 +170770503865,213,0 +170770503913,213,0 +170770503961,213,0 +170770504011,213,0 +170770504058,214,0 +170770504108,214,0 +170770504157,214,0 +170770504207,214,0 +170770504257,214,0 +170770504304,214,0 +170770504352,214,0 +170770504400,214,0 +170770504448,214,0 +170770504496,215,0 +170770504545,215,0 +170770504593,215,0 +170770504641,214,0 +170770504689,214,0 +170770504739,213,0 +170770504787,213,0 +170770504836,213,0 +170770504884,213,0 +170770504932,213,0 +170770504982,213,0 +170770505031,213,0 +170770505081,213,0 +170770505129,213,0 +170770505177,214,0 +170770505226,214,0 +170770505276,214,0 +170770505325,214,0 +170770505373,214,0 +170770505421,214,0 +170770505470,214,0 +170770505520,213,0 +170770505568,214,0 +170770505617,214,0 +170770505665,213,0 +170770505715,213,0 +170770505763,213,0 +170770505812,213,0 +170770505860,213,0 +170770505908,213,0 +170770505956,213,0 +170770506003,213,0 +170770506051,214,0 +170770506099,213,0 +170770506147,213,0 +170770506195,214,0 +170770506242,214,0 +170770506290,214,0 +170770506338,214,0 +170770506386,214,0 +170770506433,214,0 +170770506481,214,0 +170770506531,213,0 +170770506578,213,0 +170770506628,213,0 +170770506675,213,0 +170770506723,213,0 +170770506771,213,0 +170770506819,213,0 +170770506867,213,0 +170770506915,213,0 +170770506963,213,0 +170770507010,214,0 +170770507058,214,0 +170770507106,214,0 +170770507154,214,0 +170770507202,214,0 +170770507250,214,0 +170770507299,213,0 +170770507347,214,0 +170770507396,214,0 +170770507444,213,0 +170770507492,213,0 +170770507542,213,0 +170770507591,213,0 +170770507639,213,0 +170770507689,213,0 +170770507737,214,0 +170770507786,213,0 +170770507834,214,0 +170770507882,214,0 +170770507931,214,0 +170770507981,214,0 +170770508029,214,0 +170770508077,214,0 +170770508125,214,0 +170770508173,214,0 +170770508222,214,0 +170770508271,215,0 +170770508321,214,0 +170770508370,213,0 +170770508418,213,0 +170770508466,213,0 +170770508516,214,0 +170770508564,214,0 +170770508612,214,0 +170770508659,214,0 +170770508707,214,0 +170770508757,214,0 +170770508805,214,0 +170770508852,214,0 +170770508900,214,0 +170770508950,215,0 +170770508997,215,0 +170770509045,215,0 +170770509093,214,0 +170770509141,215,0 +170770509189,214,0 +170770509238,213,0 +170770509286,213,0 +170770509334,213,0 +170770509382,213,0 +170770509430,213,0 +170770509477,214,0 +170770509527,214,0 +170770509575,214,0 +170770509622,214,0 +170770509670,214,0 +170770509718,214,0 +170770509766,214,0 +170770509815,214,0 +170770509863,214,0 +170770509911,215,0 +170770509959,214,0 +170770510007,214,0 +170770510054,214,0 +170770510102,214,0 +170770510150,213,0 +170770510200,213,0 +170770510248,213,0 +170770510295,213,0 +170770510343,213,0 +170770510391,213,0 +170770510439,213,0 +170770510487,213,0 +170770510535,213,0 +170770510583,214,0 +170770510632,214,0 +170770510680,214,0 +170770510728,214,0 +170770510777,214,0 +170770510825,214,0 +170770510874,214,0 +170770510922,214,0 +170770510970,214,0 +170770511018,213,0 +170770511066,213,0 +170770511114,213,0 +170770511163,213,0 +170770511211,213,0 +170770511259,213,0 +170770511308,213,0 +170770511356,213,0 +170770511404,214,0 +170770511452,214,0 +170770511499,214,0 +170770511547,214,0 +170770511595,214,0 +170770511643,214,0 +170770511691,214,0 +170770511739,214,0 +170770511787,215,0 +170770511834,214,0 +170770511882,214,0 +170770511930,213,0 +170770511978,213,0 +170770512027,213,0 +170770512077,213,0 +170770512125,213,0 +170770512174,213,0 +170770512224,213,0 +170770512272,214,0 +170770512321,214,0 +170770512371,214,0 +170770512420,214,0 +170770512468,214,0 +170770512518,214,0 +170770512565,214,0 +170770512613,214,0 +170770512661,214,0 +170770512709,214,0 +170770512759,214,0 +170770512807,213,0 +170770512856,213,0 +170770512904,213,0 +170770512954,213,0 +170770513002,213,0 +170770513050,214,0 +170770513099,214,0 +170770513147,214,0 +170770513195,214,0 +170770513243,214,0 +170770513291,214,0 +170770513339,214,0 +170770513388,215,0 +170770513438,214,0 +170770513487,214,0 +170770513535,214,0 +170770513585,215,0 +170770513633,214,0 +170770513681,214,0 +170770513729,213,0 +170770513776,213,0 +170770513824,213,0 +170770513872,213,0 +170770513922,213,0 +170770513970,214,0 +170770514018,214,0 +170770514067,214,0 +170770514117,214,0 +170770514166,214,0 +170770514216,214,0 +170770514265,214,0 +170770514313,214,0 +170770514363,214,0 +170770514411,215,0 +170770514458,215,0 +170770514506,214,0 +170770514554,214,0 +170770514602,213,0 +170770514652,213,0 +170770514701,213,0 +170770514749,213,0 +170770514797,213,0 +170770514845,213,0 +170770514893,214,0 +170770514942,214,0 +170770514990,214,0 +170770515038,214,0 +170770515086,214,0 +170770515135,214,0 +170770515185,215,0 +170770515233,215,0 +170770515281,215,0 +170770515330,215,0 +170770515380,215,0 +170770515428,214,0 +170770515476,214,0 +170770515524,213,0 +170770515573,213,0 +170770515621,213,0 +170770515669,213,0 +170770515717,214,0 +170770515765,214,0 +170770515814,214,0 +170770515862,214,0 +170770515910,214,0 +170770515960,214,0 +170770516007,214,0 +170770516055,214,0 +170770516103,215,0 +170770516151,215,0 +170770516199,214,0 +170770516249,215,0 +170770516298,214,0 +170770516346,214,0 +170770516396,214,0 +170770516444,213,0 +170770516492,213,0 +170770516540,214,0 +170770516587,213,0 +170770516635,214,0 +170770516685,214,0 +170770516733,214,0 +170770516781,214,0 +170770516829,214,0 +170770516878,214,0 +170770516926,215,0 +170770516974,215,0 +170770517022,215,0 +170770517071,215,0 +170770517121,215,0 +170770517170,215,0 +170770517220,215,0 +170770517268,214,0 +170770517316,213,0 +170770517364,213,0 +170770517412,213,0 +170770517460,213,0 +170770517508,214,0 +170770517555,214,0 +170770517603,214,0 +170770517651,214,0 +170770517701,214,0 +170770517749,214,0 +170770517798,215,0 +170770517848,214,0 +170770517896,214,0 +170770517944,214,0 +170770517992,214,0 +170770518039,214,0 +170770518087,215,0 +170770518137,214,0 +170770518185,214,0 +170770518233,213,0 +170770518282,213,0 +170770518330,213,0 +170770518378,213,0 +170770518428,214,0 +170770518477,214,0 +170770518525,214,0 +170770518573,214,0 +170770518621,214,0 +170770518669,214,0 +170770518717,214,0 +170770518765,215,0 +170770518814,214,0 +170770518864,215,0 +170770518912,215,0 +170770518960,215,0 +170770519007,215,0 +170770519056,214,0 +170770519104,213,0 +170770519152,213,0 +170770519200,213,0 +170770519250,213,0 +170770519297,213,0 +170770519345,213,0 +170770519393,214,0 +170770519443,214,0 +170770519491,214,0 +170770519540,214,0 +170770519588,214,0 +170770519636,214,0 +170770519684,214,0 +170770519732,215,0 +170770519780,215,0 +170770519828,215,0 +170770519876,215,0 +170770519925,214,0 +170770519975,214,0 +170770520023,213,0 +170770520071,213,0 +170770520118,213,0 +170770520166,213,0 +170770520214,213,0 +170770520262,213,0 +170770520311,213,0 +170770520359,214,0 +170770520407,214,0 +170770520455,214,0 +170770520503,214,0 +170770520551,215,0 +170770520600,215,0 +170770520648,215,0 +170770520698,215,0 +170770520746,215,0 +170770520795,215,0 +170770520843,214,0 +170770520891,213,0 +170770520939,213,0 +170770520988,213,0 +170770521038,213,0 +170770521086,213,0 +170770521134,214,0 +170770521182,214,0 +170770521229,214,0 +170770521277,214,0 +170770521325,214,0 +170770521373,214,0 +170770521421,214,0 +170770521471,214,0 +170770521518,215,0 +170770521566,215,0 +170770521616,215,0 +170770521664,215,0 +170770521712,214,0 +170770521760,214,0 +170770521808,213,0 +170770521856,213,0 +170770521903,213,0 +170770521951,213,0 +170770521999,213,0 +170770522047,213,0 +170770522095,213,0 +170770522143,214,0 +170770522191,214,0 +170770522238,214,0 +170770522286,214,0 +170770522334,214,0 +170770522382,214,0 +170770522430,214,0 +170770522478,215,0 +170770522526,215,0 +170770522574,215,0 +170770522622,214,0 +170770522671,214,0 +170770522721,213,0 +170770522768,213,0 +170770522816,213,0 +170770522864,213,0 +170770522914,213,0 +170770522962,213,0 +170770523009,214,0 +170770523057,214,0 +170770523107,214,0 +170770523155,214,0 +170770523203,214,0 +170770523251,214,0 +170770523300,214,0 +170770523350,215,0 +170770523398,215,0 +170770523446,215,0 +170770523494,214,0 +170770523542,214,0 +170770523590,213,0 +170770523639,213,0 +170770523687,213,0 +170770523737,213,0 +170770523784,213,0 +170770523834,213,0 +170770523883,213,0 +170770523931,213,0 +170770523979,213,0 +170770524029,214,0 +170770524078,214,0 +170770524126,214,0 +170770524174,214,0 +170770524222,214,0 +170770524270,214,0 +170770524318,215,0 +170770524366,215,0 +170770524414,215,0 +170770524462,214,0 +170770524510,213,0 +170770524558,213,0 +170770524607,213,0 +170770524655,213,0 +170770524703,213,0 +170770524752,213,0 +170770524800,214,0 +170770524848,214,0 +170770524896,214,0 +170770524944,214,0 +170770524994,214,0 +170770525042,214,0 +170770525089,214,0 +170770525137,215,0 +170770525185,214,0 +170770525233,215,0 +170770525282,214,0 +170770525330,214,0 +170770525378,213,0 +170770525426,213,0 +170770525474,213,0 +170770525521,213,0 +170770525569,213,0 +170770525618,213,0 +170770525666,214,0 +170770525716,214,0 +170770525765,213,0 +170770525815,214,0 +170770525863,214,0 +170770525911,214,0 +170770525960,214,0 +170770526008,215,0 +170770526056,214,0 +170770526103,214,0 +170770526151,215,0 +170770526199,214,0 +170770526249,214,0 +170770526298,213,0 +170770526346,213,0 +170770526394,213,0 +170770526444,213,0 +170770526491,213,0 +170770526541,213,0 +170770526589,214,0 +170770526637,214,0 +170770526685,214,0 +170770526734,214,0 +170770526782,214,0 +170770526830,214,0 +170770526878,214,0 +170770526927,214,0 +170770526975,214,0 +170770527023,215,0 +170770527071,216,0 +170770527121,214,0 +170770527168,213,0 +170770527218,213,0 +170770527266,213,0 +170770527314,213,0 +170770527363,213,0 +170770527411,213,0 +170770527459,213,0 +170770527507,214,0 +170770527555,214,0 +170770527604,214,0 +170770527652,214,0 +170770527700,214,0 +170770527750,214,0 +170770527799,214,0 +170770527849,215,0 +170770527898,214,0 +170770527946,215,0 +170770527995,214,0 +170770528043,214,0 +170770528093,213,0 +170770528141,213,0 +170770528190,213,0 +170770528240,213,0 +170770528288,213,0 +170770528337,213,0 +170770528387,213,0 +170770528435,214,0 +170770528483,214,0 +170770528531,214,0 +170770528579,214,0 +170770528626,214,0 +170770528676,215,0 +170770528724,214,0 +170770528772,215,0 +170770528820,214,0 +170770528868,214,0 +170770528916,215,0 +170770528964,214,0 +170770529012,213,0 +170770529059,213,0 +170770529109,214,0 +170770529157,214,0 +170770529206,214,0 +170770529256,214,0 +170770529304,214,0 +170770529353,214,0 +170770529401,214,0 +170770529451,214,0 +170770529500,214,0 +170770529550,215,0 +170770529599,215,0 +170770529647,215,0 +170770529695,215,0 +170770529745,215,0 +170770529793,214,0 +170770529840,214,0 +170770529890,213,0 +170770529939,214,0 +170770529987,214,0 +170770530035,214,0 +170770530083,214,0 +170770530133,214,0 +170770530181,214,0 +170770530230,214,0 +170770530278,215,0 +170770530328,215,0 +170770530376,215,0 +170770530424,215,0 +170770530472,215,0 +170770530520,215,0 +170770530569,215,0 +170770530619,215,0 +170770530667,215,0 +170770530714,214,0 +170770530762,214,0 +170770530810,214,0 +170770530860,214,0 +170770530909,214,0 +170770530957,214,0 +170770531007,214,0 +170770531056,214,0 +170770531106,214,0 +170770531155,215,0 +170770531203,215,0 +170770531251,215,0 +170770531299,215,0 +170770531347,215,0 +170770531396,215,0 +170770531444,215,0 +170770531494,215,0 +170770531542,215,0 +170770531590,215,0 +170770531639,214,0 +170770531687,213,0 +170770531737,213,0 +170770531786,213,0 +170770531834,213,0 +170770531882,214,0 +170770531930,214,0 +170770531978,214,0 +170770532027,214,0 +170770532077,214,0 +170770532125,215,0 +170770532173,215,0 +170770532221,215,0 +170770532268,215,0 +170770532318,215,0 +170770532368,215,0 +170770532416,215,0 +170770532465,215,0 +170770532513,214,0 +170770532561,213,0 +170770532609,213,0 +170770532658,213,0 +170770532706,213,0 +170770532754,213,0 +170770532804,214,0 +170770532853,214,0 +170770532903,214,0 +170770532952,214,0 +170770533000,214,0 +170770533050,214,0 +170770533098,214,0 +170770533146,214,0 +170770533193,214,0 +170770533241,215,0 +170770533289,215,0 +170770533337,214,0 +170770533385,214,0 +170770533433,214,0 +170770533482,213,0 +170770533530,213,0 +170770533580,213,0 +170770533628,213,0 +170770533677,213,0 +170770533725,213,0 +170770533773,213,0 +170770533821,213,0 +170770533871,214,0 +170770533918,214,0 +170770533966,214,0 +170770534016,214,0 +170770534065,214,0 +170770534113,214,0 +170770534163,214,0 +170770534211,215,0 +170770534260,214,0 +170770534310,215,0 +170770534358,213,0 +170770534406,213,0 +170770534455,213,0 +170770534503,213,0 +170770534551,213,0 +170770534600,213,0 +170770534648,213,0 +170770534696,213,0 +170770534744,213,0 +170770534794,214,0 +170770534842,214,0 +170770534890,214,0 +170770534938,214,0 +170770534987,214,0 +170770535035,214,0 +170770535085,214,0 +170770535133,214,0 +170770535181,214,0 +170770535229,214,0 +170770535278,213,0 +170770535326,213,0 +170770535374,213,0 +170770535424,213,0 +170770535472,213,0 +170770535521,213,0 +170770535571,213,0 +170770535619,213,0 +170770535667,214,0 +170770535715,214,0 +170770535764,214,0 +170770535812,214,0 +170770535860,215,0 +170770535908,215,0 +170770535956,215,0 +170770536004,215,0 +170770536053,215,0 +170770536103,214,0 +170770536151,213,0 +170770536199,213,0 +170770536247,213,0 +170770536295,213,0 +170770536343,213,0 +170770536390,213,0 +170770536438,213,0 +170770536488,214,0 +170770536536,214,0 +170770536585,214,0 +170770536633,214,0 +170770536681,214,0 +170770536731,214,0 +170770536779,214,0 +170770536827,215,0 +170770536875,215,0 +170770536923,215,0 +170770536971,215,0 +170770537020,214,0 +170770537070,213,0 +170770537119,213,0 +170770537169,213,0 +170770537218,213,0 +170770537266,213,0 +170770537314,213,0 +170770537364,213,0 +170770537413,213,0 +170770537461,214,0 +170770537511,214,0 +170770537559,214,0 +170770537607,214,0 +170770537655,214,0 +170770537704,214,0 +170770537754,215,0 +170770537801,215,0 +170770537851,215,0 +170770537900,214,0 +170770537950,213,0 +170770537998,213,0 +170770538047,213,0 +170770538095,213,0 +170770538143,213,0 +170770538191,213,0 +170770538241,214,0 +170770538289,213,0 +170770538336,214,0 +170770538384,214,0 +170770538434,214,0 +170770538482,214,0 +170770538531,214,0 +170770538581,214,0 +170770538629,215,0 +170770538677,214,0 +170770538726,214,0 +170770538774,214,0 +170770538822,213,0 +170770538870,213,0 +170770538918,213,0 +170770538967,213,0 +170770539015,213,0 +170770539065,213,0 +170770539113,213,0 +170770539161,213,0 +170770539209,213,0 +170770539257,214,0 +170770539306,214,0 +170770539354,214,0 +170770539402,214,0 +170770539452,214,0 +170770539501,214,0 +170770539549,214,0 +170770539598,214,0 +170770539648,214,0 +170770539696,214,0 +170770539744,213,0 +170770539791,213,0 +170770539841,213,0 +170770539890,213,0 +170770539938,213,0 +170770539986,213,0 +170770540036,213,0 +170770540084,213,0 +170770540132,213,0 +170770540180,214,0 +170770540228,214,0 +170770540277,214,0 +170770540327,214,0 +170770540375,214,0 +170770540422,214,0 +170770540470,214,0 +170770540518,214,0 +170770540566,215,0 +170770540614,213,0 +170770540664,213,0 +170770540713,213,0 +170770540761,213,0 +170770540810,213,0 +170770540860,213,0 +170770540908,213,0 +170770540957,213,0 +170770541005,213,0 +170770541053,214,0 +170770541101,214,0 +170770541149,214,0 +170770541199,214,0 +170770541248,214,0 +170770541298,214,0 +170770541345,215,0 +170770541393,215,0 +170770541441,214,0 +170770541489,214,0 +170770541537,213,0 +170770541586,213,0 +170770541634,213,0 +170770541682,213,0 +170770541730,213,0 +170770541778,213,0 +170770541826,213,0 +170770541874,213,0 +170770541922,214,0 +170770541970,214,0 +170770542019,214,0 +170770542067,214,0 +170770542115,214,0 +170770542163,214,0 +170770542211,214,0 +170770542258,215,0 +170770542306,214,0 +170770542354,214,0 +170770542402,213,0 +170770542450,213,0 +170770542499,213,0 +170770542547,213,0 +170770542597,213,0 +170770542645,213,0 +170770542693,214,0 +170770542741,214,0 +170770542788,214,0 +170770542836,214,0 +170770542884,214,0 +170770542932,214,0 +170770542980,214,0 +170770543028,215,0 +170770543076,215,0 +170770543125,215,0 +170770543175,215,0 +170770543223,215,0 +170770543272,214,0 +170770543320,214,0 +170770543370,213,0 +170770543418,214,0 +170770543466,214,0 +170770543515,214,0 +170770543565,214,0 +170770543615,214,0 +170770543662,214,0 +170770543712,214,0 +170770543760,214,0 +170770543808,214,0 +170770543857,214,0 +170770543907,215,0 +170770543956,215,0 +170770544006,215,0 +170770544055,215,0 +170770544105,215,0 +170770544154,214,0 +170770544204,213,0 +170770544254,214,0 +170770544302,213,0 +170770544349,214,0 +170770544397,214,0 +170770544447,214,0 +170770544494,214,0 +170770544542,214,0 +170770544590,214,0 +170770544638,214,0 +170770544688,215,0 +170770544736,214,0 +170770544784,214,0 +170770544832,214,0 +170770544880,215,0 +170770544927,215,0 +170770544975,215,0 +170770545023,214,0 +170770545071,214,0 +170770545119,214,0 +170770545167,213,0 +170770545215,213,0 +170770545265,214,0 +170770545313,214,0 +170770545362,214,0 +170770545412,214,0 +170770545460,214,0 +170770545509,214,0 +170770545559,214,0 +170770545606,214,0 +170770545654,215,0 +170770545704,214,0 +170770545752,215,0 +170770545800,215,0 +170770545848,214,0 +170770545897,215,0 +170770545945,214,0 +170770545994,214,0 +170770546042,213,0 +170770546090,214,0 +170770546138,214,0 +170770546188,214,0 +170770546235,214,0 +170770546283,214,0 +170770546331,214,0 +170770546379,214,0 +170770546429,215,0 +170770546478,215,0 +170770546526,214,0 +170770546574,215,0 +170770546622,215,0 +170770546670,215,0 +170770546718,215,0 +170770546765,215,0 +170770546813,214,0 +170770546861,214,0 +170770546911,214,0 +170770546960,214,0 +170770547010,214,0 +170770547059,214,0 +170770547109,214,0 +170770547157,214,0 +170770547205,214,0 +170770547252,215,0 +170770547300,215,0 +170770547350,214,0 +170770547398,215,0 +170770547446,215,0 +170770547495,215,0 +170770547543,215,0 +170770547591,215,0 +170770547641,215,0 +170770547689,215,0 +170770547738,215,0 +170770547786,214,0 +170770547834,214,0 +170770547882,214,0 +170770547930,214,0 +170770547978,214,0 +170770548026,214,0 +170770548074,214,0 +170770548122,214,0 +170770548170,214,0 +170770548218,215,0 +170770548266,215,0 +170770548315,215,0 +170770548363,215,0 +170770548411,215,0 +170770548459,215,0 +170770548508,215,0 +170770548556,215,0 +170770548606,214,0 +170770548654,214,0 +170770548702,213,0 +170770548750,213,0 +170770548798,213,0 +170770548846,213,0 +170770548894,213,0 +170770548941,213,0 +170770548991,214,0 +170770549039,214,0 +170770549087,214,0 +170770549135,214,0 +170770549184,215,0 +170770549232,214,0 +170770549280,215,0 +170770549330,215,0 +170770549379,215,0 +170770549429,215,0 +170770549477,215,0 +170770549525,214,0 +170770549572,213,0 +170770549620,213,0 +170770549668,213,0 +170770549718,213,0 +170770549766,213,0 +170770549815,213,0 +170770549865,213,0 +170770549913,213,0 +170770549961,213,0 +170770550010,214,0 +170770550060,214,0 +170770550109,214,0 +170770550157,214,0 +170770550205,214,0 +170770550253,214,0 +170770550301,214,0 +170770550349,215,0 +170770550397,215,0 +170770550446,215,0 +170770550494,213,0 +170770550544,213,0 +170770550593,213,0 +170770550643,213,0 +170770550691,213,0 +170770550740,213,0 +170770550788,213,0 +170770550836,213,0 +170770550884,213,0 +170770550932,214,0 +170770550982,214,0 +170770551030,214,0 +170770551079,214,0 +170770551127,214,0 +170770551175,214,0 +170770551223,214,0 +170770551271,214,0 +170770551319,214,0 +170770551368,213,0 +170770551416,213,0 +170770551464,213,0 +170770551514,213,0 +170770551562,213,0 +170770551611,213,0 +170770551661,213,0 +170770551709,213,0 +170770551756,213,0 +170770551806,214,0 +170770551854,214,0 +170770551902,214,0 +170770551950,214,0 +170770551999,214,0 +170770552047,214,0 +170770552095,214,0 +170770552145,214,0 +170770552193,214,0 +170770552242,214,0 +170770552290,213,0 +170770552340,213,0 +170770552389,213,0 +170770552437,213,0 +170770552485,213,0 +170770552534,214,0 +170770552582,214,0 +170770552630,214,0 +170770552678,214,0 +170770552726,214,0 +170770552774,215,0 +170770552822,214,0 +170770552872,215,0 +170770552920,214,0 +170770552969,215,0 +170770553017,215,0 +170770553065,214,0 +170770553114,215,0 +170770553164,214,0 +170770553213,213,0 +170770553261,213,0 +170770553311,213,0 +170770553359,213,0 +170770553408,213,0 +170770553456,213,0 +170770553506,214,0 +170770553553,214,0 +170770553603,214,0 +170770553651,214,0 +170770553700,214,0 +170770553748,214,0 +170770553796,214,0 +170770553844,215,0 +170770553892,215,0 +170770553940,215,0 +170770553988,215,0 +170770554036,214,0 +170770554085,213,0 +170770554135,213,0 +170770554183,213,0 +170770554231,213,0 +170770554279,213,0 +170770554328,213,0 +170770554376,213,0 +170770554424,213,0 +170770554472,214,0 +170770554520,214,0 +170770554568,214,0 +170770554615,214,0 +170770554665,214,0 +170770554713,214,0 +170770554761,214,0 +170770554809,214,0 +170770554857,215,0 +170770554906,214,0 +170770554954,214,0 +170770555002,213,0 +170770555050,213,0 +170770555098,213,0 +170770555146,213,0 +170770555195,213,0 +170770555245,213,0 +170770555294,213,0 +170770555342,213,0 +170770555390,214,0 +170770555438,214,0 +170770555488,214,0 +170770555536,214,0 +170770555583,214,0 +170770555631,214,0 +170770555679,214,0 +170770555729,215,0 +170770555777,214,0 +170770555825,214,0 +170770555873,213,0 +170770555921,213,0 +170770555970,213,0 +170770556018,213,0 +170770556066,213,0 +170770556114,213,0 +170770556162,213,0 +170770556211,213,0 +170770556261,213,0 +170770556309,214,0 +170770556358,214,0 +170770556408,214,0 +170770556457,214,0 +170770556507,215,0 +170770556555,214,0 +170770556604,214,0 +170770556652,215,0 +170770556702,214,0 +170770556750,214,0 +170770556798,213,0 +170770556846,213,0 +170770556894,213,0 +170770556943,213,0 +170770556991,213,0 +170770557039,213,0 +170770557088,213,0 +170770557136,213,0 +170770557184,213,0 +170770557232,213,0 +170770557280,214,0 +170770557328,214,0 +170770557376,214,0 +170770557425,214,0 +170770557473,214,0 +170770557521,214,0 +170770557571,214,0 +170770557619,214,0 +170770557667,213,0 +170770557714,213,0 +170770557763,213,0 +170770557811,213,0 +170770557860,213,0 +170770557908,213,0 +170770557956,213,0 +170770558004,213,0 +170770558052,213,0 +170770558100,213,0 +170770558149,214,0 +170770558199,214,0 +170770558248,214,0 +170770558296,214,0 +170770558344,214,0 +170770558392,214,0 +170770558440,214,0 +170770558489,214,0 +170770558537,214,0 +170770558585,213,0 +170770558633,213,0 +170770558681,213,0 +170770558729,213,0 +170770558777,214,0 +170770558827,214,0 +170770558874,214,0 +170770558924,214,0 +170770558972,214,0 +170770559021,214,0 +170770559069,214,0 +170770559117,215,0 +170770559165,214,0 +170770559213,215,0 +170770559261,215,0 +170770559309,215,0 +170770559359,215,0 +170770559408,214,0 +170770559458,213,0 +170770559506,213,0 +170770559553,213,0 +170770559601,213,0 +170770559649,214,0 +170770559697,214,0 +170770559745,214,0 +170770559795,214,0 +170770559843,215,0 +170770559891,214,0 +170770559939,214,0 +170770559986,214,0 +170770560036,215,0 +170770560085,214,0 +170770560133,214,0 +170770560183,214,0 +170770560232,215,0 +170770560282,215,0 +170770560331,214,0 +170770560379,213,0 +170770560429,213,0 +170770560477,213,0 +170770560525,214,0 +170770560573,214,0 +170770560622,214,0 +170770560672,214,0 +170770560720,214,0 +170770560769,214,0 +170770560817,214,0 +170770560865,214,0 +170770560913,214,0 +170770560961,215,0 +170770561009,215,0 +170770561056,215,0 +170770561104,215,0 +170770561152,214,0 +170770561200,214,0 +170770561250,214,0 +170770561298,213,0 +170770561346,213,0 +170770561395,214,0 +170770561443,214,0 +170770561491,214,0 +170770561539,214,0 +170770561587,214,0 +170770561636,214,0 +170770561686,214,0 +170770561735,214,0 +170770561785,214,0 +170770561833,214,0 +170770561881,215,0 +170770561929,214,0 +170770561977,215,0 +170770562025,214,0 +170770562073,214,0 +170770562120,214,0 +170770562170,213,0 +170770562218,213,0 +170770562266,213,0 +170770562314,213,0 +170770562362,213,0 +170770562410,213,0 +170770562458,214,0 +170770562505,214,0 +170770562553,214,0 +170770562603,214,0 +170770562653,214,0 +170770562700,214,0 +170770562750,214,0 +170770562799,215,0 +170770562847,215,0 +170770562895,214,0 +170770562943,215,0 +170770562991,215,0 +170770563039,214,0 +170770563087,213,0 +170770563135,213,0 +170770563183,213,0 +170770563233,213,0 +170770563282,213,0 +170770563332,214,0 +170770563380,214,0 +170770563428,213,0 +170770563476,214,0 +170770563523,214,0 +170770563573,214,0 +170770563621,214,0 +170770563669,215,0 +170770563718,214,0 +170770563768,215,0 +170770563816,215,0 +170770563864,215,0 +170770563913,214,0 +170770563961,213,0 +170770564011,213,0 +170770564059,213,0 +170770564107,213,0 +170770564154,213,0 +170770564202,213,0 +170770564252,214,0 +170770564300,214,0 +170770564349,214,0 +170770564399,214,0 +170770564448,214,0 +170770564496,215,0 +170770564544,215,0 +170770564592,215,0 +170770564642,215,0 +170770564691,215,0 +170770564739,215,0 +170770564787,214,0 +170770564835,213,0 +170770564885,213,0 +170770564934,213,0 +170770564982,214,0 +170770565030,214,0 +170770565079,214,0 +170770565127,214,0 +170770565175,214,0 +170770565223,214,0 +170770565271,214,0 +170770565321,215,0 +170770565370,214,0 +170770565418,215,0 +170770565468,215,0 +170770565516,215,0 +170770565564,215,0 +170770565613,215,0 +170770565661,214,0 +170770565711,214,0 +170770565759,213,0 +170770565807,213,0 +170770565856,214,0 +170770565906,214,0 +170770565955,214,0 +170770566003,214,0 +170770566052,214,0 +170770566100,214,0 +170770566148,214,0 +170770566196,214,0 +170770566244,215,0 +170770566294,215,0 +170770566342,215,0 +170770566390,215,0 +170770566438,215,0 +170770566487,215,0 +170770566535,215,0 +170770566583,215,0 +170770566631,213,0 +170770566680,213,0 +170770566730,213,0 +170770566780,213,0 +170770566829,213,0 +170770566879,213,0 +170770566927,214,0 +170770566974,214,0 +170770567022,214,0 +170770567070,214,0 +170770567120,214,0 +170770567168,214,0 +170770567216,214,0 +170770567265,214,0 +170770567313,215,0 +170770567363,215,0 +170770567411,215,0 +170770567460,215,0 +170770567508,214,0 +170770567558,213,0 +170770567606,213,0 +170770567654,213,0 +170770567702,213,0 +170770567750,213,0 +170770567798,214,0 +170770567847,214,0 +170770567895,214,0 +170770567943,214,0 +170770567993,214,0 +170770568042,214,0 +170770568090,214,0 +170770568138,214,0 +170770568187,215,0 +170770568237,214,0 +170770568286,214,0 +170770568334,214,0 +170770568382,214,0 +170770568430,213,0 +170770568480,213,0 +170770568528,213,0 +170770568576,213,0 +170770568625,213,0 +170770568673,213,0 +170770568723,214,0 +170770568772,213,0 +170770568820,214,0 +170770568870,214,0 +170770568919,214,0 +170770568969,214,0 +170770569018,214,0 +170770569066,215,0 +170770569114,214,0 +170770569162,214,0 +170770569210,215,0 +170770569258,215,0 +170770569308,214,0 +170770569355,213,0 +170770569405,213,0 +170770569453,213,0 +170770569501,214,0 +170770569548,213,0 +170770569596,214,0 +170770569644,214,0 +170770569692,214,0 +170770569740,214,0 +170770569788,214,0 +170770569835,215,0 +170770569883,215,0 +170770569931,214,0 +170770569979,215,0 +170770570027,215,0 +170770570076,215,0 +170770570126,215,0 +170770570174,214,0 +170770570222,213,0 +170770570271,213,0 +170770570319,213,0 +170770570367,214,0 +170770570415,213,0 +170770570462,214,0 +170770570512,214,0 +170770570559,214,0 +170770570607,214,0 +170770570655,214,0 +170770570703,214,0 +170770570751,214,0 +170770570799,214,0 +170770570846,214,0 +170770570894,215,0 +170770570942,215,0 +170770570990,214,0 +170770571038,214,0 +170770571086,214,0 +170770571134,213,0 +170770571181,213,0 +170770571229,213,0 +170770571277,213,0 +170770571325,213,0 +170770571373,213,0 +170770571421,213,0 +170770571470,214,0 +170770571518,214,0 +170770571566,214,0 +170770571613,214,0 +170770571661,214,0 +170770571709,214,0 +170770571757,214,0 +170770571806,214,0 +170770571854,215,0 +170770571902,215,0 +170770571952,214,0 +170770571999,213,0 +170770572047,213,0 +170770572095,213,0 +170770572145,213,0 +170770572194,213,0 +170770572244,214,0 +170770572292,214,0 +170770572341,214,0 +170770572389,214,0 +170770572439,214,0 +170770572486,214,0 +170770572534,214,0 +170770572584,214,0 +170770572633,215,0 +170770572683,215,0 +170770572732,215,0 +170770572782,215,0 +170770572831,215,0 +170770572879,214,0 +170770572927,213,0 +170770572975,213,0 +170770573023,213,0 +170770573073,213,0 +170770573121,214,0 +170770573169,214,0 +170770573217,214,0 +170770573266,214,0 +170770573314,214,0 +170770573362,214,0 +170770573410,214,0 +170770573458,214,0 +170770573507,214,0 +170770573557,215,0 +170770573605,215,0 +170770573653,215,0 +170770573700,214,0 +170770573748,214,0 +170770573796,214,0 +170770573846,213,0 +170770573894,213,0 +170770573942,213,0 +170770573991,213,0 +170770574039,214,0 +170770574087,214,0 +170770574135,214,0 +170770574183,214,0 +170770574231,214,0 +170770574280,214,0 +170770574330,214,0 +170770574379,215,0 +170770574427,214,0 +170770574475,215,0 +170770574523,215,0 +170770574571,215,0 +170770574618,214,0 +170770574666,214,0 +170770574716,213,0 +170770574764,213,0 +170770574813,213,0 +170770574861,213,0 +170770574911,214,0 +170770574959,214,0 +170770575006,214,0 +170770575056,214,0 +170770575104,214,0 +170770575151,214,0 +170770575199,214,0 +170770575247,215,0 +170770575295,215,0 +170770575343,215,0 +170770575391,215,0 +170770575439,215,0 +170770575487,215,0 +170770575536,214,0 +170770575584,213,0 +170770575632,213,0 +170770575682,213,0 +170770575730,213,0 +170770575779,213,0 +170770575827,213,0 +170770575875,213,0 +170770575923,213,0 +170770575971,213,0 +170770576019,213,0 +170770576066,213,0 +170770576116,214,0 +170770576164,214,0 +170770576212,214,0 +170770576259,214,0 +170770576307,214,0 +170770576355,214,0 +170770576403,214,0 +170770576451,214,0 +170770576498,213,0 +170770576546,213,0 +170770576596,213,0 +170770576644,213,0 +170770576692,213,0 +170770576741,213,0 +170770576791,213,0 +170770576839,213,0 +170770576886,213,0 +170770576936,213,0 +170770576984,214,0 +170770577033,214,0 +170770577083,214,0 +170770577131,214,0 +170770577179,214,0 +170770577226,214,0 +170770577274,214,0 +170770577322,214,0 +170770577370,214,0 +170770577418,213,0 +170770577466,213,0 +170770577516,213,0 +170770577564,213,0 +170770577612,213,0 +170770577661,214,0 +170770577709,213,0 +170770577757,214,0 +170770577805,214,0 +170770577853,214,0 +170770577901,214,0 +170770577950,214,0 +170770577998,214,0 +170770578046,214,0 +170770578094,214,0 +170770578142,214,0 +170770578190,214,0 +170770578239,214,0 +170770578287,213,0 +170770578336,213,0 +170770578384,213,0 +170770578434,213,0 +170770578482,214,0 +170770578530,214,0 +170770578579,214,0 +170770578627,214,0 +170770578677,214,0 +170770578725,214,0 +170770578772,214,0 +170770578822,214,0 +170770578870,215,0 +170770578918,215,0 +170770578965,215,0 +170770579013,215,0 +170770579061,214,0 +170770579109,215,0 +170770579158,214,0 +170770579206,213,0 +170770579256,213,0 +170770579304,213,0 +170770579352,213,0 +170770579401,214,0 +170770579451,214,0 +170770579498,214,0 +170770579546,214,0 +170770579596,214,0 +170770579644,214,0 +170770579693,214,0 +170770579741,214,0 +170770579789,214,0 +170770579837,215,0 +170770579886,215,0 +170770579934,215,0 +170770579984,215,0 +170770580032,214,0 +170770580079,214,0 +170770580127,213,0 +170770580177,213,0 +170770580226,213,0 +170770580276,213,0 +170770580324,213,0 +170770580373,213,0 +170770580421,213,0 +170770580469,213,0 +170770580517,214,0 +170770580565,214,0 +170770580614,214,0 +170770580662,214,0 +170770580710,214,0 +170770580760,214,0 +170770580809,214,0 +170770580857,214,0 +170770580905,214,0 +170770580953,214,0 +170770581001,213,0 +170770581049,213,0 +170770581098,213,0 +170770581148,213,0 +170770581197,213,0 +170770581245,213,0 +170770581295,213,0 +170770581342,213,0 +170770581392,214,0 +170770581441,214,0 +170770581491,214,0 +170770581539,214,0 +170770581587,214,0 +170770581636,215,0 +170770581684,214,0 +170770581732,214,0 +170770581780,214,0 +170770581828,214,0 +170770581876,213,0 +170770581924,213,0 +170770581972,213,0 +170770582021,213,0 +170770582069,214,0 +170770582117,213,0 +170770582166,213,0 +170770582216,214,0 +170770582264,214,0 +170770582312,214,0 +170770582360,214,0 +170770582408,214,0 +170770582456,215,0 +170770582503,215,0 +170770582551,215,0 +170770582599,215,0 +170770582649,215,0 +170770582697,214,0 +170770582745,214,0 +170770582794,213,0 +170770582844,213,0 +170770582892,213,0 +170770582940,214,0 +170770582988,213,0 +170770583035,214,0 +170770583083,214,0 +170770583133,214,0 +170770583183,214,0 +170770583230,214,0 +170770583278,214,0 +170770583328,214,0 +170770583376,215,0 +170770583424,215,0 +170770583472,215,0 +170770583520,215,0 +170770583568,215,0 +170770583617,214,0 +170770583665,214,0 +170770583713,213,0 +170770583761,213,0 +170770583810,213,0 +170770583860,213,0 +170770583909,213,0 +170770583957,213,0 +170770584005,213,0 +170770584053,214,0 +170770584101,213,0 +170770584150,214,0 +170770584198,214,0 +170770584246,214,0 +170770584296,214,0 +170770584344,214,0 +170770584392,215,0 +170770584440,214,0 +170770584487,214,0 +170770584535,214,0 +170770584583,213,0 +170770584633,213,0 +170770584681,213,0 +170770584729,213,0 +170770584777,213,0 +170770584825,213,0 +170770584874,213,0 +170770584922,214,0 +170770584970,214,0 +170770585018,214,0 +170770585066,214,0 +170770585114,214,0 +170770585163,214,0 +170770585211,214,0 +170770585261,214,0 +170770585309,214,0 +170770585357,214,0 +170770585406,215,0 +170770585454,214,0 +170770585502,213,0 +170770585550,213,0 +170770585600,213,0 +170770585648,213,0 +170770585696,213,0 +170770585745,213,0 +170770585795,214,0 +170770585844,214,0 +170770585892,214,0 +170770585940,214,0 +170770585990,214,0 +170770586039,215,0 +170770586089,214,0 +170770586137,214,0 +170770586185,215,0 +170770586234,215,0 +170770586282,215,0 +170770586330,214,0 +170770586378,213,0 +170770586426,213,0 +170770586474,213,0 +170770586522,214,0 +170770586570,214,0 +170770586619,214,0 +170770586669,214,0 +170770586718,214,0 +170770586768,214,0 +170770586816,214,0 +170770586864,215,0 +170770586912,215,0 +170770586961,214,0 +170770587009,215,0 +170770587057,215,0 +170770587107,215,0 +170770587154,215,0 +170770587202,214,0 +170770587250,214,0 +170770587300,214,0 +170770587349,214,0 +170770587399,214,0 +170770587447,214,0 +170770587496,214,0 +170770587544,214,0 +170770587594,214,0 +170770587642,214,0 +170770587691,215,0 +170770587739,214,0 +170770587787,215,0 +170770587836,215,0 +170770587884,215,0 +170770587934,215,0 +170770587982,215,0 +170770588030,215,0 +170770588078,215,0 +170770588127,214,0 +170770588175,213,0 +170770588223,213,0 +170770588271,214,0 +170770588319,214,0 +170770588367,214,0 +170770588416,214,0 +170770588465,214,0 +170770588514,214,0 +170770588562,214,0 +170770588610,215,0 +170770588659,215,0 +170770588707,215,0 +170770588757,215,0 +170770588806,215,0 +170770588854,215,0 +170770588904,215,0 +170770588953,215,0 +170770589001,215,0 +170770589049,214,0 +170770589097,213,0 +170770589145,213,0 +170770589194,213,0 +170770589244,213,0 +170770589292,214,0 +170770589340,214,0 +170770589389,214,0 +170770589437,214,0 +170770589485,214,0 +170770589534,215,0 +170770589584,214,0 +170770589634,215,0 +170770589683,215,0 +170770589733,215,0 +170770589782,215,0 +170770589830,215,0 +170770589878,215,0 +170770589926,214,0 +170770589976,213,0 +170770590023,213,0 +170770590071,213,0 +170770590119,213,0 +170770590167,213,0 +170770590217,213,0 +170770590266,214,0 +170770590314,214,0 +170770590362,214,0 +170770590410,214,0 +170770590458,214,0 +170770590506,214,0 +170770590556,214,0 +170770590605,215,0 +170770590653,215,0 +170770590701,215,0 +170770590751,215,0 +170770590799,214,0 +170770590848,214,0 +170770590896,213,0 +170770590945,213,0 +170770590995,213,0 +170770591043,213,0 +170770591091,213,0 +170770591140,213,0 +170770591190,213,0 +170770591239,214,0 +170770591287,214,0 +170770591335,214,0 +170770591383,214,0 +170770591431,214,0 +170770591479,214,0 +170770591528,214,0 +170770591576,214,0 +170770591626,215,0 +170770591675,214,0 +170770591725,214,0 +170770591775,213,0 +170770591823,213,0 +170770591872,213,0 +170770591920,213,0 +170770591970,213,0 +170770592018,213,0 +170770592065,213,0 +170770592113,213,0 +170770592161,213,0 +170770592211,214,0 +170770592259,214,0 +170770592308,214,0 +170770592356,214,0 +170770592406,214,0 +170770592455,214,0 +170770592503,214,0 +170770592551,215,0 +170770592600,214,0 +170770592650,214,0 +170770592699,213,0 +170770592747,213,0 +170770592795,213,0 +170770592845,213,0 +170770592893,213,0 +170770592941,213,0 +170770592990,213,0 +170770593038,213,0 +170770593088,214,0 +170770593137,214,0 +170770593187,214,0 +170770593235,214,0 +170770593283,214,0 +170770593331,214,0 +170770593379,214,0 +170770593428,214,0 +170770593476,214,0 +170770593525,214,0 +170770593575,213,0 +170770593623,213,0 +170770593671,213,0 +170770593719,213,0 +170770593767,213,0 +170770593814,213,0 +170770593862,213,0 +170770593910,213,0 +170770593958,214,0 +170770594008,214,0 +170770594055,214,0 +170770594103,214,0 +170770594151,214,0 +170770594199,214,0 +170770594247,214,0 +170770594295,214,0 +170770594342,214,0 +170770594390,214,0 +170770594440,214,0 +170770594489,213,0 +170770594539,213,0 +170770594586,213,0 +170770594634,213,0 +170770594684,213,0 +170770594732,213,0 +170770594781,213,0 +170770594829,213,0 +170770594877,213,0 +170770594925,214,0 +170770594975,214,0 +170770595023,214,0 +170770595071,214,0 +170770595120,214,0 +170770595168,214,0 +170770595218,214,0 +170770595265,214,0 +170770595315,214,0 +170770595363,213,0 +170770595411,213,0 +170770595460,213,0 +170770595510,213,0 +170770595558,213,0 +170770595606,213,0 +170770595654,213,0 +170770595702,213,0 +170770595750,213,0 +170770595799,213,0 +170770595847,214,0 +170770595896,214,0 +170770595944,214,0 +170770595992,214,0 +170770596042,214,0 +170770596091,214,0 +170770596141,214,0 +170770596190,214,0 +170770596238,213,0 +170770596286,213,0 +170770596336,213,0 +170770596385,213,0 +170770596433,213,0 +170770596481,213,0 +170770596529,214,0 +170770596577,214,0 +170770596625,214,0 +170770596673,214,0 +170770596723,214,0 +170770596771,215,0 +170770596820,214,0 +170770596868,215,0 +170770596917,215,0 +170770596967,214,0 +170770597015,214,0 +170770597064,215,0 +170770597112,214,0 +170770597160,213,0 +170770597208,213,0 +170770597255,213,0 +170770597303,213,0 +170770597351,214,0 +170770597399,214,0 +170770597447,214,0 +170770597495,214,0 +170770597544,214,0 +170770597592,214,0 +170770597640,214,0 +170770597689,214,0 +170770597737,214,0 +170770597785,215,0 +170770597834,215,0 +170770597882,214,0 +170770597930,214,0 +170770597978,214,0 +170770598026,214,0 +170770598076,213,0 +170770598123,213,0 +170770598171,213,0 +170770598219,213,0 +170770598269,214,0 +170770598317,214,0 +170770598365,214,0 +170770598412,214,0 +170770598460,214,0 +170770598508,214,0 +170770598558,214,0 +170770598606,214,0 +170770598654,214,0 +170770598702,214,0 +170770598750,214,0 +170770598799,214,0 +170770598847,215,0 +170770598895,214,0 +170770598943,213,0 +170770598991,213,0 +170770599039,213,0 +170770599087,213,0 +170770599136,213,0 +170770599184,214,0 +170770599233,214,0 +170770599281,214,0 +170770599331,214,0 +170770599380,214,0 +170770599430,214,0 +170770599477,214,0 +170770599525,215,0 +170770599573,215,0 +170770599621,215,0 +170770599669,215,0 +170770599719,214,0 +170770599768,214,0 +170770599816,214,0 +170770599864,213,0 +170770599912,213,0 +170770599960,213,0 +170770600009,213,0 +170770600057,214,0 +170770600105,214,0 +170770600153,214,0 +170770600203,214,0 +170770600251,214,0 +170770600298,214,0 +170770600346,214,0 +170770600394,214,0 +170770600442,215,0 +170770600490,214,0 +170770600540,215,0 +170770600589,215,0 +170770600637,214,0 +170770600685,214,0 +170770600733,213,0 +170770600781,213,0 +170770600828,213,0 +170770600876,213,0 +170770600924,214,0 +170770600972,214,0 +170770601020,214,0 +170770601068,214,0 +170770601116,214,0 +170770601165,214,0 +170770601213,214,0 +170770601261,214,0 +170770601311,214,0 +170770601359,215,0 +170770601408,214,0 +170770601456,215,0 +170770601504,215,0 +170770601553,214,0 +170770601601,214,0 +170770601651,213,0 +170770601700,213,0 +170770601748,213,0 +170770601796,213,0 +170770601844,213,0 +170770601892,214,0 +170770601940,214,0 +170770601989,214,0 +170770602039,214,0 +170770602087,214,0 +170770602135,214,0 +170770602184,214,0 +170770602232,215,0 +170770602280,215,0 +170770602329,215,0 +170770602379,215,0 +170770602427,215,0 +170770602475,214,0 +170770602523,213,0 +170770602570,213,0 +170770602618,213,0 +170770602666,213,0 +170770602714,213,0 +170770602762,213,0 +170770602810,213,0 +170770602859,214,0 +170770602907,214,0 +170770602955,214,0 +170770603003,214,0 +170770603052,214,0 +170770603100,214,0 +170770603148,214,0 +170770603196,214,0 +170770603246,215,0 +170770603294,215,0 +170770603342,214,0 +170770603390,214,0 +170770603439,213,0 +170770603488,213,0 +170770603536,213,0 +170770603586,213,0 +170770603634,213,0 +170770603683,213,0 +170770603731,213,0 +170770603779,214,0 +170770603829,214,0 +170770603877,214,0 +170770603924,214,0 +170770603972,214,0 +170770604020,214,0 +170770604068,214,0 +170770604116,214,0 +170770604165,214,0 +170770604213,215,0 +170770604263,215,0 +170770604311,213,0 +170770604359,213,0 +170770604407,213,0 +170770604455,213,0 +170770604503,213,0 +170770604552,213,0 +170770604600,213,0 +170770604648,213,0 +170770604697,213,0 +170770604745,214,0 +170770604793,214,0 +170770604841,214,0 +170770604889,214,0 +170770604937,214,0 +170770604985,214,0 +170770605033,214,0 +170770605081,214,0 +170770605130,214,0 +170770605178,214,0 +170770605226,213,0 +170770605276,213,0 +170770605325,213,0 +170770605373,213,0 +170770605421,213,0 +170770605470,213,0 +170770605518,214,0 +170770605566,213,0 +170770605614,214,0 +170770605662,214,0 +170770605710,214,0 +170770605759,214,0 +170770605807,214,0 +170770605855,214,0 +170770605903,215,0 +170770605953,214,0 +170770606001,214,0 +170770606050,214,0 +170770606098,213,0 +170770606147,213,0 +170770606195,213,0 +170770606243,213,0 +170770606291,213,0 +170770606339,213,0 +170770606389,213,0 +170770606438,214,0 +170770606486,214,0 +170770606536,214,0 +170770606584,214,0 +170770606633,214,0 +170770606681,214,0 +170770606729,214,0 +170770606779,214,0 +170770606827,214,0 +170770606876,215,0 +170770606924,215,0 +170770606972,214,0 +170770607021,213,0 +170770607071,213,0 +170770607119,213,0 +170770607168,213,0 +170770607216,213,0 +170770607264,213,0 +170770607314,214,0 +170770607363,214,0 +170770607413,214,0 +170770607461,214,0 +170770607509,214,0 +170770607557,214,0 +170770607606,215,0 +170770607654,215,0 +170770607702,215,0 +170770607750,214,0 +170770607800,214,0 +170770607849,214,0 +170770607899,213,0 +170770607946,213,0 +170770607994,213,0 +170770608044,213,0 +170770608094,213,0 +170770608141,213,0 +170770608189,213,0 +170770608239,214,0 +170770608287,214,0 +170770608336,214,0 +170770608386,215,0 +170770608434,214,0 +170770608482,214,0 +170770608529,215,0 +170770608577,215,0 +170770608625,215,0 +170770608673,215,0 +170770608721,215,0 +170770608769,214,0 +170770608817,213,0 +170770608866,213,0 +170770608914,213,0 +170770608962,213,0 +170770609010,213,0 +170770609060,213,0 +170770609108,214,0 +170770609156,214,0 +170770609204,214,0 +170770609252,214,0 +170770609301,214,0 +170770609349,214,0 +170770609397,215,0 +170770609445,214,0 +170770609493,215,0 +170770609540,214,0 +170770609588,215,0 +170770609638,215,0 +170770609688,213,0 +170770609736,213,0 +170770609783,213,0 +170770609831,213,0 +170770609881,213,0 +170770609929,213,0 +170770609979,213,0 +170770610028,213,0 +170770610076,214,0 +170770610124,214,0 +170770610173,214,0 +170770610221,214,0 +170770610269,214,0 +170770610317,214,0 +170770610365,214,0 +170770610413,214,0 +170770610461,214,0 +170770610509,214,0 +170770610557,214,0 +170770610605,213,0 +170770610652,213,0 +170770610700,213,0 +170770610750,213,0 +170770610798,213,0 +170770610846,213,0 +170770610894,214,0 +170770610942,213,0 +170770610990,214,0 +170770611037,214,0 +170770611085,214,0 +170770611133,214,0 +170770611181,214,0 +170770611229,214,0 +170770611277,214,0 +170770611325,214,0 +170770611373,214,0 +170770611421,214,0 +170770611469,213,0 +170770611517,213,0 +170770611566,213,0 +170770611614,213,0 +170770611664,213,0 +170770611713,214,0 +170770611761,213,0 +170770611809,213,0 +170770611859,214,0 +170770611907,214,0 +170770611955,214,0 +170770612003,214,0 +170770612051,214,0 +170770612099,214,0 +170770612146,214,0 +170770612194,215,0 +170770612242,215,0 +170770612290,215,0 +170770612338,214,0 +170770612386,213,0 +170770612434,213,0 +170770612482,213,0 +170770612531,213,0 +170770612579,213,0 +170770612627,213,0 +170770612675,214,0 +170770612723,213,0 +170770612771,214,0 +170770612819,214,0 +170770612868,214,0 +170770612918,214,0 +170770612968,214,0 +170770613017,214,0 +170770613065,214,0 +170770613113,214,0 +170770613161,214,0 +170770613209,215,0 +170770613257,214,0 +170770613304,213,0 +170770613352,213,0 +170770613400,213,0 +170770613448,213,0 +170770613496,214,0 +170770613545,214,0 +170770613593,214,0 +170770613641,214,0 +170770613689,214,0 +170770613737,214,0 +170770613784,214,0 +170770613832,215,0 +170770613880,215,0 +170770613928,215,0 +170770613976,214,0 +170770614024,214,0 +170770614071,214,0 +170770614121,214,0 +170770614169,214,0 +170770614218,214,0 +170770614266,214,0 +170770614316,214,0 +170770614365,214,0 +170770614413,214,0 +170770614463,214,0 +170770614512,214,0 +170770614560,214,0 +170770614608,215,0 +170770614656,215,0 +170770614704,215,0 +170770614752,215,0 +170770614802,215,0 +170770614851,215,0 +170770614899,215,0 +170770614948,214,0 +170770614996,214,0 +170770615044,214,0 +170770615094,214,0 +170770615142,214,0 +170770615191,214,0 +170770615239,214,0 +170770615287,214,0 +170770615335,214,0 +170770615384,214,0 +170770615432,214,0 +170770615480,214,0 +170770615528,214,0 +170770615576,214,0 +170770615624,214,0 +170770615672,215,0 +170770615720,215,0 +170770615768,214,0 +170770615817,215,0 +170770615865,214,0 +170770615913,214,0 +170770615961,213,0 +170770616009,213,0 +170770616057,213,0 +170770616106,213,0 +170770616156,214,0 +170770616205,214,0 +170770616253,214,0 +170770616303,214,0 +170770616352,214,0 +170770616400,214,0 +170770616448,214,0 +170770616496,214,0 +170770616544,215,0 +170770616592,215,0 +170770616640,215,0 +170770616688,214,0 +170770616736,215,0 +170770616784,215,0 +170770616832,214,0 +170770616880,213,0 +170770616929,213,0 +170770616977,214,0 +170770617025,214,0 +170770617074,214,0 +170770617122,214,0 +170770617170,214,0 +170770617218,214,0 +170770617268,214,0 +170770617315,214,0 +170770617363,214,0 +170770617413,215,0 +170770617462,215,0 +170770617512,215,0 +170770617560,215,0 +170770617608,215,0 +170770617656,215,0 +170770617705,214,0 +170770617753,213,0 +170770617801,213,0 +170770617849,213,0 +170770617898,213,0 +170770617948,214,0 +170770617996,214,0 +170770618044,214,0 +170770618092,214,0 +170770618139,214,0 +170770618187,214,0 +170770618237,215,0 +170770618285,215,0 +170770618334,215,0 +170770618382,214,0 +170770618432,215,0 +170770618481,214,0 +170770618529,215,0 +170770618577,214,0 +170770618627,214,0 +170770618676,213,0 +170770618724,213,0 +170770618773,213,0 +170770618823,213,0 +170770618872,214,0 +170770618920,214,0 +170770618968,214,0 +170770619018,214,0 +170770619066,214,0 +170770619115,214,0 +170770619163,214,0 +170770619211,215,0 +170770619259,215,0 +170770619307,215,0 +170770619354,215,0 +170770619402,215,0 +170770619450,215,0 +170770619498,214,0 +170770619547,213,0 +170770619595,213,0 +170770619643,213,0 +170770619691,213,0 +170770619739,213,0 +170770619787,213,0 +170770619835,214,0 +170770619883,214,0 +170770619933,214,0 +170770619982,214,0 +170770620032,214,0 +170770620080,214,0 +170770620127,214,0 +170770620175,214,0 +170770620223,215,0 +170770620271,215,0 +170770620319,215,0 +170770620367,214,0 +170770620415,214,0 +170770620463,213,0 +170770620511,213,0 +170770620559,213,0 +170770620607,213,0 +170770620655,213,0 +170770620702,213,0 +170770620752,213,0 +170770620801,214,0 +170770620849,214,0 +170770620899,214,0 +170770620948,214,0 +170770620998,214,0 +170770621046,214,0 +170770621095,214,0 +170770621143,215,0 +170770621191,215,0 +170770621239,215,0 +170770621287,214,0 +170770621335,213,0 +170770621384,213,0 +170770621432,213,0 +170770621480,213,0 +170770621528,213,0 +170770621576,213,0 +170770621624,213,0 +170770621672,213,0 +170770621720,214,0 +170770621768,214,0 +170770621817,214,0 +170770621866,214,0 +170770621914,214,0 +170770621962,214,0 +170770622010,214,0 +170770622058,214,0 +170770622106,214,0 +170770622154,214,0 +170770622202,214,0 +170770622251,213,0 +170770622301,213,0 +170770622349,213,0 +170770622397,213,0 +170770622445,213,0 +170770622493,214,0 +170770622542,214,0 +170770622590,213,0 +170770622640,213,0 +170770622688,214,0 +170770622736,214,0 +170770622785,214,0 +170770622835,214,0 +170770622884,214,0 +170770622934,214,0 +170770622981,215,0 +170770623031,215,0 +170770623081,214,0 +170770623129,213,0 +170770623178,213,0 +170770623226,213,0 +170770623276,213,0 +170770623324,213,0 +170770623373,213,0 +170770623421,214,0 +170770623471,214,0 +170770623518,214,0 +170770623566,214,0 +170770623614,214,0 +170770623662,214,0 +170770623710,214,0 +170770623760,214,0 +170770623808,214,0 +170770623856,214,0 +170770623905,214,0 +170770623955,215,0 +170770624002,214,0 +170770624050,213,0 +170770624098,213,0 +170770624146,213,0 +170770624194,213,0 +170770624242,213,0 +170770624290,213,0 +170770624339,213,0 +170770624387,214,0 +170770624437,214,0 +170770624486,214,0 +170770624534,214,0 +170770624582,214,0 +170770624632,214,0 +170770624680,215,0 +170770624729,215,0 +170770624777,215,0 +170770624827,215,0 +170770624874,214,0 +170770624922,213,0 +170770624970,213,0 +170770625020,213,0 +170770625069,213,0 +170770625117,213,0 +170770625167,213,0 +170770625216,213,0 +170770625264,213,0 +170770625312,213,0 +170770625360,214,0 +170770625408,214,0 +170770625456,214,0 +170770625505,214,0 +170770625553,214,0 +170770625601,214,0 +170770625649,214,0 +170770625699,214,0 +170770625748,214,0 +170770625796,214,0 +170770625844,213,0 +170770625892,213,0 +170770625940,213,0 +170770625988,213,0 +170770626036,213,0 +170770626084,213,0 +170770626133,213,0 +170770626181,213,0 +170770626229,213,0 +170770626279,213,0 +170770626326,213,0 +170770626374,213,0 +170770626422,214,0 +170770626470,214,0 +170770626518,214,0 +170770626566,214,0 +170770626613,214,0 +170770626661,214,0 +170770626709,213,0 +170770626759,213,0 +170770626807,213,0 +170770626856,213,0 +170770626904,213,0 +170770626952,213,0 +170770627000,213,0 +170770627048,213,0 +170770627095,213,0 +170770627143,213,0 +170770627191,213,0 +170770627239,213,0 +170770627287,214,0 +170770627335,214,0 +170770627383,214,0 +170770627430,214,0 +170770627480,214,0 +170770627529,214,0 +170770627577,214,0 +170770627625,213,0 +170770627673,213,0 +170770627721,213,0 +170770627770,213,0 +170770627820,213,0 +170770627869,213,0 +170770627917,213,0 +170770627965,213,0 +170770628013,214,0 +170770628061,213,0 +170770628109,214,0 +170770628156,214,0 +170770628204,214,0 +170770628252,214,0 +170770628300,214,0 +170770628348,214,0 +170770628395,214,0 +170770628443,214,0 +170770628491,213,0 +170770628539,213,0 +170770628587,213,0 +170770628635,213,0 +170770628683,213,0 +170770628732,213,0 +170770628780,213,0 +170770628828,213,0 +170770628875,213,0 +170770628923,213,0 +170770628972,214,0 +170770629020,214,0 +170770629068,214,0 +170770629116,214,0 +170770629164,214,0 +170770629212,214,0 +170770629259,214,0 +170770629307,214,0 +170770629355,214,0 +170770629403,213,0 +170770629452,213,0 +170770629500,213,0 +170770629550,213,0 +170770629598,213,0 +170770629646,214,0 +170770629694,213,0 +170770629743,214,0 +170770629791,214,0 +170770629839,214,0 +170770629889,214,0 +170770629937,214,0 +170770629985,214,0 +170770630032,214,0 +170770630080,215,0 +170770630128,214,0 +170770630176,215,0 +170770630226,215,0 +170770630274,214,0 +170770630322,213,0 +170770630371,213,0 +170770630421,213,0 +170770630470,214,0 +170770630518,214,0 +170770630567,214,0 +170770630617,214,0 +170770630665,214,0 +170770630712,214,0 +170770630760,214,0 +170770630808,215,0 +170770630856,215,0 +170770630904,215,0 +170770630952,215,0 +170770631000,215,0 +170770631049,215,0 +170770631097,215,0 +170770631145,214,0 +170770631194,214,0 +170770631242,214,0 +170770631290,214,0 +170770631338,214,0 +170770631387,214,0 +170770631435,214,0 +170770631483,214,0 +170770631531,215,0 +170770631580,215,0 +170770631628,215,0 +170770631678,215,0 +170770631727,215,0 +170770631777,215,0 +170770631825,215,0 +170770631873,215,0 +170770631920,215,0 +170770631968,215,0 +170770632018,214,0 +170770632066,214,0 +170770632115,214,0 +170770632165,214,0 +170770632213,215,0 +170770632261,214,0 +170770632309,215,0 +170770632357,215,0 +170770632405,214,0 +170770632452,214,0 +170770632500,215,0 +170770632548,215,0 +170770632596,215,0 +170770632644,215,0 +170770632692,215,0 +170770632739,215,0 +170770632787,214,0 +170770632835,215,0 +170770632883,215,0 +170770632931,215,0 +170770632979,213,0 +170770633027,213,0 +170770633074,214,0 +170770633122,214,0 +170770633170,214,0 +170770633218,214,0 +170770633266,214,0 +170770633314,214,0 +170770633362,214,0 +170770633409,214,0 +170770633457,214,0 +170770633505,214,0 +170770633553,214,0 +170770633601,215,0 +170770633649,215,0 +170770633697,214,0 +170770633744,215,0 +170770633794,214,0 +170770633842,215,0 +170770633891,213,0 +170770633939,214,0 +170770633987,213,0 +170770634037,214,0 +170770634085,214,0 +170770634133,214,0 +170770634180,214,0 +170770634230,214,0 +170770634278,214,0 +170770634326,214,0 +170770634374,214,0 +170770634422,215,0 +170770634470,215,0 +170770634518,215,0 +170770634566,215,0 +170770634615,215,0 +170770634663,215,0 +170770634711,214,0 +170770634760,214,0 +170770634808,214,0 +170770634858,214,0 +170770634907,214,0 +170770634955,214,0 +170770635003,214,0 +170770635053,214,0 +170770635102,214,0 +170770635151,214,0 +170770635199,214,0 +170770635249,214,0 +170770635297,215,0 +170770635345,215,0 +170770635394,215,0 +170770635444,215,0 +170770635493,215,0 +170770635543,214,0 +170770635591,214,0 +170770635639,215,0 +170770635686,213,0 +170770635734,213,0 +170770635782,214,0 +170770635830,213,0 +170770635877,214,0 +170770635925,214,0 +170770635973,214,0 +170770636021,214,0 +170770636069,214,0 +170770636116,214,0 +170770636166,215,0 +170770636215,214,0 +170770636263,215,0 +170770636311,215,0 +170770636359,215,0 +170770636408,215,0 +170770636456,215,0 +170770636504,214,0 +170770636552,213,0 +170770636600,213,0 +170770636649,213,0 +170770636699,213,0 +170770636747,213,0 +170770636794,213,0 +170770636844,213,0 +170770636892,214,0 +170770636940,214,0 +170770636989,214,0 +170770637037,214,0 +170770637085,214,0 +170770637133,214,0 +170770637181,214,0 +170770637229,214,0 +170770637277,214,0 +170770637326,214,0 +170770637374,214,0 +170770637422,214,0 +170770637470,213,0 +170770637520,213,0 +170770637567,213,0 +170770637615,213,0 +170770637665,213,0 +170770637714,213,0 +170770637764,213,0 +170770637812,214,0 +170770637860,213,0 +170770637909,214,0 +170770637957,214,0 +170770638007,214,0 +170770638056,214,0 +170770638104,215,0 +170770638152,214,0 +170770638202,214,0 +170770638251,215,0 +170770638301,215,0 +170770638348,213,0 +170770638396,213,0 +170770638444,213,0 +170770638492,213,0 +170770638542,213,0 +170770638590,213,0 +170770638638,214,0 +170770638687,214,0 +170770638737,214,0 +170770638786,214,0 +170770638834,214,0 +170770638884,214,0 +170770638933,214,0 +170770638983,214,0 +170770639032,215,0 +170770639080,214,0 +170770639130,214,0 +170770639180,214,0 +170770639229,214,0 +170770639277,213,0 +170770639325,213,0 +170770639373,213,0 +170770639422,213,0 +170770639470,213,0 +170770639520,213,0 +170770639568,213,0 +170770639617,214,0 +170770639665,214,0 +170770639715,214,0 +170770639764,214,0 +170770639812,214,0 +170770639860,214,0 +170770639908,214,0 +170770639958,214,0 +170770640006,214,0 +170770640053,214,0 +170770640101,214,0 +170770640149,213,0 +170770640199,213,0 +170770640247,213,0 +170770640295,213,0 +170770640343,213,0 +170770640390,213,0 +170770640438,213,0 +170770640486,213,0 +170770640534,213,0 +170770640583,214,0 +170770640631,214,0 +170770640679,214,0 +170770640729,214,0 +170770640776,214,0 +170770640824,214,0 +170770640874,215,0 +170770640922,214,0 +170770640970,214,0 +170770641018,213,0 +170770641065,213,0 +170770641115,213,0 +170770641164,213,0 +170770641212,213,0 +170770641262,213,0 +170770641311,213,0 +170770641359,213,0 +170770641407,214,0 +170770641455,213,0 +170770641503,213,0 +170770641551,214,0 +170770641600,214,0 +170770641650,214,0 +170770641698,214,0 +170770641746,214,0 +170770641795,214,0 +170770641843,215,0 +170770641891,214,0 +170770641941,213,0 +170770641988,213,0 +170770642036,213,0 +170770642084,213,0 +170770642132,213,0 +170770642180,213,0 +170770642228,213,0 +170770642276,213,0 +170770642324,214,0 +170770642373,213,0 +170770642423,214,0 +170770642471,214,0 +170770642519,214,0 +170770642566,214,0 +170770642614,214,0 +170770642662,214,0 +170770642712,214,0 +170770642761,214,0 +170770642811,214,0 +170770642859,213,0 +170770642907,213,0 +170770642955,213,0 +170770643004,213,0 +170770643052,213,0 +170770643100,213,0 +170770643148,213,0 +170770643197,213,0 +170770643245,213,0 +170770643293,213,0 +170770643343,214,0 +170770643391,214,0 +170770643440,214,0 +170770643488,214,0 +170770643537,215,0 +170770643585,215,0 +170770643635,214,0 +170770643682,214,0 +170770643730,213,0 +170770643780,213,0 +170770643829,213,0 +170770643877,213,0 +170770643925,213,0 +170770643973,213,0 +170770644022,213,0 +170770644072,213,0 +170770644122,214,0 +170770644169,213,0 +170770644217,214,0 +170770644267,214,0 +170770644315,214,0 +170770644363,214,0 +170770644412,214,0 +170770644462,214,0 +170770644509,214,0 +170770644559,214,0 +170770644607,214,0 +170770644655,213,0 +170770644703,213,0 +170770644752,213,0 +170770644800,213,0 +170770644849,213,0 +170770644897,213,0 +170770644945,213,0 +170770644994,213,0 +170770645042,214,0 +170770645090,213,0 +170770645138,214,0 +170770645188,214,0 +170770645236,214,0 +170770645283,214,0 +170770645331,214,0 +170770645381,214,0 +170770645429,214,0 +170770645477,214,0 +170770645525,215,0 +170770645573,215,0 +170770645620,215,0 +170770645668,215,0 +170770645718,215,0 +170770645766,215,0 +170770645815,215,0 +170770645865,214,0 +170770645914,214,0 +170770645962,213,0 +170770646012,213,0 +170770646060,213,0 +170770646107,213,0 +170770646157,213,0 +170770646205,214,0 +170770646253,214,0 +170770646301,214,0 +170770646348,214,0 +170770646396,214,0 +170770646446,214,0 +170770646494,214,0 +170770646541,214,0 +170770646589,214,0 +170770646637,215,0 +170770646685,215,0 +170770646735,215,0 +170770646784,215,0 +170770646832,214,0 +170770646880,213,0 +170770646927,213,0 +170770646975,213,0 +170770647023,213,0 +170770647071,214,0 +170770647121,214,0 +170770647168,214,0 +170770647216,214,0 +170770647266,214,0 +170770647314,214,0 +170770647362,214,0 +170770647411,215,0 +170770647459,215,0 +170770647507,214,0 +170770647555,215,0 +170770647604,215,0 +170770647652,214,0 +170770647701,215,0 +170770647749,213,0 +170770647797,213,0 +170770647845,214,0 +170770647893,214,0 +170770647941,214,0 +170770647989,214,0 +170770648037,214,0 +170770648085,214,0 +170770648133,214,0 +170770648181,214,0 +170770648230,214,0 +170770648278,215,0 +170770648326,215,0 +170770648374,215,0 +170770648422,215,0 +170770648470,214,0 +170770648519,214,0 +170770648567,214,0 +170770648617,214,0 +170770648665,214,0 +170770648712,214,0 +170770648760,214,0 +170770648810,214,0 +170770648859,214,0 +170770648907,214,0 +170770648955,214,0 +170770649005,214,0 +170770649053,214,0 +170770649101,215,0 +170770649149,214,0 +170770649197,215,0 +170770649245,215,0 +170770649294,214,0 +170770649342,215,0 +170770649390,215,0 +170770649438,214,0 +170770649488,214,0 +170770649535,213,0 +170770649585,213,0 +170770649633,213,0 +170770649682,213,0 +170770649730,213,0 +170770649778,214,0 +170770649826,214,0 +170770649874,214,0 +170770649922,214,0 +170770649970,214,0 +170770650017,214,0 +170770650065,214,0 +170770650113,214,0 +170770650161,215,0 +170770650210,215,0 +170770650260,215,0 +170770650309,215,0 +170770650359,214,0 +170770650407,214,0 +170770650455,213,0 +170770650503,213,0 +170770650552,213,0 +170770650600,213,0 +170770650650,213,0 +170770650697,214,0 +170770650747,213,0 +170770650795,214,0 +170770650843,214,0 +170770650891,214,0 +170770650939,214,0 +170770650987,214,0 +170770651035,214,0 +170770651082,214,0 +170770651130,214,0 +170770651180,215,0 +170770651228,215,0 +170770651276,214,0 +170770651325,213,0 +170770651373,213,0 +170770651421,213,0 +170770651471,213,0 +170770651519,214,0 +170770651567,214,0 +170770651616,214,0 +170770651664,214,0 +170770651714,214,0 +170770651762,214,0 +170770651809,214,0 +170770651857,214,0 +170770651907,215,0 +170770651956,215,0 +170770652004,214,0 +170770652054,215,0 +170770652102,214,0 +170770652151,214,0 +170770652199,214,0 +170770652247,213,0 +170770652295,213,0 +170770652343,213,0 +170770652391,214,0 +170770652439,214,0 +170770652487,214,0 +170770652535,214,0 +170770652583,214,0 +170770652631,214,0 +170770652679,215,0 +170770652727,214,0 +170770652775,215,0 +170770652822,215,0 +170770652872,215,0 +170770652920,215,0 +170770652968,215,0 +170770653016,214,0 +170770653064,214,0 +170770653112,213,0 +170770653160,213,0 +170770653209,214,0 +170770653257,213,0 +170770653305,213,0 +170770653355,214,0 +170770653403,214,0 +170770653451,214,0 +170770653500,214,0 +170770653548,214,0 +170770653596,215,0 +170770653644,215,0 +170770653692,214,0 +170770653739,214,0 +170770653787,215,0 +170770653835,215,0 +170770653883,214,0 +170770653931,215,0 +170770653980,214,0 +170770654030,213,0 +170770654077,213,0 +170770654125,213,0 +170770654173,213,0 +170770654221,213,0 +170770654269,213,0 +170770654317,214,0 +170770654365,214,0 +170770654414,214,0 +170770654462,215,0 +170770654510,214,0 +170770654557,214,0 +170770654607,214,0 +170770654655,214,0 +170770654704,215,0 +170770654752,215,0 +170770654800,215,0 +170770654848,215,0 +170770654896,214,0 +170770654944,213,0 +170770654992,213,0 +170770655040,213,0 +170770655087,213,0 +170770655137,213,0 +170770655185,214,0 +170770655234,213,0 +170770655282,214,0 +170770655330,214,0 +170770655378,214,0 +170770655426,214,0 +170770655474,214,0 +170770655522,214,0 +170770655569,214,0 +170770655617,214,0 +170770655665,214,0 +170770655715,215,0 +170770655763,214,0 +170770655810,213,0 +170770655858,213,0 +170770655906,213,0 +170770655954,213,0 +170770656003,213,0 +170770656051,213,0 +170770656099,214,0 +170770656149,213,0 +170770656197,214,0 +170770656245,214,0 +170770656294,214,0 +170770656342,214,0 +170770656390,214,0 +170770656438,215,0 +170770656486,215,0 +170770656533,215,0 +170770656581,214,0 +170770656629,214,0 +170770656677,213,0 +170770656727,213,0 +170770656776,213,0 +170770656824,213,0 +170770656872,213,0 +170770656922,214,0 +170770656971,213,0 +170770657021,214,0 +170770657069,214,0 +170770657117,214,0 +170770657166,214,0 +170770657216,214,0 +170770657265,214,0 +170770657313,214,0 +170770657361,214,0 +170770657410,215,0 +170770657458,214,0 +170770657506,214,0 +170770657554,214,0 +170770657602,213,0 +170770657650,213,0 +170770657698,213,0 +170770657746,213,0 +170770657796,213,0 +170770657844,214,0 +170770657891,214,0 +170770657939,214,0 +170770657987,214,0 +170770658035,214,0 +170770658083,214,0 +170770658131,214,0 +170770658181,214,0 +170770658229,215,0 +170770658277,215,0 +170770658324,215,0 +170770658374,214,0 +170770658422,214,0 +170770658470,213,0 +170770658517,213,0 +170770658565,213,0 +170770658613,213,0 +170770658663,213,0 +170770658712,214,0 +170770658760,214,0 +170770658809,214,0 +170770658857,214,0 +170770658907,214,0 +170770658955,214,0 +170770659003,214,0 +170770659050,214,0 +170770659100,214,0 +170770659148,215,0 +170770659195,215,0 +170770659243,215,0 +170770659291,215,0 +170770659339,214,0 +170770659387,214,0 +170770659435,213,0 +170770659484,214,0 +170770659532,214,0 +170770659580,214,0 +170770659627,214,0 +170770659675,214,0 +170770659725,214,0 +170770659773,214,0 +170770659820,214,0 +170770659868,215,0 +170770659916,215,0 +170770659964,215,0 +170770660012,215,0 +170770660060,215,0 +170770660108,215,0 +170770660155,214,0 +170770660203,214,0 +170770660251,214,0 +170770660299,214,0 +170770660347,214,0 +170770660395,214,0 +170770660444,214,0 +170770660492,214,0 +170770660541,214,0 +170770660589,214,0 +170770660637,214,0 +170770660685,214,0 +170770660733,214,0 +170770660781,215,0 +170770660828,215,0 +170770660876,215,0 +170770660924,215,0 +170770660972,215,0 +170770661020,215,0 +170770661068,214,0 +170770661117,214,0 +170770661165,213,0 +170770661213,213,0 +170770661261,213,0 +170770661309,213,0 +170770661356,213,0 +170770661406,214,0 +170770661455,214,0 +170770661505,214,0 +170770661553,214,0 +170770661600,214,0 +170770661648,214,0 +170770661696,215,0 +170770661744,215,0 +170770661792,215,0 +170770661840,215,0 +170770661888,215,0 +170770661936,215,0 +170770661983,215,0 +170770662033,214,0 +170770662081,213,0 +170770662128,213,0 +170770662176,213,0 +170770662224,214,0 +170770662272,214,0 +170770662320,214,0 +170770662368,214,0 +170770662416,214,0 +170770662463,214,0 +170770662511,214,0 +170770662559,214,0 +170770662607,214,0 +170770662655,215,0 +170770662703,214,0 +170770662751,214,0 +170770662800,214,0 +170770662848,214,0 +170770662898,214,0 +170770662946,213,0 +170770662995,213,0 +170770663043,213,0 +170770663093,213,0 +170770663141,213,0 +170770663190,213,0 +170770663240,214,0 +170770663289,214,0 +170770663339,214,0 +170770663388,214,0 +170770663436,214,0 +170770663484,214,0 +170770663533,214,0 +170770663581,215,0 +170770663631,214,0 +170770663679,214,0 +170770663726,214,0 +170770663774,215,0 +170770663822,214,0 +170770663870,213,0 +170770663918,213,0 +170770663966,213,0 +170770664014,213,0 +170770664062,213,0 +170770664109,213,0 +170770664157,214,0 +170770664205,213,0 +170770664253,214,0 +170770664301,214,0 +170770664349,214,0 +170770664396,214,0 +170770664444,214,0 +170770664492,215,0 +170770664540,214,0 +170770664588,215,0 +170770664636,214,0 +170770664683,214,0 +170770664731,213,0 +170770664779,213,0 +170770664827,213,0 +170770664875,213,0 +170770664922,213,0 +170770664970,213,0 +170770665018,213,0 +170770665066,213,0 +170770665114,213,0 +170770665162,213,0 +170770665209,214,0 +170770665257,214,0 +170770665305,214,0 +170770665355,214,0 +170770665404,214,0 +170770665452,214,0 +170770665500,215,0 +170770665549,214,0 +170770665597,214,0 +170770665645,213,0 +170770665693,213,0 +170770665741,213,0 +170770665788,213,0 +170770665836,213,0 +170770665884,213,0 +170770665934,213,0 +170770665981,213,0 +170770666031,213,0 +170770666079,214,0 +170770666127,214,0 +170770666176,214,0 +170770666224,214,0 +170770666272,214,0 +170770666320,214,0 +170770666369,214,0 +170770666417,214,0 +170770666467,214,0 +170770666515,213,0 +170770666564,213,0 +170770666612,213,0 +170770666662,213,0 +170770666710,213,0 +170770666758,213,0 +170770666807,213,0 +170770666855,214,0 +170770666903,214,0 +170770666951,214,0 +170770667000,214,0 +170770667048,214,0 +170770667096,214,0 +170770667144,214,0 +170770667191,214,0 +170770667239,214,0 +170770667287,214,0 +170770667335,214,0 +170770667385,214,0 +170770667433,213,0 +170770667482,213,0 +170770667530,213,0 +170770667578,213,0 +170770667626,213,0 +170770667674,213,0 +170770667721,214,0 +170770667769,213,0 +170770667817,214,0 +170770667865,214,0 +170770667913,214,0 +170770667961,214,0 +170770668009,214,0 +170770668057,214,0 +170770668104,214,0 +170770668152,215,0 +170770668200,214,0 +170770668248,214,0 +170770668296,214,0 +170770668344,213,0 +170770668391,213,0 +170770668439,213,0 +170770668489,213,0 +170770668536,213,0 +170770668584,214,0 +170770668632,214,0 +170770668682,214,0 +170770668730,214,0 +170770668777,214,0 +170770668825,214,0 +170770668875,214,0 +170770668923,214,0 +170770668971,214,0 +170770669019,214,0 +170770669066,215,0 +170770669114,215,0 +170770669162,215,0 +170770669212,213,0 +170770669260,213,0 +170770669307,213,0 +170770669357,213,0 +170770669405,213,0 +170770669454,213,0 +170770669504,214,0 +170770669551,214,0 +170770669601,214,0 +170770669650,214,0 +170770669698,214,0 +170770669746,214,0 +170770669794,214,0 +170770669842,214,0 +170770669890,215,0 +170770669937,214,0 +170770669985,214,0 +170770670033,214,0 +170770670081,214,0 +170770670129,213,0 +170770670179,213,0 +170770670228,213,0 +170770670278,214,0 +170770670326,213,0 +170770670375,214,0 +170770670423,214,0 +170770670471,214,0 +170770670519,214,0 +170770670566,214,0 +170770670614,214,0 +170770670662,214,0 +170770670711,214,0 +170770670761,215,0 +170770670810,215,0 +170770670858,215,0 +170770670908,215,0 +170770670955,214,0 +170770671003,213,0 +170770671051,213,0 +170770671101,213,0 +170770671149,213,0 +170770671196,214,0 +170770671244,214,0 +170770671292,214,0 +170770671340,214,0 +170770671388,214,0 +170770671436,214,0 +170770671483,214,0 +170770671531,214,0 +170770671581,214,0 +170770671630,215,0 +170770671678,215,0 +170770671727,214,0 +170770671775,214,0 +170770671823,214,0 +170770671871,213,0 +170770671918,213,0 +170770671966,213,0 +170770672014,213,0 +170770672062,213,0 +170770672110,213,0 +170770672157,214,0 +170770672205,214,0 +170770672253,214,0 +170770672301,214,0 +170770672349,214,0 +170770672397,214,0 +170770672444,214,0 +170770672494,214,0 +170770672543,215,0 +170770672591,215,0 +170770672639,215,0 +170770672687,214,0 +170770672736,215,0 +170770672784,214,0 +170770672834,214,0 +170770672881,214,0 +170770672929,214,0 +170770672979,214,0 +170770673028,214,0 +170770673076,214,0 +170770673126,214,0 +170770673174,214,0 +170770673221,215,0 +170770673269,215,0 +170770673317,214,0 +170770673365,214,0 +170770673413,215,0 +170770673461,215,0 +170770673509,214,0 +170770673558,215,0 +170770673606,215,0 +170770673653,214,0 +170770673701,213,0 +170770673749,214,0 +170770673799,214,0 +170770673847,214,0 +170770673895,214,0 +170770673942,214,0 +170770673992,214,0 +170770674041,214,0 +170770674089,214,0 +170770674137,215,0 +170770674185,215,0 +170770674233,214,0 +170770674281,215,0 +170770674328,215,0 +170770674376,215,0 +170770674424,215,0 +170770674472,215,0 +170770674520,214,0 +170770674569,214,0 +170770674617,214,0 +170770674665,214,0 +170770674714,214,0 +170770674762,214,0 +170770674810,214,0 +170770674860,214,0 +170770674908,214,0 +170770674957,215,0 +170770675007,215,0 +170770675054,215,0 +170770675102,215,0 +170770675152,215,0 +170770675202,215,0 +170770675251,215,0 +170770675301,215,0 +170770675350,215,0 +170770675398,214,0 +170770675448,214,0 +170770675496,213,0 +170770675544,214,0 +170770675591,214,0 +170770675641,214,0 +170770675689,214,0 +170770675736,214,0 +170770675784,214,0 +170770675832,214,0 +170770675880,214,0 +170770675928,215,0 +170770675976,215,0 +170770676025,215,0 +170770676073,215,0 +170770676121,215,0 +170770676169,214,0 +170770676217,214,0 +170770676265,215,0 +170770676313,214,0 +170770676361,213,0 +170770676408,213,0 +170770676458,214,0 +170770676506,214,0 +170770676555,214,0 +170770676605,214,0 +170770676653,214,0 +170770676701,214,0 +170770676750,215,0 +170770676800,214,0 +170770676848,214,0 +170770676896,215,0 +170770676944,215,0 +170770676992,215,0 +170770677039,215,0 +170770677087,215,0 +170770677137,215,0 +170770677185,215,0 +170770677233,213,0 +170770677281,213,0 +170770677329,213,0 +170770677378,213,0 +170770677426,214,0 +170770677474,214,0 +170770677524,214,0 +170770677572,214,0 +170770677620,214,0 +170770677669,214,0 +170770677717,214,0 +170770677767,215,0 +170770677815,215,0 +170770677864,215,0 +170770677912,215,0 +170770677962,214,0 +170770678011,214,0 +170770678061,214,0 +170770678108,213,0 +170770678156,213,0 +170770678204,213,0 +170770678252,213,0 +170770678300,213,0 +170770678348,213,0 +170770678396,213,0 +170770678443,213,0 +170770678493,214,0 +170770678541,214,0 +170770678590,214,0 +170770678640,214,0 +170770678687,214,0 +170770678735,214,0 +170770678783,215,0 +170770678831,215,0 +170770678879,215,0 +170770678927,214,0 +170770678975,214,0 +170770679023,213,0 +170770679071,213,0 +170770679119,213,0 +170770679167,213,0 +170770679215,213,0 +170770679264,213,0 +170770679314,213,0 +170770679362,213,0 +170770679410,213,0 +170770679458,214,0 +170770679505,214,0 +170770679553,214,0 +170770679603,214,0 +170770679650,214,0 +170770679700,214,0 +170770679748,214,0 +170770679796,214,0 +170770679843,214,0 +170770679891,213,0 +170770679939,213,0 +170770679987,213,0 diff --git a/laser_value/0212-13.csv b/laser_value/0212-13.csv new file mode 100644 index 0000000..7fc6c16 --- /dev/null +++ b/laser_value/0212-13.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170770680035,213,0 +170770680083,213,0 +170770680133,213,0 +170770680180,213,0 +170770680228,213,0 +170770680278,213,0 +170770680325,214,0 +170770680373,214,0 +170770680423,214,0 +170770680472,214,0 +170770680520,214,0 +170770680568,214,0 +170770680616,214,0 +170770680665,214,0 +170770680715,214,0 +170770680763,215,0 +170770680811,213,0 +170770680859,213,0 +170770680908,213,0 +170770680956,213,0 +170770681005,213,0 +170770681053,213,0 +170770681103,213,0 +170770681152,213,0 +170770681200,214,0 +170770681248,214,0 +170770681298,214,0 +170770681346,214,0 +170770681394,214,0 +170770681441,214,0 +170770681491,214,0 +170770681539,214,0 +170770681586,214,0 +170770681634,215,0 +170770681682,213,0 +170770681730,213,0 +170770681778,213,0 +170770681826,213,0 +170770681874,213,0 +170770681922,213,0 +170770681971,213,0 +170770682019,213,0 +170770682068,213,0 +170770682118,214,0 +170770682167,214,0 +170770682217,214,0 +170770682266,214,0 +170770682314,214,0 +170770682362,214,0 +170770682410,214,0 +170770682460,215,0 +170770682509,215,0 +170770682557,214,0 +170770682605,213,0 +170770682654,213,0 +170770682702,213,0 +170770682752,213,0 +170770682800,213,0 +170770682848,213,0 +170770682896,213,0 +170770682945,213,0 +170770682993,214,0 +170770683041,214,0 +170770683089,214,0 +170770683137,214,0 +170770683184,215,0 +170770683232,215,0 +170770683280,215,0 +170770683330,214,0 +170770683378,215,0 +170770683427,214,0 +170770683477,213,0 +170770683524,213,0 +170770683572,213,0 +170770683620,213,0 +170770683668,213,0 +170770683716,213,0 +170770683764,213,0 +170770683812,214,0 +170770683861,214,0 +170770683909,214,0 +170770683957,214,0 +170770684005,214,0 +170770684053,214,0 +170770684103,214,0 +170770684151,214,0 +170770684199,214,0 +170770684247,214,0 +170770684294,214,0 +170770684342,214,0 +170770684390,213,0 +170770684440,213,0 +170770684488,213,0 +170770684537,213,0 +170770684587,213,0 +170770684636,213,0 +170770684685,214,0 +170770684733,214,0 +170770684783,214,0 +170770684831,214,0 +170770684880,214,0 +170770684928,214,0 +170770684978,214,0 +170770685026,215,0 +170770685074,214,0 +170770685122,214,0 +170770685170,214,0 +170770685219,214,0 +170770685269,213,0 +170770685317,213,0 +170770685365,213,0 +170770685412,213,0 +170770685460,213,0 +170770685510,214,0 +170770685558,214,0 +170770685606,214,0 +170770685655,214,0 +170770685703,214,0 +170770685751,214,0 +170770685799,214,0 +170770685848,214,0 +170770685898,214,0 +170770685947,214,0 +170770685995,215,0 +170770686045,215,0 +170770686093,215,0 +170770686142,214,0 +170770686192,213,0 +170770686240,213,0 +170770686289,213,0 +170770686337,214,0 +170770686385,214,0 +170770686433,214,0 +170770686481,214,0 +170770686530,214,0 +170770686578,214,0 +170770686628,214,0 +170770686676,214,0 +170770686724,215,0 +170770686772,215,0 +170770686821,215,0 +170770686871,215,0 +170770686919,215,0 +170770686967,214,0 +170770687015,215,0 +170770687063,213,0 +170770687110,213,0 +170770687158,213,0 +170770687206,214,0 +170770687254,214,0 +170770687304,214,0 +170770687352,214,0 +170770687399,214,0 +170770687447,214,0 +170770687495,214,0 +170770687543,214,0 +170770687591,215,0 +170770687641,215,0 +170770687689,215,0 +170770687737,215,0 +170770687785,215,0 +170770687833,214,0 +170770687881,214,0 +170770687930,214,0 +170770687978,213,0 +170770688026,213,0 +170770688074,214,0 +170770688122,214,0 +170770688171,214,0 +170770688219,214,0 +170770688269,214,0 +170770688317,214,0 +170770688366,214,0 +170770688416,214,0 +170770688464,215,0 +170770688512,215,0 +170770688560,215,0 +170770688609,215,0 +170770688659,215,0 +170770688707,215,0 +170770688755,214,0 +170770688803,214,0 +170770688850,214,0 +170770688900,213,0 +170770688948,213,0 +170770688996,213,0 +170770689045,213,0 +170770689093,214,0 +170770689141,214,0 +170770689189,214,0 +170770689237,214,0 +170770689287,214,0 +170770689335,214,0 +170770689383,215,0 +170770689430,215,0 +170770689480,215,0 +170770689530,215,0 +170770689577,215,0 +170770689625,215,0 +170770689675,214,0 +170770689723,214,0 +170770689771,213,0 +170770689820,213,0 +170770689870,213,0 +170770689919,214,0 +170770689969,214,0 +170770690018,214,0 +170770690068,214,0 +170770690116,214,0 +170770690164,214,0 +170770690212,214,0 +170770690260,214,0 +170770690308,214,0 +170770690357,215,0 +170770690405,215,0 +170770690453,215,0 +170770690502,215,0 +170770690550,215,0 +170770690600,215,0 +170770690649,213,0 +170770690697,213,0 +170770690747,213,0 +170770690796,213,0 +170770690844,214,0 +170770690894,214,0 +170770690942,214,0 +170770690991,214,0 +170770691039,214,0 +170770691088,214,0 +170770691136,214,0 +170770691184,215,0 +170770691232,214,0 +170770691282,215,0 +170770691330,215,0 +170770691378,215,0 +170770691426,215,0 +170770691474,214,0 +170770691522,214,0 +170770691571,213,0 +170770691619,213,0 +170770691667,213,0 +170770691715,213,0 +170770691763,214,0 +170770691810,213,0 +170770691858,213,0 +170770691906,214,0 +170770691954,213,0 +170770692002,214,0 +170770692050,214,0 +170770692099,214,0 +170770692147,214,0 +170770692195,214,0 +170770692243,214,0 +170770692290,214,0 +170770692338,214,0 +170770692388,214,0 +170770692436,213,0 +170770692483,213,0 +170770692531,213,0 +170770692579,213,0 +170770692629,213,0 +170770692678,213,0 +170770692728,213,0 +170770692777,213,0 +170770692825,213,0 +170770692873,213,0 +170770692921,213,0 +170770692969,214,0 +170770693016,214,0 +170770693064,214,0 +170770693112,214,0 +170770693160,214,0 +170770693208,214,0 +170770693256,214,0 +170770693304,214,0 +170770693351,213,0 +170770693399,213,0 +170770693447,213,0 +170770693495,213,0 +170770693543,213,0 +170770693591,213,0 +170770693638,213,0 +170770693686,213,0 +170770693734,213,0 +170770693782,213,0 +170770693829,214,0 +170770693877,214,0 +170770693925,214,0 +170770693973,214,0 +170770694022,214,0 +170770694072,214,0 +170770694119,214,0 +170770694169,214,0 +170770694216,214,0 +170770694264,213,0 +170770694312,213,0 +170770694360,213,0 +170770694408,213,0 +170770694458,213,0 +170770694506,213,0 +170770694555,213,0 +170770694603,213,0 +170770694651,214,0 +170770694699,214,0 +170770694747,214,0 +170770694795,214,0 +170770694843,214,0 +170770694891,214,0 +170770694939,215,0 +170770694987,215,0 +170770695034,215,0 +170770695084,215,0 +170770695132,213,0 +170770695181,213,0 +170770695229,213,0 +170770695279,213,0 +170770695327,213,0 +170770695375,213,0 +170770695422,213,0 +170770695470,213,0 +170770695518,213,0 +170770695567,214,0 +170770695615,214,0 +170770695663,214,0 +170770695711,214,0 +170770695760,214,0 +170770695808,214,0 +170770695856,215,0 +170770695904,215,0 +170770695952,215,0 +170770696001,214,0 +170770696049,213,0 +170770696097,213,0 +170770696145,213,0 +170770696195,213,0 +170770696242,213,0 +170770696290,213,0 +170770696338,213,0 +170770696388,213,0 +170770696435,214,0 +170770696483,214,0 +170770696531,214,0 +170770696580,214,0 +170770696630,214,0 +170770696678,214,0 +170770696726,215,0 +170770696774,215,0 +170770696822,215,0 +170770696871,215,0 +170770696919,213,0 +170770696967,213,0 +170770697015,213,0 +170770697062,213,0 +170770697112,213,0 +170770697161,213,0 +170770697209,214,0 +170770697257,213,0 +170770697305,214,0 +170770697353,214,0 +170770697401,214,0 +170770697449,214,0 +170770697497,214,0 +170770697544,214,0 +170770697592,215,0 +170770697640,215,0 +170770697688,215,0 +170770697736,215,0 +170770697786,214,0 +170770697835,213,0 +170770697883,213,0 +170770697932,213,0 +170770697980,213,0 +170770698028,213,0 +170770698078,214,0 +170770698127,214,0 +170770698175,214,0 +170770698225,214,0 +170770698273,214,0 +170770698322,214,0 +170770698370,214,0 +170770698420,214,0 +170770698469,215,0 +170770698519,215,0 +170770698567,215,0 +170770698616,215,0 +170770698666,214,0 +170770698714,213,0 +170770698762,213,0 +170770698810,213,0 +170770698859,213,0 +170770698907,213,0 +170770698957,213,0 +170770699005,214,0 +170770699053,213,0 +170770699101,214,0 +170770699149,214,0 +170770699196,214,0 +170770699246,214,0 +170770699295,214,0 +170770699345,214,0 +170770699393,215,0 +170770699441,214,0 +170770699490,215,0 +170770699540,214,0 +170770699589,214,0 +170770699639,213,0 +170770699688,213,0 +170770699738,213,0 +170770699786,213,0 +170770699834,213,0 +170770699883,213,0 +170770699933,213,0 +170770699981,214,0 +170770700029,214,0 +170770700077,214,0 +170770700125,214,0 +170770700174,214,0 +170770700221,214,0 +170770700269,214,0 +170770700319,214,0 +170770700368,214,0 +170770700416,214,0 +170770700464,215,0 +170770700513,213,0 +170770700561,213,0 +170770700609,213,0 +170770700657,213,0 +170770700705,214,0 +170770700753,213,0 +170770700801,214,0 +170770700849,214,0 +170770700899,214,0 +170770700948,214,0 +170770700996,214,0 +170770701044,214,0 +170770701092,214,0 +170770701140,215,0 +170770701189,215,0 +170770701237,215,0 +170770701287,214,0 +170770701335,215,0 +170770701384,214,0 +170770701432,214,0 +170770701480,213,0 +170770701530,213,0 +170770701579,213,0 +170770701627,213,0 +170770701676,214,0 +170770701726,214,0 +170770701774,214,0 +170770701822,214,0 +170770701869,215,0 +170770701917,214,0 +170770701965,214,0 +170770702015,215,0 +170770702062,214,0 +170770702112,215,0 +170770702161,214,0 +170770702211,214,0 +170770702259,214,0 +170770702307,213,0 +170770702356,214,0 +170770702406,213,0 +170770702455,214,0 +170770702505,214,0 +170770702553,214,0 +170770702601,214,0 +170770702649,214,0 +170770702698,214,0 +170770702748,214,0 +170770702797,214,0 +170770702847,214,0 +170770702895,214,0 +170770702943,215,0 +170770702992,215,0 +170770703040,214,0 +170770703090,215,0 +170770703138,214,0 +170770703187,214,0 +170770703235,213,0 +170770703284,213,0 +170770703334,213,0 +170770703382,213,0 +170770703430,214,0 +170770703478,214,0 +170770703525,214,0 +170770703573,214,0 +170770703623,214,0 +170770703671,214,0 +170770703718,214,0 +170770703766,214,0 +170770703814,214,0 +170770703862,215,0 +170770703912,214,0 +170770703959,214,0 +170770704007,214,0 +170770704057,214,0 +170770704105,213,0 +170770704154,213,0 +170770704202,214,0 +170770704252,214,0 +170770704300,213,0 +170770704349,214,0 +170770704397,214,0 +170770704445,214,0 +170770704495,214,0 +170770704543,214,0 +170770704591,214,0 +170770704638,215,0 +170770704686,215,0 +170770704736,215,0 +170770704785,214,0 +170770704835,215,0 +170770704883,215,0 +170770704932,214,0 +170770704980,214,0 +170770705028,213,0 +170770705077,213,0 +170770705125,213,0 +170770705173,213,0 +170770705223,213,0 +170770705272,213,0 +170770705320,214,0 +170770705368,214,0 +170770705416,214,0 +170770705464,214,0 +170770705512,214,0 +170770705560,214,0 +170770705608,214,0 +170770705657,215,0 +170770705705,214,0 +170770705754,215,0 +170770705802,215,0 +170770705850,214,0 +170770705900,213,0 +170770705948,213,0 +170770705996,213,0 +170770706043,213,0 +170770706091,213,0 +170770706141,213,0 +170770706190,213,0 +170770706238,213,0 +170770706286,214,0 +170770706335,214,0 +170770706385,214,0 +170770706433,214,0 +170770706481,214,0 +170770706529,214,0 +170770706577,215,0 +170770706624,214,0 +170770706674,215,0 +170770706723,215,0 +170770706771,215,0 +170770706821,213,0 +170770706869,213,0 +170770706917,213,0 +170770706965,213,0 +170770707014,213,0 +170770707063,213,0 +170770707111,214,0 +170770707159,214,0 +170770707207,214,0 +170770707255,214,0 +170770707303,214,0 +170770707351,214,0 +170770707399,214,0 +170770707447,214,0 +170770707495,214,0 +170770707544,215,0 +170770707594,215,0 +170770707642,214,0 +170770707689,213,0 +170770707737,213,0 +170770707785,213,0 +170770707835,213,0 +170770707883,213,0 +170770707931,213,0 +170770707979,213,0 +170770708028,213,0 +170770708078,214,0 +170770708125,214,0 +170770708175,214,0 +170770708224,214,0 +170770708272,214,0 +170770708320,214,0 +170770708368,214,0 +170770708416,214,0 +170770708464,215,0 +170770708512,214,0 +170770708560,214,0 +170770708609,213,0 +170770708657,213,0 +170770708705,213,0 +170770708755,213,0 +170770708803,213,0 +170770708850,213,0 +170770708898,213,0 +170770708946,214,0 +170770708996,214,0 +170770709045,214,0 +170770709093,214,0 +170770709141,214,0 +170770709191,214,0 +170770709239,214,0 +170770709287,214,0 +170770709335,214,0 +170770709383,214,0 +170770709431,214,0 +170770709479,213,0 +170770709528,213,0 +170770709578,213,0 +170770709627,213,0 +170770709675,213,0 +170770709723,213,0 +170770709771,213,0 +170770709819,213,0 +170770709867,213,0 +170770709915,213,0 +170770709964,214,0 +170770710012,213,0 +170770710062,214,0 +170770710110,214,0 +170770710159,214,0 +170770710207,214,0 +170770710254,214,0 +170770710302,214,0 +170770710350,214,0 +170770710398,213,0 +170770710446,213,0 +170770710495,213,0 +170770710543,213,0 +170770710591,213,0 +170770710639,213,0 +170770710688,213,0 +170770710736,213,0 +170770710784,214,0 +170770710832,214,0 +170770710882,214,0 +170770710931,214,0 +170770710979,214,0 +170770711028,214,0 +170770711076,214,0 +170770711124,215,0 +170770711172,214,0 +170770711220,214,0 +170770711268,214,0 +170770711316,213,0 +170770711364,213,0 +170770711413,213,0 +170770711461,213,0 +170770711509,213,0 +170770711559,214,0 +170770711606,214,0 +170770711654,214,0 +170770711702,214,0 +170770711752,214,0 +170770711801,214,0 +170770711849,214,0 +170770711897,215,0 +170770711945,215,0 +170770711993,215,0 +170770712041,214,0 +170770712089,215,0 +170770712136,214,0 +170770712184,214,0 +170770712232,213,0 +170770712280,213,0 +170770712328,214,0 +170770712376,214,0 +170770712424,214,0 +170770712472,214,0 +170770712520,214,0 +170770712569,214,0 +170770712617,214,0 +170770712665,214,0 +170770712713,214,0 +170770712761,214,0 +170770712810,214,0 +170770712858,215,0 +170770712907,215,0 +170770712955,215,0 +170770713003,215,0 +170770713053,214,0 +170770713101,213,0 +170770713148,213,0 +170770713196,213,0 +170770713246,213,0 +170770713295,213,0 +170770713343,213,0 +170770713391,214,0 +170770713439,214,0 +170770713489,214,0 +170770713537,214,0 +170770713584,214,0 +170770713632,215,0 +170770713682,214,0 +170770713730,214,0 +170770713778,215,0 +170770713826,215,0 +170770713874,214,0 +170770713922,214,0 +170770713969,213,0 +170770714017,213,0 +170770714065,213,0 +170770714113,213,0 +170770714161,213,0 +170770714208,213,0 +170770714256,214,0 +170770714304,214,0 +170770714352,214,0 +170770714401,214,0 +170770714449,214,0 +170770714497,214,0 +170770714545,214,0 +170770714594,214,0 +170770714642,214,0 +170770714690,214,0 +170770714738,214,0 +170770714786,215,0 +170770714833,214,0 +170770714882,213,0 +170770714929,213,0 +170770714977,213,0 +170770715025,213,0 +170770715075,213,0 +170770715123,213,0 +170770715171,214,0 +170770715220,214,0 +170770715268,214,0 +170770715316,214,0 +170770715364,214,0 +170770715412,215,0 +170770715460,214,0 +170770715510,215,0 +170770715558,214,0 +170770715607,215,0 +170770715655,215,0 +170770715705,214,0 +170770715753,213,0 +170770715801,213,0 +170770715850,213,0 +170770715898,213,0 +170770715946,213,0 +170770715994,213,0 +170770716042,213,0 +170770716089,213,0 +170770716139,214,0 +170770716187,214,0 +170770716235,214,0 +170770716282,214,0 +170770716330,214,0 +170770716380,214,0 +170770716427,214,0 +170770716475,214,0 +170770716523,214,0 +170770716572,214,0 +170770716620,214,0 +170770716668,213,0 +170770716716,213,0 +170770716764,213,0 +170770716812,213,0 +170770716859,214,0 +170770716907,213,0 +170770716955,213,0 +170770717004,213,0 +170770717052,214,0 +170770717100,214,0 +170770717148,214,0 +170770717196,214,0 +170770717243,214,0 +170770717293,214,0 +170770717341,214,0 +170770717388,214,0 +170770717436,214,0 +170770717484,215,0 +170770717532,214,0 +170770717580,213,0 +170770717628,213,0 +170770717676,213,0 +170770717723,213,0 +170770717771,213,0 +170770717819,214,0 +170770717867,213,0 +170770717915,214,0 +170770717963,214,0 +170770718011,214,0 +170770718058,214,0 +170770718108,214,0 +170770718156,214,0 +170770718204,214,0 +170770718252,215,0 +170770718301,214,0 +170770718349,214,0 +170770718397,214,0 +170770718445,214,0 +170770718493,213,0 +170770718540,213,0 +170770718588,213,0 +170770718636,213,0 +170770718686,213,0 +170770718735,214,0 +170770718783,214,0 +170770718831,214,0 +170770718879,214,0 +170770718927,214,0 +170770718975,214,0 +170770719022,214,0 +170770719070,214,0 +170770719118,215,0 +170770719166,215,0 +170770719216,214,0 +170770719265,214,0 +170770719313,214,0 +170770719361,213,0 +170770719410,213,0 +170770719458,213,0 +170770719507,213,0 +170770719555,213,0 +170770719603,214,0 +170770719651,214,0 +170770719699,214,0 +170770719747,214,0 +170770719794,214,0 +170770719842,214,0 +170770719890,215,0 +170770719938,214,0 +170770719986,214,0 +170770720033,214,0 +170770720081,215,0 +170770720129,214,0 +170770720177,215,0 +170770720225,214,0 +170770720273,213,0 +170770720321,213,0 +170770720370,213,0 +170770720418,213,0 +170770720466,213,0 +170770720514,214,0 +170770720562,214,0 +170770720609,214,0 +170770720657,214,0 +170770720707,214,0 +170770720754,214,0 +170770720804,214,0 +170770720852,214,0 +170770720899,214,0 +170770720947,214,0 +170770720995,215,0 +170770721045,215,0 +170770721094,214,0 +170770721142,213,0 +170770721190,213,0 +170770721238,213,0 +170770721287,213,0 +170770721335,214,0 +170770721383,213,0 +170770721431,214,0 +170770721480,214,0 +170770721528,214,0 +170770721576,214,0 +170770721626,214,0 +170770721674,215,0 +170770721723,215,0 +170770721771,215,0 +170770721819,215,0 +170770721868,215,0 +170770721916,215,0 +170770721966,214,0 +170770722014,214,0 +170770722063,213,0 +170770722111,213,0 +170770722159,213,0 +170770722207,213,0 +170770722255,214,0 +170770722303,214,0 +170770722352,214,0 +170770722402,214,0 +170770722450,214,0 +170770722499,214,0 +170770722547,214,0 +170770722595,215,0 +170770722643,215,0 +170770722692,215,0 +170770722740,214,0 +170770722788,215,0 +170770722836,214,0 +170770722884,215,0 +170770722932,213,0 +170770722980,213,0 +170770723029,214,0 +170770723077,214,0 +170770723125,214,0 +170770723173,214,0 +170770723220,214,0 +170770723268,214,0 +170770723316,214,0 +170770723364,215,0 +170770723412,215,0 +170770723460,215,0 +170770723508,215,0 +170770723555,214,0 +170770723603,215,0 +170770723651,215,0 +170770723699,215,0 +170770723748,215,0 +170770723796,214,0 +170770723844,213,0 +170770723894,213,0 +170770723942,213,0 +170770723991,214,0 +170770724041,214,0 +170770724089,214,0 +170770724137,214,0 +170770724185,214,0 +170770724232,214,0 +170770724280,214,0 +170770724328,214,0 +170770724376,214,0 +170770724424,215,0 +170770724472,214,0 +170770724520,215,0 +170770724568,214,0 +170770724617,214,0 +170770724665,215,0 +170770724713,214,0 +170770724761,213,0 +170770724810,213,0 +170770724858,213,0 +170770724906,213,0 +170770724956,213,0 +170770725004,213,0 +170770725053,214,0 +170770725101,214,0 +170770725149,214,0 +170770725197,214,0 +170770725247,214,0 +170770725294,214,0 +170770725342,215,0 +170770725390,215,0 +170770725438,215,0 +170770725486,215,0 +170770725536,214,0 +170770725584,214,0 +170770725633,213,0 +170770725682,213,0 +170770725730,213,0 +170770725780,213,0 +170770725828,213,0 +170770725876,213,0 +170770725924,213,0 +170770725972,213,0 +170770726019,213,0 +170770726067,213,0 +170770726115,214,0 +170770726163,214,0 +170770726211,214,0 +170770726260,214,0 +170770726308,214,0 +170770726356,214,0 +170770726404,214,0 +170770726453,214,0 +170770726501,214,0 +170770726549,213,0 +170770726598,213,0 +170770726646,213,0 +170770726694,213,0 +170770726742,213,0 +170770726790,213,0 +170770726839,213,0 +170770726887,213,0 +170770726935,214,0 +170770726984,214,0 +170770727032,214,0 +170770727080,214,0 +170770727128,214,0 +170770727176,214,0 +170770727224,214,0 +170770727272,215,0 +170770727321,215,0 +170770727371,214,0 +170770727419,214,0 +170770727467,213,0 +170770727515,213,0 +170770727562,213,0 +170770727612,213,0 +170770727660,213,0 +170770727708,213,0 +170770727757,214,0 +170770727807,213,0 +170770727855,214,0 +170770727903,214,0 +170770727951,214,0 +170770728000,214,0 +170770728048,214,0 +170770728097,214,0 +170770728147,214,0 +170770728195,214,0 +170770728243,214,0 +170770728291,214,0 +170770728340,213,0 +170770728388,213,0 +170770728438,213,0 +170770728486,213,0 +170770728535,214,0 +170770728583,213,0 +170770728631,213,0 +170770728679,214,0 +170770728727,214,0 +170770728776,214,0 +170770728824,214,0 +170770728872,214,0 +170770728921,214,0 +170770728971,214,0 +170770729019,214,0 +170770729068,214,0 +170770729118,214,0 +170770729167,214,0 +170770729215,213,0 +170770729263,213,0 +170770729311,213,0 +170770729361,213,0 +170770729410,213,0 +170770729460,213,0 +170770729508,213,0 +170770729557,214,0 +170770729607,214,0 +170770729655,214,0 +170770729703,214,0 +170770729752,214,0 +170770729802,215,0 +170770729850,215,0 +170770729899,215,0 +170770729947,215,0 +170770729995,215,0 +170770730043,215,0 +170770730093,214,0 +170770730141,213,0 +170770730189,213,0 +170770730238,213,0 +170770730286,213,0 +170770730334,214,0 +170770730382,213,0 +170770730430,214,0 +170770730478,214,0 +170770730526,214,0 +170770730574,215,0 +170770730623,215,0 +170770730671,215,0 +170770730719,215,0 +170770730769,215,0 +170770730818,215,0 +170770730866,215,0 +170770730914,215,0 +170770730963,214,0 +170770731013,213,0 +170770731063,213,0 +170770731112,213,0 +170770731162,213,0 +170770731211,213,0 +170770731261,214,0 +170770731309,214,0 +170770731357,214,0 +170770731406,214,0 +170770731454,214,0 +170770731502,214,0 +170770731551,214,0 +170770731599,214,0 +170770731647,215,0 +170770731695,215,0 +170770731745,214,0 +170770731793,215,0 +170770731841,215,0 +170770731890,213,0 +170770731938,213,0 +170770731986,213,0 +170770732036,213,0 +170770732085,213,0 +170770732133,213,0 +170770732181,213,0 +170770732230,214,0 +170770732278,214,0 +170770732326,214,0 +170770732374,214,0 +170770732422,214,0 +170770732470,214,0 +170770732518,215,0 +170770732566,214,0 +170770732614,214,0 +170770732664,215,0 +170770732711,215,0 +170770732759,214,0 +170770732807,213,0 +170770732855,213,0 +170770732903,213,0 +170770732951,213,0 +170770733001,213,0 +170770733049,213,0 +170770733097,213,0 +170770733144,214,0 +170770733192,214,0 +170770733242,214,0 +170770733291,214,0 +170770733341,214,0 +170770733391,214,0 +170770733438,214,0 +170770733488,214,0 +170770733536,214,0 +170770733584,214,0 +170770733633,214,0 +170770733683,214,0 +170770733732,213,0 +170770733782,213,0 +170770733830,213,0 +170770733878,213,0 +170770733927,213,0 +170770733977,213,0 +170770734025,213,0 +170770734073,213,0 +170770734121,213,0 +170770734169,213,0 +170770734217,213,0 +170770734266,214,0 +170770734314,214,0 +170770734364,214,0 +170770734411,214,0 +170770734459,214,0 +170770734507,214,0 +170770734555,214,0 +170770734605,213,0 +170770734653,213,0 +170770734701,213,0 +170770734749,213,0 +170770734797,213,0 +170770734846,213,0 +170770734896,213,0 +170770734944,213,0 +170770734993,213,0 +170770735041,214,0 +170770735091,214,0 +170770735140,214,0 +170770735188,214,0 +170770735236,214,0 +170770735284,215,0 +170770735332,215,0 +170770735380,215,0 +170770735430,214,0 +170770735478,214,0 +170770735526,213,0 +170770735574,213,0 +170770735623,213,0 +170770735673,213,0 +170770735721,213,0 +170770735769,213,0 +170770735817,213,0 +170770735865,214,0 +170770735913,214,0 +170770735962,214,0 +170770736010,214,0 +170770736058,214,0 +170770736108,214,0 +170770736156,214,0 +170770736205,214,0 +170770736253,215,0 +170770736302,215,0 +170770736350,214,0 +170770736400,213,0 +170770736448,213,0 +170770736496,213,0 +170770736544,213,0 +170770736593,213,0 +170770736643,213,0 +170770736691,213,0 +170770736739,213,0 +170770736787,214,0 +170770736836,214,0 +170770736886,214,0 +170770736934,214,0 +170770736982,214,0 +170770737031,214,0 +170770737079,214,0 +170770737129,214,0 +170770737178,214,0 +170770737226,214,0 +170770737276,213,0 +170770737324,213,0 +170770737372,213,0 +170770737420,213,0 +170770737468,213,0 +170770737515,213,0 +170770737563,214,0 +170770737613,214,0 +170770737661,214,0 +170770737710,214,0 +170770737760,214,0 +170770737808,214,0 +170770737856,214,0 +170770737903,214,0 +170770737951,214,0 +170770738001,215,0 +170770738050,214,0 +170770738100,214,0 +170770738149,214,0 +170770738197,213,0 +170770738245,213,0 +170770738294,213,0 +170770738342,213,0 +170770738392,213,0 +170770738440,214,0 +170770738488,214,0 +170770738536,214,0 +170770738583,214,0 +170770738631,214,0 +170770738679,214,0 +170770738727,214,0 +170770738777,214,0 +170770738826,214,0 +170770738874,214,0 +170770738923,214,0 +170770738971,214,0 +170770739019,214,0 +170770739067,214,0 +170770739117,213,0 +170770739166,213,0 +170770739214,214,0 +170770739262,214,0 +170770739310,214,0 +170770739359,214,0 +170770739409,214,0 +170770739458,214,0 +170770739508,214,0 +170770739556,215,0 +170770739604,215,0 +170770739651,214,0 +170770739699,215,0 +170770739749,215,0 +170770739798,215,0 +170770739846,215,0 +170770739896,214,0 +170770739943,214,0 +170770739991,213,0 +170770740039,213,0 +170770740089,213,0 +170770740137,213,0 +170770740184,214,0 +170770740232,214,0 +170770740282,214,0 +170770740331,214,0 +170770740379,214,0 +170770740427,214,0 +170770740475,215,0 +170770740523,215,0 +170770740572,215,0 +170770740620,215,0 +170770740670,215,0 +170770740718,214,0 +170770740767,215,0 +170770740817,214,0 +170770740864,214,0 +170770740912,213,0 +170770740960,214,0 +170770741010,214,0 +170770741059,214,0 +170770741107,214,0 +170770741157,214,0 +170770741205,214,0 +170770741254,214,0 +170770741302,214,0 +170770741352,214,0 +170770741400,215,0 +170770741448,215,0 +170770741495,215,0 +170770741545,215,0 +170770741594,214,0 +170770741644,215,0 +170770741693,215,0 +170770741743,214,0 +170770741791,213,0 +170770741839,213,0 +170770741887,213,0 +170770741935,214,0 +170770741984,214,0 +170770742034,214,0 +170770742082,214,0 +170770742130,214,0 +170770742179,214,0 +170770742229,214,0 +170770742277,214,0 +170770742326,215,0 +170770742374,214,0 +170770742422,215,0 +170770742471,215,0 +170770742519,215,0 +170770742567,215,0 +170770742617,215,0 +170770742666,214,0 +170770742714,214,0 +170770742762,213,0 +170770742810,214,0 +170770742860,214,0 +170770742908,214,0 +170770742956,214,0 +170770743005,214,0 +170770743055,214,0 +170770743102,214,0 +170770743150,214,0 +170770743198,214,0 +170770743248,215,0 +170770743295,214,0 +170770743343,215,0 +170770743391,215,0 +170770743439,215,0 +170770743487,215,0 +170770743535,214,0 +170770743583,213,0 +170770743630,213,0 +170770743678,213,0 +170770743726,213,0 +170770743774,213,0 +170770743822,214,0 +170770743872,214,0 +170770743921,214,0 +170770743971,214,0 +170770744018,214,0 +170770744066,214,0 +170770744116,214,0 +170770744164,215,0 +170770744211,215,0 +170770744261,215,0 +170770744309,214,0 +170770744357,215,0 +170770744405,214,0 +170770744452,213,0 +170770744502,213,0 +170770744552,213,0 +170770744599,213,0 +170770744647,213,0 +170770744695,213,0 +170770744745,214,0 +170770744793,214,0 +170770744841,214,0 +170770744890,214,0 +170770744940,214,0 +170770744988,215,0 +170770745037,215,0 +170770745085,215,0 +170770745133,214,0 +170770745182,215,0 +170770745230,214,0 +170770745278,214,0 +170770745326,214,0 +170770745374,213,0 +170770745422,213,0 +170770745470,213,0 +170770745519,213,0 +170770745567,213,0 +170770745615,213,0 +170770745663,214,0 +170770745712,214,0 +170770745760,214,0 +170770745808,214,0 +170770745856,214,0 +170770745905,214,0 +170770745955,214,0 +170770746003,215,0 +170770746051,215,0 +170770746098,215,0 +170770746148,214,0 +170770746197,214,0 +170770746245,214,0 +170770746295,213,0 +170770746343,213,0 +170770746391,213,0 +170770746438,213,0 +170770746488,213,0 +170770746536,214,0 +170770746584,214,0 +170770746632,214,0 +170770746679,214,0 +170770746727,214,0 +170770746775,214,0 +170770746825,214,0 +170770746874,215,0 +170770746924,215,0 +170770746971,215,0 +170770747019,215,0 +170770747067,215,0 +170770747115,214,0 +170770747163,213,0 +170770747213,213,0 +170770747261,213,0 +170770747309,213,0 +170770747357,213,0 +170770747405,213,0 +170770747454,214,0 +170770747502,214,0 +170770747552,214,0 +170770747599,214,0 +170770747647,214,0 +170770747695,214,0 +170770747743,214,0 +170770747791,214,0 +170770747840,214,0 +170770747888,214,0 +170770747936,214,0 +170770747986,214,0 +170770748034,214,0 +170770748082,213,0 +170770748131,213,0 +170770748179,213,0 +170770748227,213,0 +170770748275,213,0 +170770748325,213,0 +170770748372,213,0 +170770748420,214,0 +170770748468,214,0 +170770748516,214,0 +170770748564,214,0 +170770748612,214,0 +170770748660,214,0 +170770748709,214,0 +170770748757,215,0 +170770748805,214,0 +170770748853,215,0 +170770748902,214,0 +170770748951,213,0 +170770749000,213,0 +170770749050,213,0 +170770749098,213,0 +170770749147,213,0 +170770749195,213,0 +170770749243,214,0 +170770749291,213,0 +170770749339,213,0 +170770749387,214,0 +170770749436,214,0 +170770749484,214,0 +170770749532,214,0 +170770749580,214,0 +170770749629,214,0 +170770749679,214,0 +170770749728,214,0 +170770749778,214,0 +170770749826,214,0 +170770749875,213,0 +170770749923,213,0 +170770749972,213,0 +170770750020,213,0 +170770750068,213,0 +170770750116,213,0 +170770750164,213,0 +170770750212,213,0 +170770750261,213,0 +170770750309,213,0 +170770750357,213,0 +170770750405,214,0 +170770750453,214,0 +170770750502,214,0 +170770750550,214,0 +170770750598,214,0 +170770750648,214,0 +170770750697,214,0 +170770750745,213,0 +170770750793,213,0 +170770750842,213,0 +170770750890,213,0 +170770750938,213,0 +170770750986,213,0 +170770751034,213,0 +170770751083,213,0 +170770751131,214,0 +170770751181,214,0 +170770751229,214,0 +170770751278,214,0 +170770751326,214,0 +170770751376,214,0 +170770751423,214,0 +170770751471,214,0 +170770751519,214,0 +170770751567,214,0 +170770751615,215,0 +170770751663,213,0 +170770751711,213,0 +170770751758,213,0 +170770751806,213,0 +170770751854,213,0 +170770751904,213,0 +170770751952,213,0 +170770752001,213,0 +170770752049,213,0 +170770752097,214,0 +170770752145,214,0 +170770752193,214,0 +170770752241,214,0 +170770752290,214,0 +170770752339,214,0 +170770752389,215,0 +170770752437,214,0 +170770752486,214,0 +170770752534,213,0 +170770752582,213,0 +170770752631,213,0 +170770752679,213,0 +170770752727,213,0 +170770752775,213,0 +170770752825,213,0 +170770752874,213,0 +170770752922,214,0 +170770752970,214,0 +170770753018,214,0 +170770753066,214,0 +170770753114,214,0 +170770753162,214,0 +170770753210,214,0 +170770753258,214,0 +170770753306,214,0 +170770753354,214,0 +170770753401,214,0 +170770753449,213,0 +170770753497,213,0 +170770753545,213,0 +170770753593,213,0 +170770753641,213,0 +170770753689,213,0 +170770753738,213,0 +170770753786,214,0 +170770753834,214,0 +170770753882,214,0 +170770753930,214,0 +170770753978,214,0 +170770754026,215,0 +170770754075,215,0 +170770754123,214,0 +170770754171,215,0 +170770754220,214,0 +170770754270,214,0 +170770754318,214,0 +170770754366,213,0 +170770754414,213,0 +170770754462,213,0 +170770754511,213,0 +170770754560,213,0 +170770754607,214,0 +170770754655,214,0 +170770754705,214,0 +170770754753,214,0 +170770754801,214,0 +170770754849,214,0 +170770754896,215,0 +170770754944,215,0 +170770754992,215,0 +170770755042,215,0 +170770755090,215,0 +170770755138,214,0 +170770755186,214,0 +170770755234,213,0 +170770755282,213,0 +170770755329,213,0 +170770755379,213,0 +170770755428,214,0 +170770755476,214,0 +170770755524,214,0 +170770755572,214,0 +170770755622,214,0 +170770755671,214,0 +170770755719,215,0 +170770755769,214,0 +170770755817,214,0 +170770755866,214,0 +170770755916,214,0 +170770755964,215,0 +170770756012,214,0 +170770756059,214,0 +170770756107,214,0 +170770756155,213,0 +170770756203,213,0 +170770756251,213,0 +170770756299,213,0 +170770756347,213,0 +170770756395,214,0 +170770756443,214,0 +170770756491,214,0 +170770756540,214,0 +170770756588,214,0 +170770756638,214,0 +170770756686,214,0 +170770756735,214,0 +170770756783,214,0 +170770756831,214,0 +170770756879,214,0 +170770756928,215,0 +170770756976,214,0 +170770757026,214,0 +170770757075,213,0 +170770757125,213,0 +170770757174,213,0 +170770757224,214,0 +170770757272,214,0 +170770757320,214,0 +170770757368,214,0 +170770757417,214,0 +170770757465,214,0 +170770757513,214,0 +170770757561,215,0 +170770757609,214,0 +170770757657,215,0 +170770757705,215,0 +170770757753,215,0 +170770757801,215,0 +170770757848,214,0 +170770757898,214,0 +170770757946,214,0 +170770757995,213,0 +170770758045,213,0 +170770758094,213,0 +170770758142,213,0 +170770758192,214,0 +170770758240,214,0 +170770758288,214,0 +170770758336,214,0 +170770758384,214,0 +170770758433,214,0 +170770758481,215,0 +170770758529,214,0 +170770758577,215,0 +170770758625,215,0 +170770758673,215,0 +170770758721,215,0 +170770758771,214,0 +170770758820,214,0 +170770758870,214,0 +170770758918,213,0 +170770758966,214,0 +170770759015,214,0 +170770759063,214,0 +170770759113,214,0 +170770759162,214,0 +170770759210,214,0 +170770759259,214,0 +170770759307,215,0 +170770759357,215,0 +170770759406,215,0 +170770759456,215,0 +170770759504,214,0 +170770759552,215,0 +170770759601,214,0 +170770759651,214,0 +170770759699,214,0 +170770759748,213,0 +170770759798,213,0 +170770759846,214,0 +170770759895,214,0 +170770759943,214,0 +170770759991,214,0 +170770760038,214,0 +170770760086,214,0 +170770760134,214,0 +170770760182,215,0 +170770760230,215,0 +170770760278,215,0 +170770760325,215,0 +170770760373,215,0 +170770760421,215,0 +170770760469,215,0 +170770760517,215,0 +170770760566,214,0 +170770760616,214,0 +170770760665,213,0 +170770760715,213,0 +170770760763,213,0 +170770760812,214,0 +170770760862,214,0 +170770760911,214,0 +170770760959,214,0 +170770761007,214,0 +170770761055,214,0 +170770761105,214,0 +170770761153,214,0 +170770761201,214,0 +170770761249,215,0 +170770761297,215,0 +170770761345,215,0 +170770761393,215,0 +170770761440,214,0 +170770761488,214,0 +170770761538,213,0 +170770761587,213,0 +170770761635,213,0 +170770761683,213,0 +170770761733,213,0 +170770761782,213,0 +170770761832,214,0 +170770761880,214,0 +170770761929,214,0 +170770761977,214,0 +170770762027,214,0 +170770762075,214,0 +170770762124,214,0 +170770762172,214,0 +170770762220,214,0 +170770762268,214,0 +170770762317,214,0 +170770762365,215,0 +170770762415,213,0 +170770762463,213,0 +170770762510,213,0 +170770762558,213,0 +170770762608,213,0 +170770762656,213,0 +170770762704,213,0 +170770762751,214,0 +170770762799,214,0 +170770762847,214,0 +170770762895,214,0 +170770762943,214,0 +170770762990,214,0 +170770763038,214,0 +170770763088,215,0 +170770763136,215,0 +170770763184,214,0 +170770763231,214,0 +170770763279,214,0 +170770763327,213,0 +170770763375,213,0 +170770763423,213,0 +170770763471,213,0 +170770763520,213,0 +170770763570,213,0 +170770763617,214,0 +170770763665,213,0 +170770763713,214,0 +170770763761,214,0 +170770763810,214,0 +170770763858,214,0 +170770763906,214,0 +170770763954,214,0 +170770764002,214,0 +170770764050,215,0 +170770764098,215,0 +170770764145,214,0 +170770764193,213,0 +170770764241,213,0 +170770764289,213,0 +170770764338,213,0 +170770764386,213,0 +170770764434,214,0 +170770764482,214,0 +170770764530,214,0 +170770764579,214,0 +170770764627,214,0 +170770764677,214,0 +170770764725,214,0 +170770764772,215,0 +170770764820,215,0 +170770764868,215,0 +170770764916,215,0 +170770764964,215,0 +170770765013,215,0 +170770765061,214,0 +170770765109,213,0 +170770765157,213,0 +170770765206,213,0 +170770765254,213,0 +170770765302,213,0 +170770765352,213,0 +170770765400,214,0 +170770765449,214,0 +170770765497,214,0 +170770765546,214,0 +170770765596,214,0 +170770765644,214,0 +170770765692,215,0 +170770765740,215,0 +170770765788,214,0 +170770765837,214,0 +170770765885,215,0 +170770765935,214,0 +170770765984,213,0 +170770766034,213,0 +170770766082,213,0 +170770766131,213,0 +170770766181,213,0 +170770766229,213,0 +170770766278,213,0 +170770766328,213,0 +170770766377,214,0 +170770766425,214,0 +170770766475,214,0 +170770766523,214,0 +170770766571,214,0 +170770766620,214,0 +170770766670,214,0 +170770766718,215,0 +170770766765,214,0 +170770766813,215,0 +170770766861,214,0 +170770766911,213,0 +170770766959,213,0 +170770767007,213,0 +170770767056,213,0 +170770767106,213,0 +170770767154,213,0 +170770767202,213,0 +170770767251,214,0 +170770767299,214,0 +170770767347,214,0 +170770767395,214,0 +170770767443,214,0 +170770767492,214,0 +170770767540,214,0 +170770767590,215,0 +170770767638,215,0 +170770767686,215,0 +170770767735,214,0 +170770767783,213,0 +170770767831,213,0 +170770767879,213,0 +170770767927,213,0 +170770767975,213,0 +170770768023,213,0 +170770768073,213,0 +170770768121,214,0 +170770768170,214,0 +170770768218,214,0 +170770768268,214,0 +170770768316,214,0 +170770768363,214,0 +170770768411,214,0 +170770768459,215,0 +170770768507,214,0 +170770768555,215,0 +170770768605,215,0 +170770768653,214,0 +170770768702,213,0 +170770768752,213,0 +170770768800,213,0 +170770768848,213,0 +170770768897,213,0 +170770768947,213,0 +170770768996,213,0 +170770769044,213,0 +170770769092,213,0 +170770769142,214,0 +170770769191,214,0 +170770769239,214,0 +170770769289,214,0 +170770769338,214,0 +170770769388,214,0 +170770769437,214,0 +170770769487,214,0 +170770769535,214,0 +170770769583,213,0 +170770769631,213,0 +170770769680,213,0 +170770769730,213,0 +170770769778,213,0 +170770769826,213,0 +170770769873,213,0 +170770769923,213,0 +170770769971,214,0 +170770770020,214,0 +170770770070,214,0 +170770770118,214,0 +170770770166,214,0 +170770770215,214,0 +170770770265,214,0 +170770770313,214,0 +170770770361,215,0 +170770770410,214,0 +170770770458,213,0 +170770770508,213,0 +170770770557,213,0 +170770770605,213,0 +170770770655,213,0 +170770770702,214,0 +170770770752,214,0 +170770770802,214,0 +170770770851,214,0 +170770770899,214,0 +170770770947,214,0 +170770770995,214,0 +170770771043,214,0 +170770771091,214,0 +170770771139,214,0 +170770771187,215,0 +170770771235,214,0 +170770771283,214,0 +170770771331,214,0 +170770771379,213,0 +170770771428,213,0 +170770771476,213,0 +170770771524,214,0 +170770771572,214,0 +170770771620,214,0 +170770771668,214,0 +170770771716,214,0 +170770771764,214,0 +170770771813,214,0 +170770771861,214,0 +170770771909,215,0 +170770771957,215,0 +170770772005,215,0 +170770772054,215,0 +170770772102,215,0 +170770772150,214,0 +170770772200,214,0 +170770772249,214,0 +170770772297,214,0 +170770772346,213,0 +170770772394,213,0 +170770772442,214,0 +170770772490,214,0 +170770772538,214,0 +170770772588,214,0 +170770772636,214,0 +170770772685,214,0 +170770772733,214,0 +170770772781,214,0 +170770772829,214,0 +170770772877,215,0 +170770772925,214,0 +170770772973,215,0 +170770773021,214,0 +170770773069,214,0 +170770773117,213,0 +170770773166,213,0 +170770773214,213,0 +170770773264,214,0 +170770773313,213,0 +170770773361,214,0 +170770773409,214,0 +170770773459,214,0 +170770773508,214,0 +170770773556,214,0 +170770773606,214,0 +170770773654,214,0 +170770773702,214,0 +170770773749,214,0 +170770773797,214,0 +170770773845,215,0 +170770773893,215,0 +170770773941,214,0 +170770773991,214,0 +170770774039,214,0 +170770774087,213,0 +170770774135,213,0 +170770774182,214,0 +170770774230,214,0 +170770774280,214,0 +170770774328,214,0 +170770774376,214,0 +170770774424,214,0 +170770774472,214,0 +170770774520,214,0 +170770774568,214,0 +170770774616,215,0 +170770774665,215,0 +170770774713,215,0 +170770774761,215,0 +170770774809,214,0 +170770774857,214,0 +170770774905,214,0 +170770774953,213,0 +170770775002,214,0 +170770775050,214,0 +170770775098,214,0 +170770775146,214,0 +170770775194,214,0 +170770775242,214,0 +170770775290,214,0 +170770775338,214,0 +170770775386,215,0 +170770775434,215,0 +170770775482,214,0 +170770775531,215,0 +170770775581,215,0 +170770775629,215,0 +170770775677,215,0 +170770775726,214,0 +170770775776,214,0 +170770775823,213,0 +170770775871,213,0 +170770775921,213,0 +170770775969,213,0 +170770776017,214,0 +170770776065,214,0 +170770776113,214,0 +170770776161,214,0 +170770776210,214,0 +170770776258,214,0 +170770776308,215,0 +170770776357,215,0 +170770776406,215,0 +170770776454,215,0 +170770776504,215,0 +170770776553,215,0 +170770776603,214,0 +170770776652,214,0 +170770776700,213,0 +170770776748,213,0 +170770776798,213,0 +170770776846,213,0 +170770776894,213,0 +170770776942,214,0 +170770776990,214,0 +170770777039,213,0 +170770777087,214,0 +170770777137,214,0 +170770777184,214,0 +170770777232,214,0 +170770777282,214,0 +170770777331,215,0 +170770777379,214,0 +170770777429,214,0 +170770777478,215,0 +170770777528,214,0 +170770777577,213,0 +170770777626,213,0 +170770777673,213,0 +170770777721,213,0 +170770777771,213,0 +170770777819,213,0 +170770777868,214,0 +170770777916,214,0 +170770777966,214,0 +170770778014,214,0 +170770778063,214,0 +170770778111,214,0 +170770778159,214,0 +170770778208,215,0 +170770778258,215,0 +170770778306,214,0 +170770778355,214,0 +170770778403,215,0 +170770778451,214,0 +170770778499,213,0 +170770778547,213,0 +170770778595,213,0 +170770778643,213,0 +170770778692,213,0 +170770778740,213,0 +170770778788,213,0 +170770778836,214,0 +170770778884,214,0 +170770778932,214,0 +170770778980,214,0 +170770779028,214,0 +170770779077,214,0 +170770779126,214,0 +170770779174,214,0 +170770779223,215,0 +170770779272,215,0 +170770779320,214,0 +170770779370,213,0 +170770779419,213,0 +170770779467,213,0 +170770779515,213,0 +170770779563,213,0 +170770779613,213,0 +170770779662,213,0 +170770779710,213,0 +170770779760,214,0 +170770779808,214,0 +170770779856,214,0 +170770779904,214,0 +170770779952,214,0 +170770780000,214,0 +170770780049,214,0 +170770780099,214,0 +170770780148,214,0 +170770780196,214,0 +170770780244,214,0 +170770780294,213,0 +170770780343,213,0 +170770780391,213,0 +170770780439,213,0 +170770780487,213,0 +170770780534,213,0 +170770780582,214,0 +170770780632,214,0 +170770780680,214,0 +170770780728,214,0 +170770780777,214,0 +170770780825,214,0 +170770780873,214,0 +170770780921,215,0 +170770780969,215,0 +170770781018,215,0 +170770781066,215,0 +170770781116,214,0 +170770781164,213,0 +170770781212,213,0 +170770781260,213,0 +170770781308,213,0 +170770781356,213,0 +170770781404,213,0 +170770781451,213,0 +170770781499,214,0 +170770781547,214,0 +170770781597,214,0 +170770781646,214,0 +170770781694,214,0 +170770781742,214,0 +170770781792,214,0 +170770781840,215,0 +170770781888,214,0 +170770781937,214,0 +170770781987,214,0 +170770782035,214,0 +170770782083,213,0 +170770782132,213,0 +170770782180,213,0 +170770782230,213,0 +170770782278,213,0 +170770782327,213,0 +170770782377,213,0 +170770782425,213,0 +170770782473,214,0 +170770782521,214,0 +170770782570,214,0 +170770782618,214,0 +170770782666,214,0 +170770782714,215,0 +170770782762,215,0 +170770782810,214,0 +170770782859,214,0 +170770782909,214,0 +170770782958,213,0 +170770783008,213,0 +170770783057,213,0 +170770783105,213,0 +170770783155,213,0 +170770783204,213,0 +170770783254,213,0 +170770783303,213,0 +170770783353,213,0 +170770783402,214,0 +170770783452,214,0 +170770783500,214,0 +170770783549,214,0 +170770783597,214,0 +170770783645,214,0 +170770783693,214,0 +170770783743,214,0 +170770783792,214,0 +170770783840,213,0 +170770783888,213,0 +170770783936,213,0 +170770783985,213,0 +170770784033,213,0 +170770784081,213,0 +170770784129,213,0 +170770784179,213,0 +170770784228,214,0 +170770784276,214,0 +170770784324,214,0 +170770784373,214,0 +170770784423,214,0 +170770784472,214,0 +170770784520,215,0 +170770784568,215,0 +170770784617,215,0 +170770784665,215,0 +170770784713,214,0 +170770784761,213,0 +170770784810,213,0 +170770784858,213,0 +170770784906,213,0 +170770784954,213,0 +170770785002,213,0 +170770785050,213,0 +170770785098,213,0 +170770785146,214,0 +170770785194,214,0 +170770785242,214,0 +170770785291,214,0 +170770785341,214,0 +170770785390,214,0 +170770785438,214,0 +170770785486,214,0 +170770785534,215,0 +170770785584,214,0 +170770785633,213,0 +170770785681,213,0 +170770785731,213,0 +170770785778,213,0 +170770785828,213,0 +170770785877,213,0 +170770785925,213,0 +170770785973,213,0 +170770786021,213,0 +170770786069,213,0 +170770786117,214,0 +170770786165,214,0 +170770786213,214,0 +170770786263,214,0 +170770786312,214,0 +170770786360,214,0 +170770786408,215,0 +170770786456,214,0 +170770786504,213,0 +170770786552,213,0 +170770786600,213,0 +170770786649,213,0 +170770786699,213,0 +170770786747,213,0 +170770786795,213,0 +170770786842,213,0 +170770786890,213,0 +170770786940,214,0 +170770786988,214,0 +170770787036,214,0 +170770787084,214,0 +170770787133,214,0 +170770787181,214,0 +170770787229,214,0 +170770787277,214,0 +170770787325,214,0 +170770787375,214,0 +170770787423,213,0 +170770787472,213,0 +170770787520,213,0 +170770787568,213,0 +170770787617,213,0 +170770787665,213,0 +170770787713,214,0 +170770787761,214,0 +170770787809,214,0 +170770787857,214,0 +170770787907,214,0 +170770787955,214,0 +170770788004,215,0 +170770788052,215,0 +170770788101,214,0 +170770788151,215,0 +170770788199,214,0 +170770788248,214,0 +170770788296,214,0 +170770788344,214,0 +170770788394,214,0 +170770788441,214,0 +170770788489,214,0 +170770788537,214,0 +170770788585,214,0 +170770788635,214,0 +170770788683,214,0 +170770788732,214,0 +170770788780,215,0 +170770788830,215,0 +170770788878,215,0 +170770788926,215,0 +170770788974,214,0 +170770789024,215,0 +170770789073,214,0 +170770789121,215,0 +170770789169,214,0 +170770789218,214,0 +170770789266,214,0 +170770789316,214,0 +170770789364,214,0 +170770789413,214,0 +170770789463,214,0 +170770789512,215,0 +170770789560,214,0 +170770789608,215,0 +170770789657,215,0 +170770789705,215,0 +170770789753,215,0 +170770789801,215,0 +170770789848,215,0 +170770789896,215,0 +170770789944,214,0 +170770789992,215,0 +170770790040,214,0 +170770790088,214,0 +170770790136,214,0 +170770790185,214,0 +170770790233,214,0 +170770790281,214,0 +170770790329,214,0 +170770790378,214,0 +170770790426,214,0 +170770790474,214,0 +170770790524,214,0 +170770790572,215,0 +170770790620,214,0 +170770790667,215,0 +170770790717,215,0 +170770790765,215,0 +170770790813,214,0 +170770790862,214,0 +170770790910,214,0 +170770790958,214,0 +170770791008,213,0 +170770791056,213,0 +170770791105,213,0 +170770791153,213,0 +170770791201,213,0 +170770791251,214,0 +170770791299,214,0 +170770791348,214,0 +170770791396,214,0 +170770791445,214,0 +170770791493,214,0 +170770791541,214,0 +170770791589,214,0 +170770791637,215,0 +170770791687,214,0 +170770791735,215,0 +170770791783,214,0 +170770791830,214,0 +170770791880,213,0 +170770791928,213,0 +170770791976,213,0 +170770792023,213,0 +170770792073,213,0 +170770792121,214,0 +170770792169,214,0 +170770792218,214,0 +170770792266,214,0 +170770792316,214,0 +170770792365,214,0 +170770792413,214,0 +170770792463,214,0 +170770792511,214,0 +170770792560,215,0 +170770792608,215,0 +170770792658,214,0 +170770792706,214,0 +170770792755,213,0 +170770792803,213,0 +170770792852,213,0 +170770792900,213,0 +170770792948,213,0 +170770792996,213,0 +170770793044,213,0 +170770793092,213,0 +170770793142,214,0 +170770793191,214,0 +170770793241,214,0 +170770793290,214,0 +170770793338,214,0 +170770793386,214,0 +170770793434,214,0 +170770793482,214,0 +170770793530,214,0 +170770793579,214,0 +170770793629,214,0 +170770793677,213,0 +170770793726,213,0 +170770793776,213,0 +170770793824,213,0 +170770793872,213,0 +170770793921,213,0 +170770793969,213,0 +170770794017,213,0 +170770794065,213,0 +170770794113,213,0 +170770794161,213,0 +170770794209,213,0 +170770794257,214,0 +170770794305,214,0 +170770794354,214,0 +170770794402,214,0 +170770794450,214,0 +170770794500,214,0 +170770794548,214,0 +170770794595,214,0 +170770794645,214,0 +170770794693,214,0 +170770794741,215,0 +170770794790,214,0 +170770794838,215,0 +170770794886,214,0 +170770794934,214,0 +170770794984,213,0 +170770795032,213,0 +170770795080,213,0 +170770795127,213,0 +170770795177,213,0 +170770795225,213,0 +170770795273,213,0 +170770795321,213,0 +170770795369,214,0 +170770795417,214,0 +170770795466,214,0 +170770795516,214,0 +170770795564,214,0 +170770795612,214,0 +170770795660,214,0 +170770795707,215,0 +170770795757,214,0 +170770795807,214,0 +170770795855,214,0 +170770795902,213,0 +170770795950,213,0 +170770795998,213,0 +170770796048,213,0 +170770796097,214,0 +170770796145,214,0 +170770796193,213,0 +170770796243,214,0 +170770796291,214,0 +170770796339,214,0 +170770796388,214,0 +170770796436,214,0 +170770796485,214,0 +170770796535,214,0 +170770796583,214,0 +170770796631,214,0 +170770796679,214,0 +170770796728,214,0 +170770796776,213,0 +170770796824,213,0 +170770796872,213,0 +170770796920,213,0 +170770796969,213,0 +170770797017,213,0 +170770797065,213,0 +170770797115,214,0 +170770797163,214,0 +170770797211,214,0 +170770797259,214,0 +170770797307,214,0 +170770797355,214,0 +170770797404,214,0 +170770797452,214,0 +170770797500,214,0 +170770797548,215,0 +170770797596,214,0 +170770797645,213,0 +170770797695,213,0 +170770797744,213,0 +170770797792,213,0 +170770797840,213,0 +170770797890,213,0 +170770797938,213,0 +170770797986,213,0 +170770798034,213,0 +170770798082,214,0 +170770798131,214,0 +170770798179,214,0 +170770798227,214,0 +170770798276,214,0 +170770798324,214,0 +170770798374,214,0 +170770798423,214,0 +170770798473,214,0 +170770798521,214,0 +170770798569,213,0 +170770798617,213,0 +170770798665,213,0 +170770798713,213,0 +170770798762,213,0 +170770798812,213,0 +170770798860,213,0 +170770798908,213,0 +170770798957,214,0 +170770799005,214,0 +170770799053,214,0 +170770799103,214,0 +170770799151,214,0 +170770799200,214,0 +170770799250,214,0 +170770799299,215,0 +170770799347,215,0 +170770799397,215,0 +170770799445,213,0 +170770799494,213,0 +170770799542,213,0 +170770799590,213,0 +170770799640,213,0 +170770799689,213,0 +170770799737,213,0 +170770799787,214,0 +170770799836,214,0 +170770799886,214,0 +170770799935,214,0 +170770799985,214,0 +170770800034,214,0 +170770800084,214,0 +170770800132,214,0 +170770800179,215,0 +170770800229,215,0 +170770800277,214,0 +170770800326,214,0 +170770800374,213,0 +170770800422,213,0 +170770800472,214,0 +170770800521,213,0 +170770800569,214,0 +170770800619,214,0 +170770800668,214,0 +170770800716,214,0 +170770800764,214,0 +170770800812,214,0 +170770800860,215,0 +170770800908,214,0 +170770800956,215,0 +170770801005,215,0 +170770801053,215,0 +170770801101,215,0 +170770801149,214,0 +170770801199,214,0 +170770801247,213,0 +170770801295,213,0 +170770801343,213,0 +170770801391,213,0 +170770801439,214,0 +170770801487,214,0 +170770801535,214,0 +170770801583,214,0 +170770801632,214,0 +170770801680,214,0 +170770801728,214,0 +170770801778,214,0 +170770801827,214,0 +170770801875,214,0 +170770801925,214,0 +170770801973,215,0 +170770802022,215,0 +170770802070,214,0 +170770802118,214,0 +170770802168,213,0 +170770802217,213,0 +170770802265,213,0 +170770802315,213,0 +170770802362,213,0 +170770802412,214,0 +170770802460,214,0 +170770802508,214,0 +170770802556,214,0 +170770802605,215,0 +170770802653,215,0 +170770802701,215,0 +170770802749,215,0 +170770802799,215,0 +170770802848,215,0 +170770802896,215,0 +170770802944,215,0 +170770802992,214,0 +170770803040,213,0 +170770803088,213,0 +170770803136,213,0 +170770803184,213,0 +170770803234,213,0 +170770803283,213,0 +170770803331,214,0 +170770803381,214,0 +170770803428,214,0 +170770803478,214,0 +170770803526,214,0 +170770803574,214,0 +170770803623,214,0 +170770803671,215,0 +170770803721,215,0 +170770803770,214,0 +170770803818,215,0 +170770803866,214,0 +170770803914,214,0 +170770803962,213,0 +170770804012,213,0 +170770804060,213,0 +170770804109,213,0 +170770804159,213,0 +170770804207,214,0 +170770804255,214,0 +170770804304,214,0 +170770804352,214,0 +170770804400,214,0 +170770804448,215,0 +170770804497,214,0 +170770804545,214,0 +170770804594,214,0 +170770804644,214,0 +170770804692,214,0 +170770804740,215,0 +170770804788,214,0 +170770804837,213,0 +170770804885,213,0 +170770804933,213,0 +170770804981,213,0 +170770805029,213,0 +170770805077,213,0 +170770805126,214,0 +170770805174,214,0 +170770805224,214,0 +170770805272,214,0 +170770805321,214,0 +170770805369,214,0 +170770805417,215,0 +170770805465,214,0 +170770805515,214,0 +170770805563,215,0 +170770805611,215,0 +170770805658,214,0 +170770805708,214,0 +170770805756,213,0 +170770805805,213,0 +170770805853,213,0 +170770805901,213,0 +170770805949,213,0 +170770805997,214,0 +170770806044,214,0 +170770806092,214,0 +170770806140,214,0 +170770806190,214,0 +170770806238,214,0 +170770806286,214,0 +170770806334,214,0 +170770806382,214,0 +170770806431,214,0 +170770806479,215,0 +170770806528,214,0 +170770806578,214,0 +170770806626,213,0 +170770806674,213,0 +170770806721,213,0 +170770806769,213,0 +170770806817,214,0 +170770806865,214,0 +170770806913,214,0 +170770806961,214,0 +170770807009,214,0 +170770807057,214,0 +170770807104,214,0 +170770807152,214,0 +170770807200,214,0 +170770807248,214,0 +170770807296,214,0 +170770807344,215,0 +170770807393,214,0 +170770807441,214,0 +170770807490,214,0 +170770807538,213,0 +170770807586,213,0 +170770807634,213,0 +170770807682,213,0 +170770807729,214,0 +170770807777,214,0 +170770807825,214,0 +170770807873,214,0 +170770807921,214,0 +170770807968,214,0 +170770808016,214,0 +170770808064,214,0 +170770808113,214,0 +170770808161,214,0 +170770808209,214,0 +170770808257,214,0 +170770808305,214,0 +170770808353,214,0 +170770808402,214,0 +170770808452,213,0 +170770808501,213,0 +170770808549,213,0 +170770808599,213,0 +170770808647,213,0 +170770808695,213,0 +170770808743,213,0 +170770808791,214,0 +170770808839,214,0 +170770808887,214,0 +170770808936,214,0 +170770808984,214,0 +170770809032,214,0 +170770809080,214,0 +170770809130,215,0 +170770809177,215,0 +170770809225,216,0 +170770809273,214,0 +170770809321,214,0 +170770809371,213,0 +170770809419,213,0 +170770809467,213,0 +170770809516,213,0 +170770809564,214,0 +170770809614,214,0 +170770809662,214,0 +170770809710,214,0 +170770809758,214,0 +170770809805,214,0 +170770809855,214,0 +170770809903,214,0 +170770809952,214,0 +170770810000,215,0 +170770810048,215,0 +170770810096,215,0 +170770810146,214,0 +170770810194,215,0 +170770810242,214,0 +170770810290,214,0 +170770810338,214,0 +170770810386,214,0 +170770810435,214,0 +170770810483,214,0 +170770810533,214,0 +170770810582,214,0 +170770810630,214,0 +170770810678,214,0 +170770810728,214,0 +170770810777,215,0 +170770810825,215,0 +170770810873,215,0 +170770810923,215,0 +170770810972,215,0 +170770811022,215,0 +170770811071,214,0 +170770811119,213,0 +170770811169,213,0 +170770811218,213,0 +170770811268,214,0 +170770811316,214,0 +170770811363,214,0 +170770811413,214,0 +170770811461,214,0 +170770811509,214,0 +170770811557,214,0 +170770811606,215,0 +170770811656,215,0 +170770811704,215,0 +170770811752,215,0 +170770811800,215,0 +170770811848,214,0 +170770811897,214,0 +170770811945,214,0 +170770811993,214,0 +170770812041,213,0 +170770812089,213,0 +170770812138,213,0 +170770812186,213,0 +170770812234,214,0 +170770812282,214,0 +170770812330,214,0 +170770812378,214,0 +170770812426,214,0 +170770812476,214,0 +170770812525,214,0 +170770812574,214,0 +170770812622,214,0 +170770812672,215,0 +170770812721,215,0 +170770812771,215,0 +170770812820,215,0 +170770812868,214,0 +170770812916,213,0 +170770812966,213,0 +170770813014,213,0 +170770813062,213,0 +170770813110,213,0 +170770813159,213,0 +170770813208,213,0 +170770813258,214,0 +170770813306,214,0 +170770813354,214,0 +170770813403,214,0 +170770813451,214,0 +170770813499,214,0 +170770813547,214,0 +170770813597,215,0 +170770813645,214,0 +170770813693,214,0 +170770813742,214,0 +170770813790,214,0 +170770813838,213,0 +170770813887,213,0 +170770813937,213,0 +170770813985,213,0 +170770814033,213,0 +170770814081,213,0 +170770814128,213,0 +170770814176,213,0 +170770814224,213,0 +170770814272,214,0 +170770814320,214,0 +170770814370,214,0 +170770814418,214,0 +170770814467,214,0 +170770814515,214,0 +170770814563,214,0 +170770814611,214,0 +170770814659,214,0 +170770814707,213,0 +170770814755,213,0 +170770814804,213,0 +170770814854,213,0 +170770814903,213,0 +170770814951,213,0 +170770814999,213,0 +170770815047,213,0 +170770815095,214,0 +170770815143,214,0 +170770815192,214,0 +170770815240,214,0 +170770815290,214,0 +170770815339,214,0 +170770815387,214,0 +170770815435,214,0 +170770815483,214,0 +170770815531,214,0 +170770815579,214,0 +170770815627,213,0 +170770815675,213,0 +170770815723,213,0 +170770815772,213,0 +170770815821,213,0 +170770815870,213,0 +170770815919,214,0 +170770815967,214,0 +170770816017,214,0 +170770816065,214,0 +170770816114,214,0 +170770816162,214,0 +170770816210,214,0 +170770816259,214,0 +170770816309,214,0 +170770816358,215,0 +170770816406,215,0 +170770816454,214,0 +170770816502,213,0 +170770816550,213,0 +170770816599,213,0 +170770816649,213,0 +170770816697,213,0 +170770816745,214,0 +170770816793,213,0 +170770816840,213,0 +170770816888,214,0 +170770816936,214,0 +170770816984,214,0 +170770817034,214,0 +170770817083,214,0 +170770817133,214,0 +170770817182,214,0 +170770817230,215,0 +170770817280,215,0 +170770817329,214,0 +170770817377,214,0 +170770817425,213,0 +170770817473,213,0 +170770817521,213,0 +170770817571,213,0 +170770817619,213,0 +170770817666,213,0 +170770817714,213,0 +170770817762,214,0 +170770817810,214,0 +170770817858,214,0 +170770817908,214,0 +170770817957,215,0 +170770818007,215,0 +170770818056,214,0 +170770818106,214,0 +170770818154,214,0 +170770818202,215,0 +170770818251,214,0 +170770818301,213,0 +170770818349,213,0 +170770818398,213,0 +170770818448,213,0 +170770818495,213,0 +170770818543,213,0 +170770818591,214,0 +170770818639,214,0 +170770818689,214,0 +170770818737,214,0 +170770818786,214,0 +170770818834,214,0 +170770818884,214,0 +170770818932,215,0 +170770818980,214,0 +170770819028,214,0 +170770819076,214,0 +170770819124,214,0 +170770819172,214,0 +170770819221,213,0 +170770819271,213,0 +170770819318,213,0 +170770819366,213,0 +170770819416,213,0 +170770819464,213,0 +170770819513,213,0 +170770819561,213,0 +170770819609,214,0 +170770819657,214,0 +170770819707,214,0 +170770819756,214,0 +170770819804,214,0 +170770819852,214,0 +170770819900,215,0 +170770819948,215,0 +170770819998,214,0 +170770820046,214,0 +170770820095,213,0 +170770820145,213,0 +170770820194,213,0 +170770820242,213,0 +170770820292,213,0 +170770820341,213,0 +170770820390,213,0 +170770820440,213,0 +170770820488,213,0 +170770820537,214,0 +170770820587,214,0 +170770820635,214,0 +170770820683,214,0 +170770820732,214,0 +170770820780,214,0 +170770820830,214,0 +170770820878,214,0 +170770820927,214,0 +170770820975,213,0 +170770821023,213,0 +170770821071,213,0 +170770821119,213,0 +170770821167,213,0 +170770821215,213,0 +170770821262,213,0 +170770821310,213,0 +170770821358,213,0 +170770821407,213,0 +170770821455,214,0 +170770821503,214,0 +170770821551,214,0 +170770821599,214,0 +170770821647,215,0 +170770821694,214,0 +170770821742,214,0 +170770821790,215,0 +170770821838,214,0 +170770821886,213,0 +170770821934,213,0 +170770821983,213,0 +170770822031,213,0 +170770822079,213,0 +170770822127,213,0 +170770822176,214,0 +170770822224,213,0 +170770822272,214,0 +170770822320,214,0 +170770822370,214,0 +170770822418,214,0 +170770822466,214,0 +170770822514,214,0 +170770822563,214,0 +170770822611,214,0 +170770822661,214,0 +170770822708,214,0 +170770822756,214,0 +170770822806,213,0 +170770822855,213,0 +170770822903,213,0 +170770822951,213,0 +170770822999,213,0 +170770823047,213,0 +170770823095,214,0 +170770823143,213,0 +170770823191,214,0 +170770823240,214,0 +170770823288,214,0 +170770823337,214,0 +170770823385,214,0 +170770823433,214,0 +170770823481,214,0 +170770823529,215,0 +170770823576,214,0 +170770823624,214,0 +170770823672,213,0 +170770823720,213,0 +170770823769,213,0 +170770823817,213,0 +170770823865,213,0 +170770823913,213,0 +170770823961,214,0 +170770824009,214,0 +170770824056,214,0 +170770824104,214,0 +170770824152,214,0 +170770824200,214,0 +170770824248,215,0 +170770824296,214,0 +170770824344,215,0 +170770824391,214,0 +170770824439,215,0 +170770824489,215,0 +170770824536,214,0 +170770824584,213,0 +170770824632,213,0 +170770824680,213,0 +170770824728,213,0 +170770824776,213,0 +170770824826,214,0 +170770824875,214,0 +170770824923,214,0 +170770824971,214,0 +170770825019,214,0 +170770825068,214,0 +170770825116,214,0 +170770825164,214,0 +170770825214,215,0 +170770825262,214,0 +170770825311,214,0 +170770825361,214,0 +170770825410,214,0 +170770825460,214,0 +170770825509,213,0 +170770825557,213,0 +170770825606,213,0 +170770825654,213,0 +170770825702,213,0 +170770825750,213,0 +170770825800,214,0 +170770825848,214,0 +170770825895,214,0 +170770825943,214,0 +170770825991,214,0 +170770826041,214,0 +170770826090,214,0 +170770826138,214,0 +170770826188,214,0 +170770826236,214,0 +170770826284,214,0 +170770826333,214,0 +170770826381,213,0 +170770826431,213,0 +170770826480,213,0 +170770826528,213,0 +170770826577,213,0 +170770826625,213,0 +170770826673,213,0 +170770826723,214,0 +170770826771,214,0 +170770826820,214,0 +170770826870,214,0 +170770826918,214,0 +170770826967,214,0 +170770827015,214,0 +170770827063,214,0 +170770827112,214,0 +170770827160,215,0 +170770827208,214,0 +170770827256,213,0 +170770827304,213,0 +170770827352,213,0 +170770827400,213,0 +170770827448,213,0 +170770827496,213,0 +170770827544,213,0 +170770827593,214,0 +170770827641,214,0 +170770827689,214,0 +170770827737,214,0 +170770827785,215,0 +170770827833,214,0 +170770827882,214,0 +170770827930,214,0 +170770827980,215,0 +170770828029,215,0 +170770828079,214,0 +170770828127,214,0 +170770828174,213,0 +170770828224,213,0 +170770828272,213,0 +170770828322,213,0 +170770828369,213,0 +170770828417,213,0 +170770828465,214,0 +170770828513,214,0 +170770828563,214,0 +170770828611,214,0 +170770828659,214,0 +170770828707,214,0 +170770828755,214,0 +170770828804,214,0 +170770828852,215,0 +170770828900,214,0 +170770828948,214,0 +170770828996,214,0 +170770829044,214,0 +170770829092,213,0 +170770829140,213,0 +170770829188,213,0 +170770829237,213,0 +170770829285,213,0 +170770829333,213,0 +170770829381,213,0 +170770829429,213,0 +170770829479,213,0 +170770829527,214,0 +170770829575,214,0 +170770829624,214,0 +170770829672,214,0 +170770829722,214,0 +170770829770,214,0 +170770829817,214,0 +170770829865,214,0 +170770829913,214,0 +170770829963,213,0 +170770830011,213,0 +170770830059,213,0 +170770830108,213,0 +170770830156,213,0 +170770830205,213,0 +170770830253,213,0 +170770830301,213,0 +170770830349,214,0 +170770830397,214,0 +170770830445,214,0 +170770830493,214,0 +170770830541,214,0 +170770830589,215,0 +170770830637,215,0 +170770830685,215,0 +170770830733,214,0 +170770830781,215,0 +170770830829,214,0 +170770830877,213,0 +170770830925,213,0 +170770830974,213,0 +170770831024,213,0 +170770831072,214,0 +170770831120,213,0 +170770831167,214,0 +170770831215,214,0 +170770831263,214,0 +170770831313,214,0 +170770831361,214,0 +170770831410,214,0 +170770831460,214,0 +170770831509,214,0 +170770831558,214,0 +170770831608,214,0 +170770831656,214,0 +170770831704,214,0 +170770831752,213,0 +170770831800,213,0 +170770831849,213,0 +170770831897,213,0 +170770831945,213,0 +170770831994,214,0 +170770832044,214,0 +170770832093,214,0 +170770832141,214,0 +170770832189,214,0 +170770832239,214,0 +170770832288,214,0 +170770832336,215,0 +170770832384,215,0 +170770832432,215,0 +170770832480,215,0 +170770832528,214,0 +170770832576,214,0 +170770832624,214,0 +170770832673,213,0 +170770832721,213,0 +170770832769,213,0 +170770832819,213,0 +170770832867,214,0 +170770832915,214,0 +170770832964,214,0 +170770833014,214,0 +170770833063,214,0 +170770833111,214,0 +170770833159,214,0 +170770833207,214,0 +170770833257,214,0 +170770833306,214,0 +170770833354,214,0 +170770833402,215,0 +170770833451,215,0 +170770833501,214,0 +170770833549,213,0 +170770833597,213,0 +170770833645,213,0 +170770833693,213,0 +170770833740,213,0 +170770833788,213,0 +170770833836,214,0 +170770833886,213,0 +170770833934,214,0 +170770833982,214,0 +170770834029,214,0 +170770834077,214,0 +170770834125,214,0 +170770834173,214,0 +170770834221,214,0 +170770834269,214,0 +170770834317,215,0 +170770834365,214,0 +170770834413,214,0 +170770834461,213,0 +170770834508,213,0 +170770834558,213,0 +170770834606,213,0 +170770834654,213,0 +170770834703,213,0 +170770834751,213,0 +170770834801,214,0 +170770834849,214,0 +170770834897,214,0 +170770834946,214,0 +170770834996,214,0 +170770835043,214,0 +170770835091,214,0 +170770835139,215,0 +170770835187,214,0 +170770835235,214,0 +170770835283,214,0 +170770835331,213,0 +170770835379,213,0 +170770835427,213,0 +170770835475,213,0 +170770835525,213,0 +170770835572,214,0 +170770835620,214,0 +170770835670,214,0 +170770835718,214,0 +170770835767,214,0 +170770835817,214,0 +170770835866,214,0 +170770835914,214,0 +170770835962,214,0 +170770836012,214,0 +170770836060,215,0 +170770836108,215,0 +170770836155,214,0 +170770836203,214,0 +170770836253,213,0 +170770836302,213,0 +170770836350,213,0 +170770836398,213,0 +170770836446,213,0 +170770836494,213,0 +170770836542,213,0 +170770836591,214,0 +170770836639,214,0 +170770836689,214,0 +170770836736,214,0 +170770836786,214,0 +170770836834,214,0 +170770836882,215,0 +170770836930,214,0 +170770836977,214,0 +170770837025,214,0 +170770837075,214,0 +170770837123,213,0 +170770837172,213,0 +170770837222,213,0 +170770837271,213,0 +170770837319,213,0 +170770837367,213,0 +170770837417,213,0 +170770837464,213,0 +170770837512,214,0 +170770837560,213,0 +170770837608,214,0 +170770837656,214,0 +170770837704,214,0 +170770837753,214,0 +170770837801,214,0 +170770837849,214,0 +170770837897,214,0 +170770837946,215,0 +170770837994,214,0 +170770838042,213,0 +170770838090,213,0 +170770838138,213,0 +170770838186,213,0 +170770838234,213,0 +170770838282,213,0 +170770838331,213,0 +170770838379,213,0 +170770838427,213,0 +170770838475,213,0 +170770838523,214,0 +170770838573,214,0 +170770838622,214,0 +170770838670,214,0 +170770838718,215,0 +170770838768,214,0 +170770838817,214,0 +170770838867,214,0 +170770838914,213,0 +170770838964,213,0 +170770839012,213,0 +170770839060,213,0 +170770839108,213,0 +170770839156,213,0 +170770839204,213,0 +170770839252,213,0 +170770839300,213,0 +170770839348,214,0 +170770839395,214,0 +170770839443,214,0 +170770839491,214,0 +170770839539,214,0 +170770839587,214,0 +170770839635,214,0 +170770839683,214,0 +170770839733,214,0 +170770839780,214,0 +170770839828,213,0 +170770839878,213,0 +170770839926,213,0 +170770839974,213,0 +170770840023,213,0 +170770840073,213,0 +170770840121,213,0 +170770840170,213,0 +170770840220,213,0 +170770840268,214,0 +170770840317,214,0 +170770840367,214,0 +170770840417,214,0 +170770840464,214,0 +170770840512,214,0 +170770840562,214,0 +170770840611,214,0 +170770840659,214,0 +170770840707,213,0 +170770840757,213,0 +170770840805,213,0 +170770840854,213,0 +170770840904,213,0 +170770840952,213,0 +170770840999,214,0 +170770841049,214,0 +170770841097,214,0 +170770841145,214,0 +170770841193,214,0 +170770841241,214,0 +170770841289,215,0 +170770841337,214,0 +170770841384,214,0 +170770841432,215,0 +170770841482,214,0 +170770841530,214,0 +170770841578,214,0 +170770841627,213,0 +170770841675,213,0 +170770841723,213,0 +170770841771,214,0 +170770841821,213,0 +170770841869,214,0 +170770841917,214,0 +170770841966,214,0 +170770842014,214,0 +170770842062,214,0 +170770842110,215,0 +170770842158,215,0 +170770842207,215,0 +170770842255,214,0 +170770842303,215,0 +170770842351,215,0 +170770842401,215,0 +170770842449,214,0 +170770842498,214,0 +170770842546,213,0 +170770842596,213,0 +170770842644,213,0 +170770842692,214,0 +170770842740,214,0 +170770842789,214,0 +170770842839,214,0 +170770842887,214,0 +170770842935,214,0 +170770842983,214,0 +170770843032,214,0 +170770843080,214,0 +170770843128,214,0 +170770843176,214,0 +170770843224,214,0 +170770843271,214,0 +170770843319,215,0 +170770843367,214,0 +170770843415,213,0 +170770843463,213,0 +170770843511,213,0 +170770843559,213,0 +170770843607,213,0 +170770843654,213,0 +170770843702,213,0 +170770843750,213,0 +170770843798,214,0 +170770843848,214,0 +170770843896,214,0 +170770843944,214,0 +170770843992,214,0 +170770844040,214,0 +170770844087,214,0 +170770844135,214,0 +170770844185,214,0 +170770844234,214,0 +170770844282,214,0 +170770844330,213,0 +170770844378,213,0 +170770844426,213,0 +170770844474,213,0 +170770844522,213,0 +170770844570,214,0 +170770844618,214,0 +170770844666,214,0 +170770844714,214,0 +170770844763,214,0 +170770844813,214,0 +170770844861,215,0 +170770844910,215,0 +170770844960,215,0 +170770845007,215,0 +170770845055,215,0 +170770845105,214,0 +170770845153,214,0 +170770845202,213,0 +170770845250,213,0 +170770845300,213,0 +170770845348,213,0 +170770845396,214,0 +170770845444,213,0 +170770845492,214,0 +170770845540,214,0 +170770845588,214,0 +170770845635,214,0 +170770845685,214,0 +170770845734,214,0 +170770845784,214,0 +170770845832,215,0 +170770845880,214,0 +170770845928,214,0 +170770845977,214,0 +170770846025,214,0 +170770846073,214,0 +170770846122,213,0 +170770846170,213,0 +170770846220,213,0 +170770846268,214,0 +170770846317,214,0 +170770846365,214,0 +170770846415,214,0 +170770846463,214,0 +170770846511,214,0 +170770846560,214,0 +170770846610,214,0 +170770846659,214,0 +170770846707,215,0 +170770846755,214,0 +170770846805,215,0 +170770846854,215,0 +170770846902,215,0 +170770846950,214,0 +170770846998,213,0 +170770847047,213,0 +170770847095,213,0 +170770847143,213,0 +170770847191,213,0 +170770847239,213,0 +170770847287,213,0 +170770847335,214,0 +170770847384,214,0 +170770847432,214,0 +170770847482,215,0 +170770847531,215,0 +170770847579,215,0 +170770847627,215,0 +170770847677,215,0 +170770847725,214,0 +170770847773,214,0 +170770847821,214,0 +170770847868,214,0 +170770847916,213,0 +170770847964,213,0 +170770848012,213,0 +170770848060,213,0 +170770848108,213,0 +170770848156,213,0 +170770848204,214,0 +170770848253,214,0 +170770848301,214,0 +170770848349,214,0 +170770848397,214,0 +170770848447,214,0 +170770848495,214,0 +170770848544,214,0 +170770848594,214,0 +170770848642,214,0 +170770848691,214,0 +170770848739,214,0 +170770848789,213,0 +170770848837,213,0 +170770848885,213,0 +170770848932,213,0 +170770848980,213,0 +170770849030,213,0 +170770849078,213,0 +170770849126,213,0 +170770849175,213,0 +170770849223,214,0 +170770849271,214,0 +170770849319,214,0 +170770849369,214,0 +170770849416,214,0 +170770849466,214,0 +170770849514,214,0 +170770849562,214,0 +170770849610,214,0 +170770849658,214,0 +170770849706,213,0 +170770849755,213,0 +170770849805,213,0 +170770849852,213,0 +170770849900,213,0 +170770849948,213,0 +170770849996,214,0 +170770850044,213,0 +170770850092,213,0 +170770850140,214,0 +170770850187,214,0 +170770850235,214,0 +170770850283,214,0 +170770850331,214,0 +170770850379,215,0 +170770850427,215,0 +170770850475,214,0 +170770850524,215,0 +170770850573,214,0 +170770850623,213,0 +170770850672,213,0 +170770850720,213,0 +170770850768,213,0 +170770850816,213,0 +170770850864,213,0 +170770850912,213,0 +170770850959,213,0 +170770851007,214,0 +170770851055,214,0 +170770851103,213,0 +170770851151,214,0 +170770851199,214,0 +170770851247,214,0 +170770851295,214,0 +170770851344,214,0 +170770851394,214,0 +170770851442,214,0 +170770851490,213,0 +170770851537,213,0 +170770851587,213,0 +170770851635,213,0 +170770851683,213,0 +170770851731,213,0 +170770851779,213,0 +170770851828,214,0 +170770851878,214,0 +170770851927,214,0 +170770851975,214,0 +170770852025,214,0 +170770852073,214,0 +170770852120,214,0 +170770852168,215,0 +170770852216,214,0 +170770852264,215,0 +170770852312,214,0 +170770852360,214,0 +170770852407,213,0 +170770852455,213,0 +170770852505,213,0 +170770852552,213,0 +170770852600,214,0 +170770852648,213,0 +170770852698,214,0 +170770852746,214,0 +170770852795,214,0 +170770852843,214,0 +170770852891,214,0 +170770852939,214,0 +170770852989,215,0 +170770853036,214,0 +170770853084,214,0 +170770853132,214,0 +170770853182,214,0 +170770853230,214,0 +170770853278,213,0 +170770853325,213,0 +170770853373,213,0 +170770853421,213,0 +170770853469,213,0 +170770853517,213,0 +170770853565,213,0 +170770853614,213,0 +170770853662,214,0 +170770853710,214,0 +170770853760,214,0 +170770853809,214,0 +170770853859,214,0 +170770853907,215,0 +170770853956,215,0 +170770854006,215,0 +170770854054,215,0 +170770854103,214,0 +170770854151,214,0 +170770854199,213,0 +170770854247,213,0 +170770854297,213,0 +170770854346,213,0 +170770854394,213,0 +170770854442,213,0 +170770854490,213,0 +170770854538,213,0 +170770854586,213,0 +170770854633,213,0 +170770854681,214,0 +170770854729,214,0 +170770854777,214,0 +170770854825,214,0 +170770854873,214,0 +170770854920,215,0 +170770854970,214,0 +170770855018,214,0 +170770855067,213,0 +170770855115,213,0 +170770855165,213,0 +170770855214,213,0 +170770855262,213,0 +170770855312,213,0 +170770855360,213,0 +170770855407,213,0 +170770855457,213,0 +170770855505,214,0 +170770855553,214,0 +170770855600,214,0 +170770855648,214,0 +170770855698,214,0 +170770855745,214,0 +170770855795,214,0 +170770855843,214,0 +170770855892,214,0 +170770855940,214,0 +170770855988,213,0 +170770856037,213,0 +170770856085,213,0 +170770856133,213,0 +170770856181,213,0 +170770856229,213,0 +170770856276,213,0 +170770856324,213,0 +170770856372,214,0 +170770856420,214,0 +170770856468,214,0 +170770856516,214,0 +170770856564,214,0 +170770856612,214,0 +170770856661,214,0 +170770856709,214,0 +170770856759,214,0 +170770856808,214,0 +170770856856,213,0 +170770856904,213,0 +170770856952,213,0 +170770857000,213,0 +170770857049,213,0 +170770857099,213,0 +170770857147,213,0 +170770857195,213,0 +170770857242,213,0 +170770857290,214,0 +170770857338,214,0 +170770857386,214,0 +170770857434,214,0 +170770857482,214,0 +170770857530,215,0 +170770857577,214,0 +170770857625,214,0 +170770857673,214,0 +170770857721,214,0 +170770857770,213,0 +170770857818,213,0 +170770857867,213,0 +170770857915,213,0 +170770857963,213,0 +170770858011,213,0 +170770858059,213,0 +170770858107,213,0 +170770858155,213,0 +170770858202,214,0 +170770858250,214,0 +170770858298,214,0 +170770858346,214,0 +170770858394,214,0 +170770858442,214,0 +170770858490,215,0 +170770858539,215,0 +170770858587,214,0 +170770858635,213,0 +170770858683,213,0 +170770858731,213,0 +170770858779,213,0 +170770858828,213,0 +170770858876,214,0 +170770858924,214,0 +170770858972,214,0 +170770859020,214,0 +170770859067,214,0 +170770859115,214,0 +170770859163,215,0 +170770859211,214,0 +170770859259,214,0 +170770859309,214,0 +170770859357,215,0 +170770859405,214,0 +170770859452,214,0 +170770859500,214,0 +170770859550,213,0 +170770859599,213,0 +170770859649,214,0 +170770859696,214,0 +170770859744,214,0 +170770859792,214,0 +170770859840,214,0 +170770859888,214,0 +170770859936,215,0 +170770859984,215,0 +170770860032,215,0 +170770860079,215,0 +170770860129,215,0 +170770860177,215,0 +170770860224,215,0 +170770860272,215,0 +170770860320,215,0 +170770860368,214,0 +170770860416,214,0 +170770860466,213,0 +170770860513,214,0 +170770860561,214,0 +170770860609,213,0 +170770860658,214,0 +170770860708,214,0 +170770860757,214,0 +170770860805,214,0 +170770860853,214,0 +170770860901,214,0 +170770860949,214,0 +170770860997,214,0 +170770861046,214,0 +170770861096,214,0 +170770861144,215,0 +170770861192,215,0 +170770861241,214,0 +170770861291,214,0 +170770861340,214,0 +170770861388,213,0 +170770861436,213,0 +170770861484,213,0 +170770861532,214,0 +170770861581,213,0 +170770861629,214,0 +170770861677,214,0 +170770861726,214,0 +170770861774,214,0 +170770861824,214,0 +170770861873,214,0 +170770861921,214,0 +170770861971,215,0 +170770862019,215,0 +170770862067,215,0 +170770862115,214,0 +170770862163,214,0 +170770862210,213,0 +170770862260,213,0 +170770862308,213,0 +170770862356,213,0 +170770862404,214,0 +170770862452,214,0 +170770862500,214,0 +170770862549,214,0 +170770862597,214,0 +170770862645,214,0 +170770862693,214,0 +170770862741,215,0 +170770862789,215,0 +170770862837,214,0 +170770862885,215,0 +170770862933,214,0 +170770862981,214,0 +170770863029,214,0 +170770863078,214,0 +170770863126,213,0 +170770863174,213,0 +170770863222,214,0 +170770863270,214,0 +170770863320,214,0 +170770863369,214,0 +170770863419,214,0 +170770863466,214,0 +170770863514,214,0 +170770863564,214,0 +170770863611,215,0 +170770863659,215,0 +170770863707,215,0 +170770863755,215,0 +170770863803,214,0 +170770863851,215,0 +170770863899,215,0 +170770863946,214,0 +170770863994,213,0 +170770864042,213,0 +170770864090,213,0 +170770864138,213,0 +170770864186,213,0 +170770864234,213,0 +170770864282,213,0 +170770864330,213,0 +170770864378,214,0 +170770864425,214,0 +170770864473,214,0 +170770864521,214,0 +170770864569,214,0 +170770864617,214,0 +170770864665,214,0 +170770864715,214,0 +170770864764,214,0 +170770864812,214,0 +170770864862,214,0 +170770864910,213,0 +170770864957,213,0 +170770865005,213,0 +170770865055,213,0 +170770865105,213,0 +170770865154,213,0 +170770865204,213,0 +170770865252,214,0 +170770865300,214,0 +170770865348,214,0 +170770865395,214,0 +170770865443,214,0 +170770865491,214,0 +170770865539,214,0 +170770865589,214,0 +170770865638,214,0 +170770865686,215,0 +170770865735,215,0 +170770865783,213,0 +170770865833,213,0 +170770865881,213,0 +170770865929,213,0 +170770865978,213,0 +170770866026,213,0 +170770866074,214,0 +170770866121,213,0 +170770866169,214,0 +170770866217,214,0 +170770866265,214,0 +170770866313,214,0 +170770866361,214,0 +170770866409,214,0 +170770866457,214,0 +170770866504,215,0 +170770866552,215,0 +170770866602,214,0 +170770866651,214,0 +170770866699,213,0 +170770866747,213,0 +170770866795,213,0 +170770866843,213,0 +170770866891,213,0 +170770866939,213,0 +170770866988,214,0 +170770867038,213,0 +170770867086,214,0 +170770867134,214,0 +170770867181,214,0 +170770867229,214,0 +170770867279,214,0 +170770867328,215,0 +170770867376,215,0 +170770867426,214,0 +170770867475,215,0 +170770867523,214,0 +170770867571,213,0 +170770867621,213,0 +170770867668,213,0 +170770867716,213,0 +170770867766,213,0 +170770867815,213,0 +170770867863,214,0 +170770867911,214,0 +170770867959,214,0 +170770868006,214,0 +170770868054,214,0 +170770868102,214,0 +170770868152,214,0 +170770868200,214,0 +170770868248,214,0 +170770868297,214,0 +170770868345,214,0 +170770868395,214,0 +170770868443,214,0 +170770868491,213,0 +170770868540,213,0 +170770868588,213,0 +170770868636,213,0 +170770868686,213,0 +170770868733,213,0 +170770868781,213,0 +170770868831,214,0 +170770868879,213,0 +170770868926,213,0 +170770868974,214,0 +170770869022,214,0 +170770869070,214,0 +170770869118,214,0 +170770869167,215,0 +170770869215,215,0 +170770869263,214,0 +170770869311,214,0 +170770869359,213,0 +170770869408,213,0 +170770869456,213,0 +170770869504,213,0 +170770869553,214,0 +170770869601,214,0 +170770869649,214,0 +170770869698,214,0 +170770869746,214,0 +170770869796,214,0 +170770869845,214,0 +170770869893,214,0 +170770869940,214,0 +170770869988,215,0 +170770870036,214,0 +170770870084,215,0 +170770870132,215,0 +170770870180,215,0 +170770870228,214,0 +170770870276,213,0 +170770870325,213,0 +170770870375,213,0 +170770870424,213,0 +170770870474,213,0 +170770870522,213,0 +170770870571,214,0 +170770870619,214,0 +170770870667,214,0 +170770870715,214,0 +170770870763,214,0 +170770870811,214,0 +170770870859,214,0 +170770870908,214,0 +170770870956,215,0 +170770871004,214,0 +170770871052,214,0 +170770871100,214,0 +170770871148,213,0 +170770871196,213,0 +170770871244,213,0 +170770871292,213,0 +170770871341,213,0 +170770871389,213,0 +170770871439,213,0 +170770871488,213,0 +170770871538,214,0 +170770871586,214,0 +170770871634,214,0 +170770871683,214,0 +170770871731,215,0 +170770871779,214,0 +170770871827,215,0 +170770871875,214,0 +170770871923,214,0 +170770871971,215,0 +170770872019,213,0 +170770872068,213,0 +170770872116,213,0 +170770872164,213,0 +170770872212,213,0 +170770872259,213,0 +170770872307,214,0 +170770872355,214,0 +170770872403,214,0 +170770872451,214,0 +170770872499,214,0 +170770872547,214,0 +170770872594,214,0 +170770872642,215,0 +170770872690,214,0 +170770872738,215,0 +170770872786,215,0 +170770872834,214,0 +170770872883,214,0 +170770872931,213,0 +170770872979,213,0 +170770873027,213,0 +170770873075,213,0 +170770873124,213,0 +170770873172,213,0 +170770873220,213,0 +170770873268,213,0 +170770873316,214,0 +170770873365,214,0 +170770873413,214,0 +170770873461,214,0 +170770873509,214,0 +170770873559,214,0 +170770873607,214,0 +170770873656,215,0 +170770873706,214,0 +170770873754,215,0 +170770873803,214,0 +170770873851,213,0 +170770873899,213,0 +170770873948,213,0 +170770873996,213,0 +170770874044,213,0 +170770874092,214,0 +170770874140,214,0 +170770874188,214,0 +170770874236,214,0 +170770874285,214,0 +170770874333,214,0 +170770874383,215,0 +170770874432,215,0 +170770874480,215,0 +170770874528,214,0 +170770874576,215,0 +170770874624,215,0 +170770874673,214,0 +170770874721,213,0 +170770874769,213,0 +170770874818,213,0 +170770874866,213,0 +170770874916,213,0 +170770874965,214,0 +170770875013,214,0 +170770875061,214,0 +170770875109,214,0 +170770875157,214,0 +170770875205,214,0 +170770875255,214,0 +170770875302,214,0 +170770875352,214,0 +170770875401,215,0 +170770875449,214,0 +170770875499,214,0 +170770875547,214,0 +170770875596,213,0 +170770875646,213,0 +170770875694,214,0 +170770875743,213,0 +170770875793,214,0 +170770875841,214,0 +170770875889,214,0 +170770875937,214,0 +170770875986,214,0 +170770876034,214,0 +170770876082,214,0 +170770876130,214,0 +170770876179,214,0 +170770876227,215,0 +170770876275,215,0 +170770876323,215,0 +170770876371,215,0 +170770876419,214,0 +170770876466,214,0 +170770876514,213,0 +170770876562,214,0 +170770876610,213,0 +170770876658,214,0 +170770876706,214,0 +170770876755,214,0 +170770876803,214,0 +170770876851,214,0 +170770876899,214,0 +170770876946,214,0 +170770876994,214,0 +170770877042,214,0 +170770877090,215,0 +170770877138,214,0 +170770877187,215,0 +170770877235,215,0 +170770877283,214,0 +170770877331,214,0 +170770877381,213,0 +170770877430,213,0 +170770877478,213,0 +170770877526,213,0 +170770877574,214,0 +170770877623,214,0 +170770877671,214,0 +170770877719,214,0 +170770877769,214,0 +170770877818,214,0 +170770877868,214,0 +170770877917,214,0 +170770877965,215,0 +170770878013,215,0 +170770878061,214,0 +170770878108,214,0 +170770878156,215,0 +170770878204,214,0 +170770878252,215,0 +170770878300,213,0 +170770878348,213,0 +170770878398,213,0 +170770878447,214,0 +170770878497,213,0 +170770878546,214,0 +170770878596,214,0 +170770878644,214,0 +170770878693,214,0 +170770878741,214,0 +170770878790,214,0 +170770878838,214,0 +170770878886,215,0 +170770878934,215,0 +170770878983,215,0 +170770879031,215,0 +170770879080,214,0 +170770879129,214,0 +170770879177,213,0 +170770879225,213,0 +170770879273,213,0 +170770879322,213,0 +170770879370,214,0 +170770879418,214,0 +170770879466,214,0 +170770879514,214,0 +170770879562,214,0 +170770879610,214,0 +170770879657,214,0 +170770879705,215,0 +170770879753,215,0 +170770879801,215,0 +170770879849,215,0 +170770879897,215,0 +170770879945,214,0 +170770879994,215,0 +170770880042,215,0 +170770880090,213,0 +170770880138,213,0 +170770880185,213,0 +170770880233,214,0 +170770880281,213,0 +170770880329,214,0 +170770880377,213,0 +170770880425,214,0 +170770880473,214,0 +170770880520,214,0 +170770880568,215,0 +170770880618,214,0 +170770880666,215,0 +170770880713,215,0 +170770880761,214,0 +170770880809,215,0 +170770880857,215,0 +170770880907,215,0 +170770880954,213,0 +170770881002,213,0 +170770881050,213,0 +170770881098,213,0 +170770881146,213,0 +170770881194,213,0 +170770881241,213,0 +170770881289,214,0 +170770881337,214,0 +170770881385,214,0 +170770881433,214,0 +170770881481,214,0 +170770881530,214,0 +170770881578,214,0 +170770881628,214,0 +170770881676,215,0 +170770881723,215,0 +170770881771,215,0 +170770881819,214,0 +170770881867,213,0 +170770881915,213,0 +170770881963,213,0 +170770882013,214,0 +170770882061,214,0 +170770882108,214,0 +170770882156,214,0 +170770882204,214,0 +170770882252,214,0 +170770882300,214,0 +170770882348,214,0 +170770882396,214,0 +170770882444,215,0 +170770882492,214,0 +170770882542,214,0 +170770882590,214,0 +170770882638,214,0 +170770882687,214,0 +170770882735,213,0 +170770882783,213,0 +170770882832,213,0 +170770882880,213,0 +170770882928,213,0 +170770882978,213,0 +170770883025,214,0 +170770883073,214,0 +170770883123,214,0 +170770883171,214,0 +170770883219,214,0 +170770883267,214,0 +170770883315,214,0 +170770883363,215,0 +170770883412,214,0 +170770883460,214,0 +170770883510,215,0 +170770883559,215,0 +170770883607,214,0 +170770883655,213,0 +170770883703,213,0 +170770883751,213,0 +170770883800,213,0 +170770883848,213,0 +170770883896,213,0 +170770883944,213,0 +170770883993,214,0 +170770884043,214,0 +170770884091,214,0 +170770884139,214,0 +170770884187,214,0 +170770884236,214,0 +170770884284,214,0 +170770884334,214,0 +170770884383,215,0 +170770884431,215,0 +170770884481,214,0 +170770884529,213,0 +170770884578,213,0 +170770884628,213,0 +170770884677,213,0 +170770884727,213,0 +170770884776,213,0 +170770884826,214,0 +170770884875,214,0 +170770884923,214,0 +170770884971,214,0 +170770885019,214,0 +170770885069,214,0 +170770885117,214,0 +170770885166,214,0 +170770885216,215,0 +170770885265,215,0 +170770885313,215,0 +170770885361,215,0 +170770885409,214,0 +170770885458,213,0 +170770885506,213,0 +170770885554,214,0 +170770885604,213,0 +170770885652,214,0 +170770885700,214,0 +170770885748,214,0 +170770885796,214,0 +170770885844,214,0 +170770885891,214,0 +170770885939,214,0 +170770885987,215,0 +170770886035,215,0 +170770886083,215,0 +170770886131,215,0 +170770886179,215,0 +170770886228,216,0 +170770886278,215,0 +170770886327,213,0 +170770886375,214,0 +170770886423,214,0 +170770886473,214,0 +170770886521,214,0 +170770886570,214,0 +170770886618,214,0 +170770886666,214,0 +170770886714,214,0 +170770886762,214,0 +170770886809,214,0 +170770886859,214,0 +170770886907,215,0 +170770886954,215,0 +170770887002,214,0 +170770887050,215,0 +170770887098,214,0 +170770887146,214,0 +170770887194,214,0 +170770887242,213,0 +170770887291,213,0 +170770887339,213,0 +170770887387,214,0 +170770887435,213,0 +170770887485,214,0 +170770887534,214,0 +170770887582,214,0 +170770887632,214,0 +170770887681,215,0 +170770887731,215,0 +170770887779,215,0 +170770887827,215,0 +170770887874,215,0 +170770887924,215,0 +170770887973,215,0 +170770888021,215,0 +170770888069,214,0 +170770888119,213,0 +170770888168,213,0 +170770888218,214,0 +170770888266,214,0 +170770888314,214,0 +170770888362,214,0 +170770888411,214,0 +170770888461,214,0 +170770888509,214,0 +170770888558,214,0 +170770888608,215,0 +170770888656,215,0 +170770888704,215,0 +170770888753,215,0 +170770888803,214,0 +170770888852,214,0 +170770888902,214,0 +170770888950,214,0 +170770888998,213,0 +170770889046,213,0 +170770889095,213,0 +170770889143,214,0 +170770889193,214,0 +170770889241,214,0 +170770889288,214,0 +170770889336,214,0 +170770889386,214,0 +170770889434,214,0 +170770889482,215,0 +170770889530,214,0 +170770889579,215,0 +170770889627,215,0 +170770889677,215,0 +170770889725,215,0 +170770889774,215,0 +170770889822,214,0 +170770889870,213,0 +170770889918,213,0 +170770889968,213,0 +170770890017,213,0 +170770890065,213,0 +170770890113,213,0 +170770890161,213,0 +170770890209,214,0 +170770890257,214,0 +170770890304,214,0 +170770890352,214,0 +170770890400,214,0 +170770890448,214,0 +170770890496,215,0 +170770890544,214,0 +170770890592,214,0 +170770890640,215,0 +170770890688,214,0 +170770890737,214,0 +170770890785,213,0 +170770890833,213,0 +170770890881,213,0 +170770890929,213,0 +170770890978,213,0 +170770891026,213,0 +170770891074,213,0 +170770891124,214,0 +170770891171,214,0 +170770891219,214,0 +170770891269,214,0 +170770891317,214,0 +170770891366,214,0 +170770891414,214,0 +170770891464,214,0 +170770891512,214,0 +170770891561,214,0 +170770891609,214,0 +170770891659,213,0 +170770891708,213,0 +170770891758,213,0 +170770891806,213,0 +170770891854,213,0 +170770891903,213,0 +170770891953,213,0 +170770892001,213,0 +170770892049,213,0 +170770892098,214,0 +170770892148,214,0 +170770892196,214,0 +170770892244,214,0 +170770892293,214,0 +170770892341,214,0 +170770892391,214,0 +170770892439,214,0 +170770892487,214,0 +170770892535,213,0 +170770892584,213,0 +170770892632,213,0 +170770892680,213,0 +170770892728,213,0 +170770892778,213,0 +170770892827,213,0 +170770892875,213,0 +170770892924,214,0 +170770892972,214,0 +170770893020,214,0 +170770893068,214,0 +170770893116,214,0 +170770893164,214,0 +170770893212,215,0 +170770893262,214,0 +170770893310,215,0 +170770893358,214,0 +170770893407,214,0 +170770893455,213,0 +170770893505,213,0 +170770893553,213,0 +170770893602,213,0 +170770893650,213,0 +170770893700,213,0 +170770893748,214,0 +170770893796,214,0 +170770893843,214,0 +170770893893,214,0 +170770893941,214,0 +170770893989,214,0 +170770894038,214,0 +170770894086,214,0 +170770894136,214,0 +170770894184,215,0 +170770894233,214,0 +170770894283,214,0 +170770894331,213,0 +170770894380,213,0 +170770894430,213,0 +170770894478,214,0 +170770894527,213,0 +170770894577,214,0 +170770894625,214,0 +170770894674,214,0 +170770894724,214,0 +170770894773,215,0 +170770894821,214,0 +170770894869,214,0 +170770894917,214,0 +170770894965,215,0 +170770895013,215,0 +170770895062,215,0 +170770895110,215,0 +170770895158,215,0 +170770895206,213,0 +170770895254,213,0 +170770895301,213,0 +170770895349,213,0 +170770895399,213,0 +170770895446,214,0 +170770895494,214,0 +170770895542,214,0 +170770895590,214,0 +170770895639,214,0 +170770895687,214,0 +170770895735,214,0 +170770895785,214,0 +170770895832,214,0 +170770895882,214,0 +170770895931,214,0 +170770895979,215,0 +170770896027,214,0 +170770896075,214,0 +170770896123,213,0 +170770896171,213,0 +170770896220,213,0 +170770896270,213,0 +170770896319,213,0 +170770896367,213,0 +170770896417,213,0 +170770896465,214,0 +170770896514,214,0 +170770896562,214,0 +170770896610,214,0 +170770896658,214,0 +170770896706,214,0 +170770896754,214,0 +170770896803,215,0 +170770896851,215,0 +170770896899,215,0 +170770896948,214,0 +170770896998,213,0 +170770897047,213,0 +170770897095,213,0 +170770897143,213,0 +170770897191,213,0 +170770897239,214,0 +170770897289,214,0 +170770897337,214,0 +170770897384,214,0 +170770897434,214,0 +170770897482,214,0 +170770897530,214,0 +170770897578,215,0 +170770897625,215,0 +170770897673,214,0 +170770897721,214,0 +170770897769,215,0 +170770897817,214,0 +170770897865,214,0 +170770897913,213,0 +170770897961,213,0 +170770898009,213,0 +170770898057,214,0 +170770898105,214,0 +170770898152,214,0 +170770898200,214,0 +170770898250,214,0 +170770898299,214,0 +170770898349,214,0 +170770898397,214,0 +170770898446,215,0 +170770898494,214,0 +170770898544,214,0 +170770898592,215,0 +170770898640,215,0 +170770898688,215,0 +170770898736,214,0 +170770898785,213,0 +170770898833,213,0 +170770898883,214,0 +170770898932,214,0 +170770898980,214,0 +170770899029,214,0 +170770899077,214,0 +170770899125,214,0 +170770899173,214,0 +170770899222,214,0 +170770899270,214,0 +170770899318,214,0 +170770899366,214,0 +170770899415,214,0 +170770899463,214,0 +170770899511,215,0 +170770899561,214,0 +170770899609,214,0 +170770899657,213,0 +170770899705,213,0 +170770899754,213,0 +170770899802,213,0 +170770899850,213,0 +170770899898,214,0 +170770899947,213,0 +170770899995,214,0 +170770900043,214,0 +170770900091,214,0 +170770900139,214,0 +170770900189,214,0 +170770900238,214,0 +170770900286,214,0 +170770900336,214,0 +170770900384,214,0 +170770900433,215,0 +170770900481,214,0 +170770900531,214,0 +170770900580,213,0 +170770900630,213,0 +170770900677,213,0 +170770900727,213,0 +170770900775,213,0 +170770900823,214,0 +170770900871,214,0 +170770900920,214,0 +170770900970,214,0 +170770901018,214,0 +170770901067,214,0 +170770901115,214,0 +170770901163,214,0 +170770901212,215,0 +170770901260,215,0 +170770901310,215,0 +170770901358,215,0 +170770901406,214,0 +170770901454,213,0 +170770901503,213,0 +170770901551,213,0 +170770901599,213,0 +170770901649,214,0 +170770901698,214,0 +170770901746,214,0 +170770901794,214,0 +170770901844,214,0 +170770901892,214,0 +170770901939,214,0 +170770901987,214,0 +170770902037,215,0 +170770902086,215,0 +170770902136,215,0 +170770902183,215,0 +170770902231,215,0 +170770902279,214,0 +170770902329,213,0 +170770902377,213,0 +170770902426,213,0 +170770902474,213,0 +170770902522,213,0 +170770902572,214,0 +170770902619,214,0 +170770902667,214,0 +170770902715,214,0 +170770902763,214,0 +170770902811,215,0 +170770902859,215,0 +170770902907,215,0 +170770902955,214,0 +170770903002,215,0 +170770903050,215,0 +170770903098,215,0 +170770903146,215,0 +170770903194,214,0 +170770903242,213,0 +170770903290,213,0 +170770903340,213,0 +170770903388,214,0 +170770903436,213,0 +170770903483,214,0 +170770903531,214,0 +170770903581,214,0 +170770903630,214,0 +170770903678,215,0 +170770903726,215,0 +170770903776,215,0 +170770903823,215,0 +170770903871,214,0 +170770903921,215,0 +170770903970,214,0 +170770904018,215,0 +170770904066,214,0 +170770904114,213,0 +170770904162,213,0 +170770904212,213,0 +170770904260,213,0 +170770904307,214,0 +170770904357,214,0 +170770904407,214,0 +170770904456,214,0 +170770904504,214,0 +170770904553,214,0 +170770904603,214,0 +170770904651,215,0 +170770904700,215,0 +170770904748,215,0 +170770904796,215,0 +170770904844,215,0 +170770904894,215,0 +170770904942,215,0 +170770904991,213,0 +170770905039,213,0 +170770905089,213,0 +170770905137,213,0 +170770905186,213,0 +170770905236,213,0 +170770905285,213,0 +170770905335,213,0 +170770905384,214,0 +170770905432,214,0 +170770905480,214,0 +170770905528,214,0 +170770905576,214,0 +170770905624,214,0 +170770905672,214,0 +170770905720,214,0 +170770905768,214,0 +170770905815,214,0 +170770905863,214,0 +170770905911,213,0 +170770905959,213,0 +170770906007,213,0 +170770906055,213,0 +170770906104,213,0 +170770906152,213,0 +170770906202,213,0 +170770906251,213,0 +170770906299,214,0 +170770906347,214,0 +170770906395,214,0 +170770906443,214,0 +170770906491,215,0 +170770906539,214,0 +170770906588,214,0 +170770906636,214,0 +170770906686,214,0 +170770906734,214,0 +170770906782,213,0 +170770906830,213,0 +170770906878,213,0 +170770906926,213,0 +170770906973,213,0 +170770907021,213,0 +170770907071,213,0 +170770907121,213,0 +170770907168,213,0 +170770907216,214,0 +170770907264,214,0 +170770907312,214,0 +170770907360,214,0 +170770907408,214,0 +170770907456,214,0 +170770907504,214,0 +170770907553,214,0 +170770907601,214,0 +170770907649,214,0 +170770907699,213,0 +170770907747,213,0 +170770907796,213,0 +170770907844,213,0 +170770907894,213,0 +170770907943,213,0 +170770907993,213,0 +170770908042,214,0 +170770908090,214,0 +170770908138,214,0 +170770908186,214,0 +170770908236,214,0 +170770908285,214,0 +170770908333,214,0 +170770908381,214,0 +170770908431,214,0 +170770908480,214,0 +170770908530,214,0 +170770908578,213,0 +170770908626,213,0 +170770908673,213,0 +170770908721,213,0 +170770908771,213,0 +170770908819,213,0 +170770908868,213,0 +170770908916,214,0 +170770908964,214,0 +170770909013,214,0 +170770909061,214,0 +170770909109,214,0 +170770909157,214,0 +170770909205,214,0 +170770909253,215,0 +170770909301,215,0 +170770909349,215,0 +170770909397,215,0 +170770909446,213,0 +170770909496,213,0 +170770909545,213,0 +170770909595,213,0 +170770909644,213,0 +170770909692,214,0 +170770909740,214,0 +170770909790,214,0 +170770909838,214,0 +170770909887,214,0 +170770909935,214,0 +170770909983,214,0 +170770910032,214,0 +170770910080,214,0 +170770910130,215,0 +170770910178,214,0 +170770910227,214,0 +170770910275,214,0 +170770910323,214,0 +170770910371,213,0 +170770910419,213,0 +170770910467,213,0 +170770910516,213,0 +170770910564,213,0 +170770910614,214,0 +170770910662,214,0 +170770910711,214,0 +170770910759,214,0 +170770910807,214,0 +170770910857,214,0 +170770910905,214,0 +170770910952,214,0 +170770911000,214,0 +170770911048,215,0 +170770911098,215,0 +170770911147,215,0 +170770911195,214,0 +170770911245,213,0 +170770911293,213,0 +170770911342,213,0 +170770911390,213,0 +170770911438,213,0 +170770911486,213,0 +170770911536,214,0 +170770911584,214,0 +170770911632,214,0 +170770911680,214,0 +170770911728,214,0 +170770911775,214,0 +170770911823,214,0 +170770911873,214,0 +170770911921,215,0 +170770911968,215,0 +170770912018,214,0 +170770912066,214,0 +170770912115,213,0 +170770912165,213,0 +170770912213,213,0 +170770912262,213,0 +170770912310,213,0 +170770912358,213,0 +170770912408,213,0 +170770912455,214,0 +170770912503,214,0 +170770912553,214,0 +170770912601,214,0 +170770912650,214,0 +170770912700,214,0 +170770912748,214,0 +170770912796,214,0 +170770912845,214,0 +170770912893,214,0 +170770912941,214,0 +170770912989,214,0 +170770913037,213,0 +170770913084,213,0 +170770913132,213,0 +170770913180,213,0 +170770913228,214,0 +170770913276,214,0 +170770913324,214,0 +170770913371,214,0 +170770913419,214,0 +170770913467,214,0 +170770913515,214,0 +170770913563,214,0 +170770913610,214,0 +170770913658,214,0 +170770913708,215,0 +170770913756,215,0 +170770913803,214,0 +170770913851,214,0 +170770913899,213,0 +170770913947,213,0 +170770913996,213,0 +170770914044,214,0 +170770914092,213,0 +170770914139,213,0 +170770914187,214,0 +170770914235,214,0 +170770914283,214,0 +170770914331,214,0 +170770914378,214,0 +170770914426,214,0 +170770914474,214,0 +170770914522,215,0 +170770914570,215,0 +170770914618,215,0 +170770914667,215,0 +170770914715,215,0 +170770914765,214,0 +170770914812,213,0 +170770914862,213,0 +170770914912,213,0 +170770914960,213,0 +170770915008,214,0 +170770915055,214,0 +170770915103,214,0 +170770915151,214,0 +170770915199,214,0 +170770915249,214,0 +170770915297,214,0 +170770915345,214,0 +170770915393,215,0 +170770915441,215,0 +170770915490,215,0 +170770915538,214,0 +170770915586,214,0 +170770915634,214,0 +170770915684,213,0 +170770915731,213,0 +170770915781,213,0 +170770915829,213,0 +170770915877,214,0 +170770915924,214,0 +170770915972,214,0 +170770916020,214,0 +170770916069,214,0 +170770916117,214,0 +170770916167,214,0 +170770916215,214,0 +170770916263,214,0 +170770916311,215,0 +170770916359,214,0 +170770916408,214,0 +170770916456,214,0 +170770916504,214,0 +170770916552,214,0 +170770916600,213,0 +170770916648,213,0 +170770916697,213,0 +170770916747,213,0 +170770916795,214,0 +170770916843,214,0 +170770916891,214,0 +170770916940,214,0 +170770916988,214,0 +170770917038,214,0 +170770917086,214,0 +170770917135,214,0 +170770917185,215,0 +170770917233,215,0 +170770917281,215,0 +170770917330,215,0 +170770917378,215,0 +170770917426,214,0 +170770917476,213,0 +170770917523,213,0 +170770917573,213,0 +170770917621,213,0 +170770917669,213,0 +170770917719,214,0 +170770917768,213,0 +170770917818,214,0 +170770917867,214,0 +170770917915,214,0 +170770917963,214,0 +170770918012,214,0 +170770918062,214,0 +170770918110,214,0 +170770918159,214,0 +170770918207,215,0 +170770918255,215,0 +170770918303,214,0 +170770918351,213,0 +170770918399,213,0 +170770918447,213,0 +170770918495,213,0 +170770918545,213,0 +170770918594,213,0 +170770918644,214,0 +170770918692,214,0 +170770918739,214,0 +170770918787,214,0 +170770918835,214,0 +170770918883,214,0 +170770918931,214,0 +170770918981,214,0 +170770919028,214,0 +170770919076,214,0 +170770919126,214,0 +170770919174,214,0 +170770919221,213,0 +170770919269,213,0 +170770919317,213,0 +170770919365,213,0 +170770919413,213,0 +170770919461,213,0 +170770919509,214,0 +170770919556,214,0 +170770919604,214,0 +170770919652,214,0 +170770919700,214,0 +170770919748,214,0 +170770919796,214,0 +170770919845,215,0 +170770919893,215,0 +170770919943,215,0 +170770919992,215,0 +170770920040,215,0 +170770920090,214,0 +170770920137,213,0 +170770920185,213,0 +170770920233,213,0 +170770920281,213,0 +170770920329,214,0 +170770920379,213,0 +170770920427,214,0 +170770920476,214,0 +170770920525,214,0 +170770920575,214,0 +170770920623,214,0 +170770920671,214,0 +170770920718,215,0 +170770920766,214,0 +170770920814,214,0 +170770920862,215,0 +170770920910,215,0 +170770920957,215,0 +170770921005,214,0 +170770921053,214,0 +170770921101,214,0 +170770921149,213,0 +170770921197,214,0 +170770921245,214,0 +170770921292,214,0 +170770921340,214,0 +170770921388,214,0 +170770921436,214,0 +170770921484,215,0 +170770921532,215,0 +170770921580,215,0 +170770921628,215,0 +170770921676,215,0 +170770921724,215,0 +170770921772,215,0 +170770921820,214,0 +170770921869,214,0 +170770921919,213,0 +170770921967,213,0 +170770922016,213,0 +170770922064,214,0 +170770922112,214,0 +170770922161,214,0 +170770922209,214,0 +170770922257,214,0 +170770922305,214,0 +170770922353,214,0 +170770922401,215,0 +170770922448,215,0 +170770922496,214,0 +170770922546,215,0 +170770922594,215,0 +170770922642,215,0 +170770922690,214,0 +170770922739,214,0 +170770922787,213,0 +170770922837,213,0 +170770922886,213,0 +170770922936,213,0 +170770922985,213,0 +170770923035,213,0 +170770923082,213,0 +170770923130,214,0 +170770923178,214,0 +170770923226,214,0 +170770923274,214,0 +170770923324,214,0 +170770923371,214,0 +170770923419,214,0 +170770923467,215,0 +170770923517,214,0 +170770923566,214,0 +170770923616,214,0 +170770923664,214,0 +170770923713,213,0 +170770923763,213,0 +170770923812,213,0 +170770923862,213,0 +170770923909,213,0 +170770923957,213,0 +170770924005,214,0 +170770924053,213,0 +170770924103,214,0 +170770924150,214,0 +170770924198,214,0 +170770924248,214,0 +170770924297,214,0 +170770924345,215,0 +170770924393,215,0 +170770924441,214,0 +170770924489,214,0 +170770924537,214,0 +170770924585,213,0 +170770924633,213,0 +170770924682,213,0 +170770924730,213,0 +170770924778,213,0 +170770924826,213,0 +170770924874,213,0 +170770924923,213,0 +170770924973,214,0 +170770925021,214,0 +170770925069,214,0 +170770925117,214,0 +170770925165,214,0 +170770925213,214,0 +170770925260,214,0 +170770925308,215,0 +170770925358,214,0 +170770925406,214,0 +170770925454,213,0 +170770925502,213,0 +170770925551,213,0 +170770925599,213,0 +170770925648,213,0 +170770925698,213,0 +170770925746,213,0 +170770925794,214,0 +170770925843,214,0 +170770925893,214,0 +170770925942,214,0 +170770925990,214,0 +170770926038,214,0 +170770926086,214,0 +170770926136,215,0 +170770926185,215,0 +170770926233,214,0 +170770926283,214,0 +170770926331,214,0 +170770926380,213,0 +170770926428,213,0 +170770926478,213,0 +170770926525,213,0 +170770926573,213,0 +170770926621,213,0 +170770926669,213,0 +170770926717,213,0 +170770926765,213,0 +170770926813,214,0 +170770926861,214,0 +170770926910,214,0 +170770926960,214,0 +170770927008,214,0 +170770927056,214,0 +170770927104,214,0 +170770927153,214,0 +170770927201,214,0 +170770927249,213,0 +170770927299,213,0 +170770927347,213,0 +170770927394,213,0 +170770927442,213,0 +170770927490,213,0 +170770927538,214,0 +170770927586,214,0 +170770927634,214,0 +170770927684,214,0 +170770927733,214,0 +170770927781,214,0 +170770927831,214,0 +170770927880,215,0 +170770927928,214,0 +170770927978,215,0 +170770928027,214,0 +170770928075,214,0 +170770928125,213,0 +170770928174,213,0 +170770928224,213,0 +170770928272,213,0 +170770928321,214,0 +170770928369,214,0 +170770928419,214,0 +170770928468,214,0 +170770928516,214,0 +170770928564,214,0 +170770928612,214,0 +170770928662,214,0 +170770928710,214,0 +170770928758,215,0 +170770928806,215,0 +170770928854,214,0 +170770928901,214,0 +170770928951,214,0 +170770928999,214,0 +170770929048,214,0 +170770929096,214,0 +170770929144,214,0 +170770929194,214,0 +170770929242,214,0 +170770929290,214,0 +170770929337,214,0 +170770929385,214,0 +170770929433,214,0 +170770929481,214,0 +170770929529,214,0 +170770929577,214,0 +170770929624,214,0 +170770929674,215,0 +170770929723,215,0 +170770929771,215,0 +170770929819,215,0 +170770929867,214,0 +170770929915,213,0 +170770929962,214,0 +170770930010,213,0 +170770930058,214,0 +170770930106,214,0 +170770930154,214,0 +170770930203,214,0 +170770930253,214,0 +170770930302,214,0 +170770930350,214,0 +170770930400,214,0 +170770930447,214,0 +170770930497,215,0 +170770930545,215,0 +170770930594,214,0 +170770930644,214,0 +170770930692,215,0 +170770930741,214,0 +170770930789,213,0 +170770930838,213,0 +170770930886,214,0 +170770930936,214,0 +170770930985,214,0 +170770931033,214,0 +170770931081,214,0 +170770931129,215,0 +170770931177,214,0 +170770931225,214,0 +170770931274,215,0 +170770931324,215,0 +170770931372,215,0 +170770931421,215,0 +170770931471,215,0 +170770931518,215,0 +170770931566,215,0 +170770931616,215,0 +170770931665,214,0 +170770931713,214,0 +170770931763,214,0 +170770931810,214,0 +170770931858,214,0 +170770931908,214,0 +170770931955,214,0 +170770932003,214,0 +170770932051,214,0 +170770932099,214,0 +170770932147,215,0 +170770932195,215,0 +170770932242,215,0 +170770932290,215,0 +170770932338,215,0 +170770932388,215,0 +170770932435,215,0 +170770932483,215,0 +170770932531,214,0 +170770932579,213,0 +170770932627,213,0 +170770932675,213,0 +170770932723,213,0 +170770932770,214,0 +170770932820,214,0 +170770932868,214,0 +170770932915,214,0 +170770932965,214,0 +170770933013,214,0 +170770933060,215,0 +170770933108,214,0 +170770933158,215,0 +170770933207,215,0 +170770933257,215,0 +170770933304,215,0 +170770933354,215,0 +170770933402,214,0 +170770933451,213,0 +170770933501,213,0 +170770933549,213,0 +170770933598,213,0 +170770933646,213,0 +170770933694,213,0 +170770933742,213,0 +170770933790,214,0 +170770933838,214,0 +170770933886,214,0 +170770933934,214,0 +170770933982,214,0 +170770934030,214,0 +170770934079,214,0 +170770934127,215,0 +170770934175,215,0 +170770934224,215,0 +170770934272,214,0 +170770934320,214,0 +170770934370,213,0 +170770934417,213,0 +170770934467,213,0 +170770934516,213,0 +170770934564,213,0 +170770934612,213,0 +170770934660,214,0 +170770934710,214,0 +170770934759,214,0 +170770934807,214,0 +170770934855,214,0 +170770934903,214,0 +170770934952,214,0 +170770935000,214,0 +170770935050,214,0 +170770935098,214,0 +170770935147,214,0 +170770935196,214,0 +170770935244,213,0 +170770935294,213,0 +170770935343,213,0 +170770935393,213,0 +170770935440,213,0 +170770935488,213,0 +170770935536,213,0 +170770935584,213,0 +170770935632,213,0 +170770935681,213,0 +170770935729,214,0 +170770935777,214,0 +170770935827,214,0 +170770935876,214,0 +170770935924,214,0 +170770935972,214,0 +170770936020,214,0 +170770936069,214,0 +170770936119,213,0 +170770936168,213,0 +170770936216,213,0 +170770936265,213,0 +170770936313,213,0 +170770936363,213,0 +170770936412,213,0 +170770936460,213,0 +170770936510,213,0 +170770936558,213,0 +170770936606,214,0 +170770936654,214,0 +170770936702,214,0 +170770936749,214,0 +170770936797,214,0 +170770936847,214,0 +170770936896,214,0 +170770936944,214,0 +170770936992,214,0 +170770937040,213,0 +170770937090,213,0 +170770937139,213,0 +170770937189,213,0 +170770937237,213,0 +170770937285,213,0 +170770937332,214,0 +170770937382,213,0 +170770937430,214,0 +170770937479,214,0 +170770937527,214,0 +170770937575,214,0 +170770937623,214,0 +170770937671,214,0 +170770937719,215,0 +170770937767,214,0 +170770937816,214,0 +170770937864,214,0 +170770937912,213,0 +170770937962,213,0 +170770938009,213,0 +170770938059,213,0 +170770938107,213,0 +170770938156,213,0 +170770938204,214,0 +170770938252,213,0 +170770938300,214,0 +170770938349,214,0 +170770938397,214,0 +170770938445,214,0 +170770938493,214,0 +170770938541,215,0 +170770938591,215,0 +170770938639,215,0 +170770938688,214,0 +170770938737,214,0 +170770938785,213,0 +170770938833,213,0 +170770938881,213,0 +170770938929,213,0 +170770938977,213,0 +170770939025,213,0 +170770939073,213,0 +170770939123,213,0 +170770939171,213,0 +170770939220,214,0 +170770939268,214,0 +170770939316,214,0 +170770939364,214,0 +170770939412,214,0 +170770939460,214,0 +170770939508,215,0 +170770939557,214,0 +170770939605,214,0 +170770939653,214,0 +170770939702,213,0 +170770939750,213,0 +170770939798,213,0 +170770939848,213,0 +170770939896,213,0 +170770939945,213,0 +170770939995,213,0 +170770940044,213,0 +170770940094,213,0 +170770940143,214,0 +170770940193,214,0 +170770940241,214,0 +170770940289,214,0 +170770940337,214,0 +170770940384,214,0 +170770940432,214,0 +170770940480,214,0 +170770940528,214,0 +170770940576,213,0 +170770940624,213,0 +170770940672,213,0 +170770940720,213,0 +170770940768,213,0 +170770940816,213,0 +170770940864,213,0 +170770940913,213,0 +170770940961,213,0 +170770941008,213,0 +170770941056,214,0 +170770941106,214,0 +170770941154,214,0 +170770941202,214,0 +170770941249,214,0 +170770941297,214,0 +170770941345,214,0 +170770941393,214,0 +170770941441,213,0 +170770941489,213,0 +170770941537,213,0 +170770941585,213,0 +170770941633,213,0 +170770941682,213,0 +170770941732,213,0 +170770941780,213,0 +170770941828,213,0 +170770941876,213,0 +170770941923,213,0 +170770941971,214,0 +170770942021,214,0 +170770942070,214,0 +170770942119,214,0 +170770942167,214,0 +170770942215,214,0 +170770942263,214,0 +170770942311,214,0 +170770942359,213,0 +170770942406,213,0 +170770942454,213,0 +170770942502,213,0 +170770942550,213,0 +170770942599,213,0 +170770942647,213,0 +170770942695,213,0 +170770942743,213,0 +170770942791,213,0 +170770942840,213,0 +170770942890,214,0 +170770942939,213,0 +170770942987,213,0 +170770943035,213,0 +170770943083,213,0 +170770943133,214,0 +170770943181,214,0 +170770943229,214,0 +170770943278,214,0 +170770943326,214,0 +170770943375,215,0 +170770943423,215,0 +170770943471,214,0 +170770943519,215,0 +170770943567,215,0 +170770943615,214,0 +170770943663,213,0 +170770943711,213,0 +170770943759,213,0 +170770943807,213,0 +170770943855,214,0 +170770943904,214,0 +170770943954,214,0 +170770944003,214,0 +170770944053,214,0 +170770944101,214,0 +170770944149,214,0 +170770944198,215,0 +170770944246,215,0 +170770944294,215,0 +170770944344,215,0 +170770944392,215,0 +170770944439,215,0 +170770944489,214,0 +170770944537,214,0 +170770944586,214,0 +170770944636,214,0 +170770944684,214,0 +170770944733,214,0 +170770944781,214,0 +170770944829,214,0 +170770944879,214,0 +170770944928,214,0 +170770944978,215,0 +170770945027,215,0 +170770945075,215,0 +170770945125,215,0 +170770945174,215,0 +170770945222,215,0 +170770945270,215,0 +170770945318,215,0 +170770945365,214,0 +170770945413,215,0 +170770945461,214,0 +170770945509,214,0 +170770945557,214,0 +170770945605,214,0 +170770945653,214,0 +170770945701,214,0 +170770945750,214,0 +170770945799,215,0 +170770945847,215,0 +170770945895,215,0 +170770945943,215,0 +170770945991,215,0 +170770946039,215,0 +170770946087,215,0 +170770946135,215,0 +170770946182,215,0 +170770946230,215,0 +170770946278,214,0 +170770946326,214,0 +170770946374,214,0 +170770946422,213,0 +170770946469,214,0 +170770946517,214,0 +170770946567,214,0 +170770946615,214,0 +170770946663,214,0 +170770946711,214,0 +170770946758,214,0 +170770946806,214,0 +170770946854,214,0 +170770946902,214,0 +170770946950,214,0 +170770946998,214,0 +170770947046,215,0 +170770947094,215,0 +170770947143,214,0 +170770947191,214,0 +170770947239,214,0 +170770947289,214,0 +170770947337,214,0 +170770947386,214,0 +170770947434,214,0 +170770947482,214,0 +170770947530,214,0 +170770947578,214,0 +170770947626,214,0 +170770947674,215,0 +170770947722,215,0 +170770947771,215,0 +170770947819,215,0 +170770947867,215,0 +170770947917,214,0 +170770947965,215,0 +170770948014,214,0 +170770948062,214,0 +170770948110,213,0 +170770948158,213,0 +170770948207,214,0 +170770948255,214,0 +170770948303,214,0 +170770948351,214,0 +170770948401,215,0 +170770948449,214,0 +170770948496,214,0 +170770948544,214,0 +170770948592,215,0 +170770948640,214,0 +170770948690,215,0 +170770948739,215,0 +170770948789,215,0 +170770948837,215,0 +170770948884,214,0 +170770948932,214,0 +170770948982,214,0 +170770949030,213,0 +170770949078,213,0 +170770949126,214,0 +170770949175,213,0 +170770949225,214,0 +170770949273,214,0 +170770949321,214,0 +170770949369,214,0 +170770949418,214,0 +170770949466,214,0 +170770949516,214,0 +170770949563,214,0 +170770949611,214,0 +170770949661,214,0 +170770949710,215,0 +170770949758,215,0 +170770949806,215,0 +170770949856,213,0 +170770949905,213,0 +170770949955,213,0 +170770950002,213,0 +170770950050,213,0 +170770950098,213,0 +170770950147,213,0 +170770950195,213,0 +170770950243,214,0 +170770950291,214,0 +170770950340,214,0 +170770950388,214,0 +170770950438,214,0 +170770950486,214,0 +170770950534,214,0 +170770950581,214,0 +170770950631,215,0 +170770950680,214,0 +170770950728,213,0 +170770950778,213,0 +170770950827,213,0 +170770950875,213,0 +170770950925,213,0 +170770950973,213,0 +170770951021,213,0 +170770951069,213,0 +170770951117,213,0 +170770951165,214,0 +170770951213,214,0 +170770951260,214,0 +170770951310,214,0 +170770951360,214,0 +170770951409,214,0 +170770951457,215,0 +170770951506,214,0 +170770951554,214,0 +170770951602,214,0 +170770951652,213,0 +170770951700,213,0 +170770951748,213,0 +170770951797,213,0 +170770951845,213,0 +170770951895,213,0 +170770951943,214,0 +170770951992,214,0 +170770952040,214,0 +170770952088,214,0 +170770952136,214,0 +170770952184,214,0 +170770952232,214,0 +170770952280,215,0 +170770952328,215,0 +170770952376,215,0 +170770952424,215,0 +170770952472,214,0 +170770952520,213,0 +170770952568,213,0 +170770952617,213,0 +170770952665,213,0 +170770952713,213,0 +170770952762,213,0 +170770952812,213,0 +170770952861,213,0 +170770952909,213,0 +170770952957,214,0 +170770953005,214,0 +170770953053,214,0 +170770953103,214,0 +170770953152,214,0 +170770953200,214,0 +170770953248,214,0 +170770953296,215,0 +170770953345,215,0 +170770953395,213,0 +170770953442,213,0 +170770953490,213,0 +170770953538,213,0 +170770953586,213,0 +170770953634,213,0 +170770953682,213,0 +170770953730,213,0 +170770953777,214,0 +170770953825,213,0 +170770953873,213,0 +170770953921,214,0 +170770953969,214,0 +170770954017,214,0 +170770954065,214,0 +170770954112,214,0 +170770954160,214,0 +170770954208,214,0 +170770954256,214,0 +170770954304,213,0 +170770954352,213,0 +170770954401,213,0 +170770954449,213,0 +170770954499,213,0 +170770954548,213,0 +170770954598,214,0 +170770954646,214,0 +170770954695,214,0 +170770954745,214,0 +170770954793,214,0 +170770954841,214,0 +170770954890,214,0 +170770954940,214,0 +170770954988,215,0 +170770955036,215,0 +170770955084,215,0 +170770955132,214,0 +170770955180,213,0 +170770955227,213,0 +170770955275,213,0 +170770955325,213,0 +170770955375,213,0 +170770955422,214,0 +170770955470,213,0 +170770955520,214,0 +170770955568,214,0 +170770955616,214,0 +170770955664,214,0 +170770955712,214,0 +170770955761,214,0 +170770955811,215,0 +170770955859,215,0 +170770955907,214,0 +170770955955,214,0 +170770956004,214,0 +170770956052,214,0 +170770956100,213,0 +170770956150,213,0 +170770956199,213,0 +170770956247,213,0 +170770956297,213,0 +170770956347,213,0 +170770956396,214,0 +170770956444,214,0 +170770956493,214,0 +170770956543,214,0 +170770956593,214,0 +170770956640,214,0 +170770956689,214,0 +170770956736,215,0 +170770956786,215,0 +170770956834,215,0 +170770956882,214,0 +170770956931,214,0 +170770956979,213,0 +170770957029,213,0 +170770957078,213,0 +170770957128,213,0 +170770957176,213,0 +170770957225,213,0 +170770957273,213,0 +170770957323,213,0 +170770957372,213,0 +170770957422,213,0 +170770957470,214,0 +170770957517,214,0 +170770957565,214,0 +170770957613,214,0 +170770957661,214,0 +170770957709,214,0 +170770957758,214,0 +170770957806,214,0 +170770957854,213,0 +170770957901,213,0 +170770957949,213,0 +170770957997,213,0 +170770958045,213,0 +170770958092,213,0 +170770958140,213,0 +170770958188,214,0 +170770958236,214,0 +170770958284,214,0 +170770958332,214,0 +170770958380,214,0 +170770958428,214,0 +170770958476,214,0 +170770958526,215,0 +170770958573,214,0 +170770958623,214,0 +170770958672,214,0 +170770958720,213,0 +170770958768,213,0 +170770958818,213,0 +170770958866,213,0 +170770958914,213,0 +170770958961,213,0 +170770959009,213,0 +170770959057,213,0 +170770959105,214,0 +170770959153,214,0 +170770959201,214,0 +170770959249,214,0 +170770959298,214,0 +170770959346,214,0 +170770959394,215,0 +170770959442,214,0 +170770959490,215,0 +170770959539,214,0 +170770959587,214,0 +170770959635,213,0 +170770959682,213,0 +170770959730,213,0 +170770959779,213,0 +170770959827,213,0 +170770959875,213,0 +170770959923,213,0 +170770959971,214,0 +170770960019,214,0 +170770960067,214,0 +170770960116,214,0 +170770960166,214,0 +170770960215,214,0 +170770960263,214,0 +170770960311,214,0 +170770960359,214,0 +170770960407,214,0 +170770960456,214,0 +170770960506,213,0 +170770960554,213,0 +170770960603,213,0 +170770960651,213,0 +170770960699,213,0 +170770960749,213,0 +170770960798,213,0 +170770960848,214,0 +170770960896,214,0 +170770960945,214,0 +170770960995,214,0 +170770961043,214,0 +170770961091,214,0 +170770961140,214,0 +170770961188,214,0 +170770961236,215,0 +170770961284,214,0 +170770961334,214,0 +170770961383,214,0 +170770961431,213,0 +170770961481,213,0 +170770961530,214,0 +170770961580,214,0 +170770961628,214,0 +170770961676,214,0 +170770961725,214,0 +170770961775,214,0 +170770961823,214,0 +170770961871,214,0 +170770961920,214,0 +170770961970,215,0 +170770962019,215,0 +170770962067,214,0 +170770962115,214,0 +170770962163,214,0 +170770962211,214,0 +170770962259,214,0 +170770962309,213,0 +170770962358,213,0 +170770962408,214,0 +170770962456,213,0 +170770962505,214,0 +170770962553,214,0 +170770962603,214,0 +170770962652,214,0 +170770962702,214,0 +170770962750,214,0 +170770962799,214,0 +170770962849,214,0 +170770962897,215,0 +170770962946,214,0 +170770962994,214,0 +170770963042,214,0 +170770963090,215,0 +170770963138,214,0 +170770963186,213,0 +170770963235,213,0 +170770963283,213,0 +170770963333,213,0 +170770963381,214,0 +170770963429,214,0 +170770963477,214,0 +170770963526,214,0 +170770963574,214,0 +170770963622,214,0 +170770963670,214,0 +170770963719,215,0 +170770963769,215,0 +170770963817,215,0 +170770963865,214,0 +170770963912,215,0 +170770963960,215,0 +170770964008,214,0 +170770964056,213,0 +170770964104,213,0 +170770964152,213,0 +170770964202,213,0 +170770964250,214,0 +170770964298,214,0 +170770964346,214,0 +170770964395,214,0 +170770964445,214,0 +170770964494,214,0 +170770964542,214,0 +170770964590,215,0 +170770964638,215,0 +170770964688,215,0 +170770964736,214,0 +170770964783,215,0 +170770964833,214,0 +170770964881,214,0 +170770964930,214,0 +170770964978,213,0 +170770965028,213,0 +170770965076,213,0 +170770965124,214,0 +170770965173,214,0 +170770965221,214,0 +170770965269,214,0 +170770965317,214,0 +170770965365,214,0 +170770965413,214,0 +170770965462,215,0 +170770965510,214,0 +170770965558,215,0 +170770965606,215,0 +170770965656,215,0 +170770965704,214,0 +170770965752,214,0 +170770965800,214,0 +170770965848,213,0 +170770965896,213,0 +170770965944,213,0 +170770965992,213,0 +170770966040,213,0 +170770966087,214,0 +170770966135,214,0 +170770966183,214,0 +170770966231,214,0 +170770966279,214,0 +170770966329,214,0 +170770966378,215,0 +170770966428,214,0 +170770966476,214,0 +170770966524,214,0 +170770966573,214,0 +170770966621,214,0 +170770966671,214,0 +170770966719,213,0 +170770966767,213,0 +170770966814,213,0 +170770966862,213,0 +170770966910,213,0 +170770966958,213,0 +170770967008,213,0 +170770967056,214,0 +170770967105,214,0 +170770967155,214,0 +170770967205,214,0 +170770967253,214,0 +170770967301,214,0 +170770967350,214,0 +170770967398,214,0 +170770967446,214,0 +170770967494,214,0 +170770967544,214,0 +170770967593,213,0 +170770967641,213,0 +170770967689,213,0 +170770967739,213,0 +170770967788,213,0 +170770967838,213,0 +170770967886,213,0 +170770967934,214,0 +170770967982,214,0 +170770968031,214,0 +170770968079,214,0 +170770968129,214,0 +170770968178,214,0 +170770968226,214,0 +170770968274,214,0 +170770968322,214,0 +170770968372,215,0 +170770968421,214,0 +170770968471,213,0 +170770968520,213,0 +170770968568,213,0 +170770968616,213,0 +170770968666,213,0 +170770968715,213,0 +170770968763,214,0 +170770968811,213,0 +170770968859,214,0 +170770968909,214,0 +170770968957,214,0 +170770969005,214,0 +170770969053,214,0 +170770969100,214,0 +170770969150,215,0 +170770969198,215,0 +170770969246,215,0 +170770969294,214,0 +170770969342,214,0 +170770969390,213,0 +170770969438,213,0 +170770969487,213,0 +170770969535,213,0 +170770969583,213,0 +170770969631,213,0 +170770969679,213,0 +170770969727,213,0 +170770969775,214,0 +170770969824,214,0 +170770969874,214,0 +170770969922,214,0 +170770969971,214,0 +170770970021,214,0 +170770970069,214,0 +170770970117,215,0 +170770970165,214,0 +170770970214,214,0 +170770970264,213,0 +170770970312,213,0 +170770970360,213,0 +170770970407,213,0 +170770970457,213,0 +170770970505,213,0 +170770970553,214,0 +170770970601,214,0 +170770970650,214,0 +170770970700,214,0 +170770970748,214,0 +170770970797,214,0 +170770970847,214,0 +170770970895,214,0 +170770970943,215,0 +170770970992,215,0 +170770971040,215,0 +170770971088,214,0 +170770971136,213,0 +170770971184,213,0 +170770971232,213,0 +170770971281,213,0 +170770971329,213,0 +170770971377,213,0 +170770971425,214,0 +170770971475,214,0 +170770971523,214,0 +170770971572,214,0 +170770971620,214,0 +170770971668,214,0 +170770971716,214,0 +170770971764,214,0 +170770971812,215,0 +170770971862,215,0 +170770971910,214,0 +170770971958,214,0 +170770972005,214,0 +170770972055,213,0 +170770972103,213,0 +170770972152,213,0 +170770972202,213,0 +170770972250,214,0 +170770972298,214,0 +170770972347,214,0 +170770972397,214,0 +170770972445,214,0 +170770972493,214,0 +170770972541,214,0 +170770972590,215,0 +170770972640,215,0 +170770972689,215,0 +170770972739,214,0 +170770972788,215,0 +170770972836,214,0 +170770972884,214,0 +170770972932,213,0 +170770972982,213,0 +170770973030,213,0 +170770973079,213,0 +170770973127,214,0 +170770973175,214,0 +170770973223,214,0 +170770973271,214,0 +170770973320,214,0 +170770973368,215,0 +170770973418,215,0 +170770973467,215,0 +170770973515,215,0 +170770973563,215,0 +170770973612,215,0 +170770973662,215,0 +170770973711,214,0 +170770973759,214,0 +170770973807,213,0 +170770973857,213,0 +170770973905,213,0 +170770973954,213,0 +170770974002,214,0 +170770974050,213,0 +170770974098,214,0 +170770974146,214,0 +170770974194,214,0 +170770974243,214,0 +170770974293,214,0 +170770974341,214,0 +170770974390,215,0 +170770974438,215,0 +170770974486,215,0 +170770974536,215,0 +170770974585,214,0 +170770974633,214,0 +170770974681,213,0 +170770974729,213,0 +170770974777,213,0 +170770974827,213,0 +170770974876,213,0 +170770974924,213,0 +170770974974,213,0 +170770975021,213,0 +170770975071,214,0 +170770975121,213,0 +170770975169,214,0 +170770975218,214,0 +170770975266,214,0 +170770975314,214,0 +170770975362,214,0 +170770975411,214,0 +170770975459,214,0 +170770975507,214,0 +170770975557,213,0 +170770975604,213,0 +170770975652,213,0 +170770975700,213,0 +170770975748,213,0 +170770975796,213,0 +170770975844,213,0 +170770975894,213,0 +170770975941,214,0 +170770975989,214,0 +170770976037,214,0 +170770976085,214,0 +170770976133,214,0 +170770976181,214,0 +170770976229,214,0 +170770976276,214,0 +170770976324,214,0 +170770976372,214,0 +170770976420,214,0 +170770976467,213,0 +170770976515,213,0 +170770976563,213,0 +170770976611,213,0 +170770976659,213,0 +170770976708,213,0 +170770976756,213,0 +170770976804,213,0 +170770976852,213,0 +170770976899,213,0 +170770976947,214,0 +170770976995,214,0 +170770977043,214,0 +170770977091,214,0 +170770977140,214,0 +170770977190,214,0 +170770977238,214,0 +170770977287,214,0 +170770977335,213,0 +170770977383,213,0 +170770977431,213,0 +170770977481,213,0 +170770977529,213,0 +170770977578,213,0 +170770977628,213,0 +170770977676,213,0 +170770977723,214,0 +170770977771,214,0 +170770977819,214,0 +170770977869,214,0 +170770977917,214,0 +170770977966,214,0 +170770978014,215,0 +170770978064,214,0 +170770978113,215,0 +170770978161,214,0 +170770978211,213,0 +170770978259,213,0 +170770978307,213,0 +170770978355,213,0 +170770978404,213,0 +170770978452,213,0 +170770978500,213,0 +170770978548,214,0 +170770978596,214,0 +170770978643,214,0 +170770978691,214,0 +170770978739,214,0 +170770978787,214,0 +170770978835,214,0 +170770978882,214,0 +170770978930,214,0 +170770978978,215,0 +170770979026,214,0 +170770979074,214,0 +170770979123,213,0 +170770979171,213,0 +170770979219,213,0 +170770979267,213,0 +170770979316,213,0 +170770979364,214,0 +170770979412,214,0 +170770979461,214,0 +170770979509,214,0 +170770979557,214,0 +170770979606,214,0 +170770979654,214,0 +170770979702,214,0 +170770979750,214,0 +170770979798,214,0 +170770979846,214,0 +170770979894,214,0 +170770979941,214,0 +170770979989,214,0 +170770980037,213,0 +170770980085,213,0 +170770980134,213,0 +170770980182,213,0 +170770980230,213,0 +170770980278,213,0 +170770980327,213,0 +170770980375,213,0 +170770980423,214,0 +170770980471,214,0 +170770980518,214,0 +170770980566,214,0 +170770980614,214,0 +170770980662,214,0 +170770980710,214,0 +170770980758,214,0 +170770980806,214,0 +170770980854,214,0 +170770980902,213,0 +170770980950,213,0 +170770980997,213,0 +170770981046,213,0 +170770981095,213,0 +170770981143,213,0 +170770981192,213,0 +170770981242,213,0 +170770981292,213,0 +170770981341,214,0 +170770981389,214,0 +170770981437,214,0 +170770981485,214,0 +170770981534,214,0 +170770981584,214,0 +170770981633,214,0 +170770981681,214,0 +170770981729,214,0 +170770981778,214,0 +170770981828,213,0 +170770981876,213,0 +170770981924,213,0 +170770981973,213,0 +170770982021,214,0 +170770982069,213,0 +170770982117,214,0 +170770982165,214,0 +170770982215,214,0 +170770982264,214,0 +170770982314,214,0 +170770982361,214,0 +170770982409,215,0 +170770982459,215,0 +170770982508,214,0 +170770982556,214,0 +170770982606,214,0 +170770982654,215,0 +170770982702,213,0 +170770982750,213,0 +170770982799,213,0 +170770982847,213,0 +170770982895,213,0 +170770982943,213,0 +170770982993,213,0 +170770983041,213,0 +170770983090,213,0 +170770983138,214,0 +170770983186,214,0 +170770983234,214,0 +170770983283,214,0 +170770983331,214,0 +170770983379,214,0 +170770983427,214,0 +170770983475,214,0 +170770983522,215,0 +170770983570,213,0 +170770983618,213,0 +170770983666,213,0 +170770983714,213,0 +170770983763,213,0 +170770983811,213,0 +170770983859,213,0 +170770983907,213,0 +170770983955,214,0 +170770984003,214,0 +170770984050,214,0 +170770984098,214,0 +170770984146,214,0 +170770984194,214,0 +170770984244,214,0 +170770984292,214,0 +170770984341,214,0 +170770984391,214,0 +170770984439,214,0 +170770984488,213,0 +170770984536,213,0 +170770984584,213,0 +170770984632,213,0 +170770984681,213,0 +170770984729,213,0 +170770984779,213,0 +170770984827,214,0 +170770984876,214,0 +170770984924,214,0 +170770984973,214,0 +170770985021,214,0 +170770985069,214,0 +170770985117,214,0 +170770985165,215,0 +170770985212,215,0 +170770985260,214,0 +170770985308,214,0 +170770985357,214,0 +170770985405,213,0 +170770985453,213,0 +170770985503,213,0 +170770985552,213,0 +170770985600,213,0 +170770985648,213,0 +170770985696,214,0 +170770985746,214,0 +170770985794,214,0 +170770985842,214,0 +170770985889,214,0 +170770985939,214,0 +170770985987,214,0 +170770986035,214,0 +170770986084,215,0 +170770986132,215,0 +170770986180,214,0 +170770986228,214,0 +170770986276,213,0 +170770986325,213,0 +170770986373,214,0 +170770986421,214,0 +170770986469,214,0 +170770986518,214,0 +170770986566,214,0 +170770986614,214,0 +170770986662,214,0 +170770986712,214,0 +170770986760,214,0 +170770986809,214,0 +170770986857,214,0 +170770986905,214,0 +170770986953,215,0 +170770987001,215,0 +170770987048,215,0 +170770987096,214,0 +170770987146,214,0 +170770987194,213,0 +170770987243,213,0 +170770987291,214,0 +170770987339,214,0 +170770987387,214,0 +170770987437,214,0 +170770987486,214,0 +170770987534,214,0 +170770987582,214,0 +170770987632,214,0 +170770987681,215,0 +170770987729,215,0 +170770987777,214,0 +170770987825,215,0 +170770987874,215,0 +170770987922,215,0 +170770987970,214,0 +170770988018,214,0 +170770988066,213,0 +170770988114,213,0 +170770988163,213,0 +170770988211,213,0 +170770988259,214,0 +170770988309,214,0 +170770988357,214,0 +170770988405,214,0 +170770988453,214,0 +170770988500,215,0 +170770988548,214,0 +170770988598,215,0 +170770988645,215,0 +170770988693,215,0 +170770988741,215,0 +170770988789,215,0 +170770988837,214,0 +170770988885,214,0 +170770988934,214,0 +170770988982,213,0 +170770989030,213,0 +170770989078,213,0 +170770989126,213,0 +170770989173,213,0 +170770989221,213,0 +170770989269,213,0 +170770989317,213,0 +170770989365,213,0 +170770989412,214,0 +170770989460,214,0 +170770989508,214,0 +170770989557,214,0 +170770989605,214,0 +170770989653,214,0 +170770989701,214,0 +170770989749,215,0 +170770989797,214,0 +170770989844,214,0 +170770989892,213,0 +170770989940,213,0 +170770989989,213,0 +170770990039,213,0 +170770990087,213,0 +170770990135,213,0 +170770990182,213,0 +170770990230,213,0 +170770990278,213,0 +170770990326,214,0 +170770990374,214,0 +170770990423,214,0 +170770990471,214,0 +170770990519,214,0 +170770990567,215,0 +170770990615,214,0 +170770990663,214,0 +170770990710,214,0 +170770990758,213,0 +170770990806,213,0 +170770990854,213,0 +170770990902,213,0 +170770990951,213,0 +170770990999,213,0 +170770991047,213,0 +170770991095,213,0 +170770991143,214,0 +170770991192,213,0 +170770991240,214,0 +170770991288,214,0 +170770991338,214,0 +170770991386,214,0 +170770991435,214,0 +170770991483,214,0 +170770991531,214,0 +170770991579,214,0 +170770991627,214,0 +170770991674,213,0 +170770991724,213,0 +170770991772,212,0 +170770991820,213,0 +170770991868,213,0 +170770991916,213,0 +170770991964,213,0 +170770992013,214,0 +170770992062,213,0 +170770992110,214,0 +170770992158,214,0 +170770992206,214,0 +170770992256,214,0 +170770992305,214,0 +170770992355,214,0 +170770992403,214,0 +170770992451,214,0 +170770992498,214,0 +170770992548,213,0 +170770992597,213,0 +170770992645,213,0 +170770992693,213,0 +170770992741,213,0 +170770992789,213,0 +170770992836,213,0 +170770992884,213,0 +170770992932,213,0 +170770992980,214,0 +170770993028,214,0 +170770993076,214,0 +170770993123,214,0 +170770993171,214,0 +170770993219,214,0 +170770993267,214,0 +170770993315,214,0 +170770993363,214,0 +170770993410,214,0 +170770993458,213,0 +170770993506,213,0 +170770993554,213,0 +170770993602,213,0 +170770993649,213,0 +170770993697,213,0 +170770993745,213,0 +170770993795,213,0 +170770993844,213,0 +170770993892,214,0 +170770993940,214,0 +170770993987,214,0 +170770994035,214,0 +170770994083,214,0 +170770994133,214,0 +170770994180,214,0 +170770994228,214,0 +170770994276,214,0 +170770994324,213,0 +170770994372,213,0 +170770994420,213,0 +170770994468,213,0 +170770994516,213,0 +170770994563,213,0 +170770994611,213,0 +170770994659,213,0 +170770994709,213,0 +170770994757,213,0 +170770994805,214,0 +170770994854,213,0 +170770994904,214,0 +170770994952,214,0 +170770995000,214,0 +170770995049,214,0 +170770995099,214,0 +170770995147,214,0 +170770995195,214,0 +170770995244,213,0 +170770995292,213,0 +170770995341,213,0 +170770995389,213,0 +170770995439,213,0 +170770995487,213,0 +170770995534,213,0 +170770995584,214,0 +170770995632,214,0 +170770995680,214,0 +170770995727,214,0 +170770995775,214,0 +170770995823,214,0 +170770995871,215,0 +170770995919,214,0 +170770995967,214,0 +170770996014,215,0 +170770996062,214,0 +170770996110,213,0 +170770996158,213,0 +170770996206,213,0 +170770996254,213,0 +170770996302,213,0 +170770996351,213,0 +170770996401,214,0 +170770996449,214,0 +170770996498,214,0 +170770996548,214,0 +170770996596,214,0 +170770996644,214,0 +170770996692,215,0 +170770996740,214,0 +170770996788,215,0 +170770996836,214,0 +170770996883,214,0 +170770996931,214,0 +170770996979,214,0 +170770997027,213,0 +170770997077,213,0 +170770997126,213,0 +170770997174,214,0 +170770997222,214,0 +170770997271,214,0 +170770997321,214,0 +170770997369,214,0 +170770997418,214,0 +170770997466,214,0 +170770997516,214,0 +170770997564,214,0 +170770997612,214,0 +170770997661,214,0 +170770997709,215,0 +170770997757,214,0 +170770997805,215,0 +170770997855,214,0 +170770997904,213,0 +170770997952,213,0 +170770998000,213,0 +170770998048,213,0 +170770998096,213,0 +170770998145,213,0 +170770998193,214,0 +170770998241,214,0 +170770998289,214,0 +170770998337,214,0 +170770998385,214,0 +170770998433,214,0 +170770998481,215,0 +170770998528,214,0 +170770998576,214,0 +170770998624,215,0 +170770998672,214,0 +170770998720,215,0 +170770998767,214,0 +170770998815,213,0 +170770998865,213,0 +170770998914,213,0 +170770998962,214,0 +170770999010,214,0 +170770999060,214,0 +170770999109,214,0 +170770999157,214,0 +170770999205,214,0 +170770999253,215,0 +170770999301,215,0 +170770999349,215,0 +170770999397,215,0 +170770999444,215,0 +170770999494,215,0 +170770999542,214,0 +170770999590,215,0 +170770999639,215,0 +170770999687,213,0 +170770999735,213,0 +170770999783,214,0 +170770999831,214,0 +170770999880,213,0 +170770999928,214,0 +170770999976,214,0 +170771000024,214,0 +170771000072,214,0 +170771000120,214,0 +170771000167,214,0 +170771000215,215,0 +170771000263,215,0 +170771000311,215,0 +170771000359,215,0 +170771000407,215,0 +170771000455,215,0 +170771000503,215,0 +170771000552,214,0 +170771000600,213,0 +170771000648,213,0 +170771000697,213,0 +170771000747,214,0 +170771000795,214,0 +170771000843,214,0 +170771000892,214,0 +170771000942,214,0 +170771000990,214,0 +170771001038,214,0 +170771001086,214,0 +170771001134,214,0 +170771001183,215,0 +170771001233,215,0 +170771001281,215,0 +170771001329,215,0 +170771001377,215,0 +170771001426,214,0 +170771001475,213,0 +170771001523,213,0 +170771001571,213,0 +170771001619,213,0 +170771001667,213,0 +170771001715,213,0 +170771001763,213,0 +170771001811,214,0 +170771001859,214,0 +170771001908,214,0 +170771001956,214,0 +170771002004,214,0 +170771002054,214,0 +170771002101,215,0 +170771002149,215,0 +170771002199,214,0 +170771002247,215,0 +170771002296,214,0 +170771002344,214,0 +170771002394,213,0 +170771002442,213,0 +170771002490,213,0 +170771002538,213,0 +170771002587,213,0 +170771002637,213,0 +170771002685,213,0 +170771002733,213,0 +170771002782,213,0 +170771002832,214,0 +170771002881,214,0 +170771002929,214,0 +170771002977,214,0 +170771003026,214,0 +170771003074,214,0 +170771003122,214,0 +170771003172,214,0 +170771003220,214,0 +170771003268,213,0 +170771003317,213,0 +170771003367,213,0 +170771003415,213,0 +170771003462,213,0 +170771003510,213,0 +170771003559,213,0 +170771003607,213,0 +170771003655,214,0 +170771003704,214,0 +170771003754,214,0 +170771003803,214,0 +170771003851,214,0 +170771003899,214,0 +170771003947,215,0 +170771003995,214,0 +170771004044,215,0 +170771004092,214,0 +170771004142,213,0 +170771004189,213,0 +170771004237,213,0 +170771004285,213,0 +170771004333,213,0 +170771004381,213,0 +170771004431,213,0 +170771004479,213,0 +170771004528,213,0 +170771004578,213,0 +170771004626,214,0 +170771004674,214,0 +170771004722,214,0 +170771004770,214,0 +170771004817,214,0 +170771004865,214,0 +170771004915,214,0 +170771004964,214,0 +170771005014,214,0 +170771005063,213,0 +170771005111,213,0 +170771005159,213,0 +170771005207,213,0 +170771005257,213,0 +170771005305,213,0 +170771005353,214,0 +170771005401,214,0 +170771005449,214,0 +170771005497,214,0 +170771005544,214,0 +170771005594,214,0 +170771005644,214,0 +170771005692,214,0 +170771005739,214,0 +170771005788,215,0 +170771005837,214,0 +170771005887,214,0 +170771005936,213,0 +170771005984,213,0 +170771006034,213,0 +170771006082,213,0 +170771006129,213,0 +170771006177,213,0 +170771006225,213,0 +170771006273,214,0 +170771006321,213,0 +170771006369,213,0 +170771006419,214,0 +170771006468,214,0 +170771006516,214,0 +170771006564,214,0 +170771006612,214,0 +170771006659,214,0 +170771006707,214,0 +170771006757,214,0 +170771006805,214,0 +170771006853,213,0 +170771006901,213,0 +170771006949,213,0 +170771006997,213,0 +170771007044,213,0 +170771007092,213,0 +170771007140,213,0 +170771007188,213,0 +170771007236,214,0 +170771007284,214,0 +170771007332,214,0 +170771007380,214,0 +170771007428,214,0 +170771007476,214,0 +170771007526,214,0 +170771007573,214,0 +170771007623,214,0 +170771007673,214,0 +170771007722,213,0 +170771007770,213,0 +170771007818,213,0 +170771007866,213,0 +170771007914,213,0 +170771007962,214,0 +170771008011,213,0 +170771008059,214,0 +170771008107,214,0 +170771008155,214,0 +170771008205,214,0 +170771008254,214,0 +170771008302,214,0 +170771008352,214,0 +170771008400,215,0 +170771008448,215,0 +170771008496,214,0 +170771008544,214,0 +170771008592,214,0 +170771008639,213,0 +170771008687,213,0 +170771008735,213,0 +170771008783,213,0 +170771008831,213,0 +170771008879,213,0 +170771008929,214,0 +170771008977,213,0 +170771009025,214,0 +170771009073,214,0 +170771009120,214,0 +170771009168,214,0 +170771009216,214,0 +170771009264,215,0 +170771009312,215,0 +170771009360,215,0 +170771009408,214,0 +170771009456,214,0 +170771009504,213,0 +170771009553,213,0 +170771009601,213,0 +170771009649,213,0 +170771009697,213,0 +170771009746,214,0 +170771009794,214,0 +170771009842,214,0 +170771009890,214,0 +170771009940,214,0 +170771009988,214,0 +170771010036,214,0 +170771010083,214,0 +170771010133,215,0 +170771010181,215,0 +170771010229,214,0 +170771010277,215,0 +170771010325,214,0 +170771010373,215,0 +170771010422,213,0 +170771010470,213,0 +170771010520,213,0 +170771010567,213,0 +170771010615,213,0 +170771010663,213,0 +170771010711,213,0 +170771010759,213,0 +170771010809,214,0 +170771010858,214,0 +170771010908,214,0 +170771010956,214,0 +170771011004,214,0 +170771011053,214,0 +170771011101,214,0 +170771011151,215,0 +170771011199,214,0 +170771011248,214,0 +170771011298,213,0 +170771011346,213,0 +170771011393,213,0 +170771011443,213,0 +170771011491,213,0 +170771011539,213,0 +170771011587,213,0 +170771011635,213,0 +170771011683,213,0 +170771011731,214,0 +170771011780,214,0 +170771011828,214,0 +170771011878,214,0 +170771011926,214,0 +170771011974,214,0 +170771012021,214,0 +170771012069,214,0 +170771012117,214,0 +170771012167,214,0 +170771012215,213,0 +170771012264,213,0 +170771012314,213,0 +170771012362,213,0 +170771012410,214,0 +170771012458,214,0 +170771012506,214,0 +170771012554,214,0 +170771012603,214,0 +170771012651,214,0 +170771012699,214,0 +170771012747,214,0 +170771012795,214,0 +170771012843,215,0 +170771012892,215,0 +170771012942,214,0 +170771012990,215,0 +170771013039,214,0 +170771013087,214,0 +170771013135,214,0 +170771013183,214,0 +170771013231,214,0 +170771013279,214,0 +170771013328,214,0 +170771013378,214,0 +170771013427,214,0 +170771013477,214,0 +170771013526,214,0 +170771013576,215,0 +170771013624,215,0 +170771013672,215,0 +170771013720,215,0 +170771013768,215,0 +170771013816,214,0 +170771013863,214,0 +170771013911,214,0 +170771013959,214,0 +170771014009,214,0 +170771014057,214,0 +170771014105,214,0 +170771014154,214,0 +170771014204,214,0 +170771014253,214,0 +170771014301,214,0 +170771014351,214,0 +170771014401,214,0 +170771014448,214,0 +170771014496,214,0 +170771014544,215,0 +170771014594,215,0 +170771014642,215,0 +170771014690,215,0 +170771014737,215,0 +170771014785,215,0 +170771014833,214,0 +170771014881,214,0 +170771014929,214,0 +170771014977,214,0 +170771015025,214,0 +170771015072,214,0 +170771015120,214,0 +170771015168,214,0 +170771015216,214,0 +170771015266,214,0 +170771015314,215,0 +170771015363,214,0 +170771015411,215,0 +170771015459,215,0 +170771015507,214,0 +170771015557,214,0 +170771015605,215,0 +170771015652,215,0 +170771015700,214,0 +170771015750,213,0 +170771015799,214,0 +170771015847,213,0 +170771015895,214,0 +170771015945,214,0 +170771015994,214,0 +170771016042,214,0 +170771016092,214,0 +170771016140,214,0 +170771016189,214,0 +170771016239,215,0 +170771016287,215,0 +170771016335,215,0 +170771016383,215,0 +170771016431,215,0 +170771016479,215,0 +170771016526,215,0 +170771016576,214,0 +170771016626,214,0 +170771016675,213,0 +170771016725,213,0 +170771016773,213,0 +170771016822,214,0 +170771016872,214,0 +170771016921,214,0 +170771016969,214,0 +170771017017,214,0 +170771017067,214,0 +170771017115,215,0 +170771017164,214,0 +170771017214,215,0 +170771017262,215,0 +170771017311,214,0 +170771017359,215,0 +170771017407,215,0 +170771017455,214,0 +170771017503,214,0 +170771017552,213,0 +170771017600,213,0 +170771017650,213,0 +170771017698,213,0 +170771017747,213,0 +170771017795,214,0 +170771017843,213,0 +170771017893,214,0 +170771017942,214,0 +170771017990,214,0 +170771018040,214,0 +170771018088,214,0 +170771018135,214,0 +170771018183,214,0 +170771018231,215,0 +170771018279,215,0 +170771018327,214,0 +170771018375,214,0 +170771018423,213,0 +170771018471,213,0 +170771018519,213,0 +170771018567,213,0 +170771018616,213,0 +170771018664,213,0 +170771018712,213,0 +170771018760,213,0 +170771018808,214,0 +170771018856,213,0 +170771018906,214,0 +170771018954,214,0 +170771019003,214,0 +170771019051,214,0 +170771019099,214,0 +170771019147,214,0 +170771019196,214,0 +170771019244,214,0 +170771019292,214,0 +170771019340,213,0 +170771019388,213,0 +170771019438,213,0 +170771019487,213,0 +170771019535,213,0 +170771019583,213,0 +170771019631,214,0 +170771019679,213,0 +170771019728,214,0 +170771019778,214,0 +170771019827,214,0 +170771019877,214,0 +170771019925,214,0 +170771019973,214,0 +170771020021,214,0 +170771020069,214,0 +170771020118,214,0 +170771020166,214,0 +170771020215,213,0 +170771020263,213,0 +170771020313,213,0 +170771020361,213,0 +170771020410,213,0 +170771020458,214,0 +170771020506,214,0 +170771020555,213,0 +170771020605,214,0 +170771020654,214,0 +170771020704,214,0 +170771020754,214,0 +170771020803,214,0 +170771020853,215,0 +170771020901,215,0 +170771020950,215,0 +170771021000,215,0 +170771021049,214,0 +170771021099,213,0 +170771021148,213,0 +170771021198,213,0 +170771021246,213,0 +170771021294,213,0 +170771021342,213,0 +170771021391,213,0 +170771021439,213,0 +170771021489,214,0 +170771021536,214,0 +170771021586,214,0 +170771021634,214,0 +170771021682,214,0 +170771021731,214,0 +170771021779,214,0 +170771021827,215,0 +170771021875,214,0 +170771021923,214,0 +170771021973,213,0 +170771022021,213,0 +170771022070,213,0 +170771022118,213,0 +170771022166,213,0 +170771022215,213,0 +170771022265,213,0 +170771022313,213,0 +170771022361,214,0 +170771022410,214,0 +170771022458,214,0 +170771022506,214,0 +170771022554,214,0 +170771022602,214,0 +170771022650,214,0 +170771022700,214,0 +170771022747,214,0 +170771022795,214,0 +170771022843,213,0 +170771022891,213,0 +170771022939,213,0 +170771022987,213,0 +170771023035,213,0 +170771023083,213,0 +170771023132,213,0 +170771023181,213,0 +170771023229,213,0 +170771023277,213,0 +170771023325,214,0 +170771023373,214,0 +170771023421,214,0 +170771023469,214,0 +170771023518,214,0 +170771023566,214,0 +170771023614,214,0 +170771023662,214,0 +170771023710,214,0 +170771023757,213,0 +170771023805,213,0 +170771023853,213,0 +170771023901,213,0 +170771023949,213,0 +170771023997,213,0 +170771024044,213,0 +170771024092,213,0 +170771024140,214,0 +170771024188,213,0 +170771024236,214,0 +170771024284,214,0 +170771024332,214,0 +170771024381,214,0 +170771024429,214,0 +170771024477,214,0 +170771024524,214,0 +170771024572,214,0 +170771024620,214,0 +170771024670,213,0 +170771024719,213,0 +170771024767,213,0 +170771024816,213,0 +170771024866,213,0 +170771024914,214,0 +170771024963,214,0 +170771025011,214,0 +170771025059,214,0 +170771025109,214,0 +170771025157,214,0 +170771025206,214,0 +170771025256,215,0 +170771025304,215,0 +170771025351,215,0 +170771025401,215,0 +170771025450,215,0 +170771025498,214,0 +170771025546,213,0 +170771025596,213,0 +170771025644,213,0 +170771025692,213,0 +170771025741,213,0 +170771025791,214,0 +170771025839,214,0 +170771025887,214,0 +170771025935,214,0 +170771025983,214,0 +170771026032,214,0 +170771026080,214,0 +170771026128,214,0 +170771026177,214,0 +170771026225,214,0 +170771026273,215,0 +170771026321,215,0 +170771026369,215,0 +170771026417,213,0 +170771026465,213,0 +170771026514,213,0 +170771026562,213,0 +170771026610,213,0 +170771026658,213,0 +170771026707,214,0 +170771026757,214,0 +170771026805,214,0 +170771026853,214,0 +170771026901,214,0 +170771026949,214,0 +170771026997,214,0 +170771027046,214,0 +170771027094,214,0 +170771027144,215,0 +170771027191,215,0 +170771027239,215,0 +170771027287,214,0 +170771027335,213,0 +170771027383,213,0 +170771027431,213,0 +170771027480,213,0 +170771027528,213,0 +170771027576,213,0 +170771027624,214,0 +170771027672,214,0 +170771027720,214,0 +170771027768,214,0 +170771027815,214,0 +170771027863,214,0 +170771027911,214,0 +170771027959,215,0 +170771028007,215,0 +170771028055,215,0 +170771028104,215,0 +170771028152,214,0 +170771028200,213,0 +170771028249,213,0 +170771028297,213,0 +170771028345,213,0 +170771028394,213,0 +170771028442,213,0 +170771028490,214,0 +170771028538,214,0 +170771028586,214,0 +170771028634,214,0 +170771028683,214,0 +170771028731,214,0 +170771028779,214,0 +170771028827,214,0 +170771028875,215,0 +170771028924,214,0 +170771028973,215,0 +170771029021,214,0 +170771029069,214,0 +170771029117,213,0 +170771029165,213,0 +170771029213,213,0 +170771029260,213,0 +170771029308,213,0 +170771029356,213,0 +170771029406,214,0 +170771029453,214,0 +170771029503,214,0 +170771029552,214,0 +170771029600,214,0 +170771029648,214,0 +170771029696,214,0 +170771029743,215,0 +170771029791,215,0 +170771029839,215,0 +170771029888,214,0 +170771029936,215,0 +170771029984,214,0 +170771030032,214,0 +170771030080,213,0 +170771030128,214,0 +170771030176,214,0 +170771030224,214,0 +170771030271,214,0 +170771030319,214,0 +170771030369,214,0 +170771030417,214,0 +170771030464,215,0 +170771030512,215,0 +170771030560,215,0 +170771030608,215,0 +170771030656,215,0 +170771030704,215,0 +170771030753,215,0 +170771030801,214,0 +170771030849,214,0 +170771030898,214,0 +170771030946,214,0 +170771030994,214,0 +170771031042,214,0 +170771031090,214,0 +170771031138,214,0 +170771031185,214,0 +170771031233,215,0 +170771031281,215,0 +170771031329,214,0 +170771031377,215,0 +170771031426,215,0 +170771031476,215,0 +170771031524,215,0 +170771031571,215,0 +170771031621,215,0 +170771031671,214,0 +170771031718,215,0 +170771031766,214,0 +170771031814,214,0 +170771031862,213,0 +170771031910,214,0 +170771031958,214,0 +170771032006,214,0 +170771032055,214,0 +170771032103,214,0 +170771032151,214,0 +170771032199,214,0 +170771032247,215,0 +170771032294,214,0 +170771032342,215,0 +170771032390,215,0 +170771032440,215,0 +170771032487,215,0 +170771032535,215,0 +170771032583,215,0 +170771032631,214,0 +170771032679,213,0 +170771032727,213,0 +170771032776,213,0 +170771032824,213,0 +170771032873,214,0 +170771032921,213,0 +170771032969,214,0 +170771033017,214,0 +170771033067,214,0 +170771033115,214,0 +170771033163,214,0 +170771033210,215,0 +170771033258,214,0 +170771033306,215,0 +170771033354,215,0 +170771033402,215,0 +170771033450,215,0 +170771033497,215,0 +170771033545,213,0 +170771033595,213,0 +170771033643,213,0 +170771033691,214,0 +170771033738,214,0 +170771033786,214,0 +170771033834,214,0 +170771033882,214,0 +170771033930,214,0 +170771033978,214,0 +170771034026,215,0 +170771034074,215,0 +170771034121,215,0 +170771034169,215,0 +170771034217,215,0 +170771034265,215,0 +170771034313,215,0 +170771034361,214,0 +170771034409,214,0 +170771034456,213,0 +170771034504,213,0 +170771034554,213,0 +170771034603,213,0 +170771034653,214,0 +170771034700,214,0 +170771034748,214,0 +170771034796,214,0 +170771034844,214,0 +170771034892,214,0 +170771034940,214,0 +170771034989,214,0 +170771035037,215,0 +170771035085,215,0 +170771035133,214,0 +170771035183,215,0 +170771035232,215,0 +170771035282,214,0 +170771035330,213,0 +170771035377,213,0 +170771035425,213,0 +170771035473,213,0 +170771035523,213,0 +170771035571,213,0 +170771035619,214,0 +170771035668,214,0 +170771035716,214,0 +170771035764,214,0 +170771035814,214,0 +170771035863,214,0 +170771035911,214,0 +170771035961,215,0 +170771036009,214,0 +170771036058,215,0 +170771036106,215,0 +170771036154,215,0 +170771036202,214,0 +170771036250,213,0 +170771036298,213,0 +170771036345,213,0 +170771036393,213,0 +170771036441,213,0 +170771036489,214,0 +170771036537,213,0 +170771036585,213,0 +170771036633,214,0 +170771036683,214,0 +170771036730,214,0 +170771036780,214,0 +170771036828,214,0 +170771036876,214,0 +170771036924,214,0 +170771036972,214,0 +170771037019,214,0 +170771037069,214,0 +170771037118,213,0 +170771037166,213,0 +170771037216,213,0 +170771037264,213,0 +170771037312,213,0 +170771037360,213,0 +170771037408,213,0 +170771037456,214,0 +170771037504,214,0 +170771037552,214,0 +170771037599,214,0 +170771037647,214,0 +170771037695,214,0 +170771037743,214,0 +170771037793,215,0 +170771037842,215,0 +170771037890,214,0 +170771037938,215,0 +170771037986,214,0 +170771038034,213,0 +170771038081,213,0 +170771038129,213,0 +170771038177,213,0 +170771038225,213,0 +170771038273,213,0 +170771038321,214,0 +170771038369,214,0 +170771038416,214,0 +170771038464,214,0 +170771038512,214,0 +170771038560,214,0 +170771038608,214,0 +170771038656,215,0 +170771038705,215,0 +170771038753,215,0 +170771038802,215,0 +170771038850,214,0 +170771038898,213,0 +170771038946,213,0 +170771038994,213,0 +170771039042,213,0 +170771039090,213,0 +170771039138,213,0 +170771039185,213,0 +170771039233,213,0 +170771039281,214,0 +170771039329,214,0 +170771039377,214,0 +170771039425,214,0 +170771039474,215,0 +170771039522,215,0 +170771039570,215,0 +170771039618,215,0 +170771039665,215,0 +170771039713,214,0 +170771039761,213,0 +170771039809,213,0 +170771039857,213,0 +170771039905,213,0 +170771039952,213,0 +170771040000,213,0 diff --git a/laser_value/0212-14.csv b/laser_value/0212-14.csv new file mode 100644 index 0000000..f18a8a5 --- /dev/null +++ b/laser_value/0212-14.csv @@ -0,0 +1,7448 @@ +timestamp,laser_value,event +170771040049,214,0 +170771040097,214,0 +170771040145,214,0 +170771040194,214,0 +170771040244,214,0 +170771040292,214,0 +170771040340,215,0 +170771040388,215,0 +170771040437,215,0 +170771040485,215,0 +170771040533,215,0 +170771040581,215,0 +170771040628,214,0 +170771040676,214,0 +170771040724,213,0 +170771040772,213,0 +170771040822,214,0 +170771040870,214,0 +170771040919,214,0 +170771040967,214,0 +170771041015,214,0 +170771041063,214,0 +170771041112,214,0 +170771041160,214,0 +170771041210,215,0 +170771041258,215,0 +170771041306,215,0 +170771041355,215,0 +170771041403,215,0 +170771041452,215,0 +170771041502,214,0 +170771041551,213,0 +170771041599,213,0 +170771041647,213,0 +170771041697,213,0 +170771041744,214,0 +170771041792,214,0 +170771041840,214,0 +170771041888,214,0 +170771041936,214,0 +170771041983,214,0 +170771042031,214,0 +170771042079,214,0 +170771042128,214,0 +170771042176,215,0 +170771042224,215,0 +170771042272,215,0 +170771042320,215,0 +170771042368,215,0 +170771042416,214,0 +170771042464,213,0 +170771042513,213,0 +170771042563,213,0 +170771042611,213,0 +170771042660,213,0 +170771042710,213,0 +170771042759,214,0 +170771042809,214,0 +170771042857,214,0 +170771042905,214,0 +170771042954,214,0 +170771043002,215,0 +170771043050,215,0 +170771043098,215,0 +170771043147,215,0 +170771043197,215,0 +170771043245,215,0 +170771043293,214,0 +170771043341,213,0 +170771043389,213,0 +170771043437,213,0 +170771043485,213,0 +170771043533,213,0 +170771043581,213,0 +170771043630,213,0 +170771043680,214,0 +170771043729,214,0 +170771043777,214,0 +170771043825,214,0 +170771043873,215,0 +170771043922,214,0 +170771043970,215,0 +170771044018,214,0 +170771044066,215,0 +170771044114,215,0 +170771044163,214,0 +170771044211,213,0 +170771044261,213,0 +170771044309,213,0 +170771044356,213,0 +170771044404,213,0 +170771044452,213,0 +170771044500,213,0 +170771044548,213,0 +170771044595,213,0 +170771044643,214,0 +170771044691,214,0 +170771044739,214,0 +170771044789,214,0 +170771044837,214,0 +170771044886,214,0 +170771044934,214,0 +170771044982,215,0 +170771045032,215,0 +170771045079,214,0 +170771045129,213,0 +170771045177,213,0 +170771045225,213,0 +170771045273,213,0 +170771045322,213,0 +170771045370,213,0 +170771045418,213,0 +170771045468,213,0 +170771045516,213,0 +170771045565,214,0 +170771045613,214,0 +170771045661,214,0 +170771045709,214,0 +170771045757,214,0 +170771045805,214,0 +170771045853,214,0 +170771045902,214,0 +170771045950,214,0 +170771045998,213,0 +170771046046,213,0 +170771046094,213,0 +170771046142,213,0 +170771046192,213,0 +170771046240,213,0 +170771046288,213,0 +170771046335,213,0 +170771046385,213,0 +170771046433,214,0 +170771046481,214,0 +170771046529,214,0 +170771046577,214,0 +170771046626,214,0 +170771046676,215,0 +170771046724,215,0 +170771046772,215,0 +170771046819,214,0 +170771046867,213,0 +170771046915,213,0 +170771046963,213,0 +170771047011,213,0 +170771047059,213,0 +170771047107,214,0 +170771047154,214,0 +170771047202,214,0 +170771047252,214,0 +170771047300,214,0 +170771047348,215,0 +170771047396,215,0 +170771047444,214,0 +170771047492,215,0 +170771047540,215,0 +170771047588,215,0 +170771047636,215,0 +170771047683,215,0 +170771047733,214,0 +170771047781,213,0 +170771047829,213,0 +170771047878,213,0 +170771047926,214,0 +170771047974,213,0 +170771048022,214,0 +170771048070,214,0 +170771048118,214,0 +170771048166,214,0 +170771048213,214,0 +170771048261,214,0 +170771048309,214,0 +170771048359,214,0 +170771048407,214,0 +170771048454,215,0 +170771048502,215,0 +170771048550,215,0 +170771048598,215,0 +170771048646,213,0 +170771048695,213,0 +170771048745,213,0 +170771048794,213,0 +170771048844,214,0 +170771048893,214,0 +170771048943,214,0 +170771048991,214,0 +170771049038,214,0 +170771049086,214,0 +170771049134,214,0 +170771049184,214,0 +170771049232,214,0 +170771049279,215,0 +170771049329,214,0 +170771049377,214,0 +170771049425,215,0 +170771049472,215,0 +170771049520,214,0 +170771049570,213,0 +170771049619,213,0 +170771049667,213,0 +170771049717,213,0 +170771049766,213,0 +170771049814,214,0 +170771049862,214,0 +170771049910,214,0 +170771049958,214,0 +170771050006,214,0 +170771050054,214,0 +170771050103,214,0 +170771050151,215,0 +170771050199,215,0 +170771050248,215,0 +170771050296,215,0 +170771050344,215,0 +170771050392,214,0 +170771050440,213,0 +170771050488,214,0 +170771050536,214,0 +170771050583,214,0 +170771050631,214,0 +170771050679,214,0 +170771050729,214,0 +170771050776,214,0 +170771050826,214,0 +170771050874,215,0 +170771050921,215,0 +170771050969,215,0 +170771051017,215,0 +170771051065,215,0 +170771051113,215,0 +170771051162,215,0 +170771051210,215,0 +170771051258,214,0 +170771051305,214,0 +170771051353,213,0 +170771051401,214,0 +170771051449,214,0 +170771051497,214,0 +170771051544,214,0 +170771051592,214,0 +170771051640,214,0 +170771051688,214,0 +170771051736,214,0 +170771051785,214,0 +170771051833,215,0 +170771051881,215,0 +170771051928,215,0 +170771051976,215,0 +170771052024,215,0 +170771052072,215,0 +170771052120,215,0 +170771052168,214,0 +170771052216,213,0 +170771052263,214,0 +170771052311,214,0 +170771052359,214,0 +170771052409,214,0 +170771052456,214,0 +170771052504,214,0 +170771052552,214,0 +170771052602,214,0 +170771052650,215,0 +170771052698,214,0 +170771052746,215,0 +170771052795,215,0 +170771052845,215,0 +170771052892,215,0 +170771052940,215,0 +170771052988,215,0 +170771053036,214,0 +170771053084,213,0 +170771053134,213,0 +170771053183,213,0 +170771053231,214,0 +170771053279,214,0 +170771053328,214,0 +170771053378,214,0 +170771053426,214,0 +170771053474,214,0 +170771053522,214,0 +170771053571,214,0 +170771053619,215,0 +170771053667,215,0 +170771053715,215,0 +170771053763,214,0 +170771053810,215,0 +170771053858,214,0 +170771053906,214,0 +170771053956,213,0 +170771054004,213,0 +170771054052,213,0 +170771054099,213,0 +170771054147,213,0 +170771054197,214,0 +170771054245,214,0 +170771054292,214,0 +170771054340,214,0 +170771054388,214,0 +170771054436,214,0 +170771054485,215,0 +170771054533,214,0 +170771054581,215,0 +170771054629,215,0 +170771054677,214,0 +170771054725,215,0 +170771054773,214,0 +170771054822,213,0 +170771054870,213,0 +170771054919,214,0 +170771054967,213,0 +170771055015,214,0 +170771055065,214,0 +170771055114,214,0 +170771055162,214,0 +170771055212,214,0 +170771055259,214,0 +170771055309,215,0 +170771055357,214,0 +170771055405,215,0 +170771055453,215,0 +170771055502,215,0 +170771055552,215,0 +170771055600,214,0 +170771055649,214,0 +170771055697,213,0 +170771055746,214,0 +170771055796,214,0 +170771055844,214,0 +170771055892,214,0 +170771055940,214,0 +170771055987,214,0 +170771056035,214,0 +170771056083,214,0 +170771056131,215,0 +170771056179,215,0 +170771056227,215,0 +170771056276,215,0 +170771056326,215,0 +170771056375,215,0 +170771056423,215,0 +170771056471,214,0 +170771056519,214,0 +170771056567,213,0 +170771056616,213,0 +170771056666,213,0 +170771056714,214,0 +170771056762,213,0 +170771056811,214,0 +170771056861,214,0 +170771056909,214,0 +170771056958,214,0 +170771057006,215,0 +170771057054,214,0 +170771057102,215,0 +170771057151,215,0 +170771057199,215,0 +170771057249,215,0 +170771057297,214,0 +170771057346,215,0 +170771057394,213,0 +170771057442,213,0 +170771057492,213,0 +170771057539,214,0 +170771057587,213,0 +170771057635,214,0 +170771057685,214,0 +170771057733,214,0 +170771057782,214,0 +170771057832,214,0 +170771057881,214,0 +170771057931,214,0 +170771057979,214,0 +170771058028,215,0 +170771058078,214,0 +170771058127,214,0 +170771058175,215,0 +170771058225,214,0 +170771058274,213,0 +170771058324,213,0 +170771058372,213,0 +170771058421,213,0 +170771058469,213,0 +170771058517,213,0 +170771058565,214,0 +170771058615,214,0 +170771058664,214,0 +170771058714,214,0 +170771058761,214,0 +170771058809,214,0 +170771058857,215,0 +170771058907,214,0 +170771058955,215,0 +170771059004,214,0 +170771059052,215,0 +170771059102,214,0 +170771059150,213,0 +170771059198,213,0 +170771059247,213,0 +170771059295,213,0 +170771059345,213,0 +170771059394,214,0 +170771059442,214,0 +170771059490,214,0 +170771059539,214,0 +170771059587,214,0 +170771059637,214,0 +170771059684,214,0 +170771059732,214,0 +170771059782,214,0 +170771059831,215,0 +170771059881,215,0 +170771059929,215,0 +170771059977,213,0 +170771060025,213,0 +170771060073,213,0 +170771060121,213,0 +170771060168,213,0 +170771060218,213,0 +170771060267,213,0 +170771060315,213,0 +170771060363,213,0 +170771060411,214,0 +170771060459,214,0 +170771060508,214,0 +170771060556,214,0 +170771060606,215,0 +170771060655,214,0 +170771060705,214,0 +170771060753,215,0 +170771060802,214,0 +170771060850,213,0 +170771060898,213,0 +170771060946,213,0 +170771060996,213,0 +170771061044,213,0 +170771061093,213,0 +170771061141,213,0 +170771061189,214,0 +170771061237,214,0 +170771061285,214,0 +170771061333,214,0 +170771061383,214,0 +170771061430,214,0 +170771061480,214,0 +170771061528,214,0 +170771061576,214,0 +170771061624,214,0 +170771061671,214,0 +170771061719,213,0 +170771061767,213,0 +170771061815,213,0 +170771061863,213,0 +170771061911,213,0 +170771061959,213,0 +170771062006,214,0 +170771062054,213,0 +170771062102,213,0 +170771062150,214,0 +170771062198,214,0 +170771062246,214,0 +170771062295,214,0 +170771062343,214,0 +170771062391,214,0 +170771062439,214,0 +170771062487,214,0 +170771062535,214,0 +170771062584,213,0 +170771062632,213,0 +170771062680,213,0 +170771062728,213,0 +170771062776,213,0 +170771062825,214,0 +170771062873,214,0 +170771062921,214,0 +170771062969,214,0 +170771063017,214,0 +170771063065,214,0 +170771063113,215,0 +170771063161,215,0 +170771063209,215,0 +170771063257,215,0 +170771063306,215,0 +170771063354,214,0 +170771063403,215,0 +170771063451,213,0 +170771063499,213,0 +170771063547,213,0 +170771063595,213,0 +170771063642,214,0 +170771063690,214,0 +170771063738,214,0 +170771063786,214,0 +170771063834,214,0 +170771063882,214,0 +170771063930,215,0 +170771063978,214,0 +170771064025,215,0 +170771064073,215,0 +170771064121,215,0 +170771064169,215,0 +170771064217,215,0 +170771064265,214,0 +170771064314,213,0 +170771064362,213,0 +170771064411,213,0 +170771064459,213,0 +170771064507,213,0 +170771064557,213,0 +170771064606,214,0 +170771064654,214,0 +170771064702,214,0 +170771064750,214,0 +170771064797,214,0 +170771064845,214,0 +170771064893,214,0 +170771064941,214,0 +170771064989,215,0 +170771065037,215,0 +170771065084,214,0 +170771065132,214,0 +170771065180,213,0 +170771065230,213,0 +170771065279,213,0 +170771065327,213,0 +170771065375,213,0 +170771065423,213,0 +170771065472,214,0 +170771065521,214,0 +170771065569,214,0 +170771065617,214,0 +170771065665,214,0 +170771065713,215,0 +170771065762,215,0 +170771065810,215,0 +170771065858,215,0 +170771065908,215,0 +170771065956,215,0 +170771066003,214,0 +170771066051,214,0 +170771066099,213,0 +170771066147,213,0 +170771066195,214,0 +170771066243,214,0 +170771066290,214,0 +170771066338,214,0 +170771066386,214,0 +170771066434,214,0 +170771066482,214,0 +170771066530,214,0 +170771066577,215,0 +170771066627,214,0 +170771066677,215,0 +170771066724,215,0 +170771066772,215,0 +170771066820,215,0 +170771066868,214,0 +170771066916,214,0 +170771066964,213,0 +170771067012,213,0 +170771067060,213,0 +170771067109,214,0 +170771067159,214,0 +170771067207,214,0 +170771067255,214,0 +170771067303,214,0 +170771067350,215,0 +170771067398,215,0 +170771067446,215,0 +170771067494,215,0 +170771067542,215,0 +170771067590,215,0 +170771067638,215,0 +170771067686,215,0 +170771067734,214,0 +170771067783,213,0 +170771067833,213,0 +170771067881,213,0 +170771067929,213,0 +170771067976,214,0 +170771068024,214,0 +170771068072,214,0 +170771068122,214,0 +170771068169,214,0 +170771068217,214,0 +170771068265,215,0 +170771068313,214,0 +170771068361,215,0 +170771068408,215,0 +170771068456,215,0 +170771068504,215,0 +170771068552,215,0 +170771068600,215,0 +170771068648,213,0 +170771068695,213,0 +170771068745,213,0 +170771068794,213,0 +170771068842,214,0 +170771068892,214,0 +170771068940,214,0 +170771068988,214,0 +170771069037,214,0 +170771069085,214,0 +170771069134,214,0 +170771069182,214,0 +170771069232,215,0 +170771069280,214,0 +170771069328,215,0 +170771069377,215,0 +170771069425,215,0 +170771069473,215,0 +170771069521,213,0 +170771069570,214,0 +170771069618,214,0 +170771069666,214,0 +170771069714,214,0 +170771069763,214,0 +170771069811,214,0 +170771069859,214,0 +170771069909,214,0 +170771069957,214,0 +170771070005,214,0 +170771070052,215,0 +170771070100,215,0 +170771070148,215,0 +170771070196,215,0 +170771070244,215,0 +170771070294,215,0 +170771070341,214,0 +170771070389,213,0 +170771070437,213,0 +170771070485,213,0 +170771070535,214,0 +170771070584,214,0 +170771070634,214,0 +170771070681,214,0 +170771070731,214,0 +170771070779,214,0 +170771070827,214,0 +170771070876,214,0 +170771070926,215,0 +170771070975,215,0 +170771071025,214,0 +170771071074,215,0 +170771071124,215,0 +170771071172,215,0 +170771071220,213,0 +170771071269,213,0 +170771071319,213,0 +170771071366,214,0 +170771071416,213,0 +170771071464,214,0 +170771071513,214,0 +170771071561,214,0 +170771071609,214,0 +170771071659,214,0 +170771071707,214,0 +170771071755,214,0 +170771071802,215,0 +170771071850,215,0 +170771071898,215,0 +170771071946,215,0 +170771071994,214,0 +170771072042,214,0 +170771072090,213,0 +170771072139,213,0 +170771072187,213,0 +170771072235,214,0 +170771072283,213,0 +170771072331,213,0 +170771072381,214,0 +170771072428,214,0 +170771072476,214,0 +170771072524,214,0 +170771072572,215,0 +170771072620,215,0 +170771072668,214,0 +170771072718,215,0 +170771072767,214,0 +170771072815,215,0 +170771072863,214,0 +170771072913,214,0 +170771072961,214,0 +170771073009,213,0 +170771073057,214,0 +170771073106,214,0 +170771073154,214,0 +170771073202,214,0 +170771073251,214,0 +170771073301,214,0 +170771073349,214,0 +170771073399,214,0 +170771073447,215,0 +170771073495,215,0 +170771073543,214,0 +170771073591,215,0 +170771073638,215,0 +170771073686,215,0 +170771073734,214,0 +170771073782,214,0 +170771073830,213,0 +170771073880,213,0 +170771073928,213,0 +170771073975,213,0 +170771074023,214,0 +170771074071,214,0 +170771074119,214,0 +170771074169,214,0 +170771074217,214,0 +170771074266,214,0 +170771074314,214,0 +170771074362,214,0 +170771074412,214,0 +170771074461,215,0 +170771074509,214,0 +170771074557,215,0 +170771074605,214,0 +170771074653,213,0 +170771074703,213,0 +170771074751,213,0 +170771074798,213,0 +170771074846,213,0 +170771074894,213,0 +170771074942,214,0 +170771074990,214,0 +170771075038,214,0 +170771075086,214,0 +170771075134,214,0 +170771075182,214,0 +170771075231,215,0 +170771075279,215,0 +170771075327,215,0 +170771075377,215,0 +170771075425,215,0 +170771075472,214,0 +170771075520,213,0 +170771075568,213,0 +170771075616,213,0 +170771075666,213,0 +170771075715,213,0 +170771075763,213,0 +170771075813,213,0 +170771075861,213,0 +170771075909,213,0 +170771075957,213,0 +170771076005,214,0 +170771076052,214,0 +170771076100,214,0 +170771076148,214,0 +170771076196,214,0 +170771076244,214,0 +170771076292,214,0 +170771076339,214,0 +170771076389,213,0 +170771076438,213,0 +170771076486,213,0 +170771076536,213,0 +170771076584,213,0 +170771076632,213,0 +170771076679,213,0 +170771076727,214,0 +170771076775,214,0 +170771076825,214,0 +170771076874,214,0 +170771076923,214,0 +170771076971,214,0 +170771077019,214,0 +170771077067,214,0 +170771077115,215,0 +170771077163,215,0 +170771077211,214,0 +170771077261,213,0 +170771077309,213,0 +170771077356,213,0 +170771077404,213,0 +170771077452,213,0 +170771077500,213,0 +170771077550,213,0 +170771077598,214,0 +170771077646,214,0 +170771077694,214,0 +170771077743,214,0 +170771077791,214,0 +170771077839,214,0 +170771077888,214,0 +170771077936,215,0 +170771077984,215,0 +170771078032,214,0 +170771078080,214,0 +170771078130,213,0 +170771078179,213,0 +170771078229,213,0 +170771078278,213,0 +170771078328,214,0 +170771078377,214,0 +170771078425,214,0 +170771078475,214,0 +170771078524,214,0 +170771078574,214,0 +170771078622,214,0 +170771078669,215,0 +170771078717,215,0 +170771078767,215,0 +170771078815,215,0 +170771078863,215,0 +170771078911,214,0 +170771078959,213,0 +170771079007,213,0 +170771079054,213,0 +170771079102,214,0 +170771079150,214,0 +170771079198,214,0 +170771079246,214,0 +170771079294,214,0 +170771079344,214,0 +170771079393,214,0 +170771079443,214,0 +170771079491,214,0 +170771079540,215,0 +170771079588,215,0 +170771079636,215,0 +170771079684,215,0 +170771079732,215,0 +170771079780,214,0 +170771079829,214,0 +170771079877,213,0 +170771079925,214,0 +170771079972,213,0 +170771080020,214,0 +170771080068,214,0 +170771080116,214,0 +170771080164,214,0 +170771080212,214,0 +170771080260,214,0 +170771080308,214,0 +170771080355,215,0 +170771080405,215,0 +170771080453,214,0 +170771080502,215,0 +170771080550,215,0 +170771080598,214,0 +170771080646,214,0 +170771080694,213,0 +170771080743,214,0 +170771080791,214,0 +170771080839,214,0 +170771080887,214,0 +170771080935,214,0 +170771080982,214,0 +170771081030,214,0 +170771081078,214,0 +170771081126,214,0 +170771081174,214,0 +170771081222,214,0 +170771081271,214,0 +170771081319,214,0 +170771081369,215,0 +170771081417,215,0 +170771081466,215,0 +170771081515,214,0 +170771081565,214,0 +170771081613,214,0 +170771081661,214,0 +170771081710,214,0 +170771081758,214,0 +170771081806,214,0 +170771081854,214,0 +170771081902,214,0 +170771081951,214,0 +170771082001,215,0 +170771082049,215,0 +170771082098,215,0 +170771082148,215,0 +170771082196,215,0 +170771082244,215,0 +170771082293,215,0 +170771082341,215,0 +170771082391,214,0 +170771082438,214,0 +170771082486,214,0 +170771082534,214,0 +170771082582,214,0 +170771082630,214,0 +170771082677,214,0 +170771082725,215,0 +170771082773,215,0 +170771082821,215,0 +170771082869,215,0 +170771082917,215,0 +170771082965,215,0 +170771083012,215,0 +170771083060,215,0 +170771083110,215,0 +170771083158,215,0 +170771083207,215,0 +170771083255,214,0 +170771083303,214,0 +170771083351,214,0 +170771083398,214,0 +170771083446,214,0 +170771083494,214,0 +170771083542,215,0 +170771083590,214,0 +170771083638,215,0 +170771083685,215,0 +170771083735,215,0 +170771083783,215,0 +170771083831,215,0 +170771083879,215,0 +170771083928,215,0 +170771083976,215,0 +170771084024,215,0 +170771084072,215,0 +170771084121,214,0 +170771084171,213,0 +170771084219,214,0 +170771084267,214,0 +170771084315,214,0 +170771084362,214,0 +170771084410,214,0 +170771084458,214,0 +170771084508,214,0 +170771084556,214,0 +170771084604,214,0 +170771084653,215,0 +170771084703,214,0 +170771084752,214,0 +170771084802,215,0 +170771084849,214,0 +170771084897,215,0 +170771084947,214,0 +170771084995,213,0 +170771085043,213,0 +170771085092,213,0 +170771085140,213,0 +170771085188,213,0 +170771085237,213,0 +170771085285,213,0 +170771085333,214,0 +170771085383,214,0 +170771085431,214,0 +170771085479,214,0 +170771085527,214,0 +170771085574,214,0 +170771085622,215,0 +170771085670,215,0 +170771085718,215,0 +170771085766,214,0 +170771085814,214,0 +170771085862,213,0 +170771085909,213,0 +170771085957,213,0 +170771086007,213,0 +170771086054,213,0 +170771086102,213,0 +170771086150,213,0 +170771086198,214,0 +170771086246,214,0 +170771086294,214,0 +170771086342,214,0 +170771086389,214,0 +170771086437,214,0 +170771086485,214,0 +170771086533,214,0 +170771086581,214,0 +170771086629,214,0 +170771086677,214,0 +170771086725,213,0 +170771086773,213,0 +170771086820,213,0 +170771086868,213,0 +170771086916,213,0 +170771086966,213,0 +170771087014,214,0 +170771087063,214,0 +170771087113,214,0 +170771087161,214,0 +170771087210,214,0 +170771087260,214,0 +170771087309,214,0 +170771087357,214,0 +170771087405,214,0 +170771087453,214,0 +170771087501,216,0 +170771087548,213,0 +170771087596,213,0 +170771087644,213,0 +170771087692,213,0 +170771087740,213,0 +170771087787,213,0 +170771087835,213,0 +170771087883,214,0 +170771087931,214,0 +170771087979,214,0 +170771088027,214,0 +170771088074,214,0 +170771088122,214,0 +170771088170,214,0 +170771088218,214,0 +170771088266,215,0 +170771088314,214,0 +170771088362,214,0 +170771088410,213,0 +170771088457,213,0 +170771088507,213,0 +170771088555,213,0 +170771088602,213,0 +170771088650,213,0 +170771088698,213,0 +170771088746,213,0 +170771088794,213,0 +170771088842,214,0 +170771088889,214,0 +170771088937,214,0 +170771088985,214,0 +170771089035,214,0 +170771089082,214,0 +170771089130,214,0 +170771089178,214,0 +170771089226,214,0 +170771089274,213,0 +170771089321,213,0 +170771089369,213,0 +170771089419,213,0 +170771089467,213,0 +170771089514,213,0 +170771089562,213,0 +170771089610,213,0 +170771089658,213,0 +170771089706,213,0 +170771089754,213,0 +170771089802,213,0 +170771089849,213,0 +170771089897,214,0 +170771089945,214,0 +170771089993,214,0 +170771090041,214,0 +170771090090,214,0 +170771090140,214,0 +170771090188,214,0 +170771090235,215,0 +170771090283,215,0 +170771090331,215,0 +170771090379,215,0 +170771090428,215,0 +170771090476,215,0 +170771090524,214,0 +170771090572,213,0 +170771090620,213,0 +170771090667,213,0 +170771090715,213,0 +170771090763,214,0 +170771090812,214,0 +170771090860,214,0 +170771090908,214,0 +170771090956,214,0 +170771091004,214,0 +170771091052,214,0 +170771091099,214,0 +170771091147,214,0 +170771091195,215,0 +170771091243,215,0 +170771091291,215,0 +170771091340,214,0 +170771091388,214,0 +170771091436,213,0 +170771091484,213,0 +170771091531,213,0 +170771091579,213,0 +170771091627,213,0 +170771091675,213,0 +170771091723,213,0 +170771091771,214,0 +170771091819,214,0 +170771091866,214,0 +170771091914,214,0 +170771091962,215,0 +170771092010,215,0 +170771092058,214,0 +170771092106,215,0 +170771092153,215,0 +170771092201,214,0 +170771092251,214,0 +170771092299,213,0 +170771092346,213,0 +170771092394,213,0 +170771092442,214,0 +170771092490,214,0 +170771092538,214,0 +170771092586,214,0 +170771092634,214,0 +170771092681,214,0 +170771092731,214,0 +170771092779,215,0 +170771092826,214,0 +170771092874,214,0 +170771092922,215,0 +170771092970,215,0 +170771093018,214,0 +170771093066,214,0 +170771093113,214,0 +170771093161,213,0 +170771093209,214,0 +170771093259,214,0 +170771093306,214,0 +170771093354,214,0 +170771093404,214,0 +170771093452,214,0 +170771093500,214,0 +170771093547,215,0 +170771093597,215,0 +170771093645,215,0 +170771093693,215,0 +170771093741,215,0 +170771093788,215,0 +170771093838,215,0 +170771093887,215,0 +170771093935,215,0 +170771093983,214,0 +170771094033,214,0 +170771094081,214,0 +170771094129,214,0 +170771094177,215,0 +170771094225,214,0 +170771094274,214,0 +170771094324,215,0 +170771094372,215,0 +170771094420,215,0 +170771094469,215,0 +170771094517,215,0 +170771094565,215,0 +170771094615,215,0 +170771094663,215,0 +170771094711,215,0 +170771094758,215,0 +170771094806,214,0 +170771094854,214,0 +170771094904,214,0 +170771094953,214,0 +170771095001,214,0 +170771095049,214,0 +170771095098,215,0 +170771095148,215,0 +170771095196,215,0 +170771095244,215,0 +170771095291,215,0 +170771095339,215,0 +170771095387,215,0 +170771095435,215,0 +170771095483,215,0 +170771095532,215,0 +170771095580,215,0 +170771095628,214,0 +170771095676,213,0 +170771095724,213,0 +170771095771,213,0 +170771095819,213,0 +170771095867,214,0 +170771095915,214,0 +170771095963,214,0 +170771096011,214,0 +170771096059,214,0 +170771096106,214,0 +170771096154,214,0 +170771096202,215,0 +170771096250,215,0 +170771096298,215,0 +170771096346,214,0 +170771096394,214,0 +170771096441,215,0 +170771096489,214,0 +170771096537,214,0 +170771096585,213,0 +170771096635,213,0 +170771096683,213,0 +170771096732,213,0 +170771096782,214,0 +170771096830,214,0 +170771096879,214,0 +170771096929,214,0 +170771096978,214,0 +170771097028,214,0 +170771097077,214,0 +170771097127,214,0 +170771097176,215,0 +170771097224,215,0 +170771097274,215,0 +170771097322,215,0 +170771097371,214,0 +170771097419,214,0 +170771097469,214,0 +170771097517,214,0 +170771097565,214,0 +170771097614,214,0 +170771097664,214,0 +170771097713,214,0 +170771097761,214,0 +170771097811,214,0 +170771097861,214,0 +170771097908,214,0 +170771097956,214,0 +170771098006,215,0 +170771098056,215,0 +170771098103,215,0 +170771098151,215,0 +170771098199,215,0 +170771098249,214,0 +170771098297,214,0 +170771098344,214,0 +170771098394,214,0 +170771098442,214,0 +170771098490,214,0 +170771098538,215,0 +170771098586,214,0 +170771098635,215,0 +170771098683,215,0 +170771098731,215,0 +170771098779,215,0 +170771098829,215,0 +170771098878,215,0 +170771098928,215,0 +170771098975,215,0 +170771099023,215,0 +170771099073,215,0 +170771099121,213,0 +170771099169,213,0 +170771099217,213,0 +170771099265,213,0 +170771099313,214,0 +170771099361,214,0 +170771099408,214,0 +170771099456,214,0 +170771099504,214,0 +170771099554,214,0 +170771099603,214,0 +170771099653,215,0 +170771099701,215,0 +170771099749,215,0 +170771099796,215,0 +170771099844,215,0 +170771099894,215,0 +170771099942,214,0 +170771099991,213,0 +170771100041,213,0 +170771100089,213,0 +170771100137,213,0 +170771100184,213,0 +170771100234,214,0 +170771100284,214,0 +170771100332,214,0 +170771100381,214,0 +170771100429,215,0 +170771100479,214,0 +170771100528,214,0 +170771100578,214,0 +170771100626,215,0 +170771100674,215,0 +170771100723,215,0 +170771100771,214,0 +170771100819,214,0 +170771100869,213,0 +170771100918,213,0 +170771100966,213,0 +170771101014,213,0 +170771101062,213,0 +170771101110,213,0 +170771101159,213,0 +170771101207,213,0 +170771101255,213,0 +170771101303,214,0 +170771101350,214,0 +170771101400,214,0 +170771101448,214,0 +170771101497,215,0 +170771101545,214,0 +170771101593,215,0 +170771101641,214,0 +170771101689,214,0 +170771101738,213,0 +170771101786,213,0 +170771101836,213,0 +170771101884,213,0 +170771101933,213,0 +170771101981,213,0 +170771102029,213,0 +170771102077,213,0 +170771102125,214,0 +170771102173,214,0 +170771102222,214,0 +170771102270,214,0 +170771102318,214,0 +170771102366,214,0 +170771102414,214,0 +170771102464,214,0 +170771102512,215,0 +170771102560,213,0 +170771102608,213,0 +170771102656,213,0 +170771102704,213,0 +170771102752,213,0 +170771102801,213,0 +170771102849,213,0 +170771102897,214,0 +170771102947,214,0 +170771102996,214,0 +170771103044,214,0 +170771103092,214,0 +170771103141,214,0 +170771103189,214,0 +170771103237,215,0 +170771103285,215,0 +170771103333,215,0 +170771103380,215,0 +170771103430,213,0 +170771103478,213,0 +170771103527,213,0 +170771103575,213,0 +170771103623,213,0 +170771103673,213,0 +170771103721,214,0 +170771103769,213,0 +170771103816,214,0 +170771103864,214,0 +170771103912,214,0 +170771103960,214,0 +170771104009,214,0 +170771104059,214,0 +170771104107,214,0 +170771104155,214,0 +170771104203,214,0 +170771104250,214,0 +170771104300,213,0 +170771104348,213,0 +170771104396,213,0 +170771104443,213,0 +170771104491,213,0 +170771104541,213,0 +170771104588,214,0 +170771104636,214,0 +170771104684,214,0 +170771104732,214,0 +170771104780,214,0 +170771104828,214,0 +170771104876,214,0 +170771104924,214,0 +170771104972,214,0 +170771105019,214,0 +170771105067,214,0 +170771105115,214,0 +170771105163,213,0 +170771105211,213,0 +170771105259,213,0 +170771105306,213,0 +170771105356,214,0 +170771105404,214,0 +170771105451,213,0 +170771105499,214,0 +170771105547,214,0 +170771105595,214,0 +170771105643,214,0 +170771105691,214,0 +170771105740,214,0 +170771105788,214,0 +170771105837,215,0 +170771105885,214,0 +170771105933,214,0 +170771105981,214,0 +170771106029,213,0 +170771106077,213,0 +170771106125,214,0 +170771106172,214,0 +170771106220,214,0 +170771106268,214,0 +170771106318,214,0 +170771106366,214,0 +170771106414,214,0 +170771106462,214,0 +170771106510,214,0 +170771106559,214,0 +170771106607,214,0 +170771106655,215,0 +170771106704,215,0 +170771106752,215,0 +170771106802,215,0 +170771106850,213,0 +170771106898,213,0 +170771106946,213,0 +170771106994,213,0 +170771107042,214,0 +170771107090,214,0 +170771107137,214,0 +170771107185,214,0 +170771107233,214,0 +170771107281,214,0 +170771107329,214,0 +170771107377,214,0 +170771107425,214,0 +170771107473,215,0 +170771107521,215,0 +170771107569,214,0 +170771107617,215,0 +170771107664,214,0 +170771107712,213,0 +170771107760,213,0 +170771107810,213,0 +170771107858,213,0 +170771107905,213,0 +170771107953,214,0 +170771108001,213,0 +170771108049,214,0 +170771108097,214,0 +170771108145,214,0 +170771108193,214,0 +170771108240,214,0 +170771108288,214,0 +170771108338,215,0 +170771108386,215,0 +170771108433,215,0 +170771108483,214,0 +170771108531,214,0 +170771108579,213,0 +170771108628,213,0 +170771108676,213,0 +170771108724,213,0 +170771108772,213,0 +170771108819,214,0 +170771108867,214,0 +170771108915,214,0 +170771108963,214,0 +170771109013,214,0 +170771109060,215,0 +170771109108,215,0 +170771109156,214,0 +170771109204,215,0 +170771109252,215,0 +170771109299,215,0 +170771109347,215,0 +170771109395,214,0 +170771109443,213,0 +170771109491,213,0 +170771109538,213,0 +170771109586,214,0 +170771109634,214,0 +170771109682,214,0 +170771109732,214,0 +170771109781,214,0 +170771109831,214,0 +170771109879,215,0 +170771109928,214,0 +170771109978,215,0 +170771110027,214,0 +170771110075,215,0 +170771110125,215,0 +170771110173,215,0 +170771110222,215,0 +170771110270,214,0 +170771110320,213,0 +170771110367,213,0 +170771110415,213,0 +170771110463,214,0 +170771110513,214,0 +170771110562,214,0 +170771110610,214,0 +170771110658,214,0 +170771110708,214,0 +170771110756,214,0 +170771110805,214,0 +170771110853,215,0 +170771110901,215,0 +170771110949,215,0 +170771110997,215,0 +170771111045,215,0 +170771111093,214,0 +170771111141,213,0 +170771111189,213,0 +170771111237,213,0 +170771111285,214,0 +170771111334,213,0 +170771111383,214,0 +170771111431,214,0 +170771111479,214,0 +170771111529,214,0 +170771111576,214,0 +170771111624,214,0 +170771111672,214,0 +170771111720,214,0 +170771111768,214,0 +170771111816,215,0 +170771111864,215,0 +170771111912,215,0 +170771111959,214,0 +170771112007,214,0 +170771112055,214,0 +170771112103,214,0 +170771112151,214,0 +170771112200,214,0 +170771112248,214,0 +170771112296,214,0 +170771112345,214,0 +170771112395,215,0 +170771112443,214,0 +170771112491,215,0 +170771112539,215,0 +170771112588,215,0 +170771112636,215,0 +170771112684,215,0 +170771112734,215,0 +170771112783,215,0 +170771112833,214,0 +170771112882,214,0 +170771112930,214,0 +170771112978,214,0 +170771113026,214,0 +170771113074,214,0 +170771113122,214,0 +170771113169,214,0 +170771113217,214,0 +170771113265,214,0 +170771113313,215,0 +170771113361,215,0 +170771113409,215,0 +170771113457,215,0 +170771113505,215,0 +170771113553,215,0 +170771113601,215,0 +170771113649,215,0 +170771113697,214,0 +170771113745,213,0 +170771113793,213,0 +170771113842,214,0 +170771113890,214,0 +170771113938,214,0 +170771113987,214,0 +170771114035,214,0 +170771114085,214,0 +170771114134,215,0 +170771114184,215,0 +170771114233,215,0 +170771114281,215,0 +170771114329,215,0 +170771114377,215,0 +170771114427,215,0 +170771114475,215,0 +170771114524,214,0 +170771114574,213,0 +170771114622,213,0 +170771114671,213,0 +170771114719,213,0 +170771114767,213,0 +170771114816,213,0 +170771114864,214,0 +170771114914,214,0 +170771114963,214,0 +170771115011,214,0 +170771115059,214,0 +170771115107,214,0 +170771115157,215,0 +170771115205,214,0 +170771115252,215,0 +170771115300,215,0 +170771115348,215,0 +170771115396,215,0 +170771115444,213,0 +170771115492,213,0 +170771115540,213,0 +170771115588,213,0 +170771115636,213,0 +170771115684,213,0 +170771115733,214,0 +170771115783,213,0 +170771115831,214,0 +170771115880,214,0 +170771115928,214,0 +170771115976,214,0 +170771116026,214,0 +170771116073,214,0 +170771116121,215,0 +170771116169,215,0 +170771116217,215,0 +170771116265,214,0 +170771116315,213,0 +170771116363,213,0 +170771116411,213,0 +170771116459,213,0 +170771116507,213,0 +170771116556,213,0 +170771116604,213,0 +170771116652,213,0 +170771116700,214,0 +170771116749,214,0 +170771116797,214,0 +170771116845,214,0 +170771116895,214,0 +170771116944,214,0 +170771116992,215,0 +170771117040,214,0 +170771117088,214,0 +170771117136,214,0 +170771117185,213,0 +170771117233,213,0 +170771117281,213,0 +170771117329,213,0 +170771117377,213,0 +170771117425,214,0 +170771117472,214,0 +170771117520,214,0 +170771117568,214,0 +170771117616,214,0 +170771117664,214,0 +170771117712,215,0 +170771117759,215,0 +170771117807,214,0 +170771117857,215,0 +170771117904,215,0 +170771117952,214,0 +170771118000,213,0 +170771118048,213,0 +170771118096,213,0 +170771118144,213,0 +170771118192,214,0 +170771118239,214,0 +170771118287,214,0 +170771118337,214,0 +170771118384,214,0 +170771118432,214,0 +170771118482,214,0 +170771118530,215,0 +170771118578,215,0 +170771118627,215,0 +170771118675,215,0 +170771118725,214,0 +170771118773,215,0 +170771118821,214,0 +170771118870,213,0 +170771118918,213,0 +170771118966,214,0 +170771119014,213,0 +170771119062,214,0 +170771119110,214,0 +170771119158,214,0 +170771119207,214,0 +170771119255,215,0 +170771119303,214,0 +170771119351,214,0 +170771119400,215,0 +170771119450,215,0 +170771119498,215,0 +170771119546,215,0 +170771119593,215,0 +170771119643,214,0 +170771119692,214,0 +170771119740,213,0 +170771119788,213,0 +170771119838,213,0 +170771119887,213,0 +170771119937,214,0 +170771119985,214,0 +170771120034,214,0 +170771120082,214,0 +170771120130,214,0 +170771120178,214,0 +170771120226,214,0 +170771120274,215,0 +170771120322,215,0 +170771120370,215,0 +170771120417,215,0 +170771120467,215,0 +170771120516,215,0 +170771120564,214,0 +170771120614,213,0 +170771120661,213,0 +170771120709,213,0 +170771120757,213,0 +170771120805,213,0 +170771120854,214,0 +170771120904,214,0 +170771120952,214,0 +170771121000,214,0 +170771121047,214,0 +170771121095,214,0 +170771121143,214,0 +170771121191,215,0 +170771121239,215,0 +170771121287,215,0 +170771121335,215,0 +170771121382,214,0 +170771121430,213,0 +170771121478,213,0 +170771121526,213,0 +170771121574,213,0 +170771121622,213,0 +170771121669,213,0 +170771121717,213,0 +170771121765,214,0 +170771121813,214,0 +170771121861,214,0 +170771121909,214,0 +170771121958,214,0 +170771122006,214,0 +170771122054,214,0 +170771122102,214,0 +170771122149,215,0 +170771122197,215,0 +170771122245,215,0 +170771122293,213,0 +170771122341,213,0 +170771122389,213,0 +170771122438,213,0 +170771122487,213,0 +170771122535,213,0 +170771122583,213,0 +170771122633,214,0 +170771122680,214,0 +170771122728,214,0 +170771122776,214,0 +170771122824,214,0 +170771122872,214,0 +170771122920,214,0 +170771122968,214,0 +170771123015,214,0 +170771123065,214,0 +170771123113,214,0 +170771123161,213,0 +170771123210,213,0 +170771123258,213,0 +170771123306,213,0 +170771123354,213,0 +170771123402,213,0 +170771123451,213,0 +170771123501,214,0 +170771123550,214,0 +170771123598,214,0 +170771123648,214,0 +170771123696,214,0 +170771123745,214,0 +170771123795,214,0 +170771123842,214,0 +170771123890,214,0 +170771123938,214,0 +170771123986,214,0 +170771124034,213,0 +170771124084,213,0 +170771124133,214,0 +170771124181,214,0 +170771124229,214,0 +170771124277,214,0 +170771124325,214,0 +170771124375,214,0 +170771124422,214,0 +170771124470,214,0 +170771124518,214,0 +170771124566,214,0 +170771124614,214,0 +170771124662,215,0 +170771124711,215,0 +170771124761,215,0 +170771124809,214,0 +170771124857,214,0 +170771124906,214,0 +170771124954,214,0 +170771125002,214,0 +170771125050,214,0 +170771125098,214,0 +170771125146,214,0 +170771125194,214,0 +170771125243,214,0 +170771125291,214,0 +170771125339,214,0 +170771125387,215,0 +170771125435,215,0 +170771125483,214,0 +170771125530,214,0 +170771125578,215,0 +170771125626,214,0 +170771125674,214,0 +170771125722,213,0 +170771125769,213,0 +170771125817,213,0 +170771125865,214,0 +170771125915,214,0 +170771125963,214,0 +170771126011,214,0 +170771126058,214,0 +170771126106,214,0 +170771126154,214,0 +170771126202,214,0 +170771126252,214,0 +170771126300,215,0 +170771126348,215,0 +170771126397,214,0 +170771126445,214,0 +170771126493,214,0 +170771126541,213,0 +170771126589,213,0 +170771126638,213,0 +170771126688,213,0 +170771126736,214,0 +170771126785,213,0 +170771126833,213,0 +170771126881,214,0 +170771126929,214,0 +170771126977,214,0 +170771127026,214,0 +170771127074,214,0 +170771127122,215,0 +170771127170,215,0 +170771127218,215,0 +170771127266,215,0 +170771127314,214,0 +170771127363,213,0 +170771127411,213,0 +170771127459,213,0 +170771127507,213,0 +170771127555,214,0 +170771127603,214,0 +170771127653,214,0 +170771127700,214,0 +170771127748,214,0 +170771127798,214,0 +170771127846,214,0 +170771127894,214,0 +170771127943,215,0 +170771127991,214,0 +170771128040,215,0 +170771128088,214,0 +170771128136,215,0 +170771128184,214,0 +170771128232,213,0 +170771128281,213,0 +170771128329,213,0 +170771128377,213,0 +170771128427,214,0 +170771128475,214,0 +170771128523,214,0 +170771128570,214,0 +170771128618,214,0 +170771128668,214,0 +170771128717,215,0 +170771128767,214,0 +170771128815,215,0 +170771128864,214,0 +170771128912,215,0 +170771128960,215,0 +170771129010,214,0 +170771129059,213,0 +170771129109,213,0 +170771129157,213,0 +170771129205,213,0 +170771129253,214,0 +170771129302,214,0 +170771129350,214,0 +170771129400,214,0 +170771129448,214,0 +170771129496,214,0 +170771129544,214,0 +170771129592,214,0 +170771129640,214,0 +170771129689,214,0 +170771129737,215,0 +170771129786,215,0 +170771129834,214,0 +170771129882,213,0 +170771129930,214,0 +170771129978,213,0 +170771130026,214,0 +170771130074,214,0 +170771130122,214,0 +170771130170,214,0 +170771130218,214,0 +170771130266,214,0 +170771130314,214,0 +170771130362,214,0 +170771130411,214,0 +170771130459,215,0 +170771130507,215,0 +170771130557,215,0 +170771130604,215,0 +170771130652,215,0 +170771130702,214,0 +170771130750,214,0 +170771130799,214,0 +170771130847,214,0 +170771130895,214,0 +170771130943,214,0 +170771130991,214,0 +170771131039,214,0 +170771131087,214,0 +170771131136,214,0 +170771131184,214,0 +170771131232,215,0 +170771131280,215,0 +170771131328,215,0 +170771131376,215,0 +170771131424,215,0 +170771131471,214,0 +170771131519,214,0 +170771131569,214,0 +170771131618,214,0 +170771131666,214,0 +170771131714,214,0 +170771131762,214,0 +170771131810,214,0 +170771131860,214,0 +170771131907,214,0 +170771131955,214,0 +170771132003,214,0 +170771132053,215,0 +170771132101,215,0 +170771132150,215,0 +170771132198,215,0 +170771132246,215,0 +170771132294,215,0 +170771132343,214,0 +170771132391,214,0 +170771132439,213,0 +170771132487,214,0 +170771132536,214,0 +170771132584,214,0 +170771132632,214,0 +170771132682,214,0 +170771132730,214,0 +170771132778,214,0 +170771132826,215,0 +170771132874,215,0 +170771132921,215,0 +170771132971,215,0 +170771133020,215,0 +170771133068,215,0 +170771133118,215,0 +170771133166,214,0 +170771133216,214,0 +170771133265,214,0 +170771133313,213,0 +170771133361,214,0 +170771133411,214,0 +170771133459,214,0 +170771133508,214,0 +170771133556,214,0 +170771133606,214,0 +170771133654,214,0 +170771133702,215,0 +170771133750,215,0 +170771133799,215,0 +170771133847,215,0 +170771133897,215,0 +170771133944,215,0 +170771133992,215,0 +170771134042,214,0 +170771134090,213,0 +170771134138,213,0 +170771134186,213,0 +170771134234,213,0 +170771134282,213,0 +170771134330,214,0 +170771134378,214,0 +170771134426,214,0 +170771134474,214,0 +170771134523,215,0 +170771134573,214,0 +170771134621,215,0 +170771134670,215,0 +170771134718,215,0 +170771134766,215,0 +170771134814,214,0 +170771134862,214,0 +170771134910,214,0 +170771134958,213,0 +170771135006,213,0 +170771135054,213,0 +170771135102,213,0 +170771135150,214,0 +170771135198,213,0 +170771135247,214,0 +170771135297,214,0 +170771135346,214,0 +170771135394,214,0 +170771135442,214,0 +170771135490,214,0 +170771135539,214,0 +170771135589,214,0 +170771135638,214,0 +170771135686,214,0 +170771135734,214,0 +170771135784,213,0 +170771135832,213,0 +170771135880,213,0 +170771135929,213,0 +170771135977,213,0 +170771136025,213,0 +170771136073,213,0 +170771136123,213,0 +170771136171,213,0 +170771136220,213,0 +170771136268,213,0 +170771136317,214,0 +170771136365,214,0 +170771136413,214,0 +170771136463,214,0 +170771136511,214,0 +170771136559,214,0 +170771136608,213,0 +170771136658,213,0 +170771136707,213,0 +170771136755,213,0 +170771136803,213,0 +170771136853,213,0 +170771136901,213,0 +170771136949,213,0 +170771136997,213,0 +170771137045,214,0 +170771137093,214,0 +170771137143,214,0 +170771137192,214,0 +170771137242,214,0 +170771137290,214,0 +170771137338,214,0 +170771137387,214,0 +170771137437,213,0 +170771137485,213,0 +170771137533,213,0 +170771137581,213,0 +170771137630,213,0 +170771137678,213,0 +170771137726,213,0 +170771137774,213,0 +170771137824,213,0 +170771137871,214,0 +170771137919,214,0 +170771137967,214,0 +170771138015,214,0 +170771138065,214,0 +170771138113,214,0 +170771138162,214,0 +170771138210,214,0 +170771138258,214,0 +170771138306,213,0 +170771138354,213,0 +170771138402,214,0 +170771138452,214,0 +170771138500,214,0 +170771138549,214,0 +170771138597,214,0 +170771138647,214,0 +170771138695,214,0 +170771138742,214,0 +170771138790,215,0 +170771138838,215,0 +170771138886,215,0 +170771138934,215,0 +170771138982,214,0 +170771139030,215,0 +170771139078,214,0 +170771139125,214,0 +170771139175,214,0 +170771139224,214,0 +170771139272,214,0 +170771139320,214,0 +170771139368,214,0 +170771139416,214,0 +170771139464,214,0 +170771139512,215,0 +170771139560,214,0 +170771139607,215,0 +170771139657,215,0 +170771139705,215,0 +170771139753,215,0 +170771139801,215,0 +170771139848,215,0 +170771139897,214,0 +170771139946,214,0 +170771139994,213,0 +170771140042,214,0 +170771140090,214,0 +170771140138,214,0 +170771140185,214,0 +170771140233,214,0 +170771140281,214,0 +170771140329,214,0 +170771140377,214,0 +170771140425,214,0 +170771140473,214,0 +170771140521,214,0 +170771140568,215,0 +170771140616,215,0 +170771140664,215,0 +170771140712,215,0 +170771140760,214,0 +170771140808,213,0 +170771140856,213,0 +170771140904,213,0 +170771140952,214,0 +170771141001,213,0 +170771141049,214,0 +170771141099,214,0 +170771141148,214,0 +170771141196,214,0 +170771141244,214,0 +170771141292,214,0 +170771141341,215,0 +170771141389,215,0 +170771141437,215,0 +170771141485,215,0 +170771141535,215,0 +170771141584,214,0 +170771141632,214,0 +170771141680,214,0 +170771141728,214,0 +170771141776,214,0 +170771141824,214,0 +170771141871,214,0 +170771141919,214,0 +170771141967,214,0 +170771142017,215,0 +170771142065,214,0 +170771142113,214,0 +170771142161,215,0 +170771142209,215,0 +170771142256,215,0 +170771142304,215,0 +170771142352,215,0 +170771142400,215,0 +170771142448,214,0 +170771142496,214,0 +170771142544,214,0 +170771142591,214,0 +170771142639,214,0 +170771142687,214,0 +170771142735,215,0 +170771142784,215,0 +170771142832,215,0 +170771142880,215,0 +170771142928,215,0 +170771142976,215,0 +170771143024,215,0 +170771143072,215,0 +170771143119,215,0 +170771143167,215,0 +170771143215,215,0 +170771143265,214,0 +170771143313,214,0 +170771143360,214,0 +170771143408,214,0 +170771143458,214,0 +170771143506,214,0 +170771143553,214,0 +170771143601,214,0 +170771143649,214,0 +170771143697,215,0 +170771143745,215,0 +170771143794,215,0 +170771143842,215,0 +170771143890,215,0 +170771143938,215,0 +170771143986,215,0 +170771144033,215,0 +170771144081,214,0 +170771144129,214,0 +170771144177,213,0 +170771144225,213,0 +170771144273,214,0 +170771144321,214,0 +170771144368,214,0 +170771144416,214,0 +170771144464,214,0 +170771144512,214,0 +170771144560,214,0 +170771144608,215,0 +170771144658,215,0 +170771144705,215,0 +170771144753,215,0 +170771144801,215,0 +170771144849,215,0 +170771144899,215,0 +170771144948,215,0 +170771144998,213,0 +170771145047,213,0 +170771145097,213,0 +170771145145,213,0 +170771145193,214,0 +170771145241,214,0 +170771145290,214,0 +170771145338,214,0 +170771145386,214,0 +170771145434,214,0 +170771145482,214,0 +170771145531,214,0 +170771145579,215,0 +170771145629,215,0 +170771145677,215,0 +170771145725,215,0 +170771145773,215,0 +170771145821,213,0 +170771145869,213,0 +170771145916,213,0 +170771145966,213,0 +170771146014,213,0 +170771146064,213,0 +170771146111,214,0 +170771146161,214,0 +170771146209,214,0 +170771146258,214,0 +170771146308,214,0 +170771146356,214,0 +170771146404,214,0 +170771146452,214,0 +170771146501,214,0 +170771146549,214,0 +170771146597,215,0 +170771146645,214,0 +170771146695,213,0 +170771146744,213,0 +170771146794,213,0 +170771146843,213,0 +170771146891,213,0 +170771146939,213,0 +170771146989,213,0 +170771147039,214,0 +170771147087,214,0 +170771147135,214,0 +170771147183,214,0 +170771147230,214,0 +170771147280,214,0 +170771147328,214,0 +170771147376,215,0 +170771147424,215,0 +170771147472,214,0 +170771147520,213,0 +170771147568,213,0 +170771147615,213,0 +170771147665,213,0 +170771147713,213,0 +170771147761,213,0 +170771147810,213,0 +170771147858,213,0 +170771147908,213,0 +170771147956,214,0 +170771148005,214,0 +170771148053,214,0 +170771148101,214,0 +170771148149,214,0 +170771148199,214,0 +170771148248,214,0 +170771148296,214,0 +170771148344,213,0 +170771148394,213,0 +170771148443,213,0 +170771148491,213,0 +170771148539,213,0 +170771148589,213,0 +170771148638,214,0 +170771148688,214,0 +170771148737,214,0 +170771148787,214,0 +170771148836,214,0 +170771148886,214,0 +170771148934,214,0 +170771148982,214,0 +170771149030,214,0 +170771149078,214,0 +170771149126,215,0 +170771149174,213,0 +170771149222,213,0 +170771149271,213,0 +170771149319,213,0 +170771149367,213,0 +170771149415,213,0 +170771149465,214,0 +170771149513,213,0 +170771149560,214,0 +170771149610,214,0 +170771149658,214,0 +170771149706,214,0 +170771149754,214,0 +170771149802,214,0 +170771149849,214,0 +170771149897,214,0 +170771149946,215,0 +170771149994,214,0 +170771150042,213,0 +170771150090,213,0 +170771150138,213,0 +170771150186,213,0 +170771150234,213,0 +170771150282,214,0 +170771150330,214,0 +170771150378,214,0 +170771150427,214,0 +170771150477,214,0 +170771150526,214,0 +170771150574,215,0 +170771150624,214,0 +170771150672,214,0 +170771150721,215,0 +170771150769,215,0 +170771150817,214,0 +170771150865,213,0 +170771150913,213,0 +170771150962,213,0 +170771151012,213,0 +170771151061,214,0 +170771151111,214,0 +170771151159,214,0 +170771151208,214,0 +170771151256,214,0 +170771151304,214,0 +170771151352,214,0 +170771151400,214,0 +170771151448,214,0 +170771151495,214,0 +170771151545,215,0 +170771151593,214,0 +170771151641,214,0 +170771151690,214,0 +170771151740,213,0 +170771151787,213,0 +170771151837,213,0 +170771151886,214,0 +170771151934,214,0 +170771151982,214,0 +170771152030,214,0 +170771152078,214,0 +170771152126,214,0 +170771152176,215,0 +170771152224,214,0 +170771152271,215,0 +170771152321,215,0 +170771152369,215,0 +170771152417,215,0 +170771152465,214,0 +170771152514,214,0 +170771152562,214,0 +170771152610,214,0 +170771152660,214,0 +170771152708,214,0 +170771152755,214,0 +170771152803,214,0 +170771152851,214,0 +170771152899,214,0 +170771152947,215,0 +170771152995,214,0 +170771153043,215,0 +170771153092,215,0 +170771153142,215,0 +170771153190,215,0 +170771153238,214,0 +170771153287,215,0 +170771153337,214,0 +170771153385,214,0 +170771153433,214,0 +170771153481,214,0 +170771153529,214,0 +170771153577,214,0 +170771153625,214,0 +170771153673,215,0 +170771153722,215,0 +170771153770,215,0 +170771153818,215,0 +170771153866,215,0 +170771153915,214,0 +170771153965,215,0 +170771154013,214,0 +170771154061,215,0 +170771154110,215,0 +170771154160,214,0 +170771154208,214,0 +170771154257,214,0 +170771154307,214,0 +170771154355,214,0 +170771154403,214,0 +170771154451,214,0 +170771154499,214,0 +170771154548,214,0 +170771154596,214,0 +170771154646,214,0 +170771154694,215,0 +170771154743,215,0 +170771154791,215,0 +170771154839,215,0 +170771154887,215,0 +170771154937,215,0 +170771154986,214,0 +170771155034,214,0 +170771155082,214,0 +170771155131,214,0 +170771155179,214,0 +170771155229,214,0 +170771155279,214,0 +170771155327,214,0 +170771155374,214,0 +170771155424,215,0 +170771155472,215,0 +170771155520,215,0 +170771155568,215,0 +170771155616,215,0 +170771155664,215,0 +170771155712,215,0 +170771155760,215,0 +170771155809,215,0 +170771155857,214,0 +170771155905,214,0 +170771155953,214,0 +170771156002,214,0 +170771156050,214,0 +170771156098,214,0 +170771156146,214,0 +170771156194,214,0 +170771156242,215,0 +170771156290,215,0 +170771156338,215,0 +170771156388,215,0 +170771156436,215,0 +170771156484,215,0 +170771156533,215,0 +170771156581,215,0 +170771156629,214,0 +170771156677,215,0 +170771156725,214,0 +170771156772,213,0 +170771156820,214,0 +170771156868,214,0 +170771156916,214,0 +170771156964,214,0 +170771157012,214,0 +170771157061,214,0 +170771157109,215,0 +170771157157,214,0 +170771157207,215,0 +170771157255,215,0 +170771157303,215,0 +170771157352,215,0 +170771157400,215,0 +170771157450,215,0 +170771157498,214,0 +170771157546,213,0 +170771157595,213,0 +170771157643,213,0 +170771157691,213,0 +170771157741,213,0 +170771157789,214,0 +170771157837,214,0 +170771157886,214,0 +170771157934,214,0 +170771157984,214,0 +170771158032,214,0 +170771158079,214,0 +170771158127,214,0 +170771158176,215,0 +170771158225,215,0 +170771158273,215,0 +170771158321,214,0 +170771158369,214,0 +170771158417,213,0 +170771158465,213,0 +170771158513,213,0 +170771158562,213,0 +170771158612,214,0 +170771158659,214,0 +170771158707,214,0 +170771158757,214,0 +170771158805,214,0 +170771158853,214,0 +170771158902,214,0 +170771158952,214,0 +170771159000,215,0 +170771159048,214,0 +170771159096,215,0 +170771159144,215,0 +170771159192,215,0 +170771159239,213,0 +170771159287,213,0 +170771159335,213,0 +170771159385,213,0 +170771159433,213,0 +170771159481,214,0 +170771159529,214,0 +170771159578,214,0 +170771159626,214,0 +170771159674,214,0 +170771159722,214,0 +170771159770,214,0 +170771159818,214,0 +170771159866,215,0 +170771159914,215,0 +170771159962,214,0 +170771160010,214,0 +170771160058,213,0 +170771160106,213,0 +170771160154,213,0 +170771160201,213,0 +170771160249,214,0 +170771160297,214,0 +170771160345,214,0 +170771160393,214,0 +170771160441,214,0 +170771160489,214,0 +170771160538,214,0 +170771160586,214,0 +170771160634,215,0 +170771160682,215,0 +170771160730,215,0 +170771160778,215,0 +170771160825,215,0 +170771160873,214,0 +170771160921,213,0 +170771160969,213,0 +170771161018,213,0 +170771161066,213,0 +170771161114,213,0 +170771161162,213,0 +170771161210,214,0 +170771161258,214,0 +170771161305,214,0 +170771161353,214,0 +170771161401,214,0 +170771161449,214,0 +170771161497,214,0 +170771161545,214,0 +170771161593,214,0 +170771161642,214,0 +170771161690,214,0 +170771161738,213,0 +170771161786,213,0 +170771161834,213,0 +170771161882,213,0 +170771161930,213,0 +170771161978,213,0 +170771162027,213,0 +170771162075,213,0 +170771162123,214,0 +170771162171,214,0 +170771162220,214,0 +170771162270,214,0 +170771162318,214,0 +170771162366,214,0 +170771162415,214,0 +170771162463,215,0 +170771162513,214,0 +170771162561,213,0 +170771162609,213,0 +170771162657,213,0 +170771162705,213,0 +170771162754,213,0 +170771162802,213,0 +170771162850,214,0 +170771162900,214,0 +170771162949,214,0 +170771162997,214,0 +170771163045,214,0 +170771163093,214,0 +170771163142,215,0 +170771163190,214,0 +170771163238,215,0 +170771163286,215,0 +170771163334,214,0 +170771163382,213,0 +170771163430,213,0 +170771163478,213,0 +170771163526,213,0 +170771163574,213,0 +170771163623,213,0 +170771163673,213,0 +170771163721,214,0 +170771163768,214,0 +170771163818,214,0 +170771163866,214,0 +170771163914,214,0 +170771163963,214,0 +170771164013,215,0 +170771164062,214,0 +170771164112,214,0 +170771164159,214,0 +170771164207,214,0 +170771164257,213,0 +170771164306,213,0 +170771164354,213,0 +170771164402,213,0 +170771164450,213,0 +170771164498,214,0 +170771164546,214,0 +170771164593,214,0 +170771164641,214,0 +170771164689,214,0 +170771164737,214,0 +170771164785,214,0 +170771164833,214,0 +170771164880,214,0 +170771164928,214,0 +170771164976,215,0 +170771165026,214,0 +170771165073,213,0 +170771165121,213,0 +170771165169,213,0 +170771165217,213,0 +170771165265,213,0 +170771165314,213,0 +170771165362,214,0 +170771165410,214,0 +170771165457,214,0 +170771165505,214,0 +170771165553,214,0 +170771165601,214,0 +170771165649,215,0 +170771165697,215,0 +170771165745,215,0 +170771165792,215,0 +170771165842,214,0 +170771165890,214,0 +170771165937,213,0 +170771165985,214,0 +170771166033,214,0 +170771166081,214,0 +170771166128,214,0 +170771166176,214,0 +170771166224,214,0 +170771166272,214,0 +170771166319,215,0 +170771166367,214,0 +170771166415,215,0 +170771166463,215,0 +170771166510,215,0 +170771166558,215,0 +170771166608,215,0 +170771166656,215,0 +170771166703,214,0 +170771166753,214,0 +170771166801,214,0 +170771166849,214,0 +170771166896,214,0 +170771166944,214,0 +170771166992,214,0 +170771167040,214,0 +170771167088,215,0 +170771167136,214,0 +170771167183,215,0 +170771167231,214,0 +170771167279,215,0 +170771167327,215,0 +170771167375,215,0 +170771167422,215,0 +170771167470,215,0 +170771167518,214,0 +170771167566,214,0 +170771167615,214,0 +170771167663,214,0 +170771167711,214,0 +170771167759,214,0 +170771167807,214,0 +170771167855,214,0 +170771167904,214,0 +170771167952,214,0 +170771168000,214,0 +170771168049,214,0 +170771168099,214,0 +170771168148,215,0 +170771168196,215,0 +170771168246,215,0 +170771168295,215,0 +170771168343,215,0 +170771168391,214,0 +170771168439,213,0 +170771168487,213,0 +170771168535,214,0 +170771168584,214,0 +170771168632,213,0 +170771168680,214,0 +170771168728,214,0 +170771168776,214,0 +170771168825,214,0 +170771168873,214,0 +170771168921,214,0 +170771168969,214,0 +170771169018,215,0 +170771169066,215,0 +170771169114,215,0 +170771169162,215,0 +170771169210,214,0 +170771169258,213,0 +170771169306,214,0 +170771169355,214,0 +170771169403,214,0 +170771169451,214,0 +170771169499,214,0 +170771169547,215,0 +170771169594,215,0 +170771169642,214,0 +170771169690,215,0 +170771169738,215,0 +170771169788,215,0 +170771169837,215,0 +170771169887,215,0 +170771169936,215,0 +170771169986,215,0 +170771170035,214,0 +170771170085,214,0 +170771170132,214,0 +170771170180,214,0 +170771170228,214,0 +170771170278,214,0 +170771170326,214,0 +170771170374,215,0 +170771170422,215,0 +170771170471,215,0 +170771170519,215,0 +170771170567,215,0 +170771170616,215,0 +170771170664,215,0 +170771170712,215,0 +170771170761,215,0 +170771170809,215,0 +170771170857,214,0 +170771170905,214,0 +170771170955,214,0 +170771171004,214,0 +170771171052,214,0 +170771171101,214,0 +170771171151,214,0 +170771171199,214,0 +170771171247,214,0 +170771171295,215,0 +170771171343,215,0 +170771171391,215,0 +170771171438,215,0 +170771171486,215,0 +170771171534,215,0 +170771171583,215,0 +170771171631,215,0 +170771171679,215,0 +170771171728,214,0 +170771171776,213,0 +170771171826,213,0 +170771171873,213,0 +170771171921,213,0 +170771171971,214,0 +170771172019,214,0 +170771172067,214,0 +170771172115,214,0 +170771172162,214,0 +170771172212,214,0 +170771172261,214,0 +170771172311,214,0 +170771172359,215,0 +170771172407,215,0 +170771172456,215,0 +170771172506,215,0 +170771172555,214,0 +170771172603,213,0 +170771172653,213,0 +170771172701,213,0 +170771172749,213,0 +170771172796,213,0 +170771172846,214,0 +170771172896,214,0 +170771172945,214,0 +170771172993,214,0 +170771173041,214,0 +170771173090,214,0 +170771173138,214,0 +170771173188,214,0 +170771173236,214,0 +170771173284,215,0 +170771173332,214,0 +170771173381,214,0 +170771173429,213,0 +170771173479,213,0 +170771173527,213,0 +170771173576,214,0 +170771173626,214,0 +170771173675,214,0 +170771173723,214,0 +170771173771,214,0 +170771173819,214,0 +170771173867,214,0 +170771173916,214,0 +170771173964,215,0 +170771174012,215,0 +170771174060,215,0 +170771174108,215,0 +170771174157,215,0 +170771174205,214,0 +170771174253,213,0 +170771174303,213,0 +170771174352,213,0 +170771174400,214,0 +170771174450,214,0 +170771174497,214,0 +170771174545,214,0 +170771174593,214,0 +170771174641,214,0 +170771174689,214,0 +170771174738,215,0 +170771174785,215,0 +170771174833,215,0 +170771174881,215,0 +170771174929,215,0 +170771174977,215,0 +170771175025,214,0 +170771175073,214,0 +170771175121,213,0 +170771175168,213,0 +170771175216,213,0 +170771175264,214,0 +170771175312,214,0 +170771175360,214,0 +170771175408,214,0 +170771175456,214,0 +170771175505,214,0 +170771175553,214,0 +170771175603,215,0 +170771175652,215,0 +170771175700,215,0 +170771175748,215,0 +170771175796,215,0 +170771175843,215,0 +170771175891,214,0 +170771175939,213,0 +170771175987,214,0 +170771176035,214,0 +170771176084,214,0 +170771176133,214,0 +170771176181,214,0 +170771176231,214,0 +170771176280,214,0 +170771176330,214,0 +170771176378,214,0 +170771176425,214,0 +170771176473,215,0 +170771176521,215,0 +170771176569,215,0 +170771176619,214,0 +170771176667,215,0 +170771176716,215,0 +170771176764,214,0 +170771176813,213,0 +170771176863,214,0 +170771176911,214,0 +170771176960,214,0 +170771177008,214,0 +170771177058,214,0 +170771177106,214,0 +170771177153,215,0 +170771177201,215,0 +170771177249,215,0 +170771177297,214,0 +170771177347,215,0 +170771177396,215,0 +170771177446,215,0 +170771177494,215,0 +170771177543,214,0 +170771177593,214,0 +170771177642,213,0 +170771177690,213,0 +170771177738,214,0 +170771177786,214,0 +170771177834,214,0 +170771177883,214,0 +170771177931,214,0 +170771177979,214,0 +170771178027,214,0 +170771178076,215,0 +170771178124,215,0 +170771178172,215,0 +170771178220,215,0 +170771178270,215,0 +170771178317,215,0 +170771178365,215,0 +170771178415,213,0 +170771178464,213,0 +170771178514,213,0 +170771178562,214,0 +170771178610,214,0 +170771178659,214,0 +170771178707,214,0 +170771178757,214,0 +170771178804,214,0 +170771178852,214,0 +170771178900,214,0 +170771178948,215,0 +170771178996,215,0 +170771179044,215,0 +170771179092,215,0 +170771179140,215,0 +170771179188,214,0 +170771179238,214,0 +170771179285,213,0 +170771179333,213,0 +170771179381,213,0 +170771179429,213,0 +170771179477,214,0 +170771179527,214,0 +170771179575,214,0 +170771179624,214,0 +170771179672,214,0 +170771179720,214,0 +170771179770,215,0 +170771179819,215,0 +170771179869,215,0 +170771179917,215,0 +170771179965,215,0 +170771180013,215,0 +170771180062,214,0 +170771180110,213,0 +170771180158,213,0 +170771180206,213,0 +170771180255,214,0 +170771180303,214,0 +170771180351,214,0 +170771180401,214,0 +170771180449,214,0 +170771180497,214,0 +170771180545,214,0 +170771180593,215,0 +170771180640,215,0 +170771180688,215,0 +170771180736,215,0 +170771180784,215,0 +170771180832,215,0 +170771180880,215,0 +170771180929,214,0 +170771180977,213,0 +170771181026,214,0 +170771181074,214,0 +170771181122,214,0 +170771181170,214,0 +170771181218,214,0 +170771181266,214,0 +170771181314,214,0 +170771181361,214,0 +170771181409,214,0 +170771181458,214,0 +170771181506,215,0 +170771181554,214,0 +170771181604,215,0 +170771181651,215,0 +170771181699,215,0 +170771181747,215,0 +170771181795,213,0 +170771181843,213,0 +170771181891,214,0 +170771181938,214,0 +170771181986,214,0 +170771182036,214,0 +170771182084,214,0 +170771182132,214,0 +170771182180,215,0 +170771182227,215,0 +170771182277,215,0 +170771182325,215,0 +170771182373,215,0 +170771182421,215,0 +170771182469,215,0 +170771182517,215,0 +170771182565,215,0 +170771182614,213,0 +170771182662,214,0 +170771182712,214,0 +170771182761,214,0 +170771182809,214,0 +170771182857,214,0 +170771182905,214,0 +170771182955,214,0 +170771183004,215,0 +170771183052,215,0 +170771183100,215,0 +170771183148,215,0 +170771183198,215,0 +170771183245,215,0 +170771183293,215,0 +170771183341,215,0 +170771183389,214,0 +170771183437,214,0 +170771183485,214,0 +170771183533,214,0 +170771183580,214,0 +170771183628,214,0 +170771183676,214,0 +170771183724,214,0 +170771183772,214,0 +170771183820,215,0 +170771183867,215,0 +170771183915,215,0 +170771183963,215,0 +170771184011,215,0 +170771184059,215,0 +170771184107,215,0 +170771184155,215,0 +170771184203,215,0 +170771184250,214,0 +170771184298,214,0 +170771184346,213,0 +170771184394,214,0 +170771184442,214,0 +170771184490,214,0 +170771184538,214,0 +170771184587,214,0 +170771184637,214,0 +170771184684,215,0 +170771184732,215,0 +170771184780,215,0 +170771184828,215,0 +170771184876,215,0 +170771184924,215,0 +170771184973,215,0 +170771185021,216,0 +170771185069,217,0 +170771185117,214,0 +170771185165,213,0 +170771185214,214,0 +170771185264,214,0 +170771185313,214,0 +170771185361,214,0 +170771185411,214,0 +170771185461,214,0 +170771185510,214,0 +170771185558,215,0 +170771185608,214,0 +170771185655,215,0 +170771185703,215,0 +170771185751,215,0 +170771185799,215,0 +170771185847,215,0 +170771185895,215,0 +170771185943,214,0 +170771185991,214,0 +170771186038,214,0 +170771186086,214,0 +170771186134,214,0 +170771186182,214,0 +170771186230,214,0 +170771186278,214,0 +170771186328,215,0 +170771186376,214,0 +170771186424,215,0 +170771186472,215,0 +170771186521,215,0 +170771186571,215,0 +170771186619,215,0 +170771186668,215,0 +170771186718,215,0 +170771186767,214,0 +170771186815,214,0 +170771186865,214,0 +170771186913,214,0 +170771186961,214,0 +170771187009,214,0 +170771187058,214,0 +170771187108,215,0 +170771187157,214,0 +170771187205,215,0 +170771187253,215,0 +170771187301,215,0 +170771187349,215,0 +170771187397,215,0 +170771187445,215,0 +170771187493,215,0 +170771187542,215,0 +170771187592,214,0 +170771187640,214,0 +170771187689,214,0 +170771187737,214,0 +170771187785,215,0 +170771187833,215,0 +170771187881,215,0 +170771187931,215,0 +170771187980,215,0 +170771188028,215,0 +170771188076,215,0 +170771188124,215,0 +170771188173,215,0 +170771188221,215,0 +170771188269,215,0 +170771188317,215,0 +170771188366,215,0 +170771188415,214,0 +170771188465,214,0 +170771188513,214,0 +170771188562,214,0 +170771188610,214,0 +170771188659,214,0 +170771188707,214,0 +170771188757,215,0 +170771188806,215,0 +170771188856,215,0 +170771188904,215,0 +170771188951,215,0 +170771188999,215,0 +170771189049,215,0 +170771189097,215,0 +170771189145,215,0 +170771189194,215,0 +170771189242,214,0 +170771189290,213,0 +170771189338,214,0 +170771189387,214,0 +170771189435,214,0 +170771189483,214,0 +170771189531,214,0 +170771189579,214,0 +170771189627,214,0 +170771189676,214,0 +170771189724,215,0 +170771189774,215,0 +170771189821,215,0 +170771189869,215,0 +170771189917,215,0 +170771189967,215,0 +170771190015,215,0 +170771190064,215,0 +170771190113,213,0 +170771190161,213,0 +170771190209,214,0 +170771190259,213,0 +170771190307,214,0 +170771190355,214,0 +170771190404,214,0 +170771190454,214,0 +170771190503,214,0 +170771190551,214,0 +170771190601,215,0 +170771190649,215,0 +170771190696,215,0 +170771190746,215,0 +170771190794,215,0 +170771190842,215,0 +170771190890,214,0 +170771190939,213,0 +170771190987,213,0 +170771191035,213,0 +170771191083,214,0 +170771191131,214,0 +170771191178,213,0 +170771191226,214,0 +170771191274,214,0 +170771191322,214,0 +170771191370,214,0 +170771191418,214,0 +170771191465,214,0 +170771191513,215,0 +170771191561,214,0 +170771191609,215,0 +170771191657,215,0 +170771191705,214,0 +170771191753,214,0 +170771191800,213,0 +170771191850,213,0 +170771191899,213,0 +170771191947,213,0 +170771191997,213,0 +170771192046,214,0 +170771192094,214,0 +170771192142,214,0 +170771192192,214,0 +170771192240,214,0 +170771192289,214,0 +170771192337,214,0 +170771192385,215,0 +170771192435,214,0 +170771192483,215,0 +170771192531,215,0 +170771192579,214,0 +170771192628,213,0 +170771192676,213,0 +170771192724,213,0 +170771192772,213,0 +170771192820,213,0 +170771192868,213,0 +170771192916,214,0 +170771192964,214,0 +170771193012,214,0 +170771193060,214,0 +170771193108,214,0 +170771193157,214,0 +170771193205,214,0 +170771193253,215,0 +170771193303,215,0 +170771193352,215,0 +170771193402,215,0 +170771193450,213,0 +170771193498,213,0 +170771193546,213,0 +170771193594,213,0 +170771193642,214,0 +170771193691,213,0 +170771193739,214,0 +170771193788,214,0 +170771193838,214,0 +170771193886,214,0 +170771193935,214,0 +170771193983,215,0 +170771194031,215,0 +170771194081,215,0 +170771194130,215,0 +170771194178,215,0 +170771194227,215,0 +170771194277,213,0 +170771194325,213,0 +170771194374,214,0 +170771194424,214,0 +170771194472,214,0 +170771194520,214,0 +170771194568,214,0 +170771194617,214,0 +170771194666,214,0 +170771194714,214,0 +170771194764,215,0 +170771194813,214,0 +170771194861,215,0 +170771194909,214,0 +170771194957,215,0 +170771195005,215,0 +170771195053,215,0 +170771195101,213,0 +170771195149,214,0 +170771195197,214,0 +170771195244,214,0 +170771195292,214,0 +170771195340,214,0 +170771195388,214,0 +170771195436,214,0 +170771195484,214,0 +170771195531,215,0 +170771195579,215,0 +170771195627,215,0 +170771195675,215,0 +170771195723,215,0 +170771195771,215,0 +170771195818,215,0 +170771195866,215,0 +170771195914,214,0 +170771195962,213,0 +170771196010,213,0 +170771196058,213,0 +170771196106,214,0 +170771196153,214,0 +170771196201,214,0 +170771196249,214,0 +170771196297,214,0 +170771196345,214,0 +170771196393,214,0 +170771196440,215,0 +170771196488,214,0 +170771196538,215,0 +170771196587,215,0 +170771196635,215,0 +170771196683,215,0 +170771196731,214,0 +170771196781,214,0 +170771196830,214,0 +170771196878,214,0 +170771196926,214,0 +170771196976,214,0 +170771197023,214,0 +170771197071,214,0 +170771197121,214,0 +170771197170,214,0 +170771197218,215,0 +170771197268,215,0 +170771197316,215,0 +170771197364,215,0 +170771197413,215,0 +170771197461,215,0 +170771197509,214,0 +170771197557,214,0 +170771197605,214,0 +170771197653,214,0 +170771197701,214,0 +170771197748,214,0 +170771197798,215,0 +170771197846,214,0 +170771197894,215,0 +170771197942,215,0 +170771197990,215,0 +170771198037,215,0 +170771198085,215,0 +170771198135,215,0 +170771198183,215,0 +170771198231,215,0 +170771198278,215,0 +170771198326,215,0 +170771198374,214,0 +170771198422,214,0 +170771198472,214,0 +170771198520,215,0 +170771198568,215,0 +170771198615,215,0 +170771198663,215,0 +170771198711,215,0 +170771198759,215,0 +170771198807,215,0 +170771198855,215,0 +170771198903,215,0 +170771198952,215,0 +170771199000,215,0 +170771199048,215,0 +170771199096,215,0 +170771199144,215,0 +170771199193,214,0 +170771199241,214,0 +170771199289,214,0 +170771199337,214,0 +170771199385,214,0 +170771199433,214,0 +170771199481,215,0 +170771199530,214,0 +170771199578,215,0 +170771199626,215,0 +170771199674,215,0 +170771199724,215,0 +170771199773,215,0 +170771199823,215,0 +170771199872,215,0 +170771199922,215,0 +170771199970,215,0 +170771200019,214,0 +170771200069,214,0 +170771200117,214,0 +170771200165,214,0 +170771200214,214,0 +170771200262,214,0 +170771200310,215,0 +170771200360,215,0 +170771200407,215,0 +170771200455,215,0 +170771200503,215,0 +170771200553,216,0 +170771200601,215,0 +170771200649,215,0 +170771200697,215,0 +170771200745,215,0 +170771200792,214,0 +170771200840,214,0 +170771200888,214,0 +170771200938,214,0 +170771200986,214,0 +170771201034,214,0 +170771201082,214,0 +170771201129,214,0 +170771201177,214,0 +170771201225,215,0 +170771201273,214,0 +170771201322,215,0 +170771201370,215,0 +170771201418,215,0 +170771201466,215,0 +170771201514,215,0 +170771201562,215,0 +170771201609,215,0 +170771201657,213,0 +170771201705,213,0 +170771201753,213,0 +170771201802,214,0 +170771201850,214,0 +170771201898,214,0 +170771201946,214,0 +170771201994,214,0 +170771202042,214,0 +170771202090,214,0 +170771202138,215,0 +170771202186,214,0 +170771202235,215,0 +170771202283,215,0 +170771202331,215,0 +170771202379,215,0 +170771202429,215,0 +170771202476,213,0 +170771202526,213,0 +170771202574,214,0 +170771202622,214,0 +170771202670,214,0 +170771202717,214,0 +170771202765,214,0 +170771202813,214,0 +170771202861,214,0 +170771202911,214,0 +170771202960,215,0 +170771203008,215,0 +170771203058,215,0 +170771203107,215,0 +170771203155,215,0 +170771203203,215,0 +170771203251,214,0 +170771203299,214,0 +170771203348,213,0 +170771203396,214,0 +170771203444,214,0 +170771203492,214,0 +170771203542,214,0 +170771203591,214,0 +170771203639,214,0 +170771203687,214,0 +170771203735,215,0 +170771203783,215,0 +170771203831,215,0 +170771203878,215,0 +170771203926,215,0 +170771203974,215,0 +170771204022,215,0 +170771204071,214,0 +170771204121,214,0 +170771204168,214,0 +170771204216,214,0 +170771204266,214,0 +170771204314,214,0 +170771204361,214,0 +170771204409,214,0 +170771204459,214,0 +170771204507,215,0 +170771204555,214,0 +170771204602,215,0 +170771204652,215,0 +170771204700,215,0 +170771204748,215,0 +170771204795,215,0 +170771204843,215,0 +170771204893,214,0 +170771204941,213,0 +170771204988,213,0 +170771205036,214,0 +170771205084,214,0 +170771205132,214,0 +170771205180,214,0 +170771205227,214,0 +170771205275,214,0 +170771205323,214,0 +170771205371,215,0 +170771205419,215,0 +170771205467,215,0 +170771205515,215,0 +170771205562,215,0 +170771205610,215,0 +170771205658,215,0 +170771205706,214,0 +170771205754,213,0 +170771205802,213,0 +170771205850,214,0 +170771205899,214,0 +170771205948,214,0 +170771205996,214,0 +170771206044,214,0 +170771206092,214,0 +170771206140,215,0 +170771206188,215,0 +170771206235,215,0 +170771206283,215,0 +170771206331,215,0 +170771206379,215,0 +170771206427,215,0 +170771206475,215,0 +170771206524,214,0 +170771206572,214,0 +170771206620,214,0 +170771206668,214,0 +170771206716,214,0 +170771206764,214,0 +170771206812,214,0 +170771206859,215,0 +170771206907,215,0 +170771206955,215,0 +170771207003,215,0 +170771207051,215,0 +170771207100,215,0 +170771207148,215,0 +170771207196,215,0 +170771207245,215,0 +170771207293,215,0 +170771207341,214,0 +170771207389,214,0 +170771207437,214,0 +170771207485,214,0 +170771207532,214,0 +170771207580,215,0 +170771207628,214,0 +170771207676,215,0 +170771207724,215,0 +170771207773,216,0 +170771207821,215,0 +170771207869,215,0 +170771207917,215,0 +170771207965,215,0 +170771208014,215,0 +170771208062,215,0 +170771208110,215,0 +170771208158,214,0 +170771208206,214,0 +170771208254,214,0 +170771208302,214,0 +170771208349,214,0 +170771208397,214,0 +170771208445,215,0 +170771208493,215,0 +170771208541,215,0 +170771208589,215,0 +170771208637,215,0 +170771208684,215,0 +170771208732,215,0 +170771208780,215,0 +170771208828,215,0 +170771208876,215,0 +170771208924,215,0 +170771208971,214,0 +170771209019,214,0 +170771209067,214,0 +170771209115,214,0 +170771209163,214,0 +170771209211,214,0 +170771209260,214,0 +170771209308,214,0 +170771209358,215,0 +170771209406,215,0 +170771209454,215,0 +170771209502,215,0 +170771209550,215,0 +170771209598,215,0 +170771209645,215,0 +170771209693,215,0 +170771209741,216,0 +170771209789,214,0 +170771209837,214,0 +170771209885,214,0 +170771209933,214,0 +170771209980,215,0 +170771210028,215,0 +170771210076,215,0 +170771210124,215,0 +170771210172,215,0 +170771210220,215,0 +170771210268,215,0 +170771210316,215,0 +170771210365,215,0 +170771210413,215,0 +170771210461,215,0 +170771210508,215,0 +170771210558,215,0 +170771210607,214,0 +170771210655,215,0 +170771210703,215,0 +170771210751,215,0 +170771210798,215,0 +170771210846,215,0 +170771210894,215,0 +170771210944,215,0 +170771210991,215,0 +170771211039,215,0 +170771211087,215,0 +170771211136,215,0 +170771211184,215,0 +170771211232,215,0 +170771211280,215,0 +170771211328,215,0 +170771211377,215,0 +170771211425,215,0 +170771211473,215,0 +170771211521,215,0 +170771211569,215,0 +170771211616,215,0 +170771211664,215,0 +170771211712,215,0 +170771211760,215,0 +170771211809,215,0 +170771211857,215,0 +170771211906,215,0 +170771211954,215,0 +170771212002,215,0 +170771212050,215,0 +170771212098,215,0 +170771212145,215,0 +170771212193,215,0 +170771212241,214,0 +170771212289,214,0 +170771212337,214,0 +170771212385,214,0 +170771212434,214,0 +170771212482,214,0 +170771212530,214,0 +170771212578,214,0 +170771212625,215,0 +170771212675,215,0 +170771212723,215,0 +170771212770,215,0 +170771212818,215,0 +170771212866,215,0 +170771212914,215,0 +170771212962,215,0 +170771213010,215,0 +170771213058,214,0 +170771213105,213,0 +170771213155,214,0 +170771213203,214,0 +170771213252,214,0 +170771213300,214,0 +170771213348,214,0 +170771213396,214,0 +170771213444,214,0 +170771213492,215,0 +170771213539,215,0 +170771213587,215,0 +170771213635,215,0 +170771213683,215,0 +170771213730,215,0 +170771213778,215,0 +170771213828,215,0 +170771213875,214,0 +170771213923,213,0 +170771213971,214,0 +170771214019,214,0 +170771214067,213,0 +170771214115,214,0 +170771214164,214,0 +170771214212,214,0 +170771214260,214,0 +170771214309,214,0 +170771214357,214,0 +170771214405,214,0 +170771214453,215,0 +170771214501,215,0 +170771214548,214,0 +170771214596,215,0 +170771214644,215,0 +170771214692,214,0 +170771214740,213,0 +170771214788,214,0 +170771214835,214,0 +170771214883,214,0 +170771214933,214,0 +170771214981,214,0 +170771215028,214,0 +170771215076,214,0 +170771215124,215,0 +170771215172,215,0 +170771215220,215,0 +170771215267,215,0 +170771215315,215,0 +170771215365,215,0 +170771215413,215,0 +170771215460,215,0 +170771215508,214,0 +170771215556,213,0 +170771215605,214,0 +170771215655,214,0 +170771215703,214,0 +170771215752,214,0 +170771215800,214,0 +170771215848,214,0 +170771215896,215,0 +170771215944,215,0 +170771215991,215,0 +170771216039,215,0 +170771216087,215,0 +170771216135,215,0 +170771216182,215,0 +170771216230,215,0 +170771216278,215,0 +170771216326,214,0 +170771216376,213,0 +170771216424,214,0 +170771216472,214,0 +170771216519,214,0 +170771216567,214,0 +170771216615,214,0 +170771216663,214,0 +170771216711,214,0 +170771216759,214,0 +170771216808,214,0 +170771216856,215,0 +170771216905,215,0 +170771216953,215,0 +170771217001,215,0 +170771217049,215,0 +170771217097,215,0 +170771217145,214,0 +170771217193,213,0 +170771217240,213,0 +170771217290,214,0 +170771217338,214,0 +170771217386,214,0 +170771217435,214,0 +170771217483,214,0 +170771217530,214,0 +170771217578,214,0 +170771217626,215,0 +170771217674,215,0 +170771217722,215,0 +170771217771,215,0 +170771217819,215,0 +170771217867,215,0 +170771217917,215,0 +170771217966,213,0 +170771218016,213,0 +170771218063,214,0 +170771218111,214,0 +170771218161,214,0 +170771218210,214,0 +170771218258,214,0 +170771218306,214,0 +170771218354,214,0 +170771218402,214,0 +170771218450,214,0 +170771218498,214,0 +170771218546,214,0 +170771218594,214,0 +170771218642,214,0 +170771218690,214,0 +170771218738,214,0 +170771218787,213,0 +170771218835,213,0 +170771218883,214,0 +170771218931,213,0 +170771218979,214,0 +170771219027,214,0 +170771219076,214,0 +170771219126,214,0 +170771219174,215,0 +170771219222,214,0 +170771219270,215,0 +170771219317,215,0 +170771219365,215,0 +170771219413,215,0 +170771219461,215,0 +170771219509,215,0 +170771219559,215,0 +170771219607,214,0 +170771219656,214,0 +170771219704,214,0 +170771219752,214,0 +170771219800,214,0 +170771219849,214,0 +170771219897,214,0 +170771219945,215,0 +170771219993,215,0 +170771220041,215,0 +170771220089,215,0 +170771220137,215,0 +170771220185,215,0 +170771220233,215,0 +170771220281,215,0 +170771220329,215,0 +170771220377,214,0 +170771220424,214,0 +170771220472,214,0 +170771220520,215,0 +170771220568,214,0 +170771220616,214,0 +170771220664,215,0 +170771220712,215,0 +170771220760,215,0 +170771220810,215,0 +170771220857,215,0 +170771220907,215,0 +170771220956,215,0 +170771221006,215,0 +170771221054,215,0 +170771221102,215,0 +170771221151,215,0 +170771221201,215,0 +170771221250,214,0 +170771221298,214,0 +170771221346,214,0 +170771221396,215,0 +170771221444,215,0 +170771221491,215,0 +170771221541,215,0 +170771221589,215,0 +170771221637,215,0 +170771221686,215,0 +170771221734,215,0 +170771221782,215,0 +170771221830,215,0 +170771221878,215,0 +170771221925,215,0 +170771221975,215,0 +170771222024,214,0 +170771222072,214,0 +170771222120,214,0 +170771222168,214,0 +170771222217,214,0 +170771222265,215,0 +170771222313,214,0 +170771222361,215,0 +170771222409,215,0 +170771222456,215,0 +170771222504,215,0 +170771222552,215,0 +170771222600,215,0 +170771222648,215,0 +170771222696,215,0 +170771222744,215,0 +170771222792,215,0 +170771222839,214,0 +170771222887,214,0 +170771222935,214,0 +170771222985,214,0 +170771223032,214,0 +170771223080,214,0 +170771223130,215,0 +170771223178,215,0 +170771223226,215,0 +170771223274,215,0 +170771223323,215,0 +170771223371,215,0 +170771223419,215,0 +170771223466,215,0 +170771223514,215,0 +170771223562,215,0 +170771223610,215,0 +170771223658,214,0 +170771223706,214,0 +170771223754,214,0 +170771223801,214,0 +170771223851,214,0 +170771223899,215,0 +170771223947,215,0 +170771223994,215,0 +170771224042,215,0 +170771224090,215,0 +170771224138,215,0 +170771224186,215,0 +170771224234,215,0 +170771224281,215,0 +170771224329,215,0 +170771224379,215,0 +170771224427,215,0 +170771224474,214,0 +170771224524,214,0 +170771224572,214,0 +170771224619,214,0 +170771224669,214,0 +170771224717,214,0 +170771224764,214,0 +170771224812,214,0 +170771224862,215,0 +170771224909,215,0 +170771224957,215,0 +170771225005,215,0 +170771225053,215,0 +170771225101,215,0 +170771225149,215,0 +170771225197,215,0 +170771225244,215,0 +170771225292,213,0 +170771225340,213,0 +170771225388,213,0 +170771225436,214,0 +170771225484,214,0 +170771225532,214,0 +170771225581,214,0 +170771225629,214,0 +170771225677,214,0 +170771225725,214,0 +170771225773,214,0 +170771225821,215,0 +170771225869,215,0 +170771225916,215,0 +170771225966,215,0 +170771226014,215,0 +170771226062,215,0 +170771226109,213,0 +170771226157,213,0 +170771226207,213,0 +170771226256,214,0 +170771226304,214,0 +170771226352,214,0 +170771226402,214,0 +170771226451,214,0 +170771226499,214,0 +170771226549,214,0 +170771226599,214,0 +170771226648,214,0 +170771226696,214,0 +170771226744,215,0 +170771226792,214,0 +170771226841,215,0 +170771226891,214,0 +170771226939,213,0 +170771226988,213,0 +170771227038,214,0 +170771227086,214,0 +170771227135,214,0 +170771227185,214,0 +170771227233,214,0 +170771227282,214,0 +170771227330,214,0 +170771227380,214,0 +170771227429,214,0 +170771227477,215,0 +170771227525,215,0 +170771227573,215,0 +170771227621,215,0 +170771227669,215,0 +170771227717,214,0 +170771227764,213,0 +170771227814,213,0 +170771227863,214,0 +170771227911,214,0 +170771227959,214,0 +170771228007,214,0 +170771228056,214,0 +170771228106,214,0 +170771228155,215,0 +170771228203,214,0 +170771228253,215,0 +170771228302,215,0 +170771228350,215,0 +170771228398,215,0 +170771228446,215,0 +170771228494,215,0 +170771228544,213,0 +170771228592,213,0 +170771228640,213,0 +170771228688,214,0 +170771228737,214,0 +170771228785,214,0 +170771228834,213,0 +170771228882,214,0 +170771228930,214,0 +170771228978,214,0 +170771229028,214,0 +170771229076,214,0 +170771229124,215,0 +170771229172,214,0 +170771229220,214,0 +170771229268,215,0 +170771229316,215,0 +170771229363,215,0 +170771229411,215,0 +170771229459,215,0 +170771229509,215,0 +170771229558,215,0 +170771229608,215,0 +170771229656,215,0 +170771229704,214,0 +170771229752,214,0 +170771229801,214,0 +170771229849,214,0 +170771229897,214,0 +170771229945,214,0 +170771229993,214,0 +170771230041,214,0 +170771230089,215,0 +170771230138,214,0 +170771230186,215,0 +170771230236,215,0 +170771230284,215,0 +170771230332,215,0 +170771230380,215,0 +170771230429,215,0 +170771230477,215,0 +170771230525,215,0 +170771230574,214,0 +170771230622,214,0 +170771230670,214,0 +170771230718,214,0 +170771230766,214,0 +170771230815,214,0 +170771230865,214,0 +170771230913,214,0 +170771230962,215,0 +170771231012,215,0 +170771231061,215,0 +170771231109,215,0 +170771231159,215,0 +170771231207,215,0 +170771231255,215,0 +170771231302,215,0 +170771231350,215,0 +170771231400,214,0 +170771231448,214,0 +170771231496,214,0 +170771231545,214,0 +170771231593,214,0 +170771231641,214,0 +170771231689,214,0 +170771231737,214,0 +170771231785,215,0 +170771231833,215,0 +170771231881,215,0 +170771231929,215,0 +170771231977,215,0 +170771232026,215,0 +170771232074,215,0 +170771232122,215,0 +170771232170,215,0 +170771232218,214,0 +170771232266,214,0 +170771232314,214,0 +170771232362,214,0 +170771232409,214,0 +170771232457,215,0 +170771232505,215,0 +170771232553,215,0 +170771232601,215,0 +170771232649,215,0 +170771232697,215,0 +170771232746,215,0 +170771232794,215,0 +170771232842,215,0 +170771232891,215,0 +170771232939,215,0 +170771232989,214,0 +170771233038,214,0 +170771233088,214,0 +170771233138,214,0 +170771233186,214,0 +170771233234,214,0 +170771233283,215,0 +170771233331,215,0 +170771233379,215,0 +170771233428,215,0 +170771233478,215,0 +170771233526,215,0 +170771233575,215,0 +170771233625,215,0 +170771233675,215,0 +170771233724,215,0 +170771233772,214,0 +170771233820,214,0 +170771233868,214,0 +170771233918,214,0 +170771233966,214,0 +170771234013,214,0 +170771234061,214,0 +170771234109,214,0 +170771234157,215,0 +170771234205,215,0 +170771234253,215,0 +170771234301,215,0 +170771234349,215,0 +170771234398,215,0 +170771234446,215,0 +170771234496,215,0 +170771234544,215,0 +170771234593,215,0 +170771234641,213,0 +170771234691,214,0 +170771234740,213,0 +170771234788,214,0 +170771234836,214,0 +170771234884,214,0 +170771234932,214,0 +170771234982,214,0 +170771235030,214,0 +170771235078,215,0 +170771235127,214,0 +170771235175,215,0 +170771235224,215,0 +170771235272,215,0 +170771235320,214,0 +170771235368,215,0 +170771235416,215,0 +170771235464,213,0 +170771235512,214,0 +170771235561,214,0 +170771235609,214,0 +170771235657,214,0 +170771235705,214,0 +170771235753,214,0 +170771235801,214,0 +170771235850,214,0 +170771235898,215,0 +170771235946,215,0 +170771235995,215,0 +170771236043,215,0 +170771236091,215,0 +170771236139,215,0 +170771236187,215,0 +170771236237,215,0 +170771236285,214,0 +170771236334,214,0 +170771236384,214,0 +170771236432,214,0 +170771236481,214,0 +170771236529,214,0 +170771236577,215,0 +170771236627,215,0 +170771236675,215,0 +170771236722,215,0 +170771236770,215,0 +170771236820,215,0 +170771236868,215,0 +170771236916,215,0 +170771236964,215,0 +170771237012,215,0 +170771237061,215,0 +170771237109,214,0 +170771237159,214,0 +170771237208,214,0 +170771237256,214,0 +170771237306,214,0 +170771237354,215,0 +170771237403,215,0 +170771237451,214,0 +170771237499,215,0 +170771237547,215,0 +170771237595,215,0 +170771237645,215,0 +170771237694,215,0 +170771237742,215,0 +170771237790,215,0 +170771237840,215,0 +170771237888,214,0 +170771237935,214,0 +170771237983,214,0 +170771238033,214,0 +170771238081,214,0 +170771238130,214,0 +170771238180,214,0 +170771238229,214,0 +170771238277,215,0 +170771238325,214,0 +170771238373,215,0 +170771238421,215,0 +170771238469,215,0 +170771238517,215,0 +170771238565,215,0 +170771238614,215,0 +170771238664,215,0 +170771238712,214,0 +170771238760,214,0 +170771238808,214,0 +170771238857,214,0 +170771238905,214,0 +170771238953,214,0 +170771239002,214,0 +170771239052,215,0 +170771239102,215,0 +170771239149,215,0 +170771239197,215,0 +170771239245,215,0 +170771239293,215,0 +170771239343,215,0 +170771239392,215,0 +170771239442,215,0 +170771239491,215,0 +170771239541,214,0 +170771239589,214,0 +170771239637,214,0 +170771239686,214,0 +170771239734,214,0 +170771239784,214,0 +170771239832,214,0 +170771239879,214,0 +170771239927,215,0 +170771239975,215,0 +170771240023,215,0 +170771240071,215,0 +170771240119,215,0 +170771240166,215,0 +170771240214,215,0 +170771240264,215,0 +170771240312,215,0 +170771240360,214,0 +170771240409,214,0 +170771240457,214,0 +170771240505,214,0 +170771240555,214,0 +170771240602,215,0 +170771240650,215,0 +170771240698,215,0 +170771240746,215,0 +170771240794,215,0 +170771240842,215,0 +170771240890,215,0 +170771240938,215,0 +170771240986,215,0 +170771241035,215,0 +170771241085,215,0 +170771241134,214,0 +170771241182,214,0 +170771241230,214,0 +170771241278,214,0 +170771241326,214,0 +170771241376,214,0 +170771241424,214,0 +170771241472,215,0 +170771241520,214,0 +170771241568,215,0 +170771241617,215,0 +170771241665,215,0 +170771241713,215,0 +170771241761,215,0 +170771241809,215,0 +170771241857,215,0 +170771241905,215,0 +170771241953,214,0 +170771242002,214,0 +170771242050,214,0 +170771242098,214,0 +170771242147,214,0 +170771242195,214,0 +170771242243,214,0 +170771242291,214,0 +170771242339,214,0 +170771242387,215,0 +170771242436,215,0 +170771242486,215,0 +170771242534,215,0 +170771242582,215,0 +170771242631,215,0 +170771242679,215,0 +170771242727,215,0 +170771242775,214,0 +170771242823,214,0 +170771242871,214,0 +170771242918,214,0 +170771242966,214,0 +170771243014,214,0 +170771243062,214,0 +170771243110,214,0 +170771243158,214,0 +170771243205,214,0 +170771243253,214,0 +170771243301,215,0 +170771243349,215,0 +170771243397,215,0 +170771243445,215,0 +170771243493,215,0 +170771243541,215,0 +170771243590,214,0 +170771243638,213,0 +170771243687,214,0 +170771243735,213,0 +170771243783,214,0 +170771243831,214,0 +170771243879,214,0 +170771243927,214,0 +170771243975,214,0 +170771244024,215,0 +170771244072,215,0 +170771244120,215,0 +170771244168,214,0 +170771244218,215,0 +170771244267,215,0 +170771244317,215,0 +170771244365,215,0 +170771244414,213,0 +170771244462,213,0 +170771244510,213,0 +170771244558,214,0 +170771244606,214,0 +170771244654,214,0 +170771244703,214,0 +170771244753,214,0 +170771244802,214,0 +170771244850,214,0 +170771244899,215,0 +170771244947,214,0 +170771244995,215,0 +170771245043,215,0 +170771245091,215,0 +170771245139,215,0 +170771245189,215,0 +170771245237,214,0 +170771245285,214,0 +170771245332,213,0 +170771245380,214,0 +170771245428,214,0 +170771245476,214,0 +170771245524,214,0 +170771245572,214,0 +170771245622,214,0 +170771245671,215,0 +170771245719,215,0 +170771245767,215,0 +170771245815,215,0 +170771245864,215,0 +170771245912,215,0 +170771245960,215,0 +170771246008,214,0 +170771246057,214,0 +170771246107,214,0 +170771246155,214,0 +170771246204,214,0 +170771246252,214,0 +170771246300,214,0 +170771246350,214,0 +170771246399,214,0 +170771246447,215,0 +170771246495,215,0 +170771246543,215,0 +170771246591,215,0 +170771246641,215,0 +170771246689,215,0 +170771246737,215,0 +170771246786,215,0 +170771246836,215,0 +170771246885,214,0 +170771246933,214,0 +170771246981,214,0 +170771247031,214,0 +170771247078,214,0 +170771247126,214,0 +170771247174,214,0 +170771247222,214,0 +170771247270,215,0 +170771247319,215,0 +170771247367,215,0 +170771247417,215,0 +170771247465,215,0 +170771247513,215,0 +170771247562,215,0 +170771247610,215,0 +170771247658,214,0 +170771247706,214,0 +170771247754,213,0 +170771247803,214,0 +170771247853,214,0 +170771247901,214,0 +170771247949,214,0 +170771247997,214,0 +170771248046,214,0 +170771248094,214,0 +170771248142,214,0 +170771248190,214,0 +170771248240,214,0 +170771248289,215,0 +170771248337,215,0 +170771248385,215,0 +170771248433,215,0 +170771248481,214,0 +170771248529,214,0 +170771248578,214,0 +170771248628,214,0 +170771248676,214,0 +170771248724,214,0 +170771248772,214,0 +170771248820,214,0 +170771248868,215,0 +170771248917,215,0 +170771248967,215,0 +170771249014,215,0 +170771249062,215,0 +170771249110,215,0 +170771249158,215,0 +170771249206,215,0 +170771249254,215,0 +170771249302,214,0 +170771249352,214,0 +170771249401,214,0 +170771249449,214,0 +170771249499,214,0 +170771249548,214,0 +170771249596,214,0 +170771249644,215,0 +170771249693,215,0 +170771249741,215,0 +170771249791,215,0 +170771249839,215,0 +170771249887,215,0 +170771249936,215,0 +170771249984,215,0 +170771250034,215,0 +170771250083,215,0 +170771250133,214,0 +170771250182,214,0 +170771250230,214,0 +170771250280,214,0 +170771250329,214,0 +170771250377,214,0 +170771250427,215,0 +170771250475,215,0 +170771250522,215,0 +170771250570,215,0 +170771250620,215,0 +170771250668,215,0 +170771250716,215,0 +170771250764,215,0 +170771250812,215,0 +170771250859,215,0 +170771250907,215,0 +170771250957,214,0 +170771251005,214,0 +170771251053,214,0 +170771251102,214,0 +170771251150,214,0 +170771251200,214,0 +170771251248,214,0 +170771251297,215,0 +170771251345,215,0 +170771251395,215,0 +170771251444,215,0 +170771251492,215,0 +170771251542,215,0 +170771251590,215,0 +170771251639,215,0 +170771251687,215,0 +170771251735,214,0 +170771251783,214,0 +170771251830,214,0 +170771251878,214,0 +170771251926,214,0 +170771251974,214,0 +170771252024,214,0 +170771252072,214,0 +170771252121,215,0 +170771252171,215,0 +170771252219,215,0 +170771252267,215,0 +170771252316,215,0 +170771252364,215,0 +170771252412,215,0 +170771252460,215,0 +170771252508,215,0 +170771252556,214,0 +170771252604,214,0 +170771252652,214,0 +170771252700,214,0 +170771252749,214,0 +170771252797,214,0 +170771252847,215,0 +170771252896,215,0 +170771252944,215,0 +170771252994,215,0 +170771253043,215,0 +170771253091,215,0 +170771253139,215,0 +170771253187,215,0 +170771253237,215,0 +170771253285,215,0 +170771253333,215,0 +170771253380,214,0 +170771253428,213,0 +170771253478,214,0 +170771253526,214,0 +170771253574,214,0 +170771253622,214,0 +170771253670,214,0 +170771253718,215,0 +170771253767,214,0 +170771253817,215,0 +170771253866,215,0 +170771253914,215,0 +170771253962,215,0 +170771254010,215,0 +170771254059,215,0 +170771254107,215,0 +170771254155,215,0 +170771254205,213,0 +170771254254,214,0 +170771254302,214,0 +170771254350,214,0 +170771254400,214,0 +170771254449,214,0 +170771254499,214,0 +170771254548,215,0 +170771254596,215,0 +170771254644,215,0 +170771254692,215,0 +170771254741,215,0 +170771254789,215,0 +170771254839,215,0 +170771254888,215,0 +170771254938,215,0 +170771254986,214,0 +170771255034,214,0 +170771255083,214,0 +170771255131,214,0 +170771255181,214,0 +170771255230,214,0 +170771255278,214,0 +170771255326,214,0 +170771255376,215,0 +170771255424,214,0 +170771255472,215,0 +170771255520,215,0 +170771255568,215,0 +170771255617,215,0 +170771255667,215,0 +170771255715,215,0 +170771255764,215,0 +170771255812,214,0 +170771255860,214,0 +170771255908,214,0 +170771255957,214,0 +170771256007,214,0 +170771256056,214,0 +170771256104,214,0 +170771256152,214,0 +170771256202,214,0 +170771256250,215,0 +170771256298,215,0 +170771256346,215,0 +170771256395,215,0 +170771256443,215,0 +170771256491,215,0 +170771256540,215,0 +170771256590,215,0 +170771256638,214,0 +170771256686,214,0 +170771256734,214,0 +170771256782,214,0 +170771256829,214,0 +170771256877,215,0 +170771256927,214,0 +170771256976,214,0 +170771257024,215,0 +170771257074,215,0 +170771257123,215,0 +170771257171,215,0 +170771257219,215,0 +170771257267,215,0 +170771257315,215,0 +170771257363,215,0 +170771257411,215,0 +170771257459,213,0 +170771257507,214,0 +170771257555,214,0 +170771257602,214,0 +170771257650,214,0 +170771257700,214,0 +170771257748,214,0 +170771257796,214,0 +170771257844,214,0 +170771257892,214,0 +170771257940,215,0 +170771257988,215,0 +170771258036,215,0 +170771258084,215,0 +170771258132,215,0 +170771258181,215,0 +170771258229,214,0 +170771258277,214,0 +170771258327,214,0 +170771258375,214,0 +170771258422,214,0 +170771258472,214,0 +170771258522,214,0 +170771258571,214,0 +170771258619,215,0 +170771258667,215,0 +170771258716,215,0 +170771258764,215,0 +170771258814,215,0 +170771258862,215,0 +170771258911,215,0 +170771258961,215,0 +170771259009,215,0 +170771259058,214,0 +170771259106,214,0 +170771259155,214,0 +170771259205,214,0 +170771259253,214,0 +170771259301,214,0 +170771259349,214,0 +170771259397,214,0 +170771259444,215,0 +170771259492,215,0 +170771259542,215,0 +170771259592,215,0 +170771259639,215,0 +170771259687,215,0 +170771259735,215,0 +170771259784,215,0 +170771259833,215,0 +170771259883,214,0 +170771259930,214,0 +170771259978,214,0 +170771260026,214,0 +170771260074,214,0 +170771260122,214,0 +170771260172,214,0 +170771260220,214,0 +170771260269,214,0 +170771260317,214,0 +170771260365,214,0 +170771260413,215,0 +170771260461,215,0 +170771260509,215,0 +170771260557,215,0 +170771260605,215,0 +170771260653,215,0 +170771260700,214,0 +170771260748,214,0 +170771260798,214,0 +170771260846,214,0 +170771260894,214,0 +170771260942,214,0 +170771260990,214,0 +170771261037,215,0 +170771261085,214,0 +170771261133,215,0 +170771261183,215,0 +170771261231,215,0 +170771261279,215,0 +170771261326,217,0 +170771261374,215,0 +170771261422,215,0 +170771261470,215,0 +170771261518,214,0 +170771261566,214,0 +170771261614,214,0 +170771261662,215,0 +170771261710,215,0 +170771261758,214,0 +170771261807,215,0 +170771261855,215,0 +170771261903,215,0 +170771261951,215,0 +170771262000,215,0 +170771262050,215,0 +170771262099,215,0 +170771262149,215,0 +170771262198,215,0 +170771262248,215,0 +170771262297,214,0 +170771262345,214,0 +170771262395,215,0 +170771262443,214,0 +170771262492,215,0 +170771262542,215,0 +170771262590,215,0 +170771262639,215,0 +170771262689,215,0 +170771262738,215,0 +170771262788,215,0 +170771262837,215,0 +170771262885,215,0 +170771262934,215,0 +170771262982,215,0 +170771263030,215,0 +170771263078,215,0 +170771263128,214,0 +170771263177,214,0 +170771263225,215,0 +170771263273,214,0 +170771263321,214,0 +170771263369,215,0 +170771263417,215,0 +170771263465,215,0 +170771263514,215,0 +170771263562,215,0 +170771263610,215,0 +170771263658,215,0 +170771263707,215,0 +170771263757,215,0 +170771263806,215,0 +170771263854,215,0 +170771263902,215,0 +170771263950,213,0 +170771263998,214,0 +170771264046,214,0 +170771264094,214,0 +170771264142,214,0 +170771264189,214,0 +170771264237,215,0 +170771264285,214,0 +170771264335,215,0 +170771264384,215,0 +170771264434,215,0 +170771264482,215,0 +170771264531,215,0 +170771264581,215,0 +170771264629,215,0 +170771264677,215,0 +170771264725,214,0 +170771264773,214,0 +170771264822,214,0 +170771264870,214,0 +170771264918,214,0 +170771264967,214,0 +170771265015,214,0 +170771265063,214,0 +170771265111,214,0 +170771265161,215,0 +170771265210,215,0 +170771265260,215,0 +170771265309,215,0 +170771265359,215,0 +170771265407,215,0 +170771265455,215,0 +170771265504,215,0 +170771265552,213,0 +170771265602,213,0 +170771265651,213,0 +170771265699,213,0 +170771265747,214,0 +170771265795,214,0 +170771265843,214,0 +170771265891,214,0 +170771265939,214,0 +170771265987,214,0 +170771266035,215,0 +170771266083,215,0 +170771266131,215,0 +170771266179,215,0 +170771266227,215,0 +170771266275,215,0 +170771266323,215,0 +170771266371,214,0 +170771266419,213,0 +170771266467,213,0 +170771266515,214,0 +170771266563,214,0 +170771266611,214,0 +170771266659,214,0 +170771266707,214,0 +170771266754,214,0 +170771266802,214,0 +170771266850,215,0 +170771266898,215,0 +170771266946,215,0 +170771266994,215,0 +170771267044,215,0 +170771267093,215,0 +170771267141,215,0 +170771267189,213,0 +170771267239,213,0 +170771267288,213,0 +170771267338,214,0 +170771267386,214,0 +170771267435,214,0 +170771267483,214,0 +170771267531,214,0 +170771267579,214,0 +170771267629,214,0 +170771267677,215,0 +170771267725,215,0 +170771267773,215,0 +170771267822,215,0 +170771267870,215,0 +170771267920,215,0 +170771267969,215,0 +170771268017,213,0 +170771268065,214,0 +170771268113,214,0 +170771268163,214,0 +170771268212,214,0 +170771268260,214,0 +170771268310,214,0 +170771268357,214,0 +170771268405,214,0 +170771268453,214,0 +170771268501,214,0 +170771268551,215,0 +170771268599,215,0 +170771268648,215,0 +170771268696,215,0 +170771268746,215,0 +170771268795,214,0 +170771268843,213,0 +170771268891,214,0 +170771268939,214,0 +170771268987,214,0 +170771269036,214,0 +170771269084,214,0 +170771269134,214,0 +170771269184,214,0 +170771269231,215,0 +170771269279,215,0 +170771269329,215,0 +170771269379,215,0 +170771269426,215,0 +170771269474,215,0 +170771269524,215,0 +170771269572,215,0 +170771269621,214,0 +170771269669,213,0 +170771269717,214,0 +170771269765,214,0 +170771269813,214,0 +170771269861,214,0 +170771269909,214,0 +170771269959,214,0 +170771270008,214,0 +170771270056,215,0 +170771270104,215,0 +170771270152,215,0 +170771270200,215,0 +170771270249,215,0 +170771270299,215,0 +170771270347,215,0 +170771270395,215,0 +170771270444,214,0 +170771270492,214,0 +170771270542,214,0 +170771270591,214,0 +170771270641,214,0 +170771270691,214,0 +170771270738,214,0 +170771270786,214,0 +170771270834,215,0 +170771270884,215,0 +170771270932,215,0 +170771270980,215,0 +170771271029,215,0 +170771271077,215,0 +170771271125,215,0 +170771271173,215,0 +170771271221,215,0 +170771271269,214,0 +170771271319,214,0 +170771271368,214,0 +170771271416,214,0 +170771271464,214,0 +170771271512,215,0 +170771271560,215,0 +170771271608,215,0 +170771271658,215,0 +170771271705,215,0 +170771271753,215,0 +170771271803,215,0 +170771271851,215,0 +170771271900,215,0 +170771271948,215,0 +170771271996,215,0 +170771272044,215,0 +170771272092,215,0 +170771272142,215,0 +170771272190,215,0 +170771272238,215,0 +170771272286,215,0 +170771272334,215,0 +170771272382,215,0 +170771272429,215,0 +170771272477,215,0 +170771272525,215,0 +170771272573,215,0 +170771272621,215,0 +170771272671,215,0 +170771272721,215,0 +170771272769,215,0 +170771272816,215,0 +170771272866,215,0 +170771272916,214,0 +170771272965,214,0 +170771273015,214,0 +170771273063,214,0 +170771273111,214,0 +170771273159,215,0 +170771273206,215,0 +170771273256,215,0 +170771273305,215,0 +170771273355,215,0 +170771273403,215,0 +170771273451,215,0 +170771273500,215,0 +170771273550,215,0 +170771273600,215,0 +170771273647,215,0 +170771273697,214,0 +170771273745,214,0 +170771273793,214,0 +170771273840,214,0 +170771273888,214,0 +170771273938,215,0 +170771273986,215,0 +170771274034,215,0 +170771274082,215,0 +170771274130,215,0 +170771274178,215,0 +170771274225,215,0 +170771274273,215,0 +170771274321,215,0 +170771274371,215,0 +170771274420,215,0 +170771274470,215,0 +170771274518,214,0 +170771274566,214,0 +170771274614,214,0 +170771274661,214,0 +170771274709,215,0 +170771274757,215,0 +170771274805,215,0 +170771274853,215,0 +170771274901,215,0 +170771274951,215,0 +170771275000,215,0 +170771275050,215,0 +170771275099,215,0 +170771275147,215,0 +170771275195,215,0 +170771275243,215,0 +170771275293,214,0 +170771275341,214,0 +170771275389,214,0 +170771275438,214,0 +170771275486,214,0 +170771275536,214,0 +170771275584,214,0 +170771275631,214,0 +170771275679,215,0 +170771275727,214,0 +170771275777,215,0 +170771275825,215,0 +170771275873,215,0 +170771275922,215,0 +170771275972,215,0 +170771276019,215,0 +170771276067,215,0 +170771276115,214,0 +170771276163,213,0 +170771276211,213,0 +170771276259,214,0 +170771276307,214,0 +170771276355,214,0 +170771276403,214,0 +170771276451,214,0 +170771276499,215,0 +170771276548,214,0 +170771276596,214,0 +170771276644,215,0 +170771276692,215,0 +170771276741,215,0 +170771276789,215,0 +170771276837,215,0 +170771276885,215,0 +170771276933,213,0 +170771276981,213,0 +170771277030,213,0 +170771277080,214,0 +170771277128,214,0 +170771277176,214,0 +170771277224,214,0 +170771277273,214,0 +170771277321,214,0 +170771277371,214,0 +170771277418,214,0 +170771277466,215,0 +170771277514,215,0 +170771277562,215,0 +170771277610,215,0 +170771277658,215,0 +170771277706,215,0 +170771277755,214,0 +170771277803,214,0 +170771277851,214,0 +170771277899,214,0 +170771277949,214,0 +170771277997,214,0 +170771278046,215,0 +170771278094,214,0 +170771278142,215,0 +170771278190,214,0 +170771278238,215,0 +170771278285,215,0 +170771278333,215,0 +170771278381,215,0 +170771278429,215,0 +170771278477,215,0 +170771278525,215,0 +170771278573,214,0 +170771278620,214,0 +170771278668,213,0 +170771278716,214,0 +170771278764,214,0 +170771278812,214,0 +170771278860,214,0 +170771278908,214,0 +170771278957,215,0 +170771279005,214,0 +170771279053,215,0 +170771279101,215,0 +170771279148,215,0 +170771279196,215,0 +170771279244,215,0 +170771279292,215,0 +170771279340,214,0 +170771279388,214,0 +170771279436,214,0 +170771279484,214,0 +170771279532,214,0 +170771279580,214,0 +170771279627,214,0 +170771279675,214,0 +170771279723,214,0 +170771279771,215,0 +170771279819,214,0 +170771279867,215,0 +170771279915,215,0 +170771279963,215,0 +170771280010,215,0 +170771280058,215,0 +170771280106,215,0 +170771280154,214,0 +170771280202,214,0 +170771280250,214,0 +170771280298,213,0 +170771280345,214,0 +170771280393,214,0 +170771280441,214,0 +170771280489,215,0 +170771280537,214,0 +170771280585,214,0 +170771280633,215,0 +170771280681,214,0 +170771280730,215,0 +170771280780,215,0 +170771280829,215,0 +170771280877,215,0 +170771280926,214,0 +170771280974,214,0 +170771281022,213,0 +170771281072,214,0 +170771281121,214,0 +170771281169,214,0 +170771281217,214,0 +170771281265,214,0 +170771281313,214,0 +170771281361,214,0 +170771281410,215,0 +170771281458,215,0 +170771281508,215,0 +170771281557,215,0 +170771281605,215,0 +170771281653,215,0 +170771281701,215,0 +170771281749,215,0 +170771281797,214,0 +170771281845,214,0 +170771281893,214,0 +170771281942,214,0 +170771281990,214,0 +170771282038,214,0 +170771282086,214,0 +170771282134,214,0 +170771282182,214,0 +170771282231,215,0 +170771282281,215,0 +170771282329,215,0 +170771282378,215,0 +170771282426,215,0 +170771282474,215,0 +170771282522,215,0 +170771282570,215,0 +170771282619,214,0 +170771282669,213,0 +170771282717,213,0 +170771282765,214,0 +170771282814,214,0 +170771282864,214,0 +170771282912,214,0 +170771282960,214,0 +170771283008,214,0 +170771283056,215,0 +170771283104,215,0 +170771283152,215,0 +170771283201,215,0 +170771283249,215,0 +170771283297,215,0 +170771283345,215,0 +170771283395,214,0 +170771283443,213,0 +170771283492,213,0 +170771283540,214,0 +170771283590,214,0 +170771283639,214,0 +170771283687,214,0 +170771283735,214,0 +170771283783,214,0 +170771283832,214,0 +170771283880,214,0 +170771283929,215,0 +170771283977,215,0 +170771284027,215,0 +170771284075,215,0 +170771284124,215,0 +170771284172,215,0 +170771284222,214,0 +170771284270,213,0 +170771284319,214,0 +170771284367,214,0 +170771284415,214,0 +170771284463,214,0 +170771284513,214,0 +170771284561,215,0 +170771284610,214,0 +170771284660,215,0 +170771284707,215,0 +170771284755,215,0 +170771284805,215,0 +170771284854,215,0 +170771284902,215,0 +170771284950,215,0 +170771285000,215,0 +170771285048,214,0 +170771285096,214,0 +170771285144,214,0 +170771285193,214,0 +170771285242,214,0 +170771285292,214,0 +170771285340,214,0 +170771285388,214,0 +170771285436,215,0 +170771285484,215,0 +170771285533,215,0 +170771285583,215,0 +170771285631,215,0 +170771285680,215,0 +170771285730,215,0 +170771285779,215,0 +170771285829,215,0 +170771285876,214,0 +170771285924,214,0 +170771285972,214,0 +170771286020,214,0 +170771286068,214,0 +170771286116,214,0 +170771286164,214,0 +170771286213,214,0 +170771286261,214,0 +170771286309,214,0 +170771286359,215,0 +170771286407,215,0 +170771286455,215,0 +170771286504,215,0 +170771286552,215,0 +170771286600,215,0 +170771286648,215,0 +170771286696,213,0 +170771286744,214,0 +170771286793,214,0 +170771286841,214,0 +170771286889,214,0 +170771286939,214,0 +170771286988,214,0 +170771287036,214,0 +170771287084,215,0 +170771287132,215,0 +170771287180,215,0 +170771287228,215,0 +170771287276,215,0 +170771287326,215,0 +170771287374,215,0 +170771287423,215,0 +170771287473,215,0 +170771287521,214,0 +170771287569,213,0 +170771287617,214,0 +170771287665,214,0 +170771287714,214,0 +170771287763,214,0 +170771287813,214,0 +170771287861,215,0 +170771287909,215,0 +170771287958,215,0 +170771288006,215,0 +170771288056,215,0 +170771288104,215,0 +170771288153,215,0 +170771288201,215,0 +170771288249,215,0 +170771288297,214,0 +170771288345,214,0 +170771288395,214,0 +170771288444,214,0 +170771288492,214,0 +170771288540,214,0 +170771288590,214,0 +170771288639,215,0 +170771288687,215,0 +170771288736,215,0 +170771288786,215,0 +170771288834,215,0 +170771288883,215,0 +170771288933,215,0 +170771288983,215,0 +170771289030,215,0 +170771289080,215,0 +170771289128,214,0 +170771289176,214,0 +170771289225,214,0 +170771289273,214,0 +170771289321,214,0 +170771289371,214,0 +170771289420,214,0 +170771289470,214,0 +170771289519,214,0 +170771289567,215,0 +170771289615,215,0 +170771289665,215,0 +170771289713,215,0 +170771289762,215,0 +170771289810,215,0 +170771289860,215,0 +170771289910,214,0 +170771289957,214,0 +170771290005,214,0 +170771290055,214,0 +170771290103,214,0 +170771290152,214,0 +170771290202,214,0 +170771290252,214,0 +170771290301,215,0 +170771290351,215,0 +170771290399,215,0 +170771290447,215,0 +170771290496,215,0 +170771290546,215,0 +170771290594,215,0 +170771290641,215,0 +170771290689,215,0 +170771290737,214,0 +170771290785,213,0 +170771290833,214,0 +170771290881,214,0 +170771290929,214,0 +170771290979,214,0 +170771291027,214,0 +170771291075,214,0 +170771291124,214,0 +170771291172,215,0 +170771291220,215,0 +170771291268,215,0 +170771291318,215,0 +170771291367,215,0 +170771291415,215,0 +170771291465,215,0 +170771291513,215,0 +170771291562,214,0 +170771291610,214,0 +170771291658,214,0 +170771291706,214,0 +170771291754,214,0 +170771291802,214,0 +170771291850,214,0 +170771291899,214,0 +170771291947,214,0 +170771291995,215,0 +170771292043,215,0 +170771292091,215,0 +170771292140,215,0 +170771292188,215,0 +170771292236,215,0 +170771292284,215,0 +170771292333,215,0 +170771292381,214,0 +170771292429,214,0 +170771292479,214,0 +170771292528,216,0 +170771292578,214,0 +170771292627,214,0 +170771292675,214,0 +170771292725,215,0 +170771292774,215,0 +170771292824,215,0 +170771292872,215,0 +170771292920,215,0 +170771292968,215,0 +170771293017,215,0 +170771293065,215,0 +170771293113,215,0 +170771293161,214,0 +170771293209,214,0 +170771293259,214,0 +170771293307,214,0 +170771293356,214,0 +170771293404,214,0 +170771293454,214,0 +170771293502,214,0 +170771293550,214,0 +170771293598,215,0 +170771293646,215,0 +170771293694,215,0 +170771293741,215,0 +170771293789,215,0 +170771293837,215,0 +170771293885,215,0 +170771293933,214,0 +170771293981,214,0 +170771294029,214,0 +170771294076,213,0 +170771294124,214,0 +170771294172,214,0 +170771294220,214,0 +170771294268,214,0 +170771294317,214,0 +170771294365,214,0 +170771294413,214,0 +170771294461,215,0 +170771294508,215,0 +170771294556,215,0 +170771294604,215,0 +170771294654,215,0 +170771294701,215,0 +170771294749,215,0 +170771294799,215,0 +170771294847,215,0 +170771294895,214,0 +170771294943,213,0 +170771294992,213,0 +170771295040,214,0 +170771295088,214,0 +170771295136,214,0 +170771295184,214,0 +170771295232,214,0 +170771295280,214,0 +170771295329,214,0 +170771295377,214,0 +170771295425,215,0 +170771295473,214,0 +170771295523,214,0 +170771295571,215,0 +170771295619,215,0 +170771295668,215,0 +170771295716,215,0 +170771295764,214,0 +170771295813,213,0 +170771295863,213,0 +170771295911,213,0 +170771295959,213,0 +170771296007,213,0 +170771296055,214,0 +170771296103,214,0 +170771296151,214,0 +170771296199,214,0 +170771296247,214,0 +170771296294,214,0 +170771296342,214,0 +170771296390,215,0 +170771296438,215,0 +170771296486,215,0 +170771296534,215,0 +170771296582,215,0 +170771296630,215,0 +170771296680,214,0 +170771296729,213,0 +170771296779,213,0 +170771296827,213,0 +170771296875,213,0 +170771296924,213,0 +170771296972,214,0 +170771297022,214,0 +170771297071,214,0 +170771297119,214,0 +170771297168,214,0 +170771297216,214,0 +170771297264,214,0 +170771297314,215,0 +170771297362,215,0 +170771297410,215,0 +170771297459,215,0 +170771297509,214,0 +170771297558,214,0 +170771297608,214,0 +170771297657,213,0 +170771297707,213,0 +170771297754,214,0 +170771297802,214,0 +170771297850,214,0 +170771297898,214,0 +170771297946,214,0 +170771297996,214,0 +170771298044,214,0 +170771298091,215,0 +170771298139,215,0 +170771298187,215,0 +170771298235,215,0 +170771298283,215,0 +170771298331,215,0 +170771298381,215,0 +170771298430,215,0 +170771298478,215,0 +170771298528,214,0 +170771298576,214,0 +170771298624,214,0 +170771298673,214,0 +170771298721,214,0 +170771298769,214,0 +170771298819,214,0 +170771298866,214,0 +170771298914,214,0 +170771298964,214,0 +170771299014,215,0 +170771299063,215,0 +170771299111,215,0 +170771299159,215,0 +170771299207,215,0 +170771299256,215,0 +170771299304,215,0 +170771299352,215,0 +170771299400,214,0 +170771299450,213,0 +170771299498,213,0 +170771299546,214,0 +170771299594,213,0 +170771299642,214,0 +170771299690,213,0 +170771299737,214,0 +170771299785,214,0 +170771299833,214,0 +170771299883,214,0 +170771299931,214,0 +170771299979,214,0 +170771300028,215,0 +170771300078,215,0 +170771300126,215,0 +170771300175,215,0 +170771300225,215,0 +170771300273,214,0 +170771300320,213,0 +170771300370,213,0 +170771300418,214,0 +170771300466,214,0 +170771300514,214,0 +170771300562,214,0 +170771300610,214,0 +170771300659,214,0 +170771300707,214,0 +170771300755,214,0 +170771300803,215,0 +170771300851,215,0 +170771300899,215,0 +170771300948,215,0 +170771300996,215,0 +170771301044,215,0 +170771301094,215,0 +170771301143,215,0 +170771301191,214,0 +170771301241,214,0 +170771301290,213,0 +170771301338,214,0 +170771301386,214,0 +170771301434,214,0 +170771301482,214,0 +170771301530,214,0 +170771301578,214,0 +170771301626,214,0 +170771301675,215,0 +170771301725,215,0 +170771301773,215,0 +170771301822,215,0 +170771301870,215,0 +170771301920,215,0 +170771301969,215,0 +170771302017,214,0 +170771302067,214,0 +170771302116,213,0 +170771302165,214,0 +170771302213,214,0 +170771302263,214,0 +170771302311,214,0 +170771302360,214,0 +170771302408,214,0 +170771302456,214,0 +170771302504,214,0 +170771302552,214,0 +170771302600,215,0 +170771302648,215,0 +170771302697,215,0 +170771302745,215,0 +170771302793,215,0 +170771302841,215,0 +170771302889,215,0 +170771302937,214,0 +170771302985,213,0 +170771303033,214,0 +170771303081,214,0 +170771303129,214,0 +170771303177,214,0 +170771303225,214,0 +170771303273,214,0 +170771303321,214,0 +170771303370,214,0 +170771303418,214,0 +170771303466,214,0 +170771303514,215,0 +170771303562,215,0 +170771303612,214,0 +170771303661,215,0 +170771303709,215,0 +170771303758,215,0 +170771303806,214,0 +170771303854,214,0 +170771303902,213,0 +170771303950,214,0 +170771303998,214,0 +170771304046,214,0 +170771304094,214,0 +170771304142,214,0 +170771304192,214,0 +170771304241,214,0 +170771304289,214,0 +170771304338,214,0 +170771304386,215,0 +170771304436,215,0 +170771304484,215,0 +170771304532,215,0 +170771304581,215,0 +170771304631,215,0 +170771304680,215,0 +170771304728,214,0 +170771304776,214,0 +170771304825,213,0 +170771304875,214,0 +170771304924,214,0 +170771304972,214,0 +170771305020,214,0 +170771305068,214,0 +170771305116,214,0 +170771305164,214,0 +170771305212,214,0 +170771305260,214,0 +170771305310,215,0 +170771305359,215,0 +170771305407,215,0 +170771305455,215,0 +170771305503,215,0 +170771305551,215,0 +170771305600,214,0 +170771305648,214,0 +170771305696,213,0 +170771305744,213,0 +170771305793,213,0 +170771305843,214,0 +170771305892,213,0 +170771305940,214,0 +170771305988,214,0 +170771306036,214,0 +170771306084,214,0 +170771306133,214,0 +170771306181,215,0 +170771306229,215,0 +170771306278,214,0 +170771306327,215,0 +170771306375,215,0 +170771306423,215,0 +170771306471,215,0 +170771306519,215,0 +170771306567,214,0 +170771306614,214,0 +170771306664,214,0 +170771306712,214,0 +170771306759,214,0 +170771306807,214,0 +170771306855,215,0 +170771306903,214,0 +170771306951,215,0 +170771307000,214,0 +170771307048,214,0 +170771307097,215,0 +170771307145,214,0 +170771307193,215,0 +170771307241,215,0 +170771307289,215,0 +170771307337,215,0 +170771307385,215,0 +170771307433,215,0 +170771307482,213,0 +170771307530,213,0 +170771307578,214,0 +170771307627,214,0 +170771307675,214,0 +170771307723,214,0 +170771307771,214,0 +170771307821,214,0 +170771307870,214,0 +170771307920,214,0 +170771307969,214,0 +170771308018,215,0 +170771308066,215,0 +170771308114,215,0 +170771308162,215,0 +170771308210,215,0 +170771308258,215,0 +170771308307,214,0 +170771308357,214,0 +170771308406,213,0 +170771308454,213,0 +170771308502,213,0 +170771308550,214,0 +170771308598,214,0 +170771308647,214,0 +170771308697,214,0 +170771308744,214,0 +170771308794,214,0 +170771308842,215,0 +170771308890,215,0 +170771308939,215,0 +170771308989,215,0 +170771309038,215,0 +170771309086,215,0 +170771309134,215,0 +170771309182,215,0 +170771309232,214,0 +170771309280,213,0 +170771309327,213,0 +170771309375,213,0 +170771309423,213,0 +170771309471,214,0 +170771309519,214,0 +170771309567,214,0 +170771309615,214,0 +170771309663,214,0 +170771309712,214,0 +170771309762,214,0 +170771309811,215,0 +170771309859,215,0 +170771309907,215,0 +170771309955,215,0 +170771310004,215,0 +170771310052,214,0 +170771310100,215,0 +170771310148,213,0 +170771310196,213,0 +170771310244,213,0 +170771310292,213,0 +170771310341,213,0 +170771310389,213,0 +170771310438,214,0 +170771310486,214,0 +170771310536,214,0 +170771310584,214,0 +170771310633,214,0 +170771310681,214,0 +170771310729,214,0 +170771310777,214,0 +170771310825,214,0 +170771310873,215,0 +170771310921,215,0 +170771310969,215,0 +170771311017,214,0 +170771311065,213,0 +170771311113,213,0 +170771311160,213,0 +170771311208,213,0 +170771311258,213,0 +170771311306,213,0 +170771311355,214,0 +170771311405,214,0 +170771311454,213,0 +170771311502,214,0 +170771311550,214,0 +170771311599,214,0 +170771311649,214,0 +170771311696,214,0 +170771311744,214,0 +170771311794,214,0 +170771311842,214,0 +170771311890,215,0 +170771311938,213,0 +170771311987,213,0 +170771312035,213,0 +170771312085,213,0 +170771312134,213,0 +170771312182,213,0 +170771312230,213,0 +170771312278,213,0 +170771312326,214,0 +170771312374,214,0 +170771312424,214,0 +170771312473,214,0 +170771312521,214,0 +170771312569,214,0 +170771312619,214,0 +170771312667,214,0 +170771312716,215,0 +170771312764,215,0 +170771312812,214,0 +170771312860,213,0 +170771312910,213,0 +170771312957,213,0 +170771313005,213,0 +170771313055,213,0 +170771313103,214,0 +170771313151,214,0 +170771313200,214,0 +170771313248,214,0 +170771313296,214,0 +170771313344,214,0 +170771313394,214,0 +170771313441,214,0 +170771313489,214,0 +170771313539,214,0 +170771313587,215,0 +170771313636,215,0 +170771313686,214,0 +170771313734,213,0 +170771313784,213,0 +170771313832,213,0 +170771313880,213,0 +170771313929,213,0 +170771313977,214,0 +170771314025,214,0 +170771314073,214,0 +170771314121,214,0 +170771314169,214,0 +170771314218,214,0 +170771314266,215,0 +170771314314,215,0 +170771314362,215,0 +170771314409,215,0 +170771314457,215,0 +170771314505,215,0 +170771314553,215,0 +170771314603,215,0 +170771314651,214,0 +170771314699,214,0 +170771314748,214,0 +170771314796,214,0 +170771314844,214,0 +170771314892,214,0 +170771314940,214,0 +170771314988,214,0 +170771315036,215,0 +170771315083,214,0 +170771315133,215,0 +170771315181,214,0 +170771315230,215,0 +170771315278,215,0 +170771315326,215,0 +170771315374,215,0 +170771315422,215,0 +170771315470,214,0 +170771315519,214,0 +170771315569,214,0 +170771315617,214,0 +170771315665,214,0 +170771315714,214,0 +170771315764,214,0 +170771315812,214,0 +170771315860,215,0 +170771315909,214,0 +170771315957,215,0 +170771316005,215,0 +170771316053,215,0 +170771316103,215,0 +170771316152,215,0 +170771316200,215,0 +170771316248,215,0 +170771316297,215,0 +170771316345,215,0 +170771316395,214,0 +170771316443,214,0 +170771316491,214,0 +170771316539,214,0 +170771316588,214,0 +170771316636,214,0 +170771316686,214,0 +170771316735,214,0 +170771316783,214,0 +170771316831,214,0 +170771316879,214,0 +170771316927,215,0 +170771316976,215,0 +170771317026,215,0 +170771317074,214,0 +170771317122,215,0 +170771317170,215,0 +170771317219,215,0 +170771317267,215,0 +170771317315,213,0 +170771317365,213,0 +170771317413,214,0 +170771317462,214,0 +170771317512,214,0 +170771317561,214,0 +170771317609,214,0 +170771317657,214,0 +170771317705,214,0 +170771317753,214,0 +170771317803,214,0 +170771317851,214,0 +170771317899,215,0 +170771317948,215,0 +170771317996,215,0 +170771318046,215,0 +170771318093,215,0 +170771318141,214,0 +170771318191,214,0 +170771318239,213,0 +170771318288,213,0 +170771318336,213,0 +170771318385,214,0 +170771318433,214,0 +170771318481,214,0 +170771318531,214,0 +170771318579,214,0 +170771318627,214,0 +170771318675,214,0 +170771318724,215,0 +170771318772,215,0 +170771318822,215,0 +170771318871,214,0 +170771318920,214,0 +170771318968,215,0 +170771319018,214,0 +170771319067,214,0 +170771319117,213,0 +170771319166,213,0 +170771319216,213,0 +170771319265,213,0 +170771319315,213,0 +170771319363,213,0 +170771319412,213,0 +170771319462,214,0 +170771319510,214,0 +170771319558,214,0 +170771319607,214,0 +170771319655,214,0 +170771319703,214,0 +170771319752,215,0 +170771319800,215,0 +170771319848,214,0 +170771319896,215,0 +170771319944,215,0 +170771319992,213,0 +170771320041,213,0 +170771320089,213,0 +170771320139,213,0 +170771320186,213,0 +170771320236,213,0 +170771320284,213,0 +170771320332,213,0 +170771320380,214,0 +170771320429,214,0 +170771320477,214,0 +170771320527,214,0 +170771320575,214,0 +170771320622,214,0 +170771320672,214,0 +170771320720,215,0 +170771320768,214,0 +170771320816,214,0 +170771320865,214,0 +170771320913,213,0 +170771320961,213,0 +170771321009,213,0 +170771321059,214,0 +170771321108,214,0 +170771321156,214,0 +170771321204,214,0 +170771321252,214,0 +170771321302,214,0 +170771321349,214,0 +170771321397,214,0 +170771321447,214,0 +170771321495,215,0 +170771321543,215,0 +170771321591,215,0 +170771321639,215,0 +170771321687,215,0 +170771321736,214,0 +170771321784,213,0 +170771321832,213,0 +170771321880,213,0 +170771321928,213,0 +170771321976,213,0 +170771322026,213,0 +170771322074,214,0 +170771322122,214,0 +170771322171,214,0 +170771322219,214,0 +170771322267,214,0 +170771322317,214,0 +170771322366,214,0 +170771322416,215,0 +170771322464,215,0 +170771322512,215,0 +170771322560,215,0 +170771322607,214,0 +170771322655,213,0 +170771322703,213,0 +170771322751,213,0 +170771322799,213,0 +170771322847,213,0 +170771322895,213,0 +170771322944,213,0 +170771322992,214,0 +170771323040,214,0 +170771323088,214,0 +170771323137,214,0 +170771323185,214,0 +170771323233,214,0 +170771323281,215,0 +170771323329,215,0 +170771323377,215,0 +170771323425,215,0 +170771323473,215,0 +170771323521,215,0 +170771323568,213,0 +170771323616,213,0 +170771323664,213,0 +170771323714,213,0 +170771323763,213,0 +170771323811,213,0 +170771323859,214,0 +170771323907,214,0 +170771323955,214,0 +170771324002,214,0 +170771324050,214,0 +170771324098,214,0 +170771324146,214,0 +170771324195,214,0 +170771324245,214,0 +170771324293,214,0 +170771324341,215,0 +170771324389,215,0 +170771324437,213,0 +170771324485,213,0 +170771324534,213,0 +170771324583,213,0 +170771324631,213,0 +170771324679,213,0 +170771324729,213,0 +170771324776,214,0 +170771324826,213,0 +170771324874,214,0 +170771324923,214,0 +170771324971,214,0 +170771325019,214,0 +170771325068,214,0 +170771325116,214,0 +170771325164,215,0 +170771325212,215,0 +170771325261,215,0 +170771325309,215,0 +170771325357,213,0 +170771325407,213,0 +170771325456,213,0 +170771325505,214,0 +170771325553,213,0 +170771325601,213,0 +170771325649,214,0 +170771325699,214,0 +170771325748,214,0 +170771325796,214,0 +170771325844,214,0 +170771325892,214,0 +170771325941,215,0 +170771325989,215,0 +170771326039,215,0 +170771326088,215,0 +170771326136,215,0 +170771326184,214,0 +170771326232,213,0 +170771326280,213,0 +170771326329,213,0 +170771326377,213,0 +170771326425,214,0 +170771326475,214,0 +170771326522,214,0 +170771326570,214,0 +170771326620,214,0 +170771326668,214,0 +170771326717,214,0 +170771326765,214,0 +170771326813,214,0 +170771326861,215,0 +170771326910,215,0 +170771326958,215,0 +170771327006,214,0 +170771327056,215,0 +170771327105,214,0 +170771327153,213,0 +170771327201,213,0 +170771327251,213,0 +170771327300,213,0 +170771327350,213,0 +170771327398,213,0 +170771327446,214,0 +170771327494,214,0 +170771327543,214,0 +170771327591,214,0 +170771327639,214,0 +170771327687,214,0 +170771327735,214,0 +170771327785,214,0 +170771327832,214,0 +170771327880,215,0 +170771327928,214,0 +170771327978,215,0 +170771328027,213,0 +170771328075,213,0 +170771328123,213,0 +170771328172,213,0 +170771328220,214,0 +170771328268,214,0 +170771328316,214,0 +170771328364,214,0 +170771328414,214,0 +170771328463,214,0 +170771328511,214,0 +170771328559,214,0 +170771328609,214,0 +170771328657,215,0 +170771328704,214,0 +170771328752,214,0 +170771328802,215,0 +170771328852,214,0 +170771328900,214,0 +170771328947,213,0 +170771328995,213,0 +170771329043,213,0 +170771329091,213,0 +170771329141,213,0 +170771329188,214,0 +170771329236,214,0 +170771329284,214,0 +170771329332,214,0 +170771329380,214,0 +170771329430,214,0 +170771329478,214,0 +170771329525,214,0 +170771329573,215,0 +170771329622,215,0 +170771329670,215,0 +170771329719,215,0 +170771329769,214,0 +170771329818,213,0 +170771329867,213,0 +170771329916,213,0 +170771329964,213,0 +170771330012,214,0 +170771330060,214,0 +170771330109,214,0 +170771330157,214,0 +170771330205,214,0 +170771330253,214,0 +170771330301,214,0 +170771330350,215,0 +170771330400,215,0 +170771330448,215,0 +170771330496,215,0 +170771330544,215,0 +170771330593,215,0 +170771330641,214,0 +170771330691,213,0 +170771330739,213,0 +170771330787,213,0 +170771330835,213,0 +170771330883,214,0 +170771330931,214,0 +170771330979,214,0 +170771331026,214,0 +170771331074,214,0 +170771331124,214,0 +170771331172,214,0 +170771331221,214,0 +170771331271,215,0 +170771331319,214,0 +170771331367,215,0 +170771331415,215,0 +170771331463,215,0 +170771331512,215,0 +170771331560,215,0 +170771331608,213,0 +170771331658,213,0 +170771331706,213,0 +170771331754,214,0 +170771331802,214,0 +170771331850,214,0 +170771331898,214,0 +170771331946,214,0 +170771331993,214,0 +170771332041,214,0 +170771332091,214,0 +170771332140,215,0 +170771332188,215,0 +170771332238,215,0 +170771332286,215,0 +170771332335,215,0 +170771332383,215,0 +170771332433,215,0 +170771332481,214,0 +170771332529,214,0 +170771332578,214,0 +170771332626,214,0 +170771332674,214,0 +170771332724,214,0 +170771332773,214,0 +170771332821,214,0 +170771332869,215,0 +170771332919,214,0 +170771332968,214,0 +170771333018,215,0 +170771333066,215,0 +170771333113,215,0 +170771333161,215,0 +170771333209,215,0 +170771333257,215,0 +170771333307,215,0 +170771333355,214,0 +170771333403,213,0 +170771333452,213,0 +170771333500,213,0 +170771333548,214,0 +170771333598,214,0 +170771333646,214,0 +170771333693,214,0 +170771333743,214,0 +170771333791,215,0 +170771333840,214,0 +170771333888,214,0 +170771333938,215,0 +170771333987,215,0 +170771334035,215,0 +170771334083,215,0 +170771334133,215,0 +170771334182,215,0 +170771334230,215,0 +170771334278,213,0 +170771334326,213,0 +170771334374,213,0 +170771334424,214,0 +170771334472,213,0 +170771334521,214,0 +170771334569,214,0 +170771334617,214,0 +170771334665,214,0 +170771334712,214,0 +170771334760,214,0 +170771334808,214,0 +170771334858,214,0 +170771334907,214,0 +170771334955,214,0 +170771335005,215,0 +170771335054,215,0 +170771335102,215,0 +170771335150,214,0 +170771335198,213,0 +170771335247,213,0 +170771335295,213,0 +170771335345,213,0 +170771335393,214,0 +170771335442,214,0 +170771335492,214,0 +170771335540,214,0 +170771335589,214,0 +170771335637,214,0 +170771335685,214,0 +170771335733,215,0 +170771335781,215,0 +170771335829,215,0 +170771335877,215,0 +170771335926,215,0 +170771335974,215,0 +170771336022,214,0 +170771336070,213,0 +170771336119,213,0 +170771336167,213,0 +170771336215,213,0 +170771336263,213,0 +170771336311,214,0 +170771336359,213,0 +170771336407,214,0 +170771336454,214,0 +170771336503,214,0 +170771336550,214,0 +170771336600,214,0 +170771336649,214,0 +170771336697,214,0 +170771336745,215,0 +170771336793,215,0 +170771336841,215,0 +170771336891,215,0 +170771336939,214,0 +170771336988,213,0 +170771337036,213,0 +170771337084,213,0 +170771337133,213,0 +170771337181,213,0 +170771337229,213,0 +170771337277,214,0 +170771337325,214,0 +170771337375,214,0 +170771337423,214,0 +170771337471,214,0 +170771337520,214,0 +170771337568,214,0 +170771337618,214,0 +170771337665,214,0 +170771337713,215,0 +170771337761,215,0 +170771337809,214,0 +170771337859,213,0 +170771337908,213,0 +170771337956,213,0 +170771338004,213,0 +170771338054,213,0 +170771338103,213,0 +170771338153,213,0 +170771338202,213,0 +170771338250,214,0 +170771338299,214,0 +170771338347,214,0 +170771338395,214,0 +170771338443,214,0 +170771338493,214,0 +170771338540,214,0 +170771338588,214,0 +170771338636,214,0 +170771338684,214,0 +170771338734,214,0 +170771338782,213,0 +170771338831,213,0 +170771338879,213,0 +170771338929,213,0 +170771338978,213,0 +170771339028,213,0 +170771339076,214,0 +170771339125,213,0 +170771339173,213,0 +170771339222,214,0 +170771339270,214,0 +170771339320,214,0 +170771339370,214,0 +170771339418,214,0 +170771339467,214,0 +170771339515,214,0 +170771339563,214,0 +170771339613,214,0 +170771339660,213,0 +170771339710,213,0 +170771339759,213,0 +170771339807,213,0 +170771339855,213,0 +170771339903,213,0 +170771339951,213,0 +170771339999,214,0 +170771340047,213,0 +170771340095,213,0 +170771340143,214,0 +170771340191,214,0 +170771340238,214,0 +170771340286,214,0 +170771340334,215,0 +170771340384,214,0 +170771340432,215,0 +170771340480,214,0 +170771340528,213,0 +170771340577,213,0 +170771340625,213,0 +170771340673,213,0 +170771340721,213,0 +170771340769,213,0 +170771340818,213,0 +170771340868,213,0 +170771340916,214,0 +170771340965,214,0 +170771341015,214,0 +170771341063,214,0 +170771341111,214,0 +170771341159,214,0 +170771341207,214,0 +170771341256,214,0 +170771341304,214,0 +170771341352,214,0 +170771341400,214,0 +170771341448,213,0 +170771341496,213,0 +170771341544,213,0 +170771341592,213,0 +170771341640,213,0 +170771341688,213,0 +170771341735,213,0 +170771341783,214,0 +170771341831,214,0 +170771341879,214,0 +170771341929,214,0 +170771341977,214,0 +170771342025,215,0 +170771342073,214,0 +170771342122,215,0 +170771342170,214,0 +170771342218,214,0 +170771342266,214,0 +170771342314,213,0 +170771342362,213,0 +170771342411,213,0 +170771342461,213,0 +170771342509,213,0 +170771342557,214,0 +170771342606,214,0 +170771342654,214,0 +170771342703,214,0 +170771342751,214,0 +170771342801,214,0 +170771342849,214,0 +170771342897,214,0 +170771342945,214,0 +170771342993,214,0 +170771343041,214,0 +170771343090,215,0 +170771343138,214,0 +170771343186,214,0 +170771343235,213,0 +170771343285,213,0 +170771343333,213,0 +170771343381,213,0 +170771343430,213,0 +170771343478,214,0 +170771343526,214,0 +170771343574,214,0 +170771343624,214,0 +170771343672,214,0 +170771343719,214,0 +170771343767,214,0 +170771343815,215,0 +170771343865,214,0 +170771343913,215,0 +170771343962,214,0 +170771344012,215,0 +170771344060,214,0 +170771344107,213,0 +170771344157,213,0 +170771344205,213,0 +170771344253,213,0 +170771344301,213,0 +170771344349,214,0 +170771344397,214,0 +170771344445,214,0 +170771344494,214,0 +170771344542,214,0 +170771344592,214,0 +170771344641,214,0 +170771344691,215,0 +170771344740,214,0 +170771344790,214,0 +170771344838,214,0 +170771344886,214,0 +170771344934,214,0 +170771344983,214,0 +170771345033,213,0 +170771345081,213,0 +170771345130,213,0 +170771345180,214,0 +170771345228,213,0 +170771345277,214,0 +170771345327,214,0 +170771345376,214,0 +170771345424,214,0 +170771345472,214,0 +170771345522,214,0 +170771345571,214,0 +170771345621,214,0 +170771345669,215,0 +170771345718,214,0 +170771345766,215,0 +170771345814,214,0 +170771345862,214,0 +170771345910,213,0 +170771345958,213,0 +170771346007,213,0 +170771346055,213,0 +170771346103,213,0 +170771346151,214,0 +170771346199,213,0 +170771346249,214,0 +170771346298,214,0 +170771346346,214,0 +170771346394,214,0 +170771346444,214,0 +170771346492,214,0 +170771346540,214,0 +170771346588,215,0 +170771346637,215,0 +170771346685,214,0 +170771346734,215,0 +170771346782,214,0 +170771346832,213,0 +170771346881,213,0 +170771346931,213,0 +170771346979,213,0 +170771347028,214,0 +170771347076,214,0 +170771347124,214,0 +170771347172,214,0 +170771347222,214,0 +170771347269,214,0 +170771347317,214,0 +170771347367,214,0 +170771347415,214,0 +170771347464,215,0 +170771347514,215,0 +170771347562,214,0 +170771347610,215,0 +170771347658,214,0 +170771347707,213,0 +170771347757,213,0 +170771347805,213,0 +170771347853,213,0 +170771347901,213,0 +170771347948,213,0 +170771347998,213,0 +170771348046,213,0 +170771348095,213,0 +170771348143,213,0 +170771348191,214,0 +170771348241,213,0 +170771348289,214,0 +170771348338,214,0 +170771348387,214,0 +170771348437,214,0 +170771348485,214,0 +170771348534,214,0 +170771348584,213,0 +170771348633,213,0 +170771348681,213,0 +170771348729,213,0 +170771348777,213,0 +170771348826,213,0 +170771348876,213,0 +170771348923,213,0 +170771348973,213,0 +170771349021,214,0 +170771349069,214,0 +170771349117,214,0 +170771349164,214,0 +170771349212,214,0 +170771349260,214,0 +170771349308,214,0 +170771349356,215,0 +170771349404,214,0 +170771349451,214,0 +170771349499,213,0 +170771349547,213,0 +170771349595,213,0 +170771349645,213,0 +170771349692,214,0 +170771349740,214,0 +170771349788,214,0 +170771349836,214,0 +170771349884,214,0 +170771349932,214,0 +170771349981,214,0 +170771350029,214,0 +170771350079,214,0 +170771350127,215,0 +170771350174,215,0 +170771350222,214,0 +170771350270,215,0 +170771350318,215,0 +170771350366,214,0 +170771350414,213,0 +170771350464,214,0 +170771350513,214,0 +170771350561,214,0 +170771350609,214,0 +170771350657,214,0 +170771350706,214,0 +170771350754,214,0 +170771350802,214,0 +170771350852,214,0 +170771350901,214,0 +170771350949,214,0 +170771350999,215,0 +170771351046,215,0 +170771351096,215,0 +170771351145,215,0 +170771351195,214,0 +170771351243,214,0 +170771351292,213,0 +170771351340,213,0 +170771351388,214,0 +170771351436,214,0 +170771351486,214,0 +170771351534,214,0 +170771351582,214,0 +170771351631,214,0 +170771351679,214,0 +170771351728,214,0 +170771351778,214,0 +170771351826,214,0 +170771351874,214,0 +170771351923,214,0 +170771351971,214,0 +170771352019,215,0 +170771352069,214,0 +170771352118,215,0 +170771352166,214,0 +170771352216,213,0 +170771352263,213,0 +170771352311,214,0 +170771352359,213,0 +170771352407,214,0 +170771352455,214,0 +170771352503,214,0 +170771352551,214,0 +170771352599,214,0 +170771352647,214,0 +170771352695,214,0 +170771352743,214,0 +170771352791,214,0 +170771352839,215,0 +170771352887,215,0 +170771352935,215,0 +170771352983,214,0 +170771353031,214,0 +170771353080,214,0 +170771353128,214,0 +170771353176,214,0 +170771353224,214,0 +170771353272,214,0 +170771353321,214,0 +170771353369,214,0 +170771353417,214,0 +170771353465,214,0 +170771353514,215,0 +170771353564,215,0 +170771353612,215,0 +170771353660,215,0 +170771353708,215,0 +170771353756,215,0 +170771353804,215,0 +170771353853,215,0 +170771353901,215,0 +170771353949,214,0 +170771353997,213,0 +170771354045,213,0 +170771354094,214,0 +170771354142,214,0 +170771354190,214,0 +170771354238,214,0 +170771354288,214,0 +170771354337,214,0 +170771354387,214,0 +170771354435,215,0 +170771354483,215,0 +170771354531,215,0 +170771354580,215,0 +170771354630,215,0 +170771354679,215,0 +170771354727,215,0 +170771354775,215,0 +170771354825,214,0 +170771354872,213,0 +170771354920,213,0 +170771354968,213,0 +170771355018,213,0 +170771355066,213,0 +170771355114,213,0 +170771355162,213,0 +170771355210,213,0 +170771355258,214,0 +170771355306,214,0 +170771355354,214,0 +170771355403,214,0 +170771355451,214,0 +170771355500,214,0 +170771355548,214,0 +170771355596,215,0 +170771355644,215,0 +170771355694,214,0 +170771355742,213,0 +170771355789,213,0 +170771355839,213,0 +170771355889,213,0 +170771355936,213,0 +170771355984,213,0 +170771356032,214,0 +170771356082,214,0 +170771356130,213,0 +170771356177,214,0 +170771356225,214,0 +170771356273,214,0 +170771356321,214,0 +170771356369,215,0 +170771356418,214,0 +170771356468,215,0 +170771356516,216,0 +170771356564,215,0 +170771356613,214,0 +170771356661,213,0 +170771356710,213,0 +170771356758,213,0 +170771356808,213,0 +170771356856,213,0 +170771356903,213,0 +170771356953,213,0 +170771357001,214,0 +170771357050,214,0 +170771357098,214,0 +170771357146,214,0 +170771357196,214,0 +170771357244,214,0 +170771357292,214,0 +170771357340,215,0 +170771357389,214,0 +170771357438,215,0 +170771357488,215,0 +170771357536,213,0 +170771357584,213,0 +170771357632,213,0 +170771357681,213,0 +170771357729,213,0 +170771357777,214,0 +170771357826,214,0 +170771357874,214,0 +170771357922,214,0 +170771357970,214,0 +170771358020,214,0 +170771358069,215,0 +170771358119,214,0 +170771358167,215,0 +170771358215,215,0 +170771358264,215,0 +170771358312,215,0 +170771358360,215,0 +170771358408,214,0 +170771358456,213,0 +170771358505,213,0 +170771358553,214,0 +170771358601,214,0 +170771358651,214,0 +170771358700,214,0 +170771358750,214,0 +170771358798,214,0 +170771358846,214,0 +170771358894,214,0 +170771358941,215,0 +170771358991,214,0 +170771359039,215,0 +170771359088,215,0 +170771359136,214,0 +170771359184,215,0 +170771359232,214,0 +170771359280,214,0 +170771359329,213,0 +170771359377,213,0 +170771359425,214,0 +170771359473,213,0 +170771359521,214,0 +170771359569,214,0 +170771359618,214,0 +170771359668,214,0 +170771359717,214,0 +170771359767,214,0 +170771359815,214,0 +170771359863,215,0 +170771359911,214,0 +170771359958,215,0 +170771360008,215,0 +170771360056,215,0 +170771360104,215,0 +170771360152,214,0 +170771360201,214,0 +170771360249,213,0 +170771360299,213,0 +170771360347,213,0 +170771360394,214,0 +170771360442,214,0 +170771360490,214,0 +170771360538,214,0 +170771360586,214,0 +170771360634,214,0 +170771360683,214,0 +170771360731,214,0 +170771360781,214,0 +170771360829,214,0 +170771360878,215,0 +170771360926,215,0 +170771360976,215,0 +170771361023,215,0 +170771361071,214,0 +170771361121,213,0 +170771361169,213,0 +170771361217,213,0 +170771361266,213,0 +170771361316,213,0 +170771361364,214,0 +170771361411,214,0 +170771361461,214,0 +170771361511,214,0 +170771361558,214,0 +170771361606,214,0 +170771361654,215,0 +170771361704,215,0 +170771361752,214,0 +170771361801,215,0 +170771361849,214,0 +170771361897,214,0 +170771361945,214,0 +170771361994,214,0 +170771362044,213,0 +170771362092,213,0 +170771362141,213,0 +170771362191,213,0 +170771362239,213,0 +170771362288,214,0 +170771362336,213,0 +170771362384,214,0 +170771362432,214,0 +170771362480,214,0 +170771362528,214,0 +170771362577,214,0 +170771362625,214,0 +170771362675,214,0 +170771362724,214,0 +170771362772,214,0 +170771362820,214,0 +170771362868,214,0 +170771362916,213,0 +170771362964,213,0 +170771363012,213,0 +170771363060,213,0 +170771363108,213,0 +170771363157,213,0 +170771363205,213,0 +170771363255,213,0 +170771363302,213,0 +170771363352,213,0 +170771363400,213,0 +170771363448,214,0 +170771363496,214,0 +170771363545,214,0 +170771363593,214,0 +170771363641,214,0 +170771363689,214,0 +170771363736,214,0 +170771363784,214,0 +170771363832,213,0 +170771363880,213,0 +170771363929,213,0 +170771363977,213,0 +170771364025,213,0 +170771364073,213,0 +170771364121,213,0 +170771364169,214,0 +170771364216,214,0 +170771364264,214,0 +170771364314,214,0 +170771364361,214,0 +170771364409,214,0 +170771364457,214,0 +170771364505,214,0 +170771364553,214,0 +170771364601,214,0 +170771364648,214,0 +170771364698,213,0 +170771364747,213,0 +170771364795,213,0 +170771364843,213,0 +170771364891,213,0 +170771364938,213,0 +170771364986,213,0 +170771365034,213,0 +170771365082,213,0 +170771365130,213,0 +170771365179,214,0 +170771365227,214,0 +170771365276,214,0 +170771365326,214,0 +170771365375,214,0 +170771365425,214,0 +170771365474,214,0 +170771365522,214,0 +170771365572,214,0 +170771365619,213,0 +170771365667,213,0 +170771365715,213,0 +170771365763,213,0 +170771365813,213,0 +170771365861,213,0 +170771365910,213,0 +170771365960,213,0 +170771366007,213,0 +170771366055,214,0 +170771366105,214,0 +170771366154,214,0 +170771366202,214,0 +170771366251,214,0 +170771366301,214,0 +170771366349,214,0 +170771366396,214,0 +170771366444,214,0 +170771366492,213,0 +170771366540,213,0 +170771366588,213,0 +170771366636,213,0 +170771366685,213,0 +170771366733,213,0 +170771366781,213,0 +170771366830,213,0 +170771366880,214,0 +170771366928,214,0 +170771366977,214,0 +170771367025,214,0 +170771367073,214,0 +170771367121,214,0 +170771367170,214,0 +170771367220,215,0 +170771367269,214,0 +170771367317,214,0 +170771367366,213,0 +170771367414,213,0 +170771367464,213,0 +170771367513,213,0 +170771367561,213,0 +170771367609,213,0 +170771367657,213,0 +170771367705,214,0 +170771367754,214,0 +170771367804,214,0 +170771367852,214,0 +170771367899,214,0 +170771367947,214,0 +170771367997,214,0 +170771368045,214,0 +170771368093,215,0 +170771368140,214,0 +170771368188,215,0 +170771368236,214,0 +170771368286,213,0 +170771368335,213,0 +170771368385,213,0 +170771368433,213,0 +170771368480,214,0 +170771368528,213,0 +170771368576,214,0 +170771368624,214,0 +170771368674,214,0 +170771368723,214,0 +170771368771,214,0 +170771368819,214,0 +170771368867,214,0 +170771368916,214,0 +170771368966,214,0 +170771369015,214,0 +170771369065,214,0 +170771369113,215,0 +170771369160,213,0 +170771369210,213,0 +170771369258,213,0 +170771369306,213,0 +170771369354,213,0 +170771369402,213,0 +170771369450,214,0 +170771369497,214,0 +170771369547,214,0 +170771369595,214,0 +170771369644,214,0 +170771369692,214,0 +170771369742,214,0 +170771369790,214,0 +170771369839,214,0 +170771369887,214,0 +170771369935,215,0 +170771369983,214,0 +170771370032,214,0 +170771370080,213,0 +170771370128,213,0 +170771370176,213,0 +170771370224,213,0 +170771370272,214,0 +170771370320,214,0 +170771370368,214,0 +170771370417,214,0 +170771370465,214,0 +170771370513,214,0 +170771370561,214,0 +170771370609,214,0 +170771370657,215,0 +170771370705,215,0 +170771370753,215,0 +170771370802,215,0 +170771370850,215,0 +170771370900,214,0 +170771370949,213,0 +170771370997,213,0 +170771371045,213,0 +170771371094,213,0 +170771371142,213,0 +170771371190,213,0 +170771371238,213,0 +170771371286,213,0 +170771371335,214,0 +170771371385,214,0 +170771371434,214,0 +170771371484,214,0 +170771371532,214,0 +170771371579,215,0 +170771371627,215,0 +170771371675,214,0 +170771371723,214,0 +170771371771,215,0 +170771371819,215,0 +170771371869,215,0 +170771371917,215,0 +170771371964,215,0 +170771372014,215,0 +170771372062,215,0 +170771372110,215,0 +170771372159,215,0 +170771372207,214,0 +170771372255,214,0 +170771372303,214,0 +170771372353,214,0 +170771372402,214,0 +170771372450,214,0 +170771372498,214,0 +170771372546,214,0 +170771372594,214,0 +170771372642,214,0 +170771372690,214,0 +170771372737,215,0 +170771372785,215,0 +170771372833,215,0 +170771372881,215,0 +170771372929,215,0 +170771372977,215,0 +170771373025,215,0 +170771373074,215,0 +170771373122,214,0 +170771373171,214,0 +170771373219,213,0 +170771373267,213,0 +170771373315,213,0 +170771373363,214,0 +170771373410,214,0 +170771373458,214,0 +170771373508,214,0 +170771373556,214,0 +170771373603,214,0 +170771373653,214,0 +170771373701,214,0 +170771373748,215,0 +170771373796,215,0 +170771373844,215,0 +170771373892,215,0 +170771373940,214,0 +170771373989,215,0 +170771374037,214,0 +170771374085,213,0 +170771374133,213,0 +170771374181,213,0 +170771374229,213,0 +170771374277,213,0 +170771374326,214,0 +170771374376,214,0 +170771374425,214,0 +170771374473,214,0 +170771374521,214,0 +170771374571,214,0 +170771374620,214,0 +170771374668,215,0 +170771374718,214,0 +170771374767,215,0 +170771374815,215,0 +170771374864,215,0 +170771374912,214,0 +170771374960,214,0 +170771375008,213,0 +170771375056,213,0 +170771375105,213,0 +170771375153,213,0 +170771375201,214,0 +170771375249,214,0 +170771375297,214,0 +170771375345,214,0 +170771375393,214,0 +170771375440,214,0 +170771375488,214,0 +170771375536,214,0 +170771375585,215,0 +170771375633,215,0 +170771375681,215,0 +170771375729,215,0 +170771375777,215,0 +170771375826,214,0 +170771375874,213,0 +170771375922,213,0 +170771375970,213,0 +170771376017,213,0 +170771376065,213,0 +170771376113,214,0 +170771376162,214,0 +170771376210,214,0 +170771376258,214,0 +170771376306,214,0 +170771376355,214,0 +170771376403,215,0 +170771376451,215,0 +170771376499,215,0 +170771376548,215,0 +170771376596,215,0 +170771376644,215,0 +170771376691,215,0 +170771376741,214,0 +170771376790,213,0 +170771376838,213,0 +170771376886,213,0 +170771376934,213,0 +170771376981,213,0 +170771377031,213,0 +170771377079,213,0 +170771377127,214,0 +170771377174,214,0 +170771377224,214,0 +170771377272,214,0 +170771377320,214,0 +170771377367,214,0 +170771377415,214,0 +170771377465,215,0 +170771377513,215,0 +170771377562,215,0 +170771377610,214,0 +170771377658,214,0 +170771377707,213,0 +170771377755,213,0 +170771377803,213,0 +170771377851,213,0 +170771377898,213,0 +170771377948,213,0 +170771377996,213,0 +170771378044,213,0 +170771378091,214,0 +170771378139,214,0 +170771378187,214,0 +170771378236,214,0 +170771378284,214,0 +170771378332,214,0 +170771378380,215,0 +170771378428,214,0 +170771378476,214,0 +170771378523,214,0 +170771378571,213,0 +170771378619,213,0 +170771378667,213,0 +170771378715,213,0 +170771378763,213,0 +170771378810,213,0 +170771378858,213,0 +170771378906,214,0 +170771378956,214,0 +170771379003,213,0 +170771379051,214,0 +170771379099,214,0 +170771379147,214,0 +170771379195,214,0 +170771379243,214,0 +170771379290,214,0 +170771379338,215,0 +170771379386,214,0 +170771379434,214,0 +170771379482,213,0 +170771379530,213,0 +170771379577,213,0 +170771379625,213,0 +170771379673,213,0 +170771379722,213,0 +170771379770,214,0 +170771379818,214,0 +170771379866,214,0 +170771379914,214,0 +170771379962,214,0 +170771380011,214,0 +170771380059,214,0 +170771380107,214,0 +170771380155,215,0 +170771380203,214,0 +170771380251,214,0 +170771380298,214,0 +170771380348,213,0 +170771380396,213,0 +170771380444,213,0 +170771380493,213,0 +170771380541,213,0 +170771380591,213,0 +170771380639,213,0 +170771380688,213,0 +170771380738,213,0 +170771380786,214,0 +170771380833,214,0 +170771380881,214,0 +170771380929,214,0 +170771380977,214,0 +170771381024,214,0 +170771381072,215,0 +170771381120,214,0 +170771381170,215,0 +170771381217,214,0 +170771381265,213,0 +170771381313,213,0 +170771381361,213,0 +170771381409,213,0 +170771381458,213,0 +170771381506,213,0 +170771381554,213,0 +170771381603,213,0 +170771381653,213,0 +170771381701,214,0 +170771381749,214,0 +170771381798,214,0 +170771381846,214,0 +170771381894,214,0 +170771381942,215,0 +170771381991,215,0 +170771382039,214,0 +170771382087,214,0 +170771382135,213,0 +170771382182,213,0 +170771382230,213,0 +170771382278,213,0 +170771382326,213,0 +170771382374,213,0 +170771382422,213,0 +170771382469,213,0 +170771382519,213,0 +170771382567,214,0 +170771382616,214,0 +170771382664,214,0 +170771382712,214,0 +170771382759,214,0 +170771382809,214,0 +170771382857,214,0 +170771382906,214,0 +170771382954,214,0 +170771383002,214,0 +170771383051,213,0 +170771383099,213,0 +170771383147,213,0 +170771383195,213,0 +170771383242,213,0 +170771383290,213,0 +170771383338,213,0 +170771383387,213,0 +170771383435,213,0 +170771383483,214,0 +170771383531,214,0 +170771383579,214,0 +170771383627,214,0 +170771383676,214,0 +170771383724,214,0 +170771383772,214,0 +170771383821,214,0 +170771383869,214,0 +170771383917,213,0 +170771383964,213,0 +170771384014,213,0 +170771384062,213,0 +170771384110,213,0 +170771384157,213,0 +170771384205,213,0 +170771384253,214,0 +170771384301,214,0 +170771384349,214,0 +170771384397,214,0 +170771384446,214,0 +170771384494,214,0 +170771384542,214,0 +170771384589,215,0 +170771384639,215,0 +170771384687,215,0 +170771384735,214,0 +170771384784,214,0 +170771384834,214,0 +170771384882,214,0 +170771384930,214,0 +170771384977,214,0 +170771385025,214,0 +170771385073,214,0 +170771385121,214,0 +170771385169,214,0 +170771385218,214,0 +170771385268,214,0 +170771385316,214,0 +170771385364,214,0 +170771385412,214,0 +170771385460,215,0 +170771385508,215,0 +170771385556,215,0 +170771385604,215,0 +170771385652,215,0 +170771385700,214,0 +170771385748,214,0 +170771385795,214,0 +170771385845,214,0 +170771385893,214,0 +170771385941,214,0 +170771385990,214,0 +170771386040,214,0 +170771386088,214,0 +170771386135,215,0 +170771386185,215,0 +170771386233,214,0 +170771386281,215,0 +170771386330,215,0 +170771386378,215,0 +170771386427,215,0 +170771386477,215,0 +170771386526,215,0 +170771386574,213,0 +170771386622,213,0 +170771386672,213,0 +170771386721,214,0 +170771386769,214,0 +170771386817,214,0 +170771386867,214,0 +170771386915,214,0 +170771386963,214,0 +170771387010,214,0 +170771387058,214,0 +170771387106,214,0 +170771387154,215,0 +170771387204,215,0 +170771387253,215,0 +170771387301,215,0 +170771387349,215,0 +170771387399,215,0 +170771387446,214,0 +170771387496,214,0 +170771387544,213,0 +170771387592,213,0 +170771387640,214,0 +170771387688,214,0 +170771387736,214,0 +170771387783,214,0 +170771387831,214,0 +170771387879,214,0 +170771387929,214,0 +170771387977,214,0 +170771388024,215,0 +170771388072,214,0 +170771388120,215,0 +170771388170,215,0 +170771388218,215,0 +170771388265,215,0 +170771388313,215,0 +170771388361,214,0 +170771388409,213,0 +170771388457,213,0 +170771388506,213,0 +170771388554,213,0 +170771388602,213,0 +170771388650,214,0 +170771388700,214,0 +170771388749,214,0 +170771388798,214,0 +170771388846,214,0 +170771388894,214,0 +170771388942,214,0 +170771388990,214,0 +170771389039,215,0 +170771389089,214,0 +170771389137,215,0 +170771389185,215,0 +170771389232,214,0 +170771389280,213,0 +170771389328,213,0 +170771389376,213,0 +170771389424,213,0 +170771389474,213,0 +170771389523,214,0 +170771389572,214,0 +170771389622,214,0 +170771389670,214,0 +170771389718,214,0 +170771389766,214,0 +170771389814,214,0 +170771389862,214,0 +170771389909,215,0 +170771389957,214,0 +170771390007,215,0 +170771390055,215,0 +170771390104,215,0 +170771390152,214,0 +170771390202,213,0 +170771390249,213,0 +170771390297,213,0 +170771390347,214,0 +170771390395,213,0 +170771390443,214,0 +170771390492,214,0 +170771390540,214,0 +170771390588,214,0 +170771390636,214,0 +170771390684,214,0 +170771390733,214,0 +170771390781,214,0 +170771390829,214,0 +170771390877,214,0 +170771390925,214,0 +170771390974,215,0 +170771391024,214,0 +170771391072,213,0 +170771391120,213,0 +170771391169,213,0 +170771391219,213,0 +170771391267,213,0 +170771391316,214,0 +170771391364,214,0 +170771391412,213,0 +170771391459,214,0 +170771391507,214,0 +170771391555,214,0 +170771391603,214,0 +170771391651,214,0 +170771391699,215,0 +170771391746,214,0 +170771391794,215,0 +170771391842,215,0 +170771391890,215,0 +170771391938,213,0 +170771391986,213,0 +170771392034,213,0 +170771392081,213,0 +170771392129,214,0 +170771392177,213,0 +170771392226,213,0 +170771392274,214,0 +170771392322,214,0 +170771392372,214,0 +170771392419,214,0 +170771392467,214,0 +170771392515,214,0 +170771392563,214,0 +170771392611,214,0 +170771392660,214,0 +170771392708,215,0 +170771392756,214,0 +170771392806,214,0 +170771392853,213,0 +170771392901,213,0 +170771392951,213,0 +170771392999,213,0 +170771393047,214,0 +170771393095,214,0 +170771393142,214,0 +170771393192,214,0 +170771393240,214,0 +170771393288,214,0 +170771393337,214,0 +170771393385,214,0 +170771393433,215,0 +170771393481,214,0 +170771393529,214,0 +170771393577,215,0 +170771393626,215,0 +170771393676,217,0 +170771393724,214,0 +170771393773,213,0 +170771393822,213,0 +170771393870,213,0 +170771393920,213,0 +170771393969,213,0 +170771394017,214,0 +170771394065,214,0 +170771394114,214,0 +170771394162,214,0 +170771394210,214,0 +170771394258,214,0 +170771394307,215,0 +170771394355,214,0 +170771394403,215,0 +170771394451,215,0 +170771394500,215,0 +170771394548,214,0 +170771394596,214,0 +170771394644,213,0 +170771394692,213,0 +170771394740,213,0 +170771394789,213,0 +170771394839,213,0 +170771394886,214,0 +170771394934,214,0 +170771394984,214,0 +170771395032,214,0 +170771395080,214,0 +170771395128,214,0 +170771395177,214,0 +170771395225,214,0 +170771395275,215,0 +170771395324,214,0 +170771395372,215,0 +170771395420,215,0 +170771395469,215,0 +170771395517,213,0 +170771395565,213,0 +170771395613,213,0 +170771395661,213,0 +170771395710,213,0 +170771395758,213,0 +170771395806,214,0 +170771395854,214,0 +170771395902,214,0 +170771395949,214,0 +170771395997,214,0 +170771396045,214,0 +170771396093,215,0 +170771396141,215,0 +170771396189,214,0 +170771396236,215,0 +170771396284,215,0 +170771396332,215,0 +170771396380,214,0 +170771396427,213,0 +170771396475,213,0 +170771396523,214,0 +170771396571,214,0 +170771396619,214,0 +170771396667,214,0 +170771396714,214,0 +170771396762,214,0 +170771396810,214,0 +170771396858,214,0 +170771396906,214,0 +170771396953,214,0 +170771397001,215,0 +170771397049,215,0 +170771397097,215,0 +170771397145,215,0 +170771397192,214,0 +170771397240,214,0 +170771397288,213,0 +170771397336,213,0 +170771397384,213,0 +170771397432,214,0 +170771397480,213,0 +170771397529,214,0 +170771397577,214,0 +170771397625,214,0 +170771397672,214,0 +170771397722,214,0 +170771397770,214,0 +170771397817,214,0 +170771397865,214,0 +170771397913,214,0 +170771397961,215,0 +170771398009,214,0 +170771398056,215,0 +170771398104,215,0 +170771398152,214,0 +170771398200,213,0 +170771398248,213,0 +170771398296,213,0 +170771398343,213,0 +170771398391,213,0 +170771398439,213,0 +170771398487,213,0 +170771398536,214,0 +170771398584,214,0 +170771398632,214,0 +170771398680,214,0 +170771398729,214,0 +170771398777,214,0 +170771398825,214,0 +170771398872,214,0 +170771398922,215,0 +170771398970,215,0 +170771399018,215,0 +170771399066,214,0 +170771399113,213,0 +170771399161,213,0 +170771399209,213,0 +170771399257,213,0 +170771399305,213,0 +170771399352,213,0 +170771399400,213,0 +170771399448,214,0 +170771399496,214,0 +170771399544,214,0 +170771399592,214,0 +170771399639,214,0 +170771399687,214,0 +170771399735,214,0 +170771399784,214,0 +170771399832,214,0 +170771399880,214,0 +170771399928,214,0 +170771399976,213,0 +170771400023,213,0 diff --git a/laser_value/0212-15.csv b/laser_value/0212-15.csv new file mode 100644 index 0000000..133141d --- /dev/null +++ b/laser_value/0212-15.csv @@ -0,0 +1,7450 @@ +timestamp,laser_value,event +170771400072,213,0 +170771400120,213,0 +170771400167,213,0 +170771400215,213,0 +170771400263,213,0 +170771400311,214,0 +170771400359,214,0 +170771400408,214,0 +170771400456,214,0 +170771400504,214,0 +170771400552,214,0 +170771400599,215,0 +170771400647,214,0 +170771400695,215,0 +170771400743,215,0 +170771400791,215,0 +170771400839,214,0 +170771400886,213,0 +170771400936,213,0 +170771400983,213,0 +170771401031,213,0 +170771401079,214,0 +170771401127,214,0 +170771401175,214,0 +170771401222,214,0 +170771401270,214,0 +170771401318,215,0 +170771401366,215,0 +170771401414,215,0 +170771401461,215,0 +170771401509,215,0 +170771401559,215,0 +170771401608,215,0 +170771401656,215,0 +170771401704,214,0 +170771401751,214,0 +170771401799,214,0 +170771401848,214,0 +170771401898,214,0 +170771401946,214,0 +170771401993,214,0 +170771402041,214,0 +170771402089,214,0 +170771402137,214,0 +170771402185,214,0 +170771402234,214,0 +170771402282,215,0 +170771402330,215,0 +170771402377,215,0 +170771402425,215,0 +170771402473,215,0 +170771402522,215,0 +170771402570,214,0 +170771402618,214,0 +170771402666,213,0 +170771402713,213,0 +170771402761,213,0 +170771402811,214,0 +170771402858,214,0 +170771402906,214,0 +170771402954,214,0 +170771403002,214,0 +170771403050,214,0 +170771403098,214,0 +170771403146,215,0 +170771403195,215,0 +170771403243,214,0 +170771403291,214,0 +170771403339,214,0 +170771403387,214,0 +170771403434,215,0 +170771403482,215,0 +170771403530,213,0 +170771403578,213,0 +170771403626,213,0 +170771403675,214,0 +170771403723,214,0 +170771403770,213,0 +170771403818,214,0 +170771403866,214,0 +170771403914,213,0 +170771403962,214,0 +170771404009,214,0 +170771404057,214,0 +170771404105,214,0 +170771404153,214,0 +170771404201,214,0 +170771404248,214,0 +170771404296,214,0 +170771404346,214,0 +170771404395,214,0 +170771404445,213,0 +170771404493,214,0 +170771404541,214,0 +170771404588,214,0 +170771404636,214,0 +170771404686,214,0 +170771404734,214,0 +170771404782,214,0 +170771404830,214,0 +170771404877,215,0 +170771404925,214,0 +170771404975,215,0 +170771405024,215,0 +170771405074,215,0 +170771405123,215,0 +170771405171,215,0 +170771405219,215,0 +170771405267,214,0 +170771405315,214,0 +170771405363,213,0 +170771405411,214,0 +170771405459,214,0 +170771405507,214,0 +170771405556,214,0 +170771405604,214,0 +170771405652,214,0 +170771405700,214,0 +170771405748,215,0 +170771405796,215,0 +170771405845,215,0 +170771405893,215,0 +170771405942,215,0 +170771405990,215,0 +170771406038,214,0 +170771406087,215,0 +170771406135,214,0 +170771406183,213,0 +170771406231,213,0 +170771406278,213,0 +170771406326,214,0 +170771406374,214,0 +170771406423,214,0 +170771406471,214,0 +170771406519,214,0 +170771406567,214,0 +170771406615,214,0 +170771406663,214,0 +170771406710,215,0 +170771406758,215,0 +170771406808,215,0 +170771406856,215,0 +170771406904,215,0 +170771406953,215,0 +170771407003,214,0 +170771407051,214,0 +170771407099,213,0 +170771407148,213,0 +170771407197,213,0 +170771407245,213,0 +170771407293,213,0 +170771407341,213,0 +170771407389,214,0 +170771407437,214,0 +170771407486,214,0 +170771407534,214,0 +170771407582,214,0 +170771407629,214,0 +170771407677,214,0 +170771407725,214,0 +170771407773,214,0 +170771407822,214,0 +170771407870,214,0 +170771407918,214,0 +170771407966,213,0 +170771408014,213,0 +170771408061,213,0 +170771408109,213,0 +170771408157,213,0 +170771408205,213,0 +170771408253,213,0 +170771408301,214,0 +170771408348,214,0 +170771408396,214,0 +170771408444,214,0 +170771408493,214,0 +170771408541,214,0 +170771408589,214,0 +170771408637,214,0 +170771408686,214,0 +170771408734,214,0 +170771408782,214,0 +170771408830,213,0 +170771408879,213,0 +170771408927,213,0 +170771408977,213,0 +170771409025,213,0 +170771409073,213,0 +170771409120,213,0 +170771409168,213,0 +170771409218,214,0 +170771409265,214,0 +170771409313,214,0 +170771409363,214,0 +170771409411,214,0 +170771409459,214,0 +170771409508,215,0 +170771409556,214,0 +170771409604,214,0 +170771409652,215,0 +170771409700,214,0 +170771409749,213,0 +170771409797,213,0 +170771409845,213,0 +170771409895,213,0 +170771409943,213,0 +170771409992,213,0 +170771410040,213,0 +170771410090,213,0 +170771410137,213,0 +170771410187,214,0 +170771410236,214,0 +170771410286,214,0 +170771410335,214,0 +170771410383,214,0 +170771410431,214,0 +170771410481,214,0 +170771410529,214,0 +170771410576,214,0 +170771410626,213,0 +170771410674,213,0 +170771410722,213,0 +170771410770,213,0 +170771410818,213,0 +170771410866,213,0 +170771410913,213,0 +170771410961,213,0 +170771411011,213,0 +170771411059,213,0 +170771411107,214,0 +170771411154,214,0 +170771411202,214,0 +170771411250,214,0 +170771411298,214,0 +170771411347,214,0 +170771411397,214,0 +170771411445,214,0 +170771411493,214,0 +170771411541,213,0 +170771411589,213,0 +170771411638,213,0 +170771411687,213,0 +170771411735,213,0 +170771411783,213,0 +170771411833,213,0 +170771411881,214,0 +170771411928,213,0 +170771411976,214,0 +170771412024,214,0 +170771412074,214,0 +170771412123,214,0 +170771412171,214,0 +170771412219,214,0 +170771412268,215,0 +170771412318,214,0 +170771412366,214,0 +170771412414,213,0 +170771412462,213,0 +170771412509,213,0 +170771412557,213,0 +170771412607,213,0 +170771412655,213,0 +170771412702,213,0 +170771412750,213,0 +170771412800,214,0 +170771412848,214,0 +170771412896,214,0 +170771412944,214,0 +170771412993,214,0 +170771413041,214,0 +170771413089,214,0 +170771413137,214,0 +170771413186,214,0 +170771413235,214,0 +170771413283,213,0 +170771413333,213,0 +170771413381,213,0 +170771413428,213,0 +170771413476,213,0 +170771413526,213,0 +170771413574,213,0 +170771413623,213,0 +170771413671,214,0 +170771413719,214,0 +170771413768,214,0 +170771413816,214,0 +170771413865,214,0 +170771413913,214,0 +170771413961,214,0 +170771414009,215,0 +170771414058,214,0 +170771414106,215,0 +170771414154,214,0 +170771414204,213,0 +170771414252,213,0 +170771414301,213,0 +170771414349,213,0 +170771414397,213,0 +170771414446,213,0 +170771414496,214,0 +170771414544,214,0 +170771414592,214,0 +170771414641,214,0 +170771414689,214,0 +170771414739,214,0 +170771414788,214,0 +170771414836,215,0 +170771414885,214,0 +170771414933,215,0 +170771414981,215,0 +170771415029,214,0 +170771415077,213,0 +170771415125,213,0 +170771415172,213,0 +170771415220,214,0 +170771415268,213,0 +170771415317,214,0 +170771415365,214,0 +170771415413,214,0 +170771415461,214,0 +170771415509,214,0 +170771415556,214,0 +170771415604,214,0 +170771415652,214,0 +170771415701,214,0 +170771415751,214,0 +170771415799,215,0 +170771415846,214,0 +170771415894,214,0 +170771415942,213,0 +170771415990,213,0 +170771416038,213,0 +170771416086,213,0 +170771416133,213,0 +170771416181,214,0 +170771416231,213,0 +170771416278,213,0 +170771416328,214,0 +170771416376,214,0 +170771416424,214,0 +170771416472,214,0 +170771416519,214,0 +170771416567,214,0 +170771416615,214,0 +170771416663,214,0 +170771416712,215,0 +170771416760,214,0 +170771416810,214,0 +170771416857,213,0 +170771416905,213,0 +170771416953,213,0 +170771417001,213,0 +170771417049,213,0 +170771417097,213,0 +170771417146,213,0 +170771417194,214,0 +170771417242,214,0 +170771417289,214,0 +170771417337,214,0 +170771417385,214,0 +170771417434,214,0 +170771417482,214,0 +170771417530,214,0 +170771417578,214,0 +170771417626,214,0 +170771417673,214,0 +170771417721,213,0 +170771417769,213,0 +170771417817,213,0 +170771417865,213,0 +170771417913,213,0 +170771417962,213,0 +170771418010,213,0 +170771418058,214,0 +170771418105,214,0 +170771418153,214,0 +170771418201,214,0 +170771418249,214,0 +170771418296,214,0 +170771418344,214,0 +170771418392,215,0 +170771418440,214,0 +170771418490,215,0 +170771418538,214,0 +170771418587,214,0 +170771418637,213,0 +170771418685,213,0 +170771418732,214,0 +170771418780,214,0 +170771418828,214,0 +170771418876,214,0 +170771418926,214,0 +170771418973,214,0 +170771419021,214,0 +170771419069,214,0 +170771419117,214,0 +170771419165,215,0 +170771419213,215,0 +170771419261,215,0 +170771419310,214,0 +170771419358,215,0 +170771419406,214,0 +170771419453,214,0 +170771419501,213,0 +170771419551,213,0 +170771419599,214,0 +170771419646,214,0 +170771419694,214,0 +170771419744,214,0 +170771419791,214,0 +170771419839,214,0 +170771419889,214,0 +170771419937,214,0 +170771419984,215,0 +170771420034,215,0 +170771420082,215,0 +170771420130,215,0 +170771420177,215,0 +170771420225,214,0 +170771420273,215,0 +170771420321,215,0 +170771420369,213,0 +170771420417,213,0 +170771420464,213,0 +170771420512,214,0 +170771420560,214,0 +170771420610,213,0 +170771420657,213,0 +170771420705,214,0 +170771420753,214,0 +170771420801,214,0 +170771420849,214,0 +170771420898,214,0 +170771420946,214,0 +170771420994,215,0 +170771421041,215,0 +170771421089,215,0 +170771421137,214,0 +170771421185,215,0 +170771421233,214,0 +170771421283,213,0 +170771421331,213,0 +170771421380,213,0 +170771421430,213,0 +170771421477,213,0 +170771421525,214,0 +170771421575,214,0 +170771421623,214,0 +170771421671,214,0 +170771421718,214,0 +170771421766,214,0 +170771421815,214,0 +170771421863,214,0 +170771421911,214,0 +170771421959,215,0 +170771422008,215,0 +170771422057,215,0 +170771422107,214,0 +170771422155,213,0 +170771422203,213,0 +170771422251,213,0 +170771422298,214,0 +170771422346,214,0 +170771422396,214,0 +170771422444,214,0 +170771422493,214,0 +170771422541,214,0 +170771422589,214,0 +170771422638,214,0 +170771422686,215,0 +170771422734,215,0 +170771422784,214,0 +170771422833,215,0 +170771422882,215,0 +170771422930,215,0 +170771422980,214,0 +170771423028,213,0 +170771423076,213,0 +170771423124,213,0 +170771423171,213,0 +170771423219,213,0 +170771423267,214,0 +170771423315,214,0 +170771423363,214,0 +170771423411,214,0 +170771423459,214,0 +170771423506,214,0 +170771423554,214,0 +170771423604,214,0 +170771423652,214,0 +170771423699,214,0 +170771423747,214,0 +170771423795,215,0 +170771423843,215,0 +170771423891,214,0 +170771423939,213,0 +170771423987,213,0 +170771424035,213,0 +170771424082,213,0 +170771424132,213,0 +170771424181,213,0 +170771424229,213,0 +170771424277,213,0 +170771424325,213,0 +170771424374,213,0 +170771424422,214,0 +170771424472,214,0 +170771424520,214,0 +170771424569,214,0 +170771424619,214,0 +170771424668,214,0 +170771424717,214,0 +170771424765,214,0 +170771424813,213,0 +170771424861,213,0 +170771424909,213,0 +170771424959,213,0 +170771425007,214,0 +170771425056,214,0 +170771425105,214,0 +170771425155,214,0 +170771425204,214,0 +170771425252,214,0 +170771425300,214,0 +170771425348,214,0 +170771425398,214,0 +170771425446,214,0 +170771425494,215,0 +170771425542,214,0 +170771425589,214,0 +170771425637,214,0 +170771425685,213,0 +170771425733,213,0 +170771425781,213,0 +170771425829,213,0 +170771425877,213,0 +170771425924,214,0 +170771425972,213,0 +170771426020,213,0 +170771426069,214,0 +170771426117,214,0 +170771426165,214,0 +170771426213,214,0 +170771426261,214,0 +170771426310,214,0 +170771426360,214,0 +170771426409,214,0 +170771426459,214,0 +170771426507,214,0 +170771426554,214,0 +170771426602,213,0 +170771426651,213,0 +170771426699,213,0 +170771426747,214,0 +170771426796,213,0 +170771426844,214,0 +170771426892,214,0 +170771426940,214,0 +170771426988,214,0 +170771427036,214,0 +170771427085,214,0 +170771427135,214,0 +170771427182,214,0 +170771427230,215,0 +170771427278,214,0 +170771427326,214,0 +170771427374,215,0 +170771427422,215,0 +170771427470,214,0 +170771427518,213,0 +170771427567,213,0 +170771427617,213,0 +170771427665,213,0 +170771427714,213,0 +170771427764,214,0 +170771427813,214,0 +170771427861,214,0 +170771427909,214,0 +170771427957,214,0 +170771428005,214,0 +170771428053,214,0 +170771428101,215,0 +170771428150,215,0 +170771428198,215,0 +170771428247,215,0 +170771428295,215,0 +170771428345,214,0 +170771428393,213,0 +170771428441,213,0 +170771428489,214,0 +170771428538,214,0 +170771428586,214,0 +170771428634,214,0 +170771428682,214,0 +170771428730,215,0 +170771428779,214,0 +170771428827,215,0 +170771428877,215,0 +170771428925,215,0 +170771428973,215,0 +170771429022,215,0 +170771429072,215,0 +170771429121,215,0 +170771429169,214,0 +170771429217,214,0 +170771429265,213,0 +170771429313,213,0 +170771429362,214,0 +170771429410,214,0 +170771429460,214,0 +170771429508,214,0 +170771429557,214,0 +170771429605,214,0 +170771429653,214,0 +170771429701,215,0 +170771429750,215,0 +170771429800,215,0 +170771429848,214,0 +170771429896,215,0 +170771429945,215,0 +170771429993,215,0 +170771430042,215,0 +170771430090,214,0 +170771430138,213,0 +170771430186,213,0 +170771430234,213,0 +170771430284,213,0 +170771430333,214,0 +170771430381,214,0 +170771430429,214,0 +170771430477,214,0 +170771430524,214,0 +170771430572,214,0 +170771430620,214,0 +170771430668,214,0 +170771430716,214,0 +170771430764,214,0 +170771430812,214,0 +170771430862,214,0 +170771430911,214,0 +170771430959,214,0 +170771431007,214,0 +170771431055,213,0 +170771431104,213,0 +170771431154,213,0 +170771431202,213,0 +170771431249,213,0 +170771431299,213,0 +170771431347,213,0 +170771431395,213,0 +170771431442,213,0 +170771431490,213,0 +170771431540,214,0 +170771431588,214,0 +170771431636,214,0 +170771431685,214,0 +170771431733,214,0 +170771431781,214,0 +170771431829,214,0 +170771431878,214,0 +170771431928,213,0 +170771431976,213,0 +170771432025,213,0 +170771432075,213,0 +170771432123,213,0 +170771432172,213,0 +170771432222,213,0 +170771432270,213,0 +170771432318,214,0 +170771432366,214,0 +170771432413,214,0 +170771432463,214,0 +170771432511,214,0 +170771432559,214,0 +170771432607,214,0 +170771432654,214,0 +170771432704,214,0 +170771432752,214,0 +170771432800,213,0 +170771432849,213,0 +170771432897,213,0 +170771432945,213,0 +170771432995,213,0 +170771433042,213,0 +170771433090,213,0 +170771433138,213,0 +170771433186,214,0 +170771433234,214,0 +170771433282,214,0 +170771433330,214,0 +170771433379,214,0 +170771433427,214,0 +170771433475,214,0 +170771433523,214,0 +170771433570,214,0 +170771433618,214,0 +170771433666,213,0 +170771433714,213,0 +170771433762,213,0 +170771433810,213,0 +170771433857,213,0 +170771433905,213,0 +170771433953,213,0 +170771434001,213,0 +170771434049,213,0 +170771434097,213,0 +170771434145,214,0 +170771434194,214,0 +170771434242,214,0 +170771434290,214,0 +170771434338,214,0 +170771434387,214,0 +170771434435,214,0 +170771434483,214,0 +170771434530,214,0 +170771434578,213,0 +170771434626,213,0 +170771434675,213,0 +170771434723,213,0 +170771434771,213,0 +170771434819,213,0 +170771434867,213,0 +170771434915,213,0 +170771434964,213,0 +170771435012,213,0 +170771435060,213,0 +170771435108,214,0 +170771435156,213,0 +170771435204,214,0 +170771435252,214,0 +170771435300,213,0 +170771435347,213,0 +170771435397,214,0 +170771435447,213,0 +170771435494,213,0 +170771435544,213,0 +170771435593,213,0 +170771435641,213,0 +170771435691,213,0 +170771435739,213,0 +170771435788,213,0 +170771435836,213,0 +170771435884,213,0 +170771435934,213,0 +170771435982,214,0 +170771436030,214,0 +170771436079,214,0 +170771436127,214,0 +170771436177,214,0 +170771436226,214,0 +170771436274,214,0 +170771436322,214,0 +170771436370,213,0 +170771436419,213,0 +170771436467,213,0 +170771436515,213,0 +170771436563,213,0 +170771436611,214,0 +170771436659,214,0 +170771436707,214,0 +170771436756,214,0 +170771436804,214,0 +170771436852,214,0 +170771436900,214,0 +170771436948,214,0 +170771436998,214,0 +170771437046,214,0 +170771437094,215,0 +170771437142,215,0 +170771437191,214,0 +170771437239,213,0 +170771437289,213,0 +170771437336,213,0 +170771437386,213,0 +170771437434,214,0 +170771437483,213,0 +170771437533,214,0 +170771437580,214,0 +170771437630,214,0 +170771437680,214,0 +170771437729,214,0 +170771437777,214,0 +170771437825,214,0 +170771437873,214,0 +170771437921,214,0 +170771437970,214,0 +170771438018,214,0 +170771438066,215,0 +170771438116,213,0 +170771438164,213,0 +170771438212,213,0 +170771438261,213,0 +170771438311,213,0 +170771438359,214,0 +170771438408,214,0 +170771438456,214,0 +170771438506,214,0 +170771438555,214,0 +170771438605,214,0 +170771438653,214,0 +170771438701,215,0 +170771438749,215,0 +170771438797,215,0 +170771438844,215,0 +170771438894,214,0 +170771438942,215,0 +170771438991,214,0 +170771439039,213,0 +170771439089,214,0 +170771439137,214,0 +170771439185,214,0 +170771439234,214,0 +170771439282,214,0 +170771439330,214,0 +170771439380,215,0 +170771439427,215,0 +170771439475,215,0 +170771439523,215,0 +170771439573,215,0 +170771439621,215,0 +170771439669,215,0 +170771439717,215,0 +170771439765,215,0 +170771439813,214,0 +170771439860,214,0 +170771439908,214,0 +170771439956,214,0 +170771440006,214,0 +170771440054,214,0 +170771440101,214,0 +170771440151,214,0 +170771440199,214,0 +170771440247,214,0 +170771440295,214,0 +170771440343,215,0 +170771440391,215,0 +170771440438,215,0 +170771440486,215,0 +170771440536,215,0 +170771440584,215,0 +170771440633,215,0 +170771440683,215,0 +170771440731,214,0 +170771440779,214,0 +170771440828,214,0 +170771440876,214,0 +170771440925,214,0 +170771440973,214,0 +170771441021,214,0 +170771441069,214,0 +170771441119,214,0 +170771441168,214,0 +170771441216,215,0 +170771441266,215,0 +170771441315,215,0 +170771441363,215,0 +170771441411,215,0 +170771441459,215,0 +170771441507,214,0 +170771441556,215,0 +170771441606,214,0 +170771441654,213,0 +170771441703,214,0 +170771441753,214,0 +170771441801,213,0 +170771441848,214,0 +170771441898,214,0 +170771441946,214,0 +170771441994,214,0 +170771442042,214,0 +170771442091,214,0 +170771442139,215,0 +170771442187,215,0 +170771442235,215,0 +170771442283,215,0 +170771442332,215,0 +170771442380,215,0 +170771442428,215,0 +170771442476,215,0 +170771442524,214,0 +170771442572,213,0 +170771442620,213,0 +170771442668,214,0 +170771442716,214,0 +170771442764,214,0 +170771442812,214,0 +170771442861,214,0 +170771442911,214,0 +170771442958,214,0 +170771443008,215,0 +170771443057,214,0 +170771443105,214,0 +170771443153,215,0 +170771443201,215,0 +170771443249,215,0 +170771443299,215,0 +170771443346,214,0 +170771443396,214,0 +170771443444,213,0 +170771443492,213,0 +170771443541,213,0 +170771443591,213,0 +170771443640,213,0 +170771443690,214,0 +170771443738,214,0 +170771443787,214,0 +170771443835,214,0 +170771443883,214,0 +170771443931,214,0 +170771443979,214,0 +170771444027,214,0 +170771444074,215,0 +170771444122,214,0 +170771444170,215,0 +170771444220,214,0 +170771444268,214,0 +170771444317,213,0 +170771444365,213,0 +170771444413,213,0 +170771444461,213,0 +170771444509,213,0 +170771444557,213,0 +170771444606,213,0 +170771444654,213,0 +170771444702,214,0 +170771444752,214,0 +170771444800,214,0 +170771444849,214,0 +170771444897,214,0 +170771444945,214,0 +170771444994,214,0 +170771445042,214,0 +170771445090,214,0 +170771445138,214,0 +170771445186,213,0 +170771445236,213,0 +170771445284,213,0 +170771445331,213,0 +170771445379,213,0 +170771445427,213,0 +170771445475,214,0 +170771445523,214,0 +170771445572,214,0 +170771445620,214,0 +170771445669,214,0 +170771445717,214,0 +170771445765,214,0 +170771445815,214,0 +170771445862,215,0 +170771445910,215,0 +170771445960,215,0 +170771446009,214,0 +170771446057,213,0 +170771446105,213,0 +170771446153,213,0 +170771446202,213,0 +170771446250,213,0 +170771446300,213,0 +170771446348,213,0 +170771446397,214,0 +170771446445,214,0 +170771446493,214,0 +170771446541,214,0 +170771446588,214,0 +170771446636,214,0 +170771446684,214,0 +170771446732,214,0 +170771446780,214,0 +170771446827,214,0 +170771446875,215,0 +170771446923,213,0 +170771446971,213,0 +170771447019,213,0 +170771447068,213,0 +170771447116,213,0 +170771447164,213,0 +170771447213,213,0 +170771447261,213,0 +170771447309,213,0 +170771447357,214,0 +170771447405,214,0 +170771447455,214,0 +170771447504,214,0 +170771447552,215,0 +170771447600,215,0 +170771447648,215,0 +170771447696,214,0 +170771447744,214,0 +170771447791,213,0 +170771447841,213,0 +170771447890,213,0 +170771447938,213,0 +170771447986,213,0 +170771448034,213,0 +170771448084,213,0 +170771448132,213,0 +170771448181,213,0 +170771448229,214,0 +170771448277,214,0 +170771448325,214,0 +170771448374,214,0 +170771448422,214,0 +170771448471,214,0 +170771448519,214,0 +170771448567,215,0 +170771448615,214,0 +170771448663,213,0 +170771448711,213,0 +170771448759,213,0 +170771448807,213,0 +170771448855,213,0 +170771448904,213,0 +170771448952,213,0 +170771449000,214,0 +170771449050,213,0 +170771449098,213,0 +170771449147,214,0 +170771449195,214,0 +170771449243,214,0 +170771449291,214,0 +170771449339,214,0 +170771449387,214,0 +170771449435,214,0 +170771449483,214,0 +170771449530,213,0 +170771449578,213,0 +170771449626,213,0 +170771449674,213,0 +170771449722,213,0 +170771449770,213,0 +170771449818,213,0 +170771449866,213,0 +170771449914,213,0 +170771449963,213,0 +170771450011,214,0 +170771450061,214,0 +170771450109,214,0 +170771450157,214,0 +170771450205,214,0 +170771450252,214,0 +170771450300,214,0 +170771450348,214,0 +170771450396,213,0 +170771450444,213,0 +170771450493,213,0 +170771450541,213,0 +170771450589,213,0 +170771450637,213,0 +170771450685,213,0 +170771450733,213,0 +170771450783,213,0 +170771450832,213,0 +170771450880,214,0 +170771450928,214,0 +170771450976,214,0 +170771451025,214,0 +170771451073,214,0 +170771451123,214,0 +170771451172,214,0 +170771451222,213,0 +170771451270,213,0 +170771451318,213,0 +170771451366,213,0 +170771451415,213,0 +170771451465,213,0 +170771451512,214,0 +170771451562,213,0 +170771451610,213,0 +170771451659,214,0 +170771451707,214,0 +170771451757,214,0 +170771451805,214,0 +170771451854,214,0 +170771451904,214,0 +170771451952,215,0 +170771452001,214,0 +170771452049,214,0 +170771452099,213,0 +170771452148,213,0 +170771452198,213,0 +170771452245,213,0 +170771452295,214,0 +170771452343,214,0 +170771452392,214,0 +170771452442,214,0 +170771452490,214,0 +170771452538,214,0 +170771452585,214,0 +170771452635,214,0 +170771452683,214,0 +170771452731,215,0 +170771452778,215,0 +170771452826,214,0 +170771452876,214,0 +170771452923,214,0 +170771452973,213,0 +170771453021,213,0 +170771453069,213,0 +170771453117,214,0 +170771453166,214,0 +170771453214,214,0 +170771453263,214,0 +170771453311,214,0 +170771453359,214,0 +170771453407,214,0 +170771453455,214,0 +170771453503,214,0 +170771453551,214,0 +170771453600,214,0 +170771453648,215,0 +170771453697,214,0 +170771453745,215,0 +170771453795,214,0 +170771453843,213,0 +170771453892,213,0 +170771453942,213,0 +170771453991,213,0 +170771454041,214,0 +170771454088,214,0 +170771454136,214,0 +170771454184,214,0 +170771454232,214,0 +170771454280,214,0 +170771454330,214,0 +170771454379,214,0 +170771454429,215,0 +170771454477,215,0 +170771454525,215,0 +170771454573,215,0 +170771454620,214,0 +170771454670,214,0 +170771454719,213,0 +170771454767,213,0 +170771454815,213,0 +170771454863,214,0 +170771454911,214,0 +170771454961,214,0 +170771455010,214,0 +170771455058,214,0 +170771455106,214,0 +170771455156,214,0 +170771455205,214,0 +170771455255,215,0 +170771455302,215,0 +170771455350,215,0 +170771455400,215,0 +170771455448,215,0 +170771455496,214,0 +170771455545,214,0 +170771455593,214,0 +170771455641,214,0 +170771455690,214,0 +170771455738,214,0 +170771455786,214,0 +170771455836,214,0 +170771455885,214,0 +170771455933,214,0 +170771455981,214,0 +170771456029,214,0 +170771456078,215,0 +170771456126,215,0 +170771456174,215,0 +170771456222,214,0 +170771456270,215,0 +170771456319,214,0 +170771456367,214,0 +170771456417,214,0 +170771456465,213,0 +170771456513,214,0 +170771456561,213,0 +170771456610,214,0 +170771456658,214,0 +170771456706,214,0 +170771456754,214,0 +170771456804,214,0 +170771456853,214,0 +170771456901,214,0 +170771456949,214,0 +170771456997,215,0 +170771457046,215,0 +170771457094,214,0 +170771457142,215,0 +170771457190,215,0 +170771457238,214,0 +170771457286,214,0 +170771457336,213,0 +170771457383,213,0 +170771457431,213,0 +170771457479,213,0 +170771457527,214,0 +170771457575,214,0 +170771457623,214,0 +170771457671,214,0 +170771457719,214,0 +170771457768,214,0 +170771457816,214,0 +170771457866,214,0 +170771457914,215,0 +170771457963,214,0 +170771458013,215,0 +170771458062,215,0 +170771458112,214,0 +170771458159,213,0 +170771458209,213,0 +170771458257,213,0 +170771458305,213,0 +170771458353,213,0 +170771458401,213,0 +170771458449,213,0 +170771458497,213,0 +170771458545,213,0 +170771458594,214,0 +170771458644,214,0 +170771458692,214,0 +170771458740,214,0 +170771458788,214,0 +170771458835,214,0 +170771458883,214,0 +170771458931,214,0 +170771458981,214,0 +170771459029,213,0 +170771459078,213,0 +170771459126,213,0 +170771459175,213,0 +170771459225,213,0 +170771459273,213,0 +170771459321,213,0 +170771459369,213,0 +170771459418,213,0 +170771459466,214,0 +170771459514,214,0 +170771459562,214,0 +170771459611,214,0 +170771459659,214,0 +170771459707,214,0 +170771459755,214,0 +170771459803,214,0 +170771459851,214,0 +170771459900,213,0 +170771459948,213,0 +170771459996,213,0 +170771460044,213,0 +170771460092,213,0 +170771460140,214,0 +170771460187,214,0 +170771460235,214,0 +170771460283,214,0 +170771460331,214,0 +170771460379,214,0 +170771460427,214,0 +170771460474,215,0 +170771460522,215,0 +170771460572,214,0 +170771460620,214,0 +170771460669,214,0 +170771460717,214,0 +170771460765,213,0 +170771460815,213,0 +170771460864,213,0 +170771460912,213,0 +170771460960,214,0 +170771461007,214,0 +170771461055,214,0 +170771461103,214,0 +170771461151,214,0 +170771461199,214,0 +170771461248,214,0 +170771461296,214,0 +170771461344,214,0 +170771461392,215,0 +170771461439,215,0 +170771461487,215,0 +170771461535,214,0 +170771461583,215,0 +170771461631,213,0 +170771461679,213,0 +170771461727,213,0 +170771461774,213,0 +170771461822,213,0 +170771461872,213,0 +170771461919,214,0 +170771461967,214,0 +170771462015,214,0 +170771462063,214,0 +170771462111,214,0 +170771462159,214,0 +170771462206,214,0 +170771462254,214,0 +170771462302,215,0 +170771462350,215,0 +170771462398,214,0 +170771462446,214,0 +170771462495,213,0 +170771462543,213,0 +170771462591,213,0 +170771462639,213,0 +170771462686,213,0 +170771462734,214,0 +170771462782,214,0 +170771462830,214,0 +170771462878,214,0 +170771462927,214,0 +170771462975,214,0 +170771463023,214,0 +170771463071,215,0 +170771463119,215,0 +170771463166,215,0 +170771463216,215,0 +170771463264,215,0 +170771463313,214,0 +170771463361,213,0 +170771463409,213,0 +170771463456,213,0 +170771463504,213,0 +170771463552,213,0 +170771463600,213,0 +170771463648,213,0 +170771463696,214,0 +170771463743,214,0 +170771463791,214,0 +170771463839,214,0 +170771463887,214,0 +170771463935,215,0 +170771463984,214,0 +170771464032,214,0 +170771464080,215,0 +170771464128,214,0 +170771464176,214,0 +170771464223,213,0 +170771464273,213,0 +170771464321,213,0 +170771464368,213,0 +170771464416,213,0 +170771464464,213,0 +170771464512,213,0 +170771464560,214,0 +170771464609,213,0 +170771464659,213,0 +170771464707,214,0 +170771464754,214,0 +170771464802,214,0 +170771464850,214,0 +170771464898,215,0 +170771464946,214,0 +170771464994,214,0 +170771465042,215,0 +170771465091,213,0 +170771465140,213,0 +170771465188,213,0 +170771465236,213,0 +170771465284,213,0 +170771465332,213,0 +170771465380,213,0 +170771465428,213,0 +170771465476,214,0 +170771465524,214,0 +170771465571,214,0 +170771465619,214,0 +170771465667,214,0 +170771465715,214,0 +170771465764,214,0 +170771465812,214,0 +170771465860,214,0 +170771465908,214,0 +170771465957,213,0 +170771466005,213,0 +170771466053,213,0 +170771466101,213,0 +170771466149,213,0 +170771466196,213,0 +170771466244,213,0 +170771466292,214,0 +170771466340,214,0 +170771466388,214,0 +170771466436,214,0 +170771466484,214,0 +170771466533,214,0 +170771466583,214,0 +170771466631,215,0 +170771466679,215,0 +170771466726,214,0 +170771466774,214,0 +170771466822,213,0 +170771466870,213,0 +170771466918,213,0 +170771466967,213,0 +170771467015,213,0 +170771467063,214,0 +170771467112,214,0 +170771467162,214,0 +170771467209,214,0 +170771467257,214,0 +170771467305,214,0 +170771467353,214,0 +170771467401,215,0 +170771467449,214,0 +170771467497,214,0 +170771467545,215,0 +170771467592,215,0 +170771467640,214,0 +170771467690,214,0 +170771467738,213,0 +170771467785,213,0 +170771467833,214,0 +170771467881,213,0 +170771467929,214,0 +170771467977,214,0 +170771468025,214,0 +170771468072,214,0 +170771468120,214,0 +170771468168,214,0 +170771468216,215,0 +170771468264,215,0 +170771468312,215,0 +170771468359,215,0 +170771468407,215,0 +170771468457,215,0 +170771468506,214,0 +170771468554,214,0 +170771468602,214,0 +170771468652,214,0 +170771468700,214,0 +170771468749,214,0 +170771468797,214,0 +170771468847,214,0 +170771468894,215,0 +170771468942,214,0 +170771468990,215,0 +170771469038,215,0 +170771469088,215,0 +170771469136,214,0 +170771469183,215,0 +170771469233,215,0 +170771469281,215,0 +170771469329,214,0 +170771469377,215,0 +170771469426,214,0 +170771469474,213,0 +170771469522,213,0 +170771469572,213,0 +170771469619,213,0 +170771469667,214,0 +170771469715,214,0 +170771469763,214,0 +170771469811,214,0 +170771469859,214,0 +170771469909,214,0 +170771469956,214,0 +170771470004,215,0 +170771470054,214,0 +170771470103,215,0 +170771470151,215,0 +170771470199,214,0 +170771470247,214,0 +170771470295,214,0 +170771470343,213,0 +170771470392,213,0 +170771470440,214,0 +170771470490,214,0 +170771470539,214,0 +170771470589,214,0 +170771470637,214,0 +170771470684,214,0 +170771470734,214,0 +170771470782,214,0 +170771470830,214,0 +170771470878,215,0 +170771470927,214,0 +170771470975,215,0 +170771471023,215,0 +170771471071,214,0 +170771471119,214,0 +170771471166,213,0 +170771471216,213,0 +170771471264,213,0 +170771471314,214,0 +170771471363,214,0 +170771471411,214,0 +170771471461,214,0 +170771471508,214,0 +170771471556,214,0 +170771471606,214,0 +170771471654,214,0 +170771471702,215,0 +170771471750,215,0 +170771471799,215,0 +170771471849,215,0 +170771471897,215,0 +170771471945,215,0 +170771471992,214,0 +170771472042,213,0 +170771472090,213,0 +170771472138,213,0 +170771472186,213,0 +170771472234,213,0 +170771472283,213,0 +170771472331,214,0 +170771472379,214,0 +170771472428,214,0 +170771472478,214,0 +170771472528,214,0 +170771472576,214,0 +170771472625,214,0 +170771472674,214,0 +170771472722,215,0 +170771472772,214,0 +170771472820,215,0 +170771472868,215,0 +170771472917,213,0 +170771472967,213,0 +170771473015,213,0 +170771473063,213,0 +170771473110,213,0 +170771473158,213,0 +170771473206,214,0 +170771473254,214,0 +170771473302,214,0 +170771473351,214,0 +170771473399,214,0 +170771473446,214,0 +170771473494,214,0 +170771473542,214,0 +170771473590,215,0 +170771473638,214,0 +170771473686,215,0 +170771473733,214,0 +170771473783,213,0 +170771473831,213,0 +170771473878,213,0 +170771473928,213,0 +170771473976,213,0 +170771474023,213,0 +170771474073,214,0 +170771474122,214,0 +170771474170,214,0 +170771474218,214,0 +170771474266,214,0 +170771474314,214,0 +170771474363,214,0 +170771474413,215,0 +170771474462,215,0 +170771474510,215,0 +170771474558,214,0 +170771474606,214,0 +170771474656,213,0 +170771474703,213,0 +170771474753,213,0 +170771474802,213,0 +170771474852,213,0 +170771474900,213,0 +170771474948,214,0 +170771474997,214,0 +170771475045,214,0 +170771475095,214,0 +170771475142,214,0 +170771475192,214,0 +170771475241,214,0 +170771475289,214,0 +170771475337,214,0 +170771475387,215,0 +170771475435,215,0 +170771475483,213,0 +170771475531,213,0 +170771475581,213,0 +170771475630,213,0 +170771475678,213,0 +170771475726,213,0 +170771475775,214,0 +170771475825,214,0 +170771475874,214,0 +170771475922,214,0 +170771475970,214,0 +170771476018,214,0 +170771476066,214,0 +170771476115,215,0 +170771476165,215,0 +170771476214,214,0 +170771476262,214,0 +170771476310,214,0 +170771476358,213,0 +170771476406,213,0 +170771476454,213,0 +170771476503,213,0 +170771476551,213,0 +170771476601,213,0 +170771476650,213,0 +170771476700,214,0 +170771476749,214,0 +170771476799,214,0 +170771476848,214,0 +170771476898,214,0 +170771476947,214,0 +170771476997,215,0 +170771477044,214,0 +170771477094,214,0 +170771477142,215,0 +170771477190,214,0 +170771477238,213,0 +170771477287,213,0 +170771477337,213,0 +170771477385,213,0 +170771477433,213,0 +170771477482,214,0 +170771477530,214,0 +170771477579,214,0 +170771477627,214,0 +170771477675,214,0 +170771477723,214,0 +170771477771,214,0 +170771477821,214,0 +170771477868,214,0 +170771477916,214,0 +170771477964,214,0 +170771478014,214,0 +170771478062,214,0 +170771478110,213,0 +170771478158,213,0 +170771478207,213,0 +170771478255,213,0 +170771478303,213,0 +170771478351,214,0 +170771478399,214,0 +170771478447,214,0 +170771478495,214,0 +170771478543,214,0 +170771478591,214,0 +170771478638,214,0 +170771478688,214,0 +170771478736,214,0 +170771478784,214,0 +170771478832,215,0 +170771478879,215,0 +170771478927,214,0 +170771478977,213,0 +170771479025,213,0 +170771479072,213,0 +170771479122,213,0 +170771479170,213,0 +170771479218,213,0 +170771479265,214,0 +170771479313,214,0 +170771479361,214,0 +170771479409,214,0 +170771479457,214,0 +170771479505,214,0 +170771479553,214,0 +170771479601,215,0 +170771479648,215,0 +170771479696,215,0 +170771479744,214,0 +170771479792,214,0 +170771479840,213,0 +170771479889,213,0 +170771479937,213,0 +170771479985,213,0 +170771480033,214,0 +170771480080,214,0 +170771480128,214,0 +170771480176,214,0 +170771480224,214,0 +170771480272,214,0 +170771480322,214,0 +170771480370,214,0 +170771480417,214,0 +170771480467,215,0 +170771480515,215,0 +170771480563,215,0 +170771480612,214,0 +170771480662,214,0 +170771480711,213,0 +170771480759,213,0 +170771480808,213,0 +170771480858,213,0 +170771480907,213,0 +170771480957,214,0 +170771481005,214,0 +170771481053,214,0 +170771481101,214,0 +170771481149,214,0 +170771481196,214,0 +170771481246,214,0 +170771481295,214,0 +170771481343,215,0 +170771481393,215,0 +170771481441,215,0 +170771481489,214,0 +170771481538,213,0 +170771481586,213,0 +170771481634,213,0 +170771481684,213,0 +170771481731,213,0 +170771481779,214,0 +170771481827,214,0 +170771481875,213,0 +170771481924,214,0 +170771481972,214,0 +170771482020,214,0 +170771482070,215,0 +170771482118,214,0 +170771482167,215,0 +170771482217,215,0 +170771482264,215,0 +170771482314,215,0 +170771482362,214,0 +170771482410,213,0 +170771482458,213,0 +170771482507,213,0 +170771482555,213,0 +170771482603,214,0 +170771482652,214,0 +170771482700,214,0 +170771482748,214,0 +170771482796,214,0 +170771482844,214,0 +170771482892,215,0 +170771482940,214,0 +170771482988,215,0 +170771483037,215,0 +170771483085,215,0 +170771483133,215,0 +170771483181,215,0 +170771483231,214,0 +170771483280,213,0 +170771483328,213,0 +170771483377,213,0 +170771483425,213,0 +170771483475,214,0 +170771483522,214,0 +170771483572,214,0 +170771483620,214,0 +170771483669,214,0 +170771483717,214,0 +170771483766,214,0 +170771483814,215,0 +170771483862,215,0 +170771483910,215,0 +170771483958,215,0 +170771484006,215,0 +170771484054,215,0 +170771484102,214,0 +170771484150,213,0 +170771484197,213,0 +170771484245,213,0 +170771484295,214,0 +170771484343,214,0 +170771484391,214,0 +170771484439,214,0 +170771484488,214,0 +170771484538,214,0 +170771484587,214,0 +170771484635,214,0 +170771484685,214,0 +170771484734,214,0 +170771484782,214,0 +170771484830,214,0 +170771484879,215,0 +170771484929,214,0 +170771484977,214,0 +170771485025,213,0 +170771485074,213,0 +170771485124,213,0 +170771485173,213,0 +170771485221,213,0 +170771485269,214,0 +170771485319,214,0 +170771485368,214,0 +170771485418,214,0 +170771485467,214,0 +170771485517,214,0 +170771485566,214,0 +170771485616,214,0 +170771485664,215,0 +170771485712,215,0 +170771485761,215,0 +170771485809,215,0 +170771485857,213,0 +170771485905,213,0 +170771485953,213,0 +170771486000,213,0 +170771486048,214,0 +170771486096,213,0 +170771486144,214,0 +170771486194,214,0 +170771486242,214,0 +170771486289,214,0 +170771486337,214,0 +170771486385,215,0 +170771486433,215,0 +170771486483,214,0 +170771486531,215,0 +170771486579,215,0 +170771486627,214,0 +170771486674,215,0 +170771486724,213,0 +170771486772,213,0 +170771486821,213,0 +170771486869,213,0 +170771486917,214,0 +170771486967,214,0 +170771487015,214,0 +170771487063,214,0 +170771487110,214,0 +170771487158,214,0 +170771487206,214,0 +170771487254,215,0 +170771487304,215,0 +170771487352,215,0 +170771487401,215,0 +170771487449,215,0 +170771487497,215,0 +170771487545,214,0 +170771487594,213,0 +170771487642,213,0 +170771487690,213,0 +170771487738,213,0 +170771487788,214,0 +170771487836,214,0 +170771487883,214,0 +170771487933,214,0 +170771487981,214,0 +170771488029,214,0 +170771488077,214,0 +170771488125,215,0 +170771488172,215,0 +170771488220,215,0 +170771488268,215,0 +170771488316,215,0 +170771488364,215,0 +170771488411,214,0 +170771488459,213,0 +170771488507,213,0 +170771488555,213,0 +170771488603,213,0 +170771488651,213,0 +170771488699,213,0 +170771488747,214,0 +170771488795,214,0 +170771488843,214,0 +170771488891,214,0 +170771488940,214,0 +170771488988,214,0 +170771489036,214,0 +170771489084,215,0 +170771489133,215,0 +170771489181,215,0 +170771489229,215,0 +170771489279,214,0 +170771489328,213,0 +170771489376,213,0 +170771489425,213,0 +170771489473,213,0 +170771489521,213,0 +170771489569,213,0 +170771489619,214,0 +170771489668,214,0 +170771489718,214,0 +170771489766,214,0 +170771489813,214,0 +170771489861,214,0 +170771489911,214,0 +170771489959,214,0 +170771490007,214,0 +170771490055,215,0 +170771490104,214,0 +170771490152,214,0 +170771490200,213,0 +170771490248,213,0 +170771490295,213,0 +170771490343,213,0 +170771490391,213,0 +170771490439,213,0 +170771490487,214,0 +170771490535,213,0 +170771490584,213,0 +170771490632,213,0 +170771490680,214,0 +170771490730,214,0 +170771490778,214,0 +170771490826,214,0 +170771490873,215,0 +170771490921,214,0 +170771490969,214,0 +170771491019,214,0 +170771491067,213,0 +170771491116,213,0 +170771491164,213,0 +170771491212,213,0 +170771491260,213,0 +170771491308,213,0 +170771491356,214,0 +170771491404,213,0 +170771491452,214,0 +170771491500,214,0 +170771491549,214,0 +170771491599,214,0 +170771491647,214,0 +170771491695,214,0 +170771491742,215,0 +170771491790,214,0 +170771491838,214,0 +170771491888,214,0 +170771491937,213,0 +170771491985,213,0 +170771492033,213,0 +170771492081,213,0 +170771492129,213,0 +170771492177,213,0 +170771492225,213,0 +170771492273,213,0 +170771492322,214,0 +170771492372,214,0 +170771492420,214,0 +170771492468,214,0 +170771492516,214,0 +170771492565,214,0 +170771492615,214,0 +170771492664,214,0 +170771492712,214,0 +170771492760,213,0 +170771492810,213,0 +170771492858,213,0 +170771492906,213,0 +170771492953,213,0 +170771493001,213,0 +170771493049,214,0 +170771493097,214,0 +170771493145,214,0 +170771493193,214,0 +170771493241,214,0 +170771493289,214,0 +170771493337,214,0 +170771493386,214,0 +170771493434,215,0 +170771493482,215,0 +170771493532,214,0 +170771493581,214,0 +170771493629,213,0 +170771493678,213,0 +170771493728,213,0 +170771493777,213,0 +170771493827,214,0 +170771493875,214,0 +170771493923,214,0 +170771493971,214,0 +170771494020,214,0 +170771494070,214,0 +170771494118,214,0 +170771494165,214,0 +170771494213,214,0 +170771494261,214,0 +170771494309,214,0 +170771494357,215,0 +170771494405,215,0 +170771494454,214,0 +170771494504,213,0 +170771494551,213,0 +170771494599,213,0 +170771494647,213,0 +170771494695,213,0 +170771494743,214,0 +170771494790,214,0 +170771494838,214,0 +170771494886,214,0 +170771494934,214,0 +170771494982,214,0 +170771495031,214,0 +170771495079,214,0 +170771495129,214,0 +170771495177,215,0 +170771495226,214,0 +170771495275,214,0 +170771495325,214,0 +170771495373,213,0 +170771495422,213,0 +170771495470,213,0 +170771495520,213,0 +170771495568,213,0 +170771495617,213,0 +170771495665,214,0 +170771495715,214,0 +170771495763,214,0 +170771495810,214,0 +170771495860,214,0 +170771495908,214,0 +170771495956,214,0 +170771496005,214,0 +170771496053,214,0 +170771496101,214,0 +170771496149,214,0 +170771496197,213,0 +170771496244,213,0 +170771496292,213,0 +170771496340,213,0 +170771496388,213,0 +170771496436,213,0 +170771496484,213,0 +170771496533,213,0 +170771496583,214,0 +170771496632,213,0 +170771496680,213,0 +170771496728,214,0 +170771496776,214,0 +170771496824,214,0 +170771496872,214,0 +170771496920,214,0 +170771496968,214,0 +170771497016,214,0 +170771497064,213,0 +170771497111,213,0 +170771497159,213,0 +170771497209,213,0 +170771497257,213,0 +170771497305,213,0 +170771497354,213,0 +170771497402,213,0 +170771497451,214,0 +170771497499,214,0 +170771497549,214,0 +170771497598,214,0 +170771497646,214,0 +170771497694,214,0 +170771497744,214,0 +170771497793,214,0 +170771497841,214,0 +170771497889,214,0 +170771497937,213,0 +170771497986,213,0 +170771498034,213,0 +170771498082,213,0 +170771498130,213,0 +170771498180,214,0 +170771498229,214,0 +170771498279,214,0 +170771498327,214,0 +170771498376,214,0 +170771498424,214,0 +170771498472,215,0 +170771498520,214,0 +170771498568,214,0 +170771498616,215,0 +170771498664,215,0 +170771498712,215,0 +170771498761,214,0 +170771498811,214,0 +170771498859,214,0 +170771498908,214,0 +170771498956,214,0 +170771499005,214,0 +170771499053,214,0 +170771499101,214,0 +170771499151,214,0 +170771499199,214,0 +170771499248,215,0 +170771499296,216,0 +170771499344,215,0 +170771499393,215,0 +170771499441,215,0 +170771499491,215,0 +170771499538,215,0 +170771499586,214,0 +170771499636,214,0 +170771499684,214,0 +170771499731,214,0 +170771499781,214,0 +170771499829,214,0 +170771499878,214,0 +170771499926,214,0 +170771499974,214,0 +170771500024,214,0 +170771500073,214,0 +170771500122,214,0 +170771500170,214,0 +170771500218,214,0 +170771500268,214,0 +170771500317,215,0 +170771500365,215,0 +170771500413,214,0 +170771500461,214,0 +170771500509,213,0 +170771500559,213,0 +170771500608,213,0 +170771500656,213,0 +170771500704,213,0 +170771500752,213,0 +170771500800,214,0 +170771500847,214,0 +170771500895,214,0 +170771500945,214,0 +170771500993,214,0 +170771501041,214,0 +170771501088,214,0 +170771501136,215,0 +170771501184,215,0 +170771501232,214,0 +170771501282,214,0 +170771501330,214,0 +170771501377,213,0 +170771501425,213,0 +170771501473,213,0 +170771501521,213,0 +170771501571,214,0 +170771501619,214,0 +170771501667,214,0 +170771501715,214,0 +170771501763,214,0 +170771501812,214,0 +170771501860,214,0 +170771501910,214,0 +170771501959,215,0 +170771502008,215,0 +170771502058,215,0 +170771502107,215,0 +170771502157,214,0 +170771502205,214,0 +170771502254,213,0 +170771502302,213,0 +170771502352,214,0 +170771502401,214,0 +170771502449,214,0 +170771502497,214,0 +170771502547,214,0 +170771502595,214,0 +170771502643,214,0 +170771502691,214,0 +170771502738,215,0 +170771502786,215,0 +170771502834,214,0 +170771502884,214,0 +170771502932,214,0 +170771502980,215,0 +170771503029,215,0 +170771503077,214,0 +170771503125,213,0 +170771503173,213,0 +170771503221,213,0 +170771503269,214,0 +170771503317,214,0 +170771503365,214,0 +170771503414,214,0 +170771503464,214,0 +170771503512,214,0 +170771503561,214,0 +170771503609,215,0 +170771503659,214,0 +170771503707,214,0 +170771503755,214,0 +170771503803,215,0 +170771503850,215,0 +170771503898,215,0 +170771503948,213,0 +170771503997,213,0 +170771504045,213,0 +170771504093,213,0 +170771504143,213,0 +170771504191,214,0 +170771504240,213,0 +170771504288,214,0 +170771504336,214,0 +170771504384,214,0 +170771504433,214,0 +170771504483,214,0 +170771504531,215,0 +170771504579,214,0 +170771504628,214,0 +170771504678,215,0 +170771504726,215,0 +170771504774,215,0 +170771504823,213,0 +170771504873,213,0 +170771504921,213,0 +170771504968,213,0 +170771505016,213,0 +170771505064,214,0 +170771505114,214,0 +170771505163,214,0 +170771505211,214,0 +170771505259,214,0 +170771505307,214,0 +170771505356,214,0 +170771505406,214,0 +170771505455,214,0 +170771505505,215,0 +170771505553,215,0 +170771505601,214,0 +170771505649,214,0 +170771505697,213,0 +170771505745,213,0 +170771505793,213,0 +170771505842,213,0 +170771505890,213,0 +170771505938,214,0 +170771505986,214,0 +170771506034,214,0 +170771506081,214,0 +170771506131,215,0 +170771506179,214,0 +170771506227,215,0 +170771506276,215,0 +170771506326,215,0 +170771506373,215,0 +170771506421,214,0 +170771506469,214,0 +170771506517,213,0 +170771506565,213,0 +170771506613,213,0 +170771506661,213,0 +170771506709,213,0 +170771506757,214,0 +170771506806,214,0 +170771506854,214,0 +170771506902,214,0 +170771506952,214,0 +170771507000,214,0 +170771507049,214,0 +170771507097,215,0 +170771507145,215,0 +170771507193,215,0 +170771507241,214,0 +170771507289,214,0 +170771507338,214,0 +170771507388,213,0 +170771507436,213,0 +170771507484,213,0 +170771507532,213,0 +170771507580,213,0 +170771507628,213,0 +170771507675,214,0 +170771507723,214,0 +170771507773,213,0 +170771507822,213,0 +170771507870,213,0 +170771507920,213,0 +170771507968,214,0 +170771508015,214,0 +170771508063,215,0 +170771508113,215,0 +170771508162,215,0 +170771508210,214,0 +170771508258,213,0 +170771508306,213,0 +170771508354,213,0 +170771508402,213,0 +170771508450,213,0 +170771508498,213,0 +170771508547,214,0 +170771508595,214,0 +170771508645,214,0 +170771508693,214,0 +170771508741,214,0 +170771508790,214,0 +170771508840,214,0 +170771508888,214,0 +170771508937,215,0 +170771508987,214,0 +170771509035,214,0 +170771509082,214,0 +170771509130,213,0 +170771509180,213,0 +170771509228,213,0 +170771509276,213,0 +170771509324,213,0 +170771509372,214,0 +170771509421,214,0 +170771509470,214,0 +170771509520,214,0 +170771509568,214,0 +170771509616,214,0 +170771509665,214,0 +170771509713,214,0 +170771509763,215,0 +170771509812,214,0 +170771509860,214,0 +170771509909,215,0 +170771509957,213,0 +170771510007,213,0 +170771510056,213,0 +170771510104,213,0 +170771510154,213,0 +170771510201,213,0 +170771510249,214,0 +170771510297,214,0 +170771510345,214,0 +170771510394,214,0 +170771510442,214,0 +170771510490,214,0 +170771510537,214,0 +170771510585,214,0 +170771510633,214,0 +170771510681,214,0 +170771510728,215,0 +170771510776,214,0 +170771510824,213,0 +170771510872,213,0 +170771510920,213,0 +170771510969,213,0 +170771511017,213,0 +170771511065,213,0 +170771511113,213,0 +170771511160,214,0 +170771511210,214,0 +170771511258,214,0 +170771511305,214,0 +170771511353,214,0 +170771511401,214,0 +170771511449,214,0 +170771511497,214,0 +170771511547,215,0 +170771511594,215,0 +170771511642,214,0 +170771511690,213,0 +170771511739,213,0 +170771511789,213,0 +170771511837,213,0 +170771511884,213,0 +170771511932,213,0 +170771511980,213,0 +170771512028,213,0 +170771512076,213,0 +170771512124,214,0 +170771512171,214,0 +170771512219,214,0 +170771512267,214,0 +170771512315,214,0 +170771512363,214,0 +170771512411,214,0 +170771512459,214,0 +170771512506,214,0 +170771512556,213,0 +170771512603,213,0 +170771512651,213,0 +170771512699,213,0 +170771512747,213,0 +170771512795,213,0 +170771512843,213,0 +170771512890,213,0 +170771512938,214,0 +170771512987,214,0 +170771513035,213,0 +170771513083,214,0 +170771513132,214,0 +170771513180,214,0 +170771513228,214,0 +170771513277,214,0 +170771513325,215,0 +170771513373,214,0 +170771513421,213,0 +170771513469,213,0 +170771513517,213,0 +170771513564,214,0 +170771513612,214,0 +170771513660,214,0 +170771513708,214,0 +170771513756,214,0 +170771513804,214,0 +170771513852,214,0 +170771513899,214,0 +170771513947,215,0 +170771513995,215,0 +170771514043,215,0 +170771514092,215,0 +170771514140,215,0 +170771514188,214,0 +170771514236,214,0 +170771514285,213,0 +170771514335,213,0 +170771514382,214,0 +170771514430,214,0 +170771514478,214,0 +170771514526,214,0 +170771514574,214,0 +170771514622,214,0 +170771514670,214,0 +170771514718,214,0 +170771514766,214,0 +170771514815,215,0 +170771514865,215,0 +170771514913,215,0 +170771514962,215,0 +170771515010,215,0 +170771515060,215,0 +170771515108,213,0 +170771515156,213,0 +170771515203,213,0 +170771515253,213,0 +170771515302,213,0 +170771515350,213,0 +170771515400,214,0 +170771515448,214,0 +170771515495,214,0 +170771515543,214,0 +170771515591,214,0 +170771515639,214,0 +170771515687,214,0 +170771515734,214,0 +170771515784,214,0 +170771515832,214,0 +170771515879,214,0 +170771515929,214,0 +170771515977,213,0 +170771516024,213,0 +170771516074,213,0 +170771516122,213,0 +170771516169,213,0 +170771516217,214,0 +170771516265,214,0 +170771516315,214,0 +170771516363,214,0 +170771516411,214,0 +170771516460,214,0 +170771516508,215,0 +170771516556,214,0 +170771516604,214,0 +170771516652,214,0 +170771516701,214,0 +170771516749,215,0 +170771516799,213,0 +170771516848,213,0 +170771516896,213,0 +170771516944,213,0 +170771516993,213,0 +170771517041,213,0 +170771517089,213,0 +170771517137,213,0 +170771517185,214,0 +170771517234,214,0 +170771517282,214,0 +170771517330,214,0 +170771517378,214,0 +170771517426,214,0 +170771517474,214,0 +170771517523,215,0 +170771517571,215,0 +170771517619,215,0 +170771517666,215,0 +170771517714,215,0 +170771517762,215,0 +170771517810,215,0 +170771517858,215,0 +170771517905,215,0 +170771517953,215,0 +170771518001,214,0 +170771518050,214,0 +170771518098,214,0 +170771518146,214,0 +170771518194,214,0 +170771518242,214,0 +170771518290,214,0 +170771518338,214,0 +170771518386,214,0 +170771518434,214,0 +170771518483,215,0 +170771518531,215,0 +170771518579,215,0 +170771518628,215,0 +170771518676,215,0 +170771518724,215,0 +170771518772,215,0 +170771518820,215,0 +170771518868,215,0 +170771518916,213,0 +170771518963,214,0 +170771519011,213,0 +170771519059,214,0 +170771519107,214,0 +170771519155,214,0 +170771519202,214,0 +170771519250,214,0 +170771519298,215,0 +170771519346,214,0 +170771519395,214,0 +170771519443,215,0 +170771519491,215,0 +170771519539,215,0 +170771519587,215,0 +170771519635,215,0 +170771519683,214,0 +170771519731,214,0 +170771519780,213,0 +170771519828,213,0 +170771519876,213,0 +170771519924,213,0 +170771519972,213,0 +170771520020,214,0 +170771520069,214,0 +170771520119,214,0 +170771520167,214,0 +170771520216,214,0 +170771520266,215,0 +170771520315,215,0 +170771520365,215,0 +170771520412,215,0 +170771520460,215,0 +170771520508,215,0 +170771520556,214,0 +170771520604,213,0 +170771520652,213,0 +170771520700,213,0 +170771520748,214,0 +170771520796,214,0 +170771520844,214,0 +170771520892,214,0 +170771520940,214,0 +170771520989,214,0 +170771521037,214,0 +170771521086,214,0 +170771521134,215,0 +170771521184,215,0 +170771521233,214,0 +170771521283,215,0 +170771521331,215,0 +170771521378,214,0 +170771521426,213,0 +170771521474,213,0 +170771521522,213,0 +170771521571,213,0 +170771521619,214,0 +170771521667,214,0 +170771521715,214,0 +170771521763,214,0 +170771521812,214,0 +170771521860,214,0 +170771521908,214,0 +170771521956,214,0 +170771522004,215,0 +170771522051,215,0 +170771522099,215,0 +170771522149,215,0 +170771522197,215,0 +170771522245,214,0 +170771522294,213,0 +170771522342,213,0 +170771522391,213,0 +170771522439,213,0 +170771522487,213,0 +170771522535,214,0 +170771522583,214,0 +170771522631,214,0 +170771522678,214,0 +170771522726,214,0 +170771522774,214,0 +170771522822,214,0 +170771522870,214,0 +170771522918,215,0 +170771522966,214,0 +170771523013,214,0 +170771523061,214,0 +170771523109,213,0 +170771523157,213,0 +170771523205,213,0 +170771523253,213,0 +170771523300,213,0 +170771523348,214,0 +170771523396,213,0 +170771523444,213,0 +170771523492,214,0 +170771523540,214,0 +170771523588,214,0 +170771523635,214,0 +170771523683,214,0 +170771523731,214,0 +170771523779,214,0 +170771523827,215,0 +170771523875,215,0 +170771523923,214,0 +170771523970,213,0 +170771524018,213,0 +170771524066,213,0 +170771524114,213,0 +170771524162,213,0 +170771524210,213,0 +170771524258,213,0 +170771524306,214,0 +170771524354,213,0 +170771524401,214,0 +170771524449,214,0 +170771524497,214,0 +170771524545,214,0 +170771524593,214,0 +170771524642,214,0 +170771524690,214,0 +170771524738,214,0 +170771524786,213,0 +170771524834,213,0 +170771524882,213,0 +170771524929,213,0 +170771524977,213,0 +170771525025,213,0 +170771525075,213,0 +170771525122,213,0 +170771525170,213,0 +170771525218,213,0 +170771525266,214,0 +170771525314,214,0 +170771525362,214,0 +170771525411,214,0 +170771525459,214,0 +170771525509,214,0 +170771525557,215,0 +170771525604,214,0 +170771525652,213,0 +170771525700,213,0 +170771525748,213,0 +170771525797,213,0 +170771525845,213,0 +170771525893,213,0 +170771525941,213,0 +170771525989,213,0 +170771526037,214,0 +170771526085,214,0 +170771526134,214,0 +170771526182,214,0 +170771526231,214,0 +170771526281,214,0 +170771526330,214,0 +170771526378,214,0 +170771526428,214,0 +170771526477,213,0 +170771526525,213,0 +170771526575,213,0 +170771526623,213,0 +170771526670,213,0 +170771526720,213,0 +170771526770,214,0 +170771526819,213,0 +170771526867,213,0 +170771526917,214,0 +170771526964,214,0 +170771527012,214,0 +170771527062,214,0 +170771527110,214,0 +170771527158,214,0 +170771527206,214,0 +170771527254,214,0 +170771527302,213,0 +170771527351,213,0 +170771527399,213,0 +170771527447,213,0 +170771527495,213,0 +170771527543,213,0 +170771527592,214,0 +170771527640,213,0 +170771527688,214,0 +170771527738,214,0 +170771527786,214,0 +170771527833,214,0 +170771527883,214,0 +170771527931,214,0 +170771527980,214,0 +170771528028,214,0 +170771528076,214,0 +170771528124,214,0 +170771528174,213,0 +170771528222,213,0 +170771528270,213,0 +170771528317,214,0 +170771528367,213,0 +170771528415,214,0 +170771528465,214,0 +170771528514,214,0 +170771528563,214,0 +170771528611,214,0 +170771528659,214,0 +170771528707,214,0 +170771528757,214,0 +170771528805,214,0 +170771528853,214,0 +170771528901,214,0 +170771528950,214,0 +170771528998,213,0 +170771529046,213,0 +170771529094,213,0 +170771529143,214,0 +170771529191,214,0 +170771529239,214,0 +170771529287,214,0 +170771529335,214,0 +170771529384,214,0 +170771529432,214,0 +170771529482,214,0 +170771529531,214,0 +170771529579,214,0 +170771529627,214,0 +170771529675,215,0 +170771529724,215,0 +170771529772,215,0 +170771529820,214,0 +170771529868,213,0 +170771529915,214,0 +170771529965,214,0 +170771530014,214,0 +170771530062,214,0 +170771530112,214,0 +170771530161,214,0 +170771530211,214,0 +170771530259,214,0 +170771530307,214,0 +170771530355,214,0 +170771530402,215,0 +170771530450,215,0 +170771530498,215,0 +170771530546,215,0 +170771530594,215,0 +170771530644,214,0 +170771530692,213,0 +170771530739,213,0 +170771530787,214,0 +170771530835,214,0 +170771530885,214,0 +170771530934,214,0 +170771530984,214,0 +170771531032,214,0 +170771531080,214,0 +170771531129,214,0 +170771531177,215,0 +170771531225,215,0 +170771531274,215,0 +170771531324,215,0 +170771531372,215,0 +170771531420,215,0 +170771531468,214,0 +170771531516,214,0 +170771531564,214,0 +170771531612,214,0 +170771531659,214,0 +170771531707,214,0 +170771531755,214,0 +170771531803,215,0 +170771531851,214,0 +170771531899,215,0 +170771531948,215,0 +170771531996,215,0 +170771532044,215,0 +170771532092,215,0 +170771532141,215,0 +170771532189,215,0 +170771532237,215,0 +170771532284,214,0 +170771532332,214,0 +170771532380,214,0 +170771532428,214,0 +170771532476,214,0 +170771532523,214,0 +170771532571,214,0 +170771532619,214,0 +170771532667,214,0 +170771532715,215,0 +170771532765,215,0 +170771532813,215,0 +170771532862,216,0 +170771532910,215,0 +170771532958,215,0 +170771533006,215,0 +170771533053,215,0 +170771533103,215,0 +170771533152,214,0 +170771533200,213,0 +170771533248,213,0 +170771533296,213,0 +170771533344,214,0 +170771533392,214,0 +170771533439,214,0 +170771533487,214,0 +170771533535,214,0 +170771533583,214,0 +170771533631,215,0 +170771533678,214,0 +170771533726,214,0 +170771533774,215,0 +170771533822,215,0 +170771533870,215,0 +170771533918,215,0 +170771533965,214,0 +170771534013,214,0 +170771534061,213,0 +170771534109,213,0 +170771534158,213,0 +170771534206,213,0 +170771534254,213,0 +170771534303,213,0 +170771534351,214,0 +170771534401,214,0 +170771534449,214,0 +170771534496,214,0 +170771534544,214,0 +170771534592,214,0 +170771534640,214,0 +170771534688,214,0 +170771534736,214,0 +170771534783,215,0 +170771534833,214,0 +170771534881,214,0 +170771534929,213,0 +170771534977,213,0 +170771535026,213,0 +170771535076,213,0 +170771535123,213,0 +170771535171,213,0 +170771535219,214,0 +170771535268,214,0 +170771535316,214,0 +170771535364,214,0 +170771535412,214,0 +170771535460,214,0 +170771535509,215,0 +170771535557,215,0 +170771535605,215,0 +170771535654,215,0 +170771535704,214,0 +170771535751,213,0 +170771535799,213,0 +170771535847,213,0 +170771535895,213,0 +170771535943,213,0 +170771535991,214,0 +170771536038,214,0 +170771536086,214,0 +170771536134,214,0 +170771536182,214,0 +170771536230,214,0 +170771536278,214,0 +170771536326,214,0 +170771536375,215,0 +170771536423,214,0 +170771536471,215,0 +170771536520,214,0 +170771536568,213,0 +170771536616,213,0 +170771536665,213,0 +170771536713,213,0 +170771536761,213,0 +170771536809,213,0 +170771536856,213,0 +170771536904,214,0 +170771536954,213,0 +170771537002,214,0 +170771537049,214,0 +170771537097,214,0 +170771537145,214,0 +170771537193,214,0 +170771537241,214,0 +170771537290,215,0 +170771537338,214,0 +170771537386,214,0 +170771537434,213,0 +170771537481,213,0 +170771537529,213,0 +170771537579,213,0 +170771537627,213,0 +170771537676,213,0 +170771537724,213,0 +170771537772,214,0 +170771537821,214,0 +170771537869,214,0 +170771537917,214,0 +170771537965,214,0 +170771538013,214,0 +170771538060,215,0 +170771538108,214,0 +170771538156,215,0 +170771538204,215,0 +170771538252,213,0 +170771538300,213,0 +170771538349,213,0 +170771538397,213,0 +170771538445,213,0 +170771538492,213,0 +170771538540,214,0 +170771538588,214,0 +170771538636,214,0 +170771538684,214,0 +170771538732,214,0 +170771538779,214,0 +170771538827,214,0 +170771538875,215,0 +170771538924,215,0 +170771538972,214,0 +170771539020,214,0 +170771539068,214,0 +170771539116,213,0 +170771539164,213,0 +170771539212,213,0 +170771539261,213,0 +170771539309,213,0 +170771539357,213,0 +170771539404,214,0 +170771539452,214,0 +170771539500,213,0 +170771539548,214,0 +170771539596,214,0 +170771539643,214,0 +170771539691,214,0 +170771539739,214,0 +170771539787,215,0 +170771539835,214,0 +170771539883,214,0 +170771539930,213,0 +170771539978,213,0 +170771540026,213,0 +170771540074,213,0 +170771540122,213,0 +170771540170,213,0 +170771540217,214,0 +170771540267,214,0 +170771540315,214,0 +170771540362,214,0 +170771540410,214,0 +170771540460,214,0 +170771540507,214,0 +170771540555,214,0 +170771540603,214,0 +170771540652,214,0 +170771540700,215,0 +170771540750,214,0 +170771540799,213,0 +170771540847,213,0 +170771540895,213,0 +170771540944,214,0 +170771540992,214,0 +170771541039,214,0 +170771541087,214,0 +170771541135,214,0 +170771541183,214,0 +170771541231,214,0 +170771541279,214,0 +170771541326,214,0 +170771541374,215,0 +170771541422,215,0 +170771541470,214,0 +170771541519,214,0 +170771541567,214,0 +170771541615,213,0 +170771541663,213,0 +170771541711,213,0 +170771541760,213,0 +170771541810,214,0 +170771541858,214,0 +170771541906,214,0 +170771541955,214,0 +170771542003,214,0 +170771542053,214,0 +170771542102,214,0 +170771542150,215,0 +170771542198,215,0 +170771542247,215,0 +170771542295,215,0 +170771542343,215,0 +170771542392,214,0 +170771542440,214,0 +170771542488,213,0 +170771542536,213,0 +170771542583,214,0 +170771542631,214,0 +170771542679,214,0 +170771542727,214,0 +170771542775,214,0 +170771542822,214,0 +170771542870,214,0 +170771542918,214,0 +170771542966,215,0 +170771543014,215,0 +170771543062,215,0 +170771543111,215,0 +170771543161,215,0 +170771543209,215,0 +170771543258,214,0 +170771543308,213,0 +170771543356,213,0 +170771543405,214,0 +170771543453,213,0 +170771543501,214,0 +170771543549,214,0 +170771543599,214,0 +170771543647,214,0 +170771543694,214,0 +170771543744,214,0 +170771543793,214,0 +170771543843,214,0 +170771543891,214,0 +170771543939,214,0 +170771543987,215,0 +170771544036,214,0 +170771544084,214,0 +170771544134,213,0 +170771544183,213,0 +170771544231,213,0 +170771544280,213,0 +170771544328,213,0 +170771544376,213,0 +170771544424,213,0 +170771544474,214,0 +170771544522,214,0 +170771544571,214,0 +170771544619,214,0 +170771544669,214,0 +170771544718,214,0 +170771544766,214,0 +170771544814,215,0 +170771544864,215,0 +170771544912,214,0 +170771544960,214,0 +170771545008,213,0 +170771545056,213,0 +170771545103,213,0 +170771545151,213,0 +170771545199,213,0 +170771545247,214,0 +170771545295,214,0 +170771545343,214,0 +170771545391,214,0 +170771545439,214,0 +170771545488,214,0 +170771545538,214,0 +170771545587,214,0 +170771545635,215,0 +170771545685,214,0 +170771545734,215,0 +170771545782,215,0 +170771545830,214,0 +170771545878,214,0 +170771545926,214,0 +170771545975,214,0 +170771546025,214,0 +170771546073,214,0 +170771546122,214,0 +170771546170,215,0 +170771546218,215,0 +170771546266,215,0 +170771546315,215,0 +170771546363,215,0 +170771546413,215,0 +170771546461,215,0 +170771546510,215,0 +170771546559,215,0 +170771546607,214,0 +170771546655,214,0 +170771546703,213,0 +170771546751,214,0 +170771546801,213,0 +170771546848,213,0 +170771546896,214,0 +170771546946,214,0 +170771546994,214,0 +170771547042,214,0 +170771547090,214,0 +170771547137,215,0 +170771547185,215,0 +170771547235,215,0 +170771547283,214,0 +170771547331,215,0 +170771547380,215,0 +170771547428,214,0 +170771547476,214,0 +170771547524,213,0 +170771547572,213,0 +170771547619,213,0 +170771547667,213,0 +170771547717,213,0 +170771547765,213,0 +170771547812,214,0 +170771547860,213,0 +170771547908,214,0 +170771547956,214,0 +170771548004,214,0 +170771548052,214,0 +170771548099,215,0 +170771548147,215,0 +170771548195,215,0 +170771548244,215,0 +170771548292,215,0 +170771548340,214,0 +170771548388,213,0 +170771548436,213,0 +170771548483,213,0 +170771548531,214,0 +170771548579,214,0 +170771548627,214,0 +170771548675,214,0 +170771548724,214,0 +170771548772,214,0 +170771548821,214,0 +170771548869,214,0 +170771548917,214,0 +170771548965,214,0 +170771549013,214,0 +170771549061,215,0 +170771549109,214,0 +170771549156,214,0 +170771549204,213,0 +170771549254,213,0 +170771549301,213,0 +170771549349,213,0 +170771549397,213,0 +170771549446,213,0 +170771549494,214,0 +170771549542,214,0 +170771549590,214,0 +170771549638,214,0 +170771549686,214,0 +170771549733,214,0 +170771549781,214,0 +170771549829,214,0 +170771549877,214,0 +170771549924,214,0 +170771549972,215,0 +170771550020,214,0 +170771550068,214,0 +170771550116,213,0 +170771550165,213,0 +170771550214,213,0 +170771550262,213,0 +170771550310,213,0 +170771550358,213,0 +170771550405,213,0 +170771550453,213,0 +170771550501,214,0 +170771550549,214,0 +170771550598,214,0 +170771550646,214,0 +170771550694,214,0 +170771550742,214,0 +170771550789,214,0 +170771550837,215,0 +170771550885,215,0 +170771550933,214,0 +170771550980,213,0 +170771551028,213,0 +170771551076,213,0 +170771551126,213,0 +170771551173,213,0 +170771551221,213,0 +170771551269,214,0 +170771551317,214,0 +170771551366,214,0 +170771551414,214,0 +170771551462,214,0 +170771551510,214,0 +170771551559,214,0 +170771551607,214,0 +170771551655,214,0 +170771551703,214,0 +170771551751,214,0 +170771551800,215,0 +170771551848,214,0 +170771551896,213,0 +170771551943,213,0 +170771551991,213,0 +170771552039,213,0 +170771552087,213,0 +170771552136,214,0 +170771552184,214,0 +170771552232,214,0 +170771552280,214,0 +170771552328,214,0 +170771552375,214,0 +170771552423,215,0 +170771552471,214,0 +170771552519,214,0 +170771552567,215,0 +170771552615,214,0 +170771552662,215,0 +170771552710,214,0 +170771552758,214,0 +170771552806,213,0 +170771552854,213,0 +170771552901,213,0 +170771552949,214,0 +170771552997,213,0 +170771553045,214,0 +170771553093,214,0 +170771553141,214,0 +170771553188,214,0 +170771553238,214,0 +170771553286,214,0 +170771553335,215,0 +170771553383,215,0 +170771553432,215,0 +170771553480,215,0 +170771553528,215,0 +170771553576,214,0 +170771553623,215,0 +170771553671,214,0 +170771553719,213,0 +170771553767,213,0 +170771553815,213,0 +170771553863,213,0 +170771553910,213,0 +170771553958,214,0 +170771554006,214,0 +170771554054,214,0 +170771554102,214,0 +170771554149,214,0 +170771554197,214,0 +170771554245,214,0 +170771554293,214,0 +170771554340,214,0 +170771554388,214,0 +170771554436,214,0 +170771554484,215,0 +170771554533,214,0 +170771554583,213,0 +170771554630,213,0 +170771554678,213,0 +170771554726,213,0 +170771554774,214,0 +170771554822,214,0 +170771554870,214,0 +170771554919,214,0 +170771554967,214,0 +170771555014,214,0 +170771555062,214,0 +170771555110,214,0 +170771555158,214,0 +170771555205,215,0 +170771555255,215,0 +170771555303,214,0 +170771555350,214,0 +170771555400,214,0 +170771555448,214,0 +170771555495,213,0 +170771555543,213,0 +170771555591,213,0 +170771555639,213,0 +170771555688,213,0 +170771555736,213,0 +170771555784,213,0 +170771555832,213,0 +170771555880,214,0 +170771555927,214,0 +170771555975,214,0 +170771556023,214,0 +170771556071,214,0 +170771556119,214,0 +170771556166,215,0 +170771556214,215,0 +170771556262,214,0 +170771556310,214,0 +170771556359,214,0 +170771556407,213,0 +170771556457,213,0 +170771556505,213,0 +170771556552,213,0 +170771556602,213,0 +170771556650,213,0 +170771556697,214,0 +170771556745,214,0 +170771556793,214,0 +170771556842,214,0 +170771556890,214,0 +170771556938,214,0 +170771556987,214,0 +170771557035,214,0 +170771557083,215,0 +170771557131,215,0 +170771557179,214,0 +170771557227,214,0 +170771557274,213,0 +170771557322,213,0 +170771557370,213,0 +170771557418,213,0 +170771557465,213,0 +170771557513,213,0 +170771557561,214,0 +170771557611,214,0 +170771557660,214,0 +170771557708,214,0 +170771557756,214,0 +170771557806,215,0 +170771557855,214,0 +170771557905,215,0 +170771557953,215,0 +170771558000,215,0 +170771558048,214,0 +170771558096,215,0 +170771558144,214,0 +170771558194,214,0 +170771558242,214,0 +170771558290,214,0 +170771558339,214,0 +170771558387,214,0 +170771558435,214,0 +170771558484,214,0 +170771558534,214,0 +170771558582,214,0 +170771558630,215,0 +170771558678,214,0 +170771558726,214,0 +170771558773,214,0 +170771558821,215,0 +170771558869,215,0 +170771558919,214,0 +170771558968,214,0 +170771559016,215,0 +170771559064,214,0 +170771559114,213,0 +170771559162,214,0 +170771559209,214,0 +170771559257,214,0 +170771559305,214,0 +170771559355,214,0 +170771559403,214,0 +170771559451,214,0 +170771559499,214,0 +170771559546,214,0 +170771559594,214,0 +170771559644,214,0 +170771559692,214,0 +170771559740,215,0 +170771559789,215,0 +170771559837,214,0 +170771559885,214,0 +170771559933,214,0 +170771559981,213,0 +170771560029,213,0 +170771560077,213,0 +170771560125,213,0 +170771560174,213,0 +170771560222,213,0 +170771560272,214,0 +170771560321,214,0 +170771560369,214,0 +170771560419,214,0 +170771560468,214,0 +170771560518,214,0 +170771560567,214,0 +170771560617,214,0 +170771560665,215,0 +170771560713,215,0 +170771560761,215,0 +170771560809,214,0 +170771560858,213,0 +170771560906,213,0 +170771560954,213,0 +170771561002,214,0 +170771561050,214,0 +170771561098,214,0 +170771561147,214,0 +170771561195,215,0 +170771561245,214,0 +170771561294,214,0 +170771561342,215,0 +170771561392,214,0 +170771561441,215,0 +170771561489,215,0 +170771561537,215,0 +170771561585,215,0 +170771561634,215,0 +170771561682,215,0 +170771561732,214,0 +170771561780,213,0 +170771561828,213,0 +170771561876,213,0 +170771561924,213,0 +170771561973,214,0 +170771562023,214,0 +170771562071,214,0 +170771562119,214,0 +170771562166,214,0 +170771562214,214,0 +170771562264,214,0 +170771562312,214,0 +170771562360,215,0 +170771562408,215,0 +170771562456,215,0 +170771562504,215,0 +170771562551,215,0 +170771562599,214,0 +170771562649,213,0 +170771562698,213,0 +170771562746,213,0 +170771562794,213,0 +170771562844,214,0 +170771562892,213,0 +170771562941,214,0 +170771562989,213,0 +170771563037,214,0 +170771563085,214,0 +170771563133,214,0 +170771563183,214,0 +170771563231,214,0 +170771563280,214,0 +170771563330,214,0 +170771563379,215,0 +170771563429,215,0 +170771563477,214,0 +170771563524,214,0 +170771563574,213,0 +170771563622,213,0 +170771563670,213,0 +170771563719,214,0 +170771563767,214,0 +170771563817,214,0 +170771563866,214,0 +170771563914,214,0 +170771563962,214,0 +170771564011,214,0 +170771564061,215,0 +170771564111,214,0 +170771564158,214,0 +170771564206,214,0 +170771564256,214,0 +170771564304,214,0 +170771564353,214,0 +170771564401,214,0 +170771564449,213,0 +170771564499,213,0 +170771564547,213,0 +170771564594,213,0 +170771564644,213,0 +170771564694,213,0 +170771564742,213,0 +170771564792,214,0 +170771564839,214,0 +170771564889,214,0 +170771564937,214,0 +170771564986,214,0 +170771565034,214,0 +170771565082,214,0 +170771565130,214,0 +170771565179,214,0 +170771565228,215,0 +170771565276,214,0 +170771565324,213,0 +170771565374,213,0 +170771565422,213,0 +170771565470,214,0 +170771565519,214,0 +170771565568,213,0 +170771565616,214,0 +170771565664,214,0 +170771565712,214,0 +170771565762,214,0 +170771565811,214,0 +170771565859,215,0 +170771565908,215,0 +170771565958,215,0 +170771566007,215,0 +170771566055,215,0 +170771566105,214,0 +170771566153,215,0 +170771566202,214,0 +170771566250,213,0 +170771566299,213,0 +170771566348,213,0 +170771566396,213,0 +170771566444,214,0 +170771566492,214,0 +170771566541,214,0 +170771566589,214,0 +170771566637,214,0 +170771566685,214,0 +170771566733,214,0 +170771566783,214,0 +170771566830,215,0 +170771566880,215,0 +170771566928,215,0 +170771566976,215,0 +170771567025,215,0 +170771567073,215,0 +170771567121,213,0 +170771567169,213,0 +170771567218,213,0 +170771567266,213,0 +170771567314,213,0 +170771567362,213,0 +170771567410,214,0 +170771567460,214,0 +170771567509,214,0 +170771567557,214,0 +170771567607,214,0 +170771567654,214,0 +170771567704,215,0 +170771567752,215,0 +170771567801,214,0 +170771567849,215,0 +170771567897,215,0 +170771567945,215,0 +170771567993,214,0 +170771568041,213,0 +170771568090,213,0 +170771568138,213,0 +170771568187,213,0 +170771568235,213,0 +170771568283,214,0 +170771568331,214,0 +170771568379,214,0 +170771568427,214,0 +170771568477,214,0 +170771568524,214,0 +170771568572,214,0 +170771568620,214,0 +170771568668,214,0 +170771568716,214,0 +170771568764,214,0 +170771568812,214,0 +170771568860,214,0 +170771568908,213,0 +170771568956,213,0 +170771569004,213,0 +170771569052,213,0 +170771569101,213,0 +170771569149,213,0 +170771569197,213,0 +170771569245,213,0 +170771569293,213,0 +170771569341,213,0 +170771569389,214,0 +170771569436,214,0 +170771569484,214,0 +170771569534,214,0 +170771569582,214,0 +170771569631,214,0 +170771569681,214,0 +170771569729,214,0 +170771569777,214,0 +170771569825,213,0 +170771569874,213,0 +170771569924,213,0 +170771569971,213,0 +170771570019,213,0 +170771570067,213,0 +170771570115,213,0 +170771570163,213,0 +170771570211,214,0 +170771570259,214,0 +170771570306,214,0 +170771570354,214,0 +170771570404,214,0 +170771570452,213,0 +170771570500,213,0 +170771570548,214,0 +170771570596,214,0 +170771570643,214,0 +170771570693,214,0 +170771570742,213,0 +170771570790,213,0 +170771570838,213,0 +170771570886,213,0 +170771570934,213,0 +170771570984,213,0 +170771571033,213,0 +170771571081,213,0 +170771571129,214,0 +170771571177,214,0 +170771571225,214,0 +170771571273,214,0 +170771571321,214,0 +170771571369,214,0 +170771571417,214,0 +170771571465,214,0 +170771571514,214,0 +170771571562,214,0 +170771571610,213,0 +170771571658,213,0 +170771571705,213,0 +170771571753,213,0 +170771571801,213,0 +170771571849,213,0 +170771571897,213,0 +170771571945,213,0 +170771571993,213,0 +170771572041,214,0 +170771572089,214,0 +170771572136,214,0 +170771572184,214,0 +170771572232,214,0 +170771572280,214,0 +170771572328,215,0 +170771572376,215,0 +170771572424,214,0 +170771572473,214,0 +170771572521,213,0 +170771572569,213,0 +170771572617,213,0 +170771572667,213,0 +170771572715,213,0 +170771572764,213,0 +170771572812,213,0 +170771572860,213,0 +170771572908,213,0 +170771572956,213,0 +170771573005,213,0 +170771573053,213,0 +170771573101,214,0 +170771573149,214,0 +170771573198,214,0 +170771573246,214,0 +170771573294,214,0 +170771573342,214,0 +170771573390,213,0 +170771573438,213,0 +170771573486,213,0 +170771573535,213,0 +170771573583,213,0 +170771573631,213,0 +170771573681,213,0 +170771573730,213,0 +170771573778,213,0 +170771573826,213,0 +170771573876,213,0 +170771573925,213,0 +170771573975,213,0 +170771574023,214,0 +170771574070,214,0 +170771574120,214,0 +170771574170,214,0 +170771574217,214,0 +170771574265,214,0 +170771574313,213,0 +170771574361,213,0 +170771574409,213,0 +170771574457,213,0 +170771574505,213,0 +170771574554,213,0 +170771574602,213,0 +170771574650,213,0 +170771574698,213,0 +170771574746,213,0 +170771574796,214,0 +170771574844,214,0 +170771574893,214,0 +170771574941,214,0 +170771574989,214,0 +170771575037,214,0 +170771575086,214,0 +170771575134,214,0 +170771575184,213,0 +170771575232,213,0 +170771575280,213,0 +170771575329,213,0 +170771575377,213,0 +170771575425,213,0 +170771575473,214,0 +170771575521,214,0 +170771575569,214,0 +170771575618,214,0 +170771575666,214,0 +170771575715,214,0 +170771575763,215,0 +170771575811,215,0 +170771575861,214,0 +170771575910,215,0 +170771575958,215,0 +170771576008,214,0 +170771576056,214,0 +170771576105,213,0 +170771576153,213,0 +170771576202,214,0 +170771576250,214,0 +170771576300,214,0 +170771576348,214,0 +170771576396,214,0 +170771576444,214,0 +170771576491,214,0 +170771576539,215,0 +170771576587,215,0 +170771576635,215,0 +170771576683,215,0 +170771576731,215,0 +170771576779,215,0 +170771576827,215,0 +170771576875,214,0 +170771576923,215,0 +170771576972,213,0 +170771577020,214,0 +170771577068,213,0 +170771577116,214,0 +170771577164,214,0 +170771577212,214,0 +170771577260,214,0 +170771577307,214,0 +170771577355,214,0 +170771577403,214,0 +170771577451,214,0 +170771577501,214,0 +170771577549,214,0 +170771577597,215,0 +170771577646,214,0 +170771577694,215,0 +170771577744,215,0 +170771577792,214,0 +170771577839,214,0 +170771577887,213,0 +170771577935,213,0 +170771577985,213,0 +170771578033,214,0 +170771578081,214,0 +170771578130,214,0 +170771578178,214,0 +170771578226,214,0 +170771578275,214,0 +170771578325,214,0 +170771578373,214,0 +170771578421,214,0 +170771578469,214,0 +170771578518,214,0 +170771578566,215,0 +170771578614,215,0 +170771578662,214,0 +170771578710,214,0 +170771578758,214,0 +170771578806,214,0 +170771578854,214,0 +170771578902,214,0 +170771578949,214,0 +170771578997,214,0 +170771579045,214,0 +170771579093,214,0 +170771579141,214,0 +170771579189,215,0 +170771579238,215,0 +170771579286,215,0 +170771579334,215,0 +170771579384,215,0 +170771579432,215,0 +170771579481,215,0 +170771579529,215,0 +170771579577,214,0 +170771579625,214,0 +170771579673,214,0 +170771579721,213,0 +170771579769,214,0 +170771579817,214,0 +170771579865,214,0 +170771579913,214,0 +170771579960,214,0 +170771580008,214,0 +170771580056,214,0 +170771580104,215,0 +170771580154,215,0 +170771580202,215,0 +170771580250,215,0 +170771580297,215,0 +170771580345,215,0 +170771580395,215,0 +170771580443,215,0 +170771580491,214,0 +170771580540,213,0 +170771580589,213,0 +170771580639,214,0 +170771580687,214,0 +170771580735,214,0 +170771580783,214,0 +170771580831,214,0 +170771580878,214,0 +170771580926,214,0 +170771580974,214,0 +170771581022,214,0 +170771581072,215,0 +170771581121,215,0 +170771581170,215,0 +170771581220,214,0 +170771581268,215,0 +170771581316,215,0 +170771581365,215,0 +170771581413,213,0 +170771581461,213,0 +170771581511,214,0 +170771581559,214,0 +170771581606,214,0 +170771581654,214,0 +170771581704,214,0 +170771581752,214,0 +170771581801,214,0 +170771581849,214,0 +170771581897,215,0 +170771581945,214,0 +170771581994,215,0 +170771582042,215,0 +170771582090,215,0 +170771582138,215,0 +170771582188,215,0 +170771582237,215,0 +170771582287,214,0 +170771582336,213,0 +170771582384,213,0 +170771582433,213,0 +170771582481,213,0 +170771582531,214,0 +170771582579,213,0 +170771582628,214,0 +170771582676,214,0 +170771582726,214,0 +170771582774,214,0 +170771582821,214,0 +170771582871,214,0 +170771582920,214,0 +170771582968,215,0 +170771583018,214,0 +170771583066,214,0 +170771583114,214,0 +170771583162,214,0 +170771583211,213,0 +170771583259,213,0 +170771583307,213,0 +170771583356,213,0 +170771583404,213,0 +170771583452,213,0 +170771583500,213,0 +170771583548,214,0 +170771583598,214,0 +170771583645,214,0 +170771583695,214,0 +170771583744,214,0 +170771583792,214,0 +170771583842,214,0 +170771583890,214,0 +170771583938,214,0 +170771583985,215,0 +170771584033,214,0 +170771584081,213,0 +170771584129,213,0 +170771584179,213,0 +170771584227,213,0 +170771584276,213,0 +170771584324,214,0 +170771584372,214,0 +170771584422,214,0 +170771584470,214,0 +170771584519,214,0 +170771584569,214,0 +170771584617,215,0 +170771584664,214,0 +170771584714,215,0 +170771584762,215,0 +170771584810,215,0 +170771584858,214,0 +170771584905,215,0 +170771584953,214,0 +170771585001,213,0 +170771585049,213,0 +170771585097,213,0 +170771585145,213,0 +170771585195,213,0 +170771585242,213,0 +170771585292,213,0 +170771585340,214,0 +170771585389,214,0 +170771585437,214,0 +170771585485,214,0 +170771585535,214,0 +170771585584,215,0 +170771585634,215,0 +170771585682,214,0 +170771585731,215,0 +170771585781,215,0 +170771585829,214,0 +170771585879,213,0 +170771585928,213,0 +170771585976,213,0 +170771586024,213,0 +170771586072,213,0 +170771586120,213,0 +170771586169,213,0 +170771586217,213,0 +170771586265,214,0 +170771586313,214,0 +170771586361,214,0 +170771586409,214,0 +170771586457,214,0 +170771586505,214,0 +170771586553,214,0 +170771586600,214,0 +170771586650,215,0 +170771586700,214,0 +170771586747,213,0 +170771586797,213,0 +170771586847,213,0 +170771586894,213,0 +170771586942,213,0 +170771586990,213,0 +170771587040,213,0 +170771587089,213,0 +170771587137,214,0 +170771587185,214,0 +170771587233,214,0 +170771587282,214,0 +170771587330,214,0 +170771587380,214,0 +170771587427,214,0 +170771587475,214,0 +170771587523,214,0 +170771587573,214,0 +170771587622,214,0 +170771587670,213,0 +170771587720,213,0 +170771587768,213,0 +170771587816,213,0 +170771587864,213,0 +170771587913,213,0 +170771587963,213,0 +170771588011,213,0 +170771588058,214,0 +170771588106,214,0 +170771588154,214,0 +170771588202,214,0 +170771588252,214,0 +170771588301,214,0 +170771588351,214,0 +170771588399,214,0 +170771588446,214,0 +170771588494,214,0 +170771588544,213,0 +170771588592,213,0 +170771588640,213,0 +170771588689,213,0 +170771588737,213,0 +170771588785,213,0 +170771588833,213,0 +170771588881,213,0 +170771588929,213,0 +170771588978,214,0 +170771589026,214,0 +170771589075,214,0 +170771589123,214,0 +170771589171,214,0 +170771589219,214,0 +170771589267,214,0 +170771589316,215,0 +170771589364,214,0 +170771589412,214,0 +170771589460,213,0 +170771589510,213,0 +170771589559,213,0 +170771589607,213,0 +170771589657,213,0 +170771589705,213,0 +170771589753,213,0 +170771589801,213,0 +170771589849,213,0 +170771589897,214,0 +170771589945,213,0 +170771589992,214,0 +170771590042,214,0 +170771590090,214,0 +170771590139,214,0 +170771590187,214,0 +170771590235,214,0 +170771590283,214,0 +170771590331,213,0 +170771590379,213,0 +170771590427,213,0 +170771590476,213,0 +170771590525,213,0 +170771590573,213,0 +170771590621,213,0 +170771590669,213,0 +170771590717,214,0 +170771590765,213,0 +170771590813,214,0 +170771590861,214,0 +170771590909,214,0 +170771590957,214,0 +170771591005,214,0 +170771591052,214,0 +170771591100,214,0 +170771591148,214,0 +170771591196,213,0 +170771591244,213,0 +170771591292,213,0 +170771591340,213,0 +170771591388,213,0 +170771591438,213,0 +170771591486,213,0 +170771591535,213,0 +170771591583,213,0 +170771591633,213,0 +170771591682,214,0 +170771591730,213,0 +170771591779,214,0 +170771591827,214,0 +170771591875,214,0 +170771591923,214,0 +170771591971,214,0 +170771592019,214,0 +170771592067,214,0 +170771592115,213,0 +170771592162,213,0 +170771592210,213,0 +170771592258,213,0 +170771592305,213,0 +170771592353,213,0 +170771592401,214,0 +170771592451,214,0 +170771592499,214,0 +170771592546,214,0 +170771592594,214,0 +170771592642,214,0 +170771592690,214,0 +170771592738,214,0 +170771592786,214,0 +170771592833,214,0 +170771592881,215,0 +170771592929,214,0 +170771592977,213,0 +170771593025,213,0 +170771593073,213,0 +170771593121,213,0 +170771593168,213,0 +170771593216,214,0 +170771593264,214,0 +170771593314,214,0 +170771593362,214,0 +170771593411,214,0 +170771593459,214,0 +170771593507,214,0 +170771593555,214,0 +170771593604,214,0 +170771593652,215,0 +170771593702,214,0 +170771593751,214,0 +170771593799,214,0 +170771593849,213,0 +170771593897,213,0 +170771593944,213,0 +170771593992,213,0 +170771594042,213,0 +170771594090,214,0 +170771594138,214,0 +170771594186,214,0 +170771594234,214,0 +170771594282,214,0 +170771594331,214,0 +170771594381,214,0 +170771594428,214,0 +170771594476,214,0 +170771594526,214,0 +170771594575,214,0 +170771594623,215,0 +170771594671,214,0 +170771594721,213,0 +170771594769,213,0 +170771594817,213,0 +170771594866,214,0 +170771594914,213,0 +170771594962,214,0 +170771595010,214,0 +170771595058,214,0 +170771595106,214,0 +170771595155,214,0 +170771595203,214,0 +170771595251,214,0 +170771595299,214,0 +170771595347,215,0 +170771595396,215,0 +170771595444,214,0 +170771595494,215,0 +170771595542,215,0 +170771595590,214,0 +170771595638,213,0 +170771595685,213,0 +170771595735,213,0 +170771595785,214,0 +170771595834,214,0 +170771595882,214,0 +170771595931,214,0 +170771595979,214,0 +170771596027,214,0 +170771596075,214,0 +170771596123,214,0 +170771596171,214,0 +170771596219,215,0 +170771596268,215,0 +170771596316,215,0 +170771596364,215,0 +170771596412,214,0 +170771596460,214,0 +170771596508,213,0 +170771596556,213,0 +170771596604,213,0 +170771596652,213,0 +170771596701,214,0 +170771596749,214,0 +170771596797,214,0 +170771596845,214,0 +170771596893,214,0 +170771596941,214,0 +170771596989,214,0 +170771597038,214,0 +170771597086,214,0 +170771597134,215,0 +170771597184,214,0 +170771597233,215,0 +170771597281,215,0 +170771597331,214,0 +170771597378,213,0 +170771597428,213,0 +170771597477,213,0 +170771597525,213,0 +170771597573,213,0 +170771597623,213,0 +170771597672,213,0 +170771597722,213,0 +170771597770,214,0 +170771597819,214,0 +170771597867,214,0 +170771597915,214,0 +170771597963,214,0 +170771598011,214,0 +170771598059,214,0 +170771598109,215,0 +170771598156,215,0 +170771598204,214,0 +170771598254,214,0 +170771598301,213,0 +170771598351,213,0 +170771598400,213,0 +170771598450,213,0 +170771598498,213,0 +170771598546,213,0 +170771598594,213,0 +170771598642,213,0 +170771598690,214,0 +170771598739,213,0 +170771598787,214,0 +170771598835,214,0 +170771598883,214,0 +170771598931,214,0 +170771598978,214,0 +170771599026,214,0 +170771599074,214,0 +170771599122,214,0 +170771599170,213,0 +170771599219,213,0 +170771599269,213,0 +170771599317,213,0 +170771599365,213,0 +170771599413,213,0 +170771599462,213,0 +170771599510,213,0 +170771599558,214,0 +170771599606,213,0 +170771599654,214,0 +170771599702,214,0 +170771599749,214,0 +170771599799,214,0 +170771599847,214,0 +170771599895,214,0 +170771599943,214,0 +170771599991,214,0 +170771600038,213,0 +170771600086,213,0 +170771600134,213,0 +170771600182,213,0 +170771600230,213,0 +170771600278,213,0 +170771600326,214,0 +170771600373,214,0 +170771600423,214,0 +170771600471,214,0 +170771600519,214,0 +170771600567,214,0 +170771600616,214,0 +170771600664,214,0 +170771600714,214,0 +170771600763,214,0 +170771600813,215,0 +170771600862,213,0 +170771600910,213,0 +170771600960,213,0 +170771601008,213,0 +170771601056,213,0 +170771601105,213,0 +170771601153,213,0 +170771601201,214,0 +170771601250,214,0 +170771601298,214,0 +170771601346,214,0 +170771601394,214,0 +170771601444,214,0 +170771601493,214,0 +170771601541,214,0 +170771601589,215,0 +170771601637,214,0 +170771601684,214,0 +170771601732,213,0 +170771601780,213,0 +170771601829,213,0 +170771601879,213,0 +170771601928,213,0 +170771601978,214,0 +170771602026,214,0 +170771602074,214,0 +170771602122,214,0 +170771602169,214,0 +170771602217,214,0 +170771602265,214,0 +170771602315,215,0 +170771602363,215,0 +170771602411,214,0 +170771602460,215,0 +170771602510,214,0 +170771602558,214,0 +170771602607,213,0 +170771602655,213,0 +170771602703,213,0 +170771602751,213,0 +170771602799,213,0 +170771602846,213,0 +170771602894,213,0 +170771602944,214,0 +170771602993,214,0 +170771603041,214,0 +170771603089,214,0 +170771603137,214,0 +170771603185,214,0 +170771603233,214,0 +170771603281,215,0 +170771603329,214,0 +170771603378,214,0 +170771603426,213,0 +170771603474,213,0 +170771603524,213,0 +170771603573,213,0 +170771603621,213,0 +170771603669,213,0 +170771603717,213,0 +170771603765,213,0 +170771603813,214,0 +170771603861,214,0 +170771603909,214,0 +170771603958,214,0 +170771604006,214,0 +170771604054,214,0 +170771604102,214,0 +170771604150,214,0 +170771604199,215,0 +170771604247,214,0 +170771604297,213,0 +170771604345,213,0 +170771604393,213,0 +170771604441,213,0 +170771604489,213,0 +170771604537,213,0 +170771604585,214,0 +170771604632,214,0 +170771604680,214,0 +170771604730,214,0 +170771604779,214,0 +170771604827,214,0 +170771604875,214,0 +170771604923,214,0 +170771604973,214,0 +170771605021,214,0 +170771605069,214,0 +170771605117,214,0 +170771605166,213,0 +170771605214,213,0 +170771605262,213,0 +170771605312,213,0 +170771605359,213,0 +170771605409,214,0 +170771605459,214,0 +170771605506,214,0 +170771605556,214,0 +170771605605,214,0 +170771605653,214,0 +170771605703,214,0 +170771605752,214,0 +170771605800,214,0 +170771605850,214,0 +170771605899,214,0 +170771605949,214,0 +170771605996,213,0 +170771606046,213,0 +170771606094,213,0 +170771606142,213,0 +170771606190,213,0 +170771606238,213,0 +170771606287,213,0 +170771606335,213,0 +170771606383,214,0 +170771606431,214,0 +170771606480,214,0 +170771606528,214,0 +170771606578,214,0 +170771606626,214,0 +170771606675,215,0 +170771606723,214,0 +170771606772,214,0 +170771606820,214,0 +170771606870,213,0 +170771606918,213,0 +170771606967,213,0 +170771607017,213,0 +170771607065,213,0 +170771607113,213,0 +170771607161,213,0 +170771607208,214,0 +170771607256,214,0 +170771607304,214,0 +170771607352,214,0 +170771607400,214,0 +170771607449,214,0 +170771607497,214,0 +170771607547,215,0 +170771607595,214,0 +170771607642,214,0 +170771607690,213,0 +170771607738,213,0 +170771607786,213,0 +170771607834,213,0 +170771607883,213,0 +170771607931,213,0 +170771607979,213,0 +170771608027,214,0 +170771608075,213,0 +170771608122,214,0 +170771608170,214,0 +170771608218,214,0 +170771608266,214,0 +170771608314,214,0 +170771608362,214,0 +170771608409,214,0 +170771608457,214,0 +170771608505,214,0 +170771608553,213,0 +170771608601,213,0 +170771608650,213,0 +170771608698,213,0 +170771608746,214,0 +170771608794,214,0 +170771608841,214,0 +170771608889,214,0 +170771608937,214,0 +170771608985,214,0 +170771609033,214,0 +170771609081,214,0 +170771609129,214,0 +170771609178,214,0 +170771609226,215,0 +170771609274,214,0 +170771609324,214,0 +170771609372,214,0 +170771609421,213,0 +170771609469,214,0 +170771609517,214,0 +170771609565,214,0 +170771609613,214,0 +170771609662,214,0 +170771609710,214,0 +170771609758,214,0 +170771609808,214,0 +170771609857,215,0 +170771609905,215,0 +170771609953,215,0 +170771610003,214,0 +170771610051,215,0 +170771610099,214,0 +170771610148,214,0 +170771610196,214,0 +170771610246,214,0 +170771610295,214,0 +170771610344,214,0 +170771610394,214,0 +170771610443,214,0 +170771610491,214,0 +170771610541,214,0 +170771610589,214,0 +170771610637,214,0 +170771610685,214,0 +170771610733,214,0 +170771610782,214,0 +170771610830,215,0 +170771610880,214,0 +170771610928,215,0 +170771610975,214,0 +170771611024,214,0 +170771611073,213,0 +170771611122,213,0 +170771611170,213,0 +170771611220,213,0 +170771611268,213,0 +170771611316,213,0 +170771611364,214,0 +170771611413,213,0 +170771611461,213,0 +170771611511,214,0 +170771611558,214,0 +170771611608,214,0 +170771611656,214,0 +170771611705,214,0 +170771611753,214,0 +170771611801,214,0 +170771611849,214,0 +170771611897,214,0 +170771611945,213,0 +170771611993,213,0 +170771612041,213,0 +170771612090,213,0 +170771612140,213,0 +170771612187,214,0 +170771612235,214,0 +170771612285,214,0 +170771612333,214,0 +170771612381,214,0 +170771612430,214,0 +170771612478,214,0 +170771612526,214,0 +170771612576,215,0 +170771612625,215,0 +170771612673,215,0 +170771612722,214,0 +170771612770,213,0 +170771612818,213,0 +170771612866,213,0 +170771612914,214,0 +170771612962,214,0 +170771613010,214,0 +170771613058,214,0 +170771613107,214,0 +170771613157,214,0 +170771613206,215,0 +170771613254,214,0 +170771613304,214,0 +170771613352,214,0 +170771613400,214,0 +170771613447,214,0 +170771613497,214,0 +170771613546,214,0 +170771613596,213,0 +170771613645,213,0 +170771613693,213,0 +170771613743,213,0 +170771613791,213,0 +170771613839,214,0 +170771613887,214,0 +170771613935,214,0 +170771613982,214,0 +170771614032,214,0 +170771614082,214,0 +170771614129,214,0 +170771614177,214,0 +170771614227,214,0 +170771614275,214,0 +170771614324,214,0 +170771614374,214,0 +170771614423,214,0 +170771614473,213,0 +170771614521,213,0 +170771614570,213,0 +170771614620,213,0 +170771614669,213,0 +170771614717,213,0 +170771614765,214,0 +170771614813,214,0 +170771614861,214,0 +170771614909,214,0 +170771614957,214,0 +170771615006,214,0 +170771615056,214,0 +170771615103,214,0 +170771615151,215,0 +170771615199,214,0 +170771615247,214,0 +170771615295,213,0 +170771615345,213,0 +170771615394,213,0 +170771615442,213,0 +170771615490,213,0 +170771615538,213,0 +170771615587,213,0 +170771615635,213,0 +170771615685,214,0 +170771615733,214,0 +170771615782,214,0 +170771615830,214,0 +170771615878,214,0 +170771615926,214,0 +170771615976,214,0 +170771616024,214,0 +170771616073,214,0 +170771616123,213,0 +170771616171,213,0 +170771616220,213,0 +170771616270,213,0 +170771616319,213,0 +170771616369,214,0 +170771616418,214,0 +170771616466,214,0 +170771616516,214,0 +170771616564,214,0 +170771616613,214,0 +170771616661,214,0 +170771616709,214,0 +170771616758,215,0 +170771616806,215,0 +170771616854,215,0 +170771616902,214,0 +170771616952,213,0 +170771617001,213,0 +170771617051,213,0 +170771617099,213,0 +170771617147,213,0 +170771617194,214,0 +170771617244,214,0 +170771617294,214,0 +170771617341,214,0 +170771617389,214,0 +170771617437,214,0 +170771617485,214,0 +170771617535,214,0 +170771617584,214,0 +170771617632,215,0 +170771617682,215,0 +170771617730,214,0 +170771617779,214,0 +170771617827,213,0 +170771617875,213,0 +170771617923,213,0 +170771617972,213,0 +170771618020,214,0 +170771618070,214,0 +170771618119,214,0 +170771618169,214,0 +170771618217,214,0 +170771618265,214,0 +170771618313,214,0 +170771618361,214,0 +170771618409,215,0 +170771618456,215,0 +170771618504,215,0 +170771618552,214,0 +170771618600,214,0 +170771618648,213,0 +170771618696,213,0 +170771618744,213,0 +170771618794,214,0 +170771618843,214,0 +170771618891,214,0 +170771618939,214,0 +170771618988,214,0 +170771619036,214,0 +170771619084,214,0 +170771619133,214,0 +170771619181,214,0 +170771619231,215,0 +170771619279,215,0 +170771619328,215,0 +170771619376,215,0 +170771619426,215,0 +170771619473,214,0 +170771619521,213,0 +170771619569,213,0 +170771619617,213,0 +170771619665,213,0 +170771619713,214,0 +170771619761,214,0 +170771619809,214,0 +170771619857,214,0 +170771619906,214,0 +170771619954,214,0 +170771620002,214,0 +170771620050,215,0 +170771620098,215,0 +170771620146,215,0 +170771620194,214,0 +170771620242,214,0 +170771620290,214,0 +170771620338,213,0 +170771620387,213,0 +170771620437,214,0 +170771620485,214,0 +170771620533,214,0 +170771620581,214,0 +170771620629,214,0 +170771620678,214,0 +170771620726,214,0 +170771620774,214,0 +170771620823,214,0 +170771620873,214,0 +170771620921,214,0 +170771620969,215,0 +170771621017,214,0 +170771621065,215,0 +170771621113,215,0 +170771621160,213,0 +170771621208,213,0 +170771621258,213,0 +170771621306,213,0 +170771621355,214,0 +170771621403,214,0 +170771621451,214,0 +170771621501,214,0 +170771621548,214,0 +170771621598,214,0 +170771621646,214,0 +170771621695,214,0 +170771621745,215,0 +170771621793,214,0 +170771621841,215,0 +170771621890,214,0 +170771621938,214,0 +170771621986,214,0 +170771622035,213,0 +170771622085,213,0 +170771622133,213,0 +170771622181,214,0 +170771622230,214,0 +170771622280,214,0 +170771622328,214,0 +170771622377,214,0 +170771622425,214,0 +170771622473,215,0 +170771622521,215,0 +170771622569,215,0 +170771622617,214,0 +170771622665,215,0 +170771622713,215,0 +170771622761,214,0 +170771622809,213,0 +170771622857,213,0 +170771622906,213,0 +170771622956,213,0 +170771623004,213,0 +170771623052,213,0 +170771623099,214,0 +170771623149,214,0 +170771623197,214,0 +170771623246,214,0 +170771623294,214,0 +170771623342,214,0 +170771623390,214,0 +170771623438,214,0 +170771623487,214,0 +170771623537,214,0 +170771623585,215,0 +170771623633,214,0 +170771623681,213,0 +170771623729,213,0 +170771623778,213,0 +170771623826,213,0 +170771623876,213,0 +170771623925,213,0 +170771623975,213,0 +170771624024,213,0 +170771624072,214,0 +170771624120,214,0 +170771624170,214,0 +170771624217,214,0 +170771624265,214,0 +170771624313,214,0 +170771624361,214,0 +170771624411,214,0 +170771624459,214,0 +170771624507,213,0 +170771624556,213,0 +170771624604,213,0 +170771624654,213,0 +170771624701,213,0 +170771624751,214,0 +170771624799,214,0 +170771624847,214,0 +170771624895,214,0 +170771624943,214,0 +170771624992,214,0 +170771625040,214,0 +170771625090,215,0 +170771625139,214,0 +170771625187,214,0 +170771625235,214,0 +170771625284,214,0 +170771625332,213,0 +170771625380,213,0 +170771625428,213,0 +170771625476,213,0 +170771625524,213,0 +170771625574,214,0 +170771625623,214,0 +170771625671,214,0 +170771625719,214,0 +170771625767,214,0 +170771625815,214,0 +170771625863,214,0 +170771625910,215,0 +170771625958,215,0 +170771626006,215,0 +170771626054,215,0 +170771626102,214,0 +170771626150,214,0 +170771626199,213,0 +170771626249,213,0 +170771626297,213,0 +170771626346,213,0 +170771626394,213,0 +170771626442,213,0 +170771626492,214,0 +170771626540,214,0 +170771626588,214,0 +170771626637,214,0 +170771626687,214,0 +170771626735,214,0 +170771626782,214,0 +170771626830,214,0 +170771626878,214,0 +170771626928,214,0 +170771626976,214,0 +170771627024,213,0 +170771627071,213,0 +170771627119,213,0 +170771627169,213,0 +170771627217,214,0 +170771627266,213,0 +170771627314,214,0 +170771627362,214,0 +170771627412,214,0 +170771627461,214,0 +170771627509,215,0 +170771627557,215,0 +170771627605,214,0 +170771627653,215,0 +170771627701,215,0 +170771627749,215,0 +170771627797,214,0 +170771627846,213,0 +170771627894,214,0 +170771627942,213,0 +170771627992,214,0 +170771628040,214,0 +170771628088,214,0 +170771628137,214,0 +170771628187,214,0 +170771628234,214,0 +170771628284,214,0 +170771628332,214,0 +170771628380,215,0 +170771628428,215,0 +170771628477,215,0 +170771628525,215,0 +170771628573,214,0 +170771628621,214,0 +170771628669,213,0 +170771628717,213,0 +170771628764,214,0 +170771628814,214,0 +170771628862,214,0 +170771628911,214,0 +170771628959,214,0 +170771629007,214,0 +170771629055,214,0 +170771629104,214,0 +170771629154,215,0 +170771629202,214,0 +170771629251,214,0 +170771629299,215,0 +170771629347,215,0 +170771629397,214,0 +170771629446,214,0 +170771629494,214,0 +170771629542,213,0 +170771629591,213,0 +170771629639,213,0 +170771629687,214,0 +170771629735,214,0 +170771629785,214,0 +170771629832,214,0 +170771629880,214,0 +170771629928,214,0 +170771629978,214,0 +170771630026,215,0 +170771630074,214,0 +170771630123,215,0 +170771630173,215,0 +170771630220,215,0 +170771630268,215,0 +170771630316,214,0 +170771630364,213,0 +170771630414,213,0 +170771630463,213,0 +170771630513,214,0 +170771630561,214,0 +170771630609,214,0 +170771630657,214,0 +170771630706,214,0 +170771630754,214,0 +170771630802,214,0 +170771630850,214,0 +170771630900,215,0 +170771630948,215,0 +170771630995,214,0 +170771631045,214,0 +170771631093,215,0 +170771631141,215,0 +170771631189,213,0 +170771631237,213,0 +170771631285,214,0 +170771631332,214,0 +170771631382,214,0 +170771631430,214,0 +170771631479,214,0 +170771631527,214,0 +170771631577,214,0 +170771631624,214,0 +170771631672,214,0 +170771631720,214,0 +170771631768,214,0 +170771631816,214,0 +170771631864,214,0 +170771631912,214,0 +170771631960,214,0 +170771632008,214,0 +170771632057,213,0 +170771632105,213,0 +170771632153,214,0 +170771632202,214,0 +170771632250,214,0 +170771632298,214,0 +170771632347,214,0 +170771632397,214,0 +170771632445,214,0 +170771632492,214,0 +170771632540,214,0 +170771632588,214,0 +170771632636,214,0 +170771632684,215,0 +170771632732,214,0 +170771632782,215,0 +170771632829,214,0 +170771632877,213,0 +170771632925,213,0 +170771632973,213,0 +170771633022,213,0 +170771633070,214,0 +170771633118,214,0 +170771633166,214,0 +170771633214,214,0 +170771633264,214,0 +170771633311,214,0 +170771633361,215,0 +170771633411,215,0 +170771633458,215,0 +170771633508,215,0 +170771633556,214,0 +170771633604,214,0 +170771633652,214,0 +170771633701,214,0 +170771633749,214,0 +170771633799,214,0 +170771633847,214,0 +170771633896,214,0 +170771633944,214,0 +170771633993,214,0 +170771634041,214,0 +170771634089,214,0 +170771634137,215,0 +170771634185,215,0 +170771634235,215,0 +170771634284,215,0 +170771634334,215,0 +170771634381,215,0 +170771634431,215,0 +170771634480,215,0 +170771634530,214,0 +170771634579,213,0 +170771634627,214,0 +170771634675,214,0 +170771634723,214,0 +170771634772,214,0 +170771634822,214,0 +170771634872,214,0 +170771634919,214,0 +170771634967,215,0 +170771635015,215,0 +170771635063,215,0 +170771635113,215,0 +170771635162,215,0 +170771635210,215,0 +170771635258,215,0 +170771635306,214,0 +170771635354,214,0 +170771635402,213,0 +170771635450,213,0 +170771635498,213,0 +170771635546,213,0 +170771635595,214,0 +170771635643,214,0 +170771635691,214,0 +170771635739,214,0 +170771635787,214,0 +170771635837,214,0 +170771635885,214,0 +170771635934,215,0 +170771635984,215,0 +170771636031,215,0 +170771636081,215,0 +170771636129,214,0 +170771636177,214,0 +170771636225,213,0 +170771636273,213,0 +170771636322,213,0 +170771636372,213,0 +170771636420,214,0 +170771636468,214,0 +170771636517,214,0 +170771636565,214,0 +170771636613,214,0 +170771636661,214,0 +170771636710,214,0 +170771636758,214,0 +170771636806,214,0 +170771636854,215,0 +170771636902,214,0 +170771636950,215,0 +170771636998,214,0 +170771637046,213,0 +170771637094,213,0 +170771637143,213,0 +170771637193,213,0 +170771637242,213,0 +170771637290,213,0 +170771637340,213,0 +170771637388,214,0 +170771637437,214,0 +170771637485,214,0 +170771637535,214,0 +170771637584,214,0 +170771637632,214,0 +170771637682,214,0 +170771637730,214,0 +170771637777,214,0 +170771637825,214,0 +170771637875,213,0 +170771637924,213,0 +170771637972,213,0 +170771638022,213,0 +170771638070,213,0 +170771638118,213,0 +170771638165,213,0 +170771638213,213,0 +170771638261,213,0 +170771638309,213,0 +170771638359,213,0 +170771638407,214,0 +170771638456,214,0 +170771638506,214,0 +170771638554,214,0 +170771638603,214,0 +170771638651,214,0 +170771638699,213,0 +170771638747,213,0 +170771638795,213,0 +170771638844,213,0 +170771638892,213,0 +170771638940,213,0 +170771638988,213,0 +170771639038,214,0 +170771639085,214,0 +170771639133,214,0 +170771639181,214,0 +170771639229,214,0 +170771639277,214,0 +170771639327,215,0 +170771639375,214,0 +170771639424,215,0 +170771639473,214,0 +170771639521,214,0 +170771639571,213,0 +170771639619,213,0 +170771639668,214,0 +170771639718,213,0 +170771639765,214,0 +170771639813,214,0 +170771639861,214,0 +170771639911,214,0 +170771639958,214,0 +170771640006,214,0 +170771640054,214,0 +170771640102,215,0 +170771640150,215,0 +170771640197,214,0 +170771640245,215,0 +170771640293,214,0 +170771640341,214,0 +170771640389,214,0 +170771640437,214,0 +170771640484,214,0 +170771640532,214,0 +170771640580,214,0 +170771640628,214,0 +170771640676,214,0 +170771640724,214,0 +170771640772,214,0 +170771640820,214,0 +170771640868,214,0 +170771640915,214,0 +170771640965,214,0 +170771641013,214,0 +170771641060,215,0 +170771641110,215,0 +170771641157,214,0 +170771641205,214,0 +170771641253,214,0 +170771641301,214,0 +170771641348,214,0 +170771641396,214,0 +170771641444,214,0 +170771641492,214,0 +170771641541,214,0 +170771641589,214,0 +170771641637,214,0 +170771641685,214,0 +170771641733,214,0 +170771641781,214,0 +170771641828,214,0 +170771641876,214,0 +170771641926,215,0 +170771641975,214,0 +170771642023,214,0 +170771642071,213,0 +170771642121,213,0 +170771642168,213,0 +170771642216,214,0 +170771642266,214,0 +170771642315,214,0 +170771642365,214,0 +170771642414,214,0 +170771642464,214,0 +170771642513,215,0 +170771642561,214,0 +170771642609,215,0 +170771642657,214,0 +170771642707,215,0 +170771642756,215,0 +170771642804,214,0 +170771642852,214,0 +170771642900,214,0 +170771642950,214,0 +170771642999,214,0 +170771643049,214,0 +170771643096,214,0 +170771643146,214,0 +170771643194,214,0 +170771643243,214,0 +170771643291,214,0 +170771643339,215,0 +170771643387,215,0 +170771643436,215,0 +170771643484,215,0 +170771643532,215,0 +170771643580,215,0 +170771643630,214,0 +170771643678,215,0 +170771643727,213,0 +170771643777,214,0 +170771643825,214,0 +170771643872,214,0 +170771643922,214,0 +170771643970,214,0 +170771644018,214,0 +170771644067,214,0 +170771644115,215,0 +170771644163,214,0 +170771644213,215,0 +170771644262,215,0 +170771644310,215,0 +170771644358,215,0 +170771644408,215,0 +170771644456,215,0 +170771644504,214,0 +170771644551,214,0 +170771644599,214,0 +170771644649,214,0 +170771644698,214,0 +170771644748,214,0 +170771644796,214,0 +170771644845,214,0 +170771644893,214,0 +170771644941,214,0 +170771644991,214,0 +170771645038,214,0 +170771645086,215,0 +170771645136,215,0 +170771645184,215,0 +170771645232,215,0 +170771645280,215,0 +170771645327,214,0 +170771645377,213,0 +170771645425,213,0 +170771645473,214,0 +170771645521,214,0 +170771645569,214,0 +170771645618,214,0 +170771645666,214,0 +170771645714,214,0 +170771645762,214,0 +170771645811,214,0 +170771645859,214,0 +170771645907,214,0 +170771645955,215,0 +170771646005,215,0 +170771646053,215,0 +170771646100,215,0 +170771646148,214,0 +170771646196,214,0 +170771646244,213,0 +170771646292,213,0 +170771646340,213,0 +170771646389,214,0 +170771646439,214,0 +170771646487,214,0 +170771646536,214,0 +170771646584,214,0 +170771646632,214,0 +170771646680,214,0 +170771646728,215,0 +170771646776,215,0 +170771646823,215,0 +170771646871,215,0 +170771646919,215,0 +170771646967,214,0 +170771647015,214,0 +170771647065,213,0 +170771647114,214,0 +170771647162,213,0 +170771647210,214,0 +170771647258,214,0 +170771647306,214,0 +170771647354,214,0 +170771647402,214,0 +170771647451,215,0 +170771647499,215,0 +170771647547,215,0 +170771647597,215,0 +170771647645,215,0 +170771647693,215,0 +170771647742,215,0 +170771647790,215,0 +170771647839,214,0 +170771647887,213,0 +170771647935,213,0 +170771647983,213,0 +170771648031,213,0 +170771648080,213,0 +170771648128,214,0 +170771648176,214,0 +170771648226,214,0 +170771648275,214,0 +170771648323,214,0 +170771648373,214,0 +170771648420,214,0 +170771648468,215,0 +170771648516,215,0 +170771648566,215,0 +170771648614,215,0 +170771648662,214,0 +170771648710,213,0 +170771648757,213,0 +170771648805,213,0 +170771648853,213,0 +170771648901,214,0 +170771648949,214,0 +170771648997,214,0 +170771649046,214,0 +170771649094,214,0 +170771649142,214,0 +170771649190,214,0 +170771649238,215,0 +170771649287,215,0 +170771649335,215,0 +170771649383,214,0 +170771649433,215,0 +170771649482,214,0 +170771649530,214,0 +170771649578,213,0 +170771649627,213,0 +170771649677,213,0 +170771649725,213,0 +170771649772,214,0 +170771649820,214,0 +170771649868,214,0 +170771649916,214,0 +170771649964,214,0 +170771650013,214,0 +170771650061,214,0 +170771650109,215,0 +170771650157,214,0 +170771650205,214,0 +170771650253,215,0 +170771650301,214,0 +170771650349,214,0 +170771650397,213,0 +170771650445,213,0 +170771650493,213,0 +170771650540,213,0 +170771650588,213,0 +170771650638,214,0 +170771650686,213,0 +170771650734,214,0 +170771650782,214,0 +170771650830,214,0 +170771650879,214,0 +170771650929,214,0 +170771650977,214,0 +170771651024,214,0 +170771651072,214,0 +170771651120,214,0 +170771651168,215,0 +170771651216,213,0 +170771651265,213,0 +170771651315,213,0 +170771651363,213,0 +170771651411,213,0 +170771651458,213,0 +170771651508,213,0 +170771651556,213,0 +170771651604,214,0 +170771651651,214,0 +170771651699,214,0 +170771651748,214,0 +170771651796,214,0 +170771651844,214,0 +170771651892,214,0 +170771651940,214,0 +170771651989,214,0 +170771652037,213,0 +170771652087,213,0 +170771652136,213,0 +170771652184,213,0 +170771652232,213,0 +170771652280,214,0 +170771652328,214,0 +170771652377,214,0 +170771652425,214,0 +170771652473,214,0 +170771652521,214,0 +170771652570,214,0 +170771652618,215,0 +170771652666,214,0 +170771652714,215,0 +170771652762,214,0 +170771652811,214,0 +170771652861,213,0 +170771652909,213,0 +170771652958,213,0 +170771653008,213,0 +170771653056,213,0 +170771653103,213,0 +170771653152,214,0 +170771653201,214,0 +170771653249,214,0 +170771653297,214,0 +170771653345,214,0 +170771653394,214,0 +170771653442,215,0 +170771653492,215,0 +170771653539,215,0 +170771653587,214,0 +170771653635,214,0 +170771653683,213,0 +170771653731,213,0 +170771653778,213,0 +170771653826,213,0 +170771653874,213,0 +170771653922,214,0 +170771653970,214,0 +170771654018,214,0 +170771654065,214,0 +170771654113,214,0 +170771654161,214,0 +170771654209,214,0 +170771654257,214,0 +170771654305,215,0 +170771654353,215,0 +170771654401,215,0 +170771654448,215,0 +170771654496,214,0 +170771654544,213,0 +170771654592,213,0 +170771654641,213,0 +170771654689,214,0 +170771654737,214,0 +170771654785,214,0 +170771654833,214,0 +170771654880,214,0 +170771654928,214,0 +170771654976,214,0 +170771655026,214,0 +170771655074,215,0 +170771655123,214,0 +170771655171,214,0 +170771655221,215,0 +170771655268,214,0 +170771655316,215,0 +170771655364,214,0 +170771655413,214,0 +170771655461,214,0 +170771655510,213,0 +170771655558,214,0 +170771655606,214,0 +170771655654,214,0 +170771655703,214,0 +170771655751,214,0 +170771655799,214,0 +170771655846,215,0 +170771655894,215,0 +170771655942,215,0 +170771655991,215,0 +170771656039,215,0 +170771656087,214,0 +170771656135,214,0 +170771656183,214,0 +170771656231,214,0 +170771656278,214,0 +170771656326,214,0 +170771656374,214,0 +170771656422,214,0 +170771656470,214,0 +170771656519,214,0 +170771656567,214,0 +170771656614,214,0 +170771656662,214,0 +170771656710,214,0 +170771656758,214,0 +170771656806,214,0 +170771656854,214,0 +170771656903,214,0 +170771656951,214,0 +170771656999,214,0 +170771657047,213,0 +170771657096,214,0 +170771657144,214,0 +170771657192,214,0 +170771657240,214,0 +170771657288,214,0 +170771657335,214,0 +170771657383,214,0 +170771657431,214,0 +170771657479,214,0 +170771657527,214,0 +170771657575,215,0 +170771657623,215,0 +170771657670,215,0 +170771657718,215,0 +170771657766,215,0 +170771657816,214,0 +170771657863,214,0 +170771657913,214,0 +170771657960,214,0 +170771658008,214,0 +170771658056,214,0 +170771658104,214,0 +170771658152,214,0 +170771658200,214,0 +170771658247,215,0 +170771658295,214,0 +170771658343,214,0 +170771658391,215,0 +170771658439,215,0 +170771658488,215,0 +170771658536,215,0 +170771658585,214,0 +170771658633,214,0 +170771658681,214,0 +170771658729,214,0 +170771658776,214,0 +170771658826,214,0 +170771658874,214,0 +170771658921,214,0 +170771658969,214,0 +170771659017,214,0 +170771659065,214,0 +170771659114,215,0 +170771659162,215,0 +170771659210,215,0 +170771659258,215,0 +170771659306,215,0 +170771659355,215,0 +170771659403,214,0 +170771659451,214,0 +170771659499,214,0 +170771659546,213,0 +170771659594,213,0 +170771659642,213,0 +170771659690,213,0 +170771659738,214,0 +170771659786,214,0 +170771659833,214,0 +170771659881,214,0 +170771659929,214,0 +170771659977,214,0 +170771660025,214,0 +170771660072,214,0 +170771660120,215,0 +170771660168,215,0 +170771660216,215,0 +170771660264,215,0 +170771660311,215,0 +170771660359,215,0 +170771660407,215,0 +170771660455,215,0 +170771660503,215,0 +170771660551,215,0 +170771660600,215,0 +170771660648,215,0 +170771660696,214,0 +170771660743,214,0 +170771660791,213,0 +170771660839,213,0 +170771660888,213,0 +170771660936,213,0 +170771660984,214,0 +170771661032,214,0 +170771661081,214,0 +170771661129,214,0 +170771661177,214,0 +170771661225,214,0 +170771661273,214,0 +170771661320,214,0 +170771661368,214,0 +170771661416,215,0 +170771661464,215,0 +170771661511,215,0 +170771661559,215,0 +170771661609,213,0 +170771661658,213,0 +170771661706,213,0 +170771661754,213,0 +170771661803,214,0 +170771661851,213,0 +170771661900,214,0 +170771661948,214,0 +170771661998,214,0 +170771662046,214,0 +170771662094,214,0 +170771662142,214,0 +170771662191,215,0 +170771662239,215,0 +170771662287,214,0 +170771662336,215,0 +170771662384,215,0 +170771662434,213,0 +170771662482,213,0 +170771662530,213,0 +170771662577,213,0 +170771662627,213,0 +170771662675,214,0 +170771662723,214,0 +170771662771,214,0 +170771662819,214,0 +170771662866,214,0 +170771662914,214,0 +170771662962,214,0 +170771663010,214,0 +170771663060,214,0 +170771663109,215,0 +170771663157,214,0 +170771663205,214,0 +170771663253,213,0 +170771663301,213,0 +170771663349,213,0 +170771663398,213,0 +170771663446,213,0 +170771663494,214,0 +170771663542,214,0 +170771663590,214,0 +170771663637,214,0 +170771663685,214,0 +170771663733,214,0 +170771663781,215,0 +170771663830,214,0 +170771663880,214,0 +170771663928,215,0 +170771663976,215,0 +170771664023,214,0 +170771664071,214,0 +170771664119,213,0 +170771664167,213,0 +170771664216,213,0 +170771664264,214,0 +170771664314,214,0 +170771664362,214,0 +170771664410,214,0 +170771664457,214,0 +170771664507,214,0 +170771664556,215,0 +170771664604,214,0 +170771664652,215,0 +170771664702,215,0 +170771664750,215,0 +170771664798,215,0 +170771664846,214,0 +170771664893,214,0 +170771664941,213,0 +170771664989,213,0 +170771665037,214,0 +170771665085,213,0 +170771665133,214,0 +170771665181,214,0 +170771665228,214,0 +170771665276,214,0 +170771665324,214,0 +170771665372,215,0 +170771665419,214,0 +170771665469,215,0 +170771665517,215,0 +170771665565,215,0 +170771665613,215,0 +170771665661,214,0 +170771665708,214,0 +170771665758,213,0 +170771665806,213,0 +170771665854,214,0 +170771665902,214,0 +170771665949,214,0 +170771665997,214,0 +170771666045,214,0 +170771666093,214,0 +170771666141,214,0 +170771666189,214,0 +170771666237,214,0 +170771666285,214,0 +170771666334,215,0 +170771666384,215,0 +170771666431,215,0 +170771666481,215,0 +170771666529,214,0 +170771666578,213,0 +170771666628,213,0 +170771666677,213,0 +170771666725,213,0 +170771666775,213,0 +170771666823,214,0 +170771666872,214,0 +170771666920,214,0 +170771666970,214,0 +170771667018,214,0 +170771667066,214,0 +170771667114,214,0 +170771667163,215,0 +170771667211,214,0 +170771667259,214,0 +170771667309,214,0 +170771667358,214,0 +170771667406,213,0 +170771667456,213,0 +170771667503,213,0 +170771667553,213,0 +170771667601,213,0 +170771667649,213,0 +170771667697,214,0 +170771667745,214,0 +170771667792,214,0 +170771667840,214,0 +170771667888,214,0 +170771667938,213,0 +170771667987,214,0 +170771668037,214,0 +170771668086,214,0 +170771668134,214,0 +170771668182,214,0 +170771668230,214,0 +170771668278,213,0 +170771668326,213,0 +170771668375,213,0 +170771668423,213,0 +170771668471,214,0 +170771668521,214,0 +170771668569,214,0 +170771668617,213,0 +170771668665,214,0 +170771668714,214,0 +170771668762,214,0 +170771668810,214,0 +170771668859,214,0 +170771668907,214,0 +170771668955,214,0 +170771669003,214,0 +170771669051,214,0 +170771669099,213,0 +170771669148,213,0 +170771669196,214,0 +170771669244,213,0 +170771669292,213,0 +170771669340,214,0 +170771669388,214,0 +170771669436,214,0 +170771669485,214,0 +170771669533,214,0 +170771669581,214,0 +170771669629,214,0 +170771669679,215,0 +170771669726,215,0 +170771669774,215,0 +170771669824,215,0 +170771669872,214,0 +170771669919,214,0 +170771669967,214,0 +170771670015,214,0 +170771670065,214,0 +170771670113,214,0 +170771670160,214,0 +170771670208,215,0 +170771670256,214,0 +170771670304,215,0 +170771670354,214,0 +170771670401,215,0 +170771670451,215,0 +170771670499,215,0 +170771670547,215,0 +170771670596,215,0 +170771670644,215,0 +170771670693,215,0 +170771670743,214,0 +170771670792,214,0 +170771670840,214,0 +170771670890,214,0 +170771670938,214,0 +170771670986,214,0 +170771671034,214,0 +170771671082,215,0 +170771671130,215,0 +170771671178,215,0 +170771671226,215,0 +170771671274,215,0 +170771671323,215,0 +170771671373,215,0 +170771671422,215,0 +170771671472,214,0 +170771671520,214,0 +170771671568,214,0 +170771671617,214,0 +170771671665,214,0 +170771671713,214,0 +170771671761,214,0 +170771671808,214,0 +170771671856,214,0 +170771671906,214,0 +170771671953,214,0 +170771672003,215,0 +170771672051,214,0 +170771672099,214,0 +170771672147,215,0 +170771672195,215,0 +170771672244,215,0 +170771672292,214,0 +170771672342,214,0 +170771672389,214,0 +170771672437,213,0 +170771672485,214,0 +170771672533,214,0 +170771672581,214,0 +170771672629,214,0 +170771672677,214,0 +170771672726,214,0 +170771672776,214,0 +170771672824,214,0 +170771672872,215,0 +170771672920,215,0 +170771672968,215,0 +170771673016,215,0 +170771673063,215,0 +170771673113,215,0 +170771673161,214,0 +170771673208,214,0 +170771673256,214,0 +170771673304,214,0 +170771673352,214,0 +170771673400,214,0 +170771673450,214,0 +170771673497,214,0 +170771673547,214,0 +170771673595,214,0 +170771673643,215,0 +170771673692,215,0 +170771673740,215,0 +170771673788,215,0 +170771673836,215,0 +170771673884,215,0 +170771673932,215,0 +170771673981,214,0 +170771674029,214,0 +170771674078,214,0 +170771674128,214,0 +170771674177,214,0 +170771674225,214,0 +170771674273,214,0 +170771674322,214,0 +170771674370,214,0 +170771674420,215,0 +170771674469,215,0 +170771674517,215,0 +170771674565,215,0 +170771674615,215,0 +170771674664,215,0 +170771674714,215,0 +170771674761,215,0 +170771674809,215,0 +170771674859,214,0 +170771674907,213,0 +170771674955,214,0 +170771675003,214,0 +170771675052,214,0 +170771675100,214,0 +170771675148,214,0 +170771675196,214,0 +170771675244,214,0 +170771675292,214,0 +170771675341,215,0 +170771675389,215,0 +170771675437,215,0 +170771675486,215,0 +170771675534,215,0 +170771675582,215,0 +170771675629,214,0 +170771675679,215,0 +170771675727,214,0 +170771675775,213,0 +170771675823,213,0 +170771675871,213,0 +170771675918,214,0 +170771675968,214,0 +170771676016,214,0 +170771676065,214,0 +170771676115,214,0 +170771676164,214,0 +170771676214,214,0 +170771676262,215,0 +170771676311,214,0 +170771676361,215,0 +170771676409,214,0 +170771676457,215,0 +170771676506,214,0 +170771676556,213,0 +170771676603,213,0 +170771676653,213,0 +170771676701,213,0 +170771676749,214,0 +170771676797,214,0 +170771676845,214,0 +170771676894,214,0 +170771676942,214,0 +170771676990,214,0 +170771677038,214,0 +170771677086,215,0 +170771677134,214,0 +170771677183,214,0 +170771677233,215,0 +170771677282,214,0 +170771677330,215,0 +170771677378,214,0 +170771677426,213,0 +170771677474,213,0 +170771677524,213,0 +170771677571,214,0 +170771677619,214,0 +170771677669,214,0 +170771677717,214,0 +170771677765,214,0 +170771677812,214,0 +170771677862,214,0 +170771677911,214,0 +170771677959,215,0 +170771678009,215,0 +170771678058,215,0 +170771678106,215,0 +170771678154,215,0 +170771678202,214,0 +170771678251,213,0 +170771678299,213,0 +170771678347,213,0 +170771678397,213,0 +170771678445,214,0 +170771678493,214,0 +170771678540,214,0 +170771678590,214,0 +170771678639,214,0 +170771678687,214,0 +170771678735,214,0 +170771678785,214,0 +170771678833,215,0 +170771678880,215,0 +170771678928,214,0 +170771678976,214,0 +170771679024,214,0 +170771679074,213,0 +170771679123,213,0 +170771679171,213,0 +170771679219,214,0 +170771679267,214,0 +170771679315,213,0 +170771679365,214,0 +170771679413,214,0 +170771679462,214,0 +170771679510,214,0 +170771679559,214,0 +170771679609,214,0 +170771679657,215,0 +170771679705,214,0 +170771679754,214,0 +170771679802,214,0 +170771679850,214,0 +170771679898,213,0 +170771679946,213,0 +170771679994,213,0 +170771680042,213,0 +170771680091,214,0 +170771680139,214,0 +170771680187,214,0 +170771680236,214,0 +170771680284,214,0 +170771680332,214,0 +170771680382,214,0 +170771680430,215,0 +170771680479,214,0 +170771680529,215,0 +170771680576,215,0 +170771680624,214,0 +170771680672,213,0 +170771680720,213,0 +170771680768,213,0 +170771680816,213,0 +170771680865,213,0 +170771680915,214,0 +170771680963,214,0 +170771681011,214,0 +170771681058,214,0 +170771681106,214,0 +170771681156,214,0 +170771681205,214,0 +170771681255,215,0 +170771681304,215,0 +170771681352,214,0 +170771681402,214,0 +170771681451,214,0 +170771681499,214,0 +170771681547,213,0 +170771681596,214,0 +170771681644,214,0 +170771681692,214,0 +170771681740,214,0 +170771681790,214,0 +170771681839,214,0 +170771681889,214,0 +170771681937,214,0 +170771681986,214,0 +170771682034,215,0 +170771682082,215,0 +170771682130,215,0 +170771682177,215,0 +170771682225,214,0 +170771682273,214,0 +170771682323,213,0 +170771682371,213,0 +170771682419,214,0 +170771682466,214,0 +170771682514,214,0 +170771682562,214,0 +170771682610,214,0 +170771682658,214,0 +170771682706,214,0 +170771682754,215,0 +170771682803,215,0 +170771682853,215,0 +170771682901,215,0 +170771682949,215,0 +170771682997,215,0 +170771683044,216,0 +170771683092,214,0 +170771683140,213,0 +170771683188,214,0 +170771683236,214,0 +170771683284,214,0 +170771683332,214,0 +170771683380,214,0 +170771683428,214,0 +170771683477,214,0 +170771683525,214,0 +170771683574,215,0 +170771683622,214,0 +170771683672,215,0 +170771683720,215,0 +170771683768,215,0 +170771683816,215,0 +170771683864,215,0 +170771683912,214,0 +170771683960,213,0 +170771684007,214,0 +170771684055,214,0 +170771684103,214,0 +170771684153,214,0 +170771684202,214,0 +170771684250,214,0 +170771684298,214,0 +170771684346,214,0 +170771684394,214,0 +170771684442,215,0 +170771684490,214,0 +170771684539,215,0 +170771684587,214,0 +170771684635,215,0 +170771684683,214,0 +170771684732,214,0 +170771684780,214,0 +170771684828,214,0 +170771684878,214,0 +170771684926,214,0 +170771684974,214,0 +170771685021,214,0 +170771685069,214,0 +170771685117,214,0 +170771685165,214,0 +170771685214,215,0 +170771685264,214,0 +170771685312,215,0 +170771685360,215,0 +170771685407,215,0 +170771685455,215,0 +170771685503,214,0 +170771685553,214,0 +170771685601,214,0 +170771685650,214,0 +170771685698,214,0 +170771685746,214,0 +170771685794,214,0 +170771685843,214,0 +170771685891,214,0 +170771685939,214,0 +170771685987,214,0 +170771686036,214,0 +170771686084,214,0 +170771686132,215,0 +170771686180,215,0 +170771686229,215,0 +170771686279,215,0 +170771686328,214,0 +170771686376,214,0 +170771686426,214,0 +170771686474,214,0 +170771686522,214,0 +170771686569,214,0 +170771686619,214,0 +170771686667,214,0 +170771686715,214,0 +170771686763,214,0 +170771686812,214,0 +170771686860,215,0 +170771686908,215,0 +170771686956,215,0 +170771687004,215,0 +170771687051,215,0 +170771687099,215,0 +170771687147,214,0 +170771687197,214,0 +170771687245,213,0 +170771687292,214,0 +170771687340,214,0 +170771687388,214,0 +170771687436,214,0 +170771687484,214,0 +170771687532,215,0 +170771687582,214,0 +170771687631,215,0 +170771687679,215,0 +170771687727,215,0 +170771687775,215,0 +170771687823,215,0 +170771687871,215,0 +170771687920,215,0 +170771687968,214,0 +170771688018,214,0 +170771688066,214,0 +170771688115,214,0 +170771688163,214,0 +170771688211,214,0 +170771688259,214,0 +170771688308,214,0 +170771688356,215,0 +170771688404,215,0 +170771688454,214,0 +170771688502,215,0 +170771688551,215,0 +170771688599,215,0 +170771688647,215,0 +170771688695,215,0 +170771688743,215,0 +170771688791,214,0 +170771688839,214,0 +170771688886,213,0 +170771688934,213,0 +170771688982,213,0 +170771689030,213,0 +170771689078,214,0 +170771689128,214,0 +170771689176,214,0 +170771689223,214,0 +170771689271,214,0 +170771689321,215,0 +170771689370,214,0 +170771689418,215,0 +170771689466,215,0 +170771689514,214,0 +170771689562,214,0 +170771689610,214,0 +170771689659,213,0 +170771689707,213,0 +170771689755,213,0 +170771689805,213,0 +170771689853,214,0 +170771689901,214,0 +170771689950,214,0 +170771689998,214,0 +170771690046,214,0 +170771690095,214,0 +170771690143,214,0 +170771690191,214,0 +170771690239,214,0 +170771690288,215,0 +170771690336,214,0 +170771690386,215,0 +170771690434,214,0 +170771690482,213,0 +170771690530,213,0 +170771690578,213,0 +170771690626,213,0 +170771690673,214,0 +170771690721,213,0 +170771690769,214,0 +170771690817,214,0 +170771690865,214,0 +170771690913,214,0 +170771690961,214,0 +170771691008,214,0 +170771691056,214,0 +170771691104,214,0 +170771691152,214,0 +170771691200,215,0 +170771691250,214,0 +170771691297,213,0 +170771691345,213,0 +170771691395,213,0 +170771691443,214,0 +170771691492,214,0 +170771691540,214,0 +170771691588,214,0 +170771691638,214,0 +170771691686,214,0 +170771691733,214,0 +170771691781,214,0 +170771691829,214,0 +170771691879,215,0 +170771691927,214,0 +170771691975,215,0 +170771692023,214,0 +170771692072,214,0 +170771692120,213,0 +170771692168,214,0 +170771692216,214,0 +170771692264,214,0 +170771692312,214,0 +170771692360,214,0 +170771692408,214,0 +170771692457,214,0 +170771692505,214,0 +170771692553,215,0 +170771692601,215,0 +170771692651,215,0 +170771692698,214,0 +170771692746,214,0 +170771692794,215,0 +170771692844,214,0 +170771692893,214,0 +170771692943,213,0 +170771692990,214,0 +170771693040,214,0 +170771693089,214,0 +170771693139,214,0 +170771693187,214,0 +170771693235,214,0 +170771693284,214,0 +170771693334,214,0 +170771693381,215,0 +170771693429,215,0 +170771693477,214,0 +170771693525,215,0 +170771693573,215,0 +170771693621,215,0 +170771693668,215,0 +170771693716,214,0 +170771693766,214,0 +170771693813,214,0 +170771693861,214,0 +170771693909,214,0 +170771693957,214,0 +170771694005,214,0 +170771694053,214,0 +170771694101,214,0 +170771694149,214,0 +170771694196,215,0 +170771694244,214,0 +170771694292,215,0 +170771694340,215,0 +170771694388,215,0 +170771694436,214,0 +170771694484,214,0 +170771694533,214,0 +170771694583,213,0 +170771694631,214,0 +170771694680,214,0 +170771694730,214,0 +170771694778,214,0 +170771694826,214,0 +170771694874,214,0 +170771694922,214,0 +170771694969,215,0 +170771695019,215,0 +170771695068,215,0 +170771695116,215,0 +170771695164,215,0 +170771695212,215,0 +170771695260,214,0 +170771695308,214,0 +170771695357,213,0 +170771695407,214,0 +170771695456,214,0 +170771695504,214,0 +170771695552,214,0 +170771695600,214,0 +170771695650,214,0 +170771695697,214,0 +170771695747,214,0 +170771695795,214,0 +170771695843,215,0 +170771695891,215,0 +170771695938,215,0 +170771695986,215,0 +170771696034,215,0 +170771696084,215,0 +170771696133,214,0 +170771696181,213,0 +170771696229,213,0 +170771696277,213,0 +170771696325,213,0 +170771696373,214,0 +170771696422,214,0 +170771696470,214,0 +170771696518,214,0 +170771696568,214,0 +170771696617,214,0 +170771696665,214,0 +170771696713,215,0 +170771696763,215,0 +170771696812,214,0 +170771696860,214,0 +170771696910,214,0 +170771696958,214,0 +170771697007,213,0 +170771697057,213,0 +170771697105,213,0 +170771697154,214,0 +170771697202,214,0 +170771697252,214,0 +170771697299,214,0 +170771697347,214,0 +170771697395,214,0 +170771697443,214,0 +170771697493,215,0 +170771697541,215,0 +170771697589,215,0 +170771697636,215,0 +170771697684,214,0 +170771697734,214,0 +170771697782,214,0 +170771697831,213,0 +170771697879,213,0 +170771697928,214,0 +170771697976,214,0 +170771698024,214,0 +170771698072,214,0 +170771698121,214,0 +170771698169,214,0 +170771698219,214,0 +170771698268,215,0 +170771698318,215,0 +170771698365,215,0 +170771698413,215,0 +170771698461,214,0 +170771698509,214,0 +170771698557,215,0 +170771698606,214,0 +170771698656,214,0 +170771698704,214,0 +170771698752,214,0 +170771698799,214,0 +170771698849,214,0 +170771698898,215,0 +170771698946,214,0 +170771698996,214,0 +170771699045,215,0 +170771699093,215,0 +170771699141,215,0 +170771699189,215,0 +170771699237,215,0 +170771699286,215,0 +170771699334,215,0 +170771699382,214,0 +170771699430,214,0 +170771699478,214,0 +170771699526,214,0 +170771699575,214,0 +170771699623,214,0 +170771699671,214,0 +170771699719,214,0 +170771699767,214,0 +170771699816,214,0 +170771699864,215,0 +170771699914,215,0 +170771699963,215,0 +170771700013,215,0 +170771700062,215,0 +170771700112,215,0 +170771700160,214,0 +170771700208,214,0 +170771700255,213,0 +170771700303,213,0 +170771700351,214,0 +170771700401,214,0 +170771700448,214,0 +170771700496,214,0 +170771700546,214,0 +170771700594,214,0 +170771700643,214,0 +170771700691,214,0 +170771700739,215,0 +170771700789,215,0 +170771700836,215,0 +170771700884,215,0 +170771700932,215,0 +170771700980,214,0 +170771701030,214,0 +170771701079,213,0 +170771701127,213,0 +170771701175,213,0 +170771701224,214,0 +170771701272,214,0 +170771701320,214,0 +170771701368,214,0 +170771701416,214,0 +170771701464,215,0 +170771701512,215,0 +170771701559,215,0 +170771701607,215,0 +170771701655,215,0 +170771701703,215,0 +170771701751,215,0 +170771701800,214,0 +170771701848,213,0 +170771701896,213,0 +170771701944,214,0 +170771701994,214,0 +170771702041,214,0 +170771702089,214,0 +170771702137,214,0 +170771702187,214,0 +170771702235,214,0 +170771702284,215,0 +170771702332,215,0 +170771702380,215,0 +170771702429,214,0 +170771702479,215,0 +170771702528,215,0 +170771702576,214,0 +170771702626,214,0 +170771702675,214,0 +170771702725,213,0 +170771702773,214,0 +170771702820,214,0 +170771702868,214,0 +170771702916,214,0 +170771702964,215,0 +170771703014,214,0 +170771703063,215,0 +170771703112,215,0 +170771703160,215,0 +170771703210,215,0 +170771703258,215,0 +170771703306,215,0 +170771703354,215,0 +170771703403,214,0 +170771703451,214,0 +170771703501,213,0 +170771703549,213,0 +170771703597,214,0 +170771703646,214,0 +170771703696,214,0 +170771703744,214,0 +170771703792,214,0 +170771703840,214,0 +170771703889,216,0 +170771703937,215,0 +170771703986,215,0 +170771704034,216,0 +170771704082,215,0 +170771704132,215,0 +170771704179,214,0 +170771704227,214,0 +170771704277,214,0 +170771704326,213,0 +170771704374,213,0 +170771704422,213,0 +170771704471,213,0 +170771704521,214,0 +170771704569,214,0 +170771704617,214,0 +170771704666,214,0 +170771704714,214,0 +170771704762,214,0 +170771704810,215,0 +170771704859,214,0 +170771704907,215,0 +170771704955,215,0 +170771705005,214,0 +170771705054,214,0 +170771705102,213,0 +170771705150,213,0 +170771705198,213,0 +170771705247,213,0 +170771705295,214,0 +170771705343,214,0 +170771705391,214,0 +170771705439,214,0 +170771705487,214,0 +170771705536,214,0 +170771705584,214,0 +170771705632,214,0 +170771705680,215,0 +170771705728,215,0 +170771705776,215,0 +170771705825,214,0 +170771705873,214,0 +170771705921,214,0 +170771705969,213,0 +170771706018,213,0 +170771706066,213,0 +170771706116,214,0 +170771706164,214,0 +170771706212,214,0 +170771706260,214,0 +170771706309,214,0 +170771706358,214,0 +170771706408,214,0 +170771706457,214,0 +170771706507,215,0 +170771706555,215,0 +170771706603,215,0 +170771706650,215,0 +170771706698,214,0 +170771706746,213,0 +170771706796,214,0 +170771706844,214,0 +170771706893,214,0 +170771706941,214,0 +170771706989,214,0 +170771707039,214,0 +170771707086,214,0 +170771707134,214,0 +170771707182,214,0 +170771707230,215,0 +170771707278,215,0 +170771707327,215,0 +170771707375,215,0 +170771707423,214,0 +170771707473,214,0 +170771707521,213,0 +170771707569,214,0 +170771707618,214,0 +170771707667,214,0 +170771707717,214,0 +170771707765,214,0 +170771707813,214,0 +170771707861,214,0 +170771707909,214,0 +170771707958,214,0 +170771708006,214,0 +170771708056,215,0 +170771708103,215,0 +170771708151,215,0 +170771708201,215,0 +170771708250,214,0 +170771708300,214,0 +170771708349,213,0 +170771708399,213,0 +170771708448,214,0 +170771708496,214,0 +170771708544,214,0 +170771708592,214,0 +170771708641,214,0 +170771708690,214,0 +170771708738,214,0 +170771708786,214,0 +170771708834,214,0 +170771708882,214,0 +170771708930,214,0 +170771708978,215,0 +170771709026,214,0 +170771709073,214,0 +170771709121,214,0 +170771709171,213,0 +170771709219,213,0 +170771709268,214,0 +170771709316,213,0 +170771709364,213,0 +170771709412,214,0 +170771709461,214,0 +170771709509,214,0 +170771709557,214,0 +170771709604,214,0 +170771709652,214,0 +170771709700,214,0 +170771709748,215,0 +170771709796,215,0 +170771709844,214,0 +170771709891,214,0 +170771709941,214,0 +170771709989,214,0 +170771710036,213,0 +170771710084,214,0 +170771710132,214,0 +170771710180,214,0 +170771710229,214,0 +170771710277,214,0 +170771710325,214,0 +170771710373,215,0 +170771710421,215,0 +170771710470,215,0 +170771710518,215,0 +170771710566,215,0 +170771710614,215,0 +170771710662,214,0 +170771710710,214,0 +170771710759,214,0 +170771710809,213,0 +170771710857,213,0 +170771710904,214,0 +170771710952,214,0 +170771711000,214,0 +170771711050,214,0 +170771711098,214,0 +170771711147,214,0 +170771711196,214,0 +170771711244,214,0 +170771711292,215,0 +170771711342,214,0 +170771711391,214,0 +170771711439,214,0 +170771711487,215,0 +170771711536,214,0 +170771711584,214,0 +170771711632,213,0 +170771711680,214,0 +170771711730,214,0 +170771711778,214,0 +170771711827,214,0 +170771711875,214,0 +170771711923,214,0 +170771711971,214,0 +170771712019,214,0 +170771712068,215,0 +170771712116,215,0 +170771712164,215,0 +170771712212,215,0 +170771712260,214,0 +170771712308,214,0 +170771712356,214,0 +170771712404,214,0 +170771712452,214,0 +170771712500,214,0 +170771712547,214,0 +170771712595,214,0 +170771712643,214,0 +170771712691,214,0 +170771712739,214,0 +170771712788,214,0 +170771712836,214,0 +170771712884,214,0 +170771712932,215,0 +170771712980,215,0 +170771713028,214,0 +170771713076,214,0 +170771713126,214,0 +170771713175,214,0 +170771713223,213,0 +170771713271,213,0 +170771713319,214,0 +170771713367,214,0 +170771713415,214,0 +170771713463,214,0 +170771713511,214,0 +170771713559,214,0 +170771713607,215,0 +170771713656,215,0 +170771713704,214,0 +170771713752,215,0 +170771713800,214,0 +170771713848,215,0 +170771713897,214,0 +170771713945,214,0 +170771713995,214,0 +170771714042,213,0 +170771714090,213,0 +170771714140,213,0 +170771714188,214,0 +170771714236,214,0 +170771714285,214,0 +170771714335,213,0 +170771714383,214,0 +170771714431,214,0 +170771714478,214,0 +170771714526,214,0 +170771714574,214,0 +170771714624,214,0 +170771714672,214,0 +170771714720,214,0 +170771714768,214,0 +170771714816,213,0 +170771714865,213,0 +170771714913,213,0 +170771714961,213,0 +170771715009,214,0 +170771715058,214,0 +170771715106,214,0 +170771715154,214,0 +170771715204,214,0 +170771715253,214,0 +170771715301,214,0 +170771715349,215,0 +170771715398,214,0 +170771715446,215,0 +170771715494,214,0 +170771715544,214,0 +170771715593,214,0 +170771715641,214,0 +170771715689,214,0 +170771715737,214,0 +170771715785,214,0 +170771715832,214,0 +170771715880,214,0 +170771715928,214,0 +170771715976,214,0 +170771716024,215,0 +170771716073,215,0 +170771716121,215,0 +170771716169,215,0 +170771716217,215,0 +170771716265,215,0 +170771716313,214,0 +170771716360,215,0 +170771716408,214,0 +170771716458,213,0 +170771716506,213,0 +170771716554,214,0 +170771716602,214,0 +170771716651,214,0 +170771716699,214,0 +170771716747,214,0 +170771716796,214,0 +170771716844,214,0 +170771716892,215,0 +170771716940,215,0 +170771716988,215,0 +170771717036,215,0 +170771717086,215,0 +170771717135,214,0 +170771717183,215,0 +170771717231,214,0 +170771717279,213,0 +170771717327,213,0 +170771717376,214,0 +170771717423,214,0 +170771717471,214,0 +170771717519,214,0 +170771717567,214,0 +170771717615,214,0 +170771717663,214,0 +170771717711,214,0 +170771717760,214,0 +170771717808,216,0 +170771717856,215,0 +170771717904,215,0 +170771717952,215,0 +170771718000,214,0 +170771718049,214,0 +170771718099,213,0 +170771718147,213,0 +170771718196,214,0 +170771718244,214,0 +170771718294,214,0 +170771718343,214,0 +170771718391,214,0 +170771718439,214,0 +170771718487,215,0 +170771718535,215,0 +170771718583,215,0 +170771718632,214,0 +170771718680,215,0 +170771718728,214,0 +170771718776,214,0 +170771718825,214,0 +170771718873,214,0 +170771718921,214,0 +170771718971,214,0 +170771719020,214,0 +170771719068,214,0 +170771719118,214,0 +170771719167,214,0 +170771719215,214,0 +170771719263,214,0 +170771719311,214,0 +170771719359,214,0 +170771719408,214,0 +170771719456,214,0 +170771719504,214,0 +170771719552,214,0 +170771719600,215,0 +170771719650,214,0 +170771719697,213,0 +170771719745,213,0 +170771719795,214,0 +170771719844,214,0 +170771719892,214,0 +170771719940,214,0 +170771719988,214,0 +170771720036,214,0 +170771720084,214,0 +170771720132,215,0 +170771720180,215,0 +170771720228,215,0 +170771720277,215,0 +170771720325,215,0 +170771720373,214,0 +170771720423,215,0 +170771720471,214,0 +170771720520,214,0 +170771720568,214,0 +170771720616,214,0 +170771720664,214,0 +170771720711,214,0 +170771720759,214,0 +170771720807,214,0 +170771720857,214,0 +170771720905,215,0 +170771720953,215,0 +170771721001,215,0 +170771721049,215,0 +170771721097,215,0 +170771721144,215,0 +170771721192,214,0 +170771721240,214,0 +170771721288,214,0 +170771721336,213,0 +170771721386,213,0 +170771721434,213,0 +170771721481,214,0 +170771721529,214,0 +170771721577,214,0 +170771721625,214,0 +170771721675,214,0 +170771721723,214,0 +170771721771,214,0 +170771721819,215,0 +170771721866,215,0 +170771721916,215,0 +170771721965,215,0 +170771722013,215,0 +170771722063,214,0 +170771722111,213,0 +170771722158,213,0 +170771722206,213,0 +170771722254,213,0 +170771722302,213,0 +170771722352,214,0 +170771722401,214,0 +170771722449,214,0 +170771722498,214,0 +170771722548,214,0 +170771722596,214,0 +170771722645,214,0 +170771722693,214,0 +170771722743,214,0 +170771722791,215,0 +170771722840,214,0 +170771722888,214,0 +170771722938,213,0 +170771722985,213,0 +170771723035,213,0 +170771723083,213,0 +170771723131,213,0 +170771723179,213,0 +170771723227,214,0 +170771723275,214,0 +170771723323,214,0 +170771723372,214,0 +170771723422,214,0 +170771723471,214,0 +170771723519,214,0 +170771723569,215,0 +170771723617,214,0 +170771723664,214,0 +170771723712,214,0 +170771723760,213,0 +170771723808,213,0 +170771723856,213,0 +170771723906,213,0 +170771723955,213,0 +170771724003,213,0 +170771724051,213,0 +170771724099,213,0 +170771724147,214,0 +170771724195,214,0 +170771724243,214,0 +170771724292,214,0 +170771724340,214,0 +170771724390,214,0 +170771724439,214,0 +170771724487,214,0 +170771724535,213,0 +170771724583,213,0 +170771724631,213,0 +170771724679,213,0 +170771724728,213,0 +170771724778,213,0 +170771724826,213,0 +170771724874,214,0 +170771724922,214,0 +170771724970,214,0 +170771725019,214,0 +170771725067,214,0 +170771725116,214,0 +170771725166,214,0 +170771725215,214,0 +170771725263,214,0 +170771725311,214,0 +170771725359,213,0 +170771725407,213,0 +170771725455,213,0 +170771725504,213,0 +170771725552,214,0 +170771725601,214,0 +170771725649,214,0 +170771725697,214,0 +170771725745,214,0 +170771725793,214,0 +170771725840,214,0 +170771725888,214,0 +170771725936,214,0 +170771725984,214,0 +170771726033,215,0 +170771726081,214,0 +170771726129,214,0 +170771726177,214,0 +170771726224,213,0 +170771726272,214,0 +170771726320,214,0 +170771726368,214,0 +170771726416,214,0 +170771726464,214,0 +170771726513,214,0 +170771726561,214,0 +170771726609,215,0 +170771726659,215,0 +170771726707,215,0 +170771726755,215,0 +170771726803,215,0 +170771726850,215,0 +170771726898,214,0 +170771726946,214,0 +170771726994,214,0 +170771727044,214,0 +170771727093,214,0 +170771727141,214,0 +170771727189,214,0 +170771727237,214,0 +170771727285,214,0 +170771727333,214,0 +170771727381,214,0 +170771727430,214,0 +170771727480,215,0 +170771727527,214,0 +170771727575,215,0 +170771727625,214,0 +170771727673,215,0 +170771727721,214,0 +170771727769,213,0 +170771727817,213,0 +170771727866,214,0 +170771727914,214,0 +170771727962,214,0 +170771728010,214,0 +170771728059,214,0 +170771728107,214,0 +170771728155,214,0 +170771728203,215,0 +170771728251,215,0 +170771728299,215,0 +170771728348,215,0 +170771728396,215,0 +170771728446,214,0 +170771728494,215,0 +170771728542,214,0 +170771728589,214,0 +170771728637,214,0 +170771728685,214,0 +170771728733,214,0 +170771728783,214,0 +170771728830,214,0 +170771728878,215,0 +170771728926,215,0 +170771728974,215,0 +170771729021,215,0 +170771729069,215,0 +170771729117,215,0 +170771729165,215,0 +170771729213,215,0 +170771729261,214,0 +170771729309,214,0 +170771729356,214,0 +170771729404,214,0 +170771729452,214,0 +170771729500,214,0 +170771729548,214,0 +170771729596,215,0 +170771729643,214,0 +170771729691,214,0 +170771729739,214,0 +170771729787,214,0 +170771729834,215,0 +170771729882,215,0 +170771729930,215,0 +170771729978,215,0 +170771730026,214,0 +170771730074,215,0 +170771730121,214,0 +170771730171,214,0 +170771730220,214,0 +170771730268,214,0 +170771730316,214,0 +170771730364,214,0 +170771730412,214,0 +170771730460,214,0 +170771730507,214,0 +170771730555,214,0 +170771730603,214,0 +170771730651,214,0 +170771730699,214,0 +170771730747,215,0 +170771730796,215,0 +170771730844,215,0 +170771730892,215,0 +170771730940,214,0 +170771730988,214,0 +170771731037,213,0 +170771731085,214,0 +170771731132,214,0 +170771731180,214,0 +170771731228,214,0 +170771731276,214,0 +170771731324,214,0 +170771731372,214,0 +170771731420,214,0 +170771731468,215,0 +170771731516,215,0 +170771731563,215,0 +170771731611,215,0 +170771731659,215,0 +170771731707,215,0 +170771731755,214,0 +170771731803,214,0 +170771731851,214,0 +170771731899,214,0 +170771731947,214,0 +170771731994,214,0 +170771732042,214,0 +170771732090,214,0 +170771732138,214,0 +170771732185,214,0 +170771732235,215,0 +170771732283,215,0 +170771732332,215,0 +170771732380,215,0 +170771732430,215,0 +170771732480,215,0 +170771732529,215,0 +170771732579,214,0 +170771732627,213,0 +170771732676,213,0 +170771732724,214,0 +170771732772,214,0 +170771732820,214,0 +170771732868,214,0 +170771732917,214,0 +170771732965,214,0 +170771733013,214,0 +170771733063,215,0 +170771733112,215,0 +170771733160,215,0 +170771733208,215,0 +170771733256,215,0 +170771733304,214,0 +170771733353,215,0 +170771733401,214,0 +170771733449,213,0 +170771733497,213,0 +170771733545,213,0 +170771733593,214,0 +170771733641,213,0 +170771733689,214,0 +170771733738,214,0 +170771733786,214,0 +170771733834,214,0 +170771733884,214,0 +170771733931,214,0 +170771733979,214,0 +170771734027,214,0 +170771734076,215,0 +170771734124,215,0 +170771734172,214,0 +170771734220,213,0 +170771734268,213,0 +170771734316,213,0 +170771734365,213,0 +170771734413,214,0 +170771734461,214,0 +170771734508,214,0 +170771734556,214,0 +170771734604,214,0 +170771734652,214,0 +170771734700,214,0 +170771734747,214,0 +170771734795,214,0 +170771734843,215,0 +170771734891,214,0 +170771734939,214,0 +170771734989,214,0 +170771735036,213,0 +170771735086,213,0 +170771735134,213,0 +170771735182,213,0 +170771735231,214,0 +170771735279,214,0 +170771735327,214,0 +170771735375,214,0 +170771735423,214,0 +170771735471,214,0 +170771735519,214,0 +170771735568,214,0 +170771735616,214,0 +170771735664,214,0 +170771735712,214,0 +170771735762,214,0 +170771735811,214,0 +170771735859,213,0 +170771735907,213,0 +170771735956,213,0 +170771736006,213,0 +170771736054,213,0 +170771736102,214,0 +170771736150,214,0 +170771736198,214,0 +170771736247,214,0 +170771736297,214,0 +170771736344,214,0 +170771736392,214,0 +170771736440,214,0 +170771736488,215,0 +170771736536,214,0 +170771736584,214,0 +170771736633,214,0 +170771736681,213,0 +170771736729,213,0 +170771736777,213,0 +170771736827,214,0 +170771736875,214,0 +170771736924,214,0 +170771736972,214,0 +170771737020,214,0 +170771737068,214,0 +170771737117,214,0 +170771737167,215,0 +170771737215,214,0 +170771737263,214,0 +170771737311,215,0 +170771737360,215,0 +170771737410,214,0 +170771737457,213,0 +170771737505,213,0 +170771737555,213,0 +170771737603,213,0 +170771737652,214,0 +170771737700,214,0 +170771737750,214,0 +170771737798,214,0 +170771737845,214,0 +170771737893,214,0 +170771737941,214,0 +170771737989,214,0 +170771738037,215,0 +170771738085,214,0 +170771738133,215,0 +170771738181,215,0 +170771738229,214,0 +170771738277,213,0 +170771738324,213,0 +170771738372,213,0 +170771738420,214,0 +170771738468,214,0 +170771738516,214,0 +170771738564,214,0 +170771738612,214,0 +170771738660,214,0 +170771738708,215,0 +170771738755,215,0 +170771738803,215,0 +170771738851,215,0 +170771738901,214,0 +170771738950,214,0 +170771738998,214,0 +170771739046,214,0 +170771739094,214,0 +170771739141,214,0 +170771739189,214,0 +170771739239,214,0 +170771739287,214,0 +170771739335,214,0 +170771739383,214,0 +170771739431,214,0 +170771739478,214,0 +170771739526,214,0 +170771739576,215,0 +170771739624,215,0 +170771739673,215,0 +170771739721,215,0 +170771739769,214,0 +170771739817,214,0 +170771739865,214,0 +170771739913,214,0 +170771739961,214,0 +170771740010,214,0 +170771740060,214,0 +170771740108,214,0 +170771740156,214,0 +170771740205,214,0 +170771740255,215,0 +170771740303,215,0 +170771740350,214,0 +170771740398,215,0 +170771740446,215,0 +170771740496,214,0 +170771740544,215,0 +170771740592,214,0 +170771740640,215,0 +170771740689,213,0 +170771740739,213,0 +170771740786,214,0 +170771740836,214,0 +170771740884,214,0 +170771740933,214,0 +170771740981,214,0 +170771741029,214,0 +170771741079,214,0 +170771741126,214,0 +170771741174,214,0 +170771741223,214,0 +170771741271,215,0 +170771741319,215,0 +170771741367,215,0 +170771741415,214,0 +170771741463,214,0 +170771741510,213,0 +170771741558,213,0 +170771741606,214,0 +170771741655,214,0 +170771741703,214,0 +170771741752,214,0 +170771741800,214,0 +170771741848,214,0 +170771741896,214,0 +170771741944,214,0 +170771741992,214,0 +170771742039,215,0 +170771742087,214,0 +170771742135,215,0 +170771742184,215,0 +170771742232,214,0 +170771742280,214,0 +170771742328,214,0 +170771742376,214,0 +170771742423,214,0 +170771742471,214,0 +170771742519,214,0 +170771742567,214,0 +170771742615,215,0 +170771742664,215,0 +170771742712,215,0 +170771742760,215,0 +170771742808,215,0 +170771742857,215,0 +170771742905,215,0 +170771742953,214,0 +170771743003,215,0 +170771743051,214,0 +170771743098,214,0 +170771743146,214,0 +170771743194,214,0 +170771743242,214,0 +170771743290,215,0 +170771743338,214,0 +170771743386,215,0 +170771743435,215,0 +170771743483,215,0 +170771743531,215,0 +170771743579,215,0 +170771743626,215,0 +170771743674,215,0 +170771743722,215,0 +170771743770,215,0 +170771743818,214,0 +170771743866,214,0 +170771743914,214,0 +170771743962,214,0 +170771744011,214,0 +170771744059,214,0 +170771744107,214,0 +170771744155,214,0 +170771744203,214,0 +170771744251,214,0 +170771744299,214,0 +170771744348,215,0 +170771744398,215,0 +170771744445,214,0 +170771744495,215,0 +170771744543,214,0 +170771744591,214,0 +170771744640,214,0 +170771744688,214,0 +170771744736,213,0 +170771744786,213,0 +170771744834,213,0 +170771744881,213,0 +170771744929,214,0 +170771744977,214,0 +170771745026,214,0 +170771745074,214,0 +170771745122,214,0 +170771745170,214,0 +170771745220,214,0 +170771745267,214,0 +170771745317,214,0 +170771745365,215,0 +170771745414,214,0 +170771745462,214,0 +170771745510,214,0 +170771745558,213,0 +170771745607,213,0 +170771745655,214,0 +170771745703,214,0 +170771745751,214,0 +170771745799,214,0 +170771745848,214,0 +170771745896,214,0 +170771745944,214,0 +170771745994,214,0 +170771746041,214,0 +170771746089,215,0 +170771746137,214,0 +170771746185,215,0 +170771746233,214,0 +170771746281,214,0 +170771746330,213,0 +170771746378,213,0 +170771746426,213,0 +170771746474,214,0 +170771746522,214,0 +170771746571,214,0 +170771746619,214,0 +170771746667,214,0 +170771746716,215,0 +170771746765,214,0 +170771746813,214,0 +170771746861,215,0 +170771746909,215,0 +170771746959,215,0 +170771747006,214,0 +170771747054,214,0 +170771747102,213,0 +170771747152,214,0 +170771747201,213,0 +170771747249,214,0 +170771747297,214,0 +170771747345,214,0 +170771747393,214,0 +170771747442,214,0 +170771747492,214,0 +170771747539,215,0 +170771747587,215,0 +170771747635,215,0 +170771747683,215,0 +170771747731,215,0 +170771747779,215,0 +170771747827,215,0 +170771747875,214,0 +170771747922,213,0 +170771747970,213,0 +170771748018,213,0 +170771748066,213,0 +170771748115,214,0 +170771748163,214,0 +170771748213,214,0 +170771748260,214,0 +170771748310,214,0 +170771748358,214,0 +170771748406,214,0 +170771748453,214,0 +170771748501,215,0 +170771748551,214,0 +170771748599,215,0 +170771748646,215,0 +170771748694,214,0 +170771748742,213,0 +170771748790,213,0 +170771748838,213,0 +170771748886,213,0 +170771748933,214,0 +170771748981,214,0 +170771749029,213,0 +170771749077,214,0 +170771749125,214,0 +170771749173,214,0 +170771749221,214,0 +170771749268,214,0 +170771749316,214,0 +170771749364,214,0 +170771749412,215,0 +170771749462,214,0 +170771749511,213,0 +170771749559,213,0 +170771749607,213,0 +170771749656,213,0 +170771749706,214,0 +170771749755,214,0 +170771749803,214,0 +170771749851,214,0 +170771749898,214,0 +170771749946,214,0 +170771749994,214,0 +170771750042,214,0 +170771750090,214,0 +170771750138,214,0 +170771750186,214,0 +170771750234,215,0 +170771750283,214,0 +170771750331,213,0 +170771750379,213,0 +170771750427,214,0 +170771750475,213,0 +170771750522,214,0 +170771750570,214,0 +170771750618,214,0 +170771750666,214,0 +170771750716,214,0 +170771750763,214,0 +170771750811,214,0 +170771750859,214,0 +170771750907,215,0 +170771750955,215,0 +170771751003,214,0 +170771751051,214,0 +170771751098,214,0 +170771751146,213,0 +170771751194,213,0 +170771751242,214,0 +170771751290,214,0 +170771751338,214,0 +170771751385,214,0 +170771751433,214,0 +170771751481,214,0 +170771751529,214,0 +170771751579,214,0 +170771751626,215,0 +170771751676,214,0 +170771751724,214,0 +170771751772,215,0 +170771751821,215,0 +170771751869,214,0 +170771751917,213,0 +170771751967,214,0 +170771752016,214,0 +170771752064,214,0 +170771752112,214,0 +170771752160,214,0 +170771752208,214,0 +170771752255,214,0 +170771752303,215,0 +170771752351,215,0 +170771752399,214,0 +170771752446,214,0 +170771752494,215,0 +170771752542,215,0 +170771752590,214,0 +170771752638,214,0 +170771752686,214,0 +170771752733,214,0 +170771752781,214,0 +170771752829,214,0 +170771752877,214,0 +170771752925,214,0 +170771752973,214,0 +170771753020,214,0 +170771753068,215,0 +170771753116,215,0 +170771753164,215,0 +170771753212,215,0 +170771753260,215,0 +170771753307,215,0 +170771753357,215,0 +170771753405,215,0 +170771753453,214,0 +170771753502,214,0 +170771753550,214,0 +170771753597,214,0 +170771753645,214,0 +170771753693,214,0 +170771753741,214,0 +170771753789,215,0 +170771753837,215,0 +170771753884,215,0 +170771753932,215,0 +170771753980,215,0 +170771754028,215,0 +170771754078,215,0 +170771754127,215,0 +170771754175,214,0 +170771754223,215,0 +170771754272,214,0 +170771754322,214,0 +170771754370,214,0 +170771754419,214,0 +170771754469,214,0 +170771754517,214,0 +170771754566,215,0 +170771754616,214,0 +170771754664,215,0 +170771754712,215,0 +170771754761,215,0 +170771754809,215,0 +170771754857,215,0 +170771754907,214,0 +170771754955,214,0 +170771755004,214,0 +170771755052,214,0 +170771755100,214,0 +170771755148,214,0 +170771755196,214,0 +170771755244,214,0 +170771755293,214,0 +170771755341,214,0 +170771755389,215,0 +170771755439,215,0 +170771755488,215,0 +170771755536,215,0 +170771755586,215,0 +170771755635,215,0 +170771755683,215,0 +170771755732,215,0 +170771755780,214,0 +170771755830,214,0 +170771755878,214,0 +170771755926,214,0 +170771755973,214,0 +170771756022,214,0 +170771756071,214,0 +170771756121,215,0 +170771756168,215,0 +170771756216,215,0 +170771756264,215,0 +170771756312,215,0 +170771756360,215,0 +170771756408,215,0 +170771756456,215,0 +170771756504,215,0 +170771756552,215,0 +170771756601,214,0 +170771756649,214,0 +170771756699,214,0 +170771756748,214,0 +170771756796,214,0 +170771756844,214,0 +170771756892,214,0 +170771756940,214,0 +170771756988,215,0 +170771757038,214,0 +170771757085,215,0 +170771757135,215,0 +170771757184,215,0 +170771757234,215,0 +170771757282,215,0 +170771757331,215,0 +170771757381,214,0 +170771757429,214,0 +170771757477,214,0 +170771757525,214,0 +170771757573,214,0 +170771757621,214,0 +170771757670,214,0 +170771757718,214,0 +170771757766,214,0 +170771757815,215,0 +170771757863,214,0 +170771757911,215,0 +170771757961,215,0 +170771758008,215,0 +170771758056,215,0 +170771758104,214,0 +170771758152,214,0 +170771758200,214,0 +170771758248,214,0 +170771758296,214,0 +170771758345,214,0 +170771758395,214,0 +170771758444,214,0 +170771758492,214,0 +170771758540,214,0 +170771758588,215,0 +170771758636,214,0 +170771758684,215,0 +170771758734,215,0 +170771758782,215,0 +170771758830,215,0 +170771758878,215,0 +170771758925,214,0 +170771758973,214,0 +170771759023,213,0 +170771759070,214,0 +170771759118,214,0 +170771759166,214,0 +170771759214,214,0 +170771759264,214,0 +170771759311,214,0 +170771759361,214,0 +170771759409,214,0 +170771759457,215,0 +170771759505,215,0 +170771759553,215,0 +170771759602,215,0 +170771759652,215,0 +170771759700,215,0 +170771759749,214,0 +170771759797,213,0 +170771759845,214,0 +170771759893,214,0 +170771759942,214,0 +170771759990,214,0 diff --git a/laser_value/0212-16.csv b/laser_value/0212-16.csv new file mode 100644 index 0000000..b7fb402 --- /dev/null +++ b/laser_value/0212-16.csv @@ -0,0 +1,7437 @@ +timestamp,laser_value,event +170771760039,214,0 +170771760088,214,0 +170771760136,214,0 +170771760184,215,0 +170771760233,215,0 +170771760281,215,0 +170771760329,215,0 +170771760377,215,0 +170771760427,215,0 +170771760475,215,0 +170771760524,214,0 +170771760572,214,0 +170771760620,213,0 +170771760667,214,0 +170771760715,214,0 +170771760765,214,0 +170771760814,214,0 +170771760862,214,0 +170771760910,214,0 +170771760958,214,0 +170771761005,215,0 +170771761053,215,0 +170771761103,215,0 +170771761150,215,0 +170771761198,215,0 +170771761246,215,0 +170771761294,214,0 +170771761342,213,0 +170771761390,213,0 +170771761438,213,0 +170771761485,214,0 +170771761533,214,0 +170771761581,214,0 +170771761629,214,0 +170771761677,214,0 +170771761725,214,0 +170771761773,214,0 +170771761820,215,0 +170771761868,214,0 +170771761918,215,0 +170771761965,215,0 +170771762013,215,0 +170771762063,214,0 +170771762112,214,0 +170771762160,213,0 +170771762208,213,0 +170771762256,213,0 +170771762304,213,0 +170771762353,214,0 +170771762401,214,0 +170771762449,214,0 +170771762497,214,0 +170771762547,214,0 +170771762595,214,0 +170771762643,214,0 +170771762692,214,0 +170771762740,214,0 +170771762790,215,0 +170771762838,214,0 +170771762887,214,0 +170771762936,213,0 +170771762984,213,0 +170771763032,213,0 +170771763082,214,0 +170771763130,214,0 +170771763178,214,0 +170771763225,214,0 +170771763273,214,0 +170771763321,214,0 +170771763369,214,0 +170771763417,214,0 +170771763465,214,0 +170771763513,214,0 +170771763563,214,0 +170771763611,215,0 +170771763659,214,0 +170771763707,213,0 +170771763754,213,0 +170771763802,213,0 +170771763850,213,0 +170771763898,214,0 +170771763946,214,0 +170771763994,214,0 +170771764042,214,0 +170771764090,214,0 +170771764138,214,0 +170771764186,214,0 +170771764235,215,0 +170771764284,215,0 +170771764332,215,0 +170771764382,215,0 +170771764431,215,0 +170771764479,214,0 +170771764527,214,0 +170771764576,213,0 +170771764624,214,0 +170771764674,214,0 +170771764722,214,0 +170771764769,214,0 +170771764819,214,0 +170771764868,215,0 +170771764918,215,0 +170771764967,214,0 +170771765017,215,0 +170771765064,215,0 +170771765114,215,0 +170771765163,215,0 +170771765213,214,0 +170771765261,214,0 +170771765310,214,0 +170771765360,214,0 +170771765408,214,0 +170771765455,214,0 +170771765503,214,0 +170771765551,215,0 +170771765599,214,0 +170771765647,215,0 +170771765695,215,0 +170771765743,215,0 +170771765792,215,0 +170771765840,215,0 +170771765890,215,0 +170771765938,215,0 +170771765985,215,0 +170771766033,215,0 +170771766083,214,0 +170771766131,214,0 +170771766178,214,0 +170771766226,214,0 +170771766274,214,0 +170771766324,214,0 +170771766373,215,0 +170771766421,215,0 +170771766469,214,0 +170771766517,215,0 +170771766564,215,0 +170771766614,215,0 +170771766663,215,0 +170771766713,215,0 +170771766761,215,0 +170771766809,215,0 +170771766858,214,0 +170771766908,214,0 +170771766956,214,0 +170771767005,214,0 +170771767053,214,0 +170771767101,214,0 +170771767150,214,0 +170771767198,214,0 +170771767248,214,0 +170771767297,214,0 +170771767345,215,0 +170771767393,215,0 +170771767441,215,0 +170771767490,215,0 +170771767538,215,0 +170771767586,214,0 +170771767636,214,0 +170771767683,214,0 +170771767731,214,0 +170771767779,214,0 +170771767827,214,0 +170771767876,214,0 +170771767924,214,0 +170771767972,215,0 +170771768022,215,0 +170771768070,215,0 +170771768117,215,0 +170771768165,215,0 +170771768213,215,0 +170771768261,215,0 +170771768311,215,0 +170771768360,214,0 +170771768408,215,0 +170771768457,214,0 +170771768507,215,0 +170771768555,214,0 +170771768603,215,0 +170771768650,215,0 +170771768698,215,0 +170771768746,215,0 +170771768796,215,0 +170771768844,215,0 +170771768891,215,0 +170771768939,215,0 +170771768987,215,0 +170771769035,215,0 +170771769083,215,0 +170771769131,215,0 +170771769180,214,0 +170771769228,214,0 +170771769277,214,0 +170771769325,214,0 +170771769373,215,0 +170771769421,214,0 +170771769470,215,0 +170771769518,214,0 +170771769566,214,0 +170771769615,215,0 +170771769665,215,0 +170771769714,215,0 +170771769762,215,0 +170771769812,215,0 +170771769860,215,0 +170771769908,215,0 +170771769956,215,0 +170771770005,214,0 +170771770053,214,0 +170771770101,214,0 +170771770149,214,0 +170771770197,214,0 +170771770246,214,0 +170771770296,214,0 +170771770344,214,0 +170771770392,215,0 +170771770440,215,0 +170771770489,215,0 +170771770537,215,0 +170771770587,215,0 +170771770636,215,0 +170771770684,215,0 +170771770734,215,0 +170771770782,214,0 +170771770831,214,0 +170771770879,214,0 +170771770928,214,0 +170771770978,214,0 +170771771027,214,0 +170771771075,214,0 +170771771125,214,0 +170771771173,214,0 +170771771222,215,0 +170771771270,215,0 +170771771318,215,0 +170771771366,215,0 +170771771414,215,0 +170771771463,215,0 +170771771511,215,0 +170771771561,214,0 +170771771609,213,0 +170771771658,213,0 +170771771707,214,0 +170771771757,214,0 +170771771805,214,0 +170771771854,214,0 +170771771902,214,0 +170771771950,215,0 +170771771998,215,0 +170771772045,215,0 +170771772093,215,0 +170771772141,215,0 +170771772189,215,0 +170771772237,215,0 +170771772285,215,0 +170771772334,215,0 +170771772382,213,0 +170771772429,213,0 +170771772477,213,0 +170771772525,213,0 +170771772574,214,0 +170771772622,214,0 +170771772672,214,0 +170771772719,214,0 +170771772767,214,0 +170771772815,214,0 +170771772863,214,0 +170771772911,214,0 +170771772960,215,0 +170771773008,214,0 +170771773056,215,0 +170771773104,214,0 +170771773151,214,0 +170771773201,213,0 +170771773249,213,0 +170771773296,213,0 +170771773344,213,0 +170771773392,214,0 +170771773440,214,0 +170771773488,214,0 +170771773535,214,0 +170771773583,214,0 +170771773633,214,0 +170771773682,215,0 +170771773730,214,0 +170771773777,214,0 +170771773825,215,0 +170771773873,214,0 +170771773921,214,0 +170771773969,213,0 +170771774017,213,0 +170771774066,214,0 +170771774115,213,0 +170771774163,214,0 +170771774213,214,0 +170771774260,214,0 +170771774308,214,0 +170771774356,214,0 +170771774404,215,0 +170771774452,215,0 +170771774500,215,0 +170771774548,215,0 +170771774597,215,0 +170771774645,214,0 +170771774693,214,0 +170771774741,213,0 +170771774788,214,0 +170771774836,214,0 +170771774886,214,0 +170771774934,214,0 +170771774982,214,0 +170771775031,214,0 +170771775079,214,0 +170771775127,215,0 +170771775175,215,0 +170771775223,215,0 +170771775273,215,0 +170771775321,215,0 +170771775368,215,0 +170771775416,214,0 +170771775464,214,0 +170771775512,213,0 +170771775562,213,0 +170771775610,213,0 +170771775658,213,0 +170771775707,214,0 +170771775757,214,0 +170771775805,214,0 +170771775854,214,0 +170771775904,214,0 +170771775952,214,0 +170771775999,214,0 +170771776047,214,0 +170771776095,214,0 +170771776145,214,0 +170771776194,215,0 +170771776242,214,0 +170771776292,214,0 +170771776341,213,0 +170771776389,213,0 +170771776437,214,0 +170771776485,214,0 +170771776533,214,0 +170771776581,214,0 +170771776629,214,0 +170771776678,214,0 +170771776728,215,0 +170771776777,215,0 +170771776825,215,0 +170771776873,215,0 +170771776921,215,0 +170771776970,215,0 +170771777020,215,0 +170771777068,214,0 +170771777116,214,0 +170771777165,214,0 +170771777213,214,0 +170771777261,214,0 +170771777311,214,0 +170771777360,214,0 +170771777410,215,0 +170771777459,215,0 +170771777509,215,0 +170771777558,215,0 +170771777607,215,0 +170771777655,215,0 +170771777705,215,0 +170771777754,215,0 +170771777804,215,0 +170771777852,214,0 +170771777899,215,0 +170771777947,215,0 +170771777995,215,0 +170771778043,215,0 +170771778091,215,0 +170771778139,215,0 +170771778189,215,0 +170771778238,215,0 +170771778286,215,0 +170771778334,215,0 +170771778382,215,0 +170771778430,215,0 +170771778477,215,0 +170771778525,215,0 +170771778573,215,0 +170771778621,215,0 +170771778669,214,0 +170771778717,214,0 +170771778765,214,0 +170771778812,214,0 +170771778860,214,0 +170771778908,215,0 +170771778957,214,0 +170771779005,215,0 +170771779053,214,0 +170771779101,215,0 +170771779149,215,0 +170771779197,215,0 +170771779246,215,0 +170771779296,215,0 +170771779345,215,0 +170771779395,215,0 +170771779443,214,0 +170771779492,214,0 +170771779542,214,0 +170771779590,214,0 +170771779638,214,0 +170771779686,214,0 +170771779734,214,0 +170771779783,215,0 +170771779832,215,0 +170771779882,215,0 +170771779931,215,0 +170771779979,215,0 +170771780027,215,0 +170771780075,215,0 +170771780123,215,0 +170771780173,215,0 +170771780221,214,0 +170771780270,214,0 +170771780318,214,0 +170771780366,214,0 +170771780414,215,0 +170771780462,215,0 +170771780511,215,0 +170771780561,215,0 +170771780609,215,0 +170771780657,215,0 +170771780705,215,0 +170771780752,215,0 +170771780802,215,0 +170771780850,215,0 +170771780899,215,0 +170771780947,215,0 +170771780997,215,0 +170771781045,214,0 +170771781093,214,0 +170771781141,214,0 +170771781189,215,0 +170771781238,215,0 +170771781286,215,0 +170771781334,215,0 +170771781382,215,0 +170771781430,215,0 +170771781479,215,0 +170771781527,215,0 +170771781577,215,0 +170771781624,215,0 +170771781672,215,0 +170771781720,215,0 +170771781768,214,0 +170771781816,214,0 +170771781864,214,0 +170771781914,214,0 +170771781962,214,0 +170771782009,214,0 +170771782057,215,0 +170771782105,215,0 +170771782155,215,0 +170771782204,215,0 +170771782252,215,0 +170771782302,215,0 +170771782350,215,0 +170771782398,215,0 +170771782445,215,0 +170771782495,214,0 +170771782544,215,0 +170771782592,214,0 +170771782640,214,0 +170771782689,214,0 +170771782737,214,0 +170771782787,214,0 +170771782834,214,0 +170771782884,214,0 +170771782932,215,0 +170771782981,215,0 +170771783029,215,0 +170771783077,215,0 +170771783125,215,0 +170771783174,215,0 +170771783224,215,0 +170771783272,215,0 +170771783320,214,0 +170771783368,213,0 +170771783417,213,0 +170771783466,213,0 +170771783513,214,0 +170771783561,214,0 +170771783609,214,0 +170771783659,214,0 +170771783707,214,0 +170771783756,214,0 +170771783804,215,0 +170771783852,215,0 +170771783902,215,0 +170771783950,215,0 +170771783997,215,0 +170771784047,215,0 +170771784096,215,0 +170771784144,214,0 +170771784194,213,0 +170771784243,213,0 +170771784291,214,0 +170771784339,214,0 +170771784387,214,0 +170771784435,214,0 +170771784483,214,0 +170771784531,214,0 +170771784579,214,0 +170771784627,215,0 +170771784675,214,0 +170771784723,215,0 +170771784771,215,0 +170771784819,215,0 +170771784866,215,0 +170771784914,214,0 +170771784964,213,0 +170771785012,213,0 +170771785060,213,0 +170771785109,213,0 +170771785157,213,0 +170771785207,214,0 +170771785256,214,0 +170771785304,214,0 +170771785352,214,0 +170771785401,214,0 +170771785449,214,0 +170771785499,215,0 +170771785547,215,0 +170771785596,215,0 +170771785644,215,0 +170771785693,215,0 +170771785741,214,0 +170771785789,213,0 +170771785837,214,0 +170771785887,214,0 +170771785936,214,0 +170771785984,214,0 +170771786032,214,0 +170771786080,214,0 +170771786129,214,0 +170771786177,215,0 +170771786225,215,0 +170771786273,215,0 +170771786321,215,0 +170771786371,215,0 +170771786420,215,0 +170771786468,214,0 +170771786518,214,0 +170771786567,214,0 +170771786615,214,0 +170771786663,214,0 +170771786713,214,0 +170771786761,214,0 +170771786808,214,0 +170771786856,214,0 +170771786904,215,0 +170771786952,214,0 +170771787000,214,0 +170771787048,215,0 +170771787096,215,0 +170771787144,215,0 +170771787192,215,0 +170771787240,214,0 +170771787288,214,0 +170771787337,213,0 +170771787387,214,0 +170771787435,214,0 +170771787484,214,0 +170771787532,214,0 +170771787580,214,0 +170771787629,214,0 +170771787679,214,0 +170771787728,214,0 +170771787778,215,0 +170771787826,215,0 +170771787874,215,0 +170771787922,215,0 +170771787970,215,0 +170771788019,215,0 +170771788067,214,0 +170771788115,214,0 +170771788163,214,0 +170771788212,214,0 +170771788260,214,0 +170771788308,214,0 +170771788356,214,0 +170771788405,214,0 +170771788453,215,0 +170771788501,215,0 +170771788551,215,0 +170771788599,215,0 +170771788647,215,0 +170771788694,215,0 +170771788742,215,0 +170771788790,215,0 +170771788840,214,0 +170771788888,214,0 +170771788935,214,0 +170771788983,214,0 +170771789033,214,0 +170771789081,214,0 +170771789130,215,0 +170771789178,214,0 +170771789226,215,0 +170771789274,215,0 +170771789322,215,0 +170771789370,215,0 +170771789419,215,0 +170771789467,215,0 +170771789515,215,0 +170771789562,215,0 +170771789610,215,0 +170771789658,214,0 +170771789706,214,0 +170771789755,214,0 +170771789803,214,0 +170771789851,215,0 +170771789899,215,0 +170771789947,215,0 +170771789994,215,0 +170771790042,215,0 +170771790090,215,0 +170771790138,215,0 +170771790186,215,0 +170771790234,215,0 +170771790281,215,0 +170771790331,215,0 +170771790379,215,0 +170771790428,214,0 +170771790476,214,0 +170771790525,214,0 +170771790573,214,0 +170771790621,214,0 +170771790669,215,0 +170771790717,215,0 +170771790765,215,0 +170771790814,215,0 +170771790862,215,0 +170771790910,215,0 +170771790958,215,0 +170771791006,215,0 +170771791053,215,0 +170771791101,215,0 +170771791149,215,0 +170771791197,214,0 +170771791245,214,0 +170771791293,214,0 +170771791342,214,0 +170771791390,214,0 +170771791438,214,0 +170771791486,214,0 +170771791535,215,0 +170771791583,214,0 +170771791631,215,0 +170771791680,215,0 +170771791728,215,0 +170771791776,215,0 +170771791825,215,0 +170771791873,215,0 +170771791921,215,0 +170771791969,215,0 +170771792017,214,0 +170771792064,214,0 +170771792112,214,0 +170771792160,214,0 +170771792208,214,0 +170771792256,215,0 +170771792303,215,0 +170771792351,215,0 +170771792399,215,0 +170771792447,215,0 +170771792495,215,0 +170771792543,215,0 +170771792591,215,0 +170771792640,215,0 +170771792690,215,0 +170771792739,215,0 +170771792789,213,0 +170771792836,214,0 +170771792884,214,0 +170771792934,214,0 +170771792983,214,0 +170771793031,214,0 +170771793079,214,0 +170771793127,214,0 +170771793175,214,0 +170771793224,215,0 +170771793274,215,0 +170771793323,215,0 +170771793371,215,0 +170771793421,215,0 +170771793468,215,0 +170771793518,215,0 +170771793566,214,0 +170771793614,213,0 +170771793662,214,0 +170771793710,214,0 +170771793757,214,0 +170771793805,214,0 +170771793853,214,0 +170771793903,214,0 +170771793951,214,0 +170771793999,214,0 +170771794047,214,0 +170771794096,214,0 +170771794146,215,0 +170771794194,215,0 +170771794243,215,0 +170771794292,215,0 +170771794342,215,0 +170771794390,215,0 +170771794438,215,0 +170771794486,215,0 +170771794534,215,0 +170771794581,215,0 +170771794631,215,0 +170771794679,215,0 +170771794727,214,0 +170771794776,213,0 +170771794824,214,0 +170771794872,214,0 +170771794920,214,0 +170771794969,214,0 +170771795017,214,0 +170771795065,214,0 +170771795113,214,0 +170771795161,214,0 +170771795210,215,0 +170771795258,215,0 +170771795307,215,0 +170771795355,215,0 +170771795403,215,0 +170771795451,215,0 +170771795499,215,0 +170771795548,214,0 +170771795596,213,0 +170771795644,214,0 +170771795692,214,0 +170771795741,214,0 +170771795789,214,0 +170771795837,214,0 +170771795884,214,0 +170771795932,215,0 +170771795982,215,0 +170771796031,215,0 +170771796081,215,0 +170771796130,215,0 +170771796178,215,0 +170771796227,215,0 +170771796275,214,0 +170771796325,214,0 +170771796374,214,0 +170771796424,214,0 +170771796473,214,0 +170771796523,214,0 +170771796571,214,0 +170771796619,214,0 +170771796667,214,0 +170771796716,215,0 +170771796764,214,0 +170771796812,214,0 +170771796860,215,0 +170771796910,215,0 +170771796959,215,0 +170771797007,215,0 +170771797056,215,0 +170771797104,214,0 +170771797152,214,0 +170771797200,214,0 +170771797250,214,0 +170771797297,214,0 +170771797347,214,0 +170771797395,214,0 +170771797443,214,0 +170771797491,214,0 +170771797539,214,0 +170771797587,215,0 +170771797634,215,0 +170771797682,215,0 +170771797730,215,0 +170771797780,216,0 +170771797828,215,0 +170771797877,215,0 +170771797927,214,0 +170771797974,214,0 +170771798022,214,0 +170771798070,214,0 +170771798118,214,0 +170771798166,215,0 +170771798214,214,0 +170771798262,215,0 +170771798309,215,0 +170771798357,215,0 +170771798405,215,0 +170771798453,215,0 +170771798501,215,0 +170771798549,215,0 +170771798598,215,0 +170771798647,214,0 +170771798695,214,0 +170771798743,214,0 +170771798791,214,0 +170771798839,214,0 +170771798889,215,0 +170771798937,215,0 +170771798984,215,0 +170771799032,215,0 +170771799080,215,0 +170771799128,215,0 +170771799178,215,0 +170771799226,215,0 +170771799275,215,0 +170771799323,215,0 +170771799371,215,0 +170771799421,215,0 +170771799469,214,0 +170771799517,214,0 +170771799564,214,0 +170771799612,214,0 +170771799660,215,0 +170771799710,215,0 +170771799758,215,0 +170771799806,215,0 +170771799855,215,0 +170771799904,215,0 +170771799954,215,0 +170771800003,215,0 +170771800051,215,0 +170771800099,215,0 +170771800149,215,0 +170771800198,215,0 +170771800248,214,0 +170771800296,214,0 +170771800343,214,0 +170771800393,214,0 +170771800441,215,0 +170771800488,215,0 +170771800536,215,0 +170771800584,215,0 +170771800632,215,0 +170771800680,215,0 +170771800728,215,0 +170771800776,215,0 +170771800824,215,0 +170771800873,215,0 +170771800921,215,0 +170771800969,215,0 +170771801018,215,0 +170771801066,214,0 +170771801116,214,0 +170771801164,214,0 +170771801213,214,0 +170771801261,214,0 +170771801309,214,0 +170771801357,215,0 +170771801405,215,0 +170771801453,215,0 +170771801501,215,0 +170771801549,215,0 +170771801596,215,0 +170771801646,215,0 +170771801695,215,0 +170771801743,215,0 +170771801793,215,0 +170771801840,214,0 +170771801888,214,0 +170771801936,214,0 +170771801986,214,0 +170771802035,214,0 +170771802085,214,0 +170771802133,214,0 +170771802180,214,0 +170771802230,215,0 +170771802278,215,0 +170771802326,215,0 +170771802374,215,0 +170771802422,215,0 +170771802470,215,0 +170771802517,215,0 +170771802567,215,0 +170771802615,214,0 +170771802663,214,0 +170771802712,214,0 +170771802762,214,0 +170771802811,214,0 +170771802859,214,0 +170771802909,214,0 +170771802956,214,0 +170771803004,215,0 +170771803052,215,0 +170771803100,215,0 +170771803148,215,0 +170771803196,215,0 +170771803244,215,0 +170771803292,215,0 +170771803340,215,0 +170771803387,214,0 +170771803435,214,0 +170771803483,214,0 +170771803533,214,0 +170771803580,214,0 +170771803628,214,0 +170771803676,214,0 +170771803726,214,0 +170771803774,215,0 +170771803822,215,0 +170771803870,215,0 +170771803919,215,0 +170771803968,215,0 +170771804018,215,0 +170771804066,215,0 +170771804115,215,0 +170771804163,215,0 +170771804211,214,0 +170771804259,214,0 +170771804309,214,0 +170771804357,214,0 +170771804404,214,0 +170771804454,214,0 +170771804503,214,0 +170771804553,215,0 +170771804602,215,0 +170771804652,215,0 +170771804701,215,0 +170771804749,215,0 +170771804797,215,0 +170771804845,215,0 +170771804893,215,0 +170771804943,215,0 +170771804991,214,0 +170771805038,214,0 +170771805088,214,0 +170771805136,214,0 +170771805185,214,0 +170771805233,215,0 +170771805281,215,0 +170771805331,215,0 +170771805378,215,0 +170771805426,215,0 +170771805476,215,0 +170771805525,215,0 +170771805573,215,0 +170771805621,215,0 +170771805669,215,0 +170771805717,215,0 +170771805765,214,0 +170771805813,214,0 +170771805861,214,0 +170771805909,214,0 +170771805956,214,0 +170771806006,214,0 +170771806054,214,0 +170771806103,215,0 +170771806153,215,0 +170771806201,215,0 +170771806248,215,0 +170771806298,215,0 +170771806346,215,0 +170771806395,215,0 +170771806443,215,0 +170771806493,215,0 +170771806542,214,0 +170771806592,213,0 +170771806640,213,0 +170771806689,214,0 +170771806739,214,0 +170771806788,214,0 +170771806836,214,0 +170771806885,214,0 +170771806933,214,0 +170771806981,214,0 +170771807031,214,0 +170771807079,215,0 +170771807126,214,0 +170771807174,215,0 +170771807222,215,0 +170771807270,215,0 +170771807318,214,0 +170771807366,214,0 +170771807414,213,0 +170771807462,214,0 +170771807510,214,0 +170771807558,214,0 +170771807607,214,0 +170771807657,214,0 +170771807706,214,0 +170771807756,214,0 +170771807804,214,0 +170771807853,215,0 +170771807901,215,0 +170771807949,215,0 +170771807997,215,0 +170771808045,215,0 +170771808093,214,0 +170771808141,214,0 +170771808190,214,0 +170771808240,214,0 +170771808288,214,0 +170771808337,214,0 +170771808387,214,0 +170771808436,215,0 +170771808484,215,0 +170771808532,215,0 +170771808580,215,0 +170771808628,215,0 +170771808675,215,0 +170771808723,215,0 +170771808771,215,0 +170771808819,215,0 +170771808867,215,0 +170771808915,214,0 +170771808962,214,0 +170771809010,214,0 +170771809058,214,0 +170771809106,214,0 +170771809153,214,0 +170771809203,215,0 +170771809251,215,0 +170771809299,215,0 +170771809346,215,0 +170771809394,215,0 +170771809442,215,0 +170771809491,215,0 +170771809539,215,0 +170771809587,215,0 +170771809636,215,0 +170771809684,214,0 +170771809734,214,0 +170771809782,215,0 +170771809829,214,0 +170771809877,215,0 +170771809925,215,0 +170771809973,215,0 +170771810021,215,0 +170771810069,215,0 +170771810117,215,0 +170771810166,215,0 +170771810214,215,0 +170771810262,215,0 +170771810310,215,0 +170771810357,215,0 +170771810405,215,0 +170771810453,214,0 +170771810501,215,0 +170771810551,214,0 +170771810600,215,0 +170771810650,215,0 +170771810699,215,0 +170771810747,215,0 +170771810795,215,0 +170771810843,215,0 +170771810891,215,0 +170771810940,215,0 +170771810988,215,0 +170771811036,215,0 +170771811085,215,0 +170771811135,215,0 +170771811183,215,0 +170771811230,215,0 +170771811278,214,0 +170771811326,214,0 +170771811376,214,0 +170771811425,214,0 +170771811473,214,0 +170771811523,214,0 +170771811572,214,0 +170771811621,215,0 +170771811669,215,0 +170771811719,215,0 +170771811766,215,0 +170771811814,215,0 +170771811862,215,0 +170771811910,215,0 +170771811958,215,0 +170771812006,215,0 +170771812053,214,0 +170771812101,214,0 +170771812151,214,0 +170771812199,214,0 +170771812248,214,0 +170771812296,214,0 +170771812345,214,0 +170771812393,214,0 +170771812441,215,0 +170771812489,214,0 +170771812536,214,0 +170771812586,215,0 +170771812634,215,0 +170771812681,215,0 +170771812729,215,0 +170771812777,215,0 +170771812827,214,0 +170771812874,213,0 +170771812922,213,0 +170771812970,214,0 +170771813018,214,0 +170771813066,214,0 +170771813113,214,0 +170771813163,214,0 +170771813211,214,0 +170771813259,214,0 +170771813308,215,0 +170771813358,215,0 +170771813407,215,0 +170771813457,215,0 +170771813505,215,0 +170771813552,215,0 +170771813602,214,0 +170771813651,214,0 +170771813699,214,0 +170771813747,214,0 +170771813795,214,0 +170771813843,214,0 +170771813891,214,0 +170771813939,215,0 +170771813988,214,0 +170771814038,215,0 +170771814086,215,0 +170771814135,215,0 +170771814183,215,0 +170771814231,215,0 +170771814280,215,0 +170771814328,215,0 +170771814376,215,0 +170771814426,214,0 +170771814473,214,0 +170771814521,214,0 +170771814569,214,0 +170771814617,214,0 +170771814665,214,0 +170771814713,215,0 +170771814763,215,0 +170771814811,215,0 +170771814859,215,0 +170771814908,215,0 +170771814957,215,0 +170771815005,215,0 +170771815055,215,0 +170771815103,215,0 +170771815151,215,0 +170771815199,214,0 +170771815247,214,0 +170771815294,214,0 +170771815342,214,0 +170771815390,214,0 +170771815438,214,0 +170771815486,214,0 +170771815534,215,0 +170771815584,215,0 +170771815631,215,0 +170771815681,215,0 +170771815729,215,0 +170771815778,215,0 +170771815826,215,0 +170771815876,215,0 +170771815923,215,0 +170771815971,214,0 +170771816019,213,0 +170771816067,214,0 +170771816115,214,0 +170771816165,214,0 +170771816213,214,0 +170771816261,214,0 +170771816310,214,0 +170771816360,214,0 +170771816407,214,0 +170771816455,215,0 +170771816503,215,0 +170771816551,215,0 +170771816601,215,0 +170771816649,215,0 +170771816698,215,0 +170771816748,214,0 +170771816796,214,0 +170771816844,214,0 +170771816893,214,0 +170771816941,214,0 +170771816989,214,0 +170771817037,214,0 +170771817085,215,0 +170771817133,215,0 +170771817181,215,0 +170771817230,215,0 +170771817280,215,0 +170771817328,215,0 +170771817376,215,0 +170771817425,215,0 +170771817473,215,0 +170771817521,215,0 +170771817569,215,0 +170771817617,214,0 +170771817666,214,0 +170771817716,214,0 +170771817764,215,0 +170771817812,215,0 +170771817860,215,0 +170771817907,215,0 +170771817955,215,0 +170771818005,215,0 +170771818053,215,0 +170771818101,215,0 +170771818149,215,0 +170771818196,215,0 +170771818246,215,0 +170771818294,215,0 +170771818343,214,0 +170771818393,214,0 +170771818442,214,0 +170771818492,214,0 +170771818541,215,0 +170771818589,215,0 +170771818637,215,0 +170771818685,215,0 +170771818733,215,0 +170771818781,215,0 +170771818829,215,0 +170771818878,215,0 +170771818926,215,0 +170771818975,215,0 +170771819023,215,0 +170771819071,215,0 +170771819119,214,0 +170771819167,214,0 +170771819215,214,0 +170771819263,214,0 +170771819311,214,0 +170771819360,214,0 +170771819408,215,0 +170771819456,214,0 +170771819504,215,0 +170771819552,215,0 +170771819601,215,0 +170771819650,215,0 +170771819698,215,0 +170771819748,215,0 +170771819796,215,0 +170771819844,215,0 +170771819892,215,0 +170771819939,214,0 +170771819987,214,0 +170771820037,214,0 +170771820085,214,0 +170771820133,214,0 +170771820181,214,0 +170771820230,215,0 +170771820278,214,0 +170771820328,215,0 +170771820376,215,0 +170771820423,215,0 +170771820471,215,0 +170771820519,216,0 +170771820567,215,0 +170771820615,215,0 +170771820663,215,0 +170771820711,214,0 +170771820759,214,0 +170771820808,214,0 +170771820856,214,0 +170771820904,214,0 +170771820953,214,0 +170771821001,215,0 +170771821049,215,0 +170771821097,215,0 +170771821145,215,0 +170771821193,215,0 +170771821241,215,0 +170771821290,215,0 +170771821338,215,0 +170771821388,215,0 +170771821436,215,0 +170771821483,215,0 +170771821533,214,0 +170771821582,215,0 +170771821630,215,0 +170771821680,215,0 +170771821728,215,0 +170771821776,215,0 +170771821823,215,0 +170771821871,215,0 +170771821921,215,0 +170771821970,215,0 +170771822018,215,0 +170771822066,215,0 +170771822114,215,0 +170771822163,215,0 +170771822211,215,0 +170771822261,214,0 +170771822309,214,0 +170771822357,214,0 +170771822404,215,0 +170771822452,214,0 +170771822502,215,0 +170771822551,215,0 +170771822601,215,0 +170771822649,215,0 +170771822698,215,0 +170771822748,215,0 +170771822797,215,0 +170771822845,215,0 +170771822893,215,0 +170771822941,215,0 +170771822991,215,0 +170771823038,215,0 +170771823086,213,0 +170771823134,214,0 +170771823182,214,0 +170771823230,214,0 +170771823278,214,0 +170771823328,214,0 +170771823377,214,0 +170771823427,215,0 +170771823475,215,0 +170771823523,215,0 +170771823570,215,0 +170771823618,215,0 +170771823666,215,0 +170771823714,215,0 +170771823762,215,0 +170771823811,215,0 +170771823861,213,0 +170771823909,213,0 +170771823957,213,0 +170771824006,213,0 +170771824056,214,0 +170771824103,214,0 +170771824151,214,0 +170771824199,214,0 +170771824247,215,0 +170771824295,215,0 +170771824343,215,0 +170771824391,215,0 +170771824440,215,0 +170771824488,215,0 +170771824536,215,0 +170771824586,215,0 +170771824634,214,0 +170771824682,213,0 +170771824731,213,0 +170771824781,214,0 +170771824829,214,0 +170771824877,214,0 +170771824924,214,0 +170771824974,214,0 +170771825022,214,0 +170771825070,214,0 +170771825118,214,0 +170771825167,214,0 +170771825215,215,0 +170771825265,215,0 +170771825314,215,0 +170771825362,215,0 +170771825410,214,0 +170771825459,213,0 +170771825507,213,0 +170771825555,214,0 +170771825605,214,0 +170771825653,214,0 +170771825701,214,0 +170771825749,214,0 +170771825797,214,0 +170771825844,214,0 +170771825894,215,0 +170771825942,215,0 +170771825991,215,0 +170771826039,215,0 +170771826087,215,0 +170771826135,215,0 +170771826183,214,0 +170771826231,214,0 +170771826279,214,0 +170771826327,214,0 +170771826375,214,0 +170771826423,214,0 +170771826471,215,0 +170771826520,214,0 +170771826568,215,0 +170771826616,215,0 +170771826664,215,0 +170771826712,215,0 +170771826762,215,0 +170771826811,215,0 +170771826859,215,0 +170771826908,215,0 +170771826956,215,0 +170771827004,214,0 +170771827052,214,0 +170771827100,214,0 +170771827150,214,0 +170771827199,215,0 +170771827248,215,0 +170771827298,215,0 +170771827346,215,0 +170771827394,215,0 +170771827443,215,0 +170771827491,215,0 +170771827539,215,0 +170771827587,215,0 +170771827636,215,0 +170771827686,215,0 +170771827734,215,0 +170771827782,214,0 +170771827830,214,0 +170771827879,214,0 +170771827929,214,0 +170771827978,214,0 +170771828026,214,0 +170771828074,215,0 +170771828122,215,0 +170771828171,214,0 +170771828221,215,0 +170771828269,215,0 +170771828318,215,0 +170771828368,215,0 +170771828416,215,0 +170771828464,215,0 +170771828512,215,0 +170771828561,214,0 +170771828609,214,0 +170771828657,214,0 +170771828705,214,0 +170771828755,214,0 +170771828803,214,0 +170771828852,214,0 +170771828902,215,0 +170771828951,215,0 +170771828999,215,0 +170771829047,215,0 +170771829095,215,0 +170771829142,215,0 +170771829190,215,0 +170771829238,215,0 +170771829286,215,0 +170771829334,214,0 +170771829382,214,0 +170771829430,214,0 +170771829479,215,0 +170771829527,215,0 +170771829575,215,0 +170771829623,215,0 +170771829671,215,0 +170771829719,215,0 +170771829767,215,0 +170771829815,215,0 +170771829864,215,0 +170771829912,215,0 +170771829962,215,0 +170771830011,215,0 +170771830061,215,0 +170771830109,215,0 +170771830156,214,0 +170771830206,215,0 +170771830254,214,0 +170771830302,215,0 +170771830349,215,0 +170771830399,215,0 +170771830448,215,0 +170771830496,215,0 +170771830544,215,0 +170771830594,215,0 +170771830643,215,0 +170771830691,215,0 +170771830741,215,0 +170771830789,215,0 +170771830838,215,0 +170771830886,215,0 +170771830934,214,0 +170771830982,214,0 +170771831030,214,0 +170771831080,214,0 +170771831127,214,0 +170771831175,215,0 +170771831225,215,0 +170771831274,215,0 +170771831322,215,0 +170771831372,215,0 +170771831420,215,0 +170771831468,215,0 +170771831516,215,0 +170771831564,215,0 +170771831613,215,0 +170771831663,215,0 +170771831712,214,0 +170771831760,214,0 +170771831808,214,0 +170771831856,214,0 +170771831906,214,0 +170771831953,214,0 +170771832001,214,0 +170771832051,215,0 +170771832099,215,0 +170771832147,215,0 +170771832196,215,0 +170771832244,215,0 +170771832292,215,0 +170771832340,215,0 +170771832390,215,0 +170771832438,215,0 +170771832487,214,0 +170771832535,214,0 +170771832584,214,0 +170771832632,214,0 +170771832680,214,0 +170771832730,215,0 +170771832778,215,0 +170771832827,215,0 +170771832875,215,0 +170771832923,215,0 +170771832971,215,0 +170771833019,215,0 +170771833067,215,0 +170771833115,215,0 +170771833163,215,0 +170771833211,215,0 +170771833258,215,0 +170771833306,214,0 +170771833354,214,0 +170771833402,214,0 +170771833450,214,0 +170771833500,215,0 +170771833547,214,0 +170771833595,215,0 +170771833643,215,0 +170771833693,215,0 +170771833741,215,0 +170771833789,215,0 +170771833837,215,0 +170771833885,215,0 +170771833933,215,0 +170771833982,215,0 +170771834030,215,0 +170771834078,214,0 +170771834126,214,0 +170771834175,214,0 +170771834223,214,0 +170771834271,214,0 +170771834321,214,0 +170771834369,214,0 +170771834417,214,0 +170771834464,214,0 +170771834512,215,0 +170771834560,215,0 +170771834608,215,0 +170771834656,215,0 +170771834704,215,0 +170771834752,215,0 +170771834800,215,0 +170771834849,214,0 +170771834897,214,0 +170771834945,214,0 +170771834993,214,0 +170771835041,214,0 +170771835089,214,0 +170771835137,214,0 +170771835187,214,0 +170771835236,215,0 +170771835286,214,0 +170771835335,214,0 +170771835383,215,0 +170771835431,215,0 +170771835479,215,0 +170771835527,215,0 +170771835575,215,0 +170771835623,214,0 +170771835670,214,0 +170771835720,213,0 +170771835769,214,0 +170771835817,214,0 +170771835865,214,0 +170771835915,214,0 +170771835963,214,0 +170771836011,214,0 +170771836058,214,0 +170771836106,215,0 +170771836156,215,0 +170771836205,215,0 +170771836253,215,0 +170771836301,215,0 +170771836349,215,0 +170771836397,215,0 +170771836444,214,0 +170771836492,213,0 +170771836542,214,0 +170771836590,214,0 +170771836639,214,0 +170771836687,214,0 +170771836735,214,0 +170771836783,214,0 +170771836831,214,0 +170771836879,214,0 +170771836927,215,0 +170771836974,215,0 +170771837024,215,0 +170771837072,215,0 +170771837121,215,0 +170771837169,215,0 +170771837217,214,0 +170771837265,213,0 +170771837315,214,0 +170771837363,214,0 +170771837412,214,0 +170771837462,214,0 +170771837510,214,0 +170771837558,214,0 +170771837607,214,0 +170771837655,215,0 +170771837705,215,0 +170771837754,215,0 +170771837802,215,0 +170771837851,215,0 +170771837899,215,0 +170771837947,215,0 +170771837995,214,0 +170771838044,214,0 +170771838092,214,0 +170771838140,214,0 +170771838189,214,0 +170771838237,214,0 +170771838287,215,0 +170771838335,215,0 +170771838383,215,0 +170771838430,215,0 +170771838478,215,0 +170771838526,215,0 +170771838576,215,0 +170771838623,215,0 +170771838671,215,0 +170771838719,215,0 +170771838769,214,0 +170771838816,214,0 +170771838864,214,0 +170771838912,215,0 +170771838960,215,0 +170771839008,215,0 +170771839057,215,0 +170771839105,215,0 +170771839155,215,0 +170771839203,215,0 +170771839251,215,0 +170771839300,215,0 +170771839348,215,0 +170771839396,215,0 +170771839444,215,0 +170771839492,215,0 +170771839541,215,0 +170771839589,214,0 +170771839637,215,0 +170771839685,215,0 +170771839733,215,0 +170771839781,215,0 +170771839829,215,0 +170771839877,215,0 +170771839926,215,0 +170771839974,215,0 +170771840022,215,0 +170771840072,215,0 +170771840121,216,0 +170771840169,215,0 +170771840217,215,0 +170771840265,215,0 +170771840315,215,0 +170771840364,214,0 +170771840412,214,0 +170771840461,214,0 +170771840511,214,0 +170771840559,215,0 +170771840607,215,0 +170771840655,215,0 +170771840702,215,0 +170771840752,215,0 +170771840801,215,0 +170771840851,215,0 +170771840899,215,0 +170771840947,215,0 +170771840996,215,0 +170771841046,215,0 +170771841094,215,0 +170771841142,214,0 +170771841191,214,0 +170771841239,214,0 +170771841289,214,0 +170771841338,214,0 +170771841386,214,0 +170771841435,214,0 +170771841483,214,0 +170771841533,215,0 +170771841582,215,0 +170771841630,215,0 +170771841678,215,0 +170771841726,215,0 +170771841774,215,0 +170771841822,215,0 +170771841870,215,0 +170771841918,214,0 +170771841966,214,0 +170771842014,215,0 +170771842062,214,0 +170771842110,215,0 +170771842158,215,0 +170771842207,215,0 +170771842257,215,0 +170771842304,215,0 +170771842354,215,0 +170771842402,215,0 +170771842450,215,0 +170771842499,215,0 +170771842547,215,0 +170771842595,215,0 +170771842643,215,0 +170771842691,215,0 +170771842739,215,0 +170771842787,215,0 +170771842835,215,0 +170771842883,215,0 +170771842931,215,0 +170771842979,215,0 +170771843028,215,0 +170771843076,215,0 +170771843124,215,0 +170771843173,215,0 +170771843223,215,0 +170771843272,215,0 +170771843322,215,0 +170771843370,215,0 +170771843418,215,0 +170771843467,215,0 +170771843515,214,0 +170771843565,214,0 +170771843614,214,0 +170771843664,214,0 +170771843712,216,0 +170771843759,215,0 +170771843807,215,0 +170771843855,215,0 +170771843903,215,0 +170771843951,215,0 +170771843999,215,0 +170771844048,215,0 +170771844096,215,0 +170771844144,215,0 +170771844194,215,0 +170771844242,215,0 +170771844291,214,0 +170771844339,214,0 +170771844387,215,0 +170771844435,214,0 +170771844483,215,0 +170771844531,214,0 +170771844580,214,0 +170771844628,215,0 +170771844676,215,0 +170771844724,215,0 +170771844772,215,0 +170771844820,215,0 +170771844869,215,0 +170771844917,215,0 +170771844965,215,0 +170771845013,215,0 +170771845061,214,0 +170771845110,214,0 +170771845158,214,0 +170771845208,214,0 +170771845256,214,0 +170771845303,214,0 +170771845353,214,0 +170771845402,214,0 +170771845452,214,0 +170771845501,215,0 +170771845551,215,0 +170771845600,215,0 +170771845650,215,0 +170771845698,215,0 +170771845747,215,0 +170771845795,215,0 +170771845843,215,0 +170771845891,214,0 +170771845939,214,0 +170771845988,214,0 +170771846038,214,0 +170771846087,214,0 +170771846135,214,0 +170771846185,214,0 +170771846233,215,0 +170771846281,214,0 +170771846329,215,0 +170771846377,214,0 +170771846425,215,0 +170771846474,215,0 +170771846522,215,0 +170771846570,215,0 +170771846619,215,0 +170771846667,214,0 +170771846715,214,0 +170771846763,214,0 +170771846813,214,0 +170771846861,214,0 +170771846908,214,0 +170771846958,214,0 +170771847008,215,0 +170771847055,214,0 +170771847103,215,0 +170771847151,215,0 +170771847201,215,0 +170771847249,215,0 +170771847297,215,0 +170771847346,215,0 +170771847394,215,0 +170771847442,214,0 +170771847492,214,0 +170771847541,214,0 +170771847589,214,0 +170771847637,214,0 +170771847685,214,0 +170771847733,214,0 +170771847782,214,0 +170771847830,215,0 +170771847878,215,0 +170771847926,215,0 +170771847974,215,0 +170771848022,215,0 +170771848071,215,0 +170771848119,215,0 +170771848167,215,0 +170771848215,214,0 +170771848263,214,0 +170771848311,214,0 +170771848360,214,0 +170771848408,214,0 +170771848456,214,0 +170771848506,214,0 +170771848555,214,0 +170771848605,215,0 +170771848653,215,0 +170771848702,215,0 +170771848752,215,0 +170771848801,215,0 +170771848849,215,0 +170771848897,215,0 +170771848945,215,0 +170771848993,214,0 +170771849041,214,0 +170771849089,214,0 +170771849137,214,0 +170771849185,214,0 +170771849234,214,0 +170771849282,214,0 +170771849332,214,0 +170771849380,214,0 +170771849427,215,0 +170771849475,215,0 +170771849525,215,0 +170771849573,215,0 +170771849622,215,0 +170771849672,215,0 +170771849720,215,0 +170771849768,214,0 +170771849816,214,0 +170771849864,214,0 +170771849912,214,0 +170771849960,214,0 +170771850009,214,0 +170771850057,214,0 +170771850105,215,0 +170771850153,215,0 +170771850203,215,0 +170771850250,215,0 +170771850298,215,0 +170771850346,215,0 +170771850394,215,0 +170771850442,215,0 +170771850490,215,0 +170771850539,215,0 +170771850587,214,0 +170771850635,214,0 +170771850685,214,0 +170771850734,214,0 +170771850784,214,0 +170771850832,214,0 +170771850880,214,0 +170771850929,215,0 +170771850977,215,0 +170771851025,215,0 +170771851073,215,0 +170771851120,215,0 +170771851168,215,0 +170771851216,215,0 +170771851264,215,0 +170771851313,215,0 +170771851363,214,0 +170771851411,214,0 +170771851458,214,0 +170771851506,214,0 +170771851554,214,0 +170771851602,214,0 +170771851650,215,0 +170771851698,215,0 +170771851745,215,0 +170771851793,215,0 +170771851841,215,0 +170771851889,215,0 +170771851937,215,0 +170771851985,215,0 +170771852034,215,0 +170771852082,215,0 +170771852130,215,0 +170771852178,214,0 +170771852226,214,0 +170771852274,214,0 +170771852322,214,0 +170771852371,214,0 +170771852419,214,0 +170771852467,214,0 +170771852514,214,0 +170771852562,215,0 +170771852610,215,0 +170771852658,215,0 +170771852706,215,0 +170771852753,215,0 +170771852801,215,0 +170771852851,215,0 +170771852900,215,0 +170771852950,214,0 +170771852999,214,0 +170771853047,214,0 +170771853095,214,0 +170771853144,214,0 +170771853192,214,0 +170771853240,214,0 +170771853288,214,0 +170771853335,214,0 +170771853383,215,0 +170771853431,215,0 +170771853479,215,0 +170771853527,215,0 +170771853575,215,0 +170771853622,215,0 +170771853670,215,0 +170771853718,214,0 +170771853766,214,0 +170771853814,214,0 +170771853861,214,0 +170771853911,214,0 +170771853960,215,0 +170771854008,215,0 +170771854057,215,0 +170771854105,215,0 +170771854153,215,0 +170771854201,215,0 +170771854249,215,0 +170771854297,215,0 +170771854346,215,0 +170771854396,215,0 +170771854445,215,0 +170771854493,214,0 +170771854543,214,0 +170771854591,214,0 +170771854640,214,0 +170771854688,214,0 +170771854736,214,0 +170771854784,215,0 +170771854832,215,0 +170771854880,215,0 +170771854928,215,0 +170771854977,215,0 +170771855027,217,0 +170771855075,215,0 +170771855124,215,0 +170771855172,215,0 +170771855220,215,0 +170771855270,215,0 +170771855318,214,0 +170771855365,214,0 +170771855413,214,0 +170771855461,215,0 +170771855509,215,0 +170771855557,215,0 +170771855607,215,0 +170771855656,215,0 +170771855704,215,0 +170771855753,215,0 +170771855801,215,0 +170771855849,215,0 +170771855899,215,0 +170771855947,215,0 +170771855996,215,0 +170771856046,215,0 +170771856095,214,0 +170771856145,214,0 +170771856193,214,0 +170771856242,214,0 +170771856292,214,0 +170771856340,214,0 +170771856388,214,0 +170771856437,214,0 +170771856485,214,0 +170771856535,215,0 +170771856583,215,0 +170771856632,215,0 +170771856682,215,0 +170771856731,215,0 +170771856781,215,0 +170771856830,215,0 +170771856878,214,0 +170771856926,214,0 +170771856974,214,0 +170771857022,214,0 +170771857069,214,0 +170771857117,214,0 +170771857165,214,0 +170771857213,214,0 +170771857261,214,0 +170771857311,215,0 +170771857360,215,0 +170771857408,215,0 +170771857456,215,0 +170771857504,215,0 +170771857554,215,0 +170771857603,215,0 +170771857651,215,0 +170771857699,214,0 +170771857749,214,0 +170771857796,214,0 +170771857844,214,0 +170771857894,214,0 +170771857942,215,0 +170771857990,214,0 +170771858037,215,0 +170771858087,215,0 +170771858135,215,0 +170771858184,215,0 +170771858232,215,0 +170771858282,215,0 +170771858331,215,0 +170771858379,215,0 +170771858427,215,0 +170771858475,214,0 +170771858524,214,0 +170771858574,214,0 +170771858621,214,0 +170771858669,214,0 +170771858719,214,0 +170771858767,214,0 +170771858815,215,0 +170771858864,215,0 +170771858912,215,0 +170771858962,215,0 +170771859010,215,0 +170771859057,215,0 +170771859105,215,0 +170771859155,215,0 +170771859203,215,0 +170771859252,214,0 +170771859300,214,0 +170771859348,214,0 +170771859398,214,0 +170771859446,214,0 +170771859494,214,0 +170771859541,214,0 +170771859589,215,0 +170771859639,215,0 +170771859687,215,0 +170771859734,215,0 +170771859782,215,0 +170771859832,215,0 +170771859880,215,0 +170771859928,215,0 +170771859977,215,0 +170771860027,214,0 +170771860076,213,0 +170771860124,214,0 +170771860172,214,0 +170771860220,214,0 +170771860269,214,0 +170771860317,214,0 +170771860367,214,0 +170771860416,214,0 +170771860466,215,0 +170771860515,215,0 +170771860563,215,0 +170771860611,215,0 +170771860661,215,0 +170771860710,215,0 +170771860758,215,0 +170771860808,214,0 +170771860857,213,0 +170771860906,214,0 +170771860954,214,0 +170771861002,214,0 +170771861050,214,0 +170771861098,214,0 +170771861146,214,0 +170771861194,214,0 +170771861242,214,0 +170771861291,215,0 +170771861340,215,0 +170771861390,215,0 +170771861438,215,0 +170771861487,215,0 +170771861536,215,0 +170771861584,214,0 +170771861631,213,0 +170771861679,213,0 +170771861729,213,0 +170771861777,214,0 +170771861825,214,0 +170771861873,214,0 +170771861922,214,0 +170771861970,214,0 +170771862018,214,0 +170771862066,214,0 +170771862114,214,0 +170771862162,215,0 +170771862211,215,0 +170771862259,215,0 +170771862307,215,0 +170771862357,214,0 +170771862406,213,0 +170771862456,214,0 +170771862504,214,0 +170771862553,214,0 +170771862601,214,0 +170771862651,214,0 +170771862699,214,0 +170771862746,214,0 +170771862796,215,0 +170771862844,215,0 +170771862893,215,0 +170771862941,215,0 +170771862989,215,0 +170771863037,215,0 +170771863087,215,0 +170771863135,214,0 +170771863183,214,0 +170771863231,214,0 +170771863280,214,0 +170771863330,214,0 +170771863379,214,0 +170771863427,214,0 +170771863475,214,0 +170771863525,215,0 +170771863573,215,0 +170771863621,215,0 +170771863670,215,0 +170771863720,215,0 +170771863768,215,0 +170771863817,215,0 +170771863866,215,0 +170771863916,215,0 +170771863966,214,0 +170771864015,214,0 +170771864063,214,0 +170771864111,215,0 +170771864159,215,0 +170771864207,215,0 +170771864255,215,0 +170771864304,215,0 +170771864354,215,0 +170771864401,215,0 +170771864451,215,0 +170771864499,215,0 +170771864548,215,0 +170771864596,215,0 +170771864644,215,0 +170771864692,214,0 +170771864742,214,0 +170771864790,214,0 +170771864839,214,0 +170771864889,214,0 +170771864937,214,0 +170771864984,214,0 +170771865032,214,0 +170771865080,215,0 +170771865128,214,0 +170771865178,215,0 +170771865227,215,0 +170771865277,215,0 +170771865326,215,0 +170771865374,215,0 +170771865422,215,0 +170771865472,215,0 +170771865520,214,0 +170771865568,214,0 +170771865615,214,0 +170771865663,214,0 +170771865711,214,0 +170771865759,214,0 +170771865809,214,0 +170771865858,215,0 +170771865906,215,0 +170771865954,215,0 +170771866002,215,0 +170771866050,215,0 +170771866098,215,0 +170771866146,215,0 +170771866194,215,0 +170771866242,215,0 +170771866290,214,0 +170771866338,214,0 +170771866387,214,0 +170771866435,215,0 +170771866485,215,0 +170771866532,215,0 +170771866580,215,0 +170771866630,215,0 +170771866678,215,0 +170771866725,215,0 +170771866773,215,0 +170771866821,215,0 +170771866869,215,0 +170771866919,215,0 +170771866968,215,0 +170771867016,215,0 +170771867066,215,0 +170771867114,215,0 +170771867163,215,0 +170771867211,215,0 +170771867261,215,0 +170771867310,215,0 +170771867360,215,0 +170771867407,215,0 +170771867457,215,0 +170771867505,215,0 +170771867553,215,0 +170771867601,215,0 +170771867650,215,0 +170771867698,215,0 +170771867746,215,0 +170771867794,215,0 +170771867842,215,0 +170771867891,214,0 +170771867939,214,0 +170771867987,214,0 +170771868035,215,0 +170771868083,214,0 +170771868131,215,0 +170771868180,215,0 +170771868228,215,0 +170771868278,215,0 +170771868327,215,0 +170771868377,215,0 +170771868426,215,0 +170771868474,215,0 +170771868524,215,0 +170771868572,215,0 +170771868620,215,0 +170771868668,214,0 +170771868717,214,0 +170771868765,214,0 +170771868813,214,0 +170771868863,214,0 +170771868912,215,0 +170771868960,214,0 +170771869010,214,0 +170771869059,215,0 +170771869109,215,0 +170771869157,215,0 +170771869206,215,0 +170771869256,215,0 +170771869305,215,0 +170771869355,215,0 +170771869403,215,0 +170771869451,214,0 +170771869498,214,0 +170771869546,214,0 +170771869596,214,0 +170771869645,214,0 +170771869693,214,0 +170771869741,214,0 +170771869789,215,0 +170771869837,215,0 +170771869887,215,0 +170771869935,215,0 +170771869983,215,0 +170771870031,215,0 +170771870078,215,0 +170771870126,215,0 +170771870176,215,0 +170771870224,215,0 +170771870272,214,0 +170771870321,214,0 +170771870369,214,0 +170771870417,214,0 +170771870465,214,0 +170771870514,214,0 +170771870562,215,0 +170771870612,215,0 +170771870661,215,0 +170771870711,215,0 +170771870759,215,0 +170771870807,215,0 +170771870856,215,0 +170771870906,215,0 +170771870954,215,0 +170771871003,215,0 +170771871051,214,0 +170771871099,214,0 +170771871148,214,0 +170771871198,214,0 +170771871247,214,0 +170771871297,214,0 +170771871345,214,0 +170771871393,214,0 +170771871441,214,0 +170771871490,215,0 +170771871538,215,0 +170771871586,215,0 +170771871636,215,0 +170771871685,215,0 +170771871735,215,0 +170771871783,215,0 +170771871832,214,0 +170771871880,214,0 +170771871928,214,0 +170771871978,214,0 +170771872027,214,0 +170771872077,214,0 +170771872126,214,0 +170771872174,215,0 +170771872222,214,0 +170771872270,215,0 +170771872318,215,0 +170771872367,215,0 +170771872415,215,0 +170771872465,215,0 +170771872513,215,0 +170771872562,215,0 +170771872612,214,0 +170771872661,213,0 +170771872709,214,0 +170771872757,213,0 +170771872805,214,0 +170771872853,214,0 +170771872901,214,0 +170771872950,214,0 +170771872998,214,0 +170771873046,214,0 +170771873094,215,0 +170771873142,215,0 +170771873190,215,0 +170771873238,215,0 +170771873287,215,0 +170771873337,215,0 +170771873385,214,0 +170771873434,213,0 +170771873484,213,0 +170771873532,214,0 +170771873580,214,0 +170771873627,214,0 +170771873675,214,0 +170771873723,214,0 +170771873771,214,0 +170771873819,214,0 +170771873867,214,0 +170771873916,214,0 +170771873964,215,0 +170771874012,215,0 +170771874060,215,0 +170771874108,215,0 +170771874156,215,0 +170771874203,214,0 +170771874251,214,0 +170771874299,214,0 +170771874347,214,0 +170771874395,213,0 +170771874445,214,0 +170771874493,214,0 +170771874541,214,0 +170771874590,214,0 +170771874638,214,0 +170771874688,215,0 +170771874737,215,0 +170771874787,215,0 +170771874836,215,0 +170771874884,214,0 +170771874932,215,0 +170771874981,214,0 +170771875029,214,0 +170771875077,214,0 +170771875127,214,0 +170771875176,214,0 +170771875226,214,0 +170771875274,215,0 +170771875322,215,0 +170771875370,215,0 +170771875418,215,0 +170771875466,215,0 +170771875514,215,0 +170771875562,215,0 +170771875610,215,0 +170771875657,215,0 +170771875707,215,0 +170771875756,214,0 +170771875804,214,0 +170771875852,214,0 +170771875900,214,0 +170771875950,214,0 +170771875998,215,0 +170771876046,215,0 +170771876094,215,0 +170771876142,215,0 +170771876191,215,0 +170771876241,215,0 +170771876289,215,0 +170771876337,215,0 +170771876385,215,0 +170771876433,215,0 +170771876481,215,0 +170771876530,214,0 +170771876580,214,0 +170771876628,214,0 +170771876677,214,0 +170771876725,214,0 +170771876775,215,0 +170771876822,215,0 +170771876872,215,0 +170771876921,215,0 +170771876971,215,0 +170771877019,215,0 +170771877067,215,0 +170771877116,215,0 +170771877164,215,0 +170771877214,215,0 +170771877263,215,0 +170771877311,215,0 +170771877361,214,0 +170771877409,214,0 +170771877458,214,0 +170771877508,214,0 +170771877556,214,0 +170771877605,215,0 +170771877653,215,0 +170771877701,215,0 +170771877750,215,0 +170771877798,215,0 +170771877848,215,0 +170771877896,215,0 +170771877944,215,0 +170771877993,215,0 +170771878043,215,0 +170771878092,215,0 +170771878140,215,0 +170771878188,215,0 +170771878238,215,0 +170771878286,215,0 +170771878335,215,0 +170771878383,215,0 +170771878433,215,0 +170771878482,215,0 +170771878530,215,0 +170771878578,215,0 +170771878628,215,0 +170771878677,215,0 +170771878725,215,0 +170771878773,215,0 +170771878822,215,0 +170771878870,215,0 +170771878920,215,0 +170771878968,215,0 +170771879017,215,0 +170771879067,215,0 +170771879116,215,0 +170771879166,215,0 +170771879215,215,0 +170771879263,215,0 +170771879312,215,0 +170771879360,215,0 +170771879408,215,0 +170771879456,215,0 +170771879506,215,0 +170771879555,215,0 +170771879605,215,0 +170771879653,215,0 +170771879701,214,0 +170771879750,214,0 +170771879798,215,0 +170771879846,215,0 +170771879896,215,0 +170771879943,215,0 +170771879991,215,0 +170771880041,215,0 +170771880089,215,0 +170771880136,215,0 +170771880184,215,0 +170771880234,215,0 +170771880282,215,0 +170771880331,215,0 +170771880381,215,0 +170771880430,215,0 +170771880478,214,0 +170771880528,214,0 +170771880576,214,0 +170771880624,214,0 +170771880673,214,0 +170771880721,215,0 +170771880769,214,0 +170771880817,215,0 +170771880865,215,0 +170771880913,215,0 +170771880961,215,0 +170771881011,215,0 +170771881059,215,0 +170771881106,215,0 +170771881156,215,0 +170771881204,215,0 +170771881253,215,0 +170771881303,214,0 +170771881352,214,0 +170771881402,214,0 +170771881451,214,0 +170771881499,214,0 +170771881547,214,0 +170771881595,214,0 +170771881643,214,0 +170771881693,215,0 +170771881741,215,0 +170771881790,215,0 +170771881840,215,0 +170771881889,215,0 +170771881939,215,0 +170771881988,215,0 +170771882036,214,0 +170771882084,213,0 +170771882133,213,0 +170771882183,214,0 +170771882231,214,0 +170771882279,214,0 +170771882328,214,0 +170771882376,214,0 +170771882424,214,0 +170771882472,215,0 +170771882520,215,0 +170771882568,215,0 +170771882616,215,0 +170771882664,215,0 +170771882712,215,0 +170771882760,215,0 +170771882809,215,0 +170771882857,213,0 +170771882905,213,0 +170771882955,214,0 +170771883004,214,0 +170771883052,214,0 +170771883100,214,0 +170771883148,214,0 +170771883196,214,0 +170771883244,214,0 +170771883294,215,0 +170771883343,215,0 +170771883393,215,0 +170771883441,215,0 +170771883490,215,0 +170771883538,215,0 +170771883586,215,0 +170771883634,214,0 +170771883682,213,0 +170771883731,214,0 +170771883781,214,0 +170771883829,214,0 +170771883878,214,0 +170771883928,214,0 +170771883977,214,0 +170771884027,214,0 +170771884076,215,0 +170771884126,215,0 +170771884175,215,0 +170771884223,215,0 +170771884271,215,0 +170771884319,215,0 +170771884367,215,0 +170771884415,214,0 +170771884463,214,0 +170771884511,213,0 +170771884559,214,0 +170771884607,214,0 +170771884655,214,0 +170771884704,214,0 +170771884752,214,0 +170771884800,214,0 +170771884848,215,0 +170771884897,215,0 +170771884945,215,0 +170771884993,215,0 +170771885041,215,0 +170771885091,215,0 +170771885138,215,0 +170771885186,214,0 +170771885236,213,0 +170771885285,213,0 +170771885333,214,0 +170771885383,214,0 +170771885432,214,0 +170771885480,214,0 +170771885528,214,0 +170771885576,214,0 +170771885624,214,0 +170771885672,214,0 +170771885720,215,0 +170771885769,215,0 +170771885817,215,0 +170771885867,215,0 +170771885914,215,0 +170771885964,215,0 +170771886012,213,0 +170771886060,213,0 +170771886108,214,0 +170771886156,214,0 +170771886203,214,0 +170771886251,214,0 +170771886301,214,0 +170771886349,214,0 +170771886397,215,0 +170771886444,215,0 +170771886492,215,0 +170771886540,215,0 +170771886590,215,0 +170771886638,215,0 +170771886687,215,0 +170771886737,215,0 +170771886785,213,0 +170771886834,214,0 +170771886884,214,0 +170771886933,214,0 +170771886981,214,0 +170771887029,214,0 +170771887079,214,0 +170771887128,215,0 +170771887176,215,0 +170771887224,215,0 +170771887271,215,0 +170771887321,215,0 +170771887369,215,0 +170771887416,215,0 +170771887464,215,0 +170771887512,215,0 +170771887562,214,0 +170771887609,214,0 +170771887657,214,0 +170771887705,214,0 +170771887753,214,0 +170771887801,215,0 +170771887849,215,0 +170771887897,215,0 +170771887945,215,0 +170771887993,215,0 +170771888042,215,0 +170771888090,215,0 +170771888138,215,0 +170771888187,215,0 +170771888235,215,0 +170771888285,215,0 +170771888334,215,0 +170771888382,214,0 +170771888430,214,0 +170771888479,215,0 +170771888527,215,0 +170771888576,215,0 +170771888626,215,0 +170771888674,215,0 +170771888722,215,0 +170771888770,215,0 +170771888818,215,0 +170771888866,215,0 +170771888913,215,0 +170771888961,215,0 +170771889011,215,0 +170771889060,215,0 +170771889108,215,0 +170771889156,214,0 +170771889205,214,0 +170771889253,215,0 +170771889301,215,0 +170771889349,215,0 +170771889397,215,0 +170771889445,215,0 +170771889493,215,0 +170771889541,215,0 +170771889590,215,0 +170771889638,215,0 +170771889686,215,0 +170771889734,215,0 +170771889782,215,0 +170771889831,215,0 +170771889879,215,0 +170771889927,215,0 +170771889977,214,0 +170771890025,214,0 +170771890074,215,0 +170771890122,215,0 +170771890170,215,0 +170771890218,215,0 +170771890266,215,0 +170771890314,215,0 +170771890362,215,0 +170771890412,215,0 +170771890459,215,0 +170771890507,215,0 +170771890557,215,0 +170771890606,215,0 +170771890654,215,0 +170771890702,214,0 +170771890750,214,0 +170771890798,215,0 +170771890846,215,0 +170771890894,214,0 +170771890942,215,0 +170771890991,215,0 +170771891039,215,0 +170771891087,215,0 +170771891135,215,0 +170771891183,215,0 +170771891231,215,0 +170771891280,215,0 +170771891328,215,0 +170771891378,215,0 +170771891425,215,0 +170771891473,215,0 +170771891521,214,0 +170771891571,214,0 +170771891620,214,0 +170771891668,215,0 +170771891716,214,0 +170771891766,215,0 +170771891814,215,0 +170771891863,215,0 +170771891911,215,0 +170771891959,215,0 +170771892007,215,0 +170771892055,215,0 +170771892103,215,0 +170771892152,215,0 +170771892200,215,0 +170771892247,215,0 +170771892295,214,0 +170771892343,214,0 +170771892391,214,0 +170771892439,214,0 +170771892487,214,0 +170771892534,214,0 +170771892583,214,0 +170771892631,215,0 +170771892679,214,0 +170771892727,215,0 +170771892775,215,0 +170771892823,215,0 +170771892872,215,0 +170771892920,215,0 +170771892970,215,0 +170771893018,215,0 +170771893066,214,0 +170771893115,213,0 +170771893163,213,0 +170771893211,214,0 +170771893259,214,0 +170771893308,214,0 +170771893356,214,0 +170771893404,214,0 +170771893452,214,0 +170771893500,215,0 +170771893548,215,0 +170771893596,215,0 +170771893643,215,0 +170771893691,215,0 +170771893739,214,0 +170771893787,215,0 +170771893835,215,0 +170771893883,213,0 +170771893931,213,0 +170771893980,213,0 +170771894028,214,0 +170771894076,214,0 +170771894124,214,0 +170771894172,214,0 +170771894220,215,0 +170771894268,214,0 +170771894316,215,0 +170771894365,215,0 +170771894415,215,0 +170771894463,215,0 +170771894511,215,0 +170771894560,215,0 +170771894608,214,0 +170771894656,213,0 +170771894704,213,0 +170771894752,214,0 +170771894800,214,0 +170771894848,214,0 +170771894896,214,0 +170771894944,214,0 +170771894993,214,0 +170771895043,214,0 +170771895090,214,0 +170771895138,215,0 +170771895186,215,0 +170771895234,215,0 +170771895282,215,0 +170771895332,215,0 +170771895380,215,0 +170771895428,214,0 +170771895477,214,0 +170771895526,214,0 +170771895574,214,0 +170771895624,214,0 +170771895672,214,0 +170771895720,214,0 +170771895767,214,0 +170771895815,214,0 +170771895863,215,0 +170771895913,215,0 +170771895961,215,0 +170771896009,215,0 +170771896058,215,0 +170771896108,214,0 +170771896156,215,0 +170771896205,214,0 +170771896255,214,0 +170771896304,214,0 +170771896352,214,0 +170771896400,214,0 +170771896448,214,0 +170771896496,214,0 +170771896546,215,0 +170771896595,215,0 +170771896645,215,0 +170771896694,215,0 +170771896742,215,0 +170771896790,215,0 +170771896838,215,0 +170771896887,215,0 +170771896935,215,0 +170771896985,214,0 +170771897033,214,0 +170771897082,214,0 +170771897130,214,0 +170771897178,214,0 +170771897226,214,0 +170771897276,215,0 +170771897323,214,0 +170771897371,215,0 +170771897419,215,0 +170771897467,215,0 +170771897515,215,0 +170771897563,215,0 +170771897611,215,0 +170771897661,215,0 +170771897709,215,0 +170771897758,215,0 +170771897806,214,0 +170771897855,214,0 +170771897903,214,0 +170771897951,214,0 +170771897999,214,0 +170771898047,214,0 +170771898095,214,0 +170771898145,215,0 +170771898194,215,0 +170771898242,215,0 +170771898292,215,0 +170771898341,215,0 +170771898389,215,0 +170771898437,215,0 +170771898487,215,0 +170771898536,215,0 +170771898586,214,0 +170771898634,214,0 +170771898681,214,0 +170771898731,214,0 +170771898779,214,0 +170771898827,214,0 +170771898875,214,0 +170771898922,215,0 +170771898972,215,0 +170771899021,215,0 +170771899069,215,0 +170771899117,215,0 +170771899165,215,0 +170771899215,215,0 +170771899263,215,0 +170771899312,215,0 +170771899360,214,0 +170771899408,214,0 +170771899458,214,0 +170771899507,215,0 +170771899555,214,0 +170771899605,215,0 +170771899652,215,0 +170771899700,215,0 +170771899750,215,0 +170771899798,215,0 +170771899846,215,0 +170771899894,215,0 +170771899942,215,0 +170771899990,215,0 +170771900037,215,0 +170771900085,215,0 +170771900133,215,0 +170771900181,215,0 +170771900231,215,0 +170771900279,215,0 +170771900326,215,0 +170771900374,215,0 +170771900424,215,0 +170771900472,215,0 +170771900520,215,0 +170771900568,215,0 +170771900616,215,0 +170771900664,216,0 +170771900711,215,0 +170771900761,215,0 +170771900810,215,0 +170771900860,215,0 +170771900908,215,0 +170771900956,215,0 +170771901004,215,0 +170771901053,215,0 +170771901101,215,0 +170771901149,215,0 +170771901197,215,0 +170771901245,215,0 +170771901293,215,0 +170771901341,216,0 +170771901390,215,0 +170771901438,215,0 +170771901486,215,0 +170771901534,215,0 +170771901582,215,0 +170771901631,215,0 +170771901679,215,0 +170771901727,215,0 +170771901775,214,0 +170771901823,214,0 +170771901871,215,0 +170771901919,214,0 +170771901967,214,0 +170771902016,215,0 +170771902064,215,0 +170771902114,215,0 +170771902161,215,0 +170771902211,215,0 +170771902259,215,0 +170771902307,215,0 +170771902356,215,0 +170771902404,215,0 +170771902452,215,0 +170771902500,214,0 +170771902549,214,0 +170771902597,214,0 +170771902645,214,0 +170771902693,214,0 +170771902741,214,0 +170771902789,215,0 +170771902837,215,0 +170771902885,215,0 +170771902933,215,0 +170771902981,215,0 +170771903029,215,0 +170771903077,215,0 +170771903126,215,0 +170771903174,215,0 +170771903224,215,0 +170771903273,215,0 +170771903321,214,0 +170771903371,214,0 +170771903419,214,0 +170771903468,214,0 +170771903518,214,0 +170771903567,215,0 +170771903615,215,0 +170771903665,215,0 +170771903713,215,0 +170771903761,215,0 +170771903809,215,0 +170771903856,215,0 +170771903904,215,0 +170771903954,215,0 +170771904002,215,0 +170771904051,214,0 +170771904101,214,0 +170771904150,214,0 +170771904198,214,0 +170771904247,214,0 +170771904297,214,0 +170771904346,214,0 +170771904394,215,0 +170771904442,214,0 +170771904492,215,0 +170771904540,215,0 +170771904589,214,0 +170771904639,215,0 +170771904688,215,0 +170771904738,215,0 +170771904787,215,0 +170771904837,215,0 +170771904886,213,0 +170771904936,213,0 +170771904983,213,0 +170771905031,214,0 +170771905081,214,0 +170771905129,214,0 +170771905177,214,0 +170771905226,214,0 +170771905274,214,0 +170771905322,214,0 +170771905370,215,0 +170771905418,215,0 +170771905466,215,0 +170771905514,215,0 +170771905562,215,0 +170771905610,215,0 +170771905657,214,0 +170771905705,214,0 +170771905755,213,0 +170771905802,213,0 +170771905852,214,0 +170771905901,214,0 +170771905949,214,0 +170771905997,214,0 +170771906045,214,0 +170771906093,214,0 +170771906141,215,0 +170771906189,215,0 +170771906237,215,0 +170771906286,215,0 +170771906334,215,0 +170771906383,215,0 +170771906433,215,0 +170771906481,214,0 +170771906530,214,0 +170771906580,214,0 +170771906629,214,0 +170771906677,214,0 +170771906727,214,0 +170771906774,215,0 +170771906822,214,0 +170771906870,215,0 +170771906918,215,0 +170771906968,215,0 +170771907015,215,0 +170771907063,215,0 +170771907113,215,0 +170771907162,215,0 +170771907210,215,0 +170771907258,214,0 +170771907306,214,0 +170771907355,214,0 +170771907403,214,0 +170771907451,214,0 +170771907501,214,0 +170771907549,215,0 +170771907597,214,0 +170771907646,215,0 +170771907696,215,0 +170771907745,215,0 +170771907793,215,0 +170771907842,215,0 +170771907890,215,0 +170771907938,215,0 +170771907986,215,0 +170771908034,214,0 +170771908083,214,0 +170771908131,214,0 +170771908179,214,0 +170771908227,214,0 +170771908275,215,0 +170771908323,215,0 +170771908371,215,0 +170771908418,215,0 +170771908466,215,0 +170771908514,215,0 +170771908562,215,0 +170771908610,215,0 +170771908658,215,0 +170771908707,215,0 +170771908757,215,0 +170771908805,214,0 +170771908854,214,0 +170771908902,215,0 +170771908951,215,0 +170771908999,214,0 +170771909047,215,0 +170771909097,215,0 +170771909145,215,0 +170771909194,215,0 +170771909242,215,0 +170771909290,215,0 +170771909338,215,0 +170771909388,215,0 +170771909436,215,0 +170771909484,215,0 +170771909531,215,0 +170771909581,214,0 +170771909629,214,0 +170771909677,214,0 +170771909725,214,0 +170771909774,214,0 +170771909822,214,0 +170771909870,214,0 +170771909918,214,0 +170771909968,215,0 +170771910016,215,0 +170771910065,215,0 +170771910113,215,0 +170771910161,215,0 +170771910210,215,0 +170771910258,215,0 +170771910308,215,0 +170771910357,214,0 +170771910407,213,0 +170771910455,214,0 +170771910503,214,0 +170771910552,214,0 +170771910600,214,0 +170771910648,214,0 +170771910696,214,0 +170771910746,214,0 +170771910793,215,0 +170771910841,215,0 +170771910889,215,0 +170771910939,215,0 +170771910988,215,0 +170771911038,215,0 +170771911086,215,0 +170771911135,215,0 +170771911185,214,0 +170771911233,214,0 +170771911280,214,0 +170771911328,214,0 +170771911378,214,0 +170771911427,214,0 +170771911477,214,0 +170771911526,215,0 +170771911574,215,0 +170771911622,215,0 +170771911670,215,0 +170771911718,215,0 +170771911767,215,0 +170771911817,215,0 +170771911866,215,0 +170771911914,215,0 +170771911964,214,0 +170771912012,214,0 +170771912060,214,0 +170771912107,214,0 +170771912157,214,0 +170771912205,215,0 +170771912253,215,0 +170771912301,215,0 +170771912350,215,0 +170771912400,215,0 +170771912448,215,0 +170771912497,215,0 +170771912545,215,0 +170771912595,215,0 +170771912644,215,0 +170771912694,215,0 +170771912742,214,0 +170771912791,214,0 +170771912839,214,0 +170771912887,214,0 +170771912936,215,0 +170771912986,215,0 +170771913033,215,0 +170771913081,215,0 +170771913129,215,0 +170771913177,215,0 +170771913225,215,0 +170771913273,215,0 +170771913320,215,0 +170771913368,215,0 +170771913416,215,0 +170771913464,215,0 +170771913512,214,0 +170771913560,214,0 +170771913609,214,0 +170771913657,214,0 +170771913705,214,0 +170771913753,215,0 +170771913801,214,0 +170771913850,215,0 +170771913898,215,0 +170771913946,215,0 +170771913995,215,0 +170771914043,215,0 +170771914091,215,0 +170771914139,215,0 +170771914186,215,0 +170771914234,215,0 +170771914282,215,0 +170771914330,214,0 +170771914378,214,0 +170771914426,214,0 +170771914475,214,0 +170771914523,214,0 +170771914571,214,0 +170771914620,214,0 +170771914668,214,0 +170771914716,215,0 +170771914764,215,0 +170771914814,215,0 +170771914861,215,0 +170771914909,215,0 +170771914957,215,0 +170771915005,215,0 +170771915053,215,0 +170771915101,214,0 +170771915150,214,0 +170771915200,214,0 +170771915248,214,0 +170771915297,214,0 +170771915345,215,0 +170771915393,215,0 +170771915441,215,0 +170771915489,215,0 +170771915538,215,0 +170771915586,215,0 +170771915634,215,0 +170771915684,215,0 +170771915733,215,0 +170771915781,215,0 +170771915830,215,0 +170771915878,214,0 +170771915926,214,0 +170771915976,214,0 +170771916024,215,0 +170771916071,215,0 +170771916119,215,0 +170771916167,215,0 +170771916215,215,0 +170771916263,215,0 +170771916311,215,0 +170771916359,215,0 +170771916407,215,0 +170771916454,215,0 +170771916502,215,0 +170771916551,215,0 +170771916599,215,0 +170771916647,214,0 +170771916695,214,0 +170771916744,214,0 +170771916792,214,0 +170771916840,214,0 +170771916888,215,0 +170771916935,215,0 +170771916983,215,0 +170771917033,215,0 +170771917080,215,0 +170771917128,215,0 +170771917176,215,0 +170771917226,215,0 +170771917273,215,0 +170771917323,215,0 +170771917371,215,0 +170771917418,215,0 +170771917466,214,0 +170771917514,214,0 +170771917562,214,0 +170771917611,214,0 +170771917659,214,0 +170771917707,214,0 +170771917755,214,0 +170771917803,215,0 +170771917851,215,0 +170771917899,216,0 +170771917947,215,0 +170771917996,215,0 +170771918044,216,0 +170771918093,215,0 +170771918141,215,0 +170771918191,215,0 +170771918239,214,0 +170771918288,214,0 +170771918336,214,0 +170771918384,214,0 +170771918434,214,0 +170771918482,214,0 +170771918529,214,0 +170771918578,215,0 +170771918626,215,0 +170771918675,215,0 +170771918723,215,0 +170771918771,215,0 +170771918820,215,0 +170771918870,215,0 +170771918918,215,0 +170771918967,215,0 +170771919015,214,0 +170771919065,214,0 +170771919114,214,0 +170771919162,214,0 +170771919210,214,0 +170771919258,214,0 +170771919306,214,0 +170771919354,214,0 +170771919402,215,0 +170771919450,215,0 +170771919499,215,0 +170771919549,215,0 +170771919598,215,0 +170771919648,215,0 +170771919697,215,0 +170771919747,215,0 +170771919795,214,0 +170771919843,214,0 +170771919891,214,0 +170771919938,214,0 +170771919986,214,0 +170771920034,214,0 +170771920082,214,0 +170771920132,214,0 +170771920180,214,0 +170771920228,215,0 +170771920275,215,0 +170771920325,215,0 +170771920373,215,0 +170771920421,214,0 +170771920468,215,0 +170771920516,215,0 +170771920564,215,0 +170771920612,213,0 +170771920660,213,0 +170771920708,214,0 +170771920755,214,0 +170771920803,214,0 +170771920851,214,0 +170771920899,214,0 +170771920947,214,0 +170771920995,214,0 +170771921043,215,0 +170771921091,215,0 +170771921140,215,0 +170771921189,215,0 +170771921237,215,0 +170771921285,215,0 +170771921333,215,0 +170771921381,214,0 +170771921429,214,0 +170771921476,214,0 +170771921524,214,0 +170771921572,214,0 +170771921620,214,0 +170771921668,214,0 +170771921716,215,0 +170771921764,214,0 +170771921811,215,0 +170771921859,215,0 +170771921907,215,0 +170771921955,215,0 +170771922003,215,0 +170771922052,215,0 +170771922100,215,0 +170771922149,214,0 +170771922197,214,0 +170771922245,214,0 +170771922293,214,0 +170771922341,214,0 +170771922389,214,0 +170771922437,214,0 +170771922486,215,0 +170771922536,215,0 +170771922584,215,0 +170771922633,215,0 +170771922682,215,0 +170771922730,215,0 +170771922778,215,0 +170771922826,215,0 +170771922874,215,0 +170771922923,215,0 +170771922973,214,0 +170771923021,214,0 +170771923068,214,0 +170771923116,214,0 +170771923164,214,0 +170771923213,214,0 +170771923261,214,0 +170771923309,214,0 +170771923357,215,0 +170771923405,215,0 +170771923453,215,0 +170771923501,215,0 +170771923549,215,0 +170771923596,215,0 +170771923644,215,0 +170771923692,215,0 +170771923742,214,0 +170771923790,213,0 +170771923839,214,0 +170771923887,214,0 +170771923935,214,0 +170771923983,214,0 +170771924031,214,0 +170771924080,214,0 +170771924128,214,0 +170771924178,214,0 +170771924227,215,0 +170771924277,215,0 +170771924325,215,0 +170771924372,215,0 +170771924420,215,0 +170771924468,215,0 +170771924518,214,0 +170771924566,214,0 +170771924615,214,0 +170771924663,214,0 +170771924711,214,0 +170771924759,214,0 +170771924807,214,0 +170771924857,214,0 +170771924904,215,0 +170771924952,214,0 +170771925000,214,0 +170771925048,215,0 +170771925096,215,0 +170771925144,215,0 +170771925192,215,0 +170771925241,215,0 +170771925289,216,0 +170771925337,215,0 +170771925385,215,0 +170771925435,216,0 +170771925483,215,0 +170771925531,215,0 +170771925580,215,0 +170771925628,215,0 +170771925676,215,0 +170771925724,215,0 +170771925772,215,0 +170771925820,215,0 +170771925868,215,0 +170771925917,215,0 +170771925965,215,0 +170771926015,214,0 +170771926062,214,0 +170771926112,215,0 +170771926160,215,0 +170771926208,215,0 +170771926256,215,0 +170771926304,215,0 +170771926352,215,0 +170771926400,215,0 +170771926448,215,0 +170771926495,214,0 +170771926543,214,0 +170771926593,214,0 +170771926641,214,0 +170771926690,214,0 +170771926740,214,0 +170771926789,215,0 +170771926837,214,0 +170771926885,215,0 +170771926935,215,0 +170771926983,216,0 +170771927031,215,0 +170771927079,215,0 +170771927127,215,0 +170771927175,215,0 +170771927223,215,0 +170771927271,214,0 +170771927319,214,0 +170771927368,215,0 +170771927416,214,0 +170771927465,215,0 +170771927513,215,0 +170771927561,215,0 +170771927609,215,0 +170771927657,215,0 +170771927705,215,0 +170771927754,215,0 +170771927802,215,0 +170771927850,215,0 +170771927898,215,0 +170771927946,215,0 +170771927996,215,0 +170771928043,214,0 +170771928093,215,0 +170771928141,215,0 +170771928189,215,0 +170771928237,215,0 +170771928285,215,0 +170771928333,215,0 +170771928381,215,0 +170771928429,215,0 +170771928477,215,0 +170771928525,215,0 +170771928573,215,0 +170771928622,216,0 +170771928672,215,0 +170771928720,215,0 +170771928767,215,0 +170771928815,215,0 +170771928865,214,0 +170771928914,214,0 +170771928962,214,0 +170771929010,215,0 +170771929058,215,0 +170771929106,215,0 +170771929156,215,0 +170771929205,215,0 +170771929255,215,0 +170771929303,215,0 +170771929351,215,0 +170771929399,215,0 +170771929447,215,0 +170771929494,215,0 +170771929542,215,0 +170771929592,215,0 +170771929640,214,0 +170771929688,214,0 +170771929737,214,0 +170771929785,214,0 +170771929833,214,0 +170771929881,214,0 +170771929929,214,0 +170771929979,215,0 +170771930028,215,0 +170771930078,215,0 +170771930127,215,0 +170771930175,215,0 +170771930223,215,0 +170771930273,215,0 +170771930322,215,0 +170771930370,215,0 +170771930418,214,0 +170771930466,214,0 +170771930514,214,0 +170771930562,214,0 +170771930610,214,0 +170771930658,214,0 +170771930707,214,0 +170771930755,214,0 +170771930803,215,0 +170771930852,214,0 +170771930900,215,0 +170771930950,215,0 +170771930998,215,0 +170771931047,215,0 +170771931097,215,0 +170771931145,215,0 +170771931194,214,0 +170771931242,214,0 +170771931290,214,0 +170771931340,214,0 +170771931388,214,0 +170771931437,214,0 +170771931485,214,0 +170771931533,214,0 +170771931581,214,0 +170771931629,215,0 +170771931677,215,0 +170771931726,215,0 +170771931776,215,0 +170771931825,215,0 +170771931875,215,0 +170771931923,215,0 +170771931972,214,0 +170771932020,214,0 +170771932069,214,0 +170771932119,214,0 +170771932167,214,0 +170771932215,214,0 +170771932264,214,0 +170771932312,215,0 +170771932360,215,0 +170771932408,215,0 +170771932458,215,0 +170771932507,215,0 +170771932555,215,0 +170771932605,215,0 +170771932654,215,0 +170771932702,215,0 +170771932750,214,0 +170771932798,214,0 +170771932846,214,0 +170771932895,214,0 +170771932943,214,0 +170771932991,214,0 +170771933039,214,0 +170771933088,214,0 +170771933136,214,0 +170771933184,214,0 +170771933232,215,0 +170771933280,215,0 +170771933328,215,0 +170771933376,215,0 +170771933424,215,0 +170771933472,215,0 +170771933521,215,0 +170771933569,214,0 +170771933617,214,0 +170771933665,213,0 +170771933714,214,0 +170771933764,214,0 +170771933812,214,0 +170771933860,214,0 +170771933909,215,0 +170771933959,215,0 +170771934007,215,0 +170771934056,215,0 +170771934106,215,0 +170771934155,215,0 +170771934203,215,0 +170771934251,215,0 +170771934299,215,0 +170771934348,214,0 +170771934396,214,0 +170771934444,214,0 +170771934492,214,0 +170771934540,214,0 +170771934588,214,0 +170771934637,215,0 +170771934687,214,0 +170771934735,215,0 +170771934783,215,0 +170771934832,215,0 +170771934882,215,0 +170771934930,215,0 +170771934978,215,0 +170771935026,215,0 +170771935074,215,0 +170771935121,215,0 +170771935169,214,0 +170771935217,214,0 +170771935267,214,0 +170771935315,214,0 +170771935363,214,0 +170771935411,214,0 +170771935460,215,0 +170771935508,214,0 +170771935556,215,0 +170771935605,215,0 +170771935655,215,0 +170771935705,215,0 +170771935752,215,0 +170771935800,215,0 +170771935848,215,0 +170771935896,215,0 +170771935944,214,0 +170771935992,214,0 +170771936040,214,0 +170771936088,214,0 +170771936136,214,0 +170771936184,214,0 +170771936234,215,0 +170771936282,215,0 +170771936331,215,0 +170771936379,215,0 +170771936427,215,0 +170771936476,215,0 +170771936526,215,0 +170771936574,215,0 +170771936622,215,0 +170771936670,215,0 +170771936718,214,0 +170771936766,214,0 +170771936814,214,0 +170771936863,214,0 +170771936911,215,0 +170771936959,215,0 +170771937007,215,0 +170771937055,215,0 +170771937103,215,0 +170771937150,215,0 +170771937198,215,0 +170771937246,215,0 +170771937294,215,0 +170771937342,215,0 +170771937389,215,0 +170771937437,215,0 +170771937485,214,0 +170771937533,214,0 +170771937581,214,0 +170771937629,214,0 +170771937676,214,0 +170771937724,215,0 +170771937772,214,0 +170771937820,215,0 +170771937869,215,0 +170771937917,215,0 +170771937965,215,0 +170771938013,215,0 +170771938061,215,0 +170771938110,215,0 +170771938158,215,0 +170771938206,215,0 +170771938254,215,0 +170771938302,214,0 +170771938349,214,0 +170771938399,214,0 +170771938448,214,0 +170771938496,214,0 +170771938546,214,0 +170771938594,215,0 +170771938641,215,0 +170771938689,215,0 +170771938739,215,0 +170771938787,215,0 +170771938834,215,0 +170771938884,215,0 +170771938932,215,0 +170771938980,215,0 +170771939027,215,0 +170771939075,214,0 +170771939123,214,0 +170771939172,214,0 +170771939220,214,0 +170771939268,214,0 +170771939318,214,0 +170771939365,214,0 +170771939413,214,0 +170771939463,215,0 +170771939510,215,0 +170771939558,215,0 +170771939608,215,0 +170771939657,215,0 +170771939705,215,0 +170771939754,215,0 +170771939802,215,0 +170771939850,214,0 +170771939898,214,0 +170771939947,214,0 +170771939995,214,0 +170771940043,214,0 +170771940091,214,0 +170771940141,215,0 +170771940189,215,0 +170771940237,215,0 +170771940285,215,0 +170771940332,215,0 +170771940380,215,0 +170771940428,215,0 +170771940476,215,0 +170771940524,215,0 +170771940572,215,0 +170771940619,215,0 +170771940667,214,0 +170771940717,214,0 +170771940765,214,0 +170771940814,214,0 +170771940862,214,0 +170771940911,214,0 +170771940959,215,0 +170771941007,215,0 +170771941055,215,0 +170771941105,215,0 +170771941152,215,0 +170771941200,215,0 +170771941248,215,0 +170771941298,215,0 +170771941345,215,0 +170771941393,215,0 +170771941441,214,0 +170771941489,214,0 +170771941537,214,0 +170771941585,214,0 +170771941633,214,0 +170771941681,214,0 +170771941728,214,0 +170771941776,214,0 +170771941824,214,0 +170771941872,215,0 +170771941920,215,0 +170771941968,215,0 +170771942016,215,0 +170771942064,215,0 +170771942113,215,0 +170771942161,215,0 +170771942209,214,0 +170771942257,214,0 +170771942307,214,0 +170771942354,214,0 +170771942402,214,0 +170771942450,214,0 +170771942498,215,0 +170771942547,214,0 +170771942597,215,0 +170771942645,215,0 +170771942694,215,0 +170771942742,214,0 +170771942790,215,0 +170771942838,215,0 +170771942887,215,0 +170771942935,214,0 +170771942983,214,0 +170771943031,214,0 +170771943080,214,0 +170771943128,214,0 +170771943178,214,0 +170771943225,214,0 +170771943275,214,0 +170771943323,214,0 +170771943372,214,0 +170771943422,215,0 +170771943470,215,0 +170771943519,215,0 +170771943569,215,0 +170771943617,215,0 +170771943666,214,0 +170771943714,214,0 +170771943762,215,0 +170771943810,214,0 +170771943858,214,0 +170771943906,214,0 +170771943954,214,0 +170771944002,214,0 +170771944051,214,0 +170771944099,214,0 +170771944147,214,0 +170771944197,215,0 +170771944245,215,0 +170771944293,215,0 +170771944341,215,0 +170771944388,215,0 +170771944438,215,0 +170771944486,215,0 +170771944535,215,0 +170771944583,214,0 +170771944631,214,0 +170771944681,214,0 +170771944730,214,0 +170771944780,214,0 +170771944828,214,0 +170771944877,215,0 +170771944925,215,0 +170771944973,215,0 +170771945021,215,0 +170771945070,215,0 +170771945120,215,0 +170771945168,215,0 +170771945216,215,0 +170771945265,215,0 +170771945313,215,0 +170771945363,214,0 +170771945412,214,0 +170771945460,214,0 +170771945510,215,0 +170771945558,215,0 +170771945607,215,0 +170771945657,215,0 +170771945706,215,0 +170771945756,215,0 +170771945804,215,0 +170771945853,215,0 +170771945903,215,0 +170771945952,215,0 +170771946000,215,0 +170771946048,215,0 +170771946096,215,0 +170771946144,214,0 +170771946192,214,0 +170771946241,214,0 +170771946291,214,0 +170771946340,214,0 +170771946388,215,0 +170771946436,215,0 +170771946484,215,0 +170771946533,215,0 +170771946581,215,0 +170771946629,215,0 +170771946677,215,0 +170771946727,215,0 +170771946776,215,0 +170771946824,215,0 +170771946874,215,0 +170771946922,214,0 +170771946971,214,0 +170771947019,214,0 +170771947067,214,0 +170771947117,214,0 +170771947165,215,0 +170771947214,215,0 +170771947262,215,0 +170771947311,215,0 +170771947359,215,0 +170771947407,215,0 +170771947455,215,0 +170771947503,215,0 +170771947551,215,0 +170771947599,215,0 +170771947648,215,0 +170771947696,215,0 +170771947744,214,0 +170771947792,214,0 +170771947840,214,0 +170771947890,214,0 +170771947939,214,0 +170771947987,214,0 +170771948036,215,0 +170771948086,215,0 +170771948134,215,0 +170771948182,215,0 +170771948231,215,0 +170771948279,215,0 +170771948327,215,0 +170771948375,215,0 +170771948425,215,0 +170771948473,215,0 +170771948521,214,0 +170771948569,214,0 +170771948617,214,0 +170771948666,214,0 +170771948716,214,0 +170771948765,214,0 +170771948813,215,0 +170771948861,215,0 +170771948910,215,0 +170771948960,215,0 +170771949010,215,0 +170771949058,215,0 +170771949107,215,0 +170771949157,215,0 +170771949205,215,0 +170771949253,215,0 +170771949300,214,0 +170771949350,214,0 +170771949398,214,0 +170771949446,214,0 +170771949495,215,0 +170771949543,214,0 +170771949593,215,0 +170771949642,215,0 +170771949690,215,0 +170771949740,215,0 +170771949788,215,0 +170771949835,215,0 +170771949883,215,0 +170771949931,215,0 +170771949979,215,0 +170771950027,215,0 +170771950075,214,0 +170771950123,214,0 +170771950171,214,0 +170771950220,214,0 +170771950270,214,0 +170771950318,215,0 +170771950366,215,0 +170771950414,215,0 +170771950463,215,0 +170771950511,215,0 +170771950561,215,0 +170771950608,215,0 +170771950656,215,0 +170771950704,215,0 +170771950752,215,0 +170771950800,215,0 +170771950848,215,0 +170771950897,214,0 +170771950945,214,0 +170771950993,214,0 +170771951041,214,0 +170771951089,214,0 +170771951137,214,0 +170771951185,214,0 +170771951235,214,0 +170771951284,215,0 +170771951334,215,0 +170771951382,215,0 +170771951430,215,0 +170771951478,215,0 +170771951526,215,0 +170771951575,215,0 +170771951623,215,0 +170771951671,214,0 +170771951719,214,0 +170771951768,214,0 +170771951818,214,0 +170771951867,215,0 +170771951917,214,0 +170771951966,215,0 +170771952014,215,0 +170771952064,215,0 +170771952112,215,0 +170771952160,215,0 +170771952209,215,0 +170771952257,215,0 +170771952305,215,0 +170771952353,215,0 +170771952403,215,0 +170771952450,214,0 +170771952498,214,0 +170771952546,214,0 +170771952594,214,0 +170771952642,214,0 +170771952690,214,0 +170771952738,215,0 +170771952788,215,0 +170771952836,215,0 +170771952885,215,0 +170771952933,215,0 +170771952981,215,0 +170771953029,215,0 +170771953077,215,0 +170771953125,215,0 +170771953173,215,0 +170771953220,214,0 +170771953268,214,0 +170771953318,214,0 +170771953366,214,0 +170771953413,214,0 +170771953461,214,0 +170771953511,214,0 +170771953559,215,0 +170771953607,215,0 +170771953655,215,0 +170771953702,215,0 +170771953750,215,0 +170771953798,215,0 +170771953846,215,0 +170771953894,215,0 +170771953944,215,0 +170771953992,214,0 +170771954041,214,0 +170771954089,214,0 +170771954137,214,0 +170771954185,214,0 +170771954234,214,0 +170771954282,214,0 +170771954332,215,0 +170771954380,214,0 +170771954427,215,0 +170771954477,215,0 +170771954525,215,0 +170771954574,215,0 +170771954622,215,0 +170771954672,215,0 +170771954720,215,0 +170771954769,215,0 +170771954817,214,0 +170771954865,214,0 +170771954913,214,0 +170771954961,214,0 +170771955010,214,0 +170771955058,214,0 +170771955108,214,0 +170771955155,214,0 +170771955203,215,0 +170771955251,215,0 +170771955299,215,0 +170771955347,215,0 +170771955395,215,0 +170771955442,215,0 +170771955490,215,0 +170771955538,215,0 +170771955586,214,0 +170771955634,214,0 +170771955682,214,0 +170771955731,214,0 +170771955779,214,0 +170771955829,214,0 +170771955878,214,0 +170771955928,214,0 +170771955976,215,0 +170771956024,215,0 +170771956072,215,0 +170771956120,215,0 +170771956168,215,0 +170771956216,215,0 +170771956265,215,0 +170771956315,215,0 +170771956364,214,0 +170771956412,214,0 +170771956460,214,0 +170771956508,215,0 +170771956556,214,0 +170771956603,214,0 +170771956651,215,0 +170771956699,215,0 +170771956747,215,0 +170771956797,215,0 +170771956844,215,0 +170771956892,215,0 +170771956940,215,0 +170771956988,215,0 +170771957036,215,0 +170771957084,215,0 +170771957131,215,0 +170771957179,215,0 +170771957227,215,0 +170771957275,215,0 +170771957323,215,0 +170771957371,215,0 +170771957420,215,0 +170771957468,215,0 +170771957516,215,0 +170771957564,215,0 +170771957614,215,0 +170771957662,215,0 +170771957710,215,0 +170771957757,215,0 +170771957805,215,0 +170771957853,215,0 +170771957901,215,0 +170771957950,214,0 +170771957998,214,0 +170771958048,214,0 +170771958096,214,0 +170771958144,215,0 +170771958191,215,0 +170771958239,215,0 +170771958287,215,0 +170771958335,215,0 +170771958385,215,0 +170771958433,215,0 +170771958481,215,0 +170771958530,215,0 +170771958578,215,0 +170771958628,215,0 +170771958676,215,0 +170771958725,214,0 +170771958773,214,0 +170771958823,214,0 +170771958872,214,0 +170771958920,214,0 +170771958968,214,0 +170771959017,214,0 +170771959067,215,0 +170771959115,215,0 +170771959164,215,0 +170771959212,215,0 +170771959260,215,0 +170771959308,215,0 +170771959356,215,0 +170771959404,215,0 +170771959453,214,0 +170771959501,215,0 +170771959551,213,0 +170771959599,213,0 +170771959646,214,0 +170771959694,214,0 +170771959744,214,0 +170771959793,214,0 +170771959841,214,0 +170771959889,214,0 +170771959937,214,0 +170771959985,214,0 +170771960035,214,0 +170771960084,215,0 +170771960134,215,0 +170771960183,215,0 +170771960231,215,0 +170771960281,214,0 +170771960329,214,0 +170771960377,213,0 +170771960426,214,0 +170771960474,214,0 +170771960522,214,0 +170771960570,214,0 +170771960619,214,0 +170771960669,214,0 +170771960719,214,0 +170771960768,214,0 +170771960817,214,0 +170771960867,215,0 +170771960915,215,0 +170771960963,215,0 +170771961011,215,0 +170771961059,215,0 +170771961108,214,0 +170771961156,214,0 +170771961206,214,0 +170771961254,214,0 +170771961302,214,0 +170771961351,214,0 +170771961399,214,0 +170771961449,214,0 +170771961498,214,0 +170771961546,214,0 +170771961594,215,0 +170771961643,215,0 +170771961693,215,0 +170771961741,215,0 +170771961789,215,0 +170771961837,215,0 +170771961885,215,0 +170771961933,214,0 +170771961980,214,0 +170771962028,214,0 +170771962076,214,0 +170771962124,214,0 +170771962172,214,0 +170771962221,214,0 +170771962269,215,0 +170771962319,215,0 +170771962367,215,0 +170771962415,215,0 +170771962464,215,0 +170771962512,215,0 +170771962562,215,0 +170771962610,215,0 +170771962658,215,0 +170771962707,215,0 +170771962757,214,0 +170771962806,214,0 +170771962856,214,0 +170771962904,214,0 +170771962953,214,0 +170771963001,214,0 +170771963049,214,0 +170771963099,215,0 +170771963146,215,0 +170771963194,215,0 +170771963242,215,0 +170771963290,215,0 +170771963338,215,0 +170771963386,215,0 +170771963434,215,0 +170771963482,215,0 +170771963529,214,0 +170771963577,214,0 +170771963625,214,0 +170771963675,214,0 +170771963722,214,0 +170771963770,214,0 +170771963818,214,0 +170771963866,214,0 +170771963913,214,0 +170771963961,215,0 +170771964011,215,0 +170771964058,215,0 +170771964106,215,0 +170771964154,215,0 +170771964202,215,0 +170771964250,215,0 +170771964299,215,0 +170771964347,214,0 +170771964395,214,0 +170771964445,214,0 +170771964494,214,0 +170771964542,214,0 +170771964590,214,0 +170771964638,214,0 +170771964687,215,0 +170771964735,215,0 +170771964783,215,0 +170771964831,215,0 +170771964881,215,0 +170771964930,215,0 +170771964978,215,0 +170771965026,215,0 +170771965076,215,0 +170771965125,214,0 +170771965173,214,0 +170771965222,214,0 +170771965272,214,0 +170771965321,214,0 +170771965369,214,0 +170771965419,215,0 +170771965468,215,0 +170771965518,215,0 +170771965567,215,0 +170771965615,215,0 +170771965663,215,0 +170771965711,215,0 +170771965759,215,0 +170771965807,215,0 +170771965854,215,0 +170771965902,215,0 +170771965950,214,0 +170771966000,214,0 +170771966048,214,0 +170771966097,214,0 +170771966147,214,0 +170771966194,214,0 +170771966242,215,0 +170771966290,215,0 +170771966338,215,0 +170771966386,215,0 +170771966434,215,0 +170771966482,215,0 +170771966530,215,0 +170771966579,215,0 +170771966629,215,0 +170771966677,215,0 +170771966726,215,0 +170771966776,214,0 +170771966824,214,0 +170771966873,214,0 +170771966921,214,0 +170771966969,214,0 +170771967018,214,0 +170771967066,214,0 +170771967114,215,0 +170771967164,215,0 +170771967212,215,0 +170771967261,215,0 +170771967311,215,0 +170771967359,215,0 +170771967406,215,0 +170771967454,215,0 +170771967504,215,0 +170771967553,214,0 +170771967601,214,0 +170771967651,214,0 +170771967699,214,0 +170771967747,214,0 +170771967794,215,0 +170771967842,215,0 +170771967892,215,0 +170771967940,215,0 +170771967987,215,0 +170771968037,215,0 +170771968085,215,0 +170771968133,215,0 +170771968181,215,0 +170771968229,215,0 +170771968277,215,0 +170771968326,215,0 +170771968374,214,0 +170771968424,214,0 +170771968473,214,0 +170771968521,215,0 +170771968570,215,0 +170771968618,215,0 +170771968666,215,0 +170771968716,215,0 +170771968764,215,0 +170771968812,216,0 +170771968861,215,0 +170771968909,215,0 +170771968959,216,0 +170771969007,215,0 +170771969055,215,0 +170771969104,215,0 +170771969154,214,0 +170771969202,215,0 +170771969250,215,0 +170771969298,215,0 +170771969347,215,0 +170771969395,215,0 +170771969445,215,0 +170771969493,215,0 +170771969542,215,0 +170771969590,215,0 +170771969640,215,0 +170771969687,215,0 +170771969735,215,0 +170771969783,215,0 +170771969831,215,0 +170771969879,215,0 +170771969927,215,0 +170771969975,214,0 +170771970024,214,0 +170771970072,214,0 +170771970120,214,0 +170771970168,214,0 +170771970216,214,0 +170771970264,215,0 +170771970312,214,0 +170771970361,215,0 +170771970409,215,0 +170771970457,215,0 +170771970505,215,0 +170771970553,215,0 +170771970601,215,0 +170771970650,215,0 +170771970698,215,0 +170771970748,214,0 +170771970795,214,0 +170771970843,213,0 +170771970893,214,0 +170771970941,214,0 +170771970990,214,0 +170771971038,214,0 +170771971086,214,0 +170771971136,214,0 +170771971184,214,0 +170771971231,215,0 +170771971279,215,0 +170771971327,215,0 +170771971375,215,0 +170771971423,215,0 +170771971473,215,0 +170771971522,215,0 +170771971570,213,0 +170771971618,213,0 +170771971666,213,0 +170771971714,213,0 +170771971764,214,0 +170771971811,214,0 +170771971861,214,0 +170771971909,214,0 +170771971957,214,0 +170771972006,214,0 +170771972056,214,0 +170771972104,215,0 +170771972152,214,0 +170771972201,215,0 +170771972249,215,0 +170771972299,215,0 +170771972347,214,0 +170771972394,213,0 +170771972442,213,0 +170771972490,213,0 +170771972538,214,0 +170771972588,214,0 +170771972636,214,0 +170771972685,214,0 +170771972733,214,0 +170771972781,214,0 +170771972829,214,0 +170771972877,214,0 +170771972925,215,0 +170771972974,214,0 +170771973022,215,0 +170771973072,215,0 +170771973120,214,0 +170771973168,213,0 +170771973216,213,0 +170771973264,213,0 +170771973311,214,0 +170771973359,214,0 +170771973407,214,0 +170771973455,214,0 +170771973503,214,0 +170771973551,214,0 +170771973601,214,0 +170771973649,215,0 +170771973698,215,0 +170771973746,215,0 +170771973796,215,0 +170771973843,215,0 +170771973891,215,0 +170771973941,215,0 +170771973989,213,0 +170771974038,214,0 +170771974088,214,0 +170771974136,214,0 +170771974184,214,0 +170771974232,214,0 +170771974280,214,0 +170771974329,214,0 +170771974379,215,0 +170771974426,215,0 +170771974474,215,0 +170771974522,215,0 +170771974570,215,0 +170771974618,215,0 +170771974668,215,0 +170771974715,215,0 +170771974763,214,0 +170771974813,214,0 +170771974861,214,0 +170771974909,214,0 +170771974957,214,0 +170771975004,214,0 +170771975052,214,0 +170771975100,214,0 +170771975150,215,0 +170771975198,215,0 +170771975246,215,0 +170771975295,215,0 +170771975345,215,0 +170771975393,215,0 +170771975441,215,0 +170771975490,215,0 +170771975539,215,0 +170771975587,214,0 +170771975635,214,0 +170771975683,214,0 +170771975731,214,0 +170771975779,214,0 +170771975827,214,0 +170771975877,214,0 +170771975925,214,0 +170771975973,215,0 +170771976022,215,0 +170771976072,215,0 +170771976120,215,0 +170771976168,215,0 +170771976217,215,0 +170771976266,215,0 +170771976314,215,0 +170771976364,214,0 +170771976412,214,0 +170771976460,214,0 +170771976508,214,0 +170771976557,214,0 +170771976605,214,0 +170771976653,214,0 +170771976701,214,0 +170771976748,215,0 +170771976798,215,0 +170771976846,215,0 +170771976896,215,0 +170771976943,215,0 +170771976993,215,0 +170771977041,215,0 +170771977090,215,0 +170771977138,215,0 +170771977186,214,0 +170771977234,214,0 +170771977283,214,0 +170771977331,215,0 +170771977379,215,0 +170771977429,215,0 +170771977477,215,0 +170771977525,215,0 +170771977572,215,0 +170771977622,215,0 +170771977671,215,0 +170771977719,215,0 +170771977769,215,0 +170771977817,215,0 +170771977865,215,0 +170771977913,215,0 +170771977962,214,0 +170771978010,215,0 +170771978058,215,0 +170771978106,215,0 +170771978154,215,0 +170771978202,215,0 +170771978250,215,0 +170771978298,215,0 +170771978347,215,0 +170771978395,215,0 +170771978445,215,0 +170771978494,215,0 +170771978542,215,0 +170771978592,215,0 +170771978640,215,0 +170771978688,215,0 +170771978736,215,0 +170771978783,214,0 +170771978831,214,0 +170771978881,214,0 +170771978930,214,0 +170771978978,214,0 +170771979026,214,0 +170771979076,214,0 +170771979125,215,0 +170771979173,215,0 +170771979221,215,0 +170771979269,215,0 +170771979317,215,0 +170771979365,215,0 +170771979413,215,0 +170771979461,215,0 +170771979510,215,0 +170771979558,215,0 +170771979608,214,0 +170771979657,214,0 +170771979705,214,0 +170771979753,214,0 +170771979801,214,0 +170771979850,214,0 +170771979898,215,0 +170771979946,214,0 +170771979996,215,0 +170771980045,215,0 +170771980093,215,0 +170771980143,215,0 +170771980191,215,0 +170771980238,215,0 +170771980288,215,0 +170771980336,215,0 +170771980384,213,0 +170771980433,214,0 +170771980481,213,0 +170771980529,214,0 +170771980577,214,0 +170771980625,214,0 +170771980674,215,0 +170771980722,214,0 +170771980770,214,0 +170771980818,214,0 +170771980868,215,0 +170771980916,215,0 +170771980964,215,0 +170771981012,215,0 +170771981059,215,0 +170771981107,215,0 +170771981157,215,0 +170771981206,214,0 +170771981254,214,0 +170771981304,214,0 +170771981352,214,0 +170771981400,214,0 +170771981447,214,0 +170771981497,214,0 +170771981546,214,0 +170771981596,215,0 +170771981644,215,0 +170771981692,215,0 +170771981740,215,0 +170771981788,215,0 +170771981836,215,0 +170771981885,215,0 +170771981933,215,0 +170771981981,215,0 +170771982029,214,0 +170771982078,214,0 +170771982128,214,0 +170771982177,214,0 +170771982225,214,0 +170771982275,214,0 +170771982323,214,0 +170771982371,215,0 +170771982419,215,0 +170771982468,215,0 +170771982516,214,0 +170771982564,215,0 +170771982612,215,0 +170771982662,215,0 +170771982711,215,0 +170771982759,215,0 +170771982807,214,0 +170771982855,214,0 +170771982904,214,0 +170771982952,214,0 +170771983002,214,0 +170771983050,214,0 +170771983098,214,0 +170771983147,214,0 +170771983197,214,0 +170771983245,214,0 +170771983294,215,0 +170771983344,215,0 +170771983392,215,0 +170771983440,215,0 +170771983489,215,0 +170771983539,214,0 +170771983587,214,0 +170771983635,213,0 +170771983684,214,0 +170771983732,214,0 +170771983780,214,0 +170771983829,214,0 +170771983877,214,0 +170771983925,214,0 +170771983973,214,0 +170771984021,214,0 +170771984069,214,0 +170771984117,214,0 +170771984167,215,0 +170771984214,215,0 +170771984262,215,0 +170771984312,215,0 +170771984360,215,0 +170771984409,213,0 +170771984457,213,0 +170771984505,214,0 +170771984553,214,0 +170771984602,214,0 +170771984650,214,0 +170771984698,214,0 +170771984748,214,0 +170771984796,214,0 +170771984843,215,0 +170771984893,214,0 +170771984942,215,0 +170771984992,215,0 +170771985040,215,0 +170771985088,215,0 +170771985137,215,0 +170771985187,214,0 +170771985237,213,0 +170771985284,214,0 +170771985332,214,0 +170771985382,214,0 +170771985432,214,0 +170771985479,214,0 +170771985527,214,0 +170771985577,214,0 +170771985626,215,0 +170771985674,215,0 +170771985724,215,0 +170771985772,215,0 +170771985821,215,0 +170771985869,215,0 +170771985917,215,0 +170771985965,215,0 +170771986015,214,0 +170771986064,214,0 +170771986114,214,0 +170771986161,214,0 +170771986209,215,0 +170771986259,215,0 +170771986307,215,0 +170771986355,215,0 +170771986403,215,0 +170771986452,215,0 +170771986500,215,0 +170771986548,215,0 +170771986598,215,0 +170771986647,215,0 +170771986695,215,0 +170771986743,215,0 +170771986791,214,0 +170771986839,214,0 +170771986888,214,0 +170771986936,215,0 +170771986984,215,0 +170771987034,215,0 +170771987082,215,0 +170771987130,215,0 +170771987179,215,0 +170771987229,215,0 +170771987278,215,0 +170771987327,215,0 +170771987375,215,0 +170771987425,215,0 +170771987473,215,0 +170771987522,215,0 +170771987572,214,0 +170771987620,214,0 +170771987669,214,0 +170771987719,214,0 +170771987767,215,0 +170771987815,214,0 +170771987864,215,0 +170771987912,215,0 +170771987960,215,0 +170771988010,215,0 +170771988057,215,0 +170771988105,215,0 +170771988153,215,0 +170771988201,215,0 +170771988251,215,0 +170771988299,215,0 +170771988348,215,0 +170771988396,214,0 +170771988444,214,0 +170771988494,214,0 +170771988541,214,0 +170771988589,214,0 +170771988637,214,0 +170771988685,215,0 +170771988733,215,0 +170771988783,215,0 +170771988831,215,0 +170771988879,215,0 +170771988928,215,0 +170771988976,215,0 +170771989024,215,0 +170771989072,215,0 +170771989120,215,0 +170771989168,215,0 +170771989216,214,0 +170771989265,214,0 +170771989315,214,0 +170771989363,214,0 +170771989412,214,0 +170771989460,215,0 +170771989508,215,0 +170771989558,215,0 +170771989606,215,0 +170771989653,215,0 +170771989701,215,0 +170771989749,215,0 +170771989797,215,0 +170771989845,215,0 +170771989894,215,0 +170771989942,215,0 +170771989992,215,0 +170771990040,214,0 +170771990088,214,0 +170771990137,214,0 +170771990185,214,0 +170771990233,214,0 +170771990281,214,0 +170771990329,215,0 +170771990377,215,0 +170771990426,215,0 +170771990474,215,0 +170771990524,215,0 +170771990571,215,0 +170771990621,215,0 +170771990669,215,0 +170771990717,215,0 +170771990766,215,0 +170771990814,214,0 +170771990862,214,0 +170771990910,214,0 +170771990959,214,0 +170771991007,214,0 +170771991055,214,0 +170771991103,214,0 +170771991151,215,0 +170771991200,214,0 +170771991248,214,0 +170771991298,214,0 +170771991346,215,0 +170771991395,215,0 +170771991443,215,0 +170771991493,215,0 +170771991542,215,0 +170771991590,215,0 +170771991640,213,0 +170771991688,213,0 +170771991736,213,0 +170771991785,214,0 +170771991833,214,0 +170771991881,214,0 +170771991930,214,0 +170771991978,214,0 +170771992026,215,0 +170771992076,215,0 +170771992124,215,0 +170771992172,215,0 +170771992220,215,0 +170771992269,215,0 +170771992317,215,0 +170771992365,215,0 +170771992413,214,0 +170771992461,213,0 +170771992510,213,0 +170771992558,213,0 +170771992608,214,0 +170771992657,213,0 +170771992705,214,0 +170771992755,214,0 +170771992803,214,0 +170771992850,214,0 +170771992898,215,0 +170771992948,215,0 +170771992997,215,0 +170771993045,215,0 +170771993095,215,0 +170771993144,215,0 +170771993192,214,0 +170771993242,213,0 +170771993291,213,0 +170771993339,214,0 +170771993387,214,0 +170771993436,214,0 +170771993484,214,0 +170771993532,214,0 +170771993580,214,0 +170771993628,214,0 +170771993676,214,0 +170771993723,214,0 +170771993773,215,0 +170771993821,215,0 +170771993869,215,0 +170771993917,215,0 +170771993964,215,0 +170771994012,214,0 +170771994062,213,0 +170771994110,214,0 +170771994158,214,0 +170771994205,214,0 +170771994253,214,0 +170771994301,214,0 +170771994351,214,0 +170771994399,214,0 +170771994447,215,0 +170771994497,215,0 +170771994546,215,0 +170771994596,215,0 +170771994644,215,0 +170771994691,215,0 +170771994739,215,0 +170771994789,214,0 +170771994838,214,0 +170771994888,214,0 +170771994937,214,0 +170771994985,214,0 +170771995035,214,0 +170771995083,214,0 +170771995131,214,0 +170771995180,214,0 +170771995230,214,0 +170771995279,214,0 +170771995329,215,0 +170771995378,215,0 +170771995426,215,0 +170771995474,215,0 +170771995522,215,0 +170771995570,215,0 +170771995617,214,0 +170771995665,214,0 +170771995715,213,0 +170771995763,214,0 +170771995810,214,0 +170771995858,214,0 +170771995906,214,0 +170771995955,214,0 +170771996003,214,0 +170771996051,214,0 +170771996099,215,0 +170771996149,215,0 +170771996197,214,0 +170771996244,215,0 +170771996292,215,0 +170771996342,215,0 +170771996389,215,0 +170771996437,214,0 +170771996487,214,0 +170771996535,214,0 +170771996582,214,0 +170771996632,214,0 +170771996680,214,0 +170771996729,214,0 +170771996779,214,0 +170771996827,214,0 +170771996875,215,0 +170771996923,214,0 +170771996971,215,0 +170771997018,215,0 +170771997068,215,0 +170771997116,214,0 +170771997164,215,0 +170771997211,215,0 +170771997261,214,0 +170771997309,214,0 +170771997358,214,0 +170771997408,214,0 +170771997457,214,0 +170771997505,214,0 +170771997553,214,0 +170771997603,215,0 +170771997652,215,0 +170771997700,215,0 +170771997748,215,0 +170771997797,215,0 +170771997845,215,0 +170771997893,215,0 +170771997941,215,0 +170771997989,215,0 +170771998038,214,0 +170771998088,214,0 +170771998137,214,0 +170771998185,214,0 +170771998235,214,0 +170771998284,214,0 +170771998332,215,0 +170771998380,215,0 +170771998429,215,0 +170771998477,215,0 +170771998525,215,0 +170771998573,215,0 +170771998621,215,0 +170771998669,215,0 +170771998717,215,0 +170771998765,215,0 +170771998815,214,0 +170771998864,214,0 +170771998912,214,0 +170771998962,215,0 +170771999010,215,0 +170771999059,214,0 +170771999109,215,0 +170771999156,215,0 +170771999204,215,0 +170771999252,215,0 +170771999300,215,0 +170771999350,215,0 +170771999398,215,0 +170771999446,215,0 +170771999494,215,0 +170771999542,215,0 +170771999591,215,0 +170771999639,215,0 +170771999687,215,0 +170771999735,214,0 +170771999784,214,0 +170771999832,215,0 +170771999882,214,0 +170771999931,215,0 +170771999979,215,0 +170772000029,215,0 +170772000078,215,0 +170772000128,215,0 +170772000177,215,0 +170772000227,215,0 +170772000275,215,0 +170772000323,215,0 +170772000370,215,0 +170772000420,215,0 +170772000468,215,0 +170772000516,215,0 +170772000564,215,0 +170772000613,214,0 +170772000661,214,0 +170772000709,214,0 +170772000758,214,0 +170772000806,214,0 +170772000856,214,0 +170772000904,214,0 +170772000952,214,0 +170772001001,214,0 +170772001051,214,0 +170772001099,214,0 +170772001146,215,0 +170772001194,214,0 +170772001242,215,0 +170772001290,215,0 +170772001338,215,0 +170772001386,215,0 +170772001434,215,0 +170772001482,215,0 +170772001529,214,0 +170772001577,214,0 +170772001625,214,0 +170772001673,214,0 +170772001722,214,0 +170772001772,214,0 +170772001820,214,0 +170772001867,215,0 +170772001915,215,0 +170772001963,215,0 +170772002011,215,0 +170772002059,215,0 +170772002107,215,0 +170772002155,215,0 +170772002204,215,0 +170772002252,215,0 +170772002300,215,0 +170772002348,215,0 +170772002396,215,0 +170772002444,213,0 +170772002491,214,0 +170772002541,214,0 +170772002589,214,0 +170772002638,214,0 +170772002686,214,0 +170772002734,214,0 +170772002784,214,0 +170772002831,215,0 +170772002879,215,0 +170772002929,215,0 +170772002978,215,0 +170772003026,215,0 +170772003074,215,0 +170772003122,215,0 +170772003170,215,0 +170772003219,215,0 +170772003267,215,0 +170772003315,214,0 +170772003363,213,0 +170772003411,213,0 +170772003458,213,0 +170772003508,214,0 +170772003556,214,0 +170772003605,214,0 +170772003653,214,0 +170772003701,214,0 +170772003749,214,0 +170772003797,214,0 +170772003845,215,0 +170772003892,215,0 +170772003940,215,0 +170772003988,215,0 +170772004036,215,0 +170772004084,215,0 +170772004132,215,0 +170772004180,215,0 +170772004228,214,0 +170772004275,213,0 +170772004323,213,0 +170772004371,214,0 +170772004421,214,0 +170772004469,214,0 +170772004517,214,0 +170772004564,214,0 +170772004612,214,0 +170772004660,214,0 +170772004708,214,0 +170772004758,214,0 +170772004806,214,0 +170772004854,214,0 +170772004903,215,0 +170772004951,215,0 +170772005001,215,0 +170772005048,215,0 +170772005096,214,0 +170772005146,214,0 +170772005195,214,0 +170772005243,213,0 +170772005293,214,0 +170772005341,214,0 +170772005389,214,0 +170772005437,214,0 +170772005485,214,0 +170772005533,214,0 +170772005581,214,0 +170772005629,214,0 +170772005677,214,0 +170772005724,215,0 +170772005774,215,0 +170772005822,215,0 +170772005870,215,0 +170772005919,215,0 +170772005967,215,0 +170772006017,214,0 +170772006066,214,0 +170772006114,214,0 +170772006162,214,0 +170772006210,214,0 +170772006258,214,0 +170772006306,214,0 +170772006355,214,0 +170772006403,214,0 +170772006451,215,0 +170772006499,215,0 +170772006548,214,0 +170772006598,215,0 +170772006646,215,0 +170772006694,215,0 +170772006741,215,0 +170772006789,215,0 +170772006837,215,0 +170772006885,214,0 +170772006933,214,0 +170772006981,214,0 +170772007030,214,0 +170772007078,214,0 +170772007126,214,0 +170772007174,214,0 +170772007222,214,0 +170772007269,214,0 +170772007317,215,0 +170772007365,214,0 +170772007415,215,0 +170772007462,215,0 +170772007510,215,0 +170772007560,215,0 +170772007607,215,0 +170772007655,215,0 +170772007703,215,0 +170772007751,215,0 +170772007799,214,0 +170772007847,214,0 +170772007895,214,0 +170772007943,214,0 +170772007993,214,0 +170772008040,214,0 +170772008090,214,0 +170772008139,214,0 +170772008187,214,0 +170772008235,214,0 +170772008283,215,0 +170772008331,215,0 +170772008379,215,0 +170772008427,215,0 +170772008475,215,0 +170772008523,215,0 +170772008571,215,0 +170772008619,215,0 +170772008668,215,0 +170772008716,214,0 +170772008766,213,0 +170772008814,213,0 +170772008862,214,0 +170772008910,214,0 +170772008958,214,0 +170772009006,214,0 +170772009054,214,0 +170772009102,214,0 +170772009150,214,0 +170772009199,214,0 +170772009249,214,0 +170772009298,215,0 +170772009348,214,0 +170772009397,214,0 +170772009446,215,0 +170772009494,214,0 +170772009542,215,0 +170772009590,214,0 +170772009638,213,0 +170772009688,213,0 +170772009735,213,0 +170772009783,213,0 +170772009831,213,0 +170772009881,213,0 +170772009929,214,0 +170772009977,214,0 +170772010025,214,0 +170772010073,214,0 +170772010120,214,0 +170772010168,214,0 +170772010216,214,0 +170772010266,215,0 +170772010314,214,0 +170772010361,215,0 +170772010409,215,0 +170772010457,215,0 +170772010507,213,0 +170772010556,213,0 +170772010604,213,0 +170772010652,213,0 +170772010702,213,0 +170772010751,213,0 +170772010801,213,0 +170772010849,214,0 +170772010897,214,0 +170772010946,214,0 +170772010994,214,0 +170772011044,214,0 +170772011092,214,0 +170772011140,214,0 +170772011187,215,0 +170772011237,214,0 +170772011285,214,0 +170772011334,214,0 +170772011382,215,0 +170772011430,213,0 +170772011478,213,0 +170772011526,213,0 +170772011575,213,0 +170772011623,213,0 +170772011673,213,0 +170772011721,213,0 +170772011768,214,0 +170772011816,214,0 +170772011866,214,0 +170772011914,214,0 +170772011962,214,0 +170772012011,214,0 +170772012061,214,0 +170772012109,214,0 +170772012157,215,0 +170772012205,215,0 +170772012254,215,0 +170772012302,214,0 +170772012350,213,0 +170772012398,213,0 +170772012446,213,0 +170772012494,213,0 +170772012541,213,0 +170772012589,214,0 +170772012639,214,0 +170772012688,214,0 +170772012736,214,0 +170772012786,214,0 +170772012834,214,0 +170772012882,214,0 +170772012931,214,0 +170772012979,214,0 +170772013027,214,0 +170772013075,214,0 +170772013124,214,0 +170772013172,214,0 +170772013220,213,0 +170772013268,213,0 +170772013316,213,0 +170772013364,213,0 +170772013411,213,0 +170772013459,213,0 +170772013507,214,0 +170772013555,214,0 +170772013605,214,0 +170772013654,214,0 +170772013702,214,0 +170772013750,214,0 +170772013798,214,0 +170772013846,214,0 +170772013894,215,0 +170772013943,214,0 +170772013991,215,0 +170772014039,215,0 +170772014089,214,0 +170772014137,213,0 +170772014184,213,0 +170772014234,213,0 +170772014282,214,0 +170772014329,214,0 +170772014377,214,0 +170772014425,214,0 +170772014473,214,0 +170772014521,214,0 +170772014569,214,0 +170772014616,214,0 +170772014664,214,0 +170772014712,215,0 +170772014760,215,0 +170772014808,215,0 +170772014856,215,0 +170772014904,215,0 +170772014951,214,0 +170772014999,214,0 +170772015047,214,0 +170772015095,214,0 +170772015143,214,0 +170772015191,214,0 +170772015239,214,0 +170772015287,214,0 +170772015335,214,0 +170772015384,214,0 +170772015432,215,0 +170772015480,214,0 +170772015528,214,0 +170772015577,214,0 +170772015625,215,0 +170772015673,215,0 +170772015721,215,0 +170772015769,215,0 +170772015817,215,0 +170772015865,214,0 +170772015913,214,0 +170772015961,214,0 +170772016009,214,0 +170772016057,214,0 +170772016105,214,0 +170772016153,214,0 +170772016201,214,0 +170772016250,214,0 +170772016298,214,0 +170772016348,214,0 +170772016396,214,0 +170772016443,215,0 +170772016491,215,0 +170772016541,215,0 +170772016590,215,0 +170772016638,215,0 +170772016686,215,0 +170772016734,215,0 +170772016784,214,0 +170772016833,214,0 +170772016883,214,0 +170772016932,214,0 +170772016980,214,0 +170772017030,214,0 +170772017078,214,0 +170772017125,214,0 +170772017175,214,0 +170772017223,214,0 +170772017271,214,0 +170772017319,215,0 +170772017367,215,0 +170772017414,215,0 +170772017464,215,0 +170772017512,215,0 +170772017561,215,0 +170772017609,215,0 +170772017659,214,0 +170772017707,214,0 +170772017756,214,0 +170772017804,214,0 +170772017852,214,0 +170772017900,214,0 +170772017949,214,0 +170772017997,214,0 +170772018045,215,0 +170772018093,215,0 +170772018143,215,0 +170772018192,215,0 +170772018242,215,0 +170772018289,215,0 +170772018339,215,0 +170772018387,215,0 +170772018436,215,0 +170772018484,215,0 +170772018532,215,0 +170772018580,214,0 +170772018628,214,0 +170772018676,214,0 +170772018725,214,0 +170772018773,215,0 +170772018821,214,0 +170772018871,215,0 +170772018919,215,0 +170772018967,215,0 +170772019014,215,0 +170772019062,215,0 +170772019110,215,0 +170772019158,215,0 +170772019206,215,0 +170772019254,215,0 +170772019302,215,0 +170772019352,215,0 +170772019400,215,0 +170772019447,215,0 +170772019497,214,0 +170772019546,214,0 +170772019596,214,0 +170772019644,214,0 +170772019692,214,0 +170772019741,214,0 +170772019789,214,0 +170772019837,214,0 +170772019885,214,0 +170772019933,214,0 +170772019981,214,0 +170772020028,215,0 +170772020076,215,0 +170772020124,215,0 +170772020174,215,0 +170772020221,215,0 +170772020269,215,0 +170772020317,215,0 +170772020365,214,0 +170772020414,213,0 +170772020462,213,0 +170772020511,213,0 +170772020559,213,0 +170772020607,214,0 +170772020655,214,0 +170772020703,214,0 +170772020752,214,0 +170772020800,214,0 +170772020848,214,0 +170772020896,214,0 +170772020943,214,0 +170772020993,214,0 +170772021041,215,0 +170772021090,214,0 +170772021138,214,0 +170772021186,214,0 +170772021235,214,0 +170772021283,213,0 +170772021331,213,0 +170772021378,213,0 +170772021428,213,0 +170772021476,213,0 +170772021523,213,0 +170772021571,214,0 +170772021621,214,0 +170772021668,214,0 +170772021716,214,0 +170772021764,214,0 +170772021812,214,0 +170772021860,214,0 +170772021908,214,0 +170772021956,214,0 +170772022004,215,0 +170772022051,215,0 +170772022099,215,0 +170772022147,214,0 +170772022195,213,0 +170772022243,213,0 +170772022291,213,0 +170772022339,213,0 +170772022387,213,0 +170772022435,213,0 +170772022484,214,0 +170772022532,214,0 +170772022580,213,0 +170772022628,214,0 +170772022677,214,0 +170772022725,214,0 +170772022773,214,0 +170772022821,214,0 +170772022869,214,0 +170772022919,214,0 +170772022966,214,0 +170772023014,214,0 +170772023062,214,0 +170772023110,213,0 +170772023158,213,0 +170772023206,213,0 +170772023255,213,0 +170772023303,213,0 +170772023351,213,0 +170772023399,213,0 +170772023447,213,0 +170772023495,214,0 +170772023543,214,0 +170772023591,214,0 +170772023639,214,0 +170772023687,214,0 +170772023734,214,0 +170772023782,214,0 +170772023830,215,0 +170772023878,214,0 +170772023928,214,0 +170772023976,213,0 +170772024025,213,0 +170772024073,213,0 +170772024121,213,0 +170772024169,213,0 +170772024217,213,0 +170772024265,214,0 +170772024315,213,0 +170772024364,214,0 +170772024412,214,0 +170772024460,214,0 +170772024508,214,0 +170772024556,214,0 +170772024604,214,0 +170772024652,214,0 +170772024700,214,0 +170772024748,215,0 +170772024795,214,0 +170772024843,214,0 +170772024893,213,0 +170772024941,213,0 +170772024989,213,0 +170772025038,213,0 +170772025088,213,0 +170772025137,213,0 +170772025185,213,0 +170772025233,213,0 +170772025283,214,0 +170772025331,213,0 +170772025379,214,0 +170772025426,214,0 +170772025474,214,0 +170772025524,214,0 +170772025572,214,0 +170772025621,214,0 +170772025669,214,0 +170772025719,214,0 +170772025768,213,0 +170772025818,213,0 +170772025865,213,0 +170772025913,213,0 +170772025961,213,0 +170772026010,213,0 +170772026058,213,0 +170772026106,213,0 +170772026154,214,0 +170772026202,214,0 +170772026250,214,0 +170772026299,214,0 +170772026349,214,0 +170772026397,214,0 +170772026446,214,0 +170772026494,215,0 +170772026544,214,0 +170772026593,214,0 +170772026641,214,0 +170772026691,213,0 +170772026740,213,0 +170772026788,213,0 +170772026836,213,0 +170772026884,213,0 +170772026932,214,0 +170772026981,213,0 +170772027031,214,0 +170772027080,214,0 +170772027128,214,0 +170772027176,214,0 +170772027224,214,0 +170772027272,214,0 +170772027320,215,0 +170772027368,215,0 +170772027418,215,0 +170772027465,214,0 +170772027513,215,0 +170772027561,214,0 +170772027611,213,0 +170772027659,213,0 +170772027708,213,0 +170772027756,213,0 +170772027805,214,0 +170772027853,214,0 +170772027901,214,0 +170772027949,214,0 +170772027999,214,0 +170772028048,214,0 +170772028098,214,0 +170772028147,214,0 +170772028195,214,0 +170772028243,214,0 +170772028293,215,0 +170772028341,215,0 +170772028389,215,0 +170772028438,214,0 +170772028486,213,0 +170772028536,213,0 +170772028584,213,0 +170772028633,213,0 +170772028681,213,0 +170772028729,213,0 +170772028777,213,0 +170772028825,214,0 +170772028875,214,0 +170772028924,214,0 +170772028974,214,0 +170772029023,214,0 +170772029071,214,0 +170772029119,214,0 +170772029169,215,0 +170772029218,215,0 +170772029266,215,0 +170772029316,214,0 +170772029363,213,0 +170772029411,213,0 +170772029461,213,0 +170772029509,213,0 +170772029558,214,0 +170772029606,213,0 +170772029656,214,0 +170772029703,214,0 +170772029753,214,0 +170772029801,214,0 +170772029849,214,0 +170772029898,214,0 +170772029946,214,0 +170772029994,214,0 +170772030043,215,0 +170772030093,215,0 +170772030142,215,0 +170772030190,215,0 +170772030238,214,0 +170772030286,213,0 +170772030334,213,0 +170772030381,213,0 +170772030429,213,0 +170772030477,213,0 +170772030525,213,0 +170772030573,214,0 +170772030620,214,0 +170772030668,214,0 +170772030718,214,0 +170772030765,214,0 +170772030813,214,0 +170772030861,214,0 +170772030909,214,0 +170772030957,214,0 +170772031005,214,0 +170772031053,214,0 +170772031100,214,0 +170772031148,213,0 +170772031196,213,0 +170772031244,213,0 +170772031294,213,0 +170772031341,213,0 +170772031389,214,0 +170772031437,214,0 +170772031485,214,0 +170772031533,214,0 +170772031580,214,0 +170772031628,214,0 +170772031676,214,0 +170772031724,214,0 +170772031772,214,0 +170772031820,215,0 +170772031867,215,0 +170772031915,215,0 +170772031963,215,0 +170772032011,214,0 +170772032059,213,0 +170772032107,213,0 +170772032156,214,0 +170772032204,214,0 +170772032252,214,0 +170772032301,214,0 +170772032349,214,0 +170772032397,214,0 +170772032447,214,0 +170772032496,214,0 +170772032544,214,0 +170772032592,214,0 +170772032640,214,0 +170772032688,215,0 +170772032736,215,0 +170772032785,215,0 +170772032835,215,0 +170772032882,214,0 +170772032932,214,0 +170772032980,214,0 +170772033028,214,0 +170772033076,214,0 +170772033124,214,0 +170772033173,214,0 +170772033221,214,0 +170772033271,214,0 +170772033318,215,0 +170772033366,215,0 +170772033414,214,0 +170772033462,215,0 +170772033510,215,0 +170772033558,215,0 +170772033606,215,0 +170772033654,215,0 +170772033701,215,0 +170772033751,215,0 +170772033799,215,0 +170772033847,214,0 +170772033894,214,0 +170772033942,214,0 +170772033990,214,0 +170772034039,214,0 +170772034087,214,0 +170772034137,214,0 +170772034185,214,0 +170772034234,214,0 +170772034284,214,0 +170772034332,214,0 +170772034380,215,0 +170772034427,215,0 +170772034475,215,0 +170772034523,215,0 +170772034572,215,0 +170772034620,215,0 +170772034670,215,0 +170772034718,214,0 +170772034765,214,0 +170772034813,213,0 +170772034861,214,0 +170772034911,214,0 +170772034958,214,0 +170772035008,214,0 +170772035056,214,0 +170772035103,214,0 +170772035151,214,0 +170772035199,215,0 +170772035247,214,0 +170772035297,214,0 +170772035345,215,0 +170772035392,215,0 +170772035440,215,0 +170772035488,215,0 +170772035538,215,0 +170772035586,214,0 +170772035635,214,0 +170772035685,213,0 +170772035733,214,0 +170772035781,214,0 +170772035829,214,0 +170772035876,214,0 +170772035924,214,0 +170772035972,214,0 +170772036020,214,0 +170772036068,214,0 +170772036116,215,0 +170772036164,215,0 +170772036212,215,0 +170772036259,215,0 +170772036307,215,0 +170772036357,215,0 +170772036406,215,0 +170772036454,215,0 +170772036502,215,0 +170772036551,213,0 +170772036599,213,0 +170772036647,214,0 +170772036695,214,0 +170772036743,214,0 +170772036791,214,0 +170772036839,214,0 +170772036886,214,0 +170772036934,214,0 +170772036982,214,0 +170772037030,215,0 +170772037078,215,0 +170772037126,215,0 +170772037174,215,0 +170772037222,215,0 +170772037269,214,0 +170772037319,215,0 +170772037368,215,0 +170772037418,214,0 +170772037466,213,0 +170772037514,213,0 +170772037563,214,0 +170772037611,214,0 +170772037659,214,0 +170772037709,214,0 +170772037757,213,0 +170772037806,213,0 +170772037856,214,0 +170772037905,214,0 +170772037953,214,0 +170772038001,214,0 +170772038049,214,0 +170772038097,214,0 +170772038145,214,0 +170772038194,215,0 +170772038242,215,0 +170772038290,214,0 +170772038340,213,0 +170772038388,213,0 +170772038435,213,0 +170772038483,213,0 +170772038531,213,0 +170772038579,214,0 +170772038629,214,0 +170772038678,214,0 +170772038728,214,0 +170772038777,214,0 +170772038825,214,0 +170772038874,214,0 +170772038922,214,0 +170772038970,215,0 +170772039018,215,0 +170772039066,215,0 +170772039114,215,0 +170772039161,215,0 +170772039209,214,0 +170772039257,213,0 +170772039307,213,0 +170772039355,214,0 +170772039402,214,0 +170772039452,214,0 +170772039501,214,0 +170772039551,214,0 +170772039600,214,0 +170772039648,214,0 +170772039698,214,0 +170772039747,214,0 +170772039795,215,0 +170772039843,215,0 +170772039893,215,0 +170772039940,215,0 +170772039988,215,0 +170772040038,215,0 +170772040086,215,0 +170772040135,213,0 +170772040183,213,0 +170772040231,213,0 +170772040279,213,0 +170772040327,214,0 +170772040376,214,0 +170772040424,214,0 +170772040472,214,0 +170772040522,214,0 +170772040570,214,0 +170772040618,214,0 +170772040665,214,0 +170772040713,215,0 +170772040761,214,0 +170772040809,215,0 +170772040857,215,0 +170772040905,215,0 +170772040953,215,0 +170772041003,214,0 +170772041050,213,0 +170772041098,213,0 +170772041146,213,0 +170772041194,213,0 +170772041243,213,0 +170772041291,213,0 +170772041339,213,0 +170772041387,214,0 +170772041435,214,0 +170772041483,214,0 +170772041531,214,0 +170772041578,214,0 +170772041626,214,0 +170772041674,215,0 +170772041722,214,0 +170772041770,215,0 +170772041818,215,0 +170772041865,215,0 +170772041913,214,0 +170772041961,213,0 +170772042009,213,0 +170772042057,213,0 +170772042105,213,0 +170772042154,214,0 +170772042204,214,0 +170772042252,214,0 +170772042299,214,0 +170772042349,214,0 +170772042397,214,0 +170772042445,214,0 +170772042494,214,0 +170772042542,214,0 +170772042590,214,0 +170772042638,214,0 +170772042686,215,0 +170772042733,215,0 +170772042781,214,0 +170772042829,213,0 +170772042879,213,0 +170772042927,213,0 +170772042975,213,0 +170772043023,213,0 +170772043072,213,0 +170772043120,214,0 +170772043170,214,0 +170772043219,214,0 +170772043269,214,0 +170772043316,214,0 +170772043364,214,0 +170772043412,214,0 +170772043460,215,0 +170772043508,215,0 +170772043555,215,0 +170772043603,215,0 +170772043651,215,0 +170772043699,214,0 +170772043747,213,0 +170772043795,213,0 +170772043844,213,0 +170772043892,214,0 +170772043940,214,0 +170772043988,213,0 +170772044037,214,0 +170772044085,214,0 +170772044134,214,0 +170772044182,214,0 +170772044230,214,0 +170772044280,215,0 +170772044328,215,0 +170772044376,214,0 +170772044425,215,0 +170772044473,215,0 +170772044522,215,0 +170772044570,215,0 +170772044618,213,0 +170772044668,213,0 +170772044717,213,0 +170772044767,214,0 +170772044816,214,0 +170772044866,214,0 +170772044913,214,0 +170772044961,214,0 +170772045009,214,0 +170772045057,214,0 +170772045105,214,0 +170772045153,214,0 +170772045201,215,0 +170772045249,214,0 +170772045298,215,0 +170772045346,216,0 +170772045394,215,0 +170772045441,215,0 +170772045489,214,0 +170772045537,213,0 +170772045585,213,0 +170772045633,213,0 +170772045683,214,0 +170772045730,214,0 +170772045778,214,0 +170772045826,214,0 +170772045874,214,0 +170772045922,214,0 +170772045970,214,0 +170772046019,215,0 +170772046068,215,0 +170772046116,215,0 +170772046164,215,0 +170772046212,215,0 +170772046260,215,0 +170772046308,215,0 +170772046356,215,0 +170772046406,214,0 +170772046454,214,0 +170772046502,214,0 +170772046549,214,0 +170772046599,214,0 +170772046647,214,0 +170772046695,214,0 +170772046744,214,0 +170772046792,214,0 +170772046840,215,0 +170772046888,215,0 +170772046938,215,0 +170772046986,215,0 +170772047034,215,0 +170772047082,215,0 +170772047130,215,0 +170772047178,215,0 +170772047225,215,0 +170772047273,215,0 +170772047321,214,0 +170772047369,213,0 +170772047417,213,0 +170772047467,214,0 +170772047516,214,0 +170772047566,214,0 +170772047614,214,0 +170772047662,214,0 +170772047710,214,0 +170772047757,214,0 +170772047807,214,0 +170772047856,215,0 +170772047904,215,0 +170772047952,215,0 +170772048002,215,0 +170772048051,215,0 +170772048101,215,0 +170772048149,215,0 +170772048198,214,0 +170772048246,213,0 +170772048294,214,0 +170772048342,214,0 +170772048390,214,0 +170772048438,214,0 +170772048486,214,0 +170772048534,214,0 +170772048583,214,0 +170772048631,214,0 +170772048681,214,0 +170772048729,214,0 +170772048778,215,0 +170772048828,215,0 +170772048876,215,0 +170772048925,215,0 +170772048973,215,0 +170772049023,215,0 +170772049071,213,0 +170772049119,213,0 +170772049166,213,0 +170772049214,213,0 +170772049262,214,0 +170772049312,214,0 +170772049360,214,0 +170772049409,214,0 +170772049459,214,0 +170772049507,214,0 +170772049555,214,0 +170772049603,214,0 +170772049652,214,0 +170772049700,214,0 +170772049748,214,0 +170772049798,214,0 +170772049846,214,0 +170772049893,214,0 +170772049943,214,0 +170772049991,213,0 +170772050040,213,0 +170772050088,213,0 +170772050136,213,0 +170772050184,214,0 +170772050234,214,0 +170772050282,214,0 +170772050330,214,0 +170772050378,214,0 +170772050427,214,0 +170772050475,214,0 +170772050525,214,0 +170772050574,215,0 +170772050622,214,0 +170772050670,215,0 +170772050718,215,0 +170772050766,215,0 +170772050814,215,0 +170772050863,214,0 +170772050913,214,0 +170772050962,213,0 +170772051012,214,0 +170772051060,214,0 +170772051108,214,0 +170772051156,214,0 +170772051205,214,0 +170772051253,214,0 +170772051303,214,0 +170772051351,214,0 +170772051399,214,0 +170772051446,215,0 +170772051494,215,0 +170772051542,215,0 +170772051592,215,0 +170772051640,215,0 +170772051688,215,0 +170772051736,215,0 +170772051784,213,0 +170772051832,213,0 +170772051879,214,0 +170772051927,214,0 +170772051975,214,0 +170772052023,214,0 +170772052071,214,0 +170772052121,214,0 +170772052169,214,0 +170772052217,214,0 +170772052264,214,0 +170772052314,214,0 +170772052364,214,0 +170772052413,215,0 +170772052463,214,0 +170772052512,215,0 +170772052562,215,0 +170772052610,215,0 +170772052659,214,0 +170772052707,214,0 +170772052755,213,0 +170772052803,214,0 +170772052851,214,0 +170772052900,214,0 +170772052948,214,0 +170772052996,214,0 +170772053044,214,0 +170772053094,214,0 +170772053142,215,0 +170772053191,215,0 +170772053239,215,0 +170772053287,215,0 +170772053335,215,0 +170772053384,215,0 +170772053432,215,0 +170772053480,215,0 +170772053530,215,0 +170772053579,214,0 +170772053627,213,0 +170772053677,214,0 +170772053725,214,0 +170772053772,214,0 +170772053822,214,0 +170772053870,214,0 +170772053918,214,0 +170772053966,214,0 +170772054015,214,0 +170772054063,215,0 +170772054113,215,0 +170772054162,215,0 +170772054212,215,0 +170772054261,215,0 +170772054309,215,0 +170772054359,215,0 +170772054407,215,0 +170772054454,213,0 +170772054504,213,0 +170772054554,213,0 +170772054601,214,0 +170772054651,214,0 +170772054699,214,0 +170772054747,214,0 +170772054795,214,0 +170772054842,214,0 +170772054892,214,0 +170772054940,214,0 +170772054988,214,0 +170772055037,215,0 +170772055087,215,0 +170772055136,215,0 +170772055184,215,0 +170772055232,215,0 +170772055280,215,0 +170772055330,215,0 +170772055379,214,0 +170772055427,213,0 +170772055475,213,0 +170772055523,213,0 +170772055571,213,0 +170772055619,214,0 +170772055666,214,0 +170772055714,214,0 +170772055762,214,0 +170772055810,214,0 +170772055858,214,0 +170772055906,214,0 +170772055954,214,0 +170772056002,214,0 +170772056049,215,0 +170772056097,215,0 +170772056145,215,0 +170772056193,215,0 +170772056241,214,0 +170772056290,213,0 +170772056338,213,0 +170772056386,213,0 +170772056435,213,0 +170772056483,213,0 +170772056533,213,0 +170772056581,213,0 +170772056629,213,0 +170772056677,214,0 +170772056726,214,0 +170772056776,214,0 +170772056825,214,0 +170772056873,214,0 +170772056921,214,0 +170772056970,214,0 +170772057018,214,0 +170772057068,215,0 +170772057117,215,0 +170772057165,214,0 +170772057213,213,0 +170772057261,213,0 +170772057309,214,0 +170772057357,214,0 +170772057405,214,0 +170772057453,214,0 +170772057502,214,0 +170772057550,214,0 +170772057600,214,0 +170772057648,214,0 +170772057695,214,0 +170772057743,214,0 +170772057791,214,0 +170772057839,215,0 +170772057889,215,0 +170772057937,215,0 +170772057984,215,0 +170772058034,214,0 +170772058082,214,0 +170772058129,213,0 +170772058177,213,0 +170772058225,214,0 +170772058273,213,0 +170772058321,214,0 +170772058369,214,0 +170772058417,214,0 +170772058465,214,0 +170772058514,214,0 +170772058562,214,0 +170772058612,214,0 +170772058661,214,0 +170772058709,215,0 +170772058757,215,0 +170772058805,215,0 +170772058854,215,0 +170772058902,215,0 +170772058952,213,0 +170772059001,213,0 +170772059051,214,0 +170772059099,214,0 +170772059147,214,0 +170772059194,214,0 +170772059242,214,0 +170772059290,214,0 +170772059338,214,0 +170772059388,214,0 +170772059435,215,0 +170772059485,214,0 +170772059533,215,0 +170772059580,215,0 +170772059628,215,0 +170772059678,215,0 +170772059727,215,0 +170772059775,215,0 +170772059823,215,0 +170772059871,214,0 +170772059919,214,0 +170772059967,214,0 +170772060015,214,0 +170772060063,214,0 +170772060112,214,0 +170772060162,214,0 +170772060212,214,0 +170772060261,214,0 +170772060309,215,0 +170772060357,214,0 +170772060406,215,0 +170772060454,215,0 +170772060504,215,0 +170772060552,215,0 +170772060600,215,0 +170772060648,215,0 +170772060695,215,0 +170772060745,214,0 +170772060793,214,0 +170772060841,214,0 +170772060889,214,0 +170772060938,214,0 +170772060988,214,0 +170772061037,214,0 +170772061085,214,0 +170772061135,215,0 +170772061184,214,0 +170772061232,215,0 +170772061280,215,0 +170772061328,215,0 +170772061378,215,0 +170772061427,215,0 +170772061475,215,0 +170772061523,215,0 +170772061573,215,0 +170772061622,214,0 +170772061672,214,0 +170772061721,214,0 +170772061769,214,0 +170772061819,214,0 +170772061867,214,0 +170772061915,214,0 +170772061964,214,0 +170772062012,214,0 +170772062062,215,0 +170772062110,215,0 +170772062159,215,0 +170772062207,215,0 +170772062256,215,0 +170772062304,215,0 +170772062352,215,0 +170772062402,215,0 +170772062450,215,0 +170772062499,215,0 +170772062547,213,0 +170772062595,213,0 +170772062643,213,0 +170772062691,214,0 +170772062741,214,0 +170772062788,214,0 +170772062836,214,0 +170772062886,214,0 +170772062934,214,0 +170772062983,214,0 +170772063033,215,0 +170772063082,215,0 +170772063132,215,0 +170772063180,215,0 +170772063228,215,0 +170772063277,215,0 +170772063325,215,0 +170772063373,215,0 +170772063421,214,0 +170772063469,213,0 +170772063517,213,0 +170772063566,213,0 +170772063614,213,0 +170772063662,213,0 +170772063710,213,0 +170772063757,213,0 +170772063805,214,0 +170772063855,214,0 +170772063904,214,0 +170772063952,214,0 +170772064002,214,0 +170772064050,214,0 +170772064097,214,0 +170772064145,214,0 +170772064195,214,0 +170772064243,215,0 +170772064292,215,0 +170772064342,213,0 +170772064390,213,0 +170772064438,213,0 +170772064487,214,0 +170772064537,213,0 +170772064586,214,0 +170772064636,214,0 +170772064684,214,0 +170772064732,214,0 +170772064780,214,0 +170772064827,214,0 +170772064875,214,0 +170772064923,214,0 +170772064971,214,0 +170772065019,214,0 +170772065069,214,0 +170772065118,214,0 +170772065168,214,0 +170772065216,215,0 +170772065265,215,0 +170772065313,215,0 +170772065362,215,0 +170772065412,215,0 +170772065461,215,0 +170772065509,215,0 +170772065557,215,0 +170772065605,215,0 +170772065653,214,0 +170772065701,213,0 +170772065749,213,0 +170772065797,213,0 +170772065845,213,0 +170772065894,213,0 +170772065942,214,0 +170772065992,214,0 +170772066039,214,0 +170772066087,214,0 +170772066135,214,0 +170772066183,214,0 +170772066232,215,0 +170772066280,214,0 +170772066328,215,0 +170772066376,215,0 +170772066424,215,0 +170772066472,215,0 +170772066520,215,0 +170772066567,214,0 +170772066615,213,0 +170772066663,213,0 +170772066711,213,0 +170772066759,213,0 +170772066807,214,0 +170772066855,214,0 +170772066903,214,0 +170772066951,214,0 +170772066999,214,0 +170772067047,214,0 +170772067094,214,0 +170772067144,215,0 +170772067192,214,0 +170772067240,215,0 +170772067288,215,0 +170772067335,215,0 +170772067383,215,0 +170772067431,214,0 +170772067481,213,0 +170772067529,213,0 +170772067578,214,0 +170772067628,214,0 +170772067676,214,0 +170772067725,214,0 +170772067773,214,0 +170772067823,214,0 +170772067871,214,0 +170772067918,214,0 +170772067968,214,0 +170772068016,215,0 +170772068065,215,0 +170772068113,215,0 +170772068161,215,0 +170772068209,215,0 +170772068259,215,0 +170772068308,215,0 +170772068358,214,0 +170772068407,213,0 +170772068457,214,0 +170772068506,214,0 +170772068556,214,0 +170772068604,214,0 +170772068653,214,0 +170772068703,214,0 +170772068751,214,0 +170772068800,214,0 +170772068850,215,0 +170772068899,215,0 +170772068947,215,0 +170772068995,215,0 +170772069043,215,0 +170772069092,215,0 +170772069140,215,0 +170772069188,215,0 +170772069236,214,0 +170772069286,214,0 +170772069334,214,0 +170772069381,214,0 +170772069429,214,0 +170772069477,214,0 +170772069525,214,0 +170772069573,214,0 +170772069621,214,0 +170772069671,214,0 +170772069719,214,0 +170772069768,215,0 +170772069816,215,0 +170772069864,215,0 +170772069912,215,0 +170772069960,215,0 +170772070008,215,0 +170772070055,215,0 +170772070103,214,0 +170772070153,214,0 +170772070202,214,0 +170772070252,214,0 +170772070300,214,0 +170772070348,214,0 +170772070396,214,0 +170772070444,214,0 +170772070493,214,0 +170772070543,214,0 +170772070592,214,0 +170772070640,214,0 +170772070690,215,0 +170772070737,215,0 +170772070785,215,0 +170772070833,215,0 +170772070881,215,0 +170772070931,215,0 +170772070980,215,0 +170772071028,213,0 +170772071076,213,0 +170772071124,214,0 +170772071172,214,0 +170772071221,214,0 +170772071269,214,0 +170772071319,214,0 +170772071368,214,0 +170772071418,214,0 +170772071466,214,0 +170772071514,215,0 +170772071563,215,0 +170772071611,215,0 +170772071661,215,0 +170772071709,215,0 +170772071756,215,0 +170772071806,215,0 +170772071855,215,0 +170772071903,214,0 +170772071951,214,0 +170772071999,214,0 +170772072049,214,0 +170772072098,214,0 +170772072148,214,0 +170772072197,214,0 +170772072245,214,0 +170772072293,215,0 +170772072341,215,0 +170772072389,215,0 +170772072437,215,0 +170772072485,215,0 +170772072533,215,0 +170772072581,215,0 +170772072629,215,0 +170772072677,215,0 +170772072725,215,0 +170772072773,215,0 +170772072821,214,0 +170772072868,214,0 +170772072916,214,0 +170772072964,214,0 +170772073012,214,0 +170772073060,214,0 +170772073108,214,0 +170772073156,214,0 +170772073204,214,0 +170772073252,215,0 +170772073300,214,0 +170772073349,215,0 +170772073399,214,0 +170772073447,215,0 +170772073495,215,0 +170772073544,215,0 +170772073594,215,0 +170772073642,215,0 +170772073690,214,0 +170772073739,213,0 +170772073787,213,0 +170772073835,214,0 +170772073885,214,0 +170772073933,214,0 +170772073980,214,0 +170772074028,214,0 +170772074076,214,0 +170772074124,214,0 +170772074172,214,0 +170772074222,214,0 +170772074270,214,0 +170772074319,214,0 +170772074367,214,0 +170772074415,215,0 +170772074463,215,0 +170772074511,215,0 +170772074559,215,0 +170772074607,213,0 +170772074656,213,0 +170772074704,214,0 +170772074752,214,0 +170772074802,214,0 +170772074849,214,0 +170772074897,214,0 +170772074945,214,0 +170772074993,214,0 +170772075041,214,0 +170772075091,214,0 +170772075139,215,0 +170772075188,215,0 +170772075238,215,0 +170772075286,215,0 +170772075335,215,0 +170772075383,215,0 +170772075431,215,0 +170772075481,214,0 +170772075528,213,0 +170772075576,214,0 +170772075626,213,0 +170772075674,214,0 +170772075722,214,0 +170772075771,214,0 +170772075821,214,0 +170772075868,214,0 +170772075918,214,0 +170772075967,214,0 +170772076017,215,0 +170772076065,215,0 +170772076113,215,0 +170772076161,215,0 +170772076209,215,0 +170772076256,215,0 +170772076304,215,0 +170772076352,215,0 +170772076402,214,0 +170772076450,213,0 +170772076498,213,0 +170772076546,214,0 +170772076595,214,0 +170772076643,214,0 +170772076691,214,0 +170772076741,214,0 +170772076789,214,0 +170772076837,215,0 +170772076884,215,0 +170772076932,215,0 +170772076980,215,0 +170772077028,215,0 +170772077078,215,0 +170772077126,215,0 +170772077175,215,0 +170772077223,215,0 +170772077271,214,0 +170772077321,213,0 +170772077368,213,0 +170772077418,214,0 +170772077466,214,0 +170772077514,214,0 +170772077562,214,0 +170772077610,214,0 +170772077658,214,0 +170772077707,214,0 +170772077757,215,0 +170772077805,215,0 +170772077853,215,0 +170772077901,215,0 +170772077948,215,0 +170772077996,215,0 +170772078044,215,0 +170772078092,215,0 +170772078140,215,0 +170772078188,214,0 +170772078236,213,0 +170772078284,213,0 +170772078332,213,0 +170772078380,213,0 +170772078429,214,0 +170772078477,214,0 +170772078525,214,0 +170772078573,214,0 +170772078621,214,0 +170772078671,214,0 +170772078718,214,0 +170772078768,214,0 +170772078816,214,0 +170772078865,215,0 +170772078913,215,0 +170772078961,215,0 +170772079009,215,0 +170772079058,214,0 +170772079106,214,0 +170772079154,213,0 +170772079204,214,0 +170772079252,213,0 +170772079300,214,0 +170772079349,214,0 +170772079397,214,0 +170772079445,214,0 +170772079493,214,0 +170772079542,214,0 +170772079590,215,0 +170772079640,215,0 +170772079688,215,0 +170772079737,215,0 +170772079785,215,0 +170772079835,215,0 +170772079883,215,0 +170772079930,214,0 +170772079978,213,0 +170772080026,213,0 +170772080074,214,0 +170772080122,214,0 +170772080170,214,0 +170772080218,214,0 +170772080267,214,0 +170772080315,214,0 +170772080363,214,0 +170772080413,215,0 +170772080460,214,0 +170772080508,214,0 +170772080556,215,0 +170772080606,214,0 +170772080654,215,0 +170772080702,215,0 +170772080749,215,0 +170772080799,215,0 +170772080848,214,0 +170772080898,213,0 +170772080947,213,0 +170772080995,214,0 +170772081045,214,0 +170772081093,214,0 +170772081140,214,0 +170772081188,214,0 +170772081236,214,0 +170772081286,214,0 +170772081335,214,0 +170772081385,214,0 +170772081433,215,0 +170772081480,214,0 +170772081528,215,0 +170772081576,215,0 +170772081624,215,0 +170772081672,214,0 +170772081720,214,0 +170772081768,213,0 +170772081818,213,0 +170772081867,213,0 +170772081917,213,0 +170772081966,213,0 +170772082014,213,0 +170772082064,213,0 +170772082112,214,0 +170772082160,214,0 +170772082207,214,0 +170772082255,214,0 +170772082303,214,0 +170772082353,214,0 +170772082403,214,0 +170772082451,215,0 +170772082499,215,0 +170772082546,215,0 +170772082596,215,0 +170772082644,215,0 +170772082692,213,0 +170772082741,213,0 +170772082789,213,0 +170772082837,214,0 +170772082887,213,0 +170772082935,214,0 +170772082982,214,0 +170772083030,214,0 +170772083080,214,0 +170772083128,214,0 +170772083176,214,0 +170772083225,214,0 +170772083273,214,0 +170772083321,214,0 +170772083371,215,0 +170772083419,214,0 +170772083467,214,0 +170772083516,215,0 +170772083566,214,0 +170772083614,213,0 +170772083662,213,0 +170772083710,213,0 +170772083759,213,0 +170772083807,213,0 +170772083855,214,0 +170772083903,214,0 +170772083951,214,0 +170772084000,214,0 +170772084048,214,0 +170772084096,214,0 +170772084144,214,0 +170772084194,215,0 +170772084241,215,0 +170772084289,215,0 +170772084337,214,0 +170772084387,215,0 +170772084435,215,0 +170772084484,213,0 +170772084534,214,0 +170772084582,214,0 +170772084630,214,0 +170772084678,214,0 +170772084726,214,0 +170772084774,214,0 +170772084823,214,0 +170772084871,214,0 +170772084919,215,0 +170772084967,215,0 +170772085016,215,0 +170772085064,215,0 +170772085112,215,0 +170772085160,215,0 +170772085208,215,0 +170772085257,215,0 +170772085305,215,0 +170772085353,214,0 +170772085403,214,0 +170772085450,214,0 +170772085498,214,0 +170772085546,214,0 +170772085596,214,0 +170772085643,214,0 +170772085691,215,0 +170772085739,214,0 +170772085789,215,0 +170772085837,215,0 +170772085885,215,0 +170772085933,215,0 +170772085980,215,0 +170772086028,215,0 +170772086078,215,0 +170772086126,215,0 +170772086174,215,0 +170772086222,215,0 +170772086270,214,0 +170772086319,214,0 +170772086367,214,0 +170772086416,214,0 +170772086466,214,0 +170772086515,214,0 +170772086563,214,0 +170772086611,214,0 +170772086661,214,0 +170772086710,215,0 +170772086760,215,0 +170772086809,215,0 +170772086857,215,0 +170772086905,215,0 +170772086953,215,0 +170772087003,215,0 +170772087050,215,0 +170772087100,215,0 +170772087148,214,0 +170772087196,214,0 +170772087244,214,0 +170772087293,214,0 +170772087343,214,0 +170772087391,214,0 +170772087439,214,0 +170772087487,214,0 +170772087536,214,0 +170772087586,215,0 +170772087634,214,0 +170772087683,214,0 +170772087733,215,0 +170772087781,215,0 +170772087829,215,0 +170772087877,215,0 +170772087926,215,0 +170772087974,215,0 +170772088022,215,0 +170772088071,214,0 +170772088121,214,0 +170772088169,214,0 +170772088217,214,0 +170772088266,214,0 +170772088316,214,0 +170772088364,214,0 +170772088412,214,0 +170772088460,214,0 +170772088508,214,0 +170772088556,214,0 +170772088604,214,0 +170772088653,215,0 +170772088701,215,0 +170772088751,215,0 +170772088800,215,0 +170772088848,215,0 +170772088896,215,0 +170772088946,214,0 +170772088993,214,0 +170772089041,214,0 +170772089089,214,0 +170772089137,214,0 +170772089187,214,0 +170772089235,214,0 +170772089284,215,0 +170772089332,215,0 +170772089380,215,0 +170772089430,215,0 +170772089479,215,0 +170772089527,215,0 +170772089575,215,0 +170772089624,215,0 +170772089672,215,0 +170772089720,215,0 +170772089768,215,0 +170772089818,215,0 +170772089866,214,0 +170772089915,214,0 +170772089965,214,0 +170772090013,214,0 +170772090061,214,0 +170772090109,214,0 +170772090156,214,0 +170772090206,214,0 +170772090254,215,0 +170772090302,215,0 +170772090350,215,0 +170772090399,215,0 +170772090447,215,0 +170772090495,215,0 +170772090543,215,0 +170772090591,215,0 +170772090639,215,0 +170772090686,215,0 +170772090736,214,0 +170772090784,214,0 +170772090833,214,0 +170772090881,214,0 +170772090929,214,0 +170772090979,214,0 +170772091028,214,0 +170772091076,215,0 +170772091124,215,0 +170772091172,215,0 +170772091222,215,0 +170772091270,215,0 +170772091317,215,0 +170772091367,215,0 +170772091417,215,0 +170772091464,215,0 +170772091512,215,0 +170772091560,215,0 +170772091610,215,0 +170772091658,214,0 +170772091707,214,0 +170772091757,214,0 +170772091805,214,0 +170772091853,214,0 +170772091901,214,0 +170772091950,214,0 +170772091998,214,0 +170772092046,214,0 +170772092094,215,0 +170772092142,214,0 +170772092190,215,0 +170772092239,215,0 +170772092289,215,0 +170772092338,215,0 +170772092386,215,0 +170772092434,215,0 +170772092484,215,0 +170772092533,214,0 +170772092581,214,0 +170772092629,213,0 +170772092677,214,0 +170772092725,214,0 +170772092773,214,0 +170772092823,214,0 +170772092871,214,0 +170772092920,214,0 +170772092968,214,0 +170772093018,214,0 +170772093066,215,0 +170772093115,215,0 +170772093164,215,0 +170772093214,215,0 +170772093262,215,0 +170772093310,215,0 +170772093357,215,0 +170772093405,215,0 +170772093453,213,0 +170772093502,213,0 +170772093552,213,0 +170772093600,214,0 +170772093648,214,0 +170772093695,214,0 +170772093743,214,0 +170772093791,214,0 +170772093841,214,0 +170772093889,214,0 +170772093936,214,0 +170772093984,214,0 +170772094032,214,0 +170772094082,214,0 +170772094129,215,0 +170772094177,215,0 +170772094225,215,0 +170772094273,215,0 +170772094321,214,0 +170772094369,214,0 +170772094417,213,0 +170772094464,214,0 +170772094512,214,0 +170772094560,214,0 +170772094608,214,0 +170772094658,214,0 +170772094705,214,0 +170772094753,215,0 +170772094803,214,0 +170772094851,214,0 +170772094899,215,0 +170772094948,215,0 +170772094998,215,0 +170772095046,215,0 +170772095093,214,0 +170772095141,215,0 +170772095189,215,0 +170772095237,214,0 +170772095285,214,0 +170772095333,214,0 +170772095383,213,0 +170772095431,214,0 +170772095479,214,0 +170772095526,214,0 +170772095574,214,0 +170772095622,214,0 +170772095670,214,0 +170772095718,214,0 +170772095766,215,0 +170772095815,215,0 +170772095865,215,0 +170772095913,215,0 +170772095961,215,0 +170772096010,215,0 +170772096060,215,0 +170772096108,215,0 +170772096155,213,0 +170772096204,213,0 +170772096251,214,0 +170772096299,214,0 +170772096349,214,0 +170772096397,214,0 +170772096444,214,0 +170772096492,214,0 +170772096540,214,0 +170772096590,214,0 +170772096638,214,0 +170772096687,215,0 +170772096735,215,0 +170772096785,215,0 +170772096832,215,0 +170772096882,215,0 +170772096930,215,0 +170772096978,215,0 +170772097026,214,0 +170772097074,214,0 +170772097123,213,0 +170772097171,213,0 +170772097219,213,0 +170772097267,214,0 +170772097315,214,0 +170772097362,214,0 +170772097410,214,0 +170772097458,214,0 +170772097508,214,0 +170772097557,214,0 +170772097605,215,0 +170772097653,215,0 +170772097701,215,0 +170772097749,215,0 +170772097797,215,0 +170772097845,215,0 +170772097893,215,0 +170772097942,214,0 +170772097990,213,0 +170772098038,213,0 +170772098088,213,0 +170772098137,213,0 +170772098185,214,0 +170772098233,214,0 +170772098281,214,0 +170772098329,214,0 +170772098377,214,0 +170772098425,214,0 +170772098473,214,0 +170772098521,214,0 +170772098570,215,0 +170772098618,215,0 +170772098668,215,0 +170772098717,215,0 +170772098767,215,0 +170772098814,214,0 +170772098864,213,0 +170772098912,213,0 +170772098960,213,0 +170772099008,213,0 +170772099056,213,0 +170772099104,213,0 +170772099152,213,0 +170772099201,213,0 +170772099249,214,0 +170772099297,214,0 +170772099345,214,0 +170772099393,214,0 +170772099441,214,0 +170772099489,214,0 +170772099538,214,0 +170772099587,214,0 +170772099637,214,0 +170772099685,215,0 +170772099734,213,0 +170772099782,213,0 +170772099830,213,0 +170772099880,213,0 +170772099928,214,0 +170772099976,213,0 +170772100023,214,0 +170772100073,214,0 +170772100121,214,0 +170772100169,214,0 +170772100216,214,0 +170772100264,214,0 +170772100312,214,0 +170772100362,214,0 +170772100411,214,0 +170772100459,214,0 +170772100509,214,0 +170772100556,215,0 +170772100604,214,0 +170772100652,213,0 +170772100702,213,0 +170772100749,213,0 +170772100797,213,0 +170772100845,214,0 +170772100895,214,0 +170772100942,214,0 +170772100990,214,0 +170772101038,214,0 +170772101086,214,0 +170772101135,214,0 +170772101183,214,0 +170772101231,214,0 +170772101279,214,0 +170772101327,214,0 +170772101375,214,0 +170772101423,215,0 +170772101471,215,0 +170772101519,214,0 +170772101568,213,0 +170772101616,213,0 +170772101664,214,0 +170772101712,214,0 +170772101760,214,0 +170772101808,214,0 +170772101857,214,0 +170772101905,214,0 +170772101955,214,0 +170772102002,214,0 +170772102050,214,0 +170772102098,215,0 +170772102146,215,0 +170772102195,215,0 +170772102243,215,0 +170772102291,215,0 +170772102341,215,0 +170772102389,214,0 +170772102438,214,0 +170772102488,214,0 +170772102535,214,0 +170772102583,214,0 +170772102631,214,0 +170772102681,214,0 +170772102729,214,0 +170772102778,215,0 +170772102828,215,0 +170772102877,215,0 +170772102925,215,0 +170772102973,215,0 +170772103023,215,0 +170772103072,215,0 +170772103120,215,0 +170772103168,215,0 +170772103218,215,0 +170772103265,215,0 +170772103313,214,0 +170772103361,214,0 +170772103409,214,0 +170772103459,214,0 +170772103507,214,0 +170772103555,214,0 +170772103604,215,0 +170772103654,215,0 +170772103703,215,0 +170772103751,215,0 +170772103801,215,0 +170772103849,215,0 +170772103896,215,0 +170772103944,215,0 +170772103992,215,0 +170772104040,215,0 +170772104088,215,0 +170772104136,215,0 +170772104185,214,0 +170772104233,214,0 +170772104283,214,0 +170772104332,214,0 +170772104380,214,0 +170772104428,215,0 +170772104478,215,0 +170772104526,215,0 +170772104574,215,0 +170772104623,215,0 +170772104673,215,0 +170772104721,215,0 +170772104768,215,0 +170772104818,215,0 +170772104866,215,0 +170772104915,215,0 +170772104963,215,0 +170772105013,215,0 +170772105061,215,0 +170772105109,214,0 +170772105157,214,0 +170772105205,214,0 +170772105254,214,0 +170772105304,215,0 +170772105351,215,0 +170772105399,215,0 +170772105447,215,0 +170772105497,215,0 +170772105545,215,0 +170772105594,215,0 +170772105644,215,0 +170772105693,216,0 +170772105741,215,0 +170772105789,215,0 +170772105837,215,0 +170772105885,215,0 +170772105933,215,0 +170772105981,214,0 +170772106029,214,0 +170772106077,214,0 +170772106126,215,0 +170772106174,215,0 +170772106222,214,0 +170772106270,215,0 +170772106320,215,0 +170772106369,215,0 +170772106417,215,0 +170772106467,215,0 +170772106515,215,0 +170772106563,215,0 +170772106612,215,0 +170772106660,215,0 +170772106709,216,0 +170772106757,215,0 +170772106805,215,0 +170772106853,215,0 +170772106901,214,0 +170772106951,214,0 +170772107000,214,0 +170772107048,214,0 +170772107096,214,0 +170772107143,214,0 +170772107191,214,0 +170772107239,215,0 +170772107287,215,0 +170772107335,215,0 +170772107384,215,0 +170772107432,215,0 +170772107480,215,0 +170772107528,215,0 +170772107578,215,0 +170772107627,215,0 +170772107675,215,0 +170772107725,215,0 +170772107774,214,0 +170772107822,214,0 +170772107872,214,0 +170772107920,214,0 +170772107968,214,0 +170772108015,214,0 +170772108063,214,0 +170772108113,215,0 +170772108163,214,0 +170772108211,215,0 +170772108260,215,0 +170772108308,215,0 +170772108356,215,0 +170772108405,215,0 +170772108455,215,0 +170772108503,215,0 +170772108551,215,0 +170772108600,215,0 +170772108648,214,0 +170772108696,214,0 +170772108746,214,0 +170772108795,214,0 +170772108845,214,0 +170772108892,214,0 +170772108940,214,0 +170772108990,214,0 +170772109038,214,0 +170772109087,214,0 +170772109135,215,0 +170772109183,215,0 +170772109231,215,0 +170772109279,215,0 +170772109329,215,0 +170772109377,215,0 +170772109425,215,0 +170772109473,215,0 +170772109520,215,0 +170772109568,214,0 +170772109616,214,0 +170772109664,214,0 +170772109712,214,0 +170772109762,214,0 +170772109811,214,0 +170772109861,214,0 +170772109910,214,0 +170772109960,214,0 +170772110009,215,0 +170772110057,215,0 +170772110107,215,0 +170772110156,215,0 +170772110204,215,0 +170772110252,215,0 +170772110302,215,0 +170772110350,215,0 +170772110398,215,0 +170772110447,214,0 +170772110496,213,0 +170772110544,214,0 +170772110594,214,0 +170772110643,214,0 +170772110693,214,0 +170772110742,214,0 +170772110790,214,0 +170772110838,214,0 +170772110886,214,0 +170772110934,214,0 +170772110982,214,0 +170772111030,214,0 +170772111078,215,0 +170772111125,215,0 +170772111175,215,0 +170772111224,215,0 +170772111274,215,0 +170772111324,214,0 +170772111373,214,0 +170772111421,214,0 +170772111469,213,0 +170772111517,213,0 +170772111566,214,0 +170772111614,214,0 +170772111662,214,0 +170772111712,214,0 +170772111760,214,0 +170772111808,214,0 +170772111857,214,0 +170772111907,214,0 +170772111956,215,0 +170772112004,215,0 +170772112052,215,0 +170772112100,215,0 +170772112150,215,0 +170772112198,215,0 +170772112246,214,0 +170772112295,213,0 +170772112344,214,0 +170772112394,214,0 +170772112442,214,0 +170772112491,214,0 +170772112539,214,0 +170772112587,214,0 +170772112637,214,0 +170772112685,214,0 +170772112733,215,0 +170772112782,215,0 +170772112830,215,0 +170772112879,215,0 +170772112927,215,0 +170772112977,215,0 +170772113025,215,0 +170772113073,215,0 +170772113122,214,0 +170772113170,213,0 +170772113218,213,0 +170772113266,213,0 +170772113316,214,0 +170772113365,214,0 +170772113413,214,0 +170772113463,214,0 +170772113511,214,0 +170772113559,214,0 +170772113608,214,0 +170772113658,214,0 +170772113706,214,0 +170772113754,215,0 +170772113802,215,0 +170772113850,215,0 +170772113897,215,0 +170772113945,215,0 +170772113993,215,0 +170772114041,214,0 +170772114091,213,0 +170772114138,213,0 +170772114186,213,0 +170772114236,214,0 +170772114285,214,0 +170772114335,214,0 +170772114384,214,0 +170772114434,214,0 +170772114482,214,0 +170772114530,214,0 +170772114579,214,0 +170772114629,215,0 +170772114677,215,0 +170772114725,215,0 +170772114773,215,0 +170772114822,215,0 +170772114870,215,0 +170772114918,214,0 +170772114966,213,0 +170772115014,213,0 +170772115064,214,0 +170772115112,214,0 +170772115159,214,0 +170772115209,214,0 +170772115259,214,0 +170772115308,214,0 +170772115356,214,0 +170772115404,214,0 +170772115452,214,0 +170772115501,214,0 +170772115549,214,0 +170772115597,215,0 +170772115645,215,0 +170772115694,214,0 +170772115744,215,0 +170772115792,215,0 +170772115839,213,0 +170772115889,213,0 +170772115937,214,0 +170772115985,214,0 +170772116032,214,0 +170772116080,214,0 +170772116128,214,0 +170772116176,214,0 +170772116224,214,0 +170772116272,214,0 +170772116321,214,0 +170772116371,215,0 +170772116420,215,0 +170772116468,215,0 +170772116518,215,0 +170772116566,215,0 +170772116615,215,0 +170772116665,215,0 +170772116713,214,0 +170772116762,213,0 +170772116810,213,0 +170772116858,213,0 +170772116907,213,0 +170772116955,214,0 +170772117003,214,0 +170772117051,214,0 +170772117099,214,0 +170772117147,214,0 +170772117197,214,0 +170772117246,214,0 +170772117294,214,0 +170772117342,214,0 +170772117391,215,0 +170772117439,215,0 +170772117487,215,0 +170772117535,214,0 +170772117583,214,0 +170772117631,213,0 +170772117679,213,0 +170772117727,213,0 +170772117777,214,0 +170772117825,214,0 +170772117872,214,0 +170772117922,214,0 +170772117971,214,0 +170772118021,214,0 +170772118069,214,0 +170772118118,214,0 +170772118166,215,0 +170772118214,214,0 +170772118264,215,0 +170772118312,215,0 +170772118360,215,0 +170772118409,215,0 +170772118459,215,0 +170772118507,213,0 +170772118555,213,0 +170772118603,214,0 +170772118650,213,0 +170772118700,214,0 +170772118749,214,0 +170772118797,214,0 +170772118845,214,0 +170772118895,214,0 +170772118943,214,0 +170772118992,214,0 +170772119040,214,0 +170772119090,214,0 +170772119138,214,0 +170772119187,214,0 +170772119237,215,0 +170772119285,215,0 +170772119334,215,0 +170772119384,214,0 +170772119433,213,0 +170772119481,214,0 +170772119529,214,0 +170772119577,214,0 +170772119625,214,0 +170772119673,214,0 +170772119720,214,0 +170772119768,214,0 +170772119816,214,0 +170772119866,214,0 +170772119913,215,0 +170772119961,215,0 +170772120009,215,0 diff --git a/laser_value/0212-17.csv b/laser_value/0212-17.csv new file mode 100644 index 0000000..9e9cf96 --- /dev/null +++ b/laser_value/0212-17.csv @@ -0,0 +1,7434 @@ +timestamp,laser_value,event +170772120057,215,0 +170772120105,215,0 +170772120153,215,0 +170772120202,216,0 +170772120252,215,0 +170772120301,214,0 +170772120349,214,0 +170772120399,214,0 +170772120447,214,0 +170772120494,214,0 +170772120542,214,0 +170772120590,214,0 +170772120638,215,0 +170772120686,215,0 +170772120734,215,0 +170772120782,215,0 +170772120829,215,0 +170772120877,215,0 +170772120925,215,0 +170772120975,215,0 +170772121024,215,0 +170772121074,215,0 +170772121123,215,0 +170772121171,214,0 +170772121221,214,0 +170772121269,214,0 +170772121316,214,0 +170772121364,214,0 +170772121412,214,0 +170772121460,214,0 +170772121508,214,0 +170772121556,215,0 +170772121604,215,0 +170772121652,214,0 +170772121700,215,0 +170772121747,215,0 +170772121795,215,0 +170772121845,215,0 +170772121893,215,0 +170772121940,215,0 +170772121988,215,0 +170772122036,215,0 +170772122084,214,0 +170772122132,214,0 +170772122180,214,0 +170772122228,214,0 +170772122275,214,0 +170772122323,214,0 +170772122371,214,0 +170772122419,214,0 +170772122468,214,0 +170772122516,214,0 +170772122566,214,0 +170772122614,215,0 +170772122662,215,0 +170772122711,215,0 +170772122759,215,0 +170772122807,215,0 +170772122856,215,0 +170772122904,215,0 +170772122954,214,0 +170772123002,214,0 +170772123050,214,0 +170772123098,214,0 +170772123146,214,0 +170772123195,214,0 +170772123245,214,0 +170772123293,215,0 +170772123342,215,0 +170772123392,214,0 +170772123440,215,0 +170772123488,215,0 +170772123536,215,0 +170772123584,215,0 +170772123631,215,0 +170772123681,215,0 +170772123729,215,0 +170772123778,215,0 +170772123826,214,0 +170772123876,214,0 +170772123924,214,0 +170772123972,214,0 +170772124021,214,0 +170772124069,214,0 +170772124118,214,0 +170772124168,214,0 +170772124216,214,0 +170772124264,215,0 +170772124312,214,0 +170772124360,215,0 +170772124409,215,0 +170772124457,215,0 +170772124507,215,0 +170772124556,215,0 +170772124604,215,0 +170772124654,215,0 +170772124703,215,0 +170772124751,213,0 +170772124799,213,0 +170772124847,214,0 +170772124895,213,0 +170772124944,214,0 +170772124992,214,0 +170772125040,214,0 +170772125088,214,0 +170772125137,214,0 +170772125185,214,0 +170772125233,214,0 +170772125283,214,0 +170772125331,215,0 +170772125380,215,0 +170772125428,215,0 +170772125476,215,0 +170772125524,215,0 +170772125572,215,0 +170772125620,214,0 +170772125668,213,0 +170772125716,213,0 +170772125764,213,0 +170772125813,213,0 +170772125863,214,0 +170772125911,214,0 +170772125959,214,0 +170772126007,214,0 +170772126054,214,0 +170772126102,214,0 +170772126150,214,0 +170772126200,214,0 +170772126248,214,0 +170772126297,214,0 +170772126345,215,0 +170772126393,214,0 +170772126441,215,0 +170772126489,215,0 +170772126536,214,0 +170772126586,213,0 +170772126635,213,0 +170772126685,213,0 +170772126733,213,0 +170772126782,213,0 +170772126830,213,0 +170772126878,214,0 +170772126926,214,0 +170772126974,214,0 +170772127022,214,0 +170772127070,214,0 +170772127117,214,0 +170772127165,214,0 +170772127215,214,0 +170772127263,215,0 +170772127311,215,0 +170772127359,215,0 +170772127406,214,0 +170772127454,213,0 +170772127502,214,0 +170772127552,214,0 +170772127601,214,0 +170772127649,214,0 +170772127697,214,0 +170772127745,214,0 +170772127793,214,0 +170772127841,214,0 +170772127889,214,0 +170772127938,214,0 +170772127986,214,0 +170772128036,215,0 +170772128085,215,0 +170772128135,215,0 +170772128183,215,0 +170772128232,215,0 +170772128282,215,0 +170772128331,213,0 +170772128381,213,0 +170772128430,214,0 +170772128478,214,0 +170772128526,214,0 +170772128574,214,0 +170772128622,214,0 +170772128670,214,0 +170772128718,214,0 +170772128766,214,0 +170772128814,214,0 +170772128862,215,0 +170772128909,215,0 +170772128959,215,0 +170772129007,215,0 +170772129055,215,0 +170772129103,215,0 +170772129151,215,0 +170772129200,214,0 +170772129248,213,0 +170772129296,213,0 +170772129345,214,0 +170772129393,214,0 +170772129442,214,0 +170772129490,214,0 +170772129538,214,0 +170772129586,214,0 +170772129634,214,0 +170772129682,214,0 +170772129730,214,0 +170772129778,215,0 +170772129826,215,0 +170772129874,215,0 +170772129922,215,0 +170772129970,215,0 +170772130019,215,0 +170772130068,214,0 +170772130118,213,0 +170772130166,214,0 +170772130214,214,0 +170772130262,214,0 +170772130310,214,0 +170772130359,214,0 +170772130407,214,0 +170772130457,214,0 +170772130506,214,0 +170772130554,214,0 +170772130602,215,0 +170772130651,215,0 +170772130699,215,0 +170772130747,215,0 +170772130795,215,0 +170772130843,215,0 +170772130892,215,0 +170772130940,215,0 +170772130988,214,0 +170772131036,213,0 +170772131084,213,0 +170772131131,214,0 +170772131179,214,0 +170772131229,214,0 +170772131277,214,0 +170772131325,214,0 +170772131373,214,0 +170772131422,214,0 +170772131470,214,0 +170772131518,214,0 +170772131566,215,0 +170772131615,215,0 +170772131665,215,0 +170772131713,215,0 +170772131762,215,0 +170772131810,215,0 +170772131860,215,0 +170772131907,213,0 +170772131955,214,0 +170772132005,213,0 +170772132054,214,0 +170772132102,214,0 +170772132150,214,0 +170772132200,214,0 +170772132248,214,0 +170772132295,214,0 +170772132343,215,0 +170772132391,215,0 +170772132439,215,0 +170772132488,214,0 +170772132536,215,0 +170772132584,215,0 +170772132632,215,0 +170772132682,215,0 +170772132731,215,0 +170772132779,214,0 +170772132827,214,0 +170772132875,213,0 +170772132923,214,0 +170772132972,214,0 +170772133022,214,0 +170772133070,214,0 +170772133117,214,0 +170772133165,214,0 +170772133213,214,0 +170772133261,214,0 +170772133311,215,0 +170772133360,214,0 +170772133408,215,0 +170772133456,215,0 +170772133504,215,0 +170772133552,215,0 +170772133601,215,0 +170772133651,215,0 +170772133700,213,0 +170772133748,213,0 +170772133798,214,0 +170772133845,214,0 +170772133893,214,0 +170772133941,214,0 +170772133989,214,0 +170772134037,214,0 +170772134085,214,0 +170772134133,214,0 +170772134181,214,0 +170772134229,214,0 +170772134278,214,0 +170772134326,215,0 +170772134374,215,0 +170772134423,215,0 +170772134471,215,0 +170772134519,215,0 +170772134569,214,0 +170772134617,213,0 +170772134665,213,0 +170772134713,213,0 +170772134762,213,0 +170772134810,213,0 +170772134858,213,0 +170772134906,214,0 +170772134954,214,0 +170772135002,214,0 +170772135051,214,0 +170772135099,214,0 +170772135147,214,0 +170772135195,214,0 +170772135243,214,0 +170772135291,214,0 +170772135338,215,0 +170772135388,215,0 +170772135436,215,0 +170772135484,213,0 +170772135531,213,0 +170772135581,213,0 +170772135629,214,0 +170772135678,214,0 +170772135728,214,0 +170772135775,214,0 +170772135823,214,0 +170772135871,214,0 +170772135921,214,0 +170772135969,214,0 +170772136018,214,0 +170772136066,214,0 +170772136114,215,0 +170772136162,214,0 +170772136210,214,0 +170772136258,215,0 +170772136307,215,0 +170772136355,214,0 +170772136405,213,0 +170772136454,213,0 +170772136502,213,0 +170772136550,213,0 +170772136599,213,0 +170772136647,214,0 +170772136697,213,0 +170772136745,214,0 +170772136792,214,0 +170772136840,214,0 +170772136888,214,0 +170772136938,214,0 +170772136987,215,0 +170772137037,215,0 +170772137086,215,0 +170772137134,215,0 +170772137182,215,0 +170772137232,214,0 +170772137279,213,0 +170772137329,213,0 +170772137378,214,0 +170772137426,214,0 +170772137474,214,0 +170772137522,214,0 +170772137570,214,0 +170772137619,214,0 +170772137667,214,0 +170772137715,215,0 +170772137765,214,0 +170772137814,215,0 +170772137864,215,0 +170772137912,215,0 +170772137959,215,0 +170772138009,215,0 +170772138057,215,0 +170772138105,215,0 +170772138152,214,0 +170772138202,214,0 +170772138251,214,0 +170772138299,214,0 +170772138349,214,0 +170772138398,214,0 +170772138446,214,0 +170772138494,214,0 +170772138542,215,0 +170772138592,215,0 +170772138641,215,0 +170772138690,215,0 +170772138740,215,0 +170772138788,215,0 +170772138836,215,0 +170772138885,215,0 +170772138933,215,0 +170772138983,215,0 +170772139030,214,0 +170772139078,213,0 +170772139126,214,0 +170772139174,214,0 +170772139222,214,0 +170772139270,214,0 +170772139317,214,0 +170772139365,214,0 +170772139413,214,0 +170772139461,214,0 +170772139509,215,0 +170772139557,215,0 +170772139606,215,0 +170772139656,215,0 +170772139703,215,0 +170772139751,215,0 +170772139799,215,0 +170772139847,215,0 +170772139895,215,0 +170772139943,213,0 +170772139991,214,0 +170772140038,214,0 +170772140088,214,0 +170772140136,214,0 +170772140183,214,0 +170772140231,214,0 +170772140279,214,0 +170772140327,214,0 +170772140375,214,0 +170772140423,215,0 +170772140471,215,0 +170772140519,215,0 +170772140568,215,0 +170772140616,215,0 +170772140663,215,0 +170772140713,215,0 +170772140761,215,0 +170772140810,214,0 +170772140858,214,0 +170772140906,214,0 +170772140954,214,0 +170772141002,214,0 +170772141051,214,0 +170772141099,214,0 +170772141147,215,0 +170772141195,215,0 +170772141242,215,0 +170772141290,215,0 +170772141340,215,0 +170772141388,215,0 +170772141436,215,0 +170772141483,215,0 +170772141531,215,0 +170772141579,215,0 +170772141627,215,0 +170772141675,215,0 +170772141723,214,0 +170772141772,214,0 +170772141820,214,0 +170772141868,214,0 +170772141918,214,0 +170772141966,214,0 +170772142015,214,0 +170772142063,214,0 +170772142111,214,0 +170772142160,215,0 +170772142210,215,0 +170772142258,215,0 +170772142307,215,0 +170772142357,215,0 +170772142405,215,0 +170772142453,215,0 +170772142501,215,0 +170772142548,215,0 +170772142596,214,0 +170772142646,213,0 +170772142694,213,0 +170772142743,214,0 +170772142793,214,0 +170772142842,214,0 +170772142890,214,0 +170772142940,214,0 +170772142988,214,0 +170772143037,214,0 +170772143085,214,0 +170772143135,215,0 +170772143184,215,0 +170772143232,215,0 +170772143280,215,0 +170772143328,215,0 +170772143376,215,0 +170772143425,215,0 +170772143473,214,0 +170772143521,213,0 +170772143569,213,0 +170772143618,213,0 +170772143666,214,0 +170772143714,213,0 +170772143764,213,0 +170772143811,214,0 +170772143859,213,0 +170772143907,214,0 +170772143955,214,0 +170772144004,214,0 +170772144054,214,0 +170772144103,214,0 +170772144151,214,0 +170772144201,214,0 +170772144249,214,0 +170772144296,214,0 +170772144344,215,0 +170772144394,214,0 +170772144442,213,0 +170772144491,213,0 +170772144539,214,0 +170772144587,214,0 +170772144637,214,0 +170772144684,214,0 +170772144734,214,0 +170772144782,214,0 +170772144831,214,0 +170772144879,214,0 +170772144927,215,0 +170772144975,215,0 +170772145024,215,0 +170772145074,215,0 +170772145122,215,0 +170772145170,215,0 +170772145219,215,0 +170772145269,214,0 +170772145318,213,0 +170772145366,213,0 +170772145414,214,0 +170772145462,214,0 +170772145512,214,0 +170772145561,214,0 +170772145611,214,0 +170772145659,214,0 +170772145708,214,0 +170772145756,214,0 +170772145806,215,0 +170772145855,215,0 +170772145903,215,0 +170772145953,215,0 +170772146000,215,0 +170772146048,215,0 +170772146096,215,0 +170772146144,215,0 +170772146192,214,0 +170772146240,214,0 +170772146289,214,0 +170772146339,214,0 +170772146387,214,0 +170772146435,214,0 +170772146484,214,0 +170772146534,215,0 +170772146583,215,0 +170772146633,214,0 +170772146681,215,0 +170772146729,215,0 +170772146777,215,0 +170772146824,215,0 +170772146874,215,0 +170772146923,215,0 +170772146971,215,0 +170772147019,215,0 +170772147069,214,0 +170772147118,214,0 +170772147168,214,0 +170772147216,214,0 +170772147263,214,0 +170772147311,214,0 +170772147359,214,0 +170772147409,214,0 +170772147457,214,0 +170772147504,214,0 +170772147552,215,0 +170772147600,215,0 +170772147648,215,0 +170772147696,215,0 +170772147744,215,0 +170772147793,215,0 +170772147841,215,0 +170772147889,215,0 +170772147937,214,0 +170772147985,214,0 +170772148034,214,0 +170772148082,214,0 +170772148130,214,0 +170772148180,214,0 +170772148228,214,0 +170772148276,214,0 +170772148325,214,0 +170772148375,215,0 +170772148424,215,0 +170772148472,215,0 +170772148522,215,0 +170772148570,215,0 +170772148618,215,0 +170772148667,215,0 +170772148715,215,0 +170772148763,215,0 +170772148811,215,0 +170772148859,213,0 +170772148909,214,0 +170772148956,213,0 +170772149004,214,0 +170772149054,214,0 +170772149103,214,0 +170772149151,214,0 +170772149199,214,0 +170772149248,214,0 +170772149296,214,0 +170772149344,215,0 +170772149394,215,0 +170772149443,215,0 +170772149491,215,0 +170772149539,215,0 +170772149587,215,0 +170772149635,215,0 +170772149683,215,0 +170772149731,213,0 +170772149778,213,0 +170772149826,213,0 +170772149876,213,0 +170772149924,213,0 +170772149973,214,0 +170772150021,214,0 +170772150071,214,0 +170772150119,214,0 +170772150168,214,0 +170772150218,214,0 +170772150266,214,0 +170772150314,214,0 +170772150361,214,0 +170772150411,215,0 +170772150459,215,0 +170772150506,215,0 +170772150554,215,0 +170772150602,214,0 +170772150650,213,0 +170772150698,213,0 +170772150746,213,0 +170772150795,213,0 +170772150844,214,0 +170772150892,214,0 +170772150940,214,0 +170772150988,214,0 +170772151036,214,0 +170772151086,214,0 +170772151134,214,0 +170772151181,215,0 +170772151231,215,0 +170772151280,215,0 +170772151330,215,0 +170772151379,215,0 +170772151427,215,0 +170772151477,215,0 +170772151526,213,0 +170772151574,213,0 +170772151624,213,0 +170772151671,213,0 +170772151721,214,0 +170772151770,214,0 +170772151818,214,0 +170772151866,214,0 +170772151914,214,0 +170772151964,214,0 +170772152012,214,0 +170772152061,214,0 +170772152111,214,0 +170772152159,214,0 +170772152206,215,0 +170772152254,214,0 +170772152302,214,0 +170772152350,215,0 +170772152400,214,0 +170772152448,213,0 +170772152497,213,0 +170772152545,213,0 +170772152593,213,0 +170772152641,213,0 +170772152691,213,0 +170772152740,213,0 +170772152788,214,0 +170772152836,214,0 +170772152885,214,0 +170772152933,214,0 +170772152983,214,0 +170772153031,214,0 +170772153080,214,0 +170772153128,214,0 +170772153178,214,0 +170772153225,215,0 +170772153273,215,0 +170772153323,214,0 +170772153371,213,0 +170772153420,213,0 +170772153470,213,0 +170772153518,213,0 +170772153565,213,0 +170772153613,213,0 +170772153661,213,0 +170772153711,214,0 +170772153760,214,0 +170772153808,214,0 +170772153856,214,0 +170772153904,214,0 +170772153953,214,0 +170772154001,214,0 +170772154049,214,0 +170772154099,214,0 +170772154148,214,0 +170772154196,213,0 +170772154244,213,0 +170772154292,213,0 +170772154340,213,0 +170772154388,213,0 +170772154437,214,0 +170772154485,214,0 +170772154533,214,0 +170772154583,214,0 +170772154631,214,0 +170772154679,214,0 +170772154727,214,0 +170772154776,214,0 +170772154826,215,0 +170772154874,214,0 +170772154922,215,0 +170772154971,214,0 +170772155021,215,0 +170772155070,214,0 +170772155118,213,0 +170772155168,213,0 +170772155217,213,0 +170772155265,213,0 +170772155313,213,0 +170772155361,213,0 +170772155409,214,0 +170772155457,214,0 +170772155506,214,0 +170772155556,214,0 +170772155604,214,0 +170772155653,214,0 +170772155701,214,0 +170772155749,214,0 +170772155797,215,0 +170772155845,215,0 +170772155893,214,0 +170772155941,215,0 +170772155989,214,0 +170772156036,214,0 +170772156084,214,0 +170772156132,214,0 +170772156180,214,0 +170772156228,214,0 +170772156276,214,0 +170772156325,214,0 +170772156373,214,0 +170772156421,214,0 +170772156470,215,0 +170772156520,214,0 +170772156568,215,0 +170772156617,215,0 +170772156665,215,0 +170772156715,215,0 +170772156763,215,0 +170772156811,215,0 +170772156860,214,0 +170772156908,214,0 +170772156958,213,0 +170772157007,214,0 +170772157055,214,0 +170772157103,214,0 +170772157151,214,0 +170772157199,214,0 +170772157248,214,0 +170772157296,215,0 +170772157344,214,0 +170772157392,215,0 +170772157440,214,0 +170772157488,215,0 +170772157536,215,0 +170772157584,215,0 +170772157632,215,0 +170772157679,215,0 +170772157727,215,0 +170772157777,214,0 +170772157825,213,0 +170772157872,214,0 +170772157920,214,0 +170772157968,214,0 +170772158016,214,0 +170772158064,214,0 +170772158112,214,0 +170772158160,214,0 +170772158208,215,0 +170772158257,215,0 +170772158305,215,0 +170772158353,215,0 +170772158401,215,0 +170772158450,215,0 +170772158498,215,0 +170772158546,215,0 +170772158594,215,0 +170772158642,214,0 +170772158690,213,0 +170772158738,213,0 +170772158786,214,0 +170772158834,214,0 +170772158881,214,0 +170772158929,214,0 +170772158977,214,0 +170772159027,214,0 +170772159074,214,0 +170772159124,215,0 +170772159173,215,0 +170772159221,215,0 +170772159269,215,0 +170772159317,215,0 +170772159365,215,0 +170772159414,215,0 +170772159462,215,0 +170772159510,215,0 +170772159560,213,0 +170772159607,213,0 +170772159655,214,0 +170772159705,214,0 +170772159754,214,0 +170772159804,214,0 +170772159853,214,0 +170772159901,214,0 +170772159949,214,0 +170772159997,215,0 +170772160046,215,0 +170772160096,215,0 +170772160144,215,0 +170772160191,215,0 +170772160239,215,0 +170772160287,215,0 +170772160337,215,0 +170772160385,215,0 +170772160434,214,0 +170772160484,213,0 +170772160532,214,0 +170772160580,214,0 +170772160628,214,0 +170772160676,214,0 +170772160723,214,0 +170772160773,214,0 +170772160821,214,0 +170772160870,214,0 +170772160918,214,0 +170772160968,214,0 +170772161016,215,0 +170772161064,215,0 +170772161112,215,0 +170772161160,215,0 +170772161209,215,0 +170772161259,215,0 +170772161308,214,0 +170772161358,214,0 +170772161407,214,0 +170772161457,214,0 +170772161505,214,0 +170772161554,214,0 +170772161602,214,0 +170772161652,214,0 +170772161699,214,0 +170772161747,214,0 +170772161795,214,0 +170772161845,215,0 +170772161894,215,0 +170772161943,215,0 +170772161993,215,0 +170772162041,215,0 +170772162089,215,0 +170772162137,215,0 +170772162184,215,0 +170772162234,214,0 +170772162282,213,0 +170772162329,214,0 +170772162377,214,0 +170772162427,214,0 +170772162474,214,0 +170772162522,214,0 +170772162570,214,0 +170772162618,215,0 +170772162667,215,0 +170772162717,215,0 +170772162764,215,0 +170772162812,215,0 +170772162860,215,0 +170772162908,215,0 +170772162956,215,0 +170772163004,215,0 +170772163051,215,0 +170772163099,214,0 +170772163149,213,0 +170772163197,214,0 +170772163246,214,0 +170772163294,214,0 +170772163344,214,0 +170772163391,214,0 +170772163439,214,0 +170772163489,214,0 +170772163539,215,0 +170772163586,214,0 +170772163636,215,0 +170772163685,215,0 +170772163735,215,0 +170772163783,215,0 +170772163831,215,0 +170772163878,215,0 +170772163926,215,0 +170772163974,215,0 +170772164022,213,0 +170772164070,213,0 +170772164118,213,0 +170772164166,214,0 +170772164213,214,0 +170772164261,214,0 +170772164309,214,0 +170772164357,214,0 +170772164407,214,0 +170772164454,214,0 +170772164504,214,0 +170772164552,215,0 +170772164600,215,0 +170772164648,215,0 +170772164696,214,0 +170772164745,214,0 +170772164793,215,0 +170772164841,215,0 +170772164889,213,0 +170772164937,213,0 +170772164985,213,0 +170772165034,213,0 +170772165082,213,0 +170772165130,214,0 +170772165178,214,0 +170772165226,214,0 +170772165275,214,0 +170772165323,214,0 +170772165371,214,0 +170772165419,214,0 +170772165467,214,0 +170772165516,214,0 +170772165564,214,0 +170772165614,214,0 +170772165662,215,0 +170772165710,215,0 +170772165759,214,0 +170772165809,213,0 +170772165857,214,0 +170772165904,213,0 +170772165952,214,0 +170772166000,214,0 +170772166048,214,0 +170772166096,214,0 +170772166144,214,0 +170772166192,214,0 +170772166240,214,0 +170772166288,214,0 +170772166336,214,0 +170772166384,215,0 +170772166433,215,0 +170772166483,215,0 +170772166531,215,0 +170772166578,215,0 +170772166626,214,0 +170772166674,214,0 +170772166722,213,0 +170772166770,214,0 +170772166818,214,0 +170772166868,214,0 +170772166916,214,0 +170772166963,214,0 +170772167013,214,0 +170772167061,214,0 +170772167109,214,0 +170772167157,215,0 +170772167206,215,0 +170772167254,215,0 +170772167302,215,0 +170772167350,215,0 +170772167398,215,0 +170772167447,215,0 +170772167495,215,0 +170772167543,214,0 +170772167591,213,0 +170772167641,213,0 +170772167689,213,0 +170772167738,214,0 +170772167788,214,0 +170772167837,214,0 +170772167885,214,0 +170772167935,214,0 +170772167983,214,0 +170772168032,214,0 +170772168080,214,0 +170772168130,215,0 +170772168178,215,0 +170772168227,215,0 +170772168277,214,0 +170772168326,215,0 +170772168374,215,0 +170772168424,214,0 +170772168472,213,0 +170772168519,213,0 +170772168569,213,0 +170772168617,213,0 +170772168666,213,0 +170772168716,213,0 +170772168764,213,0 +170772168813,213,0 +170772168863,214,0 +170772168913,214,0 +170772168961,214,0 +170772169008,214,0 +170772169056,214,0 +170772169106,214,0 +170772169155,214,0 +170772169203,215,0 +170772169253,215,0 +170772169301,215,0 +170772169350,214,0 +170772169400,214,0 +170772169449,214,0 +170772169499,214,0 +170772169548,214,0 +170772169598,214,0 +170772169646,213,0 +170772169695,213,0 +170772169745,213,0 +170772169794,213,0 +170772169842,213,0 +170772169892,213,0 +170772169940,213,0 +170772169989,214,0 +170772170037,214,0 +170772170085,214,0 +170772170133,214,0 +170772170182,215,0 +170772170230,214,0 +170772170278,213,0 +170772170328,213,0 +170772170376,213,0 +170772170424,213,0 +170772170474,213,0 +170772170522,213,0 +170772170571,214,0 +170772170619,214,0 +170772170667,214,0 +170772170715,214,0 +170772170763,214,0 +170772170812,214,0 +170772170860,214,0 +170772170908,214,0 +170772170956,214,0 +170772171006,214,0 +170772171055,215,0 +170772171103,214,0 +170772171151,213,0 +170772171199,213,0 +170772171248,213,0 +170772171296,214,0 +170772171344,214,0 +170772171394,214,0 +170772171443,214,0 +170772171491,214,0 +170772171539,214,0 +170772171587,214,0 +170772171637,214,0 +170772171685,215,0 +170772171733,215,0 +170772171781,215,0 +170772171828,215,0 +170772171878,215,0 +170772171926,215,0 +170772171975,214,0 +170772172025,214,0 +170772172074,214,0 +170772172124,214,0 +170772172174,214,0 +170772172223,214,0 +170772172273,214,0 +170772172320,214,0 +170772172368,214,0 +170772172418,214,0 +170772172467,215,0 +170772172515,215,0 +170772172563,215,0 +170772172613,215,0 +170772172661,215,0 +170772172710,215,0 +170772172758,215,0 +170772172806,215,0 +170772172854,214,0 +170772172902,214,0 +170772172952,214,0 +170772173001,214,0 +170772173051,214,0 +170772173100,214,0 +170772173148,214,0 +170772173198,214,0 +170772173246,215,0 +170772173294,215,0 +170772173343,215,0 +170772173391,215,0 +170772173440,215,0 +170772173488,215,0 +170772173538,215,0 +170772173588,215,0 +170772173635,215,0 +170772173683,215,0 +170772173731,215,0 +170772173779,214,0 +170772173829,214,0 +170772173878,214,0 +170772173926,214,0 +170772173974,214,0 +170772174022,214,0 +170772174070,214,0 +170772174118,214,0 +170772174166,215,0 +170772174215,214,0 +170772174263,215,0 +170772174311,215,0 +170772174359,215,0 +170772174407,215,0 +170772174456,215,0 +170772174504,215,0 +170772174552,215,0 +170772174600,215,0 +170772174648,215,0 +170772174696,214,0 +170772174746,214,0 +170772174794,214,0 +170772174842,214,0 +170772174889,214,0 +170772174937,214,0 +170772174985,214,0 +170772175033,215,0 +170772175083,215,0 +170772175131,215,0 +170772175180,215,0 +170772175228,215,0 +170772175276,215,0 +170772175326,215,0 +170772175374,215,0 +170772175423,215,0 +170772175471,215,0 +170772175521,215,0 +170772175570,214,0 +170772175619,214,0 +170772175667,214,0 +170772175717,214,0 +170772175766,215,0 +170772175814,215,0 +170772175862,215,0 +170772175910,215,0 +170772175958,215,0 +170772176008,215,0 +170772176057,215,0 +170772176105,215,0 +170772176153,215,0 +170772176202,215,0 +170772176250,215,0 +170772176298,215,0 +170772176346,215,0 +170772176396,215,0 +170772176445,214,0 +170772176493,214,0 +170772176541,214,0 +170772176589,214,0 +170772176637,214,0 +170772176685,214,0 +170772176733,214,0 +170772176781,215,0 +170772176830,215,0 +170772176878,215,0 +170772176926,215,0 +170772176976,215,0 +170772177025,215,0 +170772177075,215,0 +170772177123,215,0 +170772177172,215,0 +170772177222,215,0 +170772177271,215,0 +170772177320,215,0 +170772177368,213,0 +170772177416,213,0 +170772177464,213,0 +170772177512,214,0 +170772177560,214,0 +170772177608,214,0 +170772177656,214,0 +170772177704,214,0 +170772177752,215,0 +170772177800,214,0 +170772177848,215,0 +170772177897,215,0 +170772177947,215,0 +170772177995,215,0 +170772178043,215,0 +170772178092,215,0 +170772178142,215,0 +170772178191,215,0 +170772178239,214,0 +170772178287,213,0 +170772178335,213,0 +170772178383,213,0 +170772178433,214,0 +170772178482,214,0 +170772178530,214,0 +170772178578,214,0 +170772178626,214,0 +170772178674,214,0 +170772178723,214,0 +170772178771,214,0 +170772178819,214,0 +170772178867,214,0 +170772178915,214,0 +170772178963,214,0 +170772179011,214,0 +170772179059,215,0 +170772179107,214,0 +170772179155,213,0 +170772179203,213,0 +170772179252,213,0 +170772179300,213,0 +170772179348,213,0 +170772179398,213,0 +170772179447,214,0 +170772179497,214,0 +170772179546,214,0 +170772179594,214,0 +170772179642,214,0 +170772179691,214,0 +170772179741,214,0 +170772179790,214,0 +170772179838,214,0 +170772179886,214,0 +170772179934,215,0 +170772179982,215,0 +170772180030,213,0 +170772180080,213,0 +170772180129,213,0 +170772180179,213,0 +170772180228,214,0 +170772180278,214,0 +170772180326,214,0 +170772180374,214,0 +170772180423,214,0 +170772180471,214,0 +170772180519,215,0 +170772180567,215,0 +170772180615,215,0 +170772180663,215,0 +170772180711,215,0 +170772180758,215,0 +170772180806,215,0 +170772180856,215,0 +170772180904,214,0 +170772180952,214,0 +170772181000,214,0 +170772181048,214,0 +170772181097,214,0 +170772181145,214,0 +170772181193,214,0 +170772181243,214,0 +170772181292,214,0 +170772181340,214,0 +170772181390,215,0 +170772181438,215,0 +170772181486,215,0 +170772181535,215,0 +170772181583,215,0 +170772181631,215,0 +170772181679,215,0 +170772181727,215,0 +170772181774,214,0 +170772181822,213,0 +170772181870,214,0 +170772181920,214,0 +170772181969,214,0 +170772182019,214,0 +170772182066,214,0 +170772182116,214,0 +170772182164,214,0 +170772182213,214,0 +170772182261,214,0 +170772182311,214,0 +170772182359,215,0 +170772182408,215,0 +170772182456,215,0 +170772182504,215,0 +170772182552,215,0 +170772182602,215,0 +170772182650,215,0 +170772182699,214,0 +170772182749,214,0 +170772182798,214,0 +170772182848,214,0 +170772182896,214,0 +170772182943,214,0 +170772182991,214,0 +170772183041,214,0 +170772183089,214,0 +170772183137,214,0 +170772183185,214,0 +170772183233,215,0 +170772183281,215,0 +170772183330,215,0 +170772183378,215,0 +170772183427,215,0 +170772183475,215,0 +170772183523,215,0 +170772183571,214,0 +170772183619,214,0 +170772183667,213,0 +170772183716,214,0 +170772183766,214,0 +170772183814,213,0 +170772183862,214,0 +170772183909,214,0 +170772183957,214,0 +170772184005,214,0 +170772184053,215,0 +170772184101,214,0 +170772184149,215,0 +170772184198,215,0 +170772184248,215,0 +170772184296,215,0 +170772184345,215,0 +170772184395,215,0 +170772184443,214,0 +170772184491,213,0 +170772184538,213,0 +170772184586,214,0 +170772184634,213,0 +170772184682,214,0 +170772184730,214,0 +170772184778,214,0 +170772184828,214,0 +170772184875,214,0 +170772184923,214,0 +170772184971,214,0 +170772185021,215,0 +170772185069,214,0 +170772185117,215,0 +170772185165,215,0 +170772185214,215,0 +170772185262,215,0 +170772185310,215,0 +170772185358,213,0 +170772185406,213,0 +170772185454,213,0 +170772185503,213,0 +170772185553,213,0 +170772185601,213,0 +170772185650,213,0 +170772185698,213,0 +170772185748,214,0 +170772185797,214,0 +170772185845,214,0 +170772185895,214,0 +170772185944,214,0 +170772185992,214,0 +170772186041,214,0 +170772186089,215,0 +170772186137,214,0 +170772186185,215,0 +170772186233,214,0 +170772186281,213,0 +170772186329,213,0 +170772186378,213,0 +170772186426,213,0 +170772186474,213,0 +170772186524,214,0 +170772186573,214,0 +170772186621,214,0 +170772186669,214,0 +170772186719,214,0 +170772186768,214,0 +170772186817,214,0 +170772186865,214,0 +170772186913,214,0 +170772186961,215,0 +170772187009,215,0 +170772187057,215,0 +170772187107,214,0 +170772187156,213,0 +170772187204,214,0 +170772187252,213,0 +170772187300,214,0 +170772187348,214,0 +170772187397,214,0 +170772187445,214,0 +170772187493,214,0 +170772187543,214,0 +170772187591,214,0 +170772187639,214,0 +170772187688,214,0 +170772187738,214,0 +170772187786,215,0 +170772187834,215,0 +170772187881,215,0 +170772187929,215,0 +170772187979,215,0 +170772188027,213,0 +170772188075,213,0 +170772188122,213,0 +170772188170,214,0 +170772188218,214,0 +170772188266,214,0 +170772188315,214,0 +170772188363,214,0 +170772188411,214,0 +170772188459,214,0 +170772188507,215,0 +170772188555,215,0 +170772188602,215,0 +170772188650,215,0 +170772188698,215,0 +170772188746,215,0 +170772188794,215,0 +170772188842,215,0 +170772188891,214,0 +170772188941,214,0 +170772188989,214,0 +170772189037,214,0 +170772189084,214,0 +170772189132,214,0 +170772189180,214,0 +170772189228,214,0 +170772189276,215,0 +170772189324,214,0 +170772189372,215,0 +170772189421,215,0 +170772189469,215,0 +170772189517,215,0 +170772189565,215,0 +170772189613,215,0 +170772189661,215,0 +170772189709,215,0 +170772189757,214,0 +170772189805,214,0 +170772189853,214,0 +170772189900,214,0 +170772189948,214,0 +170772189996,214,0 +170772190044,214,0 +170772190092,215,0 +170772190140,214,0 +170772190188,215,0 +170772190236,214,0 +170772190285,215,0 +170772190333,215,0 +170772190381,215,0 +170772190430,215,0 +170772190478,215,0 +170772190526,215,0 +170772190576,215,0 +170772190624,215,0 +170772190673,214,0 +170772190721,214,0 +170772190769,214,0 +170772190818,214,0 +170772190868,214,0 +170772190918,214,0 +170772190965,214,0 +170772191013,214,0 +170772191061,215,0 +170772191109,215,0 +170772191157,215,0 +170772191205,215,0 +170772191253,215,0 +170772191301,215,0 +170772191350,215,0 +170772191399,215,0 +170772191449,215,0 +170772191498,215,0 +170772191546,214,0 +170772191594,213,0 +170772191642,214,0 +170772191690,214,0 +170772191737,214,0 +170772191785,214,0 +170772191833,214,0 +170772191881,214,0 +170772191929,214,0 +170772191977,214,0 +170772192024,214,0 +170772192072,215,0 +170772192120,215,0 +170772192168,215,0 +170772192217,215,0 +170772192267,215,0 +170772192316,215,0 +170772192364,215,0 +170772192412,215,0 +170772192462,214,0 +170772192509,214,0 +170772192557,214,0 +170772192605,214,0 +170772192655,214,0 +170772192704,214,0 +170772192752,214,0 +170772192800,214,0 +170772192848,214,0 +170772192897,214,0 +170772192945,215,0 +170772192995,215,0 +170772193043,215,0 +170772193090,215,0 +170772193138,215,0 +170772193186,215,0 +170772193234,215,0 +170772193282,215,0 +170772193331,214,0 +170772193379,214,0 +170772193427,214,0 +170772193477,214,0 +170772193526,214,0 +170772193576,214,0 +170772193624,214,0 +170772193672,214,0 +170772193721,214,0 +170772193770,215,0 +170772193818,215,0 +170772193866,215,0 +170772193914,215,0 +170772193964,215,0 +170772194013,215,0 +170772194061,215,0 +170772194109,215,0 +170772194157,215,0 +170772194205,214,0 +170772194253,213,0 +170772194301,213,0 +170772194348,214,0 +170772194396,214,0 +170772194444,214,0 +170772194494,214,0 +170772194542,214,0 +170772194591,214,0 +170772194639,215,0 +170772194687,214,0 +170772194735,215,0 +170772194783,215,0 +170772194832,215,0 +170772194882,215,0 +170772194931,215,0 +170772194979,215,0 +170772195027,215,0 +170772195075,214,0 +170772195124,213,0 +170772195174,213,0 +170772195222,213,0 +170772195271,213,0 +170772195319,213,0 +170772195369,214,0 +170772195417,214,0 +170772195464,214,0 +170772195512,214,0 +170772195560,214,0 +170772195610,214,0 +170772195657,214,0 +170772195705,214,0 +170772195753,215,0 +170772195801,214,0 +170772195849,215,0 +170772195897,215,0 +170772195946,215,0 +170772195996,214,0 +170772196044,214,0 +170772196092,213,0 +170772196141,213,0 +170772196189,214,0 +170772196238,214,0 +170772196288,214,0 +170772196337,214,0 +170772196387,214,0 +170772196435,214,0 +170772196482,214,0 +170772196532,214,0 +170772196580,215,0 +170772196628,215,0 +170772196677,215,0 +170772196725,215,0 +170772196773,215,0 +170772196822,215,0 +170772196870,214,0 +170772196918,213,0 +170772196966,213,0 +170772197014,213,0 +170772197064,213,0 +170772197112,214,0 +170772197159,213,0 +170772197209,214,0 +170772197258,214,0 +170772197306,214,0 +170772197354,214,0 +170772197404,214,0 +170772197451,214,0 +170772197499,215,0 +170772197549,215,0 +170772197597,215,0 +170772197646,214,0 +170772197696,215,0 +170772197745,214,0 +170772197793,213,0 +170772197841,213,0 +170772197890,213,0 +170772197940,213,0 +170772197988,213,0 +170772198036,213,0 +170772198085,213,0 +170772198133,213,0 +170772198181,213,0 +170772198231,214,0 +170772198279,214,0 +170772198328,214,0 +170772198378,214,0 +170772198426,214,0 +170772198475,214,0 +170772198523,215,0 +170772198571,215,0 +170772198619,214,0 +170772198667,213,0 +170772198715,213,0 +170772198764,213,0 +170772198814,213,0 +170772198863,213,0 +170772198913,214,0 +170772198961,214,0 +170772199009,214,0 +170772199057,214,0 +170772199105,214,0 +170772199154,214,0 +170772199202,214,0 +170772199250,214,0 +170772199298,215,0 +170772199346,215,0 +170772199394,215,0 +170772199442,215,0 +170772199491,215,0 +170772199541,214,0 +170772199588,213,0 +170772199636,213,0 +170772199684,213,0 +170772199732,214,0 +170772199780,214,0 +170772199830,214,0 +170772199879,214,0 +170772199929,214,0 +170772199977,214,0 +170772200025,214,0 +170772200073,215,0 +170772200121,215,0 +170772200168,214,0 +170772200216,215,0 +170772200264,215,0 +170772200312,215,0 +170772200362,215,0 +170772200411,214,0 +170772200459,213,0 +170772200507,214,0 +170772200557,214,0 +170772200606,214,0 +170772200654,214,0 +170772200702,214,0 +170772200752,214,0 +170772200800,214,0 +170772200848,214,0 +170772200896,214,0 +170772200944,214,0 +170772200993,215,0 +170772201041,215,0 +170772201090,215,0 +170772201140,215,0 +170772201188,215,0 +170772201238,215,0 +170772201286,215,0 +170772201334,214,0 +170772201383,214,0 +170772201433,214,0 +170772201481,214,0 +170772201528,214,0 +170772201576,214,0 +170772201624,214,0 +170772201672,214,0 +170772201720,214,0 +170772201770,214,0 +170772201819,215,0 +170772201867,215,0 +170772201917,215,0 +170772201965,215,0 +170772202013,215,0 +170772202061,215,0 +170772202110,215,0 +170772202158,215,0 +170772202208,214,0 +170772202257,213,0 +170772202305,214,0 +170772202353,214,0 +170772202401,214,0 +170772202449,214,0 +170772202497,214,0 +170772202546,214,0 +170772202594,214,0 +170772202644,214,0 +170772202692,214,0 +170772202740,214,0 +170772202788,215,0 +170772202837,215,0 +170772202885,215,0 +170772202935,215,0 +170772202984,215,0 +170772203034,215,0 +170772203083,214,0 +170772203131,213,0 +170772203179,214,0 +170772203227,214,0 +170772203277,214,0 +170772203325,214,0 +170772203373,214,0 +170772203422,214,0 +170772203470,214,0 +170772203520,214,0 +170772203568,214,0 +170772203616,215,0 +170772203663,215,0 +170772203713,215,0 +170772203762,215,0 +170772203810,215,0 +170772203860,215,0 +170772203908,215,0 +170772203956,214,0 +170772204004,213,0 +170772204052,213,0 +170772204100,213,0 +170772204149,214,0 +170772204197,214,0 +170772204247,214,0 +170772204296,214,0 +170772204344,214,0 +170772204392,214,0 +170772204440,214,0 +170772204489,214,0 +170772204538,214,0 +170772204586,215,0 +170772204633,215,0 +170772204683,215,0 +170772204731,215,0 +170772204780,215,0 +170772204828,214,0 +170772204878,213,0 +170772204926,214,0 +170772204974,213,0 +170772205023,213,0 +170772205071,214,0 +170772205119,214,0 +170772205167,214,0 +170772205215,214,0 +170772205264,214,0 +170772205314,214,0 +170772205363,214,0 +170772205411,215,0 +170772205459,215,0 +170772205507,215,0 +170772205557,215,0 +170772205605,215,0 +170772205654,215,0 +170772205702,215,0 +170772205752,214,0 +170772205800,213,0 +170772205849,213,0 +170772205897,214,0 +170772205946,214,0 +170772205994,214,0 +170772206044,214,0 +170772206092,214,0 +170772206140,214,0 +170772206188,214,0 +170772206236,214,0 +170772206284,215,0 +170772206333,215,0 +170772206383,215,0 +170772206432,215,0 +170772206482,215,0 +170772206531,215,0 +170772206581,215,0 +170772206630,214,0 +170772206680,214,0 +170772206729,214,0 +170772206779,214,0 +170772206828,214,0 +170772206878,214,0 +170772206926,214,0 +170772206974,214,0 +170772207022,215,0 +170772207071,215,0 +170772207119,215,0 +170772207167,215,0 +170772207217,215,0 +170772207265,215,0 +170772207314,215,0 +170772207362,215,0 +170772207412,215,0 +170772207461,215,0 +170772207509,214,0 +170772207559,214,0 +170772207606,214,0 +170772207654,214,0 +170772207702,214,0 +170772207750,214,0 +170772207798,215,0 +170772207848,215,0 +170772207897,215,0 +170772207947,215,0 +170772207995,215,0 +170772208044,215,0 +170772208094,215,0 +170772208142,215,0 +170772208190,215,0 +170772208238,215,0 +170772208286,215,0 +170772208335,215,0 +170772208383,214,0 +170772208431,214,0 +170772208479,214,0 +170772208528,214,0 +170772208576,214,0 +170772208626,214,0 +170772208674,214,0 +170772208723,214,0 +170772208773,214,0 +170772208821,215,0 +170772208870,215,0 +170772208920,215,0 +170772208968,215,0 +170772209017,215,0 +170772209065,215,0 +170772209113,215,0 +170772209161,215,0 +170772209210,214,0 +170772209258,215,0 +170772209306,213,0 +170772209354,214,0 +170772209402,214,0 +170772209450,214,0 +170772209500,214,0 +170772209548,214,0 +170772209597,214,0 +170772209645,214,0 +170772209693,214,0 +170772209742,214,0 +170772209790,215,0 +170772209838,215,0 +170772209886,215,0 +170772209934,215,0 +170772209982,215,0 +170772210030,215,0 +170772210078,215,0 +170772210126,215,0 +170772210174,213,0 +170772210223,213,0 +170772210271,213,0 +170772210319,213,0 +170772210367,213,0 +170772210415,213,0 +170772210463,214,0 +170772210511,214,0 +170772210560,214,0 +170772210610,214,0 +170772210658,214,0 +170772210706,214,0 +170772210754,214,0 +170772210803,215,0 +170772210853,215,0 +170772210901,215,0 +170772210950,215,0 +170772210998,215,0 +170772211046,214,0 +170772211095,213,0 +170772211145,213,0 +170772211192,213,0 +170772211240,213,0 +170772211290,213,0 +170772211338,213,0 +170772211387,214,0 +170772211437,214,0 +170772211486,214,0 +170772211534,214,0 +170772211582,214,0 +170772211630,214,0 +170772211678,215,0 +170772211728,215,0 +170772211776,215,0 +170772211824,215,0 +170772211872,215,0 +170772211921,215,0 +170772211969,213,0 +170772212017,213,0 +170772212066,213,0 +170772212116,213,0 +170772212164,213,0 +170772212212,213,0 +170772212261,214,0 +170772212309,214,0 +170772212359,214,0 +170772212406,214,0 +170772212454,214,0 +170772212502,214,0 +170772212552,214,0 +170772212600,214,0 +170772212648,214,0 +170772212697,214,0 +170772212745,215,0 +170772212793,215,0 +170772212841,214,0 +170772212890,213,0 +170772212938,213,0 +170772212988,213,0 +170772213036,213,0 +170772213085,213,0 +170772213133,214,0 +170772213181,214,0 +170772213229,214,0 +170772213277,214,0 +170772213325,214,0 +170772213374,214,0 +170772213422,214,0 +170772213472,214,0 +170772213520,214,0 +170772213568,214,0 +170772213616,215,0 +170772213664,214,0 +170772213712,215,0 +170772213760,215,0 +170772213808,215,0 +170772213856,215,0 +170772213904,215,0 +170772213952,215,0 +170772214001,215,0 +170772214049,215,0 +170772214099,215,0 +170772214148,214,0 +170772214198,213,0 +170772214246,214,0 +170772214295,214,0 +170772214343,214,0 +170772214391,214,0 +170772214439,214,0 +170772214487,214,0 +170772214537,214,0 +170772214585,214,0 +170772214633,214,0 +170772214680,214,0 +170772214728,214,0 +170772214776,214,0 +170772214826,215,0 +170772214874,215,0 +170772214922,215,0 +170772214970,215,0 +170772215018,215,0 +170772215067,214,0 +170772215115,214,0 +170772215163,214,0 +170772215211,214,0 +170772215260,214,0 +170772215308,214,0 +170772215356,214,0 +170772215404,214,0 +170772215453,214,0 +170772215501,215,0 +170772215551,215,0 +170772215600,215,0 +170772215650,215,0 +170772215698,214,0 +170772215747,215,0 +170772215795,215,0 +170772215843,215,0 +170772215892,215,0 +170772215940,214,0 +170772215988,214,0 +170772216036,214,0 +170772216084,214,0 +170772216132,214,0 +170772216180,214,0 +170772216228,214,0 +170772216278,215,0 +170772216327,214,0 +170772216375,215,0 +170772216423,215,0 +170772216471,215,0 +170772216519,215,0 +170772216567,215,0 +170772216615,215,0 +170772216662,215,0 +170772216710,215,0 +170772216760,215,0 +170772216807,214,0 +170772216857,214,0 +170772216905,214,0 +170772216954,214,0 +170772217002,214,0 +170772217052,214,0 +170772217101,214,0 +170772217151,214,0 +170772217198,214,0 +170772217248,214,0 +170772217297,215,0 +170772217345,215,0 +170772217395,215,0 +170772217443,215,0 +170772217491,215,0 +170772217539,215,0 +170772217587,215,0 +170772217635,215,0 +170772217682,214,0 +170772217732,213,0 +170772217781,213,0 +170772217829,214,0 +170772217877,214,0 +170772217925,214,0 +170772217975,214,0 +170772218023,214,0 +170772218071,214,0 +170772218120,214,0 +170772218168,214,0 +170772218216,215,0 +170772218264,215,0 +170772218312,215,0 +170772218360,215,0 +170772218409,215,0 +170772218457,215,0 +170772218507,215,0 +170772218556,214,0 +170772218604,214,0 +170772218652,213,0 +170772218700,213,0 +170772218748,214,0 +170772218796,214,0 +170772218845,214,0 +170772218893,214,0 +170772218941,214,0 +170772218990,214,0 +170772219038,214,0 +170772219086,214,0 +170772219133,214,0 +170772219181,215,0 +170772219229,215,0 +170772219277,215,0 +170772219325,215,0 +170772219373,215,0 +170772219420,214,0 +170772219468,213,0 +170772219516,213,0 +170772219564,213,0 +170772219612,214,0 +170772219661,214,0 +170772219709,214,0 +170772219758,214,0 +170772219806,214,0 +170772219854,214,0 +170772219902,214,0 +170772219950,214,0 +170772219999,214,0 +170772220047,214,0 +170772220096,215,0 +170772220144,214,0 +170772220192,215,0 +170772220240,215,0 +170772220289,215,0 +170772220337,214,0 +170772220385,213,0 +170772220433,213,0 +170772220480,214,0 +170772220528,214,0 +170772220576,214,0 +170772220624,214,0 +170772220672,214,0 +170772220720,214,0 +170772220769,214,0 +170772220817,214,0 +170772220866,214,0 +170772220914,215,0 +170772220962,215,0 +170772221010,215,0 +170772221058,215,0 +170772221106,215,0 +170772221153,215,0 +170772221201,214,0 +170772221249,213,0 +170772221297,213,0 +170772221346,213,0 +170772221394,213,0 +170772221442,214,0 +170772221491,214,0 +170772221539,214,0 +170772221587,214,0 +170772221637,214,0 +170772221686,214,0 +170772221734,214,0 +170772221783,214,0 +170772221831,214,0 +170772221879,215,0 +170772221927,215,0 +170772221975,215,0 +170772222023,215,0 +170772222070,215,0 +170772222118,214,0 +170772222166,213,0 +170772222214,214,0 +170772222263,214,0 +170772222313,214,0 +170772222362,214,0 +170772222410,214,0 +170772222458,214,0 +170772222507,214,0 +170772222555,214,0 +170772222603,215,0 +170772222651,215,0 +170772222699,215,0 +170772222746,215,0 +170772222794,215,0 +170772222842,215,0 +170772222892,215,0 +170772222941,215,0 +170772222989,214,0 +170772223037,214,0 +170772223087,213,0 +170772223134,214,0 +170772223184,214,0 +170772223232,214,0 +170772223280,214,0 +170772223328,214,0 +170772223376,214,0 +170772223424,215,0 +170772223471,214,0 +170772223519,214,0 +170772223569,214,0 +170772223617,215,0 +170772223665,215,0 +170772223713,215,0 +170772223761,215,0 +170772223809,215,0 +170772223856,214,0 +170772223904,213,0 +170772223954,213,0 +170772224002,214,0 +170772224050,214,0 +170772224097,214,0 +170772224147,214,0 +170772224197,214,0 +170772224244,214,0 +170772224294,214,0 +170772224342,214,0 +170772224391,214,0 +170772224439,214,0 +170772224489,215,0 +170772224537,215,0 +170772224585,215,0 +170772224633,215,0 +170772224682,215,0 +170772224730,215,0 +170772224778,214,0 +170772224826,213,0 +170772224874,213,0 +170772224922,213,0 +170772224970,213,0 +170772225019,214,0 +170772225067,214,0 +170772225115,214,0 +170772225163,214,0 +170772225211,214,0 +170772225259,214,0 +170772225308,214,0 +170772225358,214,0 +170772225407,215,0 +170772225455,215,0 +170772225503,215,0 +170772225551,214,0 +170772225599,215,0 +170772225647,214,0 +170772225697,213,0 +170772225744,213,0 +170772225792,213,0 +170772225842,214,0 +170772225891,214,0 +170772225939,214,0 +170772225989,214,0 +170772226037,214,0 +170772226085,214,0 +170772226133,214,0 +170772226181,214,0 +170772226230,215,0 +170772226280,215,0 +170772226329,215,0 +170772226377,215,0 +170772226425,215,0 +170772226475,215,0 +170772226524,214,0 +170772226572,213,0 +170772226620,213,0 +170772226669,213,0 +170772226719,214,0 +170772226768,214,0 +170772226818,214,0 +170772226867,214,0 +170772226915,214,0 +170772226963,214,0 +170772227011,214,0 +170772227059,215,0 +170772227107,215,0 +170772227155,215,0 +170772227203,215,0 +170772227250,215,0 +170772227300,215,0 +170772227348,215,0 +170772227396,215,0 +170772227444,214,0 +170772227491,213,0 +170772227541,213,0 +170772227589,213,0 +170772227637,214,0 +170772227685,214,0 +170772227733,214,0 +170772227782,214,0 +170772227830,214,0 +170772227879,214,0 +170772227927,214,0 +170772227975,214,0 +170772228023,214,0 +170772228073,215,0 +170772228122,215,0 +170772228172,215,0 +170772228220,215,0 +170772228269,215,0 +170772228319,214,0 +170772228367,213,0 +170772228415,214,0 +170772228463,214,0 +170772228512,214,0 +170772228560,214,0 +170772228608,214,0 +170772228656,214,0 +170772228704,214,0 +170772228752,214,0 +170772228801,214,0 +170772228849,214,0 +170772228899,215,0 +170772228948,215,0 +170772228996,215,0 +170772229044,215,0 +170772229092,215,0 +170772229141,215,0 +170772229189,214,0 +170772229237,213,0 +170772229287,213,0 +170772229335,214,0 +170772229384,214,0 +170772229433,214,0 +170772229481,214,0 +170772229529,214,0 +170772229579,214,0 +170772229627,214,0 +170772229675,215,0 +170772229723,215,0 +170772229770,214,0 +170772229820,215,0 +170772229868,215,0 +170772229916,215,0 +170772229965,215,0 +170772230015,215,0 +170772230065,214,0 +170772230112,214,0 +170772230162,214,0 +170772230210,214,0 +170772230259,214,0 +170772230307,214,0 +170772230355,214,0 +170772230403,214,0 +170772230451,215,0 +170772230501,214,0 +170772230549,214,0 +170772230597,215,0 +170772230646,215,0 +170772230696,215,0 +170772230743,215,0 +170772230793,215,0 +170772230842,215,0 +170772230890,215,0 +170772230940,215,0 +170772230988,214,0 +170772231036,214,0 +170772231083,214,0 +170772231131,214,0 +170772231181,214,0 +170772231229,214,0 +170772231277,214,0 +170772231325,215,0 +170772231373,215,0 +170772231422,215,0 +170772231470,215,0 +170772231520,215,0 +170772231567,215,0 +170772231615,215,0 +170772231665,215,0 +170772231715,215,0 +170772231762,215,0 +170772231810,215,0 +170772231858,214,0 +170772231908,214,0 +170772231956,214,0 +170772232006,214,0 +170772232053,214,0 +170772232103,214,0 +170772232152,214,0 +170772232202,215,0 +170772232251,215,0 +170772232301,215,0 +170772232351,215,0 +170772232398,215,0 +170772232446,215,0 +170772232496,215,0 +170772232545,215,0 +170772232593,215,0 +170772232641,215,0 +170772232689,215,0 +170772232737,214,0 +170772232785,213,0 +170772232835,214,0 +170772232882,213,0 +170772232932,214,0 +170772232980,214,0 +170772233028,214,0 +170772233076,214,0 +170772233124,214,0 +170772233173,214,0 +170772233223,214,0 +170772233272,215,0 +170772233320,214,0 +170772233370,215,0 +170772233417,214,0 +170772233467,214,0 +170772233516,214,0 +170772233566,215,0 +170772233614,214,0 +170772233662,213,0 +170772233710,213,0 +170772233759,213,0 +170772233807,213,0 +170772233855,213,0 +170772233903,213,0 +170772233953,213,0 +170772234002,213,0 +170772234052,214,0 +170772234100,214,0 +170772234149,214,0 +170772234199,214,0 +170772234248,214,0 +170772234296,214,0 +170772234346,214,0 +170772234395,214,0 +170772234445,215,0 +170772234493,215,0 +170772234542,213,0 +170772234590,213,0 +170772234640,213,0 +170772234688,213,0 +170772234737,213,0 +170772234785,214,0 +170772234835,214,0 +170772234884,214,0 +170772234932,214,0 +170772234980,214,0 +170772235029,214,0 +170772235077,214,0 +170772235125,215,0 +170772235175,215,0 +170772235223,215,0 +170772235272,215,0 +170772235320,215,0 +170772235370,214,0 +170772235418,214,0 +170772235467,213,0 +170772235515,213,0 +170772235565,214,0 +170772235614,213,0 +170772235662,214,0 +170772235712,214,0 +170772235759,214,0 +170772235807,214,0 +170772235857,214,0 +170772235905,214,0 +170772235953,214,0 +170772236002,215,0 +170772236050,215,0 +170772236098,215,0 +170772236148,215,0 +170772236195,215,0 +170772236245,215,0 +170772236293,213,0 +170772236341,213,0 +170772236390,213,0 +170772236440,213,0 +170772236489,214,0 +170772236537,214,0 +170772236587,214,0 +170772236635,214,0 +170772236684,214,0 +170772236732,214,0 +170772236780,214,0 +170772236828,214,0 +170772236876,214,0 +170772236924,215,0 +170772236972,214,0 +170772237020,214,0 +170772237069,215,0 +170772237119,215,0 +170772237168,214,0 +170772237216,213,0 +170772237265,213,0 +170772237315,213,0 +170772237364,213,0 +170772237412,213,0 +170772237460,214,0 +170772237510,214,0 +170772237559,214,0 +170772237607,214,0 +170772237657,214,0 +170772237706,214,0 +170772237754,214,0 +170772237802,215,0 +170772237852,215,0 +170772237901,215,0 +170772237949,215,0 +170772237999,215,0 +170772238046,214,0 +170772238096,213,0 +170772238145,213,0 +170772238195,213,0 +170772238243,213,0 +170772238292,214,0 +170772238342,214,0 +170772238391,214,0 +170772238441,214,0 +170772238490,214,0 +170772238538,214,0 +170772238586,214,0 +170772238634,215,0 +170772238684,215,0 +170772238732,215,0 +170772238780,215,0 +170772238828,215,0 +170772238875,214,0 +170772238925,214,0 +170772238973,213,0 +170772239022,213,0 +170772239070,214,0 +170772239118,214,0 +170772239168,214,0 +170772239216,214,0 +170772239264,214,0 +170772239313,214,0 +170772239361,214,0 +170772239410,215,0 +170772239460,215,0 +170772239508,215,0 +170772239556,215,0 +170772239605,215,0 +170772239653,215,0 +170772239701,215,0 +170772239751,215,0 +170772239799,214,0 +170772239846,213,0 +170772239896,213,0 +170772239945,214,0 +170772239995,213,0 +170772240043,214,0 +170772240092,214,0 +170772240140,214,0 +170772240188,214,0 +170772240236,214,0 +170772240284,214,0 +170772240332,214,0 +170772240380,215,0 +170772240428,215,0 +170772240476,215,0 +170772240523,215,0 +170772240571,215,0 +170772240619,215,0 +170772240667,215,0 +170772240717,213,0 +170772240766,213,0 +170772240814,214,0 +170772240864,214,0 +170772240913,214,0 +170772240963,214,0 +170772241011,214,0 +170772241059,214,0 +170772241107,214,0 +170772241156,214,0 +170772241206,215,0 +170772241254,215,0 +170772241302,215,0 +170772241351,215,0 +170772241399,215,0 +170772241449,215,0 +170772241497,215,0 +170772241545,215,0 +170772241593,214,0 +170772241640,214,0 +170772241688,214,0 +170772241736,214,0 +170772241786,214,0 +170772241835,214,0 +170772241885,214,0 +170772241933,214,0 +170772241981,214,0 +170772242029,214,0 +170772242078,214,0 +170772242128,214,0 +170772242176,215,0 +170772242225,215,0 +170772242275,215,0 +170772242323,215,0 +170772242370,215,0 +170772242420,215,0 +170772242469,214,0 +170772242519,214,0 +170772242567,214,0 +170772242615,214,0 +170772242664,214,0 +170772242714,215,0 +170772242763,215,0 +170772242813,215,0 +170772242862,215,0 +170772242912,215,0 +170772242960,215,0 +170772243009,215,0 +170772243057,215,0 +170772243105,215,0 +170772243155,215,0 +170772243202,215,0 +170772243250,215,0 +170772243298,215,0 +170772243346,214,0 +170772243394,214,0 +170772243442,214,0 +170772243490,214,0 +170772243538,214,0 +170772243586,214,0 +170772243635,214,0 +170772243683,215,0 +170772243733,215,0 +170772243782,215,0 +170772243830,215,0 +170772243880,215,0 +170772243929,215,0 +170772243978,215,0 +170772244028,215,0 +170772244077,215,0 +170772244127,215,0 +170772244175,215,0 +170772244223,214,0 +170772244271,214,0 +170772244318,214,0 +170772244366,214,0 +170772244416,214,0 +170772244465,214,0 +170772244513,214,0 +170772244561,215,0 +170772244611,215,0 +170772244659,215,0 +170772244708,215,0 +170772244758,215,0 +170772244806,215,0 +170772244854,215,0 +170772244903,215,0 +170772244953,215,0 +170772245001,215,0 +170772245048,215,0 +170772245098,214,0 +170772245146,214,0 +170772245194,214,0 +170772245243,214,0 +170772245293,214,0 +170772245341,214,0 +170772245389,214,0 +170772245438,214,0 +170772245486,214,0 +170772245536,215,0 +170772245584,215,0 +170772245632,215,0 +170772245679,215,0 +170772245729,215,0 +170772245777,215,0 +170772245825,215,0 +170772245874,215,0 +170772245922,215,0 +170772245972,214,0 +170772246020,213,0 +170772246068,214,0 +170772246116,214,0 +170772246165,214,0 +170772246213,214,0 +170772246261,214,0 +170772246310,214,0 +170772246360,214,0 +170772246408,214,0 +170772246457,214,0 +170772246505,215,0 +170772246553,215,0 +170772246601,215,0 +170772246649,215,0 +170772246698,215,0 +170772246748,215,0 +170772246796,215,0 +170772246844,215,0 +170772246893,213,0 +170772246941,213,0 +170772246989,213,0 +170772247037,214,0 +170772247085,214,0 +170772247134,214,0 +170772247184,214,0 +170772247232,214,0 +170772247280,214,0 +170772247328,214,0 +170772247377,214,0 +170772247427,214,0 +170772247475,215,0 +170772247524,215,0 +170772247574,215,0 +170772247623,215,0 +170772247673,215,0 +170772247721,214,0 +170772247769,213,0 +170772247816,213,0 +170772247864,214,0 +170772247914,214,0 +170772247963,214,0 +170772248011,214,0 +170772248059,214,0 +170772248109,214,0 +170772248157,214,0 +170772248205,214,0 +170772248252,215,0 +170772248300,215,0 +170772248350,215,0 +170772248399,215,0 +170772248449,215,0 +170772248498,215,0 +170772248548,215,0 +170772248596,215,0 +170772248644,213,0 +170772248692,213,0 +170772248741,213,0 +170772248789,214,0 +170772248837,214,0 +170772248885,214,0 +170772248933,214,0 +170772248981,214,0 +170772249029,214,0 +170772249077,214,0 +170772249125,215,0 +170772249174,215,0 +170772249222,215,0 +170772249271,215,0 +170772249319,215,0 +170772249367,215,0 +170772249415,215,0 +170772249463,215,0 +170772249512,214,0 +170772249560,213,0 +170772249608,213,0 +170772249656,213,0 +170772249704,213,0 +170772249752,214,0 +170772249800,214,0 +170772249848,214,0 +170772249897,214,0 +170772249947,214,0 +170772249995,214,0 +170772250043,215,0 +170772250092,215,0 +170772250140,215,0 +170772250190,215,0 +170772250237,215,0 +170772250285,215,0 +170772250333,215,0 +170772250381,214,0 +170772250429,213,0 +170772250477,213,0 +170772250526,213,0 +170772250574,214,0 +170772250622,214,0 +170772250670,214,0 +170772250718,214,0 +170772250767,214,0 +170772250817,214,0 +170772250865,214,0 +170772250913,214,0 +170772250962,215,0 +170772251010,215,0 +170772251058,215,0 +170772251106,215,0 +170772251154,215,0 +170772251202,215,0 +170772251250,214,0 +170772251298,213,0 +170772251347,213,0 +170772251397,213,0 +170772251446,213,0 +170772251495,214,0 +170772251543,214,0 +170772251593,214,0 +170772251641,214,0 +170772251689,214,0 +170772251737,214,0 +170772251785,214,0 +170772251832,214,0 +170772251880,215,0 +170772251928,215,0 +170772251976,215,0 +170772252024,215,0 +170772252074,215,0 +170772252123,215,0 +170772252173,213,0 +170772252221,213,0 +170772252268,213,0 +170772252316,214,0 +170772252364,214,0 +170772252412,213,0 +170772252461,214,0 +170772252509,214,0 +170772252558,214,0 +170772252606,214,0 +170772252654,214,0 +170772252702,214,0 +170772252752,214,0 +170772252801,215,0 +170772252849,214,0 +170772252897,215,0 +170772252945,214,0 +170772252992,215,0 +170772253040,214,0 +170772253088,213,0 +170772253137,213,0 +170772253185,213,0 +170772253233,213,0 +170772253281,214,0 +170772253329,214,0 +170772253377,213,0 +170772253425,214,0 +170772253472,214,0 +170772253520,214,0 +170772253568,214,0 +170772253616,214,0 +170772253664,214,0 +170772253714,214,0 +170772253762,214,0 +170772253811,214,0 +170772253859,215,0 +170772253909,214,0 +170772253958,213,0 +170772254008,213,0 +170772254056,213,0 +170772254105,214,0 +170772254153,214,0 +170772254201,213,0 +170772254249,214,0 +170772254297,214,0 +170772254347,214,0 +170772254396,214,0 +170772254445,214,0 +170772254493,214,0 +170772254543,215,0 +170772254592,215,0 +170772254642,214,0 +170772254691,215,0 +170772254739,215,0 +170772254787,214,0 +170772254835,213,0 +170772254884,213,0 +170772254934,213,0 +170772254982,213,0 +170772255031,213,0 +170772255081,213,0 +170772255129,213,0 +170772255177,214,0 +170772255225,214,0 +170772255274,214,0 +170772255324,214,0 +170772255373,214,0 +170772255421,214,0 +170772255469,214,0 +170772255518,215,0 +170772255566,215,0 +170772255614,215,0 +170772255661,214,0 +170772255709,213,0 +170772255759,214,0 +170772255807,213,0 +170772255854,214,0 +170772255902,214,0 +170772255952,214,0 +170772256001,214,0 +170772256049,214,0 +170772256097,215,0 +170772256145,215,0 +170772256195,215,0 +170772256244,215,0 +170772256293,215,0 +170772256343,215,0 +170772256391,215,0 +170772256439,215,0 +170772256488,215,0 +170772256538,215,0 +170772256586,214,0 +170772256634,214,0 +170772256682,214,0 +170772256730,214,0 +170772256778,214,0 +170772256826,214,0 +170772256874,215,0 +170772256923,215,0 +170772256973,215,0 +170772257022,215,0 +170772257072,215,0 +170772257120,215,0 +170772257169,215,0 +170772257217,215,0 +170772257265,215,0 +170772257315,215,0 +170772257363,215,0 +170772257412,215,0 +170772257462,214,0 +170772257510,214,0 +170772257558,214,0 +170772257605,214,0 +170772257653,214,0 +170772257701,215,0 +170772257751,214,0 +170772257798,214,0 +170772257846,215,0 +170772257894,215,0 +170772257944,215,0 +170772257991,215,0 +170772258039,215,0 +170772258087,215,0 +170772258135,215,0 +170772258183,215,0 +170772258231,215,0 +170772258278,215,0 +170772258326,214,0 +170772258374,214,0 +170772258422,214,0 +170772258470,214,0 +170772258518,214,0 +170772258566,214,0 +170772258614,215,0 +170772258661,215,0 +170772258709,215,0 +170772258757,215,0 +170772258805,215,0 +170772258853,215,0 +170772258900,215,0 +170772258948,215,0 +170772258996,215,0 +170772259044,215,0 +170772259092,215,0 +170772259140,215,0 +170772259187,214,0 +170772259235,214,0 +170772259283,214,0 +170772259331,214,0 +170772259379,215,0 +170772259427,215,0 +170772259474,215,0 +170772259522,215,0 +170772259572,215,0 +170772259619,215,0 +170772259667,215,0 +170772259716,215,0 +170772259766,215,0 +170772259814,215,0 +170772259862,215,0 +170772259911,215,0 +170772259959,215,0 +170772260009,215,0 +170772260058,214,0 +170772260108,214,0 +170772260156,214,0 +170772260205,214,0 +170772260255,214,0 +170772260303,214,0 +170772260351,214,0 +170772260400,214,0 +170772260448,214,0 +170772260497,215,0 +170772260547,215,0 +170772260596,215,0 +170772260646,215,0 +170772260694,215,0 +170772260743,215,0 +170772260791,215,0 +170772260839,215,0 +170772260887,214,0 +170772260935,214,0 +170772260983,213,0 +170772261033,213,0 +170772261082,214,0 +170772261130,214,0 +170772261180,214,0 +170772261228,214,0 +170772261276,214,0 +170772261325,214,0 +170772261375,214,0 +170772261423,214,0 +170772261470,215,0 +170772261520,215,0 +170772261570,214,0 +170772261617,215,0 +170772261665,215,0 +170772261713,215,0 +170772261763,214,0 +170772261811,213,0 +170772261860,213,0 +170772261910,213,0 +170772261959,213,0 +170772262009,213,0 +170772262057,213,0 +170772262105,214,0 +170772262154,214,0 +170772262202,214,0 +170772262250,214,0 +170772262298,214,0 +170772262346,214,0 +170772262394,214,0 +170772262442,214,0 +170772262491,215,0 +170772262539,215,0 +170772262587,215,0 +170772262637,214,0 +170772262685,213,0 +170772262733,213,0 +170772262781,213,0 +170772262828,213,0 +170772262876,214,0 +170772262926,214,0 +170772262974,214,0 +170772263022,214,0 +170772263069,214,0 +170772263117,214,0 +170772263167,214,0 +170772263216,214,0 +170772263264,215,0 +170772263314,215,0 +170772263363,215,0 +170772263413,215,0 +170772263461,215,0 +170772263510,214,0 +170772263558,213,0 +170772263606,213,0 +170772263655,214,0 +170772263703,214,0 +170772263751,214,0 +170772263800,214,0 +170772263848,214,0 +170772263896,214,0 +170772263944,214,0 +170772263992,214,0 +170772264040,215,0 +170772264089,215,0 +170772264139,215,0 +170772264188,215,0 +170772264238,215,0 +170772264285,215,0 +170772264335,215,0 +170772264383,214,0 +170772264431,213,0 +170772264479,213,0 +170772264527,214,0 +170772264576,214,0 +170772264624,214,0 +170772264673,214,0 +170772264723,214,0 +170772264771,214,0 +170772264820,214,0 +170772264868,214,0 +170772264916,215,0 +170772264964,214,0 +170772265012,215,0 +170772265061,215,0 +170772265111,215,0 +170772265160,215,0 +170772265210,215,0 +170772265258,213,0 +170772265307,213,0 +170772265357,213,0 +170772265405,214,0 +170772265452,214,0 +170772265500,214,0 +170772265548,214,0 +170772265598,214,0 +170772265646,214,0 +170772265695,214,0 +170772265743,214,0 +170772265791,215,0 +170772265839,215,0 +170772265887,215,0 +170772265935,215,0 +170772265984,215,0 +170772266032,215,0 +170772266080,215,0 +170772266128,213,0 +170772266176,214,0 +170772266224,214,0 +170772266272,214,0 +170772266321,214,0 +170772266371,214,0 +170772266418,214,0 +170772266468,214,0 +170772266516,214,0 +170772266564,214,0 +170772266612,215,0 +170772266661,215,0 +170772266709,215,0 +170772266757,215,0 +170772266805,215,0 +170772266853,215,0 +170772266901,215,0 +170772266949,214,0 +170772266997,213,0 +170772267044,213,0 +170772267092,213,0 +170772267140,213,0 +170772267190,213,0 +170772267239,214,0 +170772267289,214,0 +170772267337,214,0 +170772267385,214,0 +170772267433,214,0 +170772267482,214,0 +170772267532,214,0 +170772267579,215,0 +170772267627,215,0 +170772267675,215,0 +170772267725,215,0 +170772267774,215,0 +170772267822,214,0 +170772267870,213,0 +170772267918,214,0 +170772267967,213,0 +170772268015,213,0 +170772268063,213,0 +170772268111,213,0 +170772268161,213,0 +170772268210,213,0 +170772268258,213,0 +170772268306,213,0 +170772268354,214,0 +170772268402,214,0 +170772268450,214,0 +170772268499,214,0 +170772268549,214,0 +170772268598,214,0 +170772268646,215,0 +170772268694,214,0 +170772268742,213,0 +170772268790,213,0 +170772268838,213,0 +170772268886,214,0 +170772268934,214,0 +170772268981,214,0 +170772269029,214,0 +170772269079,214,0 +170772269127,214,0 +170772269176,214,0 +170772269226,214,0 +170772269274,214,0 +170772269322,215,0 +170772269370,214,0 +170772269418,214,0 +170772269467,215,0 +170772269515,215,0 +170772269563,213,0 +170772269611,213,0 +170772269659,214,0 +170772269707,214,0 +170772269755,214,0 +170772269804,214,0 +170772269854,214,0 +170772269902,214,0 +170772269951,214,0 +170772269999,214,0 +170772270048,215,0 +170772270098,214,0 +170772270146,215,0 +170772270194,215,0 +170772270243,214,0 +170772270291,215,0 +170772270339,215,0 +170772270387,215,0 +170772270437,214,0 +170772270486,214,0 +170772270536,214,0 +170772270584,214,0 +170772270631,214,0 +170772270679,214,0 +170772270729,214,0 +170772270779,214,0 +170772270827,214,0 +170772270875,214,0 +170772270922,215,0 +170772270970,215,0 +170772271018,215,0 +170772271066,215,0 +170772271114,215,0 +170772271162,215,0 +170772271210,215,0 +170772271260,215,0 +170772271308,214,0 +170772271355,214,0 +170772271403,214,0 +170772271451,214,0 +170772271499,214,0 +170772271547,214,0 +170772271595,215,0 +170772271643,215,0 +170772271693,215,0 +170772271742,215,0 +170772271792,215,0 +170772271839,215,0 +170772271887,215,0 +170772271935,215,0 +170772271983,215,0 +170772272031,215,0 +170772272079,215,0 +170772272127,215,0 +170772272176,214,0 +170772272224,214,0 +170772272274,214,0 +170772272322,214,0 +170772272370,215,0 +170772272419,214,0 +170772272467,215,0 +170772272515,215,0 +170772272565,215,0 +170772272614,215,0 +170772272664,215,0 +170772272713,215,0 +170772272763,215,0 +170772272811,215,0 +170772272859,215,0 +170772272907,215,0 +170772272956,215,0 +170772273004,214,0 +170772273052,214,0 +170772273101,214,0 +170772273151,214,0 +170772273199,214,0 +170772273248,214,0 +170772273296,215,0 +170772273344,215,0 +170772273392,215,0 +170772273440,215,0 +170772273490,215,0 +170772273537,215,0 +170772273585,215,0 +170772273635,215,0 +170772273684,215,0 +170772273734,215,0 +170772273782,215,0 +170772273830,215,0 +170772273879,214,0 +170772273927,214,0 +170772273977,214,0 +170772274025,214,0 +170772274073,214,0 +170772274122,214,0 +170772274170,214,0 +170772274218,215,0 +170772274266,215,0 +170772274314,215,0 +170772274362,215,0 +170772274410,215,0 +170772274459,215,0 +170772274507,215,0 +170772274555,215,0 +170772274604,215,0 +170772274654,215,0 +170772274702,215,0 +170772274750,214,0 +170772274798,214,0 +170772274846,214,0 +170772274894,214,0 +170772274941,214,0 +170772274989,214,0 +170772275039,214,0 +170772275087,214,0 +170772275136,214,0 +170772275184,215,0 +170772275234,215,0 +170772275282,215,0 +170772275331,215,0 +170772275380,215,0 +170772275430,215,0 +170772275479,215,0 +170772275527,215,0 +170772275575,215,0 +170772275623,214,0 +170772275671,214,0 +170772275719,214,0 +170772275769,214,0 +170772275816,214,0 +170772275864,214,0 +170772275912,214,0 +170772275960,214,0 +170772276008,214,0 +170772276056,214,0 +170772276104,215,0 +170772276152,215,0 +170772276200,215,0 +170772276248,215,0 +170772276296,215,0 +170772276345,215,0 +170772276393,215,0 +170772276441,215,0 +170772276489,214,0 +170772276538,214,0 +170772276588,214,0 +170772276636,214,0 +170772276685,214,0 +170772276733,214,0 +170772276781,214,0 +170772276831,214,0 +170772276880,214,0 +170772276930,214,0 +170772276979,215,0 +170772277027,215,0 +170772277075,214,0 +170772277125,215,0 +170772277174,215,0 +170772277222,215,0 +170772277270,215,0 +170772277318,214,0 +170772277366,214,0 +170772277415,213,0 +170772277465,214,0 +170772277514,214,0 +170772277562,214,0 +170772277610,214,0 +170772277658,214,0 +170772277706,214,0 +170772277754,214,0 +170772277802,214,0 +170772277850,215,0 +170772277898,215,0 +170772277945,215,0 +170772277993,215,0 +170772278041,215,0 +170772278091,215,0 +170772278139,215,0 +170772278186,214,0 +170772278234,213,0 +170772278282,213,0 +170772278332,213,0 +170772278380,213,0 +170772278429,213,0 +170772278477,214,0 +170772278526,214,0 +170772278576,214,0 +170772278625,214,0 +170772278673,214,0 +170772278723,214,0 +170772278771,215,0 +170772278819,214,0 +170772278868,214,0 +170772278916,214,0 +170772278964,215,0 +170772279013,215,0 +170772279061,214,0 +170772279109,213,0 +170772279157,214,0 +170772279205,213,0 +170772279253,214,0 +170772279300,214,0 +170772279348,214,0 +170772279396,214,0 +170772279444,214,0 +170772279492,214,0 +170772279540,215,0 +170772279589,215,0 +170772279639,215,0 +170772279688,215,0 +170772279736,215,0 +170772279784,215,0 +170772279832,215,0 +170772279880,215,0 +170772279928,214,0 +170772279977,213,0 +170772280027,213,0 +170772280075,214,0 +170772280123,214,0 +170772280171,214,0 +170772280220,214,0 +170772280268,214,0 +170772280317,214,0 +170772280365,214,0 +170772280413,214,0 +170772280461,214,0 +170772280511,214,0 +170772280559,214,0 +170772280607,215,0 +170772280655,215,0 +170772280703,215,0 +170772280751,215,0 +170772280799,214,0 +170772280848,214,0 +170772280896,214,0 +170772280944,214,0 +170772280993,214,0 +170772281043,214,0 +170772281091,214,0 +170772281140,214,0 +170772281190,214,0 +170772281238,215,0 +170772281286,215,0 +170772281334,215,0 +170772281382,215,0 +170772281430,215,0 +170772281478,215,0 +170772281526,215,0 +170772281576,215,0 +170772281625,215,0 +170772281673,214,0 +170772281721,214,0 +170772281770,214,0 +170772281818,214,0 +170772281868,214,0 +170772281916,214,0 +170772281964,214,0 +170772282012,214,0 +170772282060,214,0 +170772282109,215,0 +170772282158,214,0 +170772282206,215,0 +170772282256,215,0 +170772282305,216,0 +170772282355,215,0 +170772282404,215,0 +170772282452,215,0 +170772282500,215,0 +170772282548,213,0 +170772282596,214,0 +170772282644,214,0 +170772282693,214,0 +170772282741,214,0 +170772282791,214,0 +170772282839,214,0 +170772282888,214,0 +170772282936,214,0 +170772282986,214,0 +170772283035,214,0 +170772283083,214,0 +170772283131,215,0 +170772283179,215,0 +170772283227,215,0 +170772283275,215,0 +170772283322,215,0 +170772283370,214,0 +170772283418,213,0 +170772283466,213,0 +170772283514,214,0 +170772283562,214,0 +170772283611,214,0 +170772283659,214,0 +170772283707,214,0 +170772283755,214,0 +170772283804,214,0 +170772283852,214,0 +170772283900,215,0 +170772283948,215,0 +170772283996,215,0 +170772284044,215,0 +170772284091,215,0 +170772284139,215,0 +170772284187,215,0 +170772284235,214,0 +170772284283,213,0 +170772284331,214,0 +170772284379,214,0 +170772284427,214,0 +170772284474,214,0 +170772284522,214,0 +170772284570,214,0 +170772284618,214,0 +170772284666,215,0 +170772284713,214,0 +170772284761,215,0 +170772284809,215,0 +170772284857,215,0 +170772284905,215,0 +170772284952,215,0 +170772285000,215,0 +170772285048,215,0 +170772285096,214,0 +170772285144,213,0 +170772285191,213,0 +170772285239,214,0 +170772285287,214,0 +170772285335,214,0 +170772285383,214,0 +170772285432,214,0 +170772285480,214,0 +170772285528,214,0 +170772285576,214,0 +170772285624,214,0 +170772285672,215,0 +170772285721,214,0 +170772285769,215,0 +170772285819,215,0 +170772285866,215,0 +170772285914,215,0 +170772285964,214,0 +170772286013,213,0 +170772286061,214,0 +170772286109,213,0 +170772286159,214,0 +170772286207,214,0 +170772286255,214,0 +170772286304,214,0 +170772286352,214,0 +170772286400,214,0 +170772286448,215,0 +170772286496,215,0 +170772286545,215,0 +170772286595,215,0 +170772286643,215,0 +170772286691,215,0 +170772286739,215,0 +170772286787,215,0 +170772286834,214,0 +170772286882,213,0 +170772286930,213,0 +170772286978,214,0 +170772287026,214,0 +170772287074,214,0 +170772287124,214,0 +170772287173,214,0 +170772287221,214,0 +170772287269,214,0 +170772287319,214,0 +170772287368,215,0 +170772287417,215,0 +170772287465,215,0 +170772287514,215,0 +170772287562,215,0 +170772287610,215,0 +170772287657,215,0 +170772287707,214,0 +170772287756,214,0 +170772287804,214,0 +170772287852,214,0 +170772287900,214,0 +170772287948,214,0 +170772287997,214,0 +170772288045,214,0 +170772288095,214,0 +170772288144,215,0 +170772288192,215,0 +170772288240,215,0 +170772288288,215,0 +170772288338,215,0 +170772288387,215,0 +170772288435,215,0 +170772288485,215,0 +170772288532,215,0 +170772288582,214,0 +170772288632,214,0 +170772288680,214,0 +170772288727,214,0 +170772288777,214,0 +170772288826,214,0 +170772288876,214,0 +170772288925,214,0 +170772288973,214,0 +170772289021,215,0 +170772289071,215,0 +170772289120,215,0 +170772289168,215,0 +170772289216,215,0 +170772289266,215,0 +170772289314,215,0 +170772289362,215,0 +170772289410,214,0 +170772289458,214,0 +170772289506,214,0 +170772289553,214,0 +170772289601,214,0 +170772289649,214,0 +170772289699,214,0 +170772289747,214,0 +170772289796,214,0 +170772289844,215,0 +170772289892,215,0 +170772289940,215,0 +170772289988,215,0 +170772290037,215,0 +170772290087,215,0 +170772290137,215,0 +170772290184,215,0 +170772290232,215,0 +170772290282,214,0 +170772290330,214,0 +170772290379,214,0 +170772290429,214,0 +170772290478,214,0 +170772290526,214,0 +170772290574,214,0 +170772290622,215,0 +170772290670,215,0 +170772290718,215,0 +170772290768,215,0 +170772290817,215,0 +170772290865,215,0 +170772290913,215,0 +170772290961,215,0 +170772291009,215,0 +170772291056,215,0 +170772291104,215,0 +170772291154,214,0 +170772291203,214,0 +170772291251,214,0 +170772291299,214,0 +170772291349,214,0 +170772291398,214,0 +170772291446,214,0 +170772291496,214,0 +170772291545,214,0 +170772291593,215,0 +170772291641,215,0 +170772291689,215,0 +170772291738,215,0 +170772291786,215,0 +170772291834,215,0 +170772291882,215,0 +170772291932,215,0 +170772291980,215,0 +170772292029,213,0 +170772292077,213,0 +170772292125,213,0 +170772292173,213,0 +170772292223,213,0 +170772292270,214,0 +170772292320,214,0 +170772292368,214,0 +170772292416,214,0 +170772292464,214,0 +170772292512,214,0 +170772292560,214,0 +170772292609,215,0 +170772292657,215,0 +170772292707,215,0 +170772292754,215,0 +170772292804,215,0 +170772292852,214,0 +170772292901,213,0 +170772292951,213,0 +170772292998,213,0 +170772293046,214,0 +170772293096,214,0 +170772293145,214,0 +170772293193,214,0 +170772293243,214,0 +170772293291,214,0 +170772293340,214,0 +170772293388,214,0 +170772293436,215,0 +170772293485,215,0 +170772293533,215,0 +170772293581,215,0 +170772293629,215,0 +170772293679,215,0 +170772293727,214,0 +170772293775,213,0 +170772293824,214,0 +170772293872,214,0 +170772293920,214,0 +170772293970,214,0 +170772294019,214,0 +170772294069,214,0 +170772294117,214,0 +170772294165,214,0 +170772294213,214,0 +170772294261,214,0 +170772294310,215,0 +170772294358,215,0 +170772294405,215,0 +170772294453,215,0 +170772294501,215,0 +170772294549,215,0 +170772294597,214,0 +170772294644,214,0 +170772294692,213,0 +170772294740,214,0 +170772294788,214,0 +170772294838,214,0 +170772294885,214,0 +170772294935,214,0 +170772294983,214,0 +170772295031,214,0 +170772295080,215,0 +170772295130,215,0 +170772295179,215,0 +170772295227,215,0 +170772295275,215,0 +170772295324,215,0 +170772295372,215,0 +170772295420,215,0 +170772295468,213,0 +170772295516,214,0 +170772295564,213,0 +170772295614,214,0 +170772295662,214,0 +170772295709,214,0 +170772295759,214,0 +170772295807,214,0 +170772295855,214,0 +170772295904,214,0 +170772295952,215,0 +170772296000,215,0 +170772296048,215,0 +170772296097,215,0 +170772296145,215,0 +170772296193,215,0 +170772296241,215,0 +170772296288,214,0 +170772296338,213,0 +170772296387,213,0 +170772296437,213,0 +170772296485,213,0 +170772296534,214,0 +170772296583,213,0 +170772296633,214,0 +170772296682,214,0 +170772296730,214,0 +170772296780,214,0 +170772296829,215,0 +170772296877,215,0 +170772296927,215,0 +170772296976,215,0 +170772297024,215,0 +170772297073,215,0 +170772297121,215,0 +170772297169,214,0 +170772297217,214,0 +170772297265,214,0 +170772297313,214,0 +170772297361,214,0 +170772297409,214,0 +170772297457,214,0 +170772297506,214,0 +170772297554,214,0 +170772297602,214,0 +170772297650,214,0 +170772297697,214,0 +170772297745,215,0 +170772297793,215,0 +170772297841,215,0 +170772297889,215,0 +170772297936,215,0 +170772297984,215,0 +170772298032,214,0 +170772298080,214,0 +170772298130,214,0 +170772298179,214,0 +170772298227,214,0 +170772298276,214,0 +170772298324,214,0 +170772298374,214,0 +170772298423,214,0 +170772298473,214,0 +170772298521,215,0 +170772298570,215,0 +170772298618,215,0 +170772298666,215,0 +170772298714,215,0 +170772298762,215,0 +170772298810,215,0 +170772298858,215,0 +170772298906,213,0 +170772298953,213,0 +170772299001,214,0 +170772299049,214,0 +170772299097,214,0 +170772299145,214,0 +170772299193,214,0 +170772299240,214,0 +170772299288,214,0 +170772299336,214,0 +170772299384,214,0 +170772299432,215,0 +170772299480,215,0 +170772299529,215,0 +170772299577,215,0 +170772299625,215,0 +170772299672,215,0 +170772299722,215,0 +170772299771,213,0 +170772299819,214,0 +170772299868,214,0 +170772299918,214,0 +170772299967,214,0 +170772300015,214,0 +170772300063,214,0 +170772300111,214,0 +170772300158,214,0 +170772300206,215,0 +170772300254,215,0 +170772300302,215,0 +170772300350,215,0 +170772300399,215,0 +170772300447,214,0 +170772300497,214,0 +170772300545,215,0 +170772300594,214,0 +170772300642,213,0 +170772300690,213,0 +170772300738,213,0 +170772300785,214,0 +170772300833,214,0 +170772300881,214,0 +170772300929,214,0 +170772300979,214,0 +170772301028,214,0 +170772301078,214,0 +170772301126,214,0 +170772301175,214,0 +170772301225,215,0 +170772301274,215,0 +170772301323,215,0 +170772301371,215,0 +170772301421,215,0 +170772301470,214,0 +170772301520,214,0 +170772301568,214,0 +170772301616,213,0 +170772301663,214,0 +170772301711,214,0 +170772301759,214,0 +170772301809,214,0 +170772301857,214,0 +170772301904,214,0 +170772301954,215,0 +170772302003,215,0 +170772302053,215,0 +170772302101,215,0 +170772302150,215,0 +170772302198,215,0 +170772302246,215,0 +170772302295,215,0 +170772302343,213,0 +170772302391,214,0 +170772302440,214,0 +170772302488,214,0 +170772302536,214,0 +170772302584,214,0 +170772302632,214,0 +170772302679,215,0 +170772302727,215,0 +170772302775,214,0 +170772302823,215,0 +170772302871,214,0 +170772302918,215,0 +170772302966,215,0 +170772303014,215,0 +170772303062,215,0 +170772303110,215,0 +170772303158,214,0 +170772303205,214,0 +170772303255,214,0 +170772303303,214,0 +170772303351,214,0 +170772303399,214,0 +170772303447,214,0 +170772303494,214,0 +170772303544,214,0 +170772303593,214,0 +170772303641,214,0 +170772303691,215,0 +170772303740,215,0 +170772303790,215,0 +170772303838,215,0 +170772303887,215,0 +170772303935,215,0 +170772303985,215,0 +170772304033,214,0 +170772304082,214,0 +170772304130,214,0 +170772304178,214,0 +170772304226,214,0 +170772304275,214,0 +170772304323,214,0 +170772304371,214,0 +170772304419,214,0 +170772304467,214,0 +170772304517,214,0 +170772304566,214,0 +170772304614,215,0 +170772304662,215,0 +170772304711,215,0 +170772304759,215,0 +170772304807,215,0 +170772304857,215,0 +170772304905,214,0 +170772304953,214,0 +170772305002,214,0 +170772305052,214,0 +170772305100,214,0 +170772305149,214,0 +170772305199,214,0 +170772305247,214,0 +170772305296,215,0 +170772305346,215,0 +170772305394,215,0 +170772305442,215,0 +170772305490,215,0 +170772305537,215,0 +170772305587,215,0 +170772305636,215,0 +170772305684,215,0 +170772305734,214,0 +170772305782,214,0 +170772305830,214,0 +170772305878,214,0 +170772305927,214,0 +170772305975,214,0 +170772306023,214,0 +170772306071,214,0 +170772306121,215,0 +170772306168,215,0 +170772306216,215,0 +170772306264,215,0 +170772306314,215,0 +170772306362,215,0 +170772306410,215,0 +170772306458,215,0 +170772306506,215,0 +170772306555,215,0 +170772306603,214,0 +170772306651,214,0 +170772306699,214,0 +170772306747,214,0 +170772306795,214,0 +170772306843,214,0 +170772306891,214,0 +170772306938,214,0 +170772306988,214,0 +170772307036,215,0 +170772307085,215,0 +170772307133,215,0 +170772307181,215,0 +170772307229,215,0 +170772307277,215,0 +170772307325,215,0 +170772307373,215,0 +170772307421,215,0 +170772307469,214,0 +170772307517,213,0 +170772307566,214,0 +170772307614,214,0 +170772307664,214,0 +170772307712,214,0 +170772307761,214,0 +170772307811,214,0 +170772307859,214,0 +170772307906,214,0 +170772307954,214,0 +170772308002,215,0 +170772308052,215,0 +170772308100,215,0 +170772308147,215,0 +170772308195,215,0 +170772308243,215,0 +170772308291,214,0 +170772308339,214,0 +170772308387,214,0 +170772308435,214,0 +170772308482,214,0 +170772308530,214,0 +170772308578,214,0 +170772308628,214,0 +170772308677,215,0 +170772308725,214,0 +170772308775,215,0 +170772308823,215,0 +170772308871,215,0 +170772308919,215,0 +170772308966,215,0 +170772309014,215,0 +170772309062,215,0 +170772309110,215,0 +170772309158,214,0 +170772309208,214,0 +170772309257,214,0 +170772309307,214,0 +170772309355,214,0 +170772309404,214,0 +170772309454,214,0 +170772309502,215,0 +170772309549,215,0 +170772309599,215,0 +170772309647,215,0 +170772309695,215,0 +170772309744,215,0 +170772309794,215,0 +170772309842,215,0 +170772309890,215,0 +170772309937,215,0 +170772309985,215,0 +170772310033,214,0 +170772310081,214,0 +170772310129,214,0 +170772310177,214,0 +170772310226,214,0 +170772310274,214,0 +170772310323,214,0 +170772310371,214,0 +170772310419,214,0 +170772310467,215,0 +170772310515,215,0 +170772310563,215,0 +170772310612,215,0 +170772310660,215,0 +170772310710,215,0 +170772310758,215,0 +170772310806,215,0 +170772310854,215,0 +170772310901,214,0 +170772310951,214,0 +170772310999,214,0 +170772311048,214,0 +170772311098,214,0 +170772311147,214,0 +170772311195,214,0 +170772311245,214,0 +170772311292,215,0 +170772311342,214,0 +170772311392,215,0 +170772311441,215,0 +170772311491,215,0 +170772311538,215,0 +170772311586,215,0 +170772311634,215,0 +170772311682,215,0 +170772311730,213,0 +170772311778,213,0 +170772311826,213,0 +170772311875,213,0 +170772311923,214,0 +170772311971,214,0 +170772312019,214,0 +170772312069,214,0 +170772312117,214,0 +170772312165,214,0 +170772312214,215,0 +170772312262,215,0 +170772312312,214,0 +170772312359,215,0 +170772312409,215,0 +170772312458,215,0 +170772312506,215,0 +170772312554,215,0 +170772312604,214,0 +170772312653,213,0 +170772312701,213,0 +170772312749,213,0 +170772312799,214,0 +170772312846,214,0 +170772312894,214,0 +170772312942,214,0 +170772312990,214,0 +170772313038,215,0 +170772313086,215,0 +170772313134,215,0 +170772313181,215,0 +170772313229,215,0 +170772313277,215,0 +170772313327,215,0 +170772313376,215,0 +170772313424,214,0 +170772313472,213,0 +170772313520,213,0 +170772313569,214,0 +170772313617,214,0 +170772313665,214,0 +170772313715,214,0 +170772313763,214,0 +170772313812,214,0 +170772313860,214,0 +170772313910,214,0 +170772313958,215,0 +170772314006,214,0 +170772314055,215,0 +170772314103,215,0 +170772314153,215,0 +170772314201,215,0 +170772314249,215,0 +170772314296,213,0 +170772314344,213,0 +170772314392,213,0 +170772314440,214,0 +170772314490,214,0 +170772314539,214,0 +170772314589,214,0 +170772314637,214,0 +170772314686,214,0 +170772314734,214,0 +170772314784,214,0 +170772314831,214,0 +170772314879,215,0 +170772314927,215,0 +170772314975,215,0 +170772315025,215,0 +170772315073,215,0 +170772315121,215,0 +170772315169,213,0 +170772315216,213,0 +170772315264,213,0 +170772315314,213,0 +170772315362,213,0 +170772315410,213,0 +170772315457,213,0 +170772315505,214,0 +170772315553,214,0 +170772315601,214,0 +170772315649,214,0 +170772315697,214,0 +170772315745,214,0 +170772315793,214,0 +170772315842,215,0 +170772315890,215,0 +170772315940,215,0 +170772315988,214,0 +170772316036,213,0 +170772316083,213,0 +170772316131,213,0 +170772316179,213,0 +170772316227,214,0 +170772316275,214,0 +170772316325,214,0 +170772316373,214,0 +170772316421,214,0 +170772316470,214,0 +170772316518,214,0 +170772316567,214,0 +170772316617,215,0 +170772316665,215,0 +170772316715,215,0 +170772316763,215,0 +170772316812,215,0 +170772316860,213,0 +170772316908,213,0 +170772316956,214,0 +170772317005,214,0 +170772317053,214,0 +170772317101,214,0 +170772317151,214,0 +170772317198,214,0 +170772317248,214,0 +170772317296,215,0 +170772317344,215,0 +170772317393,215,0 +170772317443,215,0 +170772317492,215,0 +170772317540,215,0 +170772317588,215,0 +170772317638,215,0 +170772317686,214,0 +170772317734,213,0 +170772317781,214,0 +170772317831,214,0 +170772317879,214,0 +170772317927,214,0 +170772317975,214,0 +170772318024,214,0 +170772318072,214,0 +170772318120,214,0 +170772318168,214,0 +170772318217,215,0 +170772318267,215,0 +170772318315,215,0 +170772318363,215,0 +170772318412,215,0 +170772318462,215,0 +170772318510,215,0 +170772318558,214,0 +170772318606,214,0 +170772318655,214,0 +170772318705,214,0 +170772318752,214,0 +170772318802,214,0 +170772318850,214,0 +170772318898,214,0 +170772318945,214,0 +170772318995,215,0 +170772319043,215,0 +170772319091,215,0 +170772319140,215,0 +170772319188,215,0 +170772319238,215,0 +170772319287,215,0 +170772319336,215,0 +170772319386,215,0 +170772319435,214,0 +170772319483,214,0 +170772319533,214,0 +170772319581,214,0 +170772319630,214,0 +170772319678,214,0 +170772319728,215,0 +170772319775,215,0 +170772319823,215,0 +170772319871,215,0 +170772319919,215,0 +170772319969,215,0 +170772320016,215,0 +170772320066,215,0 +170772320114,215,0 +170772320162,215,0 +170772320210,215,0 +170772320257,214,0 +170772320307,214,0 +170772320355,214,0 +170772320404,214,0 +170772320452,214,0 +170772320500,215,0 +170772320548,215,0 +170772320598,215,0 +170772320646,215,0 +170772320693,215,0 +170772320743,215,0 +170772320792,215,0 +170772320840,215,0 +170772320888,215,0 +170772320936,215,0 +170772320984,215,0 +170772321031,215,0 +170772321079,215,0 +170772321127,214,0 +170772321175,214,0 +170772321225,214,0 +170772321274,214,0 +170772321324,214,0 +170772321373,215,0 +170772321423,215,0 +170772321471,215,0 +170772321519,215,0 +170772321567,215,0 +170772321615,215,0 +170772321662,215,0 +170772321712,215,0 +170772321762,215,0 +170772321810,215,0 +170772321857,215,0 +170772321905,215,0 +170772321953,214,0 +170772322001,214,0 +170772322049,214,0 +170772322097,214,0 +170772322145,214,0 +170772322193,214,0 +170772322241,214,0 +170772322289,214,0 +170772322336,215,0 +170772322386,215,0 +170772322434,215,0 +170772322483,215,0 +170772322533,215,0 +170772322582,215,0 +170772322630,215,0 +170772322678,215,0 +170772322728,215,0 +170772322777,215,0 +170772322825,214,0 +170772322873,213,0 +170772322921,214,0 +170772322971,214,0 +170772323019,214,0 +170772323068,214,0 +170772323116,214,0 +170772323164,214,0 +170772323212,214,0 +170772323260,215,0 +170772323309,215,0 +170772323359,215,0 +170772323407,215,0 +170772323455,215,0 +170772323503,215,0 +170772323553,215,0 +170772323600,215,0 +170772323650,214,0 +170772323698,213,0 +170772323747,214,0 +170772323797,214,0 +170772323846,214,0 +170772323894,214,0 +170772323944,214,0 +170772323993,214,0 +170772324043,214,0 +170772324091,214,0 +170772324140,214,0 +170772324188,215,0 +170772324236,215,0 +170772324286,215,0 +170772324335,215,0 +170772324383,215,0 +170772324433,215,0 +170772324482,214,0 +170772324532,213,0 +170772324580,214,0 +170772324628,214,0 +170772324677,214,0 +170772324725,214,0 +170772324773,214,0 +170772324823,214,0 +170772324872,214,0 +170772324920,214,0 +170772324968,214,0 +170772325016,215,0 +170772325065,215,0 +170772325113,215,0 +170772325161,216,0 +170772325211,215,0 +170772325260,215,0 +170772325310,215,0 +170772325358,214,0 +170772325406,214,0 +170772325455,214,0 +170772325503,214,0 +170772325551,214,0 +170772325599,214,0 +170772325647,214,0 +170772325696,214,0 +170772325746,214,0 +170772325794,215,0 +170772325842,215,0 +170772325890,215,0 +170772325938,215,0 +170772325986,215,0 +170772326033,215,0 +170772326081,215,0 +170772326131,214,0 +170772326181,213,0 +170772326229,214,0 +170772326277,214,0 +170772326324,214,0 +170772326372,214,0 +170772326422,214,0 +170772326470,214,0 +170772326518,214,0 +170772326566,215,0 +170772326614,214,0 +170772326662,214,0 +170772326711,215,0 +170772326761,215,0 +170772326810,215,0 +170772326860,215,0 +170772326909,215,0 +170772326957,215,0 +170772327007,213,0 +170772327055,214,0 +170772327103,214,0 +170772327151,214,0 +170772327199,214,0 +170772327247,214,0 +170772327295,214,0 +170772327343,214,0 +170772327392,214,0 +170772327440,214,0 +170772327488,215,0 +170772327536,215,0 +170772327584,215,0 +170772327633,215,0 +170772327683,215,0 +170772327731,215,0 +170772327780,215,0 +170772327828,214,0 +170772327876,213,0 +170772327924,213,0 +170772327974,213,0 +170772328023,213,0 +170772328071,214,0 +170772328119,214,0 +170772328167,214,0 +170772328215,214,0 +170772328263,214,0 +170772328311,214,0 +170772328358,214,0 +170772328408,215,0 +170772328456,215,0 +170772328504,215,0 +170772328552,215,0 +170772328600,215,0 +170772328647,214,0 +170772328695,213,0 +170772328745,213,0 +170772328792,213,0 +170772328840,213,0 +170772328888,213,0 +170772328938,214,0 +170772328985,214,0 +170772329033,214,0 +170772329081,214,0 +170772329129,214,0 +170772329177,214,0 +170772329225,214,0 +170772329273,214,0 +170772329320,214,0 +170772329368,215,0 +170772329416,215,0 +170772329464,215,0 +170772329513,214,0 +170772329561,213,0 +170772329609,213,0 +170772329658,213,0 +170772329706,214,0 +170772329754,214,0 +170772329802,214,0 +170772329850,214,0 +170772329898,214,0 +170772329946,214,0 +170772329993,215,0 +170772330041,214,0 +170772330089,215,0 +170772330137,215,0 +170772330186,214,0 +170772330234,215,0 +170772330282,215,0 +170772330330,214,0 +170772330379,213,0 +170772330427,213,0 +170772330475,214,0 +170772330523,214,0 +170772330570,214,0 +170772330618,214,0 +170772330666,214,0 +170772330716,214,0 +170772330763,214,0 +170772330811,214,0 +170772330859,214,0 +170772330907,215,0 +170772330955,215,0 +170772331003,215,0 +170772331051,215,0 +170772331100,215,0 +170772331148,214,0 +170772331196,214,0 +170772331244,214,0 +170772331291,214,0 +170772331339,214,0 +170772331387,214,0 +170772331435,214,0 +170772331484,214,0 +170772331532,214,0 +170772331580,214,0 +170772331628,215,0 +170772331676,215,0 +170772331724,215,0 +170772331773,215,0 +170772331821,215,0 +170772331871,215,0 +170772331919,215,0 +170772331968,215,0 +170772332016,214,0 +170772332065,214,0 +170772332113,214,0 +170772332161,214,0 +170772332209,214,0 +170772332257,214,0 +170772332305,215,0 +170772332353,214,0 +170772332401,215,0 +170772332450,215,0 +170772332498,215,0 +170772332546,215,0 +170772332593,215,0 +170772332641,215,0 +170772332689,215,0 +170772332737,215,0 +170772332786,215,0 +170772332834,214,0 +170772332882,214,0 +170772332930,214,0 +170772332980,214,0 +170772333029,214,0 +170772333079,215,0 +170772333127,214,0 +170772333176,215,0 +170772333226,215,0 +170772333275,215,0 +170772333325,215,0 +170772333372,215,0 +170772333420,215,0 +170772333468,215,0 +170772333516,215,0 +170772333564,215,0 +170772333614,215,0 +170772333663,214,0 +170772333711,214,0 +170772333759,214,0 +170772333807,214,0 +170772333855,214,0 +170772333903,214,0 +170772333951,214,0 +170772333999,214,0 +170772334047,215,0 +170772334095,215,0 +170772334142,215,0 +170772334190,215,0 +170772334240,215,0 +170772334288,215,0 +170772334335,215,0 +170772334383,215,0 +170772334431,215,0 +170772334479,215,0 +170772334528,214,0 +170772334576,214,0 +170772334624,214,0 +170772334672,214,0 +170772334720,214,0 +170772334768,214,0 +170772334816,214,0 +170772334863,214,0 +170772334913,215,0 +170772334961,215,0 +170772335010,215,0 +170772335058,215,0 +170772335105,215,0 +170772335153,215,0 +170772335203,215,0 +170772335250,215,0 +170772335300,214,0 +170772335348,214,0 +170772335395,213,0 +170772335445,214,0 +170772335494,214,0 +170772335542,214,0 +170772335590,214,0 +170772335639,214,0 +170772335687,214,0 +170772335735,214,0 +170772335783,215,0 +170772335832,215,0 +170772335880,215,0 +170772335928,215,0 +170772335977,215,0 +170772336025,215,0 +170772336075,215,0 +170772336123,215,0 +170772336170,214,0 +170772336218,214,0 +170772336268,214,0 +170772336316,214,0 +170772336364,214,0 +170772336412,214,0 +170772336461,214,0 +170772336509,214,0 +170772336557,215,0 +170772336605,215,0 +170772336653,215,0 +170772336702,215,0 +170772336752,215,0 +170772336800,215,0 +170772336847,215,0 +170772336897,215,0 +170772336945,215,0 +170772336993,214,0 +170772337041,213,0 +170772337089,214,0 +170772337136,214,0 +170772337184,214,0 +170772337232,214,0 +170772337280,214,0 +170772337328,214,0 +170772337377,214,0 +170772337427,215,0 +170772337474,215,0 +170772337522,215,0 +170772337572,215,0 +170772337620,215,0 +170772337667,215,0 +170772337715,215,0 +170772337763,215,0 +170772337811,215,0 +170772337859,214,0 +170772337907,214,0 +170772337954,214,0 +170772338002,214,0 +170772338050,214,0 +170772338098,214,0 +170772338146,214,0 +170772338193,214,0 +170772338241,214,0 +170772338289,215,0 +170772338337,215,0 +170772338385,215,0 +170772338433,215,0 +170772338481,215,0 +170772338528,215,0 +170772338576,215,0 +170772338624,215,0 +170772338672,214,0 +170772338720,214,0 +170772338769,214,0 +170772338819,214,0 +170772338867,214,0 +170772338915,214,0 +170772338963,214,0 +170772339012,214,0 +170772339060,215,0 +170772339108,215,0 +170772339156,215,0 +170772339204,215,0 +170772339251,215,0 +170772339301,214,0 +170772339349,215,0 +170772339398,215,0 +170772339448,215,0 +170772339496,214,0 +170772339544,214,0 +170772339593,214,0 +170772339643,214,0 +170772339690,214,0 +170772339740,214,0 +170772339788,214,0 +170772339836,214,0 +170772339883,215,0 +170772339931,214,0 +170772339979,215,0 +170772340027,215,0 +170772340075,215,0 +170772340123,215,0 +170772340171,215,0 +170772340219,215,0 +170772340266,215,0 +170772340314,215,0 +170772340362,213,0 +170772340410,214,0 +170772340460,214,0 +170772340509,214,0 +170772340557,214,0 +170772340605,214,0 +170772340654,214,0 +170772340702,214,0 +170772340752,214,0 +170772340800,214,0 +170772340848,215,0 +170772340897,215,0 +170772340945,215,0 +170772340994,215,0 +170772341042,215,0 +170772341090,215,0 +170772341138,215,0 +170772341186,214,0 +170772341235,214,0 +170772341283,214,0 +170772341331,214,0 +170772341379,214,0 +170772341429,214,0 +170772341477,214,0 +170772341526,214,0 +170772341574,214,0 +170772341622,214,0 +170772341670,215,0 +170772341718,215,0 +170772341767,215,0 +170772341815,215,0 +170772341865,215,0 +170772341913,215,0 +170772341962,215,0 +170772342012,214,0 +170772342061,214,0 +170772342111,214,0 +170772342160,214,0 +170772342210,214,0 +170772342259,214,0 +170772342309,214,0 +170772342356,214,0 +170772342404,214,0 +170772342454,214,0 +170772342503,214,0 +170772342551,215,0 +170772342599,214,0 +170772342647,215,0 +170772342695,215,0 +170772342743,215,0 +170772342791,215,0 +170772342839,214,0 +170772342887,213,0 +170772342936,213,0 +170772342986,214,0 +170772343033,214,0 +170772343081,214,0 +170772343131,214,0 +170772343179,214,0 +170772343228,214,0 +170772343276,214,0 +170772343324,215,0 +170772343374,215,0 +170772343423,215,0 +170772343471,215,0 +170772343519,215,0 +170772343567,215,0 +170772343615,215,0 +170772343663,213,0 +170772343711,213,0 +170772343760,214,0 +170772343808,214,0 +170772343858,214,0 +170772343906,214,0 +170772343954,214,0 +170772344002,214,0 +170772344049,214,0 +170772344097,214,0 +170772344145,215,0 +170772344193,215,0 +170772344241,215,0 +170772344289,215,0 +170772344338,215,0 +170772344388,215,0 +170772344436,215,0 +170772344485,214,0 +170772344533,214,0 +170772344583,214,0 +170772344632,214,0 +170772344680,214,0 +170772344730,214,0 +170772344779,214,0 +170772344829,215,0 +170772344877,215,0 +170772344926,215,0 +170772344974,215,0 +170772345022,215,0 +170772345070,215,0 +170772345120,215,0 +170772345168,215,0 +170772345217,215,0 +170772345265,215,0 +170772345313,214,0 +170772345361,214,0 +170772345409,214,0 +170772345457,214,0 +170772345505,214,0 +170772345554,215,0 +170772345602,215,0 +170772345652,215,0 +170772345701,215,0 +170772345751,215,0 +170772345798,215,0 +170772345846,215,0 +170772345894,215,0 +170772345944,215,0 +170772345993,215,0 +170772346043,215,0 +170772346091,215,0 +170772346140,214,0 +170772346190,214,0 +170772346238,214,0 +170772346287,214,0 +170772346337,214,0 +170772346384,214,0 +170772346432,214,0 +170772346482,214,0 +170772346530,214,0 +170772346579,214,0 +170772346629,215,0 +170772346677,215,0 +170772346725,215,0 +170772346774,215,0 +170772346824,215,0 +170772346874,215,0 +170772346922,215,0 +170772346971,214,0 +170772347021,214,0 +170772347069,214,0 +170772347117,214,0 +170772347165,214,0 +170772347214,214,0 +170772347264,214,0 +170772347313,214,0 +170772347363,215,0 +170772347412,215,0 +170772347460,215,0 +170772347508,215,0 +170772347556,215,0 +170772347604,215,0 +170772347652,215,0 +170772347700,215,0 +170772347749,215,0 +170772347799,214,0 +170772347847,214,0 +170772347896,214,0 +170772347944,214,0 +170772347992,214,0 +170772348042,214,0 +170772348091,214,0 +170772348141,214,0 +170772348188,215,0 +170772348236,215,0 +170772348284,215,0 +170772348332,215,0 +170772348382,215,0 +170772348430,215,0 +170772348477,215,0 +170772348525,215,0 +170772348573,215,0 +170772348623,214,0 +170772348672,214,0 +170772348720,214,0 +170772348768,214,0 +170772348816,214,0 +170772348864,214,0 +170772348912,214,0 +170772348961,214,0 +170772349011,215,0 +170772349059,215,0 +170772349108,215,0 +170772349156,215,0 +170772349204,215,0 +170772349252,215,0 +170772349300,215,0 +170772349349,215,0 +170772349397,215,0 +170772349445,214,0 +170772349495,213,0 +170772349542,213,0 +170772349592,214,0 +170772349640,214,0 +170772349688,214,0 +170772349736,214,0 +170772349783,214,0 +170772349831,214,0 +170772349879,214,0 +170772349927,215,0 +170772349977,215,0 +170772350026,215,0 +170772350074,215,0 +170772350123,215,0 +170772350173,215,0 +170772350221,215,0 +170772350269,214,0 +170772350317,214,0 +170772350366,214,0 +170772350414,214,0 +170772350462,214,0 +170772350511,214,0 +170772350559,214,0 +170772350607,214,0 +170772350655,214,0 +170772350705,215,0 +170772350754,215,0 +170772350802,215,0 +170772350850,215,0 +170772350899,215,0 +170772350949,215,0 +170772350997,215,0 +170772351045,215,0 +170772351093,215,0 +170772351141,214,0 +170772351190,214,0 +170772351240,214,0 +170772351287,214,0 +170772351335,214,0 +170772351385,214,0 +170772351434,214,0 +170772351484,214,0 +170772351533,214,0 +170772351583,215,0 +170772351631,215,0 +170772351679,215,0 +170772351728,215,0 +170772351776,215,0 +170772351825,215,0 +170772351873,215,0 +170772351921,215,0 +170772351969,214,0 +170772352019,214,0 +170772352066,214,0 +170772352114,214,0 +170772352162,214,0 +170772352210,214,0 +170772352258,214,0 +170772352306,214,0 +170772352354,214,0 +170772352402,214,0 +170772352452,215,0 +170772352501,215,0 +170772352549,215,0 +170772352598,215,0 +170772352646,215,0 +170772352696,215,0 +170772352744,215,0 +170772352792,214,0 +170772352841,213,0 +170772352889,213,0 +170772352937,214,0 +170772352987,214,0 +170772353035,214,0 +170772353084,214,0 +170772353132,214,0 +170772353180,214,0 +170772353228,215,0 +170772353277,215,0 +170772353325,215,0 +170772353373,215,0 +170772353421,215,0 +170772353469,215,0 +170772353519,215,0 +170772353567,215,0 +170772353615,214,0 +170772353663,214,0 +170772353711,213,0 +170772353758,214,0 +170772353806,214,0 +170772353854,214,0 +170772353902,214,0 +170772353950,214,0 +170772353998,214,0 +170772354046,214,0 +170772354094,215,0 +170772354143,214,0 +170772354191,215,0 +170772354239,215,0 +170772354287,215,0 +170772354335,215,0 +170772354383,215,0 +170772354432,214,0 +170772354480,214,0 +170772354528,214,0 +170772354578,214,0 +170772354626,214,0 +170772354673,214,0 +170772354723,214,0 +170772354772,214,0 +170772354822,215,0 +170772354870,214,0 +170772354919,215,0 +170772354969,215,0 +170772355017,215,0 +170772355066,215,0 +170772355116,215,0 +170772355164,215,0 +170772355213,215,0 +170772355263,214,0 +170772355312,214,0 +170772355362,214,0 +170772355410,214,0 +170772355459,214,0 +170772355507,214,0 +170772355557,214,0 +170772355605,214,0 +170772355654,215,0 +170772355704,214,0 +170772355752,215,0 +170772355801,215,0 +170772355849,215,0 +170772355898,215,0 +170772355946,215,0 +170772355994,215,0 +170772356042,215,0 +170772356090,214,0 +170772356140,214,0 +170772356188,213,0 +170772356236,214,0 +170772356285,214,0 +170772356333,214,0 +170772356383,214,0 +170772356431,214,0 +170772356480,214,0 +170772356530,214,0 +170772356579,214,0 +170772356629,214,0 +170772356676,214,0 +170772356724,215,0 +170772356772,215,0 +170772356820,215,0 +170772356868,215,0 +170772356916,215,0 +170772356964,215,0 +170772357012,215,0 +170772357060,215,0 +170772357108,215,0 +170772357156,215,0 +170772357204,215,0 +170772357252,215,0 +170772357300,215,0 +170772357348,214,0 +170772357395,214,0 +170772357445,214,0 +170772357495,214,0 +170772357544,214,0 +170772357592,214,0 +170772357642,214,0 +170772357689,214,0 +170772357737,214,0 +170772357787,214,0 +170772357835,214,0 +170772357884,215,0 +170772357932,215,0 +170772357980,215,0 +170772358030,215,0 +170772358079,215,0 +170772358127,215,0 +170772358175,214,0 +170772358225,213,0 +170772358273,213,0 +170772358320,214,0 +170772358368,214,0 +170772358418,214,0 +170772358466,214,0 +170772358514,214,0 +170772358562,214,0 +170772358611,215,0 +170772358659,215,0 +170772358709,215,0 +170772358757,215,0 +170772358805,215,0 +170772358853,215,0 +170772358901,215,0 +170772358948,215,0 +170772358996,214,0 +170772359046,214,0 +170772359096,214,0 +170772359145,214,0 +170772359193,214,0 +170772359241,214,0 +170772359289,214,0 +170772359337,215,0 +170772359385,215,0 +170772359434,215,0 +170772359482,215,0 +170772359530,215,0 +170772359577,215,0 +170772359625,215,0 +170772359673,215,0 +170772359721,215,0 +170772359771,215,0 +170772359820,214,0 +170772359868,214,0 +170772359918,214,0 +170772359967,214,0 +170772360017,214,0 +170772360066,214,0 +170772360114,214,0 +170772360162,214,0 +170772360210,215,0 +170772360258,215,0 +170772360308,215,0 +170772360357,215,0 +170772360405,215,0 +170772360453,215,0 +170772360501,215,0 +170772360549,215,0 +170772360599,215,0 +170772360647,214,0 +170772360695,214,0 +170772360742,214,0 +170772360792,214,0 +170772360840,214,0 +170772360888,214,0 +170772360937,214,0 +170772360987,214,0 +170772361036,214,0 +170772361086,214,0 +170772361134,215,0 +170772361182,215,0 +170772361230,215,0 +170772361278,215,0 +170772361327,215,0 +170772361377,215,0 +170772361424,215,0 +170772361472,214,0 +170772361520,214,0 +170772361568,214,0 +170772361616,214,0 +170772361664,214,0 +170772361712,214,0 +170772361761,214,0 +170772361811,215,0 +170772361859,215,0 +170772361908,215,0 +170772361956,215,0 +170772362004,215,0 +170772362054,215,0 +170772362103,215,0 +170772362151,215,0 +170772362201,215,0 +170772362248,215,0 +170772362296,214,0 +170772362344,214,0 +170772362392,214,0 +170772362440,214,0 +170772362490,214,0 +170772362538,214,0 +170772362586,214,0 +170772362634,214,0 +170772362681,214,0 +170772362731,215,0 +170772362780,215,0 +170772362830,215,0 +170772362878,215,0 +170772362927,215,0 +170772362975,215,0 +170772363023,215,0 +170772363071,215,0 +170772363119,215,0 +170772363167,214,0 +170772363216,214,0 +170772363266,214,0 +170772363313,214,0 +170772363363,215,0 +170772363411,215,0 +170772363460,215,0 +170772363508,215,0 +170772363558,215,0 +170772363607,215,0 +170772363655,215,0 +170772363703,215,0 +170772363751,215,0 +170772363799,215,0 +170772363847,215,0 +170772363895,215,0 +170772363944,215,0 +170772363994,213,0 +170772364043,213,0 +170772364093,214,0 +170772364141,214,0 +170772364189,214,0 +170772364238,214,0 +170772364286,214,0 +170772364334,214,0 +170772364384,214,0 +170772364432,214,0 +170772364479,215,0 +170772364529,215,0 +170772364577,215,0 +170772364625,215,0 +170772364674,215,0 +170772364722,215,0 +170772364772,215,0 +170772364820,214,0 +170772364868,213,0 +170772364916,214,0 +170772364965,214,0 +170772365013,214,0 +170772365063,214,0 +170772365112,214,0 +170772365162,214,0 +170772365209,214,0 +170772365257,214,0 +170772365307,214,0 +170772365355,215,0 +170772365403,215,0 +170772365451,215,0 +170772365498,215,0 +170772365546,215,0 +170772365596,215,0 +170772365644,214,0 +170772365691,214,0 +170772365739,214,0 +170772365787,214,0 +170772365835,214,0 +170772365883,214,0 +170772365931,215,0 +170772365979,214,0 +170772366026,215,0 +170772366076,215,0 +170772366124,215,0 +170772366172,215,0 +170772366220,215,0 +170772366268,215,0 +170772366317,215,0 +170772366367,215,0 +170772366415,215,0 +170772366462,214,0 +170772366512,214,0 +170772366560,214,0 +170772366608,214,0 +170772366656,214,0 +170772366704,214,0 +170772366752,214,0 +170772366800,215,0 +170772366848,215,0 +170772366896,215,0 +170772366944,215,0 +170772366992,215,0 +170772367039,215,0 +170772367087,215,0 +170772367135,215,0 +170772367183,215,0 +170772367233,215,0 +170772367282,214,0 +170772367330,214,0 +170772367378,214,0 +170772367428,214,0 +170772367475,214,0 +170772367523,214,0 +170772367571,214,0 +170772367619,214,0 +170772367667,215,0 +170772367715,214,0 +170772367763,215,0 +170772367812,215,0 +170772367862,215,0 +170772367910,215,0 +170772367959,215,0 +170772368009,215,0 +170772368057,215,0 +170772368106,214,0 +170772368156,214,0 +170772368204,214,0 +170772368252,214,0 +170772368300,214,0 +170772368349,214,0 +170772368399,214,0 +170772368447,214,0 +170772368494,214,0 +170772368542,214,0 +170772368592,215,0 +170772368641,215,0 +170772368689,215,0 +170772368737,215,0 +170772368785,215,0 +170772368833,215,0 +170772368881,215,0 +170772368931,215,0 +170772368979,213,0 +170772369027,213,0 +170772369075,213,0 +170772369123,214,0 +170772369170,214,0 +170772369220,214,0 +170772369268,214,0 +170772369316,214,0 +170772369365,214,0 +170772369413,214,0 +170772369461,214,0 +170772369510,214,0 +170772369558,215,0 +170772369606,215,0 +170772369654,214,0 +170772369702,215,0 +170772369750,215,0 +170772369799,213,0 +170772369847,213,0 +170772369895,213,0 +170772369943,213,0 +170772369991,214,0 +170772370040,214,0 +170772370088,214,0 +170772370138,214,0 +170772370185,214,0 +170772370233,214,0 +170772370281,214,0 +170772370329,215,0 +170772370377,214,0 +170772370425,214,0 +170772370473,214,0 +170772370521,214,0 +170772370569,215,0 +170772370617,213,0 +170772370665,213,0 +170772370713,213,0 +170772370762,214,0 +170772370812,213,0 +170772370861,214,0 +170772370909,214,0 +170772370957,214,0 +170772371006,214,0 +170772371054,214,0 +170772371102,214,0 +170772371150,214,0 +170772371198,214,0 +170772371247,214,0 +170772371297,214,0 +170772371345,214,0 +170772371394,215,0 +170772371442,214,0 +170772371492,213,0 +170772371541,213,0 +170772371591,214,0 +170772371639,214,0 +170772371687,214,0 +170772371735,214,0 +170772371782,214,0 +170772371832,214,0 +170772371881,214,0 +170772371929,214,0 +170772371979,215,0 +170772372027,215,0 +170772372076,215,0 +170772372124,215,0 +170772372172,215,0 +170772372221,215,0 +170772372271,214,0 +170772372318,214,0 +170772372366,214,0 +170772372414,214,0 +170772372462,214,0 +170772372510,214,0 +170772372559,214,0 +170772372609,214,0 +170772372657,214,0 +170772372706,215,0 +170772372754,215,0 +170772372803,215,0 +170772372851,215,0 +170772372899,215,0 +170772372947,215,0 +170772372994,215,0 +170772373042,215,0 +170772373090,214,0 +170772373140,214,0 +170772373188,214,0 +170772373236,214,0 +170772373284,214,0 +170772373333,214,0 +170772373383,215,0 +170772373431,214,0 +170772373480,215,0 +170772373528,215,0 +170772373576,215,0 +170772373624,215,0 +170772373672,215,0 +170772373720,215,0 +170772373768,215,0 +170772373817,215,0 +170772373865,215,0 +170772373913,214,0 +170772373963,214,0 +170772374012,214,0 +170772374062,214,0 +170772374111,214,0 +170772374161,214,0 +170772374209,215,0 +170772374257,215,0 +170772374305,215,0 +170772374354,214,0 +170772374402,215,0 +170772374450,215,0 +170772374500,215,0 +170772374547,215,0 +170772374595,215,0 +170772374643,215,0 +170772374691,215,0 +170772374739,214,0 +170772374789,214,0 +170772374837,214,0 +170772374886,214,0 +170772374934,214,0 +170772374982,214,0 +170772375031,214,0 +170772375081,214,0 +170772375129,214,0 +170772375177,215,0 +170772375225,215,0 +170772375274,215,0 +170772375324,215,0 +170772375372,215,0 +170772375421,215,0 +170772375469,215,0 +170772375517,215,0 +170772375567,214,0 +170772375616,214,0 +170772375665,214,0 +170772375713,214,0 +170772375761,214,0 +170772375809,214,0 +170772375857,215,0 +170772375907,215,0 +170772375955,215,0 +170772376003,215,0 +170772376052,215,0 +170772376100,215,0 +170772376148,215,0 +170772376197,215,0 +170772376245,215,0 +170772376295,215,0 +170772376343,215,0 +170772376390,214,0 +170772376438,214,0 +170772376488,214,0 +170772376537,215,0 +170772376585,214,0 +170772376633,215,0 +170772376681,215,0 +170772376731,215,0 +170772376779,215,0 +170772376827,215,0 +170772376876,215,0 +170772376926,215,0 +170772376975,215,0 +170772377025,215,0 +170772377073,215,0 +170772377121,215,0 +170772377169,215,0 +170772377216,214,0 +170772377266,214,0 +170772377314,214,0 +170772377363,214,0 +170772377411,214,0 +170772377459,214,0 +170772377507,215,0 +170772377555,215,0 +170772377602,215,0 +170772377650,215,0 +170772377698,215,0 +170772377746,215,0 +170772377794,215,0 +170772377842,215,0 +170772377890,215,0 +170772377938,215,0 +170772377987,215,0 +170772378035,215,0 +170772378083,214,0 +170772378131,214,0 +170772378180,214,0 +170772378228,214,0 +170772378276,214,0 +170772378326,214,0 +170772378374,214,0 +170772378421,215,0 +170772378469,215,0 +170772378517,215,0 +170772378565,215,0 +170772378615,215,0 +170772378663,215,0 +170772378711,215,0 +170772378759,215,0 +170772378808,215,0 +170772378856,215,0 +170772378904,214,0 +170772378952,214,0 +170772379000,214,0 +170772379048,214,0 +170772379096,214,0 +170772379144,214,0 +170772379193,214,0 +170772379243,215,0 +170772379292,214,0 +170772379340,215,0 +170772379390,215,0 +170772379438,215,0 +170772379486,215,0 +170772379533,215,0 +170772379581,215,0 +170772379629,215,0 +170772379677,215,0 +170772379725,214,0 +170772379773,214,0 +170772379821,214,0 +170772379869,214,0 +170772379917,214,0 +170772379965,215,0 +170772380013,214,0 +170772380061,215,0 +170772380108,215,0 +170772380158,215,0 +170772380208,215,0 +170772380257,215,0 +170772380305,215,0 +170772380353,215,0 +170772380402,215,0 +170772380450,215,0 +170772380498,215,0 +170772380546,214,0 +170772380594,214,0 +170772380642,214,0 +170772380689,214,0 +170772380737,214,0 +170772380785,214,0 +170772380833,214,0 +170772380883,214,0 +170772380931,215,0 +170772380979,215,0 +170772381027,215,0 +170772381075,215,0 +170772381122,215,0 +170772381170,215,0 +170772381220,215,0 +170772381268,215,0 +170772381315,215,0 +170772381363,215,0 +170772381411,213,0 +170772381459,213,0 +170772381507,213,0 +170772381555,213,0 +170772381603,214,0 +170772381651,214,0 +170772381700,214,0 +170772381750,214,0 +170772381799,214,0 +170772381847,214,0 +170772381896,214,0 +170772381946,214,0 +170772381994,215,0 +170772382042,215,0 +170772382090,215,0 +170772382138,215,0 +170772382186,214,0 +170772382234,213,0 +170772382281,213,0 +170772382329,214,0 +170772382377,214,0 +170772382425,214,0 +170772382475,214,0 +170772382524,214,0 +170772382572,214,0 +170772382620,214,0 +170772382668,214,0 +170772382716,214,0 +170772382764,215,0 +170772382812,215,0 +170772382860,215,0 +170772382909,215,0 +170772382957,215,0 +170772383005,214,0 +170772383053,213,0 +170772383101,214,0 +170772383148,214,0 +170772383198,213,0 +170772383247,214,0 +170772383297,214,0 +170772383345,214,0 +170772383393,214,0 +170772383441,214,0 +170772383490,214,0 +170772383538,214,0 +170772383586,215,0 +170772383634,215,0 +170772383681,215,0 +170772383729,215,0 +170772383777,215,0 +170772383827,214,0 +170772383876,213,0 +170772383925,213,0 +170772383973,213,0 +170772384021,213,0 +170772384071,213,0 +170772384119,214,0 +170772384168,214,0 +170772384216,214,0 +170772384264,214,0 +170772384312,214,0 +170772384362,214,0 +170772384409,215,0 +170772384457,214,0 +170772384505,215,0 +170772384553,215,0 +170772384601,215,0 +170772384651,215,0 +170772384698,213,0 +170772384746,213,0 +170772384794,213,0 +170772384842,213,0 +170772384890,214,0 +170772384938,214,0 +170772384986,214,0 +170772385034,214,0 +170772385082,214,0 +170772385131,214,0 +170772385181,214,0 +170772385229,214,0 +170772385276,214,0 +170772385324,215,0 +170772385374,215,0 +170772385422,215,0 +170772385470,215,0 +170772385519,214,0 +170772385567,214,0 +170772385615,214,0 +170772385663,214,0 +170772385711,214,0 +170772385760,214,0 +170772385808,214,0 +170772385858,214,0 +170772385906,214,0 +170772385954,214,0 +170772386002,215,0 +170772386050,215,0 +170772386099,215,0 +170772386147,215,0 +170772386195,215,0 +170772386243,215,0 +170772386290,215,0 +170772386338,214,0 +170772386386,214,0 +170772386434,214,0 +170772386483,214,0 +170772386531,214,0 +170772386581,214,0 +170772386629,215,0 +170772386677,215,0 +170772386725,215,0 +170772386773,215,0 +170772386822,215,0 +170772386872,215,0 +170772386920,215,0 +170772386968,215,0 +170772387017,215,0 +170772387067,215,0 +170772387116,215,0 +170772387164,214,0 +170772387212,214,0 +170772387261,215,0 +170772387311,214,0 +170772387359,215,0 +170772387408,215,0 +170772387456,215,0 +170772387506,215,0 +170772387554,214,0 +170772387603,215,0 +170772387651,215,0 +170772387699,215,0 +170772387748,215,0 +170772387796,215,0 +170772387844,215,0 +170772387894,215,0 +170772387942,215,0 +170772387990,214,0 +170772388038,214,0 +170772388087,214,0 +170772388137,214,0 +170772388184,215,0 +170772388232,215,0 +170772388280,215,0 +170772388328,215,0 +170772388376,215,0 +170772388426,215,0 +170772388475,215,0 +170772388525,215,0 +170772388573,215,0 +170772388621,215,0 +170772388670,215,0 +170772388720,215,0 +170772388769,215,0 +170772388817,215,0 +170772388867,214,0 +170772388915,215,0 +170772388963,215,0 +170772389011,215,0 +170772389060,215,0 +170772389110,215,0 +170772389158,215,0 +170772389206,215,0 +170772389255,215,0 +170772389305,215,0 +170772389353,215,0 +170772389401,215,0 +170772389449,215,0 +170772389497,215,0 +170772389545,215,0 +170772389592,215,0 +170772389640,214,0 +170772389690,214,0 +170772389738,215,0 +170772389786,215,0 +170772389834,215,0 +170772389882,215,0 +170772389931,215,0 +170772389979,215,0 +170772390029,215,0 +170772390077,215,0 +170772390124,215,0 +170772390174,215,0 +170772390222,215,0 +170772390270,215,0 +170772390320,215,0 +170772390367,215,0 +170772390415,215,0 +170772390463,214,0 +170772390511,214,0 +170772390559,214,0 +170772390607,214,0 +170772390655,214,0 +170772390703,214,0 +170772390751,214,0 +170772390798,215,0 +170772390848,215,0 +170772390896,215,0 +170772390945,215,0 +170772390995,215,0 +170772391043,215,0 +170772391091,215,0 +170772391139,215,0 +170772391188,215,0 +170772391236,215,0 +170772391284,214,0 +170772391332,214,0 +170772391380,214,0 +170772391427,214,0 +170772391475,214,0 +170772391523,214,0 +170772391571,214,0 +170772391620,215,0 +170772391668,215,0 +170772391716,215,0 +170772391764,215,0 +170772391812,215,0 +170772391860,215,0 +170772391908,215,0 +170772391955,215,0 +170772392003,215,0 +170772392051,215,0 +170772392099,214,0 +170772392147,214,0 +170772392195,214,0 +170772392242,214,0 +170772392290,214,0 +170772392338,214,0 +170772392386,214,0 +170772392435,214,0 +170772392485,214,0 +170772392533,214,0 +170772392582,215,0 +170772392632,215,0 +170772392681,215,0 +170772392731,215,0 +170772392779,215,0 +170772392826,215,0 +170772392876,215,0 +170772392925,214,0 +170772392975,213,0 +170772393023,213,0 +170772393073,214,0 +170772393121,214,0 +170772393170,214,0 +170772393218,214,0 +170772393266,214,0 +170772393314,214,0 +170772393362,214,0 +170772393410,215,0 +170772393458,214,0 +170772393508,215,0 +170772393557,215,0 +170772393606,215,0 +170772393656,215,0 +170772393704,215,0 +170772393752,213,0 +170772393800,213,0 +170772393848,213,0 +170772393897,213,0 +170772393945,214,0 +170772393993,214,0 +170772394043,214,0 +170772394092,214,0 +170772394140,214,0 +170772394188,215,0 +170772394236,215,0 +170772394284,215,0 +170772394332,215,0 +170772394381,215,0 +170772394429,215,0 +170772394479,215,0 +170772394528,214,0 +170772394578,213,0 +170772394625,213,0 +170772394673,214,0 +170772394721,214,0 +170772394771,214,0 +170772394819,214,0 +170772394868,214,0 +170772394916,214,0 +170772394964,214,0 +170772395013,215,0 +170772395061,215,0 +170772395111,215,0 +170772395159,215,0 +170772395206,215,0 +170772395254,215,0 +170772395304,215,0 +170772395352,214,0 +170772395400,213,0 +170772395448,214,0 +170772395496,214,0 +170772395545,214,0 +170772395595,214,0 +170772395643,214,0 +170772395691,214,0 +170772395738,214,0 +170772395788,214,0 +170772395837,214,0 +170772395885,215,0 +170772395935,215,0 +170772395984,215,0 +170772396032,215,0 +170772396080,215,0 +170772396128,215,0 +170772396176,213,0 +170772396224,214,0 +170772396272,214,0 +170772396321,214,0 +170772396369,214,0 +170772396417,214,0 +170772396465,214,0 +170772396515,214,0 +170772396563,214,0 +170772396612,214,0 +170772396662,214,0 +170772396709,215,0 +170772396759,215,0 +170772396807,215,0 +170772396855,215,0 +170772396903,215,0 +170772396950,215,0 +170772397000,214,0 +170772397048,213,0 +170772397097,214,0 +170772397145,214,0 +170772397195,214,0 +170772397244,214,0 +170772397292,214,0 +170772397340,214,0 +170772397390,214,0 +170772397438,214,0 +170772397485,214,0 +170772397533,214,0 +170772397581,215,0 +170772397631,215,0 +170772397680,215,0 +170772397730,215,0 +170772397779,214,0 +170772397827,214,0 +170772397877,214,0 +170772397925,214,0 +170772397972,214,0 +170772398022,214,0 +170772398070,214,0 +170772398119,214,0 +170772398167,214,0 +170772398217,214,0 +170772398266,215,0 +170772398314,215,0 +170772398364,215,0 +170772398413,215,0 +170772398461,215,0 +170772398511,215,0 +170772398558,215,0 +170772398606,214,0 +170772398654,214,0 +170772398704,214,0 +170772398752,214,0 +170772398800,214,0 +170772398848,214,0 +170772398897,215,0 +170772398945,215,0 +170772398993,215,0 +170772399041,215,0 +170772399090,215,0 +170772399138,215,0 +170772399188,215,0 +170772399236,215,0 +170772399285,215,0 +170772399333,215,0 +170772399381,215,0 +170772399429,214,0 +170772399477,214,0 +170772399525,214,0 +170772399574,214,0 +170772399622,215,0 +170772399672,215,0 +170772399720,215,0 +170772399769,215,0 +170772399817,215,0 +170772399867,215,0 +170772399915,215,0 +170772399964,215,0 +170772400012,215,0 +170772400060,215,0 +170772400108,215,0 +170772400156,215,0 +170772400204,214,0 +170772400252,214,0 +170772400300,214,0 +170772400348,214,0 +170772400396,214,0 +170772400444,214,0 +170772400492,214,0 +170772400540,214,0 +170772400589,215,0 +170772400637,215,0 +170772400685,215,0 +170772400733,215,0 +170772400781,215,0 +170772400829,215,0 +170772400877,215,0 +170772400925,215,0 +170772400973,215,0 +170772401021,214,0 +170772401068,214,0 +170772401116,214,0 +170772401164,214,0 +170772401212,214,0 +170772401260,214,0 +170772401308,214,0 +170772401356,215,0 +170772401404,214,0 +170772401454,215,0 +170772401501,215,0 +170772401551,215,0 +170772401599,215,0 +170772401647,215,0 +170772401695,215,0 +170772401743,215,0 +170772401791,215,0 +170772401838,214,0 +170772401886,214,0 +170772401934,214,0 +170772401982,214,0 +170772402030,214,0 +170772402078,214,0 +170772402126,215,0 +170772402174,214,0 +170772402222,215,0 +170772402270,215,0 +170772402319,215,0 +170772402367,215,0 +170772402415,215,0 +170772402463,215,0 +170772402510,215,0 +170772402558,215,0 +170772402606,215,0 +170772402654,214,0 +170772402702,214,0 +170772402750,214,0 +170772402798,214,0 +170772402847,215,0 +170772402895,215,0 +170772402944,215,0 +170772402992,215,0 +170772403040,215,0 +170772403088,215,0 +170772403135,215,0 +170772403183,215,0 +170772403231,215,0 +170772403279,215,0 +170772403327,215,0 +170772403376,215,0 +170772403424,215,0 +170772403472,214,0 +170772403520,214,0 +170772403567,214,0 +170772403617,214,0 +170772403665,214,0 +170772403714,214,0 +170772403764,214,0 +170772403813,215,0 +170772403861,215,0 +170772403910,215,0 +170772403958,215,0 +170772404006,215,0 +170772404054,215,0 +170772404102,215,0 +170772404150,215,0 +170772404198,215,0 +170772404247,214,0 +170772404295,213,0 +170772404343,214,0 +170772404391,214,0 +170772404440,214,0 +170772404488,214,0 +170772404536,214,0 +170772404584,214,0 +170772404632,215,0 +170772404680,215,0 +170772404729,215,0 +170772404777,215,0 +170772404827,215,0 +170772404874,215,0 +170772404922,215,0 +170772404970,215,0 +170772405018,215,0 +170772405066,214,0 +170772405114,214,0 +170772405161,214,0 +170772405209,214,0 +170772405257,214,0 +170772405305,214,0 +170772405353,214,0 +170772405401,214,0 +170772405448,215,0 +170772405496,215,0 +170772405544,215,0 +170772405592,215,0 +170772405640,215,0 +170772405688,215,0 +170772405736,215,0 +170772405785,215,0 +170772405835,215,0 +170772405883,214,0 +170772405931,213,0 +170772405978,214,0 +170772406028,214,0 +170772406076,214,0 +170772406124,214,0 +170772406172,214,0 +170772406220,214,0 +170772406269,214,0 +170772406319,214,0 +170772406367,215,0 +170772406415,215,0 +170772406464,215,0 +170772406512,215,0 +170772406562,215,0 +170772406610,215,0 +170772406659,214,0 +170772406709,214,0 +170772406758,214,0 +170772406806,214,0 +170772406854,214,0 +170772406904,214,0 +170772406952,214,0 +170772407001,214,0 +170772407051,214,0 +170772407100,214,0 +170772407150,215,0 +170772407199,215,0 +170772407247,215,0 +170772407295,215,0 +170772407344,215,0 +170772407392,215,0 +170772407440,215,0 +170772407488,214,0 +170772407538,214,0 +170772407586,214,0 +170772407635,214,0 +170772407684,214,0 +170772407732,214,0 +170772407782,214,0 +170772407831,214,0 +170772407879,214,0 +170772407929,215,0 +170772407977,215,0 +170772408025,215,0 +170772408072,215,0 +170772408120,215,0 +170772408170,215,0 +170772408219,215,0 +170772408269,215,0 +170772408317,214,0 +170772408366,214,0 +170772408416,214,0 +170772408465,214,0 +170772408514,214,0 +170772408564,214,0 +170772408612,214,0 +170772408661,215,0 +170772408711,215,0 +170772408759,215,0 +170772408807,215,0 +170772408855,215,0 +170772408904,215,0 +170772408954,215,0 +170772409001,215,0 +170772409051,215,0 +170772409099,214,0 +170772409148,214,0 +170772409196,214,0 +170772409246,214,0 +170772409294,214,0 +170772409342,214,0 +170772409390,214,0 +170772409438,214,0 +170772409487,214,0 +170772409535,215,0 +170772409583,215,0 +170772409631,215,0 +170772409680,215,0 +170772409728,215,0 +170772409778,215,0 +170772409826,215,0 +170772409875,215,0 +170772409925,214,0 +170772409974,214,0 +170772410024,214,0 +170772410073,214,0 +170772410121,214,0 +170772410170,214,0 +170772410217,214,0 +170772410265,214,0 +170772410315,215,0 +170772410363,215,0 +170772410412,215,0 +170772410460,215,0 +170772410510,215,0 +170772410559,215,0 +170772410609,215,0 +170772410657,215,0 +170772410706,214,0 +170772410754,214,0 +170772410802,214,0 +170772410852,214,0 +170772410900,214,0 +170772410948,214,0 +170772410995,214,0 +170772411045,214,0 +170772411093,214,0 +170772411141,215,0 +170772411189,215,0 +170772411238,215,0 +170772411288,215,0 +170772411336,215,0 +170772411383,215,0 +170772411431,215,0 +170772411481,215,0 +170772411529,214,0 +170772411578,214,0 +170772411626,214,0 +170772411675,214,0 +170772411724,215,0 +170772411774,215,0 +170772411823,215,0 +170772411871,215,0 +170772411919,215,0 +170772411967,215,0 +170772412015,215,0 +170772412063,215,0 +170772412111,215,0 +170772412160,215,0 +170772412210,215,0 +170772412259,215,0 +170772412307,215,0 +170772412357,214,0 +170772412406,214,0 +170772412454,215,0 +170772412502,214,0 +170772412550,214,0 +170772412597,215,0 +170772412645,215,0 +170772412695,215,0 +170772412745,215,0 +170772412792,215,0 +170772412840,215,0 +170772412888,215,0 +170772412938,215,0 +170772412986,215,0 +170772413034,215,0 +170772413083,215,0 +170772413131,214,0 +170772413179,214,0 +170772413227,214,0 +170772413275,214,0 +170772413324,214,0 +170772413374,214,0 +170772413422,215,0 +170772413472,215,0 +170772413520,215,0 +170772413569,215,0 +170772413617,215,0 +170772413665,215,0 +170772413713,215,0 +170772413761,215,0 +170772413810,215,0 +170772413860,215,0 +170772413908,215,0 +170772413957,214,0 +170772414005,214,0 +170772414053,214,0 +170772414101,214,0 +170772414151,214,0 +170772414199,214,0 +170772414246,214,0 +170772414294,214,0 +170772414344,215,0 +170772414392,215,0 +170772414441,215,0 +170772414489,215,0 +170772414539,215,0 +170772414587,215,0 +170772414635,215,0 +170772414683,215,0 +170772414732,215,0 +170772414780,214,0 +170772414828,214,0 +170772414876,214,0 +170772414924,214,0 +170772414972,214,0 +170772415020,214,0 +170772415068,214,0 +170772415117,214,0 +170772415165,214,0 +170772415213,215,0 +170772415261,215,0 +170772415309,215,0 +170772415358,215,0 +170772415406,215,0 +170772415456,215,0 +170772415504,215,0 +170772415553,215,0 +170772415601,214,0 +170772415651,214,0 +170772415700,214,0 +170772415748,214,0 +170772415796,214,0 +170772415844,215,0 +170772415894,214,0 +170772415941,215,0 +170772415989,215,0 +170772416037,215,0 +170772416087,215,0 +170772416135,215,0 +170772416183,215,0 +170772416231,215,0 +170772416280,215,0 +170772416330,215,0 +170772416379,214,0 +170772416427,214,0 +170772416475,214,0 +170772416523,214,0 +170772416571,214,0 +170772416619,214,0 +170772416666,214,0 +170772416716,214,0 +170772416764,215,0 +170772416812,215,0 +170772416861,215,0 +170772416911,215,0 +170772416959,215,0 +170772417007,215,0 +170772417054,215,0 +170772417104,215,0 +170772417153,215,0 +170772417201,214,0 +170772417251,214,0 +170772417300,214,0 +170772417348,214,0 +170772417396,214,0 +170772417446,214,0 +170772417495,214,0 +170772417545,215,0 +170772417594,215,0 +170772417642,215,0 +170772417690,215,0 +170772417740,215,0 +170772417788,215,0 +170772417837,215,0 +170772417885,215,0 +170772417935,215,0 +170772417984,214,0 +170772418034,214,0 +170772418083,214,0 +170772418131,214,0 +170772418180,214,0 +170772418228,214,0 +170772418276,214,0 +170772418324,214,0 +170772418373,214,0 +170772418423,215,0 +170772418471,215,0 +170772418520,215,0 +170772418568,215,0 +170772418616,215,0 +170772418665,215,0 +170772418713,215,0 +170772418761,215,0 +170772418809,214,0 +170772418857,214,0 +170772418906,214,0 +170772418954,214,0 +170772419002,214,0 +170772419050,214,0 +170772419098,214,0 +170772419148,214,0 +170772419196,215,0 +170772419243,215,0 +170772419293,215,0 +170772419341,215,0 +170772419389,215,0 +170772419437,215,0 +170772419485,215,0 +170772419533,215,0 +170772419580,215,0 +170772419628,214,0 +170772419676,214,0 +170772419724,214,0 +170772419772,214,0 +170772419820,214,0 +170772419868,214,0 +170772419918,215,0 +170772419966,215,0 +170772420014,215,0 +170772420062,215,0 +170772420111,215,0 +170772420161,215,0 +170772420210,214,0 +170772420258,214,0 +170772420308,214,0 +170772420356,215,0 +170772420404,214,0 +170772420453,214,0 +170772420501,214,0 +170772420549,214,0 +170772420599,214,0 +170772420647,214,0 +170772420694,214,0 +170772420742,215,0 +170772420792,215,0 +170772420841,215,0 +170772420891,215,0 +170772420939,215,0 +170772420988,215,0 +170772421036,215,0 +170772421086,215,0 +170772421134,215,0 +170772421182,215,0 +170772421231,214,0 +170772421279,214,0 +170772421328,214,0 +170772421376,214,0 +170772421424,214,0 +170772421474,215,0 +170772421522,215,0 +170772421570,215,0 +170772421619,215,0 +170772421667,215,0 +170772421715,215,0 +170772421764,215,0 +170772421812,215,0 +170772421860,215,0 +170772421910,215,0 +170772421959,215,0 +170772422009,214,0 +170772422057,214,0 +170772422106,214,0 +170772422154,214,0 +170772422204,214,0 +170772422252,214,0 +170772422300,214,0 +170772422347,214,0 +170772422395,214,0 +170772422443,214,0 +170772422491,215,0 +170772422539,215,0 +170772422587,215,0 +170772422636,215,0 +170772422686,215,0 +170772422734,215,0 +170772422782,215,0 +170772422830,214,0 +170772422878,214,0 +170772422926,214,0 +170772422973,214,0 +170772423023,214,0 +170772423071,214,0 +170772423121,214,0 +170772423170,214,0 +170772423218,214,0 +170772423266,214,0 +170772423315,214,0 +170772423363,214,0 +170772423411,214,0 +170772423461,215,0 +170772423509,215,0 +170772423557,214,0 +170772423606,215,0 +170772423654,214,0 +170772423702,214,0 +170772423750,214,0 +170772423800,214,0 +170772423848,214,0 +170772423895,214,0 +170772423945,214,0 +170772423993,214,0 +170772424041,215,0 +170772424089,215,0 +170772424138,215,0 +170772424186,215,0 +170772424236,215,0 +170772424284,215,0 +170772424333,215,0 +170772424381,215,0 +170772424429,214,0 +170772424479,214,0 +170772424527,214,0 +170772424575,214,0 +170772424624,214,0 +170772424672,214,0 +170772424720,214,0 +170772424768,215,0 +170772424816,215,0 +170772424864,215,0 +170772424913,215,0 +170772424961,215,0 +170772425009,215,0 +170772425059,215,0 +170772425107,215,0 +170772425155,215,0 +170772425203,216,0 +170772425250,214,0 +170772425300,214,0 +170772425349,214,0 +170772425397,214,0 +170772425445,214,0 +170772425493,214,0 +170772425543,215,0 +170772425591,215,0 +170772425640,215,0 +170772425688,215,0 +170772425736,215,0 +170772425784,215,0 +170772425832,215,0 +170772425880,215,0 +170772425928,215,0 +170772425976,215,0 +170772426026,215,0 +170772426074,214,0 +170772426123,214,0 +170772426171,214,0 +170772426221,214,0 +170772426268,214,0 +170772426318,214,0 +170772426366,214,0 +170772426415,214,0 +170772426463,214,0 +170772426511,214,0 +170772426561,215,0 +170772426609,215,0 +170772426657,215,0 +170772426705,215,0 +170772426753,215,0 +170772426801,215,0 +170772426849,215,0 +170772426898,214,0 +170772426946,214,0 +170772426994,214,0 +170772427044,214,0 +170772427093,214,0 +170772427141,214,0 +170772427189,214,0 +170772427237,214,0 +170772427287,215,0 +170772427334,215,0 +170772427382,215,0 +170772427430,215,0 +170772427478,215,0 +170772427526,215,0 +170772427574,215,0 +170772427624,215,0 +170772427672,214,0 +170772427719,214,0 +170772427769,214,0 +170772427817,215,0 +170772427865,215,0 +170772427913,215,0 +170772427963,215,0 +170772428010,215,0 +170772428058,215,0 +170772428108,215,0 +170772428156,215,0 +170772428205,215,0 +170772428253,215,0 +170772428303,216,0 +170772428351,215,0 +170772428400,215,0 +170772428450,215,0 +170772428499,214,0 +170772428547,215,0 +170772428597,214,0 +170772428645,215,0 +170772428693,215,0 +170772428742,215,0 +170772428790,215,0 +170772428838,215,0 +170772428886,215,0 +170772428934,215,0 +170772428981,215,0 +170772429029,215,0 +170772429077,215,0 +170772429125,215,0 +170772429173,215,0 +170772429221,215,0 +170772429269,214,0 +170772429317,214,0 +170772429367,214,0 +170772429416,214,0 +170772429466,214,0 +170772429515,215,0 +170772429563,215,0 +170772429611,215,0 +170772429659,215,0 +170772429709,215,0 +170772429757,215,0 +170772429804,215,0 +170772429852,215,0 +170772429900,215,0 +170772429948,215,0 +170772429998,215,0 +170772430046,215,0 +170772430094,214,0 +170772430143,214,0 +170772430191,214,0 +170772430239,214,0 +170772430288,214,0 +170772430336,215,0 +170772430384,215,0 +170772430432,215,0 +170772430482,215,0 +170772430530,215,0 +170772430579,215,0 +170772430627,215,0 +170772430677,215,0 +170772430724,215,0 +170772430774,215,0 +170772430823,215,0 +170772430871,215,0 +170772430921,214,0 +170772430969,214,0 +170772431017,214,0 +170772431066,214,0 +170772431114,215,0 +170772431162,215,0 +170772431210,215,0 +170772431258,215,0 +170772431306,215,0 +170772431355,215,0 +170772431403,215,0 +170772431451,215,0 +170772431501,215,0 +170772431548,215,0 +170772431596,215,0 +170772431644,215,0 +170772431692,214,0 +170772431742,214,0 +170772431790,214,0 +170772431839,214,0 +170772431889,214,0 +170772431937,215,0 +170772431985,215,0 +170772432034,215,0 +170772432082,215,0 +170772432130,215,0 +170772432179,215,0 +170772432227,215,0 +170772432275,215,0 +170772432325,215,0 +170772432373,215,0 +170772432420,215,0 +170772432470,215,0 +170772432519,214,0 +170772432567,214,0 +170772432615,214,0 +170772432663,214,0 +170772432713,214,0 +170772432760,214,0 +170772432810,214,0 +170772432858,214,0 +170772432907,214,0 +170772432956,215,0 +170772433005,214,0 +170772433055,215,0 +170772433102,215,0 +170772433150,215,0 +170772433198,215,0 +170772433248,215,0 +170772433296,214,0 +170772433344,213,0 +170772433392,213,0 +170772433440,214,0 +170772433487,214,0 +170772433535,214,0 +170772433583,214,0 +170772433631,214,0 +170772433679,214,0 +170772433727,214,0 +170772433775,214,0 +170772433823,215,0 +170772433872,215,0 +170772433920,215,0 +170772433968,215,0 +170772434016,215,0 +170772434064,215,0 +170772434112,214,0 +170772434161,213,0 +170772434209,214,0 +170772434257,214,0 +170772434305,214,0 +170772434353,214,0 +170772434403,214,0 +170772434451,214,0 +170772434500,214,0 +170772434548,214,0 +170772434597,214,0 +170772434647,214,0 +170772434695,215,0 +170772434743,215,0 +170772434792,215,0 +170772434840,215,0 +170772434890,215,0 +170772434939,214,0 +170772434987,213,0 +170772435036,213,0 +170772435084,213,0 +170772435132,214,0 +170772435180,214,0 +170772435228,214,0 +170772435276,214,0 +170772435324,214,0 +170772435372,214,0 +170772435420,214,0 +170772435468,214,0 +170772435516,214,0 +170772435565,214,0 +170772435613,215,0 +170772435663,215,0 +170772435712,215,0 +170772435760,213,0 +170772435808,213,0 +170772435857,213,0 +170772435905,214,0 +170772435953,214,0 +170772436001,214,0 +170772436049,214,0 +170772436099,214,0 +170772436147,214,0 +170772436194,214,0 +170772436242,215,0 +170772436290,214,0 +170772436340,215,0 +170772436388,215,0 +170772436435,215,0 +170772436485,215,0 +170772436533,214,0 +170772436581,214,0 +170772436629,214,0 +170772436678,214,0 +170772436726,214,0 +170772436775,214,0 +170772436823,214,0 +170772436871,214,0 +170772436921,215,0 +170772436970,215,0 +170772437020,215,0 +170772437069,215,0 +170772437117,215,0 +170772437165,215,0 +170772437213,215,0 +170772437261,215,0 +170772437310,215,0 +170772437360,214,0 +170772437408,214,0 +170772437456,214,0 +170772437504,214,0 +170772437553,214,0 +170772437601,214,0 +170772437651,214,0 +170772437698,215,0 +170772437746,214,0 +170772437794,215,0 +170772437844,215,0 +170772437892,215,0 +170772437941,215,0 +170772437991,215,0 +170772438039,215,0 +170772438087,215,0 +170772438136,214,0 +170772438186,214,0 +170772438235,214,0 +170772438283,214,0 +170772438331,214,0 +170772438380,214,0 +170772438428,215,0 +170772438476,215,0 +170772438524,215,0 +170772438572,215,0 +170772438620,215,0 +170772438668,215,0 +170772438716,215,0 +170772438765,215,0 +170772438813,215,0 +170772438863,215,0 +170772438912,215,0 +170772438960,214,0 +170772439008,214,0 +170772439058,214,0 +170772439107,214,0 +170772439155,214,0 +170772439203,214,0 +170772439251,215,0 +170772439299,215,0 +170772439347,215,0 +170772439396,215,0 +170772439446,215,0 +170772439494,215,0 +170772439542,215,0 +170772439590,215,0 +170772439638,215,0 +170772439688,215,0 +170772439736,215,0 +170772439784,214,0 +170772439832,215,0 +170772439880,215,0 +170772439927,215,0 +170772439977,215,0 +170772440025,215,0 +170772440073,215,0 +170772440121,215,0 +170772440169,215,0 +170772440217,215,0 +170772440265,215,0 +170772440313,215,0 +170772440361,215,0 +170772440410,215,0 +170772440458,215,0 +170772440508,215,0 +170772440556,215,0 +170772440605,215,0 +170772440653,215,0 +170772440701,215,0 +170772440750,215,0 +170772440798,215,0 +170772440848,215,0 +170772440896,215,0 +170772440944,215,0 +170772440992,215,0 +170772441040,215,0 +170772441087,215,0 +170772441137,215,0 +170772441186,215,0 +170772441234,215,0 +170772441282,215,0 +170772441330,215,0 +170772441380,214,0 +170772441428,214,0 +170772441476,214,0 +170772441524,214,0 +170772441573,215,0 +170772441621,215,0 +170772441669,215,0 +170772441718,215,0 +170772441766,215,0 +170772441814,215,0 +170772441862,215,0 +170772441910,215,0 +170772441958,215,0 +170772442007,215,0 +170772442057,215,0 +170772442106,215,0 +170772442154,214,0 +170772442202,214,0 +170772442250,214,0 +170772442298,214,0 +170772442346,214,0 +170772442396,214,0 +170772442445,214,0 +170772442493,214,0 +170772442542,215,0 +170772442592,215,0 +170772442640,215,0 +170772442688,215,0 +170772442736,215,0 +170772442785,215,0 +170772442833,215,0 +170772442881,215,0 +170772442929,215,0 +170772442979,214,0 +170772443028,214,0 +170772443078,214,0 +170772443126,214,0 +170772443174,214,0 +170772443222,214,0 +170772443271,214,0 +170772443321,214,0 +170772443370,215,0 +170772443418,215,0 +170772443468,215,0 +170772443516,215,0 +170772443564,215,0 +170772443613,215,0 +170772443661,215,0 +170772443709,215,0 +170772443759,214,0 +170772443808,214,0 +170772443856,214,0 +170772443904,214,0 +170772443953,214,0 +170772444001,214,0 +170772444049,214,0 +170772444097,215,0 +170772444145,215,0 +170772444195,215,0 +170772444244,215,0 +170772444292,215,0 +170772444342,215,0 +170772444390,215,0 +170772444437,215,0 +170772444485,215,0 +170772444533,215,0 +170772444583,214,0 +170772444632,213,0 +170772444680,214,0 +170772444730,214,0 +170772444778,214,0 +170772444826,214,0 +170772444874,214,0 +170772444922,215,0 +170772444969,215,0 +170772445019,215,0 +170772445067,215,0 +170772445115,215,0 +170772445164,215,0 +170772445212,215,0 +170772445260,215,0 +170772445310,215,0 +170772445359,215,0 +170772445409,214,0 +170772445458,214,0 +170772445508,214,0 +170772445556,214,0 +170772445605,214,0 +170772445655,214,0 +170772445702,214,0 +170772445750,214,0 +170772445798,215,0 +170772445848,215,0 +170772445896,215,0 +170772445944,215,0 +170772445993,215,0 +170772446041,215,0 +170772446091,215,0 +170772446140,215,0 +170772446188,214,0 +170772446238,214,0 +170772446286,214,0 +170772446335,214,0 +170772446385,214,0 +170772446433,214,0 +170772446482,214,0 +170772446532,214,0 +170772446580,214,0 +170772446629,214,0 +170772446677,215,0 +170772446725,215,0 +170772446773,215,0 +170772446823,215,0 +170772446871,215,0 +170772446920,215,0 +170772446970,215,0 +170772447018,213,0 +170772447066,213,0 +170772447115,214,0 +170772447163,214,0 +170772447213,214,0 +170772447261,214,0 +170772447310,214,0 +170772447358,214,0 +170772447408,215,0 +170772447456,214,0 +170772447505,215,0 +170772447555,215,0 +170772447603,215,0 +170772447651,215,0 +170772447699,215,0 +170772447748,215,0 +170772447796,214,0 +170772447846,214,0 +170772447895,214,0 +170772447943,214,0 +170772447993,214,0 +170772448042,214,0 +170772448092,214,0 +170772448140,214,0 +170772448188,214,0 +170772448235,215,0 +170772448283,215,0 +170772448331,214,0 +170772448379,215,0 +170772448427,215,0 +170772448476,215,0 +170772448524,215,0 +170772448572,215,0 +170772448620,214,0 +170772448668,214,0 +170772448717,214,0 +170772448765,214,0 +170772448813,214,0 +170772448861,214,0 +170772448910,214,0 +170772448958,214,0 +170772449008,215,0 +170772449056,215,0 +170772449105,215,0 +170772449153,215,0 +170772449203,215,0 +170772449252,215,0 +170772449300,215,0 +170772449350,215,0 +170772449398,214,0 +170772449447,214,0 +170772449495,214,0 +170772449543,215,0 +170772449591,214,0 +170772449639,215,0 +170772449687,215,0 +170772449735,215,0 +170772449783,215,0 +170772449831,215,0 +170772449878,215,0 +170772449926,215,0 +170772449974,215,0 +170772450022,215,0 +170772450070,215,0 +170772450118,215,0 +170772450166,215,0 +170772450215,214,0 +170772450263,214,0 +170772450311,214,0 +170772450360,215,0 +170772450408,215,0 +170772450456,215,0 +170772450504,215,0 +170772450552,215,0 +170772450600,215,0 +170772450649,215,0 +170772450697,215,0 +170772450745,215,0 +170772450793,215,0 +170772450840,215,0 +170772450890,215,0 +170772450938,215,0 +170772450986,215,0 +170772451033,214,0 +170772451081,214,0 +170772451129,214,0 +170772451177,214,0 +170772451225,214,0 +170772451273,214,0 +170772451322,214,0 +170772451372,214,0 +170772451419,215,0 +170772451467,215,0 +170772451515,215,0 +170772451563,215,0 +170772451612,215,0 +170772451660,215,0 +170772451708,215,0 +170772451756,215,0 +170772451804,214,0 +170772451852,214,0 +170772451900,214,0 +170772451948,214,0 +170772451995,214,0 +170772452043,214,0 +170772452091,214,0 +170772452139,215,0 +170772452187,215,0 +170772452234,215,0 +170772452282,215,0 +170772452330,215,0 +170772452378,215,0 +170772452426,215,0 +170772452474,215,0 +170772452521,215,0 +170772452569,215,0 +170772452617,214,0 +170772452665,214,0 +170772452713,214,0 +170772452762,214,0 +170772452810,214,0 +170772452858,214,0 +170772452906,214,0 +170772452956,215,0 +170772453003,215,0 +170772453053,215,0 +170772453103,215,0 +170772453152,215,0 +170772453200,215,0 +170772453248,215,0 +170772453296,215,0 +170772453345,215,0 +170772453394,215,0 +170772453442,213,0 +170772453492,214,0 +170772453540,214,0 +170772453587,214,0 +170772453635,214,0 +170772453683,214,0 +170772453731,214,0 +170772453781,215,0 +170772453829,215,0 +170772453878,215,0 +170772453928,215,0 +170772453975,215,0 +170772454023,215,0 +170772454071,215,0 +170772454121,215,0 +170772454169,215,0 +170772454217,215,0 +170772454266,213,0 +170772454314,213,0 +170772454362,213,0 +170772454410,214,0 +170772454458,214,0 +170772454506,214,0 +170772454554,214,0 +170772454601,214,0 +170772454649,214,0 +170772454697,214,0 +170772454745,215,0 +170772454793,215,0 +170772454841,215,0 +170772454889,215,0 +170772454937,215,0 +170772454984,215,0 +170772455032,214,0 +170772455080,214,0 +170772455128,214,0 +170772455176,214,0 +170772455224,214,0 +170772455272,214,0 +170772455321,214,0 +170772455369,214,0 +170772455417,214,0 +170772455465,214,0 +170772455514,215,0 +170772455564,215,0 +170772455612,215,0 +170772455660,215,0 +170772455707,215,0 +170772455757,215,0 +170772455805,215,0 +170772455852,214,0 +170772455900,214,0 +170772455948,214,0 +170772455996,214,0 +170772456045,214,0 +170772456093,214,0 +170772456141,214,0 +170772456189,214,0 +170772456237,214,0 +170772456286,215,0 +170772456334,215,0 +170772456384,215,0 +170772456433,215,0 +170772456483,215,0 +170772456532,215,0 +170772456582,215,0 +170772456630,215,0 +170772456677,214,0 +170772456725,214,0 +170772456775,214,0 +170772456824,214,0 +170772456874,214,0 +170772456922,214,0 +170772456971,214,0 +170772457019,214,0 +170772457069,215,0 +170772457118,215,0 +170772457168,215,0 +170772457217,215,0 +170772457265,215,0 +170772457315,215,0 +170772457362,215,0 +170772457410,215,0 +170772457458,214,0 +170772457506,214,0 +170772457554,214,0 +170772457601,214,0 +170772457649,214,0 +170772457697,214,0 +170772457745,214,0 +170772457794,214,0 +170772457842,215,0 +170772457892,215,0 +170772457939,215,0 +170772457987,215,0 +170772458035,215,0 +170772458083,215,0 +170772458131,215,0 +170772458180,215,0 +170772458230,214,0 +170772458277,214,0 +170772458327,214,0 +170772458375,214,0 +170772458424,214,0 +170772458472,214,0 +170772458520,214,0 +170772458568,214,0 +170772458616,214,0 +170772458663,215,0 +170772458711,215,0 +170772458759,215,0 +170772458807,215,0 +170772458855,215,0 +170772458903,215,0 +170772458952,215,0 +170772459000,215,0 +170772459048,214,0 +170772459097,214,0 +170772459145,214,0 +170772459193,214,0 +170772459240,214,0 +170772459288,214,0 +170772459336,215,0 +170772459384,214,0 +170772459432,215,0 +170772459480,215,0 +170772459529,215,0 +170772459577,215,0 +170772459625,215,0 +170772459673,215,0 +170772459721,215,0 +170772459769,215,0 +170772459817,215,0 +170772459866,214,0 +170772459915,213,0 +170772459965,214,0 +170772460013,214,0 +170772460061,214,0 +170772460108,214,0 +170772460156,214,0 +170772460204,214,0 +170772460252,215,0 +170772460301,214,0 +170772460349,215,0 +170772460399,215,0 +170772460446,215,0 +170772460494,215,0 +170772460542,215,0 +170772460590,215,0 +170772460639,215,0 +170772460687,214,0 +170772460735,214,0 +170772460785,214,0 +170772460832,214,0 +170772460882,214,0 +170772460930,214,0 +170772460977,214,0 +170772461025,214,0 +170772461073,215,0 +170772461121,215,0 +170772461169,215,0 +170772461217,215,0 +170772461264,215,0 +170772461314,215,0 +170772461362,215,0 +170772461409,215,0 +170772461457,214,0 +170772461505,214,0 +170772461553,214,0 +170772461601,214,0 +170772461649,214,0 +170772461698,214,0 +170772461746,214,0 +170772461794,215,0 +170772461841,215,0 +170772461889,215,0 +170772461937,215,0 +170772461985,215,0 +170772462033,215,0 +170772462082,215,0 +170772462130,215,0 +170772462178,215,0 +170772462226,215,0 +170772462274,214,0 +170772462324,214,0 +170772462372,214,0 +170772462421,214,0 +170772462471,214,0 +170772462519,215,0 +170772462566,215,0 +170772462614,215,0 +170772462664,215,0 +170772462712,215,0 +170772462761,215,0 +170772462809,215,0 +170772462857,215,0 +170772462905,215,0 +170772462953,215,0 +170772463001,215,0 +170772463051,215,0 +170772463100,214,0 +170772463148,214,0 +170772463196,214,0 +170772463244,214,0 +170772463293,214,0 +170772463341,214,0 +170772463391,214,0 +170772463439,214,0 +170772463488,215,0 +170772463538,215,0 +170772463586,215,0 +170772463634,215,0 +170772463683,215,0 +170772463733,215,0 +170772463780,215,0 +170772463830,215,0 +170772463878,214,0 +170772463925,214,0 +170772463973,214,0 +170772464021,214,0 +170772464071,214,0 +170772464120,214,0 +170772464168,215,0 +170772464216,214,0 +170772464264,215,0 +170772464314,215,0 +170772464363,215,0 +170772464411,215,0 +170772464459,215,0 +170772464507,215,0 +170772464555,215,0 +170772464603,215,0 +170772464651,215,0 +170772464699,214,0 +170772464746,214,0 +170772464796,214,0 +170772464844,214,0 +170772464892,214,0 +170772464940,214,0 +170772464988,214,0 +170772465036,215,0 +170772465085,215,0 +170772465133,215,0 +170772465181,215,0 +170772465229,215,0 +170772465277,215,0 +170772465325,215,0 +170772465373,215,0 +170772465421,215,0 +170772465469,214,0 +170772465516,214,0 +170772465564,214,0 +170772465612,214,0 +170772465660,214,0 +170772465710,214,0 +170772465759,214,0 +170772465807,215,0 +170772465855,215,0 +170772465905,215,0 +170772465952,215,0 +170772466000,215,0 +170772466048,215,0 +170772466096,215,0 +170772466144,215,0 +170772466192,215,0 +170772466240,215,0 +170772466288,214,0 +170772466337,214,0 +170772466387,214,0 +170772466437,214,0 +170772466486,215,0 +170772466534,215,0 +170772466582,215,0 +170772466630,214,0 +170772466679,215,0 +170772466727,215,0 +170772466775,215,0 +170772466823,215,0 +170772466871,215,0 +170772466919,215,0 +170772466969,215,0 +170772467017,215,0 +170772467066,214,0 +170772467114,214,0 +170772467162,214,0 +170772467211,214,0 +170772467259,214,0 +170772467307,214,0 +170772467355,215,0 +170772467403,215,0 +170772467453,215,0 +170772467502,215,0 +170772467550,215,0 +170772467600,215,0 +170772467649,215,0 +170772467697,215,0 +170772467745,215,0 +170772467793,215,0 +170772467841,215,0 +170772467889,214,0 +170772467938,214,0 +170772467986,214,0 +170772468035,214,0 +170772468083,214,0 +170772468131,214,0 +170772468179,214,0 +170772468229,215,0 +170772468277,214,0 +170772468326,215,0 +170772468374,215,0 +170772468424,215,0 +170772468472,215,0 +170772468520,215,0 +170772468569,215,0 +170772468617,215,0 +170772468665,214,0 +170772468714,214,0 +170772468762,214,0 +170772468810,214,0 +170772468858,214,0 +170772468907,214,0 +170772468956,214,0 +170772469004,215,0 +170772469052,215,0 +170772469100,215,0 +170772469148,215,0 +170772469197,215,0 +170772469245,215,0 +170772469293,215,0 +170772469341,215,0 +170772469388,215,0 +170772469436,215,0 +170772469484,214,0 +170772469532,214,0 +170772469581,214,0 +170772469629,214,0 +170772469677,214,0 +170772469725,214,0 +170772469773,214,0 +170772469822,214,0 +170772469870,215,0 +170772469918,214,0 +170772469967,215,0 +170772470017,215,0 +170772470064,215,0 +170772470112,215,0 +170772470160,215,0 +170772470208,215,0 +170772470257,214,0 +170772470305,214,0 +170772470353,214,0 +170772470402,214,0 +170772470450,214,0 +170772470498,214,0 +170772470548,214,0 +170772470596,214,0 +170772470644,214,0 +170772470691,214,0 +170772470739,214,0 +170772470787,215,0 +170772470837,215,0 +170772470885,215,0 +170772470933,215,0 +170772470981,215,0 +170772471030,215,0 +170772471078,214,0 +170772471126,213,0 +170772471174,214,0 +170772471222,214,0 +170772471271,214,0 +170772471319,214,0 +170772471369,214,0 +170772471418,214,0 +170772471466,214,0 +170772471514,214,0 +170772471562,215,0 +170772471611,214,0 +170772471661,215,0 +170772471709,215,0 +170772471757,215,0 +170772471805,215,0 +170772471852,214,0 +170772471900,213,0 +170772471950,214,0 +170772471999,214,0 +170772472047,214,0 +170772472096,214,0 +170772472144,214,0 +170772472193,214,0 +170772472241,214,0 +170772472289,214,0 +170772472337,214,0 +170772472385,215,0 +170772472432,215,0 +170772472480,215,0 +170772472528,215,0 +170772472577,215,0 +170772472625,215,0 +170772472673,214,0 +170772472721,213,0 +170772472769,214,0 +170772472817,214,0 +170772472865,214,0 +170772472912,214,0 +170772472960,214,0 +170772473008,214,0 +170772473058,214,0 +170772473107,214,0 +170772473155,214,0 +170772473204,214,0 +170772473252,215,0 +170772473300,215,0 +170772473350,215,0 +170772473398,215,0 +170772473445,215,0 +170772473493,214,0 +170772473543,214,0 +170772473591,214,0 +170772473640,214,0 +170772473688,214,0 +170772473736,214,0 +170772473785,215,0 +170772473835,214,0 +170772473884,215,0 +170772473934,215,0 +170772473982,215,0 +170772474030,215,0 +170772474078,215,0 +170772474126,215,0 +170772474175,215,0 +170772474223,215,0 +170772474271,214,0 +170772474319,214,0 +170772474367,214,0 +170772474415,214,0 +170772474464,214,0 +170772474512,214,0 +170772474560,214,0 +170772474608,215,0 +170772474656,215,0 +170772474704,215,0 +170772474752,215,0 +170772474800,215,0 +170772474849,215,0 +170772474897,215,0 +170772474947,215,0 +170772474994,215,0 +170772475042,215,0 +170772475092,214,0 +170772475140,214,0 +170772475188,214,0 +170772475236,214,0 +170772475284,214,0 +170772475332,214,0 +170772475381,214,0 +170772475429,214,0 +170772475479,215,0 +170772475527,215,0 +170772475574,215,0 +170772475622,215,0 +170772475670,215,0 +170772475718,215,0 +170772475766,215,0 +170772475814,215,0 +170772475862,215,0 +170772475910,214,0 +170772475958,214,0 +170772476008,214,0 +170772476055,214,0 +170772476103,214,0 +170772476153,214,0 +170772476202,214,0 +170772476250,214,0 +170772476298,215,0 +170772476346,215,0 +170772476394,215,0 +170772476442,215,0 +170772476490,215,0 +170772476538,215,0 +170772476586,215,0 +170772476635,215,0 +170772476683,215,0 +170772476733,214,0 +170772476781,214,0 +170772476828,214,0 +170772476876,214,0 +170772476924,214,0 +170772476974,215,0 +170772477022,215,0 +170772477070,215,0 +170772477118,215,0 +170772477166,215,0 +170772477214,215,0 +170772477262,215,0 +170772477311,215,0 +170772477359,215,0 +170772477407,215,0 +170772477456,215,0 +170772477506,215,0 +170772477555,215,0 +170772477605,215,0 +170772477653,215,0 +170772477701,215,0 +170772477749,215,0 +170772477797,215,0 +170772477846,215,0 +170772477896,216,0 +170772477945,215,0 +170772477995,215,0 +170772478042,215,0 +170772478091,215,0 +170772478138,215,0 +170772478188,215,0 +170772478237,215,0 +170772478285,215,0 +170772478333,215,0 +170772478381,215,0 +170772478429,215,0 +170772478479,215,0 +170772478528,215,0 +170772478578,215,0 +170772478626,215,0 +170772478674,215,0 +170772478723,215,0 +170772478771,215,0 +170772478821,215,0 +170772478868,215,0 +170772478918,215,0 +170772478966,215,0 +170772479014,215,0 +170772479062,215,0 +170772479110,214,0 +170772479158,214,0 +170772479206,214,0 +170772479253,215,0 +170772479301,215,0 +170772479351,215,0 +170772479400,215,0 +170772479450,215,0 +170772479498,215,0 +170772479546,215,0 +170772479595,215,0 +170772479643,215,0 +170772479691,215,0 +170772479739,215,0 +170772479789,215,0 +170772479836,215,0 +170772479886,214,0 +170772479934,214,0 +170772479982,215,0 +170772480029,215,0 diff --git a/laser_value/0212-18.csv b/laser_value/0212-18.csv new file mode 100644 index 0000000..69968db --- /dev/null +++ b/laser_value/0212-18.csv @@ -0,0 +1,7434 @@ +timestamp,laser_value,event +170772480078,215,0 +170772480127,215,0 +170772480175,215,0 +170772480223,215,0 +170772480271,215,0 +170772480321,215,0 +170772480369,215,0 +170772480418,215,0 +170772480468,215,0 +170772480515,215,0 +170772480565,215,0 +170772480613,215,0 +170772480662,215,0 +170772480710,214,0 +170772480758,214,0 +170772480807,214,0 +170772480855,214,0 +170772480905,214,0 +170772480954,215,0 +170772481002,214,0 +170772481050,215,0 +170772481100,215,0 +170772481147,215,0 +170772481195,215,0 +170772481245,215,0 +170772481294,215,0 +170772481344,215,0 +170772481393,215,0 +170772481441,215,0 +170772481489,214,0 +170772481537,214,0 +170772481587,214,0 +170772481635,214,0 +170772481684,214,0 +170772481734,214,0 +170772481782,214,0 +170772481829,214,0 +170772481877,214,0 +170772481925,214,0 +170772481973,215,0 +170772482021,215,0 +170772482070,215,0 +170772482120,215,0 +170772482167,215,0 +170772482217,215,0 +170772482265,215,0 +170772482313,213,0 +170772482361,213,0 +170772482410,214,0 +170772482458,213,0 +170772482508,214,0 +170772482557,214,0 +170772482605,214,0 +170772482653,214,0 +170772482701,214,0 +170772482750,214,0 +170772482798,214,0 +170772482848,215,0 +170772482896,215,0 +170772482943,215,0 +170772482991,215,0 +170772483039,215,0 +170772483089,214,0 +170772483137,213,0 +170772483185,213,0 +170772483233,213,0 +170772483282,213,0 +170772483332,214,0 +170772483381,214,0 +170772483429,214,0 +170772483479,214,0 +170772483528,214,0 +170772483576,214,0 +170772483624,214,0 +170772483674,215,0 +170772483721,215,0 +170772483771,215,0 +170772483819,215,0 +170772483867,215,0 +170772483916,214,0 +170772483966,213,0 +170772484015,213,0 +170772484064,214,0 +170772484112,214,0 +170772484160,214,0 +170772484210,214,0 +170772484257,214,0 +170772484307,214,0 +170772484357,214,0 +170772484404,214,0 +170772484452,214,0 +170772484500,214,0 +170772484550,214,0 +170772484599,214,0 +170772484647,215,0 +170772484696,214,0 +170772484744,214,0 +170772484792,213,0 +170772484840,214,0 +170772484888,214,0 +170772484936,214,0 +170772484984,214,0 +170772485032,214,0 +170772485080,214,0 +170772485130,214,0 +170772485178,214,0 +170772485227,215,0 +170772485275,215,0 +170772485324,215,0 +170772485374,215,0 +170772485423,215,0 +170772485473,215,0 +170772485521,214,0 +170772485570,214,0 +170772485618,214,0 +170772485666,214,0 +170772485715,214,0 +170772485765,214,0 +170772485815,214,0 +170772485863,215,0 +170772485911,215,0 +170772485958,215,0 +170772486008,215,0 +170772486056,215,0 +170772486104,215,0 +170772486153,215,0 +170772486203,215,0 +170772486251,215,0 +170772486300,214,0 +170772486350,214,0 +170772486399,214,0 +170772486447,214,0 +170772486497,214,0 +170772486545,214,0 +170772486594,214,0 +170772486642,214,0 +170772486690,215,0 +170772486738,215,0 +170772486787,215,0 +170772486835,215,0 +170772486883,215,0 +170772486931,215,0 +170772486980,215,0 +170772487028,215,0 +170772487078,215,0 +170772487126,214,0 +170772487174,214,0 +170772487223,214,0 +170772487271,214,0 +170772487319,214,0 +170772487367,214,0 +170772487416,214,0 +170772487464,214,0 +170772487512,215,0 +170772487562,215,0 +170772487609,215,0 +170772487657,215,0 +170772487707,215,0 +170772487756,215,0 +170772487804,215,0 +170772487852,215,0 +170772487902,214,0 +170772487951,214,0 +170772487999,214,0 +170772488047,214,0 +170772488095,214,0 +170772488143,214,0 +170772488190,214,0 +170772488238,214,0 +170772488288,215,0 +170772488336,215,0 +170772488384,215,0 +170772488433,215,0 +170772488481,215,0 +170772488529,216,0 +170772488577,215,0 +170772488626,215,0 +170772488674,215,0 +170772488722,214,0 +170772488770,214,0 +170772488820,214,0 +170772488868,214,0 +170772488917,215,0 +170772488967,215,0 +170772489015,215,0 +170772489062,215,0 +170772489110,215,0 +170772489160,215,0 +170772489209,215,0 +170772489259,215,0 +170772489307,215,0 +170772489355,215,0 +170772489402,215,0 +170772489450,215,0 +170772489500,215,0 +170772489549,215,0 +170772489597,215,0 +170772489647,215,0 +170772489696,215,0 +170772489744,215,0 +170772489792,215,0 +170772489842,215,0 +170772489890,215,0 +170772489938,215,0 +170772489987,215,0 +170772490035,215,0 +170772490084,215,0 +170772490134,215,0 +170772490182,215,0 +170772490231,215,0 +170772490279,215,0 +170772490329,215,0 +170772490377,215,0 +170772490425,215,0 +170772490473,215,0 +170772490521,215,0 +170772490568,215,0 +170772490618,215,0 +170772490666,215,0 +170772490714,215,0 +170772490763,216,0 +170772490813,215,0 +170772490861,215,0 +170772490909,215,0 +170772490956,215,0 +170772491006,215,0 +170772491054,215,0 +170772491103,214,0 +170772491151,213,0 +170772491201,214,0 +170772491250,214,0 +170772491298,214,0 +170772491346,214,0 +170772491396,214,0 +170772491444,214,0 +170772491492,214,0 +170772491540,214,0 +170772491588,214,0 +170772491637,214,0 +170772491685,215,0 +170772491733,215,0 +170772491781,215,0 +170772491829,215,0 +170772491879,215,0 +170772491927,215,0 +170772491975,215,0 +170772492023,215,0 +170772492072,215,0 +170772492120,215,0 +170772492169,215,0 +170772492219,215,0 +170772492267,215,0 +170772492316,214,0 +170772492364,214,0 +170772492412,214,0 +170772492462,214,0 +170772492509,214,0 +170772492559,215,0 +170772492608,215,0 +170772492656,215,0 +170772492704,215,0 +170772492752,215,0 +170772492800,215,0 +170772492848,215,0 +170772492896,215,0 +170772492944,215,0 +170772492992,215,0 +170772493040,214,0 +170772493090,214,0 +170772493138,214,0 +170772493185,214,0 +170772493233,214,0 +170772493281,214,0 +170772493331,215,0 +170772493379,215,0 +170772493427,214,0 +170772493475,215,0 +170772493523,215,0 +170772493571,215,0 +170772493619,215,0 +170772493668,215,0 +170772493718,215,0 +170772493765,215,0 +170772493813,215,0 +170772493861,215,0 +170772493911,214,0 +170772493959,214,0 +170772494007,214,0 +170772494056,214,0 +170772494104,214,0 +170772494152,214,0 +170772494201,215,0 +170772494249,215,0 +170772494297,215,0 +170772494345,215,0 +170772494393,215,0 +170772494441,215,0 +170772494488,215,0 +170772494536,215,0 +170772494584,215,0 +170772494632,215,0 +170772494680,215,0 +170772494729,214,0 +170772494777,214,0 +170772494825,214,0 +170772494873,214,0 +170772494921,214,0 +170772494968,214,0 +170772495016,214,0 +170772495066,215,0 +170772495115,215,0 +170772495163,215,0 +170772495211,215,0 +170772495259,215,0 +170772495306,215,0 +170772495354,215,0 +170772495404,215,0 +170772495452,215,0 +170772495499,214,0 +170772495547,214,0 +170772495595,214,0 +170772495643,214,0 +170772495693,214,0 +170772495741,214,0 +170772495790,214,0 +170772495838,214,0 +170772495886,214,0 +170772495934,215,0 +170772495982,214,0 +170772496030,215,0 +170772496079,215,0 +170772496127,215,0 +170772496175,215,0 +170772496223,215,0 +170772496271,215,0 +170772496320,214,0 +170772496368,214,0 +170772496416,214,0 +170772496464,214,0 +170772496514,214,0 +170772496562,214,0 +170772496611,214,0 +170772496659,214,0 +170772496709,214,0 +170772496756,215,0 +170772496806,215,0 +170772496854,215,0 +170772496902,215,0 +170772496950,215,0 +170772496998,215,0 +170772497046,215,0 +170772497095,214,0 +170772497143,214,0 +170772497191,214,0 +170772497239,214,0 +170772497288,214,0 +170772497336,214,0 +170772497385,214,0 +170772497433,214,0 +170772497481,214,0 +170772497529,215,0 +170772497577,215,0 +170772497627,215,0 +170772497675,215,0 +170772497723,215,0 +170772497771,215,0 +170772497818,215,0 +170772497868,215,0 +170772497916,214,0 +170772497964,214,0 +170772498012,214,0 +170772498059,214,0 +170772498109,214,0 +170772498158,214,0 +170772498206,215,0 +170772498254,215,0 +170772498302,215,0 +170772498352,215,0 +170772498401,215,0 +170772498449,215,0 +170772498497,215,0 +170772498544,215,0 +170772498592,215,0 +170772498640,215,0 +170772498688,215,0 +170772498736,214,0 +170772498783,214,0 +170772498831,215,0 +170772498879,214,0 +170772498927,215,0 +170772498975,215,0 +170772499023,215,0 +170772499070,215,0 +170772499118,215,0 +170772499166,215,0 +170772499214,215,0 +170772499262,215,0 +170772499310,215,0 +170772499357,215,0 +170772499405,215,0 +170772499455,215,0 +170772499502,215,0 +170772499550,214,0 +170772499598,214,0 +170772499646,214,0 +170772499694,215,0 +170772499742,215,0 +170772499790,214,0 +170772499837,215,0 +170772499885,215,0 +170772499933,215,0 +170772499981,215,0 +170772500029,215,0 +170772500078,215,0 +170772500126,215,0 +170772500175,215,0 +170772500224,215,0 +170772500272,215,0 +170772500322,214,0 +170772500370,214,0 +170772500418,214,0 +170772500467,214,0 +170772500515,214,0 +170772500565,214,0 +170772500613,214,0 +170772500661,215,0 +170772500708,215,0 +170772500756,215,0 +170772500804,215,0 +170772500852,215,0 +170772500900,215,0 +170772500948,215,0 +170772500997,216,0 +170772501045,215,0 +170772501095,215,0 +170772501143,214,0 +170772501191,214,0 +170772501239,214,0 +170772501288,214,0 +170772501336,214,0 +170772501384,215,0 +170772501432,215,0 +170772501481,215,0 +170772501531,215,0 +170772501579,215,0 +170772501627,215,0 +170772501675,215,0 +170772501724,215,0 +170772501772,215,0 +170772501820,215,0 +170772501870,215,0 +170772501919,214,0 +170772501969,214,0 +170772502017,214,0 +170772502066,214,0 +170772502116,214,0 +170772502165,215,0 +170772502213,215,0 +170772502261,215,0 +170772502309,215,0 +170772502357,215,0 +170772502406,215,0 +170772502454,215,0 +170772502502,215,0 +170772502550,215,0 +170772502598,215,0 +170772502646,215,0 +170772502694,215,0 +170772502743,214,0 +170772502793,214,0 +170772502841,214,0 +170772502890,214,0 +170772502940,215,0 +170772502988,215,0 +170772503035,215,0 +170772503083,215,0 +170772503133,215,0 +170772503182,215,0 +170772503230,215,0 +170772503278,215,0 +170772503326,215,0 +170772503376,215,0 +170772503423,215,0 +170772503471,215,0 +170772503519,214,0 +170772503569,214,0 +170772503617,214,0 +170772503665,214,0 +170772503714,214,0 +170772503762,214,0 +170772503810,214,0 +170772503858,214,0 +170772503906,215,0 +170772503954,215,0 +170772504001,215,0 +170772504049,215,0 +170772504097,215,0 +170772504145,215,0 +170772504193,215,0 +170772504241,215,0 +170772504289,215,0 +170772504337,214,0 +170772504385,214,0 +170772504434,214,0 +170772504482,214,0 +170772504530,214,0 +170772504579,214,0 +170772504629,215,0 +170772504678,215,0 +170772504728,215,0 +170772504777,215,0 +170772504825,215,0 +170772504875,215,0 +170772504923,215,0 +170772504972,215,0 +170772505022,215,0 +170772505070,215,0 +170772505118,214,0 +170772505166,214,0 +170772505215,214,0 +170772505265,214,0 +170772505314,214,0 +170772505364,214,0 +170772505412,214,0 +170772505459,215,0 +170772505507,215,0 +170772505555,215,0 +170772505603,215,0 +170772505651,215,0 +170772505699,215,0 +170772505747,215,0 +170772505795,215,0 +170772505843,215,0 +170772505892,215,0 +170772505940,214,0 +170772505988,214,0 +170772506036,214,0 +170772506084,214,0 +170772506131,214,0 +170772506179,214,0 +170772506227,214,0 +170772506275,214,0 +170772506323,215,0 +170772506371,215,0 +170772506420,215,0 +170772506468,215,0 +170772506516,215,0 +170772506566,215,0 +170772506614,215,0 +170772506662,215,0 +170772506709,215,0 +170772506759,214,0 +170772506807,214,0 +170772506856,214,0 +170772506906,214,0 +170772506954,214,0 +170772507002,214,0 +170772507049,214,0 +170772507099,215,0 +170772507148,215,0 +170772507198,215,0 +170772507246,215,0 +170772507295,215,0 +170772507343,215,0 +170772507391,215,0 +170772507439,215,0 +170772507487,215,0 +170772507535,214,0 +170772507584,214,0 +170772507632,214,0 +170772507680,214,0 +170772507730,215,0 +170772507778,214,0 +170772507825,214,0 +170772507873,214,0 +170772507923,215,0 +170772507971,215,0 +170772508020,215,0 +170772508070,215,0 +170772508117,215,0 +170772508165,215,0 +170772508215,215,0 +170772508263,215,0 +170772508312,215,0 +170772508360,214,0 +170772508408,214,0 +170772508456,214,0 +170772508504,214,0 +170772508552,214,0 +170772508600,214,0 +170772508648,215,0 +170772508696,214,0 +170772508745,215,0 +170772508793,215,0 +170772508841,215,0 +170772508889,215,0 +170772508937,215,0 +170772508985,215,0 +170772509033,215,0 +170772509080,215,0 +170772509128,215,0 +170772509176,214,0 +170772509224,214,0 +170772509273,214,0 +170772509321,214,0 +170772509369,214,0 +170772509417,214,0 +170772509465,215,0 +170772509514,215,0 +170772509562,215,0 +170772509610,215,0 +170772509658,215,0 +170772509706,215,0 +170772509754,215,0 +170772509801,215,0 +170772509849,215,0 +170772509897,215,0 +170772509945,214,0 +170772509993,214,0 +170772510041,214,0 +170772510089,214,0 +170772510138,214,0 +170772510186,214,0 +170772510234,214,0 +170772510284,214,0 +170772510332,214,0 +170772510380,215,0 +170772510428,215,0 +170772510476,215,0 +170772510525,215,0 +170772510573,215,0 +170772510621,215,0 +170772510670,215,0 +170772510720,215,0 +170772510769,214,0 +170772510819,214,0 +170772510867,214,0 +170772510917,215,0 +170772510965,215,0 +170772511012,215,0 +170772511060,215,0 +170772511108,215,0 +170772511156,215,0 +170772511204,215,0 +170772511252,215,0 +170772511302,215,0 +170772511350,215,0 +170772511399,215,0 +170772511449,215,0 +170772511497,215,0 +170772511545,214,0 +170772511594,214,0 +170772511642,214,0 +170772511690,214,0 +170772511739,215,0 +170772511787,214,0 +170772511835,215,0 +170772511885,215,0 +170772511934,215,0 +170772511984,215,0 +170772512032,215,0 +170772512080,215,0 +170772512128,215,0 +170772512175,215,0 +170772512223,215,0 +170772512273,215,0 +170772512321,215,0 +170772512369,214,0 +170772512417,214,0 +170772512465,214,0 +170772512513,214,0 +170772512562,215,0 +170772512610,214,0 +170772512660,215,0 +170772512709,215,0 +170772512759,215,0 +170772512807,215,0 +170772512855,215,0 +170772512903,215,0 +170772512952,215,0 +170772513000,215,0 +170772513048,215,0 +170772513096,215,0 +170772513146,214,0 +170772513195,214,0 +170772513245,215,0 +170772513293,214,0 +170772513341,214,0 +170772513390,214,0 +170772513438,215,0 +170772513487,215,0 +170772513537,215,0 +170772513586,215,0 +170772513636,215,0 +170772513684,215,0 +170772513733,215,0 +170772513781,215,0 +170772513829,215,0 +170772513877,215,0 +170772513925,215,0 +170772513973,214,0 +170772514023,214,0 +170772514072,215,0 +170772514122,214,0 +170772514170,215,0 +170772514218,215,0 +170772514266,215,0 +170772514313,215,0 +170772514363,215,0 +170772514413,215,0 +170772514460,215,0 +170772514508,215,0 +170772514556,215,0 +170772514606,215,0 +170772514654,215,0 +170772514702,215,0 +170772514751,214,0 +170772514799,214,0 +170772514847,214,0 +170772514895,214,0 +170772514943,214,0 +170772514992,215,0 +170772515042,215,0 +170772515090,215,0 +170772515139,215,0 +170772515189,215,0 +170772515238,215,0 +170772515288,215,0 +170772515336,215,0 +170772515385,215,0 +170772515435,215,0 +170772515483,215,0 +170772515531,215,0 +170772515579,213,0 +170772515627,214,0 +170772515675,214,0 +170772515722,214,0 +170772515770,214,0 +170772515820,214,0 +170772515868,214,0 +170772515916,214,0 +170772515964,214,0 +170772516013,214,0 +170772516063,215,0 +170772516111,215,0 +170772516160,215,0 +170772516210,215,0 +170772516258,215,0 +170772516306,215,0 +170772516354,214,0 +170772516402,213,0 +170772516450,214,0 +170772516498,214,0 +170772516545,214,0 +170772516593,214,0 +170772516641,214,0 +170772516691,214,0 +170772516739,214,0 +170772516788,214,0 +170772516836,215,0 +170772516884,215,0 +170772516934,215,0 +170772516982,215,0 +170772517030,215,0 +170772517078,215,0 +170772517126,215,0 +170772517174,214,0 +170772517222,214,0 +170772517270,214,0 +170772517319,214,0 +170772517367,214,0 +170772517417,214,0 +170772517465,214,0 +170772517513,215,0 +170772517562,215,0 +170772517610,215,0 +170772517660,215,0 +170772517708,215,0 +170772517756,215,0 +170772517805,215,0 +170772517853,215,0 +170772517901,215,0 +170772517949,215,0 +170772517997,214,0 +170772518046,214,0 +170772518094,214,0 +170772518142,214,0 +170772518192,215,0 +170772518240,214,0 +170772518289,215,0 +170772518337,215,0 +170772518385,215,0 +170772518433,215,0 +170772518481,215,0 +170772518529,215,0 +170772518576,215,0 +170772518624,215,0 +170772518672,215,0 +170772518720,215,0 +170772518768,214,0 +170772518816,214,0 +170772518864,214,0 +170772518912,214,0 +170772518959,215,0 +170772519009,215,0 +170772519057,215,0 +170772519105,215,0 +170772519154,215,0 +170772519202,215,0 +170772519250,215,0 +170772519298,215,0 +170772519347,215,0 +170772519395,215,0 +170772519443,215,0 +170772519491,215,0 +170772519540,215,0 +170772519588,214,0 +170772519638,214,0 +170772519685,214,0 +170772519735,214,0 +170772519783,214,0 +170772519831,215,0 +170772519878,215,0 +170772519926,215,0 +170772519976,215,0 +170772520024,215,0 +170772520072,215,0 +170772520119,215,0 +170772520167,215,0 +170772520215,215,0 +170772520263,215,0 +170772520311,215,0 +170772520359,214,0 +170772520407,214,0 +170772520454,214,0 +170772520502,214,0 +170772520550,214,0 +170772520598,214,0 +170772520646,214,0 +170772520694,214,0 +170772520741,214,0 +170772520789,215,0 +170772520839,215,0 +170772520888,215,0 +170772520936,215,0 +170772520985,215,0 +170772521033,215,0 +170772521081,215,0 +170772521129,215,0 +170772521177,214,0 +170772521226,214,0 +170772521274,214,0 +170772521322,214,0 +170772521370,214,0 +170772521417,214,0 +170772521467,214,0 +170772521515,214,0 +170772521562,214,0 +170772521610,215,0 +170772521658,215,0 +170772521706,215,0 +170772521754,215,0 +170772521802,215,0 +170772521850,215,0 +170772521897,215,0 +170772521945,215,0 +170772521993,213,0 +170772522043,213,0 +170772522090,214,0 +170772522138,214,0 +170772522186,214,0 +170772522234,214,0 +170772522282,214,0 +170772522332,214,0 +170772522379,214,0 +170772522427,215,0 +170772522475,215,0 +170772522523,215,0 +170772522571,215,0 +170772522621,215,0 +170772522669,215,0 +170772522718,215,0 +170772522766,214,0 +170772522814,214,0 +170772522864,214,0 +170772522912,214,0 +170772522961,214,0 +170772523009,214,0 +170772523058,214,0 +170772523106,214,0 +170772523156,215,0 +170772523204,215,0 +170772523252,215,0 +170772523301,215,0 +170772523351,215,0 +170772523400,215,0 +170772523448,215,0 +170772523496,215,0 +170772523546,215,0 +170772523593,214,0 +170772523641,214,0 +170772523689,214,0 +170772523737,214,0 +170772523787,214,0 +170772523835,214,0 +170772523882,215,0 +170772523932,215,0 +170772523980,215,0 +170772524029,215,0 +170772524077,215,0 +170772524125,215,0 +170772524174,215,0 +170772524222,215,0 +170772524270,215,0 +170772524318,215,0 +170772524366,214,0 +170772524414,214,0 +170772524461,214,0 +170772524509,214,0 +170772524557,214,0 +170772524605,214,0 +170772524653,215,0 +170772524701,215,0 +170772524748,215,0 +170772524796,215,0 +170772524844,215,0 +170772524892,215,0 +170772524940,215,0 +170772524987,215,0 +170772525035,215,0 +170772525083,215,0 +170772525131,215,0 +170772525179,214,0 +170772525226,214,0 +170772525274,214,0 +170772525322,214,0 +170772525372,214,0 +170772525419,214,0 +170772525467,214,0 +170772525515,215,0 +170772525563,215,0 +170772525611,215,0 +170772525659,215,0 +170772525707,215,0 +170772525756,215,0 +170772525804,215,0 +170772525852,215,0 +170772525901,215,0 +170772525949,215,0 +170772525997,214,0 +170772526045,214,0 +170772526093,214,0 +170772526140,214,0 +170772526188,215,0 +170772526236,215,0 +170772526284,215,0 +170772526332,215,0 +170772526379,215,0 +170772526427,215,0 +170772526477,215,0 +170772526525,215,0 +170772526572,215,0 +170772526622,215,0 +170772526671,215,0 +170772526721,215,0 +170772526770,215,0 +170772526820,214,0 +170772526868,215,0 +170772526917,214,0 +170772526965,215,0 +170772527015,214,0 +170772527064,215,0 +170772527114,215,0 +170772527162,215,0 +170772527210,215,0 +170772527259,215,0 +170772527308,215,0 +170772527356,215,0 +170772527406,215,0 +170772527455,215,0 +170772527505,215,0 +170772527554,215,0 +170772527604,214,0 +170772527652,214,0 +170772527701,214,0 +170772527749,214,0 +170772527797,214,0 +170772527845,215,0 +170772527895,215,0 +170772527944,215,0 +170772527994,215,0 +170772528042,215,0 +170772528091,215,0 +170772528139,215,0 +170772528187,216,0 +170772528237,215,0 +170772528285,215,0 +170772528333,215,0 +170772528381,214,0 +170772528428,214,0 +170772528476,214,0 +170772528526,214,0 +170772528574,215,0 +170772528622,215,0 +170772528670,215,0 +170772528718,215,0 +170772528766,215,0 +170772528813,215,0 +170772528861,215,0 +170772528911,215,0 +170772528960,215,0 +170772529008,215,0 +170772529058,215,0 +170772529106,215,0 +170772529155,215,0 +170772529203,214,0 +170772529253,214,0 +170772529302,214,0 +170772529350,214,0 +170772529398,215,0 +170772529446,215,0 +170772529494,215,0 +170772529542,215,0 +170772529589,215,0 +170772529637,215,0 +170772529685,215,0 +170772529733,215,0 +170772529782,215,0 +170772529830,215,0 +170772529878,215,0 +170772529926,215,0 +170772529974,215,0 +170772530022,214,0 +170772530071,214,0 +170772530119,214,0 +170772530168,214,0 +170772530218,214,0 +170772530266,214,0 +170772530315,215,0 +170772530365,215,0 +170772530414,215,0 +170772530464,215,0 +170772530513,215,0 +170772530563,215,0 +170772530612,215,0 +170772530660,215,0 +170772530708,215,0 +170772530756,215,0 +170772530804,214,0 +170772530852,214,0 +170772530902,214,0 +170772530951,214,0 +170772530999,214,0 +170772531049,214,0 +170772531096,214,0 +170772531144,214,0 +170772531192,215,0 +170772531240,215,0 +170772531288,215,0 +170772531337,215,0 +170772531385,215,0 +170772531433,215,0 +170772531481,215,0 +170772531529,215,0 +170772531577,214,0 +170772531626,213,0 +170772531676,213,0 +170772531725,214,0 +170772531773,214,0 +170772531821,214,0 +170772531870,214,0 +170772531918,214,0 +170772531966,214,0 +170772532016,214,0 +170772532065,214,0 +170772532113,215,0 +170772532161,215,0 +170772532209,215,0 +170772532259,215,0 +170772532307,215,0 +170772532355,215,0 +170772532403,214,0 +170772532452,213,0 +170772532500,214,0 +170772532548,214,0 +170772532596,214,0 +170772532646,214,0 +170772532695,214,0 +170772532743,214,0 +170772532791,214,0 +170772532839,214,0 +170772532887,215,0 +170772532936,215,0 +170772532984,215,0 +170772533032,215,0 +170772533082,215,0 +170772533131,215,0 +170772533181,215,0 +170772533230,213,0 +170772533280,213,0 +170772533328,213,0 +170772533376,214,0 +170772533424,214,0 +170772533473,214,0 +170772533521,214,0 +170772533569,214,0 +170772533617,214,0 +170772533665,214,0 +170772533712,214,0 +170772533760,214,0 +170772533810,214,0 +170772533859,215,0 +170772533907,215,0 +170772533955,215,0 +170772534003,214,0 +170772534051,213,0 +170772534099,213,0 +170772534147,214,0 +170772534195,214,0 +170772534242,214,0 +170772534290,214,0 +170772534338,214,0 +170772534386,214,0 +170772534434,214,0 +170772534482,214,0 +170772534530,215,0 +170772534578,215,0 +170772534626,215,0 +170772534674,215,0 +170772534722,215,0 +170772534771,215,0 +170772534819,214,0 +170772534867,214,0 +170772534915,214,0 +170772534964,214,0 +170772535012,214,0 +170772535062,215,0 +170772535110,215,0 +170772535159,215,0 +170772535207,215,0 +170772535255,215,0 +170772535303,215,0 +170772535351,215,0 +170772535399,215,0 +170772535449,215,0 +170772535497,215,0 +170772535546,215,0 +170772535596,215,0 +170772535644,214,0 +170772535691,214,0 +170772535741,214,0 +170772535789,214,0 +170772535837,214,0 +170772535885,214,0 +170772535934,215,0 +170772535984,215,0 +170772536033,215,0 +170772536083,215,0 +170772536130,215,0 +170772536178,215,0 +170772536226,215,0 +170772536276,215,0 +170772536325,215,0 +170772536373,215,0 +170772536421,214,0 +170772536469,214,0 +170772536516,214,0 +170772536566,214,0 +170772536614,214,0 +170772536662,214,0 +170772536711,214,0 +170772536759,215,0 +170772536807,214,0 +170772536855,215,0 +170772536904,215,0 +170772536954,215,0 +170772537003,215,0 +170772537051,215,0 +170772537099,215,0 +170772537149,215,0 +170772537197,214,0 +170772537245,214,0 +170772537293,214,0 +170772537342,214,0 +170772537390,214,0 +170772537438,214,0 +170772537486,214,0 +170772537535,215,0 +170772537583,214,0 +170772537633,215,0 +170772537680,215,0 +170772537728,215,0 +170772537776,215,0 +170772537824,215,0 +170772537872,215,0 +170772537920,215,0 +170772537968,215,0 +170772538016,215,0 +170772538064,215,0 +170772538112,215,0 +170772538160,215,0 +170772538208,215,0 +170772538257,215,0 +170772538305,215,0 +170772538355,215,0 +170772538404,215,0 +170772538452,215,0 +170772538500,215,0 +170772538550,215,0 +170772538598,215,0 +170772538645,215,0 +170772538695,215,0 +170772538743,215,0 +170772538791,215,0 +170772538840,215,0 +170772538888,215,0 +170772538936,215,0 +170772538984,215,0 +170772539032,215,0 +170772539081,215,0 +170772539129,215,0 +170772539177,216,0 +170772539226,215,0 +170772539274,215,0 +170772539322,215,0 +170772539372,215,0 +170772539421,215,0 +170772539471,215,0 +170772539519,215,0 +170772539567,215,0 +170772539615,214,0 +170772539664,215,0 +170772539713,215,0 +170772539761,215,0 +170772539809,215,0 +170772539857,215,0 +170772539907,215,0 +170772539955,215,0 +170772540003,215,0 +170772540052,215,0 +170772540102,215,0 +170772540149,215,0 +170772540199,215,0 +170772540249,215,0 +170772540297,215,0 +170772540346,215,0 +170772540396,215,0 +170772540444,214,0 +170772540492,214,0 +170772540541,215,0 +170772540589,214,0 +170772540638,215,0 +170772540686,214,0 +170772540736,215,0 +170772540785,214,0 +170772540835,215,0 +170772540883,215,0 +170772540932,215,0 +170772540982,215,0 +170772541029,215,0 +170772541077,215,0 +170772541125,215,0 +170772541175,215,0 +170772541223,214,0 +170772541272,214,0 +170772541322,214,0 +170772541370,214,0 +170772541419,214,0 +170772541469,214,0 +170772541518,215,0 +170772541568,214,0 +170772541617,215,0 +170772541665,215,0 +170772541713,215,0 +170772541763,215,0 +170772541810,215,0 +170772541858,215,0 +170772541906,215,0 +170772541956,215,0 +170772542004,215,0 +170772542052,214,0 +170772542099,214,0 +170772542147,214,0 +170772542195,214,0 +170772542243,214,0 +170772542291,214,0 +170772542339,215,0 +170772542387,215,0 +170772542435,215,0 +170772542483,215,0 +170772542531,215,0 +170772542580,215,0 +170772542628,215,0 +170772542676,215,0 +170772542724,215,0 +170772542772,215,0 +170772542822,214,0 +170772542870,214,0 +170772542917,214,0 +170772542967,214,0 +170772543015,214,0 +170772543063,215,0 +170772543111,214,0 +170772543158,215,0 +170772543206,215,0 +170772543254,215,0 +170772543302,215,0 +170772543352,215,0 +170772543400,215,0 +170772543447,215,0 +170772543497,215,0 +170772543545,215,0 +170772543593,215,0 +170772543641,214,0 +170772543689,214,0 +170772543738,214,0 +170772543786,214,0 +170772543834,214,0 +170772543882,214,0 +170772543930,214,0 +170772543978,214,0 +170772544027,214,0 +170772544075,215,0 +170772544123,215,0 +170772544171,215,0 +170772544219,215,0 +170772544268,215,0 +170772544316,215,0 +170772544364,215,0 +170772544412,215,0 +170772544460,214,0 +170772544508,214,0 +170772544557,214,0 +170772544605,214,0 +170772544655,214,0 +170772544703,214,0 +170772544751,214,0 +170772544799,214,0 +170772544848,215,0 +170772544896,215,0 +170772544944,215,0 +170772544993,215,0 +170772545041,215,0 +170772545091,215,0 +170772545139,215,0 +170772545187,215,0 +170772545236,214,0 +170772545286,214,0 +170772545333,214,0 +170772545381,214,0 +170772545431,214,0 +170772545480,214,0 +170772545530,214,0 +170772545578,214,0 +170772545627,214,0 +170772545675,215,0 +170772545723,214,0 +170772545771,215,0 +170772545821,215,0 +170772545869,215,0 +170772545917,215,0 +170772545965,215,0 +170772546013,215,0 +170772546061,214,0 +170772546109,214,0 +170772546156,214,0 +170772546206,214,0 +170772546254,214,0 +170772546303,214,0 +170772546353,214,0 +170772546402,214,0 +170772546450,214,0 +170772546498,215,0 +170772546546,215,0 +170772546595,215,0 +170772546643,215,0 +170772546693,215,0 +170772546742,215,0 +170772546792,215,0 +170772546841,214,0 +170772546889,214,0 +170772546939,214,0 +170772546988,214,0 +170772547036,214,0 +170772547086,214,0 +170772547135,214,0 +170772547183,215,0 +170772547231,215,0 +170772547280,215,0 +170772547330,215,0 +170772547379,215,0 +170772547429,215,0 +170772547478,215,0 +170772547528,215,0 +170772547576,215,0 +170772547624,215,0 +170772547672,214,0 +170772547720,214,0 +170772547769,214,0 +170772547817,214,0 +170772547865,214,0 +170772547913,215,0 +170772547961,215,0 +170772548011,215,0 +170772548060,215,0 +170772548110,215,0 +170772548158,215,0 +170772548207,215,0 +170772548256,215,0 +170772548304,215,0 +170772548352,215,0 +170772548402,215,0 +170772548451,214,0 +170772548501,214,0 +170772548550,215,0 +170772548598,215,0 +170772548646,215,0 +170772548694,215,0 +170772548742,215,0 +170772548791,215,0 +170772548841,215,0 +170772548889,215,0 +170772548936,215,0 +170772548984,215,0 +170772549032,215,0 +170772549082,215,0 +170772549130,215,0 +170772549178,215,0 +170772549225,215,0 +170772549273,214,0 +170772549321,214,0 +170772549369,214,0 +170772549417,214,0 +170772549465,214,0 +170772549514,214,0 +170772549564,214,0 +170772549611,215,0 +170772549659,215,0 +170772549709,215,0 +170772549757,215,0 +170772549805,215,0 +170772549852,215,0 +170772549900,215,0 +170772549948,215,0 +170772549996,215,0 +170772550044,214,0 +170772550092,214,0 +170772550140,214,0 +170772550188,214,0 +170772550237,214,0 +170772550287,214,0 +170772550336,215,0 +170772550384,215,0 +170772550432,215,0 +170772550480,215,0 +170772550528,215,0 +170772550576,215,0 +170772550624,215,0 +170772550672,215,0 +170772550720,215,0 +170772550768,215,0 +170772550817,215,0 +170772550867,214,0 +170772550915,214,0 +170772550963,214,0 +170772551011,214,0 +170772551060,215,0 +170772551110,215,0 +170772551158,215,0 +170772551206,215,0 +170772551254,215,0 +170772551302,215,0 +170772551350,215,0 +170772551398,215,0 +170772551446,215,0 +170772551494,215,0 +170772551542,215,0 +170772551589,215,0 +170772551637,215,0 +170772551687,215,0 +170772551735,215,0 +170772551784,215,0 +170772551832,215,0 +170772551882,215,0 +170772551931,215,0 +170772551979,215,0 +170772552027,215,0 +170772552075,215,0 +170772552123,215,0 +170772552171,215,0 +170772552219,215,0 +170772552267,215,0 +170772552315,215,0 +170772552364,215,0 +170772552414,215,0 +170772552463,214,0 +170772552513,214,0 +170772552561,214,0 +170772552609,214,0 +170772552658,215,0 +170772552708,214,0 +170772552756,215,0 +170772552804,215,0 +170772552852,215,0 +170772552900,215,0 +170772552947,215,0 +170772552995,215,0 +170772553045,215,0 +170772553093,215,0 +170772553141,215,0 +170772553190,215,0 +170772553238,215,0 +170772553286,214,0 +170772553335,214,0 +170772553385,214,0 +170772553433,214,0 +170772553482,215,0 +170772553532,215,0 +170772553581,214,0 +170772553631,215,0 +170772553679,215,0 +170772553727,215,0 +170772553775,215,0 +170772553824,215,0 +170772553874,215,0 +170772553922,215,0 +170772553971,215,0 +170772554021,215,0 +170772554069,214,0 +170772554117,214,0 +170772554165,214,0 +170772554214,214,0 +170772554262,214,0 +170772554310,214,0 +170772554358,215,0 +170772554406,215,0 +170772554456,215,0 +170772554504,215,0 +170772554552,215,0 +170772554600,215,0 +170772554647,215,0 +170772554695,215,0 +170772554743,215,0 +170772554793,215,0 +170772554842,214,0 +170772554890,214,0 +170772554938,214,0 +170772554988,214,0 +170772555037,214,0 +170772555087,214,0 +170772555136,214,0 +170772555186,215,0 +170772555234,214,0 +170772555282,215,0 +170772555331,215,0 +170772555379,215,0 +170772555429,215,0 +170772555476,215,0 +170772555524,215,0 +170772555574,215,0 +170772555622,215,0 +170772555671,214,0 +170772555719,214,0 +170772555767,214,0 +170772555815,214,0 +170772555863,214,0 +170772555913,214,0 +170772555962,215,0 +170772556011,215,0 +170772556061,214,0 +170772556109,215,0 +170772556157,215,0 +170772556205,215,0 +170772556254,215,0 +170772556302,215,0 +170772556350,215,0 +170772556399,215,0 +170772556447,215,0 +170772556495,214,0 +170772556543,214,0 +170772556591,214,0 +170772556639,215,0 +170772556687,215,0 +170772556735,215,0 +170772556784,215,0 +170772556832,215,0 +170772556880,215,0 +170772556930,215,0 +170772556978,215,0 +170772557026,215,0 +170772557073,215,0 +170772557123,215,0 +170772557172,215,0 +170772557220,215,0 +170772557268,215,0 +170772557316,214,0 +170772557364,214,0 +170772557414,214,0 +170772557462,214,0 +170772557511,215,0 +170772557559,215,0 +170772557607,215,0 +170772557657,215,0 +170772557705,215,0 +170772557752,215,0 +170772557800,215,0 +170772557848,215,0 +170772557896,215,0 +170772557946,215,0 +170772557995,215,0 +170772558045,215,0 +170772558093,214,0 +170772558141,214,0 +170772558190,214,0 +170772558238,214,0 +170772558286,214,0 +170772558335,214,0 +170772558385,214,0 +170772558433,215,0 +170772558481,215,0 +170772558529,215,0 +170772558577,215,0 +170772558626,215,0 +170772558674,215,0 +170772558722,215,0 +170772558772,215,0 +170772558821,215,0 +170772558871,214,0 +170772558918,214,0 +170772558966,214,0 +170772559016,214,0 +170772559066,214,0 +170772559115,214,0 +170772559165,215,0 +170772559214,215,0 +170772559262,215,0 +170772559312,215,0 +170772559360,215,0 +170772559408,215,0 +170772559455,215,0 +170772559505,215,0 +170772559554,215,0 +170772559602,215,0 +170772559652,215,0 +170772559700,214,0 +170772559748,215,0 +170772559796,215,0 +170772559845,215,0 +170772559895,215,0 +170772559943,215,0 +170772559991,215,0 +170772560038,215,0 +170772560086,215,0 +170772560134,215,0 +170772560182,215,0 +170772560232,215,0 +170772560281,215,0 +170772560329,215,0 +170772560377,215,0 +170772560425,215,0 +170772560473,214,0 +170772560521,214,0 +170772560569,214,0 +170772560618,215,0 +170772560666,214,0 +170772560714,214,0 +170772560764,215,0 +170772560811,215,0 +170772560859,215,0 +170772560907,215,0 +170772560957,215,0 +170772561006,215,0 +170772561056,215,0 +170772561105,215,0 +170772561155,215,0 +170772561204,215,0 +170772561254,215,0 +170772561303,214,0 +170772561351,214,0 +170772561401,214,0 +170772561449,214,0 +170772561498,215,0 +170772561546,214,0 +170772561594,214,0 +170772561642,215,0 +170772561690,215,0 +170772561740,215,0 +170772561787,215,0 +170772561835,215,0 +170772561883,215,0 +170772561931,215,0 +170772561979,215,0 +170772562027,215,0 +170772562076,214,0 +170772562126,214,0 +170772562174,214,0 +170772562222,214,0 +170772562270,214,0 +170772562317,214,0 +170772562367,215,0 +170772562416,214,0 +170772562466,215,0 +170772562514,215,0 +170772562562,215,0 +170772562611,215,0 +170772562659,215,0 +170772562707,215,0 +170772562757,215,0 +170772562805,215,0 +170772562854,215,0 +170772562902,214,0 +170772562950,214,0 +170772562999,214,0 +170772563049,214,0 +170772563099,215,0 +170772563146,217,0 +170772563194,216,0 +170772563242,215,0 +170772563290,215,0 +170772563338,215,0 +170772563386,215,0 +170772563436,215,0 +170772563483,215,0 +170772563531,215,0 +170772563581,215,0 +170772563629,215,0 +170772563677,214,0 +170772563725,215,0 +170772563772,214,0 +170772563822,215,0 +170772563870,215,0 +170772563918,215,0 +170772563965,215,0 +170772564013,215,0 +170772564061,215,0 +170772564111,215,0 +170772564159,215,0 +170772564208,215,0 +170772564256,215,0 +170772564306,215,0 +170772564355,215,0 +170772564403,215,0 +170772564451,215,0 +170772564499,214,0 +170772564547,214,0 +170772564595,214,0 +170772564643,214,0 +170772564692,214,0 +170772564740,215,0 +170772564788,215,0 +170772564838,215,0 +170772564887,215,0 +170772564935,215,0 +170772564985,215,0 +170772565032,215,0 +170772565082,215,0 +170772565131,215,0 +170772565181,215,0 +170772565229,215,0 +170772565277,214,0 +170772565324,214,0 +170772565372,214,0 +170772565422,214,0 +170772565471,214,0 +170772565519,214,0 +170772565567,214,0 +170772565615,214,0 +170772565664,215,0 +170772565712,215,0 +170772565760,215,0 +170772565808,215,0 +170772565857,215,0 +170772565907,215,0 +170772565955,215,0 +170772566003,215,0 +170772566050,215,0 +170772566098,214,0 +170772566146,214,0 +170772566195,214,0 +170772566243,214,0 +170772566291,215,0 +170772566339,214,0 +170772566387,215,0 +170772566436,215,0 +170772566484,215,0 +170772566532,215,0 +170772566581,215,0 +170772566629,215,0 +170772566677,215,0 +170772566725,215,0 +170772566773,215,0 +170772566821,215,0 +170772566869,215,0 +170772566916,214,0 +170772566964,214,0 +170772567012,214,0 +170772567060,214,0 +170772567108,214,0 +170772567156,215,0 +170772567203,215,0 +170772567251,214,0 +170772567299,215,0 +170772567347,215,0 +170772567396,215,0 +170772567444,215,0 +170772567492,215,0 +170772567540,215,0 +170772567589,215,0 +170772567637,215,0 +170772567685,214,0 +170772567733,214,0 +170772567781,214,0 +170772567829,214,0 +170772567876,214,0 +170772567924,215,0 +170772567974,214,0 +170772568023,215,0 +170772568071,215,0 +170772568119,215,0 +170772568167,215,0 +170772568215,215,0 +170772568264,215,0 +170772568312,215,0 +170772568360,215,0 +170772568408,215,0 +170772568455,215,0 +170772568503,214,0 +170772568551,214,0 +170772568599,214,0 +170772568648,214,0 +170772568696,214,0 +170772568744,214,0 +170772568792,214,0 +170772568840,215,0 +170772568888,215,0 +170772568935,215,0 +170772568983,215,0 +170772569033,215,0 +170772569081,215,0 +170772569128,215,0 +170772569176,215,0 +170772569224,215,0 +170772569272,215,0 +170772569321,214,0 +170772569371,214,0 +170772569419,214,0 +170772569467,214,0 +170772569514,214,0 +170772569562,215,0 +170772569610,214,0 +170772569658,214,0 +170772569706,215,0 +170772569753,215,0 +170772569801,215,0 +170772569849,215,0 +170772569899,215,0 +170772569946,215,0 +170772569994,215,0 +170772570042,215,0 +170772570090,214,0 +170772570138,214,0 +170772570187,214,0 +170772570235,214,0 +170772570283,214,0 +170772570331,214,0 +170772570379,214,0 +170772570426,214,0 +170772570474,214,0 +170772570522,215,0 +170772570570,215,0 +170772570618,215,0 +170772570666,215,0 +170772570714,215,0 +170772570763,215,0 +170772570811,215,0 +170772570859,215,0 +170772570907,214,0 +170772570956,214,0 +170772571004,214,0 +170772571052,214,0 +170772571101,214,0 +170772571149,214,0 +170772571197,214,0 +170772571245,215,0 +170772571292,215,0 +170772571340,215,0 +170772571388,215,0 +170772571436,215,0 +170772571484,215,0 +170772571532,215,0 +170772571580,215,0 +170772571628,215,0 +170772571675,215,0 +170772571723,215,0 +170772571773,214,0 +170772571820,214,0 +170772571868,214,0 +170772571918,215,0 +170772571966,215,0 +170772572013,215,0 +170772572061,215,0 +170772572109,215,0 +170772572159,215,0 +170772572206,215,0 +170772572254,215,0 +170772572302,215,0 +170772572350,215,0 +170772572398,215,0 +170772572446,216,0 +170772572494,215,0 +170772572543,214,0 +170772572591,214,0 +170772572639,214,0 +170772572687,215,0 +170772572735,215,0 +170772572782,215,0 +170772572830,215,0 +170772572878,215,0 +170772572927,215,0 +170772572975,215,0 +170772573023,215,0 +170772573071,215,0 +170772573119,215,0 +170772573168,215,0 +170772573216,215,0 +170772573264,215,0 +170772573314,214,0 +170772573362,214,0 +170772573411,214,0 +170772573459,214,0 +170772573507,215,0 +170772573556,214,0 +170772573604,215,0 +170772573654,215,0 +170772573702,215,0 +170772573750,215,0 +170772573798,215,0 +170772573846,215,0 +170772573893,215,0 +170772573941,215,0 +170772573989,215,0 +170772574037,215,0 +170772574085,215,0 +170772574133,215,0 +170772574182,214,0 +170772574230,214,0 +170772574278,214,0 +170772574326,214,0 +170772574375,214,0 +170772574423,214,0 +170772574471,214,0 +170772574519,214,0 +170772574567,214,0 +170772574615,215,0 +170772574665,215,0 +170772574713,215,0 +170772574762,215,0 +170772574810,215,0 +170772574859,214,0 +170772574907,215,0 +170772574957,215,0 +170772575005,215,0 +170772575053,215,0 +170772575102,214,0 +170772575152,214,0 +170772575200,214,0 +170772575248,214,0 +170772575297,214,0 +170772575345,214,0 +170772575393,214,0 +170772575441,214,0 +170772575489,215,0 +170772575537,215,0 +170772575585,215,0 +170772575632,215,0 +170772575680,215,0 +170772575730,215,0 +170772575777,215,0 +170772575825,215,0 +170772575873,215,0 +170772575921,215,0 +170772575971,214,0 +170772576018,214,0 +170772576066,214,0 +170772576114,215,0 +170772576163,215,0 +170772576211,215,0 +170772576259,214,0 +170772576307,215,0 +170772576356,215,0 +170772576404,215,0 +170772576452,215,0 +170772576500,215,0 +170772576548,215,0 +170772576596,215,0 +170772576643,215,0 +170772576691,215,0 +170772576741,215,0 +170772576788,215,0 +170772576838,214,0 +170772576887,215,0 +170772576937,214,0 +170772576986,215,0 +170772577036,215,0 +170772577084,215,0 +170772577133,215,0 +170772577181,215,0 +170772577229,215,0 +170772577277,215,0 +170772577325,215,0 +170772577375,215,0 +170772577423,215,0 +170772577472,215,0 +170772577520,215,0 +170772577568,215,0 +170772577618,215,0 +170772577667,215,0 +170772577715,215,0 +170772577763,214,0 +170772577811,215,0 +170772577859,214,0 +170772577907,214,0 +170772577956,215,0 +170772578006,215,0 +170772578054,215,0 +170772578103,215,0 +170772578153,215,0 +170772578202,214,0 +170772578250,215,0 +170772578300,215,0 +170772578348,215,0 +170772578397,215,0 +170772578445,215,0 +170772578495,215,0 +170772578544,215,0 +170772578592,215,0 +170772578641,215,0 +170772578691,214,0 +170772578740,215,0 +170772578788,215,0 +170772578838,214,0 +170772578886,215,0 +170772578934,215,0 +170772578982,215,0 +170772579032,215,0 +170772579081,215,0 +170772579131,215,0 +170772579180,215,0 +170772579228,215,0 +170772579276,215,0 +170772579326,215,0 +170772579373,215,0 +170772579421,215,0 +170772579471,215,0 +170772579519,215,0 +170772579567,214,0 +170772579615,214,0 +170772579663,214,0 +170772579710,214,0 +170772579758,214,0 +170772579806,215,0 +170772579854,215,0 +170772579902,215,0 +170772579950,215,0 +170772579998,215,0 +170772580046,215,0 +170772580094,215,0 +170772580142,215,0 +170772580191,215,0 +170772580241,215,0 +170772580289,215,0 +170772580337,215,0 +170772580385,215,0 +170772580434,214,0 +170772580482,214,0 +170772580530,214,0 +170772580578,214,0 +170772580626,214,0 +170772580675,214,0 +170772580723,214,0 +170772580773,214,0 +170772580821,215,0 +170772580869,214,0 +170772580918,215,0 +170772580968,215,0 +170772581016,215,0 +170772581064,215,0 +170772581112,215,0 +170772581161,215,0 +170772581211,215,0 +170772581258,215,0 +170772581308,215,0 +170772581356,214,0 +170772581404,213,0 +170772581452,214,0 +170772581500,214,0 +170772581548,214,0 +170772581597,214,0 +170772581645,214,0 +170772581693,214,0 +170772581741,214,0 +170772581789,215,0 +170772581837,215,0 +170772581885,215,0 +170772581933,215,0 +170772581981,215,0 +170772582030,215,0 +170772582080,215,0 +170772582128,215,0 +170772582177,215,0 +170772582227,214,0 +170772582276,214,0 +170772582324,214,0 +170772582372,214,0 +170772582420,214,0 +170772582468,214,0 +170772582517,214,0 +170772582565,214,0 +170772582615,214,0 +170772582664,214,0 +170772582712,214,0 +170772582762,214,0 +170772582810,214,0 +170772582858,215,0 +170772582906,215,0 +170772582955,215,0 +170772583003,215,0 +170772583051,215,0 +170772583100,215,0 +170772583148,213,0 +170772583196,213,0 +170772583246,213,0 +170772583296,213,0 +170772583343,214,0 +170772583393,214,0 +170772583441,214,0 +170772583489,214,0 +170772583537,214,0 +170772583584,214,0 +170772583632,214,0 +170772583682,214,0 +170772583730,214,0 +170772583778,215,0 +170772583826,214,0 +170772583874,215,0 +170772583923,214,0 +170772583971,215,0 +170772584021,215,0 +170772584070,213,0 +170772584120,213,0 +170772584169,213,0 +170772584217,214,0 +170772584265,214,0 +170772584313,214,0 +170772584361,214,0 +170772584409,214,0 +170772584457,214,0 +170772584505,214,0 +170772584553,214,0 +170772584601,214,0 +170772584649,214,0 +170772584697,214,0 +170772584745,215,0 +170772584792,215,0 +170772584840,214,0 +170772584888,215,0 +170772584938,214,0 +170772584986,213,0 +170772585034,213,0 +170772585083,214,0 +170772585131,214,0 +170772585179,214,0 +170772585227,214,0 +170772585276,214,0 +170772585326,214,0 +170772585375,214,0 +170772585423,214,0 +170772585473,214,0 +170772585521,214,0 +170772585569,215,0 +170772585617,215,0 +170772585667,215,0 +170772585716,215,0 +170772585766,215,0 +170772585815,214,0 +170772585863,214,0 +170772585911,214,0 +170772585959,214,0 +170772586007,214,0 +170772586055,214,0 +170772586103,214,0 +170772586151,214,0 +170772586200,214,0 +170772586248,214,0 +170772586296,214,0 +170772586344,215,0 +170772586392,214,0 +170772586441,214,0 +170772586489,215,0 +170772586539,215,0 +170772586587,215,0 +170772586635,215,0 +170772586684,215,0 +170772586732,214,0 +170772586780,213,0 +170772586828,213,0 +170772586876,214,0 +170772586926,214,0 +170772586975,214,0 +170772587023,214,0 +170772587073,214,0 +170772587120,214,0 +170772587170,214,0 +170772587219,214,0 +170772587267,214,0 +170772587315,215,0 +170772587363,215,0 +170772587411,215,0 +170772587460,215,0 +170772587510,215,0 +170772587558,215,0 +170772587606,215,0 +170772587654,214,0 +170772587702,214,0 +170772587750,214,0 +170772587798,215,0 +170772587845,214,0 +170772587895,214,0 +170772587943,215,0 +170772587991,215,0 +170772588039,215,0 +170772588086,215,0 +170772588136,215,0 +170772588184,215,0 +170772588232,215,0 +170772588281,215,0 +170772588329,215,0 +170772588377,215,0 +170772588427,215,0 +170772588475,215,0 +170772588524,214,0 +170772588572,214,0 +170772588621,215,0 +170772588671,214,0 +170772588721,215,0 +170772588768,215,0 +170772588818,215,0 +170772588867,215,0 +170772588917,215,0 +170772588965,215,0 +170772589013,215,0 +170772589061,215,0 +170772589110,215,0 +170772589160,215,0 +170772589208,215,0 +170772589256,215,0 +170772589305,215,0 +170772589355,215,0 +170772589403,215,0 +170772589450,215,0 +170772589498,215,0 +170772589546,215,0 +170772589594,215,0 +170772589642,215,0 +170772589692,215,0 +170772589741,215,0 +170772589791,215,0 +170772589840,215,0 +170772589890,215,0 +170772589939,215,0 +170772589987,215,0 +170772590035,215,0 +170772590083,215,0 +170772590131,215,0 +170772590181,215,0 +170772590230,215,0 +170772590278,215,0 +170772590328,215,0 +170772590375,215,0 +170772590423,215,0 +170772590471,215,0 +170772590521,215,0 +170772590569,215,0 +170772590617,215,0 +170772590665,215,0 +170772590713,215,0 +170772590761,215,0 +170772590810,215,0 +170772590860,215,0 +170772590909,215,0 +170772590959,215,0 +170772591008,215,0 +170772591056,215,0 +170772591106,215,0 +170772591155,215,0 +170772591205,215,0 +170772591253,214,0 +170772591301,214,0 +170772591350,215,0 +170772591398,215,0 +170772591448,215,0 +170772591495,215,0 +170772591545,215,0 +170772591594,215,0 +170772591642,215,0 +170772591690,215,0 +170772591740,215,0 +170772591789,215,0 +170772591837,215,0 +170772591885,215,0 +170772591933,215,0 +170772591981,215,0 +170772592029,215,0 +170772592079,215,0 +170772592126,214,0 +170772592175,214,0 +170772592224,214,0 +170772592272,214,0 +170772592320,214,0 +170772592369,214,0 +170772592417,214,0 +170772592465,214,0 +170772592515,215,0 +170772592564,215,0 +170772592614,215,0 +170772592662,215,0 +170772592710,215,0 +170772592758,215,0 +170772592807,215,0 +170772592857,215,0 +170772592905,215,0 +170772592954,215,0 +170772593002,214,0 +170772593052,214,0 +170772593101,214,0 +170772593151,214,0 +170772593198,214,0 +170772593246,214,0 +170772593294,214,0 +170772593342,214,0 +170772593390,214,0 +170772593438,215,0 +170772593485,215,0 +170772593533,215,0 +170772593581,215,0 +170772593631,215,0 +170772593680,215,0 +170772593728,215,0 +170772593776,215,0 +170772593824,215,0 +170772593872,215,0 +170772593920,214,0 +170772593967,214,0 +170772594015,214,0 +170772594063,214,0 +170772594113,214,0 +170772594161,214,0 +170772594209,214,0 +170772594256,214,0 +170772594304,214,0 +170772594352,215,0 +170772594400,215,0 +170772594450,215,0 +170772594498,215,0 +170772594547,215,0 +170772594595,215,0 +170772594645,215,0 +170772594693,214,0 +170772594740,215,0 +170772594790,215,0 +170772594838,213,0 +170772594886,213,0 +170772594934,213,0 +170772594982,214,0 +170772595029,214,0 +170772595079,214,0 +170772595127,214,0 +170772595175,214,0 +170772595222,214,0 +170772595270,214,0 +170772595318,214,0 +170772595366,214,0 +170772595414,214,0 +170772595462,215,0 +170772595510,215,0 +170772595558,214,0 +170772595606,215,0 +170772595654,215,0 +170772595702,214,0 +170772595751,213,0 +170772595799,213,0 +170772595847,214,0 +170772595895,214,0 +170772595943,214,0 +170772595991,214,0 +170772596039,214,0 +170772596087,214,0 +170772596135,214,0 +170772596185,214,0 +170772596234,214,0 +170772596282,215,0 +170772596330,215,0 +170772596378,215,0 +170772596425,215,0 +170772596473,215,0 +170772596521,215,0 +170772596570,215,0 +170772596618,213,0 +170772596666,213,0 +170772596714,214,0 +170772596764,214,0 +170772596811,214,0 +170772596859,214,0 +170772596907,214,0 +170772596955,214,0 +170772597003,214,0 +170772597051,214,0 +170772597099,214,0 +170772597146,214,0 +170772597196,215,0 +170772597244,215,0 +170772597292,215,0 +170772597340,215,0 +170772597387,215,0 +170772597436,215,0 +170772597484,214,0 +170772597532,213,0 +170772597580,213,0 +170772597629,214,0 +170772597678,214,0 +170772597726,214,0 +170772597774,214,0 +170772597824,214,0 +170772597872,214,0 +170772597920,214,0 +170772597969,214,0 +170772598017,214,0 +170772598065,215,0 +170772598115,215,0 +170772598163,215,0 +170772598212,215,0 +170772598260,215,0 +170772598310,215,0 +170772598357,215,0 +170772598405,214,0 +170772598453,213,0 +170772598503,214,0 +170772598552,214,0 +170772598602,214,0 +170772598650,214,0 +170772598699,214,0 +170772598749,214,0 +170772598797,214,0 +170772598846,214,0 +170772598894,215,0 +170772598943,215,0 +170772598990,215,0 +170772599038,215,0 +170772599088,215,0 +170772599136,215,0 +170772599184,215,0 +170772599232,215,0 +170772599280,214,0 +170772599328,213,0 +170772599376,213,0 +170772599424,214,0 +170772599472,214,0 +170772599520,214,0 +170772599569,214,0 +170772599617,214,0 +170772599666,214,0 +170772599714,214,0 +170772599762,214,0 +170772599812,215,0 +170772599860,215,0 +170772599909,215,0 +170772599957,215,0 +170772600005,215,0 +170772600054,215,0 +170772600102,215,0 +170772600150,215,0 +170772600198,214,0 +170772600246,214,0 +170772600294,214,0 +170772600342,214,0 +170772600390,214,0 +170772600438,214,0 +170772600487,214,0 +170772600535,215,0 +170772600585,214,0 +170772600632,215,0 +170772600680,215,0 +170772600728,215,0 +170772600776,215,0 +170772600824,215,0 +170772600872,215,0 +170772600922,215,0 +170772600971,215,0 +170772601019,215,0 +170772601067,214,0 +170772601116,214,0 +170772601164,214,0 +170772601212,214,0 +170772601260,214,0 +170772601308,214,0 +170772601358,214,0 +170772601407,214,0 +170772601455,214,0 +170772601503,214,0 +170772601552,215,0 +170772601602,215,0 +170772601651,215,0 +170772601699,215,0 +170772601749,215,0 +170772601798,215,0 +170772601846,215,0 +170772601894,214,0 +170772601942,215,0 +170772601991,213,0 +170772602039,214,0 +170772602087,214,0 +170772602137,214,0 +170772602185,214,0 +170772602234,214,0 +170772602282,214,0 +170772602330,214,0 +170772602378,214,0 +170772602426,214,0 +170772602474,215,0 +170772602521,215,0 +170772602571,215,0 +170772602619,215,0 +170772602668,215,0 +170772602718,215,0 +170772602766,215,0 +170772602813,215,0 +170772602861,214,0 +170772602909,213,0 +170772602957,214,0 +170772603007,214,0 +170772603054,214,0 +170772603104,214,0 +170772603153,214,0 +170772603201,214,0 +170772603251,214,0 +170772603299,214,0 +170772603346,215,0 +170772603394,215,0 +170772603444,215,0 +170772603492,215,0 +170772603542,215,0 +170772603589,215,0 +170772603637,215,0 +170772603687,215,0 +170772603735,215,0 +170772603783,214,0 +170772603831,213,0 +170772603879,213,0 +170772603927,214,0 +170772603976,214,0 +170772604026,214,0 +170772604074,214,0 +170772604121,214,0 +170772604169,214,0 +170772604219,214,0 +170772604267,214,0 +170772604315,215,0 +170772604363,215,0 +170772604410,215,0 +170772604458,215,0 +170772604506,215,0 +170772604554,215,0 +170772604602,215,0 +170772604650,214,0 +170772604700,213,0 +170772604748,214,0 +170772604797,214,0 +170772604847,214,0 +170772604896,214,0 +170772604944,214,0 +170772604992,214,0 +170772605040,214,0 +170772605088,214,0 +170772605136,214,0 +170772605184,215,0 +170772605232,215,0 +170772605280,215,0 +170772605328,215,0 +170772605375,215,0 +170772605425,215,0 +170772605473,215,0 +170772605522,215,0 +170772605570,214,0 +170772605620,214,0 +170772605668,214,0 +170772605717,214,0 +170772605765,214,0 +170772605813,214,0 +170772605861,215,0 +170772605909,215,0 +170772605957,215,0 +170772606005,215,0 +170772606053,215,0 +170772606101,215,0 +170772606150,215,0 +170772606198,215,0 +170772606246,215,0 +170772606294,215,0 +170772606342,215,0 +170772606391,215,0 +170772606439,214,0 +170772606489,214,0 +170772606538,214,0 +170772606586,214,0 +170772606634,214,0 +170772606682,214,0 +170772606730,214,0 +170772606779,214,0 +170772606829,215,0 +170772606877,215,0 +170772606925,215,0 +170772606974,215,0 +170772607024,215,0 +170772607073,215,0 +170772607121,215,0 +170772607171,215,0 +170772607219,215,0 +170772607267,215,0 +170772607315,214,0 +170772607364,213,0 +170772607412,214,0 +170772607460,214,0 +170772607508,214,0 +170772607556,214,0 +170772607604,214,0 +170772607653,214,0 +170772607701,214,0 +170772607750,214,0 +170772607798,214,0 +170772607848,214,0 +170772607897,215,0 +170772607945,214,0 +170772607993,215,0 +170772608043,215,0 +170772608091,215,0 +170772608138,215,0 +170772608188,215,0 +170772608236,214,0 +170772608285,214,0 +170772608333,214,0 +170772608381,214,0 +170772608429,214,0 +170772608477,214,0 +170772608527,214,0 +170772608576,214,0 +170772608624,214,0 +170772608672,214,0 +170772608720,215,0 +170772608768,215,0 +170772608816,215,0 +170772608864,215,0 +170772608913,215,0 +170772608961,215,0 +170772609009,215,0 +170772609059,215,0 +170772609107,214,0 +170772609156,214,0 +170772609204,214,0 +170772609252,214,0 +170772609300,214,0 +170772609350,214,0 +170772609399,215,0 +170772609447,214,0 +170772609497,215,0 +170772609546,215,0 +170772609596,215,0 +170772609643,215,0 +170772609693,215,0 +170772609742,215,0 +170772609790,215,0 +170772609838,215,0 +170772609886,215,0 +170772609936,215,0 +170772609985,214,0 +170772610033,214,0 +170772610081,213,0 +170772610129,214,0 +170772610177,214,0 +170772610226,214,0 +170772610274,214,0 +170772610322,214,0 +170772610370,214,0 +170772610418,214,0 +170772610468,214,0 +170772610516,215,0 +170772610563,215,0 +170772610611,215,0 +170772610659,215,0 +170772610709,215,0 +170772610757,215,0 +170772610806,215,0 +170772610856,215,0 +170772610904,214,0 +170772610953,213,0 +170772611001,214,0 +170772611051,214,0 +170772611099,214,0 +170772611147,214,0 +170772611194,214,0 +170772611244,214,0 +170772611293,214,0 +170772611342,214,0 +170772611391,214,0 +170772611439,214,0 +170772611488,215,0 +170772611536,215,0 +170772611584,215,0 +170772611634,215,0 +170772611683,215,0 +170772611731,215,0 +170772611779,215,0 +170772611827,213,0 +170772611877,214,0 +170772611925,214,0 +170772611974,214,0 +170772612022,214,0 +170772612072,214,0 +170772612120,214,0 +170772612169,214,0 +170772612217,214,0 +170772612267,214,0 +170772612315,214,0 +170772612363,215,0 +170772612411,215,0 +170772612460,215,0 +170772612508,215,0 +170772612556,215,0 +170772612606,215,0 +170772612654,215,0 +170772612703,214,0 +170772612751,214,0 +170772612799,214,0 +170772612847,214,0 +170772612897,214,0 +170772612945,214,0 +170772612992,214,0 +170772613040,215,0 +170772613088,214,0 +170772613136,215,0 +170772613186,215,0 +170772613234,215,0 +170772613282,215,0 +170772613331,215,0 +170772613381,215,0 +170772613429,215,0 +170772613477,215,0 +170772613526,215,0 +170772613576,214,0 +170772613624,214,0 +170772613672,214,0 +170772613720,214,0 +170772613769,214,0 +170772613819,214,0 +170772613868,214,0 +170772613916,214,0 +170772613964,214,0 +170772614013,215,0 +170772614061,215,0 +170772614109,215,0 +170772614159,215,0 +170772614207,215,0 +170772614254,215,0 +170772614302,215,0 +170772614350,215,0 +170772614398,215,0 +170772614448,215,0 +170772614496,214,0 +170772614545,214,0 +170772614593,214,0 +170772614643,214,0 +170772614691,214,0 +170772614740,214,0 +170772614790,214,0 +170772614838,215,0 +170772614887,214,0 +170772614935,214,0 +170772614983,215,0 +170772615031,215,0 +170772615079,215,0 +170772615127,215,0 +170772615176,215,0 +170772615224,215,0 +170772615272,215,0 +170772615322,215,0 +170772615371,214,0 +170772615419,214,0 +170772615467,214,0 +170772615515,214,0 +170772615565,214,0 +170772615613,214,0 +170772615661,214,0 +170772615709,214,0 +170772615756,215,0 +170772615804,215,0 +170772615852,215,0 +170772615900,215,0 +170772615948,215,0 +170772615996,215,0 +170772616045,215,0 +170772616095,215,0 +170772616143,215,0 +170772616191,215,0 +170772616239,215,0 +170772616288,214,0 +170772616336,214,0 +170772616384,214,0 +170772616432,214,0 +170772616481,214,0 +170772616529,214,0 +170772616577,214,0 +170772616626,215,0 +170772616674,215,0 +170772616722,215,0 +170772616771,215,0 +170772616819,215,0 +170772616867,215,0 +170772616917,215,0 +170772616965,215,0 +170772617012,215,0 +170772617060,215,0 +170772617108,215,0 +170772617156,214,0 +170772617205,214,0 +170772617253,214,0 +170772617301,214,0 +170772617349,214,0 +170772617397,214,0 +170772617445,214,0 +170772617493,215,0 +170772617541,214,0 +170772617588,215,0 +170772617636,215,0 +170772617684,215,0 +170772617732,215,0 +170772617780,215,0 +170772617828,215,0 +170772617878,215,0 +170772617926,215,0 +170772617975,215,0 +170772618023,215,0 +170772618071,214,0 +170772618119,214,0 +170772618167,214,0 +170772618215,214,0 +170772618263,214,0 +170772618310,214,0 +170772618360,214,0 +170772618408,214,0 +170772618456,214,0 +170772618504,215,0 +170772618553,215,0 +170772618601,215,0 +170772618649,215,0 +170772618697,215,0 +170772618746,215,0 +170772618794,215,0 +170772618842,215,0 +170772618890,215,0 +170772618938,214,0 +170772618986,214,0 +170772619035,213,0 +170772619085,214,0 +170772619133,214,0 +170772619181,214,0 +170772619228,214,0 +170772619278,214,0 +170772619327,214,0 +170772619375,214,0 +170772619425,214,0 +170772619473,214,0 +170772619522,215,0 +170772619570,215,0 +170772619618,215,0 +170772619666,215,0 +170772619716,214,0 +170772619765,215,0 +170772619815,215,0 +170772619863,213,0 +170772619912,213,0 +170772619960,213,0 +170772620010,213,0 +170772620058,213,0 +170772620106,213,0 +170772620155,213,0 +170772620203,214,0 +170772620251,214,0 +170772620299,214,0 +170772620347,214,0 +170772620396,214,0 +170772620444,214,0 +170772620492,214,0 +170772620540,214,0 +170772620590,215,0 +170772620638,214,0 +170772620687,214,0 +170772620735,214,0 +170772620785,214,0 +170772620834,214,0 +170772620882,214,0 +170772620930,214,0 +170772620980,214,0 +170772621029,214,0 +170772621079,214,0 +170772621127,214,0 +170772621176,214,0 +170772621224,214,0 +170772621272,214,0 +170772621322,215,0 +170772621370,215,0 +170772621419,215,0 +170772621467,215,0 +170772621517,215,0 +170772621566,215,0 +170772621614,214,0 +170772621664,213,0 +170772621713,213,0 +170772621761,214,0 +170772621811,214,0 +170772621859,214,0 +170772621907,214,0 +170772621954,214,0 +170772622004,214,0 +170772622052,214,0 +170772622101,214,0 +170772622151,214,0 +170772622200,215,0 +170772622250,215,0 +170772622299,215,0 +170772622347,215,0 +170772622395,215,0 +170772622443,215,0 +170772622493,215,0 +170772622542,214,0 +170772622592,213,0 +170772622640,214,0 +170772622689,214,0 +170772622739,214,0 +170772622787,214,0 +170772622835,214,0 +170772622883,214,0 +170772622932,215,0 +170772622981,215,0 +170772623029,215,0 +170772623077,215,0 +170772623127,215,0 +170772623175,215,0 +170772623222,215,0 +170772623272,215,0 +170772623320,215,0 +170772623368,215,0 +170772623416,214,0 +170772623465,214,0 +170772623513,214,0 +170772623562,214,0 +170772623610,214,0 +170772623660,214,0 +170772623708,214,0 +170772623756,214,0 +170772623803,215,0 +170772623851,214,0 +170772623899,215,0 +170772623947,215,0 +170772623995,215,0 +170772624043,215,0 +170772624091,215,0 +170772624141,215,0 +170772624189,215,0 +170772624237,215,0 +170772624284,215,0 +170772624332,214,0 +170772624382,214,0 +170772624431,214,0 +170772624479,214,0 +170772624529,214,0 +170772624577,214,0 +170772624625,214,0 +170772624672,214,0 +170772624720,214,0 +170772624770,215,0 +170772624818,215,0 +170772624866,215,0 +170772624913,215,0 +170772624963,215,0 +170772625011,215,0 +170772625060,215,0 +170772625110,215,0 +170772625159,215,0 +170772625207,214,0 +170772625255,214,0 +170772625303,214,0 +170772625353,214,0 +170772625401,214,0 +170772625450,214,0 +170772625500,214,0 +170772625548,214,0 +170772625596,214,0 +170772625645,214,0 +170772625693,214,0 +170772625741,215,0 +170772625789,215,0 +170772625839,215,0 +170772625887,215,0 +170772625936,215,0 +170772625984,215,0 +170772626032,215,0 +170772626080,214,0 +170772626128,214,0 +170772626175,214,0 +170772626223,214,0 +170772626271,214,0 +170772626321,214,0 +170772626369,214,0 +170772626418,214,0 +170772626467,215,0 +170772626515,214,0 +170772626565,215,0 +170772626612,215,0 +170772626660,215,0 +170772626708,215,0 +170772626756,215,0 +170772626805,215,0 +170772626855,215,0 +170772626903,215,0 +170772626951,215,0 +170772626998,214,0 +170772627046,213,0 +170772627096,214,0 +170772627144,214,0 +170772627191,214,0 +170772627239,214,0 +170772627287,214,0 +170772627336,214,0 +170772627386,214,0 +170772627434,215,0 +170772627481,214,0 +170772627529,215,0 +170772627577,215,0 +170772627625,215,0 +170772627673,215,0 +170772627721,215,0 +170772627769,215,0 +170772627817,215,0 +170772627866,214,0 +170772627916,213,0 +170772627963,213,0 +170772628013,214,0 +170772628062,213,0 +170772628110,214,0 +170772628158,214,0 +170772628206,214,0 +170772628254,214,0 +170772628303,214,0 +170772628351,214,0 +170772628399,214,0 +170772628447,214,0 +170772628495,215,0 +170772628543,214,0 +170772628591,215,0 +170772628638,215,0 +170772628686,215,0 +170772628736,215,0 +170772628784,214,0 +170772628832,214,0 +170772628881,214,0 +170772628929,214,0 +170772628977,214,0 +170772629025,214,0 +170772629074,214,0 +170772629124,214,0 +170772629172,214,0 +170772629221,214,0 +170772629270,214,0 +170772629318,214,0 +170772629366,214,0 +170772629414,215,0 +170772629463,215,0 +170772629511,215,0 +170772629560,215,0 +170772629609,215,0 +170772629659,214,0 +170772629707,213,0 +170772629755,214,0 +170772629804,214,0 +170772629852,214,0 +170772629901,214,0 +170772629951,214,0 +170772629999,214,0 +170772630047,214,0 +170772630095,214,0 +170772630144,215,0 +170772630192,215,0 +170772630240,215,0 +170772630289,215,0 +170772630337,215,0 +170772630385,215,0 +170772630433,215,0 +170772630483,215,0 +170772630531,215,0 +170772630580,214,0 +170772630628,214,0 +170772630676,214,0 +170772630726,214,0 +170772630774,214,0 +170772630822,214,0 +170772630870,214,0 +170772630917,214,0 +170772630965,214,0 +170772631015,214,0 +170772631063,214,0 +170772631111,214,0 +170772631159,214,0 +170772631208,215,0 +170772631258,215,0 +170772631307,215,0 +170772631355,215,0 +170772631403,215,0 +170772631451,215,0 +170772631499,215,0 +170772631546,215,0 +170772631594,215,0 +170772631644,215,0 +170772631692,215,0 +170772631741,215,0 +170772631791,215,0 +170772631840,215,0 +170772631890,214,0 +170772631939,214,0 +170772631989,214,0 +170772632038,214,0 +170772632088,214,0 +170772632136,214,0 +170772632185,215,0 +170772632233,214,0 +170772632281,215,0 +170772632330,214,0 +170772632378,215,0 +170772632428,215,0 +170772632477,215,0 +170772632525,215,0 +170772632574,215,0 +170772632622,215,0 +170772632670,215,0 +170772632718,215,0 +170772632767,215,0 +170772632816,214,0 +170772632864,214,0 +170772632912,214,0 +170772632962,214,0 +170772633010,214,0 +170772633058,214,0 +170772633105,214,0 +170772633155,214,0 +170772633203,215,0 +170772633251,215,0 +170772633300,215,0 +170772633348,215,0 +170772633396,215,0 +170772633444,215,0 +170772633492,215,0 +170772633542,215,0 +170772633590,215,0 +170772633639,215,0 +170772633687,214,0 +170772633735,214,0 +170772633783,214,0 +170772633831,214,0 +170772633880,214,0 +170772633928,214,0 +170772633976,215,0 +170772634025,214,0 +170772634075,215,0 +170772634125,215,0 +170772634172,215,0 +170772634220,215,0 +170772634268,215,0 +170772634318,215,0 +170772634367,215,0 +170772634415,215,0 +170772634463,215,0 +170772634513,215,0 +170772634561,214,0 +170772634609,214,0 +170772634656,214,0 +170772634706,214,0 +170772634754,214,0 +170772634803,214,0 +170772634851,214,0 +170772634901,215,0 +170772634949,214,0 +170772634997,215,0 +170772635046,215,0 +170772635094,215,0 +170772635142,215,0 +170772635190,215,0 +170772635238,215,0 +170772635286,215,0 +170772635334,215,0 +170772635381,215,0 +170772635429,215,0 +170772635477,214,0 +170772635525,214,0 +170772635573,214,0 +170772635620,214,0 +170772635668,214,0 +170772635718,214,0 +170772635766,214,0 +170772635813,214,0 +170772635861,215,0 +170772635909,215,0 +170772635957,215,0 +170772636005,215,0 +170772636053,215,0 +170772636100,215,0 +170772636150,215,0 +170772636199,215,0 +170772636247,215,0 +170772636297,215,0 +170772636344,214,0 +170772636392,214,0 +170772636440,214,0 +170772636488,214,0 +170772636536,214,0 +170772636585,214,0 +170772636633,214,0 +170772636681,214,0 +170772636729,214,0 +170772636777,214,0 +170772636824,214,0 +170772636874,214,0 +170772636922,215,0 +170772636971,214,0 +170772637019,215,0 +170772637067,215,0 +170772637115,215,0 +170772637163,215,0 +170772637211,215,0 +170772637259,214,0 +170772637307,213,0 +170772637354,213,0 +170772637402,213,0 +170772637452,214,0 +170772637499,213,0 +170772637547,214,0 +170772637595,214,0 +170772637643,214,0 +170772637692,214,0 +170772637740,214,0 +170772637788,214,0 +170772637836,214,0 +170772637884,215,0 +170772637932,215,0 +170772637980,215,0 +170772638027,215,0 +170772638075,215,0 +170772638125,214,0 +170772638174,213,0 +170772638222,213,0 +170772638272,213,0 +170772638320,214,0 +170772638368,214,0 +170772638416,214,0 +170772638465,214,0 +170772638513,214,0 +170772638563,214,0 +170772638611,214,0 +170772638660,214,0 +170772638710,214,0 +170772638758,214,0 +170772638806,214,0 +170772638855,215,0 +170772638905,215,0 +170772638953,215,0 +170772639002,215,0 +170772639050,214,0 +170772639098,213,0 +170772639146,214,0 +170772639195,213,0 +170772639245,214,0 +170772639293,214,0 +170772639341,214,0 +170772639389,214,0 +170772639437,214,0 +170772639486,214,0 +170772639534,214,0 +170772639582,215,0 +170772639630,215,0 +170772639679,215,0 +170772639729,215,0 +170772639777,215,0 +170772639824,215,0 +170772639872,215,0 +170772639920,214,0 +170772639970,213,0 +170772640019,214,0 +170772640067,214,0 +170772640115,214,0 +170772640165,214,0 +170772640214,214,0 +170772640264,214,0 +170772640313,214,0 +170772640361,214,0 +170772640409,215,0 +170772640457,215,0 +170772640505,215,0 +170772640553,215,0 +170772640602,215,0 +170772640652,215,0 +170772640701,215,0 +170772640749,215,0 +170772640797,215,0 +170772640845,214,0 +170772640893,214,0 +170772640941,214,0 +170772640989,214,0 +170772641037,214,0 +170772641085,214,0 +170772641133,214,0 +170772641182,215,0 +170772641230,215,0 +170772641280,215,0 +170772641328,214,0 +170772641377,215,0 +170772641425,215,0 +170772641474,215,0 +170772641522,215,0 +170772641570,215,0 +170772641620,215,0 +170772641669,215,0 +170772641717,214,0 +170772641767,214,0 +170772641815,214,0 +170772641864,214,0 +170772641912,214,0 +170772641960,214,0 +170772642008,214,0 +170772642056,214,0 +170772642104,214,0 +170772642152,214,0 +170772642201,214,0 +170772642249,215,0 +170772642298,215,0 +170772642346,215,0 +170772642396,215,0 +170772642445,215,0 +170772642493,215,0 +170772642541,215,0 +170772642591,215,0 +170772642638,214,0 +170772642686,214,0 +170772642734,214,0 +170772642784,214,0 +170772642833,214,0 +170772642881,215,0 +170772642931,215,0 +170772642980,214,0 +170772643030,215,0 +170772643077,215,0 +170772643127,215,0 +170772643175,215,0 +170772643224,215,0 +170772643274,215,0 +170772643322,215,0 +170772643370,215,0 +170772643419,215,0 +170772643467,215,0 +170772643517,214,0 +170772643565,214,0 +170772643612,215,0 +170772643660,214,0 +170772643708,215,0 +170772643758,215,0 +170772643807,215,0 +170772643857,215,0 +170772643906,215,0 +170772643954,215,0 +170772644002,215,0 +170772644050,215,0 +170772644098,215,0 +170772644146,215,0 +170772644194,215,0 +170772644242,215,0 +170772644291,215,0 +170772644341,215,0 +170772644390,214,0 +170772644438,214,0 +170772644486,214,0 +170772644534,214,0 +170772644582,215,0 +170772644630,214,0 +170772644678,215,0 +170772644726,215,0 +170772644774,215,0 +170772644822,215,0 +170772644870,215,0 +170772644917,215,0 +170772644965,215,0 +170772645013,215,0 +170772645063,215,0 +170772645111,215,0 +170772645159,215,0 +170772645208,215,0 +170772645258,215,0 +170772645307,214,0 +170772645357,214,0 +170772645405,214,0 +170772645453,214,0 +170772645502,215,0 +170772645552,214,0 +170772645600,214,0 +170772645649,215,0 +170772645697,215,0 +170772645745,215,0 +170772645793,215,0 +170772645841,215,0 +170772645889,215,0 +170772645938,215,0 +170772645986,215,0 +170772646034,215,0 +170772646084,215,0 +170772646132,215,0 +170772646180,214,0 +170772646228,213,0 +170772646275,214,0 +170772646323,214,0 +170772646373,214,0 +170772646422,214,0 +170772646470,214,0 +170772646518,214,0 +170772646566,214,0 +170772646614,214,0 +170772646662,215,0 +170772646710,215,0 +170772646758,215,0 +170772646807,215,0 +170772646857,215,0 +170772646906,215,0 +170772646954,215,0 +170772647003,215,0 +170772647051,214,0 +170772647099,214,0 +170772647149,214,0 +170772647198,214,0 +170772647246,214,0 +170772647294,214,0 +170772647344,214,0 +170772647392,214,0 +170772647440,214,0 +170772647487,214,0 +170772647537,214,0 +170772647585,215,0 +170772647633,215,0 +170772647681,215,0 +170772647729,215,0 +170772647777,215,0 +170772647825,215,0 +170772647873,215,0 +170772647920,215,0 +170772647968,213,0 +170772648016,214,0 +170772648066,213,0 +170772648115,214,0 +170772648163,214,0 +170772648211,214,0 +170772648261,214,0 +170772648309,214,0 +170772648357,214,0 +170772648406,214,0 +170772648454,214,0 +170772648502,214,0 +170772648552,214,0 +170772648601,215,0 +170772648651,214,0 +170772648699,215,0 +170772648746,215,0 +170772648794,215,0 +170772648842,215,0 +170772648890,213,0 +170772648938,213,0 +170772648986,213,0 +170772649035,214,0 +170772649083,214,0 +170772649131,214,0 +170772649179,214,0 +170772649227,214,0 +170772649276,214,0 +170772649326,214,0 +170772649375,214,0 +170772649425,214,0 +170772649473,215,0 +170772649521,215,0 +170772649570,214,0 +170772649618,215,0 +170772649666,215,0 +170772649714,215,0 +170772649762,214,0 +170772649811,213,0 +170772649859,213,0 +170772649909,214,0 +170772649957,214,0 +170772650005,214,0 +170772650053,214,0 +170772650100,214,0 +170772650150,214,0 +170772650198,214,0 +170772650246,214,0 +170772650294,214,0 +170772650341,215,0 +170772650389,215,0 +170772650437,214,0 +170772650487,215,0 +170772650536,215,0 +170772650584,215,0 +170772650634,214,0 +170772650682,213,0 +170772650731,213,0 +170772650779,214,0 +170772650827,214,0 +170772650877,214,0 +170772650924,214,0 +170772650972,214,0 +170772651022,214,0 +170772651070,214,0 +170772651118,214,0 +170772651167,214,0 +170772651217,214,0 +170772651265,215,0 +170772651313,215,0 +170772651362,215,0 +170772651410,215,0 +170772651458,215,0 +170772651506,214,0 +170772651554,214,0 +170772651602,214,0 +170772651651,214,0 +170772651699,213,0 +170772651747,214,0 +170772651795,214,0 +170772651845,214,0 +170772651894,214,0 +170772651944,214,0 +170772651992,214,0 +170772652040,214,0 +170772652088,215,0 +170772652137,215,0 +170772652186,215,0 +170772652234,215,0 +170772652282,214,0 +170772652330,215,0 +170772652378,215,0 +170772652426,213,0 +170772652476,213,0 +170772652524,213,0 +170772652573,213,0 +170772652621,213,0 +170772652669,213,0 +170772652719,214,0 +170772652767,214,0 +170772652815,214,0 +170772652863,214,0 +170772652911,214,0 +170772652958,214,0 +170772653008,214,0 +170772653057,214,0 +170772653105,215,0 +170772653153,215,0 +170772653201,215,0 +170772653249,215,0 +170772653297,214,0 +170772653346,213,0 +170772653396,213,0 +170772653444,213,0 +170772653492,213,0 +170772653541,213,0 +170772653589,214,0 +170772653637,213,0 +170772653686,214,0 +170772653734,214,0 +170772653782,214,0 +170772653830,214,0 +170772653880,214,0 +170772653928,214,0 +170772653976,214,0 +170772654025,214,0 +170772654073,215,0 +170772654121,214,0 +170772654169,214,0 +170772654219,214,0 +170772654267,213,0 +170772654316,213,0 +170772654364,213,0 +170772654412,213,0 +170772654460,214,0 +170772654508,213,0 +170772654556,214,0 +170772654604,214,0 +170772654653,214,0 +170772654703,214,0 +170772654751,214,0 +170772654799,214,0 +170772654847,214,0 +170772654895,214,0 +170772654942,214,0 +170772654992,214,0 +170772655041,215,0 +170772655091,214,0 +170772655139,213,0 +170772655188,213,0 +170772655236,214,0 +170772655284,214,0 +170772655332,213,0 +170772655382,214,0 +170772655431,214,0 +170772655479,214,0 +170772655527,214,0 +170772655577,214,0 +170772655624,214,0 +170772655672,214,0 +170772655720,215,0 +170772655768,214,0 +170772655818,215,0 +170772655867,215,0 +170772655915,215,0 +170772655963,215,0 +170772656013,214,0 +170772656061,214,0 +170772656109,214,0 +170772656157,214,0 +170772656206,214,0 +170772656256,214,0 +170772656304,214,0 +170772656353,214,0 +170772656402,214,0 +170772656452,215,0 +170772656500,214,0 +170772656549,215,0 +170772656599,215,0 +170772656647,215,0 +170772656696,215,0 +170772656744,215,0 +170772656792,215,0 +170772656840,215,0 +170772656889,214,0 +170772656937,214,0 +170772656985,214,0 +170772657033,214,0 +170772657080,214,0 +170772657128,214,0 +170772657176,214,0 +170772657224,214,0 +170772657273,215,0 +170772657321,214,0 +170772657369,215,0 +170772657417,215,0 +170772657465,215,0 +170772657513,215,0 +170772657561,215,0 +170772657608,215,0 +170772657656,215,0 +170772657704,215,0 +170772657752,214,0 +170772657800,214,0 +170772657848,215,0 +170772657896,215,0 +170772657944,215,0 +170772657993,215,0 +170772658041,215,0 +170772658090,215,0 +170772658140,215,0 +170772658188,215,0 +170772658237,215,0 +170772658287,215,0 +170772658335,215,0 +170772658383,215,0 +170772658431,215,0 +170772658480,215,0 +170772658528,215,0 +170772658578,215,0 +170772658626,215,0 +170772658675,214,0 +170772658723,214,0 +170772658771,215,0 +170772658821,215,0 +170772658870,215,0 +170772658920,215,0 +170772658969,215,0 +170772659017,215,0 +170772659065,215,0 +170772659113,215,0 +170772659161,215,0 +170772659211,215,0 +170772659258,215,0 +170772659308,215,0 +170772659356,215,0 +170772659406,215,0 +170772659453,215,0 +170772659501,215,0 +170772659551,214,0 +170772659600,214,0 +170772659648,214,0 +170772659696,214,0 +170772659744,214,0 +170772659792,214,0 +170772659842,214,0 +170772659890,215,0 +170772659938,215,0 +170772659987,215,0 +170772660035,215,0 +170772660083,215,0 +170772660133,215,0 +170772660181,215,0 +170772660230,215,0 +170772660280,215,0 +170772660328,215,0 +170772660377,215,0 +170772660425,214,0 +170772660475,214,0 +170772660523,214,0 +170772660571,214,0 +170772660620,214,0 +170772660670,214,0 +170772660718,214,0 +170772660767,215,0 +170772660815,215,0 +170772660863,215,0 +170772660911,215,0 +170772660959,215,0 +170772661008,215,0 +170772661056,215,0 +170772661104,215,0 +170772661152,215,0 +170772661200,215,0 +170772661250,215,0 +170772661299,214,0 +170772661347,214,0 +170772661397,214,0 +170772661446,214,0 +170772661494,214,0 +170772661542,215,0 +170772661592,215,0 +170772661640,215,0 +170772661689,215,0 +170772661737,215,0 +170772661785,215,0 +170772661833,215,0 +170772661881,215,0 +170772661930,215,0 +170772661978,215,0 +170772662026,215,0 +170772662076,215,0 +170772662125,215,0 +170772662175,215,0 +170772662223,214,0 +170772662272,214,0 +170772662320,214,0 +170772662369,214,0 +170772662419,214,0 +170772662469,214,0 +170772662518,214,0 +170772662566,215,0 +170772662615,215,0 +170772662663,215,0 +170772662711,215,0 +170772662759,215,0 +170772662807,215,0 +170772662857,215,0 +170772662906,215,0 +170772662956,215,0 +170772663004,215,0 +170772663052,215,0 +170772663100,214,0 +170772663148,214,0 +170772663196,213,0 +170772663245,213,0 +170772663293,214,0 +170772663343,214,0 +170772663390,214,0 +170772663438,214,0 +170772663488,214,0 +170772663536,214,0 +170772663585,214,0 +170772663635,215,0 +170772663684,215,0 +170772663734,215,0 +170772663783,215,0 +170772663831,215,0 +170772663879,215,0 +170772663928,215,0 +170772663976,214,0 +170772664024,213,0 +170772664072,214,0 +170772664120,214,0 +170772664168,214,0 +170772664216,214,0 +170772664265,214,0 +170772664315,214,0 +170772664363,214,0 +170772664412,214,0 +170772664460,214,0 +170772664510,214,0 +170772664559,214,0 +170772664607,215,0 +170772664655,215,0 +170772664704,214,0 +170772664754,215,0 +170772664804,215,0 +170772664853,214,0 +170772664903,213,0 +170772664952,213,0 +170772665002,213,0 +170772665050,214,0 +170772665098,214,0 +170772665145,214,0 +170772665193,214,0 +170772665241,214,0 +170772665289,214,0 +170772665337,214,0 +170772665386,215,0 +170772665434,215,0 +170772665482,215,0 +170772665532,215,0 +170772665580,215,0 +170772665628,215,0 +170772665676,215,0 +170772665724,215,0 +170772665773,213,0 +170772665823,213,0 +170772665871,214,0 +170772665918,214,0 +170772665966,214,0 +170772666016,214,0 +170772666064,214,0 +170772666113,214,0 +170772666163,214,0 +170772666212,214,0 +170772666262,214,0 +170772666310,214,0 +170772666359,215,0 +170772666407,215,0 +170772666457,215,0 +170772666505,215,0 +170772666552,215,0 +170772666602,215,0 +170772666650,213,0 +170772666698,213,0 +170772666747,213,0 +170772666795,213,0 +170772666843,213,0 +170772666892,213,0 +170772666940,213,0 +170772666988,214,0 +170772667037,214,0 +170772667087,214,0 +170772667135,214,0 +170772667184,214,0 +170772667232,214,0 +170772667280,215,0 +170772667328,214,0 +170772667376,214,0 +170772667424,214,0 +170772667473,215,0 +170772667521,214,0 +170772667571,213,0 +170772667619,213,0 +170772667668,214,0 +170772667716,214,0 +170772667763,214,0 +170772667811,214,0 +170772667859,214,0 +170772667907,214,0 +170772667955,214,0 +170772668003,214,0 +170772668050,214,0 +170772668098,214,0 +170772668146,215,0 +170772668194,215,0 +170772668244,215,0 +170772668291,215,0 +170772668341,215,0 +170772668390,215,0 +170772668440,213,0 +170772668488,213,0 +170772668537,214,0 +170772668587,213,0 +170772668635,214,0 +170772668684,214,0 +170772668732,214,0 +170772668780,214,0 +170772668828,214,0 +170772668876,214,0 +170772668925,214,0 +170772668975,214,0 +170772669023,215,0 +170772669072,215,0 +170772669120,215,0 +170772669168,215,0 +170772669216,215,0 +170772669264,215,0 +170772669312,213,0 +170772669360,213,0 +170772669408,213,0 +170772669457,214,0 +170772669505,214,0 +170772669554,214,0 +170772669602,214,0 +170772669650,214,0 +170772669698,214,0 +170772669746,214,0 +170772669794,214,0 +170772669842,214,0 +170772669890,215,0 +170772669938,215,0 +170772669986,215,0 +170772670035,215,0 +170772670083,215,0 +170772670131,214,0 +170772670181,214,0 +170772670228,213,0 +170772670276,213,0 +170772670326,214,0 +170772670374,214,0 +170772670421,214,0 +170772670469,214,0 +170772670517,214,0 +170772670565,214,0 +170772670615,214,0 +170772670663,214,0 +170772670710,214,0 +170772670758,214,0 +170772670808,214,0 +170772670856,214,0 +170772670904,214,0 +170772670953,215,0 +170772671003,214,0 +170772671052,214,0 +170772671102,213,0 +170772671149,213,0 +170772671197,214,0 +170772671245,214,0 +170772671295,214,0 +170772671343,214,0 +170772671391,214,0 +170772671439,214,0 +170772671488,214,0 +170772671536,214,0 +170772671584,214,0 +170772671634,214,0 +170772671681,214,0 +170772671731,214,0 +170772671780,214,0 +170772671830,214,0 +170772671878,215,0 +170772671926,215,0 +170772671975,214,0 +170772672023,214,0 +170772672071,214,0 +170772672119,214,0 +170772672167,214,0 +170772672215,214,0 +170772672263,214,0 +170772672311,214,0 +170772672359,214,0 +170772672409,214,0 +170772672456,214,0 +170772672504,215,0 +170772672552,215,0 +170772672600,215,0 +170772672648,215,0 +170772672696,215,0 +170772672744,215,0 +170772672792,215,0 +170772672840,214,0 +170772672889,214,0 +170772672937,214,0 +170772672985,214,0 +170772673033,214,0 +170772673081,214,0 +170772673129,214,0 +170772673179,214,0 +170772673227,214,0 +170772673276,214,0 +170772673324,214,0 +170772673373,214,0 +170772673421,214,0 +170772673471,215,0 +170772673519,215,0 +170772673567,215,0 +170772673615,215,0 +170772673664,215,0 +170772673712,215,0 +170772673761,213,0 +170772673809,214,0 +170772673859,214,0 +170772673908,214,0 +170772673958,214,0 +170772674006,214,0 +170772674055,214,0 +170772674105,214,0 +170772674152,214,0 +170772674200,214,0 +170772674248,215,0 +170772674296,215,0 +170772674346,215,0 +170772674394,215,0 +170772674441,215,0 +170772674489,215,0 +170772674539,215,0 +170772674587,215,0 +170772674635,214,0 +170772674684,214,0 +170772674732,214,0 +170772674780,214,0 +170772674830,214,0 +170772674878,214,0 +170772674927,214,0 +170772674975,215,0 +170772675024,215,0 +170772675074,215,0 +170772675124,215,0 +170772675171,215,0 +170772675219,215,0 +170772675267,215,0 +170772675317,215,0 +170772675365,215,0 +170772675413,215,0 +170772675461,215,0 +170772675509,214,0 +170772675558,214,0 +170772675606,214,0 +170772675654,214,0 +170772675703,214,0 +170772675751,214,0 +170772675801,214,0 +170772675850,214,0 +170772675898,214,0 +170772675948,214,0 +170772675997,215,0 +170772676047,215,0 +170772676095,215,0 +170772676144,215,0 +170772676192,215,0 +170772676240,215,0 +170772676288,215,0 +170772676336,215,0 +170772676384,214,0 +170772676432,214,0 +170772676481,214,0 +170772676531,214,0 +170772676578,214,0 +170772676626,214,0 +170772676674,215,0 +170772676722,214,0 +170772676772,215,0 +170772676821,215,0 +170772676869,215,0 +170772676917,215,0 +170772676966,215,0 +170772677014,215,0 +170772677064,215,0 +170772677112,215,0 +170772677160,215,0 +170772677208,215,0 +170772677257,215,0 +170772677307,214,0 +170772677356,214,0 +170772677404,214,0 +170772677452,214,0 +170772677501,214,0 +170772677551,214,0 +170772677599,214,0 +170772677647,214,0 +170772677695,215,0 +170772677743,215,0 +170772677791,215,0 +170772677839,215,0 +170772677886,215,0 +170772677934,215,0 +170772677984,215,0 +170772678032,215,0 +170772678081,215,0 +170772678129,215,0 +170772678179,214,0 +170772678227,214,0 +170772678275,214,0 +170772678324,214,0 +170772678372,214,0 +170772678422,214,0 +170772678471,214,0 +170772678519,215,0 +170772678567,215,0 +170772678616,215,0 +170772678666,215,0 +170772678716,215,0 +170772678764,215,0 +170772678813,215,0 +170772678863,215,0 +170772678912,215,0 +170772678962,215,0 +170772679011,215,0 +170772679059,214,0 +170772679109,214,0 +170772679158,214,0 +170772679208,214,0 +170772679256,214,0 +170772679303,214,0 +170772679351,214,0 +170772679399,214,0 +170772679449,214,0 +170772679498,215,0 +170772679546,214,0 +170772679596,215,0 +170772679645,215,0 +170772679693,215,0 +170772679741,215,0 +170772679789,215,0 +170772679838,215,0 +170772679886,215,0 +170772679934,214,0 +170772679982,214,0 +170772680030,213,0 +170772680078,213,0 +170772680126,214,0 +170772680174,214,0 +170772680221,214,0 +170772680271,214,0 +170772680319,214,0 +170772680367,214,0 +170772680414,214,0 +170772680462,214,0 +170772680510,214,0 +170772680558,215,0 +170772680606,214,0 +170772680653,215,0 +170772680701,215,0 +170772680749,215,0 +170772680797,215,0 +170772680844,214,0 +170772680894,213,0 +170772680942,213,0 +170772680989,213,0 +170772681039,213,0 +170772681086,213,0 +170772681134,214,0 +170772681182,214,0 +170772681230,214,0 +170772681278,214,0 +170772681325,214,0 +170772681373,214,0 +170772681421,214,0 +170772681469,214,0 +170772681517,214,0 +170772681565,214,0 +170772681614,214,0 +170772681662,215,0 +170772681710,214,0 +170772681757,213,0 +170772681805,213,0 +170772681853,213,0 +170772681903,214,0 +170772681950,214,0 +170772681998,214,0 +170772682046,214,0 +170772682094,214,0 +170772682142,214,0 +170772682189,214,0 +170772682239,214,0 +170772682287,215,0 +170772682334,215,0 +170772682382,215,0 +170772682430,215,0 +170772682478,215,0 +170772682526,215,0 +170772682573,215,0 +170772682623,214,0 +170772682671,213,0 +170772682719,213,0 +170772682767,213,0 +170772682815,214,0 +170772682864,214,0 +170772682912,214,0 +170772682961,214,0 +170772683009,214,0 +170772683057,214,0 +170772683105,214,0 +170772683153,214,0 +170772683201,214,0 +170772683249,215,0 +170772683297,215,0 +170772683345,215,0 +170772683393,215,0 +170772683441,215,0 +170772683488,215,0 +170772683536,214,0 +170772683584,213,0 +170772683633,214,0 +170772683681,214,0 +170772683729,214,0 +170772683779,214,0 +170772683826,214,0 +170772683874,214,0 +170772683922,214,0 +170772683970,214,0 +170772684017,214,0 +170772684065,215,0 +170772684113,215,0 +170772684161,215,0 +170772684209,215,0 +170772684257,215,0 +170772684304,215,0 +170772684354,215,0 +170772684402,214,0 +170772684450,214,0 +170772684498,214,0 +170772684546,214,0 +170772684594,214,0 +170772684641,214,0 +170772684689,214,0 +170772684739,214,0 +170772684787,214,0 +170772684836,215,0 +170772684884,214,0 +170772684933,215,0 +170772684983,215,0 +170772685031,215,0 +170772685080,215,0 +170772685128,215,0 +170772685176,215,0 +170772685226,215,0 +170772685275,214,0 +170772685325,214,0 +170772685374,214,0 +170772685422,214,0 +170772685472,214,0 +170772685520,214,0 +170772685569,214,0 +170772685617,214,0 +170772685665,214,0 +170772685715,214,0 +170772685763,215,0 +170772685811,215,0 +170772685860,215,0 +170772685910,215,0 +170772685959,215,0 +170772686009,215,0 +170772686058,215,0 +170772686106,215,0 +170772686154,214,0 +170772686202,214,0 +170772686251,214,0 +170772686301,214,0 +170772686349,214,0 +170772686398,214,0 +170772686448,214,0 +170772686497,214,0 +170772686545,214,0 +170772686593,215,0 +170772686641,215,0 +170772686691,215,0 +170772686738,215,0 +170772686786,215,0 +170772686834,215,0 +170772686882,215,0 +170772686930,215,0 +170772686980,215,0 +170772687028,215,0 +170772687076,214,0 +170772687124,214,0 +170772687173,214,0 +170772687221,214,0 +170772687271,214,0 +170772687319,214,0 +170772687366,214,0 +170772687414,214,0 +170772687464,214,0 +170772687513,215,0 +170772687561,215,0 +170772687609,215,0 +170772687657,215,0 +170772687705,215,0 +170772687755,215,0 +170772687802,215,0 +170772687850,215,0 +170772687900,215,0 +170772687948,214,0 +170772687997,214,0 +170772688045,214,0 +170772688095,214,0 +170772688143,214,0 +170772688192,214,0 +170772688240,214,0 +170772688288,214,0 +170772688336,214,0 +170772688384,215,0 +170772688431,214,0 +170772688479,215,0 +170772688527,215,0 +170772688575,215,0 +170772688623,215,0 +170772688670,215,0 +170772688718,215,0 +170772688768,215,0 +170772688816,214,0 +170772688864,214,0 +170772688911,214,0 +170772688959,214,0 +170772689007,214,0 +170772689055,214,0 +170772689103,214,0 +170772689151,214,0 +170772689199,214,0 +170772689247,215,0 +170772689294,215,0 +170772689342,215,0 +170772689390,215,0 +170772689438,215,0 +170772689486,215,0 +170772689534,215,0 +170772689582,215,0 +170772689629,215,0 +170772689677,214,0 +170772689727,213,0 +170772689774,214,0 +170772689822,213,0 +170772689870,214,0 +170772689920,214,0 +170772689968,214,0 +170772690017,214,0 +170772690065,214,0 +170772690113,214,0 +170772690161,214,0 +170772690211,214,0 +170772690260,214,0 +170772690308,214,0 +170772690358,215,0 +170772690407,215,0 +170772690455,215,0 +170772690503,215,0 +170772690551,215,0 +170772690601,213,0 +170772690650,213,0 +170772690700,213,0 +170772690748,213,0 +170772690796,214,0 +170772690844,214,0 +170772690892,214,0 +170772690939,214,0 +170772690987,214,0 +170772691037,214,0 +170772691085,214,0 +170772691134,215,0 +170772691182,214,0 +170772691232,214,0 +170772691280,215,0 +170772691328,215,0 +170772691377,215,0 +170772691425,215,0 +170772691473,214,0 +170772691522,214,0 +170772691570,213,0 +170772691620,214,0 +170772691668,214,0 +170772691716,214,0 +170772691764,214,0 +170772691812,214,0 +170772691860,214,0 +170772691908,214,0 +170772691956,214,0 +170772692004,215,0 +170772692053,215,0 +170772692101,215,0 +170772692149,215,0 +170772692197,215,0 +170772692245,215,0 +170772692293,215,0 +170772692341,214,0 +170772692389,214,0 +170772692438,214,0 +170772692486,214,0 +170772692534,214,0 +170772692583,214,0 +170772692631,214,0 +170772692679,214,0 +170772692729,214,0 +170772692778,214,0 +170772692826,214,0 +170772692876,215,0 +170772692925,214,0 +170772692973,214,0 +170772693021,215,0 +170772693070,215,0 +170772693118,215,0 +170772693166,215,0 +170772693214,215,0 +170772693264,214,0 +170772693312,214,0 +170772693360,214,0 +170772693407,214,0 +170772693455,214,0 +170772693503,214,0 +170772693551,214,0 +170772693599,214,0 +170772693648,215,0 +170772693696,214,0 +170772693744,215,0 +170772693792,215,0 +170772693840,215,0 +170772693890,215,0 +170772693937,215,0 +170772693985,215,0 +170772694035,215,0 +170772694083,215,0 +170772694132,214,0 +170772694182,214,0 +170772694230,214,0 +170772694279,214,0 +170772694329,214,0 +170772694377,214,0 +170772694425,214,0 +170772694473,214,0 +170772694522,215,0 +170772694570,215,0 +170772694620,215,0 +170772694667,215,0 +170772694715,215,0 +170772694763,215,0 +170772694811,215,0 +170772694861,215,0 +170772694908,215,0 +170772694956,215,0 +170772695004,214,0 +170772695054,214,0 +170772695102,214,0 +170772695151,214,0 +170772695199,214,0 +170772695247,214,0 +170772695295,214,0 +170772695345,214,0 +170772695394,215,0 +170772695442,215,0 +170772695490,215,0 +170772695538,215,0 +170772695588,215,0 +170772695637,215,0 +170772695686,215,0 +170772695736,215,0 +170772695785,215,0 +170772695835,215,0 +170772695884,214,0 +170772695934,213,0 +170772695982,214,0 +170772696030,214,0 +170772696078,214,0 +170772696127,214,0 +170772696177,214,0 +170772696226,214,0 +170772696274,214,0 +170772696322,215,0 +170772696370,214,0 +170772696418,215,0 +170772696467,215,0 +170772696515,215,0 +170772696563,215,0 +170772696611,215,0 +170772696659,215,0 +170772696707,215,0 +170772696755,215,0 +170772696803,214,0 +170772696852,213,0 +170772696902,213,0 +170772696950,213,0 +170772696999,214,0 +170772697047,214,0 +170772697097,214,0 +170772697145,214,0 +170772697193,214,0 +170772697242,214,0 +170772697292,214,0 +170772697340,215,0 +170772697387,215,0 +170772697435,215,0 +170772697485,215,0 +170772697533,215,0 +170772697581,215,0 +170772697629,215,0 +170772697678,213,0 +170772697726,213,0 +170772697774,214,0 +170772697822,213,0 +170772697870,214,0 +170772697920,214,0 +170772697968,214,0 +170772698017,214,0 +170772698067,214,0 +170772698115,214,0 +170772698164,214,0 +170772698212,214,0 +170772698262,214,0 +170772698310,215,0 +170772698358,215,0 +170772698407,214,0 +170772698455,215,0 +170772698503,215,0 +170772698553,214,0 +170772698601,214,0 +170772698649,214,0 +170772698697,214,0 +170772698746,214,0 +170772698796,214,0 +170772698844,214,0 +170772698892,214,0 +170772698940,214,0 +170772698989,214,0 +170772699037,215,0 +170772699085,215,0 +170772699133,215,0 +170772699183,215,0 +170772699232,215,0 +170772699280,215,0 +170772699328,215,0 +170772699376,215,0 +170772699424,214,0 +170772699473,214,0 +170772699521,214,0 +170772699571,214,0 +170772699620,214,0 +170772699669,214,0 +170772699719,214,0 +170772699768,215,0 +170772699818,215,0 +170772699867,215,0 +170772699917,215,0 +170772699965,215,0 +170772700014,215,0 +170772700062,215,0 +170772700110,215,0 +170772700160,215,0 +170772700208,215,0 +170772700256,215,0 +170772700303,214,0 +170772700353,214,0 +170772700402,214,0 +170772700452,214,0 +170772700500,214,0 +170772700549,214,0 +170772700597,215,0 +170772700645,215,0 +170772700693,215,0 +170772700743,215,0 +170772700791,215,0 +170772700840,215,0 +170772700888,215,0 +170772700936,215,0 +170772700986,215,0 +170772701033,215,0 +170772701083,215,0 +170772701131,215,0 +170772701179,214,0 +170772701227,214,0 +170772701274,214,0 +170772701322,214,0 +170772701370,214,0 +170772701420,214,0 +170772701469,214,0 +170772701519,214,0 +170772701567,215,0 +170772701616,215,0 +170772701666,215,0 +170772701714,215,0 +170772701761,215,0 +170772701809,215,0 +170772701857,215,0 +170772701907,215,0 +170772701955,215,0 +170772702003,215,0 +170772702052,214,0 +170772702100,213,0 +170772702148,213,0 +170772702198,214,0 +170772702246,214,0 +170772702294,214,0 +170772702342,214,0 +170772702389,214,0 +170772702439,214,0 +170772702487,214,0 +170772702535,215,0 +170772702584,214,0 +170772702632,215,0 +170772702680,215,0 +170772702728,215,0 +170772702775,215,0 +170772702823,215,0 +170772702871,215,0 +170772702919,215,0 +170772702967,214,0 +170772703016,213,0 +170772703066,214,0 +170772703114,214,0 +170772703162,214,0 +170772703209,214,0 +170772703257,214,0 +170772703305,214,0 +170772703355,214,0 +170772703404,214,0 +170772703452,214,0 +170772703500,214,0 +170772703548,214,0 +170772703597,215,0 +170772703645,215,0 +170772703693,215,0 +170772703743,215,0 +170772703791,215,0 +170772703840,214,0 +170772703888,214,0 +170772703936,214,0 +170772703986,214,0 +170772704034,214,0 +170772704082,214,0 +170772704130,214,0 +170772704177,214,0 +170772704227,214,0 +170772704275,214,0 +170772704324,214,0 +170772704372,215,0 +170772704420,215,0 +170772704470,215,0 +170772704519,215,0 +170772704569,215,0 +170772704618,215,0 +170772704668,214,0 +170772704717,213,0 +170772704765,213,0 +170772704815,213,0 +170772704864,214,0 +170772704912,214,0 +170772704960,214,0 +170772705008,214,0 +170772705058,214,0 +170772705106,214,0 +170772705154,215,0 +170772705202,214,0 +170772705250,215,0 +170772705297,215,0 +170772705347,215,0 +170772705395,215,0 +170772705443,215,0 +170772705491,215,0 +170772705538,215,0 +170772705586,214,0 +170772705634,213,0 +170772705682,213,0 +170772705730,213,0 +170772705779,213,0 +170772705829,213,0 +170772705878,213,0 +170772705926,214,0 +170772705974,214,0 +170772706022,214,0 +170772706070,214,0 +170772706118,214,0 +170772706166,214,0 +170772706214,214,0 +170772706262,215,0 +170772706310,215,0 +170772706358,215,0 +170772706406,215,0 +170772706454,214,0 +170772706503,213,0 +170772706552,213,0 +170772706602,213,0 +170772706650,213,0 +170772706698,214,0 +170772706747,214,0 +170772706795,214,0 +170772706843,214,0 +170772706893,214,0 +170772706941,214,0 +170772706988,214,0 +170772707038,214,0 +170772707086,214,0 +170772707135,214,0 +170772707183,214,0 +170772707231,215,0 +170772707279,215,0 +170772707327,214,0 +170772707375,214,0 +170772707425,214,0 +170772707474,213,0 +170772707522,214,0 +170772707570,214,0 +170772707618,214,0 +170772707665,214,0 +170772707713,214,0 +170772707761,214,0 +170772707809,214,0 +170772707857,214,0 +170772707904,215,0 +170772707952,215,0 +170772708002,215,0 +170772708049,215,0 +170772708097,215,0 +170772708145,215,0 +170772708193,215,0 +170772708241,214,0 +170772708290,214,0 +170772708338,214,0 +170772708388,214,0 +170772708436,214,0 +170772708483,214,0 +170772708533,214,0 +170772708581,215,0 +170772708629,215,0 +170772708678,215,0 +170772708728,215,0 +170772708777,215,0 +170772708827,215,0 +170772708875,215,0 +170772708923,215,0 +170772708970,215,0 +170772709020,215,0 +170772709068,214,0 +170772709117,214,0 +170772709167,214,0 +170772709215,214,0 +170772709264,214,0 +170772709312,214,0 +170772709360,214,0 +170772709409,214,0 +170772709459,215,0 +170772709507,215,0 +170772709555,215,0 +170772709603,215,0 +170772709651,215,0 +170772709698,215,0 +170772709748,215,0 +170772709796,215,0 +170772709845,215,0 +170772709895,215,0 +170772709943,214,0 +170772709991,214,0 +170772710040,214,0 +170772710090,214,0 +170772710138,214,0 +170772710187,214,0 +170772710237,214,0 +170772710284,214,0 +170772710332,215,0 +170772710380,215,0 +170772710430,215,0 +170772710478,215,0 +170772710526,215,0 +170772710574,215,0 +170772710621,215,0 +170772710671,215,0 +170772710720,215,0 +170772710768,215,0 +170772710818,214,0 +170772710866,214,0 +170772710914,214,0 +170772710961,214,0 +170772711009,214,0 +170772711057,214,0 +170772711105,215,0 +170772711153,215,0 +170772711203,214,0 +170772711251,215,0 +170772711299,215,0 +170772711348,215,0 +170772711396,215,0 +170772711444,215,0 +170772711492,215,0 +170772711542,215,0 +170772711590,215,0 +170772711637,215,0 +170772711687,214,0 +170772711737,214,0 +170772711785,214,0 +170772711833,214,0 +170772711882,214,0 +170772711932,214,0 +170772711979,214,0 +170772712027,214,0 +170772712075,215,0 +170772712125,215,0 +170772712174,215,0 +170772712224,215,0 +170772712272,215,0 +170772712320,215,0 +170772712369,215,0 +170772712417,215,0 +170772712467,215,0 +170772712514,215,0 +170772712564,214,0 +170772712612,214,0 +170772712661,214,0 +170772712711,214,0 +170772712759,214,0 +170772712807,214,0 +170772712856,214,0 +170772712906,214,0 +170772712954,215,0 +170772713002,215,0 +170772713050,215,0 +170772713099,215,0 +170772713147,215,0 +170772713195,215,0 +170772713243,215,0 +170772713290,215,0 +170772713338,215,0 +170772713386,214,0 +170772713434,214,0 +170772713482,214,0 +170772713530,214,0 +170772713579,214,0 +170772713627,214,0 +170772713675,214,0 +170772713723,214,0 +170772713771,214,0 +170772713818,215,0 +170772713866,215,0 +170772713914,215,0 +170772713962,215,0 +170772714010,215,0 +170772714058,215,0 +170772714105,215,0 +170772714153,215,0 +170772714201,215,0 +170772714249,214,0 +170772714297,214,0 +170772714345,214,0 +170772714394,214,0 +170772714442,214,0 +170772714490,214,0 +170772714539,214,0 +170772714589,214,0 +170772714637,214,0 +170772714686,215,0 +170772714734,215,0 +170772714784,215,0 +170772714832,215,0 +170772714880,215,0 +170772714928,215,0 +170772714977,215,0 +170772715026,215,0 +170772715075,215,0 +170772715123,215,0 +170772715171,213,0 +170772715219,214,0 +170772715269,214,0 +170772715317,214,0 +170772715366,214,0 +170772715414,214,0 +170772715463,214,0 +170772715511,214,0 +170772715559,215,0 +170772715607,215,0 +170772715655,215,0 +170772715705,215,0 +170772715753,215,0 +170772715802,215,0 +170772715850,215,0 +170772715898,215,0 +170772715946,215,0 +170772715996,214,0 +170772716045,213,0 +170772716095,214,0 +170772716143,214,0 +170772716191,214,0 +170772716239,214,0 +170772716288,214,0 +170772716336,214,0 +170772716384,214,0 +170772716432,214,0 +170772716482,214,0 +170772716529,215,0 +170772716577,215,0 +170772716625,215,0 +170772716675,215,0 +170772716724,215,0 +170772716772,216,0 +170772716820,215,0 +170772716870,213,0 +170772716918,213,0 +170772716967,214,0 +170772717017,214,0 +170772717065,214,0 +170772717113,214,0 +170772717162,214,0 +170772717210,214,0 +170772717258,214,0 +170772717306,214,0 +170772717356,215,0 +170772717405,215,0 +170772717453,215,0 +170772717501,215,0 +170772717549,215,0 +170772717597,215,0 +170772717645,215,0 +170772717693,214,0 +170772717741,213,0 +170772717790,213,0 +170772717838,213,0 +170772717888,214,0 +170772717937,214,0 +170772717987,214,0 +170772718035,214,0 +170772718084,214,0 +170772718132,214,0 +170772718180,214,0 +170772718228,214,0 +170772718276,214,0 +170772718324,215,0 +170772718372,215,0 +170772718422,215,0 +170772718471,215,0 +170772718521,215,0 +170772718570,214,0 +170772718618,213,0 +170772718666,214,0 +170772718716,214,0 +170772718765,214,0 +170772718815,214,0 +170772718863,214,0 +170772718911,214,0 +170772718959,214,0 +170772719006,214,0 +170772719054,214,0 +170772719104,215,0 +170772719153,215,0 +170772719201,215,0 +170772719251,215,0 +170772719299,215,0 +170772719348,215,0 +170772719398,215,0 +170772719445,214,0 +170772719495,213,0 +170772719543,214,0 +170772719592,214,0 +170772719640,214,0 +170772719688,214,0 +170772719736,214,0 +170772719784,214,0 +170772719831,214,0 +170772719881,215,0 +170772719929,215,0 +170772719978,215,0 +170772720026,215,0 +170772720074,215,0 +170772720122,215,0 +170772720169,215,0 +170772720219,215,0 +170772720267,214,0 +170772720315,213,0 +170772720363,214,0 +170772720410,214,0 +170772720458,214,0 +170772720506,214,0 +170772720554,214,0 +170772720602,214,0 +170772720650,214,0 +170772720698,214,0 +170772720746,214,0 +170772720795,215,0 +170772720845,215,0 +170772720893,215,0 +170772720941,215,0 +170772720989,215,0 +170772721038,215,0 +170772721088,215,0 +170772721137,214,0 +170772721185,214,0 +170772721233,214,0 +170772721281,214,0 +170772721329,214,0 +170772721379,214,0 +170772721427,214,0 +170772721475,214,0 +170772721524,214,0 +170772721572,214,0 +170772721620,215,0 +170772721668,215,0 +170772721718,215,0 +170772721767,215,0 +170772721815,215,0 +170772721865,215,0 +170772721914,215,0 +170772721964,215,0 +170772722012,214,0 +170772722061,214,0 +170772722109,214,0 +170772722157,214,0 +170772722206,214,0 +170772722255,214,0 +170772722304,214,0 +170772722352,214,0 +170772722402,214,0 +170772722450,214,0 +170772722498,215,0 +170772722547,214,0 +170772722597,214,0 +170772722646,215,0 +170772722696,215,0 +170772722744,215,0 +170772722793,215,0 +170772722841,214,0 +170772722889,213,0 +170772722938,214,0 +170772722986,214,0 +170772723034,214,0 +170772723082,214,0 +170772723132,214,0 +170772723181,214,0 +170772723229,214,0 +170772723277,214,0 +170772723327,215,0 +170772723375,215,0 +170772723423,215,0 +170772723472,215,0 +170772723520,215,0 +170772723570,215,0 +170772723619,215,0 +170772723667,215,0 +170772723715,214,0 +170772723763,214,0 +170772723812,214,0 +170772723860,214,0 +170772723908,214,0 +170772723956,214,0 +170772724004,214,0 +170772724052,214,0 +170772724099,215,0 +170772724147,215,0 +170772724195,215,0 +170772724243,215,0 +170772724291,215,0 +170772724339,216,0 +170772724386,215,0 +170772724435,215,0 +170772724482,215,0 +170772724532,215,0 +170772724580,214,0 +170772724628,214,0 +170772724675,214,0 +170772724723,214,0 +170772724773,214,0 +170772724821,214,0 +170772724869,214,0 +170772724917,215,0 +170772724965,215,0 +170772725013,215,0 +170772725061,215,0 +170772725110,215,0 +170772725158,215,0 +170772725206,215,0 +170772725254,216,0 +170772725302,215,0 +170772725351,215,0 +170772725399,215,0 +170772725449,214,0 +170772725497,214,0 +170772725546,214,0 +170772725596,214,0 +170772725644,214,0 +170772725692,215,0 +170772725739,215,0 +170772725787,215,0 +170772725837,215,0 +170772725886,215,0 +170772725934,215,0 +170772725982,215,0 +170772726030,215,0 +170772726078,215,0 +170772726126,215,0 +170772726174,215,0 +170772726224,215,0 +170772726272,215,0 +170772726321,214,0 +170772726369,214,0 +170772726419,214,0 +170772726468,214,0 +170772726516,214,0 +170772726565,215,0 +170772726615,215,0 +170772726664,215,0 +170772726714,215,0 +170772726763,215,0 +170772726811,215,0 +170772726859,215,0 +170772726907,215,0 +170772726955,215,0 +170772727003,215,0 +170772727051,215,0 +170772727099,215,0 +170772727148,215,0 +170772727196,214,0 +170772727244,214,0 +170772727294,214,0 +170772727342,215,0 +170772727390,215,0 +170772727438,215,0 +170772727487,215,0 +170772727537,215,0 +170772727585,215,0 +170772727633,215,0 +170772727681,215,0 +170772727729,215,0 +170772727777,215,0 +170772727825,215,0 +170772727873,215,0 +170772727921,215,0 +170772727969,215,0 +170772728016,215,0 +170772728064,214,0 +170772728114,214,0 +170772728162,214,0 +170772728210,214,0 +170772728258,214,0 +170772728305,214,0 +170772728353,215,0 +170772728401,215,0 +170772728451,215,0 +170772728500,215,0 +170772728550,215,0 +170772728598,215,0 +170772728645,215,0 +170772728693,215,0 +170772728741,215,0 +170772728791,215,0 +170772728840,215,0 +170772728890,215,0 +170772728938,214,0 +170772728986,214,0 +170772729035,214,0 +170772729083,214,0 +170772729133,214,0 +170772729181,214,0 +170772729229,215,0 +170772729277,215,0 +170772729324,215,0 +170772729372,215,0 +170772729420,215,0 +170772729468,215,0 +170772729516,215,0 +170772729566,215,0 +170772729615,215,0 +170772729663,215,0 +170772729711,215,0 +170772729759,214,0 +170772729807,214,0 +170772729854,214,0 +170772729902,214,0 +170772729950,214,0 +170772730000,214,0 +170772730047,214,0 +170772730095,214,0 +170772730143,214,0 +170772730193,215,0 +170772730242,215,0 +170772730290,215,0 +170772730338,215,0 +170772730386,215,0 +170772730434,215,0 +170772730482,215,0 +170772730530,215,0 +170772730578,215,0 +170772730626,214,0 +170772730674,213,0 +170772730721,214,0 +170772730769,214,0 +170772730817,214,0 +170772730867,214,0 +170772730915,214,0 +170772730962,214,0 +170772731010,214,0 +170772731060,215,0 +170772731108,215,0 +170772731156,215,0 +170772731204,215,0 +170772731253,215,0 +170772731303,215,0 +170772731351,215,0 +170772731399,215,0 +170772731448,215,0 +170772731498,214,0 +170772731546,213,0 +170772731595,214,0 +170772731643,214,0 +170772731693,214,0 +170772731743,214,0 +170772731790,214,0 +170772731838,214,0 +170772731888,214,0 +170772731936,214,0 +170772731984,215,0 +170772732033,215,0 +170772732081,215,0 +170772732131,215,0 +170772732179,215,0 +170772732227,215,0 +170772732276,215,0 +170772732324,215,0 +170772732372,214,0 +170772732421,214,0 +170772732471,214,0 +170772732519,214,0 +170772732568,214,0 +170772732616,214,0 +170772732666,214,0 +170772732714,214,0 +170772732762,215,0 +170772732809,215,0 +170772732857,215,0 +170772732905,215,0 +170772732953,215,0 +170772733001,215,0 +170772733049,215,0 +170772733096,215,0 +170772733144,215,0 +170772733192,215,0 +170772733240,213,0 +170772733288,213,0 +170772733335,214,0 +170772733383,214,0 +170772733431,214,0 +170772733479,214,0 +170772733527,214,0 +170772733574,214,0 +170772733622,214,0 +170772733670,215,0 +170772733720,215,0 +170772733767,215,0 +170772733815,215,0 +170772733863,215,0 +170772733911,215,0 +170772733959,215,0 +170772734007,215,0 +170772734057,214,0 +170772734106,214,0 +170772734156,214,0 +170772734205,214,0 +170772734255,214,0 +170772734302,214,0 +170772734350,214,0 +170772734398,214,0 +170772734446,214,0 +170772734494,214,0 +170772734542,214,0 +170772734591,215,0 +170772734639,215,0 +170772734687,215,0 +170772734735,215,0 +170772734785,215,0 +170772734833,215,0 +170772734882,215,0 +170772734932,214,0 +170772734981,213,0 +170772735031,214,0 +170772735080,214,0 +170772735128,213,0 +170772735176,214,0 +170772735226,214,0 +170772735274,214,0 +170772735323,214,0 +170772735373,214,0 +170772735421,214,0 +170772735469,214,0 +170772735516,214,0 +170772735564,214,0 +170772735612,214,0 +170772735661,214,0 +170772735709,215,0 +170772735757,215,0 +170772735805,214,0 +170772735853,213,0 +170772735901,214,0 +170772735950,214,0 +170772736000,214,0 +170772736049,214,0 +170772736097,214,0 +170772736145,214,0 +170772736193,214,0 +170772736242,214,0 +170772736292,214,0 +170772736341,215,0 +170772736389,215,0 +170772736437,214,0 +170772736485,215,0 +170772736533,215,0 +170772736581,215,0 +170772736629,214,0 +170772736677,214,0 +170772736725,213,0 +170772736774,214,0 +170772736822,214,0 +170772736870,214,0 +170772736918,214,0 +170772736966,214,0 +170772737016,214,0 +170772737065,214,0 +170772737113,214,0 +170772737163,214,0 +170772737212,215,0 +170772737262,215,0 +170772737311,215,0 +170772737359,215,0 +170772737407,215,0 +170772737455,215,0 +170772737503,214,0 +170772737551,213,0 +170772737599,214,0 +170772737646,214,0 +170772737696,214,0 +170772737744,214,0 +170772737793,214,0 +170772737841,214,0 +170772737891,214,0 +170772737939,214,0 +170772737987,215,0 +170772738035,214,0 +170772738083,215,0 +170772738131,215,0 +170772738179,215,0 +170772738226,215,0 +170772738274,215,0 +170772738322,215,0 +170772738370,214,0 +170772738420,214,0 +170772738467,214,0 +170772738515,214,0 +170772738563,214,0 +170772738613,214,0 +170772738660,214,0 +170772738708,214,0 +170772738758,214,0 +170772738805,215,0 +170772738855,215,0 +170772738903,215,0 +170772738951,215,0 +170772738998,215,0 +170772739046,215,0 +170772739094,215,0 +170772739142,215,0 +170772739190,215,0 +170772739238,215,0 +170772739285,215,0 +170772739335,215,0 +170772739383,215,0 +170772739431,215,0 +170772739480,215,0 +170772739528,215,0 +170772739578,215,0 +170772739625,215,0 +170772739673,215,0 +170772739721,215,0 +170772739769,215,0 +170772739817,215,0 +170772739865,215,0 +170772739912,215,0 +170772739962,214,0 +170772740010,215,0 +170772740057,215,0 +170772740107,215,0 +170772740155,215,0 +170772740203,215,0 +170772740250,215,0 +170772740298,215,0 +170772740346,215,0 +170772740394,216,0 +170772740442,216,0 +170772740490,215,0 +170772740539,216,0 +170772740587,215,0 +170772740635,215,0 +170772740683,215,0 +170772740731,215,0 +170772740778,215,0 +170772740826,215,0 +170772740874,215,0 +170772740922,215,0 +170772740970,215,0 +170772741018,215,0 +170772741065,215,0 +170772741113,215,0 +170772741161,215,0 +170772741211,215,0 +170772741258,215,0 +170772741306,215,0 +170772741354,215,0 +170772741402,215,0 +170772741451,215,0 +170772741499,215,0 +170772741547,215,0 +170772741595,215,0 +170772741643,215,0 +170772741690,215,0 +170772741738,215,0 +170772741786,214,0 +170772741834,214,0 +170772741884,214,0 +170772741933,215,0 +170772741981,215,0 +170772742029,215,0 +170772742077,215,0 +170772742125,215,0 +170772742173,215,0 +170772742220,215,0 +170772742268,215,0 +170772742316,215,0 +170772742364,215,0 +170772742412,215,0 +170772742460,215,0 +170772742508,215,0 +170772742556,215,0 +170772742603,215,0 +170772742651,214,0 +170772742699,214,0 +170772742747,215,0 +170772742795,215,0 +170772742843,215,0 +170772742891,215,0 +170772742939,215,0 +170772742986,215,0 +170772743036,215,0 +170772743084,215,0 +170772743133,215,0 +170772743181,215,0 +170772743229,215,0 +170772743278,215,0 +170772743326,215,0 +170772743374,216,0 +170772743424,215,0 +170772743473,215,0 +170772743522,214,0 +170772743570,214,0 +170772743618,214,0 +170772743668,214,0 +170772743717,214,0 +170772743765,214,0 +170772743813,214,0 +170772743861,214,0 +170772743909,215,0 +170772743956,215,0 +170772744004,215,0 +170772744052,215,0 +170772744100,215,0 +170772744148,215,0 +170772744195,215,0 +170772744243,215,0 +170772744291,215,0 +170772744339,215,0 +170772744387,214,0 +170772744434,214,0 +170772744482,214,0 +170772744530,214,0 +170772744578,214,0 +170772744626,214,0 +170772744675,214,0 +170772744723,214,0 +170772744771,214,0 +170772744819,215,0 +170772744869,215,0 +170772744918,215,0 +170772744966,215,0 +170772745014,215,0 +170772745064,215,0 +170772745112,215,0 +170772745160,215,0 +170772745208,215,0 +170772745257,214,0 +170772745305,214,0 +170772745353,214,0 +170772745400,214,0 +170772745448,214,0 +170772745496,215,0 +170772745544,214,0 +170772745592,214,0 +170772745640,215,0 +170772745688,215,0 +170772745735,215,0 +170772745783,215,0 +170772745831,215,0 +170772745879,215,0 +170772745927,215,0 +170772745976,215,0 +170772746024,215,0 +170772746072,214,0 +170772746120,214,0 +170772746168,214,0 +170772746215,214,0 +170772746263,214,0 +170772746313,214,0 +170772746361,215,0 +170772746409,214,0 +170772746456,215,0 +170772746506,215,0 +170772746554,215,0 +170772746602,215,0 +170772746649,215,0 +170772746697,215,0 +170772746745,215,0 +170772746793,215,0 +170772746841,215,0 +170772746889,215,0 +170772746938,214,0 +170772746986,214,0 +170772747035,214,0 +170772747085,214,0 +170772747133,214,0 +170772747180,214,0 +170772747228,215,0 +170772747276,215,0 +170772747324,215,0 +170772747372,215,0 +170772747420,215,0 +170772747468,215,0 +170772747515,215,0 +170772747565,215,0 +170772747613,215,0 +170772747660,215,0 +170772747708,215,0 +170772747756,215,0 +170772747805,214,0 +170772747853,214,0 +170772747901,214,0 +170772747949,214,0 +170772747997,214,0 +170772748045,214,0 +170772748093,214,0 +170772748140,214,0 +170772748188,214,0 +170772748238,214,0 +170772748286,215,0 +170772748333,215,0 +170772748381,215,0 +170772748431,215,0 +170772748479,215,0 +170772748526,215,0 +170772748574,215,0 +170772748622,215,0 +170772748670,214,0 +170772748718,214,0 +170772748766,214,0 +170772748814,214,0 +170772748861,214,0 +170772748909,214,0 +170772748959,214,0 +170772749007,214,0 +170772749055,215,0 +170772749104,215,0 +170772749152,215,0 +170772749200,215,0 +170772749247,215,0 +170772749297,215,0 +170772749345,215,0 +170772749394,215,0 +170772749443,215,0 +170772749491,215,0 +170772749539,214,0 +170772749588,214,0 +170772749636,214,0 +170772749686,214,0 +170772749735,214,0 +170772749783,214,0 +170772749833,214,0 +170772749882,214,0 +170772749930,214,0 +170772749978,214,0 +170772750026,215,0 +170772750073,215,0 +170772750121,215,0 +170772750169,215,0 +170772750217,215,0 +170772750265,215,0 +170772750313,215,0 +170772750362,215,0 +170772750411,214,0 +170772750461,214,0 +170772750510,214,0 +170772750558,214,0 +170772750606,214,0 +170772750654,214,0 +170772750702,214,0 +170772750749,214,0 +170772750799,214,0 +170772750847,215,0 +170772750894,215,0 +170772750942,215,0 +170772750990,215,0 +170772751038,215,0 +170772751086,215,0 +170772751134,215,0 +170772751182,215,0 +170772751230,214,0 +170772751278,214,0 +170772751325,214,0 +170772751373,214,0 +170772751423,214,0 +170772751471,214,0 +170772751519,214,0 +170772751567,215,0 +170772751616,214,0 +170772751664,215,0 +170772751712,215,0 +170772751760,215,0 +170772751808,215,0 +170772751857,215,0 +170772751905,215,0 +170772751953,215,0 +170772752003,215,0 +170772752052,215,0 +170772752100,214,0 +170772752150,214,0 +170772752197,214,0 +170772752245,214,0 +170772752295,214,0 +170772752344,214,0 +170772752392,214,0 +170772752440,215,0 +170772752490,215,0 +170772752538,215,0 +170772752586,215,0 +170772752635,215,0 +170772752685,215,0 +170772752733,215,0 +170772752782,215,0 +170772752832,215,0 +170772752882,215,0 +170772752929,214,0 +170772752979,213,0 +170772753027,214,0 +170772753075,214,0 +170772753124,214,0 +170772753172,214,0 +170772753220,214,0 +170772753268,214,0 +170772753316,214,0 +170772753366,214,0 +170772753414,215,0 +170772753461,215,0 +170772753511,215,0 +170772753559,215,0 +170772753607,215,0 +170772753655,215,0 +170772753702,215,0 +170772753750,215,0 +170772753798,214,0 +170772753846,213,0 +170772753894,214,0 +170772753942,214,0 +170772753990,214,0 +170772754038,214,0 +170772754086,214,0 +170772754134,214,0 +170772754181,214,0 +170772754229,214,0 +170772754279,215,0 +170772754327,215,0 +170772754376,215,0 +170772754426,215,0 +170772754476,215,0 +170772754523,215,0 +170772754571,215,0 +170772754621,215,0 +170772754669,214,0 +170772754717,214,0 +170772754766,214,0 +170772754814,214,0 +170772754862,214,0 +170772754912,214,0 +170772754961,214,0 +170772755011,215,0 +170772755060,214,0 +170772755110,214,0 +170772755158,215,0 +170772755206,214,0 +170772755254,215,0 +170772755303,215,0 +170772755351,215,0 +170772755399,215,0 +170772755447,215,0 +170772755495,214,0 +170772755545,214,0 +170772755593,214,0 +170772755641,214,0 +170772755690,214,0 +170772755738,214,0 +170772755788,214,0 +170772755836,214,0 +170772755885,214,0 +170772755935,214,0 +170772755983,214,0 +170772756031,215,0 +170772756079,215,0 +170772756127,215,0 +170772756175,215,0 +170772756223,215,0 +170772756272,215,0 +170772756320,215,0 +170772756368,214,0 +170772756417,214,0 +170772756465,214,0 +170772756515,214,0 +170772756563,214,0 +170772756612,214,0 +170772756660,214,0 +170772756708,214,0 +170772756758,215,0 +170772756805,215,0 +170772756855,215,0 +170772756904,215,0 +170772756954,215,0 +170772757002,215,0 +170772757051,215,0 +170772757101,215,0 +170772757149,215,0 +170772757197,215,0 +170772757244,214,0 +170772757292,214,0 +170772757340,214,0 +170772757388,214,0 +170772757436,214,0 +170772757484,214,0 +170772757533,214,0 +170772757581,215,0 +170772757629,215,0 +170772757677,215,0 +170772757725,215,0 +170772757773,215,0 +170772757822,215,0 +170772757870,215,0 +170772757919,215,0 +170772757969,215,0 +170772758017,215,0 +170772758065,214,0 +170772758112,214,0 +170772758160,214,0 +170772758208,215,0 +170772758256,214,0 +170772758304,214,0 +170772758353,215,0 +170772758403,215,0 +170772758451,215,0 +170772758499,215,0 +170772758548,215,0 +170772758596,215,0 +170772758644,215,0 +170772758694,215,0 +170772758743,215,0 +170772758793,215,0 +170772758842,215,0 +170772758890,215,0 +170772758938,214,0 +170772758987,214,0 +170772759037,214,0 +170772759085,214,0 +170772759133,214,0 +170772759182,215,0 +170772759230,215,0 +170772759278,215,0 +170772759326,215,0 +170772759374,215,0 +170772759422,215,0 +170772759470,215,0 +170772759519,215,0 +170772759567,215,0 +170772759617,215,0 +170772759665,215,0 +170772759712,215,0 +170772759760,215,0 +170772759808,214,0 +170772759858,214,0 +170772759906,214,0 +170772759954,214,0 +170772760002,214,0 +170772760050,214,0 +170772760098,214,0 +170772760145,214,0 +170772760193,214,0 +170772760241,215,0 +170772760289,215,0 +170772760337,215,0 +170772760386,215,0 +170772760434,215,0 +170772760484,215,0 +170772760532,215,0 +170772760580,215,0 +170772760629,214,0 +170772760679,214,0 +170772760727,214,0 +170772760775,214,0 +170772760823,214,0 +170772760872,214,0 +170772760920,214,0 +170772760968,215,0 +170772761016,214,0 +170772761066,215,0 +170772761113,215,0 +170772761163,215,0 +170772761211,215,0 +170772761259,215,0 +170772761307,215,0 +170772761355,215,0 +170772761404,215,0 +170772761452,215,0 +170772761500,214,0 +170772761550,214,0 +170772761599,214,0 +170772761647,214,0 +170772761697,214,0 +170772761745,214,0 +170772761793,214,0 +170772761841,215,0 +170772761890,215,0 +170772761938,215,0 +170772761986,215,0 +170772762034,215,0 +170772762082,215,0 +170772762131,215,0 +170772762179,215,0 +170772762227,215,0 +170772762275,215,0 +170772762323,215,0 +170772762370,214,0 +170772762418,214,0 +170772762466,214,0 +170772762516,214,0 +170772762564,214,0 +170772762613,214,0 +170772762661,214,0 +170772762709,215,0 +170772762757,215,0 +170772762807,215,0 +170772762855,215,0 +170772762903,215,0 +170772762952,215,0 +170772763002,215,0 +170772763050,215,0 +170772763098,215,0 +170772763147,215,0 +170772763197,215,0 +170772763245,214,0 +170772763293,214,0 +170772763342,214,0 +170772763392,214,0 +170772763440,214,0 +170772763487,214,0 +170772763535,214,0 +170772763585,214,0 +170772763633,215,0 +170772763681,215,0 +170772763730,215,0 +170772763778,215,0 +170772763826,215,0 +170772763874,215,0 +170772763922,215,0 +170772763972,215,0 +170772764021,215,0 +170772764071,214,0 +170772764119,214,0 +170772764167,214,0 +170772764215,214,0 +170772764264,215,0 +170772764312,214,0 +170772764362,215,0 +170772764410,215,0 +170772764459,214,0 +170772764507,215,0 +170772764555,215,0 +170772764605,215,0 +170772764654,215,0 +170772764702,215,0 +170772764750,215,0 +170772764798,215,0 +170772764847,215,0 +170772764895,215,0 +170772764943,214,0 +170772764991,214,0 +170772765039,214,0 +170772765087,214,0 +170772765135,214,0 +170772765184,214,0 +170772765232,214,0 +170772765280,215,0 +170772765328,215,0 +170772765378,215,0 +170772765426,215,0 +170772765474,215,0 +170772765522,215,0 +170772765569,215,0 +170772765617,215,0 +170772765665,215,0 +170772765713,215,0 +170772765761,214,0 +170772765809,214,0 +170772765859,214,0 +170772765907,214,0 +170772765954,214,0 +170772766004,214,0 +170772766052,214,0 +170772766100,214,0 +170772766148,214,0 +170772766196,214,0 +170772766244,215,0 +170772766292,215,0 +170772766340,215,0 +170772766387,215,0 +170772766435,215,0 +170772766483,215,0 +170772766533,215,0 +170772766582,215,0 +170772766630,214,0 +170772766678,214,0 +170772766726,214,0 +170772766774,214,0 +170772766824,214,0 +170772766873,214,0 +170772766921,214,0 +170772766969,214,0 +170772767017,214,0 +170772767065,214,0 +170772767115,214,0 +170772767162,215,0 +170772767210,215,0 +170772767258,215,0 +170772767308,215,0 +170772767356,215,0 +170772767405,215,0 +170772767453,215,0 +170772767503,213,0 +170772767551,213,0 +170772767600,214,0 +170772767648,213,0 +170772767698,214,0 +170772767745,214,0 +170772767793,214,0 +170772767841,214,0 +170772767889,214,0 +170772767937,214,0 +170772767985,214,0 +170772768035,214,0 +170772768084,215,0 +170772768134,215,0 +170772768183,215,0 +170772768233,215,0 +170772768281,215,0 +170772768329,214,0 +170772768377,213,0 +170772768426,213,0 +170772768474,214,0 +170772768524,214,0 +170772768573,214,0 +170772768623,214,0 +170772768672,214,0 +170772768722,214,0 +170772768770,214,0 +170772768818,214,0 +170772768866,214,0 +170772768913,215,0 +170772768961,215,0 +170772769011,215,0 +170772769060,215,0 +170772769108,215,0 +170772769156,215,0 +170772769204,214,0 +170772769252,214,0 +170772769301,214,0 +170772769351,214,0 +170772769399,214,0 +170772769447,214,0 +170772769496,214,0 +170772769544,214,0 +170772769592,215,0 +170772769640,215,0 +170772769688,215,0 +170772769736,215,0 +170772769786,215,0 +170772769835,215,0 +170772769883,215,0 +170772769933,215,0 +170772769980,215,0 +170772770030,214,0 +170772770080,214,0 +170772770128,214,0 +170772770176,214,0 +170772770225,214,0 +170772770273,214,0 +170772770321,214,0 +170772770369,215,0 +170772770418,215,0 +170772770466,215,0 +170772770516,215,0 +170772770564,215,0 +170772770613,215,0 +170772770661,215,0 +170772770709,215,0 +170772770759,215,0 +170772770808,215,0 +170772770856,215,0 +170772770904,214,0 +170772770952,214,0 +170772771000,214,0 +170772771048,214,0 +170772771096,214,0 +170772771145,214,0 +170772771193,215,0 +170772771241,214,0 +170772771291,215,0 +170772771339,215,0 +170772771388,215,0 +170772771436,215,0 +170772771484,215,0 +170772771532,215,0 +170772771580,215,0 +170772771628,215,0 +170772771676,215,0 +170772771724,215,0 +170772771772,214,0 +170772771820,214,0 +170772771868,214,0 +170772771916,214,0 +170772771964,214,0 +170772772012,215,0 +170772772061,215,0 +170772772111,215,0 +170772772159,215,0 +170772772207,215,0 +170772772255,215,0 +170772772304,215,0 +170772772352,215,0 +170772772400,215,0 +170772772449,215,0 +170772772499,215,0 +170772772547,215,0 +170772772595,214,0 +170772772644,214,0 +170772772692,214,0 +170772772740,214,0 +170772772790,214,0 +170772772839,214,0 +170772772887,214,0 +170772772937,215,0 +170772772984,214,0 +170772773032,215,0 +170772773082,215,0 +170772773130,215,0 +170772773179,215,0 +170772773229,215,0 +170772773277,215,0 +170772773325,215,0 +170772773374,215,0 +170772773422,215,0 +170772773470,214,0 +170772773518,213,0 +170772773566,214,0 +170772773614,214,0 +170772773662,214,0 +170772773710,214,0 +170772773758,214,0 +170772773807,214,0 +170772773857,214,0 +170772773905,214,0 +170772773953,214,0 +170772774001,215,0 +170772774049,215,0 +170772774098,215,0 +170772774146,215,0 +170772774194,215,0 +170772774244,215,0 +170772774293,214,0 +170772774341,213,0 +170772774391,214,0 +170772774440,214,0 +170772774488,214,0 +170772774536,214,0 +170772774584,214,0 +170772774632,214,0 +170772774680,214,0 +170772774728,214,0 +170772774776,215,0 +170772774825,214,0 +170772774873,215,0 +170772774921,214,0 +170772774969,215,0 +170772775017,215,0 +170772775066,215,0 +170772775116,215,0 +170772775164,214,0 +170772775212,213,0 +170772775261,213,0 +170772775309,214,0 +170772775359,214,0 +170772775407,214,0 +170772775455,214,0 +170772775503,214,0 +170772775551,214,0 +170772775600,214,0 +170772775648,214,0 +170772775696,215,0 +170772775744,215,0 +170772775792,215,0 +170772775839,215,0 +170772775887,215,0 +170772775935,215,0 +170772775983,215,0 +170772776031,214,0 +170772776079,213,0 +170772776127,214,0 +170772776174,214,0 +170772776222,214,0 +170772776270,214,0 +170772776318,214,0 +170772776368,214,0 +170772776415,214,0 +170772776463,214,0 +170772776513,214,0 +170772776561,215,0 +170772776610,214,0 +170772776660,215,0 +170772776707,215,0 +170772776757,215,0 +170772776805,215,0 +170772776853,215,0 +170772776901,215,0 +170772776950,216,0 +170772776998,215,0 +170772777048,215,0 +170772777096,215,0 +170772777144,215,0 +170772777193,215,0 +170772777243,215,0 +170772777290,214,0 +170772777340,214,0 +170772777388,214,0 +170772777436,214,0 +170772777484,214,0 +170772777533,214,0 +170772777581,215,0 +170772777629,215,0 +170772777677,215,0 +170772777725,215,0 +170772777775,215,0 +170772777823,215,0 +170772777872,215,0 +170772777922,215,0 +170772777970,215,0 +170772778018,215,0 +170772778066,215,0 +170772778114,215,0 +170772778163,214,0 +170772778213,214,0 +170772778261,214,0 +170772778308,214,0 +170772778356,214,0 +170772778404,214,0 +170772778452,214,0 +170772778500,214,0 +170772778548,215,0 +170772778596,215,0 +170772778644,215,0 +170772778692,215,0 +170772778739,215,0 +170772778787,215,0 +170772778837,215,0 +170772778885,215,0 +170772778933,215,0 +170772778981,214,0 +170772779029,214,0 +170772779078,214,0 +170772779126,214,0 +170772779176,214,0 +170772779224,214,0 +170772779273,214,0 +170772779323,215,0 +170772779371,215,0 +170772779419,215,0 +170772779468,215,0 +170772779518,215,0 +170772779565,215,0 +170772779613,215,0 +170772779661,215,0 +170772779709,215,0 +170772779757,215,0 +170772779805,214,0 +170772779855,214,0 +170772779903,214,0 +170772779951,214,0 +170772779999,214,0 +170772780048,215,0 +170772780098,214,0 +170772780146,214,0 +170772780194,214,0 +170772780242,215,0 +170772780291,215,0 +170772780339,215,0 +170772780387,215,0 +170772780437,215,0 +170772780485,215,0 +170772780533,215,0 +170772780582,215,0 +170772780630,214,0 +170772780680,214,0 +170772780729,214,0 +170772780779,214,0 +170772780827,214,0 +170772780875,214,0 +170772780923,214,0 +170772780970,214,0 +170772781018,214,0 +170772781066,215,0 +170772781114,215,0 +170772781162,215,0 +170772781210,215,0 +170772781259,215,0 +170772781309,215,0 +170772781358,215,0 +170772781408,215,0 +170772781456,215,0 +170772781504,214,0 +170772781552,214,0 +170772781601,214,0 +170772781649,214,0 +170772781699,214,0 +170772781747,214,0 +170772781795,214,0 +170772781844,214,0 +170772781892,214,0 +170772781942,214,0 +170772781990,215,0 +170772782039,215,0 +170772782087,215,0 +170772782135,215,0 +170772782183,215,0 +170772782231,215,0 +170772782280,215,0 +170772782328,213,0 +170772782376,213,0 +170772782424,213,0 +170772782472,214,0 +170772782519,214,0 +170772782567,214,0 +170772782615,214,0 +170772782663,214,0 +170772782713,214,0 +170772782761,214,0 +170772782810,214,0 +170772782858,214,0 +170772782908,215,0 +170772782955,215,0 +170772783003,215,0 +170772783051,215,0 +170772783099,215,0 +170772783147,214,0 +170772783197,214,0 +170772783246,214,0 +170772783294,214,0 +170772783342,214,0 +170772783390,214,0 +170772783438,214,0 +170772783487,214,0 +170772783535,215,0 +170772783583,215,0 +170772783631,215,0 +170772783679,215,0 +170772783727,215,0 +170772783776,215,0 +170772783826,215,0 +170772783875,215,0 +170772783923,215,0 +170772783973,214,0 +170772784020,214,0 +170772784068,214,0 +170772784116,214,0 +170772784164,214,0 +170772784212,215,0 +170772784260,214,0 +170772784308,215,0 +170772784356,215,0 +170772784405,215,0 +170772784455,215,0 +170772784503,215,0 +170772784551,215,0 +170772784599,215,0 +170772784648,215,0 +170772784698,215,0 +170772784747,215,0 +170772784795,214,0 +170772784843,214,0 +170772784893,214,0 +170772784941,214,0 +170772784989,214,0 +170772785038,214,0 +170772785088,214,0 +170772785136,215,0 +170772785184,215,0 +170772785231,214,0 +170772785281,215,0 +170772785329,215,0 +170772785377,215,0 +170772785425,215,0 +170772785473,215,0 +170772785522,215,0 +170772785572,215,0 +170772785620,214,0 +170772785667,214,0 +170772785715,214,0 +170772785763,214,0 +170772785811,214,0 +170772785861,214,0 +170772785908,214,0 +170772785958,214,0 +170772786006,214,0 +170772786054,214,0 +170772786102,214,0 +170772786150,215,0 +170772786197,215,0 +170772786247,215,0 +170772786296,215,0 +170772786346,215,0 +170772786394,215,0 +170772786443,215,0 +170772786491,214,0 +170772786539,214,0 +170772786589,214,0 +170772786636,214,0 +170772786686,214,0 +170772786736,214,0 +170772786785,214,0 +170772786833,215,0 +170772786882,215,0 +170772786932,215,0 +170772786982,215,0 +170772787031,215,0 +170772787081,215,0 +170772787128,215,0 +170772787176,215,0 +170772787224,215,0 +170772787272,215,0 +170772787322,214,0 +170772787370,214,0 +170772787418,214,0 +170772787467,214,0 +170772787515,214,0 +170772787565,215,0 +170772787613,215,0 +170772787661,215,0 +170772787710,215,0 +170772787760,215,0 +170772787809,215,0 +170772787857,215,0 +170772787905,215,0 +170772787953,215,0 +170772788001,215,0 +170772788049,215,0 +170772788097,215,0 +170772788145,214,0 +170772788194,214,0 +170772788242,214,0 +170772788292,215,0 +170772788340,214,0 +170772788389,215,0 +170772788439,214,0 +170772788488,215,0 +170772788536,215,0 +170772788586,215,0 +170772788635,215,0 +170772788685,215,0 +170772788733,215,0 +170772788782,215,0 +170772788832,215,0 +170772788881,215,0 +170772788929,215,0 +170772788977,214,0 +170772789025,214,0 +170772789073,214,0 +170772789121,214,0 +170772789170,215,0 +170772789218,215,0 +170772789267,215,0 +170772789315,215,0 +170772789363,214,0 +170772789413,215,0 +170772789460,215,0 +170772789508,215,0 +170772789556,215,0 +170772789606,215,0 +170772789655,215,0 +170772789705,215,0 +170772789752,215,0 +170772789800,214,0 +170772789850,214,0 +170772789898,214,0 +170772789947,214,0 +170772789996,214,0 +170772790043,215,0 +170772790093,215,0 +170772790141,214,0 +170772790189,215,0 +170772790238,215,0 +170772790288,215,0 +170772790336,215,0 +170772790385,215,0 +170772790435,215,0 +170772790484,215,0 +170772790534,215,0 +170772790582,215,0 +170772790630,214,0 +170772790679,214,0 +170772790729,214,0 +170772790778,214,0 +170772790826,214,0 +170772790874,214,0 +170772790922,214,0 +170772790972,214,0 +170772791019,214,0 +170772791069,215,0 +170772791117,214,0 +170772791165,215,0 +170772791213,215,0 +170772791261,215,0 +170772791309,215,0 +170772791357,215,0 +170772791405,215,0 +170772791453,215,0 +170772791501,214,0 +170772791549,214,0 +170772791598,214,0 +170772791646,214,0 +170772791694,214,0 +170772791744,214,0 +170772791791,214,0 +170772791839,214,0 +170772791889,214,0 +170772791937,215,0 +170772791986,215,0 +170772792034,215,0 +170772792084,215,0 +170772792133,215,0 +170772792183,215,0 +170772792231,215,0 +170772792279,214,0 +170772792327,213,0 +170772792376,213,0 +170772792426,214,0 +170772792474,214,0 +170772792522,214,0 +170772792570,214,0 +170772792618,214,0 +170772792665,214,0 +170772792715,214,0 +170772792764,214,0 +170772792814,215,0 +170772792862,214,0 +170772792910,215,0 +170772792958,215,0 +170772793007,215,0 +170772793055,214,0 +170772793103,215,0 +170772793151,214,0 +170772793201,213,0 +170772793248,213,0 +170772793296,213,0 +170772793346,213,0 +170772793394,214,0 +170772793443,214,0 +170772793491,214,0 +170772793541,214,0 +170772793589,214,0 +170772793638,214,0 +170772793688,214,0 +170772793736,214,0 +170772793784,214,0 +170772793833,214,0 +170772793883,215,0 +170772793931,215,0 +170772793979,214,0 +170772794028,213,0 +170772794076,213,0 +170772794126,214,0 +170772794175,214,0 +170772794225,214,0 +170772794273,214,0 +170772794322,214,0 +170772794370,214,0 +170772794418,214,0 +170772794467,215,0 +170772794515,215,0 +170772794563,215,0 +170772794611,215,0 +170772794659,215,0 +170772794707,215,0 +170772794755,215,0 +170772794803,214,0 +170772794851,214,0 +170772794899,214,0 +170772794947,214,0 +170772794995,214,0 +170772795043,214,0 +170772795091,214,0 +170772795140,214,0 +170772795188,214,0 +170772795238,214,0 +170772795287,215,0 +170772795337,214,0 +170772795386,215,0 +170772795436,215,0 +170772795485,215,0 +170772795535,215,0 +170772795583,215,0 +170772795632,214,0 +170772795680,214,0 +170772795728,214,0 +170772795776,214,0 +170772795824,214,0 +170772795873,214,0 +170772795923,214,0 +170772795972,214,0 +170772796020,214,0 +170772796068,214,0 +170772796116,214,0 +170772796164,214,0 +170772796212,215,0 +170772796260,215,0 +170772796308,215,0 +170772796356,215,0 +170772796404,215,0 +170772796452,214,0 +170772796501,213,0 +170772796551,213,0 +170772796600,214,0 +170772796648,214,0 +170772796698,214,0 +170772796747,214,0 +170772796795,214,0 +170772796845,214,0 +170772796894,214,0 +170772796944,215,0 +170772796992,215,0 +170772797040,215,0 +170772797087,215,0 +170772797137,215,0 +170772797185,215,0 +170772797233,215,0 +170772797282,215,0 +170772797332,214,0 +170772797380,214,0 +170772797428,214,0 +170772797475,214,0 +170772797525,215,0 +170772797573,214,0 +170772797621,214,0 +170772797669,215,0 +170772797718,215,0 +170772797766,215,0 +170772797816,215,0 +170772797864,215,0 +170772797912,215,0 +170772797959,215,0 +170772798007,215,0 +170772798055,215,0 +170772798103,215,0 +170772798151,214,0 +170772798199,214,0 +170772798247,214,0 +170772798295,215,0 +170772798343,215,0 +170772798391,215,0 +170772798439,215,0 +170772798487,215,0 +170772798535,215,0 +170772798583,215,0 +170772798631,215,0 +170772798679,215,0 +170772798727,215,0 +170772798775,215,0 +170772798824,215,0 +170772798874,215,0 +170772798922,215,0 +170772798971,214,0 +170772799019,214,0 +170772799069,214,0 +170772799117,214,0 +170772799166,214,0 +170772799216,215,0 +170772799264,215,0 +170772799313,215,0 +170772799361,215,0 +170772799410,215,0 +170772799458,215,0 +170772799506,215,0 +170772799554,215,0 +170772799602,215,0 +170772799650,215,0 +170772799698,215,0 +170772799747,215,0 +170772799795,215,0 +170772799845,214,0 +170772799893,214,0 +170772799940,214,0 +170772799988,214,0 +170772800036,214,0 +170772800086,214,0 +170772800135,215,0 +170772800185,215,0 +170772800234,215,0 +170772800282,215,0 +170772800332,215,0 +170772800380,215,0 +170772800429,215,0 +170772800477,215,0 +170772800527,215,0 +170772800575,215,0 +170772800623,215,0 +170772800672,214,0 +170772800720,214,0 +170772800770,214,0 +170772800818,215,0 +170772800867,215,0 +170772800917,215,0 +170772800965,215,0 +170772801013,215,0 +170772801062,215,0 +170772801112,215,0 +170772801161,215,0 +170772801211,215,0 +170772801259,215,0 +170772801306,215,0 +170772801354,215,0 +170772801404,215,0 +170772801452,215,0 +170772801501,214,0 +170772801549,214,0 +170772801599,215,0 +170772801647,215,0 +170772801696,215,0 +170772801744,215,0 +170772801792,215,0 +170772801842,215,0 +170772801890,215,0 +170772801938,215,0 +170772801986,215,0 +170772802034,215,0 +170772802081,215,0 +170772802131,215,0 +170772802179,215,0 +170772802229,215,0 +170772802278,215,0 +170772802326,214,0 +170772802374,214,0 +170772802422,214,0 +170772802470,214,0 +170772802518,214,0 +170772802566,214,0 +170772802614,214,0 +170772802663,215,0 +170772802713,215,0 +170772802761,215,0 +170772802808,215,0 +170772802856,215,0 +170772802906,215,0 +170772802955,215,0 +170772803003,215,0 +170772803053,215,0 +170772803101,215,0 +170772803149,214,0 +170772803197,213,0 +170772803245,213,0 +170772803294,214,0 +170772803342,214,0 +170772803392,214,0 +170772803441,214,0 +170772803489,214,0 +170772803537,214,0 +170772803585,214,0 +170772803633,214,0 +170772803681,215,0 +170772803730,215,0 +170772803780,215,0 +170772803828,215,0 +170772803876,215,0 +170772803925,215,0 +170772803974,214,0 +170772804022,214,0 +170772804070,214,0 +170772804118,214,0 +170772804166,214,0 +170772804214,214,0 +170772804262,214,0 +170772804309,214,0 +170772804359,214,0 +170772804407,214,0 +170772804455,214,0 +170772804503,215,0 +170772804552,215,0 +170772804600,215,0 +170772804650,215,0 +170772804699,215,0 +170772804747,215,0 +170772804797,214,0 +170772804844,213,0 +170772804892,214,0 +170772804940,214,0 +170772804988,214,0 +170772805037,214,0 +170772805087,214,0 +170772805135,214,0 +170772805184,214,0 +170772805232,215,0 +170772805280,215,0 +170772805328,215,0 +170772805376,215,0 +170772805424,215,0 +170772805472,215,0 +170772805519,215,0 +170772805567,215,0 +170772805615,215,0 +170772805663,214,0 +170772805713,214,0 +170772805762,214,0 +170772805810,214,0 +170772805860,214,0 +170772805909,214,0 +170772805957,214,0 +170772806005,215,0 +170772806053,214,0 +170772806101,215,0 +170772806148,215,0 +170772806196,215,0 +170772806244,215,0 +170772806292,215,0 +170772806340,215,0 +170772806388,215,0 +170772806436,215,0 +170772806484,214,0 +170772806533,214,0 +170772806581,214,0 +170772806629,214,0 +170772806677,214,0 +170772806725,214,0 +170772806775,214,0 +170772806822,215,0 +170772806872,215,0 +170772806921,214,0 +170772806971,215,0 +170772807021,215,0 +170772807070,215,0 +170772807118,215,0 +170772807167,215,0 +170772807217,215,0 +170772807265,215,0 +170772807313,214,0 +170772807362,214,0 +170772807412,214,0 +170772807460,214,0 +170772807508,214,0 +170772807556,214,0 +170772807603,214,0 +170772807651,214,0 +170772807699,214,0 +170772807747,214,0 +170772807795,215,0 +170772807843,215,0 +170772807891,214,0 +170772807938,215,0 +170772807986,215,0 +170772808034,215,0 +170772808084,215,0 +170772808133,214,0 +170772808181,213,0 +170772808229,213,0 +170772808278,214,0 +170772808326,214,0 +170772808374,214,0 +170772808424,214,0 +170772808473,214,0 +170772808521,214,0 +170772808571,214,0 +170772808619,214,0 +170772808668,214,0 +170772808716,214,0 +170772808764,215,0 +170772808814,215,0 +170772808863,215,0 +170772808911,217,0 +170772808959,214,0 +170772809009,213,0 +170772809058,214,0 +170772809108,214,0 +170772809156,214,0 +170772809204,214,0 +170772809253,214,0 +170772809301,214,0 +170772809351,214,0 +170772809398,214,0 +170772809448,214,0 +170772809496,214,0 +170772809544,215,0 +170772809592,215,0 +170772809641,215,0 +170772809689,215,0 +170772809737,215,0 +170772809785,214,0 +170772809835,214,0 +170772809883,214,0 +170772809931,214,0 +170772809980,214,0 +170772810028,214,0 +170772810076,214,0 +170772810126,215,0 +170772810174,214,0 +170772810223,214,0 +170772810271,215,0 +170772810319,215,0 +170772810367,215,0 +170772810416,215,0 +170772810464,215,0 +170772810512,215,0 +170772810560,215,0 +170772810608,215,0 +170772810656,214,0 +170772810704,214,0 +170772810752,214,0 +170772810800,214,0 +170772810847,214,0 +170772810897,214,0 +170772810947,214,0 +170772810994,215,0 +170772811044,215,0 +170772811092,215,0 +170772811140,215,0 +170772811189,215,0 +170772811239,215,0 +170772811289,215,0 +170772811338,215,0 +170772811386,215,0 +170772811434,215,0 +170772811482,214,0 +170772811532,214,0 +170772811579,214,0 +170772811627,214,0 +170772811675,214,0 +170772811723,214,0 +170772811771,215,0 +170772811819,215,0 +170772811867,215,0 +170772811915,215,0 +170772811965,215,0 +170772812014,215,0 +170772812062,215,0 +170772812112,215,0 +170772812160,215,0 +170772812209,215,0 +170772812257,215,0 +170772812305,214,0 +170772812353,214,0 +170772812403,214,0 +170772812452,214,0 +170772812502,214,0 +170772812551,214,0 +170772812599,214,0 +170772812647,214,0 +170772812697,215,0 +170772812745,214,0 +170772812793,215,0 +170772812842,215,0 +170772812892,215,0 +170772812940,214,0 +170772812988,215,0 +170772813035,215,0 +170772813083,215,0 +170772813131,214,0 +170772813181,214,0 +170772813230,214,0 +170772813280,214,0 +170772813328,214,0 +170772813377,214,0 +170772813425,214,0 +170772813473,214,0 +170772813521,215,0 +170772813569,215,0 +170772813618,215,0 +170772813666,215,0 +170772813714,215,0 +170772813762,215,0 +170772813812,215,0 +170772813860,215,0 +170772813909,215,0 +170772813957,214,0 +170772814007,214,0 +170772814055,214,0 +170772814104,214,0 +170772814154,214,0 +170772814201,214,0 +170772814249,215,0 +170772814299,215,0 +170772814347,215,0 +170772814395,215,0 +170772814443,215,0 +170772814492,215,0 +170772814542,215,0 +170772814591,215,0 +170772814639,215,0 +170772814689,215,0 +170772814737,215,0 +170772814785,214,0 +170772814833,214,0 +170772814881,214,0 +170772814930,215,0 +170772814978,214,0 +170772815026,215,0 +170772815075,215,0 +170772815123,215,0 +170772815171,215,0 +170772815219,215,0 +170772815267,215,0 +170772815315,215,0 +170772815362,215,0 +170772815412,215,0 +170772815460,215,0 +170772815509,215,0 +170772815557,215,0 +170772815605,215,0 +170772815653,214,0 +170772815702,214,0 +170772815750,214,0 +170772815798,214,0 +170772815847,214,0 +170772815895,215,0 +170772815945,215,0 +170772815993,215,0 +170772816041,215,0 +170772816089,215,0 +170772816137,215,0 +170772816186,215,0 +170772816234,215,0 +170772816282,215,0 +170772816330,215,0 +170772816378,215,0 +170772816428,215,0 +170772816476,214,0 +170772816525,214,0 +170772816573,214,0 +170772816621,214,0 +170772816671,214,0 +170772816719,215,0 +170772816768,215,0 +170772816818,215,0 +170772816866,215,0 +170772816913,215,0 +170772816961,215,0 +170772817009,215,0 +170772817057,215,0 +170772817107,215,0 +170772817155,215,0 +170772817203,215,0 +170772817251,215,0 +170772817300,214,0 +170772817348,214,0 +170772817396,214,0 +170772817446,214,0 +170772817494,214,0 +170772817543,214,0 +170772817591,214,0 +170772817639,214,0 +170772817687,215,0 +170772817735,215,0 +170772817783,215,0 +170772817831,215,0 +170772817879,215,0 +170772817926,215,0 +170772817974,215,0 +170772818022,215,0 +170772818072,215,0 +170772818121,214,0 +170772818169,214,0 +170772818217,214,0 +170772818265,214,0 +170772818313,214,0 +170772818361,214,0 +170772818408,214,0 +170772818456,214,0 +170772818504,215,0 +170772818552,215,0 +170772818600,215,0 +170772818647,215,0 +170772818697,215,0 +170772818745,215,0 +170772818792,215,0 +170772818842,215,0 +170772818891,215,0 +170772818939,214,0 +170772818987,214,0 +170772819035,214,0 +170772819083,214,0 +170772819131,214,0 +170772819180,214,0 +170772819228,214,0 +170772819276,215,0 +170772819323,215,0 +170772819371,215,0 +170772819419,215,0 +170772819468,215,0 +170772819516,215,0 +170772819564,215,0 +170772819612,215,0 +170772819660,215,0 +170772819708,215,0 +170772819756,214,0 +170772819803,214,0 +170772819851,214,0 +170772819901,214,0 +170772819949,214,0 +170772819996,214,0 +170772820044,214,0 +170772820092,214,0 +170772820142,214,0 +170772820189,215,0 +170772820237,215,0 +170772820287,215,0 +170772820335,215,0 +170772820383,215,0 +170772820431,215,0 +170772820480,215,0 +170772820528,215,0 +170772820578,214,0 +170772820626,214,0 +170772820673,214,0 +170772820721,214,0 +170772820769,214,0 +170772820819,214,0 +170772820866,214,0 +170772820916,215,0 +170772820966,215,0 +170772821015,215,0 +170772821065,215,0 +170772821112,215,0 +170772821162,215,0 +170772821210,215,0 +170772821258,215,0 +170772821306,215,0 +170772821355,215,0 +170772821403,215,0 +170772821451,214,0 +170772821499,214,0 +170772821548,214,0 +170772821598,214,0 +170772821646,214,0 +170772821695,214,0 +170772821743,215,0 +170772821791,215,0 +170772821839,215,0 +170772821887,215,0 +170772821935,215,0 +170772821985,215,0 +170772822032,215,0 +170772822080,215,0 +170772822128,215,0 +170772822178,215,0 +170772822227,214,0 +170772822277,214,0 +170772822325,214,0 +170772822373,214,0 +170772822422,214,0 +170772822470,214,0 +170772822518,214,0 +170772822567,214,0 +170772822617,215,0 +170772822665,215,0 +170772822714,215,0 +170772822762,215,0 +170772822812,215,0 +170772822861,215,0 +170772822911,215,0 +170772822960,215,0 +170772823008,215,0 +170772823056,214,0 +170772823106,214,0 +170772823153,214,0 +170772823203,214,0 +170772823253,214,0 +170772823300,214,0 +170772823348,214,0 +170772823398,214,0 +170772823447,215,0 +170772823495,215,0 +170772823543,215,0 +170772823591,215,0 +170772823641,215,0 +170772823689,215,0 +170772823738,215,0 +170772823788,215,0 +170772823836,215,0 +170772823884,214,0 +170772823932,214,0 +170772823981,214,0 +170772824029,214,0 +170772824077,214,0 +170772824125,214,0 +170772824175,214,0 +170772824222,214,0 +170772824272,215,0 +170772824320,215,0 +170772824368,215,0 +170772824416,215,0 +170772824464,215,0 +170772824513,215,0 +170772824561,215,0 +170772824610,215,0 +170772824660,215,0 +170772824708,214,0 +170772824756,214,0 +170772824805,214,0 +170772824853,214,0 +170772824901,214,0 +170772824948,214,0 +170772824998,214,0 +170772825046,215,0 +170772825094,215,0 +170772825143,215,0 +170772825191,215,0 +170772825239,215,0 +170772825288,215,0 +170772825338,215,0 +170772825387,215,0 +170772825435,215,0 +170772825483,215,0 +170772825533,214,0 +170772825581,214,0 +170772825630,214,0 +170772825679,215,0 +170772825727,214,0 +170772825775,215,0 +170772825825,215,0 +170772825873,215,0 +170772825921,215,0 +170772825970,215,0 +170772826018,215,0 +170772826067,215,0 +170772826115,215,0 +170772826163,215,0 +170772826212,215,0 +170772826260,215,0 +170772826308,215,0 +170772826356,214,0 +170772826404,214,0 +170772826452,214,0 +170772826500,214,0 +170772826548,214,0 +170772826596,214,0 +170772826643,214,0 +170772826691,215,0 +170772826741,215,0 +170772826789,215,0 +170772826836,215,0 +170772826884,215,0 +170772826932,215,0 +170772826980,215,0 +170772827028,215,0 +170772827077,215,0 +170772827125,215,0 +170772827175,214,0 +170772827223,214,0 +170772827272,214,0 +170772827320,214,0 +170772827370,214,0 +170772827418,215,0 +170772827465,214,0 +170772827513,215,0 +170772827561,215,0 +170772827609,215,0 +170772827657,215,0 +170772827705,215,0 +170772827754,215,0 +170772827802,215,0 +170772827852,215,0 +170772827900,215,0 +170772827948,215,0 +170772827996,214,0 +170772828043,214,0 +170772828091,214,0 +170772828139,214,0 +170772828187,214,0 +170772828235,214,0 +170772828283,214,0 +170772828331,214,0 +170772828379,214,0 +170772828427,215,0 +170772828476,215,0 +170772828524,215,0 +170772828574,215,0 +170772828623,215,0 +170772828671,215,0 +170772828719,215,0 +170772828767,215,0 +170772828815,214,0 +170772828864,214,0 +170772828912,214,0 +170772828962,214,0 +170772829010,214,0 +170772829058,214,0 +170772829107,214,0 +170772829155,214,0 +170772829203,214,0 +170772829251,215,0 +170772829299,215,0 +170772829347,215,0 +170772829396,215,0 +170772829444,215,0 +170772829492,215,0 +170772829540,215,0 +170772829590,215,0 +170772829638,214,0 +170772829688,213,0 +170772829737,214,0 +170772829787,214,0 +170772829836,214,0 +170772829884,214,0 +170772829932,214,0 +170772829981,214,0 +170772830029,215,0 +170772830077,215,0 +170772830127,215,0 +170772830176,215,0 +170772830226,215,0 +170772830274,215,0 +170772830322,215,0 +170772830371,215,0 +170772830421,215,0 +170772830469,214,0 +170772830516,214,0 +170772830564,214,0 +170772830612,214,0 +170772830660,214,0 +170772830708,214,0 +170772830758,214,0 +170772830805,214,0 +170772830853,214,0 +170772830901,215,0 +170772830949,215,0 +170772830999,215,0 +170772831047,215,0 +170772831096,215,0 +170772831146,215,0 +170772831194,215,0 +170772831242,215,0 +170772831290,214,0 +170772831338,214,0 +170772831387,214,0 +170772831435,214,0 +170772831483,214,0 +170772831531,214,0 +170772831580,214,0 +170772831628,214,0 +170772831676,215,0 +170772831724,215,0 +170772831772,215,0 +170772831820,215,0 +170772831870,215,0 +170772831918,215,0 +170772831966,215,0 +170772832014,215,0 +170772832062,215,0 +170772832109,214,0 +170772832157,214,0 +170772832205,214,0 +170772832253,214,0 +170772832301,214,0 +170772832349,214,0 +170772832397,214,0 +170772832445,214,0 +170772832494,215,0 +170772832544,215,0 +170772832593,215,0 +170772832641,215,0 +170772832691,215,0 +170772832739,215,0 +170772832788,215,0 +170772832836,215,0 +170772832884,215,0 +170772832932,214,0 +170772832980,214,0 +170772833028,214,0 +170772833077,214,0 +170772833127,214,0 +170772833176,215,0 +170772833224,215,0 +170772833274,215,0 +170772833322,215,0 +170772833370,215,0 +170772833419,215,0 +170772833467,215,0 +170772833515,215,0 +170772833563,215,0 +170772833611,215,0 +170772833660,215,0 +170772833708,215,0 +170772833756,214,0 +170772833804,214,0 +170772833852,214,0 +170772833900,214,0 +170772833948,214,0 +170772833997,214,0 +170772834045,215,0 +170772834095,215,0 +170772834143,215,0 +170772834191,215,0 +170772834239,215,0 +170772834288,215,0 +170772834338,215,0 +170772834387,215,0 +170772834437,215,0 +170772834485,215,0 +170772834534,215,0 +170772834584,214,0 +170772834633,214,0 +170772834681,214,0 +170772834729,214,0 +170772834779,214,0 +170772834827,214,0 +170772834874,215,0 +170772834924,214,0 +170772834973,215,0 +170772835021,215,0 +170772835069,215,0 +170772835119,215,0 +170772835166,215,0 +170772835216,215,0 +170772835264,215,0 +170772835312,215,0 +170772835360,215,0 +170772835408,214,0 +170772835457,214,0 +170772835505,214,0 +170772835553,214,0 +170772835602,214,0 +170772835650,214,0 +170772835698,215,0 +170772835746,214,0 +170772835794,215,0 +170772835842,215,0 +170772835890,215,0 +170772835938,216,0 +170772835986,215,0 +170772836036,215,0 +170772836084,215,0 +170772836131,215,0 +170772836179,215,0 +170772836227,214,0 +170772836275,214,0 +170772836323,214,0 +170772836371,214,0 +170772836419,214,0 +170772836467,214,0 +170772836515,214,0 +170772836563,215,0 +170772836612,215,0 +170772836660,215,0 +170772836710,215,0 +170772836758,215,0 +170772836808,215,0 +170772836855,215,0 +170772836903,215,0 +170772836951,215,0 +170772837001,215,0 +170772837049,214,0 +170772837097,214,0 +170772837145,214,0 +170772837193,214,0 +170772837241,214,0 +170772837289,214,0 +170772837337,214,0 +170772837385,214,0 +170772837433,215,0 +170772837482,215,0 +170772837532,215,0 +170772837580,215,0 +170772837628,215,0 +170772837677,215,0 +170772837727,215,0 +170772837775,215,0 +170772837824,215,0 +170772837872,214,0 +170772837920,215,0 +170772837968,215,0 +170772838016,214,0 +170772838064,215,0 +170772838112,215,0 +170772838160,215,0 +170772838208,215,0 +170772838256,215,0 +170772838304,215,0 +170772838352,215,0 +170772838400,215,0 +170772838448,215,0 +170772838496,215,0 +170772838545,215,0 +170772838593,215,0 +170772838641,215,0 +170772838689,214,0 +170772838737,214,0 +170772838785,215,0 +170772838833,215,0 +170772838882,215,0 +170772838930,215,0 +170772838978,215,0 +170772839026,215,0 +170772839074,215,0 +170772839123,215,0 +170772839173,215,0 +170772839221,216,0 +170772839269,215,0 +170772839318,215,0 +170772839366,215,0 +170772839416,215,0 +170772839464,215,0 +170772839513,214,0 +170772839561,214,0 +170772839609,214,0 +170772839658,214,0 +170772839706,214,0 +170772839754,215,0 +170772839803,214,0 +170772839851,215,0 +170772839899,215,0 +170772839947,214,0 +170772839995,215,0 diff --git a/laser_value/0212-19.csv b/laser_value/0212-19.csv new file mode 100644 index 0000000..af605fe --- /dev/null +++ b/laser_value/0212-19.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170772840044,215,0 +170772840092,215,0 +170772840139,215,0 +170772840187,215,0 +170772840235,215,0 +170772840283,215,0 +170772840331,214,0 +170772840379,214,0 +170772840427,214,0 +170772840475,214,0 +170772840524,214,0 +170772840574,214,0 +170772840622,215,0 +170772840670,214,0 +170772840718,215,0 +170772840767,215,0 +170772840815,215,0 +170772840863,215,0 +170772840913,215,0 +170772840962,215,0 +170772841012,215,0 +170772841060,215,0 +170772841109,215,0 +170772841159,214,0 +170772841207,214,0 +170772841255,214,0 +170772841302,214,0 +170772841352,214,0 +170772841400,214,0 +170772841448,214,0 +170772841497,215,0 +170772841547,215,0 +170772841595,215,0 +170772841643,215,0 +170772841691,215,0 +170772841740,215,0 +170772841788,215,0 +170772841836,215,0 +170772841886,215,0 +170772841934,215,0 +170772841982,214,0 +170772842031,214,0 +170772842079,214,0 +170772842127,214,0 +170772842177,215,0 +170772842226,215,0 +170772842276,215,0 +170772842325,215,0 +170772842373,215,0 +170772842421,215,0 +170772842470,215,0 +170772842520,215,0 +170772842569,215,0 +170772842617,215,0 +170772842665,215,0 +170772842713,215,0 +170772842761,215,0 +170772842809,214,0 +170772842857,214,0 +170772842906,214,0 +170772842954,214,0 +170772843002,214,0 +170772843052,214,0 +170772843099,215,0 +170772843149,215,0 +170772843197,215,0 +170772843244,215,0 +170772843292,215,0 +170772843340,215,0 +170772843388,215,0 +170772843436,215,0 +170772843484,215,0 +170772843532,215,0 +170772843579,215,0 +170772843627,214,0 +170772843675,214,0 +170772843723,214,0 +170772843771,214,0 +170772843819,214,0 +170772843867,214,0 +170772843914,214,0 +170772843962,215,0 +170772844010,215,0 +170772844058,215,0 +170772844106,215,0 +170772844154,215,0 +170772844203,215,0 +170772844251,215,0 +170772844299,215,0 +170772844347,215,0 +170772844397,215,0 +170772844445,214,0 +170772844494,214,0 +170772844542,214,0 +170772844592,214,0 +170772844641,214,0 +170772844691,214,0 +170772844740,214,0 +170772844788,215,0 +170772844838,215,0 +170772844886,215,0 +170772844935,215,0 +170772844985,215,0 +170772845034,215,0 +170772845082,215,0 +170772845130,215,0 +170772845178,215,0 +170772845226,215,0 +170772845274,214,0 +170772845322,214,0 +170772845370,214,0 +170772845419,214,0 +170772845469,214,0 +170772845517,214,0 +170772845565,214,0 +170772845613,214,0 +170772845661,214,0 +170772845710,214,0 +170772845758,214,0 +170772845806,214,0 +170772845854,215,0 +170772845901,215,0 +170772845951,215,0 +170772846000,215,0 +170772846050,214,0 +170772846097,214,0 +170772846145,213,0 +170772846193,214,0 +170772846242,214,0 +170772846292,214,0 +170772846341,214,0 +170772846389,214,0 +170772846439,214,0 +170772846487,214,0 +170772846535,215,0 +170772846583,214,0 +170772846632,215,0 +170772846680,215,0 +170772846728,215,0 +170772846777,215,0 +170772846825,215,0 +170772846873,214,0 +170772846921,214,0 +170772846969,213,0 +170772847016,214,0 +170772847064,214,0 +170772847112,214,0 +170772847160,214,0 +170772847208,214,0 +170772847256,214,0 +170772847305,214,0 +170772847353,214,0 +170772847401,215,0 +170772847449,215,0 +170772847498,215,0 +170772847546,215,0 +170772847595,215,0 +170772847643,215,0 +170772847691,214,0 +170772847739,214,0 +170772847787,214,0 +170772847835,214,0 +170772847882,214,0 +170772847930,214,0 +170772847978,214,0 +170772848026,214,0 +170772848076,214,0 +170772848123,215,0 +170772848171,215,0 +170772848219,215,0 +170772848267,215,0 +170772848315,215,0 +170772848363,215,0 +170772848410,215,0 +170772848458,215,0 +170772848506,214,0 +170772848554,214,0 +170772848602,213,0 +170772848650,214,0 +170772848698,214,0 +170772848746,214,0 +170772848793,214,0 +170772848841,214,0 +170772848889,214,0 +170772848937,215,0 +170772848985,215,0 +170772849033,215,0 +170772849081,215,0 +170772849128,215,0 +170772849176,215,0 +170772849224,215,0 +170772849272,215,0 +170772849320,214,0 +170772849369,214,0 +170772849417,214,0 +170772849465,214,0 +170772849513,214,0 +170772849562,214,0 +170772849610,214,0 +170772849658,214,0 +170772849708,214,0 +170772849756,215,0 +170772849803,215,0 +170772849853,215,0 +170772849901,215,0 +170772849949,215,0 +170772849997,215,0 +170772850045,215,0 +170772850093,215,0 +170772850142,214,0 +170772850192,214,0 +170772850241,214,0 +170772850289,214,0 +170772850339,214,0 +170772850387,214,0 +170772850434,214,0 +170772850482,214,0 +170772850532,215,0 +170772850580,215,0 +170772850627,215,0 +170772850675,215,0 +170772850723,215,0 +170772850771,215,0 +170772850819,215,0 +170772850867,215,0 +170772850915,214,0 +170772850963,214,0 +170772851012,214,0 +170772851061,214,0 +170772851111,214,0 +170772851159,215,0 +170772851208,215,0 +170772851258,215,0 +170772851307,215,0 +170772851355,215,0 +170772851403,215,0 +170772851451,215,0 +170772851499,215,0 +170772851549,215,0 +170772851597,215,0 +170772851645,215,0 +170772851693,215,0 +170772851742,214,0 +170772851790,215,0 +170772851839,215,0 +170772851889,215,0 +170772851937,215,0 +170772851985,215,0 +170772852033,215,0 +170772852082,215,0 +170772852130,215,0 +170772852180,215,0 +170772852228,215,0 +170772852276,215,0 +170772852323,215,0 +170772852371,215,0 +170772852419,215,0 +170772852467,215,0 +170772852515,214,0 +170772852564,215,0 +170772852612,215,0 +170772852660,215,0 +170772852708,215,0 +170772852756,215,0 +170772852804,215,0 +170772852852,215,0 +170772852900,215,0 +170772852949,215,0 +170772852997,215,0 +170772853045,215,0 +170772853094,215,0 +170772853142,215,0 +170772853190,215,0 +170772853237,215,0 +170772853285,215,0 +170772853333,214,0 +170772853381,214,0 +170772853429,215,0 +170772853477,215,0 +170772853524,215,0 +170772853572,215,0 +170772853622,215,0 +170772853669,215,0 +170772853719,215,0 +170772853767,215,0 +170772853816,215,0 +170772853864,215,0 +170772853914,215,0 +170772853962,215,0 +170772854010,215,0 +170772854058,215,0 +170772854106,215,0 +170772854155,215,0 +170772854203,215,0 +170772854251,215,0 +170772854299,215,0 +170772854347,215,0 +170772854395,215,0 +170772854442,215,0 +170772854490,215,0 +170772854538,215,0 +170772854588,215,0 +170772854636,216,0 +170772854684,216,0 +170772854733,215,0 +170772854781,215,0 +170772854829,215,0 +170772854878,215,0 +170772854926,214,0 +170772854974,215,0 +170772855024,215,0 +170772855073,215,0 +170772855121,215,0 +170772855171,215,0 +170772855219,215,0 +170772855266,215,0 +170772855314,215,0 +170772855362,215,0 +170772855410,215,0 +170772855458,215,0 +170772855508,215,0 +170772855556,215,0 +170772855603,215,0 +170772855651,215,0 +170772855701,215,0 +170772855749,214,0 +170772855796,214,0 +170772855844,214,0 +170772855892,214,0 +170772855940,214,0 +170772855988,214,0 +170772856035,214,0 +170772856083,214,0 +170772856131,214,0 +170772856179,215,0 +170772856227,215,0 +170772856275,215,0 +170772856322,215,0 +170772856372,215,0 +170772856420,215,0 +170772856468,215,0 +170772856515,215,0 +170772856563,214,0 +170772856611,214,0 +170772856659,214,0 +170772856707,214,0 +170772856755,214,0 +170772856803,214,0 +170772856851,214,0 +170772856898,214,0 +170772856948,214,0 +170772856996,214,0 +170772857044,215,0 +170772857093,215,0 +170772857143,215,0 +170772857191,215,0 +170772857239,215,0 +170772857288,215,0 +170772857336,214,0 +170772857384,214,0 +170772857432,214,0 +170772857481,214,0 +170772857529,214,0 +170772857577,214,0 +170772857625,214,0 +170772857673,214,0 +170772857721,215,0 +170772857769,214,0 +170772857817,215,0 +170772857864,215,0 +170772857912,215,0 +170772857960,215,0 +170772858008,215,0 +170772858056,215,0 +170772858104,215,0 +170772858153,214,0 +170772858201,214,0 +170772858249,214,0 +170772858297,214,0 +170772858346,214,0 +170772858394,214,0 +170772858442,214,0 +170772858490,215,0 +170772858538,215,0 +170772858585,215,0 +170772858633,215,0 +170772858681,215,0 +170772858729,215,0 +170772858777,215,0 +170772858824,215,0 +170772858872,215,0 +170772858920,215,0 +170772858968,214,0 +170772859017,214,0 +170772859065,214,0 +170772859113,214,0 +170772859161,214,0 +170772859210,214,0 +170772859259,214,0 +170772859307,214,0 +170772859355,214,0 +170772859403,214,0 +170772859450,215,0 +170772859498,215,0 +170772859548,215,0 +170772859595,215,0 +170772859643,215,0 +170772859691,215,0 +170772859739,214,0 +170772859787,214,0 +170772859835,214,0 +170772859882,214,0 +170772859930,214,0 +170772859978,214,0 +170772860026,214,0 +170772860074,215,0 +170772860121,215,0 +170772860169,215,0 +170772860219,215,0 +170772860266,215,0 +170772860314,215,0 +170772860362,215,0 +170772860411,215,0 +170772860459,215,0 +170772860507,215,0 +170772860555,214,0 +170772860603,214,0 +170772860650,214,0 +170772860698,214,0 +170772860748,214,0 +170772860795,214,0 +170772860843,214,0 +170772860891,214,0 +170772860940,214,0 +170772860988,214,0 +170772861036,214,0 +170772861084,215,0 +170772861132,215,0 +170772861180,215,0 +170772861227,215,0 +170772861275,215,0 +170772861323,215,0 +170772861371,214,0 +170772861420,214,0 +170772861469,214,0 +170772861517,214,0 +170772861565,214,0 +170772861613,214,0 +170772861661,214,0 +170772861708,214,0 +170772861756,214,0 +170772861804,214,0 +170772861852,215,0 +170772861900,214,0 +170772861947,215,0 +170772861995,215,0 +170772862043,215,0 +170772862091,215,0 +170772862139,215,0 +170772862186,214,0 +170772862234,214,0 +170772862282,214,0 +170772862330,214,0 +170772862378,214,0 +170772862425,214,0 +170772862473,214,0 +170772862521,214,0 +170772862569,214,0 +170772862618,215,0 +170772862666,215,0 +170772862714,215,0 +170772862762,215,0 +170772862810,215,0 +170772862858,215,0 +170772862906,215,0 +170772862953,214,0 +170772863003,214,0 +170772863051,214,0 +170772863100,214,0 +170772863148,215,0 +170772863196,215,0 +170772863244,215,0 +170772863293,215,0 +170772863341,215,0 +170772863390,215,0 +170772863438,215,0 +170772863486,215,0 +170772863534,215,0 +170772863582,215,0 +170772863629,215,0 +170772863677,215,0 +170772863725,215,0 +170772863773,214,0 +170772863821,214,0 +170772863868,214,0 +170772863916,214,0 +170772863964,215,0 +170772864012,215,0 +170772864059,215,0 +170772864107,215,0 +170772864155,215,0 +170772864203,215,0 +170772864251,215,0 +170772864299,215,0 +170772864346,215,0 +170772864394,215,0 +170772864442,215,0 +170772864492,215,0 +170772864541,215,0 +170772864589,214,0 +170772864637,214,0 +170772864684,215,0 +170772864732,215,0 +170772864780,215,0 +170772864828,215,0 +170772864876,215,0 +170772864924,215,0 +170772864971,215,0 +170772865021,215,0 +170772865069,215,0 +170772865116,215,0 +170772865164,215,0 +170772865212,215,0 +170772865260,215,0 +170772865308,215,0 +170772865356,214,0 +170772865404,214,0 +170772865452,215,0 +170772865501,214,0 +170772865549,215,0 +170772865597,215,0 +170772865646,215,0 +170772865694,215,0 +170772865742,215,0 +170772865790,215,0 +170772865837,215,0 +170772865885,215,0 +170772865933,215,0 +170772865981,215,0 +170772866030,215,0 +170772866080,215,0 +170772866127,215,0 +170772866175,215,0 +170772866225,215,0 +170772866273,215,0 +170772866320,215,0 +170772866368,215,0 +170772866418,215,0 +170772866467,215,0 +170772866515,215,0 +170772866563,215,0 +170772866613,215,0 +170772866661,215,0 +170772866710,215,0 +170772866758,215,0 +170772866806,215,0 +170772866854,215,0 +170772866902,216,0 +170772866949,215,0 +170772866999,215,0 +170772867047,215,0 +170772867095,215,0 +170772867143,215,0 +170772867192,215,0 +170772867240,215,0 +170772867288,215,0 +170772867337,215,0 +170772867387,215,0 +170772867436,215,0 +170772867484,215,0 +170772867534,215,0 +170772867582,215,0 +170772867630,215,0 +170772867677,215,0 +170772867725,215,0 +170772867773,214,0 +170772867821,214,0 +170772867869,214,0 +170772867916,214,0 +170772867964,215,0 +170772868012,214,0 +170772868060,215,0 +170772868108,215,0 +170772868155,215,0 +170772868203,215,0 +170772868251,215,0 +170772868299,215,0 +170772868346,215,0 +170772868394,215,0 +170772868444,215,0 +170772868491,215,0 +170772868539,215,0 +170772868587,214,0 +170772868635,214,0 +170772868683,214,0 +170772868731,214,0 +170772868779,214,0 +170772868826,215,0 +170772868874,215,0 +170772868922,215,0 +170772868970,215,0 +170772869018,215,0 +170772869066,215,0 +170772869113,215,0 +170772869161,215,0 +170772869209,215,0 +170772869257,215,0 +170772869305,215,0 +170772869353,215,0 +170772869400,214,0 +170772869448,214,0 +170772869498,214,0 +170772869545,214,0 +170772869593,215,0 +170772869641,215,0 +170772869689,215,0 +170772869737,215,0 +170772869785,215,0 +170772869832,215,0 +170772869880,215,0 +170772869930,215,0 +170772869978,216,0 +170772870027,215,0 +170772870077,215,0 +170772870125,215,0 +170772870174,214,0 +170772870224,214,0 +170772870272,214,0 +170772870321,214,0 +170772870371,214,0 +170772870419,214,0 +170772870467,215,0 +170772870515,215,0 +170772870563,215,0 +170772870612,215,0 +170772870660,215,0 +170772870708,215,0 +170772870755,215,0 +170772870803,215,0 +170772870853,215,0 +170772870901,215,0 +170772870948,215,0 +170772870996,214,0 +170772871044,214,0 +170772871092,214,0 +170772871141,214,0 +170772871189,214,0 +170772871237,214,0 +170772871285,214,0 +170772871333,214,0 +170772871382,215,0 +170772871430,215,0 +170772871478,215,0 +170772871526,215,0 +170772871574,215,0 +170772871622,215,0 +170772871669,215,0 +170772871717,215,0 +170772871765,215,0 +170772871813,214,0 +170772871863,214,0 +170772871911,214,0 +170772871959,214,0 +170772872007,214,0 +170772872056,214,0 +170772872104,214,0 +170772872152,215,0 +170772872201,215,0 +170772872251,215,0 +170772872299,215,0 +170772872347,215,0 +170772872395,215,0 +170772872443,215,0 +170772872491,215,0 +170772872539,215,0 +170772872586,214,0 +170772872636,214,0 +170772872684,214,0 +170772872732,214,0 +170772872780,214,0 +170772872827,214,0 +170772872875,214,0 +170772872923,214,0 +170772872971,215,0 +170772873019,215,0 +170772873069,215,0 +170772873117,215,0 +170772873165,215,0 +170772873212,215,0 +170772873260,215,0 +170772873308,215,0 +170772873356,215,0 +170772873404,214,0 +170772873452,214,0 +170772873502,214,0 +170772873551,214,0 +170772873601,214,0 +170772873649,214,0 +170772873698,215,0 +170772873748,214,0 +170772873796,215,0 +170772873844,215,0 +170772873893,215,0 +170772873941,215,0 +170772873991,215,0 +170772874039,215,0 +170772874088,215,0 +170772874138,215,0 +170772874187,214,0 +170772874235,214,0 +170772874283,214,0 +170772874331,214,0 +170772874379,214,0 +170772874427,214,0 +170772874475,214,0 +170772874523,215,0 +170772874571,215,0 +170772874620,215,0 +170772874670,215,0 +170772874720,215,0 +170772874769,215,0 +170772874817,215,0 +170772874867,215,0 +170772874916,215,0 +170772874964,215,0 +170772875012,215,0 +170772875060,214,0 +170772875108,214,0 +170772875156,215,0 +170772875204,215,0 +170772875253,215,0 +170772875301,215,0 +170772875349,215,0 +170772875398,215,0 +170772875448,215,0 +170772875496,215,0 +170772875544,215,0 +170772875592,215,0 +170772875640,215,0 +170772875689,215,0 +170772875737,215,0 +170772875787,214,0 +170772875835,214,0 +170772875883,214,0 +170772875931,215,0 +170772875979,215,0 +170772876028,215,0 +170772876076,215,0 +170772876126,215,0 +170772876174,215,0 +170772876223,215,0 +170772876271,215,0 +170772876319,215,0 +170772876369,215,0 +170772876417,215,0 +170772876466,215,0 +170772876514,215,0 +170772876562,215,0 +170772876610,214,0 +170772876658,214,0 +170772876705,214,0 +170772876753,215,0 +170772876802,215,0 +170772876849,215,0 +170772876897,215,0 +170772876945,215,0 +170772876995,215,0 +170772877043,215,0 +170772877092,215,0 +170772877140,215,0 +170772877188,215,0 +170772877236,215,0 +170772877286,215,0 +170772877334,215,0 +170772877383,214,0 +170772877433,214,0 +170772877482,215,0 +170772877530,214,0 +170772877578,214,0 +170772877626,215,0 +170772877674,215,0 +170772877722,215,0 +170772877770,215,0 +170772877818,215,0 +170772877866,215,0 +170772877914,215,0 +170772877961,215,0 +170772878009,215,0 +170772878057,215,0 +170772878105,215,0 +170772878153,215,0 +170772878202,214,0 +170772878250,214,0 +170772878298,214,0 +170772878346,214,0 +170772878394,214,0 +170772878441,215,0 +170772878489,215,0 +170772878537,215,0 +170772878585,215,0 +170772878633,215,0 +170772878681,215,0 +170772878728,215,0 +170772878778,215,0 +170772878826,215,0 +170772878873,215,0 +170772878921,215,0 +170772878969,215,0 +170772879017,214,0 +170772879065,214,0 +170772879113,214,0 +170772879162,214,0 +170772879212,215,0 +170772879260,215,0 +170772879308,215,0 +170772879356,215,0 +170772879404,215,0 +170772879452,215,0 +170772879501,215,0 +170772879549,215,0 +170772879599,215,0 +170772879646,215,0 +170772879696,215,0 +170772879744,215,0 +170772879792,214,0 +170772879840,214,0 +170772879888,214,0 +170772879936,214,0 +170772879984,214,0 +170772880032,214,0 +170772880080,214,0 +170772880129,214,0 +170772880177,215,0 +170772880225,215,0 +170772880274,215,0 +170772880324,215,0 +170772880374,215,0 +170772880421,215,0 +170772880469,215,0 +170772880517,215,0 +170772880565,215,0 +170772880613,214,0 +170772880661,214,0 +170772880711,214,0 +170772880759,214,0 +170772880807,214,0 +170772880854,214,0 +170772880904,214,0 +170772880953,214,0 +170772881002,214,0 +170772881051,214,0 +170772881099,214,0 +170772881147,215,0 +170772881195,215,0 +170772881243,215,0 +170772881291,215,0 +170772881339,215,0 +170772881388,214,0 +170772881438,214,0 +170772881486,214,0 +170772881534,214,0 +170772881581,214,0 +170772881631,214,0 +170772881679,214,0 +170772881727,214,0 +170772881776,214,0 +170772881826,215,0 +170772881874,215,0 +170772881923,215,0 +170772881971,215,0 +170772882019,215,0 +170772882067,215,0 +170772882115,215,0 +170772882163,215,0 +170772882211,214,0 +170772882259,214,0 +170772882307,214,0 +170772882356,214,0 +170772882404,214,0 +170772882452,214,0 +170772882500,215,0 +170772882548,215,0 +170772882597,215,0 +170772882647,215,0 +170772882695,215,0 +170772882743,215,0 +170772882791,215,0 +170772882839,215,0 +170772882887,215,0 +170772882936,215,0 +170772882986,214,0 +170772883034,214,0 +170772883083,214,0 +170772883131,215,0 +170772883179,215,0 +170772883229,214,0 +170772883276,215,0 +170772883326,215,0 +170772883374,215,0 +170772883422,215,0 +170772883470,215,0 +170772883518,215,0 +170772883566,215,0 +170772883614,215,0 +170772883662,215,0 +170772883711,215,0 +170772883761,215,0 +170772883810,215,0 +170772883858,214,0 +170772883906,215,0 +170772883954,214,0 +170772884002,215,0 +170772884049,215,0 +170772884099,215,0 +170772884148,215,0 +170772884196,215,0 +170772884244,215,0 +170772884294,215,0 +170772884342,215,0 +170772884389,215,0 +170772884437,215,0 +170772884485,215,0 +170772884533,215,0 +170772884581,215,0 +170772884629,214,0 +170772884677,214,0 +170772884725,215,0 +170772884773,214,0 +170772884822,215,0 +170772884872,215,0 +170772884920,215,0 +170772884968,215,0 +170772885015,215,0 +170772885063,215,0 +170772885113,215,0 +170772885161,215,0 +170772885210,215,0 +170772885258,215,0 +170772885308,215,0 +170772885357,215,0 +170772885405,214,0 +170772885453,213,0 +170772885501,214,0 +170772885549,214,0 +170772885599,214,0 +170772885648,214,0 +170772885698,214,0 +170772885747,214,0 +170772885797,214,0 +170772885846,214,0 +170772885894,215,0 +170772885942,215,0 +170772885990,215,0 +170772886040,215,0 +170772886088,215,0 +170772886137,215,0 +170772886187,215,0 +170772886236,213,0 +170772886284,214,0 +170772886334,214,0 +170772886381,214,0 +170772886429,214,0 +170772886479,214,0 +170772886527,214,0 +170772886575,214,0 +170772886624,214,0 +170772886672,214,0 +170772886720,215,0 +170772886769,215,0 +170772886817,215,0 +170772886865,215,0 +170772886913,215,0 +170772886961,215,0 +170772887009,214,0 +170772887057,214,0 +170772887105,214,0 +170772887154,214,0 +170772887202,214,0 +170772887250,214,0 +170772887298,214,0 +170772887346,215,0 +170772887394,215,0 +170772887442,215,0 +170772887490,215,0 +170772887539,215,0 +170772887587,215,0 +170772887637,215,0 +170772887685,215,0 +170772887733,215,0 +170772887782,215,0 +170772887832,214,0 +170772887879,214,0 +170772887927,214,0 +170772887977,214,0 +170772888026,215,0 +170772888076,215,0 +170772888124,215,0 +170772888173,215,0 +170772888221,215,0 +170772888270,215,0 +170772888318,215,0 +170772888366,215,0 +170772888414,215,0 +170772888462,215,0 +170772888510,215,0 +170772888558,215,0 +170772888606,214,0 +170772888654,214,0 +170772888703,214,0 +170772888751,214,0 +170772888799,214,0 +170772888848,214,0 +170772888896,214,0 +170772888944,215,0 +170772888994,215,0 +170772889042,215,0 +170772889091,215,0 +170772889141,215,0 +170772889189,215,0 +170772889237,215,0 +170772889286,215,0 +170772889334,215,0 +170772889382,215,0 +170772889430,214,0 +170772889479,214,0 +170772889529,214,0 +170772889577,214,0 +170772889625,214,0 +170772889673,214,0 +170772889722,214,0 +170772889772,214,0 +170772889820,215,0 +170772889868,215,0 +170772889916,215,0 +170772889963,215,0 +170772890011,215,0 +170772890059,215,0 +170772890107,215,0 +170772890155,215,0 +170772890203,215,0 +170772890252,214,0 +170772890300,214,0 +170772890348,214,0 +170772890396,214,0 +170772890444,214,0 +170772890493,214,0 +170772890541,214,0 +170772890589,215,0 +170772890637,215,0 +170772890685,215,0 +170772890733,215,0 +170772890780,215,0 +170772890828,215,0 +170772890876,215,0 +170772890924,215,0 +170772890972,215,0 +170772891020,214,0 +170772891068,214,0 +170772891116,214,0 +170772891164,214,0 +170772891212,214,0 +170772891259,215,0 +170772891307,215,0 +170772891357,215,0 +170772891405,215,0 +170772891453,215,0 +170772891502,215,0 +170772891551,215,0 +170772891599,215,0 +170772891646,215,0 +170772891694,215,0 +170772891742,215,0 +170772891792,215,0 +170772891840,214,0 +170772891889,214,0 +170772891939,215,0 +170772891988,215,0 +170772892036,215,0 +170772892084,215,0 +170772892133,215,0 +170772892183,215,0 +170772892231,215,0 +170772892281,215,0 +170772892328,215,0 +170772892376,215,0 +170772892424,215,0 +170772892472,215,0 +170772892520,215,0 +170772892568,215,0 +170772892616,214,0 +170772892664,214,0 +170772892712,214,0 +170772892760,214,0 +170772892808,214,0 +170772892858,214,0 +170772892905,214,0 +170772892955,215,0 +170772893003,215,0 +170772893051,215,0 +170772893100,215,0 +170772893148,215,0 +170772893198,215,0 +170772893247,215,0 +170772893297,215,0 +170772893346,215,0 +170772893394,215,0 +170772893442,214,0 +170772893492,214,0 +170772893540,214,0 +170772893588,215,0 +170772893636,215,0 +170772893684,215,0 +170772893733,215,0 +170772893783,215,0 +170772893830,215,0 +170772893878,215,0 +170772893926,215,0 +170772893974,215,0 +170772894024,215,0 +170772894073,215,0 +170772894121,215,0 +170772894169,215,0 +170772894217,215,0 +170772894265,214,0 +170772894313,215,0 +170772894362,214,0 +170772894410,215,0 +170772894458,215,0 +170772894506,215,0 +170772894555,215,0 +170772894605,215,0 +170772894654,215,0 +170772894702,215,0 +170772894750,215,0 +170772894798,215,0 +170772894846,215,0 +170772894895,215,0 +170772894945,215,0 +170772894994,215,0 +170772895042,214,0 +170772895092,214,0 +170772895140,214,0 +170772895188,214,0 +170772895237,214,0 +170772895285,215,0 +170772895335,215,0 +170772895383,215,0 +170772895431,215,0 +170772895478,215,0 +170772895526,215,0 +170772895574,215,0 +170772895622,215,0 +170772895672,215,0 +170772895720,215,0 +170772895768,215,0 +170772895815,214,0 +170772895863,214,0 +170772895911,214,0 +170772895959,214,0 +170772896007,214,0 +170772896057,214,0 +170772896105,215,0 +170772896153,215,0 +170772896202,215,0 +170772896252,215,0 +170772896300,215,0 +170772896348,215,0 +170772896397,215,0 +170772896447,215,0 +170772896495,215,0 +170772896542,215,0 +170772896590,215,0 +170772896638,214,0 +170772896686,214,0 +170772896736,214,0 +170772896784,214,0 +170772896832,214,0 +170772896881,214,0 +170772896929,214,0 +170772896979,214,0 +170772897026,214,0 +170772897074,215,0 +170772897122,215,0 +170772897170,215,0 +170772897220,215,0 +170772897268,215,0 +170772897317,215,0 +170772897365,215,0 +170772897415,214,0 +170772897463,214,0 +170772897512,214,0 +170772897560,214,0 +170772897608,214,0 +170772897656,214,0 +170772897706,214,0 +170772897754,214,0 +170772897802,214,0 +170772897851,214,0 +170772897901,215,0 +170772897948,215,0 +170772897996,215,0 +170772898046,215,0 +170772898094,215,0 +170772898141,215,0 +170772898191,215,0 +170772898239,214,0 +170772898287,214,0 +170772898335,214,0 +170772898384,213,0 +170772898432,214,0 +170772898480,214,0 +170772898528,214,0 +170772898576,214,0 +170772898624,214,0 +170772898673,215,0 +170772898723,214,0 +170772898771,214,0 +170772898819,215,0 +170772898867,215,0 +170772898915,215,0 +170772898964,215,0 +170772899012,215,0 +170772899062,213,0 +170772899111,214,0 +170772899159,213,0 +170772899207,214,0 +170772899255,214,0 +170772899303,214,0 +170772899351,214,0 +170772899399,214,0 +170772899447,215,0 +170772899495,215,0 +170772899543,215,0 +170772899592,215,0 +170772899642,215,0 +170772899690,215,0 +170772899738,215,0 +170772899787,215,0 +170772899835,214,0 +170772899884,214,0 +170772899932,214,0 +170772899982,214,0 +170772900030,214,0 +170772900078,215,0 +170772900127,215,0 +170772900175,215,0 +170772900225,215,0 +170772900273,215,0 +170772900322,215,0 +170772900370,215,0 +170772900418,215,0 +170772900468,215,0 +170772900515,215,0 +170772900563,215,0 +170772900613,214,0 +170772900661,214,0 +170772900709,215,0 +170772900757,215,0 +170772900806,215,0 +170772900856,215,0 +170772900905,215,0 +170772900953,215,0 +170772901001,215,0 +170772901049,215,0 +170772901097,215,0 +170772901146,215,0 +170772901196,215,0 +170772901245,215,0 +170772901293,215,0 +170772901343,215,0 +170772901392,215,0 +170772901440,215,0 +170772901488,215,0 +170772901538,215,0 +170772901586,215,0 +170772901634,215,0 +170772901682,215,0 +170772901730,215,0 +170772901777,215,0 +170772901825,215,0 +170772901875,215,0 +170772901924,215,0 +170772901972,215,0 +170772902020,215,0 +170772902068,215,0 +170772902116,215,0 +170772902166,216,0 +170772902214,215,0 +170772902261,214,0 +170772902309,214,0 +170772902357,214,0 +170772902405,215,0 +170772902453,215,0 +170772902501,215,0 +170772902550,215,0 +170772902598,215,0 +170772902648,215,0 +170772902697,215,0 +170772902745,215,0 +170772902793,215,0 +170772902841,215,0 +170772902889,215,0 +170772902937,215,0 +170772902985,215,0 +170772903033,215,0 +170772903080,215,0 +170772903128,215,0 +170772903176,215,0 +170772903226,215,0 +170772903274,215,0 +170772903322,215,0 +170772903370,215,0 +170772903417,215,0 +170772903465,215,0 +170772903513,215,0 +170772903561,216,0 +170772903609,215,0 +170772903657,215,0 +170772903707,215,0 +170772903756,215,0 +170772903804,215,0 +170772903852,215,0 +170772903900,215,0 +170772903950,215,0 +170772903999,215,0 +170772904049,215,0 +170772904098,215,0 +170772904148,215,0 +170772904196,215,0 +170772904244,215,0 +170772904292,215,0 +170772904340,215,0 +170772904388,215,0 +170772904435,215,0 +170772904483,215,0 +170772904533,215,0 +170772904582,215,0 +170772904630,214,0 +170772904678,214,0 +170772904726,214,0 +170772904776,214,0 +170772904824,214,0 +170772904873,215,0 +170772904921,215,0 +170772904969,215,0 +170772905017,215,0 +170772905065,215,0 +170772905113,215,0 +170772905161,215,0 +170772905209,215,0 +170772905257,215,0 +170772905305,215,0 +170772905352,215,0 +170772905400,215,0 +170772905448,214,0 +170772905496,214,0 +170772905544,214,0 +170772905592,214,0 +170772905641,214,0 +170772905690,214,0 +170772905738,214,0 +170772905786,214,0 +170772905836,215,0 +170772905883,215,0 +170772905933,215,0 +170772905982,215,0 +170772906030,215,0 +170772906078,215,0 +170772906126,215,0 +170772906174,215,0 +170772906222,214,0 +170772906269,214,0 +170772906317,214,0 +170772906367,214,0 +170772906416,214,0 +170772906464,214,0 +170772906513,214,0 +170772906561,215,0 +170772906609,215,0 +170772906657,215,0 +170772906705,215,0 +170772906753,215,0 +170772906801,215,0 +170772906848,215,0 +170772906896,215,0 +170772906944,215,0 +170772906992,215,0 +170772907042,214,0 +170772907090,214,0 +170772907137,214,0 +170772907185,214,0 +170772907233,214,0 +170772907282,214,0 +170772907330,214,0 +170772907378,214,0 +170772907426,214,0 +170772907474,215,0 +170772907522,215,0 +170772907571,215,0 +170772907620,215,0 +170772907668,215,0 +170772907718,215,0 +170772907766,215,0 +170772907815,215,0 +170772907865,214,0 +170772907914,214,0 +170772907962,214,0 +170772908010,214,0 +170772908059,214,0 +170772908107,214,0 +170772908156,214,0 +170772908204,214,0 +170772908254,214,0 +170772908302,214,0 +170772908349,215,0 +170772908397,215,0 +170772908445,215,0 +170772908493,215,0 +170772908541,215,0 +170772908589,215,0 +170772908636,214,0 +170772908686,213,0 +170772908734,214,0 +170772908781,214,0 +170772908829,214,0 +170772908877,214,0 +170772908925,214,0 +170772908973,214,0 +170772909021,214,0 +170772909068,214,0 +170772909116,214,0 +170772909164,215,0 +170772909212,215,0 +170772909260,215,0 +170772909308,215,0 +170772909357,216,0 +170772909405,215,0 +170772909453,213,0 +170772909502,213,0 +170772909550,213,0 +170772909599,213,0 +170772909649,213,0 +170772909697,214,0 +170772909744,214,0 +170772909792,214,0 +170772909840,214,0 +170772909888,214,0 +170772909936,214,0 +170772909984,214,0 +170772910033,215,0 +170772910081,215,0 +170772910130,215,0 +170772910178,215,0 +170772910226,215,0 +170772910274,213,0 +170772910322,214,0 +170772910369,213,0 +170772910417,214,0 +170772910467,214,0 +170772910514,214,0 +170772910562,214,0 +170772910610,214,0 +170772910658,214,0 +170772910706,214,0 +170772910754,214,0 +170772910802,214,0 +170772910850,215,0 +170772910897,215,0 +170772910945,215,0 +170772910993,215,0 +170772911041,214,0 +170772911089,214,0 +170772911138,214,0 +170772911186,214,0 +170772911234,214,0 +170772911282,214,0 +170772911330,214,0 +170772911379,214,0 +170772911427,214,0 +170772911475,214,0 +170772911523,214,0 +170772911570,214,0 +170772911618,215,0 +170772911666,215,0 +170772911716,215,0 +170772911763,215,0 +170772911811,215,0 +170772911859,214,0 +170772911907,214,0 +170772911955,214,0 +170772912003,214,0 +170772912050,214,0 +170772912098,214,0 +170772912146,214,0 +170772912194,215,0 +170772912243,214,0 +170772912291,215,0 +170772912340,215,0 +170772912388,215,0 +170772912436,215,0 +170772912484,215,0 +170772912532,215,0 +170772912580,215,0 +170772912629,215,0 +170772912677,215,0 +170772912725,215,0 +170772912773,215,0 +170772912822,215,0 +170772912871,215,0 +170772912919,215,0 +170772912969,215,0 +170772913016,215,0 +170772913064,215,0 +170772913112,214,0 +170772913160,214,0 +170772913209,215,0 +170772913257,215,0 +170772913305,215,0 +170772913353,215,0 +170772913401,215,0 +170772913448,215,0 +170772913496,215,0 +170772913544,215,0 +170772913594,215,0 +170772913641,215,0 +170772913691,215,0 +170772913739,215,0 +170772913787,215,0 +170772913834,214,0 +170772913884,214,0 +170772913932,215,0 +170772913979,214,0 +170772914027,215,0 +170772914075,215,0 +170772914123,215,0 +170772914173,215,0 +170772914220,215,0 +170772914268,215,0 +170772914316,215,0 +170772914366,215,0 +170772914413,215,0 +170772914461,215,0 +170772914509,215,0 +170772914559,215,0 +170772914606,215,0 +170772914654,214,0 +170772914702,215,0 +170772914752,214,0 +170772914801,214,0 +170772914849,215,0 +170772914897,215,0 +170772914945,215,0 +170772914993,215,0 +170772915042,215,0 +170772915092,215,0 +170772915142,215,0 +170772915190,215,0 +170772915238,215,0 +170772915287,215,0 +170772915337,215,0 +170772915385,215,0 +170772915433,215,0 +170772915482,214,0 +170772915532,215,0 +170772915580,215,0 +170772915628,215,0 +170772915676,215,0 +170772915724,215,0 +170772915772,215,0 +170772915821,215,0 +170772915869,215,0 +170772915918,215,0 +170772915968,215,0 +170772916017,215,0 +170772916067,215,0 +170772916115,215,0 +170772916163,215,0 +170772916212,215,0 +170772916260,215,0 +170772916308,214,0 +170772916356,215,0 +170772916406,215,0 +170772916455,215,0 +170772916505,215,0 +170772916552,215,0 +170772916600,215,0 +170772916649,215,0 +170772916698,215,0 +170772916746,215,0 +170772916794,215,0 +170772916844,215,0 +170772916892,215,0 +170772916940,215,0 +170772916988,215,0 +170772917037,215,0 +170772917085,214,0 +170772917133,214,0 +170772917181,214,0 +170772917229,214,0 +170772917277,215,0 +170772917325,215,0 +170772917373,215,0 +170772917422,215,0 +170772917472,215,0 +170772917520,215,0 +170772917570,215,0 +170772917619,215,0 +170772917669,215,0 +170772917717,215,0 +170772917766,215,0 +170772917814,215,0 +170772917862,214,0 +170772917910,214,0 +170772917958,214,0 +170772918007,214,0 +170772918057,214,0 +170772918106,214,0 +170772918156,214,0 +170772918204,215,0 +170772918253,215,0 +170772918301,215,0 +170772918349,215,0 +170772918399,215,0 +170772918447,215,0 +170772918496,215,0 +170772918544,215,0 +170772918594,215,0 +170772918643,214,0 +170772918693,214,0 +170772918741,214,0 +170772918788,214,0 +170772918836,214,0 +170772918884,214,0 +170772918934,215,0 +170772918983,214,0 +170772919033,215,0 +170772919081,215,0 +170772919130,215,0 +170772919178,215,0 +170772919226,215,0 +170772919274,215,0 +170772919322,215,0 +170772919372,215,0 +170772919421,215,0 +170772919469,214,0 +170772919519,214,0 +170772919567,214,0 +170772919615,214,0 +170772919662,214,0 +170772919710,214,0 +170772919760,215,0 +170772919809,215,0 +170772919859,215,0 +170772919908,215,0 +170772919956,215,0 +170772920004,215,0 +170772920054,215,0 +170772920102,215,0 +170772920150,215,0 +170772920198,215,0 +170772920246,215,0 +170772920295,213,0 +170772920345,214,0 +170772920393,214,0 +170772920441,214,0 +170772920489,214,0 +170772920538,214,0 +170772920586,214,0 +170772920635,215,0 +170772920683,215,0 +170772920731,215,0 +170772920779,215,0 +170772920827,215,0 +170772920875,215,0 +170772920923,215,0 +170772920973,215,0 +170772921022,215,0 +170772921070,214,0 +170772921118,213,0 +170772921168,214,0 +170772921216,214,0 +170772921265,214,0 +170772921313,214,0 +170772921361,214,0 +170772921409,214,0 +170772921457,214,0 +170772921506,214,0 +170772921556,215,0 +170772921605,215,0 +170772921653,215,0 +170772921703,215,0 +170772921752,215,0 +170772921800,215,0 +170772921848,214,0 +170772921896,214,0 +170772921944,214,0 +170772921992,214,0 +170772922040,214,0 +170772922088,214,0 +170772922137,214,0 +170772922185,215,0 +170772922233,215,0 +170772922283,215,0 +170772922332,215,0 +170772922380,215,0 +170772922428,215,0 +170772922476,215,0 +170772922526,215,0 +170772922573,215,0 +170772922621,215,0 +170772922669,214,0 +170772922717,214,0 +170772922767,214,0 +170772922815,214,0 +170772922864,214,0 +170772922912,215,0 +170772922962,215,0 +170772923011,215,0 +170772923061,215,0 +170772923110,215,0 +170772923158,215,0 +170772923208,215,0 +170772923257,215,0 +170772923305,215,0 +170772923353,214,0 +170772923403,215,0 +170772923451,215,0 +170772923500,214,0 +170772923550,214,0 +170772923599,214,0 +170772923647,214,0 +170772923696,215,0 +170772923746,215,0 +170772923794,214,0 +170772923843,214,0 +170772923891,215,0 +170772923939,215,0 +170772923987,215,0 +170772924037,215,0 +170772924085,215,0 +170772924134,215,0 +170772924182,215,0 +170772924230,215,0 +170772924278,214,0 +170772924328,214,0 +170772924375,214,0 +170772924425,214,0 +170772924473,214,0 +170772924522,214,0 +170772924572,215,0 +170772924621,215,0 +170772924671,215,0 +170772924719,215,0 +170772924767,215,0 +170772924816,215,0 +170772924866,215,0 +170772924914,215,0 +170772924962,215,0 +170772925010,215,0 +170772925058,215,0 +170772925107,214,0 +170772925155,214,0 +170772925205,214,0 +170772925252,214,0 +170772925302,214,0 +170772925351,215,0 +170772925399,215,0 +170772925447,215,0 +170772925495,215,0 +170772925543,215,0 +170772925592,215,0 +170772925642,215,0 +170772925690,215,0 +170772925738,215,0 +170772925787,215,0 +170772925835,215,0 +170772925883,214,0 +170772925933,214,0 +170772925981,214,0 +170772926029,214,0 +170772926077,215,0 +170772926126,214,0 +170772926174,214,0 +170772926222,215,0 +170772926270,215,0 +170772926319,215,0 +170772926369,215,0 +170772926418,215,0 +170772926466,215,0 +170772926514,215,0 +170772926562,215,0 +170772926612,215,0 +170772926661,215,0 +170772926709,214,0 +170772926757,214,0 +170772926806,214,0 +170772926856,214,0 +170772926904,214,0 +170772926952,214,0 +170772927001,214,0 +170772927051,214,0 +170772927100,214,0 +170772927148,215,0 +170772927198,215,0 +170772927247,215,0 +170772927295,215,0 +170772927343,215,0 +170772927391,215,0 +170772927439,215,0 +170772927487,214,0 +170772927535,214,0 +170772927583,214,0 +170772927631,214,0 +170772927679,214,0 +170772927726,214,0 +170772927776,215,0 +170772927824,214,0 +170772927873,215,0 +170772927921,215,0 +170772927969,215,0 +170772928017,215,0 +170772928065,215,0 +170772928113,215,0 +170772928163,215,0 +170772928210,215,0 +170772928258,215,0 +170772928306,214,0 +170772928354,214,0 +170772928402,214,0 +170772928451,214,0 +170772928499,214,0 +170772928549,214,0 +170772928599,214,0 +170772928647,215,0 +170772928694,215,0 +170772928742,215,0 +170772928790,215,0 +170772928840,215,0 +170772928888,215,0 +170772928936,215,0 +170772928984,215,0 +170772929032,215,0 +170772929079,214,0 +170772929129,214,0 +170772929177,214,0 +170772929225,214,0 +170772929272,214,0 +170772929320,214,0 +170772929368,214,0 +170772929416,214,0 +170772929464,215,0 +170772929512,215,0 +170772929561,215,0 +170772929609,215,0 +170772929659,215,0 +170772929706,215,0 +170772929754,215,0 +170772929804,215,0 +170772929852,215,0 +170772929900,214,0 +170772929949,214,0 +170772929999,214,0 +170772930048,214,0 +170772930098,214,0 +170772930146,214,0 +170772930194,214,0 +170772930243,214,0 +170772930291,214,0 +170772930339,215,0 +170772930388,215,0 +170772930436,215,0 +170772930484,215,0 +170772930532,215,0 +170772930580,215,0 +170772930628,215,0 +170772930676,214,0 +170772930724,214,0 +170772930772,214,0 +170772930820,214,0 +170772930870,214,0 +170772930918,214,0 +170772930965,214,0 +170772931013,214,0 +170772931063,214,0 +170772931112,214,0 +170772931162,215,0 +170772931210,215,0 +170772931259,215,0 +170772931309,215,0 +170772931357,215,0 +170772931406,215,0 +170772931456,215,0 +170772931505,214,0 +170772931553,214,0 +170772931603,214,0 +170772931652,214,0 +170772931702,214,0 +170772931750,214,0 +170772931799,215,0 +170772931847,215,0 +170772931897,215,0 +170772931944,215,0 +170772931992,215,0 +170772932040,215,0 +170772932088,215,0 +170772932136,215,0 +170772932184,215,0 +170772932232,215,0 +170772932280,214,0 +170772932328,215,0 +170772932375,214,0 +170772932423,215,0 +170772932473,215,0 +170772932522,215,0 +170772932570,215,0 +170772932618,215,0 +170772932666,215,0 +170772932716,215,0 +170772932766,215,0 +170772932814,215,0 +170772932862,215,0 +170772932910,215,0 +170772932958,215,0 +170772933006,215,0 +170772933053,215,0 +170772933103,215,0 +170772933151,214,0 +170772933201,215,0 +170772933249,214,0 +170772933298,215,0 +170772933348,215,0 +170772933397,215,0 +170772933445,215,0 +170772933493,215,0 +170772933541,215,0 +170772933589,215,0 +170772933638,215,0 +170772933686,215,0 +170772933734,215,0 +170772933782,215,0 +170772933830,215,0 +170772933878,215,0 +170772933926,214,0 +170772933974,215,0 +170772934022,215,0 +170772934071,215,0 +170772934119,215,0 +170772934168,215,0 +170772934216,215,0 +170772934266,215,0 +170772934313,215,0 +170772934363,215,0 +170772934411,215,0 +170772934460,215,0 +170772934508,215,0 +170772934558,215,0 +170772934607,215,0 +170772934655,215,0 +170772934705,214,0 +170772934753,214,0 +170772934802,214,0 +170772934852,214,0 +170772934900,215,0 +170772934949,215,0 +170772934998,215,0 +170772935046,215,0 +170772935096,215,0 +170772935144,215,0 +170772935192,215,0 +170772935241,215,0 +170772935291,215,0 +170772935339,215,0 +170772935388,215,0 +170772935436,215,0 +170772935484,214,0 +170772935532,214,0 +170772935582,214,0 +170772935630,214,0 +170772935679,214,0 +170772935729,214,0 +170772935778,214,0 +170772935828,215,0 +170772935877,215,0 +170772935925,215,0 +170772935973,215,0 +170772936021,215,0 +170772936069,215,0 +170772936117,215,0 +170772936165,215,0 +170772936214,215,0 +170772936264,215,0 +170772936313,214,0 +170772936361,214,0 +170772936409,214,0 +170772936457,214,0 +170772936506,214,0 +170772936554,214,0 +170772936602,215,0 +170772936650,215,0 +170772936698,215,0 +170772936746,215,0 +170772936794,215,0 +170772936842,215,0 +170772936889,215,0 +170772936939,215,0 +170772936987,215,0 +170772937036,215,0 +170772937084,215,0 +170772937132,214,0 +170772937180,214,0 +170772937229,214,0 +170772937279,214,0 +170772937327,214,0 +170772937375,214,0 +170772937422,215,0 +170772937470,215,0 +170772937518,215,0 +170772937566,215,0 +170772937614,215,0 +170772937662,215,0 +170772937710,215,0 +170772937758,215,0 +170772937806,215,0 +170772937855,215,0 +170772937903,214,0 +170772937953,214,0 +170772938002,214,0 +170772938050,214,0 +170772938099,214,0 +170772938147,214,0 +170772938197,215,0 +170772938245,215,0 +170772938294,215,0 +170772938342,215,0 +170772938392,215,0 +170772938441,215,0 +170772938491,215,0 +170772938538,215,0 +170772938588,215,0 +170772938636,215,0 +170772938685,214,0 +170772938735,214,0 +170772938783,214,0 +170772938831,214,0 +170772938878,214,0 +170772938926,214,0 +170772938976,215,0 +170772939024,215,0 +170772939072,214,0 +170772939120,215,0 +170772939168,215,0 +170772939216,215,0 +170772939265,215,0 +170772939314,215,0 +170772939362,215,0 +170772939412,215,0 +170772939462,215,0 +170772939509,214,0 +170772939557,214,0 +170772939607,214,0 +170772939656,214,0 +170772939704,214,0 +170772939754,214,0 +170772939802,214,0 +170772939851,214,0 +170772939901,214,0 +170772939949,215,0 +170772939997,215,0 +170772940045,215,0 +170772940094,215,0 +170772940142,215,0 +170772940190,215,0 +170772940240,215,0 +170772940289,215,0 +170772940337,214,0 +170772940387,214,0 +170772940436,214,0 +170772940486,214,0 +170772940533,214,0 +170772940581,214,0 +170772940629,215,0 +170772940677,215,0 +170772940727,215,0 +170772940775,215,0 +170772940823,215,0 +170772940871,215,0 +170772940919,215,0 +170772940966,215,0 +170772941014,215,0 +170772941064,215,0 +170772941112,214,0 +170772941160,214,0 +170772941209,214,0 +170772941259,214,0 +170772941308,214,0 +170772941356,215,0 +170772941404,215,0 +170772941452,215,0 +170772941500,215,0 +170772941548,215,0 +170772941596,215,0 +170772941645,215,0 +170772941695,215,0 +170772941744,215,0 +170772941792,215,0 +170772941842,215,0 +170772941890,215,0 +170772941938,214,0 +170772941986,214,0 +170772942033,214,0 +170772942081,214,0 +170772942131,214,0 +170772942179,214,0 +170772942227,214,0 +170772942276,215,0 +170772942324,214,0 +170772942374,215,0 +170772942423,215,0 +170772942471,215,0 +170772942521,215,0 +170772942569,215,0 +170772942617,215,0 +170772942666,215,0 +170772942716,214,0 +170772942764,214,0 +170772942812,214,0 +170772942860,214,0 +170772942908,215,0 +170772942955,215,0 +170772943003,215,0 +170772943051,215,0 +170772943101,215,0 +170772943149,215,0 +170772943197,215,0 +170772943245,215,0 +170772943293,215,0 +170772943342,215,0 +170772943390,215,0 +170772943438,215,0 +170772943486,215,0 +170772943534,214,0 +170772943582,214,0 +170772943629,214,0 +170772943677,215,0 +170772943725,215,0 +170772943773,215,0 +170772943822,215,0 +170772943870,215,0 +170772943918,215,0 +170772943966,215,0 +170772944014,215,0 +170772944062,215,0 +170772944110,215,0 +170772944157,215,0 +170772944207,215,0 +170772944255,215,0 +170772944303,214,0 +170772944351,214,0 +170772944400,214,0 +170772944449,214,0 +170772944497,215,0 +170772944545,215,0 +170772944595,215,0 +170772944644,215,0 +170772944694,215,0 +170772944742,215,0 +170772944790,215,0 +170772944839,215,0 +170772944887,215,0 +170772944935,215,0 +170772944983,215,0 +170772945033,215,0 +170772945080,215,0 +170772945128,214,0 +170772945176,214,0 +170772945224,214,0 +170772945274,214,0 +170772945323,214,0 +170772945371,214,0 +170772945421,214,0 +170772945469,214,0 +170772945517,214,0 +170772945566,214,0 +170772945614,216,0 +170772945662,215,0 +170772945711,215,0 +170772945759,215,0 +170772945809,215,0 +170772945858,215,0 +170772945906,215,0 +170772945954,214,0 +170772946002,214,0 +170772946050,214,0 +170772946098,214,0 +170772946147,214,0 +170772946195,214,0 +170772946243,214,0 +170772946291,215,0 +170772946339,215,0 +170772946388,215,0 +170772946436,215,0 +170772946485,215,0 +170772946533,215,0 +170772946581,215,0 +170772946629,215,0 +170772946679,215,0 +170772946728,214,0 +170772946777,214,0 +170772946825,214,0 +170772946874,214,0 +170772946922,214,0 +170772946971,214,0 +170772947019,214,0 +170772947067,215,0 +170772947115,215,0 +170772947163,214,0 +170772947211,215,0 +170772947259,215,0 +170772947309,215,0 +170772947357,215,0 +170772947405,215,0 +170772947452,215,0 +170772947502,215,0 +170772947551,214,0 +170772947599,214,0 +170772947647,214,0 +170772947697,214,0 +170772947746,214,0 +170772947796,214,0 +170772947844,214,0 +170772947891,214,0 +170772947939,214,0 +170772947987,215,0 +170772948035,215,0 +170772948083,215,0 +170772948133,215,0 +170772948182,215,0 +170772948230,215,0 +170772948280,215,0 +170772948329,214,0 +170772948379,214,0 +170772948428,214,0 +170772948476,214,0 +170772948525,214,0 +170772948573,214,0 +170772948621,214,0 +170772948669,214,0 +170772948717,215,0 +170772948765,215,0 +170772948813,215,0 +170772948861,215,0 +170772948910,215,0 +170772948958,215,0 +170772949006,215,0 +170772949056,215,0 +170772949103,215,0 +170772949153,214,0 +170772949201,214,0 +170772949249,214,0 +170772949297,214,0 +170772949345,215,0 +170772949394,215,0 +170772949442,215,0 +170772949490,215,0 +170772949538,215,0 +170772949586,215,0 +170772949633,215,0 +170772949681,215,0 +170772949731,215,0 +170772949779,215,0 +170772949828,215,0 +170772949876,215,0 +170772949925,214,0 +170772949973,214,0 +170772950021,215,0 +170772950070,214,0 +170772950118,214,0 +170772950166,215,0 +170772950214,215,0 +170772950262,215,0 +170772950310,215,0 +170772950357,215,0 +170772950407,215,0 +170772950455,215,0 +170772950503,215,0 +170772950551,215,0 +170772950600,216,0 +170772950650,215,0 +170772950699,215,0 +170772950747,214,0 +170772950795,214,0 +170772950843,214,0 +170772950891,214,0 +170772950941,214,0 +170772950988,214,0 +170772951036,215,0 +170772951084,215,0 +170772951132,215,0 +170772951180,215,0 +170772951228,215,0 +170772951275,215,0 +170772951323,215,0 +170772951371,215,0 +170772951419,215,0 +170772951468,215,0 +170772951516,215,0 +170772951566,214,0 +170772951614,214,0 +170772951663,214,0 +170772951711,214,0 +170772951760,215,0 +170772951810,215,0 +170772951859,215,0 +170772951907,215,0 +170772951955,215,0 +170772952005,215,0 +170772952054,215,0 +170772952103,215,0 +170772952151,215,0 +170772952201,215,0 +170772952249,215,0 +170772952298,215,0 +170772952348,214,0 +170772952396,215,0 +170772952443,215,0 +170772952493,215,0 +170772952541,215,0 +170772952589,215,0 +170772952636,215,0 +170772952686,215,0 +170772952734,215,0 +170772952783,215,0 +170772952831,215,0 +170772952881,215,0 +170772952928,215,0 +170772952978,215,0 +170772953027,215,0 +170772953075,215,0 +170772953123,215,0 +170772953171,215,0 +170772953220,215,0 +170772953268,215,0 +170772953318,215,0 +170772953365,215,0 +170772953415,215,0 +170772953463,216,0 +170772953512,215,0 +170772953560,215,0 +170772953610,215,0 +170772953658,215,0 +170772953706,215,0 +170772953754,215,0 +170772953802,215,0 +170772953849,215,0 +170772953897,215,0 +170772953945,214,0 +170772953993,215,0 +170772954041,214,0 +170772954089,215,0 +170772954137,215,0 +170772954185,215,0 +170772954233,215,0 +170772954280,215,0 +170772954328,215,0 +170772954378,215,0 +170772954426,215,0 +170772954474,215,0 +170772954522,215,0 +170772954570,215,0 +170772954617,215,0 +170772954665,215,0 +170772954713,215,0 +170772954761,214,0 +170772954811,214,0 +170772954860,214,0 +170772954908,214,0 +170772954956,215,0 +170772955004,214,0 +170772955052,215,0 +170772955099,215,0 +170772955147,214,0 +170772955195,215,0 +170772955243,215,0 +170772955293,215,0 +170772955340,215,0 +170772955390,215,0 +170772955438,215,0 +170772955486,215,0 +170772955535,214,0 +170772955583,214,0 +170772955631,214,0 +170772955681,214,0 +170772955730,214,0 +170772955778,214,0 +170772955826,214,0 +170772955874,215,0 +170772955922,214,0 +170772955969,215,0 +170772956017,215,0 +170772956065,215,0 +170772956113,215,0 +170772956161,215,0 +170772956209,215,0 +170772956257,215,0 +170772956304,215,0 +170772956352,214,0 +170772956400,214,0 +170772956448,214,0 +170772956496,214,0 +170772956544,214,0 +170772956592,214,0 +170772956640,214,0 +170772956687,214,0 +170772956735,214,0 +170772956783,215,0 +170772956831,215,0 +170772956879,215,0 +170772956927,215,0 +170772956975,215,0 +170772957023,215,0 +170772957072,215,0 +170772957120,215,0 +170772957168,213,0 +170772957218,213,0 +170772957266,214,0 +170772957314,214,0 +170772957363,214,0 +170772957413,214,0 +170772957462,214,0 +170772957510,214,0 +170772957560,214,0 +170772957608,214,0 +170772957657,215,0 +170772957705,215,0 +170772957753,215,0 +170772957801,215,0 +170772957849,215,0 +170772957897,215,0 +170772957945,214,0 +170772957993,214,0 +170772958041,214,0 +170772958089,214,0 +170772958137,214,0 +170772958185,214,0 +170772958234,214,0 +170772958282,214,0 +170772958330,214,0 +170772958378,214,0 +170772958426,215,0 +170772958474,215,0 +170772958522,215,0 +170772958572,215,0 +170772958620,215,0 +170772958669,215,0 +170772958717,215,0 +170772958765,214,0 +170772958815,213,0 +170772958864,214,0 +170772958914,214,0 +170772958962,214,0 +170772959010,214,0 +170772959059,214,0 +170772959107,214,0 +170772959157,214,0 +170772959204,214,0 +170772959252,214,0 +170772959300,214,0 +170772959350,214,0 +170772959398,215,0 +170772959446,214,0 +170772959494,215,0 +170772959541,215,0 +170772959591,213,0 +170772959640,213,0 +170772959690,214,0 +170772959738,214,0 +170772959786,214,0 +170772959835,214,0 +170772959883,214,0 +170772959931,214,0 +170772959981,214,0 +170772960030,214,0 +170772960078,215,0 +170772960126,215,0 +170772960174,215,0 +170772960223,215,0 +170772960271,215,0 +170772960321,215,0 +170772960368,214,0 +170772960416,214,0 +170772960466,214,0 +170772960514,214,0 +170772960562,214,0 +170772960610,214,0 +170772960657,214,0 +170772960705,214,0 +170772960755,215,0 +170772960803,215,0 +170772960851,215,0 +170772960898,215,0 +170772960946,215,0 +170772960996,215,0 +170772961044,215,0 +170772961092,215,0 +170772961141,215,0 +170772961191,214,0 +170772961240,214,0 +170772961290,214,0 +170772961339,215,0 +170772961387,215,0 +170772961436,215,0 +170772961484,215,0 +170772961532,215,0 +170772961580,215,0 +170772961628,215,0 +170772961677,215,0 +170772961725,215,0 +170772961773,215,0 +170772961821,215,0 +170772961871,215,0 +170772961919,215,0 +170772961967,214,0 +170772962016,214,0 +170772962064,215,0 +170772962112,215,0 +170772962161,215,0 +170772962211,215,0 +170772962259,215,0 +170772962308,215,0 +170772962356,215,0 +170772962406,215,0 +170772962454,215,0 +170772962502,215,0 +170772962550,215,0 +170772962599,215,0 +170772962647,215,0 +170772962695,215,0 +170772962745,215,0 +170772962792,215,0 +170772962840,215,0 +170772962888,215,0 +170772962938,215,0 +170772962987,215,0 +170772963035,215,0 +170772963083,215,0 +170772963133,215,0 +170772963180,215,0 +170772963230,215,0 +170772963278,215,0 +170772963326,215,0 +170772963375,215,0 +170772963423,215,0 +170772963473,215,0 +170772963522,215,0 +170772963572,214,0 +170772963621,214,0 +170772963669,214,0 +170772963717,215,0 +170772963767,215,0 +170772963815,215,0 +170772963864,215,0 +170772963912,215,0 +170772963960,215,0 +170772964008,215,0 +170772964058,215,0 +170772964106,215,0 +170772964154,215,0 +170772964202,215,0 +170772964251,215,0 +170772964299,215,0 +170772964349,215,0 +170772964397,214,0 +170772964446,214,0 +170772964496,215,0 +170772964543,215,0 +170772964591,215,0 +170772964639,215,0 +170772964689,215,0 +170772964738,215,0 +170772964786,216,0 +170772964834,215,0 +170772964884,215,0 +170772964932,215,0 +170772964980,215,0 +170772965029,215,0 +170772965079,215,0 +170772965126,215,0 +170772965174,215,0 +170772965222,214,0 +170772965270,215,0 +170772965318,215,0 +170772965366,215,0 +170772965414,215,0 +170772965462,215,0 +170772965510,215,0 +170772965558,215,0 +170772965605,215,0 +170772965653,215,0 +170772965703,215,0 +170772965751,215,0 +170772965798,215,0 +170772965847,215,0 +170772965895,215,0 +170772965942,215,0 +170772965990,215,0 +170772966038,214,0 +170772966086,215,0 +170772966134,215,0 +170772966183,215,0 +170772966233,215,0 +170772966280,215,0 +170772966328,215,0 +170772966376,215,0 +170772966424,215,0 +170772966472,215,0 +170772966520,215,0 +170772966569,215,0 +170772966617,215,0 +170772966665,215,0 +170772966713,215,0 +170772966761,215,0 +170772966811,214,0 +170772966860,214,0 +170772966908,214,0 +170772966956,214,0 +170772967005,215,0 +170772967055,214,0 +170772967104,215,0 +170772967154,215,0 +170772967202,215,0 +170772967251,215,0 +170772967299,215,0 +170772967347,215,0 +170772967395,215,0 +170772967443,215,0 +170772967493,215,0 +170772967541,215,0 +170772967589,215,0 +170772967636,214,0 +170772967686,214,0 +170772967734,214,0 +170772967782,214,0 +170772967830,214,0 +170772967878,214,0 +170772967926,214,0 +170772967974,215,0 +170772968022,215,0 +170772968070,215,0 +170772968118,215,0 +170772968167,215,0 +170772968217,215,0 +170772968265,215,0 +170772968314,215,0 +170772968362,215,0 +170772968410,214,0 +170772968460,214,0 +170772968509,214,0 +170772968557,214,0 +170772968605,214,0 +170772968653,214,0 +170772968701,214,0 +170772968749,214,0 +170772968797,215,0 +170772968844,215,0 +170772968894,215,0 +170772968942,215,0 +170772968991,215,0 +170772969039,215,0 +170772969087,215,0 +170772969135,215,0 +170772969183,215,0 +170772969230,213,0 +170772969278,214,0 +170772969326,214,0 +170772969374,214,0 +170772969422,214,0 +170772969470,214,0 +170772969518,214,0 +170772969565,214,0 +170772969613,214,0 +170772969661,215,0 +170772969709,215,0 +170772969757,215,0 +170772969805,215,0 +170772969853,215,0 +170772969901,215,0 +170772969949,215,0 +170772969996,214,0 +170772970044,214,0 +170772970092,214,0 +170772970142,214,0 +170772970191,214,0 +170772970239,214,0 +170772970287,214,0 +170772970336,214,0 +170772970384,215,0 +170772970433,214,0 +170772970481,215,0 +170772970531,215,0 +170772970579,215,0 +170772970627,215,0 +170772970676,215,0 +170772970724,215,0 +170772970772,215,0 +170772970820,214,0 +170772970867,214,0 +170772970915,214,0 +170772970963,214,0 +170772971013,214,0 +170772971061,214,0 +170772971108,214,0 +170772971158,214,0 +170772971206,214,0 +170772971253,215,0 +170772971301,215,0 +170772971349,214,0 +170772971397,215,0 +170772971445,215,0 +170772971493,215,0 +170772971542,215,0 +170772971590,215,0 +170772971638,214,0 +170772971686,214,0 +170772971735,214,0 +170772971783,214,0 +170772971831,214,0 +170772971879,214,0 +170772971927,214,0 +170772971976,215,0 +170772972024,215,0 +170772972072,215,0 +170772972120,215,0 +170772972168,215,0 +170772972216,215,0 +170772972264,215,0 +170772972311,215,0 +170772972359,215,0 +170772972407,214,0 +170772972455,214,0 +170772972503,214,0 +170772972551,214,0 +170772972599,214,0 +170772972646,214,0 +170772972694,215,0 +170772972742,215,0 +170772972790,215,0 +170772972838,215,0 +170772972886,215,0 +170772972934,215,0 +170772972982,215,0 +170772973030,215,0 +170772973077,215,0 +170772973125,215,0 +170772973173,216,0 +170772973223,214,0 +170772973270,214,0 +170772973318,214,0 +170772973366,214,0 +170772973416,214,0 +170772973464,214,0 +170772973513,214,0 +170772973563,215,0 +170772973612,215,0 +170772973660,215,0 +170772973708,215,0 +170772973758,215,0 +170772973806,215,0 +170772973855,215,0 +170772973903,215,0 +170772973951,215,0 +170772974001,215,0 +170772974049,214,0 +170772974096,214,0 +170772974144,214,0 +170772974192,214,0 +170772974240,214,0 +170772974288,214,0 +170772974336,215,0 +170772974385,215,0 +170772974435,215,0 +170772974484,215,0 +170772974534,215,0 +170772974583,215,0 +170772974631,215,0 +170772974679,215,0 +170772974727,215,0 +170772974775,215,0 +170772974824,214,0 +170772974874,214,0 +170772974922,214,0 +170772974971,214,0 +170772975019,215,0 +170772975067,215,0 +170772975117,215,0 +170772975165,215,0 +170772975214,215,0 +170772975262,215,0 +170772975310,215,0 +170772975359,215,0 +170772975409,215,0 +170772975457,215,0 +170772975505,215,0 +170772975554,215,0 +170772975602,214,0 +170772975650,214,0 +170772975698,214,0 +170772975748,214,0 +170772975796,214,0 +170772975844,215,0 +170772975893,214,0 +170772975943,215,0 +170772975992,215,0 +170772976040,215,0 +170772976088,215,0 +170772976136,215,0 +170772976184,215,0 +170772976233,215,0 +170772976281,215,0 +170772976331,215,0 +170772976379,215,0 +170772976427,214,0 +170772976475,214,0 +170772976522,214,0 +170772976570,214,0 +170772976618,214,0 +170772976666,214,0 +170772976716,215,0 +170772976764,215,0 +170772976813,215,0 +170772976863,215,0 +170772976912,215,0 +170772976962,215,0 +170772977010,215,0 +170772977059,215,0 +170772977109,215,0 +170772977157,215,0 +170772977207,215,0 +170772977254,214,0 +170772977304,215,0 +170772977354,214,0 +170772977401,215,0 +170772977449,215,0 +170772977499,215,0 +170772977548,215,0 +170772977596,215,0 +170772977644,215,0 +170772977692,216,0 +170772977742,215,0 +170772977790,215,0 +170772977837,215,0 +170772977885,215,0 +170772977933,215,0 +170772977981,215,0 +170772978029,214,0 +170772978078,215,0 +170772978126,215,0 +170772978175,215,0 +170772978223,215,0 +170772978273,215,0 +170772978322,215,0 +170772978370,215,0 +170772978420,215,0 +170772978468,215,0 +170772978516,215,0 +170772978565,215,0 +170772978615,215,0 +170772978664,216,0 +170772978712,215,0 +170772978762,215,0 +170772978811,214,0 +170772978859,214,0 +170772978907,214,0 +170772978955,214,0 +170772979005,214,0 +170772979054,214,0 +170772979102,214,0 +170772979150,215,0 +170772979199,215,0 +170772979247,215,0 +170772979295,215,0 +170772979345,215,0 +170772979394,215,0 +170772979442,215,0 +170772979492,215,0 +170772979539,215,0 +170772979587,215,0 +170772979635,214,0 +170772979683,214,0 +170772979731,214,0 +170772979779,214,0 +170772979827,214,0 +170772979877,214,0 +170772979926,214,0 +170772979974,215,0 +170772980022,215,0 +170772980072,215,0 +170772980121,215,0 +170772980171,215,0 +170772980218,215,0 +170772980268,215,0 +170772980317,215,0 +170772980367,215,0 +170772980415,214,0 +170772980464,214,0 +170772980512,214,0 +170772980562,214,0 +170772980610,214,0 +170772980659,214,0 +170772980707,214,0 +170772980755,215,0 +170772980803,215,0 +170772980851,215,0 +170772980901,215,0 +170772980950,215,0 +170772980999,215,0 +170772981049,215,0 +170772981098,215,0 +170772981146,215,0 +170772981196,215,0 +170772981244,214,0 +170772981293,214,0 +170772981341,215,0 +170772981389,214,0 +170772981437,214,0 +170772981485,215,0 +170772981533,215,0 +170772981581,215,0 +170772981630,215,0 +170772981678,215,0 +170772981727,215,0 +170772981775,215,0 +170772981825,215,0 +170772981873,215,0 +170772981920,215,0 +170772981968,215,0 +170772982016,215,0 +170772982064,215,0 +170772982112,215,0 +170772982159,215,0 +170772982207,215,0 +170772982255,215,0 +170772982303,215,0 +170772982351,215,0 +170772982399,215,0 +170772982447,215,0 +170772982494,215,0 +170772982542,215,0 +170772982590,215,0 +170772982639,215,0 +170772982687,215,0 +170772982735,215,0 +170772982783,215,0 +170772982831,215,0 +170772982879,215,0 +170772982927,214,0 +170772982975,215,0 +170772983022,215,0 +170772983072,215,0 +170772983120,215,0 +170772983169,215,0 +170772983217,215,0 +170772983265,215,0 +170772983313,215,0 +170772983361,215,0 +170772983410,215,0 +170772983458,215,0 +170772983508,215,0 +170772983557,215,0 +170772983607,215,0 +170772983656,214,0 +170772983704,214,0 +170772983752,214,0 +170772983800,214,0 +170772983850,214,0 +170772983899,215,0 +170772983947,215,0 +170772983997,215,0 +170772984046,215,0 +170772984096,215,0 +170772984143,215,0 +170772984191,215,0 +170772984239,215,0 +170772984289,215,0 +170772984337,215,0 +170772984386,215,0 +170772984434,214,0 +170772984484,214,0 +170772984533,214,0 +170772984583,214,0 +170772984632,214,0 +170772984682,214,0 +170772984731,214,0 +170772984779,214,0 +170772984827,214,0 +170772984875,215,0 +170772984923,215,0 +170772984971,215,0 +170772985020,215,0 +170772985068,215,0 +170772985116,215,0 +170772985163,215,0 +170772985211,215,0 +170772985259,214,0 +170772985307,214,0 +170772985355,214,0 +170772985403,214,0 +170772985450,214,0 +170772985498,214,0 +170772985546,214,0 +170772985594,214,0 +170772985642,215,0 +170772985690,215,0 +170772985739,215,0 +170772985787,215,0 +170772985835,215,0 +170772985885,215,0 +170772985934,215,0 +170772985983,215,0 +170772986031,214,0 +170772986079,214,0 +170772986127,214,0 +170772986177,214,0 +170772986225,214,0 +170772986273,214,0 +170772986321,215,0 +170772986370,214,0 +170772986418,215,0 +170772986467,215,0 +170772986515,215,0 +170772986563,215,0 +170772986613,215,0 +170772986661,215,0 +170772986709,215,0 +170772986757,215,0 +170772986806,215,0 +170772986854,214,0 +170772986903,214,0 +170772986951,214,0 +170772987001,214,0 +170772987049,214,0 +170772987098,214,0 +170772987146,215,0 +170772987194,214,0 +170772987242,215,0 +170772987290,215,0 +170772987338,215,0 +170772987386,215,0 +170772987435,216,0 +170772987483,215,0 +170772987531,215,0 +170772987581,215,0 +170772987629,214,0 +170772987678,214,0 +170772987728,214,0 +170772987776,214,0 +170772987823,214,0 +170772987873,214,0 +170772987922,214,0 +170772987970,214,0 +170772988018,214,0 +170772988066,215,0 +170772988114,214,0 +170772988162,215,0 +170772988212,215,0 +170772988261,215,0 +170772988311,215,0 +170772988359,215,0 +170772988408,215,0 +170772988456,214,0 +170772988504,214,0 +170772988552,214,0 +170772988600,214,0 +170772988648,214,0 +170772988697,214,0 +170772988745,214,0 +170772988793,215,0 +170772988841,215,0 +170772988890,215,0 +170772988938,215,0 +170772988986,215,0 +170772989034,215,0 +170772989084,215,0 +170772989133,215,0 +170772989181,215,0 +170772989231,215,0 +170772989279,214,0 +170772989328,214,0 +170772989378,214,0 +170772989427,214,0 +170772989475,215,0 +170772989525,215,0 +170772989574,215,0 +170772989622,215,0 +170772989670,215,0 +170772989718,215,0 +170772989766,215,0 +170772989814,215,0 +170772989862,215,0 +170772989910,215,0 +170772989959,215,0 +170772990007,215,0 +170772990055,214,0 +170772990103,214,0 +170772990152,214,0 +170772990200,214,0 +170772990248,214,0 +170772990296,214,0 +170772990344,214,0 +170772990392,214,0 +170772990440,215,0 +170772990488,215,0 +170772990538,215,0 +170772990587,215,0 +170772990635,215,0 +170772990685,215,0 +170772990733,215,0 +170772990781,215,0 +170772990829,215,0 +170772990877,214,0 +170772990925,214,0 +170772990974,215,0 +170772991022,215,0 +170772991070,215,0 +170772991118,215,0 +170772991166,215,0 +170772991214,215,0 +170772991262,215,0 +170772991310,215,0 +170772991358,215,0 +170772991407,215,0 +170772991455,215,0 +170772991503,215,0 +170772991551,215,0 +170772991599,215,0 +170772991648,215,0 +170772991696,214,0 +170772991744,214,0 +170772991792,214,0 +170772991842,215,0 +170772991889,215,0 +170772991939,215,0 +170772991987,215,0 +170772992036,215,0 +170772992084,215,0 +170772992132,215,0 +170772992182,215,0 +170772992230,215,0 +170772992278,216,0 +170772992326,215,0 +170772992375,215,0 +170772992425,215,0 +170772992474,214,0 +170772992522,214,0 +170772992570,214,0 +170772992618,214,0 +170772992668,215,0 +170772992716,215,0 +170772992763,215,0 +170772992811,215,0 +170772992859,215,0 +170772992907,215,0 +170772992956,215,0 +170772993004,215,0 +170772993054,215,0 +170772993102,215,0 +170772993150,215,0 +170772993198,215,0 +170772993247,214,0 +170772993297,214,0 +170772993345,214,0 +170772993394,214,0 +170772993444,214,0 +170772993492,215,0 +170772993540,215,0 +170772993589,215,0 +170772993637,215,0 +170772993687,215,0 +170772993735,215,0 +170772993783,215,0 +170772993831,215,0 +170772993878,215,0 +170772993926,215,0 +170772993974,215,0 +170772994024,215,0 +170772994072,214,0 +170772994120,214,0 +170772994167,214,0 +170772994217,214,0 +170772994265,214,0 +170772994314,214,0 +170772994362,215,0 +170772994410,214,0 +170772994460,215,0 +170772994508,215,0 +170772994557,215,0 +170772994607,215,0 +170772994655,215,0 +170772994704,215,0 +170772994754,215,0 +170772994802,215,0 +170772994851,214,0 +170772994899,214,0 +170772994947,214,0 +170772994995,214,0 +170772995043,214,0 +170772995091,214,0 +170772995140,214,0 +170772995190,214,0 +170772995239,214,0 +170772995289,214,0 +170772995337,215,0 +170772995386,215,0 +170772995434,215,0 +170772995482,215,0 +170772995530,215,0 +170772995580,215,0 +170772995627,215,0 +170772995675,214,0 +170772995723,214,0 +170772995771,214,0 +170772995819,214,0 +170772995866,214,0 +170772995914,214,0 +170772995962,214,0 +170772996010,214,0 +170772996058,214,0 +170772996106,214,0 +170772996154,214,0 +170772996203,215,0 +170772996251,214,0 +170772996301,215,0 +170772996348,215,0 +170772996396,215,0 +170772996444,215,0 +170772996492,214,0 +170772996540,214,0 +170772996588,214,0 +170772996636,214,0 +170772996684,214,0 +170772996731,214,0 +170772996779,214,0 +170772996829,214,0 +170772996877,214,0 +170772996925,215,0 +170772996973,215,0 +170772997022,215,0 +170772997070,215,0 +170772997118,215,0 +170772997167,215,0 +170772997217,215,0 +170772997265,214,0 +170772997313,213,0 +170772997361,214,0 +170772997409,214,0 +170772997458,214,0 +170772997508,214,0 +170772997557,214,0 +170772997607,214,0 +170772997655,214,0 +170772997703,214,0 +170772997752,215,0 +170772997802,215,0 +170772997851,215,0 +170772997901,215,0 +170772997949,215,0 +170772997999,215,0 +170772998048,215,0 +170772998098,214,0 +170772998147,214,0 +170772998197,214,0 +170772998245,214,0 +170772998294,215,0 +170772998342,215,0 +170772998390,214,0 +170772998438,215,0 +170772998486,215,0 +170772998534,215,0 +170772998582,215,0 +170772998630,215,0 +170772998678,215,0 +170772998726,215,0 +170772998774,215,0 +170772998822,215,0 +170772998870,214,0 +170772998919,214,0 +170772998967,214,0 +170772999015,214,0 +170772999063,214,0 +170772999111,214,0 +170772999159,214,0 +170772999207,214,0 +170772999255,215,0 +170772999304,215,0 +170772999354,215,0 +170772999401,215,0 +170772999449,215,0 +170772999497,215,0 +170772999547,215,0 +170772999596,215,0 +170772999646,215,0 +170772999694,214,0 +170772999742,214,0 +170772999789,215,0 +170772999839,215,0 +170772999888,215,0 +170772999936,215,0 +170772999984,215,0 +170773000032,215,0 +170773000082,215,0 +170773000131,215,0 +170773000181,215,0 +170773000230,215,0 +170773000278,215,0 +170773000326,215,0 +170773000374,215,0 +170773000423,215,0 +170773000471,215,0 +170773000519,214,0 +170773000567,214,0 +170773000616,215,0 +170773000666,215,0 +170773000715,215,0 +170773000765,215,0 +170773000814,215,0 +170773000862,215,0 +170773000910,215,0 +170773000960,215,0 +170773001008,215,0 +170773001056,215,0 +170773001103,215,0 +170773001153,215,0 +170773001201,215,0 +170773001250,215,0 +170773001298,214,0 +170773001346,214,0 +170773001394,214,0 +170773001442,214,0 +170773001491,215,0 +170773001539,215,0 +170773001587,215,0 +170773001635,215,0 +170773001683,215,0 +170773001731,215,0 +170773001779,215,0 +170773001827,215,0 +170773001874,217,0 +170773001922,215,0 +170773001972,215,0 +170773002020,215,0 +170773002068,215,0 +170773002116,215,0 +170773002165,215,0 +170773002215,215,0 +170773002264,215,0 +170773002312,215,0 +170773002360,215,0 +170773002408,215,0 +170773002457,215,0 +170773002505,215,0 +170773002553,216,0 +170773002601,215,0 +170773002649,215,0 +170773002697,215,0 +170773002746,215,0 +170773002794,215,0 +170773002842,215,0 +170773002892,214,0 +170773002941,215,0 +170773002989,215,0 +170773003039,215,0 +170773003086,215,0 +170773003136,215,0 +170773003184,215,0 +170773003232,215,0 +170773003281,215,0 +170773003329,215,0 +170773003379,215,0 +170773003428,215,0 +170773003476,215,0 +170773003526,215,0 +170773003574,215,0 +170773003623,215,0 +170773003671,215,0 +170773003719,214,0 +170773003767,214,0 +170773003815,214,0 +170773003863,214,0 +170773003911,214,0 +170773003959,215,0 +170773004006,215,0 +170773004056,215,0 +170773004104,215,0 +170773004152,215,0 +170773004199,215,0 +170773004249,215,0 +170773004299,215,0 +170773004348,215,0 +170773004397,215,0 +170773004445,215,0 +170773004493,214,0 +170773004541,214,0 +170773004589,214,0 +170773004637,214,0 +170773004685,214,0 +170773004734,214,0 +170773004782,214,0 +170773004830,214,0 +170773004878,215,0 +170773004926,215,0 +170773004974,215,0 +170773005024,215,0 +170773005071,215,0 +170773005119,215,0 +170773005167,215,0 +170773005215,215,0 +170773005263,215,0 +170773005311,214,0 +170773005359,214,0 +170773005407,214,0 +170773005454,214,0 +170773005504,214,0 +170773005553,214,0 +170773005603,215,0 +170773005651,215,0 +170773005699,215,0 +170773005747,215,0 +170773005794,215,0 +170773005844,215,0 +170773005892,216,0 +170773005941,216,0 +170773005989,215,0 +170773006037,215,0 +170773006085,214,0 +170773006134,214,0 +170773006182,214,0 +170773006230,214,0 +170773006278,214,0 +170773006326,214,0 +170773006374,214,0 +170773006423,214,0 +170773006471,214,0 +170773006519,214,0 +170773006569,214,0 +170773006616,215,0 +170773006664,215,0 +170773006714,215,0 +170773006763,215,0 +170773006811,215,0 +170773006861,215,0 +170773006909,214,0 +170773006956,213,0 +170773007004,213,0 +170773007054,214,0 +170773007103,214,0 +170773007153,214,0 +170773007202,214,0 +170773007250,214,0 +170773007298,214,0 +170773007346,215,0 +170773007394,215,0 +170773007443,215,0 +170773007491,215,0 +170773007540,215,0 +170773007588,215,0 +170773007636,215,0 +170773007684,215,0 +170773007732,213,0 +170773007781,213,0 +170773007829,213,0 +170773007877,213,0 +170773007925,214,0 +170773007974,214,0 +170773008022,214,0 +170773008070,214,0 +170773008118,214,0 +170773008166,214,0 +170773008215,214,0 +170773008265,215,0 +170773008313,215,0 +170773008361,215,0 +170773008409,215,0 +170773008456,215,0 +170773008504,214,0 +170773008552,214,0 +170773008602,213,0 +170773008651,214,0 +170773008701,214,0 +170773008750,214,0 +170773008798,214,0 +170773008846,214,0 +170773008894,214,0 +170773008942,214,0 +170773008990,214,0 +170773009037,214,0 +170773009085,215,0 +170773009133,215,0 +170773009181,215,0 +170773009229,215,0 +170773009279,215,0 +170773009328,214,0 +170773009377,214,0 +170773009425,214,0 +170773009473,214,0 +170773009521,214,0 +170773009571,214,0 +170773009620,214,0 +170773009670,214,0 +170773009717,214,0 +170773009767,215,0 +170773009815,215,0 +170773009864,215,0 +170773009912,215,0 +170773009960,215,0 +170773010009,215,0 +170773010059,215,0 +170773010107,214,0 +170773010155,214,0 +170773010204,214,0 +170773010252,214,0 +170773010300,214,0 +170773010348,214,0 +170773010396,214,0 +170773010444,215,0 +170773010492,215,0 +170773010540,215,0 +170773010589,215,0 +170773010637,215,0 +170773010685,215,0 +170773010733,215,0 +170773010781,215,0 +170773010829,215,0 +170773010877,215,0 +170773010925,214,0 +170773010974,215,0 +170773011024,215,0 +170773011071,214,0 +170773011121,215,0 +170773011170,215,0 +170773011220,215,0 +170773011268,215,0 +170773011316,215,0 +170773011364,215,0 +170773011412,215,0 +170773011459,215,0 +170773011507,215,0 +170773011555,215,0 +170773011605,215,0 +170773011654,215,0 +170773011704,214,0 +170773011752,214,0 +170773011800,214,0 +170773011847,215,0 +170773011897,215,0 +170773011946,215,0 +170773011994,215,0 +170773012042,215,0 +170773012090,215,0 +170773012139,215,0 +170773012189,215,0 +170773012238,215,0 +170773012288,215,0 +170773012336,215,0 +170773012385,215,0 +170773012433,215,0 +170773012481,215,0 +170773012529,214,0 +170773012577,215,0 +170773012625,214,0 +170773012672,215,0 +170773012720,215,0 +170773012768,215,0 +170773012818,215,0 +170773012867,215,0 +170773012915,215,0 +170773012963,215,0 +170773013011,215,0 +170773013059,215,0 +170773013106,216,0 +170773013154,215,0 +170773013202,215,0 +170773013250,215,0 +170773013300,215,0 +170773013349,215,0 +170773013397,215,0 +170773013445,215,0 +170773013494,215,0 +170773013542,215,0 +170773013590,215,0 +170773013639,215,0 +170773013689,215,0 +170773013737,215,0 +170773013786,216,0 +170773013836,215,0 +170773013884,215,0 +170773013933,215,0 +170773013982,215,0 +170773014032,215,0 +170773014080,215,0 +170773014129,215,0 +170773014177,215,0 +170773014227,215,0 +170773014276,215,0 +170773014326,215,0 +170773014375,215,0 +170773014423,215,0 +170773014471,215,0 +170773014519,215,0 +170773014568,215,0 +170773014616,216,0 +170773014666,215,0 +170773014715,216,0 +170773014763,215,0 +170773014811,215,0 +170773014861,215,0 +170773014908,215,0 +170773014956,214,0 +170773015006,214,0 +170773015054,215,0 +170773015102,215,0 +170773015149,215,0 +170773015197,215,0 +170773015245,215,0 +170773015295,215,0 +170773015344,215,0 +170773015392,215,0 +170773015440,215,0 +170773015488,215,0 +170773015536,215,0 +170773015585,215,0 +170773015635,215,0 +170773015682,215,0 +170773015730,214,0 +170773015778,214,0 +170773015828,214,0 +170773015876,214,0 +170773015923,214,0 +170773015973,214,0 +170773016021,215,0 +170773016069,215,0 +170773016116,215,0 +170773016164,215,0 +170773016212,215,0 +170773016260,215,0 +170773016309,215,0 +170773016359,215,0 +170773016408,215,0 +170773016458,215,0 +170773016507,215,0 +170773016555,214,0 +170773016603,214,0 +170773016651,214,0 +170773016699,214,0 +170773016746,214,0 +170773016796,214,0 +170773016844,214,0 +170773016892,215,0 +170773016941,215,0 +170773016989,215,0 +170773017037,215,0 +170773017085,215,0 +170773017133,215,0 +170773017183,215,0 +170773017231,215,0 +170773017278,215,0 +170773017326,214,0 +170773017376,214,0 +170773017424,214,0 +170773017471,214,0 +170773017519,214,0 +170773017567,214,0 +170773017617,214,0 +170773017665,214,0 +170773017712,214,0 +170773017762,215,0 +170773017811,215,0 +170773017859,215,0 +170773017909,215,0 +170773017957,215,0 +170773018006,215,0 +170773018054,215,0 +170773018104,215,0 +170773018151,214,0 +170773018199,213,0 +170773018247,214,0 +170773018295,214,0 +170773018345,214,0 +170773018394,214,0 +170773018442,214,0 +170773018490,214,0 +170773018538,214,0 +170773018586,215,0 +170773018635,215,0 +170773018683,215,0 +170773018731,215,0 +170773018779,215,0 +170773018827,215,0 +170773018876,215,0 +170773018924,215,0 +170773018972,213,0 +170773019020,214,0 +170773019069,214,0 +170773019117,214,0 +170773019167,214,0 +170773019215,214,0 +170773019263,214,0 +170773019310,214,0 +170773019360,214,0 +170773019408,214,0 +170773019456,215,0 +170773019505,215,0 +170773019555,215,0 +170773019603,215,0 +170773019650,215,0 +170773019698,215,0 +170773019746,214,0 +170773019794,214,0 +170773019844,214,0 +170773019893,214,0 +170773019941,214,0 +170773019991,214,0 +170773020038,215,0 +170773020086,214,0 +170773020134,215,0 +170773020182,215,0 +170773020230,215,0 +170773020279,215,0 +170773020327,215,0 +170773020375,215,0 +170773020425,215,0 +170773020472,215,0 +170773020520,214,0 +170773020568,213,0 +170773020616,214,0 +170773020665,214,0 +170773020713,214,0 +170773020761,214,0 +170773020809,214,0 +170773020858,214,0 +170773020908,214,0 +170773020957,214,0 +170773021007,215,0 +170773021056,215,0 +170773021104,215,0 +170773021154,215,0 +170773021203,215,0 +170773021251,215,0 +170773021299,215,0 +170773021347,214,0 +170773021395,214,0 +170773021444,214,0 +170773021492,214,0 +170773021542,214,0 +170773021590,214,0 +170773021638,215,0 +170773021685,214,0 +170773021735,215,0 +170773021784,215,0 +170773021834,215,0 +170773021883,215,0 +170773021931,215,0 +170773021979,215,0 +170773022029,215,0 +170773022076,215,0 +170773022124,214,0 +170773022172,214,0 +170773022220,214,0 +170773022268,214,0 +170773022317,214,0 +170773022365,214,0 +170773022413,214,0 +170773022463,215,0 +170773022512,215,0 +170773022560,215,0 +170773022608,215,0 +170773022656,215,0 +170773022704,215,0 +170773022752,215,0 +170773022800,215,0 +170773022849,215,0 +170773022897,215,0 +170773022947,214,0 +170773022996,214,0 +170773023044,215,0 +170773023092,215,0 +170773023140,215,0 +170773023188,215,0 +170773023237,215,0 +170773023285,215,0 +170773023333,215,0 +170773023381,215,0 +170773023430,215,0 +170773023480,215,0 +170773023529,215,0 +170773023577,215,0 +170773023627,215,0 +170773023676,215,0 +170773023726,215,0 +170773023774,214,0 +170773023823,214,0 +170773023873,214,0 +170773023922,214,0 +170773023970,214,0 +170773024018,215,0 +170773024066,215,0 +170773024114,215,0 +170773024162,215,0 +170773024211,215,0 +170773024259,215,0 +170773024307,215,0 +170773024355,215,0 +170773024403,215,0 +170773024452,215,0 +170773024502,215,0 +170773024551,214,0 +170773024599,214,0 +170773024647,214,0 +170773024694,214,0 +170773024744,214,0 +170773024792,214,0 +170773024841,214,0 +170773024889,214,0 +170773024937,214,0 +170773024987,214,0 +170773025035,215,0 +170773025083,215,0 +170773025132,215,0 +170773025180,215,0 +170773025229,215,0 +170773025277,216,0 +170773025327,216,0 +170773025375,214,0 +170773025424,214,0 +170773025474,214,0 +170773025523,214,0 +170773025573,214,0 +170773025622,215,0 +170773025672,215,0 +170773025721,215,0 +170773025771,215,0 +170773025819,215,0 +170773025868,215,0 +170773025918,215,0 +170773025967,215,0 +170773026015,215,0 +170773026063,215,0 +170773026111,215,0 +170773026160,214,0 +170773026208,214,0 +170773026256,214,0 +170773026304,214,0 +170773026352,214,0 +170773026400,215,0 +170773026448,215,0 +170773026496,215,0 +170773026545,215,0 +170773026593,215,0 +170773026642,215,0 +170773026690,215,0 +170773026740,215,0 +170773026789,215,0 +170773026837,215,0 +170773026885,215,0 +170773026935,215,0 +170773026984,214,0 +170773027034,214,0 +170773027081,214,0 +170773027129,214,0 +170773027179,214,0 +170773027227,214,0 +170773027275,214,0 +170773027323,215,0 +170773027370,215,0 +170773027418,215,0 +170773027466,215,0 +170773027514,215,0 +170773027562,215,0 +170773027610,215,0 +170773027658,215,0 +170773027706,215,0 +170773027753,214,0 +170773027801,213,0 +170773027849,214,0 +170773027897,214,0 +170773027945,214,0 +170773027993,214,0 +170773028041,214,0 +170773028088,214,0 +170773028136,215,0 +170773028184,215,0 +170773028232,215,0 +170773028281,215,0 +170773028329,215,0 +170773028377,215,0 +170773028425,215,0 +170773028473,215,0 +170773028520,215,0 +170773028568,213,0 +170773028616,213,0 +170773028664,214,0 +170773028712,214,0 +170773028760,214,0 +170773028809,214,0 +170773028857,214,0 +170773028907,214,0 +170773028955,214,0 +170773029004,214,0 +170773029052,215,0 +170773029100,215,0 +170773029148,215,0 +170773029196,215,0 +170773029244,215,0 +170773029291,215,0 +170773029339,214,0 +170773029389,214,0 +170773029438,214,0 +170773029486,214,0 +170773029536,214,0 +170773029585,214,0 +170773029633,214,0 +170773029680,215,0 +170773029728,215,0 +170773029776,215,0 +170773029824,215,0 +170773029871,215,0 +170773029919,215,0 +170773029967,215,0 +170773030015,215,0 +170773030063,215,0 +170773030110,215,0 +170773030158,215,0 +170773030206,215,0 +170773030254,215,0 +170773030302,215,0 +170773030351,215,0 +170773030399,215,0 +170773030447,215,0 +170773030497,215,0 +170773030545,215,0 +170773030594,215,0 +170773030642,215,0 +170773030691,215,0 +170773030739,215,0 +170773030787,215,0 +170773030835,215,0 +170773030883,215,0 +170773030931,215,0 +170773030979,215,0 +170773031027,215,0 +170773031076,215,0 +170773031124,215,0 +170773031172,215,0 +170773031220,215,0 +170773031268,215,0 +170773031317,215,0 +170773031367,215,0 +170773031416,215,0 +170773031464,215,0 +170773031512,215,0 +170773031562,215,0 +170773031609,215,0 +170773031657,215,0 +170773031705,215,0 +170773031753,214,0 +170773031803,215,0 +170773031850,215,0 +170773031900,215,0 +170773031948,215,0 +170773031996,215,0 +170773032043,215,0 +170773032091,215,0 +170773032139,215,0 +170773032187,215,0 +170773032235,215,0 +170773032283,215,0 +170773032330,215,0 +170773032378,215,0 +170773032426,215,0 +170773032474,215,0 +170773032523,215,0 +170773032571,214,0 +170773032619,214,0 +170773032669,215,0 +170773032717,214,0 +170773032766,215,0 +170773032815,215,0 +170773032865,215,0 +170773032913,215,0 +170773032961,215,0 +170773033008,215,0 +170773033056,215,0 +170773033106,215,0 +170773033154,215,0 +170773033202,215,0 +170773033249,215,0 +170773033297,215,0 +170773033345,214,0 +170773033393,214,0 +170773033443,214,0 +170773033490,214,0 +170773033538,214,0 +170773033586,214,0 +170773033636,214,0 +170773033684,214,0 +170773033731,215,0 +170773033781,215,0 +170773033829,215,0 +170773033877,215,0 +170773033926,215,0 +170773033974,215,0 +170773034022,215,0 +170773034070,215,0 +170773034118,215,0 +170773034167,213,0 +170773034215,214,0 +170773034265,214,0 +170773034312,214,0 +170773034360,214,0 +170773034408,214,0 +170773034456,214,0 +170773034504,214,0 +170773034552,214,0 +170773034601,215,0 +170773034651,215,0 +170773034699,215,0 +170773034747,215,0 +170773034795,215,0 +170773034842,215,0 +170773034890,215,0 +170773034938,215,0 +170773034986,214,0 +170773035034,214,0 +170773035082,214,0 +170773035129,214,0 +170773035177,214,0 +170773035225,214,0 +170773035273,215,0 +170773035321,215,0 +170773035370,215,0 +170773035418,215,0 +170773035466,215,0 +170773035514,215,0 +170773035561,215,0 +170773035609,215,0 +170773035657,215,0 +170773035705,215,0 +170773035753,215,0 +170773035800,214,0 +170773035848,214,0 +170773035896,214,0 +170773035944,214,0 +170773035993,214,0 +170773036041,215,0 +170773036091,215,0 +170773036138,215,0 +170773036186,215,0 +170773036234,215,0 +170773036283,215,0 +170773036331,215,0 +170773036379,215,0 +170773036427,215,0 +170773036475,215,0 +170773036523,215,0 +170773036571,214,0 +170773036620,214,0 +170773036670,214,0 +170773036717,214,0 +170773036767,214,0 +170773036816,215,0 +170773036866,215,0 +170773036914,215,0 +170773036963,215,0 +170773037011,215,0 +170773037059,215,0 +170773037107,215,0 +170773037155,215,0 +170773037203,215,0 +170773037253,215,0 +170773037301,215,0 +170773037348,215,0 +170773037398,214,0 +170773037446,214,0 +170773037494,214,0 +170773037542,214,0 +170773037590,214,0 +170773037639,214,0 +170773037687,214,0 +170773037736,215,0 +170773037784,215,0 +170773037834,215,0 +170773037883,215,0 +170773037931,215,0 +170773037980,215,0 +170773038028,215,0 +170773038078,215,0 +170773038127,215,0 +170773038175,214,0 +170773038223,214,0 +170773038271,214,0 +170773038321,214,0 +170773038369,214,0 +170773038418,214,0 +170773038466,215,0 +170773038514,215,0 +170773038562,215,0 +170773038609,215,0 +170773038657,215,0 +170773038705,215,0 +170773038755,215,0 +170773038804,215,0 +170773038852,215,0 +170773038900,215,0 +170773038948,215,0 +170773038996,214,0 +170773039045,214,0 +170773039093,215,0 +170773039143,214,0 +170773039191,215,0 +170773039238,215,0 +170773039288,215,0 +170773039336,215,0 +170773039384,215,0 +170773039433,215,0 +170773039481,215,0 +170773039529,215,0 +170773039579,215,0 +170773039626,215,0 +170773039674,215,0 +170773039724,215,0 +170773039771,214,0 +170773039821,214,0 +170773039869,214,0 +170773039918,214,0 +170773039966,214,0 +170773040014,214,0 +170773040062,214,0 +170773040111,215,0 +170773040159,215,0 +170773040209,215,0 +170773040257,215,0 +170773040306,215,0 +170773040356,215,0 +170773040405,215,0 +170773040455,215,0 +170773040503,215,0 +170773040552,214,0 +170773040602,214,0 +170773040651,214,0 +170773040699,214,0 +170773040747,214,0 +170773040795,215,0 +170773040843,215,0 +170773040891,215,0 +170773040939,215,0 +170773040988,215,0 +170773041036,215,0 +170773041086,215,0 +170773041135,215,0 +170773041183,215,0 +170773041233,216,0 +170773041282,215,0 +170773041330,215,0 +170773041378,214,0 +170773041426,214,0 +170773041474,214,0 +170773041523,215,0 +170773041571,214,0 +170773041619,215,0 +170773041669,215,0 +170773041718,215,0 +170773041766,215,0 +170773041816,215,0 +170773041863,215,0 +170773041913,215,0 +170773041961,215,0 +170773042010,215,0 +170773042058,215,0 +170773042108,215,0 +170773042156,215,0 +170773042204,214,0 +170773042252,214,0 +170773042300,214,0 +170773042347,214,0 +170773042397,214,0 +170773042445,215,0 +170773042493,215,0 +170773042541,214,0 +170773042589,215,0 +170773042637,215,0 +170773042684,215,0 +170773042734,215,0 +170773042782,215,0 +170773042831,215,0 +170773042879,215,0 +170773042927,215,0 +170773042975,214,0 +170773043024,214,0 +170773043072,214,0 +170773043120,214,0 +170773043168,214,0 +170773043216,214,0 +170773043264,214,0 +170773043314,215,0 +170773043363,215,0 +170773043411,215,0 +170773043459,215,0 +170773043508,215,0 +170773043558,215,0 +170773043606,215,0 +170773043654,215,0 +170773043702,215,0 +170773043751,214,0 +170773043801,214,0 +170773043849,214,0 +170773043897,214,0 +170773043945,214,0 +170773043994,214,0 +170773044042,214,0 +170773044092,214,0 +170773044140,214,0 +170773044187,215,0 +170773044237,215,0 +170773044285,215,0 +170773044333,215,0 +170773044382,215,0 +170773044430,215,0 +170773044478,215,0 +170773044526,215,0 +170773044576,214,0 +170773044623,213,0 +170773044671,214,0 +170773044719,214,0 +170773044767,214,0 +170773044816,214,0 +170773044864,214,0 +170773044914,214,0 +170773044962,215,0 +170773045010,215,0 +170773045057,215,0 +170773045105,215,0 +170773045153,215,0 +170773045201,215,0 +170773045249,215,0 +170773045297,215,0 +170773045345,215,0 +170773045393,214,0 +170773045440,214,0 +170773045488,214,0 +170773045536,214,0 +170773045586,214,0 +170773045635,214,0 +170773045683,214,0 +170773045731,214,0 +170773045780,215,0 +170773045828,214,0 +170773045878,214,0 +170773045926,215,0 +170773045973,214,0 +170773046021,215,0 +170773046069,215,0 +170773046117,215,0 +170773046165,215,0 +170773046213,215,0 +170773046261,215,0 +170773046309,215,0 +170773046356,215,0 +170773046404,215,0 +170773046454,215,0 +170773046502,215,0 +170773046550,215,0 +170773046597,214,0 +170773046645,214,0 +170773046693,214,0 +170773046741,214,0 +170773046789,214,0 +170773046837,214,0 +170773046885,214,0 +170773046933,215,0 +170773046981,215,0 +170773047030,215,0 +170773047080,215,0 +170773047128,215,0 +170773047175,215,0 +170773047223,215,0 +170773047271,215,0 +170773047319,215,0 +170773047367,214,0 +170773047415,214,0 +170773047463,214,0 +170773047511,214,0 +170773047558,214,0 +170773047606,214,0 +170773047656,215,0 +170773047704,215,0 +170773047753,215,0 +170773047801,215,0 +170773047849,215,0 +170773047897,215,0 +170773047945,215,0 +170773047993,215,0 +170773048042,215,0 +170773048092,215,0 +170773048141,215,0 +170773048189,214,0 +170773048237,214,0 +170773048287,214,0 +170773048335,214,0 +170773048383,215,0 +170773048432,215,0 +170773048480,215,0 +170773048529,215,0 +170773048579,215,0 +170773048627,215,0 +170773048675,215,0 +170773048722,215,0 +170773048770,215,0 +170773048820,215,0 +170773048868,215,0 +170773048915,215,0 +170773048965,214,0 +170773049013,214,0 +170773049061,214,0 +170773049108,214,0 +170773049156,214,0 +170773049204,214,0 +170773049252,215,0 +170773049300,215,0 +170773049348,215,0 +170773049396,215,0 +170773049445,215,0 +170773049493,215,0 +170773049541,216,0 +170773049589,215,0 +170773049638,215,0 +170773049686,215,0 +170773049735,215,0 +170773049783,214,0 +170773049831,214,0 +170773049879,214,0 +170773049927,214,0 +170773049977,215,0 +170773050026,215,0 +170773050074,215,0 +170773050122,215,0 +170773050170,215,0 +170773050219,215,0 +170773050267,215,0 +170773050315,215,0 +170773050365,215,0 +170773050413,215,0 +170773050462,215,0 +170773050510,215,0 +170773050558,215,0 +170773050606,214,0 +170773050653,215,0 +170773050701,214,0 +170773050749,215,0 +170773050797,215,0 +170773050845,215,0 +170773050893,215,0 +170773050941,215,0 +170773050990,215,0 +170773051039,216,0 +170773051087,215,0 +170773051135,215,0 +170773051183,215,0 +170773051231,215,0 +170773051278,215,0 +170773051326,215,0 +170773051374,215,0 +170773051422,215,0 +170773051470,215,0 +170773051517,215,0 +170773051565,215,0 +170773051613,215,0 +170773051661,215,0 +170773051709,215,0 +170773051756,215,0 +170773051804,215,0 +170773051854,215,0 +170773051901,215,0 +170773051949,215,0 +170773051999,215,0 +170773052048,215,0 +170773052096,215,0 +170773052144,216,0 +170773052191,215,0 +170773052241,214,0 +170773052289,215,0 +170773052338,214,0 +170773052386,215,0 +170773052434,215,0 +170773052482,215,0 +170773052530,215,0 +170773052579,215,0 +170773052627,215,0 +170773052675,215,0 +170773052723,215,0 +170773052771,215,0 +170773052819,215,0 +170773052868,215,0 +170773052916,215,0 +170773052964,215,0 +170773053011,214,0 +170773053059,214,0 +170773053107,214,0 +170773053155,214,0 +170773053202,215,0 +170773053250,215,0 +170773053298,215,0 +170773053346,215,0 +170773053394,215,0 +170773053442,215,0 +170773053490,215,0 +170773053539,215,0 +170773053587,215,0 +170773053635,215,0 +170773053684,215,0 +170773053732,215,0 +170773053780,214,0 +170773053828,214,0 +170773053876,214,0 +170773053924,214,0 +170773053973,214,0 +170773054021,214,0 +170773054069,214,0 +170773054117,214,0 +170773054166,215,0 +170773054215,215,0 +170773054263,215,0 +170773054311,215,0 +170773054359,215,0 +170773054408,215,0 +170773054456,215,0 +170773054504,215,0 +170773054552,215,0 +170773054599,214,0 +170773054647,214,0 +170773054695,214,0 +170773054745,214,0 +170773054794,214,0 +170773054842,214,0 +170773054890,214,0 +170773054938,214,0 +170773054987,215,0 +170773055037,215,0 +170773055084,215,0 +170773055132,215,0 +170773055180,215,0 +170773055228,215,0 +170773055276,215,0 +170773055324,215,0 +170773055372,215,0 +170773055420,214,0 +170773055468,214,0 +170773055517,214,0 +170773055567,214,0 +170773055616,214,0 +170773055666,214,0 +170773055713,214,0 +170773055761,214,0 +170773055811,215,0 +170773055859,215,0 +170773055907,215,0 +170773055954,215,0 +170773056004,215,0 +170773056052,215,0 +170773056100,215,0 +170773056147,215,0 +170773056195,214,0 +170773056243,213,0 +170773056293,214,0 +170773056342,214,0 +170773056390,214,0 +170773056439,214,0 +170773056489,214,0 +170773056537,214,0 +170773056586,214,0 +170773056634,215,0 +170773056684,215,0 +170773056732,215,0 +170773056780,215,0 +170773056828,215,0 +170773056875,215,0 +170773056923,215,0 +170773056971,215,0 +170773057019,214,0 +170773057068,213,0 +170773057118,213,0 +170773057167,214,0 +170773057215,214,0 +170773057264,213,0 +170773057312,214,0 +170773057360,214,0 +170773057410,214,0 +170773057459,214,0 +170773057507,214,0 +170773057555,215,0 +170773057603,215,0 +170773057651,215,0 +170773057699,215,0 +170773057746,215,0 +170773057796,214,0 +170773057844,214,0 +170773057892,213,0 +170773057939,213,0 +170773057987,214,0 +170773058035,213,0 +170773058083,214,0 +170773058131,214,0 +170773058179,214,0 +170773058226,214,0 +170773058274,214,0 +170773058324,214,0 +170773058373,214,0 +170773058421,214,0 +170773058469,215,0 +170773058519,214,0 +170773058566,215,0 +170773058616,214,0 +170773058664,213,0 +170773058713,213,0 +170773058761,214,0 +170773058809,214,0 +170773058857,214,0 +170773058907,214,0 +170773058955,214,0 +170773059002,214,0 +170773059050,214,0 +170773059098,215,0 +170773059148,215,0 +170773059197,215,0 +170773059245,215,0 +170773059293,215,0 +170773059342,215,0 +170773059390,215,0 +170773059438,214,0 +170773059488,214,0 +170773059537,214,0 +170773059587,214,0 +170773059635,214,0 +170773059683,214,0 +170773059732,214,0 +170773059780,215,0 +170773059828,215,0 +170773059876,215,0 +170773059924,215,0 +170773059972,215,0 +170773060021,215,0 +170773060069,215,0 +170773060117,215,0 +170773060165,215,0 +170773060214,214,0 +170773060264,214,0 +170773060312,214,0 +170773060360,215,0 +170773060408,214,0 +170773060457,215,0 +170773060505,215,0 +170773060553,215,0 +170773060602,215,0 +170773060650,215,0 +170773060698,215,0 +170773060748,215,0 +170773060795,215,0 +170773060843,215,0 +170773060893,215,0 +170773060941,215,0 +170773060990,215,0 +170773061039,215,0 +170773061087,215,0 +170773061137,215,0 +170773061185,215,0 +170773061232,215,0 +170773061280,215,0 +170773061330,215,0 +170773061378,216,0 +170773061425,215,0 +170773061473,216,0 +170773061521,215,0 +170773061569,215,0 +170773061617,215,0 +170773061667,215,0 +170773061714,215,0 +170773061764,215,0 +170773061812,215,0 +170773061860,215,0 +170773061908,215,0 +170773061955,215,0 +170773062003,215,0 +170773062051,215,0 +170773062099,215,0 +170773062147,215,0 +170773062197,215,0 +170773062246,215,0 +170773062294,215,0 +170773062343,215,0 +170773062391,215,0 +170773062441,215,0 +170773062490,215,0 +170773062538,215,0 +170773062586,215,0 +170773062634,215,0 +170773062682,215,0 +170773062730,215,0 +170773062779,215,0 +170773062829,215,0 +170773062877,215,0 +170773062926,215,0 +170773062974,215,0 +170773063024,215,0 +170773063072,215,0 +170773063121,215,0 +170773063171,215,0 +170773063220,215,0 +170773063268,215,0 +170773063318,215,0 +170773063367,215,0 +170773063415,215,0 +170773063463,215,0 +170773063511,215,0 +170773063559,215,0 +170773063608,215,0 +170773063658,215,0 +170773063706,216,0 +170773063754,215,0 +170773063803,215,0 +170773063853,216,0 +170773063901,215,0 +170773063949,215,0 +170773063998,215,0 +170773064046,215,0 +170773064094,215,0 +170773064143,215,0 +170773064193,215,0 +170773064243,214,0 +170773064292,214,0 +170773064340,214,0 +170773064388,214,0 +170773064436,214,0 +170773064484,215,0 +170773064533,214,0 +170773064581,215,0 +170773064630,215,0 +170773064678,215,0 +170773064726,215,0 +170773064774,215,0 +170773064822,215,0 +170773064872,215,0 +170773064920,215,0 +170773064967,215,0 +170773065015,215,0 +170773065063,214,0 +170773065113,214,0 +170773065162,214,0 +170773065210,214,0 +170773065260,214,0 +170773065309,214,0 +170773065357,215,0 +170773065405,215,0 +170773065453,215,0 +170773065502,215,0 +170773065550,215,0 +170773065600,215,0 +170773065648,215,0 +170773065697,215,0 +170773065745,215,0 +170773065793,215,0 +170773065841,215,0 +170773065889,215,0 +170773065937,214,0 +170773065986,214,0 +170773066034,214,0 +170773066083,214,0 +170773066131,214,0 +170773066179,214,0 +170773066229,214,0 +170773066277,214,0 +170773066326,215,0 +170773066374,215,0 +170773066424,215,0 +170773066473,215,0 +170773066521,215,0 +170773066569,215,0 +170773066617,215,0 +170773066665,215,0 +170773066714,215,0 +170773066762,215,0 +170773066810,215,0 +170773066858,214,0 +170773066908,213,0 +170773066957,214,0 +170773067005,214,0 +170773067053,214,0 +170773067101,214,0 +170773067149,214,0 +170773067198,214,0 +170773067246,214,0 +170773067294,215,0 +170773067344,215,0 +170773067392,215,0 +170773067439,215,0 +170773067487,215,0 +170773067537,215,0 +170773067586,215,0 +170773067636,215,0 +170773067685,215,0 +170773067733,214,0 +170773067781,214,0 +170773067829,214,0 +170773067879,214,0 +170773067927,214,0 +170773067975,214,0 +170773068024,214,0 +170773068072,214,0 +170773068122,215,0 +170773068171,214,0 +170773068219,214,0 +170773068268,215,0 +170773068316,215,0 +170773068366,215,0 +170773068414,215,0 +170773068462,215,0 +170773068510,215,0 +170773068558,215,0 +170773068606,214,0 +170773068655,214,0 +170773068703,214,0 +170773068751,214,0 +170773068800,214,0 +170773068850,214,0 +170773068898,214,0 +170773068946,214,0 +170773068995,214,0 +170773069043,215,0 +170773069092,215,0 +170773069140,215,0 +170773069188,215,0 +170773069238,215,0 +170773069286,215,0 +170773069334,215,0 +170773069382,215,0 +170773069431,215,0 +170773069479,215,0 +170773069527,214,0 +170773069575,214,0 +170773069623,214,0 +170773069671,214,0 +170773069719,215,0 +170773069768,214,0 +170773069818,214,0 +170773069867,214,0 +170773069917,214,0 +170773069966,214,0 +170773070016,215,0 +170773070065,215,0 +170773070113,215,0 +170773070161,215,0 +170773070209,215,0 +170773070259,215,0 +170773070308,215,0 +170773070356,215,0 +170773070405,214,0 +170773070453,214,0 +170773070501,214,0 +170773070549,214,0 +170773070597,214,0 +170773070645,214,0 +170773070693,214,0 +170773070741,214,0 +170773070788,214,0 +170773070838,215,0 +170773070886,215,0 +170773070933,215,0 +170773070981,215,0 +170773071029,215,0 +170773071077,215,0 +170773071125,215,0 +170773071175,215,0 +170773071222,215,0 +170773071272,215,0 +170773071321,214,0 +170773071369,214,0 +170773071417,214,0 +170773071465,214,0 +170773071513,214,0 +170773071561,214,0 +170773071609,214,0 +170773071657,215,0 +170773071705,215,0 +170773071754,215,0 +170773071802,215,0 +170773071852,215,0 +170773071900,215,0 +170773071949,215,0 +170773071999,215,0 +170773072047,215,0 +170773072094,215,0 +170773072142,215,0 +170773072192,214,0 +170773072241,214,0 +170773072291,214,0 +170773072339,215,0 +170773072387,214,0 +170773072436,214,0 +170773072484,215,0 +170773072532,215,0 +170773072580,215,0 +170773072628,215,0 +170773072676,215,0 +170773072725,215,0 +170773072773,215,0 +170773072821,215,0 +170773072869,215,0 +170773072917,215,0 +170773072965,215,0 +170773073012,215,0 +170773073060,215,0 +170773073108,214,0 +170773073156,214,0 +170773073204,214,0 +170773073252,214,0 +170773073300,214,0 +170773073349,214,0 +170773073397,214,0 +170773073447,214,0 +170773073495,214,0 +170773073544,214,0 +170773073592,215,0 +170773073642,215,0 +170773073689,215,0 +170773073737,215,0 +170773073787,215,0 +170773073835,215,0 +170773073884,215,0 +170773073932,215,0 +170773073982,214,0 +170773074030,213,0 +170773074077,214,0 +170773074125,214,0 +170773074173,214,0 +170773074221,214,0 +170773074269,214,0 +170773074317,214,0 +170773074365,214,0 +170773074413,214,0 +170773074461,215,0 +170773074509,215,0 +170773074556,215,0 +170773074604,215,0 +170773074654,215,0 +170773074703,215,0 +170773074753,215,0 +170773074802,215,0 +170773074850,215,0 +170773074900,214,0 +170773074948,214,0 +170773074997,214,0 +170773075047,214,0 +170773075096,214,0 +170773075144,214,0 +170773075192,214,0 +170773075240,214,0 +170773075288,214,0 +170773075336,215,0 +170773075384,214,0 +170773075432,215,0 +170773075480,215,0 +170773075527,215,0 +170773075575,215,0 +170773075623,215,0 +170773075671,215,0 +170773075719,215,0 +170773075769,214,0 +170773075818,214,0 +170773075866,214,0 +170773075914,214,0 +170773075962,214,0 +170773076010,214,0 +170773076059,214,0 +170773076109,214,0 +170773076158,214,0 +170773076208,214,0 +170773076255,214,0 +170773076303,215,0 +170773076351,215,0 +170773076399,215,0 +170773076449,215,0 +170773076498,215,0 +170773076548,215,0 +170773076596,215,0 +170773076645,215,0 +170773076693,214,0 +170773076743,214,0 +170773076791,214,0 +170773076838,214,0 +170773076886,214,0 +170773076936,214,0 +170773076985,214,0 +170773077033,214,0 +170773077081,214,0 +170773077129,214,0 +170773077177,214,0 +170773077225,215,0 +170773077272,215,0 +170773077320,215,0 +170773077368,215,0 +170773077416,215,0 +170773077464,215,0 +170773077512,215,0 +170773077559,214,0 +170773077607,214,0 +170773077655,214,0 +170773077703,214,0 +170773077751,214,0 +170773077799,214,0 +170773077846,214,0 +170773077894,214,0 +170773077942,214,0 +170773077990,215,0 +170773078038,215,0 +170773078086,215,0 +170773078133,215,0 +170773078181,215,0 +170773078229,215,0 +170773078277,215,0 +170773078325,215,0 +170773078374,215,0 +170773078422,215,0 +170773078471,214,0 +170773078519,214,0 +170773078567,214,0 +170773078615,214,0 +170773078663,215,0 +170773078712,215,0 +170773078760,215,0 +170773078809,215,0 +170773078857,215,0 +170773078905,215,0 +170773078953,215,0 +170773079001,215,0 +170773079049,215,0 +170773079096,215,0 +170773079144,215,0 +170773079194,215,0 +170773079242,215,0 +170773079291,215,0 +170773079339,214,0 +170773079387,214,0 +170773079436,214,0 +170773079484,214,0 +170773079532,214,0 +170773079582,214,0 +170773079631,215,0 +170773079681,215,0 +170773079730,215,0 +170773079778,215,0 +170773079828,215,0 +170773079877,215,0 +170773079926,215,0 +170773079974,215,0 +170773080024,215,0 +170773080072,215,0 +170773080121,215,0 +170773080169,215,0 +170773080217,215,0 +170773080265,214,0 +170773080313,214,0 +170773080361,214,0 +170773080410,214,0 +170773080460,214,0 +170773080509,214,0 +170773080557,215,0 +170773080605,214,0 +170773080653,215,0 +170773080701,215,0 +170773080748,215,0 +170773080796,215,0 +170773080844,215,0 +170773080894,215,0 +170773080941,215,0 +170773080989,215,0 +170773081037,215,0 +170773081085,215,0 +170773081133,214,0 +170773081181,214,0 +170773081228,214,0 +170773081276,214,0 +170773081326,215,0 +170773081375,215,0 +170773081423,214,0 +170773081473,215,0 +170773081521,215,0 +170773081569,215,0 +170773081617,215,0 +170773081665,215,0 +170773081712,215,0 +170773081760,215,0 +170773081808,215,0 +170773081856,215,0 +170773081904,215,0 +170773081951,215,0 +170773081999,215,0 +170773082047,214,0 +170773082095,214,0 +170773082144,214,0 +170773082192,215,0 +170773082240,214,0 +170773082290,215,0 +170773082338,215,0 +170773082385,215,0 +170773082433,215,0 +170773082481,215,0 +170773082529,215,0 +170773082577,215,0 +170773082625,215,0 +170773082673,215,0 +170773082720,215,0 +170773082768,215,0 +170773082816,215,0 +170773082864,215,0 +170773082912,214,0 +170773082959,214,0 +170773083009,214,0 +170773083058,214,0 +170773083108,214,0 +170773083157,214,0 +170773083207,215,0 +170773083255,215,0 +170773083304,215,0 +170773083354,215,0 +170773083402,215,0 +170773083450,215,0 +170773083497,215,0 +170773083545,215,0 +170773083593,215,0 +170773083643,215,0 +170773083692,215,0 +170773083740,215,0 +170773083788,215,0 +170773083836,214,0 +170773083884,214,0 +170773083932,214,0 +170773083980,214,0 +170773084028,215,0 +170773084076,214,0 +170773084123,215,0 +170773084173,215,0 +170773084222,215,0 +170773084270,215,0 +170773084320,215,0 +170773084368,215,0 +170773084417,215,0 +170773084467,215,0 +170773084516,215,0 +170773084566,215,0 +170773084614,215,0 +170773084662,215,0 +170773084711,214,0 +170773084759,214,0 +170773084807,214,0 +170773084855,214,0 +170773084904,214,0 +170773084952,214,0 +170773085000,214,0 +170773085048,214,0 +170773085096,214,0 +170773085145,214,0 +170773085195,215,0 +170773085244,215,0 +170773085294,215,0 +170773085343,215,0 +170773085391,215,0 +170773085441,215,0 +170773085489,215,0 +170773085537,215,0 +170773085585,215,0 +170773085634,213,0 +170773085682,214,0 +170773085730,214,0 +170773085777,214,0 +170773085825,214,0 +170773085873,214,0 +170773085921,214,0 +170773085970,214,0 +170773086020,214,0 +170773086068,214,0 +170773086117,215,0 +170773086167,215,0 +170773086216,215,0 +170773086264,215,0 +170773086314,215,0 +170773086363,215,0 +170773086411,215,0 +170773086459,215,0 +170773086507,214,0 +170773086555,213,0 +170773086604,214,0 +170773086652,214,0 +170773086700,214,0 +170773086747,214,0 +170773086797,214,0 +170773086845,214,0 +170773086892,214,0 +170773086940,214,0 +170773086990,214,0 +170773087038,214,0 +170773087085,214,0 +170773087133,214,0 +170773087181,214,0 +170773087229,214,0 +170773087277,214,0 +170773087326,214,0 +170773087374,215,0 +170773087422,214,0 +170773087470,213,0 +170773087518,213,0 +170773087565,214,0 +170773087613,213,0 +170773087661,213,0 +170773087711,213,0 +170773087758,213,0 +170773087808,214,0 +170773087857,214,0 +170773087905,213,0 +170773087955,214,0 +170773088003,214,0 +170773088052,214,0 +170773088102,214,0 +170773088151,214,0 +170773088199,214,0 +170773088249,215,0 +170773088297,214,0 +170773088346,213,0 +170773088394,214,0 +170773088442,213,0 +170773088490,213,0 +170773088538,213,0 +170773088586,214,0 +170773088634,214,0 +170773088681,214,0 +170773088729,214,0 +170773088779,214,0 +170773088827,214,0 +170773088874,215,0 +170773088922,215,0 +170773088970,215,0 +170773089018,215,0 +170773089066,215,0 +170773089116,215,0 +170773089163,215,0 +170773089211,213,0 +170773089259,213,0 +170773089307,214,0 +170773089355,214,0 +170773089403,214,0 +170773089451,214,0 +170773089500,214,0 +170773089548,214,0 +170773089596,214,0 +170773089646,214,0 +170773089695,214,0 +170773089743,215,0 +170773089791,215,0 +170773089840,215,0 +170773089888,215,0 +170773089936,215,0 +170773089984,215,0 +170773090032,215,0 +170773090080,214,0 +170773090128,214,0 +170773090176,214,0 +170773090225,214,0 +170773090273,214,0 +170773090323,214,0 +170773090371,214,0 +170773090419,214,0 +170773090466,214,0 +170773090514,214,0 +170773090564,214,0 +170773090613,214,0 +170773090661,214,0 +170773090709,215,0 +170773090757,215,0 +170773090805,214,0 +170773090855,214,0 +170773090902,215,0 +170773090952,215,0 +170773091000,214,0 +170773091049,213,0 +170773091097,213,0 +170773091147,214,0 +170773091195,214,0 +170773091242,214,0 +170773091292,213,0 +170773091340,214,0 +170773091388,214,0 +170773091435,214,0 +170773091483,214,0 +170773091531,214,0 +170773091579,214,0 +170773091627,214,0 +170773091674,215,0 +170773091722,215,0 +170773091770,215,0 +170773091818,215,0 +170773091865,214,0 +170773091913,214,0 +170773091961,214,0 +170773092009,214,0 +170773092056,214,0 +170773092104,214,0 +170773092152,214,0 +170773092200,214,0 +170773092249,215,0 +170773092297,214,0 +170773092345,215,0 +170773092393,215,0 +170773092442,215,0 +170773092490,215,0 +170773092539,215,0 +170773092587,215,0 +170773092635,215,0 +170773092683,215,0 +170773092732,215,0 +170773092780,214,0 +170773092830,214,0 +170773092878,214,0 +170773092926,214,0 +170773092974,215,0 +170773093023,215,0 +170773093071,215,0 +170773093119,215,0 +170773093168,215,0 +170773093216,215,0 +170773093266,215,0 +170773093314,215,0 +170773093361,215,0 +170773093409,215,0 +170773093457,215,0 +170773093507,215,0 +170773093556,216,0 +170773093604,215,0 +170773093653,214,0 +170773093703,214,0 +170773093752,214,0 +170773093800,214,0 +170773093848,214,0 +170773093896,215,0 +170773093944,214,0 +170773093992,215,0 +170773094041,215,0 +170773094089,215,0 +170773094137,215,0 +170773094187,215,0 +170773094235,215,0 +170773094283,215,0 +170773094331,215,0 +170773094380,215,0 +170773094429,215,0 +170773094479,215,0 +170773094527,215,0 +170773094575,214,0 +170773094624,214,0 +170773094672,214,0 +170773094720,215,0 +170773094768,214,0 +170773094816,215,0 +170773094864,215,0 +170773094912,215,0 +170773094961,215,0 +170773095009,215,0 +170773095057,215,0 +170773095105,215,0 +170773095153,215,0 +170773095202,215,0 +170773095250,215,0 +170773095298,215,0 +170773095346,215,0 +170773095394,215,0 +170773095442,214,0 +170773095490,214,0 +170773095538,214,0 +170773095586,214,0 +170773095635,215,0 +170773095685,215,0 +170773095734,215,0 +170773095782,215,0 +170773095830,215,0 +170773095878,215,0 +170773095926,215,0 +170773095976,215,0 +170773096023,215,0 +170773096073,216,0 +170773096121,215,0 +170773096170,215,0 +170773096218,215,0 +170773096268,215,0 +170773096317,215,0 +170773096365,214,0 +170773096415,214,0 +170773096464,214,0 +170773096514,214,0 +170773096562,214,0 +170773096610,214,0 +170773096658,214,0 +170773096706,214,0 +170773096755,215,0 +170773096803,215,0 +170773096853,215,0 +170773096901,215,0 +170773096948,215,0 +170773096996,215,0 +170773097044,215,0 +170773097092,215,0 +170773097140,215,0 +170773097187,215,0 +170773097235,214,0 +170773097285,214,0 +170773097334,214,0 +170773097382,214,0 +170773097430,214,0 +170773097478,214,0 +170773097526,214,0 +170773097575,214,0 +170773097623,215,0 +170773097672,215,0 +170773097720,214,0 +170773097769,214,0 +170773097819,215,0 +170773097867,215,0 +170773097915,215,0 +170773097964,215,0 +170773098012,215,0 +170773098060,215,0 +170773098108,215,0 +170773098156,214,0 +170773098204,214,0 +170773098252,214,0 +170773098300,214,0 +170773098348,214,0 +170773098396,214,0 +170773098444,214,0 +170773098492,214,0 +170773098540,214,0 +170773098588,214,0 +170773098636,215,0 +170773098685,215,0 +170773098733,215,0 +170773098781,215,0 +170773098829,215,0 +170773098878,215,0 +170773098928,214,0 +170773098976,215,0 +170773099024,214,0 +170773099072,214,0 +170773099120,214,0 +170773099167,214,0 +170773099217,214,0 +170773099266,214,0 +170773099316,214,0 +170773099364,214,0 +170773099412,214,0 +170773099461,214,0 +170773099509,215,0 +170773099557,215,0 +170773099605,215,0 +170773099653,215,0 +170773099702,215,0 +170773099752,215,0 +170773099800,215,0 +170773099848,215,0 +170773099897,215,0 +170773099945,214,0 +170773099995,213,0 +170773100044,213,0 +170773100092,214,0 +170773100142,214,0 +170773100190,214,0 +170773100238,214,0 +170773100285,214,0 +170773100333,214,0 +170773100381,214,0 +170773100429,214,0 +170773100477,214,0 +170773100525,215,0 +170773100574,215,0 +170773100624,215,0 +170773100671,215,0 +170773100719,215,0 +170773100767,215,0 +170773100815,214,0 +170773100863,213,0 +170773100911,214,0 +170773100959,214,0 +170773101006,214,0 +170773101054,214,0 +170773101102,214,0 +170773101150,214,0 +170773101198,214,0 +170773101246,214,0 +170773101294,214,0 +170773101341,215,0 +170773101389,215,0 +170773101437,215,0 +170773101485,215,0 +170773101533,215,0 +170773101580,215,0 +170773101628,215,0 +170773101676,215,0 +170773101724,214,0 +170773101772,214,0 +170773101820,214,0 +170773101868,214,0 +170773101918,214,0 +170773101966,214,0 +170773102013,214,0 +170773102061,214,0 +170773102109,214,0 +170773102157,215,0 +170773102205,214,0 +170773102255,215,0 +170773102304,215,0 +170773102354,215,0 +170773102402,215,0 +170773102451,215,0 +170773102499,215,0 +170773102547,215,0 +170773102597,215,0 +170773102644,214,0 +170773102692,214,0 +170773102742,214,0 +170773102791,214,0 +170773102839,214,0 +170773102887,214,0 +170773102937,214,0 +170773102985,215,0 +170773103033,214,0 +170773103081,215,0 +170773103129,215,0 +170773103177,215,0 +170773103224,215,0 +170773103272,215,0 +170773103322,215,0 +170773103371,215,0 +170773103419,215,0 +170773103467,215,0 +170773103517,214,0 +170773103565,214,0 +170773103614,214,0 +170773103662,214,0 +170773103710,214,0 +170773103759,214,0 +170773103808,214,0 +170773103856,214,0 +170773103904,214,0 +170773103952,214,0 +170773104000,215,0 +170773104048,215,0 +170773104096,215,0 +170773104143,215,0 +170773104191,215,0 +170773104239,215,0 +170773104287,215,0 +170773104337,215,0 +170773104385,215,0 +170773104434,214,0 +170773104484,214,0 +170773104532,214,0 +170773104579,214,0 +170773104627,214,0 +170773104675,214,0 +170773104725,214,0 +170773104773,214,0 +170773104822,214,0 +170773104870,214,0 +170773104920,214,0 +170773104968,215,0 +170773105015,214,0 +170773105063,215,0 +170773105111,215,0 +170773105159,215,0 +170773105207,215,0 +170773105255,215,0 +170773105303,214,0 +170773105350,213,0 +170773105398,213,0 +170773105446,214,0 +170773105494,214,0 +170773105542,214,0 +170773105589,214,0 +170773105637,214,0 +170773105685,214,0 +170773105733,214,0 +170773105781,215,0 +170773105830,215,0 +170773105878,214,0 +170773105926,215,0 +170773105974,215,0 +170773106022,215,0 +170773106069,215,0 +170773106117,215,0 +170773106165,215,0 +170773106213,214,0 +170773106261,213,0 +170773106309,213,0 +170773106357,213,0 +170773106406,213,0 +170773106454,214,0 +170773106502,214,0 +170773106550,214,0 +170773106597,214,0 +170773106645,214,0 +170773106693,214,0 +170773106743,214,0 +170773106792,214,0 +170773106842,214,0 +170773106891,215,0 +170773106939,215,0 +170773106989,215,0 +170773107038,215,0 +170773107088,215,0 +170773107137,213,0 +170773107185,214,0 +170773107233,213,0 +170773107281,214,0 +170773107329,214,0 +170773107377,214,0 +170773107425,214,0 +170773107472,214,0 +170773107520,214,0 +170773107568,214,0 +170773107616,214,0 +170773107664,214,0 +170773107713,214,0 +170773107761,214,0 +170773107809,214,0 +170773107857,214,0 +170773107905,214,0 +170773107952,215,0 +170773108002,214,0 +170773108050,213,0 +170773108097,213,0 +170773108145,214,0 +170773108193,214,0 +170773108241,214,0 +170773108289,214,0 +170773108337,214,0 +170773108384,214,0 +170773108432,214,0 +170773108480,214,0 +170773108528,214,0 +170773108576,214,0 +170773108623,214,0 +170773108671,214,0 +170773108719,215,0 +170773108767,215,0 +170773108816,215,0 +170773108864,214,0 +170773108912,214,0 +170773108961,214,0 +170773109009,214,0 +170773109057,214,0 +170773109105,214,0 +170773109154,214,0 +170773109202,214,0 +170773109250,215,0 +170773109298,215,0 +170773109346,215,0 +170773109395,215,0 +170773109443,215,0 +170773109491,215,0 +170773109539,215,0 +170773109586,215,0 +170773109634,215,0 +170773109682,215,0 +170773109732,215,0 +170773109780,215,0 +170773109827,214,0 +170773109875,214,0 +170773109923,214,0 +170773109971,214,0 +170773110019,215,0 +170773110068,215,0 +170773110116,215,0 +170773110164,215,0 +170773110212,215,0 +170773110260,215,0 +170773110307,215,0 +170773110355,215,0 +170773110403,215,0 +170773110451,215,0 +170773110499,215,0 +170773110547,215,0 +170773110595,215,0 +170773110643,215,0 +170773110692,214,0 +170773110740,214,0 +170773110788,214,0 +170773110838,214,0 +170773110887,214,0 +170773110936,214,0 +170773110984,214,0 +170773111032,215,0 +170773111080,214,0 +170773111130,215,0 +170773111178,215,0 +170773111227,215,0 +170773111275,215,0 +170773111323,215,0 +170773111372,215,0 +170773111420,215,0 +170773111468,215,0 +170773111516,215,0 +170773111564,215,0 +170773111612,214,0 +170773111660,214,0 +170773111708,214,0 +170773111756,214,0 +170773111805,214,0 +170773111854,214,0 +170773111902,215,0 +170773111950,215,0 +170773111998,215,0 +170773112046,215,0 +170773112094,215,0 +170773112142,215,0 +170773112189,215,0 +170773112237,215,0 +170773112285,215,0 +170773112335,215,0 +170773112384,215,0 +170773112434,215,0 +170773112481,214,0 +170773112529,214,0 +170773112577,214,0 +170773112627,214,0 +170773112674,214,0 +170773112722,214,0 +170773112770,215,0 +170773112820,214,0 +170773112869,215,0 +170773112917,215,0 +170773112965,215,0 +170773113013,215,0 +170773113061,215,0 +170773113109,215,0 +170773113157,215,0 +170773113205,215,0 +170773113254,215,0 +170773113302,215,0 +170773113352,215,0 +170773113399,214,0 +170773113447,214,0 +170773113497,214,0 +170773113545,214,0 +170773113593,214,0 +170773113641,214,0 +170773113688,214,0 +170773113736,214,0 +170773113786,215,0 +170773113835,215,0 +170773113883,215,0 +170773113933,215,0 +170773113982,215,0 +170773114030,215,0 +170773114078,215,0 +170773114126,215,0 +170773114175,215,0 +170773114225,215,0 +170773114273,214,0 +170773114321,214,0 +170773114369,214,0 +170773114418,214,0 +170773114466,214,0 +170773114514,214,0 +170773114562,214,0 +170773114610,214,0 +170773114659,214,0 +170773114709,215,0 +170773114756,215,0 +170773114806,215,0 +170773114855,215,0 +170773114903,215,0 +170773114951,215,0 +170773114999,215,0 +170773115047,215,0 +170773115095,215,0 +170773115142,215,0 +170773115190,214,0 +170773115240,213,0 +170773115289,213,0 +170773115337,214,0 +170773115385,214,0 +170773115433,214,0 +170773115480,214,0 +170773115528,214,0 +170773115576,214,0 +170773115624,214,0 +170773115672,215,0 +170773115720,215,0 +170773115767,215,0 +170773115815,215,0 +170773115863,215,0 +170773115911,215,0 +170773115959,215,0 +170773116007,215,0 +170773116055,214,0 +170773116104,213,0 +170773116152,214,0 +170773116200,214,0 +170773116248,214,0 +170773116298,214,0 +170773116346,214,0 +170773116395,214,0 +170773116443,214,0 +170773116493,214,0 +170773116542,214,0 +170773116590,214,0 +170773116638,214,0 +170773116687,215,0 +170773116737,215,0 +170773116785,215,0 +170773116834,215,0 +170773116882,215,0 +170773116930,215,0 +170773116978,213,0 +170773117026,213,0 +170773117074,213,0 +170773117124,213,0 +170773117173,214,0 +170773117223,214,0 +170773117270,214,0 +170773117318,214,0 +170773117368,214,0 +170773117416,214,0 +170773117465,214,0 +170773117513,214,0 +170773117563,214,0 +170773117611,214,0 +170773117660,214,0 +170773117708,215,0 +170773117756,215,0 +170773117804,215,0 +170773117853,214,0 +170773117901,213,0 +170773117949,214,0 +170773117997,214,0 +170773118045,214,0 +170773118093,214,0 +170773118141,214,0 +170773118189,214,0 +170773118238,214,0 +170773118286,214,0 +170773118334,214,0 +170773118384,214,0 +170773118433,215,0 +170773118481,215,0 +170773118529,215,0 +170773118577,215,0 +170773118626,215,0 +170773118676,215,0 +170773118724,214,0 +170773118772,213,0 +170773118820,213,0 +170773118868,214,0 +170773118915,214,0 +170773118965,214,0 +170773119013,214,0 +170773119062,214,0 +170773119110,214,0 +170773119158,214,0 +170773119206,214,0 +170773119256,214,0 +170773119304,215,0 +170773119351,214,0 +170773119401,215,0 +170773119450,215,0 +170773119498,214,0 +170773119548,215,0 +170773119596,215,0 +170773119644,213,0 +170773119693,213,0 +170773119743,213,0 +170773119792,213,0 +170773119840,214,0 +170773119888,214,0 +170773119938,214,0 +170773119987,214,0 +170773120037,214,0 +170773120084,214,0 +170773120132,214,0 +170773120180,214,0 +170773120228,214,0 +170773120276,215,0 +170773120324,215,0 +170773120373,215,0 +170773120421,215,0 +170773120469,215,0 +170773120518,214,0 +170773120566,213,0 +170773120616,213,0 +170773120665,213,0 +170773120715,214,0 +170773120763,213,0 +170773120812,214,0 +170773120862,214,0 +170773120910,214,0 +170773120958,214,0 +170773121007,214,0 +170773121055,214,0 +170773121103,214,0 +170773121151,214,0 +170773121201,215,0 +170773121248,215,0 +170773121298,215,0 +170773121347,215,0 +170773121395,215,0 +170773121443,213,0 +170773121493,213,0 +170773121540,213,0 +170773121588,214,0 +170773121636,214,0 +170773121684,214,0 +170773121732,214,0 +170773121780,214,0 +170773121829,214,0 +170773121877,214,0 +170773121925,214,0 +170773121973,214,0 +170773122020,215,0 +170773122068,214,0 +170773122116,215,0 +170773122164,215,0 +170773122213,215,0 +170773122261,215,0 +170773122309,214,0 +170773122358,213,0 +170773122406,214,0 +170773122454,214,0 +170773122504,214,0 +170773122553,214,0 +170773122601,214,0 +170773122649,214,0 +170773122697,214,0 +170773122746,214,0 +170773122794,214,0 +170773122842,215,0 +170773122892,215,0 +170773122940,215,0 +170773122988,215,0 +170773123036,215,0 +170773123084,215,0 +170773123132,215,0 +170773123179,215,0 +170773123227,214,0 +170773123277,214,0 +170773123325,214,0 +170773123373,214,0 +170773123422,214,0 +170773123470,214,0 +170773123520,214,0 +170773123569,214,0 +170773123619,215,0 +170773123667,215,0 +170773123716,215,0 +170773123764,215,0 +170773123812,215,0 +170773123861,215,0 +170773123911,215,0 +170773123959,215,0 +170773124007,215,0 +170773124056,215,0 +170773124106,214,0 +170773124155,214,0 +170773124203,214,0 +170773124251,214,0 +170773124299,214,0 +170773124346,214,0 +170773124394,214,0 +170773124442,214,0 +170773124492,215,0 +170773124541,215,0 +170773124589,215,0 +170773124637,215,0 +170773124687,215,0 +170773124736,215,0 +170773124784,215,0 +170773124832,215,0 +170773124879,215,0 +170773124927,215,0 +170773124975,215,0 +170773125024,214,0 +170773125072,214,0 +170773125120,214,0 +170773125169,214,0 +170773125217,214,0 +170773125267,214,0 +170773125316,215,0 +170773125364,214,0 +170773125412,215,0 +170773125460,215,0 +170773125507,215,0 +170773125555,215,0 +170773125603,215,0 +170773125651,215,0 +170773125699,215,0 +170773125746,215,0 +170773125794,215,0 +170773125842,215,0 +170773125890,214,0 +170773125938,214,0 +170773125985,214,0 +170773126033,214,0 +170773126081,214,0 +170773126129,214,0 +170773126177,215,0 +170773126225,214,0 +170773126274,215,0 +170773126322,215,0 +170773126371,215,0 +170773126419,215,0 +170773126467,215,0 +170773126515,215,0 +170773126564,215,0 +170773126613,215,0 +170773126661,215,0 +170773126709,215,0 +170773126757,215,0 +170773126805,215,0 +170773126852,214,0 +170773126900,215,0 +170773126948,215,0 +170773126998,215,0 +170773127045,215,0 +170773127093,215,0 +170773127141,215,0 +170773127189,215,0 +170773127237,215,0 +170773127284,215,0 +170773127332,215,0 +170773127382,215,0 +170773127431,215,0 +170773127479,215,0 +170773127527,215,0 +170773127575,215,0 +170773127622,215,0 +170773127670,215,0 +170773127720,214,0 +170773127767,214,0 +170773127815,215,0 +170773127863,214,0 +170773127911,214,0 +170773127959,214,0 +170773128008,215,0 +170773128056,215,0 +170773128104,215,0 +170773128152,215,0 +170773128199,215,0 +170773128249,215,0 +170773128298,215,0 +170773128346,215,0 +170773128394,215,0 +170773128441,215,0 +170773128489,215,0 +170773128537,215,0 +170773128586,214,0 +170773128634,214,0 +170773128682,214,0 +170773128730,214,0 +170773128778,214,0 +170773128826,214,0 +170773128874,214,0 +170773128921,214,0 +170773128969,215,0 +170773129017,214,0 +170773129065,215,0 +170773129113,215,0 +170773129160,215,0 +170773129208,215,0 +170773129256,215,0 +170773129306,215,0 +170773129354,215,0 +170773129403,215,0 +170773129451,215,0 +170773129499,214,0 +170773129547,214,0 +170773129595,214,0 +170773129643,214,0 +170773129692,214,0 +170773129740,214,0 +170773129790,214,0 +170773129838,215,0 +170773129885,214,0 +170773129933,215,0 +170773129981,215,0 +170773130029,215,0 +170773130078,215,0 +170773130126,215,0 +170773130174,216,0 +170773130223,215,0 +170773130273,215,0 +170773130321,215,0 +170773130368,214,0 +170773130416,213,0 +170773130464,214,0 +170773130512,214,0 +170773130560,214,0 +170773130607,214,0 +170773130657,214,0 +170773130705,214,0 +170773130754,215,0 +170773130804,215,0 +170773130851,215,0 +170773130899,215,0 +170773130947,215,0 +170773130997,215,0 +170773131045,215,0 +170773131092,215,0 +170773131140,215,0 +170773131188,215,0 +170773131236,215,0 +170773131286,214,0 +170773131334,214,0 +170773131382,214,0 +170773131431,214,0 +170773131480,214,0 +170773131530,214,0 +170773131579,214,0 +170773131629,215,0 +170773131677,215,0 +170773131725,215,0 +170773131773,215,0 +170773131821,215,0 +170773131869,215,0 +170773131916,215,0 +170773131964,215,0 +170773132012,215,0 +170773132062,215,0 +170773132110,215,0 +170773132159,215,0 +170773132207,214,0 +170773132257,214,0 +170773132305,214,0 +170773132354,214,0 +170773132404,214,0 +170773132451,214,0 +170773132499,214,0 +170773132547,214,0 +170773132595,214,0 +170773132643,215,0 +170773132691,215,0 +170773132739,215,0 +170773132789,215,0 +170773132838,215,0 +170773132886,215,0 +170773132936,215,0 +170773132985,215,0 +170773133033,215,0 +170773133081,214,0 +170773133129,213,0 +170773133178,213,0 +170773133226,214,0 +170773133274,214,0 +170773133324,214,0 +170773133373,214,0 +170773133421,214,0 +170773133469,214,0 +170773133519,214,0 +170773133566,214,0 +170773133614,214,0 +170773133662,214,0 +170773133710,214,0 +170773133760,215,0 +170773133809,214,0 +170773133857,215,0 +170773133907,215,0 +170773133955,215,0 +170773134004,213,0 +170773134054,214,0 +170773134101,214,0 +170773134149,214,0 +170773134197,214,0 +170773134245,214,0 +170773134293,214,0 +170773134341,214,0 +170773134389,214,0 +170773134437,215,0 +170773134484,214,0 +170773134532,215,0 +170773134582,215,0 +170773134629,215,0 +170773134677,215,0 +170773134725,215,0 +170773134773,215,0 +170773134821,215,0 +170773134870,214,0 +170773134918,213,0 +170773134966,213,0 +170773135014,214,0 +170773135061,214,0 +170773135109,214,0 +170773135159,214,0 +170773135207,214,0 +170773135254,214,0 +170773135302,214,0 +170773135350,214,0 +170773135398,215,0 +170773135446,215,0 +170773135495,215,0 +170773135544,215,0 +170773135592,215,0 +170773135640,215,0 +170773135688,215,0 +170773135736,215,0 +170773135784,214,0 +170773135831,214,0 +170773135879,213,0 +170773135927,214,0 +170773135975,214,0 +170773136024,214,0 +170773136072,214,0 +170773136120,214,0 +170773136168,214,0 +170773136216,214,0 +170773136264,214,0 +170773136311,214,0 +170773136359,214,0 +170773136407,215,0 +170773136455,215,0 +170773136504,215,0 +170773136552,215,0 +170773136600,215,0 +170773136648,214,0 +170773136696,214,0 +170773136745,214,0 +170773136793,214,0 +170773136841,214,0 +170773136888,214,0 +170773136936,214,0 +170773136984,214,0 +170773137032,214,0 +170773137080,214,0 +170773137127,214,0 +170773137175,215,0 +170773137223,215,0 +170773137271,215,0 +170773137319,215,0 +170773137366,215,0 +170773137416,215,0 +170773137464,215,0 +170773137512,215,0 +170773137560,214,0 +170773137607,214,0 +170773137657,214,0 +170773137705,214,0 +170773137752,214,0 +170773137800,214,0 +170773137848,214,0 +170773137897,215,0 +170773137945,215,0 +170773137993,214,0 +170773138041,215,0 +170773138090,215,0 +170773138138,215,0 +170773138187,215,0 +170773138235,215,0 +170773138283,215,0 +170773138331,215,0 +170773138379,215,0 +170773138428,215,0 +170773138476,214,0 +170773138524,214,0 +170773138572,214,0 +170773138620,214,0 +170773138668,214,0 +170773138715,214,0 +170773138763,215,0 +170773138811,214,0 +170773138859,215,0 +170773138907,215,0 +170773138954,215,0 +170773139004,215,0 +170773139052,215,0 +170773139099,215,0 +170773139147,215,0 +170773139195,215,0 +170773139243,215,0 +170773139292,215,0 +170773139340,214,0 +170773139388,214,0 +170773139436,214,0 +170773139485,214,0 +170773139534,214,0 +170773139582,214,0 +170773139630,214,0 +170773139678,214,0 +170773139726,215,0 +170773139773,215,0 +170773139821,215,0 +170773139869,215,0 +170773139917,215,0 +170773139965,215,0 +170773140013,215,0 +170773140060,215,0 +170773140108,215,0 +170773140156,215,0 +170773140204,215,0 +170773140253,214,0 +170773140301,214,0 +170773140349,214,0 +170773140397,214,0 +170773140444,214,0 +170773140494,214,0 +170773140542,214,0 +170773140591,214,0 +170773140639,215,0 +170773140687,215,0 +170773140734,215,0 +170773140784,215,0 +170773140832,215,0 +170773140881,215,0 +170773140929,215,0 +170773140977,215,0 +170773141025,215,0 +170773141072,215,0 +170773141120,214,0 +170773141168,214,0 +170773141216,214,0 +170773141264,214,0 +170773141312,214,0 +170773141361,214,0 +170773141410,214,0 +170773141458,214,0 +170773141508,214,0 +170773141555,214,0 +170773141603,214,0 +170773141651,215,0 +170773141699,214,0 +170773141747,215,0 +170773141795,215,0 +170773141842,215,0 +170773141892,215,0 +170773141940,214,0 +170773141988,215,0 +170773142035,214,0 +170773142085,213,0 +170773142133,214,0 +170773142180,214,0 +170773142228,214,0 +170773142276,214,0 +170773142324,214,0 +170773142372,214,0 +170773142420,214,0 +170773142469,214,0 +170773142517,214,0 +170773142565,214,0 +170773142613,214,0 +170773142662,215,0 +170773142710,215,0 +170773142759,215,0 +170773142807,215,0 +170773142855,215,0 +170773142903,215,0 +170773142951,214,0 +170773142999,214,0 +170773143047,213,0 +170773143095,213,0 +170773143142,214,0 +170773143190,214,0 +170773143238,214,0 +170773143286,214,0 +170773143334,214,0 +170773143382,214,0 +170773143429,214,0 +170773143477,214,0 +170773143525,214,0 +170773143574,215,0 +170773143622,214,0 +170773143670,214,0 +170773143718,215,0 +170773143766,215,0 +170773143813,215,0 +170773143861,213,0 +170773143911,214,0 +170773143958,214,0 +170773144006,214,0 +170773144054,214,0 +170773144103,214,0 +170773144151,214,0 +170773144199,214,0 +170773144247,214,0 +170773144295,214,0 +170773144343,214,0 +170773144390,214,0 +170773144438,215,0 +170773144486,215,0 +170773144534,215,0 +170773144582,215,0 +170773144631,215,0 +170773144679,215,0 +170773144727,214,0 +170773144775,213,0 +170773144822,214,0 +170773144872,214,0 +170773144921,214,0 +170773144969,214,0 +170773145017,214,0 +170773145066,214,0 +170773145114,214,0 +170773145163,214,0 +170773145211,215,0 +170773145259,215,0 +170773145307,215,0 +170773145355,215,0 +170773145403,215,0 +170773145450,215,0 +170773145498,215,0 +170773145546,215,0 +170773145594,215,0 +170773145642,214,0 +170773145689,214,0 +170773145737,214,0 +170773145785,214,0 +170773145833,214,0 +170773145882,214,0 +170773145930,214,0 +170773145978,215,0 +170773146026,214,0 +170773146075,215,0 +170773146123,215,0 +170773146171,215,0 +170773146219,215,0 +170773146267,215,0 +170773146314,215,0 +170773146362,215,0 +170773146410,215,0 +170773146458,215,0 +170773146505,215,0 +170773146553,214,0 +170773146603,214,0 +170773146652,214,0 +170773146702,214,0 +170773146751,214,0 +170773146801,214,0 +170773146850,214,0 +170773146898,214,0 +170773146946,214,0 +170773146996,215,0 +170773147045,215,0 +170773147094,215,0 +170773147144,215,0 +170773147193,215,0 +170773147241,215,0 +170773147289,215,0 +170773147337,215,0 +170773147385,215,0 +170773147435,214,0 +170773147482,214,0 +170773147532,214,0 +170773147581,214,0 +170773147631,214,0 +170773147679,214,0 +170773147727,214,0 +170773147775,215,0 +170773147824,215,0 +170773147872,215,0 +170773147920,215,0 +170773147968,215,0 +170773148017,215,0 +170773148065,215,0 +170773148113,215,0 +170773148161,215,0 +170773148210,215,0 +170773148258,215,0 +170773148308,214,0 +170773148357,214,0 +170773148405,214,0 +170773148453,214,0 +170773148501,214,0 +170773148551,214,0 +170773148599,214,0 +170773148646,214,0 +170773148694,215,0 +170773148744,215,0 +170773148792,215,0 +170773148840,215,0 +170773148889,215,0 +170773148937,215,0 +170773148987,215,0 +170773149036,215,0 +170773149085,215,0 +170773149133,215,0 +170773149181,215,0 +170773149229,214,0 +170773149277,213,0 +170773149325,214,0 +170773149373,214,0 +170773149421,214,0 +170773149469,214,0 +170773149517,214,0 +170773149565,214,0 +170773149613,214,0 +170773149661,214,0 +170773149709,215,0 +170773149756,215,0 +170773149804,215,0 +170773149852,215,0 +170773149900,215,0 +170773149948,215,0 +170773149996,215,0 +170773150043,215,0 +170773150093,215,0 +170773150141,214,0 +170773150190,214,0 +170773150238,214,0 +170773150286,214,0 +170773150334,214,0 +170773150382,214,0 +170773150429,214,0 +170773150479,214,0 +170773150528,214,0 +170773150578,215,0 +170773150626,214,0 +170773150673,215,0 +170773150721,215,0 +170773150769,215,0 +170773150817,215,0 +170773150865,215,0 +170773150914,215,0 +170773150962,215,0 +170773151010,214,0 +170773151058,214,0 +170773151106,214,0 +170773151153,214,0 +170773151201,214,0 +170773151249,214,0 +170773151297,214,0 +170773151346,214,0 +170773151394,214,0 +170773151444,214,0 +170773151492,215,0 +170773151540,215,0 +170773151588,215,0 +170773151636,215,0 +170773151684,215,0 +170773151732,215,0 +170773151779,215,0 +170773151829,215,0 +170773151877,215,0 +170773151925,214,0 +170773151973,214,0 +170773152021,214,0 +170773152070,214,0 +170773152118,214,0 +170773152166,214,0 +170773152214,214,0 +170773152263,214,0 +170773152311,215,0 +170773152361,215,0 +170773152409,215,0 +170773152458,215,0 +170773152506,215,0 +170773152555,215,0 +170773152605,215,0 +170773152653,215,0 +170773152702,215,0 +170773152752,215,0 +170773152800,214,0 +170773152848,214,0 +170773152896,214,0 +170773152943,214,0 +170773152991,214,0 +170773153039,214,0 +170773153087,215,0 +170773153135,215,0 +170773153183,215,0 +170773153232,215,0 +170773153280,215,0 +170773153328,215,0 +170773153377,215,0 +170773153427,215,0 +170773153476,215,0 +170773153526,215,0 +170773153575,215,0 +170773153625,215,0 +170773153674,215,0 +170773153723,214,0 +170773153771,214,0 +170773153819,214,0 +170773153869,214,0 +170773153918,214,0 +170773153966,214,0 +170773154016,215,0 +170773154064,215,0 +170773154113,215,0 +170773154161,215,0 +170773154210,215,0 +170773154258,215,0 +170773154306,215,0 +170773154356,215,0 +170773154405,215,0 +170773154455,215,0 +170773154504,215,0 +170773154554,215,0 +170773154602,214,0 +170773154651,214,0 +170773154699,214,0 +170773154749,214,0 +170773154797,214,0 +170773154846,214,0 +170773154895,214,0 +170773154945,214,0 +170773154994,215,0 +170773155044,215,0 +170773155092,215,0 +170773155141,215,0 +170773155189,215,0 +170773155237,215,0 +170773155285,215,0 +170773155333,215,0 +170773155381,215,0 +170773155430,215,0 +170773155478,215,0 +170773155526,214,0 +170773155574,214,0 +170773155624,214,0 +170773155673,214,0 +170773155721,214,0 +170773155769,214,0 +170773155818,214,0 +170773155866,214,0 +170773155916,214,0 +170773155964,215,0 +170773156012,215,0 +170773156059,215,0 +170773156109,215,0 +170773156157,215,0 +170773156206,215,0 +170773156254,215,0 +170773156304,215,0 +170773156352,215,0 +170773156401,214,0 +170773156451,214,0 +170773156499,214,0 +170773156548,214,0 +170773156598,214,0 +170773156647,214,0 +170773156695,214,0 +170773156745,214,0 +170773156793,214,0 +170773156842,214,0 +170773156890,214,0 +170773156938,215,0 +170773156986,215,0 +170773157035,215,0 +170773157085,215,0 +170773157134,215,0 +170773157182,215,0 +170773157230,215,0 +170773157279,214,0 +170773157327,213,0 +170773157375,214,0 +170773157423,214,0 +170773157471,214,0 +170773157519,214,0 +170773157567,214,0 +170773157615,214,0 +170773157664,214,0 +170773157712,214,0 +170773157761,214,0 +170773157809,214,0 +170773157859,214,0 +170773157908,215,0 +170773157956,215,0 +170773158004,215,0 +170773158052,215,0 +170773158100,215,0 +170773158148,215,0 +170773158197,214,0 +170773158245,213,0 +170773158295,214,0 +170773158342,214,0 +170773158390,214,0 +170773158438,214,0 +170773158488,214,0 +170773158536,214,0 +170773158583,214,0 +170773158631,214,0 +170773158679,214,0 +170773158727,215,0 +170773158775,214,0 +170773158823,215,0 +170773158871,215,0 +170773158919,215,0 +170773158967,215,0 +170773159015,215,0 +170773159062,215,0 +170773159112,214,0 +170773159160,214,0 +170773159208,214,0 +170773159255,214,0 +170773159303,214,0 +170773159351,214,0 +170773159401,214,0 +170773159449,214,0 +170773159498,214,0 +170773159548,214,0 +170773159596,214,0 +170773159643,214,0 +170773159691,215,0 +170773159741,215,0 +170773159789,215,0 +170773159836,215,0 +170773159884,215,0 +170773159934,215,0 +170773159982,214,0 +170773160030,213,0 +170773160078,213,0 +170773160125,214,0 +170773160175,214,0 +170773160224,214,0 +170773160272,214,0 +170773160322,214,0 +170773160370,214,0 +170773160418,214,0 +170773160466,215,0 +170773160515,215,0 +170773160563,215,0 +170773160611,215,0 +170773160659,215,0 +170773160709,215,0 +170773160758,215,0 +170773160806,215,0 +170773160856,215,0 +170773160904,213,0 +170773160952,213,0 +170773160999,214,0 +170773161047,214,0 +170773161095,214,0 +170773161143,214,0 +170773161192,214,0 +170773161240,214,0 +170773161290,214,0 +170773161339,214,0 +170773161387,215,0 +170773161435,215,0 +170773161485,215,0 +170773161532,215,0 +170773161580,215,0 +170773161628,215,0 +170773161678,215,0 +170773161726,215,0 +170773161774,214,0 +170773161822,214,0 +170773161871,213,0 +170773161919,214,0 +170773161969,214,0 +170773162017,214,0 +170773162065,214,0 +170773162112,214,0 +170773162160,214,0 +170773162208,215,0 +170773162258,215,0 +170773162307,215,0 +170773162355,215,0 +170773162405,215,0 +170773162454,215,0 +170773162502,215,0 +170773162550,215,0 +170773162598,215,0 +170773162646,215,0 +170773162695,213,0 +170773162743,214,0 +170773162793,214,0 +170773162841,214,0 +170773162890,214,0 +170773162938,214,0 +170773162988,214,0 +170773163036,214,0 +170773163084,214,0 +170773163132,214,0 +170773163179,214,0 +170773163227,215,0 +170773163275,215,0 +170773163325,215,0 +170773163374,215,0 +170773163424,215,0 +170773163473,215,0 +170773163521,215,0 +170773163570,214,0 +170773163620,213,0 +170773163668,214,0 +170773163716,214,0 +170773163765,214,0 +170773163813,214,0 +170773163861,214,0 +170773163909,214,0 +170773163957,214,0 +170773164004,214,0 +170773164052,214,0 +170773164100,215,0 +170773164148,215,0 +170773164196,215,0 +170773164243,215,0 +170773164291,215,0 +170773164339,215,0 +170773164387,215,0 +170773164435,215,0 +170773164485,214,0 +170773164533,214,0 +170773164581,214,0 +170773164628,214,0 +170773164678,214,0 +170773164726,214,0 +170773164775,214,0 +170773164823,214,0 +170773164873,214,0 +170773164920,215,0 +170773164970,215,0 +170773165018,215,0 +170773165065,215,0 +170773165113,215,0 +170773165163,215,0 +170773165211,215,0 +170773165258,215,0 +170773165306,215,0 +170773165354,214,0 +170773165402,214,0 +170773165450,214,0 +170773165498,214,0 +170773165546,214,0 +170773165596,214,0 +170773165645,214,0 +170773165693,215,0 +170773165741,215,0 +170773165789,215,0 +170773165837,215,0 +170773165886,215,0 +170773165934,215,0 +170773165984,215,0 +170773166032,215,0 +170773166080,215,0 +170773166127,215,0 +170773166175,215,0 +170773166225,215,0 +170773166273,214,0 +170773166321,214,0 +170773166370,214,0 +170773166418,214,0 +170773166468,214,0 +170773166516,214,0 +170773166563,215,0 +170773166613,215,0 +170773166661,215,0 +170773166709,215,0 +170773166756,215,0 +170773166804,215,0 +170773166852,215,0 +170773166900,215,0 +170773166948,215,0 +170773166996,215,0 +170773167044,215,0 +170773167091,215,0 +170773167141,214,0 +170773167189,214,0 +170773167237,214,0 +170773167285,214,0 +170773167334,214,0 +170773167382,214,0 +170773167430,215,0 +170773167478,214,0 +170773167526,215,0 +170773167575,214,0 +170773167623,215,0 +170773167671,215,0 +170773167720,215,0 +170773167770,215,0 +170773167818,215,0 +170773167866,215,0 +170773167913,215,0 +170773167961,215,0 +170773168011,215,0 +170773168059,214,0 +170773168108,214,0 +170773168156,214,0 +170773168204,214,0 +170773168252,214,0 +170773168300,214,0 +170773168349,214,0 +170773168397,214,0 +170773168447,215,0 +170773168495,215,0 +170773168543,215,0 +170773168590,215,0 +170773168640,215,0 +170773168688,215,0 +170773168737,215,0 +170773168785,215,0 +170773168835,215,0 +170773168884,215,0 +170773168932,214,0 +170773168980,214,0 +170773169028,214,0 +170773169077,214,0 +170773169125,214,0 +170773169173,214,0 +170773169223,214,0 +170773169270,214,0 +170773169318,214,0 +170773169366,215,0 +170773169416,215,0 +170773169465,214,0 +170773169515,215,0 +170773169563,215,0 +170773169611,215,0 +170773169660,215,0 +170773169708,215,0 +170773169758,215,0 +170773169806,214,0 +170773169854,214,0 +170773169901,214,0 +170773169949,214,0 +170773169997,214,0 +170773170045,214,0 +170773170093,214,0 +170773170142,214,0 +170773170192,214,0 +170773170240,214,0 +170773170288,215,0 +170773170336,215,0 +170773170385,215,0 +170773170433,215,0 +170773170481,215,0 +170773170529,215,0 +170773170578,215,0 +170773170626,215,0 +170773170674,215,0 +170773170722,214,0 +170773170770,213,0 +170773170819,213,0 +170773170867,214,0 +170773170915,214,0 +170773170963,214,0 +170773171011,214,0 +170773171059,214,0 +170773171108,214,0 +170773171156,214,0 +170773171206,215,0 +170773171255,215,0 +170773171303,215,0 +170773171351,215,0 +170773171401,215,0 +170773171448,215,0 +170773171496,215,0 +170773171544,215,0 +170773171592,215,0 +170773171641,214,0 +170773171689,214,0 +170773171737,214,0 +170773171785,214,0 +170773171833,214,0 +170773171881,214,0 +170773171929,214,0 +170773171977,214,0 +170773172025,215,0 +170773172072,215,0 +170773172120,215,0 +170773172168,215,0 +170773172216,215,0 +170773172264,215,0 +170773172313,215,0 +170773172363,215,0 +170773172411,215,0 +170773172459,215,0 +170773172507,215,0 +170773172554,213,0 +170773172604,214,0 +170773172653,214,0 +170773172701,214,0 +170773172749,214,0 +170773172799,214,0 +170773172846,214,0 +170773172896,214,0 +170773172944,214,0 +170773172991,215,0 +170773173039,215,0 +170773173087,215,0 +170773173135,215,0 +170773173185,215,0 +170773173232,215,0 +170773173280,215,0 +170773173328,215,0 +170773173376,215,0 +170773173424,214,0 +170773173474,213,0 +170773173523,213,0 +170773173571,213,0 +170773173620,214,0 +170773173668,214,0 +170773173716,214,0 +170773173764,214,0 +170773173814,214,0 +170773173863,214,0 +170773173913,214,0 +170773173961,214,0 +170773174008,214,0 +170773174056,215,0 +170773174106,215,0 +170773174154,214,0 +170773174202,215,0 +170773174250,215,0 +170773174298,214,0 +170773174345,213,0 +170773174393,213,0 +170773174443,213,0 +170773174490,213,0 +170773174538,213,0 +170773174586,213,0 +170773174636,214,0 +170773174684,214,0 +170773174732,214,0 +170773174779,214,0 +170773174827,214,0 +170773174875,214,0 +170773174923,215,0 +170773174971,215,0 +170773175021,214,0 +170773175070,214,0 +170773175118,214,0 +170773175166,215,0 +170773175214,214,0 +170773175262,214,0 +170773175311,214,0 +170773175359,214,0 +170773175409,214,0 +170773175457,214,0 +170773175506,214,0 +170773175556,214,0 +170773175605,214,0 +170773175653,214,0 +170773175701,214,0 +170773175750,214,0 +170773175800,215,0 +170773175849,215,0 +170773175897,215,0 +170773175945,215,0 +170773175995,214,0 +170773176044,215,0 +170773176094,215,0 +170773176143,214,0 +170773176193,213,0 +170773176241,214,0 +170773176288,214,0 +170773176336,214,0 +170773176384,214,0 +170773176432,214,0 +170773176480,214,0 +170773176528,214,0 +170773176576,214,0 +170773176624,214,0 +170773176673,214,0 +170773176721,214,0 +170773176769,214,0 +170773176817,215,0 +170773176865,215,0 +170773176913,215,0 +170773176962,215,0 +170773177012,214,0 +170773177059,214,0 +170773177107,213,0 +170773177157,214,0 +170773177205,213,0 +170773177254,213,0 +170773177302,214,0 +170773177350,214,0 +170773177398,214,0 +170773177446,214,0 +170773177495,214,0 +170773177543,214,0 +170773177591,214,0 +170773177639,214,0 +170773177687,214,0 +170773177735,215,0 +170773177783,215,0 +170773177832,215,0 +170773177882,215,0 +170773177930,213,0 +170773177977,214,0 +170773178026,213,0 +170773178073,214,0 +170773178121,213,0 +170773178169,214,0 +170773178219,214,0 +170773178268,214,0 +170773178316,214,0 +170773178366,214,0 +170773178415,214,0 +170773178465,214,0 +170773178513,214,0 +170773178560,214,0 +170773178608,215,0 +170773178658,214,0 +170773178706,215,0 +170773178754,215,0 +170773178801,214,0 +170773178849,214,0 +170773178897,214,0 +170773178947,214,0 +170773178994,214,0 +170773179044,214,0 +170773179093,214,0 +170773179141,214,0 +170773179191,214,0 +170773179239,214,0 +170773179288,214,0 +170773179336,214,0 +170773179386,215,0 +170773179433,215,0 +170773179481,215,0 +170773179531,215,0 +170773179579,215,0 +170773179628,215,0 +170773179676,215,0 +170773179724,214,0 +170773179774,214,0 +170773179822,214,0 +170773179871,214,0 +170773179921,214,0 +170773179969,215,0 +170773180017,215,0 +170773180066,215,0 +170773180114,215,0 +170773180162,215,0 +170773180210,215,0 +170773180258,215,0 +170773180305,215,0 +170773180355,215,0 +170773180403,215,0 +170773180451,215,0 +170773180499,215,0 +170773180546,215,0 +170773180594,214,0 +170773180644,214,0 +170773180692,215,0 +170773180741,214,0 +170773180789,215,0 +170773180837,215,0 +170773180885,215,0 +170773180933,215,0 +170773180983,215,0 +170773181031,215,0 +170773181080,215,0 +170773181128,215,0 +170773181177,215,0 +170773181225,215,0 +170773181275,215,0 +170773181323,215,0 +170773181371,215,0 +170773181418,215,0 +170773181466,214,0 +170773181514,215,0 +170773181564,215,0 +170773181612,215,0 +170773181661,214,0 +170773181711,215,0 +170773181760,215,0 +170773181808,215,0 +170773181857,215,0 +170773181905,215,0 +170773181953,215,0 +170773182003,215,0 +170773182051,216,0 +170773182099,215,0 +170773182146,215,0 +170773182194,215,0 +170773182244,215,0 +170773182293,215,0 +170773182341,215,0 +170773182389,214,0 +170773182437,214,0 +170773182487,214,0 +170773182535,215,0 +170773182583,214,0 +170773182630,215,0 +170773182678,215,0 +170773182728,215,0 +170773182776,215,0 +170773182825,215,0 +170773182873,215,0 +170773182921,215,0 +170773182969,215,0 +170773183017,215,0 +170773183065,215,0 +170773183115,215,0 +170773183163,215,0 +170773183210,215,0 +170773183260,214,0 +170773183308,214,0 +170773183356,214,0 +170773183404,215,0 +170773183452,215,0 +170773183501,215,0 +170773183551,215,0 +170773183599,215,0 +170773183647,215,0 +170773183694,215,0 +170773183744,215,0 +170773183792,215,0 +170773183840,215,0 +170773183888,215,0 +170773183936,215,0 +170773183985,215,0 +170773184033,215,0 +170773184082,215,0 +170773184130,215,0 +170773184180,214,0 +170773184229,214,0 +170773184277,214,0 +170773184327,214,0 +170773184375,214,0 +170773184423,214,0 +170773184471,214,0 +170773184518,214,0 +170773184566,214,0 +170773184616,214,0 +170773184663,214,0 +170773184711,215,0 +170773184761,215,0 +170773184809,215,0 +170773184857,215,0 +170773184905,215,0 +170773184953,215,0 +170773185001,215,0 +170773185049,214,0 +170773185096,213,0 +170773185146,214,0 +170773185194,214,0 +170773185242,213,0 +170773185290,214,0 +170773185337,214,0 +170773185385,214,0 +170773185433,214,0 +170773185481,214,0 +170773185529,214,0 +170773185577,215,0 +170773185625,214,0 +170773185674,215,0 +170773185722,215,0 +170773185770,215,0 +170773185819,215,0 +170773185867,215,0 +170773185915,215,0 +170773185963,214,0 +170773186011,214,0 +170773186059,214,0 +170773186107,214,0 +170773186155,214,0 +170773186204,214,0 +170773186252,214,0 +170773186301,214,0 +170773186349,214,0 +170773186399,214,0 +170773186447,215,0 +170773186495,214,0 +170773186543,215,0 +170773186590,214,0 +170773186638,214,0 +170773186686,214,0 +170773186734,214,0 +170773186782,215,0 +170773186830,214,0 +170773186879,213,0 +170773186929,213,0 +170773186977,213,0 +170773187026,213,0 +170773187074,213,0 +170773187122,214,0 +170773187172,214,0 +170773187221,214,0 +170773187269,214,0 +170773187319,214,0 +170773187367,214,0 +170773187415,214,0 +170773187464,214,0 +170773187514,214,0 +170773187563,214,0 +170773187611,215,0 +170773187660,215,0 +170773187708,214,0 +170773187756,213,0 +170773187804,213,0 +170773187852,213,0 +170773187902,213,0 +170773187951,213,0 +170773187999,213,0 +170773188047,214,0 +170773188095,214,0 +170773188143,214,0 +170773188191,214,0 +170773188239,214,0 +170773188288,214,0 +170773188336,214,0 +170773188386,215,0 +170773188434,214,0 +170773188481,215,0 +170773188531,215,0 +170773188579,215,0 +170773188627,214,0 +170773188675,213,0 +170773188723,213,0 +170773188772,214,0 +170773188822,214,0 +170773188869,214,0 +170773188917,214,0 +170773188967,214,0 +170773189015,214,0 +170773189063,214,0 +170773189112,214,0 +170773189160,214,0 +170773189208,215,0 +170773189256,215,0 +170773189305,215,0 +170773189353,215,0 +170773189401,215,0 +170773189449,215,0 +170773189499,215,0 +170773189547,213,0 +170773189596,213,0 +170773189646,214,0 +170773189694,214,0 +170773189742,214,0 +170773189790,214,0 +170773189837,214,0 +170773189885,214,0 +170773189933,214,0 +170773189983,215,0 +170773190032,215,0 +170773190082,215,0 +170773190131,215,0 +170773190181,215,0 +170773190230,215,0 +170773190279,215,0 +170773190329,215,0 +170773190378,215,0 +170773190426,213,0 +170773190476,213,0 +170773190524,213,0 +170773190572,214,0 +170773190620,214,0 +170773190668,214,0 +170773190716,214,0 +170773190763,214,0 +170773190811,214,0 +170773190859,214,0 +170773190909,214,0 +170773190958,214,0 +170773191008,214,0 +170773191056,215,0 +170773191103,215,0 +170773191153,215,0 +170773191202,214,0 +170773191250,215,0 +170773191298,214,0 +170773191346,213,0 +170773191395,213,0 +170773191443,213,0 +170773191491,213,0 +170773191539,214,0 +170773191588,214,0 +170773191636,214,0 +170773191684,214,0 +170773191732,214,0 +170773191780,214,0 +170773191828,214,0 +170773191875,214,0 +170773191923,214,0 +170773191971,215,0 +170773192019,215,0 +170773192067,215,0 +170773192115,215,0 +170773192163,215,0 +170773192212,213,0 +170773192261,213,0 +170773192310,213,0 +170773192357,213,0 +170773192405,213,0 +170773192455,213,0 +170773192504,214,0 +170773192552,214,0 +170773192600,214,0 +170773192649,214,0 +170773192699,214,0 +170773192747,214,0 +170773192795,214,0 +170773192844,214,0 +170773192894,214,0 +170773192942,214,0 +170773192991,214,0 +170773193041,214,0 +170773193088,215,0 +170773193138,215,0 +170773193187,215,0 +170773193237,215,0 +170773193286,215,0 +170773193334,215,0 +170773193382,215,0 +170773193430,215,0 +170773193480,215,0 +170773193527,214,0 +170773193575,213,0 +170773193623,214,0 +170773193671,214,0 +170773193719,214,0 +170773193767,214,0 +170773193815,214,0 +170773193863,214,0 +170773193910,214,0 +170773193958,214,0 +170773194006,215,0 +170773194054,215,0 +170773194102,215,0 +170773194149,215,0 +170773194197,215,0 +170773194245,215,0 +170773194293,215,0 +170773194343,215,0 +170773194392,215,0 +170773194440,214,0 +170773194488,214,0 +170773194538,214,0 +170773194587,214,0 +170773194635,214,0 +170773194685,214,0 +170773194733,214,0 +170773194780,214,0 +170773194828,214,0 +170773194876,214,0 +170773194924,215,0 +170773194972,215,0 +170773195022,215,0 +170773195069,215,0 +170773195117,215,0 +170773195165,215,0 +170773195213,215,0 +170773195261,215,0 +170773195310,215,0 +170773195360,214,0 +170773195408,214,0 +170773195457,214,0 +170773195505,214,0 +170773195553,214,0 +170773195601,214,0 +170773195649,214,0 +170773195697,214,0 +170773195745,215,0 +170773195793,215,0 +170773195842,215,0 +170773195890,215,0 +170773195938,215,0 +170773195986,215,0 +170773196034,215,0 +170773196082,215,0 +170773196130,215,0 +170773196179,215,0 +170773196229,214,0 +170773196277,214,0 +170773196325,214,0 +170773196373,214,0 +170773196420,214,0 +170773196468,214,0 +170773196516,214,0 +170773196566,214,0 +170773196614,215,0 +170773196662,215,0 +170773196710,215,0 +170773196757,215,0 +170773196805,215,0 +170773196855,215,0 +170773196903,215,0 +170773196950,215,0 +170773197000,215,0 +170773197049,215,0 +170773197099,214,0 +170773197147,214,0 +170773197196,214,0 +170773197244,214,0 +170773197294,215,0 +170773197342,215,0 +170773197390,215,0 +170773197439,215,0 +170773197487,215,0 +170773197535,215,0 +170773197583,215,0 +170773197631,215,0 +170773197679,215,0 +170773197726,215,0 +170773197774,215,0 +170773197822,215,0 +170773197872,215,0 +170773197921,215,0 +170773197969,215,0 +170773198017,215,0 +170773198067,214,0 +170773198116,214,0 +170773198164,214,0 +170773198214,215,0 +170773198261,215,0 +170773198311,215,0 +170773198359,215,0 +170773198408,215,0 +170773198456,215,0 +170773198506,215,0 +170773198555,215,0 +170773198605,215,0 +170773198653,215,0 +170773198701,215,0 +170773198749,215,0 +170773198797,215,0 +170773198845,215,0 +170773198892,214,0 +170773198940,214,0 +170773198988,214,0 +170773199036,214,0 +170773199084,214,0 +170773199131,215,0 +170773199179,214,0 +170773199227,215,0 +170773199275,214,0 +170773199324,215,0 +170773199372,215,0 +170773199420,215,0 +170773199468,215,0 +170773199516,215,0 +170773199563,215,0 +170773199611,215,0 +170773199661,215,0 +170773199710,215,0 +170773199758,215,0 +170773199806,214,0 +170773199855,214,0 +170773199903,214,0 +170773199951,214,0 +170773199999,214,0 diff --git a/laser_value/0212-20.csv b/laser_value/0212-20.csv new file mode 100644 index 0000000..bbb2800 --- /dev/null +++ b/laser_value/0212-20.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170773200047,214,0 +170773200095,215,0 +170773200143,215,0 +170773200191,215,0 +170773200239,215,0 +170773200286,215,0 +170773200336,215,0 +170773200383,215,0 +170773200431,215,0 +170773200481,215,0 +170773200528,215,0 +170773200578,215,0 +170773200626,215,0 +170773200675,214,0 +170773200723,214,0 +170773200771,214,0 +170773200819,214,0 +170773200866,214,0 +170773200914,214,0 +170773200962,214,0 +170773201010,215,0 +170773201058,214,0 +170773201106,215,0 +170773201154,215,0 +170773201201,215,0 +170773201251,215,0 +170773201299,215,0 +170773201346,215,0 +170773201394,216,0 +170773201442,215,0 +170773201490,215,0 +170773201538,215,0 +170773201585,214,0 +170773201633,213,0 +170773201681,213,0 +170773201729,214,0 +170773201777,214,0 +170773201826,214,0 +170773201874,214,0 +170773201922,214,0 +170773201970,214,0 +170773202018,214,0 +170773202066,214,0 +170773202113,214,0 +170773202161,215,0 +170773202209,215,0 +170773202259,215,0 +170773202306,215,0 +170773202354,215,0 +170773202402,215,0 +170773202450,215,0 +170773202498,213,0 +170773202546,214,0 +170773202594,213,0 +170773202644,214,0 +170773202693,214,0 +170773202741,214,0 +170773202789,214,0 +170773202837,214,0 +170773202885,214,0 +170773202933,214,0 +170773202982,214,0 +170773203030,214,0 +170773203078,214,0 +170773203126,215,0 +170773203176,215,0 +170773203223,215,0 +170773203273,215,0 +170773203321,215,0 +170773203371,214,0 +170773203420,214,0 +170773203470,214,0 +170773203517,214,0 +170773203567,214,0 +170773203615,214,0 +170773203664,214,0 +170773203712,214,0 +170773203760,214,0 +170773203808,214,0 +170773203856,215,0 +170773203904,215,0 +170773203952,215,0 +170773204001,215,0 +170773204051,215,0 +170773204098,215,0 +170773204146,215,0 +170773204194,215,0 +170773204244,214,0 +170773204292,213,0 +170773204341,213,0 +170773204389,214,0 +170773204439,214,0 +170773204487,214,0 +170773204536,214,0 +170773204584,214,0 +170773204634,214,0 +170773204681,214,0 +170773204731,214,0 +170773204779,214,0 +170773204828,215,0 +170773204878,215,0 +170773204926,215,0 +170773204974,215,0 +170773205022,215,0 +170773205070,215,0 +170773205118,215,0 +170773205166,213,0 +170773205213,213,0 +170773205261,213,0 +170773205309,214,0 +170773205357,214,0 +170773205405,214,0 +170773205453,214,0 +170773205501,214,0 +170773205549,214,0 +170773205598,214,0 +170773205646,214,0 +170773205695,214,0 +170773205743,214,0 +170773205793,214,0 +170773205842,215,0 +170773205892,214,0 +170773205941,215,0 +170773205989,215,0 +170773206037,214,0 +170773206086,213,0 +170773206136,213,0 +170773206184,213,0 +170773206231,214,0 +170773206279,213,0 +170773206327,214,0 +170773206375,214,0 +170773206423,214,0 +170773206471,214,0 +170773206520,214,0 +170773206568,214,0 +170773206618,215,0 +170773206666,215,0 +170773206714,215,0 +170773206761,215,0 +170773206809,215,0 +170773206859,215,0 +170773206907,215,0 +170773206955,213,0 +170773207003,213,0 +170773207051,214,0 +170773207099,213,0 +170773207146,214,0 +170773207196,214,0 +170773207244,214,0 +170773207293,214,0 +170773207341,214,0 +170773207389,214,0 +170773207437,214,0 +170773207485,214,0 +170773207533,214,0 +170773207581,215,0 +170773207629,215,0 +170773207678,215,0 +170773207726,215,0 +170773207775,215,0 +170773207823,214,0 +170773207873,213,0 +170773207921,213,0 +170773207970,213,0 +170773208020,214,0 +170773208068,214,0 +170773208116,214,0 +170773208165,214,0 +170773208213,214,0 +170773208261,214,0 +170773208309,214,0 +170773208357,214,0 +170773208406,214,0 +170773208456,214,0 +170773208503,214,0 +170773208553,214,0 +170773208602,215,0 +170773208650,215,0 +170773208700,215,0 +170773208748,213,0 +170773208797,214,0 +170773208845,214,0 +170773208893,214,0 +170773208941,214,0 +170773208990,214,0 +170773209038,214,0 +170773209086,214,0 +170773209134,214,0 +170773209183,214,0 +170773209231,215,0 +170773209279,214,0 +170773209327,215,0 +170773209375,215,0 +170773209422,215,0 +170773209470,215,0 +170773209518,215,0 +170773209566,215,0 +170773209614,214,0 +170773209662,213,0 +170773209709,214,0 +170773209757,214,0 +170773209805,214,0 +170773209855,214,0 +170773209903,214,0 +170773209951,214,0 +170773210000,214,0 +170773210050,215,0 +170773210098,215,0 +170773210146,215,0 +170773210193,216,0 +170773210241,215,0 +170773210289,215,0 +170773210339,215,0 +170773210386,215,0 +170773210434,215,0 +170773210484,215,0 +170773210532,214,0 +170773210580,214,0 +170773210627,214,0 +170773210677,214,0 +170773210726,214,0 +170773210774,214,0 +170773210823,214,0 +170773210873,214,0 +170773210922,214,0 +170773210972,214,0 +170773211020,215,0 +170773211069,215,0 +170773211117,215,0 +170773211165,215,0 +170773211215,215,0 +170773211262,215,0 +170773211310,215,0 +170773211358,215,0 +170773211406,214,0 +170773211453,214,0 +170773211503,214,0 +170773211551,214,0 +170773211600,214,0 +170773211648,214,0 +170773211697,214,0 +170773211745,214,0 +170773211795,214,0 +170773211843,215,0 +170773211890,214,0 +170773211938,215,0 +170773211988,215,0 +170773212035,215,0 +170773212083,215,0 +170773212133,215,0 +170773212181,215,0 +170773212230,215,0 +170773212280,214,0 +170773212329,214,0 +170773212377,214,0 +170773212425,214,0 +170773212474,214,0 +170773212524,214,0 +170773212572,214,0 +170773212620,214,0 +170773212668,214,0 +170773212717,215,0 +170773212767,214,0 +170773212815,215,0 +170773212862,215,0 +170773212910,215,0 +170773212960,215,0 +170773213008,215,0 +170773213055,215,0 +170773213103,215,0 +170773213151,215,0 +170773213199,213,0 +170773213247,214,0 +170773213295,214,0 +170773213343,214,0 +170773213391,213,0 +170773213438,214,0 +170773213486,214,0 +170773213536,214,0 +170773213584,214,0 +170773213632,214,0 +170773213680,214,0 +170773213727,214,0 +170773213777,215,0 +170773213826,215,0 +170773213874,215,0 +170773213924,215,0 +170773213972,215,0 +170773214021,215,0 +170773214071,214,0 +170773214119,214,0 +170773214168,214,0 +170773214218,214,0 +170773214266,214,0 +170773214313,215,0 +170773214361,214,0 +170773214409,215,0 +170773214457,215,0 +170773214505,215,0 +170773214553,215,0 +170773214602,215,0 +170773214650,215,0 +170773214698,215,0 +170773214746,215,0 +170773214795,215,0 +170773214843,215,0 +170773214893,215,0 +170773214941,215,0 +170773214989,214,0 +170773215037,214,0 +170773215085,214,0 +170773215134,214,0 +170773215182,214,0 +170773215230,215,0 +170773215279,214,0 +170773215329,215,0 +170773215377,215,0 +170773215424,215,0 +170773215472,215,0 +170773215520,215,0 +170773215570,215,0 +170773215618,215,0 +170773215665,215,0 +170773215715,214,0 +170773215763,215,0 +170773215810,215,0 +170773215858,214,0 +170773215906,214,0 +170773215954,214,0 +170773216002,214,0 +170773216050,214,0 +170773216097,214,0 +170773216145,214,0 +170773216193,215,0 +170773216241,215,0 +170773216290,214,0 +170773216340,215,0 +170773216389,215,0 +170773216437,215,0 +170773216485,215,0 +170773216533,215,0 +170773216583,215,0 +170773216631,216,0 +170773216680,215,0 +170773216728,214,0 +170773216778,213,0 +170773216827,213,0 +170773216875,214,0 +170773216923,214,0 +170773216971,214,0 +170773217020,214,0 +170773217068,214,0 +170773217118,214,0 +170773217166,214,0 +170773217215,214,0 +170773217264,215,0 +170773217312,214,0 +170773217362,215,0 +170773217410,215,0 +170773217458,215,0 +170773217506,215,0 +170773217555,215,0 +170773217605,215,0 +170773217653,214,0 +170773217701,214,0 +170773217748,214,0 +170773217796,214,0 +170773217844,214,0 +170773217894,214,0 +170773217942,215,0 +170773217991,215,0 +170773218039,215,0 +170773218087,215,0 +170773218135,215,0 +170773218184,215,0 +170773218232,215,0 +170773218280,215,0 +170773218329,215,0 +170773218379,215,0 +170773218426,215,0 +170773218474,215,0 +170773218524,214,0 +170773218572,214,0 +170773218621,214,0 +170773218670,214,0 +170773218718,214,0 +170773218766,214,0 +170773218816,214,0 +170773218863,215,0 +170773218911,215,0 +170773218959,215,0 +170773219009,215,0 +170773219057,215,0 +170773219104,215,0 +170773219154,215,0 +170773219202,214,0 +170773219250,215,0 +170773219299,215,0 +170773219347,215,0 +170773219395,214,0 +170773219443,214,0 +170773219490,214,0 +170773219538,214,0 +170773219588,214,0 +170773219636,214,0 +170773219685,214,0 +170773219733,214,0 +170773219781,214,0 +170773219829,214,0 +170773219877,214,0 +170773219925,215,0 +170773219972,215,0 +170773220020,215,0 +170773220068,215,0 +170773220116,215,0 +170773220163,215,0 +170773220211,215,0 +170773220259,215,0 +170773220308,214,0 +170773220356,214,0 +170773220406,214,0 +170773220453,214,0 +170773220503,214,0 +170773220552,214,0 +170773220600,214,0 +170773220648,214,0 +170773220696,214,0 +170773220745,214,0 +170773220793,214,0 +170773220841,214,0 +170773220889,215,0 +170773220938,215,0 +170773220986,215,0 +170773221034,215,0 +170773221082,215,0 +170773221130,215,0 +170773221177,214,0 +170773221227,213,0 +170773221275,213,0 +170773221323,214,0 +170773221370,214,0 +170773221418,214,0 +170773221468,214,0 +170773221516,214,0 +170773221564,214,0 +170773221612,214,0 +170773221659,214,0 +170773221707,215,0 +170773221755,215,0 +170773221803,214,0 +170773221851,215,0 +170773221898,215,0 +170773221946,215,0 +170773221994,215,0 +170773222042,215,0 +170773222090,213,0 +170773222137,213,0 +170773222185,213,0 +170773222233,213,0 +170773222281,214,0 +170773222328,214,0 +170773222376,214,0 +170773222424,214,0 +170773222473,214,0 +170773222521,214,0 +170773222569,214,0 +170773222617,214,0 +170773222665,214,0 +170773222712,214,0 +170773222760,214,0 +170773222808,214,0 +170773222858,214,0 +170773222905,215,0 +170773222955,214,0 +170773223003,213,0 +170773223052,214,0 +170773223102,214,0 +170773223151,214,0 +170773223199,214,0 +170773223247,214,0 +170773223295,214,0 +170773223343,214,0 +170773223392,214,0 +170773223440,215,0 +170773223488,215,0 +170773223538,215,0 +170773223585,215,0 +170773223633,214,0 +170773223681,215,0 +170773223729,215,0 +170773223777,215,0 +170773223826,215,0 +170773223874,214,0 +170773223922,214,0 +170773223970,214,0 +170773224018,214,0 +170773224066,214,0 +170773224115,214,0 +170773224163,214,0 +170773224211,214,0 +170773224259,214,0 +170773224307,214,0 +170773224356,215,0 +170773224404,215,0 +170773224452,215,0 +170773224500,215,0 +170773224548,215,0 +170773224595,215,0 +170773224645,215,0 +170773224693,214,0 +170773224741,214,0 +170773224790,213,0 +170773224840,214,0 +170773224889,214,0 +170773224937,214,0 +170773224985,214,0 +170773225034,214,0 +170773225082,214,0 +170773225132,214,0 +170773225179,214,0 +170773225227,214,0 +170773225275,215,0 +170773225325,215,0 +170773225372,215,0 +170773225420,215,0 +170773225469,215,0 +170773225517,215,0 +170773225565,215,0 +170773225615,214,0 +170773225662,214,0 +170773225710,214,0 +170773225760,214,0 +170773225808,214,0 +170773225857,214,0 +170773225905,214,0 +170773225953,214,0 +170773226001,214,0 +170773226048,214,0 +170773226096,214,0 +170773226144,215,0 +170773226192,214,0 +170773226240,215,0 +170773226287,215,0 +170773226337,215,0 +170773226385,215,0 +170773226433,215,0 +170773226480,214,0 +170773226528,214,0 +170773226576,213,0 +170773226624,213,0 +170773226672,213,0 +170773226719,214,0 +170773226767,214,0 +170773226815,214,0 +170773226863,214,0 +170773226911,214,0 +170773226958,214,0 +170773227006,214,0 +170773227054,214,0 +170773227102,215,0 +170773227149,215,0 +170773227197,215,0 +170773227245,215,0 +170773227293,215,0 +170773227341,215,0 +170773227389,214,0 +170773227437,213,0 +170773227485,213,0 +170773227533,213,0 +170773227581,213,0 +170773227630,214,0 +170773227680,214,0 +170773227727,214,0 +170773227775,214,0 +170773227825,214,0 +170773227874,214,0 +170773227922,214,0 +170773227970,215,0 +170773228018,214,0 +170773228067,214,0 +170773228117,215,0 +170773228166,215,0 +170773228214,215,0 +170773228264,215,0 +170773228312,213,0 +170773228360,213,0 +170773228408,213,0 +170773228456,213,0 +170773228503,213,0 +170773228553,214,0 +170773228602,214,0 +170773228650,214,0 +170773228698,214,0 +170773228748,214,0 +170773228796,214,0 +170773228845,214,0 +170773228895,215,0 +170773228944,214,0 +170773228994,214,0 +170773229042,214,0 +170773229090,214,0 +170773229138,215,0 +170773229186,214,0 +170773229235,213,0 +170773229283,213,0 +170773229331,213,0 +170773229379,213,0 +170773229427,214,0 +170773229476,213,0 +170773229524,213,0 +170773229572,214,0 +170773229621,214,0 +170773229669,214,0 +170773229717,214,0 +170773229765,214,0 +170773229814,214,0 +170773229862,214,0 +170773229910,214,0 +170773229958,214,0 +170773230007,214,0 +170773230055,215,0 +170773230103,213,0 +170773230151,213,0 +170773230199,213,0 +170773230247,213,0 +170773230296,213,0 +170773230344,213,0 +170773230392,213,0 +170773230440,213,0 +170773230490,214,0 +170773230539,214,0 +170773230587,214,0 +170773230635,214,0 +170773230683,214,0 +170773230732,214,0 +170773230782,214,0 +170773230830,214,0 +170773230878,215,0 +170773230927,215,0 +170773230975,213,0 +170773231023,213,0 +170773231072,213,0 +170773231122,213,0 +170773231170,214,0 +170773231218,214,0 +170773231267,214,0 +170773231316,214,0 +170773231364,214,0 +170773231412,214,0 +170773231460,215,0 +170773231508,215,0 +170773231556,215,0 +170773231605,215,0 +170773231653,215,0 +170773231703,215,0 +170773231752,215,0 +170773231800,215,0 +170773231850,214,0 +170773231898,213,0 +170773231945,214,0 +170773231995,214,0 +170773232044,214,0 +170773232092,214,0 +170773232140,214,0 +170773232188,214,0 +170773232236,215,0 +170773232284,214,0 +170773232331,215,0 +170773232381,215,0 +170773232428,215,0 +170773232476,215,0 +170773232524,215,0 +170773232574,215,0 +170773232622,215,0 +170773232669,215,0 +170773232717,215,0 +170773232765,214,0 +170773232813,214,0 +170773232863,214,0 +170773232911,214,0 +170773232958,214,0 +170773233006,214,0 +170773233056,215,0 +170773233104,215,0 +170773233152,215,0 +170773233201,215,0 +170773233251,215,0 +170773233300,215,0 +170773233348,215,0 +170773233396,215,0 +170773233443,215,0 +170773233491,215,0 +170773233539,215,0 +170773233587,215,0 +170773233635,214,0 +170773233682,214,0 +170773233730,214,0 +170773233778,214,0 +170773233826,214,0 +170773233874,214,0 +170773233922,214,0 +170773233969,214,0 +170773234017,214,0 +170773234065,214,0 +170773234115,214,0 +170773234163,214,0 +170773234210,214,0 +170773234258,215,0 +170773234308,215,0 +170773234356,215,0 +170773234404,215,0 +170773234451,215,0 +170773234499,215,0 +170773234547,214,0 +170773234596,214,0 +170773234644,214,0 +170773234694,214,0 +170773234742,214,0 +170773234790,214,0 +170773234838,214,0 +170773234885,214,0 +170773234935,215,0 +170773234984,215,0 +170773235032,215,0 +170773235080,215,0 +170773235130,215,0 +170773235179,215,0 +170773235229,215,0 +170773235277,215,0 +170773235325,215,0 +170773235373,215,0 +170773235420,214,0 +170773235468,214,0 +170773235516,214,0 +170773235564,214,0 +170773235612,214,0 +170773235660,215,0 +170773235708,214,0 +170773235756,214,0 +170773235803,215,0 +170773235853,215,0 +170773235902,215,0 +170773235950,215,0 +170773235998,215,0 +170773236046,215,0 +170773236096,215,0 +170773236145,215,0 +170773236193,215,0 +170773236241,215,0 +170773236289,215,0 +170773236337,214,0 +170773236385,214,0 +170773236432,214,0 +170773236480,214,0 +170773236530,214,0 +170773236578,214,0 +170773236626,214,0 +170773236673,214,0 +170773236723,215,0 +170773236771,215,0 +170773236820,215,0 +170773236868,215,0 +170773236916,215,0 +170773236964,215,0 +170773237011,215,0 +170773237061,215,0 +170773237109,215,0 +170773237158,215,0 +170773237208,214,0 +170773237257,214,0 +170773237305,214,0 +170773237353,214,0 +170773237402,214,0 +170773237450,214,0 +170773237498,214,0 +170773237546,215,0 +170773237595,214,0 +170773237645,215,0 +170773237693,215,0 +170773237742,215,0 +170773237791,215,0 +170773237839,215,0 +170773237889,215,0 +170773237938,215,0 +170773237986,215,0 +170773238034,215,0 +170773238084,214,0 +170773238132,214,0 +170773238181,214,0 +170773238229,214,0 +170773238279,214,0 +170773238327,215,0 +170773238376,214,0 +170773238426,215,0 +170773238475,215,0 +170773238524,215,0 +170773238574,215,0 +170773238624,215,0 +170773238671,215,0 +170773238719,215,0 +170773238767,215,0 +170773238815,215,0 +170773238863,215,0 +170773238913,215,0 +170773238961,214,0 +170773239010,214,0 +170773239060,214,0 +170773239108,214,0 +170773239155,215,0 +170773239205,215,0 +170773239253,215,0 +170773239301,214,0 +170773239350,215,0 +170773239400,215,0 +170773239449,215,0 +170773239499,215,0 +170773239548,215,0 +170773239596,215,0 +170773239646,215,0 +170773239694,215,0 +170773239743,215,0 +170773239791,215,0 +170773239841,215,0 +170773239889,214,0 +170773239938,214,0 +170773239987,214,0 +170773240037,214,0 +170773240085,214,0 +170773240133,214,0 +170773240180,214,0 +170773240228,214,0 +170773240276,215,0 +170773240326,215,0 +170773240374,215,0 +170773240422,215,0 +170773240471,215,0 +170773240519,215,0 +170773240567,215,0 +170773240616,215,0 +170773240664,215,0 +170773240712,215,0 +170773240760,214,0 +170773240808,214,0 +170773240857,214,0 +170773240907,214,0 +170773240955,214,0 +170773241004,214,0 +170773241054,214,0 +170773241103,214,0 +170773241153,214,0 +170773241201,215,0 +170773241248,215,0 +170773241296,215,0 +170773241344,215,0 +170773241394,215,0 +170773241442,215,0 +170773241491,215,0 +170773241539,215,0 +170773241589,215,0 +170773241638,214,0 +170773241687,214,0 +170773241735,214,0 +170773241783,214,0 +170773241831,214,0 +170773241879,214,0 +170773241927,214,0 +170773241975,214,0 +170773242023,214,0 +170773242071,214,0 +170773242119,214,0 +170773242167,214,0 +170773242216,215,0 +170773242266,215,0 +170773242314,215,0 +170773242362,215,0 +170773242411,215,0 +170773242459,215,0 +170773242507,214,0 +170773242555,213,0 +170773242603,214,0 +170773242651,214,0 +170773242699,214,0 +170773242748,214,0 +170773242796,213,0 +170773242844,213,0 +170773242892,214,0 +170773242942,214,0 +170773242989,214,0 +170773243039,215,0 +170773243087,214,0 +170773243136,215,0 +170773243186,215,0 +170773243236,215,0 +170773243283,215,0 +170773243331,215,0 +170773243381,215,0 +170773243429,213,0 +170773243477,213,0 +170773243524,213,0 +170773243572,213,0 +170773243622,214,0 +170773243670,214,0 +170773243718,214,0 +170773243766,214,0 +170773243814,214,0 +170773243863,214,0 +170773243912,214,0 +170773243962,215,0 +170773244010,215,0 +170773244058,215,0 +170773244107,215,0 +170773244157,215,0 +170773244205,215,0 +170773244252,215,0 +170773244302,214,0 +170773244350,214,0 +170773244398,214,0 +170773244446,214,0 +170773244494,213,0 +170773244543,214,0 +170773244591,214,0 +170773244639,214,0 +170773244687,214,0 +170773244736,214,0 +170773244786,214,0 +170773244834,214,0 +170773244883,214,0 +170773244933,214,0 +170773244981,214,0 +170773245030,215,0 +170773245080,214,0 +170773245128,215,0 +170773245177,215,0 +170773245225,213,0 +170773245273,213,0 +170773245323,214,0 +170773245370,214,0 +170773245418,214,0 +170773245466,214,0 +170773245514,214,0 +170773245562,214,0 +170773245610,214,0 +170773245658,214,0 +170773245706,214,0 +170773245754,214,0 +170773245802,214,0 +170773245850,214,0 +170773245899,215,0 +170773245947,214,0 +170773245995,215,0 +170773246043,215,0 +170773246091,213,0 +170773246139,213,0 +170773246187,213,0 +170773246235,213,0 +170773246283,213,0 +170773246331,213,0 +170773246380,214,0 +170773246428,213,0 +170773246476,214,0 +170773246524,214,0 +170773246572,214,0 +170773246621,214,0 +170773246669,214,0 +170773246717,214,0 +170773246765,214,0 +170773246813,214,0 +170773246861,214,0 +170773246909,214,0 +170773246959,214,0 +170773247008,213,0 +170773247057,213,0 +170773247107,213,0 +170773247156,213,0 +170773247206,213,0 +170773247254,213,0 +170773247303,213,0 +170773247351,214,0 +170773247399,214,0 +170773247449,214,0 +170773247498,214,0 +170773247546,214,0 +170773247594,214,0 +170773247643,214,0 +170773247691,214,0 +170773247739,214,0 +170773247787,214,0 +170773247837,214,0 +170773247885,214,0 +170773247933,213,0 +170773247982,213,0 +170773248032,213,0 +170773248079,213,0 +170773248129,214,0 +170773248178,214,0 +170773248228,214,0 +170773248277,214,0 +170773248325,214,0 +170773248373,214,0 +170773248421,214,0 +170773248469,214,0 +170773248517,214,0 +170773248565,214,0 +170773248614,215,0 +170773248662,215,0 +170773248710,214,0 +170773248760,213,0 +170773248809,214,0 +170773248859,214,0 +170773248908,214,0 +170773248956,214,0 +170773249004,214,0 +170773249054,214,0 +170773249102,214,0 +170773249151,214,0 +170773249201,215,0 +170773249249,214,0 +170773249298,215,0 +170773249346,215,0 +170773249394,215,0 +170773249444,215,0 +170773249493,215,0 +170773249541,215,0 +170773249590,214,0 +170773249640,214,0 +170773249688,214,0 +170773249736,214,0 +170773249784,215,0 +170773249831,214,0 +170773249881,214,0 +170773249929,214,0 +170773249977,214,0 +170773250026,215,0 +170773250074,215,0 +170773250122,214,0 +170773250170,215,0 +170773250218,215,0 +170773250266,215,0 +170773250314,215,0 +170773250362,215,0 +170773250410,215,0 +170773250459,214,0 +170773250507,214,0 +170773250557,214,0 +170773250606,214,0 +170773250656,214,0 +170773250704,214,0 +170773250752,214,0 +170773250800,214,0 +170773250849,215,0 +170773250899,214,0 +170773250948,215,0 +170773250998,215,0 +170773251046,215,0 +170773251093,215,0 +170773251141,215,0 +170773251189,215,0 +170773251237,215,0 +170773251285,215,0 +170773251334,214,0 +170773251382,214,0 +170773251430,214,0 +170773251478,214,0 +170773251526,214,0 +170773251574,214,0 +170773251622,214,0 +170773251670,214,0 +170773251718,214,0 +170773251767,215,0 +170773251815,215,0 +170773251863,215,0 +170773251911,215,0 +170773251959,215,0 +170773252008,215,0 +170773252056,215,0 +170773252106,215,0 +170773252154,215,0 +170773252201,214,0 +170773252249,214,0 +170773252297,214,0 +170773252345,214,0 +170773252395,215,0 +170773252444,214,0 +170773252493,214,0 +170773252541,215,0 +170773252589,215,0 +170773252637,215,0 +170773252685,215,0 +170773252733,215,0 +170773252781,215,0 +170773252830,215,0 +170773252880,215,0 +170773252928,215,0 +170773252976,215,0 +170773253024,215,0 +170773253072,214,0 +170773253119,214,0 +170773253167,214,0 +170773253215,214,0 +170773253263,214,0 +170773253311,214,0 +170773253359,214,0 +170773253408,214,0 +170773253456,214,0 +170773253506,214,0 +170773253554,215,0 +170773253602,215,0 +170773253651,215,0 +170773253700,215,0 +170773253748,215,0 +170773253796,215,0 +170773253844,215,0 +170773253892,215,0 +170773253942,214,0 +170773253990,214,0 +170773254039,214,0 +170773254087,214,0 +170773254135,214,0 +170773254183,214,0 +170773254231,214,0 +170773254278,214,0 +170773254326,214,0 +170773254374,214,0 +170773254422,214,0 +170773254470,215,0 +170773254518,215,0 +170773254566,215,0 +170773254614,215,0 +170773254662,215,0 +170773254711,215,0 +170773254759,215,0 +170773254807,214,0 +170773254855,213,0 +170773254903,214,0 +170773254951,214,0 +170773254999,214,0 +170773255047,214,0 +170773255096,214,0 +170773255146,214,0 +170773255195,214,0 +170773255243,214,0 +170773255291,214,0 +170773255340,214,0 +170773255388,215,0 +170773255436,214,0 +170773255486,215,0 +170773255534,215,0 +170773255582,215,0 +170773255630,214,0 +170773255679,213,0 +170773255727,214,0 +170773255775,214,0 +170773255825,214,0 +170773255874,214,0 +170773255923,214,0 +170773255971,214,0 +170773256019,214,0 +170773256067,214,0 +170773256117,214,0 +170773256165,215,0 +170773256214,215,0 +170773256262,215,0 +170773256310,215,0 +170773256359,215,0 +170773256409,215,0 +170773256457,215,0 +170773256507,215,0 +170773256556,214,0 +170773256604,214,0 +170773256653,214,0 +170773256701,214,0 +170773256751,214,0 +170773256800,214,0 +170773256850,214,0 +170773256898,214,0 +170773256946,214,0 +170773256993,214,0 +170773257043,215,0 +170773257091,214,0 +170773257140,215,0 +170773257188,215,0 +170773257236,215,0 +170773257285,215,0 +170773257333,215,0 +170773257383,215,0 +170773257432,214,0 +170773257480,213,0 +170773257528,214,0 +170773257576,214,0 +170773257626,214,0 +170773257673,214,0 +170773257721,214,0 +170773257769,214,0 +170773257817,214,0 +170773257865,214,0 +170773257913,214,0 +170773257961,215,0 +170773258008,214,0 +170773258056,215,0 +170773258104,215,0 +170773258152,215,0 +170773258200,215,0 +170773258248,215,0 +170773258296,213,0 +170773258343,213,0 +170773258391,213,0 +170773258441,214,0 +170773258488,214,0 +170773258536,214,0 +170773258584,214,0 +170773258632,214,0 +170773258680,214,0 +170773258728,214,0 +170773258775,214,0 +170773258823,215,0 +170773258871,215,0 +170773258921,215,0 +170773258968,215,0 +170773259016,215,0 +170773259066,215,0 +170773259114,215,0 +170773259162,213,0 +170773259211,213,0 +170773259259,213,0 +170773259307,213,0 +170773259355,213,0 +170773259403,214,0 +170773259450,214,0 +170773259498,214,0 +170773259546,214,0 +170773259594,214,0 +170773259643,214,0 +170773259691,214,0 +170773259739,215,0 +170773259787,215,0 +170773259835,215,0 +170773259883,215,0 +170773259931,215,0 +170773259978,215,0 +170773260026,214,0 +170773260076,213,0 +170773260125,213,0 +170773260175,213,0 +170773260223,213,0 +170773260272,214,0 +170773260320,214,0 +170773260368,214,0 +170773260417,214,0 +170773260465,214,0 +170773260513,214,0 +170773260561,214,0 +170773260611,214,0 +170773260659,215,0 +170773260708,214,0 +170773260756,215,0 +170773260806,215,0 +170773260853,215,0 +170773260901,213,0 +170773260949,213,0 +170773260999,213,0 +170773261048,214,0 +170773261098,213,0 +170773261146,213,0 +170773261195,214,0 +170773261243,214,0 +170773261291,214,0 +170773261339,214,0 +170773261388,214,0 +170773261436,214,0 +170773261486,214,0 +170773261535,215,0 +170773261585,215,0 +170773261634,215,0 +170773261682,215,0 +170773261732,215,0 +170773261781,214,0 +170773261829,213,0 +170773261877,213,0 +170773261925,213,0 +170773261973,213,0 +170773262022,213,0 +170773262072,213,0 +170773262120,214,0 +170773262169,214,0 +170773262217,214,0 +170773262266,214,0 +170773262316,214,0 +170773262364,214,0 +170773262412,214,0 +170773262460,214,0 +170773262509,214,0 +170773262557,215,0 +170773262607,214,0 +170773262655,213,0 +170773262703,213,0 +170773262750,213,0 +170773262798,213,0 +170773262846,213,0 +170773262894,214,0 +170773262943,214,0 +170773262993,214,0 +170773263041,214,0 +170773263089,214,0 +170773263136,214,0 +170773263186,214,0 +170773263235,214,0 +170773263283,214,0 +170773263331,214,0 +170773263379,214,0 +170773263429,215,0 +170773263478,215,0 +170773263528,214,0 +170773263575,214,0 +170773263625,214,0 +170773263673,214,0 +170773263722,214,0 +170773263770,214,0 +170773263818,214,0 +170773263866,214,0 +170773263916,214,0 +170773263965,214,0 +170773264013,215,0 +170773264061,215,0 +170773264109,215,0 +170773264159,215,0 +170773264206,215,0 +170773264254,215,0 +170773264302,215,0 +170773264352,214,0 +170773264400,214,0 +170773264449,214,0 +170773264498,214,0 +170773264546,214,0 +170773264594,214,0 +170773264642,215,0 +170773264692,214,0 +170773264740,215,0 +170773264788,215,0 +170773264835,215,0 +170773264883,215,0 +170773264933,215,0 +170773264981,215,0 +170773265029,215,0 +170773265077,215,0 +170773265125,215,0 +170773265174,215,0 +170773265222,215,0 +170773265270,215,0 +170773265319,215,0 +170773265369,215,0 +170773265417,215,0 +170773265465,215,0 +170773265514,215,0 +170773265564,215,0 +170773265612,215,0 +170773265661,215,0 +170773265709,215,0 +170773265758,215,0 +170773265808,215,0 +170773265856,215,0 +170773265904,215,0 +170773265952,215,0 +170773266000,215,0 +170773266049,215,0 +170773266097,215,0 +170773266145,215,0 +170773266193,215,0 +170773266242,215,0 +170773266290,214,0 +170773266340,215,0 +170773266388,215,0 +170773266436,215,0 +170773266483,215,0 +170773266533,215,0 +170773266581,215,0 +170773266629,215,0 +170773266678,215,0 +170773266726,215,0 +170773266774,215,0 +170773266822,215,0 +170773266872,215,0 +170773266920,215,0 +170773266969,214,0 +170773267017,214,0 +170773267065,214,0 +170773267113,215,0 +170773267162,214,0 +170773267210,215,0 +170773267258,215,0 +170773267306,215,0 +170773267356,215,0 +170773267404,215,0 +170773267453,215,0 +170773267501,215,0 +170773267549,215,0 +170773267597,215,0 +170773267645,215,0 +170773267694,215,0 +170773267742,215,0 +170773267790,215,0 +170773267840,214,0 +170773267889,214,0 +170773267939,214,0 +170773267986,214,0 +170773268036,214,0 +170773268084,214,0 +170773268132,214,0 +170773268180,214,0 +170773268229,214,0 +170773268279,215,0 +170773268328,215,0 +170773268376,215,0 +170773268426,215,0 +170773268473,215,0 +170773268523,215,0 +170773268572,216,0 +170773268622,215,0 +170773268670,215,0 +170773268720,215,0 +170773268767,213,0 +170773268817,213,0 +170773268866,214,0 +170773268914,214,0 +170773268964,214,0 +170773269013,214,0 +170773269061,214,0 +170773269111,214,0 +170773269159,214,0 +170773269207,214,0 +170773269256,215,0 +170773269304,215,0 +170773269354,214,0 +170773269401,215,0 +170773269451,215,0 +170773269499,215,0 +170773269548,215,0 +170773269598,215,0 +170773269647,214,0 +170773269695,213,0 +170773269745,213,0 +170773269793,213,0 +170773269840,214,0 +170773269890,214,0 +170773269939,214,0 +170773269989,214,0 +170773270037,214,0 +170773270085,214,0 +170773270133,214,0 +170773270182,214,0 +170773270230,214,0 +170773270280,215,0 +170773270329,215,0 +170773270379,215,0 +170773270426,215,0 +170773270474,215,0 +170773270524,214,0 +170773270573,213,0 +170773270621,213,0 +170773270669,213,0 +170773270717,214,0 +170773270765,214,0 +170773270814,214,0 +170773270862,214,0 +170773270912,214,0 +170773270960,214,0 +170773271009,214,0 +170773271057,214,0 +170773271105,214,0 +170773271153,214,0 +170773271202,214,0 +170773271252,215,0 +170773271300,214,0 +170773271348,215,0 +170773271396,215,0 +170773271445,213,0 +170773271494,213,0 +170773271542,213,0 +170773271592,213,0 +170773271641,214,0 +170773271689,213,0 +170773271737,214,0 +170773271785,214,0 +170773271835,214,0 +170773271884,214,0 +170773271932,214,0 +170773271980,214,0 +170773272028,214,0 +170773272076,214,0 +170773272124,215,0 +170773272172,214,0 +170773272221,215,0 +170773272269,215,0 +170773272317,214,0 +170773272365,213,0 +170773272413,213,0 +170773272461,214,0 +170773272508,213,0 +170773272556,214,0 +170773272604,214,0 +170773272652,214,0 +170773272702,214,0 +170773272750,214,0 +170773272797,214,0 +170773272845,214,0 +170773272895,214,0 +170773272943,214,0 +170773272991,214,0 +170773273039,214,0 +170773273087,214,0 +170773273134,215,0 +170773273182,215,0 +170773273230,214,0 +170773273278,213,0 +170773273326,213,0 +170773273374,213,0 +170773273423,213,0 +170773273473,214,0 +170773273523,213,0 +170773273572,214,0 +170773273620,214,0 +170773273669,214,0 +170773273717,214,0 +170773273767,214,0 +170773273815,214,0 +170773273864,214,0 +170773273912,215,0 +170773273960,214,0 +170773274008,214,0 +170773274057,215,0 +170773274105,214,0 +170773274155,213,0 +170773274204,213,0 +170773274254,213,0 +170773274301,213,0 +170773274351,213,0 +170773274399,213,0 +170773274447,213,0 +170773274496,214,0 +170773274544,214,0 +170773274592,214,0 +170773274640,214,0 +170773274690,214,0 +170773274739,214,0 +170773274787,214,0 +170773274835,214,0 +170773274883,215,0 +170773274931,215,0 +170773274979,215,0 +170773275027,213,0 +170773275075,214,0 +170773275122,214,0 +170773275172,214,0 +170773275220,214,0 +170773275268,214,0 +170773275317,214,0 +170773275365,214,0 +170773275413,214,0 +170773275461,214,0 +170773275511,214,0 +170773275559,215,0 +170773275607,215,0 +170773275656,215,0 +170773275704,215,0 +170773275752,214,0 +170773275800,215,0 +170773275848,215,0 +170773275895,213,0 +170773275943,213,0 +170773275991,213,0 +170773276039,214,0 +170773276087,214,0 +170773276135,214,0 +170773276183,214,0 +170773276230,214,0 +170773276278,214,0 +170773276326,214,0 +170773276374,214,0 +170773276422,214,0 +170773276470,214,0 +170773276518,214,0 +170773276565,215,0 +170773276613,215,0 +170773276661,215,0 +170773276709,214,0 +170773276757,214,0 +170773276805,214,0 +170773276853,213,0 +170773276901,214,0 +170773276949,214,0 +170773276998,214,0 +170773277046,214,0 +170773277094,214,0 +170773277142,214,0 +170773277191,214,0 +170773277241,214,0 +170773277290,214,0 +170773277338,214,0 +170773277386,215,0 +170773277434,215,0 +170773277484,214,0 +170773277532,215,0 +170773277579,215,0 +170773277627,215,0 +170773277675,214,0 +170773277723,214,0 +170773277771,214,0 +170773277819,214,0 +170773277867,214,0 +170773277916,214,0 +170773277964,214,0 +170773278014,214,0 +170773278063,214,0 +170773278111,214,0 +170773278160,214,0 +170773278208,215,0 +170773278256,214,0 +170773278304,215,0 +170773278354,215,0 +170773278401,215,0 +170773278449,215,0 +170773278497,215,0 +170773278547,215,0 +170773278596,214,0 +170773278644,214,0 +170773278694,214,0 +170773278743,214,0 +170773278792,214,0 +170773278840,214,0 +170773278890,214,0 +170773278938,215,0 +170773278986,215,0 +170773279034,214,0 +170773279083,215,0 +170773279131,216,0 +170773279179,215,0 +170773279227,215,0 +170773279276,215,0 +170773279326,215,0 +170773279375,215,0 +170773279423,215,0 +170773279471,214,0 +170773279519,214,0 +170773279567,214,0 +170773279617,214,0 +170773279665,214,0 +170773279714,214,0 +170773279764,214,0 +170773279812,215,0 +170773279860,215,0 +170773279909,215,0 +170773279958,215,0 +170773280006,215,0 +170773280056,215,0 +170773280104,215,0 +170773280153,215,0 +170773280201,215,0 +170773280249,215,0 +170773280297,215,0 +170773280347,215,0 +170773280395,213,0 +170773280442,213,0 +170773280490,213,0 +170773280538,214,0 +170773280586,214,0 +170773280636,214,0 +170773280685,214,0 +170773280735,214,0 +170773280783,214,0 +170773280831,214,0 +170773280878,214,0 +170773280926,215,0 +170773280974,215,0 +170773281022,215,0 +170773281072,215,0 +170773281121,215,0 +170773281171,215,0 +170773281219,215,0 +170773281268,214,0 +170773281318,214,0 +170773281366,214,0 +170773281414,214,0 +170773281462,214,0 +170773281509,214,0 +170773281557,214,0 +170773281605,214,0 +170773281655,214,0 +170773281703,214,0 +170773281752,214,0 +170773281802,215,0 +170773281850,215,0 +170773281898,215,0 +170773281946,215,0 +170773281994,215,0 +170773282042,215,0 +170773282090,215,0 +170773282139,215,0 +170773282187,214,0 +170773282235,214,0 +170773282283,214,0 +170773282332,214,0 +170773282382,214,0 +170773282432,214,0 +170773282481,214,0 +170773282529,215,0 +170773282577,214,0 +170773282625,215,0 +170773282673,215,0 +170773282722,215,0 +170773282770,215,0 +170773282818,215,0 +170773282867,215,0 +170773282915,215,0 +170773282965,215,0 +170773283014,215,0 +170773283062,214,0 +170773283112,214,0 +170773283161,214,0 +170773283209,214,0 +170773283257,214,0 +170773283307,214,0 +170773283355,214,0 +170773283404,214,0 +170773283454,214,0 +170773283502,215,0 +170773283550,215,0 +170773283599,215,0 +170773283647,215,0 +170773283695,215,0 +170773283744,215,0 +170773283792,215,0 +170773283840,215,0 +170773283889,215,0 +170773283937,214,0 +170773283987,214,0 +170773284035,214,0 +170773284083,214,0 +170773284131,214,0 +170773284178,214,0 +170773284226,215,0 +170773284274,215,0 +170773284324,215,0 +170773284372,214,0 +170773284420,215,0 +170773284469,215,0 +170773284518,215,0 +170773284566,215,0 +170773284614,215,0 +170773284662,215,0 +170773284710,215,0 +170773284758,215,0 +170773284806,215,0 +170773284854,214,0 +170773284903,214,0 +170773284951,214,0 +170773285001,214,0 +170773285050,214,0 +170773285098,214,0 +170773285146,215,0 +170773285194,214,0 +170773285242,214,0 +170773285290,215,0 +170773285338,215,0 +170773285386,215,0 +170773285435,215,0 +170773285483,215,0 +170773285531,215,0 +170773285579,215,0 +170773285629,215,0 +170773285676,215,0 +170773285724,214,0 +170773285774,213,0 +170773285822,213,0 +170773285871,214,0 +170773285919,214,0 +170773285968,214,0 +170773286018,214,0 +170773286068,214,0 +170773286115,214,0 +170773286163,214,0 +170773286211,214,0 +170773286259,214,0 +170773286307,215,0 +170773286355,215,0 +170773286404,215,0 +170773286452,215,0 +170773286500,215,0 +170773286548,215,0 +170773286596,215,0 +170773286644,214,0 +170773286694,213,0 +170773286743,214,0 +170773286793,214,0 +170773286842,214,0 +170773286890,214,0 +170773286938,214,0 +170773286986,214,0 +170773287034,214,0 +170773287081,214,0 +170773287129,214,0 +170773287177,214,0 +170773287225,215,0 +170773287273,215,0 +170773287321,215,0 +170773287368,215,0 +170773287416,215,0 +170773287464,215,0 +170773287512,214,0 +170773287560,213,0 +170773287609,214,0 +170773287657,214,0 +170773287705,214,0 +170773287753,214,0 +170773287800,214,0 +170773287848,214,0 +170773287897,214,0 +170773287945,214,0 +170773287993,214,0 +170773288041,214,0 +170773288089,214,0 +170773288137,215,0 +170773288184,215,0 +170773288232,215,0 +170773288280,215,0 +170773288328,215,0 +170773288376,215,0 +170773288424,214,0 +170773288472,213,0 +170773288521,213,0 +170773288569,214,0 +170773288617,214,0 +170773288665,214,0 +170773288713,214,0 +170773288762,214,0 +170773288810,214,0 +170773288858,214,0 +170773288908,214,0 +170773288956,215,0 +170773289005,215,0 +170773289053,215,0 +170773289103,215,0 +170773289152,215,0 +170773289202,215,0 +170773289251,215,0 +170773289299,215,0 +170773289347,214,0 +170773289395,214,0 +170773289445,214,0 +170773289492,214,0 +170773289542,214,0 +170773289590,214,0 +170773289638,214,0 +170773289686,214,0 +170773289735,214,0 +170773289783,214,0 +170773289833,214,0 +170773289880,215,0 +170773289928,215,0 +170773289976,216,0 +170773290024,215,0 +170773290072,215,0 +170773290120,215,0 +170773290168,215,0 +170773290216,214,0 +170773290264,213,0 +170773290312,214,0 +170773290361,214,0 +170773290409,214,0 +170773290457,214,0 +170773290507,215,0 +170773290556,214,0 +170773290604,214,0 +170773290652,214,0 +170773290700,214,0 +170773290749,215,0 +170773290797,215,0 +170773290845,215,0 +170773290895,215,0 +170773290943,215,0 +170773290991,215,0 +170773291040,215,0 +170773291088,214,0 +170773291136,214,0 +170773291184,214,0 +170773291233,214,0 +170773291283,214,0 +170773291332,214,0 +170773291380,214,0 +170773291428,214,0 +170773291476,214,0 +170773291524,214,0 +170773291572,214,0 +170773291620,215,0 +170773291669,215,0 +170773291719,215,0 +170773291767,215,0 +170773291814,215,0 +170773291864,215,0 +170773291912,215,0 +170773291960,215,0 +170773292009,214,0 +170773292059,214,0 +170773292107,214,0 +170773292156,214,0 +170773292204,214,0 +170773292252,214,0 +170773292301,216,0 +170773292349,214,0 +170773292397,214,0 +170773292445,215,0 +170773292493,215,0 +170773292541,215,0 +170773292589,215,0 +170773292638,215,0 +170773292686,215,0 +170773292734,215,0 +170773292784,215,0 +170773292833,215,0 +170773292883,214,0 +170773292932,213,0 +170773292980,213,0 +170773293028,214,0 +170773293077,214,0 +170773293125,214,0 +170773293173,214,0 +170773293221,214,0 +170773293269,214,0 +170773293317,214,0 +170773293366,214,0 +170773293414,214,0 +170773293462,215,0 +170773293510,215,0 +170773293558,215,0 +170773293605,215,0 +170773293653,215,0 +170773293703,214,0 +170773293751,215,0 +170773293799,213,0 +170773293847,213,0 +170773293896,214,0 +170773293945,214,0 +170773293995,214,0 +170773294044,214,0 +170773294092,214,0 +170773294142,214,0 +170773294191,214,0 +170773294239,214,0 +170773294287,215,0 +170773294335,214,0 +170773294383,215,0 +170773294432,214,0 +170773294482,214,0 +170773294531,215,0 +170773294581,215,0 +170773294629,215,0 +170773294677,214,0 +170773294726,213,0 +170773294774,214,0 +170773294823,214,0 +170773294871,214,0 +170773294921,213,0 +170773294970,214,0 +170773295018,214,0 +170773295068,214,0 +170773295115,214,0 +170773295165,214,0 +170773295213,214,0 +170773295263,215,0 +170773295312,214,0 +170773295362,215,0 +170773295410,215,0 +170773295458,215,0 +170773295505,215,0 +170773295553,214,0 +170773295603,214,0 +170773295652,214,0 +170773295702,213,0 +170773295750,214,0 +170773295799,214,0 +170773295847,214,0 +170773295895,214,0 +170773295943,214,0 +170773295991,214,0 +170773296040,214,0 +170773296088,214,0 +170773296136,215,0 +170773296186,214,0 +170773296234,215,0 +170773296283,215,0 +170773296331,215,0 +170773296380,215,0 +170773296430,215,0 +170773296479,213,0 +170773296527,213,0 +170773296577,213,0 +170773296624,213,0 +170773296674,213,0 +170773296722,213,0 +170773296770,214,0 +170773296818,214,0 +170773296867,214,0 +170773296917,214,0 +170773296965,214,0 +170773297012,214,0 +170773297062,214,0 +170773297110,214,0 +170773297158,215,0 +170773297206,215,0 +170773297253,214,0 +170773297301,214,0 +170773297349,214,0 +170773297397,213,0 +170773297446,214,0 +170773297494,213,0 +170773297542,213,0 +170773297590,213,0 +170773297638,214,0 +170773297686,214,0 +170773297733,214,0 +170773297781,214,0 +170773297829,214,0 +170773297877,214,0 +170773297925,214,0 +170773297973,215,0 +170773298021,215,0 +170773298069,215,0 +170773298118,215,0 +170773298168,215,0 +170773298215,215,0 +170773298263,214,0 +170773298311,213,0 +170773298361,213,0 +170773298410,213,0 +170773298458,214,0 +170773298506,214,0 +170773298556,214,0 +170773298603,214,0 +170773298651,214,0 +170773298699,214,0 +170773298747,214,0 +170773298795,215,0 +170773298843,215,0 +170773298890,215,0 +170773298938,215,0 +170773298986,215,0 +170773299034,215,0 +170773299082,215,0 +170773299130,214,0 +170773299179,214,0 +170773299227,213,0 +170773299276,214,0 +170773299324,214,0 +170773299374,214,0 +170773299421,214,0 +170773299471,214,0 +170773299519,214,0 +170773299568,214,0 +170773299616,214,0 +170773299666,215,0 +170773299715,215,0 +170773299763,215,0 +170773299811,215,0 +170773299860,215,0 +170773299908,215,0 +170773299956,215,0 +170773300004,214,0 +170773300054,214,0 +170773300101,214,0 +170773300149,214,0 +170773300199,214,0 +170773300247,214,0 +170773300295,214,0 +170773300344,214,0 +170773300392,214,0 +170773300440,214,0 +170773300488,214,0 +170773300535,215,0 +170773300585,214,0 +170773300633,214,0 +170773300681,215,0 +170773300730,215,0 +170773300778,215,0 +170773300828,215,0 +170773300876,215,0 +170773300923,214,0 +170773300973,214,0 +170773301021,214,0 +170773301070,214,0 +170773301118,214,0 +170773301166,214,0 +170773301214,214,0 +170773301262,214,0 +170773301310,215,0 +170773301358,215,0 +170773301407,215,0 +170773301457,215,0 +170773301505,215,0 +170773301552,215,0 +170773301600,215,0 +170773301650,215,0 +170773301698,215,0 +170773301747,215,0 +170773301797,214,0 +170773301845,214,0 +170773301893,214,0 +170773301941,214,0 +170773301989,214,0 +170773302038,215,0 +170773302086,214,0 +170773302134,215,0 +170773302182,214,0 +170773302231,215,0 +170773302279,215,0 +170773302327,215,0 +170773302375,215,0 +170773302423,215,0 +170773302471,215,0 +170773302521,215,0 +170773302568,215,0 +170773302616,215,0 +170773302666,215,0 +170773302714,214,0 +170773302762,214,0 +170773302810,214,0 +170773302858,214,0 +170773302905,214,0 +170773302953,214,0 +170773303001,214,0 +170773303049,214,0 +170773303097,214,0 +170773303145,214,0 +170773303192,214,0 +170773303240,215,0 +170773303288,215,0 +170773303336,215,0 +170773303384,215,0 +170773303432,215,0 +170773303480,215,0 +170773303528,215,0 +170773303577,214,0 +170773303625,214,0 +170773303675,214,0 +170773303724,214,0 +170773303774,214,0 +170773303823,214,0 +170773303871,214,0 +170773303921,214,0 +170773303969,214,0 +170773304018,214,0 +170773304068,214,0 +170773304117,214,0 +170773304165,215,0 +170773304213,215,0 +170773304261,215,0 +170773304309,215,0 +170773304357,215,0 +170773304406,215,0 +170773304456,215,0 +170773304504,213,0 +170773304552,213,0 +170773304600,214,0 +170773304647,214,0 +170773304697,214,0 +170773304746,214,0 +170773304794,214,0 +170773304842,214,0 +170773304890,214,0 +170773304938,214,0 +170773304988,214,0 +170773305036,215,0 +170773305085,215,0 +170773305134,215,0 +170773305184,215,0 +170773305233,215,0 +170773305281,215,0 +170773305329,215,0 +170773305377,214,0 +170773305427,213,0 +170773305475,214,0 +170773305523,214,0 +170773305571,214,0 +170773305618,214,0 +170773305668,214,0 +170773305717,214,0 +170773305767,215,0 +170773305816,215,0 +170773305864,215,0 +170773305912,215,0 +170773305960,215,0 +170773306008,215,0 +170773306055,215,0 +170773306105,215,0 +170773306154,215,0 +170773306202,215,0 +170773306250,214,0 +170773306298,214,0 +170773306347,214,0 +170773306397,214,0 +170773306445,214,0 +170773306492,214,0 +170773306540,214,0 +170773306588,214,0 +170773306636,215,0 +170773306684,215,0 +170773306733,215,0 +170773306781,215,0 +170773306829,215,0 +170773306877,215,0 +170773306925,215,0 +170773306974,215,0 +170773307024,215,0 +170773307072,215,0 +170773307120,215,0 +170773307167,214,0 +170773307215,214,0 +170773307263,214,0 +170773307311,214,0 +170773307359,214,0 +170773307407,214,0 +170773307457,214,0 +170773307505,214,0 +170773307553,215,0 +170773307600,215,0 +170773307648,215,0 +170773307698,215,0 +170773307747,215,0 +170773307797,215,0 +170773307845,215,0 +170773307893,215,0 +170773307941,215,0 +170773307990,215,0 +170773308040,214,0 +170773308088,214,0 +170773308136,214,0 +170773308184,214,0 +170773308231,214,0 +170773308279,214,0 +170773308327,215,0 +170773308375,215,0 +170773308423,215,0 +170773308471,215,0 +170773308519,215,0 +170773308567,215,0 +170773308616,215,0 +170773308664,215,0 +170773308714,215,0 +170773308762,215,0 +170773308810,215,0 +170773308857,215,0 +170773308907,214,0 +170773308956,213,0 +170773309006,214,0 +170773309055,213,0 +170773309103,214,0 +170773309151,214,0 +170773309199,214,0 +170773309247,214,0 +170773309296,214,0 +170773309344,214,0 +170773309392,214,0 +170773309440,214,0 +170773309488,215,0 +170773309536,215,0 +170773309584,215,0 +170773309632,215,0 +170773309680,215,0 +170773309729,215,0 +170773309777,215,0 +170773309825,213,0 +170773309873,214,0 +170773309921,214,0 +170773309969,214,0 +170773310017,214,0 +170773310064,214,0 +170773310112,214,0 +170773310160,214,0 +170773310208,214,0 +170773310256,214,0 +170773310304,215,0 +170773310353,215,0 +170773310401,215,0 +170773310449,215,0 +170773310497,215,0 +170773310546,215,0 +170773310594,215,0 +170773310642,215,0 +170773310692,214,0 +170773310740,213,0 +170773310788,213,0 +170773310836,214,0 +170773310884,214,0 +170773310933,214,0 +170773310981,214,0 +170773311029,214,0 +170773311077,214,0 +170773311125,214,0 +170773311174,214,0 +170773311222,214,0 +170773311270,215,0 +170773311318,214,0 +170773311366,215,0 +170773311414,215,0 +170773311461,215,0 +170773311509,215,0 +170773311557,215,0 +170773311607,213,0 +170773311656,213,0 +170773311706,213,0 +170773311755,213,0 +170773311803,214,0 +170773311851,214,0 +170773311899,214,0 +170773311947,214,0 +170773311995,214,0 +170773312044,214,0 +170773312092,214,0 +170773312140,214,0 +170773312188,214,0 +170773312236,215,0 +170773312284,214,0 +170773312333,214,0 +170773312383,215,0 +170773312431,215,0 +170773312480,214,0 +170773312528,213,0 +170773312576,213,0 +170773312624,214,0 +170773312672,214,0 +170773312721,214,0 +170773312771,214,0 +170773312819,214,0 +170773312868,214,0 +170773312916,214,0 +170773312965,214,0 +170773313015,214,0 +170773313063,214,0 +170773313112,215,0 +170773313160,215,0 +170773313208,215,0 +170773313256,215,0 +170773313306,215,0 +170773313354,215,0 +170773313403,213,0 +170773313452,214,0 +170773313500,214,0 +170773313548,214,0 +170773313596,214,0 +170773313646,214,0 +170773313694,214,0 +170773313742,214,0 +170773313790,214,0 +170773313839,214,0 +170773313887,214,0 +170773313936,215,0 +170773313984,214,0 +170773314034,215,0 +170773314083,215,0 +170773314131,214,0 +170773314179,215,0 +170773314227,215,0 +170773314276,214,0 +170773314326,213,0 +170773314374,213,0 +170773314422,214,0 +170773314471,214,0 +170773314519,214,0 +170773314567,214,0 +170773314615,214,0 +170773314663,214,0 +170773314711,214,0 +170773314759,214,0 +170773314807,214,0 +170773314855,214,0 +170773314903,214,0 +170773314952,215,0 +170773315000,215,0 +170773315048,215,0 +170773315096,215,0 +170773315144,214,0 +170773315192,213,0 +170773315242,214,0 +170773315291,214,0 +170773315339,213,0 +170773315388,214,0 +170773315436,214,0 +170773315486,214,0 +170773315535,214,0 +170773315585,214,0 +170773315633,214,0 +170773315682,214,0 +170773315730,214,0 +170773315780,215,0 +170773315828,215,0 +170773315877,215,0 +170773315925,215,0 +170773315973,215,0 +170773316021,214,0 +170773316068,214,0 +170773316116,214,0 +170773316164,214,0 +170773316212,214,0 +170773316259,214,0 +170773316307,214,0 +170773316355,215,0 +170773316403,215,0 +170773316451,215,0 +170773316498,215,0 +170773316546,215,0 +170773316594,215,0 +170773316642,215,0 +170773316690,215,0 +170773316737,215,0 +170773316785,215,0 +170773316833,215,0 +170773316881,215,0 +170773316929,214,0 +170773316976,214,0 +170773317024,214,0 +170773317072,214,0 +170773317121,214,0 +170773317169,215,0 +170773317217,215,0 +170773317265,215,0 +170773317313,215,0 +170773317360,215,0 +170773317408,215,0 +170773317456,215,0 +170773317504,215,0 +170773317552,215,0 +170773317600,215,0 +170773317648,215,0 +170773317697,215,0 +170773317745,214,0 +170773317794,215,0 +170773317842,214,0 +170773317890,214,0 +170773317938,214,0 +170773317988,214,0 +170773318037,214,0 +170773318085,214,0 +170773318133,214,0 +170773318181,214,0 +170773318230,215,0 +170773318278,215,0 +170773318326,215,0 +170773318375,215,0 +170773318423,215,0 +170773318473,215,0 +170773318521,215,0 +170773318569,215,0 +170773318616,215,0 +170773318664,215,0 +170773318712,214,0 +170773318762,214,0 +170773318811,214,0 +170773318859,215,0 +170773318907,214,0 +170773318957,214,0 +170773319006,214,0 +170773319056,214,0 +170773319103,215,0 +170773319151,215,0 +170773319199,215,0 +170773319247,215,0 +170773319295,215,0 +170773319343,215,0 +170773319392,215,0 +170773319440,215,0 +170773319489,215,0 +170773319537,215,0 +170773319585,214,0 +170773319635,214,0 +170773319684,214,0 +170773319732,214,0 +170773319781,214,0 +170773319829,215,0 +170773319877,214,0 +170773319924,215,0 +170773319972,215,0 +170773320020,215,0 +170773320068,215,0 +170773320116,215,0 +170773320164,215,0 +170773320211,215,0 +170773320259,215,0 +170773320307,215,0 +170773320355,215,0 +170773320403,215,0 +170773320451,215,0 +170773320500,214,0 +170773320550,214,0 +170773320597,214,0 +170773320647,214,0 +170773320696,214,0 +170773320744,214,0 +170773320792,214,0 +170773320839,215,0 +170773320887,214,0 +170773320935,214,0 +170773320983,215,0 +170773321031,215,0 +170773321080,215,0 +170773321130,215,0 +170773321178,215,0 +170773321226,215,0 +170773321275,215,0 +170773321325,215,0 +170773321373,214,0 +170773321421,214,0 +170773321470,214,0 +170773321518,214,0 +170773321567,214,0 +170773321615,214,0 +170773321663,214,0 +170773321713,214,0 +170773321761,214,0 +170773321810,214,0 +170773321858,215,0 +170773321906,215,0 +170773321956,215,0 +170773322004,215,0 +170773322053,215,0 +170773322103,215,0 +170773322151,215,0 +170773322199,215,0 +170773322246,214,0 +170773322296,213,0 +170773322344,213,0 +170773322392,214,0 +170773322440,214,0 +170773322489,214,0 +170773322537,214,0 +170773322585,214,0 +170773322632,214,0 +170773322680,214,0 +170773322728,214,0 +170773322776,214,0 +170773322824,215,0 +170773322872,215,0 +170773322921,215,0 +170773322969,215,0 +170773323018,215,0 +170773323066,215,0 +170773323114,215,0 +170773323162,214,0 +170773323210,214,0 +170773323257,214,0 +170773323305,214,0 +170773323353,214,0 +170773323401,214,0 +170773323451,214,0 +170773323499,214,0 +170773323547,214,0 +170773323594,215,0 +170773323642,215,0 +170773323690,215,0 +170773323738,215,0 +170773323786,215,0 +170773323834,215,0 +170773323882,215,0 +170773323930,215,0 +170773323977,215,0 +170773324025,214,0 +170773324073,213,0 +170773324121,213,0 +170773324169,214,0 +170773324216,214,0 +170773324264,214,0 +170773324312,214,0 +170773324360,214,0 +170773324408,214,0 +170773324455,214,0 +170773324503,214,0 +170773324551,215,0 +170773324599,215,0 +170773324646,215,0 +170773324694,215,0 +170773324742,215,0 +170773324790,215,0 +170773324837,215,0 +170773324885,215,0 +170773324933,213,0 +170773324981,213,0 +170773325029,214,0 +170773325077,214,0 +170773325126,214,0 +170773325175,214,0 +170773325223,214,0 +170773325271,214,0 +170773325319,214,0 +170773325367,214,0 +170773325417,214,0 +170773325466,215,0 +170773325516,215,0 +170773325563,215,0 +170773325613,215,0 +170773325661,215,0 +170773325710,215,0 +170773325760,215,0 +170773325809,214,0 +170773325857,213,0 +170773325905,214,0 +170773325954,214,0 +170773326002,214,0 +170773326050,214,0 +170773326098,214,0 +170773326146,214,0 +170773326193,215,0 +170773326241,214,0 +170773326289,215,0 +170773326339,214,0 +170773326386,214,0 +170773326434,215,0 +170773326482,215,0 +170773326532,215,0 +170773326580,215,0 +170773326628,215,0 +170773326676,215,0 +170773326723,213,0 +170773326771,213,0 +170773326819,214,0 +170773326869,213,0 +170773326917,214,0 +170773326964,214,0 +170773327012,214,0 +170773327060,214,0 +170773327110,214,0 +170773327158,214,0 +170773327206,214,0 +170773327255,214,0 +170773327305,215,0 +170773327354,215,0 +170773327404,214,0 +170773327453,214,0 +170773327501,215,0 +170773327549,215,0 +170773327597,213,0 +170773327646,213,0 +170773327696,213,0 +170773327744,213,0 +170773327792,213,0 +170773327841,213,0 +170773327889,213,0 +170773327937,213,0 +170773327985,214,0 +170773328033,214,0 +170773328082,214,0 +170773328130,214,0 +170773328180,214,0 +170773328228,214,0 +170773328277,214,0 +170773328327,214,0 +170773328375,214,0 +170773328424,214,0 +170773328474,214,0 +170773328523,213,0 +170773328571,213,0 +170773328621,214,0 +170773328670,214,0 +170773328720,214,0 +170773328768,214,0 +170773328816,214,0 +170773328864,214,0 +170773328911,214,0 +170773328959,214,0 +170773329007,214,0 +170773329057,214,0 +170773329105,214,0 +170773329154,214,0 +170773329202,215,0 +170773329250,215,0 +170773329298,215,0 +170773329346,214,0 +170773329394,213,0 +170773329442,213,0 +170773329491,213,0 +170773329539,214,0 +170773329588,214,0 +170773329636,214,0 +170773329684,214,0 +170773329732,214,0 +170773329780,214,0 +170773329828,214,0 +170773329876,214,0 +170773329924,214,0 +170773329973,214,0 +170773330021,214,0 +170773330071,215,0 +170773330118,215,0 +170773330166,215,0 +170773330216,215,0 +170773330265,213,0 +170773330315,213,0 +170773330364,214,0 +170773330412,214,0 +170773330462,214,0 +170773330511,214,0 +170773330559,214,0 +170773330607,214,0 +170773330655,214,0 +170773330703,214,0 +170773330752,214,0 +170773330800,214,0 +170773330850,214,0 +170773330899,215,0 +170773330949,215,0 +170773330996,215,0 +170773331046,214,0 +170773331094,215,0 +170773331142,214,0 +170773331190,213,0 +170773331237,213,0 +170773331285,214,0 +170773331333,214,0 +170773331381,214,0 +170773331429,213,0 +170773331477,214,0 +170773331525,214,0 +170773331574,214,0 +170773331622,214,0 +170773331670,214,0 +170773331718,214,0 +170773331766,215,0 +170773331814,215,0 +170773331862,215,0 +170773331910,215,0 +170773331958,215,0 +170773332006,215,0 +170773332054,213,0 +170773332102,214,0 +170773332150,214,0 +170773332199,214,0 +170773332247,214,0 +170773332295,214,0 +170773332343,214,0 +170773332391,214,0 +170773332439,214,0 +170773332487,214,0 +170773332536,215,0 +170773332584,215,0 +170773332633,215,0 +170773332681,215,0 +170773332729,215,0 +170773332777,215,0 +170773332825,215,0 +170773332873,215,0 +170773332922,214,0 +170773332970,214,0 +170773333020,214,0 +170773333068,214,0 +170773333116,214,0 +170773333164,214,0 +170773333211,215,0 +170773333261,215,0 +170773333309,214,0 +170773333357,214,0 +170773333405,215,0 +170773333453,215,0 +170773333501,215,0 +170773333550,215,0 +170773333600,215,0 +170773333649,215,0 +170773333699,215,0 +170773333747,215,0 +170773333795,214,0 +170773333842,214,0 +170773333890,214,0 +170773333938,214,0 +170773333986,214,0 +170773334034,215,0 +170773334082,215,0 +170773334130,215,0 +170773334178,215,0 +170773334226,215,0 +170773334273,215,0 +170773334321,215,0 +170773334369,215,0 +170773334417,215,0 +170773334465,215,0 +170773334513,215,0 +170773334561,215,0 +170773334609,215,0 +170773334658,214,0 +170773334708,214,0 +170773334757,214,0 +170773334807,214,0 +170773334855,214,0 +170773334903,215,0 +170773334951,214,0 +170773335000,215,0 +170773335050,215,0 +170773335098,215,0 +170773335146,215,0 +170773335194,215,0 +170773335242,216,0 +170773335290,215,0 +170773335338,215,0 +170773335385,215,0 +170773335433,215,0 +170773335481,215,0 +170773335529,215,0 +170773335577,214,0 +170773335627,214,0 +170773335676,214,0 +170773335725,214,0 +170773335775,214,0 +170773335823,215,0 +170773335871,215,0 +170773335919,215,0 +170773335967,215,0 +170773336015,215,0 +170773336064,215,0 +170773336114,215,0 +170773336163,215,0 +170773336211,215,0 +170773336261,215,0 +170773336309,215,0 +170773336357,215,0 +170773336406,215,0 +170773336454,214,0 +170773336502,214,0 +170773336550,214,0 +170773336598,214,0 +170773336645,214,0 +170773336693,214,0 +170773336743,214,0 +170773336791,214,0 +170773336839,214,0 +170773336886,215,0 +170773336934,215,0 +170773336982,215,0 +170773337030,215,0 +170773337078,214,0 +170773337125,215,0 +170773337173,214,0 +170773337223,215,0 +170773337270,215,0 +170773337318,215,0 +170773337368,213,0 +170773337417,213,0 +170773337467,213,0 +170773337515,214,0 +170773337562,213,0 +170773337610,213,0 +170773337658,214,0 +170773337706,214,0 +170773337754,214,0 +170773337802,214,0 +170773337850,214,0 +170773337899,214,0 +170773337947,214,0 +170773337997,214,0 +170773338046,214,0 +170773338094,214,0 +170773338142,214,0 +170773338190,215,0 +170773338240,214,0 +170773338289,213,0 +170773338338,213,0 +170773338386,213,0 +170773338436,213,0 +170773338484,213,0 +170773338532,213,0 +170773338580,214,0 +170773338627,214,0 +170773338677,214,0 +170773338725,214,0 +170773338773,214,0 +170773338820,214,0 +170773338868,214,0 +170773338918,214,0 +170773338966,215,0 +170773339014,215,0 +170773339061,215,0 +170773339109,214,0 +170773339157,213,0 +170773339207,213,0 +170773339255,213,0 +170773339303,213,0 +170773339350,214,0 +170773339398,214,0 +170773339448,214,0 +170773339497,214,0 +170773339545,214,0 +170773339593,214,0 +170773339641,214,0 +170773339690,214,0 +170773339738,214,0 +170773339788,215,0 +170773339835,215,0 +170773339883,214,0 +170773339931,215,0 +170773339979,215,0 +170773340028,213,0 +170773340076,213,0 +170773340124,213,0 +170773340174,214,0 +170773340222,214,0 +170773340271,214,0 +170773340319,214,0 +170773340368,214,0 +170773340416,214,0 +170773340464,214,0 +170773340512,214,0 +170773340560,214,0 +170773340608,214,0 +170773340656,214,0 +170773340705,214,0 +170773340755,214,0 +170773340804,214,0 +170773340854,215,0 +170773340902,215,0 +170773340949,215,0 +170773340997,215,0 +170773341045,215,0 +170773341095,215,0 +170773341144,215,0 +170773341192,215,0 +170773341240,215,0 +170773341288,215,0 +170773341336,214,0 +170773341385,214,0 +170773341433,213,0 +170773341483,213,0 +170773341531,213,0 +170773341579,214,0 +170773341628,214,0 +170773341677,214,0 +170773341727,214,0 +170773341775,214,0 +170773341823,214,0 +170773341872,214,0 +170773341920,214,0 +170773341970,214,0 +170773342019,214,0 +170773342067,214,0 +170773342115,215,0 +170773342163,215,0 +170773342211,214,0 +170773342259,213,0 +170773342307,213,0 +170773342355,214,0 +170773342404,214,0 +170773342452,214,0 +170773342500,214,0 +170773342548,214,0 +170773342596,214,0 +170773342644,214,0 +170773342692,214,0 +170773342739,214,0 +170773342787,215,0 +170773342835,214,0 +170773342885,215,0 +170773342932,215,0 +170773342982,215,0 +170773343031,215,0 +170773343079,214,0 +170773343127,214,0 +170773343175,213,0 +170773343223,214,0 +170773343273,214,0 +170773343320,214,0 +170773343370,214,0 +170773343418,214,0 +170773343467,214,0 +170773343517,214,0 +170773343565,214,0 +170773343614,214,0 +170773343664,214,0 +170773343713,215,0 +170773343761,215,0 +170773343809,215,0 +170773343857,215,0 +170773343905,215,0 +170773343953,215,0 +170773344001,213,0 +170773344049,214,0 +170773344096,213,0 +170773344144,214,0 +170773344194,214,0 +170773344243,214,0 +170773344293,214,0 +170773344341,214,0 +170773344390,214,0 +170773344438,214,0 +170773344486,215,0 +170773344534,215,0 +170773344581,215,0 +170773344629,215,0 +170773344677,215,0 +170773344727,215,0 +170773344775,215,0 +170773344822,214,0 +170773344872,214,0 +170773344921,214,0 +170773344971,214,0 +170773345019,214,0 +170773345066,214,0 +170773345114,215,0 +170773345162,214,0 +170773345210,214,0 +170773345258,215,0 +170773345308,214,0 +170773345357,215,0 +170773345405,215,0 +170773345453,215,0 +170773345501,215,0 +170773345549,215,0 +170773345597,215,0 +170773345644,215,0 +170773345692,214,0 +170773345740,214,0 +170773345788,214,0 +170773345836,214,0 +170773345884,214,0 +170773345932,214,0 +170773345980,214,0 +170773346028,214,0 +170773346075,214,0 +170773346123,214,0 +170773346171,214,0 +170773346219,214,0 +170773346268,215,0 +170773346318,215,0 +170773346367,215,0 +170773346417,215,0 +170773346465,215,0 +170773346513,215,0 +170773346562,214,0 +170773346610,214,0 +170773346658,214,0 +170773346705,214,0 +170773346753,214,0 +170773346803,214,0 +170773346850,214,0 +170773346898,214,0 +170773346946,214,0 +170773346995,214,0 +170773347043,215,0 +170773347091,215,0 +170773347139,215,0 +170773347188,215,0 +170773347236,215,0 +170773347284,215,0 +170773347332,215,0 +170773347380,215,0 +170773347427,214,0 +170773347475,214,0 +170773347523,214,0 +170773347571,214,0 +170773347619,214,0 +170773347668,214,0 +170773347718,214,0 +170773347767,214,0 +170773347815,215,0 +170773347864,215,0 +170773347912,215,0 +170773347960,215,0 +170773348008,215,0 +170773348055,215,0 +170773348103,215,0 +170773348151,215,0 +170773348199,215,0 +170773348247,215,0 +170773348295,214,0 +170773348343,213,0 +170773348390,214,0 +170773348438,214,0 +170773348486,214,0 +170773348534,214,0 +170773348582,214,0 +170773348630,214,0 +170773348678,214,0 +170773348727,214,0 +170773348775,215,0 +170773348823,215,0 +170773348871,215,0 +170773348920,215,0 +170773348969,215,0 +170773349017,215,0 +170773349065,215,0 +170773349113,215,0 +170773349160,215,0 +170773349208,214,0 +170773349256,214,0 +170773349304,214,0 +170773349352,214,0 +170773349400,214,0 +170773349449,215,0 +170773349497,215,0 +170773349545,215,0 +170773349593,215,0 +170773349641,215,0 +170773349688,215,0 +170773349736,215,0 +170773349784,215,0 +170773349832,215,0 +170773349880,215,0 +170773349928,215,0 +170773349977,215,0 +170773350025,215,0 +170773350074,214,0 +170773350122,214,0 +170773350171,215,0 +170773350219,214,0 +170773350267,214,0 +170773350315,215,0 +170773350364,215,0 +170773350412,215,0 +170773350460,215,0 +170773350509,215,0 +170773350557,215,0 +170773350605,215,0 +170773350653,215,0 +170773350700,215,0 +170773350748,215,0 +170773350796,215,0 +170773350844,214,0 +170773350892,215,0 +170773350940,214,0 +170773350988,214,0 +170773351035,214,0 +170773351083,215,0 +170773351131,215,0 +170773351180,215,0 +170773351230,215,0 +170773351278,215,0 +170773351326,215,0 +170773351373,215,0 +170773351423,215,0 +170773351471,215,0 +170773351518,215,0 +170773351566,215,0 +170773351614,215,0 +170773351662,215,0 +170773351710,215,0 +170773351759,215,0 +170773351807,214,0 +170773351855,214,0 +170773351903,214,0 +170773351950,214,0 +170773352000,214,0 +170773352048,214,0 +170773352096,214,0 +170773352143,214,0 +170773352191,215,0 +170773352239,214,0 +170773352287,215,0 +170773352335,215,0 +170773352383,215,0 +170773352430,215,0 +170773352478,215,0 +170773352526,215,0 +170773352574,215,0 +170773352622,215,0 +170773352670,214,0 +170773352717,214,0 +170773352765,214,0 +170773352813,214,0 +170773352861,214,0 +170773352909,214,0 +170773352958,215,0 +170773353006,215,0 +170773353054,215,0 +170773353103,215,0 +170773353151,215,0 +170773353199,215,0 +170773353247,215,0 +170773353296,215,0 +170773353344,215,0 +170773353392,215,0 +170773353440,215,0 +170773353489,214,0 +170773353537,214,0 +170773353585,214,0 +170773353633,214,0 +170773353680,214,0 +170773353728,214,0 +170773353776,214,0 +170773353825,214,0 +170773353873,214,0 +170773353921,214,0 +170773353969,215,0 +170773354017,215,0 +170773354064,215,0 +170773354112,215,0 +170773354160,215,0 +170773354209,215,0 +170773354257,215,0 +170773354305,215,0 +170773354353,215,0 +170773354401,213,0 +170773354448,213,0 +170773354496,214,0 +170773354544,214,0 +170773354592,214,0 +170773354640,214,0 +170773354688,214,0 +170773354735,214,0 +170773354783,214,0 +170773354831,214,0 +170773354879,214,0 +170773354927,214,0 +170773354976,214,0 +170773355026,215,0 +170773355074,215,0 +170773355122,215,0 +170773355170,215,0 +170773355219,215,0 +170773355269,214,0 +170773355317,213,0 +170773355366,213,0 +170773355414,213,0 +170773355462,214,0 +170773355511,214,0 +170773355561,214,0 +170773355610,214,0 +170773355658,214,0 +170773355706,214,0 +170773355754,214,0 +170773355803,214,0 +170773355853,214,0 +170773355901,215,0 +170773355949,215,0 +170773355998,215,0 +170773356046,215,0 +170773356094,215,0 +170773356142,214,0 +170773356190,214,0 +170773356238,213,0 +170773356286,214,0 +170773356335,214,0 +170773356383,214,0 +170773356432,214,0 +170773356480,214,0 +170773356528,214,0 +170773356578,214,0 +170773356625,214,0 +170773356675,214,0 +170773356723,214,0 +170773356771,214,0 +170773356819,215,0 +170773356867,215,0 +170773356915,215,0 +170773356963,215,0 +170773357010,213,0 +170773357058,213,0 +170773357106,213,0 +170773357154,214,0 +170773357202,214,0 +170773357250,214,0 +170773357298,214,0 +170773357345,214,0 +170773357393,214,0 +170773357441,214,0 +170773357489,214,0 +170773357537,214,0 +170773357585,215,0 +170773357633,215,0 +170773357680,215,0 +170773357728,215,0 +170773357776,215,0 +170773357824,215,0 +170773357874,213,0 +170773357921,213,0 +170773357971,213,0 +170773358020,213,0 +170773358070,213,0 +170773358118,214,0 +170773358166,214,0 +170773358213,214,0 +170773358261,214,0 +170773358311,214,0 +170773358360,214,0 +170773358408,214,0 +170773358457,215,0 +170773358505,214,0 +170773358555,215,0 +170773358603,215,0 +170773358651,215,0 +170773358699,215,0 +170773358746,213,0 +170773358794,213,0 +170773358842,213,0 +170773358890,213,0 +170773358938,213,0 +170773358986,214,0 +170773359034,214,0 +170773359084,214,0 +170773359133,214,0 +170773359181,214,0 +170773359229,214,0 +170773359278,214,0 +170773359326,215,0 +170773359375,215,0 +170773359422,215,0 +170773359470,215,0 +170773359518,215,0 +170773359566,215,0 +170773359614,213,0 +170773359664,213,0 +170773359711,214,0 +170773359761,214,0 +170773359809,214,0 +170773359857,214,0 +170773359905,214,0 +170773359954,214,0 +170773360004,214,0 +170773360053,214,0 +170773360101,214,0 +170773360149,215,0 +170773360198,215,0 +170773360246,215,0 +170773360296,215,0 +170773360345,215,0 +170773360395,215,0 +170773360443,214,0 +170773360491,214,0 +170773360539,214,0 +170773360586,214,0 +170773360634,214,0 +170773360682,214,0 +170773360730,214,0 +170773360778,214,0 +170773360826,214,0 +170773360874,215,0 +170773360922,215,0 +170773360969,215,0 +170773361019,215,0 +170773361067,215,0 +170773361115,215,0 +170773361163,215,0 +170773361212,215,0 +170773361262,215,0 +170773361309,214,0 +170773361357,214,0 +170773361405,214,0 +170773361453,214,0 +170773361501,214,0 +170773361549,214,0 +170773361599,214,0 +170773361648,214,0 +170773361698,214,0 +170773361746,214,0 +170773361795,215,0 +170773361843,215,0 +170773361891,215,0 +170773361941,215,0 +170773361988,215,0 +170773362036,215,0 +170773362084,215,0 +170773362132,215,0 +170773362180,214,0 +170773362230,214,0 +170773362278,214,0 +170773362326,214,0 +170773362375,214,0 +170773362423,214,0 +170773362472,214,0 +170773362520,214,0 +170773362568,214,0 +170773362616,214,0 +170773362666,215,0 +170773362713,215,0 +170773362763,215,0 +170773362811,215,0 +170773362859,215,0 +170773362908,215,0 +170773362956,215,0 +170773363004,215,0 +170773363052,214,0 +170773363101,213,0 +170773363149,213,0 +170773363197,214,0 +170773363245,214,0 +170773363294,214,0 +170773363342,214,0 +170773363392,214,0 +170773363440,214,0 +170773363489,214,0 +170773363539,214,0 +170773363587,214,0 +170773363635,214,0 +170773363684,215,0 +170773363734,215,0 +170773363782,215,0 +170773363830,215,0 +170773363878,215,0 +170773363927,214,0 +170773363975,213,0 +170773364024,214,0 +170773364074,214,0 +170773364122,214,0 +170773364171,214,0 +170773364221,214,0 +170773364269,214,0 +170773364317,214,0 +170773364366,214,0 +170773364414,214,0 +170773364462,214,0 +170773364510,215,0 +170773364558,215,0 +170773364606,215,0 +170773364654,215,0 +170773364703,215,0 +170773364751,215,0 +170773364799,214,0 +170773364847,214,0 +170773364895,214,0 +170773364943,214,0 +170773364991,214,0 +170773365039,214,0 +170773365087,214,0 +170773365136,214,0 +170773365186,214,0 +170773365234,215,0 +170773365283,214,0 +170773365331,214,0 +170773365379,215,0 +170773365427,215,0 +170773365476,215,0 +170773365526,215,0 +170773365574,215,0 +170773365621,214,0 +170773365669,214,0 +170773365717,214,0 +170773365765,214,0 +170773365815,214,0 +170773365863,215,0 +170773365912,215,0 +170773365960,215,0 +170773366009,215,0 +170773366057,215,0 +170773366107,215,0 +170773366155,215,0 +170773366204,215,0 +170773366252,215,0 +170773366300,215,0 +170773366348,215,0 +170773366396,215,0 +170773366445,215,0 +170773366493,215,0 +170773366541,215,0 +170773366589,215,0 +170773366637,215,0 +170773366686,215,0 +170773366734,215,0 +170773366782,215,0 +170773366830,215,0 +170773366879,215,0 +170773366927,215,0 +170773366975,215,0 +170773367025,215,0 +170773367073,215,0 +170773367121,215,0 +170773367170,215,0 +170773367220,215,0 +170773367269,215,0 +170773367319,215,0 +170773367366,214,0 +170773367414,214,0 +170773367462,214,0 +170773367510,214,0 +170773367558,214,0 +170773367606,214,0 +170773367654,215,0 +170773367703,214,0 +170773367751,214,0 +170773367799,215,0 +170773367847,215,0 +170773367896,215,0 +170773367944,215,0 +170773367992,215,0 +170773368040,215,0 +170773368088,215,0 +170773368137,215,0 +170773368185,215,0 +170773368233,214,0 +170773368281,214,0 +170773368331,214,0 +170773368379,214,0 +170773368426,214,0 +170773368476,214,0 +170773368524,214,0 +170773368572,215,0 +170773368619,215,0 +170773368667,215,0 +170773368717,215,0 +170773368766,215,0 +170773368814,215,0 +170773368862,215,0 +170773368912,215,0 +170773368961,215,0 +170773369009,215,0 +170773369059,215,0 +170773369107,214,0 +170773369154,213,0 +170773369202,213,0 +170773369250,213,0 +170773369298,214,0 +170773369346,214,0 +170773369394,214,0 +170773369441,214,0 +170773369489,214,0 +170773369537,214,0 +170773369585,214,0 +170773369633,215,0 +170773369681,215,0 +170773369729,215,0 +170773369778,215,0 +170773369826,215,0 +170773369874,215,0 +170773369922,215,0 +170773369971,214,0 +170773370021,214,0 +170773370069,214,0 +170773370118,214,0 +170773370168,214,0 +170773370216,214,0 +170773370264,214,0 +170773370311,214,0 +170773370359,214,0 +170773370407,214,0 +170773370455,214,0 +170773370503,215,0 +170773370550,215,0 +170773370598,214,0 +170773370646,215,0 +170773370695,214,0 +170773370743,215,0 +170773370791,215,0 +170773370839,214,0 +170773370887,213,0 +170773370936,214,0 +170773370984,214,0 +170773371032,214,0 +170773371079,214,0 +170773371127,214,0 +170773371175,214,0 +170773371223,214,0 +170773371271,214,0 +170773371319,214,0 +170773371367,214,0 +170773371416,215,0 +170773371464,215,0 +170773371512,215,0 +170773371560,215,0 +170773371608,215,0 +170773371655,215,0 +170773371705,214,0 +170773371753,214,0 +170773371800,214,0 +170773371848,214,0 +170773371896,214,0 +170773371944,214,0 +170773371992,214,0 +170773372040,214,0 +170773372088,214,0 +170773372135,214,0 +170773372185,214,0 +170773372233,214,0 +170773372282,215,0 +170773372331,215,0 +170773372381,215,0 +170773372429,215,0 +170773372478,215,0 +170773372526,215,0 +170773372574,214,0 +170773372622,214,0 +170773372671,214,0 +170773372719,214,0 +170773372767,214,0 +170773372815,214,0 +170773372863,214,0 +170773372911,215,0 +170773372958,214,0 +170773373006,214,0 +170773373056,214,0 +170773373104,215,0 +170773373151,215,0 +170773373199,215,0 +170773373247,215,0 +170773373295,215,0 +170773373343,215,0 +170773373392,215,0 +170773373440,214,0 +170773373488,214,0 +170773373537,214,0 +170773373585,214,0 +170773373633,214,0 +170773373681,214,0 +170773373729,214,0 +170773373777,214,0 +170773373825,214,0 +170773373874,215,0 +170773373923,215,0 +170773373971,215,0 +170773374019,215,0 +170773374067,215,0 +170773374117,215,0 +170773374164,215,0 +170773374212,215,0 +170773374260,215,0 +170773374308,214,0 +170773374356,214,0 +170773374404,214,0 +170773374452,214,0 +170773374500,214,0 +170773374547,214,0 +170773374597,214,0 +170773374646,214,0 +170773374694,214,0 +170773374744,215,0 +170773374793,215,0 +170773374841,215,0 +170773374891,215,0 +170773374939,215,0 +170773374988,215,0 +170773375038,215,0 +170773375085,215,0 +170773375135,215,0 +170773375183,214,0 +170773375231,214,0 +170773375279,214,0 +170773375328,214,0 +170773375376,214,0 +170773375425,214,0 +170773375475,214,0 +170773375523,214,0 +170773375571,214,0 +170773375619,215,0 +170773375666,215,0 +170773375714,215,0 +170773375762,215,0 +170773375810,215,0 +170773375858,215,0 +170773375906,215,0 +170773375955,215,0 +170773376003,215,0 +170773376051,213,0 +170773376099,214,0 +170773376147,214,0 +170773376194,214,0 +170773376244,214,0 +170773376292,214,0 +170773376340,214,0 +170773376387,214,0 +170773376437,214,0 +170773376485,214,0 +170773376532,215,0 +170773376580,215,0 +170773376630,215,0 +170773376677,215,0 +170773376725,215,0 +170773376773,215,0 +170773376821,215,0 +170773376869,215,0 +170773376917,213,0 +170773376965,213,0 +170773377012,213,0 +170773377060,213,0 +170773377108,214,0 +170773377156,214,0 +170773377204,214,0 +170773377252,214,0 +170773377300,214,0 +170773377348,214,0 +170773377396,214,0 +170773377444,214,0 +170773377492,215,0 +170773377540,215,0 +170773377589,215,0 +170773377637,215,0 +170773377687,215,0 +170773377736,215,0 +170773377785,213,0 +170773377835,213,0 +170773377883,213,0 +170773377931,213,0 +170773377978,214,0 +170773378026,214,0 +170773378076,214,0 +170773378124,214,0 +170773378171,214,0 +170773378219,214,0 +170773378267,214,0 +170773378317,214,0 +170773378364,215,0 +170773378412,215,0 +170773378460,215,0 +170773378508,215,0 +170773378557,215,0 +170773378605,214,0 +170773378653,213,0 +170773378701,213,0 +170773378749,213,0 +170773378797,213,0 +170773378844,214,0 +170773378892,214,0 +170773378942,214,0 +170773378989,214,0 +170773379037,214,0 +170773379085,214,0 +170773379135,215,0 +170773379182,215,0 +170773379230,215,0 +170773379278,214,0 +170773379328,215,0 +170773379377,215,0 +170773379425,215,0 +170773379473,214,0 +170773379523,213,0 +170773379572,213,0 +170773379621,213,0 +170773379671,214,0 +170773379721,214,0 +170773379770,214,0 +170773379818,214,0 +170773379866,214,0 +170773379915,214,0 +170773379965,214,0 +170773380013,214,0 +170773380061,215,0 +170773380109,214,0 +170773380157,215,0 +170773380206,215,0 +170773380256,215,0 +170773380305,215,0 +170773380355,214,0 +170773380404,213,0 +170773380452,214,0 +170773380500,214,0 +170773380548,214,0 +170773380595,214,0 +170773380643,214,0 +170773380691,214,0 +170773380739,214,0 +170773380788,214,0 +170773380836,215,0 +170773380884,215,0 +170773380932,215,0 +170773380981,215,0 +170773381029,215,0 +170773381077,215,0 +170773381126,215,0 +170773381174,215,0 +170773381222,214,0 +170773381270,214,0 +170773381318,214,0 +170773381366,214,0 +170773381413,214,0 +170773381461,214,0 +170773381509,215,0 +170773381557,215,0 +170773381605,215,0 +170773381654,215,0 +170773381702,215,0 +170773381750,215,0 +170773381800,215,0 +170773381848,215,0 +170773381897,215,0 +170773381945,215,0 +170773381993,215,0 +170773382041,214,0 +170773382090,214,0 +170773382140,214,0 +170773382187,215,0 +170773382235,214,0 +170773382285,215,0 +170773382334,215,0 +170773382384,215,0 +170773382433,215,0 +170773382481,215,0 +170773382531,215,0 +170773382578,215,0 +170773382626,215,0 +170773382676,215,0 +170773382724,215,0 +170773382772,215,0 +170773382820,215,0 +170773382868,215,0 +170773382915,214,0 +170773382965,214,0 +170773383013,214,0 +170773383063,214,0 +170773383111,214,0 +170773383159,215,0 +170773383207,214,0 +170773383256,214,0 +170773383304,215,0 +170773383353,215,0 +170773383401,215,0 +170773383449,215,0 +170773383497,215,0 +170773383545,215,0 +170773383593,215,0 +170773383641,215,0 +170773383689,215,0 +170773383737,215,0 +170773383786,214,0 +170773383834,214,0 +170773383884,214,0 +170773383932,214,0 +170773383980,214,0 +170773384027,214,0 +170773384077,215,0 +170773384126,215,0 +170773384174,215,0 +170773384222,215,0 +170773384272,215,0 +170773384321,215,0 +170773384371,215,0 +170773384419,215,0 +170773384468,215,0 +170773384518,215,0 +170773384566,215,0 +170773384614,215,0 +170773384661,214,0 +170773384709,214,0 +170773384757,214,0 +170773384805,214,0 +170773384853,214,0 +170773384902,214,0 +170773384950,214,0 +170773385000,214,0 +170773385049,215,0 +170773385099,215,0 +170773385147,215,0 +170773385196,215,0 +170773385246,215,0 +170773385294,215,0 +170773385342,215,0 +170773385390,215,0 +170773385439,215,0 +170773385487,215,0 +170773385536,214,0 +170773385584,214,0 +170773385632,214,0 +170773385680,214,0 +170773385730,214,0 +170773385779,214,0 +170773385829,214,0 +170773385877,214,0 +170773385925,214,0 +170773385974,215,0 +170773386022,215,0 +170773386070,215,0 +170773386119,215,0 +170773386169,215,0 +170773386217,215,0 +170773386265,216,0 +170773386314,215,0 +170773386364,214,0 +170773386413,214,0 +170773386463,214,0 +170773386511,214,0 +170773386558,214,0 +170773386608,214,0 +170773386658,214,0 +170773386707,215,0 +170773386755,215,0 +170773386804,215,0 +170773386852,215,0 +170773386900,215,0 +170773386948,215,0 +170773386996,215,0 +170773387044,215,0 +170773387094,215,0 +170773387141,215,0 +170773387189,215,0 +170773387239,214,0 +170773387288,214,0 +170773387336,214,0 +170773387384,214,0 +170773387434,214,0 +170773387483,215,0 +170773387531,214,0 +170773387579,215,0 +170773387627,215,0 +170773387677,215,0 +170773387725,215,0 +170773387774,215,0 +170773387824,215,0 +170773387871,215,0 +170773387921,215,0 +170773387969,215,0 +170773388017,215,0 +170773388065,215,0 +170773388114,214,0 +170773388162,214,0 +170773388212,214,0 +170773388260,214,0 +170773388308,214,0 +170773388357,214,0 +170773388405,214,0 +170773388455,215,0 +170773388504,215,0 +170773388552,215,0 +170773388602,215,0 +170773388651,215,0 +170773388699,215,0 +170773388747,215,0 +170773388795,215,0 +170773388843,215,0 +170773388892,215,0 +170773388940,214,0 +170773388990,214,0 +170773389038,214,0 +170773389087,214,0 +170773389135,214,0 +170773389183,214,0 +170773389231,214,0 +170773389279,214,0 +170773389327,214,0 +170773389375,214,0 +170773389424,215,0 +170773389472,215,0 +170773389522,215,0 +170773389571,215,0 +170773389621,215,0 +170773389669,215,0 +170773389716,215,0 +170773389766,215,0 +170773389814,214,0 +170773389863,213,0 +170773389911,214,0 +170773389959,214,0 +170773390009,214,0 +170773390058,214,0 +170773390106,214,0 +170773390154,214,0 +170773390202,214,0 +170773390251,215,0 +170773390299,215,0 +170773390347,215,0 +170773390396,215,0 +170773390444,215,0 +170773390492,215,0 +170773390540,215,0 +170773390588,215,0 +170773390635,215,0 +170773390685,213,0 +170773390734,213,0 +170773390784,214,0 +170773390833,214,0 +170773390881,214,0 +170773390929,214,0 +170773390977,214,0 +170773391026,214,0 +170773391074,215,0 +170773391122,215,0 +170773391170,215,0 +170773391218,215,0 +170773391266,215,0 +170773391315,215,0 +170773391363,215,0 +170773391411,215,0 +170773391459,215,0 +170773391507,214,0 +170773391555,213,0 +170773391603,214,0 +170773391650,214,0 +170773391700,214,0 +170773391748,214,0 +170773391797,214,0 +170773391847,214,0 +170773391896,214,0 +170773391944,214,0 +170773391992,214,0 +170773392040,214,0 +170773392088,214,0 +170773392136,215,0 +170773392185,215,0 +170773392233,215,0 +170773392281,215,0 +170773392329,215,0 +170773392379,214,0 +170773392427,213,0 +170773392476,213,0 +170773392526,214,0 +170773392575,214,0 +170773392623,214,0 +170773392671,214,0 +170773392720,214,0 +170773392768,214,0 +170773392816,214,0 +170773392864,214,0 +170773392912,214,0 +170773392962,215,0 +170773393010,215,0 +170773393057,216,0 +170773393105,215,0 +170773393155,215,0 +170773393203,215,0 +170773393252,213,0 +170773393302,213,0 +170773393351,214,0 +170773393401,214,0 +170773393450,214,0 +170773393498,214,0 +170773393548,214,0 +170773393596,214,0 +170773393644,214,0 +170773393692,214,0 +170773393739,214,0 +170773393789,215,0 +170773393837,215,0 +170773393885,215,0 +170773393933,215,0 +170773393981,214,0 +170773394029,215,0 +170773394076,214,0 +170773394124,214,0 +170773394172,213,0 +170773394220,214,0 +170773394268,213,0 +170773394316,214,0 +170773394363,214,0 +170773394411,214,0 +170773394459,214,0 +170773394508,214,0 +170773394556,215,0 +170773394604,215,0 +170773394654,215,0 +170773394702,215,0 +170773394750,215,0 +170773394799,215,0 +170773394849,215,0 +170773394897,215,0 +170773394945,214,0 +170773394994,214,0 +170773395044,214,0 +170773395091,214,0 +170773395139,214,0 +170773395187,214,0 +170773395235,214,0 +170773395285,214,0 +170773395333,214,0 +170773395380,215,0 +170773395428,215,0 +170773395476,215,0 +170773395524,215,0 +170773395571,215,0 +170773395621,215,0 +170773395670,215,0 +170773395718,215,0 +170773395766,215,0 +170773395814,214,0 +170773395861,213,0 +170773395911,214,0 +170773395959,214,0 +170773396007,214,0 +170773396054,214,0 +170773396102,214,0 +170773396150,214,0 +170773396198,214,0 +170773396246,215,0 +170773396294,215,0 +170773396341,215,0 +170773396389,215,0 +170773396437,215,0 +170773396485,215,0 +170773396533,215,0 +170773396581,215,0 +170773396629,215,0 +170773396676,214,0 +170773396724,214,0 +170773396772,214,0 +170773396820,214,0 +170773396868,214,0 +170773396915,214,0 +170773396963,214,0 +170773397011,214,0 +170773397061,215,0 +170773397108,215,0 +170773397156,215,0 +170773397204,215,0 +170773397252,215,0 +170773397300,215,0 +170773397350,215,0 +170773397398,215,0 +170773397446,215,0 +170773397494,215,0 +170773397542,214,0 +170773397589,214,0 +170773397639,214,0 +170773397687,214,0 +170773397736,214,0 +170773397784,214,0 +170773397832,214,0 +170773397880,215,0 +170773397928,215,0 +170773397977,215,0 +170773398025,215,0 +170773398073,215,0 +170773398121,215,0 +170773398171,215,0 +170773398219,215,0 +170773398267,215,0 +170773398314,215,0 +170773398362,214,0 +170773398410,214,0 +170773398460,214,0 +170773398509,214,0 +170773398557,214,0 +170773398605,214,0 +170773398653,215,0 +170773398701,215,0 +170773398749,215,0 +170773398799,215,0 +170773398846,215,0 +170773398896,215,0 +170773398944,215,0 +170773398993,215,0 +170773399041,215,0 +170773399091,215,0 +170773399139,215,0 +170773399187,215,0 +170773399236,214,0 +170773399284,214,0 +170773399332,214,0 +170773399380,215,0 +170773399428,215,0 +170773399476,215,0 +170773399524,215,0 +170773399571,215,0 +170773399621,215,0 +170773399669,215,0 +170773399718,215,0 +170773399768,215,0 +170773399817,215,0 +170773399865,215,0 +170773399913,215,0 +170773399962,215,0 +170773400010,215,0 +170773400058,215,0 +170773400106,214,0 +170773400154,214,0 +170773400202,214,0 +170773400250,214,0 +170773400298,214,0 +170773400346,214,0 +170773400396,215,0 +170773400443,214,0 +170773400491,215,0 +170773400541,215,0 +170773400589,215,0 +170773400637,215,0 +170773400684,215,0 +170773400732,215,0 +170773400782,215,0 +170773400830,215,0 +170773400879,215,0 +170773400929,215,0 +170773400977,214,0 +170773401026,214,0 +170773401076,214,0 +170773401124,214,0 +170773401173,214,0 +170773401221,214,0 +170773401269,214,0 +170773401317,214,0 +170773401367,214,0 +170773401416,215,0 +170773401466,215,0 +170773401515,215,0 +170773401565,214,0 +170773401614,214,0 +170773401664,214,0 +170773401713,214,0 +170773401761,214,0 +170773401809,214,0 +170773401857,213,0 +170773401907,214,0 +170773401955,213,0 +170773402003,214,0 +170773402052,214,0 +170773402101,214,0 +170773402149,214,0 +170773402197,214,0 +170773402247,214,0 +170773402295,214,0 +170773402343,214,0 +170773402390,215,0 +170773402440,214,0 +170773402488,215,0 +170773402537,215,0 +170773402585,215,0 +170773402635,215,0 +170773402683,214,0 +170773402732,213,0 +170773402780,214,0 +170773402828,214,0 +170773402876,214,0 +170773402924,214,0 +170773402973,214,0 +170773403021,214,0 +170773403069,214,0 +170773403118,214,0 +170773403166,215,0 +170773403216,215,0 +170773403265,215,0 +170773403315,215,0 +170773403363,215,0 +170773403412,215,0 +170773403460,215,0 +170773403508,215,0 +170773403556,214,0 +170773403604,214,0 +170773403652,214,0 +170773403701,214,0 +170773403749,214,0 +170773403797,214,0 +170773403845,214,0 +170773403893,214,0 +170773403941,215,0 +170773403990,215,0 +170773404038,215,0 +170773404086,215,0 +170773404134,215,0 +170773404182,215,0 +170773404230,215,0 +170773404279,215,0 +170773404327,215,0 +170773404375,214,0 +170773404423,214,0 +170773404471,214,0 +170773404519,214,0 +170773404568,214,0 +170773404616,214,0 +170773404665,214,0 +170773404713,215,0 +170773404763,215,0 +170773404811,215,0 +170773404859,215,0 +170773404907,215,0 +170773404954,215,0 +170773405004,215,0 +170773405053,215,0 +170773405101,215,0 +170773405149,215,0 +170773405197,215,0 +170773405245,214,0 +170773405293,213,0 +170773405342,214,0 +170773405390,214,0 +170773405440,214,0 +170773405489,214,0 +170773405537,214,0 +170773405585,214,0 +170773405633,214,0 +170773405681,215,0 +170773405730,215,0 +170773405778,215,0 +170773405828,215,0 +170773405875,215,0 +170773405923,215,0 +170773405971,215,0 +170773406019,215,0 +170773406067,215,0 +170773406115,214,0 +170773406163,213,0 +170773406211,213,0 +170773406259,214,0 +170773406308,214,0 +170773406358,214,0 +170773406407,214,0 +170773406455,214,0 +170773406504,214,0 +170773406552,214,0 +170773406602,214,0 +170773406651,214,0 +170773406699,214,0 +170773406749,214,0 +170773406797,214,0 +170773406845,214,0 +170773406893,215,0 +170773406941,214,0 +170773406988,213,0 +170773407038,214,0 +170773407086,213,0 +170773407134,213,0 +170773407182,213,0 +170773407230,214,0 +170773407278,214,0 +170773407325,214,0 +170773407373,214,0 +170773407421,214,0 +170773407469,214,0 +170773407519,214,0 +170773407568,214,0 +170773407616,214,0 +170773407666,215,0 +170773407714,214,0 +170773407762,215,0 +170773407811,214,0 +170773407859,213,0 +170773407907,214,0 +170773407955,214,0 +170773408004,214,0 +170773408052,214,0 +170773408100,214,0 +170773408148,214,0 +170773408198,214,0 +170773408247,214,0 +170773408295,215,0 +170773408343,215,0 +170773408391,215,0 +170773408441,215,0 +170773408490,215,0 +170773408538,215,0 +170773408588,215,0 +170773408636,215,0 +170773408683,213,0 +170773408733,214,0 +170773408781,214,0 +170773408829,214,0 +170773408877,214,0 +170773408925,214,0 +170773408973,214,0 +170773409022,214,0 +170773409070,215,0 +170773409120,215,0 +170773409169,215,0 +170773409219,215,0 +170773409266,215,0 +170773409314,215,0 +170773409362,215,0 +170773409410,215,0 +170773409458,215,0 +170773409506,214,0 +170773409556,214,0 +170773409603,214,0 +170773409653,214,0 +170773409702,214,0 +170773409752,214,0 +170773409800,214,0 +170773409848,214,0 +170773409897,214,0 +170773409947,214,0 +170773409996,215,0 +170773410044,215,0 +170773410094,215,0 +170773410142,215,0 +170773410190,215,0 +170773410238,215,0 +170773410286,215,0 +170773410333,215,0 +170773410383,214,0 +170773410432,214,0 +170773410482,214,0 +170773410530,214,0 +170773410579,214,0 +170773410629,214,0 +170773410677,215,0 +170773410725,214,0 +170773410774,215,0 +170773410824,214,0 +170773410873,215,0 +170773410921,215,0 +170773410969,215,0 +170773411017,215,0 +170773411065,215,0 +170773411113,215,0 +170773411162,215,0 +170773411210,215,0 +170773411258,215,0 +170773411306,215,0 +170773411354,215,0 +170773411403,215,0 +170773411451,215,0 +170773411499,215,0 +170773411546,215,0 +170773411594,215,0 +170773411642,215,0 +170773411690,215,0 +170773411739,215,0 +170773411789,215,0 +170773411837,215,0 +170773411886,215,0 +170773411934,215,0 +170773411982,215,0 +170773412032,215,0 +170773412081,215,0 +170773412129,215,0 +170773412177,215,0 +170773412225,215,0 +170773412273,215,0 +170773412321,215,0 +170773412368,215,0 +170773412416,215,0 +170773412464,215,0 +170773412512,215,0 +170773412560,215,0 +170773412607,215,0 +170773412655,215,0 +170773412703,215,0 +170773412751,215,0 +170773412799,215,0 +170773412847,215,0 +170773412895,215,0 +170773412944,214,0 +170773412992,214,0 +170773413042,214,0 +170773413090,215,0 +170773413137,214,0 +170773413185,215,0 +170773413233,215,0 +170773413283,215,0 +170773413332,215,0 +170773413380,215,0 +170773413428,215,0 +170773413478,215,0 +170773413526,215,0 +170773413573,215,0 +170773413621,215,0 +170773413669,215,0 +170773413719,215,0 +170773413766,215,0 +170773413816,214,0 +170773413864,214,0 +170773413911,214,0 +170773413959,214,0 +170773414009,214,0 +170773414057,215,0 +170773414105,215,0 +170773414152,215,0 +170773414200,215,0 +170773414250,215,0 +170773414298,215,0 +170773414346,215,0 +170773414393,215,0 +170773414441,215,0 +170773414491,215,0 +170773414539,215,0 +170773414588,215,0 +170773414638,214,0 +170773414686,214,0 +170773414735,214,0 +170773414785,214,0 +170773414833,214,0 +170773414881,215,0 +170773414928,215,0 +170773414976,215,0 +170773415024,215,0 +170773415073,215,0 +170773415121,215,0 +170773415169,215,0 +170773415217,215,0 +170773415265,216,0 +170773415313,215,0 +170773415360,215,0 +170773415408,215,0 +170773415456,214,0 +170773415504,214,0 +170773415552,214,0 +170773415600,214,0 +170773415649,214,0 +170773415697,214,0 +170773415747,214,0 +170773415796,214,0 +170773415844,214,0 +170773415892,215,0 +170773415940,214,0 +170773415988,215,0 +170773416036,215,0 +170773416083,215,0 +170773416133,215,0 +170773416182,215,0 +170773416232,215,0 +170773416280,215,0 +170773416329,214,0 +170773416379,214,0 +170773416427,214,0 +170773416476,214,0 +170773416524,214,0 +170773416573,214,0 +170773416621,214,0 +170773416669,214,0 +170773416717,214,0 +170773416765,215,0 +170773416814,215,0 +170773416862,215,0 +170773416910,215,0 +170773416958,215,0 +170773417005,215,0 +170773417053,215,0 +170773417101,215,0 +170773417149,213,0 +170773417197,213,0 +170773417246,213,0 +170773417295,213,0 +170773417343,214,0 +170773417391,214,0 +170773417439,214,0 +170773417487,214,0 +170773417535,214,0 +170773417582,214,0 +170773417630,214,0 +170773417678,214,0 +170773417726,215,0 +170773417774,215,0 +170773417822,215,0 +170773417869,215,0 +170773417917,215,0 +170773417965,214,0 +170773418013,213,0 +170773418061,213,0 +170773418108,213,0 +170773418156,214,0 +170773418204,214,0 +170773418253,214,0 +170773418303,214,0 +170773418351,214,0 +170773418399,214,0 +170773418446,214,0 +170773418494,215,0 +170773418542,215,0 +170773418592,215,0 +170773418639,215,0 +170773418687,215,0 +170773418735,215,0 +170773418783,215,0 +170773418831,213,0 +170773418880,213,0 +170773418928,213,0 +170773418976,214,0 +170773419023,213,0 +170773419071,213,0 +170773419119,214,0 +170773419167,214,0 +170773419215,214,0 +170773419262,214,0 +170773419310,214,0 +170773419358,214,0 +170773419406,214,0 +170773419455,215,0 +170773419503,215,0 +170773419551,215,0 +170773419599,215,0 +170773419646,214,0 +170773419694,213,0 +170773419742,213,0 +170773419790,213,0 +170773419838,214,0 +170773419886,214,0 +170773419934,214,0 +170773419981,214,0 +170773420029,214,0 +170773420077,214,0 +170773420126,214,0 +170773420174,214,0 +170773420222,215,0 +170773420270,215,0 +170773420318,215,0 +170773420367,215,0 +170773420415,215,0 +170773420463,214,0 +170773420511,214,0 +170773420558,214,0 +170773420606,214,0 +170773420654,214,0 +170773420702,214,0 +170773420750,214,0 +170773420798,214,0 +170773420846,214,0 +170773420894,214,0 +170773420943,215,0 +170773420993,215,0 +170773421042,215,0 +170773421090,215,0 +170773421139,215,0 +170773421189,215,0 +170773421237,215,0 +170773421286,215,0 +170773421334,214,0 +170773421382,214,0 +170773421430,214,0 +170773421480,214,0 +170773421528,214,0 +170773421577,214,0 +170773421625,214,0 +170773421673,214,0 +170773421721,214,0 +170773421769,214,0 +170773421817,214,0 +170773421865,215,0 +170773421913,215,0 +170773421961,215,0 +170773422009,215,0 +170773422058,215,0 +170773422108,215,0 +170773422155,214,0 +170773422203,213,0 +170773422253,214,0 +170773422302,214,0 +170773422352,214,0 +170773422400,214,0 +170773422449,214,0 +170773422497,214,0 +170773422547,215,0 +170773422595,214,0 +170773422643,215,0 +170773422691,215,0 +170773422738,215,0 +170773422786,215,0 +170773422836,215,0 +170773422884,215,0 +170773422932,215,0 +170773422980,214,0 +170773423028,214,0 +170773423076,214,0 +170773423125,214,0 +170773423173,214,0 +170773423223,214,0 +170773423271,214,0 +170773423320,214,0 +170773423368,215,0 +170773423416,215,0 +170773423465,214,0 +170773423513,215,0 +170773423563,215,0 +170773423611,215,0 +170773423659,215,0 +170773423707,215,0 +170773423755,215,0 +170773423804,215,0 +170773423854,214,0 +170773423901,214,0 +170773423949,214,0 +170773423997,214,0 +170773424045,215,0 +170773424093,215,0 +170773424141,215,0 +170773424190,215,0 +170773424238,215,0 +170773424288,215,0 +170773424336,215,0 +170773424384,215,0 +170773424432,215,0 +170773424481,215,0 +170773424531,215,0 +170773424580,215,0 +170773424628,215,0 +170773424676,215,0 +170773424724,215,0 +170773424772,214,0 +170773424820,215,0 +170773424868,215,0 +170773424916,215,0 +170773424964,215,0 +170773425012,215,0 +170773425059,215,0 +170773425107,215,0 +170773425155,215,0 +170773425203,215,0 +170773425251,215,0 +170773425299,215,0 +170773425347,215,0 +170773425396,215,0 +170773425446,215,0 +170773425494,215,0 +170773425543,215,0 +170773425591,215,0 +170773425639,215,0 +170773425687,215,0 +170773425734,215,0 +170773425782,215,0 +170773425831,215,0 +170773425879,215,0 +170773425927,215,0 +170773425975,215,0 +170773426024,215,0 +170773426072,215,0 +170773426120,215,0 +170773426168,215,0 +170773426216,215,0 +170773426265,215,0 +170773426313,215,0 +170773426361,214,0 +170773426409,214,0 +170773426456,215,0 +170773426504,215,0 +170773426552,214,0 +170773426600,215,0 +170773426648,215,0 +170773426695,215,0 +170773426743,215,0 +170773426793,215,0 +170773426842,215,0 +170773426890,215,0 +170773426938,215,0 +170773426986,215,0 +170773427034,215,0 +170773427081,215,0 +170773427129,215,0 +170773427177,214,0 +170773427226,214,0 +170773427276,214,0 +170773427324,214,0 +170773427372,214,0 +170773427419,215,0 +170773427469,215,0 +170773427517,214,0 +170773427565,215,0 +170773427614,215,0 +170773427662,215,0 +170773427712,215,0 +170773427760,215,0 +170773427807,215,0 +170773427855,215,0 +170773427905,215,0 +170773427955,215,0 +170773428002,215,0 +170773428050,213,0 +170773428100,214,0 +170773428148,213,0 +170773428197,214,0 +170773428245,214,0 +170773428295,214,0 +170773428344,214,0 +170773428392,214,0 +170773428440,214,0 +170773428489,215,0 +170773428537,215,0 +170773428587,215,0 +170773428635,215,0 +170773428683,215,0 +170773428730,215,0 +170773428778,215,0 +170773428828,215,0 +170773428877,213,0 +170773428927,213,0 +170773428976,214,0 +170773429026,214,0 +170773429075,214,0 +170773429125,214,0 +170773429173,214,0 +170773429221,214,0 +170773429270,214,0 +170773429318,214,0 +170773429368,215,0 +170773429415,215,0 +170773429463,215,0 +170773429511,215,0 +170773429559,215,0 +170773429607,214,0 +170773429655,215,0 +170773429703,213,0 +170773429753,213,0 +170773429802,213,0 +170773429852,214,0 +170773429900,214,0 +170773429947,214,0 +170773429995,214,0 +170773430045,214,0 +170773430093,214,0 +170773430142,214,0 +170773430190,214,0 +170773430238,214,0 +170773430286,215,0 +170773430336,215,0 +170773430383,215,0 +170773430431,215,0 +170773430481,215,0 +170773430529,214,0 +170773430578,213,0 +170773430626,214,0 +170773430676,214,0 +170773430724,214,0 +170773430771,214,0 +170773430821,214,0 +170773430870,214,0 +170773430918,214,0 +170773430968,214,0 +170773431015,214,0 +170773431063,215,0 +170773431111,215,0 +170773431161,214,0 +170773431208,214,0 +170773431256,215,0 +170773431304,215,0 +170773431352,214,0 +170773431402,213,0 +170773431450,213,0 +170773431499,214,0 +170773431547,214,0 +170773431597,214,0 +170773431645,214,0 +170773431694,214,0 +170773431742,214,0 +170773431790,214,0 +170773431838,214,0 +170773431886,215,0 +170773431934,215,0 +170773431982,215,0 +170773432030,215,0 +170773432079,215,0 +170773432129,215,0 +170773432177,214,0 +170773432226,214,0 +170773432274,214,0 +170773432322,214,0 +170773432371,214,0 +170773432419,214,0 +170773432467,214,0 +170773432516,214,0 +170773432564,214,0 +170773432612,214,0 +170773432660,215,0 +170773432708,214,0 +170773432756,215,0 +170773432803,215,0 +170773432851,215,0 +170773432899,215,0 +170773432947,215,0 +170773432995,215,0 +170773433042,214,0 +170773433090,214,0 +170773433138,214,0 +170773433186,214,0 +170773433234,214,0 +170773433283,214,0 +170773433331,214,0 +170773433379,214,0 +170773433427,216,0 +170773433475,215,0 +170773433523,215,0 +170773433571,215,0 +170773433618,215,0 +170773433668,215,0 +170773433716,215,0 +170773433765,215,0 +170773433815,215,0 +170773433864,214,0 +170773433914,214,0 +170773433964,214,0 +170773434011,214,0 +170773434059,214,0 +170773434109,214,0 +170773434158,214,0 +170773434208,214,0 +170773434256,214,0 +170773434303,215,0 +170773434353,215,0 +170773434401,215,0 +170773434449,215,0 +170773434498,215,0 +170773434546,215,0 +170773434594,215,0 +170773434641,215,0 +170773434689,214,0 +170773434737,214,0 +170773434785,214,0 +170773434833,214,0 +170773434881,214,0 +170773434929,214,0 +170773434976,214,0 +170773435026,215,0 +170773435074,214,0 +170773435121,215,0 +170773435169,215,0 +170773435217,215,0 +170773435265,215,0 +170773435313,215,0 +170773435361,215,0 +170773435408,215,0 +170773435456,215,0 +170773435504,215,0 +170773435552,214,0 +170773435601,214,0 +170773435651,214,0 +170773435699,214,0 +170773435746,214,0 +170773435794,214,0 +170773435842,214,0 +170773435890,214,0 +170773435938,215,0 +170773435985,215,0 +170773436033,215,0 +170773436081,215,0 +170773436129,215,0 +170773436177,215,0 +170773436224,215,0 +170773436272,215,0 +170773436320,215,0 +170773436368,214,0 +170773436416,214,0 +170773436464,214,0 +170773436511,214,0 +170773436559,214,0 +170773436609,214,0 +170773436657,214,0 +170773436704,214,0 +170773436752,214,0 +170773436800,214,0 +170773436848,214,0 +170773436896,214,0 +170773436943,215,0 +170773436991,214,0 +170773437041,215,0 +170773437088,214,0 +170773437136,215,0 +170773437184,215,0 +170773437232,213,0 +170773437280,214,0 +170773437328,214,0 +170773437375,214,0 +170773437423,214,0 +170773437471,214,0 +170773437519,214,0 +170773437566,214,0 +170773437614,214,0 +170773437662,214,0 +170773437711,214,0 +170773437759,215,0 +170773437807,215,0 +170773437855,215,0 +170773437903,215,0 +170773437950,215,0 +170773437998,215,0 +170773438046,214,0 +170773438094,214,0 +170773438142,214,0 +170773438189,214,0 +170773438239,214,0 +170773438287,214,0 +170773438334,214,0 +170773438382,214,0 +170773438430,214,0 +170773438479,215,0 +170773438527,215,0 +170773438575,215,0 +170773438623,215,0 +170773438671,215,0 +170773438720,215,0 +170773438768,215,0 +170773438816,215,0 +170773438864,214,0 +170773438913,214,0 +170773438961,214,0 +170773439009,214,0 +170773439058,214,0 +170773439108,214,0 +170773439157,214,0 +170773439207,214,0 +170773439256,215,0 +170773439304,215,0 +170773439352,215,0 +170773439400,215,0 +170773439448,215,0 +170773439496,215,0 +170773439544,215,0 +170773439591,215,0 +170773439641,215,0 +170773439689,214,0 +170773439737,213,0 +170773439785,214,0 +170773439833,214,0 +170773439880,214,0 +170773439928,214,0 +170773439976,214,0 +170773440024,214,0 +170773440074,214,0 +170773440122,214,0 +170773440169,214,0 +170773440217,214,0 +170773440267,214,0 +170773440316,215,0 +170773440364,215,0 +170773440414,215,0 +170773440462,215,0 +170773440511,215,0 +170773440559,214,0 +170773440607,214,0 +170773440655,214,0 +170773440703,214,0 +170773440753,214,0 +170773440802,214,0 +170773440850,214,0 +170773440899,214,0 +170773440947,215,0 +170773440997,215,0 +170773441045,215,0 +170773441093,215,0 +170773441141,215,0 +170773441190,215,0 +170773441238,215,0 +170773441286,215,0 +170773441334,215,0 +170773441382,214,0 +170773441430,214,0 +170773441477,214,0 +170773441527,214,0 +170773441576,214,0 +170773441624,214,0 +170773441672,214,0 +170773441720,214,0 +170773441767,215,0 +170773441815,215,0 +170773441863,215,0 +170773441911,215,0 +170773441959,215,0 +170773442008,215,0 +170773442056,215,0 +170773442104,215,0 +170773442153,215,0 +170773442201,214,0 +170773442248,214,0 +170773442296,214,0 +170773442346,214,0 +170773442393,214,0 +170773442443,214,0 +170773442492,215,0 +170773442540,215,0 +170773442588,215,0 +170773442636,215,0 +170773442683,215,0 +170773442731,215,0 +170773442779,215,0 +170773442827,215,0 +170773442875,215,0 +170773442922,215,0 +170773442970,215,0 +170773443018,215,0 +170773443066,214,0 +170773443115,214,0 +170773443163,214,0 +170773443211,214,0 +170773443259,214,0 +170773443307,214,0 +170773443354,214,0 +170773443402,214,0 +170773443450,215,0 +170773443498,215,0 +170773443547,215,0 +170773443597,215,0 +170773443644,215,0 +170773443692,215,0 +170773443740,215,0 +170773443788,215,0 +170773443835,215,0 +170773443883,214,0 +170773443931,214,0 +170773443979,214,0 +170773444027,214,0 +170773444076,214,0 +170773444124,214,0 +170773444174,214,0 +170773444222,214,0 +170773444270,215,0 +170773444318,215,0 +170773444366,215,0 +170773444415,215,0 +170773444463,215,0 +170773444511,215,0 +170773444559,215,0 +170773444608,215,0 +170773444656,215,0 +170773444706,214,0 +170773444754,213,0 +170773444802,214,0 +170773444849,214,0 +170773444897,214,0 +170773444947,214,0 +170773444996,214,0 +170773445046,214,0 +170773445094,214,0 +170773445142,215,0 +170773445190,215,0 +170773445239,215,0 +170773445288,215,0 +170773445336,215,0 +170773445386,215,0 +170773445434,215,0 +170773445483,215,0 +170773445531,215,0 +170773445581,214,0 +170773445629,214,0 +170773445678,214,0 +170773445726,214,0 +170773445775,214,0 +170773445823,214,0 +170773445873,214,0 +170773445922,215,0 +170773445972,214,0 +170773446019,215,0 +170773446067,215,0 +170773446117,215,0 +170773446165,215,0 +170773446213,215,0 +170773446260,215,0 +170773446308,215,0 +170773446356,215,0 +170773446404,214,0 +170773446453,214,0 +170773446501,214,0 +170773446549,214,0 +170773446597,214,0 +170773446645,214,0 +170773446695,214,0 +170773446742,215,0 +170773446792,215,0 +170773446840,215,0 +170773446888,215,0 +170773446936,215,0 +170773446983,215,0 +170773447031,215,0 +170773447081,215,0 +170773447130,215,0 +170773447178,215,0 +170773447228,214,0 +170773447276,214,0 +170773447325,214,0 +170773447375,214,0 +170773447424,214,0 +170773447472,214,0 +170773447520,214,0 +170773447568,214,0 +170773447616,215,0 +170773447664,215,0 +170773447712,215,0 +170773447760,215,0 +170773447808,215,0 +170773447856,215,0 +170773447904,215,0 +170773447952,215,0 +170773448001,215,0 +170773448051,214,0 +170773448099,214,0 +170773448147,214,0 +170773448195,214,0 +170773448243,214,0 +170773448291,214,0 +170773448339,214,0 +170773448388,215,0 +170773448436,215,0 +170773448485,214,0 +170773448533,215,0 +170773448581,215,0 +170773448629,215,0 +170773448679,215,0 +170773448727,215,0 +170773448776,215,0 +170773448824,215,0 +170773448873,215,0 +170773448923,214,0 +170773448972,214,0 +170773449022,214,0 +170773449071,214,0 +170773449121,214,0 +170773449168,214,0 +170773449218,214,0 +170773449266,214,0 +170773449314,214,0 +170773449363,215,0 +170773449412,215,0 +170773449462,215,0 +170773449510,215,0 +170773449559,215,0 +170773449607,215,0 +170773449655,215,0 +170773449704,215,0 +170773449752,214,0 +170773449800,214,0 +170773449848,214,0 +170773449896,214,0 +170773449944,214,0 +170773449992,214,0 +170773450039,214,0 +170773450089,214,0 +170773450137,214,0 +170773450185,215,0 +170773450234,215,0 +170773450282,215,0 +170773450332,215,0 +170773450379,215,0 +170773450427,215,0 +170773450475,215,0 +170773450525,214,0 +170773450573,214,0 +170773450621,214,0 +170773450668,214,0 +170773450716,214,0 +170773450764,214,0 +170773450812,214,0 +170773450860,214,0 +170773450908,214,0 +170773450956,214,0 +170773451005,214,0 +170773451053,214,0 +170773451103,215,0 +170773451152,215,0 +170773451200,215,0 +170773451248,215,0 +170773451296,215,0 +170773451345,215,0 +170773451393,214,0 +170773451441,213,0 +170773451491,214,0 +170773451539,214,0 +170773451588,214,0 +170773451636,214,0 +170773451684,214,0 +170773451732,214,0 +170773451781,214,0 +170773451829,214,0 +170773451877,214,0 +170773451927,215,0 +170773451976,214,0 +170773452025,215,0 +170773452073,215,0 +170773452121,215,0 +170773452171,215,0 +170773452219,215,0 +170773452267,213,0 +170773452316,213,0 +170773452364,214,0 +170773452413,214,0 +170773452461,214,0 +170773452509,214,0 +170773452559,214,0 +170773452607,214,0 +170773452655,214,0 +170773452704,215,0 +170773452754,214,0 +170773452802,215,0 +170773452849,215,0 +170773452897,215,0 +170773452945,215,0 +170773452995,215,0 +170773453043,215,0 +170773453091,214,0 +170773453138,214,0 +170773453186,214,0 +170773453234,214,0 +170773453282,214,0 +170773453331,214,0 +170773453379,214,0 +170773453427,215,0 +170773453475,215,0 +170773453525,215,0 +170773453572,215,0 +170773453620,215,0 +170773453668,215,0 +170773453716,215,0 +170773453764,215,0 +170773453813,215,0 +170773453861,215,0 +170773453911,214,0 +170773453960,214,0 +170773454008,214,0 +170773454056,214,0 +170773454104,214,0 +170773454152,214,0 +170773454201,214,0 +170773454249,214,0 +170773454297,214,0 +170773454345,214,0 +170773454395,214,0 +170773454443,214,0 +170773454491,214,0 +170773454538,215,0 +170773454588,215,0 +170773454636,215,0 +170773454685,215,0 +170773454733,215,0 +170773454781,214,0 +170773454831,214,0 +170773454880,214,0 +170773454928,214,0 +170773454976,214,0 +170773455024,214,0 +170773455074,214,0 +170773455122,215,0 +170773455169,215,0 +170773455217,215,0 +170773455265,215,0 +170773455315,215,0 +170773455363,215,0 +170773455412,215,0 +170773455460,215,0 +170773455509,215,0 +170773455557,215,0 +170773455605,214,0 +170773455653,214,0 +170773455703,214,0 +170773455752,214,0 +170773455800,214,0 +170773455849,214,0 +170773455897,215,0 +170773455945,215,0 +170773455993,215,0 +170773456041,215,0 +170773456089,215,0 +170773456137,215,0 +170773456185,215,0 +170773456233,215,0 +170773456281,215,0 +170773456330,215,0 +170773456378,215,0 +170773456426,214,0 +170773456474,215,0 +170773456523,215,0 +170773456571,215,0 +170773456619,215,0 +170773456667,215,0 +170773456716,215,0 +170773456764,215,0 +170773456814,215,0 +170773456863,215,0 +170773456911,215,0 +170773456961,215,0 +170773457010,215,0 +170773457058,215,0 +170773457106,215,0 +170773457154,215,0 +170773457202,215,0 +170773457251,214,0 +170773457299,214,0 +170773457349,214,0 +170773457397,214,0 +170773457445,214,0 +170773457493,214,0 +170773457542,214,0 +170773457592,215,0 +170773457641,215,0 +170773457691,215,0 +170773457739,215,0 +170773457786,215,0 +170773457834,215,0 +170773457882,215,0 +170773457930,215,0 +170773457980,215,0 +170773458029,215,0 +170773458079,214,0 +170773458127,214,0 +170773458176,214,0 +170773458226,214,0 +170773458274,214,0 +170773458322,215,0 +170773458370,215,0 +170773458417,214,0 +170773458465,215,0 +170773458513,215,0 +170773458561,215,0 +170773458609,215,0 +170773458659,215,0 +170773458707,215,0 +170773458755,215,0 +170773458804,215,0 +170773458852,215,0 +170773458900,215,0 +170773458948,214,0 +170773458997,214,0 +170773459045,214,0 +170773459093,214,0 +170773459141,214,0 +170773459189,214,0 +170773459237,214,0 +170773459285,214,0 +170773459333,214,0 +170773459381,215,0 +170773459430,215,0 +170773459478,215,0 +170773459526,215,0 +170773459574,215,0 +170773459624,215,0 +170773459673,215,0 +170773459721,215,0 +170773459769,214,0 +170773459817,214,0 +170773459867,214,0 +170773459915,214,0 +170773459962,214,0 +170773460010,214,0 +170773460058,215,0 +170773460108,215,0 +170773460155,214,0 +170773460203,215,0 +170773460251,215,0 +170773460301,215,0 +170773460348,215,0 +170773460398,215,0 +170773460446,215,0 +170773460495,215,0 +170773460543,215,0 +170773460591,214,0 +170773460639,214,0 +170773460687,214,0 +170773460737,214,0 +170773460786,214,0 +170773460835,214,0 +170773460885,215,0 +170773460934,215,0 +170773460982,215,0 +170773461030,215,0 +170773461078,215,0 +170773461128,215,0 +170773461176,215,0 +170773461225,215,0 +170773461275,215,0 +170773461323,215,0 +170773461371,215,0 +170773461419,214,0 +170773461467,214,0 +170773461516,214,0 +170773461564,214,0 +170773461612,214,0 +170773461660,214,0 +170773461709,214,0 +170773461757,214,0 +170773461807,214,0 +170773461856,215,0 +170773461904,215,0 +170773461952,215,0 +170773462000,215,0 +170773462050,215,0 +170773462099,215,0 +170773462149,215,0 +170773462197,215,0 +170773462246,214,0 +170773462296,214,0 +170773462344,214,0 +170773462391,214,0 +170773462439,214,0 +170773462487,214,0 +170773462537,214,0 +170773462585,214,0 +170773462634,214,0 +170773462682,215,0 +170773462732,215,0 +170773462781,215,0 +170773462831,215,0 +170773462879,215,0 +170773462927,215,0 +170773462975,215,0 +170773463023,215,0 +170773463070,215,0 +170773463120,214,0 +170773463168,213,0 +170773463217,213,0 +170773463265,214,0 +170773463315,214,0 +170773463363,214,0 +170773463411,214,0 +170773463460,214,0 +170773463510,214,0 +170773463558,214,0 +170773463607,215,0 +170773463655,215,0 +170773463703,215,0 +170773463750,214,0 +170773463800,215,0 +170773463848,215,0 +170773463896,215,0 +170773463943,214,0 +170773463991,214,0 +170773464039,214,0 +170773464087,214,0 +170773464135,214,0 +170773464184,214,0 +170773464234,214,0 +170773464282,214,0 +170773464330,214,0 +170773464379,214,0 +170773464429,214,0 +170773464477,214,0 +170773464526,214,0 +170773464574,215,0 +170773464624,215,0 +170773464673,215,0 +170773464723,215,0 +170773464770,214,0 +170773464820,213,0 +170773464868,213,0 +170773464916,214,0 +170773464963,214,0 +170773465011,214,0 +170773465059,214,0 +170773465107,214,0 +170773465156,214,0 +170773465204,214,0 +170773465252,214,0 +170773465300,214,0 +170773465348,214,0 +170773465396,215,0 +170773465446,215,0 +170773465495,215,0 +170773465543,215,0 +170773465593,214,0 +170773465642,213,0 +170773465690,214,0 +170773465738,214,0 +170773465786,214,0 +170773465835,214,0 +170773465883,214,0 +170773465931,214,0 +170773465979,214,0 +170773466027,214,0 +170773466076,214,0 +170773466124,215,0 +170773466172,215,0 +170773466220,215,0 +170773466268,215,0 +170773466317,215,0 +170773466365,215,0 +170773466415,215,0 +170773466463,214,0 +170773466511,214,0 +170773466558,214,0 +170773466608,215,0 +170773466656,214,0 +170773466705,215,0 +170773466753,215,0 +170773466801,215,0 +170773466849,215,0 +170773466897,215,0 +170773466944,215,0 +170773466992,215,0 +170773467042,215,0 +170773467090,215,0 +170773467138,215,0 +170773467185,215,0 +170773467233,215,0 +170773467281,214,0 +170773467329,214,0 +170773467377,215,0 +170773467425,214,0 +170773467472,215,0 +170773467522,215,0 +170773467570,215,0 +170773467619,215,0 +170773467667,215,0 +170773467715,215,0 +170773467763,215,0 +170773467813,215,0 +170773467861,215,0 +170773467910,215,0 +170773467960,215,0 +170773468009,215,0 +170773468057,215,0 +170773468105,214,0 +170773468155,214,0 +170773468202,214,0 +170773468250,214,0 +170773468298,214,0 +170773468346,215,0 +170773468394,215,0 +170773468442,215,0 +170773468490,215,0 +170773468539,215,0 +170773468587,215,0 +170773468635,215,0 +170773468683,215,0 +170773468732,215,0 +170773468780,215,0 +170773468828,215,0 +170773468876,215,0 +170773468924,215,0 +170773468972,214,0 +170773469020,215,0 +170773469069,215,0 +170773469117,215,0 +170773469165,215,0 +170773469212,215,0 +170773469260,215,0 +170773469308,215,0 +170773469356,215,0 +170773469404,215,0 +170773469451,215,0 +170773469499,215,0 +170773469547,215,0 +170773469595,215,0 +170773469643,215,0 +170773469691,215,0 +170773469739,215,0 +170773469786,215,0 +170773469836,215,0 +170773469884,215,0 +170773469931,215,0 +170773469979,215,0 +170773470027,215,0 +170773470077,215,0 +170773470126,215,0 +170773470174,216,0 +170773470223,215,0 +170773470271,215,0 +170773470319,215,0 +170773470368,215,0 +170773470416,215,0 +170773470466,215,0 +170773470514,215,0 +170773470562,215,0 +170773470610,214,0 +170773470659,214,0 +170773470707,214,0 +170773470756,214,0 +170773470804,214,0 +170773470854,214,0 +170773470901,215,0 +170773470949,215,0 +170773470997,215,0 +170773471046,215,0 +170773471096,215,0 +170773471144,215,0 +170773471192,215,0 +170773471239,215,0 +170773471287,215,0 +170773471335,215,0 +170773471383,215,0 +170773471431,214,0 +170773471479,213,0 +170773471527,214,0 +170773471574,214,0 +170773471622,214,0 +170773471672,214,0 +170773471719,214,0 +170773471767,214,0 +170773471817,214,0 +170773471865,215,0 +170773471914,215,0 +170773471962,215,0 +170773472010,215,0 +170773472058,215,0 +170773472105,215,0 +170773472153,215,0 +170773472201,215,0 +170773472249,214,0 +170773472298,214,0 +170773472346,214,0 +170773472394,214,0 +170773472442,214,0 +170773472489,214,0 +170773472537,214,0 +170773472587,214,0 +170773472635,215,0 +170773472683,214,0 +170773472731,215,0 +170773472780,214,0 +170773472829,215,0 +170773472877,215,0 +170773472927,215,0 +170773472975,215,0 +170773473022,215,0 +170773473072,215,0 +170773473120,213,0 +170773473168,213,0 +170773473215,213,0 +170773473265,214,0 +170773473313,214,0 +170773473360,214,0 +170773473408,214,0 +170773473456,214,0 +170773473504,214,0 +170773473554,214,0 +170773473602,214,0 +170773473651,214,0 +170773473701,214,0 +170773473749,214,0 +170773473796,214,0 +170773473844,215,0 +170773473892,215,0 +170773473942,214,0 +170773473991,213,0 +170773474039,213,0 +170773474087,213,0 +170773474135,214,0 +170773474184,214,0 +170773474234,214,0 +170773474282,214,0 +170773474332,214,0 +170773474379,214,0 +170773474427,214,0 +170773474475,214,0 +170773474523,214,0 +170773474571,214,0 +170773474619,214,0 +170773474669,214,0 +170773474716,215,0 +170773474766,214,0 +170773474814,213,0 +170773474862,213,0 +170773474911,213,0 +170773474959,213,0 +170773475007,213,0 +170773475055,213,0 +170773475103,214,0 +170773475151,214,0 +170773475200,214,0 +170773475248,214,0 +170773475298,214,0 +170773475347,214,0 +170773475395,214,0 +170773475445,214,0 +170773475493,215,0 +170773475541,215,0 +170773475589,214,0 +170773475636,213,0 +170773475686,213,0 +170773475734,213,0 +170773475784,214,0 +170773475831,214,0 +170773475879,214,0 +170773475927,214,0 +170773475975,214,0 +170773476023,214,0 +170773476073,214,0 +170773476121,214,0 +170773476169,215,0 +170773476218,215,0 +170773476266,215,0 +170773476315,215,0 +170773476363,215,0 +170773476413,214,0 +170773476461,213,0 +170773476509,213,0 +170773476557,214,0 +170773476606,214,0 +170773476656,214,0 +170773476705,214,0 +170773476753,214,0 +170773476803,214,0 +170773476852,214,0 +170773476900,214,0 +170773476948,214,0 +170773476996,214,0 +170773477044,215,0 +170773477093,215,0 +170773477141,215,0 +170773477189,215,0 +170773477239,215,0 +170773477288,214,0 +170773477336,214,0 +170773477386,214,0 +170773477435,214,0 +170773477485,214,0 +170773477534,214,0 +170773477584,214,0 +170773477632,214,0 +170773477681,214,0 +170773477729,215,0 +170773477777,215,0 +170773477826,215,0 +170773477874,215,0 +170773477922,215,0 +170773477970,215,0 +170773478018,215,0 +170773478067,215,0 +170773478117,214,0 +170773478166,214,0 +170773478214,214,0 +170773478262,214,0 +170773478312,214,0 +170773478360,214,0 +170773478409,214,0 +170773478457,214,0 +170773478507,214,0 +170773478556,215,0 +170773478604,215,0 +170773478652,215,0 +170773478702,215,0 +170773478749,215,0 +170773478797,215,0 +170773478845,215,0 +170773478893,215,0 +170773478941,214,0 +170773478989,214,0 +170773479037,214,0 +170773479085,214,0 +170773479133,214,0 +170773479181,214,0 +170773479229,214,0 +170773479277,214,0 +170773479324,215,0 +170773479372,214,0 +170773479422,215,0 +170773479470,215,0 +170773479518,215,0 +170773479566,215,0 +170773479614,215,0 +170773479662,215,0 +170773479710,215,0 +170773479757,214,0 +170773479805,214,0 +170773479853,214,0 +170773479901,214,0 +170773479949,214,0 +170773479997,214,0 +170773480045,215,0 +170773480093,215,0 +170773480141,215,0 +170773480190,215,0 +170773480238,215,0 +170773480288,215,0 +170773480335,215,0 +170773480385,215,0 +170773480433,215,0 +170773480482,215,0 +170773480532,215,0 +170773480580,215,0 +170773480628,214,0 +170773480676,214,0 +170773480725,215,0 +170773480773,215,0 +170773480821,215,0 +170773480871,215,0 +170773480919,215,0 +170773480967,215,0 +170773481016,215,0 +170773481064,215,0 +170773481112,215,0 +170773481162,215,0 +170773481211,215,0 +170773481259,215,0 +170773481307,215,0 +170773481355,215,0 +170773481404,214,0 +170773481454,214,0 +170773481503,214,0 +170773481551,214,0 +170773481599,214,0 +170773481649,214,0 +170773481696,214,0 +170773481746,214,0 +170773481795,214,0 +170773481843,214,0 +170773481893,215,0 +170773481941,215,0 +170773481989,215,0 +170773482037,215,0 +170773482085,215,0 +170773482132,215,0 +170773482180,215,0 +170773482228,215,0 +170773482278,215,0 +170773482327,215,0 +170773482375,215,0 +170773482423,215,0 +170773482470,215,0 +170773482518,215,0 +170773482568,215,0 +170773482615,215,0 +170773482663,214,0 +170773482713,214,0 +170773482762,214,0 +170773482812,214,0 +170773482860,215,0 +170773482908,215,0 +170773482957,215,0 +170773483005,215,0 +170773483053,215,0 +170773483101,215,0 +170773483149,215,0 +170773483197,215,0 +170773483245,215,0 +170773483294,215,0 +170773483344,215,0 +170773483392,215,0 +170773483439,215,0 +170773483487,214,0 +170773483535,214,0 +170773483583,214,0 +170773483631,214,0 +170773483679,214,0 +170773483727,214,0 +170773483775,214,0 +170773483822,214,0 +170773483870,215,0 +170773483918,215,0 +170773483966,215,0 +170773484014,215,0 +170773484063,215,0 +170773484111,215,0 +170773484159,215,0 +170773484207,215,0 +170773484255,215,0 +170773484302,214,0 +170773484350,214,0 +170773484400,214,0 +170773484448,214,0 +170773484495,214,0 +170773484543,214,0 +170773484591,214,0 +170773484639,214,0 +170773484687,215,0 +170773484735,215,0 +170773484782,215,0 +170773484832,215,0 +170773484880,215,0 +170773484929,215,0 +170773484977,215,0 +170773485027,215,0 +170773485075,215,0 +170773485123,214,0 +170773485170,213,0 +170773485220,213,0 +170773485269,214,0 +170773485317,214,0 +170773485365,214,0 +170773485415,214,0 +170773485463,214,0 +170773485512,214,0 +170773485560,214,0 +170773485609,214,0 +170773485657,215,0 +170773485705,215,0 +170773485753,215,0 +170773485801,215,0 +170773485848,215,0 +170773485896,215,0 +170773485944,214,0 +170773485992,213,0 +170773486041,214,0 +170773486089,213,0 +170773486138,214,0 +170773486186,214,0 +170773486234,214,0 +170773486282,214,0 +170773486332,214,0 +170773486379,214,0 +170773486427,214,0 +170773486475,215,0 +170773486523,215,0 +170773486571,215,0 +170773486619,215,0 +170773486667,215,0 +170773486716,215,0 +170773486766,214,0 +170773486814,214,0 +170773486863,214,0 +170773486911,214,0 +170773486959,214,0 +170773487007,214,0 +170773487054,214,0 +170773487102,214,0 +170773487150,214,0 +170773487198,215,0 +170773487246,215,0 +170773487295,215,0 +170773487343,215,0 +170773487391,215,0 +170773487439,215,0 +170773487487,215,0 +170773487535,215,0 +170773487583,214,0 +170773487630,213,0 +170773487678,214,0 +170773487728,214,0 +170773487776,214,0 +170773487824,214,0 +170773487873,214,0 +170773487921,214,0 +170773487969,215,0 +170773488017,215,0 +170773488067,215,0 +170773488116,215,0 +170773488166,215,0 +170773488214,215,0 +170773488263,215,0 +170773488311,215,0 +170773488359,215,0 +170773488407,214,0 +170773488455,214,0 +170773488503,214,0 +170773488552,214,0 +170773488600,214,0 +170773488650,214,0 +170773488698,214,0 +170773488746,214,0 +170773488795,214,0 +170773488845,215,0 +170773488894,215,0 +170773488942,215,0 +170773488990,215,0 +170773489040,215,0 +170773489089,215,0 +170773489137,215,0 +170773489185,215,0 +170773489234,214,0 +170773489282,213,0 +170773489330,214,0 +170773489378,214,0 +170773489428,214,0 +170773489476,214,0 +170773489524,214,0 +170773489573,215,0 +170773489621,215,0 +170773489670,215,0 +170773489720,215,0 +170773489769,215,0 +170773489817,215,0 +170773489867,215,0 +170773489915,215,0 +170773489964,215,0 +170773490014,215,0 +170773490062,214,0 +170773490111,214,0 +170773490159,214,0 +170773490207,214,0 +170773490256,214,0 +170773490304,214,0 +170773490352,214,0 +170773490401,214,0 +170773490449,214,0 +170773490497,214,0 +170773490545,215,0 +170773490593,215,0 +170773490641,215,0 +170773490688,215,0 +170773490736,215,0 +170773490784,215,0 +170773490832,214,0 +170773490880,214,0 +170773490928,214,0 +170773490976,214,0 +170773491024,214,0 +170773491073,214,0 +170773491121,214,0 +170773491170,214,0 +170773491218,214,0 +170773491266,214,0 +170773491314,214,0 +170773491363,215,0 +170773491411,215,0 +170773491459,215,0 +170773491507,215,0 +170773491556,215,0 +170773491606,215,0 +170773491654,214,0 +170773491702,213,0 +170773491751,214,0 +170773491799,214,0 +170773491847,214,0 +170773491895,214,0 +170773491944,214,0 +170773491994,214,0 +170773492042,214,0 +170773492091,214,0 +170773492139,214,0 +170773492188,214,0 +170773492236,214,0 +170773492284,214,0 +170773492332,214,0 +170773492381,215,0 +170773492429,215,0 +170773492477,215,0 +170773492525,213,0 +170773492574,213,0 +170773492622,213,0 +170773492670,214,0 +170773492718,214,0 +170773492766,214,0 +170773492815,214,0 +170773492863,214,0 +170773492911,214,0 +170773492960,214,0 +170773493008,215,0 +170773493056,214,0 +170773493104,215,0 +170773493152,215,0 +170773493199,215,0 +170773493247,215,0 +170773493295,214,0 +170773493343,214,0 +170773493392,214,0 +170773493440,214,0 +170773493488,214,0 +170773493536,214,0 +170773493584,214,0 +170773493632,214,0 +170773493679,214,0 +170773493727,215,0 +170773493775,215,0 +170773493823,215,0 +170773493870,215,0 +170773493920,215,0 +170773493968,215,0 +170773494016,215,0 +170773494063,215,0 +170773494111,214,0 +170773494159,214,0 +170773494207,214,0 +170773494255,214,0 +170773494304,214,0 +170773494354,214,0 +170773494402,215,0 +170773494450,215,0 +170773494497,215,0 +170773494545,215,0 +170773494593,215,0 +170773494641,215,0 +170773494689,215,0 +170773494738,215,0 +170773494786,215,0 +170773494834,215,0 +170773494882,215,0 +170773494930,215,0 +170773494977,214,0 +170773495025,214,0 +170773495073,214,0 +170773495122,214,0 +170773495170,214,0 +170773495218,214,0 +170773495266,214,0 +170773495314,215,0 +170773495362,214,0 +170773495410,215,0 +170773495458,215,0 +170773495506,215,0 +170773495554,215,0 +170773495603,215,0 +170773495651,215,0 +170773495701,214,0 +170773495748,214,0 +170773495798,214,0 +170773495846,214,0 +170773495894,214,0 +170773495943,214,0 +170773495993,214,0 +170773496041,214,0 +170773496089,215,0 +170773496137,214,0 +170773496184,215,0 +170773496232,214,0 +170773496280,215,0 +170773496328,215,0 +170773496376,215,0 +170773496424,215,0 +170773496473,215,0 +170773496521,215,0 +170773496569,214,0 +170773496617,214,0 +170773496665,214,0 +170773496713,214,0 +170773496762,214,0 +170773496810,215,0 +170773496858,215,0 +170773496908,215,0 +170773496956,215,0 +170773497003,215,0 +170773497051,215,0 +170773497099,215,0 +170773497147,215,0 +170773497195,215,0 +170773497243,215,0 +170773497292,215,0 +170773497342,215,0 +170773497390,214,0 +170773497437,214,0 +170773497485,214,0 +170773497535,214,0 +170773497583,214,0 +170773497631,215,0 +170773497680,215,0 +170773497728,215,0 +170773497778,215,0 +170773497825,215,0 +170773497875,215,0 +170773497924,215,0 +170773497972,215,0 +170773498020,215,0 +170773498068,215,0 +170773498116,215,0 +170773498165,215,0 +170773498213,214,0 +170773498261,214,0 +170773498311,214,0 +170773498359,214,0 +170773498407,214,0 +170773498455,214,0 +170773498502,214,0 +170773498552,214,0 +170773498600,215,0 +170773498648,215,0 +170773498696,215,0 +170773498743,215,0 +170773498791,215,0 +170773498839,215,0 +170773498887,215,0 +170773498937,215,0 +170773498986,215,0 +170773499034,214,0 +170773499082,214,0 +170773499130,214,0 +170773499180,214,0 +170773499229,214,0 +170773499278,214,0 +170773499326,215,0 +170773499376,215,0 +170773499425,214,0 +170773499473,215,0 +170773499521,215,0 +170773499571,215,0 +170773499619,215,0 +170773499668,215,0 +170773499717,215,0 +170773499767,215,0 +170773499815,215,0 +170773499863,214,0 +170773499911,214,0 +170773499959,214,0 +170773500008,214,0 +170773500058,214,0 +170773500105,214,0 +170773500153,214,0 +170773500203,214,0 +170773500252,215,0 +170773500300,215,0 +170773500348,215,0 +170773500398,215,0 +170773500446,215,0 +170773500493,215,0 +170773500541,215,0 +170773500589,215,0 +170773500639,215,0 +170773500688,214,0 +170773500738,214,0 +170773500786,214,0 +170773500835,214,0 +170773500883,215,0 +170773500931,215,0 +170773500981,215,0 +170773501029,215,0 +170773501078,215,0 +170773501126,215,0 +170773501174,215,0 +170773501222,215,0 +170773501270,215,0 +170773501319,215,0 +170773501367,215,0 +170773501415,215,0 +170773501465,215,0 +170773501513,214,0 +170773501561,214,0 +170773501608,214,0 +170773501658,214,0 +170773501706,214,0 +170773501754,215,0 +170773501803,214,0 +170773501851,215,0 +170773501901,215,0 +170773501948,215,0 +170773501998,215,0 +170773502046,215,0 +170773502094,215,0 +170773502142,215,0 +170773502190,215,0 +170773502239,215,0 +170773502287,214,0 +170773502337,214,0 +170773502386,214,0 +170773502434,214,0 +170773502483,214,0 +170773502531,214,0 +170773502579,215,0 +170773502627,214,0 +170773502675,215,0 +170773502723,215,0 +170773502770,215,0 +170773502818,215,0 +170773502868,215,0 +170773502915,215,0 +170773502963,215,0 +170773503011,215,0 +170773503059,215,0 +170773503108,214,0 +170773503156,213,0 +170773503206,213,0 +170773503253,214,0 +170773503301,214,0 +170773503349,214,0 +170773503397,214,0 +170773503445,214,0 +170773503494,214,0 +170773503542,214,0 +170773503591,215,0 +170773503639,215,0 +170773503687,215,0 +170773503735,215,0 +170773503782,215,0 +170773503830,215,0 +170773503880,215,0 +170773503927,214,0 +170773503975,214,0 +170773504023,214,0 +170773504071,214,0 +170773504119,214,0 +170773504166,214,0 +170773504214,214,0 +170773504264,214,0 +170773504312,214,0 +170773504361,215,0 +170773504411,215,0 +170773504459,215,0 +170773504508,215,0 +170773504556,215,0 +170773504604,215,0 +170773504652,215,0 +170773504700,215,0 +170773504747,214,0 +170773504795,213,0 +170773504843,213,0 +170773504892,214,0 +170773504940,214,0 +170773504988,214,0 +170773505036,214,0 +170773505084,214,0 +170773505132,214,0 +170773505179,214,0 +170773505227,214,0 +170773505275,214,0 +170773505323,215,0 +170773505371,214,0 +170773505419,214,0 +170773505467,214,0 +170773505514,215,0 +170773505562,214,0 +170773505610,213,0 +170773505658,213,0 +170773505707,213,0 +170773505757,214,0 +170773505806,214,0 +170773505854,214,0 +170773505902,214,0 +170773505950,214,0 +170773506000,214,0 +170773506047,214,0 +170773506095,215,0 +170773506145,215,0 +170773506193,215,0 +170773506241,215,0 +170773506289,215,0 +170773506338,215,0 +170773506388,214,0 +170773506437,214,0 +170773506487,214,0 +170773506535,214,0 +170773506583,214,0 +170773506631,214,0 +170773506679,214,0 +170773506726,215,0 +170773506774,215,0 +170773506822,215,0 +170773506870,214,0 +170773506920,215,0 +170773506969,215,0 +170773507017,215,0 +170773507066,215,0 +170773507114,215,0 +170773507164,215,0 +170773507212,214,0 +170773507260,214,0 +170773507309,214,0 +170773507359,214,0 +170773507408,214,0 +170773507456,214,0 +170773507504,215,0 +170773507552,215,0 +170773507602,215,0 +170773507651,215,0 +170773507701,215,0 +170773507749,215,0 +170773507797,215,0 +170773507845,215,0 +170773507893,215,0 +170773507941,215,0 +170773507988,215,0 +170773508036,214,0 +170773508084,214,0 +170773508132,214,0 +170773508182,214,0 +170773508230,214,0 +170773508277,214,0 +170773508327,214,0 +170773508375,214,0 +170773508423,215,0 +170773508471,214,0 +170773508519,215,0 +170773508568,214,0 +170773508616,215,0 +170773508665,215,0 +170773508715,214,0 +170773508764,215,0 +170773508812,214,0 +170773508860,214,0 +170773508908,214,0 +170773508956,214,0 +170773509006,214,0 +170773509053,214,0 +170773509101,214,0 +170773509149,214,0 +170773509197,214,0 +170773509247,214,0 +170773509294,214,0 +170773509344,215,0 +170773509392,215,0 +170773509440,215,0 +170773509488,215,0 +170773509535,215,0 +170773509585,215,0 +170773509633,215,0 +170773509681,214,0 +170773509730,214,0 +170773509778,214,0 +170773509827,214,0 +170773509875,214,0 +170773509923,214,0 +170773509971,214,0 +170773510021,215,0 +170773510070,215,0 +170773510118,215,0 +170773510166,215,0 +170773510214,215,0 +170773510263,215,0 +170773510311,215,0 +170773510359,215,0 +170773510407,215,0 +170773510457,215,0 +170773510505,214,0 +170773510554,214,0 +170773510604,214,0 +170773510651,214,0 +170773510701,214,0 +170773510749,214,0 +170773510797,215,0 +170773510845,215,0 +170773510894,215,0 +170773510944,215,0 +170773510993,215,0 +170773511041,215,0 +170773511089,215,0 +170773511137,215,0 +170773511185,215,0 +170773511234,215,0 +170773511284,214,0 +170773511332,214,0 +170773511380,214,0 +170773511429,214,0 +170773511477,214,0 +170773511526,214,0 +170773511574,214,0 +170773511622,214,0 +170773511670,215,0 +170773511720,215,0 +170773511769,215,0 +170773511817,215,0 +170773511865,215,0 +170773511915,215,0 +170773511963,215,0 +170773512012,215,0 +170773512061,215,0 +170773512109,214,0 +170773512157,214,0 +170773512207,214,0 +170773512255,214,0 +170773512302,214,0 +170773512350,214,0 +170773512398,215,0 +170773512448,215,0 +170773512496,215,0 +170773512545,215,0 +170773512593,215,0 +170773512643,215,0 +170773512690,215,0 +170773512738,215,0 +170773512786,215,0 +170773512836,215,0 +170773512884,215,0 +170773512932,214,0 +170773512980,214,0 +170773513028,215,0 +170773513076,215,0 +170773513123,215,0 +170773513172,215,0 +170773513220,215,0 +170773513267,215,0 +170773513315,215,0 +170773513365,215,0 +170773513413,215,0 +170773513460,215,0 +170773513508,215,0 +170773513556,215,0 +170773513604,215,0 +170773513652,215,0 +170773513700,215,0 +170773513748,214,0 +170773513796,214,0 +170773513844,214,0 +170773513892,215,0 +170773513940,214,0 +170773513988,215,0 +170773514037,215,0 +170773514085,215,0 +170773514135,216,0 +170773514183,215,0 +170773514231,215,0 +170773514280,215,0 +170773514328,215,0 +170773514376,215,0 +170773514424,215,0 +170773514472,215,0 +170773514520,215,0 +170773514567,214,0 +170773514615,214,0 +170773514663,214,0 +170773514711,214,0 +170773514759,214,0 +170773514807,215,0 +170773514855,215,0 +170773514903,215,0 +170773514953,215,0 +170773515000,215,0 +170773515050,215,0 +170773515100,215,0 +170773515148,215,0 +170773515195,215,0 +170773515245,215,0 +170773515293,215,0 +170773515341,215,0 +170773515390,214,0 +170773515438,214,0 +170773515486,214,0 +170773515536,214,0 +170773515585,214,0 +170773515635,214,0 +170773515683,214,0 +170773515732,214,0 +170773515782,215,0 +170773515830,215,0 +170773515878,215,0 +170773515926,215,0 +170773515974,215,0 +170773516023,215,0 +170773516071,215,0 +170773516119,215,0 +170773516168,214,0 +170773516216,213,0 +170773516266,214,0 +170773516315,214,0 +170773516363,214,0 +170773516413,214,0 +170773516461,214,0 +170773516508,214,0 +170773516556,215,0 +170773516606,215,0 +170773516654,215,0 +170773516703,215,0 +170773516753,215,0 +170773516801,215,0 +170773516848,215,0 +170773516896,215,0 +170773516944,215,0 +170773516994,214,0 +170773517043,213,0 +170773517091,213,0 +170773517139,214,0 +170773517188,214,0 +170773517236,214,0 +170773517284,214,0 +170773517332,214,0 +170773517382,214,0 +170773517430,214,0 +170773517477,215,0 +170773517525,215,0 +170773517575,215,0 +170773517623,215,0 +170773517672,215,0 +170773517720,215,0 +170773517768,215,0 +170773517816,214,0 +170773517864,213,0 +170773517912,213,0 +170773517960,214,0 +170773518008,213,0 +170773518057,214,0 +170773518105,214,0 +170773518153,213,0 +170773518201,214,0 +170773518250,214,0 +170773518298,214,0 +170773518346,214,0 +170773518394,214,0 +170773518442,214,0 +170773518492,214,0 +170773518541,214,0 +170773518591,214,0 +170773518638,214,0 +170773518688,213,0 +170773518736,214,0 +170773518784,214,0 +170773518832,214,0 +170773518880,214,0 +170773518929,214,0 +170773518977,215,0 +170773519027,215,0 +170773519074,215,0 +170773519122,215,0 +170773519172,215,0 +170773519220,215,0 +170773519269,215,0 +170773519317,215,0 +170773519365,215,0 +170773519413,215,0 +170773519463,214,0 +170773519512,214,0 +170773519560,214,0 +170773519608,214,0 +170773519656,214,0 +170773519704,214,0 +170773519753,215,0 +170773519801,214,0 +170773519850,215,0 +170773519900,215,0 +170773519948,215,0 +170773519996,215,0 +170773520044,215,0 +170773520093,215,0 +170773520143,215,0 +170773520190,215,0 +170773520238,215,0 +170773520288,214,0 +170773520337,214,0 +170773520385,214,0 +170773520435,214,0 +170773520483,215,0 +170773520531,215,0 +170773520578,215,0 +170773520628,215,0 +170773520676,215,0 +170773520726,215,0 +170773520774,215,0 +170773520822,216,0 +170773520871,215,0 +170773520919,215,0 +170773520967,215,0 +170773521015,215,0 +170773521063,214,0 +170773521112,214,0 +170773521160,214,0 +170773521210,214,0 +170773521258,214,0 +170773521306,214,0 +170773521354,215,0 +170773521403,215,0 +170773521451,215,0 +170773521501,215,0 +170773521550,215,0 +170773521600,215,0 +170773521649,215,0 +170773521697,215,0 +170773521745,215,0 +170773521793,215,0 +170773521841,215,0 +170773521889,215,0 +170773521937,215,0 +170773521985,214,0 +170773522032,215,0 +170773522082,214,0 +170773522130,215,0 +170773522179,215,0 +170773522227,215,0 +170773522277,215,0 +170773522326,215,0 +170773522374,215,0 +170773522424,215,0 +170773522471,215,0 +170773522521,215,0 +170773522570,215,0 +170773522620,215,0 +170773522668,215,0 +170773522716,214,0 +170773522765,215,0 +170773522815,215,0 +170773522862,215,0 +170773522910,215,0 +170773522958,215,0 +170773523008,215,0 +170773523056,215,0 +170773523103,215,0 +170773523151,216,0 +170773523201,215,0 +170773523249,215,0 +170773523298,215,0 +170773523348,215,0 +170773523395,215,0 +170773523443,215,0 +170773523491,215,0 +170773523539,215,0 +170773523587,214,0 +170773523635,215,0 +170773523684,214,0 +170773523732,215,0 +170773523780,215,0 +170773523828,215,0 +170773523876,215,0 +170773523924,215,0 +170773523972,215,0 +170773524019,215,0 +170773524069,215,0 +170773524117,215,0 +170773524166,215,0 +170773524216,215,0 +170773524265,215,0 +170773524315,214,0 +170773524363,214,0 +170773524412,214,0 +170773524462,214,0 +170773524510,214,0 +170773524558,214,0 +170773524607,214,0 +170773524655,214,0 +170773524704,214,0 +170773524752,214,0 +170773524800,215,0 +170773524848,215,0 +170773524898,215,0 +170773524945,215,0 +170773524993,215,0 +170773525041,215,0 +170773525089,215,0 +170773525137,214,0 +170773525184,214,0 +170773525232,214,0 +170773525280,214,0 +170773525328,214,0 +170773525375,214,0 +170773525423,214,0 +170773525471,214,0 +170773525519,214,0 +170773525567,214,0 +170773525615,215,0 +170773525662,215,0 +170773525710,214,0 +170773525760,215,0 +170773525808,215,0 +170773525855,215,0 +170773525903,215,0 +170773525951,214,0 +170773525999,213,0 +170773526046,214,0 +170773526094,214,0 +170773526142,214,0 +170773526190,214,0 +170773526238,214,0 +170773526286,214,0 +170773526334,214,0 +170773526381,214,0 +170773526429,215,0 +170773526477,215,0 +170773526526,215,0 +170773526574,215,0 +170773526622,215,0 +170773526670,215,0 +170773526717,215,0 +170773526765,215,0 +170773526813,214,0 +170773526861,213,0 +170773526909,214,0 +170773526956,214,0 +170773527006,214,0 +170773527055,214,0 +170773527103,214,0 +170773527153,214,0 +170773527201,215,0 +170773527249,214,0 +170773527297,214,0 +170773527345,215,0 +170773527393,215,0 +170773527441,215,0 +170773527490,215,0 +170773527540,215,0 +170773527587,214,0 +170773527635,214,0 +170773527685,214,0 +170773527733,214,0 +170773527781,214,0 +170773527830,214,0 +170773527878,214,0 +170773527926,214,0 +170773527974,214,0 +170773528022,214,0 +170773528070,214,0 +170773528119,215,0 +170773528167,215,0 +170773528217,215,0 +170773528265,215,0 +170773528313,215,0 +170773528362,215,0 +170773528410,214,0 +170773528460,213,0 +170773528509,213,0 +170773528559,214,0 +170773528606,214,0 +170773528654,214,0 +170773528702,214,0 +170773528750,214,0 +170773528800,214,0 +170773528849,214,0 +170773528898,214,0 +170773528948,214,0 +170773528996,215,0 +170773529045,215,0 +170773529093,215,0 +170773529143,215,0 +170773529191,215,0 +170773529240,213,0 +170773529290,214,0 +170773529338,214,0 +170773529387,214,0 +170773529437,214,0 +170773529485,214,0 +170773529533,214,0 +170773529582,214,0 +170773529632,214,0 +170773529680,215,0 +170773529727,215,0 +170773529775,215,0 +170773529823,215,0 +170773529871,215,0 +170773529919,215,0 +170773529967,215,0 +170773530015,215,0 +170773530063,214,0 +170773530113,214,0 +170773530162,214,0 +170773530210,214,0 +170773530258,214,0 +170773530306,214,0 +170773530355,214,0 +170773530403,214,0 +170773530451,214,0 +170773530499,214,0 +170773530547,215,0 +170773530594,215,0 +170773530642,215,0 +170773530690,215,0 +170773530740,215,0 +170773530787,215,0 +170773530837,215,0 +170773530885,213,0 +170773530933,214,0 +170773530981,214,0 +170773531029,214,0 +170773531077,214,0 +170773531126,214,0 +170773531174,214,0 +170773531222,214,0 +170773531272,214,0 +170773531320,214,0 +170773531368,215,0 +170773531417,215,0 +170773531467,215,0 +170773531515,215,0 +170773531562,215,0 +170773531610,215,0 +170773531658,214,0 +170773531706,214,0 +170773531754,214,0 +170773531802,214,0 +170773531849,214,0 +170773531899,214,0 +170773531947,215,0 +170773531995,215,0 +170773532042,215,0 +170773532090,215,0 +170773532138,215,0 +170773532186,216,0 +170773532234,215,0 +170773532282,215,0 +170773532330,215,0 +170773532377,215,0 +170773532425,215,0 +170773532473,215,0 +170773532523,215,0 +170773532572,214,0 +170773532622,215,0 +170773532670,215,0 +170773532719,215,0 +170773532767,215,0 +170773532816,215,0 +170773532864,215,0 +170773532912,215,0 +170773532962,215,0 +170773533011,215,0 +170773533059,215,0 +170773533107,215,0 +170773533157,215,0 +170773533206,215,0 +170773533254,215,0 +170773533302,215,0 +170773533350,215,0 +170773533398,215,0 +170773533448,215,0 +170773533495,215,0 +170773533543,215,0 +170773533591,215,0 +170773533639,216,0 +170773533687,215,0 +170773533736,215,0 +170773533784,215,0 +170773533832,215,0 +170773533880,215,0 +170773533928,215,0 +170773533976,215,0 +170773534026,215,0 +170773534073,215,0 +170773534123,215,0 +170773534171,214,0 +170773534219,215,0 +170773534268,215,0 +170773534318,214,0 +170773534366,215,0 +170773534414,215,0 +170773534462,215,0 +170773534510,215,0 +170773534558,215,0 +170773534605,215,0 +170773534653,215,0 +170773534701,215,0 +170773534749,215,0 +170773534797,215,0 +170773534846,215,0 +170773534894,215,0 +170773534942,214,0 +170773534990,214,0 +170773535040,214,0 +170773535089,215,0 +170773535137,215,0 +170773535185,215,0 +170773535233,215,0 +170773535281,215,0 +170773535330,215,0 +170773535378,215,0 +170773535426,215,0 +170773535474,215,0 +170773535522,215,0 +170773535570,215,0 +170773535618,215,0 +170773535667,215,0 +170773535717,215,0 +170773535765,214,0 +170773535813,214,0 +170773535862,214,0 +170773535910,215,0 +170773535960,215,0 +170773536008,215,0 +170773536055,215,0 +170773536105,215,0 +170773536153,215,0 +170773536201,215,0 +170773536248,216,0 +170773536296,215,0 +170773536344,215,0 +170773536392,215,0 +170773536442,215,0 +170773536490,215,0 +170773536537,215,0 +170773536587,214,0 +170773536635,214,0 +170773536683,214,0 +170773536732,214,0 +170773536780,214,0 +170773536829,214,0 +170773536877,214,0 +170773536925,215,0 +170773536973,215,0 +170773537023,215,0 +170773537072,215,0 +170773537120,215,0 +170773537170,215,0 +170773537218,215,0 +170773537267,215,0 +170773537317,215,0 +170773537366,215,0 +170773537415,214,0 +170773537465,214,0 +170773537514,214,0 +170773537562,214,0 +170773537610,214,0 +170773537658,214,0 +170773537707,214,0 +170773537757,214,0 +170773537805,215,0 +170773537854,215,0 +170773537904,215,0 +170773537952,215,0 +170773538000,215,0 +170773538048,215,0 +170773538096,215,0 +170773538145,215,0 +170773538195,214,0 +170773538243,214,0 +170773538291,214,0 +170773538339,214,0 +170773538388,214,0 +170773538438,214,0 +170773538486,214,0 +170773538533,215,0 +170773538583,215,0 +170773538631,215,0 +170773538679,215,0 +170773538727,215,0 +170773538776,215,0 +170773538826,215,0 +170773538874,215,0 +170773538922,215,0 +170773538970,215,0 +170773539019,214,0 +170773539067,213,0 +170773539115,214,0 +170773539165,214,0 +170773539213,214,0 +170773539260,214,0 +170773539308,214,0 +170773539356,214,0 +170773539406,214,0 +170773539455,215,0 +170773539503,215,0 +170773539551,215,0 +170773539599,215,0 +170773539648,215,0 +170773539698,215,0 +170773539747,215,0 +170773539797,215,0 +170773539847,214,0 +170773539895,214,0 +170773539943,214,0 +170773539992,214,0 +170773540042,214,0 +170773540090,214,0 +170773540137,214,0 +170773540187,214,0 +170773540235,214,0 +170773540283,214,0 +170773540331,215,0 +170773540378,215,0 +170773540428,215,0 +170773540476,215,0 +170773540525,215,0 +170773540573,215,0 +170773540621,215,0 +170773540671,213,0 +170773540719,214,0 +170773540768,214,0 +170773540816,214,0 +170773540864,214,0 +170773540912,214,0 +170773540962,214,0 +170773541010,214,0 +170773541059,214,0 +170773541107,214,0 +170773541155,215,0 +170773541203,215,0 +170773541252,215,0 +170773541300,215,0 +170773541350,215,0 +170773541398,215,0 +170773541447,214,0 +170773541495,214,0 +170773541545,214,0 +170773541594,214,0 +170773541642,214,0 +170773541692,214,0 +170773541740,214,0 +170773541789,214,0 +170773541837,215,0 +170773541885,215,0 +170773541933,215,0 +170773541983,215,0 +170773542032,215,0 +170773542080,215,0 +170773542128,215,0 +170773542178,215,0 +170773542225,215,0 +170773542273,214,0 +170773542323,214,0 +170773542371,214,0 +170773542420,214,0 +170773542470,214,0 +170773542518,214,0 +170773542566,214,0 +170773542613,214,0 +170773542663,215,0 +170773542713,215,0 +170773542762,215,0 +170773542812,215,0 +170773542860,215,0 +170773542907,215,0 +170773542955,215,0 +170773543005,215,0 +170773543054,215,0 +170773543104,214,0 +170773543152,214,0 +170773543201,214,0 +170773543251,214,0 +170773543300,214,0 +170773543348,214,0 +170773543396,215,0 +170773543446,214,0 +170773543495,215,0 +170773543543,215,0 +170773543591,215,0 +170773543641,215,0 +170773543689,215,0 +170773543736,215,0 +170773543784,215,0 +170773543832,215,0 +170773543882,215,0 +170773543930,214,0 +170773543979,214,0 +170773544027,214,0 +170773544077,214,0 +170773544125,214,0 +170773544173,214,0 +170773544222,214,0 +170773544270,215,0 +170773544318,215,0 +170773544366,215,0 +170773544415,215,0 +170773544463,215,0 +170773544513,215,0 +170773544562,215,0 +170773544612,215,0 +170773544660,215,0 +170773544708,214,0 +170773544757,214,0 +170773544807,214,0 +170773544854,214,0 +170773544902,214,0 +170773544950,214,0 +170773544998,215,0 +170773545046,215,0 +170773545096,215,0 +170773545143,215,0 +170773545193,215,0 +170773545241,215,0 +170773545290,215,0 +170773545340,216,0 +170773545388,215,0 +170773545436,215,0 +170773545485,215,0 +170773545533,214,0 +170773545583,214,0 +170773545632,214,0 +170773545680,215,0 +170773545728,215,0 +170773545776,215,0 +170773545824,215,0 +170773545872,215,0 +170773545921,215,0 +170773545971,215,0 +170773546020,215,0 +170773546070,215,0 +170773546118,215,0 +170773546166,215,0 +170773546214,215,0 +170773546261,215,0 +170773546309,215,0 +170773546359,215,0 +170773546407,215,0 +170773546455,215,0 +170773546503,215,0 +170773546550,215,0 +170773546598,215,0 +170773546646,215,0 +170773546694,215,0 +170773546742,215,0 +170773546790,215,0 +170773546840,215,0 +170773546888,215,0 +170773546937,215,0 +170773546985,215,0 +170773547033,215,0 +170773547081,215,0 +170773547130,215,0 +170773547178,214,0 +170773547228,214,0 +170773547276,215,0 +170773547325,215,0 +170773547375,215,0 +170773547424,215,0 +170773547474,215,0 +170773547522,215,0 +170773547571,215,0 +170773547619,215,0 +170773547667,215,0 +170773547715,215,0 +170773547763,215,0 +170773547811,215,0 +170773547859,215,0 +170773547908,215,0 +170773547956,215,0 +170773548004,215,0 +170773548052,214,0 +170773548100,214,0 +170773548148,215,0 +170773548196,215,0 +170773548245,215,0 +170773548295,215,0 +170773548343,215,0 +170773548392,215,0 +170773548440,215,0 +170773548488,215,0 +170773548536,215,0 +170773548585,215,0 +170773548633,215,0 +170773548683,215,0 +170773548732,215,0 +170773548780,215,0 +170773548828,215,0 +170773548876,214,0 +170773548924,214,0 +170773548973,215,0 +170773549023,215,0 +170773549072,215,0 +170773549120,215,0 +170773549168,215,0 +170773549216,215,0 +170773549266,215,0 +170773549314,215,0 +170773549362,216,0 +170773549411,215,0 +170773549459,216,0 +170773549507,215,0 +170773549557,215,0 +170773549605,214,0 +170773549654,214,0 +170773549704,214,0 +170773549753,214,0 +170773549802,214,0 +170773549852,214,0 +170773549900,215,0 +170773549949,215,0 +170773549997,214,0 +170773550045,215,0 +170773550095,215,0 +170773550143,215,0 +170773550191,215,0 +170773550239,215,0 +170773550287,215,0 +170773550335,215,0 +170773550384,215,0 +170773550432,214,0 +170773550480,214,0 +170773550528,214,0 +170773550577,214,0 +170773550625,214,0 +170773550673,214,0 +170773550721,214,0 +170773550769,214,0 +170773550817,215,0 +170773550866,215,0 +170773550914,215,0 +170773550962,215,0 +170773551011,215,0 +170773551059,215,0 +170773551107,215,0 +170773551155,215,0 +170773551203,215,0 +170773551251,214,0 +170773551299,214,0 +170773551346,214,0 +170773551394,214,0 +170773551442,214,0 +170773551492,214,0 +170773551539,214,0 +170773551587,214,0 +170773551635,214,0 +170773551683,215,0 +170773551731,215,0 +170773551779,215,0 +170773551826,215,0 +170773551874,215,0 +170773551924,215,0 +170773551972,215,0 +170773552019,215,0 +170773552067,213,0 +170773552115,214,0 +170773552165,214,0 +170773552212,214,0 +170773552260,214,0 +170773552310,214,0 +170773552358,214,0 +170773552406,214,0 +170773552455,215,0 +170773552503,215,0 +170773552551,215,0 +170773552599,215,0 +170773552646,215,0 +170773552694,215,0 +170773552742,215,0 +170773552790,215,0 +170773552838,215,0 +170773552886,214,0 +170773552934,214,0 +170773552981,214,0 +170773553029,214,0 +170773553079,214,0 +170773553127,215,0 +170773553174,215,0 +170773553224,215,0 +170773553272,215,0 +170773553321,215,0 +170773553369,215,0 +170773553417,215,0 +170773553465,215,0 +170773553513,215,0 +170773553560,215,0 +170773553608,215,0 +170773553656,214,0 +170773553704,214,0 +170773553752,214,0 +170773553801,214,0 +170773553849,214,0 +170773553897,215,0 +170773553945,215,0 +170773553993,215,0 +170773554041,215,0 +170773554088,215,0 +170773554136,215,0 +170773554184,215,0 +170773554232,215,0 +170773554280,215,0 +170773554328,215,0 +170773554376,216,0 +170773554423,215,0 +170773554471,214,0 +170773554519,214,0 +170773554567,214,0 +170773554616,214,0 +170773554664,214,0 +170773554712,214,0 +170773554762,214,0 +170773554810,214,0 +170773554858,215,0 +170773554905,215,0 +170773554953,215,0 +170773555001,215,0 +170773555049,215,0 +170773555097,215,0 +170773555145,215,0 +170773555193,215,0 +170773555241,215,0 +170773555289,215,0 +170773555336,214,0 +170773555386,214,0 +170773555434,214,0 +170773555483,214,0 +170773555531,214,0 +170773555579,214,0 +170773555627,215,0 +170773555674,215,0 +170773555722,215,0 +170773555770,215,0 +170773555818,215,0 +170773555866,214,0 +170773555914,215,0 +170773555963,215,0 +170773556013,215,0 +170773556060,215,0 +170773556108,214,0 +170773556156,213,0 +170773556204,214,0 +170773556252,214,0 +170773556300,214,0 +170773556348,214,0 +170773556395,214,0 +170773556443,215,0 +170773556491,214,0 +170773556539,214,0 +170773556587,215,0 +170773556636,215,0 +170773556684,215,0 +170773556734,215,0 +170773556781,215,0 +170773556829,215,0 +170773556879,215,0 +170773556927,213,0 +170773556974,214,0 +170773557022,213,0 +170773557070,214,0 +170773557118,214,0 +170773557166,214,0 +170773557214,214,0 +170773557262,214,0 +170773557309,214,0 +170773557357,214,0 +170773557405,215,0 +170773557453,215,0 +170773557501,215,0 +170773557549,215,0 +170773557597,215,0 +170773557645,215,0 +170773557692,215,0 +170773557740,214,0 +170773557788,214,0 +170773557836,214,0 +170773557885,214,0 +170773557933,215,0 +170773557981,215,0 +170773558029,215,0 +170773558078,215,0 +170773558126,215,0 +170773558174,215,0 +170773558222,215,0 +170773558271,215,0 +170773558319,215,0 +170773558367,215,0 +170773558414,215,0 +170773558462,215,0 +170773558510,215,0 +170773558558,214,0 +170773558606,214,0 +170773558654,215,0 +170773558701,215,0 +170773558749,215,0 +170773558797,215,0 +170773558846,215,0 +170773558894,215,0 +170773558942,215,0 +170773558990,215,0 +170773559038,215,0 +170773559086,215,0 +170773559134,215,0 +170773559182,215,0 +170773559229,215,0 +170773559277,215,0 +170773559325,215,0 +170773559373,214,0 +170773559422,214,0 +170773559472,214,0 +170773559520,215,0 +170773559569,215,0 +170773559617,215,0 +170773559665,214,0 +170773559713,215,0 +170773559761,215,0 +170773559809,215,0 +170773559857,215,0 +170773559906,215,0 +170773559954,215,0 +170773560002,215,0 diff --git a/laser_value/0212-21.csv b/laser_value/0212-21.csv new file mode 100644 index 0000000..1f7b7a2 --- /dev/null +++ b/laser_value/0212-21.csv @@ -0,0 +1,7445 @@ +timestamp,laser_value,event +170773560050,215,0 +170773560098,215,0 +170773560146,214,0 +170773560194,214,0 +170773560242,214,0 +170773560289,214,0 +170773560339,214,0 +170773560387,215,0 +170773560434,215,0 +170773560482,215,0 +170773560530,215,0 +170773560578,215,0 +170773560626,215,0 +170773560674,215,0 +170773560722,215,0 +170773560770,215,0 +170773560817,215,0 +170773560867,215,0 +170773560916,215,0 +170773560964,215,0 +170773561013,214,0 +170773561061,214,0 +170773561109,214,0 +170773561158,214,0 +170773561206,214,0 +170773561254,215,0 +170773561302,214,0 +170773561350,215,0 +170773561398,215,0 +170773561447,215,0 +170773561495,215,0 +170773561544,215,0 +170773561592,215,0 +170773561640,215,0 +170773561688,215,0 +170773561735,215,0 +170773561783,215,0 +170773561833,214,0 +170773561880,214,0 +170773561928,214,0 +170773561976,214,0 +170773562024,214,0 +170773562072,215,0 +170773562120,214,0 +170773562167,215,0 +170773562215,215,0 +170773562263,215,0 +170773562311,215,0 +170773562359,215,0 +170773562407,215,0 +170773562454,215,0 +170773562502,215,0 +170773562550,215,0 +170773562598,215,0 +170773562647,214,0 +170773562695,214,0 +170773562743,214,0 +170773562791,214,0 +170773562840,214,0 +170773562890,214,0 +170773562937,214,0 +170773562985,214,0 +170773563033,215,0 +170773563081,214,0 +170773563129,215,0 +170773563178,215,0 +170773563226,215,0 +170773563274,215,0 +170773563323,215,0 +170773563371,215,0 +170773563420,214,0 +170773563468,214,0 +170773563516,214,0 +170773563566,214,0 +170773563613,215,0 +170773563663,214,0 +170773563711,214,0 +170773563759,215,0 +170773563806,215,0 +170773563854,215,0 +170773563902,215,0 +170773563950,215,0 +170773563998,215,0 +170773564045,215,0 +170773564093,215,0 +170773564141,215,0 +170773564189,215,0 +170773564237,215,0 +170773564285,214,0 +170773564332,215,0 +170773564380,214,0 +170773564428,215,0 +170773564476,215,0 +170773564524,215,0 +170773564573,215,0 +170773564621,215,0 +170773564670,215,0 +170773564718,215,0 +170773564768,215,0 +170773564815,215,0 +170773564863,215,0 +170773564911,215,0 +170773564959,215,0 +170773565007,215,0 +170773565055,214,0 +170773565102,214,0 +170773565150,214,0 +170773565198,214,0 +170773565246,214,0 +170773565295,214,0 +170773565343,215,0 +170773565391,215,0 +170773565439,215,0 +170773565488,215,0 +170773565538,215,0 +170773565585,215,0 +170773565633,215,0 +170773565683,215,0 +170773565731,215,0 +170773565778,215,0 +170773565826,215,0 +170773565874,214,0 +170773565922,214,0 +170773565970,214,0 +170773566019,214,0 +170773566067,214,0 +170773566115,214,0 +170773566163,215,0 +170773566213,215,0 +170773566260,215,0 +170773566308,215,0 +170773566356,215,0 +170773566404,215,0 +170773566452,215,0 +170773566500,215,0 +170773566549,215,0 +170773566599,215,0 +170773566646,215,0 +170773566694,214,0 +170773566744,214,0 +170773566792,214,0 +170773566841,214,0 +170773566889,214,0 +170773566937,214,0 +170773566987,215,0 +170773567036,214,0 +170773567086,215,0 +170773567134,215,0 +170773567182,215,0 +170773567230,215,0 +170773567279,215,0 +170773567329,215,0 +170773567378,215,0 +170773567428,215,0 +170773567476,215,0 +170773567525,214,0 +170773567573,214,0 +170773567621,214,0 +170773567670,214,0 +170773567718,214,0 +170773567766,214,0 +170773567815,214,0 +170773567863,214,0 +170773567911,215,0 +170773567959,215,0 +170773568009,215,0 +170773568056,215,0 +170773568104,215,0 +170773568152,215,0 +170773568200,215,0 +170773568248,215,0 +170773568298,214,0 +170773568347,214,0 +170773568397,214,0 +170773568445,214,0 +170773568493,214,0 +170773568541,214,0 +170773568588,214,0 +170773568636,214,0 +170773568684,214,0 +170773568734,214,0 +170773568782,214,0 +170773568830,215,0 +170773568878,215,0 +170773568927,215,0 +170773568975,214,0 +170773569023,215,0 +170773569071,215,0 +170773569119,214,0 +170773569167,214,0 +170773569215,214,0 +170773569263,214,0 +170773569310,214,0 +170773569358,214,0 +170773569408,214,0 +170773569456,214,0 +170773569504,215,0 +170773569552,215,0 +170773569600,215,0 +170773569647,215,0 +170773569695,215,0 +170773569745,215,0 +170773569794,215,0 +170773569842,215,0 +170773569890,215,0 +170773569938,214,0 +170773569986,213,0 +170773570033,214,0 +170773570081,214,0 +170773570129,214,0 +170773570179,214,0 +170773570226,214,0 +170773570274,214,0 +170773570322,214,0 +170773570370,215,0 +170773570419,215,0 +170773570467,215,0 +170773570515,215,0 +170773570563,215,0 +170773570611,215,0 +170773570659,215,0 +170773570707,215,0 +170773570755,214,0 +170773570803,214,0 +170773570852,214,0 +170773570900,214,0 +170773570948,214,0 +170773570996,214,0 +170773571046,215,0 +170773571093,215,0 +170773571141,215,0 +170773571191,215,0 +170773571239,215,0 +170773571287,215,0 +170773571335,215,0 +170773571382,215,0 +170773571430,215,0 +170773571478,215,0 +170773571526,215,0 +170773571574,214,0 +170773571622,214,0 +170773571669,214,0 +170773571719,214,0 +170773571767,214,0 +170773571814,215,0 +170773571862,215,0 +170773571912,215,0 +170773571960,215,0 +170773572007,215,0 +170773572055,215,0 +170773572103,215,0 +170773572151,215,0 +170773572199,215,0 +170773572247,215,0 +170773572296,215,0 +170773572344,215,0 +170773572392,214,0 +170773572440,214,0 +170773572488,214,0 +170773572537,214,0 +170773572585,214,0 +170773572633,214,0 +170773572681,214,0 +170773572730,215,0 +170773572778,215,0 +170773572826,215,0 +170773572874,215,0 +170773572923,215,0 +170773572971,215,0 +170773573019,215,0 +170773573067,215,0 +170773573115,215,0 +170773573163,215,0 +170773573210,214,0 +170773573258,214,0 +170773573306,214,0 +170773573354,214,0 +170773573402,215,0 +170773573450,215,0 +170773573498,215,0 +170773573546,215,0 +170773573595,215,0 +170773573645,215,0 +170773573693,215,0 +170773573741,215,0 +170773573789,215,0 +170773573836,215,0 +170773573884,215,0 +170773573932,215,0 +170773573980,215,0 +170773574028,214,0 +170773574076,215,0 +170773574126,215,0 +170773574175,215,0 +170773574223,215,0 +170773574271,215,0 +170773574320,215,0 +170773574370,215,0 +170773574418,215,0 +170773574467,215,0 +170773574515,215,0 +170773574563,215,0 +170773574613,215,0 +170773574661,215,0 +170773574710,215,0 +170773574758,215,0 +170773574806,214,0 +170773574856,214,0 +170773574904,215,0 +170773574953,215,0 +170773575001,215,0 +170773575051,215,0 +170773575099,215,0 +170773575148,215,0 +170773575196,215,0 +170773575246,215,0 +170773575294,215,0 +170773575342,215,0 +170773575391,215,0 +170773575439,215,0 +170773575487,215,0 +170773575535,215,0 +170773575582,215,0 +170773575630,214,0 +170773575678,214,0 +170773575727,214,0 +170773575775,214,0 +170773575823,214,0 +170773575873,214,0 +170773575921,214,0 +170773575970,214,0 +170773576020,214,0 +170773576068,215,0 +170773576115,215,0 +170773576165,215,0 +170773576213,215,0 +170773576262,215,0 +170773576310,215,0 +170773576360,215,0 +170773576409,215,0 +170773576459,214,0 +170773576507,214,0 +170773576556,214,0 +170773576604,214,0 +170773576652,214,0 +170773576702,214,0 +170773576750,214,0 +170773576798,214,0 +170773576846,215,0 +170773576895,215,0 +170773576943,215,0 +170773576991,215,0 +170773577041,215,0 +170773577090,215,0 +170773577138,216,0 +170773577186,215,0 +170773577235,214,0 +170773577285,214,0 +170773577333,214,0 +170773577381,214,0 +170773577430,214,0 +170773577480,214,0 +170773577529,215,0 +170773577577,215,0 +170773577625,215,0 +170773577673,215,0 +170773577723,215,0 +170773577771,215,0 +170773577819,215,0 +170773577868,215,0 +170773577916,215,0 +170773577964,215,0 +170773578013,215,0 +170773578063,214,0 +170773578113,214,0 +170773578162,214,0 +170773578210,214,0 +170773578260,214,0 +170773578309,214,0 +170773578359,214,0 +170773578407,214,0 +170773578455,215,0 +170773578502,214,0 +170773578550,215,0 +170773578598,215,0 +170773578646,215,0 +170773578694,215,0 +170773578742,215,0 +170773578789,215,0 +170773578837,215,0 +170773578887,214,0 +170773578935,214,0 +170773578984,214,0 +170773579034,214,0 +170773579083,214,0 +170773579133,214,0 +170773579181,214,0 +170773579229,214,0 +170773579277,215,0 +170773579326,215,0 +170773579376,215,0 +170773579424,215,0 +170773579472,217,0 +170773579520,216,0 +170773579569,215,0 +170773579618,215,0 +170773579668,214,0 +170773579716,213,0 +170773579765,214,0 +170773579815,214,0 +170773579863,214,0 +170773579911,214,0 +170773579959,214,0 +170773580007,214,0 +170773580055,215,0 +170773580103,214,0 +170773580152,215,0 +170773580202,215,0 +170773580251,215,0 +170773580299,215,0 +170773580347,215,0 +170773580395,215,0 +170773580443,215,0 +170773580491,214,0 +170773580539,213,0 +170773580587,214,0 +170773580636,214,0 +170773580684,214,0 +170773580732,214,0 +170773580780,214,0 +170773580828,214,0 +170773580878,214,0 +170773580926,214,0 +170773580974,215,0 +170773581023,215,0 +170773581073,215,0 +170773581122,215,0 +170773581170,215,0 +170773581218,215,0 +170773581266,215,0 +170773581316,214,0 +170773581364,214,0 +170773581411,214,0 +170773581461,214,0 +170773581509,214,0 +170773581558,214,0 +170773581608,214,0 +170773581656,214,0 +170773581705,214,0 +170773581753,215,0 +170773581801,215,0 +170773581851,215,0 +170773581899,215,0 +170773581947,215,0 +170773581994,215,0 +170773582042,215,0 +170773582090,215,0 +170773582138,214,0 +170773582186,214,0 +170773582234,214,0 +170773582282,214,0 +170773582329,214,0 +170773582377,214,0 +170773582425,215,0 +170773582473,214,0 +170773582521,214,0 +170773582569,215,0 +170773582618,215,0 +170773582667,215,0 +170773582717,215,0 +170773582765,215,0 +170773582812,215,0 +170773582860,215,0 +170773582908,214,0 +170773582956,214,0 +170773583004,214,0 +170773583053,214,0 +170773583103,214,0 +170773583150,215,0 +170773583198,215,0 +170773583246,215,0 +170773583294,215,0 +170773583342,215,0 +170773583390,215,0 +170773583438,215,0 +170773583486,215,0 +170773583533,215,0 +170773583581,215,0 +170773583629,215,0 +170773583679,215,0 +170773583727,214,0 +170773583775,215,0 +170773583822,215,0 +170773583870,215,0 +170773583920,215,0 +170773583967,215,0 +170773584017,215,0 +170773584066,215,0 +170773584116,215,0 +170773584164,215,0 +170773584213,215,0 +170773584261,215,0 +170773584309,215,0 +170773584357,216,0 +170773584407,215,0 +170773584456,215,0 +170773584504,215,0 +170773584554,215,0 +170773584603,215,0 +170773584651,215,0 +170773584700,216,0 +170773584748,215,0 +170773584796,215,0 +170773584844,215,0 +170773584892,215,0 +170773584940,215,0 +170773584989,215,0 +170773585037,215,0 +170773585085,215,0 +170773585133,215,0 +170773585182,215,0 +170773585230,215,0 +170773585279,215,0 +170773585327,215,0 +170773585375,214,0 +170773585423,214,0 +170773585471,214,0 +170773585519,215,0 +170773585566,215,0 +170773585614,215,0 +170773585662,215,0 +170773585710,215,0 +170773585758,215,0 +170773585805,215,0 +170773585853,215,0 +170773585901,215,0 +170773585949,215,0 +170773585996,215,0 +170773586044,215,0 +170773586092,215,0 +170773586140,215,0 +170773586188,214,0 +170773586237,214,0 +170773586285,214,0 +170773586333,214,0 +170773586382,215,0 +170773586430,215,0 +170773586478,215,0 +170773586528,215,0 +170773586577,215,0 +170773586626,215,0 +170773586674,215,0 +170773586722,215,0 +170773586770,215,0 +170773586818,215,0 +170773586866,216,0 +170773586913,215,0 +170773586961,215,0 +170773587009,214,0 +170773587057,214,0 +170773587105,214,0 +170773587153,214,0 +170773587201,214,0 +170773587249,215,0 +170773587297,215,0 +170773587344,215,0 +170773587392,215,0 +170773587440,215,0 +170773587488,215,0 +170773587536,215,0 +170773587584,215,0 +170773587632,215,0 +170773587680,215,0 +170773587729,215,0 +170773587779,214,0 +170773587828,214,0 +170773587876,214,0 +170773587926,214,0 +170773587974,214,0 +170773588022,214,0 +170773588070,214,0 +170773588119,214,0 +170773588167,214,0 +170773588216,215,0 +170773588264,215,0 +170773588314,215,0 +170773588362,215,0 +170773588410,215,0 +170773588458,215,0 +170773588506,215,0 +170773588553,215,0 +170773588601,214,0 +170773588649,214,0 +170773588699,214,0 +170773588747,214,0 +170773588795,214,0 +170773588843,214,0 +170773588891,214,0 +170773588938,214,0 +170773588986,214,0 +170773589036,214,0 +170773589085,215,0 +170773589133,215,0 +170773589181,215,0 +170773589231,215,0 +170773589279,215,0 +170773589327,215,0 +170773589374,215,0 +170773589424,214,0 +170773589473,214,0 +170773589523,214,0 +170773589571,214,0 +170773589620,214,0 +170773589670,214,0 +170773589718,214,0 +170773589766,215,0 +170773589814,214,0 +170773589861,215,0 +170773589909,215,0 +170773589957,215,0 +170773590005,215,0 +170773590053,215,0 +170773590103,215,0 +170773590152,215,0 +170773590200,215,0 +170773590248,214,0 +170773590297,214,0 +170773590347,214,0 +170773590395,214,0 +170773590443,214,0 +170773590492,214,0 +170773590540,215,0 +170773590588,214,0 +170773590637,215,0 +170773590687,215,0 +170773590736,215,0 +170773590784,215,0 +170773590834,215,0 +170773590882,215,0 +170773590931,215,0 +170773590979,215,0 +170773591027,215,0 +170773591075,214,0 +170773591125,214,0 +170773591173,214,0 +170773591221,214,0 +170773591268,214,0 +170773591318,214,0 +170773591367,214,0 +170773591415,215,0 +170773591463,215,0 +170773591511,215,0 +170773591560,215,0 +170773591608,215,0 +170773591656,215,0 +170773591704,215,0 +170773591752,215,0 +170773591802,215,0 +170773591849,214,0 +170773591899,214,0 +170773591947,214,0 +170773591995,214,0 +170773592042,214,0 +170773592092,214,0 +170773592141,215,0 +170773592189,215,0 +170773592237,215,0 +170773592285,215,0 +170773592333,215,0 +170773592382,215,0 +170773592430,215,0 +170773592478,215,0 +170773592526,215,0 +170773592574,215,0 +170773592621,215,0 +170773592669,214,0 +170773592717,214,0 +170773592766,214,0 +170773592814,214,0 +170773592862,214,0 +170773592910,214,0 +170773592959,214,0 +170773593008,214,0 +170773593056,214,0 +170773593104,214,0 +170773593152,214,0 +170773593200,215,0 +170773593248,215,0 +170773593297,215,0 +170773593345,215,0 +170773593393,215,0 +170773593440,215,0 +170773593488,214,0 +170773593536,214,0 +170773593584,214,0 +170773593632,214,0 +170773593680,214,0 +170773593728,214,0 +170773593775,214,0 +170773593823,214,0 +170773593871,215,0 +170773593919,215,0 +170773593967,215,0 +170773594015,215,0 +170773594062,215,0 +170773594112,215,0 +170773594160,215,0 +170773594209,215,0 +170773594257,215,0 +170773594305,214,0 +170773594352,214,0 +170773594402,214,0 +170773594450,214,0 +170773594497,214,0 +170773594545,214,0 +170773594593,214,0 +170773594641,215,0 +170773594689,215,0 +170773594739,215,0 +170773594787,215,0 +170773594836,215,0 +170773594884,215,0 +170773594932,215,0 +170773594980,215,0 +170773595028,215,0 +170773595076,215,0 +170773595125,214,0 +170773595173,214,0 +170773595223,214,0 +170773595270,214,0 +170773595318,214,0 +170773595366,214,0 +170773595414,214,0 +170773595462,215,0 +170773595510,215,0 +170773595558,215,0 +170773595606,215,0 +170773595654,215,0 +170773595702,215,0 +170773595749,215,0 +170773595799,215,0 +170773595848,215,0 +170773595896,214,0 +170773595944,214,0 +170773595992,214,0 +170773596040,214,0 +170773596087,214,0 +170773596135,214,0 +170773596183,214,0 +170773596232,215,0 +170773596282,215,0 +170773596330,215,0 +170773596378,215,0 +170773596427,215,0 +170773596477,215,0 +170773596526,215,0 +170773596574,215,0 +170773596622,215,0 +170773596670,215,0 +170773596718,214,0 +170773596766,214,0 +170773596814,214,0 +170773596861,214,0 +170773596909,214,0 +170773596959,215,0 +170773597007,215,0 +170773597056,215,0 +170773597106,215,0 +170773597154,215,0 +170773597203,215,0 +170773597251,215,0 +170773597299,215,0 +170773597349,215,0 +170773597398,215,0 +170773597446,215,0 +170773597495,215,0 +170773597543,214,0 +170773597593,214,0 +170773597642,215,0 +170773597690,215,0 +170773597738,215,0 +170773597786,215,0 +170773597835,215,0 +170773597883,215,0 +170773597931,215,0 +170773597979,215,0 +170773598029,215,0 +170773598078,215,0 +170773598128,215,0 +170773598175,215,0 +170773598223,215,0 +170773598273,215,0 +170773598321,214,0 +170773598370,214,0 +170773598418,214,0 +170773598468,214,0 +170773598517,214,0 +170773598565,214,0 +170773598613,215,0 +170773598663,215,0 +170773598710,215,0 +170773598760,215,0 +170773598808,215,0 +170773598856,215,0 +170773598904,215,0 +170773598953,215,0 +170773599001,215,0 +170773599049,215,0 +170773599099,215,0 +170773599146,214,0 +170773599194,214,0 +170773599242,214,0 +170773599290,215,0 +170773599338,215,0 +170773599386,215,0 +170773599434,215,0 +170773599482,215,0 +170773599530,215,0 +170773599579,215,0 +170773599627,215,0 +170773599676,215,0 +170773599726,215,0 +170773599774,215,0 +170773599823,215,0 +170773599873,215,0 +170773599922,215,0 +170773599970,215,0 +170773600020,215,0 +170773600068,215,0 +170773600116,214,0 +170773600165,215,0 +170773600215,215,0 +170773600263,215,0 +170773600311,215,0 +170773600358,215,0 +170773600406,216,0 +170773600456,216,0 +170773600504,215,0 +170773600552,215,0 +170773600601,215,0 +170773600649,215,0 +170773600697,215,0 +170773600747,215,0 +170773600794,214,0 +170773600844,214,0 +170773600892,214,0 +170773600940,214,0 +170773600989,215,0 +170773601039,215,0 +170773601088,215,0 +170773601136,215,0 +170773601184,215,0 +170773601234,215,0 +170773601283,215,0 +170773601331,215,0 +170773601379,215,0 +170773601427,215,0 +170773601475,215,0 +170773601523,215,0 +170773601571,214,0 +170773601620,214,0 +170773601670,214,0 +170773601718,214,0 +170773601767,214,0 +170773601815,214,0 +170773601865,215,0 +170773601913,214,0 +170773601962,214,0 +170773602012,215,0 +170773602060,215,0 +170773602107,215,0 +170773602157,215,0 +170773602205,215,0 +170773602253,215,0 +170773602301,215,0 +170773602348,215,0 +170773602398,214,0 +170773602446,214,0 +170773602495,214,0 +170773602543,214,0 +170773602591,214,0 +170773602639,214,0 +170773602688,214,0 +170773602736,215,0 +170773602784,215,0 +170773602832,215,0 +170773602881,215,0 +170773602931,215,0 +170773602979,215,0 +170773603028,215,0 +170773603076,215,0 +170773603125,215,0 +170773603173,215,0 +170773603221,214,0 +170773603271,214,0 +170773603319,214,0 +170773603367,214,0 +170773603415,214,0 +170773603462,214,0 +170773603512,215,0 +170773603560,215,0 +170773603608,215,0 +170773603656,215,0 +170773603705,215,0 +170773603755,215,0 +170773603803,215,0 +170773603851,215,0 +170773603899,215,0 +170773603947,215,0 +170773603996,215,0 +170773604044,214,0 +170773604092,214,0 +170773604141,214,0 +170773604189,214,0 +170773604237,215,0 +170773604287,215,0 +170773604336,215,0 +170773604384,215,0 +170773604434,215,0 +170773604482,215,0 +170773604530,215,0 +170773604579,215,0 +170773604627,215,0 +170773604675,215,0 +170773604724,215,0 +170773604774,215,0 +170773604822,214,0 +170773604870,214,0 +170773604918,214,0 +170773604967,214,0 +170773605015,215,0 +170773605063,215,0 +170773605111,215,0 +170773605159,215,0 +170773605207,215,0 +170773605255,215,0 +170773605304,215,0 +170773605354,215,0 +170773605402,215,0 +170773605451,215,0 +170773605499,215,0 +170773605547,215,0 +170773605595,215,0 +170773605645,214,0 +170773605694,214,0 +170773605742,214,0 +170773605790,214,0 +170773605838,214,0 +170773605886,215,0 +170773605934,214,0 +170773605983,215,0 +170773606031,215,0 +170773606081,215,0 +170773606128,215,0 +170773606178,215,0 +170773606227,215,0 +170773606275,215,0 +170773606323,215,0 +170773606371,215,0 +170773606420,215,0 +170773606468,214,0 +170773606518,213,0 +170773606567,214,0 +170773606615,214,0 +170773606663,214,0 +170773606711,214,0 +170773606759,214,0 +170773606809,214,0 +170773606858,215,0 +170773606906,214,0 +170773606954,215,0 +170773607003,215,0 +170773607053,215,0 +170773607101,215,0 +170773607149,215,0 +170773607197,215,0 +170773607244,214,0 +170773607292,213,0 +170773607340,213,0 +170773607388,214,0 +170773607437,214,0 +170773607485,214,0 +170773607533,214,0 +170773607581,214,0 +170773607628,214,0 +170773607676,214,0 +170773607726,215,0 +170773607774,215,0 +170773607822,215,0 +170773607869,215,0 +170773607917,215,0 +170773607965,215,0 +170773608013,215,0 +170773608061,214,0 +170773608108,214,0 +170773608156,214,0 +170773608204,214,0 +170773608252,214,0 +170773608301,214,0 +170773608351,214,0 +170773608399,214,0 +170773608446,215,0 +170773608494,214,0 +170773608542,215,0 +170773608590,215,0 +170773608639,215,0 +170773608689,215,0 +170773608736,215,0 +170773608784,215,0 +170773608832,215,0 +170773608880,214,0 +170773608928,214,0 +170773608977,214,0 +170773609025,214,0 +170773609074,214,0 +170773609122,214,0 +170773609170,214,0 +170773609218,215,0 +170773609266,215,0 +170773609314,215,0 +170773609361,215,0 +170773609409,215,0 +170773609457,215,0 +170773609505,215,0 +170773609553,215,0 +170773609601,215,0 +170773609648,215,0 +170773609696,214,0 +170773609744,214,0 +170773609792,214,0 +170773609839,214,0 +170773609887,214,0 +170773609935,214,0 +170773609983,214,0 +170773610031,214,0 +170773610079,215,0 +170773610128,215,0 +170773610178,215,0 +170773610226,215,0 +170773610273,215,0 +170773610323,215,0 +170773610372,215,0 +170773610420,215,0 +170773610470,215,0 +170773610518,214,0 +170773610567,214,0 +170773610615,214,0 +170773610665,214,0 +170773610712,214,0 +170773610760,215,0 +170773610808,215,0 +170773610856,215,0 +170773610904,215,0 +170773610952,215,0 +170773610999,215,0 +170773611047,215,0 +170773611097,215,0 +170773611145,215,0 +170773611194,215,0 +170773611242,215,0 +170773611290,214,0 +170773611338,214,0 +170773611385,214,0 +170773611433,214,0 +170773611481,214,0 +170773611531,214,0 +170773611578,215,0 +170773611626,215,0 +170773611674,215,0 +170773611722,215,0 +170773611772,215,0 +170773611821,215,0 +170773611869,215,0 +170773611918,215,0 +170773611966,215,0 +170773612014,215,0 +170773612062,215,0 +170773612110,215,0 +170773612157,214,0 +170773612205,214,0 +170773612253,215,0 +170773612301,215,0 +170773612349,215,0 +170773612397,215,0 +170773612445,215,0 +170773612493,215,0 +170773612541,215,0 +170773612590,215,0 +170773612638,215,0 +170773612686,215,0 +170773612734,215,0 +170773612781,215,0 +170773612829,215,0 +170773612877,215,0 +170773612927,214,0 +170773612974,214,0 +170773613024,214,0 +170773613072,214,0 +170773613119,214,0 +170773613167,214,0 +170773613215,214,0 +170773613263,215,0 +170773613311,215,0 +170773613359,215,0 +170773613407,215,0 +170773613455,215,0 +170773613503,215,0 +170773613551,215,0 +170773613598,215,0 +170773613646,215,0 +170773613696,215,0 +170773613745,214,0 +170773613793,214,0 +170773613841,214,0 +170773613889,214,0 +170773613937,215,0 +170773613985,215,0 +170773614033,215,0 +170773614083,215,0 +170773614132,215,0 +170773614180,215,0 +170773614228,215,0 +170773614277,215,0 +170773614327,215,0 +170773614375,215,0 +170773614423,216,0 +170773614471,215,0 +170773614520,215,0 +170773614568,215,0 +170773614616,215,0 +170773614664,215,0 +170773614712,214,0 +170773614760,215,0 +170773614810,215,0 +170773614858,215,0 +170773614907,215,0 +170773614955,215,0 +170773615003,215,0 +170773615051,215,0 +170773615099,215,0 +170773615147,216,0 +170773615195,215,0 +170773615243,215,0 +170773615290,215,0 +170773615338,215,0 +170773615388,215,0 +170773615436,215,0 +170773615484,215,0 +170773615533,215,0 +170773615581,215,0 +170773615631,215,0 +170773615678,215,0 +170773615726,215,0 +170773615774,215,0 +170773615824,215,0 +170773615872,216,0 +170773615920,215,0 +170773615968,215,0 +170773616015,215,0 +170773616065,215,0 +170773616113,215,0 +170773616161,214,0 +170773616210,214,0 +170773616260,214,0 +170773616308,214,0 +170773616356,214,0 +170773616403,214,0 +170773616451,215,0 +170773616499,215,0 +170773616549,215,0 +170773616598,215,0 +170773616648,215,0 +170773616697,215,0 +170773616745,215,0 +170773616793,215,0 +170773616843,215,0 +170773616891,215,0 +170773616939,215,0 +170773616988,213,0 +170773617036,214,0 +170773617084,214,0 +170773617134,214,0 +170773617182,214,0 +170773617230,215,0 +170773617277,214,0 +170773617327,214,0 +170773617375,214,0 +170773617423,214,0 +170773617472,214,0 +170773617520,215,0 +170773617568,215,0 +170773617616,215,0 +170773617663,215,0 +170773617711,215,0 +170773617759,215,0 +170773617809,215,0 +170773617856,215,0 +170773617904,215,0 +170773617952,215,0 +170773618000,215,0 +170773618048,215,0 +170773618096,215,0 +170773618145,215,0 +170773618193,214,0 +170773618242,214,0 +170773618290,214,0 +170773618338,214,0 +170773618386,214,0 +170773618435,214,0 +170773618483,215,0 +170773618531,215,0 +170773618579,215,0 +170773618627,215,0 +170773618675,216,0 +170773618724,215,0 +170773618772,215,0 +170773618822,215,0 +170773618870,215,0 +170773618918,215,0 +170773618967,215,0 +170773619015,214,0 +170773619064,214,0 +170773619112,214,0 +170773619162,214,0 +170773619210,214,0 +170773619259,214,0 +170773619307,214,0 +170773619355,214,0 +170773619403,215,0 +170773619451,215,0 +170773619499,215,0 +170773619547,215,0 +170773619596,215,0 +170773619644,215,0 +170773619692,215,0 +170773619741,215,0 +170773619789,214,0 +170773619837,214,0 +170773619886,214,0 +170773619934,214,0 +170773619982,214,0 +170773620032,214,0 +170773620080,214,0 +170773620128,214,0 +170773620176,214,0 +170773620224,215,0 +170773620272,215,0 +170773620320,215,0 +170773620368,215,0 +170773620416,215,0 +170773620464,214,0 +170773620512,214,0 +170773620559,215,0 +170773620607,214,0 +170773620655,213,0 +170773620703,213,0 +170773620751,214,0 +170773620801,214,0 +170773620849,214,0 +170773620898,214,0 +170773620947,214,0 +170773620995,214,0 +170773621043,214,0 +170773621091,214,0 +170773621139,214,0 +170773621188,214,0 +170773621236,215,0 +170773621286,215,0 +170773621335,215,0 +170773621383,215,0 +170773621433,214,0 +170773621481,214,0 +170773621529,214,0 +170773621578,214,0 +170773621626,214,0 +170773621674,215,0 +170773621724,214,0 +170773621772,215,0 +170773621820,215,0 +170773621868,215,0 +170773621915,215,0 +170773621963,215,0 +170773622013,215,0 +170773622061,215,0 +170773622109,215,0 +170773622157,215,0 +170773622206,215,0 +170773622256,214,0 +170773622304,214,0 +170773622352,214,0 +170773622401,214,0 +170773622449,215,0 +170773622497,215,0 +170773622545,215,0 +170773622593,215,0 +170773622641,215,0 +170773622690,215,0 +170773622738,215,0 +170773622788,215,0 +170773622837,215,0 +170773622887,215,0 +170773622936,215,0 +170773622984,215,0 +170773623034,214,0 +170773623082,214,0 +170773623130,214,0 +170773623177,214,0 +170773623227,215,0 +170773623275,215,0 +170773623325,215,0 +170773623372,215,0 +170773623420,215,0 +170773623470,215,0 +170773623518,215,0 +170773623566,215,0 +170773623614,215,0 +170773623662,215,0 +170773623709,215,0 +170773623759,215,0 +170773623808,215,0 +170773623856,214,0 +170773623906,214,0 +170773623955,214,0 +170773624003,215,0 +170773624051,215,0 +170773624099,215,0 +170773624147,215,0 +170773624195,215,0 +170773624243,215,0 +170773624291,215,0 +170773624340,215,0 +170773624388,215,0 +170773624436,215,0 +170773624486,215,0 +170773624534,215,0 +170773624582,215,0 +170773624631,215,0 +170773624679,215,0 +170773624727,215,0 +170773624776,215,0 +170773624824,215,0 +170773624872,215,0 +170773624920,215,0 +170773624968,215,0 +170773625017,215,0 +170773625065,215,0 +170773625113,215,0 +170773625161,215,0 +170773625209,215,0 +170773625257,215,0 +170773625304,215,0 +170773625354,215,0 +170773625403,215,0 +170773625451,215,0 +170773625500,215,0 +170773625548,215,0 +170773625596,215,0 +170773625645,215,0 +170773625693,215,0 +170773625741,215,0 +170773625789,215,0 +170773625837,215,0 +170773625885,215,0 +170773625933,215,0 +170773625980,215,0 +170773626028,215,0 +170773626076,215,0 +170773626124,215,0 +170773626172,215,0 +170773626220,215,0 +170773626268,215,0 +170773626316,214,0 +170773626364,215,0 +170773626413,215,0 +170773626461,215,0 +170773626511,215,0 +170773626559,215,0 +170773626607,215,0 +170773626656,215,0 +170773626706,215,0 +170773626754,215,0 +170773626802,215,0 +170773626850,215,0 +170773626898,215,0 +170773626946,215,0 +170773626994,215,0 +170773627043,215,0 +170773627091,214,0 +170773627139,214,0 +170773627187,214,0 +170773627236,214,0 +170773627284,214,0 +170773627332,214,0 +170773627382,214,0 +170773627431,215,0 +170773627479,215,0 +170773627527,215,0 +170773627575,215,0 +170773627625,215,0 +170773627674,215,0 +170773627722,215,0 +170773627771,215,0 +170773627821,215,0 +170773627869,215,0 +170773627916,215,0 +170773627966,214,0 +170773628014,214,0 +170773628061,214,0 +170773628109,214,0 +170773628159,214,0 +170773628206,214,0 +170773628254,214,0 +170773628302,214,0 +170773628350,215,0 +170773628398,215,0 +170773628446,215,0 +170773628493,215,0 +170773628541,215,0 +170773628589,215,0 +170773628637,215,0 +170773628685,215,0 +170773628732,215,0 +170773628780,215,0 +170773628828,215,0 +170773628877,214,0 +170773628925,214,0 +170773628973,214,0 +170773629021,214,0 +170773629070,214,0 +170773629118,214,0 +170773629166,214,0 +170773629214,214,0 +170773629262,214,0 +170773629310,215,0 +170773629359,215,0 +170773629407,215,0 +170773629456,215,0 +170773629504,215,0 +170773629554,215,0 +170773629602,215,0 +170773629650,216,0 +170773629699,215,0 +170773629747,214,0 +170773629795,214,0 +170773629843,214,0 +170773629892,214,0 +170773629940,214,0 +170773629988,214,0 +170773630036,214,0 +170773630084,214,0 +170773630133,215,0 +170773630183,215,0 +170773630231,215,0 +170773630278,215,0 +170773630326,215,0 +170773630376,215,0 +170773630425,215,0 +170773630475,215,0 +170773630523,215,0 +170773630571,215,0 +170773630620,215,0 +170773630668,214,0 +170773630716,214,0 +170773630764,214,0 +170773630812,214,0 +170773630860,214,0 +170773630907,214,0 +170773630955,214,0 +170773631005,215,0 +170773631053,215,0 +170773631100,215,0 +170773631148,215,0 +170773631196,215,0 +170773631244,215,0 +170773631293,215,0 +170773631341,215,0 +170773631389,215,0 +170773631437,215,0 +170773631485,215,0 +170773631532,214,0 +170773631582,214,0 +170773631631,214,0 +170773631679,214,0 +170773631728,214,0 +170773631776,214,0 +170773631824,214,0 +170773631874,214,0 +170773631923,215,0 +170773631971,215,0 +170773632019,215,0 +170773632067,215,0 +170773632114,215,0 +170773632162,215,0 +170773632210,215,0 +170773632258,215,0 +170773632306,215,0 +170773632353,215,0 +170773632401,215,0 +170773632449,214,0 +170773632497,214,0 +170773632545,214,0 +170773632593,214,0 +170773632641,214,0 +170773632689,214,0 +170773632737,214,0 +170773632786,214,0 +170773632834,214,0 +170773632882,215,0 +170773632932,215,0 +170773632981,215,0 +170773633031,215,0 +170773633078,215,0 +170773633128,215,0 +170773633177,215,0 +170773633227,215,0 +170773633276,215,0 +170773633324,214,0 +170773633372,214,0 +170773633420,214,0 +170773633468,214,0 +170773633516,214,0 +170773633566,214,0 +170773633614,214,0 +170773633662,214,0 +170773633710,214,0 +170773633758,214,0 +170773633807,215,0 +170773633855,215,0 +170773633904,215,0 +170773633952,215,0 +170773634002,215,0 +170773634050,215,0 +170773634099,215,0 +170773634147,215,0 +170773634196,215,0 +170773634244,214,0 +170773634294,214,0 +170773634342,214,0 +170773634391,214,0 +170773634439,214,0 +170773634487,214,0 +170773634535,214,0 +170773634584,214,0 +170773634632,215,0 +170773634680,215,0 +170773634728,214,0 +170773634778,215,0 +170773634827,215,0 +170773634875,215,0 +170773634923,215,0 +170773634971,215,0 +170773635019,215,0 +170773635068,215,0 +170773635116,214,0 +170773635164,214,0 +170773635212,214,0 +170773635260,214,0 +170773635308,214,0 +170773635356,214,0 +170773635404,214,0 +170773635452,214,0 +170773635499,215,0 +170773635549,215,0 +170773635597,215,0 +170773635645,215,0 +170773635693,215,0 +170773635740,215,0 +170773635788,215,0 +170773635838,215,0 +170773635886,215,0 +170773635934,215,0 +170773635983,215,0 +170773636031,214,0 +170773636079,214,0 +170773636127,214,0 +170773636175,215,0 +170773636224,215,0 +170773636272,215,0 +170773636320,215,0 +170773636368,215,0 +170773636416,215,0 +170773636464,215,0 +170773636512,215,0 +170773636560,215,0 +170773636608,215,0 +170773636656,215,0 +170773636704,215,0 +170773636752,215,0 +170773636799,215,0 +170773636849,215,0 +170773636898,215,0 +170773636948,214,0 +170773636997,214,0 +170773637045,215,0 +170773637093,215,0 +170773637141,215,0 +170773637188,215,0 +170773637236,215,0 +170773637284,215,0 +170773637332,215,0 +170773637380,215,0 +170773637428,215,0 +170773637475,215,0 +170773637523,215,0 +170773637573,215,0 +170773637621,215,0 +170773637668,215,0 +170773637716,215,0 +170773637764,215,0 +170773637812,214,0 +170773637860,214,0 +170773637907,214,0 +170773637955,215,0 +170773638003,214,0 +170773638051,214,0 +170773638099,215,0 +170773638147,215,0 +170773638194,215,0 +170773638244,215,0 +170773638293,215,0 +170773638343,215,0 +170773638390,215,0 +170773638438,215,0 +170773638488,215,0 +170773638535,215,0 +170773638583,215,0 +170773638631,215,0 +170773638679,215,0 +170773638727,214,0 +170773638775,214,0 +170773638822,214,0 +170773638870,214,0 +170773638918,214,0 +170773638967,214,0 +170773639015,214,0 +170773639063,215,0 +170773639111,215,0 +170773639159,215,0 +170773639208,215,0 +170773639256,215,0 +170773639304,215,0 +170773639352,215,0 +170773639400,215,0 +170773639447,215,0 +170773639495,215,0 +170773639543,215,0 +170773639591,214,0 +170773639640,214,0 +170773639690,214,0 +170773639739,214,0 +170773639787,214,0 +170773639835,214,0 +170773639883,215,0 +170773639931,215,0 +170773639979,215,0 +170773640029,215,0 +170773640077,215,0 +170773640126,215,0 +170773640176,215,0 +170773640224,215,0 +170773640272,215,0 +170773640320,215,0 +170773640367,215,0 +170773640415,215,0 +170773640463,215,0 +170773640511,214,0 +170773640559,214,0 +170773640607,214,0 +170773640655,214,0 +170773640704,214,0 +170773640752,214,0 +170773640800,215,0 +170773640849,215,0 +170773640897,215,0 +170773640947,215,0 +170773640996,215,0 +170773641044,215,0 +170773641092,215,0 +170773641140,215,0 +170773641188,215,0 +170773641236,215,0 +170773641285,215,0 +170773641335,215,0 +170773641383,215,0 +170773641432,214,0 +170773641480,214,0 +170773641530,214,0 +170773641577,214,0 +170773641625,214,0 +170773641675,214,0 +170773641724,214,0 +170773641772,214,0 +170773641820,214,0 +170773641868,215,0 +170773641916,215,0 +170773641963,215,0 +170773642011,215,0 +170773642059,215,0 +170773642107,215,0 +170773642155,215,0 +170773642203,215,0 +170773642250,215,0 +170773642298,214,0 +170773642346,214,0 +170773642394,214,0 +170773642442,214,0 +170773642490,214,0 +170773642537,214,0 +170773642585,214,0 +170773642633,214,0 +170773642681,214,0 +170773642731,214,0 +170773642780,215,0 +170773642828,214,0 +170773642876,214,0 +170773642926,215,0 +170773642974,215,0 +170773643021,215,0 +170773643069,215,0 +170773643119,215,0 +170773643167,215,0 +170773643214,214,0 +170773643262,214,0 +170773643310,214,0 +170773643358,214,0 +170773643406,214,0 +170773643454,214,0 +170773643502,214,0 +170773643550,214,0 +170773643597,214,0 +170773643645,214,0 +170773643693,214,0 +170773643741,215,0 +170773643790,215,0 +170773643838,215,0 +170773643886,215,0 +170773643934,215,0 +170773643982,215,0 +170773644030,214,0 +170773644077,214,0 +170773644125,214,0 +170773644173,214,0 +170773644221,214,0 +170773644269,214,0 +170773644318,214,0 +170773644366,214,0 +170773644414,214,0 +170773644462,214,0 +170773644512,214,0 +170773644560,214,0 +170773644607,215,0 +170773644655,215,0 +170773644703,215,0 +170773644751,215,0 +170773644801,215,0 +170773644849,215,0 +170773644897,215,0 +170773644946,215,0 +170773644996,214,0 +170773645044,214,0 +170773645093,213,0 +170773645142,213,0 +170773645190,214,0 +170773645238,213,0 +170773645286,214,0 +170773645334,214,0 +170773645382,214,0 +170773645431,214,0 +170773645479,214,0 +170773645527,215,0 +170773645577,215,0 +170773645625,215,0 +170773645674,215,0 +170773645723,215,0 +170773645771,215,0 +170773645819,215,0 +170773645867,214,0 +170773645915,214,0 +170773645964,214,0 +170773646012,214,0 +170773646060,214,0 +170773646108,214,0 +170773646156,214,0 +170773646205,214,0 +170773646253,214,0 +170773646301,214,0 +170773646349,214,0 +170773646397,214,0 +170773646445,215,0 +170773646495,215,0 +170773646543,215,0 +170773646592,215,0 +170773646640,215,0 +170773646690,215,0 +170773646739,215,0 +170773646787,214,0 +170773646835,214,0 +170773646883,214,0 +170773646931,214,0 +170773646981,214,0 +170773647030,214,0 +170773647078,214,0 +170773647128,215,0 +170773647175,215,0 +170773647223,215,0 +170773647273,215,0 +170773647321,215,0 +170773647368,215,0 +170773647418,215,0 +170773647467,215,0 +170773647515,215,0 +170773647563,215,0 +170773647613,215,0 +170773647662,215,0 +170773647710,214,0 +170773647758,214,0 +170773647806,214,0 +170773647854,214,0 +170773647902,214,0 +170773647950,214,0 +170773647999,214,0 +170773648047,215,0 +170773648095,215,0 +170773648143,215,0 +170773648190,215,0 +170773648238,215,0 +170773648286,215,0 +170773648334,215,0 +170773648382,215,0 +170773648430,215,0 +170773648478,215,0 +170773648526,215,0 +170773648574,214,0 +170773648621,214,0 +170773648669,214,0 +170773648717,214,0 +170773648765,214,0 +170773648813,214,0 +170773648861,214,0 +170773648910,214,0 +170773648958,214,0 +170773649006,215,0 +170773649055,215,0 +170773649103,214,0 +170773649151,215,0 +170773649199,215,0 +170773649247,215,0 +170773649295,215,0 +170773649343,215,0 +170773649391,215,0 +170773649439,215,0 +170773649487,213,0 +170773649535,213,0 +170773649584,213,0 +170773649632,214,0 +170773649680,214,0 +170773649728,214,0 +170773649776,214,0 +170773649824,214,0 +170773649872,214,0 +170773649920,214,0 +170773649969,214,0 +170773650017,214,0 +170773650067,214,0 +170773650115,215,0 +170773650164,214,0 +170773650212,214,0 +170773650260,214,0 +170773650308,214,0 +170773650357,214,0 +170773650405,213,0 +170773650453,213,0 +170773650501,213,0 +170773650550,214,0 +170773650598,214,0 +170773650646,214,0 +170773650694,214,0 +170773650742,214,0 +170773650789,214,0 +170773650837,214,0 +170773650885,214,0 +170773650933,214,0 +170773650981,215,0 +170773651029,215,0 +170773651077,215,0 +170773651124,215,0 +170773651172,215,0 +170773651220,215,0 +170773651268,213,0 +170773651316,214,0 +170773651364,214,0 +170773651413,214,0 +170773651461,214,0 +170773651510,214,0 +170773651558,214,0 +170773651606,215,0 +170773651654,214,0 +170773651702,214,0 +170773651749,214,0 +170773651797,214,0 +170773651845,215,0 +170773651893,215,0 +170773651941,215,0 +170773651988,215,0 +170773652036,215,0 +170773652084,215,0 +170773652132,214,0 +170773652180,213,0 +170773652228,213,0 +170773652275,213,0 +170773652323,214,0 +170773652371,214,0 +170773652420,214,0 +170773652468,214,0 +170773652518,214,0 +170773652566,214,0 +170773652613,214,0 +170773652661,214,0 +170773652709,214,0 +170773652757,214,0 +170773652805,215,0 +170773652853,215,0 +170773652901,215,0 +170773652949,215,0 +170773652996,215,0 +170773653046,214,0 +170773653094,213,0 +170773653142,213,0 +170773653189,213,0 +170773653237,213,0 +170773653285,214,0 +170773653335,214,0 +170773653383,214,0 +170773653431,214,0 +170773653480,214,0 +170773653530,214,0 +170773653578,214,0 +170773653626,214,0 +170773653675,214,0 +170773653723,215,0 +170773653773,215,0 +170773653821,215,0 +170773653868,215,0 +170773653918,215,0 +170773653968,213,0 +170773654015,213,0 +170773654065,213,0 +170773654113,214,0 +170773654161,214,0 +170773654210,214,0 +170773654259,214,0 +170773654307,214,0 +170773654355,214,0 +170773654403,214,0 +170773654451,214,0 +170773654499,214,0 +170773654547,215,0 +170773654595,215,0 +170773654643,215,0 +170773654691,215,0 +170773654740,215,0 +170773654790,215,0 +170773654838,214,0 +170773654887,214,0 +170773654936,214,0 +170773654984,214,0 +170773655032,214,0 +170773655080,214,0 +170773655128,214,0 +170773655176,214,0 +170773655224,214,0 +170773655274,214,0 +170773655322,215,0 +170773655371,214,0 +170773655419,215,0 +170773655467,215,0 +170773655515,215,0 +170773655565,215,0 +170773655612,215,0 +170773655660,215,0 +170773655708,215,0 +170773655756,213,0 +170773655804,214,0 +170773655854,214,0 +170773655902,214,0 +170773655949,214,0 +170773655999,214,0 +170773656049,214,0 +170773656096,214,0 +170773656144,215,0 +170773656192,214,0 +170773656240,215,0 +170773656288,215,0 +170773656338,215,0 +170773656386,215,0 +170773656433,215,0 +170773656483,215,0 +170773656531,215,0 +170773656579,215,0 +170773656627,215,0 +170773656676,214,0 +170773656724,214,0 +170773656774,214,0 +170773656821,214,0 +170773656869,214,0 +170773656917,214,0 +170773656965,214,0 +170773657015,214,0 +170773657063,215,0 +170773657111,215,0 +170773657160,215,0 +170773657208,215,0 +170773657256,215,0 +170773657304,215,0 +170773657352,215,0 +170773657401,215,0 +170773657451,215,0 +170773657500,215,0 +170773657548,214,0 +170773657598,214,0 +170773657647,214,0 +170773657697,214,0 +170773657745,214,0 +170773657794,214,0 +170773657842,214,0 +170773657890,215,0 +170773657940,215,0 +170773657987,215,0 +170773658035,215,0 +170773658083,215,0 +170773658133,215,0 +170773658181,215,0 +170773658229,215,0 +170773658277,215,0 +170773658326,215,0 +170773658374,215,0 +170773658422,214,0 +170773658470,213,0 +170773658519,213,0 +170773658569,214,0 +170773658617,214,0 +170773658665,214,0 +170773658714,214,0 +170773658762,214,0 +170773658810,214,0 +170773658859,214,0 +170773658909,214,0 +170773658957,214,0 +170773659005,215,0 +170773659054,215,0 +170773659104,215,0 +170773659153,215,0 +170773659201,214,0 +170773659249,215,0 +170773659298,215,0 +170773659348,213,0 +170773659396,213,0 +170773659444,214,0 +170773659493,213,0 +170773659541,214,0 +170773659591,214,0 +170773659638,214,0 +170773659686,214,0 +170773659734,214,0 +170773659782,214,0 +170773659830,214,0 +170773659878,215,0 +170773659926,215,0 +170773659974,214,0 +170773660021,215,0 +170773660069,215,0 +170773660117,215,0 +170773660165,215,0 +170773660213,214,0 +170773660261,214,0 +170773660309,213,0 +170773660357,213,0 +170773660406,214,0 +170773660454,214,0 +170773660504,214,0 +170773660552,214,0 +170773660601,214,0 +170773660649,214,0 +170773660699,214,0 +170773660747,214,0 +170773660796,215,0 +170773660844,215,0 +170773660892,215,0 +170773660940,215,0 +170773660988,215,0 +170773661036,215,0 +170773661085,215,0 +170773661133,214,0 +170773661181,214,0 +170773661229,214,0 +170773661277,214,0 +170773661324,214,0 +170773661374,214,0 +170773661423,214,0 +170773661471,214,0 +170773661521,214,0 +170773661570,215,0 +170773661618,215,0 +170773661668,215,0 +170773661716,215,0 +170773661765,215,0 +170773661815,215,0 +170773661862,215,0 +170773661912,215,0 +170773661960,215,0 +170773662009,215,0 +170773662059,214,0 +170773662107,214,0 +170773662156,214,0 +170773662204,214,0 +170773662252,214,0 +170773662300,214,0 +170773662349,214,0 +170773662397,214,0 +170773662445,214,0 +170773662493,214,0 +170773662541,214,0 +170773662589,214,0 +170773662637,215,0 +170773662684,215,0 +170773662732,215,0 +170773662780,215,0 +170773662828,215,0 +170773662876,215,0 +170773662924,214,0 +170773662972,214,0 +170773663019,214,0 +170773663067,214,0 +170773663115,214,0 +170773663165,214,0 +170773663213,214,0 +170773663260,214,0 +170773663308,214,0 +170773663356,214,0 +170773663406,214,0 +170773663454,215,0 +170773663502,215,0 +170773663549,215,0 +170773663599,215,0 +170773663647,215,0 +170773663695,215,0 +170773663743,215,0 +170773663791,215,0 +170773663840,213,0 +170773663888,213,0 +170773663936,213,0 +170773663985,213,0 +170773664033,214,0 +170773664081,214,0 +170773664129,214,0 +170773664179,214,0 +170773664228,214,0 +170773664276,214,0 +170773664326,214,0 +170773664374,214,0 +170773664421,215,0 +170773664471,214,0 +170773664519,215,0 +170773664567,214,0 +170773664615,214,0 +170773664663,215,0 +170773664712,214,0 +170773664760,213,0 +170773664808,213,0 +170773664856,213,0 +170773664904,213,0 +170773664952,213,0 +170773665000,213,0 +170773665048,213,0 +170773665095,214,0 +170773665143,214,0 +170773665191,214,0 +170773665241,214,0 +170773665289,214,0 +170773665338,214,0 +170773665386,214,0 +170773665434,215,0 +170773665482,215,0 +170773665529,215,0 +170773665579,215,0 +170773665627,213,0 +170773665675,213,0 +170773665723,213,0 +170773665770,213,0 +170773665818,213,0 +170773665866,213,0 +170773665914,213,0 +170773665962,213,0 +170773666010,213,0 +170773666057,214,0 +170773666105,214,0 +170773666153,214,0 +170773666201,214,0 +170773666249,214,0 +170773666297,214,0 +170773666345,214,0 +170773666393,214,0 +170773666440,215,0 +170773666488,214,0 +170773666536,213,0 +170773666584,213,0 +170773666634,213,0 +170773666682,213,0 +170773666731,213,0 +170773666779,213,0 +170773666827,214,0 +170773666875,214,0 +170773666923,214,0 +170773666972,214,0 +170773667020,214,0 +170773667070,214,0 +170773667117,214,0 +170773667165,214,0 +170773667213,214,0 +170773667263,214,0 +170773667311,214,0 +170773667358,215,0 +170773667406,214,0 +170773667454,213,0 +170773667502,213,0 +170773667550,213,0 +170773667598,214,0 +170773667646,214,0 +170773667695,214,0 +170773667745,214,0 +170773667792,214,0 +170773667840,214,0 +170773667890,214,0 +170773667939,214,0 +170773667989,214,0 +170773668037,215,0 +170773668086,214,0 +170773668134,215,0 +170773668182,215,0 +170773668231,215,0 +170773668279,214,0 +170773668327,213,0 +170773668375,213,0 +170773668424,213,0 +170773668474,213,0 +170773668522,213,0 +170773668570,213,0 +170773668618,213,0 +170773668665,213,0 +170773668713,214,0 +170773668761,214,0 +170773668809,214,0 +170773668857,214,0 +170773668905,214,0 +170773668953,214,0 +170773669001,215,0 +170773669050,214,0 +170773669098,214,0 +170773669146,214,0 +170773669195,214,0 +170773669245,213,0 +170773669293,213,0 +170773669341,213,0 +170773669390,213,0 +170773669438,214,0 +170773669487,214,0 +170773669535,214,0 +170773669583,214,0 +170773669631,214,0 +170773669679,214,0 +170773669727,214,0 +170773669776,215,0 +170773669824,215,0 +170773669872,214,0 +170773669920,215,0 +170773669970,215,0 +170773670017,215,0 +170773670065,214,0 +170773670115,213,0 +170773670163,214,0 +170773670212,213,0 +170773670260,214,0 +170773670309,214,0 +170773670359,214,0 +170773670408,214,0 +170773670458,214,0 +170773670507,214,0 +170773670557,214,0 +170773670606,214,0 +170773670654,215,0 +170773670702,214,0 +170773670751,215,0 +170773670799,214,0 +170773670847,215,0 +170773670895,214,0 +170773670943,215,0 +170773670993,214,0 +170773671040,213,0 +170773671090,214,0 +170773671138,214,0 +170773671187,214,0 +170773671235,214,0 +170773671285,214,0 +170773671333,214,0 +170773671382,214,0 +170773671432,214,0 +170773671481,215,0 +170773671529,214,0 +170773671577,215,0 +170773671625,215,0 +170773671673,215,0 +170773671720,215,0 +170773671768,215,0 +170773671816,215,0 +170773671865,214,0 +170773671915,213,0 +170773671963,214,0 +170773672011,214,0 +170773672059,214,0 +170773672106,214,0 +170773672154,214,0 +170773672202,214,0 +170773672250,214,0 +170773672298,214,0 +170773672346,215,0 +170773672394,215,0 +170773672442,215,0 +170773672491,215,0 +170773672539,215,0 +170773672588,215,0 +170773672636,215,0 +170773672684,215,0 +170773672734,215,0 +170773672783,214,0 +170773672833,214,0 +170773672880,214,0 +170773672930,215,0 +170773672978,214,0 +170773673027,214,0 +170773673077,214,0 +170773673126,215,0 +170773673174,215,0 +170773673224,215,0 +170773673272,215,0 +170773673320,215,0 +170773673369,215,0 +170773673417,215,0 +170773673465,215,0 +170773673513,215,0 +170773673561,215,0 +170773673609,215,0 +170773673659,215,0 +170773673707,214,0 +170773673755,214,0 +170773673802,214,0 +170773673852,214,0 +170773673900,214,0 +170773673948,215,0 +170773673995,215,0 +170773674045,215,0 +170773674093,215,0 +170773674141,215,0 +170773674190,215,0 +170773674238,215,0 +170773674286,215,0 +170773674334,215,0 +170773674383,215,0 +170773674431,215,0 +170773674479,215,0 +170773674527,215,0 +170773674575,214,0 +170773674623,214,0 +170773674673,215,0 +170773674721,214,0 +170773674769,215,0 +170773674817,215,0 +170773674865,215,0 +170773674914,215,0 +170773674962,215,0 +170773675012,215,0 +170773675059,215,0 +170773675109,215,0 +170773675157,215,0 +170773675206,215,0 +170773675256,215,0 +170773675304,215,0 +170773675352,215,0 +170773675400,215,0 +170773675447,215,0 +170773675495,215,0 +170773675543,215,0 +170773675591,215,0 +170773675639,215,0 +170773675687,215,0 +170773675735,215,0 +170773675783,215,0 +170773675833,215,0 +170773675882,215,0 +170773675930,215,0 +170773675978,215,0 +170773676027,215,0 +170773676077,215,0 +170773676125,215,0 +170773676174,215,0 +170773676222,215,0 +170773676272,215,0 +170773676320,214,0 +170773676369,214,0 +170773676419,214,0 +170773676467,214,0 +170773676515,214,0 +170773676563,214,0 +170773676611,214,0 +170773676659,214,0 +170773676707,215,0 +170773676755,214,0 +170773676802,215,0 +170773676850,215,0 +170773676900,215,0 +170773676948,215,0 +170773676996,215,0 +170773677044,215,0 +170773677093,215,0 +170773677141,215,0 +170773677189,215,0 +170773677237,214,0 +170773677287,213,0 +170773677336,213,0 +170773677384,214,0 +170773677432,214,0 +170773677481,214,0 +170773677529,214,0 +170773677579,214,0 +170773677627,214,0 +170773677675,214,0 +170773677723,214,0 +170773677771,214,0 +170773677820,215,0 +170773677870,214,0 +170773677918,215,0 +170773677967,215,0 +170773678015,215,0 +170773678063,215,0 +170773678111,215,0 +170773678161,214,0 +170773678209,214,0 +170773678256,213,0 +170773678304,214,0 +170773678352,213,0 +170773678400,214,0 +170773678450,214,0 +170773678499,214,0 +170773678547,214,0 +170773678595,214,0 +170773678645,214,0 +170773678693,214,0 +170773678742,214,0 +170773678790,215,0 +170773678838,215,0 +170773678888,214,0 +170773678937,215,0 +170773678985,215,0 +170773679033,215,0 +170773679081,213,0 +170773679131,213,0 +170773679179,214,0 +170773679226,214,0 +170773679274,214,0 +170773679324,214,0 +170773679372,214,0 +170773679421,214,0 +170773679469,214,0 +170773679519,214,0 +170773679567,214,0 +170773679615,214,0 +170773679664,215,0 +170773679712,215,0 +170773679762,215,0 +170773679811,215,0 +170773679859,215,0 +170773679909,215,0 +170773679957,214,0 +170773680005,213,0 +170773680054,214,0 +170773680104,214,0 +170773680152,214,0 +170773680201,214,0 +170773680249,214,0 +170773680299,214,0 +170773680347,214,0 +170773680396,214,0 +170773680444,215,0 +170773680494,215,0 +170773680543,215,0 +170773680591,215,0 +170773680641,215,0 +170773680689,215,0 +170773680738,215,0 +170773680786,215,0 +170773680834,214,0 +170773680883,213,0 +170773680931,213,0 +170773680979,213,0 +170773681027,214,0 +170773681075,214,0 +170773681123,214,0 +170773681171,214,0 +170773681219,214,0 +170773681268,214,0 +170773681316,214,0 +170773681364,215,0 +170773681414,215,0 +170773681462,214,0 +170773681510,215,0 +170773681559,215,0 +170773681607,215,0 +170773681657,215,0 +170773681704,215,0 +170773681754,214,0 +170773681802,213,0 +170773681851,213,0 +170773681899,213,0 +170773681949,214,0 +170773681997,214,0 +170773682046,214,0 +170773682094,214,0 +170773682144,214,0 +170773682192,214,0 +170773682240,214,0 +170773682289,215,0 +170773682337,215,0 +170773682385,214,0 +170773682433,215,0 +170773682481,215,0 +170773682530,215,0 +170773682578,215,0 +170773682626,214,0 +170773682674,213,0 +170773682722,213,0 +170773682770,213,0 +170773682819,213,0 +170773682867,213,0 +170773682915,214,0 +170773682963,214,0 +170773683011,214,0 +170773683059,214,0 +170773683108,215,0 +170773683156,215,0 +170773683205,214,0 +170773683253,214,0 +170773683303,215,0 +170773683351,215,0 +170773683400,215,0 +170773683448,215,0 +170773683496,215,0 +170773683544,213,0 +170773683592,213,0 +170773683640,213,0 +170773683687,213,0 +170773683735,213,0 +170773683783,213,0 +170773683833,214,0 +170773683881,214,0 +170773683929,214,0 +170773683977,214,0 +170773684026,214,0 +170773684076,215,0 +170773684123,215,0 +170773684171,215,0 +170773684219,215,0 +170773684267,215,0 +170773684317,215,0 +170773684366,215,0 +170773684414,214,0 +170773684462,213,0 +170773684512,213,0 +170773684560,213,0 +170773684607,213,0 +170773684657,213,0 +170773684705,213,0 +170773684753,214,0 +170773684801,213,0 +170773684850,214,0 +170773684898,214,0 +170773684946,214,0 +170773684994,214,0 +170773685042,214,0 +170773685090,214,0 +170773685138,214,0 +170773685187,214,0 +170773685235,215,0 +170773685284,215,0 +170773685332,214,0 +170773685380,213,0 +170773685428,213,0 +170773685476,213,0 +170773685526,213,0 +170773685574,213,0 +170773685622,213,0 +170773685670,213,0 +170773685719,214,0 +170773685767,214,0 +170773685815,214,0 +170773685863,214,0 +170773685911,214,0 +170773685959,214,0 +170773686008,214,0 +170773686056,214,0 +170773686104,214,0 +170773686153,215,0 +170773686201,215,0 +170773686249,213,0 +170773686297,213,0 +170773686347,213,0 +170773686395,213,0 +170773686444,213,0 +170773686492,214,0 +170773686540,214,0 +170773686590,214,0 +170773686639,214,0 +170773686687,214,0 +170773686737,214,0 +170773686785,214,0 +170773686833,214,0 +170773686882,214,0 +170773686930,214,0 +170773686980,215,0 +170773687027,215,0 +170773687075,215,0 +170773687125,214,0 +170773687172,213,0 +170773687220,213,0 +170773687268,213,0 +170773687316,213,0 +170773687364,214,0 +170773687412,213,0 +170773687460,213,0 +170773687507,214,0 +170773687555,214,0 +170773687605,214,0 +170773687654,214,0 +170773687702,214,0 +170773687752,214,0 +170773687801,214,0 +170773687849,214,0 +170773687897,215,0 +170773687947,215,0 +170773687996,215,0 +170773688044,213,0 +170773688092,213,0 +170773688141,213,0 +170773688191,214,0 +170773688240,214,0 +170773688290,214,0 +170773688338,214,0 +170773688386,214,0 +170773688434,214,0 +170773688483,214,0 +170773688533,214,0 +170773688582,214,0 +170773688630,214,0 +170773688678,215,0 +170773688726,215,0 +170773688774,215,0 +170773688823,215,0 +170773688873,215,0 +170773688921,214,0 +170773688969,214,0 +170773689017,214,0 +170773689065,214,0 +170773689112,214,0 +170773689160,214,0 +170773689208,214,0 +170773689258,214,0 +170773689305,214,0 +170773689353,215,0 +170773689401,214,0 +170773689449,215,0 +170773689497,215,0 +170773689545,215,0 +170773689594,215,0 +170773689642,215,0 +170773689692,215,0 +170773689741,215,0 +170773689789,215,0 +170773689837,214,0 +170773689886,214,0 +170773689936,214,0 +170773689985,214,0 +170773690033,215,0 +170773690081,215,0 +170773690131,215,0 +170773690179,215,0 +170773690228,215,0 +170773690276,215,0 +170773690324,215,0 +170773690373,215,0 +170773690421,215,0 +170773690471,215,0 +170773690520,215,0 +170773690568,215,0 +170773690616,215,0 +170773690664,215,0 +170773690713,214,0 +170773690763,214,0 +170773690811,214,0 +170773690859,214,0 +170773690908,214,0 +170773690956,214,0 +170773691006,215,0 +170773691055,214,0 +170773691103,215,0 +170773691153,215,0 +170773691202,215,0 +170773691252,215,0 +170773691300,215,0 +170773691348,215,0 +170773691396,216,0 +170773691444,215,0 +170773691492,215,0 +170773691539,215,0 +170773691587,214,0 +170773691637,214,0 +170773691686,214,0 +170773691734,214,0 +170773691784,214,0 +170773691833,214,0 +170773691881,214,0 +170773691929,214,0 +170773691977,215,0 +170773692026,215,0 +170773692074,215,0 +170773692122,215,0 +170773692172,215,0 +170773692220,215,0 +170773692268,215,0 +170773692315,215,0 +170773692365,215,0 +170773692413,215,0 +170773692462,214,0 +170773692512,214,0 +170773692560,214,0 +170773692609,214,0 +170773692659,214,0 +170773692707,214,0 +170773692754,214,0 +170773692804,214,0 +170773692854,215,0 +170773692901,215,0 +170773692951,215,0 +170773692999,214,0 +170773693047,215,0 +170773693095,215,0 +170773693143,215,0 +170773693192,215,0 +170773693240,215,0 +170773693290,214,0 +170773693338,213,0 +170773693386,213,0 +170773693433,214,0 +170773693483,214,0 +170773693531,214,0 +170773693579,214,0 +170773693628,214,0 +170773693676,214,0 +170773693724,214,0 +170773693772,214,0 +170773693821,214,0 +170773693871,215,0 +170773693920,214,0 +170773693968,215,0 +170773694018,214,0 +170773694067,214,0 +170773694115,215,0 +170773694163,214,0 +170773694211,213,0 +170773694259,213,0 +170773694309,214,0 +170773694357,214,0 +170773694404,214,0 +170773694454,214,0 +170773694502,214,0 +170773694550,214,0 +170773694598,214,0 +170773694646,214,0 +170773694694,214,0 +170773694741,214,0 +170773694789,214,0 +170773694837,215,0 +170773694885,215,0 +170773694933,214,0 +170773694981,215,0 +170773695029,213,0 +170773695077,213,0 +170773695126,214,0 +170773695174,214,0 +170773695224,214,0 +170773695272,214,0 +170773695321,214,0 +170773695371,214,0 +170773695419,214,0 +170773695466,214,0 +170773695514,214,0 +170773695562,214,0 +170773695610,215,0 +170773695658,214,0 +170773695706,215,0 +170773695756,214,0 +170773695803,214,0 +170773695851,215,0 +170773695899,214,0 +170773695947,213,0 +170773695995,214,0 +170773696043,214,0 +170773696092,214,0 +170773696142,214,0 +170773696190,214,0 +170773696238,214,0 +170773696285,214,0 +170773696335,215,0 +170773696385,215,0 +170773696432,214,0 +170773696480,215,0 +170773696528,215,0 +170773696578,215,0 +170773696626,215,0 +170773696674,215,0 +170773696721,214,0 +170773696769,214,0 +170773696819,214,0 +170773696867,214,0 +170773696915,214,0 +170773696964,214,0 +170773697012,214,0 +170773697060,214,0 +170773697108,215,0 +170773697156,214,0 +170773697204,215,0 +170773697252,215,0 +170773697300,215,0 +170773697348,215,0 +170773697397,215,0 +170773697445,215,0 +170773697493,215,0 +170773697541,215,0 +170773697591,214,0 +170773697639,213,0 +170773697686,213,0 +170773697734,213,0 +170773697782,214,0 +170773697830,214,0 +170773697878,214,0 +170773697926,214,0 +170773697974,214,0 +170773698022,214,0 +170773698071,214,0 +170773698119,214,0 +170773698167,215,0 +170773698215,215,0 +170773698263,215,0 +170773698311,215,0 +170773698358,215,0 +170773698406,215,0 +170773698454,214,0 +170773698502,213,0 +170773698550,213,0 +170773698598,213,0 +170773698646,213,0 +170773698695,214,0 +170773698743,214,0 +170773698791,214,0 +170773698839,214,0 +170773698887,214,0 +170773698936,214,0 +170773698985,214,0 +170773699033,215,0 +170773699081,215,0 +170773699129,215,0 +170773699177,215,0 +170773699225,215,0 +170773699273,215,0 +170773699320,213,0 +170773699370,213,0 +170773699418,213,0 +170773699465,214,0 +170773699513,214,0 +170773699561,214,0 +170773699611,214,0 +170773699659,214,0 +170773699706,214,0 +170773699754,214,0 +170773699802,214,0 +170773699850,215,0 +170773699898,214,0 +170773699946,215,0 +170773699994,215,0 +170773700042,215,0 +170773700090,215,0 +170773700139,214,0 +170773700189,213,0 +170773700238,213,0 +170773700288,213,0 +170773700336,214,0 +170773700384,214,0 +170773700433,214,0 +170773700483,214,0 +170773700530,214,0 +170773700578,214,0 +170773700626,214,0 +170773700674,215,0 +170773700722,215,0 +170773700770,215,0 +170773700819,215,0 +170773700867,215,0 +170773700916,215,0 +170773700964,215,0 +170773701013,214,0 +170773701061,213,0 +170773701109,213,0 +170773701157,213,0 +170773701207,214,0 +170773701255,213,0 +170773701303,214,0 +170773701351,214,0 +170773701399,214,0 +170773701447,214,0 +170773701496,214,0 +170773701546,214,0 +170773701595,214,0 +170773701645,214,0 +170773701693,215,0 +170773701742,214,0 +170773701792,214,0 +170773701841,214,0 +170773701891,213,0 +170773701939,213,0 +170773701987,213,0 +170773702036,214,0 +170773702086,214,0 +170773702135,214,0 +170773702185,214,0 +170773702234,214,0 +170773702284,214,0 +170773702332,214,0 +170773702381,214,0 +170773702431,215,0 +170773702480,215,0 +170773702530,215,0 +170773702578,215,0 +170773702626,215,0 +170773702674,215,0 +170773702722,214,0 +170773702769,214,0 +170773702819,214,0 +170773702867,214,0 +170773702915,214,0 +170773702963,214,0 +170773703011,214,0 +170773703058,214,0 +170773703106,214,0 +170773703156,214,0 +170773703205,214,0 +170773703253,215,0 +170773703301,214,0 +170773703349,215,0 +170773703399,215,0 +170773703447,215,0 +170773703495,215,0 +170773703544,215,0 +170773703594,214,0 +170773703643,214,0 +170773703693,214,0 +170773703741,214,0 +170773703789,214,0 +170773703838,214,0 +170773703886,214,0 +170773703934,214,0 +170773703982,214,0 +170773704030,215,0 +170773704078,215,0 +170773704125,215,0 +170773704175,215,0 +170773704225,215,0 +170773704274,215,0 +170773704324,215,0 +170773704371,215,0 +170773704419,214,0 +170773704467,214,0 +170773704517,214,0 +170773704565,214,0 +170773704613,214,0 +170773704661,214,0 +170773704708,215,0 +170773704756,215,0 +170773704804,215,0 +170773704854,215,0 +170773704902,215,0 +170773704950,215,0 +170773704999,215,0 +170773705047,215,0 +170773705096,215,0 +170773705144,215,0 +170773705194,215,0 +170773705242,215,0 +170773705290,214,0 +170773705338,214,0 +170773705385,214,0 +170773705433,214,0 +170773705481,214,0 +170773705531,215,0 +170773705579,215,0 +170773705628,214,0 +170773705678,215,0 +170773705726,215,0 +170773705775,215,0 +170773705823,215,0 +170773705871,215,0 +170773705919,215,0 +170773705969,215,0 +170773706017,215,0 +170773706066,215,0 +170773706114,215,0 +170773706162,214,0 +170773706210,214,0 +170773706259,214,0 +170773706307,214,0 +170773706355,214,0 +170773706403,214,0 +170773706453,214,0 +170773706501,214,0 +170773706549,215,0 +170773706597,214,0 +170773706646,215,0 +170773706694,215,0 +170773706742,215,0 +170773706790,215,0 +170773706838,215,0 +170773706886,215,0 +170773706934,215,0 +170773706982,214,0 +170773707031,214,0 +170773707079,214,0 +170773707129,214,0 +170773707178,214,0 +170773707228,214,0 +170773707276,215,0 +170773707324,215,0 +170773707372,215,0 +170773707420,215,0 +170773707468,215,0 +170773707517,215,0 +170773707567,215,0 +170773707616,215,0 +170773707664,215,0 +170773707714,215,0 +170773707763,215,0 +170773707811,215,0 +170773707859,214,0 +170773707909,214,0 +170773707958,214,0 +170773708008,214,0 +170773708056,214,0 +170773708105,214,0 +170773708153,214,0 +170773708202,214,0 +170773708252,215,0 +170773708301,214,0 +170773708349,215,0 +170773708397,215,0 +170773708445,215,0 +170773708493,215,0 +170773708541,215,0 +170773708589,215,0 +170773708637,215,0 +170773708685,214,0 +170773708733,213,0 +170773708781,213,0 +170773708829,213,0 +170773708876,214,0 +170773708924,214,0 +170773708972,214,0 +170773709022,214,0 +170773709070,214,0 +170773709118,214,0 +170773709166,214,0 +170773709215,214,0 +170773709263,214,0 +170773709313,215,0 +170773709362,215,0 +170773709410,215,0 +170773709458,215,0 +170773709506,215,0 +170773709555,214,0 +170773709605,213,0 +170773709654,213,0 +170773709702,214,0 +170773709752,214,0 +170773709801,214,0 +170773709849,214,0 +170773709897,214,0 +170773709945,214,0 +170773709994,214,0 +170773710044,214,0 +170773710093,214,0 +170773710143,215,0 +170773710192,215,0 +170773710240,215,0 +170773710288,215,0 +170773710338,215,0 +170773710386,215,0 +170773710434,213,0 +170773710483,214,0 +170773710533,213,0 +170773710580,213,0 +170773710630,214,0 +170773710678,214,0 +170773710726,214,0 +170773710773,214,0 +170773710821,214,0 +170773710869,214,0 +170773710917,215,0 +170773710965,214,0 +170773711013,215,0 +170773711062,215,0 +170773711110,215,0 +170773711158,215,0 +170773711206,215,0 +170773711255,215,0 +170773711303,213,0 +170773711352,213,0 +170773711400,214,0 +170773711448,214,0 +170773711496,214,0 +170773711544,214,0 +170773711591,214,0 +170773711639,214,0 +170773711687,214,0 +170773711737,214,0 +170773711784,214,0 +170773711832,215,0 +170773711880,215,0 +170773711928,215,0 +170773711977,215,0 +170773712025,215,0 +170773712073,215,0 +170773712121,214,0 +170773712168,214,0 +170773712216,214,0 +170773712264,214,0 +170773712312,214,0 +170773712360,214,0 +170773712409,214,0 +170773712457,214,0 +170773712505,214,0 +170773712552,214,0 +170773712600,214,0 +170773712648,214,0 +170773712696,214,0 +170773712744,215,0 +170773712792,214,0 +170773712840,215,0 +170773712887,215,0 +170773712937,215,0 +170773712985,214,0 +170773713033,213,0 +170773713081,213,0 +170773713129,214,0 +170773713177,214,0 +170773713225,214,0 +170773713273,214,0 +170773713320,214,0 +170773713368,214,0 +170773713416,214,0 +170773713464,214,0 +170773713512,214,0 +170773713562,215,0 +170773713610,215,0 +170773713657,215,0 +170773713705,215,0 +170773713753,215,0 +170773713803,215,0 +170773713850,214,0 +170773713898,213,0 +170773713946,213,0 +170773713994,214,0 +170773714042,214,0 +170773714092,214,0 +170773714141,214,0 +170773714190,214,0 +170773714238,214,0 +170773714286,215,0 +170773714334,214,0 +170773714382,215,0 +170773714430,215,0 +170773714478,215,0 +170773714527,215,0 +170773714575,215,0 +170773714623,215,0 +170773714671,215,0 +170773714719,214,0 +170773714767,214,0 +170773714815,214,0 +170773714863,214,0 +170773714911,214,0 +170773714958,214,0 +170773715008,214,0 +170773715056,214,0 +170773715104,214,0 +170773715152,214,0 +170773715200,214,0 +170773715249,214,0 +170773715299,215,0 +170773715347,215,0 +170773715395,215,0 +170773715444,215,0 +170773715494,214,0 +170773715543,214,0 +170773715591,214,0 +170773715639,213,0 +170773715687,214,0 +170773715734,214,0 +170773715784,214,0 +170773715832,214,0 +170773715881,214,0 +170773715929,214,0 +170773715977,214,0 +170773716024,214,0 +170773716072,214,0 +170773716120,215,0 +170773716170,214,0 +170773716217,215,0 +170773716265,215,0 +170773716313,215,0 +170773716361,215,0 +170773716409,214,0 +170773716457,214,0 +170773716506,214,0 +170773716554,214,0 +170773716603,214,0 +170773716651,214,0 +170773716699,214,0 +170773716747,214,0 +170773716795,214,0 +170773716843,215,0 +170773716892,215,0 +170773716940,215,0 +170773716988,215,0 +170773717036,215,0 +170773717084,215,0 +170773717132,215,0 +170773717179,215,0 +170773717227,215,0 +170773717275,214,0 +170773717323,214,0 +170773717371,214,0 +170773717421,214,0 +170773717469,214,0 +170773717516,214,0 +170773717564,214,0 +170773717614,214,0 +170773717662,214,0 +170773717710,215,0 +170773717759,214,0 +170773717807,215,0 +170773717857,215,0 +170773717905,215,0 +170773717952,215,0 +170773718002,215,0 +170773718050,215,0 +170773718099,214,0 +170773718147,214,0 +170773718197,214,0 +170773718244,214,0 +170773718292,214,0 +170773718340,214,0 +170773718390,214,0 +170773718438,214,0 +170773718486,214,0 +170773718535,214,0 +170773718583,215,0 +170773718631,215,0 +170773718680,215,0 +170773718728,215,0 +170773718778,215,0 +170773718827,215,0 +170773718875,215,0 +170773718923,215,0 +170773718971,214,0 +170773719019,214,0 +170773719067,214,0 +170773719115,214,0 +170773719163,215,0 +170773719211,214,0 +170773719259,215,0 +170773719308,215,0 +170773719356,215,0 +170773719404,215,0 +170773719452,215,0 +170773719500,215,0 +170773719548,215,0 +170773719596,215,0 +170773719645,215,0 +170773719695,215,0 +170773719743,215,0 +170773719792,215,0 +170773719842,214,0 +170773719890,214,0 +170773719938,214,0 +170773719986,214,0 +170773720034,214,0 +170773720083,215,0 +170773720133,214,0 +170773720181,215,0 +170773720229,215,0 +170773720278,215,0 +170773720328,215,0 +170773720375,215,0 +170773720425,215,0 +170773720474,215,0 +170773720522,215,0 +170773720572,215,0 +170773720621,215,0 +170773720669,214,0 +170773720717,214,0 +170773720767,214,0 +170773720815,214,0 +170773720863,214,0 +170773720911,214,0 +170773720960,215,0 +170773721010,215,0 +170773721057,215,0 +170773721107,215,0 +170773721155,215,0 +170773721204,215,0 +170773721254,215,0 +170773721302,215,0 +170773721350,215,0 +170773721399,215,0 +170773721447,215,0 +170773721497,215,0 +170773721546,214,0 +170773721594,214,0 +170773721644,214,0 +170773721693,214,0 +170773721741,214,0 +170773721789,214,0 +170773721837,214,0 +170773721887,214,0 +170773721936,215,0 +170773721984,215,0 +170773722034,215,0 +170773722083,215,0 +170773722133,215,0 +170773722182,215,0 +170773722232,215,0 +170773722281,215,0 +170773722329,215,0 +170773722378,214,0 +170773722428,213,0 +170773722476,213,0 +170773722524,214,0 +170773722572,214,0 +170773722620,214,0 +170773722668,214,0 +170773722716,214,0 +170773722765,214,0 +170773722813,214,0 +170773722861,215,0 +170773722909,215,0 +170773722958,215,0 +170773723008,215,0 +170773723056,215,0 +170773723104,215,0 +170773723152,215,0 +170773723200,215,0 +170773723249,214,0 +170773723297,214,0 +170773723347,214,0 +170773723394,214,0 +170773723444,214,0 +170773723492,214,0 +170773723541,215,0 +170773723591,214,0 +170773723639,214,0 +170773723688,214,0 +170773723736,215,0 +170773723786,215,0 +170773723834,215,0 +170773723882,215,0 +170773723929,215,0 +170773723977,215,0 +170773724025,215,0 +170773724075,215,0 +170773724123,214,0 +170773724171,214,0 +170773724218,214,0 +170773724266,214,0 +170773724316,214,0 +170773724364,214,0 +170773724412,214,0 +170773724460,214,0 +170773724507,214,0 +170773724555,214,0 +170773724605,215,0 +170773724653,215,0 +170773724702,215,0 +170773724752,215,0 +170773724801,215,0 +170773724849,215,0 +170773724897,215,0 +170773724945,214,0 +170773724993,213,0 +170773725042,213,0 +170773725092,214,0 +170773725142,214,0 +170773725189,214,0 +170773725239,214,0 +170773725287,214,0 +170773725336,214,0 +170773725386,214,0 +170773725434,214,0 +170773725483,214,0 +170773725531,215,0 +170773725579,215,0 +170773725627,215,0 +170773725675,215,0 +170773725723,215,0 +170773725772,215,0 +170773725822,213,0 +170773725870,213,0 +170773725918,214,0 +170773725966,214,0 +170773726015,214,0 +170773726065,214,0 +170773726113,214,0 +170773726161,214,0 +170773726210,214,0 +170773726258,214,0 +170773726308,214,0 +170773726357,214,0 +170773726407,214,0 +170773726455,215,0 +170773726503,215,0 +170773726551,215,0 +170773726600,215,0 +170773726648,214,0 +170773726696,213,0 +170773726745,214,0 +170773726793,214,0 +170773726841,214,0 +170773726889,214,0 +170773726938,214,0 +170773726988,214,0 +170773727038,214,0 +170773727087,214,0 +170773727135,215,0 +170773727183,215,0 +170773727231,215,0 +170773727279,215,0 +170773727328,215,0 +170773727376,215,0 +170773727426,215,0 +170773727473,215,0 +170773727521,214,0 +170773727569,214,0 +170773727619,214,0 +170773727668,214,0 +170773727718,214,0 +170773727767,215,0 +170773727815,215,0 +170773727865,215,0 +170773727913,215,0 +170773727961,215,0 +170773728009,215,0 +170773728058,215,0 +170773728106,215,0 +170773728155,215,0 +170773728203,215,0 +170773728251,215,0 +170773728299,215,0 +170773728349,214,0 +170773728397,214,0 +170773728446,214,0 +170773728496,214,0 +170773728544,214,0 +170773728592,214,0 +170773728639,215,0 +170773728687,215,0 +170773728735,215,0 +170773728783,215,0 +170773728831,215,0 +170773728879,215,0 +170773728929,215,0 +170773728976,215,0 +170773729024,215,0 +170773729074,215,0 +170773729122,215,0 +170773729171,215,0 +170773729219,214,0 +170773729268,214,0 +170773729316,214,0 +170773729364,214,0 +170773729412,214,0 +170773729460,214,0 +170773729508,214,0 +170773729556,214,0 +170773729604,215,0 +170773729651,215,0 +170773729699,215,0 +170773729747,215,0 +170773729795,215,0 +170773729844,215,0 +170773729892,215,0 +170773729940,215,0 +170773729988,215,0 +170773730037,215,0 +170773730085,214,0 +170773730135,214,0 +170773730184,214,0 +170773730232,214,0 +170773730281,214,0 +170773730329,214,0 +170773730377,214,0 +170773730425,215,0 +170773730473,214,0 +170773730521,215,0 +170773730568,215,0 +170773730616,215,0 +170773730664,215,0 +170773730712,215,0 +170773730761,215,0 +170773730809,215,0 +170773730857,215,0 +170773730905,214,0 +170773730953,213,0 +170773731001,213,0 +170773731049,213,0 +170773731097,214,0 +170773731146,214,0 +170773731196,214,0 +170773731244,214,0 +170773731291,214,0 +170773731339,214,0 +170773731387,214,0 +170773731435,215,0 +170773731485,215,0 +170773731533,215,0 +170773731582,215,0 +170773731632,215,0 +170773731679,215,0 +170773731727,215,0 +170773731775,214,0 +170773731824,213,0 +170773731871,213,0 +170773731919,214,0 +170773731967,214,0 +170773732015,214,0 +170773732063,214,0 +170773732111,214,0 +170773732160,214,0 +170773732208,214,0 +170773732256,214,0 +170773732304,214,0 +170773732352,214,0 +170773732399,214,0 +170773732447,215,0 +170773732495,214,0 +170773732543,214,0 +170773732592,215,0 +170773732640,214,0 +170773732688,213,0 +170773732736,213,0 +170773732784,213,0 +170773732833,214,0 +170773732881,213,0 +170773732929,214,0 +170773732977,213,0 +170773733027,214,0 +170773733075,214,0 +170773733123,214,0 +170773733171,214,0 +170773733219,214,0 +170773733267,214,0 +170773733314,214,0 +170773733362,214,0 +170773733410,215,0 +170773733460,214,0 +170773733508,213,0 +170773733555,213,0 +170773733605,213,0 +170773733654,213,0 +170773733702,213,0 +170773733752,214,0 +170773733800,214,0 +170773733849,214,0 +170773733897,214,0 +170773733945,214,0 +170773733993,214,0 +170773734041,214,0 +170773734089,214,0 +170773734137,215,0 +170773734185,215,0 +170773734233,215,0 +170773734282,215,0 +170773734330,214,0 +170773734379,213,0 +170773734429,213,0 +170773734477,213,0 +170773734525,214,0 +170773734573,214,0 +170773734621,214,0 +170773734669,214,0 +170773734717,214,0 +170773734764,214,0 +170773734812,214,0 +170773734860,214,0 +170773734908,214,0 +170773734956,215,0 +170773735004,215,0 +170773735052,215,0 +170773735101,215,0 +170773735149,215,0 +170773735197,214,0 +170773735247,214,0 +170773735295,214,0 +170773735343,214,0 +170773735391,214,0 +170773735438,214,0 +170773735488,215,0 +170773735536,215,0 +170773735584,215,0 +170773735632,215,0 +170773735681,215,0 +170773735731,215,0 +170773735780,215,0 +170773735830,215,0 +170773735878,215,0 +170773735925,215,0 +170773735973,215,0 +170773736021,215,0 +170773736071,214,0 +170773736119,214,0 +170773736167,214,0 +170773736214,214,0 +170773736264,214,0 +170773736312,214,0 +170773736360,214,0 +170773736408,214,0 +170773736457,215,0 +170773736507,215,0 +170773736555,215,0 +170773736603,215,0 +170773736651,215,0 +170773736698,215,0 +170773736746,215,0 +170773736794,215,0 +170773736844,215,0 +170773736891,214,0 +170773736939,214,0 +170773736987,214,0 +170773737035,214,0 +170773737083,214,0 +170773737131,214,0 +170773737179,214,0 +170773737226,215,0 +170773737274,215,0 +170773737322,215,0 +170773737370,215,0 +170773737418,215,0 +170773737466,215,0 +170773737513,215,0 +170773737563,215,0 +170773737613,215,0 +170773737662,215,0 +170773737710,215,0 +170773737759,214,0 +170773737807,214,0 +170773737857,214,0 +170773737905,214,0 +170773737954,214,0 +170773738004,215,0 +170773738052,215,0 +170773738100,215,0 +170773738149,215,0 +170773738199,215,0 +170773738248,215,0 +170773738296,215,0 +170773738346,215,0 +170773738394,215,0 +170773738441,215,0 +170773738489,215,0 +170773738537,215,0 +170773738585,215,0 +170773738635,214,0 +170773738684,214,0 +170773738732,214,0 +170773738780,214,0 +170773738828,214,0 +170773738877,215,0 +170773738925,214,0 +170773738973,215,0 +170773739021,215,0 +170773739069,215,0 +170773739119,215,0 +170773739168,215,0 +170773739218,215,0 +170773739267,215,0 +170773739315,215,0 +170773739365,215,0 +170773739414,215,0 +170773739462,214,0 +170773739510,214,0 +170773739560,214,0 +170773739609,214,0 +170773739657,214,0 +170773739705,215,0 +170773739753,214,0 +170773739801,214,0 +170773739851,214,0 +170773739900,215,0 +170773739948,215,0 +170773739996,215,0 +170773740044,215,0 +170773740092,215,0 +170773740139,215,0 +170773740187,215,0 +170773740237,215,0 +170773740286,215,0 +170773740334,214,0 +170773740384,214,0 +170773740431,214,0 +170773740481,214,0 +170773740529,214,0 +170773740577,214,0 +170773740625,214,0 +170773740674,215,0 +170773740722,215,0 +170773740772,215,0 +170773740819,215,0 +170773740869,215,0 +170773740918,215,0 +170773740966,215,0 +170773741014,215,0 +170773741064,215,0 +170773741113,215,0 +170773741161,214,0 +170773741211,214,0 +170773741259,214,0 +170773741307,214,0 +170773741355,214,0 +170773741402,214,0 +170773741450,214,0 +170773741498,215,0 +170773741546,215,0 +170773741594,215,0 +170773741642,215,0 +170773741690,215,0 +170773741738,215,0 +170773741786,215,0 +170773741834,215,0 +170773741882,215,0 +170773741931,216,0 +170773741981,215,0 +170773742029,214,0 +170773742077,214,0 +170773742125,214,0 +170773742174,214,0 +170773742224,214,0 +170773742272,214,0 +170773742319,214,0 +170773742367,214,0 +170773742415,214,0 +170773742463,215,0 +170773742513,215,0 +170773742563,215,0 +170773742611,215,0 +170773742658,215,0 +170773742706,215,0 +170773742756,215,0 +170773742805,215,0 +170773742853,214,0 +170773742901,214,0 +170773742949,214,0 +170773742997,214,0 +170773743045,214,0 +170773743094,214,0 +170773743144,214,0 +170773743192,215,0 +170773743241,214,0 +170773743291,214,0 +170773743340,214,0 +170773743388,215,0 +170773743438,215,0 +170773743486,215,0 +170773743535,215,0 +170773743585,215,0 +170773743633,215,0 +170773743680,215,0 +170773743728,214,0 +170773743778,214,0 +170773743827,214,0 +170773743875,214,0 +170773743923,214,0 +170773743971,214,0 +170773744021,214,0 +170773744070,214,0 +170773744118,214,0 +170773744166,215,0 +170773744216,215,0 +170773744264,215,0 +170773744312,215,0 +170773744360,215,0 +170773744408,215,0 +170773744456,215,0 +170773744505,215,0 +170773744553,214,0 +170773744601,214,0 +170773744649,214,0 +170773744697,214,0 +170773744745,214,0 +170773744793,214,0 +170773744842,214,0 +170773744890,214,0 +170773744938,214,0 +170773744986,215,0 +170773745035,215,0 +170773745083,215,0 +170773745131,215,0 +170773745179,215,0 +170773745229,215,0 +170773745276,215,0 +170773745324,215,0 +170773745372,215,0 +170773745420,214,0 +170773745468,213,0 +170773745516,214,0 +170773745564,214,0 +170773745612,214,0 +170773745660,214,0 +170773745709,214,0 +170773745759,214,0 +170773745808,214,0 +170773745856,215,0 +170773745904,215,0 +170773745952,214,0 +170773746000,215,0 +170773746050,215,0 +170773746099,215,0 +170773746147,214,0 +170773746197,215,0 +170773746245,215,0 +170773746294,213,0 +170773746342,213,0 +170773746390,213,0 +170773746439,213,0 +170773746487,214,0 +170773746537,214,0 +170773746585,214,0 +170773746634,214,0 +170773746682,214,0 +170773746732,214,0 +170773746781,214,0 +170773746831,214,0 +170773746879,214,0 +170773746928,214,0 +170773746976,214,0 +170773747024,214,0 +170773747072,215,0 +170773747122,214,0 +170773747171,213,0 +170773747221,213,0 +170773747268,213,0 +170773747316,213,0 +170773747364,213,0 +170773747412,214,0 +170773747462,214,0 +170773747511,214,0 +170773747561,214,0 +170773747610,214,0 +170773747660,214,0 +170773747707,214,0 +170773747755,214,0 +170773747805,214,0 +170773747854,214,0 +170773747904,215,0 +170773747953,215,0 +170773748001,213,0 +170773748051,213,0 +170773748100,213,0 +170773748148,213,0 +170773748196,213,0 +170773748244,213,0 +170773748292,214,0 +170773748340,213,0 +170773748390,214,0 +170773748438,214,0 +170773748485,214,0 +170773748533,214,0 +170773748581,214,0 +170773748631,214,0 +170773748679,214,0 +170773748727,214,0 +170773748776,215,0 +170773748826,214,0 +170773748874,213,0 +170773748921,213,0 +170773748969,214,0 +170773749019,214,0 +170773749067,214,0 +170773749116,214,0 +170773749164,214,0 +170773749214,214,0 +170773749262,214,0 +170773749311,215,0 +170773749360,215,0 +170773749410,215,0 +170773749459,215,0 +170773749509,215,0 +170773749558,215,0 +170773749606,215,0 +170773749656,215,0 +170773749704,213,0 +170773749753,214,0 +170773749803,214,0 +170773749852,214,0 +170773749900,214,0 +170773749950,214,0 +170773749998,214,0 +170773750046,214,0 +170773750095,214,0 +170773750143,215,0 +170773750191,214,0 +170773750239,215,0 +170773750288,215,0 +170773750336,215,0 +170773750386,215,0 +170773750434,215,0 +170773750482,215,0 +170773750531,214,0 +170773750579,214,0 +170773750627,214,0 +170773750675,214,0 +170773750723,214,0 +170773750772,214,0 +170773750822,214,0 +170773750870,214,0 +170773750918,214,0 +170773750966,214,0 +170773751014,214,0 +170773751062,215,0 +170773751110,215,0 +170773751159,215,0 +170773751209,215,0 +170773751257,215,0 +170773751305,215,0 +170773751352,215,0 +170773751400,214,0 +170773751450,214,0 +170773751498,214,0 +170773751546,214,0 +170773751593,214,0 +170773751643,214,0 +170773751693,214,0 +170773751740,215,0 +170773751788,215,0 +170773751838,215,0 +170773751887,215,0 +170773751935,215,0 +170773751985,215,0 +170773752034,215,0 +170773752084,215,0 +170773752132,215,0 +170773752180,215,0 +170773752229,215,0 +170773752277,214,0 +170773752325,215,0 +170773752373,215,0 +170773752422,215,0 +170773752470,215,0 +170773752518,215,0 +170773752568,215,0 +170773752617,215,0 +170773752667,215,0 +170773752715,215,0 +170773752764,215,0 +170773752814,215,0 +170773752863,215,0 +170773752913,215,0 +170773752961,215,0 +170773753010,215,0 +170773753058,215,0 +170773753108,215,0 +170773753156,215,0 +170773753204,215,0 +170773753252,215,0 +170773753300,215,0 +170773753349,215,0 +170773753397,215,0 +170773753445,215,0 +170773753492,215,0 +170773753540,215,0 +170773753590,215,0 +170773753638,215,0 +170773753687,215,0 +170773753737,215,0 +170773753785,215,0 +170773753833,215,0 +170773753881,215,0 +170773753929,215,0 +170773753976,214,0 +170773754024,214,0 +170773754072,214,0 +170773754120,214,0 +170773754170,214,0 +170773754219,214,0 +170773754269,214,0 +170773754317,215,0 +170773754365,215,0 +170773754412,215,0 +170773754460,215,0 +170773754508,215,0 +170773754556,215,0 +170773754604,215,0 +170773754652,215,0 +170773754700,215,0 +170773754748,215,0 +170773754796,214,0 +170773754844,214,0 +170773754891,214,0 +170773754939,214,0 +170773754987,214,0 +170773755035,214,0 +170773755083,214,0 +170773755131,214,0 +170773755179,215,0 +170773755228,215,0 +170773755276,215,0 +170773755326,215,0 +170773755375,215,0 +170773755423,215,0 +170773755471,215,0 +170773755519,217,0 +170773755567,215,0 +170773755616,215,0 +170773755664,214,0 +170773755712,214,0 +170773755761,214,0 +170773755811,214,0 +170773755859,214,0 +170773755908,214,0 +170773755956,214,0 +170773756005,215,0 +170773756055,214,0 +170773756103,215,0 +170773756152,215,0 +170773756202,215,0 +170773756251,215,0 +170773756299,215,0 +170773756347,215,0 +170773756397,215,0 +170773756445,215,0 +170773756492,214,0 +170773756540,214,0 +170773756588,214,0 +170773756638,214,0 +170773756686,214,0 +170773756734,214,0 +170773756782,214,0 +170773756829,214,0 +170773756879,214,0 +170773756927,214,0 +170773756975,215,0 +170773757023,215,0 +170773757072,215,0 +170773757120,215,0 +170773757168,215,0 +170773757217,215,0 +170773757267,215,0 +170773757315,215,0 +170773757363,214,0 +170773757410,214,0 +170773757458,214,0 +170773757506,214,0 +170773757554,214,0 +170773757602,214,0 +170773757652,214,0 +170773757700,214,0 +170773757747,214,0 +170773757795,214,0 +170773757843,215,0 +170773757891,215,0 +170773757939,215,0 +170773757989,215,0 +170773758038,215,0 +170773758088,215,0 +170773758137,215,0 +170773758187,215,0 +170773758235,214,0 +170773758284,213,0 +170773758332,213,0 +170773758382,213,0 +170773758430,214,0 +170773758478,214,0 +170773758525,214,0 +170773758573,214,0 +170773758621,214,0 +170773758669,214,0 +170773758719,214,0 +170773758767,215,0 +170773758815,214,0 +170773758864,215,0 +170773758912,215,0 +170773758962,215,0 +170773759011,215,0 +170773759061,214,0 +170773759108,213,0 +170773759156,213,0 +170773759204,213,0 +170773759252,214,0 +170773759300,214,0 +170773759348,214,0 +170773759396,214,0 +170773759444,214,0 +170773759494,214,0 +170773759543,214,0 +170773759593,214,0 +170773759641,214,0 +170773759690,215,0 +170773759738,214,0 +170773759786,214,0 +170773759834,214,0 +170773759883,215,0 +170773759933,213,0 +170773759981,213,0 +170773760029,213,0 +170773760078,213,0 +170773760128,213,0 +170773760176,213,0 +170773760225,213,0 +170773760273,213,0 +170773760323,213,0 +170773760371,213,0 +170773760418,213,0 +170773760466,213,0 +170773760514,214,0 +170773760564,213,0 +170773760613,214,0 +170773760661,214,0 +170773760709,214,0 +170773760757,215,0 +170773760807,213,0 +170773760854,213,0 +170773760904,213,0 +170773760952,213,0 +170773761000,213,0 +170773761048,214,0 +170773761096,214,0 +170773761144,213,0 +170773761193,214,0 +170773761241,214,0 +170773761289,214,0 +170773761337,214,0 +170773761385,214,0 +170773761433,214,0 +170773761481,214,0 +170773761529,214,0 +170773761577,215,0 +170773761624,214,0 +170773761674,213,0 +170773761723,213,0 +170773761771,213,0 +170773761819,214,0 +170773761869,214,0 +170773761917,214,0 +170773761965,214,0 +170773762015,214,0 +170773762064,214,0 +170773762112,214,0 +170773762162,214,0 +170773762211,214,0 +170773762259,215,0 +170773762307,214,0 +170773762355,214,0 +170773762403,215,0 +170773762451,215,0 +170773762499,215,0 +170773762547,215,0 +170773762596,215,0 +170773762646,215,0 +170773762693,215,0 +170773762743,215,0 +170773762793,215,0 +170773762840,215,0 +170773762888,214,0 +170773762936,213,0 +170773762984,214,0 +170773763034,214,0 +170773763082,214,0 +170773763130,214,0 +170773763179,214,0 +170773763227,214,0 +170773763275,214,0 +170773763324,214,0 +170773763374,214,0 +170773763424,215,0 +170773763473,215,0 +170773763521,215,0 +170773763569,215,0 +170773763617,215,0 +170773763665,215,0 +170773763713,215,0 +170773763762,214,0 +170773763810,214,0 +170773763859,214,0 +170773763907,214,0 +170773763955,214,0 +170773764003,215,0 +170773764052,215,0 +170773764100,215,0 +170773764148,215,0 +170773764196,215,0 +170773764244,215,0 +170773764294,215,0 +170773764341,215,0 +170773764389,215,0 +170773764437,215,0 +170773764485,215,0 +170773764533,215,0 +170773764581,215,0 +170773764630,214,0 +170773764678,215,0 +170773764728,215,0 +170773764776,215,0 +170773764823,215,0 +170773764873,215,0 +170773764921,215,0 +170773764969,215,0 +170773765017,215,0 +170773765065,215,0 +170773765114,215,0 +170773765162,215,0 +170773765210,215,0 +170773765258,215,0 +170773765306,215,0 +170773765354,215,0 +170773765401,215,0 +170773765449,214,0 +170773765497,215,0 +170773765547,214,0 +170773765595,214,0 +170773765642,215,0 +170773765690,215,0 +170773765738,215,0 +170773765788,215,0 +170773765835,215,0 +170773765883,215,0 +170773765933,215,0 +170773765982,215,0 +170773766030,215,0 +170773766078,215,0 +170773766126,215,0 +170773766174,215,0 +170773766221,215,0 +170773766269,215,0 +170773766317,214,0 +170773766365,214,0 +170773766413,214,0 +170773766461,214,0 +170773766508,214,0 +170773766556,214,0 +170773766606,214,0 +170773766655,215,0 +170773766703,215,0 +170773766751,215,0 +170773766799,215,0 +170773766847,215,0 +170773766896,215,0 +170773766944,215,0 +170773766992,215,0 +170773767041,215,0 +170773767089,215,0 +170773767137,214,0 +170773767185,214,0 +170773767235,214,0 +170773767283,214,0 +170773767331,214,0 +170773767380,215,0 +170773767430,215,0 +170773767478,215,0 +170773767525,215,0 +170773767575,215,0 +170773767625,215,0 +170773767674,215,0 +170773767723,215,0 +170773767771,215,0 +170773767821,215,0 +170773767870,215,0 +170773767920,215,0 +170773767968,215,0 +170773768016,214,0 +170773768064,213,0 +170773768112,214,0 +170773768161,214,0 +170773768209,214,0 +170773768257,214,0 +170773768305,214,0 +170773768354,214,0 +170773768404,214,0 +170773768453,214,0 +170773768501,215,0 +170773768551,215,0 +170773768599,215,0 +170773768648,215,0 +170773768696,215,0 +170773768745,215,0 +170773768793,215,0 +170773768843,215,0 +170773768891,213,0 +170773768940,213,0 +170773768988,213,0 +170773769038,214,0 +170773769087,214,0 +170773769135,214,0 +170773769183,214,0 +170773769231,214,0 +170773769279,214,0 +170773769329,214,0 +170773769378,214,0 +170773769426,214,0 +170773769474,215,0 +170773769523,215,0 +170773769571,215,0 +170773769619,215,0 +170773769667,215,0 +170773769717,214,0 +170773769766,213,0 +170773769814,214,0 +170773769864,214,0 +170773769912,214,0 +170773769961,214,0 +170773770009,214,0 +170773770058,214,0 +170773770108,214,0 +170773770157,214,0 +170773770205,214,0 +170773770253,214,0 +170773770301,215,0 +170773770349,215,0 +170773770397,215,0 +170773770445,215,0 +170773770493,215,0 +170773770541,215,0 +170773770589,213,0 +170773770638,213,0 +170773770686,214,0 +170773770736,214,0 +170773770785,214,0 +170773770833,214,0 +170773770881,214,0 +170773770930,214,0 +170773770978,214,0 +170773771026,214,0 +170773771074,215,0 +170773771122,214,0 +170773771170,215,0 +170773771218,215,0 +170773771266,215,0 +170773771315,215,0 +170773771363,215,0 +170773771413,214,0 +170773771461,213,0 +170773771509,213,0 +170773771558,213,0 +170773771606,214,0 +170773771654,214,0 +170773771702,214,0 +170773771751,214,0 +170773771801,214,0 +170773771849,214,0 +170773771898,214,0 +170773771946,214,0 +170773771994,215,0 +170773772044,214,0 +170773772092,215,0 +170773772140,215,0 +170773772187,215,0 +170773772237,215,0 +170773772286,213,0 +170773772334,213,0 +170773772382,213,0 +170773772432,214,0 +170773772480,213,0 +170773772528,214,0 +170773772576,214,0 +170773772625,214,0 +170773772673,214,0 +170773772723,214,0 +170773772771,215,0 +170773772820,214,0 +170773772868,215,0 +170773772916,215,0 +170773772964,215,0 +170773773014,215,0 +170773773062,215,0 +170773773111,213,0 +170773773159,214,0 +170773773208,214,0 +170773773258,214,0 +170773773306,214,0 +170773773354,214,0 +170773773402,214,0 +170773773450,214,0 +170773773499,214,0 +170773773549,214,0 +170773773597,214,0 +170773773645,214,0 +170773773692,215,0 +170773773742,215,0 +170773773790,215,0 +170773773838,215,0 +170773773886,215,0 +170773773935,213,0 +170773773985,213,0 +170773774033,214,0 +170773774082,214,0 +170773774132,214,0 +170773774180,214,0 +170773774228,214,0 +170773774276,214,0 +170773774324,214,0 +170773774371,214,0 +170773774419,214,0 +170773774467,214,0 +170773774517,215,0 +170773774566,215,0 +170773774614,215,0 +170773774663,215,0 +170773774711,215,0 +170773774759,213,0 +170773774807,213,0 +170773774855,213,0 +170773774903,214,0 +170773774952,214,0 +170773775000,214,0 +170773775048,214,0 +170773775098,214,0 +170773775147,214,0 +170773775197,214,0 +170773775245,214,0 +170773775293,214,0 +170773775342,214,0 +170773775390,215,0 +170773775438,215,0 +170773775486,215,0 +170773775535,215,0 +170773775585,214,0 +170773775633,214,0 +170773775681,214,0 +170773775730,214,0 +170773775778,214,0 +170773775828,214,0 +170773775875,214,0 +170773775925,215,0 +170773775974,215,0 +170773776024,215,0 +170773776074,215,0 +170773776121,215,0 +170773776169,215,0 +170773776217,215,0 +170773776265,215,0 +170773776313,215,0 +170773776361,215,0 +170773776409,214,0 +170773776457,214,0 +170773776505,214,0 +170773776554,214,0 +170773776602,214,0 +170773776652,214,0 +170773776700,214,0 +170773776747,214,0 +170773776795,215,0 +170773776843,215,0 +170773776891,215,0 +170773776939,215,0 +170773776987,215,0 +170773777035,215,0 +170773777083,215,0 +170773777132,215,0 +170773777180,215,0 +170773777228,214,0 +170773777276,214,0 +170773777324,214,0 +170773777372,214,0 +170773777421,215,0 +170773777469,215,0 +170773777517,215,0 +170773777566,215,0 +170773777616,215,0 +170773777664,215,0 +170773777711,215,0 +170773777759,215,0 +170773777809,215,0 +170773777856,215,0 +170773777904,215,0 +170773777954,215,0 +170773778002,215,0 +170773778049,214,0 +170773778097,214,0 +170773778145,214,0 +170773778195,214,0 +170773778242,214,0 +170773778290,214,0 +170773778338,215,0 +170773778386,215,0 +170773778434,215,0 +170773778482,215,0 +170773778531,215,0 +170773778579,215,0 +170773778627,215,0 +170773778675,215,0 +170773778723,215,0 +170773778770,215,0 +170773778818,215,0 +170773778868,215,0 +170773778916,214,0 +170773778963,214,0 +170773779011,214,0 +170773779061,214,0 +170773779109,214,0 +170773779157,214,0 +170773779206,214,0 +170773779254,215,0 +170773779302,215,0 +170773779350,215,0 +170773779398,215,0 +170773779446,215,0 +170773779494,215,0 +170773779542,215,0 +170773779590,215,0 +170773779638,215,0 +170773779686,215,0 +170773779735,214,0 +170773779785,214,0 +170773779833,214,0 +170773779881,215,0 +170773779928,214,0 +170773779976,215,0 +170773780024,215,0 +170773780072,214,0 +170773780122,215,0 +170773780170,215,0 +170773780218,215,0 +170773780266,215,0 +170773780313,215,0 +170773780363,215,0 +170773780411,215,0 +170773780460,215,0 +170773780508,215,0 +170773780558,214,0 +170773780606,214,0 +170773780655,214,0 +170773780703,214,0 +170773780751,214,0 +170773780799,214,0 +170773780847,215,0 +170773780896,215,0 +170773780944,215,0 +170773780994,215,0 +170773781043,215,0 +170773781093,215,0 +170773781140,215,0 +170773781188,215,0 +170773781236,215,0 +170773781286,215,0 +170773781334,215,0 +170773781382,214,0 +170773781431,214,0 +170773781479,214,0 +170773781527,214,0 +170773781575,214,0 +170773781623,214,0 +170773781672,215,0 +170773781720,215,0 +170773781768,215,0 +170773781818,215,0 +170773781866,215,0 +170773781915,215,0 +170773781963,215,0 +170773782012,215,0 +170773782060,215,0 +170773782110,215,0 +170773782158,215,0 +170773782206,214,0 +170773782255,213,0 +170773782303,213,0 +170773782351,213,0 +170773782399,214,0 +170773782447,214,0 +170773782496,214,0 +170773782546,214,0 +170773782594,214,0 +170773782642,214,0 +170773782690,214,0 +170773782739,214,0 +170773782787,214,0 +170773782836,215,0 +170773782884,215,0 +170773782932,215,0 +170773782980,215,0 +170773783028,214,0 +170773783076,213,0 +170773783124,214,0 +170773783173,214,0 +170773783221,214,0 +170773783269,214,0 +170773783319,214,0 +170773783367,214,0 +170773783415,214,0 +170773783462,214,0 +170773783512,214,0 +170773783561,214,0 +170773783609,215,0 +170773783657,215,0 +170773783707,215,0 +170773783755,215,0 +170773783803,215,0 +170773783852,215,0 +170773783900,214,0 +170773783950,214,0 +170773783999,214,0 +170773784047,214,0 +170773784097,214,0 +170773784146,214,0 +170773784194,214,0 +170773784244,214,0 +170773784293,215,0 +170773784341,215,0 +170773784391,215,0 +170773784438,215,0 +170773784488,215,0 +170773784536,215,0 +170773784584,215,0 +170773784633,215,0 +170773784681,214,0 +170773784729,213,0 +170773784777,213,0 +170773784825,214,0 +170773784873,214,0 +170773784921,214,0 +170773784969,214,0 +170773785017,214,0 +170773785065,214,0 +170773785114,214,0 +170773785162,214,0 +170773785212,215,0 +170773785260,214,0 +170773785308,215,0 +170773785356,215,0 +170773785405,215,0 +170773785453,215,0 +170773785501,215,0 +170773785549,213,0 +170773785597,213,0 +170773785645,213,0 +170773785693,214,0 +170773785741,214,0 +170773785789,214,0 +170773785837,214,0 +170773785885,214,0 +170773785933,214,0 +170773785981,214,0 +170773786029,214,0 +170773786077,214,0 +170773786125,214,0 +170773786173,215,0 +170773786221,214,0 +170773786270,215,0 +170773786318,215,0 +170773786366,214,0 +170773786414,214,0 +170773786462,214,0 +170773786511,214,0 +170773786559,214,0 +170773786607,214,0 +170773786655,214,0 +170773786703,214,0 +170773786751,214,0 +170773786799,215,0 +170773786847,214,0 +170773786894,215,0 +170773786942,215,0 +170773786990,215,0 +170773787038,215,0 +170773787088,215,0 +170773787137,215,0 +170773787187,214,0 +170773787234,214,0 +170773787284,214,0 +170773787332,214,0 +170773787380,214,0 +170773787428,214,0 +170773787476,214,0 +170773787525,214,0 +170773787573,215,0 +170773787621,214,0 +170773787671,215,0 +170773787719,215,0 +170773787767,215,0 +170773787814,215,0 +170773787862,215,0 +170773787910,215,0 +170773787958,215,0 +170773788006,215,0 +170773788053,214,0 +170773788103,214,0 +170773788151,214,0 +170773788199,214,0 +170773788248,214,0 +170773788296,214,0 +170773788344,214,0 +170773788392,214,0 +170773788441,214,0 +170773788489,215,0 +170773788537,215,0 +170773788585,215,0 +170773788633,215,0 +170773788680,215,0 +170773788728,215,0 +170773788776,215,0 +170773788824,214,0 +170773788872,214,0 +170773788920,214,0 +170773788969,214,0 +170773789017,214,0 +170773789065,214,0 +170773789113,214,0 +170773789161,214,0 +170773789209,214,0 +170773789257,214,0 +170773789305,215,0 +170773789353,215,0 +170773789401,215,0 +170773789449,215,0 +170773789498,215,0 +170773789548,215,0 +170773789596,215,0 +170773789645,214,0 +170773789693,213,0 +170773789741,213,0 +170773789789,213,0 +170773789837,213,0 +170773789885,214,0 +170773789933,214,0 +170773789981,214,0 +170773790030,214,0 +170773790080,214,0 +170773790129,214,0 +170773790177,214,0 +170773790227,214,0 +170773790275,214,0 +170773790324,215,0 +170773790372,215,0 +170773790422,215,0 +170773790469,214,0 +170773790517,213,0 +170773790565,213,0 +170773790613,213,0 +170773790661,213,0 +170773790709,213,0 +170773790759,213,0 +170773790807,214,0 +170773790856,213,0 +170773790904,214,0 +170773790952,214,0 +170773791000,214,0 +170773791048,214,0 +170773791096,214,0 +170773791143,214,0 +170773791191,214,0 +170773791239,214,0 +170773791288,215,0 +170773791338,213,0 +170773791386,213,0 +170773791433,213,0 +170773791481,213,0 +170773791529,213,0 +170773791577,213,0 +170773791625,214,0 +170773791673,214,0 +170773791721,214,0 +170773791769,214,0 +170773791818,214,0 +170773791868,214,0 +170773791916,215,0 +170773791965,215,0 +170773792015,214,0 +170773792063,215,0 +170773792110,215,0 +170773792158,214,0 +170773792208,213,0 +170773792257,213,0 +170773792307,213,0 +170773792356,214,0 +170773792404,214,0 +170773792452,214,0 +170773792501,214,0 +170773792549,214,0 +170773792597,214,0 +170773792645,214,0 +170773792695,215,0 +170773792744,214,0 +170773792794,214,0 +170773792842,215,0 +170773792890,215,0 +170773792938,215,0 +170773792987,214,0 +170773793037,214,0 +170773793085,214,0 +170773793134,214,0 +170773793182,214,0 +170773793230,214,0 +170773793279,214,0 +170773793329,214,0 +170773793377,215,0 +170773793426,215,0 +170773793474,215,0 +170773793523,215,0 +170773793571,215,0 +170773793621,215,0 +170773793669,215,0 +170773793718,215,0 +170773793766,215,0 +170773793815,214,0 +170773793863,214,0 +170773793913,214,0 +170773793962,214,0 +170773794012,214,0 +170773794060,215,0 +170773794108,215,0 +170773794156,215,0 +170773794204,215,0 +170773794252,215,0 +170773794301,215,0 +170773794349,215,0 +170773794397,215,0 +170773794445,215,0 +170773794493,215,0 +170773794541,216,0 +170773794590,215,0 +170773794639,214,0 +170773794687,214,0 +170773794735,214,0 +170773794783,214,0 +170773794831,214,0 +170773794879,214,0 +170773794927,215,0 +170773794975,215,0 +170773795024,215,0 +170773795074,215,0 +170773795123,215,0 +170773795172,215,0 +170773795220,215,0 +170773795268,215,0 +170773795318,215,0 +170773795365,215,0 +170773795413,215,0 +170773795461,214,0 +170773795511,214,0 +170773795560,214,0 +170773795610,214,0 +170773795658,214,0 +170773795707,214,0 +170773795755,215,0 +170773795803,214,0 +170773795851,215,0 +170773795899,214,0 +170773795948,215,0 +170773795998,215,0 +170773796046,215,0 +170773796093,215,0 +170773796143,215,0 +170773796191,215,0 +170773796240,215,0 +170773796288,214,0 +170773796336,214,0 +170773796384,214,0 +170773796432,214,0 +170773796480,214,0 +170773796529,214,0 +170773796577,215,0 +170773796625,215,0 +170773796673,215,0 +170773796721,215,0 +170773796770,215,0 +170773796820,215,0 +170773796868,215,0 +170773796916,215,0 +170773796965,215,0 +170773797015,215,0 +170773797063,215,0 +170773797112,214,0 +170773797160,214,0 +170773797208,214,0 +170773797258,214,0 +170773797307,214,0 +170773797356,214,0 +170773797404,214,0 +170773797454,215,0 +170773797502,215,0 +170773797551,215,0 +170773797599,215,0 +170773797649,215,0 +170773797696,215,0 +170773797746,215,0 +170773797794,215,0 +170773797842,215,0 +170773797890,215,0 +170773797937,214,0 +170773797985,214,0 +170773798033,214,0 +170773798081,214,0 +170773798129,214,0 +170773798177,214,0 +170773798225,214,0 +170773798273,214,0 +170773798322,214,0 +170773798370,214,0 +170773798418,214,0 +170773798466,214,0 +170773798514,215,0 +170773798562,215,0 +170773798610,215,0 +170773798658,215,0 +170773798706,215,0 +170773798754,215,0 +170773798802,214,0 +170773798850,214,0 +170773798898,214,0 +170773798947,214,0 +170773798997,214,0 +170773799046,214,0 +170773799096,214,0 +170773799144,214,0 +170773799193,215,0 +170773799243,214,0 +170773799291,215,0 +170773799340,215,0 +170773799388,215,0 +170773799436,215,0 +170773799486,215,0 +170773799535,215,0 +170773799583,215,0 +170773799632,214,0 +170773799680,214,0 +170773799728,214,0 +170773799776,214,0 +170773799824,214,0 +170773799873,214,0 +170773799921,214,0 +170773799971,215,0 +170773800018,215,0 +170773800066,215,0 +170773800114,215,0 +170773800162,215,0 +170773800210,215,0 +170773800258,215,0 +170773800305,215,0 +170773800355,215,0 +170773800403,215,0 +170773800450,214,0 +170773800498,214,0 +170773800547,214,0 +170773800595,214,0 +170773800643,214,0 +170773800691,214,0 +170773800739,214,0 +170773800787,214,0 +170773800835,214,0 +170773800884,215,0 +170773800932,215,0 +170773800980,215,0 +170773801027,215,0 +170773801075,215,0 +170773801123,215,0 +170773801171,215,0 +170773801219,215,0 +170773801267,214,0 +170773801314,213,0 +170773801362,213,0 +170773801410,214,0 +170773801458,214,0 +170773801506,214,0 +170773801555,214,0 +170773801604,214,0 +170773801654,214,0 +170773801702,214,0 +170773801751,214,0 +170773801799,215,0 +170773801847,215,0 +170773801896,215,0 +170773801944,215,0 +170773801992,215,0 +170773802040,215,0 +170773802088,214,0 +170773802138,213,0 +170773802187,213,0 +170773802235,213,0 +170773802283,214,0 +170773802332,213,0 +170773802380,214,0 +170773802428,214,0 +170773802476,214,0 +170773802524,214,0 +170773802573,214,0 +170773802623,214,0 +170773802671,215,0 +170773802719,215,0 +170773802766,214,0 +170773802814,214,0 +170773802864,215,0 +170773802913,214,0 +170773802961,213,0 +170773803009,213,0 +170773803057,214,0 +170773803104,214,0 +170773803152,214,0 +170773803200,214,0 +170773803248,214,0 +170773803296,214,0 +170773803343,214,0 +170773803391,214,0 +170773803439,214,0 +170773803488,214,0 +170773803536,214,0 +170773803586,215,0 +170773803633,214,0 +170773803681,215,0 +170773803729,214,0 +170773803777,213,0 +170773803825,213,0 +170773803873,213,0 +170773803922,214,0 +170773803970,214,0 +170773804017,213,0 +170773804065,214,0 +170773804113,214,0 +170773804161,214,0 +170773804209,214,0 +170773804257,214,0 +170773804306,214,0 +170773804354,214,0 +170773804402,214,0 +170773804450,214,0 +170773804497,215,0 +170773804545,214,0 +170773804593,214,0 +170773804641,213,0 +170773804689,214,0 +170773804736,214,0 +170773804784,214,0 +170773804832,214,0 +170773804880,214,0 +170773804928,214,0 +170773804976,214,0 +170773805023,214,0 +170773805071,215,0 +170773805119,214,0 +170773805167,214,0 +170773805215,214,0 +170773805263,215,0 +170773805312,216,0 +170773805361,215,0 +170773805409,214,0 +170773805459,213,0 +170773805507,213,0 +170773805554,214,0 +170773805602,214,0 +170773805650,213,0 +170773805698,214,0 +170773805747,214,0 +170773805795,214,0 +170773805843,214,0 +170773805891,214,0 +170773805939,214,0 +170773805987,214,0 +170773806035,214,0 +170773806083,215,0 +170773806130,214,0 +170773806178,215,0 +170773806226,215,0 +170773806274,213,0 +170773806322,213,0 +170773806370,213,0 +170773806417,214,0 +170773806467,214,0 +170773806515,214,0 +170773806562,214,0 +170773806610,214,0 +170773806658,214,0 +170773806706,214,0 +170773806754,214,0 +170773806802,214,0 +170773806849,214,0 +170773806899,215,0 +170773806947,214,0 +170773806994,214,0 +170773807042,215,0 +170773807090,213,0 +170773807138,213,0 +170773807187,213,0 +170773807237,213,0 +170773807284,213,0 +170773807332,214,0 +170773807380,214,0 +170773807428,214,0 +170773807477,214,0 +170773807525,214,0 +170773807573,214,0 +170773807621,214,0 +170773807669,214,0 +170773807716,214,0 +170773807764,215,0 +170773807814,215,0 +170773807862,214,0 +170773807909,214,0 +170773807959,213,0 +170773808007,213,0 +170773808055,213,0 +170773808102,213,0 +170773808150,214,0 +170773808198,214,0 +170773808246,214,0 +170773808294,214,0 +170773808342,214,0 +170773808389,214,0 +170773808437,214,0 +170773808485,215,0 +170773808533,215,0 +170773808581,215,0 +170773808630,215,0 +170773808678,215,0 +170773808726,215,0 +170773808775,214,0 +170773808823,214,0 +170773808871,214,0 +170773808919,214,0 +170773808967,214,0 +170773809014,214,0 +170773809062,214,0 +170773809110,215,0 +170773809158,215,0 +170773809206,215,0 +170773809255,215,0 +170773809303,215,0 +170773809352,215,0 +170773809400,215,0 +170773809448,215,0 +170773809497,215,0 +170773809545,215,0 +170773809593,214,0 +170773809640,214,0 +170773809688,214,0 +170773809738,214,0 +170773809785,214,0 +170773809833,214,0 +170773809883,214,0 +170773809930,215,0 +170773809978,214,0 +170773810026,215,0 +170773810074,215,0 +170773810121,215,0 +170773810169,215,0 +170773810219,215,0 +170773810267,215,0 +170773810314,215,0 +170773810362,215,0 +170773810410,214,0 +170773810458,214,0 +170773810506,214,0 +170773810553,214,0 +170773810603,214,0 +170773810652,214,0 +170773810700,214,0 +170773810748,214,0 +170773810797,214,0 +170773810845,215,0 +170773810894,215,0 +170773810942,215,0 +170773810990,215,0 +170773811038,215,0 +170773811086,215,0 +170773811134,215,0 +170773811181,215,0 +170773811229,214,0 +170773811277,214,0 +170773811325,214,0 +170773811373,215,0 +170773811420,214,0 +170773811468,214,0 +170773811516,215,0 +170773811564,214,0 +170773811612,215,0 +170773811659,215,0 +170773811707,215,0 +170773811755,215,0 +170773811803,215,0 +170773811851,215,0 +170773811899,215,0 +170773811946,215,0 +170773811994,215,0 +170773812042,215,0 +170773812090,215,0 +170773812138,214,0 +170773812186,215,0 +170773812233,215,0 +170773812281,215,0 +170773812329,215,0 +170773812377,215,0 +170773812425,215,0 +170773812473,215,0 +170773812521,215,0 +170773812569,215,0 +170773812617,215,0 +170773812664,215,0 +170773812712,215,0 +170773812760,215,0 +170773812808,215,0 +170773812856,215,0 +170773812905,214,0 +170773812953,214,0 +170773813001,214,0 +170773813050,214,0 +170773813099,214,0 +170773813149,214,0 +170773813197,215,0 +170773813245,215,0 +170773813292,215,0 +170773813340,215,0 +170773813388,215,0 +170773813436,215,0 +170773813484,215,0 +170773813533,215,0 +170773813581,215,0 +170773813629,215,0 +170773813677,215,0 +170773813726,215,0 +170773813774,214,0 +170773813823,214,0 +170773813871,214,0 +170773813919,214,0 +170773813967,214,0 +170773814015,214,0 +170773814062,214,0 +170773814110,215,0 +170773814160,215,0 +170773814208,215,0 +170773814257,215,0 +170773814305,215,0 +170773814353,215,0 +170773814401,215,0 +170773814449,215,0 +170773814497,215,0 +170773814546,215,0 +170773814594,214,0 +170773814644,213,0 +170773814691,214,0 +170773814739,214,0 +170773814787,214,0 +170773814835,214,0 +170773814883,214,0 +170773814933,214,0 +170773814981,215,0 +170773815030,214,0 +170773815078,215,0 +170773815128,214,0 +170773815176,215,0 +170773815224,214,0 +170773815273,215,0 +170773815321,215,0 +170773815370,215,0 +170773815418,213,0 +170773815466,213,0 +170773815516,213,0 +170773815564,214,0 +170773815613,214,0 +170773815663,214,0 +170773815712,214,0 +170773815762,214,0 +170773815809,214,0 +170773815859,214,0 +170773815907,214,0 +170773815956,215,0 +170773816004,215,0 +170773816054,215,0 +170773816102,215,0 +170773816150,215,0 +170773816198,215,0 +170773816246,214,0 +170773816295,214,0 +170773816344,213,0 +170773816392,214,0 +170773816442,214,0 +170773816490,214,0 +170773816539,214,0 +170773816587,214,0 +170773816636,214,0 +170773816684,214,0 +170773816732,214,0 +170773816780,214,0 +170773816830,215,0 +170773816878,215,0 +170773816926,215,0 +170773816973,215,0 +170773817023,215,0 +170773817073,213,0 +170773817122,213,0 +170773817171,213,0 +170773817221,214,0 +170773817270,214,0 +170773817320,214,0 +170773817369,214,0 +170773817417,214,0 +170773817467,214,0 +170773817516,214,0 +170773817564,215,0 +170773817614,215,0 +170773817662,215,0 +170773817710,215,0 +170773817758,214,0 +170773817805,215,0 +170773817855,215,0 +170773817903,214,0 +170773817951,214,0 +170773817999,214,0 +170773818047,214,0 +170773818095,214,0 +170773818144,214,0 +170773818194,214,0 +170773818242,214,0 +170773818289,214,0 +170773818339,215,0 +170773818387,215,0 +170773818436,215,0 +170773818484,215,0 +170773818532,215,0 +170773818582,215,0 +170773818630,215,0 +170773818679,215,0 +170773818727,214,0 +170773818775,213,0 +170773818823,213,0 +170773818871,213,0 +170773818919,214,0 +170773818969,214,0 +170773819018,214,0 +170773819068,214,0 +170773819117,214,0 +170773819165,214,0 +170773819215,214,0 +170773819263,214,0 +170773819311,214,0 +170773819359,214,0 +170773819408,214,0 +170773819458,214,0 +170773819506,214,0 +170773819555,214,0 +170773819603,213,0 +170773819651,213,0 +170773819701,213,0 +170773819749,213,0 +170773819796,213,0 +170773819844,213,0 +170773819892,213,0 +170773819940,213,0 +170773819988,213,0 +170773820038,214,0 +170773820086,214,0 +170773820134,214,0 +170773820182,214,0 +170773820230,214,0 +170773820277,214,0 +170773820325,214,0 +170773820373,214,0 +170773820421,213,0 +170773820471,213,0 +170773820519,213,0 +170773820567,213,0 +170773820614,213,0 +170773820664,214,0 +170773820712,214,0 +170773820760,214,0 +170773820808,214,0 +170773820857,214,0 +170773820905,215,0 +170773820953,214,0 +170773821002,215,0 +170773821050,214,0 +170773821098,214,0 +170773821146,215,0 +170773821194,215,0 +170773821242,213,0 +170773821291,214,0 +170773821339,214,0 +170773821389,214,0 +170773821438,214,0 +170773821486,214,0 +170773821536,214,0 +170773821584,214,0 +170773821633,214,0 +170773821683,214,0 +170773821730,214,0 +170773821780,214,0 +170773821830,214,0 +170773821879,214,0 +170773821927,215,0 +170773821977,215,0 +170773822024,215,0 +170773822074,213,0 +170773822122,213,0 +170773822170,213,0 +170773822219,214,0 +170773822269,214,0 +170773822317,214,0 +170773822365,214,0 +170773822413,214,0 +170773822462,214,0 +170773822512,214,0 +170773822560,215,0 +170773822607,215,0 +170773822655,215,0 +170773822703,215,0 +170773822753,215,0 +170773822800,215,0 +170773822848,215,0 +170773822896,214,0 +170773822944,214,0 +170773822992,214,0 +170773823039,214,0 +170773823087,214,0 +170773823135,215,0 +170773823183,214,0 +170773823231,215,0 +170773823279,215,0 +170773823328,215,0 +170773823376,215,0 +170773823424,215,0 +170773823473,215,0 +170773823521,215,0 +170773823569,215,0 +170773823617,215,0 +170773823665,215,0 +170773823712,215,0 +170773823760,215,0 +170773823808,215,0 +170773823858,214,0 +170773823906,215,0 +170773823953,215,0 +170773824001,215,0 +170773824049,215,0 +170773824097,215,0 +170773824145,215,0 +170773824193,215,0 +170773824242,215,0 +170773824292,215,0 +170773824339,215,0 +170773824387,215,0 +170773824437,215,0 +170773824485,215,0 +170773824533,214,0 +170773824581,214,0 +170773824629,215,0 +170773824677,214,0 +170773824724,215,0 +170773824772,215,0 +170773824820,215,0 +170773824868,215,0 +170773824918,215,0 +170773824966,215,0 +170773825013,215,0 +170773825061,215,0 +170773825109,215,0 +170773825157,215,0 +170773825207,215,0 +170773825255,215,0 +170773825303,215,0 +170773825351,215,0 +170773825400,214,0 +170773825448,214,0 +170773825496,214,0 +170773825544,214,0 +170773825592,214,0 +170773825640,214,0 +170773825687,214,0 +170773825735,214,0 +170773825783,215,0 +170773825831,215,0 +170773825879,215,0 +170773825927,215,0 +170773825975,215,0 +170773826023,215,0 +170773826072,215,0 +170773826120,215,0 +170773826170,214,0 +170773826219,214,0 +170773826267,214,0 +170773826315,214,0 +170773826363,214,0 +170773826413,214,0 +170773826462,214,0 +170773826510,214,0 +170773826558,214,0 +170773826606,215,0 +170773826654,215,0 +170773826703,215,0 +170773826751,215,0 +170773826800,215,0 +170773826848,215,0 +170773826896,215,0 +170773826944,215,0 +170773826992,215,0 +170773827040,213,0 +170773827088,213,0 +170773827136,214,0 +170773827184,214,0 +170773827232,214,0 +170773827282,214,0 +170773827331,214,0 +170773827379,214,0 +170773827427,214,0 +170773827476,214,0 +170773827524,215,0 +170773827572,215,0 +170773827620,215,0 +170773827668,215,0 +170773827715,215,0 +170773827763,215,0 +170773827811,215,0 +170773827859,214,0 +170773827907,213,0 +170773827955,214,0 +170773828004,214,0 +170773828054,214,0 +170773828103,214,0 +170773828153,214,0 +170773828202,214,0 +170773828252,214,0 +170773828301,214,0 +170773828351,214,0 +170773828399,214,0 +170773828447,215,0 +170773828495,215,0 +170773828543,215,0 +170773828590,215,0 +170773828638,215,0 +170773828688,214,0 +170773828736,214,0 +170773828783,213,0 +170773828831,214,0 +170773828881,214,0 +170773828928,214,0 +170773828976,214,0 +170773829024,214,0 +170773829074,214,0 +170773829123,214,0 +170773829173,214,0 +170773829221,215,0 +170773829270,215,0 +170773829318,215,0 +170773829366,215,0 +170773829414,214,0 +170773829463,215,0 +170773829513,214,0 +170773829562,214,0 +170773829612,213,0 +170773829660,213,0 +170773829708,213,0 +170773829757,214,0 +170773829805,214,0 +170773829853,214,0 +170773829901,214,0 +170773829949,214,0 +170773829998,214,0 +170773830048,214,0 +170773830096,214,0 +170773830144,214,0 +170773830193,214,0 +170773830241,214,0 +170773830290,214,0 +170773830340,214,0 +170773830389,213,0 +170773830437,213,0 +170773830485,213,0 +170773830535,214,0 +170773830583,214,0 +170773830631,214,0 +170773830679,214,0 +170773830728,214,0 +170773830778,214,0 +170773830826,214,0 +170773830873,215,0 +170773830923,214,0 +170773830972,215,0 +170773831020,215,0 +170773831068,215,0 +170773831118,215,0 +170773831166,214,0 +170773831215,213,0 +170773831265,213,0 +170773831312,213,0 +170773831360,214,0 +170773831408,214,0 +170773831456,214,0 +170773831504,214,0 +170773831552,214,0 +170773831600,214,0 +170773831648,214,0 +170773831695,214,0 +170773831743,214,0 +170773831791,215,0 +170773831841,214,0 +170773831889,215,0 +170773831937,215,0 +170773831985,214,0 +170773832034,213,0 +170773832084,213,0 +170773832132,213,0 +170773832180,214,0 +170773832229,214,0 +170773832277,214,0 +170773832325,214,0 +170773832374,214,0 +170773832422,214,0 +170773832472,214,0 +170773832520,214,0 +170773832568,215,0 +170773832616,214,0 +170773832663,215,0 +170773832711,215,0 +170773832759,215,0 +170773832809,215,0 +170773832857,214,0 +170773832906,214,0 +170773832954,214,0 +170773833003,214,0 +170773833051,214,0 +170773833101,214,0 +170773833149,214,0 +170773833196,214,0 +170773833246,214,0 +170773833296,215,0 +170773833345,215,0 +170773833393,215,0 +170773833442,215,0 +170773833490,215,0 +170773833540,215,0 +170773833588,215,0 +170773833636,215,0 +170773833684,214,0 +170773833733,214,0 +170773833781,214,0 +170773833829,214,0 +170773833878,214,0 +170773833928,214,0 +170773833976,214,0 +170773834024,214,0 +170773834071,215,0 +170773834119,215,0 +170773834167,215,0 +170773834215,215,0 +170773834263,215,0 +170773834310,215,0 +170773834358,215,0 +170773834406,216,0 +170773834454,215,0 +170773834502,214,0 +170773834550,214,0 +170773834597,214,0 +170773834645,214,0 +170773834693,214,0 +170773834741,214,0 +170773834789,214,0 +170773834837,214,0 +170773834884,214,0 +170773834934,214,0 +170773834982,214,0 +170773835030,215,0 +170773835078,215,0 +170773835127,215,0 +170773835175,215,0 +170773835223,215,0 +170773835271,215,0 +170773835319,214,0 +170773835367,214,0 +170773835415,213,0 +170773835463,214,0 +170773835510,214,0 +170773835558,214,0 +170773835606,214,0 +170773835656,214,0 +170773835705,214,0 +170773835753,214,0 +170773835803,214,0 +170773835852,214,0 +170773835900,214,0 +170773835948,215,0 +170773835996,214,0 +170773836044,214,0 +170773836093,215,0 +170773836141,214,0 +170773836190,214,0 +170773836240,214,0 +170773836289,214,0 +170773836337,214,0 +170773836385,214,0 +170773836433,214,0 +170773836481,214,0 +170773836529,214,0 +170773836577,215,0 +170773836625,215,0 +170773836673,215,0 +170773836721,215,0 +170773836768,215,0 +170773836818,215,0 +170773836867,215,0 +170773836917,215,0 +170773836965,214,0 +170773837013,214,0 +170773837061,214,0 +170773837110,214,0 +170773837158,215,0 +170773837207,214,0 +170773837255,214,0 +170773837303,215,0 +170773837353,215,0 +170773837401,215,0 +170773837449,215,0 +170773837498,215,0 +170773837548,215,0 +170773837596,215,0 +170773837644,215,0 +170773837692,215,0 +170773837739,215,0 +170773837787,215,0 +170773837837,214,0 +170773837885,214,0 +170773837933,214,0 +170773837980,214,0 +170773838028,214,0 +170773838076,214,0 +170773838124,215,0 +170773838172,215,0 +170773838220,215,0 +170773838269,215,0 +170773838319,215,0 +170773838367,214,0 +170773838415,215,0 +170773838463,215,0 +170773838512,215,0 +170773838560,215,0 +170773838608,215,0 +170773838656,214,0 +170773838704,214,0 +170773838752,214,0 +170773838801,214,0 +170773838851,214,0 +170773838899,215,0 +170773838946,215,0 +170773838994,215,0 +170773839042,215,0 +170773839090,215,0 +170773839138,215,0 +170773839186,215,0 +170773839233,215,0 +170773839281,215,0 +170773839329,215,0 +170773839377,215,0 +170773839427,215,0 +170773839475,214,0 +170773839524,214,0 +170773839572,214,0 +170773839621,214,0 +170773839669,214,0 +170773839717,214,0 +170773839767,215,0 +170773839816,215,0 +170773839864,215,0 +170773839912,215,0 +170773839960,215,0 +170773840008,215,0 +170773840057,215,0 +170773840107,215,0 +170773840155,215,0 +170773840203,215,0 +170773840252,215,0 +170773840300,214,0 +170773840349,214,0 +170773840397,214,0 +170773840445,214,0 +170773840493,214,0 +170773840543,214,0 +170773840590,214,0 +170773840640,214,0 +170773840688,215,0 +170773840737,215,0 +170773840785,215,0 +170773840835,215,0 +170773840883,215,0 +170773840930,215,0 +170773840980,215,0 +170773841028,215,0 +170773841077,215,0 +170773841125,215,0 +170773841173,214,0 +170773841221,214,0 +170773841270,214,0 +170773841318,214,0 +170773841366,214,0 +170773841414,214,0 +170773841462,214,0 +170773841510,215,0 +170773841557,214,0 +170773841605,215,0 +170773841653,215,0 +170773841701,215,0 +170773841749,215,0 +170773841796,215,0 +170773841844,215,0 +170773841892,215,0 +170773841940,215,0 +170773841989,214,0 +170773842037,213,0 +170773842085,214,0 +170773842134,214,0 +170773842182,214,0 +170773842230,214,0 +170773842278,214,0 +170773842326,214,0 +170773842374,214,0 +170773842422,214,0 +170773842469,214,0 +170773842517,214,0 +170773842565,215,0 +170773842613,215,0 +170773842661,215,0 +170773842709,215,0 +170773842756,215,0 +170773842806,213,0 +170773842853,214,0 +170773842901,213,0 +170773842949,213,0 +170773842997,213,0 +170773843045,214,0 +170773843094,214,0 +170773843142,214,0 +170773843190,214,0 +170773843238,214,0 +170773843286,214,0 +170773843334,214,0 +170773843382,214,0 +170773843430,214,0 +170773843478,215,0 +170773843527,215,0 +170773843577,215,0 +170773843626,214,0 +170773843674,214,0 +170773843722,214,0 +170773843771,214,0 +170773843819,214,0 +170773843867,214,0 +170773843915,214,0 +170773843965,214,0 +170773844012,214,0 +170773844060,214,0 +170773844108,214,0 +170773844156,214,0 +170773844204,214,0 +170773844252,215,0 +170773844300,215,0 +170773844348,215,0 +170773844396,215,0 +170773844445,215,0 +170773844493,213,0 +170773844541,214,0 +170773844590,214,0 +170773844638,214,0 +170773844686,214,0 +170773844734,214,0 +170773844782,214,0 +170773844830,214,0 +170773844878,214,0 +170773844925,214,0 +170773844973,214,0 +170773845021,215,0 +170773845069,215,0 +170773845117,215,0 +170773845166,215,0 +170773845214,215,0 +170773845262,215,0 +170773845310,214,0 +170773845358,214,0 +170773845406,214,0 +170773845455,214,0 +170773845505,214,0 +170773845553,214,0 +170773845601,214,0 +170773845649,214,0 +170773845697,215,0 +170773845744,214,0 +170773845792,215,0 +170773845840,215,0 +170773845890,215,0 +170773845937,215,0 +170773845985,215,0 +170773846033,215,0 +170773846081,215,0 +170773846129,214,0 +170773846178,213,0 +170773846226,214,0 +170773846274,214,0 +170773846322,214,0 +170773846370,214,0 +170773846418,214,0 +170773846466,214,0 +170773846513,214,0 +170773846561,215,0 +170773846609,215,0 +170773846657,215,0 +170773846705,215,0 +170773846753,215,0 +170773846801,215,0 +170773846848,215,0 +170773846896,215,0 +170773846944,215,0 +170773846992,214,0 +170773847040,214,0 +170773847088,214,0 +170773847137,214,0 +170773847185,214,0 +170773847235,214,0 +170773847284,214,0 +170773847334,214,0 +170773847382,214,0 +170773847430,215,0 +170773847479,215,0 +170773847527,215,0 +170773847577,215,0 +170773847625,215,0 +170773847674,215,0 +170773847722,215,0 +170773847772,215,0 +170773847819,214,0 +170773847869,214,0 +170773847917,214,0 +170773847966,214,0 +170773848014,214,0 +170773848062,214,0 +170773848110,214,0 +170773848158,215,0 +170773848208,215,0 +170773848257,215,0 +170773848307,215,0 +170773848355,215,0 +170773848404,215,0 +170773848452,215,0 +170773848500,215,0 +170773848549,215,0 +170773848599,215,0 +170773848647,214,0 +170773848695,214,0 +170773848743,214,0 +170773848791,214,0 +170773848838,215,0 +170773848886,214,0 +170773848934,214,0 +170773848982,214,0 +170773849032,215,0 +170773849081,215,0 +170773849129,215,0 +170773849177,215,0 +170773849225,215,0 +170773849274,215,0 +170773849322,216,0 +170773849372,215,0 +170773849420,215,0 +170773849469,214,0 +170773849517,213,0 +170773849567,214,0 +170773849615,214,0 +170773849664,214,0 +170773849712,214,0 +170773849762,214,0 +170773849810,215,0 +170773849857,215,0 +170773849905,215,0 +170773849953,215,0 +170773850003,215,0 +170773850052,215,0 +170773850100,215,0 +170773850150,215,0 +170773850200,215,0 +170773850249,215,0 +170773850299,214,0 +170773850347,213,0 +170773850395,214,0 +170773850444,214,0 +170773850492,214,0 +170773850541,214,0 +170773850589,214,0 +170773850637,214,0 +170773850687,215,0 +170773850735,215,0 +170773850783,215,0 +170773850832,215,0 +170773850880,215,0 +170773850930,215,0 +170773850979,215,0 +170773851028,215,0 +170773851076,215,0 +170773851124,214,0 +170773851174,214,0 +170773851223,214,0 +170773851271,214,0 +170773851319,214,0 +170773851367,214,0 +170773851416,214,0 +170773851464,214,0 +170773851512,214,0 +170773851562,214,0 +170773851610,215,0 +170773851658,215,0 +170773851706,215,0 +170773851753,215,0 +170773851801,215,0 +170773851849,215,0 +170773851897,215,0 +170773851945,214,0 +170773851993,214,0 +170773852041,214,0 +170773852091,214,0 +170773852139,214,0 +170773852187,214,0 +170773852235,214,0 +170773852284,215,0 +170773852332,214,0 +170773852380,215,0 +170773852430,215,0 +170773852478,215,0 +170773852526,215,0 +170773852574,215,0 +170773852621,215,0 +170773852671,215,0 +170773852719,215,0 +170773852768,214,0 +170773852816,214,0 +170773852864,214,0 +170773852912,214,0 +170773852960,214,0 +170773853008,215,0 +170773853056,214,0 +170773853106,215,0 +170773853153,215,0 +170773853201,215,0 +170773853249,215,0 +170773853299,215,0 +170773853347,215,0 +170773853395,215,0 +170773853443,215,0 +170773853492,215,0 +170773853542,215,0 +170773853590,215,0 +170773853639,214,0 +170773853687,215,0 +170773853737,215,0 +170773853786,215,0 +170773853834,215,0 +170773853882,215,0 +170773853930,215,0 +170773853978,215,0 +170773854027,215,0 +170773854075,215,0 +170773854123,215,0 +170773854171,215,0 +170773854219,215,0 +170773854267,215,0 +170773854315,215,0 +170773854363,215,0 +170773854411,215,0 +170773854458,214,0 +170773854508,214,0 +170773854556,214,0 +170773854605,214,0 +170773854653,214,0 +170773854701,214,0 +170773854748,214,0 +170773854796,215,0 +170773854846,215,0 +170773854893,215,0 +170773854941,215,0 +170773854989,215,0 +170773855037,215,0 +170773855085,215,0 +170773855133,215,0 +170773855181,215,0 +170773855230,215,0 +170773855278,214,0 +170773855326,214,0 +170773855376,214,0 +170773855424,214,0 +170773855472,214,0 +170773855520,214,0 +170773855569,214,0 +170773855617,214,0 +170773855666,215,0 +170773855714,215,0 +170773855762,215,0 +170773855812,215,0 +170773855861,215,0 +170773855910,215,0 +170773855960,215,0 +170773856009,215,0 +170773856057,215,0 +170773856107,214,0 +170773856155,214,0 +170773856204,214,0 +170773856254,214,0 +170773856302,214,0 +170773856350,214,0 +170773856398,215,0 +170773856446,214,0 +170773856493,214,0 +170773856541,215,0 +170773856589,215,0 +170773856639,215,0 +170773856687,215,0 +170773856736,215,0 +170773856784,215,0 +170773856834,215,0 +170773856881,215,0 +170773856931,214,0 +170773856979,214,0 +170773857027,213,0 +170773857075,214,0 +170773857123,214,0 +170773857171,214,0 +170773857219,214,0 +170773857266,214,0 +170773857316,214,0 +170773857365,215,0 +170773857413,215,0 +170773857463,215,0 +170773857512,215,0 +170773857560,215,0 +170773857610,215,0 +170773857658,215,0 +170773857706,215,0 +170773857755,214,0 +170773857803,214,0 +170773857851,214,0 +170773857899,214,0 +170773857947,214,0 +170773857994,214,0 +170773858042,214,0 +170773858090,214,0 +170773858139,214,0 +170773858189,215,0 +170773858237,215,0 +170773858285,215,0 +170773858332,215,0 +170773858382,215,0 +170773858430,215,0 +170773858478,215,0 +170773858525,215,0 +170773858573,214,0 +170773858621,214,0 +170773858669,214,0 +170773858717,214,0 +170773858765,214,0 +170773858813,214,0 +170773858861,214,0 +170773858908,214,0 +170773858956,215,0 +170773859004,214,0 +170773859054,215,0 +170773859102,215,0 +170773859150,215,0 +170773859197,215,0 +170773859245,215,0 +170773859293,215,0 +170773859341,215,0 +170773859391,215,0 +170773859438,214,0 +170773859486,214,0 +170773859536,214,0 +170773859584,215,0 +170773859632,214,0 +170773859681,215,0 +170773859729,214,0 +170773859779,215,0 +170773859827,215,0 +170773859876,215,0 +170773859924,215,0 +170773859972,215,0 +170773860020,215,0 +170773860068,215,0 +170773860116,215,0 +170773860165,215,0 +170773860215,215,0 +170773860264,214,0 +170773860312,214,0 +170773860362,214,0 +170773860411,214,0 +170773860459,214,0 +170773860507,214,0 +170773860556,215,0 +170773860604,215,0 +170773860652,215,0 +170773860700,215,0 +170773860748,215,0 +170773860797,215,0 +170773860845,215,0 +170773860893,215,0 +170773860941,215,0 +170773860991,215,0 +170773861039,215,0 +170773861088,214,0 +170773861138,214,0 +170773861185,214,0 +170773861233,214,0 +170773861281,214,0 +170773861331,214,0 +170773861379,215,0 +170773861428,215,0 +170773861476,215,0 +170773861524,215,0 +170773861572,215,0 +170773861622,215,0 +170773861669,215,0 +170773861717,215,0 +170773861765,215,0 +170773861813,215,0 +170773861861,215,0 +170773861909,214,0 +170773861957,214,0 +170773862005,214,0 +170773862052,214,0 +170773862102,214,0 +170773862150,214,0 +170773862199,214,0 +170773862249,214,0 +170773862297,214,0 +170773862346,215,0 +170773862394,215,0 +170773862442,214,0 +170773862490,215,0 +170773862538,215,0 +170773862587,215,0 +170773862635,215,0 +170773862683,215,0 +170773862731,214,0 +170773862779,214,0 +170773862827,214,0 +170773862875,214,0 +170773862923,214,0 +170773862970,214,0 +170773863018,214,0 +170773863066,214,0 +170773863114,214,0 +170773863162,214,0 +170773863210,215,0 +170773863260,215,0 +170773863308,215,0 +170773863356,215,0 +170773863405,215,0 +170773863453,215,0 +170773863503,215,0 +170773863550,214,0 +170773863598,214,0 +170773863648,214,0 +170773863697,214,0 +170773863745,214,0 +170773863793,214,0 +170773863841,214,0 +170773863889,215,0 +170773863937,214,0 +170773863986,214,0 +170773864036,215,0 +170773864084,215,0 +170773864132,215,0 +170773864179,215,0 +170773864227,215,0 +170773864277,215,0 +170773864326,215,0 +170773864374,214,0 +170773864425,213,0 +170773864474,213,0 +170773864522,214,0 +170773864570,214,0 +170773864619,214,0 +170773864667,214,0 +170773864715,214,0 +170773864765,214,0 +170773864814,214,0 +170773864862,214,0 +170773864910,214,0 +170773864960,214,0 +170773865009,214,0 +170773865057,214,0 +170773865105,214,0 +170773865155,214,0 +170773865202,215,0 +170773865250,214,0 +170773865300,213,0 +170773865349,213,0 +170773865399,213,0 +170773865447,213,0 +170773865495,213,0 +170773865543,213,0 +170773865591,214,0 +170773865640,213,0 +170773865690,214,0 +170773865738,214,0 +170773865786,214,0 +170773865834,214,0 +170773865883,214,0 +170773865932,214,0 +170773865980,215,0 +170773866029,215,0 +170773866079,213,0 +170773866128,213,0 +170773866176,214,0 +170773866226,213,0 +170773866273,214,0 +170773866321,214,0 +170773866369,214,0 +170773866417,214,0 +170773866465,214,0 +170773866513,214,0 +170773866561,214,0 +170773866609,214,0 +170773866657,214,0 +170773866705,214,0 +170773866753,214,0 +170773866800,215,0 +170773866850,215,0 +170773866898,214,0 +170773866947,214,0 +170773866995,213,0 +170773867043,214,0 +170773867091,214,0 +170773867141,214,0 +170773867190,214,0 +170773867238,214,0 +170773867288,214,0 +170773867336,215,0 +170773867385,215,0 +170773867433,215,0 +170773867481,215,0 +170773867529,215,0 +170773867577,215,0 +170773867625,215,0 +170773867673,215,0 +170773867721,214,0 +170773867770,214,0 +170773867818,214,0 +170773867866,214,0 +170773867914,214,0 +170773867964,215,0 +170773868013,215,0 +170773868061,215,0 +170773868109,215,0 +170773868157,215,0 +170773868207,215,0 +170773868255,215,0 +170773868303,215,0 +170773868350,215,0 +170773868398,215,0 +170773868446,215,0 +170773868494,215,0 +170773868542,215,0 +170773868590,215,0 +170773868640,215,0 +170773868688,215,0 +170773868736,215,0 +170773868785,215,0 +170773868835,215,0 +170773868884,215,0 +170773868934,215,0 +170773868982,215,0 +170773869031,215,0 +170773869081,215,0 +170773869130,215,0 +170773869178,215,0 +170773869228,215,0 +170773869276,215,0 +170773869324,215,0 +170773869373,214,0 +170773869421,215,0 +170773869469,214,0 +170773869517,215,0 +170773869565,215,0 +170773869614,215,0 +170773869662,214,0 +170773869710,214,0 +170773869758,215,0 +170773869806,215,0 +170773869854,215,0 +170773869902,215,0 +170773869952,215,0 +170773870000,215,0 +170773870049,215,0 +170773870099,215,0 +170773870147,215,0 +170773870195,214,0 +170773870242,214,0 +170773870292,214,0 +170773870342,214,0 +170773870389,214,0 +170773870437,215,0 +170773870487,215,0 +170773870537,215,0 +170773870584,215,0 +170773870634,215,0 +170773870684,215,0 +170773870733,215,0 +170773870781,215,0 +170773870829,215,0 +170773870879,215,0 +170773870928,215,0 +170773870976,215,0 +170773871025,214,0 +170773871073,215,0 +170773871121,215,0 +170773871169,215,0 +170773871219,215,0 +170773871267,215,0 +170773871315,215,0 +170773871363,215,0 +170773871412,215,0 +170773871460,215,0 +170773871508,215,0 +170773871556,215,0 +170773871605,215,0 +170773871653,215,0 +170773871701,215,0 +170773871749,215,0 +170773871797,215,0 +170773871844,215,0 +170773871892,214,0 +170773871940,214,0 +170773871988,215,0 +170773872036,215,0 +170773872084,215,0 +170773872132,215,0 +170773872180,215,0 +170773872228,215,0 +170773872275,215,0 +170773872323,215,0 +170773872371,215,0 +170773872419,215,0 +170773872468,216,0 +170773872516,215,0 +170773872564,215,0 +170773872612,215,0 +170773872660,215,0 +170773872708,214,0 +170773872756,214,0 +170773872804,214,0 +170773872851,214,0 +170773872901,214,0 +170773872949,215,0 +170773872998,215,0 +170773873046,215,0 +170773873095,215,0 +170773873143,215,0 +170773873192,215,0 +170773873240,215,0 +170773873288,215,0 +170773873336,215,0 +170773873384,215,0 +170773873432,215,0 +170773873480,215,0 +170773873527,214,0 +170773873577,214,0 +170773873625,214,0 +170773873672,214,0 +170773873722,214,0 +170773873770,214,0 +170773873818,214,0 +170773873866,214,0 +170773873913,214,0 +170773873963,215,0 +170773874011,215,0 +170773874059,215,0 +170773874106,215,0 +170773874154,215,0 +170773874202,215,0 +170773874250,215,0 +170773874300,215,0 +170773874347,215,0 +170773874395,214,0 +170773874443,214,0 +170773874493,214,0 +170773874540,214,0 +170773874588,214,0 +170773874638,214,0 +170773874686,214,0 +170773874735,215,0 +170773874785,215,0 +170773874833,215,0 +170773874882,215,0 +170773874930,215,0 +170773874978,215,0 +170773875026,215,0 +170773875074,215,0 +170773875123,215,0 +170773875171,215,0 +170773875219,214,0 +170773875267,213,0 +170773875317,214,0 +170773875366,214,0 +170773875416,214,0 +170773875465,214,0 +170773875515,214,0 +170773875563,214,0 +170773875611,214,0 +170773875660,215,0 +170773875710,215,0 +170773875758,215,0 +170773875806,215,0 +170773875854,215,0 +170773875903,215,0 +170773875951,215,0 +170773875999,215,0 +170773876047,213,0 +170773876096,214,0 +170773876144,214,0 +170773876194,214,0 +170773876243,214,0 +170773876291,214,0 +170773876339,214,0 +170773876388,214,0 +170773876436,214,0 +170773876484,214,0 +170773876532,215,0 +170773876580,215,0 +170773876628,215,0 +170773876675,215,0 +170773876723,215,0 +170773876771,215,0 +170773876819,215,0 +170773876867,214,0 +170773876915,213,0 +170773876963,213,0 +170773877012,213,0 +170773877060,214,0 +170773877110,214,0 +170773877158,214,0 +170773877207,214,0 +170773877255,214,0 +170773877305,214,0 +170773877353,214,0 +170773877401,214,0 +170773877448,215,0 +170773877498,215,0 +170773877546,215,0 +170773877595,215,0 +170773877643,215,0 +170773877691,214,0 +170773877741,213,0 +170773877790,214,0 +170773877840,214,0 +170773877888,214,0 +170773877936,214,0 +170773877984,214,0 +170773878032,214,0 +170773878080,215,0 +170773878129,214,0 +170773878177,215,0 +170773878227,214,0 +170773878275,214,0 +170773878324,215,0 +170773878374,215,0 +170773878422,215,0 +170773878469,215,0 +170773878517,213,0 +170773878565,213,0 +170773878613,214,0 +170773878661,214,0 +170773878709,214,0 +170773878757,214,0 +170773878805,214,0 +170773878853,214,0 +170773878901,214,0 +170773878948,214,0 +170773878996,214,0 +170773879044,214,0 +170773879094,215,0 +170773879141,215,0 +170773879191,214,0 +170773879240,215,0 +170773879288,215,0 +170773879336,214,0 +170773879385,213,0 +170773879433,213,0 +170773879481,214,0 +170773879529,214,0 +170773879577,214,0 +170773879625,214,0 +170773879672,214,0 +170773879720,214,0 +170773879768,214,0 +170773879816,214,0 +170773879864,215,0 +170773879912,215,0 +170773879960,215,0 +170773880008,215,0 +170773880055,215,0 +170773880103,215,0 +170773880151,215,0 +170773880199,214,0 +170773880247,213,0 +170773880295,213,0 +170773880344,214,0 +170773880392,214,0 +170773880440,214,0 +170773880488,214,0 +170773880536,214,0 +170773880584,214,0 +170773880631,214,0 +170773880679,215,0 +170773880727,214,0 +170773880775,214,0 +170773880824,215,0 +170773880872,215,0 +170773880920,215,0 +170773880968,215,0 +170773881017,214,0 +170773881067,213,0 +170773881115,214,0 +170773881164,214,0 +170773881214,214,0 +170773881262,214,0 +170773881309,214,0 +170773881359,214,0 +170773881407,214,0 +170773881454,214,0 +170773881503,214,0 +170773881551,214,0 +170773881599,215,0 +170773881646,214,0 +170773881694,215,0 +170773881742,214,0 +170773881790,215,0 +170773881838,214,0 +170773881887,213,0 +170773881935,213,0 +170773881983,214,0 +170773882031,214,0 +170773882079,214,0 +170773882128,214,0 +170773882176,214,0 +170773882224,214,0 +170773882272,214,0 +170773882319,215,0 +170773882367,215,0 +170773882415,215,0 +170773882463,215,0 +170773882511,215,0 +170773882559,215,0 +170773882606,215,0 +170773882654,215,0 +170773882702,214,0 +170773882750,214,0 +170773882798,214,0 +170773882845,214,0 +170773882893,214,0 +170773882941,214,0 +170773882989,215,0 +170773883037,215,0 +170773883085,215,0 +170773883132,215,0 +170773883180,215,0 +170773883228,215,0 +170773883276,215,0 +170773883324,215,0 +170773883372,215,0 +170773883420,215,0 +170773883468,215,0 +170773883516,215,0 +170773883563,214,0 +170773883611,214,0 +170773883661,215,0 +170773883709,215,0 +170773883758,215,0 +170773883808,215,0 +170773883856,215,0 +170773883904,215,0 +170773883953,215,0 +170773884001,215,0 +170773884049,215,0 +170773884097,215,0 +170773884146,215,0 +170773884196,215,0 +170773884245,215,0 +170773884293,215,0 +170773884342,214,0 +170773884390,214,0 +170773884438,214,0 +170773884488,214,0 +170773884536,214,0 +170773884585,215,0 +170773884633,214,0 +170773884681,215,0 +170773884729,214,0 +170773884777,215,0 +170773884825,215,0 +170773884874,215,0 +170773884922,215,0 +170773884970,215,0 +170773885020,215,0 +170773885068,215,0 +170773885115,215,0 +170773885163,214,0 +170773885211,214,0 +170773885261,214,0 +170773885309,215,0 +170773885358,215,0 +170773885406,215,0 +170773885454,215,0 +170773885502,215,0 +170773885552,215,0 +170773885599,215,0 +170773885647,215,0 +170773885695,215,0 +170773885743,215,0 +170773885791,215,0 +170773885839,215,0 +170773885887,215,0 +170773885936,215,0 +170773885986,214,0 +170773886035,214,0 +170773886085,214,0 +170773886134,215,0 +170773886182,215,0 +170773886232,215,0 +170773886280,215,0 +170773886329,215,0 +170773886377,215,0 +170773886425,215,0 +170773886475,215,0 +170773886523,215,0 +170773886571,215,0 +170773886620,215,0 +170773886668,215,0 +170773886716,215,0 +170773886764,215,0 +170773886812,214,0 +170773886861,213,0 +170773886909,214,0 +170773886957,214,0 +170773887005,214,0 +170773887053,214,0 +170773887101,214,0 +170773887150,214,0 +170773887198,214,0 +170773887246,214,0 +170773887294,215,0 +170773887342,215,0 +170773887392,215,0 +170773887440,215,0 +170773887488,215,0 +170773887536,215,0 +170773887585,215,0 +170773887633,214,0 +170773887681,213,0 +170773887730,214,0 +170773887780,214,0 +170773887828,214,0 +170773887876,214,0 +170773887924,214,0 +170773887972,214,0 +170773888020,214,0 +170773888067,214,0 +170773888115,214,0 +170773888165,214,0 +170773888213,215,0 +170773888262,215,0 +170773888310,215,0 +170773888360,215,0 +170773888408,215,0 +170773888456,214,0 +170773888504,213,0 +170773888553,214,0 +170773888601,214,0 +170773888649,214,0 +170773888698,214,0 +170773888748,214,0 +170773888796,214,0 +170773888845,214,0 +170773888893,214,0 +170773888943,215,0 +170773888991,214,0 +170773889039,215,0 +170773889086,215,0 +170773889134,215,0 +170773889184,215,0 +170773889234,215,0 +170773889281,215,0 +170773889329,214,0 +170773889379,214,0 +170773889427,214,0 +170773889475,214,0 +170773889524,214,0 +170773889574,214,0 +170773889623,214,0 +170773889673,214,0 +170773889721,215,0 +170773889769,214,0 +170773889817,215,0 +170773889866,215,0 +170773889916,215,0 +170773889965,215,0 +170773890015,215,0 +170773890062,215,0 +170773890112,215,0 +170773890160,214,0 +170773890208,214,0 +170773890256,214,0 +170773890304,214,0 +170773890352,214,0 +170773890400,214,0 +170773890448,214,0 +170773890495,214,0 +170773890543,215,0 +170773890593,215,0 +170773890642,215,0 +170773890692,215,0 +170773890740,215,0 +170773890788,215,0 +170773890835,215,0 +170773890885,215,0 +170773890935,215,0 +170773890982,214,0 +170773891030,214,0 +170773891078,214,0 +170773891126,214,0 +170773891174,214,0 +170773891222,214,0 +170773891270,215,0 +170773891318,214,0 +170773891366,215,0 +170773891414,215,0 +170773891464,215,0 +170773891513,215,0 +170773891563,215,0 +170773891612,215,0 +170773891660,216,0 +170773891708,215,0 +170773891756,215,0 +170773891804,213,0 +170773891852,213,0 +170773891901,213,0 +170773891949,214,0 +170773891999,214,0 +170773892047,214,0 +170773892095,214,0 +170773892144,214,0 +170773892192,214,0 +170773892242,214,0 +170773892290,215,0 +170773892339,215,0 +170773892388,215,0 +170773892436,215,0 +170773892484,215,0 +170773892532,215,0 +170773892580,215,0 +170773892629,214,0 +170773892677,214,0 +170773892725,214,0 +170773892775,214,0 +170773892823,214,0 +170773892872,214,0 +170773892920,214,0 +170773892969,214,0 +170773893017,214,0 +170773893065,215,0 +170773893113,214,0 +170773893161,215,0 +170773893209,215,0 +170773893257,215,0 +170773893305,215,0 +170773893353,215,0 +170773893400,215,0 +170773893448,214,0 +170773893498,213,0 +170773893546,214,0 +170773893594,214,0 +170773893642,214,0 +170773893691,214,0 +170773893739,214,0 +170773893789,214,0 +170773893838,214,0 +170773893886,214,0 +170773893935,215,0 +170773893983,214,0 +170773894031,215,0 +170773894081,215,0 +170773894129,215,0 +170773894177,215,0 +170773894226,215,0 +170773894276,214,0 +170773894324,214,0 +170773894372,214,0 +170773894421,214,0 +170773894469,214,0 +170773894517,214,0 +170773894565,214,0 +170773894613,214,0 +170773894661,214,0 +170773894709,214,0 +170773894757,215,0 +170773894805,215,0 +170773894852,215,0 +170773894900,215,0 +170773894950,215,0 +170773894998,215,0 +170773895046,215,0 +170773895093,214,0 +170773895143,213,0 +170773895191,214,0 +170773895239,214,0 +170773895288,214,0 +170773895336,214,0 +170773895384,214,0 +170773895432,215,0 +170773895481,214,0 +170773895531,215,0 +170773895579,215,0 +170773895627,215,0 +170773895675,215,0 +170773895723,215,0 +170773895772,215,0 +170773895820,215,0 +170773895868,215,0 +170773895916,215,0 +170773895965,214,0 +170773896013,214,0 +170773896063,214,0 +170773896111,214,0 +170773896160,214,0 +170773896208,214,0 +170773896258,214,0 +170773896307,215,0 +170773896355,215,0 +170773896403,215,0 +170773896451,215,0 +170773896500,215,0 +170773896548,215,0 +170773896596,215,0 +170773896644,215,0 +170773896692,215,0 +170773896739,215,0 +170773896789,214,0 +170773896837,214,0 +170773896886,214,0 +170773896934,214,0 +170773896982,215,0 +170773897032,214,0 +170773897081,214,0 +170773897129,214,0 +170773897179,215,0 +170773897228,215,0 +170773897278,215,0 +170773897327,215,0 +170773897375,215,0 +170773897425,215,0 +170773897474,215,0 +170773897522,215,0 +170773897570,215,0 +170773897618,214,0 +170773897666,214,0 +170773897714,214,0 +170773897762,214,0 +170773897810,214,0 +170773897857,214,0 +170773897905,214,0 +170773897953,215,0 +170773898001,215,0 +170773898049,215,0 +170773898098,215,0 +170773898146,215,0 +170773898194,215,0 +170773898242,215,0 +170773898292,215,0 +170773898341,215,0 +170773898391,215,0 +170773898439,214,0 +170773898488,214,0 +170773898538,214,0 +170773898586,214,0 +170773898634,214,0 +170773898682,214,0 +170773898729,214,0 +170773898779,215,0 +170773898827,215,0 +170773898875,215,0 +170773898922,215,0 +170773898970,215,0 +170773899020,215,0 +170773899067,215,0 +170773899115,215,0 +170773899163,215,0 +170773899211,215,0 +170773899259,214,0 +170773899307,214,0 +170773899355,214,0 +170773899403,214,0 +170773899451,214,0 +170773899499,214,0 +170773899546,214,0 +170773899596,214,0 +170773899646,214,0 +170773899695,215,0 +170773899745,215,0 +170773899794,215,0 +170773899843,215,0 +170773899891,215,0 +170773899939,215,0 +170773899987,215,0 +170773900035,215,0 +170773900083,213,0 +170773900131,214,0 +170773900180,214,0 +170773900228,214,0 +170773900276,214,0 +170773900324,214,0 +170773900372,214,0 +170773900420,215,0 +170773900468,214,0 +170773900516,214,0 +170773900564,214,0 +170773900611,215,0 +170773900659,215,0 +170773900707,215,0 +170773900755,215,0 +170773900803,215,0 +170773900851,215,0 +170773900898,215,0 +170773900946,215,0 +170773900994,215,0 +170773901042,215,0 +170773901090,215,0 +170773901139,215,0 +170773901187,215,0 +170773901236,215,0 +170773901284,214,0 +170773901332,214,0 +170773901380,214,0 +170773901430,214,0 +170773901478,214,0 +170773901527,215,0 +170773901577,214,0 +170773901626,214,0 +170773901674,215,0 +170773901722,215,0 +170773901770,215,0 +170773901818,215,0 +170773901866,215,0 +170773901915,215,0 +170773901963,215,0 +170773902011,215,0 +170773902061,214,0 +170773902108,213,0 +170773902156,213,0 +170773902204,213,0 +170773902252,213,0 +170773902300,214,0 +170773902347,214,0 +170773902395,214,0 +170773902443,214,0 +170773902491,214,0 +170773902539,214,0 +170773902588,214,0 +170773902638,214,0 +170773902687,215,0 +170773902735,214,0 +170773902783,215,0 +170773902833,215,0 +170773902881,213,0 +170773902930,213,0 +170773902980,213,0 +170773903029,213,0 +170773903077,213,0 +170773903125,214,0 +170773903173,214,0 +170773903221,214,0 +170773903268,214,0 +170773903316,214,0 +170773903364,214,0 +170773903412,215,0 +170773903460,215,0 +170773903509,215,0 +170773903557,215,0 +170773903605,214,0 +170773903653,215,0 +170773903701,213,0 +170773903749,213,0 +170773903797,213,0 +170773903846,214,0 +170773903896,214,0 +170773903943,214,0 +170773903993,214,0 +170773904042,214,0 +170773904092,214,0 +170773904140,214,0 +170773904188,215,0 +170773904236,215,0 +170773904284,215,0 +170773904332,215,0 +170773904380,215,0 +170773904428,215,0 +170773904475,214,0 +170773904525,213,0 +170773904573,214,0 +170773904622,214,0 +170773904670,214,0 +170773904720,214,0 +170773904768,214,0 +170773904817,214,0 +170773904865,214,0 +170773904914,214,0 +170773904962,214,0 +170773905012,215,0 +170773905060,215,0 +170773905109,215,0 +170773905159,215,0 +170773905207,215,0 +170773905256,215,0 +170773905306,214,0 +170773905355,214,0 +170773905405,214,0 +170773905453,214,0 +170773905502,214,0 +170773905550,214,0 +170773905598,214,0 +170773905648,215,0 +170773905696,214,0 +170773905743,215,0 +170773905791,215,0 +170773905841,215,0 +170773905890,215,0 +170773905938,215,0 +170773905986,215,0 +170773906036,215,0 +170773906084,214,0 +170773906131,214,0 +170773906181,214,0 +170773906230,214,0 +170773906278,214,0 +170773906326,214,0 +170773906376,214,0 +170773906424,215,0 +170773906472,215,0 +170773906520,215,0 +170773906568,215,0 +170773906616,215,0 +170773906665,215,0 +170773906713,215,0 +170773906761,215,0 +170773906811,215,0 +170773906858,215,0 +170773906908,214,0 +170773906956,214,0 +170773907004,214,0 +170773907052,214,0 +170773907100,214,0 +170773907148,214,0 +170773907196,215,0 +170773907243,214,0 +170773907293,215,0 +170773907341,215,0 +170773907389,215,0 +170773907438,215,0 +170773907488,215,0 +170773907536,215,0 +170773907584,215,0 +170773907633,215,0 +170773907683,214,0 +170773907731,214,0 +170773907779,214,0 +170773907827,214,0 +170773907874,214,0 +170773907922,215,0 +170773907970,215,0 +170773908018,215,0 +170773908068,215,0 +170773908115,215,0 +170773908163,215,0 +170773908211,215,0 +170773908259,215,0 +170773908307,215,0 +170773908355,215,0 +170773908405,215,0 +170773908453,215,0 +170773908500,214,0 +170773908549,214,0 +170773908597,214,0 +170773908646,214,0 +170773908694,215,0 +170773908742,215,0 +170773908790,215,0 +170773908838,215,0 +170773908886,215,0 +170773908934,215,0 +170773908983,215,0 +170773909031,215,0 +170773909079,215,0 +170773909129,215,0 +170773909178,215,0 +170773909226,215,0 +170773909276,215,0 +170773909325,214,0 +170773909373,214,0 +170773909421,214,0 +170773909469,214,0 +170773909517,214,0 +170773909564,214,0 +170773909614,214,0 +170773909663,215,0 +170773909713,215,0 +170773909762,214,0 +170773909810,215,0 +170773909858,215,0 +170773909906,215,0 +170773909953,215,0 +170773910001,215,0 +170773910049,215,0 +170773910097,215,0 +170773910145,214,0 +170773910193,214,0 +170773910241,214,0 +170773910288,214,0 +170773910336,214,0 +170773910384,215,0 +170773910432,215,0 +170773910480,215,0 +170773910528,215,0 +170773910577,215,0 +170773910625,215,0 +170773910673,215,0 +170773910721,215,0 +170773910768,215,0 +170773910816,215,0 +170773910864,215,0 +170773910912,214,0 +170773910960,214,0 +170773911007,214,0 +170773911055,214,0 +170773911103,214,0 +170773911151,215,0 +170773911199,215,0 +170773911248,215,0 +170773911296,215,0 +170773911344,215,0 +170773911392,215,0 +170773911440,215,0 +170773911487,216,0 +170773911535,215,0 +170773911583,215,0 +170773911631,215,0 +170773911679,215,0 +170773911727,215,0 +170773911775,214,0 +170773911823,214,0 +170773911871,215,0 +170773911918,215,0 +170773911966,215,0 +170773912014,215,0 +170773912062,215,0 +170773912112,215,0 +170773912160,215,0 +170773912207,215,0 +170773912255,215,0 +170773912305,215,0 +170773912353,215,0 +170773912401,215,0 +170773912448,215,0 +170773912496,215,0 +170773912546,214,0 +170773912593,214,0 +170773912641,214,0 +170773912689,214,0 +170773912737,214,0 +170773912787,215,0 +170773912835,215,0 +170773912882,215,0 +170773912932,215,0 +170773912980,215,0 +170773913028,215,0 +170773913075,215,0 +170773913123,215,0 +170773913171,215,0 +170773913219,215,0 +170773913268,215,0 +170773913316,215,0 +170773913364,214,0 +170773913412,214,0 +170773913461,214,0 +170773913509,214,0 +170773913557,214,0 +170773913605,214,0 +170773913652,215,0 +170773913700,215,0 +170773913748,215,0 +170773913797,215,0 +170773913845,215,0 +170773913893,215,0 +170773913941,215,0 +170773913989,215,0 +170773914037,215,0 +170773914085,215,0 +170773914132,214,0 +170773914180,214,0 +170773914228,214,0 +170773914276,214,0 +170773914326,214,0 +170773914373,214,0 +170773914421,214,0 +170773914469,215,0 +170773914517,215,0 +170773914565,215,0 +170773914614,215,0 +170773914662,215,0 +170773914710,215,0 +170773914758,215,0 +170773914805,215,0 +170773914853,215,0 +170773914901,215,0 +170773914949,214,0 +170773914997,214,0 +170773915045,214,0 +170773915093,214,0 +170773915140,214,0 +170773915188,215,0 +170773915236,214,0 +170773915284,215,0 +170773915332,215,0 +170773915381,215,0 +170773915429,215,0 +170773915477,215,0 +170773915525,215,0 +170773915574,215,0 +170773915622,215,0 +170773915670,215,0 +170773915718,215,0 +170773915767,214,0 +170773915817,214,0 +170773915864,214,0 +170773915912,214,0 +170773915960,214,0 +170773916008,214,0 +170773916056,215,0 +170773916104,215,0 +170773916153,215,0 +170773916201,215,0 +170773916249,215,0 +170773916297,215,0 +170773916344,215,0 +170773916392,215,0 +170773916440,216,0 +170773916488,215,0 +170773916536,215,0 +170773916584,214,0 +170773916632,214,0 +170773916679,214,0 +170773916727,214,0 +170773916775,214,0 +170773916823,214,0 +170773916871,214,0 +170773916918,214,0 +170773916966,214,0 +170773917014,215,0 +170773917064,215,0 +170773917111,215,0 +170773917159,215,0 +170773917207,215,0 +170773917255,215,0 +170773917303,215,0 +170773917351,214,0 +170773917400,214,0 +170773917448,214,0 +170773917496,214,0 +170773917544,214,0 +170773917591,214,0 +170773917639,214,0 +170773917687,214,0 +170773917735,214,0 +170773917783,214,0 +170773917831,215,0 +170773917880,215,0 +170773917928,215,0 +170773917976,215,0 +170773918023,215,0 +170773918071,215,0 +170773918119,215,0 +170773918167,214,0 +170773918216,214,0 +170773918264,214,0 +170773918314,214,0 +170773918363,214,0 +170773918411,214,0 +170773918459,215,0 +170773918507,215,0 +170773918555,215,0 +170773918603,215,0 +170773918651,215,0 +170773918701,215,0 +170773918749,215,0 +170773918798,215,0 +170773918846,215,0 +170773918894,215,0 +170773918942,215,0 +170773918990,214,0 +170773919040,214,0 +170773919087,214,0 +170773919136,214,0 +170773919185,215,0 +170773919235,215,0 +170773919282,215,0 +170773919332,215,0 +170773919380,215,0 +170773919428,215,0 +170773919476,215,0 +170773919525,215,0 +170773919573,215,0 +170773919621,215,0 +170773919669,215,0 +170773919717,215,0 +170773919765,214,0 +170773919813,214,0 +170773919862,214,0 +170773919910,214,0 +170773919958,214,0 +170773920006,214,0 diff --git a/laser_value/0212-22.csv b/laser_value/0212-22.csv new file mode 100644 index 0000000..d903e69 --- /dev/null +++ b/laser_value/0212-22.csv @@ -0,0 +1,7435 @@ +timestamp,laser_value,event +170773920056,215,0 +170773920104,214,0 +170773920152,215,0 +170773920202,215,0 +170773920251,215,0 +170773920299,215,0 +170773920347,215,0 +170773920395,215,0 +170773920444,215,0 +170773920492,215,0 +170773920542,215,0 +170773920591,213,0 +170773920641,214,0 +170773920690,214,0 +170773920738,214,0 +170773920786,214,0 +170773920834,214,0 +170773920882,214,0 +170773920930,214,0 +170773920979,215,0 +170773921029,215,0 +170773921077,215,0 +170773921125,215,0 +170773921173,215,0 +170773921221,215,0 +170773921269,215,0 +170773921317,215,0 +170773921364,214,0 +170773921412,213,0 +170773921460,213,0 +170773921510,214,0 +170773921558,214,0 +170773921606,214,0 +170773921653,214,0 +170773921701,214,0 +170773921751,214,0 +170773921800,214,0 +170773921848,214,0 +170773921898,214,0 +170773921946,214,0 +170773921994,215,0 +170773922042,215,0 +170773922091,215,0 +170773922140,215,0 +170773922190,214,0 +170773922239,213,0 +170773922287,214,0 +170773922335,213,0 +170773922383,214,0 +170773922431,214,0 +170773922480,214,0 +170773922530,214,0 +170773922578,214,0 +170773922626,214,0 +170773922675,214,0 +170773922723,214,0 +170773922771,215,0 +170773922819,215,0 +170773922867,214,0 +170773922915,215,0 +170773922963,215,0 +170773923012,213,0 +170773923060,213,0 +170773923110,214,0 +170773923159,214,0 +170773923207,214,0 +170773923256,214,0 +170773923304,214,0 +170773923354,214,0 +170773923403,214,0 +170773923451,215,0 +170773923501,215,0 +170773923549,215,0 +170773923597,215,0 +170773923645,215,0 +170773923694,215,0 +170773923742,215,0 +170773923792,214,0 +170773923841,214,0 +170773923889,214,0 +170773923939,214,0 +170773923986,214,0 +170773924034,214,0 +170773924084,214,0 +170773924132,214,0 +170773924180,214,0 +170773924228,214,0 +170773924277,215,0 +170773924327,215,0 +170773924374,215,0 +170773924422,215,0 +170773924470,215,0 +170773924518,215,0 +170773924566,215,0 +170773924614,214,0 +170773924662,214,0 +170773924709,214,0 +170773924757,214,0 +170773924805,214,0 +170773924853,214,0 +170773924901,214,0 +170773924949,215,0 +170773924998,215,0 +170773925046,215,0 +170773925094,215,0 +170773925142,215,0 +170773925190,215,0 +170773925238,215,0 +170773925287,215,0 +170773925335,215,0 +170773925385,214,0 +170773925434,214,0 +170773925484,214,0 +170773925532,214,0 +170773925581,214,0 +170773925629,214,0 +170773925677,214,0 +170773925725,215,0 +170773925773,214,0 +170773925822,215,0 +170773925870,215,0 +170773925918,215,0 +170773925966,215,0 +170773926016,215,0 +170773926063,215,0 +170773926111,215,0 +170773926159,215,0 +170773926207,214,0 +170773926255,214,0 +170773926303,214,0 +170773926351,214,0 +170773926399,214,0 +170773926448,214,0 +170773926496,214,0 +170773926544,214,0 +170773926592,215,0 +170773926640,215,0 +170773926688,215,0 +170773926736,215,0 +170773926784,215,0 +170773926832,215,0 +170773926880,215,0 +170773926929,215,0 +170773926978,214,0 +170773927028,214,0 +170773927077,214,0 +170773927125,214,0 +170773927175,214,0 +170773927223,214,0 +170773927271,215,0 +170773927320,215,0 +170773927368,214,0 +170773927417,215,0 +170773927465,215,0 +170773927513,215,0 +170773927561,215,0 +170773927609,215,0 +170773927657,215,0 +170773927707,215,0 +170773927755,214,0 +170773927804,214,0 +170773927852,214,0 +170773927900,214,0 +170773927948,214,0 +170773927996,215,0 +170773928045,215,0 +170773928093,215,0 +170773928141,215,0 +170773928189,215,0 +170773928236,215,0 +170773928284,215,0 +170773928334,215,0 +170773928383,215,0 +170773928431,215,0 +170773928480,215,0 +170773928528,215,0 +170773928578,215,0 +170773928625,214,0 +170773928673,214,0 +170773928721,214,0 +170773928769,215,0 +170773928819,215,0 +170773928867,215,0 +170773928914,215,0 +170773928962,215,0 +170773929012,215,0 +170773929061,215,0 +170773929111,215,0 +170773929159,215,0 +170773929208,215,0 +170773929256,215,0 +170773929306,215,0 +170773929355,215,0 +170773929403,214,0 +170773929451,214,0 +170773929500,214,0 +170773929548,214,0 +170773929596,214,0 +170773929644,214,0 +170773929693,214,0 +170773929743,214,0 +170773929791,215,0 +170773929838,215,0 +170773929886,215,0 +170773929934,215,0 +170773929982,215,0 +170773930030,215,0 +170773930078,215,0 +170773930125,215,0 +170773930173,214,0 +170773930221,214,0 +170773930269,214,0 +170773930317,214,0 +170773930366,214,0 +170773930414,214,0 +170773930463,215,0 +170773930511,215,0 +170773930559,215,0 +170773930607,215,0 +170773930655,215,0 +170773930702,215,0 +170773930750,215,0 +170773930800,215,0 +170773930848,216,0 +170773930896,215,0 +170773930944,215,0 +170773930992,214,0 +170773931041,213,0 +170773931090,214,0 +170773931140,214,0 +170773931189,214,0 +170773931237,214,0 +170773931285,214,0 +170773931333,215,0 +170773931381,215,0 +170773931429,215,0 +170773931478,215,0 +170773931526,215,0 +170773931576,215,0 +170773931624,215,0 +170773931672,215,0 +170773931719,215,0 +170773931769,215,0 +170773931817,213,0 +170773931866,213,0 +170773931914,213,0 +170773931962,214,0 +170773932011,214,0 +170773932059,214,0 +170773932107,214,0 +170773932155,214,0 +170773932203,214,0 +170773932251,214,0 +170773932299,214,0 +170773932347,214,0 +170773932394,215,0 +170773932442,215,0 +170773932490,215,0 +170773932538,215,0 +170773932586,215,0 +170773932634,213,0 +170773932682,214,0 +170773932730,214,0 +170773932778,214,0 +170773932827,214,0 +170773932877,214,0 +170773932925,214,0 +170773932973,214,0 +170773933020,214,0 +170773933068,214,0 +170773933118,214,0 +170773933166,215,0 +170773933213,215,0 +170773933261,215,0 +170773933311,215,0 +170773933360,215,0 +170773933408,214,0 +170773933458,213,0 +170773933505,213,0 +170773933553,214,0 +170773933603,214,0 +170773933651,214,0 +170773933699,214,0 +170773933748,214,0 +170773933796,214,0 +170773933844,214,0 +170773933892,215,0 +170773933940,214,0 +170773933988,215,0 +170773934037,215,0 +170773934087,215,0 +170773934135,215,0 +170773934184,215,0 +170773934232,213,0 +170773934280,214,0 +170773934329,214,0 +170773934377,213,0 +170773934427,214,0 +170773934476,214,0 +170773934526,214,0 +170773934575,214,0 +170773934625,214,0 +170773934673,214,0 +170773934721,214,0 +170773934769,215,0 +170773934816,214,0 +170773934864,215,0 +170773934912,215,0 +170773934960,215,0 +170773935008,214,0 +170773935057,213,0 +170773935107,213,0 +170773935155,214,0 +170773935203,214,0 +170773935251,214,0 +170773935299,214,0 +170773935346,214,0 +170773935396,214,0 +170773935444,214,0 +170773935492,214,0 +170773935541,214,0 +170773935589,215,0 +170773935637,215,0 +170773935686,215,0 +170773935734,215,0 +170773935782,215,0 +170773935830,213,0 +170773935878,214,0 +170773935927,213,0 +170773935975,214,0 +170773936025,214,0 +170773936073,214,0 +170773936121,214,0 +170773936168,214,0 +170773936216,214,0 +170773936264,214,0 +170773936312,214,0 +170773936360,214,0 +170773936408,214,0 +170773936456,215,0 +170773936504,215,0 +170773936552,215,0 +170773936600,215,0 +170773936649,214,0 +170773936697,213,0 +170773936745,214,0 +170773936794,213,0 +170773936843,213,0 +170773936891,214,0 +170773936939,214,0 +170773936987,214,0 +170773937035,214,0 +170773937083,214,0 +170773937131,215,0 +170773937180,215,0 +170773937228,215,0 +170773937278,215,0 +170773937325,215,0 +170773937375,215,0 +170773937423,214,0 +170773937472,214,0 +170773937520,214,0 +170773937570,214,0 +170773937618,214,0 +170773937666,214,0 +170773937715,214,0 +170773937765,215,0 +170773937812,215,0 +170773937860,215,0 +170773937910,215,0 +170773937958,215,0 +170773938006,215,0 +170773938054,215,0 +170773938102,215,0 +170773938150,215,0 +170773938199,214,0 +170773938249,215,0 +170773938298,215,0 +170773938346,215,0 +170773938394,215,0 +170773938442,215,0 +170773938492,215,0 +170773938541,215,0 +170773938591,215,0 +170773938639,215,0 +170773938687,215,0 +170773938735,215,0 +170773938782,215,0 +170773938830,215,0 +170773938878,215,0 +170773938926,215,0 +170773938974,215,0 +170773939022,214,0 +170773939069,214,0 +170773939119,214,0 +170773939167,214,0 +170773939216,214,0 +170773939264,215,0 +170773939312,215,0 +170773939361,215,0 +170773939409,214,0 +170773939457,215,0 +170773939505,215,0 +170773939553,215,0 +170773939600,215,0 +170773939648,215,0 +170773939696,215,0 +170773939744,215,0 +170773939792,215,0 +170773939840,214,0 +170773939888,215,0 +170773939935,214,0 +170773939985,215,0 +170773940034,215,0 +170773940082,215,0 +170773940130,215,0 +170773940178,215,0 +170773940227,215,0 +170773940274,215,0 +170773940322,215,0 +170773940372,215,0 +170773940420,215,0 +170773940468,215,0 +170773940517,215,0 +170773940565,215,0 +170773940613,214,0 +170773940661,214,0 +170773940710,214,0 +170773940760,215,0 +170773940809,215,0 +170773940859,215,0 +170773940907,215,0 +170773940956,215,0 +170773941006,215,0 +170773941054,215,0 +170773941102,215,0 +170773941149,215,0 +170773941197,215,0 +170773941245,215,0 +170773941293,215,0 +170773941341,215,0 +170773941389,215,0 +170773941439,214,0 +170773941487,214,0 +170773941536,214,0 +170773941584,215,0 +170773941632,215,0 +170773941680,215,0 +170773941728,215,0 +170773941777,215,0 +170773941827,215,0 +170773941876,215,0 +170773941924,215,0 +170773941973,215,0 +170773942023,215,0 +170773942071,215,0 +170773942120,215,0 +170773942168,215,0 +170773942218,214,0 +170773942267,214,0 +170773942317,214,0 +170773942365,214,0 +170773942413,214,0 +170773942461,214,0 +170773942510,214,0 +170773942558,215,0 +170773942608,215,0 +170773942657,215,0 +170773942705,215,0 +170773942753,215,0 +170773942801,215,0 +170773942849,215,0 +170773942897,215,0 +170773942944,215,0 +170773942992,215,0 +170773943042,214,0 +170773943090,214,0 +170773943138,214,0 +170773943187,214,0 +170773943235,214,0 +170773943283,214,0 +170773943331,214,0 +170773943379,214,0 +170773943429,214,0 +170773943478,215,0 +170773943526,214,0 +170773943575,215,0 +170773943623,215,0 +170773943671,215,0 +170773943721,215,0 +170773943770,215,0 +170773943820,214,0 +170773943868,214,0 +170773943916,214,0 +170773943963,214,0 +170773944011,214,0 +170773944059,214,0 +170773944107,214,0 +170773944155,214,0 +170773944204,214,0 +170773944252,215,0 +170773944300,215,0 +170773944348,215,0 +170773944396,215,0 +170773944444,215,0 +170773944492,215,0 +170773944540,215,0 +170773944589,215,0 +170773944637,214,0 +170773944685,214,0 +170773944735,214,0 +170773944783,214,0 +170773944832,214,0 +170773944880,214,0 +170773944928,214,0 +170773944976,214,0 +170773945026,214,0 +170773945075,214,0 +170773945125,215,0 +170773945173,215,0 +170773945221,215,0 +170773945269,215,0 +170773945318,215,0 +170773945366,215,0 +170773945416,214,0 +170773945464,214,0 +170773945513,214,0 +170773945563,214,0 +170773945612,214,0 +170773945660,214,0 +170773945710,214,0 +170773945759,214,0 +170773945807,214,0 +170773945857,214,0 +170773945906,215,0 +170773945954,215,0 +170773946002,215,0 +170773946051,215,0 +170773946099,215,0 +170773946149,215,0 +170773946198,215,0 +170773946248,213,0 +170773946296,213,0 +170773946344,214,0 +170773946393,214,0 +170773946441,214,0 +170773946491,214,0 +170773946538,214,0 +170773946588,214,0 +170773946636,214,0 +170773946684,215,0 +170773946732,215,0 +170773946780,215,0 +170773946828,215,0 +170773946876,215,0 +170773946923,216,0 +170773946973,215,0 +170773947022,214,0 +170773947070,213,0 +170773947118,214,0 +170773947166,214,0 +170773947216,214,0 +170773947264,214,0 +170773947312,214,0 +170773947362,214,0 +170773947410,214,0 +170773947459,214,0 +170773947507,214,0 +170773947555,215,0 +170773947603,215,0 +170773947651,214,0 +170773947701,215,0 +170773947749,215,0 +170773947797,214,0 +170773947846,213,0 +170773947896,213,0 +170773947943,213,0 +170773947991,214,0 +170773948039,214,0 +170773948089,214,0 +170773948137,214,0 +170773948186,214,0 +170773948234,214,0 +170773948282,214,0 +170773948330,214,0 +170773948378,214,0 +170773948427,214,0 +170773948477,214,0 +170773948526,215,0 +170773948574,215,0 +170773948622,214,0 +170773948672,213,0 +170773948721,213,0 +170773948771,213,0 +170773948819,213,0 +170773948867,214,0 +170773948916,214,0 +170773948964,214,0 +170773949012,214,0 +170773949061,214,0 +170773949109,214,0 +170773949159,214,0 +170773949208,214,0 +170773949256,215,0 +170773949304,215,0 +170773949354,215,0 +170773949403,214,0 +170773949451,213,0 +170773949499,213,0 +170773949547,214,0 +170773949595,214,0 +170773949643,214,0 +170773949691,214,0 +170773949739,214,0 +170773949787,214,0 +170773949836,214,0 +170773949884,215,0 +170773949932,215,0 +170773949980,215,0 +170773950028,215,0 +170773950076,215,0 +170773950124,215,0 +170773950172,215,0 +170773950221,214,0 +170773950271,214,0 +170773950319,214,0 +170773950367,214,0 +170773950416,214,0 +170773950466,214,0 +170773950514,214,0 +170773950561,214,0 +170773950611,214,0 +170773950660,215,0 +170773950708,215,0 +170773950756,215,0 +170773950806,215,0 +170773950854,215,0 +170773950902,215,0 +170773950951,215,0 +170773951000,214,0 +170773951048,215,0 +170773951096,214,0 +170773951144,215,0 +170773951192,215,0 +170773951242,215,0 +170773951290,215,0 +170773951337,215,0 +170773951385,215,0 +170773951435,215,0 +170773951484,215,0 +170773951532,215,0 +170773951580,215,0 +170773951630,215,0 +170773951679,215,0 +170773951729,215,0 +170773951777,215,0 +170773951825,215,0 +170773951874,214,0 +170773951924,215,0 +170773951973,215,0 +170773952021,215,0 +170773952069,215,0 +170773952117,215,0 +170773952165,215,0 +170773952214,215,0 +170773952264,215,0 +170773952314,215,0 +170773952363,215,0 +170773952413,215,0 +170773952462,215,0 +170773952512,215,0 +170773952561,215,0 +170773952611,214,0 +170773952660,214,0 +170773952710,214,0 +170773952759,214,0 +170773952807,214,0 +170773952855,214,0 +170773952903,215,0 +170773952951,215,0 +170773952999,215,0 +170773953047,215,0 +170773953095,215,0 +170773953143,215,0 +170773953191,215,0 +170773953240,215,0 +170773953290,215,0 +170773953338,215,0 +170773953387,215,0 +170773953435,214,0 +170773953483,214,0 +170773953531,214,0 +170773953578,214,0 +170773953626,215,0 +170773953674,215,0 +170773953722,215,0 +170773953771,215,0 +170773953819,215,0 +170773953868,215,0 +170773953916,215,0 +170773953964,215,0 +170773954012,215,0 +170773954060,215,0 +170773954107,215,0 +170773954157,215,0 +170773954205,214,0 +170773954252,214,0 +170773954300,214,0 +170773954350,214,0 +170773954397,214,0 +170773954445,214,0 +170773954493,214,0 +170773954541,214,0 +170773954589,215,0 +170773954637,215,0 +170773954684,215,0 +170773954732,215,0 +170773954782,215,0 +170773954830,215,0 +170773954879,215,0 +170773954927,215,0 +170773954975,215,0 +170773955025,213,0 +170773955074,213,0 +170773955122,214,0 +170773955170,214,0 +170773955220,214,0 +170773955268,214,0 +170773955315,214,0 +170773955363,214,0 +170773955411,214,0 +170773955461,214,0 +170773955509,215,0 +170773955557,215,0 +170773955605,214,0 +170773955653,215,0 +170773955702,215,0 +170773955750,215,0 +170773955800,214,0 +170773955849,213,0 +170773955899,213,0 +170773955946,213,0 +170773955996,214,0 +170773956044,214,0 +170773956093,214,0 +170773956141,214,0 +170773956191,214,0 +170773956239,214,0 +170773956288,214,0 +170773956336,215,0 +170773956386,215,0 +170773956434,215,0 +170773956482,215,0 +170773956531,215,0 +170773956581,214,0 +170773956629,213,0 +170773956678,213,0 +170773956728,214,0 +170773956777,214,0 +170773956827,214,0 +170773956876,214,0 +170773956924,214,0 +170773956974,214,0 +170773957023,214,0 +170773957071,214,0 +170773957119,214,0 +170773957167,215,0 +170773957216,215,0 +170773957264,215,0 +170773957312,215,0 +170773957360,215,0 +170773957408,214,0 +170773957458,213,0 +170773957506,214,0 +170773957555,214,0 +170773957603,214,0 +170773957651,214,0 +170773957701,214,0 +170773957750,214,0 +170773957798,214,0 +170773957846,214,0 +170773957896,215,0 +170773957945,215,0 +170773957995,215,0 +170773958043,215,0 +170773958091,215,0 +170773958139,215,0 +170773958188,214,0 +170773958236,213,0 +170773958284,214,0 +170773958332,214,0 +170773958380,214,0 +170773958427,214,0 +170773958475,214,0 +170773958523,214,0 +170773958571,214,0 +170773958620,214,0 +170773958668,214,0 +170773958716,214,0 +170773958764,215,0 +170773958812,215,0 +170773958860,215,0 +170773958907,215,0 +170773958955,215,0 +170773959003,214,0 +170773959051,214,0 +170773959099,214,0 +170773959147,214,0 +170773959195,214,0 +170773959243,214,0 +170773959290,214,0 +170773959338,214,0 +170773959386,214,0 +170773959434,214,0 +170773959482,215,0 +170773959530,215,0 +170773959579,215,0 +170773959627,215,0 +170773959675,215,0 +170773959724,215,0 +170773959772,214,0 +170773959821,214,0 +170773959871,214,0 +170773959919,214,0 +170773959966,214,0 +170773960014,214,0 +170773960062,214,0 +170773960110,214,0 +170773960159,214,0 +170773960207,214,0 +170773960255,215,0 +170773960303,215,0 +170773960351,215,0 +170773960399,215,0 +170773960449,215,0 +170773960496,215,0 +170773960544,215,0 +170773960594,214,0 +170773960642,214,0 +170773960690,214,0 +170773960737,214,0 +170773960787,214,0 +170773960835,214,0 +170773960884,214,0 +170773960932,214,0 +170773960982,215,0 +170773961030,215,0 +170773961078,215,0 +170773961126,215,0 +170773961175,215,0 +170773961225,215,0 +170773961273,215,0 +170773961321,215,0 +170773961369,214,0 +170773961417,214,0 +170773961464,214,0 +170773961512,214,0 +170773961560,214,0 +170773961608,214,0 +170773961656,214,0 +170773961704,214,0 +170773961752,215,0 +170773961801,215,0 +170773961849,215,0 +170773961897,215,0 +170773961945,215,0 +170773961995,215,0 +170773962044,215,0 +170773962094,215,0 +170773962141,215,0 +170773962191,213,0 +170773962240,214,0 +170773962288,214,0 +170773962338,214,0 +170773962387,214,0 +170773962435,214,0 +170773962483,214,0 +170773962531,214,0 +170773962579,215,0 +170773962629,215,0 +170773962678,215,0 +170773962726,215,0 +170773962774,215,0 +170773962823,215,0 +170773962873,215,0 +170773962921,215,0 +170773962970,214,0 +170773963020,214,0 +170773963068,214,0 +170773963116,214,0 +170773963164,214,0 +170773963212,214,0 +170773963260,214,0 +170773963309,214,0 +170773963357,214,0 +170773963405,215,0 +170773963453,215,0 +170773963501,214,0 +170773963549,215,0 +170773963596,215,0 +170773963644,215,0 +170773963694,215,0 +170773963742,215,0 +170773963791,214,0 +170773963839,214,0 +170773963889,214,0 +170773963938,214,0 +170773963986,214,0 +170773964035,214,0 +170773964085,214,0 +170773964135,214,0 +170773964182,215,0 +170773964230,215,0 +170773964278,215,0 +170773964328,215,0 +170773964376,215,0 +170773964424,215,0 +170773964472,215,0 +170773964520,215,0 +170773964569,215,0 +170773964617,215,0 +170773964665,215,0 +170773964715,214,0 +170773964763,214,0 +170773964810,215,0 +170773964858,215,0 +170773964906,215,0 +170773964954,215,0 +170773965004,215,0 +170773965053,215,0 +170773965103,215,0 +170773965151,215,0 +170773965201,215,0 +170773965249,215,0 +170773965296,215,0 +170773965344,214,0 +170773965392,214,0 +170773965440,214,0 +170773965490,214,0 +170773965538,214,0 +170773965587,214,0 +170773965635,214,0 +170773965683,214,0 +170773965733,214,0 +170773965781,214,0 +170773965828,215,0 +170773965876,215,0 +170773965926,215,0 +170773965975,215,0 +170773966025,215,0 +170773966073,215,0 +170773966121,215,0 +170773966169,214,0 +170773966218,214,0 +170773966268,214,0 +170773966316,214,0 +170773966364,214,0 +170773966412,214,0 +170773966459,214,0 +170773966507,214,0 +170773966555,214,0 +170773966603,215,0 +170773966651,215,0 +170773966699,215,0 +170773966748,215,0 +170773966796,215,0 +170773966846,215,0 +170773966894,215,0 +170773966942,214,0 +170773966991,214,0 +170773967039,214,0 +170773967088,214,0 +170773967136,214,0 +170773967184,214,0 +170773967234,215,0 +170773967282,215,0 +170773967329,215,0 +170773967377,215,0 +170773967427,215,0 +170773967475,215,0 +170773967523,215,0 +170773967571,215,0 +170773967620,215,0 +170773967669,215,0 +170773967719,215,0 +170773967767,214,0 +170773967815,214,0 +170773967864,214,0 +170773967912,214,0 +170773967960,214,0 +170773968008,214,0 +170773968057,214,0 +170773968105,214,0 +170773968153,214,0 +170773968201,214,0 +170773968251,214,0 +170773968298,214,0 +170773968346,215,0 +170773968396,215,0 +170773968444,215,0 +170773968492,215,0 +170773968540,214,0 +170773968588,214,0 +170773968636,214,0 +170773968685,214,0 +170773968733,214,0 +170773968781,214,0 +170773968829,214,0 +170773968877,214,0 +170773968926,214,0 +170773968974,214,0 +170773969024,215,0 +170773969073,214,0 +170773969121,215,0 +170773969169,215,0 +170773969218,215,0 +170773969268,215,0 +170773969316,214,0 +170773969364,213,0 +170773969413,214,0 +170773969462,214,0 +170773969510,214,0 +170773969560,214,0 +170773969608,214,0 +170773969656,214,0 +170773969703,214,0 +170773969751,215,0 +170773969801,214,0 +170773969849,215,0 +170773969898,215,0 +170773969948,215,0 +170773969995,215,0 +170773970043,215,0 +170773970093,214,0 +170773970141,214,0 +170773970190,214,0 +170773970238,214,0 +170773970286,214,0 +170773970335,214,0 +170773970383,214,0 +170773970433,214,0 +170773970480,215,0 +170773970530,215,0 +170773970578,215,0 +170773970626,215,0 +170773970674,215,0 +170773970723,215,0 +170773970771,215,0 +170773970820,215,0 +170773970870,214,0 +170773970918,214,0 +170773970967,214,0 +170773971016,214,0 +170773971064,214,0 +170773971114,214,0 +170773971162,214,0 +170773971210,214,0 +170773971258,215,0 +170773971307,215,0 +170773971355,215,0 +170773971403,215,0 +170773971451,215,0 +170773971500,215,0 +170773971548,215,0 +170773971598,215,0 +170773971647,215,0 +170773971697,214,0 +170773971745,213,0 +170773971794,214,0 +170773971842,214,0 +170773971892,214,0 +170773971939,214,0 +170773971989,214,0 +170773972037,214,0 +170773972085,214,0 +170773972133,215,0 +170773972181,215,0 +170773972229,215,0 +170773972276,215,0 +170773972324,215,0 +170773972372,215,0 +170773972420,215,0 +170773972468,214,0 +170773972517,214,0 +170773972565,214,0 +170773972613,214,0 +170773972663,214,0 +170773972711,214,0 +170773972759,214,0 +170773972807,215,0 +170773972855,214,0 +170773972904,214,0 +170773972952,215,0 +170773973000,215,0 +170773973049,215,0 +170773973097,215,0 +170773973147,215,0 +170773973195,215,0 +170773973243,214,0 +170773973292,214,0 +170773973340,214,0 +170773973388,214,0 +170773973435,214,0 +170773973483,214,0 +170773973533,214,0 +170773973582,214,0 +170773973632,214,0 +170773973680,214,0 +170773973729,215,0 +170773973779,215,0 +170773973828,215,0 +170773973876,215,0 +170773973924,215,0 +170773973972,215,0 +170773974021,214,0 +170773974069,213,0 +170773974117,214,0 +170773974165,213,0 +170773974214,214,0 +170773974262,214,0 +170773974310,214,0 +170773974360,214,0 +170773974408,214,0 +170773974456,214,0 +170773974504,214,0 +170773974552,214,0 +170773974601,215,0 +170773974651,215,0 +170773974699,215,0 +170773974747,215,0 +170773974794,215,0 +170773974844,213,0 +170773974892,213,0 +170773974941,213,0 +170773974989,214,0 +170773975039,214,0 +170773975087,214,0 +170773975135,214,0 +170773975183,214,0 +170773975231,214,0 +170773975279,214,0 +170773975328,214,0 +170773975376,214,0 +170773975426,215,0 +170773975475,215,0 +170773975523,214,0 +170773975571,215,0 +170773975619,214,0 +170773975667,213,0 +170773975715,213,0 +170773975763,214,0 +170773975810,214,0 +170773975858,214,0 +170773975906,214,0 +170773975956,214,0 +170773976004,215,0 +170773976052,214,0 +170773976100,215,0 +170773976148,215,0 +170773976196,215,0 +170773976244,215,0 +170773976293,215,0 +170773976341,215,0 +170773976389,214,0 +170773976437,214,0 +170773976486,214,0 +170773976534,215,0 +170773976582,215,0 +170773976630,215,0 +170773976678,215,0 +170773976728,215,0 +170773976776,215,0 +170773976824,215,0 +170773976873,215,0 +170773976921,215,0 +170773976969,215,0 +170773977017,215,0 +170773977065,215,0 +170773977113,215,0 +170773977162,215,0 +170773977210,214,0 +170773977259,214,0 +170773977307,214,0 +170773977355,214,0 +170773977403,215,0 +170773977451,215,0 +170773977499,215,0 +170773977548,215,0 +170773977596,215,0 +170773977644,215,0 +170773977692,215,0 +170773977741,215,0 +170773977789,215,0 +170773977837,215,0 +170773977887,215,0 +170773977936,215,0 +170773977984,214,0 +170773978032,214,0 +170773978081,214,0 +170773978131,214,0 +170773978179,214,0 +170773978227,214,0 +170773978275,214,0 +170773978324,214,0 +170773978372,215,0 +170773978420,215,0 +170773978468,215,0 +170773978516,215,0 +170773978564,215,0 +170773978614,215,0 +170773978662,215,0 +170773978710,215,0 +170773978759,214,0 +170773978807,214,0 +170773978857,214,0 +170773978905,214,0 +170773978953,214,0 +170773979001,215,0 +170773979048,214,0 +170773979096,215,0 +170773979146,215,0 +170773979194,215,0 +170773979243,215,0 +170773979293,215,0 +170773979341,215,0 +170773979389,215,0 +170773979438,215,0 +170773979488,215,0 +170773979536,214,0 +170773979585,214,0 +170773979635,214,0 +170773979684,214,0 +170773979732,214,0 +170773979782,215,0 +170773979830,214,0 +170773979879,215,0 +170773979927,215,0 +170773979976,215,0 +170773980026,215,0 +170773980075,215,0 +170773980123,215,0 +170773980171,215,0 +170773980219,215,0 +170773980267,215,0 +170773980315,215,0 +170773980363,214,0 +170773980410,214,0 +170773980458,214,0 +170773980508,215,0 +170773980556,214,0 +170773980605,215,0 +170773980653,215,0 +170773980703,215,0 +170773980751,215,0 +170773980799,215,0 +170773980848,215,0 +170773980898,215,0 +170773980947,215,0 +170773980995,215,0 +170773981044,215,0 +170773981092,215,0 +170773981142,214,0 +170773981190,214,0 +170773981239,214,0 +170773981287,214,0 +170773981337,214,0 +170773981384,214,0 +170773981432,214,0 +170773981482,214,0 +170773981530,214,0 +170773981579,215,0 +170773981627,215,0 +170773981677,215,0 +170773981725,215,0 +170773981772,215,0 +170773981820,214,0 +170773981868,215,0 +170773981916,214,0 +170773981964,214,0 +170773982012,214,0 +170773982060,214,0 +170773982109,214,0 +170773982157,214,0 +170773982205,214,0 +170773982253,215,0 +170773982303,215,0 +170773982351,215,0 +170773982398,215,0 +170773982446,215,0 +170773982496,215,0 +170773982544,215,0 +170773982591,215,0 +170773982639,215,0 +170773982687,214,0 +170773982735,214,0 +170773982783,214,0 +170773982831,214,0 +170773982879,214,0 +170773982927,214,0 +170773982975,214,0 +170773983022,215,0 +170773983070,215,0 +170773983118,215,0 +170773983166,215,0 +170773983214,215,0 +170773983263,215,0 +170773983311,215,0 +170773983359,215,0 +170773983409,215,0 +170773983458,214,0 +170773983506,214,0 +170773983556,214,0 +170773983605,214,0 +170773983653,214,0 +170773983703,214,0 +170773983751,214,0 +170773983800,214,0 +170773983848,214,0 +170773983897,215,0 +170773983945,214,0 +170773983993,215,0 +170773984041,214,0 +170773984089,215,0 +170773984137,214,0 +170773984185,214,0 +170773984233,215,0 +170773984281,214,0 +170773984329,213,0 +170773984378,214,0 +170773984426,214,0 +170773984476,214,0 +170773984525,214,0 +170773984575,214,0 +170773984624,214,0 +170773984672,214,0 +170773984720,214,0 +170773984770,214,0 +170773984818,215,0 +170773984866,214,0 +170773984914,214,0 +170773984963,215,0 +170773985013,215,0 +170773985062,214,0 +170773985110,214,0 +170773985158,213,0 +170773985206,213,0 +170773985254,213,0 +170773985303,214,0 +170773985351,214,0 +170773985401,214,0 +170773985449,214,0 +170773985497,214,0 +170773985545,214,0 +170773985593,214,0 +170773985641,214,0 +170773985688,215,0 +170773985736,215,0 +170773985786,215,0 +170773985834,214,0 +170773985883,213,0 +170773985931,213,0 +170773985981,214,0 +170773986029,213,0 +170773986077,214,0 +170773986126,214,0 +170773986174,214,0 +170773986222,214,0 +170773986270,214,0 +170773986318,214,0 +170773986366,214,0 +170773986414,214,0 +170773986462,215,0 +170773986510,215,0 +170773986557,214,0 +170773986605,215,0 +170773986653,214,0 +170773986701,213,0 +170773986749,213,0 +170773986797,214,0 +170773986845,214,0 +170773986894,214,0 +170773986944,214,0 +170773986991,214,0 +170773987039,214,0 +170773987087,214,0 +170773987137,215,0 +170773987186,215,0 +170773987236,215,0 +170773987283,215,0 +170773987333,215,0 +170773987381,215,0 +170773987429,214,0 +170773987476,213,0 +170773987524,214,0 +170773987572,214,0 +170773987620,214,0 +170773987668,214,0 +170773987716,214,0 +170773987764,214,0 +170773987813,214,0 +170773987863,214,0 +170773987912,214,0 +170773987962,214,0 +170773988009,215,0 +170773988059,215,0 +170773988107,215,0 +170773988155,215,0 +170773988203,214,0 +170773988252,214,0 +170773988300,214,0 +170773988350,214,0 +170773988397,214,0 +170773988447,214,0 +170773988495,214,0 +170773988544,214,0 +170773988592,214,0 +170773988640,215,0 +170773988688,215,0 +170773988738,215,0 +170773988785,215,0 +170773988833,215,0 +170773988881,215,0 +170773988931,215,0 +170773988979,214,0 +170773989027,214,0 +170773989075,214,0 +170773989124,214,0 +170773989172,214,0 +170773989220,214,0 +170773989268,214,0 +170773989316,214,0 +170773989364,214,0 +170773989411,214,0 +170773989459,214,0 +170773989509,215,0 +170773989557,215,0 +170773989606,215,0 +170773989656,215,0 +170773989703,215,0 +170773989751,215,0 +170773989799,214,0 +170773989848,214,0 +170773989896,214,0 +170773989944,214,0 +170773989992,214,0 +170773990040,214,0 +170773990088,214,0 +170773990135,214,0 +170773990183,214,0 +170773990231,214,0 +170773990279,215,0 +170773990327,215,0 +170773990375,215,0 +170773990423,215,0 +170773990470,215,0 +170773990518,215,0 +170773990566,214,0 +170773990616,214,0 +170773990664,214,0 +170773990711,214,0 +170773990759,214,0 +170773990807,214,0 +170773990857,215,0 +170773990904,214,0 +170773990952,215,0 +170773991000,215,0 +170773991049,215,0 +170773991097,215,0 +170773991145,215,0 +170773991193,215,0 +170773991241,215,0 +170773991290,215,0 +170773991338,215,0 +170773991386,215,0 +170773991434,214,0 +170773991482,215,0 +170773991530,215,0 +170773991578,215,0 +170773991626,215,0 +170773991674,215,0 +170773991722,215,0 +170773991770,215,0 +170773991818,215,0 +170773991865,215,0 +170773991915,215,0 +170773991963,215,0 +170773992011,215,0 +170773992058,215,0 +170773992108,215,0 +170773992156,214,0 +170773992204,214,0 +170773992252,214,0 +170773992299,214,0 +170773992347,214,0 +170773992395,215,0 +170773992443,215,0 +170773992491,215,0 +170773992541,215,0 +170773992590,215,0 +170773992638,215,0 +170773992686,215,0 +170773992734,215,0 +170773992782,215,0 +170773992830,215,0 +170773992878,215,0 +170773992926,214,0 +170773992975,214,0 +170773993023,214,0 +170773993071,214,0 +170773993119,214,0 +170773993167,214,0 +170773993215,215,0 +170773993263,215,0 +170773993312,215,0 +170773993360,215,0 +170773993409,215,0 +170773993457,215,0 +170773993507,215,0 +170773993554,215,0 +170773993602,215,0 +170773993650,215,0 +170773993698,214,0 +170773993746,214,0 +170773993794,214,0 +170773993843,214,0 +170773993891,214,0 +170773993939,214,0 +170773993987,214,0 +170773994037,214,0 +170773994086,215,0 +170773994134,215,0 +170773994184,215,0 +170773994232,215,0 +170773994280,215,0 +170773994327,215,0 +170773994375,215,0 +170773994425,215,0 +170773994474,214,0 +170773994522,214,0 +170773994572,214,0 +170773994621,214,0 +170773994671,214,0 +170773994719,214,0 +170773994768,214,0 +170773994818,214,0 +170773994867,215,0 +170773994915,214,0 +170773994963,215,0 +170773995013,215,0 +170773995062,215,0 +170773995110,215,0 +170773995160,215,0 +170773995209,215,0 +170773995259,215,0 +170773995306,214,0 +170773995354,214,0 +170773995402,214,0 +170773995450,214,0 +170773995498,214,0 +170773995546,214,0 +170773995594,214,0 +170773995642,214,0 +170773995690,214,0 +170773995739,215,0 +170773995787,215,0 +170773995835,215,0 +170773995883,215,0 +170773995931,215,0 +170773995979,215,0 +170773996027,214,0 +170773996074,214,0 +170773996122,214,0 +170773996170,214,0 +170773996218,214,0 +170773996268,214,0 +170773996316,214,0 +170773996365,214,0 +170773996415,214,0 +170773996464,215,0 +170773996512,215,0 +170773996560,215,0 +170773996608,215,0 +170773996656,215,0 +170773996704,215,0 +170773996752,215,0 +170773996800,215,0 +170773996850,214,0 +170773996899,213,0 +170773996949,214,0 +170773996998,214,0 +170773997048,214,0 +170773997096,214,0 +170773997144,214,0 +170773997193,214,0 +170773997242,215,0 +170773997292,215,0 +170773997341,215,0 +170773997389,215,0 +170773997437,215,0 +170773997485,215,0 +170773997533,215,0 +170773997583,215,0 +170773997631,215,0 +170773997678,213,0 +170773997728,214,0 +170773997776,214,0 +170773997824,214,0 +170773997871,214,0 +170773997921,214,0 +170773997969,214,0 +170773998017,214,0 +170773998065,214,0 +170773998113,214,0 +170773998161,215,0 +170773998209,215,0 +170773998257,215,0 +170773998306,215,0 +170773998354,215,0 +170773998402,215,0 +170773998450,214,0 +170773998499,213,0 +170773998547,214,0 +170773998595,214,0 +170773998643,214,0 +170773998691,214,0 +170773998739,214,0 +170773998787,214,0 +170773998835,214,0 +170773998883,214,0 +170773998931,214,0 +170773998978,215,0 +170773999026,215,0 +170773999076,214,0 +170773999124,215,0 +170773999173,215,0 +170773999223,214,0 +170773999272,213,0 +170773999322,214,0 +170773999370,214,0 +170773999418,214,0 +170773999466,214,0 +170773999515,214,0 +170773999563,214,0 +170773999611,214,0 +170773999659,214,0 +170773999706,215,0 +170773999754,215,0 +170773999802,215,0 +170773999850,215,0 +170773999898,215,0 +170773999947,215,0 +170773999995,214,0 +170774000045,214,0 +170774000094,214,0 +170774000144,214,0 +170774000192,214,0 +170774000240,214,0 +170774000289,214,0 +170774000339,214,0 +170774000386,214,0 +170774000434,215,0 +170774000482,214,0 +170774000532,215,0 +170774000580,215,0 +170774000628,215,0 +170774000677,215,0 +170774000725,215,0 +170774000773,214,0 +170774000823,214,0 +170774000871,214,0 +170774000920,214,0 +170774000970,214,0 +170774001018,214,0 +170774001066,214,0 +170774001113,214,0 +170774001161,215,0 +170774001209,215,0 +170774001257,215,0 +170774001307,215,0 +170774001355,215,0 +170774001404,215,0 +170774001452,215,0 +170774001502,215,0 +170774001549,215,0 +170774001597,214,0 +170774001645,214,0 +170774001695,214,0 +170774001744,214,0 +170774001794,215,0 +170774001843,215,0 +170774001891,215,0 +170774001939,214,0 +170774001987,215,0 +170774002037,215,0 +170774002085,215,0 +170774002133,215,0 +170774002182,215,0 +170774002232,215,0 +170774002281,215,0 +170774002331,215,0 +170774002380,214,0 +170774002428,214,0 +170774002478,214,0 +170774002525,214,0 +170774002573,214,0 +170774002623,214,0 +170774002672,215,0 +170774002720,215,0 +170774002770,214,0 +170774002818,215,0 +170774002867,215,0 +170774002915,215,0 +170774002963,215,0 +170774003011,215,0 +170774003059,215,0 +170774003106,215,0 +170774003154,214,0 +170774003202,214,0 +170774003252,214,0 +170774003300,215,0 +170774003349,214,0 +170774003397,214,0 +170774003445,215,0 +170774003493,215,0 +170774003541,215,0 +170774003590,215,0 +170774003640,215,0 +170774003688,215,0 +170774003736,215,0 +170774003784,215,0 +170774003831,215,0 +170774003879,215,0 +170774003929,214,0 +170774003978,214,0 +170774004026,214,0 +170774004074,214,0 +170774004122,214,0 +170774004170,214,0 +170774004219,214,0 +170774004267,214,0 +170774004315,214,0 +170774004363,215,0 +170774004413,215,0 +170774004461,215,0 +170774004509,215,0 +170774004558,215,0 +170774004608,215,0 +170774004657,215,0 +170774004705,215,0 +170774004755,214,0 +170774004804,214,0 +170774004852,214,0 +170774004902,214,0 +170774004951,214,0 +170774004999,214,0 +170774005047,214,0 +170774005095,214,0 +170774005143,215,0 +170774005191,215,0 +170774005238,215,0 +170774005286,215,0 +170774005334,215,0 +170774005383,215,0 +170774005431,215,0 +170774005479,215,0 +170774005527,214,0 +170774005575,213,0 +170774005624,214,0 +170774005672,214,0 +170774005720,214,0 +170774005768,214,0 +170774005817,214,0 +170774005867,214,0 +170774005916,214,0 +170774005966,214,0 +170774006014,215,0 +170774006063,215,0 +170774006111,215,0 +170774006159,215,0 +170774006208,215,0 +170774006256,215,0 +170774006304,214,0 +170774006353,213,0 +170774006401,214,0 +170774006449,214,0 +170774006497,214,0 +170774006546,214,0 +170774006594,214,0 +170774006644,214,0 +170774006692,214,0 +170774006740,214,0 +170774006788,214,0 +170774006835,214,0 +170774006884,214,0 +170774006933,215,0 +170774006981,215,0 +170774007029,215,0 +170774007077,215,0 +170774007126,214,0 +170774007176,214,0 +170774007224,214,0 +170774007272,214,0 +170774007321,214,0 +170774007371,214,0 +170774007418,214,0 +170774007466,214,0 +170774007516,214,0 +170774007565,215,0 +170774007613,215,0 +170774007661,215,0 +170774007709,215,0 +170774007757,215,0 +170774007805,215,0 +170774007853,215,0 +170774007900,213,0 +170774007948,214,0 +170774007996,213,0 +170774008044,214,0 +170774008092,214,0 +170774008139,214,0 +170774008187,214,0 +170774008235,214,0 +170774008283,214,0 +170774008331,214,0 +170774008379,214,0 +170774008426,214,0 +170774008474,215,0 +170774008522,215,0 +170774008570,215,0 +170774008618,215,0 +170774008666,214,0 +170774008714,214,0 +170774008761,214,0 +170774008809,214,0 +170774008857,214,0 +170774008905,214,0 +170774008952,214,0 +170774009001,214,0 +170774009049,214,0 +170774009096,214,0 +170774009144,215,0 +170774009192,214,0 +170774009240,215,0 +170774009288,215,0 +170774009337,215,0 +170774009385,215,0 +170774009433,215,0 +170774009481,214,0 +170774009529,214,0 +170774009577,214,0 +170774009625,214,0 +170774009674,214,0 +170774009722,214,0 +170774009770,214,0 +170774009818,214,0 +170774009866,214,0 +170774009915,215,0 +170774009964,215,0 +170774010014,215,0 +170774010062,215,0 +170774010111,215,0 +170774010159,215,0 +170774010209,215,0 +170774010257,214,0 +170774010305,214,0 +170774010352,214,0 +170774010402,214,0 +170774010450,214,0 +170774010499,214,0 +170774010547,214,0 +170774010597,214,0 +170774010645,214,0 +170774010693,215,0 +170774010742,215,0 +170774010790,215,0 +170774010838,215,0 +170774010886,215,0 +170774010934,215,0 +170774010981,215,0 +170774011029,214,0 +170774011077,214,0 +170774011127,214,0 +170774011174,214,0 +170774011222,214,0 +170774011270,214,0 +170774011318,215,0 +170774011366,215,0 +170774011414,215,0 +170774011462,215,0 +170774011510,215,0 +170774011558,215,0 +170774011606,215,0 +170774011655,215,0 +170774011703,214,0 +170774011751,215,0 +170774011799,215,0 +170774011849,214,0 +170774011897,214,0 +170774011946,214,0 +170774011996,214,0 +170774012045,214,0 +170774012094,215,0 +170774012144,215,0 +170774012192,215,0 +170774012240,215,0 +170774012288,215,0 +170774012337,215,0 +170774012385,215,0 +170774012433,215,0 +170774012481,215,0 +170774012531,215,0 +170774012580,215,0 +170774012630,214,0 +170774012679,214,0 +170774012729,214,0 +170774012777,214,0 +170774012826,214,0 +170774012874,215,0 +170774012924,215,0 +170774012972,215,0 +170774013020,215,0 +170774013069,215,0 +170774013119,215,0 +170774013167,215,0 +170774013216,215,0 +170774013264,215,0 +170774013314,215,0 +170774013361,215,0 +170774013409,215,0 +170774013457,215,0 +170774013505,215,0 +170774013555,215,0 +170774013604,215,0 +170774013654,215,0 +170774013704,215,0 +170774013751,215,0 +170774013799,215,0 +170774013847,215,0 +170774013895,215,0 +170774013943,215,0 +170774013991,215,0 +170774014039,215,0 +170774014087,215,0 +170774014137,215,0 +170774014186,214,0 +170774014236,214,0 +170774014285,214,0 +170774014335,214,0 +170774014384,215,0 +170774014432,215,0 +170774014480,215,0 +170774014528,215,0 +170774014577,215,0 +170774014625,215,0 +170774014673,215,0 +170774014721,215,0 +170774014771,215,0 +170774014819,215,0 +170774014868,215,0 +170774014918,215,0 +170774014966,214,0 +170774015014,214,0 +170774015062,214,0 +170774015111,214,0 +170774015159,215,0 +170774015207,214,0 +170774015256,215,0 +170774015304,215,0 +170774015352,215,0 +170774015400,215,0 +170774015447,215,0 +170774015495,215,0 +170774015543,215,0 +170774015593,215,0 +170774015640,215,0 +170774015688,215,0 +170774015736,214,0 +170774015784,214,0 +170774015832,214,0 +170774015880,214,0 +170774015928,214,0 +170774015976,214,0 +170774016023,215,0 +170774016071,214,0 +170774016119,215,0 +170774016167,215,0 +170774016215,215,0 +170774016263,215,0 +170774016311,215,0 +170774016359,215,0 +170774016406,215,0 +170774016456,215,0 +170774016503,215,0 +170774016551,214,0 +170774016599,214,0 +170774016648,214,0 +170774016696,214,0 +170774016744,214,0 +170774016792,214,0 +170774016840,214,0 +170774016887,215,0 +170774016935,215,0 +170774016983,215,0 +170774017033,215,0 +170774017080,215,0 +170774017128,215,0 +170774017178,215,0 +170774017226,215,0 +170774017274,215,0 +170774017321,214,0 +170774017371,213,0 +170774017420,213,0 +170774017468,214,0 +170774017518,214,0 +170774017567,214,0 +170774017617,214,0 +170774017664,214,0 +170774017714,214,0 +170774017762,214,0 +170774017811,214,0 +170774017859,214,0 +170774017907,215,0 +170774017955,215,0 +170774018003,215,0 +170774018051,215,0 +170774018100,214,0 +170774018150,214,0 +170774018198,213,0 +170774018246,214,0 +170774018294,214,0 +170774018342,214,0 +170774018389,214,0 +170774018439,214,0 +170774018488,214,0 +170774018536,214,0 +170774018584,214,0 +170774018632,214,0 +170774018680,214,0 +170774018729,215,0 +170774018779,214,0 +170774018828,215,0 +170774018878,215,0 +170774018927,213,0 +170774018975,213,0 +170774019023,214,0 +170774019071,214,0 +170774019119,214,0 +170774019168,214,0 +170774019216,214,0 +170774019264,214,0 +170774019312,214,0 +170774019360,215,0 +170774019408,215,0 +170774019457,214,0 +170774019507,215,0 +170774019556,215,0 +170774019604,215,0 +170774019652,215,0 +170774019700,214,0 +170774019748,214,0 +170774019796,214,0 +170774019844,214,0 +170774019891,214,0 +170774019939,214,0 +170774019987,214,0 +170774020035,215,0 +170774020083,215,0 +170774020131,215,0 +170774020180,215,0 +170774020228,215,0 +170774020276,215,0 +170774020324,215,0 +170774020372,215,0 +170774020420,215,0 +170774020470,214,0 +170774020518,214,0 +170774020566,214,0 +170774020615,214,0 +170774020665,214,0 +170774020714,214,0 +170774020762,214,0 +170774020810,214,0 +170774020859,215,0 +170774020907,215,0 +170774020957,215,0 +170774021005,215,0 +170774021052,215,0 +170774021100,215,0 +170774021148,215,0 +170774021196,215,0 +170774021244,214,0 +170774021293,214,0 +170774021341,214,0 +170774021389,214,0 +170774021437,214,0 +170774021485,214,0 +170774021534,214,0 +170774021582,214,0 +170774021630,215,0 +170774021679,215,0 +170774021727,215,0 +170774021775,215,0 +170774021825,215,0 +170774021873,215,0 +170774021921,215,0 +170774021968,215,0 +170774022016,215,0 +170774022064,214,0 +170774022112,214,0 +170774022160,214,0 +170774022208,214,0 +170774022256,214,0 +170774022305,214,0 +170774022353,214,0 +170774022402,214,0 +170774022450,215,0 +170774022500,215,0 +170774022548,214,0 +170774022596,215,0 +170774022644,214,0 +170774022691,215,0 +170774022739,215,0 +170774022787,214,0 +170774022835,213,0 +170774022883,213,0 +170774022931,214,0 +170774022980,213,0 +170774023028,213,0 +170774023078,214,0 +170774023126,214,0 +170774023175,214,0 +170774023225,214,0 +170774023273,214,0 +170774023321,214,0 +170774023369,214,0 +170774023417,214,0 +170774023465,214,0 +170774023513,214,0 +170774023561,214,0 +170774023608,214,0 +170774023658,213,0 +170774023706,213,0 +170774023754,213,0 +170774023803,214,0 +170774023851,214,0 +170774023899,214,0 +170774023949,214,0 +170774023998,214,0 +170774024048,214,0 +170774024096,214,0 +170774024144,214,0 +170774024192,214,0 +170774024239,214,0 +170774024287,214,0 +170774024337,215,0 +170774024385,214,0 +170774024434,213,0 +170774024482,213,0 +170774024530,214,0 +170774024578,214,0 +170774024626,214,0 +170774024674,214,0 +170774024723,214,0 +170774024773,214,0 +170774024822,214,0 +170774024872,214,0 +170774024920,214,0 +170774024969,214,0 +170774025019,214,0 +170774025067,214,0 +170774025116,215,0 +170774025164,214,0 +170774025212,214,0 +170774025260,214,0 +170774025308,214,0 +170774025356,214,0 +170774025405,214,0 +170774025455,214,0 +170774025503,214,0 +170774025551,214,0 +170774025599,214,0 +170774025648,215,0 +170774025696,215,0 +170774025746,215,0 +170774025795,215,0 +170774025843,215,0 +170774025891,215,0 +170774025939,215,0 +170774025987,214,0 +170774026037,214,0 +170774026086,214,0 +170774026134,214,0 +170774026182,214,0 +170774026230,215,0 +170774026278,214,0 +170774026326,215,0 +170774026374,214,0 +170774026421,215,0 +170774026471,215,0 +170774026519,215,0 +170774026567,215,0 +170774026615,215,0 +170774026663,215,0 +170774026711,215,0 +170774026760,214,0 +170774026808,214,0 +170774026856,214,0 +170774026904,214,0 +170774026952,214,0 +170774027002,214,0 +170774027051,214,0 +170774027101,215,0 +170774027148,215,0 +170774027196,215,0 +170774027244,215,0 +170774027292,215,0 +170774027340,215,0 +170774027388,215,0 +170774027438,215,0 +170774027486,215,0 +170774027535,214,0 +170774027583,214,0 +170774027632,214,0 +170774027680,214,0 +170774027728,214,0 +170774027776,214,0 +170774027826,214,0 +170774027874,215,0 +170774027923,215,0 +170774027971,215,0 +170774028019,215,0 +170774028067,215,0 +170774028116,215,0 +170774028164,215,0 +170774028212,215,0 +170774028260,215,0 +170774028310,215,0 +170774028359,214,0 +170774028409,214,0 +170774028457,214,0 +170774028505,214,0 +170774028552,214,0 +170774028600,215,0 +170774028648,215,0 +170774028696,215,0 +170774028744,215,0 +170774028792,215,0 +170774028840,215,0 +170774028888,215,0 +170774028936,215,0 +170774028984,215,0 +170774029032,215,0 +170774029081,215,0 +170774029129,214,0 +170774029177,214,0 +170774029225,214,0 +170774029273,214,0 +170774029322,214,0 +170774029370,215,0 +170774029418,214,0 +170774029466,214,0 +170774029514,215,0 +170774029562,215,0 +170774029610,215,0 +170774029658,215,0 +170774029708,215,0 +170774029755,215,0 +170774029805,215,0 +170774029853,215,0 +170774029901,214,0 +170774029950,214,0 +170774029998,214,0 +170774030048,214,0 +170774030097,214,0 +170774030145,214,0 +170774030195,214,0 +170774030243,214,0 +170774030291,215,0 +170774030339,214,0 +170774030386,215,0 +170774030434,215,0 +170774030484,215,0 +170774030532,215,0 +170774030580,215,0 +170774030628,215,0 +170774030676,214,0 +170774030724,213,0 +170774030772,214,0 +170774030821,214,0 +170774030869,214,0 +170774030917,214,0 +170774030965,214,0 +170774031013,214,0 +170774031062,214,0 +170774031112,215,0 +170774031161,215,0 +170774031209,215,0 +170774031257,215,0 +170774031305,215,0 +170774031353,215,0 +170774031403,215,0 +170774031452,215,0 +170774031502,214,0 +170774031550,214,0 +170774031599,214,0 +170774031648,214,0 +170774031696,214,0 +170774031744,214,0 +170774031792,214,0 +170774031840,214,0 +170774031888,214,0 +170774031935,215,0 +170774031983,215,0 +170774032033,215,0 +170774032082,215,0 +170774032130,215,0 +170774032178,215,0 +170774032226,215,0 +170774032273,214,0 +170774032321,214,0 +170774032369,214,0 +170774032417,214,0 +170774032465,214,0 +170774032513,214,0 +170774032561,214,0 +170774032608,214,0 +170774032656,214,0 +170774032704,214,0 +170774032752,215,0 +170774032800,214,0 +170774032849,215,0 +170774032897,215,0 +170774032945,215,0 +170774032994,215,0 +170774033042,215,0 +170774033090,215,0 +170774033139,215,0 +170774033189,215,0 +170774033238,215,0 +170774033286,215,0 +170774033334,215,0 +170774033384,215,0 +170774033433,214,0 +170774033481,214,0 +170774033529,214,0 +170774033579,214,0 +170774033627,214,0 +170774033676,214,0 +170774033724,214,0 +170774033772,214,0 +170774033820,214,0 +170774033868,214,0 +170774033917,215,0 +170774033965,215,0 +170774034013,215,0 +170774034063,215,0 +170774034111,215,0 +170774034158,215,0 +170774034206,214,0 +170774034254,214,0 +170774034304,213,0 +170774034352,214,0 +170774034401,214,0 +170774034451,214,0 +170774034499,214,0 +170774034547,214,0 +170774034595,214,0 +170774034643,214,0 +170774034691,214,0 +170774034739,215,0 +170774034786,215,0 +170774034836,215,0 +170774034884,215,0 +170774034932,215,0 +170774034980,215,0 +170774035028,213,0 +170774035077,213,0 +170774035125,214,0 +170774035173,214,0 +170774035221,214,0 +170774035269,214,0 +170774035318,214,0 +170774035366,214,0 +170774035414,214,0 +170774035462,214,0 +170774035510,214,0 +170774035558,215,0 +170774035606,215,0 +170774035656,214,0 +170774035705,215,0 +170774035753,214,0 +170774035802,214,0 +170774035850,213,0 +170774035898,213,0 +170774035948,213,0 +170774035996,213,0 +170774036044,213,0 +170774036093,214,0 +170774036143,213,0 +170774036191,214,0 +170774036238,214,0 +170774036286,214,0 +170774036334,214,0 +170774036384,214,0 +170774036433,214,0 +170774036481,214,0 +170774036529,215,0 +170774036577,214,0 +170774036627,213,0 +170774036675,213,0 +170774036724,213,0 +170774036772,213,0 +170774036820,214,0 +170774036868,214,0 +170774036918,214,0 +170774036967,214,0 +170774037017,214,0 +170774037066,214,0 +170774037114,214,0 +170774037162,214,0 +170774037210,214,0 +170774037258,215,0 +170774037306,214,0 +170774037354,215,0 +170774037402,214,0 +170774037450,214,0 +170774037499,214,0 +170774037549,214,0 +170774037597,214,0 +170774037644,214,0 +170774037694,214,0 +170774037742,214,0 +170774037790,214,0 +170774037839,215,0 +170774037887,214,0 +170774037935,215,0 +170774037983,215,0 +170774038031,215,0 +170774038079,215,0 +170774038126,215,0 +170774038176,215,0 +170774038224,215,0 +170774038272,215,0 +170774038320,215,0 +170774038367,215,0 +170774038417,215,0 +170774038465,215,0 +170774038513,215,0 +170774038562,215,0 +170774038612,215,0 +170774038661,215,0 +170774038709,215,0 +170774038757,215,0 +170774038807,215,0 +170774038855,215,0 +170774038903,215,0 +170774038952,214,0 +170774039002,214,0 +170774039051,214,0 +170774039099,214,0 +170774039147,215,0 +170774039197,214,0 +170774039245,214,0 +170774039294,214,0 +170774039344,215,0 +170774039392,215,0 +170774039439,214,0 +170774039489,215,0 +170774039538,215,0 +170774039586,215,0 +170774039634,215,0 +170774039682,215,0 +170774039730,214,0 +170774039778,214,0 +170774039826,214,0 +170774039874,214,0 +170774039922,215,0 +170774039970,214,0 +170774040018,215,0 +170774040068,215,0 +170774040115,215,0 +170774040163,215,0 +170774040213,215,0 +170774040261,215,0 +170774040310,215,0 +170774040358,215,0 +170774040406,215,0 +170774040454,215,0 +170774040502,214,0 +170774040550,214,0 +170774040598,214,0 +170774040646,214,0 +170774040694,215,0 +170774040742,215,0 +170774040791,215,0 +170774040841,215,0 +170774040889,215,0 +170774040937,215,0 +170774040985,215,0 +170774041033,215,0 +170774041082,215,0 +170774041130,215,0 +170774041180,215,0 +170774041229,215,0 +170774041279,215,0 +170774041327,214,0 +170774041374,214,0 +170774041422,215,0 +170774041472,214,0 +170774041521,214,0 +170774041569,215,0 +170774041619,215,0 +170774041667,215,0 +170774041714,215,0 +170774041764,215,0 +170774041812,215,0 +170774041861,215,0 +170774041909,215,0 +170774041957,215,0 +170774042005,215,0 +170774042053,215,0 +170774042101,214,0 +170774042150,214,0 +170774042198,214,0 +170774042246,214,0 +170774042294,214,0 +170774042342,215,0 +170774042390,214,0 +170774042438,215,0 +170774042487,215,0 +170774042537,215,0 +170774042586,215,0 +170774042634,215,0 +170774042683,215,0 +170774042731,215,0 +170774042779,215,0 +170774042829,214,0 +170774042876,214,0 +170774042926,214,0 +170774042975,214,0 +170774043023,214,0 +170774043071,214,0 +170774043119,214,0 +170774043168,214,0 +170774043216,215,0 +170774043266,215,0 +170774043314,215,0 +170774043362,215,0 +170774043409,215,0 +170774043457,215,0 +170774043505,215,0 +170774043555,215,0 +170774043604,215,0 +170774043654,214,0 +170774043702,214,0 +170774043750,214,0 +170774043797,214,0 +170774043847,214,0 +170774043895,214,0 +170774043943,215,0 +170774043992,215,0 +170774044040,215,0 +170774044088,215,0 +170774044136,215,0 +170774044186,215,0 +170774044233,215,0 +170774044281,215,0 +170774044329,215,0 +170774044377,215,0 +170774044425,214,0 +170774044475,214,0 +170774044524,214,0 +170774044574,214,0 +170774044622,214,0 +170774044670,214,0 +170774044718,214,0 +170774044767,214,0 +170774044815,215,0 +170774044865,215,0 +170774044913,214,0 +170774044961,215,0 +170774045008,215,0 +170774045056,215,0 +170774045106,215,0 +170774045154,215,0 +170774045202,215,0 +170774045250,214,0 +170774045299,214,0 +170774045347,214,0 +170774045395,214,0 +170774045443,214,0 +170774045491,214,0 +170774045539,214,0 +170774045587,214,0 +170774045635,215,0 +170774045684,215,0 +170774045732,215,0 +170774045780,215,0 +170774045828,215,0 +170774045877,215,0 +170774045927,215,0 +170774045975,215,0 +170774046023,214,0 +170774046071,214,0 +170774046119,214,0 +170774046168,214,0 +170774046218,214,0 +170774046266,214,0 +170774046315,214,0 +170774046365,214,0 +170774046414,214,0 +170774046462,215,0 +170774046512,215,0 +170774046560,217,0 +170774046608,216,0 +170774046656,215,0 +170774046705,215,0 +170774046753,215,0 +170774046803,214,0 +170774046851,213,0 +170774046899,214,0 +170774046947,214,0 +170774046996,214,0 +170774047044,214,0 +170774047093,214,0 +170774047141,214,0 +170774047189,214,0 +170774047237,214,0 +170774047287,214,0 +170774047335,215,0 +170774047384,215,0 +170774047432,215,0 +170774047480,215,0 +170774047528,215,0 +170774047575,215,0 +170774047623,214,0 +170774047671,214,0 +170774047720,213,0 +170774047768,214,0 +170774047816,214,0 +170774047866,214,0 +170774047915,214,0 +170774047963,214,0 +170774048011,214,0 +170774048059,214,0 +170774048108,214,0 +170774048156,214,0 +170774048204,214,0 +170774048252,215,0 +170774048300,215,0 +170774048348,215,0 +170774048395,214,0 +170774048445,214,0 +170774048493,213,0 +170774048542,213,0 +170774048590,214,0 +170774048640,214,0 +170774048689,214,0 +170774048737,214,0 +170774048787,214,0 +170774048835,214,0 +170774048882,214,0 +170774048932,214,0 +170774048980,214,0 +170774049028,214,0 +170774049077,214,0 +170774049125,215,0 +170774049173,214,0 +170774049221,214,0 +170774049269,213,0 +170774049317,214,0 +170774049365,214,0 +170774049414,214,0 +170774049462,214,0 +170774049511,214,0 +170774049559,215,0 +170774049609,214,0 +170774049658,214,0 +170774049706,215,0 +170774049754,215,0 +170774049802,215,0 +170774049850,215,0 +170774049898,215,0 +170774049947,214,0 +170774049995,214,0 +170774050043,214,0 +170774050091,214,0 +170774050139,214,0 +170774050187,214,0 +170774050235,214,0 +170774050283,215,0 +170774050331,215,0 +170774050378,215,0 +170774050426,215,0 +170774050474,215,0 +170774050522,215,0 +170774050570,215,0 +170774050618,215,0 +170774050666,215,0 +170774050714,215,0 +170774050762,214,0 +170774050809,214,0 +170774050857,215,0 +170774050905,215,0 +170774050953,215,0 +170774051001,215,0 +170774051051,215,0 +170774051099,215,0 +170774051147,215,0 +170774051195,215,0 +170774051244,215,0 +170774051293,215,0 +170774051343,215,0 +170774051393,215,0 +170774051440,215,0 +170774051488,214,0 +170774051536,214,0 +170774051584,214,0 +170774051632,214,0 +170774051681,214,0 +170774051729,214,0 +170774051777,215,0 +170774051825,215,0 +170774051875,215,0 +170774051923,215,0 +170774051971,215,0 +170774052019,215,0 +170774052067,215,0 +170774052116,215,0 +170774052166,215,0 +170774052214,215,0 +170774052263,215,0 +170774052313,214,0 +170774052361,214,0 +170774052409,214,0 +170774052458,214,0 +170774052506,214,0 +170774052556,214,0 +170774052605,215,0 +170774052653,215,0 +170774052702,215,0 +170774052752,215,0 +170774052800,215,0 +170774052848,215,0 +170774052895,215,0 +170774052943,215,0 +170774052991,215,0 +170774053039,215,0 +170774053087,215,0 +170774053136,214,0 +170774053184,214,0 +170774053232,214,0 +170774053279,214,0 +170774053327,214,0 +170774053375,214,0 +170774053423,214,0 +170774053470,214,0 +170774053518,215,0 +170774053566,215,0 +170774053614,215,0 +170774053662,215,0 +170774053709,216,0 +170774053757,215,0 +170774053805,215,0 +170774053853,215,0 +170774053901,214,0 +170774053949,214,0 +170774053997,214,0 +170774054044,214,0 +170774054092,214,0 +170774054140,214,0 +170774054188,214,0 +170774054237,214,0 +170774054285,214,0 +170774054335,215,0 +170774054383,215,0 +170774054432,215,0 +170774054482,215,0 +170774054530,215,0 +170774054577,215,0 +170774054625,215,0 +170774054673,214,0 +170774054721,214,0 +170774054769,214,0 +170774054817,214,0 +170774054865,214,0 +170774054913,214,0 +170774054960,214,0 +170774055010,214,0 +170774055058,214,0 +170774055106,214,0 +170774055154,215,0 +170774055201,215,0 +170774055249,215,0 +170774055299,215,0 +170774055347,215,0 +170774055395,215,0 +170774055444,215,0 +170774055492,213,0 +170774055540,213,0 +170774055588,214,0 +170774055636,214,0 +170774055685,214,0 +170774055733,214,0 +170774055781,214,0 +170774055829,214,0 +170774055877,214,0 +170774055925,214,0 +170774055973,215,0 +170774056021,215,0 +170774056068,215,0 +170774056116,215,0 +170774056164,215,0 +170774056214,214,0 +170774056262,213,0 +170774056309,213,0 +170774056357,213,0 +170774056407,214,0 +170774056455,214,0 +170774056504,214,0 +170774056552,214,0 +170774056600,214,0 +170774056648,214,0 +170774056696,214,0 +170774056744,214,0 +170774056792,214,0 +170774056841,214,0 +170774056891,215,0 +170774056938,215,0 +170774056988,215,0 +170774057036,214,0 +170774057085,213,0 +170774057133,214,0 +170774057183,214,0 +170774057232,214,0 +170774057280,214,0 +170774057330,214,0 +170774057378,214,0 +170774057425,214,0 +170774057475,214,0 +170774057524,215,0 +170774057572,215,0 +170774057622,215,0 +170774057670,215,0 +170774057718,215,0 +170774057767,215,0 +170774057815,214,0 +170774057865,214,0 +170774057913,214,0 +170774057961,214,0 +170774058010,214,0 +170774058060,214,0 +170774058108,214,0 +170774058156,214,0 +170774058204,214,0 +170774058253,214,0 +170774058301,215,0 +170774058350,215,0 +170774058400,215,0 +170774058449,215,0 +170774058497,215,0 +170774058545,215,0 +170774058595,214,0 +170774058643,214,0 +170774058692,214,0 +170774058740,214,0 +170774058788,214,0 +170774058838,214,0 +170774058886,214,0 +170774058933,214,0 +170774058981,214,0 +170774059029,214,0 +170774059077,215,0 +170774059127,215,0 +170774059174,215,0 +170774059222,215,0 +170774059272,215,0 +170774059321,215,0 +170774059369,215,0 +170774059417,214,0 +170774059467,214,0 +170774059515,214,0 +170774059564,214,0 +170774059612,214,0 +170774059662,214,0 +170774059711,214,0 +170774059759,214,0 +170774059808,214,0 +170774059858,215,0 +170774059906,215,0 +170774059956,215,0 +170774060005,215,0 +170774060053,215,0 +170774060101,215,0 +170774060151,215,0 +170774060200,214,0 +170774060250,214,0 +170774060298,214,0 +170774060347,214,0 +170774060395,214,0 +170774060445,215,0 +170774060494,215,0 +170774060544,215,0 +170774060593,215,0 +170774060643,215,0 +170774060691,215,0 +170774060739,215,0 +170774060786,215,0 +170774060836,215,0 +170774060884,215,0 +170774060932,215,0 +170774060980,214,0 +170774061028,214,0 +170774061077,214,0 +170774061127,214,0 +170774061176,214,0 +170774061224,214,0 +170774061272,214,0 +170774061320,214,0 +170774061368,215,0 +170774061417,215,0 +170774061466,215,0 +170774061514,215,0 +170774061562,215,0 +170774061612,215,0 +170774061660,215,0 +170774061709,215,0 +170774061759,214,0 +170774061806,214,0 +170774061854,214,0 +170774061902,214,0 +170774061952,215,0 +170774062001,214,0 +170774062049,215,0 +170774062097,215,0 +170774062145,215,0 +170774062194,215,0 +170774062242,215,0 +170774062290,215,0 +170774062340,215,0 +170774062389,215,0 +170774062439,215,0 +170774062488,215,0 +170774062536,214,0 +170774062584,214,0 +170774062632,214,0 +170774062680,214,0 +170774062728,215,0 +170774062777,215,0 +170774062825,215,0 +170774062873,215,0 +170774062923,215,0 +170774062971,215,0 +170774063020,215,0 +170774063068,215,0 +170774063116,215,0 +170774063164,215,0 +170774063212,215,0 +170774063260,215,0 +170774063308,214,0 +170774063356,214,0 +170774063405,214,0 +170774063455,214,0 +170774063503,214,0 +170774063551,214,0 +170774063598,215,0 +170774063648,214,0 +170774063696,215,0 +170774063744,215,0 +170774063792,215,0 +170774063841,215,0 +170774063889,215,0 +170774063938,215,0 +170774063986,215,0 +170774064034,215,0 +170774064082,215,0 +170774064131,214,0 +170774064179,214,0 +170774064227,214,0 +170774064275,214,0 +170774064323,214,0 +170774064371,214,0 +170774064419,214,0 +170774064467,215,0 +170774064515,215,0 +170774064564,215,0 +170774064612,215,0 +170774064660,215,0 +170774064710,216,0 +170774064758,215,0 +170774064807,215,0 +170774064855,215,0 +170774064903,214,0 +170774064951,214,0 +170774064999,214,0 +170774065047,215,0 +170774065096,215,0 +170774065144,215,0 +170774065192,215,0 +170774065240,215,0 +170774065289,215,0 +170774065337,215,0 +170774065385,215,0 +170774065433,215,0 +170774065481,215,0 +170774065529,215,0 +170774065578,215,0 +170774065626,215,0 +170774065676,214,0 +170774065725,214,0 +170774065775,214,0 +170774065822,214,0 +170774065870,214,0 +170774065918,214,0 +170774065966,214,0 +170774066014,215,0 +170774066062,215,0 +170774066111,215,0 +170774066159,215,0 +170774066207,215,0 +170774066255,215,0 +170774066304,215,0 +170774066354,215,0 +170774066403,215,0 +170774066451,215,0 +170774066501,214,0 +170774066549,213,0 +170774066598,214,0 +170774066646,214,0 +170774066694,214,0 +170774066742,214,0 +170774066791,214,0 +170774066841,214,0 +170774066889,214,0 +170774066937,215,0 +170774066986,215,0 +170774067036,215,0 +170774067085,215,0 +170774067135,215,0 +170774067184,215,0 +170774067232,215,0 +170774067280,214,0 +170774067328,213,0 +170774067376,214,0 +170774067426,214,0 +170774067475,214,0 +170774067524,214,0 +170774067574,214,0 +170774067622,214,0 +170774067670,214,0 +170774067718,215,0 +170774067767,215,0 +170774067817,214,0 +170774067866,215,0 +170774067914,215,0 +170774067962,215,0 +170774068010,214,0 +170774068060,214,0 +170774068108,213,0 +170774068156,213,0 +170774068205,214,0 +170774068255,214,0 +170774068302,214,0 +170774068350,214,0 +170774068400,214,0 +170774068448,214,0 +170774068497,214,0 +170774068545,214,0 +170774068595,214,0 +170774068643,214,0 +170774068692,214,0 +170774068740,215,0 +170774068788,215,0 +170774068838,214,0 +170774068886,214,0 +170774068934,214,0 +170774068983,214,0 +170774069031,214,0 +170774069079,214,0 +170774069127,214,0 +170774069175,214,0 +170774069222,214,0 +170774069270,215,0 +170774069320,214,0 +170774069369,215,0 +170774069417,215,0 +170774069465,215,0 +170774069513,215,0 +170774069563,215,0 +170774069612,214,0 +170774069662,214,0 +170774069709,214,0 +170774069759,214,0 +170774069807,214,0 +170774069856,214,0 +170774069904,214,0 +170774069952,214,0 +170774070000,214,0 +170774070050,215,0 +170774070099,215,0 +170774070147,215,0 +170774070195,215,0 +170774070243,215,0 +170774070291,215,0 +170774070338,215,0 +170774070386,215,0 +170774070434,214,0 +170774070482,214,0 +170774070530,214,0 +170774070577,214,0 +170774070625,214,0 +170774070673,214,0 +170774070721,214,0 +170774070769,214,0 +170774070817,215,0 +170774070865,215,0 +170774070912,215,0 +170774070960,215,0 +170774071008,215,0 +170774071056,215,0 +170774071104,215,0 +170774071152,215,0 +170774071200,214,0 +170774071247,214,0 +170774071295,214,0 +170774071345,214,0 +170774071392,214,0 +170774071440,214,0 +170774071488,214,0 +170774071536,215,0 +170774071586,215,0 +170774071634,215,0 +170774071682,215,0 +170774071730,215,0 +170774071778,215,0 +170774071827,215,0 +170774071875,215,0 +170774071923,215,0 +170774071970,214,0 +170774072018,214,0 +170774072066,214,0 +170774072114,214,0 +170774072162,214,0 +170774072210,214,0 +170774072258,214,0 +170774072305,214,0 +170774072355,215,0 +170774072403,214,0 +170774072451,214,0 +170774072498,215,0 +170774072546,214,0 +170774072594,215,0 +170774072642,215,0 +170774072690,215,0 +170774072738,214,0 +170774072785,214,0 +170774072833,213,0 +170774072881,214,0 +170774072929,213,0 +170774072977,214,0 +170774073025,214,0 +170774073073,214,0 +170774073120,214,0 +170774073168,214,0 +170774073218,214,0 +170774073267,215,0 +170774073315,215,0 +170774073365,215,0 +170774073414,215,0 +170774073464,215,0 +170774073513,215,0 +170774073561,213,0 +170774073609,213,0 +170774073657,214,0 +170774073705,214,0 +170774073755,214,0 +170774073803,214,0 +170774073851,214,0 +170774073900,214,0 +170774073948,214,0 +170774073998,215,0 +170774074045,215,0 +170774074093,215,0 +170774074143,215,0 +170774074191,215,0 +170774074239,215,0 +170774074288,215,0 +170774074338,214,0 +170774074386,214,0 +170774074434,214,0 +170774074481,214,0 +170774074529,214,0 +170774074579,214,0 +170774074627,214,0 +170774074676,215,0 +170774074724,215,0 +170774074772,215,0 +170774074822,215,0 +170774074870,215,0 +170774074918,215,0 +170774074965,215,0 +170774075015,215,0 +170774075065,215,0 +170774075114,214,0 +170774075162,214,0 +170774075210,214,0 +170774075258,214,0 +170774075305,214,0 +170774075353,214,0 +170774075401,214,0 +170774075449,214,0 +170774075497,215,0 +170774075546,215,0 +170774075594,215,0 +170774075642,215,0 +170774075690,215,0 +170774075738,215,0 +170774075786,215,0 +170774075835,215,0 +170774075884,215,0 +170774075932,214,0 +170774075980,214,0 +170774076027,214,0 +170774076075,214,0 +170774076123,214,0 +170774076171,214,0 +170774076221,215,0 +170774076270,214,0 +170774076318,214,0 +170774076366,215,0 +170774076414,215,0 +170774076462,215,0 +170774076510,215,0 +170774076557,215,0 +170774076605,215,0 +170774076653,215,0 +170774076701,214,0 +170774076749,214,0 +170774076798,214,0 +170774076846,214,0 +170774076895,214,0 +170774076943,215,0 +170774076991,214,0 +170774077039,214,0 +170774077087,215,0 +170774077135,215,0 +170774077183,215,0 +170774077230,215,0 +170774077278,215,0 +170774077326,215,0 +170774077374,215,0 +170774077422,215,0 +170774077470,214,0 +170774077518,214,0 +170774077565,214,0 +170774077613,214,0 +170774077661,214,0 +170774077709,214,0 +170774077757,214,0 +170774077806,214,0 +170774077854,215,0 +170774077902,214,0 +170774077950,215,0 +170774077998,215,0 +170774078046,215,0 +170774078093,215,0 +170774078141,215,0 +170774078191,215,0 +170774078239,215,0 +170774078286,214,0 +170774078334,214,0 +170774078382,214,0 +170774078430,214,0 +170774078480,214,0 +170774078527,214,0 +170774078575,214,0 +170774078625,215,0 +170774078672,215,0 +170774078720,215,0 +170774078768,215,0 +170774078816,215,0 +170774078864,215,0 +170774078911,215,0 +170774078959,215,0 +170774079007,215,0 +170774079055,214,0 +170774079104,214,0 +170774079152,214,0 +170774079200,214,0 +170774079249,214,0 +170774079297,214,0 +170774079345,214,0 +170774079393,214,0 +170774079442,214,0 +170774079490,215,0 +170774079538,215,0 +170774079586,215,0 +170774079636,215,0 +170774079685,215,0 +170774079733,215,0 +170774079781,215,0 +170774079830,214,0 +170774079878,214,0 +170774079926,214,0 +170774079974,214,0 +170774080023,214,0 +170774080071,214,0 +170774080119,214,0 +170774080167,214,0 +170774080215,214,0 +170774080264,214,0 +170774080314,215,0 +170774080363,215,0 +170774080411,215,0 +170774080461,215,0 +170774080510,215,0 +170774080558,215,0 +170774080606,215,0 +170774080655,214,0 +170774080705,214,0 +170774080753,214,0 +170774080801,214,0 +170774080850,214,0 +170774080900,214,0 +170774080949,215,0 +170774080997,215,0 +170774081045,215,0 +170774081095,215,0 +170774081144,215,0 +170774081194,215,0 +170774081242,215,0 +170774081291,215,0 +170774081339,215,0 +170774081389,215,0 +170774081438,214,0 +170774081486,214,0 +170774081534,214,0 +170774081583,214,0 +170774081631,214,0 +170774081681,214,0 +170774081729,215,0 +170774081777,215,0 +170774081825,215,0 +170774081872,215,0 +170774081920,215,0 +170774081968,215,0 +170774082018,215,0 +170774082065,215,0 +170774082115,215,0 +170774082163,215,0 +170774082211,214,0 +170774082259,214,0 +170774082306,214,0 +170774082354,214,0 +170774082402,214,0 +170774082452,214,0 +170774082500,214,0 +170774082547,214,0 +170774082595,215,0 +170774082643,215,0 +170774082691,214,0 +170774082739,215,0 +170774082787,214,0 +170774082834,215,0 +170774082882,215,0 +170774082930,215,0 +170774082978,214,0 +170774083026,213,0 +170774083074,214,0 +170774083122,214,0 +170774083170,214,0 +170774083217,214,0 +170774083265,214,0 +170774083313,214,0 +170774083361,214,0 +170774083409,214,0 +170774083457,214,0 +170774083505,215,0 +170774083553,215,0 +170774083601,215,0 +170774083649,215,0 +170774083697,214,0 +170774083745,215,0 +170774083792,214,0 +170774083842,213,0 +170774083890,213,0 +170774083937,213,0 +170774083985,214,0 +170774084033,214,0 +170774084082,214,0 +170774084130,214,0 +170774084178,214,0 +170774084226,214,0 +170774084274,214,0 +170774084322,214,0 +170774084370,215,0 +170774084418,215,0 +170774084466,215,0 +170774084514,215,0 +170774084561,214,0 +170774084609,213,0 +170774084657,213,0 +170774084705,213,0 +170774084755,214,0 +170774084804,214,0 +170774084852,214,0 +170774084901,214,0 +170774084949,214,0 +170774084997,214,0 +170774085047,214,0 +170774085094,214,0 +170774085142,215,0 +170774085192,215,0 +170774085239,215,0 +170774085287,215,0 +170774085335,214,0 +170774085383,213,0 +170774085431,213,0 +170774085479,213,0 +170774085527,213,0 +170774085574,213,0 +170774085622,213,0 +170774085670,214,0 +170774085718,213,0 +170774085766,214,0 +170774085814,214,0 +170774085862,214,0 +170774085910,214,0 +170774085959,214,0 +170774086007,214,0 +170774086055,214,0 +170774086103,215,0 +170774086150,214,0 +170774086198,214,0 +170774086248,214,0 +170774086295,214,0 +170774086343,214,0 +170774086391,214,0 +170774086440,214,0 +170774086488,214,0 +170774086538,214,0 +170774086586,214,0 +170774086633,214,0 +170774086681,215,0 +170774086729,215,0 +170774086777,215,0 +170774086825,215,0 +170774086873,214,0 +170774086921,214,0 +170774086968,214,0 +170774087016,214,0 +170774087064,214,0 +170774087113,214,0 +170774087161,214,0 +170774087209,214,0 +170774087257,215,0 +170774087305,215,0 +170774087353,215,0 +170774087401,215,0 +170774087449,215,0 +170774087497,215,0 +170774087544,215,0 +170774087594,215,0 +170774087642,215,0 +170774087690,215,0 +170774087737,214,0 +170774087785,214,0 +170774087833,214,0 +170774087883,214,0 +170774087931,214,0 +170774087978,214,0 +170774088026,215,0 +170774088074,214,0 +170774088122,215,0 +170774088170,215,0 +170774088218,215,0 +170774088265,215,0 +170774088313,215,0 +170774088361,215,0 +170774088409,215,0 +170774088457,215,0 +170774088504,214,0 +170774088552,214,0 +170774088602,214,0 +170774088649,214,0 +170774088697,214,0 +170774088745,214,0 +170774088793,214,0 +170774088841,214,0 +170774088889,214,0 +170774088937,215,0 +170774088984,215,0 +170774089032,215,0 +170774089080,215,0 +170774089128,215,0 +170774089176,215,0 +170774089224,215,0 +170774089272,214,0 +170774089319,214,0 +170774089367,214,0 +170774089415,214,0 +170774089463,214,0 +170774089511,214,0 +170774089559,215,0 +170774089607,215,0 +170774089656,215,0 +170774089706,215,0 +170774089754,215,0 +170774089802,215,0 +170774089851,215,0 +170774089899,215,0 +170774089947,216,0 +170774089997,215,0 +170774090046,215,0 +170774090094,214,0 +170774090142,215,0 +170774090191,215,0 +170774090239,215,0 +170774090287,215,0 +170774090337,215,0 +170774090385,215,0 +170774090432,215,0 +170774090480,215,0 +170774090530,215,0 +170774090578,215,0 +170774090625,215,0 +170774090673,215,0 +170774090721,215,0 +170774090771,215,0 +170774090820,215,0 +170774090868,214,0 +170774090916,215,0 +170774090964,215,0 +170774091014,215,0 +170774091061,215,0 +170774091111,215,0 +170774091159,215,0 +170774091209,215,0 +170774091256,215,0 +170774091304,215,0 +170774091352,215,0 +170774091400,215,0 +170774091448,215,0 +170774091498,215,0 +170774091546,215,0 +170774091594,215,0 +170774091643,214,0 +170774091693,214,0 +170774091742,214,0 +170774091792,215,0 +170774091840,214,0 +170774091888,214,0 +170774091937,214,0 +170774091985,215,0 +170774092035,215,0 +170774092083,215,0 +170774092131,215,0 +170774092180,215,0 +170774092229,215,0 +170774092277,215,0 +170774092327,215,0 +170774092375,215,0 +170774092422,214,0 +170774092470,214,0 +170774092518,214,0 +170774092566,214,0 +170774092615,214,0 +170774092663,214,0 +170774092711,214,0 +170774092759,214,0 +170774092809,214,0 +170774092858,215,0 +170774092908,215,0 +170774092957,215,0 +170774093007,215,0 +170774093056,215,0 +170774093106,215,0 +170774093155,215,0 +170774093203,214,0 +170774093251,214,0 +170774093301,214,0 +170774093349,214,0 +170774093397,214,0 +170774093444,214,0 +170774093494,214,0 +170774093543,214,0 +170774093591,215,0 +170774093639,215,0 +170774093689,215,0 +170774093737,215,0 +170774093786,215,0 +170774093834,215,0 +170774093882,215,0 +170774093931,215,0 +170774093979,215,0 +170774094029,214,0 +170774094078,214,0 +170774094126,214,0 +170774094174,214,0 +170774094222,214,0 +170774094271,214,0 +170774094321,214,0 +170774094369,214,0 +170774094417,214,0 +170774094465,215,0 +170774094513,215,0 +170774094561,215,0 +170774094608,215,0 +170774094656,215,0 +170774094704,215,0 +170774094754,215,0 +170774094802,214,0 +170774094851,214,0 +170774094899,213,0 +170774094948,214,0 +170774094998,214,0 +170774095047,214,0 +170774095097,214,0 +170774095146,214,0 +170774095194,214,0 +170774095242,214,0 +170774095290,214,0 +170774095338,215,0 +170774095386,215,0 +170774095434,215,0 +170774095482,215,0 +170774095529,215,0 +170774095577,214,0 +170774095625,213,0 +170774095675,213,0 +170774095722,213,0 +170774095770,213,0 +170774095818,214,0 +170774095868,214,0 +170774095915,214,0 +170774095963,214,0 +170774096011,214,0 +170774096059,214,0 +170774096107,214,0 +170774096156,214,0 +170774096206,215,0 +170774096254,215,0 +170774096303,215,0 +170774096351,214,0 +170774096401,213,0 +170774096449,213,0 +170774096497,213,0 +170774096545,214,0 +170774096594,214,0 +170774096644,214,0 +170774096693,214,0 +170774096741,214,0 +170774096791,214,0 +170774096839,214,0 +170774096888,214,0 +170774096936,214,0 +170774096986,214,0 +170774097035,214,0 +170774097083,215,0 +170774097131,215,0 +170774097179,214,0 +170774097227,213,0 +170774097275,213,0 +170774097323,213,0 +170774097371,214,0 +170774097420,214,0 +170774097468,214,0 +170774097516,214,0 +170774097564,215,0 +170774097612,214,0 +170774097660,214,0 +170774097708,215,0 +170774097756,215,0 +170774097805,215,0 +170774097853,215,0 +170774097901,215,0 +170774097949,214,0 +170774097997,214,0 +170774098045,214,0 +170774098093,214,0 +170774098141,214,0 +170774098189,214,0 +170774098237,214,0 +170774098285,214,0 +170774098334,214,0 +170774098382,214,0 +170774098432,215,0 +170774098479,215,0 +170774098529,215,0 +170774098577,215,0 +170774098625,215,0 +170774098674,215,0 +170774098722,214,0 +170774098770,214,0 +170774098819,214,0 +170774098867,214,0 +170774098915,214,0 +170774098963,214,0 +170774099011,214,0 +170774099059,214,0 +170774099107,215,0 +170774099156,215,0 +170774099204,215,0 +170774099252,215,0 +170774099301,215,0 +170774099351,215,0 +170774099399,215,0 +170774099448,215,0 +170774099496,215,0 +170774099544,215,0 +170774099594,215,0 +170774099642,215,0 +170774099690,215,0 +170774099738,215,0 +170774099787,215,0 +170774099835,215,0 +170774099885,215,0 +170774099934,215,0 +170774099982,215,0 +170774100032,215,0 +170774100081,215,0 +170774100131,215,0 +170774100179,215,0 +170774100228,215,0 +170774100276,215,0 +170774100326,214,0 +170774100374,214,0 +170774100422,214,0 +170774100469,215,0 +170774100517,215,0 +170774100565,215,0 +170774100613,215,0 +170774100661,214,0 +170774100709,215,0 +170774100759,215,0 +170774100808,215,0 +170774100858,215,0 +170774100906,215,0 +170774100955,215,0 +170774101003,215,0 +170774101053,215,0 +170774101102,214,0 +170774101152,214,0 +170774101201,215,0 +170774101249,214,0 +170774101297,214,0 +170774101345,215,0 +170774101393,215,0 +170774101442,215,0 +170774101490,215,0 +170774101538,215,0 +170774101586,215,0 +170774101636,215,0 +170774101685,215,0 +170774101735,215,0 +170774101784,215,0 +170774101832,215,0 +170774101882,214,0 +170774101930,214,0 +170774101978,214,0 +170774102025,214,0 +170774102073,214,0 +170774102123,214,0 +170774102171,215,0 +170774102220,215,0 +170774102268,215,0 +170774102316,215,0 +170774102366,215,0 +170774102414,215,0 +170774102463,215,0 +170774102511,215,0 +170774102560,215,0 +170774102610,215,0 +170774102658,214,0 +170774102707,214,0 +170774102757,214,0 +170774102805,214,0 +170774102854,214,0 +170774102902,214,0 +170774102950,215,0 +170774102998,214,0 +170774103046,215,0 +170774103094,215,0 +170774103142,215,0 +170774103190,215,0 +170774103238,215,0 +170774103286,215,0 +170774103335,215,0 +170774103383,215,0 +170774103431,214,0 +170774103479,214,0 +170774103527,214,0 +170774103575,214,0 +170774103624,214,0 +170774103672,214,0 +170774103722,214,0 +170774103770,214,0 +170774103818,214,0 +170774103866,215,0 +170774103914,215,0 +170774103962,215,0 +170774104010,215,0 +170774104058,215,0 +170774104105,215,0 +170774104153,215,0 +170774104203,215,0 +170774104253,213,0 +170774104301,214,0 +170774104350,214,0 +170774104398,214,0 +170774104448,214,0 +170774104496,214,0 +170774104545,214,0 +170774104595,214,0 +170774104642,215,0 +170774104690,215,0 +170774104738,215,0 +170774104788,215,0 +170774104836,215,0 +170774104885,215,0 +170774104935,215,0 +170774104982,215,0 +170774105030,214,0 +170774105078,213,0 +170774105126,213,0 +170774105174,214,0 +170774105222,214,0 +170774105272,214,0 +170774105320,214,0 +170774105367,214,0 +170774105417,214,0 +170774105465,214,0 +170774105513,214,0 +170774105562,214,0 +170774105612,214,0 +170774105661,215,0 +170774105711,215,0 +170774105759,215,0 +170774105807,214,0 +170774105855,213,0 +170774105903,213,0 +170774105950,213,0 +170774106000,214,0 +170774106048,214,0 +170774106096,214,0 +170774106145,214,0 +170774106193,214,0 +170774106243,214,0 +170774106291,214,0 +170774106339,214,0 +170774106388,214,0 +170774106436,214,0 +170774106484,215,0 +170774106532,215,0 +170774106580,214,0 +170774106628,214,0 +170774106676,214,0 +170774106724,214,0 +170774106772,214,0 +170774106820,214,0 +170774106867,214,0 +170774106915,214,0 +170774106963,214,0 +170774107011,214,0 +170774107059,214,0 +170774107107,215,0 +170774107155,215,0 +170774107202,215,0 +170774107250,215,0 +170774107298,215,0 +170774107346,215,0 +170774107394,214,0 +170774107442,214,0 +170774107490,214,0 +170774107537,214,0 +170774107585,214,0 +170774107633,215,0 +170774107681,214,0 +170774107729,215,0 +170774107777,215,0 +170774107825,215,0 +170774107873,215,0 +170774107920,215,0 +170774107968,215,0 +170774108018,215,0 +170774108066,215,0 +170774108115,215,0 +170774108163,214,0 +170774108211,214,0 +170774108259,214,0 +170774108308,214,0 +170774108356,214,0 +170774108404,214,0 +170774108452,214,0 +170774108499,215,0 +170774108549,215,0 +170774108598,215,0 +170774108646,215,0 +170774108696,215,0 +170774108744,216,0 +170774108792,215,0 +170774108840,215,0 +170774108889,215,0 +170774108939,214,0 +170774108986,214,0 +170774109034,214,0 +170774109084,214,0 +170774109133,214,0 +170774109181,214,0 +170774109229,214,0 +170774109277,215,0 +170774109326,215,0 +170774109376,215,0 +170774109424,215,0 +170774109472,215,0 +170774109521,215,0 +170774109570,215,0 +170774109618,215,0 +170774109668,215,0 +170774109716,214,0 +170774109764,214,0 +170774109813,214,0 +170774109863,214,0 +170774109910,214,0 +170774109960,214,0 +170774110008,214,0 +170774110056,214,0 +170774110104,215,0 +170774110152,215,0 +170774110200,215,0 +170774110248,215,0 +170774110296,215,0 +170774110344,215,0 +170774110391,215,0 +170774110439,215,0 +170774110487,214,0 +170774110537,214,0 +170774110585,214,0 +170774110632,214,0 +170774110682,214,0 +170774110731,214,0 +170774110779,214,0 +170774110827,214,0 +170774110875,214,0 +170774110923,215,0 +170774110971,215,0 +170774111021,215,0 +170774111069,215,0 +170774111117,215,0 +170774111166,215,0 +170774111214,215,0 +170774111262,215,0 +170774111310,214,0 +170774111359,214,0 +170774111409,214,0 +170774111459,214,0 +170774111506,215,0 +170774111554,215,0 +170774111604,215,0 +170774111653,215,0 +170774111701,215,0 +170774111751,215,0 +170774111800,215,0 +170774111848,215,0 +170774111896,215,0 +170774111944,215,0 +170774111992,215,0 +170774112040,215,0 +170774112087,215,0 +170774112135,214,0 +170774112183,214,0 +170774112231,214,0 +170774112279,214,0 +170774112326,215,0 +170774112374,215,0 +170774112422,215,0 +170774112470,215,0 +170774112518,215,0 +170774112566,215,0 +170774112613,215,0 +170774112661,215,0 +170774112711,215,0 +170774112758,215,0 +170774112806,215,0 +170774112854,215,0 +170774112902,214,0 +170774112950,214,0 +170774112998,214,0 +170774113047,214,0 +170774113095,214,0 +170774113143,214,0 +170774113191,215,0 +170774113240,214,0 +170774113288,215,0 +170774113336,214,0 +170774113384,215,0 +170774113432,215,0 +170774113480,215,0 +170774113528,215,0 +170774113578,215,0 +170774113625,214,0 +170774113673,214,0 +170774113721,214,0 +170774113769,214,0 +170774113817,214,0 +170774113867,214,0 +170774113915,215,0 +170774113963,215,0 +170774114010,215,0 +170774114060,215,0 +170774114109,215,0 +170774114157,215,0 +170774114205,215,0 +170774114253,215,0 +170774114301,215,0 +170774114351,215,0 +170774114400,215,0 +170774114450,214,0 +170774114499,214,0 +170774114547,214,0 +170774114595,214,0 +170774114643,214,0 +170774114691,215,0 +170774114739,214,0 +170774114787,215,0 +170774114836,215,0 +170774114884,215,0 +170774114932,215,0 +170774114981,215,0 +170774115029,215,0 +170774115077,215,0 +170774115125,215,0 +170774115173,215,0 +170774115220,215,0 +170774115268,213,0 +170774115316,214,0 +170774115364,214,0 +170774115412,214,0 +170774115459,214,0 +170774115507,214,0 +170774115555,214,0 +170774115603,214,0 +170774115651,214,0 +170774115698,214,0 +170774115746,214,0 +170774115794,215,0 +170774115842,215,0 +170774115890,215,0 +170774115938,215,0 +170774115985,215,0 +170774116033,214,0 +170774116081,213,0 +170774116129,213,0 +170774116177,213,0 +170774116224,213,0 +170774116272,214,0 +170774116320,214,0 +170774116368,214,0 +170774116418,214,0 +170774116465,214,0 +170774116513,214,0 +170774116563,214,0 +170774116612,214,0 +170774116660,214,0 +170774116708,214,0 +170774116758,215,0 +170774116807,214,0 +170774116855,214,0 +170774116903,214,0 +170774116951,214,0 +170774117000,214,0 +170774117048,214,0 +170774117098,214,0 +170774117147,214,0 +170774117197,214,0 +170774117244,214,0 +170774117292,215,0 +170774117340,215,0 +170774117388,215,0 +170774117436,215,0 +170774117484,215,0 +170774117532,215,0 +170774117580,215,0 +170774117627,213,0 +170774117675,214,0 +170774117723,214,0 +170774117773,214,0 +170774117822,214,0 +170774117870,214,0 +170774117919,214,0 +170774117967,214,0 +170774118017,214,0 +170774118065,215,0 +170774118114,215,0 +170774118162,215,0 +170774118210,215,0 +170774118258,215,0 +170774118306,215,0 +170774118356,215,0 +170774118405,214,0 +170774118453,214,0 +170774118503,214,0 +170774118551,214,0 +170774118598,214,0 +170774118646,214,0 +170774118696,214,0 +170774118744,215,0 +170774118792,215,0 +170774118841,215,0 +170774118891,215,0 +170774118939,215,0 +170774118987,215,0 +170774119035,215,0 +170774119083,215,0 +170774119130,215,0 +170774119178,214,0 +170774119226,214,0 +170774119274,214,0 +170774119322,214,0 +170774119370,214,0 +170774119420,214,0 +170774119469,214,0 +170774119519,215,0 +170774119567,215,0 +170774119615,215,0 +170774119663,215,0 +170774119711,215,0 +170774119760,215,0 +170774119810,215,0 +170774119857,215,0 +170774119905,215,0 +170774119953,214,0 +170774120003,214,0 +170774120052,214,0 +170774120100,214,0 +170774120150,214,0 +170774120199,214,0 +170774120249,214,0 +170774120297,215,0 +170774120345,215,0 +170774120393,215,0 +170774120442,215,0 +170774120490,215,0 +170774120539,215,0 +170774120588,215,0 +170774120635,215,0 +170774120683,215,0 +170774120733,215,0 +170774120781,214,0 +170774120830,214,0 +170774120880,214,0 +170774120929,214,0 +170774120977,214,0 +170774121027,214,0 +170774121075,214,0 +170774121124,214,0 +170774121174,215,0 +170774121223,215,0 +170774121271,215,0 +170774121319,215,0 +170774121367,215,0 +170774121415,215,0 +170774121463,215,0 +170774121512,214,0 +170774121560,213,0 +170774121610,213,0 +170774121657,214,0 +170774121705,214,0 +170774121753,214,0 +170774121801,214,0 +170774121851,214,0 +170774121899,214,0 +170774121947,214,0 +170774121995,214,0 +170774122042,215,0 +170774122090,215,0 +170774122140,215,0 +170774122189,215,0 +170774122237,215,0 +170774122285,215,0 +170774122335,214,0 +170774122384,214,0 +170774122432,214,0 +170774122480,214,0 +170774122529,214,0 +170774122577,214,0 +170774122627,214,0 +170774122675,214,0 +170774122723,214,0 +170774122770,215,0 +170774122818,215,0 +170774122866,215,0 +170774122914,215,0 +170774122962,215,0 +170774123009,215,0 +170774123057,214,0 +170774123107,214,0 +170774123156,214,0 +170774123204,214,0 +170774123252,214,0 +170774123300,214,0 +170774123348,214,0 +170774123396,214,0 +170774123444,214,0 +170774123492,214,0 +170774123540,215,0 +170774123589,215,0 +170774123639,215,0 +170774123688,215,0 +170774123736,215,0 +170774123784,215,0 +170774123832,215,0 +170774123879,215,0 +170774123929,214,0 +170774123977,214,0 +170774124025,214,0 +170774124073,215,0 +170774124122,215,0 +170774124170,215,0 +170774124220,215,0 +170774124268,215,0 +170774124316,215,0 +170774124365,215,0 +170774124415,215,0 +170774124463,215,0 +170774124512,215,0 +170774124560,215,0 +170774124608,215,0 +170774124656,215,0 +170774124704,214,0 +170774124751,214,0 +170774124799,214,0 +170774124849,215,0 +170774124897,215,0 +170774124944,215,0 +170774124992,215,0 +170774125040,215,0 +170774125089,215,0 +170774125137,215,0 +170774125187,215,0 +170774125235,215,0 +170774125282,215,0 +170774125330,215,0 +170774125378,215,0 +170774125426,215,0 +170774125474,214,0 +170774125521,214,0 +170774125569,214,0 +170774125617,214,0 +170774125665,214,0 +170774125713,214,0 +170774125762,215,0 +170774125810,215,0 +170774125858,215,0 +170774125906,215,0 +170774125956,215,0 +170774126004,215,0 +170774126053,215,0 +170774126101,215,0 +170774126149,215,0 +170774126198,215,0 +170774126246,214,0 +170774126294,214,0 +170774126342,214,0 +170774126390,214,0 +170774126438,214,0 +170774126486,214,0 +170774126534,215,0 +170774126582,214,0 +170774126629,215,0 +170774126679,215,0 +170774126727,215,0 +170774126775,215,0 +170774126824,215,0 +170774126874,215,0 +170774126922,215,0 +170774126970,215,0 +170774127019,215,0 +170774127069,214,0 +170774127118,214,0 +170774127166,214,0 +170774127216,215,0 +170774127265,215,0 +170774127315,215,0 +170774127363,215,0 +170774127411,215,0 +170774127459,215,0 +170774127507,215,0 +170774127555,215,0 +170774127603,215,0 +170774127651,215,0 +170774127698,215,0 +170774127748,215,0 +170774127796,215,0 +170774127845,214,0 +170774127893,214,0 +170774127943,214,0 +170774127991,214,0 +170774128040,214,0 +170774128088,214,0 +170774128136,215,0 +170774128186,215,0 +170774128234,214,0 +170774128281,215,0 +170774128331,215,0 +170774128379,215,0 +170774128428,215,0 +170774128478,215,0 +170774128526,215,0 +170774128575,215,0 +170774128625,214,0 +170774128674,214,0 +170774128722,214,0 +170774128772,214,0 +170774128820,214,0 +170774128868,214,0 +170774128915,214,0 +170774128963,215,0 +170774129011,215,0 +170774129059,215,0 +170774129107,215,0 +170774129155,215,0 +170774129203,215,0 +170774129251,215,0 +170774129298,215,0 +170774129346,215,0 +170774129394,214,0 +170774129442,214,0 +170774129490,214,0 +170774129538,214,0 +170774129586,214,0 +170774129634,215,0 +170774129682,214,0 +170774129731,215,0 +170774129779,215,0 +170774129829,215,0 +170774129877,215,0 +170774129926,215,0 +170774129976,215,0 +170774130024,215,0 +170774130072,215,0 +170774130120,215,0 +170774130168,215,0 +170774130216,214,0 +170774130265,214,0 +170774130313,214,0 +170774130361,214,0 +170774130410,214,0 +170774130458,214,0 +170774130506,214,0 +170774130554,214,0 +170774130602,215,0 +170774130650,215,0 +170774130698,215,0 +170774130746,215,0 +170774130794,215,0 +170774130843,215,0 +170774130891,215,0 +170774130939,214,0 +170774130987,214,0 +170774131035,214,0 +170774131082,214,0 +170774131132,214,0 +170774131181,214,0 +170774131229,214,0 +170774131277,214,0 +170774131325,214,0 +170774131373,214,0 +170774131421,214,0 +170774131470,214,0 +170774131518,214,0 +170774131566,215,0 +170774131615,215,0 +170774131663,215,0 +170774131711,215,0 +170774131761,213,0 +170774131810,214,0 +170774131860,214,0 +170774131908,214,0 +170774131956,214,0 +170774132005,215,0 +170774132053,214,0 +170774132103,214,0 +170774132152,215,0 +170774132202,215,0 +170774132249,215,0 +170774132299,215,0 +170774132347,215,0 +170774132395,215,0 +170774132443,215,0 +170774132491,215,0 +170774132540,215,0 +170774132588,213,0 +170774132636,214,0 +170774132686,214,0 +170774132734,214,0 +170774132781,214,0 +170774132831,214,0 +170774132879,214,0 +170774132927,214,0 +170774132975,214,0 +170774133023,214,0 +170774133070,214,0 +170774133118,214,0 +170774133166,214,0 +170774133214,214,0 +170774133264,214,0 +170774133312,214,0 +170774133359,214,0 +170774133407,214,0 +170774133457,213,0 +170774133505,213,0 +170774133553,213,0 +170774133601,213,0 +170774133650,213,0 +170774133700,214,0 +170774133749,214,0 +170774133799,214,0 +170774133847,214,0 +170774133895,214,0 +170774133944,214,0 +170774133994,214,0 +170774134043,214,0 +170774134091,214,0 +170774134139,214,0 +170774134187,213,0 +170774134235,213,0 +170774134284,213,0 +170774134332,213,0 +170774134380,214,0 +170774134428,214,0 +170774134476,214,0 +170774134524,214,0 +170774134574,214,0 +170774134622,214,0 +170774134671,214,0 +170774134719,214,0 +170774134767,214,0 +170774134817,215,0 +170774134866,215,0 +170774134916,215,0 +170774134965,214,0 +170774135015,213,0 +170774135064,213,0 +170774135114,213,0 +170774135163,213,0 +170774135213,214,0 +170774135261,214,0 +170774135309,214,0 +170774135357,214,0 +170774135404,214,0 +170774135452,214,0 +170774135500,214,0 +170774135548,215,0 +170774135596,215,0 +170774135644,215,0 +170774135692,215,0 +170774135740,215,0 +170774135788,214,0 +170774135836,214,0 +170774135885,214,0 +170774135933,214,0 +170774135981,214,0 +170774136029,214,0 +170774136079,214,0 +170774136126,215,0 +170774136174,215,0 +170774136224,215,0 +170774136272,215,0 +170774136320,215,0 +170774136369,215,0 +170774136419,215,0 +170774136467,215,0 +170774136516,215,0 +170774136564,214,0 +170774136614,214,0 +170774136663,214,0 +170774136711,215,0 +170774136759,215,0 +170774136809,215,0 +170774136857,215,0 +170774136905,215,0 +170774136953,215,0 +170774137000,215,0 +170774137050,215,0 +170774137099,215,0 +170774137149,215,0 +170774137199,215,0 +170774137247,215,0 +170774137294,215,0 +170774137342,215,0 +170774137392,214,0 +170774137440,214,0 +170774137488,214,0 +170774137536,214,0 +170774137584,214,0 +170774137633,215,0 +170774137681,214,0 +170774137729,214,0 +170774137777,215,0 +170774137825,215,0 +170774137873,215,0 +170774137921,215,0 +170774137969,215,0 +170774138017,215,0 +170774138065,215,0 +170774138114,215,0 +170774138164,215,0 +170774138213,214,0 +170774138261,214,0 +170774138310,214,0 +170774138358,215,0 +170774138406,215,0 +170774138454,215,0 +170774138504,215,0 +170774138552,215,0 +170774138600,215,0 +170774138647,215,0 +170774138695,215,0 +170774138743,215,0 +170774138791,215,0 +170774138839,215,0 +170774138889,215,0 +170774138938,215,0 +170774138986,215,0 +170774139034,215,0 +170774139082,215,0 +170774139130,215,0 +170774139178,215,0 +170774139226,215,0 +170774139274,215,0 +170774139323,215,0 +170774139373,215,0 +170774139422,215,0 +170774139470,215,0 +170774139518,215,0 +170774139568,215,0 +170774139616,215,0 +170774139664,215,0 +170774139713,215,0 +170774139761,215,0 +170774139809,215,0 +170774139857,215,0 +170774139905,215,0 +170774139953,215,0 +170774140001,215,0 +170774140050,215,0 +170774140098,215,0 +170774140146,215,0 +170774140194,215,0 +170774140244,215,0 +170774140293,215,0 +170774140343,215,0 +170774140391,215,0 +170774140438,215,0 +170774140486,215,0 +170774140534,215,0 +170774140584,214,0 +170774140632,215,0 +170774140680,215,0 +170774140728,215,0 +170774140776,215,0 +170774140825,215,0 +170774140873,215,0 +170774140921,215,0 +170774140971,215,0 +170774141019,215,0 +170774141067,216,0 +170774141114,215,0 +170774141162,215,0 +170774141210,215,0 +170774141258,215,0 +170774141308,215,0 +170774141356,215,0 +170774141405,214,0 +170774141455,214,0 +170774141503,214,0 +170774141552,214,0 +170774141600,215,0 +170774141648,215,0 +170774141696,215,0 +170774141744,214,0 +170774141792,215,0 +170774141840,215,0 +170774141888,215,0 +170774141936,215,0 +170774141985,215,0 +170774142033,215,0 +170774142081,215,0 +170774142129,215,0 +170774142176,214,0 +170774142224,214,0 +170774142272,214,0 +170774142320,214,0 +170774142370,214,0 +170774142418,214,0 +170774142466,215,0 +170774142515,215,0 +170774142565,215,0 +170774142613,215,0 +170774142660,215,0 +170774142708,215,0 +170774142756,215,0 +170774142806,215,0 +170774142854,215,0 +170774142902,215,0 +170774142950,215,0 +170774142998,214,0 +170774143046,214,0 +170774143094,214,0 +170774143142,214,0 +170774143191,214,0 +170774143241,214,0 +170774143289,214,0 +170774143336,214,0 +170774143384,215,0 +170774143432,215,0 +170774143480,215,0 +170774143530,215,0 +170774143578,215,0 +170774143626,215,0 +170774143675,215,0 +170774143723,215,0 +170774143771,215,0 +170774143821,214,0 +170774143870,214,0 +170774143920,214,0 +170774143968,214,0 +170774144017,214,0 +170774144065,214,0 +170774144113,214,0 +170774144161,214,0 +170774144211,214,0 +170774144260,215,0 +170774144310,214,0 +170774144358,215,0 +170774144406,215,0 +170774144454,215,0 +170774144502,214,0 +170774144550,215,0 +170774144598,214,0 +170774144645,213,0 +170774144694,213,0 +170774144741,214,0 +170774144789,214,0 +170774144837,214,0 +170774144885,214,0 +170774144935,214,0 +170774144983,214,0 +170774145032,214,0 +170774145080,214,0 +170774145128,214,0 +170774145176,214,0 +170774145224,215,0 +170774145273,215,0 +170774145323,215,0 +170774145371,215,0 +170774145420,214,0 +170774145470,213,0 +170774145519,214,0 +170774145567,214,0 +170774145615,214,0 +170774145663,214,0 +170774145713,214,0 +170774145762,214,0 +170774145812,214,0 +170774145861,214,0 +170774145909,215,0 +170774145958,214,0 +170774146006,215,0 +170774146056,215,0 +170774146105,215,0 +170774146153,215,0 +170774146201,215,0 +170774146249,214,0 +170774146299,214,0 +170774146347,214,0 +170774146396,214,0 +170774146446,214,0 +170774146494,214,0 +170774146541,214,0 +170774146591,214,0 +170774146640,214,0 +170774146690,215,0 +170774146738,215,0 +170774146787,215,0 +170774146835,215,0 +170774146885,215,0 +170774146933,215,0 +170774146982,215,0 +170774147032,215,0 +170774147081,214,0 +170774147131,214,0 +170774147179,214,0 +170774147227,214,0 +170774147274,214,0 +170774147324,214,0 +170774147372,214,0 +170774147420,214,0 +170774147468,214,0 +170774147517,214,0 +170774147565,215,0 +170774147613,214,0 +170774147661,215,0 +170774147709,215,0 +170774147757,215,0 +170774147806,215,0 +170774147854,215,0 +170774147902,214,0 +170774147952,214,0 +170774148000,214,0 +170774148048,214,0 +170774148096,214,0 +170774148145,214,0 +170774148193,215,0 +170774148243,215,0 +170774148292,215,0 +170774148342,215,0 +170774148390,215,0 +170774148437,215,0 +170774148485,215,0 +170774148533,215,0 +170774148583,215,0 +170774148630,215,0 +170774148680,215,0 +170774148728,214,0 +170774148775,214,0 +170774148823,214,0 +170774148871,214,0 +170774148919,215,0 +170774148967,215,0 +170774149015,215,0 +170774149063,215,0 +170774149111,215,0 +170774149159,215,0 +170774149206,215,0 +170774149254,215,0 +170774149302,215,0 +170774149350,215,0 +170774149398,215,0 +170774149446,215,0 +170774149494,215,0 +170774149542,215,0 +170774149591,214,0 +170774149639,214,0 +170774149687,215,0 +170774149735,215,0 +170774149784,215,0 +170774149832,215,0 +170774149880,215,0 +170774149930,215,0 +170774149977,215,0 +170774150027,215,0 +170774150075,215,0 +170774150123,215,0 +170774150171,215,0 +170774150219,215,0 +170774150268,215,0 +170774150318,215,0 +170774150367,215,0 +170774150415,214,0 +170774150463,214,0 +170774150511,214,0 +170774150559,214,0 +170774150607,214,0 +170774150655,215,0 +170774150705,215,0 +170774150754,215,0 +170774150802,215,0 +170774150850,215,0 +170774150899,215,0 +170774150949,215,0 +170774150997,215,0 +170774151046,215,0 +170774151094,215,0 +170774151144,215,0 +170774151192,215,0 +170774151240,214,0 +170774151288,214,0 +170774151335,214,0 +170774151383,214,0 +170774151431,215,0 +170774151479,215,0 +170774151527,214,0 +170774151575,215,0 +170774151622,215,0 +170774151670,215,0 +170774151720,215,0 +170774151768,215,0 +170774151817,215,0 +170774151867,215,0 +170774151916,215,0 +170774151965,215,0 +170774152015,215,0 +170774152063,214,0 +170774152112,214,0 +170774152160,214,0 +170774152208,214,0 +170774152256,214,0 +170774152306,214,0 +170774152353,214,0 +170774152401,214,0 +170774152451,215,0 +170774152499,214,0 +170774152547,215,0 +170774152595,215,0 +170774152642,215,0 +170774152690,215,0 +170774152738,215,0 +170774152786,215,0 +170774152834,215,0 +170774152882,214,0 +170774152930,214,0 +170774152977,214,0 +170774153027,214,0 +170774153075,214,0 +170774153123,214,0 +170774153171,214,0 +170774153218,214,0 +170774153268,214,0 +170774153317,214,0 +170774153367,214,0 +170774153415,215,0 +170774153463,215,0 +170774153511,215,0 +170774153558,215,0 +170774153606,215,0 +170774153654,215,0 +170774153702,214,0 +170774153750,214,0 +170774153798,214,0 +170774153845,214,0 +170774153895,214,0 +170774153943,214,0 +170774153991,214,0 +170774154038,215,0 +170774154088,214,0 +170774154136,215,0 +170774154184,215,0 +170774154231,215,0 +170774154279,215,0 +170774154327,215,0 +170774154375,215,0 +170774154423,215,0 +170774154471,215,0 +170774154519,214,0 +170774154568,214,0 +170774154616,214,0 +170774154666,214,0 +170774154715,214,0 +170774154763,214,0 +170774154811,214,0 +170774154859,214,0 +170774154908,214,0 +170774154958,215,0 +170774155006,214,0 +170774155054,215,0 +170774155102,214,0 +170774155151,215,0 +170774155201,215,0 +170774155249,215,0 +170774155297,215,0 +170774155345,214,0 +170774155393,214,0 +170774155440,214,0 +170774155490,214,0 +170774155539,214,0 +170774155587,214,0 +170774155637,214,0 +170774155686,214,0 +170774155734,214,0 +170774155784,214,0 +170774155833,214,0 +170774155883,215,0 +170774155931,215,0 +170774155980,215,0 +170774156028,215,0 +170774156076,215,0 +170774156124,215,0 +170774156172,214,0 +170774156220,214,0 +170774156268,214,0 +170774156316,214,0 +170774156365,214,0 +170774156415,214,0 +170774156463,214,0 +170774156512,214,0 +170774156562,214,0 +170774156611,215,0 +170774156659,214,0 +170774156709,215,0 +170774156757,215,0 +170774156806,215,0 +170774156854,215,0 +170774156904,215,0 +170774156952,215,0 +170774156999,214,0 +170774157047,214,0 +170774157095,214,0 +170774157143,214,0 +170774157193,214,0 +170774157242,214,0 +170774157290,214,0 +170774157340,214,0 +170774157389,215,0 +170774157437,215,0 +170774157487,215,0 +170774157535,215,0 +170774157583,215,0 +170774157631,215,0 +170774157680,215,0 +170774157730,215,0 +170774157779,215,0 +170774157829,214,0 +170774157877,214,0 +170774157925,214,0 +170774157974,214,0 +170774158022,214,0 +170774158070,214,0 +170774158118,214,0 +170774158166,214,0 +170774158216,214,0 +170774158264,215,0 +170774158313,215,0 +170774158363,215,0 +170774158412,215,0 +170774158460,215,0 +170774158508,215,0 +170774158557,215,0 +170774158607,215,0 +170774158655,214,0 +170774158704,214,0 +170774158752,214,0 +170774158802,214,0 +170774158850,214,0 +170774158898,214,0 +170774158946,214,0 +170774158994,215,0 +170774159042,214,0 +170774159090,215,0 +170774159138,215,0 +170774159185,215,0 +170774159233,215,0 +170774159281,215,0 +170774159329,215,0 +170774159377,215,0 +170774159427,215,0 +170774159476,214,0 +170774159526,214,0 +170774159574,214,0 +170774159622,214,0 +170774159671,214,0 +170774159719,214,0 +170774159768,214,0 +170774159816,215,0 +170774159864,215,0 +170774159912,215,0 +170774159962,215,0 +170774160011,215,0 +170774160061,215,0 +170774160110,215,0 +170774160158,215,0 +170774160206,215,0 +170774160254,215,0 +170774160304,214,0 +170774160352,214,0 +170774160401,214,0 +170774160451,214,0 +170774160499,214,0 +170774160546,214,0 +170774160594,215,0 +170774160642,215,0 +170774160692,215,0 +170774160740,215,0 +170774160788,215,0 +170774160837,215,0 +170774160887,215,0 +170774160935,215,0 +170774160984,215,0 +170774161032,215,0 +170774161080,215,0 +170774161130,214,0 +170774161179,214,0 +170774161229,214,0 +170774161277,214,0 +170774161326,214,0 +170774161376,214,0 +170774161423,215,0 +170774161471,215,0 +170774161519,215,0 +170774161567,215,0 +170774161615,215,0 +170774161663,215,0 +170774161711,215,0 +170774161759,215,0 +170774161808,215,0 +170774161856,215,0 +170774161904,215,0 +170774161952,214,0 +170774162000,214,0 +170774162047,214,0 +170774162097,214,0 +170774162145,214,0 +170774162192,214,0 +170774162240,214,0 +170774162288,215,0 +170774162336,214,0 +170774162384,215,0 +170774162432,215,0 +170774162479,215,0 +170774162529,215,0 +170774162578,215,0 +170774162628,215,0 +170774162676,215,0 +170774162723,215,0 +170774162771,215,0 +170774162821,214,0 +170774162869,214,0 +170774162917,214,0 +170774162964,214,0 +170774163012,214,0 +170774163060,214,0 +170774163108,215,0 +170774163156,215,0 +170774163204,215,0 +170774163252,215,0 +170774163299,215,0 +170774163347,215,0 +170774163395,215,0 +170774163443,215,0 +170774163491,215,0 +170774163540,215,0 +170774163590,215,0 +170774163638,214,0 +170774163686,214,0 +170774163735,214,0 +170774163785,214,0 +170774163833,214,0 +170774163882,214,0 +170774163930,214,0 +170774163980,214,0 +170774164029,214,0 +170774164079,214,0 +170774164128,215,0 +170774164178,215,0 +170774164226,215,0 +170774164275,215,0 +170774164323,215,0 +170774164373,215,0 +170774164422,215,0 +170774164470,213,0 +170774164518,213,0 +170774164566,213,0 +170774164614,213,0 +170774164662,214,0 +170774164710,214,0 +170774164759,214,0 +170774164809,214,0 +170774164857,214,0 +170774164905,214,0 +170774164953,214,0 +170774165001,215,0 +170774165050,215,0 +170774165100,215,0 +170774165148,215,0 +170774165197,215,0 +170774165247,215,0 +170774165295,215,0 +170774165344,215,0 +170774165394,215,0 +170774165441,215,0 +170774165489,215,0 +170774165537,215,0 +170774165587,215,0 +170774165635,215,0 +170774165684,214,0 +170774165732,214,0 +170774165782,214,0 +170774165830,214,0 +170774165878,214,0 +170774165926,214,0 +170774165975,214,0 +170774166023,215,0 +170774166073,215,0 +170774166121,215,0 +170774166169,215,0 +170774166216,215,0 +170774166266,215,0 +170774166314,215,0 +170774166362,215,0 +170774166411,215,0 +170774166459,215,0 +170774166509,214,0 +170774166558,213,0 +170774166608,214,0 +170774166656,214,0 +170774166704,214,0 +170774166752,214,0 +170774166801,214,0 +170774166849,214,0 +170774166897,214,0 +170774166945,214,0 +170774166994,214,0 +170774167042,215,0 +170774167092,215,0 +170774167140,215,0 +170774167188,215,0 +170774167236,215,0 +170774167284,215,0 +170774167333,214,0 +170774167381,214,0 +170774167429,214,0 +170774167479,214,0 +170774167527,214,0 +170774167575,214,0 +170774167622,214,0 +170774167670,214,0 +170774167720,214,0 +170774167768,214,0 +170774167817,215,0 +170774167865,214,0 +170774167915,214,0 +170774167963,215,0 +170774168011,215,0 +170774168060,215,0 +170774168110,215,0 +170774168159,214,0 +170774168209,214,0 +170774168257,214,0 +170774168305,214,0 +170774168353,214,0 +170774168402,214,0 +170774168452,214,0 +170774168500,214,0 +170774168549,215,0 +170774168597,214,0 +170774168645,215,0 +170774168694,215,0 +170774168742,215,0 +170774168790,215,0 +170774168840,215,0 +170774168888,215,0 +170774168937,215,0 +170774168985,214,0 +170774169033,214,0 +170774169081,214,0 +170774169131,214,0 +170774169178,214,0 +170774169226,214,0 +170774169274,214,0 +170774169322,214,0 +170774169370,215,0 +170774169418,215,0 +170774169466,215,0 +170774169514,215,0 +170774169561,215,0 +170774169611,215,0 +170774169659,215,0 +170774169707,215,0 +170774169756,215,0 +170774169804,214,0 +170774169852,214,0 +170774169900,214,0 +170774169947,214,0 +170774169995,214,0 +170774170045,214,0 +170774170094,215,0 +170774170143,214,0 +170774170191,214,0 +170774170239,215,0 +170774170289,215,0 +170774170337,215,0 +170774170384,215,0 +170774170432,215,0 +170774170480,215,0 +170774170530,215,0 +170774170578,215,0 +170774170627,215,0 +170774170675,214,0 +170774170724,214,0 +170774170772,214,0 +170774170820,214,0 +170774170870,214,0 +170774170917,214,0 +170774170965,215,0 +170774171015,215,0 +170774171063,215,0 +170774171111,215,0 +170774171159,215,0 +170774171208,215,0 +170774171258,215,0 +170774171307,215,0 +170774171355,215,0 +170774171403,215,0 +170774171451,215,0 +170774171499,214,0 +170774171547,214,0 +170774171595,214,0 +170774171644,214,0 +170774171692,214,0 +170774171740,214,0 +170774171789,215,0 +170774171839,215,0 +170774171887,215,0 +170774171936,215,0 +170774171986,215,0 +170774172034,215,0 +170774172082,215,0 +170774172130,215,0 +170774172178,215,0 +170774172226,215,0 +170774172274,215,0 +170774172323,214,0 +170774172371,214,0 +170774172420,214,0 +170774172468,214,0 +170774172516,214,0 +170774172564,214,0 +170774172612,214,0 +170774172660,214,0 +170774172708,214,0 +170774172756,215,0 +170774172804,215,0 +170774172852,215,0 +170774172900,215,0 +170774172949,215,0 +170774172999,215,0 +170774173047,215,0 +170774173096,215,0 +170774173146,214,0 +170774173195,214,0 +170774173243,214,0 +170774173293,214,0 +170774173340,214,0 +170774173388,214,0 +170774173436,214,0 +170774173486,214,0 +170774173535,214,0 +170774173583,215,0 +170774173631,214,0 +170774173679,215,0 +170774173729,215,0 +170774173777,215,0 +170774173824,215,0 +170774173874,215,0 +170774173923,215,0 +170774173971,214,0 +170774174019,214,0 +170774174067,214,0 +170774174117,214,0 +170774174164,214,0 +170774174214,214,0 +170774174262,214,0 +170774174310,214,0 +170774174358,214,0 +170774174406,215,0 +170774174454,214,0 +170774174501,214,0 +170774174551,215,0 +170774174599,215,0 +170774174648,215,0 +170774174698,215,0 +170774174746,215,0 +170774174794,214,0 +170774174843,214,0 +170774174891,214,0 +170774174941,214,0 +170774174989,214,0 +170774175036,214,0 +170774175084,214,0 +170774175132,215,0 +170774175180,215,0 +170774175228,215,0 +170774175276,215,0 +170774175324,215,0 +170774175373,215,0 +170774175421,215,0 +170774175471,215,0 +170774175519,215,0 +170774175567,215,0 +170774175614,214,0 +170774175662,214,0 +170774175710,214,0 +170774175758,214,0 +170774175806,214,0 +170774175854,214,0 +170774175902,215,0 +170774175950,215,0 +170774175999,215,0 +170774176047,215,0 +170774176095,215,0 +170774176143,215,0 +170774176191,215,0 +170774176241,215,0 +170774176290,215,0 +170774176338,215,0 +170774176386,215,0 +170774176434,214,0 +170774176482,214,0 +170774176531,214,0 +170774176581,214,0 +170774176629,215,0 +170774176677,215,0 +170774176725,215,0 +170774176774,215,0 +170774176822,215,0 +170774176870,215,0 +170774176918,215,0 +170774176966,215,0 +170774177014,215,0 +170774177062,215,0 +170774177110,215,0 +170774177158,215,0 +170774177207,215,0 +170774177257,214,0 +170774177305,214,0 +170774177353,214,0 +170774177401,214,0 +170774177450,214,0 +170774177498,214,0 +170774177546,215,0 +170774177594,215,0 +170774177642,215,0 +170774177692,215,0 +170774177740,215,0 +170774177788,215,0 +170774177837,215,0 +170774177885,215,0 +170774177933,215,0 +170774177982,215,0 +170774178032,215,0 +170774178082,214,0 +170774178129,214,0 +170774178179,214,0 +170774178227,214,0 +170774178276,214,0 +170774178324,214,0 +170774178372,214,0 +170774178422,215,0 +170774178470,215,0 +170774178518,215,0 +170774178568,215,0 +170774178615,215,0 +170774178663,215,0 +170774178713,215,0 +170774178761,215,0 +170774178809,215,0 +170774178858,215,0 +170774178908,214,0 +170774178956,214,0 +170774179004,214,0 +170774179053,214,0 +170774179103,214,0 +170774179152,214,0 +170774179200,215,0 +170774179248,215,0 +170774179297,215,0 +170774179345,215,0 +170774179393,215,0 +170774179443,215,0 +170774179492,215,0 +170774179542,215,0 +170774179591,215,0 +170774179641,215,0 +170774179689,215,0 +170774179738,214,0 +170774179786,214,0 +170774179834,214,0 +170774179882,214,0 +170774179930,214,0 +170774179978,214,0 +170774180026,214,0 +170774180074,215,0 +170774180122,215,0 +170774180171,215,0 +170774180221,215,0 +170774180269,215,0 +170774180316,215,0 +170774180366,215,0 +170774180414,215,0 +170774180462,215,0 +170774180510,215,0 +170774180559,214,0 +170774180607,214,0 +170774180657,214,0 +170774180706,214,0 +170774180754,214,0 +170774180802,214,0 +170774180851,214,0 +170774180899,214,0 +170774180949,215,0 +170774180998,215,0 +170774181048,215,0 +170774181096,215,0 +170774181144,215,0 +170774181192,215,0 +170774181240,215,0 +170774181289,215,0 +170774181337,215,0 +170774181385,215,0 +170774181433,215,0 +170774181481,215,0 +170774181530,215,0 +170774181578,215,0 +170774181626,215,0 +170774181674,215,0 +170774181722,215,0 +170774181770,215,0 +170774181818,215,0 +170774181865,215,0 +170774181915,215,0 +170774181963,215,0 +170774182012,215,0 +170774182060,215,0 +170774182108,215,0 +170774182156,215,0 +170774182204,215,0 +170774182254,214,0 +170774182301,214,0 +170774182349,214,0 +170774182397,214,0 +170774182445,214,0 +170774182495,215,0 +170774182543,215,0 +170774182590,215,0 +170774182640,215,0 +170774182688,215,0 +170774182736,215,0 +170774182783,216,0 +170774182831,215,0 +170774182881,215,0 +170774182928,215,0 +170774182976,215,0 +170774183024,215,0 +170774183073,214,0 +170774183121,214,0 +170774183169,214,0 +170774183217,214,0 +170774183265,214,0 +170774183313,214,0 +170774183361,214,0 +170774183408,214,0 +170774183456,214,0 +170774183504,214,0 +170774183552,214,0 +170774183600,215,0 +170774183648,215,0 +170774183696,215,0 +170774183746,215,0 +170774183795,215,0 +170774183843,215,0 +170774183891,214,0 +170774183939,213,0 +170774183988,214,0 +170774184036,214,0 +170774184084,214,0 +170774184133,214,0 +170774184183,214,0 +170774184231,214,0 +170774184279,214,0 +170774184327,214,0 +170774184375,215,0 +170774184422,215,0 +170774184470,215,0 +170774184520,215,0 +170774184568,215,0 +170774184617,215,0 +170774184667,215,0 +170774184715,214,0 +170774184763,213,0 +170774184812,213,0 +170774184862,214,0 +170774184910,214,0 +170774184959,214,0 +170774185007,214,0 +170774185055,214,0 +170774185105,214,0 +170774185153,214,0 +170774185201,214,0 +170774185249,215,0 +170774185296,215,0 +170774185346,215,0 +170774185395,215,0 +170774185445,215,0 +170774185493,215,0 +170774185541,214,0 +170774185589,213,0 +170774185638,213,0 +170774185688,214,0 +170774185736,213,0 +170774185783,213,0 +170774185833,214,0 +170774185882,214,0 +170774185930,214,0 +170774185978,214,0 +170774186026,214,0 +170774186076,214,0 +170774186125,215,0 +170774186173,215,0 +170774186221,214,0 +170774186269,214,0 +170774186317,214,0 +170774186366,214,0 +170774186414,213,0 +170774186462,213,0 +170774186510,214,0 +170774186557,214,0 +170774186605,214,0 +170774186653,214,0 +170774186701,214,0 +170774186749,214,0 +170774186797,214,0 +170774186845,214,0 +170774186892,214,0 +170774186940,214,0 +170774186988,215,0 +170774187036,215,0 +170774187084,215,0 +170774187132,214,0 +170774187181,214,0 +170774187229,213,0 +170774187277,213,0 +170774187327,213,0 +170774187375,213,0 +170774187424,213,0 +170774187474,214,0 +170774187522,214,0 +170774187570,214,0 +170774187618,214,0 +170774187666,214,0 +170774187715,214,0 +170774187763,214,0 +170774187811,214,0 +170774187859,215,0 +170774187908,215,0 +170774187958,215,0 +170774188006,214,0 +170774188055,214,0 +170774188105,214,0 +170774188154,214,0 +170774188202,214,0 +170774188250,214,0 +170774188298,214,0 +170774188348,214,0 +170774188396,214,0 +170774188444,215,0 +170774188492,214,0 +170774188541,215,0 +170774188589,215,0 +170774188639,215,0 +170774188686,215,0 +170774188736,215,0 +170774188785,215,0 +170774188833,215,0 +170774188881,214,0 +170774188929,214,0 +170774188979,214,0 +170774189028,214,0 +170774189076,214,0 +170774189126,214,0 +170774189174,214,0 +170774189222,214,0 +170774189270,215,0 +170774189319,214,0 +170774189367,215,0 +170774189417,215,0 +170774189466,215,0 +170774189514,215,0 +170774189562,215,0 +170774189610,215,0 +170774189658,215,0 +170774189707,214,0 +170774189757,214,0 +170774189805,214,0 +170774189853,214,0 +170774189901,214,0 +170774189949,214,0 +170774189996,214,0 +170774190046,214,0 +170774190095,214,0 +170774190145,215,0 +170774190194,215,0 +170774190244,215,0 +170774190292,215,0 +170774190340,215,0 +170774190389,215,0 +170774190439,215,0 +170774190487,215,0 +170774190535,214,0 +170774190584,214,0 +170774190634,214,0 +170774190684,214,0 +170774190731,214,0 +170774190779,215,0 +170774190829,214,0 +170774190877,214,0 +170774190925,214,0 +170774190973,215,0 +170774191021,215,0 +170774191069,215,0 +170774191116,215,0 +170774191164,215,0 +170774191214,215,0 +170774191263,215,0 +170774191311,215,0 +170774191361,214,0 +170774191410,215,0 +170774191460,215,0 +170774191508,215,0 +170774191556,215,0 +170774191605,215,0 +170774191653,215,0 +170774191701,215,0 +170774191749,215,0 +170774191797,215,0 +170774191846,215,0 +170774191896,215,0 +170774191944,215,0 +170774191992,215,0 +170774192040,215,0 +170774192088,215,0 +170774192136,215,0 +170774192184,215,0 +170774192231,215,0 +170774192279,215,0 +170774192329,215,0 +170774192378,215,0 +170774192426,215,0 +170774192474,215,0 +170774192522,215,0 +170774192572,215,0 +170774192620,215,0 +170774192669,215,0 +170774192717,216,0 +170774192767,215,0 +170774192816,215,0 +170774192865,215,0 +170774192913,215,0 +170774192961,215,0 +170774193011,214,0 +170774193060,215,0 +170774193108,215,0 +170774193158,215,0 +170774193208,215,0 +170774193256,215,0 +170774193305,215,0 +170774193353,215,0 +170774193403,215,0 +170774193452,215,0 +170774193500,215,0 +170774193548,215,0 +170774193597,215,0 +170774193647,215,0 +170774193696,215,0 +170774193746,215,0 +170774193795,215,0 +170774193843,214,0 +170774193893,214,0 +170774193942,214,0 +170774193992,214,0 +170774194040,214,0 +170774194088,215,0 +170774194137,214,0 +170774194185,215,0 +170774194235,215,0 +170774194283,215,0 +170774194331,215,0 +170774194380,215,0 +170774194430,215,0 +170774194477,215,0 +170774194527,215,0 +170774194575,215,0 +170774194623,214,0 +170774194671,214,0 +170774194720,214,0 +170774194768,214,0 +170774194818,214,0 +170774194866,214,0 +170774194914,214,0 +170774194962,214,0 +170774195010,214,0 +170774195058,214,0 +170774195105,214,0 +170774195155,214,0 +170774195203,215,0 +170774195250,215,0 +170774195298,215,0 +170774195346,215,0 +170774195394,215,0 +170774195442,215,0 +170774195489,213,0 +170774195537,214,0 +170774195585,213,0 +170774195633,213,0 +170774195681,214,0 +170774195729,214,0 +170774195777,214,0 +170774195825,214,0 +170774195875,214,0 +170774195923,214,0 +170774195971,215,0 +170774196018,215,0 +170774196066,215,0 +170774196114,214,0 +170774196162,215,0 +170774196212,214,0 +170774196261,215,0 +170774196309,213,0 +170774196357,213,0 +170774196405,214,0 +170774196454,213,0 +170774196504,214,0 +170774196553,214,0 +170774196601,214,0 +170774196649,214,0 +170774196697,214,0 +170774196745,214,0 +170774196793,215,0 +170774196841,215,0 +170774196891,215,0 +170774196940,215,0 +170774196988,215,0 +170774197036,215,0 +170774197086,215,0 +170774197134,213,0 +170774197182,213,0 +170774197231,214,0 +170774197279,214,0 +170774197329,214,0 +170774197377,214,0 +170774197425,214,0 +170774197474,214,0 +170774197524,215,0 +170774197572,214,0 +170774197620,214,0 +170774197667,215,0 +170774197715,215,0 +170774197763,215,0 +170774197813,215,0 +170774197862,215,0 +170774197910,215,0 +170774197958,213,0 +170774198007,213,0 +170774198055,214,0 +170774198103,214,0 +170774198153,214,0 +170774198202,214,0 +170774198250,214,0 +170774198300,214,0 +170774198349,214,0 +170774198397,215,0 +170774198445,215,0 +170774198494,215,0 +170774198544,215,0 +170774198592,215,0 +170774198640,215,0 +170774198689,215,0 +170774198739,214,0 +170774198787,213,0 +170774198836,214,0 +170774198886,214,0 +170774198934,214,0 +170774198982,214,0 +170774199029,214,0 +170774199077,214,0 +170774199127,214,0 +170774199175,214,0 +170774199223,214,0 +170774199270,215,0 +170774199318,215,0 +170774199368,215,0 +170774199416,215,0 +170774199464,215,0 +170774199513,215,0 +170774199563,215,0 +170774199611,213,0 +170774199660,213,0 +170774199710,214,0 +170774199759,213,0 +170774199808,214,0 +170774199856,214,0 +170774199904,214,0 +170774199952,214,0 +170774200000,214,0 +170774200048,214,0 +170774200096,214,0 +170774200145,214,0 +170774200195,214,0 +170774200243,215,0 +170774200292,214,0 +170774200340,214,0 +170774200388,215,0 +170774200436,213,0 +170774200485,213,0 +170774200533,213,0 +170774200581,213,0 +170774200629,214,0 +170774200677,214,0 +170774200725,214,0 +170774200775,214,0 +170774200824,214,0 +170774200872,214,0 +170774200920,214,0 +170774200968,214,0 +170774201017,214,0 +170774201067,215,0 +170774201116,215,0 +170774201164,215,0 +170774201212,215,0 +170774201262,213,0 +170774201310,213,0 +170774201359,213,0 +170774201407,213,0 +170774201455,214,0 +170774201505,214,0 +170774201554,214,0 +170774201603,214,0 +170774201651,214,0 +170774201699,214,0 +170774201747,214,0 +170774201795,214,0 +170774201843,214,0 +170774201891,215,0 +170774201940,215,0 +170774201988,215,0 +170774202037,215,0 +170774202085,214,0 +170774202133,214,0 +170774202181,213,0 +170774202229,214,0 +170774202277,214,0 +170774202325,214,0 +170774202372,214,0 +170774202420,214,0 +170774202468,214,0 +170774202516,215,0 +170774202565,214,0 +170774202613,215,0 +170774202663,215,0 +170774202711,215,0 +170774202759,215,0 +170774202808,215,0 +170774202858,215,0 +170774202906,214,0 +170774202954,214,0 +170774203002,214,0 +170774203051,215,0 +170774203099,215,0 +170774203149,215,0 +170774203197,215,0 +170774203245,215,0 +170774203294,215,0 +170774203342,215,0 +170774203390,215,0 +170774203438,215,0 +170774203486,215,0 +170774203534,215,0 +170774203582,215,0 +170774203630,215,0 +170774203678,215,0 +170774203727,214,0 +170774203775,214,0 +170774203823,214,0 +170774203873,214,0 +170774203921,214,0 +170774203970,214,0 +170774204018,214,0 +170774204068,214,0 +170774204117,215,0 +170774204165,215,0 +170774204215,215,0 +170774204263,215,0 +170774204311,215,0 +170774204359,215,0 +170774204407,215,0 +170774204454,215,0 +170774204502,215,0 +170774204550,215,0 +170774204600,215,0 +170774204648,215,0 +170774204695,215,0 +170774204745,215,0 +170774204793,215,0 +170774204842,215,0 +170774204890,215,0 +170774204938,215,0 +170774204988,215,0 +170774205036,215,0 +170774205085,215,0 +170774205135,215,0 +170774205183,215,0 +170774205232,215,0 +170774205282,215,0 +170774205331,215,0 +170774205381,214,0 +170774205430,214,0 +170774205478,214,0 +170774205528,214,0 +170774205576,215,0 +170774205624,215,0 +170774205672,215,0 +170774205719,215,0 +170774205767,215,0 +170774205817,215,0 +170774205865,215,0 +170774205913,215,0 +170774205961,215,0 +170774206008,215,0 +170774206056,215,0 +170774206106,215,0 +170774206154,215,0 +170774206202,214,0 +170774206250,214,0 +170774206297,214,0 +170774206347,214,0 +170774206395,214,0 +170774206443,214,0 +170774206490,214,0 +170774206538,214,0 +170774206586,214,0 +170774206634,214,0 +170774206684,215,0 +170774206732,215,0 +170774206780,215,0 +170774206828,215,0 +170774206877,215,0 +170774206925,215,0 +170774206975,215,0 +170774207022,215,0 +170774207072,213,0 +170774207122,214,0 +170774207171,214,0 +170774207221,214,0 +170774207270,214,0 +170774207320,214,0 +170774207368,214,0 +170774207416,214,0 +170774207463,215,0 +170774207511,214,0 +170774207561,215,0 +170774207610,215,0 +170774207658,215,0 +170774207708,215,0 +170774207756,215,0 +170774207805,215,0 +170774207853,214,0 +170774207903,214,0 +170774207951,214,0 +170774207999,214,0 +170774208048,214,0 +170774208096,214,0 +170774208144,214,0 +170774208194,214,0 +170774208242,214,0 +170774208289,214,0 +170774208339,215,0 +170774208388,215,0 +170774208436,215,0 +170774208484,215,0 +170774208532,215,0 +170774208580,215,0 +170774208628,215,0 +170774208678,214,0 +170774208727,214,0 +170774208775,213,0 +170774208823,214,0 +170774208871,214,0 +170774208919,214,0 +170774208967,214,0 +170774209015,214,0 +170774209064,214,0 +170774209112,214,0 +170774209160,215,0 +170774209208,214,0 +170774209256,215,0 +170774209305,215,0 +170774209355,215,0 +170774209404,215,0 +170774209452,215,0 +170774209500,215,0 +170774209548,214,0 +170774209596,213,0 +170774209644,214,0 +170774209693,214,0 +170774209741,214,0 +170774209791,214,0 +170774209839,214,0 +170774209887,214,0 +170774209936,215,0 +170774209986,215,0 +170774210033,215,0 +170774210082,215,0 +170774210129,215,0 +170774210179,215,0 +170774210228,215,0 +170774210276,215,0 +170774210324,215,0 +170774210372,214,0 +170774210422,214,0 +170774210470,214,0 +170774210519,214,0 +170774210567,214,0 +170774210615,214,0 +170774210665,214,0 +170774210714,214,0 +170774210764,214,0 +170774210812,215,0 +170774210859,215,0 +170774210907,215,0 +170774210955,215,0 +170774211003,215,0 +170774211053,215,0 +170774211102,215,0 +170774211150,214,0 +170774211198,214,0 +170774211246,213,0 +170774211295,214,0 +170774211343,214,0 +170774211391,214,0 +170774211439,214,0 +170774211487,214,0 +170774211536,214,0 +170774211584,214,0 +170774211632,214,0 +170774211680,215,0 +170774211730,215,0 +170774211778,215,0 +170774211825,215,0 +170774211873,215,0 +170774211921,215,0 +170774211971,215,0 +170774212019,214,0 +170774212067,214,0 +170774212116,214,0 +170774212166,214,0 +170774212214,214,0 +170774212262,214,0 +170774212309,214,0 +170774212359,214,0 +170774212407,214,0 +170774212455,215,0 +170774212504,215,0 +170774212552,215,0 +170774212602,215,0 +170774212650,215,0 +170774212699,215,0 +170774212747,215,0 +170774212797,215,0 +170774212845,214,0 +170774212893,214,0 +170774212941,214,0 +170774212989,214,0 +170774213038,214,0 +170774213086,214,0 +170774213134,214,0 +170774213184,214,0 +170774213232,215,0 +170774213279,215,0 +170774213327,215,0 +170774213375,215,0 +170774213425,215,0 +170774213474,215,0 +170774213524,215,0 +170774213572,215,0 +170774213621,215,0 +170774213669,214,0 +170774213717,214,0 +170774213765,214,0 +170774213815,214,0 +170774213863,214,0 +170774213911,214,0 +170774213959,214,0 +170774214007,214,0 +170774214054,215,0 +170774214104,214,0 +170774214152,215,0 +170774214200,215,0 +170774214248,215,0 +170774214296,215,0 +170774214345,215,0 +170774214395,215,0 +170774214443,215,0 +170774214490,214,0 +170774214540,213,0 +170774214589,214,0 +170774214639,214,0 +170774214687,214,0 +170774214736,214,0 +170774214786,214,0 +170774214835,214,0 +170774214883,215,0 +170774214933,215,0 +170774214981,215,0 +170774215030,215,0 +170774215080,215,0 +170774215128,215,0 +170774215176,215,0 +170774215225,215,0 +170774215273,215,0 +170774215321,214,0 +170774215371,214,0 +170774215418,214,0 +170774215466,214,0 +170774215516,214,0 +170774215564,215,0 +170774215612,214,0 +170774215660,214,0 +170774215708,214,0 +170774215756,215,0 +170774215804,215,0 +170774215853,215,0 +170774215901,215,0 +170774215949,215,0 +170774215997,215,0 +170774216047,215,0 +170774216094,215,0 +170774216142,214,0 +170774216192,214,0 +170774216240,214,0 +170774216287,214,0 +170774216337,214,0 +170774216385,214,0 +170774216433,214,0 +170774216480,215,0 +170774216528,215,0 +170774216576,215,0 +170774216624,215,0 +170774216672,215,0 +170774216720,215,0 +170774216770,215,0 +170774216819,215,0 +170774216867,215,0 +170774216915,215,0 +170774216965,214,0 +170774217013,214,0 +170774217061,214,0 +170774217110,214,0 +170774217160,215,0 +170774217209,214,0 +170774217257,215,0 +170774217305,215,0 +170774217353,215,0 +170774217401,215,0 +170774217448,215,0 +170774217496,215,0 +170774217546,215,0 +170774217594,215,0 +170774217642,215,0 +170774217690,215,0 +170774217738,215,0 +170774217785,214,0 +170774217835,214,0 +170774217883,214,0 +170774217932,214,0 +170774217980,214,0 +170774218030,214,0 +170774218078,214,0 +170774218126,215,0 +170774218173,214,0 +170774218221,215,0 +170774218271,215,0 +170774218319,215,0 +170774218369,215,0 +170774218416,215,0 +170774218464,215,0 +170774218512,215,0 +170774218560,215,0 +170774218610,214,0 +170774218659,213,0 +170774218707,213,0 +170774218756,214,0 +170774218806,214,0 +170774218855,214,0 +170774218903,214,0 +170774218951,214,0 +170774218999,214,0 +170774219047,214,0 +170774219095,214,0 +170774219143,215,0 +170774219192,215,0 +170774219242,215,0 +170774219291,215,0 +170774219341,215,0 +170774219389,215,0 +170774219438,214,0 +170774219486,214,0 +170774219534,214,0 +170774219582,214,0 +170774219632,214,0 +170774219680,214,0 +170774219729,214,0 +170774219779,214,0 +170774219828,214,0 +170774219876,215,0 +170774219924,215,0 +170774219972,215,0 +170774220020,215,0 +170774220068,215,0 +170774220116,215,0 +170774220163,215,0 +170774220211,215,0 +170774220261,214,0 +170774220310,213,0 +170774220360,214,0 +170774220409,214,0 +170774220459,214,0 +170774220508,214,0 +170774220556,214,0 +170774220606,214,0 +170774220655,214,0 +170774220703,214,0 +170774220751,215,0 +170774220799,215,0 +170774220847,215,0 +170774220895,215,0 +170774220945,215,0 +170774220994,215,0 +170774221042,215,0 +170774221090,214,0 +170774221139,214,0 +170774221187,214,0 +170774221235,214,0 +170774221284,214,0 +170774221332,214,0 +170774221380,214,0 +170774221428,214,0 +170774221476,214,0 +170774221524,214,0 +170774221572,214,0 +170774221619,215,0 +170774221667,215,0 +170774221715,215,0 +170774221763,215,0 +170774221811,215,0 +170774221859,215,0 +170774221907,215,0 +170774221955,214,0 +170774222004,214,0 +170774222052,214,0 +170774222102,214,0 +170774222150,214,0 +170774222198,214,0 +170774222247,214,0 +170774222297,214,0 +170774222346,214,0 +170774222396,214,0 +170774222445,215,0 +170774222495,215,0 +170774222542,215,0 +170774222590,215,0 +170774222638,215,0 +170774222686,215,0 +170774222734,215,0 +170774222782,214,0 +170774222830,214,0 +170774222878,214,0 +170774222927,214,0 +170774222975,214,0 +170774223025,214,0 +170774223073,214,0 +170774223120,214,0 +170774223168,214,0 +170774223216,214,0 +170774223266,215,0 +170774223313,215,0 +170774223363,215,0 +170774223411,215,0 +170774223459,215,0 +170774223507,215,0 +170774223555,215,0 +170774223603,214,0 +170774223652,214,0 +170774223700,214,0 +170774223750,214,0 +170774223799,214,0 +170774223849,214,0 +170774223898,214,0 +170774223946,215,0 +170774223996,215,0 +170774224044,215,0 +170774224092,215,0 +170774224141,215,0 +170774224191,215,0 +170774224240,215,0 +170774224288,215,0 +170774224336,215,0 +170774224384,215,0 +170774224432,214,0 +170774224480,214,0 +170774224528,214,0 +170774224577,214,0 +170774224627,214,0 +170774224675,214,0 +170774224724,215,0 +170774224772,215,0 +170774224820,215,0 +170774224868,215,0 +170774224916,215,0 +170774224964,215,0 +170774225013,215,0 +170774225063,215,0 +170774225111,215,0 +170774225159,215,0 +170774225208,215,0 +170774225258,214,0 +170774225307,214,0 +170774225355,214,0 +170774225403,214,0 +170774225451,214,0 +170774225499,214,0 +170774225549,214,0 +170774225596,214,0 +170774225646,215,0 +170774225694,215,0 +170774225742,215,0 +170774225790,215,0 +170774225838,215,0 +170774225886,215,0 +170774225934,215,0 +170774225981,215,0 +170774226029,215,0 +170774226077,214,0 +170774226125,214,0 +170774226175,214,0 +170774226222,214,0 +170774226270,214,0 +170774226318,214,0 +170774226368,214,0 +170774226417,214,0 +170774226467,214,0 +170774226515,214,0 +170774226563,215,0 +170774226612,215,0 +170774226660,214,0 +170774226708,214,0 +170774226758,215,0 +170774226806,215,0 +170774226854,215,0 +170774226903,213,0 +170774226951,213,0 +170774226999,213,0 +170774227047,214,0 +170774227095,214,0 +170774227143,214,0 +170774227191,214,0 +170774227239,214,0 +170774227287,214,0 +170774227336,214,0 +170774227386,214,0 +170774227434,214,0 +170774227482,215,0 +170774227531,215,0 +170774227579,214,0 +170774227629,215,0 +170774227677,215,0 +170774227725,214,0 +170774227773,214,0 +170774227821,214,0 +170774227868,214,0 +170774227918,214,0 +170774227968,214,0 +170774228017,214,0 +170774228065,214,0 +170774228113,214,0 +170774228161,214,0 +170774228209,214,0 +170774228258,215,0 +170774228306,215,0 +170774228356,215,0 +170774228405,215,0 +170774228455,214,0 +170774228503,215,0 +170774228551,214,0 +170774228600,214,0 +170774228650,214,0 +170774228699,214,0 +170774228747,214,0 +170774228795,214,0 +170774228843,214,0 +170774228892,214,0 +170774228940,214,0 +170774228988,215,0 +170774229038,214,0 +170774229086,215,0 +170774229134,215,0 +170774229182,215,0 +170774229230,215,0 +170774229279,215,0 +170774229327,214,0 +170774229376,214,0 +170774229424,214,0 +170774229472,214,0 +170774229520,214,0 +170774229568,214,0 +170774229616,214,0 +170774229664,214,0 +170774229712,214,0 +170774229760,215,0 +170774229809,215,0 +170774229859,215,0 +170774229908,215,0 +170774229956,215,0 +170774230006,215,0 +170774230056,215,0 +170774230103,215,0 +170774230151,215,0 +170774230201,214,0 +170774230249,214,0 +170774230297,214,0 +170774230347,214,0 +170774230395,214,0 +170774230444,214,0 +170774230492,215,0 +170774230540,214,0 +170774230589,215,0 +170774230637,216,0 +170774230685,215,0 +170774230733,215,0 +170774230781,215,0 +170774230828,215,0 +170774230878,215,0 +170774230926,215,0 +170774230974,215,0 +170774231022,214,0 +170774231069,214,0 +170774231117,214,0 +170774231165,214,0 +170774231213,214,0 +170774231261,214,0 +170774231309,214,0 +170774231357,214,0 +170774231405,214,0 +170774231453,215,0 +170774231501,214,0 +170774231551,215,0 +170774231599,215,0 +170774231647,215,0 +170774231695,215,0 +170774231742,215,0 +170774231792,215,0 +170774231841,214,0 +170774231891,214,0 +170774231939,214,0 +170774231987,214,0 +170774232036,214,0 +170774232084,214,0 +170774232134,215,0 +170774232183,215,0 +170774232233,215,0 +170774232281,215,0 +170774232329,215,0 +170774232377,215,0 +170774232425,215,0 +170774232473,215,0 +170774232522,215,0 +170774232570,215,0 +170774232618,215,0 +170774232668,214,0 +170774232716,214,0 +170774232764,214,0 +170774232811,214,0 +170774232861,214,0 +170774232910,214,0 +170774232958,214,0 +170774233008,215,0 +170774233056,215,0 +170774233105,215,0 +170774233155,215,0 +170774233203,215,0 +170774233251,215,0 +170774233299,215,0 +170774233348,215,0 +170774233396,215,0 +170774233444,215,0 +170774233492,214,0 +170774233540,214,0 +170774233590,214,0 +170774233638,214,0 +170774233687,214,0 +170774233735,214,0 +170774233785,214,0 +170774233834,214,0 +170774233882,214,0 +170774233931,215,0 +170774233979,215,0 +170774234029,215,0 +170774234077,215,0 +170774234125,215,0 +170774234174,215,0 +170774234224,215,0 +170774234272,215,0 +170774234321,214,0 +170774234371,214,0 +170774234420,214,0 +170774234470,214,0 +170774234518,214,0 +170774234567,214,0 +170774234617,215,0 +170774234666,214,0 +170774234716,215,0 +170774234765,215,0 +170774234815,215,0 +170774234863,215,0 +170774234912,215,0 +170774234960,215,0 +170774235008,215,0 +170774235056,215,0 +170774235104,215,0 +170774235154,214,0 +170774235201,214,0 +170774235249,214,0 +170774235297,214,0 +170774235347,214,0 +170774235396,215,0 +170774235444,214,0 +170774235492,215,0 +170774235542,215,0 +170774235589,215,0 +170774235637,216,0 +170774235685,215,0 +170774235733,215,0 +170774235781,215,0 +170774235829,215,0 +170774235878,215,0 +170774235926,215,0 +170774235974,214,0 +170774236024,214,0 +170774236072,214,0 +170774236119,214,0 +170774236169,214,0 +170774236217,215,0 +170774236265,214,0 +170774236312,215,0 +170774236362,215,0 +170774236410,215,0 +170774236458,215,0 +170774236505,215,0 +170774236555,215,0 +170774236603,215,0 +170774236652,215,0 +170774236700,215,0 +170774236748,215,0 +170774236796,214,0 +170774236844,214,0 +170774236892,214,0 +170774236940,214,0 +170774236988,214,0 +170774237038,215,0 +170774237086,214,0 +170774237135,215,0 +170774237183,215,0 +170774237231,215,0 +170774237279,215,0 +170774237328,215,0 +170774237378,215,0 +170774237426,215,0 +170774237474,215,0 +170774237523,215,0 +170774237571,215,0 +170774237621,214,0 +170774237669,214,0 +170774237717,214,0 +170774237764,214,0 +170774237812,214,0 +170774237862,214,0 +170774237910,214,0 +170774237959,214,0 +170774238007,214,0 +170774238057,214,0 +170774238105,215,0 +170774238153,215,0 +170774238201,215,0 +170774238249,215,0 +170774238298,215,0 +170774238346,215,0 +170774238395,215,0 +170774238443,214,0 +170774238491,213,0 +170774238539,213,0 +170774238587,214,0 +170774238635,214,0 +170774238683,214,0 +170774238731,214,0 +170774238779,214,0 +170774238827,214,0 +170774238877,214,0 +170774238924,214,0 +170774238972,214,0 +170774239020,215,0 +170774239070,215,0 +170774239119,215,0 +170774239169,215,0 +170774239218,215,0 +170774239266,214,0 +170774239316,214,0 +170774239364,213,0 +170774239412,214,0 +170774239461,214,0 +170774239509,214,0 +170774239557,214,0 +170774239605,214,0 +170774239655,214,0 +170774239704,214,0 +170774239752,214,0 +170774239800,214,0 +170774239848,214,0 +170774239896,214,0 +170774239945,215,0 +170774239995,215,0 +170774240043,215,0 +170774240092,214,0 +170774240140,213,0 +170774240190,213,0 +170774240238,213,0 +170774240286,213,0 +170774240335,214,0 +170774240383,214,0 +170774240431,214,0 +170774240480,214,0 +170774240528,214,0 +170774240576,214,0 +170774240626,214,0 +170774240674,214,0 +170774240722,214,0 +170774240770,214,0 +170774240818,214,0 +170774240867,214,0 +170774240915,214,0 +170774240965,213,0 +170774241012,213,0 +170774241060,213,0 +170774241110,214,0 +170774241158,213,0 +170774241207,214,0 +170774241255,214,0 +170774241305,214,0 +170774241353,214,0 +170774241401,214,0 +170774241449,214,0 +170774241497,214,0 +170774241545,214,0 +170774241593,214,0 +170774241641,214,0 +170774241688,215,0 +170774241736,214,0 +170774241784,213,0 +170774241832,213,0 +170774241882,214,0 +170774241930,214,0 +170774241978,214,0 +170774242026,214,0 +170774242075,214,0 +170774242125,214,0 +170774242174,214,0 +170774242222,214,0 +170774242270,214,0 +170774242318,214,0 +170774242366,215,0 +170774242415,215,0 +170774242465,215,0 +170774242513,215,0 +170774242562,214,0 +170774242610,214,0 +170774242658,214,0 +170774242708,214,0 +170774242756,214,0 +170774242805,214,0 +170774242855,214,0 +170774242903,214,0 +170774242951,215,0 +170774242999,215,0 +170774243047,215,0 +170774243094,215,0 +170774243142,215,0 +170774243192,215,0 +170774243240,215,0 +170774243289,215,0 +170774243339,215,0 +170774243387,215,0 +170774243435,214,0 +170774243483,214,0 +170774243531,214,0 +170774243579,214,0 +170774243628,214,0 +170774243678,214,0 +170774243726,215,0 +170774243774,215,0 +170774243821,215,0 +170774243869,215,0 +170774243917,215,0 +170774243965,215,0 +170774244015,215,0 +170774244064,215,0 +170774244114,215,0 +170774244162,214,0 +170774244210,215,0 +170774244258,214,0 +170774244306,214,0 +170774244353,214,0 +170774244401,214,0 +170774244449,214,0 +170774244499,214,0 +170774244547,214,0 +170774244596,215,0 +170774244644,214,0 +170774244692,215,0 +170774244740,215,0 +170774244788,215,0 +170774244835,215,0 +170774244883,215,0 +170774244931,215,0 +170774244979,215,0 +170774245027,215,0 +170774245075,214,0 +170774245124,214,0 +170774245174,214,0 +170774245222,214,0 +170774245270,215,0 +170774245318,215,0 +170774245367,215,0 +170774245415,215,0 +170774245465,215,0 +170774245514,215,0 +170774245564,215,0 +170774245612,215,0 +170774245660,215,0 +170774245708,215,0 +170774245756,215,0 +170774245805,215,0 +170774245855,215,0 +170774245902,214,0 +170774245950,214,0 +170774246000,214,0 +170774246048,215,0 +170774246096,214,0 +170774246143,215,0 +170774246191,215,0 +170774246239,215,0 +170774246287,215,0 +170774246336,215,0 +170774246384,215,0 +170774246432,215,0 +170774246480,215,0 +170774246528,215,0 +170774246576,215,0 +170774246624,215,0 +170774246673,215,0 +170774246723,214,0 +170774246771,214,0 +170774246820,214,0 +170774246870,214,0 +170774246918,214,0 +170774246966,215,0 +170774247014,214,0 +170774247062,215,0 +170774247109,215,0 +170774247157,215,0 +170774247205,215,0 +170774247253,215,0 +170774247301,215,0 +170774247349,215,0 +170774247396,215,0 +170774247444,215,0 +170774247494,215,0 +170774247543,214,0 +170774247591,214,0 +170774247641,214,0 +170774247689,214,0 +170774247737,214,0 +170774247785,214,0 +170774247833,214,0 +170774247881,214,0 +170774247930,214,0 +170774247980,214,0 +170774248029,215,0 +170774248079,215,0 +170774248127,215,0 +170774248176,215,0 +170774248224,215,0 +170774248272,215,0 +170774248322,215,0 +170774248371,214,0 +170774248421,213,0 +170774248469,213,0 +170774248517,213,0 +170774248565,213,0 +170774248613,214,0 +170774248662,214,0 +170774248712,214,0 +170774248759,214,0 +170774248809,214,0 +170774248857,214,0 +170774248905,215,0 +170774248953,214,0 +170774249001,214,0 +170774249050,215,0 +170774249098,215,0 +170774249146,214,0 +170774249196,214,0 +170774249244,213,0 +170774249292,213,0 +170774249341,214,0 +170774249389,214,0 +170774249438,214,0 +170774249488,214,0 +170774249537,214,0 +170774249585,214,0 +170774249633,214,0 +170774249683,214,0 +170774249731,214,0 +170774249779,214,0 +170774249827,214,0 +170774249876,214,0 +170774249926,214,0 +170774249976,215,0 +170774250024,214,0 +170774250073,213,0 +170774250121,213,0 +170774250171,213,0 +170774250219,214,0 +170774250267,214,0 +170774250315,214,0 +170774250363,214,0 +170774250410,214,0 +170774250458,214,0 +170774250508,214,0 +170774250557,214,0 +170774250605,215,0 +170774250653,215,0 +170774250703,214,0 +170774250752,215,0 +170774250800,215,0 +170774250848,214,0 +170774250896,213,0 +170774250943,213,0 +170774250991,214,0 +170774251041,214,0 +170774251089,214,0 +170774251136,214,0 +170774251184,214,0 +170774251232,214,0 +170774251282,214,0 +170774251330,214,0 +170774251378,214,0 +170774251426,214,0 +170774251473,214,0 +170774251521,215,0 +170774251571,215,0 +170774251621,214,0 +170774251668,214,0 +170774251716,213,0 +170774251764,213,0 +170774251812,213,0 +170774251860,214,0 +170774251908,214,0 +170774251956,214,0 +170774252006,214,0 +170774252055,214,0 +170774252103,214,0 +170774252153,214,0 +170774252201,214,0 +170774252250,214,0 +170774252298,215,0 +170774252346,215,0 +170774252394,214,0 +170774252442,215,0 +170774252490,215,0 +170774252539,213,0 +170774252589,213,0 +170774252637,214,0 +170774252685,214,0 +170774252733,214,0 +170774252781,214,0 +170774252829,214,0 +170774252876,214,0 +170774252926,214,0 +170774252975,214,0 +170774253025,214,0 +170774253074,214,0 +170774253124,214,0 +170774253172,214,0 +170774253221,215,0 +170774253269,215,0 +170774253317,214,0 +170774253365,213,0 +170774253413,213,0 +170774253462,213,0 +170774253512,213,0 +170774253559,214,0 +170774253607,214,0 +170774253657,214,0 +170774253706,214,0 +170774253754,214,0 +170774253804,214,0 +170774253852,214,0 +170774253901,215,0 +170774253949,214,0 +170774253997,215,0 +170774254047,215,0 +170774254095,215,0 +170774254143,215,0 +170774254191,214,0 +170774254239,214,0 +170774254288,214,0 +170774254338,214,0 +170774254385,214,0 +170774254433,214,0 +170774254483,214,0 +170774254532,214,0 +170774254580,214,0 +170774254630,214,0 +170774254678,214,0 +170774254726,214,0 +170774254774,214,0 +170774254821,215,0 +170774254871,214,0 +170774254921,215,0 +170774254968,214,0 +170774255016,213,0 +170774255064,214,0 +170774255114,213,0 +170774255163,214,0 +170774255211,214,0 +170774255259,214,0 +170774255307,214,0 +170774255357,214,0 +170774255406,214,0 +170774255454,215,0 +170774255502,215,0 +170774255550,215,0 +170774255598,215,0 +170774255646,215,0 +170774255694,215,0 +170774255744,215,0 +170774255791,215,0 +170774255839,214,0 +170774255887,214,0 +170774255935,214,0 +170774255983,214,0 +170774256031,214,0 +170774256078,215,0 +170774256126,215,0 +170774256174,215,0 +170774256222,214,0 +170774256270,215,0 +170774256318,215,0 +170774256366,215,0 +170774256414,215,0 +170774256462,215,0 +170774256510,215,0 +170774256559,215,0 +170774256609,215,0 +170774256658,214,0 +170774256706,215,0 +170774256756,214,0 +170774256805,215,0 +170774256855,215,0 +170774256904,215,0 +170774256954,215,0 +170774257004,215,0 +170774257051,215,0 +170774257099,215,0 +170774257147,215,0 +170774257195,215,0 +170774257243,215,0 +170774257291,215,0 +170774257341,215,0 +170774257390,215,0 +170774257439,215,0 +170774257489,215,0 +170774257539,215,0 +170774257588,215,0 +170774257636,215,0 +170774257684,215,0 +170774257733,215,0 +170774257781,215,0 +170774257831,215,0 +170774257881,215,0 +170774257928,215,0 +170774257976,215,0 +170774258026,215,0 +170774258075,215,0 +170774258123,215,0 +170774258171,215,0 +170774258221,215,0 +170774258270,215,0 +170774258318,214,0 +170774258366,214,0 +170774258416,214,0 +170774258465,214,0 +170774258515,214,0 +170774258563,214,0 +170774258612,215,0 +170774258662,215,0 +170774258710,215,0 +170774258759,215,0 +170774258807,215,0 +170774258855,215,0 +170774258903,215,0 +170774258951,215,0 +170774258999,215,0 +170774259048,215,0 +170774259096,215,0 +170774259146,214,0 +170774259195,214,0 +170774259243,214,0 +170774259293,214,0 +170774259342,214,0 +170774259390,214,0 +170774259438,214,0 +170774259486,215,0 +170774259534,215,0 +170774259582,215,0 +170774259630,215,0 +170774259680,215,0 +170774259727,215,0 +170774259775,215,0 +170774259823,215,0 +170774259871,215,0 +170774259919,215,0 +170774259967,214,0 +170774260015,214,0 +170774260063,214,0 +170774260113,214,0 +170774260161,214,0 +170774260210,214,0 +170774260260,214,0 +170774260307,214,0 +170774260355,214,0 +170774260405,214,0 +170774260453,214,0 +170774260502,215,0 +170774260552,215,0 +170774260601,215,0 +170774260649,215,0 +170774260699,215,0 +170774260748,215,0 +170774260797,214,0 +170774260845,214,0 +170774260893,214,0 +170774260943,214,0 +170774260992,214,0 +170774261040,214,0 +170774261088,215,0 +170774261136,214,0 +170774261184,215,0 +170774261233,214,0 +170774261283,215,0 +170774261331,215,0 +170774261379,215,0 +170774261427,215,0 +170774261475,215,0 +170774261523,215,0 +170774261572,215,0 +170774261620,214,0 +170774261670,214,0 +170774261718,214,0 +170774261766,214,0 +170774261814,214,0 +170774261862,214,0 +170774261909,214,0 +170774261957,214,0 +170774262007,214,0 +170774262055,214,0 +170774262103,214,0 +170774262151,215,0 +170774262200,215,0 +170774262248,215,0 +170774262296,215,0 +170774262345,215,0 +170774262395,215,0 +170774262443,214,0 +170774262491,214,0 +170774262539,214,0 +170774262587,214,0 +170774262636,214,0 +170774262686,214,0 +170774262733,214,0 +170774262783,214,0 +170774262831,214,0 +170774262881,215,0 +170774262930,215,0 +170774262978,215,0 +170774263026,215,0 +170774263074,217,0 +170774263123,218,0 +170774263171,215,0 +170774263219,215,0 +170774263267,214,0 +170774263315,214,0 +170774263363,214,0 +170774263411,214,0 +170774263459,214,0 +170774263507,214,0 +170774263555,214,0 +170774263603,214,0 +170774263651,214,0 +170774263700,214,0 +170774263748,214,0 +170774263798,215,0 +170774263846,215,0 +170774263894,215,0 +170774263943,215,0 +170774263991,215,0 +170774264039,215,0 +170774264089,214,0 +170774264138,213,0 +170774264188,214,0 +170774264236,214,0 +170774264284,214,0 +170774264332,214,0 +170774264381,214,0 +170774264431,214,0 +170774264479,214,0 +170774264526,214,0 +170774264576,214,0 +170774264624,215,0 +170774264674,215,0 +170774264723,215,0 +170774264771,215,0 +170774264819,215,0 +170774264868,215,0 +170774264918,214,0 +170774264967,214,0 +170774265017,214,0 +170774265066,214,0 +170774265114,214,0 +170774265162,214,0 +170774265210,214,0 +170774265258,214,0 +170774265308,214,0 +170774265356,214,0 +170774265405,214,0 +170774265455,215,0 +170774265504,215,0 +170774265552,215,0 +170774265600,215,0 +170774265649,215,0 +170774265697,215,0 +170774265745,214,0 +170774265795,214,0 +170774265843,214,0 +170774265892,214,0 +170774265940,214,0 +170774265988,214,0 +170774266036,214,0 +170774266084,214,0 +170774266132,214,0 +170774266181,215,0 +170774266231,214,0 +170774266280,215,0 +170774266330,215,0 +170774266378,215,0 +170774266427,215,0 +170774266475,215,0 +170774266523,215,0 +170774266572,214,0 +170774266620,214,0 +170774266668,214,0 +170774266718,214,0 +170774266766,214,0 +170774266815,214,0 +170774266863,214,0 +170774266911,214,0 +170774266959,214,0 +170774267007,215,0 +170774267055,215,0 +170774267104,215,0 +170774267154,215,0 +170774267202,215,0 +170774267251,215,0 +170774267301,215,0 +170774267349,215,0 +170774267397,214,0 +170774267446,213,0 +170774267494,214,0 +170774267542,214,0 +170774267590,214,0 +170774267638,214,0 +170774267686,214,0 +170774267734,214,0 +170774267782,214,0 +170774267831,215,0 +170774267879,215,0 +170774267927,215,0 +170774267975,215,0 +170774268023,215,0 +170774268073,215,0 +170774268122,215,0 +170774268170,215,0 +170774268220,214,0 +170774268269,214,0 +170774268319,214,0 +170774268368,214,0 +170774268418,214,0 +170774268467,214,0 +170774268515,214,0 +170774268565,214,0 +170774268613,214,0 +170774268662,214,0 +170774268712,215,0 +170774268761,215,0 +170774268811,215,0 +170774268859,215,0 +170774268907,215,0 +170774268954,215,0 +170774269002,215,0 +170774269050,214,0 +170774269098,214,0 +170774269146,214,0 +170774269194,214,0 +170774269242,214,0 +170774269290,214,0 +170774269338,214,0 +170774269386,214,0 +170774269433,214,0 +170774269481,215,0 +170774269531,215,0 +170774269580,215,0 +170774269628,215,0 +170774269676,215,0 +170774269724,215,0 +170774269774,215,0 +170774269822,215,0 +170774269871,214,0 +170774269919,214,0 +170774269969,214,0 +170774270017,215,0 +170774270066,214,0 +170774270114,215,0 +170774270162,215,0 +170774270210,215,0 +170774270258,215,0 +170774270306,215,0 +170774270354,215,0 +170774270402,215,0 +170774270449,215,0 +170774270499,215,0 +170774270548,215,0 +170774270598,215,0 +170774270646,215,0 +170774270694,214,0 +170774270742,214,0 +170774270790,214,0 +170774270838,214,0 +170774270886,214,0 +170774270933,215,0 +170774270981,215,0 +170774271031,215,0 +170774271079,215,0 +170774271127,215,0 +170774271175,215,0 +170774271224,215,0 +170774271272,215,0 +170774271320,215,0 +170774271370,215,0 +170774271418,215,0 +170774271466,215,0 +170774271515,214,0 +170774271565,214,0 +170774271612,214,0 +170774271662,214,0 +170774271711,214,0 +170774271761,214,0 +170774271809,214,0 +170774271857,215,0 +170774271906,215,0 +170774271954,215,0 +170774272004,215,0 +170774272052,215,0 +170774272100,215,0 +170774272149,215,0 +170774272197,215,0 +170774272245,215,0 +170774272293,215,0 +170774272341,214,0 +170774272389,214,0 +170774272436,214,0 +170774272484,214,0 +170774272534,214,0 +170774272583,214,0 +170774272631,214,0 +170774272679,214,0 +170774272729,214,0 +170774272778,215,0 +170774272828,215,0 +170774272877,215,0 +170774272925,215,0 +170774272973,215,0 +170774273021,215,0 +170774273069,215,0 +170774273117,215,0 +170774273165,214,0 +170774273212,214,0 +170774273260,214,0 +170774273308,214,0 +170774273358,214,0 +170774273406,214,0 +170774273454,215,0 +170774273502,215,0 +170774273550,215,0 +170774273598,215,0 +170774273646,215,0 +170774273694,215,0 +170774273741,215,0 +170774273789,215,0 +170774273837,215,0 +170774273885,215,0 +170774273933,215,0 +170774273982,214,0 +170774274030,214,0 +170774274078,214,0 +170774274126,214,0 +170774274176,214,0 +170774274224,214,0 +170774274271,214,0 +170774274319,214,0 +170774274367,214,0 +170774274415,215,0 +170774274463,215,0 +170774274513,215,0 +170774274562,215,0 +170774274610,215,0 +170774274658,215,0 +170774274707,215,0 +170774274757,215,0 +170774274805,214,0 +170774274853,213,0 +170774274902,214,0 +170774274950,214,0 +170774274998,214,0 +170774275046,214,0 +170774275095,214,0 +170774275143,214,0 +170774275191,214,0 +170774275239,214,0 +170774275287,214,0 +170774275335,215,0 +170774275385,215,0 +170774275433,215,0 +170774275481,215,0 +170774275529,215,0 +170774275577,215,0 +170774275624,214,0 +170774275672,213,0 +170774275720,214,0 +170774275768,213,0 +170774275816,214,0 +170774275864,214,0 +170774275912,214,0 +170774275960,214,0 +170774276008,214,0 +170774276056,215,0 +170774276104,214,0 +170774276152,214,0 +170774276200,215,0 +170774276248,215,0 +170774276296,215,0 +170774276343,215,0 +170774276391,215,0 +170774276439,214,0 +170774276487,213,0 +170774276535,213,0 +170774276583,214,0 +170774276633,214,0 +170774276681,214,0 +170774276729,214,0 +170774276778,214,0 +170774276826,214,0 +170774276874,215,0 +170774276922,214,0 +170774276972,215,0 +170774277021,214,0 +170774277071,215,0 +170774277120,215,0 +170774277170,215,0 +170774277218,215,0 +170774277266,214,0 +170774277315,213,0 +170774277365,214,0 +170774277414,214,0 +170774277464,214,0 +170774277512,214,0 +170774277560,214,0 +170774277609,214,0 +170774277657,214,0 +170774277707,215,0 +170774277755,215,0 +170774277804,215,0 +170774277852,215,0 +170774277902,215,0 +170774277951,215,0 +170774277999,215,0 +170774278047,215,0 +170774278095,214,0 +170774278143,213,0 +170774278191,214,0 +170774278240,214,0 +170774278288,214,0 +170774278336,214,0 +170774278384,215,0 +170774278432,215,0 +170774278480,215,0 +170774278530,215,0 +170774278579,215,0 +170774278627,215,0 +170774278675,215,0 +170774278723,215,0 +170774278771,215,0 +170774278819,215,0 +170774278868,214,0 +170774278916,214,0 +170774278964,214,0 +170774279012,214,0 +170774279062,214,0 +170774279111,214,0 +170774279159,214,0 +170774279207,214,0 +170774279255,214,0 +170774279303,215,0 +170774279351,215,0 +170774279399,215,0 +170774279448,215,0 +170774279496,215,0 +170774279544,215,0 +170774279593,215,0 +170774279641,215,0 +170774279691,214,0 +170774279740,213,0 +170774279790,214,0 +170774279839,214,0 +170774279889,214,0 +170774279938,214,0 +170774279988,214,0 diff --git a/laser_value/0212-23.csv b/laser_value/0212-23.csv new file mode 100644 index 0000000..cfbc858 --- /dev/null +++ b/laser_value/0212-23.csv @@ -0,0 +1,7438 @@ +timestamp,laser_value,event +170774280036,214,0 +170774280086,214,0 +170774280134,215,0 +170774280182,215,0 +170774280231,215,0 +170774280279,215,0 +170774280329,215,0 +170774280377,215,0 +170774280425,215,0 +170774280474,215,0 +170774280524,214,0 +170774280573,213,0 +170774280623,214,0 +170774280672,214,0 +170774280720,214,0 +170774280768,214,0 +170774280818,214,0 +170774280866,214,0 +170774280913,214,0 +170774280962,215,0 +170774281009,215,0 +170774281059,215,0 +170774281107,214,0 +170774281156,215,0 +170774281204,215,0 +170774281252,215,0 +170774281300,215,0 +170774281348,214,0 +170774281398,213,0 +170774281445,213,0 +170774281495,214,0 +170774281544,214,0 +170774281594,214,0 +170774281642,214,0 +170774281690,214,0 +170774281738,214,0 +170774281786,214,0 +170774281834,214,0 +170774281881,214,0 +170774281929,214,0 +170774281977,215,0 +170774282025,214,0 +170774282073,215,0 +170774282121,215,0 +170774282169,214,0 +170774282217,214,0 +170774282265,214,0 +170774282313,214,0 +170774282361,214,0 +170774282409,214,0 +170774282458,214,0 +170774282508,214,0 +170774282555,214,0 +170774282605,215,0 +170774282653,215,0 +170774282702,215,0 +170774282750,215,0 +170774282798,215,0 +170774282846,215,0 +170774282896,215,0 +170774282943,215,0 +170774282991,214,0 +170774283041,214,0 +170774283089,214,0 +170774283137,214,0 +170774283186,215,0 +170774283234,215,0 +170774283282,215,0 +170774283330,215,0 +170774283380,215,0 +170774283430,215,0 +170774283479,215,0 +170774283527,215,0 +170774283577,215,0 +170774283625,215,0 +170774283674,215,0 +170774283724,215,0 +170774283771,215,0 +170774283819,214,0 +170774283867,215,0 +170774283915,215,0 +170774283963,215,0 +170774284013,215,0 +170774284062,215,0 +170774284110,215,0 +170774284158,215,0 +170774284207,215,0 +170774284255,215,0 +170774284303,215,0 +170774284351,215,0 +170774284400,215,0 +170774284448,215,0 +170774284496,215,0 +170774284546,215,0 +170774284595,215,0 +170774284643,214,0 +170774284691,214,0 +170774284739,215,0 +170774284788,214,0 +170774284836,215,0 +170774284886,214,0 +170774284934,215,0 +170774284983,215,0 +170774285031,215,0 +170774285079,215,0 +170774285127,215,0 +170774285175,215,0 +170774285223,215,0 +170774285272,215,0 +170774285320,215,0 +170774285370,215,0 +170774285418,214,0 +170774285465,214,0 +170774285513,214,0 +170774285561,214,0 +170774285609,215,0 +170774285657,214,0 +170774285705,214,0 +170774285753,215,0 +170774285801,215,0 +170774285849,215,0 +170774285896,215,0 +170774285944,215,0 +170774285994,215,0 +170774286042,215,0 +170774286091,215,0 +170774286141,215,0 +170774286190,215,0 +170774286238,214,0 +170774286288,214,0 +170774286336,214,0 +170774286384,214,0 +170774286432,214,0 +170774286480,214,0 +170774286528,214,0 +170774286576,214,0 +170774286623,215,0 +170774286671,215,0 +170774286719,215,0 +170774286767,215,0 +170774286817,215,0 +170774286864,215,0 +170774286912,215,0 +170774286962,215,0 +170774287010,215,0 +170774287058,214,0 +170774287107,214,0 +170774287155,214,0 +170774287203,214,0 +170774287251,214,0 +170774287299,214,0 +170774287348,214,0 +170774287396,214,0 +170774287446,215,0 +170774287494,215,0 +170774287541,215,0 +170774287591,215,0 +170774287639,215,0 +170774287688,215,0 +170774287736,215,0 +170774287784,215,0 +170774287832,215,0 +170774287880,214,0 +170774287928,214,0 +170774287976,214,0 +170774288025,214,0 +170774288073,214,0 +170774288121,214,0 +170774288171,214,0 +170774288218,214,0 +170774288266,214,0 +170774288314,215,0 +170774288364,215,0 +170774288412,215,0 +170774288459,215,0 +170774288507,215,0 +170774288555,215,0 +170774288605,215,0 +170774288653,215,0 +170774288700,214,0 +170774288748,214,0 +170774288796,214,0 +170774288846,214,0 +170774288894,214,0 +170774288943,214,0 +170774288993,214,0 +170774289041,215,0 +170774289090,215,0 +170774289138,215,0 +170774289186,215,0 +170774289235,215,0 +170774289283,215,0 +170774289333,215,0 +170774289382,215,0 +170774289430,215,0 +170774289478,215,0 +170774289526,214,0 +170774289575,214,0 +170774289623,214,0 +170774289671,214,0 +170774289721,215,0 +170774289769,215,0 +170774289817,215,0 +170774289865,215,0 +170774289914,215,0 +170774289964,215,0 +170774290012,215,0 +170774290060,215,0 +170774290109,215,0 +170774290157,215,0 +170774290206,215,0 +170774290256,215,0 +170774290304,214,0 +170774290352,214,0 +170774290401,214,0 +170774290449,214,0 +170774290499,214,0 +170774290548,214,0 +170774290596,214,0 +170774290645,215,0 +170774290693,214,0 +170774290743,214,0 +170774290791,215,0 +170774290839,215,0 +170774290887,215,0 +170774290936,215,0 +170774290984,215,0 +170774291034,215,0 +170774291082,215,0 +170774291130,215,0 +170774291178,213,0 +170774291227,213,0 +170774291277,213,0 +170774291324,214,0 +170774291374,214,0 +170774291422,214,0 +170774291471,214,0 +170774291521,214,0 +170774291569,214,0 +170774291617,214,0 +170774291665,214,0 +170774291713,214,0 +170774291761,215,0 +170774291809,215,0 +170774291858,214,0 +170774291908,215,0 +170774291957,214,0 +170774292007,213,0 +170774292054,213,0 +170774292104,213,0 +170774292154,213,0 +170774292203,213,0 +170774292253,214,0 +170774292301,214,0 +170774292348,214,0 +170774292396,214,0 +170774292446,214,0 +170774292494,214,0 +170774292543,214,0 +170774292593,214,0 +170774292641,214,0 +170774292690,214,0 +170774292740,214,0 +170774292788,213,0 +170774292836,213,0 +170774292884,213,0 +170774292932,214,0 +170774292980,213,0 +170774293028,214,0 +170774293076,214,0 +170774293125,214,0 +170774293173,214,0 +170774293221,214,0 +170774293270,214,0 +170774293320,214,0 +170774293370,214,0 +170774293419,215,0 +170774293467,215,0 +170774293515,215,0 +170774293563,215,0 +170774293612,214,0 +170774293660,213,0 +170774293710,213,0 +170774293759,214,0 +170774293809,214,0 +170774293857,214,0 +170774293906,214,0 +170774293956,214,0 +170774294004,214,0 +170774294053,213,0 +170774294101,214,0 +170774294151,214,0 +170774294199,214,0 +170774294247,215,0 +170774294296,215,0 +170774294344,215,0 +170774294392,215,0 +170774294440,213,0 +170774294488,213,0 +170774294536,213,0 +170774294585,214,0 +170774294635,214,0 +170774294683,214,0 +170774294731,214,0 +170774294780,214,0 +170774294828,214,0 +170774294876,214,0 +170774294925,214,0 +170774294975,214,0 +170774295023,214,0 +170774295071,215,0 +170774295119,215,0 +170774295167,215,0 +170774295216,214,0 +170774295266,213,0 +170774295313,214,0 +170774295361,214,0 +170774295409,214,0 +170774295459,214,0 +170774295507,214,0 +170774295555,214,0 +170774295603,214,0 +170774295651,214,0 +170774295699,215,0 +170774295747,215,0 +170774295795,215,0 +170774295843,215,0 +170774295891,215,0 +170774295938,215,0 +170774295986,215,0 +170774296034,215,0 +170774296084,214,0 +170774296132,214,0 +170774296180,214,0 +170774296229,214,0 +170774296277,214,0 +170774296325,214,0 +170774296373,215,0 +170774296421,215,0 +170774296471,215,0 +170774296520,215,0 +170774296568,215,0 +170774296616,215,0 +170774296666,215,0 +170774296715,215,0 +170774296763,215,0 +170774296811,215,0 +170774296861,215,0 +170774296909,214,0 +170774296957,214,0 +170774297005,215,0 +170774297052,215,0 +170774297100,215,0 +170774297148,215,0 +170774297196,215,0 +170774297244,215,0 +170774297292,215,0 +170774297340,215,0 +170774297388,215,0 +170774297436,215,0 +170774297484,215,0 +170774297532,215,0 +170774297580,215,0 +170774297627,215,0 +170774297675,215,0 +170774297725,214,0 +170774297773,214,0 +170774297822,214,0 +170774297872,214,0 +170774297921,214,0 +170774297969,215,0 +170774298017,215,0 +170774298065,215,0 +170774298113,215,0 +170774298163,215,0 +170774298211,215,0 +170774298258,215,0 +170774298306,215,0 +170774298354,215,0 +170774298402,215,0 +170774298450,215,0 +170774298498,214,0 +170774298546,214,0 +170774298596,214,0 +170774298644,215,0 +170774298692,215,0 +170774298741,215,0 +170774298791,215,0 +170774298840,215,0 +170774298888,215,0 +170774298936,215,0 +170774298984,215,0 +170774299032,215,0 +170774299080,215,0 +170774299129,215,0 +170774299177,215,0 +170774299225,215,0 +170774299275,215,0 +170774299323,214,0 +170774299372,214,0 +170774299422,214,0 +170774299469,214,0 +170774299517,214,0 +170774299565,214,0 +170774299613,215,0 +170774299661,215,0 +170774299709,215,0 +170774299757,215,0 +170774299805,215,0 +170774299853,215,0 +170774299901,215,0 +170774299949,215,0 +170774299997,215,0 +170774300044,215,0 +170774300092,215,0 +170774300140,214,0 +170774300189,214,0 +170774300237,214,0 +170774300285,214,0 +170774300333,214,0 +170774300381,214,0 +170774300429,214,0 +170774300477,215,0 +170774300525,215,0 +170774300574,215,0 +170774300622,215,0 +170774300670,215,0 +170774300717,215,0 +170774300765,215,0 +170774300813,215,0 +170774300861,215,0 +170774300909,215,0 +170774300957,214,0 +170774301004,214,0 +170774301052,213,0 +170774301100,214,0 +170774301148,214,0 +170774301196,214,0 +170774301245,214,0 +170774301295,214,0 +170774301343,214,0 +170774301392,215,0 +170774301440,215,0 +170774301488,215,0 +170774301536,215,0 +170774301584,215,0 +170774301631,215,0 +170774301679,215,0 +170774301727,215,0 +170774301775,214,0 +170774301823,213,0 +170774301871,213,0 +170774301918,214,0 +170774301966,213,0 +170774302014,214,0 +170774302062,214,0 +170774302110,214,0 +170774302158,214,0 +170774302207,214,0 +170774302255,214,0 +170774302303,214,0 +170774302351,215,0 +170774302398,214,0 +170774302446,215,0 +170774302494,215,0 +170774302542,215,0 +170774302591,215,0 +170774302639,215,0 +170774302687,215,0 +170774302737,215,0 +170774302784,215,0 +170774302834,215,0 +170774302882,215,0 +170774302930,215,0 +170774302979,215,0 +170774303027,214,0 +170774303075,214,0 +170774303123,214,0 +170774303171,214,0 +170774303220,214,0 +170774303268,214,0 +170774303316,214,0 +170774303365,214,0 +170774303415,215,0 +170774303463,214,0 +170774303511,215,0 +170774303558,215,0 +170774303608,215,0 +170774303657,215,0 +170774303705,215,0 +170774303755,215,0 +170774303802,215,0 +170774303850,214,0 +170774303898,214,0 +170774303946,214,0 +170774303995,214,0 +170774304043,214,0 +170774304091,214,0 +170774304141,214,0 +170774304189,214,0 +170774304238,214,0 +170774304286,214,0 +170774304334,214,0 +170774304382,214,0 +170774304430,215,0 +170774304478,215,0 +170774304526,214,0 +170774304574,215,0 +170774304622,215,0 +170774304670,214,0 +170774304718,214,0 +170774304766,214,0 +170774304815,214,0 +170774304863,214,0 +170774304911,214,0 +170774304959,214,0 +170774305007,214,0 +170774305055,215,0 +170774305102,215,0 +170774305150,215,0 +170774305200,215,0 +170774305250,215,0 +170774305297,215,0 +170774305347,215,0 +170774305395,215,0 +170774305443,214,0 +170774305490,213,0 +170774305538,214,0 +170774305588,214,0 +170774305637,214,0 +170774305687,214,0 +170774305735,214,0 +170774305783,214,0 +170774305831,214,0 +170774305879,214,0 +170774305928,214,0 +170774305976,215,0 +170774306024,215,0 +170774306073,215,0 +170774306121,215,0 +170774306169,215,0 +170774306217,215,0 +170774306265,214,0 +170774306313,213,0 +170774306362,214,0 +170774306410,213,0 +170774306458,214,0 +170774306506,214,0 +170774306554,214,0 +170774306602,214,0 +170774306650,214,0 +170774306698,214,0 +170774306746,214,0 +170774306794,214,0 +170774306842,214,0 +170774306890,214,0 +170774306938,214,0 +170774306986,215,0 +170774307035,215,0 +170774307083,214,0 +170774307131,213,0 +170774307179,213,0 +170774307229,214,0 +170774307277,214,0 +170774307325,214,0 +170774307373,214,0 +170774307420,214,0 +170774307470,214,0 +170774307519,214,0 +170774307567,214,0 +170774307615,214,0 +170774307663,214,0 +170774307713,214,0 +170774307762,214,0 +170774307810,214,0 +170774307858,215,0 +170774307906,214,0 +170774307954,213,0 +170774308003,213,0 +170774308051,214,0 +170774308099,214,0 +170774308147,214,0 +170774308195,214,0 +170774308242,214,0 +170774308290,214,0 +170774308338,214,0 +170774308386,214,0 +170774308434,215,0 +170774308482,215,0 +170774308530,215,0 +170774308578,215,0 +170774308626,215,0 +170774308673,215,0 +170774308721,215,0 +170774308769,214,0 +170774308817,214,0 +170774308865,214,0 +170774308913,214,0 +170774308962,214,0 +170774309010,215,0 +170774309058,215,0 +170774309108,215,0 +170774309156,215,0 +170774309205,215,0 +170774309253,215,0 +170774309303,215,0 +170774309352,215,0 +170774309400,215,0 +170774309448,215,0 +170774309496,215,0 +170774309544,214,0 +170774309593,215,0 +170774309641,215,0 +170774309691,215,0 +170774309741,215,0 +170774309790,215,0 +170774309840,215,0 +170774309889,215,0 +170774309937,215,0 +170774309987,215,0 +170774310036,215,0 +170774310084,215,0 +170774310132,215,0 +170774310180,215,0 +170774310228,215,0 +170774310277,215,0 +170774310325,215,0 +170774310373,214,0 +170774310421,214,0 +170774310469,214,0 +170774310518,214,0 +170774310568,214,0 +170774310617,215,0 +170774310665,215,0 +170774310713,215,0 +170774310761,215,0 +170774310811,215,0 +170774310860,215,0 +170774310908,214,0 +170774310956,215,0 +170774311004,215,0 +170774311052,215,0 +170774311102,215,0 +170774311149,215,0 +170774311197,214,0 +170774311245,215,0 +170774311295,214,0 +170774311343,214,0 +170774311391,214,0 +170774311440,215,0 +170774311488,215,0 +170774311538,215,0 +170774311586,215,0 +170774311634,215,0 +170774311681,215,0 +170774311731,215,0 +170774311781,215,0 +170774311830,215,0 +170774311878,215,0 +170774311926,215,0 +170774311975,215,0 +170774312025,214,0 +170774312074,214,0 +170774312122,214,0 +170774312170,214,0 +170774312220,214,0 +170774312268,214,0 +170774312316,214,0 +170774312365,215,0 +170774312413,215,0 +170774312461,215,0 +170774312509,215,0 +170774312557,215,0 +170774312605,215,0 +170774312655,215,0 +170774312704,215,0 +170774312752,214,0 +170774312800,214,0 +170774312849,214,0 +170774312899,214,0 +170774312948,214,0 +170774312996,214,0 +170774313044,214,0 +170774313094,214,0 +170774313142,214,0 +170774313191,214,0 +170774313241,215,0 +170774313289,215,0 +170774313337,215,0 +170774313386,215,0 +170774313434,215,0 +170774313482,215,0 +170774313530,215,0 +170774313578,215,0 +170774313626,214,0 +170774313673,214,0 +170774313721,214,0 +170774313769,214,0 +170774313817,214,0 +170774313865,214,0 +170774313913,214,0 +170774313960,214,0 +170774314008,215,0 +170774314056,214,0 +170774314104,215,0 +170774314152,215,0 +170774314200,215,0 +170774314249,215,0 +170774314297,215,0 +170774314345,215,0 +170774314394,215,0 +170774314442,215,0 +170774314490,214,0 +170774314538,214,0 +170774314587,214,0 +170774314635,214,0 +170774314683,214,0 +170774314731,214,0 +170774314781,214,0 +170774314830,215,0 +170774314880,215,0 +170774314927,215,0 +170774314975,215,0 +170774315023,215,0 +170774315071,215,0 +170774315121,215,0 +170774315170,215,0 +170774315220,215,0 +170774315268,214,0 +170774315316,214,0 +170774315364,214,0 +170774315412,214,0 +170774315460,214,0 +170774315508,214,0 +170774315555,214,0 +170774315603,214,0 +170774315651,215,0 +170774315699,215,0 +170774315749,215,0 +170774315797,215,0 +170774315846,215,0 +170774315894,215,0 +170774315944,215,0 +170774315992,215,0 +170774316040,215,0 +170774316088,214,0 +170774316136,214,0 +170774316185,214,0 +170774316233,214,0 +170774316283,214,0 +170774316331,214,0 +170774316379,214,0 +170774316429,214,0 +170774316477,214,0 +170774316526,214,0 +170774316576,215,0 +170774316624,215,0 +170774316673,215,0 +170774316721,215,0 +170774316769,215,0 +170774316817,215,0 +170774316866,215,0 +170774316914,214,0 +170774316962,214,0 +170774317010,214,0 +170774317058,214,0 +170774317106,214,0 +170774317156,214,0 +170774317204,214,0 +170774317252,214,0 +170774317299,214,0 +170774317349,214,0 +170774317399,215,0 +170774317447,215,0 +170774317496,215,0 +170774317544,215,0 +170774317592,215,0 +170774317640,215,0 +170774317689,215,0 +170774317737,214,0 +170774317785,214,0 +170774317833,214,0 +170774317883,214,0 +170774317931,214,0 +170774317980,214,0 +170774318030,214,0 +170774318078,214,0 +170774318127,215,0 +170774318175,215,0 +170774318224,215,0 +170774318272,215,0 +170774318320,215,0 +170774318368,215,0 +170774318416,215,0 +170774318465,215,0 +170774318513,215,0 +170774318563,214,0 +170774318611,214,0 +170774318660,214,0 +170774318710,214,0 +170774318759,214,0 +170774318809,214,0 +170774318858,214,0 +170774318906,214,0 +170774318954,214,0 +170774319002,215,0 +170774319051,215,0 +170774319099,215,0 +170774319147,214,0 +170774319195,215,0 +170774319243,215,0 +170774319291,215,0 +170774319340,215,0 +170774319390,213,0 +170774319438,214,0 +170774319486,214,0 +170774319534,214,0 +170774319581,214,0 +170774319629,214,0 +170774319679,214,0 +170774319727,214,0 +170774319776,214,0 +170774319824,215,0 +170774319872,215,0 +170774319920,215,0 +170774319968,215,0 +170774320016,215,0 +170774320063,215,0 +170774320111,215,0 +170774320159,215,0 +170774320207,214,0 +170774320255,214,0 +170774320303,214,0 +170774320351,214,0 +170774320399,214,0 +170774320447,214,0 +170774320495,214,0 +170774320544,215,0 +170774320592,215,0 +170774320640,215,0 +170774320688,215,0 +170774320738,215,0 +170774320785,215,0 +170774320835,215,0 +170774320884,215,0 +170774320932,215,0 +170774320980,214,0 +170774321028,214,0 +170774321076,214,0 +170774321124,214,0 +170774321172,214,0 +170774321222,214,0 +170774321271,214,0 +170774321319,214,0 +170774321369,215,0 +170774321418,215,0 +170774321468,215,0 +170774321516,215,0 +170774321563,215,0 +170774321611,215,0 +170774321659,215,0 +170774321707,215,0 +170774321755,215,0 +170774321803,214,0 +170774321853,214,0 +170774321901,214,0 +170774321950,214,0 +170774322000,214,0 +170774322047,214,0 +170774322097,214,0 +170774322145,215,0 +170774322193,215,0 +170774322241,215,0 +170774322289,215,0 +170774322338,215,0 +170774322386,215,0 +170774322434,215,0 +170774322482,215,0 +170774322531,215,0 +170774322579,215,0 +170774322629,214,0 +170774322676,214,0 +170774322724,214,0 +170774322774,214,0 +170774322822,214,0 +170774322871,214,0 +170774322919,214,0 +170774322967,214,0 +170774323015,215,0 +170774323063,215,0 +170774323111,215,0 +170774323161,214,0 +170774323210,215,0 +170774323260,215,0 +170774323308,215,0 +170774323356,215,0 +170774323404,215,0 +170774323453,214,0 +170774323501,214,0 +170774323551,214,0 +170774323599,214,0 +170774323647,214,0 +170774323694,214,0 +170774323742,214,0 +170774323792,214,0 +170774323841,215,0 +170774323889,215,0 +170774323939,215,0 +170774323987,215,0 +170774324036,215,0 +170774324084,215,0 +170774324132,215,0 +170774324180,215,0 +170774324228,215,0 +170774324276,214,0 +170774324324,214,0 +170774324372,214,0 +170774324422,215,0 +170774324469,215,0 +170774324519,215,0 +170774324567,215,0 +170774324615,215,0 +170774324663,215,0 +170774324710,215,0 +170774324758,215,0 +170774324806,215,0 +170774324856,215,0 +170774324905,215,0 +170774324953,215,0 +170774325001,215,0 +170774325049,215,0 +170774325099,214,0 +170774325146,214,0 +170774325196,214,0 +170774325245,214,0 +170774325293,215,0 +170774325341,214,0 +170774325389,214,0 +170774325437,215,0 +170774325485,215,0 +170774325533,215,0 +170774325581,215,0 +170774325629,215,0 +170774325678,216,0 +170774325726,216,0 +170774325774,215,0 +170774325824,215,0 +170774325873,214,0 +170774325921,214,0 +170774325971,214,0 +170774326018,214,0 +170774326068,214,0 +170774326116,214,0 +170774326164,214,0 +170774326212,214,0 +170774326261,214,0 +170774326309,215,0 +170774326357,215,0 +170774326407,215,0 +170774326455,215,0 +170774326503,215,0 +170774326551,215,0 +170774326600,215,0 +170774326648,215,0 +170774326696,215,0 +170774326746,213,0 +170774326794,213,0 +170774326842,213,0 +170774326891,213,0 +170774326939,213,0 +170774326987,214,0 +170774327035,214,0 +170774327083,214,0 +170774327130,214,0 +170774327180,214,0 +170774327228,214,0 +170774327276,215,0 +170774327324,214,0 +170774327372,214,0 +170774327419,214,0 +170774327469,215,0 +170774327518,214,0 +170774327566,213,0 +170774327614,213,0 +170774327662,213,0 +170774327710,214,0 +170774327760,214,0 +170774327808,214,0 +170774327856,214,0 +170774327905,214,0 +170774327953,214,0 +170774328003,215,0 +170774328050,215,0 +170774328098,215,0 +170774328148,215,0 +170774328198,215,0 +170774328245,215,0 +170774328293,215,0 +170774328341,214,0 +170774328389,214,0 +170774328437,214,0 +170774328486,214,0 +170774328536,214,0 +170774328584,214,0 +170774328632,214,0 +170774328679,214,0 +170774328727,214,0 +170774328777,214,0 +170774328825,215,0 +170774328873,215,0 +170774328920,214,0 +170774328968,215,0 +170774329018,215,0 +170774329066,215,0 +170774329113,215,0 +170774329163,214,0 +170774329211,214,0 +170774329259,214,0 +170774329306,214,0 +170774329356,214,0 +170774329404,214,0 +170774329453,214,0 +170774329501,214,0 +170774329549,215,0 +170774329597,215,0 +170774329645,215,0 +170774329693,215,0 +170774329741,214,0 +170774329789,215,0 +170774329836,215,0 +170774329884,215,0 +170774329932,215,0 +170774329980,214,0 +170774330028,214,0 +170774330076,214,0 +170774330124,214,0 +170774330173,214,0 +170774330223,214,0 +170774330271,214,0 +170774330319,214,0 +170774330367,214,0 +170774330414,215,0 +170774330462,215,0 +170774330510,215,0 +170774330558,215,0 +170774330606,215,0 +170774330655,215,0 +170774330703,215,0 +170774330751,215,0 +170774330799,214,0 +170774330848,214,0 +170774330896,214,0 +170774330944,214,0 +170774330992,214,0 +170774331040,214,0 +170774331088,214,0 +170774331135,214,0 +170774331183,215,0 +170774331231,215,0 +170774331279,215,0 +170774331329,215,0 +170774331377,215,0 +170774331426,215,0 +170774331474,215,0 +170774331524,215,0 +170774331572,215,0 +170774331621,214,0 +170774331669,214,0 +170774331718,214,0 +170774331766,214,0 +170774331814,214,0 +170774331862,214,0 +170774331910,214,0 +170774331960,215,0 +170774332008,215,0 +170774332055,215,0 +170774332105,215,0 +170774332153,215,0 +170774332200,215,0 +170774332248,215,0 +170774332296,215,0 +170774332344,215,0 +170774332392,215,0 +170774332441,214,0 +170774332489,213,0 +170774332537,214,0 +170774332586,214,0 +170774332634,214,0 +170774332682,214,0 +170774332730,214,0 +170774332779,215,0 +170774332827,214,0 +170774332876,214,0 +170774332925,215,0 +170774332973,215,0 +170774333021,215,0 +170774333069,215,0 +170774333117,215,0 +170774333165,215,0 +170774333213,214,0 +170774333261,213,0 +170774333309,214,0 +170774333357,214,0 +170774333405,214,0 +170774333454,214,0 +170774333502,214,0 +170774333550,214,0 +170774333599,214,0 +170774333647,215,0 +170774333697,215,0 +170774333745,214,0 +170774333793,215,0 +170774333840,215,0 +170774333888,215,0 +170774333938,215,0 +170774333986,215,0 +170774334033,214,0 +170774334083,214,0 +170774334132,214,0 +170774334180,214,0 +170774334228,214,0 +170774334276,214,0 +170774334326,214,0 +170774334374,214,0 +170774334421,215,0 +170774334469,215,0 +170774334517,215,0 +170774334567,215,0 +170774334616,215,0 +170774334666,215,0 +170774334714,215,0 +170774334762,215,0 +170774334811,215,0 +170774334859,214,0 +170774334907,214,0 +170774334957,214,0 +170774335006,214,0 +170774335054,214,0 +170774335102,214,0 +170774335151,215,0 +170774335199,215,0 +170774335247,215,0 +170774335295,215,0 +170774335343,215,0 +170774335391,215,0 +170774335439,215,0 +170774335487,215,0 +170774335536,215,0 +170774335584,215,0 +170774335632,215,0 +170774335680,214,0 +170774335728,214,0 +170774335776,214,0 +170774335824,214,0 +170774335872,214,0 +170774335921,214,0 +170774335969,215,0 +170774336017,214,0 +170774336065,215,0 +170774336113,215,0 +170774336161,215,0 +170774336208,215,0 +170774336256,215,0 +170774336304,215,0 +170774336352,215,0 +170774336400,215,0 +170774336448,215,0 +170774336497,214,0 +170774336547,214,0 +170774336596,214,0 +170774336644,214,0 +170774336692,214,0 +170774336742,214,0 +170774336790,214,0 +170774336838,214,0 +170774336885,215,0 +170774336933,215,0 +170774336981,215,0 +170774337029,215,0 +170774337078,215,0 +170774337126,215,0 +170774337174,215,0 +170774337222,215,0 +170774337270,215,0 +170774337317,214,0 +170774337367,214,0 +170774337415,214,0 +170774337463,214,0 +170774337511,214,0 +170774337560,214,0 +170774337608,215,0 +170774337656,215,0 +170774337706,215,0 +170774337755,215,0 +170774337803,215,0 +170774337853,215,0 +170774337902,215,0 +170774337952,215,0 +170774338001,215,0 +170774338051,215,0 +170774338099,215,0 +170774338147,214,0 +170774338194,214,0 +170774338242,214,0 +170774338292,214,0 +170774338340,214,0 +170774338387,214,0 +170774338435,214,0 +170774338483,214,0 +170774338531,215,0 +170774338579,215,0 +170774338628,215,0 +170774338676,215,0 +170774338724,215,0 +170774338772,215,0 +170774338820,215,0 +170774338868,215,0 +170774338916,215,0 +170774338963,214,0 +170774339013,214,0 +170774339061,214,0 +170774339109,214,0 +170774339157,214,0 +170774339205,214,0 +170774339253,214,0 +170774339300,215,0 +170774339348,214,0 +170774339396,215,0 +170774339446,215,0 +170774339495,215,0 +170774339543,215,0 +170774339591,215,0 +170774339639,215,0 +170774339687,215,0 +170774339735,215,0 +170774339785,214,0 +170774339834,213,0 +170774339882,214,0 +170774339931,214,0 +170774339979,214,0 +170774340027,214,0 +170774340075,214,0 +170774340123,215,0 +170774340171,215,0 +170774340219,215,0 +170774340268,215,0 +170774340316,215,0 +170774340366,215,0 +170774340414,215,0 +170774340462,215,0 +170774340510,215,0 +170774340558,215,0 +170774340607,214,0 +170774340655,214,0 +170774340703,214,0 +170774340752,214,0 +170774340802,214,0 +170774340850,214,0 +170774340898,214,0 +170774340946,214,0 +170774340994,214,0 +170774341043,215,0 +170774341091,215,0 +170774341141,215,0 +170774341188,215,0 +170774341236,215,0 +170774341284,215,0 +170774341332,215,0 +170774341380,215,0 +170774341430,214,0 +170774341479,214,0 +170774341527,214,0 +170774341575,214,0 +170774341623,214,0 +170774341672,214,0 +170774341720,214,0 +170774341768,215,0 +170774341816,215,0 +170774341864,215,0 +170774341912,215,0 +170774341962,215,0 +170774342010,215,0 +170774342059,215,0 +170774342107,215,0 +170774342157,215,0 +170774342206,214,0 +170774342254,214,0 +170774342302,214,0 +170774342351,214,0 +170774342401,214,0 +170774342449,214,0 +170774342498,214,0 +170774342546,214,0 +170774342596,214,0 +170774342643,215,0 +170774342691,215,0 +170774342739,215,0 +170774342787,215,0 +170774342835,215,0 +170774342883,215,0 +170774342931,215,0 +170774342979,215,0 +170774343028,214,0 +170774343076,213,0 +170774343124,213,0 +170774343172,213,0 +170774343220,213,0 +170774343269,214,0 +170774343317,214,0 +170774343365,214,0 +170774343413,214,0 +170774343461,214,0 +170774343509,214,0 +170774343557,215,0 +170774343605,215,0 +170774343653,215,0 +170774343700,215,0 +170774343750,215,0 +170774343798,215,0 +170774343846,214,0 +170774343894,213,0 +170774343942,213,0 +170774343992,213,0 +170774344041,213,0 +170774344089,213,0 +170774344137,214,0 +170774344185,214,0 +170774344233,214,0 +170774344282,214,0 +170774344332,214,0 +170774344380,214,0 +170774344428,214,0 +170774344477,214,0 +170774344525,214,0 +170774344573,215,0 +170774344622,214,0 +170774344672,214,0 +170774344720,213,0 +170774344767,213,0 +170774344815,213,0 +170774344863,214,0 +170774344911,213,0 +170774344959,214,0 +170774345007,214,0 +170774345056,214,0 +170774345104,214,0 +170774345152,214,0 +170774345200,214,0 +170774345248,215,0 +170774345296,215,0 +170774345344,215,0 +170774345392,215,0 +170774345440,215,0 +170774345489,214,0 +170774345537,214,0 +170774345585,213,0 +170774345633,213,0 +170774345680,213,0 +170774345728,214,0 +170774345778,214,0 +170774345828,214,0 +170774345875,214,0 +170774345923,214,0 +170774345973,214,0 +170774346021,214,0 +170774346069,214,0 +170774346118,214,0 +170774346166,215,0 +170774346216,215,0 +170774346264,215,0 +170774346312,214,0 +170774346360,214,0 +170774346408,213,0 +170774346456,214,0 +170774346504,214,0 +170774346553,214,0 +170774346601,214,0 +170774346650,214,0 +170774346700,214,0 +170774346748,214,0 +170774346797,215,0 +170774346845,215,0 +170774346895,215,0 +170774346943,215,0 +170774346991,215,0 +170774347039,215,0 +170774347088,215,0 +170774347136,214,0 +170774347186,214,0 +170774347235,214,0 +170774347283,214,0 +170774347332,214,0 +170774347382,214,0 +170774347430,214,0 +170774347478,215,0 +170774347527,214,0 +170774347575,215,0 +170774347625,215,0 +170774347673,215,0 +170774347721,215,0 +170774347770,215,0 +170774347818,215,0 +170774347868,215,0 +170774347916,215,0 +170774347964,215,0 +170774348012,214,0 +170774348061,214,0 +170774348109,214,0 +170774348157,215,0 +170774348205,215,0 +170774348253,215,0 +170774348302,215,0 +170774348352,215,0 +170774348401,215,0 +170774348449,215,0 +170774348499,215,0 +170774348547,215,0 +170774348596,215,0 +170774348644,215,0 +170774348692,215,0 +170774348740,214,0 +170774348790,215,0 +170774348838,214,0 +170774348887,215,0 +170774348937,215,0 +170774348985,215,0 +170774349034,215,0 +170774349084,215,0 +170774349132,215,0 +170774349181,215,0 +170774349229,215,0 +170774349277,215,0 +170774349325,215,0 +170774349373,215,0 +170774349422,215,0 +170774349472,215,0 +170774349522,215,0 +170774349571,214,0 +170774349619,214,0 +170774349667,214,0 +170774349715,214,0 +170774349763,214,0 +170774349812,214,0 +170774349862,215,0 +170774349910,215,0 +170774349958,215,0 +170774350006,215,0 +170774350054,215,0 +170774350101,215,0 +170774350149,215,0 +170774350197,215,0 +170774350245,215,0 +170774350293,215,0 +170774350341,215,0 +170774350390,215,0 +170774350438,215,0 +170774350486,215,0 +170774350534,215,0 +170774350582,215,0 +170774350630,215,0 +170774350678,215,0 +170774350726,215,0 +170774350774,215,0 +170774350822,215,0 +170774350871,215,0 +170774350919,215,0 +170774350967,215,0 +170774351015,215,0 +170774351063,215,0 +170774351112,215,0 +170774351160,215,0 +170774351208,215,0 +170774351256,215,0 +170774351304,215,0 +170774351352,215,0 +170774351400,215,0 +170774351448,215,0 +170774351495,215,0 +170774351543,215,0 +170774351593,215,0 +170774351641,215,0 +170774351689,215,0 +170774351736,215,0 +170774351784,215,0 +170774351832,215,0 +170774351880,215,0 +170774351928,215,0 +170774351977,215,0 +170774352025,214,0 +170774352073,215,0 +170774352121,215,0 +170774352169,215,0 +170774352217,215,0 +170774352265,215,0 +170774352314,215,0 +170774352362,215,0 +170774352410,215,0 +170774352459,215,0 +170774352507,215,0 +170774352556,215,0 +170774352604,215,0 +170774352652,215,0 +170774352700,215,0 +170774352748,215,0 +170774352796,215,0 +170774352845,214,0 +170774352895,214,0 +170774352943,214,0 +170774352990,214,0 +170774353038,214,0 +170774353086,215,0 +170774353134,215,0 +170774353182,215,0 +170774353230,215,0 +170774353278,215,0 +170774353326,215,0 +170774353374,215,0 +170774353422,215,0 +170774353472,215,0 +170774353521,215,0 +170774353569,215,0 +170774353617,215,0 +170774353665,213,0 +170774353713,213,0 +170774353761,214,0 +170774353809,214,0 +170774353859,214,0 +170774353908,214,0 +170774353956,214,0 +170774354004,214,0 +170774354052,214,0 +170774354100,214,0 +170774354148,215,0 +170774354196,215,0 +170774354244,215,0 +170774354292,215,0 +170774354340,215,0 +170774354389,215,0 +170774354437,214,0 +170774354485,214,0 +170774354533,214,0 +170774354581,214,0 +170774354629,214,0 +170774354677,214,0 +170774354724,214,0 +170774354774,214,0 +170774354822,214,0 +170774354871,215,0 +170774354921,215,0 +170774354969,215,0 +170774355018,215,0 +170774355066,215,0 +170774355116,215,0 +170774355166,215,0 +170774355213,215,0 +170774355263,214,0 +170774355311,214,0 +170774355359,213,0 +170774355407,213,0 +170774355455,214,0 +170774355504,214,0 +170774355554,214,0 +170774355602,214,0 +170774355650,214,0 +170774355699,214,0 +170774355747,214,0 +170774355795,215,0 +170774355843,215,0 +170774355891,215,0 +170774355939,215,0 +170774355986,215,0 +170774356034,215,0 +170774356082,214,0 +170774356130,213,0 +170774356178,213,0 +170774356226,213,0 +170774356274,214,0 +170774356322,214,0 +170774356370,214,0 +170774356418,214,0 +170774356468,214,0 +170774356517,214,0 +170774356565,214,0 +170774356615,214,0 +170774356663,214,0 +170774356711,215,0 +170774356760,214,0 +170774356810,215,0 +170774356859,215,0 +170774356908,214,0 +170774356956,213,0 +170774357004,213,0 +170774357052,214,0 +170774357101,214,0 +170774357149,214,0 +170774357197,214,0 +170774357246,214,0 +170774357296,214,0 +170774357344,214,0 +170774357392,214,0 +170774357440,214,0 +170774357488,215,0 +170774357535,215,0 +170774357583,214,0 +170774357631,215,0 +170774357679,215,0 +170774357727,214,0 +170774357775,213,0 +170774357823,214,0 +170774357872,214,0 +170774357922,214,0 +170774357970,214,0 +170774358019,214,0 +170774358069,214,0 +170774358117,214,0 +170774358165,214,0 +170774358213,214,0 +170774358262,215,0 +170774358310,215,0 +170774358358,215,0 +170774358406,215,0 +170774358454,214,0 +170774358502,215,0 +170774358551,213,0 +170774358599,213,0 +170774358647,214,0 +170774358697,214,0 +170774358745,214,0 +170774358793,214,0 +170774358842,214,0 +170774358890,214,0 +170774358938,214,0 +170774358988,214,0 +170774359036,214,0 +170774359085,214,0 +170774359133,214,0 +170774359181,215,0 +170774359229,215,0 +170774359278,215,0 +170774359328,214,0 +170774359376,213,0 +170774359424,213,0 +170774359472,213,0 +170774359520,213,0 +170774359567,214,0 +170774359615,214,0 +170774359663,214,0 +170774359711,214,0 +170774359759,214,0 +170774359807,214,0 +170774359855,214,0 +170774359902,215,0 +170774359950,215,0 +170774359998,215,0 +170774360046,215,0 +170774360094,215,0 +170774360142,215,0 +170774360190,214,0 +170774360237,214,0 +170774360285,214,0 +170774360333,214,0 +170774360381,214,0 +170774360429,214,0 +170774360477,214,0 +170774360526,214,0 +170774360574,215,0 +170774360623,215,0 +170774360671,215,0 +170774360721,215,0 +170774360769,215,0 +170774360816,215,0 +170774360866,215,0 +170774360915,215,0 +170774360965,215,0 +170774361013,214,0 +170774361061,214,0 +170774361109,214,0 +170774361158,214,0 +170774361206,214,0 +170774361254,214,0 +170774361302,215,0 +170774361350,215,0 +170774361398,215,0 +170774361446,215,0 +170774361493,215,0 +170774361541,215,0 +170774361589,215,0 +170774361637,215,0 +170774361685,215,0 +170774361733,215,0 +170774361781,215,0 +170774361828,214,0 +170774361878,214,0 +170774361926,214,0 +170774361974,214,0 +170774362023,214,0 +170774362071,214,0 +170774362119,214,0 +170774362167,215,0 +170774362216,215,0 +170774362266,215,0 +170774362314,215,0 +170774362362,215,0 +170774362409,215,0 +170774362457,215,0 +170774362505,215,0 +170774362553,215,0 +170774362602,214,0 +170774362652,214,0 +170774362700,214,0 +170774362748,214,0 +170774362797,214,0 +170774362845,215,0 +170774362894,215,0 +170774362942,215,0 +170774362990,215,0 +170774363038,215,0 +170774363086,215,0 +170774363134,215,0 +170774363182,215,0 +170774363230,215,0 +170774363277,215,0 +170774363325,215,0 +170774363373,215,0 +170774363423,215,0 +170774363472,215,0 +170774363522,215,0 +170774363571,215,0 +170774363619,215,0 +170774363667,215,0 +170774363715,215,0 +170774363763,215,0 +170774363812,215,0 +170774363860,215,0 +170774363908,215,0 +170774363958,215,0 +170774364006,215,0 +170774364054,215,0 +170774364102,215,0 +170774364149,215,0 +170774364199,215,0 +170774364249,215,0 +170774364296,215,0 +170774364344,214,0 +170774364392,215,0 +170774364442,214,0 +170774364490,215,0 +170774364538,215,0 +170774364586,215,0 +170774364635,215,0 +170774364683,215,0 +170774364733,215,0 +170774364780,215,0 +170774364830,215,0 +170774364878,215,0 +170774364926,215,0 +170774364975,215,0 +170774365023,215,0 +170774365071,214,0 +170774365121,214,0 +170774365169,214,0 +170774365216,214,0 +170774365266,214,0 +170774365315,215,0 +170774365363,215,0 +170774365411,215,0 +170774365461,215,0 +170774365509,215,0 +170774365556,215,0 +170774365604,215,0 +170774365652,215,0 +170774365700,215,0 +170774365748,215,0 +170774365796,215,0 +170774365843,215,0 +170774365891,214,0 +170774365939,214,0 +170774365987,214,0 +170774366035,214,0 +170774366083,214,0 +170774366131,214,0 +170774366179,215,0 +170774366227,214,0 +170774366275,215,0 +170774366322,215,0 +170774366370,215,0 +170774366420,215,0 +170774366468,215,0 +170774366516,215,0 +170774366565,215,0 +170774366615,215,0 +170774366663,215,0 +170774366711,214,0 +170774366759,214,0 +170774366807,214,0 +170774366854,214,0 +170774366902,214,0 +170774366950,214,0 +170774367000,215,0 +170774367048,214,0 +170774367096,215,0 +170774367145,215,0 +170774367193,215,0 +170774367241,215,0 +170774367289,215,0 +170774367337,215,0 +170774367386,215,0 +170774367436,215,0 +170774367484,215,0 +170774367532,213,0 +170774367580,214,0 +170774367628,214,0 +170774367677,214,0 +170774367725,214,0 +170774367775,214,0 +170774367823,214,0 +170774367871,214,0 +170774367919,215,0 +170774367966,215,0 +170774368014,215,0 +170774368062,215,0 +170774368110,215,0 +170774368160,215,0 +170774368208,215,0 +170774368256,215,0 +170774368305,214,0 +170774368353,213,0 +170774368403,214,0 +170774368452,214,0 +170774368500,214,0 +170774368548,214,0 +170774368596,214,0 +170774368644,214,0 +170774368693,214,0 +170774368741,214,0 +170774368791,215,0 +170774368839,215,0 +170774368886,215,0 +170774368934,215,0 +170774368982,215,0 +170774369030,215,0 +170774369078,215,0 +170774369128,214,0 +170774369175,213,0 +170774369223,213,0 +170774369273,214,0 +170774369321,214,0 +170774369369,214,0 +170774369418,214,0 +170774369466,214,0 +170774369516,214,0 +170774369565,214,0 +170774369613,215,0 +170774369661,215,0 +170774369709,215,0 +170774369759,215,0 +170774369808,215,0 +170774369857,215,0 +170774369905,215,0 +170774369955,213,0 +170774370003,213,0 +170774370051,213,0 +170774370099,213,0 +170774370148,214,0 +170774370198,214,0 +170774370247,214,0 +170774370296,214,0 +170774370346,214,0 +170774370394,214,0 +170774370442,214,0 +170774370491,215,0 +170774370541,215,0 +170774370589,215,0 +170774370637,215,0 +170774370685,215,0 +170774370733,215,0 +170774370781,214,0 +170774370829,214,0 +170774370878,214,0 +170774370926,214,0 +170774370974,214,0 +170774371022,214,0 +170774371071,214,0 +170774371119,214,0 +170774371167,214,0 +170774371215,214,0 +170774371263,214,0 +170774371311,215,0 +170774371358,215,0 +170774371406,215,0 +170774371454,215,0 +170774371502,215,0 +170774371550,215,0 +170774371598,214,0 +170774371646,214,0 +170774371695,214,0 +170774371743,214,0 +170774371791,214,0 +170774371838,214,0 +170774371886,214,0 +170774371934,214,0 +170774371982,214,0 +170774372030,214,0 +170774372079,215,0 +170774372129,215,0 +170774372177,214,0 +170774372225,215,0 +170774372274,215,0 +170774372324,215,0 +170774372372,214,0 +170774372421,214,0 +170774372469,214,0 +170774372518,214,0 +170774372566,214,0 +170774372614,214,0 +170774372662,214,0 +170774372712,214,0 +170774372761,215,0 +170774372809,215,0 +170774372858,215,0 +170774372906,215,0 +170774372956,215,0 +170774373004,215,0 +170774373052,215,0 +170774373101,215,0 +170774373149,215,0 +170774373197,214,0 +170774373245,214,0 +170774373294,214,0 +170774373344,214,0 +170774373392,215,0 +170774373440,215,0 +170774373487,215,0 +170774373535,215,0 +170774373585,215,0 +170774373634,215,0 +170774373682,215,0 +170774373730,215,0 +170774373779,215,0 +170774373829,215,0 +170774373877,215,0 +170774373925,215,0 +170774373973,215,0 +170774374023,214,0 +170774374071,214,0 +170774374119,214,0 +170774374168,214,0 +170774374216,214,0 +170774374266,215,0 +170774374314,214,0 +170774374362,215,0 +170774374409,215,0 +170774374459,215,0 +170774374507,215,0 +170774374555,215,0 +170774374603,215,0 +170774374651,215,0 +170774374700,215,0 +170774374750,215,0 +170774374799,215,0 +170774374847,214,0 +170774374895,214,0 +170774374943,214,0 +170774374991,214,0 +170774375038,214,0 +170774375086,214,0 +170774375134,214,0 +170774375182,214,0 +170774375230,214,0 +170774375277,215,0 +170774375325,215,0 +170774375373,214,0 +170774375423,215,0 +170774375471,215,0 +170774375520,215,0 +170774375570,215,0 +170774375618,215,0 +170774375666,214,0 +170774375715,214,0 +170774375763,214,0 +170774375813,214,0 +170774375861,214,0 +170774375909,214,0 +170774375957,215,0 +170774376006,215,0 +170774376054,215,0 +170774376102,215,0 +170774376151,215,0 +170774376199,215,0 +170774376247,215,0 +170774376295,216,0 +170774376343,215,0 +170774376393,215,0 +170774376440,215,0 +170774376488,214,0 +170774376536,214,0 +170774376586,214,0 +170774376634,214,0 +170774376682,215,0 +170774376731,215,0 +170774376779,215,0 +170774376827,215,0 +170774376875,215,0 +170774376925,215,0 +170774376974,215,0 +170774377022,215,0 +170774377071,215,0 +170774377119,215,0 +170774377167,215,0 +170774377215,215,0 +170774377265,215,0 +170774377313,214,0 +170774377361,214,0 +170774377409,214,0 +170774377457,214,0 +170774377504,214,0 +170774377552,214,0 +170774377600,215,0 +170774377648,215,0 +170774377696,215,0 +170774377745,215,0 +170774377793,215,0 +170774377841,215,0 +170774377891,215,0 +170774377939,215,0 +170774377987,215,0 +170774378036,215,0 +170774378086,214,0 +170774378134,213,0 +170774378182,214,0 +170774378230,214,0 +170774378279,214,0 +170774378327,214,0 +170774378375,214,0 +170774378423,214,0 +170774378472,214,0 +170774378522,214,0 +170774378569,214,0 +170774378619,215,0 +170774378667,215,0 +170774378715,215,0 +170774378763,215,0 +170774378810,215,0 +170774378858,215,0 +170774378908,213,0 +170774378956,213,0 +170774379005,213,0 +170774379053,213,0 +170774379101,213,0 +170774379149,213,0 +170774379197,214,0 +170774379245,214,0 +170774379294,214,0 +170774379342,214,0 +170774379392,214,0 +170774379440,214,0 +170774379488,214,0 +170774379537,214,0 +170774379585,214,0 +170774379635,214,0 +170774379683,214,0 +170774379732,213,0 +170774379782,213,0 +170774379830,213,0 +170774379878,213,0 +170774379927,214,0 +170774379975,214,0 +170774380023,214,0 +170774380071,214,0 +170774380120,214,0 +170774380168,214,0 +170774380216,214,0 +170774380264,214,0 +170774380312,215,0 +170774380362,215,0 +170774380411,215,0 +170774380459,215,0 +170774380509,215,0 +170774380557,214,0 +170774380606,213,0 +170774380656,214,0 +170774380705,214,0 +170774380753,214,0 +170774380801,214,0 +170774380851,214,0 +170774380900,214,0 +170774380948,215,0 +170774380996,214,0 +170774381044,215,0 +170774381094,215,0 +170774381142,215,0 +170774381190,215,0 +170774381238,215,0 +170774381287,215,0 +170774381335,215,0 +170774381383,214,0 +170774381431,214,0 +170774381480,214,0 +170774381530,214,0 +170774381579,214,0 +170774381629,214,0 +170774381678,214,0 +170774381728,214,0 +170774381776,214,0 +170774381824,215,0 +170774381872,215,0 +170774381920,215,0 +170774381969,215,0 +170774382019,215,0 +170774382068,215,0 +170774382116,215,0 +170774382164,214,0 +170774382212,214,0 +170774382262,214,0 +170774382311,214,0 +170774382359,214,0 +170774382409,214,0 +170774382457,214,0 +170774382505,215,0 +170774382553,215,0 +170774382602,215,0 +170774382650,215,0 +170774382698,215,0 +170774382747,215,0 +170774382797,215,0 +170774382847,215,0 +170774382896,215,0 +170774382944,215,0 +170774382993,214,0 +170774383041,215,0 +170774383091,215,0 +170774383140,214,0 +170774383188,214,0 +170774383236,215,0 +170774383284,215,0 +170774383334,215,0 +170774383382,215,0 +170774383430,215,0 +170774383478,215,0 +170774383527,215,0 +170774383575,215,0 +170774383623,215,0 +170774383673,215,0 +170774383722,215,0 +170774383770,215,0 +170774383820,214,0 +170774383868,214,0 +170774383915,214,0 +170774383965,214,0 +170774384013,214,0 +170774384062,214,0 +170774384112,215,0 +170774384160,214,0 +170774384208,215,0 +170774384257,215,0 +170774384305,215,0 +170774384353,215,0 +170774384401,215,0 +170774384449,215,0 +170774384498,215,0 +170774384548,215,0 +170774384595,215,0 +170774384643,214,0 +170774384693,214,0 +170774384741,214,0 +170774384790,214,0 +170774384838,214,0 +170774384886,214,0 +170774384936,214,0 +170774384983,214,0 +170774385031,214,0 +170774385081,215,0 +170774385130,214,0 +170774385178,215,0 +170774385226,215,0 +170774385276,215,0 +170774385324,215,0 +170774385373,214,0 +170774385421,215,0 +170774385469,214,0 +170774385519,214,0 +170774385566,214,0 +170774385614,214,0 +170774385662,214,0 +170774385710,214,0 +170774385758,214,0 +170774385806,214,0 +170774385856,215,0 +170774385904,215,0 +170774385951,215,0 +170774386001,215,0 +170774386049,215,0 +170774386097,215,0 +170774386145,215,0 +170774386194,215,0 +170774386242,214,0 +170774386291,214,0 +170774386341,214,0 +170774386390,214,0 +170774386438,214,0 +170774386486,214,0 +170774386534,214,0 +170774386584,215,0 +170774386633,215,0 +170774386681,215,0 +170774386731,215,0 +170774386778,215,0 +170774386826,215,0 +170774386876,215,0 +170774386925,215,0 +170774386975,215,0 +170774387023,215,0 +170774387071,215,0 +170774387120,214,0 +170774387168,214,0 +170774387217,214,0 +170774387267,214,0 +170774387315,214,0 +170774387363,215,0 +170774387412,215,0 +170774387460,215,0 +170774387508,215,0 +170774387556,215,0 +170774387604,215,0 +170774387653,215,0 +170774387701,215,0 +170774387749,215,0 +170774387799,215,0 +170774387847,215,0 +170774387895,215,0 +170774387942,214,0 +170774387990,214,0 +170774388038,214,0 +170774388088,214,0 +170774388136,214,0 +170774388184,214,0 +170774388232,214,0 +170774388281,214,0 +170774388329,214,0 +170774388377,214,0 +170774388425,214,0 +170774388474,214,0 +170774388522,214,0 +170774388570,214,0 +170774388618,215,0 +170774388666,215,0 +170774388714,215,0 +170774388761,214,0 +170774388811,214,0 +170774388859,214,0 +170774388908,214,0 +170774388956,214,0 +170774389004,214,0 +170774389052,214,0 +170774389100,214,0 +170774389149,215,0 +170774389197,215,0 +170774389245,215,0 +170774389293,215,0 +170774389341,215,0 +170774389391,215,0 +170774389438,215,0 +170774389487,215,0 +170774389536,215,0 +170774389584,214,0 +170774389633,214,0 +170774389681,214,0 +170774389731,214,0 +170774389779,214,0 +170774389829,214,0 +170774389878,214,0 +170774389928,215,0 +170774389975,215,0 +170774390023,215,0 +170774390073,215,0 +170774390121,215,0 +170774390169,215,0 +170774390218,215,0 +170774390266,215,0 +170774390314,215,0 +170774390362,215,0 +170774390410,214,0 +170774390460,214,0 +170774390508,214,0 +170774390557,214,0 +170774390605,214,0 +170774390653,214,0 +170774390703,214,0 +170774390752,214,0 +170774390802,214,0 +170774390851,215,0 +170774390899,215,0 +170774390947,215,0 +170774390996,215,0 +170774391044,215,0 +170774391092,215,0 +170774391142,215,0 +170774391190,215,0 +170774391238,214,0 +170774391287,213,0 +170774391336,213,0 +170774391386,214,0 +170774391435,214,0 +170774391485,214,0 +170774391533,214,0 +170774391583,214,0 +170774391630,214,0 +170774391678,214,0 +170774391728,215,0 +170774391777,215,0 +170774391825,215,0 +170774391875,215,0 +170774391924,215,0 +170774391974,215,0 +170774392023,214,0 +170774392071,214,0 +170774392119,214,0 +170774392167,214,0 +170774392215,214,0 +170774392263,214,0 +170774392311,214,0 +170774392359,214,0 +170774392408,214,0 +170774392458,214,0 +170774392505,214,0 +170774392553,214,0 +170774392601,215,0 +170774392651,215,0 +170774392700,215,0 +170774392750,215,0 +170774392799,215,0 +170774392847,215,0 +170774392895,214,0 +170774392943,214,0 +170774392991,214,0 +170774393039,214,0 +170774393089,214,0 +170774393137,214,0 +170774393185,214,0 +170774393234,214,0 +170774393282,215,0 +170774393332,215,0 +170774393381,215,0 +170774393431,215,0 +170774393479,215,0 +170774393528,215,0 +170774393576,215,0 +170774393626,215,0 +170774393674,215,0 +170774393723,214,0 +170774393771,214,0 +170774393820,214,0 +170774393870,214,0 +170774393918,214,0 +170774393966,214,0 +170774394014,214,0 +170774394061,215,0 +170774394111,215,0 +170774394160,215,0 +170774394208,215,0 +170774394256,215,0 +170774394304,215,0 +170774394352,215,0 +170774394400,215,0 +170774394448,215,0 +170774394496,215,0 +170774394544,214,0 +170774394593,214,0 +170774394641,214,0 +170774394691,214,0 +170774394739,214,0 +170774394787,214,0 +170774394835,214,0 +170774394884,215,0 +170774394934,215,0 +170774394981,215,0 +170774395029,215,0 +170774395079,215,0 +170774395127,215,0 +170774395175,215,0 +170774395223,215,0 +170774395272,215,0 +170774395322,215,0 +170774395371,214,0 +170774395419,214,0 +170774395467,214,0 +170774395515,214,0 +170774395563,214,0 +170774395610,214,0 +170774395658,214,0 +170774395706,214,0 +170774395754,214,0 +170774395802,214,0 +170774395850,215,0 +170774395898,214,0 +170774395946,214,0 +170774395994,214,0 +170774396042,215,0 +170774396089,214,0 +170774396137,214,0 +170774396187,214,0 +170774396235,213,0 +170774396282,213,0 +170774396330,214,0 +170774396380,213,0 +170774396428,214,0 +170774396475,214,0 +170774396523,214,0 +170774396571,214,0 +170774396619,214,0 +170774396669,214,0 +170774396716,214,0 +170774396764,215,0 +170774396812,214,0 +170774396860,215,0 +170774396910,215,0 +170774396958,215,0 +170774397007,214,0 +170774397055,214,0 +170774397105,213,0 +170774397153,213,0 +170774397201,214,0 +170774397248,214,0 +170774397296,214,0 +170774397344,214,0 +170774397394,214,0 +170774397443,214,0 +170774397493,214,0 +170774397542,214,0 +170774397592,214,0 +170774397640,214,0 +170774397688,215,0 +170774397736,215,0 +170774397784,215,0 +170774397833,215,0 +170774397881,213,0 +170774397931,213,0 +170774397980,214,0 +170774398028,214,0 +170774398076,214,0 +170774398124,214,0 +170774398172,214,0 +170774398220,214,0 +170774398268,214,0 +170774398316,214,0 +170774398365,214,0 +170774398413,214,0 +170774398461,214,0 +170774398511,215,0 +170774398559,215,0 +170774398606,215,0 +170774398656,215,0 +170774398704,214,0 +170774398752,214,0 +170774398800,214,0 +170774398849,214,0 +170774398899,214,0 +170774398947,214,0 +170774398996,214,0 +170774399046,214,0 +170774399094,215,0 +170774399143,214,0 +170774399191,215,0 +170774399239,215,0 +170774399287,215,0 +170774399337,215,0 +170774399385,215,0 +170774399432,215,0 +170774399480,215,0 +170774399528,214,0 +170774399578,214,0 +170774399626,214,0 +170774399675,214,0 +170774399723,214,0 +170774399771,214,0 +170774399821,214,0 +170774399870,215,0 +170774399920,215,0 +170774399968,215,0 +170774400016,215,0 +170774400065,215,0 +170774400113,215,0 +170774400161,215,0 +170774400211,215,0 +170774400260,215,0 +170774400310,214,0 +170774400357,214,0 +170774400405,214,0 +170774400453,214,0 +170774400501,214,0 +170774400551,214,0 +170774400598,215,0 +170774400646,215,0 +170774400694,215,0 +170774400742,215,0 +170774400790,215,0 +170774400839,215,0 +170774400887,215,0 +170774400935,215,0 +170774400983,215,0 +170774401031,215,0 +170774401079,215,0 +170774401126,215,0 +170774401174,214,0 +170774401222,214,0 +170774401272,214,0 +170774401319,214,0 +170774401367,214,0 +170774401415,215,0 +170774401463,214,0 +170774401511,214,0 +170774401559,215,0 +170774401606,215,0 +170774401654,215,0 +170774401702,215,0 +170774401750,215,0 +170774401798,215,0 +170774401846,215,0 +170774401894,215,0 +170774401942,215,0 +170774401991,214,0 +170774402039,214,0 +170774402087,214,0 +170774402134,214,0 +170774402184,214,0 +170774402232,214,0 +170774402281,215,0 +170774402329,215,0 +170774402377,215,0 +170774402425,215,0 +170774402473,215,0 +170774402521,215,0 +170774402570,215,0 +170774402620,215,0 +170774402668,215,0 +170774402717,215,0 +170774402765,215,0 +170774402813,215,0 +170774402861,214,0 +170774402911,215,0 +170774402960,215,0 +170774403010,215,0 +170774403058,215,0 +170774403106,215,0 +170774403155,215,0 +170774403203,215,0 +170774403251,215,0 +170774403299,215,0 +170774403347,215,0 +170774403396,215,0 +170774403446,215,0 +170774403494,215,0 +170774403542,215,0 +170774403590,215,0 +170774403639,214,0 +170774403687,214,0 +170774403736,214,0 +170774403784,214,0 +170774403832,215,0 +170774403880,215,0 +170774403928,215,0 +170774403977,215,0 +170774404025,215,0 +170774404073,215,0 +170774404121,215,0 +170774404169,215,0 +170774404216,215,0 +170774404264,215,0 +170774404314,215,0 +170774404363,215,0 +170774404411,215,0 +170774404461,214,0 +170774404510,214,0 +170774404558,214,0 +170774404606,214,0 +170774404654,214,0 +170774404702,214,0 +170774404750,214,0 +170774404800,215,0 +170774404849,214,0 +170774404897,215,0 +170774404945,215,0 +170774404993,215,0 +170774405042,215,0 +170774405090,215,0 +170774405138,215,0 +170774405188,215,0 +170774405235,215,0 +170774405283,214,0 +170774405331,214,0 +170774405379,214,0 +170774405427,214,0 +170774405474,214,0 +170774405522,214,0 +170774405572,214,0 +170774405621,214,0 +170774405669,215,0 +170774405717,215,0 +170774405765,215,0 +170774405813,215,0 +170774405862,215,0 +170774405912,215,0 +170774405961,215,0 +170774406009,215,0 +170774406059,215,0 +170774406108,214,0 +170774406158,213,0 +170774406206,214,0 +170774406255,214,0 +170774406305,214,0 +170774406353,214,0 +170774406400,214,0 +170774406448,214,0 +170774406496,215,0 +170774406546,215,0 +170774406594,215,0 +170774406642,215,0 +170774406691,215,0 +170774406739,215,0 +170774406787,215,0 +170774406835,215,0 +170774406882,215,0 +170774406930,215,0 +170774406978,213,0 +170774407026,214,0 +170774407074,214,0 +170774407122,214,0 +170774407170,214,0 +170774407219,214,0 +170774407269,214,0 +170774407319,214,0 +170774407366,215,0 +170774407416,215,0 +170774407465,215,0 +170774407513,215,0 +170774407563,215,0 +170774407611,215,0 +170774407661,215,0 +170774407711,215,0 +170774407759,214,0 +170774407806,213,0 +170774407854,213,0 +170774407902,214,0 +170774407952,214,0 +170774408000,214,0 +170774408048,214,0 +170774408096,214,0 +170774408143,214,0 +170774408191,214,0 +170774408241,215,0 +170774408289,215,0 +170774408337,215,0 +170774408385,215,0 +170774408433,215,0 +170774408482,215,0 +170774408530,215,0 +170774408580,214,0 +170774408627,214,0 +170774408675,214,0 +170774408725,214,0 +170774408773,214,0 +170774408822,214,0 +170774408872,214,0 +170774408920,214,0 +170774408968,214,0 +170774409016,214,0 +170774409064,214,0 +170774409112,214,0 +170774409160,215,0 +170774409209,214,0 +170774409257,215,0 +170774409307,215,0 +170774409356,215,0 +170774409404,214,0 +170774409452,214,0 +170774409500,214,0 +170774409548,214,0 +170774409598,214,0 +170774409647,214,0 +170774409695,214,0 +170774409745,214,0 +170774409792,214,0 +170774409842,214,0 +170774409891,214,0 +170774409939,215,0 +170774409987,214,0 +170774410035,215,0 +170774410083,215,0 +170774410133,215,0 +170774410181,215,0 +170774410229,214,0 +170774410278,213,0 +170774410328,213,0 +170774410376,214,0 +170774410425,214,0 +170774410475,214,0 +170774410524,214,0 +170774410572,214,0 +170774410620,214,0 +170774410668,214,0 +170774410716,214,0 +170774410764,214,0 +170774410812,214,0 +170774410860,215,0 +170774410909,215,0 +170774410957,215,0 +170774411005,215,0 +170774411053,214,0 +170774411101,213,0 +170774411150,213,0 +170774411200,214,0 +170774411248,213,0 +170774411296,214,0 +170774411344,213,0 +170774411392,214,0 +170774411440,214,0 +170774411489,214,0 +170774411537,214,0 +170774411585,214,0 +170774411633,214,0 +170774411683,214,0 +170774411731,215,0 +170774411779,214,0 +170774411828,215,0 +170774411878,215,0 +170774411926,213,0 +170774411974,213,0 +170774412023,213,0 +170774412073,214,0 +170774412122,213,0 +170774412170,214,0 +170774412218,214,0 +170774412266,214,0 +170774412314,214,0 +170774412362,214,0 +170774412411,214,0 +170774412459,215,0 +170774412509,215,0 +170774412557,215,0 +170774412606,215,0 +170774412654,215,0 +170774412702,215,0 +170774412750,214,0 +170774412799,214,0 +170774412849,214,0 +170774412898,214,0 +170774412946,214,0 +170774412996,214,0 +170774413045,215,0 +170774413095,215,0 +170774413142,215,0 +170774413190,214,0 +170774413240,215,0 +170774413288,215,0 +170774413336,215,0 +170774413384,215,0 +170774413432,215,0 +170774413481,215,0 +170774413531,214,0 +170774413580,214,0 +170774413630,214,0 +170774413678,214,0 +170774413727,215,0 +170774413775,214,0 +170774413825,215,0 +170774413874,215,0 +170774413922,215,0 +170774413970,215,0 +170774414018,215,0 +170774414066,215,0 +170774414115,215,0 +170774414163,215,0 +170774414211,215,0 +170774414259,215,0 +170774414309,215,0 +170774414357,214,0 +170774414405,215,0 +170774414453,215,0 +170774414501,215,0 +170774414549,215,0 +170774414598,215,0 +170774414646,215,0 +170774414695,215,0 +170774414745,215,0 +170774414795,215,0 +170774414842,215,0 +170774414890,215,0 +170774414938,215,0 +170774414986,215,0 +170774415034,215,0 +170774415082,215,0 +170774415130,215,0 +170774415178,214,0 +170774415226,214,0 +170774415274,214,0 +170774415322,214,0 +170774415370,214,0 +170774415418,215,0 +170774415467,215,0 +170774415515,215,0 +170774415563,215,0 +170774415611,215,0 +170774415659,215,0 +170774415707,215,0 +170774415755,215,0 +170774415803,215,0 +170774415851,215,0 +170774415900,215,0 +170774415948,215,0 +170774415998,214,0 +170774416046,214,0 +170774416094,214,0 +170774416143,214,0 +170774416191,214,0 +170774416239,214,0 +170774416289,215,0 +170774416337,215,0 +170774416386,215,0 +170774416434,215,0 +170774416482,215,0 +170774416532,215,0 +170774416580,215,0 +170774416628,216,0 +170774416676,215,0 +170774416723,215,0 +170774416771,215,0 +170774416821,215,0 +170774416869,214,0 +170774416917,214,0 +170774416964,214,0 +170774417012,215,0 +170774417060,215,0 +170774417110,215,0 +170774417159,215,0 +170774417208,215,0 +170774417256,215,0 +170774417304,215,0 +170774417352,215,0 +170774417400,215,0 +170774417448,215,0 +170774417496,215,0 +170774417544,215,0 +170774417591,215,0 +170774417639,215,0 +170774417687,214,0 +170774417736,214,0 +170774417786,214,0 +170774417834,214,0 +170774417881,214,0 +170774417931,215,0 +170774417980,215,0 +170774418028,215,0 +170774418076,215,0 +170774418125,215,0 +170774418173,215,0 +170774418221,215,0 +170774418271,215,0 +170774418319,215,0 +170774418367,215,0 +170774418415,215,0 +170774418462,215,0 +170774418510,214,0 +170774418558,214,0 +170774418606,214,0 +170774418654,214,0 +170774418704,214,0 +170774418753,214,0 +170774418803,214,0 +170774418851,215,0 +170774418899,215,0 +170774418947,215,0 +170774418995,215,0 +170774419042,215,0 +170774419092,215,0 +170774419141,215,0 +170774419191,215,0 +170774419239,215,0 +170774419288,215,0 +170774419336,214,0 +170774419384,214,0 +170774419434,213,0 +170774419483,214,0 +170774419533,214,0 +170774419582,214,0 +170774419632,214,0 +170774419680,214,0 +170774419729,215,0 +170774419777,215,0 +170774419825,215,0 +170774419873,215,0 +170774419922,215,0 +170774419972,215,0 +170774420020,215,0 +170774420068,215,0 +170774420116,215,0 +170774420164,214,0 +170774420212,214,0 +170774420259,214,0 +170774420307,214,0 +170774420355,214,0 +170774420403,214,0 +170774420451,214,0 +170774420499,214,0 +170774420547,214,0 +170774420595,215,0 +170774420644,215,0 +170774420692,215,0 +170774420740,215,0 +170774420788,215,0 +170774420836,215,0 +170774420886,215,0 +170774420934,215,0 +170774420981,214,0 +170774421029,214,0 +170774421077,214,0 +170774421125,214,0 +170774421174,214,0 +170774421224,214,0 +170774421272,214,0 +170774421321,214,0 +170774421371,214,0 +170774421420,215,0 +170774421468,215,0 +170774421518,215,0 +170774421566,215,0 +170774421614,215,0 +170774421661,215,0 +170774421711,215,0 +170774421760,215,0 +170774421810,214,0 +170774421860,214,0 +170774421908,214,0 +170774421957,214,0 +170774422005,214,0 +170774422053,214,0 +170774422102,214,0 +170774422150,214,0 +170774422200,214,0 +170774422249,214,0 +170774422297,215,0 +170774422347,214,0 +170774422396,215,0 +170774422446,215,0 +170774422494,215,0 +170774422542,215,0 +170774422589,215,0 +170774422637,214,0 +170774422687,213,0 +170774422735,214,0 +170774422783,214,0 +170774422831,214,0 +170774422879,214,0 +170774422927,214,0 +170774422976,214,0 +170774423026,214,0 +170774423073,214,0 +170774423121,214,0 +170774423169,215,0 +170774423217,215,0 +170774423265,215,0 +170774423313,215,0 +170774423361,215,0 +170774423409,215,0 +170774423456,214,0 +170774423504,214,0 +170774423554,214,0 +170774423602,214,0 +170774423650,214,0 +170774423698,214,0 +170774423745,214,0 +170774423793,214,0 +170774423841,214,0 +170774423891,214,0 +170774423940,215,0 +170774423988,215,0 +170774424037,215,0 +170774424087,215,0 +170774424137,215,0 +170774424186,215,0 +170774424236,215,0 +170774424283,214,0 +170774424333,214,0 +170774424381,214,0 +170774424429,214,0 +170774424477,214,0 +170774424525,214,0 +170774424573,214,0 +170774424621,214,0 +170774424669,214,0 +170774424718,214,0 +170774424768,215,0 +170774424816,215,0 +170774424863,215,0 +170774424911,215,0 +170774424959,215,0 +170774425009,215,0 +170774425057,215,0 +170774425105,214,0 +170774425154,214,0 +170774425202,214,0 +170774425250,214,0 +170774425298,214,0 +170774425347,214,0 +170774425395,214,0 +170774425445,214,0 +170774425493,214,0 +170774425541,214,0 +170774425589,215,0 +170774425637,215,0 +170774425686,215,0 +170774425734,215,0 +170774425784,215,0 +170774425833,215,0 +170774425881,215,0 +170774425929,214,0 +170774425979,214,0 +170774426027,214,0 +170774426075,214,0 +170774426123,214,0 +170774426170,214,0 +170774426218,214,0 +170774426266,215,0 +170774426314,215,0 +170774426362,215,0 +170774426410,215,0 +170774426458,215,0 +170774426506,215,0 +170774426554,215,0 +170774426603,215,0 +170774426651,215,0 +170774426699,215,0 +170774426747,214,0 +170774426795,214,0 +170774426843,214,0 +170774426891,214,0 +170774426939,214,0 +170774426986,215,0 +170774427034,214,0 +170774427084,214,0 +170774427132,215,0 +170774427180,215,0 +170774427229,215,0 +170774427277,215,0 +170774427325,215,0 +170774427375,215,0 +170774427424,215,0 +170774427472,215,0 +170774427521,215,0 +170774427569,214,0 +170774427617,214,0 +170774427665,214,0 +170774427715,214,0 +170774427763,214,0 +170774427810,214,0 +170774427858,214,0 +170774427906,215,0 +170774427954,215,0 +170774428004,215,0 +170774428053,215,0 +170774428101,215,0 +170774428151,215,0 +170774428199,215,0 +170774428247,215,0 +170774428294,215,0 +170774428342,215,0 +170774428390,215,0 +170774428438,214,0 +170774428486,214,0 +170774428536,214,0 +170774428585,214,0 +170774428633,214,0 +170774428681,214,0 +170774428731,215,0 +170774428779,215,0 +170774428828,214,0 +170774428876,214,0 +170774428926,215,0 +170774428975,215,0 +170774429025,215,0 +170774429073,215,0 +170774429121,215,0 +170774429170,215,0 +170774429218,215,0 +170774429266,214,0 +170774429316,214,0 +170774429364,214,0 +170774429411,214,0 +170774429461,214,0 +170774429509,214,0 +170774429557,214,0 +170774429605,215,0 +170774429654,214,0 +170774429702,215,0 +170774429752,215,0 +170774429799,215,0 +170774429847,215,0 +170774429895,215,0 +170774429943,215,0 +170774429991,215,0 +170774430039,215,0 +170774430089,214,0 +170774430137,214,0 +170774430184,214,0 +170774430232,214,0 +170774430280,214,0 +170774430328,214,0 +170774430376,214,0 +170774430424,215,0 +170774430472,215,0 +170774430522,215,0 +170774430569,215,0 +170774430617,215,0 +170774430665,215,0 +170774430715,215,0 +170774430763,215,0 +170774430812,215,0 +170774430862,214,0 +170774430910,214,0 +170774430958,214,0 +170774431006,214,0 +170774431054,214,0 +170774431103,214,0 +170774431151,214,0 +170774431199,214,0 +170774431247,214,0 +170774431295,215,0 +170774431343,215,0 +170774431391,215,0 +170774431439,215,0 +170774431487,215,0 +170774431536,215,0 +170774431586,215,0 +170774431635,215,0 +170774431685,215,0 +170774431732,214,0 +170774431780,214,0 +170774431830,214,0 +170774431879,214,0 +170774431927,214,0 +170774431976,214,0 +170774432024,214,0 +170774432072,215,0 +170774432120,215,0 +170774432170,215,0 +170774432217,215,0 +170774432265,215,0 +170774432313,215,0 +170774432363,215,0 +170774432412,215,0 +170774432460,214,0 +170774432508,215,0 +170774432556,214,0 +170774432606,214,0 +170774432655,213,0 +170774432703,214,0 +170774432751,214,0 +170774432799,214,0 +170774432848,214,0 +170774432896,214,0 +170774432944,214,0 +170774432994,215,0 +170774433042,215,0 +170774433091,215,0 +170774433139,214,0 +170774433187,215,0 +170774433235,215,0 +170774433282,215,0 +170774433330,215,0 +170774433380,214,0 +170774433428,214,0 +170774433476,213,0 +170774433523,214,0 +170774433571,214,0 +170774433619,214,0 +170774433667,214,0 +170774433716,214,0 +170774433764,214,0 +170774433812,214,0 +170774433862,215,0 +170774433911,215,0 +170774433959,215,0 +170774434007,215,0 +170774434057,215,0 +170774434104,215,0 +170774434152,215,0 +170774434200,214,0 +170774434248,214,0 +170774434296,214,0 +170774434344,214,0 +170774434394,214,0 +170774434443,214,0 +170774434491,214,0 +170774434539,215,0 +170774434588,215,0 +170774434636,215,0 +170774434686,215,0 +170774434734,215,0 +170774434783,215,0 +170774434833,215,0 +170774434882,215,0 +170774434932,215,0 +170774434980,215,0 +170774435028,214,0 +170774435077,214,0 +170774435125,214,0 +170774435175,214,0 +170774435223,215,0 +170774435271,215,0 +170774435319,215,0 +170774435367,215,0 +170774435416,215,0 +170774435464,215,0 +170774435512,215,0 +170774435560,215,0 +170774435608,215,0 +170774435656,215,0 +170774435704,215,0 +170774435753,215,0 +170774435803,215,0 +170774435851,214,0 +170774435899,214,0 +170774435947,214,0 +170774435995,214,0 +170774436043,214,0 +170774436092,214,0 +170774436140,215,0 +170774436190,215,0 +170774436238,215,0 +170774436286,215,0 +170774436334,215,0 +170774436383,215,0 +170774436431,215,0 +170774436481,215,0 +170774436530,215,0 +170774436578,215,0 +170774436626,215,0 +170774436676,214,0 +170774436724,214,0 +170774436772,214,0 +170774436820,214,0 +170774436869,214,0 +170774436917,214,0 +170774436967,215,0 +170774437014,214,0 +170774437064,215,0 +170774437112,215,0 +170774437161,215,0 +170774437209,215,0 +170774437259,215,0 +170774437307,215,0 +170774437356,215,0 +170774437404,215,0 +170774437452,215,0 +170774437500,215,0 +170774437548,214,0 +170774437596,213,0 +170774437646,214,0 +170774437695,214,0 +170774437743,214,0 +170774437791,214,0 +170774437841,214,0 +170774437890,214,0 +170774437938,214,0 +170774437988,214,0 +170774438036,214,0 +170774438085,214,0 +170774438133,214,0 +170774438183,214,0 +170774438230,214,0 +170774438278,214,0 +170774438326,214,0 +170774438376,213,0 +170774438424,213,0 +170774438473,213,0 +170774438523,214,0 +170774438571,214,0 +170774438619,214,0 +170774438667,214,0 +170774438714,214,0 +170774438762,214,0 +170774438812,214,0 +170774438860,214,0 +170774438909,214,0 +170774438959,214,0 +170774439008,214,0 +170774439056,215,0 +170774439106,215,0 +170774439155,215,0 +170774439205,215,0 +170774439253,215,0 +170774439301,215,0 +170774439350,215,0 +170774439398,215,0 +170774439447,215,0 +170774439495,215,0 +170774439545,215,0 +170774439592,214,0 +170774439640,214,0 +170774439688,214,0 +170774439736,214,0 +170774439784,214,0 +170774439832,214,0 +170774439880,214,0 +170774439928,215,0 +170774439977,215,0 +170774440027,215,0 +170774440076,215,0 +170774440124,215,0 +170774440172,215,0 +170774440220,215,0 +170774440268,215,0 +170774440317,215,0 +170774440367,215,0 +170774440415,214,0 +170774440464,214,0 +170774440512,214,0 +170774440560,214,0 +170774440608,214,0 +170774440658,215,0 +170774440706,214,0 +170774440754,215,0 +170774440802,215,0 +170774440850,215,0 +170774440898,215,0 +170774440945,215,0 +170774440993,215,0 +170774441041,215,0 +170774441089,215,0 +170774441137,215,0 +170774441185,215,0 +170774441233,214,0 +170774441281,214,0 +170774441328,214,0 +170774441376,214,0 +170774441424,214,0 +170774441472,215,0 +170774441520,215,0 +170774441569,215,0 +170774441617,215,0 +170774441665,215,0 +170774441714,215,0 +170774441762,215,0 +170774441810,215,0 +170774441860,215,0 +170774441907,215,0 +170774441955,215,0 +170774442003,215,0 +170774442051,214,0 +170774442099,214,0 +170774442147,214,0 +170774442195,214,0 +170774442243,214,0 +170774442291,214,0 +170774442339,214,0 +170774442388,214,0 +170774442438,214,0 +170774442488,215,0 +170774442537,215,0 +170774442587,215,0 +170774442635,215,0 +170774442683,215,0 +170774442732,215,0 +170774442780,215,0 +170774442828,215,0 +170774442877,214,0 +170774442927,214,0 +170774442975,214,0 +170774443022,214,0 +170774443072,214,0 +170774443121,214,0 +170774443171,214,0 +170774443220,214,0 +170774443268,214,0 +170774443316,214,0 +170774443364,215,0 +170774443412,215,0 +170774443460,215,0 +170774443508,215,0 +170774443557,215,0 +170774443605,215,0 +170774443653,215,0 +170774443701,214,0 +170774443750,214,0 +170774443798,214,0 +170774443848,214,0 +170774443896,214,0 +170774443944,214,0 +170774443992,214,0 +170774444040,214,0 +170774444087,215,0 +170774444135,214,0 +170774444183,215,0 +170774444231,215,0 +170774444281,215,0 +170774444329,215,0 +170774444378,215,0 +170774444426,215,0 +170774444474,215,0 +170774444524,214,0 +170774444571,214,0 +170774444619,214,0 +170774444667,214,0 +170774444717,214,0 +170774444766,214,0 +170774444814,214,0 +170774444862,215,0 +170774444910,215,0 +170774444960,215,0 +170774445009,214,0 +170774445057,215,0 +170774445106,215,0 +170774445154,214,0 +170774445204,214,0 +170774445253,214,0 +170774445303,215,0 +170774445351,214,0 +170774445399,214,0 +170774445448,214,0 +170774445498,214,0 +170774445546,214,0 +170774445594,214,0 +170774445643,214,0 +170774445691,214,0 +170774445739,215,0 +170774445787,215,0 +170774445836,215,0 +170774445886,215,0 +170774445934,215,0 +170774445982,215,0 +170774446031,215,0 +170774446079,215,0 +170774446129,215,0 +170774446177,214,0 +170774446226,214,0 +170774446274,214,0 +170774446322,214,0 +170774446370,214,0 +170774446418,214,0 +170774446467,215,0 +170774446515,215,0 +170774446563,214,0 +170774446611,215,0 +170774446661,215,0 +170774446710,215,0 +170774446760,215,0 +170774446808,215,0 +170774446857,215,0 +170774446907,215,0 +170774446956,215,0 +170774447006,214,0 +170774447054,214,0 +170774447102,214,0 +170774447149,214,0 +170774447197,214,0 +170774447245,215,0 +170774447295,215,0 +170774447343,215,0 +170774447391,215,0 +170774447439,215,0 +170774447487,215,0 +170774447536,215,0 +170774447584,215,0 +170774447632,215,0 +170774447680,215,0 +170774447728,215,0 +170774447777,215,0 +170774447825,214,0 +170774447875,214,0 +170774447922,214,0 +170774447970,214,0 +170774448020,214,0 +170774448068,214,0 +170774448117,214,0 +170774448165,215,0 +170774448213,214,0 +170774448261,215,0 +170774448309,215,0 +170774448357,215,0 +170774448407,215,0 +170774448454,215,0 +170774448502,215,0 +170774448550,215,0 +170774448598,215,0 +170774448646,214,0 +170774448694,214,0 +170774448744,214,0 +170774448792,214,0 +170774448841,214,0 +170774448891,214,0 +170774448939,214,0 +170774448988,214,0 +170774449038,215,0 +170774449086,214,0 +170774449134,215,0 +170774449183,215,0 +170774449233,215,0 +170774449281,215,0 +170774449330,215,0 +170774449378,215,0 +170774449426,215,0 +170774449474,214,0 +170774449522,214,0 +170774449570,214,0 +170774449620,214,0 +170774449668,214,0 +170774449716,214,0 +170774449765,214,0 +170774449815,214,0 +170774449862,214,0 +170774449912,214,0 +170774449961,215,0 +170774450009,215,0 +170774450057,215,0 +170774450105,215,0 +170774450153,215,0 +170774450203,215,0 +170774450250,215,0 +170774450300,214,0 +170774450348,213,0 +170774450396,214,0 +170774450443,214,0 +170774450491,214,0 +170774450539,214,0 +170774450587,214,0 +170774450636,214,0 +170774450684,214,0 +170774450732,214,0 +170774450780,214,0 +170774450829,215,0 +170774450877,215,0 +170774450925,215,0 +170774450973,215,0 +170774451021,215,0 +170774451068,215,0 +170774451116,214,0 +170774451166,214,0 +170774451215,214,0 +170774451263,214,0 +170774451311,214,0 +170774451359,214,0 +170774451406,214,0 +170774451454,214,0 +170774451502,214,0 +170774451550,214,0 +170774451598,214,0 +170774451647,214,0 +170774451695,214,0 +170774451745,215,0 +170774451793,215,0 +170774451841,215,0 +170774451889,215,0 +170774451938,214,0 +170774451988,213,0 +170774452037,213,0 +170774452085,213,0 +170774452135,214,0 +170774452183,214,0 +170774452230,214,0 +170774452278,214,0 +170774452326,214,0 +170774452374,214,0 +170774452422,214,0 +170774452472,214,0 +170774452520,215,0 +170774452569,214,0 +170774452619,215,0 +170774452667,215,0 +170774452716,214,0 +170774452764,214,0 +170774452814,214,0 +170774452862,214,0 +170774452911,214,0 +170774452959,214,0 +170774453007,214,0 +170774453055,214,0 +170774453103,214,0 +170774453151,214,0 +170774453198,215,0 +170774453246,215,0 +170774453294,215,0 +170774453342,215,0 +170774453392,215,0 +170774453440,215,0 +170774453488,215,0 +170774453535,215,0 +170774453585,214,0 +170774453635,214,0 +170774453684,214,0 +170774453732,214,0 +170774453781,214,0 +170774453829,215,0 +170774453877,215,0 +170774453925,215,0 +170774453973,215,0 +170774454021,215,0 +170774454069,215,0 +170774454118,215,0 +170774454166,215,0 +170774454214,215,0 +170774454264,215,0 +170774454312,215,0 +170774454361,215,0 +170774454409,214,0 +170774454457,215,0 +170774454507,215,0 +170774454556,215,0 +170774454604,215,0 +170774454653,215,0 +170774454701,215,0 +170774454751,215,0 +170774454799,215,0 +170774454848,215,0 +170774454898,215,0 +170774454946,215,0 +170774454994,215,0 +170774455042,215,0 +170774455091,215,0 +170774455139,215,0 +170774455187,215,0 +170774455236,215,0 +170774455286,214,0 +170774455334,214,0 +170774455382,214,0 +170774455431,214,0 +170774455479,215,0 +170774455527,215,0 +170774455575,215,0 +170774455623,215,0 +170774455671,215,0 +170774455719,215,0 +170774455769,215,0 +170774455816,215,0 +170774455866,215,0 +170774455916,215,0 +170774455965,215,0 +170774456013,215,0 +170774456063,215,0 +170774456110,214,0 +170774456158,214,0 +170774456206,214,0 +170774456254,214,0 +170774456302,215,0 +170774456350,215,0 +170774456400,215,0 +170774456449,215,0 +170774456497,215,0 +170774456545,215,0 +170774456593,215,0 +170774456641,215,0 +170774456690,215,0 +170774456738,215,0 +170774456786,215,0 +170774456834,215,0 +170774456884,215,0 +170774456932,214,0 +170774456979,214,0 +170774457029,214,0 +170774457079,214,0 +170774457127,215,0 +170774457174,215,0 +170774457224,215,0 +170774457272,215,0 +170774457320,215,0 +170774457368,215,0 +170774457416,215,0 +170774457464,215,0 +170774457512,215,0 +170774457560,215,0 +170774457608,215,0 +170774457655,215,0 +170774457705,215,0 +170774457755,214,0 +170774457803,214,0 +170774457852,214,0 +170774457900,214,0 +170774457950,214,0 +170774457999,215,0 +170774458047,215,0 +170774458095,215,0 +170774458145,215,0 +170774458193,215,0 +170774458240,215,0 +170774458290,215,0 +170774458339,215,0 +170774458387,215,0 +170774458435,215,0 +170774458483,215,0 +170774458533,214,0 +170774458581,214,0 +170774458629,214,0 +170774458677,214,0 +170774458724,214,0 +170774458772,214,0 +170774458820,214,0 +170774458868,215,0 +170774458918,215,0 +170774458966,215,0 +170774459015,215,0 +170774459063,215,0 +170774459111,215,0 +170774459159,215,0 +170774459208,215,0 +170774459256,215,0 +170774459306,215,0 +170774459354,215,0 +170774459403,214,0 +170774459453,214,0 +170774459501,214,0 +170774459549,214,0 +170774459597,214,0 +170774459646,214,0 +170774459694,215,0 +170774459744,215,0 +170774459793,215,0 +170774459843,215,0 +170774459892,215,0 +170774459940,215,0 +170774459990,215,0 +170774460038,215,0 +170774460086,215,0 +170774460135,215,0 +170774460183,214,0 +170774460231,214,0 +170774460279,214,0 +170774460328,214,0 +170774460376,214,0 +170774460424,214,0 +170774460474,214,0 +170774460522,214,0 +170774460569,215,0 +170774460617,215,0 +170774460667,215,0 +170774460715,215,0 +170774460764,215,0 +170774460812,215,0 +170774460862,215,0 +170774460910,215,0 +170774460959,215,0 +170774461007,215,0 +170774461055,214,0 +170774461103,214,0 +170774461151,214,0 +170774461199,214,0 +170774461249,214,0 +170774461297,214,0 +170774461346,214,0 +170774461394,215,0 +170774461442,215,0 +170774461490,215,0 +170774461538,215,0 +170774461586,215,0 +170774461634,215,0 +170774461683,215,0 +170774461731,215,0 +170774461780,214,0 +170774461828,214,0 +170774461876,213,0 +170774461924,214,0 +170774461972,214,0 +170774462020,214,0 +170774462068,214,0 +170774462118,214,0 +170774462167,214,0 +170774462217,214,0 +170774462266,215,0 +170774462314,214,0 +170774462364,215,0 +170774462412,215,0 +170774462461,215,0 +170774462511,215,0 +170774462560,215,0 +170774462608,215,0 +170774462656,214,0 +170774462704,213,0 +170774462752,214,0 +170774462800,214,0 +170774462848,214,0 +170774462898,214,0 +170774462946,214,0 +170774462993,214,0 +170774463041,215,0 +170774463089,214,0 +170774463137,215,0 +170774463187,215,0 +170774463236,215,0 +170774463284,215,0 +170774463334,215,0 +170774463382,215,0 +170774463429,215,0 +170774463477,214,0 +170774463525,213,0 +170774463575,213,0 +170774463623,214,0 +170774463672,214,0 +170774463722,214,0 +170774463770,214,0 +170774463817,214,0 +170774463865,214,0 +170774463913,214,0 +170774463961,214,0 +170774464009,214,0 +170774464059,214,0 +170774464107,214,0 +170774464156,214,0 +170774464204,214,0 +170774464252,215,0 +170774464301,214,0 +170774464349,213,0 +170774464399,213,0 +170774464447,214,0 +170774464495,214,0 +170774464543,214,0 +170774464591,214,0 +170774464638,214,0 +170774464686,214,0 +170774464734,214,0 +170774464782,215,0 +170774464830,214,0 +170774464880,215,0 +170774464928,215,0 +170774464976,215,0 +170774465025,214,0 +170774465073,215,0 +170774465121,214,0 +170774465169,213,0 +170774465218,213,0 +170774465266,213,0 +170774465316,213,0 +170774465364,213,0 +170774465413,213,0 +170774465461,213,0 +170774465509,214,0 +170774465557,214,0 +170774465605,214,0 +170774465653,214,0 +170774465703,214,0 +170774465750,214,0 +170774465798,214,0 +170774465848,214,0 +170774465897,215,0 +170774465945,214,0 +170774465993,214,0 +170774466043,214,0 +170774466091,214,0 +170774466140,214,0 +170774466188,214,0 +170774466238,214,0 +170774466286,214,0 +170774466335,214,0 +170774466383,215,0 +170774466431,215,0 +170774466480,215,0 +170774466530,215,0 +170774466578,215,0 +170774466626,215,0 +170774466673,215,0 +170774466723,215,0 +170774466772,214,0 +170774466820,215,0 +170774466870,215,0 +170774466918,215,0 +170774466966,215,0 +170774467014,215,0 +170774467061,215,0 +170774467111,215,0 +170774467160,215,0 +170774467210,215,0 +170774467258,215,0 +170774467306,215,0 +170774467354,215,0 +170774467402,215,0 +170774467451,215,0 +170774467499,215,0 +170774467549,215,0 +170774467597,215,0 +170774467646,215,0 +170774467694,215,0 +170774467742,215,0 +170774467790,215,0 +170774467837,215,0 +170774467885,215,0 +170774467935,215,0 +170774467982,215,0 +170774468030,215,0 +170774468078,215,0 +170774468127,215,0 +170774468175,215,0 +170774468225,215,0 +170774468272,215,0 +170774468320,215,0 +170774468368,215,0 +170774468416,214,0 +170774468464,214,0 +170774468513,214,0 +170774468561,215,0 +170774468609,216,0 +170774468658,215,0 +170774468706,215,0 +170774468754,215,0 +170774468802,215,0 +170774468850,215,0 +170774468898,215,0 +170774468946,215,0 +170774468995,216,0 +170774469045,215,0 +170774469093,215,0 +170774469140,215,0 +170774469188,215,0 +170774469236,215,0 +170774469284,215,0 +170774469332,215,0 +170774469380,215,0 +170774469427,215,0 +170774469475,215,0 +170774469525,215,0 +170774469573,215,0 +170774469622,215,0 +170774469670,215,0 +170774469720,215,0 +170774469767,215,0 +170774469816,215,0 +170774469864,215,0 +170774469912,215,0 +170774469961,215,0 +170774470009,215,0 +170774470057,215,0 +170774470107,215,0 +170774470156,215,0 +170774470206,215,0 +170774470254,215,0 +170774470301,215,0 +170774470349,215,0 +170774470397,215,0 +170774470445,215,0 +170774470495,215,0 +170774470543,215,0 +170774470591,215,0 +170774470639,215,0 +170774470687,215,0 +170774470735,215,0 +170774470784,215,0 +170774470832,214,0 +170774470880,214,0 +170774470928,214,0 +170774470976,214,0 +170774471024,214,0 +170774471072,214,0 +170774471121,215,0 +170774471171,215,0 +170774471219,214,0 +170774471268,215,0 +170774471316,215,0 +170774471366,215,0 +170774471415,215,0 +170774471463,215,0 +170774471513,215,0 +170774471561,215,0 +170774471610,215,0 +170774471658,215,0 +170774471706,214,0 +170774471755,214,0 +170774471805,214,0 +170774471853,214,0 +170774471900,214,0 +170774471948,214,0 +170774471996,215,0 +170774472046,215,0 +170774472094,215,0 +170774472142,215,0 +170774472190,215,0 +170774472237,215,0 +170774472285,215,0 +170774472335,215,0 +170774472384,215,0 +170774472432,215,0 +170774472480,215,0 +170774472528,214,0 +170774472578,214,0 +170774472626,214,0 +170774472674,214,0 +170774472723,214,0 +170774472771,214,0 +170774472819,215,0 +170774472868,215,0 +170774472916,215,0 +170774472966,215,0 +170774473014,215,0 +170774473062,215,0 +170774473111,215,0 +170774473159,215,0 +170774473207,215,0 +170774473257,215,0 +170774473305,215,0 +170774473354,214,0 +170774473404,214,0 +170774473451,214,0 +170774473499,214,0 +170774473549,214,0 +170774473598,214,0 +170774473646,214,0 +170774473694,214,0 +170774473744,215,0 +170774473793,215,0 +170774473841,215,0 +170774473890,215,0 +170774473938,215,0 +170774473988,215,0 +170774474036,215,0 +170774474085,215,0 +170774474133,214,0 +170774474181,214,0 +170774474229,214,0 +170774474277,214,0 +170774474324,214,0 +170774474374,214,0 +170774474422,214,0 +170774474470,215,0 +170774474518,214,0 +170774474565,214,0 +170774474613,215,0 +170774474661,215,0 +170774474711,215,0 +170774474759,215,0 +170774474806,215,0 +170774474854,215,0 +170774474902,215,0 +170774474950,215,0 +170774474998,214,0 +170774475048,214,0 +170774475096,214,0 +170774475144,214,0 +170774475192,214,0 +170774475241,214,0 +170774475291,214,0 +170774475338,214,0 +170774475386,214,0 +170774475434,215,0 +170774475484,215,0 +170774475532,215,0 +170774475580,215,0 +170774475628,215,0 +170774475675,215,0 +170774475723,215,0 +170774475771,215,0 +170774475819,214,0 +170774475867,214,0 +170774475914,214,0 +170774475962,214,0 +170774476010,214,0 +170774476058,214,0 +170774476106,214,0 +170774476154,214,0 +170774476201,214,0 +170774476249,214,0 +170774476297,215,0 +170774476345,214,0 +170774476393,215,0 +170774476443,215,0 +170774476492,215,0 +170774476540,215,0 +170774476588,214,0 +170774476636,213,0 +170774476683,214,0 +170774476731,214,0 +170774476779,214,0 +170774476827,214,0 +170774476875,214,0 +170774476923,214,0 +170774476971,214,0 +170774477018,214,0 +170774477066,214,0 +170774477114,214,0 +170774477162,215,0 +170774477210,215,0 +170774477258,215,0 +170774477306,215,0 +170774477354,215,0 +170774477401,215,0 +170774477449,214,0 +170774477497,213,0 +170774477545,214,0 +170774477595,214,0 +170774477643,214,0 +170774477691,214,0 +170774477738,214,0 +170774477786,214,0 +170774477836,214,0 +170774477884,214,0 +170774477932,215,0 +170774477979,215,0 +170774478027,215,0 +170774478077,215,0 +170774478125,216,0 +170774478173,215,0 +170774478222,215,0 +170774478270,214,0 +170774478318,214,0 +170774478366,214,0 +170774478415,214,0 +170774478465,214,0 +170774478514,214,0 +170774478562,214,0 +170774478610,215,0 +170774478658,215,0 +170774478706,215,0 +170774478754,215,0 +170774478802,215,0 +170774478851,215,0 +170774478899,215,0 +170774478947,215,0 +170774478997,215,0 +170774479046,214,0 +170774479096,214,0 +170774479143,214,0 +170774479193,214,0 +170774479242,214,0 +170774479290,214,0 +170774479338,214,0 +170774479388,214,0 +170774479436,215,0 +170774479485,215,0 +170774479533,215,0 +170774479581,215,0 +170774479631,215,0 +170774479679,215,0 +170774479726,215,0 +170774479774,215,0 +170774479822,215,0 +170774479872,215,0 +170774479920,214,0 +170774479969,214,0 +170774480017,215,0 +170774480067,214,0 +170774480114,215,0 +170774480164,215,0 +170774480212,215,0 +170774480260,215,0 +170774480309,215,0 +170774480357,215,0 +170774480405,215,0 +170774480453,215,0 +170774480501,215,0 +170774480549,215,0 +170774480597,215,0 +170774480646,215,0 +170774480694,215,0 +170774480744,214,0 +170774480793,214,0 +170774480841,214,0 +170774480889,214,0 +170774480938,215,0 +170774480988,215,0 +170774481036,215,0 +170774481084,215,0 +170774481131,215,0 +170774481179,215,0 +170774481227,215,0 +170774481275,215,0 +170774481323,215,0 +170774481371,215,0 +170774481420,215,0 +170774481468,215,0 +170774481516,214,0 +170774481565,214,0 +170774481615,214,0 +170774481664,214,0 +170774481712,214,0 +170774481762,214,0 +170774481811,214,0 +170774481861,214,0 +170774481910,215,0 +170774481958,215,0 +170774482006,214,0 +170774482056,215,0 +170774482105,215,0 +170774482153,215,0 +170774482201,215,0 +170774482251,215,0 +170774482299,215,0 +170774482347,214,0 +170774482395,214,0 +170774482444,214,0 +170774482492,214,0 +170774482540,214,0 +170774482588,214,0 +170774482636,215,0 +170774482683,215,0 +170774482731,215,0 +170774482779,215,0 +170774482827,215,0 +170774482877,215,0 +170774482925,215,0 +170774482972,215,0 +170774483020,215,0 +170774483070,215,0 +170774483118,215,0 +170774483165,214,0 +170774483213,214,0 +170774483263,214,0 +170774483311,214,0 +170774483358,214,0 +170774483406,214,0 +170774483454,214,0 +170774483502,215,0 +170774483550,214,0 +170774483598,215,0 +170774483646,215,0 +170774483694,215,0 +170774483742,215,0 +170774483790,215,0 +170774483837,215,0 +170774483887,215,0 +170774483936,215,0 +170774483984,214,0 +170774484034,214,0 +170774484083,214,0 +170774484131,214,0 +170774484179,214,0 +170774484227,214,0 +170774484275,214,0 +170774484325,214,0 +170774484373,215,0 +170774484420,215,0 +170774484468,214,0 +170774484518,215,0 +170774484566,215,0 +170774484614,215,0 +170774484661,215,0 +170774484709,215,0 +170774484757,215,0 +170774484806,214,0 +170774484854,214,0 +170774484904,214,0 +170774484952,214,0 +170774485000,214,0 +170774485047,214,0 +170774485095,214,0 +170774485143,214,0 +170774485191,214,0 +170774485239,214,0 +170774485287,215,0 +170774485335,215,0 +170774485382,215,0 +170774485430,215,0 +170774485478,215,0 +170774485526,215,0 +170774485576,215,0 +170774485623,214,0 +170774485673,213,0 +170774485721,214,0 +170774485769,214,0 +170774485816,214,0 +170774485864,214,0 +170774485912,214,0 +170774485961,214,0 +170774486009,214,0 +170774486057,214,0 +170774486105,215,0 +170774486153,215,0 +170774486200,215,0 +170774486248,215,0 +170774486298,215,0 +170774486346,215,0 +170774486393,215,0 +170774486443,214,0 +170774486491,214,0 +170774486539,214,0 +170774486586,214,0 +170774486636,214,0 +170774486684,214,0 +170774486733,214,0 +170774486781,214,0 +170774486829,214,0 +170774486877,215,0 +170774486924,215,0 +170774486972,215,0 +170774487022,215,0 +170774487069,215,0 +170774487117,215,0 +170774487165,215,0 +170774487213,215,0 +170774487261,214,0 +170774487309,214,0 +170774487358,214,0 +170774487407,214,0 +170774487457,214,0 +170774487505,214,0 +170774487553,214,0 +170774487601,215,0 +170774487648,215,0 +170774487696,215,0 +170774487744,215,0 +170774487792,215,0 +170774487842,215,0 +170774487890,215,0 +170774487937,215,0 +170774487987,215,0 +170774488035,215,0 +170774488083,214,0 +170774488131,214,0 +170774488178,214,0 +170774488226,214,0 +170774488274,214,0 +170774488322,215,0 +170774488370,215,0 +170774488418,215,0 +170774488465,215,0 +170774488513,215,0 +170774488561,215,0 +170774488609,215,0 +170774488657,215,0 +170774488705,215,0 +170774488753,215,0 +170774488801,215,0 +170774488851,215,0 +170774488899,214,0 +170774488947,214,0 +170774488994,214,0 +170774489042,214,0 +170774489090,214,0 +170774489140,215,0 +170774489188,215,0 +170774489237,215,0 +170774489285,215,0 +170774489333,215,0 +170774489381,215,0 +170774489430,215,0 +170774489480,215,0 +170774489528,215,0 +170774489576,215,0 +170774489624,215,0 +170774489672,215,0 +170774489720,214,0 +170774489769,214,0 +170774489817,214,0 +170774489865,214,0 +170774489914,214,0 +170774489962,214,0 +170774490010,215,0 +170774490058,214,0 +170774490106,215,0 +170774490154,215,0 +170774490203,215,0 +170774490251,215,0 +170774490299,215,0 +170774490347,215,0 +170774490395,215,0 +170774490442,215,0 +170774490490,215,0 +170774490540,214,0 +170774490588,214,0 +170774490635,214,0 +170774490685,214,0 +170774490733,214,0 +170774490780,215,0 +170774490828,215,0 +170774490876,215,0 +170774490924,214,0 +170774490972,215,0 +170774491021,215,0 +170774491069,215,0 +170774491117,215,0 +170774491165,215,0 +170774491213,215,0 +170774491260,215,0 +170774491308,215,0 +170774491356,214,0 +170774491404,214,0 +170774491452,214,0 +170774491500,214,0 +170774491548,214,0 +170774491595,214,0 +170774491643,214,0 +170774491691,214,0 +170774491739,214,0 +170774491787,214,0 +170774491837,215,0 +170774491885,214,0 +170774491934,215,0 +170774491982,215,0 +170774492032,215,0 +170774492079,215,0 +170774492127,215,0 +170774492175,214,0 +170774492223,213,0 +170774492271,214,0 +170774492319,214,0 +170774492367,214,0 +170774492416,214,0 +170774492464,214,0 +170774492512,214,0 +170774492560,214,0 +170774492608,214,0 +170774492656,215,0 +170774492704,215,0 +170774492751,215,0 +170774492801,215,0 +170774492849,215,0 +170774492897,215,0 +170774492945,215,0 +170774492992,215,0 +170774493040,214,0 +170774493088,214,0 +170774493136,214,0 +170774493185,214,0 +170774493235,214,0 +170774493283,214,0 +170774493330,214,0 +170774493378,214,0 +170774493426,215,0 +170774493474,215,0 +170774493522,215,0 +170774493570,215,0 +170774493618,215,0 +170774493666,215,0 +170774493713,215,0 +170774493761,215,0 +170774493811,215,0 +170774493859,214,0 +170774493907,214,0 +170774493954,214,0 +170774494002,214,0 +170774494052,214,0 +170774494101,214,0 +170774494149,214,0 +170774494197,215,0 +170774494245,214,0 +170774494292,215,0 +170774494340,215,0 +170774494388,215,0 +170774494436,215,0 +170774494484,215,0 +170774494532,215,0 +170774494580,215,0 +170774494628,215,0 +170774494676,214,0 +170774494724,214,0 +170774494771,214,0 +170774494819,214,0 +170774494867,214,0 +170774494915,214,0 +170774494963,214,0 +170774495010,214,0 +170774495058,215,0 +170774495106,215,0 +170774495154,215,0 +170774495202,215,0 +170774495251,215,0 +170774495299,215,0 +170774495347,215,0 +170774495395,215,0 +170774495443,215,0 +170774495491,214,0 +170774495540,214,0 +170774495588,214,0 +170774495636,214,0 +170774495685,214,0 +170774495735,214,0 +170774495784,215,0 +170774495832,214,0 +170774495881,215,0 +170774495929,215,0 +170774495979,215,0 +170774496026,215,0 +170774496074,215,0 +170774496122,215,0 +170774496170,215,0 +170774496219,215,0 +170774496267,215,0 +170774496315,214,0 +170774496363,214,0 +170774496411,214,0 +170774496459,214,0 +170774496507,214,0 +170774496554,215,0 +170774496602,215,0 +170774496650,215,0 +170774496698,215,0 +170774496746,215,0 +170774496794,215,0 +170774496841,215,0 +170774496889,215,0 +170774496937,215,0 +170774496985,215,0 +170774497033,215,0 +170774497081,215,0 +170774497130,214,0 +170774497178,214,0 +170774497228,214,0 +170774497275,214,0 +170774497323,214,0 +170774497371,214,0 +170774497419,214,0 +170774497467,215,0 +170774497515,215,0 +170774497562,215,0 +170774497610,215,0 +170774497658,215,0 +170774497706,215,0 +170774497754,215,0 +170774497803,215,0 +170774497851,215,0 +170774497899,215,0 +170774497948,214,0 +170774497996,214,0 +170774498044,214,0 +170774498092,214,0 +170774498141,214,0 +170774498191,214,0 +170774498238,214,0 +170774498286,214,0 +170774498334,214,0 +170774498382,214,0 +170774498430,215,0 +170774498478,215,0 +170774498526,215,0 +170774498574,215,0 +170774498623,215,0 +170774498671,214,0 +170774498719,215,0 +170774498766,214,0 +170774498814,214,0 +170774498862,214,0 +170774498910,214,0 +170774498959,214,0 +170774499007,214,0 +170774499055,214,0 +170774499103,215,0 +170774499151,215,0 +170774499199,215,0 +170774499247,215,0 +170774499294,215,0 +170774499342,215,0 +170774499390,215,0 +170774499438,215,0 +170774499486,215,0 +170774499535,215,0 +170774499583,214,0 +170774499631,214,0 +170774499679,214,0 +170774499726,214,0 +170774499774,215,0 +170774499822,214,0 +170774499872,214,0 +170774499919,215,0 +170774499967,215,0 +170774500017,215,0 +170774500064,215,0 +170774500114,215,0 +170774500162,215,0 +170774500209,215,0 +170774500257,215,0 +170774500305,215,0 +170774500353,215,0 +170774500401,214,0 +170774500449,214,0 +170774500496,214,0 +170774500546,214,0 +170774500595,215,0 +170774500643,215,0 +170774500691,215,0 +170774500739,215,0 +170774500787,215,0 +170774500834,215,0 +170774500882,215,0 +170774500930,215,0 +170774500978,215,0 +170774501026,215,0 +170774501075,215,0 +170774501125,215,0 +170774501172,215,0 +170774501220,214,0 +170774501270,214,0 +170774501318,214,0 +170774501365,214,0 +170774501413,214,0 +170774501463,214,0 +170774501512,214,0 +170774501560,214,0 +170774501608,215,0 +170774501656,215,0 +170774501703,215,0 +170774501751,215,0 +170774501799,215,0 +170774501847,215,0 +170774501895,215,0 +170774501943,215,0 +170774501992,215,0 +170774502040,214,0 +170774502088,214,0 +170774502136,214,0 +170774502184,214,0 +170774502232,214,0 +170774502280,214,0 +170774502329,214,0 +170774502378,214,0 +170774502426,215,0 +170774502474,215,0 +170774502522,215,0 +170774502570,215,0 +170774502617,215,0 +170774502665,215,0 +170774502713,215,0 +170774502761,215,0 +170774502809,215,0 +170774502857,214,0 +170774502904,214,0 +170774502952,214,0 +170774503000,214,0 +170774503048,214,0 +170774503097,214,0 +170774503145,214,0 +170774503193,214,0 +170774503241,214,0 +170774503289,215,0 +170774503337,214,0 +170774503384,215,0 +170774503432,215,0 +170774503480,215,0 +170774503528,215,0 +170774503576,215,0 +170774503623,215,0 +170774503673,214,0 +170774503721,214,0 +170774503770,214,0 +170774503818,214,0 +170774503866,214,0 +170774503914,214,0 +170774503962,214,0 +170774504009,214,0 +170774504059,214,0 +170774504107,215,0 +170774504154,215,0 +170774504202,215,0 +170774504250,215,0 +170774504298,215,0 +170774504346,215,0 +170774504394,215,0 +170774504441,215,0 +170774504489,214,0 +170774504537,214,0 +170774504585,214,0 +170774504633,214,0 +170774504680,214,0 +170774504728,214,0 +170774504776,214,0 +170774504824,214,0 +170774504873,215,0 +170774504921,215,0 +170774504969,215,0 +170774505017,215,0 +170774505064,215,0 +170774505112,215,0 +170774505160,215,0 +170774505208,215,0 +170774505256,215,0 +170774505305,214,0 +170774505353,214,0 +170774505401,214,0 +170774505449,214,0 +170774505497,214,0 +170774505545,214,0 +170774505592,214,0 +170774505640,214,0 +170774505690,215,0 +170774505737,215,0 +170774505785,215,0 +170774505833,215,0 +170774505881,215,0 +170774505929,215,0 +170774505977,215,0 +170774506025,215,0 +170774506072,215,0 +170774506120,214,0 +170774506168,214,0 +170774506216,214,0 +170774506264,214,0 +170774506313,214,0 +170774506361,214,0 +170774506410,215,0 +170774506458,215,0 +170774506506,214,0 +170774506554,215,0 +170774506602,215,0 +170774506649,215,0 +170774506697,215,0 +170774506745,215,0 +170774506795,215,0 +170774506842,215,0 +170774506890,215,0 +170774506938,214,0 +170774506986,214,0 +170774507034,214,0 +170774507082,214,0 +170774507129,214,0 +170774507179,214,0 +170774507227,215,0 +170774507274,215,0 +170774507322,215,0 +170774507372,215,0 +170774507421,215,0 +170774507471,215,0 +170774507520,215,0 +170774507570,215,0 +170774507619,215,0 +170774507667,215,0 +170774507715,215,0 +170774507763,214,0 +170774507811,214,0 +170774507859,214,0 +170774507908,214,0 +170774507956,214,0 +170774508006,214,0 +170774508054,214,0 +170774508103,214,0 +170774508151,215,0 +170774508201,215,0 +170774508250,215,0 +170774508300,215,0 +170774508348,215,0 +170774508396,215,0 +170774508443,215,0 +170774508493,215,0 +170774508541,215,0 +170774508591,215,0 +170774508640,214,0 +170774508688,214,0 +170774508736,215,0 +170774508786,215,0 +170774508834,215,0 +170774508882,215,0 +170774508931,215,0 +170774508979,215,0 +170774509029,215,0 +170774509076,215,0 +170774509124,215,0 +170774509172,215,0 +170774509220,215,0 +170774509268,215,0 +170774509316,215,0 +170774509364,215,0 +170774509412,214,0 +170774509460,215,0 +170774509508,215,0 +170774509558,215,0 +170774509606,215,0 +170774509654,215,0 +170774509703,215,0 +170774509751,215,0 +170774509799,215,0 +170774509848,215,0 +170774509898,215,0 +170774509946,215,0 +170774509995,215,0 +170774510043,215,0 +170774510093,215,0 +170774510141,215,0 +170774510189,215,0 +170774510238,214,0 +170774510288,214,0 +170774510337,214,0 +170774510385,215,0 +170774510433,215,0 +170774510481,215,0 +170774510530,215,0 +170774510580,215,0 +170774510629,215,0 +170774510679,215,0 +170774510728,215,0 +170774510778,215,0 +170774510826,215,0 +170774510874,215,0 +170774510923,215,0 +170774510971,215,0 +170774511019,215,0 +170774511069,214,0 +170774511118,214,0 +170774511168,214,0 +170774511216,215,0 +170774511265,215,0 +170774511313,215,0 +170774511363,215,0 +170774511412,215,0 +170774511460,215,0 +170774511508,215,0 +170774511556,215,0 +170774511606,215,0 +170774511653,215,0 +170774511703,215,0 +170774511753,215,0 +170774511800,215,0 +170774511850,214,0 +170774511899,214,0 +170774511949,214,0 +170774511999,214,0 +170774512047,215,0 +170774512094,214,0 +170774512144,215,0 +170774512192,215,0 +170774512240,215,0 +170774512288,215,0 +170774512337,215,0 +170774512387,215,0 +170774512436,215,0 +170774512484,215,0 +170774512532,215,0 +170774512580,215,0 +170774512628,215,0 +170774512678,214,0 +170774512726,214,0 +170774512774,214,0 +170774512821,214,0 +170774512871,214,0 +170774512919,214,0 +170774512968,214,0 +170774513018,214,0 +170774513067,215,0 +170774513115,215,0 +170774513163,215,0 +170774513211,215,0 +170774513261,215,0 +170774513310,215,0 +170774513360,215,0 +170774513407,215,0 +170774513456,215,0 +170774513505,214,0 +170774513555,214,0 +170774513604,214,0 +170774513652,214,0 +170774513700,214,0 +170774513748,214,0 +170774513796,214,0 +170774513844,214,0 +170774513893,215,0 +170774513943,214,0 +170774513991,215,0 +170774514039,215,0 +170774514088,215,0 +170774514136,215,0 +170774514184,215,0 +170774514233,215,0 +170774514281,215,0 +170774514329,214,0 +170774514377,214,0 +170774514427,214,0 +170774514475,214,0 +170774514522,214,0 +170774514572,214,0 +170774514621,214,0 +170774514669,214,0 +170774514719,214,0 +170774514767,215,0 +170774514816,215,0 +170774514864,215,0 +170774514912,214,0 +170774514960,215,0 +170774515008,215,0 +170774515058,214,0 +170774515106,215,0 +170774515155,213,0 +170774515203,213,0 +170774515251,213,0 +170774515299,213,0 +170774515347,214,0 +170774515395,214,0 +170774515445,214,0 +170774515493,214,0 +170774515542,214,0 +170774515590,216,0 +170774515638,215,0 +170774515686,215,0 +170774515734,215,0 +170774515783,215,0 +170774515833,215,0 +170774515882,215,0 +170774515930,215,0 +170774515978,213,0 +170774516026,213,0 +170774516074,213,0 +170774516122,213,0 +170774516170,214,0 +170774516218,214,0 +170774516266,214,0 +170774516313,214,0 +170774516361,214,0 +170774516409,214,0 +170774516457,214,0 +170774516505,214,0 +170774516553,214,0 +170774516601,214,0 +170774516648,214,0 +170774516696,214,0 +170774516744,215,0 +170774516792,214,0 +170774516840,214,0 +170774516888,213,0 +170774516937,214,0 +170774516985,214,0 +170774517033,214,0 +170774517081,214,0 +170774517128,214,0 +170774517176,214,0 +170774517226,214,0 +170774517275,214,0 +170774517323,214,0 +170774517371,215,0 +170774517419,214,0 +170774517467,215,0 +170774517515,215,0 +170774517562,215,0 +170774517610,214,0 +170774517660,213,0 +170774517708,213,0 +170774517756,214,0 +170774517804,214,0 +170774517851,214,0 +170774517901,214,0 +170774517949,214,0 +170774517998,214,0 +170774518048,214,0 +170774518097,215,0 +170774518147,214,0 +170774518196,215,0 +170774518244,215,0 +170774518292,215,0 +170774518340,215,0 +170774518388,215,0 +170774518436,214,0 +170774518484,214,0 +170774518533,214,0 +170774518581,214,0 +170774518631,214,0 +170774518679,214,0 +170774518728,214,0 +170774518776,214,0 +170774518826,215,0 +170774518875,215,0 +170774518923,215,0 +170774518971,215,0 +170774519019,215,0 +170774519067,215,0 +170774519116,215,0 +170774519164,215,0 +170774519212,215,0 +170774519260,214,0 +170774519308,214,0 +170774519355,214,0 +170774519405,214,0 +170774519453,214,0 +170774519501,215,0 +170774519550,215,0 +170774519598,215,0 +170774519646,215,0 +170774519694,215,0 +170774519741,215,0 +170774519789,215,0 +170774519837,215,0 +170774519885,215,0 +170774519935,215,0 +170774519984,215,0 +170774520032,215,0 +170774520080,214,0 +170774520129,214,0 +170774520177,214,0 +170774520225,214,0 +170774520273,215,0 +170774520322,215,0 +170774520370,215,0 +170774520420,215,0 +170774520467,215,0 +170774520515,215,0 +170774520563,215,0 +170774520611,215,0 +170774520659,215,0 +170774520707,215,0 +170774520755,215,0 +170774520804,215,0 +170774520852,215,0 +170774520900,214,0 +170774520948,215,0 +170774520998,215,0 +170774521046,215,0 +170774521093,215,0 +170774521141,215,0 +170774521189,215,0 +170774521239,215,0 +170774521287,215,0 +170774521336,215,0 +170774521384,216,0 +170774521434,215,0 +170774521481,215,0 +170774521529,215,0 +170774521577,215,0 +170774521625,215,0 +170774521674,215,0 +170774521722,215,0 +170774521772,215,0 +170774521820,215,0 +170774521869,215,0 +170774521917,215,0 +170774521965,215,0 +170774522013,215,0 +170774522061,215,0 +170774522109,215,0 +170774522158,216,0 +170774522206,215,0 +170774522254,215,0 +170774522302,215,0 +170774522350,215,0 +170774522398,215,0 +170774522445,215,0 +170774522493,215,0 +170774522541,215,0 +170774522589,215,0 +170774522637,215,0 +170774522685,215,0 +170774522733,215,0 +170774522781,215,0 +170774522828,215,0 +170774522876,215,0 +170774522924,215,0 +170774522972,215,0 +170774523020,215,0 +170774523067,215,0 +170774523115,215,0 +170774523163,215,0 +170774523211,215,0 +170774523259,215,0 +170774523307,215,0 +170774523356,215,0 +170774523404,215,0 +170774523452,215,0 +170774523500,215,0 +170774523548,215,0 +170774523596,215,0 +170774523644,215,0 +170774523691,215,0 +170774523739,215,0 +170774523787,215,0 +170774523835,215,0 +170774523883,215,0 +170774523931,215,0 +170774523980,215,0 +170774524028,215,0 +170774524076,215,0 +170774524124,215,0 +170774524172,214,0 +170774524219,214,0 +170774524269,214,0 +170774524317,214,0 +170774524365,214,0 +170774524412,214,0 +170774524460,214,0 +170774524508,214,0 +170774524558,215,0 +170774524606,215,0 +170774524653,215,0 +170774524701,215,0 +170774524751,215,0 +170774524799,215,0 +170774524846,215,0 +170774524894,215,0 +170774524942,215,0 +170774524990,213,0 +170774525038,213,0 +170774525086,214,0 +170774525134,214,0 +170774525182,213,0 +170774525229,214,0 +170774525279,214,0 +170774525327,214,0 +170774525376,214,0 +170774525426,214,0 +170774525474,215,0 +170774525521,215,0 +170774525569,215,0 +170774525619,215,0 +170774525668,215,0 +170774525716,215,0 +170774525764,215,0 +170774525812,214,0 +170774525860,214,0 +170774525907,214,0 +170774525955,214,0 +170774526003,214,0 +170774526053,214,0 +170774526100,214,0 +170774526148,214,0 +170774526196,215,0 +170774526244,215,0 +170774526292,215,0 +170774526340,215,0 +170774526388,215,0 +170774526436,215,0 +170774526485,215,0 +170774526533,215,0 +170774526583,215,0 +170774526632,214,0 +170774526680,214,0 +170774526729,214,0 +170774526777,214,0 +170774526827,214,0 +170774526875,214,0 +170774526924,214,0 +170774526972,214,0 +170774527020,214,0 +170774527070,215,0 +170774527118,215,0 +170774527166,215,0 +170774527214,215,0 +170774527263,215,0 +170774527311,215,0 +170774527361,215,0 +170774527409,215,0 +170774527457,213,0 +170774527504,213,0 +170774527554,214,0 +170774527602,214,0 +170774527649,214,0 +170774527697,214,0 +170774527745,214,0 +170774527793,214,0 +170774527841,214,0 +170774527890,214,0 +170774527938,215,0 +170774527986,215,0 +170774528034,215,0 +170774528081,215,0 +170774528129,215,0 +170774528177,215,0 +170774528227,215,0 +170774528275,213,0 +170774528324,214,0 +170774528372,214,0 +170774528420,214,0 +170774528468,214,0 +170774528516,214,0 +170774528564,214,0 +170774528613,214,0 +170774528661,215,0 +170774528709,215,0 +170774528757,214,0 +170774528805,215,0 +170774528853,215,0 +170774528900,215,0 +170774528948,215,0 +170774528996,215,0 +170774529044,215,0 +170774529092,214,0 +170774529140,214,0 +170774529189,214,0 +170774529239,214,0 +170774529286,214,0 +170774529334,214,0 +170774529382,214,0 +170774529432,214,0 +170774529480,215,0 +170774529528,214,0 +170774529577,214,0 +170774529625,215,0 +170774529673,215,0 +170774529721,215,0 +170774529769,215,0 +170774529817,215,0 +170774529864,216,0 +170774529912,214,0 +170774529960,214,0 +170774530008,214,0 +170774530056,214,0 +170774530104,214,0 +170774530152,214,0 +170774530201,214,0 +170774530251,214,0 +170774530299,214,0 +170774530348,215,0 +170774530398,215,0 +170774530446,215,0 +170774530494,215,0 +170774530543,215,0 +170774530593,215,0 +170774530641,215,0 +170774530690,215,0 +170774530740,214,0 +170774530788,214,0 +170774530836,214,0 +170774530884,214,0 +170774530931,214,0 +170774530979,214,0 +170774531027,214,0 +170774531075,214,0 +170774531123,215,0 +170774531171,215,0 +170774531219,215,0 +170774531267,215,0 +170774531317,215,0 +170774531366,215,0 +170774531414,215,0 +170774531464,215,0 +170774531512,215,0 +170774531560,214,0 +170774531609,214,0 +170774531657,214,0 +170774531707,214,0 +170774531754,214,0 +170774531802,214,0 +170774531850,215,0 +170774531900,215,0 +170774531948,215,0 +170774531996,215,0 +170774532044,215,0 +170774532093,215,0 +170774532141,215,0 +170774532189,215,0 +170774532237,215,0 +170774532285,215,0 +170774532333,215,0 +170774532383,215,0 +170774532432,214,0 +170774532480,215,0 +170774532530,215,0 +170774532578,215,0 +170774532627,215,0 +170774532675,215,0 +170774532724,215,0 +170774532774,215,0 +170774532823,215,0 +170774532871,215,0 +170774532919,215,0 +170774532967,215,0 +170774533017,215,0 +170774533066,215,0 +170774533114,215,0 +170774533162,215,0 +170774533210,215,0 +170774533258,215,0 +170774533306,215,0 +170774533354,215,0 +170774533403,215,0 +170774533452,215,0 +170774533500,215,0 +170774533548,215,0 +170774533598,215,0 +170774533647,215,0 +170774533695,215,0 +170774533743,215,0 +170774533791,215,0 +170774533841,215,0 +170774533890,215,0 +170774533938,215,0 +170774533986,215,0 +170774534034,214,0 +170774534082,214,0 +170774534130,214,0 +170774534178,214,0 +170774534226,214,0 +170774534274,214,0 +170774534321,214,0 +170774534369,214,0 +170774534419,215,0 +170774534467,215,0 +170774534516,216,0 +170774534564,215,0 +170774534612,215,0 +170774534661,215,0 +170774534711,215,0 +170774534759,215,0 +170774534807,215,0 +170774534855,214,0 +170774534904,214,0 +170774534952,214,0 +170774535000,214,0 +170774535048,214,0 +170774535096,214,0 +170774535145,214,0 +170774535195,215,0 +170774535245,215,0 +170774535293,215,0 +170774535342,215,0 +170774535390,215,0 +170774535440,215,0 +170774535489,215,0 +170774535539,215,0 +170774535587,215,0 +170774535635,215,0 +170774535684,214,0 +170774535732,214,0 +170774535780,214,0 +170774535828,214,0 +170774535876,214,0 +170774535924,214,0 +170774535973,215,0 +170774536021,215,0 +170774536071,214,0 +170774536120,215,0 +170774536168,215,0 +170774536216,215,0 +170774536264,215,0 +170774536313,215,0 +170774536363,215,0 +170774536411,215,0 +170774536459,215,0 +170774536507,214,0 +170774536555,214,0 +170774536604,214,0 +170774536652,214,0 +170774536702,214,0 +170774536750,214,0 +170774536798,214,0 +170774536846,214,0 +170774536895,214,0 +170774536944,215,0 +170774536992,215,0 +170774537040,215,0 +170774537088,215,0 +170774537137,215,0 +170774537185,215,0 +170774537235,215,0 +170774537283,215,0 +170774537331,214,0 +170774537378,214,0 +170774537428,214,0 +170774537476,214,0 +170774537524,214,0 +170774537572,214,0 +170774537620,214,0 +170774537669,214,0 +170774537718,215,0 +170774537766,215,0 +170774537814,214,0 +170774537862,215,0 +170774537912,215,0 +170774537959,215,0 +170774538009,215,0 +170774538057,215,0 +170774538105,215,0 +170774538153,214,0 +170774538200,214,0 +170774538248,214,0 +170774538296,214,0 +170774538346,214,0 +170774538395,214,0 +170774538445,214,0 +170774538494,215,0 +170774538542,215,0 +170774538590,215,0 +170774538638,215,0 +170774538686,215,0 +170774538735,215,0 +170774538783,215,0 +170774538833,215,0 +170774538881,215,0 +170774538928,215,0 +170774538976,214,0 +170774539024,214,0 +170774539074,214,0 +170774539122,214,0 +170774539170,214,0 +170774539218,214,0 +170774539267,214,0 +170774539315,214,0 +170774539363,214,0 +170774539413,214,0 +170774539462,215,0 +170774539510,215,0 +170774539558,215,0 +170774539608,215,0 +170774539656,215,0 +170774539703,215,0 +170774539753,215,0 +170774539801,214,0 +170774539850,214,0 +170774539900,214,0 +170774539949,214,0 +170774539999,214,0 +170774540047,214,0 +170774540096,214,0 +170774540146,215,0 +170774540194,215,0 +170774540242,215,0 +170774540291,215,0 +170774540339,215,0 +170774540387,215,0 +170774540435,215,0 +170774540483,215,0 +170774540530,215,0 +170774540578,215,0 +170774540626,214,0 +170774540674,214,0 +170774540722,214,0 +170774540770,214,0 +170774540819,214,0 +170774540867,214,0 +170774540917,215,0 +170774540966,215,0 +170774541016,215,0 +170774541065,215,0 +170774541113,215,0 +170774541161,215,0 +170774541209,215,0 +170774541259,215,0 +170774541308,215,0 +170774541356,215,0 +170774541404,215,0 +170774541453,214,0 +170774541501,214,0 +170774541549,214,0 +170774541597,214,0 +170774541645,214,0 +170774541693,214,0 +170774541741,214,0 +170774541789,214,0 +170774541839,215,0 +170774541886,215,0 +170774541934,215,0 +170774541982,215,0 +170774542030,215,0 +170774542080,215,0 +170774542128,215,0 +170774542175,215,0 +170774542223,215,0 +170774542273,214,0 +170774542322,214,0 +170774542370,214,0 +170774542418,214,0 +170774542466,214,0 +170774542514,214,0 +170774542562,215,0 +170774542610,215,0 +170774542658,215,0 +170774542706,215,0 +170774542754,215,0 +170774542802,215,0 +170774542850,215,0 +170774542898,215,0 +170774542947,215,0 +170774542995,215,0 +170774543045,215,0 +170774543094,214,0 +170774543144,214,0 +170774543193,214,0 +170774543241,214,0 +170774543289,215,0 +170774543338,214,0 +170774543386,214,0 +170774543434,214,0 +170774543484,215,0 +170774543533,215,0 +170774543581,215,0 +170774543629,215,0 +170774543678,215,0 +170774543726,216,0 +170774543776,215,0 +170774543824,215,0 +170774543872,215,0 +170774543919,214,0 +170774543967,214,0 +170774544015,214,0 +170774544063,214,0 +170774544113,214,0 +170774544161,214,0 +170774544209,214,0 +170774544257,214,0 +170774544305,215,0 +170774544354,215,0 +170774544404,215,0 +170774544452,215,0 +170774544499,215,0 +170774544547,215,0 +170774544595,215,0 +170774544643,214,0 +170774544693,214,0 +170774544740,214,0 +170774544788,213,0 +170774544836,214,0 +170774544884,214,0 +170774544932,214,0 +170774544980,214,0 +170774545028,214,0 +170774545077,214,0 +170774545125,215,0 +170774545173,215,0 +170774545221,215,0 +170774545269,215,0 +170774545317,215,0 +170774545365,215,0 +170774545414,215,0 +170774545464,215,0 +170774545512,215,0 +170774545559,214,0 +170774545609,214,0 +170774545657,214,0 +170774545705,214,0 +170774545753,214,0 +170774545801,214,0 +170774545848,214,0 +170774545896,214,0 +170774545944,215,0 +170774545992,215,0 +170774546040,215,0 +170774546090,215,0 +170774546138,215,0 +170774546185,215,0 +170774546233,215,0 +170774546281,215,0 +170774546331,215,0 +170774546379,215,0 +170774546428,214,0 +170774546478,214,0 +170774546525,214,0 +170774546575,214,0 +170774546625,214,0 +170774546673,215,0 +170774546720,215,0 +170774546768,215,0 +170774546818,215,0 +170774546866,215,0 +170774546914,215,0 +170774546962,216,0 +170774547010,215,0 +170774547058,215,0 +170774547107,215,0 +170774547157,215,0 +170774547206,216,0 +170774547256,214,0 +170774547304,214,0 +170774547352,214,0 +170774547400,214,0 +170774547447,214,0 +170774547495,214,0 +170774547543,214,0 +170774547591,214,0 +170774547639,215,0 +170774547689,215,0 +170774547737,215,0 +170774547784,215,0 +170774547832,215,0 +170774547880,215,0 +170774547928,215,0 +170774547976,215,0 +170774548026,215,0 +170774548075,214,0 +170774548123,214,0 +170774548172,214,0 +170774548220,214,0 +170774548268,214,0 +170774548318,215,0 +170774548366,215,0 +170774548414,215,0 +170774548462,215,0 +170774548510,215,0 +170774548559,215,0 +170774548607,215,0 +170774548655,215,0 +170774548705,215,0 +170774548753,215,0 +170774548801,215,0 +170774548850,215,0 +170774548900,214,0 +170774548947,214,0 +170774548995,214,0 +170774549043,214,0 +170774549091,214,0 +170774549141,214,0 +170774549190,215,0 +170774549238,215,0 +170774549286,215,0 +170774549336,215,0 +170774549384,215,0 +170774549433,215,0 +170774549481,215,0 +170774549529,215,0 +170774549579,215,0 +170774549628,215,0 +170774549676,215,0 +170774549724,214,0 +170774549774,214,0 +170774549822,214,0 +170774549871,214,0 +170774549919,214,0 +170774549969,214,0 +170774550018,215,0 +170774550068,214,0 +170774550116,215,0 +170774550165,215,0 +170774550213,215,0 +170774550261,215,0 +170774550309,215,0 +170774550359,215,0 +170774550408,215,0 +170774550456,215,0 +170774550506,215,0 +170774550553,214,0 +170774550601,214,0 +170774550649,214,0 +170774550699,214,0 +170774550748,214,0 +170774550796,214,0 +170774550844,214,0 +170774550892,214,0 +170774550942,214,0 +170774550990,215,0 +170774551039,214,0 +170774551089,215,0 +170774551137,215,0 +170774551185,215,0 +170774551234,215,0 +170774551282,215,0 +170774551330,215,0 +170774551378,214,0 +170774551426,214,0 +170774551474,214,0 +170774551522,214,0 +170774551571,214,0 +170774551619,214,0 +170774551667,214,0 +170774551715,214,0 +170774551763,215,0 +170774551811,214,0 +170774551860,215,0 +170774551910,215,0 +170774551958,215,0 +170774552007,215,0 +170774552055,215,0 +170774552105,215,0 +170774552153,214,0 +170774552201,214,0 +170774552250,214,0 +170774552300,214,0 +170774552347,214,0 +170774552395,214,0 +170774552443,214,0 +170774552491,214,0 +170774552539,215,0 +170774552587,215,0 +170774552635,215,0 +170774552682,215,0 +170774552730,215,0 +170774552778,215,0 +170774552826,215,0 +170774552874,215,0 +170774552922,215,0 +170774552970,215,0 +170774553019,214,0 +170774553069,214,0 +170774553118,214,0 +170774553166,214,0 +170774553214,214,0 +170774553264,215,0 +170774553312,215,0 +170774553361,215,0 +170774553409,215,0 +170774553457,215,0 +170774553505,215,0 +170774553553,215,0 +170774553601,215,0 +170774553649,215,0 +170774553697,215,0 +170774553745,215,0 +170774553793,215,0 +170774553841,214,0 +170774553890,214,0 +170774553940,214,0 +170774553988,214,0 +170774554036,214,0 +170774554084,214,0 +170774554131,214,0 +170774554179,214,0 +170774554227,215,0 +170774554277,215,0 +170774554326,215,0 +170774554374,215,0 +170774554422,215,0 +170774554470,215,0 +170774554520,215,0 +170774554569,215,0 +170774554619,215,0 +170774554668,214,0 +170774554716,214,0 +170774554765,214,0 +170774554813,214,0 +170774554861,214,0 +170774554909,214,0 +170774554957,214,0 +170774555005,214,0 +170774555053,215,0 +170774555101,215,0 +170774555149,215,0 +170774555197,215,0 +170774555245,215,0 +170774555293,215,0 +170774555341,215,0 +170774555389,215,0 +170774555437,215,0 +170774555484,214,0 +170774555532,214,0 +170774555582,214,0 +170774555629,214,0 +170774555677,214,0 +170774555725,214,0 +170774555773,214,0 +170774555821,215,0 +170774555869,215,0 +170774555917,215,0 +170774555964,215,0 +170774556012,215,0 +170774556060,215,0 +170774556108,215,0 +170774556158,215,0 +170774556206,215,0 +170774556253,215,0 +170774556301,214,0 +170774556349,214,0 +170774556397,214,0 +170774556447,214,0 +170774556494,214,0 +170774556542,214,0 +170774556590,214,0 +170774556638,214,0 +170774556686,215,0 +170774556733,215,0 +170774556781,215,0 +170774556829,215,0 +170774556878,215,0 +170774556926,215,0 +170774556974,215,0 +170774557022,215,0 +170774557070,215,0 +170774557119,215,0 +170774557167,213,0 +170774557215,213,0 +170774557263,214,0 +170774557310,214,0 +170774557358,214,0 +170774557406,214,0 +170774557454,214,0 +170774557502,214,0 +170774557551,214,0 +170774557599,215,0 +170774557647,215,0 +170774557697,215,0 +170774557746,215,0 +170774557794,216,0 +170774557842,215,0 +170774557889,215,0 +170774557937,214,0 +170774557985,214,0 +170774558033,214,0 +170774558083,214,0 +170774558131,214,0 +170774558180,214,0 +170774558230,214,0 +170774558277,214,0 +170774558327,214,0 +170774558377,215,0 +170774558425,215,0 +170774558473,215,0 +170774558522,215,0 +170774558572,215,0 +170774558620,215,0 +170774558668,215,0 +170774558717,215,0 +170774558765,215,0 +170774558813,214,0 +170774558861,214,0 +170774558910,214,0 +170774558958,214,0 +170774559008,214,0 +170774559056,214,0 +170774559105,214,0 +170774559155,214,0 +170774559203,215,0 +170774559251,214,0 +170774559299,215,0 +170774559349,215,0 +170774559396,215,0 +170774559445,215,0 +170774559492,215,0 +170774559542,215,0 +170774559590,215,0 +170774559638,213,0 +170774559687,213,0 +170774559735,214,0 +170774559783,214,0 +170774559833,214,0 +170774559881,214,0 +170774559930,214,0 +170774559978,214,0 +170774560026,214,0 +170774560074,214,0 +170774560122,215,0 +170774560172,215,0 +170774560219,215,0 +170774560269,215,0 +170774560319,215,0 +170774560368,215,0 +170774560416,215,0 +170774560466,214,0 +170774560515,214,0 +170774560565,214,0 +170774560614,214,0 +170774560662,214,0 +170774560710,214,0 +170774560760,214,0 +170774560809,214,0 +170774560857,215,0 +170774560905,215,0 +170774560955,215,0 +170774561003,215,0 +170774561051,215,0 +170774561099,215,0 +170774561146,215,0 +170774561194,215,0 +170774561242,215,0 +170774561290,214,0 +170774561340,214,0 +170774561388,214,0 +170774561437,214,0 +170774561487,214,0 +170774561536,214,0 +170774561584,214,0 +170774561634,214,0 +170774561682,215,0 +170774561731,215,0 +170774561781,215,0 +170774561830,215,0 +170774561878,215,0 +170774561926,215,0 +170774561974,215,0 +170774562022,215,0 +170774562072,215,0 +170774562120,214,0 +170774562168,214,0 +170774562216,214,0 +170774562264,214,0 +170774562312,214,0 +170774562361,214,0 +170774562411,215,0 +170774562460,215,0 +170774562508,215,0 +170774562558,215,0 +170774562607,215,0 +170774562657,215,0 +170774562705,215,0 +170774562753,215,0 +170774562801,215,0 +170774562850,215,0 +170774562898,215,0 +170774562947,214,0 +170774562995,214,0 +170774563043,214,0 +170774563091,214,0 +170774563139,215,0 +170774563189,214,0 +170774563238,215,0 +170774563288,215,0 +170774563337,215,0 +170774563387,215,0 +170774563436,215,0 +170774563484,215,0 +170774563532,215,0 +170774563582,215,0 +170774563630,215,0 +170774563678,215,0 +170774563727,215,0 +170774563775,214,0 +170774563823,214,0 +170774563871,214,0 +170774563919,214,0 +170774563967,214,0 +170774564015,214,0 +170774564064,215,0 +170774564112,215,0 +170774564160,215,0 +170774564208,215,0 +170774564256,215,0 +170774564304,215,0 +170774564352,215,0 +170774564401,215,0 +170774564449,215,0 +170774564497,215,0 +170774564547,215,0 +170774564596,214,0 +170774564646,214,0 +170774564694,214,0 +170774564743,214,0 +170774564791,214,0 +170774564839,214,0 +170774564887,214,0 +170774564935,214,0 +170774564983,215,0 +170774565031,215,0 +170774565079,214,0 +170774565127,215,0 +170774565175,215,0 +170774565224,215,0 +170774565272,215,0 +170774565320,215,0 +170774565370,215,0 +170774565419,214,0 +170774565469,214,0 +170774565517,214,0 +170774565566,214,0 +170774565614,214,0 +170774565662,215,0 +170774565711,215,0 +170774565760,215,0 +170774565807,215,0 +170774565856,215,0 +170774565903,215,0 +170774565953,215,0 +170774566001,215,0 +170774566049,215,0 +170774566097,215,0 +170774566146,215,0 +170774566194,215,0 +170774566244,214,0 +170774566292,214,0 +170774566340,214,0 +170774566388,214,0 +170774566436,214,0 +170774566484,214,0 +170774566532,214,0 +170774566581,214,0 +170774566629,215,0 +170774566677,215,0 +170774566725,215,0 +170774566774,215,0 +170774566822,215,0 +170774566870,215,0 +170774566920,215,0 +170774566968,215,0 +170774567017,215,0 +170774567067,214,0 +170774567115,214,0 +170774567164,214,0 +170774567214,214,0 +170774567262,214,0 +170774567310,214,0 +170774567358,214,0 +170774567407,214,0 +170774567455,215,0 +170774567503,215,0 +170774567552,215,0 +170774567600,215,0 +170774567650,215,0 +170774567698,215,0 +170774567746,215,0 +170774567793,215,0 +170774567841,215,0 +170774567889,214,0 +170774567937,213,0 +170774567985,214,0 +170774568033,214,0 +170774568083,214,0 +170774568131,214,0 +170774568179,214,0 +170774568228,214,0 +170774568278,214,0 +170774568326,215,0 +170774568374,215,0 +170774568423,215,0 +170774568473,215,0 +170774568521,215,0 +170774568569,215,0 +170774568618,215,0 +170774568666,215,0 +170774568714,214,0 +170774568762,214,0 +170774568810,214,0 +170774568859,214,0 +170774568909,214,0 +170774568957,214,0 +170774569006,214,0 +170774569054,214,0 +170774569104,214,0 +170774569152,214,0 +170774569200,215,0 +170774569248,214,0 +170774569296,215,0 +170774569345,215,0 +170774569393,215,0 +170774569441,215,0 +170774569490,215,0 +170774569538,214,0 +170774569588,213,0 +170774569636,213,0 +170774569684,213,0 +170774569732,213,0 +170774569780,214,0 +170774569828,214,0 +170774569877,214,0 +170774569925,214,0 +170774569974,214,0 +170774570022,214,0 +170774570070,214,0 +170774570120,214,0 +170774570168,214,0 +170774570217,214,0 +170774570267,215,0 +170774570316,215,0 +170774570364,214,0 +170774570412,213,0 +170774570460,213,0 +170774570510,213,0 +170774570558,214,0 +170774570607,213,0 +170774570655,214,0 +170774570703,214,0 +170774570751,214,0 +170774570799,214,0 +170774570848,214,0 +170774570898,214,0 +170774570946,214,0 +170774570994,214,0 +170774571042,215,0 +170774571090,215,0 +170774571139,215,0 +170774571187,214,0 +170774571236,213,0 +170774571284,213,0 +170774571334,213,0 +170774571382,214,0 +170774571431,214,0 +170774571481,214,0 +170774571529,214,0 +170774571578,214,0 +170774571626,214,0 +170774571674,214,0 +170774571724,214,0 +170774571773,214,0 +170774571821,215,0 +170774571871,215,0 +170774571919,215,0 +170774571967,215,0 +170774572014,214,0 +170774572062,214,0 +170774572110,214,0 +170774572160,214,0 +170774572209,214,0 +170774572257,215,0 +170774572305,215,0 +170774572353,215,0 +170774572401,215,0 +170774572449,215,0 +170774572498,215,0 +170774572546,215,0 +170774572594,215,0 +170774572644,215,0 +170774572693,215,0 +170774572743,215,0 +170774572792,215,0 +170774572842,214,0 +170774572891,214,0 +170774572939,214,0 +170774572987,214,0 +170774573037,215,0 +170774573085,214,0 +170774573134,215,0 +170774573183,215,0 +170774573233,215,0 +170774573281,215,0 +170774573331,215,0 +170774573378,215,0 +170774573426,215,0 +170774573474,215,0 +170774573522,215,0 +170774573570,215,0 +170774573620,215,0 +170774573669,214,0 +170774573719,215,0 +170774573768,214,0 +170774573816,214,0 +170774573864,214,0 +170774573912,214,0 +170774573960,215,0 +170774574008,215,0 +170774574056,215,0 +170774574105,215,0 +170774574155,215,0 +170774574204,215,0 +170774574252,215,0 +170774574302,215,0 +170774574351,215,0 +170774574399,215,0 +170774574447,215,0 +170774574495,214,0 +170774574543,214,0 +170774574593,214,0 +170774574642,214,0 +170774574690,214,0 +170774574738,214,0 +170774574786,215,0 +170774574834,215,0 +170774574884,215,0 +170774574931,215,0 +170774574979,215,0 +170774575027,215,0 +170774575077,215,0 +170774575125,215,0 +170774575173,215,0 +170774575222,215,0 +170774575270,215,0 +170774575320,214,0 +170774575368,213,0 +170774575416,214,0 +170774575463,214,0 +170774575513,214,0 +170774575563,214,0 +170774575611,214,0 +170774575658,214,0 +170774575706,215,0 +170774575756,215,0 +170774575804,215,0 +170774575853,215,0 +170774575903,215,0 +170774575951,215,0 +170774575999,215,0 +170774576047,215,0 +170774576096,215,0 +170774576146,215,0 +170774576195,215,0 +170774576243,215,0 +170774576293,215,0 +170774576341,215,0 +170774576390,215,0 +170774576438,215,0 +170774576488,215,0 +170774576536,215,0 +170774576584,214,0 +170774576632,214,0 +170774576681,214,0 +170774576731,214,0 +170774576780,214,0 +170774576830,214,0 +170774576877,215,0 +170774576927,215,0 +170774576975,215,0 +170774577023,215,0 +170774577071,215,0 +170774577119,215,0 +170774577167,215,0 +170774577216,215,0 +170774577264,215,0 +170774577313,215,0 +170774577363,214,0 +170774577411,214,0 +170774577460,214,0 +170774577508,214,0 +170774577556,214,0 +170774577606,214,0 +170774577655,214,0 +170774577703,214,0 +170774577751,215,0 +170774577801,214,0 +170774577849,215,0 +170774577898,215,0 +170774577946,215,0 +170774577994,215,0 +170774578042,215,0 +170774578090,215,0 +170774578138,215,0 +170774578186,214,0 +170774578234,213,0 +170774578282,214,0 +170774578331,214,0 +170774578379,214,0 +170774578427,214,0 +170774578477,214,0 +170774578525,214,0 +170774578573,214,0 +170774578621,214,0 +170774578669,215,0 +170774578717,215,0 +170774578764,215,0 +170774578812,215,0 +170774578860,215,0 +170774578908,215,0 +170774578958,215,0 +170774579007,214,0 +170774579055,213,0 +170774579105,213,0 +170774579154,214,0 +170774579202,213,0 +170774579250,213,0 +170774579300,214,0 +170774579349,214,0 +170774579397,214,0 +170774579445,214,0 +170774579493,214,0 +170774579540,214,0 +170774579588,214,0 +170774579636,215,0 +170774579686,215,0 +170774579735,215,0 +170774579783,214,0 +170774579831,214,0 +170774579879,214,0 +170774579927,214,0 +170774579975,213,0 +170774580023,214,0 +170774580071,214,0 +170774580119,214,0 +170774580167,214,0 +170774580215,214,0 +170774580262,214,0 +170774580312,215,0 +170774580362,215,0 +170774580411,215,0 +170774580459,215,0 +170774580507,215,0 +170774580555,215,0 +170774580604,215,0 +170774580654,214,0 +170774580702,214,0 +170774580750,214,0 +170774580798,214,0 +170774580847,214,0 +170774580895,214,0 +170774580943,214,0 +170774580991,214,0 +170774581039,214,0 +170774581087,214,0 +170774581135,214,0 +170774581184,215,0 +170774581232,215,0 +170774581280,215,0 +170774581328,215,0 +170774581378,215,0 +170774581426,215,0 +170774581474,214,0 +170774581522,214,0 +170774581569,213,0 +170774581617,214,0 +170774581665,214,0 +170774581713,214,0 +170774581761,214,0 +170774581809,214,0 +170774581857,214,0 +170774581905,215,0 +170774581954,214,0 +170774582004,215,0 +170774582052,215,0 +170774582100,215,0 +170774582148,215,0 +170774582196,215,0 +170774582244,215,0 +170774582292,214,0 +170774582340,213,0 +170774582389,213,0 +170774582439,213,0 +170774582487,214,0 +170774582535,214,0 +170774582582,214,0 +170774582630,214,0 +170774582680,214,0 +170774582728,214,0 +170774582777,214,0 +170774582825,214,0 +170774582873,214,0 +170774582923,215,0 +170774582971,215,0 +170774583019,215,0 +170774583067,215,0 +170774583115,214,0 +170774583164,214,0 +170774583212,214,0 +170774583260,214,0 +170774583310,214,0 +170774583359,215,0 +170774583407,214,0 +170774583455,215,0 +170774583503,214,0 +170774583552,215,0 +170774583600,215,0 +170774583648,215,0 +170774583696,215,0 +170774583744,215,0 +170774583792,215,0 +170774583840,215,0 +170774583888,215,0 +170774583936,214,0 +170774583984,214,0 +170774584033,214,0 +170774584081,214,0 +170774584131,214,0 +170774584180,214,0 +170774584230,214,0 +170774584278,214,0 +170774584326,214,0 +170774584375,215,0 +170774584423,214,0 +170774584473,215,0 +170774584522,215,0 +170774584570,215,0 +170774584618,215,0 +170774584667,215,0 +170774584717,215,0 +170774584765,214,0 +170774584814,214,0 +170774584862,214,0 +170774584912,214,0 +170774584960,214,0 +170774585008,214,0 +170774585055,214,0 +170774585103,214,0 +170774585151,214,0 +170774585199,215,0 +170774585249,215,0 +170774585298,215,0 +170774585346,215,0 +170774585396,215,0 +170774585444,215,0 +170774585492,215,0 +170774585541,215,0 +170774585591,214,0 +170774585640,214,0 +170774585688,214,0 +170774585738,214,0 +170774585785,215,0 +170774585833,215,0 +170774585883,215,0 +170774585931,215,0 +170774585980,215,0 +170774586030,215,0 +170774586079,215,0 +170774586129,215,0 +170774586178,215,0 +170774586226,215,0 +170774586276,215,0 +170774586324,215,0 +170774586373,214,0 +170774586423,214,0 +170774586471,214,0 +170774586519,214,0 +170774586566,214,0 +170774586614,214,0 +170774586664,215,0 +170774586712,215,0 +170774586760,215,0 +170774586807,215,0 +170774586857,215,0 +170774586905,215,0 +170774586952,215,0 +170774587000,215,0 +170774587048,215,0 +170774587096,215,0 +170774587144,215,0 +170774587192,214,0 +170774587241,214,0 +170774587289,214,0 +170774587339,214,0 +170774587386,214,0 +170774587434,214,0 +170774587482,214,0 +170774587530,214,0 +170774587578,214,0 +170774587628,214,0 +170774587677,214,0 +170774587725,215,0 +170774587774,215,0 +170774587822,215,0 +170774587872,215,0 +170774587920,215,0 +170774587969,215,0 +170774588019,214,0 +170774588068,214,0 +170774588116,214,0 +170774588164,214,0 +170774588214,214,0 +170774588263,214,0 +170774588311,214,0 +170774588359,215,0 +170774588407,214,0 +170774588455,214,0 +170774588503,215,0 +170774588551,215,0 +170774588601,215,0 +170774588650,215,0 +170774588700,215,0 +170774588749,215,0 +170774588797,215,0 +170774588845,214,0 +170774588895,214,0 +170774588944,214,0 +170774588994,214,0 +170774589042,214,0 +170774589091,214,0 +170774589141,214,0 +170774589190,214,0 +170774589238,215,0 +170774589288,215,0 +170774589337,215,0 +170774589387,215,0 +170774589435,215,0 +170774589484,215,0 +170774589534,215,0 +170774589583,215,0 +170774589631,215,0 +170774589679,214,0 +170774589729,214,0 +170774589777,214,0 +170774589825,214,0 +170774589873,214,0 +170774589921,214,0 +170774589969,215,0 +170774590018,215,0 +170774590066,215,0 +170774590114,215,0 +170774590161,215,0 +170774590209,215,0 +170774590259,215,0 +170774590307,215,0 +170774590354,215,0 +170774590402,215,0 +170774590450,214,0 +170774590498,214,0 +170774590546,214,0 +170774590594,214,0 +170774590642,214,0 +170774590690,214,0 +170774590737,214,0 +170774590785,215,0 +170774590834,215,0 +170774590883,215,0 +170774590931,215,0 +170774590981,215,0 +170774591030,215,0 +170774591080,215,0 +170774591129,215,0 +170774591179,215,0 +170774591227,215,0 +170774591275,215,0 +170774591323,214,0 +170774591371,214,0 +170774591420,214,0 +170774591468,214,0 +170774591516,214,0 +170774591566,214,0 +170774591615,214,0 +170774591663,215,0 +170774591711,215,0 +170774591759,215,0 +170774591808,215,0 +170774591856,215,0 +170774591904,215,0 +170774591952,215,0 +170774592002,215,0 +170774592050,215,0 +170774592099,214,0 +170774592147,214,0 +170774592195,214,0 +170774592243,214,0 +170774592293,214,0 +170774592341,214,0 +170774592389,214,0 +170774592437,215,0 +170774592485,214,0 +170774592535,215,0 +170774592583,215,0 +170774592631,215,0 +170774592678,215,0 +170774592726,215,0 +170774592774,215,0 +170774592822,215,0 +170774592872,215,0 +170774592920,214,0 +170774592968,214,0 +170774593017,214,0 +170774593065,214,0 +170774593115,214,0 +170774593163,214,0 +170774593211,214,0 +170774593259,214,0 +170774593308,214,0 +170774593356,215,0 +170774593405,215,0 +170774593453,215,0 +170774593501,215,0 +170774593551,215,0 +170774593600,215,0 +170774593650,215,0 +170774593698,215,0 +170774593747,214,0 +170774593795,214,0 +170774593845,214,0 +170774593894,214,0 +170774593942,214,0 +170774593990,214,0 +170774594038,215,0 +170774594088,215,0 +170774594135,215,0 +170774594185,215,0 +170774594235,215,0 +170774594282,215,0 +170774594332,215,0 +170774594380,215,0 +170774594428,215,0 +170774594477,215,0 +170774594527,215,0 +170774594576,214,0 +170774594624,214,0 +170774594672,214,0 +170774594722,214,0 +170774594772,214,0 +170774594819,214,0 +170774594867,214,0 +170774594915,214,0 +170774594963,215,0 +170774595011,215,0 +170774595059,215,0 +170774595109,215,0 +170774595159,215,0 +170774595208,215,0 +170774595256,215,0 +170774595304,215,0 +170774595352,214,0 +170774595400,214,0 +170774595448,213,0 +170774595496,214,0 +170774595544,214,0 +170774595593,214,0 +170774595641,214,0 +170774595691,214,0 +170774595740,214,0 +170774595788,214,0 +170774595838,215,0 +170774595887,215,0 +170774595935,215,0 +170774595985,215,0 +170774596034,215,0 +170774596082,215,0 +170774596132,215,0 +170774596181,215,0 +170774596231,213,0 +170774596280,213,0 +170774596328,214,0 +170774596378,214,0 +170774596427,214,0 +170774596477,214,0 +170774596526,214,0 +170774596576,214,0 +170774596624,215,0 +170774596672,215,0 +170774596721,215,0 +170774596771,215,0 +170774596819,215,0 +170774596867,215,0 +170774596915,215,0 +170774596963,215,0 +170774597010,214,0 +170774597058,213,0 +170774597108,213,0 +170774597156,214,0 +170774597204,214,0 +170774597253,214,0 +170774597301,214,0 +170774597349,214,0 +170774597399,214,0 +170774597447,214,0 +170774597495,214,0 +170774597542,214,0 +170774597590,215,0 +170774597638,215,0 +170774597688,215,0 +170774597736,215,0 +170774597784,215,0 +170774597833,214,0 +170774597881,213,0 +170774597931,213,0 +170774597980,214,0 +170774598028,214,0 +170774598076,214,0 +170774598124,214,0 +170774598172,214,0 +170774598221,214,0 +170774598271,214,0 +170774598320,214,0 +170774598368,214,0 +170774598416,215,0 +170774598464,215,0 +170774598512,215,0 +170774598560,215,0 +170774598610,215,0 +170774598658,214,0 +170774598706,213,0 +170774598753,214,0 +170774598801,214,0 +170774598851,214,0 +170774598901,214,0 +170774598948,214,0 +170774598997,214,0 +170774599044,214,0 +170774599092,214,0 +170774599142,215,0 +170774599190,215,0 +170774599238,215,0 +170774599286,215,0 +170774599333,215,0 +170774599381,215,0 +170774599431,214,0 +170774599480,214,0 +170774599530,213,0 +170774599578,214,0 +170774599626,214,0 +170774599675,214,0 +170774599725,214,0 +170774599772,214,0 +170774599820,214,0 +170774599868,215,0 +170774599918,215,0 +170774599967,215,0 +170774600015,215,0 +170774600065,215,0 +170774600113,215,0 +170774600162,215,0 +170774600210,215,0 +170774600260,215,0 +170774600308,214,0 +170774600356,214,0 +170774600404,214,0 +170774600452,214,0 +170774600500,214,0 +170774600547,214,0 +170774600597,214,0 +170774600645,215,0 +170774600693,215,0 +170774600740,215,0 +170774600788,215,0 +170774600836,215,0 +170774600884,215,0 +170774600932,215,0 +170774600980,215,0 +170774601027,215,0 +170774601075,215,0 +170774601123,214,0 +170774601171,214,0 +170774601220,214,0 +170774601268,214,0 +170774601318,214,0 +170774601366,215,0 +170774601415,214,0 +170774601463,215,0 +170774601511,215,0 +170774601561,215,0 +170774601609,215,0 +170774601657,215,0 +170774601705,215,0 +170774601754,215,0 +170774601804,215,0 +170774601852,215,0 +170774601900,215,0 +170774601947,214,0 +170774601995,214,0 +170774602043,214,0 +170774602091,214,0 +170774602139,214,0 +170774602187,215,0 +170774602234,215,0 +170774602282,214,0 +170774602330,215,0 +170774602378,215,0 +170774602427,215,0 +170774602477,215,0 +170774602525,215,0 +170774602574,215,0 +170774602622,215,0 +170774602670,215,0 +170774602718,215,0 +170774602767,214,0 +170774602815,213,0 +170774602865,213,0 +170774602913,214,0 +170774602961,214,0 +170774603010,214,0 +170774603058,214,0 +170774603106,214,0 +170774603154,214,0 +170774603202,215,0 +170774603250,215,0 +170774603298,215,0 +170774603346,215,0 +170774603393,215,0 +170774603441,215,0 +170774603491,215,0 +170774603539,214,0 +170774603587,214,0 +170774603635,214,0 +170774603684,214,0 +170774603732,214,0 +170774603780,214,0 +170774603830,214,0 +170774603879,214,0 +170774603929,214,0 +170774603976,214,0 +170774604024,214,0 +170774604074,215,0 +170774604123,215,0 +170774604171,215,0 +170774604221,215,0 +170774604269,215,0 +170774604317,215,0 +170774604365,215,0 +170774604413,214,0 +170774604462,214,0 +170774604511,214,0 +170774604559,214,0 +170774604607,214,0 +170774604655,214,0 +170774604703,214,0 +170774604753,214,0 +170774604800,214,0 +170774604850,215,0 +170774604899,215,0 +170774604947,215,0 +170774604995,215,0 +170774605043,215,0 +170774605093,215,0 +170774605141,215,0 +170774605188,215,0 +170774605236,214,0 +170774605286,214,0 +170774605335,214,0 +170774605383,214,0 +170774605431,214,0 +170774605479,214,0 +170774605527,214,0 +170774605575,215,0 +170774605623,215,0 +170774605672,215,0 +170774605720,215,0 +170774605770,215,0 +170774605818,215,0 +170774605866,215,0 +170774605915,215,0 +170774605965,215,0 +170774606012,215,0 +170774606062,214,0 +170774606110,214,0 +170774606158,214,0 +170774606206,214,0 +170774606255,214,0 +170774606303,214,0 +170774606351,214,0 +170774606401,215,0 +170774606449,215,0 +170774606497,215,0 +170774606546,215,0 +170774606594,216,0 +170774606642,215,0 +170774606690,215,0 +170774606740,215,0 +170774606789,215,0 +170774606837,215,0 +170774606887,214,0 +170774606934,214,0 +170774606984,214,0 +170774607033,214,0 +170774607083,214,0 +170774607133,214,0 +170774607182,215,0 +170774607232,215,0 +170774607280,215,0 +170774607328,215,0 +170774607375,215,0 +170774607425,215,0 +170774607473,215,0 +170774607522,215,0 +170774607572,215,0 +170774607620,215,0 +170774607668,215,0 +170774607716,214,0 +170774607765,214,0 +170774607815,214,0 +170774607864,214,0 +170774607912,214,0 +170774607960,214,0 +170774608008,214,0 +170774608058,215,0 +170774608106,215,0 +170774608153,215,0 +170774608201,215,0 +170774608251,215,0 +170774608299,215,0 +170774608349,215,0 +170774608398,215,0 +170774608448,215,0 +170774608495,214,0 +170774608545,213,0 +170774608595,214,0 +170774608644,214,0 +170774608692,214,0 +170774608740,214,0 +170774608788,214,0 +170774608836,214,0 +170774608885,215,0 +170774608933,214,0 +170774608981,214,0 +170774609031,215,0 +170774609079,215,0 +170774609128,215,0 +170774609178,215,0 +170774609227,215,0 +170774609277,215,0 +170774609325,214,0 +170774609374,214,0 +170774609422,213,0 +170774609470,214,0 +170774609520,214,0 +170774609569,214,0 +170774609617,214,0 +170774609665,214,0 +170774609714,214,0 +170774609764,215,0 +170774609813,215,0 +170774609861,215,0 +170774609909,215,0 +170774609957,215,0 +170774610007,215,0 +170774610055,215,0 +170774610103,215,0 +170774610151,214,0 +170774610199,213,0 +170774610246,213,0 +170774610296,214,0 +170774610344,214,0 +170774610393,214,0 +170774610441,214,0 +170774610489,214,0 +170774610539,214,0 +170774610588,215,0 +170774610636,215,0 +170774610684,215,0 +170774610732,215,0 +170774610780,215,0 +170774610828,215,0 +170774610876,215,0 +170774610924,215,0 +170774610972,213,0 +170774611021,214,0 +170774611071,214,0 +170774611120,214,0 +170774611168,214,0 +170774611218,214,0 +170774611265,214,0 +170774611315,214,0 +170774611364,214,0 +170774611412,214,0 +170774611460,215,0 +170774611508,215,0 +170774611558,215,0 +170774611605,215,0 +170774611653,215,0 +170774611701,215,0 +170774611751,215,0 +170774611799,214,0 +170774611848,214,0 +170774611896,214,0 +170774611944,214,0 +170774611993,214,0 +170774612043,214,0 +170774612092,214,0 +170774612142,215,0 +170774612190,215,0 +170774612238,215,0 +170774612287,215,0 +170774612335,215,0 +170774612383,215,0 +170774612433,215,0 +170774612482,215,0 +170774612531,215,0 +170774612579,215,0 +170774612627,214,0 +170774612677,214,0 +170774612725,214,0 +170774612773,214,0 +170774612821,214,0 +170774612869,215,0 +170774612917,215,0 +170774612964,215,0 +170774613012,215,0 +170774613060,215,0 +170774613110,215,0 +170774613159,215,0 +170774613209,215,0 +170774613257,215,0 +170774613306,215,0 +170774613356,215,0 +170774613404,215,0 +170774613452,214,0 +170774613501,214,0 +170774613549,214,0 +170774613597,214,0 +170774613645,214,0 +170774613693,215,0 +170774613741,215,0 +170774613789,215,0 +170774613837,215,0 +170774613885,215,0 +170774613932,215,0 +170774613980,215,0 +170774614030,215,0 +170774614078,215,0 +170774614126,215,0 +170774614174,215,0 +170774614222,215,0 +170774614270,214,0 +170774614319,214,0 +170774614367,214,0 +170774614415,214,0 +170774614463,214,0 +170774614511,214,0 +170774614559,214,0 +170774614607,215,0 +170774614655,215,0 +170774614703,215,0 +170774614751,215,0 +170774614800,215,0 +170774614848,215,0 +170774614898,215,0 +170774614947,215,0 +170774614997,215,0 +170774615045,215,0 +170774615093,214,0 +170774615141,214,0 +170774615189,214,0 +170774615237,215,0 +170774615285,215,0 +170774615333,214,0 +170774615382,215,0 +170774615430,215,0 +170774615478,215,0 +170774615526,215,0 +170774615576,215,0 +170774615625,215,0 +170774615673,215,0 +170774615722,215,0 +170774615772,215,0 +170774615821,215,0 +170774615869,214,0 +170774615917,215,0 +170774615965,214,0 +170774616015,214,0 +170774616064,215,0 +170774616112,215,0 +170774616160,215,0 +170774616208,215,0 +170774616257,215,0 +170774616305,215,0 +170774616355,215,0 +170774616403,215,0 +170774616452,215,0 +170774616500,215,0 +170774616550,215,0 +170774616598,215,0 +170774616647,215,0 +170774616695,215,0 +170774616743,214,0 +170774616791,214,0 +170774616839,215,0 +170774616889,215,0 +170774616936,215,0 +170774616984,214,0 +170774617032,215,0 +170774617082,215,0 +170774617130,215,0 +170774617178,215,0 +170774617227,215,0 +170774617275,215,0 +170774617325,215,0 +170774617373,215,0 +170774617422,215,0 +170774617470,215,0 +170774617520,214,0 +170774617568,214,0 +170774617615,214,0 +170774617663,214,0 +170774617713,214,0 +170774617762,214,0 +170774617810,214,0 +170774617860,215,0 +170774617908,215,0 +170774617956,215,0 +170774618004,215,0 +170774618052,215,0 +170774618101,215,0 +170774618149,215,0 +170774618197,215,0 +170774618245,215,0 +170774618294,215,0 +170774618344,214,0 +170774618392,214,0 +170774618440,214,0 +170774618488,214,0 +170774618536,214,0 +170774618585,214,0 +170774618635,214,0 +170774618683,214,0 +170774618731,215,0 +170774618779,214,0 +170774618827,215,0 +170774618875,215,0 +170774618924,215,0 +170774618974,215,0 +170774619022,215,0 +170774619070,216,0 +170774619118,215,0 +170774619166,214,0 +170774619213,213,0 +170774619261,213,0 +170774619309,214,0 +170774619357,214,0 +170774619407,214,0 +170774619455,214,0 +170774619503,214,0 +170774619551,214,0 +170774619599,214,0 +170774619648,214,0 +170774619696,214,0 +170774619746,215,0 +170774619795,214,0 +170774619845,215,0 +170774619893,215,0 +170774619941,214,0 +170774619989,214,0 +170774620038,213,0 +170774620086,214,0 +170774620134,214,0 +170774620182,214,0 +170774620232,214,0 +170774620280,214,0 +170774620329,214,0 +170774620379,214,0 +170774620427,214,0 +170774620475,214,0 +170774620523,215,0 +170774620571,215,0 +170774620620,215,0 +170774620670,215,0 +170774620718,215,0 +170774620765,215,0 +170774620815,214,0 +170774620863,214,0 +170774620911,214,0 +170774620959,214,0 +170774621007,214,0 +170774621056,214,0 +170774621104,214,0 +170774621154,214,0 +170774621202,215,0 +170774621251,214,0 +170774621299,215,0 +170774621347,215,0 +170774621397,215,0 +170774621446,215,0 +170774621494,215,0 +170774621542,215,0 +170774621592,214,0 +170774621640,213,0 +170774621688,213,0 +170774621736,213,0 +170774621784,213,0 +170774621833,213,0 +170774621881,214,0 +170774621931,214,0 +170774621978,214,0 +170774622028,214,0 +170774622077,214,0 +170774622125,214,0 +170774622173,214,0 +170774622221,215,0 +170774622269,215,0 +170774622317,215,0 +170774622365,215,0 +170774622413,214,0 +170774622460,213,0 +170774622508,214,0 +170774622556,214,0 +170774622604,214,0 +170774622652,214,0 +170774622700,214,0 +170774622748,214,0 +170774622796,214,0 +170774622844,214,0 +170774622893,215,0 +170774622941,214,0 +170774622989,214,0 +170774623039,215,0 +170774623088,215,0 +170774623138,215,0 +170774623186,215,0 +170774623234,215,0 +170774623282,214,0 +170774623330,213,0 +170774623378,214,0 +170774623426,214,0 +170774623473,214,0 +170774623521,214,0 +170774623571,214,0 +170774623619,214,0 +170774623668,214,0 +170774623716,214,0 +170774623766,215,0 +170774623814,215,0 +170774623863,215,0 +170774623913,215,0 +170774623961,215,0 +170774624010,215,0 +170774624058,214,0 +170774624107,214,0 +170774624155,214,0 +170774624203,214,0 +170774624251,214,0 +170774624299,214,0 +170774624347,214,0 +170774624395,214,0 +170774624445,214,0 +170774624493,214,0 +170774624542,215,0 +170774624590,215,0 +170774624638,215,0 +170774624686,215,0 +170774624735,215,0 +170774624783,215,0 +170774624831,215,0 +170774624879,214,0 +170774624929,213,0 +170774624977,213,0 +170774625025,214,0 +170774625073,214,0 +170774625121,214,0 +170774625169,214,0 +170774625218,214,0 +170774625268,214,0 +170774625317,214,0 +170774625365,214,0 +170774625413,215,0 +170774625463,215,0 +170774625511,215,0 +170774625559,215,0 +170774625608,215,0 +170774625656,215,0 +170774625704,214,0 +170774625752,214,0 +170774625802,214,0 +170774625850,214,0 +170774625898,214,0 +170774625946,215,0 +170774625994,214,0 +170774626043,215,0 +170774626091,215,0 +170774626140,215,0 +170774626188,215,0 +170774626236,215,0 +170774626284,215,0 +170774626331,215,0 +170774626379,215,0 +170774626427,215,0 +170774626477,215,0 +170774626524,214,0 +170774626572,214,0 +170774626620,214,0 +170774626670,214,0 +170774626718,215,0 +170774626767,215,0 +170774626817,215,0 +170774626865,215,0 +170774626913,215,0 +170774626961,215,0 +170774627009,215,0 +170774627057,215,0 +170774627105,215,0 +170774627153,215,0 +170774627202,215,0 +170774627250,215,0 +170774627299,215,0 +170774627349,215,0 +170774627398,214,0 +170774627446,214,0 +170774627496,215,0 +170774627544,215,0 +170774627593,215,0 +170774627641,215,0 +170774627689,215,0 +170774627739,215,0 +170774627787,215,0 +170774627835,215,0 +170774627883,215,0 +170774627931,215,0 +170774627979,215,0 +170774628028,215,0 +170774628076,215,0 +170774628124,215,0 +170774628174,215,0 +170774628222,214,0 +170774628271,215,0 +170774628321,215,0 +170774628369,215,0 +170774628418,215,0 +170774628468,215,0 +170774628517,215,0 +170774628567,215,0 +170774628615,215,0 +170774628663,215,0 +170774628710,215,0 +170774628760,215,0 +170774628808,216,0 +170774628856,215,0 +170774628904,215,0 +170774628952,214,0 +170774628999,214,0 +170774629047,214,0 +170774629097,215,0 +170774629145,215,0 +170774629192,215,0 +170774629240,215,0 +170774629288,215,0 +170774629336,215,0 +170774629384,215,0 +170774629432,215,0 +170774629480,215,0 +170774629528,215,0 +170774629576,215,0 +170774629624,215,0 +170774629672,215,0 +170774629719,215,0 +170774629767,215,0 +170774629815,214,0 +170774629863,214,0 +170774629911,214,0 +170774629961,214,0 +170774630008,214,0 +170774630056,214,0 +170774630104,214,0 +170774630152,214,0 +170774630200,215,0 +170774630248,215,0 +170774630296,215,0 +170774630344,215,0 +170774630392,215,0 +170774630440,215,0 +170774630488,215,0 +170774630536,215,0 +170774630584,215,0 +170774630632,214,0 +170774630681,213,0 +170774630729,214,0 +170774630779,214,0 +170774630827,214,0 +170774630874,214,0 +170774630922,214,0 +170774630970,215,0 +170774631018,214,0 +170774631068,215,0 +170774631116,215,0 +170774631164,215,0 +170774631212,215,0 +170774631260,215,0 +170774631309,215,0 +170774631359,215,0 +170774631407,215,0 +170774631455,214,0 +170774631503,214,0 +170774631552,214,0 +170774631600,214,0 +170774631650,214,0 +170774631697,214,0 +170774631747,215,0 +170774631797,215,0 +170774631846,215,0 +170774631894,215,0 +170774631944,215,0 +170774631991,215,0 +170774632039,215,0 +170774632089,215,0 +170774632138,215,0 +170774632186,216,0 +170774632234,214,0 +170774632284,214,0 +170774632332,214,0 +170774632381,214,0 +170774632429,214,0 +170774632479,214,0 +170774632527,214,0 +170774632576,214,0 +170774632624,214,0 +170774632672,215,0 +170774632722,215,0 +170774632771,215,0 +170774632819,215,0 +170774632869,215,0 +170774632917,215,0 +170774632964,215,0 +170774633013,215,0 +170774633062,215,0 +170774633110,213,0 +170774633158,214,0 +170774633207,214,0 +170774633257,214,0 +170774633305,214,0 +170774633353,214,0 +170774633402,214,0 +170774633452,215,0 +170774633501,215,0 +170774633549,215,0 +170774633597,215,0 +170774633645,215,0 +170774633693,215,0 +170774633743,215,0 +170774633791,215,0 +170774633840,215,0 +170774633890,214,0 +170774633939,213,0 +170774633987,214,0 +170774634037,214,0 +170774634085,214,0 +170774634132,214,0 +170774634182,214,0 +170774634230,214,0 +170774634278,214,0 +170774634327,214,0 +170774634375,214,0 +170774634425,215,0 +170774634473,215,0 +170774634521,215,0 +170774634569,215,0 +170774634618,215,0 +170774634666,215,0 +170774634714,214,0 +170774634764,213,0 +170774634812,214,0 +170774634860,214,0 +170774634909,214,0 +170774634957,214,0 +170774635005,214,0 +170774635053,214,0 +170774635102,214,0 +170774635152,214,0 +170774635200,214,0 +170774635247,215,0 +170774635295,215,0 +170774635343,215,0 +170774635391,215,0 +170774635439,215,0 +170774635488,215,0 +170774635536,214,0 +170774635584,214,0 +170774635632,214,0 +170774635680,214,0 +170774635728,214,0 +170774635776,214,0 +170774635824,214,0 +170774635874,214,0 +170774635923,214,0 +170774635971,214,0 +170774636019,214,0 +170774636069,214,0 +170774636116,215,0 +170774636164,215,0 +170774636213,215,0 +170774636260,215,0 +170774636308,215,0 +170774636356,214,0 +170774636404,214,0 +170774636452,213,0 +170774636502,213,0 +170774636550,214,0 +170774636599,214,0 +170774636649,214,0 +170774636698,214,0 +170774636748,214,0 +170774636796,214,0 +170774636844,215,0 +170774636892,215,0 +170774636939,215,0 +170774636987,215,0 +170774637037,215,0 +170774637085,215,0 +170774637135,215,0 +170774637184,214,0 +170774637232,213,0 +170774637280,214,0 +170774637330,214,0 +170774637377,214,0 +170774637425,214,0 +170774637475,214,0 +170774637522,214,0 +170774637570,214,0 +170774637620,215,0 +170774637668,215,0 +170774637715,215,0 +170774637763,215,0 +170774637811,215,0 +170774637859,215,0 +170774637908,215,0 +170774637956,215,0 +170774638004,214,0 +170774638052,214,0 +170774638100,214,0 +170774638147,214,0 +170774638195,214,0 +170774638243,214,0 +170774638293,214,0 +170774638341,214,0 +170774638390,214,0 +170774638438,215,0 +170774638488,215,0 +170774638537,215,0 +170774638585,215,0 +170774638635,215,0 +170774638683,215,0 +170774638732,215,0 +170774638780,215,0 +170774638828,214,0 +170774638877,214,0 +170774638925,214,0 +170774638973,214,0 +170774639021,214,0 +170774639071,215,0 +170774639119,215,0 +170774639167,215,0 +170774639215,215,0 +170774639262,215,0 +170774639312,215,0 +170774639360,215,0 +170774639409,215,0 +170774639459,215,0 +170774639508,215,0 +170774639556,215,0 +170774639606,215,0 +170774639654,214,0 +170774639702,214,0 +170774639750,214,0 +170774639797,214,0 +170774639845,215,0 +170774639893,215,0 +170774639941,215,0 +170774639989,215,0 diff --git a/laser_value/0213-00.csv b/laser_value/0213-00.csv new file mode 100644 index 0000000..2358c2d --- /dev/null +++ b/laser_value/0213-00.csv @@ -0,0 +1,7438 @@ +timestamp,laser_value,event +170774640038,215,0 +170774640086,215,0 +170774640134,215,0 +170774640183,215,0 +170774640231,215,0 +170774640279,215,0 +170774640328,215,0 +170774640376,215,0 +170774640424,215,0 +170774640472,214,0 +170774640522,214,0 +170774640571,214,0 +170774640619,214,0 +170774640669,214,0 +170774640718,214,0 +170774640768,214,0 +170774640816,214,0 +170774640864,214,0 +170774640913,214,0 +170774640961,215,0 +170774641011,215,0 +170774641060,215,0 +170774641108,215,0 +170774641158,215,0 +170774641206,215,0 +170774641255,214,0 +170774641303,214,0 +170774641353,214,0 +170774641401,214,0 +170774641448,214,0 +170774641496,214,0 +170774641546,214,0 +170774641594,214,0 +170774641643,215,0 +170774641691,215,0 +170774641741,215,0 +170774641789,215,0 +170774641839,215,0 +170774641886,215,0 +170774641936,215,0 +170774641985,215,0 +170774642035,215,0 +170774642083,214,0 +170774642131,214,0 +170774642179,214,0 +170774642227,214,0 +170774642274,215,0 +170774642324,215,0 +170774642372,215,0 +170774642419,215,0 +170774642467,215,0 +170774642515,215,0 +170774642565,215,0 +170774642613,215,0 +170774642662,215,0 +170774642712,216,0 +170774642760,215,0 +170774642809,215,0 +170774642857,215,0 +170774642905,214,0 +170774642954,214,0 +170774643004,214,0 +170774643052,214,0 +170774643100,215,0 +170774643148,215,0 +170774643196,214,0 +170774643243,215,0 +170774643291,215,0 +170774643339,215,0 +170774643387,215,0 +170774643436,215,0 +170774643484,215,0 +170774643532,215,0 +170774643580,215,0 +170774643630,215,0 +170774643677,215,0 +170774643725,214,0 +170774643773,214,0 +170774643821,214,0 +170774643869,214,0 +170774643919,214,0 +170774643966,214,0 +170774644014,214,0 +170774644062,215,0 +170774644110,215,0 +170774644159,215,0 +170774644207,215,0 +170774644257,215,0 +170774644306,215,0 +170774644354,215,0 +170774644402,215,0 +170774644450,215,0 +170774644498,215,0 +170774644546,214,0 +170774644594,214,0 +170774644643,214,0 +170774644693,214,0 +170774644742,214,0 +170774644790,214,0 +170774644838,214,0 +170774644886,215,0 +170774644934,215,0 +170774644982,215,0 +170774645030,215,0 +170774645078,215,0 +170774645127,215,0 +170774645175,215,0 +170774645223,215,0 +170774645271,215,0 +170774645319,215,0 +170774645367,214,0 +170774645416,213,0 +170774645466,213,0 +170774645514,214,0 +170774645562,214,0 +170774645610,214,0 +170774645658,214,0 +170774645706,214,0 +170774645754,214,0 +170774645802,214,0 +170774645851,214,0 +170774645899,215,0 +170774645947,215,0 +170774645995,215,0 +170774646043,215,0 +170774646091,215,0 +170774646141,215,0 +170774646189,214,0 +170774646236,214,0 +170774646284,213,0 +170774646334,214,0 +170774646383,214,0 +170774646431,214,0 +170774646479,214,0 +170774646527,214,0 +170774646577,214,0 +170774646625,214,0 +170774646673,214,0 +170774646720,215,0 +170774646768,215,0 +170774646818,215,0 +170774646866,215,0 +170774646914,215,0 +170774646962,215,0 +170774647010,214,0 +170774647057,214,0 +170774647105,214,0 +170774647153,214,0 +170774647201,214,0 +170774647249,214,0 +170774647297,214,0 +170774647347,214,0 +170774647395,215,0 +170774647443,215,0 +170774647491,215,0 +170774647540,215,0 +170774647588,215,0 +170774647636,215,0 +170774647684,215,0 +170774647732,215,0 +170774647782,215,0 +170774647831,214,0 +170774647879,214,0 +170774647927,214,0 +170774647975,214,0 +170774648025,214,0 +170774648073,214,0 +170774648120,214,0 +170774648168,214,0 +170774648218,215,0 +170774648266,215,0 +170774648315,215,0 +170774648363,215,0 +170774648411,215,0 +170774648459,215,0 +170774648507,215,0 +170774648555,215,0 +170774648603,215,0 +170774648651,214,0 +170774648700,214,0 +170774648748,214,0 +170774648796,214,0 +170774648846,214,0 +170774648894,214,0 +170774648943,214,0 +170774648991,215,0 +170774649039,215,0 +170774649087,215,0 +170774649136,215,0 +170774649186,215,0 +170774649235,215,0 +170774649283,215,0 +170774649331,215,0 +170774649381,215,0 +170774649428,215,0 +170774649476,214,0 +170774649524,214,0 +170774649572,214,0 +170774649620,214,0 +170774649669,214,0 +170774649719,214,0 +170774649767,214,0 +170774649815,215,0 +170774649864,215,0 +170774649914,215,0 +170774649962,215,0 +170774650009,215,0 +170774650057,215,0 +170774650105,215,0 +170774650153,215,0 +170774650201,215,0 +170774650249,215,0 +170774650297,214,0 +170774650346,214,0 +170774650396,214,0 +170774650445,214,0 +170774650495,214,0 +170774650544,214,0 +170774650594,214,0 +170774650643,215,0 +170774650691,215,0 +170774650739,215,0 +170774650787,215,0 +170774650837,215,0 +170774650886,215,0 +170774650936,215,0 +170774650984,215,0 +170774651032,215,0 +170774651081,214,0 +170774651129,213,0 +170774651177,213,0 +170774651225,213,0 +170774651273,213,0 +170774651321,214,0 +170774651369,214,0 +170774651418,214,0 +170774651466,214,0 +170774651514,214,0 +170774651562,215,0 +170774651610,214,0 +170774651659,215,0 +170774651709,215,0 +170774651757,215,0 +170774651805,215,0 +170774651853,215,0 +170774651902,214,0 +170774651950,213,0 +170774651999,213,0 +170774652049,214,0 +170774652097,214,0 +170774652145,214,0 +170774652194,214,0 +170774652244,214,0 +170774652292,214,0 +170774652340,214,0 +170774652388,215,0 +170774652435,215,0 +170774652483,215,0 +170774652531,215,0 +170774652579,215,0 +170774652627,215,0 +170774652676,215,0 +170774652726,214,0 +170774652774,214,0 +170774652822,214,0 +170774652871,214,0 +170774652919,214,0 +170774652967,214,0 +170774653016,214,0 +170774653064,215,0 +170774653114,215,0 +170774653162,215,0 +170774653210,215,0 +170774653257,215,0 +170774653305,215,0 +170774653353,215,0 +170774653403,215,0 +170774653451,215,0 +170774653498,215,0 +170774653548,214,0 +170774653597,215,0 +170774653647,214,0 +170774653696,215,0 +170774653746,214,0 +170774653794,215,0 +170774653843,215,0 +170774653893,215,0 +170774653941,215,0 +170774653989,215,0 +170774654036,215,0 +170774654084,215,0 +170774654132,215,0 +170774654180,215,0 +170774654228,215,0 +170774654276,215,0 +170774654325,215,0 +170774654375,214,0 +170774654423,214,0 +170774654471,214,0 +170774654519,214,0 +170774654567,214,0 +170774654615,214,0 +170774654663,215,0 +170774654712,214,0 +170774654760,215,0 +170774654809,215,0 +170774654859,215,0 +170774654908,215,0 +170774654956,215,0 +170774655004,215,0 +170774655054,215,0 +170774655101,215,0 +170774655149,215,0 +170774655197,213,0 +170774655245,214,0 +170774655293,214,0 +170774655341,214,0 +170774655391,214,0 +170774655438,214,0 +170774655486,214,0 +170774655536,214,0 +170774655584,215,0 +170774655631,215,0 +170774655679,215,0 +170774655727,215,0 +170774655777,215,0 +170774655825,215,0 +170774655872,215,0 +170774655920,215,0 +170774655968,215,0 +170774656016,214,0 +170774656065,214,0 +170774656113,214,0 +170774656161,214,0 +170774656211,214,0 +170774656258,215,0 +170774656306,215,0 +170774656356,215,0 +170774656404,215,0 +170774656451,215,0 +170774656499,215,0 +170774656549,215,0 +170774656598,215,0 +170774656646,215,0 +170774656696,215,0 +170774656745,215,0 +170774656793,214,0 +170774656841,214,0 +170774656889,214,0 +170774656939,214,0 +170774656987,214,0 +170774657036,214,0 +170774657085,214,0 +170774657135,214,0 +170774657184,214,0 +170774657232,214,0 +170774657282,215,0 +170774657330,215,0 +170774657378,215,0 +170774657427,215,0 +170774657476,215,0 +170774657524,215,0 +170774657572,215,0 +170774657620,214,0 +170774657668,214,0 +170774657718,214,0 +170774657766,214,0 +170774657813,214,0 +170774657863,214,0 +170774657911,215,0 +170774657959,214,0 +170774658007,215,0 +170774658056,215,0 +170774658106,215,0 +170774658155,215,0 +170774658203,215,0 +170774658251,215,0 +170774658301,215,0 +170774658349,215,0 +170774658396,215,0 +170774658444,214,0 +170774658494,214,0 +170774658543,214,0 +170774658593,214,0 +170774658641,214,0 +170774658690,214,0 +170774658738,214,0 +170774658786,214,0 +170774658836,215,0 +170774658883,215,0 +170774658933,215,0 +170774658982,215,0 +170774659030,215,0 +170774659078,215,0 +170774659126,215,0 +170774659176,215,0 +170774659223,215,0 +170774659271,214,0 +170774659319,214,0 +170774659367,214,0 +170774659415,214,0 +170774659463,214,0 +170774659511,214,0 +170774659561,215,0 +170774659609,214,0 +170774659657,215,0 +170774659704,215,0 +170774659752,215,0 +170774659800,215,0 +170774659850,215,0 +170774659898,215,0 +170774659947,215,0 +170774659995,215,0 +170774660043,215,0 +170774660091,214,0 +170774660139,214,0 +170774660187,214,0 +170774660236,214,0 +170774660284,214,0 +170774660333,214,0 +170774660382,215,0 +170774660431,215,0 +170774660479,215,0 +170774660528,215,0 +170774660576,215,0 +170774660624,216,0 +170774660672,215,0 +170774660720,216,0 +170774660769,215,0 +170774660819,215,0 +170774660867,215,0 +170774660916,214,0 +170774660964,214,0 +170774661012,214,0 +170774661060,214,0 +170774661108,214,0 +170774661156,214,0 +170774661204,215,0 +170774661253,215,0 +170774661301,215,0 +170774661349,215,0 +170774661397,215,0 +170774661447,215,0 +170774661495,215,0 +170774661543,215,0 +170774661591,215,0 +170774661639,215,0 +170774661688,215,0 +170774661736,214,0 +170774661784,214,0 +170774661834,214,0 +170774661882,214,0 +170774661931,214,0 +170774661979,214,0 +170774662028,214,0 +170774662076,214,0 +170774662124,215,0 +170774662172,215,0 +170774662220,215,0 +170774662270,215,0 +170774662319,215,0 +170774662367,214,0 +170774662415,215,0 +170774662463,215,0 +170774662511,214,0 +170774662560,214,0 +170774662608,214,0 +170774662656,214,0 +170774662704,214,0 +170774662752,214,0 +170774662799,214,0 +170774662847,214,0 +170774662895,214,0 +170774662943,215,0 +170774662991,215,0 +170774663039,215,0 +170774663088,215,0 +170774663136,215,0 +170774663184,215,0 +170774663232,215,0 +170774663282,215,0 +170774663330,214,0 +170774663379,213,0 +170774663427,214,0 +170774663475,214,0 +170774663523,214,0 +170774663571,214,0 +170774663620,214,0 +170774663668,214,0 +170774663717,214,0 +170774663765,215,0 +170774663815,215,0 +170774663862,215,0 +170774663912,215,0 +170774663960,215,0 +170774664009,215,0 +170774664059,215,0 +170774664107,215,0 +170774664154,214,0 +170774664204,213,0 +170774664252,213,0 +170774664300,214,0 +170774664348,214,0 +170774664395,214,0 +170774664445,214,0 +170774664494,214,0 +170774664542,214,0 +170774664590,215,0 +170774664638,215,0 +170774664688,215,0 +170774664737,215,0 +170774664785,215,0 +170774664833,215,0 +170774664881,215,0 +170774664929,215,0 +170774664977,214,0 +170774665024,214,0 +170774665072,214,0 +170774665120,214,0 +170774665168,214,0 +170774665218,214,0 +170774665265,214,0 +170774665315,214,0 +170774665363,214,0 +170774665412,215,0 +170774665460,215,0 +170774665510,215,0 +170774665558,215,0 +170774665607,215,0 +170774665655,215,0 +170774665705,215,0 +170774665753,215,0 +170774665801,214,0 +170774665850,214,0 +170774665898,214,0 +170774665946,214,0 +170774665994,214,0 +170774666042,214,0 +170774666091,214,0 +170774666139,214,0 +170774666188,215,0 +170774666238,215,0 +170774666286,215,0 +170774666334,215,0 +170774666383,215,0 +170774666431,215,0 +170774666479,215,0 +170774666527,215,0 +170774666576,214,0 +170774666625,214,0 +170774666673,214,0 +170774666723,214,0 +170774666772,214,0 +170774666820,214,0 +170774666868,214,0 +170774666916,215,0 +170774666966,215,0 +170774667014,215,0 +170774667061,215,0 +170774667109,215,0 +170774667157,215,0 +170774667205,215,0 +170774667253,215,0 +170774667301,215,0 +170774667349,215,0 +170774667398,215,0 +170774667446,214,0 +170774667496,214,0 +170774667545,214,0 +170774667593,214,0 +170774667641,214,0 +170774667691,214,0 +170774667740,214,0 +170774667790,215,0 +170774667837,214,0 +170774667887,215,0 +170774667937,215,0 +170774667984,215,0 +170774668034,215,0 +170774668083,215,0 +170774668133,215,0 +170774668181,215,0 +170774668230,214,0 +170774668278,214,0 +170774668328,214,0 +170774668377,214,0 +170774668425,214,0 +170774668473,214,0 +170774668521,214,0 +170774668570,214,0 +170774668618,214,0 +170774668667,215,0 +170774668717,215,0 +170774668766,215,0 +170774668814,215,0 +170774668862,215,0 +170774668910,215,0 +170774668958,215,0 +170774669006,215,0 +170774669054,214,0 +170774669103,214,0 +170774669151,214,0 +170774669201,214,0 +170774669248,214,0 +170774669296,214,0 +170774669346,215,0 +170774669394,215,0 +170774669441,215,0 +170774669489,215,0 +170774669539,215,0 +170774669588,215,0 +170774669638,215,0 +170774669685,215,0 +170774669733,215,0 +170774669781,215,0 +170774669829,215,0 +170774669877,214,0 +170774669926,214,0 +170774669974,214,0 +170774670022,214,0 +170774670070,214,0 +170774670119,214,0 +170774670167,214,0 +170774670215,214,0 +170774670265,215,0 +170774670312,215,0 +170774670360,215,0 +170774670408,215,0 +170774670456,215,0 +170774670504,215,0 +170774670552,215,0 +170774670600,215,0 +170774670649,215,0 +170774670697,214,0 +170774670745,214,0 +170774670793,214,0 +170774670840,214,0 +170774670888,215,0 +170774670936,214,0 +170774670985,214,0 +170774671033,214,0 +170774671081,215,0 +170774671129,215,0 +170774671178,215,0 +170774671226,215,0 +170774671274,215,0 +170774671322,215,0 +170774671370,215,0 +170774671418,215,0 +170774671465,215,0 +170774671513,214,0 +170774671563,214,0 +170774671611,214,0 +170774671658,214,0 +170774671706,214,0 +170774671754,214,0 +170774671802,215,0 +170774671850,215,0 +170774671898,215,0 +170774671945,215,0 +170774671995,215,0 +170774672043,215,0 +170774672091,215,0 +170774672138,215,0 +170774672186,215,0 +170774672234,215,0 +170774672282,215,0 +170774672330,214,0 +170774672378,214,0 +170774672425,214,0 +170774672473,214,0 +170774672521,214,0 +170774672569,214,0 +170774672617,214,0 +170774672665,214,0 +170774672714,215,0 +170774672763,215,0 +170774672811,215,0 +170774672859,215,0 +170774672907,215,0 +170774672955,215,0 +170774673002,215,0 +170774673050,215,0 +170774673098,215,0 +170774673147,214,0 +170774673195,213,0 +170774673243,213,0 +170774673292,213,0 +170774673342,214,0 +170774673391,214,0 +170774673439,214,0 +170774673487,214,0 +170774673535,214,0 +170774673585,214,0 +170774673633,214,0 +170774673682,215,0 +170774673732,215,0 +170774673781,215,0 +170774673829,215,0 +170774673877,215,0 +170774673926,215,0 +170774673976,213,0 +170774674024,213,0 +170774674073,214,0 +170774674121,213,0 +170774674171,214,0 +170774674219,214,0 +170774674267,214,0 +170774674314,214,0 +170774674362,214,0 +170774674410,214,0 +170774674458,215,0 +170774674506,215,0 +170774674555,215,0 +170774674603,215,0 +170774674653,215,0 +170774674702,215,0 +170774674752,215,0 +170774674800,214,0 +170774674847,213,0 +170774674895,213,0 +170774674945,214,0 +170774674992,214,0 +170774675042,214,0 +170774675090,214,0 +170774675137,214,0 +170774675185,214,0 +170774675233,214,0 +170774675281,214,0 +170774675329,215,0 +170774675377,215,0 +170774675426,215,0 +170774675474,215,0 +170774675523,215,0 +170774675571,214,0 +170774675619,213,0 +170774675667,213,0 +170774675715,214,0 +170774675763,214,0 +170774675811,213,0 +170774675858,214,0 +170774675906,214,0 +170774675954,214,0 +170774676002,214,0 +170774676050,214,0 +170774676097,214,0 +170774676145,214,0 +170774676193,214,0 +170774676241,215,0 +170774676289,215,0 +170774676338,215,0 +170774676386,215,0 +170774676434,214,0 +170774676482,214,0 +170774676531,214,0 +170774676579,214,0 +170774676627,214,0 +170774676674,214,0 +170774676722,214,0 +170774676770,214,0 +170774676818,214,0 +170774676867,214,0 +170774676917,215,0 +170774676964,215,0 +170774677014,215,0 +170774677062,215,0 +170774677110,215,0 +170774677157,215,0 +170774677205,214,0 +170774677253,214,0 +170774677301,214,0 +170774677349,214,0 +170774677397,214,0 +170774677444,214,0 +170774677492,214,0 +170774677540,214,0 +170774677588,214,0 +170774677636,214,0 +170774677685,214,0 +170774677733,214,0 +170774677782,214,0 +170774677830,215,0 +170774677878,215,0 +170774677927,215,0 +170774677975,215,0 +170774678023,214,0 +170774678071,213,0 +170774678118,214,0 +170774678166,214,0 +170774678214,214,0 +170774678262,214,0 +170774678310,214,0 +170774678358,214,0 +170774678406,214,0 +170774678454,215,0 +170774678503,215,0 +170774678551,215,0 +170774678599,215,0 +170774678647,215,0 +170774678696,215,0 +170774678744,215,0 +170774678792,215,0 +170774678840,214,0 +170774678889,214,0 +170774678937,214,0 +170774678985,214,0 +170774679033,214,0 +170774679081,214,0 +170774679128,214,0 +170774679176,215,0 +170774679224,215,0 +170774679272,215,0 +170774679322,215,0 +170774679369,215,0 +170774679417,215,0 +170774679465,215,0 +170774679513,215,0 +170774679561,215,0 +170774679610,215,0 +170774679658,214,0 +170774679706,214,0 +170774679754,214,0 +170774679802,214,0 +170774679849,214,0 +170774679897,214,0 +170774679945,214,0 +170774679993,214,0 +170774680042,215,0 +170774680090,215,0 +170774680138,215,0 +170774680186,215,0 +170774680235,215,0 +170774680283,215,0 +170774680331,215,0 +170774680381,215,0 +170774680430,214,0 +170774680478,214,0 +170774680526,214,0 +170774680575,214,0 +170774680623,214,0 +170774680671,214,0 +170774680721,214,0 +170774680770,215,0 +170774680818,215,0 +170774680868,215,0 +170774680916,215,0 +170774680964,215,0 +170774681011,215,0 +170774681059,215,0 +170774681107,215,0 +170774681155,215,0 +170774681203,215,0 +170774681253,215,0 +170774681301,214,0 +170774681349,214,0 +170774681398,214,0 +170774681446,215,0 +170774681496,214,0 +170774681544,215,0 +170774681591,215,0 +170774681639,215,0 +170774681689,215,0 +170774681737,215,0 +170774681785,215,0 +170774681833,215,0 +170774681881,215,0 +170774681930,215,0 +170774681980,215,0 +170774682029,215,0 +170774682077,215,0 +170774682126,214,0 +170774682174,214,0 +170774682224,214,0 +170774682273,214,0 +170774682323,215,0 +170774682371,215,0 +170774682420,215,0 +170774682468,215,0 +170774682518,215,0 +170774682567,215,0 +170774682615,215,0 +170774682663,215,0 +170774682711,215,0 +170774682760,215,0 +170774682808,215,0 +170774682858,215,0 +170774682906,215,0 +170774682953,214,0 +170774683001,214,0 +170774683051,214,0 +170774683100,214,0 +170774683150,214,0 +170774683199,215,0 +170774683247,215,0 +170774683295,215,0 +170774683343,215,0 +170774683392,215,0 +170774683440,215,0 +170774683488,215,0 +170774683536,215,0 +170774683584,215,0 +170774683632,215,0 +170774683681,215,0 +170774683728,214,0 +170774683778,214,0 +170774683827,214,0 +170774683875,214,0 +170774683923,214,0 +170774683971,214,0 +170774684019,214,0 +170774684067,214,0 +170774684115,214,0 +170774684163,215,0 +170774684211,215,0 +170774684258,215,0 +170774684306,215,0 +170774684354,215,0 +170774684402,215,0 +170774684450,215,0 +170774684497,215,0 +170774684545,214,0 +170774684593,213,0 +170774684641,214,0 +170774684689,214,0 +170774684736,214,0 +170774684786,214,0 +170774684834,214,0 +170774684881,214,0 +170774684929,214,0 +170774684977,214,0 +170774685025,214,0 +170774685073,215,0 +170774685120,215,0 +170774685168,215,0 +170774685218,215,0 +170774685266,215,0 +170774685313,215,0 +170774685361,214,0 +170774685409,213,0 +170774685457,213,0 +170774685505,214,0 +170774685555,214,0 +170774685603,214,0 +170774685652,214,0 +170774685700,214,0 +170774685748,214,0 +170774685796,214,0 +170774685844,214,0 +170774685892,215,0 +170774685940,215,0 +170774685987,215,0 +170774686035,215,0 +170774686083,215,0 +170774686133,215,0 +170774686181,214,0 +170774686229,213,0 +170774686276,213,0 +170774686326,214,0 +170774686375,214,0 +170774686423,214,0 +170774686471,214,0 +170774686519,214,0 +170774686567,214,0 +170774686616,214,0 +170774686664,214,0 +170774686712,214,0 +170774686760,215,0 +170774686810,215,0 +170774686859,215,0 +170774686909,215,0 +170774686957,215,0 +170774687005,214,0 +170774687054,213,0 +170774687102,213,0 +170774687150,213,0 +170774687199,214,0 +170774687247,214,0 +170774687295,214,0 +170774687343,214,0 +170774687391,214,0 +170774687439,214,0 +170774687487,214,0 +170774687537,214,0 +170774687585,214,0 +170774687632,215,0 +170774687680,215,0 +170774687728,215,0 +170774687776,215,0 +170774687824,214,0 +170774687874,213,0 +170774687922,213,0 +170774687970,214,0 +170774688019,214,0 +170774688067,214,0 +170774688116,214,0 +170774688164,214,0 +170774688212,214,0 +170774688260,214,0 +170774688308,214,0 +170774688356,214,0 +170774688404,215,0 +170774688452,215,0 +170774688500,215,0 +170774688548,215,0 +170774688597,215,0 +170774688646,214,0 +170774688694,213,0 +170774688744,214,0 +170774688792,214,0 +170774688841,214,0 +170774688889,214,0 +170774688937,214,0 +170774688985,214,0 +170774689033,214,0 +170774689081,214,0 +170774689131,214,0 +170774689180,215,0 +170774689230,215,0 +170774689277,215,0 +170774689325,215,0 +170774689373,215,0 +170774689421,214,0 +170774689469,214,0 +170774689519,214,0 +170774689567,214,0 +170774689615,214,0 +170774689663,214,0 +170774689710,214,0 +170774689758,214,0 +170774689806,214,0 +170774689856,214,0 +170774689904,214,0 +170774689952,214,0 +170774690000,214,0 +170774690047,215,0 +170774690095,214,0 +170774690143,215,0 +170774690193,215,0 +170774690240,214,0 +170774690288,213,0 +170774690338,213,0 +170774690386,213,0 +170774690435,214,0 +170774690483,214,0 +170774690531,214,0 +170774690579,214,0 +170774690629,214,0 +170774690678,214,0 +170774690726,215,0 +170774690774,215,0 +170774690823,215,0 +170774690871,215,0 +170774690921,215,0 +170774690970,215,0 +170774691020,214,0 +170774691068,213,0 +170774691116,213,0 +170774691164,213,0 +170774691211,214,0 +170774691261,214,0 +170774691309,214,0 +170774691357,214,0 +170774691405,214,0 +170774691454,214,0 +170774691502,215,0 +170774691550,215,0 +170774691598,215,0 +170774691646,215,0 +170774691695,215,0 +170774691743,215,0 +170774691791,215,0 +170774691839,214,0 +170774691887,214,0 +170774691936,214,0 +170774691986,214,0 +170774692035,214,0 +170774692083,214,0 +170774692131,215,0 +170774692181,214,0 +170774692229,215,0 +170774692276,215,0 +170774692326,215,0 +170774692374,215,0 +170774692423,215,0 +170774692471,215,0 +170774692519,215,0 +170774692569,215,0 +170774692617,215,0 +170774692666,214,0 +170774692716,214,0 +170774692763,214,0 +170774692811,214,0 +170774692861,215,0 +170774692909,215,0 +170774692957,215,0 +170774693004,215,0 +170774693054,215,0 +170774693102,215,0 +170774693151,215,0 +170774693199,215,0 +170774693247,215,0 +170774693295,215,0 +170774693344,215,0 +170774693394,215,0 +170774693443,215,0 +170774693491,214,0 +170774693539,214,0 +170774693589,215,0 +170774693637,215,0 +170774693686,215,0 +170774693736,215,0 +170774693785,215,0 +170774693833,215,0 +170774693881,215,0 +170774693929,215,0 +170774693977,215,0 +170774694026,215,0 +170774694074,215,0 +170774694122,215,0 +170774694170,215,0 +170774694220,215,0 +170774694268,214,0 +170774694316,214,0 +170774694365,214,0 +170774694413,214,0 +170774694461,214,0 +170774694511,214,0 +170774694560,215,0 +170774694608,215,0 +170774694658,215,0 +170774694706,215,0 +170774694754,215,0 +170774694801,215,0 +170774694851,215,0 +170774694899,215,0 +170774694948,215,0 +170774694996,215,0 +170774695044,214,0 +170774695092,214,0 +170774695142,214,0 +170774695191,214,0 +170774695239,214,0 +170774695288,214,0 +170774695336,215,0 +170774695386,215,0 +170774695434,215,0 +170774695483,215,0 +170774695531,215,0 +170774695579,215,0 +170774695629,215,0 +170774695677,215,0 +170774695724,215,0 +170774695774,215,0 +170774695822,214,0 +170774695871,214,0 +170774695919,214,0 +170774695969,214,0 +170774696018,214,0 +170774696066,214,0 +170774696114,214,0 +170774696162,215,0 +170774696210,215,0 +170774696259,215,0 +170774696307,215,0 +170774696355,215,0 +170774696403,215,0 +170774696453,215,0 +170774696501,215,0 +170774696548,215,0 +170774696596,215,0 +170774696646,214,0 +170774696695,214,0 +170774696743,214,0 +170774696791,214,0 +170774696839,214,0 +170774696887,214,0 +170774696937,214,0 +170774696984,215,0 +170774697032,214,0 +170774697080,215,0 +170774697130,215,0 +170774697179,215,0 +170774697229,215,0 +170774697279,215,0 +170774697328,215,0 +170774697376,214,0 +170774697424,215,0 +170774697472,214,0 +170774697520,214,0 +170774697568,214,0 +170774697616,214,0 +170774697664,214,0 +170774697712,214,0 +170774697761,214,0 +170774697811,215,0 +170774697858,215,0 +170774697906,215,0 +170774697954,215,0 +170774698004,215,0 +170774698052,215,0 +170774698101,215,0 +170774698149,215,0 +170774698197,215,0 +170774698247,215,0 +170774698296,214,0 +170774698346,214,0 +170774698394,214,0 +170774698442,214,0 +170774698489,214,0 +170774698537,214,0 +170774698585,214,0 +170774698633,214,0 +170774698681,215,0 +170774698729,215,0 +170774698777,215,0 +170774698827,215,0 +170774698876,215,0 +170774698924,215,0 +170774698974,215,0 +170774699021,215,0 +170774699069,214,0 +170774699119,213,0 +170774699167,214,0 +170774699215,214,0 +170774699263,214,0 +170774699312,214,0 +170774699360,214,0 +170774699410,214,0 +170774699457,214,0 +170774699505,215,0 +170774699553,215,0 +170774699603,215,0 +170774699651,215,0 +170774699700,215,0 +170774699748,215,0 +170774699796,215,0 +170774699846,215,0 +170774699894,213,0 +170774699943,214,0 +170774699991,213,0 +170774700039,214,0 +170774700087,214,0 +170774700135,214,0 +170774700184,214,0 +170774700232,214,0 +170774700280,214,0 +170774700328,214,0 +170774700377,215,0 +170774700427,215,0 +170774700475,215,0 +170774700523,215,0 +170774700572,215,0 +170774700620,215,0 +170774700668,214,0 +170774700716,214,0 +170774700765,214,0 +170774700815,214,0 +170774700864,214,0 +170774700914,214,0 +170774700962,214,0 +170774701010,214,0 +170774701058,214,0 +170774701106,214,0 +170774701154,215,0 +170774701203,215,0 +170774701251,215,0 +170774701299,215,0 +170774701347,215,0 +170774701395,215,0 +170774701443,215,0 +170774701493,214,0 +170774701540,214,0 +170774701590,214,0 +170774701640,214,0 +170774701689,214,0 +170774701739,214,0 +170774701786,214,0 +170774701834,214,0 +170774701884,214,0 +170774701933,214,0 +170774701983,215,0 +170774702031,215,0 +170774702080,215,0 +170774702128,215,0 +170774702176,215,0 +170774702224,215,0 +170774702273,214,0 +170774702323,214,0 +170774702371,214,0 +170774702420,214,0 +170774702468,214,0 +170774702516,214,0 +170774702564,214,0 +170774702613,214,0 +170774702661,214,0 +170774702709,214,0 +170774702757,215,0 +170774702805,215,0 +170774702853,215,0 +170774702901,215,0 +170774702949,215,0 +170774702997,215,0 +170774703045,215,0 +170774703093,214,0 +170774703140,214,0 +170774703188,214,0 +170774703236,214,0 +170774703284,214,0 +170774703334,214,0 +170774703382,214,0 +170774703431,215,0 +170774703479,214,0 +170774703527,215,0 +170774703576,215,0 +170774703624,215,0 +170774703674,215,0 +170774703722,215,0 +170774703771,215,0 +170774703821,215,0 +170774703870,214,0 +170774703918,213,0 +170774703966,213,0 +170774704016,214,0 +170774704064,214,0 +170774704111,214,0 +170774704161,214,0 +170774704209,214,0 +170774704257,214,0 +170774704306,215,0 +170774704354,215,0 +170774704402,215,0 +170774704450,215,0 +170774704499,215,0 +170774704547,215,0 +170774704597,215,0 +170774704645,214,0 +170774704694,214,0 +170774704744,214,0 +170774704793,214,0 +170774704843,214,0 +170774704890,214,0 +170774704938,214,0 +170774704988,214,0 +170774705036,214,0 +170774705084,214,0 +170774705133,214,0 +170774705181,215,0 +170774705231,215,0 +170774705278,215,0 +170774705326,215,0 +170774705374,215,0 +170774705422,215,0 +170774705472,214,0 +170774705521,214,0 +170774705569,214,0 +170774705619,214,0 +170774705667,214,0 +170774705715,214,0 +170774705764,214,0 +170774705814,214,0 +170774705863,215,0 +170774705911,214,0 +170774705959,215,0 +170774706008,215,0 +170774706058,215,0 +170774706107,215,0 +170774706155,215,0 +170774706203,215,0 +170774706251,215,0 +170774706300,214,0 +170774706348,213,0 +170774706398,214,0 +170774706447,214,0 +170774706495,214,0 +170774706543,214,0 +170774706591,214,0 +170774706639,214,0 +170774706687,214,0 +170774706735,214,0 +170774706783,215,0 +170774706831,215,0 +170774706879,215,0 +170774706928,215,0 +170774706977,215,0 +170774707025,215,0 +170774707075,214,0 +170774707123,214,0 +170774707171,214,0 +170774707218,214,0 +170774707266,214,0 +170774707314,214,0 +170774707362,214,0 +170774707410,214,0 +170774707458,215,0 +170774707506,215,0 +170774707554,215,0 +170774707603,214,0 +170774707653,215,0 +170774707702,215,0 +170774707752,215,0 +170774707801,215,0 +170774707851,214,0 +170774707899,214,0 +170774707947,214,0 +170774707995,214,0 +170774708044,214,0 +170774708093,214,0 +170774708141,215,0 +170774708189,214,0 +170774708237,215,0 +170774708285,215,0 +170774708333,215,0 +170774708381,215,0 +170774708429,215,0 +170774708477,215,0 +170774708525,215,0 +170774708573,215,0 +170774708622,215,0 +170774708670,214,0 +170774708718,214,0 +170774708766,214,0 +170774708814,214,0 +170774708863,214,0 +170774708911,214,0 +170774708959,214,0 +170774709007,214,0 +170774709054,214,0 +170774709102,215,0 +170774709152,215,0 +170774709201,215,0 +170774709249,215,0 +170774709298,215,0 +170774709346,215,0 +170774709394,215,0 +170774709442,214,0 +170774709489,213,0 +170774709537,213,0 +170774709585,213,0 +170774709633,213,0 +170774709681,213,0 +170774709729,214,0 +170774709778,214,0 +170774709828,214,0 +170774709876,214,0 +170774709925,214,0 +170774709973,214,0 +170774710021,214,0 +170774710070,214,0 +170774710118,215,0 +170774710166,215,0 +170774710214,215,0 +170774710262,215,0 +170774710312,213,0 +170774710360,213,0 +170774710407,213,0 +170774710455,214,0 +170774710503,214,0 +170774710551,214,0 +170774710599,214,0 +170774710649,214,0 +170774710697,214,0 +170774710745,214,0 +170774710794,214,0 +170774710842,214,0 +170774710890,214,0 +170774710938,215,0 +170774710987,215,0 +170774711037,215,0 +170774711086,214,0 +170774711134,214,0 +170774711184,214,0 +170774711233,214,0 +170774711281,214,0 +170774711329,214,0 +170774711377,214,0 +170774711426,214,0 +170774711476,214,0 +170774711525,214,0 +170774711575,214,0 +170774711623,215,0 +170774711672,214,0 +170774711722,215,0 +170774711769,215,0 +170774711817,215,0 +170774711867,215,0 +170774711916,215,0 +170774711964,215,0 +170774712012,215,0 +170774712062,215,0 +170774712111,215,0 +170774712161,215,0 +170774712209,215,0 +170774712256,215,0 +170774712304,214,0 +170774712354,214,0 +170774712403,214,0 +170774712451,214,0 +170774712499,215,0 +170774712549,215,0 +170774712597,215,0 +170774712645,215,0 +170774712694,215,0 +170774712742,215,0 +170774712792,215,0 +170774712841,215,0 +170774712889,215,0 +170774712938,215,0 +170774712986,215,0 +170774713036,215,0 +170774713084,214,0 +170774713132,214,0 +170774713180,214,0 +170774713227,215,0 +170774713277,215,0 +170774713326,214,0 +170774713376,215,0 +170774713424,215,0 +170774713473,215,0 +170774713521,215,0 +170774713571,215,0 +170774713620,215,0 +170774713670,215,0 +170774713719,215,0 +170774713767,215,0 +170774713815,215,0 +170774713863,215,0 +170774713911,214,0 +170774713959,214,0 +170774714007,214,0 +170774714055,214,0 +170774714103,214,0 +170774714151,214,0 +170774714198,214,0 +170774714248,215,0 +170774714296,214,0 +170774714344,215,0 +170774714393,215,0 +170774714443,215,0 +170774714491,215,0 +170774714538,215,0 +170774714586,215,0 +170774714636,214,0 +170774714684,214,0 +170774714732,214,0 +170774714779,213,0 +170774714827,214,0 +170774714875,214,0 +170774714923,214,0 +170774714971,214,0 +170774715018,214,0 +170774715066,214,0 +170774715114,214,0 +170774715162,215,0 +170774715210,215,0 +170774715258,215,0 +170774715305,215,0 +170774715355,215,0 +170774715403,215,0 +170774715450,215,0 +170774715498,214,0 +170774715546,214,0 +170774715596,213,0 +170774715643,214,0 +170774715691,214,0 +170774715739,214,0 +170774715787,214,0 +170774715837,214,0 +170774715885,215,0 +170774715934,215,0 +170774715983,214,0 +170774716031,215,0 +170774716079,215,0 +170774716127,215,0 +170774716175,215,0 +170774716225,215,0 +170774716273,215,0 +170774716322,214,0 +170774716370,213,0 +170774716418,214,0 +170774716466,214,0 +170774716515,214,0 +170774716563,214,0 +170774716613,214,0 +170774716661,214,0 +170774716708,215,0 +170774716758,214,0 +170774716806,214,0 +170774716855,215,0 +170774716903,215,0 +170774716953,215,0 +170774717000,215,0 +170774717050,215,0 +170774717098,214,0 +170774717146,214,0 +170774717194,214,0 +170774717243,214,0 +170774717291,214,0 +170774717341,215,0 +170774717389,215,0 +170774717436,215,0 +170774717484,215,0 +170774717534,215,0 +170774717582,215,0 +170774717631,215,0 +170774717679,215,0 +170774717729,215,0 +170774717776,215,0 +170774717826,215,0 +170774717875,215,0 +170774717925,214,0 +170774717974,215,0 +170774718022,214,0 +170774718072,215,0 +170774718121,214,0 +170774718169,215,0 +170774718217,215,0 +170774718265,215,0 +170774718313,215,0 +170774718361,215,0 +170774718409,215,0 +170774718456,215,0 +170774718504,215,0 +170774718552,215,0 +170774718602,215,0 +170774718651,215,0 +170774718699,214,0 +170774718749,214,0 +170774718797,214,0 +170774718846,214,0 +170774718896,215,0 +170774718944,214,0 +170774718993,214,0 +170774719042,215,0 +170774719090,215,0 +170774719140,215,0 +170774719188,215,0 +170774719236,215,0 +170774719284,215,0 +170774719332,215,0 +170774719381,215,0 +170774719429,215,0 +170774719479,215,0 +170774719528,214,0 +170774719578,214,0 +170774719627,214,0 +170774719675,214,0 +170774719723,214,0 +170774719771,214,0 +170774719819,214,0 +170774719868,215,0 +170774719916,215,0 +170774719964,215,0 +170774720012,215,0 +170774720060,215,0 +170774720108,215,0 +170774720155,215,0 +170774720203,215,0 +170774720251,215,0 +170774720299,214,0 +170774720347,214,0 +170774720395,214,0 +170774720443,214,0 +170774720491,214,0 +170774720539,215,0 +170774720587,215,0 +170774720634,215,0 +170774720682,215,0 +170774720730,215,0 +170774720778,215,0 +170774720826,215,0 +170774720874,215,0 +170774720922,215,0 +170774720970,215,0 +170774721018,215,0 +170774721066,215,0 +170774721116,214,0 +170774721163,214,0 +170774721213,214,0 +170774721261,214,0 +170774721309,214,0 +170774721357,214,0 +170774721406,214,0 +170774721454,215,0 +170774721504,215,0 +170774721553,215,0 +170774721602,215,0 +170774721650,215,0 +170774721700,215,0 +170774721748,215,0 +170774721797,215,0 +170774721847,215,0 +170774721895,214,0 +170774721943,214,0 +170774721991,214,0 +170774722038,214,0 +170774722086,214,0 +170774722136,215,0 +170774722185,215,0 +170774722235,215,0 +170774722284,215,0 +170774722334,215,0 +170774722382,215,0 +170774722429,215,0 +170774722477,215,0 +170774722525,215,0 +170774722575,215,0 +170774722624,215,0 +170774722672,214,0 +170774722722,214,0 +170774722769,214,0 +170774722817,214,0 +170774722865,214,0 +170774722915,214,0 +170774722963,215,0 +170774723011,214,0 +170774723058,215,0 +170774723106,214,0 +170774723156,215,0 +170774723204,215,0 +170774723253,215,0 +170774723301,215,0 +170774723351,215,0 +170774723399,215,0 +170774723448,215,0 +170774723498,214,0 +170774723547,214,0 +170774723597,214,0 +170774723644,214,0 +170774723694,214,0 +170774723743,214,0 +170774723791,215,0 +170774723839,215,0 +170774723889,215,0 +170774723938,215,0 +170774723986,215,0 +170774724034,215,0 +170774724083,215,0 +170774724131,215,0 +170774724179,215,0 +170774724229,215,0 +170774724278,215,0 +170774724328,214,0 +170774724375,214,0 +170774724425,214,0 +170774724474,214,0 +170774724524,214,0 +170774724571,214,0 +170774724619,214,0 +170774724667,214,0 +170774724715,214,0 +170774724763,215,0 +170774724811,215,0 +170774724860,215,0 +170774724908,215,0 +170774724956,215,0 +170774725004,215,0 +170774725052,215,0 +170774725099,214,0 +170774725147,213,0 +170774725197,214,0 +170774725245,214,0 +170774725294,214,0 +170774725342,214,0 +170774725390,214,0 +170774725438,214,0 +170774725486,214,0 +170774725534,214,0 +170774725582,215,0 +170774725630,214,0 +170774725678,215,0 +170774725725,215,0 +170774725775,215,0 +170774725823,215,0 +170774725871,215,0 +170774725919,214,0 +170774725967,213,0 +170774726015,213,0 +170774726063,213,0 +170774726110,214,0 +170774726160,214,0 +170774726208,214,0 +170774726256,214,0 +170774726305,214,0 +170774726353,214,0 +170774726401,214,0 +170774726448,214,0 +170774726496,215,0 +170774726544,215,0 +170774726592,214,0 +170774726640,215,0 +170774726688,214,0 +170774726736,213,0 +170774726784,213,0 +170774726832,213,0 +170774726880,214,0 +170774726928,214,0 +170774726976,214,0 +170774727025,214,0 +170774727073,214,0 +170774727121,214,0 +170774727170,214,0 +170774727218,214,0 +170774727266,215,0 +170774727314,215,0 +170774727364,215,0 +170774727412,215,0 +170774727460,215,0 +170774727508,214,0 +170774727555,213,0 +170774727603,213,0 +170774727651,214,0 +170774727699,214,0 +170774727747,214,0 +170774727795,214,0 +170774727843,214,0 +170774727891,214,0 +170774727939,214,0 +170774727987,214,0 +170774728036,214,0 +170774728084,215,0 +170774728134,215,0 +170774728181,214,0 +170774728229,215,0 +170774728279,215,0 +170774728327,214,0 +170774728375,213,0 +170774728423,214,0 +170774728471,214,0 +170774728520,214,0 +170774728568,214,0 +170774728616,214,0 +170774728664,214,0 +170774728713,214,0 +170774728761,214,0 +170774728809,214,0 +170774728857,215,0 +170774728905,215,0 +170774728953,215,0 +170774729002,215,0 +170774729050,215,0 +170774729100,215,0 +170774729148,214,0 +170774729197,214,0 +170774729247,214,0 +170774729296,214,0 +170774729346,214,0 +170774729393,214,0 +170774729441,214,0 +170774729489,214,0 +170774729537,215,0 +170774729585,215,0 +170774729635,215,0 +170774729683,215,0 +170774729732,215,0 +170774729780,215,0 +170774729828,215,0 +170774729876,215,0 +170774729924,214,0 +170774729973,214,0 +170774730021,214,0 +170774730069,214,0 +170774730119,215,0 +170774730166,214,0 +170774730214,214,0 +170774730264,215,0 +170774730313,215,0 +170774730361,215,0 +170774730411,215,0 +170774730460,215,0 +170774730508,215,0 +170774730556,215,0 +170774730605,215,0 +170774730653,215,0 +170774730701,215,0 +170774730751,214,0 +170774730800,215,0 +170774730848,214,0 +170774730896,215,0 +170774730944,215,0 +170774730993,214,0 +170774731043,215,0 +170774731091,215,0 +170774731139,215,0 +170774731187,215,0 +170774731236,215,0 +170774731284,215,0 +170774731333,215,0 +170774731381,215,0 +170774731431,215,0 +170774731479,215,0 +170774731528,214,0 +170774731578,215,0 +170774731625,214,0 +170774731673,215,0 +170774731721,215,0 +170774731769,215,0 +170774731817,215,0 +170774731865,215,0 +170774731914,215,0 +170774731962,215,0 +170774732010,215,0 +170774732058,215,0 +170774732106,215,0 +170774732154,215,0 +170774732203,214,0 +170774732253,215,0 +170774732301,215,0 +170774732349,215,0 +170774732397,215,0 +170774732446,215,0 +170774732494,215,0 +170774732542,215,0 +170774732590,215,0 +170774732639,215,0 +170774732687,215,0 +170774732735,215,0 +170774732783,215,0 +170774732831,215,0 +170774732879,215,0 +170774732927,215,0 +170774732975,215,0 +170774733023,215,0 +170774733071,215,0 +170774733119,215,0 +170774733167,214,0 +170774733215,214,0 +170774733262,215,0 +170774733310,215,0 +170774733360,215,0 +170774733408,215,0 +170774733456,215,0 +170774733504,215,0 +170774733553,215,0 +170774733601,215,0 +170774733649,215,0 +170774733699,215,0 +170774733746,215,0 +170774733794,215,0 +170774733842,215,0 +170774733892,215,0 +170774733941,214,0 +170774733989,214,0 +170774734037,214,0 +170774734085,214,0 +170774734135,214,0 +170774734184,214,0 +170774734234,214,0 +170774734282,215,0 +170774734331,215,0 +170774734379,215,0 +170774734427,215,0 +170774734475,215,0 +170774734525,215,0 +170774734574,215,0 +170774734623,215,0 +170774734673,215,0 +170774734721,214,0 +170774734769,214,0 +170774734817,214,0 +170774734865,214,0 +170774734913,214,0 +170774734962,214,0 +170774735012,214,0 +170774735060,214,0 +170774735109,214,0 +170774735159,214,0 +170774735208,215,0 +170774735256,215,0 +170774735304,215,0 +170774735353,215,0 +170774735403,215,0 +170774735451,215,0 +170774735499,215,0 +170774735547,214,0 +170774735594,214,0 +170774735642,214,0 +170774735690,214,0 +170774735740,214,0 +170774735788,214,0 +170774735837,214,0 +170774735885,214,0 +170774735933,215,0 +170774735983,215,0 +170774736032,215,0 +170774736080,215,0 +170774736128,215,0 +170774736177,215,0 +170774736227,215,0 +170774736275,215,0 +170774736323,214,0 +170774736372,214,0 +170774736422,214,0 +170774736471,214,0 +170774736519,214,0 +170774736567,214,0 +170774736615,214,0 +170774736663,215,0 +170774736712,215,0 +170774736760,215,0 +170774736810,215,0 +170774736858,215,0 +170774736905,215,0 +170774736955,215,0 +170774737003,215,0 +170774737052,215,0 +170774737100,215,0 +170774737150,213,0 +170774737199,213,0 +170774737247,214,0 +170774737296,214,0 +170774737344,214,0 +170774737394,214,0 +170774737442,214,0 +170774737491,214,0 +170774737541,215,0 +170774737590,215,0 +170774737638,215,0 +170774737686,215,0 +170774737734,215,0 +170774737783,215,0 +170774737831,215,0 +170774737879,215,0 +170774737927,214,0 +170774737975,213,0 +170774738023,213,0 +170774738071,214,0 +170774738119,214,0 +170774738168,214,0 +170774738216,214,0 +170774738264,214,0 +170774738314,214,0 +170774738362,214,0 +170774738409,215,0 +170774738457,215,0 +170774738507,215,0 +170774738555,215,0 +170774738604,215,0 +170774738654,215,0 +170774738702,214,0 +170774738749,213,0 +170774738797,213,0 +170774738847,214,0 +170774738896,214,0 +170774738944,214,0 +170774738992,214,0 +170774739042,214,0 +170774739091,214,0 +170774739141,214,0 +170774739190,215,0 +170774739238,214,0 +170774739286,215,0 +170774739334,215,0 +170774739382,215,0 +170774739430,215,0 +170774739478,215,0 +170774739526,214,0 +170774739574,213,0 +170774739623,213,0 +170774739671,214,0 +170774739719,214,0 +170774739768,214,0 +170774739818,214,0 +170774739866,214,0 +170774739915,214,0 +170774739963,214,0 +170774740011,214,0 +170774740059,214,0 +170774740107,214,0 +170774740156,215,0 +170774740204,215,0 +170774740252,215,0 +170774740300,215,0 +170774740348,213,0 +170774740396,213,0 +170774740444,214,0 +170774740492,214,0 +170774740540,214,0 +170774740588,214,0 +170774740635,214,0 +170774740683,214,0 +170774740733,214,0 +170774740781,215,0 +170774740829,214,0 +170774740877,214,0 +170774740926,215,0 +170774740974,215,0 +170774741024,215,0 +170774741074,215,0 +170774741121,214,0 +170774741169,214,0 +170774741217,214,0 +170774741266,214,0 +170774741316,214,0 +170774741364,214,0 +170774741413,214,0 +170774741461,214,0 +170774741509,215,0 +170774741559,215,0 +170774741608,215,0 +170774741656,215,0 +170774741705,215,0 +170774741753,215,0 +170774741801,215,0 +170774741849,215,0 +170774741899,215,0 +170774741948,215,0 +170774741996,214,0 +170774742046,215,0 +170774742095,215,0 +170774742145,215,0 +170774742193,215,0 +170774742242,214,0 +170774742290,215,0 +170774742340,215,0 +170774742389,215,0 +170774742437,215,0 +170774742485,215,0 +170774742533,215,0 +170774742581,215,0 +170774742629,215,0 +170774742678,215,0 +170774742726,214,0 +170774742774,214,0 +170774742822,215,0 +170774742870,215,0 +170774742918,215,0 +170774742967,215,0 +170774743015,215,0 +170774743063,215,0 +170774743111,215,0 +170774743160,215,0 +170774743210,215,0 +170774743258,215,0 +170774743307,215,0 +170774743357,215,0 +170774743406,215,0 +170774743454,215,0 +170774743503,215,0 +170774743551,214,0 +170774743599,214,0 +170774743647,214,0 +170774743695,215,0 +170774743745,215,0 +170774743793,215,0 +170774743842,215,0 +170774743892,215,0 +170774743940,215,0 +170774743989,215,0 +170774744037,215,0 +170774744085,215,0 +170774744134,215,0 +170774744182,215,0 +170774744230,215,0 +170774744278,215,0 +170774744326,215,0 +170774744374,215,0 +170774744422,215,0 +170774744470,215,0 +170774744518,215,0 +170774744566,215,0 +170774744613,215,0 +170774744663,215,0 +170774744711,215,0 +170774744760,215,0 +170774744808,215,0 +170774744858,215,0 +170774744906,215,0 +170774744955,215,0 +170774745003,215,0 +170774745051,215,0 +170774745100,215,0 +170774745148,215,0 +170774745196,215,0 +170774745244,215,0 +170774745292,215,0 +170774745340,215,0 +170774745389,215,0 +170774745437,215,0 +170774745487,215,0 +170774745535,215,0 +170774745582,215,0 +170774745630,215,0 +170774745680,215,0 +170774745728,215,0 +170774745776,215,0 +170774745823,215,0 +170774745871,215,0 +170774745921,214,0 +170774745969,214,0 +170774746018,214,0 +170774746066,214,0 +170774746116,214,0 +170774746163,215,0 +170774746211,215,0 +170774746261,215,0 +170774746310,215,0 +170774746358,215,0 +170774746408,215,0 +170774746456,215,0 +170774746505,215,0 +170774746553,215,0 +170774746601,215,0 +170774746649,215,0 +170774746698,215,0 +170774746748,214,0 +170774746796,214,0 +170774746843,214,0 +170774746891,214,0 +170774746939,214,0 +170774746987,214,0 +170774747037,214,0 +170774747086,215,0 +170774747134,214,0 +170774747182,215,0 +170774747231,215,0 +170774747279,215,0 +170774747329,215,0 +170774747378,215,0 +170774747426,215,0 +170774747474,215,0 +170774747524,214,0 +170774747573,214,0 +170774747621,214,0 +170774747669,214,0 +170774747719,214,0 +170774747768,214,0 +170774747817,214,0 +170774747867,214,0 +170774747915,214,0 +170774747963,214,0 +170774748011,215,0 +170774748059,215,0 +170774748106,215,0 +170774748154,215,0 +170774748202,215,0 +170774748252,215,0 +170774748301,215,0 +170774748349,214,0 +170774748397,214,0 +170774748445,214,0 +170774748493,214,0 +170774748541,214,0 +170774748589,214,0 +170774748636,214,0 +170774748684,214,0 +170774748732,215,0 +170774748780,215,0 +170774748828,215,0 +170774748876,215,0 +170774748924,215,0 +170774748973,215,0 +170774749021,215,0 +170774749071,215,0 +170774749119,214,0 +170774749168,214,0 +170774749216,214,0 +170774749266,214,0 +170774749315,214,0 +170774749365,214,0 +170774749414,214,0 +170774749464,215,0 +170774749511,215,0 +170774749561,215,0 +170774749610,215,0 +170774749660,215,0 +170774749708,215,0 +170774749757,215,0 +170774749807,215,0 +170774749855,215,0 +170774749903,215,0 +170774749950,214,0 +170774750000,214,0 +170774750048,214,0 +170774750096,214,0 +170774750144,214,0 +170774750192,214,0 +170774750241,214,0 +170774750291,214,0 +170774750340,214,0 +170774750390,215,0 +170774750437,215,0 +170774750485,215,0 +170774750533,215,0 +170774750581,215,0 +170774750629,215,0 +170774750677,215,0 +170774750725,214,0 +170774750773,214,0 +170774750822,214,0 +170774750870,214,0 +170774750918,214,0 +170774750966,214,0 +170774751016,214,0 +170774751063,214,0 +170774751111,214,0 +170774751159,214,0 +170774751207,215,0 +170774751255,215,0 +170774751304,215,0 +170774751352,215,0 +170774751400,215,0 +170774751448,214,0 +170774751496,214,0 +170774751544,214,0 +170774751593,214,0 +170774751641,214,0 +170774751689,214,0 +170774751739,214,0 +170774751787,214,0 +170774751836,214,0 +170774751884,214,0 +170774751932,214,0 +170774751980,215,0 +170774752028,215,0 +170774752077,215,0 +170774752127,215,0 +170774752175,215,0 +170774752223,214,0 +170774752271,215,0 +170774752319,214,0 +170774752366,214,0 +170774752416,214,0 +170774752464,214,0 +170774752513,214,0 +170774752561,214,0 +170774752611,214,0 +170774752659,214,0 +170774752708,215,0 +170774752758,215,0 +170774752806,215,0 +170774752853,215,0 +170774752903,215,0 +170774752952,215,0 +170774753000,215,0 +170774753048,215,0 +170774753098,215,0 +170774753146,214,0 +170774753193,214,0 +170774753241,214,0 +170774753291,214,0 +170774753338,214,0 +170774753386,214,0 +170774753434,214,0 +170774753484,214,0 +170774753533,215,0 +170774753581,215,0 +170774753631,215,0 +170774753678,215,0 +170774753728,215,0 +170774753777,215,0 +170774753827,215,0 +170774753875,215,0 +170774753923,214,0 +170774753972,214,0 +170774754020,214,0 +170774754068,214,0 +170774754116,214,0 +170774754164,214,0 +170774754214,214,0 +170774754263,214,0 +170774754313,214,0 +170774754362,214,0 +170774754410,215,0 +170774754458,215,0 +170774754506,215,0 +170774754554,215,0 +170774754603,215,0 +170774754653,215,0 +170774754702,215,0 +170774754750,214,0 +170774754799,214,0 +170774754847,214,0 +170774754897,214,0 +170774754945,214,0 +170774754993,214,0 +170774755041,214,0 +170774755089,215,0 +170774755137,215,0 +170774755184,215,0 +170774755232,215,0 +170774755282,215,0 +170774755330,215,0 +170774755379,215,0 +170774755427,215,0 +170774755475,215,0 +170774755523,215,0 +170774755572,214,0 +170774755622,214,0 +170774755671,214,0 +170774755721,214,0 +170774755770,214,0 +170774755820,214,0 +170774755869,214,0 +170774755917,215,0 +170774755965,214,0 +170774756013,215,0 +170774756061,215,0 +170774756109,215,0 +170774756157,215,0 +170774756207,215,0 +170774756256,215,0 +170774756304,215,0 +170774756354,214,0 +170774756403,214,0 +170774756451,214,0 +170774756499,214,0 +170774756547,214,0 +170774756595,214,0 +170774756643,214,0 +170774756691,215,0 +170774756739,215,0 +170774756787,215,0 +170774756834,215,0 +170774756884,215,0 +170774756932,215,0 +170774756980,215,0 +170774757029,215,0 +170774757079,215,0 +170774757127,215,0 +170774757176,214,0 +170774757224,214,0 +170774757272,214,0 +170774757320,214,0 +170774757369,214,0 +170774757419,214,0 +170774757468,215,0 +170774757516,214,0 +170774757566,215,0 +170774757614,215,0 +170774757662,215,0 +170774757711,215,0 +170774757761,215,0 +170774757809,215,0 +170774757858,215,0 +170774757906,215,0 +170774757954,214,0 +170774758002,214,0 +170774758050,214,0 +170774758098,214,0 +170774758147,214,0 +170774758195,214,0 +170774758243,214,0 +170774758291,214,0 +170774758339,214,0 +170774758387,214,0 +170774758435,214,0 +170774758483,215,0 +170774758532,215,0 +170774758582,215,0 +170774758630,215,0 +170774758678,215,0 +170774758727,215,0 +170774758775,214,0 +170774758825,214,0 +170774758872,214,0 +170774758922,214,0 +170774758970,214,0 +170774759018,214,0 +170774759065,214,0 +170774759113,214,0 +170774759161,214,0 +170774759211,215,0 +170774759258,215,0 +170774759306,215,0 +170774759354,215,0 +170774759402,215,0 +170774759450,215,0 +170774759497,215,0 +170774759545,215,0 +170774759593,214,0 +170774759641,214,0 +170774759689,214,0 +170774759738,214,0 +170774759786,214,0 +170774759834,214,0 +170774759881,215,0 +170774759929,214,0 +170774759977,215,0 +170774760025,215,0 +170774760073,215,0 +170774760122,215,0 +170774760170,215,0 +170774760218,215,0 +170774760266,215,0 +170774760314,214,0 +170774760361,215,0 +170774760409,214,0 +170774760457,214,0 +170774760505,214,0 +170774760554,214,0 +170774760602,214,0 +170774760652,214,0 +170774760700,215,0 +170774760747,215,0 +170774760795,215,0 +170774760843,215,0 +170774760891,215,0 +170774760939,215,0 +170774760988,215,0 +170774761038,215,0 +170774761086,214,0 +170774761134,215,0 +170774761183,214,0 +170774761233,214,0 +170774761280,214,0 +170774761330,214,0 +170774761379,214,0 +170774761429,214,0 +170774761477,215,0 +170774761526,215,0 +170774761576,215,0 +170774761625,215,0 +170774761675,215,0 +170774761723,215,0 +170774761771,215,0 +170774761818,215,0 +170774761866,215,0 +170774761916,215,0 +170774761965,214,0 +170774762015,214,0 +170774762063,214,0 +170774762111,214,0 +170774762160,214,0 +170774762208,215,0 +170774762256,215,0 +170774762304,215,0 +170774762353,215,0 +170774762403,215,0 +170774762452,215,0 +170774762500,215,0 +170774762548,215,0 +170774762596,215,0 +170774762645,215,0 +170774762695,215,0 +170774762744,215,0 +170774762794,215,0 +170774762843,215,0 +170774762893,215,0 +170774762941,215,0 +170774762990,215,0 +170774763038,215,0 +170774763087,215,0 +170774763135,215,0 +170774763185,215,0 +170774763234,215,0 +170774763284,215,0 +170774763332,215,0 +170774763380,215,0 +170774763429,215,0 +170774763477,215,0 +170774763525,215,0 +170774763574,215,0 +170774763624,214,0 +170774763672,214,0 +170774763720,214,0 +170774763768,214,0 +170774763817,214,0 +170774763865,215,0 +170774763915,215,0 +170774763963,215,0 +170774764012,215,0 +170774764062,215,0 +170774764109,215,0 +170774764159,215,0 +170774764207,215,0 +170774764255,215,0 +170774764304,215,0 +170774764352,214,0 +170774764400,214,0 +170774764448,213,0 +170774764495,213,0 +170774764543,214,0 +170774764591,214,0 +170774764639,214,0 +170774764687,214,0 +170774764735,214,0 +170774764783,214,0 +170774764830,214,0 +170774764878,214,0 +170774764926,214,0 +170774764976,215,0 +170774765023,215,0 +170774765071,214,0 +170774765119,215,0 +170774765167,214,0 +170774765215,213,0 +170774765263,213,0 +170774765310,214,0 +170774765358,214,0 +170774765406,213,0 +170774765454,214,0 +170774765502,214,0 +170774765550,214,0 +170774765597,214,0 +170774765645,214,0 +170774765693,214,0 +170774765741,214,0 +170774765789,215,0 +170774765837,215,0 +170774765884,215,0 +170774765932,215,0 +170774765980,215,0 +170774766028,214,0 +170774766076,214,0 +170774766124,214,0 +170774766173,214,0 +170774766221,214,0 +170774766269,214,0 +170774766317,214,0 +170774766366,215,0 +170774766414,215,0 +170774766463,215,0 +170774766511,215,0 +170774766559,215,0 +170774766607,215,0 +170774766655,215,0 +170774766704,215,0 +170774766752,215,0 +170774766801,214,0 +170774766849,214,0 +170774766897,214,0 +170774766945,215,0 +170774766994,215,0 +170774767042,215,0 +170774767092,215,0 +170774767140,215,0 +170774767189,215,0 +170774767239,215,0 +170774767288,215,0 +170774767336,215,0 +170774767384,215,0 +170774767432,215,0 +170774767480,215,0 +170774767528,215,0 +170774767578,215,0 +170774767626,214,0 +170774767675,214,0 +170774767723,215,0 +170774767772,215,0 +170774767822,215,0 +170774767870,215,0 +170774767918,215,0 +170774767966,215,0 +170774768015,215,0 +170774768063,215,0 +170774768111,215,0 +170774768159,215,0 +170774768207,215,0 +170774768256,215,0 +170774768306,215,0 +170774768355,215,0 +170774768403,214,0 +170774768451,214,0 +170774768499,214,0 +170774768548,214,0 +170774768596,214,0 +170774768644,214,0 +170774768692,214,0 +170774768740,214,0 +170774768789,215,0 +170774768839,215,0 +170774768887,215,0 +170774768935,215,0 +170774768984,215,0 +170774769032,215,0 +170774769080,215,0 +170774769128,215,0 +170774769176,215,0 +170774769224,214,0 +170774769272,214,0 +170774769321,214,0 +170774769369,214,0 +170774769417,214,0 +170774769467,214,0 +170774769515,215,0 +170774769562,215,0 +170774769612,214,0 +170774769660,215,0 +170774769708,215,0 +170774769756,215,0 +170774769804,215,0 +170774769852,215,0 +170774769900,215,0 +170774769947,215,0 +170774769997,215,0 +170774770045,214,0 +170774770093,214,0 +170774770141,214,0 +170774770190,214,0 +170774770238,214,0 +170774770288,214,0 +170774770335,215,0 +170774770383,215,0 +170774770431,215,0 +170774770479,215,0 +170774770527,215,0 +170774770575,215,0 +170774770623,215,0 +170774770671,215,0 +170774770720,215,0 +170774770768,215,0 +170774770816,214,0 +170774770866,214,0 +170774770914,214,0 +170774770963,214,0 +170774771013,215,0 +170774771060,215,0 +170774771108,214,0 +170774771156,214,0 +170774771204,215,0 +170774771252,215,0 +170774771300,215,0 +170774771348,215,0 +170774771396,215,0 +170774771444,215,0 +170774771492,215,0 +170774771541,215,0 +170774771589,215,0 +170774771637,214,0 +170774771686,214,0 +170774771736,214,0 +170774771784,215,0 +170774771831,214,0 +170774771879,214,0 +170774771927,215,0 +170774771975,215,0 +170774772023,215,0 +170774772071,215,0 +170774772118,215,0 +170774772166,215,0 +170774772214,215,0 +170774772262,215,0 +170774772310,215,0 +170774772357,215,0 +170774772405,215,0 +170774772453,214,0 +170774772501,214,0 +170774772549,214,0 +170774772596,214,0 +170774772644,214,0 +170774772692,215,0 +170774772740,215,0 +170774772788,215,0 +170774772836,215,0 +170774772885,215,0 +170774772934,215,0 +170774772982,215,0 +170774773030,215,0 +170774773078,215,0 +170774773126,215,0 +170774773174,215,0 +170774773222,214,0 +170774773270,214,0 +170774773318,214,0 +170774773367,214,0 +170774773415,214,0 +170774773465,214,0 +170774773513,214,0 +170774773561,214,0 +170774773608,215,0 +170774773657,215,0 +170774773704,215,0 +170774773752,215,0 +170774773800,215,0 +170774773848,215,0 +170774773898,215,0 +170774773946,215,0 +170774773995,214,0 +170774774045,214,0 +170774774093,214,0 +170774774141,214,0 +170774774189,214,0 +170774774238,214,0 +170774774288,214,0 +170774774337,214,0 +170774774387,214,0 +170774774436,214,0 +170774774484,214,0 +170774774532,215,0 +170774774580,215,0 +170774774628,215,0 +170774774676,215,0 +170774774724,215,0 +170774774772,215,0 +170774774820,215,0 +170774774868,214,0 +170774774917,214,0 +170774774967,214,0 +170774775014,214,0 +170774775062,214,0 +170774775110,214,0 +170774775158,214,0 +170774775206,214,0 +170774775256,214,0 +170774775304,215,0 +170774775351,215,0 +170774775399,215,0 +170774775447,215,0 +170774775495,215,0 +170774775545,215,0 +170774775593,215,0 +170774775641,214,0 +170774775688,214,0 +170774775736,214,0 +170774775786,214,0 +170774775834,214,0 +170774775882,214,0 +170774775930,214,0 +170774775977,214,0 +170774776025,214,0 +170774776073,215,0 +170774776121,214,0 +170774776169,215,0 +170774776217,215,0 +170774776266,215,0 +170774776316,215,0 +170774776364,215,0 +170774776412,215,0 +170774776460,213,0 +170774776509,214,0 +170774776559,214,0 +170774776607,214,0 +170774776655,214,0 +170774776703,214,0 +170774776751,214,0 +170774776800,214,0 +170774776848,214,0 +170774776897,214,0 +170774776947,214,0 +170774776996,214,0 +170774777046,215,0 +170774777094,215,0 +170774777143,215,0 +170774777191,215,0 +170774777239,214,0 +170774777287,213,0 +170774777335,214,0 +170774777383,214,0 +170774777431,214,0 +170774777479,214,0 +170774777527,214,0 +170774777575,214,0 +170774777623,214,0 +170774777671,214,0 +170774777718,214,0 +170774777766,215,0 +170774777816,215,0 +170774777865,215,0 +170774777913,215,0 +170774777961,215,0 +170774778009,215,0 +170774778057,214,0 +170774778107,214,0 +170774778155,214,0 +170774778202,214,0 +170774778250,214,0 +170774778298,214,0 +170774778348,214,0 +170774778397,214,0 +170774778447,215,0 +170774778495,215,0 +170774778543,215,0 +170774778591,215,0 +170774778640,215,0 +170774778688,215,0 +170774778738,215,0 +170774778787,215,0 +170774778835,214,0 +170774778883,214,0 +170774778931,214,0 +170774778979,214,0 +170774779028,214,0 +170774779076,214,0 +170774779126,214,0 +170774779174,215,0 +170774779223,215,0 +170774779271,215,0 +170774779319,215,0 +170774779367,215,0 +170774779416,215,0 +170774779464,215,0 +170774779514,215,0 +170774779563,215,0 +170774779611,215,0 +170774779661,214,0 +170774779709,214,0 +170774779758,214,0 +170774779808,215,0 +170774779857,215,0 +170774779905,215,0 +170774779953,215,0 +170774780003,215,0 +170774780051,215,0 +170774780099,215,0 +170774780148,215,0 +170774780196,215,0 +170774780244,215,0 +170774780293,215,0 +170774780343,215,0 +170774780391,215,0 +170774780439,214,0 +170774780487,214,0 +170774780537,215,0 +170774780586,214,0 +170774780634,214,0 +170774780682,214,0 +170774780730,215,0 +170774780778,215,0 +170774780827,215,0 +170774780875,215,0 +170774780923,215,0 +170774780972,215,0 +170774781020,215,0 +170774781068,215,0 +170774781116,215,0 +170774781164,215,0 +170774781212,215,0 +170774781261,214,0 +170774781309,215,0 +170774781357,215,0 +170774781405,215,0 +170774781453,215,0 +170774781503,215,0 +170774781551,215,0 +170774781598,215,0 +170774781646,215,0 +170774781694,215,0 +170774781742,215,0 +170774781790,215,0 +170774781839,215,0 +170774781887,215,0 +170774781936,215,0 +170774781986,215,0 +170774782034,214,0 +170774782083,214,0 +170774782131,215,0 +170774782181,215,0 +170774782229,215,0 +170774782276,215,0 +170774782324,215,0 +170774782374,215,0 +170774782422,215,0 +170774782470,215,0 +170774782518,215,0 +170774782566,215,0 +170774782615,215,0 +170774782665,215,0 +170774782713,215,0 +170774782761,215,0 +170774782809,214,0 +170774782857,214,0 +170774782905,214,0 +170774782953,215,0 +170774783000,215,0 +170774783048,215,0 +170774783098,215,0 +170774783146,215,0 +170774783194,215,0 +170774783242,215,0 +170774783291,215,0 +170774783339,215,0 +170774783389,215,0 +170774783438,215,0 +170774783486,215,0 +170774783534,215,0 +170774783584,215,0 +170774783631,215,0 +170774783679,214,0 +170774783727,214,0 +170774783777,214,0 +170774783826,214,0 +170774783874,214,0 +170774783922,214,0 +170774783970,214,0 +170774784020,215,0 +170774784067,215,0 +170774784115,215,0 +170774784163,215,0 +170774784213,215,0 +170774784261,215,0 +170774784310,215,0 +170774784358,215,0 +170774784408,215,0 +170774784456,214,0 +170774784504,214,0 +170774784553,214,0 +170774784601,214,0 +170774784650,214,0 +170774784700,214,0 +170774784748,214,0 +170774784796,215,0 +170774784845,214,0 +170774784893,215,0 +170774784943,215,0 +170774784991,215,0 +170774785039,215,0 +170774785088,215,0 +170774785137,215,0 +170774785185,215,0 +170774785235,215,0 +170774785284,214,0 +170774785334,214,0 +170774785383,214,0 +170774785433,214,0 +170774785481,214,0 +170774785529,214,0 +170774785577,214,0 +170774785626,215,0 +170774785676,214,0 +170774785725,215,0 +170774785773,215,0 +170774785821,215,0 +170774785869,215,0 +170774785917,215,0 +170774785966,215,0 +170774786016,215,0 +170774786064,214,0 +170774786111,214,0 +170774786159,214,0 +170774786207,213,0 +170774786257,214,0 +170774786305,214,0 +170774786352,214,0 +170774786400,214,0 +170774786448,215,0 +170774786496,214,0 +170774786545,215,0 +170774786593,215,0 +170774786643,215,0 +170774786691,215,0 +170774786740,215,0 +170774786788,215,0 +170774786836,215,0 +170774786885,213,0 +170774786933,214,0 +170774786981,214,0 +170774787029,214,0 +170774787077,214,0 +170774787125,214,0 +170774787174,214,0 +170774787224,214,0 +170774787273,214,0 +170774787323,215,0 +170774787371,215,0 +170774787419,215,0 +170774787468,215,0 +170774787516,215,0 +170774787566,215,0 +170774787614,215,0 +170774787662,214,0 +170774787710,214,0 +170774787758,213,0 +170774787807,214,0 +170774787855,214,0 +170774787903,214,0 +170774787951,214,0 +170774788000,214,0 +170774788048,214,0 +170774788096,214,0 +170774788144,214,0 +170774788192,215,0 +170774788240,215,0 +170774788288,215,0 +170774788337,215,0 +170774788387,215,0 +170774788436,215,0 +170774788484,214,0 +170774788534,213,0 +170774788583,214,0 +170774788633,214,0 +170774788681,214,0 +170774788730,214,0 +170774788778,214,0 +170774788827,214,0 +170774788877,214,0 +170774788925,214,0 +170774788973,214,0 +170774789021,214,0 +170774789069,215,0 +170774789118,214,0 +170774789166,215,0 +170774789216,215,0 +170774789265,214,0 +170774789313,213,0 +170774789363,214,0 +170774789411,214,0 +170774789460,214,0 +170774789510,214,0 +170774789558,214,0 +170774789605,214,0 +170774789655,214,0 +170774789704,214,0 +170774789752,214,0 +170774789802,214,0 +170774789851,214,0 +170774789899,215,0 +170774789949,215,0 +170774789997,215,0 +170774790044,215,0 +170774790094,214,0 +170774790142,214,0 +170774790191,214,0 +170774790239,214,0 +170774790287,214,0 +170774790335,214,0 +170774790383,214,0 +170774790433,214,0 +170774790482,214,0 +170774790530,215,0 +170774790578,215,0 +170774790626,215,0 +170774790674,215,0 +170774790723,215,0 +170774790773,215,0 +170774790821,215,0 +170774790870,214,0 +170774790920,214,0 +170774790967,214,0 +170774791015,214,0 +170774791063,214,0 +170774791111,214,0 +170774791161,215,0 +170774791210,215,0 +170774791260,215,0 +170774791308,215,0 +170774791357,215,0 +170774791405,215,0 +170774791453,215,0 +170774791501,215,0 +170774791549,215,0 +170774791597,215,0 +170774791645,215,0 +170774791694,214,0 +170774791744,214,0 +170774791792,214,0 +170774791839,214,0 +170774791889,215,0 +170774791938,215,0 +170774791986,215,0 +170774792034,215,0 +170774792082,215,0 +170774792132,215,0 +170774792180,215,0 +170774792229,215,0 +170774792279,215,0 +170774792327,215,0 +170774792376,215,0 +170774792426,215,0 +170774792474,215,0 +170774792522,214,0 +170774792570,214,0 +170774792617,214,0 +170774792665,214,0 +170774792713,215,0 +170774792761,215,0 +170774792809,215,0 +170774792857,215,0 +170774792905,215,0 +170774792954,215,0 +170774793004,215,0 +170774793052,215,0 +170774793100,215,0 +170774793149,215,0 +170774793197,215,0 +170774793245,215,0 +170774793293,214,0 +170774793340,214,0 +170774793388,214,0 +170774793436,214,0 +170774793484,214,0 +170774793532,215,0 +170774793580,215,0 +170774793628,215,0 +170774793678,215,0 +170774793726,215,0 +170774793774,215,0 +170774793822,215,0 +170774793870,215,0 +170774793918,215,0 +170774793966,215,0 +170774794015,215,0 +170774794065,215,0 +170774794113,214,0 +170774794161,214,0 +170774794209,214,0 +170774794256,214,0 +170774794304,214,0 +170774794352,214,0 +170774794402,214,0 +170774794450,215,0 +170774794498,215,0 +170774794546,215,0 +170774794595,215,0 +170774794643,215,0 +170774794691,215,0 +170774794739,215,0 +170774794787,215,0 +170774794835,215,0 +170774794884,215,0 +170774794932,214,0 +170774794980,214,0 +170774795028,214,0 +170774795077,214,0 +170774795125,214,0 +170774795173,215,0 +170774795221,215,0 +170774795271,215,0 +170774795320,215,0 +170774795370,215,0 +170774795419,215,0 +170774795467,215,0 +170774795517,215,0 +170774795566,215,0 +170774795616,215,0 +170774795665,215,0 +170774795713,215,0 +170774795763,214,0 +170774795812,214,0 +170774795860,214,0 +170774795910,214,0 +170774795958,214,0 +170774796007,214,0 +170774796055,214,0 +170774796105,214,0 +170774796153,215,0 +170774796202,215,0 +170774796252,215,0 +170774796300,215,0 +170774796348,215,0 +170774796395,215,0 +170774796443,215,0 +170774796491,215,0 +170774796539,215,0 +170774796587,214,0 +170774796637,214,0 +170774796686,214,0 +170774796736,214,0 +170774796784,214,0 +170774796833,214,0 +170774796881,215,0 +170774796931,214,0 +170774796978,214,0 +170774797028,214,0 +170774797076,215,0 +170774797125,215,0 +170774797173,215,0 +170774797223,215,0 +170774797272,215,0 +170774797322,215,0 +170774797371,215,0 +170774797419,214,0 +170774797467,214,0 +170774797515,214,0 +170774797563,214,0 +170774797613,214,0 +170774797660,214,0 +170774797708,214,0 +170774797758,214,0 +170774797806,214,0 +170774797855,215,0 +170774797903,214,0 +170774797951,215,0 +170774798001,215,0 +170774798049,215,0 +170774798098,215,0 +170774798148,215,0 +170774798197,215,0 +170774798247,214,0 +170774798294,214,0 +170774798342,214,0 +170774798390,214,0 +170774798438,214,0 +170774798487,214,0 +170774798535,214,0 +170774798583,214,0 +170774798631,215,0 +170774798679,215,0 +170774798727,215,0 +170774798777,215,0 +170774798825,215,0 +170774798874,215,0 +170774798922,215,0 +170774798971,215,0 +170774799019,215,0 +170774799067,214,0 +170774799115,214,0 +170774799163,214,0 +170774799211,214,0 +170774799259,214,0 +170774799307,214,0 +170774799356,214,0 +170774799406,214,0 +170774799455,215,0 +170774799503,214,0 +170774799551,215,0 +170774799599,215,0 +170774799648,215,0 +170774799698,215,0 +170774799747,215,0 +170774799795,215,0 +170774799843,214,0 +170774799893,214,0 +170774799940,214,0 +170774799990,214,0 +170774800038,214,0 +170774800086,214,0 +170774800135,214,0 +170774800183,214,0 +170774800233,214,0 +170774800281,214,0 +170774800329,215,0 +170774800376,215,0 +170774800426,215,0 +170774800474,215,0 +170774800522,215,0 +170774800570,215,0 +170774800618,215,0 +170774800666,215,0 +170774800714,215,0 +170774800762,214,0 +170774800811,214,0 +170774800859,214,0 +170774800907,214,0 +170774800955,214,0 +170774801004,214,0 +170774801052,214,0 +170774801100,214,0 +170774801148,214,0 +170774801197,215,0 +170774801245,215,0 +170774801293,215,0 +170774801341,215,0 +170774801391,216,0 +170774801439,215,0 +170774801487,215,0 +170774801534,215,0 +170774801582,214,0 +170774801630,214,0 +170774801678,214,0 +170774801728,214,0 +170774801777,214,0 +170774801825,214,0 +170774801874,214,0 +170774801922,214,0 +170774801970,215,0 +170774802020,214,0 +170774802068,215,0 +170774802117,215,0 +170774802167,215,0 +170774802215,215,0 +170774802262,215,0 +170774802310,215,0 +170774802358,214,0 +170774802408,214,0 +170774802456,214,0 +170774802505,214,0 +170774802555,214,0 +170774802603,214,0 +170774802650,214,0 +170774802698,214,0 +170774802748,214,0 +170774802796,215,0 +170774802845,215,0 +170774802893,215,0 +170774802943,215,0 +170774802992,215,0 +170774803040,215,0 +170774803088,215,0 +170774803137,215,0 +170774803185,214,0 +170774803233,214,0 +170774803283,214,0 +170774803332,214,0 +170774803380,214,0 +170774803428,214,0 +170774803476,214,0 +170774803524,214,0 +170774803572,214,0 +170774803620,215,0 +170774803669,215,0 +170774803719,215,0 +170774803767,215,0 +170774803815,215,0 +170774803863,215,0 +170774803911,215,0 +170774803958,215,0 +170774804006,215,0 +170774804054,214,0 +170774804102,214,0 +170774804150,214,0 +170774804198,214,0 +170774804246,214,0 +170774804295,214,0 +170774804345,214,0 +170774804394,215,0 +170774804442,214,0 +170774804492,215,0 +170774804541,215,0 +170774804591,215,0 +170774804638,215,0 +170774804688,215,0 +170774804736,215,0 +170774804785,215,0 +170774804833,215,0 +170774804883,214,0 +170774804931,214,0 +170774804979,214,0 +170774805027,214,0 +170774805076,214,0 +170774805124,214,0 +170774805172,214,0 +170774805220,214,0 +170774805269,214,0 +170774805317,214,0 +170774805365,215,0 +170774805413,215,0 +170774805462,215,0 +170774805510,215,0 +170774805558,215,0 +170774805606,215,0 +170774805656,215,0 +170774805705,214,0 +170774805755,214,0 +170774805804,214,0 +170774805854,214,0 +170774805901,214,0 +170774805949,214,0 +170774805999,214,0 +170774806047,214,0 +170774806096,214,0 +170774806146,214,0 +170774806194,215,0 +170774806242,215,0 +170774806289,215,0 +170774806337,215,0 +170774806387,215,0 +170774806435,215,0 +170774806483,215,0 +170774806531,214,0 +170774806578,214,0 +170774806626,214,0 +170774806674,214,0 +170774806724,214,0 +170774806771,214,0 +170774806819,215,0 +170774806869,215,0 +170774806917,215,0 +170774806965,215,0 +170774807014,215,0 +170774807062,215,0 +170774807110,215,0 +170774807159,215,0 +170774807209,215,0 +170774807257,215,0 +170774807304,215,0 +170774807352,214,0 +170774807400,214,0 +170774807448,214,0 +170774807496,214,0 +170774807544,214,0 +170774807592,214,0 +170774807639,215,0 +170774807687,215,0 +170774807735,215,0 +170774807783,215,0 +170774807832,215,0 +170774807880,215,0 +170774807928,215,0 +170774807976,215,0 +170774808024,215,0 +170774808072,215,0 +170774808120,215,0 +170774808168,214,0 +170774808216,214,0 +170774808265,214,0 +170774808315,214,0 +170774808363,214,0 +170774808411,214,0 +170774808460,214,0 +170774808508,214,0 +170774808558,214,0 +170774808606,215,0 +170774808654,215,0 +170774808701,215,0 +170774808751,215,0 +170774808799,215,0 +170774808848,215,0 +170774808896,215,0 +170774808944,215,0 +170774808992,214,0 +170774809042,214,0 +170774809091,213,0 +170774809141,214,0 +170774809189,214,0 +170774809236,214,0 +170774809284,214,0 +170774809332,214,0 +170774809380,214,0 +170774809428,214,0 +170774809477,214,0 +170774809527,214,0 +170774809575,215,0 +170774809624,215,0 +170774809674,215,0 +170774809721,215,0 +170774809769,215,0 +170774809817,215,0 +170774809867,214,0 +170774809915,214,0 +170774809963,214,0 +170774810012,214,0 +170774810062,214,0 +170774810111,214,0 +170774810159,214,0 +170774810207,215,0 +170774810256,215,0 +170774810304,215,0 +170774810354,215,0 +170774810402,215,0 +170774810451,215,0 +170774810501,215,0 +170774810550,215,0 +170774810598,215,0 +170774810648,214,0 +170774810697,214,0 +170774810747,214,0 +170774810795,214,0 +170774810844,215,0 +170774810892,215,0 +170774810940,215,0 +170774810988,215,0 +170774811037,215,0 +170774811085,215,0 +170774811133,215,0 +170774811183,215,0 +170774811231,215,0 +170774811280,215,0 +170774811328,215,0 +170774811377,215,0 +170774811425,215,0 +170774811473,215,0 +170774811523,214,0 +170774811571,214,0 +170774811619,214,0 +170774811666,214,0 +170774811714,215,0 +170774811764,215,0 +170774811813,215,0 +170774811861,215,0 +170774811909,215,0 +170774811957,215,0 +170774812005,215,0 +170774812054,215,0 +170774812102,215,0 +170774812151,215,0 +170774812199,215,0 +170774812249,215,0 +170774812298,215,0 +170774812346,214,0 +170774812394,214,0 +170774812443,214,0 +170774812493,214,0 +170774812541,214,0 +170774812588,216,0 +170774812636,215,0 +170774812684,215,0 +170774812732,215,0 +170774812780,215,0 +170774812830,216,0 +170774812878,215,0 +170774812925,215,0 +170774812973,215,0 +170774813023,215,0 +170774813071,215,0 +170774813119,214,0 +170774813167,214,0 +170774813216,214,0 +170774813264,214,0 +170774813313,214,0 +170774813363,214,0 +170774813411,214,0 +170774813460,214,0 +170774813510,215,0 +170774813558,215,0 +170774813606,215,0 +170774813654,215,0 +170774813702,215,0 +170774813750,215,0 +170774813799,215,0 +170774813847,215,0 +170774813895,215,0 +170774813943,215,0 +170774813993,214,0 +170774814040,214,0 +170774814088,214,0 +170774814136,214,0 +170774814184,214,0 +170774814232,214,0 +170774814280,214,0 +170774814329,215,0 +170774814379,214,0 +170774814428,214,0 +170774814478,215,0 +170774814526,214,0 +170774814573,215,0 +170774814621,215,0 +170774814671,215,0 +170774814719,215,0 +170774814768,215,0 +170774814816,214,0 +170774814864,214,0 +170774814912,214,0 +170774814960,214,0 +170774815009,214,0 +170774815057,214,0 +170774815106,214,0 +170774815156,214,0 +170774815204,214,0 +170774815252,214,0 +170774815300,214,0 +170774815349,214,0 +170774815397,215,0 +170774815446,215,0 +170774815496,215,0 +170774815546,215,0 +170774815593,215,0 +170774815641,213,0 +170774815691,213,0 +170774815740,214,0 +170774815788,214,0 +170774815836,214,0 +170774815884,214,0 +170774815932,214,0 +170774815980,214,0 +170774816028,214,0 +170774816076,214,0 +170774816124,214,0 +170774816173,214,0 +170774816221,214,0 +170774816269,215,0 +170774816317,215,0 +170774816365,215,0 +170774816412,214,0 +170774816460,214,0 +170774816510,214,0 +170774816558,214,0 +170774816607,214,0 +170774816655,214,0 +170774816703,214,0 +170774816753,214,0 +170774816802,214,0 +170774816850,214,0 +170774816900,214,0 +170774816947,215,0 +170774816995,215,0 +170774817043,215,0 +170774817091,215,0 +170774817139,215,0 +170774817189,215,0 +170774817236,215,0 +170774817284,214,0 +170774817332,214,0 +170774817380,214,0 +170774817428,214,0 +170774817478,214,0 +170774817527,214,0 +170774817575,214,0 +170774817625,214,0 +170774817674,215,0 +170774817722,215,0 +170774817770,215,0 +170774817819,215,0 +170774817869,215,0 +170774817917,215,0 +170774817964,215,0 +170774818012,215,0 +170774818060,215,0 +170774818108,214,0 +170774818156,214,0 +170774818204,214,0 +170774818254,214,0 +170774818302,214,0 +170774818351,214,0 +170774818401,214,0 +170774818450,214,0 +170774818498,214,0 +170774818547,215,0 +170774818597,215,0 +170774818645,215,0 +170774818694,215,0 +170774818742,215,0 +170774818792,215,0 +170774818840,215,0 +170774818888,215,0 +170774818936,214,0 +170774818983,214,0 +170774819031,214,0 +170774819081,214,0 +170774819129,214,0 +170774819176,214,0 +170774819226,214,0 +170774819275,215,0 +170774819323,214,0 +170774819371,215,0 +170774819421,215,0 +170774819470,215,0 +170774819518,215,0 +170774819566,215,0 +170774819614,215,0 +170774819662,215,0 +170774819710,215,0 +170774819757,214,0 +170774819805,214,0 +170774819855,214,0 +170774819904,214,0 +170774819952,215,0 +170774820002,214,0 +170774820050,214,0 +170774820099,215,0 +170774820147,214,0 +170774820197,214,0 +170774820245,215,0 +170774820294,215,0 +170774820342,215,0 +170774820392,215,0 +170774820441,215,0 +170774820491,215,0 +170774820540,215,0 +170774820588,214,0 +170774820636,214,0 +170774820684,214,0 +170774820732,214,0 +170774820780,214,0 +170774820829,214,0 +170774820879,214,0 +170774820926,215,0 +170774820974,215,0 +170774821022,215,0 +170774821070,215,0 +170774821118,215,0 +170774821166,215,0 +170774821214,215,0 +170774821261,215,0 +170774821311,215,0 +170774821359,215,0 +170774821408,214,0 +170774821458,214,0 +170774821507,214,0 +170774821555,214,0 +170774821605,214,0 +170774821654,215,0 +170774821702,215,0 +170774821752,214,0 +170774821801,215,0 +170774821849,215,0 +170774821898,215,0 +170774821946,215,0 +170774821994,215,0 +170774822042,215,0 +170774822090,215,0 +170774822140,215,0 +170774822189,215,0 +170774822237,214,0 +170774822287,214,0 +170774822336,214,0 +170774822384,214,0 +170774822432,214,0 +170774822480,214,0 +170774822528,214,0 +170774822576,214,0 +170774822624,214,0 +170774822671,215,0 +170774822719,215,0 +170774822769,215,0 +170774822817,215,0 +170774822865,215,0 +170774822914,215,0 +170774822962,215,0 +170774823012,215,0 +170774823060,214,0 +170774823109,214,0 +170774823157,214,0 +170774823207,214,0 +170774823254,214,0 +170774823302,214,0 +170774823350,215,0 +170774823400,215,0 +170774823449,214,0 +170774823497,215,0 +170774823547,215,0 +170774823596,215,0 +170774823646,215,0 +170774823694,215,0 +170774823742,215,0 +170774823790,215,0 +170774823838,215,0 +170774823885,214,0 +170774823935,214,0 +170774823984,214,0 +170774824034,214,0 +170774824082,214,0 +170774824130,214,0 +170774824177,214,0 +170774824225,215,0 +170774824273,214,0 +170774824321,214,0 +170774824369,215,0 +170774824417,215,0 +170774824465,215,0 +170774824512,215,0 +170774824560,215,0 +170774824608,215,0 +170774824656,215,0 +170774824704,214,0 +170774824752,214,0 +170774824801,214,0 +170774824849,214,0 +170774824897,214,0 +170774824945,214,0 +170774824993,214,0 +170774825041,214,0 +170774825089,214,0 +170774825138,214,0 +170774825187,214,0 +170774825235,215,0 +170774825285,215,0 +170774825333,215,0 +170774825382,215,0 +170774825432,215,0 +170774825481,215,0 +170774825529,214,0 +170774825577,214,0 +170774825625,214,0 +170774825674,214,0 +170774825722,214,0 +170774825770,214,0 +170774825820,214,0 +170774825868,214,0 +170774825916,215,0 +170774825963,215,0 +170774826011,215,0 +170774826059,215,0 +170774826107,215,0 +170774826155,215,0 +170774826203,215,0 +170774826252,215,0 +170774826300,215,0 +170774826348,214,0 +170774826396,214,0 +170774826444,214,0 +170774826492,214,0 +170774826540,214,0 +170774826588,214,0 +170774826635,214,0 +170774826685,214,0 +170774826733,214,0 +170774826781,214,0 +170774826829,215,0 +170774826878,215,0 +170774826927,215,0 +170774826975,215,0 +170774827023,215,0 +170774827071,215,0 +170774827120,215,0 +170774827168,214,0 +170774827216,213,0 +170774827264,213,0 +170774827312,213,0 +170774827360,214,0 +170774827408,214,0 +170774827456,214,0 +170774827504,214,0 +170774827553,214,0 +170774827601,214,0 +170774827649,214,0 +170774827697,214,0 +170774827746,214,0 +170774827794,214,0 +170774827844,215,0 +170774827893,215,0 +170774827941,215,0 +170774827991,214,0 +170774828040,213,0 +170774828088,213,0 +170774828136,213,0 +170774828184,214,0 +170774828232,214,0 +170774828280,214,0 +170774828328,214,0 +170774828375,214,0 +170774828423,214,0 +170774828471,214,0 +170774828519,215,0 +170774828567,215,0 +170774828615,215,0 +170774828663,215,0 +170774828711,215,0 +170774828759,215,0 +170774828807,215,0 +170774828855,214,0 +170774828903,214,0 +170774828951,213,0 +170774828999,214,0 +170774829046,214,0 +170774829094,214,0 +170774829142,214,0 +170774829190,214,0 +170774829238,214,0 +170774829288,214,0 +170774829337,214,0 +170774829385,215,0 +170774829433,215,0 +170774829480,215,0 +170774829528,215,0 +170774829576,215,0 +170774829626,215,0 +170774829674,214,0 +170774829723,213,0 +170774829771,214,0 +170774829819,214,0 +170774829867,213,0 +170774829915,214,0 +170774829962,214,0 +170774830010,214,0 +170774830058,214,0 +170774830106,214,0 +170774830156,214,0 +170774830203,214,0 +170774830253,214,0 +170774830301,215,0 +170774830349,215,0 +170774830397,215,0 +170774830445,214,0 +170774830494,214,0 +170774830544,214,0 +170774830591,213,0 +170774830641,213,0 +170774830689,214,0 +170774830738,214,0 +170774830786,214,0 +170774830836,214,0 +170774830885,214,0 +170774830933,214,0 +170774830982,215,0 +170774831032,215,0 +170774831081,215,0 +170774831129,215,0 +170774831177,215,0 +170774831225,215,0 +170774831273,215,0 +170774831321,214,0 +170774831369,214,0 +170774831417,214,0 +170774831465,214,0 +170774831513,214,0 +170774831561,214,0 +170774831609,214,0 +170774831657,214,0 +170774831704,215,0 +170774831754,215,0 +170774831802,215,0 +170774831851,215,0 +170774831899,215,0 +170774831947,215,0 +170774831995,215,0 +170774832043,215,0 +170774832092,215,0 +170774832140,214,0 +170774832188,214,0 +170774832236,214,0 +170774832284,214,0 +170774832334,215,0 +170774832382,215,0 +170774832429,215,0 +170774832477,215,0 +170774832525,215,0 +170774832575,215,0 +170774832623,215,0 +170774832670,215,0 +170774832720,215,0 +170774832769,215,0 +170774832819,215,0 +170774832867,215,0 +170774832916,215,0 +170774832964,214,0 +170774833014,214,0 +170774833063,214,0 +170774833111,214,0 +170774833161,214,0 +170774833209,214,0 +170774833256,214,0 +170774833304,215,0 +170774833354,215,0 +170774833403,215,0 +170774833453,215,0 +170774833501,215,0 +170774833550,215,0 +170774833600,215,0 +170774833649,215,0 +170774833699,215,0 +170774833747,215,0 +170774833796,215,0 +170774833844,215,0 +170774833892,215,0 +170774833940,215,0 +170774833989,215,0 +170774834037,215,0 +170774834085,215,0 +170774834133,215,0 +170774834183,215,0 +170774834230,215,0 +170774834278,215,0 +170774834326,216,0 +170774834374,215,0 +170774834422,216,0 +170774834470,215,0 +170774834520,215,0 +170774834568,215,0 +170774834615,214,0 +170774834663,214,0 +170774834711,215,0 +170774834759,215,0 +170774834808,215,0 +170774834856,215,0 +170774834906,215,0 +170774834955,215,0 +170774835003,215,0 +170774835053,215,0 +170774835102,215,0 +170774835150,215,0 +170774835198,215,0 +170774835246,215,0 +170774835295,215,0 +170774835345,215,0 +170774835395,215,0 +170774835444,214,0 +170774835492,214,0 +170774835540,214,0 +170774835588,214,0 +170774835637,214,0 +170774835685,214,0 +170774835735,215,0 +170774835784,214,0 +170774835832,215,0 +170774835882,215,0 +170774835931,215,0 +170774835979,215,0 +170774836027,215,0 +170774836075,215,0 +170774836122,215,0 +170774836170,215,0 +170774836218,215,0 +170774836266,214,0 +170774836314,214,0 +170774836362,214,0 +170774836409,214,0 +170774836457,214,0 +170774836505,214,0 +170774836553,214,0 +170774836601,214,0 +170774836649,214,0 +170774836697,214,0 +170774836745,215,0 +170774836794,215,0 +170774836842,215,0 +170774836892,215,0 +170774836939,215,0 +170774836987,215,0 +170774837035,215,0 +170774837083,214,0 +170774837133,213,0 +170774837182,213,0 +170774837230,214,0 +170774837280,214,0 +170774837327,214,0 +170774837375,214,0 +170774837425,214,0 +170774837474,214,0 +170774837522,214,0 +170774837570,215,0 +170774837620,215,0 +170774837669,215,0 +170774837719,215,0 +170774837767,215,0 +170774837815,215,0 +170774837864,215,0 +170774837912,213,0 +170774837962,213,0 +170774838011,213,0 +170774838059,214,0 +170774838109,214,0 +170774838157,214,0 +170774838206,214,0 +170774838254,214,0 +170774838302,214,0 +170774838350,214,0 +170774838398,214,0 +170774838446,214,0 +170774838494,214,0 +170774838542,214,0 +170774838591,215,0 +170774838639,215,0 +170774838689,214,0 +170774838737,214,0 +170774838786,213,0 +170774838834,213,0 +170774838882,214,0 +170774838930,214,0 +170774838978,214,0 +170774839026,214,0 +170774839073,214,0 +170774839123,214,0 +170774839171,214,0 +170774839220,214,0 +170774839268,214,0 +170774839316,215,0 +170774839364,215,0 +170774839412,215,0 +170774839459,215,0 +170774839509,215,0 +170774839557,214,0 +170774839605,213,0 +170774839652,214,0 +170774839702,213,0 +170774839750,214,0 +170774839799,214,0 +170774839847,214,0 +170774839895,214,0 +170774839943,214,0 +170774839991,214,0 +170774840039,214,0 +170774840088,214,0 +170774840136,215,0 +170774840186,215,0 +170774840235,215,0 +170774840285,214,0 +170774840334,215,0 +170774840382,214,0 +170774840430,213,0 +170774840479,213,0 +170774840527,213,0 +170774840577,214,0 +170774840626,214,0 +170774840674,214,0 +170774840724,214,0 +170774840773,214,0 +170774840823,214,0 +170774840870,214,0 +170774840918,214,0 +170774840968,215,0 +170774841016,215,0 +170774841063,215,0 +170774841111,215,0 +170774841159,215,0 +170774841207,214,0 +170774841255,213,0 +170774841303,213,0 +170774841353,214,0 +170774841401,214,0 +170774841448,214,0 +170774841498,214,0 +170774841547,214,0 +170774841595,214,0 +170774841645,214,0 +170774841693,214,0 +170774841741,214,0 +170774841790,214,0 +170774841838,214,0 +170774841886,214,0 +170774841936,214,0 +170774841983,215,0 +170774842033,214,0 +170774842081,213,0 +170774842129,213,0 +170774842177,214,0 +170774842225,214,0 +170774842273,214,0 +170774842321,214,0 +170774842370,214,0 +170774842420,214,0 +170774842469,214,0 +170774842517,214,0 +170774842565,214,0 +170774842613,214,0 +170774842662,215,0 +170774842712,215,0 +170774842760,215,0 +170774842809,215,0 +170774842859,214,0 +170774842907,213,0 +170774842956,214,0 +170774843006,214,0 +170774843055,214,0 +170774843103,214,0 +170774843152,214,0 +170774843202,214,0 +170774843250,214,0 +170774843299,214,0 +170774843347,215,0 +170774843397,215,0 +170774843445,215,0 +170774843494,215,0 +170774843542,215,0 +170774843592,215,0 +170774843640,215,0 +170774843688,214,0 +170774843736,214,0 +170774843783,214,0 +170774843831,214,0 +170774843879,214,0 +170774843927,214,0 +170774843974,214,0 +170774844022,214,0 +170774844070,215,0 +170774844118,215,0 +170774844166,215,0 +170774844214,215,0 +170774844262,215,0 +170774844310,215,0 +170774844357,215,0 +170774844405,215,0 +170774844453,214,0 +170774844501,214,0 +170774844550,214,0 +170774844598,214,0 +170774844646,214,0 +170774844694,214,0 +170774844742,214,0 +170774844790,214,0 +170774844837,214,0 +170774844885,215,0 +170774844933,215,0 +170774844982,215,0 +170774845030,215,0 +170774845078,215,0 +170774845128,215,0 +170774845175,215,0 +170774845223,215,0 +170774845273,215,0 +170774845320,214,0 +170774845368,214,0 +170774845416,214,0 +170774845465,214,0 +170774845513,214,0 +170774845561,214,0 +170774845609,214,0 +170774845657,214,0 +170774845705,215,0 +170774845753,215,0 +170774845802,215,0 +170774845850,215,0 +170774845898,215,0 +170774845945,215,0 +170774845993,215,0 +170774846041,215,0 +170774846089,215,0 +170774846136,215,0 +170774846184,214,0 +170774846232,214,0 +170774846280,214,0 +170774846328,214,0 +170774846376,214,0 +170774846423,214,0 +170774846471,214,0 +170774846521,214,0 +170774846569,214,0 +170774846616,215,0 +170774846664,217,0 +170774846712,215,0 +170774846762,215,0 +170774846809,215,0 +170774846859,215,0 +170774846907,215,0 +170774846955,215,0 +170774847004,215,0 +170774847052,215,0 +170774847100,215,0 +170774847149,215,0 +170774847199,215,0 +170774847247,215,0 +170774847294,215,0 +170774847342,215,0 +170774847390,215,0 +170774847438,215,0 +170774847486,215,0 +170774847534,215,0 +170774847582,215,0 +170774847630,215,0 +170774847677,215,0 +170774847725,215,0 +170774847773,215,0 +170774847821,215,0 +170774847869,215,0 +170774847917,215,0 +170774847965,215,0 +170774848014,215,0 +170774848062,215,0 +170774848110,215,0 +170774848158,215,0 +170774848206,215,0 +170774848253,214,0 +170774848301,214,0 +170774848349,215,0 +170774848397,214,0 +170774848445,215,0 +170774848492,215,0 +170774848540,215,0 +170774848588,215,0 +170774848638,215,0 +170774848685,215,0 +170774848733,215,0 +170774848781,215,0 +170774848829,215,0 +170774848877,215,0 +170774848925,215,0 +170774848973,215,0 +170774849022,214,0 +170774849072,214,0 +170774849121,214,0 +170774849169,214,0 +170774849219,214,0 +170774849267,214,0 +170774849314,215,0 +170774849362,214,0 +170774849412,214,0 +170774849460,215,0 +170774849508,215,0 +170774849557,215,0 +170774849605,215,0 +170774849653,215,0 +170774849701,215,0 +170774849749,215,0 +170774849798,215,0 +170774849848,214,0 +170774849896,214,0 +170774849944,214,0 +170774849992,214,0 +170774850039,214,0 +170774850087,214,0 +170774850135,214,0 +170774850183,214,0 +170774850231,214,0 +170774850281,214,0 +170774850329,214,0 +170774850378,215,0 +170774850427,215,0 +170774850475,215,0 +170774850525,215,0 +170774850573,215,0 +170774850621,215,0 +170774850670,215,0 +170774850718,214,0 +170774850766,214,0 +170774850816,214,0 +170774850865,214,0 +170774850913,214,0 +170774850963,214,0 +170774851011,214,0 +170774851060,214,0 +170774851108,214,0 +170774851158,215,0 +170774851207,215,0 +170774851255,215,0 +170774851304,215,0 +170774851354,215,0 +170774851402,215,0 +170774851451,215,0 +170774851499,215,0 +170774851547,214,0 +170774851595,214,0 +170774851645,214,0 +170774851693,214,0 +170774851742,214,0 +170774851790,214,0 +170774851838,215,0 +170774851887,214,0 +170774851935,215,0 +170774851983,214,0 +170774852031,215,0 +170774852079,215,0 +170774852129,215,0 +170774852176,215,0 +170774852226,215,0 +170774852274,215,0 +170774852322,215,0 +170774852370,214,0 +170774852418,214,0 +170774852466,214,0 +170774852515,214,0 +170774852563,214,0 +170774852611,215,0 +170774852659,214,0 +170774852707,215,0 +170774852755,215,0 +170774852803,215,0 +170774852851,215,0 +170774852898,215,0 +170774852948,215,0 +170774852997,215,0 +170774853045,215,0 +170774853093,215,0 +170774853141,214,0 +170774853190,214,0 +170774853240,214,0 +170774853289,214,0 +170774853337,214,0 +170774853387,214,0 +170774853435,214,0 +170774853483,214,0 +170774853531,215,0 +170774853580,215,0 +170774853630,215,0 +170774853678,215,0 +170774853726,215,0 +170774853775,215,0 +170774853823,215,0 +170774853872,215,0 +170774853920,215,0 +170774853968,214,0 +170774854016,214,0 +170774854066,214,0 +170774854114,214,0 +170774854163,214,0 +170774854211,214,0 +170774854259,214,0 +170774854307,215,0 +170774854355,214,0 +170774854403,215,0 +170774854452,214,0 +170774854502,215,0 +170774854550,215,0 +170774854598,215,0 +170774854647,215,0 +170774854697,215,0 +170774854744,215,0 +170774854794,214,0 +170774854842,214,0 +170774854891,214,0 +170774854939,214,0 +170774854989,214,0 +170774855038,214,0 +170774855088,214,0 +170774855135,214,0 +170774855183,215,0 +170774855231,215,0 +170774855281,215,0 +170774855328,215,0 +170774855378,215,0 +170774855426,215,0 +170774855474,215,0 +170774855522,215,0 +170774855569,215,0 +170774855617,215,0 +170774855665,214,0 +170774855715,214,0 +170774855762,214,0 +170774855810,214,0 +170774855858,214,0 +170774855906,214,0 +170774855955,214,0 +170774856005,214,0 +170774856053,215,0 +170774856100,215,0 +170774856148,215,0 +170774856196,215,0 +170774856244,215,0 +170774856292,215,0 +170774856340,215,0 +170774856388,215,0 +170774856436,215,0 +170774856484,214,0 +170774856533,213,0 +170774856583,214,0 +170774856632,214,0 +170774856680,214,0 +170774856728,214,0 +170774856775,214,0 +170774856823,214,0 +170774856871,214,0 +170774856919,215,0 +170774856967,215,0 +170774857015,215,0 +170774857062,215,0 +170774857110,215,0 +170774857158,215,0 +170774857206,215,0 +170774857254,215,0 +170774857303,214,0 +170774857351,214,0 +170774857399,214,0 +170774857448,214,0 +170774857496,214,0 +170774857544,214,0 +170774857592,214,0 +170774857640,215,0 +170774857687,215,0 +170774857735,215,0 +170774857785,215,0 +170774857834,215,0 +170774857882,215,0 +170774857930,215,0 +170774857978,215,0 +170774858025,215,0 +170774858073,215,0 +170774858121,214,0 +170774858169,214,0 +170774858217,214,0 +170774858266,214,0 +170774858314,214,0 +170774858362,215,0 +170774858410,215,0 +170774858457,215,0 +170774858507,215,0 +170774858555,215,0 +170774858604,215,0 +170774858652,215,0 +170774858700,215,0 +170774858749,215,0 +170774858797,215,0 +170774858845,215,0 +170774858893,215,0 +170774858941,214,0 +170774858989,214,0 +170774859037,214,0 +170774859086,214,0 +170774859136,214,0 +170774859184,214,0 +170774859233,214,0 +170774859281,215,0 +170774859329,214,0 +170774859377,215,0 +170774859425,215,0 +170774859475,215,0 +170774859524,215,0 +170774859572,215,0 +170774859620,215,0 +170774859668,215,0 +170774859716,215,0 +170774859764,215,0 +170774859812,213,0 +170774859860,214,0 +170774859908,213,0 +170774859957,214,0 +170774860005,214,0 +170774860055,214,0 +170774860104,214,0 +170774860154,214,0 +170774860202,214,0 +170774860250,214,0 +170774860299,214,0 +170774860349,215,0 +170774860397,215,0 +170774860446,215,0 +170774860494,215,0 +170774860542,215,0 +170774860591,215,0 +170774860641,214,0 +170774860690,214,0 +170774860740,214,0 +170774860790,214,0 +170774860839,214,0 +170774860889,214,0 +170774860938,214,0 +170774860986,214,0 +170774861035,214,0 +170774861083,215,0 +170774861133,215,0 +170774861181,215,0 +170774861230,215,0 +170774861280,215,0 +170774861329,215,0 +170774861377,215,0 +170774861427,214,0 +170774861476,214,0 +170774861524,214,0 +170774861572,214,0 +170774861622,214,0 +170774861670,214,0 +170774861717,214,0 +170774861765,215,0 +170774861813,215,0 +170774861861,215,0 +170774861911,215,0 +170774861960,215,0 +170774862010,215,0 +170774862058,215,0 +170774862105,215,0 +170774862155,215,0 +170774862203,215,0 +170774862251,214,0 +170774862298,214,0 +170774862346,214,0 +170774862394,214,0 +170774862444,214,0 +170774862492,214,0 +170774862540,214,0 +170774862587,214,0 +170774862637,214,0 +170774862686,215,0 +170774862734,215,0 +170774862784,215,0 +170774862832,215,0 +170774862880,215,0 +170774862928,215,0 +170774862976,215,0 +170774863025,215,0 +170774863075,214,0 +170774863122,214,0 +170774863170,214,0 +170774863220,214,0 +170774863269,214,0 +170774863317,214,0 +170774863366,214,0 +170774863416,214,0 +170774863465,215,0 +170774863515,215,0 +170774863563,215,0 +170774863611,215,0 +170774863660,215,0 +170774863708,215,0 +170774863758,215,0 +170774863807,215,0 +170774863855,215,0 +170774863904,215,0 +170774863952,214,0 +170774864002,214,0 +170774864050,214,0 +170774864099,215,0 +170774864149,215,0 +170774864197,215,0 +170774864245,215,0 +170774864293,215,0 +170774864341,215,0 +170774864389,215,0 +170774864438,215,0 +170774864488,215,0 +170774864537,215,0 +170774864585,215,0 +170774864633,215,0 +170774864681,215,0 +170774864729,215,0 +170774864777,214,0 +170774864827,214,0 +170774864874,215,0 +170774864923,214,0 +170774864971,215,0 +170774865021,215,0 +170774865070,215,0 +170774865118,215,0 +170774865166,215,0 +170774865214,215,0 +170774865263,215,0 +170774865311,215,0 +170774865359,215,0 +170774865407,215,0 +170774865455,215,0 +170774865503,215,0 +170774865550,215,0 +170774865598,214,0 +170774865646,214,0 +170774865694,214,0 +170774865741,214,0 +170774865789,215,0 +170774865837,215,0 +170774865885,215,0 +170774865933,215,0 +170774865981,215,0 +170774866028,215,0 +170774866078,215,0 +170774866125,215,0 +170774866173,215,0 +170774866221,215,0 +170774866269,215,0 +170774866318,215,0 +170774866366,215,0 +170774866414,214,0 +170774866462,214,0 +170774866510,214,0 +170774866557,214,0 +170774866605,215,0 +170774866653,215,0 +170774866703,215,0 +170774866752,215,0 +170774866802,215,0 +170774866851,215,0 +170774866901,215,0 +170774866948,215,0 +170774866996,215,0 +170774867044,215,0 +170774867092,215,0 +170774867140,215,0 +170774867188,214,0 +170774867235,214,0 +170774867283,214,0 +170774867331,214,0 +170774867380,214,0 +170774867428,214,0 +170774867476,214,0 +170774867525,214,0 +170774867573,215,0 +170774867621,214,0 +170774867669,215,0 +170774867717,215,0 +170774867765,215,0 +170774867814,215,0 +170774867862,215,0 +170774867910,215,0 +170774867958,215,0 +170774868007,215,0 +170774868055,213,0 +170774868105,214,0 +170774868153,214,0 +170774868201,214,0 +170774868250,214,0 +170774868298,214,0 +170774868346,214,0 +170774868394,214,0 +170774868442,214,0 +170774868491,214,0 +170774868539,214,0 +170774868587,214,0 +170774868635,215,0 +170774868684,214,0 +170774868734,215,0 +170774868782,215,0 +170774868830,215,0 +170774868878,213,0 +170774868926,213,0 +170774868974,214,0 +170774869022,213,0 +170774869071,214,0 +170774869121,214,0 +170774869169,214,0 +170774869218,214,0 +170774869266,214,0 +170774869314,214,0 +170774869362,215,0 +170774869410,215,0 +170774869458,215,0 +170774869506,215,0 +170774869554,215,0 +170774869601,215,0 +170774869651,215,0 +170774869700,214,0 +170774869750,213,0 +170774869798,214,0 +170774869845,214,0 +170774869895,214,0 +170774869943,214,0 +170774869991,214,0 +170774870040,214,0 +170774870088,214,0 +170774870136,215,0 +170774870184,214,0 +170774870232,215,0 +170774870280,215,0 +170774870329,215,0 +170774870377,215,0 +170774870427,215,0 +170774870475,215,0 +170774870522,214,0 +170774870570,213,0 +170774870618,214,0 +170774870666,214,0 +170774870714,214,0 +170774870762,214,0 +170774870810,214,0 +170774870857,214,0 +170774870905,214,0 +170774870954,215,0 +170774871002,215,0 +170774871050,215,0 +170774871098,215,0 +170774871146,215,0 +170774871194,215,0 +170774871244,215,0 +170774871291,214,0 +170774871339,214,0 +170774871389,214,0 +170774871438,214,0 +170774871486,214,0 +170774871536,214,0 +170774871585,214,0 +170774871633,214,0 +170774871681,214,0 +170774871729,215,0 +170774871777,215,0 +170774871826,215,0 +170774871876,215,0 +170774871924,215,0 +170774871972,215,0 +170774872021,215,0 +170774872070,215,0 +170774872118,215,0 +170774872168,214,0 +170774872215,214,0 +170774872263,214,0 +170774872311,214,0 +170774872361,214,0 +170774872408,215,0 +170774872456,214,0 +170774872504,215,0 +170774872552,215,0 +170774872601,215,0 +170774872651,215,0 +170774872700,215,0 +170774872750,215,0 +170774872798,215,0 +170774872846,215,0 +170774872895,215,0 +170774872943,215,0 +170774872991,214,0 +170774873040,214,0 +170774873090,214,0 +170774873139,214,0 +170774873187,214,0 +170774873237,214,0 +170774873285,214,0 +170774873334,215,0 +170774873382,215,0 +170774873430,215,0 +170774873478,215,0 +170774873526,215,0 +170774873574,215,0 +170774873624,215,0 +170774873672,215,0 +170774873720,215,0 +170774873767,215,0 +170774873815,214,0 +170774873865,214,0 +170774873914,214,0 +170774873962,214,0 +170774874010,214,0 +170774874059,214,0 +170774874107,215,0 +170774874157,215,0 +170774874206,215,0 +170774874256,215,0 +170774874305,215,0 +170774874355,215,0 +170774874404,215,0 +170774874454,215,0 +170774874503,215,0 +170774874553,215,0 +170774874601,215,0 +170774874650,214,0 +170774874698,214,0 +170774874746,214,0 +170774874794,214,0 +170774874843,214,0 +170774874893,214,0 +170774874941,215,0 +170774874989,215,0 +170774875036,215,0 +170774875084,215,0 +170774875134,215,0 +170774875182,215,0 +170774875229,215,0 +170774875277,215,0 +170774875327,215,0 +170774875375,215,0 +170774875423,215,0 +170774875471,215,0 +170774875520,214,0 +170774875568,214,0 +170774875618,214,0 +170774875665,214,0 +170774875713,214,0 +170774875763,215,0 +170774875810,214,0 +170774875858,215,0 +170774875906,215,0 +170774875954,215,0 +170774876002,215,0 +170774876051,215,0 +170774876101,215,0 +170774876150,215,0 +170774876200,215,0 +170774876248,215,0 +170774876297,214,0 +170774876345,214,0 +170774876393,214,0 +170774876441,214,0 +170774876489,214,0 +170774876536,214,0 +170774876584,214,0 +170774876634,214,0 +170774876682,215,0 +170774876730,215,0 +170774876777,215,0 +170774876825,215,0 +170774876873,215,0 +170774876923,215,0 +170774876971,215,0 +170774877019,215,0 +170774877067,215,0 +170774877116,214,0 +170774877165,214,0 +170774877213,214,0 +170774877261,214,0 +170774877309,214,0 +170774877357,214,0 +170774877405,214,0 +170774877452,214,0 +170774877502,214,0 +170774877550,215,0 +170774877598,215,0 +170774877646,215,0 +170774877695,215,0 +170774877743,215,0 +170774877791,215,0 +170774877839,215,0 +170774877887,215,0 +170774877935,214,0 +170774877983,214,0 +170774878030,214,0 +170774878078,214,0 +170774878128,214,0 +170774878176,214,0 +170774878223,214,0 +170774878273,215,0 +170774878321,215,0 +170774878369,215,0 +170774878416,215,0 +170774878464,215,0 +170774878512,215,0 +170774878560,215,0 +170774878610,215,0 +170774878659,215,0 +170774878707,215,0 +170774878757,215,0 +170774878805,214,0 +170774878854,214,0 +170774878904,214,0 +170774878953,214,0 +170774879003,214,0 +170774879050,214,0 +170774879098,214,0 +170774879148,215,0 +170774879197,215,0 +170774879245,215,0 +170774879293,215,0 +170774879341,215,0 +170774879389,215,0 +170774879438,215,0 +170774879486,215,0 +170774879534,215,0 +170774879582,215,0 +170774879632,214,0 +170774879681,214,0 +170774879729,214,0 +170774879777,214,0 +170774879826,214,0 +170774879874,214,0 +170774879924,214,0 +170774879973,214,0 +170774880021,215,0 +170774880069,215,0 +170774880117,215,0 +170774880167,215,0 +170774880216,215,0 +170774880264,215,0 +170774880314,215,0 +170774880363,215,0 +170774880411,214,0 +170774880459,213,0 +170774880509,214,0 +170774880558,214,0 +170774880608,214,0 +170774880655,214,0 +170774880703,214,0 +170774880751,214,0 +170774880799,214,0 +170774880847,214,0 +170774880894,214,0 +170774880942,215,0 +170774880990,215,0 +170774881038,215,0 +170774881086,215,0 +170774881135,215,0 +170774881185,215,0 +170774881233,214,0 +170774881282,214,0 +170774881330,214,0 +170774881378,214,0 +170774881425,214,0 +170774881473,214,0 +170774881521,214,0 +170774881569,214,0 +170774881617,214,0 +170774881664,214,0 +170774881712,214,0 +170774881762,215,0 +170774881809,215,0 +170774881857,215,0 +170774881905,215,0 +170774881953,215,0 +170774882002,215,0 +170774882050,215,0 +170774882098,214,0 +170774882146,214,0 +170774882195,213,0 +170774882244,214,0 +170774882292,214,0 +170774882342,214,0 +170774882390,214,0 +170774882437,214,0 +170774882485,214,0 +170774882533,214,0 +170774882582,215,0 +170774882630,215,0 +170774882680,215,0 +170774882727,215,0 +170774882775,215,0 +170774882825,214,0 +170774882874,214,0 +170774882922,214,0 +170774882970,213,0 +170774883019,213,0 +170774883067,214,0 +170774883115,214,0 +170774883163,214,0 +170774883210,214,0 +170774883258,214,0 +170774883308,214,0 +170774883355,214,0 +170774883403,215,0 +170774883451,215,0 +170774883499,215,0 +170774883547,215,0 +170774883595,215,0 +170774883644,215,0 +170774883692,215,0 +170774883740,214,0 +170774883788,214,0 +170774883835,214,0 +170774883883,214,0 +170774883931,214,0 +170774883979,214,0 +170774884027,214,0 +170774884075,214,0 +170774884122,214,0 +170774884170,215,0 +170774884218,215,0 +170774884266,215,0 +170774884314,215,0 +170774884362,215,0 +170774884409,215,0 +170774884457,215,0 +170774884505,215,0 +170774884554,214,0 +170774884602,214,0 +170774884652,214,0 +170774884700,214,0 +170774884747,214,0 +170774884795,214,0 +170774884843,214,0 +170774884891,215,0 +170774884939,215,0 +170774884986,215,0 +170774885034,215,0 +170774885084,215,0 +170774885131,215,0 +170774885181,215,0 +170774885229,215,0 +170774885277,215,0 +170774885326,215,0 +170774885374,214,0 +170774885422,214,0 +170774885470,214,0 +170774885518,214,0 +170774885565,214,0 +170774885613,214,0 +170774885663,214,0 +170774885711,214,0 +170774885760,215,0 +170774885808,214,0 +170774885856,215,0 +170774885905,215,0 +170774885953,215,0 +170774886001,215,0 +170774886049,215,0 +170774886099,215,0 +170774886148,215,0 +170774886196,215,0 +170774886244,214,0 +170774886293,214,0 +170774886341,214,0 +170774886389,214,0 +170774886437,215,0 +170774886485,215,0 +170774886533,215,0 +170774886581,215,0 +170774886629,215,0 +170774886678,215,0 +170774886726,215,0 +170774886774,215,0 +170774886824,215,0 +170774886872,215,0 +170774886921,215,0 +170774886969,215,0 +170774887017,215,0 +170774887065,214,0 +170774887113,214,0 +170774887161,215,0 +170774887209,215,0 +170774887258,214,0 +170774887306,215,0 +170774887356,215,0 +170774887405,215,0 +170774887455,215,0 +170774887504,215,0 +170774887554,215,0 +170774887602,215,0 +170774887650,215,0 +170774887698,215,0 +170774887745,215,0 +170774887795,215,0 +170774887843,215,0 +170774887891,214,0 +170774887939,215,0 +170774887987,214,0 +170774888035,215,0 +170774888083,215,0 +170774888131,215,0 +170774888179,215,0 +170774888227,215,0 +170774888275,215,0 +170774888322,215,0 +170774888372,215,0 +170774888421,215,0 +170774888469,215,0 +170774888517,215,0 +170774888565,215,0 +170774888613,215,0 +170774888663,215,0 +170774888712,215,0 +170774888760,214,0 +170774888810,214,0 +170774888858,215,0 +170774888905,215,0 +170774888953,215,0 +170774889001,215,0 +170774889049,215,0 +170774889097,215,0 +170774889145,215,0 +170774889193,215,0 +170774889241,215,0 +170774889289,215,0 +170774889337,215,0 +170774889385,215,0 +170774889432,215,0 +170774889482,215,0 +170774889531,214,0 +170774889579,214,0 +170774889629,214,0 +170774889677,214,0 +170774889726,214,0 +170774889774,214,0 +170774889822,215,0 +170774889870,214,0 +170774889919,215,0 +170774889967,215,0 +170774890015,215,0 +170774890065,215,0 +170774890113,215,0 +170774890161,215,0 +170774890210,215,0 +170774890258,215,0 +170774890308,215,0 +170774890357,214,0 +170774890406,214,0 +170774890456,214,0 +170774890504,214,0 +170774890552,214,0 +170774890600,214,0 +170774890648,214,0 +170774890696,214,0 +170774890744,214,0 +170774890792,215,0 +170774890839,215,0 +170774890889,215,0 +170774890937,215,0 +170774890985,215,0 +170774891032,215,0 +170774891080,215,0 +170774891128,215,0 +170774891176,214,0 +170774891224,213,0 +170774891272,213,0 +170774891320,214,0 +170774891368,214,0 +170774891416,214,0 +170774891463,214,0 +170774891513,214,0 +170774891561,214,0 +170774891609,214,0 +170774891657,215,0 +170774891705,215,0 +170774891753,215,0 +170774891800,215,0 +170774891848,215,0 +170774891896,215,0 +170774891946,215,0 +170774891994,214,0 +170774892042,213,0 +170774892090,213,0 +170774892138,213,0 +170774892187,214,0 +170774892235,214,0 +170774892284,214,0 +170774892332,214,0 +170774892380,214,0 +170774892428,214,0 +170774892476,214,0 +170774892523,215,0 +170774892571,215,0 +170774892619,215,0 +170774892667,215,0 +170774892715,215,0 +170774892763,216,0 +170774892812,214,0 +170774892860,213,0 +170774892910,213,0 +170774892959,214,0 +170774893007,214,0 +170774893055,214,0 +170774893103,214,0 +170774893153,214,0 +170774893201,214,0 +170774893251,214,0 +170774893299,214,0 +170774893346,214,0 +170774893394,215,0 +170774893444,215,0 +170774893493,215,0 +170774893541,215,0 +170774893591,215,0 +170774893641,214,0 +170774893688,213,0 +170774893736,213,0 +170774893784,214,0 +170774893834,214,0 +170774893882,214,0 +170774893931,214,0 +170774893979,214,0 +170774894027,214,0 +170774894077,214,0 +170774894125,214,0 +170774894173,215,0 +170774894222,215,0 +170774894272,214,0 +170774894320,215,0 +170774894369,215,0 +170774894417,215,0 +170774894465,214,0 +170774894513,213,0 +170774894562,214,0 +170774894610,214,0 +170774894660,214,0 +170774894708,214,0 +170774894756,214,0 +170774894803,214,0 +170774894851,214,0 +170774894899,214,0 +170774894949,215,0 +170774894998,215,0 +170774895048,215,0 +170774895096,215,0 +170774895144,215,0 +170774895193,215,0 +170774895241,215,0 +170774895291,214,0 +170774895340,213,0 +170774895390,214,0 +170774895438,214,0 +170774895487,214,0 +170774895535,214,0 +170774895584,214,0 +170774895634,214,0 +170774895682,214,0 +170774895731,214,0 +170774895779,214,0 +170774895827,215,0 +170774895877,215,0 +170774895925,215,0 +170774895974,215,0 +170774896022,215,0 +170774896070,215,0 +170774896118,214,0 +170774896166,213,0 +170774896214,213,0 +170774896264,214,0 +170774896312,214,0 +170774896361,214,0 +170774896409,214,0 +170774896459,214,0 +170774896508,214,0 +170774896557,214,0 +170774896605,214,0 +170774896653,214,0 +170774896701,214,0 +170774896751,215,0 +170774896800,215,0 +170774896848,215,0 +170774896896,215,0 +170774896944,214,0 +170774896992,213,0 +170774897041,214,0 +170774897091,214,0 +170774897140,214,0 +170774897188,214,0 +170774897238,214,0 +170774897286,214,0 +170774897334,214,0 +170774897382,215,0 +170774897430,215,0 +170774897477,215,0 +170774897525,215,0 +170774897573,215,0 +170774897623,215,0 +170774897672,215,0 +170774897720,215,0 +170774897770,214,0 +170774897819,214,0 +170774897867,215,0 +170774897915,214,0 +170774897965,215,0 +170774898014,215,0 +170774898062,215,0 +170774898110,215,0 +170774898158,215,0 +170774898206,215,0 +170774898254,215,0 +170774898303,215,0 +170774898351,215,0 +170774898399,215,0 +170774898447,215,0 +170774898495,215,0 +170774898545,215,0 +170774898592,215,0 +170774898640,215,0 +170774898690,215,0 +170774898739,215,0 +170774898787,215,0 +170774898837,215,0 +170774898885,215,0 +170774898932,215,0 +170774898980,215,0 +170774899028,215,0 +170774899076,215,0 +170774899124,215,0 +170774899173,215,0 +170774899221,215,0 +170774899269,215,0 +170774899319,215,0 +170774899367,215,0 +170774899416,215,0 +170774899466,215,0 +170774899514,215,0 +170774899562,215,0 +170774899610,215,0 +170774899657,215,0 +170774899705,215,0 +170774899753,215,0 +170774899801,215,0 +170774899849,216,0 +170774899897,215,0 +170774899945,215,0 +170774899993,215,0 +170774900041,215,0 +170774900091,215,0 +170774900140,215,0 +170774900188,215,0 +170774900236,214,0 +170774900285,214,0 +170774900333,214,0 +170774900381,214,0 +170774900431,215,0 +170774900480,215,0 +170774900528,215,0 +170774900578,215,0 +170774900627,215,0 +170774900675,215,0 +170774900723,215,0 +170774900773,215,0 +170774900820,215,0 +170774900868,215,0 +170774900916,215,0 +170774900964,215,0 +170774901014,214,0 +170774901063,214,0 +170774901111,214,0 +170774901159,214,0 +170774901208,215,0 +170774901258,214,0 +170774901306,214,0 +170774901354,215,0 +170774901403,215,0 +170774901451,215,0 +170774901499,215,0 +170774901547,215,0 +170774901595,215,0 +170774901643,215,0 +170774901693,215,0 +170774901740,215,0 +170774901790,215,0 +170774901839,215,0 +170774901887,214,0 +170774901937,214,0 +170774901985,214,0 +170774902034,214,0 +170774902084,214,0 +170774902133,214,0 +170774902181,214,0 +170774902229,214,0 +170774902279,215,0 +170774902328,215,0 +170774902376,215,0 +170774902426,215,0 +170774902474,215,0 +170774902521,215,0 +170774902569,215,0 +170774902619,215,0 +170774902667,214,0 +170774902716,214,0 +170774902764,214,0 +170774902812,214,0 +170774902860,214,0 +170774902910,214,0 +170774902958,214,0 +170774903005,214,0 +170774903053,214,0 +170774903101,215,0 +170774903151,214,0 +170774903200,215,0 +170774903248,215,0 +170774903297,215,0 +170774903347,215,0 +170774903395,215,0 +170774903443,215,0 +170774903491,215,0 +170774903538,214,0 +170774903586,214,0 +170774903634,214,0 +170774903684,214,0 +170774903732,214,0 +170774903780,214,0 +170774903827,214,0 +170774903875,215,0 +170774903923,215,0 +170774903971,215,0 +170774904021,215,0 +170774904069,215,0 +170774904117,215,0 +170774904165,215,0 +170774904214,215,0 +170774904263,215,0 +170774904313,215,0 +170774904361,214,0 +170774904409,214,0 +170774904457,214,0 +170774904506,214,0 +170774904556,214,0 +170774904604,214,0 +170774904652,214,0 +170774904701,214,0 +170774904749,214,0 +170774904797,215,0 +170774904845,215,0 +170774904893,215,0 +170774904942,215,0 +170774904990,215,0 +170774905040,215,0 +170774905089,215,0 +170774905137,215,0 +170774905185,215,0 +170774905235,214,0 +170774905283,214,0 +170774905330,214,0 +170774905380,214,0 +170774905430,214,0 +170774905477,214,0 +170774905525,214,0 +170774905573,214,0 +170774905621,214,0 +170774905671,215,0 +170774905720,215,0 +170774905768,215,0 +170774905816,215,0 +170774905864,215,0 +170774905913,215,0 +170774905961,215,0 +170774906009,214,0 +170774906057,214,0 +170774906105,214,0 +170774906154,214,0 +170774906202,214,0 +170774906250,214,0 +170774906298,214,0 +170774906346,214,0 +170774906394,214,0 +170774906442,215,0 +170774906490,215,0 +170774906538,215,0 +170774906587,215,0 +170774906635,215,0 +170774906685,215,0 +170774906733,215,0 +170774906781,215,0 +170774906829,214,0 +170774906878,213,0 +170774906926,214,0 +170774906974,214,0 +170774907022,214,0 +170774907070,214,0 +170774907120,214,0 +170774907169,214,0 +170774907217,214,0 +170774907265,214,0 +170774907313,215,0 +170774907361,215,0 +170774907410,215,0 +170774907458,215,0 +170774907506,215,0 +170774907554,215,0 +170774907602,215,0 +170774907650,215,0 +170774907698,214,0 +170774907745,214,0 +170774907793,214,0 +170774907841,214,0 +170774907889,214,0 +170774907939,214,0 +170774907987,214,0 +170774908036,214,0 +170774908084,215,0 +170774908132,214,0 +170774908180,215,0 +170774908228,214,0 +170774908276,215,0 +170774908324,215,0 +170774908371,215,0 +170774908419,215,0 +170774908467,215,0 +170774908517,214,0 +170774908565,214,0 +170774908613,214,0 +170774908662,214,0 +170774908710,214,0 +170774908759,214,0 +170774908807,214,0 +170774908855,214,0 +170774908903,214,0 +170774908951,214,0 +170774908999,214,0 +170774909047,215,0 +170774909095,215,0 +170774909143,215,0 +170774909191,215,0 +170774909238,215,0 +170774909286,215,0 +170774909336,214,0 +170774909384,214,0 +170774909432,214,0 +170774909480,214,0 +170774909527,214,0 +170774909577,214,0 +170774909625,214,0 +170774909672,214,0 +170774909722,214,0 +170774909770,215,0 +170774909818,215,0 +170774909867,215,0 +170774909917,215,0 +170774909966,215,0 +170774910014,215,0 +170774910062,215,0 +170774910110,215,0 +170774910158,214,0 +170774910206,214,0 +170774910253,214,0 +170774910301,214,0 +170774910349,214,0 +170774910399,214,0 +170774910447,214,0 +170774910496,214,0 +170774910544,214,0 +170774910594,215,0 +170774910643,215,0 +170774910693,215,0 +170774910742,215,0 +170774910790,215,0 +170774910838,215,0 +170774910886,215,0 +170774910934,215,0 +170774910983,214,0 +170774911033,214,0 +170774911081,214,0 +170774911129,214,0 +170774911178,214,0 +170774911226,214,0 +170774911274,215,0 +170774911323,215,0 +170774911371,215,0 +170774911419,215,0 +170774911469,215,0 +170774911517,215,0 +170774911566,215,0 +170774911614,215,0 +170774911664,215,0 +170774911712,215,0 +170774911761,215,0 +170774911809,214,0 +170774911859,214,0 +170774911906,214,0 +170774911954,214,0 +170774912002,214,0 +170774912050,214,0 +170774912098,214,0 +170774912146,215,0 +170774912194,215,0 +170774912244,215,0 +170774912292,215,0 +170774912339,215,0 +170774912387,215,0 +170774912435,215,0 +170774912483,215,0 +170774912533,215,0 +170774912582,215,0 +170774912632,214,0 +170774912681,213,0 +170774912729,214,0 +170774912777,214,0 +170774912825,215,0 +170774912873,214,0 +170774912920,214,0 +170774912968,214,0 +170774913016,215,0 +170774913064,215,0 +170774913114,214,0 +170774913162,215,0 +170774913211,214,0 +170774913261,215,0 +170774913309,214,0 +170774913357,215,0 +170774913405,215,0 +170774913454,214,0 +170774913504,214,0 +170774913552,214,0 +170774913599,214,0 +170774913649,214,0 +170774913697,214,0 +170774913746,215,0 +170774913794,215,0 +170774913842,215,0 +170774913890,215,0 +170774913938,215,0 +170774913986,215,0 +170774914034,215,0 +170774914081,215,0 +170774914131,215,0 +170774914179,215,0 +170774914226,215,0 +170774914274,214,0 +170774914322,214,0 +170774914370,214,0 +170774914418,214,0 +170774914467,214,0 +170774914515,214,0 +170774914563,214,0 +170774914611,215,0 +170774914659,215,0 +170774914707,215,0 +170774914755,215,0 +170774914802,215,0 +170774914850,215,0 +170774914900,215,0 +170774914948,215,0 +170774914995,215,0 +170774915043,215,0 +170774915091,215,0 +170774915140,214,0 +170774915190,214,0 +170774915238,214,0 +170774915286,214,0 +170774915334,214,0 +170774915383,214,0 +170774915431,214,0 +170774915479,214,0 +170774915527,215,0 +170774915576,214,0 +170774915624,215,0 +170774915674,215,0 +170774915723,215,0 +170774915773,215,0 +170774915821,215,0 +170774915870,215,0 +170774915920,215,0 +170774915969,214,0 +170774916017,214,0 +170774916065,214,0 +170774916113,214,0 +170774916161,214,0 +170774916209,214,0 +170774916257,215,0 +170774916304,215,0 +170774916352,215,0 +170774916402,215,0 +170774916450,215,0 +170774916498,215,0 +170774916547,215,0 +170774916595,215,0 +170774916645,215,0 +170774916693,215,0 +170774916741,215,0 +170774916790,214,0 +170774916840,214,0 +170774916887,214,0 +170774916935,214,0 +170774916983,214,0 +170774917033,215,0 +170774917081,214,0 +170774917130,215,0 +170774917180,215,0 +170774917229,215,0 +170774917277,215,0 +170774917325,215,0 +170774917373,215,0 +170774917421,215,0 +170774917469,215,0 +170774917517,215,0 +170774917565,215,0 +170774917613,214,0 +170774917661,214,0 +170774917709,214,0 +170774917758,214,0 +170774917807,214,0 +170774917855,215,0 +170774917905,215,0 +170774917953,215,0 +170774918001,215,0 +170774918049,215,0 +170774918097,215,0 +170774918146,215,0 +170774918196,215,0 +170774918245,215,0 +170774918295,215,0 +170774918343,215,0 +170774918391,215,0 +170774918439,214,0 +170774918488,214,0 +170774918538,215,0 +170774918587,214,0 +170774918635,215,0 +170774918683,215,0 +170774918732,215,0 +170774918780,215,0 +170774918828,215,0 +170774918876,215,0 +170774918924,215,0 +170774918972,215,0 +170774919020,215,0 +170774919070,215,0 +170774919118,215,0 +170774919166,215,0 +170774919215,215,0 +170774919263,214,0 +170774919313,214,0 +170774919360,214,0 +170774919408,214,0 +170774919458,214,0 +170774919507,214,0 +170774919555,215,0 +170774919603,215,0 +170774919651,215,0 +170774919699,215,0 +170774919747,216,0 +170774919795,215,0 +170774919843,215,0 +170774919893,215,0 +170774919942,215,0 +170774919990,215,0 +170774920039,215,0 +170774920089,214,0 +170774920138,214,0 +170774920186,214,0 +170774920236,214,0 +170774920284,214,0 +170774920332,214,0 +170774920380,214,0 +170774920428,215,0 +170774920475,215,0 +170774920525,215,0 +170774920574,215,0 +170774920622,215,0 +170774920672,215,0 +170774920721,215,0 +170774920769,215,0 +170774920817,215,0 +170774920867,215,0 +170774920915,214,0 +170774920964,214,0 +170774921014,214,0 +170774921062,214,0 +170774921109,214,0 +170774921157,214,0 +170774921207,214,0 +170774921255,215,0 +170774921304,215,0 +170774921352,215,0 +170774921400,215,0 +170774921450,215,0 +170774921499,215,0 +170774921547,215,0 +170774921597,215,0 +170774921645,215,0 +170774921694,215,0 +170774921742,214,0 +170774921790,214,0 +170774921839,214,0 +170774921889,214,0 +170774921937,214,0 +170774921985,214,0 +170774922032,214,0 +170774922080,214,0 +170774922128,214,0 +170774922178,214,0 +170774922226,214,0 +170774922274,215,0 +170774922322,215,0 +170774922370,215,0 +170774922417,215,0 +170774922465,215,0 +170774922515,215,0 +170774922563,214,0 +170774922612,213,0 +170774922662,213,0 +170774922711,214,0 +170774922759,214,0 +170774922807,214,0 +170774922855,214,0 +170774922903,214,0 +170774922951,214,0 +170774922999,214,0 +170774923047,215,0 +170774923096,215,0 +170774923144,215,0 +170774923194,215,0 +170774923243,215,0 +170774923293,215,0 +170774923342,215,0 +170774923390,214,0 +170774923438,213,0 +170774923486,213,0 +170774923534,214,0 +170774923582,214,0 +170774923630,213,0 +170774923679,214,0 +170774923727,214,0 +170774923775,214,0 +170774923823,214,0 +170774923871,214,0 +170774923920,215,0 +170774923968,214,0 +170774924016,214,0 +170774924066,215,0 +170774924114,215,0 +170774924162,215,0 +170774924211,214,0 +170774924261,213,0 +170774924310,213,0 +170774924358,214,0 +170774924406,214,0 +170774924454,214,0 +170774924502,214,0 +170774924550,214,0 +170774924599,215,0 +170774924647,214,0 +170774924695,215,0 +170774924743,215,0 +170774924792,215,0 +170774924842,215,0 +170774924890,215,0 +170774924937,215,0 +170774924985,215,0 +170774925033,215,0 +170774925081,214,0 +170774925129,214,0 +170774925176,214,0 +170774925224,214,0 +170774925274,214,0 +170774925322,214,0 +170774925370,214,0 +170774925419,215,0 +170774925467,214,0 +170774925515,215,0 +170774925564,215,0 +170774925612,215,0 +170774925660,215,0 +170774925708,215,0 +170774925756,215,0 +170774925804,215,0 +170774925852,215,0 +170774925900,215,0 +170774925947,215,0 +170774925995,215,0 +170774926043,215,0 +170774926091,215,0 +170774926139,215,0 +170774926187,215,0 +170774926235,215,0 +170774926284,214,0 +170774926332,215,0 +170774926380,215,0 +170774926428,215,0 +170774926476,215,0 +170774926523,215,0 +170774926571,215,0 +170774926619,215,0 +170774926667,215,0 +170774926717,214,0 +170774926766,214,0 +170774926816,214,0 +170774926864,214,0 +170774926913,214,0 +170774926963,215,0 +170774927011,214,0 +170774927059,215,0 +170774927106,215,0 +170774927156,215,0 +170774927204,215,0 +170774927253,215,0 +170774927301,215,0 +170774927349,215,0 +170774927397,215,0 +170774927445,215,0 +170774927493,215,0 +170774927541,214,0 +170774927589,214,0 +170774927638,214,0 +170774927686,214,0 +170774927736,214,0 +170774927785,214,0 +170774927835,214,0 +170774927883,214,0 +170774927931,215,0 +170774927980,215,0 +170774928028,215,0 +170774928076,215,0 +170774928124,216,0 +170774928172,215,0 +170774928220,215,0 +170774928268,215,0 +170774928316,215,0 +170774928364,214,0 +170774928411,214,0 +170774928461,214,0 +170774928509,214,0 +170774928556,214,0 +170774928604,214,0 +170774928652,214,0 +170774928700,214,0 +170774928748,214,0 +170774928797,215,0 +170774928845,215,0 +170774928895,215,0 +170774928943,215,0 +170774928992,215,0 +170774929040,215,0 +170774929088,215,0 +170774929136,215,0 +170774929184,214,0 +170774929233,214,0 +170774929283,214,0 +170774929331,214,0 +170774929380,214,0 +170774929428,214,0 +170774929476,214,0 +170774929524,215,0 +170774929572,215,0 +170774929622,215,0 +170774929672,215,0 +170774929721,215,0 +170774929770,216,0 +170774929818,215,0 +170774929866,215,0 +170774929914,215,0 +170774929962,215,0 +170774930012,215,0 +170774930061,214,0 +170774930111,214,0 +170774930160,214,0 +170774930208,214,0 +170774930258,214,0 +170774930305,214,0 +170774930353,214,0 +170774930401,215,0 +170774930449,214,0 +170774930497,215,0 +170774930545,215,0 +170774930592,215,0 +170774930640,215,0 +170774930688,215,0 +170774930736,215,0 +170774930784,215,0 +170774930832,215,0 +170774930880,214,0 +170774930928,214,0 +170774930975,214,0 +170774931023,214,0 +170774931071,214,0 +170774931121,214,0 +170774931168,214,0 +170774931216,215,0 +170774931266,215,0 +170774931314,215,0 +170774931362,215,0 +170774931410,215,0 +170774931459,215,0 +170774931507,215,0 +170774931555,215,0 +170774931603,215,0 +170774931650,214,0 +170774931698,214,0 +170774931746,214,0 +170774931794,214,0 +170774931844,214,0 +170774931892,214,0 +170774931940,214,0 +170774931987,215,0 +170774932035,215,0 +170774932085,215,0 +170774932133,215,0 +170774932181,215,0 +170774932229,215,0 +170774932278,215,0 +170774932328,215,0 +170774932377,215,0 +170774932425,215,0 +170774932474,215,0 +170774932522,214,0 +170774932572,214,0 +170774932620,214,0 +170774932667,214,0 +170774932715,214,0 +170774932763,214,0 +170774932811,215,0 +170774932861,215,0 +170774932909,215,0 +170774932957,215,0 +170774933006,215,0 +170774933054,215,0 +170774933102,215,0 +170774933150,215,0 +170774933200,215,0 +170774933248,215,0 +170774933296,215,0 +170774933345,214,0 +170774933393,214,0 +170774933441,214,0 +170774933489,214,0 +170774933537,214,0 +170774933584,214,0 +170774933632,215,0 +170774933682,215,0 +170774933731,215,0 +170774933779,215,0 +170774933827,215,0 +170774933875,215,0 +170774933922,215,0 +170774933970,215,0 +170774934020,215,0 +170774934068,215,0 +170774934117,215,0 +170774934165,214,0 +170774934213,214,0 +170774934261,214,0 +170774934309,214,0 +170774934359,214,0 +170774934407,214,0 +170774934455,214,0 +170774934504,215,0 +170774934554,214,0 +170774934602,215,0 +170774934649,215,0 +170774934697,215,0 +170774934745,215,0 +170774934795,215,0 +170774934843,217,0 +170774934891,215,0 +170774934940,215,0 +170774934988,214,0 +170774935036,214,0 +170774935084,214,0 +170774935132,214,0 +170774935182,214,0 +170774935231,214,0 +170774935279,214,0 +170774935327,214,0 +170774935375,214,0 +170774935424,214,0 +170774935472,215,0 +170774935520,215,0 +170774935568,215,0 +170774935616,215,0 +170774935664,215,0 +170774935712,215,0 +170774935761,215,0 +170774935809,215,0 +170774935857,214,0 +170774935907,214,0 +170774935956,214,0 +170774936004,214,0 +170774936054,214,0 +170774936103,214,0 +170774936151,214,0 +170774936199,214,0 +170774936249,214,0 +170774936298,215,0 +170774936346,215,0 +170774936394,215,0 +170774936442,215,0 +170774936490,215,0 +170774936538,215,0 +170774936586,215,0 +170774936635,215,0 +170774936685,213,0 +170774936733,214,0 +170774936781,214,0 +170774936830,214,0 +170774936878,214,0 +170774936926,214,0 +170774936974,214,0 +170774937022,214,0 +170774937070,214,0 +170774937119,215,0 +170774937169,215,0 +170774937218,215,0 +170774937266,215,0 +170774937316,215,0 +170774937364,215,0 +170774937412,215,0 +170774937461,214,0 +170774937509,213,0 +170774937557,214,0 +170774937606,214,0 +170774937654,214,0 +170774937702,214,0 +170774937750,214,0 +170774937798,214,0 +170774937846,214,0 +170774937896,214,0 +170774937945,214,0 +170774937995,215,0 +170774938042,215,0 +170774938092,215,0 +170774938140,215,0 +170774938188,215,0 +170774938236,215,0 +170774938283,215,0 +170774938333,214,0 +170774938381,214,0 +170774938429,214,0 +170774938478,214,0 +170774938526,214,0 +170774938574,214,0 +170774938623,215,0 +170774938673,215,0 +170774938721,215,0 +170774938769,215,0 +170774938816,215,0 +170774938866,215,0 +170774938914,215,0 +170774938962,215,0 +170774939011,215,0 +170774939059,215,0 +170774939107,215,0 +170774939155,214,0 +170774939203,214,0 +170774939250,214,0 +170774939298,214,0 +170774939348,214,0 +170774939397,215,0 +170774939445,215,0 +170774939493,215,0 +170774939541,215,0 +170774939589,215,0 +170774939639,215,0 +170774939687,215,0 +170774939736,215,0 +170774939784,215,0 +170774939834,215,0 +170774939882,215,0 +170774939931,215,0 +170774939979,214,0 +170774940027,214,0 +170774940075,214,0 +170774940123,214,0 +170774940171,214,0 +170774940219,215,0 +170774940268,214,0 +170774940316,214,0 +170774940364,214,0 +170774940412,215,0 +170774940460,215,0 +170774940508,215,0 +170774940557,215,0 +170774940605,215,0 +170774940653,215,0 +170774940701,215,0 +170774940749,215,0 +170774940796,214,0 +170774940844,214,0 +170774940892,214,0 +170774940941,214,0 +170774940991,215,0 +170774941040,215,0 +170774941090,215,0 +170774941138,215,0 +170774941185,215,0 +170774941233,215,0 +170774941281,215,0 +170774941329,215,0 +170774941377,215,0 +170774941425,215,0 +170774941474,215,0 +170774941524,215,0 +170774941573,215,0 +170774941621,215,0 +170774941671,215,0 +170774941720,215,0 +170774941768,215,0 +170774941818,215,0 +170774941866,215,0 +170774941914,215,0 +170774941961,215,0 +170774942009,215,0 +170774942057,215,0 +170774942105,215,0 +170774942153,215,0 +170774942203,215,0 +170774942252,215,0 +170774942300,215,0 +170774942348,215,0 +170774942396,215,0 +170774942444,214,0 +170774942491,215,0 +170774942541,215,0 +170774942589,214,0 +170774942638,215,0 +170774942686,215,0 +170774942734,215,0 +170774942782,215,0 +170774942830,215,0 +170774942878,215,0 +170774942927,215,0 +170774942975,215,0 +170774943025,215,0 +170774943072,215,0 +170774943122,215,0 +170774943170,215,0 +170774943219,215,0 +170774943269,214,0 +170774943317,214,0 +170774943366,214,0 +170774943414,214,0 +170774943462,215,0 +170774943510,215,0 +170774943558,215,0 +170774943606,215,0 +170774943655,215,0 +170774943703,215,0 +170774943751,215,0 +170774943800,215,0 +170774943848,215,0 +170774943896,215,0 +170774943946,215,0 +170774943995,215,0 +170774944043,215,0 +170774944091,214,0 +170774944139,214,0 +170774944188,214,0 +170774944236,214,0 +170774944286,214,0 +170774944334,214,0 +170774944382,214,0 +170774944430,215,0 +170774944478,215,0 +170774944526,215,0 +170774944575,215,0 +170774944625,215,0 +170774944674,215,0 +170774944722,215,0 +170774944772,215,0 +170774944821,215,0 +170774944869,215,0 +170774944917,214,0 +170774944965,213,0 +170774945014,214,0 +170774945062,214,0 +170774945110,214,0 +170774945159,214,0 +170774945207,214,0 +170774945255,214,0 +170774945305,214,0 +170774945354,214,0 +170774945404,215,0 +170774945452,215,0 +170774945501,215,0 +170774945549,215,0 +170774945597,215,0 +170774945645,215,0 +170774945693,215,0 +170774945741,214,0 +170774945791,214,0 +170774945838,214,0 +170774945886,214,0 +170774945934,214,0 +170774945982,214,0 +170774946030,214,0 +170774946080,214,0 +170774946129,214,0 +170774946179,215,0 +170774946228,215,0 +170774946276,215,0 +170774946324,215,0 +170774946372,215,0 +170774946421,215,0 +170774946469,215,0 +170774946517,215,0 +170774946566,214,0 +170774946614,214,0 +170774946662,214,0 +170774946710,214,0 +170774946759,214,0 +170774946807,214,0 +170774946855,214,0 +170774946904,214,0 +170774946952,214,0 +170774947002,215,0 +170774947050,215,0 +170774947099,215,0 +170774947147,215,0 +170774947197,215,0 +170774947246,215,0 +170774947294,215,0 +170774947342,215,0 +170774947390,214,0 +170774947438,213,0 +170774947486,213,0 +170774947534,214,0 +170774947582,214,0 +170774947630,214,0 +170774947678,214,0 +170774947725,214,0 +170774947773,214,0 +170774947821,214,0 +170774947871,215,0 +170774947919,215,0 +170774947967,215,0 +170774948016,215,0 +170774948064,215,0 +170774948112,215,0 +170774948160,215,0 +170774948208,214,0 +170774948257,213,0 +170774948305,213,0 +170774948353,214,0 +170774948403,214,0 +170774948451,214,0 +170774948499,214,0 +170774948547,214,0 +170774948594,214,0 +170774948642,214,0 +170774948690,214,0 +170774948738,214,0 +170774948786,214,0 +170774948834,215,0 +170774948882,215,0 +170774948930,215,0 +170774948979,215,0 +170774949027,214,0 +170774949075,213,0 +170774949125,213,0 +170774949174,214,0 +170774949222,214,0 +170774949270,214,0 +170774949318,214,0 +170774949366,214,0 +170774949414,214,0 +170774949462,214,0 +170774949511,214,0 +170774949559,214,0 +170774949607,215,0 +170774949655,215,0 +170774949704,215,0 +170774949752,215,0 +170774949802,215,0 +170774949850,215,0 +170774949899,213,0 +170774949949,214,0 +170774949997,214,0 +170774950046,214,0 +170774950096,214,0 +170774950144,214,0 +170774950192,214,0 +170774950239,214,0 +170774950289,214,0 +170774950337,214,0 +170774950385,214,0 +170774950434,214,0 +170774950482,214,0 +170774950530,215,0 +170774950578,215,0 +170774950626,215,0 +170774950675,215,0 +170774950725,214,0 +170774950773,214,0 +170774950821,214,0 +170774950870,214,0 +170774950920,214,0 +170774950968,214,0 +170774951016,214,0 +170774951063,214,0 +170774951111,215,0 +170774951161,215,0 +170774951209,215,0 +170774951256,215,0 +170774951304,215,0 +170774951352,215,0 +170774951400,215,0 +170774951448,215,0 +170774951496,215,0 +170774951544,214,0 +170774951593,214,0 +170774951641,214,0 +170774951689,215,0 +170774951737,215,0 +170774951786,215,0 +170774951836,215,0 +170774951884,215,0 +170774951931,215,0 +170774951979,215,0 +170774952027,215,0 +170774952077,215,0 +170774952125,215,0 +170774952172,215,0 +170774952222,215,0 +170774952270,215,0 +170774952318,215,0 +170774952366,215,0 +170774952414,215,0 +170774952462,215,0 +170774952511,215,0 +170774952561,215,0 +170774952610,215,0 +170774952658,215,0 +170774952706,215,0 +170774952754,215,0 +170774952803,215,0 +170774952851,215,0 +170774952899,215,0 +170774952947,215,0 +170774952995,215,0 +170774953043,215,0 +170774953091,215,0 +170774953139,215,0 +170774953187,215,0 +170774953236,215,0 +170774953284,215,0 +170774953332,215,0 +170774953380,215,0 +170774953428,215,0 +170774953477,215,0 +170774953527,215,0 +170774953575,215,0 +170774953623,215,0 +170774953671,216,0 +170774953719,215,0 +170774953767,215,0 +170774953816,215,0 +170774953866,215,0 +170774953915,215,0 +170774953965,215,0 +170774954013,214,0 +170774954062,214,0 +170774954110,214,0 +170774954160,214,0 +170774954207,214,0 +170774954255,215,0 +170774954305,215,0 +170774954354,215,0 +170774954404,215,0 +170774954452,215,0 +170774954500,215,0 +170774954547,215,0 +170774954595,215,0 +170774954643,215,0 +170774954691,215,0 +170774954739,215,0 +170774954787,215,0 +170774954835,214,0 +170774954883,214,0 +170774954931,214,0 +170774954980,214,0 +170774955030,215,0 +170774955078,215,0 +170774955126,215,0 +170774955173,215,0 +170774955223,215,0 +170774955271,215,0 +170774955319,215,0 +170774955367,215,0 +170774955415,215,0 +170774955462,215,0 +170774955510,215,0 +170774955560,215,0 +170774955609,215,0 +170774955658,214,0 +170774955706,214,0 +170774955754,214,0 +170774955803,214,0 +170774955851,214,0 +170774955899,214,0 +170774955947,214,0 +170774955995,215,0 +170774956042,214,0 +170774956090,215,0 +170774956140,215,0 +170774956188,215,0 +170774956237,215,0 +170774956285,215,0 +170774956333,215,0 +170774956381,215,0 +170774956429,215,0 +170774956476,215,0 +170774956524,214,0 +170774956572,214,0 +170774956620,214,0 +170774956668,214,0 +170774956716,215,0 +170774956763,214,0 +170774956811,215,0 +170774956859,215,0 +170774956907,215,0 +170774956955,215,0 +170774957003,215,0 +170774957050,215,0 +170774957098,215,0 +170774957148,215,0 +170774957196,215,0 +170774957243,215,0 +170774957291,215,0 +170774957339,214,0 +170774957387,214,0 +170774957435,214,0 +170774957482,214,0 +170774957530,214,0 +170774957578,214,0 +170774957627,214,0 +170774957675,214,0 +170774957724,214,0 +170774957772,214,0 +170774957822,215,0 +170774957870,215,0 +170774957918,215,0 +170774957965,215,0 +170774958013,215,0 +170774958061,215,0 +170774958109,215,0 +170774958158,213,0 +170774958206,214,0 +170774958254,214,0 +170774958302,214,0 +170774958350,214,0 +170774958399,214,0 +170774958447,214,0 +170774958497,214,0 +170774958545,214,0 +170774958594,214,0 +170774958644,215,0 +170774958693,215,0 +170774958741,215,0 +170774958791,215,0 +170774958840,215,0 +170774958888,215,0 +170774958936,215,0 +170774958985,214,0 +170774959033,213,0 +170774959083,214,0 +170774959131,214,0 +170774959180,214,0 +170774959228,214,0 +170774959276,214,0 +170774959326,214,0 +170774959375,214,0 +170774959423,215,0 +170774959471,215,0 +170774959519,215,0 +170774959569,215,0 +170774959617,215,0 +170774959664,215,0 +170774959712,215,0 +170774959760,215,0 +170774959808,214,0 +170774959858,214,0 +170774959907,214,0 +170774959957,214,0 +170774960006,214,0 +170774960055,214,0 +170774960103,214,0 +170774960151,215,0 +170774960199,215,0 +170774960247,215,0 +170774960295,215,0 +170774960343,215,0 +170774960390,215,0 +170774960438,215,0 +170774960486,215,0 +170774960536,215,0 +170774960585,215,0 +170774960633,214,0 +170774960681,214,0 +170774960729,214,0 +170774960778,214,0 +170774960826,214,0 +170774960875,214,0 +170774960923,214,0 +170774960971,215,0 +170774961019,214,0 +170774961069,215,0 +170774961117,215,0 +170774961164,215,0 +170774961212,215,0 +170774961262,215,0 +170774961311,215,0 +170774961359,215,0 +170774961407,215,0 +170774961457,214,0 +170774961506,214,0 +170774961554,214,0 +170774961602,214,0 +170774961651,214,0 +170774961699,214,0 +170774961747,214,0 +170774961796,215,0 +170774961844,215,0 +170774961892,215,0 +170774961940,215,0 +170774961988,215,0 +170774962036,215,0 +170774962085,215,0 +170774962133,215,0 +170774962183,215,0 +170774962230,215,0 +170774962280,214,0 +170774962328,214,0 +170774962376,214,0 +170774962423,214,0 +170774962471,214,0 +170774962519,214,0 +170774962569,214,0 +170774962617,214,0 +170774962664,215,0 +170774962714,215,0 +170774962762,215,0 +170774962809,215,0 +170774962857,215,0 +170774962905,215,0 +170774962953,215,0 +170774963001,215,0 +170774963049,215,0 +170774963097,214,0 +170774963144,214,0 +170774963192,214,0 +170774963240,214,0 +170774963288,214,0 +170774963336,214,0 +170774963385,215,0 +170774963433,215,0 +170774963481,215,0 +170774963528,215,0 +170774963576,215,0 +170774963624,215,0 +170774963672,215,0 +170774963721,215,0 +170774963771,215,0 +170774963820,215,0 +170774963870,215,0 +170774963918,214,0 +170774963966,213,0 +170774964015,214,0 +170774964063,214,0 +170774964111,214,0 +170774964161,214,0 +170774964210,214,0 +170774964260,214,0 +170774964309,215,0 +170774964357,215,0 +170774964405,215,0 +170774964454,215,0 +170774964504,215,0 +170774964552,215,0 +170774964600,215,0 +170774964647,215,0 +170774964695,215,0 +170774964743,214,0 +170774964791,214,0 +170774964839,214,0 +170774964887,214,0 +170774964935,214,0 +170774964983,215,0 +170774965032,215,0 +170774965080,214,0 +170774965128,215,0 +170774965178,215,0 +170774965227,215,0 +170774965275,215,0 +170774965324,215,0 +170774965374,215,0 +170774965422,215,0 +170774965471,215,0 +170774965519,215,0 +170774965567,215,0 +170774965615,215,0 +170774965663,214,0 +170774965710,214,0 +170774965758,214,0 +170774965806,215,0 +170774965854,215,0 +170774965902,215,0 +170774965950,215,0 +170774965998,215,0 +170774966046,215,0 +170774966095,215,0 +170774966143,215,0 +170774966191,215,0 +170774966241,215,0 +170774966289,215,0 +170774966338,215,0 +170774966386,215,0 +170774966436,214,0 +170774966484,214,0 +170774966533,214,0 +170774966583,214,0 +170774966632,214,0 +170774966680,214,0 +170774966730,215,0 +170774966777,215,0 +170774966825,215,0 +170774966873,215,0 +170774966921,215,0 +170774966969,215,0 +170774967017,215,0 +170774967064,215,0 +170774967112,215,0 +170774967160,215,0 +170774967208,215,0 +170774967256,214,0 +170774967304,214,0 +170774967352,214,0 +170774967400,214,0 +170774967447,214,0 +170774967495,214,0 +170774967543,215,0 +170774967591,215,0 +170774967639,215,0 +170774967689,215,0 +170774967737,215,0 +170774967786,215,0 +170774967834,215,0 +170774967882,215,0 +170774967930,215,0 +170774967978,215,0 +170774968026,215,0 +170774968074,214,0 +170774968122,214,0 +170774968171,214,0 +170774968219,215,0 +170774968267,215,0 +170774968315,215,0 +170774968363,215,0 +170774968411,215,0 +170774968459,215,0 +170774968507,215,0 +170774968556,215,0 +170774968606,215,0 +170774968654,215,0 +170774968703,215,0 +170774968751,215,0 +170774968799,215,0 +170774968847,215,0 +170774968896,214,0 +170774968946,214,0 +170774968995,214,0 +170774969045,214,0 +170774969093,214,0 +170774969140,214,0 +170774969190,214,0 +170774969238,215,0 +170774969286,215,0 +170774969335,215,0 +170774969383,215,0 +170774969433,215,0 +170774969481,215,0 +170774969529,215,0 +170774969578,215,0 +170774969626,215,0 +170774969676,215,0 +170774969724,214,0 +170774969772,214,0 +170774969821,214,0 +170774969869,214,0 +170774969917,214,0 +170774969965,214,0 +170774970015,214,0 +170774970064,214,0 +170774970112,215,0 +170774970160,215,0 +170774970208,215,0 +170774970257,215,0 +170774970307,215,0 +170774970356,215,0 +170774970404,215,0 +170774970454,215,0 +170774970502,215,0 +170774970551,214,0 +170774970599,214,0 +170774970649,214,0 +170774970698,214,0 +170774970746,214,0 +170774970794,214,0 +170774970844,214,0 +170774970892,215,0 +170774970939,215,0 +170774970987,215,0 +170774971037,215,0 +170774971085,215,0 +170774971134,215,0 +170774971182,215,0 +170774971230,215,0 +170774971278,215,0 +170774971328,215,0 +170774971376,214,0 +170774971423,214,0 +170774971471,214,0 +170774971519,214,0 +170774971567,214,0 +170774971616,214,0 +170774971664,214,0 +170774971712,215,0 +170774971760,215,0 +170774971808,215,0 +170774971856,215,0 +170774971905,215,0 +170774971953,215,0 +170774972000,215,0 +170774972048,215,0 +170774972096,215,0 +170774972144,215,0 +170774972191,214,0 +170774972239,214,0 +170774972287,214,0 +170774972337,214,0 +170774972384,214,0 +170774972432,214,0 +170774972480,214,0 +170774972528,215,0 +170774972575,215,0 +170774972625,215,0 +170774972673,215,0 +170774972721,215,0 +170774972769,215,0 +170774972817,215,0 +170774972866,215,0 +170774972914,215,0 +170774972962,215,0 +170774973010,215,0 +170774973057,214,0 +170774973105,214,0 +170774973153,214,0 +170774973201,214,0 +170774973250,214,0 +170774973300,214,0 +170774973348,215,0 +170774973396,215,0 +170774973444,215,0 +170774973492,215,0 +170774973539,215,0 +170774973587,215,0 +170774973635,215,0 +170774973683,215,0 +170774973731,215,0 +170774973778,215,0 +170774973826,215,0 +170774973874,214,0 +170774973922,214,0 +170774973970,214,0 +170774974018,214,0 +170774974066,214,0 +170774974113,214,0 +170774974161,215,0 +170774974209,215,0 +170774974257,215,0 +170774974305,215,0 +170774974354,215,0 +170774974402,215,0 +170774974450,215,0 +170774974498,215,0 +170774974545,215,0 +170774974593,215,0 +170774974641,215,0 +170774974689,214,0 +170774974739,214,0 +170774974786,214,0 +170774974834,214,0 +170774974882,214,0 +170774974930,214,0 +170774974978,214,0 +170774975026,214,0 +170774975073,215,0 +170774975123,215,0 +170774975171,215,0 +170774975218,215,0 +170774975266,215,0 +170774975314,215,0 +170774975362,215,0 +170774975410,215,0 +170774975458,215,0 +170774975506,214,0 +170774975554,214,0 +170774975601,214,0 +170774975649,214,0 +170774975697,214,0 +170774975745,214,0 +170774975794,214,0 +170774975842,214,0 +170774975890,214,0 +170774975938,215,0 +170774975986,215,0 +170774976034,215,0 +170774976082,215,0 +170774976130,215,0 +170774976178,215,0 +170774976227,215,0 +170774976275,215,0 +170774976323,214,0 +170774976371,214,0 +170774976418,214,0 +170774976466,214,0 +170774976514,214,0 +170774976562,214,0 +170774976610,214,0 +170774976658,214,0 +170774976706,214,0 +170774976754,215,0 +170774976801,215,0 +170774976851,215,0 +170774976899,215,0 +170774976947,215,0 +170774976994,215,0 +170774977042,215,0 +170774977090,215,0 +170774977138,214,0 +170774977186,214,0 +170774977234,214,0 +170774977282,214,0 +170774977331,214,0 +170774977379,214,0 +170774977427,214,0 +170774977475,214,0 +170774977524,214,0 +170774977572,215,0 +170774977620,215,0 +170774977668,215,0 +170774977716,215,0 +170774977764,215,0 +170774977813,215,0 +170774977861,215,0 +170774977911,215,0 +170774977960,214,0 +170774978008,214,0 +170774978056,214,0 +170774978104,214,0 +170774978152,214,0 +170774978200,214,0 +170774978247,214,0 +170774978295,214,0 +170774978343,215,0 +170774978391,215,0 +170774978439,215,0 +170774978487,215,0 +170774978535,215,0 +170774978583,215,0 +170774978631,215,0 +170774978680,215,0 +170774978730,215,0 +170774978778,215,0 +170774978826,214,0 +170774978875,214,0 +170774978923,214,0 +170774978971,214,0 +170774979019,214,0 +170774979067,214,0 +170774979115,214,0 +170774979162,215,0 +170774979210,215,0 +170774979258,215,0 +170774979306,215,0 +170774979356,215,0 +170774979404,215,0 +170774979452,215,0 +170774979500,215,0 +170774979548,215,0 +170774979597,215,0 +170774979647,214,0 +170774979696,214,0 +170774979744,214,0 +170774979792,214,0 +170774979840,214,0 +170774979888,214,0 +170774979936,214,0 +170774979985,214,0 +170774980035,215,0 +170774980084,215,0 +170774980134,215,0 +170774980183,215,0 +170774980231,215,0 +170774980279,215,0 +170774980327,215,0 +170774980375,215,0 +170774980424,215,0 +170774980472,214,0 +170774980520,214,0 +170774980568,214,0 +170774980618,214,0 +170774980666,214,0 +170774980715,214,0 +170774980764,214,0 +170774980814,215,0 +170774980863,215,0 +170774980911,215,0 +170774980959,215,0 +170774981007,215,0 +170774981057,215,0 +170774981104,215,0 +170774981152,215,0 +170774981202,215,0 +170774981250,215,0 +170774981297,214,0 +170774981345,214,0 +170774981395,214,0 +170774981442,214,0 +170774981492,214,0 +170774981540,214,0 +170774981589,214,0 +170774981637,214,0 +170774981686,215,0 +170774981734,215,0 +170774981784,214,0 +170774981832,215,0 +170774981881,215,0 +170774981931,215,0 +170774981979,215,0 +170774982028,215,0 +170774982078,215,0 +170774982125,214,0 +170774982173,214,0 +170774982223,214,0 +170774982271,214,0 +170774982319,214,0 +170774982367,214,0 +170774982416,214,0 +170774982466,214,0 +170774982515,214,0 +170774982563,215,0 +170774982611,215,0 +170774982659,215,0 +170774982709,215,0 +170774982757,215,0 +170774982806,215,0 +170774982854,215,0 +170774982903,215,0 +170774982951,213,0 +170774982999,214,0 +170774983047,214,0 +170774983095,214,0 +170774983143,214,0 +170774983191,214,0 +170774983239,214,0 +170774983288,214,0 +170774983336,214,0 +170774983384,215,0 +170774983432,215,0 +170774983482,215,0 +170774983529,215,0 +170774983579,215,0 +170774983627,215,0 +170774983676,215,0 +170774983724,215,0 +170774983772,213,0 +170774983822,214,0 +170774983871,214,0 +170774983920,214,0 +170774983968,214,0 +170774984016,214,0 +170774984064,214,0 +170774984112,214,0 +170774984160,214,0 +170774984209,214,0 +170774984257,214,0 +170774984305,214,0 +170774984355,215,0 +170774984403,215,0 +170774984452,215,0 +170774984500,215,0 +170774984548,215,0 +170774984596,215,0 +170774984644,215,0 +170774984692,215,0 +170774984740,215,0 +170774984788,215,0 +170774984837,215,0 +170774984887,215,0 +170774984936,215,0 +170774984986,214,0 +170774985035,214,0 +170774985083,214,0 +170774985131,214,0 +170774985179,215,0 +170774985227,215,0 +170774985275,215,0 +170774985324,215,0 +170774985372,215,0 +170774985420,215,0 +170774985468,215,0 +170774985517,215,0 +170774985567,215,0 +170774985617,215,0 +170774985664,215,0 +170774985712,215,0 +170774985762,215,0 +170774985811,214,0 +170774985859,214,0 +170774985907,214,0 +170774985955,214,0 +170774986003,215,0 +170774986051,215,0 +170774986099,215,0 +170774986147,215,0 +170774986196,215,0 +170774986246,215,0 +170774986294,215,0 +170774986342,215,0 +170774986391,215,0 +170774986439,215,0 +170774986487,215,0 +170774986535,215,0 +170774986583,215,0 +170774986631,214,0 +170774986679,215,0 +170774986727,214,0 +170774986774,215,0 +170774986822,215,0 +170774986870,215,0 +170774986918,215,0 +170774986966,215,0 +170774987014,215,0 +170774987062,215,0 +170774987110,215,0 +170774987159,215,0 +170774987207,215,0 +170774987255,215,0 +170774987303,215,0 +170774987351,215,0 +170774987400,215,0 +170774987450,215,0 +170774987499,214,0 +170774987548,214,0 +170774987596,214,0 +170774987644,214,0 +170774987692,214,0 +170774987742,214,0 +170774987789,215,0 +170774987839,215,0 +170774987888,215,0 +170774987936,215,0 +170774987984,215,0 +170774988032,215,0 +170774988080,215,0 +170774988130,215,0 +170774988178,215,0 +170774988225,216,0 +170774988275,214,0 +170774988323,214,0 +170774988371,214,0 +170774988420,214,0 +170774988470,214,0 +170774988518,214,0 +170774988566,214,0 +170774988615,215,0 +170774988663,215,0 +170774988711,215,0 +170774988760,215,0 +170774988808,215,0 +170774988857,215,0 +170774988905,215,0 +170774988953,215,0 +170774989001,215,0 +170774989049,215,0 +170774989097,215,0 +170774989144,214,0 +170774989192,213,0 +170774989240,214,0 +170774989288,214,0 +170774989336,214,0 +170774989384,214,0 +170774989431,214,0 +170774989479,214,0 +170774989527,215,0 +170774989577,215,0 +170774989626,215,0 +170774989676,215,0 +170774989725,215,0 +170774989775,215,0 +170774989822,215,0 +170774989870,215,0 +170774989918,214,0 +170774989966,213,0 +170774990014,213,0 +170774990063,214,0 +170774990113,214,0 +170774990160,214,0 +170774990208,214,0 +170774990256,214,0 +170774990304,214,0 +170774990352,214,0 +170774990400,214,0 +170774990447,214,0 +170774990497,214,0 +170774990545,214,0 +170774990594,215,0 +170774990644,214,0 +170774990692,215,0 +170774990739,215,0 +170774990789,213,0 +170774990837,214,0 +170774990884,213,0 +170774990932,214,0 +170774990980,214,0 +170774991028,214,0 +170774991077,214,0 +170774991125,214,0 +170774991174,214,0 +170774991222,214,0 +170774991270,214,0 +170774991320,215,0 +170774991369,215,0 +170774991417,215,0 +170774991465,215,0 +170774991513,215,0 +170774991561,215,0 +170774991609,214,0 +170774991657,214,0 +170774991704,214,0 +170774991752,214,0 +170774991800,214,0 +170774991850,214,0 +170774991899,215,0 +170774991947,214,0 +170774991995,215,0 +170774992045,215,0 +170774992093,215,0 +170774992140,215,0 +170774992188,215,0 +170774992236,215,0 +170774992284,215,0 +170774992334,215,0 +170774992383,215,0 +170774992431,214,0 +170774992480,214,0 +170774992528,214,0 +170774992576,214,0 +170774992624,214,0 +170774992672,215,0 +170774992722,215,0 +170774992770,215,0 +170774992818,215,0 +170774992866,215,0 +170774992913,215,0 +170774992961,215,0 +170774993009,215,0 +170774993057,215,0 +170774993105,215,0 +170774993154,215,0 +170774993202,215,0 +170774993250,214,0 +170774993298,214,0 +170774993348,214,0 +170774993396,214,0 +170774993443,214,0 +170774993493,214,0 +170774993541,214,0 +170774993590,215,0 +170774993640,215,0 +170774993688,215,0 +170774993735,215,0 +170774993783,215,0 +170774993831,215,0 +170774993879,215,0 +170774993927,215,0 +170774993975,215,0 +170774994024,215,0 +170774994072,214,0 +170774994120,214,0 +170774994168,214,0 +170774994218,214,0 +170774994266,214,0 +170774994315,215,0 +170774994365,215,0 +170774994412,215,0 +170774994460,215,0 +170774994508,215,0 +170774994558,215,0 +170774994606,215,0 +170774994653,215,0 +170774994703,215,0 +170774994751,215,0 +170774994799,215,0 +170774994847,215,0 +170774994894,214,0 +170774994942,215,0 +170774994990,215,0 +170774995040,215,0 +170774995087,215,0 +170774995135,215,0 +170774995183,215,0 +170774995231,215,0 +170774995279,215,0 +170774995327,215,0 +170774995375,215,0 +170774995423,215,0 +170774995472,215,0 +170774995520,215,0 +170774995568,215,0 +170774995616,215,0 +170774995664,215,0 +170774995714,214,0 +170774995763,215,0 +170774995813,215,0 +170774995862,214,0 +170774995910,215,0 +170774995958,215,0 +170774996006,215,0 +170774996054,215,0 +170774996102,215,0 +170774996151,215,0 +170774996200,215,0 +170774996248,215,0 +170774996296,215,0 +170774996346,215,0 +170774996395,215,0 +170774996443,215,0 +170774996491,215,0 +170774996539,215,0 +170774996587,214,0 +170774996635,214,0 +170774996683,214,0 +170774996732,215,0 +170774996780,215,0 +170774996829,215,0 +170774996877,215,0 +170774996927,215,0 +170774996976,215,0 +170774997024,215,0 +170774997072,215,0 +170774997122,215,0 +170774997171,215,0 +170774997219,215,0 +170774997269,215,0 +170774997317,215,0 +170774997366,215,0 +170774997414,214,0 +170774997464,214,0 +170774997513,214,0 +170774997563,214,0 +170774997612,214,0 +170774997660,214,0 +170774997708,215,0 +170774997757,215,0 +170774997807,215,0 +170774997856,215,0 +170774997904,216,0 +170774997952,215,0 +170774998000,215,0 +170774998049,215,0 +170774998097,215,0 +170774998147,215,0 +170774998196,214,0 +170774998244,214,0 +170774998292,214,0 +170774998342,214,0 +170774998390,214,0 +170774998437,214,0 +170774998485,214,0 +170774998535,215,0 +170774998583,215,0 +170774998632,215,0 +170774998680,215,0 +170774998730,215,0 +170774998777,215,0 +170774998825,215,0 +170774998875,215,0 +170774998924,215,0 +170774998974,215,0 +170774999022,214,0 +170774999070,214,0 +170774999118,214,0 +170774999167,214,0 +170774999217,214,0 +170774999265,214,0 +170774999312,214,0 +170774999362,214,0 +170774999410,215,0 +170774999458,215,0 +170774999507,215,0 +170774999557,215,0 +170774999605,215,0 +170774999653,215,0 +170774999701,215,0 +170774999748,215,0 +170774999796,215,0 +170774999846,214,0 +170774999894,214,0 +170774999941,213,0 +170774999989,214,0 diff --git a/laser_value/0213-01.csv b/laser_value/0213-01.csv new file mode 100644 index 0000000..5e88a10 --- /dev/null +++ b/laser_value/0213-01.csv @@ -0,0 +1,7410 @@ +timestamp,laser_value,event +170775001435,215,0 +170775001483,215,0 +170775001531,214,0 +170775001579,213,0 +170775001627,214,0 +170775001675,214,0 +170775001723,214,0 +170775001771,214,0 +170775001819,214,0 +170775001866,214,0 +170775001914,214,0 +170775001962,214,0 +170775002010,215,0 +170775002058,214,0 +170775002106,215,0 +170775002155,215,0 +170775002203,215,0 +170775002251,215,0 +170775002299,215,0 +170775002346,214,0 +170775002396,213,0 +170775002444,213,0 +170775002491,213,0 +170775002539,214,0 +170775002587,214,0 +170775002635,214,0 +170775002684,214,0 +170775002732,214,0 +170775002780,214,0 +170775002828,214,0 +170775002878,214,0 +170775002926,214,0 +170775002975,214,0 +170775003023,214,0 +170775003071,214,0 +170775003119,215,0 +170775003169,214,0 +170775003217,214,0 +170775003265,214,0 +170775003312,214,0 +170775003362,214,0 +170775003410,214,0 +170775003459,214,0 +170775003507,214,0 +170775003555,214,0 +170775003605,214,0 +170775003654,214,0 +170775003702,214,0 +170775003751,214,0 +170775003801,215,0 +170775003849,214,0 +170775003898,215,0 +170775003946,215,0 +170775003996,214,0 +170775004045,214,0 +170775004093,214,0 +170775004141,214,0 +170775004191,214,0 +170775004239,214,0 +170775004288,214,0 +170775004336,214,0 +170775004385,215,0 +170775004435,215,0 +170775004483,215,0 +170775004532,215,0 +170775004580,215,0 +170775004629,214,0 +170775004679,215,0 +170775004727,215,0 +170775004776,215,0 +170775004824,214,0 +170775004872,214,0 +170775004920,214,0 +170775004968,214,0 +170775005018,214,0 +170775005065,214,0 +170775005115,214,0 +170775005165,215,0 +170775005214,215,0 +170775005262,215,0 +170775005310,215,0 +170775005358,215,0 +170775005405,215,0 +170775005453,215,0 +170775005501,215,0 +170775005549,215,0 +170775005599,215,0 +170775005646,214,0 +170775005696,215,0 +170775005744,215,0 +170775005792,215,0 +170775005841,215,0 +170775005889,215,0 +170775005937,215,0 +170775005985,215,0 +170775006032,215,0 +170775006080,215,0 +170775006130,215,0 +170775006178,215,0 +170775006227,215,0 +170775006277,215,0 +170775006324,215,0 +170775006372,215,0 +170775006420,215,0 +170775006468,215,0 +170775006516,215,0 +170775006565,215,0 +170775006613,215,0 +170775006661,215,0 +170775006709,215,0 +170775006756,215,0 +170775006806,215,0 +170775006853,215,0 +170775006901,215,0 +170775006949,215,0 +170775006997,215,0 +170775007045,215,0 +170775007093,215,0 +170775007140,216,0 +170775007188,215,0 +170775007236,215,0 +170775007286,214,0 +170775007335,214,0 +170775007384,214,0 +170775007432,215,0 +170775007482,215,0 +170775007530,215,0 +170775007579,215,0 +170775007627,215,0 +170775007675,215,0 +170775007723,215,0 +170775007771,215,0 +170775007819,215,0 +170775007867,215,0 +170775007914,215,0 +170775007964,215,0 +170775008013,215,0 +170775008063,215,0 +170775008111,214,0 +170775008159,214,0 +170775008206,214,0 +170775008254,215,0 +170775008302,215,0 +170775008352,215,0 +170775008400,215,0 +170775008448,215,0 +170775008495,215,0 +170775008545,215,0 +170775008593,215,0 +170775008641,215,0 +170775008690,215,0 +170775008738,215,0 +170775008788,215,0 +170775008835,215,0 +170775008883,215,0 +170775008931,214,0 +170775008980,214,0 +170775009028,214,0 +170775009078,214,0 +170775009126,214,0 +170775009175,214,0 +170775009225,215,0 +170775009272,215,0 +170775009320,215,0 +170775009368,215,0 +170775009416,215,0 +170775009464,215,0 +170775009511,215,0 +170775009559,215,0 +170775009607,215,0 +170775009657,215,0 +170775009705,215,0 +170775009752,215,0 +170775009802,214,0 +170775009850,214,0 +170775009899,214,0 +170775009947,214,0 +170775009995,214,0 +170775010043,214,0 +170775010091,214,0 +170775010139,214,0 +170775010187,214,0 +170775010235,215,0 +170775010284,215,0 +170775010334,215,0 +170775010381,215,0 +170775010429,215,0 +170775010479,215,0 +170775010527,215,0 +170775010575,215,0 +170775010624,213,0 +170775010672,213,0 +170775010722,214,0 +170775010770,214,0 +170775010817,214,0 +170775010865,214,0 +170775010913,214,0 +170775010961,214,0 +170775011011,214,0 +170775011060,215,0 +170775011108,214,0 +170775011157,215,0 +170775011207,215,0 +170775011256,215,0 +170775011306,215,0 +170775011355,215,0 +170775011403,214,0 +170775011453,213,0 +170775011501,214,0 +170775011549,214,0 +170775011597,214,0 +170775011646,214,0 +170775011696,214,0 +170775011744,214,0 +170775011792,214,0 +170775011840,215,0 +170775011888,214,0 +170775011937,215,0 +170775011987,215,0 +170775012036,215,0 +170775012084,215,0 +170775012134,215,0 +170775012181,215,0 +170775012231,214,0 +170775012280,214,0 +170775012328,214,0 +170775012376,214,0 +170775012424,214,0 +170775012472,214,0 +170775012522,214,0 +170775012571,214,0 +170775012619,215,0 +170775012667,214,0 +170775012717,215,0 +170775012764,215,0 +170775012812,215,0 +170775012860,215,0 +170775012908,215,0 +170775012957,215,0 +170775013005,215,0 +170775013053,214,0 +170775013101,214,0 +170775013148,214,0 +170775013196,214,0 +170775013244,214,0 +170775013292,214,0 +170775013340,214,0 +170775013388,215,0 +170775013436,214,0 +170775013483,214,0 +170775013531,215,0 +170775013581,215,0 +170775013630,215,0 +170775013678,215,0 +170775013726,215,0 +170775013774,215,0 +170775013823,215,0 +170775013871,215,0 +170775013921,214,0 +170775013968,214,0 +170775014016,214,0 +170775014066,214,0 +170775014115,214,0 +170775014163,214,0 +170775014211,214,0 +170775014258,215,0 +170775014306,214,0 +170775014354,215,0 +170775014402,215,0 +170775014450,215,0 +170775014500,215,0 +170775014547,215,0 +170775014597,215,0 +170775014645,215,0 +170775014693,215,0 +170775014741,214,0 +170775014790,214,0 +170775014840,214,0 +170775014889,214,0 +170775014937,214,0 +170775014985,214,0 +170775015033,214,0 +170775015083,214,0 +170775015131,214,0 +170775015178,215,0 +170775015226,215,0 +170775015274,215,0 +170775015322,215,0 +170775015372,215,0 +170775015420,215,0 +170775015469,215,0 +170775015519,215,0 +170775015566,214,0 +170775015616,214,0 +170775015665,214,0 +170775015713,214,0 +170775015763,214,0 +170775015812,214,0 +170775015860,215,0 +170775015908,215,0 +170775015956,215,0 +170775016004,215,0 +170775016053,215,0 +170775016101,215,0 +170775016149,214,0 +170775016198,215,0 +170775016246,215,0 +170775016296,215,0 +170775016343,215,0 +170775016391,214,0 +170775016439,214,0 +170775016489,214,0 +170775016537,214,0 +170775016586,214,0 +170775016634,215,0 +170775016682,214,0 +170775016730,215,0 +170775016778,214,0 +170775016827,215,0 +170775016875,215,0 +170775016923,215,0 +170775016971,215,0 +170775017019,215,0 +170775017068,215,0 +170775017116,215,0 +170775017165,215,0 +170775017215,214,0 +170775017263,214,0 +170775017311,214,0 +170775017358,214,0 +170775017408,214,0 +170775017457,215,0 +170775017505,215,0 +170775017553,215,0 +170775017601,215,0 +170775017650,215,0 +170775017698,215,0 +170775017746,215,0 +170775017794,215,0 +170775017842,215,0 +170775017890,215,0 +170775017939,215,0 +170775017987,215,0 +170775018037,214,0 +170775018085,214,0 +170775018132,214,0 +170775018182,214,0 +170775018230,214,0 +170775018278,214,0 +170775018326,215,0 +170775018374,215,0 +170775018421,215,0 +170775018469,215,0 +170775018517,215,0 +170775018565,215,0 +170775018615,215,0 +170775018664,215,0 +170775018712,215,0 +170775018762,215,0 +170775018810,215,0 +170775018859,214,0 +170775018907,214,0 +170775018957,214,0 +170775019005,214,0 +170775019053,214,0 +170775019102,214,0 +170775019152,215,0 +170775019200,215,0 +170775019248,215,0 +170775019297,215,0 +170775019347,215,0 +170775019396,215,0 +170775019446,215,0 +170775019493,215,0 +170775019541,215,0 +170775019589,215,0 +170775019637,215,0 +170775019685,214,0 +170775019735,214,0 +170775019784,214,0 +170775019834,214,0 +170775019881,214,0 +170775019929,214,0 +170775019977,214,0 +170775020025,215,0 +170775020073,215,0 +170775020121,215,0 +170775020169,215,0 +170775020219,215,0 +170775020267,215,0 +170775020314,215,0 +170775020362,215,0 +170775020410,215,0 +170775020460,215,0 +170775020508,214,0 +170775020556,214,0 +170775020604,214,0 +170775020651,214,0 +170775020699,214,0 +170775020747,215,0 +170775020795,214,0 +170775020844,215,0 +170775020892,215,0 +170775020942,215,0 +170775020991,215,0 +170775021039,215,0 +170775021089,215,0 +170775021136,215,0 +170775021184,215,0 +170775021232,215,0 +170775021282,215,0 +170775021331,214,0 +170775021379,214,0 +170775021429,214,0 +170775021476,214,0 +170775021526,215,0 +170775021574,215,0 +170775021622,215,0 +170775021670,215,0 +170775021718,215,0 +170775021767,215,0 +170775021815,215,0 +170775021865,215,0 +170775021912,215,0 +170775021960,215,0 +170775022008,215,0 +170775022056,215,0 +170775022104,215,0 +170775022154,214,0 +170775022203,214,0 +170775022251,214,0 +170775022299,215,0 +170775022347,215,0 +170775022395,215,0 +170775022443,215,0 +170775022491,215,0 +170775022538,215,0 +170775022586,215,0 +170775022634,215,0 +170775022684,215,0 +170775022733,215,0 +170775022781,215,0 +170775022829,215,0 +170775022877,215,0 +170775022926,215,0 +170775022976,214,0 +170775023024,214,0 +170775023072,214,0 +170775023120,214,0 +170775023168,214,0 +170775023217,214,0 +170775023265,214,0 +170775023315,215,0 +170775023364,214,0 +170775023412,215,0 +170775023460,215,0 +170775023508,215,0 +170775023556,215,0 +170775023604,215,0 +170775023653,215,0 +170775023701,215,0 +170775023751,215,0 +170775023798,214,0 +170775023846,214,0 +170775023896,214,0 +170775023945,214,0 +170775023995,214,0 +170775024044,214,0 +170775024092,215,0 +170775024142,215,0 +170775024191,215,0 +170775024239,215,0 +170775024287,215,0 +170775024335,215,0 +170775024383,215,0 +170775024431,215,0 +170775024480,215,0 +170775024530,215,0 +170775024577,214,0 +170775024625,214,0 +170775024675,214,0 +170775024723,214,0 +170775024772,214,0 +170775024822,214,0 +170775024870,214,0 +170775024917,214,0 +170775024965,214,0 +170775025013,215,0 +170775025061,215,0 +170775025111,215,0 +170775025159,215,0 +170775025207,215,0 +170775025254,215,0 +170775025302,215,0 +170775025352,215,0 +170775025401,215,0 +170775025449,214,0 +170775025497,214,0 +170775025547,214,0 +170775025595,214,0 +170775025644,214,0 +170775025692,215,0 +170775025740,215,0 +170775025790,214,0 +170775025838,215,0 +170775025887,215,0 +170775025935,215,0 +170775025983,215,0 +170775026031,215,0 +170775026081,215,0 +170775026128,215,0 +170775026176,215,0 +170775026224,215,0 +170775026274,214,0 +170775026323,214,0 +170775026373,214,0 +170775026421,214,0 +170775026470,214,0 +170775026518,214,0 +170775026566,214,0 +170775026614,214,0 +170775026662,214,0 +170775026710,215,0 +170775026759,215,0 +170775026807,215,0 +170775026855,215,0 +170775026905,215,0 +170775026952,215,0 +170775027000,215,0 +170775027048,215,0 +170775027096,214,0 +170775027144,214,0 +170775027192,214,0 +170775027240,214,0 +170775027288,214,0 +170775027336,214,0 +170775027384,214,0 +170775027433,214,0 +170775027481,215,0 +170775027529,215,0 +170775027577,215,0 +170775027625,215,0 +170775027673,215,0 +170775027721,215,0 +170775027769,215,0 +170775027816,215,0 +170775027864,215,0 +170775027912,214,0 +170775027962,214,0 +170775028011,214,0 +170775028061,214,0 +170775028108,214,0 +170775028158,214,0 +170775028207,214,0 +170775028257,214,0 +170775028305,215,0 +170775028353,215,0 +170775028402,215,0 +170775028452,215,0 +170775028500,215,0 +170775028548,215,0 +170775028597,215,0 +170775028647,215,0 +170775028696,215,0 +170775028744,214,0 +170775028794,214,0 +170775028843,214,0 +170775028891,214,0 +170775028939,214,0 +170775028987,215,0 +170775029035,214,0 +170775029083,215,0 +170775029130,215,0 +170775029180,215,0 +170775029228,215,0 +170775029277,215,0 +170775029325,215,0 +170775029373,215,0 +170775029423,215,0 +170775029471,215,0 +170775029520,215,0 +170775029568,214,0 +170775029617,214,0 +170775029665,214,0 +170775029715,214,0 +170775029763,214,0 +170775029812,214,0 +170775029860,214,0 +170775029908,214,0 +170775029958,215,0 +170775030006,214,0 +170775030054,215,0 +170775030102,215,0 +170775030151,215,0 +170775030199,214,0 +170775030249,215,0 +170775030298,215,0 +170775030348,215,0 +170775030396,214,0 +170775030443,213,0 +170775030493,214,0 +170775030541,213,0 +170775030590,214,0 +170775030638,214,0 +170775030686,214,0 +170775030734,214,0 +170775030782,214,0 +170775030832,214,0 +170775030880,214,0 +170775030929,215,0 +170775030977,215,0 +170775031027,215,0 +170775031076,215,0 +170775031124,215,0 +170775031172,215,0 +170775031220,213,0 +170775031270,213,0 +170775031319,214,0 +170775031367,214,0 +170775031415,214,0 +170775031463,214,0 +170775031511,214,0 +170775031561,214,0 +170775031608,215,0 +170775031656,214,0 +170775031706,215,0 +170775031756,215,0 +170775031803,215,0 +170775031851,215,0 +170775031901,215,0 +170775031950,215,0 +170775031998,214,0 +170775032046,214,0 +170775032094,214,0 +170775032142,214,0 +170775032190,214,0 +170775032238,214,0 +170775032286,215,0 +170775032336,215,0 +170775032384,215,0 +170775032432,215,0 +170775032481,215,0 +170775032531,215,0 +170775032581,215,0 +170775032630,215,0 +170775032678,215,0 +170775032726,215,0 +170775032776,215,0 +170775032825,214,0 +170775032873,214,0 +170775032921,214,0 +170775032970,214,0 +170775033018,214,0 +170775033066,214,0 +170775033114,215,0 +170775033164,215,0 +170775033213,215,0 +170775033263,215,0 +170775033311,215,0 +170775033359,215,0 +170775033408,215,0 +170775033458,215,0 +170775033506,215,0 +170775033555,215,0 +170775033605,215,0 +170775033653,214,0 +170775033702,214,0 +170775033752,214,0 +170775033800,214,0 +170775033849,214,0 +170775033897,214,0 +170775033946,214,0 +170775033994,214,0 +170775034042,214,0 +170775034090,214,0 +170775034138,215,0 +170775034186,215,0 +170775034234,215,0 +170775034284,215,0 +170775034332,215,0 +170775034379,215,0 +170775034429,215,0 +170775034477,214,0 +170775034525,214,0 +170775034574,214,0 +170775034622,214,0 +170775034672,214,0 +170775034721,214,0 +170775034771,214,0 +170775034819,215,0 +170775034869,215,0 +170775034917,215,0 +170775034966,215,0 +170775035016,215,0 +170775035063,215,0 +170775035111,215,0 +170775035159,215,0 +170775035209,215,0 +170775035257,215,0 +170775035305,214,0 +170775035352,214,0 +170775035400,214,0 +170775035450,214,0 +170775035498,215,0 +170775035546,215,0 +170775035595,215,0 +170775035645,215,0 +170775035694,215,0 +170775035742,215,0 +170775035790,215,0 +170775035838,215,0 +170775035886,215,0 +170775035934,215,0 +170775035981,215,0 +170775036031,215,0 +170775036079,215,0 +170775036127,214,0 +170775036174,214,0 +170775036222,214,0 +170775036270,215,0 +170775036320,214,0 +170775036369,215,0 +170775036417,214,0 +170775036465,215,0 +170775036515,215,0 +170775036562,215,0 +170775036610,215,0 +170775036660,215,0 +170775036708,215,0 +170775036756,215,0 +170775036805,215,0 +170775036853,215,0 +170775036903,215,0 +170775036950,214,0 +170775036998,214,0 +170775037046,214,0 +170775037094,214,0 +170775037144,214,0 +170775037193,214,0 +170775037241,214,0 +170775037289,214,0 +170775037337,215,0 +170775037385,215,0 +170775037432,215,0 +170775037482,215,0 +170775037530,215,0 +170775037578,215,0 +170775037626,215,0 +170775037675,215,0 +170775037724,215,0 +170775037772,214,0 +170775037822,214,0 +170775037870,214,0 +170775037918,214,0 +170775037967,215,0 +170775038015,214,0 +170775038063,214,0 +170775038112,215,0 +170775038160,215,0 +170775038210,215,0 +170775038258,215,0 +170775038307,215,0 +170775038357,215,0 +170775038406,215,0 +170775038456,215,0 +170775038503,215,0 +170775038553,215,0 +170775038601,214,0 +170775038649,214,0 +170775038697,214,0 +170775038746,214,0 +170775038796,215,0 +170775038844,214,0 +170775038891,214,0 +170775038939,215,0 +170775038987,215,0 +170775039037,215,0 +170775039085,215,0 +170775039133,215,0 +170775039181,215,0 +170775039230,215,0 +170775039278,215,0 +170775039326,215,0 +170775039374,215,0 +170775039423,214,0 +170775039471,215,0 +170775039519,214,0 +170775039567,214,0 +170775039615,214,0 +170775039663,214,0 +170775039711,215,0 +170775039759,215,0 +170775039807,215,0 +170775039856,215,0 +170775039904,215,0 +170775039952,215,0 +170775040002,216,0 +170775040051,215,0 +170775040099,215,0 +170775040147,215,0 +170775040195,215,0 +170775040244,214,0 +170775040292,214,0 +170775040340,214,0 +170775040388,214,0 +170775040436,214,0 +170775040485,214,0 +170775040533,215,0 +170775040581,214,0 +170775040629,215,0 +170775040677,215,0 +170775040725,215,0 +170775040773,215,0 +170775040821,215,0 +170775040870,215,0 +170775040918,215,0 +170775040966,215,0 +170775041014,215,0 +170775041063,214,0 +170775041113,214,0 +170775041163,214,0 +170775041210,214,0 +170775041260,214,0 +170775041309,214,0 +170775041357,214,0 +170775041407,214,0 +170775041456,214,0 +170775041504,215,0 +170775041552,215,0 +170775041600,215,0 +170775041650,215,0 +170775041699,215,0 +170775041749,215,0 +170775041798,215,0 +170775041846,215,0 +170775041894,213,0 +170775041943,213,0 +170775041991,213,0 +170775042039,214,0 +170775042087,214,0 +170775042137,214,0 +170775042185,214,0 +170775042232,214,0 +170775042280,214,0 +170775042328,214,0 +170775042378,214,0 +170775042426,214,0 +170775042474,214,0 +170775042523,215,0 +170775042573,215,0 +170775042621,215,0 +170775042669,214,0 +170775042716,214,0 +170775042764,213,0 +170775042812,213,0 +170775042862,214,0 +170775042910,213,0 +170775042958,214,0 +170775043006,214,0 +170775043054,214,0 +170775043101,214,0 +170775043149,214,0 +170775043197,215,0 +170775043245,215,0 +170775043293,215,0 +170775043341,215,0 +170775043389,215,0 +170775043437,215,0 +170775043485,214,0 +170775043532,214,0 +170775043580,213,0 +170775043628,213,0 +170775043676,213,0 +170775043726,213,0 +170775043774,213,0 +170775043821,214,0 +170775043869,214,0 +170775043917,214,0 +170775043967,214,0 +170775044015,214,0 +170775044063,214,0 +170775044110,214,0 +170775044158,214,0 +170775044208,215,0 +170775044257,215,0 +170775044305,214,0 +170775044355,213,0 +170775044402,213,0 +170775044452,213,0 +170775044500,214,0 +170775044548,214,0 +170775044597,213,0 +170775044645,214,0 +170775044693,214,0 +170775044742,214,0 +170775044790,214,0 +170775044838,215,0 +170775044886,214,0 +170775044934,215,0 +170775044982,215,0 +170775045030,215,0 +170775045080,215,0 +170775045127,215,0 +170775045175,214,0 +170775045225,214,0 +170775045273,214,0 +170775045321,214,0 +170775045368,214,0 +170775045418,214,0 +170775045466,214,0 +170775045515,214,0 +170775045563,215,0 +170775045611,215,0 +170775045659,214,0 +170775045709,215,0 +170775045757,215,0 +170775045804,215,0 +170775045854,215,0 +170775045902,215,0 +170775045950,215,0 +170775045998,215,0 +170775046046,214,0 +170775046094,214,0 +170775046141,214,0 +170775046189,214,0 +170775046237,214,0 +170775046287,214,0 +170775046334,214,0 +170775046384,215,0 +170775046432,215,0 +170775046480,215,0 +170775046529,215,0 +170775046577,215,0 +170775046626,215,0 +170775046676,215,0 +170775046724,215,0 +170775046772,215,0 +170775046819,215,0 +170775046867,215,0 +170775046915,214,0 +170775046965,214,0 +170775047013,214,0 +170775047060,214,0 +170775047108,214,0 +170775047158,214,0 +170775047207,214,0 +170775047255,215,0 +170775047304,214,0 +170775047352,215,0 +170775047400,215,0 +170775047450,215,0 +170775047498,215,0 +170775047546,215,0 +170775047593,215,0 +170775047641,215,0 +170775047691,215,0 +170775047739,215,0 +170775047787,214,0 +170775047835,214,0 +170775047883,214,0 +170775047931,214,0 +170775047979,215,0 +170775048028,214,0 +170775048077,215,0 +170775048125,215,0 +170775048173,215,0 +170775048223,215,0 +170775048271,215,0 +170775048318,215,0 +170775048366,215,0 +170775048414,215,0 +170775048462,215,0 +170775048510,215,0 +170775048558,215,0 +170775048606,215,0 +170775048654,215,0 +170775048703,214,0 +170775048753,214,0 +170775048801,215,0 +170775048850,214,0 +170775048900,215,0 +170775048949,215,0 +170775048999,215,0 +170775049048,215,0 +170775049096,215,0 +170775049144,215,0 +170775049192,215,0 +170775049240,215,0 +170775049288,215,0 +170775049335,215,0 +170775049385,215,0 +170775049434,215,0 +170775049484,215,0 +170775049533,215,0 +170775049581,214,0 +170775049629,214,0 +170775049677,214,0 +170775049725,214,0 +170775049773,214,0 +170775049821,215,0 +170775049870,215,0 +170775049918,215,0 +170775049966,215,0 +170775050014,215,0 +170775050062,215,0 +170775050112,215,0 +170775050160,215,0 +170775050209,215,0 +170775050259,215,0 +170775050306,215,0 +170775050354,215,0 +170775050402,215,0 +170775050450,214,0 +170775050498,214,0 +170775050546,214,0 +170775050594,214,0 +170775050643,214,0 +170775050691,214,0 +170775050739,214,0 +170775050787,214,0 +170775050835,215,0 +170775050884,215,0 +170775050932,215,0 +170775050982,214,0 +170775051030,215,0 +170775051077,215,0 +170775051125,215,0 +170775051173,215,0 +170775051221,215,0 +170775051271,215,0 +170775051320,214,0 +170775051370,214,0 +170775051418,214,0 +170775051466,214,0 +170775051515,214,0 +170775051563,214,0 +170775051612,214,0 +170775051660,214,0 +170775051708,214,0 +170775051756,214,0 +170775051804,215,0 +170775051852,215,0 +170775051900,214,0 +170775051948,215,0 +170775051995,215,0 +170775052043,215,0 +170775052091,215,0 +170775052139,215,0 +170775052189,215,0 +170775052237,214,0 +170775052286,214,0 +170775052336,214,0 +170775052385,214,0 +170775052435,214,0 +170775052483,214,0 +170775052532,214,0 +170775052580,214,0 +170775052628,214,0 +170775052676,214,0 +170775052726,215,0 +170775052775,215,0 +170775052825,215,0 +170775052873,215,0 +170775052922,215,0 +170775052970,215,0 +170775053018,215,0 +170775053066,215,0 +170775053115,214,0 +170775053165,214,0 +170775053213,214,0 +170775053261,214,0 +170775053310,214,0 +170775053358,214,0 +170775053406,214,0 +170775053454,214,0 +170775053502,214,0 +170775053550,215,0 +170775053598,215,0 +170775053646,215,0 +170775053695,215,0 +170775053745,215,0 +170775053794,215,0 +170775053844,215,0 +170775053893,215,0 +170775053943,215,0 +170775053990,214,0 +170775054038,214,0 +170775054088,214,0 +170775054136,214,0 +170775054184,214,0 +170775054231,214,0 +170775054281,214,0 +170775054329,214,0 +170775054377,214,0 +170775054426,214,0 +170775054476,214,0 +170775054525,215,0 +170775054573,215,0 +170775054622,214,0 +170775054670,215,0 +170775054718,215,0 +170775054766,215,0 +170775054816,214,0 +170775054865,213,0 +170775054913,213,0 +170775054961,214,0 +170775055010,214,0 +170775055058,214,0 +170775055106,214,0 +170775055155,214,0 +170775055203,214,0 +170775055251,214,0 +170775055301,214,0 +170775055349,214,0 +170775055397,215,0 +170775055445,215,0 +170775055494,215,0 +170775055544,215,0 +170775055593,215,0 +170775055643,214,0 +170775055691,215,0 +170775055739,214,0 +170775055787,213,0 +170775055835,214,0 +170775055882,213,0 +170775055930,214,0 +170775055980,214,0 +170775056029,214,0 +170775056078,214,0 +170775056128,214,0 +170775056177,214,0 +170775056225,214,0 +170775056273,214,0 +170775056321,215,0 +170775056369,215,0 +170775056418,215,0 +170775056466,215,0 +170775056514,215,0 +170775056562,215,0 +170775056611,214,0 +170775056659,213,0 +170775056707,214,0 +170775056757,214,0 +170775056806,214,0 +170775056854,214,0 +170775056902,214,0 +170775056950,214,0 +170775056999,214,0 +170775057047,214,0 +170775057095,215,0 +170775057143,215,0 +170775057192,215,0 +170775057240,215,0 +170775057290,215,0 +170775057337,215,0 +170775057385,215,0 +170775057433,215,0 +170775057481,214,0 +170775057529,214,0 +170775057577,214,0 +170775057625,214,0 +170775057674,214,0 +170775057722,214,0 +170775057770,214,0 +170775057818,214,0 +170775057866,214,0 +170775057914,214,0 +170775057963,214,0 +170775058013,215,0 +170775058062,215,0 +170775058110,215,0 +170775058158,215,0 +170775058207,215,0 +170775058257,215,0 +170775058305,215,0 +170775058352,215,0 +170775058400,214,0 +170775058450,214,0 +170775058498,214,0 +170775058546,214,0 +170775058593,214,0 +170775058641,214,0 +170775058689,214,0 +170775058737,214,0 +170775058785,214,0 +170775058835,215,0 +170775058883,215,0 +170775058931,215,0 +170775058979,215,0 +170775059027,215,0 +170775059074,215,0 +170775059122,215,0 +170775059170,214,0 +170775059220,215,0 +170775059268,214,0 +170775059317,214,0 +170775059367,213,0 +170775059415,214,0 +170775059464,214,0 +170775059513,214,0 +170775059561,214,0 +170775059609,214,0 +170775059659,214,0 +170775059708,215,0 +170775059758,214,0 +170775059806,215,0 +170775059855,215,0 +170775059905,215,0 +170775059954,215,0 +170775060002,215,0 +170775060051,215,0 +170775060099,214,0 +170775060147,214,0 +170775060195,213,0 +170775060243,214,0 +170775060291,214,0 +170775060340,214,0 +170775060388,214,0 +170775060436,214,0 +170775060486,214,0 +170775060534,214,0 +170775060583,214,0 +170775060631,215,0 +170775060679,215,0 +170775060727,215,0 +170775060775,215,0 +170775060823,215,0 +170775060871,215,0 +170775060919,215,0 +170775060966,215,0 +170775061014,214,0 +170775061062,214,0 +170775061110,214,0 +170775061159,214,0 +170775061207,214,0 +170775061255,214,0 +170775061304,214,0 +170775061352,214,0 +170775061400,214,0 +170775061448,214,0 +170775061498,215,0 +170775061546,215,0 +170775061594,215,0 +170775061641,215,0 +170775061689,215,0 +170775061737,215,0 +170775061787,215,0 +170775061836,215,0 +170775061884,215,0 +170775061934,214,0 +170775061981,214,0 +170775062029,214,0 +170775062077,215,0 +170775062127,214,0 +170775062175,214,0 +170775062224,214,0 +170775062273,215,0 +170775062321,215,0 +170775062369,215,0 +170775062417,215,0 +170775062466,215,0 +170775062514,215,0 +170775062562,215,0 +170775062610,215,0 +170775062658,215,0 +170775062706,215,0 +170775062755,215,0 +170775062803,214,0 +170775062851,214,0 +170775062901,214,0 +170775062948,214,0 +170775062996,214,0 +170775063046,214,0 +170775063094,214,0 +170775063142,214,0 +170775063190,215,0 +170775063238,215,0 +170775063285,215,0 +170775063333,215,0 +170775063381,215,0 +170775063429,215,0 +170775063477,215,0 +170775063526,215,0 +170775063576,215,0 +170775063625,215,0 +170775063675,214,0 +170775063723,214,0 +170775063772,214,0 +170775063822,214,0 +170775063870,214,0 +170775063919,214,0 +170775063967,214,0 +170775064015,215,0 +170775064063,214,0 +170775064111,215,0 +170775064159,214,0 +170775064207,215,0 +170775064254,215,0 +170775064302,215,0 +170775064350,215,0 +170775064400,215,0 +170775064448,215,0 +170775064495,215,0 +170775064545,215,0 +170775064593,214,0 +170775064641,214,0 +170775064689,214,0 +170775064737,214,0 +170775064785,214,0 +170775064834,214,0 +170775064882,215,0 +170775064931,215,0 +170775064979,215,0 +170775065027,215,0 +170775065075,215,0 +170775065123,215,0 +170775065171,215,0 +170775065220,215,0 +170775065268,215,0 +170775065316,215,0 +170775065364,215,0 +170775065412,215,0 +170775065462,214,0 +170775065511,214,0 +170775065559,214,0 +170775065607,214,0 +170775065655,214,0 +170775065703,214,0 +170775065751,214,0 +170775065799,214,0 +170775065847,214,0 +170775065895,215,0 +170775065943,215,0 +170775065991,215,0 +170775066038,215,0 +170775066086,215,0 +170775066134,215,0 +170775066184,215,0 +170775066232,215,0 +170775066280,215,0 +170775066328,214,0 +170775066375,213,0 +170775066423,213,0 +170775066473,214,0 +170775066521,214,0 +170775066569,214,0 +170775066617,214,0 +170775066664,214,0 +170775066712,214,0 +170775066760,214,0 +170775066808,214,0 +170775066856,214,0 +170775066904,214,0 +170775066952,215,0 +170775067001,215,0 +170775067049,215,0 +170775067099,215,0 +170775067147,215,0 +170775067195,214,0 +170775067243,213,0 +170775067292,213,0 +170775067342,213,0 +170775067389,213,0 +170775067437,213,0 +170775067485,214,0 +170775067535,214,0 +170775067583,214,0 +170775067631,214,0 +170775067678,214,0 +170775067728,214,0 +170775067776,214,0 +170775067825,214,0 +170775067873,215,0 +170775067921,215,0 +170775067969,215,0 +170775068017,215,0 +170775068065,215,0 +170775068114,213,0 +170775068164,213,0 +170775068212,213,0 +170775068260,213,0 +170775068308,213,0 +170775068357,214,0 +170775068407,214,0 +170775068455,214,0 +170775068503,214,0 +170775068551,214,0 +170775068600,214,0 +170775068650,214,0 +170775068699,215,0 +170775068747,215,0 +170775068796,214,0 +170775068846,215,0 +170775068894,215,0 +170775068943,214,0 +170775068991,213,0 +170775069039,214,0 +170775069089,214,0 +170775069138,214,0 +170775069188,214,0 +170775069236,214,0 +170775069283,214,0 +170775069331,214,0 +170775069379,214,0 +170775069427,214,0 +170775069475,215,0 +170775069523,215,0 +170775069571,215,0 +170775069620,215,0 +170775069670,215,0 +170775069718,215,0 +170775069766,215,0 +170775069815,215,0 +170775069863,213,0 +170775069913,213,0 +170775069961,214,0 +170775070008,214,0 +170775070056,214,0 +170775070104,214,0 +170775070154,214,0 +170775070203,214,0 +170775070251,214,0 +170775070301,214,0 +170775070349,214,0 +170775070398,215,0 +170775070448,215,0 +170775070497,215,0 +170775070545,215,0 +170775070593,215,0 +170775070642,215,0 +170775070692,215,0 +170775070742,213,0 +170775070789,213,0 +170775070837,214,0 +170775070885,214,0 +170775070934,214,0 +170775070982,214,0 +170775071030,214,0 +170775071078,214,0 +170775071126,214,0 +170775071174,214,0 +170775071222,214,0 +170775071271,214,0 +170775071320,215,0 +170775071370,215,0 +170775071418,215,0 +170775071465,215,0 +170775071513,215,0 +170775071561,215,0 +170775071609,214,0 +170775071657,214,0 +170775071705,213,0 +170775071753,213,0 +170775071802,214,0 +170775071850,214,0 +170775071898,214,0 +170775071946,214,0 +170775071994,214,0 +170775072042,214,0 +170775072090,215,0 +170775072138,214,0 +170775072187,215,0 +170775072235,215,0 +170775072283,215,0 +170775072331,215,0 +170775072379,215,0 +170775072427,215,0 +170775072475,214,0 +170775072523,213,0 +170775072571,213,0 +170775072620,214,0 +170775072668,213,0 +170775072716,214,0 +170775072766,214,0 +170775072815,214,0 +170775072863,214,0 +170775072912,214,0 +170775072962,214,0 +170775073010,215,0 +170775073059,215,0 +170775073107,215,0 +170775073155,215,0 +170775073205,215,0 +170775073253,215,0 +170775073301,215,0 +170775073348,214,0 +170775073396,214,0 +170775073444,213,0 +170775073494,214,0 +170775073542,213,0 +170775073590,214,0 +170775073638,214,0 +170775073686,214,0 +170775073735,214,0 +170775073783,214,0 +170775073832,214,0 +170775073880,214,0 +170775073928,214,0 +170775073977,215,0 +170775074025,215,0 +170775074073,215,0 +170775074121,215,0 +170775074171,215,0 +170775074218,214,0 +170775074266,213,0 +170775074314,213,0 +170775074362,213,0 +170775074410,213,0 +170775074459,213,0 +170775074509,214,0 +170775074557,214,0 +170775074606,214,0 +170775074656,214,0 +170775074703,214,0 +170775074751,214,0 +170775074799,214,0 +170775074847,215,0 +170775074897,215,0 +170775074944,215,0 +170775074994,215,0 +170775075043,215,0 +170775075093,215,0 +170775075141,213,0 +170775075189,213,0 +170775075237,213,0 +170775075284,214,0 +170775075334,214,0 +170775075384,214,0 +170775075431,214,0 +170775075481,214,0 +170775075530,214,0 +170775075580,214,0 +170775075628,214,0 +170775075675,214,0 +170775075723,214,0 +170775075773,214,0 +170775075821,214,0 +170775075870,215,0 +170775075918,215,0 +170775075966,215,0 +170775076014,214,0 +170775076062,213,0 +170775076111,213,0 +170775076159,214,0 +170775076207,213,0 +170775076255,214,0 +170775076304,213,0 +170775076352,214,0 +170775076402,214,0 +170775076450,214,0 +170775076499,214,0 +170775076549,214,0 +170775076596,214,0 +170775076644,214,0 +170775076692,214,0 +170775076740,214,0 +170775076790,215,0 +170775076838,215,0 +170775076885,214,0 +170775076933,213,0 +170775076981,214,0 +170775077029,214,0 +170775077077,214,0 +170775077127,214,0 +170775077174,214,0 +170775077222,214,0 +170775077272,214,0 +170775077320,215,0 +170775077369,214,0 +170775077419,215,0 +170775077467,215,0 +170775077514,215,0 +170775077564,215,0 +170775077612,215,0 +170775077661,215,0 +170775077709,215,0 +170775077757,214,0 +170775077805,214,0 +170775077854,214,0 +170775077902,214,0 +170775077952,214,0 +170775078001,214,0 +170775078049,214,0 +170775078097,214,0 +170775078145,214,0 +170775078194,215,0 +170775078242,215,0 +170775078290,215,0 +170775078338,214,0 +170775078386,215,0 +170775078434,215,0 +170775078483,215,0 +170775078533,215,0 +170775078581,215,0 +170775078629,214,0 +170775078678,214,0 +170775078726,214,0 +170775078774,214,0 +170775078822,214,0 +170775078870,214,0 +170775078920,214,0 +170775078969,214,0 +170775079019,215,0 +170775079067,215,0 +170775079115,215,0 +170775079163,215,0 +170775079210,215,0 +170775079258,215,0 +170775079308,215,0 +170775079356,215,0 +170775079404,215,0 +170775079453,215,0 +170775079501,214,0 +170775079549,214,0 +170775079597,214,0 +170775079645,214,0 +170775079693,214,0 +170775079742,214,0 +170775079791,214,0 +170775079839,214,0 +170775079887,214,0 +170775079937,215,0 +170775079985,214,0 +170775080034,215,0 +170775080083,215,0 +170775080131,215,0 +170775080181,215,0 +170775080230,215,0 +170775080280,215,0 +170775080328,215,0 +170775080376,214,0 +170775080423,214,0 +170775080471,214,0 +170775080519,214,0 +170775080569,214,0 +170775080618,214,0 +170775080666,214,0 +170775080716,214,0 +170775080763,215,0 +170775080811,214,0 +170775080859,215,0 +170775080907,215,0 +170775080955,215,0 +170775081004,215,0 +170775081052,215,0 +170775081102,215,0 +170775081151,215,0 +170775081199,215,0 +170775081247,214,0 +170775081297,214,0 +170775081345,214,0 +170775081393,214,0 +170775081441,214,0 +170775081488,214,0 +170775081536,214,0 +170775081584,215,0 +170775081634,215,0 +170775081682,215,0 +170775081730,215,0 +170775081777,215,0 +170775081827,215,0 +170775081875,215,0 +170775081923,215,0 +170775081972,215,0 +170775082020,215,0 +170775082069,215,0 +170775082117,215,0 +170775082165,213,0 +170775082215,213,0 +170775082263,213,0 +170775082312,213,0 +170775082361,213,0 +170775082409,213,0 +170775082457,214,0 +170775082507,214,0 +170775082555,214,0 +170775082602,214,0 +170775082650,214,0 +170775082698,214,0 +170775082746,215,0 +170775082794,214,0 +170775082843,215,0 +170775082891,215,0 +170775082941,215,0 +170775082990,215,0 +170775083040,213,0 +170775083088,213,0 +170775083136,213,0 +170775083183,213,0 +170775083233,213,0 +170775083281,214,0 +170775083329,214,0 +170775083377,214,0 +170775083424,214,0 +170775083472,214,0 +170775083520,214,0 +170775083570,214,0 +170775083618,214,0 +170775083667,214,0 +170775083716,214,0 +170775083764,214,0 +170775083812,215,0 +170775083862,215,0 +170775083909,214,0 +170775083957,213,0 +170775084007,214,0 +170775084054,214,0 +170775084102,214,0 +170775084150,214,0 +170775084198,214,0 +170775084246,214,0 +170775084293,214,0 +170775084341,214,0 +170775084389,214,0 +170775084437,215,0 +170775084485,215,0 +170775084534,215,0 +170775084582,215,0 +170775084630,215,0 +170775084680,215,0 +170775084727,214,0 +170775084775,214,0 +170775084823,214,0 +170775084871,214,0 +170775084919,214,0 +170775084967,214,0 +170775085015,214,0 +170775085064,214,0 +170775085113,214,0 +170775085161,214,0 +170775085211,214,0 +170775085259,215,0 +170775085308,215,0 +170775085358,215,0 +170775085407,215,0 +170775085455,215,0 +170775085503,215,0 +170775085551,215,0 +170775085599,215,0 +170775085647,214,0 +170775085695,214,0 +170775085743,214,0 +170775085792,214,0 +170775085840,214,0 +170775085888,214,0 +170775085936,214,0 +170775085985,214,0 +170775086033,214,0 +170775086083,215,0 +170775086130,215,0 +170775086180,215,0 +170775086228,215,0 +170775086276,215,0 +170775086324,215,0 +170775086372,215,0 +170775086420,215,0 +170775086468,215,0 +170775086515,214,0 +170775086563,214,0 +170775086611,214,0 +170775086659,214,0 +170775086707,214,0 +170775086755,214,0 +170775086803,214,0 +170775086851,214,0 +170775086899,214,0 +170775086947,215,0 +170775086995,215,0 +170775087044,215,0 +170775087092,215,0 +170775087141,215,0 +170775087189,215,0 +170775087239,215,0 +170775087288,215,0 +170775087336,215,0 +170775087386,215,0 +170775087433,214,0 +170775087481,214,0 +170775087529,214,0 +170775087579,214,0 +170775087628,214,0 +170775087678,214,0 +170775087726,214,0 +170775087774,214,0 +170775087822,214,0 +170775087871,215,0 +170775087919,214,0 +170775087967,215,0 +170775088015,215,0 +170775088064,215,0 +170775088112,215,0 +170775088160,215,0 +170775088210,215,0 +170775088258,214,0 +170775088305,213,0 +170775088355,213,0 +170775088403,213,0 +170775088452,214,0 +170775088500,214,0 +170775088550,214,0 +170775088597,214,0 +170775088645,214,0 +170775088693,214,0 +170775088743,214,0 +170775088791,215,0 +170775088839,215,0 +170775088888,215,0 +170775088936,215,0 +170775088984,215,0 +170775089032,214,0 +170775089080,215,0 +170775089129,214,0 +170775089179,213,0 +170775089228,213,0 +170775089278,213,0 +170775089327,213,0 +170775089375,214,0 +170775089425,214,0 +170775089474,214,0 +170775089524,214,0 +170775089573,214,0 +170775089621,214,0 +170775089669,214,0 +170775089717,214,0 +170775089765,214,0 +170775089813,214,0 +170775089862,214,0 +170775089910,214,0 +170775089960,215,0 +170775090008,214,0 +170775090056,213,0 +170775090103,213,0 +170775090151,213,0 +170775090199,213,0 +170775090247,214,0 +170775090297,213,0 +170775090346,214,0 +170775090394,214,0 +170775090442,214,0 +170775090490,214,0 +170775090538,214,0 +170775090585,214,0 +170775090633,214,0 +170775090681,214,0 +170775090729,214,0 +170775090777,214,0 +170775090825,215,0 +170775090874,215,0 +170775090922,213,0 +170775090970,213,0 +170775091017,213,0 +170775091065,213,0 +170775091113,214,0 +170775091161,214,0 +170775091209,214,0 +170775091257,214,0 +170775091304,214,0 +170775091352,214,0 +170775091400,214,0 +170775091448,214,0 +170775091496,214,0 +170775091544,214,0 +170775091592,215,0 +170775091639,214,0 +170775091687,214,0 +170775091735,214,0 +170775091783,214,0 +170775091831,213,0 +170775091879,213,0 +170775091927,213,0 +170775091976,214,0 +170775092026,213,0 +170775092074,214,0 +170775092122,214,0 +170775092170,214,0 +170775092219,214,0 +170775092269,214,0 +170775092318,214,0 +170775092366,214,0 +170775092415,214,0 +170775092463,214,0 +170775092511,215,0 +170775092559,215,0 +170775092607,215,0 +170775092655,214,0 +170775092703,213,0 +170775092751,213,0 +170775092800,213,0 +170775092848,213,0 +170775092898,214,0 +170775092946,214,0 +170775092995,214,0 +170775093043,214,0 +170775093093,214,0 +170775093142,214,0 +170775093190,214,0 +170775093240,214,0 +170775093288,215,0 +170775093335,215,0 +170775093383,215,0 +170775093431,215,0 +170775093479,215,0 +170775093527,214,0 +170775093575,213,0 +170775093623,213,0 +170775093673,214,0 +170775093722,214,0 +170775093770,214,0 +170775093819,214,0 +170775093869,214,0 +170775093918,214,0 +170775093968,215,0 +170775094016,214,0 +170775094064,215,0 +170775094112,215,0 +170775094160,215,0 +170775094208,215,0 +170775094256,215,0 +170775094305,215,0 +170775094353,215,0 +170775094402,214,0 +170775094450,214,0 +170775094500,213,0 +170775094548,214,0 +170775094596,214,0 +170775094644,214,0 +170775094693,214,0 +170775094743,214,0 +170775094792,214,0 +170775094840,214,0 +170775094888,214,0 +170775094937,215,0 +170775094987,215,0 +170775095035,215,0 +170775095084,215,0 +170775095132,215,0 +170775095180,215,0 +170775095228,214,0 +170775095277,214,0 +170775095325,214,0 +170775095373,214,0 +170775095421,214,0 +170775095469,214,0 +170775095517,214,0 +170775095565,214,0 +170775095613,214,0 +170775095661,214,0 +170775095708,214,0 +170775095756,214,0 +170775095804,214,0 +170775095852,215,0 +170775095900,215,0 +170775095948,215,0 +170775095995,215,0 +170775096043,215,0 +170775096091,215,0 +170775096139,214,0 +170775096187,214,0 +170775096234,214,0 +170775096282,214,0 +170775096330,214,0 +170775096378,214,0 +170775096428,214,0 +170775096477,214,0 +170775096525,214,0 +170775096573,215,0 +170775096621,214,0 +170775096669,215,0 +170775096717,215,0 +170775096765,215,0 +170775096813,215,0 +170775096861,215,0 +170775096910,215,0 +170775096958,215,0 +170775097006,215,0 +170775097054,214,0 +170775097103,214,0 +170775097151,214,0 +170775097199,214,0 +170775097247,214,0 +170775097295,214,0 +170775097344,215,0 +170775097394,214,0 +170775097442,215,0 +170775097490,215,0 +170775097538,215,0 +170775097586,215,0 +170775097635,215,0 +170775097683,215,0 +170775097731,215,0 +170775097779,215,0 +170775097828,215,0 +170775097876,215,0 +170775097926,214,0 +170775097975,214,0 +170775098023,214,0 +170775098073,214,0 +170775098120,214,0 +170775098168,215,0 +170775098216,215,0 +170775098264,214,0 +170775098312,215,0 +170775098360,215,0 +170775098408,215,0 +170775098455,215,0 +170775098503,215,0 +170775098551,215,0 +170775098599,215,0 +170775098647,215,0 +170775098695,215,0 +170775098744,215,0 +170775098792,214,0 +170775098840,214,0 +170775098888,214,0 +170775098936,214,0 +170775098984,214,0 +170775099032,214,0 +170775099079,214,0 +170775099127,214,0 +170775099175,214,0 +170775099223,215,0 +170775099272,215,0 +170775099322,215,0 +170775099370,215,0 +170775099418,215,0 +170775099465,215,0 +170775099513,215,0 +170775099561,215,0 +170775099609,215,0 +170775099657,214,0 +170775099705,214,0 +170775099753,214,0 +170775099800,214,0 +170775099848,214,0 +170775099898,214,0 +170775099946,215,0 +170775099994,215,0 +170775100041,215,0 +170775100089,215,0 +170775100137,215,0 +170775100185,215,0 +170775100233,215,0 +170775100283,215,0 +170775100331,215,0 +170775100379,215,0 +170775100427,215,0 +170775100475,215,0 +170775100523,214,0 +170775100570,214,0 +170775100618,214,0 +170775100666,214,0 +170775100714,214,0 +170775100762,214,0 +170775100812,214,0 +170775100859,215,0 +170775100907,214,0 +170775100955,214,0 +170775101003,215,0 +170775101051,215,0 +170775101099,215,0 +170775101148,215,0 +170775101198,215,0 +170775101246,215,0 +170775101294,215,0 +170775101342,215,0 +170775101390,215,0 +170775101437,214,0 +170775101485,214,0 +170775101535,214,0 +170775101583,214,0 +170775101631,214,0 +170775101679,214,0 +170775101726,214,0 +170775101776,215,0 +170775101824,215,0 +170775101872,215,0 +170775101919,215,0 +170775101967,215,0 +170775102017,215,0 +170775102064,215,0 +170775102112,215,0 +170775102160,215,0 +170775102210,215,0 +170775102258,214,0 +170775102306,214,0 +170775102353,214,0 +170775102403,214,0 +170775102451,214,0 +170775102499,214,0 +170775102546,214,0 +170775102596,215,0 +170775102645,214,0 +170775102695,215,0 +170775102744,214,0 +170775102792,215,0 +170775102840,215,0 +170775102890,215,0 +170775102938,215,0 +170775102987,215,0 +170775103035,215,0 +170775103083,215,0 +170775103133,214,0 +170775103182,213,0 +170775103230,214,0 +170775103278,214,0 +170775103326,214,0 +170775103374,214,0 +170775103422,214,0 +170775103469,214,0 +170775103517,214,0 +170775103565,214,0 +170775103613,214,0 +170775103661,214,0 +170775103709,215,0 +170775103757,215,0 +170775103806,215,0 +170775103856,215,0 +170775103904,215,0 +170775103953,215,0 +170775104001,215,0 +170775104049,213,0 +170775104099,214,0 +170775104147,214,0 +170775104194,214,0 +170775104244,214,0 +170775104292,214,0 +170775104341,214,0 +170775104391,214,0 +170775104439,214,0 +170775104488,214,0 +170775104538,215,0 +170775104587,215,0 +170775104635,215,0 +170775104683,215,0 +170775104731,215,0 +170775104779,215,0 +170775104827,215,0 +170775104874,215,0 +170775104924,213,0 +170775104973,213,0 +170775105021,213,0 +170775105069,214,0 +170775105117,214,0 +170775105167,214,0 +170775105216,214,0 +170775105266,214,0 +170775105314,214,0 +170775105362,214,0 +170775105411,214,0 +170775105461,214,0 +170775105509,215,0 +170775105557,214,0 +170775105605,214,0 +170775105654,215,0 +170775105702,214,0 +170775105750,214,0 +170775105800,213,0 +170775105848,213,0 +170775105897,213,0 +170775105945,213,0 +170775105994,214,0 +170775106042,214,0 +170775106090,214,0 +170775106138,214,0 +170775106186,214,0 +170775106236,214,0 +170775106284,214,0 +170775106332,214,0 +170775106379,214,0 +170775106427,215,0 +170775106475,215,0 +170775106523,215,0 +170775106571,215,0 +170775106620,214,0 +170775106670,213,0 +170775106718,213,0 +170775106767,214,0 +170775106817,214,0 +170775106865,214,0 +170775106914,214,0 +170775106964,214,0 +170775107012,214,0 +170775107060,214,0 +170775107109,214,0 +170775107157,214,0 +170775107207,215,0 +170775107255,214,0 +170775107303,215,0 +170775107350,215,0 +170775107398,215,0 +170775107448,215,0 +170775107496,214,0 +170775107545,213,0 +170775107595,213,0 +170775107644,213,0 +170775107694,214,0 +170775107743,213,0 +170775107791,214,0 +170775107839,214,0 +170775107888,214,0 +170775107936,214,0 +170775107986,214,0 +170775108034,214,0 +170775108082,214,0 +170775108131,214,0 +170775108179,215,0 +170775108227,214,0 +170775108275,215,0 +170775108323,215,0 +170775108371,214,0 +170775108419,213,0 +170775108468,213,0 +170775108516,213,0 +170775108566,213,0 +170775108613,213,0 +170775108661,214,0 +170775108711,214,0 +170775108759,214,0 +170775108807,214,0 +170775108856,214,0 +170775108906,214,0 +170775108955,214,0 +170775109005,214,0 +170775109052,214,0 +170775109102,214,0 +170775109151,214,0 +170775109199,215,0 +170775109247,214,0 +170775109295,213,0 +170775109345,213,0 +170775109392,213,0 +170775109440,213,0 +170775109490,213,0 +170775109538,214,0 +170775109587,214,0 +170775109637,214,0 +170775109685,214,0 +170775109734,214,0 +170775109782,214,0 +170775109832,214,0 +170775109880,214,0 +170775109929,215,0 +170775109977,215,0 +170775110025,215,0 +170775110073,215,0 +170775110121,214,0 +170775110169,213,0 +170775110217,213,0 +170775110266,214,0 +170775110314,214,0 +170775110362,214,0 +170775110412,214,0 +170775110461,214,0 +170775110509,214,0 +170775110559,214,0 +170775110607,215,0 +170775110656,214,0 +170775110704,215,0 +170775110753,215,0 +170775110801,215,0 +170775110849,215,0 +170775110897,215,0 +170775110946,215,0 +170775110996,214,0 +170775111044,214,0 +170775111093,214,0 +170775111141,214,0 +170775111189,214,0 +170775111237,214,0 +170775111285,214,0 +170775111333,214,0 +170775111383,215,0 +170775111432,214,0 +170775111480,214,0 +170775111528,215,0 +170775111577,215,0 +170775111627,215,0 +170775111677,215,0 +170775111726,215,0 +170775111774,215,0 +170775111824,215,0 +170775111873,214,0 +170775111921,214,0 +170775111969,214,0 +170775112017,214,0 +170775112067,214,0 +170775112115,214,0 +170775112164,214,0 +170775112214,215,0 +170775112262,215,0 +170775112311,215,0 +170775112360,215,0 +170775112408,215,0 +170775112456,215,0 +170775112504,215,0 +170775112552,215,0 +170775112600,215,0 +170775112648,215,0 +170775112698,215,0 +170775112747,214,0 +170775112795,214,0 +170775112845,214,0 +170775112894,214,0 +170775112944,214,0 +170775112991,215,0 +170775113039,215,0 +170775113089,215,0 +170775113137,215,0 +170775113185,215,0 +170775113232,215,0 +170775113282,215,0 +170775113330,215,0 +170775113379,215,0 +170775113427,215,0 +170775113475,215,0 +170775113522,215,0 +170775113572,215,0 +170775113620,214,0 +170775113668,214,0 +170775113715,214,0 +170775113763,214,0 +170775113811,214,0 +170775113859,214,0 +170775113907,214,0 +170775113954,214,0 +170775114002,214,0 +170775114050,215,0 +170775114098,215,0 +170775114146,215,0 +170775114193,215,0 +170775114241,215,0 +170775114289,215,0 +170775114337,215,0 +170775114385,215,0 +170775114434,215,0 +170775114482,214,0 +170775114532,213,0 +170775114579,213,0 +170775114627,213,0 +170775114675,214,0 +170775114723,214,0 +170775114771,214,0 +170775114818,214,0 +170775114866,214,0 +170775114916,215,0 +170775114965,215,0 +170775115014,215,0 +170775115064,215,0 +170775115112,215,0 +170775115160,215,0 +170775115208,215,0 +170775115257,215,0 +170775115305,215,0 +170775115354,214,0 +170775115402,213,0 +170775115450,214,0 +170775115498,214,0 +170775115546,214,0 +170775115594,214,0 +170775115641,214,0 +170775115689,214,0 +170775115737,214,0 +170775115785,214,0 +170775115833,215,0 +170775115881,215,0 +170775115928,215,0 +170775115976,215,0 +170775116024,215,0 +170775116072,215,0 +170775116120,215,0 +170775116168,215,0 +170775116215,214,0 +170775116265,213,0 +170775116313,213,0 +170775116360,214,0 +170775116408,214,0 +170775116456,214,0 +170775116504,214,0 +170775116552,214,0 +170775116600,214,0 +170775116647,214,0 +170775116695,215,0 +170775116743,215,0 +170775116791,215,0 +170775116839,215,0 +170775116886,215,0 +170775116934,215,0 +170775116982,215,0 +170775117030,215,0 +170775117078,215,0 +170775117126,213,0 +170775117174,214,0 +170775117223,213,0 +170775117271,214,0 +170775117320,214,0 +170775117368,214,0 +170775117416,214,0 +170775117464,214,0 +170775117511,214,0 +170775117559,214,0 +170775117607,214,0 +170775117655,215,0 +170775117703,215,0 +170775117751,215,0 +170775117798,215,0 +170775117846,215,0 +170775117896,215,0 +170775117943,215,0 +170775117991,213,0 +170775118039,213,0 +170775118087,213,0 +170775118135,213,0 +170775118183,214,0 +170775118232,214,0 +170775118280,214,0 +170775118330,214,0 +170775118378,214,0 +170775118425,214,0 +170775118475,214,0 +170775118523,215,0 +170775118571,215,0 +170775118618,215,0 +170775118666,215,0 +170775118716,215,0 +170775118764,215,0 +170775118812,215,0 +170775118861,213,0 +170775118909,213,0 +170775118959,214,0 +170775119008,214,0 +170775119056,214,0 +170775119104,214,0 +170775119152,214,0 +170775119200,214,0 +170775119247,214,0 +170775119295,214,0 +170775119343,215,0 +170775119391,215,0 +170775119439,215,0 +170775119486,215,0 +170775119536,215,0 +170775119585,215,0 +170775119633,215,0 +170775119681,214,0 +170775119729,214,0 +170775119776,213,0 +170775119824,214,0 +170775119872,214,0 +170775119920,214,0 +170775119968,214,0 +170775120016,214,0 +170775120065,214,0 +170775120113,214,0 +170775120161,214,0 +170775120209,214,0 +170775120256,214,0 +170775120306,215,0 +170775120354,215,0 +170775120401,215,0 +170775120449,215,0 +170775120497,215,0 +170775120545,214,0 +170775120593,214,0 +170775120641,213,0 +170775120688,213,0 +170775120738,213,0 +170775120786,213,0 +170775120833,214,0 +170775120881,214,0 +170775120929,214,0 +170775120977,214,0 +170775121025,214,0 +170775121074,215,0 +170775121123,215,0 +170775121171,215,0 +170775121221,215,0 +170775121269,215,0 +170775121317,215,0 +170775121365,215,0 +170775121414,215,0 +170775121462,213,0 +170775121510,213,0 +170775121558,213,0 +170775121606,214,0 +170775121654,214,0 +170775121702,214,0 +170775121750,214,0 +170775121798,214,0 +170775121845,214,0 +170775121895,214,0 +170775121943,215,0 +170775121991,214,0 +170775122039,215,0 +170775122088,215,0 +170775122138,215,0 +170775122186,215,0 +170775122234,215,0 +170775122282,215,0 +170775122331,214,0 +170775122380,213,0 +170775122428,213,0 +170775122476,214,0 +170775122524,214,0 +170775122572,214,0 +170775122622,214,0 +170775122671,214,0 +170775122719,214,0 +170775122767,214,0 +170775122815,214,0 +170775122863,214,0 +170775122913,215,0 +170775122961,215,0 +170775123008,215,0 +170775123056,215,0 +170775123104,215,0 +170775123152,214,0 +170775123200,214,0 +170775123248,213,0 +170775123296,213,0 +170775123346,213,0 +170775123395,213,0 +170775123443,214,0 +170775123491,214,0 +170775123540,214,0 +170775123588,214,0 +170775123636,214,0 +170775123686,214,0 +170775123734,215,0 +170775123782,214,0 +170775123830,215,0 +170775123879,214,0 +170775123929,214,0 +170775123978,215,0 +170775124026,214,0 +170775124074,213,0 +170775124122,213,0 +170775124170,213,0 +170775124218,213,0 +170775124266,213,0 +170775124314,213,0 +170775124363,214,0 +170775124413,214,0 +170775124460,214,0 +170775124510,214,0 +170775124558,214,0 +170775124607,214,0 +170775124657,214,0 +170775124705,214,0 +170775124754,214,0 +170775124804,215,0 +170775124852,214,0 +170775124900,214,0 +170775124948,214,0 +170775124995,213,0 +170775125043,213,0 +170775125091,213,0 +170775125139,213,0 +170775125189,214,0 +170775125237,214,0 +170775125285,214,0 +170775125334,214,0 +170775125384,214,0 +170775125432,214,0 +170775125481,214,0 +170775125529,215,0 +170775125577,215,0 +170775125625,215,0 +170775125674,216,0 +170775125722,215,0 +170775125770,215,0 +170775125818,214,0 +170775125866,213,0 +170775125914,213,0 +170775125962,214,0 +170775126010,214,0 +170775126059,214,0 +170775126107,214,0 +170775126155,214,0 +170775126204,214,0 +170775126252,214,0 +170775126300,214,0 +170775126350,214,0 +170775126398,215,0 +170775126445,215,0 +170775126495,215,0 +170775126543,215,0 +170775126591,215,0 +170775126639,215,0 +170775126687,215,0 +170775126735,215,0 +170775126782,215,0 +170775126832,216,0 +170775126882,215,0 +170775126930,215,0 +170775126977,215,0 +170775127027,215,0 +170775127075,215,0 +170775127124,214,0 +170775127172,214,0 +170775127220,214,0 +170775127270,214,0 +170775127319,214,0 +170775127369,214,0 +170775127416,214,0 +170775127464,214,0 +170775127512,215,0 +170775127560,215,0 +170775127608,215,0 +170775127656,215,0 +170775127703,215,0 +170775127751,215,0 +170775127801,215,0 +170775127849,215,0 +170775127897,215,0 +170775127944,215,0 +170775127992,214,0 +170775128040,214,0 +170775128090,214,0 +170775128137,214,0 +170775128185,214,0 +170775128233,214,0 +170775128281,214,0 +170775128329,214,0 +170775128376,215,0 +170775128424,215,0 +170775128472,215,0 +170775128522,215,0 +170775128571,215,0 +170775128619,215,0 +170775128667,215,0 +170775128715,215,0 +170775128762,215,0 +170775128810,215,0 +170775128858,214,0 +170775128906,214,0 +170775128955,214,0 +170775129003,214,0 +170775129051,214,0 +170775129099,215,0 +170775129147,215,0 +170775129195,215,0 +170775129242,215,0 +170775129290,215,0 +170775129340,215,0 +170775129388,215,0 +170775129437,215,0 +170775129485,215,0 +170775129532,215,0 +170775129580,215,0 +170775129628,215,0 +170775129676,215,0 +170775129725,214,0 +170775129773,214,0 +170775129822,214,0 +170775129870,214,0 +170775129918,214,0 +170775129966,214,0 +170775130014,215,0 +170775130063,215,0 +170775130113,215,0 +170775130160,215,0 +170775130210,215,0 +170775130258,215,0 +170775130306,215,0 +170775130355,215,0 +170775130403,215,0 +170775130451,215,0 +170775130498,215,0 +170775130546,215,0 +170775130594,214,0 +170775130643,213,0 +170775130691,214,0 +170775130739,214,0 +170775130787,214,0 +170775130836,214,0 +170775130884,214,0 +170775130932,214,0 +170775130980,214,0 +170775131028,214,0 +170775131076,215,0 +170775131124,215,0 +170775131172,215,0 +170775131220,215,0 +170775131268,215,0 +170775131315,215,0 +170775131363,215,0 +170775131413,215,0 +170775131462,214,0 +170775131512,213,0 +170775131560,213,0 +170775131608,213,0 +170775131656,214,0 +170775131704,214,0 +170775131752,213,0 +170775131801,214,0 +170775131849,214,0 +170775131897,214,0 +170775131945,214,0 +170775131993,214,0 +170775132041,215,0 +170775132089,215,0 +170775132137,215,0 +170775132186,215,0 +170775132234,214,0 +170775132284,215,0 +170775132333,214,0 +170775132381,213,0 +170775132429,213,0 +170775132477,213,0 +170775132525,214,0 +170775132573,213,0 +170775132622,214,0 +170775132670,214,0 +170775132718,214,0 +170775132766,214,0 +170775132814,214,0 +170775132864,214,0 +170775132912,214,0 +170775132961,214,0 +170775133009,215,0 +170775133057,215,0 +170775133106,215,0 +170775133154,215,0 +170775133202,214,0 +170775133252,213,0 +170775133300,213,0 +170775133349,213,0 +170775133399,214,0 +170775133448,214,0 +170775133496,214,0 +170775133546,214,0 +170775133595,214,0 +170775133643,214,0 +170775133693,214,0 +170775133741,215,0 +170775133789,215,0 +170775133838,215,0 +170775133886,215,0 +170775133936,215,0 +170775133985,215,0 +170775134033,215,0 +170775134082,214,0 +170775134130,213,0 +170775134178,213,0 +170775134228,213,0 +170775134277,213,0 +170775134325,213,0 +170775134375,214,0 +170775134423,214,0 +170775134471,214,0 +170775134519,214,0 +170775134567,214,0 +170775134615,214,0 +170775134662,214,0 +170775134710,215,0 +170775134758,215,0 +170775134806,215,0 +170775134854,215,0 +170775134904,214,0 +170775134952,214,0 +170775135001,213,0 +170775135049,213,0 +170775135099,213,0 +170775135148,213,0 +170775135196,213,0 +170775135246,214,0 +170775135293,214,0 +170775135343,214,0 +170775135391,214,0 +170775135439,214,0 +170775135487,214,0 +170775135536,214,0 +170775135584,214,0 +170775135634,214,0 +170775135683,215,0 +170775135731,215,0 +170775135779,215,0 +170775135828,214,0 +170775135876,213,0 +170775135924,213,0 +170775135974,214,0 +170775136022,214,0 +170775136071,214,0 +170775136119,214,0 +170775136167,214,0 +170775136215,214,0 +170775136263,214,0 +170775136311,214,0 +170775136360,215,0 +170775136408,215,0 +170775136456,215,0 +170775136506,215,0 +170775136555,215,0 +170775136605,215,0 +170775136653,214,0 +170775136700,214,0 +170775136750,214,0 +170775136798,214,0 +170775136846,214,0 +170775136895,214,0 +170775136943,214,0 +170775136991,214,0 +170775137039,214,0 +170775137089,214,0 +170775137136,215,0 +170775137186,214,0 +170775137234,215,0 +170775137282,215,0 +170775137330,214,0 +170775137379,215,0 +170775137429,215,0 +170775137477,215,0 +170775137525,214,0 +170775137573,213,0 +170775137622,213,0 +170775137672,214,0 +170775137721,214,0 +170775137770,214,0 +170775137818,214,0 +170775137868,214,0 +170775137916,214,0 +170775137964,214,0 +170775138012,215,0 +170775138061,215,0 +170775138111,215,0 +170775138159,215,0 +170775138208,215,0 +170775138256,215,0 +170775138304,215,0 +170775138354,215,0 +170775138402,214,0 +170775138449,214,0 +170775138497,214,0 +170775138545,214,0 +170775138595,214,0 +170775138644,214,0 +170775138694,214,0 +170775138742,214,0 +170775138791,214,0 +170775138839,215,0 +170775138887,215,0 +170775138935,215,0 +170775138983,215,0 +170775139033,215,0 +170775139080,215,0 +170775139128,215,0 +170775139176,215,0 +170775139224,215,0 +170775139272,214,0 +170775139320,214,0 +170775139368,214,0 +170775139417,214,0 +170775139465,214,0 +170775139513,214,0 +170775139561,214,0 +170775139611,214,0 +170775139660,214,0 +170775139708,214,0 +170775139756,214,0 +170775139806,215,0 +170775139854,215,0 +170775139901,215,0 +170775139949,215,0 +170775139997,215,0 +170775140045,215,0 +170775140093,215,0 +170775140141,214,0 +170775140189,214,0 +170775140237,213,0 +170775140286,214,0 +170775140334,214,0 +170775140382,214,0 +170775140431,214,0 +170775140479,214,0 +170775140527,214,0 +170775140575,214,0 +170775140624,215,0 +170775140672,215,0 +170775140720,215,0 +170775140768,215,0 +170775140816,215,0 +170775140864,215,0 +170775140912,215,0 +170775140959,215,0 +170775141009,214,0 +170775141058,213,0 +170775141106,213,0 +170775141154,213,0 +170775141202,214,0 +170775141250,214,0 +170775141299,214,0 +170775141347,214,0 +170775141395,214,0 +170775141443,214,0 +170775141493,215,0 +170775141540,215,0 +170775141588,215,0 +170775141636,215,0 +170775141684,215,0 +170775141734,215,0 +170775141782,215,0 +170775141829,215,0 +170775141877,214,0 +170775141925,214,0 +170775141973,214,0 +170775142022,214,0 +170775142072,214,0 +170775142119,214,0 +170775142167,214,0 +170775142215,214,0 +170775142265,215,0 +170775142314,214,0 +170775142362,215,0 +170775142410,215,0 +170775142458,215,0 +170775142506,215,0 +170775142555,215,0 +170775142603,215,0 +170775142653,215,0 +170775142702,215,0 +170775142750,214,0 +170775142800,214,0 +170775142848,214,0 +170775142897,214,0 +170775142945,214,0 +170775142995,214,0 +170775143044,214,0 +170775143094,215,0 +170775143141,215,0 +170775143189,215,0 +170775143237,215,0 +170775143285,215,0 +170775143335,215,0 +170775143384,215,0 +170775143434,215,0 +170775143482,215,0 +170775143530,215,0 +170775143579,214,0 +170775143629,214,0 +170775143677,214,0 +170775143725,214,0 +170775143773,214,0 +170775143821,214,0 +170775143868,214,0 +170775143916,214,0 +170775143966,215,0 +170775144015,215,0 +170775144063,215,0 +170775144111,215,0 +170775144161,215,0 +170775144210,215,0 +170775144258,215,0 +170775144308,215,0 +170775144357,215,0 +170775144407,214,0 +170775144455,214,0 +170775144503,214,0 +170775144552,214,0 +170775144602,214,0 +170775144650,214,0 +170775144698,215,0 +170775144746,215,0 +170775144793,215,0 +170775144843,215,0 +170775144892,215,0 +170775144940,215,0 +170775144988,215,0 +170775145036,215,0 +170775145086,215,0 +170775145135,215,0 +170775145183,215,0 +170775145231,214,0 +170775145281,214,0 +170775145329,214,0 +170775145377,214,0 +170775145426,214,0 +170775145474,214,0 +170775145522,214,0 +170775145570,215,0 +170775145619,215,0 +170775145667,215,0 +170775145717,215,0 +170775145765,215,0 +170775145813,215,0 +170775145861,215,0 +170775145908,215,0 +170775145956,215,0 +170775146004,215,0 +170775146052,215,0 +170775146100,214,0 +170775146148,213,0 +170775146196,213,0 +170775146244,214,0 +170775146292,214,0 +170775146340,214,0 +170775146387,214,0 +170775146435,214,0 +170775146485,214,0 +170775146533,215,0 +170775146581,215,0 +170775146630,215,0 +170775146678,215,0 +170775146728,215,0 +170775146776,215,0 +170775146824,215,0 +170775146871,215,0 +170775146919,215,0 +170775146969,213,0 +170775147018,213,0 +170775147066,213,0 +170775147114,213,0 +170775147162,214,0 +170775147212,214,0 +170775147259,214,0 +170775147307,214,0 +170775147357,214,0 +170775147405,214,0 +170775147454,214,0 +170775147502,215,0 +170775147550,215,0 +170775147598,215,0 +170775147646,215,0 +170775147694,215,0 +170775147742,214,0 +170775147790,214,0 +170775147839,213,0 +170775147889,213,0 +170775147938,213,0 +170775147988,213,0 +170775148036,214,0 +170775148084,214,0 +170775148133,214,0 +170775148183,214,0 +170775148231,214,0 +170775148279,214,0 +170775148328,214,0 +170775148376,215,0 +170775148424,215,0 +170775148472,215,0 +170775148520,215,0 +170775148568,215,0 +170775148616,215,0 +170775148664,214,0 +170775148712,214,0 +170775148761,214,0 +170775148811,214,0 +170775148860,214,0 +170775148908,214,0 +170775148958,214,0 +170775149006,214,0 +170775149055,214,0 +170775149105,215,0 +170775149154,215,0 +170775149203,215,0 +170775149251,215,0 +170775149299,215,0 +170775149349,215,0 +170775149397,215,0 +170775149445,215,0 +170775149494,214,0 +170775149542,214,0 +170775149592,214,0 +170775149639,214,0 +170775149689,214,0 +170775149739,214,0 +170775149787,214,0 +170775149836,214,0 +170775149884,214,0 +170775149932,214,0 +170775149981,214,0 +170775150031,215,0 +170775150079,215,0 +170775150126,215,0 +170775150176,215,0 +170775150224,215,0 +170775150273,215,0 +170775150323,214,0 +170775150371,213,0 +170775150420,214,0 +170775150468,214,0 +170775150518,214,0 +170775150567,214,0 +170775150615,214,0 +170775150665,214,0 +170775150714,214,0 +170775150762,214,0 +170775150810,215,0 +170775150858,215,0 +170775150908,215,0 +170775150957,215,0 +170775151007,215,0 +170775151056,215,0 +170775151106,215,0 +170775151155,215,0 +170775151205,214,0 +170775151254,214,0 +170775151302,214,0 +170775151351,214,0 +170775151399,214,0 +170775151447,214,0 +170775151495,214,0 +170775151543,214,0 +170775151591,215,0 +170775151641,215,0 +170775151689,215,0 +170775151738,215,0 +170775151786,215,0 +170775151836,215,0 +170775151885,215,0 +170775151933,215,0 +170775151983,215,0 +170775152031,214,0 +170775152079,214,0 +170775152127,214,0 +170775152175,214,0 +170775152222,214,0 +170775152270,214,0 +170775152318,214,0 +170775152366,214,0 +170775152414,214,0 +170775152462,215,0 +170775152510,215,0 +170775152558,215,0 +170775152607,215,0 +170775152657,215,0 +170775152706,215,0 +170775152756,215,0 +170775152804,215,0 +170775152852,214,0 +170775152899,213,0 +170775152949,214,0 +170775152998,214,0 +170775153048,214,0 +170775153096,214,0 +170775153145,214,0 +170775153195,214,0 +170775153244,214,0 +170775153292,214,0 +170775153342,214,0 +170775153390,214,0 +170775153438,214,0 +170775153485,215,0 +170775153533,215,0 +170775153583,215,0 +170775153631,215,0 +170775153680,214,0 +170775153728,213,0 +170775153776,213,0 +170775153824,213,0 +170775153872,214,0 +170775153922,214,0 +170775153971,214,0 +170775154021,214,0 +170775154069,214,0 +170775154118,214,0 +170775154166,214,0 +170775154214,214,0 +170775154262,215,0 +170775154310,214,0 +170775154358,215,0 +170775154407,215,0 +170775154457,214,0 +170775154505,214,0 +170775154552,214,0 +170775154600,213,0 +170775154648,213,0 +170775154696,213,0 +170775154746,213,0 +170775154795,214,0 +170775154845,213,0 +170775154893,213,0 +170775154941,214,0 +170775154990,214,0 +170775155038,214,0 +170775155088,214,0 +170775155137,214,0 +170775155185,214,0 +170775155234,214,0 +170775155282,214,0 +170775155332,215,0 +170775155381,214,0 +170775155431,213,0 +170775155479,213,0 +170775155527,213,0 +170775155575,213,0 +170775155624,213,0 +170775155674,214,0 +170775155722,214,0 +170775155770,214,0 +170775155818,214,0 +170775155867,214,0 +170775155917,214,0 +170775155966,215,0 +170775156014,214,0 +170775156063,215,0 +170775156111,215,0 +170775156161,215,0 +170775156209,215,0 +170775156258,214,0 +170775156306,213,0 +170775156356,214,0 +170775156404,214,0 +170775156451,214,0 +170775156501,214,0 +170775156549,214,0 +170775156597,214,0 +170775156646,215,0 +170775156694,214,0 +170775156744,215,0 +170775156793,215,0 +170775156841,215,0 +170775156891,215,0 +170775156939,215,0 +170775156987,215,0 +170775157035,215,0 +170775157082,214,0 +170775157132,214,0 +170775157182,214,0 +170775157229,214,0 +170775157277,214,0 +170775157325,214,0 +170775157373,214,0 +170775157421,214,0 +170775157471,214,0 +170775157519,215,0 +170775157568,215,0 +170775157616,214,0 +170775157664,215,0 +170775157712,215,0 +170775157762,215,0 +170775157810,215,0 +170775157858,215,0 +170775157907,215,0 +170775157957,214,0 +170775158005,214,0 +170775158052,214,0 +170775158100,214,0 +170775158148,214,0 +170775158198,214,0 +170775158247,214,0 +170775158295,214,0 +170775158345,214,0 +170775158393,214,0 +170775158442,215,0 +170775158490,215,0 +170775158539,215,0 +170775158587,215,0 +170775158637,215,0 +170775158686,215,0 +170775158734,214,0 +170775158782,214,0 +170775158830,214,0 +170775158879,214,0 +170775158926,214,0 +170775158974,214,0 +170775159022,214,0 +170775159070,214,0 +170775159118,215,0 +170775159167,215,0 +170775159215,215,0 +170775159263,215,0 +170775159311,215,0 +170775159361,215,0 +170775159409,215,0 +170775159457,215,0 +170775159506,215,0 +170775159554,215,0 +170775159602,214,0 +170775159651,214,0 +170775159701,215,0 +170775159749,215,0 +170775159797,215,0 +170775159845,215,0 +170775159894,215,0 +170775159942,215,0 +170775159992,215,0 +170775160040,215,0 +170775160087,215,0 +170775160137,215,0 +170775160185,215,0 +170775160233,215,0 +170775160282,215,0 +170775160330,215,0 +170775160378,215,0 +170775160426,215,0 +170775160474,214,0 +170775160523,214,0 +170775160571,214,0 +170775160621,214,0 +170775160670,214,0 +170775160720,214,0 +170775160768,215,0 +170775160816,215,0 +170775160865,215,0 +170775160913,215,0 +170775160963,215,0 +170775161010,215,0 +170775161058,215,0 +170775161106,215,0 +170775161154,215,0 +170775161204,215,0 +170775161252,215,0 +170775161300,214,0 +170775161348,214,0 +170775161396,214,0 +170775161444,214,0 +170775161493,214,0 +170775161541,214,0 +170775161591,214,0 +170775161639,215,0 +170775161687,214,0 +170775161734,214,0 +170775161784,215,0 +170775161832,215,0 +170775161881,215,0 +170775161929,215,0 +170775161979,215,0 +170775162028,215,0 +170775162076,215,0 +170775162124,215,0 +170775162174,214,0 +170775162222,214,0 +170775162271,214,0 +170775162319,214,0 +170775162367,214,0 +170775162416,214,0 +170775162464,214,0 +170775162512,214,0 +170775162562,215,0 +170775162611,215,0 +170775162661,215,0 +170775162710,215,0 +170775162758,215,0 +170775162808,215,0 +170775162856,215,0 +170775162905,215,0 +170775162954,215,0 +170775163004,214,0 +170775163053,214,0 +170775163103,214,0 +170775163151,214,0 +170775163199,214,0 +170775163248,214,0 +170775163296,214,0 +170775163344,215,0 +170775163392,215,0 +170775163441,215,0 +170775163491,215,0 +170775163539,215,0 +170775163587,215,0 +170775163635,215,0 +170775163684,215,0 +170775163732,215,0 +170775163780,215,0 +170775163830,214,0 +170775163879,214,0 +170775163927,214,0 +170775163975,214,0 +170775164024,214,0 +170775164072,214,0 +170775164122,214,0 +170775164170,215,0 +170775164218,215,0 +170775164267,215,0 +170775164315,215,0 +170775164365,215,0 +170775164413,215,0 +170775164461,215,0 +170775164510,215,0 +170775164558,215,0 +170775164606,215,0 +170775164654,214,0 +170775164703,214,0 +170775164751,214,0 +170775164799,214,0 +170775164847,214,0 +170775164895,214,0 +170775164943,214,0 +170775164991,214,0 +170775165039,214,0 +170775165087,215,0 +170775165135,215,0 +170775165183,215,0 +170775165231,215,0 +170775165279,215,0 +170775165329,215,0 +170775165376,215,0 +170775165424,215,0 +170775165472,214,0 +170775165520,214,0 +170775165570,213,0 +170775165618,214,0 +170775165666,214,0 +170775165714,214,0 +170775165762,214,0 +170775165809,214,0 +170775165857,214,0 +170775165907,214,0 +170775165955,214,0 +170775166004,215,0 +170775166054,215,0 +170775166102,215,0 +170775166150,215,0 +170775166198,215,0 +170775166247,215,0 +170775166297,215,0 +170775166345,214,0 +170775166394,213,0 +170775166444,213,0 +170775166492,214,0 +170775166540,214,0 +170775166588,214,0 +170775166636,214,0 +170775166684,214,0 +170775166733,214,0 +170775166783,214,0 +170775166832,215,0 +170775166880,214,0 +170775166930,214,0 +170775166978,214,0 +170775167027,214,0 +170775167075,215,0 +170775167123,215,0 +170775167171,214,0 +170775167219,214,0 +170775167267,213,0 +170775167315,213,0 +170775167363,214,0 +170775167410,214,0 +170775167458,214,0 +170775167508,214,0 +170775167557,214,0 +170775167605,214,0 +170775167655,214,0 +170775167704,214,0 +170775167754,215,0 +170775167802,214,0 +170775167851,215,0 +170775167899,214,0 +170775167949,214,0 +170775167997,215,0 +170775168044,214,0 +170775168092,213,0 +170775168140,213,0 +170775168190,214,0 +170775168238,214,0 +170775168287,214,0 +170775168337,214,0 +170775168386,214,0 +170775168436,214,0 +170775168485,214,0 +170775168535,214,0 +170775168583,214,0 +170775168632,214,0 +170775168680,215,0 +170775168728,215,0 +170775168778,214,0 +170775168827,215,0 +170775168875,214,0 +170775168925,213,0 +170775168974,213,0 +170775169024,213,0 +170775169072,213,0 +170775169120,214,0 +170775169168,214,0 +170775169217,214,0 +170775169265,214,0 +170775169313,214,0 +170775169362,214,0 +170775169412,214,0 +170775169460,214,0 +170775169509,215,0 +170775169557,215,0 +170775169605,215,0 +170775169655,215,0 +170775169704,214,0 +170775169754,213,0 +170775169803,213,0 +170775169851,213,0 +170775169899,213,0 +170775169947,213,0 +170775169997,214,0 +170775170045,214,0 +170775170093,214,0 +170775170142,214,0 +170775170190,214,0 +170775170238,214,0 +170775170286,215,0 +170775170335,215,0 +170775170383,214,0 +170775170433,215,0 +170775170482,215,0 +170775170532,215,0 +170775170580,213,0 +170775170629,213,0 +170775170677,213,0 +170775170725,214,0 +170775170773,214,0 +170775170821,214,0 +170775170869,214,0 +170775170918,214,0 +170775170966,214,0 +170775171014,214,0 +170775171063,214,0 +170775171113,215,0 +170775171161,215,0 +170775171209,215,0 +170775171258,215,0 +170775171308,215,0 +170775171356,215,0 +170775171405,214,0 +170775171455,214,0 +170775171504,214,0 +170775171552,214,0 +170775171600,214,0 +170775171650,214,0 +170775171698,214,0 +170775171746,214,0 +170775171793,214,0 +170775171841,214,0 +170775171889,215,0 +170775171939,215,0 +170775171988,215,0 +170775172036,215,0 +170775172084,215,0 +170775172134,215,0 +170775172182,215,0 +170775172230,215,0 +170775172277,214,0 +170775172325,214,0 +170775172375,214,0 +170775172423,214,0 +170775172471,214,0 +170775172520,214,0 +170775172568,214,0 +170775172618,215,0 +170775172666,215,0 +170775172715,215,0 +170775172765,215,0 +170775172814,215,0 +170775172862,215,0 +170775172912,215,0 +170775172960,215,0 +170775173007,215,0 +170775173055,215,0 +170775173103,214,0 +170775173151,214,0 +170775173199,214,0 +170775173249,215,0 +170775173296,214,0 +170775173346,214,0 +170775173394,214,0 +170775173442,215,0 +170775173491,215,0 +170775173541,215,0 +170775173588,215,0 +170775173638,215,0 +170775173686,215,0 +170775173734,215,0 +170775173783,215,0 +170775173833,215,0 +170775173882,215,0 +170775173932,214,0 +170775173980,214,0 +170775174029,214,0 +170775174077,214,0 +170775174125,214,0 +170775174173,215,0 +170775174221,214,0 +170775174269,215,0 +170775174317,215,0 +170775174364,215,0 +170775174414,215,0 +170775174464,215,0 +170775174513,215,0 +170775174561,215,0 +170775174609,215,0 +170775174658,215,0 +170775174706,215,0 +170775174754,214,0 +170775174802,214,0 +170775174852,214,0 +170775174899,214,0 +170775174947,214,0 +170775174995,214,0 +170775175045,214,0 +170775175093,215,0 +170775175141,215,0 +170775175189,215,0 +170775175237,215,0 +170775175284,215,0 +170775175332,215,0 +170775175380,215,0 +170775175428,215,0 +170775175477,215,0 +170775175525,215,0 +170775175573,214,0 +170775175621,214,0 +170775175669,214,0 +170775175717,214,0 +170775175767,214,0 +170775175816,214,0 +170775175866,214,0 +170775175914,214,0 +170775175961,215,0 +170775176009,215,0 +170775176059,215,0 +170775176108,215,0 +170775176156,215,0 +170775176204,215,0 +170775176254,215,0 +170775176301,215,0 +170775176349,216,0 +170775176397,214,0 +170775176445,214,0 +170775176493,214,0 +170775176541,214,0 +170775176589,214,0 +170775176637,214,0 +170775176685,214,0 +170775176734,214,0 +170775176782,214,0 +170775176831,215,0 +170775176879,215,0 +170775176927,215,0 +170775176975,214,0 +170775177023,215,0 +170775177073,215,0 +170775177121,215,0 +170775177169,215,0 +170775177218,214,0 +170775177266,214,0 +170775177314,214,0 +170775177362,214,0 +170775177411,214,0 +170775177461,214,0 +170775177508,215,0 +170775177558,215,0 +170775177607,215,0 +170775177655,215,0 +170775177705,215,0 +170775177753,215,0 +170775177801,215,0 +170775177848,215,0 +170775177896,215,0 +170775177946,215,0 +170775177994,214,0 +170775178042,214,0 +170775178089,214,0 +170775178139,214,0 +170775178187,214,0 +170775178235,214,0 +170775178284,214,0 +170775178334,214,0 +170775178384,214,0 +170775178433,214,0 +170775178481,215,0 +170775178529,215,0 +170775178578,215,0 +170775178626,215,0 +170775178676,215,0 +170775178724,215,0 +170775178773,215,0 +170775178823,215,0 +170775178872,214,0 +170775178920,214,0 +170775178968,214,0 +170775179016,214,0 +170775179064,214,0 +170775179113,214,0 +170775179161,214,0 +170775179211,214,0 +170775179259,215,0 +170775179306,215,0 +170775179354,215,0 +170775179404,215,0 +170775179452,215,0 +170775179500,215,0 +170775179548,215,0 +170775179597,215,0 +170775179647,215,0 +170775179696,213,0 +170775179744,213,0 +170775179792,213,0 +170775179841,214,0 +170775179889,214,0 +170775179937,214,0 +170775179985,214,0 +170775180033,214,0 +170775180081,214,0 +170775180129,214,0 +170775180178,215,0 +170775180226,215,0 +170775180274,215,0 +170775180322,215,0 +170775180371,215,0 +170775180421,215,0 +170775180469,214,0 +170775180517,213,0 +170775180565,213,0 +170775180612,213,0 +170775180660,213,0 +170775180708,213,0 +170775180756,214,0 +170775180804,214,0 +170775180852,214,0 +170775180901,214,0 +170775180949,214,0 +170775180997,214,0 +170775181045,214,0 +170775181095,214,0 +170775181143,214,0 +170775181190,215,0 +170775181238,215,0 +170775181288,215,0 +170775181336,214,0 +170775181384,213,0 +170775181431,213,0 +170775181481,213,0 +170775181529,213,0 +170775181577,213,0 +170775181626,214,0 +170775181674,214,0 +170775181722,214,0 +170775181770,214,0 +170775181819,214,0 +170775181867,214,0 +170775181915,214,0 +170775181963,214,0 +170775182011,214,0 +170775182059,214,0 +170775182107,214,0 +170775182155,214,0 +170775182202,213,0 +170775182250,213,0 +170775182298,214,0 +170775182348,213,0 +170775182396,213,0 +170775182445,214,0 +170775182493,213,0 +170775182543,214,0 +170775182592,214,0 +170775182641,214,0 +170775182689,214,0 +170775182737,214,0 +170775182785,214,0 +170775182835,215,0 +170775182883,215,0 +170775182931,214,0 +170775182980,213,0 +170775183028,213,0 +170775183077,213,0 +170775183125,214,0 +170775183173,214,0 +170775183223,214,0 +170775183271,214,0 +170775183320,214,0 +170775183368,214,0 +170775183416,214,0 +170775183466,214,0 +170775183515,214,0 +170775183565,214,0 +170775183613,214,0 +170775183661,214,0 +170775183710,214,0 +170775183758,215,0 +170775183806,213,0 +170775183855,214,0 +170775183905,214,0 +170775183953,214,0 +170775184001,214,0 +170775184050,214,0 +170775184098,214,0 +170775184147,214,0 +170775184195,215,0 +170775184243,215,0 +170775184291,215,0 +170775184339,215,0 +170775184389,215,0 +170775184437,215,0 +170775184485,214,0 +170775184532,215,0 +170775184580,214,0 +170775184628,214,0 +170775184676,214,0 +170775184724,214,0 +170775184773,214,0 +170775184821,214,0 +170775184869,214,0 +170775184917,215,0 +170775184965,215,0 +170775185013,215,0 +170775185061,215,0 +170775185109,215,0 +170775185157,215,0 +170775185207,215,0 +170775185255,215,0 +170775185304,215,0 +170775185352,214,0 +170775185400,215,0 +170775185449,214,0 +170775185497,214,0 +170775185545,214,0 +170775185592,214,0 +170775185640,214,0 +170775185688,214,0 +170775185736,215,0 +170775185784,214,0 +170775185832,215,0 +170775185881,215,0 +170775185929,215,0 +170775185977,215,0 +170775186025,215,0 +170775186074,215,0 +170775186122,215,0 +170775186170,215,0 +170775186218,215,0 +170775186266,214,0 +170775186314,214,0 +170775186363,214,0 +170775186411,214,0 +170775186459,214,0 +170775186507,215,0 +170775186555,215,0 +170775186603,215,0 +170775186652,215,0 +170775186700,215,0 +170775186748,215,0 +170775186796,215,0 +170775186845,215,0 +170775186893,215,0 +170775186941,215,0 +170775186989,215,0 +170775187038,215,0 +170775187086,214,0 +170775187134,214,0 +170775187182,215,0 +170775187230,215,0 +170775187279,215,0 +170775187327,215,0 +170775187375,215,0 +170775187423,215,0 +170775187470,215,0 +170775187518,215,0 +170775187566,215,0 +170775187614,215,0 +170775187662,215,0 +170775187711,215,0 +170775187759,215,0 +170775187807,215,0 +170775187855,215,0 +170775187903,214,0 +170775187950,214,0 +170775187998,214,0 +170775188046,214,0 +170775188094,214,0 +170775188142,215,0 +170775188190,215,0 +170775188239,214,0 +170775188287,215,0 +170775188335,215,0 +170775188383,215,0 +170775188430,215,0 +170775188478,215,0 +170775188528,215,0 +170775188576,215,0 +170775188624,215,0 +170775188672,215,0 +170775188720,214,0 +170775188767,213,0 +170775188817,214,0 +170775188866,214,0 +170775188914,214,0 +170775188962,214,0 +170775189010,214,0 +170775189058,214,0 +170775189106,214,0 +170775189155,215,0 +170775189203,215,0 +170775189251,215,0 +170775189300,215,0 +170775189350,215,0 +170775189397,215,0 +170775189447,215,0 +170775189494,214,0 +170775189542,213,0 +170775189590,213,0 +170775189638,213,0 +170775189686,214,0 +170775189734,214,0 +170775189782,214,0 +170775189829,214,0 +170775189879,214,0 +170775189927,214,0 +170775189976,214,0 +170775190026,215,0 +170775190074,215,0 +170775190122,215,0 +170775190170,215,0 +170775190217,214,0 +170775190265,215,0 +170775190313,214,0 +170775190361,213,0 +170775190409,213,0 +170775190459,213,0 +170775190508,214,0 +170775190556,214,0 +170775190604,214,0 +170775190652,214,0 +170775190701,214,0 +170775190751,214,0 +170775190799,214,0 +170775190847,214,0 +170775190896,214,0 +170775190946,215,0 +170775190994,215,0 +170775191042,215,0 +170775191089,215,0 +170775191139,214,0 +170775191187,213,0 +170775191235,213,0 +170775191284,214,0 +170775191332,213,0 +170775191380,214,0 +170775191430,214,0 +170775191479,214,0 +170775191529,214,0 +170775191577,214,0 +170775191625,214,0 +170775191673,214,0 +170775191720,215,0 +170775191768,214,0 +170775191816,214,0 +170775191864,215,0 +170775191912,214,0 +170775191960,214,0 +170775192010,214,0 +170775192058,214,0 +170775192107,214,0 +170775192157,214,0 +170775192206,214,0 +170775192254,214,0 +170775192304,214,0 +170775192353,214,0 +170775192403,214,0 +170775192452,215,0 +170775192500,215,0 +170775192550,215,0 +170775192598,215,0 +170775192646,215,0 +170775192693,215,0 +170775192743,215,0 +170775192791,213,0 +170775192839,214,0 +170775192887,214,0 +170775192935,214,0 +170775192983,214,0 +170775193032,214,0 +170775193080,214,0 +170775193128,214,0 +170775193176,214,0 +170775193224,214,0 +170775193272,214,0 +170775193320,215,0 +170775193369,214,0 +170775193417,215,0 +170775193467,215,0 +170775193516,215,0 +170775193566,214,0 +170775193614,214,0 +170775193662,213,0 +170775193710,213,0 +170775193757,214,0 +170775193807,214,0 +170775193855,214,0 +170775193903,214,0 +170775193951,214,0 +170775193999,214,0 +170775194047,214,0 +170775194094,214,0 +170775194142,215,0 +170775194190,215,0 +170775194238,215,0 +170775194286,215,0 +170775194335,215,0 +170775194383,214,0 +170775194431,214,0 +170775194479,213,0 +170775194529,214,0 +170775194577,214,0 +170775194625,214,0 +170775194674,214,0 +170775194722,214,0 +170775194771,214,0 +170775194819,214,0 +170775194867,214,0 +170775194917,214,0 +170775194965,214,0 +170775195014,214,0 +170775195062,215,0 +170775195110,215,0 +170775195158,215,0 +170775195206,215,0 +170775195255,214,0 +170775195305,214,0 +170775195354,214,0 +170775195402,214,0 +170775195450,214,0 +170775195498,214,0 +170775195547,214,0 +170775195595,214,0 +170775195645,214,0 +170775195694,215,0 +170775195744,215,0 +170775195793,215,0 +170775195841,215,0 +170775195889,215,0 +170775195937,215,0 +170775195985,215,0 +170775196033,214,0 +170775196082,214,0 +170775196132,214,0 +170775196181,214,0 +170775196229,214,0 +170775196277,214,0 +170775196326,214,0 +170775196376,214,0 +170775196424,214,0 +170775196472,214,0 +170775196521,215,0 +170775196569,215,0 +170775196617,215,0 +170775196665,215,0 +170775196713,215,0 +170775196761,215,0 +170775196808,215,0 +170775196856,214,0 +170775196904,214,0 +170775196954,214,0 +170775197001,215,0 +170775197049,215,0 +170775197099,215,0 +170775197147,215,0 +170775197195,215,0 +170775197244,215,0 +170775197294,215,0 +170775197342,215,0 +170775197390,215,0 +170775197438,215,0 +170775197485,215,0 +170775197535,215,0 +170775197585,215,0 +170775197634,215,0 +170775197682,215,0 +170775197730,215,0 +170775197778,215,0 +170775197826,215,0 +170775197874,215,0 +170775197921,215,0 +170775197969,215,0 +170775198017,215,0 +170775198067,215,0 +170775198115,215,0 +170775198163,215,0 +170775198212,215,0 +170775198260,215,0 +170775198308,215,0 +170775198357,215,0 +170775198407,215,0 +170775198455,215,0 +170775198503,215,0 +170775198551,215,0 +170775198598,215,0 +170775198648,215,0 +170775198697,215,0 +170775198745,215,0 +170775198795,215,0 +170775198843,215,0 +170775198892,215,0 +170775198940,215,0 +170775198989,215,0 +170775199039,215,0 +170775199087,215,0 +170775199134,215,0 +170775199182,215,0 +170775199232,215,0 +170775199280,215,0 +170775199329,214,0 +170775199377,214,0 +170775199427,214,0 +170775199475,214,0 +170775199522,215,0 +170775199572,215,0 +170775199620,215,0 +170775199668,215,0 +170775199717,215,0 +170775199765,215,0 +170775199815,215,0 +170775199864,215,0 +170775199912,215,0 +170775199960,215,0 +170775200008,215,0 +170775200056,215,0 +170775200104,214,0 +170775200151,214,0 +170775200199,213,0 +170775200249,214,0 +170775200297,214,0 +170775200346,214,0 +170775200394,214,0 +170775200442,214,0 +170775200492,214,0 +170775200540,214,0 +170775200587,215,0 +170775200637,215,0 +170775200686,215,0 +170775200736,215,0 +170775200784,215,0 +170775200832,215,0 +170775200879,214,0 +170775200929,214,0 +170775200977,214,0 +170775201025,214,0 +170775201073,214,0 +170775201121,214,0 +170775201169,214,0 +170775201216,214,0 +170775201264,215,0 +170775201312,215,0 +170775201360,215,0 +170775201408,215,0 +170775201456,215,0 +170775201504,215,0 +170775201552,215,0 +170775201602,215,0 +170775201649,215,0 +170775201697,215,0 +170775201747,214,0 +170775201796,214,0 +170775201844,214,0 +170775201892,214,0 +170775201940,214,0 +170775201990,214,0 +170775202038,214,0 +170775202085,214,0 +170775202133,214,0 +170775202181,215,0 +170775202229,215,0 +170775202277,215,0 +170775202325,215,0 +170775202374,215,0 +170775202422,215,0 +170775202470,215,0 +170775202518,214,0 +170775202568,214,0 +170775202615,214,0 +170775202665,214,0 +170775202713,214,0 +170775202762,214,0 +170775202810,214,0 +170775202858,214,0 +170775202908,215,0 +170775202957,215,0 +170775203007,215,0 +170775203056,215,0 +170775203106,215,0 +170775203154,215,0 +170775203202,215,0 +170775203249,215,0 +170775203297,215,0 +170775203345,214,0 +170775203395,214,0 +170775203443,214,0 +170775203490,214,0 +170775203538,214,0 +170775203586,215,0 +170775203634,214,0 +170775203682,214,0 +170775203730,214,0 +170775203778,215,0 +170775203826,215,0 +170775203874,215,0 +170775203922,215,0 +170775203969,215,0 +170775204019,215,0 +170775204067,214,0 +170775204116,214,0 +170775204164,213,0 +170775204214,214,0 +170775204262,214,0 +170775204310,214,0 +170775204357,214,0 +170775204405,214,0 +170775204453,214,0 +170775204501,214,0 +170775204549,215,0 +170775204597,215,0 +170775204645,215,0 +170775204693,215,0 +170775204741,215,0 +170775204791,215,0 +170775204839,215,0 +170775204887,214,0 +170775204935,214,0 +170775204984,213,0 +170775205032,214,0 +170775205080,214,0 +170775205128,214,0 +170775205176,214,0 +170775205226,214,0 +170775205274,214,0 +170775205321,214,0 +170775205371,214,0 +170775205419,215,0 +170775205467,214,0 +170775205516,215,0 +170775205564,214,0 +170775205612,215,0 +170775205662,215,0 +170775205710,214,0 +170775205758,213,0 +170775205806,214,0 +170775205853,214,0 +170775205903,214,0 +170775205952,214,0 +170775206000,214,0 +170775206048,214,0 +170775206098,214,0 +170775206147,214,0 +170775206197,215,0 +170775206246,214,0 +170775206296,215,0 +170775206344,215,0 +170775206392,215,0 +170775206439,215,0 +170775206489,215,0 +170775206537,214,0 +170775206585,214,0 +170775206632,214,0 +170775206680,214,0 +170775206728,214,0 +170775206776,214,0 +170775206824,214,0 +170775206872,214,0 +170775206921,215,0 +170775206969,215,0 +170775207019,215,0 +170775207068,215,0 +170775207116,215,0 +170775207164,215,0 +170775207214,215,0 +170775207262,215,0 +170775207310,214,0 +170775207358,214,0 +170775207405,214,0 +170775207455,214,0 +170775207503,214,0 +170775207552,214,0 +170775207602,214,0 +170775207650,214,0 +170775207699,214,0 +170775207749,214,0 +170775207798,215,0 +170775207846,215,0 +170775207896,215,0 +170775207943,215,0 +170775207991,215,0 +170775208039,215,0 +170775208089,215,0 +170775208138,214,0 +170775208186,214,0 +170775208236,214,0 +170775208285,214,0 +170775208335,214,0 +170775208384,214,0 +170775208432,214,0 +170775208480,215,0 +170775208530,215,0 +170775208577,215,0 +170775208625,215,0 +170775208675,215,0 +170775208724,215,0 +170775208772,215,0 +170775208822,215,0 +170775208869,215,0 +170775208917,214,0 +170775208965,214,0 +170775209013,214,0 +170775209061,214,0 +170775209109,214,0 +170775209157,214,0 +170775209204,214,0 +170775209252,214,0 +170775209300,215,0 +170775209348,215,0 +170775209396,215,0 +170775209444,215,0 +170775209492,215,0 +170775209539,215,0 +170775209589,215,0 +170775209637,215,0 +170775209685,215,0 +170775209732,214,0 +170775209780,214,0 +170775209828,214,0 +170775209878,214,0 +170775209926,214,0 +170775209973,214,0 +170775210021,214,0 +170775210069,214,0 +170775210119,214,0 +170775210166,215,0 +170775210214,215,0 +170775210262,215,0 +170775210310,215,0 +170775210358,215,0 +170775210408,215,0 +170775210455,215,0 +170775210503,215,0 +170775210551,214,0 +170775210601,214,0 +170775210649,214,0 +170775210697,214,0 +170775210746,214,0 +170775210796,214,0 +170775210845,214,0 +170775210895,215,0 +170775210942,215,0 +170775210990,215,0 +170775211038,214,0 +170775211086,215,0 +170775211135,214,0 +170775211184,215,0 +170775211233,215,0 +170775211281,215,0 +170775211330,215,0 +170775211378,214,0 +170775211426,214,0 +170775211474,214,0 +170775211522,214,0 +170775211572,214,0 +170775211621,214,0 +170775211669,214,0 +170775211719,215,0 +170775211767,215,0 +170775211816,215,0 +170775211864,215,0 +170775211912,215,0 +170775211961,215,0 +170775212009,215,0 +170775212057,215,0 +170775212105,215,0 +170775212153,214,0 +170775212200,214,0 +170775212248,214,0 +170775212296,214,0 +170775212344,215,0 +170775212392,215,0 +170775212440,215,0 +170775212488,215,0 +170775212536,215,0 +170775212584,215,0 +170775212632,215,0 +170775212680,215,0 +170775212728,215,0 +170775212777,215,0 +170775212825,215,0 +170775212875,215,0 +170775212923,215,0 +170775212971,215,0 +170775213019,215,0 +170775213066,215,0 +170775213114,215,0 +170775213162,215,0 +170775213210,215,0 +170775213258,215,0 +170775213308,215,0 +170775213356,215,0 +170775213404,215,0 +170775213452,215,0 +170775213501,215,0 +170775213549,215,0 +170775213597,215,0 +170775213645,215,0 +170775213693,215,0 +170775213741,215,0 +170775213789,214,0 +170775213838,214,0 +170775213888,215,0 +170775213936,215,0 +170775213985,215,0 +170775214033,215,0 +170775214082,215,0 +170775214132,215,0 +170775214181,215,0 +170775214229,215,0 +170775214277,215,0 +170775214325,215,0 +170775214373,215,0 +170775214421,215,0 +170775214469,215,0 +170775214519,215,0 +170775214568,214,0 +170775214616,214,0 +170775214664,214,0 +170775214712,214,0 +170775214761,214,0 +170775214809,214,0 +170775214859,215,0 +170775214906,215,0 +170775214954,215,0 +170775215004,215,0 +170775215052,215,0 +170775215099,215,0 +170775215149,215,0 +170775215197,215,0 +170775215246,215,0 +170775215294,215,0 +170775215342,214,0 +170775215390,214,0 +170775215440,214,0 +170775215488,214,0 +170775215537,214,0 +170775215585,214,0 +170775215633,214,0 +170775215683,214,0 +170775215730,214,0 +170775215778,214,0 +170775215826,214,0 +170775215874,215,0 +170775215924,215,0 +170775215972,215,0 +170775216020,215,0 +170775216068,215,0 +170775216116,215,0 +170775216165,214,0 +170775216215,214,0 +170775216264,214,0 +170775216312,214,0 +170775216361,214,0 +170775216409,214,0 +170775216459,214,0 +170775216507,214,0 +170775216556,215,0 +170775216606,215,0 +170775216656,215,0 +170775216703,215,0 +170775216753,215,0 +170775216802,215,0 +170775216852,215,0 +170775216900,215,0 +170775216948,215,0 +170775216997,214,0 +170775217046,214,0 +170775217094,214,0 +170775217142,214,0 +170775217190,214,0 +170775217238,215,0 +170775217286,215,0 +170775217333,215,0 +170775217381,215,0 +170775217429,215,0 +170775217477,215,0 +170775217525,215,0 +170775217573,215,0 +170775217621,215,0 +170775217668,215,0 +170775217716,215,0 +170775217764,214,0 +170775217812,214,0 +170775217861,214,0 +170775217909,214,0 +170775217957,214,0 +170775218007,214,0 +170775218056,215,0 +170775218104,215,0 +170775218152,215,0 +170775218200,215,0 +170775218248,215,0 +170775218296,215,0 +170775218346,215,0 +170775218394,215,0 +170775218442,215,0 +170775218489,215,0 +170775218539,215,0 +170775218587,214,0 +170775218636,214,0 +170775218684,214,0 +170775218734,214,0 +170775218782,214,0 +170775218830,214,0 +170775218879,215,0 +170775218927,214,0 +170775218976,215,0 +170775219024,215,0 +170775219074,215,0 +170775219122,215,0 +170775219170,215,0 +170775219217,215,0 +170775219265,215,0 +170775219313,215,0 +170775219361,214,0 +170775219409,213,0 +170775219457,213,0 +170775219505,214,0 +170775219553,214,0 +170775219602,214,0 +170775219650,214,0 +170775219698,214,0 +170775219746,214,0 +170775219794,214,0 +170775219841,215,0 +170775219889,215,0 +170775219937,215,0 +170775219985,215,0 +170775220033,215,0 +170775220081,214,0 +170775220130,215,0 +170775220178,214,0 +170775220226,213,0 +170775220274,213,0 +170775220322,214,0 +170775220371,213,0 +170775220419,214,0 +170775220469,214,0 +170775220517,214,0 +170775220565,214,0 +170775220614,214,0 +170775220664,214,0 +170775220712,214,0 +170775220761,214,0 +170775220811,215,0 +170775220859,215,0 +170775220907,214,0 +170775220956,214,0 +170775221006,213,0 +170775221055,213,0 +170775221105,214,0 +170775221153,214,0 +170775221201,214,0 +170775221248,214,0 +170775221296,214,0 +170775221344,214,0 +170775221392,214,0 +170775221440,214,0 +170775221490,214,0 +170775221538,215,0 +170775221587,215,0 +170775221636,215,0 +170775221684,215,0 +170775221732,215,0 +170775221780,214,0 +170775221828,214,0 +170775221876,214,0 +170775221924,214,0 +170775221974,214,0 +170775222022,214,0 +170775222071,214,0 +170775222121,214,0 +170775222170,215,0 +170775222218,215,0 +170775222268,215,0 +170775222315,215,0 +170775222365,215,0 +170775222413,215,0 +170775222462,215,0 +170775222510,215,0 +170775222558,215,0 +170775222606,214,0 +170775222656,214,0 +170775222705,214,0 +170775222753,214,0 +170775222801,214,0 +170775222849,214,0 +170775222897,215,0 +170775222945,214,0 +170775222993,215,0 +170775223041,215,0 +170775223090,215,0 +170775223138,215,0 +170775223187,215,0 +170775223237,215,0 +170775223286,215,0 +170775223336,215,0 +170775223384,214,0 +170775223432,214,0 +170775223481,214,0 +170775223531,214,0 +170775223580,214,0 +170775223628,214,0 +170775223676,214,0 +170775223724,214,0 +170775223774,214,0 +170775223822,214,0 +170775223871,215,0 +170775223919,215,0 +170775223967,215,0 +170775224015,215,0 +170775224063,215,0 +170775224111,215,0 +170775224159,214,0 +170775224208,214,0 +170775224258,214,0 +170775224306,214,0 +170775224354,214,0 +170775224403,214,0 +170775224451,214,0 +170775224501,215,0 +170775224550,215,0 +170775224598,215,0 +170775224646,215,0 +170775224696,215,0 +170775224745,215,0 +170775224793,215,0 +170775224841,215,0 +170775224891,215,0 +170775224940,215,0 +170775224990,214,0 +170775225038,214,0 +170775225087,214,0 +170775225135,214,0 +170775225183,214,0 +170775225231,215,0 +170775225281,215,0 +170775225329,215,0 +170775225376,215,0 +170775225424,215,0 +170775225472,215,0 +170775225520,215,0 +170775225568,215,0 +170775225618,215,0 +170775225666,215,0 +170775225715,215,0 +170775225763,215,0 +170775225811,214,0 +170775225860,214,0 +170775225910,214,0 +170775225958,214,0 +170775226005,214,0 +170775226055,215,0 +170775226103,215,0 +170775226151,215,0 +170775226199,215,0 +170775226246,215,0 +170775226294,215,0 +170775226344,215,0 +170775226392,215,0 +170775226439,215,0 +170775226487,215,0 +170775226535,215,0 +170775226583,214,0 +170775226631,214,0 +170775226679,214,0 +170775226727,214,0 +170775226775,214,0 +170775226822,215,0 +170775226870,214,0 +170775226920,215,0 +170775226967,215,0 +170775227015,215,0 +170775227063,215,0 +170775227111,215,0 +170775227159,215,0 +170775227207,216,0 +170775227255,215,0 +170775227303,215,0 +170775227351,215,0 +170775227398,214,0 +170775227446,214,0 +170775227494,214,0 +170775227542,215,0 +170775227590,215,0 +170775227638,215,0 +170775227686,215,0 +170775227733,215,0 +170775227781,215,0 +170775227831,215,0 +170775227879,215,0 +170775227927,215,0 +170775227975,215,0 +170775228024,215,0 +170775228072,215,0 +170775228120,215,0 +170775228169,214,0 +170775228217,214,0 +170775228265,214,0 +170775228313,214,0 +170775228360,214,0 +170775228408,215,0 +170775228456,215,0 +170775228504,215,0 +170775228552,215,0 +170775228600,215,0 +170775228648,215,0 +170775228696,215,0 +170775228745,215,0 +170775228793,215,0 +170775228841,215,0 +170775228890,215,0 +170775228938,215,0 +170775228988,214,0 +170775229036,214,0 +170775229084,215,0 +170775229133,214,0 +170775229183,214,0 +170775229231,215,0 +170775229280,215,0 +170775229330,215,0 +170775229378,215,0 +170775229426,215,0 +170775229474,215,0 +170775229521,215,0 +170775229569,215,0 +170775229619,215,0 +170775229667,215,0 +170775229716,215,0 +170775229766,215,0 +170775229814,214,0 +170775229863,214,0 +170775229913,214,0 +170775229961,214,0 +170775230009,214,0 +170775230057,215,0 +170775230106,215,0 +170775230154,215,0 +170775230202,215,0 +170775230250,215,0 +170775230298,215,0 +170775230346,215,0 +170775230394,215,0 +170775230441,215,0 +170775230491,215,0 +170775230539,214,0 +170775230588,214,0 +170775230636,214,0 +170775230686,214,0 +170775230734,214,0 +170775230782,214,0 +170775230831,214,0 +170775230879,214,0 +170775230927,215,0 +170775230977,215,0 +170775231025,215,0 +170775231074,215,0 +170775231122,215,0 +170775231170,215,0 +170775231218,215,0 +170775231268,215,0 +170775231317,215,0 +170775231367,215,0 +170775231416,214,0 +170775231466,214,0 +170775231515,214,0 +170775231565,214,0 +170775231614,214,0 +170775231664,214,0 +170775231712,214,0 +170775231760,215,0 +170775231809,215,0 +170775231857,215,0 +170775231907,215,0 +170775231955,215,0 +170775232003,215,0 +170775232052,215,0 +170775232100,215,0 +170775232148,215,0 +170775232196,214,0 +170775232245,213,0 +170775232294,213,0 +170775232344,214,0 +170775232392,214,0 +170775232439,214,0 +170775232487,214,0 +170775232535,214,0 +170775232585,214,0 +170775232633,214,0 +170775232680,214,0 +170775232728,215,0 +170775232776,214,0 +170775232824,215,0 +170775232872,215,0 +170775232920,215,0 +170775232969,215,0 +170775233017,213,0 +170775233065,214,0 +170775233113,214,0 +170775233161,214,0 +170775233208,214,0 +170775233256,214,0 +170775233304,214,0 +170775233352,214,0 +170775233400,214,0 +170775233448,215,0 +170775233497,215,0 +170775233547,214,0 +170775233594,215,0 +170775233642,215,0 +170775233690,215,0 +170775233738,215,0 +170775233786,214,0 +170775233834,214,0 +170775233881,214,0 +170775233929,214,0 +170775233977,214,0 +170775234025,214,0 +170775234073,214,0 +170775234121,214,0 +170775234170,214,0 +170775234218,214,0 +170775234266,215,0 +170775234315,215,0 +170775234363,215,0 +170775234411,215,0 +170775234459,215,0 +170775234507,215,0 +170775234554,215,0 +170775234602,214,0 +170775234652,214,0 +170775234701,214,0 +170775234749,214,0 +170775234797,214,0 +170775234845,214,0 +170775234893,215,0 +170775234940,215,0 +170775234988,215,0 +170775235038,215,0 +170775235086,215,0 +170775235133,215,0 +170775235183,215,0 +170775235231,215,0 +170775235279,215,0 +170775235327,215,0 +170775235374,215,0 +170775235422,214,0 +170775235470,214,0 +170775235518,214,0 +170775235566,214,0 +170775235614,215,0 +170775235661,214,0 +170775235709,215,0 +170775235759,214,0 +170775235806,214,0 +170775235854,215,0 +170775235902,215,0 +170775235950,215,0 +170775235998,215,0 +170775236046,215,0 +170775236093,215,0 +170775236141,215,0 +170775236191,214,0 +170775236239,214,0 +170775236286,214,0 +170775236334,214,0 +170775236383,215,0 +170775236431,214,0 +170775236479,215,0 +170775236527,215,0 +170775236575,215,0 +170775236622,215,0 +170775236670,215,0 +170775236720,215,0 +170775236769,215,0 +170775236817,215,0 +170775236865,215,0 +170775236913,215,0 +170775236963,215,0 +170775237012,214,0 +170775237062,214,0 +170775237110,215,0 +170775237158,215,0 +170775237207,215,0 +170775237255,215,0 +170775237304,215,0 +170775237354,215,0 +170775237404,215,0 +170775237453,215,0 +170775237501,215,0 +170775237549,215,0 +170775237598,215,0 +170775237646,215,0 +170775237694,215,0 +170775237742,215,0 +170775237790,215,0 +170775237840,215,0 +170775237889,215,0 +170775237937,215,0 +170775237987,215,0 +170775238036,215,0 +170775238086,215,0 +170775238134,215,0 +170775238183,215,0 +170775238233,215,0 +170775238281,215,0 +170775238330,215,0 +170775238378,215,0 +170775238426,215,0 +170775238476,215,0 +170775238524,215,0 +170775238573,215,0 +170775238621,214,0 +170775238671,214,0 +170775238718,214,0 +170775238766,214,0 +170775238816,214,0 +170775238866,215,0 +170775238913,215,0 +170775238961,215,0 +170775239011,215,0 +170775239060,215,0 +170775239110,215,0 +170775239158,215,0 +170775239206,215,0 +170775239254,215,0 +170775239303,215,0 +170775239351,215,0 +170775239399,214,0 +170775239448,214,0 +170775239496,214,0 +170775239544,214,0 +170775239592,214,0 +170775239640,214,0 +170775239688,214,0 +170775239735,215,0 +170775239785,215,0 +170775239833,215,0 +170775239880,215,0 +170775239928,215,0 +170775239976,215,0 +170775240024,215,0 +170775240074,215,0 +170775240122,215,0 +170775240171,215,0 +170775240219,214,0 +170775240269,214,0 +170775240318,213,0 +170775240366,214,0 +170775240416,214,0 +170775240464,214,0 +170775240513,214,0 +170775240563,214,0 +170775240612,214,0 +170775240660,215,0 +170775240708,215,0 +170775240758,215,0 +170775240806,215,0 +170775240853,215,0 +170775240903,215,0 +170775240951,215,0 +170775240999,214,0 +170775241047,213,0 +170775241095,214,0 +170775241144,214,0 +170775241192,214,0 +170775241242,214,0 +170775241290,214,0 +170775241338,214,0 +170775241386,214,0 +170775241435,214,0 +170775241483,215,0 +170775241531,215,0 +170775241581,215,0 +170775241630,215,0 +170775241680,215,0 +170775241727,215,0 +170775241777,215,0 +170775241825,213,0 +170775241875,213,0 +170775241924,214,0 +170775241974,213,0 +170775242022,214,0 +170775242069,214,0 +170775242119,214,0 +170775242167,214,0 +170775242215,214,0 +170775242264,214,0 +170775242312,214,0 +170775242362,214,0 +170775242410,215,0 +170775242458,214,0 +170775242505,215,0 +170775242553,215,0 +170775242601,214,0 +170775242649,213,0 +170775242697,213,0 +170775242745,214,0 +170775242794,214,0 +170775242842,214,0 +170775242890,214,0 +170775242938,214,0 +170775242985,214,0 +170775243033,214,0 +170775243081,214,0 +170775243129,214,0 +170775243177,214,0 +170775243225,214,0 +170775243273,215,0 +170775243322,214,0 +170775243370,214,0 +170775243418,214,0 +170775243467,213,0 +170775243515,213,0 +170775243563,213,0 +170775243611,214,0 +170775243660,214,0 +170775243708,214,0 +170775243757,214,0 +170775243805,214,0 +170775243853,214,0 +170775243901,214,0 +170775243949,214,0 +170775243998,214,0 +170775244046,215,0 +170775244094,215,0 +170775244142,215,0 +170775244192,215,0 +170775244239,214,0 +170775244287,214,0 +170775244337,214,0 +170775244386,214,0 +170775244436,214,0 +170775244484,214,0 +170775244532,214,0 +170775244581,214,0 +170775244629,214,0 +170775244679,214,0 +170775244726,215,0 +170775244774,215,0 +170775244822,214,0 +170775244872,215,0 +170775244920,215,0 +170775244967,215,0 +170775245015,214,0 +170775245063,214,0 +170775245112,214,0 +170775245160,214,0 +170775245208,214,0 +170775245256,214,0 +170775245304,214,0 +170775245352,214,0 +170775245400,214,0 +170775245448,215,0 +170775245497,214,0 +170775245547,214,0 +170775245596,215,0 +170775245644,215,0 +170775245692,215,0 +170775245740,215,0 +170775245790,214,0 +170775245838,214,0 +170775245886,214,0 +170775245935,214,0 +170775245985,214,0 +170775246032,214,0 +170775246082,214,0 +170775246130,214,0 +170775246178,214,0 +170775246226,215,0 +170775246275,215,0 +170775246323,215,0 +170775246371,215,0 +170775246419,215,0 +170775246468,215,0 +170775246518,215,0 +170775246567,215,0 +170775246615,215,0 +170775246663,214,0 +170775246711,215,0 +170775246759,215,0 +170775246807,215,0 +170775246855,215,0 +170775246903,215,0 +170775246951,215,0 +170775247000,215,0 +170775247048,215,0 +170775247098,215,0 +170775247147,215,0 +170775247195,215,0 +170775247243,215,0 +170775247291,215,0 +170775247339,215,0 +170775247387,215,0 +170775247435,215,0 +170775247483,215,0 +170775247532,215,0 +170775247580,215,0 +170775247630,215,0 +170775247678,215,0 +170775247726,215,0 +170775247774,215,0 +170775247821,215,0 +170775247869,215,0 +170775247917,215,0 +170775247967,215,0 +170775248016,215,0 +170775248064,215,0 +170775248112,215,0 +170775248161,215,0 +170775248209,214,0 +170775248257,214,0 +170775248305,214,0 +170775248353,214,0 +170775248401,214,0 +170775248449,215,0 +170775248497,215,0 +170775248545,215,0 +170775248592,215,0 +170775248640,215,0 +170775248688,215,0 +170775248736,215,0 +170775248784,216,0 +170775248832,215,0 +170775248881,215,0 +170775248929,215,0 +170775248977,215,0 +170775249025,215,0 +170775249073,214,0 +170775249120,214,0 +170775249168,214,0 +170775249216,215,0 +170775249266,215,0 +170775249313,215,0 +170775249361,215,0 +170775249409,215,0 +170775249457,215,0 +170775249505,215,0 +170775249553,215,0 +170775249601,215,0 +170775249648,215,0 +170775249696,215,0 +170775249744,215,0 +170775249794,215,0 +170775249841,214,0 +170775249891,214,0 +170775249940,214,0 +170775249988,214,0 +170775250036,214,0 +170775250085,215,0 +170775250133,215,0 +170775250181,215,0 +170775250229,215,0 +170775250277,215,0 +170775250326,215,0 +170775250375,215,0 +170775250423,215,0 +170775250473,215,0 +170775250522,215,0 +170775250570,215,0 +170775250618,214,0 +170775250666,214,0 +170775250714,214,0 +170775250762,214,0 +170775250809,214,0 +170775250857,214,0 +170775250905,214,0 +170775250953,214,0 +170775251001,215,0 +170775251050,214,0 +170775251100,215,0 +170775251148,215,0 +170775251195,215,0 +170775251243,215,0 +170775251291,215,0 +170775251339,215,0 +170775251388,214,0 +170775251436,214,0 +170775251484,214,0 +170775251534,214,0 +170775251582,214,0 +170775251629,214,0 +170775251677,214,0 +170775251725,214,0 +170775251775,214,0 +170775251823,215,0 +170775251872,215,0 +170775251920,215,0 +170775251968,214,0 +170775252016,215,0 +170775252065,215,0 +170775252115,215,0 +170775252163,215,0 +170775252211,214,0 +170775252260,213,0 +170775252308,214,0 +170775252356,214,0 +170775252406,214,0 +170775252454,214,0 +170775252501,214,0 +170775252551,214,0 +170775252600,214,0 +170775252650,215,0 +170775252700,214,0 +170775252747,215,0 +170775252797,214,0 +170775252845,215,0 +170775252894,215,0 +170775252944,215,0 +170775252992,215,0 +170775253041,214,0 +170775253091,214,0 +170775253140,214,0 +170775253190,214,0 +170775253240,214,0 +170775253288,214,0 +170775253337,214,0 +170775253385,214,0 +170775253434,215,0 +170775253482,214,0 +170775253530,215,0 +170775253580,215,0 +170775253629,215,0 +170775253679,215,0 +170775253727,215,0 +170775253775,215,0 +170775253823,214,0 +170775253872,213,0 +170775253920,214,0 +170775253968,214,0 +170775254016,214,0 +170775254063,214,0 +170775254111,214,0 +170775254159,215,0 +170775254207,215,0 +170775254256,215,0 +170775254304,215,0 +170775254352,215,0 +170775254400,215,0 +170775254448,215,0 +170775254497,215,0 +170775254547,215,0 +170775254596,215,0 +170775254644,214,0 +170775254692,214,0 +170775254740,214,0 +170775254790,214,0 +170775254839,214,0 +170775254889,214,0 +170775254937,214,0 +170775254986,214,0 +170775255034,215,0 +170775255082,215,0 +170775255131,214,0 +170775255181,215,0 +170775255229,215,0 +170775255277,215,0 +170775255325,215,0 +170775255372,215,0 +170775255422,214,0 +170775255470,214,0 +170775255519,214,0 +170775255567,214,0 +170775255615,214,0 +170775255663,214,0 +170775255711,214,0 +170775255759,214,0 +170775255808,214,0 +170775255856,214,0 +170775255904,215,0 +170775255952,215,0 +170775256000,215,0 +170775256048,215,0 +170775256096,215,0 +170775256143,215,0 +170775256191,214,0 +170775256239,214,0 +170775256287,214,0 +170775256336,214,0 +170775256384,214,0 +170775256432,214,0 +170775256480,214,0 +170775256528,214,0 +170775256575,214,0 +170775256623,214,0 +170775256673,214,0 +170775256721,215,0 +170775256770,215,0 +170775256818,215,0 +170775256868,215,0 +170775256917,215,0 +170775256965,214,0 +170775257013,214,0 +170775257061,214,0 +170775257109,214,0 +170775257157,214,0 +170775257206,214,0 +170775257254,214,0 +170775257302,214,0 +170775257352,214,0 +170775257400,214,0 +170775257449,214,0 +170775257497,215,0 +170775257545,215,0 +170775257593,215,0 +170775257641,215,0 +170775257690,215,0 +170775257738,215,0 +170775257786,214,0 +170775257836,214,0 +170775257884,214,0 +170775257932,214,0 +170775257981,214,0 +170775258029,214,0 +170775258079,214,0 +170775258127,214,0 +170775258174,215,0 +170775258222,215,0 +170775258272,215,0 +170775258321,215,0 +170775258369,215,0 +170775258419,215,0 +170775258467,215,0 +170775258516,214,0 +170775258564,215,0 +170775258612,215,0 +170775258660,214,0 +170775258708,214,0 +170775258756,214,0 +170775258803,214,0 +170775258851,214,0 +170775258899,215,0 +170775258947,214,0 +170775258995,215,0 +170775259044,215,0 +170775259092,215,0 +170775259140,215,0 +170775259188,215,0 +170775259236,215,0 +170775259284,215,0 +170775259331,214,0 +170775259379,215,0 +170775259427,214,0 +170775259475,214,0 +170775259525,214,0 +170775259574,214,0 +170775259624,215,0 +170775259672,215,0 +170775259721,215,0 +170775259771,215,0 +170775259818,215,0 +170775259866,215,0 +170775259914,215,0 +170775259962,215,0 +170775260010,215,0 +170775260058,215,0 +170775260106,215,0 +170775260153,215,0 +170775260201,215,0 +170775260249,214,0 +170775260297,214,0 +170775260345,214,0 +170775260392,214,0 +170775260440,214,0 +170775260488,214,0 +170775260536,214,0 +170775260586,214,0 +170775260633,215,0 +170775260683,215,0 +170775260731,215,0 +170775260779,215,0 +170775260827,215,0 +170775260875,215,0 +170775260924,215,0 +170775260972,215,0 +170775261020,214,0 +170775261068,214,0 +170775261116,214,0 +170775261165,214,0 +170775261213,214,0 +170775261261,214,0 +170775261309,214,0 +170775261358,215,0 +170775261406,215,0 +170775261454,215,0 +170775261502,215,0 +170775261550,215,0 +170775261597,215,0 +170775261645,215,0 +170775261693,215,0 +170775261743,215,0 +170775261792,215,0 +170775261840,214,0 +170775261888,214,0 +170775261936,214,0 +170775261984,214,0 +170775262031,214,0 +170775262079,215,0 +170775262127,215,0 +170775262175,215,0 +170775262224,215,0 +170775262272,215,0 +170775262320,215,0 +170775262368,215,0 +170775262416,215,0 +170775262465,215,0 +170775262513,215,0 +170775262561,215,0 +170775262609,215,0 +170775262657,213,0 +170775262705,214,0 +170775262753,213,0 +170775262801,214,0 +170775262850,214,0 +170775262898,214,0 +170775262946,214,0 +170775262994,214,0 +170775263042,214,0 +170775263092,215,0 +170775263139,215,0 +170775263189,215,0 +170775263237,215,0 +170775263286,215,0 +170775263334,215,0 +170775263382,215,0 +170775263430,215,0 +170775263480,215,0 +170775263528,215,0 +170775263576,215,0 +170775263625,215,0 +170775263675,215,0 +170775263723,215,0 +170775263770,215,0 +170775263820,214,0 +170775263868,214,0 +170775263916,214,0 +170775263964,214,0 +170775264013,214,0 +170775264061,214,0 +170775264111,215,0 +170775264159,215,0 +170775264207,215,0 +170775264255,215,0 +170775264303,215,0 +170775264351,215,0 +170775264398,215,0 +170775264446,215,0 +170775264494,215,0 +170775264542,215,0 +170775264590,215,0 +170775264638,214,0 +170775264688,214,0 +170775264737,214,0 +170775264785,214,0 +170775264833,214,0 +170775264881,214,0 +170775264931,214,0 +170775264980,214,0 +170775265028,214,0 +170775265077,215,0 +170775265125,215,0 +170775265173,215,0 +170775265221,215,0 +170775265269,215,0 +170775265317,215,0 +170775265365,215,0 +170775265412,215,0 +170775265460,214,0 +170775265509,214,0 +170775265557,214,0 +170775265605,214,0 +170775265653,214,0 +170775265701,214,0 +170775265749,214,0 +170775265797,215,0 +170775265845,214,0 +170775265894,215,0 +170775265944,215,0 +170775265993,215,0 +170775266041,215,0 +170775266089,215,0 +170775266137,215,0 +170775266185,215,0 +170775266233,214,0 +170775266283,214,0 +170775266332,214,0 +170775266380,214,0 +170775266430,214,0 +170775266479,214,0 +170775266528,214,0 +170775266578,215,0 +170775266626,215,0 +170775266675,215,0 +170775266723,215,0 +170775266771,215,0 +170775266820,215,0 +170775266868,215,0 +170775266916,215,0 +170775266964,214,0 +170775267011,215,0 +170775267059,214,0 +170775267107,214,0 +170775267155,214,0 +170775267203,214,0 +170775267251,214,0 +170775267298,214,0 +170775267346,214,0 +170775267394,215,0 +170775267442,215,0 +170775267490,215,0 +170775267538,215,0 +170775267585,215,0 +170775267633,215,0 +170775267683,215,0 +170775267730,215,0 +170775267778,215,0 +170775267826,214,0 +170775267875,214,0 +170775267925,214,0 +170775267973,214,0 +170775268020,214,0 +170775268070,214,0 +170775268118,214,0 +170775268166,214,0 +170775268213,214,0 +170775268261,214,0 +170775268309,215,0 +170775268358,215,0 +170775268408,215,0 +170775268457,215,0 +170775268507,215,0 +170775268555,215,0 +170775268603,215,0 +170775268650,213,0 +170775268700,213,0 +170775268749,213,0 +170775268797,213,0 +170775268847,214,0 +170775268895,214,0 +170775268944,214,0 +170775268994,214,0 +170775269042,214,0 +170775269090,214,0 +170775269138,214,0 +170775269185,215,0 +170775269233,215,0 +170775269281,214,0 +170775269329,214,0 +170775269377,215,0 +170775269425,214,0 +170775269473,213,0 +170775269521,214,0 +170775269571,214,0 +170775269620,214,0 +170775269668,214,0 +170775269718,214,0 +170775269765,214,0 +170775269813,214,0 +170775269861,214,0 +170775269911,214,0 +170775269959,214,0 +170775270007,214,0 +170775270055,214,0 +170775270103,214,0 +170775270152,214,0 +170775270202,214,0 +170775270250,214,0 +170775270299,214,0 +170775270349,214,0 +170775270397,214,0 +170775270444,214,0 +170775270492,214,0 +170775270540,214,0 +170775270588,214,0 +170775270637,214,0 +170775270685,215,0 +170775270733,215,0 +170775270781,215,0 +170775270828,215,0 +170775270876,215,0 +170775270926,215,0 +170775270975,215,0 +170775271023,215,0 +170775271071,214,0 +170775271119,214,0 +170775271168,214,0 +170775271216,214,0 +170775271266,214,0 +170775271313,214,0 +170775271361,214,0 +170775271409,214,0 +170775271457,215,0 +170775271505,215,0 +170775271553,215,0 +170775271600,215,0 +170775271648,215,0 +170775271696,215,0 +170775271744,215,0 +170775271794,215,0 +170775271843,214,0 +170775271893,214,0 +170775271942,214,0 +170775271990,214,0 +170775272038,214,0 +170775272086,214,0 +170775272135,214,0 +170775272183,214,0 +170775272231,214,0 +170775272279,214,0 +170775272329,214,0 +170775272378,215,0 +170775272428,215,0 +170775272476,215,0 +170775272523,215,0 +170775272571,215,0 +170775272619,215,0 +170775272667,214,0 +170775272715,214,0 +170775272763,214,0 +170775272812,214,0 +170775272860,214,0 +170775272910,214,0 +170775272958,214,0 +170775273006,215,0 +170775273054,215,0 +170775273103,215,0 +170775273151,215,0 +170775273199,215,0 +170775273248,215,0 +170775273296,215,0 +170775273344,215,0 +170775273392,215,0 +170775273440,214,0 +170775273488,214,0 +170775273537,214,0 +170775273585,214,0 +170775273633,214,0 +170775273683,214,0 +170775273732,214,0 +170775273780,215,0 +170775273828,215,0 +170775273878,215,0 +170775273927,215,0 +170775273975,215,0 +170775274023,215,0 +170775274071,215,0 +170775274121,215,0 +170775274170,215,0 +170775274220,215,0 +170775274267,214,0 +170775274315,214,0 +170775274363,214,0 +170775274411,214,0 +170775274459,214,0 +170775274509,214,0 +170775274557,215,0 +170775274606,215,0 +170775274654,215,0 +170775274702,215,0 +170775274751,215,0 +170775274799,215,0 +170775274847,215,0 +170775274895,215,0 +170775274943,215,0 +170775274991,215,0 +170775275039,214,0 +170775275089,214,0 +170775275137,214,0 +170775275186,214,0 +170775275234,214,0 +170775275282,214,0 +170775275330,214,0 +170775275378,215,0 +170775275426,215,0 +170775275475,215,0 +170775275525,215,0 +170775275573,215,0 +170775275622,215,0 +170775275672,215,0 +170775275720,215,0 +170775275768,215,0 +170775275817,215,0 +170775275865,214,0 +170775275915,214,0 +170775275964,214,0 +170775276012,214,0 +170775276060,214,0 +170775276108,215,0 +170775276156,215,0 +170775276206,215,0 +170775276253,215,0 +170775276303,215,0 +170775276352,215,0 +170775276400,215,0 +170775276448,215,0 +170775276496,215,0 +170775276546,215,0 +170775276594,215,0 +170775276643,214,0 +170775276691,214,0 +170775276739,214,0 +170775276787,214,0 +170775276835,215,0 +170775276883,215,0 +170775276931,215,0 +170775276979,215,0 +170775277028,215,0 +170775277076,215,0 +170775277125,215,0 +170775277173,215,0 +170775277221,215,0 +170775277269,215,0 +170775277317,215,0 +170775277365,215,0 +170775277413,215,0 +170775277461,215,0 +170775277510,214,0 +170775277560,214,0 +170775277608,215,0 +170775277656,214,0 +170775277705,215,0 +170775277753,215,0 +170775277803,215,0 +170775277851,215,0 +170775277900,215,0 +170775277948,215,0 +170775277996,215,0 +170775278044,215,0 +170775278094,215,0 +170775278142,215,0 +170775278191,215,0 +170775278239,215,0 +170775278287,214,0 +170775278337,215,0 +170775278385,214,0 +170775278433,215,0 +170775278481,215,0 +170775278530,215,0 +170775278578,215,0 +170775278626,215,0 +170775278674,215,0 +170775278722,215,0 +170775278770,215,0 +170775278819,215,0 +170775278869,215,0 +170775278917,215,0 +170775278966,215,0 +170775279016,215,0 +170775279065,214,0 +170775279115,214,0 +170775279163,214,0 +170775279212,214,0 +170775279262,214,0 +170775279310,214,0 +170775279359,214,0 +170775279407,215,0 +170775279455,215,0 +170775279504,215,0 +170775279552,215,0 +170775279602,215,0 +170775279650,215,0 +170775279699,215,0 +170775279749,215,0 +170775279796,215,0 +170775279844,215,0 +170775279892,214,0 +170775279940,214,0 +170775279990,214,0 +170775280038,214,0 +170775280085,214,0 +170775280133,214,0 +170775280183,215,0 +170775280231,214,0 +170775280279,215,0 +170775280327,215,0 +170775280375,215,0 +170775280423,215,0 +170775280472,215,0 +170775280520,215,0 +170775280570,215,0 +170775280618,215,0 +170775280666,214,0 +170775280715,214,0 +170775280764,214,0 +170775280814,214,0 +170775280864,214,0 +170775280912,214,0 +170775280961,214,0 +170775281009,214,0 +170775281057,214,0 +170775281106,215,0 +170775281156,215,0 +170775281204,215,0 +170775281253,215,0 +170775281303,215,0 +170775281352,215,0 +170775281400,215,0 +170775281448,214,0 +170775281496,213,0 +170775281544,213,0 +170775281592,214,0 +170775281641,214,0 +170775281689,214,0 +170775281739,214,0 +170775281787,214,0 +170775281835,214,0 +170775281884,214,0 +170775281932,214,0 +170775281980,214,0 +170775282028,214,0 +170775282076,214,0 +170775282126,215,0 +170775282173,215,0 +170775282221,214,0 +170775282271,214,0 +170775282320,213,0 +170775282368,214,0 +170775282416,213,0 +170775282466,213,0 +170775282515,214,0 +170775282563,213,0 +170775282611,214,0 +170775282659,214,0 +170775282707,214,0 +170775282757,214,0 +170775282804,214,0 +170775282852,214,0 +170775282900,214,0 +170775282948,214,0 +170775282996,214,0 +170775283046,214,0 +170775283095,213,0 +170775283143,213,0 +170775283191,214,0 +170775283239,214,0 +170775283289,214,0 +170775283337,214,0 +170775283385,214,0 +170775283432,214,0 +170775283482,215,0 +170775283532,215,0 +170775283580,215,0 +170775283627,215,0 +170775283677,215,0 +170775283727,215,0 +170775283776,215,0 +170775283824,215,0 +170775283872,214,0 +170775283922,214,0 +170775283971,214,0 +170775284019,214,0 +170775284068,214,0 +170775284116,214,0 +170775284166,214,0 +170775284214,215,0 +170775284262,214,0 +170775284311,215,0 +170775284361,215,0 +170775284410,215,0 +170775284458,215,0 +170775284506,215,0 +170775284556,215,0 +170775284606,215,0 +170775284653,214,0 +170775284703,214,0 +170775284752,214,0 +170775284800,214,0 +170775284848,214,0 +170775284896,214,0 +170775284944,214,0 +170775284994,214,0 +170775285043,215,0 +170775285091,215,0 +170775285139,215,0 +170775285189,215,0 +170775285238,215,0 +170775285287,215,0 +170775285335,215,0 +170775285385,215,0 +170775285433,215,0 +170775285481,214,0 +170775285529,214,0 +170775285576,214,0 +170775285624,214,0 +170775285672,214,0 +170775285720,214,0 +170775285768,215,0 +170775285816,215,0 +170775285863,215,0 +170775285911,215,0 +170775285959,215,0 +170775286007,215,0 +170775286055,215,0 +170775286105,215,0 +170775286154,215,0 +170775286204,215,0 +170775286253,215,0 +170775286303,215,0 +170775286350,215,0 +170775286398,215,0 +170775286446,215,0 +170775286494,215,0 +170775286542,215,0 +170775286590,215,0 +170775286640,215,0 +170775286688,215,0 +170775286735,215,0 +170775286785,215,0 +170775286833,215,0 +170775286883,215,0 +170775286930,215,0 +170775286978,215,0 +170775287028,215,0 +170775287078,215,0 +170775287125,214,0 +170775287173,215,0 +170775287221,215,0 +170775287271,215,0 +170775287318,215,0 +170775287368,215,0 +170775287416,215,0 +170775287464,215,0 +170775287512,215,0 +170775287560,215,0 +170775287609,215,0 +170775287657,215,0 +170775287705,215,0 +170775287753,215,0 +170775287801,215,0 +170775287850,215,0 +170775287898,214,0 +170775287946,214,0 +170775287994,214,0 +170775288044,214,0 +170775288092,214,0 +170775288140,214,0 +170775288188,214,0 +170775288236,214,0 +170775288284,215,0 +170775288333,215,0 +170775288383,215,0 +170775288431,215,0 +170775288478,215,0 +170775288526,215,0 +170775288576,215,0 +170775288624,215,0 +170775288673,214,0 +170775288723,214,0 +170775288772,214,0 +170775288822,214,0 +170775288870,214,0 +170775288919,214,0 +170775288969,214,0 +170775289018,214,0 +170775289068,214,0 +170775289117,215,0 +170775289167,215,0 +170775289215,215,0 +170775289263,215,0 +170775289312,215,0 +170775289360,215,0 +170775289409,215,0 +170775289459,214,0 +170775289507,213,0 +170775289555,214,0 +170775289604,213,0 +170775289654,214,0 +170775289702,214,0 +170775289750,214,0 +170775289798,214,0 +170775289846,214,0 +170775289894,214,0 +170775289943,215,0 +170775289991,215,0 +170775290039,215,0 +170775290087,215,0 +170775290135,215,0 +170775290183,215,0 +170775290231,214,0 +170775290280,214,0 +170775290331,213,0 +170775290379,214,0 +170775290428,214,0 +170775290476,214,0 +170775290524,214,0 +170775290572,214,0 +170775290621,214,0 +170775290669,214,0 +170775290717,215,0 +170775290765,215,0 +170775290815,215,0 +170775290863,215,0 +170775290911,215,0 +170775290961,215,0 +170775291009,215,0 +170775291057,215,0 +170775291105,213,0 +170775291153,214,0 +170775291201,214,0 +170775291249,214,0 +170775291296,214,0 +170775291344,214,0 +170775291392,214,0 +170775291440,214,0 +170775291488,215,0 +170775291536,214,0 +170775291584,215,0 +170775291632,215,0 +170775291682,215,0 +170775291731,215,0 +170775291781,215,0 +170775291829,215,0 +170775291878,214,0 +170775291926,214,0 +170775291974,214,0 +170775292023,214,0 +170775292071,214,0 +170775292119,214,0 +170775292167,214,0 +170775292215,214,0 +170775292263,214,0 +170775292313,215,0 +170775292362,215,0 +170775292412,215,0 +170775292461,215,0 +170775292511,215,0 +170775292559,215,0 +170775292608,215,0 +170775292658,214,0 +170775292707,214,0 +170775292755,214,0 +170775292803,214,0 +170775292853,214,0 +170775292902,214,0 +170775292950,214,0 +170775293000,214,0 +170775293048,214,0 +170775293097,215,0 +170775293145,215,0 +170775293193,215,0 +170775293242,215,0 +170775293292,215,0 +170775293341,215,0 +170775293389,215,0 +170775293437,215,0 +170775293487,214,0 +170775293536,214,0 +170775293586,214,0 +170775293634,214,0 +170775293683,214,0 +170775293733,214,0 +170775293781,214,0 +170775293830,214,0 +170775293878,215,0 +170775293926,214,0 +170775293974,215,0 +170775294022,215,0 +170775294070,215,0 +170775294119,215,0 +170775294167,215,0 +170775294215,215,0 +170775294263,215,0 +170775294313,214,0 +170775294362,214,0 +170775294412,214,0 +170775294459,214,0 +170775294509,214,0 +170775294558,214,0 +170775294608,215,0 +170775294656,215,0 +170775294704,215,0 +170775294752,215,0 +170775294801,215,0 +170775294849,215,0 +170775294897,215,0 +170775294946,215,0 +170775294994,215,0 +170775295042,215,0 +170775295090,214,0 +170775295139,214,0 +170775295187,214,0 +170775295237,214,0 +170775295285,214,0 +170775295333,214,0 +170775295382,214,0 +170775295432,214,0 +170775295480,215,0 +170775295529,215,0 +170775295577,215,0 +170775295625,215,0 +170775295673,215,0 +170775295723,215,0 +170775295770,215,0 +170775295818,215,0 +170775295868,215,0 +170775295916,214,0 +170775295964,214,0 +170775296012,214,0 +170775296060,214,0 +170775296109,215,0 +170775296157,215,0 +170775296205,215,0 +170775296254,215,0 +170775296302,215,0 +170775296350,215,0 +170775296400,215,0 +170775296448,215,0 +170775296496,215,0 +170775296543,215,0 +170775296593,215,0 +170775296641,215,0 +170775296690,214,0 +170775296738,214,0 +170775296786,214,0 +170775296836,215,0 +170775296884,215,0 +170775296933,215,0 +170775296981,215,0 +170775297029,215,0 +170775297077,215,0 +170775297125,215,0 +170775297173,215,0 +170775297221,215,0 +170775297268,215,0 +170775297316,215,0 +170775297364,215,0 +170775297412,215,0 +170775297462,215,0 +170775297510,214,0 +170775297559,214,0 +170775297607,214,0 +170775297657,214,0 +170775297705,215,0 +170775297753,215,0 +170775297801,215,0 +170775297849,215,0 +170775297897,215,0 +170775297945,215,0 +170775297993,215,0 +170775298042,215,0 +170775298090,215,0 +170775298138,215,0 +170775298186,215,0 +170775298234,215,0 +170775298283,215,0 +170775298331,214,0 +170775298380,215,0 +170775298428,215,0 +170775298476,215,0 +170775298524,215,0 +170775298573,215,0 +170775298621,215,0 +170775298669,215,0 +170775298719,215,0 +170775298767,215,0 +170775298815,215,0 +170775298862,215,0 +170775298910,215,0 +170775298958,215,0 +170775299006,215,0 +170775299054,215,0 +170775299102,215,0 +170775299152,215,0 +170775299199,215,0 +170775299247,215,0 +170775299295,215,0 +170775299343,215,0 +170775299391,215,0 +170775299439,215,0 +170775299486,215,0 +170775299534,215,0 +170775299582,215,0 +170775299630,215,0 +170775299678,215,0 +170775299726,215,0 +170775299775,215,0 +170775299823,215,0 +170775299871,215,0 +170775299919,214,0 +170775299966,214,0 +170775300014,214,0 +170775300062,214,0 +170775300110,214,0 +170775300159,214,0 +170775300207,215,0 +170775300257,215,0 +170775300305,215,0 +170775300352,215,0 +170775300402,215,0 +170775300450,215,0 +170775300499,215,0 +170775300547,215,0 +170775300595,215,0 +170775300643,215,0 +170775300691,215,0 +170775300740,213,0 +170775300788,213,0 +170775300838,213,0 +170775300886,214,0 +170775300933,214,0 +170775300981,214,0 +170775301031,214,0 +170775301080,214,0 +170775301130,214,0 +170775301179,214,0 +170775301227,215,0 +170775301275,215,0 +170775301325,215,0 +170775301373,215,0 +170775301421,215,0 +170775301470,215,0 +170775301518,214,0 +170775301566,214,0 +170775301615,214,0 +170775301663,214,0 +170775301711,214,0 +170775301761,214,0 +170775301810,214,0 +170775301858,214,0 +170775301906,215,0 +170775301954,215,0 +170775302003,215,0 +170775302053,215,0 +170775302102,215,0 +170775302152,215,0 +170775302200,215,0 +170775302249,215,0 +170775302299,214,0 +170775302347,214,0 +170775302395,214,0 +170775302443,214,0 +170775302491,214,0 +170775302539,214,0 +170775302587,214,0 +170775302634,214,0 +170775302682,214,0 +170775302730,214,0 +170775302778,215,0 +170775302826,215,0 +170775302873,215,0 +170775302923,215,0 +170775302971,215,0 +170775303018,215,0 +170775303066,215,0 +170775303114,214,0 +170775303164,214,0 +170775303211,214,0 +170775303259,214,0 +170775303307,214,0 +170775303357,214,0 +170775303405,214,0 +170775303453,214,0 +170775303500,214,0 +170775303550,214,0 +170775303599,215,0 +170775303649,215,0 +170775303697,215,0 +170775303745,215,0 +170775303794,215,0 +170775303842,215,0 +170775303892,214,0 +170775303939,214,0 +170775303987,214,0 +170775304035,214,0 +170775304083,214,0 +170775304131,214,0 +170775304181,214,0 +170775304229,214,0 +170775304277,214,0 +170775304325,215,0 +170775304374,215,0 +170775304422,215,0 +170775304470,215,0 +170775304518,215,0 +170775304566,215,0 +170775304614,215,0 +170775304662,215,0 +170775304711,214,0 +170775304761,214,0 +170775304810,214,0 +170775304858,214,0 +170775304906,214,0 +170775304954,214,0 +170775305002,214,0 +170775305050,214,0 +170775305099,214,0 +170775305147,214,0 +170775305197,215,0 +170775305245,215,0 +170775305293,215,0 +170775305341,215,0 +170775305389,215,0 +170775305436,215,0 +170775305486,215,0 +170775305535,214,0 +170775305585,214,0 +170775305633,214,0 +170775305682,214,0 +170775305730,214,0 +170775305778,214,0 +170775305826,214,0 +170775305876,214,0 +170775305924,214,0 +170775305973,215,0 +170775306021,215,0 +170775306069,215,0 +170775306117,215,0 +170775306165,214,0 +170775306212,215,0 +170775306262,215,0 +170775306310,214,0 +170775306358,214,0 +170775306407,214,0 +170775306455,214,0 +170775306505,214,0 +170775306553,214,0 +170775306601,214,0 +170775306649,214,0 +170775306698,214,0 +170775306748,215,0 +170775306795,215,0 +170775306845,215,0 +170775306893,215,0 +170775306941,215,0 +170775306990,215,0 +170775307038,215,0 +170775307086,215,0 +170775307134,214,0 +170775307183,214,0 +170775307231,214,0 +170775307279,214,0 +170775307327,214,0 +170775307375,214,0 +170775307423,215,0 +170775307471,214,0 +170775307518,215,0 +170775307566,215,0 +170775307614,215,0 +170775307663,215,0 +170775307711,215,0 +170775307759,215,0 +170775307807,215,0 +170775307855,215,0 +170775307903,215,0 +170775307950,215,0 +170775307998,214,0 +170775308046,214,0 +170775308094,215,0 +170775308142,215,0 +170775308190,215,0 +170775308239,215,0 +170775308287,215,0 +170775308335,215,0 +170775308383,215,0 +170775308433,215,0 +170775308481,215,0 +170775308530,215,0 +170775308580,215,0 +170775308629,215,0 +170775308677,215,0 +170775308725,214,0 +170775308773,214,0 +170775308822,215,0 +170775308870,215,0 +170775308920,215,0 +170775308969,215,0 +170775309019,215,0 +170775309068,215,0 +170775309118,215,0 +170775309166,215,0 +170775309214,215,0 +170775309263,215,0 +170775309311,215,0 +170775309359,215,0 +170775309407,215,0 +170775309456,215,0 +170775309504,215,0 +170775309554,214,0 +170775309602,214,0 +170775309650,214,0 +170775309698,214,0 +170775309747,214,0 +170775309795,214,0 +170775309843,215,0 +170775309891,215,0 +170775309939,215,0 +170775309988,215,0 +170775310036,215,0 +170775310086,215,0 +170775310134,215,0 +170775310182,215,0 +170775310229,215,0 +170775310279,215,0 +170775310328,214,0 +170775310376,214,0 +170775310426,214,0 +170775310474,214,0 +170775310522,214,0 +170775310571,214,0 +170775310621,215,0 +170775310669,215,0 +170775310717,215,0 +170775310766,215,0 +170775310814,215,0 +170775310864,215,0 +170775310913,215,0 +170775310961,215,0 +170775311009,215,0 +170775311057,215,0 +170775311105,215,0 +170775311153,214,0 +170775311201,215,0 +170775311250,215,0 +170775311298,215,0 +170775311346,215,0 +170775311395,215,0 +170775311443,215,0 +170775311491,215,0 +170775311541,215,0 +170775311589,215,0 +170775311638,215,0 +170775311686,215,0 +170775311736,215,0 +170775311784,215,0 +170775311831,215,0 +170775311879,215,0 +170775311927,214,0 +170775311975,214,0 +170775312023,214,0 +170775312072,214,0 +170775312120,215,0 +170775312168,215,0 +170775312216,215,0 +170775312264,215,0 +170775312312,215,0 +170775312360,215,0 +170775312408,215,0 +170775312456,215,0 +170775312504,215,0 +170775312552,215,0 +170775312599,215,0 +170775312647,215,0 +170775312695,215,0 +170775312743,214,0 +170775312791,214,0 +170775312838,214,0 +170775312886,214,0 +170775312934,214,0 +170775312984,215,0 +170775313031,214,0 +170775313079,215,0 +170775313127,215,0 +170775313175,215,0 +170775313224,215,0 +170775313272,215,0 +170775313320,215,0 +170775313368,215,0 +170775313417,215,0 +170775313465,215,0 +170775313513,215,0 +170775313561,214,0 +170775313609,214,0 +170775313656,214,0 +170775313704,214,0 +170775313752,214,0 +170775313800,215,0 +170775313847,215,0 +170775313895,215,0 +170775313943,215,0 +170775313991,215,0 +170775314039,215,0 +170775314088,215,0 +170775314138,215,0 +170775314186,215,0 +170775314235,215,0 +170775314283,214,0 +170775314331,214,0 +170775314379,214,0 +170775314429,214,0 +170775314477,214,0 +170775314524,214,0 +170775314572,214,0 +170775314620,214,0 +170775314668,215,0 +170775314716,215,0 +170775314764,215,0 +170775314812,215,0 +170775314859,215,0 +170775314907,215,0 +170775314955,215,0 +170775315003,215,0 +170775315051,215,0 +170775315099,215,0 +170775315146,214,0 +170775315194,214,0 +170775315242,214,0 +170775315290,214,0 +170775315339,214,0 +170775315387,214,0 +170775315435,215,0 +170775315484,215,0 +170775315532,215,0 +170775315580,215,0 +170775315628,215,0 +170775315676,215,0 +170775315724,215,0 +170775315772,215,0 +170775315821,215,0 +170775315871,215,0 +170775315920,215,0 +170775315970,214,0 +170775316019,214,0 +170775316069,214,0 +170775316117,214,0 +170775316166,215,0 +170775316214,215,0 +170775316262,215,0 +170775316311,215,0 +170775316359,215,0 +170775316407,215,0 +170775316457,215,0 +170775316506,215,0 +170775316554,215,0 +170775316602,215,0 +170775316652,215,0 +170775316701,215,0 +170775316751,214,0 +170775316800,214,0 +170775316850,214,0 +170775316898,214,0 +170775316946,214,0 +170775316994,215,0 +170775317041,215,0 +170775317089,215,0 +170775317139,215,0 +170775317187,215,0 +170775317236,215,0 +170775317286,215,0 +170775317335,215,0 +170775317383,215,0 +170775317431,215,0 +170775317481,215,0 +170775317529,215,0 +170775317576,214,0 +170775317626,214,0 +170775317674,214,0 +170775317722,214,0 +170775317770,214,0 +170775317818,214,0 +170775317866,214,0 +170775317914,214,0 +170775317962,214,0 +170775318010,215,0 +170775318058,215,0 +170775318106,215,0 +170775318155,215,0 +170775318205,215,0 +170775318252,215,0 +170775318302,215,0 +170775318351,214,0 +170775318401,214,0 +170775318449,214,0 +170775318496,214,0 +170775318544,214,0 +170775318592,214,0 +170775318640,214,0 +170775318690,214,0 +170775318739,214,0 +170775318787,214,0 +170775318835,215,0 +170775318885,214,0 +170775318933,214,0 +170775318981,215,0 +170775319029,215,0 +170775319078,215,0 +170775319128,215,0 +170775319177,213,0 +170775319227,214,0 +170775319276,214,0 +170775319326,214,0 +170775319374,214,0 +170775319421,214,0 +170775319469,214,0 +170775319519,214,0 +170775319568,214,0 +170775319616,215,0 +170775319664,215,0 +170775319712,215,0 +170775319762,215,0 +170775319811,215,0 +170775319861,215,0 +170775319910,215,0 +170775319958,214,0 +170775320008,214,0 +170775320057,214,0 +170775320107,214,0 +170775320154,214,0 +170775320204,214,0 +170775320252,214,0 +170775320301,214,0 +170775320351,215,0 +170775320400,215,0 +170775320450,215,0 +170775320498,215,0 +170775320547,215,0 +170775320597,215,0 +170775320645,215,0 +170775320693,215,0 +170775320741,215,0 +170775320789,214,0 +170775320837,214,0 +170775320886,214,0 +170775320936,214,0 +170775320983,214,0 +170775321033,214,0 +170775321081,214,0 +170775321129,214,0 +170775321178,215,0 +170775321228,215,0 +170775321276,214,0 +170775321324,215,0 +170775321371,215,0 +170775321421,215,0 +170775321469,215,0 +170775321517,215,0 +170775321566,214,0 +170775321614,214,0 +170775321662,214,0 +170775321712,214,0 +170775321760,214,0 +170775321808,214,0 +170775321856,214,0 +170775321905,214,0 +170775321953,215,0 +170775322001,215,0 +170775322049,215,0 +170775322099,215,0 +170775322146,215,0 +170775322194,215,0 +170775322242,215,0 +170775322292,215,0 +170775322339,215,0 +170775322389,214,0 +170775322438,214,0 +170775322488,214,0 +170775322537,214,0 +170775322585,214,0 +170775322635,214,0 +170775322684,214,0 +170775322732,214,0 +170775322780,214,0 +170775322828,215,0 +170775322877,215,0 +170775322925,215,0 +170775322973,215,0 +170775323022,215,0 +170775323070,215,0 +170775323118,215,0 +170775323166,214,0 +170775323216,214,0 +170775323264,214,0 +170775323313,214,0 +170775323363,215,0 +170775323411,215,0 +170775323459,215,0 +170775323507,215,0 +170775323556,215,0 +170775323604,215,0 +170775323652,215,0 +170775323700,215,0 +170775323748,215,0 +170775323796,215,0 +170775323845,215,0 +170775323893,215,0 +170775323941,215,0 +170775323990,214,0 +170775324038,214,0 +170775324086,214,0 +170775324136,215,0 +170775324184,215,0 +170775324233,215,0 +170775324283,215,0 +170775324331,215,0 +170775324380,215,0 +170775324428,215,0 +170775324476,215,0 +170775324524,215,0 +170775324572,215,0 +170775324622,215,0 +170775324669,215,0 +170775324717,215,0 +170775324767,214,0 +170775324816,214,0 +170775324866,214,0 +170775324914,214,0 +170775324963,214,0 +170775325011,214,0 +170775325059,214,0 +170775325107,215,0 +170775325155,215,0 +170775325203,214,0 +170775325252,215,0 +170775325300,215,0 +170775325348,215,0 +170775325398,215,0 +170775325447,215,0 +170775325495,215,0 +170775325544,215,0 +170775325592,214,0 +170775325640,214,0 +170775325688,214,0 +170775325736,214,0 +170775325784,214,0 +170775325832,214,0 +170775325880,214,0 +170775325929,215,0 +170775325977,215,0 +170775326025,215,0 +170775326075,215,0 +170775326124,215,0 +170775326172,215,0 +170775326222,215,0 +170775326270,215,0 +170775326318,215,0 +170775326365,214,0 +170775326413,215,0 +170775326461,214,0 +170775326511,214,0 +170775326559,215,0 +170775326608,215,0 +170775326656,215,0 +170775326704,215,0 +170775326752,215,0 +170775326800,215,0 +170775326849,215,0 +170775326899,215,0 +170775326947,215,0 +170775326995,215,0 +170775327043,215,0 +170775327092,215,0 +170775327142,215,0 +170775327191,215,0 +170775327239,214,0 +170775327289,215,0 +170775327338,215,0 +170775327386,215,0 +170775327434,215,0 +170775327483,215,0 +170775327531,215,0 +170775327581,215,0 +170775327630,215,0 +170775327678,215,0 +170775327728,215,0 +170775327775,215,0 +170775327823,215,0 +170775327873,214,0 +170775327921,215,0 +170775327970,214,0 +170775328018,214,0 +170775328068,214,0 +170775328117,214,0 +170775328167,214,0 +170775328214,214,0 +170775328264,214,0 +170775328312,215,0 +170775328360,215,0 +170775328409,215,0 +170775328459,215,0 +170775328507,215,0 +170775328556,215,0 +170775328606,215,0 +170775328654,215,0 +170775328702,215,0 +170775328750,215,0 +170775328799,214,0 +170775328847,214,0 +170775328896,214,0 +170775328944,214,0 +170775328994,214,0 +170775329042,214,0 +170775329091,214,0 +170775329139,214,0 +170775329187,214,0 +170775329235,215,0 +170775329285,215,0 +170775329333,215,0 +170775329382,215,0 +170775329432,215,0 +170775329480,215,0 +170775329528,215,0 +170775329576,214,0 +170775329623,214,0 +170775329673,213,0 +170775329721,214,0 +170775329770,214,0 +170775329820,214,0 +170775329868,214,0 +170775329916,214,0 +170775329965,214,0 +170775330015,214,0 +170775330064,215,0 +170775330112,215,0 +170775330160,215,0 +170775330210,215,0 +170775330258,215,0 +170775330305,215,0 +170775330353,215,0 +170775330401,213,0 +170775330449,214,0 +170775330497,214,0 +170775330546,214,0 +170775330594,214,0 +170775330642,214,0 +170775330690,214,0 +170775330738,214,0 +170775330787,214,0 +170775330835,214,0 +170775330883,215,0 +170775330931,215,0 +170775330979,215,0 +170775331027,215,0 +170775331074,215,0 +170775331122,215,0 +170775331170,214,0 +170775331218,213,0 +170775331266,213,0 +170775331313,214,0 +170775331361,214,0 +170775331409,214,0 +170775331457,214,0 +170775331505,214,0 +170775331554,214,0 +170775331602,214,0 +170775331650,214,0 +170775331698,215,0 +170775331745,215,0 +170775331793,215,0 +170775331843,215,0 +170775331890,215,0 +170775331938,214,0 +170775331986,214,0 +170775332034,213,0 +170775332082,214,0 +170775332129,214,0 +170775332177,214,0 +170775332225,214,0 +170775332273,214,0 +170775332321,214,0 +170775332368,214,0 +170775332416,215,0 +170775332465,215,0 +170775332513,215,0 +170775332561,215,0 +170775332609,215,0 +170775332657,215,0 +170775332704,214,0 +170775332752,215,0 +170775332802,214,0 +170775332849,214,0 +170775332897,214,0 +170775332945,214,0 +170775332993,214,0 +170775333041,214,0 +170775333088,215,0 +170775333136,215,0 +170775333186,215,0 +170775333234,215,0 +170775333281,215,0 +170775333329,215,0 +170775333377,215,0 +170775333425,215,0 +170775333474,215,0 +170775333522,215,0 +170775333570,214,0 +170775333618,214,0 +170775333666,214,0 +170775333713,214,0 +170775333761,214,0 +170775333809,215,0 +170775333857,215,0 +170775333906,215,0 +170775333954,215,0 +170775334002,215,0 +170775334050,215,0 +170775334097,215,0 +170775334147,215,0 +170775334195,215,0 +170775334242,215,0 +170775334290,215,0 +170775334338,215,0 +170775334388,214,0 +170775334435,214,0 +170775334483,214,0 +170775334531,214,0 +170775334579,214,0 +170775334627,215,0 +170775334674,215,0 +170775334722,214,0 +170775334772,215,0 +170775334820,215,0 +170775334867,215,0 +170775334915,215,0 +170775334965,215,0 +170775335013,215,0 +170775335060,215,0 +170775335108,215,0 +170775335156,215,0 +170775335204,215,0 +170775335252,215,0 +170775335299,215,0 +170775335349,215,0 +170775335397,215,0 +170775335444,215,0 +170775335492,215,0 +170775335540,215,0 +170775335588,215,0 +170775335636,215,0 +170775335684,215,0 +170775335731,215,0 +170775335779,215,0 +170775335827,215,0 +170775335875,215,0 +170775335924,215,0 +170775335974,214,0 +170775336022,214,0 +170775336071,215,0 +170775336119,214,0 +170775336167,215,0 +170775336216,215,0 +170775336265,215,0 +170775336315,215,0 +170775336363,215,0 +170775336411,215,0 +170775336458,215,0 +170775336508,215,0 +170775336556,215,0 +170775336603,215,0 +170775336653,215,0 +170775336700,215,0 +170775336748,215,0 +170775336796,214,0 +170775336845,214,0 +170775336893,214,0 +170775336941,214,0 +170775336989,214,0 +170775337037,214,0 +170775337086,215,0 +170775337134,215,0 +170775337182,215,0 +170775337230,215,0 +170775337277,215,0 +170775337325,215,0 +170775337373,215,0 +170775337421,215,0 +170775337469,215,0 +170775337517,215,0 +170775337565,214,0 +170775337613,214,0 +170775337662,213,0 +170775337710,214,0 +170775337758,214,0 +170775337805,214,0 +170775337853,214,0 +170775337903,214,0 +170775337950,214,0 +170775337998,215,0 +170775338046,215,0 +170775338094,215,0 +170775338142,215,0 +170775338189,215,0 +170775338237,215,0 +170775338285,215,0 +170775338333,215,0 +170775338381,214,0 +170775338429,214,0 +170775338476,213,0 +170775338524,214,0 +170775338572,214,0 +170775338620,214,0 +170775338668,214,0 +170775338716,214,0 +170775338764,214,0 +170775338812,214,0 +170775338859,215,0 +170775338907,215,0 +170775338957,215,0 +170775339005,215,0 +170775339052,215,0 +170775339100,215,0 +170775339150,215,0 +170775339198,214,0 +170775339246,213,0 +170775339293,214,0 +170775339341,214,0 +170775339389,214,0 +170775339437,214,0 +170775339485,214,0 +170775339535,214,0 +170775339584,214,0 +170775339632,214,0 +170775339681,215,0 +170775339731,215,0 +170775339779,214,0 +170775339826,215,0 +170775339874,215,0 +170775339922,215,0 +170775339970,214,0 +170775340019,213,0 +170775340067,213,0 +170775340115,214,0 +170775340163,214,0 +170775340210,214,0 +170775340258,214,0 +170775340306,214,0 +170775340354,214,0 +170775340402,214,0 +170775340450,214,0 +170775340497,214,0 +170775340547,215,0 +170775340595,215,0 +170775340643,215,0 +170775340690,215,0 +170775340738,214,0 +170775340786,214,0 +170775340834,214,0 +170775340882,214,0 +170775340929,214,0 +170775340977,214,0 +170775341025,214,0 +170775341074,214,0 +170775341124,214,0 +170775341172,214,0 +170775341221,214,0 +170775341269,215,0 +170775341317,215,0 +170775341365,214,0 +170775341413,215,0 +170775341462,215,0 +170775341511,215,0 +170775341561,215,0 +170775341609,214,0 +170775341656,213,0 +170775341704,213,0 +170775341752,214,0 +170775341800,214,0 +170775341848,214,0 +170775341895,214,0 +170775341943,214,0 +170775341991,214,0 +170775342040,214,0 +170775342090,214,0 +170775342138,214,0 +170775342186,214,0 +170775342234,215,0 +170775342281,214,0 +170775342329,214,0 +170775342377,215,0 +170775342425,214,0 +170775342473,213,0 +170775342523,214,0 +170775342570,214,0 +170775342618,214,0 +170775342666,214,0 +170775342714,214,0 +170775342762,214,0 +170775342810,214,0 +170775342858,214,0 +170775342906,214,0 +170775342954,214,0 +170775343002,214,0 +170775343049,215,0 +170775343099,215,0 +170775343147,215,0 +170775343195,214,0 +170775343243,214,0 +170775343292,214,0 +170775343340,214,0 +170775343389,214,0 +170775343437,214,0 +170775343487,214,0 +170775343535,214,0 +170775343584,214,0 +170775343634,214,0 +170775343682,215,0 +170775343729,215,0 +170775343777,215,0 +170775343827,214,0 +170775343875,215,0 +170775343922,215,0 +170775343970,215,0 +170775344018,214,0 +170775344066,214,0 +170775344114,214,0 +170775344162,214,0 +170775344210,214,0 +170775344258,214,0 +170775344306,214,0 +170775344354,214,0 +170775344402,214,0 +170775344449,214,0 +170775344499,215,0 +170775344547,215,0 +170775344596,215,0 +170775344644,215,0 +170775344692,215,0 +170775344740,215,0 +170775344788,215,0 +170775344836,214,0 +170775344885,214,0 +170775344933,214,0 +170775344982,215,0 +170775345032,215,0 +170775345081,215,0 +170775345129,215,0 +170775345179,215,0 +170775345227,215,0 +170775345275,215,0 +170775345322,215,0 +170775345372,215,0 +170775345421,215,0 +170775345471,215,0 +170775345519,215,0 +170775345567,214,0 +170775345614,214,0 +170775345662,214,0 +170775345710,214,0 +170775345758,214,0 +170775345806,215,0 +170775345854,215,0 +170775345901,215,0 +170775345949,215,0 +170775345997,215,0 +170775346045,215,0 +170775346093,215,0 +170775346140,215,0 +170775346188,215,0 +170775346236,215,0 +170775346284,215,0 +170775346333,215,0 +170775346381,215,0 +170775346429,214,0 +170775346477,214,0 +170775346524,214,0 +170775346572,214,0 +170775346620,214,0 +170775346669,214,0 +170775346717,214,0 +170775346765,215,0 +170775346813,215,0 +170775346861,215,0 +170775346908,215,0 +170775346956,215,0 +170775347004,215,0 +170775347052,215,0 +170775347100,215,0 +170775347150,215,0 +170775347198,215,0 +170775347245,214,0 +170775347293,214,0 +170775347341,215,0 +170775347389,214,0 +170775347437,215,0 +170775347487,214,0 +170775347535,214,0 +170775347584,215,0 +170775347634,215,0 +170775347683,215,0 +170775347733,215,0 +170775347781,215,0 +170775347828,215,0 +170775347876,215,0 +170775347924,215,0 +170775347972,215,0 +170775348020,214,0 +170775348070,214,0 +170775348119,214,0 +170775348167,214,0 +170775348217,214,0 +170775348265,215,0 +170775348313,215,0 +170775348360,215,0 +170775348408,215,0 +170775348456,215,0 +170775348504,215,0 +170775348552,215,0 +170775348600,215,0 +170775348648,215,0 +170775348696,215,0 +170775348744,215,0 +170775348791,215,0 +170775348839,214,0 +170775348887,214,0 +170775348937,214,0 +170775348984,214,0 +170775349032,214,0 +170775349080,215,0 +170775349128,214,0 +170775349177,215,0 +170775349225,215,0 +170775349273,215,0 +170775349322,215,0 +170775349370,215,0 +170775349418,215,0 +170775349466,215,0 +170775349514,215,0 +170775349561,215,0 +170775349609,215,0 +170775349657,214,0 +170775349705,214,0 +170775349755,214,0 +170775349803,214,0 +170775349852,214,0 +170775349901,214,0 +170775349951,215,0 +170775350000,215,0 +170775350048,215,0 +170775350098,214,0 +170775350146,215,0 +170775350194,215,0 +170775350242,215,0 +170775350291,215,0 +170775350339,215,0 +170775350387,215,0 +170775350436,215,0 +170775350486,214,0 +170775350534,214,0 +170775350582,214,0 +170775350630,214,0 +170775350679,214,0 +170775350727,214,0 +170775350777,214,0 +170775350826,214,0 +170775350874,214,0 +170775350922,215,0 +170775350972,215,0 +170775351021,215,0 +170775351069,215,0 +170775351119,215,0 +170775351167,215,0 +170775351216,215,0 +170775351264,213,0 +170775351312,214,0 +170775351360,214,0 +170775351407,214,0 +170775351455,214,0 +170775351503,214,0 +170775351551,214,0 +170775351599,214,0 +170775351647,214,0 +170775351696,214,0 +170775351746,215,0 +170775351794,215,0 +170775351843,215,0 +170775351891,215,0 +170775351941,215,0 +170775351990,214,0 +170775352038,215,0 +170775352086,214,0 +170775352134,214,0 +170775352183,214,0 +170775352231,213,0 +170775352279,214,0 +170775352328,214,0 +170775352376,214,0 +170775352424,214,0 +170775352472,214,0 +170775352519,214,0 +170775352569,214,0 +170775352617,214,0 +170775352664,215,0 +170775352712,215,0 +170775352760,215,0 +170775352808,215,0 +170775352856,213,0 +170775352905,213,0 +170775352955,213,0 +170775353003,213,0 +170775353052,214,0 +170775353100,214,0 +170775353148,214,0 +170775353196,214,0 +170775353244,214,0 +170775353292,214,0 +170775353340,214,0 +170775353388,214,0 +170775353437,215,0 +170775353487,214,0 +170775353536,215,0 +170775353586,215,0 +170775353634,214,0 +170775353682,213,0 +170775353731,213,0 +170775353779,214,0 +170775353827,213,0 +170775353877,214,0 +170775353924,214,0 +170775353974,214,0 +170775354022,214,0 +170775354070,214,0 +170775354119,214,0 +170775354167,215,0 +170775354217,214,0 +170775354265,214,0 +170775354313,215,0 +170775354361,215,0 +170775354410,215,0 +170775354458,214,0 +170775354506,214,0 +170775354554,214,0 +170775354601,214,0 +170775354649,214,0 +170775354697,214,0 +170775354745,214,0 +170775354793,214,0 +170775354841,214,0 +170775354889,214,0 +170775354936,214,0 +170775354984,215,0 +170775355034,215,0 +170775355083,215,0 +170775355131,215,0 +170775355179,215,0 +170775355227,215,0 +170775355274,214,0 +170775355322,213,0 +170775355370,214,0 +170775355420,214,0 +170775355468,214,0 +170775355516,214,0 +170775355564,214,0 +170775355613,214,0 +170775355661,214,0 +170775355709,214,0 +170775355757,214,0 +170775355805,215,0 +170775355852,214,0 +170775355900,214,0 +170775355950,215,0 +170775355999,215,0 +170775356047,215,0 +170775356095,215,0 +170775356145,215,0 +170775356192,214,0 +170775356240,213,0 +170775356288,214,0 +170775356336,214,0 +170775356384,214,0 +170775356432,214,0 +170775356482,214,0 +170775356531,214,0 +170775356579,214,0 +170775356629,214,0 +170775356677,214,0 +170775356725,214,0 +170775356773,215,0 +170775356820,215,0 +170775356870,215,0 +170775356918,215,0 +170775356966,215,0 +170775357014,215,0 +170775357063,214,0 +170775357113,214,0 +170775357162,214,0 +170775357212,214,0 +170775357261,214,0 +170775357309,214,0 +170775357357,214,0 +170775357407,214,0 +170775357456,214,0 +170775357506,215,0 +170775357554,215,0 +170775357603,215,0 +170775357651,215,0 +170775357699,215,0 +170775357747,215,0 +170775357797,215,0 +170775357846,215,0 +170775357894,215,0 +170775357942,215,0 +170775357990,215,0 +170775358038,214,0 +170775358086,214,0 +170775358134,214,0 +170775358183,214,0 +170775358233,214,0 +170775358281,215,0 +170775358330,214,0 +170775358378,215,0 +170775358427,215,0 +170775358475,215,0 +170775358523,215,0 +170775358571,215,0 +170775358621,215,0 +170775358669,215,0 +170775358717,215,0 +170775358764,215,0 +170775358814,215,0 +170775358864,215,0 +170775358911,214,0 +170775358959,214,0 +170775359007,214,0 +170775359055,214,0 +170775359105,214,0 +170775359153,214,0 +170775359200,214,0 +170775359248,214,0 +170775359296,214,0 +170775359346,214,0 +170775359395,214,0 +170775359443,214,0 +170775359491,215,0 +170775359539,215,0 +170775359587,215,0 +170775359635,215,0 +170775359683,215,0 +170775359731,215,0 +170775359779,214,0 +170775359827,215,0 +170775359876,214,0 +170775359926,214,0 +170775359974,214,0 +170775360022,214,0 diff --git a/laser_value/0213-02.csv b/laser_value/0213-02.csv new file mode 100644 index 0000000..94524b6 --- /dev/null +++ b/laser_value/0213-02.csv @@ -0,0 +1,7434 @@ +timestamp,laser_value,event +170775360070,214,0 +170775360120,214,0 +170775360169,215,0 +170775360219,215,0 +170775360267,215,0 +170775360315,215,0 +170775360363,215,0 +170775360412,215,0 +170775360460,215,0 +170775360509,215,0 +170775360557,215,0 +170775360605,215,0 +170775360653,215,0 +170775360703,215,0 +170775360752,214,0 +170775360800,214,0 +170775360848,214,0 +170775360896,214,0 +170775360946,214,0 +170775360993,215,0 +170775361041,215,0 +170775361091,215,0 +170775361139,215,0 +170775361187,215,0 +170775361235,215,0 +170775361283,215,0 +170775361332,215,0 +170775361380,215,0 +170775361428,215,0 +170775361476,215,0 +170775361524,215,0 +170775361571,215,0 +170775361619,215,0 +170775361667,214,0 +170775361717,214,0 +170775361765,214,0 +170775361812,214,0 +170775361860,214,0 +170775361910,214,0 +170775361958,215,0 +170775362006,214,0 +170775362053,215,0 +170775362101,215,0 +170775362149,215,0 +170775362197,215,0 +170775362245,215,0 +170775362295,215,0 +170775362344,215,0 +170775362392,215,0 +170775362440,215,0 +170775362489,215,0 +170775362537,215,0 +170775362587,214,0 +170775362635,213,0 +170775362683,213,0 +170775362731,213,0 +170775362779,214,0 +170775362827,214,0 +170775362875,214,0 +170775362922,214,0 +170775362970,214,0 +170775363018,214,0 +170775363066,214,0 +170775363114,214,0 +170775363162,214,0 +170775363210,214,0 +170775363258,215,0 +170775363305,214,0 +170775363353,214,0 +170775363401,215,0 +170775363449,215,0 +170775363497,214,0 +170775363545,214,0 +170775363594,214,0 +170775363642,214,0 +170775363690,214,0 +170775363738,214,0 +170775363787,214,0 +170775363836,214,0 +170775363884,214,0 +170775363932,214,0 +170775363980,214,0 +170775364028,215,0 +170775364076,214,0 +170775364124,215,0 +170775364172,215,0 +170775364220,215,0 +170775364269,215,0 +170775364317,215,0 +170775364365,215,0 +170775364413,214,0 +170775364461,214,0 +170775364511,214,0 +170775364559,214,0 +170775364608,214,0 +170775364656,214,0 +170775364704,214,0 +170775364753,214,0 +170775364801,214,0 +170775364849,214,0 +170775364897,214,0 +170775364947,215,0 +170775364994,215,0 +170775365042,215,0 +170775365092,215,0 +170775365140,215,0 +170775365188,215,0 +170775365236,214,0 +170775365285,214,0 +170775365335,214,0 +170775365382,214,0 +170775365432,214,0 +170775365481,214,0 +170775365531,214,0 +170775365579,214,0 +170775365627,214,0 +170775365675,214,0 +170775365723,214,0 +170775365770,214,0 +170775365818,215,0 +170775365866,215,0 +170775365914,215,0 +170775365962,215,0 +170775366011,215,0 +170775366059,215,0 +170775366109,215,0 +170775366158,215,0 +170775366206,215,0 +170775366254,214,0 +170775366302,214,0 +170775366351,214,0 +170775366401,214,0 +170775366449,214,0 +170775366498,214,0 +170775366546,214,0 +170775366596,214,0 +170775366644,214,0 +170775366691,215,0 +170775366741,215,0 +170775366789,215,0 +170775366838,215,0 +170775366888,215,0 +170775366935,215,0 +170775366985,215,0 +170775367033,214,0 +170775367081,215,0 +170775367130,214,0 +170775367180,214,0 +170775367229,214,0 +170775367277,214,0 +170775367325,214,0 +170775367373,214,0 +170775367421,214,0 +170775367469,214,0 +170775367517,214,0 +170775367565,214,0 +170775367614,215,0 +170775367662,215,0 +170775367712,215,0 +170775367760,215,0 +170775367809,215,0 +170775367859,215,0 +170775367906,215,0 +170775367956,215,0 +170775368004,215,0 +170775368052,214,0 +170775368100,214,0 +170775368148,214,0 +170775368195,214,0 +170775368243,214,0 +170775368291,214,0 +170775368341,214,0 +170775368389,214,0 +170775368438,214,0 +170775368488,215,0 +170775368536,215,0 +170775368584,215,0 +170775368633,215,0 +170775368681,215,0 +170775368729,215,0 +170775368778,215,0 +170775368828,215,0 +170775368877,214,0 +170775368925,214,0 +170775368973,214,0 +170775369021,214,0 +170775369071,214,0 +170775369119,214,0 +170775369167,214,0 +170775369214,214,0 +170775369264,214,0 +170775369312,214,0 +170775369360,214,0 +170775369408,214,0 +170775369456,215,0 +170775369504,215,0 +170775369551,215,0 +170775369601,215,0 +170775369650,215,0 +170775369698,215,0 +170775369746,215,0 +170775369796,214,0 +170775369844,214,0 +170775369893,213,0 +170775369941,214,0 +170775369989,214,0 +170775370039,214,0 +170775370086,214,0 +170775370134,214,0 +170775370184,214,0 +170775370232,214,0 +170775370281,214,0 +170775370331,214,0 +170775370380,214,0 +170775370428,215,0 +170775370476,214,0 +170775370524,215,0 +170775370574,214,0 +170775370623,215,0 +170775370673,215,0 +170775370721,214,0 +170775370769,214,0 +170775370817,213,0 +170775370866,213,0 +170775370914,213,0 +170775370962,214,0 +170775371011,214,0 +170775371059,214,0 +170775371107,214,0 +170775371155,214,0 +170775371203,214,0 +170775371252,214,0 +170775371300,214,0 +170775371348,215,0 +170775371396,215,0 +170775371446,215,0 +170775371495,215,0 +170775371543,214,0 +170775371591,215,0 +170775371639,214,0 +170775371687,214,0 +170775371735,213,0 +170775371783,214,0 +170775371832,213,0 +170775371882,214,0 +170775371932,214,0 +170775371981,214,0 +170775372029,214,0 +170775372078,214,0 +170775372126,214,0 +170775372176,214,0 +170775372224,214,0 +170775372273,214,0 +170775372323,214,0 +170775372371,214,0 +170775372420,215,0 +170775372468,215,0 +170775372518,214,0 +170775372566,214,0 +170775372614,213,0 +170775372663,213,0 +170775372713,214,0 +170775372761,213,0 +170775372809,214,0 +170775372857,214,0 +170775372905,214,0 +170775372953,214,0 +170775373002,214,0 +170775373051,214,0 +170775373101,214,0 +170775373150,214,0 +170775373198,214,0 +170775373246,214,0 +170775373294,215,0 +170775373344,214,0 +170775373393,215,0 +170775373441,215,0 +170775373489,214,0 +170775373537,213,0 +170775373585,213,0 +170775373634,213,0 +170775373682,214,0 +170775373730,214,0 +170775373778,213,0 +170775373828,213,0 +170775373877,214,0 +170775373925,214,0 +170775373974,214,0 +170775374022,214,0 +170775374072,214,0 +170775374120,214,0 +170775374168,214,0 +170775374216,214,0 +170775374264,214,0 +170775374312,215,0 +170775374361,215,0 +170775374411,213,0 +170775374459,213,0 +170775374508,213,0 +170775374556,213,0 +170775374606,213,0 +170775374655,213,0 +170775374705,214,0 +170775374752,214,0 +170775374802,214,0 +170775374850,214,0 +170775374899,214,0 +170775374947,214,0 +170775374995,214,0 +170775375045,214,0 +170775375093,214,0 +170775375141,214,0 +170775375189,214,0 +170775375237,214,0 +170775375286,214,0 +170775375334,214,0 +170775375384,213,0 +170775375433,213,0 +170775375481,213,0 +170775375529,213,0 +170775375578,213,0 +170775375626,214,0 +170775375674,214,0 +170775375724,214,0 +170775375772,214,0 +170775375820,214,0 +170775375868,214,0 +170775375915,214,0 +170775375965,214,0 +170775376013,214,0 +170775376061,214,0 +170775376110,214,0 +170775376158,215,0 +170775376208,214,0 +170775376255,214,0 +170775376303,213,0 +170775376353,214,0 +170775376402,214,0 +170775376450,214,0 +170775376500,214,0 +170775376549,214,0 +170775376597,214,0 +170775376647,214,0 +170775376696,214,0 +170775376745,215,0 +170775376793,214,0 +170775376841,214,0 +170775376889,215,0 +170775376937,215,0 +170775376985,214,0 +170775377033,214,0 +170775377081,214,0 +170775377130,214,0 +170775377178,214,0 +170775377226,214,0 +170775377274,214,0 +170775377322,214,0 +170775377370,215,0 +170775377418,214,0 +170775377466,214,0 +170775377513,214,0 +170775377561,214,0 +170775377609,214,0 +170775377657,215,0 +170775377705,214,0 +170775377753,215,0 +170775377802,215,0 +170775377850,215,0 +170775377898,215,0 +170775377946,215,0 +170775377993,215,0 +170775378041,214,0 +170775378089,214,0 +170775378137,214,0 +170775378185,214,0 +170775378233,214,0 +170775378282,214,0 +170775378330,214,0 +170775378379,215,0 +170775378429,215,0 +170775378476,215,0 +170775378526,215,0 +170775378574,215,0 +170775378622,215,0 +170775378669,215,0 +170775378717,215,0 +170775378767,215,0 +170775378816,215,0 +170775378865,215,0 +170775378913,215,0 +170775378961,214,0 +170775379009,214,0 +170775379057,214,0 +170775379105,215,0 +170775379154,215,0 +170775379202,214,0 +170775379251,215,0 +170775379299,215,0 +170775379347,215,0 +170775379397,215,0 +170775379445,215,0 +170775379492,215,0 +170775379540,215,0 +170775379588,215,0 +170775379638,215,0 +170775379686,215,0 +170775379734,215,0 +170775379782,214,0 +170775379831,215,0 +170775379881,214,0 +170775379929,214,0 +170775379978,214,0 +170775380026,214,0 +170775380076,215,0 +170775380124,214,0 +170775380172,215,0 +170775380220,215,0 +170775380267,215,0 +170775380317,215,0 +170775380365,215,0 +170775380413,215,0 +170775380463,215,0 +170775380512,215,0 +170775380560,215,0 +170775380608,215,0 +170775380656,215,0 +170775380705,215,0 +170775380753,214,0 +170775380801,214,0 +170775380849,214,0 +170775380897,214,0 +170775380945,214,0 +170775380993,214,0 +170775381042,214,0 +170775381090,214,0 +170775381138,215,0 +170775381187,214,0 +170775381235,215,0 +170775381283,215,0 +170775381333,215,0 +170775381381,215,0 +170775381429,215,0 +170775381477,215,0 +170775381525,215,0 +170775381572,215,0 +170775381620,215,0 +170775381668,214,0 +170775381716,213,0 +170775381764,213,0 +170775381812,214,0 +170775381860,213,0 +170775381908,213,0 +170775381956,214,0 +170775382004,214,0 +170775382053,214,0 +170775382103,214,0 +170775382152,214,0 +170775382202,214,0 +170775382250,214,0 +170775382297,215,0 +170775382345,215,0 +170775382393,215,0 +170775382441,215,0 +170775382489,215,0 +170775382537,215,0 +170775382585,214,0 +170775382633,213,0 +170775382682,213,0 +170775382732,213,0 +170775382781,213,0 +170775382831,214,0 +170775382880,214,0 +170775382928,214,0 +170775382976,214,0 +170775383026,214,0 +170775383075,214,0 +170775383123,214,0 +170775383171,214,0 +170775383219,214,0 +170775383267,214,0 +170775383316,214,0 +170775383366,215,0 +170775383414,215,0 +170775383463,214,0 +170775383513,213,0 +170775383561,214,0 +170775383609,214,0 +170775383658,214,0 +170775383708,214,0 +170775383756,214,0 +170775383804,214,0 +170775383853,214,0 +170775383901,214,0 +170775383951,214,0 +170775383999,214,0 +170775384046,215,0 +170775384094,215,0 +170775384144,215,0 +170775384192,215,0 +170775384240,215,0 +170775384287,215,0 +170775384337,215,0 +170775384385,214,0 +170775384433,213,0 +170775384482,213,0 +170775384530,213,0 +170775384578,214,0 +170775384626,214,0 +170775384674,214,0 +170775384722,214,0 +170775384770,214,0 +170775384819,214,0 +170775384867,214,0 +170775384917,214,0 +170775384966,215,0 +170775385016,214,0 +170775385064,215,0 +170775385113,215,0 +170775385161,215,0 +170775385209,215,0 +170775385258,215,0 +170775385306,214,0 +170775385356,213,0 +170775385404,213,0 +170775385453,213,0 +170775385501,214,0 +170775385549,214,0 +170775385597,214,0 +170775385647,214,0 +170775385695,214,0 +170775385744,214,0 +170775385792,214,0 +170775385840,214,0 +170775385888,214,0 +170775385937,215,0 +170775385985,215,0 +170775386035,215,0 +170775386083,215,0 +170775386131,214,0 +170775386178,215,0 +170775386226,214,0 +170775386274,213,0 +170775386322,214,0 +170775386370,213,0 +170775386418,214,0 +170775386467,214,0 +170775386517,214,0 +170775386565,214,0 +170775386614,214,0 +170775386664,214,0 +170775386712,214,0 +170775386760,214,0 +170775386808,214,0 +170775386857,215,0 +170775386905,214,0 +170775386955,215,0 +170775387004,215,0 +170775387053,214,0 +170775387101,214,0 +170775387149,213,0 +170775387197,213,0 +170775387247,213,0 +170775387296,213,0 +170775387344,214,0 +170775387392,214,0 +170775387440,214,0 +170775387488,214,0 +170775387536,214,0 +170775387584,214,0 +170775387632,214,0 +170775387680,214,0 +170775387728,214,0 +170775387776,214,0 +170775387824,215,0 +170775387872,214,0 +170775387920,215,0 +170775387969,214,0 +170775388019,213,0 +170775388066,213,0 +170775388114,213,0 +170775388162,213,0 +170775388212,213,0 +170775388260,214,0 +170775388308,214,0 +170775388356,214,0 +170775388403,214,0 +170775388453,214,0 +170775388501,214,0 +170775388549,214,0 +170775388597,214,0 +170775388646,215,0 +170775388694,215,0 +170775388743,215,0 +170775388793,215,0 +170775388841,215,0 +170775388889,214,0 +170775388938,213,0 +170775388986,213,0 +170775389036,213,0 +170775389085,213,0 +170775389133,213,0 +170775389181,213,0 +170775389229,213,0 +170775389278,213,0 +170775389328,214,0 +170775389378,214,0 +170775389427,214,0 +170775389476,214,0 +170775389524,214,0 +170775389574,214,0 +170775389622,214,0 +170775389671,214,0 +170775389719,214,0 +170775389767,214,0 +170775389817,214,0 +170775389866,213,0 +170775389914,213,0 +170775389964,213,0 +170775390013,213,0 +170775390061,213,0 +170775390109,213,0 +170775390157,213,0 +170775390205,214,0 +170775390253,213,0 +170775390301,214,0 +170775390349,214,0 +170775390398,214,0 +170775390448,214,0 +170775390497,214,0 +170775390547,214,0 +170775390595,214,0 +170775390643,214,0 +170775390692,214,0 +170775390742,213,0 +170775390790,213,0 +170775390839,213,0 +170775390887,213,0 +170775390937,213,0 +170775390985,213,0 +170775391032,213,0 +170775391082,214,0 +170775391130,214,0 +170775391179,214,0 +170775391229,214,0 +170775391278,214,0 +170775391326,214,0 +170775391374,214,0 +170775391422,214,0 +170775391470,215,0 +170775391518,215,0 +170775391566,215,0 +170775391614,214,0 +170775391662,213,0 +170775391710,213,0 +170775391759,213,0 +170775391809,214,0 +170775391857,213,0 +170775391905,214,0 +170775391953,214,0 +170775392001,214,0 +170775392050,214,0 +170775392098,214,0 +170775392148,214,0 +170775392195,214,0 +170775392243,214,0 +170775392291,214,0 +170775392341,214,0 +170775392389,215,0 +170775392437,214,0 +170775392485,214,0 +170775392532,214,0 +170775392580,213,0 +170775392630,213,0 +170775392679,213,0 +170775392729,213,0 +170775392778,214,0 +170775392826,214,0 +170775392874,214,0 +170775392922,214,0 +170775392970,214,0 +170775393018,214,0 +170775393066,214,0 +170775393115,214,0 +170775393163,215,0 +170775393211,214,0 +170775393261,215,0 +170775393310,215,0 +170775393358,214,0 +170775393406,214,0 +170775393454,213,0 +170775393502,213,0 +170775393550,213,0 +170775393597,213,0 +170775393645,213,0 +170775393693,214,0 +170775393741,214,0 +170775393789,214,0 +170775393837,214,0 +170775393885,214,0 +170775393933,214,0 +170775393980,214,0 +170775394028,214,0 +170775394076,214,0 +170775394124,214,0 +170775394172,214,0 +170775394222,215,0 +170775394269,215,0 +170775394319,214,0 +170775394367,214,0 +170775394416,214,0 +170775394464,214,0 +170775394514,213,0 +170775394562,214,0 +170775394609,214,0 +170775394659,214,0 +170775394707,214,0 +170775394755,214,0 +170775394804,214,0 +170775394854,215,0 +170775394902,215,0 +170775394950,215,0 +170775394999,215,0 +170775395047,215,0 +170775395096,215,0 +170775395146,215,0 +170775395195,215,0 +170775395245,214,0 +170775395293,214,0 +170775395341,214,0 +170775395389,214,0 +170775395438,214,0 +170775395486,214,0 +170775395534,214,0 +170775395582,214,0 +170775395629,214,0 +170775395677,214,0 +170775395725,214,0 +170775395773,214,0 +170775395821,215,0 +170775395870,215,0 +170775395918,215,0 +170775395968,215,0 +170775396016,215,0 +170775396065,215,0 +170775396113,215,0 +170775396161,214,0 +170775396209,214,0 +170775396257,214,0 +170775396305,214,0 +170775396353,214,0 +170775396400,214,0 +170775396448,214,0 +170775396496,214,0 +170775396544,214,0 +170775396592,214,0 +170775396640,215,0 +170775396688,215,0 +170775396738,215,0 +170775396787,215,0 +170775396835,215,0 +170775396883,215,0 +170775396933,215,0 +170775396981,215,0 +170775397030,215,0 +170775397080,214,0 +170775397127,213,0 +170775397177,213,0 +170775397225,213,0 +170775397274,214,0 +170775397322,214,0 +170775397370,214,0 +170775397418,214,0 +170775397466,214,0 +170775397516,215,0 +170775397565,214,0 +170775397615,215,0 +170775397664,215,0 +170775397712,215,0 +170775397760,215,0 +170775397808,215,0 +170775397856,215,0 +170775397904,215,0 +170775397952,214,0 +170775398000,213,0 +170775398048,213,0 +170775398095,213,0 +170775398145,213,0 +170775398193,213,0 +170775398241,214,0 +170775398290,214,0 +170775398340,214,0 +170775398389,214,0 +170775398437,214,0 +170775398487,214,0 +170775398534,214,0 +170775398584,215,0 +170775398632,215,0 +170775398682,215,0 +170775398729,215,0 +170775398779,215,0 +170775398828,214,0 +170775398876,214,0 +170775398924,213,0 +170775398974,214,0 +170775399021,214,0 +170775399069,214,0 +170775399119,214,0 +170775399167,214,0 +170775399215,214,0 +170775399263,214,0 +170775399312,214,0 +170775399360,214,0 +170775399409,215,0 +170775399457,215,0 +170775399505,215,0 +170775399555,215,0 +170775399604,215,0 +170775399654,215,0 +170775399703,215,0 +170775399751,215,0 +170775399800,214,0 +170775399848,213,0 +170775399896,213,0 +170775399944,213,0 +170775399992,214,0 +170775400040,214,0 +170775400088,214,0 +170775400136,214,0 +170775400184,214,0 +170775400232,214,0 +170775400281,214,0 +170775400329,214,0 +170775400377,214,0 +170775400425,214,0 +170775400474,214,0 +170775400524,214,0 +170775400573,215,0 +170775400621,214,0 +170775400669,215,0 +170775400717,213,0 +170775400765,213,0 +170775400813,213,0 +170775400862,213,0 +170775400912,213,0 +170775400961,213,0 +170775401009,213,0 +170775401057,213,0 +170775401107,214,0 +170775401155,214,0 +170775401203,214,0 +170775401251,214,0 +170775401299,214,0 +170775401347,214,0 +170775401396,215,0 +170775401444,215,0 +170775401492,214,0 +170775401540,214,0 +170775401587,214,0 +170775401635,213,0 +170775401683,213,0 +170775401731,213,0 +170775401779,213,0 +170775401826,213,0 +170775401876,213,0 +170775401924,213,0 +170775401972,213,0 +170775402021,214,0 +170775402069,214,0 +170775402119,214,0 +170775402168,214,0 +170775402217,214,0 +170775402267,214,0 +170775402315,214,0 +170775402363,214,0 +170775402412,214,0 +170775402460,214,0 +170775402508,214,0 +170775402556,214,0 +170775402604,215,0 +170775402652,215,0 +170775402701,215,0 +170775402749,215,0 +170775402799,215,0 +170775402847,215,0 +170775402894,215,0 +170775402942,214,0 +170775402990,214,0 +170775403040,214,0 +170775403088,213,0 +170775403135,214,0 +170775403183,214,0 +170775403233,214,0 +170775403281,214,0 +170775403329,214,0 +170775403377,214,0 +170775403425,214,0 +170775403473,215,0 +170775403520,215,0 +170775403568,215,0 +170775403618,215,0 +170775403666,215,0 +170775403715,215,0 +170775403765,215,0 +170775403813,215,0 +170775403861,214,0 +170775403909,214,0 +170775403957,214,0 +170775404005,214,0 +170775404054,214,0 +170775404104,214,0 +170775404153,214,0 +170775404201,214,0 +170775404249,214,0 +170775404297,214,0 +170775404345,215,0 +170775404394,215,0 +170775404442,215,0 +170775404490,215,0 +170775404538,215,0 +170775404588,215,0 +170775404636,215,0 +170775404685,215,0 +170775404735,214,0 +170775404783,214,0 +170775404831,214,0 +170775404878,214,0 +170775404928,214,0 +170775404976,214,0 +170775405025,214,0 +170775405075,214,0 +170775405124,214,0 +170775405174,214,0 +170775405223,214,0 +170775405271,215,0 +170775405319,215,0 +170775405369,215,0 +170775405417,215,0 +170775405466,215,0 +170775405516,215,0 +170775405564,215,0 +170775405611,215,0 +170775405659,214,0 +170775405709,213,0 +170775405759,214,0 +170775405806,214,0 +170775405856,214,0 +170775405904,214,0 +170775405952,214,0 +170775406000,214,0 +170775406048,214,0 +170775406097,214,0 +170775406145,215,0 +170775406193,214,0 +170775406243,214,0 +170775406292,214,0 +170775406342,214,0 +170775406391,215,0 +170775406439,215,0 +170775406487,214,0 +170775406536,214,0 +170775406584,214,0 +170775406632,214,0 +170775406682,214,0 +170775406731,214,0 +170775406779,214,0 +170775406829,214,0 +170775406877,214,0 +170775406926,214,0 +170775406974,214,0 +170775407024,214,0 +170775407072,214,0 +170775407121,215,0 +170775407171,215,0 +170775407219,215,0 +170775407268,215,0 +170775407316,215,0 +170775407365,215,0 +170775407413,215,0 +170775407461,214,0 +170775407511,214,0 +170775407559,213,0 +170775407608,214,0 +170775407656,214,0 +170775407706,214,0 +170775407754,214,0 +170775407803,214,0 +170775407851,214,0 +170775407899,214,0 +170775407948,214,0 +170775407996,215,0 +170775408046,214,0 +170775408094,215,0 +170775408143,215,0 +170775408191,215,0 +170775408240,215,0 +170775408288,215,0 +170775408336,215,0 +170775408384,214,0 +170775408433,213,0 +170775408481,213,0 +170775408529,213,0 +170775408577,214,0 +170775408625,214,0 +170775408674,214,0 +170775408722,214,0 +170775408770,214,0 +170775408818,214,0 +170775408866,214,0 +170775408913,214,0 +170775408961,214,0 +170775409011,214,0 +170775409059,215,0 +170775409107,214,0 +170775409156,215,0 +170775409206,215,0 +170775409255,215,0 +170775409303,214,0 +170775409353,213,0 +170775409401,213,0 +170775409450,213,0 +170775409498,213,0 +170775409546,214,0 +170775409596,214,0 +170775409644,214,0 +170775409693,214,0 +170775409741,214,0 +170775409791,214,0 +170775409838,214,0 +170775409886,214,0 +170775409934,214,0 +170775409984,215,0 +170775410033,214,0 +170775410083,215,0 +170775410132,215,0 +170775410180,214,0 +170775410228,213,0 +170775410276,213,0 +170775410324,213,0 +170775410374,214,0 +170775410423,214,0 +170775410473,214,0 +170775410521,214,0 +170775410570,214,0 +170775410618,214,0 +170775410666,214,0 +170775410714,214,0 +170775410764,214,0 +170775410812,215,0 +170775410861,215,0 +170775410911,215,0 +170775410959,215,0 +170775411007,215,0 +170775411056,214,0 +170775411104,213,0 +170775411153,213,0 +170775411201,213,0 +170775411249,213,0 +170775411298,213,0 +170775411346,214,0 +170775411394,214,0 +170775411442,214,0 +170775411490,214,0 +170775411538,214,0 +170775411585,214,0 +170775411633,214,0 +170775411683,214,0 +170775411732,214,0 +170775411780,214,0 +170775411828,214,0 +170775411876,214,0 +170775411924,215,0 +170775411971,214,0 +170775412019,213,0 +170775412067,213,0 +170775412115,213,0 +170775412163,214,0 +170775412211,214,0 +170775412258,214,0 +170775412306,214,0 +170775412354,214,0 +170775412402,214,0 +170775412450,214,0 +170775412498,214,0 +170775412546,214,0 +170775412595,214,0 +170775412643,215,0 +170775412691,215,0 +170775412739,214,0 +170775412787,215,0 +170775412834,214,0 +170775412882,213,0 +170775412930,213,0 +170775412978,213,0 +170775413027,213,0 +170775413075,213,0 +170775413125,214,0 +170775413172,214,0 +170775413220,214,0 +170775413268,214,0 +170775413316,214,0 +170775413365,215,0 +170775413413,214,0 +170775413461,215,0 +170775413511,215,0 +170775413559,215,0 +170775413608,215,0 +170775413656,214,0 +170775413705,215,0 +170775413753,214,0 +170775413801,214,0 +170775413849,214,0 +170775413897,214,0 +170775413946,214,0 +170775413994,214,0 +170775414042,214,0 +170775414090,214,0 +170775414138,214,0 +170775414186,214,0 +170775414235,215,0 +170775414283,215,0 +170775414332,214,0 +170775414382,215,0 +170775414431,215,0 +170775414479,215,0 +170775414527,215,0 +170775414577,214,0 +170775414626,214,0 +170775414674,214,0 +170775414722,214,0 +170775414770,213,0 +170775414819,214,0 +170775414867,214,0 +170775414915,214,0 +170775414963,214,0 +170775415011,214,0 +170775415059,214,0 +170775415108,215,0 +170775415156,215,0 +170775415204,215,0 +170775415253,215,0 +170775415301,215,0 +170775415349,215,0 +170775415397,215,0 +170775415447,215,0 +170775415494,215,0 +170775415544,213,0 +170775415593,213,0 +170775415641,213,0 +170775415689,213,0 +170775415737,214,0 +170775415785,214,0 +170775415833,214,0 +170775415883,214,0 +170775415932,214,0 +170775415982,214,0 +170775416029,215,0 +170775416077,215,0 +170775416125,214,0 +170775416173,215,0 +170775416221,214,0 +170775416270,215,0 +170775416318,215,0 +170775416366,215,0 +170775416414,214,0 +170775416463,213,0 +170775416511,213,0 +170775416561,213,0 +170775416608,214,0 +170775416656,214,0 +170775416704,214,0 +170775416752,214,0 +170775416800,214,0 +170775416848,214,0 +170775416897,214,0 +170775416947,215,0 +170775416995,214,0 +170775417044,215,0 +170775417092,215,0 +170775417142,215,0 +170775417190,215,0 +170775417238,214,0 +170775417286,214,0 +170775417335,213,0 +170775417385,213,0 +170775417433,213,0 +170775417480,213,0 +170775417528,213,0 +170775417576,214,0 +170775417624,214,0 +170775417672,214,0 +170775417720,213,0 +170775417767,214,0 +170775417815,214,0 +170775417863,214,0 +170775417913,214,0 +170775417960,214,0 +170775418008,215,0 +170775418056,214,0 +170775418104,214,0 +170775418154,215,0 +170775418202,213,0 +170775418251,213,0 +170775418299,213,0 +170775418348,213,0 +170775418396,213,0 +170775418444,213,0 +170775418492,214,0 +170775418540,214,0 +170775418588,214,0 +170775418635,214,0 +170775418683,214,0 +170775418731,214,0 +170775418779,215,0 +170775418827,214,0 +170775418876,215,0 +170775418926,215,0 +170775418974,215,0 +170775419023,215,0 +170775419073,214,0 +170775419122,213,0 +170775419170,213,0 +170775419218,213,0 +170775419268,213,0 +170775419316,214,0 +170775419364,214,0 +170775419413,214,0 +170775419461,214,0 +170775419510,214,0 +170775419558,214,0 +170775419608,214,0 +170775419656,214,0 +170775419705,215,0 +170775419755,215,0 +170775419803,215,0 +170775419851,215,0 +170775419900,215,0 +170775419948,214,0 +170775419996,213,0 +170775420044,213,0 +170775420093,214,0 +170775420141,214,0 +170775420189,214,0 +170775420237,214,0 +170775420285,214,0 +170775420333,214,0 +170775420383,214,0 +170775420432,214,0 +170775420480,214,0 +170775420528,214,0 +170775420576,215,0 +170775420624,215,0 +170775420673,215,0 +170775420723,215,0 +170775420771,215,0 +170775420820,215,0 +170775420870,214,0 +170775420918,214,0 +170775420967,214,0 +170775421017,214,0 +170775421065,214,0 +170775421113,214,0 +170775421160,214,0 +170775421208,214,0 +170775421256,214,0 +170775421304,214,0 +170775421354,214,0 +170775421402,214,0 +170775421450,215,0 +170775421499,215,0 +170775421547,215,0 +170775421597,215,0 +170775421646,215,0 +170775421696,215,0 +170775421743,214,0 +170775421793,214,0 +170775421841,214,0 +170775421889,214,0 +170775421938,214,0 +170775421986,214,0 +170775422034,214,0 +170775422082,214,0 +170775422131,214,0 +170775422179,214,0 +170775422227,214,0 +170775422277,215,0 +170775422326,215,0 +170775422374,215,0 +170775422422,215,0 +170775422470,215,0 +170775422519,215,0 +170775422567,215,0 +170775422615,214,0 +170775422663,214,0 +170775422713,214,0 +170775422761,214,0 +170775422809,214,0 +170775422857,214,0 +170775422906,214,0 +170775422956,214,0 +170775423005,214,0 +170775423053,214,0 +170775423103,214,0 +170775423150,215,0 +170775423200,215,0 +170775423248,215,0 +170775423296,215,0 +170775423345,215,0 +170775423393,215,0 +170775423441,215,0 +170775423489,215,0 +170775423539,214,0 +170775423588,214,0 +170775423638,214,0 +170775423687,214,0 +170775423735,214,0 +170775423783,214,0 +170775423831,214,0 +170775423879,214,0 +170775423929,214,0 +170775423978,214,0 +170775424026,214,0 +170775424076,215,0 +170775424123,215,0 +170775424171,215,0 +170775424221,215,0 +170775424270,214,0 +170775424318,214,0 +170775424366,215,0 +170775424414,213,0 +170775424462,213,0 +170775424510,214,0 +170775424558,214,0 +170775424608,214,0 +170775424655,214,0 +170775424703,214,0 +170775424751,214,0 +170775424799,214,0 +170775424847,214,0 +170775424895,214,0 +170775424945,215,0 +170775424994,215,0 +170775425042,215,0 +170775425090,215,0 +170775425139,215,0 +170775425187,215,0 +170775425235,215,0 +170775425283,214,0 +170775425331,213,0 +170775425379,214,0 +170775425428,213,0 +170775425476,214,0 +170775425524,214,0 +170775425572,214,0 +170775425621,214,0 +170775425671,214,0 +170775425719,214,0 +170775425767,214,0 +170775425814,214,0 +170775425862,215,0 +170775425910,214,0 +170775425958,215,0 +170775426006,214,0 +170775426054,215,0 +170775426104,215,0 +170775426151,214,0 +170775426199,213,0 +170775426247,213,0 +170775426296,213,0 +170775426344,214,0 +170775426392,214,0 +170775426440,214,0 +170775426489,214,0 +170775426539,214,0 +170775426589,214,0 +170775426636,214,0 +170775426686,214,0 +170775426734,214,0 +170775426783,215,0 +170775426831,215,0 +170775426879,214,0 +170775426929,215,0 +170775426977,214,0 +170775427025,215,0 +170775427072,214,0 +170775427120,213,0 +170775427170,214,0 +170775427219,214,0 +170775427267,214,0 +170775427315,214,0 +170775427363,214,0 +170775427411,214,0 +170775427459,214,0 +170775427507,214,0 +170775427554,214,0 +170775427604,214,0 +170775427653,215,0 +170775427701,215,0 +170775427749,215,0 +170775427797,215,0 +170775427847,215,0 +170775427895,214,0 +170775427942,214,0 +170775427992,213,0 +170775428041,213,0 +170775428089,214,0 +170775428139,213,0 +170775428187,214,0 +170775428236,214,0 +170775428284,214,0 +170775428334,214,0 +170775428382,214,0 +170775428430,214,0 +170775428477,214,0 +170775428527,214,0 +170775428575,214,0 +170775428622,214,0 +170775428670,214,0 +170775428718,215,0 +170775428766,215,0 +170775428814,214,0 +170775428862,213,0 +170775428910,213,0 +170775428958,213,0 +170775429006,213,0 +170775429055,213,0 +170775429103,214,0 +170775429151,214,0 +170775429199,213,0 +170775429249,214,0 +170775429296,214,0 +170775429344,214,0 +170775429394,214,0 +170775429443,214,0 +170775429491,214,0 +170775429539,215,0 +170775429587,215,0 +170775429636,215,0 +170775429684,214,0 +170775429734,213,0 +170775429782,213,0 +170775429830,213,0 +170775429878,214,0 +170775429926,214,0 +170775429974,214,0 +170775430023,214,0 +170775430073,214,0 +170775430122,214,0 +170775430170,214,0 +170775430218,214,0 +170775430266,214,0 +170775430314,214,0 +170775430364,215,0 +170775430412,215,0 +170775430460,215,0 +170775430508,214,0 +170775430557,214,0 +170775430605,213,0 +170775430653,214,0 +170775430703,214,0 +170775430750,214,0 +170775430800,214,0 +170775430848,214,0 +170775430896,214,0 +170775430945,214,0 +170775430995,214,0 +170775431044,214,0 +170775431093,214,0 +170775431143,214,0 +170775431192,215,0 +170775431240,215,0 +170775431290,215,0 +170775431338,214,0 +170775431386,215,0 +170775431435,215,0 +170775431483,214,0 +170775431531,214,0 +170775431581,214,0 +170775431628,214,0 +170775431676,214,0 +170775431724,214,0 +170775431774,214,0 +170775431822,214,0 +170775431871,215,0 +170775431921,214,0 +170775431969,215,0 +170775432017,215,0 +170775432064,215,0 +170775432114,215,0 +170775432162,215,0 +170775432210,215,0 +170775432258,215,0 +170775432306,215,0 +170775432354,214,0 +170775432402,213,0 +170775432451,214,0 +170775432499,214,0 +170775432547,214,0 +170775432595,214,0 +170775432643,214,0 +170775432691,214,0 +170775432739,214,0 +170775432788,214,0 +170775432838,215,0 +170775432887,215,0 +170775432935,215,0 +170775432983,215,0 +170775433033,214,0 +170775433081,215,0 +170775433129,215,0 +170775433178,215,0 +170775433226,215,0 +170775433274,214,0 +170775433322,213,0 +170775433370,213,0 +170775433418,214,0 +170775433466,214,0 +170775433515,214,0 +170775433563,214,0 +170775433611,214,0 +170775433659,214,0 +170775433707,214,0 +170775433755,214,0 +170775433804,214,0 +170775433852,215,0 +170775433902,214,0 +170775433949,214,0 +170775433997,215,0 +170775434045,215,0 +170775434093,214,0 +170775434141,214,0 +170775434189,213,0 +170775434237,213,0 +170775434284,213,0 +170775434332,213,0 +170775434380,214,0 +170775434428,214,0 +170775434476,214,0 +170775434524,214,0 +170775434574,214,0 +170775434623,214,0 +170775434673,215,0 +170775434722,214,0 +170775434770,215,0 +170775434818,214,0 +170775434866,214,0 +170775434914,215,0 +170775434962,215,0 +170775435010,214,0 +170775435059,213,0 +170775435107,213,0 +170775435157,213,0 +170775435205,213,0 +170775435252,214,0 +170775435300,214,0 +170775435350,214,0 +170775435398,214,0 +170775435447,214,0 +170775435495,214,0 +170775435545,214,0 +170775435594,214,0 +170775435644,215,0 +170775435692,215,0 +170775435741,215,0 +170775435791,215,0 +170775435840,215,0 +170775435888,214,0 +170775435936,214,0 +170775435984,213,0 +170775436034,214,0 +170775436082,214,0 +170775436131,214,0 +170775436181,214,0 +170775436228,214,0 +170775436276,214,0 +170775436326,214,0 +170775436374,214,0 +170775436423,214,0 +170775436471,215,0 +170775436519,214,0 +170775436568,215,0 +170775436616,215,0 +170775436666,215,0 +170775436715,215,0 +170775436765,215,0 +170775436815,214,0 +170775436862,213,0 +170775436912,213,0 +170775436962,214,0 +170775437011,214,0 +170775437061,214,0 +170775437110,214,0 +170775437160,214,0 +170775437208,214,0 +170775437255,214,0 +170775437305,214,0 +170775437354,214,0 +170775437404,215,0 +170775437452,214,0 +170775437500,215,0 +170775437548,215,0 +170775437596,215,0 +170775437644,215,0 +170775437693,214,0 +170775437741,214,0 +170775437790,214,0 +170775437838,214,0 +170775437888,214,0 +170775437937,214,0 +170775437985,214,0 +170775438033,214,0 +170775438081,214,0 +170775438129,214,0 +170775438179,215,0 +170775438228,215,0 +170775438277,215,0 +170775438325,215,0 +170775438375,215,0 +170775438423,214,0 +170775438471,215,0 +170775438520,214,0 +170775438568,214,0 +170775438617,214,0 +170775438665,214,0 +170775438713,214,0 +170775438761,214,0 +170775438809,214,0 +170775438857,214,0 +170775438906,214,0 +170775438954,214,0 +170775439002,215,0 +170775439050,215,0 +170775439100,215,0 +170775439147,215,0 +170775439195,215,0 +170775439245,215,0 +170775439293,215,0 +170775439342,215,0 +170775439390,214,0 +170775439438,215,0 +170775439488,214,0 +170775439537,214,0 +170775439587,213,0 +170775439635,214,0 +170775439683,214,0 +170775439731,214,0 +170775439778,214,0 +170775439826,214,0 +170775439874,214,0 +170775439922,215,0 +170775439970,214,0 +170775440020,215,0 +170775440067,214,0 +170775440117,215,0 +170775440165,215,0 +170775440214,215,0 +170775440262,214,0 +170775440310,214,0 +170775440358,214,0 +170775440406,214,0 +170775440454,214,0 +170775440503,214,0 +170775440551,214,0 +170775440599,214,0 +170775440647,214,0 +170775440695,214,0 +170775440743,214,0 +170775440791,214,0 +170775440839,214,0 +170775440886,215,0 +170775440936,214,0 +170775440984,215,0 +170775441032,215,0 +170775441080,215,0 +170775441127,215,0 +170775441175,214,0 +170775441223,214,0 +170775441271,213,0 +170775441319,213,0 +170775441367,213,0 +170775441416,213,0 +170775441464,213,0 +170775441512,214,0 +170775441560,214,0 +170775441608,214,0 +170775441656,214,0 +170775441704,214,0 +170775441752,214,0 +170775441801,214,0 +170775441851,214,0 +170775441899,214,0 +170775441947,215,0 +170775441996,214,0 +170775442046,215,0 +170775442093,214,0 +170775442141,214,0 +170775442191,213,0 +170775442239,213,0 +170775442287,213,0 +170775442334,213,0 +170775442382,214,0 +170775442430,213,0 +170775442478,214,0 +170775442526,214,0 +170775442574,214,0 +170775442624,214,0 +170775442671,214,0 +170775442721,214,0 +170775442770,214,0 +170775442818,214,0 +170775442866,214,0 +170775442914,214,0 +170775442964,214,0 +170775443013,213,0 +170775443061,213,0 +170775443109,213,0 +170775443159,213,0 +170775443207,213,0 +170775443255,213,0 +170775443302,213,0 +170775443350,213,0 +170775443398,213,0 +170775443446,213,0 +170775443494,213,0 +170775443542,214,0 +170775443590,214,0 +170775443638,214,0 +170775443686,214,0 +170775443736,214,0 +170775443785,214,0 +170775443833,214,0 +170775443881,214,0 +170775443929,213,0 +170775443977,213,0 +170775444024,213,0 +170775444072,213,0 +170775444120,213,0 +170775444168,213,0 +170775444218,213,0 +170775444266,213,0 +170775444314,213,0 +170775444361,214,0 +170775444409,214,0 +170775444457,214,0 +170775444505,214,0 +170775444553,214,0 +170775444601,214,0 +170775444649,214,0 +170775444697,215,0 +170775444745,214,0 +170775444793,214,0 +170775444842,213,0 +170775444892,213,0 +170775444941,213,0 +170775444991,213,0 +170775445039,214,0 +170775445087,214,0 +170775445135,214,0 +170775445183,214,0 +170775445231,214,0 +170775445280,214,0 +170775445328,214,0 +170775445376,214,0 +170775445425,214,0 +170775445473,214,0 +170775445523,214,0 +170775445571,214,0 +170775445620,214,0 +170775445670,214,0 +170775445717,213,0 +170775445765,213,0 +170775445813,213,0 +170775445861,213,0 +170775445911,214,0 +170775445959,213,0 +170775446006,214,0 +170775446054,214,0 +170775446104,214,0 +170775446153,214,0 +170775446201,214,0 +170775446249,214,0 +170775446299,214,0 +170775446348,214,0 +170775446396,214,0 +170775446445,214,0 +170775446493,214,0 +170775446543,214,0 +170775446590,213,0 +170775446638,214,0 +170775446688,213,0 +170775446736,214,0 +170775446783,214,0 +170775446831,214,0 +170775446879,214,0 +170775446927,214,0 +170775446977,214,0 +170775447026,214,0 +170775447074,214,0 +170775447123,215,0 +170775447173,215,0 +170775447222,215,0 +170775447270,215,0 +170775447318,215,0 +170775447366,214,0 +170775447414,215,0 +170775447462,214,0 +170775447510,214,0 +170775447558,214,0 +170775447607,214,0 +170775447657,214,0 +170775447705,214,0 +170775447752,214,0 +170775447802,214,0 +170775447851,214,0 +170775447899,214,0 +170775447949,215,0 +170775447997,215,0 +170775448045,215,0 +170775448093,215,0 +170775448141,215,0 +170775448188,215,0 +170775448238,215,0 +170775448286,214,0 +170775448335,214,0 +170775448385,214,0 +170775448433,214,0 +170775448481,214,0 +170775448530,214,0 +170775448578,214,0 +170775448626,214,0 +170775448674,215,0 +170775448722,215,0 +170775448770,215,0 +170775448819,215,0 +170775448867,215,0 +170775448915,215,0 +170775448963,215,0 +170775449011,215,0 +170775449059,215,0 +170775449108,215,0 +170775449156,215,0 +170775449204,214,0 +170775449254,214,0 +170775449302,214,0 +170775449351,214,0 +170775449399,214,0 +170775449447,214,0 +170775449496,214,0 +170775449546,215,0 +170775449594,214,0 +170775449642,215,0 +170775449689,215,0 +170775449739,215,0 +170775449787,215,0 +170775449835,215,0 +170775449884,215,0 +170775449932,215,0 +170775449982,215,0 +170775450030,215,0 +170775450077,215,0 +170775450127,214,0 +170775450175,214,0 +170775450224,215,0 +170775450272,215,0 +170775450320,215,0 +170775450368,215,0 +170775450418,215,0 +170775450466,215,0 +170775450515,215,0 +170775450563,215,0 +170775450613,215,0 +170775450662,215,0 +170775450712,215,0 +170775450761,215,0 +170775450809,215,0 +170775450857,215,0 +170775450905,214,0 +170775450955,215,0 +170775451003,214,0 +170775451050,214,0 +170775451098,214,0 +170775451146,214,0 +170775451194,214,0 +170775451244,214,0 +170775451293,214,0 +170775451343,214,0 +170775451391,214,0 +170775451439,214,0 +170775451487,215,0 +170775451536,215,0 +170775451585,215,0 +170775451633,215,0 +170775451681,215,0 +170775451731,215,0 +170775451778,215,0 +170775451828,214,0 +170775451877,214,0 +170775451927,213,0 +170775451976,213,0 +170775452024,213,0 +170775452072,214,0 +170775452120,214,0 +170775452168,214,0 +170775452217,214,0 +170775452265,214,0 +170775452313,214,0 +170775452361,214,0 +170775452409,215,0 +170775452457,215,0 +170775452506,215,0 +170775452554,215,0 +170775452602,215,0 +170775452652,215,0 +170775452701,215,0 +170775452749,214,0 +170775452798,213,0 +170775452848,213,0 +170775452897,213,0 +170775452945,214,0 +170775452993,214,0 +170775453041,214,0 +170775453089,214,0 +170775453137,214,0 +170775453185,214,0 +170775453234,214,0 +170775453284,214,0 +170775453333,215,0 +170775453383,215,0 +170775453430,215,0 +170775453478,214,0 +170775453528,215,0 +170775453576,214,0 +170775453624,214,0 +170775453672,213,0 +170775453721,213,0 +170775453769,213,0 +170775453817,213,0 +170775453867,214,0 +170775453914,214,0 +170775453964,214,0 +170775454013,214,0 +170775454061,214,0 +170775454109,214,0 +170775454157,214,0 +170775454207,215,0 +170775454256,215,0 +170775454304,214,0 +170775454352,214,0 +170775454400,215,0 +170775454448,214,0 +170775454496,214,0 +170775454544,213,0 +170775454592,213,0 +170775454641,213,0 +170775454689,213,0 +170775454737,214,0 +170775454787,213,0 +170775454835,214,0 +170775454883,214,0 +170775454931,214,0 +170775454980,214,0 +170775455029,214,0 +170775455079,214,0 +170775455128,214,0 +170775455176,214,0 +170775455224,215,0 +170775455272,215,0 +170775455322,214,0 +170775455370,214,0 +170775455418,213,0 +170775455467,213,0 +170775455515,214,0 +170775455565,214,0 +170775455613,214,0 +170775455662,214,0 +170775455710,214,0 +170775455760,214,0 +170775455809,214,0 +170775455857,214,0 +170775455906,214,0 +170775455954,215,0 +170775456002,214,0 +170775456050,215,0 +170775456098,215,0 +170775456146,215,0 +170775456194,215,0 +170775456242,214,0 +170775456290,214,0 +170775456338,213,0 +170775456387,214,0 +170775456437,214,0 +170775456485,214,0 +170775456534,214,0 +170775456582,214,0 +170775456630,214,0 +170775456680,214,0 +170775456729,214,0 +170775456779,214,0 +170775456827,214,0 +170775456876,215,0 +170775456924,215,0 +170775456974,215,0 +170775457022,215,0 +170775457069,215,0 +170775457117,214,0 +170775457167,213,0 +170775457216,213,0 +170775457264,213,0 +170775457312,213,0 +170775457360,214,0 +170775457408,214,0 +170775457456,214,0 +170775457504,214,0 +170775457552,214,0 +170775457601,214,0 +170775457651,214,0 +170775457700,214,0 +170775457748,214,0 +170775457797,214,0 +170775457845,214,0 +170775457893,214,0 +170775457941,215,0 +170775457991,214,0 +170775458039,214,0 +170775458087,213,0 +170775458134,213,0 +170775458184,213,0 +170775458232,213,0 +170775458280,213,0 +170775458329,214,0 +170775458379,214,0 +170775458428,213,0 +170775458478,214,0 +170775458526,214,0 +170775458574,214,0 +170775458623,214,0 +170775458673,214,0 +170775458722,214,0 +170775458770,214,0 +170775458818,214,0 +170775458866,214,0 +170775458914,214,0 +170775458962,213,0 +170775459010,213,0 +170775459059,213,0 +170775459107,213,0 +170775459157,214,0 +170775459205,214,0 +170775459254,214,0 +170775459302,214,0 +170775459350,213,0 +170775459399,214,0 +170775459447,214,0 +170775459495,214,0 +170775459545,214,0 +170775459594,214,0 +170775459642,214,0 +170775459692,214,0 +170775459739,214,0 +170775459789,214,0 +170775459838,213,0 +170775459886,213,0 +170775459934,213,0 +170775459982,213,0 +170775460030,213,0 +170775460080,213,0 +170775460128,213,0 +170775460177,213,0 +170775460225,213,0 +170775460273,214,0 +170775460322,214,0 +170775460370,214,0 +170775460418,214,0 +170775460466,214,0 +170775460516,214,0 +170775460564,214,0 +170775460611,214,0 +170775460659,214,0 +170775460707,213,0 +170775460757,213,0 +170775460806,213,0 +170775460856,213,0 +170775460904,213,0 +170775460952,213,0 +170775461001,213,0 +170775461049,213,0 +170775461097,213,0 +170775461145,214,0 +170775461195,214,0 +170775461244,214,0 +170775461292,214,0 +170775461340,214,0 +170775461390,214,0 +170775461439,214,0 +170775461487,214,0 +170775461535,214,0 +170775461584,214,0 +170775461634,213,0 +170775461682,213,0 +170775461731,213,0 +170775461779,214,0 +170775461829,214,0 +170775461878,214,0 +170775461926,214,0 +170775461974,214,0 +170775462023,214,0 +170775462071,214,0 +170775462121,215,0 +170775462169,214,0 +170775462218,214,0 +170775462266,214,0 +170775462316,215,0 +170775462364,215,0 +170775462413,214,0 +170775462463,213,0 +170775462511,213,0 +170775462560,213,0 +170775462608,213,0 +170775462658,213,0 +170775462707,214,0 +170775462757,213,0 +170775462805,214,0 +170775462853,214,0 +170775462900,214,0 +170775462948,214,0 +170775462996,214,0 +170775463044,214,0 +170775463094,215,0 +170775463143,215,0 +170775463191,215,0 +170775463239,215,0 +170775463287,214,0 +170775463336,214,0 +170775463384,214,0 +170775463432,214,0 +170775463480,214,0 +170775463529,214,0 +170775463577,214,0 +170775463625,214,0 +170775463675,214,0 +170775463724,215,0 +170775463772,214,0 +170775463820,215,0 +170775463868,214,0 +170775463917,215,0 +170775463967,215,0 +170775464016,215,0 +170775464064,215,0 +170775464114,215,0 +170775464163,214,0 +170775464211,215,0 +170775464261,214,0 +170775464309,214,0 +170775464358,214,0 +170775464406,214,0 +170775464454,214,0 +170775464504,215,0 +170775464552,215,0 +170775464599,215,0 +170775464647,215,0 +170775464695,215,0 +170775464743,215,0 +170775464791,215,0 +170775464839,215,0 +170775464888,215,0 +170775464936,215,0 +170775464986,215,0 +170775465035,215,0 +170775465085,215,0 +170775465133,215,0 +170775465181,214,0 +170775465230,215,0 +170775465280,214,0 +170775465329,215,0 +170775465377,214,0 +170775465427,215,0 +170775465476,215,0 +170775465524,215,0 +170775465572,215,0 +170775465620,215,0 +170775465669,215,0 +170775465717,215,0 +170775465765,215,0 +170775465815,215,0 +170775465863,215,0 +170775465912,214,0 +170775465962,215,0 +170775466010,214,0 +170775466058,214,0 +170775466106,214,0 +170775466153,214,0 +170775466201,214,0 +170775466249,214,0 +170775466297,215,0 +170775466345,215,0 +170775466393,215,0 +170775466441,215,0 +170775466489,215,0 +170775466539,215,0 +170775466587,215,0 +170775466635,215,0 +170775466682,215,0 +170775466730,215,0 +170775466778,215,0 +170775466828,215,0 +170775466876,214,0 +170775466925,214,0 +170775466975,214,0 +170775467023,214,0 +170775467072,214,0 +170775467122,214,0 +170775467171,214,0 +170775467221,215,0 +170775467269,215,0 +170775467317,215,0 +170775467365,215,0 +170775467414,215,0 +170775467462,215,0 +170775467510,215,0 +170775467559,215,0 +170775467607,215,0 +170775467655,215,0 +170775467703,214,0 +170775467751,214,0 +170775467801,214,0 +170775467849,214,0 +170775467898,214,0 +170775467946,214,0 +170775467996,214,0 +170775468044,214,0 +170775468091,214,0 +170775468141,214,0 +170775468189,214,0 +170775468237,215,0 +170775468285,215,0 +170775468333,215,0 +170775468382,215,0 +170775468432,215,0 +170775468481,215,0 +170775468529,215,0 +170775468579,215,0 +170775468628,214,0 +170775468676,214,0 +170775468724,214,0 +170775468772,214,0 +170775468822,214,0 +170775468870,214,0 +170775468917,214,0 +170775468965,214,0 +170775469015,214,0 +170775469063,214,0 +170775469111,214,0 +170775469159,214,0 +170775469206,215,0 +170775469254,215,0 +170775469304,215,0 +170775469352,215,0 +170775469401,215,0 +170775469449,215,0 +170775469499,215,0 +170775469546,213,0 +170775469594,213,0 +170775469642,213,0 +170775469692,214,0 +170775469740,214,0 +170775469788,214,0 +170775469836,214,0 +170775469884,214,0 +170775469932,214,0 +170775469980,214,0 +170775470028,214,0 +170775470076,215,0 +170775470125,214,0 +170775470173,215,0 +170775470221,215,0 +170775470269,215,0 +170775470317,215,0 +170775470366,215,0 +170775470416,214,0 +170775470464,213,0 +170775470512,214,0 +170775470560,214,0 +170775470609,214,0 +170775470657,214,0 +170775470705,214,0 +170775470754,214,0 +170775470802,214,0 +170775470850,214,0 +170775470898,214,0 +170775470948,215,0 +170775470997,215,0 +170775471045,215,0 +170775471093,215,0 +170775471143,215,0 +170775471191,215,0 +170775471238,215,0 +170775471288,214,0 +170775471336,213,0 +170775471385,214,0 +170775471435,213,0 +170775471484,214,0 +170775471534,214,0 +170775471583,214,0 +170775471633,214,0 +170775471681,214,0 +170775471730,214,0 +170775471780,214,0 +170775471829,215,0 +170775471877,214,0 +170775471927,215,0 +170775471974,215,0 +170775472024,215,0 +170775472072,215,0 +170775472120,215,0 +170775472169,214,0 +170775472217,213,0 +170775472267,214,0 +170775472315,213,0 +170775472364,214,0 +170775472412,214,0 +170775472462,214,0 +170775472511,214,0 +170775472559,214,0 +170775472609,214,0 +170775472658,214,0 +170775472708,214,0 +170775472757,215,0 +170775472805,215,0 +170775472855,215,0 +170775472904,215,0 +170775472952,215,0 +170775473000,215,0 +170775473048,214,0 +170775473096,214,0 +170775473144,214,0 +170775473193,214,0 +170775473243,214,0 +170775473292,214,0 +170775473342,214,0 +170775473390,214,0 +170775473438,214,0 +170775473487,214,0 +170775473535,215,0 +170775473583,215,0 +170775473631,215,0 +170775473679,215,0 +170775473727,214,0 +170775473775,215,0 +170775473823,215,0 +170775473871,215,0 +170775473920,214,0 +170775473968,213,0 +170775474017,213,0 +170775474065,214,0 +170775474115,214,0 +170775474163,214,0 +170775474212,214,0 +170775474262,214,0 +170775474310,214,0 +170775474358,214,0 +170775474407,214,0 +170775474457,215,0 +170775474505,215,0 +170775474553,215,0 +170775474601,215,0 +170775474648,215,0 +170775474698,215,0 +170775474747,215,0 +170775474795,214,0 +170775474845,213,0 +170775474893,214,0 +170775474941,214,0 +170775474989,214,0 +170775475037,214,0 +170775475085,214,0 +170775475133,214,0 +170775475180,214,0 +170775475228,214,0 +170775475276,214,0 +170775475326,215,0 +170775475375,215,0 +170775475423,215,0 +170775475471,215,0 +170775475519,215,0 +170775475568,215,0 +170775475618,215,0 +170775475666,215,0 +170775475715,213,0 +170775475763,214,0 +170775475811,214,0 +170775475859,214,0 +170775475909,214,0 +170775475958,214,0 +170775476008,214,0 +170775476057,214,0 +170775476105,214,0 +170775476153,214,0 +170775476203,215,0 +170775476252,214,0 +170775476300,215,0 +170775476348,215,0 +170775476396,215,0 +170775476444,215,0 +170775476492,215,0 +170775476540,215,0 +170775476588,214,0 +170775476636,214,0 +170775476684,214,0 +170775476733,214,0 +170775476783,214,0 +170775476831,214,0 +170775476880,214,0 +170775476930,214,0 +170775476978,214,0 +170775477027,214,0 +170775477075,215,0 +170775477123,215,0 +170775477171,215,0 +170775477220,215,0 +170775477270,215,0 +170775477319,214,0 +170775477369,215,0 +170775477418,215,0 +170775477468,214,0 +170775477516,214,0 +170775477564,214,0 +170775477613,214,0 +170775477661,214,0 +170775477711,214,0 +170775477759,214,0 +170775477808,214,0 +170775477858,214,0 +170775477906,215,0 +170775477954,215,0 +170775478001,215,0 +170775478049,215,0 +170775478097,215,0 +170775478147,215,0 +170775478195,215,0 +170775478242,215,0 +170775478292,215,0 +170775478340,214,0 +170775478389,213,0 +170775478437,214,0 +170775478485,214,0 +170775478533,214,0 +170775478581,214,0 +170775478629,214,0 +170775478677,214,0 +170775478725,214,0 +170775478773,214,0 +170775478822,214,0 +170775478870,214,0 +170775478919,214,0 +170775478967,215,0 +170775479015,215,0 +170775479063,215,0 +170775479111,215,0 +170775479159,215,0 +170775479207,214,0 +170775479254,213,0 +170775479302,213,0 +170775479352,214,0 +170775479399,214,0 +170775479447,213,0 +170775479495,214,0 +170775479544,214,0 +170775479592,214,0 +170775479640,214,0 +170775479688,214,0 +170775479736,214,0 +170775479783,215,0 +170775479831,215,0 +170775479881,215,0 +170775479929,214,0 +170775479976,215,0 +170775480026,215,0 +170775480074,215,0 +170775480122,214,0 +170775480170,213,0 +170775480219,214,0 +170775480267,214,0 +170775480315,214,0 +170775480362,214,0 +170775480410,214,0 +170775480458,214,0 +170775480506,214,0 +170775480554,215,0 +170775480603,214,0 +170775480651,214,0 +170775480701,215,0 +170775480750,215,0 +170775480798,215,0 +170775480846,215,0 +170775480894,215,0 +170775480942,215,0 +170775480990,214,0 +170775481039,214,0 +170775481087,214,0 +170775481136,214,0 +170775481186,214,0 +170775481235,214,0 +170775481283,214,0 +170775481331,214,0 +170775481379,214,0 +170775481427,215,0 +170775481477,214,0 +170775481524,215,0 +170775481572,215,0 +170775481622,215,0 +170775481670,215,0 +170775481718,215,0 +170775481767,215,0 +170775481817,215,0 +170775481865,214,0 +170775481913,214,0 +170775481962,214,0 +170775482010,214,0 +170775482058,214,0 +170775482106,214,0 +170775482153,214,0 +170775482201,214,0 +170775482249,215,0 +170775482297,215,0 +170775482345,215,0 +170775482394,215,0 +170775482442,215,0 +170775482490,215,0 +170775482539,215,0 +170775482589,215,0 +170775482637,215,0 +170775482685,214,0 +170775482733,214,0 +170775482782,214,0 +170775482832,214,0 +170775482879,214,0 +170775482927,214,0 +170775482975,215,0 +170775483023,215,0 +170775483071,215,0 +170775483119,215,0 +170775483167,215,0 +170775483215,215,0 +170775483263,215,0 +170775483313,215,0 +170775483362,215,0 +170775483412,215,0 +170775483460,215,0 +170775483509,215,0 +170775483559,214,0 +170775483607,214,0 +170775483655,214,0 +170775483703,214,0 +170775483752,214,0 +170775483802,215,0 +170775483850,214,0 +170775483898,215,0 +170775483947,215,0 +170775483995,215,0 +170775484043,215,0 +170775484091,215,0 +170775484139,215,0 +170775484187,215,0 +170775484235,215,0 +170775484283,215,0 +170775484331,215,0 +170775484378,215,0 +170775484426,214,0 +170775484474,214,0 +170775484524,213,0 +170775484573,214,0 +170775484621,214,0 +170775484669,214,0 +170775484717,214,0 +170775484765,214,0 +170775484813,214,0 +170775484861,214,0 +170775484909,214,0 +170775484956,215,0 +170775485006,215,0 +170775485054,215,0 +170775485103,215,0 +170775485151,215,0 +170775485199,214,0 +170775485249,215,0 +170775485296,214,0 +170775485344,213,0 +170775485394,214,0 +170775485442,214,0 +170775485491,213,0 +170775485539,214,0 +170775485587,214,0 +170775485635,214,0 +170775485684,214,0 +170775485734,214,0 +170775485782,214,0 +170775485830,214,0 +170775485879,215,0 +170775485927,215,0 +170775485975,214,0 +170775486025,215,0 +170775486074,215,0 +170775486124,214,0 +170775486172,214,0 +170775486219,213,0 +170775486267,214,0 +170775486315,214,0 +170775486363,214,0 +170775486411,214,0 +170775486461,214,0 +170775486510,214,0 +170775486558,214,0 +170775486608,214,0 +170775486656,214,0 +170775486704,214,0 +170775486751,215,0 +170775486799,214,0 +170775486849,214,0 +170775486897,215,0 +170775486945,215,0 +170775486993,215,0 +170775487040,213,0 +170775487088,213,0 +170775487136,213,0 +170775487184,213,0 +170775487232,213,0 +170775487280,214,0 +170775487330,214,0 +170775487380,214,0 +170775487427,214,0 +170775487477,214,0 +170775487526,214,0 +170775487576,214,0 +170775487624,214,0 +170775487672,214,0 +170775487721,214,0 +170775487769,214,0 +170775487818,214,0 +170775487866,214,0 +170775487914,213,0 +170775487962,213,0 +170775488012,213,0 +170775488059,213,0 +170775488109,213,0 +170775488158,213,0 +170775488206,214,0 +170775488254,214,0 +170775488304,214,0 +170775488352,214,0 +170775488400,214,0 +170775488449,214,0 +170775488499,214,0 +170775488548,214,0 +170775488596,214,0 +170775488644,214,0 +170775488692,214,0 +170775488740,214,0 +170775488790,213,0 +170775488837,214,0 +170775488887,213,0 +170775488935,214,0 +170775488983,214,0 +170775489032,214,0 +170775489082,214,0 +170775489130,214,0 +170775489179,214,0 +170775489229,214,0 +170775489277,214,0 +170775489325,214,0 +170775489373,214,0 +170775489422,215,0 +170775489470,215,0 +170775489518,215,0 +170775489566,214,0 +170775489615,214,0 +170775489663,214,0 +170775489711,213,0 +170775489759,213,0 +170775489807,214,0 +170775489855,214,0 +170775489903,214,0 +170775489950,214,0 +170775489998,214,0 +170775490046,214,0 +170775490094,214,0 +170775490142,214,0 +170775490189,215,0 +170775490239,215,0 +170775490287,215,0 +170775490335,215,0 +170775490383,215,0 +170775490432,215,0 +170775490482,214,0 +170775490529,214,0 +170775490577,214,0 +170775490627,214,0 +170775490675,214,0 +170775490724,214,0 +170775490772,214,0 +170775490822,214,0 +170775490870,214,0 +170775490918,215,0 +170775490966,215,0 +170775491013,215,0 +170775491061,215,0 +170775491109,214,0 +170775491157,215,0 +170775491205,215,0 +170775491253,215,0 +170775491301,215,0 +170775491349,214,0 +170775491398,213,0 +170775491446,214,0 +170775491495,214,0 +170775491543,214,0 +170775491591,214,0 +170775491639,214,0 +170775491687,214,0 +170775491737,214,0 +170775491785,214,0 +170775491834,215,0 +170775491882,215,0 +170775491930,215,0 +170775491978,215,0 +170775492026,215,0 +170775492074,215,0 +170775492123,215,0 +170775492171,215,0 +170775492219,214,0 +170775492269,214,0 +170775492317,214,0 +170775492364,214,0 +170775492414,214,0 +170775492462,214,0 +170775492510,214,0 +170775492558,214,0 +170775492607,214,0 +170775492655,215,0 +170775492703,214,0 +170775492751,214,0 +170775492801,215,0 +170775492849,215,0 +170775492897,215,0 +170775492946,215,0 +170775492994,215,0 +170775493043,214,0 +170775493091,214,0 +170775493139,214,0 +170775493187,214,0 +170775493237,214,0 +170775493286,214,0 +170775493335,214,0 +170775493383,214,0 +170775493431,214,0 +170775493479,214,0 +170775493529,214,0 +170775493578,215,0 +170775493626,215,0 +170775493674,215,0 +170775493723,214,0 +170775493771,215,0 +170775493819,214,0 +170775493867,214,0 +170775493916,214,0 +170775493964,213,0 +170775494012,213,0 +170775494060,213,0 +170775494108,213,0 +170775494156,214,0 +170775494203,214,0 +170775494251,214,0 +170775494299,214,0 +170775494347,214,0 +170775494395,214,0 +170775494443,214,0 +170775494491,214,0 +170775494538,214,0 +170775494588,214,0 +170775494636,214,0 +170775494684,215,0 +170775494731,215,0 +170775494779,214,0 +170775494829,213,0 +170775494876,213,0 +170775494924,213,0 +170775494972,213,0 +170775495022,213,0 +170775495070,213,0 +170775495117,214,0 +170775495167,214,0 +170775495215,214,0 +170775495264,214,0 +170775495312,214,0 +170775495361,214,0 +170775495409,215,0 +170775495457,214,0 +170775495505,214,0 +170775495553,215,0 +170775495600,215,0 +170775495650,214,0 +170775495698,213,0 +170775495746,214,0 +170775495795,214,0 +170775495843,214,0 +170775495891,214,0 +170775495938,214,0 +170775495988,214,0 +170775496037,214,0 +170775496085,215,0 +170775496133,214,0 +170775496181,215,0 +170775496229,215,0 +170775496276,215,0 +170775496326,215,0 +170775496375,215,0 +170775496423,215,0 +170775496471,215,0 +170775496519,214,0 +170775496567,214,0 +170775496615,214,0 +170775496665,214,0 +170775496714,214,0 +170775496762,214,0 +170775496810,214,0 +170775496860,214,0 +170775496908,214,0 +170775496956,215,0 +170775497005,215,0 +170775497053,215,0 +170775497101,215,0 +170775497149,215,0 +170775497197,215,0 +170775497246,215,0 +170775497294,215,0 +170775497342,214,0 +170775497390,214,0 +170775497438,214,0 +170775497485,214,0 +170775497533,214,0 +170775497581,214,0 +170775497629,214,0 +170775497678,214,0 +170775497728,214,0 +170775497775,214,0 +170775497823,214,0 +170775497873,215,0 +170775497922,215,0 +170775497970,215,0 +170775498018,215,0 +170775498065,215,0 +170775498113,215,0 +170775498161,215,0 +170775498209,214,0 +170775498257,214,0 +170775498305,214,0 +170775498353,214,0 +170775498401,214,0 +170775498449,214,0 +170775498497,214,0 +170775498544,214,0 +170775498592,214,0 +170775498642,215,0 +170775498690,215,0 +170775498737,215,0 +170775498785,215,0 +170775498835,215,0 +170775498882,215,0 +170775498930,215,0 +170775498978,215,0 +170775499026,215,0 +170775499075,214,0 +170775499123,214,0 +170775499171,214,0 +170775499220,214,0 +170775499268,214,0 +170775499316,214,0 +170775499364,215,0 +170775499412,215,0 +170775499460,215,0 +170775499508,215,0 +170775499556,215,0 +170775499603,215,0 +170775499651,215,0 +170775499699,215,0 +170775499749,215,0 +170775499797,215,0 +170775499844,215,0 +170775499892,215,0 +170775499942,215,0 +170775499990,213,0 +170775500039,214,0 +170775500087,214,0 +170775500135,214,0 +170775500183,214,0 +170775500231,214,0 +170775500279,214,0 +170775500328,214,0 +170775500378,214,0 +170775500426,214,0 +170775500474,214,0 +170775500522,215,0 +170775500571,215,0 +170775500620,215,0 +170775500670,215,0 +170775500718,215,0 +170775500767,214,0 +170775500815,214,0 +170775500863,213,0 +170775500911,213,0 +170775500959,213,0 +170775501007,214,0 +170775501054,214,0 +170775501104,214,0 +170775501152,214,0 +170775501199,214,0 +170775501247,214,0 +170775501295,214,0 +170775501343,214,0 +170775501392,214,0 +170775501441,215,0 +170775501490,215,0 +170775501540,215,0 +170775501587,215,0 +170775501635,215,0 +170775501683,214,0 +170775501731,213,0 +170775501779,213,0 +170775501827,214,0 +170775501877,214,0 +170775501926,214,0 +170775501974,214,0 +170775502022,214,0 +170775502070,214,0 +170775502119,214,0 +170775502167,214,0 +170775502215,214,0 +170775502263,215,0 +170775502311,215,0 +170775502359,215,0 +170775502407,215,0 +170775502456,214,0 +170775502504,215,0 +170775502554,214,0 +170775502602,214,0 +170775502651,214,0 +170775502699,214,0 +170775502747,214,0 +170775502795,214,0 +170775502844,214,0 +170775502894,214,0 +170775502942,214,0 +170775502991,214,0 +170775503041,215,0 +170775503091,214,0 +170775503139,215,0 +170775503188,215,0 +170775503236,215,0 +170775503284,215,0 +170775503332,215,0 +170775503381,215,0 +170775503429,213,0 +170775503479,214,0 +170775503527,214,0 +170775503576,214,0 +170775503624,214,0 +170775503672,214,0 +170775503720,214,0 +170775503768,214,0 +170775503817,214,0 +170775503865,215,0 +170775503913,215,0 +170775503961,215,0 +170775504009,215,0 +170775504057,215,0 +170775504105,215,0 +170775504154,214,0 +170775504202,214,0 +170775504252,214,0 +170775504300,214,0 +170775504348,214,0 +170775504397,214,0 +170775504445,214,0 +170775504493,214,0 +170775504541,214,0 +170775504589,214,0 +170775504637,214,0 +170775504686,214,0 +170775504734,214,0 +170775504782,215,0 +170775504832,215,0 +170775504881,215,0 +170775504929,215,0 +170775504977,215,0 +170775505025,215,0 +170775505075,215,0 +170775505123,213,0 +170775505170,213,0 +170775505220,213,0 +170775505268,213,0 +170775505316,214,0 +170775505364,214,0 +170775505412,214,0 +170775505461,214,0 +170775505509,214,0 +170775505559,214,0 +170775505607,214,0 +170775505655,214,0 +170775505703,215,0 +170775505750,215,0 +170775505798,215,0 +170775505848,215,0 +170775505897,214,0 +170775505945,214,0 +170775505993,214,0 +170775506041,213,0 +170775506091,213,0 +170775506139,213,0 +170775506187,214,0 +170775506235,214,0 +170775506284,213,0 +170775506334,214,0 +170775506383,214,0 +170775506431,214,0 +170775506479,214,0 +170775506527,214,0 +170775506577,214,0 +170775506625,215,0 +170775506672,215,0 +170775506720,215,0 +170775506768,215,0 +170775506818,214,0 +170775506866,213,0 +170775506915,213,0 +170775506965,213,0 +170775507013,213,0 +170775507061,213,0 +170775507109,214,0 +170775507158,214,0 +170775507206,214,0 +170775507254,214,0 +170775507303,214,0 +170775507351,214,0 +170775507399,214,0 +170775507447,214,0 +170775507495,214,0 +170775507543,215,0 +170775507591,215,0 +170775507639,215,0 +170775507688,214,0 +170775507738,213,0 +170775507786,213,0 +170775507833,213,0 +170775507881,213,0 +170775507931,213,0 +170775507979,213,0 +170775508028,214,0 +170775508076,214,0 +170775508124,214,0 +170775508172,214,0 +170775508220,214,0 +170775508270,214,0 +170775508319,215,0 +170775508369,214,0 +170775508416,215,0 +170775508464,215,0 +170775508512,214,0 +170775508560,214,0 +170775508608,213,0 +170775508656,213,0 +170775508706,214,0 +170775508755,213,0 +170775508803,213,0 +170775508851,214,0 +170775508899,214,0 +170775508948,214,0 +170775508996,214,0 +170775509044,214,0 +170775509092,214,0 +170775509140,214,0 +170775509190,214,0 +170775509237,214,0 +170775509285,214,0 +170775509333,215,0 +170775509381,214,0 +170775509431,213,0 +170775509480,213,0 +170775509528,213,0 +170775509578,213,0 +170775509627,214,0 +170775509677,214,0 +170775509725,214,0 +170775509774,214,0 +170775509822,214,0 +170775509872,214,0 +170775509921,214,0 +170775509971,214,0 +170775510020,214,0 +170775510068,215,0 +170775510116,215,0 +170775510164,214,0 +170775510213,215,0 +170775510261,214,0 +170775510309,213,0 +170775510357,213,0 +170775510405,213,0 +170775510453,214,0 +170775510501,214,0 +170775510548,214,0 +170775510596,214,0 +170775510644,214,0 +170775510692,214,0 +170775510740,214,0 +170775510788,214,0 +170775510836,215,0 +170775510883,215,0 +170775510931,215,0 +170775510979,215,0 +170775511027,215,0 +170775511075,214,0 +170775511123,214,0 +170775511171,214,0 +170775511218,214,0 +170775511266,214,0 +170775511314,214,0 +170775511362,214,0 +170775511410,214,0 +170775511458,214,0 +170775511506,214,0 +170775511554,214,0 +170775511602,215,0 +170775511649,215,0 +170775511697,215,0 +170775511745,214,0 +170775511793,215,0 +170775511841,215,0 +170775511890,215,0 +170775511938,215,0 +170775511988,214,0 +170775512036,214,0 +170775512084,214,0 +170775512133,214,0 +170775512181,214,0 +170775512229,214,0 +170775512277,215,0 +170775512326,215,0 +170775512374,214,0 +170775512424,215,0 +170775512473,215,0 +170775512523,215,0 +170775512571,215,0 +170775512619,215,0 +170775512667,215,0 +170775512715,215,0 +170775512763,215,0 +170775512810,215,0 +170775512858,214,0 +170775512908,214,0 +170775512957,214,0 +170775513007,214,0 +170775513055,214,0 +170775513104,214,0 +170775513152,214,0 +170775513202,214,0 +170775513251,215,0 +170775513300,215,0 +170775513348,215,0 +170775513398,215,0 +170775513446,215,0 +170775513495,215,0 +170775513545,215,0 +170775513593,215,0 +170775513641,215,0 +170775513689,214,0 +170775513737,214,0 +170775513786,214,0 +170775513834,214,0 +170775513884,214,0 +170775513932,214,0 +170775513981,215,0 +170775514029,215,0 +170775514079,215,0 +170775514127,215,0 +170775514176,215,0 +170775514224,215,0 +170775514272,215,0 +170775514320,215,0 +170775514368,215,0 +170775514417,215,0 +170775514467,215,0 +170775514515,215,0 +170775514564,214,0 +170775514614,214,0 +170775514662,214,0 +170775514711,214,0 +170775514761,214,0 +170775514809,215,0 +170775514857,214,0 +170775514906,214,0 +170775514954,215,0 +170775515004,215,0 +170775515052,215,0 +170775515100,215,0 +170775515148,215,0 +170775515196,215,0 +170775515244,215,0 +170775515292,215,0 +170775515340,215,0 +170775515388,214,0 +170775515435,214,0 +170775515483,214,0 +170775515531,214,0 +170775515581,214,0 +170775515630,214,0 +170775515678,214,0 +170775515728,214,0 +170775515776,214,0 +170775515824,215,0 +170775515872,215,0 +170775515921,215,0 +170775515969,215,0 +170775516019,215,0 +170775516067,215,0 +170775516116,215,0 +170775516166,215,0 +170775516215,215,0 +170775516263,214,0 +170775516313,214,0 +170775516362,214,0 +170775516412,214,0 +170775516460,214,0 +170775516509,214,0 +170775516559,214,0 +170775516607,215,0 +170775516655,215,0 +170775516704,215,0 +170775516754,215,0 +170775516802,215,0 +170775516850,215,0 +170775516898,215,0 +170775516946,215,0 +170775516993,215,0 +170775517041,215,0 +170775517089,215,0 +170775517139,214,0 +170775517189,214,0 +170775517236,214,0 +170775517286,214,0 +170775517334,214,0 +170775517382,215,0 +170775517431,215,0 +170775517479,215,0 +170775517529,215,0 +170775517577,215,0 +170775517626,215,0 +170775517676,215,0 +170775517725,215,0 +170775517773,215,0 +170775517821,215,0 +170775517869,215,0 +170775517919,215,0 +170775517968,214,0 +170775518018,214,0 +170775518067,213,0 +170775518117,214,0 +170775518166,214,0 +170775518214,214,0 +170775518262,214,0 +170775518312,214,0 +170775518360,214,0 +170775518409,214,0 +170775518457,214,0 +170775518505,215,0 +170775518554,215,0 +170775518604,215,0 +170775518652,215,0 +170775518700,215,0 +170775518748,214,0 +170775518796,215,0 +170775518845,214,0 +170775518895,214,0 +170775518943,214,0 +170775518992,214,0 +170775519040,214,0 +170775519088,214,0 +170775519138,214,0 +170775519186,214,0 +170775519234,214,0 +170775519282,215,0 +170775519330,215,0 +170775519377,215,0 +170775519425,215,0 +170775519473,215,0 +170775519521,215,0 +170775519571,215,0 +170775519620,215,0 +170775519670,214,0 +170775519718,213,0 +170775519768,213,0 +170775519817,214,0 +170775519865,214,0 +170775519913,214,0 +170775519961,214,0 +170775520010,214,0 +170775520058,214,0 +170775520106,214,0 +170775520154,214,0 +170775520202,215,0 +170775520250,215,0 +170775520298,215,0 +170775520346,215,0 +170775520394,215,0 +170775520443,215,0 +170775520491,215,0 +170775520541,214,0 +170775520589,213,0 +170775520637,214,0 +170775520686,214,0 +170775520734,214,0 +170775520782,214,0 +170775520830,214,0 +170775520879,214,0 +170775520927,214,0 +170775520975,214,0 +170775521025,215,0 +170775521073,215,0 +170775521122,215,0 +170775521170,215,0 +170775521218,215,0 +170775521266,215,0 +170775521314,215,0 +170775521362,214,0 +170775521411,214,0 +170775521459,213,0 +170775521509,213,0 +170775521557,213,0 +170775521605,214,0 +170775521654,214,0 +170775521704,214,0 +170775521752,214,0 +170775521799,214,0 +170775521849,214,0 +170775521897,214,0 +170775521945,214,0 +170775521993,215,0 +170775522042,215,0 +170775522090,215,0 +170775522140,215,0 +170775522188,215,0 +170775522236,213,0 +170775522285,213,0 +170775522333,213,0 +170775522381,214,0 +170775522431,214,0 +170775522479,214,0 +170775522528,214,0 +170775522576,214,0 +170775522624,214,0 +170775522674,214,0 +170775522721,214,0 +170775522769,214,0 +170775522817,215,0 +170775522867,215,0 +170775522915,214,0 +170775522964,214,0 +170775523012,215,0 +170775523062,214,0 +170775523111,213,0 +170775523159,214,0 +170775523209,213,0 +170775523257,213,0 +170775523306,214,0 +170775523354,214,0 +170775523402,214,0 +170775523452,214,0 +170775523501,214,0 +170775523551,214,0 +170775523600,215,0 +170775523648,214,0 +170775523698,214,0 +170775523746,215,0 +170775523794,215,0 +170775523843,215,0 +170775523891,215,0 +170775523939,214,0 +170775523989,213,0 +170775524036,214,0 +170775524086,214,0 +170775524134,213,0 +170775524183,213,0 +170775524231,214,0 +170775524279,214,0 +170775524329,214,0 +170775524378,214,0 +170775524428,214,0 +170775524476,214,0 +170775524524,214,0 +170775524573,215,0 +170775524623,215,0 +170775524671,214,0 +170775524719,214,0 +170775524767,214,0 +170775524815,213,0 +170775524864,213,0 +170775524912,213,0 +170775524962,213,0 +170775525009,213,0 +170775525057,213,0 +170775525105,213,0 +170775525155,214,0 +170775525204,214,0 +170775525254,214,0 +170775525302,214,0 +170775525350,214,0 +170775525398,214,0 +170775525447,214,0 +170775525497,215,0 +170775525545,215,0 +170775525593,215,0 +170775525642,214,0 +170775525692,213,0 +170775525741,213,0 +170775525789,214,0 +170775525837,213,0 +170775525887,214,0 +170775525936,214,0 +170775525986,214,0 +170775526035,214,0 +170775526084,214,0 +170775526132,214,0 +170775526180,215,0 +170775526230,214,0 +170775526277,215,0 +170775526327,215,0 +170775526375,214,0 +170775526423,215,0 +170775526472,214,0 +170775526520,213,0 +170775526568,214,0 +170775526616,214,0 +170775526664,214,0 +170775526713,214,0 +170775526763,214,0 +170775526812,214,0 +170775526862,214,0 +170775526911,215,0 +170775526961,214,0 +170775527009,215,0 +170775527058,214,0 +170775527108,214,0 +170775527156,214,0 +170775527205,215,0 +170775527255,215,0 +170775527303,215,0 +170775527352,214,0 +170775527400,214,0 +170775527449,214,0 +170775527497,214,0 +170775527545,214,0 +170775527595,215,0 +170775527644,214,0 +170775527694,214,0 +170775527743,214,0 +170775527791,215,0 +170775527839,215,0 +170775527889,215,0 +170775527938,215,0 +170775527988,215,0 +170775528036,215,0 +170775528085,215,0 +170775528135,215,0 +170775528184,214,0 +170775528232,214,0 +170775528280,214,0 +170775528328,214,0 +170775528376,214,0 +170775528424,214,0 +170775528472,214,0 +170775528520,215,0 +170775528568,215,0 +170775528615,215,0 +170775528663,215,0 +170775528711,215,0 +170775528761,215,0 +170775528810,215,0 +170775528858,215,0 +170775528906,215,0 +170775528956,215,0 +170775529004,215,0 +170775529053,214,0 +170775529103,215,0 +170775529152,215,0 +170775529200,215,0 +170775529248,215,0 +170775529296,215,0 +170775529346,215,0 +170775529395,215,0 +170775529443,215,0 +170775529491,215,0 +170775529541,215,0 +170775529590,215,0 +170775529638,215,0 +170775529686,215,0 +170775529736,215,0 +170775529785,215,0 +170775529833,215,0 +170775529881,214,0 +170775529931,214,0 +170775529980,214,0 +170775530028,214,0 +170775530076,214,0 +170775530125,214,0 +170775530175,214,0 +170775530224,215,0 +170775530272,215,0 +170775530320,215,0 +170775530370,215,0 +170775530419,215,0 +170775530467,215,0 +170775530515,215,0 +170775530563,215,0 +170775530611,215,0 +170775530659,215,0 +170775530708,215,0 +170775530756,214,0 +170775530804,214,0 +170775530854,214,0 +170775530901,214,0 +170775530949,214,0 +170775530997,214,0 +170775531047,214,0 +170775531095,214,0 +170775531143,214,0 +170775531192,215,0 +170775531240,215,0 +170775531288,215,0 +170775531337,215,0 +170775531385,215,0 +170775531433,215,0 +170775531483,214,0 +170775531531,215,0 +170775531579,214,0 +170775531627,214,0 +170775531675,214,0 +170775531722,214,0 +170775531770,214,0 +170775531818,214,0 +170775531866,214,0 +170775531914,214,0 +170775531962,215,0 +170775532010,215,0 +170775532058,215,0 +170775532108,215,0 +170775532157,215,0 +170775532205,215,0 +170775532254,215,0 +170775532304,215,0 +170775532352,215,0 +170775532401,215,0 +170775532449,214,0 +170775532499,214,0 +170775532547,214,0 +170775532595,214,0 +170775532643,214,0 +170775532692,214,0 +170775532742,214,0 +170775532790,214,0 +170775532837,214,0 +170775532885,214,0 +170775532933,215,0 +170775532981,215,0 +170775533029,215,0 +170775533079,215,0 +170775533128,215,0 +170775533176,215,0 +170775533224,214,0 +170775533272,214,0 +170775533320,214,0 +170775533369,213,0 +170775533419,214,0 +170775533468,214,0 +170775533516,214,0 +170775533566,214,0 +170775533614,214,0 +170775533662,214,0 +170775533711,214,0 +170775533759,214,0 +170775533807,215,0 +170775533855,215,0 +170775533903,215,0 +170775533951,215,0 +170775533999,215,0 +170775534046,215,0 +170775534094,215,0 +170775534144,213,0 +170775534193,213,0 +170775534241,213,0 +170775534289,213,0 +170775534337,214,0 +170775534385,214,0 +170775534433,214,0 +170775534482,214,0 +170775534532,214,0 +170775534580,214,0 +170775534629,214,0 +170775534679,214,0 +170775534727,215,0 +170775534775,215,0 +170775534823,215,0 +170775534871,215,0 +170775534918,215,0 +170775534968,215,0 +170775535017,213,0 +170775535065,213,0 +170775535113,213,0 +170775535161,213,0 +170775535209,214,0 +170775535256,214,0 +170775535304,214,0 +170775535354,214,0 +170775535401,214,0 +170775535449,214,0 +170775535497,214,0 +170775535545,214,0 +170775535593,214,0 +170775535642,214,0 +170775535692,215,0 +170775535739,215,0 +170775535789,214,0 +170775535837,215,0 +170775535885,213,0 +170775535934,213,0 +170775535984,213,0 +170775536033,214,0 +170775536083,214,0 +170775536131,214,0 +170775536179,214,0 +170775536228,214,0 +170775536278,214,0 +170775536326,214,0 +170775536375,214,0 +170775536423,215,0 +170775536472,214,0 +170775536520,215,0 +170775536570,215,0 +170775536619,214,0 +170775536667,214,0 +170775536715,214,0 +170775536763,213,0 +170775536811,213,0 +170775536860,214,0 +170775536908,214,0 +170775536957,214,0 +170775537005,214,0 +170775537053,214,0 +170775537101,214,0 +170775537149,214,0 +170775537198,214,0 +170775537248,214,0 +170775537296,214,0 +170775537345,215,0 +170775537395,214,0 +170775537443,215,0 +170775537491,215,0 +170775537539,213,0 +170775537588,213,0 +170775537636,213,0 +170775537684,213,0 +170775537733,213,0 +170775537781,213,0 +170775537829,214,0 +170775537879,214,0 +170775537927,214,0 +170775537976,214,0 +170775538024,214,0 +170775538072,214,0 +170775538120,214,0 +170775538168,214,0 +170775538217,214,0 +170775538267,215,0 +170775538315,214,0 +170775538363,214,0 +170775538412,213,0 +170775538462,213,0 +170775538510,214,0 +170775538557,214,0 +170775538605,214,0 +170775538655,214,0 +170775538702,214,0 +170775538752,214,0 +170775538800,214,0 +170775538848,214,0 +170775538895,214,0 +170775538943,214,0 +170775538991,215,0 +170775539039,215,0 +170775539087,215,0 +170775539135,215,0 +170775539184,214,0 +170775539232,213,0 +170775539280,213,0 +170775539328,213,0 +170775539375,214,0 +170775539425,214,0 +170775539473,214,0 +170775539521,214,0 +170775539570,214,0 +170775539618,214,0 +170775539666,214,0 +170775539714,214,0 +170775539761,215,0 +170775539809,214,0 +170775539857,214,0 +170775539905,215,0 +170775539954,214,0 +170775540002,214,0 +170775540050,213,0 +170775540098,214,0 +170775540146,214,0 +170775540195,214,0 +170775540243,214,0 +170775540293,214,0 +170775540342,214,0 +170775540390,214,0 +170775540438,214,0 +170775540486,214,0 +170775540534,214,0 +170775540582,215,0 +170775540630,215,0 +170775540679,215,0 +170775540729,215,0 +170775540777,214,0 +170775540826,214,0 +170775540874,214,0 +170775540922,214,0 +170775540970,214,0 +170775541019,214,0 +170775541069,214,0 +170775541119,214,0 +170775541168,214,0 +170775541216,214,0 +170775541265,214,0 +170775541315,215,0 +170775541363,215,0 +170775541411,215,0 +170775541459,215,0 +170775541507,215,0 +170775541556,215,0 +170775541606,215,0 +170775541653,215,0 +170775541701,214,0 +170775541749,214,0 +170775541797,214,0 +170775541845,214,0 +170775541893,214,0 +170775541942,214,0 +170775541992,214,0 +170775542041,214,0 +170775542089,215,0 +170775542137,214,0 +170775542185,215,0 +170775542235,215,0 +170775542283,215,0 +170775542330,215,0 +170775542378,215,0 +170775542426,215,0 +170775542474,215,0 +170775542522,214,0 +170775542570,214,0 +170775542620,214,0 +170775542667,214,0 +170775542715,214,0 +170775542763,214,0 +170775542811,214,0 +170775542859,214,0 +170775542907,215,0 +170775542955,215,0 +170775543004,215,0 +170775543052,215,0 +170775543102,215,0 +170775543150,215,0 +170775543197,215,0 +170775543245,215,0 +170775543293,215,0 +170775543341,214,0 +170775543389,214,0 +170775543438,214,0 +170775543486,214,0 +170775543534,214,0 +170775543583,214,0 +170775543631,214,0 +170775543679,214,0 +170775543727,215,0 +170775543775,215,0 +170775543823,215,0 +170775543871,215,0 +170775543918,215,0 +170775543968,215,0 +170775544017,215,0 +170775544067,215,0 +170775544115,215,0 +170775544163,215,0 +170775544212,214,0 +170775544262,214,0 +170775544310,214,0 +170775544359,214,0 +170775544407,214,0 +170775544456,214,0 +170775544506,214,0 +170775544554,214,0 +170775544603,215,0 +170775544651,215,0 +170775544699,215,0 +170775544747,215,0 +170775544795,215,0 +170775544843,215,0 +170775544890,215,0 +170775544938,215,0 +170775544986,215,0 +170775545036,214,0 +170775545084,213,0 +170775545131,214,0 +170775545179,214,0 +170775545227,214,0 +170775545275,214,0 +170775545325,214,0 +170775545373,214,0 +170775545422,214,0 +170775545470,214,0 +170775545518,214,0 +170775545566,215,0 +170775545615,215,0 +170775545663,214,0 +170775545713,215,0 +170775545761,215,0 +170775545809,215,0 +170775545857,214,0 +170775545905,213,0 +170775545953,213,0 +170775546000,214,0 +170775546050,213,0 +170775546098,214,0 +170775546146,214,0 +170775546195,214,0 +170775546243,214,0 +170775546291,214,0 +170775546341,214,0 +170775546390,215,0 +170775546440,214,0 +170775546488,214,0 +170775546537,215,0 +170775546585,215,0 +170775546633,215,0 +170775546683,214,0 +170775546732,213,0 +170775546780,213,0 +170775546828,213,0 +170775546876,213,0 +170775546925,213,0 +170775546975,213,0 +170775547023,213,0 +170775547071,213,0 +170775547119,214,0 +170775547167,214,0 +170775547215,214,0 +170775547262,214,0 +170775547310,214,0 +170775547358,214,0 +170775547406,214,0 +170775547454,214,0 +170775547502,214,0 +170775547550,214,0 +170775547599,214,0 +170775547647,214,0 +170775547695,214,0 +170775547743,214,0 +170775547792,214,0 +170775547840,214,0 +170775547888,214,0 +170775547936,214,0 +170775547984,213,0 +170775548031,213,0 +170775548081,213,0 +170775548129,213,0 +170775548177,214,0 +170775548225,214,0 +170775548274,214,0 +170775548322,214,0 +170775548371,214,0 +170775548419,214,0 +170775548467,214,0 +170775548515,214,0 +170775548563,214,0 +170775548611,214,0 +170775548658,215,0 +170775548706,214,0 +170775548754,214,0 +170775548802,213,0 +170775548851,214,0 +170775548899,214,0 +170775548947,214,0 +170775548995,214,0 +170775549043,214,0 +170775549091,214,0 +170775549139,214,0 +170775549186,214,0 +170775549234,214,0 +170775549282,215,0 +170775549331,214,0 +170775549381,215,0 +170775549429,215,0 +170775549477,215,0 +170775549524,215,0 +170775549572,215,0 +170775549620,214,0 +170775549668,214,0 +170775549716,214,0 +170775549764,214,0 +170775549814,214,0 +170775549863,214,0 +170775549911,214,0 +170775549959,214,0 +170775550007,214,0 +170775550055,215,0 +170775550103,215,0 +170775550152,215,0 +170775550200,215,0 +170775550248,215,0 +170775550298,215,0 +170775550346,215,0 +170775550395,215,0 +170775550443,214,0 +170775550491,214,0 +170775550539,214,0 +170775550587,214,0 +170775550635,214,0 +170775550683,214,0 +170775550730,214,0 +170775550778,214,0 +170775550828,214,0 +170775550876,215,0 +170775550924,215,0 +170775550972,215,0 +170775551021,215,0 +170775551069,215,0 +170775551117,215,0 +170775551165,215,0 +170775551214,215,0 +170775551262,214,0 +170775551310,214,0 +170775551360,214,0 +170775551408,214,0 +170775551456,214,0 +170775551505,214,0 +170775551555,214,0 +170775551603,214,0 +170775551651,214,0 +170775551700,215,0 +170775551750,214,0 +170775551798,215,0 +170775551847,215,0 +170775551895,215,0 +170775551945,215,0 +170775551993,215,0 +170775552040,214,0 +170775552090,214,0 +170775552138,214,0 +170775552186,214,0 +170775552234,214,0 +170775552283,214,0 +170775552333,214,0 +170775552381,214,0 +170775552430,214,0 +170775552478,215,0 +170775552528,214,0 +170775552576,215,0 +170775552624,215,0 +170775552673,215,0 +170775552721,215,0 +170775552769,215,0 +170775552819,215,0 +170775552867,215,0 +170775552915,214,0 +170775552964,214,0 +170775553014,214,0 +170775553061,214,0 +170775553111,214,0 +170775553160,214,0 +170775553208,214,0 +170775553256,214,0 +170775553304,214,0 +170775553352,215,0 +170775553400,215,0 +170775553448,215,0 +170775553495,215,0 +170775553543,215,0 +170775553591,215,0 +170775553639,215,0 +170775553689,215,0 +170775553738,214,0 +170775553786,214,0 +170775553836,214,0 +170775553885,214,0 +170775553935,214,0 +170775553983,214,0 +170775554031,214,0 +170775554078,214,0 +170775554126,214,0 +170775554176,214,0 +170775554224,215,0 +170775554272,215,0 +170775554320,215,0 +170775554368,215,0 +170775554416,215,0 +170775554465,215,0 +170775554513,215,0 +170775554561,214,0 +170775554609,214,0 +170775554658,214,0 +170775554708,214,0 +170775554756,214,0 +170775554805,214,0 +170775554855,214,0 +170775554903,214,0 +170775554952,214,0 +170775555002,215,0 +170775555050,215,0 +170775555098,215,0 +170775555146,215,0 +170775555194,215,0 +170775555243,215,0 +170775555293,215,0 +170775555342,215,0 +170775555391,214,0 +170775555439,214,0 +170775555487,214,0 +170775555537,214,0 +170775555585,214,0 +170775555633,214,0 +170775555681,214,0 +170775555730,214,0 +170775555778,215,0 +170775555827,214,0 +170775555877,214,0 +170775555925,214,0 +170775555973,215,0 +170775556022,215,0 +170775556072,215,0 +170775556120,215,0 +170775556169,215,0 +170775556217,214,0 +170775556267,214,0 +170775556316,214,0 +170775556364,214,0 +170775556412,214,0 +170775556462,214,0 +170775556509,214,0 +170775556557,215,0 +170775556605,214,0 +170775556653,215,0 +170775556702,215,0 +170775556750,215,0 +170775556798,215,0 +170775556846,215,0 +170775556894,215,0 +170775556942,215,0 +170775556989,215,0 +170775557037,214,0 +170775557085,214,0 +170775557135,214,0 +170775557183,214,0 +170775557232,214,0 +170775557280,215,0 +170775557328,215,0 +170775557376,215,0 +170775557424,215,0 +170775557471,215,0 +170775557519,216,0 +170775557567,215,0 +170775557615,215,0 +170775557663,215,0 +170775557712,215,0 +170775557760,215,0 +170775557810,215,0 +170775557858,214,0 +170775557906,214,0 +170775557954,214,0 +170775558003,214,0 +170775558051,214,0 +170775558099,214,0 +170775558147,214,0 +170775558196,215,0 +170775558244,215,0 +170775558294,215,0 +170775558342,215,0 +170775558389,215,0 +170775558437,215,0 +170775558485,215,0 +170775558533,215,0 +170775558581,215,0 +170775558630,215,0 +170775558680,214,0 +170775558728,213,0 +170775558775,213,0 +170775558823,213,0 +170775558871,214,0 +170775558919,214,0 +170775558967,214,0 +170775559015,214,0 +170775559063,214,0 +170775559111,214,0 +170775559159,214,0 +170775559208,214,0 +170775559258,214,0 +170775559306,215,0 +170775559353,215,0 +170775559401,215,0 +170775559449,215,0 +170775559497,214,0 +170775559545,213,0 +170775559593,213,0 +170775559643,213,0 +170775559691,213,0 +170775559740,214,0 +170775559788,214,0 +170775559836,214,0 +170775559885,214,0 +170775559935,214,0 +170775559984,214,0 +170775560034,214,0 +170775560082,214,0 +170775560131,215,0 +170775560179,215,0 +170775560227,214,0 +170775560275,214,0 +170775560323,214,0 +170775560372,213,0 +170775560422,213,0 +170775560471,214,0 +170775560519,214,0 +170775560567,214,0 +170775560615,214,0 +170775560663,214,0 +170775560711,214,0 +170775560759,214,0 +170775560807,215,0 +170775560855,215,0 +170775560904,215,0 +170775560952,215,0 +170775561000,215,0 +170775561048,215,0 +170775561096,215,0 +170775561144,214,0 +170775561192,214,0 +170775561241,214,0 +170775561291,214,0 +170775561339,214,0 +170775561387,214,0 +170775561435,214,0 +170775561483,214,0 +170775561532,214,0 +170775561580,214,0 +170775561630,215,0 +170775561678,214,0 +170775561725,215,0 +170775561773,215,0 +170775561821,215,0 +170775561871,215,0 +170775561919,215,0 +170775561967,215,0 +170775562015,214,0 +170775562063,214,0 +170775562111,214,0 +170775562160,214,0 +170775562210,214,0 +170775562258,214,0 +170775562307,214,0 +170775562355,214,0 +170775562405,214,0 +170775562454,215,0 +170775562502,215,0 +170775562551,215,0 +170775562599,215,0 +170775562647,215,0 +170775562695,215,0 +170775562745,215,0 +170775562793,214,0 +170775562841,214,0 +170775562890,214,0 +170775562938,214,0 +170775562988,214,0 +170775563037,214,0 +170775563087,214,0 +170775563135,214,0 +170775563183,215,0 +170775563230,215,0 +170775563278,215,0 +170775563326,215,0 +170775563374,215,0 +170775563422,215,0 +170775563470,215,0 +170775563518,215,0 +170775563566,215,0 +170775563616,215,0 +170775563665,214,0 +170775563715,214,0 +170775563762,214,0 +170775563810,214,0 +170775563859,214,0 +170775563908,214,0 +170775563957,214,0 +170775564007,214,0 +170775564055,214,0 +170775564104,215,0 +170775564154,214,0 +170775564204,215,0 +170775564251,215,0 +170775564301,215,0 +170775564349,215,0 +170775564397,215,0 +170775564446,215,0 +170775564494,214,0 +170775564544,213,0 +170775564592,214,0 +170775564641,214,0 +170775564689,214,0 +170775564739,214,0 +170775564787,214,0 +170775564836,214,0 +170775564886,214,0 +170775564934,214,0 +170775564982,214,0 +170775565031,214,0 +170775565079,215,0 +170775565127,214,0 +170775565175,215,0 +170775565223,215,0 +170775565272,214,0 +170775565320,213,0 +170775565368,213,0 +170775565416,213,0 +170775565466,213,0 +170775565514,214,0 +170775565562,214,0 +170775565610,214,0 +170775565658,214,0 +170775565707,214,0 +170775565757,214,0 +170775565805,214,0 +170775565854,215,0 +170775565902,215,0 +170775565950,214,0 +170775565998,215,0 +170775566047,215,0 +170775566095,214,0 +170775566143,213,0 +170775566193,214,0 +170775566242,214,0 +170775566292,214,0 +170775566340,214,0 +170775566389,214,0 +170775566437,214,0 +170775566485,214,0 +170775566533,214,0 +170775566581,214,0 +170775566629,214,0 +170775566677,214,0 +170775566725,214,0 +170775566773,214,0 +170775566821,214,0 +170775566868,214,0 +170775566916,214,0 +170775566964,213,0 +170775567014,213,0 +170775567062,213,0 +170775567110,214,0 +170775567159,214,0 +170775567207,214,0 +170775567255,214,0 +170775567303,214,0 +170775567351,214,0 +170775567399,214,0 +170775567447,215,0 +170775567496,215,0 +170775567544,215,0 +170775567594,215,0 +170775567642,215,0 +170775567689,215,0 +170775567739,214,0 +170775567787,214,0 +170775567835,214,0 +170775567882,214,0 +170775567930,214,0 +170775567978,214,0 +170775568026,214,0 +170775568075,215,0 +170775568123,215,0 +170775568171,215,0 +170775568219,215,0 +170775568266,215,0 +170775568316,215,0 +170775568364,215,0 +170775568412,215,0 +170775568461,215,0 +170775568509,214,0 +170775568559,214,0 +170775568607,214,0 +170775568655,214,0 +170775568702,214,0 +170775568750,214,0 +170775568800,215,0 +170775568849,215,0 +170775568899,214,0 +170775568947,214,0 +170775568996,215,0 +170775569044,215,0 +170775569092,215,0 +170775569140,215,0 +170775569190,215,0 +170775569239,215,0 +170775569287,215,0 +170775569336,215,0 +170775569384,214,0 +170775569432,214,0 +170775569480,214,0 +170775569530,214,0 +170775569578,214,0 +170775569627,214,0 +170775569675,214,0 +170775569725,214,0 +170775569774,215,0 +170775569822,215,0 +170775569870,215,0 +170775569918,215,0 +170775569966,215,0 +170775570014,215,0 +170775570062,215,0 +170775570109,215,0 +170775570157,215,0 +170775570205,214,0 +170775570253,214,0 +170775570301,215,0 +170775570348,215,0 +170775570398,215,0 +170775570446,215,0 +170775570493,215,0 +170775570541,215,0 +170775570591,215,0 +170775570638,215,0 +170775570686,215,0 +170775570734,215,0 +170775570784,215,0 +170775570832,215,0 +170775570880,215,0 +170775570927,215,0 +170775570977,215,0 +170775571026,215,0 +170775571074,215,0 +170775571122,215,0 +170775571172,215,0 +170775571221,215,0 +170775571269,215,0 +170775571319,215,0 +170775571368,215,0 +170775571416,215,0 +170775571464,215,0 +170775571514,215,0 +170775571563,215,0 +170775571613,215,0 +170775571662,215,0 +170775571710,215,0 +170775571758,214,0 +170775571806,213,0 +170775571855,214,0 +170775571903,214,0 +170775571953,214,0 +170775572001,214,0 +170775572050,214,0 +170775572098,214,0 +170775572148,214,0 +170775572196,215,0 +170775572245,214,0 +170775572295,215,0 +170775572342,215,0 +170775572390,215,0 +170775572438,215,0 +170775572486,215,0 +170775572534,215,0 +170775572584,214,0 +170775572632,214,0 +170775572681,214,0 +170775572731,214,0 +170775572779,214,0 +170775572827,214,0 +170775572875,214,0 +170775572922,214,0 +170775572972,215,0 +170775573022,215,0 +170775573069,215,0 +170775573117,215,0 +170775573167,215,0 +170775573216,215,0 +170775573266,215,0 +170775573315,215,0 +170775573365,214,0 +170775573413,214,0 +170775573462,214,0 +170775573512,214,0 +170775573560,214,0 +170775573608,214,0 +170775573657,214,0 +170775573707,214,0 +170775573755,215,0 +170775573804,215,0 +170775573854,215,0 +170775573903,215,0 +170775573951,215,0 +170775573999,215,0 +170775574049,214,0 +170775574097,215,0 +170775574146,214,0 +170775574194,214,0 +170775574242,214,0 +170775574291,214,0 +170775574339,214,0 +170775574387,214,0 +170775574437,214,0 +170775574486,214,0 +170775574534,215,0 +170775574582,215,0 +170775574632,215,0 +170775574680,215,0 +170775574728,215,0 +170775574776,215,0 +170775574825,215,0 +170775574873,215,0 +170775574921,215,0 +170775574969,214,0 +170775575017,214,0 +170775575065,214,0 +170775575113,215,0 +170775575161,214,0 +170775575209,215,0 +170775575257,215,0 +170775575306,215,0 +170775575354,215,0 +170775575402,215,0 +170775575450,215,0 +170775575499,215,0 +170775575547,215,0 +170775575597,215,0 +170775575645,215,0 +170775575694,215,0 +170775575744,215,0 +170775575792,214,0 +170775575840,214,0 +170775575888,214,0 +170775575936,214,0 +170775575983,214,0 +170775576031,214,0 +170775576079,214,0 +170775576127,214,0 +170775576175,214,0 +170775576223,214,0 +170775576271,215,0 +170775576319,215,0 +170775576369,215,0 +170775576418,215,0 +170775576466,215,0 +170775576514,214,0 +170775576562,214,0 +170775576610,213,0 +170775576658,213,0 +170775576706,213,0 +170775576754,214,0 +170775576803,214,0 +170775576851,214,0 +170775576899,214,0 +170775576949,214,0 +170775576998,214,0 +170775577046,214,0 +170775577096,214,0 +170775577144,214,0 +170775577192,215,0 +170775577241,214,0 +170775577290,215,0 +170775577338,215,0 +170775577388,213,0 +170775577436,213,0 +170775577484,213,0 +170775577533,213,0 +170775577581,213,0 +170775577629,213,0 +170775577678,214,0 +170775577726,214,0 +170775577774,214,0 +170775577822,214,0 +170775577872,214,0 +170775577919,214,0 +170775577969,214,0 +170775578018,214,0 +170775578066,214,0 +170775578114,214,0 +170775578162,214,0 +170775578212,213,0 +170775578259,213,0 +170775578307,213,0 +170775578357,213,0 +170775578405,213,0 +170775578454,213,0 +170775578502,213,0 +170775578550,213,0 +170775578598,214,0 +170775578646,214,0 +170775578696,214,0 +170775578745,214,0 +170775578795,214,0 +170775578843,214,0 +170775578891,214,0 +170775578939,215,0 +170775578988,213,0 +170775579038,213,0 +170775579087,213,0 +170775579135,213,0 +170775579185,213,0 +170775579233,213,0 +170775579282,214,0 +170775579330,214,0 +170775579378,214,0 +170775579426,214,0 +170775579475,214,0 +170775579523,214,0 +170775579571,214,0 +170775579621,214,0 +170775579669,215,0 +170775579718,215,0 +170775579766,214,0 +170775579814,213,0 +170775579862,214,0 +170775579910,214,0 +170775579959,214,0 +170775580009,214,0 +170775580057,214,0 +170775580105,214,0 +170775580153,214,0 +170775580201,214,0 +170775580250,215,0 +170775580300,214,0 +170775580348,215,0 +170775580395,215,0 +170775580443,215,0 +170775580491,214,0 +170775580539,214,0 +170775580588,214,0 +170775580636,214,0 +170775580684,214,0 +170775580732,214,0 +170775580780,214,0 +170775580827,214,0 +170775580877,215,0 +170775580925,215,0 +170775580973,215,0 +170775581020,214,0 +170775581068,215,0 +170775581118,215,0 +170775581165,215,0 +170775581215,215,0 +170775581263,215,0 +170775581311,215,0 +170775581358,214,0 +170775581406,214,0 +170775581454,214,0 +170775581502,214,0 +170775581551,214,0 +170775581599,214,0 +170775581647,214,0 +170775581695,215,0 +170775581743,215,0 +170775581791,215,0 +170775581838,215,0 +170775581886,215,0 +170775581934,215,0 +170775581982,215,0 +170775582030,215,0 +170775582078,215,0 +170775582126,215,0 +170775582173,214,0 +170775582221,214,0 +170775582271,214,0 +170775582319,214,0 +170775582366,214,0 +170775582414,214,0 +170775582462,214,0 +170775582511,215,0 +170775582559,215,0 +170775582607,215,0 +170775582655,215,0 +170775582705,215,0 +170775582753,215,0 +170775582801,215,0 +170775582848,215,0 +170775582896,215,0 +170775582944,215,0 +170775582992,215,0 +170775583040,215,0 +170775583090,215,0 +170775583139,215,0 +170775583189,215,0 +170775583237,215,0 +170775583285,215,0 +170775583333,215,0 +170775583380,215,0 +170775583428,215,0 +170775583476,215,0 +170775583524,215,0 +170775583572,215,0 +170775583620,215,0 +170775583669,215,0 +170775583719,215,0 +170775583767,215,0 +170775583814,215,0 +170775583862,215,0 +170775583910,215,0 +170775583958,215,0 +170775584006,215,0 +170775584054,215,0 +170775584102,215,0 +170775584149,215,0 +170775584197,215,0 +170775584245,215,0 +170775584293,215,0 +170775584341,215,0 +170775584390,215,0 +170775584439,215,0 +170775584487,215,0 +170775584535,215,0 +170775584584,214,0 +170775584632,214,0 +170775584680,214,0 +170775584730,214,0 +170775584778,214,0 +170775584825,215,0 +170775584873,215,0 +170775584921,215,0 +170775584971,215,0 +170775585020,215,0 +170775585068,215,0 +170775585118,215,0 +170775585167,215,0 +170775585215,215,0 +170775585263,215,0 +170775585311,215,0 +170775585361,215,0 +170775585409,214,0 +170775585457,214,0 +170775585506,214,0 +170775585556,214,0 +170775585603,214,0 +170775585653,214,0 +170775585701,215,0 +170775585749,215,0 +170775585797,215,0 +170775585846,215,0 +170775585894,215,0 +170775585944,215,0 +170775585992,215,0 +170775586040,215,0 +170775586088,215,0 +170775586136,215,0 +170775586183,214,0 +170775586233,214,0 +170775586281,213,0 +170775586330,214,0 +170775586378,214,0 +170775586426,214,0 +170775586476,214,0 +170775586525,214,0 +170775586575,214,0 +170775586623,215,0 +170775586672,215,0 +170775586722,215,0 +170775586770,215,0 +170775586819,215,0 +170775586867,215,0 +170775586915,214,0 +170775586965,214,0 +170775587013,214,0 +170775587061,214,0 +170775587109,214,0 +170775587158,214,0 +170775587206,214,0 +170775587254,214,0 +170775587302,214,0 +170775587350,214,0 +170775587399,214,0 +170775587447,215,0 +170775587495,215,0 +170775587543,215,0 +170775587591,215,0 +170775587639,215,0 +170775587687,215,0 +170775587737,214,0 +170775587784,214,0 +170775587832,214,0 +170775587880,214,0 +170775587930,214,0 +170775587979,214,0 +170775588027,214,0 +170775588077,214,0 +170775588126,215,0 +170775588174,214,0 +170775588224,214,0 +170775588272,215,0 +170775588320,214,0 +170775588368,215,0 +170775588415,215,0 +170775588463,215,0 +170775588511,215,0 +170775588559,214,0 +170775588607,213,0 +170775588656,213,0 +170775588704,213,0 +170775588752,214,0 +170775588799,214,0 +170775588847,214,0 +170775588895,214,0 +170775588943,214,0 +170775588991,214,0 +170775589039,214,0 +170775589087,214,0 +170775589134,214,0 +170775589182,215,0 +170775589230,215,0 +170775589278,215,0 +170775589326,215,0 +170775589374,214,0 +170775589422,213,0 +170775589470,213,0 +170775589517,214,0 +170775589565,213,0 +170775589613,214,0 +170775589661,214,0 +170775589709,214,0 +170775589759,214,0 +170775589808,214,0 +170775589856,214,0 +170775589906,214,0 +170775589954,214,0 +170775590002,214,0 +170775590049,214,0 +170775590097,214,0 +170775590145,215,0 +170775590193,214,0 +170775590241,213,0 +170775590291,213,0 +170775590340,214,0 +170775590388,214,0 +170775590436,214,0 +170775590484,213,0 +170775590532,214,0 +170775590580,214,0 +170775590630,214,0 +170775590678,214,0 +170775590725,214,0 +170775590773,214,0 +170775590821,214,0 +170775590869,214,0 +170775590917,214,0 +170775590967,214,0 +170775591015,213,0 +170775591063,214,0 +170775591112,213,0 +170775591162,214,0 +170775591210,214,0 +170775591258,214,0 +170775591307,214,0 +170775591355,214,0 +170775591403,214,0 +170775591451,214,0 +170775591500,214,0 +170775591548,214,0 +170775591596,214,0 +170775591645,215,0 +170775591693,215,0 +170775591741,215,0 +170775591791,214,0 +170775591838,214,0 +170775591886,214,0 +170775591934,214,0 +170775591982,214,0 +170775592030,214,0 +170775592078,214,0 +170775592125,214,0 +170775592173,214,0 +170775592221,214,0 +170775592269,214,0 +170775592319,215,0 +170775592367,215,0 +170775592416,215,0 +170775592464,215,0 +170775592512,215,0 +170775592559,215,0 +170775592607,214,0 +170775592655,214,0 +170775592703,214,0 +170775592752,214,0 +170775592800,214,0 +170775592848,214,0 +170775592896,214,0 +170775592944,215,0 +170775592992,214,0 +170775593041,215,0 +170775593089,215,0 +170775593137,215,0 +170775593185,215,0 +170775593233,215,0 +170775593281,215,0 +170775593328,215,0 +170775593376,214,0 +170775593424,214,0 +170775593472,214,0 +170775593519,214,0 +170775593567,214,0 +170775593615,214,0 +170775593663,215,0 +170775593710,215,0 +170775593758,215,0 +170775593806,215,0 +170775593854,215,0 +170775593902,215,0 +170775593949,215,0 +170775593997,215,0 +170775594045,215,0 +170775594093,215,0 +170775594140,215,0 +170775594188,215,0 +170775594236,214,0 +170775594284,215,0 +170775594332,214,0 +170775594379,214,0 +170775594427,215,0 +170775594475,215,0 +170775594523,215,0 +170775594571,215,0 +170775594619,215,0 +170775594668,215,0 +170775594716,215,0 +170775594764,215,0 +170775594811,215,0 +170775594859,215,0 +170775594907,215,0 +170775594955,215,0 +170775595003,214,0 +170775595050,214,0 +170775595098,214,0 +170775595146,215,0 +170775595194,215,0 +170775595243,215,0 +170775595291,215,0 +170775595339,215,0 +170775595389,215,0 +170775595437,215,0 +170775595486,215,0 +170775595534,215,0 +170775595582,215,0 +170775595630,215,0 +170775595678,215,0 +170775595725,215,0 +170775595775,214,0 +170775595823,214,0 +170775595871,214,0 +170775595918,214,0 +170775595966,214,0 +170775596014,214,0 +170775596062,214,0 +170775596112,214,0 +170775596160,215,0 +170775596209,215,0 +170775596257,215,0 +170775596307,215,0 +170775596354,215,0 +170775596402,215,0 +170775596450,215,0 +170775596500,215,0 +170775596548,215,0 +170775596597,215,0 +170775596645,214,0 +170775596695,214,0 +170775596743,214,0 +170775596792,214,0 +170775596840,214,0 +170775596890,214,0 +170775596938,214,0 +170775596985,214,0 +170775597035,214,0 +170775597083,215,0 +170775597132,215,0 +170775597180,215,0 +170775597228,215,0 +170775597276,215,0 +170775597323,215,0 +170775597371,215,0 +170775597419,214,0 +170775597467,214,0 +170775597515,214,0 +170775597563,214,0 +170775597611,214,0 +170775597659,214,0 +170775597706,214,0 +170775597754,214,0 +170775597802,214,0 +170775597850,215,0 +170775597898,215,0 +170775597946,215,0 +170775597993,215,0 +170775598041,215,0 +170775598089,215,0 +170775598139,215,0 +170775598186,215,0 +170775598234,214,0 +170775598282,214,0 +170775598330,214,0 +170775598378,214,0 +170775598427,214,0 +170775598475,214,0 +170775598523,215,0 +170775598571,214,0 +170775598621,215,0 +170775598670,215,0 +170775598720,215,0 +170775598767,215,0 +170775598815,215,0 +170775598863,215,0 +170775598911,215,0 +170775598960,215,0 +170775599010,214,0 +170775599059,214,0 +170775599109,214,0 +170775599157,213,0 +170775599205,214,0 +170775599252,214,0 +170775599300,214,0 +170775599348,214,0 +170775599398,215,0 +170775599446,215,0 +170775599494,215,0 +170775599541,215,0 +170775599589,214,0 +170775599639,215,0 +170775599688,215,0 +170775599736,215,0 +170775599784,215,0 +170775599832,214,0 +170775599880,213,0 +170775599928,214,0 +170775599976,214,0 +170775600023,214,0 +170775600073,214,0 +170775600121,214,0 +170775600169,214,0 +170775600217,214,0 +170775600266,215,0 +170775600316,215,0 +170775600365,215,0 +170775600413,214,0 +170775600461,215,0 +170775600509,214,0 +170775600557,214,0 +170775600605,214,0 +170775600653,214,0 +170775600702,213,0 +170775600752,214,0 +170775600800,214,0 +170775600848,214,0 +170775600897,214,0 +170775600945,214,0 +170775600993,214,0 +170775601041,214,0 +170775601089,215,0 +170775601137,214,0 +170775601185,215,0 +170775601233,215,0 +170775601281,215,0 +170775601329,215,0 +170775601377,214,0 +170775601425,214,0 +170775601473,214,0 +170775601520,213,0 +170775601568,214,0 +170775601618,214,0 +170775601667,214,0 +170775601715,214,0 +170775601763,214,0 +170775601811,214,0 +170775601859,214,0 +170775601907,216,0 +170775601955,215,0 +170775602002,215,0 +170775602050,215,0 +170775602098,214,0 +170775602146,215,0 +170775602194,215,0 +170775602243,214,0 +170775602291,214,0 +170775602339,213,0 +170775602389,214,0 +170775602438,214,0 +170775602486,214,0 +170775602534,214,0 +170775602582,214,0 +170775602632,214,0 +170775602680,214,0 +170775602728,214,0 +170775602776,214,0 +170775602824,215,0 +170775602873,215,0 +170775602923,215,0 +170775602970,215,0 +170775603018,214,0 +170775603066,214,0 +170775603114,213,0 +170775603162,214,0 +170775603210,214,0 +170775603260,214,0 +170775603308,214,0 +170775603356,214,0 +170775603403,214,0 +170775603451,214,0 +170775603499,214,0 +170775603547,215,0 +170775603595,214,0 +170775603645,215,0 +170775603694,215,0 +170775603742,215,0 +170775603790,215,0 +170775603840,214,0 +170775603887,214,0 +170775603935,214,0 +170775603983,214,0 +170775604031,214,0 +170775604079,214,0 +170775604127,214,0 +170775604175,214,0 +170775604223,215,0 +170775604272,215,0 +170775604321,215,0 +170775604369,215,0 +170775604417,215,0 +170775604467,215,0 +170775604515,215,0 +170775604564,215,0 +170775604612,215,0 +170775604662,214,0 +170775604710,214,0 +170775604759,214,0 +170775604807,214,0 +170775604855,215,0 +170775604903,215,0 +170775604951,215,0 +170775604999,215,0 +170775605047,215,0 +170775605094,216,0 +170775605144,215,0 +170775605192,215,0 +170775605240,215,0 +170775605289,215,0 +170775605337,215,0 +170775605385,215,0 +170775605433,215,0 +170775605481,214,0 +170775605530,214,0 +170775605578,214,0 +170775605626,214,0 +170775605676,214,0 +170775605725,215,0 +170775605773,215,0 +170775605823,215,0 +170775605870,215,0 +170775605918,215,0 +170775605968,215,0 +170775606016,215,0 +170775606065,215,0 +170775606113,215,0 +170775606163,215,0 +170775606212,215,0 +170775606260,214,0 +170775606308,214,0 +170775606356,215,0 +170775606404,214,0 +170775606454,214,0 +170775606503,214,0 +170775606553,215,0 +170775606602,215,0 +170775606650,215,0 +170775606698,215,0 +170775606746,215,0 +170775606794,215,0 +170775606843,215,0 +170775606891,215,0 +170775606939,215,0 +170775606987,215,0 +170775607035,215,0 +170775607082,214,0 +170775607130,214,0 +170775607178,214,0 +170775607226,215,0 +170775607274,215,0 +170775607321,215,0 +170775607369,215,0 +170775607417,215,0 +170775607466,215,0 +170775607516,215,0 +170775607564,215,0 +170775607612,215,0 +170775607660,215,0 +170775607707,215,0 +170775607755,215,0 +170775607803,215,0 +170775607853,214,0 +170775607901,214,0 +170775607948,214,0 +170775607996,215,0 +170775608044,215,0 +170775608092,215,0 +170775608140,215,0 +170775608190,215,0 +170775608238,215,0 +170775608286,215,0 +170775608334,215,0 +170775608381,215,0 +170775608431,215,0 +170775608480,215,0 +170775608528,215,0 +170775608576,215,0 +170775608624,215,0 +170775608672,213,0 +170775608721,213,0 +170775608769,214,0 +170775608817,214,0 +170775608865,214,0 +170775608915,215,0 +170775608964,214,0 +170775609012,214,0 +170775609060,215,0 +170775609108,215,0 +170775609156,215,0 +170775609205,215,0 +170775609253,215,0 +170775609301,215,0 +170775609350,215,0 +170775609398,215,0 +170775609446,214,0 +170775609494,214,0 +170775609543,214,0 +170775609591,214,0 +170775609641,214,0 +170775609690,214,0 +170775609738,214,0 +170775609786,214,0 +170775609834,214,0 +170775609882,214,0 +170775609932,214,0 +170775609981,215,0 +170775610029,214,0 +170775610077,215,0 +170775610125,215,0 +170775610174,215,0 +170775610222,215,0 +170775610270,214,0 +170775610318,214,0 +170775610366,214,0 +170775610415,214,0 +170775610463,214,0 +170775610512,214,0 +170775610560,214,0 +170775610610,215,0 +170775610658,214,0 +170775610706,215,0 +170775610755,215,0 +170775610804,215,0 +170775610852,215,0 +170775610900,215,0 +170775610949,215,0 +170775610997,214,0 +170775611045,215,0 +170775611093,214,0 +170775611141,214,0 +170775611189,214,0 +170775611237,214,0 +170775611285,214,0 +170775611334,214,0 +170775611384,214,0 +170775611432,214,0 +170775611480,214,0 +170775611528,214,0 +170775611577,215,0 +170775611627,215,0 +170775611674,215,0 +170775611722,215,0 +170775611770,214,0 +170775611818,215,0 +170775611867,214,0 +170775611915,214,0 +170775611965,213,0 +170775612013,214,0 +170775612061,214,0 +170775612108,214,0 +170775612158,214,0 +170775612208,214,0 +170775612256,215,0 +170775612303,215,0 +170775612351,215,0 +170775612399,215,0 +170775612449,215,0 +170775612497,215,0 +170775612545,215,0 +170775612593,215,0 +170775612642,214,0 +170775612690,214,0 +170775612738,214,0 +170775612786,214,0 +170775612834,214,0 +170775612882,214,0 +170775612930,214,0 +170775612978,214,0 +170775613026,215,0 +170775613074,215,0 +170775613122,215,0 +170775613171,215,0 +170775613219,215,0 +170775613268,215,0 +170775613316,215,0 +170775613364,215,0 +170775613412,215,0 +170775613460,214,0 +170775613508,214,0 +170775613556,214,0 +170775613605,214,0 +170775613653,214,0 +170775613703,214,0 +170775613751,214,0 +170775613798,214,0 +170775613846,214,0 +170775613894,214,0 +170775613942,215,0 +170775613990,215,0 +170775614038,215,0 +170775614088,215,0 +170775614135,215,0 +170775614183,215,0 +170775614231,215,0 +170775614279,214,0 +170775614327,214,0 +170775614375,214,0 +170775614423,214,0 +170775614472,214,0 +170775614522,214,0 +170775614570,214,0 +170775614618,214,0 +170775614666,214,0 +170775614715,214,0 +170775614763,215,0 +170775614811,214,0 +170775614860,215,0 +170775614910,215,0 +170775614959,215,0 +170775615009,214,0 +170775615058,214,0 +170775615106,214,0 +170775615156,214,0 +170775615205,214,0 +170775615253,214,0 +170775615301,214,0 +170775615351,214,0 +170775615400,214,0 +170775615450,214,0 +170775615498,214,0 +170775615546,214,0 +170775615593,215,0 +170775615641,214,0 +170775615689,215,0 +170775615739,215,0 +170775615787,215,0 +170775615835,214,0 +170775615883,214,0 +170775615932,214,0 +170775615982,214,0 +170775616030,214,0 +170775616079,214,0 +170775616127,214,0 +170775616177,214,0 +170775616225,214,0 +170775616273,214,0 +170775616320,215,0 +170775616368,215,0 +170775616418,215,0 +170775616466,215,0 +170775616513,215,0 +170775616561,215,0 +170775616609,215,0 +170775616657,214,0 +170775616705,214,0 +170775616753,214,0 +170775616801,214,0 +170775616848,214,0 +170775616896,214,0 +170775616944,214,0 +170775616992,215,0 +170775617040,215,0 +170775617088,214,0 +170775617137,215,0 +170775617187,215,0 +170775617235,215,0 +170775617283,215,0 +170775617330,215,0 +170775617380,215,0 +170775617428,215,0 +170775617476,214,0 +170775617524,214,0 +170775617572,214,0 +170775617621,214,0 +170775617669,214,0 +170775617719,215,0 +170775617768,215,0 +170775617818,215,0 +170775617867,215,0 +170775617915,215,0 +170775617963,215,0 +170775618013,215,0 +170775618062,215,0 +170775618110,215,0 +170775618158,215,0 +170775618208,215,0 +170775618256,215,0 +170775618303,214,0 +170775618351,214,0 +170775618399,214,0 +170775618447,214,0 +170775618496,215,0 +170775618544,215,0 +170775618594,215,0 +170775618643,215,0 +170775618693,215,0 +170775618741,215,0 +170775618789,215,0 +170775618838,215,0 +170775618886,215,0 +170775618934,215,0 +170775618982,215,0 +170775619030,215,0 +170775619078,214,0 +170775619127,214,0 +170775619177,214,0 +170775619224,215,0 +170775619272,214,0 +170775619320,214,0 +170775619368,215,0 +170775619416,215,0 +170775619465,215,0 +170775619515,215,0 +170775619562,215,0 +170775619610,215,0 +170775619658,215,0 +170775619706,215,0 +170775619754,215,0 +170775619803,215,0 +170775619853,215,0 +170775619902,214,0 +170775619952,214,0 +170775620000,214,0 +170775620048,214,0 +170775620096,215,0 +170775620145,215,0 +170775620195,215,0 +170775620243,215,0 +170775620291,215,0 +170775620339,215,0 +170775620387,215,0 +170775620436,215,0 +170775620484,215,0 +170775620532,215,0 +170775620580,215,0 +170775620629,215,0 +170775620679,215,0 +170775620727,214,0 +170775620776,214,0 +170775620824,214,0 +170775620872,214,0 +170775620922,214,0 +170775620971,215,0 +170775621019,215,0 +170775621067,215,0 +170775621115,215,0 +170775621163,215,0 +170775621212,215,0 +170775621260,215,0 +170775621308,215,0 +170775621358,215,0 +170775621407,215,0 +170775621457,214,0 +170775621505,214,0 +170775621553,213,0 +170775621602,214,0 +170775621651,214,0 +170775621699,214,0 +170775621747,214,0 +170775621795,214,0 +170775621845,214,0 +170775621894,214,0 +170775621942,215,0 +170775621992,215,0 +170775622040,215,0 +170775622087,215,0 +170775622135,215,0 +170775622183,215,0 +170775622231,215,0 +170775622279,214,0 +170775622327,214,0 +170775622375,214,0 +170775622423,214,0 +170775622470,214,0 +170775622518,214,0 +170775622568,214,0 +170775622616,215,0 +170775622663,215,0 +170775622711,215,0 +170775622759,215,0 +170775622807,215,0 +170775622855,214,0 +170775622904,215,0 +170775622952,215,0 +170775623000,215,0 +170775623048,214,0 +170775623096,214,0 +170775623144,214,0 +170775623192,214,0 +170775623240,214,0 +170775623289,214,0 +170775623337,215,0 +170775623385,215,0 +170775623434,214,0 +170775623482,215,0 +170775623530,215,0 +170775623578,215,0 +170775623626,215,0 +170775623674,215,0 +170775623722,215,0 +170775623770,214,0 +170775623819,215,0 +170775623869,215,0 +170775623917,214,0 +170775623965,214,0 +170775624013,214,0 +170775624062,214,0 +170775624110,214,0 +170775624158,214,0 +170775624206,215,0 +170775624254,215,0 +170775624303,215,0 +170775624353,215,0 +170775624402,215,0 +170775624452,215,0 +170775624500,215,0 +170775624548,215,0 +170775624596,215,0 +170775624645,214,0 +170775624695,214,0 +170775624743,214,0 +170775624792,214,0 +170775624840,214,0 +170775624890,214,0 +170775624938,214,0 +170775624987,214,0 +170775625035,214,0 +170775625085,215,0 +170775625134,215,0 +170775625184,215,0 +170775625232,215,0 +170775625279,215,0 +170775625327,215,0 +170775625375,215,0 +170775625425,215,0 +170775625473,214,0 +170775625521,213,0 +170775625569,213,0 +170775625616,213,0 +170775625664,213,0 +170775625712,214,0 +170775625760,214,0 +170775625808,214,0 +170775625856,214,0 +170775625904,214,0 +170775625954,214,0 +170775626002,214,0 +170775626049,214,0 +170775626097,215,0 +170775626145,215,0 +170775626193,214,0 +170775626241,214,0 +170775626289,214,0 +170775626337,213,0 +170775626385,213,0 +170775626433,213,0 +170775626480,213,0 +170775626528,213,0 +170775626576,214,0 +170775626625,214,0 +170775626673,214,0 +170775626721,214,0 +170775626771,214,0 +170775626819,214,0 +170775626867,214,0 +170775626914,214,0 +170775626962,215,0 +170775627010,214,0 +170775627058,215,0 +170775627106,214,0 +170775627154,213,0 +170775627202,213,0 +170775627250,214,0 +170775627299,214,0 +170775627347,214,0 +170775627395,214,0 +170775627444,214,0 +170775627492,214,0 +170775627540,214,0 +170775627588,214,0 +170775627636,214,0 +170775627683,214,0 +170775627731,214,0 +170775627779,214,0 +170775627827,215,0 +170775627875,216,0 +170775627923,214,0 +170775627971,213,0 +170775628019,213,0 +170775628066,214,0 +170775628114,214,0 +170775628164,214,0 +170775628212,214,0 +170775628261,213,0 +170775628309,214,0 +170775628359,214,0 +170775628407,214,0 +170775628455,214,0 +170775628503,214,0 +170775628552,214,0 +170775628602,215,0 +170775628650,214,0 +170775628698,214,0 +170775628745,214,0 +170775628793,214,0 +170775628841,214,0 +170775628891,214,0 +170775628939,214,0 +170775628987,214,0 +170775629035,214,0 +170775629082,214,0 +170775629130,214,0 +170775629178,215,0 +170775629226,215,0 +170775629274,215,0 +170775629322,215,0 +170775629371,215,0 +170775629419,215,0 +170775629467,215,0 +170775629515,214,0 +170775629563,214,0 +170775629611,214,0 +170775629659,214,0 +170775629708,214,0 +170775629756,214,0 +170775629805,215,0 +170775629853,214,0 +170775629901,215,0 +170775629949,215,0 +170775629997,215,0 +170775630045,215,0 +170775630094,215,0 +170775630142,215,0 +170775630192,215,0 +170775630241,215,0 +170775630289,215,0 +170775630337,214,0 +170775630387,214,0 +170775630436,214,0 +170775630484,215,0 +170775630532,214,0 +170775630580,214,0 +170775630628,214,0 +170775630676,214,0 +170775630723,214,0 +170775630773,215,0 +170775630821,215,0 +170775630870,215,0 +170775630920,215,0 +170775630968,215,0 +170775631016,215,0 +170775631065,215,0 +170775631113,214,0 +170775631161,214,0 +170775631211,214,0 +170775631260,214,0 +170775631308,214,0 +170775631358,214,0 +170775631406,214,0 +170775631454,215,0 +170775631502,215,0 +170775631549,215,0 +170775631599,215,0 +170775631647,215,0 +170775631695,215,0 +170775631743,215,0 +170775631792,215,0 +170775631840,215,0 +170775631888,214,0 +170775631936,214,0 +170775631986,214,0 +170775632035,215,0 +170775632083,214,0 +170775632131,214,0 +170775632179,215,0 +170775632227,215,0 +170775632275,215,0 +170775632323,215,0 +170775632371,215,0 +170775632419,215,0 +170775632468,215,0 +170775632518,215,0 +170775632565,215,0 +170775632613,215,0 +170775632661,215,0 +170775632709,215,0 +170775632757,215,0 +170775632805,215,0 +170775632855,214,0 +170775632903,215,0 +170775632952,215,0 +170775633000,215,0 +170775633050,215,0 +170775633098,215,0 +170775633147,215,0 +170775633195,215,0 +170775633243,215,0 +170775633293,215,0 +170775633341,215,0 +170775633388,215,0 +170775633436,215,0 +170775633484,215,0 +170775633534,215,0 +170775633583,214,0 +170775633633,215,0 +170775633681,215,0 +170775633729,215,0 +170775633777,215,0 +170775633824,215,0 +170775633872,215,0 +170775633920,215,0 +170775633968,215,0 +170775634016,215,0 +170775634066,215,0 +170775634115,215,0 +170775634165,215,0 +170775634213,215,0 +170775634262,215,0 +170775634310,215,0 +170775634358,214,0 +170775634408,214,0 +170775634456,214,0 +170775634503,214,0 +170775634551,214,0 +170775634599,215,0 +170775634647,215,0 +170775634695,215,0 +170775634743,215,0 +170775634791,215,0 +170775634841,215,0 +170775634889,215,0 +170775634937,215,0 +170775634984,215,0 +170775635032,215,0 +170775635080,215,0 +170775635130,214,0 +170775635178,214,0 +170775635226,214,0 +170775635273,213,0 +170775635321,214,0 +170775635369,214,0 +170775635417,214,0 +170775635467,215,0 +170775635515,214,0 +170775635563,215,0 +170775635612,215,0 +170775635660,215,0 +170775635708,215,0 +170775635756,215,0 +170775635804,215,0 +170775635854,215,0 +170775635901,215,0 +170775635951,215,0 +170775636001,214,0 +170775636049,214,0 +170775636096,213,0 +170775636144,214,0 +170775636192,214,0 +170775636240,214,0 +170775636290,214,0 +170775636338,214,0 +170775636386,214,0 +170775636435,214,0 +170775636483,214,0 +170775636531,214,0 +170775636581,215,0 +170775636630,215,0 +170775636678,215,0 +170775636726,215,0 +170775636774,215,0 +170775636824,214,0 +170775636873,213,0 +170775636921,213,0 +170775636969,214,0 +170775637017,214,0 +170775637065,214,0 +170775637113,214,0 +170775637161,214,0 +170775637209,214,0 +170775637257,214,0 +170775637306,214,0 +170775637356,214,0 +170775637404,214,0 +170775637453,214,0 +170775637501,215,0 +170775637549,215,0 +170775637598,215,0 +170775637646,215,0 +170775637694,215,0 +170775637742,214,0 +170775637790,213,0 +170775637838,213,0 +170775637888,214,0 +170775637936,214,0 +170775637984,214,0 +170775638031,214,0 +170775638079,214,0 +170775638127,214,0 +170775638175,214,0 +170775638225,214,0 +170775638274,215,0 +170775638324,215,0 +170775638372,215,0 +170775638421,215,0 +170775638469,215,0 +170775638519,215,0 +170775638567,214,0 +170775638615,213,0 +170775638663,213,0 +170775638712,214,0 +170775638760,213,0 +170775638808,213,0 +170775638857,214,0 +170775638905,214,0 +170775638953,214,0 +170775639001,214,0 +170775639049,214,0 +170775639098,214,0 +170775639146,214,0 +170775639194,214,0 +170775639242,214,0 +170775639292,215,0 +170775639339,215,0 +170775639387,214,0 +170775639437,213,0 +170775639485,213,0 +170775639533,213,0 +170775639581,213,0 +170775639628,214,0 +170775639678,214,0 +170775639727,214,0 +170775639775,214,0 +170775639823,214,0 +170775639871,214,0 +170775639919,214,0 +170775639967,214,0 +170775640015,214,0 +170775640063,215,0 +170775640113,215,0 +170775640162,215,0 +170775640210,215,0 +170775640260,214,0 +170775640309,213,0 +170775640359,213,0 +170775640407,213,0 +170775640455,214,0 +170775640503,214,0 +170775640552,214,0 +170775640600,214,0 +170775640648,214,0 +170775640696,214,0 +170775640744,214,0 +170775640792,214,0 +170775640840,215,0 +170775640888,215,0 +170775640938,215,0 +170775640987,214,0 +170775641037,214,0 +170775641084,215,0 +170775641132,214,0 +170775641182,214,0 +170775641230,213,0 +170775641279,213,0 +170775641327,214,0 +170775641377,214,0 +170775641426,214,0 +170775641476,214,0 +170775641523,214,0 +170775641571,215,0 +170775641621,214,0 +170775641669,215,0 +170775641717,215,0 +170775641764,215,0 +170775641814,215,0 +170775641862,215,0 +170775641911,215,0 +170775641961,214,0 +170775642010,214,0 +170775642058,214,0 +170775642106,214,0 +170775642154,214,0 +170775642202,214,0 +170775642250,214,0 +170775642298,214,0 +170775642346,214,0 +170775642394,214,0 +170775642442,214,0 +170775642490,215,0 +170775642538,215,0 +170775642587,215,0 +170775642635,215,0 +170775642685,214,0 +170775642734,215,0 +170775642784,215,0 +170775642832,214,0 +170775642880,214,0 +170775642929,214,0 +170775642977,215,0 +170775643025,215,0 +170775643075,215,0 +170775643123,215,0 +170775643172,214,0 +170775643220,215,0 +170775643268,215,0 +170775643316,215,0 +170775643366,215,0 +170775643415,215,0 +170775643463,215,0 +170775643513,215,0 +170775643562,215,0 +170775643610,215,0 +170775643658,215,0 +170775643708,215,0 +170775643756,215,0 +170775643803,215,0 +170775643853,215,0 +170775643902,215,0 +170775643950,215,0 +170775643998,215,0 +170775644046,215,0 +170775644094,215,0 +170775644142,215,0 +170775644190,215,0 +170775644238,215,0 +170775644286,215,0 +170775644334,215,0 +170775644382,215,0 +170775644431,215,0 +170775644480,214,0 +170775644530,214,0 +170775644579,214,0 +170775644629,214,0 +170775644677,214,0 +170775644725,214,0 +170775644774,214,0 +170775644822,214,0 +170775644870,214,0 +170775644918,214,0 +170775644968,214,0 +170775645015,214,0 +170775645063,215,0 +170775645113,215,0 +170775645162,215,0 +170775645210,215,0 +170775645258,215,0 +170775645306,215,0 +170775645356,214,0 +170775645405,215,0 +170775645453,214,0 +170775645503,214,0 +170775645552,214,0 +170775645600,214,0 +170775645650,215,0 +170775645699,215,0 +170775645747,215,0 +170775645795,215,0 +170775645843,215,0 +170775645892,215,0 +170775645940,215,0 +170775645990,215,0 +170775646037,215,0 +170775646085,215,0 +170775646135,215,0 +170775646184,215,0 +170775646234,214,0 +170775646282,214,0 +170775646330,214,0 +170775646379,214,0 +170775646429,214,0 +170775646476,214,0 +170775646524,214,0 +170775646572,214,0 +170775646620,214,0 +170775646668,214,0 +170775646718,215,0 +170775646767,215,0 +170775646817,215,0 +170775646865,215,0 +170775646913,215,0 +170775646962,215,0 +170775647012,214,0 +170775647060,215,0 +170775647109,214,0 +170775647157,214,0 +170775647205,214,0 +170775647254,214,0 +170775647302,214,0 +170775647350,214,0 +170775647398,214,0 +170775647448,214,0 +170775647496,214,0 +170775647544,214,0 +170775647591,214,0 +170775647641,214,0 +170775647689,215,0 +170775647737,215,0 +170775647786,215,0 +170775647834,215,0 +170775647882,215,0 +170775647930,215,0 +170775647978,214,0 +170775648026,214,0 +170775648074,214,0 +170775648122,214,0 +170775648171,214,0 +170775648220,214,0 +170775648268,214,0 +170775648316,214,0 +170775648364,214,0 +170775648412,214,0 +170775648462,214,0 +170775648511,215,0 +170775648561,215,0 +170775648609,215,0 +170775648657,215,0 +170775648705,215,0 +170775648754,215,0 +170775648804,214,0 +170775648852,213,0 +170775648900,214,0 +170775648949,214,0 +170775648999,214,0 +170775649048,214,0 +170775649098,214,0 +170775649146,214,0 +170775649194,214,0 +170775649242,215,0 +170775649290,214,0 +170775649339,215,0 +170775649387,215,0 +170775649437,215,0 +170775649485,215,0 +170775649533,215,0 +170775649581,215,0 +170775649630,215,0 +170775649680,214,0 +170775649728,214,0 +170775649775,214,0 +170775649823,214,0 +170775649871,214,0 +170775649919,214,0 +170775649967,214,0 +170775650017,214,0 +170775650065,214,0 +170775650113,214,0 +170775650160,215,0 +170775650208,214,0 +170775650258,215,0 +170775650306,215,0 +170775650356,215,0 +170775650405,215,0 +170775650453,215,0 +170775650501,215,0 +170775650549,214,0 +170775650597,214,0 +170775650646,214,0 +170775650696,214,0 +170775650745,214,0 +170775650793,214,0 +170775650843,214,0 +170775650891,214,0 +170775650939,214,0 +170775650988,215,0 +170775651036,215,0 +170775651085,215,0 +170775651133,215,0 +170775651181,215,0 +170775651231,215,0 +170775651279,215,0 +170775651326,215,0 +170775651376,214,0 +170775651424,214,0 +170775651472,214,0 +170775651520,214,0 +170775651568,214,0 +170775651617,214,0 +170775651665,214,0 +170775651713,214,0 +170775651761,214,0 +170775651809,215,0 +170775651858,215,0 +170775651908,215,0 +170775651956,215,0 +170775652005,215,0 +170775652055,215,0 +170775652103,215,0 +170775652152,214,0 +170775652202,215,0 +170775652250,214,0 +170775652298,214,0 +170775652347,214,0 +170775652397,214,0 +170775652445,214,0 +170775652494,214,0 +170775652542,214,0 +170775652590,214,0 +170775652639,214,0 +170775652689,215,0 +170775652738,215,0 +170775652786,215,0 +170775652834,215,0 +170775652884,215,0 +170775652932,215,0 +170775652981,215,0 +170775653029,215,0 +170775653077,214,0 +170775653127,214,0 +170775653175,214,0 +170775653222,214,0 +170775653270,214,0 +170775653320,214,0 +170775653369,214,0 +170775653417,214,0 +170775653465,214,0 +170775653513,214,0 +170775653563,214,0 +170775653611,215,0 +170775653658,215,0 +170775653706,214,0 +170775653754,215,0 +170775653802,215,0 +170775653850,215,0 +170775653899,215,0 +170775653949,214,0 +170775653997,214,0 +170775654045,213,0 +170775654094,214,0 +170775654142,214,0 +170775654190,214,0 +170775654238,214,0 +170775654286,214,0 +170775654334,214,0 +170775654383,214,0 +170775654431,215,0 +170775654479,215,0 +170775654529,214,0 +170775654577,215,0 +170775654626,215,0 +170775654674,214,0 +170775654722,215,0 +170775654770,215,0 +170775654820,213,0 +170775654868,214,0 +170775654917,213,0 +170775654967,214,0 +170775655016,214,0 +170775655066,214,0 +170775655115,214,0 +170775655163,214,0 +170775655213,214,0 +170775655262,214,0 +170775655310,214,0 +170775655360,215,0 +170775655407,215,0 +170775655455,215,0 +170775655505,215,0 +170775655553,215,0 +170775655601,214,0 +170775655650,214,0 +170775655700,213,0 +170775655749,214,0 +170775655797,214,0 +170775655845,214,0 +170775655895,214,0 +170775655943,214,0 +170775655991,214,0 +170775656039,214,0 +170775656087,214,0 +170775656136,215,0 +170775656186,214,0 +170775656235,215,0 +170775656283,215,0 +170775656333,215,0 +170775656380,215,0 +170775656428,215,0 +170775656478,215,0 +170775656526,214,0 +170775656574,213,0 +170775656622,213,0 +170775656669,213,0 +170775656717,214,0 +170775656767,214,0 +170775656815,214,0 +170775656863,214,0 +170775656911,214,0 +170775656960,214,0 +170775657010,214,0 +170775657057,215,0 +170775657107,215,0 +170775657157,215,0 +170775657204,215,0 +170775657252,215,0 +170775657300,215,0 +170775657348,215,0 +170775657396,214,0 +170775657446,214,0 +170775657494,214,0 +170775657542,214,0 +170775657591,214,0 +170775657639,214,0 +170775657687,214,0 +170775657735,215,0 +170775657783,214,0 +170775657831,214,0 +170775657879,215,0 +170775657927,215,0 +170775657975,215,0 +170775658023,215,0 +170775658072,215,0 +170775658122,215,0 +170775658170,215,0 +170775658217,214,0 +170775658265,214,0 +170775658313,214,0 +170775658363,214,0 +170775658412,214,0 +170775658462,214,0 +170775658510,215,0 +170775658558,215,0 +170775658606,215,0 +170775658654,215,0 +170775658702,214,0 +170775658750,215,0 +170775658798,215,0 +170775658846,215,0 +170775658893,215,0 +170775658941,215,0 +170775658989,215,0 +170775659037,214,0 +170775659087,214,0 +170775659135,214,0 +170775659184,214,0 +170775659234,214,0 +170775659282,214,0 +170775659331,214,0 +170775659379,214,0 +170775659427,214,0 +170775659475,214,0 +170775659524,215,0 +170775659574,215,0 +170775659623,214,0 +170775659673,215,0 +170775659721,215,0 +170775659769,215,0 +170775659819,215,0 +170775659866,215,0 +170775659914,214,0 +170775659962,213,0 +170775660012,214,0 +170775660060,214,0 +170775660108,214,0 +170775660157,214,0 +170775660207,214,0 +170775660256,214,0 +170775660306,214,0 +170775660354,214,0 +170775660402,215,0 +170775660451,215,0 +170775660499,215,0 +170775660547,215,0 +170775660596,215,0 +170775660646,215,0 +170775660694,215,0 +170775660742,214,0 +170775660792,214,0 +170775660839,213,0 +170775660887,214,0 +170775660937,214,0 +170775660985,214,0 +170775661034,214,0 +170775661084,214,0 +170775661132,214,0 +170775661180,214,0 +170775661229,215,0 +170775661277,215,0 +170775661325,215,0 +170775661373,215,0 +170775661422,215,0 +170775661470,215,0 +170775661520,215,0 +170775661568,215,0 +170775661616,214,0 +170775661665,213,0 +170775661713,213,0 +170775661761,213,0 +170775661811,213,0 +170775661860,214,0 +170775661908,214,0 +170775661956,214,0 +170775662004,214,0 +170775662053,214,0 +170775662103,214,0 +170775662151,215,0 +170775662199,215,0 +170775662247,215,0 +170775662295,215,0 +170775662344,215,0 +170775662392,215,0 +170775662440,215,0 +170775662490,214,0 +170775662539,213,0 +170775662587,213,0 +170775662635,214,0 +170775662685,214,0 +170775662734,214,0 +170775662782,214,0 +170775662830,214,0 +170775662878,214,0 +170775662926,214,0 +170775662975,215,0 +170775663023,215,0 +170775663071,215,0 +170775663119,215,0 +170775663167,215,0 +170775663216,215,0 +170775663264,215,0 +170775663314,215,0 +170775663362,214,0 +170775663411,214,0 +170775663459,214,0 +170775663508,214,0 +170775663556,214,0 +170775663604,214,0 +170775663652,214,0 +170775663702,214,0 +170775663749,214,0 +170775663799,214,0 +170775663847,215,0 +170775663895,215,0 +170775663944,215,0 +170775663994,215,0 +170775664042,215,0 +170775664091,215,0 +170775664141,214,0 +170775664189,214,0 +170775664238,213,0 +170775664288,214,0 +170775664336,214,0 +170775664384,214,0 +170775664432,214,0 +170775664479,214,0 +170775664527,214,0 +170775664575,214,0 +170775664625,214,0 +170775664674,214,0 +170775664722,214,0 +170775664770,215,0 +170775664818,215,0 +170775664866,215,0 +170775664914,214,0 +170775664962,215,0 +170775665011,214,0 +170775665059,213,0 +170775665107,214,0 +170775665155,214,0 +170775665203,214,0 +170775665252,214,0 +170775665300,214,0 +170775665348,214,0 +170775665396,214,0 +170775665445,214,0 +170775665493,214,0 +170775665543,215,0 +170775665591,215,0 +170775665640,215,0 +170775665688,214,0 +170775665736,215,0 +170775665784,215,0 +170775665834,214,0 +170775665883,214,0 +170775665931,213,0 +170775665981,214,0 +170775666030,214,0 +170775666080,214,0 +170775666129,214,0 +170775666177,214,0 +170775666225,214,0 +170775666274,214,0 +170775666322,214,0 +170775666372,216,0 +170775666420,215,0 +170775666469,215,0 +170775666517,215,0 +170775666565,215,0 +170775666613,215,0 +170775666661,215,0 +170775666710,214,0 +170775666760,214,0 +170775666808,214,0 +170775666857,214,0 +170775666905,214,0 +170775666953,214,0 +170775667001,214,0 +170775667051,214,0 +170775667100,214,0 +170775667148,214,0 +170775667196,214,0 +170775667244,215,0 +170775667292,215,0 +170775667340,215,0 +170775667388,215,0 +170775667435,215,0 +170775667483,215,0 +170775667533,215,0 +170775667581,214,0 +170775667629,213,0 +170775667677,214,0 +170775667726,214,0 +170775667774,214,0 +170775667824,214,0 +170775667872,214,0 +170775667921,214,0 +170775667969,214,0 +170775668017,214,0 +170775668065,214,0 +170775668113,215,0 +170775668161,215,0 +170775668209,215,0 +170775668257,215,0 +170775668306,215,0 +170775668354,215,0 +170775668402,214,0 +170775668450,214,0 +170775668498,213,0 +170775668548,213,0 +170775668596,214,0 +170775668643,214,0 +170775668693,214,0 +170775668743,214,0 +170775668791,214,0 +170775668838,214,0 +170775668888,214,0 +170775668938,214,0 +170775668987,214,0 +170775669035,215,0 +170775669083,215,0 +170775669131,215,0 +170775669179,215,0 +170775669229,215,0 +170775669276,215,0 +170775669324,214,0 +170775669372,213,0 +170775669420,213,0 +170775669468,213,0 +170775669516,213,0 +170775669565,214,0 +170775669613,214,0 +170775669661,214,0 +170775669711,214,0 +170775669759,214,0 +170775669808,214,0 +170775669856,214,0 +170775669904,214,0 +170775669952,214,0 +170775670000,214,0 +170775670049,215,0 +170775670097,214,0 +170775670145,214,0 +170775670192,213,0 +170775670240,213,0 +170775670288,214,0 +170775670336,213,0 +170775670384,214,0 +170775670432,214,0 +170775670479,214,0 +170775670527,214,0 +170775670575,214,0 +170775670625,214,0 +170775670673,214,0 +170775670722,214,0 +170775670770,214,0 +170775670820,214,0 +170775670868,215,0 +170775670917,215,0 +170775670965,215,0 +170775671015,214,0 +170775671062,213,0 +170775671112,213,0 +170775671161,213,0 +170775671209,214,0 +170775671257,214,0 +170775671305,214,0 +170775671353,214,0 +170775671401,214,0 +170775671449,214,0 +170775671497,214,0 +170775671545,215,0 +170775671594,214,0 +170775671642,215,0 +170775671690,215,0 +170775671738,215,0 +170775671786,215,0 +170775671836,214,0 +170775671884,214,0 +170775671933,214,0 +170775671981,214,0 +170775672031,214,0 +170775672080,214,0 +170775672128,214,0 +170775672176,214,0 +170775672225,214,0 +170775672275,214,0 +170775672323,214,0 +170775672372,215,0 +170775672422,215,0 +170775672470,215,0 +170775672518,215,0 +170775672566,215,0 +170775672613,215,0 +170775672661,215,0 +170775672711,214,0 +170775672759,214,0 +170775672807,214,0 +170775672854,214,0 +170775672902,214,0 +170775672950,214,0 +170775672998,214,0 +170775673048,214,0 +170775673095,214,0 +170775673143,214,0 +170775673191,215,0 +170775673239,214,0 +170775673287,214,0 +170775673336,214,0 +170775673384,215,0 +170775673432,215,0 +170775673480,215,0 +170775673528,214,0 +170775673577,214,0 +170775673625,214,0 +170775673673,214,0 +170775673721,214,0 +170775673769,214,0 +170775673817,214,0 +170775673865,214,0 +170775673913,214,0 +170775673961,214,0 +170775674009,214,0 +170775674057,215,0 +170775674106,215,0 +170775674156,215,0 +170775674203,214,0 +170775674251,215,0 +170775674299,215,0 +170775674347,215,0 +170775674395,214,0 +170775674445,214,0 +170775674493,214,0 +170775674541,214,0 +170775674590,214,0 +170775674638,214,0 +170775674686,214,0 +170775674734,214,0 +170775674782,214,0 +170775674830,214,0 +170775674879,215,0 +170775674927,215,0 +170775674975,215,0 +170775675023,215,0 +170775675071,215,0 +170775675119,215,0 +170775675167,214,0 +170775675215,215,0 +170775675263,215,0 +170775675311,214,0 +170775675359,214,0 +170775675408,214,0 +170775675456,214,0 +170775675506,214,0 +170775675554,214,0 +170775675602,215,0 +170775675650,215,0 +170775675697,215,0 +170775675745,215,0 +170775675795,215,0 +170775675843,215,0 +170775675892,215,0 +170775675940,215,0 +170775675990,215,0 +170775676038,215,0 +170775676086,215,0 +170775676135,214,0 +170775676185,214,0 +170775676233,214,0 +170775676281,214,0 +170775676330,214,0 +170775676378,214,0 +170775676428,214,0 +170775676476,214,0 +170775676525,215,0 +170775676575,215,0 +170775676623,215,0 +170775676670,215,0 +170775676720,215,0 +170775676769,215,0 +170775676818,215,0 +170775676867,215,0 +170775676917,215,0 +170775676965,215,0 +170775677012,214,0 +170775677062,214,0 +170775677110,214,0 +170775677159,214,0 +170775677207,214,0 +170775677255,214,0 +170775677305,214,0 +170775677353,214,0 +170775677400,214,0 +170775677448,215,0 +170775677496,215,0 +170775677544,215,0 +170775677592,215,0 +170775677640,215,0 +170775677690,215,0 +170775677737,215,0 +170775677787,215,0 +170775677835,214,0 +170775677884,214,0 +170775677932,214,0 +170775677982,214,0 +170775678031,214,0 +170775678079,214,0 +170775678127,214,0 +170775678177,214,0 +170775678225,215,0 +170775678273,214,0 +170775678320,215,0 +170775678368,215,0 +170775678418,215,0 +170775678466,215,0 +170775678514,215,0 +170775678563,215,0 +170775678611,215,0 +170775678659,214,0 +170775678707,214,0 +170775678755,213,0 +170775678804,213,0 +170775678854,214,0 +170775678902,214,0 +170775678950,214,0 +170775678998,214,0 +170775679047,214,0 +170775679095,215,0 +170775679143,215,0 +170775679193,215,0 +170775679241,215,0 +170775679289,215,0 +170775679338,215,0 +170775679388,215,0 +170775679436,215,0 +170775679485,215,0 +170775679533,214,0 +170775679581,214,0 +170775679629,213,0 +170775679677,214,0 +170775679725,214,0 +170775679773,214,0 +170775679822,214,0 +170775679872,214,0 +170775679921,214,0 +170775679969,214,0 +170775680017,215,0 +170775680066,215,0 +170775680114,214,0 +170775680162,215,0 +170775680210,215,0 +170775680260,215,0 +170775680308,214,0 +170775680356,215,0 +170775680403,214,0 +170775680451,213,0 +170775680499,213,0 +170775680549,213,0 +170775680598,214,0 +170775680648,214,0 +170775680697,214,0 +170775680745,214,0 +170775680793,214,0 +170775680841,214,0 +170775680889,214,0 +170775680937,214,0 +170775680985,214,0 +170775681033,215,0 +170775681081,215,0 +170775681128,215,0 +170775681178,214,0 +170775681226,215,0 +170775681274,213,0 +170775681322,213,0 +170775681371,213,0 +170775681420,213,0 +170775681468,213,0 +170775681518,213,0 +170775681567,214,0 +170775681617,214,0 +170775681665,214,0 +170775681714,214,0 +170775681762,214,0 +170775681810,214,0 +170775681858,214,0 +170775681906,214,0 +170775681954,215,0 +170775682003,215,0 +170775682051,215,0 +170775682099,214,0 +170775682147,213,0 +170775682195,213,0 +170775682242,213,0 +170775682290,213,0 +170775682340,213,0 +170775682389,214,0 +170775682437,214,0 +170775682485,213,0 +170775682535,214,0 +170775682583,214,0 +170775682631,214,0 +170775682678,214,0 +170775682726,215,0 +170775682774,215,0 +170775682822,215,0 +170775682870,215,0 +170775682917,215,0 +170775682965,214,0 +170775683013,213,0 +170775683061,213,0 +170775683110,213,0 +170775683158,213,0 +170775683208,213,0 +170775683255,213,0 +170775683303,214,0 +170775683351,214,0 +170775683399,214,0 +170775683449,214,0 +170775683497,214,0 +170775683545,214,0 +170775683593,215,0 +170775683641,214,0 +170775683688,215,0 +170775683738,215,0 +170775683787,214,0 +170775683837,213,0 +170775683885,213,0 +170775683933,213,0 +170775683981,213,0 +170775684029,213,0 +170775684078,213,0 +170775684126,214,0 +170775684174,214,0 +170775684222,214,0 +170775684270,214,0 +170775684319,214,0 +170775684367,214,0 +170775684415,214,0 +170775684463,214,0 +170775684511,214,0 +170775684560,214,0 +170775684610,214,0 +170775684659,214,0 +170775684709,214,0 +170775684757,215,0 +170775684805,215,0 +170775684854,215,0 +170775684904,215,0 +170775684952,215,0 +170775685000,215,0 +170775685049,214,0 +170775685099,214,0 +170775685147,213,0 +170775685196,213,0 +170775685244,213,0 +170775685294,214,0 +170775685342,214,0 +170775685390,214,0 +170775685438,214,0 +170775685485,214,0 +170775685535,214,0 +170775685583,214,0 +170775685632,214,0 +170775685680,214,0 +170775685728,214,0 +170775685776,214,0 +170775685824,215,0 +170775685873,215,0 +170775685921,215,0 +170775685971,214,0 +170775686018,213,0 +170775686068,213,0 +170775686117,214,0 +170775686165,213,0 +170775686213,213,0 +170775686261,214,0 +170775686311,214,0 +170775686360,214,0 +170775686408,214,0 +170775686456,214,0 +170775686504,214,0 +170775686554,214,0 +170775686601,214,0 +170775686649,215,0 +170775686697,214,0 +170775686745,214,0 +170775686793,214,0 +170775686843,213,0 +170775686891,213,0 +170775686938,214,0 +170775686986,214,0 +170775687034,214,0 +170775687084,214,0 +170775687133,214,0 +170775687181,214,0 +170775687229,214,0 +170775687279,214,0 +170775687327,215,0 +170775687375,215,0 +170775687423,215,0 +170775687471,215,0 +170775687518,215,0 +170775687566,215,0 +170775687616,214,0 +170775687664,214,0 +170775687713,214,0 +170775687761,214,0 +170775687809,214,0 +170775687857,214,0 +170775687905,214,0 +170775687953,214,0 +170775688002,214,0 +170775688050,215,0 +170775688100,215,0 +170775688148,214,0 +170775688196,215,0 +170775688245,215,0 +170775688293,214,0 +170775688341,215,0 +170775688389,215,0 +170775688438,215,0 +170775688486,215,0 +170775688534,214,0 +170775688582,214,0 +170775688632,214,0 +170775688680,214,0 +170775688729,214,0 +170775688779,214,0 +170775688828,214,0 +170775688878,214,0 +170775688926,214,0 +170775688974,215,0 +170775689023,214,0 +170775689071,215,0 +170775689121,215,0 +170775689169,215,0 +170775689216,215,0 +170775689264,215,0 +170775689312,215,0 +170775689360,214,0 +170775689409,214,0 +170775689457,214,0 +170775689505,215,0 +170775689552,214,0 +170775689600,215,0 +170775689648,215,0 +170775689696,215,0 +170775689744,215,0 +170775689792,215,0 +170775689841,215,0 +170775689889,215,0 +170775689937,215,0 +170775689984,215,0 +170775690032,215,0 +170775690080,215,0 +170775690128,215,0 +170775690176,215,0 +170775690225,214,0 +170775690273,214,0 +170775690321,215,0 +170775690369,214,0 +170775690418,214,0 +170775690466,215,0 +170775690516,215,0 +170775690564,215,0 +170775690613,215,0 +170775690663,215,0 +170775690712,215,0 +170775690760,215,0 +170775690808,215,0 +170775690856,215,0 +170775690904,215,0 +170775690952,215,0 +170775691000,215,0 +170775691048,215,0 +170775691097,214,0 +170775691147,214,0 +170775691194,214,0 +170775691244,214,0 +170775691293,214,0 +170775691341,214,0 +170775691389,214,0 +170775691439,214,0 +170775691487,215,0 +170775691535,215,0 +170775691582,215,0 +170775691630,215,0 +170775691680,215,0 +170775691728,215,0 +170775691777,215,0 +170775691825,215,0 +170775691873,215,0 +170775691921,214,0 +170775691969,214,0 +170775692016,214,0 +170775692064,214,0 +170775692112,214,0 +170775692160,214,0 +170775692208,214,0 +170775692257,214,0 +170775692305,214,0 +170775692353,214,0 +170775692401,214,0 +170775692451,215,0 +170775692499,214,0 +170775692548,215,0 +170775692598,215,0 +170775692647,215,0 +170775692695,215,0 +170775692743,215,0 +170775692793,214,0 +170775692841,213,0 +170775692889,214,0 +170775692937,214,0 +170775692986,214,0 +170775693036,214,0 +170775693085,214,0 +170775693135,214,0 +170775693184,214,0 +170775693232,214,0 +170775693280,215,0 +170775693330,215,0 +170775693379,215,0 +170775693427,215,0 +170775693475,215,0 +170775693524,215,0 +170775693574,215,0 +170775693622,214,0 +170775693671,214,0 +170775693721,214,0 +170775693769,214,0 +170775693817,214,0 +170775693865,214,0 +170775693914,214,0 +170775693962,214,0 +170775694012,214,0 +170775694060,214,0 +170775694109,215,0 +170775694159,215,0 +170775694208,215,0 +170775694256,215,0 +170775694305,215,0 +170775694353,215,0 +170775694403,215,0 +170775694453,215,0 +170775694500,214,0 +170775694550,214,0 +170775694600,213,0 +170775694648,214,0 +170775694697,214,0 +170775694745,214,0 +170775694793,214,0 +170775694841,214,0 +170775694888,214,0 +170775694936,214,0 +170775694984,214,0 +170775695032,214,0 +170775695080,214,0 +170775695128,215,0 +170775695175,215,0 +170775695225,215,0 +170775695273,215,0 +170775695322,214,0 +170775695370,213,0 +170775695418,213,0 +170775695466,213,0 +170775695514,213,0 +170775695562,214,0 +170775695610,214,0 +170775695660,214,0 +170775695709,214,0 +170775695759,214,0 +170775695807,214,0 +170775695855,214,0 +170775695904,215,0 +170775695954,215,0 +170775696002,215,0 +170775696051,215,0 +170775696099,215,0 +170775696147,214,0 +170775696195,213,0 +170775696244,213,0 +170775696292,213,0 +170775696340,213,0 +170775696390,213,0 +170775696439,214,0 +170775696487,214,0 +170775696535,214,0 +170775696583,214,0 +170775696631,214,0 +170775696679,214,0 +170775696727,214,0 +170775696775,214,0 +170775696824,215,0 +170775696872,215,0 +170775696920,214,0 +170775696968,215,0 +170775697018,214,0 +170775697067,213,0 +170775697117,213,0 +170775697166,213,0 +170775697216,213,0 +170775697265,213,0 +170775697315,213,0 +170775697363,213,0 +170775697411,214,0 +170775697459,214,0 +170775697506,214,0 +170775697556,214,0 +170775697604,214,0 +170775697652,215,0 +170775697701,215,0 +170775697749,215,0 +170775697797,215,0 +170775697845,214,0 +170775697893,214,0 +170775697941,213,0 +170775697990,213,0 +170775698038,213,0 +170775698088,213,0 +170775698137,213,0 +170775698187,214,0 +170775698235,213,0 +170775698284,214,0 +170775698334,214,0 +170775698383,214,0 +170775698431,214,0 +170775698481,214,0 +170775698529,214,0 +170775698578,214,0 +170775698628,214,0 +170775698676,214,0 +170775698724,214,0 +170775698773,214,0 +170775698821,213,0 +170775698871,213,0 +170775698919,213,0 +170775698967,213,0 +170775699016,213,0 +170775699064,213,0 +170775699112,213,0 +170775699160,214,0 +170775699208,214,0 +170775699256,214,0 +170775699304,214,0 +170775699352,214,0 +170775699401,214,0 +170775699449,214,0 +170775699497,214,0 +170775699545,214,0 +170775699593,214,0 +170775699642,213,0 +170775699690,213,0 +170775699740,213,0 +170775699789,214,0 +170775699837,214,0 +170775699885,213,0 +170775699935,213,0 +170775699984,214,0 +170775700032,214,0 +170775700080,214,0 +170775700128,214,0 +170775700178,214,0 +170775700225,214,0 +170775700275,214,0 +170775700324,214,0 +170775700374,215,0 +170775700422,215,0 +170775700471,213,0 +170775700519,213,0 +170775700567,213,0 +170775700615,214,0 +170775700663,214,0 +170775700711,214,0 +170775700760,214,0 +170775700810,214,0 +170775700859,214,0 +170775700907,214,0 +170775700955,214,0 +170775701003,214,0 +170775701053,214,0 +170775701101,214,0 +170775701149,214,0 +170775701197,214,0 +170775701245,214,0 +170775701293,214,0 +170775701341,214,0 +170775701389,213,0 +170775701436,213,0 +170775701484,214,0 +170775701532,214,0 +170775701580,214,0 +170775701628,214,0 +170775701678,214,0 +170775701727,214,0 +170775701775,214,0 +170775701823,215,0 +170775701871,215,0 +170775701919,215,0 +170775701969,215,0 +170775702016,215,0 +170775702064,215,0 +170775702114,215,0 +170775702162,214,0 +170775702210,214,0 +170775702259,214,0 +170775702309,214,0 +170775702357,214,0 +170775702407,214,0 +170775702454,214,0 +170775702502,214,0 +170775702550,214,0 +170775702600,215,0 +170775702648,215,0 +170775702696,215,0 +170775702745,215,0 +170775702795,215,0 +170775702843,215,0 +170775702891,215,0 +170775702940,214,0 +170775702988,215,0 +170775703038,214,0 +170775703086,214,0 +170775703134,214,0 +170775703182,214,0 +170775703230,214,0 +170775703278,214,0 +170775703327,214,0 +170775703375,215,0 +170775703423,215,0 +170775703471,215,0 +170775703520,215,0 +170775703568,215,0 +170775703618,215,0 +170775703667,215,0 +170775703715,215,0 +170775703763,215,0 +170775703813,215,0 +170775703861,215,0 +170775703910,214,0 +170775703958,214,0 +170775704008,214,0 +170775704057,214,0 +170775704105,214,0 +170775704153,214,0 +170775704203,214,0 +170775704251,215,0 +170775704298,215,0 +170775704346,215,0 +170775704394,215,0 +170775704444,215,0 +170775704493,215,0 +170775704543,215,0 +170775704593,215,0 +170775704640,215,0 +170775704688,215,0 +170775704736,214,0 +170775704786,214,0 +170775704834,214,0 +170775704882,214,0 +170775704931,214,0 +170775704979,214,0 +170775705027,214,0 +170775705077,215,0 +170775705125,215,0 +170775705173,215,0 +170775705221,215,0 +170775705270,215,0 +170775705319,215,0 +170775705367,215,0 +170775705417,215,0 +170775705465,215,0 +170775705514,214,0 +170775705562,214,0 +170775705610,214,0 +170775705658,214,0 +170775705706,214,0 +170775705756,214,0 +170775705805,214,0 +170775705855,214,0 +170775705904,214,0 +170775705954,215,0 +170775706002,215,0 +170775706050,215,0 +170775706098,215,0 +170775706146,215,0 +170775706195,215,0 +170775706243,215,0 +170775706292,215,0 +170775706340,215,0 +170775706388,215,0 +170775706436,214,0 +170775706485,214,0 +170775706533,214,0 +170775706583,214,0 +170775706632,214,0 +170775706682,214,0 +170775706730,214,0 +170775706778,214,0 +170775706826,214,0 +170775706875,214,0 +170775706923,214,0 +170775706973,215,0 +170775707021,214,0 +170775707069,215,0 +170775707117,214,0 +170775707164,215,0 +170775707212,214,0 +170775707260,215,0 +170775707310,214,0 +170775707358,214,0 +170775707407,214,0 +170775707455,214,0 +170775707503,214,0 +170775707551,214,0 +170775707598,214,0 +170775707646,215,0 +170775707694,214,0 +170775707742,215,0 +170775707790,215,0 +170775707840,215,0 +170775707888,214,0 +170775707935,215,0 +170775707983,215,0 +170775708031,214,0 +170775708081,215,0 +170775708129,215,0 +170775708178,214,0 +170775708226,214,0 +170775708274,214,0 +170775708322,214,0 +170775708370,214,0 +170775708417,214,0 +170775708465,214,0 +170775708513,215,0 +170775708563,214,0 +170775708611,215,0 +170775708659,215,0 +170775708706,215,0 +170775708754,215,0 +170775708802,215,0 +170775708850,215,0 +170775708898,215,0 +170775708946,215,0 +170775708994,214,0 +170775709042,213,0 +170775709089,213,0 +170775709137,214,0 +170775709185,214,0 +170775709233,214,0 +170775709281,214,0 +170775709329,214,0 +170775709376,214,0 +170775709424,214,0 +170775709472,215,0 +170775709520,215,0 +170775709568,215,0 +170775709616,215,0 +170775709664,215,0 +170775709713,215,0 +170775709761,214,0 +170775709809,215,0 +170775709858,214,0 +170775709906,213,0 +170775709954,213,0 +170775710002,213,0 +170775710050,213,0 +170775710099,214,0 +170775710147,214,0 +170775710195,214,0 +170775710243,214,0 +170775710290,214,0 +170775710340,214,0 +170775710388,214,0 +170775710435,215,0 +170775710483,214,0 +170775710533,214,0 +170775710582,215,0 +170775710630,214,0 +170775710678,215,0 +170775710726,213,0 +170775710774,213,0 +170775710821,213,0 +170775710869,213,0 +170775710917,213,0 +170775710967,213,0 +170775711016,213,0 +170775711064,214,0 +170775711112,214,0 +170775711160,214,0 +170775711210,214,0 +170775711257,214,0 +170775711305,214,0 +170775711353,215,0 +170775711403,214,0 +170775711451,215,0 +170775711499,214,0 +170775711547,214,0 +170775711595,213,0 +170775711642,213,0 +170775711690,213,0 +170775711740,214,0 +170775711789,214,0 +170775711837,214,0 +170775711885,214,0 +170775711935,214,0 +170775711982,214,0 +170775712030,214,0 +170775712080,214,0 +170775712128,215,0 +170775712175,214,0 +170775712223,214,0 +170775712271,215,0 +170775712319,214,0 +170775712367,215,0 +170775712416,213,0 +170775712464,213,0 +170775712512,213,0 +170775712561,213,0 +170775712610,214,0 +170775712658,214,0 +170775712706,214,0 +170775712756,214,0 +170775712804,214,0 +170775712853,214,0 +170775712901,214,0 +170775712951,214,0 +170775712999,214,0 +170775713048,215,0 +170775713096,215,0 +170775713144,215,0 +170775713192,215,0 +170775713240,214,0 +170775713288,214,0 +170775713336,213,0 +170775713384,213,0 +170775713432,214,0 +170775713481,214,0 +170775713529,214,0 +170775713577,214,0 +170775713624,214,0 +170775713672,214,0 +170775713720,214,0 +170775713769,215,0 +170775713817,214,0 +170775713865,214,0 +170775713913,215,0 +170775713961,214,0 +170775714008,215,0 +170775714056,215,0 +170775714106,215,0 +170775714154,214,0 +170775714202,214,0 +170775714251,214,0 +170775714299,214,0 +170775714348,214,0 +170775714396,214,0 +170775714444,214,0 +170775714492,214,0 +170775714539,214,0 +170775714587,214,0 +170775714637,215,0 +170775714684,215,0 +170775714734,215,0 +170775714782,214,0 +170775714831,215,0 +170775714879,215,0 +170775714927,214,0 +170775714975,214,0 +170775715024,214,0 +170775715072,214,0 +170775715120,214,0 +170775715167,214,0 +170775715215,214,0 +170775715263,214,0 +170775715313,214,0 +170775715362,214,0 +170775715410,214,0 +170775715458,214,0 +170775715506,215,0 +170775715554,215,0 +170775715602,215,0 +170775715650,215,0 +170775715700,215,0 +170775715748,215,0 +170775715796,215,0 +170775715844,214,0 +170775715891,213,0 +170775715939,214,0 +170775715989,214,0 +170775716037,214,0 +170775716085,214,0 +170775716133,214,0 +170775716181,214,0 +170775716229,214,0 +170775716277,214,0 +170775716325,214,0 +170775716373,215,0 +170775716422,215,0 +170775716472,215,0 +170775716521,215,0 +170775716571,215,0 +170775716620,214,0 +170775716668,214,0 +170775716718,214,0 +170775716767,214,0 +170775716817,214,0 +170775716865,214,0 +170775716913,214,0 +170775716960,214,0 +170775717008,214,0 +170775717058,214,0 +170775717106,214,0 +170775717153,215,0 +170775717203,215,0 +170775717251,214,0 +170775717298,215,0 +170775717346,215,0 +170775717394,215,0 +170775717442,215,0 +170775717490,214,0 +170775717537,214,0 +170775717585,214,0 +170775717633,214,0 +170775717681,214,0 +170775717730,214,0 +170775717778,214,0 +170775717826,214,0 +170775717876,214,0 +170775717923,215,0 +170775717971,214,0 +170775718019,215,0 +170775718067,215,0 +170775718115,215,0 +170775718163,215,0 +170775718210,215,0 +170775718260,215,0 +170775718308,215,0 +170775718356,215,0 +170775718403,214,0 +170775718451,214,0 +170775718499,214,0 +170775718547,214,0 +170775718595,214,0 +170775718643,214,0 +170775718690,214,0 +170775718740,214,0 +170775718789,215,0 +170775718837,214,0 +170775718885,215,0 +170775718933,215,0 +170775718982,215,0 +170775719030,215,0 +170775719079,215,0 +170775719127,215,0 +170775719175,214,0 +170775719223,214,0 +170775719272,213,0 +170775719320,213,0 +170775719368,214,0 +170775719416,214,0 +170775719464,214,0 +170775719512,214,0 +170775719559,214,0 +170775719607,214,0 +170775719655,214,0 +170775719703,215,0 +170775719751,215,0 +170775719798,215,0 +170775719846,215,0 +170775719894,215,0 +170775719942,215,0 +170775719990,215,0 diff --git a/laser_value/0213-03.csv b/laser_value/0213-03.csv new file mode 100644 index 0000000..496bf70 --- /dev/null +++ b/laser_value/0213-03.csv @@ -0,0 +1,7436 @@ +timestamp,laser_value,event +170775720040,215,0 +170775720088,214,0 +170775720135,214,0 +170775720183,214,0 +170775720231,214,0 +170775720279,214,0 +170775720328,214,0 +170775720376,214,0 +170775720424,214,0 +170775720472,214,0 +170775720520,214,0 +170775720568,214,0 +170775720617,215,0 +170775720665,215,0 +170775720713,215,0 +170775720761,215,0 +170775720808,215,0 +170775720856,215,0 +170775720904,215,0 +170775720952,214,0 +170775720999,213,0 +170775721049,213,0 +170775721097,214,0 +170775721145,214,0 +170775721192,213,0 +170775721242,214,0 +170775721290,214,0 +170775721339,214,0 +170775721388,214,0 +170775721436,215,0 +170775721484,215,0 +170775721532,215,0 +170775721580,215,0 +170775721628,215,0 +170775721677,215,0 +170775721727,215,0 +170775721774,214,0 +170775721822,213,0 +170775721872,213,0 +170775721920,213,0 +170775721968,213,0 +170775722015,214,0 +170775722065,214,0 +170775722113,214,0 +170775722162,214,0 +170775722212,214,0 +170775722260,214,0 +170775722307,214,0 +170775722355,214,0 +170775722405,215,0 +170775722452,215,0 +170775722502,214,0 +170775722550,215,0 +170775722599,214,0 +170775722647,214,0 +170775722695,213,0 +170775722743,213,0 +170775722791,214,0 +170775722840,214,0 +170775722888,214,0 +170775722937,214,0 +170775722985,214,0 +170775723033,214,0 +170775723081,214,0 +170775723129,214,0 +170775723177,214,0 +170775723225,215,0 +170775723272,214,0 +170775723320,214,0 +170775723368,214,0 +170775723416,214,0 +170775723464,214,0 +170775723512,213,0 +170775723559,213,0 +170775723607,213,0 +170775723655,213,0 +170775723703,214,0 +170775723751,213,0 +170775723799,214,0 +170775723847,214,0 +170775723896,214,0 +170775723944,214,0 +170775723992,214,0 +170775724040,214,0 +170775724087,214,0 +170775724135,214,0 +170775724183,215,0 +170775724233,215,0 +170775724281,215,0 +170775724329,215,0 +170775724376,214,0 +170775724424,213,0 +170775724472,213,0 +170775724520,213,0 +170775724568,214,0 +170775724616,214,0 +170775724664,214,0 +170775724711,214,0 +170775724759,214,0 +170775724807,214,0 +170775724855,214,0 +170775724903,215,0 +170775724950,214,0 +170775725000,215,0 +170775725048,215,0 +170775725096,215,0 +170775725143,214,0 +170775725191,215,0 +170775725239,214,0 +170775725287,213,0 +170775725335,214,0 +170775725384,214,0 +170775725434,214,0 +170775725483,214,0 +170775725531,214,0 +170775725579,214,0 +170775725628,214,0 +170775725676,214,0 +170775725724,214,0 +170775725772,215,0 +170775725820,215,0 +170775725868,215,0 +170775725915,215,0 +170775725963,215,0 +170775726011,215,0 +170775726059,214,0 +170775726107,213,0 +170775726155,214,0 +170775726204,214,0 +170775726252,214,0 +170775726300,214,0 +170775726348,214,0 +170775726396,214,0 +170775726443,214,0 +170775726491,214,0 +170775726539,215,0 +170775726587,215,0 +170775726635,215,0 +170775726683,215,0 +170775726731,215,0 +170775726778,215,0 +170775726826,215,0 +170775726874,215,0 +170775726922,214,0 +170775726970,214,0 +170775727018,213,0 +170775727065,214,0 +170775727115,214,0 +170775727163,214,0 +170775727210,214,0 +170775727258,214,0 +170775727308,214,0 +170775727357,214,0 +170775727405,214,0 +170775727453,215,0 +170775727500,214,0 +170775727548,215,0 +170775727596,215,0 +170775727644,215,0 +170775727692,214,0 +170775727740,215,0 +170775727788,214,0 +170775727835,214,0 +170775727883,214,0 +170775727931,214,0 +170775727979,214,0 +170775728028,214,0 +170775728077,214,0 +170775728125,214,0 +170775728173,215,0 +170775728222,214,0 +170775728270,215,0 +170775728318,215,0 +170775728366,215,0 +170775728414,214,0 +170775728462,215,0 +170775728510,214,0 +170775728559,215,0 +170775728608,215,0 +170775728656,214,0 +170775728704,214,0 +170775728752,214,0 +170775728800,214,0 +170775728849,214,0 +170775728897,214,0 +170775728945,214,0 +170775728993,214,0 +170775729041,214,0 +170775729089,215,0 +170775729136,214,0 +170775729184,215,0 +170775729232,214,0 +170775729280,215,0 +170775729328,214,0 +170775729375,214,0 +170775729425,214,0 +170775729473,214,0 +170775729522,213,0 +170775729571,213,0 +170775729619,213,0 +170775729667,214,0 +170775729715,214,0 +170775729763,214,0 +170775729811,214,0 +170775729858,214,0 +170775729908,214,0 +170775729956,214,0 +170775730004,215,0 +170775730051,214,0 +170775730099,214,0 +170775730147,215,0 +170775730195,215,0 +170775730243,214,0 +170775730291,214,0 +170775730338,214,0 +170775730386,213,0 +170775730434,213,0 +170775730482,213,0 +170775730530,213,0 +170775730578,214,0 +170775730625,214,0 +170775730673,214,0 +170775730723,214,0 +170775730771,214,0 +170775730818,214,0 +170775730866,214,0 +170775730914,214,0 +170775730962,214,0 +170775731010,215,0 +170775731058,214,0 +170775731105,214,0 +170775731153,214,0 +170775731201,214,0 +170775731250,213,0 +170775731298,213,0 +170775731346,213,0 +170775731394,213,0 +170775731442,214,0 +170775731490,214,0 +170775731538,214,0 +170775731586,214,0 +170775731634,214,0 +170775731682,214,0 +170775731730,215,0 +170775731777,215,0 +170775731827,215,0 +170775731875,215,0 +170775731924,215,0 +170775731974,215,0 +170775732022,215,0 +170775732071,214,0 +170775732121,214,0 +170775732170,214,0 +170775732218,214,0 +170775732268,214,0 +170775732316,214,0 +170775732365,215,0 +170775732415,214,0 +170775732463,215,0 +170775732511,215,0 +170775732558,215,0 +170775732608,215,0 +170775732656,215,0 +170775732704,215,0 +170775732753,215,0 +170775732803,215,0 +170775732851,215,0 +170775732900,214,0 +170775732948,214,0 +170775732997,214,0 +170775733045,214,0 +170775733093,214,0 +170775733143,214,0 +170775733191,214,0 +170775733240,214,0 +170775733290,215,0 +170775733338,215,0 +170775733386,214,0 +170775733434,215,0 +170775733482,215,0 +170775733529,215,0 +170775733579,215,0 +170775733627,215,0 +170775733675,215,0 +170775733724,215,0 +170775733772,214,0 +170775733822,214,0 +170775733871,214,0 +170775733921,214,0 +170775733969,214,0 +170775734017,214,0 +170775734065,214,0 +170775734113,214,0 +170775734161,215,0 +170775734209,215,0 +170775734257,215,0 +170775734305,215,0 +170775734354,215,0 +170775734402,215,0 +170775734451,215,0 +170775734499,215,0 +170775734547,215,0 +170775734595,214,0 +170775734644,214,0 +170775734692,214,0 +170775734740,214,0 +170775734788,214,0 +170775734836,214,0 +170775734883,214,0 +170775734931,214,0 +170775734979,214,0 +170775735029,215,0 +170775735078,215,0 +170775735128,215,0 +170775735176,215,0 +170775735223,215,0 +170775735271,215,0 +170775735319,215,0 +170775735367,215,0 +170775735415,215,0 +170775735463,214,0 +170775735511,214,0 +170775735560,214,0 +170775735608,214,0 +170775735656,214,0 +170775735704,214,0 +170775735753,214,0 +170775735801,214,0 +170775735849,214,0 +170775735897,214,0 +170775735944,214,0 +170775735992,214,0 +170775736040,215,0 +170775736088,215,0 +170775736136,215,0 +170775736183,215,0 +170775736233,215,0 +170775736281,215,0 +170775736329,214,0 +170775736376,213,0 +170775736426,214,0 +170775736475,214,0 +170775736523,214,0 +170775736571,214,0 +170775736619,214,0 +170775736666,214,0 +170775736714,214,0 +170775736762,214,0 +170775736810,214,0 +170775736858,215,0 +170775736905,215,0 +170775736953,214,0 +170775737003,215,0 +170775737051,215,0 +170775737098,214,0 +170775737146,214,0 +170775737194,214,0 +170775737242,214,0 +170775737291,214,0 +170775737341,214,0 +170775737388,214,0 +170775737438,214,0 +170775737486,214,0 +170775737533,214,0 +170775737581,214,0 +170775737629,215,0 +170775737677,214,0 +170775737725,215,0 +170775737773,215,0 +170775737820,215,0 +170775737868,215,0 +170775737916,215,0 +170775737964,215,0 +170775738012,214,0 +170775738060,213,0 +170775738108,214,0 +170775738156,214,0 +170775738204,214,0 +170775738253,214,0 +170775738301,214,0 +170775738349,214,0 +170775738399,214,0 +170775738447,215,0 +170775738495,215,0 +170775738542,215,0 +170775738590,215,0 +170775738640,215,0 +170775738688,215,0 +170775738736,215,0 +170775738783,215,0 +170775738831,214,0 +170775738879,214,0 +170775738929,214,0 +170775738977,214,0 +170775739024,214,0 +170775739074,214,0 +170775739122,214,0 +170775739170,214,0 +170775739218,214,0 +170775739266,214,0 +170775739314,215,0 +170775739362,215,0 +170775739409,215,0 +170775739457,214,0 +170775739507,215,0 +170775739555,215,0 +170775739604,215,0 +170775739654,214,0 +170775739701,215,0 +170775739749,214,0 +170775739799,213,0 +170775739847,214,0 +170775739895,214,0 +170775739942,214,0 +170775739990,214,0 +170775740038,214,0 +170775740086,214,0 +170775740134,215,0 +170775740182,215,0 +170775740232,215,0 +170775740279,215,0 +170775740329,215,0 +170775740377,215,0 +170775740425,215,0 +170775740473,215,0 +170775740521,214,0 +170775740570,214,0 +170775740620,213,0 +170775740669,213,0 +170775740717,214,0 +170775740767,214,0 +170775740816,213,0 +170775740864,214,0 +170775740912,214,0 +170775740960,214,0 +170775741008,214,0 +170775741057,214,0 +170775741105,215,0 +170775741153,214,0 +170775741201,214,0 +170775741249,215,0 +170775741298,214,0 +170775741346,214,0 +170775741394,214,0 +170775741442,213,0 +170775741490,213,0 +170775741539,213,0 +170775741587,213,0 +170775741635,213,0 +170775741685,213,0 +170775741733,213,0 +170775741781,213,0 +170775741829,214,0 +170775741878,214,0 +170775741926,214,0 +170775741974,214,0 +170775742022,214,0 +170775742070,214,0 +170775742118,214,0 +170775742167,214,0 +170775742217,214,0 +170775742266,214,0 +170775742314,213,0 +170775742362,213,0 +170775742411,213,0 +170775742459,213,0 +170775742507,213,0 +170775742555,214,0 +170775742603,214,0 +170775742651,214,0 +170775742699,214,0 +170775742747,214,0 +170775742795,214,0 +170775742844,214,0 +170775742892,214,0 +170775742940,215,0 +170775742988,214,0 +170775743036,214,0 +170775743085,215,0 +170775743133,214,0 +170775743181,214,0 +170775743229,213,0 +170775743276,214,0 +170775743324,214,0 +170775743372,214,0 +170775743420,214,0 +170775743468,214,0 +170775743516,214,0 +170775743563,214,0 +170775743611,214,0 +170775743659,214,0 +170775743708,214,0 +170775743758,215,0 +170775743806,215,0 +170775743853,214,0 +170775743901,215,0 +170775743949,214,0 +170775743997,213,0 +170775744044,213,0 +170775744092,213,0 +170775744140,214,0 +170775744188,214,0 +170775744237,214,0 +170775744285,214,0 +170775744333,214,0 +170775744381,214,0 +170775744429,214,0 +170775744479,214,0 +170775744526,214,0 +170775744576,214,0 +170775744624,214,0 +170775744672,214,0 +170775744720,215,0 +170775744768,215,0 +170775744816,215,0 +170775744864,213,0 +170775744912,213,0 +170775744959,214,0 +170775745009,213,0 +170775745057,213,0 +170775745105,214,0 +170775745153,214,0 +170775745201,214,0 +170775745249,214,0 +170775745297,214,0 +170775745344,214,0 +170775745394,214,0 +170775745442,214,0 +170775745490,214,0 +170775745538,215,0 +170775745585,214,0 +170775745633,214,0 +170775745681,215,0 +170775745729,213,0 +170775745777,213,0 +170775745825,214,0 +170775745874,213,0 +170775745922,214,0 +170775745972,214,0 +170775746020,214,0 +170775746067,214,0 +170775746115,214,0 +170775746163,214,0 +170775746211,214,0 +170775746260,214,0 +170775746308,215,0 +170775746358,215,0 +170775746405,215,0 +170775746455,215,0 +170775746503,214,0 +170775746551,214,0 +170775746598,214,0 +170775746646,214,0 +170775746694,214,0 +170775746744,214,0 +170775746792,214,0 +170775746839,214,0 +170775746887,214,0 +170775746937,214,0 +170775746986,214,0 +170775747036,215,0 +170775747085,215,0 +170775747133,215,0 +170775747181,215,0 +170775747229,215,0 +170775747278,215,0 +170775747328,214,0 +170775747376,214,0 +170775747424,214,0 +170775747472,214,0 +170775747520,214,0 +170775747569,214,0 +170775747617,214,0 +170775747665,214,0 +170775747715,214,0 +170775747763,214,0 +170775747812,215,0 +170775747860,215,0 +170775747908,215,0 +170775747958,215,0 +170775748006,215,0 +170775748054,215,0 +170775748103,215,0 +170775748151,215,0 +170775748201,214,0 +170775748250,214,0 +170775748298,214,0 +170775748346,214,0 +170775748394,214,0 +170775748444,214,0 +170775748492,214,0 +170775748539,214,0 +170775748589,214,0 +170775748639,214,0 +170775748688,215,0 +170775748736,214,0 +170775748784,215,0 +170775748834,215,0 +170775748883,215,0 +170775748931,215,0 +170775748981,215,0 +170775749030,215,0 +170775749080,215,0 +170775749128,214,0 +170775749176,214,0 +170775749225,214,0 +170775749275,214,0 +170775749324,215,0 +170775749374,215,0 +170775749422,215,0 +170775749470,215,0 +170775749518,215,0 +170775749567,215,0 +170775749615,215,0 +170775749665,215,0 +170775749712,215,0 +170775749762,215,0 +170775749810,217,0 +170775749858,215,0 +170775749907,215,0 +170775749955,214,0 +170775750003,214,0 +170775750051,214,0 +170775750101,214,0 +170775750150,214,0 +170775750200,215,0 +170775750249,215,0 +170775750299,215,0 +170775750348,215,0 +170775750396,215,0 +170775750444,215,0 +170775750494,215,0 +170775750542,215,0 +170775750590,215,0 +170775750638,215,0 +170775750687,215,0 +170775750735,215,0 +170775750783,215,0 +170775750831,214,0 +170775750881,214,0 +170775750930,214,0 +170775750980,214,0 +170775751029,214,0 +170775751077,214,0 +170775751125,214,0 +170775751173,214,0 +170775751221,215,0 +170775751269,215,0 +170775751317,215,0 +170775751365,215,0 +170775751414,215,0 +170775751462,215,0 +170775751510,215,0 +170775751558,215,0 +170775751606,215,0 +170775751656,215,0 +170775751704,214,0 +170775751751,214,0 +170775751799,214,0 +170775751847,214,0 +170775751895,214,0 +170775751945,214,0 +170775751993,215,0 +170775752042,214,0 +170775752090,215,0 +170775752139,214,0 +170775752187,215,0 +170775752235,215,0 +170775752283,214,0 +170775752331,215,0 +170775752381,215,0 +170775752430,215,0 +170775752478,214,0 +170775752526,214,0 +170775752576,213,0 +170775752625,214,0 +170775752673,214,0 +170775752723,214,0 +170775752771,214,0 +170775752819,214,0 +170775752868,214,0 +170775752916,214,0 +170775752966,214,0 +170775753015,215,0 +170775753063,215,0 +170775753111,214,0 +170775753159,215,0 +170775753207,215,0 +170775753255,215,0 +170775753302,215,0 +170775753352,214,0 +170775753400,214,0 +170775753449,214,0 +170775753499,214,0 +170775753547,214,0 +170775753595,214,0 +170775753643,214,0 +170775753692,214,0 +170775753740,214,0 +170775753788,214,0 +170775753836,214,0 +170775753884,215,0 +170775753933,215,0 +170775753981,215,0 +170775754029,215,0 +170775754079,215,0 +170775754128,215,0 +170775754176,215,0 +170775754226,214,0 +170775754274,213,0 +170775754321,213,0 +170775754369,214,0 +170775754417,214,0 +170775754465,214,0 +170775754513,214,0 +170775754561,214,0 +170775754609,214,0 +170775754658,214,0 +170775754706,215,0 +170775754754,214,0 +170775754802,215,0 +170775754850,215,0 +170775754898,215,0 +170775754948,215,0 +170775754996,215,0 +170775755045,214,0 +170775755095,213,0 +170775755144,213,0 +170775755194,213,0 +170775755242,213,0 +170775755290,213,0 +170775755339,214,0 +170775755387,214,0 +170775755435,214,0 +170775755483,214,0 +170775755531,214,0 +170775755579,214,0 +170775755628,215,0 +170775755676,214,0 +170775755724,215,0 +170775755774,215,0 +170775755822,215,0 +170775755870,215,0 +170775755917,214,0 +170775755965,213,0 +170775756013,213,0 +170775756063,214,0 +170775756110,214,0 +170775756160,214,0 +170775756208,214,0 +170775756256,214,0 +170775756304,214,0 +170775756353,214,0 +170775756401,214,0 +170775756451,214,0 +170775756498,214,0 +170775756546,214,0 +170775756596,215,0 +170775756645,215,0 +170775756693,215,0 +170775756743,214,0 +170775756791,213,0 +170775756839,213,0 +170775756887,213,0 +170775756935,213,0 +170775756983,214,0 +170775757031,214,0 +170775757080,214,0 +170775757128,214,0 +170775757177,214,0 +170775757225,214,0 +170775757275,214,0 +170775757324,214,0 +170775757372,215,0 +170775757422,214,0 +170775757471,215,0 +170775757519,215,0 +170775757567,215,0 +170775757615,215,0 +170775757663,213,0 +170775757711,213,0 +170775757759,213,0 +170775757807,214,0 +170775757856,214,0 +170775757904,214,0 +170775757952,214,0 +170775758000,214,0 +170775758048,214,0 +170775758096,214,0 +170775758144,214,0 +170775758192,215,0 +170775758239,215,0 +170775758287,214,0 +170775758335,215,0 +170775758385,215,0 +170775758433,214,0 +170775758480,214,0 +170775758530,213,0 +170775758579,213,0 +170775758627,213,0 +170775758675,213,0 +170775758725,214,0 +170775758773,214,0 +170775758822,214,0 +170775758870,214,0 +170775758918,214,0 +170775758966,214,0 +170775759014,214,0 +170775759062,214,0 +170775759110,214,0 +170775759159,214,0 +170775759207,214,0 +170775759256,214,0 +170775759306,214,0 +170775759354,213,0 +170775759403,213,0 +170775759451,213,0 +170775759501,213,0 +170775759549,213,0 +170775759597,213,0 +170775759646,213,0 +170775759694,213,0 +170775759742,213,0 +170775759792,214,0 +170775759839,214,0 +170775759887,214,0 +170775759935,214,0 +170775759983,214,0 +170775760031,214,0 +170775760079,214,0 +170775760128,214,0 +170775760176,214,0 +170775760226,213,0 +170775760273,213,0 +170775760321,213,0 +170775760371,213,0 +170775760419,213,0 +170775760467,214,0 +170775760516,214,0 +170775760564,214,0 +170775760612,214,0 +170775760660,214,0 +170775760708,214,0 +170775760756,214,0 +170775760804,214,0 +170775760852,214,0 +170775760901,214,0 +170775760951,214,0 +170775760998,214,0 +170775761046,214,0 +170775761096,214,0 +170775761144,214,0 +170775761191,214,0 +170775761241,214,0 +170775761289,214,0 +170775761337,214,0 +170775761386,214,0 +170775761436,214,0 +170775761485,215,0 +170775761533,215,0 +170775761582,215,0 +170775761630,215,0 +170775761680,214,0 +170775761729,215,0 +170775761779,215,0 +170775761827,215,0 +170775761876,215,0 +170775761926,214,0 +170775761974,214,0 +170775762022,214,0 +170775762070,214,0 +170775762117,214,0 +170775762165,214,0 +170775762213,215,0 +170775762261,214,0 +170775762311,215,0 +170775762360,215,0 +170775762408,215,0 +170775762456,215,0 +170775762506,215,0 +170775762553,215,0 +170775762603,216,0 +170775762651,215,0 +170775762699,215,0 +170775762748,214,0 +170775762796,214,0 +170775762844,214,0 +170775762892,215,0 +170775762940,214,0 +170775762988,214,0 +170775763037,215,0 +170775763087,215,0 +170775763136,215,0 +170775763184,214,0 +170775763232,215,0 +170775763280,215,0 +170775763330,215,0 +170775763379,215,0 +170775763427,215,0 +170775763475,215,0 +170775763523,215,0 +170775763572,214,0 +170775763622,214,0 +170775763670,214,0 +170775763718,214,0 +170775763767,214,0 +170775763815,215,0 +170775763865,215,0 +170775763914,215,0 +170775763962,214,0 +170775764010,215,0 +170775764058,215,0 +170775764106,215,0 +170775764154,215,0 +170775764201,215,0 +170775764249,215,0 +170775764297,215,0 +170775764345,215,0 +170775764393,215,0 +170775764441,214,0 +170775764489,214,0 +170775764537,214,0 +170775764586,214,0 +170775764634,214,0 +170775764682,214,0 +170775764730,215,0 +170775764780,214,0 +170775764828,215,0 +170775764877,215,0 +170775764925,215,0 +170775764973,215,0 +170775765021,215,0 +170775765069,215,0 +170775765117,215,0 +170775765165,215,0 +170775765213,215,0 +170775765261,215,0 +170775765308,214,0 +170775765358,214,0 +170775765407,214,0 +170775765455,214,0 +170775765503,214,0 +170775765551,214,0 +170775765601,214,0 +170775765650,215,0 +170775765698,215,0 +170775765746,215,0 +170775765794,215,0 +170775765844,215,0 +170775765892,215,0 +170775765940,215,0 +170775765989,215,0 +170775766038,215,0 +170775766088,215,0 +170775766136,215,0 +170775766184,214,0 +170775766232,214,0 +170775766279,214,0 +170775766327,214,0 +170775766375,214,0 +170775766425,214,0 +170775766474,214,0 +170775766522,214,0 +170775766570,214,0 +170775766620,215,0 +170775766668,215,0 +170775766717,215,0 +170775766765,215,0 +170775766813,215,0 +170775766862,215,0 +170775766910,215,0 +170775766958,215,0 +170775767006,214,0 +170775767054,213,0 +170775767104,213,0 +170775767152,213,0 +170775767200,214,0 +170775767249,214,0 +170775767297,214,0 +170775767345,214,0 +170775767394,214,0 +170775767442,214,0 +170775767492,215,0 +170775767541,215,0 +170775767589,215,0 +170775767637,215,0 +170775767685,215,0 +170775767733,214,0 +170775767781,214,0 +170775767831,214,0 +170775767880,213,0 +170775767930,213,0 +170775767979,213,0 +170775768027,213,0 +170775768077,213,0 +170775768125,213,0 +170775768173,214,0 +170775768221,213,0 +170775768269,214,0 +170775768317,214,0 +170775768366,214,0 +170775768414,214,0 +170775768464,214,0 +170775768513,214,0 +170775768561,215,0 +170775768609,215,0 +170775768657,214,0 +170775768705,215,0 +170775768753,213,0 +170775768801,213,0 +170775768849,213,0 +170775768897,213,0 +170775768945,213,0 +170775768994,214,0 +170775769042,214,0 +170775769092,214,0 +170775769141,214,0 +170775769189,214,0 +170775769237,214,0 +170775769287,214,0 +170775769336,214,0 +170775769384,214,0 +170775769434,215,0 +170775769483,215,0 +170775769531,215,0 +170775769579,214,0 +170775769627,213,0 +170775769675,213,0 +170775769723,213,0 +170775769772,214,0 +170775769820,214,0 +170775769868,214,0 +170775769916,214,0 +170775769966,214,0 +170775770014,214,0 +170775770062,214,0 +170775770109,214,0 +170775770157,214,0 +170775770205,215,0 +170775770253,215,0 +170775770301,214,0 +170775770349,214,0 +170775770397,214,0 +170775770445,214,0 +170775770493,213,0 +170775770541,213,0 +170775770591,214,0 +170775770640,214,0 +170775770688,214,0 +170775770738,214,0 +170775770787,214,0 +170775770837,214,0 +170775770886,214,0 +170775770934,214,0 +170775770982,215,0 +170775771030,214,0 +170775771078,215,0 +170775771126,215,0 +170775771174,215,0 +170775771222,214,0 +170775771270,215,0 +170775771319,213,0 +170775771367,213,0 +170775771417,214,0 +170775771465,214,0 +170775771513,214,0 +170775771561,214,0 +170775771608,214,0 +170775771658,214,0 +170775771706,214,0 +170775771754,214,0 +170775771802,214,0 +170775771850,215,0 +170775771899,215,0 +170775771947,215,0 +170775771997,215,0 +170775772046,215,0 +170775772096,214,0 +170775772145,214,0 +170775772193,214,0 +170775772241,214,0 +170775772291,214,0 +170775772340,214,0 +170775772388,214,0 +170775772438,214,0 +170775772486,214,0 +170775772534,214,0 +170775772581,214,0 +170775772631,214,0 +170775772680,215,0 +170775772730,214,0 +170775772779,214,0 +170775772827,215,0 +170775772875,215,0 +170775772925,214,0 +170775772973,214,0 +170775773021,214,0 +170775773069,214,0 +170775773118,213,0 +170775773166,214,0 +170775773214,214,0 +170775773262,214,0 +170775773312,214,0 +170775773361,214,0 +170775773409,214,0 +170775773457,214,0 +170775773507,214,0 +170775773556,215,0 +170775773606,214,0 +170775773653,215,0 +170775773702,214,0 +170775773751,215,0 +170775773800,215,0 +170775773850,213,0 +170775773900,214,0 +170775773949,214,0 +170775773999,214,0 +170775774048,214,0 +170775774096,214,0 +170775774144,214,0 +170775774194,214,0 +170775774242,214,0 +170775774290,214,0 +170775774338,215,0 +170775774387,215,0 +170775774435,214,0 +170775774483,215,0 +170775774531,215,0 +170775774579,215,0 +170775774628,215,0 +170775774676,214,0 +170775774726,214,0 +170775774775,214,0 +170775774823,213,0 +170775774871,214,0 +170775774921,214,0 +170775774969,214,0 +170775775017,214,0 +170775775066,214,0 +170775775114,214,0 +170775775162,214,0 +170775775212,215,0 +170775775261,215,0 +170775775311,215,0 +170775775360,215,0 +170775775408,215,0 +170775775458,215,0 +170775775506,215,0 +170775775554,214,0 +170775775603,214,0 +170775775651,214,0 +170775775700,214,0 +170775775748,214,0 +170775775796,214,0 +170775775846,214,0 +170775775894,214,0 +170775775941,214,0 +170775775991,215,0 +170775776039,215,0 +170775776088,215,0 +170775776136,215,0 +170775776184,215,0 +170775776232,215,0 +170775776280,215,0 +170775776330,215,0 +170775776378,214,0 +170775776426,214,0 +170775776475,213,0 +170775776523,214,0 +170775776571,214,0 +170775776621,214,0 +170775776669,214,0 +170775776717,214,0 +170775776764,214,0 +170775776814,214,0 +170775776862,215,0 +170775776911,215,0 +170775776959,215,0 +170775777007,215,0 +170775777055,215,0 +170775777103,215,0 +170775777151,215,0 +170775777199,215,0 +170775777248,214,0 +170775777296,214,0 +170775777346,214,0 +170775777394,214,0 +170775777442,214,0 +170775777490,214,0 +170775777539,214,0 +170775777587,214,0 +170775777635,214,0 +170775777685,214,0 +170775777734,214,0 +170775777782,214,0 +170775777830,215,0 +170775777878,214,0 +170775777926,214,0 +170775777974,214,0 +170775778022,215,0 +170775778070,215,0 +170775778119,214,0 +170775778169,214,0 +170775778217,214,0 +170775778266,214,0 +170775778316,214,0 +170775778364,214,0 +170775778411,214,0 +170775778459,214,0 +170775778507,215,0 +170775778555,215,0 +170775778605,215,0 +170775778653,215,0 +170775778701,215,0 +170775778750,215,0 +170775778798,215,0 +170775778846,215,0 +170775778894,215,0 +170775778942,214,0 +170775778990,214,0 +170775779037,214,0 +170775779087,214,0 +170775779135,214,0 +170775779183,214,0 +170775779231,214,0 +170775779279,214,0 +170775779328,214,0 +170775779376,215,0 +170775779424,215,0 +170775779472,215,0 +170775779520,215,0 +170775779568,215,0 +170775779618,215,0 +170775779666,215,0 +170775779714,215,0 +170775779761,215,0 +170775779809,215,0 +170775779859,214,0 +170775779907,214,0 +170775779957,214,0 +170775780006,214,0 +170775780054,214,0 +170775780102,214,0 +170775780150,214,0 +170775780198,214,0 +170775780245,214,0 +170775780293,215,0 +170775780341,214,0 +170775780391,215,0 +170775780439,215,0 +170775780487,215,0 +170775780535,215,0 +170775780582,215,0 +170775780632,215,0 +170775780682,214,0 +170775780729,213,0 +170775780777,213,0 +170775780827,214,0 +170775780875,214,0 +170775780923,214,0 +170775780971,214,0 +170775781019,214,0 +170775781067,214,0 +170775781116,214,0 +170775781166,214,0 +170775781214,215,0 +170775781262,215,0 +170775781310,215,0 +170775781357,215,0 +170775781405,215,0 +170775781453,215,0 +170775781503,215,0 +170775781551,213,0 +170775781599,213,0 +170775781647,214,0 +170775781695,213,0 +170775781744,214,0 +170775781792,214,0 +170775781840,214,0 +170775781888,214,0 +170775781937,214,0 +170775781987,214,0 +170775782035,214,0 +170775782083,214,0 +170775782131,215,0 +170775782179,215,0 +170775782227,215,0 +170775782274,215,0 +170775782324,215,0 +170775782372,215,0 +170775782421,213,0 +170775782469,213,0 +170775782519,214,0 +170775782568,214,0 +170775782616,214,0 +170775782664,214,0 +170775782713,214,0 +170775782763,214,0 +170775782811,214,0 +170775782860,214,0 +170775782908,214,0 +170775782958,214,0 +170775783007,214,0 +170775783055,215,0 +170775783105,214,0 +170775783153,215,0 +170775783201,215,0 +170775783249,214,0 +170775783297,214,0 +170775783344,214,0 +170775783394,214,0 +170775783444,214,0 +170775783491,214,0 +170775783539,214,0 +170775783589,214,0 +170775783637,214,0 +170775783686,214,0 +170775783734,214,0 +170775783784,215,0 +170775783831,215,0 +170775783879,215,0 +170775783927,215,0 +170775783975,215,0 +170775784025,215,0 +170775784073,214,0 +170775784121,214,0 +170775784169,214,0 +170775784217,214,0 +170775784265,214,0 +170775784313,214,0 +170775784361,214,0 +170775784410,214,0 +170775784460,214,0 +170775784508,214,0 +170775784556,214,0 +170775784603,215,0 +170775784653,214,0 +170775784701,215,0 +170775784750,215,0 +170775784798,215,0 +170775784848,215,0 +170775784896,215,0 +170775784945,214,0 +170775784995,214,0 +170775785043,214,0 +170775785091,214,0 +170775785139,214,0 +170775785187,214,0 +170775785235,214,0 +170775785283,214,0 +170775785331,214,0 +170775785379,215,0 +170775785426,214,0 +170775785476,215,0 +170775785524,215,0 +170775785572,215,0 +170775785620,215,0 +170775785669,215,0 +170775785717,215,0 +170775785765,215,0 +170775785815,214,0 +170775785863,214,0 +170775785912,214,0 +170775785962,214,0 +170775786010,214,0 +170775786058,214,0 +170775786107,214,0 +170775786157,214,0 +170775786206,214,0 +170775786256,215,0 +170775786304,215,0 +170775786353,215,0 +170775786401,215,0 +170775786450,215,0 +170775786498,215,0 +170775786548,215,0 +170775786596,214,0 +170775786644,214,0 +170775786692,214,0 +170775786741,214,0 +170775786789,214,0 +170775786839,214,0 +170775786887,214,0 +170775786936,214,0 +170775786986,214,0 +170775787034,215,0 +170775787083,214,0 +170775787131,214,0 +170775787179,215,0 +170775787227,215,0 +170775787275,215,0 +170775787324,215,0 +170775787374,215,0 +170775787422,215,0 +170775787471,214,0 +170775787519,214,0 +170775787569,214,0 +170775787617,214,0 +170775787665,213,0 +170775787712,214,0 +170775787760,214,0 +170775787808,214,0 +170775787856,214,0 +170775787904,214,0 +170775787952,214,0 +170775788001,214,0 +170775788049,214,0 +170775788097,214,0 +170775788147,215,0 +170775788195,215,0 +170775788243,215,0 +170775788292,215,0 +170775788342,214,0 +170775788390,214,0 +170775788439,213,0 +170775788489,214,0 +170775788537,213,0 +170775788584,214,0 +170775788632,214,0 +170775788680,214,0 +170775788728,214,0 +170775788778,214,0 +170775788826,214,0 +170775788874,214,0 +170775788922,214,0 +170775788971,215,0 +170775789021,215,0 +170775789070,215,0 +170775789118,215,0 +170775789166,214,0 +170775789216,214,0 +170775789265,213,0 +170775789315,213,0 +170775789362,213,0 +170775789410,213,0 +170775789460,213,0 +170775789508,213,0 +170775789556,213,0 +170775789604,214,0 +170775789652,214,0 +170775789699,214,0 +170775789749,214,0 +170775789797,214,0 +170775789846,214,0 +170775789896,214,0 +170775789945,214,0 +170775789993,214,0 +170775790041,214,0 +170775790089,214,0 +170775790137,213,0 +170775790187,213,0 +170775790235,213,0 +170775790284,213,0 +170775790332,213,0 +170775790380,213,0 +170775790428,214,0 +170775790477,214,0 +170775790525,214,0 +170775790575,214,0 +170775790623,214,0 +170775790672,214,0 +170775790722,214,0 +170775790770,214,0 +170775790818,215,0 +170775790867,214,0 +170775790915,215,0 +170775790963,214,0 +170775791011,214,0 +170775791061,214,0 +170775791110,214,0 +170775791158,214,0 +170775791208,214,0 +170775791256,214,0 +170775791304,214,0 +170775791353,214,0 +170775791401,215,0 +170775791449,215,0 +170775791497,215,0 +170775791546,215,0 +170775791596,215,0 +170775791644,215,0 +170775791693,215,0 +170775791741,214,0 +170775791789,214,0 +170775791839,214,0 +170775791887,214,0 +170775791935,214,0 +170775791982,214,0 +170775792032,214,0 +170775792082,214,0 +170775792131,214,0 +170775792179,214,0 +170775792227,215,0 +170775792275,215,0 +170775792323,215,0 +170775792371,215,0 +170775792418,215,0 +170775792466,215,0 +170775792516,215,0 +170775792565,215,0 +170775792613,215,0 +170775792661,214,0 +170775792709,214,0 +170775792757,214,0 +170775792807,214,0 +170775792855,214,0 +170775792902,214,0 +170775792950,215,0 +170775792998,214,0 +170775793048,214,0 +170775793096,215,0 +170775793145,215,0 +170775793193,215,0 +170775793241,215,0 +170775793290,215,0 +170775793338,215,0 +170775793386,215,0 +170775793434,215,0 +170775793482,215,0 +170775793530,214,0 +170775793578,214,0 +170775793626,214,0 +170775793674,214,0 +170775793722,214,0 +170775793770,214,0 +170775793819,214,0 +170775793867,215,0 +170775793917,215,0 +170775793965,215,0 +170775794014,215,0 +170775794062,215,0 +170775794110,215,0 +170775794158,215,0 +170775794206,215,0 +170775794254,215,0 +170775794302,215,0 +170775794351,214,0 +170775794399,213,0 +170775794447,214,0 +170775794497,214,0 +170775794545,214,0 +170775794593,214,0 +170775794640,214,0 +170775794688,214,0 +170775794736,214,0 +170775794784,214,0 +170775794834,214,0 +170775794882,214,0 +170775794930,214,0 +170775794978,215,0 +170775795026,214,0 +170775795075,215,0 +170775795125,215,0 +170775795174,215,0 +170775795222,214,0 +170775795270,213,0 +170775795320,213,0 +170775795368,213,0 +170775795417,214,0 +170775795465,214,0 +170775795515,214,0 +170775795563,214,0 +170775795612,214,0 +170775795660,214,0 +170775795708,214,0 +170775795758,214,0 +170775795806,214,0 +170775795854,215,0 +170775795903,215,0 +170775795953,214,0 +170775796002,214,0 +170775796052,214,0 +170775796100,214,0 +170775796149,214,0 +170775796197,214,0 +170775796246,214,0 +170775796296,214,0 +170775796344,214,0 +170775796392,214,0 +170775796441,214,0 +170775796489,215,0 +170775796539,214,0 +170775796586,215,0 +170775796634,215,0 +170775796684,215,0 +170775796734,215,0 +170775796783,215,0 +170775796831,215,0 +170775796879,215,0 +170775796928,214,0 +170775796978,214,0 +170775797025,214,0 +170775797073,214,0 +170775797121,214,0 +170775797169,214,0 +170775797217,214,0 +170775797267,214,0 +170775797315,214,0 +170775797364,214,0 +170775797412,215,0 +170775797460,215,0 +170775797509,215,0 +170775797559,215,0 +170775797607,215,0 +170775797656,215,0 +170775797706,215,0 +170775797755,215,0 +170775797805,214,0 +170775797853,214,0 +170775797901,214,0 +170775797950,214,0 +170775797998,214,0 +170775798048,214,0 +170775798097,214,0 +170775798145,214,0 +170775798193,214,0 +170775798241,214,0 +170775798290,215,0 +170775798340,215,0 +170775798389,215,0 +170775798437,215,0 +170775798487,215,0 +170775798536,215,0 +170775798584,215,0 +170775798634,214,0 +170775798682,213,0 +170775798731,213,0 +170775798779,214,0 +170775798829,214,0 +170775798877,214,0 +170775798926,214,0 +170775798974,214,0 +170775799024,214,0 +170775799071,214,0 +170775799121,215,0 +170775799169,215,0 +170775799217,215,0 +170775799266,215,0 +170775799316,215,0 +170775799364,215,0 +170775799413,215,0 +170775799461,215,0 +170775799510,214,0 +170775799558,213,0 +170775799608,214,0 +170775799656,214,0 +170775799704,214,0 +170775799752,214,0 +170775799800,214,0 +170775799848,214,0 +170775799895,214,0 +170775799943,214,0 +170775799993,215,0 +170775800042,215,0 +170775800090,214,0 +170775800138,215,0 +170775800186,215,0 +170775800234,215,0 +170775800282,215,0 +170775800330,214,0 +170775800378,213,0 +170775800428,213,0 +170775800477,213,0 +170775800527,213,0 +170775800575,213,0 +170775800623,214,0 +170775800671,214,0 +170775800720,214,0 +170775800768,214,0 +170775800816,214,0 +170775800864,214,0 +170775800912,214,0 +170775800960,215,0 +170775801008,215,0 +170775801056,215,0 +170775801104,215,0 +170775801153,214,0 +170775801201,214,0 +170775801251,213,0 +170775801299,213,0 +170775801348,214,0 +170775801398,214,0 +170775801446,214,0 +170775801495,214,0 +170775801543,214,0 +170775801591,214,0 +170775801641,214,0 +170775801690,214,0 +170775801740,214,0 +170775801788,214,0 +170775801836,214,0 +170775801886,214,0 +170775801935,214,0 +170775801983,214,0 +170775802031,215,0 +170775802079,213,0 +170775802127,213,0 +170775802175,213,0 +170775802223,213,0 +170775802271,214,0 +170775802320,214,0 +170775802368,214,0 +170775802418,214,0 +170775802466,214,0 +170775802515,214,0 +170775802565,214,0 +170775802613,214,0 +170775802661,214,0 +170775802708,214,0 +170775802756,214,0 +170775802806,214,0 +170775802854,214,0 +170775802901,214,0 +170775802949,213,0 +170775802999,213,0 +170775803047,213,0 +170775803095,213,0 +170775803143,213,0 +170775803192,214,0 +170775803240,214,0 +170775803288,214,0 +170775803338,214,0 +170775803386,214,0 +170775803433,214,0 +170775803481,214,0 +170775803531,214,0 +170775803580,214,0 +170775803628,214,0 +170775803676,214,0 +170775803724,214,0 +170775803772,214,0 +170775803819,213,0 +170775803867,214,0 +170775803915,213,0 +170775803964,214,0 +170775804014,214,0 +170775804062,214,0 +170775804111,214,0 +170775804159,214,0 +170775804207,214,0 +170775804255,214,0 +170775804303,214,0 +170775804351,214,0 +170775804398,214,0 +170775804446,214,0 +170775804494,214,0 +170775804542,214,0 +170775804590,214,0 +170775804638,214,0 +170775804686,214,0 +170775804735,214,0 +170775804783,214,0 +170775804833,214,0 +170775804881,214,0 +170775804929,214,0 +170775804977,214,0 +170775805026,214,0 +170775805076,214,0 +170775805125,214,0 +170775805173,214,0 +170775805221,214,0 +170775805270,214,0 +170775805318,215,0 +170775805366,214,0 +170775805414,215,0 +170775805462,214,0 +170775805509,214,0 +170775805557,214,0 +170775805605,214,0 +170775805653,214,0 +170775805701,214,0 +170775805749,214,0 +170775805797,214,0 +170775805845,214,0 +170775805893,214,0 +170775805940,215,0 +170775805988,215,0 +170775806036,215,0 +170775806084,215,0 +170775806132,215,0 +170775806180,215,0 +170775806228,215,0 +170775806277,214,0 +170775806325,214,0 +170775806373,214,0 +170775806421,214,0 +170775806469,214,0 +170775806516,214,0 +170775806564,214,0 +170775806612,214,0 +170775806660,214,0 +170775806710,214,0 +170775806758,215,0 +170775806807,215,0 +170775806857,215,0 +170775806905,215,0 +170775806952,215,0 +170775807000,215,0 +170775807050,215,0 +170775807100,214,0 +170775807149,215,0 +170775807197,214,0 +170775807245,214,0 +170775807292,214,0 +170775807340,214,0 +170775807390,214,0 +170775807438,214,0 +170775807485,214,0 +170775807533,215,0 +170775807581,214,0 +170775807629,215,0 +170775807677,214,0 +170775807725,215,0 +170775807772,215,0 +170775807820,215,0 +170775807868,215,0 +170775807918,215,0 +170775807967,214,0 +170775808015,215,0 +170775808063,214,0 +170775808111,214,0 +170775808161,214,0 +170775808210,214,0 +170775808260,214,0 +170775808309,214,0 +170775808357,214,0 +170775808405,215,0 +170775808453,214,0 +170775808501,215,0 +170775808549,215,0 +170775808597,215,0 +170775808644,215,0 +170775808692,215,0 +170775808740,215,0 +170775808788,215,0 +170775808837,215,0 +170775808885,214,0 +170775808933,214,0 +170775808981,214,0 +170775809029,214,0 +170775809077,214,0 +170775809126,214,0 +170775809174,215,0 +170775809222,215,0 +170775809270,215,0 +170775809317,215,0 +170775809365,215,0 +170775809413,215,0 +170775809461,215,0 +170775809509,215,0 +170775809557,215,0 +170775809604,215,0 +170775809652,215,0 +170775809702,214,0 +170775809750,214,0 +170775809798,214,0 +170775809845,214,0 +170775809893,214,0 +170775809941,214,0 +170775809991,214,0 +170775810038,215,0 +170775810086,215,0 +170775810134,215,0 +170775810183,215,0 +170775810231,215,0 +170775810279,215,0 +170775810327,215,0 +170775810375,215,0 +170775810423,215,0 +170775810471,215,0 +170775810518,215,0 +170775810568,214,0 +170775810616,214,0 +170775810665,213,0 +170775810713,214,0 +170775810761,214,0 +170775810809,214,0 +170775810857,214,0 +170775810907,214,0 +170775810954,214,0 +170775811002,214,0 +170775811052,215,0 +170775811100,215,0 +170775811149,215,0 +170775811197,214,0 +170775811245,215,0 +170775811293,215,0 +170775811341,214,0 +170775811390,215,0 +170775811438,215,0 +170775811486,214,0 +170775811534,214,0 +170775811582,214,0 +170775811629,214,0 +170775811677,214,0 +170775811725,214,0 +170775811773,214,0 +170775811821,214,0 +170775811870,215,0 +170775811918,215,0 +170775811966,215,0 +170775812014,215,0 +170775812064,215,0 +170775812111,215,0 +170775812161,215,0 +170775812209,215,0 +170775812258,215,0 +170775812308,214,0 +170775812358,213,0 +170775812405,214,0 +170775812453,214,0 +170775812503,214,0 +170775812551,214,0 +170775812599,214,0 +170775812647,214,0 +170775812695,214,0 +170775812743,214,0 +170775812792,215,0 +170775812840,215,0 +170775812888,215,0 +170775812936,215,0 +170775812984,215,0 +170775813032,215,0 +170775813080,214,0 +170775813127,215,0 +170775813177,213,0 +170775813225,213,0 +170775813273,213,0 +170775813322,214,0 +170775813370,214,0 +170775813418,214,0 +170775813466,214,0 +170775813514,214,0 +170775813562,214,0 +170775813610,214,0 +170775813657,214,0 +170775813705,214,0 +170775813753,215,0 +170775813801,214,0 +170775813851,214,0 +170775813900,215,0 +170775813950,214,0 +170775813997,215,0 +170775814047,213,0 +170775814095,213,0 +170775814144,213,0 +170775814194,213,0 +170775814242,214,0 +170775814290,214,0 +170775814338,214,0 +170775814386,214,0 +170775814434,214,0 +170775814483,214,0 +170775814531,214,0 +170775814579,214,0 +170775814628,214,0 +170775814676,215,0 +170775814724,215,0 +170775814772,215,0 +170775814820,215,0 +170775814868,214,0 +170775814917,213,0 +170775814965,214,0 +170775815013,214,0 +170775815061,214,0 +170775815109,214,0 +170775815157,214,0 +170775815205,214,0 +170775815252,214,0 +170775815300,214,0 +170775815348,214,0 +170775815396,214,0 +170775815444,214,0 +170775815493,215,0 +170775815541,215,0 +170775815589,215,0 +170775815637,215,0 +170775815685,215,0 +170775815734,214,0 +170775815782,213,0 +170775815832,214,0 +170775815881,213,0 +170775815931,214,0 +170775815980,214,0 +170775816030,214,0 +170775816077,214,0 +170775816127,214,0 +170775816175,214,0 +170775816223,215,0 +170775816272,215,0 +170775816322,215,0 +170775816370,215,0 +170775816418,215,0 +170775816467,215,0 +170775816517,215,0 +170775816565,214,0 +170775816613,214,0 +170775816661,213,0 +170775816709,214,0 +170775816758,214,0 +170775816806,214,0 +170775816856,214,0 +170775816905,214,0 +170775816953,214,0 +170775817001,214,0 +170775817049,214,0 +170775817097,215,0 +170775817146,215,0 +170775817196,215,0 +170775817244,214,0 +170775817292,215,0 +170775817340,215,0 +170775817388,215,0 +170775817436,214,0 +170775817483,213,0 +170775817531,213,0 +170775817579,213,0 +170775817629,213,0 +170775817677,214,0 +170775817726,213,0 +170775817774,214,0 +170775817824,214,0 +170775817872,214,0 +170775817920,214,0 +170775817969,214,0 +170775818017,214,0 +170775818065,214,0 +170775818113,215,0 +170775818163,214,0 +170775818211,214,0 +170775818260,215,0 +170775818308,214,0 +170775818358,213,0 +170775818406,213,0 +170775818455,213,0 +170775818503,213,0 +170775818552,213,0 +170775818600,213,0 +170775818650,213,0 +170775818698,213,0 +170775818746,214,0 +170775818794,214,0 +170775818842,214,0 +170775818890,214,0 +170775818939,214,0 +170775818987,214,0 +170775819036,214,0 +170775819086,214,0 +170775819134,214,0 +170775819182,213,0 +170775819231,213,0 +170775819279,213,0 +170775819329,213,0 +170775819377,213,0 +170775819425,213,0 +170775819472,214,0 +170775819520,214,0 +170775819568,214,0 +170775819616,214,0 +170775819666,214,0 +170775819715,214,0 +170775819763,214,0 +170775819811,214,0 +170775819859,214,0 +170775819907,215,0 +170775819957,214,0 +170775820006,214,0 +170775820054,213,0 +170775820102,213,0 +170775820150,213,0 +170775820198,213,0 +170775820247,213,0 +170775820297,214,0 +170775820346,214,0 +170775820394,214,0 +170775820442,214,0 +170775820490,214,0 +170775820538,214,0 +170775820587,214,0 +170775820635,214,0 +170775820683,214,0 +170775820731,214,0 +170775820779,215,0 +170775820828,214,0 +170775820876,214,0 +170775820924,214,0 +170775820972,214,0 +170775821020,214,0 +170775821070,214,0 +170775821119,214,0 +170775821169,214,0 +170775821217,214,0 +170775821265,214,0 +170775821313,214,0 +170775821362,215,0 +170775821410,215,0 +170775821460,215,0 +170775821509,215,0 +170775821557,215,0 +170775821605,215,0 +170775821653,215,0 +170775821701,214,0 +170775821751,214,0 +170775821798,214,0 +170775821846,214,0 +170775821896,214,0 +170775821945,214,0 +170775821993,215,0 +170775822041,215,0 +170775822089,215,0 +170775822139,215,0 +170775822188,215,0 +170775822236,215,0 +170775822284,215,0 +170775822334,215,0 +170775822382,215,0 +170775822431,215,0 +170775822479,215,0 +170775822527,215,0 +170775822577,214,0 +170775822626,214,0 +170775822676,214,0 +170775822725,214,0 +170775822775,215,0 +170775822824,215,0 +170775822872,214,0 +170775822922,215,0 +170775822970,215,0 +170775823018,215,0 +170775823065,215,0 +170775823113,215,0 +170775823161,215,0 +170775823209,215,0 +170775823257,215,0 +170775823307,215,0 +170775823355,215,0 +170775823404,215,0 +170775823452,214,0 +170775823502,214,0 +170775823549,214,0 +170775823597,214,0 +170775823645,214,0 +170775823693,215,0 +170775823741,215,0 +170775823789,215,0 +170775823839,215,0 +170775823888,215,0 +170775823938,215,0 +170775823986,215,0 +170775824034,215,0 +170775824083,215,0 +170775824131,215,0 +170775824181,215,0 +170775824230,215,0 +170775824278,214,0 +170775824326,214,0 +170775824374,214,0 +170775824422,214,0 +170775824470,214,0 +170775824517,214,0 +170775824567,214,0 +170775824616,215,0 +170775824666,214,0 +170775824714,215,0 +170775824762,215,0 +170775824810,215,0 +170775824858,215,0 +170775824906,215,0 +170775824954,215,0 +170775825002,215,0 +170775825050,215,0 +170775825099,215,0 +170775825147,214,0 +170775825197,213,0 +170775825246,214,0 +170775825294,214,0 +170775825342,214,0 +170775825390,214,0 +170775825438,214,0 +170775825487,214,0 +170775825535,214,0 +170775825583,214,0 +170775825631,214,0 +170775825681,215,0 +170775825730,214,0 +170775825778,215,0 +170775825828,215,0 +170775825875,215,0 +170775825925,215,0 +170775825973,214,0 +170775826022,213,0 +170775826072,213,0 +170775826121,213,0 +170775826169,213,0 +170775826219,214,0 +170775826268,213,0 +170775826316,214,0 +170775826366,214,0 +170775826415,214,0 +170775826463,214,0 +170775826511,214,0 +170775826559,214,0 +170775826607,214,0 +170775826657,214,0 +170775826706,214,0 +170775826756,215,0 +170775826804,215,0 +170775826852,215,0 +170775826900,215,0 +170775826948,215,0 +170775826997,215,0 +170775827045,215,0 +170775827093,215,0 +170775827141,215,0 +170775827189,215,0 +170775827237,214,0 +170775827285,214,0 +170775827334,213,0 +170775827382,213,0 +170775827432,214,0 +170775827480,213,0 +170775827529,214,0 +170775827579,214,0 +170775827628,214,0 +170775827678,214,0 +170775827727,214,0 +170775827777,215,0 +170775827825,215,0 +170775827875,215,0 +170775827923,215,0 +170775827971,215,0 +170775828018,215,0 +170775828066,215,0 +170775828114,214,0 +170775828162,214,0 +170775828212,214,0 +170775828261,214,0 +170775828309,214,0 +170775828357,214,0 +170775828405,214,0 +170775828455,214,0 +170775828504,214,0 +170775828554,214,0 +170775828603,214,0 +170775828653,214,0 +170775828701,214,0 +170775828750,215,0 +170775828798,215,0 +170775828846,215,0 +170775828894,215,0 +170775828942,215,0 +170775828990,214,0 +170775829038,213,0 +170775829086,213,0 +170775829135,213,0 +170775829185,214,0 +170775829233,214,0 +170775829283,214,0 +170775829332,214,0 +170775829382,214,0 +170775829429,214,0 +170775829477,214,0 +170775829525,214,0 +170775829575,215,0 +170775829623,214,0 +170775829672,215,0 +170775829720,215,0 +170775829768,215,0 +170775829818,214,0 +170775829867,213,0 +170775829917,213,0 +170775829965,214,0 +170775830013,214,0 +170775830062,214,0 +170775830110,214,0 +170775830160,214,0 +170775830208,214,0 +170775830256,214,0 +170775830303,214,0 +170775830351,214,0 +170775830401,215,0 +170775830450,215,0 +170775830498,214,0 +170775830546,215,0 +170775830594,215,0 +170775830642,214,0 +170775830690,214,0 +170775830740,213,0 +170775830787,213,0 +170775830837,214,0 +170775830885,214,0 +170775830933,214,0 +170775830981,214,0 +170775831030,214,0 +170775831080,214,0 +170775831128,214,0 +170775831176,214,0 +170775831224,215,0 +170775831273,215,0 +170775831321,214,0 +170775831371,215,0 +170775831420,215,0 +170775831468,214,0 +170775831516,214,0 +170775831566,214,0 +170775831614,213,0 +170775831663,213,0 +170775831711,213,0 +170775831760,214,0 +170775831808,214,0 +170775831856,214,0 +170775831904,214,0 +170775831952,214,0 +170775832002,214,0 +170775832051,214,0 +170775832099,214,0 +170775832147,214,0 +170775832195,215,0 +170775832244,215,0 +170775832294,215,0 +170775832342,214,0 +170775832391,214,0 +170775832439,213,0 +170775832489,213,0 +170775832538,213,0 +170775832588,213,0 +170775832636,213,0 +170775832685,214,0 +170775832735,214,0 +170775832783,214,0 +170775832832,214,0 +170775832882,214,0 +170775832931,214,0 +170775832981,214,0 +170775833030,214,0 +170775833078,214,0 +170775833126,214,0 +170775833174,214,0 +170775833222,215,0 +170775833272,213,0 +170775833320,213,0 +170775833369,213,0 +170775833419,213,0 +170775833467,213,0 +170775833514,214,0 +170775833562,214,0 +170775833610,214,0 +170775833660,214,0 +170775833708,214,0 +170775833756,214,0 +170775833805,214,0 +170775833855,214,0 +170775833903,215,0 +170775833952,215,0 +170775834000,215,0 +170775834048,214,0 +170775834097,214,0 +170775834145,213,0 +170775834193,213,0 +170775834241,213,0 +170775834289,213,0 +170775834337,214,0 +170775834385,214,0 +170775834434,214,0 +170775834482,214,0 +170775834530,214,0 +170775834578,214,0 +170775834626,214,0 +170775834674,214,0 +170775834722,215,0 +170775834771,215,0 +170775834819,215,0 +170775834867,215,0 +170775834915,214,0 +170775834963,214,0 +170775835011,213,0 +170775835061,213,0 +170775835110,213,0 +170775835158,213,0 +170775835206,213,0 +170775835256,214,0 +170775835305,214,0 +170775835354,214,0 +170775835404,214,0 +170775835452,214,0 +170775835502,214,0 +170775835550,214,0 +170775835599,215,0 +170775835649,215,0 +170775835698,215,0 +170775835748,215,0 +170775835796,214,0 +170775835845,214,0 +170775835895,214,0 +170775835943,214,0 +170775835990,214,0 +170775836038,214,0 +170775836086,214,0 +170775836134,214,0 +170775836182,215,0 +170775836232,215,0 +170775836280,215,0 +170775836328,215,0 +170775836377,215,0 +170775836425,215,0 +170775836475,215,0 +170775836522,215,0 +170775836570,215,0 +170775836618,215,0 +170775836666,214,0 +170775836716,214,0 +170775836764,214,0 +170775836812,214,0 +170775836861,214,0 +170775836909,214,0 +170775836957,214,0 +170775837007,215,0 +170775837055,215,0 +170775837103,215,0 +170775837152,215,0 +170775837202,215,0 +170775837250,214,0 +170775837298,215,0 +170775837347,215,0 +170775837397,215,0 +170775837446,215,0 +170775837494,215,0 +170775837544,214,0 +170775837591,214,0 +170775837639,214,0 +170775837687,214,0 +170775837735,214,0 +170775837785,214,0 +170775837832,214,0 +170775837880,214,0 +170775837928,214,0 +170775837976,215,0 +170775838024,215,0 +170775838073,215,0 +170775838121,215,0 +170775838169,215,0 +170775838217,215,0 +170775838265,215,0 +170775838313,216,0 +170775838362,215,0 +170775838412,214,0 +170775838460,214,0 +170775838509,214,0 +170775838557,214,0 +170775838607,214,0 +170775838656,214,0 +170775838704,214,0 +170775838752,214,0 +170775838800,214,0 +170775838848,215,0 +170775838896,215,0 +170775838944,215,0 +170775838992,215,0 +170775839040,215,0 +170775839088,215,0 +170775839136,215,0 +170775839184,215,0 +170775839232,214,0 +170775839280,214,0 +170775839328,214,0 +170775839378,214,0 +170775839427,214,0 +170775839477,214,0 +170775839526,214,0 +170775839574,214,0 +170775839624,214,0 +170775839672,215,0 +170775839721,214,0 +170775839769,215,0 +170775839819,215,0 +170775839868,215,0 +170775839916,215,0 +170775839966,215,0 +170775840014,215,0 +170775840062,214,0 +170775840111,213,0 +170775840159,213,0 +170775840209,213,0 +170775840258,213,0 +170775840306,214,0 +170775840354,214,0 +170775840404,214,0 +170775840452,214,0 +170775840501,214,0 +170775840549,214,0 +170775840599,214,0 +170775840646,215,0 +170775840696,215,0 +170775840744,215,0 +170775840792,215,0 +170775840840,215,0 +170775840889,214,0 +170775840937,215,0 +170775840985,214,0 +170775841034,213,0 +170775841082,213,0 +170775841130,213,0 +170775841178,214,0 +170775841226,214,0 +170775841276,213,0 +170775841323,214,0 +170775841371,214,0 +170775841419,214,0 +170775841469,214,0 +170775841517,214,0 +170775841565,214,0 +170775841614,214,0 +170775841664,215,0 +170775841712,215,0 +170775841759,214,0 +170775841809,214,0 +170775841857,213,0 +170775841905,214,0 +170775841953,213,0 +170775842001,214,0 +170775842049,214,0 +170775842097,214,0 +170775842145,214,0 +170775842192,214,0 +170775842242,214,0 +170775842291,214,0 +170775842341,214,0 +170775842391,214,0 +170775842440,215,0 +170775842488,215,0 +170775842538,215,0 +170775842586,215,0 +170775842635,214,0 +170775842683,214,0 +170775842731,213,0 +170775842781,214,0 +170775842830,214,0 +170775842878,214,0 +170775842926,214,0 +170775842974,214,0 +170775843022,214,0 +170775843071,214,0 +170775843121,214,0 +170775843169,214,0 +170775843218,215,0 +170775843268,214,0 +170775843316,215,0 +170775843365,215,0 +170775843413,215,0 +170775843461,215,0 +170775843509,214,0 +170775843557,214,0 +170775843605,214,0 +170775843653,214,0 +170775843702,214,0 +170775843752,214,0 +170775843800,214,0 +170775843849,214,0 +170775843897,214,0 +170775843945,214,0 +170775843993,214,0 +170775844041,215,0 +170775844089,215,0 +170775844137,215,0 +170775844186,215,0 +170775844234,215,0 +170775844282,215,0 +170775844330,215,0 +170775844378,214,0 +170775844426,214,0 +170775844474,213,0 +170775844522,214,0 +170775844570,214,0 +170775844617,214,0 +170775844665,214,0 +170775844713,214,0 +170775844761,214,0 +170775844810,214,0 +170775844858,214,0 +170775844906,215,0 +170775844956,215,0 +170775845004,215,0 +170775845051,215,0 +170775845099,215,0 +170775845147,215,0 +170775845195,215,0 +170775845244,214,0 +170775845292,214,0 +170775845342,214,0 +170775845390,214,0 +170775845438,214,0 +170775845486,214,0 +170775845534,214,0 +170775845583,214,0 +170775845631,214,0 +170775845679,215,0 +170775845727,215,0 +170775845777,215,0 +170775845826,215,0 +170775845874,215,0 +170775845922,215,0 +170775845970,215,0 +170775846018,215,0 +170775846066,214,0 +170775846114,214,0 +170775846163,214,0 +170775846211,214,0 +170775846259,214,0 +170775846307,214,0 +170775846355,214,0 +170775846403,214,0 +170775846452,214,0 +170775846500,214,0 +170775846548,214,0 +170775846596,215,0 +170775846644,215,0 +170775846694,215,0 +170775846742,215,0 +170775846791,215,0 +170775846839,215,0 +170775846887,215,0 +170775846935,215,0 +170775846983,214,0 +170775847031,214,0 +170775847078,214,0 +170775847126,214,0 +170775847174,214,0 +170775847222,214,0 +170775847270,214,0 +170775847318,214,0 +170775847366,214,0 +170775847414,214,0 +170775847464,214,0 +170775847511,214,0 +170775847559,215,0 +170775847607,215,0 +170775847655,215,0 +170775847703,215,0 +170775847750,215,0 +170775847798,215,0 +170775847846,213,0 +170775847894,213,0 +170775847942,213,0 +170775847990,214,0 +170775848038,214,0 +170775848086,214,0 +170775848135,214,0 +170775848183,214,0 +170775848233,214,0 +170775848283,214,0 +170775848330,215,0 +170775848378,214,0 +170775848426,215,0 +170775848474,215,0 +170775848522,215,0 +170775848570,214,0 +170775848618,215,0 +170775848668,214,0 +170775848717,213,0 +170775848767,213,0 +170775848815,213,0 +170775848862,213,0 +170775848912,213,0 +170775848960,213,0 +170775849008,214,0 +170775849056,214,0 +170775849104,214,0 +170775849152,214,0 +170775849200,214,0 +170775849249,214,0 +170775849297,215,0 +170775849345,214,0 +170775849393,214,0 +170775849443,214,0 +170775849492,214,0 +170775849540,214,0 +170775849588,213,0 +170775849636,213,0 +170775849684,213,0 +170775849731,213,0 +170775849779,213,0 +170775849827,213,0 +170775849875,213,0 +170775849923,214,0 +170775849972,214,0 +170775850022,214,0 +170775850071,214,0 +170775850119,214,0 +170775850169,214,0 +170775850216,214,0 +170775850264,214,0 +170775850314,214,0 +170775850363,214,0 +170775850411,214,0 +170775850459,213,0 +170775850507,213,0 +170775850555,213,0 +170775850604,214,0 +170775850652,214,0 +170775850700,214,0 +170775850748,214,0 +170775850796,214,0 +170775850844,214,0 +170775850892,214,0 +170775850942,214,0 +170775850990,215,0 +170775851037,214,0 +170775851085,215,0 +170775851135,214,0 +170775851183,215,0 +170775851231,215,0 +170775851280,214,0 +170775851330,214,0 +170775851378,214,0 +170775851426,214,0 +170775851474,214,0 +170775851523,215,0 +170775851571,215,0 +170775851619,215,0 +170775851668,215,0 +170775851716,215,0 +170775851766,215,0 +170775851814,215,0 +170775851863,215,0 +170775851912,215,0 +170775851960,215,0 +170775852010,215,0 +170775852060,215,0 +170775852107,214,0 +170775852155,214,0 +170775852205,214,0 +170775852255,214,0 +170775852304,215,0 +170775852352,215,0 +170775852401,214,0 +170775852449,215,0 +170775852497,215,0 +170775852545,215,0 +170775852594,215,0 +170775852644,215,0 +170775852692,215,0 +170775852741,215,0 +170775852789,215,0 +170775852837,215,0 +170775852885,215,0 +170775852933,215,0 +170775852982,214,0 +170775853032,214,0 +170775853080,214,0 +170775853128,214,0 +170775853176,214,0 +170775853225,214,0 +170775853273,214,0 +170775853323,214,0 +170775853372,214,0 +170775853420,214,0 +170775853468,215,0 +170775853516,215,0 +170775853564,214,0 +170775853612,215,0 +170775853660,215,0 +170775853710,214,0 +170775853759,215,0 +170775853807,214,0 +170775853857,214,0 +170775853905,214,0 +170775853953,214,0 +170775854001,214,0 +170775854048,214,0 +170775854096,214,0 +170775854144,214,0 +170775854194,214,0 +170775854242,214,0 +170775854291,215,0 +170775854339,215,0 +170775854389,215,0 +170775854438,214,0 +170775854488,215,0 +170775854538,215,0 +170775854586,215,0 +170775854634,215,0 +170775854683,214,0 +170775854733,214,0 +170775854781,214,0 +170775854829,214,0 +170775854877,214,0 +170775854926,214,0 +170775854974,214,0 +170775855022,214,0 +170775855071,214,0 +170775855119,215,0 +170775855167,215,0 +170775855217,215,0 +170775855266,215,0 +170775855314,215,0 +170775855362,215,0 +170775855412,215,0 +170775855460,215,0 +170775855508,217,0 +170775855556,214,0 +170775855604,213,0 +170775855653,213,0 +170775855703,213,0 +170775855752,213,0 +170775855802,213,0 +170775855850,214,0 +170775855899,214,0 +170775855947,214,0 +170775855995,214,0 +170775856043,214,0 +170775856091,214,0 +170775856139,215,0 +170775856187,215,0 +170775856235,215,0 +170775856283,214,0 +170775856332,215,0 +170775856380,214,0 +170775856430,213,0 +170775856479,213,0 +170775856529,213,0 +170775856577,214,0 +170775856626,214,0 +170775856674,214,0 +170775856722,214,0 +170775856770,214,0 +170775856820,214,0 +170775856868,214,0 +170775856916,214,0 +170775856964,214,0 +170775857012,214,0 +170775857059,215,0 +170775857107,215,0 +170775857155,215,0 +170775857205,215,0 +170775857253,214,0 +170775857301,213,0 +170775857349,213,0 +170775857398,214,0 +170775857448,214,0 +170775857496,214,0 +170775857544,214,0 +170775857592,214,0 +170775857640,215,0 +170775857687,214,0 +170775857737,214,0 +170775857785,215,0 +170775857834,214,0 +170775857882,215,0 +170775857930,215,0 +170775857980,215,0 +170775858030,214,0 +170775858077,214,0 +170775858127,213,0 +170775858176,214,0 +170775858224,214,0 +170775858272,214,0 +170775858320,214,0 +170775858370,214,0 +170775858419,214,0 +170775858467,214,0 +170775858515,214,0 +170775858563,214,0 +170775858613,214,0 +170775858661,215,0 +170775858708,215,0 +170775858758,215,0 +170775858806,215,0 +170775858854,215,0 +170775858903,215,0 +170775858951,214,0 +170775858999,214,0 +170775859049,214,0 +170775859098,214,0 +170775859146,214,0 +170775859194,214,0 +170775859242,214,0 +170775859292,214,0 +170775859340,214,0 +170775859388,214,0 +170775859436,215,0 +170775859485,214,0 +170775859533,215,0 +170775859582,215,0 +170775859630,215,0 +170775859678,215,0 +170775859727,215,0 +170775859775,215,0 +170775859823,214,0 +170775859871,214,0 +170775859919,214,0 +170775859967,214,0 +170775860016,214,0 +170775860064,214,0 +170775860114,214,0 +170775860162,214,0 +170775860210,214,0 +170775860259,214,0 +170775860307,214,0 +170775860357,215,0 +170775860405,214,0 +170775860453,214,0 +170775860501,215,0 +170775860550,215,0 +170775860598,215,0 +170775860646,215,0 +170775860694,214,0 +170775860743,213,0 +170775860791,214,0 +170775860841,214,0 +170775860889,214,0 +170775860938,214,0 +170775860988,214,0 +170775861036,214,0 +170775861084,214,0 +170775861132,214,0 +170775861181,214,0 +170775861229,215,0 +170775861277,215,0 +170775861325,215,0 +170775861375,215,0 +170775861424,215,0 +170775861472,215,0 +170775861521,214,0 +170775861569,213,0 +170775861617,213,0 +170775861665,213,0 +170775861713,213,0 +170775861761,214,0 +170775861809,214,0 +170775861856,214,0 +170775861906,214,0 +170775861955,214,0 +170775862005,214,0 +170775862053,214,0 +170775862102,215,0 +170775862150,214,0 +170775862198,214,0 +170775862246,214,0 +170775862296,215,0 +170775862344,215,0 +170775862393,214,0 +170775862441,214,0 +170775862489,213,0 +170775862537,214,0 +170775862586,214,0 +170775862634,214,0 +170775862684,214,0 +170775862733,214,0 +170775862783,214,0 +170775862832,214,0 +170775862880,215,0 +170775862928,215,0 +170775862976,215,0 +170775863024,215,0 +170775863074,215,0 +170775863123,215,0 +170775863171,215,0 +170775863220,214,0 +170775863270,214,0 +170775863319,213,0 +170775863369,214,0 +170775863419,214,0 +170775863468,214,0 +170775863516,214,0 +170775863564,214,0 +170775863612,214,0 +170775863660,214,0 +170775863708,214,0 +170775863756,214,0 +170775863804,214,0 +170775863852,214,0 +170775863901,215,0 +170775863949,215,0 +170775863997,214,0 +170775864045,215,0 +170775864094,214,0 +170775864143,213,0 +170775864191,213,0 +170775864239,213,0 +170775864289,213,0 +170775864337,213,0 +170775864386,214,0 +170775864434,214,0 +170775864482,214,0 +170775864530,214,0 +170775864578,214,0 +170775864626,214,0 +170775864674,214,0 +170775864722,214,0 +170775864769,214,0 +170775864819,214,0 +170775864867,214,0 +170775864916,214,0 +170775864964,214,0 +170775865014,213,0 +170775865062,213,0 +170775865110,213,0 +170775865157,213,0 +170775865207,213,0 +170775865255,213,0 +170775865303,214,0 +170775865351,214,0 +170775865399,214,0 +170775865447,214,0 +170775865495,214,0 +170775865542,214,0 +170775865590,214,0 +170775865638,214,0 +170775865686,214,0 +170775865734,215,0 +170775865782,215,0 +170775865830,214,0 +170775865878,213,0 +170775865926,213,0 +170775865974,214,0 +170775866023,214,0 +170775866071,214,0 +170775866121,214,0 +170775866170,214,0 +170775866218,214,0 +170775866266,214,0 +170775866314,215,0 +170775866361,214,0 +170775866409,215,0 +170775866457,215,0 +170775866505,215,0 +170775866553,214,0 +170775866601,215,0 +170775866649,214,0 +170775866697,214,0 +170775866746,213,0 +170775866794,213,0 +170775866844,214,0 +170775866892,214,0 +170775866940,214,0 +170775866988,214,0 +170775867035,214,0 +170775867085,214,0 +170775867133,214,0 +170775867181,214,0 +170775867229,214,0 +170775867278,214,0 +170775867326,215,0 +170775867375,215,0 +170775867423,215,0 +170775867471,215,0 +170775867519,215,0 +170775867567,214,0 +170775867615,214,0 +170775867663,214,0 +170775867711,214,0 +170775867759,214,0 +170775867808,214,0 +170775867858,214,0 +170775867906,215,0 +170775867954,214,0 +170775868001,214,0 +170775868049,215,0 +170775868097,215,0 +170775868145,215,0 +170775868193,214,0 +170775868243,215,0 +170775868292,215,0 +170775868342,215,0 +170775868390,214,0 +170775868439,215,0 +170775868487,214,0 +170775868535,214,0 +170775868585,214,0 +170775868633,214,0 +170775868680,214,0 +170775868730,214,0 +170775868778,214,0 +170775868826,214,0 +170775868874,215,0 +170775868923,215,0 +170775868971,215,0 +170775869020,215,0 +170775869070,215,0 +170775869118,215,0 +170775869166,215,0 +170775869214,215,0 +170775869262,215,0 +170775869310,215,0 +170775869359,215,0 +170775869407,214,0 +170775869455,214,0 +170775869503,214,0 +170775869551,214,0 +170775869599,214,0 +170775869647,214,0 +170775869696,215,0 +170775869746,215,0 +170775869795,215,0 +170775869843,215,0 +170775869893,215,0 +170775869941,215,0 +170775869989,215,0 +170775870038,215,0 +170775870086,215,0 +170775870135,215,0 +170775870183,215,0 +170775870231,215,0 +170775870279,214,0 +170775870329,214,0 +170775870377,214,0 +170775870426,214,0 +170775870474,214,0 +170775870524,214,0 +170775870572,214,0 +170775870621,214,0 +170775870671,214,0 +170775870719,215,0 +170775870767,215,0 +170775870816,214,0 +170775870864,215,0 +170775870912,215,0 +170775870960,215,0 +170775871008,215,0 +170775871057,215,0 +170775871107,215,0 +170775871155,215,0 +170775871204,215,0 +170775871252,215,0 +170775871300,214,0 +170775871348,214,0 +170775871396,214,0 +170775871444,214,0 +170775871492,214,0 +170775871541,214,0 +170775871589,214,0 +170775871637,214,0 +170775871685,214,0 +170775871733,215,0 +170775871781,215,0 +170775871829,215,0 +170775871877,215,0 +170775871927,215,0 +170775871974,215,0 +170775872024,215,0 +170775872072,215,0 +170775872120,215,0 +170775872168,215,0 +170775872216,214,0 +170775872265,214,0 +170775872313,214,0 +170775872363,214,0 +170775872411,214,0 +170775872460,214,0 +170775872508,215,0 +170775872558,215,0 +170775872607,214,0 +170775872657,215,0 +170775872706,215,0 +170775872754,215,0 +170775872802,215,0 +170775872852,215,0 +170775872901,215,0 +170775872949,215,0 +170775872997,215,0 +170775873045,215,0 +170775873093,215,0 +170775873142,214,0 +170775873190,214,0 +170775873238,214,0 +170775873288,214,0 +170775873336,214,0 +170775873384,214,0 +170775873433,214,0 +170775873483,214,0 +170775873532,214,0 +170775873580,215,0 +170775873630,215,0 +170775873678,215,0 +170775873727,214,0 +170775873775,214,0 +170775873823,215,0 +170775873871,214,0 +170775873921,215,0 +170775873970,214,0 +170775874018,215,0 +170775874066,214,0 +170775874115,213,0 +170775874165,213,0 +170775874213,213,0 +170775874261,213,0 +170775874309,214,0 +170775874357,213,0 +170775874405,214,0 +170775874454,213,0 +170775874502,214,0 +170775874550,214,0 +170775874598,214,0 +170775874646,215,0 +170775874693,214,0 +170775874741,215,0 +170775874791,215,0 +170775874839,215,0 +170775874887,215,0 +170775874936,215,0 +170775874984,215,0 +170775875032,213,0 +170775875080,213,0 +170775875128,213,0 +170775875177,213,0 +170775875225,213,0 +170775875274,213,0 +170775875324,214,0 +170775875374,213,0 +170775875422,214,0 +170775875470,214,0 +170775875518,214,0 +170775875566,214,0 +170775875613,214,0 +170775875661,214,0 +170775875711,214,0 +170775875759,214,0 +170775875809,215,0 +170775875858,214,0 +170775875906,215,0 +170775875955,213,0 +170775876003,213,0 +170775876051,213,0 +170775876101,213,0 +170775876149,213,0 +170775876197,213,0 +170775876245,214,0 +170775876293,214,0 +170775876341,214,0 +170775876388,214,0 +170775876438,214,0 +170775876486,215,0 +170775876534,215,0 +170775876583,215,0 +170775876631,215,0 +170775876679,214,0 +170775876727,215,0 +170775876775,215,0 +170775876823,215,0 +170775876872,213,0 +170775876920,213,0 +170775876968,213,0 +170775877016,213,0 +170775877064,213,0 +170775877112,213,0 +170775877160,213,0 +170775877209,213,0 +170775877257,214,0 +170775877305,214,0 +170775877353,214,0 +170775877401,214,0 +170775877450,215,0 +170775877498,214,0 +170775877546,214,0 +170775877596,214,0 +170775877643,215,0 +170775877691,215,0 +170775877739,214,0 +170775877787,214,0 +170775877835,213,0 +170775877883,213,0 +170775877932,213,0 +170775877982,213,0 +170775878030,213,0 +170775878079,213,0 +170775878129,213,0 +170775878178,214,0 +170775878228,214,0 +170775878277,214,0 +170775878325,214,0 +170775878373,214,0 +170775878422,214,0 +170775878470,214,0 +170775878518,214,0 +170775878566,214,0 +170775878614,214,0 +170775878664,214,0 +170775878712,214,0 +170775878760,213,0 +170775878808,213,0 +170775878857,213,0 +170775878907,213,0 +170775878956,213,0 +170775879004,213,0 +170775879054,213,0 +170775879102,213,0 +170775879151,214,0 +170775879199,214,0 +170775879247,214,0 +170775879297,214,0 +170775879345,214,0 +170775879394,214,0 +170775879442,214,0 +170775879490,214,0 +170775879538,214,0 +170775879586,214,0 +170775879634,214,0 +170775879681,213,0 +170775879729,213,0 +170775879777,213,0 +170775879825,213,0 +170775879873,213,0 +170775879921,213,0 +170775879969,213,0 +170775880017,214,0 +170775880065,214,0 +170775880114,214,0 +170775880164,214,0 +170775880212,214,0 +170775880261,214,0 +170775880309,214,0 +170775880357,214,0 +170775880405,215,0 +170775880454,214,0 +170775880502,214,0 +170775880552,214,0 +170775880601,213,0 +170775880651,213,0 +170775880700,213,0 +170775880748,213,0 +170775880796,213,0 +170775880844,214,0 +170775880892,213,0 +170775880940,214,0 +170775880988,214,0 +170775881037,214,0 +170775881085,214,0 +170775881135,214,0 +170775881183,214,0 +170775881231,214,0 +170775881278,214,0 +170775881328,214,0 +170775881376,214,0 +170775881425,214,0 +170775881473,214,0 +170775881521,213,0 +170775881571,213,0 +170775881620,213,0 +170775881668,213,0 +170775881716,213,0 +170775881764,213,0 +170775881812,213,0 +170775881860,213,0 +170775881910,214,0 +170775881959,214,0 +170775882009,214,0 +170775882058,214,0 +170775882108,214,0 +170775882156,214,0 +170775882205,214,0 +170775882253,214,0 +170775882303,214,0 +170775882350,214,0 +170775882400,214,0 +170775882448,214,0 +170775882496,213,0 +170775882544,213,0 +170775882592,213,0 +170775882640,213,0 +170775882688,214,0 +170775882735,214,0 +170775882785,214,0 +170775882833,214,0 +170775882881,214,0 +170775882930,214,0 +170775882978,214,0 +170775883026,214,0 +170775883074,214,0 +170775883122,215,0 +170775883170,215,0 +170775883220,215,0 +170775883268,215,0 +170775883317,214,0 +170775883365,215,0 +170775883413,213,0 +170775883461,214,0 +170775883509,214,0 +170775883557,214,0 +170775883605,214,0 +170775883653,214,0 +170775883702,214,0 +170775883750,214,0 +170775883798,214,0 +170775883846,214,0 +170775883894,214,0 +170775883942,215,0 +170775883990,215,0 +170775884039,215,0 +170775884089,215,0 +170775884138,215,0 +170775884188,215,0 +170775884237,215,0 +170775884287,214,0 +170775884336,214,0 +170775884386,214,0 +170775884434,214,0 +170775884483,214,0 +170775884531,214,0 +170775884579,214,0 +170775884627,214,0 +170775884676,214,0 +170775884724,214,0 +170775884772,214,0 +170775884820,215,0 +170775884870,215,0 +170775884919,215,0 +170775884967,215,0 +170775885016,214,0 +170775885066,215,0 +170775885114,215,0 +170775885162,214,0 +170775885211,214,0 +170775885261,214,0 +170775885310,213,0 +170775885358,214,0 +170775885408,214,0 +170775885456,214,0 +170775885504,214,0 +170775885552,214,0 +170775885600,214,0 +170775885649,215,0 +170775885697,214,0 +170775885745,214,0 +170775885793,214,0 +170775885842,215,0 +170775885890,215,0 +170775885938,214,0 +170775885986,215,0 +170775886035,215,0 +170775886085,215,0 +170775886133,214,0 +170775886181,214,0 +170775886230,214,0 +170775886278,214,0 +170775886326,214,0 +170775886375,214,0 +170775886423,214,0 +170775886471,214,0 +170775886520,214,0 +170775886568,214,0 +170775886616,214,0 +170775886664,215,0 +170775886714,215,0 +170775886761,215,0 +170775886811,215,0 +170775886859,215,0 +170775886907,215,0 +170775886955,215,0 +170775887004,215,0 +170775887052,214,0 +170775887100,214,0 +170775887149,214,0 +170775887197,214,0 +170775887245,214,0 +170775887294,214,0 +170775887342,214,0 +170775887392,214,0 +170775887440,215,0 +170775887488,214,0 +170775887537,214,0 +170775887585,215,0 +170775887635,215,0 +170775887684,215,0 +170775887732,215,0 +170775887782,215,0 +170775887830,215,0 +170775887879,215,0 +170775887929,215,0 +170775887977,214,0 +170775888026,214,0 +170775888076,214,0 +170775888124,214,0 +170775888172,214,0 +170775888220,214,0 +170775888268,214,0 +170775888316,214,0 +170775888363,214,0 +170775888411,214,0 +170775888459,214,0 +170775888507,215,0 +170775888555,214,0 +170775888603,215,0 +170775888653,215,0 +170775888701,215,0 +170775888749,215,0 +170775888797,215,0 +170775888846,215,0 +170775888894,215,0 +170775888942,214,0 +170775888992,213,0 +170775889039,213,0 +170775889089,213,0 +170775889139,214,0 +170775889186,214,0 +170775889234,214,0 +170775889282,214,0 +170775889330,214,0 +170775889378,214,0 +170775889426,214,0 +170775889474,214,0 +170775889523,214,0 +170775889571,215,0 +170775889619,215,0 +170775889667,215,0 +170775889716,215,0 +170775889766,215,0 +170775889814,215,0 +170775889864,214,0 +170775889913,213,0 +170775889961,213,0 +170775890009,213,0 +170775890057,213,0 +170775890105,213,0 +170775890153,213,0 +170775890202,214,0 +170775890250,214,0 +170775890298,214,0 +170775890346,214,0 +170775890394,214,0 +170775890442,214,0 +170775890490,214,0 +170775890540,214,0 +170775890589,214,0 +170775890639,215,0 +170775890688,214,0 +170775890738,215,0 +170775890787,214,0 +170775890835,213,0 +170775890883,213,0 +170775890931,213,0 +170775890979,213,0 +170775891027,213,0 +170775891075,214,0 +170775891124,214,0 +170775891172,214,0 +170775891222,214,0 +170775891270,214,0 +170775891318,214,0 +170775891367,214,0 +170775891417,214,0 +170775891465,215,0 +170775891513,215,0 +170775891562,215,0 +170775891612,215,0 +170775891660,214,0 +170775891708,214,0 +170775891756,213,0 +170775891804,213,0 +170775891851,213,0 +170775891899,213,0 +170775891947,213,0 +170775891997,213,0 +170775892047,213,0 +170775892094,214,0 +170775892144,214,0 +170775892192,214,0 +170775892241,214,0 +170775892291,214,0 +170775892339,214,0 +170775892388,214,0 +170775892436,214,0 +170775892484,214,0 +170775892534,214,0 +170775892581,214,0 +170775892631,214,0 +170775892679,214,0 +170775892728,213,0 +170775892778,213,0 +170775892826,213,0 +170775892874,213,0 +170775892922,213,0 +170775892970,213,0 +170775893019,214,0 +170775893069,213,0 +170775893116,214,0 +170775893164,214,0 +170775893212,214,0 +170775893260,214,0 +170775893308,214,0 +170775893356,214,0 +170775893404,214,0 +170775893451,214,0 +170775893499,214,0 +170775893547,215,0 +170775893595,214,0 +170775893643,213,0 +170775893692,213,0 +170775893740,213,0 +170775893788,213,0 +170775893836,213,0 +170775893883,214,0 +170775893931,213,0 +170775893979,214,0 +170775894027,214,0 +170775894075,214,0 +170775894123,214,0 +170775894173,214,0 +170775894220,214,0 +170775894270,215,0 +170775894318,214,0 +170775894367,214,0 +170775894417,215,0 +170775894465,214,0 +170775894515,215,0 +170775894563,214,0 +170775894612,213,0 +170775894662,213,0 +170775894711,213,0 +170775894759,213,0 +170775894807,213,0 +170775894855,214,0 +170775894905,214,0 +170775894952,214,0 +170775895000,214,0 +170775895048,214,0 +170775895096,214,0 +170775895144,215,0 +170775895192,214,0 +170775895240,215,0 +170775895288,215,0 +170775895336,215,0 +170775895385,214,0 +170775895433,214,0 +170775895481,214,0 +170775895529,213,0 +170775895578,213,0 +170775895628,213,0 +170775895676,213,0 +170775895724,213,0 +170775895773,214,0 +170775895822,214,0 +170775895870,214,0 +170775895918,214,0 +170775895966,214,0 +170775896014,214,0 +170775896064,214,0 +170775896113,214,0 +170775896163,214,0 +170775896212,214,0 +170775896262,214,0 +170775896310,215,0 +170775896359,214,0 +170775896407,213,0 +170775896455,213,0 +170775896503,213,0 +170775896552,213,0 +170775896600,213,0 +170775896648,213,0 +170775896696,214,0 +170775896744,214,0 +170775896792,214,0 +170775896842,214,0 +170775896891,214,0 +170775896939,214,0 +170775896989,214,0 +170775897037,214,0 +170775897085,214,0 +170775897132,215,0 +170775897180,214,0 +170775897230,214,0 +170775897278,215,0 +170775897326,214,0 +170775897374,213,0 +170775897423,213,0 +170775897473,213,0 +170775897521,214,0 +170775897569,214,0 +170775897617,214,0 +170775897665,214,0 +170775897713,214,0 +170775897760,214,0 +170775897808,214,0 +170775897856,214,0 +170775897906,214,0 +170775897955,215,0 +170775898003,215,0 +170775898051,215,0 +170775898099,215,0 +170775898147,215,0 +170775898195,215,0 +170775898245,214,0 +170775898293,213,0 +170775898341,213,0 +170775898388,213,0 +170775898438,214,0 +170775898486,214,0 +170775898534,214,0 +170775898583,214,0 +170775898632,214,0 +170775898681,214,0 +170775898730,214,0 +170775898780,214,0 +170775898828,214,0 +170775898876,215,0 +170775898924,214,0 +170775898973,215,0 +170775899021,215,0 +170775899069,215,0 +170775899118,215,0 +170775899166,215,0 +170775899214,214,0 +170775899262,213,0 +170775899310,213,0 +170775899358,213,0 +170775899406,214,0 +170775899454,214,0 +170775899502,214,0 +170775899550,214,0 +170775899600,214,0 +170775899649,214,0 +170775899697,214,0 +170775899745,215,0 +170775899793,215,0 +170775899841,215,0 +170775899889,214,0 +170775899938,215,0 +170775899986,215,0 +170775900034,215,0 +170775900082,215,0 +170775900130,214,0 +170775900178,213,0 +170775900227,213,0 +170775900275,213,0 +170775900323,214,0 +170775900371,214,0 +170775900419,214,0 +170775900468,214,0 +170775900518,214,0 +170775900566,214,0 +170775900615,214,0 +170775900663,214,0 +170775900711,215,0 +170775900761,215,0 +170775900810,215,0 +170775900858,215,0 +170775900906,215,0 +170775900954,215,0 +170775901003,214,0 +170775901051,214,0 +170775901099,213,0 +170775901147,213,0 +170775901197,213,0 +170775901245,213,0 +170775901294,213,0 +170775901342,213,0 +170775901390,213,0 +170775901438,213,0 +170775901486,214,0 +170775901534,214,0 +170775901582,214,0 +170775901631,214,0 +170775901679,214,0 +170775901727,214,0 +170775901777,214,0 +170775901826,214,0 +170775901875,214,0 +170775901923,214,0 +170775901971,214,0 +170775902019,213,0 +170775902067,213,0 +170775902115,213,0 +170775902163,213,0 +170775902211,213,0 +170775902258,213,0 +170775902308,213,0 +170775902358,214,0 +170775902405,214,0 +170775902453,214,0 +170775902501,214,0 +170775902549,214,0 +170775902597,214,0 +170775902646,214,0 +170775902696,214,0 +170775902744,214,0 +170775902792,214,0 +170775902840,214,0 +170775902889,214,0 +170775902937,213,0 +170775902985,213,0 +170775903033,213,0 +170775903081,213,0 +170775903131,213,0 +170775903179,213,0 +170775903228,213,0 +170775903276,214,0 +170775903325,214,0 +170775903375,214,0 +170775903423,214,0 +170775903472,214,0 +170775903520,214,0 +170775903570,214,0 +170775903618,214,0 +170775903666,214,0 +170775903714,215,0 +170775903762,214,0 +170775903811,214,0 +170775903861,213,0 +170775903909,213,0 +170775903958,213,0 +170775904006,213,0 +170775904055,214,0 +170775904104,213,0 +170775904151,213,0 +170775904201,213,0 +170775904249,214,0 +170775904297,214,0 +170775904345,214,0 +170775904394,214,0 +170775904442,214,0 +170775904490,214,0 +170775904538,214,0 +170775904588,215,0 +170775904635,215,0 +170775904685,215,0 +170775904734,214,0 +170775904782,214,0 +170775904832,213,0 +170775904880,213,0 +170775904928,213,0 +170775904977,213,0 +170775905025,213,0 +170775905073,213,0 +170775905123,214,0 +170775905171,214,0 +170775905220,213,0 +170775905268,214,0 +170775905318,214,0 +170775905366,214,0 +170775905415,214,0 +170775905465,215,0 +170775905515,214,0 +170775905564,214,0 +170775905614,215,0 +170775905662,215,0 +170775905709,214,0 +170775905757,213,0 +170775905807,213,0 +170775905855,213,0 +170775905904,213,0 +170775905952,213,0 +170775906002,214,0 +170775906050,213,0 +170775906098,214,0 +170775906146,214,0 +170775906195,214,0 +170775906245,214,0 +170775906293,214,0 +170775906340,214,0 +170775906388,214,0 +170775906438,214,0 +170775906488,214,0 +170775906536,214,0 +170775906585,214,0 +170775906635,214,0 +170775906683,213,0 +170775906732,213,0 +170775906780,213,0 +170775906828,213,0 +170775906876,213,0 +170775906926,213,0 +170775906973,214,0 +170775907023,214,0 +170775907071,214,0 +170775907120,214,0 +170775907168,214,0 +170775907218,214,0 +170775907266,214,0 +170775907314,214,0 +170775907361,214,0 +170775907409,214,0 +170775907459,214,0 +170775907509,214,0 +170775907557,215,0 +170775907604,213,0 +170775907654,213,0 +170775907704,213,0 +170775907753,214,0 +170775907801,214,0 +170775907849,214,0 +170775907898,214,0 +170775907946,214,0 +170775907994,214,0 +170775908042,214,0 +170775908090,214,0 +170775908138,215,0 +170775908186,215,0 +170775908234,215,0 +170775908282,215,0 +170775908330,215,0 +170775908378,214,0 +170775908428,215,0 +170775908476,214,0 +170775908524,213,0 +170775908573,214,0 +170775908623,214,0 +170775908671,214,0 +170775908719,214,0 +170775908768,214,0 +170775908818,214,0 +170775908866,214,0 +170775908914,214,0 +170775908962,214,0 +170775909011,214,0 +170775909059,215,0 +170775909109,215,0 +170775909157,215,0 +170775909206,215,0 +170775909254,215,0 +170775909302,215,0 +170775909350,215,0 +170775909398,215,0 +170775909448,214,0 +170775909497,214,0 +170775909547,214,0 +170775909595,214,0 +170775909643,214,0 +170775909691,214,0 +170775909739,214,0 +170775909787,214,0 +170775909836,214,0 +170775909884,214,0 +170775909934,214,0 +170775909983,215,0 +170775910031,214,0 +170775910081,215,0 +170775910129,214,0 +170775910177,215,0 +170775910226,214,0 +170775910276,215,0 +170775910325,215,0 +170775910373,214,0 +170775910423,214,0 +170775910471,214,0 +170775910519,214,0 +170775910567,214,0 +170775910615,214,0 +170775910663,215,0 +170775910712,215,0 +170775910760,215,0 +170775910810,215,0 +170775910858,215,0 +170775910907,215,0 +170775910957,215,0 +170775911005,215,0 +170775911054,215,0 +170775911104,215,0 +170775911151,215,0 +170775911201,215,0 +170775911251,215,0 +170775911299,214,0 +170775911348,214,0 +170775911398,214,0 +170775911446,214,0 +170775911493,214,0 +170775911541,214,0 +170775911591,215,0 +170775911639,214,0 +170775911687,215,0 +170775911736,214,0 +170775911784,215,0 +170775911832,215,0 +170775911880,215,0 +170775911929,215,0 +170775911977,215,0 +170775912027,215,0 +170775912075,215,0 +170775912123,215,0 +170775912171,215,0 +170775912220,215,0 +170775912270,214,0 +170775912319,214,0 +170775912369,214,0 +170775912418,214,0 +170775912466,214,0 +170775912516,214,0 +170775912565,215,0 +170775912613,215,0 +170775912663,214,0 +170775912712,215,0 +170775912762,215,0 +170775912810,214,0 +170775912859,215,0 +170775912909,215,0 +170775912958,215,0 +170775913006,215,0 +170775913054,215,0 +170775913104,215,0 +170775913153,215,0 +170775913201,214,0 +170775913249,213,0 +170775913297,213,0 +170775913345,214,0 +170775913394,214,0 +170775913442,214,0 +170775913490,214,0 +170775913538,214,0 +170775913588,214,0 +170775913636,215,0 +170775913683,214,0 +170775913733,215,0 +170775913781,215,0 +170775913829,215,0 +170775913877,215,0 +170775913925,215,0 +170775913973,215,0 +170775914020,215,0 +170775914068,215,0 +170775914116,214,0 +170775914166,213,0 +170775914214,214,0 +170775914263,213,0 +170775914313,214,0 +170775914363,214,0 +170775914411,214,0 +170775914460,214,0 +170775914510,214,0 +170775914558,214,0 +170775914606,214,0 +170775914653,214,0 +170775914703,214,0 +170775914751,215,0 +170775914799,215,0 +170775914848,215,0 +170775914896,215,0 +170775914944,215,0 +170775914994,215,0 +170775915042,214,0 +170775915090,213,0 +170775915138,213,0 +170775915186,214,0 +170775915235,214,0 +170775915283,214,0 +170775915331,214,0 +170775915381,214,0 +170775915430,214,0 +170775915478,214,0 +170775915526,214,0 +170775915574,214,0 +170775915622,215,0 +170775915671,214,0 +170775915719,214,0 +170775915767,215,0 +170775915815,215,0 +170775915863,214,0 +170775915911,215,0 +170775915959,214,0 +170775916007,213,0 +170775916056,213,0 +170775916104,213,0 +170775916152,213,0 +170775916199,214,0 +170775916249,214,0 +170775916297,214,0 +170775916345,214,0 +170775916392,214,0 +170775916440,214,0 +170775916488,214,0 +170775916536,214,0 +170775916584,215,0 +170775916631,215,0 +170775916679,214,0 +170775916727,214,0 +170775916775,214,0 +170775916823,214,0 +170775916871,215,0 +170775916919,213,0 +170775916967,213,0 +170775917016,213,0 +170775917064,213,0 +170775917112,213,0 +170775917160,213,0 +170775917208,213,0 +170775917256,213,0 +170775917303,214,0 +170775917351,214,0 +170775917401,214,0 +170775917449,214,0 +170775917496,214,0 +170775917544,214,0 +170775917592,214,0 +170775917640,214,0 +170775917689,215,0 +170775917737,214,0 +170775917785,215,0 +170775917833,214,0 +170775917881,213,0 +170775917928,213,0 +170775917976,213,0 +170775918024,213,0 +170775918072,213,0 +170775918120,213,0 +170775918168,214,0 +170775918216,214,0 +170775918263,214,0 +170775918311,214,0 +170775918359,214,0 +170775918407,214,0 +170775918455,214,0 +170775918502,215,0 +170775918550,215,0 +170775918598,214,0 +170775918646,214,0 +170775918694,215,0 +170775918742,215,0 +170775918789,213,0 +170775918837,213,0 +170775918885,213,0 +170775918933,214,0 +170775918981,214,0 +170775919029,213,0 +170775919076,214,0 +170775919124,214,0 +170775919172,214,0 +170775919220,214,0 +170775919268,214,0 +170775919318,214,0 +170775919366,214,0 +170775919413,214,0 +170775919461,215,0 +170775919509,214,0 +170775919559,215,0 +170775919607,214,0 +170775919655,214,0 +170775919703,214,0 +170775919752,213,0 +170775919802,213,0 +170775919851,214,0 +170775919899,214,0 +170775919947,214,0 +170775919995,214,0 +170775920043,214,0 +170775920091,214,0 +170775920139,214,0 +170775920187,214,0 +170775920235,214,0 +170775920282,214,0 +170775920332,214,0 +170775920381,215,0 +170775920431,215,0 +170775920479,215,0 +170775920527,215,0 +170775920575,215,0 +170775920623,214,0 +170775920670,213,0 +170775920720,213,0 +170775920770,213,0 +170775920818,214,0 +170775920865,213,0 +170775920913,214,0 +170775920961,214,0 +170775921011,214,0 +170775921059,214,0 +170775921107,214,0 +170775921155,214,0 +170775921204,215,0 +170775921252,215,0 +170775921300,215,0 +170775921348,215,0 +170775921398,214,0 +170775921446,215,0 +170775921493,214,0 +170775921541,213,0 +170775921589,213,0 +170775921637,213,0 +170775921687,214,0 +170775921736,213,0 +170775921784,214,0 +170775921832,214,0 +170775921880,214,0 +170775921928,214,0 +170775921976,214,0 +170775922025,214,0 +170775922073,214,0 +170775922121,215,0 +170775922169,215,0 +170775922217,215,0 +170775922267,215,0 +170775922315,214,0 +170775922362,215,0 +170775922410,213,0 +170775922458,213,0 +170775922507,213,0 +170775922555,213,0 +170775922605,213,0 +170775922653,213,0 +170775922701,214,0 +170775922749,214,0 +170775922797,214,0 +170775922846,214,0 +170775922896,214,0 +170775922945,214,0 +170775922993,214,0 +170775923041,214,0 +170775923089,214,0 +170775923139,214,0 +170775923186,214,0 +170775923236,214,0 +170775923284,214,0 +170775923332,213,0 +170775923381,213,0 +170775923431,213,0 +170775923479,213,0 +170775923527,213,0 +170775923575,213,0 +170775923623,213,0 +170775923670,214,0 +170775923718,214,0 +170775923766,214,0 +170775923816,214,0 +170775923864,214,0 +170775923912,214,0 +170775923961,214,0 +170775924009,214,0 +170775924059,214,0 +170775924107,214,0 +170775924156,215,0 +170775924204,213,0 +170775924254,213,0 +170775924303,213,0 +170775924353,214,0 +170775924402,213,0 +170775924450,214,0 +170775924498,214,0 +170775924548,214,0 +170775924596,214,0 +170775924644,214,0 +170775924691,214,0 +170775924741,214,0 +170775924789,214,0 +170775924837,214,0 +170775924884,214,0 +170775924932,214,0 +170775924980,214,0 +170775925028,214,0 +170775925076,214,0 +170775925125,213,0 +170775925173,213,0 +170775925221,213,0 +170775925269,213,0 +170775925317,213,0 +170775925365,214,0 +170775925413,214,0 +170775925460,214,0 +170775925508,214,0 +170775925556,214,0 +170775925604,214,0 +170775925653,214,0 +170775925701,214,0 +170775925749,215,0 +170775925797,215,0 +170775925845,215,0 +170775925895,215,0 +170775925943,214,0 +170775925992,213,0 +170775926040,213,0 +170775926090,213,0 +170775926138,213,0 +170775926185,213,0 +170775926233,213,0 +170775926281,214,0 +170775926329,214,0 +170775926377,214,0 +170775926425,214,0 +170775926473,214,0 +170775926522,214,0 +170775926571,214,0 +170775926621,214,0 +170775926669,214,0 +170775926717,214,0 +170775926765,215,0 +170775926813,214,0 +170775926862,213,0 +170775926910,213,0 +170775926958,213,0 +170775927006,213,0 +170775927054,214,0 +170775927102,213,0 +170775927150,213,0 +170775927198,214,0 +170775927245,214,0 +170775927293,214,0 +170775927341,214,0 +170775927389,214,0 +170775927437,215,0 +170775927486,214,0 +170775927534,215,0 +170775927582,215,0 +170775927630,214,0 +170775927678,214,0 +170775927727,214,0 +170775927776,213,0 +170775927824,214,0 +170775927874,213,0 +170775927922,214,0 +170775927970,213,0 +170775928017,214,0 +170775928065,214,0 +170775928113,214,0 +170775928161,214,0 +170775928209,214,0 +170775928257,214,0 +170775928304,215,0 +170775928352,215,0 +170775928402,215,0 +170775928450,215,0 +170775928498,215,0 +170775928545,215,0 +170775928595,214,0 +170775928643,214,0 +170775928692,214,0 +170775928740,213,0 +170775928790,214,0 +170775928839,214,0 +170775928887,214,0 +170775928935,214,0 +170775928985,214,0 +170775929034,214,0 +170775929084,214,0 +170775929133,214,0 +170775929183,214,0 +170775929232,215,0 +170775929280,215,0 +170775929328,215,0 +170775929378,215,0 +170775929427,215,0 +170775929475,214,0 +170775929525,214,0 +170775929573,213,0 +170775929621,213,0 +170775929669,213,0 +170775929717,214,0 +170775929766,213,0 +170775929816,214,0 +170775929865,214,0 +170775929915,214,0 +170775929963,214,0 +170775930012,214,0 +170775930062,214,0 +170775930110,215,0 +170775930157,214,0 +170775930207,215,0 +170775930257,214,0 +170775930304,215,0 +170775930352,215,0 +170775930400,215,0 +170775930448,213,0 +170775930496,213,0 +170775930546,213,0 +170775930594,213,0 +170775930642,213,0 +170775930690,214,0 +170775930737,214,0 +170775930785,214,0 +170775930835,214,0 +170775930884,214,0 +170775930934,214,0 +170775930983,214,0 +170775931033,215,0 +170775931081,214,0 +170775931129,215,0 +170775931177,214,0 +170775931225,215,0 +170775931272,214,0 +170775931320,214,0 +170775931368,213,0 +170775931418,213,0 +170775931466,213,0 +170775931514,213,0 +170775931562,213,0 +170775931611,214,0 +170775931659,214,0 +170775931707,214,0 +170775931755,214,0 +170775931803,214,0 +170775931852,214,0 +170775931902,214,0 +170775931950,215,0 +170775931998,214,0 +170775932046,214,0 +170775932095,215,0 +170775932145,215,0 +170775932194,215,0 +170775932242,213,0 +170775932290,214,0 +170775932338,214,0 +170775932386,214,0 +170775932435,214,0 +170775932483,214,0 +170775932533,214,0 +170775932581,215,0 +170775932630,214,0 +170775932678,214,0 +170775932726,214,0 +170775932774,215,0 +170775932822,215,0 +170775932872,215,0 +170775932920,215,0 +170775932968,215,0 +170775933015,215,0 +170775933063,215,0 +170775933113,213,0 +170775933161,213,0 +170775933209,214,0 +170775933257,214,0 +170775933305,214,0 +170775933352,214,0 +170775933400,214,0 +170775933448,214,0 +170775933496,214,0 +170775933546,214,0 +170775933594,214,0 +170775933642,214,0 +170775933689,215,0 +170775933737,214,0 +170775933785,215,0 +170775933833,215,0 +170775933881,215,0 +170775933931,215,0 +170775933979,214,0 +170775934027,213,0 +170775934075,213,0 +170775934123,213,0 +170775934172,214,0 +170775934220,213,0 +170775934268,214,0 +170775934317,214,0 +170775934367,214,0 +170775934417,214,0 +170775934464,214,0 +170775934512,214,0 +170775934560,214,0 +170775934608,215,0 +170775934656,215,0 +170775934704,215,0 +170775934752,215,0 +170775934800,215,0 +170775934848,215,0 +170775934897,214,0 +170775934947,214,0 +170775934995,214,0 +170775935043,214,0 +170775935091,214,0 +170775935138,214,0 +170775935186,214,0 +170775935234,214,0 +170775935282,214,0 +170775935330,214,0 +170775935378,214,0 +170775935427,214,0 +170775935475,214,0 +170775935523,215,0 +170775935571,215,0 +170775935618,215,0 +170775935666,215,0 +170775935714,214,0 +170775935762,214,0 +170775935810,213,0 +170775935858,213,0 +170775935906,213,0 +170775935954,214,0 +170775936002,214,0 +170775936050,214,0 +170775936098,214,0 +170775936147,214,0 +170775936195,214,0 +170775936245,214,0 +170775936294,214,0 +170775936344,214,0 +170775936392,215,0 +170775936440,215,0 +170775936488,215,0 +170775936535,215,0 +170775936583,215,0 +170775936631,214,0 +170775936681,214,0 +170775936729,213,0 +170775936777,214,0 +170775936825,214,0 +170775936873,214,0 +170775936921,214,0 +170775936969,214,0 +170775937016,214,0 +170775937064,214,0 +170775937112,215,0 +170775937160,214,0 +170775937208,215,0 +170775937256,215,0 +170775937304,215,0 +170775937354,215,0 +170775937403,215,0 +170775937451,215,0 +170775937499,214,0 +170775937548,214,0 +170775937596,214,0 +170775937644,214,0 +170775937692,214,0 +170775937740,214,0 +170775937790,214,0 +170775937838,214,0 +170775937886,214,0 +170775937935,214,0 +170775937983,214,0 +170775938031,215,0 +170775938079,215,0 +170775938127,215,0 +170775938176,215,0 +170775938226,215,0 +170775938274,215,0 +170775938322,215,0 +170775938370,215,0 +170775938417,215,0 +170775938465,214,0 +170775938513,213,0 +170775938561,213,0 +170775938611,214,0 +170775938660,213,0 +170775938708,214,0 +170775938757,214,0 +170775938807,214,0 +170775938855,214,0 +170775938903,214,0 +170775938952,214,0 +170775939000,215,0 +170775939048,215,0 +170775939096,215,0 +170775939144,215,0 +170775939192,215,0 +170775939241,215,0 +170775939289,214,0 +170775939339,214,0 +170775939387,213,0 +170775939435,214,0 +170775939484,214,0 +170775939532,214,0 +170775939580,214,0 +170775939628,214,0 +170775939677,214,0 +170775939725,214,0 +170775939773,214,0 +170775939822,214,0 +170775939870,214,0 +170775939918,214,0 +170775939966,215,0 +170775940014,215,0 +170775940062,215,0 +170775940110,215,0 +170775940158,215,0 +170775940205,215,0 +170775940253,214,0 +170775940301,213,0 +170775940349,214,0 +170775940397,214,0 +170775940445,214,0 +170775940493,214,0 +170775940541,214,0 +170775940590,214,0 +170775940638,214,0 +170775940686,214,0 +170775940736,214,0 +170775940784,214,0 +170775940832,215,0 +170775940880,215,0 +170775940928,215,0 +170775940977,215,0 +170775941027,215,0 +170775941077,215,0 +170775941126,214,0 +170775941174,214,0 +170775941223,214,0 +170775941271,214,0 +170775941319,214,0 +170775941369,214,0 +170775941417,214,0 +170775941464,214,0 +170775941512,214,0 +170775941560,214,0 +170775941608,214,0 +170775941656,214,0 +170775941704,215,0 +170775941752,214,0 +170775941799,214,0 +170775941849,215,0 +170775941897,215,0 +170775941945,215,0 +170775941992,214,0 +170775942040,214,0 +170775942088,214,0 +170775942136,214,0 +170775942185,214,0 +170775942233,214,0 +170775942281,214,0 +170775942329,214,0 +170775942377,214,0 +170775942427,214,0 +170775942475,215,0 +170775942522,215,0 +170775942572,215,0 +170775942620,215,0 +170775942668,215,0 +170775942715,215,0 +170775942765,215,0 +170775942813,215,0 +170775942861,214,0 +170775942910,214,0 +170775942960,214,0 +170775943008,214,0 +170775943057,214,0 +170775943107,214,0 +170775943156,214,0 +170775943206,214,0 +170775943254,214,0 +170775943302,214,0 +170775943351,214,0 +170775943401,215,0 +170775943449,215,0 +170775943497,215,0 +170775943546,215,0 +170775943594,215,0 +170775943642,215,0 +170775943690,215,0 +170775943738,214,0 +170775943786,214,0 +170775943834,213,0 +170775943882,213,0 +170775943930,213,0 +170775943978,214,0 +170775944026,214,0 +170775944073,214,0 +170775944121,214,0 +170775944169,214,0 +170775944217,214,0 +170775944265,214,0 +170775944313,215,0 +170775944361,215,0 +170775944409,215,0 +170775944456,215,0 +170775944506,215,0 +170775944554,215,0 +170775944602,215,0 +170775944652,215,0 +170775944699,214,0 +170775944749,213,0 +170775944797,213,0 +170775944846,213,0 +170775944894,214,0 +170775944944,214,0 +170775944992,214,0 +170775945041,214,0 +170775945091,214,0 +170775945139,214,0 +170775945187,214,0 +170775945236,214,0 +170775945285,214,0 +170775945333,214,0 +170775945383,214,0 +170775945431,214,0 +170775945480,214,0 +170775945530,215,0 +170775945578,214,0 +170775945627,213,0 +170775945675,213,0 +170775945723,213,0 +170775945772,213,0 +170775945822,213,0 +170775945870,214,0 +170775945918,213,0 +170775945966,213,0 +170775946014,214,0 +170775946063,214,0 +170775946111,214,0 +170775946159,214,0 +170775946208,214,0 +170775946258,214,0 +170775946308,214,0 +170775946355,215,0 +170775946405,214,0 +170775946453,214,0 +170775946502,213,0 +170775946550,213,0 +170775946598,213,0 +170775946646,214,0 +170775946696,213,0 +170775946745,214,0 +170775946793,214,0 +170775946841,214,0 +170775946889,214,0 +170775946937,214,0 +170775946987,214,0 +170775947035,214,0 +170775947083,214,0 +170775947132,214,0 +170775947180,215,0 +170775947228,214,0 +170775947276,214,0 +170775947324,214,0 +170775947372,214,0 +170775947421,213,0 +170775947469,213,0 +170775947517,214,0 +170775947565,213,0 +170775947613,214,0 +170775947661,214,0 +170775947711,214,0 +170775947760,214,0 +170775947808,214,0 +170775947857,214,0 +170775947907,214,0 +170775947955,214,0 +170775948003,214,0 +170775948051,214,0 +170775948099,215,0 +170775948146,214,0 +170775948194,214,0 +170775948242,215,0 +170775948290,213,0 +170775948338,213,0 +170775948386,214,0 +170775948434,214,0 +170775948482,214,0 +170775948530,214,0 +170775948578,214,0 +170775948627,214,0 +170775948677,214,0 +170775948725,214,0 +170775948773,215,0 +170775948821,215,0 +170775948869,215,0 +170775948918,215,0 +170775948968,215,0 +170775949017,215,0 +170775949065,215,0 +170775949113,215,0 +170775949161,213,0 +170775949209,213,0 +170775949257,213,0 +170775949306,213,0 +170775949354,213,0 +170775949402,214,0 +170775949450,214,0 +170775949500,214,0 +170775949548,214,0 +170775949597,214,0 +170775949645,214,0 +170775949693,214,0 +170775949742,214,0 +170775949790,214,0 +170775949840,214,0 +170775949888,214,0 +170775949936,214,0 +170775949986,214,0 +170775950035,214,0 +170775950083,213,0 +170775950131,213,0 +170775950180,213,0 +170775950230,213,0 +170775950278,213,0 +170775950327,213,0 +170775950375,214,0 +170775950425,214,0 +170775950473,214,0 +170775950522,214,0 +170775950570,214,0 +170775950618,214,0 +170775950666,214,0 +170775950716,215,0 +170775950764,215,0 +170775950813,214,0 +170775950863,215,0 +170775950912,214,0 +170775950960,213,0 +170775951010,213,0 +170775951057,213,0 +170775951105,213,0 +170775951153,213,0 +170775951201,214,0 +170775951251,214,0 +170775951299,214,0 +170775951348,214,0 +170775951396,214,0 +170775951444,214,0 +170775951493,214,0 +170775951541,214,0 +170775951589,214,0 +170775951637,215,0 +170775951685,215,0 +170775951733,215,0 +170775951783,215,0 +170775951831,213,0 +170775951879,214,0 +170775951927,214,0 +170775951974,213,0 +170775952022,214,0 +170775952070,214,0 +170775952118,214,0 +170775952168,214,0 +170775952216,214,0 +170775952264,214,0 +170775952313,215,0 +170775952361,214,0 +170775952409,214,0 +170775952457,214,0 +170775952507,215,0 +170775952554,215,0 +170775952602,215,0 +170775952650,215,0 +170775952700,214,0 +170775952748,214,0 +170775952796,214,0 +170775952844,214,0 +170775952892,214,0 +170775952940,214,0 +170775952988,214,0 +170775953037,214,0 +170775953087,214,0 +170775953135,214,0 +170775953183,214,0 +170775953232,215,0 +170775953282,215,0 +170775953330,215,0 +170775953379,215,0 +170775953427,215,0 +170775953475,215,0 +170775953523,215,0 +170775953573,215,0 +170775953622,214,0 +170775953670,214,0 +170775953720,214,0 +170775953769,214,0 +170775953817,214,0 +170775953865,214,0 +170775953913,214,0 +170775953961,214,0 +170775954009,214,0 +170775954058,214,0 +170775954106,214,0 +170775954156,215,0 +170775954204,215,0 +170775954254,215,0 +170775954303,215,0 +170775954351,215,0 +170775954399,215,0 +170775954447,215,0 +170775954497,214,0 +170775954546,214,0 +170775954596,214,0 +170775954645,214,0 +170775954695,214,0 +170775954744,214,0 +170775954794,214,0 +170775954842,214,0 +170775954890,214,0 +170775954937,215,0 +170775954987,215,0 +170775955035,215,0 +170775955083,215,0 +170775955131,215,0 +170775955179,215,0 +170775955227,215,0 +170775955276,215,0 +170775955324,215,0 +170775955372,214,0 +170775955420,214,0 +170775955468,214,0 +170775955518,214,0 +170775955565,214,0 +170775955615,214,0 +170775955663,214,0 +170775955711,214,0 +170775955760,214,0 +170775955810,214,0 +170775955858,214,0 +170775955907,214,0 +170775955957,215,0 +170775956006,215,0 +170775956056,215,0 +170775956105,215,0 +170775956155,215,0 +170775956204,215,0 +170775956252,215,0 +170775956300,214,0 +170775956348,214,0 +170775956396,214,0 +170775956444,214,0 +170775956492,214,0 +170775956540,214,0 +170775956587,214,0 +170775956637,215,0 +170775956685,215,0 +170775956733,214,0 +170775956780,214,0 +170775956828,215,0 +170775956876,215,0 +170775956924,215,0 +170775956972,215,0 +170775957021,215,0 +170775957071,215,0 +170775957120,215,0 +170775957170,214,0 +170775957219,214,0 +170775957267,214,0 +170775957315,214,0 +170775957363,214,0 +170775957411,214,0 +170775957460,214,0 +170775957508,215,0 +170775957558,214,0 +170775957607,214,0 +170775957655,214,0 +170775957703,215,0 +170775957751,215,0 +170775957799,215,0 +170775957849,215,0 +170775957898,215,0 +170775957946,215,0 +170775957996,215,0 +170775958044,214,0 +170775958093,214,0 +170775958141,214,0 +170775958191,214,0 +170775958240,214,0 +170775958288,214,0 +170775958338,214,0 +170775958385,214,0 +170775958433,214,0 +170775958483,214,0 +170775958533,214,0 +170775958580,215,0 +170775958628,215,0 +170775958678,215,0 +170775958727,215,0 +170775958775,215,0 +170775958825,215,0 +170775958874,215,0 +170775958922,215,0 +170775958970,214,0 +170775959018,214,0 +170775959068,214,0 +170775959116,214,0 +170775959165,214,0 +170775959213,214,0 +170775959261,215,0 +170775959311,214,0 +170775959358,215,0 +170775959406,215,0 +170775959456,215,0 +170775959504,215,0 +170775959553,215,0 +170775959603,215,0 +170775959652,215,0 +170775959702,216,0 +170775959750,215,0 +170775959798,215,0 +170775959847,214,0 +170775959895,214,0 +170775959943,214,0 +170775959991,214,0 +170775960041,214,0 +170775960090,214,0 +170775960138,214,0 +170775960187,215,0 +170775960235,215,0 +170775960283,215,0 +170775960331,215,0 +170775960381,215,0 +170775960429,215,0 +170775960478,215,0 +170775960528,215,0 +170775960576,215,0 +170775960624,215,0 +170775960672,215,0 +170775960720,214,0 +170775960767,214,0 +170775960815,214,0 +170775960863,214,0 +170775960913,214,0 +170775960962,214,0 +170775961010,214,0 +170775961058,214,0 +170775961106,214,0 +170775961154,214,0 +170775961202,214,0 +170775961252,215,0 +170775961300,214,0 +170775961349,215,0 +170775961398,215,0 +170775961446,215,0 +170775961494,215,0 +170775961542,215,0 +170775961590,215,0 +170775961640,214,0 +170775961689,213,0 +170775961737,214,0 +170775961787,214,0 +170775961835,214,0 +170775961884,214,0 +170775961932,214,0 +170775961980,214,0 +170775962029,214,0 +170775962079,214,0 +170775962127,214,0 +170775962175,215,0 +170775962223,215,0 +170775962272,214,0 +170775962320,215,0 +170775962368,215,0 +170775962417,215,0 +170775962465,215,0 +170775962513,215,0 +170775962562,213,0 +170775962612,213,0 +170775962661,214,0 +170775962709,214,0 +170775962757,214,0 +170775962805,214,0 +170775962853,214,0 +170775962900,214,0 +170775962950,214,0 +170775962998,214,0 +170775963046,214,0 +170775963093,214,0 +170775963141,214,0 +170775963189,214,0 +170775963237,215,0 +170775963285,215,0 +170775963333,215,0 +170775963380,215,0 +170775963428,214,0 +170775963476,213,0 +170775963524,213,0 +170775963572,213,0 +170775963621,214,0 +170775963669,214,0 +170775963717,214,0 +170775963765,214,0 +170775963812,214,0 +170775963860,214,0 +170775963908,214,0 +170775963956,214,0 +170775964004,214,0 +170775964052,214,0 +170775964099,215,0 +170775964147,215,0 +170775964195,215,0 +170775964243,215,0 +170775964292,215,0 +170775964342,214,0 +170775964389,213,0 +170775964437,214,0 +170775964485,214,0 +170775964533,214,0 +170775964581,214,0 +170775964629,214,0 +170775964677,214,0 +170775964726,214,0 +170775964775,214,0 +170775964823,214,0 +170775964871,214,0 +170775964919,214,0 +170775964967,215,0 +170775965014,215,0 +170775965062,215,0 +170775965110,215,0 +170775965158,215,0 +170775965206,214,0 +170775965254,213,0 +170775965303,213,0 +170775965351,213,0 +170775965399,214,0 +170775965447,214,0 +170775965496,214,0 +170775965544,214,0 +170775965592,214,0 +170775965640,214,0 +170775965689,214,0 +170775965737,215,0 +170775965785,215,0 +170775965833,214,0 +170775965880,215,0 +170775965928,215,0 +170775965978,215,0 +170775966026,215,0 +170775966075,215,0 +170775966123,214,0 +170775966171,213,0 +170775966218,213,0 +170775966266,214,0 +170775966314,214,0 +170775966362,213,0 +170775966410,214,0 +170775966459,214,0 +170775966507,214,0 +170775966555,214,0 +170775966605,214,0 +170775966653,215,0 +170775966702,215,0 +170775966752,215,0 +170775966800,215,0 +170775966848,215,0 +170775966897,215,0 +170775966945,215,0 +170775966993,215,0 +170775967041,213,0 +170775967089,213,0 +170775967138,214,0 +170775967188,214,0 +170775967236,214,0 +170775967284,214,0 +170775967332,214,0 +170775967380,214,0 +170775967428,214,0 +170775967476,214,0 +170775967525,214,0 +170775967575,214,0 +170775967623,215,0 +170775967671,215,0 +170775967719,215,0 +170775967767,215,0 +170775967815,215,0 +170775967862,215,0 +170775967910,214,0 +170775967958,214,0 +170775968006,214,0 +170775968054,214,0 +170775968102,214,0 +170775968150,214,0 +170775968199,214,0 +170775968248,214,0 +170775968296,214,0 +170775968344,214,0 +170775968392,214,0 +170775968440,214,0 +170775968489,214,0 +170775968537,215,0 +170775968585,215,0 +170775968633,215,0 +170775968681,215,0 +170775968729,215,0 +170775968777,214,0 +170775968825,214,0 +170775968873,214,0 +170775968921,214,0 +170775968969,214,0 +170775969016,214,0 +170775969064,214,0 +170775969112,214,0 +170775969160,214,0 +170775969208,214,0 +170775969256,214,0 +170775969304,214,0 +170775969351,214,0 +170775969399,214,0 +170775969447,214,0 +170775969496,215,0 +170775969544,215,0 +170775969592,215,0 +170775969640,215,0 +170775969688,214,0 +170775969737,214,0 +170775969786,214,0 +170775969834,214,0 +170775969882,214,0 +170775969932,214,0 +170775969980,214,0 +170775970029,214,0 +170775970077,214,0 +170775970125,214,0 +170775970173,214,0 +170775970221,214,0 +170775970270,215,0 +170775970320,215,0 +170775970368,215,0 +170775970416,215,0 +170775970465,215,0 +170775970515,215,0 +170775970564,214,0 +170775970612,213,0 +170775970661,214,0 +170775970711,214,0 +170775970758,214,0 +170775970806,214,0 +170775970854,214,0 +170775970903,214,0 +170775970951,214,0 +170775971001,214,0 +170775971048,215,0 +170775971096,215,0 +170775971144,215,0 +170775971193,215,0 +170775971241,215,0 +170775971289,215,0 +170775971337,215,0 +170775971385,215,0 +170775971433,215,0 +170775971480,214,0 +170775971528,214,0 +170775971578,214,0 +170775971627,214,0 +170775971675,214,0 +170775971725,214,0 +170775971773,215,0 +170775971821,215,0 +170775971869,215,0 +170775971917,215,0 +170775971965,215,0 +170775972014,215,0 +170775972062,215,0 +170775972110,215,0 +170775972159,215,0 +170775972209,215,0 +170775972257,215,0 +170775972305,215,0 +170775972352,214,0 +170775972400,214,0 +170775972448,214,0 +170775972496,214,0 +170775972546,214,0 +170775972594,214,0 +170775972642,214,0 +170775972690,215,0 +170775972738,215,0 +170775972786,215,0 +170775972835,215,0 +170775972885,215,0 +170775972933,215,0 +170775972982,215,0 +170775973032,215,0 +170775973080,215,0 +170775973128,215,0 +170775973177,215,0 +170775973225,215,0 +170775973273,214,0 +170775973321,214,0 +170775973371,214,0 +170775973420,214,0 +170775973470,214,0 +170775973518,214,0 +170775973566,214,0 +170775973614,214,0 +170775973662,215,0 +170775973710,215,0 +170775973759,215,0 +170775973807,215,0 +170775973855,215,0 +170775973903,215,0 +170775973952,215,0 +170775974002,215,0 +170775974051,215,0 +170775974099,215,0 +170775974147,214,0 +170775974197,214,0 +170775974245,213,0 +170775974293,214,0 +170775974340,214,0 +170775974388,214,0 +170775974438,214,0 +170775974485,214,0 +170775974533,214,0 +170775974581,215,0 +170775974629,215,0 +170775974677,215,0 +170775974725,215,0 +170775974774,215,0 +170775974822,215,0 +170775974870,215,0 +170775974920,215,0 +170775974969,215,0 +170775975017,214,0 +170775975065,213,0 +170775975115,213,0 +170775975163,213,0 +170775975212,213,0 +170775975260,214,0 +170775975310,213,0 +170775975358,214,0 +170775975405,214,0 +170775975455,214,0 +170775975504,214,0 +170775975554,214,0 +170775975602,214,0 +170775975650,214,0 +170775975697,214,0 +170775975745,215,0 +170775975793,214,0 +170775975841,215,0 +170775975890,215,0 +170775975938,215,0 +170775975986,215,0 +170775976036,215,0 +170775976085,215,0 +170775976133,215,0 +170775976181,215,0 +170775976230,215,0 +170775976278,215,0 +170775976326,215,0 +170775976374,214,0 +170775976423,214,0 +170775976473,214,0 +170775976522,214,0 +170775976570,214,0 +170775976618,214,0 +170775976666,214,0 +170775976716,214,0 +170775976765,214,0 +170775976813,215,0 +170775976861,215,0 +170775976909,215,0 +170775976958,215,0 +170775977008,215,0 +170775977056,215,0 +170775977104,215,0 +170775977153,215,0 +170775977201,215,0 +170775977249,214,0 +170775977297,214,0 +170775977346,214,0 +170775977395,214,0 +170775977442,214,0 +170775977490,214,0 +170775977540,214,0 +170775977589,214,0 +170775977637,214,0 +170775977687,215,0 +170775977734,215,0 +170775977784,215,0 +170775977832,215,0 +170775977880,215,0 +170775977928,215,0 +170775977976,215,0 +170775978023,215,0 +170775978071,215,0 +170775978121,215,0 +170775978169,214,0 +170775978217,214,0 +170775978264,214,0 +170775978314,214,0 +170775978363,214,0 +170775978413,214,0 +170775978461,214,0 +170775978509,215,0 +170775978557,215,0 +170775978606,215,0 +170775978654,215,0 +170775978704,215,0 +170775978752,215,0 +170775978801,215,0 +170775978849,215,0 +170775978897,215,0 +170775978947,215,0 +170775978995,215,0 +170775979042,214,0 +170775979090,214,0 +170775979138,214,0 +170775979188,214,0 +170775979236,214,0 +170775979284,214,0 +170775979332,214,0 +170775979380,214,0 +170775979429,215,0 +170775979477,214,0 +170775979525,214,0 +170775979573,215,0 +170775979623,215,0 +170775979672,215,0 +170775979721,215,0 +170775979771,215,0 +170775979819,215,0 +170775979868,215,0 +170775979918,214,0 +170775979967,213,0 +170775980015,214,0 +170775980064,214,0 +170775980111,214,0 +170775980159,214,0 +170775980207,214,0 +170775980255,214,0 +170775980305,214,0 +170775980353,214,0 +170775980402,214,0 +170775980450,214,0 +170775980498,215,0 +170775980546,215,0 +170775980596,215,0 +170775980645,215,0 +170775980695,215,0 +170775980743,215,0 +170775980792,214,0 +170775980840,213,0 +170775980888,214,0 +170775980936,213,0 +170775980984,214,0 +170775981032,214,0 +170775981080,214,0 +170775981128,214,0 +170775981177,214,0 +170775981227,214,0 +170775981275,214,0 +170775981323,214,0 +170775981371,215,0 +170775981420,215,0 +170775981468,215,0 +170775981518,215,0 +170775981566,215,0 +170775981614,215,0 +170775981663,215,0 +170775981711,214,0 +170775981759,214,0 +170775981808,214,0 +170775981856,214,0 +170775981904,214,0 +170775981952,214,0 +170775982000,214,0 +170775982048,214,0 +170775982097,214,0 +170775982145,214,0 +170775982193,214,0 +170775982241,215,0 +170775982289,215,0 +170775982338,215,0 +170775982386,215,0 +170775982434,215,0 +170775982482,215,0 +170775982530,215,0 +170775982578,215,0 +170775982628,214,0 +170775982675,214,0 +170775982725,214,0 +170775982773,214,0 +170775982821,214,0 +170775982870,214,0 +170775982918,214,0 +170775982966,214,0 +170775983014,215,0 +170775983062,215,0 +170775983110,215,0 +170775983158,215,0 +170775983206,215,0 +170775983255,215,0 +170775983303,215,0 +170775983351,215,0 +170775983399,215,0 +170775983447,215,0 +170775983495,214,0 +170775983543,214,0 +170775983592,214,0 +170775983640,214,0 +170775983690,214,0 +170775983738,214,0 +170775983785,214,0 +170775983833,215,0 +170775983881,215,0 +170775983929,215,0 +170775983977,215,0 +170775984026,215,0 +170775984074,215,0 +170775984122,215,0 +170775984170,215,0 +170775984218,215,0 +170775984266,215,0 +170775984315,215,0 +170775984363,214,0 +170775984411,214,0 +170775984461,214,0 +170775984508,214,0 +170775984556,214,0 +170775984606,214,0 +170775984654,214,0 +170775984702,214,0 +170775984751,214,0 +170775984799,214,0 +170775984847,215,0 +170775984897,215,0 +170775984944,215,0 +170775984994,215,0 +170775985042,215,0 +170775985090,215,0 +170775985138,215,0 +170775985186,215,0 +170775985234,215,0 +170775985283,214,0 +170775985331,214,0 +170775985379,214,0 +170775985427,214,0 +170775985475,214,0 +170775985524,214,0 +170775985572,214,0 +170775985620,214,0 +170775985668,214,0 +170775985718,215,0 +170775985766,214,0 +170775985814,215,0 +170775985863,215,0 +170775985911,215,0 +170775985959,215,0 +170775986008,215,0 +170775986058,215,0 +170775986107,215,0 +170775986155,214,0 +170775986205,214,0 +170775986253,214,0 +170775986300,214,0 +170775986348,214,0 +170775986396,214,0 +170775986444,214,0 +170775986492,214,0 +170775986541,214,0 +170775986589,215,0 +170775986637,215,0 +170775986685,215,0 +170775986733,215,0 +170775986781,215,0 +170775986829,215,0 +170775986876,215,0 +170775986924,215,0 +170775986972,215,0 +170775987020,214,0 +170775987068,214,0 +170775987117,214,0 +170775987165,214,0 +170775987213,214,0 +170775987263,214,0 +170775987311,214,0 +170775987359,214,0 +170775987407,214,0 +170775987456,215,0 +170775987506,215,0 +170775987554,215,0 +170775987601,215,0 +170775987649,215,0 +170775987699,215,0 +170775987747,215,0 +170775987796,215,0 +170775987844,215,0 +170775987892,215,0 +170775987940,214,0 +170775987988,214,0 +170775988036,214,0 +170775988084,214,0 +170775988133,214,0 +170775988181,214,0 +170775988229,214,0 +170775988277,214,0 +170775988325,215,0 +170775988373,215,0 +170775988421,215,0 +170775988468,215,0 +170775988516,215,0 +170775988564,215,0 +170775988612,215,0 +170775988659,215,0 +170775988707,215,0 +170775988755,215,0 +170775988803,215,0 +170775988852,214,0 +170775988902,214,0 +170775988950,214,0 +170775988998,214,0 +170775989047,214,0 +170775989095,214,0 +170775989143,214,0 +170775989190,214,0 +170775989238,214,0 +170775989286,214,0 +170775989335,215,0 +170775989383,215,0 +170775989433,215,0 +170775989480,215,0 +170775989528,215,0 +170775989576,215,0 +170775989624,215,0 +170775989672,215,0 +170775989721,214,0 +170775989769,213,0 +170775989817,214,0 +170775989866,214,0 +170775989914,214,0 +170775989962,214,0 +170775990012,214,0 +170775990060,214,0 +170775990108,214,0 +170775990157,214,0 +170775990207,214,0 +170775990255,214,0 +170775990304,215,0 +170775990352,215,0 +170775990400,215,0 +170775990449,215,0 +170775990497,215,0 +170775990547,215,0 +170775990595,215,0 +170775990643,214,0 +170775990690,214,0 +170775990738,214,0 +170775990786,214,0 +170775990834,214,0 +170775990882,214,0 +170775990930,214,0 +170775990978,214,0 +170775991027,214,0 +170775991075,214,0 +170775991123,214,0 +170775991171,215,0 +170775991219,215,0 +170775991267,215,0 +170775991317,215,0 +170775991365,215,0 +170775991414,215,0 +170775991464,215,0 +170775991513,214,0 +170775991561,213,0 +170775991611,214,0 +170775991659,214,0 +170775991708,214,0 +170775991756,214,0 +170775991804,214,0 +170775991852,214,0 +170775991899,214,0 +170775991947,214,0 +170775991997,215,0 +170775992045,214,0 +170775992093,214,0 +170775992141,215,0 +170775992189,215,0 +170775992237,215,0 +170775992285,215,0 +170775992332,215,0 +170775992380,215,0 +170775992430,214,0 +170775992478,214,0 +170775992527,214,0 +170775992577,214,0 +170775992625,214,0 +170775992674,214,0 +170775992724,214,0 +170775992773,214,0 +170775992823,214,0 +170775992872,214,0 +170775992922,215,0 +170775992971,214,0 +170775993021,215,0 +170775993069,215,0 +170775993117,215,0 +170775993166,215,0 +170775993214,214,0 +170775993262,215,0 +170775993312,214,0 +170775993359,213,0 +170775993407,214,0 +170775993457,214,0 +170775993505,214,0 +170775993553,214,0 +170775993601,214,0 +170775993649,214,0 +170775993697,214,0 +170775993744,214,0 +170775993794,214,0 +170775993842,215,0 +170775993892,215,0 +170775993939,215,0 +170775993987,215,0 +170775994035,215,0 +170775994083,215,0 +170775994132,215,0 +170775994180,215,0 +170775994228,214,0 +170775994276,214,0 +170775994326,213,0 +170775994375,214,0 +170775994423,214,0 +170775994471,214,0 +170775994519,214,0 +170775994567,214,0 +170775994615,214,0 +170775994662,214,0 +170775994710,215,0 +170775994758,214,0 +170775994806,215,0 +170775994854,215,0 +170775994902,215,0 +170775994950,215,0 +170775994997,215,0 +170775995045,214,0 +170775995093,214,0 +170775995143,213,0 +170775995192,213,0 +170775995242,213,0 +170775995291,213,0 +170775995341,214,0 +170775995390,214,0 +170775995438,214,0 +170775995486,214,0 +170775995534,214,0 +170775995582,214,0 +170775995630,214,0 +170775995680,214,0 +170775995729,215,0 +170775995779,215,0 +170775995827,215,0 +170775995876,215,0 +170775995924,215,0 +170775995972,214,0 +170775996022,213,0 +170775996070,213,0 +170775996118,214,0 +170775996165,214,0 +170775996215,213,0 +170775996263,214,0 +170775996311,214,0 +170775996359,214,0 +170775996407,214,0 +170775996455,214,0 +170775996503,214,0 +170775996551,214,0 +170775996599,214,0 +170775996646,215,0 +170775996694,215,0 +170775996744,215,0 +170775996793,215,0 +170775996843,215,0 +170775996892,214,0 +170775996940,214,0 +170775996990,214,0 +170775997038,214,0 +170775997086,214,0 +170775997134,214,0 +170775997181,214,0 +170775997229,214,0 +170775997277,214,0 +170775997327,215,0 +170775997375,215,0 +170775997424,214,0 +170775997474,215,0 +170775997521,215,0 +170775997571,215,0 +170775997620,215,0 +170775997670,214,0 +170775997718,215,0 +170775997767,214,0 +170775997817,214,0 +170775997865,214,0 +170775997912,214,0 +170775997962,214,0 +170775998011,214,0 +170775998061,214,0 +170775998110,214,0 +170775998158,215,0 +170775998206,214,0 +170775998256,215,0 +170775998304,215,0 +170775998353,215,0 +170775998401,215,0 +170775998451,215,0 +170775998500,215,0 +170775998548,215,0 +170775998596,215,0 +170775998645,214,0 +170775998695,214,0 +170775998743,214,0 +170775998791,214,0 +170775998838,214,0 +170775998886,214,0 +170775998936,214,0 +170775998985,214,0 +170775999035,214,0 +170775999083,214,0 +170775999130,214,0 +170775999180,215,0 +170775999228,215,0 +170775999277,215,0 +170775999325,215,0 +170775999373,215,0 +170775999423,215,0 +170775999472,215,0 +170775999520,214,0 +170775999568,214,0 +170775999616,214,0 +170775999664,214,0 +170775999712,214,0 +170775999759,214,0 +170775999807,214,0 +170775999855,214,0 +170775999904,214,0 +170775999952,215,0 +170776000002,215,0 +170776000049,215,0 +170776000097,215,0 +170776000145,215,0 +170776000193,215,0 +170776000241,215,0 +170776000288,215,0 +170776000338,215,0 +170776000386,215,0 +170776000434,214,0 +170776000482,214,0 +170776000531,214,0 +170776000579,214,0 +170776000628,214,0 +170776000676,214,0 +170776000724,214,0 +170776000772,215,0 +170776000820,215,0 +170776000868,215,0 +170776000916,215,0 +170776000964,215,0 +170776001012,215,0 +170776001060,215,0 +170776001108,215,0 +170776001155,215,0 +170776001205,215,0 +170776001252,215,0 +170776001302,215,0 +170776001350,214,0 +170776001398,214,0 +170776001445,214,0 +170776001493,214,0 +170776001543,214,0 +170776001591,215,0 +170776001639,215,0 +170776001686,215,0 +170776001734,215,0 +170776001782,215,0 +170776001830,215,0 +170776001878,215,0 +170776001926,215,0 +170776001973,215,0 +170776002021,215,0 +170776002069,215,0 +170776002117,215,0 +170776002165,215,0 +170776002215,214,0 +170776002262,214,0 +170776002310,214,0 +170776002360,214,0 +170776002408,214,0 +170776002456,214,0 +170776002505,214,0 +170776002555,214,0 +170776002603,214,0 +170776002652,215,0 +170776002700,215,0 +170776002750,215,0 +170776002798,215,0 +170776002846,215,0 +170776002894,215,0 +170776002943,215,0 +170776002991,215,0 +170776003041,215,0 +170776003088,214,0 +170776003138,214,0 +170776003186,214,0 +170776003234,214,0 +170776003282,214,0 +170776003330,214,0 +170776003378,214,0 +170776003427,214,0 +170776003475,215,0 +170776003525,215,0 +170776003572,215,0 +170776003620,215,0 +170776003668,215,0 +170776003716,215,0 +170776003764,215,0 +170776003812,215,0 +170776003860,215,0 +170776003910,215,0 +170776003957,215,0 +170776004005,214,0 +170776004053,214,0 +170776004101,214,0 +170776004149,214,0 +170776004197,214,0 +170776004246,214,0 +170776004294,215,0 +170776004342,215,0 +170776004390,215,0 +170776004439,215,0 +170776004487,215,0 +170776004535,215,0 +170776004583,215,0 +170776004631,215,0 +170776004679,215,0 +170776004728,215,0 +170776004776,215,0 +170776004826,215,0 +170776004874,215,0 +170776004923,214,0 +170776004971,214,0 +170776005019,214,0 +170776005069,214,0 +170776005118,214,0 +170776005166,214,0 +170776005215,214,0 +170776005263,215,0 +170776005313,215,0 +170776005361,215,0 +170776005409,215,0 +170776005457,215,0 +170776005506,215,0 +170776005554,215,0 +170776005602,215,0 +170776005652,215,0 +170776005699,215,0 +170776005749,215,0 +170776005797,214,0 +170776005845,214,0 +170776005894,214,0 +170776005942,214,0 +170776005990,214,0 +170776006038,214,0 +170776006086,214,0 +170776006135,214,0 +170776006183,214,0 +170776006231,214,0 +170776006279,215,0 +170776006327,215,0 +170776006377,215,0 +170776006424,215,0 +170776006474,215,0 +170776006522,215,0 +170776006571,215,0 +170776006619,215,0 +170776006669,214,0 +170776006717,213,0 +170776006766,213,0 +170776006814,214,0 +170776006862,214,0 +170776006910,214,0 +170776006958,214,0 +170776007007,214,0 +170776007055,214,0 +170776007105,214,0 +170776007153,215,0 +170776007201,214,0 +170776007248,214,0 +170776007298,215,0 +170776007347,215,0 +170776007397,215,0 +170776007446,214,0 +170776007494,214,0 +170776007542,215,0 +170776007590,214,0 +170776007638,213,0 +170776007686,213,0 +170776007734,213,0 +170776007782,213,0 +170776007831,214,0 +170776007881,214,0 +170776007930,214,0 +170776007978,214,0 +170776008028,214,0 +170776008076,214,0 +170776008125,214,0 +170776008175,215,0 +170776008224,214,0 +170776008272,215,0 +170776008320,215,0 +170776008368,215,0 +170776008418,215,0 +170776008467,214,0 +170776008515,213,0 +170776008563,213,0 +170776008612,214,0 +170776008660,214,0 +170776008710,214,0 +170776008759,214,0 +170776008807,214,0 +170776008855,214,0 +170776008905,214,0 +170776008954,215,0 +170776009004,214,0 +170776009052,215,0 +170776009099,215,0 +170776009147,215,0 +170776009197,215,0 +170776009245,215,0 +170776009293,214,0 +170776009341,214,0 +170776009390,213,0 +170776009438,213,0 +170776009488,214,0 +170776009537,213,0 +170776009585,214,0 +170776009633,214,0 +170776009683,214,0 +170776009730,214,0 +170776009778,214,0 +170776009828,214,0 +170776009876,215,0 +170776009924,215,0 +170776009972,215,0 +170776010020,215,0 +170776010068,215,0 +170776010115,215,0 +170776010165,215,0 +170776010214,215,0 +170776010262,213,0 +170776010312,213,0 +170776010360,213,0 +170776010409,214,0 +170776010457,214,0 +170776010507,214,0 +170776010555,214,0 +170776010603,214,0 +170776010652,214,0 +170776010702,214,0 +170776010751,214,0 +170776010799,215,0 +170776010847,215,0 +170776010895,215,0 +170776010943,215,0 +170776010993,215,0 +170776011040,215,0 +170776011090,215,0 +170776011140,214,0 +170776011189,214,0 +170776011237,213,0 +170776011287,213,0 +170776011336,214,0 +170776011384,214,0 +170776011432,214,0 +170776011482,214,0 +170776011530,214,0 +170776011579,214,0 +170776011627,214,0 +170776011675,214,0 +170776011725,214,0 +170776011773,215,0 +170776011822,215,0 +170776011870,215,0 +170776011919,215,0 +170776011968,215,0 +170776012017,214,0 +170776012065,213,0 +170776012113,214,0 +170776012161,213,0 +170776012210,214,0 +170776012260,214,0 +170776012308,214,0 +170776012357,214,0 +170776012405,214,0 +170776012453,214,0 +170776012501,214,0 +170776012551,214,0 +170776012599,214,0 +170776012647,215,0 +170776012696,215,0 +170776012746,215,0 +170776012794,215,0 +170776012842,215,0 +170776012890,214,0 +170776012938,213,0 +170776012986,213,0 +170776013033,213,0 +170776013081,214,0 +170776013129,214,0 +170776013177,214,0 +170776013225,214,0 +170776013275,214,0 +170776013324,214,0 +170776013374,214,0 +170776013423,214,0 +170776013471,215,0 +170776013520,214,0 +170776013568,215,0 +170776013617,215,0 +170776013667,215,0 +170776013716,215,0 +170776013764,215,0 +170776013814,214,0 +170776013863,213,0 +170776013913,213,0 +170776013963,214,0 +170776014011,214,0 +170776014058,214,0 +170776014108,214,0 +170776014156,214,0 +170776014206,214,0 +170776014254,214,0 +170776014302,214,0 +170776014349,214,0 +170776014397,214,0 +170776014445,215,0 +170776014493,215,0 +170776014543,215,0 +170776014591,215,0 +170776014639,215,0 +170776014687,214,0 +170776014736,213,0 +170776014784,213,0 +170776014832,214,0 +170776014880,214,0 +170776014928,214,0 +170776014975,214,0 +170776015023,214,0 +170776015071,214,0 +170776015119,214,0 +170776015168,214,0 +170776015218,214,0 +170776015267,215,0 +170776015315,215,0 +170776015363,215,0 +170776015411,215,0 +170776015458,215,0 +170776015506,214,0 +170776015554,214,0 +170776015602,214,0 +170776015650,214,0 +170776015698,214,0 +170776015747,214,0 +170776015795,214,0 +170776015843,214,0 +170776015891,214,0 +170776015939,214,0 +170776015987,215,0 +170776016035,214,0 +170776016083,215,0 +170776016132,215,0 +170776016180,215,0 +170776016228,215,0 +170776016276,215,0 +170776016324,215,0 +170776016374,215,0 +170776016421,215,0 +170776016471,214,0 +170776016520,214,0 +170776016568,214,0 +170776016616,214,0 +170776016664,214,0 +170776016712,214,0 +170776016760,215,0 +170776016810,215,0 +170776016858,214,0 +170776016907,215,0 +170776016955,215,0 +170776017003,215,0 +170776017053,215,0 +170776017101,215,0 +170776017149,215,0 +170776017198,215,0 +170776017246,215,0 +170776017294,215,0 +170776017342,215,0 +170776017390,214,0 +170776017438,214,0 +170776017485,214,0 +170776017533,214,0 +170776017581,214,0 +170776017629,214,0 +170776017677,214,0 +170776017725,214,0 +170776017773,215,0 +170776017821,215,0 +170776017869,215,0 +170776017916,215,0 +170776017964,215,0 +170776018012,215,0 +170776018060,215,0 +170776018108,215,0 +170776018156,215,0 +170776018204,215,0 +170776018252,214,0 +170776018301,213,0 +170776018350,213,0 +170776018398,214,0 +170776018446,214,0 +170776018494,214,0 +170776018542,214,0 +170776018590,214,0 +170776018637,214,0 +170776018685,214,0 +170776018733,215,0 +170776018781,214,0 +170776018831,215,0 +170776018879,215,0 +170776018928,215,0 +170776018976,215,0 +170776019026,215,0 +170776019075,215,0 +170776019125,215,0 +170776019173,214,0 +170776019221,214,0 +170776019268,214,0 +170776019318,214,0 +170776019366,214,0 +170776019415,214,0 +170776019465,214,0 +170776019513,215,0 +170776019561,214,0 +170776019609,214,0 +170776019658,215,0 +170776019708,215,0 +170776019757,215,0 +170776019805,215,0 +170776019853,215,0 +170776019901,215,0 +170776019951,215,0 +170776020000,214,0 +170776020050,214,0 +170776020100,214,0 +170776020149,214,0 +170776020197,214,0 +170776020246,214,0 +170776020294,214,0 +170776020342,214,0 +170776020390,214,0 +170776020440,214,0 +170776020488,215,0 +170776020536,215,0 +170776020585,214,0 +170776020635,215,0 +170776020684,215,0 +170776020732,215,0 +170776020782,215,0 +170776020830,215,0 +170776020878,215,0 +170776020926,214,0 +170776020975,214,0 +170776021023,214,0 +170776021071,214,0 +170776021121,214,0 +170776021170,214,0 +170776021220,214,0 +170776021268,214,0 +170776021315,214,0 +170776021363,214,0 +170776021411,214,0 +170776021459,215,0 +170776021507,215,0 +170776021555,215,0 +170776021604,215,0 +170776021652,215,0 +170776021700,215,0 +170776021748,215,0 +170776021795,214,0 +170776021843,214,0 +170776021893,214,0 +170776021941,214,0 +170776021990,214,0 +170776022038,214,0 +170776022086,214,0 +170776022134,214,0 +170776022184,215,0 +170776022233,214,0 +170776022282,215,0 +170776022330,215,0 +170776022378,215,0 +170776022426,215,0 +170776022474,215,0 +170776022522,215,0 +170776022570,215,0 +170776022618,215,0 +170776022668,215,0 +170776022717,214,0 +170776022767,214,0 +170776022815,214,0 +170776022864,214,0 +170776022912,214,0 +170776022960,214,0 +170776023009,214,0 +170776023059,215,0 +170776023108,215,0 +170776023158,215,0 +170776023206,215,0 +170776023255,215,0 +170776023305,215,0 +170776023354,215,0 +170776023402,215,0 +170776023450,215,0 +170776023498,215,0 +170776023546,215,0 +170776023594,214,0 +170776023643,214,0 +170776023691,214,0 +170776023741,214,0 +170776023789,214,0 +170776023837,214,0 +170776023886,214,0 +170776023936,214,0 +170776023984,214,0 +170776024032,214,0 +170776024080,214,0 +170776024129,215,0 +170776024177,215,0 +170776024225,214,0 +170776024273,215,0 +170776024323,215,0 +170776024372,215,0 +170776024422,215,0 +170776024470,215,0 +170776024518,213,0 +170776024565,213,0 +170776024613,213,0 +170776024663,213,0 +170776024712,214,0 +170776024760,214,0 +170776024808,214,0 +170776024856,214,0 +170776024906,214,0 +170776024954,214,0 +170776025003,214,0 +170776025051,214,0 +170776025100,214,0 +170776025148,214,0 +170776025196,214,0 +170776025244,215,0 +170776025292,214,0 +170776025342,215,0 +170776025389,214,0 +170776025437,213,0 +170776025487,213,0 +170776025536,214,0 +170776025586,214,0 +170776025634,214,0 +170776025682,213,0 +170776025730,214,0 +170776025779,214,0 +170776025827,214,0 +170776025875,214,0 +170776025925,214,0 +170776025973,214,0 +170776026021,214,0 +170776026069,214,0 +170776026118,215,0 +170776026166,214,0 +170776026214,215,0 +170776026262,215,0 +170776026310,214,0 +170776026359,214,0 +170776026409,214,0 +170776026457,214,0 +170776026504,214,0 +170776026552,214,0 +170776026602,214,0 +170776026650,214,0 +170776026698,214,0 +170776026746,214,0 +170776026794,214,0 +170776026841,215,0 +170776026889,214,0 +170776026937,215,0 +170776026985,215,0 +170776027035,215,0 +170776027084,215,0 +170776027132,215,0 +170776027182,214,0 +170776027231,213,0 +170776027279,213,0 +170776027327,214,0 +170776027377,214,0 +170776027426,214,0 +170776027474,214,0 +170776027522,214,0 +170776027570,214,0 +170776027618,214,0 +170776027668,215,0 +170776027717,214,0 +170776027766,215,0 +170776027816,215,0 +170776027866,215,0 +170776027913,215,0 +170776027963,215,0 +170776028011,214,0 +170776028059,214,0 +170776028107,214,0 +170776028155,214,0 +170776028204,214,0 +170776028252,214,0 +170776028302,214,0 +170776028350,214,0 +170776028399,215,0 +170776028447,215,0 +170776028495,215,0 +170776028544,215,0 +170776028592,215,0 +170776028640,215,0 +170776028688,215,0 +170776028738,215,0 +170776028786,215,0 +170776028835,215,0 +170776028883,215,0 +170776028933,215,0 +170776028980,214,0 +170776029028,214,0 +170776029076,214,0 +170776029124,214,0 +170776029174,214,0 +170776029222,214,0 +170776029270,214,0 +170776029319,214,0 +170776029367,214,0 +170776029417,214,0 +170776029466,214,0 +170776029516,214,0 +170776029565,215,0 +170776029615,214,0 +170776029663,215,0 +170776029711,215,0 +170776029759,215,0 +170776029807,215,0 +170776029856,214,0 +170776029904,214,0 +170776029954,214,0 +170776030003,214,0 +170776030051,214,0 +170776030101,214,0 +170776030149,214,0 +170776030198,214,0 +170776030246,214,0 +170776030294,214,0 +170776030344,215,0 +170776030393,215,0 +170776030441,215,0 +170776030489,215,0 +170776030538,215,0 +170776030586,215,0 +170776030636,215,0 +170776030684,215,0 +170776030733,215,0 +170776030781,214,0 +170776030829,214,0 +170776030879,214,0 +170776030927,214,0 +170776030975,214,0 +170776031023,215,0 +170776031071,215,0 +170776031120,215,0 +170776031168,215,0 +170776031216,215,0 +170776031266,215,0 +170776031314,215,0 +170776031363,215,0 +170776031413,215,0 +170776031462,215,0 +170776031512,215,0 +170776031561,215,0 +170776031609,215,0 +170776031659,214,0 +170776031708,214,0 +170776031758,214,0 +170776031808,214,0 +170776031856,214,0 +170776031905,214,0 +170776031955,214,0 +170776032004,215,0 +170776032054,215,0 +170776032102,215,0 +170776032150,215,0 +170776032199,215,0 +170776032249,215,0 +170776032298,215,0 +170776032346,215,0 +170776032394,215,0 +170776032442,215,0 +170776032490,215,0 +170776032540,214,0 +170776032588,214,0 +170776032635,214,0 +170776032685,214,0 +170776032733,214,0 +170776032782,214,0 +170776032830,214,0 +170776032880,214,0 +170776032928,214,0 +170776032976,214,0 +170776033025,215,0 +170776033073,215,0 +170776033121,215,0 +170776033171,215,0 +170776033220,215,0 +170776033268,215,0 +170776033316,215,0 +170776033366,215,0 +170776033414,214,0 +170776033463,214,0 +170776033511,214,0 +170776033559,214,0 +170776033607,214,0 +170776033657,214,0 +170776033705,214,0 +170776033753,214,0 +170776033801,215,0 +170776033849,214,0 +170776033896,215,0 +170776033944,215,0 +170776033992,215,0 +170776034040,215,0 +170776034089,215,0 +170776034137,215,0 +170776034185,215,0 +170776034233,215,0 +170776034281,215,0 +170776034329,214,0 +170776034377,213,0 +170776034425,214,0 +170776034473,214,0 +170776034520,214,0 +170776034568,214,0 +170776034616,214,0 +170776034664,214,0 +170776034712,214,0 +170776034760,214,0 +170776034807,214,0 +170776034855,215,0 +170776034903,215,0 +170776034951,215,0 +170776034999,215,0 +170776035047,215,0 +170776035095,215,0 +170776035143,215,0 +170776035191,215,0 +170776035239,213,0 +170776035287,214,0 +170776035336,214,0 +170776035384,214,0 +170776035432,214,0 +170776035482,214,0 +170776035531,214,0 +170776035581,214,0 +170776035629,214,0 +170776035678,214,0 +170776035726,214,0 +170776035774,215,0 +170776035823,215,0 +170776035873,215,0 +170776035921,215,0 +170776035969,215,0 +170776036017,215,0 +170776036066,215,0 +170776036114,214,0 +170776036162,213,0 +170776036210,213,0 +170776036258,213,0 +170776036306,214,0 +170776036354,214,0 +170776036402,214,0 +170776036451,214,0 +170776036501,214,0 +170776036549,214,0 +170776036597,214,0 +170776036646,214,0 +170776036694,214,0 +170776036744,215,0 +170776036792,215,0 +170776036841,215,0 +170776036889,214,0 +170776036937,215,0 +170776036985,214,0 +170776037033,213,0 +170776037082,213,0 +170776037132,213,0 +170776037180,214,0 +170776037229,214,0 +170776037277,214,0 +170776037327,214,0 +170776037376,214,0 +170776037424,214,0 +170776037474,214,0 +170776037522,214,0 +170776037570,215,0 +170776037618,215,0 +170776037666,215,0 +170776037715,215,0 +170776037763,215,0 +170776037811,215,0 +170776037859,214,0 +170776037907,213,0 +170776037955,214,0 +170776038002,213,0 +170776038050,214,0 +170776038100,214,0 +170776038148,214,0 +170776038196,214,0 +170776038245,214,0 +170776038295,214,0 +170776038343,214,0 +170776038391,215,0 +170776038439,215,0 +170776038488,215,0 +170776038538,214,0 +170776038586,215,0 +170776038635,215,0 +170776038683,215,0 +170776038733,215,0 +170776038781,214,0 +170776038829,213,0 +170776038878,213,0 +170776038928,214,0 +170776038976,214,0 +170776039025,214,0 +170776039075,214,0 +170776039124,214,0 +170776039172,214,0 +170776039220,214,0 +170776039268,214,0 +170776039318,214,0 +170776039365,214,0 +170776039413,214,0 +170776039461,214,0 +170776039511,215,0 +170776039559,215,0 +170776039607,215,0 +170776039654,214,0 +170776039704,213,0 +170776039752,213,0 +170776039800,214,0 +170776039849,214,0 +170776039899,214,0 +170776039947,214,0 +170776039995,214,0 +170776040043,214,0 +170776040092,214,0 +170776040142,214,0 +170776040190,214,0 +170776040238,214,0 +170776040286,215,0 +170776040334,215,0 +170776040382,215,0 +170776040429,215,0 +170776040479,215,0 +170776040529,215,0 +170776040576,213,0 +170776040624,213,0 +170776040674,214,0 +170776040722,214,0 +170776040770,214,0 +170776040818,214,0 +170776040865,214,0 +170776040913,214,0 +170776040961,214,0 +170776041009,214,0 +170776041057,214,0 +170776041105,215,0 +170776041154,215,0 +170776041202,215,0 +170776041252,215,0 +170776041300,215,0 +170776041349,215,0 +170776041397,215,0 +170776041445,214,0 +170776041493,214,0 +170776041541,214,0 +170776041590,214,0 +170776041638,214,0 +170776041688,214,0 +170776041737,214,0 +170776041787,215,0 +170776041835,215,0 +170776041884,215,0 +170776041932,215,0 +170776041980,215,0 +170776042030,215,0 +170776042077,215,0 +170776042125,215,0 +170776042173,215,0 +170776042221,214,0 +170776042269,215,0 +170776042317,215,0 +170776042366,214,0 +170776042416,214,0 +170776042464,214,0 +170776042513,214,0 +170776042563,214,0 +170776042611,214,0 +170776042659,214,0 +170776042707,214,0 +170776042755,214,0 +170776042804,215,0 +170776042854,215,0 +170776042902,215,0 +170776042951,215,0 +170776042999,215,0 +170776043049,215,0 +170776043097,215,0 +170776043145,215,0 +170776043194,215,0 +170776043244,214,0 +170776043291,214,0 +170776043341,214,0 +170776043389,214,0 +170776043437,214,0 +170776043485,214,0 +170776043534,214,0 +170776043582,214,0 +170776043632,214,0 +170776043681,215,0 +170776043731,215,0 +170776043779,215,0 +170776043827,215,0 +170776043876,215,0 +170776043925,215,0 +170776043973,215,0 +170776044023,215,0 +170776044071,215,0 +170776044119,214,0 +170776044167,214,0 +170776044215,214,0 +170776044263,214,0 +170776044311,214,0 +170776044360,215,0 +170776044410,215,0 +170776044458,215,0 +170776044505,215,0 +170776044553,215,0 +170776044603,215,0 +170776044651,215,0 +170776044698,215,0 +170776044746,215,0 +170776044794,215,0 +170776044842,215,0 +170776044890,215,0 +170776044938,215,0 +170776044985,215,0 +170776045033,214,0 +170776045081,214,0 +170776045129,214,0 +170776045177,214,0 +170776045225,214,0 +170776045273,215,0 +170776045320,215,0 +170776045368,215,0 +170776045416,215,0 +170776045464,215,0 +170776045512,215,0 +170776045561,215,0 +170776045609,215,0 +170776045659,215,0 +170776045707,215,0 +170776045755,215,0 +170776045803,215,0 +170776045851,215,0 +170776045899,214,0 +170776045948,214,0 +170776045998,214,0 +170776046046,214,0 +170776046093,214,0 +170776046143,214,0 +170776046191,215,0 +170776046239,214,0 +170776046287,214,0 +170776046334,214,0 +170776046382,215,0 +170776046430,215,0 +170776046478,215,0 +170776046528,215,0 +170776046577,215,0 +170776046625,215,0 +170776046673,215,0 +170776046721,215,0 +170776046769,215,0 +170776046817,214,0 +170776046866,213,0 +170776046916,214,0 +170776046963,214,0 +170776047011,214,0 +170776047060,214,0 +170776047109,214,0 +170776047157,214,0 +170776047207,215,0 +170776047255,215,0 +170776047302,215,0 +170776047350,215,0 +170776047398,215,0 +170776047448,215,0 +170776047497,215,0 +170776047547,215,0 +170776047595,215,0 +170776047643,215,0 +170776047692,214,0 +170776047742,214,0 +170776047791,214,0 +170776047839,214,0 +170776047889,214,0 +170776047937,214,0 +170776047984,214,0 +170776048034,214,0 +170776048082,214,0 +170776048131,214,0 +170776048179,215,0 +170776048229,214,0 +170776048277,215,0 +170776048324,215,0 +170776048372,215,0 +170776048420,215,0 +170776048470,215,0 +170776048518,215,0 +170776048566,215,0 +170776048613,214,0 +170776048661,213,0 +170776048709,214,0 +170776048757,214,0 +170776048805,214,0 +170776048855,214,0 +170776048902,214,0 +170776048950,214,0 +170776048998,214,0 +170776049046,214,0 +170776049094,214,0 +170776049142,215,0 +170776049190,215,0 +170776049238,215,0 +170776049285,215,0 +170776049335,215,0 +170776049383,215,0 +170776049431,214,0 +170776049479,214,0 +170776049527,214,0 +170776049576,214,0 +170776049626,214,0 +170776049674,214,0 +170776049722,214,0 +170776049769,214,0 +170776049817,214,0 +170776049865,214,0 +170776049913,215,0 +170776049961,215,0 +170776050009,215,0 +170776050059,215,0 +170776050108,215,0 +170776050156,215,0 +170776050206,215,0 +170776050255,215,0 +170776050305,215,0 +170776050352,214,0 +170776050400,214,0 +170776050450,214,0 +170776050498,214,0 +170776050546,214,0 +170776050595,214,0 +170776050645,214,0 +170776050693,214,0 +170776050742,214,0 +170776050792,215,0 +170776050839,215,0 +170776050887,215,0 +170776050935,215,0 +170776050983,215,0 +170776051031,215,0 +170776051079,215,0 +170776051127,215,0 +170776051175,215,0 +170776051224,215,0 +170776051272,214,0 +170776051320,214,0 +170776051368,214,0 +170776051416,214,0 +170776051464,214,0 +170776051513,215,0 +170776051561,214,0 +170776051609,214,0 +170776051659,214,0 +170776051707,214,0 +170776051756,215,0 +170776051804,215,0 +170776051854,215,0 +170776051903,215,0 +170776051951,215,0 +170776051999,215,0 +170776052047,215,0 +170776052095,215,0 +170776052143,214,0 +170776052192,213,0 +170776052240,213,0 +170776052290,213,0 +170776052338,214,0 +170776052386,214,0 +170776052434,214,0 +170776052481,214,0 +170776052529,214,0 +170776052577,214,0 +170776052625,215,0 +170776052673,215,0 +170776052721,215,0 +170776052771,215,0 +170776052818,215,0 +170776052868,215,0 +170776052916,215,0 +170776052964,215,0 +170776053012,214,0 +170776053061,213,0 +170776053111,213,0 +170776053160,213,0 +170776053208,213,0 +170776053256,214,0 +170776053304,214,0 +170776053352,214,0 +170776053400,214,0 +170776053447,214,0 +170776053495,214,0 +170776053545,214,0 +170776053593,214,0 +170776053641,214,0 +170776053690,214,0 +170776053738,215,0 +170776053786,215,0 +170776053834,215,0 +170776053883,215,0 +170776053933,214,0 +170776053981,213,0 +170776054030,213,0 +170776054078,213,0 +170776054128,213,0 +170776054178,213,0 +170776054227,214,0 +170776054276,213,0 +170776054324,214,0 +170776054372,214,0 +170776054422,214,0 +170776054470,214,0 +170776054519,214,0 +170776054569,214,0 +170776054618,215,0 +170776054666,215,0 +170776054714,215,0 +170776054764,214,0 +170776054812,214,0 +170776054861,213,0 +170776054911,213,0 +170776054960,213,0 +170776055010,213,0 +170776055059,213,0 +170776055107,213,0 +170776055157,213,0 +170776055206,213,0 +170776055256,214,0 +170776055305,214,0 +170776055353,214,0 +170776055401,215,0 +170776055449,214,0 +170776055499,214,0 +170776055547,215,0 +170776055595,215,0 +170776055643,214,0 +170776055690,215,0 +170776055738,213,0 +170776055786,213,0 +170776055834,213,0 +170776055882,213,0 +170776055930,213,0 +170776055978,213,0 +170776056026,214,0 +170776056074,214,0 +170776056122,214,0 +170776056170,214,0 +170776056217,214,0 +170776056265,214,0 +170776056313,214,0 +170776056363,214,0 +170776056411,214,0 +170776056459,215,0 +170776056507,215,0 +170776056555,215,0 +170776056602,214,0 +170776056650,213,0 +170776056700,213,0 +170776056748,214,0 +170776056797,214,0 +170776056847,214,0 +170776056895,214,0 +170776056943,214,0 +170776056991,214,0 +170776057040,214,0 +170776057088,214,0 +170776057136,215,0 +170776057184,215,0 +170776057232,214,0 +170776057280,215,0 +170776057328,215,0 +170776057377,215,0 +170776057427,214,0 +170776057475,214,0 +170776057522,213,0 +170776057570,213,0 +170776057620,213,0 +170776057668,213,0 +170776057717,213,0 +170776057767,214,0 +170776057815,214,0 +170776057863,214,0 +170776057912,214,0 +170776057962,214,0 +170776058010,214,0 +170776058058,214,0 +170776058105,214,0 +170776058153,215,0 +170776058201,214,0 +170776058251,214,0 +170776058300,215,0 +170776058348,215,0 +170776058396,214,0 +170776058444,213,0 +170776058494,213,0 +170776058541,213,0 +170776058589,213,0 +170776058637,214,0 +170776058687,214,0 +170776058735,214,0 +170776058783,214,0 +170776058832,214,0 +170776058880,214,0 +170776058930,214,0 +170776058979,215,0 +170776059027,214,0 +170776059077,215,0 +170776059125,214,0 +170776059173,215,0 +170776059221,215,0 +170776059269,214,0 +170776059317,213,0 +170776059365,213,0 +170776059413,214,0 +170776059460,214,0 +170776059508,214,0 +170776059556,214,0 +170776059606,214,0 +170776059654,214,0 +170776059703,214,0 +170776059751,214,0 +170776059799,215,0 +170776059847,215,0 +170776059895,215,0 +170776059943,215,0 +170776059993,215,0 +170776060042,215,0 +170776060092,215,0 +170776060140,215,0 +170776060189,214,0 +170776060239,213,0 +170776060287,214,0 +170776060336,214,0 +170776060384,214,0 +170776060434,214,0 +170776060481,214,0 +170776060531,214,0 +170776060581,214,0 +170776060629,215,0 +170776060678,215,0 +170776060726,214,0 +170776060774,215,0 +170776060822,215,0 +170776060870,215,0 +170776060918,215,0 +170776060967,215,0 +170776061017,215,0 +170776061065,214,0 +170776061113,214,0 +170776061161,214,0 +170776061210,214,0 +170776061258,214,0 +170776061306,214,0 +170776061354,214,0 +170776061402,214,0 +170776061450,214,0 +170776061498,215,0 +170776061546,215,0 +170776061594,215,0 +170776061643,215,0 +170776061693,216,0 +170776061741,215,0 +170776061789,215,0 +170776061837,215,0 +170776061885,215,0 +170776061932,215,0 +170776061982,214,0 +170776062030,214,0 +170776062078,214,0 +170776062127,214,0 +170776062175,215,0 +170776062225,215,0 +170776062273,215,0 +170776062321,215,0 +170776062369,214,0 +170776062416,215,0 +170776062464,215,0 +170776062512,215,0 +170776062560,215,0 +170776062608,215,0 +170776062656,215,0 +170776062704,215,0 +170776062751,215,0 +170776062799,215,0 +170776062849,214,0 +170776062898,214,0 +170776062946,214,0 +170776062994,214,0 +170776063044,214,0 +170776063093,214,0 +170776063143,214,0 +170776063191,214,0 +170776063240,215,0 +170776063290,215,0 +170776063337,215,0 +170776063385,215,0 +170776063433,215,0 +170776063481,215,0 +170776063531,215,0 +170776063579,215,0 +170776063627,215,0 +170776063675,215,0 +170776063724,215,0 +170776063773,214,0 +170776063821,214,0 +170776063869,214,0 +170776063918,214,0 +170776063966,214,0 +170776064014,214,0 +170776064064,214,0 +170776064111,215,0 +170776064159,215,0 +170776064207,215,0 +170776064255,215,0 +170776064303,215,0 +170776064351,215,0 +170776064398,215,0 +170776064446,215,0 +170776064494,215,0 +170776064543,215,0 +170776064591,215,0 +170776064639,214,0 +170776064687,214,0 +170776064735,214,0 +170776064783,214,0 +170776064831,214,0 +170776064879,214,0 +170776064926,214,0 +170776064974,214,0 +170776065022,214,0 +170776065070,214,0 +170776065118,214,0 +170776065166,215,0 +170776065214,215,0 +170776065262,215,0 +170776065310,215,0 +170776065358,215,0 +170776065405,215,0 +170776065453,215,0 +170776065501,215,0 +170776065549,214,0 +170776065597,214,0 +170776065645,214,0 +170776065693,214,0 +170776065741,214,0 +170776065788,214,0 +170776065836,214,0 +170776065884,214,0 +170776065932,214,0 +170776065980,214,0 +170776066028,215,0 +170776066075,215,0 +170776066123,215,0 +170776066171,215,0 +170776066219,215,0 +170776066267,215,0 +170776066315,215,0 +170776066363,215,0 +170776066410,214,0 +170776066458,214,0 +170776066506,214,0 +170776066554,214,0 +170776066602,214,0 +170776066651,214,0 +170776066699,214,0 +170776066747,214,0 +170776066795,214,0 +170776066843,215,0 +170776066891,215,0 +170776066939,215,0 +170776066987,215,0 +170776067035,215,0 +170776067083,215,0 +170776067130,215,0 +170776067178,215,0 +170776067228,215,0 +170776067277,215,0 +170776067325,214,0 +170776067373,214,0 +170776067421,214,0 +170776067469,214,0 +170776067518,214,0 +170776067566,214,0 +170776067614,214,0 +170776067663,215,0 +170776067711,214,0 +170776067759,215,0 +170776067807,215,0 +170776067854,215,0 +170776067902,215,0 +170776067950,215,0 +170776067998,215,0 +170776068048,215,0 +170776068095,215,0 +170776068143,215,0 +170776068191,215,0 +170776068239,214,0 +170776068287,214,0 +170776068334,214,0 +170776068382,214,0 +170776068430,214,0 +170776068478,214,0 +170776068527,214,0 +170776068575,214,0 +170776068623,215,0 +170776068673,215,0 +170776068722,215,0 +170776068770,215,0 +170776068818,215,0 +170776068867,215,0 +170776068915,215,0 +170776068965,215,0 +170776069014,215,0 +170776069062,215,0 +170776069112,214,0 +170776069159,214,0 +170776069207,214,0 +170776069255,214,0 +170776069303,214,0 +170776069351,214,0 +170776069399,214,0 +170776069448,214,0 +170776069496,214,0 +170776069544,215,0 +170776069592,215,0 +170776069641,214,0 +170776069689,215,0 +170776069737,215,0 +170776069785,215,0 +170776069835,215,0 +170776069883,215,0 +170776069931,215,0 +170776069978,214,0 +170776070028,213,0 +170776070076,213,0 +170776070124,214,0 +170776070172,214,0 +170776070220,214,0 +170776070269,214,0 +170776070317,214,0 +170776070365,214,0 +170776070413,214,0 +170776070461,214,0 +170776070509,215,0 +170776070557,214,0 +170776070604,215,0 +170776070652,215,0 +170776070702,215,0 +170776070751,215,0 +170776070799,215,0 +170776070847,215,0 +170776070895,214,0 +170776070944,214,0 +170776070992,214,0 +170776071040,214,0 +170776071089,214,0 +170776071137,214,0 +170776071185,214,0 +170776071235,214,0 +170776071282,214,0 +170776071330,214,0 +170776071378,216,0 +170776071426,215,0 +170776071474,215,0 +170776071522,215,0 +170776071570,215,0 +170776071617,215,0 +170776071665,215,0 +170776071713,215,0 +170776071762,214,0 +170776071810,214,0 +170776071858,214,0 +170776071906,214,0 +170776071954,214,0 +170776072003,214,0 +170776072051,214,0 +170776072099,214,0 +170776072147,214,0 +170776072195,214,0 +170776072242,215,0 +170776072290,215,0 +170776072338,215,0 +170776072386,215,0 +170776072434,215,0 +170776072482,215,0 +170776072529,215,0 +170776072577,215,0 +170776072625,215,0 +170776072673,214,0 +170776072721,213,0 +170776072769,214,0 +170776072816,214,0 +170776072864,214,0 +170776072912,214,0 +170776072960,214,0 +170776073008,214,0 +170776073056,214,0 +170776073104,214,0 +170776073152,215,0 +170776073199,215,0 +170776073247,215,0 +170776073295,215,0 +170776073343,215,0 +170776073391,215,0 +170776073439,215,0 +170776073487,215,0 +170776073536,215,0 +170776073586,214,0 +170776073634,214,0 +170776073683,214,0 +170776073733,214,0 +170776073781,214,0 +170776073830,214,0 +170776073878,214,0 +170776073928,214,0 +170776073977,214,0 +170776074025,215,0 +170776074073,215,0 +170776074123,215,0 +170776074172,215,0 +170776074222,215,0 +170776074272,215,0 +170776074319,215,0 +170776074367,215,0 +170776074417,215,0 +170776074465,214,0 +170776074514,214,0 +170776074562,214,0 +170776074610,214,0 +170776074658,214,0 +170776074706,214,0 +170776074754,214,0 +170776074802,214,0 +170776074851,214,0 +170776074901,214,0 +170776074949,214,0 +170776074997,214,0 +170776075045,214,0 +170776075093,215,0 +170776075141,215,0 +170776075190,215,0 +170776075240,215,0 +170776075288,215,0 +170776075337,214,0 +170776075387,214,0 +170776075434,214,0 +170776075484,214,0 +170776075532,214,0 +170776075582,214,0 +170776075629,214,0 +170776075679,215,0 +170776075727,214,0 +170776075775,215,0 +170776075824,215,0 +170776075872,215,0 +170776075922,215,0 +170776075970,215,0 +170776076018,215,0 +170776076066,215,0 +170776076115,215,0 +170776076165,215,0 +170776076213,215,0 +170776076262,214,0 +170776076312,214,0 +170776076360,214,0 +170776076408,214,0 +170776076456,214,0 +170776076504,214,0 +170776076551,214,0 +170776076601,215,0 +170776076649,214,0 +170776076697,215,0 +170776076745,215,0 +170776076794,215,0 +170776076842,215,0 +170776076890,215,0 +170776076938,215,0 +170776076988,215,0 +170776077036,215,0 +170776077084,214,0 +170776077133,214,0 +170776077181,214,0 +170776077229,214,0 +170776077277,214,0 +170776077325,214,0 +170776077374,214,0 +170776077422,214,0 +170776077470,215,0 +170776077518,214,0 +170776077566,215,0 +170776077613,215,0 +170776077661,215,0 +170776077709,215,0 +170776077759,215,0 +170776077807,215,0 +170776077855,215,0 +170776077903,215,0 +170776077951,215,0 +170776077998,214,0 +170776078048,214,0 +170776078096,214,0 +170776078144,214,0 +170776078193,214,0 +170776078243,214,0 +170776078291,214,0 +170776078340,214,0 +170776078390,214,0 +170776078437,214,0 +170776078487,214,0 +170776078535,215,0 +170776078583,215,0 +170776078631,215,0 +170776078678,215,0 +170776078726,215,0 +170776078776,215,0 +170776078824,214,0 +170776078872,215,0 +170776078921,214,0 +170776078969,213,0 +170776079017,213,0 +170776079065,213,0 +170776079113,214,0 +170776079162,214,0 +170776079210,214,0 +170776079258,214,0 +170776079306,214,0 +170776079354,214,0 +170776079402,214,0 +170776079452,215,0 +170776079500,214,0 +170776079548,215,0 +170776079596,215,0 +170776079645,215,0 +170776079693,215,0 +170776079742,215,0 +170776079790,214,0 +170776079838,213,0 +170776079886,214,0 +170776079936,214,0 +170776079984,214,0 diff --git a/laser_value/0213-04.csv b/laser_value/0213-04.csv new file mode 100644 index 0000000..f0e6a85 --- /dev/null +++ b/laser_value/0213-04.csv @@ -0,0 +1,7436 @@ +timestamp,laser_value,event +170776080034,214,0 +170776080082,214,0 +170776080130,214,0 +170776080178,214,0 +170776080226,214,0 +170776080274,214,0 +170776080321,214,0 +170776080369,215,0 +170776080417,215,0 +170776080467,215,0 +170776080516,215,0 +170776080564,215,0 +170776080614,215,0 +170776080663,215,0 +170776080713,214,0 +170776080761,213,0 +170776080810,213,0 +170776080858,214,0 +170776080908,214,0 +170776080957,214,0 +170776081005,214,0 +170776081055,214,0 +170776081103,214,0 +170776081151,214,0 +170776081200,214,0 +170776081248,215,0 +170776081297,215,0 +170776081346,215,0 +170776081396,215,0 +170776081444,215,0 +170776081492,215,0 +170776081541,215,0 +170776081591,214,0 +170776081639,213,0 +170776081687,214,0 +170776081736,213,0 +170776081784,214,0 +170776081834,214,0 +170776081882,214,0 +170776081930,214,0 +170776081979,214,0 +170776082027,214,0 +170776082077,214,0 +170776082126,214,0 +170776082174,214,0 +170776082222,214,0 +170776082271,214,0 +170776082321,214,0 +170776082369,214,0 +170776082417,215,0 +170776082466,214,0 +170776082516,213,0 +170776082565,213,0 +170776082615,213,0 +170776082663,213,0 +170776082712,214,0 +170776082760,214,0 +170776082810,214,0 +170776082858,214,0 +170776082907,214,0 +170776082957,214,0 +170776083005,215,0 +170776083053,214,0 +170776083101,214,0 +170776083149,214,0 +170776083197,215,0 +170776083246,214,0 +170776083294,215,0 +170776083342,214,0 +170776083390,214,0 +170776083438,213,0 +170776083486,213,0 +170776083534,213,0 +170776083582,214,0 +170776083630,214,0 +170776083678,214,0 +170776083727,214,0 +170776083775,214,0 +170776083825,214,0 +170776083872,214,0 +170776083922,215,0 +170776083970,215,0 +170776084018,215,0 +170776084067,215,0 +170776084115,215,0 +170776084163,214,0 +170776084211,215,0 +170776084261,213,0 +170776084310,214,0 +170776084358,214,0 +170776084406,214,0 +170776084456,214,0 +170776084504,214,0 +170776084552,214,0 +170776084600,214,0 +170776084648,214,0 +170776084697,214,0 +170776084745,215,0 +170776084794,215,0 +170776084842,215,0 +170776084890,215,0 +170776084938,215,0 +170776084986,215,0 +170776085034,215,0 +170776085082,215,0 +170776085130,214,0 +170776085178,214,0 +170776085227,214,0 +170776085277,214,0 +170776085326,214,0 +170776085374,214,0 +170776085424,214,0 +170776085472,214,0 +170776085521,214,0 +170776085571,215,0 +170776085619,215,0 +170776085668,215,0 +170776085716,215,0 +170776085764,215,0 +170776085812,215,0 +170776085860,215,0 +170776085910,215,0 +170776085958,214,0 +170776086007,215,0 +170776086057,214,0 +170776086105,214,0 +170776086154,214,0 +170776086202,214,0 +170776086250,214,0 +170776086298,214,0 +170776086347,214,0 +170776086395,214,0 +170776086443,214,0 +170776086493,215,0 +170776086541,215,0 +170776086589,214,0 +170776086638,215,0 +170776086686,215,0 +170776086734,215,0 +170776086782,215,0 +170776086830,215,0 +170776086879,215,0 +170776086929,214,0 +170776086976,214,0 +170776087024,214,0 +170776087072,214,0 +170776087122,214,0 +170776087170,214,0 +170776087218,214,0 +170776087267,214,0 +170776087317,214,0 +170776087366,214,0 +170776087414,214,0 +170776087462,215,0 +170776087512,215,0 +170776087561,215,0 +170776087610,215,0 +170776087658,215,0 +170776087706,215,0 +170776087756,215,0 +170776087804,215,0 +170776087852,214,0 +170776087900,214,0 +170776087949,214,0 +170776087997,214,0 +170776088045,214,0 +170776088095,214,0 +170776088143,214,0 +170776088191,214,0 +170776088239,214,0 +170776088287,214,0 +170776088335,215,0 +170776088384,214,0 +170776088432,215,0 +170776088480,215,0 +170776088528,215,0 +170776088576,215,0 +170776088625,215,0 +170776088673,215,0 +170776088721,214,0 +170776088771,214,0 +170776088820,214,0 +170776088868,214,0 +170776088916,214,0 +170776088964,214,0 +170776089014,214,0 +170776089063,214,0 +170776089111,214,0 +170776089161,215,0 +170776089210,214,0 +170776089258,214,0 +170776089307,215,0 +170776089355,215,0 +170776089403,215,0 +170776089451,215,0 +170776089499,215,0 +170776089548,214,0 +170776089596,214,0 +170776089644,214,0 +170776089692,214,0 +170776089742,214,0 +170776089791,214,0 +170776089839,214,0 +170776089889,215,0 +170776089937,215,0 +170776089985,214,0 +170776090034,215,0 +170776090082,215,0 +170776090130,215,0 +170776090179,215,0 +170776090227,215,0 +170776090275,215,0 +170776090325,215,0 +170776090373,215,0 +170776090421,215,0 +170776090469,214,0 +170776090518,214,0 +170776090566,214,0 +170776090614,214,0 +170776090662,214,0 +170776090711,214,0 +170776090759,214,0 +170776090809,215,0 +170776090857,214,0 +170776090906,215,0 +170776090956,215,0 +170776091004,215,0 +170776091052,215,0 +170776091101,215,0 +170776091149,215,0 +170776091197,215,0 +170776091247,215,0 +170776091296,215,0 +170776091346,215,0 +170776091393,214,0 +170776091441,214,0 +170776091489,214,0 +170776091539,214,0 +170776091587,214,0 +170776091635,214,0 +170776091683,214,0 +170776091732,214,0 +170776091780,214,0 +170776091828,214,0 +170776091876,215,0 +170776091925,215,0 +170776091973,215,0 +170776092021,215,0 +170776092071,215,0 +170776092118,215,0 +170776092168,215,0 +170776092216,215,0 +170776092264,215,0 +170776092312,214,0 +170776092360,214,0 +170776092408,214,0 +170776092457,214,0 +170776092505,214,0 +170776092555,214,0 +170776092603,214,0 +170776092650,214,0 +170776092699,214,0 +170776092746,215,0 +170776092794,215,0 +170776092842,215,0 +170776092890,215,0 +170776092938,215,0 +170776092988,215,0 +170776093036,215,0 +170776093084,215,0 +170776093133,215,0 +170776093181,214,0 +170776093231,213,0 +170776093278,214,0 +170776093328,214,0 +170776093376,214,0 +170776093424,214,0 +170776093472,214,0 +170776093521,214,0 +170776093571,214,0 +170776093620,214,0 +170776093668,214,0 +170776093716,215,0 +170776093766,215,0 +170776093816,215,0 +170776093864,215,0 +170776093913,215,0 +170776093961,215,0 +170776094011,215,0 +170776094060,214,0 +170776094108,214,0 +170776094156,214,0 +170776094204,214,0 +170776094252,214,0 +170776094301,214,0 +170776094349,214,0 +170776094397,214,0 +170776094445,214,0 +170776094495,214,0 +170776094543,214,0 +170776094591,214,0 +170776094639,215,0 +170776094688,215,0 +170776094736,215,0 +170776094786,215,0 +170776094834,215,0 +170776094883,215,0 +170776094931,215,0 +170776094979,214,0 +170776095027,214,0 +170776095076,214,0 +170776095124,214,0 +170776095174,214,0 +170776095222,214,0 +170776095270,214,0 +170776095318,214,0 +170776095367,215,0 +170776095417,215,0 +170776095466,215,0 +170776095514,215,0 +170776095562,215,0 +170776095611,215,0 +170776095659,215,0 +170776095709,215,0 +170776095757,215,0 +170776095806,215,0 +170776095854,214,0 +170776095902,214,0 +170776095951,214,0 +170776095999,214,0 +170776096049,214,0 +170776096097,214,0 +170776096145,214,0 +170776096193,215,0 +170776096242,214,0 +170776096292,215,0 +170776096340,215,0 +170776096389,215,0 +170776096439,215,0 +170776096488,215,0 +170776096536,215,0 +170776096584,215,0 +170776096634,215,0 +170776096682,215,0 +170776096731,214,0 +170776096779,213,0 +170776096827,213,0 +170776096875,213,0 +170776096924,214,0 +170776096972,214,0 +170776097020,214,0 +170776097068,214,0 +170776097116,214,0 +170776097166,214,0 +170776097215,214,0 +170776097265,214,0 +170776097314,215,0 +170776097362,215,0 +170776097412,215,0 +170776097460,215,0 +170776097508,215,0 +170776097557,215,0 +170776097605,215,0 +170776097653,213,0 +170776097703,213,0 +170776097751,213,0 +170776097800,214,0 +170776097848,214,0 +170776097896,214,0 +170776097944,214,0 +170776097992,214,0 +170776098041,214,0 +170776098089,214,0 +170776098137,214,0 +170776098185,214,0 +170776098233,215,0 +170776098281,214,0 +170776098329,215,0 +170776098376,215,0 +170776098424,215,0 +170776098472,215,0 +170776098520,214,0 +170776098568,213,0 +170776098616,213,0 +170776098664,213,0 +170776098712,214,0 +170776098759,214,0 +170776098807,214,0 +170776098857,214,0 +170776098905,214,0 +170776098952,214,0 +170776099000,214,0 +170776099048,214,0 +170776099098,214,0 +170776099146,214,0 +170776099195,215,0 +170776099243,215,0 +170776099291,215,0 +170776099339,215,0 +170776099388,215,0 +170776099436,214,0 +170776099484,213,0 +170776099532,214,0 +170776099580,214,0 +170776099628,214,0 +170776099676,214,0 +170776099726,214,0 +170776099774,214,0 +170776099823,214,0 +170776099873,214,0 +170776099922,215,0 +170776099970,215,0 +170776100018,214,0 +170776100068,215,0 +170776100116,215,0 +170776100163,215,0 +170776100211,215,0 +170776100259,215,0 +170776100309,214,0 +170776100357,213,0 +170776100405,214,0 +170776100454,214,0 +170776100502,214,0 +170776100550,214,0 +170776100598,214,0 +170776100646,214,0 +170776100694,214,0 +170776100742,215,0 +170776100789,214,0 +170776100837,214,0 +170776100887,215,0 +170776100935,215,0 +170776100982,215,0 +170776101030,215,0 +170776101080,215,0 +170776101128,215,0 +170776101176,214,0 +170776101223,214,0 +170776101271,214,0 +170776101319,214,0 +170776101369,214,0 +170776101419,214,0 +170776101468,214,0 +170776101516,214,0 +170776101564,214,0 +170776101613,214,0 +170776101661,215,0 +170776101711,214,0 +170776101759,215,0 +170776101808,215,0 +170776101856,215,0 +170776101904,215,0 +170776101954,215,0 +170776102002,215,0 +170776102049,215,0 +170776102097,213,0 +170776102147,213,0 +170776102195,213,0 +170776102243,214,0 +170776102291,214,0 +170776102339,214,0 +170776102387,214,0 +170776102435,214,0 +170776102483,214,0 +170776102531,214,0 +170776102579,214,0 +170776102626,214,0 +170776102674,214,0 +170776102722,215,0 +170776102770,215,0 +170776102818,215,0 +170776102866,215,0 +170776102914,215,0 +170776102962,214,0 +170776103010,213,0 +170776103059,213,0 +170776103107,213,0 +170776103155,214,0 +170776103205,213,0 +170776103254,214,0 +170776103302,214,0 +170776103352,214,0 +170776103400,214,0 +170776103448,214,0 +170776103495,214,0 +170776103543,214,0 +170776103593,214,0 +170776103641,214,0 +170776103689,215,0 +170776103737,214,0 +170776103786,215,0 +170776103834,214,0 +170776103883,213,0 +170776103933,214,0 +170776103981,213,0 +170776104029,214,0 +170776104076,214,0 +170776104124,214,0 +170776104172,214,0 +170776104220,214,0 +170776104269,214,0 +170776104317,214,0 +170776104365,214,0 +170776104413,214,0 +170776104461,215,0 +170776104509,215,0 +170776104557,215,0 +170776104604,215,0 +170776104652,215,0 +170776104702,215,0 +170776104750,214,0 +170776104797,214,0 +170776104845,214,0 +170776104893,214,0 +170776104941,214,0 +170776104989,214,0 +170776105036,214,0 +170776105086,214,0 +170776105135,214,0 +170776105183,214,0 +170776105233,215,0 +170776105282,215,0 +170776105330,214,0 +170776105379,215,0 +170776105427,215,0 +170776105475,215,0 +170776105523,215,0 +170776105571,215,0 +170776105621,214,0 +170776105669,214,0 +170776105717,214,0 +170776105766,214,0 +170776105814,214,0 +170776105861,214,0 +170776105911,214,0 +170776105960,214,0 +170776106008,215,0 +170776106056,215,0 +170776106104,215,0 +170776106152,215,0 +170776106199,215,0 +170776106249,215,0 +170776106297,215,0 +170776106345,215,0 +170776106393,215,0 +170776106442,215,0 +170776106490,215,0 +170776106538,214,0 +170776106586,214,0 +170776106634,214,0 +170776106682,214,0 +170776106729,214,0 +170776106777,215,0 +170776106825,215,0 +170776106873,215,0 +170776106923,215,0 +170776106972,215,0 +170776107022,215,0 +170776107070,215,0 +170776107118,215,0 +170776107166,215,0 +170776107215,216,0 +170776107263,215,0 +170776107311,215,0 +170776107361,215,0 +170776107408,215,0 +170776107456,214,0 +170776107504,214,0 +170776107552,215,0 +170776107602,214,0 +170776107651,214,0 +170776107699,215,0 +170776107749,215,0 +170776107796,215,0 +170776107844,215,0 +170776107892,215,0 +170776107940,215,0 +170776107990,215,0 +170776108038,215,0 +170776108086,215,0 +170776108133,215,0 +170776108181,215,0 +170776108229,215,0 +170776108279,215,0 +170776108327,214,0 +170776108376,214,0 +170776108424,214,0 +170776108472,214,0 +170776108520,214,0 +170776108568,214,0 +170776108618,214,0 +170776108666,215,0 +170776108714,215,0 +170776108763,215,0 +170776108811,215,0 +170776108859,215,0 +170776108907,215,0 +170776108955,215,0 +170776109004,215,0 +170776109054,215,0 +170776109102,215,0 +170776109151,215,0 +170776109201,214,0 +170776109250,214,0 +170776109299,214,0 +170776109347,214,0 +170776109397,214,0 +170776109445,214,0 +170776109493,214,0 +170776109540,214,0 +170776109590,214,0 +170776109638,215,0 +170776109688,215,0 +170776109735,214,0 +170776109783,215,0 +170776109831,215,0 +170776109879,215,0 +170776109929,215,0 +170776109977,215,0 +170776110025,215,0 +170776110072,215,0 +170776110120,214,0 +170776110170,214,0 +170776110218,214,0 +170776110266,214,0 +170776110314,214,0 +170776110362,214,0 +170776110411,214,0 +170776110461,214,0 +170776110509,214,0 +170776110557,215,0 +170776110604,215,0 +170776110654,215,0 +170776110702,215,0 +170776110751,215,0 +170776110801,215,0 +170776110849,215,0 +170776110898,215,0 +170776110946,215,0 +170776110994,214,0 +170776111042,214,0 +170776111092,214,0 +170776111141,214,0 +170776111191,214,0 +170776111239,214,0 +170776111287,215,0 +170776111335,214,0 +170776111383,215,0 +170776111430,215,0 +170776111478,215,0 +170776111526,215,0 +170776111574,215,0 +170776111624,215,0 +170776111672,215,0 +170776111720,215,0 +170776111768,215,0 +170776111817,215,0 +170776111865,215,0 +170776111915,214,0 +170776111963,214,0 +170776112012,214,0 +170776112060,214,0 +170776112108,214,0 +170776112157,214,0 +170776112207,214,0 +170776112256,214,0 +170776112306,215,0 +170776112354,215,0 +170776112403,215,0 +170776112453,215,0 +170776112501,215,0 +170776112550,215,0 +170776112600,216,0 +170776112648,215,0 +170776112697,215,0 +170776112747,215,0 +170776112796,214,0 +170776112844,213,0 +170776112892,213,0 +170776112942,213,0 +170776112989,214,0 +170776113037,214,0 +170776113085,214,0 +170776113133,214,0 +170776113183,214,0 +170776113232,214,0 +170776113282,214,0 +170776113331,215,0 +170776113379,214,0 +170776113427,215,0 +170776113477,215,0 +170776113525,214,0 +170776113575,215,0 +170776113624,215,0 +170776113674,213,0 +170776113722,213,0 +170776113770,213,0 +170776113817,213,0 +170776113867,214,0 +170776113916,214,0 +170776113966,214,0 +170776114016,214,0 +170776114065,214,0 +170776114114,214,0 +170776114164,214,0 +170776114214,214,0 +170776114262,214,0 +170776114309,214,0 +170776114358,215,0 +170776114407,215,0 +170776114455,215,0 +170776114504,215,0 +170776114552,214,0 +170776114600,213,0 +170776114648,213,0 +170776114698,214,0 +170776114747,214,0 +170776114797,214,0 +170776114845,214,0 +170776114893,214,0 +170776114942,214,0 +170776114992,214,0 +170776115040,214,0 +170776115088,214,0 +170776115137,214,0 +170776115185,215,0 +170776115235,215,0 +170776115282,215,0 +170776115330,215,0 +170776115378,215,0 +170776115426,215,0 +170776115476,213,0 +170776115524,214,0 +170776115571,214,0 +170776115619,214,0 +170776115669,214,0 +170776115717,214,0 +170776115766,214,0 +170776115816,214,0 +170776115866,214,0 +170776115915,214,0 +170776115963,214,0 +170776116013,214,0 +170776116061,214,0 +170776116110,215,0 +170776116158,214,0 +170776116206,214,0 +170776116254,214,0 +170776116302,215,0 +170776116350,214,0 +170776116399,214,0 +170776116449,214,0 +170776116497,214,0 +170776116546,214,0 +170776116596,214,0 +170776116645,214,0 +170776116693,214,0 +170776116743,214,0 +170776116793,214,0 +170776116840,214,0 +170776116888,214,0 +170776116936,214,0 +170776116986,215,0 +170776117034,215,0 +170776117082,215,0 +170776117130,215,0 +170776117178,215,0 +170776117226,214,0 +170776117274,213,0 +170776117323,214,0 +170776117371,214,0 +170776117421,214,0 +170776117469,214,0 +170776117518,214,0 +170776117566,214,0 +170776117614,214,0 +170776117662,215,0 +170776117710,215,0 +170776117758,215,0 +170776117806,215,0 +170776117854,215,0 +170776117902,215,0 +170776117951,215,0 +170776117999,215,0 +170776118047,215,0 +170776118097,215,0 +170776118144,214,0 +170776118194,214,0 +170776118242,214,0 +170776118290,214,0 +170776118338,214,0 +170776118387,215,0 +170776118435,215,0 +170776118483,215,0 +170776118531,215,0 +170776118580,215,0 +170776118628,215,0 +170776118676,215,0 +170776118723,215,0 +170776118771,215,0 +170776118819,215,0 +170776118867,215,0 +170776118915,215,0 +170776118962,215,0 +170776119010,214,0 +170776119060,214,0 +170776119107,214,0 +170776119155,214,0 +170776119203,214,0 +170776119251,214,0 +170776119299,214,0 +170776119347,214,0 +170776119395,215,0 +170776119442,215,0 +170776119490,215,0 +170776119538,215,0 +170776119586,215,0 +170776119634,215,0 +170776119682,215,0 +170776119730,215,0 +170776119778,215,0 +170776119826,215,0 +170776119874,215,0 +170776119923,214,0 +170776119971,214,0 +170776120019,214,0 +170776120067,214,0 +170776120115,214,0 +170776120163,214,0 +170776120212,214,0 +170776120262,214,0 +170776120310,214,0 +170776120358,215,0 +170776120407,215,0 +170776120455,215,0 +170776120505,215,0 +170776120552,215,0 +170776120600,215,0 +170776120648,215,0 +170776120696,215,0 +170776120744,215,0 +170776120792,214,0 +170776120841,214,0 +170776120889,214,0 +170776120939,214,0 +170776120986,214,0 +170776121036,214,0 +170776121084,214,0 +170776121133,215,0 +170776121181,215,0 +170776121231,215,0 +170776121279,215,0 +170776121328,215,0 +170776121378,215,0 +170776121426,215,0 +170776121474,215,0 +170776121522,215,0 +170776121571,215,0 +170776121621,215,0 +170776121669,215,0 +170776121718,214,0 +170776121768,214,0 +170776121817,214,0 +170776121867,214,0 +170776121916,214,0 +170776121966,214,0 +170776122014,214,0 +170776122062,214,0 +170776122110,214,0 +170776122158,215,0 +170776122206,215,0 +170776122254,215,0 +170776122301,215,0 +170776122349,215,0 +170776122399,215,0 +170776122447,215,0 +170776122496,215,0 +170776122544,215,0 +170776122592,214,0 +170776122640,213,0 +170776122688,214,0 +170776122736,214,0 +170776122784,214,0 +170776122834,214,0 +170776122883,214,0 +170776122931,214,0 +170776122979,214,0 +170776123027,214,0 +170776123076,214,0 +170776123124,214,0 +170776123174,215,0 +170776123222,215,0 +170776123270,215,0 +170776123319,215,0 +170776123369,215,0 +170776123418,215,0 +170776123466,214,0 +170776123514,213,0 +170776123562,213,0 +170776123610,213,0 +170776123658,213,0 +170776123707,213,0 +170776123755,214,0 +170776123803,214,0 +170776123851,214,0 +170776123899,214,0 +170776123947,214,0 +170776123997,214,0 +170776124045,214,0 +170776124093,214,0 +170776124140,214,0 +170776124188,214,0 +170776124238,214,0 +170776124286,214,0 +170776124334,214,0 +170776124382,215,0 +170776124430,215,0 +170776124479,215,0 +170776124529,215,0 +170776124577,215,0 +170776124625,215,0 +170776124673,215,0 +170776124721,215,0 +170776124768,215,0 +170776124818,213,0 +170776124866,213,0 +170776124914,213,0 +170776124961,214,0 +170776125009,213,0 +170776125057,214,0 +170776125105,214,0 +170776125153,214,0 +170776125201,214,0 +170776125248,214,0 +170776125298,214,0 +170776125346,214,0 +170776125393,215,0 +170776125441,215,0 +170776125491,215,0 +170776125539,215,0 +170776125588,215,0 +170776125638,215,0 +170776125687,214,0 +170776125737,213,0 +170776125785,213,0 +170776125834,214,0 +170776125882,214,0 +170776125930,214,0 +170776125978,214,0 +170776126026,214,0 +170776126074,214,0 +170776126123,214,0 +170776126173,214,0 +170776126221,214,0 +170776126269,214,0 +170776126318,215,0 +170776126366,215,0 +170776126414,215,0 +170776126462,215,0 +170776126511,215,0 +170776126559,214,0 +170776126607,214,0 +170776126655,214,0 +170776126704,214,0 +170776126752,214,0 +170776126800,214,0 +170776126848,214,0 +170776126896,214,0 +170776126944,214,0 +170776126992,214,0 +170776127039,214,0 +170776127087,214,0 +170776127137,214,0 +170776127184,214,0 +170776127232,215,0 +170776127280,215,0 +170776127328,215,0 +170776127376,215,0 +170776127426,215,0 +170776127473,214,0 +170776127521,213,0 +170776127569,213,0 +170776127617,214,0 +170776127667,214,0 +170776127715,214,0 +170776127763,214,0 +170776127810,214,0 +170776127860,214,0 +170776127908,214,0 +170776127956,214,0 +170776128005,214,0 +170776128053,215,0 +170776128101,215,0 +170776128151,215,0 +170776128200,214,0 +170776128248,215,0 +170776128296,215,0 +170776128344,214,0 +170776128392,214,0 +170776128440,214,0 +170776128488,214,0 +170776128536,214,0 +170776128584,214,0 +170776128633,214,0 +170776128681,214,0 +170776128731,214,0 +170776128779,214,0 +170776128827,214,0 +170776128876,214,0 +170776128926,215,0 +170776128975,215,0 +170776129023,215,0 +170776129071,215,0 +170776129119,215,0 +170776129167,215,0 +170776129215,214,0 +170776129263,214,0 +170776129311,214,0 +170776129361,214,0 +170776129409,214,0 +170776129456,214,0 +170776129504,214,0 +170776129552,214,0 +170776129600,214,0 +170776129648,215,0 +170776129696,215,0 +170776129744,215,0 +170776129792,215,0 +170776129840,215,0 +170776129888,215,0 +170776129936,215,0 +170776129985,215,0 +170776130033,215,0 +170776130083,215,0 +170776130131,215,0 +170776130178,214,0 +170776130228,214,0 +170776130277,214,0 +170776130325,214,0 +170776130373,214,0 +170776130421,214,0 +170776130469,214,0 +170776130517,215,0 +170776130565,214,0 +170776130613,215,0 +170776130663,215,0 +170776130712,215,0 +170776130762,215,0 +170776130811,215,0 +170776130859,215,0 +170776130907,215,0 +170776130955,215,0 +170776131003,215,0 +170776131051,214,0 +170776131098,214,0 +170776131146,214,0 +170776131194,214,0 +170776131242,214,0 +170776131292,214,0 +170776131340,214,0 +170776131388,214,0 +170776131437,214,0 +170776131487,215,0 +170776131534,214,0 +170776131582,215,0 +170776131630,215,0 +170776131678,215,0 +170776131728,215,0 +170776131776,215,0 +170776131825,215,0 +170776131873,215,0 +170776131921,215,0 +170776131969,214,0 +170776132017,214,0 +170776132066,214,0 +170776132114,214,0 +170776132164,214,0 +170776132212,215,0 +170776132261,214,0 +170776132309,214,0 +170776132359,215,0 +170776132408,215,0 +170776132458,215,0 +170776132507,215,0 +170776132557,215,0 +170776132605,215,0 +170776132654,215,0 +170776132704,215,0 +170776132752,215,0 +170776132799,215,0 +170776132849,214,0 +170776132898,214,0 +170776132948,214,0 +170776132996,214,0 +170776133045,214,0 +170776133095,214,0 +170776133144,214,0 +170776133192,214,0 +170776133240,214,0 +170776133290,215,0 +170776133338,215,0 +170776133386,215,0 +170776133435,215,0 +170776133483,215,0 +170776133531,215,0 +170776133579,215,0 +170776133627,215,0 +170776133675,215,0 +170776133723,214,0 +170776133771,214,0 +170776133819,214,0 +170776133868,214,0 +170776133916,214,0 +170776133964,214,0 +170776134014,215,0 +170776134063,215,0 +170776134112,215,0 +170776134160,215,0 +170776134208,215,0 +170776134258,215,0 +170776134306,216,0 +170776134355,215,0 +170776134403,215,0 +170776134451,215,0 +170776134499,215,0 +170776134547,215,0 +170776134595,215,0 +170776134643,214,0 +170776134691,214,0 +170776134739,214,0 +170776134788,214,0 +170776134836,214,0 +170776134886,215,0 +170776134935,215,0 +170776134985,214,0 +170776135033,215,0 +170776135082,215,0 +170776135130,215,0 +170776135178,215,0 +170776135226,215,0 +170776135274,215,0 +170776135323,215,0 +170776135373,215,0 +170776135421,215,0 +170776135470,215,0 +170776135518,214,0 +170776135566,214,0 +170776135614,214,0 +170776135662,214,0 +170776135710,214,0 +170776135760,214,0 +170776135808,214,0 +170776135857,215,0 +170776135905,215,0 +170776135953,215,0 +170776136001,215,0 +170776136050,215,0 +170776136098,215,0 +170776136148,215,0 +170776136197,215,0 +170776136247,215,0 +170776136294,215,0 +170776136344,215,0 +170776136392,214,0 +170776136440,214,0 +170776136488,214,0 +170776136536,214,0 +170776136584,214,0 +170776136632,214,0 +170776136681,214,0 +170776136729,214,0 +170776136777,214,0 +170776136825,214,0 +170776136874,214,0 +170776136924,215,0 +170776136972,215,0 +170776137020,215,0 +170776137069,215,0 +170776137117,215,0 +170776137165,215,0 +170776137213,215,0 +170776137262,215,0 +170776137312,214,0 +170776137360,214,0 +170776137409,214,0 +170776137457,214,0 +170776137507,214,0 +170776137556,214,0 +170776137606,214,0 +170776137655,214,0 +170776137705,215,0 +170776137754,215,0 +170776137804,215,0 +170776137853,215,0 +170776137903,215,0 +170776137951,215,0 +170776137999,215,0 +170776138048,215,0 +170776138096,215,0 +170776138144,215,0 +170776138192,214,0 +170776138242,214,0 +170776138291,214,0 +170776138339,214,0 +170776138387,214,0 +170776138435,214,0 +170776138483,214,0 +170776138531,214,0 +170776138579,214,0 +170776138627,214,0 +170776138676,215,0 +170776138726,214,0 +170776138775,214,0 +170776138823,215,0 +170776138873,215,0 +170776138922,215,0 +170776138970,215,0 +170776139020,215,0 +170776139069,214,0 +170776139117,214,0 +170776139165,214,0 +170776139214,214,0 +170776139262,214,0 +170776139310,214,0 +170776139360,214,0 +170776139408,214,0 +170776139457,214,0 +170776139505,215,0 +170776139553,215,0 +170776139603,215,0 +170776139651,215,0 +170776139699,215,0 +170776139748,215,0 +170776139797,215,0 +170776139845,215,0 +170776139895,215,0 +170776139943,215,0 +170776139992,214,0 +170776140040,214,0 +170776140088,214,0 +170776140136,214,0 +170776140186,214,0 +170776140235,214,0 +170776140283,214,0 +170776140333,214,0 +170776140382,215,0 +170776140430,215,0 +170776140478,215,0 +170776140528,215,0 +170776140577,215,0 +170776140625,215,0 +170776140673,215,0 +170776140723,215,0 +170776140771,215,0 +170776140819,215,0 +170776140868,214,0 +170776140916,214,0 +170776140964,214,0 +170776141013,214,0 +170776141061,214,0 +170776141109,214,0 +170776141157,214,0 +170776141207,214,0 +170776141256,214,0 +170776141304,214,0 +170776141352,215,0 +170776141400,215,0 +170776141448,215,0 +170776141496,215,0 +170776141545,215,0 +170776141593,215,0 +170776141641,215,0 +170776141689,215,0 +170776141738,215,0 +170776141788,213,0 +170776141837,213,0 +170776141887,214,0 +170776141935,214,0 +170776141983,214,0 +170776142031,214,0 +170776142079,214,0 +170776142128,214,0 +170776142178,214,0 +170776142227,214,0 +170776142277,214,0 +170776142325,215,0 +170776142373,215,0 +170776142422,215,0 +170776142470,215,0 +170776142518,215,0 +170776142566,215,0 +170776142616,215,0 +170776142665,213,0 +170776142715,213,0 +170776142763,213,0 +170776142812,213,0 +170776142862,214,0 +170776142910,214,0 +170776142957,214,0 +170776143007,214,0 +170776143056,214,0 +170776143106,214,0 +170776143154,214,0 +170776143202,214,0 +170776143250,215,0 +170776143298,215,0 +170776143345,215,0 +170776143393,215,0 +170776143441,215,0 +170776143489,215,0 +170776143539,214,0 +170776143587,213,0 +170776143635,213,0 +170776143684,213,0 +170776143734,214,0 +170776143782,214,0 +170776143830,214,0 +170776143878,214,0 +170776143927,214,0 +170776143975,214,0 +170776144023,214,0 +170776144071,214,0 +170776144119,214,0 +170776144167,214,0 +170776144216,214,0 +170776144264,215,0 +170776144314,215,0 +170776144361,215,0 +170776144411,214,0 +170776144459,213,0 +170776144508,213,0 +170776144558,213,0 +170776144607,214,0 +170776144657,214,0 +170776144705,214,0 +170776144753,214,0 +170776144801,214,0 +170776144849,214,0 +170776144898,214,0 +170776144947,214,0 +170776144997,214,0 +170776145045,214,0 +170776145094,214,0 +170776145144,215,0 +170776145192,215,0 +170776145241,215,0 +170776145289,214,0 +170776145337,214,0 +170776145385,213,0 +170776145433,213,0 +170776145481,213,0 +170776145529,214,0 +170776145576,214,0 +170776145624,214,0 +170776145672,214,0 +170776145720,214,0 +170776145768,214,0 +170776145816,214,0 +170776145864,214,0 +170776145911,214,0 +170776145959,215,0 +170776146007,215,0 +170776146055,215,0 +170776146103,215,0 +170776146151,215,0 +170776146200,214,0 +170776146248,213,0 +170776146296,213,0 +170776146344,213,0 +170776146393,214,0 +170776146441,214,0 +170776146489,214,0 +170776146537,214,0 +170776146585,214,0 +170776146634,214,0 +170776146682,214,0 +170776146730,214,0 +170776146778,214,0 +170776146826,214,0 +170776146874,214,0 +170776146921,214,0 +170776146971,215,0 +170776147020,215,0 +170776147068,215,0 +170776147116,214,0 +170776147164,214,0 +170776147213,213,0 +170776147263,214,0 +170776147312,214,0 +170776147362,214,0 +170776147411,214,0 +170776147461,214,0 +170776147509,214,0 +170776147557,214,0 +170776147605,214,0 +170776147653,214,0 +170776147700,214,0 +170776147748,214,0 +170776147796,214,0 +170776147846,215,0 +170776147894,215,0 +170776147941,214,0 +170776147989,214,0 +170776148037,213,0 +170776148085,213,0 +170776148133,214,0 +170776148181,214,0 +170776148230,214,0 +170776148278,214,0 +170776148326,214,0 +170776148376,214,0 +170776148425,214,0 +170776148473,214,0 +170776148521,214,0 +170776148569,215,0 +170776148618,215,0 +170776148666,215,0 +170776148714,215,0 +170776148762,215,0 +170776148812,215,0 +170776148861,214,0 +170776148911,214,0 +170776148958,214,0 +170776149008,214,0 +170776149056,214,0 +170776149104,214,0 +170776149152,214,0 +170776149200,214,0 +170776149249,214,0 +170776149297,214,0 +170776149345,214,0 +170776149393,214,0 +170776149441,215,0 +170776149490,215,0 +170776149538,215,0 +170776149586,215,0 +170776149634,215,0 +170776149683,215,0 +170776149731,215,0 +170776149779,214,0 +170776149827,214,0 +170776149875,214,0 +170776149923,214,0 +170776149971,214,0 +170776150020,214,0 +170776150068,214,0 +170776150116,214,0 +170776150164,214,0 +170776150212,214,0 +170776150260,215,0 +170776150309,215,0 +170776150357,215,0 +170776150405,215,0 +170776150455,215,0 +170776150503,215,0 +170776150552,215,0 +170776150600,215,0 +170776150648,215,0 +170776150698,214,0 +170776150747,214,0 +170776150795,214,0 +170776150843,214,0 +170776150891,214,0 +170776150940,215,0 +170776150988,214,0 +170776151038,214,0 +170776151087,215,0 +170776151135,215,0 +170776151185,215,0 +170776151233,215,0 +170776151280,215,0 +170776151330,215,0 +170776151378,215,0 +170776151426,215,0 +170776151474,215,0 +170776151522,215,0 +170776151570,214,0 +170776151618,215,0 +170776151666,214,0 +170776151715,215,0 +170776151763,214,0 +170776151811,215,0 +170776151860,215,0 +170776151908,215,0 +170776151956,215,0 +170776152004,215,0 +170776152054,215,0 +170776152103,215,0 +170776152153,215,0 +170776152202,215,0 +170776152250,215,0 +170776152299,215,0 +170776152347,215,0 +170776152395,215,0 +170776152443,214,0 +170776152493,214,0 +170776152541,214,0 +170776152590,215,0 +170776152640,215,0 +170776152688,215,0 +170776152736,215,0 +170776152783,215,0 +170776152833,215,0 +170776152882,215,0 +170776152932,215,0 +170776152981,215,0 +170776153029,215,0 +170776153077,215,0 +170776153127,215,0 +170776153175,215,0 +170776153223,215,0 +170776153272,214,0 +170776153320,215,0 +170776153368,214,0 +170776153418,214,0 +170776153467,214,0 +170776153517,214,0 +170776153566,214,0 +170776153616,214,0 +170776153665,214,0 +170776153713,215,0 +170776153763,214,0 +170776153812,215,0 +170776153860,215,0 +170776153908,215,0 +170776153956,215,0 +170776154004,215,0 +170776154053,215,0 +170776154101,215,0 +170776154149,215,0 +170776154197,215,0 +170776154247,214,0 +170776154295,214,0 +170776154343,214,0 +170776154392,214,0 +170776154440,214,0 +170776154488,214,0 +170776154536,214,0 +170776154584,214,0 +170776154632,215,0 +170776154680,215,0 +170776154728,215,0 +170776154776,215,0 +170776154824,215,0 +170776154873,215,0 +170776154921,215,0 +170776154969,215,0 +170776155018,215,0 +170776155068,215,0 +170776155116,215,0 +170776155165,214,0 +170776155213,214,0 +170776155261,214,0 +170776155309,214,0 +170776155357,214,0 +170776155405,214,0 +170776155453,214,0 +170776155501,214,0 +170776155550,215,0 +170776155598,215,0 +170776155646,215,0 +170776155694,215,0 +170776155744,215,0 +170776155793,215,0 +170776155843,215,0 +170776155891,215,0 +170776155939,215,0 +170776155988,215,0 +170776156036,214,0 +170776156086,214,0 +170776156135,214,0 +170776156183,214,0 +170776156231,214,0 +170776156279,214,0 +170776156327,214,0 +170776156375,214,0 +170776156424,214,0 +170776156472,215,0 +170776156520,215,0 +170776156569,215,0 +170776156619,215,0 +170776156667,215,0 +170776156715,215,0 +170776156764,215,0 +170776156812,215,0 +170776156862,215,0 +170776156910,214,0 +170776156958,213,0 +170776157007,213,0 +170776157055,214,0 +170776157104,214,0 +170776157154,214,0 +170776157202,214,0 +170776157250,214,0 +170776157298,214,0 +170776157346,214,0 +170776157395,214,0 +170776157443,215,0 +170776157491,215,0 +170776157539,215,0 +170776157587,215,0 +170776157635,215,0 +170776157684,215,0 +170776157732,215,0 +170776157780,215,0 +170776157830,213,0 +170776157878,213,0 +170776157926,213,0 +170776157975,213,0 +170776158024,213,0 +170776158072,213,0 +170776158120,214,0 +170776158168,214,0 +170776158216,214,0 +170776158264,214,0 +170776158312,214,0 +170776158360,214,0 +170776158408,214,0 +170776158455,214,0 +170776158503,214,0 +170776158553,214,0 +170776158600,215,0 +170776158648,215,0 +170776158696,214,0 +170776158744,213,0 +170776158791,213,0 +170776158839,213,0 +170776158887,214,0 +170776158935,214,0 +170776158983,214,0 +170776159031,214,0 +170776159078,214,0 +170776159128,214,0 +170776159178,214,0 +170776159226,214,0 +170776159273,215,0 +170776159321,214,0 +170776159371,215,0 +170776159419,215,0 +170776159466,215,0 +170776159514,215,0 +170776159562,214,0 +170776159610,214,0 +170776159658,213,0 +170776159706,213,0 +170776159756,213,0 +170776159805,214,0 +170776159855,213,0 +170776159904,214,0 +170776159954,214,0 +170776160003,214,0 +170776160051,214,0 +170776160099,214,0 +170776160147,214,0 +170776160197,214,0 +170776160245,214,0 +170776160293,215,0 +170776160342,215,0 +170776160390,215,0 +170776160440,215,0 +170776160487,214,0 +170776160535,213,0 +170776160585,213,0 +170776160633,213,0 +170776160681,214,0 +170776160729,214,0 +170776160777,214,0 +170776160826,214,0 +170776160874,214,0 +170776160922,214,0 +170776160972,214,0 +170776161020,215,0 +170776161069,215,0 +170776161117,214,0 +170776161165,215,0 +170776161215,214,0 +170776161264,215,0 +170776161314,215,0 +170776161362,215,0 +170776161411,213,0 +170776161461,213,0 +170776161510,214,0 +170776161560,214,0 +170776161608,214,0 +170776161657,214,0 +170776161707,214,0 +170776161755,214,0 +170776161804,214,0 +170776161854,214,0 +170776161903,214,0 +170776161951,214,0 +170776161999,215,0 +170776162047,215,0 +170776162095,215,0 +170776162143,215,0 +170776162192,215,0 +170776162242,215,0 +170776162290,214,0 +170776162338,214,0 +170776162386,214,0 +170776162434,214,0 +170776162482,214,0 +170776162531,214,0 +170776162579,214,0 +170776162627,214,0 +170776162675,214,0 +170776162725,215,0 +170776162773,215,0 +170776162821,215,0 +170776162868,215,0 +170776162916,215,0 +170776162966,215,0 +170776163015,215,0 +170776163063,215,0 +170776163111,215,0 +170776163160,214,0 +170776163208,214,0 +170776163256,214,0 +170776163304,214,0 +170776163351,214,0 +170776163401,214,0 +170776163449,214,0 +170776163497,214,0 +170776163544,215,0 +170776163592,215,0 +170776163640,215,0 +170776163688,215,0 +170776163736,215,0 +170776163784,215,0 +170776163831,215,0 +170776163879,215,0 +170776163927,215,0 +170776163975,215,0 +170776164023,215,0 +170776164071,214,0 +170776164119,214,0 +170776164167,214,0 +170776164216,214,0 +170776164264,214,0 +170776164312,214,0 +170776164360,214,0 +170776164410,214,0 +170776164458,214,0 +170776164507,215,0 +170776164555,215,0 +170776164603,215,0 +170776164653,215,0 +170776164702,215,0 +170776164752,215,0 +170776164799,215,0 +170776164847,215,0 +170776164895,215,0 +170776164943,214,0 +170776164991,214,0 +170776165039,214,0 +170776165087,214,0 +170776165135,214,0 +170776165183,214,0 +170776165232,214,0 +170776165282,214,0 +170776165330,215,0 +170776165378,215,0 +170776165427,215,0 +170776165477,215,0 +170776165525,215,0 +170776165574,215,0 +170776165622,215,0 +170776165670,215,0 +170776165718,215,0 +170776165766,215,0 +170776165814,215,0 +170776165861,214,0 +170776165911,214,0 +170776165959,214,0 +170776166007,214,0 +170776166054,214,0 +170776166102,214,0 +170776166150,214,0 +170776166198,215,0 +170776166246,214,0 +170776166295,214,0 +170776166343,215,0 +170776166391,215,0 +170776166439,215,0 +170776166487,215,0 +170776166535,215,0 +170776166583,215,0 +170776166630,215,0 +170776166678,215,0 +170776166726,214,0 +170776166776,214,0 +170776166824,214,0 +170776166873,214,0 +170776166921,214,0 +170776166969,214,0 +170776167019,214,0 +170776167068,214,0 +170776167118,214,0 +170776167166,214,0 +170776167213,214,0 +170776167261,215,0 +170776167309,215,0 +170776167357,215,0 +170776167405,215,0 +170776167452,215,0 +170776167500,215,0 +170776167548,215,0 +170776167596,215,0 +170776167645,213,0 +170776167693,213,0 +170776167741,214,0 +170776167789,214,0 +170776167837,214,0 +170776167886,214,0 +170776167934,214,0 +170776167982,214,0 +170776168032,214,0 +170776168081,214,0 +170776168129,215,0 +170776168177,214,0 +170776168225,214,0 +170776168273,215,0 +170776168321,215,0 +170776168369,215,0 +170776168417,215,0 +170776168464,215,0 +170776168512,214,0 +170776168560,213,0 +170776168610,214,0 +170776168659,214,0 +170776168707,214,0 +170776168755,214,0 +170776168803,214,0 +170776168852,214,0 +170776168900,214,0 +170776168950,214,0 +170776168998,214,0 +170776169045,214,0 +170776169095,215,0 +170776169144,214,0 +170776169192,214,0 +170776169240,215,0 +170776169288,214,0 +170776169338,215,0 +170776169386,215,0 +170776169433,214,0 +170776169481,213,0 +170776169531,214,0 +170776169579,214,0 +170776169627,214,0 +170776169675,214,0 +170776169723,214,0 +170776169771,214,0 +170776169820,214,0 +170776169868,214,0 +170776169917,214,0 +170776169965,214,0 +170776170015,214,0 +170776170063,215,0 +170776170111,215,0 +170776170160,215,0 +170776170208,215,0 +170776170256,215,0 +170776170304,214,0 +170776170352,213,0 +170776170400,214,0 +170776170449,213,0 +170776170497,214,0 +170776170547,214,0 +170776170595,214,0 +170776170643,214,0 +170776170690,214,0 +170776170740,214,0 +170776170788,214,0 +170776170836,214,0 +170776170884,215,0 +170776170932,215,0 +170776170979,215,0 +170776171027,215,0 +170776171077,215,0 +170776171125,215,0 +170776171173,214,0 +170776171222,214,0 +170776171270,213,0 +170776171318,214,0 +170776171366,213,0 +170776171413,214,0 +170776171461,214,0 +170776171509,214,0 +170776171557,214,0 +170776171605,214,0 +170776171654,214,0 +170776171702,214,0 +170776171750,214,0 +170776171798,214,0 +170776171848,214,0 +170776171896,215,0 +170776171945,215,0 +170776171993,215,0 +170776172041,214,0 +170776172089,214,0 +170776172137,213,0 +170776172184,213,0 +170776172232,213,0 +170776172280,214,0 +170776172330,213,0 +170776172377,214,0 +170776172425,214,0 +170776172473,214,0 +170776172523,214,0 +170776172572,214,0 +170776172620,214,0 +170776172668,214,0 +170776172716,214,0 +170776172764,214,0 +170776172812,215,0 +170776172860,214,0 +170776172910,215,0 +170776172958,214,0 +170776173007,213,0 +170776173057,213,0 +170776173106,213,0 +170776173154,214,0 +170776173202,213,0 +170776173250,214,0 +170776173300,214,0 +170776173348,214,0 +170776173396,214,0 +170776173443,214,0 +170776173493,214,0 +170776173541,214,0 +170776173589,215,0 +170776173637,215,0 +170776173685,215,0 +170776173733,215,0 +170776173782,215,0 +170776173830,215,0 +170776173878,214,0 +170776173928,214,0 +170776173977,214,0 +170776174025,214,0 +170776174073,214,0 +170776174123,214,0 +170776174170,214,0 +170776174218,214,0 +170776174268,214,0 +170776174318,214,0 +170776174365,215,0 +170776174415,215,0 +170776174463,215,0 +170776174511,215,0 +170776174559,215,0 +170776174607,215,0 +170776174656,215,0 +170776174704,215,0 +170776174754,214,0 +170776174803,214,0 +170776174851,214,0 +170776174899,214,0 +170776174948,214,0 +170776174996,215,0 +170776175046,215,0 +170776175094,215,0 +170776175142,215,0 +170776175190,215,0 +170776175239,215,0 +170776175287,215,0 +170776175335,215,0 +170776175385,215,0 +170776175433,215,0 +170776175481,215,0 +170776175528,215,0 +170776175576,215,0 +170776175624,214,0 +170776175674,214,0 +170776175721,214,0 +170776175769,214,0 +170776175817,214,0 +170776175865,214,0 +170776175913,214,0 +170776175961,215,0 +170776176011,215,0 +170776176059,215,0 +170776176108,215,0 +170776176156,215,0 +170776176204,215,0 +170776176252,215,0 +170776176300,215,0 +170776176348,215,0 +170776176397,215,0 +170776176445,215,0 +170776176493,215,0 +170776176543,214,0 +170776176591,214,0 +170776176639,214,0 +170776176687,214,0 +170776176736,214,0 +170776176784,214,0 +170776176832,214,0 +170776176882,214,0 +170776176931,214,0 +170776176979,214,0 +170776177029,215,0 +170776177077,214,0 +170776177125,214,0 +170776177173,215,0 +170776177222,215,0 +170776177270,215,0 +170776177318,215,0 +170776177366,215,0 +170776177415,214,0 +170776177465,214,0 +170776177513,214,0 +170776177561,214,0 +170776177609,214,0 +170776177658,214,0 +170776177706,214,0 +170776177754,214,0 +170776177802,214,0 +170776177850,214,0 +170776177899,215,0 +170776177947,214,0 +170776177995,215,0 +170776178043,215,0 +170776178093,215,0 +170776178142,215,0 +170776178192,215,0 +170776178240,215,0 +170776178288,215,0 +170776178337,214,0 +170776178385,214,0 +170776178433,214,0 +170776178483,214,0 +170776178530,214,0 +170776178578,214,0 +170776178626,214,0 +170776178674,215,0 +170776178722,215,0 +170776178772,215,0 +170776178821,215,0 +170776178869,215,0 +170776178917,215,0 +170776178967,215,0 +170776179016,215,0 +170776179064,215,0 +170776179114,215,0 +170776179162,214,0 +170776179210,214,0 +170776179257,214,0 +170776179305,214,0 +170776179355,215,0 +170776179403,214,0 +170776179451,215,0 +170776179500,215,0 +170776179548,215,0 +170776179596,215,0 +170776179644,215,0 +170776179692,215,0 +170776179740,215,0 +170776179788,215,0 +170776179836,215,0 +170776179885,215,0 +170776179933,215,0 +170776179981,215,0 +170776180029,215,0 +170776180078,215,0 +170776180128,214,0 +170776180176,214,0 +170776180224,214,0 +170776180271,214,0 +170776180321,215,0 +170776180369,214,0 +170776180418,215,0 +170776180466,215,0 +170776180514,215,0 +170776180562,215,0 +170776180611,215,0 +170776180659,215,0 +170776180707,215,0 +170776180755,215,0 +170776180802,215,0 +170776180850,215,0 +170776180898,215,0 +170776180946,215,0 +170776180994,214,0 +170776181042,214,0 +170776181090,214,0 +170776181139,214,0 +170776181187,214,0 +170776181235,214,0 +170776181283,215,0 +170776181331,214,0 +170776181379,215,0 +170776181428,215,0 +170776181477,215,0 +170776181525,215,0 +170776181573,215,0 +170776181621,215,0 +170776181669,215,0 +170776181717,215,0 +170776181765,215,0 +170776181813,215,0 +170776181862,215,0 +170776181912,214,0 +170776181959,214,0 +170776182007,214,0 +170776182055,214,0 +170776182103,214,0 +170776182151,214,0 +170776182199,214,0 +170776182247,214,0 +170776182296,214,0 +170776182344,214,0 +170776182392,215,0 +170776182440,215,0 +170776182488,215,0 +170776182536,215,0 +170776182584,215,0 +170776182632,215,0 +170776182680,215,0 +170776182727,215,0 +170776182777,214,0 +170776182825,213,0 +170776182873,214,0 +170776182920,214,0 +170776182968,214,0 +170776183016,214,0 +170776183066,214,0 +170776183114,214,0 +170776183161,214,0 +170776183209,214,0 +170776183257,215,0 +170776183305,214,0 +170776183353,215,0 +170776183401,215,0 +170776183449,215,0 +170776183496,215,0 +170776183544,214,0 +170776183592,214,0 +170776183642,214,0 +170776183691,214,0 +170776183739,214,0 +170776183787,214,0 +170776183836,214,0 +170776183884,214,0 +170776183932,214,0 +170776183980,214,0 +170776184028,214,0 +170776184076,214,0 +170776184123,214,0 +170776184171,215,0 +170776184219,215,0 +170776184267,215,0 +170776184315,215,0 +170776184363,215,0 +170776184410,214,0 +170776184458,215,0 +170776184506,214,0 +170776184554,214,0 +170776184602,213,0 +170776184650,213,0 +170776184697,214,0 +170776184745,214,0 +170776184793,214,0 +170776184841,214,0 +170776184889,214,0 +170776184936,214,0 +170776184984,214,0 +170776185032,214,0 +170776185082,215,0 +170776185130,215,0 +170776185177,215,0 +170776185225,215,0 +170776185273,215,0 +170776185321,215,0 +170776185369,215,0 +170776185417,215,0 +170776185466,214,0 +170776185514,213,0 +170776185562,213,0 +170776185610,213,0 +170776185659,214,0 +170776185707,214,0 +170776185755,214,0 +170776185803,214,0 +170776185852,214,0 +170776185900,214,0 +170776185948,214,0 +170776185998,215,0 +170776186046,215,0 +170776186094,215,0 +170776186142,215,0 +170776186190,215,0 +170776186238,215,0 +170776186286,214,0 +170776186334,214,0 +170776186382,214,0 +170776186430,213,0 +170776186478,214,0 +170776186525,214,0 +170776186573,214,0 +170776186621,214,0 +170776186669,214,0 +170776186719,214,0 +170776186768,214,0 +170776186816,215,0 +170776186864,214,0 +170776186914,215,0 +170776186962,215,0 +170776187010,215,0 +170776187058,214,0 +170776187107,215,0 +170776187157,215,0 +170776187205,214,0 +170776187254,214,0 +170776187302,213,0 +170776187350,213,0 +170776187398,214,0 +170776187445,214,0 +170776187493,214,0 +170776187543,214,0 +170776187592,214,0 +170776187640,214,0 +170776187688,214,0 +170776187736,214,0 +170776187784,215,0 +170776187831,215,0 +170776187879,215,0 +170776187927,215,0 +170776187975,215,0 +170776188023,215,0 +170776188071,215,0 +170776188118,214,0 +170776188166,213,0 +170776188214,213,0 +170776188262,213,0 +170776188310,214,0 +170776188357,214,0 +170776188405,214,0 +170776188453,214,0 +170776188501,214,0 +170776188549,214,0 +170776188597,214,0 +170776188644,214,0 +170776188692,214,0 +170776188740,215,0 +170776188788,215,0 +170776188836,214,0 +170776188885,215,0 +170776188933,215,0 +170776188983,215,0 +170776189030,213,0 +170776189078,213,0 +170776189126,213,0 +170776189174,214,0 +170776189223,214,0 +170776189271,214,0 +170776189319,213,0 +170776189367,214,0 +170776189415,214,0 +170776189464,214,0 +170776189512,214,0 +170776189560,214,0 +170776189610,214,0 +170776189657,214,0 +170776189707,214,0 +170776189755,214,0 +170776189803,215,0 +170776189852,215,0 +170776189900,214,0 +170776189948,213,0 +170776189996,213,0 +170776190045,213,0 +170776190093,213,0 +170776190141,214,0 +170776190191,213,0 +170776190240,214,0 +170776190288,214,0 +170776190337,214,0 +170776190385,214,0 +170776190433,214,0 +170776190483,214,0 +170776190530,214,0 +170776190578,214,0 +170776190626,215,0 +170776190674,215,0 +170776190722,215,0 +170776190770,214,0 +170776190817,213,0 +170776190865,213,0 +170776190913,213,0 +170776190961,213,0 +170776191009,213,0 +170776191057,213,0 +170776191105,213,0 +170776191153,214,0 +170776191200,214,0 +170776191248,214,0 +170776191296,214,0 +170776191344,214,0 +170776191392,214,0 +170776191440,214,0 +170776191489,215,0 +170776191539,214,0 +170776191587,215,0 +170776191635,214,0 +170776191683,214,0 +170776191730,213,0 +170776191780,213,0 +170776191828,213,0 +170776191877,213,0 +170776191927,213,0 +170776191974,213,0 +170776192022,214,0 +170776192072,213,0 +170776192121,214,0 +170776192171,214,0 +170776192219,214,0 +170776192268,214,0 +170776192318,214,0 +170776192366,214,0 +170776192414,214,0 +170776192462,214,0 +170776192510,214,0 +170776192558,214,0 +170776192607,213,0 +170776192655,213,0 +170776192703,214,0 +170776192751,214,0 +170776192799,214,0 +170776192849,214,0 +170776192897,214,0 +170776192946,214,0 +170776192996,214,0 +170776193045,214,0 +170776193093,214,0 +170776193141,214,0 +170776193189,215,0 +170776193239,215,0 +170776193287,215,0 +170776193334,215,0 +170776193382,215,0 +170776193430,215,0 +170776193478,214,0 +170776193526,214,0 +170776193575,214,0 +170776193623,214,0 +170776193671,214,0 +170776193719,214,0 +170776193766,214,0 +170776193814,214,0 +170776193864,214,0 +170776193912,214,0 +170776193960,214,0 +170776194009,215,0 +170776194057,215,0 +170776194105,214,0 +170776194153,215,0 +170776194200,215,0 +170776194248,215,0 +170776194296,215,0 +170776194346,215,0 +170776194394,214,0 +170776194442,214,0 +170776194490,214,0 +170776194538,214,0 +170776194586,214,0 +170776194634,214,0 +170776194682,214,0 +170776194731,214,0 +170776194779,214,0 +170776194829,214,0 +170776194876,215,0 +170776194926,215,0 +170776194974,215,0 +170776195023,215,0 +170776195071,215,0 +170776195119,215,0 +170776195167,215,0 +170776195215,215,0 +170776195263,214,0 +170776195312,214,0 +170776195360,214,0 +170776195408,214,0 +170776195456,214,0 +170776195503,214,0 +170776195551,214,0 +170776195599,215,0 +170776195647,215,0 +170776195695,214,0 +170776195743,215,0 +170776195791,215,0 +170776195839,215,0 +170776195888,215,0 +170776195936,215,0 +170776195984,215,0 +170776196032,215,0 +170776196080,215,0 +170776196128,215,0 +170776196175,215,0 +170776196224,214,0 +170776196271,214,0 +170776196319,214,0 +170776196367,215,0 +170776196415,215,0 +170776196463,215,0 +170776196511,215,0 +170776196561,215,0 +170776196609,215,0 +170776196657,215,0 +170776196705,215,0 +170776196753,215,0 +170776196801,215,0 +170776196848,215,0 +170776196896,215,0 +170776196946,215,0 +170776196995,215,0 +170776197043,214,0 +170776197093,214,0 +170776197143,214,0 +170776197192,214,0 +170776197241,215,0 +170776197291,215,0 +170776197341,215,0 +170776197390,215,0 +170776197439,215,0 +170776197488,215,0 +170776197535,215,0 +170776197585,215,0 +170776197633,215,0 +170776197683,215,0 +170776197732,215,0 +170776197780,215,0 +170776197830,215,0 +170776197878,215,0 +170776197927,214,0 +170776197975,214,0 +170776198025,214,0 +170776198073,214,0 +170776198122,214,0 +170776198170,214,0 +170776198218,214,0 +170776198267,214,0 +170776198315,214,0 +170776198365,214,0 +170776198414,215,0 +170776198462,215,0 +170776198510,215,0 +170776198560,215,0 +170776198609,215,0 +170776198657,215,0 +170776198705,215,0 +170776198753,215,0 +170776198801,214,0 +170776198849,214,0 +170776198899,213,0 +170776198948,214,0 +170776198996,214,0 +170776199044,213,0 +170776199092,214,0 +170776199140,214,0 +170776199188,214,0 +170776199236,214,0 +170776199284,214,0 +170776199333,214,0 +170776199383,214,0 +170776199432,215,0 +170776199482,215,0 +170776199530,215,0 +170776199579,214,0 +170776199629,215,0 +170776199677,214,0 +170776199726,214,0 +170776199774,214,0 +170776199824,214,0 +170776199874,214,0 +170776199923,214,0 +170776199971,214,0 +170776200019,214,0 +170776200069,214,0 +170776200116,215,0 +170776200166,214,0 +170776200214,214,0 +170776200262,215,0 +170776200311,215,0 +170776200359,215,0 +170776200409,215,0 +170776200457,215,0 +170776200506,215,0 +170776200554,215,0 +170776200602,214,0 +170776200652,214,0 +170776200701,213,0 +170776200749,214,0 +170776200799,214,0 +170776200848,214,0 +170776200896,214,0 +170776200944,214,0 +170776200992,215,0 +170776201040,215,0 +170776201088,215,0 +170776201138,215,0 +170776201186,215,0 +170776201233,215,0 +170776201281,215,0 +170776201331,215,0 +170776201379,215,0 +170776201428,215,0 +170776201478,215,0 +170776201526,213,0 +170776201574,213,0 +170776201623,214,0 +170776201671,214,0 +170776201721,214,0 +170776201769,214,0 +170776201817,214,0 +170776201866,214,0 +170776201916,214,0 +170776201964,214,0 +170776202013,214,0 +170776202063,215,0 +170776202112,215,0 +170776202162,215,0 +170776202210,215,0 +170776202258,214,0 +170776202307,215,0 +170776202357,214,0 +170776202406,213,0 +170776202456,213,0 +170776202504,214,0 +170776202553,213,0 +170776202603,214,0 +170776202651,214,0 +170776202699,214,0 +170776202748,214,0 +170776202798,214,0 +170776202846,214,0 +170776202895,214,0 +170776202943,215,0 +170776202991,214,0 +170776203039,215,0 +170776203087,215,0 +170776203135,215,0 +170776203183,215,0 +170776203232,215,0 +170776203280,214,0 +170776203328,213,0 +170776203376,213,0 +170776203425,214,0 +170776203473,214,0 +170776203521,214,0 +170776203571,214,0 +170776203620,214,0 +170776203670,214,0 +170776203719,214,0 +170776203767,214,0 +170776203817,214,0 +170776203865,215,0 +170776203913,214,0 +170776203961,215,0 +170776204008,215,0 +170776204056,214,0 +170776204104,214,0 +170776204152,215,0 +170776204200,213,0 +170776204248,213,0 +170776204297,213,0 +170776204345,213,0 +170776204393,214,0 +170776204441,214,0 +170776204489,214,0 +170776204536,214,0 +170776204584,214,0 +170776204632,214,0 +170776204680,214,0 +170776204728,214,0 +170776204776,214,0 +170776204825,214,0 +170776204873,215,0 +170776204921,215,0 +170776204969,215,0 +170776205019,215,0 +170776205066,214,0 +170776205114,214,0 +170776205162,214,0 +170776205210,214,0 +170776205260,214,0 +170776205307,214,0 +170776205355,214,0 +170776205403,214,0 +170776205451,214,0 +170776205499,214,0 +170776205547,214,0 +170776205595,214,0 +170776205643,215,0 +170776205692,215,0 +170776205740,215,0 +170776205788,215,0 +170776205836,215,0 +170776205886,214,0 +170776205935,214,0 +170776205983,214,0 +170776206031,214,0 +170776206079,214,0 +170776206126,214,0 +170776206174,214,0 +170776206222,214,0 +170776206270,214,0 +170776206318,214,0 +170776206366,214,0 +170776206414,214,0 +170776206464,215,0 +170776206512,215,0 +170776206560,215,0 +170776206607,215,0 +170776206655,215,0 +170776206705,215,0 +170776206753,215,0 +170776206801,215,0 +170776206849,214,0 +170776206897,214,0 +170776206945,214,0 +170776206994,214,0 +170776207042,214,0 +170776207090,214,0 +170776207139,214,0 +170776207187,214,0 +170776207236,214,0 +170776207284,214,0 +170776207334,214,0 +170776207381,215,0 +170776207429,215,0 +170776207477,215,0 +170776207525,215,0 +170776207574,215,0 +170776207622,215,0 +170776207670,215,0 +170776207718,215,0 +170776207766,214,0 +170776207814,214,0 +170776207861,214,0 +170776207911,214,0 +170776207959,214,0 +170776208006,214,0 +170776208054,214,0 +170776208102,214,0 +170776208150,215,0 +170776208198,215,0 +170776208246,215,0 +170776208293,215,0 +170776208341,215,0 +170776208389,215,0 +170776208439,215,0 +170776208488,215,0 +170776208536,215,0 +170776208584,215,0 +170776208632,214,0 +170776208680,214,0 +170776208727,214,0 +170776208775,214,0 +170776208823,214,0 +170776208871,214,0 +170776208918,215,0 +170776208966,215,0 +170776209014,215,0 +170776209062,215,0 +170776209109,215,0 +170776209159,215,0 +170776209207,215,0 +170776209256,215,0 +170776209304,215,0 +170776209352,215,0 +170776209400,215,0 +170776209447,215,0 +170776209495,215,0 +170776209543,214,0 +170776209592,214,0 +170776209642,214,0 +170776209690,214,0 +170776209738,214,0 +170776209786,214,0 +170776209834,214,0 +170776209882,214,0 +170776209931,214,0 +170776209979,215,0 +170776210028,215,0 +170776210078,215,0 +170776210126,215,0 +170776210174,215,0 +170776210222,215,0 +170776210270,215,0 +170776210318,215,0 +170776210365,215,0 +170776210413,214,0 +170776210461,214,0 +170776210509,214,0 +170776210557,214,0 +170776210606,214,0 +170776210654,214,0 +170776210702,214,0 +170776210750,214,0 +170776210798,214,0 +170776210846,214,0 +170776210894,215,0 +170776210943,215,0 +170776210991,215,0 +170776211039,215,0 +170776211087,215,0 +170776211137,215,0 +170776211185,215,0 +170776211233,215,0 +170776211281,215,0 +170776211329,214,0 +170776211376,214,0 +170776211424,214,0 +170776211472,214,0 +170776211520,214,0 +170776211570,214,0 +170776211618,214,0 +170776211665,214,0 +170776211713,214,0 +170776211763,214,0 +170776211811,215,0 +170776211859,215,0 +170776211908,215,0 +170776211956,215,0 +170776212004,215,0 +170776212053,215,0 +170776212101,215,0 +170776212149,215,0 +170776212199,215,0 +170776212247,214,0 +170776212295,214,0 +170776212342,214,0 +170776212390,214,0 +170776212438,214,0 +170776212486,214,0 +170776212536,214,0 +170776212583,214,0 +170776212633,214,0 +170776212681,215,0 +170776212729,215,0 +170776212778,215,0 +170776212826,215,0 +170776212874,215,0 +170776212924,215,0 +170776212972,215,0 +170776213021,215,0 +170776213069,215,0 +170776213117,214,0 +170776213166,213,0 +170776213214,214,0 +170776213263,214,0 +170776213313,214,0 +170776213361,214,0 +170776213409,214,0 +170776213457,214,0 +170776213504,214,0 +170776213552,214,0 +170776213600,214,0 +170776213648,215,0 +170776213696,215,0 +170776213744,215,0 +170776213792,215,0 +170776213840,215,0 +170776213887,215,0 +170776213937,215,0 +170776213985,214,0 +170776214033,213,0 +170776214081,214,0 +170776214129,213,0 +170776214177,214,0 +170776214226,214,0 +170776214274,214,0 +170776214324,214,0 +170776214371,214,0 +170776214419,214,0 +170776214467,214,0 +170776214515,214,0 +170776214563,214,0 +170776214613,214,0 +170776214662,215,0 +170776214710,215,0 +170776214758,215,0 +170776214806,214,0 +170776214856,215,0 +170776214904,214,0 +170776214952,213,0 +170776215000,214,0 +170776215048,214,0 +170776215096,214,0 +170776215144,214,0 +170776215191,214,0 +170776215239,214,0 +170776215289,214,0 +170776215337,214,0 +170776215385,214,0 +170776215433,214,0 +170776215482,214,0 +170776215530,214,0 +170776215578,215,0 +170776215628,215,0 +170776215675,215,0 +170776215723,215,0 +170776215771,214,0 +170776215821,213,0 +170776215869,213,0 +170776215917,213,0 +170776215966,214,0 +170776216014,214,0 +170776216064,214,0 +170776216113,214,0 +170776216161,214,0 +170776216210,214,0 +170776216258,214,0 +170776216306,214,0 +170776216354,214,0 +170776216404,214,0 +170776216452,215,0 +170776216500,215,0 +170776216549,215,0 +170776216597,215,0 +170776216646,215,0 +170776216696,213,0 +170776216744,213,0 +170776216792,213,0 +170776216840,213,0 +170776216888,213,0 +170776216937,213,0 +170776216985,214,0 +170776217035,214,0 +170776217083,214,0 +170776217132,214,0 +170776217180,214,0 +170776217229,214,0 +170776217277,214,0 +170776217327,215,0 +170776217375,214,0 +170776217424,215,0 +170776217472,215,0 +170776217520,215,0 +170776217570,214,0 +170776217618,213,0 +170776217666,213,0 +170776217714,214,0 +170776217762,213,0 +170776217810,214,0 +170776217859,214,0 +170776217907,214,0 +170776217957,214,0 +170776218006,214,0 +170776218056,214,0 +170776218104,214,0 +170776218151,214,0 +170776218201,215,0 +170776218251,215,0 +170776218300,215,0 +170776218350,215,0 +170776218399,215,0 +170776218447,214,0 +170776218495,214,0 +170776218543,214,0 +170776218592,214,0 +170776218642,214,0 +170776218690,214,0 +170776218738,214,0 +170776218787,214,0 +170776218837,214,0 +170776218885,214,0 +170776218934,214,0 +170776218984,215,0 +170776219032,214,0 +170776219081,215,0 +170776219131,215,0 +170776219179,215,0 +170776219228,215,0 +170776219276,215,0 +170776219324,215,0 +170776219372,214,0 +170776219420,214,0 +170776219468,214,0 +170776219518,214,0 +170776219565,214,0 +170776219615,214,0 +170776219663,214,0 +170776219711,215,0 +170776219760,214,0 +170776219808,215,0 +170776219858,215,0 +170776219907,215,0 +170776219955,215,0 +170776220003,215,0 +170776220051,215,0 +170776220101,215,0 +170776220150,215,0 +170776220198,215,0 +170776220246,214,0 +170776220294,214,0 +170776220342,214,0 +170776220390,214,0 +170776220438,214,0 +170776220486,214,0 +170776220534,214,0 +170776220584,214,0 +170776220632,214,0 +170776220680,214,0 +170776220727,215,0 +170776220775,215,0 +170776220823,215,0 +170776220871,215,0 +170776220919,214,0 +170776220969,215,0 +170776221017,215,0 +170776221066,215,0 +170776221114,215,0 +170776221162,214,0 +170776221212,214,0 +170776221260,214,0 +170776221309,214,0 +170776221359,214,0 +170776221407,214,0 +170776221455,214,0 +170776221502,214,0 +170776221552,214,0 +170776221600,214,0 +170776221648,215,0 +170776221698,215,0 +170776221747,215,0 +170776221795,215,0 +170776221844,215,0 +170776221894,215,0 +170776221944,215,0 +170776221991,215,0 +170776222039,214,0 +170776222089,214,0 +170776222137,214,0 +170776222187,214,0 +170776222234,214,0 +170776222282,214,0 +170776222330,214,0 +170776222380,214,0 +170776222428,214,0 +170776222476,214,0 +170776222524,214,0 +170776222572,215,0 +170776222621,215,0 +170776222671,215,0 +170776222720,215,0 +170776222770,215,0 +170776222819,215,0 +170776222867,215,0 +170776222917,215,0 +170776222966,214,0 +170776223016,214,0 +170776223065,214,0 +170776223113,214,0 +170776223161,214,0 +170776223211,214,0 +170776223259,214,0 +170776223306,214,0 +170776223354,215,0 +170776223404,215,0 +170776223452,215,0 +170776223500,215,0 +170776223548,215,0 +170776223597,215,0 +170776223647,215,0 +170776223696,215,0 +170776223744,215,0 +170776223792,215,0 +170776223840,214,0 +170776223888,214,0 +170776223936,214,0 +170776223984,214,0 +170776224034,214,0 +170776224082,214,0 +170776224131,214,0 +170776224179,215,0 +170776224229,215,0 +170776224278,215,0 +170776224326,215,0 +170776224374,215,0 +170776224423,215,0 +170776224471,215,0 +170776224521,215,0 +170776224569,215,0 +170776224617,215,0 +170776224665,215,0 +170776224714,214,0 +170776224762,214,0 +170776224810,214,0 +170776224860,214,0 +170776224908,214,0 +170776224957,214,0 +170776225005,214,0 +170776225055,214,0 +170776225104,214,0 +170776225152,215,0 +170776225200,215,0 +170776225248,215,0 +170776225296,215,0 +170776225344,215,0 +170776225392,215,0 +170776225441,215,0 +170776225489,215,0 +170776225539,215,0 +170776225587,214,0 +170776225635,214,0 +170776225684,214,0 +170776225734,214,0 +170776225782,214,0 +170776225830,214,0 +170776225878,214,0 +170776225927,214,0 +170776225975,214,0 +170776226023,214,0 +170776226071,215,0 +170776226119,214,0 +170776226169,215,0 +170776226217,214,0 +170776226265,215,0 +170776226314,215,0 +170776226364,215,0 +170776226413,215,0 +170776226461,215,0 +170776226509,214,0 +170776226559,214,0 +170776226608,214,0 +170776226656,214,0 +170776226704,214,0 +170776226754,214,0 +170776226804,214,0 +170776226851,214,0 +170776226899,214,0 +170776226947,215,0 +170776226995,215,0 +170776227043,215,0 +170776227091,215,0 +170776227139,215,0 +170776227187,215,0 +170776227235,215,0 +170776227282,215,0 +170776227330,215,0 +170776227378,214,0 +170776227426,214,0 +170776227474,214,0 +170776227522,214,0 +170776227569,214,0 +170776227617,214,0 +170776227665,214,0 +170776227713,214,0 +170776227761,214,0 +170776227809,214,0 +170776227856,214,0 +170776227904,214,0 +170776227954,215,0 +170776228002,214,0 +170776228049,215,0 +170776228097,215,0 +170776228145,215,0 +170776228193,215,0 +170776228241,215,0 +170776228289,214,0 +170776228338,214,0 +170776228386,214,0 +170776228434,214,0 +170776228484,214,0 +170776228532,214,0 +170776228580,214,0 +170776228628,214,0 +170776228677,214,0 +170776228727,214,0 +170776228776,214,0 +170776228826,215,0 +170776228874,215,0 +170776228923,215,0 +170776228971,215,0 +170776229019,215,0 +170776229067,215,0 +170776229115,215,0 +170776229163,214,0 +170776229211,213,0 +170776229258,214,0 +170776229308,214,0 +170776229356,214,0 +170776229405,214,0 +170776229453,214,0 +170776229501,214,0 +170776229549,214,0 +170776229598,214,0 +170776229648,214,0 +170776229696,214,0 +170776229745,214,0 +170776229793,215,0 +170776229843,215,0 +170776229892,215,0 +170776229940,215,0 +170776229988,214,0 +170776230036,214,0 +170776230084,214,0 +170776230132,213,0 +170776230180,214,0 +170776230229,214,0 +170776230279,214,0 +170776230327,214,0 +170776230375,214,0 +170776230423,214,0 +170776230470,214,0 +170776230518,214,0 +170776230566,215,0 +170776230616,215,0 +170776230664,215,0 +170776230713,215,0 +170776230761,215,0 +170776230809,215,0 +170776230858,215,0 +170776230906,214,0 +170776230954,213,0 +170776231004,213,0 +170776231053,213,0 +170776231101,214,0 +170776231149,214,0 +170776231197,214,0 +170776231245,214,0 +170776231294,214,0 +170776231342,214,0 +170776231392,214,0 +170776231440,214,0 +170776231488,214,0 +170776231536,215,0 +170776231585,215,0 +170776231633,215,0 +170776231683,215,0 +170776231731,215,0 +170776231779,215,0 +170776231828,214,0 +170776231878,213,0 +170776231926,213,0 +170776231975,213,0 +170776232023,214,0 +170776232072,214,0 +170776232122,214,0 +170776232170,214,0 +170776232219,214,0 +170776232269,214,0 +170776232319,214,0 +170776232367,214,0 +170776232416,215,0 +170776232464,215,0 +170776232512,215,0 +170776232560,215,0 +170776232608,215,0 +170776232656,215,0 +170776232704,215,0 +170776232752,214,0 +170776232801,214,0 +170776232849,213,0 +170776232897,214,0 +170776232947,214,0 +170776232996,214,0 +170776233046,214,0 +170776233094,214,0 +170776233142,214,0 +170776233191,214,0 +170776233239,214,0 +170776233287,214,0 +170776233337,215,0 +170776233384,215,0 +170776233432,215,0 +170776233480,215,0 +170776233530,215,0 +170776233579,215,0 +170776233629,214,0 +170776233677,213,0 +170776233726,214,0 +170776233776,214,0 +170776233824,214,0 +170776233872,214,0 +170776233921,214,0 +170776233969,214,0 +170776234017,214,0 +170776234065,214,0 +170776234113,214,0 +170776234161,215,0 +170776234209,215,0 +170776234258,215,0 +170776234306,215,0 +170776234356,215,0 +170776234404,215,0 +170776234452,215,0 +170776234500,214,0 +170776234547,213,0 +170776234595,214,0 +170776234645,214,0 +170776234693,214,0 +170776234741,214,0 +170776234789,214,0 +170776234838,214,0 +170776234888,214,0 +170776234936,214,0 +170776234985,214,0 +170776235034,214,0 +170776235082,214,0 +170776235130,214,0 +170776235178,214,0 +170776235226,215,0 +170776235274,215,0 +170776235322,215,0 +170776235369,214,0 +170776235417,214,0 +170776235465,213,0 +170776235513,213,0 +170776235561,213,0 +170776235609,213,0 +170776235657,214,0 +170776235705,214,0 +170776235752,214,0 +170776235800,214,0 +170776235850,214,0 +170776235898,214,0 +170776235945,215,0 +170776235993,215,0 +170776236041,214,0 +170776236089,214,0 +170776236139,215,0 +170776236187,215,0 +170776236234,215,0 +170776236284,214,0 +170776236332,213,0 +170776236380,213,0 +170776236429,213,0 +170776236477,214,0 +170776236525,213,0 +170776236573,213,0 +170776236621,214,0 +170776236669,214,0 +170776236717,214,0 +170776236765,214,0 +170776236813,214,0 +170776236861,214,0 +170776236910,214,0 +170776236960,214,0 +170776237009,214,0 +170776237059,215,0 +170776237108,215,0 +170776237158,214,0 +170776237206,214,0 +170776237253,213,0 +170776237301,214,0 +170776237351,214,0 +170776237400,214,0 +170776237448,214,0 +170776237498,214,0 +170776237546,214,0 +170776237595,214,0 +170776237643,214,0 +170776237691,214,0 +170776237739,214,0 +170776237787,214,0 +170776237834,214,0 +170776237882,214,0 +170776237930,214,0 +170776237978,215,0 +170776238026,215,0 +170776238074,214,0 +170776238124,213,0 +170776238173,214,0 +170776238221,214,0 +170776238269,214,0 +170776238319,214,0 +170776238368,214,0 +170776238416,214,0 +170776238464,214,0 +170776238512,214,0 +170776238560,214,0 +170776238608,214,0 +170776238656,215,0 +170776238703,215,0 +170776238751,215,0 +170776238801,215,0 +170776238850,215,0 +170776238898,215,0 +170776238946,214,0 +170776238994,213,0 +170776239042,213,0 +170776239092,214,0 +170776239141,214,0 +170776239189,213,0 +170776239237,214,0 +170776239285,214,0 +170776239333,214,0 +170776239381,214,0 +170776239429,214,0 +170776239477,214,0 +170776239525,214,0 +170776239573,215,0 +170776239623,214,0 +170776239672,215,0 +170776239722,215,0 +170776239769,215,0 +170776239819,215,0 +170776239869,214,0 +170776239917,213,0 +170776239964,213,0 +170776240012,214,0 +170776240060,214,0 +170776240108,214,0 +170776240158,214,0 +170776240207,214,0 +170776240255,214,0 +170776240305,214,0 +170776240353,214,0 +170776240401,215,0 +170776240448,214,0 +170776240498,215,0 +170776240547,215,0 +170776240597,215,0 +170776240645,215,0 +170776240693,215,0 +170776240741,214,0 +170776240789,214,0 +170776240838,214,0 +170776240888,214,0 +170776240937,214,0 +170776240986,214,0 +170776241036,214,0 +170776241084,214,0 +170776241132,215,0 +170776241180,215,0 +170776241228,215,0 +170776241276,215,0 +170776241324,215,0 +170776241373,215,0 +170776241421,215,0 +170776241469,215,0 +170776241519,215,0 +170776241568,216,0 +170776241618,215,0 +170776241667,214,0 +170776241715,214,0 +170776241765,214,0 +170776241813,214,0 +170776241860,214,0 +170776241908,214,0 +170776241956,215,0 +170776242004,215,0 +170776242053,214,0 +170776242103,215,0 +170776242151,215,0 +170776242201,215,0 +170776242248,215,0 +170776242298,215,0 +170776242348,215,0 +170776242397,215,0 +170776242447,215,0 +170776242495,215,0 +170776242544,214,0 +170776242594,214,0 +170776242643,214,0 +170776242693,214,0 +170776242741,214,0 +170776242790,214,0 +170776242840,214,0 +170776242889,214,0 +170776242937,215,0 +170776242985,215,0 +170776243033,215,0 +170776243082,215,0 +170776243130,215,0 +170776243178,215,0 +170776243226,215,0 +170776243274,215,0 +170776243322,215,0 +170776243370,214,0 +170776243419,214,0 +170776243467,213,0 +170776243515,213,0 +170776243565,214,0 +170776243613,214,0 +170776243662,214,0 +170776243712,214,0 +170776243760,214,0 +170776243808,214,0 +170776243856,214,0 +170776243904,214,0 +170776243952,214,0 +170776244000,215,0 +170776244048,215,0 +170776244096,215,0 +170776244143,215,0 +170776244191,215,0 +170776244241,215,0 +170776244289,214,0 +170776244337,213,0 +170776244386,214,0 +170776244434,214,0 +170776244484,214,0 +170776244533,214,0 +170776244583,214,0 +170776244631,214,0 +170776244680,214,0 +170776244730,214,0 +170776244779,214,0 +170776244829,214,0 +170776244877,215,0 +170776244925,215,0 +170776244973,215,0 +170776245021,215,0 +170776245070,214,0 +170776245118,215,0 +170776245166,215,0 +170776245214,214,0 +170776245264,214,0 +170776245313,213,0 +170776245363,214,0 +170776245411,214,0 +170776245458,214,0 +170776245506,214,0 +170776245554,214,0 +170776245604,214,0 +170776245652,214,0 +170776245699,214,0 +170776245747,214,0 +170776245795,215,0 +170776245843,215,0 +170776245891,215,0 +170776245939,215,0 +170776245987,215,0 +170776246037,215,0 +170776246086,215,0 +170776246134,213,0 +170776246184,214,0 +170776246232,214,0 +170776246281,214,0 +170776246329,214,0 +170776246379,214,0 +170776246427,214,0 +170776246475,215,0 +170776246523,215,0 +170776246571,214,0 +170776246620,215,0 +170776246668,215,0 +170776246716,214,0 +170776246764,215,0 +170776246814,215,0 +170776246863,215,0 +170776246913,215,0 +170776246961,214,0 +170776247009,214,0 +170776247058,214,0 +170776247106,214,0 +170776247154,214,0 +170776247202,214,0 +170776247250,214,0 +170776247298,214,0 +170776247346,214,0 +170776247395,214,0 +170776247445,214,0 +170776247494,214,0 +170776247542,214,0 +170776247590,215,0 +170776247640,215,0 +170776247687,215,0 +170776247737,215,0 +170776247785,215,0 +170776247833,215,0 +170776247881,214,0 +170776247929,213,0 +170776247978,213,0 +170776248027,214,0 +170776248075,213,0 +170776248125,214,0 +170776248173,214,0 +170776248221,214,0 +170776248270,214,0 +170776248320,214,0 +170776248369,214,0 +170776248419,214,0 +170776248467,215,0 +170776248514,214,0 +170776248564,215,0 +170776248612,215,0 +170776248660,215,0 +170776248709,215,0 +170776248757,215,0 +170776248807,213,0 +170776248855,213,0 +170776248903,213,0 +170776248951,213,0 +170776249000,214,0 +170776249048,214,0 +170776249096,214,0 +170776249146,214,0 +170776249194,214,0 +170776249243,214,0 +170776249291,214,0 +170776249341,214,0 +170776249389,214,0 +170776249438,214,0 +170776249488,214,0 +170776249536,215,0 +170776249585,215,0 +170776249633,215,0 +170776249681,213,0 +170776249731,213,0 +170776249779,213,0 +170776249827,213,0 +170776249876,214,0 +170776249926,214,0 +170776249974,214,0 +170776250022,214,0 +170776250070,214,0 +170776250117,214,0 +170776250165,214,0 +170776250213,214,0 +170776250261,214,0 +170776250309,214,0 +170776250357,214,0 +170776250407,214,0 +170776250455,214,0 +170776250503,215,0 +170776250551,214,0 +170776250599,214,0 +170776250646,214,0 +170776250694,213,0 +170776250744,214,0 +170776250793,214,0 +170776250841,214,0 +170776250891,214,0 +170776250939,214,0 +170776250987,214,0 +170776251036,214,0 +170776251084,214,0 +170776251134,214,0 +170776251182,214,0 +170776251230,215,0 +170776251278,214,0 +170776251326,214,0 +170776251374,215,0 +170776251421,214,0 +170776251469,214,0 +170776251517,214,0 +170776251567,213,0 +170776251615,213,0 +170776251664,214,0 +170776251714,214,0 +170776251762,214,0 +170776251812,214,0 +170776251861,214,0 +170776251911,214,0 +170776251960,214,0 +170776252008,214,0 +170776252056,214,0 +170776252104,214,0 +170776252152,215,0 +170776252201,215,0 +170776252249,214,0 +170776252299,215,0 +170776252347,214,0 +170776252395,214,0 +170776252443,214,0 +170776252491,214,0 +170776252539,214,0 +170776252587,214,0 +170776252636,214,0 +170776252686,214,0 +170776252734,214,0 +170776252783,215,0 +170776252831,215,0 +170776252881,214,0 +170776252930,215,0 +170776252978,215,0 +170776253026,215,0 +170776253076,215,0 +170776253125,215,0 +170776253173,215,0 +170776253221,214,0 +170776253269,214,0 +170776253319,214,0 +170776253367,214,0 +170776253415,214,0 +170776253463,214,0 +170776253512,214,0 +170776253560,214,0 +170776253608,214,0 +170776253656,214,0 +170776253706,215,0 +170776253755,215,0 +170776253805,215,0 +170776253855,215,0 +170776253904,215,0 +170776253952,215,0 +170776254001,215,0 +170776254049,215,0 +170776254097,214,0 +170776254145,214,0 +170776254194,214,0 +170776254242,214,0 +170776254290,214,0 +170776254340,214,0 +170776254388,214,0 +170776254437,214,0 +170776254485,215,0 +170776254533,215,0 +170776254581,215,0 +170776254629,215,0 +170776254677,215,0 +170776254725,215,0 +170776254773,215,0 +170776254822,215,0 +170776254870,215,0 +170776254918,215,0 +170776254966,214,0 +170776255016,214,0 +170776255065,214,0 +170776255113,214,0 +170776255163,214,0 +170776255211,214,0 +170776255259,214,0 +170776255307,214,0 +170776255355,214,0 +170776255404,214,0 +170776255452,215,0 +170776255500,215,0 +170776255548,215,0 +170776255596,215,0 +170776255644,215,0 +170776255693,215,0 +170776255741,215,0 +170776255789,215,0 +170776255837,214,0 +170776255885,214,0 +170776255933,214,0 +170776255981,213,0 +170776256029,214,0 +170776256078,214,0 +170776256126,214,0 +170776256176,214,0 +170776256224,214,0 +170776256272,214,0 +170776256319,214,0 +170776256367,214,0 +170776256417,215,0 +170776256465,215,0 +170776256513,215,0 +170776256562,215,0 +170776256612,215,0 +170776256660,215,0 +170776256708,215,0 +170776256756,214,0 +170776256806,214,0 +170776256855,213,0 +170776256904,213,0 +170776256952,213,0 +170776257002,214,0 +170776257050,214,0 +170776257098,214,0 +170776257146,214,0 +170776257195,214,0 +170776257245,214,0 +170776257293,214,0 +170776257342,214,0 +170776257392,214,0 +170776257440,215,0 +170776257488,215,0 +170776257536,215,0 +170776257583,215,0 +170776257633,215,0 +170776257681,214,0 +170776257729,213,0 +170776257777,213,0 +170776257824,213,0 +170776257874,214,0 +170776257922,214,0 +170776257970,213,0 +170776258019,214,0 +170776258067,214,0 +170776258115,214,0 +170776258165,214,0 +170776258214,214,0 +170776258262,215,0 +170776258312,214,0 +170776258360,214,0 +170776258407,215,0 +170776258455,215,0 +170776258503,214,0 +170776258553,214,0 +170776258601,213,0 +170776258649,213,0 +170776258698,213,0 +170776258746,213,0 +170776258794,213,0 +170776258842,213,0 +170776258891,214,0 +170776258939,214,0 +170776258987,214,0 +170776259035,214,0 +170776259084,214,0 +170776259134,214,0 +170776259183,214,0 +170776259231,214,0 +170776259279,215,0 +170776259329,215,0 +170776259377,215,0 +170776259426,215,0 +170776259474,214,0 +170776259522,213,0 +170776259570,213,0 +170776259618,213,0 +170776259666,213,0 +170776259714,213,0 +170776259762,213,0 +170776259810,214,0 +170776259858,214,0 +170776259906,214,0 +170776259954,214,0 +170776260002,214,0 +170776260050,214,0 +170776260099,214,0 +170776260147,214,0 +170776260195,214,0 +170776260243,214,0 +170776260291,214,0 +170776260339,214,0 +170776260389,214,0 +170776260438,213,0 +170776260486,213,0 +170776260534,213,0 +170776260582,213,0 +170776260630,213,0 +170776260678,214,0 +170776260726,214,0 +170776260774,214,0 +170776260821,214,0 +170776260869,214,0 +170776260917,214,0 +170776260967,214,0 +170776261014,215,0 +170776261062,214,0 +170776261110,215,0 +170776261160,215,0 +170776261209,215,0 +170776261257,214,0 +170776261305,213,0 +170776261353,213,0 +170776261403,213,0 +170776261452,213,0 +170776261500,214,0 +170776261550,214,0 +170776261599,214,0 +170776261647,214,0 +170776261695,214,0 +170776261744,214,0 +170776261794,214,0 +170776261842,214,0 +170776261891,214,0 +170776261939,214,0 +170776261987,215,0 +170776262037,214,0 +170776262084,215,0 +170776262132,215,0 +170776262180,213,0 +170776262228,213,0 +170776262277,213,0 +170776262325,213,0 +170776262375,214,0 +170776262425,214,0 +170776262472,214,0 +170776262522,214,0 +170776262570,214,0 +170776262619,214,0 +170776262667,214,0 +170776262715,214,0 +170776262763,215,0 +170776262813,215,0 +170776262861,215,0 +170776262909,214,0 +170776262958,215,0 +170776263008,215,0 +170776263056,214,0 +170776263104,214,0 +170776263153,214,0 +170776263203,214,0 +170776263252,214,0 +170776263300,214,0 +170776263348,214,0 +170776263396,214,0 +170776263444,215,0 +170776263493,215,0 +170776263541,215,0 +170776263591,215,0 +170776263639,215,0 +170776263686,215,0 +170776263736,215,0 +170776263785,215,0 +170776263833,215,0 +170776263881,214,0 +170776263931,214,0 +170776263979,214,0 +170776264028,214,0 +170776264078,214,0 +170776264126,214,0 +170776264174,214,0 +170776264222,215,0 +170776264270,214,0 +170776264319,214,0 +170776264367,214,0 +170776264415,215,0 +170776264465,215,0 +170776264514,215,0 +170776264562,215,0 +170776264610,215,0 +170776264659,215,0 +170776264707,215,0 +170776264757,215,0 +170776264805,214,0 +170776264854,214,0 +170776264902,214,0 +170776264950,214,0 +170776265000,214,0 +170776265048,214,0 +170776265097,214,0 +170776265145,215,0 +170776265195,215,0 +170776265244,215,0 +170776265294,215,0 +170776265343,215,0 +170776265393,215,0 +170776265441,215,0 +170776265489,215,0 +170776265538,215,0 +170776265588,215,0 +170776265636,215,0 +170776265684,215,0 +170776265731,214,0 +170776265779,214,0 +170776265827,214,0 +170776265875,214,0 +170776265923,214,0 +170776265971,214,0 +170776266019,214,0 +170776266067,214,0 +170776266115,214,0 +170776266163,214,0 +170776266212,214,0 +170776266260,215,0 +170776266308,215,0 +170776266356,215,0 +170776266404,215,0 +170776266451,215,0 +170776266499,215,0 +170776266547,215,0 +170776266595,214,0 +170776266643,214,0 +170776266691,213,0 +170776266739,214,0 +170776266787,214,0 +170776266835,214,0 +170776266882,214,0 +170776266930,214,0 +170776266978,214,0 +170776267026,214,0 +170776267074,215,0 +170776267124,215,0 +170776267172,215,0 +170776267221,215,0 +170776267269,215,0 +170776267319,215,0 +170776267368,215,0 +170776267418,214,0 +170776267466,215,0 +170776267514,214,0 +170776267562,214,0 +170776267610,214,0 +170776267659,214,0 +170776267707,214,0 +170776267755,214,0 +170776267804,214,0 +170776267852,214,0 +170776267902,214,0 +170776267951,215,0 +170776268000,215,0 +170776268049,215,0 +170776268099,215,0 +170776268148,215,0 +170776268196,215,0 +170776268244,215,0 +170776268293,215,0 +170776268341,215,0 +170776268389,214,0 +170776268437,214,0 +170776268485,214,0 +170776268535,214,0 +170776268583,214,0 +170776268632,214,0 +170776268680,214,0 +170776268730,215,0 +170776268777,215,0 +170776268827,215,0 +170776268875,215,0 +170776268923,215,0 +170776268971,215,0 +170776269020,215,0 +170776269070,215,0 +170776269119,215,0 +170776269167,215,0 +170776269217,214,0 +170776269265,215,0 +170776269313,214,0 +170776269360,214,0 +170776269408,214,0 +170776269456,215,0 +170776269504,214,0 +170776269552,215,0 +170776269599,215,0 +170776269649,215,0 +170776269697,215,0 +170776269744,215,0 +170776269792,215,0 +170776269840,215,0 +170776269888,215,0 +170776269937,215,0 +170776269987,215,0 +170776270035,215,0 +170776270083,215,0 +170776270130,215,0 +170776270178,214,0 +170776270226,214,0 +170776270274,214,0 +170776270323,214,0 +170776270371,214,0 +170776270419,214,0 +170776270467,214,0 +170776270515,214,0 +170776270563,214,0 +170776270610,214,0 +170776270658,215,0 +170776270706,215,0 +170776270754,215,0 +170776270802,215,0 +170776270850,215,0 +170776270898,215,0 +170776270946,215,0 +170776270993,214,0 +170776271043,214,0 +170776271091,213,0 +170776271138,213,0 +170776271186,213,0 +170776271234,214,0 +170776271282,214,0 +170776271330,214,0 +170776271379,214,0 +170776271427,214,0 +170776271475,214,0 +170776271523,214,0 +170776271571,214,0 +170776271620,214,0 +170776271668,214,0 +170776271716,215,0 +170776271764,215,0 +170776271812,215,0 +170776271860,215,0 +170776271908,215,0 +170776271956,213,0 +170776272004,213,0 +170776272053,213,0 +170776272103,213,0 +170776272152,213,0 +170776272201,213,0 +170776272249,213,0 +170776272297,213,0 +170776272347,214,0 +170776272395,213,0 +170776272442,214,0 +170776272490,214,0 +170776272538,214,0 +170776272586,214,0 +170776272636,214,0 +170776272685,214,0 +170776272733,214,0 +170776272781,214,0 +170776272831,214,0 +170776272879,215,0 +170776272928,215,0 +170776272978,215,0 +170776273026,215,0 +170776273074,215,0 +170776273122,215,0 +170776273170,215,0 +170776273218,215,0 +170776273267,214,0 +170776273315,214,0 +170776273363,214,0 +170776273413,214,0 +170776273461,214,0 +170776273510,214,0 +170776273558,214,0 +170776273606,214,0 +170776273655,214,0 +170776273705,214,0 +170776273755,214,0 +170776273803,215,0 +170776273850,214,0 +170776273898,214,0 +170776273946,215,0 +170776273994,215,0 +170776274042,214,0 +170776274090,215,0 +170776274138,215,0 +170776274186,214,0 +170776274233,213,0 +170776274281,213,0 +170776274329,214,0 +170776274377,214,0 +170776274425,214,0 +170776274474,214,0 +170776274522,214,0 +170776274570,214,0 +170776274617,214,0 +170776274665,214,0 +170776274713,214,0 +170776274761,215,0 +170776274809,215,0 +170776274858,215,0 +170776274906,215,0 +170776274954,214,0 +170776275002,215,0 +170776275051,215,0 +170776275099,214,0 +170776275147,213,0 +170776275195,214,0 +170776275243,214,0 +170776275292,214,0 +170776275340,214,0 +170776275390,214,0 +170776275438,214,0 +170776275487,215,0 +170776275537,215,0 +170776275586,214,0 +170776275634,214,0 +170776275682,215,0 +170776275730,215,0 +170776275778,215,0 +170776275826,215,0 +170776275874,215,0 +170776275922,215,0 +170776275969,214,0 +170776276017,213,0 +170776276065,213,0 +170776276113,214,0 +170776276161,214,0 +170776276209,214,0 +170776276257,214,0 +170776276305,214,0 +170776276352,214,0 +170776276400,214,0 +170776276448,214,0 +170776276497,214,0 +170776276545,215,0 +170776276593,215,0 +170776276641,215,0 +170776276689,215,0 +170776276736,215,0 +170776276784,215,0 +170776276832,214,0 +170776276880,213,0 +170776276928,213,0 +170776276976,214,0 +170776277023,213,0 +170776277073,214,0 +170776277121,214,0 +170776277169,214,0 +170776277216,214,0 +170776277264,214,0 +170776277314,214,0 +170776277362,214,0 +170776277410,214,0 +170776277458,214,0 +170776277507,215,0 +170776277555,215,0 +170776277605,215,0 +170776277654,215,0 +170776277704,214,0 +170776277752,214,0 +170776277799,214,0 +170776277847,214,0 +170776277897,214,0 +170776277946,214,0 +170776277996,214,0 +170776278044,214,0 +170776278092,214,0 +170776278139,214,0 +170776278187,214,0 +170776278235,214,0 +170776278283,215,0 +170776278333,214,0 +170776278381,215,0 +170776278429,215,0 +170776278478,215,0 +170776278526,215,0 +170776278574,214,0 +170776278623,214,0 +170776278671,213,0 +170776278719,213,0 +170776278767,213,0 +170776278817,213,0 +170776278866,214,0 +170776278916,214,0 +170776278966,214,0 +170776279015,214,0 +170776279063,214,0 +170776279111,214,0 +170776279161,214,0 +170776279209,214,0 +170776279257,214,0 +170776279306,214,0 +170776279356,215,0 +170776279405,215,0 +170776279453,215,0 +170776279503,215,0 +170776279552,214,0 +170776279600,213,0 +170776279648,213,0 +170776279696,214,0 +170776279744,213,0 +170776279794,213,0 +170776279842,213,0 +170776279890,214,0 +170776279939,214,0 +170776279987,214,0 +170776280035,214,0 +170776280083,214,0 +170776280131,214,0 +170776280180,215,0 +170776280228,214,0 +170776280278,215,0 +170776280327,214,0 +170776280377,215,0 +170776280426,214,0 +170776280474,213,0 +170776280522,213,0 +170776280570,213,0 +170776280620,214,0 +170776280667,214,0 +170776280717,214,0 +170776280765,214,0 +170776280813,214,0 +170776280861,214,0 +170776280909,214,0 +170776280958,214,0 +170776281006,214,0 +170776281054,214,0 +170776281102,214,0 +170776281150,215,0 +170776281200,214,0 +170776281248,215,0 +170776281296,215,0 +170776281345,214,0 +170776281395,213,0 +170776281443,213,0 +170776281491,213,0 +170776281539,213,0 +170776281587,214,0 +170776281636,213,0 +170776281686,214,0 +170776281734,214,0 +170776281783,214,0 +170776281833,214,0 +170776281882,214,0 +170776281930,214,0 +170776281980,214,0 +170776282029,214,0 +170776282079,214,0 +170776282127,215,0 +170776282176,215,0 +170776282226,215,0 +170776282274,214,0 +170776282322,213,0 +170776282371,213,0 +170776282419,213,0 +170776282467,214,0 +170776282515,213,0 +170776282565,214,0 +170776282613,214,0 +170776282661,214,0 +170776282710,214,0 +170776282758,214,0 +170776282806,214,0 +170776282854,214,0 +170776282902,214,0 +170776282950,215,0 +170776282999,214,0 +170776283047,214,0 +170776283097,215,0 +170776283145,215,0 +170776283194,215,0 +170776283242,214,0 +170776283290,213,0 +170776283340,213,0 +170776283389,213,0 +170776283437,214,0 +170776283487,214,0 +170776283535,214,0 +170776283583,214,0 +170776283631,214,0 +170776283679,214,0 +170776283728,214,0 +170776283776,214,0 +170776283824,214,0 +170776283872,214,0 +170776283920,215,0 +170776283968,215,0 +170776284016,215,0 +170776284064,214,0 +170776284113,215,0 +170776284163,213,0 +170776284211,213,0 +170776284260,213,0 +170776284308,214,0 +170776284358,214,0 +170776284406,214,0 +170776284455,214,0 +170776284503,214,0 +170776284551,214,0 +170776284599,214,0 +170776284647,214,0 +170776284697,215,0 +170776284746,215,0 +170776284796,215,0 +170776284845,215,0 +170776284895,215,0 +170776284943,215,0 +170776284992,215,0 +170776285042,215,0 +170776285091,214,0 +170776285139,214,0 +170776285187,214,0 +170776285235,214,0 +170776285285,214,0 +170776285333,214,0 +170776285382,214,0 +170776285430,215,0 +170776285480,214,0 +170776285528,215,0 +170776285577,215,0 +170776285627,215,0 +170776285675,215,0 +170776285724,215,0 +170776285774,215,0 +170776285823,215,0 +170776285873,215,0 +170776285921,215,0 +170776285970,215,0 +170776286020,214,0 +170776286068,214,0 +170776286116,214,0 +170776286164,214,0 +170776286213,214,0 +170776286261,214,0 +170776286311,214,0 +170776286359,214,0 +170776286407,214,0 +170776286455,214,0 +170776286503,215,0 +170776286551,215,0 +170776286599,215,0 +170776286648,215,0 +170776286698,215,0 +170776286748,215,0 +170776286796,215,0 +170776286844,215,0 +170776286893,215,0 +170776286941,214,0 +170776286991,214,0 +170776287039,214,0 +170776287087,214,0 +170776287135,214,0 +170776287184,214,0 +170776287234,214,0 +170776287281,215,0 +170776287331,215,0 +170776287381,215,0 +170776287429,215,0 +170776287476,214,0 +170776287526,215,0 +170776287575,215,0 +170776287623,215,0 +170776287673,215,0 +170776287721,215,0 +170776287769,215,0 +170776287818,214,0 +170776287868,214,0 +170776287917,214,0 +170776287965,214,0 +170776288015,214,0 +170776288063,214,0 +170776288112,214,0 +170776288160,214,0 +170776288208,215,0 +170776288258,215,0 +170776288307,215,0 +170776288357,215,0 +170776288405,215,0 +170776288453,215,0 +170776288502,215,0 +170776288550,215,0 +170776288598,215,0 +170776288646,215,0 +170776288694,214,0 +170776288742,215,0 +170776288790,214,0 +170776288840,214,0 +170776288889,214,0 +170776288938,214,0 +170776288986,214,0 +170776289034,214,0 +170776289084,214,0 +170776289134,214,0 +170776289183,214,0 +170776289231,214,0 +170776289280,215,0 +170776289330,215,0 +170776289378,214,0 +170776289426,215,0 +170776289474,215,0 +170776289523,215,0 +170776289571,215,0 +170776289621,215,0 +170776289670,215,0 +170776289720,215,0 +170776289767,214,0 +170776289817,214,0 +170776289867,214,0 +170776289916,214,0 +170776289966,214,0 +170776290014,214,0 +170776290061,214,0 +170776290110,214,0 +170776290159,215,0 +170776290207,215,0 +170776290256,215,0 +170776290304,214,0 +170776290354,215,0 +170776290403,215,0 +170776290451,215,0 +170776290501,215,0 +170776290549,215,0 +170776290597,215,0 +170776290645,215,0 +170776290692,214,0 +170776290740,214,0 +170776290788,214,0 +170776290836,214,0 +170776290884,214,0 +170776290932,214,0 +170776290980,214,0 +170776291028,214,0 +170776291076,214,0 +170776291125,215,0 +170776291173,215,0 +170776291221,215,0 +170776291270,215,0 +170776291318,215,0 +170776291367,215,0 +170776291415,215,0 +170776291463,215,0 +170776291511,215,0 +170776291559,215,0 +170776291607,214,0 +170776291655,214,0 +170776291703,214,0 +170776291753,214,0 +170776291802,214,0 +170776291852,214,0 +170776291900,214,0 +170776291948,214,0 +170776291996,214,0 +170776292044,215,0 +170776292092,214,0 +170776292140,215,0 +170776292189,215,0 +170776292239,215,0 +170776292287,215,0 +170776292335,214,0 +170776292384,215,0 +170776292434,215,0 +170776292482,215,0 +170776292530,215,0 +170776292579,213,0 +170776292627,214,0 +170776292677,214,0 +170776292725,214,0 +170776292774,214,0 +170776292822,214,0 +170776292872,214,0 +170776292920,214,0 +170776292969,214,0 +170776293019,215,0 +170776293067,214,0 +170776293115,215,0 +170776293164,215,0 +170776293212,215,0 +170776293260,215,0 +170776293308,215,0 +170776293358,215,0 +170776293405,215,0 +170776293453,215,0 +170776293501,213,0 +170776293549,213,0 +170776293597,214,0 +170776293645,214,0 +170776293693,214,0 +170776293741,214,0 +170776293789,214,0 +170776293838,214,0 +170776293886,214,0 +170776293934,214,0 +170776293984,214,0 +170776294032,215,0 +170776294080,215,0 +170776294127,215,0 +170776294177,215,0 +170776294226,215,0 +170776294274,215,0 +170776294324,215,0 +170776294372,215,0 +170776294420,213,0 +170776294468,213,0 +170776294517,213,0 +170776294565,213,0 +170776294615,214,0 +170776294664,214,0 +170776294714,214,0 +170776294762,214,0 +170776294811,214,0 +170776294859,214,0 +170776294907,214,0 +170776294955,214,0 +170776295003,215,0 +170776295051,214,0 +170776295099,214,0 +170776295147,214,0 +170776295195,214,0 +170776295244,215,0 +170776295292,214,0 +170776295340,214,0 +170776295388,213,0 +170776295437,213,0 +170776295485,214,0 +170776295533,213,0 +170776295581,213,0 +170776295629,213,0 +170776295677,214,0 +170776295724,214,0 +170776295774,214,0 +170776295822,214,0 +170776295870,214,0 +170776295918,214,0 +170776295965,214,0 +170776296015,214,0 +170776296063,215,0 +170776296111,215,0 +170776296159,215,0 +170776296207,215,0 +170776296255,214,0 +170776296303,213,0 +170776296351,213,0 +170776296400,213,0 +170776296448,214,0 +170776296498,213,0 +170776296547,214,0 +170776296597,214,0 +170776296644,214,0 +170776296692,214,0 +170776296742,214,0 +170776296790,214,0 +170776296838,214,0 +170776296886,214,0 +170776296934,214,0 +170776296982,214,0 +170776297030,214,0 +170776297079,215,0 +170776297128,215,0 +170776297176,215,0 +170776297224,213,0 +170776297272,214,0 +170776297320,213,0 +170776297368,214,0 +170776297416,214,0 +170776297464,214,0 +170776297511,214,0 +170776297559,214,0 +170776297607,214,0 +170776297655,214,0 +170776297703,214,0 +170776297751,214,0 +170776297799,214,0 +170776297847,214,0 +170776297894,214,0 +170776297942,215,0 +170776297990,215,0 +170776298038,215,0 +170776298086,215,0 +170776298134,214,0 +170776298182,213,0 +170776298229,214,0 +170776298277,213,0 +170776298325,214,0 +170776298375,214,0 +170776298422,214,0 +170776298470,214,0 +170776298518,214,0 +170776298566,214,0 +170776298616,214,0 +170776298664,214,0 +170776298713,215,0 +170776298761,215,0 +170776298809,215,0 +170776298858,214,0 +170776298906,214,0 +170776298955,215,0 +170776299003,214,0 +170776299053,214,0 +170776299101,214,0 +170776299149,214,0 +170776299197,213,0 +170776299245,214,0 +170776299292,214,0 +170776299340,214,0 +170776299388,214,0 +170776299438,214,0 +170776299486,214,0 +170776299534,214,0 +170776299582,214,0 +170776299630,214,0 +170776299679,215,0 +170776299727,215,0 +170776299777,215,0 +170776299826,215,0 +170776299874,215,0 +170776299924,215,0 +170776299972,214,0 +170776300020,213,0 +170776300069,214,0 +170776300119,214,0 +170776300168,214,0 +170776300218,214,0 +170776300267,214,0 +170776300317,214,0 +170776300365,214,0 +170776300414,214,0 +170776300462,214,0 +170776300512,214,0 +170776300561,215,0 +170776300609,215,0 +170776300657,215,0 +170776300705,215,0 +170776300753,215,0 +170776300801,215,0 +170776300849,215,0 +170776300896,215,0 +170776300944,214,0 +170776300992,213,0 +170776301040,214,0 +170776301090,214,0 +170776301138,214,0 +170776301186,214,0 +170776301234,214,0 +170776301281,214,0 +170776301329,214,0 +170776301377,214,0 +170776301425,214,0 +170776301473,214,0 +170776301523,214,0 +170776301572,214,0 +170776301620,215,0 +170776301668,215,0 +170776301716,215,0 +170776301766,215,0 +170776301814,215,0 +170776301861,214,0 +170776301909,213,0 +170776301957,213,0 +170776302005,213,0 +170776302055,213,0 +170776302103,213,0 +170776302151,214,0 +170776302199,213,0 +170776302247,214,0 +170776302296,214,0 +170776302344,214,0 +170776302392,214,0 +170776302440,214,0 +170776302488,214,0 +170776302538,214,0 +170776302587,214,0 +170776302637,214,0 +170776302685,215,0 +170776302733,215,0 +170776302782,214,0 +170776302832,213,0 +170776302880,213,0 +170776302927,213,0 +170776302975,213,0 +170776303023,213,0 +170776303071,214,0 +170776303119,214,0 +170776303167,214,0 +170776303215,214,0 +170776303263,214,0 +170776303311,214,0 +170776303360,214,0 +170776303408,214,0 +170776303458,214,0 +170776303506,215,0 +170776303554,214,0 +170776303603,215,0 +170776303653,214,0 +170776303702,214,0 +170776303750,213,0 +170776303798,213,0 +170776303846,213,0 +170776303894,213,0 +170776303942,214,0 +170776303990,213,0 +170776304038,214,0 +170776304086,214,0 +170776304133,214,0 +170776304181,214,0 +170776304231,214,0 +170776304279,214,0 +170776304327,214,0 +170776304375,214,0 +170776304422,214,0 +170776304472,214,0 +170776304520,214,0 +170776304569,215,0 +170776304617,215,0 +170776304667,214,0 +170776304715,213,0 +170776304764,213,0 +170776304812,213,0 +170776304860,213,0 +170776304908,213,0 +170776304956,214,0 +170776305004,214,0 +170776305052,214,0 +170776305100,214,0 +170776305148,214,0 +170776305196,214,0 +170776305245,214,0 +170776305295,214,0 +170776305343,215,0 +170776305391,214,0 +170776305439,214,0 +170776305486,215,0 +170776305534,215,0 +170776305584,214,0 +170776305633,214,0 +170776305683,213,0 +170776305732,213,0 +170776305780,213,0 +170776305828,213,0 +170776305878,214,0 +170776305926,214,0 +170776305975,214,0 +170776306025,214,0 +170776306073,214,0 +170776306121,214,0 +170776306170,214,0 +170776306218,214,0 +170776306266,214,0 +170776306315,214,0 +170776306363,214,0 +170776306413,214,0 +170776306462,215,0 +170776306510,215,0 +170776306558,213,0 +170776306606,213,0 +170776306655,213,0 +170776306703,213,0 +170776306751,213,0 +170776306801,214,0 +170776306850,214,0 +170776306898,214,0 +170776306946,214,0 +170776306994,214,0 +170776307043,214,0 +170776307091,214,0 +170776307141,214,0 +170776307189,214,0 +170776307237,214,0 +170776307285,215,0 +170776307333,215,0 +170776307380,215,0 +170776307428,214,0 +170776307476,214,0 +170776307524,213,0 +170776307572,214,0 +170776307620,214,0 +170776307669,214,0 +170776307717,214,0 +170776307767,214,0 +170776307816,214,0 +170776307864,214,0 +170776307912,215,0 +170776307960,214,0 +170776308008,214,0 +170776308056,214,0 +170776308105,214,0 +170776308153,215,0 +170776308201,215,0 +170776308249,215,0 +170776308299,215,0 +170776308347,215,0 +170776308396,214,0 +170776308444,213,0 +170776308494,213,0 +170776308543,214,0 +170776308591,214,0 +170776308639,214,0 +170776308687,214,0 +170776308736,214,0 +170776308784,214,0 +170776308834,214,0 +170776308882,214,0 +170776308931,214,0 +170776308980,214,0 +170776309028,214,0 +170776309078,215,0 +170776309126,215,0 +170776309174,215,0 +170776309222,215,0 +170776309271,215,0 +170776309319,214,0 +170776309369,213,0 +170776309417,213,0 +170776309464,213,0 +170776309514,214,0 +170776309562,214,0 +170776309610,214,0 +170776309658,214,0 +170776309706,214,0 +170776309753,214,0 +170776309803,214,0 +170776309851,214,0 +170776309899,214,0 +170776309947,215,0 +170776309996,215,0 +170776310044,214,0 +170776310092,215,0 +170776310140,215,0 +170776310189,215,0 +170776310237,214,0 +170776310285,213,0 +170776310333,213,0 +170776310383,213,0 +170776310432,214,0 +170776310480,214,0 +170776310530,214,0 +170776310579,214,0 +170776310629,214,0 +170776310678,214,0 +170776310727,214,0 +170776310775,214,0 +170776310823,214,0 +170776310873,214,0 +170776310922,214,0 +170776310972,214,0 +170776311020,214,0 +170776311068,214,0 +170776311117,215,0 +170776311167,215,0 +170776311216,214,0 +170776311264,213,0 +170776311312,213,0 +170776311362,213,0 +170776311410,213,0 +170776311459,213,0 +170776311507,214,0 +170776311555,214,0 +170776311603,213,0 +170776311651,214,0 +170776311700,214,0 +170776311748,214,0 +170776311796,214,0 +170776311844,214,0 +170776311894,214,0 +170776311941,214,0 +170776311989,214,0 +170776312037,214,0 +170776312087,215,0 +170776312135,215,0 +170776312184,213,0 +170776312232,213,0 +170776312280,213,0 +170776312328,213,0 +170776312376,213,0 +170776312424,214,0 +170776312472,214,0 +170776312519,214,0 +170776312567,214,0 +170776312615,214,0 +170776312663,214,0 +170776312711,214,0 +170776312759,215,0 +170776312807,215,0 +170776312855,215,0 +170776312903,214,0 +170776312952,215,0 +170776313000,214,0 +170776313050,215,0 +170776313099,213,0 +170776313149,213,0 +170776313197,213,0 +170776313246,213,0 +170776313296,214,0 +170776313344,213,0 +170776313391,214,0 +170776313439,214,0 +170776313489,214,0 +170776313538,214,0 +170776313586,214,0 +170776313634,214,0 +170776313682,214,0 +170776313732,214,0 +170776313781,215,0 +170776313829,215,0 +170776313877,215,0 +170776313927,215,0 +170776313975,214,0 +170776314022,214,0 +170776314072,213,0 +170776314121,214,0 +170776314169,214,0 +170776314217,214,0 +170776314267,214,0 +170776314315,214,0 +170776314362,214,0 +170776314410,214,0 +170776314458,214,0 +170776314506,214,0 +170776314556,215,0 +170776314604,215,0 +170776314652,215,0 +170776314701,214,0 +170776314749,215,0 +170776314797,215,0 +170776314847,215,0 +170776314896,215,0 +170776314944,214,0 +170776314992,214,0 +170776315040,214,0 +170776315089,214,0 +170776315139,214,0 +170776315187,214,0 +170776315236,214,0 +170776315284,214,0 +170776315332,215,0 +170776315380,215,0 +170776315428,215,0 +170776315476,215,0 +170776315524,215,0 +170776315571,215,0 +170776315621,215,0 +170776315669,215,0 +170776315717,215,0 +170776315765,215,0 +170776315812,215,0 +170776315860,215,0 +170776315908,213,0 +170776315956,213,0 +170776316006,213,0 +170776316054,213,0 +170776316101,213,0 +170776316149,214,0 +170776316197,214,0 +170776316245,214,0 +170776316293,214,0 +170776316341,214,0 +170776316389,214,0 +170776316436,214,0 +170776316484,215,0 +170776316532,215,0 +170776316580,215,0 +170776316628,215,0 +170776316676,215,0 +170776316723,215,0 +170776316771,215,0 +170776316819,214,0 +170776316867,213,0 +170776316915,213,0 +170776316963,213,0 +170776317011,214,0 +170776317059,213,0 +170776317108,213,0 +170776317158,214,0 +170776317206,214,0 +170776317254,214,0 +170776317303,214,0 +170776317351,214,0 +170776317399,214,0 +170776317447,214,0 +170776317495,214,0 +170776317543,215,0 +170776317590,215,0 +170776317638,215,0 +170776317686,215,0 +170776317734,214,0 +170776317782,213,0 +170776317831,213,0 +170776317881,213,0 +170776317928,213,0 +170776317976,213,0 +170776318024,213,0 +170776318072,213,0 +170776318120,213,0 +170776318168,214,0 +170776318217,214,0 +170776318265,214,0 +170776318313,214,0 +170776318361,214,0 +170776318408,215,0 +170776318458,214,0 +170776318506,214,0 +170776318553,215,0 +170776318603,215,0 +170776318651,215,0 +170776318698,213,0 +170776318746,213,0 +170776318794,213,0 +170776318842,213,0 +170776318890,213,0 +170776318938,213,0 +170776318985,213,0 +170776319033,213,0 +170776319083,214,0 +170776319131,214,0 +170776319180,214,0 +170776319228,214,0 +170776319276,214,0 +170776319324,214,0 +170776319372,214,0 +170776319420,214,0 +170776319467,214,0 +170776319517,215,0 +170776319565,215,0 +170776319612,214,0 +170776319660,213,0 +170776319708,213,0 +170776319756,213,0 +170776319804,213,0 +170776319852,214,0 +170776319899,213,0 +170776319949,214,0 +170776319997,214,0 +170776320045,214,0 +170776320092,214,0 +170776320140,214,0 +170776320188,214,0 +170776320236,214,0 +170776320285,214,0 +170776320335,214,0 +170776320384,215,0 +170776320432,215,0 +170776320480,215,0 +170776320528,214,0 +170776320576,213,0 +170776320624,213,0 +170776320672,213,0 +170776320722,213,0 +170776320771,213,0 +170776320819,214,0 +170776320868,214,0 +170776320918,214,0 +170776320967,214,0 +170776321017,214,0 +170776321066,214,0 +170776321114,214,0 +170776321162,214,0 +170776321210,214,0 +170776321259,214,0 +170776321307,214,0 +170776321355,214,0 +170776321405,214,0 +170776321453,214,0 +170776321500,213,0 +170776321550,213,0 +170776321598,213,0 +170776321646,213,0 +170776321694,213,0 +170776321743,214,0 +170776321791,214,0 +170776321841,214,0 +170776321888,214,0 +170776321936,214,0 +170776321984,214,0 +170776322032,214,0 +170776322082,214,0 +170776322130,214,0 +170776322179,215,0 +170776322227,214,0 +170776322275,214,0 +170776322323,214,0 +170776322371,215,0 +170776322419,214,0 +170776322467,213,0 +170776322515,213,0 +170776322562,213,0 +170776322610,214,0 +170776322658,213,0 +170776322706,214,0 +170776322754,214,0 +170776322802,214,0 +170776322850,214,0 +170776322898,214,0 +170776322946,214,0 +170776322994,214,0 +170776323042,214,0 +170776323089,214,0 +170776323139,214,0 +170776323188,214,0 +170776323236,214,0 +170776323284,215,0 +170776323334,214,0 +170776323382,213,0 +170776323431,213,0 +170776323479,213,0 +170776323529,213,0 +170776323576,213,0 +170776323626,213,0 +170776323675,213,0 +170776323725,214,0 +170776323772,213,0 +170776323820,214,0 +170776323870,214,0 +170776323920,214,0 +170776323969,214,0 +170776324017,214,0 +170776324065,214,0 +170776324113,214,0 +170776324161,214,0 +170776324209,214,0 +170776324257,215,0 +170776324306,213,0 +170776324354,213,0 +170776324402,213,0 +170776324450,213,0 +170776324499,213,0 +170776324549,213,0 +170776324598,213,0 +170776324646,214,0 +170776324694,214,0 +170776324742,214,0 +170776324792,214,0 +170776324839,214,0 +170776324887,214,0 +170776324937,214,0 +170776324985,214,0 +170776325034,214,0 +170776325084,214,0 +170776325133,214,0 +170776325183,215,0 +170776325231,214,0 +170776325279,213,0 +170776325327,213,0 +170776325375,213,0 +170776325423,213,0 +170776325470,213,0 +170776325518,213,0 +170776325568,213,0 +170776325617,214,0 +170776325665,213,0 +170776325715,214,0 +170776325763,214,0 +170776325811,214,0 +170776325859,214,0 +170776325906,214,0 +170776325954,214,0 +170776326004,214,0 +170776326052,215,0 +170776326100,215,0 +170776326149,215,0 +170776326197,213,0 +170776326246,213,0 +170776326294,213,0 +170776326342,213,0 +170776326392,213,0 +170776326440,214,0 +170776326487,214,0 +170776326535,214,0 +170776326583,214,0 +170776326631,214,0 +170776326679,214,0 +170776326727,214,0 +170776326775,214,0 +170776326823,214,0 +170776326872,214,0 +170776326920,214,0 +170776326968,215,0 +170776327018,214,0 +170776327067,214,0 +170776327117,213,0 +170776327166,213,0 +170776327216,213,0 +170776327264,213,0 +170776327313,213,0 +170776327363,214,0 +170776327411,214,0 +170776327460,214,0 +170776327508,214,0 +170776327556,214,0 +170776327604,214,0 +170776327653,214,0 +170776327703,214,0 +170776327751,214,0 +170776327800,214,0 +170776327850,215,0 +170776327897,215,0 +170776327947,214,0 +170776327995,214,0 +170776328043,214,0 +170776328092,213,0 +170776328142,214,0 +170776328190,214,0 +170776328239,214,0 +170776328289,214,0 +170776328338,214,0 +170776328388,214,0 +170776328435,214,0 +170776328483,214,0 +170776328531,214,0 +170776328581,214,0 +170776328630,214,0 +170776328678,215,0 +170776328726,215,0 +170776328774,215,0 +170776328822,215,0 +170776328869,215,0 +170776328919,215,0 +170776328967,214,0 +170776329016,214,0 +170776329066,214,0 +170776329115,214,0 +170776329165,214,0 +170776329213,214,0 +170776329260,214,0 +170776329310,214,0 +170776329359,214,0 +170776329407,215,0 +170776329455,215,0 +170776329503,215,0 +170776329551,215,0 +170776329599,215,0 +170776329646,215,0 +170776329694,215,0 +170776329744,215,0 +170776329792,215,0 +170776329841,215,0 +170776329889,214,0 +170776329937,214,0 +170776329985,214,0 +170776330033,214,0 +170776330081,214,0 +170776330128,214,0 +170776330178,214,0 +170776330227,214,0 +170776330275,215,0 +170776330323,215,0 +170776330371,215,0 +170776330420,215,0 +170776330468,215,0 +170776330516,215,0 +170776330566,215,0 +170776330614,215,0 +170776330661,215,0 +170776330709,215,0 +170776330757,215,0 +170776330805,215,0 +170776330853,214,0 +170776330902,213,0 +170776330950,214,0 +170776330998,214,0 +170776331048,214,0 +170776331097,214,0 +170776331145,214,0 +170776331193,214,0 +170776331241,214,0 +170776331289,214,0 +170776331337,215,0 +170776331386,215,0 +170776331434,215,0 +170776331482,215,0 +170776331530,215,0 +170776331580,215,0 +170776331629,215,0 +170776331678,215,0 +170776331728,215,0 +170776331776,214,0 +170776331825,213,0 +170776331873,213,0 +170776331921,214,0 +170776331970,214,0 +170776332018,214,0 +170776332066,213,0 +170776332114,214,0 +170776332162,214,0 +170776332210,214,0 +170776332259,214,0 +170776332307,214,0 +170776332355,214,0 +170776332403,214,0 +170776332453,215,0 +170776332501,215,0 +170776332549,215,0 +170776332597,215,0 +170776332644,215,0 +170776332694,215,0 +170776332742,214,0 +170776332790,213,0 +170776332839,213,0 +170776332887,213,0 +170776332935,213,0 +170776332983,214,0 +170776333031,214,0 +170776333080,214,0 +170776333128,214,0 +170776333176,214,0 +170776333226,214,0 +170776333274,214,0 +170776333322,214,0 +170776333371,215,0 +170776333419,214,0 +170776333469,215,0 +170776333516,215,0 +170776333566,214,0 +170776333614,214,0 +170776333662,214,0 +170776333710,213,0 +170776333758,213,0 +170776333807,213,0 +170776333857,213,0 +170776333905,214,0 +170776333952,214,0 +170776334002,214,0 +170776334050,214,0 +170776334098,214,0 +170776334147,214,0 +170776334195,214,0 +170776334243,214,0 +170776334293,214,0 +170776334341,214,0 +170776334389,214,0 +170776334436,214,0 +170776334486,214,0 +170776334534,215,0 +170776334583,214,0 +170776334633,213,0 +170776334682,213,0 +170776334730,213,0 +170776334780,213,0 +170776334828,213,0 +170776334877,213,0 +170776334925,214,0 +170776334975,213,0 +170776335023,214,0 +170776335070,214,0 +170776335120,214,0 +170776335168,214,0 +170776335216,214,0 +170776335265,214,0 +170776335313,214,0 +170776335361,215,0 +170776335409,215,0 +170776335457,215,0 +170776335505,215,0 +170776335554,213,0 +170776335602,213,0 +170776335652,213,0 +170776335699,213,0 +170776335749,214,0 +170776335798,213,0 +170776335846,214,0 +170776335896,214,0 +170776335944,214,0 +170776335991,214,0 +170776336039,214,0 +170776336087,214,0 +170776336135,214,0 +170776336183,214,0 +170776336231,214,0 +170776336280,214,0 +170776336328,214,0 +170776336376,215,0 +170776336424,214,0 +170776336473,213,0 +170776336523,213,0 +170776336570,213,0 +170776336618,213,0 +170776336668,213,0 +170776336716,213,0 +170776336765,213,0 +170776336813,213,0 +170776336862,214,0 +170776336910,214,0 +170776336960,214,0 +170776337009,214,0 +170776337057,214,0 +170776337104,215,0 +170776337152,214,0 +170776337200,215,0 +170776337248,215,0 +170776337296,214,0 +170776337344,214,0 +170776337392,213,0 +170776337440,213,0 +170776337487,213,0 +170776337535,213,0 +170776337585,214,0 +170776337633,214,0 +170776337681,214,0 +170776337730,214,0 +170776337780,214,0 +170776337827,214,0 +170776337875,215,0 +170776337923,214,0 +170776337971,214,0 +170776338019,215,0 +170776338067,215,0 +170776338114,215,0 +170776338164,215,0 +170776338211,215,0 +170776338261,215,0 +170776338309,214,0 +170776338357,213,0 +170776338404,213,0 +170776338452,213,0 +170776338500,213,0 +170776338548,213,0 +170776338596,214,0 +170776338644,214,0 +170776338692,214,0 +170776338740,214,0 +170776338788,214,0 +170776338837,214,0 +170776338885,214,0 +170776338933,214,0 +170776338981,214,0 +170776339029,214,0 +170776339078,215,0 +170776339126,214,0 +170776339174,215,0 +170776339222,215,0 +170776339270,214,0 +170776339318,213,0 +170776339366,213,0 +170776339415,213,0 +170776339465,214,0 +170776339513,213,0 +170776339562,213,0 +170776339610,214,0 +170776339658,214,0 +170776339706,214,0 +170776339754,214,0 +170776339803,214,0 +170776339851,214,0 +170776339899,214,0 +170776339947,214,0 +170776339995,214,0 +170776340042,214,0 +170776340090,214,0 +170776340138,215,0 +170776340188,214,0 +170776340236,213,0 +170776340283,213,0 +170776340333,213,0 +170776340381,214,0 +170776340429,214,0 +170776340477,214,0 +170776340526,214,0 +170776340574,214,0 +170776340622,214,0 +170776340671,214,0 +170776340719,214,0 +170776340767,214,0 +170776340815,214,0 +170776340863,214,0 +170776340911,215,0 +170776340959,214,0 +170776341008,215,0 +170776341056,215,0 +170776341104,214,0 +170776341152,213,0 +170776341200,213,0 +170776341250,213,0 +170776341297,213,0 +170776341345,213,0 +170776341393,213,0 +170776341443,214,0 +170776341491,214,0 +170776341539,214,0 +170776341587,214,0 +170776341635,214,0 +170776341682,214,0 +170776341730,214,0 +170776341778,214,0 +170776341828,214,0 +170776341876,214,0 +170776341924,215,0 +170776341973,215,0 +170776342023,215,0 +170776342071,213,0 +170776342119,213,0 +170776342168,213,0 +170776342216,213,0 +170776342264,213,0 +170776342312,214,0 +170776342360,214,0 +170776342407,214,0 +170776342457,214,0 +170776342505,214,0 +170776342553,214,0 +170776342601,214,0 +170776342650,214,0 +170776342700,214,0 +170776342747,214,0 +170776342797,215,0 +170776342845,215,0 +170776342893,214,0 +170776342941,215,0 +170776342988,214,0 +170776343036,214,0 +170776343084,213,0 +170776343132,213,0 +170776343180,214,0 +170776343228,214,0 +170776343276,214,0 +170776343323,214,0 +170776343371,214,0 +170776343419,214,0 +170776343467,214,0 +170776343515,214,0 +170776343563,215,0 +170776343611,215,0 +170776343659,214,0 +170776343707,215,0 +170776343755,215,0 +170776343805,215,0 +170776343852,214,0 +170776343900,215,0 +170776343948,214,0 +170776343996,213,0 +170776344044,213,0 +170776344092,214,0 +170776344140,214,0 +170776344189,214,0 +170776344237,214,0 +170776344285,214,0 +170776344334,214,0 +170776344384,214,0 +170776344432,214,0 +170776344480,214,0 +170776344528,214,0 +170776344576,215,0 +170776344625,215,0 +170776344675,215,0 +170776344723,215,0 +170776344772,215,0 +170776344820,214,0 +170776344870,214,0 +170776344917,213,0 +170776344965,213,0 +170776345013,214,0 +170776345061,214,0 +170776345109,214,0 +170776345157,214,0 +170776345205,214,0 +170776345253,214,0 +170776345301,214,0 +170776345349,214,0 +170776345397,214,0 +170776345446,214,0 +170776345496,215,0 +170776345544,215,0 +170776345592,215,0 +170776345640,215,0 +170776345688,215,0 +170776345736,215,0 +170776345783,214,0 +170776345831,214,0 +170776345881,213,0 +170776345929,213,0 +170776345977,213,0 +170776346026,214,0 +170776346076,214,0 +170776346124,214,0 +170776346172,214,0 +170776346221,214,0 +170776346269,214,0 +170776346319,214,0 +170776346368,214,0 +170776346417,214,0 +170776346465,214,0 +170776346513,214,0 +170776346561,214,0 +170776346609,215,0 +170776346657,215,0 +170776346705,215,0 +170776346753,214,0 +170776346802,213,0 +170776346850,214,0 +170776346900,213,0 +170776346947,213,0 +170776346995,213,0 +170776347043,214,0 +170776347093,214,0 +170776347142,214,0 +170776347190,214,0 +170776347238,214,0 +170776347286,214,0 +170776347334,214,0 +170776347382,214,0 +170776347431,214,0 +170776347479,214,0 +170776347527,214,0 +170776347575,214,0 +170776347623,214,0 +170776347671,214,0 +170776347721,213,0 +170776347769,213,0 +170776347816,213,0 +170776347866,213,0 +170776347914,213,0 +170776347963,214,0 +170776348011,214,0 +170776348061,214,0 +170776348109,214,0 +170776348157,214,0 +170776348205,214,0 +170776348253,214,0 +170776348301,214,0 +170776348350,214,0 +170776348400,214,0 +170776348448,215,0 +170776348495,214,0 +170776348543,214,0 +170776348591,214,0 +170776348639,213,0 +170776348689,213,0 +170776348737,213,0 +170776348785,213,0 +170776348833,213,0 +170776348881,213,0 +170776348930,213,0 +170776348978,213,0 +170776349028,213,0 +170776349075,213,0 +170776349123,214,0 +170776349173,214,0 +170776349223,214,0 +170776349270,214,0 +170776349318,214,0 +170776349366,214,0 +170776349416,214,0 +170776349465,214,0 +170776349513,214,0 +170776349561,214,0 +170776349609,213,0 +170776349657,213,0 +170776349704,213,0 +170776349754,213,0 +170776349803,213,0 +170776349853,213,0 +170776349902,213,0 +170776349952,213,0 +170776350002,214,0 +170776350049,214,0 +170776350097,214,0 +170776350145,214,0 +170776350193,214,0 +170776350243,214,0 +170776350291,214,0 +170776350340,214,0 +170776350390,214,0 +170776350437,214,0 +170776350485,214,0 +170776350533,213,0 +170776350581,213,0 +170776350629,213,0 +170776350678,213,0 +170776350728,214,0 +170776350776,213,0 +170776350824,214,0 +170776350872,214,0 +170776350919,214,0 +170776350969,214,0 +170776351017,214,0 +170776351065,214,0 +170776351113,214,0 +170776351161,214,0 +170776351210,214,0 +170776351258,214,0 +170776351308,215,0 +170776351355,215,0 +170776351403,215,0 +170776351451,214,0 +170776351499,213,0 +170776351547,213,0 +170776351595,214,0 +170776351643,214,0 +170776351691,214,0 +170776351739,214,0 +170776351787,214,0 +170776351835,214,0 +170776351883,214,0 +170776351931,214,0 +170776351980,215,0 +170776352028,214,0 +170776352078,215,0 +170776352126,215,0 +170776352174,215,0 +170776352223,215,0 +170776352271,215,0 +170776352319,215,0 +170776352369,214,0 +170776352418,213,0 +170776352466,214,0 +170776352514,214,0 +170776352563,213,0 +170776352611,214,0 +170776352659,214,0 +170776352709,214,0 +170776352758,214,0 +170776352808,214,0 +170776352856,215,0 +170776352903,214,0 +170776352951,215,0 +170776352999,215,0 +170776353047,215,0 +170776353096,215,0 +170776353144,215,0 +170776353192,215,0 +170776353240,214,0 +170776353290,214,0 +170776353339,213,0 +170776353387,213,0 +170776353435,213,0 +170776353484,214,0 +170776353532,213,0 +170776353582,214,0 +170776353631,214,0 +170776353679,214,0 +170776353727,214,0 +170776353776,214,0 +170776353824,214,0 +170776353872,214,0 +170776353922,214,0 +170776353971,214,0 +170776354019,215,0 +170776354067,215,0 +170776354115,215,0 +170776354163,214,0 +170776354211,215,0 +170776354259,213,0 +170776354308,213,0 +170776354356,213,0 +170776354405,213,0 +170776354453,213,0 +170776354501,213,0 +170776354549,214,0 +170776354599,214,0 +170776354648,214,0 +170776354696,214,0 +170776354744,214,0 +170776354793,214,0 +170776354843,214,0 +170776354892,214,0 +170776354940,214,0 +170776354988,215,0 +170776355038,214,0 +170776355085,214,0 +170776355133,215,0 +170776355183,214,0 +170776355232,213,0 +170776355282,213,0 +170776355331,213,0 +170776355381,214,0 +170776355430,214,0 +170776355478,214,0 +170776355526,214,0 +170776355576,214,0 +170776355623,214,0 +170776355673,214,0 +170776355722,214,0 +170776355770,214,0 +170776355820,214,0 +170776355868,214,0 +170776355916,214,0 +170776355965,214,0 +170776356013,214,0 +170776356062,215,0 +170776356110,214,0 +170776356158,213,0 +170776356208,213,0 +170776356255,213,0 +170776356305,213,0 +170776356354,213,0 +170776356404,213,0 +170776356452,214,0 +170776356500,214,0 +170776356547,214,0 +170776356595,214,0 +170776356643,214,0 +170776356691,214,0 +170776356739,214,0 +170776356787,214,0 +170776356834,214,0 +170776356882,215,0 +170776356930,215,0 +170776356978,215,0 +170776357026,215,0 +170776357074,213,0 +170776357121,213,0 +170776357169,213,0 +170776357217,213,0 +170776357265,214,0 +170776357313,214,0 +170776357360,213,0 +170776357408,214,0 +170776357456,214,0 +170776357504,214,0 +170776357552,214,0 +170776357600,214,0 +170776357647,214,0 +170776357695,214,0 +170776357743,214,0 +170776357792,214,0 +170776357840,215,0 +170776357888,215,0 +170776357936,215,0 +170776357984,214,0 +170776358032,214,0 +170776358079,214,0 +170776358127,214,0 +170776358177,214,0 +170776358225,214,0 +170776358274,214,0 +170776358324,214,0 +170776358373,214,0 +170776358421,215,0 +170776358469,215,0 +170776358518,215,0 +170776358568,215,0 +170776358616,215,0 +170776358663,215,0 +170776358711,215,0 +170776358759,215,0 +170776358807,215,0 +170776358855,215,0 +170776358905,214,0 +170776358953,214,0 +170776359001,214,0 +170776359048,214,0 +170776359096,214,0 +170776359144,214,0 +170776359192,214,0 +170776359240,214,0 +170776359288,214,0 +170776359336,215,0 +170776359385,215,0 +170776359433,215,0 +170776359481,215,0 +170776359529,215,0 +170776359578,215,0 +170776359626,215,0 +170776359676,215,0 +170776359725,215,0 +170776359773,215,0 +170776359821,214,0 +170776359869,214,0 +170776359917,214,0 +170776359965,214,0 +170776360014,214,0 +170776360062,214,0 +170776360110,215,0 +170776360159,215,0 +170776360209,215,0 +170776360257,215,0 +170776360305,215,0 +170776360353,215,0 +170776360402,215,0 +170776360451,215,0 +170776360499,215,0 +170776360547,215,0 +170776360595,215,0 +170776360644,215,0 +170776360694,215,0 +170776360742,215,0 +170776360791,214,0 +170776360839,214,0 +170776360887,214,0 +170776360937,214,0 +170776360986,214,0 +170776361036,214,0 +170776361083,215,0 +170776361133,215,0 +170776361181,215,0 +170776361229,215,0 +170776361278,215,0 +170776361326,215,0 +170776361374,215,0 +170776361422,215,0 +170776361470,215,0 +170776361519,215,0 +170776361568,215,0 +170776361616,215,0 +170776361664,215,0 +170776361712,215,0 +170776361762,214,0 +170776361809,214,0 +170776361857,214,0 +170776361905,214,0 +170776361953,214,0 +170776362001,214,0 +170776362049,214,0 +170776362098,214,0 +170776362146,215,0 +170776362194,215,0 +170776362242,215,0 +170776362289,215,0 +170776362337,215,0 +170776362387,215,0 +170776362436,215,0 +170776362484,215,0 +170776362532,215,0 +170776362580,215,0 +170776362628,215,0 +170776362675,214,0 +170776362725,213,0 +170776362773,213,0 +170776362822,214,0 +170776362872,214,0 +170776362921,214,0 +170776362971,214,0 +170776363019,214,0 +170776363066,214,0 +170776363116,214,0 +170776363165,214,0 +170776363213,214,0 +170776363261,214,0 +170776363311,214,0 +170776363359,214,0 +170776363408,215,0 +170776363458,215,0 +170776363507,214,0 +170776363555,214,0 +170776363605,214,0 +170776363652,213,0 +170776363702,213,0 +170776363750,213,0 +170776363799,213,0 +170776363847,213,0 +170776363897,213,0 +170776363945,213,0 +170776363994,213,0 +170776364042,214,0 +170776364090,214,0 +170776364138,214,0 +170776364187,214,0 +170776364235,214,0 +170776364283,214,0 +170776364331,214,0 +170776364381,214,0 +170776364429,214,0 +170776364478,215,0 +170776364526,215,0 +170776364574,213,0 +170776364622,213,0 +170776364670,213,0 +170776364718,213,0 +170776364766,214,0 +170776364814,214,0 +170776364863,214,0 +170776364911,214,0 +170776364960,214,0 +170776365008,214,0 +170776365056,214,0 +170776365104,214,0 +170776365152,214,0 +170776365202,215,0 +170776365249,215,0 +170776365297,214,0 +170776365345,215,0 +170776365395,215,0 +170776365443,215,0 +170776365492,214,0 +170776365542,213,0 +170776365590,213,0 +170776365638,214,0 +170776365687,214,0 +170776365735,213,0 +170776365783,214,0 +170776365831,214,0 +170776365880,214,0 +170776365930,214,0 +170776365978,214,0 +170776366027,214,0 +170776366075,214,0 +170776366124,215,0 +170776366174,215,0 +170776366222,215,0 +170776366271,215,0 +170776366319,215,0 +170776366367,215,0 +170776366417,214,0 +170776366465,213,0 +170776366512,213,0 +170776366560,213,0 +170776366608,213,0 +170776366658,214,0 +170776366705,214,0 +170776366753,214,0 +170776366801,214,0 +170776366849,214,0 +170776366899,214,0 +170776366948,214,0 +170776366996,214,0 +170776367044,214,0 +170776367092,215,0 +170776367140,215,0 +170776367189,215,0 +170776367237,215,0 +170776367287,215,0 +170776367335,215,0 +170776367384,213,0 +170776367432,213,0 +170776367482,213,0 +170776367529,213,0 +170776367579,214,0 +170776367627,213,0 +170776367675,214,0 +170776367723,214,0 +170776367771,214,0 +170776367818,214,0 +170776367866,214,0 +170776367914,214,0 +170776367962,214,0 +170776368011,215,0 +170776368061,214,0 +170776368109,215,0 +170776368156,215,0 +170776368204,215,0 +170776368252,215,0 +170776368300,213,0 +170776368349,213,0 +170776368397,213,0 +170776368445,213,0 +170776368493,213,0 +170776368541,213,0 +170776368589,213,0 +170776368636,214,0 +170776368684,214,0 +170776368732,214,0 +170776368780,214,0 +170776368828,214,0 +170776368876,214,0 +170776368923,214,0 +170776368971,215,0 +170776369019,214,0 +170776369067,214,0 +170776369115,215,0 +170776369163,215,0 +170776369210,215,0 +170776369258,213,0 +170776369306,213,0 +170776369354,213,0 +170776369402,213,0 +170776369450,213,0 +170776369498,213,0 +170776369546,213,0 +170776369594,213,0 +170776369643,214,0 +170776369693,214,0 +170776369740,214,0 +170776369788,214,0 +170776369838,214,0 +170776369887,214,0 +170776369937,214,0 +170776369985,214,0 +170776370033,214,0 +170776370082,215,0 +170776370130,215,0 +170776370179,214,0 +170776370227,213,0 +170776370277,213,0 +170776370325,213,0 +170776370372,213,0 +170776370422,213,0 +170776370470,213,0 +170776370518,213,0 +170776370567,214,0 +170776370615,214,0 +170776370664,214,0 +170776370712,214,0 +170776370760,214,0 +170776370810,214,0 +170776370859,214,0 +170776370907,215,0 +170776370956,215,0 +170776371004,215,0 +170776371054,215,0 +170776371102,214,0 +170776371150,213,0 +170776371199,214,0 +170776371247,213,0 +170776371295,213,0 +170776371343,213,0 +170776371392,214,0 +170776371442,214,0 +170776371490,214,0 +170776371537,214,0 +170776371587,214,0 +170776371635,214,0 +170776371684,214,0 +170776371734,214,0 +170776371783,215,0 +170776371831,215,0 +170776371879,215,0 +170776371927,215,0 +170776371977,215,0 +170776372024,214,0 +170776372072,213,0 +170776372122,213,0 +170776372172,213,0 +170776372220,213,0 +170776372267,214,0 +170776372315,214,0 +170776372363,214,0 +170776372411,213,0 +170776372459,214,0 +170776372507,214,0 +170776372557,214,0 +170776372605,214,0 +170776372652,214,0 +170776372702,214,0 +170776372751,215,0 +170776372799,215,0 +170776372847,215,0 +170776372895,214,0 +170776372945,214,0 +170776372994,214,0 +170776373042,213,0 +170776373092,213,0 +170776373141,213,0 +170776373189,213,0 +170776373239,214,0 +170776373286,214,0 +170776373336,214,0 +170776373384,214,0 +170776373433,214,0 +170776373481,214,0 +170776373529,214,0 +170776373577,214,0 +170776373625,215,0 +170776373674,215,0 +170776373722,215,0 +170776373770,215,0 +170776373819,215,0 +170776373869,214,0 +170776373916,214,0 +170776373964,213,0 +170776374012,214,0 +170776374060,214,0 +170776374109,214,0 +170776374157,214,0 +170776374205,214,0 +170776374255,214,0 +170776374302,214,0 +170776374350,214,0 +170776374400,215,0 +170776374450,215,0 +170776374498,215,0 +170776374546,215,0 +170776374594,215,0 +170776374643,215,0 +170776374693,215,0 +170776374741,215,0 +170776374790,215,0 +170776374838,214,0 +170776374888,214,0 +170776374935,214,0 +170776374983,214,0 +170776375031,214,0 +170776375079,214,0 +170776375128,214,0 +170776375176,214,0 +170776375224,215,0 +170776375274,215,0 +170776375323,215,0 +170776375371,215,0 +170776375419,215,0 +170776375469,215,0 +170776375517,215,0 +170776375564,215,0 +170776375612,215,0 +170776375662,215,0 +170776375710,215,0 +170776375758,215,0 +170776375806,214,0 +170776375854,214,0 +170776375902,214,0 +170776375950,214,0 +170776375999,214,0 +170776376047,214,0 +170776376096,214,0 +170776376144,214,0 +170776376194,214,0 +170776376242,215,0 +170776376290,215,0 +170776376339,215,0 +170776376389,215,0 +170776376438,215,0 +170776376486,215,0 +170776376534,215,0 +170776376582,215,0 +170776376629,215,0 +170776376677,215,0 +170776376725,214,0 +170776376773,213,0 +170776376821,213,0 +170776376870,213,0 +170776376918,213,0 +170776376968,214,0 +170776377015,214,0 +170776377063,214,0 +170776377111,214,0 +170776377159,214,0 +170776377207,214,0 +170776377255,214,0 +170776377304,215,0 +170776377354,215,0 +170776377403,214,0 +170776377451,215,0 +170776377501,215,0 +170776377550,215,0 +170776377598,215,0 +170776377646,215,0 +170776377694,214,0 +170776377742,213,0 +170776377790,213,0 +170776377837,214,0 +170776377885,214,0 +170776377935,214,0 +170776377983,214,0 +170776378032,214,0 +170776378080,214,0 +170776378128,214,0 +170776378176,214,0 +170776378224,214,0 +170776378272,215,0 +170776378322,214,0 +170776378371,214,0 +170776378419,215,0 +170776378467,215,0 +170776378515,215,0 +170776378564,215,0 +170776378614,214,0 +170776378662,213,0 +170776378711,213,0 +170776378759,213,0 +170776378809,213,0 +170776378858,214,0 +170776378908,214,0 +170776378956,213,0 +170776379005,214,0 +170776379053,214,0 +170776379101,214,0 +170776379149,214,0 +170776379197,214,0 +170776379245,215,0 +170776379293,214,0 +170776379341,215,0 +170776379389,215,0 +170776379436,215,0 +170776379484,215,0 +170776379532,214,0 +170776379580,213,0 +170776379628,213,0 +170776379676,213,0 +170776379724,213,0 +170776379771,213,0 +170776379819,213,0 +170776379869,213,0 +170776379917,214,0 +170776379964,213,0 +170776380012,213,0 +170776380060,213,0 +170776380109,214,0 +170776380157,214,0 +170776380205,214,0 +170776380253,214,0 +170776380301,214,0 +170776380349,214,0 +170776380396,214,0 +170776380444,215,0 +170776380492,213,0 +170776380540,213,0 +170776380588,213,0 +170776380635,213,0 +170776380683,213,0 +170776380731,213,0 +170776380781,213,0 +170776380829,213,0 +170776380877,214,0 +170776380925,214,0 +170776380973,214,0 +170776381021,214,0 +170776381070,214,0 +170776381120,214,0 +170776381168,214,0 +170776381216,214,0 +170776381264,214,0 +170776381313,215,0 +170776381361,214,0 +170776381410,214,0 +170776381458,213,0 +170776381508,213,0 +170776381556,213,0 +170776381605,213,0 +170776381653,213,0 +170776381701,213,0 +170776381749,214,0 +170776381797,214,0 +170776381845,214,0 +170776381894,214,0 +170776381944,214,0 +170776381992,214,0 +170776382040,214,0 +170776382088,214,0 +170776382136,215,0 +170776382185,214,0 +170776382233,215,0 +170776382283,215,0 +170776382330,215,0 +170776382380,213,0 +170776382428,213,0 +170776382477,213,0 +170776382527,213,0 +170776382575,213,0 +170776382622,214,0 +170776382670,214,0 +170776382718,214,0 +170776382766,214,0 +170776382815,214,0 +170776382865,214,0 +170776382913,214,0 +170776382960,214,0 +170776383008,214,0 +170776383056,214,0 +170776383104,214,0 +170776383154,215,0 +170776383203,215,0 +170776383251,215,0 +170776383301,213,0 +170776383348,213,0 +170776383398,213,0 +170776383447,214,0 +170776383497,214,0 +170776383546,214,0 +170776383594,214,0 +170776383642,214,0 +170776383690,214,0 +170776383739,214,0 +170776383789,214,0 +170776383837,215,0 +170776383886,214,0 +170776383934,215,0 +170776383982,215,0 +170776384032,215,0 +170776384080,215,0 +170776384128,215,0 +170776384177,216,0 +170776384225,214,0 +170776384273,213,0 +170776384322,213,0 +170776384370,213,0 +170776384418,213,0 +170776384466,213,0 +170776384514,214,0 +170776384564,214,0 +170776384612,214,0 +170776384661,214,0 +170776384709,214,0 +170776384757,214,0 +170776384805,214,0 +170776384853,215,0 +170776384901,215,0 +170776384949,215,0 +170776384997,215,0 +170776385045,215,0 +170776385093,215,0 +170776385141,215,0 +170776385189,214,0 +170776385237,213,0 +170776385284,213,0 +170776385334,213,0 +170776385383,214,0 +170776385431,214,0 +170776385479,214,0 +170776385529,214,0 +170776385578,214,0 +170776385626,214,0 +170776385674,214,0 +170776385722,214,0 +170776385772,214,0 +170776385820,215,0 +170776385868,215,0 +170776385916,215,0 +170776385963,215,0 +170776386011,215,0 +170776386059,215,0 +170776386109,214,0 +170776386157,213,0 +170776386206,214,0 +170776386254,214,0 +170776386304,214,0 +170776386352,214,0 +170776386400,214,0 +170776386448,214,0 +170776386496,214,0 +170776386544,214,0 +170776386593,214,0 +170776386641,214,0 +170776386689,215,0 +170776386737,215,0 +170776386785,215,0 +170776386834,215,0 +170776386884,215,0 +170776386932,215,0 +170776386980,215,0 +170776387029,214,0 +170776387077,214,0 +170776387125,213,0 +170776387173,214,0 +170776387221,214,0 +170776387270,214,0 +170776387320,214,0 +170776387369,214,0 +170776387417,214,0 +170776387467,214,0 +170776387515,214,0 +170776387562,214,0 +170776387612,214,0 +170776387660,215,0 +170776387708,215,0 +170776387757,215,0 +170776387805,214,0 +170776387853,215,0 +170776387901,215,0 +170776387949,215,0 +170776387997,214,0 +170776388045,213,0 +170776388093,214,0 +170776388142,214,0 +170776388190,214,0 +170776388240,214,0 +170776388289,214,0 +170776388337,214,0 +170776388385,214,0 +170776388435,214,0 +170776388482,214,0 +170776388530,215,0 +170776388578,215,0 +170776388626,215,0 +170776388674,215,0 +170776388724,215,0 +170776388773,215,0 +170776388823,215,0 +170776388871,215,0 +170776388919,214,0 +170776388967,213,0 +170776389015,214,0 +170776389064,214,0 +170776389112,214,0 +170776389161,214,0 +170776389209,214,0 +170776389259,214,0 +170776389307,214,0 +170776389355,214,0 +170776389403,214,0 +170776389452,215,0 +170776389501,215,0 +170776389549,215,0 +170776389597,215,0 +170776389645,215,0 +170776389693,215,0 +170776389741,215,0 +170776389788,215,0 +170776389836,215,0 +170776389884,213,0 +170776389932,213,0 +170776389980,214,0 +170776390028,214,0 +170776390076,214,0 +170776390124,214,0 +170776390172,214,0 +170776390220,214,0 +170776390267,214,0 +170776390315,214,0 +170776390363,214,0 +170776390413,215,0 +170776390461,215,0 +170776390509,215,0 +170776390558,215,0 +170776390606,215,0 +170776390654,215,0 +170776390703,215,0 +170776390753,215,0 +170776390802,214,0 +170776390850,213,0 +170776390898,213,0 +170776390946,214,0 +170776390994,213,0 +170776391044,214,0 +170776391092,214,0 +170776391139,214,0 +170776391189,214,0 +170776391237,214,0 +170776391286,214,0 +170776391334,214,0 +170776391382,214,0 +170776391430,215,0 +170776391478,215,0 +170776391528,215,0 +170776391577,215,0 +170776391627,215,0 +170776391675,215,0 +170776391722,214,0 +170776391770,213,0 +170776391818,214,0 +170776391866,213,0 +170776391914,214,0 +170776391963,214,0 +170776392011,214,0 +170776392059,214,0 +170776392107,214,0 +170776392157,214,0 +170776392205,214,0 +170776392252,214,0 +170776392300,214,0 +170776392348,214,0 +170776392396,214,0 +170776392444,214,0 +170776392492,215,0 +170776392539,215,0 +170776392587,215,0 +170776392635,215,0 +170776392683,214,0 +170776392731,213,0 +170776392779,213,0 +170776392827,213,0 +170776392875,213,0 +170776392922,214,0 +170776392972,214,0 +170776393020,214,0 +170776393068,214,0 +170776393116,214,0 +170776393164,214,0 +170776393212,214,0 +170776393261,214,0 +170776393309,214,0 +170776393359,215,0 +170776393408,214,0 +170776393458,214,0 +170776393505,215,0 +170776393553,214,0 +170776393603,214,0 +170776393651,213,0 +170776393700,213,0 +170776393748,213,0 +170776393796,214,0 +170776393846,214,0 +170776393895,214,0 +170776393943,214,0 +170776393991,214,0 +170776394041,214,0 +170776394090,214,0 +170776394138,214,0 +170776394186,214,0 +170776394236,214,0 +170776394285,214,0 +170776394335,215,0 +170776394383,215,0 +170776394430,215,0 +170776394478,214,0 +170776394526,214,0 +170776394574,213,0 +170776394622,213,0 +170776394670,213,0 +170776394717,213,0 +170776394765,214,0 +170776394813,214,0 +170776394861,213,0 +170776394910,214,0 +170776394958,213,0 +170776395008,214,0 +170776395055,214,0 +170776395103,214,0 +170776395151,214,0 +170776395199,214,0 +170776395247,214,0 +170776395295,214,0 +170776395343,215,0 +170776395390,214,0 +170776395438,214,0 +170776395486,214,0 +170776395534,213,0 +170776395582,213,0 +170776395630,213,0 +170776395678,213,0 +170776395725,213,0 +170776395773,214,0 +170776395821,213,0 +170776395869,214,0 +170776395917,214,0 +170776395965,214,0 +170776396012,214,0 +170776396060,214,0 +170776396110,215,0 +170776396158,215,0 +170776396207,215,0 +170776396255,215,0 +170776396305,215,0 +170776396354,214,0 +170776396402,214,0 +170776396450,213,0 +170776396498,213,0 +170776396548,213,0 +170776396597,213,0 +170776396645,214,0 +170776396693,214,0 +170776396741,214,0 +170776396789,214,0 +170776396836,214,0 +170776396884,214,0 +170776396932,214,0 +170776396980,214,0 +170776397028,214,0 +170776397075,214,0 +170776397125,214,0 +170776397173,215,0 +170776397222,215,0 +170776397270,215,0 +170776397318,214,0 +170776397368,213,0 +170776397416,213,0 +170776397465,213,0 +170776397513,213,0 +170776397561,213,0 +170776397610,214,0 +170776397658,214,0 +170776397706,214,0 +170776397754,214,0 +170776397804,214,0 +170776397853,214,0 +170776397901,214,0 +170776397950,214,0 +170776398000,214,0 +170776398050,214,0 +170776398099,215,0 +170776398148,215,0 +170776398196,215,0 +170776398244,214,0 +170776398292,213,0 +170776398340,213,0 +170776398390,213,0 +170776398438,213,0 +170776398486,213,0 +170776398534,213,0 +170776398582,213,0 +170776398631,213,0 +170776398681,214,0 +170776398730,214,0 +170776398778,214,0 +170776398826,214,0 +170776398874,214,0 +170776398924,214,0 +170776398971,214,0 +170776399019,214,0 +170776399067,214,0 +170776399115,215,0 +170776399163,214,0 +170776399211,214,0 +170776399261,213,0 +170776399309,213,0 +170776399356,213,0 +170776399404,213,0 +170776399452,213,0 +170776399502,213,0 +170776399550,213,0 +170776399597,213,0 +170776399645,214,0 +170776399695,214,0 +170776399743,214,0 +170776399791,214,0 +170776399839,214,0 +170776399888,214,0 +170776399938,214,0 +170776399987,214,0 +170776400037,215,0 +170776400085,215,0 +170776400134,215,0 +170776400182,213,0 +170776400230,213,0 +170776400279,214,0 +170776400329,213,0 +170776400378,213,0 +170776400426,214,0 +170776400474,214,0 +170776400522,214,0 +170776400572,214,0 +170776400620,214,0 +170776400668,214,0 +170776400716,214,0 +170776400764,214,0 +170776400812,214,0 +170776400859,214,0 +170776400907,214,0 +170776400955,214,0 +170776401005,214,0 +170776401054,215,0 +170776401102,214,0 +170776401152,213,0 +170776401201,213,0 +170776401251,213,0 +170776401299,214,0 +170776401347,214,0 +170776401396,214,0 +170776401444,214,0 +170776401492,214,0 +170776401540,214,0 +170776401589,214,0 +170776401637,214,0 +170776401687,214,0 +170776401736,215,0 +170776401784,214,0 +170776401832,215,0 +170776401882,215,0 +170776401930,215,0 +170776401978,215,0 +170776402026,214,0 +170776402073,213,0 +170776402123,214,0 +170776402171,214,0 +170776402220,214,0 +170776402270,214,0 +170776402319,214,0 +170776402369,214,0 +170776402419,214,0 +170776402468,214,0 +170776402516,214,0 +170776402564,214,0 +170776402612,215,0 +170776402660,215,0 +170776402709,215,0 +170776402757,215,0 +170776402805,215,0 +170776402853,215,0 +170776402901,215,0 +170776402949,215,0 +170776402998,214,0 +170776403046,214,0 +170776403096,214,0 +170776403144,214,0 +170776403191,214,0 +170776403239,214,0 +170776403289,214,0 +170776403337,214,0 +170776403385,214,0 +170776403432,214,0 +170776403480,214,0 +170776403530,214,0 +170776403578,214,0 +170776403626,215,0 +170776403675,214,0 +170776403723,215,0 +170776403771,215,0 +170776403819,215,0 +170776403866,215,0 +170776403914,214,0 +170776403962,214,0 +170776404011,214,0 +170776404059,214,0 +170776404108,214,0 +170776404156,214,0 +170776404204,214,0 +170776404252,214,0 +170776404300,214,0 +170776404348,214,0 +170776404396,214,0 +170776404445,215,0 +170776404493,215,0 +170776404541,215,0 +170776404589,215,0 +170776404639,215,0 +170776404687,215,0 +170776404736,215,0 +170776404784,215,0 +170776404832,214,0 +170776404880,213,0 +170776404928,213,0 +170776404977,213,0 +170776405027,214,0 +170776405075,214,0 +170776405123,214,0 +170776405171,214,0 +170776405219,214,0 +170776405267,214,0 +170776405316,214,0 +170776405366,214,0 +170776405414,214,0 +170776405463,214,0 +170776405511,215,0 +170776405559,215,0 +170776405609,215,0 +170776405658,215,0 +170776405706,215,0 +170776405756,214,0 +170776405804,213,0 +170776405853,213,0 +170776405901,213,0 +170776405949,214,0 +170776405998,213,0 +170776406046,214,0 +170776406096,214,0 +170776406144,214,0 +170776406193,214,0 +170776406241,214,0 +170776406291,214,0 +170776406340,214,0 +170776406390,214,0 +170776406438,215,0 +170776406487,215,0 +170776406537,215,0 +170776406585,215,0 +170776406633,215,0 +170776406680,215,0 +170776406730,214,0 +170776406778,213,0 +170776406827,213,0 +170776406875,213,0 +170776406925,214,0 +170776406973,214,0 +170776407020,213,0 +170776407068,214,0 +170776407116,214,0 +170776407166,214,0 +170776407214,214,0 +170776407261,214,0 +170776407309,214,0 +170776407357,214,0 +170776407405,215,0 +170776407453,215,0 +170776407501,215,0 +170776407550,215,0 +170776407598,215,0 +170776407646,214,0 +170776407694,214,0 +170776407742,214,0 +170776407792,214,0 +170776407841,214,0 +170776407889,214,0 +170776407938,214,0 +170776407988,214,0 +170776408037,214,0 +170776408085,214,0 +170776408133,214,0 +170776408181,214,0 +170776408231,215,0 +170776408278,215,0 +170776408326,215,0 +170776408374,215,0 +170776408422,215,0 +170776408470,215,0 +170776408518,214,0 +170776408566,214,0 +170776408615,213,0 +170776408665,213,0 +170776408714,213,0 +170776408762,214,0 +170776408810,214,0 +170776408858,214,0 +170776408906,214,0 +170776408954,214,0 +170776409002,214,0 +170776409049,214,0 +170776409097,214,0 +170776409145,214,0 +170776409193,215,0 +170776409241,215,0 +170776409289,215,0 +170776409336,214,0 +170776409384,215,0 +170776409432,214,0 +170776409480,215,0 +170776409528,214,0 +170776409576,213,0 +170776409624,213,0 +170776409672,213,0 +170776409721,213,0 +170776409769,214,0 +170776409817,213,0 +170776409865,214,0 +170776409913,214,0 +170776409961,214,0 +170776410010,214,0 +170776410058,214,0 +170776410107,214,0 +170776410155,214,0 +170776410203,215,0 +170776410253,215,0 +170776410301,215,0 +170776410350,215,0 +170776410398,214,0 +170776410446,214,0 +170776410494,213,0 +170776410542,213,0 +170776410590,213,0 +170776410638,213,0 +170776410686,214,0 +170776410734,214,0 +170776410781,214,0 +170776410831,214,0 +170776410879,214,0 +170776410927,214,0 +170776410975,214,0 +170776411024,214,0 +170776411072,214,0 +170776411120,214,0 +170776411168,214,0 +170776411217,214,0 +170776411265,215,0 +170776411313,214,0 +170776411363,214,0 +170776411411,214,0 +170776411459,213,0 +170776411507,213,0 +170776411555,213,0 +170776411603,213,0 +170776411651,213,0 +170776411700,213,0 +170776411748,214,0 +170776411798,214,0 +170776411846,213,0 +170776411894,214,0 +170776411942,214,0 +170776411990,214,0 +170776412039,214,0 +170776412088,214,0 +170776412138,214,0 +170776412186,214,0 +170776412234,215,0 +170776412281,215,0 +170776412329,214,0 +170776412377,213,0 +170776412427,213,0 +170776412476,213,0 +170776412524,213,0 +170776412572,213,0 +170776412622,213,0 +170776412670,213,0 +170776412719,214,0 +170776412769,214,0 +170776412818,214,0 +170776412866,214,0 +170776412914,214,0 +170776412963,214,0 +170776413011,214,0 +170776413059,214,0 +170776413107,214,0 +170776413155,214,0 +170776413203,214,0 +170776413253,214,0 +170776413302,213,0 +170776413352,213,0 +170776413399,213,0 +170776413449,213,0 +170776413497,213,0 +170776413545,213,0 +170776413594,213,0 +170776413642,213,0 +170776413690,213,0 +170776413738,213,0 +170776413786,213,0 +170776413835,213,0 +170776413883,213,0 +170776413931,213,0 +170776413979,214,0 +170776414027,214,0 +170776414075,214,0 +170776414123,214,0 +170776414170,214,0 +170776414218,214,0 +170776414266,213,0 +170776414316,213,0 +170776414363,213,0 +170776414411,214,0 +170776414459,213,0 +170776414507,213,0 +170776414555,214,0 +170776414603,213,0 +170776414653,214,0 +170776414701,214,0 +170776414750,214,0 +170776414798,214,0 +170776414846,214,0 +170776414894,214,0 +170776414943,214,0 +170776414991,214,0 +170776415039,214,0 +170776415087,214,0 +170776415135,214,0 +170776415185,213,0 +170776415233,213,0 +170776415282,213,0 +170776415330,213,0 +170776415378,213,0 +170776415426,213,0 +170776415474,213,0 +170776415523,214,0 +170776415571,214,0 +170776415621,214,0 +170776415670,214,0 +170776415718,214,0 +170776415768,214,0 +170776415816,214,0 +170776415865,214,0 +170776415915,214,0 +170776415964,214,0 +170776416014,214,0 +170776416062,215,0 +170776416109,214,0 +170776416157,213,0 +170776416205,213,0 +170776416253,214,0 +170776416301,214,0 +170776416351,214,0 +170776416398,214,0 +170776416448,214,0 +170776416496,214,0 +170776416544,214,0 +170776416591,214,0 +170776416641,214,0 +170776416689,214,0 +170776416738,214,0 +170776416788,214,0 +170776416837,215,0 +170776416885,215,0 +170776416933,215,0 +170776416983,215,0 +170776417031,214,0 +170776417079,213,0 +170776417127,214,0 +170776417174,214,0 +170776417222,214,0 +170776417272,214,0 +170776417320,214,0 +170776417368,214,0 +170776417416,214,0 +170776417464,214,0 +170776417512,214,0 +170776417561,214,0 +170776417609,214,0 +170776417659,215,0 +170776417706,215,0 +170776417754,215,0 +170776417804,215,0 +170776417853,215,0 +170776417901,215,0 +170776417949,214,0 +170776417997,214,0 +170776418045,214,0 +170776418095,214,0 +170776418143,214,0 +170776418192,214,0 +170776418242,214,0 +170776418291,214,0 +170776418339,214,0 +170776418387,214,0 +170776418437,214,0 +170776418486,214,0 +170776418534,215,0 +170776418584,215,0 +170776418633,215,0 +170776418681,215,0 +170776418731,215,0 +170776418778,215,0 +170776418826,215,0 +170776418876,214,0 +170776418925,214,0 +170776418973,214,0 +170776419021,214,0 +170776419071,214,0 +170776419119,214,0 +170776419166,214,0 +170776419214,214,0 +170776419262,215,0 +170776419310,215,0 +170776419360,215,0 +170776419409,215,0 +170776419457,215,0 +170776419507,215,0 +170776419556,215,0 +170776419604,215,0 +170776419653,215,0 +170776419703,215,0 +170776419752,215,0 +170776419800,215,0 +170776419850,214,0 +170776419898,214,0 +170776419947,214,0 +170776419995,214,0 +170776420043,214,0 +170776420091,214,0 +170776420140,214,0 +170776420188,214,0 +170776420236,214,0 +170776420284,215,0 +170776420333,215,0 +170776420383,215,0 +170776420431,215,0 +170776420480,215,0 +170776420528,215,0 +170776420576,215,0 +170776420624,215,0 +170776420672,215,0 +170776420721,214,0 +170776420769,214,0 +170776420819,213,0 +170776420867,214,0 +170776420915,214,0 +170776420964,214,0 +170776421014,214,0 +170776421063,214,0 +170776421113,214,0 +170776421161,214,0 +170776421209,214,0 +170776421257,214,0 +170776421305,214,0 +170776421353,215,0 +170776421402,214,0 +170776421450,215,0 +170776421500,215,0 +170776421548,214,0 +170776421597,214,0 +170776421647,215,0 +170776421695,215,0 +170776421743,214,0 +170776421791,213,0 +170776421840,213,0 +170776421888,213,0 +170776421936,213,0 +170776421985,214,0 +170776422033,214,0 +170776422081,214,0 +170776422129,214,0 +170776422177,214,0 +170776422225,214,0 +170776422273,214,0 +170776422322,214,0 +170776422370,214,0 +170776422420,214,0 +170776422468,215,0 +170776422517,215,0 +170776422565,215,0 +170776422615,215,0 +170776422663,215,0 +170776422711,213,0 +170776422760,213,0 +170776422808,213,0 +170776422856,213,0 +170776422904,213,0 +170776422953,213,0 +170776423001,213,0 +170776423051,213,0 +170776423099,214,0 +170776423148,214,0 +170776423196,214,0 +170776423244,214,0 +170776423293,214,0 +170776423341,214,0 +170776423391,214,0 +170776423439,214,0 +170776423488,214,0 +170776423536,214,0 +170776423584,214,0 +170776423633,214,0 +170776423681,213,0 +170776423729,213,0 +170776423777,213,0 +170776423826,213,0 +170776423876,214,0 +170776423924,213,0 +170776423972,214,0 +170776424020,214,0 +170776424068,214,0 +170776424115,214,0 +170776424163,214,0 +170776424211,214,0 +170776424261,214,0 +170776424309,214,0 +170776424357,214,0 +170776424406,215,0 +170776424456,214,0 +170776424504,215,0 +170776424553,215,0 +170776424602,213,0 +170776424652,213,0 +170776424700,214,0 +170776424749,213,0 +170776424797,213,0 +170776424847,214,0 +170776424896,214,0 +170776424946,214,0 +170776424995,214,0 +170776425043,214,0 +170776425091,214,0 +170776425139,214,0 +170776425187,214,0 +170776425237,214,0 +170776425285,214,0 +170776425333,215,0 +170776425382,214,0 +170776425430,215,0 +170776425480,215,0 +170776425529,214,0 +170776425579,213,0 +170776425628,213,0 +170776425676,213,0 +170776425724,213,0 +170776425774,214,0 +170776425823,214,0 +170776425871,213,0 +170776425919,214,0 +170776425967,214,0 +170776426015,214,0 +170776426062,214,0 +170776426110,214,0 +170776426160,214,0 +170776426209,214,0 +170776426257,214,0 +170776426305,214,0 +170776426355,215,0 +170776426403,215,0 +170776426451,214,0 +170776426500,213,0 +170776426548,213,0 +170776426596,213,0 +170776426645,214,0 +170776426693,213,0 +170776426741,214,0 +170776426791,214,0 +170776426838,213,0 +170776426886,214,0 +170776426934,214,0 +170776426984,214,0 +170776427033,214,0 +170776427081,214,0 +170776427129,214,0 +170776427177,214,0 +170776427226,214,0 +170776427274,214,0 +170776427322,214,0 +170776427370,214,0 +170776427420,214,0 +170776427468,213,0 +170776427515,213,0 +170776427565,213,0 +170776427613,213,0 +170776427662,213,0 +170776427710,213,0 +170776427758,213,0 +170776427806,213,0 +170776427856,213,0 +170776427904,213,0 +170776427953,213,0 +170776428001,213,0 +170776428049,213,0 +170776428097,214,0 +170776428145,214,0 +170776428193,214,0 +170776428242,214,0 +170776428290,214,0 +170776428339,214,0 +170776428387,214,0 +170776428435,214,0 +170776428483,214,0 +170776428531,214,0 +170776428579,215,0 +170776428629,215,0 +170776428678,215,0 +170776428726,214,0 +170776428774,214,0 +170776428823,214,0 +170776428873,213,0 +170776428922,213,0 +170776428970,213,0 +170776429018,213,0 +170776429066,213,0 +170776429114,213,0 +170776429163,214,0 +170776429211,214,0 +170776429259,214,0 +170776429307,214,0 +170776429357,214,0 +170776429406,214,0 +170776429454,214,0 +170776429502,214,0 +170776429550,214,0 +170776429597,215,0 +170776429645,214,0 +170776429695,215,0 +170776429743,214,0 +170776429792,214,0 +170776429840,213,0 +170776429888,213,0 +170776429937,213,0 +170776429985,213,0 +170776430033,213,0 +170776430081,213,0 +170776430129,213,0 +170776430177,213,0 +170776430227,214,0 +170776430275,214,0 +170776430323,214,0 +170776430372,214,0 +170776430422,214,0 +170776430471,214,0 +170776430520,214,0 +170776430568,214,0 +170776430616,214,0 +170776430666,214,0 +170776430714,214,0 +170776430762,213,0 +170776430810,213,0 +170776430858,213,0 +170776430906,213,0 +170776430955,213,0 +170776431003,213,0 +170776431051,213,0 +170776431100,214,0 +170776431148,214,0 +170776431196,214,0 +170776431246,214,0 +170776431294,214,0 +170776431342,214,0 +170776431391,214,0 +170776431439,214,0 +170776431487,214,0 +170776431535,214,0 +170776431585,214,0 +170776431634,215,0 +170776431684,214,0 +170776431733,213,0 +170776431783,214,0 +170776431832,213,0 +170776431882,214,0 +170776431930,214,0 +170776431978,214,0 +170776432027,214,0 +170776432075,214,0 +170776432123,214,0 +170776432171,214,0 +170776432221,214,0 +170776432270,214,0 +170776432318,214,0 +170776432367,214,0 +170776432417,215,0 +170776432466,215,0 +170776432514,215,0 +170776432562,215,0 +170776432610,214,0 +170776432660,214,0 +170776432709,214,0 +170776432757,213,0 +170776432805,214,0 +170776432853,214,0 +170776432903,214,0 +170776432950,214,0 +170776432998,214,0 +170776433046,214,0 +170776433094,214,0 +170776433144,215,0 +170776433192,215,0 +170776433240,215,0 +170776433288,215,0 +170776433336,215,0 +170776433384,215,0 +170776433431,215,0 +170776433479,215,0 +170776433527,215,0 +170776433575,214,0 +170776433623,214,0 +170776433671,214,0 +170776433719,214,0 +170776433767,214,0 +170776433815,214,0 +170776433863,214,0 +170776433911,214,0 +170776433958,214,0 +170776434006,215,0 +170776434054,215,0 +170776434102,215,0 +170776434150,215,0 +170776434200,215,0 +170776434248,215,0 +170776434296,215,0 +170776434345,215,0 +170776434393,215,0 +170776434441,215,0 +170776434490,215,0 +170776434538,214,0 +170776434586,214,0 +170776434636,214,0 +170776434685,214,0 +170776434733,214,0 +170776434781,214,0 +170776434831,214,0 +170776434878,215,0 +170776434926,214,0 +170776434976,214,0 +170776435026,215,0 +170776435074,215,0 +170776435122,215,0 +170776435169,215,0 +170776435217,215,0 +170776435267,215,0 +170776435315,215,0 +170776435363,215,0 +170776435412,214,0 +170776435460,214,0 +170776435508,214,0 +170776435557,213,0 +170776435607,214,0 +170776435655,214,0 +170776435703,214,0 +170776435752,214,0 +170776435800,214,0 +170776435850,214,0 +170776435898,214,0 +170776435947,215,0 +170776435995,214,0 +170776436043,215,0 +170776436092,215,0 +170776436142,215,0 +170776436191,215,0 +170776436239,215,0 +170776436287,215,0 +170776436337,215,0 +170776436385,214,0 +170776436433,213,0 +170776436481,213,0 +170776436530,213,0 +170776436580,213,0 +170776436628,213,0 +170776436676,213,0 +170776436724,214,0 +170776436771,214,0 +170776436819,214,0 +170776436867,214,0 +170776436917,214,0 +170776436965,214,0 +170776437012,214,0 +170776437060,214,0 +170776437108,214,0 +170776437158,214,0 +170776437207,214,0 +170776437255,214,0 +170776437305,215,0 +170776437354,214,0 +170776437402,213,0 +170776437452,213,0 +170776437499,214,0 +170776437547,213,0 +170776437595,213,0 +170776437645,214,0 +170776437693,213,0 +170776437740,214,0 +170776437790,214,0 +170776437838,214,0 +170776437887,214,0 +170776437937,214,0 +170776437985,214,0 +170776438034,214,0 +170776438084,214,0 +170776438132,215,0 +170776438180,214,0 +170776438227,214,0 +170776438275,214,0 +170776438323,213,0 +170776438371,213,0 +170776438421,213,0 +170776438470,214,0 +170776438520,214,0 +170776438568,214,0 +170776438616,214,0 +170776438665,214,0 +170776438713,214,0 +170776438761,214,0 +170776438811,214,0 +170776438859,215,0 +170776438906,214,0 +170776438954,214,0 +170776439002,214,0 +170776439050,215,0 +170776439098,215,0 +170776439146,215,0 +170776439194,214,0 +170776439242,213,0 +170776439290,213,0 +170776439339,213,0 +170776439387,213,0 +170776439435,213,0 +170776439485,213,0 +170776439533,213,0 +170776439582,213,0 +170776439632,213,0 +170776439681,214,0 +170776439730,214,0 +170776439780,214,0 +170776439828,214,0 +170776439877,214,0 +170776439925,214,0 +170776439973,214,0 +170776440021,214,0 diff --git a/laser_value/0213-05.csv b/laser_value/0213-05.csv new file mode 100644 index 0000000..751629f --- /dev/null +++ b/laser_value/0213-05.csv @@ -0,0 +1,7447 @@ +timestamp,laser_value,event +170776440069,214,0 +170776440117,215,0 +170776440165,214,0 +170776440215,213,0 +170776440263,213,0 +170776440312,213,0 +170776440361,213,0 +170776440409,213,0 +170776440457,213,0 +170776440507,214,0 +170776440554,214,0 +170776440602,214,0 +170776440652,214,0 +170776440700,214,0 +170776440749,214,0 +170776440797,214,0 +170776440847,214,0 +170776440896,214,0 +170776440944,215,0 +170776440993,215,0 +170776441043,214,0 +170776441092,213,0 +170776441142,213,0 +170776441190,213,0 +170776441239,213,0 +170776441287,213,0 +170776441335,214,0 +170776441383,214,0 +170776441431,214,0 +170776441480,214,0 +170776441530,214,0 +170776441577,214,0 +170776441625,214,0 +170776441673,214,0 +170776441721,215,0 +170776441769,215,0 +170776441819,214,0 +170776441868,215,0 +170776441916,215,0 +170776441964,215,0 +170776442013,214,0 +170776442061,213,0 +170776442109,213,0 +170776442159,213,0 +170776442207,213,0 +170776442254,214,0 +170776442304,213,0 +170776442353,214,0 +170776442401,214,0 +170776442449,214,0 +170776442497,214,0 +170776442545,214,0 +170776442595,214,0 +170776442642,214,0 +170776442690,214,0 +170776442740,215,0 +170776442788,215,0 +170776442836,215,0 +170776442884,215,0 +170776442932,214,0 +170776442980,213,0 +170776443027,213,0 +170776443075,213,0 +170776443123,214,0 +170776443171,213,0 +170776443219,213,0 +170776443268,214,0 +170776443318,214,0 +170776443366,214,0 +170776443414,214,0 +170776443462,214,0 +170776443510,214,0 +170776443557,214,0 +170776443605,214,0 +170776443653,214,0 +170776443701,214,0 +170776443749,215,0 +170776443797,216,0 +170776443845,214,0 +170776443893,213,0 +170776443941,213,0 +170776443989,213,0 +170776444037,213,0 +170776444086,213,0 +170776444134,213,0 +170776444182,213,0 +170776444232,213,0 +170776444279,214,0 +170776444327,214,0 +170776444377,214,0 +170776444425,214,0 +170776444474,214,0 +170776444524,214,0 +170776444573,214,0 +170776444621,214,0 +170776444670,214,0 +170776444718,214,0 +170776444766,214,0 +170776444816,213,0 +170776444864,213,0 +170776444911,213,0 +170776444961,213,0 +170776445009,213,0 +170776445058,213,0 +170776445108,214,0 +170776445156,214,0 +170776445205,214,0 +170776445255,214,0 +170776445303,214,0 +170776445351,214,0 +170776445399,214,0 +170776445446,214,0 +170776445494,214,0 +170776445542,214,0 +170776445590,214,0 +170776445638,214,0 +170776445688,214,0 +170776445736,214,0 +170776445784,214,0 +170776445831,214,0 +170776445881,214,0 +170776445929,214,0 +170776445978,214,0 +170776446026,214,0 +170776446076,214,0 +170776446124,214,0 +170776446173,214,0 +170776446223,215,0 +170776446270,215,0 +170776446318,215,0 +170776446366,215,0 +170776446414,215,0 +170776446462,215,0 +170776446510,215,0 +170776446560,215,0 +170776446608,215,0 +170776446657,214,0 +170776446705,214,0 +170776446753,213,0 +170776446801,214,0 +170776446850,214,0 +170776446900,214,0 +170776446949,214,0 +170776446997,214,0 +170776447047,214,0 +170776447096,214,0 +170776447144,214,0 +170776447192,214,0 +170776447241,215,0 +170776447291,215,0 +170776447340,215,0 +170776447388,215,0 +170776447436,215,0 +170776447484,215,0 +170776447532,215,0 +170776447581,214,0 +170776447631,214,0 +170776447679,214,0 +170776447727,214,0 +170776447775,214,0 +170776447824,214,0 +170776447872,214,0 +170776447920,214,0 +170776447968,214,0 +170776448015,214,0 +170776448063,214,0 +170776448113,214,0 +170776448160,215,0 +170776448208,215,0 +170776448258,215,0 +170776448306,215,0 +170776448354,215,0 +170776448402,215,0 +170776448449,215,0 +170776448497,215,0 +170776448545,214,0 +170776448593,214,0 +170776448641,214,0 +170776448689,214,0 +170776448737,214,0 +170776448785,214,0 +170776448833,214,0 +170776448882,214,0 +170776448930,214,0 +170776448978,214,0 +170776449026,215,0 +170776449074,215,0 +170776449122,215,0 +170776449171,215,0 +170776449219,215,0 +170776449268,215,0 +170776449316,215,0 +170776449364,215,0 +170776449412,214,0 +170776449461,214,0 +170776449509,213,0 +170776449557,214,0 +170776449605,214,0 +170776449653,214,0 +170776449702,214,0 +170776449750,214,0 +170776449798,214,0 +170776449846,214,0 +170776449894,214,0 +170776449942,214,0 +170776449990,214,0 +170776450038,215,0 +170776450087,215,0 +170776450135,215,0 +170776450183,214,0 +170776450231,215,0 +170776450279,215,0 +170776450327,214,0 +170776450375,214,0 +170776450423,213,0 +170776450472,213,0 +170776450522,214,0 +170776450571,214,0 +170776450621,214,0 +170776450670,214,0 +170776450720,214,0 +170776450767,214,0 +170776450817,214,0 +170776450865,214,0 +170776450913,214,0 +170776450962,214,0 +170776451012,215,0 +170776451061,215,0 +170776451111,215,0 +170776451159,215,0 +170776451207,215,0 +170776451255,215,0 +170776451302,214,0 +170776451352,213,0 +170776451400,213,0 +170776451448,213,0 +170776451496,213,0 +170776451544,214,0 +170776451592,214,0 +170776451640,214,0 +170776451687,214,0 +170776451735,214,0 +170776451785,214,0 +170776451835,214,0 +170776451882,214,0 +170776451930,214,0 +170776451980,214,0 +170776452029,215,0 +170776452077,215,0 +170776452125,214,0 +170776452173,214,0 +170776452222,214,0 +170776452272,213,0 +170776452320,213,0 +170776452368,213,0 +170776452417,213,0 +170776452467,214,0 +170776452515,213,0 +170776452563,213,0 +170776452612,214,0 +170776452660,214,0 +170776452708,214,0 +170776452757,214,0 +170776452807,214,0 +170776452855,214,0 +170776452903,214,0 +170776452950,214,0 +170776452998,215,0 +170776453048,214,0 +170776453097,215,0 +170776453145,214,0 +170776453193,214,0 +170776453241,213,0 +170776453289,213,0 +170776453338,213,0 +170776453386,213,0 +170776453434,213,0 +170776453482,213,0 +170776453530,213,0 +170776453579,214,0 +170776453627,214,0 +170776453675,214,0 +170776453723,214,0 +170776453772,214,0 +170776453820,214,0 +170776453870,214,0 +170776453918,214,0 +170776453967,214,0 +170776454015,214,0 +170776454065,215,0 +170776454114,214,0 +170776454162,213,0 +170776454210,213,0 +170776454258,213,0 +170776454306,213,0 +170776454353,213,0 +170776454401,213,0 +170776454451,214,0 +170776454498,213,0 +170776454548,213,0 +170776454596,214,0 +170776454644,214,0 +170776454692,214,0 +170776454741,214,0 +170776454789,214,0 +170776454837,214,0 +170776454886,214,0 +170776454934,214,0 +170776454982,214,0 +170776455032,214,0 +170776455080,213,0 +170776455128,213,0 +170776455176,213,0 +170776455225,213,0 +170776455273,213,0 +170776455322,214,0 +170776455370,214,0 +170776455420,214,0 +170776455469,214,0 +170776455517,214,0 +170776455567,214,0 +170776455615,214,0 +170776455662,214,0 +170776455710,215,0 +170776455760,215,0 +170776455809,214,0 +170776455857,215,0 +170776455905,215,0 +170776455953,215,0 +170776456001,213,0 +170776456048,213,0 +170776456096,213,0 +170776456144,213,0 +170776456194,214,0 +170776456243,214,0 +170776456291,214,0 +170776456339,214,0 +170776456387,214,0 +170776456435,214,0 +170776456483,214,0 +170776456531,214,0 +170776456580,214,0 +170776456630,214,0 +170776456679,214,0 +170776456727,214,0 +170776456775,215,0 +170776456823,215,0 +170776456871,214,0 +170776456920,213,0 +170776456968,213,0 +170776457016,214,0 +170776457064,214,0 +170776457112,214,0 +170776457160,213,0 +170776457209,214,0 +170776457258,214,0 +170776457306,214,0 +170776457354,214,0 +170776457402,214,0 +170776457450,214,0 +170776457498,214,0 +170776457546,214,0 +170776457593,214,0 +170776457641,214,0 +170776457689,215,0 +170776457737,215,0 +170776457785,215,0 +170776457834,214,0 +170776457882,213,0 +170776457930,213,0 +170776457978,214,0 +170776458026,214,0 +170776458075,214,0 +170776458123,214,0 +170776458172,214,0 +170776458220,214,0 +170776458268,214,0 +170776458316,215,0 +170776458364,215,0 +170776458412,215,0 +170776458461,215,0 +170776458509,215,0 +170776458557,215,0 +170776458605,215,0 +170776458655,215,0 +170776458702,215,0 +170776458752,214,0 +170776458800,213,0 +170776458848,213,0 +170776458896,214,0 +170776458944,214,0 +170776458993,214,0 +170776459041,214,0 +170776459089,214,0 +170776459139,214,0 +170776459188,214,0 +170776459236,214,0 +170776459284,214,0 +170776459332,214,0 +170776459380,215,0 +170776459428,214,0 +170776459476,214,0 +170776459523,214,0 +170776459571,215,0 +170776459619,215,0 +170776459667,214,0 +170776459715,213,0 +170776459763,213,0 +170776459810,213,0 +170776459858,213,0 +170776459906,214,0 +170776459954,213,0 +170776460002,214,0 +170776460051,213,0 +170776460100,214,0 +170776460148,214,0 +170776460196,214,0 +170776460244,214,0 +170776460292,214,0 +170776460340,214,0 +170776460389,214,0 +170776460437,214,0 +170776460485,215,0 +170776460533,214,0 +170776460580,215,0 +170776460628,214,0 +170776460676,213,0 +170776460724,213,0 +170776460772,213,0 +170776460820,214,0 +170776460867,214,0 +170776460915,214,0 +170776460963,214,0 +170776461011,214,0 +170776461059,214,0 +170776461107,214,0 +170776461154,214,0 +170776461202,214,0 +170776461250,214,0 +170776461299,214,0 +170776461347,215,0 +170776461395,215,0 +170776461444,215,0 +170776461494,214,0 +170776461542,214,0 +170776461589,213,0 +170776461637,213,0 +170776461687,213,0 +170776461735,214,0 +170776461784,214,0 +170776461833,214,0 +170776461881,214,0 +170776461929,214,0 +170776461978,214,0 +170776462028,214,0 +170776462075,214,0 +170776462123,214,0 +170776462171,214,0 +170776462219,215,0 +170776462267,215,0 +170776462314,214,0 +170776462364,215,0 +170776462412,215,0 +170776462460,214,0 +170776462509,214,0 +170776462557,214,0 +170776462605,214,0 +170776462652,214,0 +170776462700,214,0 +170776462748,214,0 +170776462796,215,0 +170776462844,214,0 +170776462891,215,0 +170776462939,214,0 +170776462987,215,0 +170776463035,215,0 +170776463083,215,0 +170776463131,215,0 +170776463178,215,0 +170776463226,215,0 +170776463274,215,0 +170776463322,215,0 +170776463370,214,0 +170776463417,214,0 +170776463465,214,0 +170776463513,214,0 +170776463561,214,0 +170776463609,214,0 +170776463657,214,0 +170776463705,214,0 +170776463752,214,0 +170776463800,214,0 +170776463848,214,0 +170776463898,214,0 +170776463946,215,0 +170776463995,215,0 +170776464043,215,0 +170776464091,215,0 +170776464140,215,0 +170776464190,215,0 +170776464238,215,0 +170776464286,214,0 +170776464334,214,0 +170776464382,214,0 +170776464430,214,0 +170776464477,214,0 +170776464525,214,0 +170776464575,214,0 +170776464623,214,0 +170776464671,214,0 +170776464719,214,0 +170776464767,214,0 +170776464814,214,0 +170776464862,215,0 +170776464912,215,0 +170776464961,215,0 +170776465009,215,0 +170776465057,215,0 +170776465105,215,0 +170776465153,215,0 +170776465203,215,0 +170776465250,214,0 +170776465298,213,0 +170776465346,213,0 +170776465394,213,0 +170776465444,214,0 +170776465493,213,0 +170776465541,214,0 +170776465590,214,0 +170776465638,214,0 +170776465686,214,0 +170776465734,214,0 +170776465784,214,0 +170776465832,214,0 +170776465881,214,0 +170776465929,214,0 +170776465979,214,0 +170776466027,214,0 +170776466076,215,0 +170776466124,215,0 +170776466172,214,0 +170776466220,214,0 +170776466268,213,0 +170776466317,213,0 +170776466365,214,0 +170776466413,213,0 +170776466461,213,0 +170776466508,213,0 +170776466556,214,0 +170776466606,214,0 +170776466653,214,0 +170776466701,214,0 +170776466749,214,0 +170776466797,214,0 +170776466845,214,0 +170776466894,214,0 +170776466942,215,0 +170776466990,215,0 +170776467038,215,0 +170776467087,215,0 +170776467136,214,0 +170776467184,213,0 +170776467232,213,0 +170776467281,213,0 +170776467329,213,0 +170776467377,214,0 +170776467425,214,0 +170776467473,214,0 +170776467520,214,0 +170776467570,214,0 +170776467618,214,0 +170776467666,214,0 +170776467713,214,0 +170776467761,214,0 +170776467811,214,0 +170776467858,214,0 +170776467906,214,0 +170776467954,215,0 +170776468002,214,0 +170776468050,214,0 +170776468097,213,0 +170776468145,213,0 +170776468193,213,0 +170776468242,214,0 +170776468290,214,0 +170776468338,213,0 +170776468386,214,0 +170776468433,214,0 +170776468481,214,0 +170776468529,214,0 +170776468577,214,0 +170776468625,214,0 +170776468673,214,0 +170776468721,214,0 +170776468768,214,0 +170776468818,214,0 +170776468866,215,0 +170776468913,215,0 +170776468961,215,0 +170776469009,213,0 +170776469057,213,0 +170776469105,213,0 +170776469154,213,0 +170776469202,213,0 +170776469250,214,0 +170776469298,214,0 +170776469345,214,0 +170776469393,214,0 +170776469441,214,0 +170776469489,214,0 +170776469537,214,0 +170776469584,214,0 +170776469632,214,0 +170776469680,214,0 +170776469728,214,0 +170776469776,214,0 +170776469824,214,0 +170776469873,214,0 +170776469921,214,0 +170776469969,213,0 +170776470017,213,0 +170776470064,213,0 +170776470112,213,0 +170776470160,214,0 +170776470209,213,0 +170776470257,214,0 +170776470305,214,0 +170776470353,214,0 +170776470401,214,0 +170776470448,214,0 +170776470496,214,0 +170776470546,214,0 +170776470593,214,0 +170776470641,214,0 +170776470689,215,0 +170776470737,214,0 +170776470785,215,0 +170776470834,214,0 +170776470882,213,0 +170776470930,213,0 +170776470978,213,0 +170776471025,213,0 +170776471073,213,0 +170776471121,213,0 +170776471169,214,0 +170776471217,213,0 +170776471265,214,0 +170776471313,214,0 +170776471360,214,0 +170776471408,214,0 +170776471456,214,0 +170776471504,214,0 +170776471554,214,0 +170776471602,214,0 +170776471649,214,0 +170776471697,215,0 +170776471745,214,0 +170776471793,214,0 +170776471841,213,0 +170776471889,213,0 +170776471937,213,0 +170776471986,214,0 +170776472036,213,0 +170776472085,214,0 +170776472135,214,0 +170776472183,214,0 +170776472231,214,0 +170776472280,214,0 +170776472329,214,0 +170776472379,214,0 +170776472427,214,0 +170776472475,214,0 +170776472523,214,0 +170776472571,214,0 +170776472618,214,0 +170776472666,214,0 +170776472714,214,0 +170776472764,213,0 +170776472812,213,0 +170776472860,213,0 +170776472909,213,0 +170776472957,213,0 +170776473006,213,0 +170776473054,213,0 +170776473102,213,0 +170776473150,214,0 +170776473198,213,0 +170776473248,214,0 +170776473296,214,0 +170776473346,214,0 +170776473395,214,0 +170776473443,214,0 +170776473491,214,0 +170776473539,214,0 +170776473587,214,0 +170776473635,214,0 +170776473683,213,0 +170776473730,213,0 +170776473780,213,0 +170776473828,213,0 +170776473875,213,0 +170776473923,213,0 +170776473971,213,0 +170776474021,213,0 +170776474068,213,0 +170776474116,214,0 +170776474164,214,0 +170776474212,214,0 +170776474260,214,0 +170776474308,214,0 +170776474355,214,0 +170776474403,214,0 +170776474451,214,0 +170776474499,214,0 +170776474547,214,0 +170776474595,214,0 +170776474643,213,0 +170776474690,213,0 +170776474738,213,0 +170776474786,213,0 +170776474834,214,0 +170776474882,213,0 +170776474929,213,0 +170776474977,214,0 +170776475025,214,0 +170776475073,214,0 +170776475121,214,0 +170776475170,214,0 +170776475218,215,0 +170776475266,215,0 +170776475314,214,0 +170776475361,214,0 +170776475409,214,0 +170776475457,214,0 +170776475505,214,0 +170776475553,213,0 +170776475601,214,0 +170776475648,214,0 +170776475696,214,0 +170776475744,214,0 +170776475792,214,0 +170776475842,214,0 +170776475889,214,0 +170776475937,214,0 +170776475985,214,0 +170776476033,214,0 +170776476082,214,0 +170776476130,214,0 +170776476178,215,0 +170776476226,214,0 +170776476274,214,0 +170776476321,215,0 +170776476369,215,0 +170776476417,215,0 +170776476465,214,0 +170776476513,214,0 +170776476561,214,0 +170776476609,214,0 +170776476657,214,0 +170776476704,214,0 +170776476752,214,0 +170776476800,214,0 +170776476848,214,0 +170776476896,214,0 +170776476944,214,0 +170776476992,215,0 +170776477040,214,0 +170776477088,215,0 +170776477136,214,0 +170776477185,215,0 +170776477233,215,0 +170776477283,214,0 +170776477331,214,0 +170776477378,214,0 +170776477426,214,0 +170776477474,213,0 +170776477524,214,0 +170776477572,214,0 +170776477620,214,0 +170776477668,214,0 +170776477717,214,0 +170776477765,214,0 +170776477814,214,0 +170776477864,214,0 +170776477912,214,0 +170776477960,215,0 +170776478008,214,0 +170776478056,215,0 +170776478104,215,0 +170776478153,215,0 +170776478201,214,0 +170776478249,214,0 +170776478297,214,0 +170776478345,214,0 +170776478394,214,0 +170776478442,214,0 +170776478491,213,0 +170776478541,214,0 +170776478589,214,0 +170776478638,214,0 +170776478687,214,0 +170776478735,214,0 +170776478783,214,0 +170776478831,214,0 +170776478879,215,0 +170776478927,215,0 +170776478974,215,0 +170776479022,215,0 +170776479070,215,0 +170776479118,215,0 +170776479166,214,0 +170776479214,214,0 +170776479261,214,0 +170776479309,213,0 +170776479357,214,0 +170776479405,214,0 +170776479453,214,0 +170776479501,214,0 +170776479549,214,0 +170776479597,214,0 +170776479644,214,0 +170776479692,214,0 +170776479740,214,0 +170776479788,215,0 +170776479837,215,0 +170776479885,216,0 +170776479933,215,0 +170776479981,215,0 +170776480030,215,0 +170776480078,215,0 +170776480126,214,0 +170776480174,214,0 +170776480221,214,0 +170776480269,214,0 +170776480317,214,0 +170776480365,214,0 +170776480413,214,0 +170776480460,214,0 +170776480508,214,0 +170776480556,214,0 +170776480604,214,0 +170776480653,214,0 +170776480701,215,0 +170776480749,214,0 +170776480797,215,0 +170776480844,215,0 +170776480892,214,0 +170776480940,215,0 +170776480988,214,0 +170776481036,214,0 +170776481084,214,0 +170776481132,214,0 +170776481179,213,0 +170776481227,213,0 +170776481275,214,0 +170776481323,214,0 +170776481371,214,0 +170776481418,214,0 +170776481466,214,0 +170776481514,214,0 +170776481563,214,0 +170776481611,214,0 +170776481659,214,0 +170776481707,214,0 +170776481755,215,0 +170776481803,215,0 +170776481850,215,0 +170776481898,215,0 +170776481946,215,0 +170776481994,215,0 +170776482042,214,0 +170776482090,213,0 +170776482138,213,0 +170776482187,214,0 +170776482235,214,0 +170776482283,214,0 +170776482331,214,0 +170776482380,214,0 +170776482430,214,0 +170776482478,214,0 +170776482525,214,0 +170776482575,214,0 +170776482623,214,0 +170776482671,215,0 +170776482718,214,0 +170776482768,214,0 +170776482816,214,0 +170776482864,214,0 +170776482913,214,0 +170776482961,214,0 +170776483009,213,0 +170776483057,213,0 +170776483107,213,0 +170776483154,213,0 +170776483204,213,0 +170776483252,213,0 +170776483301,213,0 +170776483349,213,0 +170776483399,213,0 +170776483447,213,0 +170776483495,213,0 +170776483544,214,0 +170776483594,214,0 +170776483642,214,0 +170776483691,214,0 +170776483739,214,0 +170776483789,214,0 +170776483838,214,0 +170776483886,214,0 +170776483935,213,0 +170776483985,213,0 +170776484034,213,0 +170776484084,213,0 +170776484133,213,0 +170776484181,213,0 +170776484229,213,0 +170776484277,213,0 +170776484326,213,0 +170776484376,213,0 +170776484424,214,0 +170776484472,214,0 +170776484520,214,0 +170776484568,214,0 +170776484615,214,0 +170776484663,214,0 +170776484711,214,0 +170776484759,215,0 +170776484807,215,0 +170776484857,213,0 +170776484905,213,0 +170776484954,213,0 +170776485004,213,0 +170776485052,214,0 +170776485100,214,0 +170776485148,214,0 +170776485197,214,0 +170776485247,214,0 +170776485295,214,0 +170776485343,214,0 +170776485391,214,0 +170776485438,215,0 +170776485486,215,0 +170776485534,215,0 +170776485582,215,0 +170776485630,215,0 +170776485678,215,0 +170776485726,214,0 +170776485774,213,0 +170776485822,213,0 +170776485869,213,0 +170776485917,213,0 +170776485965,214,0 +170776486013,214,0 +170776486061,214,0 +170776486111,214,0 +170776486158,214,0 +170776486206,214,0 +170776486254,214,0 +170776486302,214,0 +170776486350,214,0 +170776486398,214,0 +170776486445,214,0 +170776486495,214,0 +170776486543,214,0 +170776486591,215,0 +170776486640,215,0 +170776486690,214,0 +170776486739,213,0 +170776486787,214,0 +170776486835,214,0 +170776486883,214,0 +170776486931,214,0 +170776486980,214,0 +170776487030,214,0 +170776487078,214,0 +170776487127,214,0 +170776487177,214,0 +170776487225,214,0 +170776487273,214,0 +170776487322,214,0 +170776487370,215,0 +170776487418,215,0 +170776487466,215,0 +170776487514,215,0 +170776487563,214,0 +170776487611,214,0 +170776487661,213,0 +170776487710,213,0 +170776487758,213,0 +170776487807,213,0 +170776487855,214,0 +170776487903,214,0 +170776487953,214,0 +170776488001,214,0 +170776488050,214,0 +170776488098,214,0 +170776488146,214,0 +170776488195,214,0 +170776488243,214,0 +170776488293,214,0 +170776488342,214,0 +170776488392,215,0 +170776488440,215,0 +170776488488,214,0 +170776488536,214,0 +170776488585,213,0 +170776488633,213,0 +170776488683,213,0 +170776488730,213,0 +170776488778,213,0 +170776488828,214,0 +170776488876,214,0 +170776488924,214,0 +170776488972,214,0 +170776489020,214,0 +170776489068,214,0 +170776489115,214,0 +170776489165,215,0 +170776489214,214,0 +170776489262,215,0 +170776489312,214,0 +170776489360,214,0 +170776489408,215,0 +170776489456,214,0 +170776489505,213,0 +170776489555,213,0 +170776489602,213,0 +170776489652,213,0 +170776489700,213,0 +170776489748,214,0 +170776489797,214,0 +170776489845,214,0 +170776489893,214,0 +170776489943,214,0 +170776489992,214,0 +170776490042,214,0 +170776490089,214,0 +170776490139,214,0 +170776490188,214,0 +170776490238,214,0 +170776490286,214,0 +170776490334,214,0 +170776490382,214,0 +170776490431,213,0 +170776490481,213,0 +170776490530,213,0 +170776490578,213,0 +170776490628,213,0 +170776490676,213,0 +170776490724,214,0 +170776490773,214,0 +170776490823,213,0 +170776490872,214,0 +170776490922,214,0 +170776490970,214,0 +170776491019,214,0 +170776491069,214,0 +170776491118,214,0 +170776491167,214,0 +170776491215,215,0 +170776491265,214,0 +170776491313,214,0 +170776491361,213,0 +170776491410,213,0 +170776491458,213,0 +170776491506,213,0 +170776491554,213,0 +170776491604,213,0 +170776491653,213,0 +170776491703,214,0 +170776491751,214,0 +170776491799,214,0 +170776491847,214,0 +170776491895,214,0 +170776491943,214,0 +170776491990,214,0 +170776492038,214,0 +170776492086,214,0 +170776492136,214,0 +170776492184,214,0 +170776492232,215,0 +170776492281,214,0 +170776492329,213,0 +170776492379,213,0 +170776492428,213,0 +170776492476,213,0 +170776492524,214,0 +170776492574,213,0 +170776492621,214,0 +170776492669,214,0 +170776492719,214,0 +170776492767,214,0 +170776492816,214,0 +170776492864,214,0 +170776492912,214,0 +170776492960,214,0 +170776493008,215,0 +170776493058,215,0 +170776493106,215,0 +170776493154,215,0 +170776493201,214,0 +170776493249,213,0 +170776493297,213,0 +170776493345,213,0 +170776493393,214,0 +170776493441,214,0 +170776493489,214,0 +170776493536,214,0 +170776493584,214,0 +170776493632,214,0 +170776493680,214,0 +170776493728,214,0 +170776493775,214,0 +170776493823,215,0 +170776493871,214,0 +170776493919,215,0 +170776493967,215,0 +170776494015,215,0 +170776494064,215,0 +170776494112,215,0 +170776494160,214,0 +170776494208,213,0 +170776494255,214,0 +170776494303,214,0 +170776494351,214,0 +170776494399,214,0 +170776494447,214,0 +170776494494,214,0 +170776494542,214,0 +170776494590,214,0 +170776494640,214,0 +170776494688,214,0 +170776494737,214,0 +170776494785,214,0 +170776494834,214,0 +170776494882,215,0 +170776494930,215,0 +170776494979,215,0 +170776495027,214,0 +170776495075,214,0 +170776495125,213,0 +170776495174,213,0 +170776495224,213,0 +170776495271,214,0 +170776495319,214,0 +170776495367,214,0 +170776495415,214,0 +170776495463,214,0 +170776495511,214,0 +170776495561,214,0 +170776495609,214,0 +170776495658,214,0 +170776495706,214,0 +170776495754,215,0 +170776495802,215,0 +170776495850,215,0 +170776495898,215,0 +170776495946,215,0 +170776495993,214,0 +170776496041,213,0 +170776496089,213,0 +170776496139,213,0 +170776496187,214,0 +170776496236,214,0 +170776496286,214,0 +170776496333,214,0 +170776496381,214,0 +170776496429,214,0 +170776496477,214,0 +170776496525,214,0 +170776496575,214,0 +170776496624,214,0 +170776496672,215,0 +170776496721,215,0 +170776496771,215,0 +170776496820,215,0 +170776496870,214,0 +170776496918,214,0 +170776496966,213,0 +170776497013,213,0 +170776497061,213,0 +170776497109,213,0 +170776497157,213,0 +170776497205,214,0 +170776497255,213,0 +170776497304,214,0 +170776497353,214,0 +170776497401,214,0 +170776497449,214,0 +170776497497,214,0 +170776497545,214,0 +170776497593,214,0 +170776497641,214,0 +170776497688,215,0 +170776497738,215,0 +170776497786,214,0 +170776497834,215,0 +170776497882,213,0 +170776497930,213,0 +170776497979,213,0 +170776498027,213,0 +170776498075,213,0 +170776498125,213,0 +170776498172,214,0 +170776498220,214,0 +170776498270,214,0 +170776498318,214,0 +170776498366,214,0 +170776498414,214,0 +170776498463,214,0 +170776498511,214,0 +170776498559,214,0 +170776498607,214,0 +170776498655,214,0 +170776498703,214,0 +170776498752,215,0 +170776498800,213,0 +170776498848,213,0 +170776498896,213,0 +170776498943,213,0 +170776498991,213,0 +170776499039,213,0 +170776499089,213,0 +170776499138,214,0 +170776499186,213,0 +170776499234,214,0 +170776499282,214,0 +170776499332,214,0 +170776499381,214,0 +170776499429,214,0 +170776499477,214,0 +170776499526,214,0 +170776499574,214,0 +170776499624,214,0 +170776499672,214,0 +170776499720,214,0 +170776499768,213,0 +170776499817,213,0 +170776499865,213,0 +170776499913,213,0 +170776499961,213,0 +170776500009,214,0 +170776500056,213,0 +170776500104,214,0 +170776500154,214,0 +170776500202,214,0 +170776500250,214,0 +170776500298,214,0 +170776500346,214,0 +170776500394,214,0 +170776500443,214,0 +170776500491,214,0 +170776500539,214,0 +170776500589,215,0 +170776500637,214,0 +170776500685,213,0 +170776500734,213,0 +170776500782,213,0 +170776500830,213,0 +170776500878,213,0 +170776500927,213,0 +170776500976,214,0 +170776501024,214,0 +170776501072,214,0 +170776501122,214,0 +170776501171,214,0 +170776501219,214,0 +170776501267,214,0 +170776501315,214,0 +170776501364,214,0 +170776501412,215,0 +170776501462,214,0 +170776501510,214,0 +170776501558,214,0 +170776501607,214,0 +170776501656,213,0 +170776501704,214,0 +170776501752,214,0 +170776501802,214,0 +170776501850,214,0 +170776501898,214,0 +170776501945,214,0 +170776501995,214,0 +170776502043,214,0 +170776502091,214,0 +170776502140,215,0 +170776502190,214,0 +170776502239,215,0 +170776502289,215,0 +170776502336,215,0 +170776502384,215,0 +170776502432,214,0 +170776502480,214,0 +170776502528,214,0 +170776502576,213,0 +170776502624,213,0 +170776502672,214,0 +170776502719,214,0 +170776502767,214,0 +170776502815,214,0 +170776502863,213,0 +170776502911,214,0 +170776502959,214,0 +170776503006,214,0 +170776503054,214,0 +170776503102,214,0 +170776503150,214,0 +170776503198,215,0 +170776503247,215,0 +170776503295,215,0 +170776503343,215,0 +170776503393,214,0 +170776503442,214,0 +170776503490,213,0 +170776503538,213,0 +170776503586,213,0 +170776503634,214,0 +170776503682,213,0 +170776503729,214,0 +170776503779,214,0 +170776503827,214,0 +170776503875,214,0 +170776503924,214,0 +170776503972,214,0 +170776504020,214,0 +170776504069,214,0 +170776504119,214,0 +170776504167,214,0 +170776504215,215,0 +170776504263,214,0 +170776504311,215,0 +170776504360,214,0 +170776504410,213,0 +170776504458,213,0 +170776504505,213,0 +170776504553,214,0 +170776504601,214,0 +170776504649,214,0 +170776504699,213,0 +170776504748,213,0 +170776504796,213,0 +170776504844,214,0 +170776504892,214,0 +170776504940,214,0 +170776504988,214,0 +170776505035,214,0 +170776505083,214,0 +170776505131,215,0 +170776505179,215,0 +170776505227,214,0 +170776505275,214,0 +170776505322,214,0 +170776505370,213,0 +170776505420,213,0 +170776505469,213,0 +170776505517,213,0 +170776505565,213,0 +170776505612,214,0 +170776505660,214,0 +170776505710,214,0 +170776505758,214,0 +170776505806,214,0 +170776505854,214,0 +170776505903,214,0 +170776505952,214,0 +170776506000,214,0 +170776506048,215,0 +170776506098,215,0 +170776506147,215,0 +170776506195,214,0 +170776506245,214,0 +170776506292,213,0 +170776506340,213,0 +170776506388,214,0 +170776506436,214,0 +170776506484,214,0 +170776506532,214,0 +170776506580,214,0 +170776506627,214,0 +170776506677,214,0 +170776506725,214,0 +170776506774,215,0 +170776506824,214,0 +170776506872,215,0 +170776506919,215,0 +170776506967,214,0 +170776507015,215,0 +170776507065,215,0 +170776507112,214,0 +170776507160,214,0 +170776507208,214,0 +170776507256,214,0 +170776507304,214,0 +170776507354,214,0 +170776507402,214,0 +170776507449,214,0 +170776507497,214,0 +170776507545,214,0 +170776507595,214,0 +170776507642,215,0 +170776507692,214,0 +170776507740,215,0 +170776507788,215,0 +170776507836,215,0 +170776507885,215,0 +170776507933,215,0 +170776507981,214,0 +170776508029,215,0 +170776508077,215,0 +170776508125,214,0 +170776508174,214,0 +170776508222,214,0 +170776508270,214,0 +170776508319,214,0 +170776508367,214,0 +170776508417,214,0 +170776508466,214,0 +170776508516,214,0 +170776508564,215,0 +170776508612,214,0 +170776508660,215,0 +170776508709,215,0 +170776508759,215,0 +170776508807,215,0 +170776508855,215,0 +170776508902,215,0 +170776508950,215,0 +170776508998,215,0 +170776509048,214,0 +170776509096,213,0 +170776509144,214,0 +170776509192,214,0 +170776509240,214,0 +170776509289,214,0 +170776509337,214,0 +170776509385,214,0 +170776509433,214,0 +170776509481,214,0 +170776509529,214,0 +170776509576,215,0 +170776509624,214,0 +170776509674,214,0 +170776509722,215,0 +170776509771,215,0 +170776509821,215,0 +170776509869,214,0 +170776509917,214,0 +170776509965,214,0 +170776510012,213,0 +170776510060,213,0 +170776510110,213,0 +170776510158,214,0 +170776510205,214,0 +170776510253,214,0 +170776510303,214,0 +170776510352,214,0 +170776510400,214,0 +170776510450,214,0 +170776510499,214,0 +170776510549,215,0 +170776510596,214,0 +170776510644,215,0 +170776510692,215,0 +170776510740,215,0 +170776510790,215,0 +170776510839,215,0 +170776510887,214,0 +170776510935,213,0 +170776510983,213,0 +170776511031,213,0 +170776511079,214,0 +170776511127,214,0 +170776511174,214,0 +170776511222,214,0 +170776511272,214,0 +170776511321,214,0 +170776511369,214,0 +170776511417,214,0 +170776511465,214,0 +170776511513,214,0 +170776511561,214,0 +170776511609,215,0 +170776511657,214,0 +170776511705,215,0 +170776511754,214,0 +170776511802,214,0 +170776511850,213,0 +170776511899,213,0 +170776511949,213,0 +170776511998,213,0 +170776512048,213,0 +170776512097,213,0 +170776512145,213,0 +170776512193,213,0 +170776512241,214,0 +170776512289,214,0 +170776512337,214,0 +170776512386,214,0 +170776512436,214,0 +170776512484,214,0 +170776512532,214,0 +170776512581,214,0 +170776512629,214,0 +170776512679,214,0 +170776512728,214,0 +170776512778,213,0 +170776512825,213,0 +170776512873,213,0 +170776512921,213,0 +170776512971,213,0 +170776513019,213,0 +170776513066,213,0 +170776513116,213,0 +170776513165,213,0 +170776513213,213,0 +170776513261,214,0 +170776513309,214,0 +170776513357,214,0 +170776513406,214,0 +170776513454,214,0 +170776513502,214,0 +170776513550,214,0 +170776513600,214,0 +170776513649,214,0 +170776513697,213,0 +170776513745,213,0 +170776513793,213,0 +170776513841,213,0 +170776513890,214,0 +170776513940,214,0 +170776513988,214,0 +170776514036,214,0 +170776514085,214,0 +170776514135,214,0 +170776514183,214,0 +170776514231,214,0 +170776514280,214,0 +170776514329,214,0 +170776514377,214,0 +170776514427,214,0 +170776514476,215,0 +170776514524,215,0 +170776514574,215,0 +170776514622,214,0 +170776514669,213,0 +170776514717,213,0 +170776514765,213,0 +170776514813,214,0 +170776514861,213,0 +170776514909,214,0 +170776514958,214,0 +170776515006,214,0 +170776515054,214,0 +170776515104,214,0 +170776515152,214,0 +170776515201,214,0 +170776515249,214,0 +170776515297,215,0 +170776515345,215,0 +170776515393,214,0 +170776515440,214,0 +170776515490,214,0 +170776515538,214,0 +170776515585,213,0 +170776515633,213,0 +170776515683,213,0 +170776515732,213,0 +170776515780,213,0 +170776515828,214,0 +170776515876,214,0 +170776515924,214,0 +170776515973,214,0 +170776516023,214,0 +170776516072,214,0 +170776516120,214,0 +170776516169,214,0 +170776516217,214,0 +170776516265,214,0 +170776516313,214,0 +170776516363,214,0 +170776516411,215,0 +170776516459,214,0 +170776516507,213,0 +170776516556,213,0 +170776516605,213,0 +170776516653,213,0 +170776516701,213,0 +170776516749,214,0 +170776516797,214,0 +170776516845,214,0 +170776516892,214,0 +170776516940,214,0 +170776516988,214,0 +170776517036,214,0 +170776517083,214,0 +170776517131,215,0 +170776517179,215,0 +170776517227,214,0 +170776517274,215,0 +170776517322,214,0 +170776517370,215,0 +170776517418,213,0 +170776517466,213,0 +170776517514,213,0 +170776517562,213,0 +170776517610,213,0 +170776517657,213,0 +170776517705,213,0 +170776517753,214,0 +170776517803,214,0 +170776517851,214,0 +170776517899,214,0 +170776517946,214,0 +170776517994,214,0 +170776518042,214,0 +170776518090,214,0 +170776518140,214,0 +170776518188,215,0 +170776518236,215,0 +170776518284,215,0 +170776518331,214,0 +170776518379,213,0 +170776518429,213,0 +170776518478,214,0 +170776518528,213,0 +170776518577,213,0 +170776518625,214,0 +170776518673,214,0 +170776518721,213,0 +170776518770,214,0 +170776518818,214,0 +170776518866,214,0 +170776518914,214,0 +170776518962,214,0 +170776519012,214,0 +170776519060,214,0 +170776519109,214,0 +170776519158,215,0 +170776519206,215,0 +170776519254,214,0 +170776519302,213,0 +170776519350,213,0 +170776519398,213,0 +170776519445,213,0 +170776519493,213,0 +170776519541,213,0 +170776519589,213,0 +170776519637,213,0 +170776519684,213,0 +170776519732,213,0 +170776519782,214,0 +170776519831,214,0 +170776519881,214,0 +170776519929,214,0 +170776519976,214,0 +170776520024,214,0 +170776520072,214,0 +170776520122,214,0 +170776520169,215,0 +170776520217,214,0 +170776520265,213,0 +170776520313,214,0 +170776520361,214,0 +170776520409,214,0 +170776520457,214,0 +170776520505,214,0 +170776520552,214,0 +170776520600,214,0 +170776520648,214,0 +170776520696,214,0 +170776520744,214,0 +170776520792,214,0 +170776520839,214,0 +170776520887,215,0 +170776520935,214,0 +170776520983,215,0 +170776521031,215,0 +170776521081,214,0 +170776521130,214,0 +170776521180,213,0 +170776521229,213,0 +170776521277,213,0 +170776521325,214,0 +170776521374,214,0 +170776521422,214,0 +170776521470,214,0 +170776521518,214,0 +170776521566,214,0 +170776521614,214,0 +170776521662,214,0 +170776521710,214,0 +170776521758,214,0 +170776521806,215,0 +170776521853,214,0 +170776521901,214,0 +170776521951,215,0 +170776521999,214,0 +170776522046,214,0 +170776522096,214,0 +170776522144,213,0 +170776522192,213,0 +170776522240,213,0 +170776522288,213,0 +170776522337,214,0 +170776522385,214,0 +170776522435,214,0 +170776522482,214,0 +170776522530,214,0 +170776522578,214,0 +170776522628,214,0 +170776522677,214,0 +170776522725,214,0 +170776522773,215,0 +170776522821,214,0 +170776522869,215,0 +170776522917,214,0 +170776522965,214,0 +170776523013,214,0 +170776523061,213,0 +170776523109,213,0 +170776523157,213,0 +170776523205,213,0 +170776523252,214,0 +170776523300,214,0 +170776523350,214,0 +170776523398,214,0 +170776523447,214,0 +170776523495,214,0 +170776523545,214,0 +170776523593,214,0 +170776523642,214,0 +170776523690,214,0 +170776523739,214,0 +170776523789,215,0 +170776523838,215,0 +170776523886,215,0 +170776523936,214,0 +170776523984,213,0 +170776524031,213,0 +170776524079,213,0 +170776524127,214,0 +170776524177,213,0 +170776524225,214,0 +170776524273,214,0 +170776524320,214,0 +170776524368,214,0 +170776524418,214,0 +170776524466,214,0 +170776524513,215,0 +170776524561,214,0 +170776524609,215,0 +170776524657,215,0 +170776524705,215,0 +170776524753,215,0 +170776524801,215,0 +170776524850,214,0 +170776524898,213,0 +170776524946,213,0 +170776524994,213,0 +170776525042,213,0 +170776525090,214,0 +170776525137,214,0 +170776525185,214,0 +170776525233,214,0 +170776525282,214,0 +170776525330,214,0 +170776525378,214,0 +170776525426,214,0 +170776525474,214,0 +170776525522,214,0 +170776525571,215,0 +170776525619,214,0 +170776525667,215,0 +170776525715,214,0 +170776525763,215,0 +170776525811,214,0 +170776525859,213,0 +170776525906,213,0 +170776525954,214,0 +170776526002,214,0 +170776526050,214,0 +170776526100,214,0 +170776526148,214,0 +170776526195,214,0 +170776526243,214,0 +170776526291,214,0 +170776526339,214,0 +170776526389,214,0 +170776526438,215,0 +170776526486,215,0 +170776526536,215,0 +170776526584,215,0 +170776526631,215,0 +170776526680,215,0 +170776526727,214,0 +170776526775,213,0 +170776526823,213,0 +170776526871,213,0 +170776526919,213,0 +170776526967,213,0 +170776527014,214,0 +170776527062,214,0 +170776527112,214,0 +170776527160,214,0 +170776527208,214,0 +170776527256,214,0 +170776527303,214,0 +170776527351,214,0 +170776527399,214,0 +170776527449,214,0 +170776527497,215,0 +170776527544,214,0 +170776527592,214,0 +170776527640,214,0 +170776527688,213,0 +170776527736,213,0 +170776527785,213,0 +170776527833,213,0 +170776527881,214,0 +170776527929,214,0 +170776527977,214,0 +170776528025,213,0 +170776528073,214,0 +170776528122,214,0 +170776528170,214,0 +170776528218,214,0 +170776528268,214,0 +170776528316,214,0 +170776528365,214,0 +170776528413,214,0 +170776528461,214,0 +170776528509,214,0 +170776528557,214,0 +170776528606,214,0 +170776528654,213,0 +170776528703,213,0 +170776528751,213,0 +170776528801,214,0 +170776528850,214,0 +170776528898,214,0 +170776528946,214,0 +170776528994,214,0 +170776529041,214,0 +170776529089,214,0 +170776529137,214,0 +170776529185,214,0 +170776529233,214,0 +170776529281,214,0 +170776529328,215,0 +170776529376,214,0 +170776529426,215,0 +170776529474,215,0 +170776529521,214,0 +170776529569,213,0 +170776529617,213,0 +170776529666,214,0 +170776529714,214,0 +170776529764,214,0 +170776529811,214,0 +170776529861,214,0 +170776529909,214,0 +170776529958,214,0 +170776530006,214,0 +170776530054,214,0 +170776530102,214,0 +170776530152,215,0 +170776530200,215,0 +170776530249,215,0 +170776530297,215,0 +170776530345,215,0 +170776530395,215,0 +170776530442,214,0 +170776530490,213,0 +170776530538,213,0 +170776530588,213,0 +170776530636,213,0 +170776530684,213,0 +170776530732,213,0 +170776530779,213,0 +170776530827,214,0 +170776530877,214,0 +170776530925,214,0 +170776530974,214,0 +170776531022,214,0 +170776531070,214,0 +170776531120,214,0 +170776531169,214,0 +170776531217,214,0 +170776531266,215,0 +170776531316,214,0 +170776531364,214,0 +170776531414,214,0 +170776531462,213,0 +170776531511,213,0 +170776531561,213,0 +170776531610,214,0 +170776531658,213,0 +170776531706,214,0 +170776531754,214,0 +170776531802,214,0 +170776531851,214,0 +170776531901,214,0 +170776531950,214,0 +170776532000,214,0 +170776532048,215,0 +170776532096,215,0 +170776532144,214,0 +170776532193,215,0 +170776532241,215,0 +170776532289,215,0 +170776532337,214,0 +170776532385,213,0 +170776532433,213,0 +170776532481,213,0 +170776532528,213,0 +170776532576,214,0 +170776532624,214,0 +170776532674,214,0 +170776532722,214,0 +170776532771,214,0 +170776532820,214,0 +170776532870,214,0 +170776532920,214,0 +170776532969,215,0 +170776533019,214,0 +170776533068,215,0 +170776533118,215,0 +170776533167,215,0 +170776533215,215,0 +170776533263,214,0 +170776533311,213,0 +170776533360,213,0 +170776533408,213,0 +170776533456,213,0 +170776533504,213,0 +170776533554,213,0 +170776533602,214,0 +170776533651,213,0 +170776533699,214,0 +170776533749,214,0 +170776533797,214,0 +170776533846,214,0 +170776533896,214,0 +170776533943,214,0 +170776533991,214,0 +170776534039,214,0 +170776534087,214,0 +170776534135,214,0 +170776534183,214,0 +170776534231,213,0 +170776534279,213,0 +170776534327,213,0 +170776534375,213,0 +170776534423,213,0 +170776534471,213,0 +170776534518,213,0 +170776534568,214,0 +170776534617,214,0 +170776534667,214,0 +170776534715,214,0 +170776534764,214,0 +170776534812,214,0 +170776534860,214,0 +170776534910,214,0 +170776534958,214,0 +170776535007,214,0 +170776535055,214,0 +170776535104,214,0 +170776535154,213,0 +170776535202,213,0 +170776535251,213,0 +170776535299,213,0 +170776535347,213,0 +170776535397,214,0 +170776535446,214,0 +170776535494,214,0 +170776535544,214,0 +170776535592,214,0 +170776535640,214,0 +170776535687,214,0 +170776535735,214,0 +170776535785,215,0 +170776535833,214,0 +170776535881,215,0 +170776535928,215,0 +170776535976,215,0 +170776536024,215,0 +170776536072,213,0 +170776536120,214,0 +170776536168,214,0 +170776536216,214,0 +170776536264,214,0 +170776536312,214,0 +170776536361,214,0 +170776536409,214,0 +170776536457,214,0 +170776536507,214,0 +170776536554,214,0 +170776536604,215,0 +170776536653,215,0 +170776536703,215,0 +170776536752,215,0 +170776536800,214,0 +170776536848,215,0 +170776536896,215,0 +170776536944,215,0 +170776536994,214,0 +170776537042,214,0 +170776537089,214,0 +170776537137,214,0 +170776537185,214,0 +170776537235,214,0 +170776537284,214,0 +170776537334,214,0 +170776537381,214,0 +170776537429,214,0 +170776537479,214,0 +170776537527,215,0 +170776537575,215,0 +170776537623,215,0 +170776537670,215,0 +170776537718,215,0 +170776537768,215,0 +170776537816,215,0 +170776537864,215,0 +170776537912,214,0 +170776537961,213,0 +170776538009,214,0 +170776538057,214,0 +170776538105,214,0 +170776538153,214,0 +170776538201,214,0 +170776538250,214,0 +170776538298,214,0 +170776538348,214,0 +170776538396,214,0 +170776538444,214,0 +170776538492,214,0 +170776538541,215,0 +170776538589,215,0 +170776538637,214,0 +170776538685,215,0 +170776538734,215,0 +170776538784,215,0 +170776538833,214,0 +170776538881,213,0 +170776538929,213,0 +170776538979,213,0 +170776539028,213,0 +170776539076,214,0 +170776539124,214,0 +170776539172,214,0 +170776539220,214,0 +170776539268,214,0 +170776539316,214,0 +170776539363,214,0 +170776539411,214,0 +170776539459,214,0 +170776539507,214,0 +170776539557,214,0 +170776539605,215,0 +170776539653,214,0 +170776539701,214,0 +170776539750,214,0 +170776539800,213,0 +170776539848,213,0 +170776539897,213,0 +170776539947,214,0 +170776539995,213,0 +170776540044,214,0 +170776540093,214,0 +170776540143,214,0 +170776540191,214,0 +170776540240,214,0 +170776540288,214,0 +170776540336,214,0 +170776540384,214,0 +170776540432,214,0 +170776540482,214,0 +170776540529,215,0 +170776540577,214,0 +170776540625,215,0 +170776540673,215,0 +170776540721,214,0 +170776540769,213,0 +170776540817,214,0 +170776540865,213,0 +170776540913,214,0 +170776540961,214,0 +170776541010,214,0 +170776541058,214,0 +170776541106,214,0 +170776541156,214,0 +170776541204,214,0 +170776541251,214,0 +170776541299,214,0 +170776541349,214,0 +170776541397,215,0 +170776541444,214,0 +170776541492,215,0 +170776541540,215,0 +170776541588,215,0 +170776541636,214,0 +170776541684,213,0 +170776541731,213,0 +170776541781,213,0 +170776541829,214,0 +170776541878,214,0 +170776541926,214,0 +170776541974,214,0 +170776542022,214,0 +170776542070,214,0 +170776542118,214,0 +170776542166,214,0 +170776542215,214,0 +170776542265,214,0 +170776542312,215,0 +170776542360,214,0 +170776542408,215,0 +170776542456,215,0 +170776542504,215,0 +170776542552,215,0 +170776542600,213,0 +170776542648,213,0 +170776542696,213,0 +170776542744,213,0 +170776542793,213,0 +170776542843,213,0 +170776542892,213,0 +170776542940,213,0 +170776542990,214,0 +170776543038,214,0 +170776543087,214,0 +170776543137,214,0 +170776543186,214,0 +170776543234,215,0 +170776543284,214,0 +170776543332,215,0 +170776543380,215,0 +170776543429,214,0 +170776543477,214,0 +170776543527,213,0 +170776543576,213,0 +170776543626,213,0 +170776543673,213,0 +170776543721,213,0 +170776543769,213,0 +170776543817,213,0 +170776543865,214,0 +170776543913,213,0 +170776543961,213,0 +170776544009,213,0 +170776544057,214,0 +170776544105,214,0 +170776544154,214,0 +170776544202,214,0 +170776544250,214,0 +170776544298,214,0 +170776544348,214,0 +170776544395,214,0 +170776544443,214,0 +170776544491,213,0 +170776544539,213,0 +170776544587,213,0 +170776544637,214,0 +170776544685,214,0 +170776544733,214,0 +170776544781,214,0 +170776544829,214,0 +170776544877,214,0 +170776544925,214,0 +170776544974,214,0 +170776545022,214,0 +170776545071,214,0 +170776545119,214,0 +170776545167,215,0 +170776545217,215,0 +170776545265,214,0 +170776545313,215,0 +170776545361,214,0 +170776545410,213,0 +170776545458,213,0 +170776545506,214,0 +170776545554,213,0 +170776545602,213,0 +170776545651,214,0 +170776545699,214,0 +170776545747,214,0 +170776545795,214,0 +170776545843,214,0 +170776545891,214,0 +170776545938,214,0 +170776545986,214,0 +170776546034,214,0 +170776546082,215,0 +170776546130,215,0 +170776546180,215,0 +170776546228,215,0 +170776546275,215,0 +170776546323,213,0 +170776546371,213,0 +170776546419,214,0 +170776546467,213,0 +170776546516,214,0 +170776546566,214,0 +170776546614,214,0 +170776546663,214,0 +170776546711,214,0 +170776546761,214,0 +170776546809,214,0 +170776546857,214,0 +170776546906,214,0 +170776546956,214,0 +170776547003,214,0 +170776547053,214,0 +170776547102,215,0 +170776547150,214,0 +170776547198,214,0 +170776547246,214,0 +170776547294,213,0 +170776547342,213,0 +170776547390,214,0 +170776547439,213,0 +170776547489,214,0 +170776547538,213,0 +170776547586,214,0 +170776547634,214,0 +170776547682,214,0 +170776547731,214,0 +170776547781,214,0 +170776547830,214,0 +170776547880,214,0 +170776547930,214,0 +170776547977,215,0 +170776548025,215,0 +170776548075,214,0 +170776548123,214,0 +170776548171,214,0 +170776548219,213,0 +170776548267,213,0 +170776548316,213,0 +170776548366,214,0 +170776548415,214,0 +170776548465,214,0 +170776548515,214,0 +170776548563,214,0 +170776548611,214,0 +170776548660,214,0 +170776548710,214,0 +170776548759,214,0 +170776548807,215,0 +170776548855,214,0 +170776548905,215,0 +170776548954,214,0 +170776549004,215,0 +170776549052,214,0 +170776549099,214,0 +170776549147,213,0 +170776549195,213,0 +170776549243,213,0 +170776549293,214,0 +170776549341,214,0 +170776549390,213,0 +170776549438,214,0 +170776549486,214,0 +170776549534,214,0 +170776549583,214,0 +170776549631,214,0 +170776549679,214,0 +170776549729,214,0 +170776549777,214,0 +170776549824,214,0 +170776549872,214,0 +170776549922,214,0 +170776549970,214,0 +170776550018,214,0 +170776550066,213,0 +170776550114,213,0 +170776550163,213,0 +170776550211,213,0 +170776550259,214,0 +170776550309,214,0 +170776550358,214,0 +170776550406,214,0 +170776550455,214,0 +170776550503,214,0 +170776550551,214,0 +170776550599,214,0 +170776550647,214,0 +170776550695,214,0 +170776550743,215,0 +170776550792,215,0 +170776550840,215,0 +170776550888,214,0 +170776550936,214,0 +170776550984,213,0 +170776551032,213,0 +170776551082,214,0 +170776551131,213,0 +170776551181,214,0 +170776551229,214,0 +170776551276,214,0 +170776551324,214,0 +170776551372,214,0 +170776551420,214,0 +170776551470,214,0 +170776551519,214,0 +170776551569,215,0 +170776551617,215,0 +170776551665,215,0 +170776551712,215,0 +170776551760,215,0 +170776551808,215,0 +170776551856,214,0 +170776551906,214,0 +170776551955,214,0 +170776552005,214,0 +170776552053,214,0 +170776552101,214,0 +170776552149,214,0 +170776552198,214,0 +170776552248,214,0 +170776552297,214,0 +170776552345,214,0 +170776552393,214,0 +170776552441,214,0 +170776552490,215,0 +170776552538,215,0 +170776552588,215,0 +170776552636,214,0 +170776552684,215,0 +170776552733,215,0 +170776552781,214,0 +170776552831,214,0 +170776552879,213,0 +170776552927,213,0 +170776552975,214,0 +170776553024,214,0 +170776553072,214,0 +170776553120,214,0 +170776553168,214,0 +170776553216,214,0 +170776553264,214,0 +170776553312,214,0 +170776553359,214,0 +170776553407,214,0 +170776553455,215,0 +170776553503,215,0 +170776553551,215,0 +170776553599,215,0 +170776553647,215,0 +170776553694,215,0 +170776553742,214,0 +170776553790,213,0 +170776553838,213,0 +170776553886,213,0 +170776553934,213,0 +170776553983,213,0 +170776554031,214,0 +170776554079,214,0 +170776554127,214,0 +170776554174,214,0 +170776554222,214,0 +170776554272,214,0 +170776554321,214,0 +170776554369,214,0 +170776554417,214,0 +170776554466,214,0 +170776554514,214,0 +170776554562,214,0 +170776554611,214,0 +170776554661,214,0 +170776554709,213,0 +170776554757,213,0 +170776554805,213,0 +170776554852,214,0 +170776554900,214,0 +170776554948,214,0 +170776554996,214,0 +170776555044,214,0 +170776555092,214,0 +170776555139,214,0 +170776555187,214,0 +170776555236,214,0 +170776555284,214,0 +170776555332,214,0 +170776555382,214,0 +170776555429,214,0 +170776555477,214,0 +170776555525,215,0 +170776555573,215,0 +170776555621,214,0 +170776555669,213,0 +170776555716,213,0 +170776555764,213,0 +170776555812,214,0 +170776555860,214,0 +170776555908,214,0 +170776555956,214,0 +170776556004,214,0 +170776556051,214,0 +170776556099,214,0 +170776556147,214,0 +170776556195,214,0 +170776556243,215,0 +170776556292,214,0 +170776556340,215,0 +170776556388,215,0 +170776556436,215,0 +170776556484,214,0 +170776556532,214,0 +170776556580,213,0 +170776556629,213,0 +170776556679,213,0 +170776556726,213,0 +170776556774,213,0 +170776556822,213,0 +170776556870,214,0 +170776556920,214,0 +170776556968,214,0 +170776557016,214,0 +170776557064,214,0 +170776557113,214,0 +170776557161,214,0 +170776557210,214,0 +170776557260,214,0 +170776557308,214,0 +170776557357,214,0 +170776557407,214,0 +170776557455,214,0 +170776557504,213,0 +170776557552,213,0 +170776557600,213,0 +170776557648,213,0 +170776557696,213,0 +170776557744,213,0 +170776557794,213,0 +170776557842,213,0 +170776557890,214,0 +170776557937,214,0 +170776557985,214,0 +170776558033,214,0 +170776558083,214,0 +170776558131,214,0 +170776558179,214,0 +170776558227,214,0 +170776558275,215,0 +170776558323,214,0 +170776558371,214,0 +170776558420,214,0 +170776558468,214,0 +170776558516,213,0 +170776558564,213,0 +170776558613,213,0 +170776558661,214,0 +170776558709,214,0 +170776558757,214,0 +170776558806,214,0 +170776558854,214,0 +170776558902,214,0 +170776558952,214,0 +170776559001,214,0 +170776559049,215,0 +170776559099,215,0 +170776559146,215,0 +170776559194,215,0 +170776559244,215,0 +170776559292,214,0 +170776559340,214,0 +170776559388,213,0 +170776559436,213,0 +170776559485,213,0 +170776559533,214,0 +170776559581,214,0 +170776559630,214,0 +170776559678,214,0 +170776559728,214,0 +170776559776,214,0 +170776559824,214,0 +170776559872,214,0 +170776559920,214,0 +170776559969,214,0 +170776560018,214,0 +170776560066,215,0 +170776560114,215,0 +170776560162,215,0 +170776560212,215,0 +170776560259,214,0 +170776560307,213,0 +170776560355,213,0 +170776560403,213,0 +170776560451,213,0 +170776560499,213,0 +170776560547,214,0 +170776560594,214,0 +170776560642,214,0 +170776560690,214,0 +170776560740,214,0 +170776560787,214,0 +170776560835,215,0 +170776560883,214,0 +170776560932,215,0 +170776560980,215,0 +170776561028,215,0 +170776561076,215,0 +170776561124,215,0 +170776561171,214,0 +170776561219,213,0 +170776561267,213,0 +170776561317,213,0 +170776561366,213,0 +170776561415,213,0 +170776561465,213,0 +170776561513,213,0 +170776561561,214,0 +170776561608,214,0 +170776561656,214,0 +170776561704,214,0 +170776561753,214,0 +170776561801,214,0 +170776561849,214,0 +170776561897,214,0 +170776561945,215,0 +170776561993,215,0 +170776562041,215,0 +170776562088,215,0 +170776562136,214,0 +170776562184,213,0 +170776562232,213,0 +170776562280,213,0 +170776562328,213,0 +170776562376,213,0 +170776562423,213,0 +170776562473,214,0 +170776562521,214,0 +170776562569,214,0 +170776562617,214,0 +170776562665,214,0 +170776562713,214,0 +170776562762,214,0 +170776562811,214,0 +170776562859,214,0 +170776562909,214,0 +170776562957,214,0 +170776563005,214,0 +170776563053,214,0 +170776563102,213,0 +170776563150,213,0 +170776563198,213,0 +170776563246,213,0 +170776563294,213,0 +170776563343,213,0 +170776563391,214,0 +170776563439,214,0 +170776563489,214,0 +170776563537,214,0 +170776563585,214,0 +170776563633,214,0 +170776563681,214,0 +170776563728,215,0 +170776563776,214,0 +170776563824,215,0 +170776563872,214,0 +170776563920,214,0 +170776563969,214,0 +170776564017,213,0 +170776564067,213,0 +170776564116,214,0 +170776564166,213,0 +170776564214,213,0 +170776564263,214,0 +170776564313,214,0 +170776564361,214,0 +170776564409,214,0 +170776564457,214,0 +170776564505,214,0 +170776564554,214,0 +170776564602,214,0 +170776564650,214,0 +170776564698,214,0 +170776564747,215,0 +170776564797,214,0 +170776564845,214,0 +170776564894,214,0 +170776564942,213,0 +170776564991,213,0 +170776565039,213,0 +170776565087,213,0 +170776565137,214,0 +170776565185,213,0 +170776565232,213,0 +170776565280,214,0 +170776565328,213,0 +170776565376,214,0 +170776565424,214,0 +170776565472,214,0 +170776565519,214,0 +170776565567,214,0 +170776565615,214,0 +170776565663,214,0 +170776565713,214,0 +170776565760,214,0 +170776565808,214,0 +170776565856,214,0 +170776565904,213,0 +170776565952,213,0 +170776566000,213,0 +170776566048,214,0 +170776566096,213,0 +170776566145,214,0 +170776566195,214,0 +170776566243,214,0 +170776566292,214,0 +170776566340,214,0 +170776566388,214,0 +170776566436,214,0 +170776566484,214,0 +170776566532,214,0 +170776566580,215,0 +170776566629,215,0 +170776566677,214,0 +170776566727,214,0 +170776566774,215,0 +170776566824,214,0 +170776566874,214,0 +170776566923,214,0 +170776566973,214,0 +170776567022,214,0 +170776567071,214,0 +170776567119,214,0 +170776567169,214,0 +170776567218,214,0 +170776567268,214,0 +170776567317,214,0 +170776567367,214,0 +170776567415,215,0 +170776567464,215,0 +170776567512,215,0 +170776567560,215,0 +170776567608,215,0 +170776567658,215,0 +170776567706,214,0 +170776567754,214,0 +170776567801,213,0 +170776567849,214,0 +170776567899,214,0 +170776567947,214,0 +170776567995,214,0 +170776568044,214,0 +170776568094,214,0 +170776568143,214,0 +170776568193,214,0 +170776568242,214,0 +170776568292,214,0 +170776568340,215,0 +170776568388,215,0 +170776568436,214,0 +170776568483,215,0 +170776568531,215,0 +170776568581,214,0 +170776568630,214,0 +170776568680,214,0 +170776568729,214,0 +170776568777,214,0 +170776568827,214,0 +170776568876,214,0 +170776568926,214,0 +170776568975,214,0 +170776569023,214,0 +170776569071,214,0 +170776569121,215,0 +170776569169,215,0 +170776569217,215,0 +170776569264,215,0 +170776569312,215,0 +170776569360,215,0 +170776569410,215,0 +170776569459,215,0 +170776569507,215,0 +170776569557,214,0 +170776569606,213,0 +170776569656,213,0 +170776569704,213,0 +170776569752,214,0 +170776569801,214,0 +170776569849,214,0 +170776569897,214,0 +170776569945,214,0 +170776569993,214,0 +170776570042,214,0 +170776570090,214,0 +170776570139,215,0 +170776570187,215,0 +170776570237,215,0 +170776570285,215,0 +170776570334,215,0 +170776570382,215,0 +170776570432,215,0 +170776570480,214,0 +170776570527,214,0 +170776570575,213,0 +170776570623,213,0 +170776570671,213,0 +170776570719,213,0 +170776570767,214,0 +170776570815,214,0 +170776570863,214,0 +170776570911,214,0 +170776570961,214,0 +170776571010,214,0 +170776571058,214,0 +170776571108,215,0 +170776571156,214,0 +170776571204,215,0 +170776571252,215,0 +170776571301,215,0 +170776571349,215,0 +170776571398,214,0 +170776571446,214,0 +170776571494,213,0 +170776571542,213,0 +170776571592,213,0 +170776571641,213,0 +170776571691,214,0 +170776571738,213,0 +170776571786,213,0 +170776571836,213,0 +170776571885,214,0 +170776571935,214,0 +170776571983,214,0 +170776572031,214,0 +170776572079,214,0 +170776572127,214,0 +170776572176,215,0 +170776572224,214,0 +170776572274,214,0 +170776572321,214,0 +170776572369,214,0 +170776572417,213,0 +170776572465,213,0 +170776572513,213,0 +170776572563,213,0 +170776572611,213,0 +170776572659,214,0 +170776572706,213,0 +170776572756,213,0 +170776572805,214,0 +170776572853,214,0 +170776572901,214,0 +170776572949,214,0 +170776572999,214,0 +170776573047,214,0 +170776573095,214,0 +170776573144,214,0 +170776573192,215,0 +170776573240,214,0 +170776573288,214,0 +170776573336,213,0 +170776573385,213,0 +170776573433,214,0 +170776573481,213,0 +170776573529,214,0 +170776573578,214,0 +170776573628,214,0 +170776573676,214,0 +170776573725,214,0 +170776573773,214,0 +170776573823,214,0 +170776573872,214,0 +170776573920,214,0 +170776573968,214,0 +170776574016,215,0 +170776574065,215,0 +170776574115,215,0 +170776574163,215,0 +170776574211,214,0 +170776574259,214,0 +170776574307,213,0 +170776574356,213,0 +170776574404,214,0 +170776574452,214,0 +170776574500,214,0 +170776574549,214,0 +170776574597,214,0 +170776574647,214,0 +170776574695,214,0 +170776574743,214,0 +170776574791,214,0 +170776574840,214,0 +170776574888,215,0 +170776574937,215,0 +170776574985,215,0 +170776575033,215,0 +170776575083,215,0 +170776575132,214,0 +170776575180,214,0 +170776575228,214,0 +170776575276,214,0 +170776575324,214,0 +170776575373,214,0 +170776575421,214,0 +170776575469,214,0 +170776575519,214,0 +170776575567,214,0 +170776575616,214,0 +170776575664,215,0 +170776575712,215,0 +170776575761,215,0 +170776575811,215,0 +170776575860,215,0 +170776575910,215,0 +170776575958,215,0 +170776576006,215,0 +170776576054,215,0 +170776576103,214,0 +170776576151,213,0 +170776576199,213,0 +170776576247,214,0 +170776576295,214,0 +170776576342,213,0 +170776576390,214,0 +170776576438,214,0 +170776576488,214,0 +170776576537,214,0 +170776576585,214,0 +170776576633,214,0 +170776576681,214,0 +170776576730,214,0 +170776576778,215,0 +170776576826,215,0 +170776576875,215,0 +170776576923,214,0 +170776576971,215,0 +170776577021,214,0 +170776577069,214,0 +170776577117,213,0 +170776577165,213,0 +170776577214,213,0 +170776577262,213,0 +170776577310,214,0 +170776577359,214,0 +170776577409,214,0 +170776577457,214,0 +170776577505,214,0 +170776577553,214,0 +170776577602,214,0 +170776577652,214,0 +170776577700,214,0 +170776577748,214,0 +170776577796,214,0 +170776577844,214,0 +170776577892,215,0 +170776577940,214,0 +170776577987,213,0 +170776578035,213,0 +170776578083,213,0 +170776578131,214,0 +170776578179,213,0 +170776578227,214,0 +170776578276,214,0 +170776578324,214,0 +170776578372,214,0 +170776578420,214,0 +170776578468,214,0 +170776578518,214,0 +170776578566,214,0 +170776578614,214,0 +170776578662,215,0 +170776578710,214,0 +170776578759,214,0 +170776578807,215,0 +170776578855,215,0 +170776578904,213,0 +170776578952,213,0 +170776579000,213,0 +170776579048,213,0 +170776579097,213,0 +170776579145,213,0 +170776579195,213,0 +170776579243,213,0 +170776579291,213,0 +170776579339,214,0 +170776579386,214,0 +170776579434,214,0 +170776579482,214,0 +170776579530,214,0 +170776579578,214,0 +170776579628,214,0 +170776579677,214,0 +170776579725,214,0 +170776579775,214,0 +170776579823,214,0 +170776579871,213,0 +170776579920,213,0 +170776579968,213,0 +170776580016,213,0 +170776580064,213,0 +170776580113,213,0 +170776580161,213,0 +170776580209,213,0 +170776580257,213,0 +170776580305,214,0 +170776580355,214,0 +170776580404,214,0 +170776580452,214,0 +170776580500,214,0 +170776580550,214,0 +170776580599,214,0 +170776580647,214,0 +170776580695,214,0 +170776580744,214,0 +170776580793,213,0 +170776580840,213,0 +170776580888,213,0 +170776580936,213,0 +170776580984,213,0 +170776581034,213,0 +170776581083,213,0 +170776581131,213,0 +170776581181,213,0 +170776581229,214,0 +170776581278,214,0 +170776581326,214,0 +170776581374,214,0 +170776581422,214,0 +170776581470,214,0 +170776581518,214,0 +170776581567,214,0 +170776581615,214,0 +170776581663,215,0 +170776581711,213,0 +170776581759,213,0 +170776581809,213,0 +170776581856,213,0 +170776581904,213,0 +170776581952,213,0 +170776582000,214,0 +170776582048,214,0 +170776582096,214,0 +170776582144,214,0 +170776582192,214,0 +170776582239,214,0 +170776582287,214,0 +170776582335,214,0 +170776582385,214,0 +170776582433,215,0 +170776582480,215,0 +170776582530,215,0 +170776582578,214,0 +170776582627,214,0 +170776582675,213,0 +170776582725,213,0 +170776582772,213,0 +170776582820,213,0 +170776582870,214,0 +170776582918,214,0 +170776582966,214,0 +170776583013,214,0 +170776583061,214,0 +170776583109,214,0 +170776583157,214,0 +170776583205,214,0 +170776583255,214,0 +170776583303,214,0 +170776583351,214,0 +170776583399,214,0 +170776583447,214,0 +170776583496,214,0 +170776583544,214,0 +170776583594,215,0 +170776583643,215,0 +170776583691,215,0 +170776583739,215,0 +170776583787,215,0 +170776583836,215,0 +170776583884,215,0 +170776583933,215,0 +170776583983,215,0 +170776584031,213,0 +170776584079,213,0 +170776584127,213,0 +170776584174,214,0 +170776584224,214,0 +170776584274,214,0 +170776584323,214,0 +170776584371,214,0 +170776584420,214,0 +170776584468,214,0 +170776584516,214,0 +170776584564,214,0 +170776584612,214,0 +170776584662,214,0 +170776584710,214,0 +170776584759,214,0 +170776584808,215,0 +170776584856,215,0 +170776584904,214,0 +170776584954,213,0 +170776585002,213,0 +170776585049,213,0 +170776585097,213,0 +170776585147,213,0 +170776585195,213,0 +170776585243,213,0 +170776585291,213,0 +170776585338,214,0 +170776585386,213,0 +170776585434,214,0 +170776585484,214,0 +170776585532,214,0 +170776585580,214,0 +170776585628,214,0 +170776585676,214,0 +170776585725,214,0 +170776585775,214,0 +170776585824,215,0 +170776585874,214,0 +170776585922,213,0 +170776585971,213,0 +170776586019,213,0 +170776586067,213,0 +170776586115,213,0 +170776586163,214,0 +170776586211,214,0 +170776586259,214,0 +170776586308,214,0 +170776586358,214,0 +170776586406,214,0 +170776586453,214,0 +170776586503,214,0 +170776586551,214,0 +170776586599,214,0 +170776586648,214,0 +170776586696,214,0 +170776586745,215,0 +170776586793,214,0 +170776586841,213,0 +170776586889,213,0 +170776586937,213,0 +170776586985,213,0 +170776587035,213,0 +170776587083,214,0 +170776587131,214,0 +170776587178,214,0 +170776587226,214,0 +170776587274,214,0 +170776587322,214,0 +170776587372,214,0 +170776587420,215,0 +170776587468,215,0 +170776587515,215,0 +170776587563,214,0 +170776587611,215,0 +170776587661,214,0 +170776587708,214,0 +170776587758,214,0 +170776587806,213,0 +170776587855,213,0 +170776587905,213,0 +170776587953,213,0 +170776588002,213,0 +170776588052,214,0 +170776588101,213,0 +170776588151,214,0 +170776588198,214,0 +170776588246,214,0 +170776588294,214,0 +170776588342,214,0 +170776588390,214,0 +170776588438,214,0 +170776588487,215,0 +170776588535,215,0 +170776588585,215,0 +170776588634,214,0 +170776588682,214,0 +170776588732,213,0 +170776588781,213,0 +170776588829,214,0 +170776588878,214,0 +170776588926,214,0 +170776588976,214,0 +170776589024,214,0 +170776589073,214,0 +170776589121,214,0 +170776589169,214,0 +170776589217,214,0 +170776589265,214,0 +170776589314,214,0 +170776589362,215,0 +170776589410,215,0 +170776589459,215,0 +170776589507,215,0 +170776589557,215,0 +170776589605,214,0 +170776589653,213,0 +170776589701,213,0 +170776589748,213,0 +170776589796,213,0 +170776589846,213,0 +170776589894,213,0 +170776589941,213,0 +170776589991,214,0 +170776590039,214,0 +170776590087,214,0 +170776590136,214,0 +170776590184,214,0 +170776590232,214,0 +170776590280,214,0 +170776590328,214,0 +170776590377,214,0 +170776590425,214,0 +170776590473,214,0 +170776590521,214,0 +170776590569,213,0 +170776590617,213,0 +170776590665,213,0 +170776590713,213,0 +170776590763,213,0 +170776590811,213,0 +170776590858,213,0 +170776590907,213,0 +170776590956,214,0 +170776591004,214,0 +170776591052,214,0 +170776591101,214,0 +170776591151,214,0 +170776591200,214,0 +170776591248,214,0 +170776591298,214,0 +170776591346,214,0 +170776591395,214,0 +170776591443,214,0 +170776591493,213,0 +170776591542,213,0 +170776591590,213,0 +170776591640,213,0 +170776591689,213,0 +170776591737,213,0 +170776591786,214,0 +170776591836,214,0 +170776591885,214,0 +170776591933,214,0 +170776591981,214,0 +170776592029,214,0 +170776592079,214,0 +170776592127,214,0 +170776592175,215,0 +170776592224,215,0 +170776592273,215,0 +170776592323,215,0 +170776592372,214,0 +170776592420,213,0 +170776592468,213,0 +170776592516,214,0 +170776592564,213,0 +170776592612,214,0 +170776592659,213,0 +170776592707,214,0 +170776592755,214,0 +170776592803,214,0 +170776592852,214,0 +170776592900,214,0 +170776592948,214,0 +170776592998,214,0 +170776593047,215,0 +170776593095,215,0 +170776593143,215,0 +170776593191,215,0 +170776593239,214,0 +170776593288,215,0 +170776593336,214,0 +170776593384,213,0 +170776593433,213,0 +170776593483,213,0 +170776593532,214,0 +170776593580,214,0 +170776593628,214,0 +170776593678,214,0 +170776593726,214,0 +170776593773,214,0 +170776593821,215,0 +170776593869,215,0 +170776593917,215,0 +170776593965,214,0 +170776594013,214,0 +170776594061,215,0 +170776594109,215,0 +170776594158,215,0 +170776594206,215,0 +170776594254,214,0 +170776594302,213,0 +170776594349,213,0 +170776594397,213,0 +170776594445,214,0 +170776594493,214,0 +170776594541,214,0 +170776594590,214,0 +170776594638,214,0 +170776594686,214,0 +170776594735,214,0 +170776594783,214,0 +170776594831,214,0 +170776594880,215,0 +170776594928,215,0 +170776594977,215,0 +170776595025,215,0 +170776595073,215,0 +170776595121,215,0 +170776595169,214,0 +170776595216,213,0 +170776595266,213,0 +170776595314,214,0 +170776595363,213,0 +170776595411,214,0 +170776595459,214,0 +170776595506,214,0 +170776595554,214,0 +170776595602,214,0 +170776595652,214,0 +170776595700,214,0 +170776595749,214,0 +170776595797,215,0 +170776595845,215,0 +170776595893,215,0 +170776595941,215,0 +170776595989,215,0 +170776596037,215,0 +170776596086,215,0 +170776596136,214,0 +170776596185,214,0 +170776596234,214,0 +170776596282,214,0 +170776596330,214,0 +170776596380,214,0 +170776596427,214,0 +170776596475,214,0 +170776596523,215,0 +170776596571,214,0 +170776596620,215,0 +170776596668,215,0 +170776596716,214,0 +170776596764,215,0 +170776596812,215,0 +170776596860,215,0 +170776596909,215,0 +170776596957,215,0 +170776597005,215,0 +170776597053,214,0 +170776597101,214,0 +170776597148,214,0 +170776597196,214,0 +170776597244,214,0 +170776597294,214,0 +170776597341,214,0 +170776597389,214,0 +170776597437,214,0 +170776597485,214,0 +170776597533,214,0 +170776597581,215,0 +170776597629,215,0 +170776597677,215,0 +170776597724,215,0 +170776597772,215,0 +170776597820,215,0 +170776597868,215,0 +170776597916,215,0 +170776597965,214,0 +170776598013,213,0 +170776598063,213,0 +170776598112,213,0 +170776598160,214,0 +170776598209,214,0 +170776598259,214,0 +170776598308,214,0 +170776598356,214,0 +170776598404,214,0 +170776598453,214,0 +170776598501,214,0 +170776598549,215,0 +170776598599,215,0 +170776598647,215,0 +170776598694,215,0 +170776598742,215,0 +170776598790,215,0 +170776598838,215,0 +170776598886,215,0 +170776598935,213,0 +170776598983,213,0 +170776599031,213,0 +170776599079,214,0 +170776599127,213,0 +170776599177,214,0 +170776599226,214,0 +170776599274,214,0 +170776599322,214,0 +170776599370,214,0 +170776599418,214,0 +170776599466,214,0 +170776599514,214,0 +170776599563,214,0 +170776599611,214,0 +170776599659,214,0 +170776599707,214,0 +170776599756,214,0 +170776599804,214,0 +170776599852,214,0 +170776599900,213,0 +170776599948,213,0 +170776599996,213,0 +170776600044,213,0 +170776600092,213,0 +170776600140,213,0 +170776600187,213,0 +170776600235,213,0 +170776600283,214,0 +170776600331,214,0 +170776600379,214,0 +170776600427,214,0 +170776600474,214,0 +170776600522,214,0 +170776600570,214,0 +170776600618,214,0 +170776600666,214,0 +170776600714,214,0 +170776600761,214,0 +170776600809,213,0 +170776600857,213,0 +170776600905,213,0 +170776600953,213,0 +170776601001,213,0 +170776601049,213,0 +170776601098,214,0 +170776601146,213,0 +170776601194,213,0 +170776601242,213,0 +170776601290,213,0 +170776601338,213,0 +170776601386,213,0 +170776601435,214,0 +170776601483,214,0 +170776601531,214,0 +170776601579,213,0 +170776601628,213,0 +170776601676,213,0 +170776601726,213,0 +170776601774,214,0 +170776601822,213,0 +170776601870,213,0 +170776601918,213,0 +170776601967,214,0 +170776602017,213,0 +170776602065,213,0 +170776602112,214,0 +170776602160,214,0 +170776602208,213,0 +170776602256,213,0 +170776602306,213,0 +170776602353,214,0 +170776602401,214,0 +170776602451,213,0 +170776602499,214,0 +170776602548,213,0 +170776602598,213,0 +170776602647,213,0 +170776602695,213,0 +170776602743,214,0 +170776602792,213,0 +170776602840,213,0 +170776602888,213,0 +170776602936,213,0 +170776602986,213,0 +170776603033,213,0 +170776603083,213,0 +170776603131,214,0 +170776603179,213,0 +170776603228,213,0 +170776603276,214,0 +170776603326,213,0 +170776603374,213,0 +170776603422,214,0 +170776603469,213,0 +170776603517,214,0 +170776603565,213,0 +170776603613,213,0 +170776603661,213,0 +170776603709,214,0 +170776603758,213,0 +170776603808,213,0 +170776603856,214,0 +170776603904,213,0 +170776603952,214,0 +170776603999,213,0 +170776604049,213,0 +170776604099,214,0 +170776604146,213,0 +170776604194,213,0 +170776604242,213,0 +170776604292,213,0 +170776604340,213,0 +170776604388,213,0 +170776604436,213,0 +170776604484,213,0 +170776604533,213,0 +170776604581,214,0 +170776604629,214,0 +170776604677,213,0 +170776604725,213,0 +170776604774,214,0 +170776604822,214,0 +170776604870,213,0 +170776604918,214,0 +170776604966,213,0 +170776605014,214,0 +170776605063,213,0 +170776605111,214,0 +170776605161,213,0 +170776605208,213,0 +170776605258,213,0 +170776605306,213,0 +170776605355,214,0 +170776605403,214,0 +170776605451,214,0 +170776605499,213,0 +170776605547,214,0 +170776605595,214,0 +170776605645,213,0 +170776605692,213,0 +170776605742,213,0 +170776605790,213,0 +170776605838,213,0 +170776605887,213,0 +170776605937,213,0 +170776605985,214,0 +170776606033,213,0 +170776606081,213,0 +170776606129,213,0 +170776606178,213,0 +170776606226,214,0 +170776606274,213,0 +170776606323,213,0 +170776606373,213,0 +170776606421,214,0 +170776606470,213,0 +170776606518,213,0 +170776606566,213,0 +170776606614,213,0 +170776606662,213,0 +170776606710,214,0 +170776606758,213,0 +170776606808,213,0 +170776606855,214,0 +170776606905,214,0 +170776606954,213,0 +170776607002,214,0 +170776607052,213,0 +170776607100,213,0 +170776607149,213,0 +170776607197,213,0 +170776607247,213,0 +170776607296,214,0 +170776607344,213,0 +170776607392,213,0 +170776607441,213,0 +170776607489,214,0 +170776607539,213,0 +170776607588,213,0 +170776607636,213,0 +170776607686,213,0 +170776607735,213,0 +170776607783,214,0 +170776607831,214,0 +170776607880,214,0 +170776607930,213,0 +170776607978,214,0 +170776608026,214,0 +170776608073,214,0 +170776608121,214,0 +170776608169,214,0 +170776608219,213,0 +170776608267,213,0 +170776608316,213,0 +170776608366,213,0 +170776608414,214,0 +170776608462,214,0 +170776608511,213,0 +170776608561,213,0 +170776608610,213,0 +170776608660,214,0 +170776608708,214,0 +170776608757,213,0 +170776608805,213,0 +170776608854,213,0 +170776608904,214,0 +170776608952,213,0 +170776609000,213,0 +170776609049,213,0 +170776609097,213,0 +170776609145,213,0 +170776609193,213,0 +170776609241,214,0 +170776609289,213,0 +170776609337,213,0 +170776609385,213,0 +170776609433,213,0 +170776609481,214,0 +170776609529,213,0 +170776609578,213,0 +170776609626,213,0 +170776609674,214,0 +170776609724,213,0 +170776609773,213,0 +170776609821,214,0 +170776609869,213,0 +170776609918,213,0 +170776609968,214,0 +170776610017,214,0 +170776610065,213,0 +170776610113,214,0 +170776610161,213,0 +170776610209,213,0 +170776610257,214,0 +170776610305,214,0 +170776610353,214,0 +170776610401,214,0 +170776610449,213,0 +170776610498,213,0 +170776610546,213,0 +170776610594,213,0 +170776610643,214,0 +170776610691,213,0 +170776610741,214,0 +170776610789,213,0 +170776610837,213,0 +170776610886,213,0 +170776610936,213,0 +170776610985,214,0 +170776611033,213,0 +170776611083,214,0 +170776611132,214,0 +170776611180,213,0 +170776611228,213,0 +170776611276,213,0 +170776611326,213,0 +170776611375,214,0 +170776611425,213,0 +170776611472,214,0 +170776611520,213,0 +170776611568,213,0 +170776611616,213,0 +170776611666,213,0 +170776611715,214,0 +170776611765,214,0 +170776611815,214,0 +170776611863,213,0 +170776611910,213,0 +170776611960,213,0 +170776612010,213,0 +170776612059,213,0 +170776612107,213,0 +170776612155,214,0 +170776612203,213,0 +170776612252,213,0 +170776612300,213,0 +170776612350,213,0 +170776612399,213,0 +170776612448,214,0 +170776612496,214,0 +170776612546,214,0 +170776612594,213,0 +170776612642,213,0 +170776612691,214,0 +170776612739,213,0 +170776612789,213,0 +170776612837,213,0 +170776612886,214,0 +170776612934,213,0 +170776612983,214,0 +170776613033,213,0 +170776613081,213,0 +170776613129,213,0 +170776613177,214,0 +170776613226,214,0 +170776613274,213,0 +170776613322,213,0 +170776613370,214,0 +170776613418,213,0 +170776613467,213,0 +170776613517,213,0 +170776613565,214,0 +170776613614,213,0 +170776613662,213,0 +170776613710,214,0 +170776613759,213,0 +170776613807,214,0 +170776613857,213,0 +170776613906,213,0 +170776613954,214,0 +170776614003,214,0 +170776614051,213,0 +170776614099,213,0 +170776614147,213,0 +170776614197,213,0 +170776614245,213,0 +170776614292,213,0 +170776614340,213,0 +170776614388,213,0 +170776614436,213,0 +170776614486,214,0 +170776614534,213,0 +170776614583,213,0 +170776614631,213,0 +170776614681,213,0 +170776614729,214,0 +170776614778,213,0 +170776614826,213,0 +170776614874,213,0 +170776614923,213,0 +170776614973,214,0 +170776615021,213,0 +170776615069,213,0 +170776615118,213,0 +170776615166,213,0 +170776615216,213,0 +170776615264,214,0 +170776615313,213,0 +170776615361,213,0 +170776615411,213,0 +170776615458,214,0 +170776615506,213,0 +170776615556,213,0 +170776615605,213,0 +170776615655,214,0 +170776615703,214,0 +170776615752,214,0 +170776615802,213,0 +170776615851,213,0 +170776615899,214,0 +170776615949,213,0 +170776615997,213,0 +170776616045,214,0 +170776616094,214,0 +170776616142,213,0 +170776616191,213,0 +170776616239,213,0 +170776616287,213,0 +170776616335,214,0 +170776616383,213,0 +170776616431,213,0 +170776616480,213,0 +170776616528,213,0 +170776616576,213,0 +170776616624,213,0 +170776616672,213,0 +170776616720,213,0 +170776616768,213,0 +170776616817,214,0 +170776616867,213,0 +170776616915,214,0 +170776616963,213,0 +170776617011,213,0 +170776617060,213,0 +170776617110,213,0 +170776617159,214,0 +170776617209,214,0 +170776617258,213,0 +170776617306,214,0 +170776617354,213,0 +170776617404,213,0 +170776617453,213,0 +170776617503,214,0 +170776617551,213,0 +170776617600,213,0 +170776617650,213,0 +170776617699,213,0 +170776617749,214,0 +170776617797,213,0 +170776617845,213,0 +170776617894,214,0 +170776617942,213,0 +170776617991,214,0 +170776618041,213,0 +170776618088,213,0 +170776618136,213,0 +170776618184,214,0 +170776618232,214,0 +170776618282,214,0 +170776618329,214,0 +170776618377,214,0 +170776618425,213,0 +170776618473,213,0 +170776618521,214,0 +170776618569,213,0 +170776618618,214,0 +170776618668,214,0 +170776618716,213,0 +170776618764,213,0 +170776618813,214,0 +170776618861,213,0 +170776618909,213,0 +170776618957,213,0 +170776619005,213,0 +170776619055,213,0 +170776619104,213,0 +170776619152,213,0 +170776619200,214,0 +170776619248,213,0 +170776619296,213,0 +170776619343,213,0 +170776619393,213,0 +170776619441,213,0 +170776619489,214,0 +170776619537,213,0 +170776619584,213,0 +170776619632,213,0 +170776619680,214,0 +170776619728,213,0 +170776619775,214,0 +170776619823,214,0 +170776619871,214,0 +170776619919,213,0 +170776619967,213,0 +170776620015,213,0 +170776620062,214,0 +170776620110,213,0 +170776620158,213,0 +170776620206,213,0 +170776620254,213,0 +170776620302,213,0 +170776620350,213,0 +170776620398,213,0 +170776620446,214,0 +170776620494,214,0 +170776620542,214,0 +170776620590,213,0 +170776620637,213,0 +170776620685,214,0 +170776620735,213,0 +170776620782,213,0 +170776620830,213,0 +170776620878,214,0 +170776620926,213,0 +170776620974,213,0 +170776621021,214,0 +170776621071,214,0 +170776621120,213,0 +170776621170,214,0 +170776621219,213,0 +170776621269,213,0 +170776621317,213,0 +170776621366,213,0 +170776621417,213,0 +170776621466,213,0 +170776621514,213,0 +170776621562,214,0 +170776621611,213,0 +170776621661,213,0 +170776621709,214,0 +170776621757,214,0 +170776621805,213,0 +170776621854,214,0 +170776621902,214,0 +170776621950,213,0 +170776621998,213,0 +170776622048,214,0 +170776622095,214,0 +170776622143,213,0 +170776622191,213,0 +170776622239,213,0 +170776622287,214,0 +170776622335,213,0 +170776622383,213,0 +170776622432,213,0 +170776622480,214,0 +170776622528,213,0 +170776622576,213,0 +170776622623,214,0 +170776622671,213,0 +170776622719,214,0 +170776622767,213,0 +170776622815,213,0 +170776622863,213,0 +170776622911,213,0 +170776622958,213,0 +170776623006,213,0 +170776623054,214,0 +170776623102,213,0 +170776623150,214,0 +170776623198,214,0 +170776623245,213,0 +170776623293,214,0 +170776623343,214,0 +170776623392,213,0 +170776623440,214,0 +170776623488,213,0 +170776623536,214,0 +170776623586,213,0 +170776623633,214,0 +170776623681,213,0 +170776623729,213,0 +170776623777,213,0 +170776623825,213,0 +170776623873,213,0 +170776623922,214,0 +170776623970,213,0 +170776624020,213,0 +170776624068,214,0 +170776624117,213,0 +170776624165,213,0 +170776624213,213,0 +170776624261,213,0 +170776624309,213,0 +170776624358,214,0 +170776624408,214,0 +170776624458,213,0 +170776624505,213,0 +170776624553,214,0 +170776624601,213,0 +170776624651,213,0 +170776624699,213,0 +170776624747,214,0 +170776624796,214,0 +170776624846,213,0 +170776624895,213,0 +170776624943,213,0 +170776624993,213,0 +170776625041,213,0 +170776625088,213,0 +170776625136,213,0 +170776625184,213,0 +170776625232,213,0 +170776625280,213,0 +170776625328,213,0 +170776625375,213,0 +170776625423,213,0 +170776625471,213,0 +170776625519,213,0 +170776625567,213,0 +170776625615,213,0 +170776625662,213,0 +170776625710,213,0 +170776625758,213,0 +170776625806,213,0 +170776625854,213,0 +170776625901,213,0 +170776625949,213,0 +170776625997,213,0 +170776626045,214,0 +170776626093,214,0 +170776626141,214,0 +170776626188,213,0 +170776626236,214,0 +170776626284,214,0 +170776626332,214,0 +170776626380,213,0 +170776626428,213,0 +170776626475,214,0 +170776626523,213,0 +170776626571,213,0 +170776626619,213,0 +170776626667,213,0 +170776626714,213,0 +170776626762,213,0 +170776626810,213,0 +170776626858,213,0 +170776626908,213,0 +170776626955,214,0 +170776627003,213,0 +170776627053,213,0 +170776627101,214,0 +170776627150,213,0 +170776627198,214,0 +170776627246,213,0 +170776627294,213,0 +170776627342,213,0 +170776627392,213,0 +170776627440,214,0 +170776627487,214,0 +170776627535,214,0 +170776627585,214,0 +170776627633,213,0 +170776627682,213,0 +170776627732,214,0 +170776627780,213,0 +170776627827,214,0 +170776627877,213,0 +170776627926,213,0 +170776627974,213,0 +170776628024,214,0 +170776628072,213,0 +170776628121,213,0 +170776628169,213,0 +170776628217,213,0 +170776628266,214,0 +170776628314,213,0 +170776628364,214,0 +170776628412,213,0 +170776628461,214,0 +170776628511,213,0 +170776628560,213,0 +170776628608,213,0 +170776628656,214,0 +170776628704,213,0 +170776628753,213,0 +170776628803,214,0 +170776628851,213,0 +170776628900,213,0 +170776628948,214,0 +170776628996,214,0 +170776629044,213,0 +170776629092,214,0 +170776629142,213,0 +170776629190,213,0 +170776629239,213,0 +170776629287,213,0 +170776629335,214,0 +170776629383,214,0 +170776629431,214,0 +170776629479,214,0 +170776629528,213,0 +170776629576,213,0 +170776629626,213,0 +170776629674,213,0 +170776629721,213,0 +170776629769,213,0 +170776629817,213,0 +170776629865,213,0 +170776629913,213,0 +170776629961,213,0 +170776630011,214,0 +170776630059,213,0 +170776630106,213,0 +170776630154,213,0 +170776630202,213,0 +170776630252,213,0 +170776630299,213,0 +170776630347,213,0 +170776630395,213,0 +170776630445,213,0 +170776630493,213,0 +170776630541,213,0 +170776630589,213,0 +170776630637,213,0 +170776630686,213,0 +170776630736,214,0 +170776630785,213,0 +170776630833,213,0 +170776630881,213,0 +170776630929,213,0 +170776630977,213,0 +170776631025,213,0 +170776631073,213,0 +170776631121,213,0 +170776631170,213,0 +170776631220,213,0 +170776631269,213,0 +170776631319,213,0 +170776631367,214,0 +170776631416,214,0 +170776631464,213,0 +170776631512,213,0 +170776631560,213,0 +170776631608,213,0 +170776631656,213,0 +170776631705,213,0 +170776631755,214,0 +170776631804,213,0 +170776631854,213,0 +170776631903,213,0 +170776631951,213,0 +170776632001,213,0 +170776632049,213,0 +170776632097,213,0 +170776632146,213,0 +170776632194,213,0 +170776632242,213,0 +170776632292,213,0 +170776632340,213,0 +170776632387,213,0 +170776632435,213,0 +170776632483,213,0 +170776632531,213,0 +170776632580,213,0 +170776632628,213,0 +170776632678,213,0 +170776632726,213,0 +170776632774,213,0 +170776632822,213,0 +170776632869,213,0 +170776632917,213,0 +170776632965,213,0 +170776633013,213,0 +170776633061,213,0 +170776633109,213,0 +170776633158,213,0 +170776633208,213,0 +170776633257,213,0 +170776633307,213,0 +170776633356,213,0 +170776633406,213,0 +170776633454,213,0 +170776633502,213,0 +170776633551,213,0 +170776633599,213,0 +170776633647,213,0 +170776633697,214,0 +170776633746,213,0 +170776633796,213,0 +170776633844,213,0 +170776633892,213,0 +170776633939,213,0 +170776633989,213,0 +170776634037,213,0 +170776634086,213,0 +170776634136,213,0 +170776634184,213,0 +170776634232,213,0 +170776634280,213,0 +170776634329,213,0 +170776634379,213,0 +170776634427,213,0 +170776634475,213,0 +170776634524,213,0 +170776634574,213,0 +170776634622,213,0 +170776634670,213,0 +170776634717,213,0 +170776634765,213,0 +170776634813,213,0 +170776634861,213,0 +170776634909,213,0 +170776634957,214,0 +170776635005,213,0 +170776635053,213,0 +170776635103,213,0 +170776635150,213,0 +170776635200,213,0 +170776635248,213,0 +170776635296,213,0 +170776635344,213,0 +170776635393,213,0 +170776635441,214,0 +170776635491,213,0 +170776635539,213,0 +170776635587,213,0 +170776635635,213,0 +170776635682,213,0 +170776635730,214,0 +170776635778,213,0 +170776635826,213,0 +170776635876,213,0 +170776635924,213,0 +170776635972,214,0 +170776636019,213,0 +170776636069,213,0 +170776636117,213,0 +170776636164,213,0 +170776636212,213,0 +170776636260,213,0 +170776636310,213,0 +170776636357,213,0 +170776636407,213,0 +170776636455,213,0 +170776636503,213,0 +170776636551,213,0 +170776636599,213,0 +170776636647,213,0 +170776636694,213,0 +170776636742,213,0 +170776636790,213,0 +170776636838,213,0 +170776636888,213,0 +170776636936,213,0 +170776636985,213,0 +170776637033,213,0 +170776637081,213,0 +170776637129,213,0 +170776637177,213,0 +170776637226,213,0 +170776637276,213,0 +170776637326,213,0 +170776637375,214,0 +170776637423,213,0 +170776637473,213,0 +170776637521,213,0 +170776637568,213,0 +170776637616,213,0 +170776637664,213,0 +170776637712,213,0 +170776637762,213,0 +170776637810,213,0 +170776637858,213,0 +170776637906,214,0 +170776637955,213,0 +170776638005,213,0 +170776638052,213,0 +170776638100,213,0 +170776638148,213,0 +170776638196,213,0 +170776638246,213,0 +170776638294,213,0 +170776638342,213,0 +170776638390,213,0 +170776638439,213,0 +170776638487,213,0 +170776638535,213,0 +170776638585,213,0 +170776638632,213,0 +170776638680,213,0 +170776638730,213,0 +170776638780,213,0 +170776638829,213,0 +170776638879,213,0 +170776638927,213,0 +170776638976,213,0 +170776639024,213,0 +170776639072,213,0 +170776639121,213,0 +170776639169,213,0 +170776639217,213,0 +170776639265,213,0 +170776639315,213,0 +170776639363,213,0 +170776639411,213,0 +170776639459,213,0 +170776639507,213,0 +170776639555,213,0 +170776639602,213,0 +170776639650,213,0 +170776639698,213,0 +170776639748,213,0 +170776639797,213,0 +170776639847,213,0 +170776639895,214,0 +170776639944,213,0 +170776639992,213,0 +170776640040,213,0 +170776640088,213,0 +170776640136,213,0 +170776640185,213,0 +170776640233,213,0 +170776640281,213,0 +170776640329,213,0 +170776640377,213,0 +170776640427,213,0 +170776640474,213,0 +170776640522,214,0 +170776640570,213,0 +170776640618,213,0 +170776640668,213,0 +170776640717,213,0 +170776640765,213,0 +170776640813,213,0 +170776640861,213,0 +170776640910,213,0 +170776640958,214,0 +170776641006,213,0 +170776641056,213,0 +170776641104,213,0 +170776641152,213,0 +170776641199,213,0 +170776641249,213,0 +170776641297,213,0 +170776641345,214,0 +170776641393,213,0 +170776641441,213,0 +170776641490,213,0 +170776641540,213,0 +170776641589,213,0 +170776641637,213,0 +170776641685,213,0 +170776641733,213,0 +170776641781,214,0 +170776641829,213,0 +170776641877,213,0 +170776641926,213,0 +170776641974,213,0 +170776642022,213,0 +170776642070,213,0 +170776642119,213,0 +170776642169,213,0 +170776642218,213,0 +170776642266,213,0 +170776642314,213,0 +170776642364,213,0 +170776642412,213,0 +170776642461,213,0 +170776642509,213,0 +170776642557,213,0 +170776642605,213,0 +170776642654,214,0 +170776642702,213,0 +170776642750,213,0 +170776642798,213,0 +170776642846,213,0 +170776642896,213,0 +170776642943,213,0 +170776642991,213,0 +170776643039,213,0 +170776643087,213,0 +170776643137,213,0 +170776643186,213,0 +170776643234,213,0 +170776643282,213,0 +170776643332,213,0 +170776643380,213,0 +170776643429,213,0 +170776643477,213,0 +170776643525,213,0 +170776643573,213,0 +170776643621,213,0 +170776643669,213,0 +170776643717,214,0 +170776643766,213,0 +170776643815,213,0 +170776643863,213,0 +170776643911,213,0 +170776643959,213,0 +170776644007,213,0 +170776644055,213,0 +170776644105,213,0 +170776644154,213,0 +170776644202,213,0 +170776644252,213,0 +170776644300,213,0 +170776644347,214,0 +170776644395,213,0 +170776644445,213,0 +170776644493,213,0 +170776644542,213,0 +170776644592,213,0 +170776644639,213,0 +170776644689,213,0 +170776644737,213,0 +170776644785,213,0 +170776644833,213,0 +170776644881,213,0 +170776644929,213,0 +170776644976,213,0 +170776645024,213,0 +170776645072,213,0 +170776645120,213,0 +170776645170,213,0 +170776645219,213,0 +170776645269,213,0 +170776645318,213,0 +170776645368,213,0 +170776645416,213,0 +170776645465,213,0 +170776645513,213,0 +170776645561,213,0 +170776645610,213,0 +170776645658,213,0 +170776645708,213,0 +170776645756,213,0 +170776645804,213,0 +170776645853,214,0 +170776645901,214,0 +170776645949,213,0 +170776645997,213,0 +170776646045,213,0 +170776646094,213,0 +170776646142,213,0 +170776646190,213,0 +170776646238,213,0 +170776646286,213,0 +170776646335,213,0 +170776646383,213,0 +170776646431,213,0 +170776646479,213,0 +170776646527,213,0 +170776646575,213,0 +170776646623,213,0 +170776646672,214,0 +170776646720,214,0 +170776646769,213,0 +170776646817,213,0 +170776646867,213,0 +170776646915,213,0 +170776646962,213,0 +170776647010,213,0 +170776647060,213,0 +170776647108,214,0 +170776647157,213,0 +170776647207,213,0 +170776647256,213,0 +170776647304,213,0 +170776647352,214,0 +170776647401,213,0 +170776647449,214,0 +170776647499,213,0 +170776647547,214,0 +170776647594,213,0 +170776647642,213,0 +170776647690,213,0 +170776647738,213,0 +170776647786,214,0 +170776647834,213,0 +170776647884,213,0 +170776647932,213,0 +170776647980,214,0 +170776648029,213,0 +170776648079,213,0 +170776648128,213,0 +170776648176,213,0 +170776648224,213,0 +170776648272,213,0 +170776648320,213,0 +170776648368,213,0 +170776648417,213,0 +170776648465,213,0 +170776648513,213,0 +170776648563,213,0 +170776648612,213,0 +170776648660,213,0 +170776648710,213,0 +170776648759,214,0 +170776648809,213,0 +170776648858,213,0 +170776648906,213,0 +170776648954,213,0 +170776649002,213,0 +170776649052,213,0 +170776649099,213,0 +170776649147,214,0 +170776649195,213,0 +170776649243,213,0 +170776649293,213,0 +170776649341,213,0 +170776649389,213,0 +170776649437,213,0 +170776649485,213,0 +170776649533,213,0 +170776649581,214,0 +170776649628,213,0 +170776649676,214,0 +170776649724,213,0 +170776649774,213,0 +170776649822,213,0 +170776649871,213,0 +170776649921,213,0 +170776649969,213,0 +170776650017,213,0 +170776650065,213,0 +170776650113,213,0 +170776650161,213,0 +170776650208,213,0 +170776650256,213,0 +170776650304,213,0 +170776650352,213,0 +170776650402,213,0 +170776650450,213,0 +170776650498,213,0 +170776650547,213,0 +170776650595,213,0 +170776650645,213,0 +170776650693,213,0 +170776650740,214,0 +170776650790,213,0 +170776650838,213,0 +170776650887,214,0 +170776650935,214,0 +170776650985,213,0 +170776651033,213,0 +170776651081,213,0 +170776651130,213,0 +170776651180,213,0 +170776651228,213,0 +170776651277,213,0 +170776651325,214,0 +170776651373,213,0 +170776651423,214,0 +170776651472,213,0 +170776651522,213,0 +170776651571,213,0 +170776651621,213,0 +170776651669,213,0 +170776651717,213,0 +170776651764,213,0 +170776651812,213,0 +170776651860,213,0 +170776651910,213,0 +170776651959,213,0 +170776652009,213,0 +170776652056,213,0 +170776652104,213,0 +170776652152,213,0 +170776652200,213,0 +170776652250,213,0 +170776652298,213,0 +170776652346,213,0 +170776652395,213,0 +170776652443,213,0 +170776652491,213,0 +170776652539,213,0 +170776652587,213,0 +170776652635,214,0 +170776652684,213,0 +170776652732,214,0 +170776652780,213,0 +170776652828,214,0 +170776652878,213,0 +170776652926,213,0 +170776652975,213,0 +170776653023,213,0 +170776653071,213,0 +170776653119,213,0 +170776653167,213,0 +170776653215,214,0 +170776653264,213,0 +170776653312,213,0 +170776653360,213,0 +170776653410,214,0 +170776653458,213,0 +170776653507,213,0 +170776653557,213,0 +170776653606,213,0 +170776653656,213,0 +170776653704,213,0 +170776653752,213,0 +170776653799,213,0 +170776653847,213,0 +170776653895,213,0 +170776653943,213,0 +170776653991,214,0 +170776654039,213,0 +170776654088,213,0 +170776654136,213,0 +170776654184,213,0 +170776654232,214,0 +170776654281,213,0 +170776654331,213,0 +170776654379,213,0 +170776654428,213,0 +170776654476,214,0 +170776654524,213,0 +170776654572,213,0 +170776654620,213,0 +170776654668,213,0 +170776654716,213,0 +170776654763,213,0 +170776654811,214,0 +170776654861,213,0 +170776654909,213,0 +170776654957,214,0 +170776655005,214,0 +170776655052,213,0 +170776655100,213,0 +170776655150,213,0 +170776655198,213,0 +170776655246,213,0 +170776655294,214,0 +170776655343,213,0 +170776655391,214,0 +170776655439,213,0 +170776655489,213,0 +170776655537,213,0 +170776655584,213,0 +170776655632,213,0 +170776655682,214,0 +170776655730,213,0 +170776655778,213,0 +170776655826,214,0 +170776655874,214,0 +170776655922,214,0 +170776655971,213,0 +170776656019,213,0 +170776656067,214,0 +170776656115,213,0 +170776656163,213,0 +170776656210,214,0 +170776656258,213,0 +170776656306,213,0 +170776656354,214,0 +170776656402,213,0 +170776656451,213,0 +170776656499,214,0 +170776656547,213,0 +170776656595,214,0 +170776656642,214,0 +170776656692,213,0 +170776656740,213,0 +170776656787,213,0 +170776656835,213,0 +170776656885,213,0 +170776656934,213,0 +170776656982,213,0 +170776657030,213,0 +170776657078,213,0 +170776657126,213,0 +170776657175,213,0 +170776657223,213,0 +170776657273,214,0 +170776657321,213,0 +170776657369,213,0 +170776657418,213,0 +170776657466,213,0 +170776657516,214,0 +170776657564,214,0 +170776657613,213,0 +170776657661,213,0 +170776657709,213,0 +170776657758,213,0 +170776657806,213,0 +170776657856,213,0 +170776657904,214,0 +170776657951,213,0 +170776657999,213,0 +170776658047,213,0 +170776658097,213,0 +170776658145,214,0 +170776658193,213,0 +170776658241,214,0 +170776658288,213,0 +170776658336,213,0 +170776658386,213,0 +170776658434,214,0 +170776658482,214,0 +170776658531,213,0 +170776658581,213,0 +170776658629,213,0 +170776658678,213,0 +170776658728,213,0 +170776658776,214,0 +170776658824,213,0 +170776658873,214,0 +170776658921,213,0 +170776658969,213,0 +170776659017,213,0 +170776659065,213,0 +170776659114,214,0 +170776659162,213,0 +170776659210,213,0 +170776659258,213,0 +170776659306,213,0 +170776659354,213,0 +170776659402,213,0 +170776659451,214,0 +170776659499,213,0 +170776659547,213,0 +170776659597,214,0 +170776659645,214,0 +170776659693,213,0 +170776659740,213,0 +170776659788,213,0 +170776659838,213,0 +170776659887,214,0 +170776659935,213,0 +170776659983,213,0 +170776660031,214,0 +170776660079,213,0 +170776660127,213,0 +170776660175,213,0 +170776660223,213,0 +170776660270,213,0 +170776660318,213,0 +170776660366,214,0 +170776660414,213,0 +170776660462,214,0 +170776660512,213,0 +170776660559,214,0 +170776660607,213,0 +170776660657,213,0 +170776660705,213,0 +170776660754,214,0 +170776660802,214,0 +170776660851,213,0 +170776660899,214,0 +170776660947,213,0 +170776660995,214,0 +170776661045,213,0 +170776661093,213,0 +170776661142,213,0 +170776661190,213,0 +170776661238,214,0 +170776661286,214,0 +170776661336,213,0 +170776661384,213,0 +170776661432,214,0 +170776661480,214,0 +170776661527,214,0 +170776661575,213,0 +170776661623,213,0 +170776661673,213,0 +170776661721,213,0 +170776661769,213,0 +170776661817,214,0 +170776661865,213,0 +170776661914,213,0 +170776661962,213,0 +170776662012,213,0 +170776662059,213,0 +170776662109,214,0 +170776662157,213,0 +170776662205,213,0 +170776662253,213,0 +170776662301,214,0 +170776662350,213,0 +170776662398,213,0 +170776662448,214,0 +170776662497,213,0 +170776662547,213,0 +170776662595,213,0 +170776662643,214,0 +170776662691,213,0 +170776662740,214,0 +170776662788,213,0 +170776662836,214,0 +170776662884,213,0 +170776662932,214,0 +170776662979,213,0 +170776663027,213,0 +170776663075,213,0 +170776663123,213,0 +170776663173,213,0 +170776663222,213,0 +170776663270,213,0 +170776663320,213,0 +170776663369,213,0 +170776663419,213,0 +170776663468,213,0 +170776663518,213,0 +170776663567,213,0 +170776663615,214,0 +170776663664,213,0 +170776663712,213,0 +170776663762,213,0 +170776663810,213,0 +170776663858,214,0 +170776663905,214,0 +170776663953,214,0 +170776664001,213,0 +170776664049,213,0 +170776664097,213,0 +170776664145,214,0 +170776664193,213,0 +170776664240,213,0 +170776664288,213,0 +170776664336,213,0 +170776664384,214,0 +170776664432,213,0 +170776664480,214,0 +170776664527,213,0 +170776664577,213,0 +170776664624,214,0 +170776664672,213,0 +170776664720,213,0 +170776664770,213,0 +170776664817,213,0 +170776664865,214,0 +170776664913,213,0 +170776664961,213,0 +170776665009,213,0 +170776665057,213,0 +170776665106,213,0 +170776665154,213,0 +170776665204,213,0 +170776665251,213,0 +170776665301,213,0 +170776665351,213,0 +170776665398,213,0 +170776665448,213,0 +170776665496,214,0 +170776665544,213,0 +170776665592,213,0 +170776665641,213,0 +170776665689,213,0 +170776665737,213,0 +170776665786,213,0 +170776665836,214,0 +170776665884,213,0 +170776665932,214,0 +170776665981,213,0 +170776666029,213,0 +170776666079,213,0 +170776666127,213,0 +170776666175,214,0 +170776666222,213,0 +170776666270,214,0 +170776666318,214,0 +170776666366,213,0 +170776666416,214,0 +170776666465,213,0 +170776666515,214,0 +170776666564,214,0 +170776666612,214,0 +170776666662,214,0 +170776666711,213,0 +170776666761,213,0 +170776666809,214,0 +170776666857,214,0 +170776666906,214,0 +170776666954,214,0 +170776667004,213,0 +170776667051,213,0 +170776667099,214,0 +170776667147,213,0 +170776667195,214,0 +170776667245,213,0 +170776667294,214,0 +170776667342,214,0 +170776667390,213,0 +170776667438,214,0 +170776667487,213,0 +170776667535,213,0 +170776667584,213,0 +170776667632,214,0 +170776667680,213,0 +170776667728,213,0 +170776667775,213,0 +170776667823,213,0 +170776667871,214,0 +170776667920,214,0 +170776667970,214,0 +170776668018,214,0 +170776668067,214,0 +170776668115,213,0 +170776668163,213,0 +170776668211,214,0 +170776668260,213,0 +170776668308,214,0 +170776668356,213,0 +170776668406,213,0 +170776668454,214,0 +170776668502,214,0 +170776668549,213,0 +170776668597,214,0 +170776668645,213,0 +170776668693,213,0 +170776668741,214,0 +170776668789,214,0 +170776668837,214,0 +170776668885,213,0 +170776668934,213,0 +170776668982,214,0 +170776669030,214,0 +170776669080,214,0 +170776669127,213,0 +170776669175,213,0 +170776669223,213,0 +170776669271,214,0 +170776669319,214,0 +170776669367,214,0 +170776669415,213,0 +170776669463,214,0 +170776669511,213,0 +170776669559,213,0 +170776669608,213,0 +170776669658,214,0 +170776669706,213,0 +170776669753,214,0 +170776669801,213,0 +170776669849,213,0 +170776669897,213,0 +170776669945,213,0 +170776669993,214,0 +170776670041,214,0 +170776670089,213,0 +170776670137,213,0 +170776670186,213,0 +170776670234,213,0 +170776670282,213,0 +170776670330,213,0 +170776670380,214,0 +170776670429,213,0 +170776670477,213,0 +170776670525,214,0 +170776670573,213,0 +170776670621,213,0 +170776670669,213,0 +170776670717,214,0 +170776670765,214,0 +170776670814,213,0 +170776670862,214,0 +170776670910,213,0 +170776670958,213,0 +170776671006,214,0 +170776671054,213,0 +170776671104,213,0 +170776671153,213,0 +170776671201,214,0 +170776671249,213,0 +170776671297,213,0 +170776671346,214,0 +170776671396,213,0 +170776671444,213,0 +170776671493,213,0 +170776671541,213,0 +170776671589,213,0 +170776671639,214,0 +170776671688,213,0 +170776671736,213,0 +170776671786,213,0 +170776671834,213,0 +170776671882,214,0 +170776671929,214,0 +170776671977,214,0 +170776672027,214,0 +170776672075,213,0 +170776672124,214,0 +170776672174,213,0 +170776672223,214,0 +170776672271,214,0 +170776672319,213,0 +170776672367,213,0 +170776672416,214,0 +170776672466,213,0 +170776672514,214,0 +170776672563,213,0 +170776672611,213,0 +170776672660,214,0 +170776672708,213,0 +170776672758,213,0 +170776672806,213,0 +170776672854,213,0 +170776672903,213,0 +170776672951,213,0 +170776672999,213,0 +170776673047,214,0 +170776673096,214,0 +170776673146,214,0 +170776673195,214,0 +170776673243,213,0 +170776673293,214,0 +170776673341,213,0 +170776673388,214,0 +170776673436,213,0 +170776673484,213,0 +170776673534,214,0 +170776673582,213,0 +170776673630,213,0 +170776673678,214,0 +170776673727,213,0 +170776673775,213,0 +170776673823,214,0 +170776673871,213,0 +170776673919,214,0 +170776673967,213,0 +170776674015,213,0 +170776674064,213,0 +170776674112,214,0 +170776674160,213,0 +170776674210,214,0 +170776674257,214,0 +170776674307,213,0 +170776674356,214,0 +170776674406,214,0 +170776674454,214,0 +170776674502,214,0 +170776674551,213,0 +170776674599,214,0 +170776674647,214,0 +170776674695,214,0 +170776674743,213,0 +170776674791,214,0 +170776674840,214,0 +170776674888,214,0 +170776674936,214,0 +170776674984,213,0 +170776675034,213,0 +170776675082,214,0 +170776675130,214,0 +170776675179,213,0 +170776675229,214,0 +170776675276,214,0 +170776675324,214,0 +170776675372,213,0 +170776675420,214,0 +170776675470,214,0 +170776675518,213,0 +170776675566,213,0 +170776675613,214,0 +170776675661,214,0 +170776675709,214,0 +170776675759,214,0 +170776675807,213,0 +170776675855,214,0 +170776675904,214,0 +170776675954,213,0 +170776676002,213,0 +170776676050,214,0 +170776676098,213,0 +170776676145,213,0 +170776676195,214,0 +170776676243,213,0 +170776676291,214,0 +170776676339,214,0 +170776676388,213,0 +170776676438,214,0 +170776676485,213,0 +170776676533,213,0 +170776676581,213,0 +170776676629,214,0 +170776676677,214,0 +170776676725,213,0 +170776676773,213,0 +170776676823,213,0 +170776676871,214,0 +170776676918,213,0 +170776676968,214,0 +170776677017,213,0 +170776677067,214,0 +170776677116,214,0 +170776677166,214,0 +170776677214,214,0 +170776677263,213,0 +170776677311,213,0 +170776677361,214,0 +170776677411,213,0 +170776677459,213,0 +170776677506,213,0 +170776677554,213,0 +170776677602,214,0 +170776677650,213,0 +170776677698,213,0 +170776677746,213,0 +170776677794,213,0 +170776677842,214,0 +170776677891,214,0 +170776677939,213,0 +170776677987,214,0 +170776678037,213,0 +170776678086,213,0 +170776678134,214,0 +170776678182,213,0 +170776678232,214,0 +170776678281,213,0 +170776678329,213,0 +170776678379,213,0 +170776678427,214,0 +170776678474,213,0 +170776678524,214,0 +170776678573,213,0 +170776678623,213,0 +170776678671,214,0 +170776678718,214,0 +170776678766,213,0 +170776678814,213,0 +170776678862,214,0 +170776678911,213,0 +170776678959,214,0 +170776679007,214,0 +170776679057,213,0 +170776679104,214,0 +170776679154,213,0 +170776679201,213,0 +170776679249,213,0 +170776679299,214,0 +170776679347,213,0 +170776679395,214,0 +170776679443,213,0 +170776679490,213,0 +170776679538,213,0 +170776679588,213,0 +170776679636,214,0 +170776679685,213,0 +170776679733,213,0 +170776679781,214,0 +170776679829,213,0 +170776679877,214,0 +170776679925,214,0 +170776679973,214,0 +170776680021,213,0 +170776680069,213,0 +170776680117,213,0 +170776680166,213,0 +170776680215,214,0 +170776680265,213,0 +170776680313,214,0 +170776680362,213,0 +170776680412,214,0 +170776680461,214,0 +170776680509,213,0 +170776680557,213,0 +170776680605,213,0 +170776680653,213,0 +170776680701,213,0 +170776680750,213,0 +170776680798,214,0 +170776680846,214,0 +170776680895,213,0 +170776680943,214,0 +170776680991,213,0 +170776681039,213,0 +170776681087,213,0 +170776681137,213,0 +170776681186,214,0 +170776681236,214,0 +170776681283,213,0 +170776681331,213,0 +170776681381,213,0 +170776681429,213,0 +170776681477,214,0 +170776681526,213,0 +170776681574,213,0 +170776681622,213,0 +170776681670,213,0 +170776681720,213,0 +170776681769,213,0 +170776681817,213,0 +170776681865,213,0 +170776681913,214,0 +170776681961,213,0 +170776682009,213,0 +170776682057,213,0 +170776682107,214,0 +170776682156,213,0 +170776682206,213,0 +170776682255,213,0 +170776682305,214,0 +170776682353,214,0 +170776682402,213,0 +170776682450,213,0 +170776682498,214,0 +170776682548,213,0 +170776682596,213,0 +170776682645,213,0 +170776682695,213,0 +170776682743,214,0 +170776682791,213,0 +170776682839,214,0 +170776682888,213,0 +170776682936,213,0 +170776682985,213,0 +170776683033,214,0 +170776683081,214,0 +170776683131,213,0 +170776683180,213,0 +170776683228,214,0 +170776683276,214,0 +170776683324,213,0 +170776683373,213,0 +170776683421,214,0 +170776683469,213,0 +170776683517,213,0 +170776683565,213,0 +170776683613,214,0 +170776683661,214,0 +170776683709,213,0 +170776683757,213,0 +170776683805,214,0 +170776683853,213,0 +170776683902,214,0 +170776683952,213,0 +170776684002,214,0 +170776684049,214,0 +170776684097,214,0 +170776684145,213,0 +170776684193,213,0 +170776684241,213,0 +170776684289,214,0 +170776684337,214,0 +170776684385,214,0 +170776684433,213,0 +170776684481,213,0 +170776684529,214,0 +170776684577,214,0 +170776684625,213,0 +170776684674,213,0 +170776684722,214,0 +170776684770,214,0 +170776684820,213,0 +170776684868,213,0 +170776684915,213,0 +170776684963,214,0 +170776685011,213,0 +170776685059,214,0 +170776685107,214,0 +170776685155,213,0 +170776685203,213,0 +170776685251,214,0 +170776685300,214,0 +170776685350,213,0 +170776685398,213,0 +170776685446,213,0 +170776685494,213,0 +170776685542,214,0 +170776685589,213,0 +170776685637,213,0 +170776685685,213,0 +170776685733,213,0 +170776685781,213,0 +170776685830,213,0 +170776685878,214,0 +170776685926,213,0 +170776685976,214,0 +170776686025,213,0 +170776686073,213,0 +170776686122,213,0 +170776686170,213,0 +170776686220,214,0 +170776686269,214,0 +170776686317,213,0 +170776686365,214,0 +170776686413,214,0 +170776686461,213,0 +170776686508,214,0 +170776686556,214,0 +170776686604,214,0 +170776686653,213,0 +170776686701,213,0 +170776686749,213,0 +170776686797,213,0 +170776686844,214,0 +170776686892,213,0 +170776686942,213,0 +170776686990,214,0 +170776687038,213,0 +170776687086,213,0 +170776687135,213,0 +170776687185,213,0 +170776687233,213,0 +170776687282,214,0 +170776687331,213,0 +170776687379,213,0 +170776687427,213,0 +170776687475,213,0 +170776687525,214,0 +170776687573,214,0 +170776687621,213,0 +170776687669,213,0 +170776687717,213,0 +170776687766,214,0 +170776687816,214,0 +170776687865,213,0 +170776687913,213,0 +170776687961,214,0 +170776688010,213,0 +170776688058,214,0 +170776688106,213,0 +170776688154,214,0 +170776688202,213,0 +170776688250,213,0 +170776688297,213,0 +170776688347,214,0 +170776688396,213,0 +170776688444,214,0 +170776688492,214,0 +170776688540,214,0 +170776688588,213,0 +170776688635,213,0 +170776688683,214,0 +170776688731,213,0 +170776688779,213,0 +170776688827,214,0 +170776688876,213,0 +170776688924,214,0 +170776688972,214,0 +170776689020,213,0 +170776689069,214,0 +170776689117,214,0 +170776689165,214,0 +170776689213,213,0 +170776689261,214,0 +170776689308,214,0 +170776689356,214,0 +170776689406,214,0 +170776689454,213,0 +170776689503,213,0 +170776689552,213,0 +170776689602,214,0 +170776689651,213,0 +170776689701,213,0 +170776689750,213,0 +170776689798,214,0 +170776689846,214,0 +170776689894,213,0 +170776689944,214,0 +170776689992,214,0 +170776690039,214,0 +170776690087,214,0 +170776690135,214,0 +170776690185,213,0 +170776690234,214,0 +170776690282,214,0 +170776690330,213,0 +170776690378,213,0 +170776690426,213,0 +170776690474,213,0 +170776690522,214,0 +170776690569,213,0 +170776690617,213,0 +170776690667,214,0 +170776690716,213,0 +170776690764,213,0 +170776690812,213,0 +170776690860,213,0 +170776690910,213,0 +170776690958,213,0 +170776691006,213,0 +170776691053,213,0 +170776691101,213,0 +170776691151,214,0 +170776691199,214,0 +170776691247,213,0 +170776691295,214,0 +170776691344,214,0 +170776691392,213,0 +170776691442,213,0 +170776691490,214,0 +170776691539,213,0 +170776691587,213,0 +170776691635,213,0 +170776691683,213,0 +170776691731,214,0 +170776691779,214,0 +170776691828,214,0 +170776691876,213,0 +170776691926,214,0 +170776691974,213,0 +170776692023,214,0 +170776692071,214,0 +170776692121,214,0 +170776692168,213,0 +170776692216,214,0 +170776692264,214,0 +170776692312,213,0 +170776692362,214,0 +170776692410,214,0 +170776692458,214,0 +170776692507,214,0 +170776692557,214,0 +170776692605,213,0 +170776692653,213,0 +170776692701,213,0 +170776692750,213,0 +170776692798,214,0 +170776692846,213,0 +170776692894,214,0 +170776692942,213,0 +170776692990,213,0 +170776693039,213,0 +170776693089,213,0 +170776693138,213,0 +170776693186,213,0 +170776693234,213,0 +170776693284,214,0 +170776693332,213,0 +170776693380,214,0 +170776693429,214,0 +170776693479,214,0 +170776693527,213,0 +170776693575,214,0 +170776693622,213,0 +170776693672,214,0 +170776693720,214,0 +170776693769,213,0 +170776693819,213,0 +170776693867,213,0 +170776693915,213,0 +170776693964,213,0 +170776694014,213,0 +170776694062,213,0 +170776694111,213,0 +170776694159,214,0 +170776694207,213,0 +170776694255,213,0 +170776694305,214,0 +170776694353,213,0 +170776694401,213,0 +170776694449,214,0 +170776694497,214,0 +170776694546,213,0 +170776694594,214,0 +170776694644,214,0 +170776694693,213,0 +170776694741,213,0 +170776694791,214,0 +170776694840,213,0 +170776694888,213,0 +170776694936,213,0 +170776694984,214,0 +170776695032,214,0 +170776695080,214,0 +170776695128,213,0 +170776695176,213,0 +170776695224,213,0 +170776695273,213,0 +170776695321,213,0 +170776695370,213,0 +170776695418,213,0 +170776695466,214,0 +170776695514,214,0 +170776695563,213,0 +170776695611,214,0 +170776695659,213,0 +170776695707,213,0 +170776695755,214,0 +170776695803,214,0 +170776695851,213,0 +170776695898,213,0 +170776695946,213,0 +170776695994,213,0 +170776696042,213,0 +170776696090,213,0 +170776696138,213,0 +170776696186,213,0 +170776696233,213,0 +170776696281,213,0 +170776696329,213,0 +170776696377,213,0 +170776696425,213,0 +170776696473,214,0 +170776696521,213,0 +170776696569,214,0 +170776696616,214,0 +170776696664,214,0 +170776696712,213,0 +170776696760,213,0 +170776696808,214,0 +170776696858,214,0 +170776696907,214,0 +170776696955,213,0 +170776697005,214,0 +170776697053,213,0 +170776697101,214,0 +170776697149,213,0 +170776697198,213,0 +170776697246,213,0 +170776697294,213,0 +170776697344,213,0 +170776697392,213,0 +170776697440,213,0 +170776697488,213,0 +170776697537,213,0 +170776697587,213,0 +170776697636,213,0 +170776697684,213,0 +170776697732,213,0 +170776697780,213,0 +170776697828,214,0 +170776697877,214,0 +170776697925,213,0 +170776697975,213,0 +170776698023,213,0 +170776698071,213,0 +170776698118,214,0 +170776698168,213,0 +170776698216,213,0 +170776698265,214,0 +170776698313,213,0 +170776698363,213,0 +170776698412,214,0 +170776698462,213,0 +170776698511,214,0 +170776698559,213,0 +170776698609,213,0 +170776698658,213,0 +170776698708,214,0 +170776698756,213,0 +170776698804,213,0 +170776698852,213,0 +170776698901,213,0 +170776698949,214,0 +170776698997,213,0 +170776699045,213,0 +170776699094,213,0 +170776699142,213,0 +170776699190,213,0 +170776699238,213,0 +170776699288,214,0 +170776699335,214,0 +170776699383,213,0 +170776699431,213,0 +170776699479,214,0 +170776699527,213,0 +170776699575,214,0 +170776699624,214,0 +170776699672,213,0 +170776699720,213,0 +170776699768,213,0 +170776699816,213,0 +170776699864,213,0 +170776699914,213,0 +170776699961,213,0 +170776700009,213,0 +170776700059,214,0 +170776700109,213,0 +170776700156,213,0 +170776700204,213,0 +170776700254,213,0 +170776700303,213,0 +170776700351,213,0 +170776700399,213,0 +170776700447,214,0 +170776700495,213,0 +170776700543,213,0 +170776700591,213,0 +170776700640,213,0 +170776700688,213,0 +170776700736,213,0 +170776700784,213,0 +170776700832,213,0 +170776700881,213,0 +170776700929,213,0 +170776700977,213,0 +170776701025,213,0 +170776701073,213,0 +170776701123,213,0 +170776701172,214,0 +170776701220,213,0 +170776701268,214,0 +170776701318,214,0 +170776701366,213,0 +170776701413,213,0 +170776701463,214,0 +170776701511,214,0 +170776701559,213,0 +170776701607,213,0 +170776701655,213,0 +170776701703,213,0 +170776701752,214,0 +170776701802,213,0 +170776701850,213,0 +170776701898,213,0 +170776701946,214,0 +170776701993,213,0 +170776702043,213,0 +170776702091,214,0 +170776702139,213,0 +170776702188,214,0 +170776702236,213,0 +170776702284,213,0 +170776702332,213,0 +170776702382,213,0 +170776702430,214,0 +170776702478,213,0 +170776702525,213,0 +170776702573,213,0 +170776702621,214,0 +170776702671,213,0 +170776702720,213,0 +170776702768,214,0 +170776702816,213,0 +170776702866,214,0 +170776702915,214,0 +170776702965,213,0 +170776703014,214,0 +170776703062,214,0 +170776703110,214,0 +170776703158,213,0 +170776703206,213,0 +170776703255,213,0 +170776703303,213,0 +170776703351,213,0 +170776703399,213,0 +170776703447,213,0 +170776703495,213,0 +170776703545,213,0 +170776703594,213,0 +170776703642,213,0 +170776703692,213,0 +170776703739,213,0 +170776703787,213,0 +170776703835,213,0 +170776703883,214,0 +170776703933,214,0 +170776703981,214,0 +170776704028,213,0 +170776704078,214,0 +170776704126,214,0 +170776704174,213,0 +170776704221,213,0 +170776704271,213,0 +170776704319,213,0 +170776704367,214,0 +170776704415,213,0 +170776704464,213,0 +170776704514,213,0 +170776704562,213,0 +170776704609,214,0 +170776704657,213,0 +170776704707,213,0 +170776704755,214,0 +170776704803,213,0 +170776704851,213,0 +170776704900,213,0 +170776704950,214,0 +170776704997,213,0 +170776705045,214,0 +170776705095,214,0 +170776705143,213,0 +170776705191,214,0 +170776705239,214,0 +170776705288,213,0 +170776705336,214,0 +170776705384,214,0 +170776705432,213,0 +170776705481,213,0 +170776705529,213,0 +170776705579,214,0 +170776705627,213,0 +170776705675,213,0 +170776705723,213,0 +170776705771,213,0 +170776705820,213,0 +170776705870,213,0 +170776705918,214,0 +170776705965,213,0 +170776706013,214,0 +170776706061,213,0 +170776706109,214,0 +170776706157,214,0 +170776706205,213,0 +170776706252,213,0 +170776706300,214,0 +170776706348,213,0 +170776706396,213,0 +170776706444,213,0 +170776706491,213,0 +170776706539,213,0 +170776706587,213,0 +170776706635,213,0 +170776706683,214,0 +170776706731,213,0 +170776706778,214,0 +170776706826,213,0 +170776706874,213,0 +170776706922,213,0 +170776706970,213,0 +170776707018,213,0 +170776707065,213,0 +170776707113,213,0 +170776707161,214,0 +170776707209,213,0 +170776707257,213,0 +170776707305,213,0 +170776707352,213,0 +170776707400,213,0 +170776707448,213,0 +170776707496,214,0 +170776707544,213,0 +170776707593,213,0 +170776707643,214,0 +170776707692,213,0 +170776707740,213,0 +170776707788,213,0 +170776707836,214,0 +170776707883,213,0 +170776707931,214,0 +170776707979,213,0 +170776708029,213,0 +170776708078,214,0 +170776708126,214,0 +170776708174,214,0 +170776708222,213,0 +170776708271,213,0 +170776708319,214,0 +170776708367,213,0 +170776708415,214,0 +170776708463,213,0 +170776708510,213,0 +170776708558,214,0 +170776708606,213,0 +170776708654,213,0 +170776708702,213,0 +170776708750,213,0 +170776708799,213,0 +170776708847,214,0 +170776708896,214,0 +170776708944,214,0 +170776708992,213,0 +170776709040,213,0 +170776709088,213,0 +170776709136,214,0 +170776709183,213,0 +170776709231,213,0 +170776709279,213,0 +170776709327,213,0 +170776709375,213,0 +170776709423,213,0 +170776709471,214,0 +170776709519,213,0 +170776709567,213,0 +170776709615,213,0 +170776709662,214,0 +170776709710,213,0 +170776709758,214,0 +170776709806,213,0 +170776709854,214,0 +170776709901,213,0 +170776709949,213,0 +170776709999,213,0 +170776710047,214,0 +170776710095,213,0 +170776710143,213,0 +170776710191,213,0 +170776710239,213,0 +170776710288,213,0 +170776710336,213,0 +170776710384,214,0 +170776710432,213,0 +170776710480,214,0 +170776710528,214,0 +170776710576,213,0 +170776710624,214,0 +170776710673,213,0 +170776710721,213,0 +170776710769,214,0 +170776710819,213,0 +170776710867,213,0 +170776710914,214,0 +170776710964,214,0 +170776711014,213,0 +170776711061,213,0 +170776711109,214,0 +170776711157,214,0 +170776711207,214,0 +170776711255,213,0 +170776711304,214,0 +170776711352,213,0 +170776711402,214,0 +170776711449,214,0 +170776711497,214,0 +170776711545,214,0 +170776711593,214,0 +170776711641,214,0 +170776711689,214,0 +170776711739,214,0 +170776711786,213,0 +170776711834,213,0 +170776711882,213,0 +170776711930,213,0 +170776711978,213,0 +170776712026,214,0 +170776712074,214,0 +170776712122,214,0 +170776712170,214,0 +170776712218,214,0 +170776712267,213,0 +170776712315,214,0 +170776712363,213,0 +170776712412,213,0 +170776712460,214,0 +170776712509,213,0 +170776712557,213,0 +170776712605,214,0 +170776712653,213,0 +170776712702,213,0 +170776712752,213,0 +170776712801,213,0 +170776712849,213,0 +170776712897,214,0 +170776712947,214,0 +170776712995,213,0 +170776713043,214,0 +170776713092,213,0 +170776713140,214,0 +170776713190,213,0 +170776713237,213,0 +170776713285,214,0 +170776713335,214,0 +170776713384,214,0 +170776713432,214,0 +170776713482,214,0 +170776713531,214,0 +170776713579,214,0 +170776713627,214,0 +170776713675,214,0 +170776713725,214,0 +170776713773,214,0 +170776713821,214,0 +170776713869,214,0 +170776713917,215,0 +170776713964,215,0 +170776714012,215,0 +170776714060,215,0 +170776714110,215,0 +170776714159,215,0 +170776714207,215,0 +170776714255,215,0 +170776714303,215,0 +170776714351,214,0 +170776714399,213,0 +170776714447,213,0 +170776714495,213,0 +170776714543,213,0 +170776714592,213,0 +170776714642,214,0 +170776714691,214,0 +170776714739,214,0 +170776714788,214,0 +170776714838,214,0 +170776714886,214,0 +170776714935,214,0 +170776714985,214,0 +170776715032,214,0 +170776715080,215,0 +170776715130,214,0 +170776715178,214,0 +170776715227,215,0 +170776715277,215,0 +170776715325,215,0 +170776715373,215,0 +170776715420,215,0 +170776715468,215,0 +170776715516,213,0 +170776715566,213,0 +170776715615,213,0 +170776715665,213,0 +170776715713,213,0 +170776715762,214,0 +170776715810,214,0 +170776715858,214,0 +170776715906,214,0 +170776715955,214,0 +170776716003,214,0 +170776716051,214,0 +170776716099,214,0 +170776716147,215,0 +170776716196,215,0 +170776716244,215,0 +170776716292,214,0 +170776716340,215,0 +170776716388,215,0 +170776716436,213,0 +170776716484,213,0 +170776716532,213,0 +170776716581,213,0 +170776716630,213,0 +170776716678,213,0 +170776716728,213,0 +170776716776,213,0 +170776716824,214,0 +170776716872,214,0 +170776716920,214,0 +170776716968,214,0 +170776717015,214,0 +170776717063,214,0 +170776717111,214,0 +170776717159,214,0 +170776717207,214,0 +170776717255,214,0 +170776717303,215,0 +170776717351,213,0 +170776717399,213,0 +170776717448,213,0 +170776717496,213,0 +170776717544,214,0 +170776717592,213,0 +170776717640,213,0 +170776717690,213,0 +170776717739,213,0 +170776717787,214,0 +170776717837,214,0 +170776717886,214,0 +170776717934,214,0 +170776717982,214,0 +170776718030,214,0 +170776718078,214,0 +170776718126,215,0 +170776718173,215,0 +170776718221,215,0 +170776718269,214,0 +170776718319,213,0 +170776718368,213,0 +170776718416,213,0 +170776718464,213,0 +170776718514,213,0 +170776718563,213,0 +170776718613,213,0 +170776718661,213,0 +170776718709,213,0 +170776718757,213,0 +170776718806,214,0 +170776718854,214,0 +170776718902,214,0 +170776718952,214,0 +170776718999,214,0 +170776719049,214,0 +170776719097,214,0 +170776719146,215,0 +170776719194,215,0 +170776719242,213,0 +170776719290,213,0 +170776719339,213,0 +170776719387,213,0 +170776719435,213,0 +170776719483,213,0 +170776719530,214,0 +170776719580,214,0 +170776719628,214,0 +170776719676,214,0 +170776719723,214,0 +170776719771,214,0 +170776719821,214,0 +170776719869,214,0 +170776719918,215,0 +170776719968,214,0 +170776720017,215,0 +170776720065,215,0 +170776720115,215,0 +170776720164,213,0 +170776720212,213,0 +170776720260,213,0 +170776720308,213,0 +170776720356,213,0 +170776720403,214,0 +170776720453,214,0 +170776720501,214,0 +170776720549,214,0 +170776720597,214,0 +170776720644,214,0 +170776720692,214,0 +170776720740,214,0 +170776720790,214,0 +170776720837,215,0 +170776720885,215,0 +170776720933,215,0 +170776720981,215,0 +170776721029,215,0 +170776721077,213,0 +170776721126,213,0 +170776721174,213,0 +170776721222,213,0 +170776721272,213,0 +170776721319,213,0 +170776721367,213,0 +170776721415,213,0 +170776721465,214,0 +170776721513,214,0 +170776721562,214,0 +170776721610,214,0 +170776721660,214,0 +170776721708,214,0 +170776721756,215,0 +170776721805,215,0 +170776721855,215,0 +170776721903,215,0 +170776721951,215,0 +170776721999,214,0 +170776722046,213,0 +170776722094,213,0 +170776722142,213,0 +170776722190,213,0 +170776722238,213,0 +170776722286,213,0 +170776722333,213,0 +170776722383,213,0 +170776722431,213,0 +170776722479,213,0 +170776722526,214,0 +170776722574,214,0 +170776722622,214,0 +170776722670,214,0 +170776722719,214,0 +170776722767,214,0 +170776722815,214,0 +170776722863,214,0 +170776722911,214,0 +170776722959,213,0 +170776723006,213,0 +170776723054,213,0 +170776723102,213,0 +170776723152,213,0 +170776723201,213,0 +170776723249,213,0 +170776723297,213,0 +170776723345,214,0 +170776723395,214,0 +170776723444,214,0 +170776723494,214,0 +170776723543,214,0 +170776723591,214,0 +170776723639,215,0 +170776723689,214,0 +170776723737,214,0 +170776723784,215,0 +170776723832,214,0 +170776723880,213,0 +170776723930,213,0 +170776723977,214,0 +170776724025,213,0 +170776724073,214,0 +170776724121,213,0 +170776724169,214,0 +170776724218,214,0 +170776724266,214,0 +170776724314,214,0 +170776724362,214,0 +170776724410,214,0 +170776724459,214,0 +170776724507,215,0 +170776724555,214,0 +170776724604,215,0 +170776724652,214,0 +170776724700,215,0 +170776724749,215,0 +170776724799,214,0 +170776724847,213,0 +170776724896,213,0 +170776724944,213,0 +170776724992,213,0 +170776725039,213,0 +170776725087,214,0 +170776725135,214,0 +170776725183,214,0 +170776725231,214,0 +170776725279,214,0 +170776725326,214,0 +170776725376,214,0 +170776725424,215,0 +170776725471,215,0 +170776725519,214,0 +170776725567,215,0 +170776725615,215,0 +170776725663,215,0 +170776725711,214,0 +170776725760,213,0 +170776725810,213,0 +170776725857,214,0 +170776725905,213,0 +170776725953,214,0 +170776726001,214,0 +170776726049,214,0 +170776726098,214,0 +170776726146,214,0 +170776726194,214,0 +170776726242,214,0 +170776726289,214,0 +170776726339,214,0 +170776726387,214,0 +170776726435,214,0 +170776726483,214,0 +170776726530,214,0 +170776726578,215,0 +170776726626,214,0 +170776726674,213,0 +170776726723,213,0 +170776726771,213,0 +170776726819,214,0 +170776726867,213,0 +170776726915,213,0 +170776726965,214,0 +170776727013,214,0 +170776727061,214,0 +170776727109,214,0 +170776727157,214,0 +170776727206,214,0 +170776727254,214,0 +170776727302,214,0 +170776727350,214,0 +170776727399,214,0 +170776727447,214,0 +170776727495,214,0 +170776727545,214,0 +170776727594,213,0 +170776727644,213,0 +170776727692,214,0 +170776727740,214,0 +170776727788,214,0 +170776727837,214,0 +170776727887,214,0 +170776727936,214,0 +170776727986,214,0 +170776728034,214,0 +170776728082,214,0 +170776728130,214,0 +170776728178,215,0 +170776728226,214,0 +170776728275,214,0 +170776728323,214,0 +170776728371,214,0 +170776728420,215,0 +170776728468,215,0 +170776728518,214,0 +170776728565,214,0 +170776728613,214,0 +170776728661,214,0 +170776728710,214,0 +170776728758,214,0 +170776728806,214,0 +170776728854,214,0 +170776728902,214,0 +170776728950,214,0 +170776728998,215,0 +170776729045,215,0 +170776729093,215,0 +170776729141,215,0 +170776729189,215,0 +170776729237,215,0 +170776729286,215,0 +170776729334,215,0 +170776729382,215,0 +170776729429,214,0 +170776729477,213,0 +170776729525,213,0 +170776729573,214,0 +170776729621,214,0 +170776729669,214,0 +170776729717,214,0 +170776729765,214,0 +170776729812,214,0 +170776729860,214,0 +170776729908,215,0 +170776729956,215,0 +170776730004,215,0 +170776730052,215,0 +170776730100,215,0 +170776730149,215,0 +170776730197,215,0 +170776730245,215,0 +170776730293,215,0 +170776730342,214,0 +170776730390,213,0 +170776730438,213,0 +170776730486,213,0 +170776730534,214,0 +170776730582,214,0 +170776730630,214,0 +170776730677,214,0 +170776730725,214,0 +170776730773,214,0 +170776730821,214,0 +170776730871,214,0 +170776730919,214,0 +170776730967,214,0 +170776731015,214,0 +170776731062,214,0 +170776731112,214,0 +170776731160,214,0 +170776731208,214,0 +170776731256,214,0 +170776731303,213,0 +170776731351,213,0 +170776731399,214,0 +170776731447,213,0 +170776731495,213,0 +170776731542,213,0 +170776731592,213,0 +170776731640,213,0 +170776731688,214,0 +170776731735,214,0 +170776731783,214,0 +170776731831,214,0 +170776731879,214,0 +170776731927,214,0 +170776731975,214,0 +170776732024,214,0 +170776732072,214,0 +170776732120,214,0 +170776732168,214,0 +170776732218,214,0 +170776732267,213,0 +170776732315,213,0 +170776732363,213,0 +170776732411,213,0 +170776732461,214,0 +170776732508,214,0 +170776732556,214,0 +170776732604,214,0 +170776732652,214,0 +170776732701,214,0 +170776732749,214,0 +170776732797,214,0 +170776732846,214,0 +170776732894,215,0 +170776732942,215,0 +170776732990,215,0 +170776733039,215,0 +170776733087,214,0 +170776733135,214,0 +170776733183,214,0 +170776733231,213,0 +170776733279,214,0 +170776733326,214,0 +170776733374,214,0 +170776733424,214,0 +170776733472,214,0 +170776733519,214,0 +170776733567,214,0 +170776733617,214,0 +170776733667,214,0 +170776733716,215,0 +170776733766,215,0 +170776733815,215,0 +170776733863,215,0 +170776733913,215,0 +170776733960,215,0 +170776734008,215,0 +170776734056,214,0 +170776734106,213,0 +170776734155,213,0 +170776734203,214,0 +170776734251,214,0 +170776734301,214,0 +170776734350,214,0 +170776734400,214,0 +170776734449,214,0 +170776734497,214,0 +170776734545,214,0 +170776734593,214,0 +170776734641,214,0 +170776734689,214,0 +170776734739,214,0 +170776734788,214,0 +170776734836,215,0 +170776734884,215,0 +170776734932,215,0 +170776734980,215,0 +170776735028,213,0 +170776735076,213,0 +170776735123,213,0 +170776735171,213,0 +170776735219,213,0 +170776735269,213,0 +170776735318,214,0 +170776735368,214,0 +170776735416,214,0 +170776735464,214,0 +170776735512,214,0 +170776735560,214,0 +170776735607,214,0 +170776735655,214,0 +170776735703,214,0 +170776735751,214,0 +170776735799,214,0 +170776735846,215,0 +170776735894,214,0 +170776735942,213,0 +170776735990,213,0 +170776736038,213,0 +170776736086,213,0 +170776736134,213,0 +170776736182,213,0 +170776736229,213,0 +170776736277,213,0 +170776736325,214,0 +170776736373,213,0 +170776736421,214,0 +170776736471,214,0 +170776736519,214,0 +170776736567,214,0 +170776736616,214,0 +170776736664,214,0 +170776736712,214,0 +170776736762,214,0 +170776736810,215,0 +170776736859,214,0 +170776736907,213,0 +170776736957,213,0 +170776737006,213,0 +170776737054,213,0 +170776737104,213,0 +170776737153,213,0 +170776737201,213,0 +170776737251,213,0 +170776737299,213,0 +170776737347,213,0 +170776737395,214,0 +170776737443,213,0 +170776737490,214,0 +170776737538,214,0 +170776737586,214,0 +170776737634,214,0 +170776737682,214,0 +170776737730,214,0 +170776737779,215,0 +170776737827,213,0 +170776737875,213,0 +170776737923,213,0 +170776737971,213,0 +170776738019,213,0 +170776738067,213,0 +170776738115,213,0 +170776738163,213,0 +170776738211,213,0 +170776738260,213,0 +170776738308,214,0 +170776738356,214,0 +170776738404,214,0 +170776738452,214,0 +170776738501,214,0 +170776738549,214,0 +170776738597,214,0 +170776738645,214,0 +170776738693,214,0 +170776738741,214,0 +170776738789,213,0 +170776738837,213,0 +170776738885,213,0 +170776738933,213,0 +170776738981,213,0 +170776739029,213,0 +170776739077,213,0 +170776739124,213,0 +170776739172,213,0 +170776739220,213,0 +170776739270,214,0 +170776739318,214,0 +170776739365,214,0 +170776739415,214,0 +170776739463,214,0 +170776739512,214,0 +170776739560,214,0 +170776739608,215,0 +170776739656,214,0 +170776739704,213,0 +170776739752,213,0 +170776739800,213,0 +170776739848,214,0 +170776739896,213,0 +170776739945,213,0 +170776739993,213,0 +170776740043,214,0 +170776740091,214,0 +170776740140,214,0 +170776740188,214,0 +170776740236,214,0 +170776740284,214,0 +170776740332,214,0 +170776740380,214,0 +170776740429,215,0 +170776740479,215,0 +170776740527,215,0 +170776740576,214,0 +170776740624,213,0 +170776740672,213,0 +170776740720,214,0 +170776740770,214,0 +170776740817,214,0 +170776740865,214,0 +170776740913,214,0 +170776740961,214,0 +170776741009,214,0 +170776741059,214,0 +170776741108,215,0 +170776741158,215,0 +170776741206,215,0 +170776741254,215,0 +170776741301,215,0 +170776741351,215,0 +170776741400,215,0 +170776741448,215,0 +170776741498,214,0 +170776741546,213,0 +170776741595,213,0 +170776741643,213,0 +170776741691,214,0 +170776741739,214,0 +170776741789,214,0 +170776741837,214,0 +170776741884,214,0 +170776741932,214,0 +170776741980,214,0 +170776742028,214,0 +170776742076,214,0 +170776742125,214,0 +170776742175,215,0 +170776742223,215,0 +170776742270,215,0 +170776742318,215,0 +170776742368,215,0 +170776742416,215,0 +170776742464,214,0 +170776742512,213,0 +170776742560,213,0 +170776742608,213,0 +170776742655,214,0 +170776742705,213,0 +170776742753,214,0 +170776742801,214,0 +170776742848,214,0 +170776742896,214,0 +170776742946,214,0 +170776742994,214,0 +170776743041,214,0 +170776743089,214,0 +170776743137,215,0 +170776743185,215,0 +170776743233,215,0 +170776743281,214,0 +170776743331,214,0 +170776743380,213,0 +170776743428,213,0 +170776743476,213,0 +170776743526,213,0 +170776743574,214,0 +170776743622,213,0 +170776743671,214,0 +170776743721,214,0 +170776743769,214,0 +170776743818,214,0 +170776743868,214,0 +170776743916,214,0 +170776743965,214,0 +170776744013,214,0 +170776744061,214,0 +170776744109,215,0 +170776744158,214,0 +170776744208,214,0 +170776744256,215,0 +170776744304,214,0 +170776744352,213,0 +170776744400,213,0 +170776744448,213,0 +170776744496,213,0 +170776744544,213,0 +170776744592,214,0 +170776744639,214,0 +170776744687,214,0 +170776744737,214,0 +170776744786,214,0 +170776744836,214,0 +170776744884,214,0 +170776744932,214,0 +170776744980,215,0 +170776745028,214,0 +170776745077,214,0 +170776745125,214,0 +170776745173,215,0 +170776745221,214,0 +170776745269,213,0 +170776745317,213,0 +170776745366,213,0 +170776745414,213,0 +170776745462,213,0 +170776745511,213,0 +170776745561,214,0 +170776745609,214,0 +170776745657,214,0 +170776745705,214,0 +170776745752,214,0 +170776745800,214,0 +170776745848,214,0 +170776745898,215,0 +170776745946,214,0 +170776745994,215,0 +170776746041,215,0 +170776746089,215,0 +170776746137,215,0 +170776746185,213,0 +170776746233,213,0 +170776746283,213,0 +170776746331,213,0 +170776746378,213,0 +170776746428,213,0 +170776746476,213,0 +170776746524,214,0 +170776746573,214,0 +170776746621,214,0 +170776746670,214,0 +170776746718,214,0 +170776746766,214,0 +170776746814,215,0 +170776746862,214,0 +170776746910,215,0 +170776746957,215,0 +170776747005,215,0 +170776747053,215,0 +170776747101,213,0 +170776747149,213,0 +170776747196,213,0 +170776747244,213,0 +170776747292,213,0 +170776747340,213,0 +170776747388,213,0 +170776747435,214,0 +170776747483,214,0 +170776747531,214,0 +170776747579,214,0 +170776747628,214,0 +170776747676,214,0 +170776747724,214,0 +170776747772,214,0 +170776747820,214,0 +170776747868,214,0 +170776747916,214,0 +170776747965,214,0 +170776748013,214,0 +170776748061,213,0 +170776748109,213,0 +170776748157,213,0 +170776748205,213,0 +170776748253,213,0 +170776748300,213,0 +170776748348,213,0 +170776748396,213,0 +170776748444,213,0 +170776748493,214,0 +170776748541,214,0 +170776748589,214,0 +170776748638,214,0 +170776748686,214,0 +170776748736,214,0 +170776748785,214,0 +170776748833,214,0 +170776748881,215,0 +170776748930,214,0 +170776748978,213,0 +170776749026,213,0 +170776749074,213,0 +170776749122,213,0 +170776749169,213,0 +170776749217,213,0 +170776749265,213,0 +170776749313,213,0 +170776749361,213,0 +170776749408,214,0 +170776749458,214,0 +170776749506,214,0 +170776749554,214,0 +170776749601,214,0 +170776749649,214,0 +170776749697,214,0 +170776749745,214,0 +170776749793,215,0 +170776749841,215,0 +170776749889,214,0 +170776749936,213,0 +170776749986,213,0 +170776750034,214,0 +170776750082,214,0 +170776750131,214,0 +170776750181,214,0 +170776750229,214,0 +170776750278,214,0 +170776750326,214,0 +170776750374,214,0 +170776750422,215,0 +170776750470,215,0 +170776750518,215,0 +170776750566,215,0 +170776750615,215,0 +170776750663,215,0 +170776750713,215,0 +170776750761,215,0 +170776750810,214,0 +170776750858,213,0 +170776750906,213,0 +170776750956,214,0 +170776751005,214,0 +170776751053,214,0 +170776751103,214,0 +170776751151,214,0 +170776751200,214,0 +170776751250,214,0 +170776751299,214,0 +170776751347,215,0 +170776751395,215,0 +170776751445,215,0 +170776751492,215,0 +170776751540,215,0 +170776751588,215,0 +170776751636,215,0 +170776751684,215,0 +170776751732,214,0 +170776751780,213,0 +170776751829,214,0 +170776751877,213,0 +170776751927,213,0 +170776751976,213,0 +170776752026,214,0 +170776752074,214,0 +170776752122,214,0 +170776752170,214,0 +170776752217,214,0 +170776752267,214,0 +170776752315,214,0 +170776752363,215,0 +170776752411,214,0 +170776752460,215,0 +170776752510,214,0 +170776752558,215,0 +170776752606,215,0 +170776752654,214,0 +170776752702,213,0 +170776752749,213,0 +170776752797,213,0 +170776752847,213,0 +170776752895,214,0 +170776752944,213,0 +170776752994,214,0 +170776753042,213,0 +170776753091,214,0 +170776753139,214,0 +170776753187,214,0 +170776753236,214,0 +170776753286,215,0 +170776753335,215,0 +170776753385,215,0 +170776753432,215,0 +170776753480,215,0 +170776753528,215,0 +170776753576,214,0 +170776753626,213,0 +170776753674,213,0 +170776753722,213,0 +170776753771,213,0 +170776753820,213,0 +170776753870,213,0 +170776753918,214,0 +170776753966,214,0 +170776754014,214,0 +170776754062,214,0 +170776754111,214,0 +170776754159,214,0 +170776754207,214,0 +170776754255,214,0 +170776754303,215,0 +170776754351,214,0 +170776754400,214,0 +170776754448,215,0 +170776754496,214,0 +170776754544,213,0 +170776754593,213,0 +170776754641,213,0 +170776754689,214,0 +170776754737,214,0 +170776754785,214,0 +170776754832,214,0 +170776754882,214,0 +170776754930,214,0 +170776754978,214,0 +170776755025,214,0 +170776755073,215,0 +170776755121,215,0 +170776755169,215,0 +170776755219,215,0 +170776755267,215,0 +170776755315,215,0 +170776755364,215,0 +170776755414,214,0 +170776755462,214,0 +170776755510,213,0 +170776755558,214,0 +170776755606,214,0 +170776755653,214,0 +170776755701,214,0 +170776755749,214,0 +170776755797,214,0 +170776755845,214,0 +170776755893,214,0 +170776755941,215,0 +170776755989,214,0 +170776756037,214,0 +170776756086,215,0 +170776756136,215,0 +170776756185,214,0 +170776756235,215,0 +170776756283,214,0 +170776756331,215,0 +170776756380,214,0 +170776756428,214,0 +170776756476,214,0 +170776756524,214,0 +170776756572,214,0 +170776756622,214,0 +170776756670,214,0 +170776756717,214,0 +170776756765,214,0 +170776756813,214,0 +170776756861,214,0 +170776756911,215,0 +170776756960,215,0 +170776757010,214,0 +170776757058,215,0 +170776757107,215,0 +170776757155,215,0 +170776757203,215,0 +170776757251,214,0 +170776757299,214,0 +170776757347,214,0 +170776757397,213,0 +170776757446,214,0 +170776757494,214,0 +170776757542,214,0 +170776757592,214,0 +170776757641,214,0 +170776757689,214,0 +170776757739,214,0 +170776757786,214,0 +170776757834,215,0 +170776757882,214,0 +170776757930,215,0 +170776757978,215,0 +170776758026,215,0 +170776758074,215,0 +170776758122,215,0 +170776758170,215,0 +170776758218,215,0 +170776758268,213,0 +170776758317,213,0 +170776758367,213,0 +170776758415,213,0 +170776758462,213,0 +170776758512,214,0 +170776758560,214,0 +170776758608,214,0 +170776758656,214,0 +170776758705,214,0 +170776758753,214,0 +170776758801,214,0 +170776758850,214,0 +170776758900,214,0 +170776758949,214,0 +170776758997,214,0 +170776759047,214,0 +170776759096,214,0 +170776759144,214,0 +170776759192,213,0 +170776759240,213,0 +170776759290,213,0 +170776759339,214,0 +170776759389,213,0 +170776759437,214,0 +170776759486,214,0 +170776759534,214,0 +170776759582,214,0 +170776759630,214,0 +170776759680,214,0 +170776759729,214,0 +170776759777,214,0 +170776759827,214,0 +170776759875,214,0 +170776759922,214,0 +170776759972,215,0 +170776760021,215,0 +170776760069,214,0 +170776760119,213,0 +170776760167,213,0 +170776760216,213,0 +170776760264,213,0 +170776760312,213,0 +170776760360,213,0 +170776760408,214,0 +170776760455,214,0 +170776760503,214,0 +170776760551,214,0 +170776760599,214,0 +170776760649,214,0 +170776760698,214,0 +170776760748,214,0 +170776760796,214,0 +170776760843,214,0 +170776760891,214,0 +170776760939,215,0 +170776760989,214,0 +170776761037,213,0 +170776761085,213,0 +170776761133,213,0 +170776761181,213,0 +170776761229,213,0 +170776761276,213,0 +170776761326,213,0 +170776761375,214,0 +170776761423,214,0 +170776761471,214,0 +170776761519,214,0 +170776761567,214,0 +170776761615,214,0 +170776761663,214,0 +170776761710,214,0 +170776761758,214,0 +170776761806,215,0 +170776761854,214,0 +170776761902,215,0 +170776761950,213,0 +170776761998,213,0 +170776762047,213,0 +170776762095,213,0 +170776762143,213,0 +170776762190,213,0 +170776762238,213,0 +170776762286,213,0 +170776762334,213,0 +170776762382,214,0 +170776762430,214,0 +170776762477,214,0 +170776762525,214,0 +170776762573,214,0 +170776762623,214,0 +170776762671,214,0 +170776762719,214,0 +170776762766,214,0 +170776762814,214,0 +170776762862,214,0 +170776762912,213,0 +170776762960,213,0 +170776763008,213,0 +170776763057,213,0 +170776763105,213,0 +170776763153,214,0 +170776763203,214,0 +170776763252,214,0 +170776763302,214,0 +170776763350,214,0 +170776763398,214,0 +170776763445,214,0 +170776763495,214,0 +170776763543,215,0 +170776763591,214,0 +170776763638,215,0 +170776763688,215,0 +170776763736,215,0 +170776763784,215,0 +170776763831,213,0 +170776763881,213,0 +170776763928,213,0 +170776763976,214,0 +170776764024,214,0 +170776764074,214,0 +170776764122,214,0 +170776764169,214,0 +170776764217,214,0 +170776764265,214,0 +170776764313,214,0 +170776764361,214,0 +170776764409,215,0 +170776764456,215,0 +170776764504,215,0 +170776764552,215,0 +170776764600,215,0 +170776764649,215,0 +170776764697,215,0 +170776764745,214,0 +170776764794,213,0 +170776764842,213,0 +170776764890,213,0 +170776764938,213,0 +170776764986,214,0 +170776765034,214,0 +170776765082,214,0 +170776765131,214,0 +170776765179,214,0 +170776765229,214,0 +170776765277,214,0 +170776765326,215,0 +170776765374,215,0 +170776765422,214,0 +170776765470,215,0 +170776765518,215,0 +170776765566,215,0 +170776765615,215,0 +170776765663,214,0 +170776765713,213,0 +170776765761,213,0 +170776765809,213,0 +170776765857,214,0 +170776765906,214,0 +170776765954,214,0 +170776766002,214,0 +170776766050,214,0 +170776766099,214,0 +170776766147,214,0 +170776766195,214,0 +170776766243,214,0 +170776766293,214,0 +170776766342,215,0 +170776766390,215,0 +170776766438,215,0 +170776766486,215,0 +170776766535,215,0 +170776766583,214,0 +170776766632,213,0 +170776766680,213,0 +170776766728,213,0 +170776766777,213,0 +170776766827,213,0 +170776766875,213,0 +170776766922,213,0 +170776766970,213,0 +170776767018,214,0 +170776767066,214,0 +170776767115,214,0 +170776767163,214,0 +170776767211,214,0 +170776767260,214,0 +170776767308,214,0 +170776767356,214,0 +170776767404,215,0 +170776767453,215,0 +170776767501,215,0 +170776767549,213,0 +170776767597,213,0 +170776767646,214,0 +170776767694,214,0 +170776767743,214,0 +170776767791,214,0 +170776767839,214,0 +170776767887,214,0 +170776767935,214,0 +170776767983,214,0 +170776768031,214,0 +170776768080,214,0 +170776768128,214,0 +170776768176,214,0 +170776768223,214,0 +170776768273,215,0 +170776768322,215,0 +170776768370,215,0 +170776768418,215,0 +170776768466,213,0 +170776768514,213,0 +170776768561,213,0 +170776768609,213,0 +170776768657,213,0 +170776768705,213,0 +170776768753,214,0 +170776768801,214,0 +170776768848,214,0 +170776768896,214,0 +170776768944,214,0 +170776768992,214,0 +170776769040,214,0 +170776769089,214,0 +170776769138,215,0 +170776769186,214,0 +170776769234,215,0 +170776769282,214,0 +170776769331,215,0 +170776769379,213,0 +170776769427,213,0 +170776769475,213,0 +170776769523,214,0 +170776769570,214,0 +170776769620,214,0 +170776769668,214,0 +170776769716,214,0 +170776769763,214,0 +170776769811,214,0 +170776769859,214,0 +170776769907,214,0 +170776769955,214,0 +170776770003,215,0 +170776770051,214,0 +170776770099,215,0 +170776770147,215,0 +170776770194,215,0 +170776770242,215,0 +170776770292,214,0 +170776770340,213,0 +170776770387,213,0 +170776770437,213,0 +170776770485,213,0 +170776770532,213,0 +170776770582,213,0 +170776770631,214,0 +170776770679,214,0 +170776770727,214,0 +170776770775,214,0 +170776770822,214,0 +170776770870,214,0 +170776770918,214,0 +170776770966,215,0 +170776771013,214,0 +170776771061,214,0 +170776771109,214,0 +170776771157,214,0 +170776771205,214,0 +170776771253,213,0 +170776771301,213,0 +170776771348,213,0 +170776771396,213,0 +170776771444,213,0 +170776771492,213,0 +170776771540,213,0 +170776771588,214,0 +170776771637,214,0 +170776771685,214,0 +170776771733,214,0 +170776771780,214,0 +170776771828,214,0 +170776771876,214,0 +170776771924,214,0 +170776771972,214,0 +170776772020,214,0 +170776772068,214,0 +170776772117,215,0 +170776772165,214,0 +170776772213,213,0 +170776772261,213,0 +170776772310,214,0 +170776772360,214,0 +170776772408,214,0 +170776772457,214,0 +170776772505,214,0 +170776772553,214,0 +170776772603,214,0 +170776772652,214,0 +170776772700,215,0 +170776772748,215,0 +170776772796,215,0 +170776772844,214,0 +170776772892,215,0 +170776772940,214,0 +170776772988,214,0 +170776773037,215,0 +170776773085,213,0 +170776773133,213,0 +170776773181,213,0 +170776773229,213,0 +170776773278,213,0 +170776773326,214,0 +170776773374,214,0 +170776773421,214,0 +170776773469,214,0 +170776773517,214,0 +170776773567,214,0 +170776773614,214,0 +170776773662,214,0 +170776773710,215,0 +170776773758,214,0 +170776773806,215,0 +170776773854,214,0 +170776773903,214,0 +170776773951,214,0 +170776773999,214,0 +170776774046,213,0 +170776774094,213,0 +170776774142,213,0 +170776774190,213,0 +170776774238,213,0 +170776774286,213,0 +170776774335,213,0 +170776774383,214,0 +170776774432,214,0 +170776774480,214,0 +170776774528,214,0 +170776774577,214,0 +170776774625,214,0 +170776774673,214,0 +170776774721,214,0 +170776774768,214,0 +170776774816,214,0 +170776774864,215,0 +170776774912,214,0 +170776774960,213,0 +170776775008,213,0 +170776775055,213,0 +170776775105,213,0 +170776775154,213,0 +170776775202,213,0 +170776775250,214,0 +170776775298,213,0 +170776775346,214,0 +170776775393,214,0 +170776775441,214,0 +170776775489,214,0 +170776775537,214,0 +170776775585,214,0 +170776775634,214,0 +170776775682,215,0 +170776775730,214,0 +170776775778,215,0 +170776775825,214,0 +170776775873,213,0 +170776775921,213,0 +170776775969,213,0 +170776776017,213,0 +170776776065,213,0 +170776776113,214,0 +170776776162,213,0 +170776776210,214,0 +170776776258,214,0 +170776776306,214,0 +170776776353,214,0 +170776776401,214,0 +170776776449,214,0 +170776776497,215,0 +170776776546,214,0 +170776776594,215,0 +170776776644,215,0 +170776776693,214,0 +170776776741,214,0 +170776776789,214,0 +170776776837,213,0 +170776776885,213,0 +170776776932,213,0 +170776776980,213,0 +170776777028,213,0 +170776777076,214,0 +170776777124,214,0 +170776777172,214,0 +170776777221,214,0 +170776777269,214,0 +170776777317,214,0 +170776777365,214,0 +170776777413,214,0 +170776777460,214,0 +170776777508,215,0 +170776777556,214,0 +170776777604,215,0 +170776777652,215,0 +170776777699,214,0 +170776777747,213,0 +170776777795,213,0 +170776777843,213,0 +170776777891,213,0 +170776777939,213,0 +170776777986,213,0 +170776778034,213,0 +170776778082,214,0 +170776778130,214,0 +170776778178,214,0 +170776778227,214,0 +170776778275,214,0 +170776778323,214,0 +170776778370,214,0 +170776778418,214,0 +170776778468,214,0 +170776778516,214,0 +170776778563,214,0 +170776778611,214,0 +170776778661,213,0 +170776778708,213,0 +170776778756,213,0 +170776778804,213,0 +170776778852,213,0 +170776778901,213,0 +170776778949,213,0 +170776778997,213,0 +170776779045,213,0 +170776779094,213,0 +170776779143,213,0 +170776779191,213,0 +170776779239,214,0 +170776779287,214,0 +170776779335,214,0 +170776779383,214,0 +170776779432,214,0 +170776779482,214,0 +170776779529,215,0 +170776779577,213,0 +170776779625,213,0 +170776779673,213,0 +170776779721,213,0 +170776779769,213,0 +170776779816,213,0 +170776779864,213,0 +170776779912,213,0 +170776779960,214,0 +170776780008,214,0 +170776780056,214,0 +170776780104,214,0 +170776780151,214,0 +170776780199,214,0 +170776780247,214,0 +170776780295,214,0 +170776780343,214,0 +170776780391,214,0 +170776780439,214,0 +170776780486,214,0 +170776780534,213,0 +170776780582,213,0 +170776780630,213,0 +170776780678,213,0 +170776780726,213,0 +170776780774,213,0 +170776780822,213,0 +170776780869,213,0 +170776780917,214,0 +170776780965,214,0 +170776781013,214,0 +170776781061,214,0 +170776781108,214,0 +170776781156,214,0 +170776781204,214,0 +170776781252,214,0 +170776781301,214,0 +170776781349,214,0 +170776781397,214,0 +170776781445,213,0 +170776781493,213,0 +170776781541,213,0 +170776781589,213,0 +170776781637,213,0 +170776781684,213,0 +170776781732,213,0 +170776781782,213,0 +170776781831,213,0 +170776781879,213,0 +170776781927,214,0 +170776781975,214,0 +170776782025,214,0 +170776782073,214,0 +170776782122,214,0 +170776782170,214,0 +170776782218,215,0 +170776782267,214,0 +170776782315,214,0 +170776782363,213,0 +170776782411,213,0 +170776782459,213,0 +170776782507,213,0 +170776782555,213,0 +170776782603,213,0 +170776782652,213,0 +170776782702,213,0 +170776782750,213,0 +170776782798,213,0 +170776782846,213,0 +170776782894,214,0 +170776782941,214,0 +170776782991,214,0 +170776783039,214,0 +170776783087,214,0 +170776783135,214,0 +170776783183,214,0 +170776783232,214,0 +170776783280,214,0 +170776783328,213,0 +170776783378,213,0 +170776783426,213,0 +170776783475,213,0 +170776783523,213,0 +170776783571,214,0 +170776783620,213,0 +170776783668,214,0 +170776783718,214,0 +170776783765,214,0 +170776783813,214,0 +170776783861,214,0 +170776783911,214,0 +170776783959,214,0 +170776784007,214,0 +170776784055,214,0 +170776784104,214,0 +170776784152,214,0 +170776784200,214,0 +170776784248,213,0 +170776784297,213,0 +170776784345,213,0 +170776784393,213,0 +170776784443,213,0 +170776784491,214,0 +170776784539,214,0 +170776784587,214,0 +170776784635,214,0 +170776784682,214,0 +170776784732,214,0 +170776784782,214,0 +170776784831,214,0 +170776784879,214,0 +170776784929,214,0 +170776784976,215,0 +170776785024,215,0 +170776785072,215,0 +170776785120,214,0 +170776785168,213,0 +170776785216,213,0 +170776785264,213,0 +170776785312,213,0 +170776785360,213,0 +170776785408,214,0 +170776785457,214,0 +170776785505,214,0 +170776785555,214,0 +170776785603,214,0 +170776785652,214,0 +170776785700,214,0 +170776785748,214,0 +170776785798,215,0 +170776785847,215,0 +170776785897,214,0 +170776785945,215,0 +170776785994,214,0 +170776786042,214,0 +170776786092,213,0 +170776786140,213,0 +170776786187,213,0 +170776786235,213,0 +170776786283,213,0 +170776786331,214,0 +170776786378,214,0 +170776786426,214,0 +170776786474,214,0 +170776786522,214,0 +170776786570,214,0 +170776786620,214,0 +170776786667,214,0 +170776786715,215,0 +170776786763,214,0 +170776786811,215,0 +170776786861,214,0 +170776786910,215,0 +170776786958,215,0 +170776787006,213,0 +170776787056,213,0 +170776787104,213,0 +170776787152,213,0 +170776787200,213,0 +170776787249,213,0 +170776787299,213,0 +170776787347,213,0 +170776787395,214,0 +170776787443,214,0 +170776787490,214,0 +170776787538,214,0 +170776787586,214,0 +170776787636,214,0 +170776787684,214,0 +170776787732,214,0 +170776787780,214,0 +170776787828,214,0 +170776787877,214,0 +170776787925,213,0 +170776787973,213,0 +170776788021,213,0 +170776788068,213,0 +170776788116,213,0 +170776788166,213,0 +170776788214,213,0 +170776788262,214,0 +170776788311,214,0 +170776788359,214,0 +170776788407,214,0 +170776788454,214,0 +170776788502,214,0 +170776788550,214,0 +170776788598,214,0 +170776788646,214,0 +170776788693,214,0 +170776788743,215,0 +170776788791,214,0 +170776788838,214,0 +170776788886,213,0 +170776788934,213,0 +170776788984,213,0 +170776789032,213,0 +170776789080,213,0 +170776789128,213,0 +170776789176,213,0 +170776789224,214,0 +170776789273,214,0 +170776789321,214,0 +170776789371,214,0 +170776789420,214,0 +170776789470,214,0 +170776789518,214,0 +170776789566,214,0 +170776789615,214,0 +170776789665,215,0 +170776789713,214,0 +170776789762,214,0 +170776789810,213,0 +170776789858,213,0 +170776789906,213,0 +170776789954,213,0 +170776790002,213,0 +170776790051,213,0 +170776790099,214,0 +170776790147,214,0 +170776790195,214,0 +170776790245,214,0 +170776790293,214,0 +170776790341,214,0 +170776790390,214,0 +170776790439,214,0 +170776790489,214,0 +170776790537,214,0 +170776790584,214,0 +170776790632,214,0 +170776790680,214,0 +170776790728,213,0 +170776790776,213,0 +170776790824,213,0 +170776790873,213,0 +170776790921,213,0 +170776790969,213,0 +170776791017,213,0 +170776791064,213,0 +170776791112,213,0 +170776791160,213,0 +170776791208,213,0 +170776791257,214,0 +170776791307,214,0 +170776791355,214,0 +170776791402,214,0 +170776791450,214,0 +170776791498,214,0 +170776791546,214,0 +170776791594,214,0 +170776791642,213,0 +170776791690,213,0 +170776791739,213,0 +170776791787,213,0 +170776791837,213,0 +170776791885,213,0 +170776791933,213,0 +170776791981,213,0 +170776792029,213,0 +170776792076,213,0 +170776792126,214,0 +170776792174,214,0 +170776792222,214,0 +170776792270,214,0 +170776792317,215,0 +170776792367,214,0 +170776792415,214,0 +170776792464,214,0 +170776792512,214,0 +170776792560,213,0 +170776792608,213,0 +170776792656,213,0 +170776792703,213,0 +170776792751,213,0 +170776792799,213,0 +170776792847,213,0 +170776792895,213,0 +170776792942,213,0 +170776792990,214,0 +170776793038,214,0 +170776793088,214,0 +170776793136,214,0 +170776793184,214,0 +170776793231,214,0 +170776793279,214,0 +170776793327,214,0 +170776793375,214,0 +170776793423,214,0 +170776793471,214,0 +170776793519,213,0 +170776793566,213,0 +170776793614,213,0 +170776793664,213,0 +170776793712,213,0 +170776793759,213,0 +170776793807,213,0 +170776793855,213,0 +170776793903,213,0 +170776793952,213,0 +170776794000,214,0 +170776794048,214,0 +170776794096,214,0 +170776794144,214,0 +170776794192,214,0 +170776794241,214,0 +170776794289,214,0 +170776794337,214,0 +170776794385,214,0 +170776794432,213,0 +170776794480,213,0 +170776794530,213,0 +170776794578,213,0 +170776794627,213,0 +170776794675,213,0 +170776794724,214,0 +170776794774,214,0 +170776794822,214,0 +170776794869,214,0 +170776794917,214,0 +170776794967,214,0 +170776795015,214,0 +170776795064,214,0 +170776795112,214,0 +170776795162,214,0 +170776795211,214,0 +170776795261,214,0 +170776795310,213,0 +170776795358,213,0 +170776795408,213,0 +170776795456,213,0 +170776795504,213,0 +170776795551,213,0 +170776795599,213,0 +170776795649,213,0 +170776795697,214,0 +170776795745,214,0 +170776795792,214,0 +170776795840,214,0 +170776795888,214,0 +170776795936,214,0 +170776795984,214,0 +170776796032,214,0 +170776796082,214,0 +170776796130,213,0 +170776796179,213,0 +170776796229,213,0 +170776796276,213,0 +170776796324,213,0 +170776796372,213,0 +170776796420,213,0 +170776796468,213,0 +170776796518,213,0 +170776796566,214,0 +170776796615,214,0 +170776796665,214,0 +170776796714,214,0 +170776796764,214,0 +170776796812,214,0 +170776796860,214,0 +170776796908,214,0 +170776796956,213,0 +170776797004,213,0 +170776797051,213,0 +170776797101,213,0 +170776797149,213,0 +170776797197,213,0 +170776797245,213,0 +170776797294,213,0 +170776797342,213,0 +170776797392,214,0 +170776797440,214,0 +170776797488,214,0 +170776797536,214,0 +170776797583,214,0 +170776797633,214,0 +170776797681,214,0 +170776797729,214,0 +170776797777,213,0 +170776797825,213,0 +170776797874,213,0 +170776797922,213,0 +170776797971,213,0 +170776798019,213,0 +170776798069,214,0 +170776798117,214,0 +170776798165,214,0 +170776798214,214,0 +170776798262,214,0 +170776798312,214,0 +170776798361,214,0 +170776798409,214,0 +170776798459,214,0 +170776798507,215,0 +170776798555,214,0 +170776798602,213,0 +170776798650,213,0 +170776798698,213,0 +170776798746,214,0 +170776798796,214,0 +170776798844,214,0 +170776798892,214,0 +170776798941,214,0 +170776798989,214,0 +170776799037,214,0 +170776799085,214,0 +170776799133,214,0 +170776799181,215,0 +170776799229,214,0 +170776799276,214,0 +170776799324,214,0 +170776799372,214,0 +170776799420,213,0 +170776799468,213,0 +170776799518,214,0 +170776799566,213,0 +170776799615,214,0 +170776799665,214,0 +170776799713,214,0 +170776799762,214,0 +170776799812,214,0 +170776799861,214,0 +170776799909,214,0 +170776799957,214,0 +170776800006,215,0 diff --git a/laser_value/0213-06.csv b/laser_value/0213-06.csv new file mode 100644 index 0000000..f7ab076 --- /dev/null +++ b/laser_value/0213-06.csv @@ -0,0 +1,7447 @@ +timestamp,laser_value,event +170776800056,215,0 +170776800106,215,0 +170776800154,215,0 +170776800202,214,0 +170776800249,213,0 +170776800299,213,0 +170776800347,214,0 +170776800396,214,0 +170776800444,214,0 +170776800492,214,0 +170776800541,214,0 +170776800591,214,0 +170776800640,214,0 +170776800688,214,0 +170776800736,214,0 +170776800784,214,0 +170776800832,215,0 +170776800880,214,0 +170776800930,215,0 +170776800978,215,0 +170776801027,214,0 +170776801077,214,0 +170776801124,213,0 +170776801174,213,0 +170776801223,213,0 +170776801271,214,0 +170776801319,214,0 +170776801369,214,0 +170776801418,214,0 +170776801466,214,0 +170776801516,214,0 +170776801565,215,0 +170776801615,215,0 +170776801664,215,0 +170776801712,215,0 +170776801760,214,0 +170776801810,215,0 +170776801858,214,0 +170776801907,213,0 +170776801955,213,0 +170776802004,213,0 +170776802052,213,0 +170776802100,213,0 +170776802148,213,0 +170776802196,213,0 +170776802244,213,0 +170776802292,213,0 +170776802341,213,0 +170776802389,214,0 +170776802438,214,0 +170776802486,214,0 +170776802534,214,0 +170776802582,214,0 +170776802630,214,0 +170776802677,215,0 +170776802725,213,0 +170776802773,213,0 +170776802821,213,0 +170776802869,213,0 +170776802917,213,0 +170776802965,213,0 +170776803014,214,0 +170776803062,214,0 +170776803110,214,0 +170776803158,214,0 +170776803206,214,0 +170776803254,214,0 +170776803302,214,0 +170776803350,214,0 +170776803399,214,0 +170776803447,214,0 +170776803497,214,0 +170776803546,213,0 +170776803594,213,0 +170776803643,213,0 +170776803691,213,0 +170776803741,213,0 +170776803789,213,0 +170776803837,214,0 +170776803885,213,0 +170776803934,214,0 +170776803982,214,0 +170776804032,214,0 +170776804080,215,0 +170776804128,214,0 +170776804177,214,0 +170776804226,214,0 +170776804276,214,0 +170776804324,214,0 +170776804372,213,0 +170776804420,213,0 +170776804468,213,0 +170776804516,213,0 +170776804564,214,0 +170776804611,214,0 +170776804661,214,0 +170776804709,214,0 +170776804757,214,0 +170776804805,214,0 +170776804854,214,0 +170776804902,214,0 +170776804952,214,0 +170776805001,214,0 +170776805049,215,0 +170776805099,215,0 +170776805148,214,0 +170776805198,213,0 +170776805246,213,0 +170776805294,213,0 +170776805342,213,0 +170776805391,214,0 +170776805439,213,0 +170776805487,214,0 +170776805535,214,0 +170776805582,214,0 +170776805630,214,0 +170776805678,214,0 +170776805726,214,0 +170776805774,214,0 +170776805822,215,0 +170776805869,214,0 +170776805917,214,0 +170776805967,214,0 +170776806015,213,0 +170776806063,213,0 +170776806110,213,0 +170776806160,213,0 +170776806208,213,0 +170776806256,213,0 +170776806305,213,0 +170776806353,214,0 +170776806401,214,0 +170776806449,214,0 +170776806497,214,0 +170776806545,214,0 +170776806593,214,0 +170776806642,214,0 +170776806690,214,0 +170776806738,214,0 +170776806786,214,0 +170776806836,213,0 +170776806885,213,0 +170776806934,213,0 +170776806982,213,0 +170776807032,213,0 +170776807080,214,0 +170776807127,213,0 +170776807175,213,0 +170776807225,214,0 +170776807274,214,0 +170776807322,214,0 +170776807372,215,0 +170776807420,214,0 +170776807469,214,0 +170776807517,215,0 +170776807565,215,0 +170776807614,214,0 +170776807662,213,0 +170776807710,213,0 +170776807758,214,0 +170776807808,214,0 +170776807857,214,0 +170776807907,214,0 +170776807956,214,0 +170776808006,214,0 +170776808054,214,0 +170776808103,214,0 +170776808153,214,0 +170776808201,214,0 +170776808250,214,0 +170776808300,215,0 +170776808349,215,0 +170776808399,215,0 +170776808447,214,0 +170776808495,213,0 +170776808544,213,0 +170776808592,213,0 +170776808642,213,0 +170776808690,214,0 +170776808738,214,0 +170776808787,214,0 +170776808835,214,0 +170776808883,214,0 +170776808931,214,0 +170776808980,214,0 +170776809030,214,0 +170776809078,214,0 +170776809126,214,0 +170776809174,214,0 +170776809222,214,0 +170776809270,214,0 +170776809318,213,0 +170776809366,213,0 +170776809414,214,0 +170776809461,214,0 +170776809509,214,0 +170776809557,214,0 +170776809605,214,0 +170776809655,214,0 +170776809703,214,0 +170776809752,214,0 +170776809800,214,0 +170776809848,214,0 +170776809898,215,0 +170776809946,214,0 +170776809995,214,0 +170776810043,214,0 +170776810093,213,0 +170776810141,213,0 +170776810188,213,0 +170776810238,213,0 +170776810287,214,0 +170776810335,214,0 +170776810385,214,0 +170776810433,214,0 +170776810481,214,0 +170776810529,214,0 +170776810578,214,0 +170776810626,215,0 +170776810674,215,0 +170776810722,215,0 +170776810770,215,0 +170776810818,215,0 +170776810866,214,0 +170776810914,214,0 +170776810962,214,0 +170776811010,214,0 +170776811058,214,0 +170776811107,214,0 +170776811155,214,0 +170776811203,214,0 +170776811250,215,0 +170776811298,215,0 +170776811346,215,0 +170776811394,215,0 +170776811441,215,0 +170776811489,215,0 +170776811537,215,0 +170776811585,215,0 +170776811633,215,0 +170776811681,215,0 +170776811729,214,0 +170776811778,214,0 +170776811826,214,0 +170776811874,214,0 +170776811923,214,0 +170776811971,214,0 +170776812019,215,0 +170776812067,214,0 +170776812114,215,0 +170776812162,215,0 +170776812210,215,0 +170776812260,215,0 +170776812308,215,0 +170776812356,215,0 +170776812404,215,0 +170776812453,215,0 +170776812501,214,0 +170776812549,214,0 +170776812597,213,0 +170776812645,214,0 +170776812693,214,0 +170776812741,214,0 +170776812788,214,0 +170776812838,214,0 +170776812887,214,0 +170776812935,215,0 +170776812983,214,0 +170776813033,214,0 +170776813081,214,0 +170776813129,215,0 +170776813177,215,0 +170776813224,215,0 +170776813274,215,0 +170776813322,214,0 +170776813371,214,0 +170776813419,214,0 +170776813469,214,0 +170776813517,214,0 +170776813565,214,0 +170776813613,214,0 +170776813662,214,0 +170776813712,214,0 +170776813761,214,0 +170776813811,215,0 +170776813859,215,0 +170776813907,215,0 +170776813955,215,0 +170776814002,215,0 +170776814052,215,0 +170776814100,215,0 +170776814149,215,0 +170776814197,213,0 +170776814247,213,0 +170776814295,213,0 +170776814344,213,0 +170776814392,214,0 +170776814442,214,0 +170776814490,214,0 +170776814538,214,0 +170776814585,214,0 +170776814635,214,0 +170776814683,214,0 +170776814731,215,0 +170776814779,215,0 +170776814827,215,0 +170776814875,215,0 +170776814923,215,0 +170776814970,214,0 +170776815018,214,0 +170776815066,213,0 +170776815114,213,0 +170776815164,213,0 +170776815212,214,0 +170776815261,214,0 +170776815309,214,0 +170776815359,214,0 +170776815406,214,0 +170776815454,214,0 +170776815504,215,0 +170776815552,215,0 +170776815600,215,0 +170776815649,215,0 +170776815699,215,0 +170776815748,215,0 +170776815796,214,0 +170776815844,213,0 +170776815892,213,0 +170776815941,214,0 +170776815991,213,0 +170776816039,214,0 +170776816088,214,0 +170776816136,214,0 +170776816184,214,0 +170776816234,214,0 +170776816282,214,0 +170776816330,214,0 +170776816379,214,0 +170776816427,215,0 +170776816475,214,0 +170776816525,215,0 +170776816573,214,0 +170776816620,214,0 +170776816670,213,0 +170776816718,213,0 +170776816766,213,0 +170776816814,213,0 +170776816863,213,0 +170776816911,214,0 +170776816959,214,0 +170776817007,214,0 +170776817055,214,0 +170776817105,214,0 +170776817153,214,0 +170776817200,214,0 +170776817248,215,0 +170776817296,215,0 +170776817344,214,0 +170776817394,215,0 +170776817443,214,0 +170776817493,213,0 +170776817542,213,0 +170776817590,213,0 +170776817638,213,0 +170776817686,213,0 +170776817734,213,0 +170776817782,213,0 +170776817830,213,0 +170776817878,214,0 +170776817927,214,0 +170776817975,214,0 +170776818025,214,0 +170776818072,214,0 +170776818120,214,0 +170776818170,214,0 +170776818218,214,0 +170776818266,214,0 +170776818315,213,0 +170776818363,213,0 +170776818411,213,0 +170776818459,213,0 +170776818507,213,0 +170776818555,213,0 +170776818604,214,0 +170776818652,214,0 +170776818700,214,0 +170776818748,214,0 +170776818798,214,0 +170776818846,214,0 +170776818894,214,0 +170776818943,215,0 +170776818992,215,0 +170776819040,215,0 +170776819088,215,0 +170776819136,213,0 +170776819186,213,0 +170776819234,213,0 +170776819282,213,0 +170776819329,213,0 +170776819377,214,0 +170776819425,214,0 +170776819475,214,0 +170776819523,214,0 +170776819571,214,0 +170776819619,214,0 +170776819668,214,0 +170776819716,214,0 +170776819764,215,0 +170776819812,214,0 +170776819860,215,0 +170776819908,215,0 +170776819957,214,0 +170776820005,213,0 +170776820055,213,0 +170776820103,213,0 +170776820151,214,0 +170776820199,213,0 +170776820246,214,0 +170776820294,214,0 +170776820342,214,0 +170776820390,214,0 +170776820438,214,0 +170776820486,214,0 +170776820534,214,0 +170776820582,215,0 +170776820630,215,0 +170776820678,214,0 +170776820726,214,0 +170776820775,213,0 +170776820825,213,0 +170776820873,213,0 +170776820921,213,0 +170776820970,213,0 +170776821018,213,0 +170776821066,213,0 +170776821114,214,0 +170776821162,214,0 +170776821211,214,0 +170776821259,214,0 +170776821307,214,0 +170776821357,214,0 +170776821406,214,0 +170776821454,214,0 +170776821502,214,0 +170776821550,214,0 +170776821598,213,0 +170776821646,213,0 +170776821695,213,0 +170776821745,213,0 +170776821792,213,0 +170776821840,214,0 +170776821890,214,0 +170776821939,214,0 +170776821989,214,0 +170776822038,214,0 +170776822088,214,0 +170776822137,214,0 +170776822185,214,0 +170776822233,214,0 +170776822281,214,0 +170776822329,214,0 +170776822378,215,0 +170776822426,213,0 +170776822474,213,0 +170776822522,213,0 +170776822572,213,0 +170776822620,213,0 +170776822669,213,0 +170776822717,213,0 +170776822767,214,0 +170776822816,214,0 +170776822864,214,0 +170776822912,214,0 +170776822960,214,0 +170776823010,214,0 +170776823058,214,0 +170776823106,215,0 +170776823153,214,0 +170776823201,214,0 +170776823249,214,0 +170776823299,213,0 +170776823347,214,0 +170776823395,214,0 +170776823443,214,0 +170776823490,214,0 +170776823538,214,0 +170776823586,214,0 +170776823635,214,0 +170776823683,215,0 +170776823731,215,0 +170776823779,215,0 +170776823828,215,0 +170776823876,215,0 +170776823924,215,0 +170776823972,215,0 +170776824020,214,0 +170776824067,214,0 +170776824115,214,0 +170776824163,214,0 +170776824211,214,0 +170776824259,214,0 +170776824307,215,0 +170776824354,215,0 +170776824402,215,0 +170776824450,215,0 +170776824498,215,0 +170776824548,215,0 +170776824597,215,0 +170776824645,215,0 +170776824693,215,0 +170776824741,215,0 +170776824789,214,0 +170776824837,214,0 +170776824886,214,0 +170776824934,214,0 +170776824982,214,0 +170776825032,214,0 +170776825080,214,0 +170776825128,215,0 +170776825177,215,0 +170776825227,215,0 +170776825275,215,0 +170776825322,215,0 +170776825372,215,0 +170776825422,215,0 +170776825471,215,0 +170776825519,215,0 +170776825568,215,0 +170776825618,215,0 +170776825666,214,0 +170776825714,214,0 +170776825762,214,0 +170776825811,214,0 +170776825859,214,0 +170776825909,214,0 +170776825957,214,0 +170776826005,214,0 +170776826052,214,0 +170776826100,215,0 +170776826148,215,0 +170776826196,215,0 +170776826246,214,0 +170776826295,215,0 +170776826343,215,0 +170776826391,214,0 +170776826439,214,0 +170776826488,215,0 +170776826536,213,0 +170776826585,213,0 +170776826635,213,0 +170776826683,214,0 +170776826731,214,0 +170776826779,214,0 +170776826827,214,0 +170776826876,214,0 +170776826924,214,0 +170776826972,214,0 +170776827021,214,0 +170776827071,215,0 +170776827119,214,0 +170776827166,214,0 +170776827214,214,0 +170776827264,214,0 +170776827312,214,0 +170776827360,213,0 +170776827408,213,0 +170776827457,213,0 +170776827505,213,0 +170776827554,213,0 +170776827604,214,0 +170776827652,214,0 +170776827700,214,0 +170776827748,214,0 +170776827795,214,0 +170776827843,214,0 +170776827891,214,0 +170776827941,214,0 +170776827990,214,0 +170776828040,214,0 +170776828087,214,0 +170776828137,214,0 +170776828185,213,0 +170776828234,213,0 +170776828282,213,0 +170776828330,213,0 +170776828378,213,0 +170776828425,214,0 +170776828475,214,0 +170776828523,214,0 +170776828570,214,0 +170776828618,214,0 +170776828666,214,0 +170776828714,214,0 +170776828762,214,0 +170776828810,214,0 +170776828857,214,0 +170776828907,214,0 +170776828956,214,0 +170776829004,213,0 +170776829052,213,0 +170776829100,213,0 +170776829149,213,0 +170776829199,214,0 +170776829247,214,0 +170776829294,213,0 +170776829342,214,0 +170776829390,214,0 +170776829438,214,0 +170776829486,214,0 +170776829534,214,0 +170776829582,214,0 +170776829629,214,0 +170776829677,214,0 +170776829725,214,0 +170776829773,214,0 +170776829821,213,0 +170776829869,213,0 +170776829917,213,0 +170776829964,213,0 +170776830012,213,0 +170776830060,213,0 +170776830108,214,0 +170776830156,214,0 +170776830204,214,0 +170776830252,214,0 +170776830300,214,0 +170776830348,214,0 +170776830395,215,0 +170776830443,215,0 +170776830491,215,0 +170776830541,214,0 +170776830588,215,0 +170776830638,213,0 +170776830686,213,0 +170776830734,213,0 +170776830782,213,0 +170776830831,213,0 +170776830879,213,0 +170776830927,214,0 +170776830975,214,0 +170776831023,214,0 +170776831072,214,0 +170776831120,214,0 +170776831169,214,0 +170776831219,214,0 +170776831268,214,0 +170776831318,215,0 +170776831366,215,0 +170776831415,214,0 +170776831463,213,0 +170776831513,213,0 +170776831561,213,0 +170776831610,213,0 +170776831660,213,0 +170776831709,214,0 +170776831757,214,0 +170776831805,214,0 +170776831853,214,0 +170776831901,214,0 +170776831949,214,0 +170776831996,214,0 +170776832044,214,0 +170776832092,215,0 +170776832140,215,0 +170776832188,215,0 +170776832236,214,0 +170776832283,213,0 +170776832331,213,0 +170776832381,213,0 +170776832429,213,0 +170776832476,214,0 +170776832524,214,0 +170776832572,214,0 +170776832620,214,0 +170776832668,214,0 +170776832716,215,0 +170776832763,214,0 +170776832811,214,0 +170776832859,214,0 +170776832907,214,0 +170776832955,214,0 +170776833005,215,0 +170776833053,214,0 +170776833102,213,0 +170776833152,214,0 +170776833200,214,0 +170776833247,213,0 +170776833295,214,0 +170776833345,214,0 +170776833393,214,0 +170776833440,214,0 +170776833488,214,0 +170776833538,214,0 +170776833586,215,0 +170776833635,215,0 +170776833683,215,0 +170776833732,215,0 +170776833782,215,0 +170776833831,215,0 +170776833879,214,0 +170776833929,213,0 +170776833977,214,0 +170776834026,214,0 +170776834074,214,0 +170776834122,214,0 +170776834170,214,0 +170776834219,214,0 +170776834269,214,0 +170776834317,214,0 +170776834366,214,0 +170776834414,214,0 +170776834462,214,0 +170776834511,214,0 +170776834559,214,0 +170776834609,215,0 +170776834657,214,0 +170776834705,214,0 +170776834753,213,0 +170776834802,214,0 +170776834850,213,0 +170776834898,214,0 +170776834946,214,0 +170776834993,214,0 +170776835041,214,0 +170776835089,214,0 +170776835137,214,0 +170776835185,214,0 +170776835235,214,0 +170776835283,215,0 +170776835332,214,0 +170776835380,214,0 +170776835428,215,0 +170776835476,214,0 +170776835524,214,0 +170776835573,214,0 +170776835623,214,0 +170776835672,214,0 +170776835720,214,0 +170776835770,214,0 +170776835819,214,0 +170776835869,214,0 +170776835917,214,0 +170776835965,215,0 +170776836013,215,0 +170776836060,214,0 +170776836110,215,0 +170776836160,215,0 +170776836207,215,0 +170776836257,214,0 +170776836305,214,0 +170776836353,214,0 +170776836401,213,0 +170776836450,213,0 +170776836500,214,0 +170776836548,214,0 +170776836597,214,0 +170776836645,214,0 +170776836695,214,0 +170776836743,214,0 +170776836792,214,0 +170776836840,214,0 +170776836890,214,0 +170776836938,214,0 +170776836986,214,0 +170776837034,214,0 +170776837083,214,0 +170776837131,214,0 +170776837179,213,0 +170776837229,214,0 +170776837277,214,0 +170776837326,214,0 +170776837374,214,0 +170776837422,214,0 +170776837470,214,0 +170776837518,214,0 +170776837568,214,0 +170776837615,214,0 +170776837663,214,0 +170776837711,215,0 +170776837759,215,0 +170776837809,215,0 +170776837857,214,0 +170776837905,215,0 +170776837952,214,0 +170776838000,213,0 +170776838048,213,0 +170776838098,214,0 +170776838147,214,0 +170776838195,214,0 +170776838243,214,0 +170776838291,214,0 +170776838341,214,0 +170776838389,214,0 +170776838438,215,0 +170776838487,214,0 +170776838535,214,0 +170776838583,214,0 +170776838631,215,0 +170776838679,214,0 +170776838728,214,0 +170776838776,214,0 +170776838826,213,0 +170776838874,213,0 +170776838922,213,0 +170776838969,214,0 +170776839017,214,0 +170776839065,214,0 +170776839113,214,0 +170776839161,214,0 +170776839209,214,0 +170776839257,214,0 +170776839305,214,0 +170776839353,214,0 +170776839402,214,0 +170776839452,214,0 +170776839500,215,0 +170776839548,214,0 +170776839597,214,0 +170776839645,213,0 +170776839693,213,0 +170776839741,213,0 +170776839789,213,0 +170776839837,213,0 +170776839886,214,0 +170776839934,214,0 +170776839982,214,0 +170776840030,214,0 +170776840078,214,0 +170776840126,214,0 +170776840174,214,0 +170776840222,214,0 +170776840272,214,0 +170776840319,214,0 +170776840367,214,0 +170776840415,214,0 +170776840463,213,0 +170776840511,213,0 +170776840561,213,0 +170776840609,213,0 +170776840658,213,0 +170776840708,213,0 +170776840756,214,0 +170776840804,214,0 +170776840852,214,0 +170776840900,214,0 +170776840947,214,0 +170776840995,214,0 +170776841043,214,0 +170776841092,214,0 +170776841140,215,0 +170776841188,214,0 +170776841236,214,0 +170776841284,213,0 +170776841334,213,0 +170776841382,213,0 +170776841430,214,0 +170776841477,214,0 +170776841527,214,0 +170776841575,214,0 +170776841623,214,0 +170776841672,214,0 +170776841720,214,0 +170776841770,214,0 +170776841817,214,0 +170776841867,215,0 +170776841915,215,0 +170776841962,215,0 +170776842010,215,0 +170776842058,214,0 +170776842106,213,0 +170776842154,213,0 +170776842202,213,0 +170776842249,213,0 +170776842297,213,0 +170776842345,214,0 +170776842393,214,0 +170776842442,214,0 +170776842490,214,0 +170776842538,214,0 +170776842586,215,0 +170776842634,215,0 +170776842682,214,0 +170776842729,215,0 +170776842777,214,0 +170776842825,215,0 +170776842873,214,0 +170776842921,213,0 +170776842969,213,0 +170776843017,213,0 +170776843065,213,0 +170776843114,213,0 +170776843162,214,0 +170776843210,213,0 +170776843258,213,0 +170776843306,214,0 +170776843354,214,0 +170776843402,214,0 +170776843450,214,0 +170776843498,214,0 +170776843545,214,0 +170776843595,214,0 +170776843643,214,0 +170776843691,214,0 +170776843740,213,0 +170776843790,213,0 +170776843838,213,0 +170776843887,213,0 +170776843937,213,0 +170776843986,214,0 +170776844036,213,0 +170776844084,213,0 +170776844131,214,0 +170776844181,214,0 +170776844229,214,0 +170776844278,214,0 +170776844328,214,0 +170776844376,214,0 +170776844425,214,0 +170776844473,215,0 +170776844523,215,0 +170776844571,215,0 +170776844620,215,0 +170776844668,215,0 +170776844716,215,0 +170776844764,215,0 +170776844813,215,0 +170776844862,215,0 +170776844910,214,0 +170776844958,214,0 +170776845006,214,0 +170776845056,214,0 +170776845105,214,0 +170776845153,214,0 +170776845201,214,0 +170776845249,214,0 +170776845298,215,0 +170776845348,215,0 +170776845396,215,0 +170776845445,215,0 +170776845493,215,0 +170776845543,215,0 +170776845590,215,0 +170776845638,215,0 +170776845686,214,0 +170776845734,214,0 +170776845782,213,0 +170776845830,213,0 +170776845879,214,0 +170776845927,214,0 +170776845977,214,0 +170776846025,214,0 +170776846073,214,0 +170776846122,214,0 +170776846170,214,0 +170776846218,215,0 +170776846266,215,0 +170776846314,214,0 +170776846362,215,0 +170776846410,214,0 +170776846457,214,0 +170776846505,214,0 +170776846553,214,0 +170776846603,213,0 +170776846651,213,0 +170776846700,213,0 +170776846750,214,0 +170776846798,214,0 +170776846846,214,0 +170776846895,214,0 +170776846943,214,0 +170776846991,214,0 +170776847039,214,0 +170776847087,214,0 +170776847136,214,0 +170776847184,214,0 +170776847234,214,0 +170776847283,214,0 +170776847333,214,0 +170776847381,213,0 +170776847429,213,0 +170776847477,213,0 +170776847526,213,0 +170776847574,213,0 +170776847624,213,0 +170776847671,214,0 +170776847719,213,0 +170776847769,214,0 +170776847817,214,0 +170776847865,214,0 +170776847913,214,0 +170776847961,214,0 +170776848009,214,0 +170776848057,214,0 +170776848104,214,0 +170776848154,214,0 +170776848203,213,0 +170776848251,213,0 +170776848299,213,0 +170776848349,213,0 +170776848397,213,0 +170776848445,213,0 +170776848493,213,0 +170776848540,214,0 +170776848590,214,0 +170776848638,214,0 +170776848687,214,0 +170776848735,214,0 +170776848783,214,0 +170776848831,214,0 +170776848881,214,0 +170776848929,214,0 +170776848978,214,0 +170776849028,213,0 +170776849077,213,0 +170776849127,213,0 +170776849176,213,0 +170776849226,213,0 +170776849276,213,0 +170776849323,214,0 +170776849371,214,0 +170776849421,214,0 +170776849469,214,0 +170776849517,214,0 +170776849565,214,0 +170776849613,214,0 +170776849661,214,0 +170776849709,214,0 +170776849757,215,0 +170776849805,214,0 +170776849854,213,0 +170776849902,213,0 +170776849952,213,0 +170776850000,213,0 +170776850049,213,0 +170776850099,214,0 +170776850148,214,0 +170776850196,214,0 +170776850245,214,0 +170776850293,214,0 +170776850341,214,0 +170776850389,214,0 +170776850439,214,0 +170776850488,214,0 +170776850538,214,0 +170776850586,214,0 +170776850634,214,0 +170776850683,213,0 +170776850731,213,0 +170776850779,213,0 +170776850828,214,0 +170776850876,214,0 +170776850924,214,0 +170776850972,214,0 +170776851022,214,0 +170776851070,214,0 +170776851119,214,0 +170776851167,214,0 +170776851217,215,0 +170776851265,214,0 +170776851312,214,0 +170776851360,214,0 +170776851410,214,0 +170776851458,214,0 +170776851507,213,0 +170776851555,213,0 +170776851603,213,0 +170776851653,213,0 +170776851702,214,0 +170776851752,214,0 +170776851800,214,0 +170776851849,214,0 +170776851897,214,0 +170776851945,214,0 +170776851993,214,0 +170776852042,214,0 +170776852090,214,0 +170776852138,214,0 +170776852186,214,0 +170776852234,214,0 +170776852282,214,0 +170776852330,213,0 +170776852378,213,0 +170776852426,213,0 +170776852474,213,0 +170776852522,213,0 +170776852570,213,0 +170776852618,213,0 +170776852666,213,0 +170776852714,214,0 +170776852761,214,0 +170776852809,214,0 +170776852857,214,0 +170776852905,214,0 +170776852953,214,0 +170776853003,214,0 +170776853052,214,0 +170776853100,213,0 +170776853150,213,0 +170776853198,213,0 +170776853246,213,0 +170776853294,213,0 +170776853343,213,0 +170776853393,213,0 +170776853442,213,0 +170776853490,213,0 +170776853538,214,0 +170776853587,213,0 +170776853637,214,0 +170776853685,214,0 +170776853733,214,0 +170776853781,214,0 +170776853830,214,0 +170776853880,214,0 +170776853928,213,0 +170776853976,213,0 +170776854023,213,0 +170776854073,213,0 +170776854121,213,0 +170776854168,213,0 +170776854216,213,0 +170776854264,214,0 +170776854314,214,0 +170776854362,214,0 +170776854409,214,0 +170776854457,214,0 +170776854505,214,0 +170776854553,214,0 +170776854602,214,0 +170776854650,214,0 +170776854700,213,0 +170776854748,213,0 +170776854795,213,0 +170776854843,213,0 +170776854891,213,0 +170776854939,213,0 +170776854987,214,0 +170776855035,214,0 +170776855082,214,0 +170776855132,214,0 +170776855180,214,0 +170776855227,214,0 +170776855277,214,0 +170776855325,214,0 +170776855373,214,0 +170776855421,214,0 +170776855468,214,0 +170776855516,213,0 +170776855564,213,0 +170776855612,213,0 +170776855662,213,0 +170776855711,214,0 +170776855759,214,0 +170776855807,214,0 +170776855855,214,0 +170776855904,214,0 +170776855952,214,0 +170776856000,214,0 +170776856048,214,0 +170776856098,214,0 +170776856147,214,0 +170776856195,214,0 +170776856245,214,0 +170776856293,214,0 +170776856341,213,0 +170776856389,213,0 +170776856438,213,0 +170776856486,214,0 +170776856534,214,0 +170776856582,214,0 +170776856632,214,0 +170776856681,214,0 +170776856729,214,0 +170776856779,214,0 +170776856827,214,0 +170776856874,215,0 +170776856922,215,0 +170776856970,215,0 +170776857018,214,0 +170776857066,214,0 +170776857114,213,0 +170776857162,213,0 +170776857210,213,0 +170776857258,213,0 +170776857306,213,0 +170776857354,214,0 +170776857402,214,0 +170776857450,214,0 +170776857498,214,0 +170776857546,214,0 +170776857594,214,0 +170776857642,214,0 +170776857691,214,0 +170776857739,214,0 +170776857788,214,0 +170776857838,214,0 +170776857886,214,0 +170776857934,213,0 +170776857983,213,0 +170776858031,213,0 +170776858081,213,0 +170776858129,213,0 +170776858177,213,0 +170776858226,213,0 +170776858274,214,0 +170776858323,214,0 +170776858371,214,0 +170776858419,214,0 +170776858467,214,0 +170776858515,214,0 +170776858565,214,0 +170776858613,214,0 +170776858662,214,0 +170776858710,214,0 +170776858758,213,0 +170776858806,213,0 +170776858855,213,0 +170776858903,213,0 +170776858953,213,0 +170776859001,213,0 +170776859050,214,0 +170776859098,214,0 +170776859148,214,0 +170776859196,214,0 +170776859244,214,0 +170776859293,215,0 +170776859343,214,0 +170776859390,214,0 +170776859438,214,0 +170776859486,214,0 +170776859534,213,0 +170776859582,213,0 +170776859630,213,0 +170776859678,213,0 +170776859728,213,0 +170776859776,213,0 +170776859823,213,0 +170776859873,214,0 +170776859921,214,0 +170776859970,214,0 +170776860018,214,0 +170776860068,214,0 +170776860116,214,0 +170776860165,214,0 +170776860213,214,0 +170776860263,214,0 +170776860310,214,0 +170776860360,213,0 +170776860408,213,0 +170776860457,213,0 +170776860505,213,0 +170776860553,213,0 +170776860601,213,0 +170776860649,214,0 +170776860699,214,0 +170776860748,214,0 +170776860796,214,0 +170776860845,214,0 +170776860893,214,0 +170776860941,214,0 +170776860989,214,0 +170776861037,214,0 +170776861085,214,0 +170776861135,213,0 +170776861183,213,0 +170776861230,213,0 +170776861278,213,0 +170776861326,213,0 +170776861375,214,0 +170776861423,214,0 +170776861471,214,0 +170776861520,214,0 +170776861568,214,0 +170776861616,214,0 +170776861664,214,0 +170776861712,214,0 +170776861761,214,0 +170776861809,214,0 +170776861857,214,0 +170776861905,214,0 +170776861952,213,0 +170776862002,213,0 +170776862050,213,0 +170776862098,213,0 +170776862145,213,0 +170776862193,214,0 +170776862241,214,0 +170776862291,214,0 +170776862339,214,0 +170776862386,214,0 +170776862434,214,0 +170776862482,214,0 +170776862530,214,0 +170776862578,214,0 +170776862626,214,0 +170776862673,214,0 +170776862723,214,0 +170776862771,213,0 +170776862819,213,0 +170776862868,213,0 +170776862918,214,0 +170776862966,214,0 +170776863015,214,0 +170776863063,214,0 +170776863111,214,0 +170776863159,214,0 +170776863208,214,0 +170776863257,214,0 +170776863305,214,0 +170776863353,214,0 +170776863401,214,0 +170776863449,215,0 +170776863497,214,0 +170776863546,213,0 +170776863594,213,0 +170776863642,213,0 +170776863690,214,0 +170776863739,214,0 +170776863787,214,0 +170776863835,214,0 +170776863885,214,0 +170776863933,214,0 +170776863980,214,0 +170776864028,214,0 +170776864078,215,0 +170776864127,214,0 +170776864175,215,0 +170776864223,214,0 +170776864271,214,0 +170776864319,214,0 +170776864367,213,0 +170776864415,213,0 +170776864462,213,0 +170776864512,213,0 +170776864560,213,0 +170776864608,214,0 +170776864655,214,0 +170776864703,214,0 +170776864753,214,0 +170776864801,214,0 +170776864850,214,0 +170776864898,214,0 +170776864946,214,0 +170776864994,214,0 +170776865041,214,0 +170776865089,214,0 +170776865137,214,0 +170776865185,213,0 +170776865234,213,0 +170776865282,213,0 +170776865330,213,0 +170776865378,214,0 +170776865425,214,0 +170776865475,214,0 +170776865523,214,0 +170776865570,214,0 +170776865618,214,0 +170776865666,214,0 +170776865714,214,0 +170776865762,214,0 +170776865810,214,0 +170776865857,214,0 +170776865905,214,0 +170776865953,213,0 +170776866001,213,0 +170776866049,213,0 +170776866097,213,0 +170776866144,214,0 +170776866192,214,0 +170776866240,214,0 +170776866288,214,0 +170776866336,214,0 +170776866385,214,0 +170776866433,214,0 +170776866482,215,0 +170776866532,214,0 +170776866580,214,0 +170776866627,214,0 +170776866675,214,0 +170776866723,214,0 +170776866773,213,0 +170776866821,213,0 +170776866869,214,0 +170776866917,214,0 +170776866965,214,0 +170776867014,214,0 +170776867062,214,0 +170776867110,214,0 +170776867158,214,0 +170776867206,215,0 +170776867254,214,0 +170776867303,214,0 +170776867351,214,0 +170776867399,215,0 +170776867447,215,0 +170776867495,215,0 +170776867543,214,0 +170776867591,213,0 +170776867639,213,0 +170776867687,213,0 +170776867734,213,0 +170776867782,213,0 +170776867830,213,0 +170776867878,213,0 +170776867928,214,0 +170776867976,214,0 +170776868024,214,0 +170776868073,214,0 +170776868121,214,0 +170776868169,214,0 +170776868217,214,0 +170776868265,215,0 +170776868313,214,0 +170776868361,214,0 +170776868409,213,0 +170776868457,213,0 +170776868505,213,0 +170776868554,213,0 +170776868602,213,0 +170776868650,214,0 +170776868698,214,0 +170776868746,214,0 +170776868794,214,0 +170776868843,214,0 +170776868891,215,0 +170776868939,214,0 +170776868988,215,0 +170776869038,214,0 +170776869087,214,0 +170776869137,214,0 +170776869185,213,0 +170776869233,213,0 +170776869282,213,0 +170776869330,213,0 +170776869380,213,0 +170776869429,213,0 +170776869479,214,0 +170776869527,213,0 +170776869575,214,0 +170776869624,214,0 +170776869672,214,0 +170776869721,214,0 +170776869771,214,0 +170776869819,214,0 +170776869867,214,0 +170776869915,214,0 +170776869962,214,0 +170776870010,213,0 +170776870058,213,0 +170776870106,213,0 +170776870154,213,0 +170776870202,213,0 +170776870251,214,0 +170776870299,214,0 +170776870347,214,0 +170776870395,214,0 +170776870445,214,0 +170776870493,214,0 +170776870541,214,0 +170776870590,214,0 +170776870640,215,0 +170776870688,214,0 +170776870736,214,0 +170776870785,213,0 +170776870833,213,0 +170776870881,213,0 +170776870929,213,0 +170776870977,213,0 +170776871025,213,0 +170776871074,214,0 +170776871124,214,0 +170776871171,214,0 +170776871221,214,0 +170776871270,214,0 +170776871320,214,0 +170776871368,214,0 +170776871417,214,0 +170776871465,214,0 +170776871513,214,0 +170776871561,214,0 +170776871610,213,0 +170776871660,213,0 +170776871708,213,0 +170776871756,213,0 +170776871805,213,0 +170776871853,213,0 +170776871901,213,0 +170776871949,213,0 +170776871998,213,0 +170776872048,214,0 +170776872097,214,0 +170776872145,214,0 +170776872193,214,0 +170776872243,214,0 +170776872292,214,0 +170776872340,214,0 +170776872388,213,0 +170776872438,213,0 +170776872485,213,0 +170776872533,213,0 +170776872581,213,0 +170776872631,213,0 +170776872679,213,0 +170776872727,213,0 +170776872776,213,0 +170776872826,214,0 +170776872875,213,0 +170776872923,214,0 +170776872971,214,0 +170776873019,214,0 +170776873068,214,0 +170776873116,214,0 +170776873164,214,0 +170776873214,213,0 +170776873263,213,0 +170776873313,213,0 +170776873362,213,0 +170776873410,213,0 +170776873458,213,0 +170776873506,213,0 +170776873554,213,0 +170776873602,213,0 +170776873650,213,0 +170776873698,214,0 +170776873746,213,0 +170776873793,214,0 +170776873841,214,0 +170776873889,214,0 +170776873937,214,0 +170776873985,214,0 +170776874035,214,0 +170776874082,213,0 +170776874130,213,0 +170776874178,213,0 +170776874228,213,0 +170776874276,213,0 +170776874324,213,0 +170776874372,213,0 +170776874421,214,0 +170776874470,214,0 +170776874518,214,0 +170776874566,214,0 +170776874614,214,0 +170776874662,214,0 +170776874711,214,0 +170776874761,214,0 +170776874809,214,0 +170776874857,214,0 +170776874905,213,0 +170776874953,213,0 +170776875001,214,0 +170776875050,214,0 +170776875100,214,0 +170776875149,214,0 +170776875197,214,0 +170776875245,214,0 +170776875294,214,0 +170776875344,215,0 +170776875392,214,0 +170776875440,215,0 +170776875488,214,0 +170776875536,214,0 +170776875583,214,0 +170776875631,214,0 +170776875681,214,0 +170776875730,214,0 +170776875780,214,0 +170776875828,214,0 +170776875876,214,0 +170776875924,214,0 +170776875972,214,0 +170776876020,214,0 +170776876068,214,0 +170776876116,214,0 +170776876165,215,0 +170776876215,215,0 +170776876263,215,0 +170776876311,215,0 +170776876360,215,0 +170776876408,214,0 +170776876458,214,0 +170776876507,214,0 +170776876555,214,0 +170776876603,214,0 +170776876651,214,0 +170776876699,214,0 +170776876748,214,0 +170776876796,214,0 +170776876844,214,0 +170776876892,214,0 +170776876940,214,0 +170776876988,215,0 +170776877036,214,0 +170776877084,214,0 +170776877133,214,0 +170776877181,214,0 +170776877229,214,0 +170776877277,214,0 +170776877325,214,0 +170776877374,213,0 +170776877422,213,0 +170776877471,213,0 +170776877519,213,0 +170776877567,214,0 +170776877615,215,0 +170776877663,215,0 +170776877712,214,0 +170776877760,214,0 +170776877810,214,0 +170776877857,214,0 +170776877905,214,0 +170776877955,214,0 +170776878003,214,0 +170776878050,214,0 +170776878098,214,0 +170776878146,214,0 +170776878194,213,0 +170776878244,213,0 +170776878292,213,0 +170776878340,213,0 +170776878387,213,0 +170776878437,214,0 +170776878486,214,0 +170776878534,214,0 +170776878582,214,0 +170776878630,214,0 +170776878678,214,0 +170776878726,214,0 +170776878774,214,0 +170776878822,215,0 +170776878870,214,0 +170776878918,214,0 +170776878966,214,0 +170776879014,213,0 +170776879063,213,0 +170776879111,213,0 +170776879161,213,0 +170776879210,214,0 +170776879258,214,0 +170776879306,214,0 +170776879354,214,0 +170776879402,214,0 +170776879450,214,0 +170776879499,214,0 +170776879547,214,0 +170776879595,214,0 +170776879643,214,0 +170776879693,214,0 +170776879741,215,0 +170776879790,214,0 +170776879838,213,0 +170776879886,213,0 +170776879936,213,0 +170776879985,213,0 +170776880033,213,0 +170776880081,213,0 +170776880131,213,0 +170776880180,213,0 +170776880228,214,0 +170776880276,214,0 +170776880326,214,0 +170776880375,214,0 +170776880425,214,0 +170776880473,214,0 +170776880520,214,0 +170776880568,214,0 +170776880616,214,0 +170776880666,213,0 +170776880713,213,0 +170776880761,213,0 +170776880809,213,0 +170776880857,213,0 +170776880905,213,0 +170776880953,213,0 +170776881001,213,0 +170776881049,213,0 +170776881096,214,0 +170776881144,214,0 +170776881194,214,0 +170776881242,214,0 +170776881291,214,0 +170776881340,214,0 +170776881388,214,0 +170776881438,214,0 +170776881486,213,0 +170776881533,213,0 +170776881581,213,0 +170776881631,213,0 +170776881679,213,0 +170776881726,213,0 +170776881774,213,0 +170776881822,214,0 +170776881870,214,0 +170776881918,214,0 +170776881967,214,0 +170776882015,214,0 +170776882063,214,0 +170776882112,214,0 +170776882162,214,0 +170776882210,214,0 +170776882258,214,0 +170776882305,214,0 +170776882353,213,0 +170776882401,213,0 +170776882449,213,0 +170776882497,213,0 +170776882545,214,0 +170776882593,213,0 +170776882640,214,0 +170776882688,214,0 +170776882738,214,0 +170776882788,214,0 +170776882836,214,0 +170776882883,214,0 +170776882931,214,0 +170776882981,214,0 +170776883030,214,0 +170776883078,215,0 +170776883126,214,0 +170776883174,213,0 +170776883222,213,0 +170776883272,213,0 +170776883320,213,0 +170776883369,213,0 +170776883419,213,0 +170776883467,214,0 +170776883516,214,0 +170776883566,214,0 +170776883615,214,0 +170776883663,214,0 +170776883712,214,0 +170776883760,214,0 +170776883808,214,0 +170776883858,214,0 +170776883907,214,0 +170776883957,214,0 +170776884005,213,0 +170776884054,213,0 +170776884102,213,0 +170776884152,213,0 +170776884200,213,0 +170776884247,214,0 +170776884295,214,0 +170776884343,214,0 +170776884391,214,0 +170776884439,214,0 +170776884487,214,0 +170776884535,214,0 +170776884583,214,0 +170776884630,214,0 +170776884678,214,0 +170776884728,214,0 +170776884776,214,0 +170776884824,213,0 +170776884873,213,0 +170776884923,213,0 +170776884971,213,0 +170776885019,214,0 +170776885066,213,0 +170776885114,214,0 +170776885162,214,0 +170776885210,214,0 +170776885258,214,0 +170776885307,214,0 +170776885355,214,0 +170776885405,214,0 +170776885452,214,0 +170776885500,214,0 +170776885548,214,0 +170776885596,214,0 +170776885644,213,0 +170776885692,213,0 +170776885740,213,0 +170776885789,213,0 +170776885837,214,0 +170776885885,214,0 +170776885933,214,0 +170776885981,214,0 +170776886030,214,0 +170776886078,214,0 +170776886126,214,0 +170776886174,214,0 +170776886222,215,0 +170776886272,214,0 +170776886321,214,0 +170776886369,214,0 +170776886417,214,0 +170776886467,214,0 +170776886514,213,0 +170776886564,213,0 +170776886612,213,0 +170776886660,214,0 +170776886708,214,0 +170776886756,214,0 +170776886804,214,0 +170776886852,214,0 +170776886901,214,0 +170776886951,214,0 +170776887000,215,0 +170776887048,215,0 +170776887096,215,0 +170776887144,215,0 +170776887192,215,0 +170776887241,214,0 +170776887289,214,0 +170776887337,213,0 +170776887385,214,0 +170776887433,214,0 +170776887482,214,0 +170776887530,214,0 +170776887578,214,0 +170776887626,214,0 +170776887674,214,0 +170776887722,215,0 +170776887770,215,0 +170776887819,215,0 +170776887867,215,0 +170776887916,214,0 +170776887964,215,0 +170776888012,215,0 +170776888060,214,0 +170776888108,214,0 +170776888155,213,0 +170776888203,213,0 +170776888251,213,0 +170776888299,213,0 +170776888348,213,0 +170776888396,214,0 +170776888444,214,0 +170776888494,214,0 +170776888543,214,0 +170776888591,214,0 +170776888639,214,0 +170776888687,215,0 +170776888735,215,0 +170776888783,215,0 +170776888831,215,0 +170776888879,214,0 +170776888927,214,0 +170776888974,213,0 +170776889022,214,0 +170776889070,214,0 +170776889118,214,0 +170776889166,214,0 +170776889214,214,0 +170776889262,214,0 +170776889310,214,0 +170776889358,214,0 +170776889406,214,0 +170776889456,214,0 +170776889503,214,0 +170776889551,214,0 +170776889599,215,0 +170776889647,215,0 +170776889695,214,0 +170776889743,214,0 +170776889791,214,0 +170776889838,214,0 +170776889886,214,0 +170776889934,214,0 +170776889982,214,0 +170776890030,214,0 +170776890078,214,0 +170776890126,215,0 +170776890173,215,0 +170776890221,214,0 +170776890269,215,0 +170776890317,214,0 +170776890365,214,0 +170776890414,214,0 +170776890462,215,0 +170776890510,214,0 +170776890558,214,0 +170776890606,214,0 +170776890653,213,0 +170776890701,213,0 +170776890749,213,0 +170776890797,214,0 +170776890845,214,0 +170776890893,214,0 +170776890941,214,0 +170776890989,214,0 +170776891036,214,0 +170776891086,214,0 +170776891135,214,0 +170776891183,214,0 +170776891231,214,0 +170776891279,215,0 +170776891328,214,0 +170776891376,214,0 +170776891424,213,0 +170776891472,213,0 +170776891520,213,0 +170776891568,213,0 +170776891615,213,0 +170776891663,214,0 +170776891711,214,0 +170776891759,214,0 +170776891807,214,0 +170776891855,214,0 +170776891903,214,0 +170776891952,214,0 +170776892000,214,0 +170776892048,215,0 +170776892096,214,0 +170776892145,214,0 +170776892193,215,0 +170776892241,214,0 +170776892289,213,0 +170776892339,213,0 +170776892388,213,0 +170776892436,213,0 +170776892486,213,0 +170776892535,213,0 +170776892585,213,0 +170776892634,213,0 +170776892682,214,0 +170776892730,214,0 +170776892778,214,0 +170776892826,214,0 +170776892875,214,0 +170776892923,214,0 +170776892971,214,0 +170776893020,214,0 +170776893068,214,0 +170776893117,213,0 +170776893165,213,0 +170776893215,213,0 +170776893263,213,0 +170776893311,213,0 +170776893360,213,0 +170776893408,213,0 +170776893456,213,0 +170776893505,213,0 +170776893553,213,0 +170776893603,214,0 +170776893652,213,0 +170776893702,214,0 +170776893750,214,0 +170776893800,214,0 +170776893848,214,0 +170776893897,214,0 +170776893945,213,0 +170776893995,213,0 +170776894042,213,0 +170776894092,213,0 +170776894141,214,0 +170776894189,213,0 +170776894237,213,0 +170776894285,214,0 +170776894333,214,0 +170776894381,214,0 +170776894429,214,0 +170776894477,214,0 +170776894526,214,0 +170776894574,214,0 +170776894622,214,0 +170776894670,214,0 +170776894718,214,0 +170776894766,213,0 +170776894814,213,0 +170776894862,213,0 +170776894910,213,0 +170776894959,213,0 +170776895007,213,0 +170776895057,214,0 +170776895105,214,0 +170776895154,214,0 +170776895202,214,0 +170776895252,214,0 +170776895301,214,0 +170776895351,214,0 +170776895398,214,0 +170776895448,214,0 +170776895496,214,0 +170776895544,214,0 +170776895592,213,0 +170776895640,213,0 +170776895688,213,0 +170776895735,213,0 +170776895783,213,0 +170776895831,214,0 +170776895879,214,0 +170776895929,214,0 +170776895977,214,0 +170776896025,214,0 +170776896073,215,0 +170776896122,215,0 +170776896172,215,0 +170776896221,215,0 +170776896271,215,0 +170776896319,214,0 +170776896367,214,0 +170776896416,213,0 +170776896464,213,0 +170776896514,213,0 +170776896562,214,0 +170776896611,214,0 +170776896660,214,0 +170776896710,214,0 +170776896759,214,0 +170776896807,214,0 +170776896855,214,0 +170776896903,214,0 +170776896953,215,0 +170776897001,215,0 +170776897050,214,0 +170776897100,214,0 +170776897148,214,0 +170776897196,214,0 +170776897245,213,0 +170776897293,213,0 +170776897343,214,0 +170776897391,214,0 +170776897440,214,0 +170776897488,214,0 +170776897537,214,0 +170776897587,214,0 +170776897635,214,0 +170776897684,214,0 +170776897734,214,0 +170776897782,214,0 +170776897830,214,0 +170776897879,214,0 +170776897927,214,0 +170776897975,214,0 +170776898025,214,0 +170776898074,213,0 +170776898122,213,0 +170776898172,213,0 +170776898220,213,0 +170776898268,213,0 +170776898317,214,0 +170776898367,214,0 +170776898415,214,0 +170776898464,214,0 +170776898514,214,0 +170776898561,214,0 +170776898609,214,0 +170776898657,215,0 +170776898705,214,0 +170776898753,214,0 +170776898801,214,0 +170776898849,214,0 +170776898896,213,0 +170776898944,213,0 +170776898992,213,0 +170776899040,213,0 +170776899088,213,0 +170776899136,214,0 +170776899184,213,0 +170776899232,214,0 +170776899280,214,0 +170776899330,214,0 +170776899378,214,0 +170776899426,214,0 +170776899475,214,0 +170776899523,214,0 +170776899572,214,0 +170776899620,214,0 +170776899668,214,0 +170776899718,213,0 +170776899766,213,0 +170776899815,213,0 +170776899865,213,0 +170776899913,213,0 +170776899962,213,0 +170776900010,214,0 +170776900060,214,0 +170776900108,213,0 +170776900157,214,0 +170776900206,214,0 +170776900254,214,0 +170776900302,214,0 +170776900352,214,0 +170776900401,214,0 +170776900449,214,0 +170776900497,214,0 +170776900545,213,0 +170776900593,213,0 +170776900641,213,0 +170776900690,213,0 +170776900738,213,0 +170776900786,213,0 +170776900834,213,0 +170776900882,214,0 +170776900930,214,0 +170776900978,214,0 +170776901026,214,0 +170776901073,214,0 +170776901121,214,0 +170776901169,214,0 +170776901217,214,0 +170776901265,214,0 +170776901313,214,0 +170776901360,213,0 +170776901408,213,0 +170776901456,213,0 +170776901504,213,0 +170776901552,214,0 +170776901601,214,0 +170776901649,214,0 +170776901699,214,0 +170776901747,214,0 +170776901794,214,0 +170776901842,214,0 +170776901890,214,0 +170776901940,215,0 +170776901988,215,0 +170776902037,214,0 +170776902085,214,0 +170776902133,214,0 +170776902182,214,0 +170776902230,213,0 +170776902278,214,0 +170776902326,214,0 +170776902374,214,0 +170776902422,214,0 +170776902470,214,0 +170776902518,214,0 +170776902566,214,0 +170776902614,214,0 +170776902661,215,0 +170776902709,215,0 +170776902757,215,0 +170776902805,215,0 +170776902853,215,0 +170776902901,215,0 +170776902949,214,0 +170776902998,214,0 +170776903048,213,0 +170776903096,213,0 +170776903145,213,0 +170776903193,214,0 +170776903243,214,0 +170776903291,214,0 +170776903339,214,0 +170776903388,214,0 +170776903438,214,0 +170776903486,214,0 +170776903533,214,0 +170776903583,214,0 +170776903632,214,0 +170776903680,214,0 +170776903728,215,0 +170776903776,215,0 +170776903824,214,0 +170776903872,213,0 +170776903920,213,0 +170776903969,213,0 +170776904017,214,0 +170776904066,213,0 +170776904114,214,0 +170776904164,214,0 +170776904213,214,0 +170776904263,214,0 +170776904311,215,0 +170776904360,214,0 +170776904408,214,0 +170776904456,215,0 +170776904504,215,0 +170776904554,215,0 +170776904601,215,0 +170776904649,214,0 +170776904697,213,0 +170776904747,213,0 +170776904795,213,0 +170776904843,213,0 +170776904891,213,0 +170776904939,213,0 +170776904987,214,0 +170776905034,214,0 +170776905084,214,0 +170776905132,214,0 +170776905181,214,0 +170776905229,214,0 +170776905277,214,0 +170776905325,214,0 +170776905373,215,0 +170776905421,214,0 +170776905469,214,0 +170776905517,213,0 +170776905565,213,0 +170776905614,213,0 +170776905662,213,0 +170776905710,213,0 +170776905758,213,0 +170776905806,214,0 +170776905854,214,0 +170776905902,214,0 +170776905951,214,0 +170776905999,214,0 +170776906047,214,0 +170776906095,214,0 +170776906143,214,0 +170776906191,214,0 +170776906239,214,0 +170776906287,214,0 +170776906335,214,0 +170776906383,213,0 +170776906430,213,0 +170776906478,214,0 +170776906526,214,0 +170776906576,214,0 +170776906625,214,0 +170776906673,214,0 +170776906723,214,0 +170776906770,214,0 +170776906818,214,0 +170776906866,214,0 +170776906914,215,0 +170776906962,215,0 +170776907010,215,0 +170776907058,215,0 +170776907106,214,0 +170776907153,214,0 +170776907201,213,0 +170776907249,213,0 +170776907297,214,0 +170776907345,213,0 +170776907392,214,0 +170776907440,214,0 +170776907488,214,0 +170776907536,214,0 +170776907584,214,0 +170776907632,214,0 +170776907679,214,0 +170776907727,214,0 +170776907777,215,0 +170776907826,215,0 +170776907874,215,0 +170776907922,215,0 +170776907970,214,0 +170776908018,213,0 +170776908065,213,0 +170776908113,213,0 +170776908161,213,0 +170776908209,213,0 +170776908257,214,0 +170776908305,214,0 +170776908354,214,0 +170776908402,214,0 +170776908450,214,0 +170776908497,214,0 +170776908545,215,0 +170776908593,215,0 +170776908641,215,0 +170776908689,215,0 +170776908737,214,0 +170776908785,214,0 +170776908832,213,0 +170776908880,213,0 +170776908928,213,0 +170776908976,213,0 +170776909025,213,0 +170776909073,214,0 +170776909123,214,0 +170776909172,214,0 +170776909222,214,0 +170776909271,214,0 +170776909319,214,0 +170776909367,214,0 +170776909415,214,0 +170776909463,214,0 +170776909511,214,0 +170776909559,215,0 +170776909606,214,0 +170776909654,213,0 +170776909702,213,0 +170776909750,213,0 +170776909798,213,0 +170776909846,213,0 +170776909895,213,0 +170776909944,214,0 +170776909992,214,0 +170776910040,214,0 +170776910088,214,0 +170776910137,214,0 +170776910185,214,0 +170776910233,214,0 +170776910281,214,0 +170776910329,214,0 +170776910379,215,0 +170776910428,214,0 +170776910478,213,0 +170776910527,213,0 +170776910577,213,0 +170776910626,213,0 +170776910676,213,0 +170776910724,214,0 +170776910773,214,0 +170776910823,214,0 +170776910872,214,0 +170776910922,214,0 +170776910970,214,0 +170776911018,214,0 +170776911066,214,0 +170776911114,215,0 +170776911161,214,0 +170776911209,214,0 +170776911257,214,0 +170776911307,213,0 +170776911355,213,0 +170776911403,213,0 +170776911452,213,0 +170776911500,213,0 +170776911548,213,0 +170776911598,213,0 +170776911646,213,0 +170776911693,214,0 +170776911741,214,0 +170776911789,214,0 +170776911837,214,0 +170776911885,214,0 +170776911933,214,0 +170776911981,214,0 +170776912029,214,0 +170776912079,214,0 +170776912127,214,0 +170776912174,213,0 +170776912222,213,0 +170776912270,213,0 +170776912318,213,0 +170776912368,214,0 +170776912417,214,0 +170776912465,214,0 +170776912515,214,0 +170776912564,214,0 +170776912614,214,0 +170776912661,214,0 +170776912711,214,0 +170776912760,214,0 +170776912808,214,0 +170776912858,214,0 +170776912907,214,0 +170776912955,213,0 +170776913003,213,0 +170776913051,213,0 +170776913099,213,0 +170776913147,213,0 +170776913195,213,0 +170776913243,214,0 +170776913291,213,0 +170776913339,214,0 +170776913388,214,0 +170776913438,214,0 +170776913486,214,0 +170776913535,214,0 +170776913583,214,0 +170776913633,214,0 +170776913681,214,0 +170776913730,214,0 +170776913780,214,0 +170776913827,213,0 +170776913877,213,0 +170776913925,213,0 +170776913973,214,0 +170776914022,213,0 +170776914070,214,0 +170776914120,214,0 +170776914167,214,0 +170776914215,214,0 +170776914263,214,0 +170776914313,214,0 +170776914362,214,0 +170776914410,214,0 +170776914460,214,0 +170776914508,215,0 +170776914557,214,0 +170776914605,213,0 +170776914654,213,0 +170776914702,213,0 +170776914752,213,0 +170776914801,213,0 +170776914849,213,0 +170776914897,213,0 +170776914947,213,0 +170776914996,214,0 +170776915046,214,0 +170776915094,214,0 +170776915142,214,0 +170776915189,214,0 +170776915237,214,0 +170776915285,214,0 +170776915333,214,0 +170776915381,214,0 +170776915429,213,0 +170776915477,213,0 +170776915524,213,0 +170776915572,213,0 +170776915620,214,0 +170776915668,214,0 +170776915716,214,0 +170776915764,214,0 +170776915812,214,0 +170776915860,214,0 +170776915909,214,0 +170776915957,214,0 +170776916005,214,0 +170776916053,215,0 +170776916103,214,0 +170776916151,214,0 +170776916200,214,0 +170776916248,214,0 +170776916296,214,0 +170776916344,214,0 +170776916392,214,0 +170776916440,214,0 +170776916488,214,0 +170776916536,214,0 +170776916585,214,0 +170776916633,214,0 +170776916681,214,0 +170776916729,214,0 +170776916777,214,0 +170776916825,214,0 +170776916874,214,0 +170776916922,214,0 +170776916970,215,0 +170776917018,215,0 +170776917066,214,0 +170776917114,214,0 +170776917162,214,0 +170776917210,214,0 +170776917258,214,0 +170776917305,214,0 +170776917353,214,0 +170776917403,214,0 +170776917450,214,0 +170776917498,214,0 +170776917546,214,0 +170776917594,215,0 +170776917642,215,0 +170776917689,215,0 +170776917737,214,0 +170776917785,215,0 +170776917833,214,0 +170776917881,214,0 +170776917928,214,0 +170776917976,214,0 +170776918026,214,0 +170776918074,214,0 +170776918123,214,0 +170776918171,214,0 +170776918219,214,0 +170776918267,214,0 +170776918315,214,0 +170776918364,214,0 +170776918412,214,0 +170776918462,214,0 +170776918510,214,0 +170776918558,214,0 +170776918605,214,0 +170776918655,215,0 +170776918703,215,0 +170776918752,214,0 +170776918800,214,0 +170776918848,213,0 +170776918896,214,0 +170776918944,214,0 +170776918992,214,0 +170776919040,214,0 +170776919088,214,0 +170776919137,214,0 +170776919185,214,0 +170776919235,214,0 +170776919284,214,0 +170776919332,215,0 +170776919381,215,0 +170776919429,214,0 +170776919477,214,0 +170776919525,214,0 +170776919573,214,0 +170776919621,213,0 +170776919668,213,0 +170776919716,214,0 +170776919764,214,0 +170776919812,214,0 +170776919860,214,0 +170776919908,214,0 +170776919957,214,0 +170776920005,214,0 +170776920053,214,0 +170776920103,214,0 +170776920150,215,0 +170776920200,214,0 +170776920249,214,0 +170776920299,214,0 +170776920347,214,0 +170776920395,214,0 +170776920443,213,0 +170776920491,213,0 +170776920539,213,0 +170776920587,213,0 +170776920634,213,0 +170776920682,214,0 +170776920732,214,0 +170776920780,214,0 +170776920828,214,0 +170776920876,214,0 +170776920924,214,0 +170776920971,214,0 +170776921019,214,0 +170776921067,214,0 +170776921117,214,0 +170776921165,214,0 +170776921212,214,0 +170776921260,213,0 +170776921308,213,0 +170776921358,213,0 +170776921406,213,0 +170776921454,213,0 +170776921503,213,0 +170776921551,214,0 +170776921599,214,0 +170776921647,214,0 +170776921695,214,0 +170776921743,214,0 +170776921792,214,0 +170776921840,214,0 +170776921890,214,0 +170776921938,214,0 +170776921986,214,0 +170776922034,214,0 +170776922082,213,0 +170776922130,213,0 +170776922178,213,0 +170776922226,213,0 +170776922275,213,0 +170776922323,213,0 +170776922372,213,0 +170776922420,213,0 +170776922468,213,0 +170776922518,213,0 +170776922565,214,0 +170776922613,214,0 +170776922661,214,0 +170776922711,214,0 +170776922758,214,0 +170776922806,215,0 +170776922854,214,0 +170776922902,213,0 +170776922950,213,0 +170776922998,213,0 +170776923046,213,0 +170776923093,213,0 +170776923141,213,0 +170776923189,213,0 +170776923239,213,0 +170776923287,213,0 +170776923334,213,0 +170776923384,213,0 +170776923432,214,0 +170776923480,214,0 +170776923528,214,0 +170776923577,214,0 +170776923625,214,0 +170776923673,214,0 +170776923721,214,0 +170776923769,213,0 +170776923817,213,0 +170776923865,213,0 +170776923912,213,0 +170776923960,213,0 +170776924008,213,0 +170776924056,214,0 +170776924104,214,0 +170776924154,214,0 +170776924202,214,0 +170776924250,214,0 +170776924299,214,0 +170776924348,214,0 +170776924396,215,0 +170776924444,215,0 +170776924492,214,0 +170776924542,214,0 +170776924591,213,0 +170776924641,213,0 +170776924690,213,0 +170776924738,213,0 +170776924786,214,0 +170776924836,213,0 +170776924884,214,0 +170776924932,214,0 +170776924980,214,0 +170776925027,214,0 +170776925075,214,0 +170776925125,214,0 +170776925174,214,0 +170776925222,214,0 +170776925270,214,0 +170776925320,214,0 +170776925368,214,0 +170776925417,213,0 +170776925467,213,0 +170776925516,213,0 +170776925564,213,0 +170776925612,213,0 +170776925661,213,0 +170776925711,213,0 +170776925759,213,0 +170776925807,214,0 +170776925856,214,0 +170776925904,214,0 +170776925952,214,0 +170776926002,214,0 +170776926051,214,0 +170776926101,214,0 +170776926150,214,0 +170776926200,214,0 +170776926248,213,0 +170776926296,213,0 +170776926344,213,0 +170776926392,213,0 +170776926440,213,0 +170776926487,213,0 +170776926535,213,0 +170776926583,213,0 +170776926631,213,0 +170776926679,213,0 +170776926727,213,0 +170776926777,213,0 +170776926825,213,0 +170776926874,214,0 +170776926922,214,0 +170776926970,214,0 +170776927018,214,0 +170776927066,213,0 +170776927115,213,0 +170776927163,213,0 +170776927213,213,0 +170776927261,213,0 +170776927308,213,0 +170776927356,213,0 +170776927404,213,0 +170776927452,213,0 +170776927500,213,0 +170776927550,214,0 +170776927598,214,0 +170776927646,214,0 +170776927693,214,0 +170776927741,214,0 +170776927789,214,0 +170776927837,214,0 +170776927885,213,0 +170776927934,213,0 +170776927982,213,0 +170776928030,213,0 +170776928080,213,0 +170776928129,214,0 +170776928177,214,0 +170776928225,214,0 +170776928273,214,0 +170776928321,214,0 +170776928369,214,0 +170776928417,214,0 +170776928466,214,0 +170776928514,214,0 +170776928564,214,0 +170776928612,214,0 +170776928660,214,0 +170776928708,214,0 +170776928757,214,0 +170776928805,214,0 +170776928854,214,0 +170776928902,214,0 +170776928950,214,0 +170776928998,214,0 +170776929046,214,0 +170776929094,214,0 +170776929142,214,0 +170776929190,214,0 +170776929238,215,0 +170776929286,214,0 +170776929334,214,0 +170776929382,215,0 +170776929430,214,0 +170776929479,214,0 +170776929527,214,0 +170776929576,214,0 +170776929624,214,0 +170776929674,214,0 +170776929721,214,0 +170776929771,214,0 +170776929819,214,0 +170776929867,214,0 +170776929915,215,0 +170776929963,215,0 +170776930011,215,0 +170776930060,215,0 +170776930108,215,0 +170776930156,215,0 +170776930205,215,0 +170776930253,215,0 +170776930303,214,0 +170776930350,214,0 +170776930398,214,0 +170776930446,214,0 +170776930494,214,0 +170776930542,214,0 +170776930590,214,0 +170776930640,214,0 +170776930688,214,0 +170776930736,215,0 +170776930784,215,0 +170776930833,215,0 +170776930881,215,0 +170776930929,215,0 +170776930978,214,0 +170776931026,215,0 +170776931074,215,0 +170776931122,214,0 +170776931170,214,0 +170776931218,213,0 +170776931267,213,0 +170776931317,213,0 +170776931365,213,0 +170776931414,214,0 +170776931462,214,0 +170776931510,214,0 +170776931558,214,0 +170776931606,214,0 +170776931654,214,0 +170776931702,214,0 +170776931750,214,0 +170776931797,214,0 +170776931847,214,0 +170776931895,214,0 +170776931944,214,0 +170776931994,214,0 +170776932042,213,0 +170776932090,213,0 +170776932138,213,0 +170776932185,213,0 +170776932233,214,0 +170776932283,214,0 +170776932331,214,0 +170776932380,214,0 +170776932428,214,0 +170776932476,214,0 +170776932524,214,0 +170776932572,214,0 +170776932620,214,0 +170776932668,214,0 +170776932717,214,0 +170776932765,214,0 +170776932813,214,0 +170776932861,213,0 +170776932910,213,0 +170776932960,213,0 +170776933009,213,0 +170776933059,213,0 +170776933108,213,0 +170776933156,214,0 +170776933204,213,0 +170776933252,214,0 +170776933301,214,0 +170776933349,214,0 +170776933399,214,0 +170776933448,215,0 +170776933496,214,0 +170776933544,215,0 +170776933592,214,0 +170776933640,214,0 +170776933688,213,0 +170776933736,213,0 +170776933784,213,0 +170776933832,213,0 +170776933879,213,0 +170776933927,213,0 +170776933975,213,0 +170776934023,214,0 +170776934073,213,0 +170776934121,214,0 +170776934170,214,0 +170776934220,214,0 +170776934268,214,0 +170776934315,214,0 +170776934363,214,0 +170776934411,214,0 +170776934459,214,0 +170776934509,213,0 +170776934557,213,0 +170776934606,213,0 +170776934656,213,0 +170776934704,213,0 +170776934751,213,0 +170776934801,213,0 +170776934850,214,0 +170776934898,214,0 +170776934948,213,0 +170776934996,214,0 +170776935043,214,0 +170776935091,214,0 +170776935139,214,0 +170776935189,214,0 +170776935237,214,0 +170776935284,214,0 +170776935334,213,0 +170776935382,213,0 +170776935430,213,0 +170776935477,213,0 +170776935525,213,0 +170776935575,213,0 +170776935623,213,0 +170776935671,213,0 +170776935719,214,0 +170776935767,214,0 +170776935815,214,0 +170776935863,214,0 +170776935910,214,0 +170776935960,214,0 +170776936008,214,0 +170776936056,214,0 +170776936104,214,0 +170776936152,213,0 +170776936200,213,0 +170776936248,213,0 +170776936296,213,0 +170776936343,213,0 +170776936393,213,0 +170776936441,214,0 +170776936489,214,0 +170776936538,214,0 +170776936588,214,0 +170776936635,214,0 +170776936685,214,0 +170776936733,214,0 +170776936781,214,0 +170776936830,214,0 +170776936878,214,0 +170776936927,214,0 +170776936975,214,0 +170776937023,213,0 +170776937071,213,0 +170776937121,213,0 +170776937169,213,0 +170776937217,213,0 +170776937266,213,0 +170776937314,213,0 +170776937362,213,0 +170776937411,214,0 +170776937459,214,0 +170776937507,214,0 +170776937555,214,0 +170776937602,214,0 +170776937650,214,0 +170776937698,214,0 +170776937746,214,0 +170776937794,214,0 +170776937842,213,0 +170776937891,213,0 +170776937939,213,0 +170776937987,213,0 +170776938035,213,0 +170776938083,214,0 +170776938131,213,0 +170776938179,214,0 +170776938227,214,0 +170776938275,214,0 +170776938323,214,0 +170776938371,214,0 +170776938419,214,0 +170776938467,214,0 +170776938515,214,0 +170776938563,214,0 +170776938610,214,0 +170776938658,213,0 +170776938706,213,0 +170776938756,213,0 +170776938803,213,0 +170776938851,213,0 +170776938899,213,0 +170776938947,213,0 +170776938995,214,0 +170776939043,214,0 +170776939091,214,0 +170776939139,214,0 +170776939187,214,0 +170776939235,214,0 +170776939284,214,0 +170776939332,214,0 +170776939380,214,0 +170776939430,214,0 +170776939478,213,0 +170776939525,213,0 +170776939575,213,0 +170776939624,213,0 +170776939672,214,0 +170776939722,213,0 +170776939770,214,0 +170776939818,214,0 +170776939865,214,0 +170776939913,214,0 +170776939961,214,0 +170776940011,214,0 +170776940060,214,0 +170776940108,214,0 +170776940156,214,0 +170776940205,214,0 +170776940253,215,0 +170776940301,213,0 +170776940351,213,0 +170776940399,213,0 +170776940446,214,0 +170776940494,213,0 +170776940542,214,0 +170776940592,214,0 +170776940641,214,0 +170776940689,214,0 +170776940737,214,0 +170776940787,214,0 +170776940835,214,0 +170776940884,214,0 +170776940933,214,0 +170776940983,214,0 +170776941031,215,0 +170776941079,214,0 +170776941127,213,0 +170776941175,213,0 +170776941223,213,0 +170776941272,213,0 +170776941322,214,0 +170776941371,214,0 +170776941419,214,0 +170776941467,214,0 +170776941515,214,0 +170776941564,214,0 +170776941612,214,0 +170776941660,215,0 +170776941708,215,0 +170776941756,214,0 +170776941804,214,0 +170776941852,214,0 +170776941900,214,0 +170776941947,213,0 +170776941995,213,0 +170776942043,213,0 +170776942091,213,0 +170776942139,213,0 +170776942187,214,0 +170776942236,214,0 +170776942284,214,0 +170776942332,214,0 +170776942381,214,0 +170776942429,214,0 +170776942477,214,0 +170776942525,214,0 +170776942573,214,0 +170776942621,214,0 +170776942668,215,0 +170776942716,214,0 +170776942764,214,0 +170776942812,213,0 +170776942860,213,0 +170776942908,213,0 +170776942955,213,0 +170776943003,213,0 +170776943051,214,0 +170776943099,214,0 +170776943147,214,0 +170776943194,214,0 +170776943242,214,0 +170776943290,214,0 +170776943338,214,0 +170776943386,214,0 +170776943434,214,0 +170776943482,215,0 +170776943531,214,0 +170776943579,214,0 +170776943627,214,0 +170776943675,213,0 +170776943723,213,0 +170776943771,214,0 +170776943819,214,0 +170776943867,214,0 +170776943915,214,0 +170776943963,214,0 +170776944010,214,0 +170776944058,214,0 +170776944106,214,0 +170776944154,215,0 +170776944202,214,0 +170776944250,215,0 +170776944298,214,0 +170776944345,214,0 +170776944393,214,0 +170776944441,213,0 +170776944489,213,0 +170776944537,213,0 +170776944584,213,0 +170776944634,214,0 +170776944682,213,0 +170776944729,214,0 +170776944777,214,0 +170776944825,214,0 +170776944873,214,0 +170776944921,214,0 +170776944969,214,0 +170776945016,214,0 +170776945064,214,0 +170776945112,214,0 +170776945160,214,0 +170776945208,214,0 +170776945256,214,0 +170776945304,213,0 +170776945353,213,0 +170776945401,213,0 +170776945449,213,0 +170776945497,213,0 +170776945545,213,0 +170776945592,213,0 +170776945640,213,0 +170776945690,214,0 +170776945739,214,0 +170776945787,213,0 +170776945835,214,0 +170776945883,214,0 +170776945931,214,0 +170776945979,214,0 +170776946027,214,0 +170776946074,214,0 +170776946122,213,0 +170776946170,213,0 +170776946218,213,0 +170776946266,213,0 +170776946314,213,0 +170776946362,213,0 +170776946411,213,0 +170776946459,213,0 +170776946507,213,0 +170776946555,214,0 +170776946603,214,0 +170776946653,214,0 +170776946701,214,0 +170776946748,214,0 +170776946796,214,0 +170776946846,214,0 +170776946894,214,0 +170776946941,213,0 +170776946989,213,0 +170776947037,213,0 +170776947085,213,0 +170776947133,213,0 +170776947181,213,0 +170776947229,214,0 +170776947277,214,0 +170776947326,214,0 +170776947374,214,0 +170776947422,214,0 +170776947470,214,0 +170776947517,214,0 +170776947565,214,0 +170776947613,214,0 +170776947661,214,0 +170776947709,214,0 +170776947757,213,0 +170776947805,213,0 +170776947854,213,0 +170776947902,213,0 +170776947950,213,0 +170776948000,213,0 +170776948048,214,0 +170776948096,214,0 +170776948143,214,0 +170776948191,214,0 +170776948239,214,0 +170776948287,214,0 +170776948335,214,0 +170776948383,214,0 +170776948431,214,0 +170776948480,214,0 +170776948528,214,0 +170776948576,213,0 +170776948624,213,0 +170776948672,213,0 +170776948720,213,0 +170776948768,213,0 +170776948817,213,0 +170776948865,214,0 +170776948915,214,0 +170776948962,214,0 +170776949010,214,0 +170776949058,214,0 +170776949106,214,0 +170776949154,214,0 +170776949202,214,0 +170776949250,214,0 +170776949298,214,0 +170776949345,214,0 +170776949393,214,0 +170776949441,213,0 +170776949489,213,0 +170776949537,213,0 +170776949585,213,0 +170776949632,213,0 +170776949680,214,0 +170776949728,214,0 +170776949776,214,0 +170776949824,214,0 +170776949873,214,0 +170776949923,214,0 +170776949972,214,0 +170776950020,215,0 +170776950069,214,0 +170776950119,214,0 +170776950167,214,0 +170776950215,214,0 +170776950263,213,0 +170776950311,213,0 +170776950359,214,0 +170776950407,214,0 +170776950455,214,0 +170776950503,214,0 +170776950552,214,0 +170776950600,214,0 +170776950648,214,0 +170776950697,214,0 +170776950745,214,0 +170776950795,214,0 +170776950843,214,0 +170776950892,214,0 +170776950940,215,0 +170776950990,214,0 +170776951037,214,0 +170776951085,213,0 +170776951133,213,0 +170776951183,213,0 +170776951232,213,0 +170776951282,214,0 +170776951331,214,0 +170776951381,214,0 +170776951429,214,0 +170776951478,214,0 +170776951528,214,0 +170776951576,214,0 +170776951625,214,0 +170776951673,214,0 +170776951721,214,0 +170776951769,214,0 +170776951817,214,0 +170776951865,214,0 +170776951914,214,0 +170776951962,213,0 +170776952010,213,0 +170776952058,213,0 +170776952108,213,0 +170776952155,214,0 +170776952205,214,0 +170776952253,214,0 +170776952301,214,0 +170776952349,214,0 +170776952397,214,0 +170776952445,215,0 +170776952494,214,0 +170776952542,214,0 +170776952590,214,0 +170776952638,214,0 +170776952686,214,0 +170776952734,213,0 +170776952782,213,0 +170776952831,213,0 +170776952879,213,0 +170776952929,213,0 +170776952976,213,0 +170776953024,213,0 +170776953074,213,0 +170776953122,214,0 +170776953170,213,0 +170776953218,214,0 +170776953266,214,0 +170776953315,214,0 +170776953363,214,0 +170776953412,214,0 +170776953460,214,0 +170776953510,214,0 +170776953558,213,0 +170776953606,213,0 +170776953654,213,0 +170776953701,213,0 +170776953749,213,0 +170776953797,213,0 +170776953845,213,0 +170776953893,213,0 +170776953941,213,0 +170776953989,213,0 +170776954037,213,0 +170776954085,214,0 +170776954133,214,0 +170776954181,214,0 +170776954230,214,0 +170776954278,215,0 +170776954327,214,0 +170776954375,214,0 +170776954423,213,0 +170776954471,213,0 +170776954519,213,0 +170776954567,213,0 +170776954615,213,0 +170776954664,213,0 +170776954712,213,0 +170776954760,213,0 +170776954808,213,0 +170776954856,214,0 +170776954904,214,0 +170776954952,214,0 +170776955000,214,0 +170776955048,214,0 +170776955097,214,0 +170776955146,214,0 +170776955194,214,0 +170776955242,213,0 +170776955290,213,0 +170776955338,213,0 +170776955386,213,0 +170776955435,213,0 +170776955485,214,0 +170776955533,214,0 +170776955581,214,0 +170776955629,214,0 +170776955677,214,0 +170776955724,214,0 +170776955774,214,0 +170776955823,214,0 +170776955871,214,0 +170776955919,214,0 +170776955967,214,0 +170776956017,214,0 +170776956065,213,0 +170776956114,213,0 +170776956162,213,0 +170776956210,213,0 +170776956258,213,0 +170776956306,214,0 +170776956353,214,0 +170776956401,214,0 +170776956449,214,0 +170776956497,214,0 +170776956545,214,0 +170776956593,214,0 +170776956641,214,0 +170776956689,215,0 +170776956738,214,0 +170776956786,214,0 +170776956834,214,0 +170776956882,213,0 +170776956932,213,0 +170776956980,213,0 +170776957028,213,0 +170776957075,213,0 +170776957125,214,0 +170776957173,213,0 +170776957221,214,0 +170776957269,214,0 +170776957317,214,0 +170776957365,214,0 +170776957413,214,0 +170776957461,214,0 +170776957509,214,0 +170776957558,214,0 +170776957608,214,0 +170776957655,214,0 +170776957705,213,0 +170776957754,213,0 +170776957802,213,0 +170776957850,213,0 +170776957900,213,0 +170776957949,213,0 +170776957997,214,0 +170776958045,214,0 +170776958093,214,0 +170776958140,214,0 +170776958190,214,0 +170776958239,214,0 +170776958289,214,0 +170776958337,214,0 +170776958385,214,0 +170776958433,214,0 +170776958482,214,0 +170776958530,213,0 +170776958578,213,0 +170776958627,213,0 +170776958675,213,0 +170776958723,213,0 +170776958771,213,0 +170776958819,213,0 +170776958867,213,0 +170776958915,213,0 +170776958963,214,0 +170776959011,214,0 +170776959060,213,0 +170776959110,214,0 +170776959159,214,0 +170776959207,214,0 +170776959255,214,0 +170776959303,214,0 +170776959351,214,0 +170776959398,213,0 +170776959446,213,0 +170776959494,213,0 +170776959542,213,0 +170776959590,213,0 +170776959639,213,0 +170776959687,213,0 +170776959736,213,0 +170776959784,213,0 +170776959832,213,0 +170776959880,214,0 +170776959928,214,0 +170776959975,214,0 +170776960023,214,0 +170776960071,214,0 +170776960119,214,0 +170776960167,214,0 +170776960215,213,0 +170776960262,213,0 +170776960312,213,0 +170776960360,213,0 +170776960407,213,0 +170776960455,213,0 +170776960503,213,0 +170776960551,214,0 +170776960599,214,0 +170776960647,214,0 +170776960694,214,0 +170776960742,214,0 +170776960790,214,0 +170776960838,214,0 +170776960886,214,0 +170776960934,214,0 +170776960982,214,0 +170776961031,213,0 +170776961079,213,0 +170776961129,213,0 +170776961177,213,0 +170776961225,213,0 +170776961273,214,0 +170776961320,214,0 +170776961368,214,0 +170776961416,214,0 +170776961464,214,0 +170776961512,214,0 +170776961560,214,0 +170776961608,214,0 +170776961655,214,0 +170776961703,214,0 +170776961751,214,0 +170776961799,214,0 +170776961848,213,0 +170776961896,213,0 +170776961944,213,0 +170776961992,214,0 +170776962040,213,0 +170776962089,214,0 +170776962137,214,0 +170776962185,214,0 +170776962233,214,0 +170776962280,214,0 +170776962328,214,0 +170776962378,214,0 +170776962425,214,0 +170776962473,214,0 +170776962521,215,0 +170776962569,214,0 +170776962617,214,0 +170776962665,214,0 +170776962713,213,0 +170776962762,213,0 +170776962810,213,0 +170776962859,213,0 +170776962909,214,0 +170776962959,214,0 +170776963008,214,0 +170776963056,214,0 +170776963104,214,0 +170776963152,214,0 +170776963200,214,0 +170776963249,214,0 +170776963297,214,0 +170776963345,214,0 +170776963393,214,0 +170776963441,214,0 +170776963489,214,0 +170776963538,213,0 +170776963588,213,0 +170776963635,213,0 +170776963683,213,0 +170776963733,213,0 +170776963781,213,0 +170776963829,213,0 +170776963877,214,0 +170776963924,214,0 +170776963972,214,0 +170776964020,214,0 +170776964070,214,0 +170776964117,214,0 +170776964165,214,0 +170776964213,214,0 +170776964261,214,0 +170776964308,214,0 +170776964356,213,0 +170776964404,213,0 +170776964452,213,0 +170776964500,213,0 +170776964547,213,0 +170776964595,213,0 +170776964645,213,0 +170776964692,213,0 +170776964740,213,0 +170776964788,214,0 +170776964836,214,0 +170776964884,214,0 +170776964932,214,0 +170776964980,214,0 +170776965029,214,0 +170776965077,214,0 +170776965125,214,0 +170776965173,213,0 +170776965220,213,0 +170776965270,213,0 +170776965317,213,0 +170776965367,213,0 +170776965415,213,0 +170776965464,213,0 +170776965514,213,0 +170776965563,213,0 +170776965613,214,0 +170776965661,214,0 +170776965709,214,0 +170776965757,214,0 +170776965804,214,0 +170776965852,214,0 +170776965902,214,0 +170776965950,214,0 +170776965998,213,0 +170776966047,213,0 +170776966096,213,0 +170776966144,213,0 +170776966192,213,0 +170776966240,213,0 +170776966288,213,0 +170776966336,213,0 +170776966384,213,0 +170776966432,214,0 +170776966480,214,0 +170776966528,214,0 +170776966575,214,0 +170776966623,214,0 +170776966673,214,0 +170776966721,214,0 +170776966769,214,0 +170776966817,213,0 +170776966866,213,0 +170776966914,213,0 +170776966962,213,0 +170776967010,213,0 +170776967058,213,0 +170776967105,213,0 +170776967155,213,0 +170776967203,213,0 +170776967251,213,0 +170776967300,213,0 +170776967348,214,0 +170776967398,214,0 +170776967446,214,0 +170776967495,214,0 +170776967543,214,0 +170776967592,214,0 +170776967640,214,0 +170776967688,213,0 +170776967736,213,0 +170776967784,213,0 +170776967832,213,0 +170776967880,213,0 +170776967928,213,0 +170776967976,213,0 +170776968023,213,0 +170776968071,214,0 +170776968119,214,0 +170776968167,214,0 +170776968215,214,0 +170776968263,214,0 +170776968311,214,0 +170776968359,214,0 +170776968406,214,0 +170776968454,214,0 +170776968502,213,0 +170776968550,213,0 +170776968600,213,0 +170776968648,213,0 +170776968696,213,0 +170776968744,213,0 +170776968793,213,0 +170776968841,214,0 +170776968889,214,0 +170776968937,214,0 +170776968985,214,0 +170776969035,214,0 +170776969083,214,0 +170776969132,214,0 +170776969180,214,0 +170776969230,214,0 +170776969277,214,0 +170776969325,213,0 +170776969373,213,0 +170776969421,213,0 +170776969471,213,0 +170776969519,213,0 +170776969568,214,0 +170776969618,214,0 +170776969667,214,0 +170776969715,214,0 +170776969763,214,0 +170776969811,214,0 +170776969859,214,0 +170776969907,214,0 +170776969955,214,0 +170776970005,214,0 +170776970052,214,0 +170776970100,214,0 +170776970150,213,0 +170776970198,214,0 +170776970247,214,0 +170776970295,214,0 +170776970343,214,0 +170776970393,214,0 +170776970441,214,0 +170776970490,214,0 +170776970538,214,0 +170776970588,214,0 +170776970636,214,0 +170776970683,214,0 +170776970731,214,0 +170776970779,214,0 +170776970827,214,0 +170776970877,214,0 +170776970925,214,0 +170776970974,214,0 +170776971022,213,0 +170776971072,213,0 +170776971120,213,0 +170776971168,214,0 +170776971217,214,0 +170776971265,214,0 +170776971313,214,0 +170776971361,214,0 +170776971409,214,0 +170776971457,214,0 +170776971505,214,0 +170776971554,214,0 +170776971602,214,0 +170776971650,214,0 +170776971700,214,0 +170776971749,214,0 +170776971797,213,0 +170776971845,213,0 +170776971893,213,0 +170776971941,214,0 +170776971989,213,0 +170776972038,214,0 +170776972086,214,0 +170776972136,214,0 +170776972185,214,0 +170776972233,214,0 +170776972282,214,0 +170776972330,214,0 +170776972378,214,0 +170776972426,215,0 +170776972474,214,0 +170776972522,214,0 +170776972572,214,0 +170776972619,213,0 +170776972669,213,0 +170776972718,213,0 +170776972766,213,0 +170776972816,214,0 +170776972865,214,0 +170776972913,214,0 +170776972961,214,0 +170776973011,214,0 +170776973059,214,0 +170776973108,214,0 +170776973158,216,0 +170776973206,214,0 +170776973254,214,0 +170776973303,214,0 +170776973353,214,0 +170776973402,214,0 +170776973450,213,0 +170776973499,213,0 +170776973547,213,0 +170776973595,213,0 +170776973643,213,0 +170776973691,214,0 +170776973741,214,0 +170776973788,214,0 +170776973836,214,0 +170776973884,214,0 +170776973932,214,0 +170776973980,214,0 +170776974028,214,0 +170776974076,214,0 +170776974125,214,0 +170776974175,214,0 +170776974222,214,0 +170776974270,214,0 +170776974318,213,0 +170776974368,213,0 +170776974416,213,0 +170776974464,213,0 +170776974512,213,0 +170776974560,214,0 +170776974608,214,0 +170776974655,214,0 +170776974703,214,0 +170776974751,214,0 +170776974799,214,0 +170776974847,214,0 +170776974896,214,0 +170776974944,214,0 +170776974994,214,0 +170776975042,214,0 +170776975090,214,0 +170776975139,213,0 +170776975187,213,0 +170776975235,213,0 +170776975283,213,0 +170776975331,214,0 +170776975379,214,0 +170776975427,214,0 +170776975476,214,0 +170776975524,214,0 +170776975572,214,0 +170776975622,214,0 +170776975670,214,0 +170776975719,214,0 +170776975767,214,0 +170776975815,214,0 +170776975863,214,0 +170776975913,214,0 +170776975962,213,0 +170776976012,213,0 +170776976059,213,0 +170776976107,213,0 +170776976155,213,0 +170776976203,213,0 +170776976253,213,0 +170776976302,213,0 +170776976350,214,0 +170776976398,214,0 +170776976448,214,0 +170776976496,214,0 +170776976544,214,0 +170776976591,214,0 +170776976641,214,0 +170776976689,214,0 +170776976738,214,0 +170776976786,213,0 +170776976836,213,0 +170776976884,213,0 +170776976932,213,0 +170776976980,213,0 +170776977028,213,0 +170776977076,213,0 +170776977123,213,0 +170776977171,213,0 +170776977219,214,0 +170776977267,214,0 +170776977317,214,0 +170776977365,214,0 +170776977414,214,0 +170776977464,214,0 +170776977512,214,0 +170776977559,214,0 +170776977609,213,0 +170776977658,213,0 +170776977708,213,0 +170776977756,213,0 +170776977804,213,0 +170776977852,213,0 +170776977901,213,0 +170776977949,213,0 +170776977997,213,0 +170776978045,213,0 +170776978093,214,0 +170776978141,214,0 +170776978189,214,0 +170776978237,214,0 +170776978285,214,0 +170776978333,214,0 +170776978381,214,0 +170776978429,213,0 +170776978477,212,0 +170776978526,213,0 +170776978576,212,0 +170776978624,212,0 +170776978672,212,0 +170776978721,213,0 +170776978769,213,0 +170776978817,213,0 +170776978866,213,0 +170776978914,213,0 +170776978962,213,0 +170776979012,213,0 +170776979061,213,0 +170776979111,213,0 +170776979159,213,0 +170776979207,214,0 +170776979255,213,0 +170776979303,213,0 +170776979351,212,0 +170776979400,213,0 +170776979448,213,0 +170776979497,213,0 +170776979545,213,0 +170776979593,213,0 +170776979641,213,0 +170776979689,213,0 +170776979739,213,0 +170776979787,213,0 +170776979834,214,0 +170776979884,214,0 +170776979932,214,0 +170776979980,214,0 +170776980028,214,0 +170776980076,214,0 +170776980125,213,0 +170776980173,213,0 +170776980223,213,0 +170776980271,213,0 +170776980320,213,0 +170776980368,213,0 +170776980418,213,0 +170776980466,213,0 +170776980514,213,0 +170776980562,213,0 +170776980611,214,0 +170776980661,214,0 +170776980709,214,0 +170776980756,214,0 +170776980804,213,0 +170776980854,214,0 +170776980902,214,0 +170776980951,213,0 +170776981001,213,0 +170776981051,213,0 +170776981098,213,0 +170776981148,213,0 +170776981198,213,0 +170776981247,213,0 +170776981295,213,0 +170776981343,213,0 +170776981391,213,0 +170776981439,213,0 +170776981487,213,0 +170776981536,214,0 +170776981586,214,0 +170776981635,214,0 +170776981683,214,0 +170776981731,214,0 +170776981779,214,0 +170776981827,214,0 +170776981876,214,0 +170776981926,214,0 +170776981975,214,0 +170776982023,214,0 +170776982071,214,0 +170776982119,214,0 +170776982169,213,0 +170776982217,213,0 +170776982266,213,0 +170776982316,214,0 +170776982364,213,0 +170776982412,213,0 +170776982461,214,0 +170776982509,214,0 +170776982557,214,0 +170776982605,214,0 +170776982654,214,0 +170776982704,214,0 +170776982752,214,0 +170776982801,214,0 +170776982849,214,0 +170776982899,214,0 +170776982948,214,0 +170776982998,213,0 +170776983046,213,0 +170776983094,213,0 +170776983141,213,0 +170776983189,214,0 +170776983237,214,0 +170776983285,214,0 +170776983334,214,0 +170776983384,214,0 +170776983432,214,0 +170776983479,214,0 +170776983527,214,0 +170776983575,214,0 +170776983623,214,0 +170776983671,214,0 +170776983719,214,0 +170776983768,214,0 +170776983816,214,0 +170776983864,214,0 +170776983912,214,0 +170776983960,214,0 +170776984008,214,0 +170776984056,214,0 +170776984105,214,0 +170776984153,214,0 +170776984201,214,0 +170776984249,215,0 +170776984297,215,0 +170776984347,214,0 +170776984395,214,0 +170776984443,214,0 +170776984490,214,0 +170776984540,214,0 +170776984589,214,0 +170776984637,214,0 +170776984687,214,0 +170776984735,214,0 +170776984784,214,0 +170776984832,214,0 +170776984880,214,0 +170776984928,214,0 +170776984976,214,0 +170776985024,214,0 +170776985072,215,0 +170776985120,215,0 +170776985168,214,0 +170776985216,214,0 +170776985263,214,0 +170776985311,214,0 +170776985359,214,0 +170776985407,214,0 +170776985455,213,0 +170776985503,213,0 +170776985550,214,0 +170776985598,214,0 +170776985646,214,0 +170776985694,214,0 +170776985742,214,0 +170776985789,214,0 +170776985837,214,0 +170776985885,214,0 +170776985933,214,0 +170776985981,214,0 +170776986029,214,0 +170776986076,214,0 +170776986124,214,0 +170776986172,214,0 +170776986222,214,0 +170776986269,214,0 +170776986317,213,0 +170776986367,213,0 +170776986414,213,0 +170776986462,213,0 +170776986512,213,0 +170776986560,213,0 +170776986607,213,0 +170776986655,214,0 +170776986703,214,0 +170776986751,214,0 +170776986799,214,0 +170776986848,214,0 +170776986898,214,0 +170776986945,214,0 +170776986993,214,0 +170776987041,214,0 +170776987089,214,0 +170776987138,213,0 +170776987186,213,0 +170776987234,213,0 +170776987282,213,0 +170776987331,213,0 +170776987379,213,0 +170776987427,213,0 +170776987475,213,0 +170776987523,213,0 +170776987571,213,0 +170776987620,213,0 +170776987668,214,0 +170776987716,214,0 +170776987764,214,0 +170776987812,214,0 +170776987859,214,0 +170776987907,214,0 +170776987955,213,0 +170776988003,213,0 +170776988052,212,0 +170776988100,213,0 +170776988148,213,0 +170776988196,213,0 +170776988243,213,0 +170776988291,213,0 +170776988339,213,0 +170776988389,213,0 +170776988436,213,0 +170776988484,214,0 +170776988532,214,0 +170776988580,214,0 +170776988628,214,0 +170776988677,214,0 +170776988725,214,0 +170776988775,213,0 +170776988823,213,0 +170776988872,213,0 +170776988922,213,0 +170776988970,213,0 +170776989019,213,0 +170776989067,213,0 +170776989117,213,0 +170776989166,213,0 +170776989214,213,0 +170776989262,213,0 +170776989310,214,0 +170776989359,213,0 +170776989409,214,0 +170776989457,214,0 +170776989505,214,0 +170776989554,214,0 +170776989604,213,0 +170776989652,213,0 +170776989700,213,0 +170776989747,213,0 +170776989797,213,0 +170776989845,213,0 +170776989894,213,0 +170776989942,213,0 +170776989992,213,0 +170776990040,213,0 +170776990088,214,0 +170776990135,214,0 +170776990185,214,0 +170776990234,214,0 +170776990282,214,0 +170776990332,214,0 +170776990380,214,0 +170776990428,213,0 +170776990477,213,0 +170776990525,213,0 +170776990573,213,0 +170776990621,213,0 +170776990670,213,0 +170776990718,213,0 +170776990766,213,0 +170776990816,213,0 +170776990864,213,0 +170776990913,213,0 +170776990961,213,0 +170776991009,214,0 +170776991057,214,0 +170776991107,214,0 +170776991155,214,0 +170776991203,214,0 +170776991251,213,0 +170776991300,213,0 +170776991350,213,0 +170776991398,213,0 +170776991445,213,0 +170776991493,213,0 +170776991543,213,0 +170776991592,214,0 +170776991642,214,0 +170776991690,214,0 +170776991739,214,0 +170776991787,214,0 +170776991835,214,0 +170776991885,214,0 +170776991934,214,0 +170776991982,214,0 +170776992030,214,0 +170776992078,213,0 +170776992126,213,0 +170776992176,213,0 +170776992223,213,0 +170776992271,213,0 +170776992321,213,0 +170776992371,213,0 +170776992419,213,0 +170776992466,214,0 +170776992516,213,0 +170776992564,214,0 +170776992612,214,0 +170776992660,214,0 +170776992707,214,0 +170776992755,214,0 +170776992805,214,0 +170776992854,214,0 +170776992902,214,0 +170776992950,213,0 +170776992998,213,0 +170776993048,213,0 +170776993097,213,0 +170776993147,213,0 +170776993196,213,0 +170776993244,213,0 +170776993292,214,0 +170776993340,214,0 +170776993390,214,0 +170776993438,214,0 +170776993485,214,0 +170776993533,214,0 +170776993581,214,0 +170776993629,214,0 +170776993677,214,0 +170776993725,214,0 +170776993773,213,0 +170776993821,213,0 +170776993869,213,0 +170776993917,213,0 +170776993965,213,0 +170776994014,213,0 +170776994062,213,0 +170776994110,213,0 +170776994158,214,0 +170776994207,214,0 +170776994255,214,0 +170776994305,214,0 +170776994353,214,0 +170776994402,214,0 +170776994450,214,0 +170776994499,214,0 +170776994547,214,0 +170776994597,213,0 +170776994645,213,0 +170776994693,213,0 +170776994740,213,0 +170776994788,213,0 +170776994836,214,0 +170776994886,213,0 +170776994934,214,0 +170776994981,214,0 +170776995029,214,0 +170776995079,214,0 +170776995127,214,0 +170776995175,214,0 +170776995224,214,0 +170776995272,214,0 +170776995320,214,0 +170776995368,214,0 +170776995416,213,0 +170776995464,213,0 +170776995512,213,0 +170776995562,213,0 +170776995609,214,0 +170776995657,213,0 +170776995707,214,0 +170776995755,214,0 +170776995803,214,0 +170776995852,214,0 +170776995900,214,0 +170776995948,214,0 +170776995996,214,0 +170776996044,214,0 +170776996092,214,0 +170776996141,214,0 +170776996189,214,0 +170776996239,213,0 +170776996287,213,0 +170776996336,213,0 +170776996386,213,0 +170776996434,214,0 +170776996482,214,0 +170776996531,214,0 +170776996581,214,0 +170776996630,214,0 +170776996678,214,0 +170776996728,214,0 +170776996776,214,0 +170776996824,214,0 +170776996872,214,0 +170776996920,214,0 +170776996967,214,0 +170776997015,214,0 +170776997063,213,0 +170776997113,213,0 +170776997162,213,0 +170776997210,213,0 +170776997258,214,0 +170776997306,214,0 +170776997354,214,0 +170776997403,214,0 +170776997451,214,0 +170776997499,214,0 +170776997546,214,0 +170776997594,214,0 +170776997642,214,0 +170776997690,214,0 +170776997740,214,0 +170776997788,214,0 +170776997837,214,0 +170776997887,214,0 +170776997936,213,0 +170776997986,213,0 +170776998035,214,0 +170776998085,214,0 +170776998133,214,0 +170776998182,214,0 +170776998230,214,0 +170776998278,214,0 +170776998326,214,0 +170776998376,214,0 +170776998425,214,0 +170776998473,214,0 +170776998521,214,0 +170776998571,214,0 +170776998619,214,0 +170776998668,214,0 +170776998716,213,0 +170776998766,213,0 +170776998814,213,0 +170776998862,213,0 +170776998909,213,0 +170776998957,213,0 +170776999005,214,0 +170776999055,214,0 +170776999103,214,0 +170776999151,214,0 +170776999198,214,0 +170776999246,214,0 +170776999294,214,0 +170776999342,214,0 +170776999390,214,0 +170776999438,214,0 +170776999487,214,0 +170776999535,214,0 +170776999583,213,0 +170776999631,213,0 +170776999679,213,0 +170776999726,213,0 +170776999774,213,0 +170776999822,213,0 +170776999870,213,0 +170776999918,213,0 +170776999966,213,0 +170777000014,213,0 +170777000062,214,0 +170777000110,214,0 +170777000157,214,0 +170777000205,214,0 +170777000253,214,0 +170777000303,214,0 +170777000351,214,0 +170777000400,213,0 +170777000448,213,0 +170777000498,213,0 +170777000546,213,0 +170777000594,213,0 +170777000641,213,0 +170777000689,213,0 +170777000737,213,0 +170777000787,213,0 +170777000836,214,0 +170777000886,214,0 +170777000935,214,0 +170777000983,214,0 +170777001031,214,0 +170777001081,214,0 +170777001129,214,0 +170777001177,214,0 +170777001225,213,0 +170777001272,213,0 +170777001320,213,0 +170777001368,213,0 +170777001416,213,0 +170777001464,213,0 +170777001512,213,0 +170777001560,213,0 +170777001608,214,0 +170777001655,214,0 +170777001703,214,0 +170777001753,214,0 +170777001800,214,0 +170777001848,214,0 +170777001896,214,0 +170777001944,214,0 +170777001992,214,0 +170777002040,213,0 +170777002089,213,0 +170777002137,213,0 +170777002187,213,0 +170777002235,213,0 +170777002283,213,0 +170777002331,213,0 +170777002379,214,0 +170777002427,213,0 +170777002476,214,0 +170777002526,214,0 +170777002574,214,0 +170777002622,214,0 +170777002670,214,0 +170777002719,214,0 +170777002768,214,0 +170777002816,214,0 +170777002866,213,0 +170777002914,213,0 +170777002962,213,0 +170777003011,213,0 +170777003059,213,0 +170777003107,213,0 +170777003155,213,0 +170777003205,213,0 +170777003253,213,0 +170777003301,214,0 +170777003349,214,0 +170777003396,214,0 +170777003444,214,0 +170777003494,214,0 +170777003542,214,0 +170777003590,214,0 +170777003638,214,0 +170777003686,213,0 +170777003734,213,0 +170777003781,213,0 +170777003829,213,0 +170777003879,213,0 +170777003927,213,0 +170777003975,213,0 +170777004022,213,0 +170777004070,214,0 +170777004118,214,0 +170777004168,214,0 +170777004215,214,0 +170777004263,214,0 +170777004311,214,0 +170777004359,214,0 +170777004408,214,0 +170777004456,214,0 +170777004504,214,0 +170777004552,213,0 +170777004600,213,0 +170777004648,213,0 +170777004696,213,0 +170777004745,213,0 +170777004794,213,0 +170777004842,213,0 +170777004890,213,0 +170777004938,214,0 +170777004986,214,0 +170777005034,214,0 +170777005083,214,0 +170777005131,214,0 +170777005180,214,0 +170777005230,214,0 +170777005279,214,0 +170777005327,214,0 +170777005377,213,0 +170777005425,213,0 +170777005473,213,0 +170777005521,213,0 +170777005569,213,0 +170777005618,213,0 +170777005668,214,0 +170777005717,214,0 +170777005765,214,0 +170777005815,214,0 +170777005864,214,0 +170777005914,214,0 +170777005961,215,0 +170777006009,214,0 +170777006059,214,0 +170777006108,214,0 +170777006158,214,0 +170777006206,213,0 +170777006255,213,0 +170777006303,213,0 +170777006351,213,0 +170777006399,214,0 +170777006447,214,0 +170777006495,214,0 +170777006543,214,0 +170777006591,214,0 +170777006639,214,0 +170777006688,214,0 +170777006736,214,0 +170777006785,214,0 +170777006835,214,0 +170777006884,214,0 +170777006932,214,0 +170777006982,214,0 +170777007031,213,0 +170777007079,213,0 +170777007127,213,0 +170777007175,213,0 +170777007223,213,0 +170777007272,213,0 +170777007322,213,0 +170777007370,214,0 +170777007419,213,0 +170777007467,214,0 +170777007515,214,0 +170777007563,214,0 +170777007611,214,0 +170777007660,214,0 +170777007710,214,0 +170777007759,214,0 +170777007807,214,0 +170777007857,213,0 +170777007905,213,0 +170777007954,213,0 +170777008002,213,0 +170777008050,213,0 +170777008098,213,0 +170777008146,213,0 +170777008195,213,0 +170777008243,214,0 +170777008291,214,0 +170777008339,213,0 +170777008389,214,0 +170777008437,214,0 +170777008486,214,0 +170777008536,214,0 +170777008584,214,0 +170777008632,214,0 +170777008680,213,0 +170777008728,213,0 +170777008777,213,0 +170777008827,213,0 +170777008875,213,0 +170777008923,213,0 +170777008972,213,0 +170777009020,213,0 +170777009068,214,0 +170777009116,214,0 +170777009164,214,0 +170777009211,214,0 +170777009259,214,0 +170777009307,214,0 +170777009355,214,0 +170777009403,214,0 +170777009451,214,0 +170777009498,213,0 +170777009546,213,0 +170777009596,213,0 +170777009645,213,0 +170777009693,213,0 +170777009743,213,0 +170777009792,213,0 +170777009840,214,0 +170777009888,214,0 +170777009938,214,0 +170777009987,214,0 +170777010037,214,0 +170777010084,214,0 +170777010132,214,0 +170777010180,215,0 +170777010228,214,0 +170777010277,214,0 +170777010325,214,0 +170777010373,213,0 +170777010421,213,0 +170777010469,213,0 +170777010516,213,0 +170777010564,213,0 +170777010612,214,0 +170777010660,213,0 +170777010708,214,0 +170777010756,214,0 +170777010803,214,0 +170777010851,214,0 +170777010899,214,0 +170777010947,214,0 +170777010995,214,0 +170777011043,214,0 +170777011091,214,0 +170777011139,214,0 +170777011188,213,0 +170777011236,213,0 +170777011286,213,0 +170777011335,213,0 +170777011384,213,0 +170777011434,213,0 +170777011482,214,0 +170777011530,214,0 +170777011578,214,0 +170777011626,214,0 +170777011674,214,0 +170777011721,214,0 +170777011769,214,0 +170777011817,214,0 +170777011865,214,0 +170777011913,214,0 +170777011963,214,0 +170777012010,213,0 +170777012058,213,0 +170777012106,213,0 +170777012156,213,0 +170777012203,214,0 +170777012251,213,0 +170777012299,214,0 +170777012347,214,0 +170777012397,214,0 +170777012445,214,0 +170777012493,214,0 +170777012542,214,0 +170777012590,214,0 +170777012638,214,0 +170777012688,214,0 +170777012736,214,0 +170777012783,214,0 +170777012831,213,0 +170777012881,213,0 +170777012929,213,0 +170777012977,213,0 +170777013025,213,0 +170777013073,213,0 +170777013120,213,0 +170777013168,213,0 +170777013216,213,0 +170777013264,213,0 +170777013314,214,0 +170777013363,214,0 +170777013412,214,0 +170777013460,214,0 +170777013508,214,0 +170777013556,214,0 +170777013606,214,0 +170777013654,214,0 +170777013703,213,0 +170777013751,213,0 +170777013801,213,0 +170777013850,213,0 +170777013898,213,0 +170777013946,213,0 +170777013994,213,0 +170777014042,213,0 +170777014090,214,0 +170777014138,214,0 +170777014186,214,0 +170777014233,214,0 +170777014283,214,0 +170777014331,214,0 +170777014379,214,0 +170777014427,214,0 +170777014475,214,0 +170777014523,212,0 +170777014572,213,0 +170777014620,213,0 +170777014668,213,0 +170777014716,213,0 +170777014764,213,0 +170777014813,213,0 +170777014863,213,0 +170777014911,213,0 +170777014959,213,0 +170777015008,214,0 +170777015058,214,0 +170777015106,214,0 +170777015155,214,0 +170777015205,214,0 +170777015253,214,0 +170777015302,214,0 +170777015350,213,0 +170777015400,213,0 +170777015448,213,0 +170777015496,213,0 +170777015543,213,0 +170777015593,213,0 +170777015641,214,0 +170777015689,214,0 +170777015737,214,0 +170777015786,214,0 +170777015834,214,0 +170777015884,214,0 +170777015932,214,0 +170777015981,214,0 +170777016031,214,0 +170777016080,214,0 +170777016128,214,0 +170777016176,213,0 +170777016224,213,0 +170777016272,213,0 +170777016319,213,0 +170777016367,213,0 +170777016415,213,0 +170777016465,213,0 +170777016512,214,0 +170777016562,214,0 +170777016610,214,0 +170777016658,214,0 +170777016706,214,0 +170777016754,214,0 +170777016802,214,0 +170777016851,214,0 +170777016901,214,0 +170777016950,214,0 +170777017000,213,0 +170777017047,213,0 +170777017095,213,0 +170777017143,213,0 +170777017191,213,0 +170777017241,214,0 +170777017289,213,0 +170777017338,214,0 +170777017388,214,0 +170777017436,214,0 +170777017485,214,0 +170777017533,214,0 +170777017583,214,0 +170777017631,214,0 +170777017679,214,0 +170777017727,214,0 +170777017774,214,0 +170777017822,213,0 +170777017870,213,0 +170777017918,213,0 +170777017966,213,0 +170777018014,213,0 +170777018062,213,0 +170777018110,214,0 +170777018158,213,0 +170777018206,214,0 +170777018254,214,0 +170777018303,214,0 +170777018351,214,0 +170777018399,214,0 +170777018449,214,0 +170777018497,214,0 +170777018546,214,0 +170777018594,214,0 +170777018644,214,0 +170777018692,213,0 +170777018740,213,0 +170777018789,213,0 +170777018837,213,0 +170777018885,213,0 +170777018935,213,0 +170777018984,214,0 +170777019032,214,0 +170777019081,214,0 +170777019129,214,0 +170777019179,214,0 +170777019229,214,0 +170777019278,214,0 +170777019326,214,0 +170777019374,214,0 +170777019422,214,0 +170777019471,214,0 +170777019519,213,0 +170777019569,213,0 +170777019617,213,0 +170777019665,213,0 +170777019713,213,0 +170777019760,213,0 +170777019810,213,0 +170777019858,214,0 +170777019907,214,0 +170777019955,214,0 +170777020003,214,0 +170777020052,214,0 +170777020101,214,0 +170777020149,214,0 +170777020199,214,0 +170777020247,214,0 +170777020294,214,0 +170777020342,213,0 +170777020390,213,0 +170777020438,213,0 +170777020488,213,0 +170777020537,213,0 +170777020585,213,0 +170777020633,213,0 +170777020681,214,0 +170777020729,214,0 +170777020777,214,0 +170777020825,214,0 +170777020874,214,0 +170777020922,214,0 +170777020970,214,0 +170777021018,214,0 +170777021066,214,0 +170777021114,214,0 +170777021162,213,0 +170777021210,213,0 +170777021258,213,0 +170777021305,213,0 +170777021353,213,0 +170777021401,213,0 +170777021449,213,0 +170777021497,214,0 +170777021545,214,0 +170777021593,214,0 +170777021640,214,0 +170777021688,214,0 +170777021736,214,0 +170777021786,214,0 +170777021834,214,0 +170777021882,214,0 +170777021930,214,0 +170777021979,213,0 +170777022027,213,0 +170777022077,213,0 +170777022125,213,0 +170777022173,213,0 +170777022222,213,0 +170777022270,213,0 +170777022318,213,0 +170777022368,213,0 +170777022416,213,0 +170777022464,214,0 +170777022511,214,0 +170777022561,214,0 +170777022609,214,0 +170777022657,214,0 +170777022705,214,0 +170777022753,214,0 +170777022802,214,0 +170777022852,213,0 +170777022900,213,0 +170777022949,213,0 +170777022997,213,0 +170777023047,213,0 +170777023096,213,0 +170777023144,213,0 +170777023192,213,0 +170777023242,214,0 +170777023289,214,0 +170777023337,214,0 +170777023387,214,0 +170777023436,214,0 +170777023484,214,0 +170777023533,214,0 +170777023581,214,0 +170777023629,214,0 +170777023677,213,0 +170777023725,213,0 +170777023773,213,0 +170777023821,213,0 +170777023869,213,0 +170777023917,213,0 +170777023965,213,0 +170777024014,214,0 +170777024062,214,0 +170777024110,214,0 +170777024159,214,0 +170777024207,214,0 +170777024257,214,0 +170777024306,214,0 +170777024354,214,0 +170777024402,214,0 +170777024452,214,0 +170777024500,213,0 +170777024547,213,0 +170777024595,213,0 +170777024643,213,0 +170777024691,213,0 +170777024739,214,0 +170777024787,214,0 +170777024835,214,0 +170777024882,214,0 +170777024930,214,0 +170777024978,214,0 +170777025026,214,0 +170777025074,214,0 +170777025122,214,0 +170777025169,214,0 +170777025217,214,0 +170777025265,214,0 +170777025313,214,0 +170777025363,213,0 +170777025410,214,0 +170777025460,214,0 +170777025508,214,0 +170777025557,214,0 +170777025605,214,0 +170777025653,214,0 +170777025701,214,0 +170777025751,214,0 +170777025799,214,0 +170777025847,214,0 +170777025896,214,0 +170777025946,215,0 +170777025993,214,0 +170777026043,214,0 +170777026091,214,0 +170777026140,213,0 +170777026188,213,0 +170777026236,213,0 +170777026284,214,0 +170777026332,214,0 +170777026380,214,0 +170777026428,214,0 +170777026476,214,0 +170777026524,214,0 +170777026573,214,0 +170777026623,214,0 +170777026671,214,0 +170777026720,214,0 +170777026770,214,0 +170777026817,214,0 +170777026867,214,0 +170777026915,214,0 +170777026963,213,0 +170777027012,213,0 +170777027060,214,0 +170777027108,214,0 +170777027156,214,0 +170777027206,214,0 +170777027254,214,0 +170777027303,214,0 +170777027353,214,0 +170777027402,214,0 +170777027452,214,0 +170777027500,214,0 +170777027548,214,0 +170777027596,214,0 +170777027644,214,0 +170777027692,214,0 +170777027740,214,0 +170777027788,214,0 +170777027837,213,0 +170777027885,213,0 +170777027933,213,0 +170777027982,213,0 +170777028030,214,0 +170777028078,214,0 +170777028128,214,0 +170777028176,214,0 +170777028224,214,0 +170777028272,214,0 +170777028321,214,0 +170777028369,214,0 +170777028417,214,0 +170777028467,214,0 +170777028515,214,0 +170777028563,214,0 +170777028612,214,0 +170777028662,213,0 +170777028710,213,0 +170777028759,213,0 +170777028807,213,0 +170777028857,213,0 +170777028905,213,0 +170777028953,214,0 +170777029001,214,0 +170777029049,214,0 +170777029096,214,0 +170777029144,214,0 +170777029194,214,0 +170777029242,214,0 +170777029290,214,0 +170777029338,214,0 +170777029386,214,0 +170777029434,214,0 +170777029483,213,0 +170777029531,213,0 +170777029579,213,0 +170777029629,213,0 +170777029677,213,0 +170777029725,213,0 +170777029773,214,0 +170777029821,214,0 +170777029869,214,0 +170777029918,214,0 +170777029966,214,0 +170777030014,214,0 +170777030062,214,0 +170777030110,214,0 +170777030158,214,0 +170777030207,214,0 +170777030257,214,0 +170777030306,213,0 +170777030356,213,0 +170777030404,213,0 +170777030452,213,0 +170777030500,214,0 +170777030549,213,0 +170777030597,214,0 +170777030647,214,0 +170777030696,214,0 +170777030746,214,0 +170777030794,214,0 +170777030843,214,0 +170777030891,214,0 +170777030941,214,0 +170777030988,214,0 +170777031036,214,0 +170777031086,214,0 +170777031134,213,0 +170777031182,213,0 +170777031230,213,0 +170777031278,213,0 +170777031326,213,0 +170777031374,213,0 +170777031422,213,0 +170777031469,213,0 +170777031517,214,0 +170777031567,214,0 +170777031615,214,0 +170777031664,214,0 +170777031712,214,0 +170777031762,214,0 +170777031810,214,0 +170777031858,214,0 +170777031906,214,0 +170777031954,213,0 +170777032003,213,0 +170777032051,213,0 +170777032099,213,0 +170777032149,213,0 +170777032198,213,0 +170777032248,213,0 +170777032297,213,0 +170777032347,213,0 +170777032396,214,0 +170777032444,213,0 +170777032493,213,0 +170777032543,214,0 +170777032591,214,0 +170777032639,214,0 +170777032687,214,0 +170777032736,214,0 +170777032784,214,0 +170777032832,213,0 +170777032882,213,0 +170777032930,213,0 +170777032979,213,0 +170777033027,213,0 +170777033075,213,0 +170777033123,213,0 +170777033171,213,0 +170777033219,213,0 +170777033266,213,0 +170777033314,214,0 +170777033362,214,0 +170777033412,214,0 +170777033460,214,0 +170777033509,214,0 +170777033559,214,0 +170777033608,214,0 +170777033656,213,0 +170777033704,213,0 +170777033752,213,0 +170777033802,213,0 +170777033851,213,0 +170777033899,213,0 +170777033947,213,0 +170777033996,213,0 +170777034046,213,0 +170777034094,214,0 +170777034142,214,0 +170777034190,214,0 +170777034239,214,0 +170777034287,214,0 +170777034337,214,0 +170777034386,214,0 +170777034434,214,0 +170777034482,213,0 +170777034530,213,0 +170777034579,213,0 +170777034627,213,0 +170777034675,213,0 +170777034723,213,0 +170777034771,213,0 +170777034821,213,0 +170777034869,213,0 +170777034917,213,0 +170777034966,213,0 +170777035014,214,0 +170777035062,214,0 +170777035110,214,0 +170777035158,214,0 +170777035206,214,0 +170777035254,214,0 +170777035302,213,0 +170777035349,213,0 +170777035397,213,0 +170777035445,213,0 +170777035493,213,0 +170777035541,213,0 +170777035589,213,0 +170777035637,213,0 +170777035685,213,0 +170777035734,213,0 +170777035782,213,0 +170777035830,213,0 +170777035878,213,0 +170777035927,214,0 +170777035977,213,0 +170777036025,214,0 +170777036073,214,0 +170777036122,213,0 +170777036170,213,0 +170777036219,213,0 +170777036267,213,0 +170777036315,213,0 +170777036363,213,0 +170777036412,214,0 +170777036460,214,0 +170777036508,213,0 +170777036558,214,0 +170777036606,214,0 +170777036654,214,0 +170777036703,214,0 +170777036751,214,0 +170777036799,214,0 +170777036847,214,0 +170777036894,214,0 +170777036942,213,0 +170777036990,213,0 +170777037038,213,0 +170777037086,214,0 +170777037134,214,0 +170777037182,214,0 +170777037231,214,0 +170777037279,214,0 +170777037327,214,0 +170777037374,214,0 +170777037422,214,0 +170777037470,214,0 +170777037518,215,0 +170777037567,215,0 +170777037615,214,0 +170777037663,214,0 +170777037711,214,0 +170777037759,214,0 +170777037808,214,0 +170777037856,214,0 +170777037904,214,0 +170777037952,214,0 +170777038000,214,0 +170777038047,214,0 +170777038095,214,0 +170777038143,214,0 +170777038191,214,0 +170777038240,214,0 +170777038290,214,0 +170777038339,214,0 +170777038387,214,0 +170777038437,215,0 +170777038486,214,0 +170777038534,214,0 +170777038582,214,0 +170777038631,214,0 +170777038678,214,0 +170777038726,214,0 +170777038774,214,0 +170777038822,214,0 +170777038870,214,0 +170777038917,214,0 +170777038965,214,0 +170777039013,214,0 +170777039061,214,0 +170777039109,214,0 +170777039156,214,0 +170777039204,214,0 +170777039252,214,0 +170777039300,214,0 +170777039348,214,0 +170777039396,214,0 +170777039443,214,0 +170777039491,214,0 +170777039539,214,0 +170777039587,214,0 +170777039636,214,0 +170777039684,214,0 +170777039732,214,0 +170777039780,214,0 +170777039828,214,0 +170777039877,214,0 +170777039925,214,0 +170777039973,214,0 +170777040021,215,0 +170777040069,214,0 +170777040117,215,0 +170777040164,214,0 +170777040212,214,0 +170777040260,214,0 +170777040308,213,0 +170777040356,213,0 +170777040404,213,0 +170777040452,213,0 +170777040501,213,0 +170777040549,213,0 +170777040597,214,0 +170777040645,214,0 +170777040694,214,0 +170777040742,214,0 +170777040791,214,0 +170777040839,214,0 +170777040887,214,0 +170777040936,215,0 +170777040986,214,0 +170777041035,214,0 +170777041083,214,0 +170777041132,213,0 +170777041182,213,0 +170777041230,213,0 +170777041278,213,0 +170777041325,213,0 +170777041373,214,0 +170777041421,214,0 +170777041469,214,0 +170777041517,213,0 +170777041565,214,0 +170777041613,214,0 +170777041661,214,0 +170777041710,214,0 +170777041758,214,0 +170777041806,214,0 +170777041854,214,0 +170777041902,214,0 +170777041952,213,0 +170777041999,213,0 +170777042047,213,0 +170777042095,213,0 +170777042143,213,0 +170777042191,214,0 +170777042239,214,0 +170777042287,214,0 +170777042336,214,0 +170777042384,214,0 +170777042432,214,0 +170777042480,214,0 +170777042527,214,0 +170777042577,214,0 +170777042625,214,0 +170777042673,214,0 +170777042722,214,0 +170777042770,213,0 +170777042818,213,0 +170777042867,213,0 +170777042917,213,0 +170777042965,213,0 +170777043013,213,0 +170777043061,214,0 +170777043109,214,0 +170777043157,214,0 +170777043206,214,0 +170777043256,214,0 +170777043304,214,0 +170777043351,214,0 +170777043401,214,0 +170777043449,214,0 +170777043497,214,0 +170777043545,214,0 +170777043593,213,0 +170777043641,213,0 +170777043689,213,0 +170777043736,213,0 +170777043784,213,0 +170777043832,213,0 +170777043880,213,0 +170777043928,213,0 +170777043978,213,0 +170777044025,214,0 +170777044073,214,0 +170777044123,214,0 +170777044171,214,0 +170777044219,214,0 +170777044266,214,0 +170777044316,214,0 +170777044363,214,0 +170777044411,214,0 +170777044459,213,0 +170777044507,213,0 +170777044555,213,0 +170777044603,213,0 +170777044652,213,0 +170777044702,213,0 +170777044750,213,0 +170777044799,213,0 +170777044849,214,0 +170777044896,214,0 +170777044944,214,0 +170777044992,214,0 +170777045040,214,0 +170777045088,214,0 +170777045137,214,0 +170777045185,214,0 +170777045233,214,0 +170777045281,213,0 +170777045329,213,0 +170777045377,213,0 +170777045425,213,0 +170777045472,213,0 +170777045522,213,0 +170777045570,213,0 +170777045617,213,0 +170777045665,213,0 +170777045713,213,0 +170777045761,214,0 +170777045809,214,0 +170777045856,214,0 +170777045904,214,0 +170777045952,214,0 +170777046000,214,0 +170777046048,214,0 +170777046097,214,0 +170777046145,213,0 +170777046193,213,0 +170777046241,213,0 +170777046289,213,0 +170777046337,213,0 +170777046384,213,0 +170777046434,213,0 +170777046482,213,0 +170777046530,213,0 +170777046578,214,0 +170777046625,214,0 +170777046673,214,0 +170777046723,214,0 +170777046772,214,0 +170777046820,214,0 +170777046868,214,0 +170777046916,214,0 +170777046964,213,0 +170777047012,213,0 +170777047060,213,0 +170777047108,213,0 +170777047156,213,0 +170777047204,213,0 +170777047252,213,0 +170777047300,213,0 +170777047348,213,0 +170777047396,214,0 +170777047444,214,0 +170777047493,214,0 +170777047541,214,0 +170777047590,214,0 +170777047640,214,0 +170777047688,214,0 +170777047737,214,0 +170777047785,213,0 +170777047835,213,0 +170777047884,213,0 +170777047932,213,0 +170777047980,213,0 +170777048030,213,0 +170777048079,213,0 +170777048127,213,0 +170777048177,214,0 +170777048225,214,0 +170777048273,214,0 +170777048320,214,0 +170777048368,214,0 +170777048418,214,0 +170777048466,214,0 +170777048516,214,0 +170777048564,214,0 +170777048613,213,0 +170777048663,213,0 +170777048711,213,0 +170777048760,213,0 +170777048808,213,0 +170777048856,214,0 +170777048904,214,0 +170777048952,214,0 +170777049000,214,0 +170777049049,214,0 +170777049097,214,0 +170777049147,214,0 +170777049195,214,0 +170777049244,214,0 +170777049294,214,0 +170777049342,214,0 +170777049390,214,0 +170777049437,213,0 +170777049485,213,0 +170777049535,213,0 +170777049582,213,0 +170777049630,213,0 +170777049678,214,0 +170777049726,213,0 +170777049774,214,0 +170777049822,214,0 +170777049870,214,0 +170777049917,214,0 +170777049965,214,0 +170777050015,214,0 +170777050063,214,0 +170777050111,214,0 +170777050158,214,0 +170777050206,214,0 +170777050254,214,0 +170777050302,214,0 +170777050351,213,0 +170777050399,214,0 +170777050447,214,0 +170777050495,214,0 +170777050543,214,0 +170777050591,214,0 +170777050639,214,0 +170777050687,214,0 +170777050735,214,0 +170777050784,214,0 +170777050832,215,0 +170777050880,214,0 +170777050928,215,0 +170777050975,214,0 +170777051025,214,0 +170777051073,214,0 +170777051121,213,0 +170777051168,213,0 +170777051216,214,0 +170777051264,214,0 +170777051312,214,0 +170777051360,214,0 +170777051408,214,0 +170777051456,214,0 +170777051503,214,0 +170777051551,214,0 +170777051599,214,0 +170777051647,215,0 +170777051695,214,0 +170777051743,214,0 +170777051791,214,0 +170777051839,214,0 +170777051886,214,0 +170777051936,214,0 +170777051984,214,0 +170777052032,214,0 +170777052079,213,0 +170777052127,214,0 +170777052175,214,0 +170777052223,214,0 +170777052271,214,0 +170777052320,214,0 +170777052368,214,0 +170777052416,214,0 +170777052466,214,0 +170777052513,214,0 +170777052561,214,0 +170777052611,215,0 +170777052659,214,0 +170777052707,214,0 +170777052755,214,0 +170777052803,213,0 +170777052851,213,0 +170777052898,213,0 +170777052946,214,0 +170777052994,214,0 +170777053042,214,0 +170777053092,214,0 +170777053140,214,0 +170777053188,214,0 +170777053237,214,0 +170777053287,215,0 +170777053335,214,0 +170777053382,214,0 +170777053430,214,0 +170777053478,214,0 +170777053526,214,0 +170777053574,214,0 +170777053622,213,0 +170777053670,213,0 +170777053719,213,0 +170777053769,213,0 +170777053817,213,0 +170777053866,214,0 +170777053914,214,0 +170777053962,214,0 +170777054012,214,0 +170777054060,214,0 +170777054108,214,0 +170777054157,214,0 +170777054206,214,0 +170777054254,214,0 +170777054302,214,0 +170777054352,214,0 +170777054402,214,0 +170777054450,213,0 +170777054498,213,0 +170777054545,213,0 +170777054593,213,0 +170777054643,213,0 +170777054691,214,0 +170777054739,214,0 +170777054788,214,0 +170777054836,214,0 +170777054886,214,0 +170777054935,214,0 +170777054983,214,0 +170777055031,214,0 +170777055079,215,0 +170777055127,214,0 +170777055177,214,0 +170777055225,214,0 +170777055274,213,0 +170777055322,213,0 +170777055370,213,0 +170777055418,213,0 +170777055467,213,0 +170777055515,213,0 +170777055563,213,0 +170777055613,213,0 +170777055661,213,0 +170777055709,214,0 +170777055758,214,0 +170777055806,214,0 +170777055854,214,0 +170777055902,214,0 +170777055950,214,0 +170777055998,214,0 +170777056046,214,0 +170777056094,214,0 +170777056142,213,0 +170777056191,213,0 +170777056239,213,0 +170777056287,213,0 +170777056335,213,0 +170777056384,213,0 +170777056432,214,0 +170777056482,214,0 +170777056530,214,0 +170777056578,214,0 +170777056627,214,0 +170777056675,214,0 +170777056723,214,0 +170777056773,214,0 +170777056822,214,0 +170777056870,214,0 +170777056920,214,0 +170777056968,213,0 +170777057015,213,0 +170777057063,213,0 +170777057113,213,0 +170777057162,213,0 +170777057210,214,0 +170777057260,214,0 +170777057308,214,0 +170777057356,214,0 +170777057404,214,0 +170777057452,214,0 +170777057500,214,0 +170777057547,214,0 +170777057595,214,0 +170777057643,215,0 +170777057693,214,0 +170777057741,214,0 +170777057788,213,0 +170777057838,213,0 +170777057886,213,0 +170777057934,213,0 +170777057982,213,0 +170777058031,213,0 +170777058081,213,0 +170777058130,214,0 +170777058180,214,0 +170777058228,214,0 +170777058276,214,0 +170777058325,214,0 +170777058373,214,0 +170777058423,214,0 +170777058472,214,0 +170777058520,214,0 +170777058568,214,0 +170777058618,213,0 +170777058667,213,0 +170777058715,213,0 +170777058763,213,0 +170777058811,213,0 +170777058859,213,0 +170777058908,213,0 +170777058956,213,0 +170777059004,214,0 +170777059052,214,0 +170777059100,214,0 +170777059148,214,0 +170777059197,214,0 +170777059245,214,0 +170777059293,214,0 +170777059341,214,0 +170777059388,214,0 +170777059436,213,0 +170777059484,213,0 +170777059532,213,0 +170777059580,213,0 +170777059628,213,0 +170777059676,213,0 +170777059724,213,0 +170777059773,214,0 +170777059823,214,0 +170777059871,214,0 +170777059919,214,0 +170777059967,214,0 +170777060016,214,0 +170777060064,214,0 +170777060112,215,0 +170777060160,214,0 +170777060208,214,0 +170777060256,214,0 +170777060306,213,0 +170777060353,213,0 +170777060401,213,0 +170777060451,214,0 +170777060499,214,0 +170777060548,214,0 +170777060596,214,0 +170777060644,214,0 +170777060692,214,0 +170777060740,214,0 +170777060788,214,0 +170777060836,214,0 +170777060884,214,0 +170777060932,215,0 +170777060981,214,0 +170777061029,214,0 +170777061079,214,0 +170777061128,213,0 +170777061176,213,0 +170777061224,213,0 +170777061272,213,0 +170777061320,213,0 +170777061370,214,0 +170777061418,214,0 +170777061466,214,0 +170777061514,214,0 +170777061562,214,0 +170777061610,214,0 +170777061657,214,0 +170777061705,214,0 +170777061755,214,0 +170777061803,214,0 +170777061852,214,0 +170777061900,214,0 +170777061950,213,0 +170777061998,213,0 +170777062046,213,0 +170777062094,213,0 +170777062142,213,0 +170777062190,213,0 +170777062238,214,0 +170777062286,213,0 +170777062333,214,0 +170777062381,214,0 +170777062429,214,0 +170777062477,214,0 +170777062527,214,0 +170777062575,214,0 +170777062623,214,0 +170777062671,214,0 +170777062718,214,0 +170777062766,213,0 +170777062816,213,0 +170777062863,213,0 +170777062913,213,0 +170777062961,213,0 +170777063009,214,0 +170777063057,214,0 +170777063106,214,0 +170777063154,214,0 +170777063202,214,0 +170777063249,214,0 +170777063297,214,0 +170777063345,214,0 +170777063393,214,0 +170777063441,214,0 +170777063489,214,0 +170777063538,214,0 +170777063586,213,0 +170777063634,213,0 +170777063683,213,0 +170777063731,213,0 +170777063779,213,0 +170777063827,213,0 +170777063875,214,0 +170777063922,214,0 +170777063970,214,0 +170777064018,214,0 +170777064066,214,0 +170777064113,214,0 +170777064161,214,0 +170777064209,214,0 +170777064257,214,0 +170777064305,214,0 +170777064353,214,0 +170777064401,213,0 +170777064448,213,0 +170777064496,213,0 +170777064544,213,0 +170777064592,214,0 +170777064640,213,0 +170777064688,214,0 +170777064736,214,0 +170777064785,214,0 +170777064833,214,0 +170777064881,214,0 +170777064929,214,0 +170777064976,214,0 +170777065024,214,0 +170777065072,214,0 +170777065120,215,0 +170777065168,214,0 +170777065216,214,0 +170777065264,213,0 +170777065312,213,0 +170777065359,213,0 +170777065407,213,0 +170777065455,214,0 +170777065503,214,0 +170777065551,214,0 +170777065599,214,0 +170777065647,214,0 +170777065695,214,0 +170777065744,214,0 +170777065792,214,0 +170777065840,215,0 +170777065889,214,0 +170777065937,214,0 +170777065985,214,0 +170777066033,214,0 +170777066081,213,0 +170777066130,213,0 +170777066178,213,0 +170777066226,213,0 +170777066274,214,0 +170777066324,214,0 +170777066372,214,0 +170777066420,214,0 +170777066467,214,0 +170777066517,214,0 +170777066565,214,0 +170777066612,214,0 +170777066660,214,0 +170777066708,214,0 +170777066756,214,0 +170777066804,214,0 +170777066852,215,0 +170777066900,214,0 +170777066948,213,0 +170777066996,213,0 +170777067044,213,0 +170777067093,213,0 +170777067141,214,0 +170777067189,214,0 +170777067237,214,0 +170777067285,214,0 +170777067333,214,0 +170777067383,214,0 +170777067430,214,0 +170777067480,214,0 +170777067528,214,0 +170777067576,214,0 +170777067624,214,0 +170777067672,214,0 +170777067721,213,0 +170777067769,213,0 +170777067817,213,0 +170777067865,213,0 +170777067913,213,0 +170777067962,213,0 +170777068012,213,0 +170777068061,214,0 +170777068109,213,0 +170777068157,214,0 +170777068205,214,0 +170777068254,214,0 +170777068304,214,0 +170777068352,214,0 +170777068400,214,0 +170777068448,214,0 +170777068496,214,0 +170777068544,213,0 +170777068593,213,0 +170777068641,213,0 +170777068689,213,0 +170777068737,213,0 +170777068785,213,0 +170777068835,213,0 +170777068884,213,0 +170777068932,214,0 +170777068980,213,0 +170777069029,214,0 +170777069077,214,0 +170777069127,214,0 +170777069175,214,0 +170777069223,214,0 +170777069272,214,0 +170777069321,214,0 +170777069369,214,0 +170777069417,213,0 +170777069465,213,0 +170777069515,213,0 +170777069563,213,0 +170777069612,213,0 +170777069660,213,0 +170777069708,214,0 +170777069756,214,0 +170777069804,214,0 +170777069851,214,0 +170777069899,214,0 +170777069947,214,0 +170777069997,214,0 +170777070046,215,0 +170777070094,214,0 +170777070142,214,0 +170777070190,214,0 +170777070239,213,0 +170777070287,213,0 +170777070335,213,0 +170777070383,214,0 +170777070432,213,0 +170777070480,214,0 +170777070528,214,0 +170777070578,214,0 +170777070627,214,0 +170777070677,214,0 +170777070725,214,0 +170777070773,214,0 +170777070821,214,0 +170777070869,215,0 +170777070917,214,0 +170777070965,214,0 +170777071013,214,0 +170777071061,213,0 +170777071108,213,0 +170777071156,213,0 +170777071206,214,0 +170777071254,214,0 +170777071302,214,0 +170777071351,214,0 +170777071401,214,0 +170777071449,214,0 +170777071497,214,0 +170777071545,214,0 +170777071592,214,0 +170777071642,215,0 +170777071690,215,0 +170777071738,214,0 +170777071786,215,0 +170777071834,214,0 +170777071882,213,0 +170777071929,213,0 +170777071977,214,0 +170777072027,214,0 +170777072076,214,0 +170777072126,214,0 +170777072175,214,0 +170777072223,214,0 +170777072271,214,0 +170777072319,214,0 +170777072369,214,0 +170777072416,215,0 +170777072464,215,0 +170777072514,215,0 +170777072562,215,0 +170777072611,214,0 +170777072659,214,0 +170777072707,213,0 +170777072755,213,0 +170777072805,213,0 +170777072853,214,0 +170777072901,214,0 +170777072949,214,0 +170777072997,214,0 +170777073046,214,0 +170777073094,214,0 +170777073142,214,0 +170777073190,214,0 +170777073238,215,0 +170777073286,215,0 +170777073334,215,0 +170777073382,214,0 +170777073429,215,0 +170777073477,214,0 +170777073525,213,0 +170777073573,213,0 +170777073623,213,0 +170777073670,213,0 +170777073720,214,0 +170777073769,214,0 +170777073817,214,0 +170777073865,214,0 +170777073915,214,0 +170777073962,214,0 +170777074012,214,0 +170777074060,215,0 +170777074108,214,0 +170777074156,215,0 +170777074204,214,0 +170777074252,214,0 +170777074300,214,0 +170777074347,213,0 +170777074395,213,0 +170777074445,213,0 +170777074493,213,0 +170777074542,213,0 +170777074592,213,0 +170777074640,214,0 +170777074689,214,0 +170777074737,214,0 +170777074787,214,0 +170777074834,214,0 +170777074882,214,0 +170777074932,214,0 +170777074981,214,0 +170777075029,214,0 +170777075079,214,0 +170777075127,215,0 +170777075176,213,0 +170777075226,213,0 +170777075275,213,0 +170777075323,213,0 +170777075371,213,0 +170777075419,213,0 +170777075467,213,0 +170777075515,214,0 +170777075563,214,0 +170777075610,214,0 +170777075658,214,0 +170777075706,214,0 +170777075754,214,0 +170777075804,214,0 +170777075852,214,0 +170777075901,214,0 +170777075950,214,0 +170777075998,213,0 +170777076048,213,0 +170777076097,213,0 +170777076145,213,0 +170777076193,213,0 +170777076241,213,0 +170777076289,214,0 +170777076337,213,0 +170777076385,214,0 +170777076432,214,0 +170777076480,214,0 +170777076528,214,0 +170777076576,214,0 +170777076624,214,0 +170777076672,214,0 +170777076720,214,0 +170777076768,214,0 +170777076816,214,0 +170777076865,213,0 +170777076913,213,0 +170777076961,213,0 +170777077009,213,0 +170777077057,213,0 +170777077106,213,0 +170777077154,213,0 +170777077202,214,0 +170777077252,214,0 +170777077301,214,0 +170777077351,214,0 +170777077400,214,0 +170777077450,214,0 +170777077499,214,0 +170777077547,214,0 +170777077595,214,0 +170777077643,214,0 +170777077691,213,0 +170777077739,213,0 +170777077787,213,0 +170777077834,213,0 +170777077882,214,0 +170777077932,214,0 +170777077981,214,0 +170777078029,214,0 +170777078077,214,0 +170777078127,215,0 +170777078175,214,0 +170777078222,214,0 +170777078270,215,0 +170777078320,215,0 +170777078368,214,0 +170777078416,214,0 +170777078464,214,0 +170777078512,213,0 +170777078561,213,0 +170777078609,214,0 +170777078657,213,0 +170777078705,214,0 +170777078753,214,0 +170777078801,214,0 +170777078850,214,0 +170777078898,214,0 +170777078948,214,0 +170777078996,214,0 +170777079045,215,0 +170777079095,215,0 +170777079143,215,0 +170777079191,214,0 +170777079239,214,0 +170777079288,214,0 +170777079336,214,0 +170777079384,214,0 +170777079432,214,0 +170777079480,214,0 +170777079529,214,0 +170777079577,214,0 +170777079625,214,0 +170777079673,214,0 +170777079723,215,0 +170777079770,215,0 +170777079820,215,0 +170777079868,215,0 +170777079915,214,0 +170777079963,214,0 +170777080011,214,0 +170777080059,214,0 +170777080107,214,0 +170777080155,214,0 +170777080203,214,0 +170777080251,213,0 +170777080299,214,0 +170777080347,214,0 +170777080396,214,0 +170777080444,214,0 +170777080494,214,0 +170777080542,214,0 +170777080589,214,0 +170777080637,214,0 +170777080685,214,0 +170777080733,214,0 +170777080781,214,0 +170777080829,214,0 +170777080877,214,0 +170777080925,214,0 +170777080972,213,0 +170777081020,213,0 +170777081068,213,0 +170777081116,213,0 +170777081164,213,0 +170777081212,213,0 +170777081260,213,0 +170777081307,214,0 +170777081355,214,0 +170777081405,214,0 +170777081453,214,0 +170777081502,214,0 +170777081550,214,0 +170777081598,214,0 +170777081646,215,0 +170777081695,214,0 +170777081743,214,0 +170777081791,213,0 +170777081839,213,0 +170777081887,213,0 +170777081934,213,0 +170777081982,213,0 +170777082030,214,0 +170777082078,214,0 +170777082125,214,0 +170777082173,214,0 +170777082221,214,0 +170777082269,214,0 +170777082318,214,0 +170777082366,214,0 +170777082414,214,0 +170777082462,214,0 +170777082511,215,0 +170777082559,214,0 +170777082607,214,0 +170777082655,214,0 +170777082703,214,0 +170777082752,213,0 +170777082800,214,0 +170777082849,214,0 +170777082897,214,0 +170777082945,213,0 +170777082993,214,0 +170777083041,214,0 +170777083089,214,0 +170777083137,214,0 +170777083185,215,0 +170777083233,214,0 +170777083280,215,0 +170777083328,215,0 +170777083376,214,0 +170777083426,214,0 +170777083473,213,0 +170777083521,213,0 +170777083569,213,0 +170777083617,213,0 +170777083665,214,0 +170777083713,214,0 +170777083761,214,0 +170777083810,214,0 +170777083860,214,0 +170777083909,214,0 +170777083957,214,0 +170777084005,214,0 +170777084054,214,0 +170777084102,215,0 +170777084150,214,0 +170777084200,214,0 +170777084248,214,0 +170777084297,213,0 +170777084345,213,0 +170777084393,213,0 +170777084443,214,0 +170777084492,213,0 +170777084542,214,0 +170777084590,214,0 +170777084639,214,0 +170777084689,214,0 +170777084738,214,0 +170777084788,214,0 +170777084836,214,0 +170777084884,214,0 +170777084932,215,0 +170777084980,214,0 +170777085029,215,0 +170777085077,215,0 +170777085125,214,0 +170777085173,213,0 +170777085221,213,0 +170777085269,213,0 +170777085317,213,0 +170777085366,214,0 +170777085414,214,0 +170777085462,214,0 +170777085510,214,0 +170777085560,214,0 +170777085608,214,0 +170777085657,214,0 +170777085705,214,0 +170777085755,214,0 +170777085804,214,0 +170777085852,214,0 +170777085900,215,0 +170777085948,214,0 +170777085996,214,0 +170777086045,214,0 +170777086093,213,0 +170777086142,213,0 +170777086192,213,0 +170777086240,213,0 +170777086288,213,0 +170777086336,213,0 +170777086384,213,0 +170777086432,213,0 +170777086479,214,0 +170777086527,214,0 +170777086577,214,0 +170777086625,214,0 +170777086673,214,0 +170777086722,214,0 +170777086770,214,0 +170777086820,215,0 +170777086869,214,0 +170777086917,214,0 +170777086967,214,0 +170777087015,214,0 +170777087063,213,0 +170777087110,213,0 +170777087160,213,0 +170777087208,213,0 +170777087257,213,0 +170777087305,213,0 +170777087353,213,0 +170777087402,213,0 +170777087450,214,0 +170777087500,214,0 +170777087548,214,0 +170777087597,214,0 +170777087645,214,0 +170777087693,214,0 +170777087741,214,0 +170777087791,214,0 +170777087838,215,0 +170777087886,214,0 +170777087934,214,0 +170777087982,213,0 +170777088032,213,0 +170777088080,213,0 +170777088129,213,0 +170777088177,213,0 +170777088227,213,0 +170777088276,213,0 +170777088326,213,0 +170777088374,213,0 +170777088422,213,0 +170777088471,213,0 +170777088519,214,0 +170777088569,214,0 +170777088617,214,0 +170777088666,214,0 +170777088714,214,0 +170777088762,214,0 +170777088811,214,0 +170777088861,214,0 +170777088909,213,0 +170777088957,213,0 +170777089005,213,0 +170777089054,213,0 +170777089102,213,0 +170777089152,213,0 +170777089200,213,0 +170777089248,213,0 +170777089297,213,0 +170777089345,213,0 +170777089393,214,0 +170777089442,214,0 +170777089490,214,0 +170777089538,214,0 +170777089586,214,0 +170777089636,214,0 +170777089684,214,0 +170777089732,214,0 +170777089779,214,0 +170777089829,213,0 +170777089877,213,0 +170777089925,213,0 +170777089974,213,0 +170777090024,213,0 +170777090072,213,0 +170777090120,213,0 +170777090169,213,0 +170777090219,213,0 +170777090267,214,0 +170777090315,214,0 +170777090363,214,0 +170777090412,214,0 +170777090460,214,0 +170777090510,214,0 +170777090558,214,0 +170777090605,214,0 +170777090653,214,0 +170777090701,214,0 +170777090749,213,0 +170777090797,213,0 +170777090845,213,0 +170777090893,213,0 +170777090942,214,0 +170777090990,213,0 +170777091038,214,0 +170777091086,213,0 +170777091134,213,0 +170777091182,214,0 +170777091232,214,0 +170777091280,214,0 +170777091328,214,0 +170777091376,214,0 +170777091426,214,0 +170777091474,214,0 +170777091522,214,0 +170777091571,214,0 +170777091621,214,0 +170777091669,214,0 +170777091716,213,0 +170777091764,213,0 +170777091814,213,0 +170777091862,214,0 +170777091910,213,0 +170777091958,213,0 +170777092005,214,0 +170777092055,214,0 +170777092103,214,0 +170777092151,214,0 +170777092200,214,0 +170777092248,214,0 +170777092296,215,0 +170777092344,214,0 +170777092393,215,0 +170777092443,214,0 +170777092491,214,0 +170777092539,214,0 +170777092587,214,0 +170777092635,213,0 +170777092684,213,0 +170777092734,213,0 +170777092782,213,0 +170777092830,214,0 +170777092879,214,0 +170777092927,214,0 +170777092975,214,0 +170777093023,214,0 +170777093073,214,0 +170777093120,215,0 +170777093168,214,0 +170777093216,214,0 +170777093264,214,0 +170777093312,214,0 +170777093362,214,0 +170777093409,214,0 +170777093457,214,0 +170777093507,214,0 +170777093555,214,0 +170777093604,213,0 +170777093652,213,0 +170777093702,214,0 +170777093751,214,0 +170777093799,214,0 +170777093849,214,0 +170777093898,214,0 +170777093946,214,0 +170777093994,214,0 +170777094042,214,0 +170777094091,214,0 +170777094141,214,0 +170777094189,214,0 +170777094237,214,0 +170777094285,214,0 +170777094332,214,0 +170777094380,214,0 +170777094428,214,0 +170777094476,213,0 +170777094524,213,0 +170777094572,213,0 +170777094619,213,0 +170777094667,213,0 +170777094715,214,0 +170777094763,214,0 +170777094811,214,0 +170777094861,214,0 +170777094908,214,0 +170777094956,214,0 +170777095004,214,0 +170777095052,214,0 +170777095100,214,0 +170777095148,214,0 +170777095196,214,0 +170777095243,214,0 +170777095291,214,0 +170777095339,214,0 +170777095387,214,0 +170777095435,213,0 +170777095483,213,0 +170777095531,213,0 +170777095579,213,0 +170777095628,213,0 +170777095676,214,0 +170777095726,214,0 +170777095774,214,0 +170777095822,214,0 +170777095871,214,0 +170777095919,214,0 +170777095967,214,0 +170777096017,214,0 +170777096064,214,0 +170777096112,214,0 +170777096162,214,0 +170777096211,214,0 +170777096261,214,0 +170777096309,214,0 +170777096357,213,0 +170777096405,213,0 +170777096453,213,0 +170777096501,213,0 +170777096549,213,0 +170777096596,213,0 +170777096644,214,0 +170777096692,214,0 +170777096740,214,0 +170777096790,214,0 +170777096838,214,0 +170777096886,214,0 +170777096934,214,0 +170777096982,214,0 +170777097030,214,0 +170777097079,214,0 +170777097127,214,0 +170777097177,214,0 +170777097224,214,0 +170777097272,213,0 +170777097322,213,0 +170777097371,213,0 +170777097421,213,0 +170777097469,213,0 +170777097516,213,0 +170777097564,213,0 +170777097612,213,0 +170777097660,214,0 +170777097708,214,0 +170777097758,214,0 +170777097806,214,0 +170777097854,214,0 +170777097901,214,0 +170777097949,214,0 +170777097997,214,0 +170777098045,214,0 +170777098093,214,0 +170777098141,214,0 +170777098189,213,0 +170777098236,213,0 +170777098284,213,0 +170777098332,213,0 +170777098382,213,0 +170777098430,213,0 +170777098478,213,0 +170777098527,213,0 +170777098575,214,0 +170777098623,214,0 +170777098672,213,0 +170777098720,214,0 +170777098768,214,0 +170777098816,214,0 +170777098864,214,0 +170777098912,214,0 +170777098960,214,0 +170777099008,214,0 +170777099056,214,0 +170777099104,214,0 +170777099152,213,0 +170777099200,213,0 +170777099248,213,0 +170777099297,213,0 +170777099345,213,0 +170777099393,213,0 +170777099441,213,0 +170777099489,213,0 +170777099537,214,0 +170777099585,214,0 +170777099633,214,0 +170777099682,214,0 +170777099732,214,0 +170777099780,214,0 +170777099829,214,0 +170777099879,214,0 +170777099927,214,0 +170777099975,214,0 +170777100023,214,0 +170777100070,213,0 +170777100118,213,0 +170777100166,213,0 +170777100216,213,0 +170777100264,213,0 +170777100312,213,0 +170777100360,213,0 +170777100408,213,0 +170777100456,214,0 +170777100503,214,0 +170777100551,214,0 +170777100599,214,0 +170777100647,214,0 +170777100695,214,0 +170777100744,214,0 +170777100792,214,0 +170777100842,214,0 +170777100891,214,0 +170777100941,214,0 +170777100989,213,0 +170777101038,213,0 +170777101086,213,0 +170777101136,213,0 +170777101183,213,0 +170777101231,213,0 +170777101279,213,0 +170777101327,213,0 +170777101376,213,0 +170777101424,213,0 +170777101472,213,0 +170777101520,213,0 +170777101568,214,0 +170777101616,214,0 +170777101665,214,0 +170777101715,214,0 +170777101764,214,0 +170777101814,214,0 +170777101863,214,0 +170777101911,213,0 +170777101961,213,0 +170777102009,213,0 +170777102056,212,0 +170777102106,213,0 +170777102154,213,0 +170777102202,213,0 +170777102250,213,0 +170777102299,213,0 +170777102349,213,0 +170777102397,213,0 +170777102444,213,0 +170777102492,213,0 +170777102540,213,0 +170777102588,214,0 +170777102636,214,0 +170777102684,214,0 +170777102734,214,0 +170777102782,216,0 +170777102831,214,0 +170777102881,213,0 +170777102928,213,0 +170777102976,213,0 +170777103024,213,0 +170777103072,213,0 +170777103122,213,0 +170777103169,213,0 +170777103217,213,0 +170777103265,213,0 +170777103315,213,0 +170777103363,213,0 +170777103411,213,0 +170777103460,214,0 +170777103510,214,0 +170777103559,214,0 +170777103607,214,0 +170777103655,214,0 +170777103703,214,0 +170777103751,213,0 +170777103799,213,0 +170777103847,213,0 +170777103896,213,0 +170777103944,213,0 +170777103992,213,0 +170777104040,213,0 +170777104088,213,0 +170777104137,213,0 +170777104185,213,0 +170777104235,213,0 +170777104284,213,0 +170777104334,214,0 +170777104383,214,0 +170777104433,214,0 +170777104482,214,0 +170777104530,214,0 +170777104578,214,0 +170777104626,214,0 +170777104674,214,0 +170777104722,213,0 +170777104770,213,0 +170777104819,213,0 +170777104867,213,0 +170777104915,213,0 +170777104963,213,0 +170777105010,213,0 +170777105058,213,0 +170777105108,213,0 +170777105156,213,0 +170777105203,214,0 +170777105251,214,0 +170777105299,214,0 +170777105347,214,0 +170777105396,214,0 +170777105444,214,0 +170777105492,214,0 +170777105540,214,0 +170777105589,214,0 +170777105637,213,0 +170777105687,213,0 +170777105736,213,0 +170777105784,213,0 +170777105834,213,0 +170777105882,213,0 +170777105930,213,0 +170777105977,213,0 +170777106027,213,0 +170777106075,213,0 +170777106123,214,0 +170777106170,214,0 +170777106218,214,0 +170777106266,214,0 +170777106314,214,0 +170777106362,214,0 +170777106412,214,0 +170777106460,214,0 +170777106509,214,0 +170777106557,213,0 +170777106605,213,0 +170777106654,213,0 +170777106702,213,0 +170777106750,213,0 +170777106798,213,0 +170777106848,213,0 +170777106897,214,0 +170777106947,214,0 +170777106994,214,0 +170777107042,214,0 +170777107090,214,0 +170777107140,214,0 +170777107188,214,0 +170777107236,214,0 +170777107284,214,0 +170777107332,214,0 +170777107380,214,0 +170777107427,214,0 +170777107475,213,0 +170777107523,213,0 +170777107573,213,0 +170777107620,213,0 +170777107668,213,0 +170777107718,213,0 +170777107766,213,0 +170777107814,213,0 +170777107862,213,0 +170777107910,213,0 +170777107958,213,0 +170777108006,213,0 +170777108054,213,0 +170777108103,214,0 +170777108153,214,0 +170777108200,214,0 +170777108250,214,0 +170777108299,214,0 +170777108347,214,0 +170777108395,214,0 +170777108443,213,0 +170777108491,213,0 +170777108539,213,0 +170777108587,213,0 +170777108635,213,0 +170777108682,213,0 +170777108732,213,0 +170777108780,213,0 +170777108828,213,0 +170777108877,213,0 +170777108927,213,0 +170777108975,214,0 +170777109023,214,0 +170777109070,214,0 +170777109118,213,0 +170777109168,214,0 +170777109215,214,0 +170777109263,214,0 +170777109311,214,0 +170777109359,213,0 +170777109407,213,0 +170777109455,213,0 +170777109504,213,0 +170777109552,213,0 +170777109600,213,0 +170777109648,213,0 +170777109695,213,0 +170777109743,213,0 +170777109791,213,0 +170777109839,213,0 +170777109887,214,0 +170777109935,214,0 +170777109982,214,0 +170777110030,214,0 +170777110078,214,0 +170777110126,214,0 +170777110174,214,0 +170777110221,214,0 +170777110269,213,0 +170777110317,212,0 +170777110365,213,0 +170777110413,213,0 +170777110460,212,0 +170777110508,213,0 +170777110556,213,0 +170777110606,213,0 +170777110655,213,0 +170777110703,213,0 +170777110751,213,0 +170777110799,213,0 +170777110846,213,0 +170777110894,213,0 +170777110942,214,0 +170777110990,214,0 +170777111038,214,0 +170777111086,213,0 +170777111133,214,0 +170777111181,214,0 +170777111229,213,0 +170777111277,213,0 +170777111325,213,0 +170777111373,213,0 +170777111421,213,0 +170777111469,213,0 +170777111517,213,0 +170777111565,213,0 +170777111613,213,0 +170777111663,213,0 +170777111711,213,0 +170777111758,213,0 +170777111808,213,0 +170777111856,214,0 +170777111904,214,0 +170777111952,214,0 +170777112000,214,0 +170777112048,214,0 +170777112096,214,0 +170777112143,213,0 +170777112191,213,0 +170777112239,213,0 +170777112289,213,0 +170777112337,213,0 +170777112385,213,0 +170777112433,213,0 +170777112482,213,0 +170777112530,213,0 +170777112578,213,0 +170777112627,213,0 +170777112675,213,0 +170777112724,213,0 +170777112772,214,0 +170777112820,214,0 +170777112868,214,0 +170777112916,214,0 +170777112965,214,0 +170777113013,214,0 +170777113061,213,0 +170777113109,213,0 +170777113157,213,0 +170777113204,213,0 +170777113252,213,0 +170777113300,213,0 +170777113348,213,0 +170777113396,213,0 +170777113444,213,0 +170777113491,213,0 +170777113539,214,0 +170777113587,213,0 +170777113635,214,0 +170777113683,214,0 +170777113732,214,0 +170777113780,214,0 +170777113828,214,0 +170777113876,214,0 +170777113924,214,0 +170777113972,214,0 +170777114019,213,0 +170777114067,213,0 +170777114117,213,0 +170777114166,214,0 +170777114216,213,0 +170777114264,213,0 +170777114312,213,0 +170777114361,214,0 +170777114409,214,0 +170777114459,214,0 +170777114507,214,0 +170777114555,214,0 +170777114604,214,0 +170777114652,214,0 +170777114700,214,0 +170777114748,214,0 +170777114798,215,0 +170777114846,214,0 +170777114895,214,0 +170777114943,213,0 +170777114991,213,0 +170777115039,213,0 +170777115087,213,0 +170777115134,213,0 +170777115182,213,0 +170777115230,213,0 +170777115278,214,0 +170777115326,214,0 +170777115374,214,0 +170777115422,214,0 +170777115470,214,0 +170777115518,214,0 +170777115566,214,0 +170777115615,214,0 +170777115665,215,0 +170777115713,214,0 +170777115760,214,0 +170777115808,214,0 +170777115856,213,0 +170777115904,213,0 +170777115952,213,0 +170777116000,213,0 +170777116048,213,0 +170777116098,213,0 +170777116146,213,0 +170777116194,214,0 +170777116243,214,0 +170777116292,214,0 +170777116340,214,0 +170777116388,214,0 +170777116436,214,0 +170777116484,214,0 +170777116532,214,0 +170777116580,214,0 +170777116629,215,0 +170777116679,214,0 +170777116726,214,0 +170777116774,213,0 +170777116822,213,0 +170777116872,213,0 +170777116920,213,0 +170777116968,213,0 +170777117016,213,0 +170777117064,213,0 +170777117112,213,0 +170777117159,213,0 +170777117209,213,0 +170777117257,214,0 +170777117306,214,0 +170777117354,214,0 +170777117404,214,0 +170777117452,214,0 +170777117500,214,0 +170777117548,214,0 +170777117597,214,0 +170777117645,214,0 +170777117693,214,0 +170777117741,213,0 +170777117789,213,0 +170777117837,213,0 +170777117886,213,0 +170777117936,213,0 +170777117985,213,0 +170777118035,213,0 +170777118083,213,0 +170777118131,214,0 +170777118178,214,0 +170777118226,214,0 +170777118276,214,0 +170777118324,214,0 +170777118372,214,0 +170777118420,214,0 +170777118467,214,0 +170777118515,214,0 +170777118563,214,0 +170777118611,214,0 +170777118659,213,0 +170777118709,213,0 +170777118757,213,0 +170777118806,213,0 +170777118854,213,0 +170777118902,213,0 +170777118950,214,0 +170777118998,214,0 +170777119046,214,0 +170777119094,214,0 +170777119143,214,0 +170777119192,214,0 +170777119242,214,0 +170777119290,214,0 +170777119338,214,0 +170777119387,214,0 +170777119435,214,0 +170777119485,214,0 +170777119532,214,0 +170777119581,213,0 +170777119628,213,0 +170777119678,213,0 +170777119727,213,0 +170777119775,213,0 +170777119823,213,0 +170777119871,214,0 +170777119919,214,0 +170777119969,214,0 +170777120018,214,0 +170777120067,214,0 +170777120117,214,0 +170777120165,214,0 +170777120213,214,0 +170777120261,214,0 +170777120309,214,0 +170777120357,214,0 +170777120406,214,0 +170777120454,214,0 +170777120502,213,0 +170777120550,213,0 +170777120598,213,0 +170777120646,213,0 +170777120694,213,0 +170777120742,213,0 +170777120791,213,0 +170777120839,214,0 +170777120887,213,0 +170777120935,214,0 +170777120983,214,0 +170777121031,214,0 +170777121079,214,0 +170777121127,214,0 +170777121177,214,0 +170777121224,214,0 +170777121272,214,0 +170777121320,214,0 +170777121368,214,0 +170777121418,214,0 +170777121466,213,0 +170777121514,213,0 +170777121562,213,0 +170777121609,213,0 +170777121657,213,0 +170777121705,213,0 +170777121753,213,0 +170777121801,213,0 +170777121849,214,0 +170777121898,214,0 +170777121946,214,0 +170777121994,214,0 +170777122044,214,0 +170777122093,214,0 +170777122141,214,0 +170777122191,214,0 +170777122239,214,0 +170777122288,214,0 +170777122336,214,0 +170777122386,213,0 +170777122433,213,0 +170777122481,213,0 +170777122529,213,0 +170777122577,213,0 +170777122627,213,0 +170777122676,213,0 +170777122724,213,0 +170777122772,213,0 +170777122820,213,0 +170777122868,214,0 +170777122917,214,0 +170777122967,214,0 +170777123015,214,0 +170777123063,214,0 +170777123112,214,0 +170777123160,214,0 +170777123208,214,0 +170777123256,214,0 +170777123306,213,0 +170777123353,213,0 +170777123401,213,0 +170777123449,212,0 +170777123499,213,0 +170777123547,213,0 +170777123594,213,0 +170777123642,213,0 +170777123690,213,0 +170777123738,213,0 +170777123788,213,0 +170777123837,213,0 +170777123885,213,0 +170777123933,213,0 +170777123981,213,0 +170777124028,213,0 +170777124076,213,0 +170777124124,213,0 +170777124172,213,0 +170777124220,214,0 +170777124268,214,0 +170777124318,214,0 +170777124367,214,0 +170777124417,214,0 +170777124464,214,0 +170777124514,214,0 +170777124562,214,0 +170777124610,214,0 +170777124658,214,0 +170777124707,213,0 +170777124755,213,0 +170777124803,213,0 +170777124851,213,0 +170777124899,213,0 +170777124948,213,0 +170777124996,213,0 +170777125044,213,0 +170777125092,213,0 +170777125140,214,0 +170777125187,213,0 +170777125237,213,0 +170777125285,214,0 +170777125334,214,0 +170777125382,214,0 +170777125430,214,0 +170777125478,214,0 +170777125526,214,0 +170777125574,214,0 +170777125622,213,0 +170777125670,213,0 +170777125717,213,0 +170777125767,213,0 +170777125815,213,0 +170777125863,213,0 +170777125911,213,0 +170777125959,213,0 +170777126008,213,0 +170777126056,213,0 +170777126104,214,0 +170777126151,214,0 +170777126199,214,0 +170777126247,214,0 +170777126295,214,0 +170777126343,214,0 +170777126392,214,0 +170777126440,214,0 +170777126489,214,0 +170777126537,213,0 +170777126585,213,0 +170777126635,213,0 +170777126683,213,0 +170777126731,213,0 +170777126778,213,0 +170777126826,213,0 +170777126876,213,0 +170777126924,213,0 +170777126973,213,0 +170777127021,213,0 +170777127069,213,0 +170777127117,213,0 +170777127165,213,0 +170777127213,214,0 +170777127260,214,0 +170777127308,214,0 +170777127358,214,0 +170777127407,214,0 +170777127457,213,0 +170777127506,213,0 +170777127555,213,0 +170777127605,213,0 +170777127653,213,0 +170777127701,213,0 +170777127749,213,0 +170777127797,213,0 +170777127845,213,0 +170777127894,213,0 +170777127944,213,0 +170777127993,213,0 +170777128041,213,0 +170777128089,214,0 +170777128137,214,0 +170777128185,214,0 +170777128234,214,0 +170777128284,214,0 +170777128332,214,0 +170777128380,214,0 +170777128427,213,0 +170777128475,212,0 +170777128523,213,0 +170777128571,213,0 +170777128621,213,0 +170777128670,213,0 +170777128719,213,0 +170777128767,213,0 +170777128817,213,0 +170777128866,213,0 +170777128916,213,0 +170777128964,213,0 +170777129013,213,0 +170777129062,213,0 +170777129110,214,0 +170777129158,213,0 +170777129206,214,0 +170777129254,214,0 +170777129303,214,0 +170777129351,213,0 +170777129399,212,0 +170777129447,213,0 +170777129495,213,0 +170777129544,213,0 +170777129594,213,0 +170777129643,213,0 +170777129693,213,0 +170777129742,213,0 +170777129790,213,0 +170777129838,213,0 +170777129887,213,0 +170777129935,214,0 +170777129983,214,0 +170777130033,214,0 +170777130080,214,0 +170777130128,214,0 +170777130176,214,0 +170777130225,214,0 +170777130273,213,0 +170777130323,213,0 +170777130371,213,0 +170777130419,213,0 +170777130467,213,0 +170777130514,213,0 +170777130562,213,0 +170777130610,213,0 +170777130658,213,0 +170777130706,213,0 +170777130754,213,0 +170777130801,213,0 +170777130849,213,0 +170777130897,214,0 +170777130945,214,0 +170777130993,214,0 +170777131040,214,0 +170777131088,214,0 +170777131136,214,0 +170777131184,213,0 +170777131232,213,0 +170777131280,213,0 +170777131329,213,0 +170777131379,213,0 +170777131428,213,0 +170777131478,213,0 +170777131526,213,0 +170777131574,213,0 +170777131623,213,0 +170777131671,213,0 +170777131719,213,0 +170777131767,213,0 +170777131815,214,0 +170777131863,214,0 +170777131911,214,0 +170777131959,214,0 +170777132008,214,0 +170777132056,214,0 +170777132104,213,0 +170777132153,213,0 +170777132201,213,0 +170777132251,213,0 +170777132300,213,0 +170777132348,213,0 +170777132396,213,0 +170777132444,213,0 +170777132492,213,0 +170777132540,213,0 +170777132588,213,0 +170777132637,213,0 +170777132685,214,0 +170777132733,214,0 +170777132781,214,0 +170777132830,214,0 +170777132878,214,0 +170777132926,214,0 +170777132974,214,0 +170777133024,214,0 +170777133073,213,0 +170777133121,213,0 +170777133171,213,0 +170777133219,213,0 +170777133267,213,0 +170777133316,213,0 +170777133364,213,0 +170777133413,213,0 +170777133461,213,0 +170777133509,213,0 +170777133559,213,0 +170777133607,214,0 +170777133655,214,0 +170777133703,214,0 +170777133751,214,0 +170777133799,214,0 +170777133846,214,0 +170777133894,214,0 +170777133944,214,0 +170777133993,213,0 +170777134041,213,0 +170777134091,213,0 +170777134139,213,0 +170777134188,213,0 +170777134236,213,0 +170777134286,213,0 +170777134335,213,0 +170777134385,213,0 +170777134433,213,0 +170777134481,213,0 +170777134530,213,0 +170777134578,214,0 +170777134628,214,0 +170777134677,214,0 +170777134727,214,0 +170777134776,214,0 +170777134826,214,0 +170777134875,214,0 +170777134923,213,0 +170777134971,213,0 +170777135019,213,0 +170777135067,213,0 +170777135115,213,0 +170777135165,213,0 +170777135214,213,0 +170777135262,213,0 +170777135310,214,0 +170777135358,214,0 +170777135406,214,0 +170777135456,214,0 +170777135503,214,0 +170777135551,214,0 +170777135599,214,0 +170777135649,214,0 +170777135697,214,0 +170777135747,214,0 +170777135796,214,0 +170777135844,213,0 +170777135892,213,0 +170777135940,213,0 +170777135988,213,0 +170777136036,213,0 +170777136085,213,0 +170777136133,214,0 +170777136183,213,0 +170777136231,214,0 +170777136279,214,0 +170777136328,214,0 +170777136378,214,0 +170777136427,214,0 +170777136475,214,0 +170777136525,214,0 +170777136573,214,0 +170777136622,215,0 +170777136670,214,0 +170777136718,214,0 +170777136766,213,0 +170777136814,213,0 +170777136863,213,0 +170777136913,213,0 +170777136961,213,0 +170777137009,213,0 +170777137057,214,0 +170777137105,213,0 +170777137154,214,0 +170777137202,214,0 +170777137250,214,0 +170777137298,214,0 +170777137346,214,0 +170777137394,214,0 +170777137442,214,0 +170777137491,214,0 +170777137541,214,0 +170777137590,215,0 +170777137638,214,0 +170777137686,214,0 +170777137736,213,0 +170777137785,213,0 +170777137833,213,0 +170777137881,213,0 +170777137931,213,0 +170777137980,213,0 +170777138028,213,0 +170777138076,213,0 +170777138124,214,0 +170777138172,214,0 +170777138220,214,0 +170777138267,214,0 +170777138315,214,0 +170777138363,214,0 +170777138411,214,0 +170777138459,214,0 +170777138508,214,0 +170777138556,214,0 +170777138604,214,0 +170777138652,213,0 +170777138700,213,0 +170777138748,213,0 +170777138796,213,0 +170777138846,213,0 +170777138895,213,0 +170777138945,213,0 +170777138992,213,0 +170777139040,213,0 +170777139088,213,0 +170777139136,213,0 +170777139186,214,0 +170777139234,214,0 +170777139281,214,0 +170777139329,214,0 +170777139377,214,0 +170777139425,214,0 +170777139473,214,0 +170777139522,214,0 +170777139570,213,0 +170777139618,213,0 +170777139666,213,0 +170777139714,213,0 +170777139761,213,0 +170777139811,213,0 +170777139859,213,0 +170777139907,213,0 +170777139954,213,0 +170777140002,213,0 +170777140050,213,0 +170777140098,213,0 +170777140147,214,0 +170777140195,214,0 +170777140245,214,0 +170777140293,214,0 +170777140341,214,0 +170777140389,214,0 +170777140436,214,0 +170777140484,213,0 +170777140532,212,0 +170777140580,213,0 +170777140628,212,0 +170777140676,213,0 +170777140724,213,0 +170777140773,213,0 +170777140821,213,0 +170777140869,213,0 +170777140917,213,0 +170777140964,213,0 +170777141012,214,0 +170777141060,214,0 +170777141110,214,0 +170777141157,214,0 +170777141207,214,0 +170777141255,214,0 +170777141303,214,0 +170777141352,214,0 +170777141400,214,0 +170777141448,213,0 +170777141498,213,0 +170777141547,213,0 +170777141595,213,0 +170777141643,213,0 +170777141691,213,0 +170777141739,214,0 +170777141787,214,0 +170777141835,214,0 +170777141884,214,0 +170777141934,214,0 +170777141982,214,0 +170777142031,214,0 +170777142081,214,0 +170777142130,214,0 +170777142178,214,0 +170777142226,214,0 +170777142274,214,0 +170777142322,214,0 +170777142371,213,0 +170777142421,213,0 +170777142470,213,0 +170777142518,213,0 +170777142566,213,0 +170777142614,214,0 +170777142662,214,0 +170777142712,214,0 +170777142760,214,0 +170777142809,214,0 +170777142857,214,0 +170777142906,214,0 +170777142954,214,0 +170777143002,214,0 +170777143050,214,0 +170777143098,215,0 +170777143145,214,0 +170777143193,215,0 +170777143241,214,0 +170777143291,213,0 +170777143338,213,0 +170777143386,213,0 +170777143436,213,0 +170777143483,213,0 +170777143533,213,0 +170777143581,213,0 +170777143629,213,0 +170777143676,213,0 +170777143724,214,0 +170777143772,213,0 +170777143820,214,0 +170777143868,214,0 +170777143916,214,0 +170777143965,214,0 +170777144013,214,0 +170777144061,214,0 +170777144109,214,0 +170777144158,214,0 +170777144206,213,0 +170777144254,213,0 +170777144301,213,0 +170777144349,213,0 +170777144397,213,0 +170777144445,213,0 +170777144492,213,0 +170777144542,213,0 +170777144590,213,0 +170777144637,213,0 +170777144685,214,0 +170777144733,213,0 +170777144781,214,0 +170777144829,214,0 +170777144877,214,0 +170777144927,214,0 +170777144976,214,0 +170777145026,214,0 +170777145074,214,0 +170777145123,214,0 +170777145171,213,0 +170777145221,213,0 +170777145270,213,0 +170777145318,213,0 +170777145366,213,0 +170777145416,213,0 +170777145465,213,0 +170777145515,213,0 +170777145563,213,0 +170777145612,213,0 +170777145660,214,0 +170777145709,214,0 +170777145757,214,0 +170777145805,214,0 +170777145855,214,0 +170777145903,214,0 +170777145952,214,0 +170777146000,214,0 +170777146048,214,0 +170777146096,213,0 +170777146144,213,0 +170777146192,213,0 +170777146240,213,0 +170777146288,213,0 +170777146336,213,0 +170777146385,213,0 +170777146433,213,0 +170777146483,213,0 +170777146531,213,0 +170777146578,213,0 +170777146626,214,0 +170777146674,214,0 +170777146722,214,0 +170777146770,214,0 +170777146818,214,0 +170777146866,214,0 +170777146914,214,0 +170777146962,214,0 +170777147010,213,0 +170777147058,213,0 +170777147107,213,0 +170777147157,213,0 +170777147205,213,0 +170777147253,213,0 +170777147301,213,0 +170777147349,213,0 +170777147398,213,0 +170777147446,213,0 +170777147495,214,0 +170777147545,214,0 +170777147593,214,0 +170777147642,214,0 +170777147692,214,0 +170777147740,214,0 +170777147788,214,0 +170777147836,214,0 +170777147885,214,0 +170777147935,213,0 +170777147983,213,0 +170777148031,213,0 +170777148079,213,0 +170777148128,213,0 +170777148176,213,0 +170777148224,213,0 +170777148272,213,0 +170777148320,213,0 +170777148368,213,0 +170777148417,214,0 +170777148465,214,0 +170777148513,214,0 +170777148561,214,0 +170777148609,214,0 +170777148657,214,0 +170777148705,214,0 +170777148755,214,0 +170777148803,214,0 +170777148850,214,0 +170777148898,213,0 +170777148946,213,0 +170777148996,213,0 +170777149044,213,0 +170777149092,213,0 +170777149140,213,0 +170777149187,213,0 +170777149235,213,0 +170777149283,213,0 +170777149333,213,0 +170777149381,214,0 +170777149430,214,0 +170777149478,214,0 +170777149528,214,0 +170777149578,214,0 +170777149627,214,0 +170777149675,214,0 +170777149725,215,0 +170777149772,214,0 +170777149822,213,0 +170777149870,213,0 +170777149918,213,0 +170777149967,213,0 +170777150017,213,0 +170777150066,213,0 +170777150114,213,0 +170777150162,213,0 +170777150210,214,0 +170777150260,214,0 +170777150309,214,0 +170777150357,214,0 +170777150407,214,0 +170777150456,214,0 +170777150504,214,0 +170777150552,214,0 +170777150602,214,0 +170777150650,214,0 +170777150698,214,0 +170777150746,213,0 +170777150795,213,0 +170777150843,213,0 +170777150893,213,0 +170777150940,213,0 +170777150988,213,0 +170777151038,214,0 +170777151086,213,0 +170777151134,214,0 +170777151182,214,0 +170777151231,214,0 +170777151279,214,0 +170777151327,214,0 +170777151375,214,0 +170777151423,214,0 +170777151472,214,0 +170777151520,215,0 +170777151568,214,0 +170777151616,214,0 +170777151666,213,0 +170777151714,213,0 +170777151762,213,0 +170777151810,213,0 +170777151857,213,0 +170777151905,213,0 +170777151955,213,0 +170777152003,213,0 +170777152052,214,0 +170777152102,214,0 +170777152150,214,0 +170777152198,214,0 +170777152246,214,0 +170777152294,214,0 +170777152343,214,0 +170777152391,214,0 +170777152441,214,0 +170777152490,214,0 +170777152538,214,0 +170777152586,213,0 +170777152635,213,0 +170777152683,213,0 +170777152731,213,0 +170777152779,213,0 +170777152827,213,0 +170777152875,213,0 +170777152923,213,0 +170777152971,213,0 +170777153019,213,0 +170777153067,214,0 +170777153116,214,0 +170777153165,214,0 +170777153213,214,0 +170777153261,214,0 +170777153309,214,0 +170777153357,214,0 +170777153405,214,0 +170777153452,214,0 +170777153500,213,0 +170777153548,213,0 +170777153596,213,0 +170777153644,213,0 +170777153692,213,0 +170777153741,213,0 +170777153789,213,0 +170777153837,213,0 +170777153886,213,0 +170777153936,213,0 +170777153985,213,0 +170777154035,213,0 +170777154083,214,0 +170777154131,214,0 +170777154179,214,0 +170777154228,214,0 +170777154278,214,0 +170777154326,214,0 +170777154374,214,0 +170777154423,214,0 +170777154473,213,0 +170777154521,213,0 +170777154569,213,0 +170777154618,213,0 +170777154666,213,0 +170777154715,213,0 +170777154765,213,0 +170777154813,213,0 +170777154862,213,0 +170777154910,214,0 +170777154958,213,0 +170777155008,214,0 +170777155056,214,0 +170777155104,214,0 +170777155151,214,0 +170777155199,214,0 +170777155249,214,0 +170777155297,214,0 +170777155346,214,0 +170777155394,213,0 +170777155443,213,0 +170777155491,213,0 +170777155541,213,0 +170777155589,213,0 +170777155638,213,0 +170777155686,213,0 +170777155734,213,0 +170777155782,213,0 +170777155830,213,0 +170777155878,214,0 +170777155926,213,0 +170777155974,214,0 +170777156023,214,0 +170777156073,214,0 +170777156122,214,0 +170777156170,214,0 +170777156218,214,0 +170777156268,214,0 +170777156316,213,0 +170777156364,213,0 +170777156412,213,0 +170777156461,213,0 +170777156511,213,0 +170777156559,213,0 +170777156606,213,0 +170777156654,213,0 +170777156704,213,0 +170777156752,213,0 +170777156801,213,0 +170777156849,214,0 +170777156897,214,0 +170777156945,214,0 +170777156993,214,0 +170777157042,214,0 +170777157092,214,0 +170777157141,214,0 +170777157191,214,0 +170777157240,213,0 +170777157290,213,0 +170777157338,213,0 +170777157387,213,0 +170777157437,213,0 +170777157485,213,0 +170777157533,213,0 +170777157581,213,0 +170777157630,213,0 +170777157678,213,0 +170777157728,214,0 +170777157777,214,0 +170777157825,214,0 +170777157873,214,0 +170777157921,214,0 +170777157969,214,0 +170777158017,214,0 +170777158065,214,0 +170777158113,214,0 +170777158161,213,0 +170777158210,213,0 +170777158260,213,0 +170777158308,213,0 +170777158355,213,0 +170777158403,213,0 +170777158451,213,0 +170777158499,213,0 +170777158549,213,0 +170777158597,214,0 +170777158646,214,0 +170777158696,214,0 +170777158745,214,0 +170777158793,214,0 +170777158842,214,0 +170777158892,214,0 +170777158940,215,0 +170777158988,214,0 +170777159036,214,0 +170777159084,213,0 +170777159133,213,0 +170777159181,213,0 +170777159231,213,0 +170777159279,213,0 +170777159328,213,0 +170777159376,213,0 +170777159424,213,0 +170777159472,213,0 +170777159520,213,0 +170777159568,213,0 +170777159616,213,0 +170777159665,214,0 +170777159713,214,0 +170777159763,214,0 +170777159812,214,0 +170777159862,214,0 +170777159910,214,0 +170777159958,214,0 +170777160007,213,0 diff --git a/laser_value/0213-07.csv b/laser_value/0213-07.csv new file mode 100644 index 0000000..8cbfb3f --- /dev/null +++ b/laser_value/0213-07.csv @@ -0,0 +1,7455 @@ +timestamp,laser_value,event +170777160056,213,0 +170777160105,213,0 +170777160153,213,0 +170777160202,213,0 +170777160250,213,0 +170777160300,213,0 +170777160348,213,0 +170777160396,213,0 +170777160444,213,0 +170777160493,213,0 +170777160543,213,0 +170777160591,213,0 +170777160639,214,0 +170777160687,214,0 +170777160735,214,0 +170777160783,214,0 +170777160832,214,0 +170777160882,214,0 +170777160931,213,0 +170777160979,213,0 +170777161029,213,0 +170777161077,213,0 +170777161125,213,0 +170777161172,213,0 +170777161220,213,0 +170777161268,213,0 +170777161316,213,0 +170777161366,213,0 +170777161413,213,0 +170777161461,214,0 +170777161509,214,0 +170777161557,214,0 +170777161605,214,0 +170777161653,214,0 +170777161701,214,0 +170777161748,214,0 +170777161796,214,0 +170777161844,214,0 +170777161892,213,0 +170777161940,213,0 +170777161988,213,0 +170777162036,213,0 +170777162084,213,0 +170777162133,213,0 +170777162181,214,0 +170777162231,214,0 +170777162280,213,0 +170777162330,214,0 +170777162379,214,0 +170777162427,214,0 +170777162477,214,0 +170777162526,214,0 +170777162576,214,0 +170777162623,214,0 +170777162671,214,0 +170777162719,214,0 +170777162767,214,0 +170777162815,213,0 +170777162864,213,0 +170777162912,213,0 +170777162960,213,0 +170777163008,213,0 +170777163056,213,0 +170777163104,213,0 +170777163151,213,0 +170777163201,214,0 +170777163249,214,0 +170777163298,214,0 +170777163346,214,0 +170777163394,214,0 +170777163444,214,0 +170777163493,214,0 +170777163541,214,0 +170777163589,214,0 +170777163637,214,0 +170777163685,214,0 +170777163733,213,0 +170777163781,213,0 +170777163829,213,0 +170777163876,213,0 +170777163924,213,0 +170777163972,214,0 +170777164020,214,0 +170777164068,214,0 +170777164116,214,0 +170777164164,214,0 +170777164213,214,0 +170777164261,214,0 +170777164309,214,0 +170777164357,214,0 +170777164405,215,0 +170777164453,214,0 +170777164501,214,0 +170777164549,214,0 +170777164598,214,0 +170777164646,213,0 +170777164696,214,0 +170777164744,214,0 +170777164791,214,0 +170777164839,214,0 +170777164887,214,0 +170777164935,214,0 +170777164983,214,0 +170777165031,214,0 +170777165081,214,0 +170777165129,214,0 +170777165178,214,0 +170777165227,214,0 +170777165275,214,0 +170777165323,214,0 +170777165371,214,0 +170777165421,215,0 +170777165469,215,0 +170777165517,214,0 +170777165565,214,0 +170777165612,213,0 +170777165662,213,0 +170777165710,213,0 +170777165758,213,0 +170777165806,213,0 +170777165854,213,0 +170777165903,213,0 +170777165951,214,0 +170777165999,214,0 +170777166049,214,0 +170777166097,214,0 +170777166145,214,0 +170777166193,214,0 +170777166242,214,0 +170777166290,214,0 +170777166338,215,0 +170777166386,214,0 +170777166434,215,0 +170777166483,214,0 +170777166533,213,0 +170777166582,213,0 +170777166630,213,0 +170777166680,213,0 +170777166727,213,0 +170777166777,213,0 +170777166825,213,0 +170777166875,213,0 +170777166922,213,0 +170777166970,214,0 +170777167018,214,0 +170777167066,214,0 +170777167114,214,0 +170777167164,214,0 +170777167212,214,0 +170777167261,215,0 +170777167309,215,0 +170777167357,214,0 +170777167405,214,0 +170777167453,213,0 +170777167501,213,0 +170777167549,213,0 +170777167597,213,0 +170777167645,213,0 +170777167693,213,0 +170777167741,213,0 +170777167789,213,0 +170777167837,213,0 +170777167885,213,0 +170777167933,214,0 +170777167981,214,0 +170777168029,214,0 +170777168078,214,0 +170777168126,214,0 +170777168174,214,0 +170777168222,214,0 +170777168269,214,0 +170777168317,214,0 +170777168365,214,0 +170777168413,213,0 +170777168461,213,0 +170777168509,213,0 +170777168556,213,0 +170777168604,213,0 +170777168652,213,0 +170777168700,213,0 +170777168748,213,0 +170777168796,213,0 +170777168844,214,0 +170777168891,214,0 +170777168939,214,0 +170777168987,214,0 +170777169035,214,0 +170777169083,214,0 +170777169131,214,0 +170777169179,214,0 +170777169226,214,0 +170777169274,214,0 +170777169322,213,0 +170777169370,213,0 +170777169418,213,0 +170777169466,213,0 +170777169513,213,0 +170777169561,213,0 +170777169611,213,0 +170777169659,214,0 +170777169706,214,0 +170777169756,214,0 +170777169804,214,0 +170777169852,214,0 +170777169900,214,0 +170777169947,214,0 +170777169997,214,0 +170777170045,214,0 +170777170094,214,0 +170777170142,214,0 +170777170192,214,0 +170777170240,213,0 +170777170288,213,0 +170777170336,213,0 +170777170384,213,0 +170777170433,213,0 +170777170481,213,0 +170777170530,213,0 +170777170578,213,0 +170777170626,213,0 +170777170676,213,0 +170777170724,214,0 +170777170771,214,0 +170777170819,214,0 +170777170867,214,0 +170777170915,214,0 +170777170963,214,0 +170777171011,214,0 +170777171060,214,0 +170777171110,214,0 +170777171158,214,0 +170777171205,213,0 +170777171253,213,0 +170777171301,213,0 +170777171349,213,0 +170777171398,213,0 +170777171446,213,0 +170777171496,213,0 +170777171545,213,0 +170777171595,214,0 +170777171643,214,0 +170777171691,214,0 +170777171738,214,0 +170777171786,214,0 +170777171834,214,0 +170777171882,214,0 +170777171930,214,0 +170777171977,214,0 +170777172025,214,0 +170777172075,214,0 +170777172123,213,0 +170777172172,213,0 +170777172220,213,0 +170777172268,213,0 +170777172316,213,0 +170777172366,213,0 +170777172414,213,0 +170777172462,213,0 +170777172510,213,0 +170777172558,214,0 +170777172606,214,0 +170777172653,214,0 +170777172701,214,0 +170777172751,214,0 +170777172800,214,0 +170777172848,214,0 +170777172896,214,0 +170777172944,214,0 +170777172992,214,0 +170777173040,213,0 +170777173088,213,0 +170777173136,213,0 +170777173184,213,0 +170777173233,213,0 +170777173281,213,0 +170777173331,213,0 +170777173378,213,0 +170777173426,214,0 +170777173474,213,0 +170777173522,214,0 +170777173572,214,0 +170777173621,214,0 +170777173669,214,0 +170777173717,214,0 +170777173765,214,0 +170777173813,214,0 +170777173861,214,0 +170777173909,214,0 +170777173957,213,0 +170777174006,213,0 +170777174056,213,0 +170777174103,213,0 +170777174151,213,0 +170777174199,213,0 +170777174247,213,0 +170777174295,213,0 +170777174343,213,0 +170777174391,213,0 +170777174439,213,0 +170777174489,213,0 +170777174538,214,0 +170777174586,214,0 +170777174634,214,0 +170777174682,214,0 +170777174730,214,0 +170777174780,214,0 +170777174829,214,0 +170777174877,214,0 +170777174925,213,0 +170777174974,213,0 +170777175022,213,0 +170777175070,213,0 +170777175118,213,0 +170777175166,213,0 +170777175215,213,0 +170777175263,213,0 +170777175311,213,0 +170777175359,213,0 +170777175409,213,0 +170777175457,213,0 +170777175505,213,0 +170777175553,214,0 +170777175601,214,0 +170777175649,214,0 +170777175696,214,0 +170777175744,214,0 +170777175792,214,0 +170777175840,213,0 +170777175890,212,0 +170777175939,213,0 +170777175989,213,0 +170777176036,213,0 +170777176086,213,0 +170777176135,213,0 +170777176183,213,0 +170777176233,213,0 +170777176281,213,0 +170777176330,213,0 +170777176378,213,0 +170777176426,213,0 +170777176474,214,0 +170777176522,214,0 +170777176570,214,0 +170777176617,214,0 +170777176665,214,0 +170777176713,214,0 +170777176761,213,0 +170777176810,213,0 +170777176860,213,0 +170777176908,213,0 +170777176957,213,0 +170777177005,213,0 +170777177053,213,0 +170777177100,213,0 +170777177148,213,0 +170777177196,213,0 +170777177244,213,0 +170777177293,213,0 +170777177341,214,0 +170777177391,214,0 +170777177440,214,0 +170777177490,214,0 +170777177539,214,0 +170777177587,214,0 +170777177635,214,0 +170777177685,213,0 +170777177733,213,0 +170777177782,213,0 +170777177830,213,0 +170777177878,213,0 +170777177927,213,0 +170777177977,213,0 +170777178025,213,0 +170777178073,213,0 +170777178120,213,0 +170777178168,213,0 +170777178216,213,0 +170777178264,213,0 +170777178313,214,0 +170777178361,214,0 +170777178409,214,0 +170777178457,214,0 +170777178505,214,0 +170777178553,214,0 +170777178600,214,0 +170777178648,213,0 +170777178696,213,0 +170777178744,213,0 +170777178792,213,0 +170777178841,213,0 +170777178889,213,0 +170777178938,213,0 +170777178986,213,0 +170777179034,213,0 +170777179084,213,0 +170777179131,213,0 +170777179179,214,0 +170777179229,214,0 +170777179276,214,0 +170777179324,214,0 +170777179374,214,0 +170777179422,214,0 +170777179470,214,0 +170777179518,214,0 +170777179566,213,0 +170777179614,213,0 +170777179663,213,0 +170777179711,213,0 +170777179760,213,0 +170777179808,213,0 +170777179856,213,0 +170777179904,213,0 +170777179952,213,0 +170777180002,214,0 +170777180051,214,0 +170777180099,214,0 +170777180147,214,0 +170777180195,214,0 +170777180243,214,0 +170777180291,214,0 +170777180338,214,0 +170777180386,214,0 +170777180434,214,0 +170777180483,213,0 +170777180531,213,0 +170777180579,213,0 +170777180627,213,0 +170777180675,213,0 +170777180723,213,0 +170777180771,214,0 +170777180819,214,0 +170777180868,214,0 +170777180916,214,0 +170777180964,214,0 +170777181012,214,0 +170777181059,214,0 +170777181107,214,0 +170777181155,214,0 +170777181205,214,0 +170777181253,214,0 +170777181300,214,0 +170777181348,214,0 +170777181397,213,0 +170777181445,213,0 +170777181493,213,0 +170777181541,213,0 +170777181589,213,0 +170777181637,214,0 +170777181685,214,0 +170777181732,214,0 +170777181780,214,0 +170777181828,214,0 +170777181876,214,0 +170777181924,214,0 +170777181972,214,0 +170777182020,214,0 +170777182067,214,0 +170777182117,214,0 +170777182165,214,0 +170777182213,214,0 +170777182262,214,0 +170777182310,214,0 +170777182358,213,0 +170777182406,213,0 +170777182454,213,0 +170777182503,213,0 +170777182551,213,0 +170777182599,214,0 +170777182647,214,0 +170777182695,214,0 +170777182743,214,0 +170777182791,214,0 +170777182839,214,0 +170777182886,214,0 +170777182936,214,0 +170777182984,214,0 +170777183031,214,0 +170777183079,214,0 +170777183127,215,0 +170777183175,214,0 +170777183223,214,0 +170777183271,213,0 +170777183319,213,0 +170777183366,213,0 +170777183414,213,0 +170777183462,213,0 +170777183510,213,0 +170777183558,213,0 +170777183606,213,0 +170777183654,213,0 +170777183701,214,0 +170777183749,214,0 +170777183797,214,0 +170777183845,214,0 +170777183893,214,0 +170777183941,214,0 +170777183989,214,0 +170777184036,214,0 +170777184084,214,0 +170777184132,214,0 +170777184180,214,0 +170777184228,213,0 +170777184276,213,0 +170777184325,213,0 +170777184375,213,0 +170777184424,213,0 +170777184472,213,0 +170777184521,213,0 +170777184571,213,0 +170777184619,214,0 +170777184667,214,0 +170777184715,214,0 +170777184762,214,0 +170777184810,214,0 +170777184858,214,0 +170777184908,214,0 +170777184956,214,0 +170777185005,214,0 +170777185053,214,0 +170777185103,214,0 +170777185152,213,0 +170777185200,213,0 +170777185248,213,0 +170777185296,213,0 +170777185344,213,0 +170777185392,213,0 +170777185440,213,0 +170777185488,213,0 +170777185537,213,0 +170777185587,214,0 +170777185636,214,0 +170777185684,214,0 +170777185734,214,0 +170777185782,214,0 +170777185830,214,0 +170777185879,214,0 +170777185929,214,0 +170777185978,214,0 +170777186026,214,0 +170777186074,213,0 +170777186122,213,0 +170777186170,213,0 +170777186218,213,0 +170777186266,213,0 +170777186315,213,0 +170777186363,213,0 +170777186413,213,0 +170777186461,214,0 +170777186509,214,0 +170777186556,214,0 +170777186604,214,0 +170777186652,214,0 +170777186700,214,0 +170777186748,214,0 +170777186796,214,0 +170777186844,214,0 +170777186893,214,0 +170777186941,214,0 +170777186989,213,0 +170777187037,213,0 +170777187085,213,0 +170777187133,213,0 +170777187181,213,0 +170777187230,213,0 +170777187278,213,0 +170777187328,213,0 +170777187376,213,0 +170777187425,213,0 +170777187473,213,0 +170777187521,214,0 +170777187569,214,0 +170777187617,214,0 +170777187665,214,0 +170777187714,214,0 +170777187762,214,0 +170777187812,214,0 +170777187861,214,0 +170777187909,214,0 +170777187957,213,0 +170777188007,213,0 +170777188055,213,0 +170777188103,213,0 +170777188151,213,0 +170777188199,213,0 +170777188247,213,0 +170777188296,213,0 +170777188346,213,0 +170777188395,213,0 +170777188445,213,0 +170777188494,213,0 +170777188544,213,0 +170777188592,214,0 +170777188641,214,0 +170777188689,214,0 +170777188737,214,0 +170777188785,214,0 +170777188833,214,0 +170777188881,213,0 +170777188930,213,0 +170777188978,213,0 +170777189026,213,0 +170777189076,213,0 +170777189125,213,0 +170777189175,213,0 +170777189224,213,0 +170777189272,213,0 +170777189322,213,0 +170777189370,213,0 +170777189417,213,0 +170777189465,214,0 +170777189513,214,0 +170777189561,214,0 +170777189609,214,0 +170777189656,214,0 +170777189704,214,0 +170777189752,214,0 +170777189800,213,0 +170777189848,213,0 +170777189896,213,0 +170777189944,213,0 +170777189991,213,0 +170777190039,213,0 +170777190087,213,0 +170777190135,213,0 +170777190184,213,0 +170777190232,213,0 +170777190280,213,0 +170777190328,213,0 +170777190377,213,0 +170777190425,214,0 +170777190473,214,0 +170777190521,214,0 +170777190569,214,0 +170777190617,214,0 +170777190664,214,0 +170777190712,214,0 +170777190760,213,0 +170777190808,213,0 +170777190858,213,0 +170777190906,213,0 +170777190955,213,0 +170777191003,213,0 +170777191051,213,0 +170777191101,213,0 +170777191149,213,0 +170777191198,213,0 +170777191246,213,0 +170777191294,213,0 +170777191342,213,0 +170777191390,213,0 +170777191438,213,0 +170777191486,213,0 +170777191535,213,0 +170777191583,214,0 +170777191633,214,0 +170777191682,213,0 +170777191730,213,0 +170777191778,213,0 +170777191826,213,0 +170777191874,213,0 +170777191922,213,0 +170777191971,213,0 +170777192019,213,0 +170777192067,213,0 +170777192117,213,0 +170777192164,213,0 +170777192214,213,0 +170777192262,213,0 +170777192309,213,0 +170777192357,214,0 +170777192405,214,0 +170777192453,214,0 +170777192501,214,0 +170777192548,214,0 +170777192596,213,0 +170777192644,213,0 +170777192694,213,0 +170777192743,213,0 +170777192791,213,0 +170777192840,213,0 +170777192888,213,0 +170777192936,213,0 +170777192984,213,0 +170777193032,213,0 +170777193082,213,0 +170777193130,213,0 +170777193178,214,0 +170777193226,214,0 +170777193274,214,0 +170777193323,214,0 +170777193371,214,0 +170777193419,214,0 +170777193467,214,0 +170777193517,214,0 +170777193564,213,0 +170777193612,213,0 +170777193660,213,0 +170777193708,213,0 +170777193756,213,0 +170777193804,213,0 +170777193852,213,0 +170777193900,213,0 +170777193947,213,0 +170777193995,214,0 +170777194045,214,0 +170777194093,214,0 +170777194142,214,0 +170777194190,214,0 +170777194238,214,0 +170777194286,214,0 +170777194334,214,0 +170777194382,214,0 +170777194430,214,0 +170777194478,213,0 +170777194526,213,0 +170777194574,213,0 +170777194623,213,0 +170777194671,213,0 +170777194719,213,0 +170777194767,213,0 +170777194815,213,0 +170777194865,213,0 +170777194913,214,0 +170777194961,214,0 +170777195008,214,0 +170777195056,214,0 +170777195104,214,0 +170777195152,214,0 +170777195200,215,0 +170777195250,214,0 +170777195299,214,0 +170777195349,214,0 +170777195397,213,0 +170777195444,213,0 +170777195494,213,0 +170777195544,213,0 +170777195593,213,0 +170777195641,213,0 +170777195689,214,0 +170777195738,214,0 +170777195786,214,0 +170777195834,214,0 +170777195882,214,0 +170777195932,214,0 +170777195980,214,0 +170777196027,214,0 +170777196077,214,0 +170777196126,214,0 +170777196176,214,0 +170777196224,215,0 +170777196272,215,0 +170777196321,213,0 +170777196371,213,0 +170777196419,213,0 +170777196467,213,0 +170777196515,213,0 +170777196563,213,0 +170777196611,213,0 +170777196660,214,0 +170777196708,213,0 +170777196757,214,0 +170777196805,214,0 +170777196853,214,0 +170777196901,214,0 +170777196951,214,0 +170777197000,214,0 +170777197050,214,0 +170777197098,214,0 +170777197146,215,0 +170777197194,214,0 +170777197242,213,0 +170777197291,213,0 +170777197339,213,0 +170777197387,213,0 +170777197437,213,0 +170777197484,213,0 +170777197532,213,0 +170777197580,213,0 +170777197630,213,0 +170777197679,213,0 +170777197727,214,0 +170777197775,214,0 +170777197823,214,0 +170777197871,214,0 +170777197919,214,0 +170777197967,214,0 +170777198015,214,0 +170777198063,214,0 +170777198111,214,0 +170777198159,214,0 +170777198208,213,0 +170777198256,213,0 +170777198304,213,0 +170777198352,213,0 +170777198400,213,0 +170777198450,213,0 +170777198498,213,0 +170777198546,213,0 +170777198595,213,0 +170777198643,213,0 +170777198691,214,0 +170777198739,214,0 +170777198787,214,0 +170777198836,214,0 +170777198884,214,0 +170777198932,214,0 +170777198980,214,0 +170777199029,214,0 +170777199079,214,0 +170777199127,213,0 +170777199175,213,0 +170777199223,213,0 +170777199272,213,0 +170777199322,213,0 +170777199370,213,0 +170777199418,213,0 +170777199465,213,0 +170777199513,213,0 +170777199561,213,0 +170777199611,213,0 +170777199659,213,0 +170777199707,213,0 +170777199755,213,0 +170777199804,214,0 +170777199854,213,0 +170777199903,214,0 +170777199951,214,0 +170777199999,214,0 +170777200047,213,0 +170777200095,213,0 +170777200143,213,0 +170777200192,213,0 +170777200240,213,0 +170777200288,213,0 +170777200336,213,0 +170777200384,213,0 +170777200432,213,0 +170777200480,213,0 +170777200528,213,0 +170777200576,213,0 +170777200624,213,0 +170777200672,214,0 +170777200722,214,0 +170777200771,213,0 +170777200819,214,0 +170777200867,214,0 +170777200917,214,0 +170777200965,213,0 +170777201012,213,0 +170777201060,213,0 +170777201108,213,0 +170777201156,213,0 +170777201204,213,0 +170777201254,213,0 +170777201302,213,0 +170777201351,213,0 +170777201400,213,0 +170777201448,213,0 +170777201498,213,0 +170777201546,214,0 +170777201594,214,0 +170777201643,214,0 +170777201691,214,0 +170777201741,214,0 +170777201789,214,0 +170777201837,214,0 +170777201885,214,0 +170777201932,213,0 +170777201980,213,0 +170777202028,213,0 +170777202078,213,0 +170777202126,213,0 +170777202175,213,0 +170777202223,213,0 +170777202271,213,0 +170777202319,213,0 +170777202367,213,0 +170777202415,213,0 +170777202462,214,0 +170777202512,214,0 +170777202560,214,0 +170777202608,214,0 +170777202656,214,0 +170777202705,214,0 +170777202753,214,0 +170777202803,214,0 +170777202850,213,0 +170777202898,213,0 +170777202946,213,0 +170777202996,213,0 +170777203044,213,0 +170777203092,213,0 +170777203141,213,0 +170777203189,213,0 +170777203239,214,0 +170777203287,214,0 +170777203335,214,0 +170777203384,214,0 +170777203432,214,0 +170777203480,214,0 +170777203528,214,0 +170777203576,214,0 +170777203624,214,0 +170777203672,214,0 +170777203721,214,0 +170777203771,213,0 +170777203819,213,0 +170777203866,213,0 +170777203914,213,0 +170777203964,213,0 +170777204013,213,0 +170777204063,213,0 +170777204112,213,0 +170777204160,213,0 +170777204208,213,0 +170777204258,214,0 +170777204306,214,0 +170777204353,214,0 +170777204401,214,0 +170777204449,214,0 +170777204497,214,0 +170777204545,214,0 +170777204595,214,0 +170777204643,214,0 +170777204692,213,0 +170777204740,213,0 +170777204788,213,0 +170777204837,213,0 +170777204887,213,0 +170777204936,213,0 +170777204984,213,0 +170777205032,213,0 +170777205080,213,0 +170777205128,213,0 +170777205178,213,0 +170777205226,214,0 +170777205274,214,0 +170777205322,214,0 +170777205369,214,0 +170777205419,214,0 +170777205469,213,0 +170777205518,214,0 +170777205568,214,0 +170777205617,214,0 +170777205665,213,0 +170777205713,213,0 +170777205761,213,0 +170777205809,212,0 +170777205858,213,0 +170777205906,213,0 +170777205954,213,0 +170777206002,213,0 +170777206050,213,0 +170777206098,213,0 +170777206146,213,0 +170777206196,213,0 +170777206245,214,0 +170777206293,214,0 +170777206343,214,0 +170777206392,214,0 +170777206440,214,0 +170777206488,214,0 +170777206536,214,0 +170777206585,213,0 +170777206633,213,0 +170777206682,213,0 +170777206730,213,0 +170777206778,213,0 +170777206826,213,0 +170777206874,213,0 +170777206922,213,0 +170777206970,213,0 +170777207019,213,0 +170777207067,214,0 +170777207117,214,0 +170777207165,214,0 +170777207214,214,0 +170777207262,214,0 +170777207310,214,0 +170777207360,214,0 +170777207408,214,0 +170777207457,214,0 +170777207505,213,0 +170777207553,213,0 +170777207603,213,0 +170777207650,213,0 +170777207698,213,0 +170777207746,214,0 +170777207794,214,0 +170777207842,214,0 +170777207892,214,0 +170777207940,214,0 +170777207989,214,0 +170777208037,214,0 +170777208085,214,0 +170777208133,214,0 +170777208182,214,0 +170777208230,214,0 +170777208278,214,0 +170777208326,214,0 +170777208374,214,0 +170777208423,213,0 +170777208471,213,0 +170777208519,213,0 +170777208567,213,0 +170777208615,213,0 +170777208663,213,0 +170777208711,214,0 +170777208759,214,0 +170777208809,214,0 +170777208858,214,0 +170777208906,214,0 +170777208956,214,0 +170777209004,214,0 +170777209052,214,0 +170777209101,214,0 +170777209149,214,0 +170777209199,214,0 +170777209246,214,0 +170777209294,214,0 +170777209342,214,0 +170777209390,213,0 +170777209438,213,0 +170777209486,213,0 +170777209535,213,0 +170777209583,213,0 +170777209631,214,0 +170777209679,213,0 +170777209727,213,0 +170777209775,214,0 +170777209823,214,0 +170777209872,214,0 +170777209920,214,0 +170777209968,214,0 +170777210016,214,0 +170777210065,214,0 +170777210113,214,0 +170777210163,214,0 +170777210212,214,0 +170777210260,214,0 +170777210308,213,0 +170777210356,213,0 +170777210404,213,0 +170777210453,213,0 +170777210501,213,0 +170777210549,213,0 +170777210599,213,0 +170777210648,213,0 +170777210696,214,0 +170777210744,213,0 +170777210793,214,0 +170777210841,214,0 +170777210889,214,0 +170777210937,214,0 +170777210985,214,0 +170777211033,214,0 +170777211081,214,0 +170777211130,214,0 +170777211178,214,0 +170777211226,213,0 +170777211273,213,0 +170777211321,213,0 +170777211371,213,0 +170777211419,213,0 +170777211467,213,0 +170777211514,214,0 +170777211562,213,0 +170777211610,214,0 +170777211658,214,0 +170777211706,214,0 +170777211754,214,0 +170777211802,214,0 +170777211850,214,0 +170777211897,214,0 +170777211947,214,0 +170777211995,214,0 +170777212042,214,0 +170777212092,214,0 +170777212141,213,0 +170777212191,213,0 +170777212240,213,0 +170777212288,213,0 +170777212338,213,0 +170777212386,213,0 +170777212434,214,0 +170777212482,213,0 +170777212530,214,0 +170777212577,214,0 +170777212625,214,0 +170777212673,214,0 +170777212723,214,0 +170777212772,214,0 +170777212820,214,0 +170777212868,214,0 +170777212917,214,0 +170777212967,214,0 +170777213016,214,0 +170777213064,214,0 +170777213114,213,0 +170777213162,213,0 +170777213210,213,0 +170777213257,213,0 +170777213305,213,0 +170777213353,213,0 +170777213401,213,0 +170777213449,213,0 +170777213497,214,0 +170777213547,214,0 +170777213596,214,0 +170777213645,214,0 +170777213693,214,0 +170777213741,214,0 +170777213789,214,0 +170777213837,214,0 +170777213885,215,0 +170777213932,214,0 +170777213980,214,0 +170777214028,213,0 +170777214076,213,0 +170777214125,213,0 +170777214173,213,0 +170777214221,213,0 +170777214269,213,0 +170777214317,213,0 +170777214365,213,0 +170777214413,213,0 +170777214460,214,0 +170777214508,214,0 +170777214558,214,0 +170777214606,214,0 +170777214654,214,0 +170777214702,214,0 +170777214751,214,0 +170777214799,214,0 +170777214848,214,0 +170777214898,214,0 +170777214946,213,0 +170777214994,213,0 +170777215043,213,0 +170777215093,213,0 +170777215141,213,0 +170777215189,213,0 +170777215236,213,0 +170777215286,213,0 +170777215334,213,0 +170777215383,213,0 +170777215433,213,0 +170777215481,214,0 +170777215528,214,0 +170777215576,214,0 +170777215626,214,0 +170777215675,214,0 +170777215725,214,0 +170777215773,214,0 +170777215820,214,0 +170777215868,213,0 +170777215916,213,0 +170777215964,213,0 +170777216014,213,0 +170777216063,213,0 +170777216111,212,0 +170777216159,213,0 +170777216207,213,0 +170777216255,213,0 +170777216303,213,0 +170777216350,213,0 +170777216398,213,0 +170777216448,213,0 +170777216495,213,0 +170777216543,213,0 +170777216593,213,0 +170777216641,214,0 +170777216690,214,0 +170777216740,214,0 +170777216788,214,0 +170777216837,213,0 +170777216885,213,0 +170777216933,213,0 +170777216981,213,0 +170777217029,213,0 +170777217077,213,0 +170777217125,213,0 +170777217174,213,0 +170777217222,213,0 +170777217270,213,0 +170777217318,213,0 +170777217366,213,0 +170777217414,213,0 +170777217462,213,0 +170777217510,213,0 +170777217558,213,0 +170777217606,213,0 +170777217654,214,0 +170777217702,214,0 +170777217750,213,0 +170777217798,213,0 +170777217845,213,0 +170777217893,213,0 +170777217941,213,0 +170777217989,213,0 +170777218037,213,0 +170777218085,213,0 +170777218132,213,0 +170777218180,213,0 +170777218228,213,0 +170777218276,213,0 +170777218326,213,0 +170777218374,213,0 +170777218422,214,0 +170777218470,214,0 +170777218518,214,0 +170777218567,214,0 +170777218616,214,0 +170777218666,213,0 +170777218714,213,0 +170777218763,213,0 +170777218811,213,0 +170777218859,213,0 +170777218907,213,0 +170777218955,213,0 +170777219003,213,0 +170777219053,213,0 +170777219100,213,0 +170777219148,213,0 +170777219196,213,0 +170777219246,213,0 +170777219294,214,0 +170777219343,214,0 +170777219391,214,0 +170777219439,214,0 +170777219487,214,0 +170777219535,214,0 +170777219583,214,0 +170777219632,213,0 +170777219680,213,0 +170777219728,213,0 +170777219775,213,0 +170777219823,213,0 +170777219871,213,0 +170777219919,213,0 +170777219967,213,0 +170777220014,213,0 +170777220062,213,0 +170777220112,213,0 +170777220160,213,0 +170777220207,213,0 +170777220255,214,0 +170777220303,214,0 +170777220351,214,0 +170777220399,213,0 +170777220446,214,0 +170777220494,214,0 +170777220542,213,0 +170777220590,213,0 +170777220639,213,0 +170777220689,213,0 +170777220736,213,0 +170777220784,213,0 +170777220832,213,0 +170777220880,213,0 +170777220928,213,0 +170777220976,213,0 +170777221023,213,0 +170777221071,214,0 +170777221119,214,0 +170777221167,214,0 +170777221216,214,0 +170777221264,214,0 +170777221312,214,0 +170777221360,214,0 +170777221408,214,0 +170777221455,213,0 +170777221503,213,0 +170777221551,213,0 +170777221599,213,0 +170777221647,213,0 +170777221694,213,0 +170777221742,213,0 +170777221790,213,0 +170777221838,213,0 +170777221887,213,0 +170777221937,214,0 +170777221985,214,0 +170777222033,214,0 +170777222081,214,0 +170777222129,214,0 +170777222177,214,0 +170777222224,214,0 +170777222272,214,0 +170777222320,214,0 +170777222368,214,0 +170777222418,213,0 +170777222466,213,0 +170777222514,213,0 +170777222562,213,0 +170777222611,213,0 +170777222659,213,0 +170777222707,213,0 +170777222755,213,0 +170777222803,213,0 +170777222850,213,0 +170777222898,214,0 +170777222946,213,0 +170777222994,214,0 +170777223042,214,0 +170777223090,214,0 +170777223138,214,0 +170777223185,214,0 +170777223235,214,0 +170777223284,214,0 +170777223332,213,0 +170777223380,213,0 +170777223428,213,0 +170777223476,213,0 +170777223524,213,0 +170777223574,213,0 +170777223622,213,0 +170777223669,213,0 +170777223717,214,0 +170777223765,214,0 +170777223815,214,0 +170777223864,214,0 +170777223912,214,0 +170777223960,214,0 +170777224008,214,0 +170777224056,214,0 +170777224104,214,0 +170777224152,214,0 +170777224201,215,0 +170777224251,213,0 +170777224300,213,0 +170777224350,213,0 +170777224398,213,0 +170777224446,213,0 +170777224493,213,0 +170777224541,213,0 +170777224589,214,0 +170777224637,214,0 +170777224687,214,0 +170777224736,214,0 +170777224784,214,0 +170777224832,214,0 +170777224880,214,0 +170777224928,214,0 +170777224976,214,0 +170777225024,214,0 +170777225071,215,0 +170777225119,214,0 +170777225167,214,0 +170777225217,213,0 +170777225265,213,0 +170777225312,214,0 +170777225360,213,0 +170777225408,214,0 +170777225458,214,0 +170777225506,214,0 +170777225554,214,0 +170777225603,214,0 +170777225651,214,0 +170777225699,214,0 +170777225747,214,0 +170777225796,215,0 +170777225844,214,0 +170777225895,215,0 +170777225942,215,0 +170777225992,215,0 +170777226040,214,0 +170777226088,214,0 +170777226136,214,0 +170777226184,213,0 +170777226233,213,0 +170777226281,214,0 +170777226330,214,0 +170777226380,214,0 +170777226428,214,0 +170777226477,214,0 +170777226527,214,0 +170777226575,214,0 +170777226622,214,0 +170777226672,214,0 +170777226720,215,0 +170777226768,215,0 +170777226816,214,0 +170777226864,215,0 +170777226912,214,0 +170777226960,214,0 +170777227008,214,0 +170777227056,213,0 +170777227104,213,0 +170777227153,213,0 +170777227203,213,0 +170777227251,213,0 +170777227300,214,0 +170777227350,214,0 +170777227399,214,0 +170777227447,214,0 +170777227497,214,0 +170777227545,214,0 +170777227593,214,0 +170777227641,214,0 +170777227689,214,0 +170777227737,214,0 +170777227786,214,0 +170777227836,214,0 +170777227885,214,0 +170777227933,214,0 +170777227981,213,0 +170777228029,213,0 +170777228077,213,0 +170777228126,213,0 +170777228174,213,0 +170777228224,213,0 +170777228273,213,0 +170777228323,213,0 +170777228371,213,0 +170777228420,213,0 +170777228468,214,0 +170777228516,214,0 +170777228564,214,0 +170777228612,214,0 +170777228661,214,0 +170777228711,214,0 +170777228759,215,0 +170777228808,214,0 +170777228856,214,0 +170777228906,213,0 +170777228955,213,0 +170777229003,213,0 +170777229051,213,0 +170777229099,213,0 +170777229147,213,0 +170777229195,213,0 +170777229243,213,0 +170777229291,213,0 +170777229341,213,0 +170777229388,213,0 +170777229438,213,0 +170777229488,213,0 +170777229537,214,0 +170777229585,214,0 +170777229633,214,0 +170777229682,214,0 +170777229732,214,0 +170777229782,214,0 +170777229830,213,0 +170777229879,213,0 +170777229929,213,0 +170777229978,213,0 +170777230026,213,0 +170777230074,213,0 +170777230123,214,0 +170777230171,214,0 +170777230219,214,0 +170777230267,214,0 +170777230315,214,0 +170777230363,214,0 +170777230412,214,0 +170777230460,214,0 +170777230510,214,0 +170777230559,214,0 +170777230607,214,0 +170777230655,215,0 +170777230705,214,0 +170777230753,213,0 +170777230801,213,0 +170777230849,213,0 +170777230898,213,0 +170777230946,213,0 +170777230994,213,0 +170777231042,214,0 +170777231090,214,0 +170777231138,214,0 +170777231186,214,0 +170777231234,214,0 +170777231282,214,0 +170777231330,214,0 +170777231377,214,0 +170777231425,214,0 +170777231473,214,0 +170777231521,215,0 +170777231569,215,0 +170777231619,214,0 +170777231668,214,0 +170777231718,213,0 +170777231767,213,0 +170777231815,213,0 +170777231865,213,0 +170777231913,213,0 +170777231961,213,0 +170777232010,213,0 +170777232058,213,0 +170777232106,214,0 +170777232155,213,0 +170777232203,214,0 +170777232251,214,0 +170777232301,214,0 +170777232349,214,0 +170777232397,214,0 +170777232445,214,0 +170777232493,214,0 +170777232542,214,0 +170777232590,214,0 +170777232640,213,0 +170777232687,213,0 +170777232735,213,0 +170777232783,213,0 +170777232831,213,0 +170777232879,213,0 +170777232927,213,0 +170777232975,213,0 +170777233023,213,0 +170777233072,213,0 +170777233120,213,0 +170777233168,213,0 +170777233218,214,0 +170777233265,214,0 +170777233313,214,0 +170777233361,214,0 +170777233409,214,0 +170777233456,214,0 +170777233504,214,0 +170777233552,213,0 +170777233600,213,0 +170777233648,213,0 +170777233696,213,0 +170777233743,213,0 +170777233793,213,0 +170777233841,213,0 +170777233889,213,0 +170777233936,213,0 +170777233984,213,0 +170777234032,213,0 +170777234080,213,0 +170777234128,214,0 +170777234176,214,0 +170777234224,214,0 +170777234271,214,0 +170777234319,214,0 +170777234369,214,0 +170777234417,214,0 +170777234465,214,0 +170777234513,213,0 +170777234561,213,0 +170777234609,213,0 +170777234658,213,0 +170777234708,213,0 +170777234756,213,0 +170777234805,213,0 +170777234853,213,0 +170777234901,213,0 +170777234950,213,0 +170777234998,213,0 +170777235046,214,0 +170777235095,213,0 +170777235145,214,0 +170777235193,214,0 +170777235242,214,0 +170777235290,214,0 +170777235339,214,0 +170777235389,214,0 +170777235437,213,0 +170777235485,213,0 +170777235534,213,0 +170777235582,213,0 +170777235630,213,0 +170777235679,213,0 +170777235727,213,0 +170777235777,213,0 +170777235825,213,0 +170777235873,213,0 +170777235921,213,0 +170777235969,213,0 +170777236017,214,0 +170777236065,214,0 +170777236112,214,0 +170777236160,214,0 +170777236208,214,0 +170777236256,214,0 +170777236304,214,0 +170777236352,213,0 +170777236400,213,0 +170777236448,213,0 +170777236496,213,0 +170777236544,213,0 +170777236591,213,0 +170777236639,213,0 +170777236687,213,0 +170777236735,213,0 +170777236783,213,0 +170777236832,213,0 +170777236880,214,0 +170777236928,214,0 +170777236976,214,0 +170777237024,214,0 +170777237071,214,0 +170777237119,214,0 +170777237167,214,0 +170777237216,214,0 +170777237264,214,0 +170777237312,213,0 +170777237360,213,0 +170777237408,213,0 +170777237455,213,0 +170777237503,213,0 +170777237551,213,0 +170777237599,213,0 +170777237647,213,0 +170777237696,214,0 +170777237744,214,0 +170777237792,214,0 +170777237840,214,0 +170777237887,214,0 +170777237935,214,0 +170777237983,214,0 +170777238031,214,0 +170777238080,215,0 +170777238130,214,0 +170777238179,214,0 +170777238227,213,0 +170777238276,213,0 +170777238324,213,0 +170777238372,213,0 +170777238420,213,0 +170777238468,213,0 +170777238518,213,0 +170777238566,213,0 +170777238614,213,0 +170777238662,214,0 +170777238710,214,0 +170777238758,214,0 +170777238805,214,0 +170777238853,214,0 +170777238901,214,0 +170777238949,214,0 +170777238997,214,0 +170777239047,214,0 +170777239095,214,0 +170777239143,213,0 +170777239191,213,0 +170777239239,213,0 +170777239288,213,0 +170777239336,213,0 +170777239384,213,0 +170777239432,213,0 +170777239480,214,0 +170777239528,214,0 +170777239575,214,0 +170777239625,214,0 +170777239673,214,0 +170777239722,214,0 +170777239770,214,0 +170777239818,214,0 +170777239866,214,0 +170777239914,214,0 +170777239963,214,0 +170777240011,215,0 +170777240059,213,0 +170777240107,213,0 +170777240155,213,0 +170777240204,213,0 +170777240254,213,0 +170777240303,213,0 +170777240351,213,0 +170777240401,214,0 +170777240450,213,0 +170777240498,214,0 +170777240548,214,0 +170777240595,214,0 +170777240643,214,0 +170777240693,214,0 +170777240741,214,0 +170777240789,214,0 +170777240837,214,0 +170777240886,214,0 +170777240934,214,0 +170777240984,214,0 +170777241032,213,0 +170777241080,213,0 +170777241128,213,0 +170777241177,213,0 +170777241227,213,0 +170777241275,213,0 +170777241324,213,0 +170777241372,213,0 +170777241420,214,0 +170777241469,214,0 +170777241517,214,0 +170777241565,214,0 +170777241613,214,0 +170777241661,214,0 +170777241709,214,0 +170777241756,214,0 +170777241804,214,0 +170777241852,214,0 +170777241900,214,0 +170777241948,213,0 +170777241997,213,0 +170777242045,213,0 +170777242095,213,0 +170777242143,213,0 +170777242191,213,0 +170777242238,213,0 +170777242286,213,0 +170777242334,214,0 +170777242382,214,0 +170777242431,214,0 +170777242481,214,0 +170777242529,214,0 +170777242577,214,0 +170777242625,214,0 +170777242674,214,0 +170777242722,214,0 +170777242772,214,0 +170777242819,214,0 +170777242867,213,0 +170777242915,213,0 +170777242963,213,0 +170777243011,213,0 +170777243059,213,0 +170777243108,213,0 +170777243156,213,0 +170777243206,213,0 +170777243254,213,0 +170777243301,214,0 +170777243349,214,0 +170777243399,214,0 +170777243447,214,0 +170777243496,214,0 +170777243544,214,0 +170777243594,214,0 +170777243643,214,0 +170777243691,214,0 +170777243739,214,0 +170777243789,213,0 +170777243836,213,0 +170777243884,213,0 +170777243932,213,0 +170777243980,213,0 +170777244028,213,0 +170777244076,213,0 +170777244124,213,0 +170777244172,214,0 +170777244221,214,0 +170777244269,214,0 +170777244317,214,0 +170777244366,214,0 +170777244416,214,0 +170777244464,214,0 +170777244513,214,0 +170777244561,214,0 +170777244609,214,0 +170777244657,214,0 +170777244705,214,0 +170777244753,213,0 +170777244801,213,0 +170777244849,213,0 +170777244897,213,0 +170777244944,213,0 +170777244992,213,0 +170777245040,213,0 +170777245088,213,0 +170777245136,213,0 +170777245186,213,0 +170777245235,213,0 +170777245283,214,0 +170777245331,214,0 +170777245380,214,0 +170777245428,214,0 +170777245476,214,0 +170777245526,214,0 +170777245573,214,0 +170777245621,214,0 +170777245669,213,0 +170777245717,213,0 +170777245765,213,0 +170777245813,213,0 +170777245861,213,0 +170777245910,213,0 +170777245958,213,0 +170777246006,213,0 +170777246054,213,0 +170777246103,213,0 +170777246151,213,0 +170777246201,213,0 +170777246248,214,0 +170777246296,214,0 +170777246344,214,0 +170777246392,214,0 +170777246440,214,0 +170777246488,214,0 +170777246536,214,0 +170777246585,213,0 +170777246633,213,0 +170777246681,213,0 +170777246729,213,0 +170777246777,213,0 +170777246826,213,0 +170777246876,213,0 +170777246924,213,0 +170777246972,213,0 +170777247020,214,0 +170777247067,214,0 +170777247115,214,0 +170777247163,214,0 +170777247211,214,0 +170777247259,214,0 +170777247307,214,0 +170777247355,214,0 +170777247402,214,0 +170777247452,214,0 +170777247500,213,0 +170777247549,213,0 +170777247597,213,0 +170777247645,213,0 +170777247693,213,0 +170777247741,213,0 +170777247789,213,0 +170777247837,213,0 +170777247885,213,0 +170777247933,214,0 +170777247981,213,0 +170777248029,214,0 +170777248078,214,0 +170777248128,214,0 +170777248177,214,0 +170777248225,214,0 +170777248273,214,0 +170777248321,214,0 +170777248370,214,0 +170777248418,214,0 +170777248466,213,0 +170777248514,213,0 +170777248562,213,0 +170777248611,213,0 +170777248659,213,0 +170777248707,213,0 +170777248755,213,0 +170777248803,213,0 +170777248852,213,0 +170777248900,213,0 +170777248948,214,0 +170777248998,214,0 +170777249046,214,0 +170777249093,214,0 +170777249141,214,0 +170777249189,214,0 +170777249237,214,0 +170777249285,214,0 +170777249333,214,0 +170777249380,213,0 +170777249428,213,0 +170777249476,213,0 +170777249524,213,0 +170777249572,213,0 +170777249620,213,0 +170777249669,213,0 +170777249717,213,0 +170777249765,213,0 +170777249813,213,0 +170777249861,213,0 +170777249909,214,0 +170777249957,214,0 +170777250005,214,0 +170777250053,214,0 +170777250100,214,0 +170777250150,214,0 +170777250200,214,0 +170777250247,214,0 +170777250295,214,0 +170777250345,213,0 +170777250394,213,0 +170777250442,213,0 +170777250490,213,0 +170777250538,213,0 +170777250586,213,0 +170777250633,213,0 +170777250681,213,0 +170777250729,213,0 +170777250777,214,0 +170777250825,214,0 +170777250873,214,0 +170777250921,214,0 +170777250969,214,0 +170777251017,214,0 +170777251066,214,0 +170777251114,214,0 +170777251163,214,0 +170777251211,214,0 +170777251259,213,0 +170777251307,213,0 +170777251355,213,0 +170777251403,213,0 +170777251450,213,0 +170777251500,213,0 +170777251548,213,0 +170777251596,213,0 +170777251644,214,0 +170777251692,214,0 +170777251740,214,0 +170777251789,214,0 +170777251837,214,0 +170777251885,214,0 +170777251933,214,0 +170777251981,214,0 +170777252029,214,0 +170777252077,214,0 +170777252125,214,0 +170777252172,213,0 +170777252222,213,0 +170777252270,213,0 +170777252318,214,0 +170777252366,213,0 +170777252414,214,0 +170777252462,214,0 +170777252511,214,0 +170777252561,214,0 +170777252609,214,0 +170777252657,214,0 +170777252705,214,0 +170777252754,214,0 +170777252804,214,0 +170777252853,214,0 +170777252901,214,0 +170777252949,214,0 +170777252997,214,0 +170777253045,214,0 +170777253095,213,0 +170777253142,213,0 +170777253190,213,0 +170777253238,213,0 +170777253286,214,0 +170777253334,214,0 +170777253384,214,0 +170777253432,214,0 +170777253480,214,0 +170777253528,214,0 +170777253576,214,0 +170777253625,214,0 +170777253675,214,0 +170777253724,214,0 +170777253772,215,0 +170777253822,215,0 +170777253870,215,0 +170777253918,214,0 +170777253966,214,0 +170777254014,214,0 +170777254061,213,0 +170777254109,213,0 +170777254159,213,0 +170777254207,213,0 +170777254255,213,0 +170777254304,214,0 +170777254352,214,0 +170777254400,214,0 +170777254448,214,0 +170777254496,214,0 +170777254544,214,0 +170777254593,214,0 +170777254641,214,0 +170777254689,214,0 +170777254739,214,0 +170777254787,214,0 +170777254836,214,0 +170777254884,214,0 +170777254932,214,0 +170777254980,213,0 +170777255028,213,0 +170777255076,213,0 +170777255124,213,0 +170777255172,213,0 +170777255220,214,0 +170777255268,214,0 +170777255316,214,0 +170777255364,214,0 +170777255412,214,0 +170777255460,214,0 +170777255507,214,0 +170777255557,214,0 +170777255605,214,0 +170777255654,214,0 +170777255702,214,0 +170777255752,215,0 +170777255800,214,0 +170777255848,214,0 +170777255897,213,0 +170777255945,213,0 +170777255993,213,0 +170777256041,213,0 +170777256089,213,0 +170777256137,214,0 +170777256184,213,0 +170777256234,214,0 +170777256282,214,0 +170777256330,214,0 +170777256378,214,0 +170777256427,214,0 +170777256477,214,0 +170777256526,214,0 +170777256574,214,0 +170777256622,214,0 +170777256671,215,0 +170777256721,215,0 +170777256769,214,0 +170777256817,213,0 +170777256865,213,0 +170777256913,213,0 +170777256961,213,0 +170777257009,213,0 +170777257057,213,0 +170777257105,213,0 +170777257154,213,0 +170777257203,213,0 +170777257251,214,0 +170777257299,214,0 +170777257347,214,0 +170777257397,214,0 +170777257445,214,0 +170777257493,214,0 +170777257542,214,0 +170777257592,214,0 +170777257641,214,0 +170777257689,214,0 +170777257737,214,0 +170777257785,213,0 +170777257833,213,0 +170777257882,213,0 +170777257930,213,0 +170777257978,213,0 +170777258026,213,0 +170777258074,213,0 +170777258122,213,0 +170777258170,214,0 +170777258218,214,0 +170777258266,214,0 +170777258314,214,0 +170777258362,214,0 +170777258410,214,0 +170777258458,214,0 +170777258505,214,0 +170777258555,214,0 +170777258603,214,0 +170777258652,214,0 +170777258700,213,0 +170777258748,213,0 +170777258796,213,0 +170777258844,213,0 +170777258892,213,0 +170777258940,213,0 +170777258988,213,0 +170777259036,213,0 +170777259083,213,0 +170777259132,213,0 +170777259181,214,0 +170777259229,214,0 +170777259278,214,0 +170777259326,214,0 +170777259374,214,0 +170777259424,214,0 +170777259473,214,0 +170777259521,214,0 +170777259571,214,0 +170777259619,213,0 +170777259666,213,0 +170777259714,213,0 +170777259762,213,0 +170777259812,213,0 +170777259860,213,0 +170777259907,213,0 +170777259955,213,0 +170777260003,213,0 +170777260052,213,0 +170777260100,213,0 +170777260148,213,0 +170777260196,214,0 +170777260244,214,0 +170777260292,214,0 +170777260340,214,0 +170777260388,214,0 +170777260435,214,0 +170777260483,214,0 +170777260531,213,0 +170777260579,213,0 +170777260627,213,0 +170777260675,213,0 +170777260723,213,0 +170777260770,213,0 +170777260818,213,0 +170777260866,213,0 +170777260914,213,0 +170777260962,213,0 +170777261010,213,0 +170777261058,213,0 +170777261105,214,0 +170777261153,214,0 +170777261201,214,0 +170777261249,214,0 +170777261297,214,0 +170777261345,214,0 +170777261393,214,0 +170777261440,214,0 +170777261488,213,0 +170777261536,213,0 +170777261584,213,0 +170777261632,213,0 +170777261680,213,0 +170777261728,213,0 +170777261775,213,0 +170777261823,213,0 +170777261871,213,0 +170777261919,214,0 +170777261967,213,0 +170777262017,214,0 +170777262064,214,0 +170777262112,214,0 +170777262160,214,0 +170777262208,214,0 +170777262256,214,0 +170777262304,214,0 +170777262351,214,0 +170777262399,214,0 +170777262449,213,0 +170777262497,213,0 +170777262545,213,0 +170777262594,213,0 +170777262642,213,0 +170777262690,213,0 +170777262738,213,0 +170777262785,213,0 +170777262833,213,0 +170777262881,213,0 +170777262930,213,0 +170777262978,213,0 +170777263026,214,0 +170777263074,214,0 +170777263122,214,0 +170777263170,214,0 +170777263217,214,0 +170777263265,214,0 +170777263313,214,0 +170777263361,213,0 +170777263410,213,0 +170777263458,213,0 +170777263506,213,0 +170777263554,213,0 +170777263602,213,0 +170777263650,213,0 +170777263697,213,0 +170777263745,213,0 +170777263793,213,0 +170777263841,213,0 +170777263889,214,0 +170777263937,214,0 +170777263984,214,0 +170777264032,214,0 +170777264080,214,0 +170777264128,214,0 +170777264176,214,0 +170777264223,214,0 +170777264271,213,0 +170777264319,213,0 +170777264367,213,0 +170777264414,213,0 +170777264462,213,0 +170777264510,213,0 +170777264558,213,0 +170777264606,213,0 +170777264654,213,0 +170777264702,213,0 +170777264750,213,0 +170777264797,213,0 +170777264845,213,0 +170777264893,214,0 +170777264941,214,0 +170777264989,214,0 +170777265037,214,0 +170777265084,214,0 +170777265132,214,0 +170777265180,214,0 +170777265230,213,0 +170777265279,213,0 +170777265327,213,0 +170777265375,213,0 +170777265423,213,0 +170777265471,213,0 +170777265519,213,0 +170777265567,213,0 +170777265614,213,0 +170777265662,213,0 +170777265710,213,0 +170777265758,213,0 +170777265806,213,0 +170777265855,214,0 +170777265903,214,0 +170777265951,214,0 +170777265998,214,0 +170777266046,214,0 +170777266094,214,0 +170777266142,213,0 +170777266189,213,0 +170777266237,213,0 +170777266285,213,0 +170777266333,213,0 +170777266383,213,0 +170777266432,213,0 +170777266480,213,0 +170777266529,213,0 +170777266577,213,0 +170777266625,213,0 +170777266673,213,0 +170777266721,213,0 +170777266771,214,0 +170777266820,214,0 +170777266870,213,0 +170777266918,214,0 +170777266966,214,0 +170777267014,214,0 +170777267063,213,0 +170777267111,213,0 +170777267159,213,0 +170777267207,213,0 +170777267256,213,0 +170777267306,213,0 +170777267354,213,0 +170777267403,213,0 +170777267451,213,0 +170777267499,213,0 +170777267547,214,0 +170777267595,214,0 +170777267643,214,0 +170777267691,214,0 +170777267739,214,0 +170777267788,214,0 +170777267836,214,0 +170777267886,214,0 +170777267934,214,0 +170777267983,213,0 +170777268031,213,0 +170777268081,213,0 +170777268129,213,0 +170777268177,213,0 +170777268226,213,0 +170777268274,213,0 +170777268323,213,0 +170777268373,214,0 +170777268421,214,0 +170777268469,214,0 +170777268517,214,0 +170777268564,214,0 +170777268612,214,0 +170777268660,214,0 +170777268708,214,0 +170777268758,215,0 +170777268806,215,0 +170777268855,214,0 +170777268903,214,0 +170777268952,213,0 +170777269002,213,0 +170777269051,213,0 +170777269099,213,0 +170777269149,213,0 +170777269197,213,0 +170777269245,213,0 +170777269294,214,0 +170777269342,214,0 +170777269390,214,0 +170777269440,214,0 +170777269489,214,0 +170777269537,214,0 +170777269585,214,0 +170777269633,215,0 +170777269681,214,0 +170777269729,214,0 +170777269778,214,0 +170777269828,214,0 +170777269877,213,0 +170777269925,213,0 +170777269973,213,0 +170777270023,213,0 +170777270071,213,0 +170777270119,214,0 +170777270167,214,0 +170777270214,214,0 +170777270262,214,0 +170777270310,214,0 +170777270358,214,0 +170777270408,214,0 +170777270457,214,0 +170777270505,214,0 +170777270553,214,0 +170777270601,214,0 +170777270651,214,0 +170777270698,214,0 +170777270746,214,0 +170777270796,213,0 +170777270844,213,0 +170777270892,213,0 +170777270939,214,0 +170777270987,214,0 +170777271035,214,0 +170777271083,214,0 +170777271131,214,0 +170777271179,214,0 +170777271227,214,0 +170777271275,214,0 +170777271323,215,0 +170777271372,215,0 +170777271422,215,0 +170777271470,214,0 +170777271518,214,0 +170777271565,215,0 +170777271615,214,0 +170777271663,214,0 +170777271712,213,0 +170777271760,213,0 +170777271808,213,0 +170777271858,213,0 +170777271906,213,0 +170777271954,213,0 +170777272002,214,0 +170777272051,214,0 +170777272101,214,0 +170777272150,214,0 +170777272200,214,0 +170777272247,214,0 +170777272295,214,0 +170777272343,214,0 +170777272393,214,0 +170777272441,215,0 +170777272489,214,0 +170777272537,215,0 +170777272584,214,0 +170777272632,214,0 +170777272680,213,0 +170777272728,213,0 +170777272776,213,0 +170777272824,213,0 +170777272874,213,0 +170777272923,213,0 +170777272971,213,0 +170777273019,214,0 +170777273067,214,0 +170777273115,214,0 +170777273163,214,0 +170777273211,214,0 +170777273258,214,0 +170777273306,214,0 +170777273354,214,0 +170777273404,214,0 +170777273452,214,0 +170777273501,214,0 +170777273549,214,0 +170777273598,213,0 +170777273646,213,0 +170777273694,213,0 +170777273744,213,0 +170777273792,213,0 +170777273840,213,0 +170777273887,214,0 +170777273937,214,0 +170777273985,214,0 +170777274033,214,0 +170777274081,214,0 +170777274128,214,0 +170777274176,214,0 +170777274226,214,0 +170777274274,214,0 +170777274322,214,0 +170777274369,214,0 +170777274417,214,0 +170777274465,214,0 +170777274513,213,0 +170777274561,213,0 +170777274609,213,0 +170777274657,213,0 +170777274706,213,0 +170777274754,213,0 +170777274802,214,0 +170777274850,214,0 +170777274899,214,0 +170777274949,213,0 +170777274997,214,0 +170777275046,214,0 +170777275094,214,0 +170777275142,214,0 +170777275190,214,0 +170777275238,214,0 +170777275287,214,0 +170777275335,214,0 +170777275383,214,0 +170777275431,213,0 +170777275481,213,0 +170777275529,213,0 +170777275576,213,0 +170777275624,213,0 +170777275672,213,0 +170777275720,213,0 +170777275768,213,0 +170777275816,213,0 +170777275865,213,0 +170777275913,213,0 +170777275961,214,0 +170777276009,214,0 +170777276057,214,0 +170777276105,214,0 +170777276153,214,0 +170777276201,214,0 +170777276249,214,0 +170777276298,214,0 +170777276346,214,0 +170777276394,213,0 +170777276442,213,0 +170777276490,213,0 +170777276538,213,0 +170777276586,213,0 +170777276636,213,0 +170777276685,213,0 +170777276733,213,0 +170777276781,213,0 +170777276829,213,0 +170777276877,214,0 +170777276925,214,0 +170777276973,214,0 +170777277022,214,0 +170777277070,214,0 +170777277118,214,0 +170777277166,214,0 +170777277216,214,0 +170777277264,215,0 +170777277313,213,0 +170777277361,213,0 +170777277409,213,0 +170777277457,213,0 +170777277506,213,0 +170777277556,213,0 +170777277604,213,0 +170777277652,213,0 +170777277700,213,0 +170777277748,213,0 +170777277796,213,0 +170777277843,213,0 +170777277893,213,0 +170777277942,214,0 +170777277992,214,0 +170777278040,214,0 +170777278088,214,0 +170777278137,214,0 +170777278185,214,0 +170777278234,213,0 +170777278282,213,0 +170777278330,213,0 +170777278378,213,0 +170777278428,213,0 +170777278477,213,0 +170777278525,213,0 +170777278573,213,0 +170777278622,213,0 +170777278670,213,0 +170777278718,213,0 +170777278766,213,0 +170777278814,213,0 +170777278862,213,0 +170777278910,213,0 +170777278958,213,0 +170777279007,213,0 +170777279055,213,0 +170777279105,213,0 +170777279153,214,0 +170777279202,214,0 +170777279250,214,0 +170777279299,214,0 +170777279347,214,0 +170777279397,214,0 +170777279445,215,0 +170777279493,215,0 +170777279541,214,0 +170777279589,214,0 +170777279637,213,0 +170777279685,213,0 +170777279733,213,0 +170777279780,213,0 +170777279830,213,0 +170777279878,213,0 +170777279926,213,0 +170777279974,213,0 +170777280022,213,0 +170777280071,213,0 +170777280119,213,0 +170777280167,213,0 +170777280217,214,0 +170777280266,214,0 +170777280314,214,0 +170777280362,214,0 +170777280410,214,0 +170777280459,214,0 +170777280509,214,0 +170777280557,213,0 +170777280605,213,0 +170777280654,213,0 +170777280702,213,0 +170777280751,213,0 +170777280799,213,0 +170777280847,213,0 +170777280895,213,0 +170777280945,213,0 +170777280993,213,0 +170777281041,213,0 +170777281089,214,0 +170777281138,214,0 +170777281186,214,0 +170777281235,214,0 +170777281283,214,0 +170777281333,214,0 +170777281381,214,0 +170777281430,214,0 +170777281478,213,0 +170777281528,213,0 +170777281576,213,0 +170777281624,213,0 +170777281672,213,0 +170777281720,213,0 +170777281768,213,0 +170777281817,213,0 +170777281865,213,0 +170777281913,214,0 +170777281962,213,0 +170777282010,214,0 +170777282060,214,0 +170777282108,214,0 +170777282157,214,0 +170777282207,214,0 +170777282255,214,0 +170777282303,214,0 +170777282352,214,0 +170777282400,213,0 +170777282448,213,0 +170777282496,213,0 +170777282544,213,0 +170777282593,213,0 +170777282641,213,0 +170777282691,213,0 +170777282739,213,0 +170777282787,213,0 +170777282835,214,0 +170777282882,214,0 +170777282930,214,0 +170777282978,214,0 +170777283026,214,0 +170777283074,214,0 +170777283124,214,0 +170777283172,214,0 +170777283220,214,0 +170777283267,214,0 +170777283317,214,0 +170777283365,213,0 +170777283413,213,0 +170777283461,213,0 +170777283510,213,0 +170777283560,213,0 +170777283608,213,0 +170777283655,213,0 +170777283703,214,0 +170777283753,214,0 +170777283802,214,0 +170777283852,214,0 +170777283900,214,0 +170777283948,214,0 +170777283995,214,0 +170777284043,214,0 +170777284091,214,0 +170777284139,214,0 +170777284187,214,0 +170777284235,214,0 +170777284283,213,0 +170777284331,213,0 +170777284380,213,0 +170777284430,213,0 +170777284478,213,0 +170777284526,213,0 +170777284575,213,0 +170777284623,214,0 +170777284673,214,0 +170777284721,214,0 +170777284768,214,0 +170777284816,214,0 +170777284864,214,0 +170777284912,214,0 +170777284960,214,0 +170777285008,214,0 +170777285057,214,0 +170777285107,215,0 +170777285155,214,0 +170777285204,213,0 +170777285252,213,0 +170777285300,213,0 +170777285348,213,0 +170777285396,213,0 +170777285445,214,0 +170777285493,214,0 +170777285541,214,0 +170777285590,214,0 +170777285638,214,0 +170777285686,214,0 +170777285734,214,0 +170777285784,214,0 +170777285833,214,0 +170777285881,215,0 +170777285930,215,0 +170777285978,214,0 +170777286028,215,0 +170777286077,215,0 +170777286125,213,0 +170777286173,213,0 +170777286221,213,0 +170777286269,213,0 +170777286317,213,0 +170777286365,213,0 +170777286413,214,0 +170777286462,213,0 +170777286510,214,0 +170777286558,214,0 +170777286606,214,0 +170777286653,214,0 +170777286701,214,0 +170777286749,214,0 +170777286797,215,0 +170777286845,215,0 +170777286893,215,0 +170777286940,214,0 +170777286988,214,0 +170777287036,214,0 +170777287084,213,0 +170777287133,213,0 +170777287181,213,0 +170777287229,213,0 +170777287277,213,0 +170777287325,213,0 +170777287373,213,0 +170777287420,213,0 +170777287468,213,0 +170777287516,214,0 +170777287564,214,0 +170777287612,214,0 +170777287660,214,0 +170777287708,214,0 +170777287755,214,0 +170777287803,214,0 +170777287851,214,0 +170777287899,214,0 +170777287947,214,0 +170777287996,213,0 +170777288044,213,0 +170777288092,213,0 +170777288140,213,0 +170777288189,213,0 +170777288237,213,0 +170777288285,213,0 +170777288334,213,0 +170777288382,213,0 +170777288430,213,0 +170777288478,213,0 +170777288526,214,0 +170777288574,213,0 +170777288623,214,0 +170777288671,214,0 +170777288719,214,0 +170777288767,214,0 +170777288815,214,0 +170777288862,214,0 +170777288910,213,0 +170777288958,213,0 +170777289006,213,0 +170777289055,213,0 +170777289103,213,0 +170777289151,213,0 +170777289199,213,0 +170777289247,213,0 +170777289295,213,0 +170777289342,213,0 +170777289390,214,0 +170777289438,214,0 +170777289486,214,0 +170777289534,214,0 +170777289581,214,0 +170777289630,214,0 +170777289678,214,0 +170777289726,214,0 +170777289774,214,0 +170777289822,214,0 +170777289871,213,0 +170777289919,213,0 +170777289967,213,0 +170777290015,213,0 +170777290063,213,0 +170777290112,213,0 +170777290160,213,0 +170777290208,213,0 +170777290256,213,0 +170777290304,214,0 +170777290352,214,0 +170777290399,214,0 +170777290447,214,0 +170777290495,214,0 +170777290543,214,0 +170777290591,214,0 +170777290640,214,0 +170777290688,214,0 +170777290736,214,0 +170777290784,213,0 +170777290832,213,0 +170777290882,213,0 +170777290930,213,0 +170777290979,213,0 +170777291029,213,0 +170777291077,213,0 +170777291126,213,0 +170777291176,213,0 +170777291224,213,0 +170777291272,213,0 +170777291319,214,0 +170777291368,214,0 +170777291415,214,0 +170777291463,214,0 +170777291511,214,0 +170777291559,214,0 +170777291607,214,0 +170777291655,214,0 +170777291703,213,0 +170777291751,213,0 +170777291801,213,0 +170777291848,213,0 +170777291898,213,0 +170777291946,213,0 +170777291995,213,0 +170777292045,213,0 +170777292093,213,0 +170777292142,213,0 +170777292190,214,0 +170777292238,214,0 +170777292286,214,0 +170777292334,214,0 +170777292382,214,0 +170777292430,214,0 +170777292478,215,0 +170777292527,214,0 +170777292577,214,0 +170777292625,214,0 +170777292673,213,0 +170777292721,213,0 +170777292769,213,0 +170777292818,213,0 +170777292866,213,0 +170777292914,213,0 +170777292964,213,0 +170777293011,213,0 +170777293060,214,0 +170777293109,213,0 +170777293158,214,0 +170777293206,214,0 +170777293254,214,0 +170777293302,214,0 +170777293350,214,0 +170777293400,214,0 +170777293448,214,0 +170777293497,214,0 +170777293545,214,0 +170777293593,213,0 +170777293643,213,0 +170777293691,213,0 +170777293738,213,0 +170777293786,213,0 +170777293834,213,0 +170777293884,213,0 +170777293932,213,0 +170777293980,213,0 +170777294028,214,0 +170777294076,213,0 +170777294124,213,0 +170777294172,213,0 +170777294220,214,0 +170777294268,214,0 +170777294317,214,0 +170777294365,214,0 +170777294413,214,0 +170777294461,214,0 +170777294510,213,0 +170777294560,213,0 +170777294609,213,0 +170777294657,213,0 +170777294707,213,0 +170777294756,213,0 +170777294804,213,0 +170777294854,213,0 +170777294902,213,0 +170777294951,213,0 +170777295001,213,0 +170777295050,213,0 +170777295098,214,0 +170777295148,214,0 +170777295196,214,0 +170777295244,214,0 +170777295291,214,0 +170777295339,214,0 +170777295387,214,0 +170777295435,213,0 +170777295483,213,0 +170777295530,213,0 +170777295578,213,0 +170777295626,213,0 +170777295674,213,0 +170777295722,213,0 +170777295770,213,0 +170777295817,213,0 +170777295865,213,0 +170777295913,213,0 +170777295961,213,0 +170777296009,214,0 +170777296057,214,0 +170777296105,214,0 +170777296153,214,0 +170777296202,214,0 +170777296250,214,0 +170777296298,214,0 +170777296346,214,0 +170777296394,213,0 +170777296442,213,0 +170777296491,213,0 +170777296539,213,0 +170777296589,213,0 +170777296637,213,0 +170777296684,214,0 +170777296732,214,0 +170777296780,214,0 +170777296830,214,0 +170777296877,214,0 +170777296925,213,0 +170777296973,214,0 +170777297021,214,0 +170777297069,215,0 +170777297117,215,0 +170777297165,215,0 +170777297213,215,0 +170777297261,214,0 +170777297309,213,0 +170777297357,213,0 +170777297406,214,0 +170777297454,214,0 +170777297503,214,0 +170777297551,214,0 +170777297601,214,0 +170777297649,214,0 +170777297697,214,0 +170777297744,214,0 +170777297794,214,0 +170777297842,214,0 +170777297891,214,0 +170777297939,214,0 +170777297987,215,0 +170777298035,214,0 +170777298083,214,0 +170777298131,214,0 +170777298179,214,0 +170777298227,214,0 +170777298276,213,0 +170777298324,213,0 +170777298372,213,0 +170777298420,214,0 +170777298470,214,0 +170777298518,214,0 +170777298565,214,0 +170777298613,214,0 +170777298661,214,0 +170777298709,214,0 +170777298757,214,0 +170777298806,214,0 +170777298854,215,0 +170777298903,214,0 +170777298951,214,0 +170777298999,214,0 +170777299047,215,0 +170777299095,214,0 +170777299144,214,0 +170777299192,213,0 +170777299240,213,0 +170777299288,213,0 +170777299336,213,0 +170777299383,214,0 +170777299431,214,0 +170777299479,214,0 +170777299527,214,0 +170777299575,214,0 +170777299623,214,0 +170777299671,214,0 +170777299719,214,0 +170777299766,215,0 +170777299814,214,0 +170777299863,214,0 +170777299911,215,0 +170777299959,215,0 +170777300007,214,0 +170777300055,214,0 +170777300103,213,0 +170777300151,213,0 +170777300198,213,0 +170777300246,213,0 +170777300294,213,0 +170777300344,213,0 +170777300392,213,0 +170777300439,214,0 +170777300489,214,0 +170777300537,214,0 +170777300585,214,0 +170777300633,214,0 +170777300681,214,0 +170777300730,214,0 +170777300778,214,0 +170777300828,214,0 +170777300875,214,0 +170777300925,214,0 +170777300973,214,0 +170777301021,213,0 +170777301069,213,0 +170777301117,213,0 +170777301165,213,0 +170777301213,213,0 +170777301261,213,0 +170777301309,213,0 +170777301358,213,0 +170777301408,213,0 +170777301457,213,0 +170777301505,214,0 +170777301553,214,0 +170777301603,214,0 +170777301652,214,0 +170777301700,214,0 +170777301750,214,0 +170777301799,214,0 +170777301849,214,0 +170777301897,214,0 +170777301946,213,0 +170777301994,213,0 +170777302044,213,0 +170777302092,213,0 +170777302140,213,0 +170777302189,213,0 +170777302239,213,0 +170777302288,213,0 +170777302336,213,0 +170777302384,213,0 +170777302432,213,0 +170777302480,213,0 +170777302528,213,0 +170777302576,214,0 +170777302624,214,0 +170777302673,214,0 +170777302721,214,0 +170777302769,214,0 +170777302819,214,0 +170777302868,214,0 +170777302918,213,0 +170777302966,213,0 +170777303014,213,0 +170777303061,213,0 +170777303109,213,0 +170777303157,213,0 +170777303205,213,0 +170777303253,213,0 +170777303301,213,0 +170777303349,214,0 +170777303398,214,0 +170777303446,214,0 +170777303496,214,0 +170777303545,214,0 +170777303595,214,0 +170777303643,214,0 +170777303691,214,0 +170777303739,214,0 +170777303786,214,0 +170777303834,213,0 +170777303882,213,0 +170777303932,213,0 +170777303980,213,0 +170777304028,213,0 +170777304077,213,0 +170777304125,213,0 +170777304173,213,0 +170777304221,213,0 +170777304269,213,0 +170777304318,214,0 +170777304368,214,0 +170777304416,214,0 +170777304464,214,0 +170777304512,213,0 +170777304560,213,0 +170777304607,213,0 +170777304655,214,0 +170777304703,214,0 +170777304753,213,0 +170777304802,213,0 +170777304852,213,0 +170777304901,213,0 +170777304949,213,0 +170777304999,213,0 +170777305046,213,0 +170777305096,213,0 +170777305144,213,0 +170777305194,213,0 +170777305241,213,0 +170777305291,213,0 +170777305339,213,0 +170777305387,214,0 +170777305436,213,0 +170777305484,213,0 +170777305534,214,0 +170777305582,214,0 +170777305630,214,0 +170777305677,213,0 +170777305727,213,0 +170777305775,213,0 +170777305823,213,0 +170777305871,213,0 +170777305920,213,0 +170777305968,213,0 +170777306016,213,0 +170777306064,213,0 +170777306113,214,0 +170777306161,213,0 +170777306211,213,0 +170777306259,214,0 +170777306307,214,0 +170777306356,214,0 +170777306406,214,0 +170777306454,214,0 +170777306503,214,0 +170777306551,214,0 +170777306599,213,0 +170777306647,213,0 +170777306696,213,0 +170777306746,213,0 +170777306794,213,0 +170777306842,213,0 +170777306891,213,0 +170777306939,213,0 +170777306987,213,0 +170777307035,213,0 +170777307083,214,0 +170777307131,214,0 +170777307179,214,0 +170777307228,214,0 +170777307276,214,0 +170777307324,214,0 +170777307372,214,0 +170777307421,214,0 +170777307469,214,0 +170777307517,214,0 +170777307565,213,0 +170777307613,213,0 +170777307661,213,0 +170777307709,213,0 +170777307759,213,0 +170777307807,213,0 +170777307854,213,0 +170777307902,213,0 +170777307950,213,0 +170777307998,213,0 +170777308046,214,0 +170777308094,214,0 +170777308142,214,0 +170777308190,214,0 +170777308238,214,0 +170777308287,214,0 +170777308337,214,0 +170777308385,214,0 +170777308433,214,0 +170777308481,213,0 +170777308529,213,0 +170777308578,213,0 +170777308627,213,0 +170777308675,213,0 +170777308723,213,0 +170777308771,213,0 +170777308819,213,0 +170777308867,213,0 +170777308915,213,0 +170777308962,213,0 +170777309010,213,0 +170777309058,214,0 +170777309106,214,0 +170777309156,214,0 +170777309205,214,0 +170777309253,214,0 +170777309301,214,0 +170777309349,214,0 +170777309397,213,0 +170777309445,213,0 +170777309492,213,0 +170777309540,213,0 +170777309588,213,0 +170777309636,213,0 +170777309684,213,0 +170777309732,213,0 +170777309780,213,0 +170777309830,213,0 +170777309878,213,0 +170777309926,213,0 +170777309973,213,0 +170777310021,214,0 +170777310069,214,0 +170777310117,214,0 +170777310165,214,0 +170777310215,214,0 +170777310264,214,0 +170777310312,214,0 +170777310362,213,0 +170777310409,213,0 +170777310457,213,0 +170777310507,213,0 +170777310556,213,0 +170777310606,213,0 +170777310655,213,0 +170777310703,213,0 +170777310751,213,0 +170777310799,213,0 +170777310847,213,0 +170777310895,213,0 +170777310944,214,0 +170777310992,213,0 +170777311041,214,0 +170777311089,214,0 +170777311137,214,0 +170777311185,214,0 +170777311233,214,0 +170777311282,213,0 +170777311332,213,0 +170777311381,213,0 +170777311431,213,0 +170777311480,213,0 +170777311530,213,0 +170777311578,213,0 +170777311626,213,0 +170777311675,213,0 +170777311723,213,0 +170777311771,214,0 +170777311819,214,0 +170777311867,214,0 +170777311915,214,0 +170777311963,214,0 +170777312012,214,0 +170777312060,214,0 +170777312108,214,0 +170777312158,214,0 +170777312206,213,0 +170777312255,213,0 +170777312303,213,0 +170777312351,213,0 +170777312399,213,0 +170777312447,213,0 +170777312495,213,0 +170777312543,213,0 +170777312591,213,0 +170777312639,213,0 +170777312687,214,0 +170777312736,214,0 +170777312784,214,0 +170777312832,214,0 +170777312880,214,0 +170777312928,214,0 +170777312976,214,0 +170777313024,214,0 +170777313072,214,0 +170777313121,213,0 +170777313169,213,0 +170777313217,213,0 +170777313265,213,0 +170777313313,213,0 +170777313361,213,0 +170777313409,214,0 +170777313457,214,0 +170777313504,214,0 +170777313552,214,0 +170777313600,214,0 +170777313648,214,0 +170777313696,214,0 +170777313744,214,0 +170777313793,214,0 +170777313843,214,0 +170777313892,214,0 +170777313940,215,0 +170777313988,214,0 +170777314036,214,0 +170777314084,213,0 +170777314132,213,0 +170777314181,213,0 +170777314229,213,0 +170777314279,214,0 +170777314326,214,0 +170777314374,214,0 +170777314422,214,0 +170777314470,214,0 +170777314518,214,0 +170777314566,214,0 +170777314614,214,0 +170777314663,215,0 +170777314713,214,0 +170777314761,215,0 +170777314810,215,0 +170777314858,214,0 +170777314906,214,0 +170777314954,214,0 +170777315002,213,0 +170777315050,213,0 +170777315098,213,0 +170777315147,214,0 +170777315195,214,0 +170777315243,214,0 +170777315293,214,0 +170777315341,214,0 +170777315389,214,0 +170777315437,214,0 +170777315484,214,0 +170777315534,214,0 +170777315582,215,0 +170777315630,215,0 +170777315679,215,0 +170777315727,215,0 +170777315775,215,0 +170777315823,215,0 +170777315871,214,0 +170777315919,213,0 +170777315967,213,0 +170777316015,213,0 +170777316064,214,0 +170777316114,214,0 +170777316162,214,0 +170777316210,214,0 +170777316259,214,0 +170777316307,214,0 +170777316355,214,0 +170777316403,214,0 +170777316451,214,0 +170777316500,214,0 +170777316550,214,0 +170777316599,214,0 +170777316647,215,0 +170777316695,214,0 +170777316745,214,0 +170777316793,214,0 +170777316841,214,0 +170777316889,214,0 +170777316936,214,0 +170777316984,214,0 +170777317032,214,0 +170777317082,214,0 +170777317130,214,0 +170777317179,214,0 +170777317227,214,0 +170777317275,214,0 +170777317324,214,0 +170777317372,214,0 +170777317420,214,0 +170777317468,215,0 +170777317518,215,0 +170777317566,215,0 +170777317615,214,0 +170777317663,214,0 +170777317711,214,0 +170777317760,214,0 +170777317808,213,0 +170777317856,213,0 +170777317904,213,0 +170777317952,213,0 +170777318002,213,0 +170777318051,213,0 +170777318099,214,0 +170777318149,214,0 +170777318196,214,0 +170777318244,214,0 +170777318292,214,0 +170777318340,214,0 +170777318388,214,0 +170777318436,214,0 +170777318484,214,0 +170777318534,215,0 +170777318583,214,0 +170777318631,214,0 +170777318680,214,0 +170777318728,213,0 +170777318776,213,0 +170777318824,213,0 +170777318872,213,0 +170777318922,213,0 +170777318971,214,0 +170777319019,214,0 +170777319067,214,0 +170777319115,214,0 +170777319163,214,0 +170777319211,214,0 +170777319260,214,0 +170777319310,214,0 +170777319358,215,0 +170777319406,214,0 +170777319454,214,0 +170777319503,214,0 +170777319551,214,0 +170777319599,214,0 +170777319647,213,0 +170777319695,213,0 +170777319743,213,0 +170777319791,213,0 +170777319839,213,0 +170777319889,213,0 +170777319936,213,0 +170777319984,214,0 +170777320032,214,0 +170777320080,214,0 +170777320128,213,0 +170777320176,214,0 +170777320226,214,0 +170777320274,214,0 +170777320323,214,0 +170777320371,214,0 +170777320419,214,0 +170777320467,214,0 +170777320516,214,0 +170777320564,214,0 +170777320612,213,0 +170777320660,213,0 +170777320708,212,0 +170777320756,213,0 +170777320805,213,0 +170777320853,213,0 +170777320901,213,0 +170777320951,213,0 +170777320999,213,0 +170777321048,213,0 +170777321097,213,0 +170777321145,213,0 +170777321195,214,0 +170777321243,213,0 +170777321292,214,0 +170777321342,214,0 +170777321391,214,0 +170777321439,214,0 +170777321489,214,0 +170777321537,213,0 +170777321585,213,0 +170777321633,213,0 +170777321681,213,0 +170777321728,213,0 +170777321778,213,0 +170777321827,213,0 +170777321875,213,0 +170777321925,213,0 +170777321974,213,0 +170777322022,214,0 +170777322070,214,0 +170777322119,214,0 +170777322167,214,0 +170777322215,214,0 +170777322263,214,0 +170777322313,214,0 +170777322361,214,0 +170777322408,214,0 +170777322456,213,0 +170777322504,213,0 +170777322552,213,0 +170777322600,213,0 +170777322648,213,0 +170777322696,213,0 +170777322744,213,0 +170777322792,213,0 +170777322839,213,0 +170777322889,213,0 +170777322937,214,0 +170777322985,214,0 +170777323034,214,0 +170777323082,214,0 +170777323132,214,0 +170777323181,214,0 +170777323231,214,0 +170777323279,213,0 +170777323327,214,0 +170777323376,213,0 +170777323424,212,0 +170777323472,213,0 +170777323520,213,0 +170777323568,213,0 +170777323616,213,0 +170777323664,213,0 +170777323712,213,0 +170777323760,213,0 +170777323810,213,0 +170777323858,213,0 +170777323905,213,0 +170777323953,213,0 +170777324003,213,0 +170777324051,214,0 +170777324099,214,0 +170777324147,214,0 +170777324195,214,0 +170777324244,214,0 +170777324292,214,0 +170777324340,213,0 +170777324388,213,0 +170777324436,213,0 +170777324484,213,0 +170777324532,213,0 +170777324580,213,0 +170777324629,213,0 +170777324677,213,0 +170777324725,213,0 +170777324775,213,0 +170777324824,213,0 +170777324872,213,0 +170777324922,213,0 +170777324970,214,0 +170777325018,214,0 +170777325066,214,0 +170777325114,214,0 +170777325162,214,0 +170777325209,214,0 +170777325257,213,0 +170777325305,213,0 +170777325353,212,0 +170777325401,213,0 +170777325449,213,0 +170777325498,213,0 +170777325547,213,0 +170777325595,213,0 +170777325643,213,0 +170777325691,213,0 +170777325739,213,0 +170777325787,214,0 +170777325835,214,0 +170777325883,214,0 +170777325930,214,0 +170777325978,214,0 +170777326028,214,0 +170777326076,214,0 +170777326124,214,0 +170777326172,213,0 +170777326219,213,0 +170777326267,213,0 +170777326315,213,0 +170777326363,213,0 +170777326411,213,0 +170777326459,213,0 +170777326507,213,0 +170777326554,213,0 +170777326602,213,0 +170777326652,213,0 +170777326700,213,0 +170777326747,214,0 +170777326795,214,0 +170777326843,214,0 +170777326891,214,0 +170777326939,214,0 +170777326987,214,0 +170777327035,214,0 +170777327084,214,0 +170777327132,213,0 +170777327180,213,0 +170777327228,213,0 +170777327276,213,0 +170777327324,213,0 +170777327371,213,0 +170777327421,213,0 +170777327469,213,0 +170777327517,213,0 +170777327564,213,0 +170777327612,213,0 +170777327662,214,0 +170777327710,214,0 +170777327758,214,0 +170777327805,214,0 +170777327855,214,0 +170777327903,214,0 +170777327952,214,0 +170777328000,214,0 +170777328048,213,0 +170777328097,213,0 +170777328145,213,0 +170777328193,213,0 +170777328243,213,0 +170777328291,213,0 +170777328339,213,0 +170777328386,213,0 +170777328434,213,0 +170777328482,214,0 +170777328530,214,0 +170777328578,214,0 +170777328626,214,0 +170777328674,214,0 +170777328723,214,0 +170777328771,214,0 +170777328821,214,0 +170777328870,214,0 +170777328920,214,0 +170777328969,214,0 +170777329019,213,0 +170777329068,213,0 +170777329116,213,0 +170777329164,213,0 +170777329214,213,0 +170777329263,213,0 +170777329313,213,0 +170777329361,213,0 +170777329409,213,0 +170777329456,214,0 +170777329504,214,0 +170777329554,214,0 +170777329604,214,0 +170777329653,214,0 +170777329701,214,0 +170777329749,214,0 +170777329797,214,0 +170777329847,214,0 +170777329895,214,0 +170777329942,213,0 +170777329992,213,0 +170777330040,213,0 +170777330088,213,0 +170777330136,213,0 +170777330185,213,0 +170777330235,213,0 +170777330283,213,0 +170777330331,214,0 +170777330380,214,0 +170777330428,214,0 +170777330476,214,0 +170777330524,214,0 +170777330572,214,0 +170777330621,214,0 +170777330671,215,0 +170777330719,214,0 +170777330767,214,0 +170777330816,214,0 +170777330866,213,0 +170777330914,213,0 +170777330962,213,0 +170777331011,213,0 +170777331061,213,0 +170777331109,213,0 +170777331157,213,0 +170777331206,213,0 +170777331256,214,0 +170777331304,214,0 +170777331353,214,0 +170777331401,214,0 +170777331450,214,0 +170777331500,214,0 +170777331549,214,0 +170777331599,215,0 +170777331647,215,0 +170777331696,214,0 +170777331744,214,0 +170777331793,213,0 +170777331841,213,0 +170777331890,213,0 +170777331938,213,0 +170777331986,213,0 +170777332034,213,0 +170777332082,213,0 +170777332131,213,0 +170777332181,214,0 +170777332229,213,0 +170777332277,214,0 +170777332325,214,0 +170777332373,214,0 +170777332422,214,0 +170777332472,214,0 +170777332520,214,0 +170777332569,213,0 +170777332617,214,0 +170777332665,214,0 +170777332715,213,0 +170777332763,213,0 +170777332811,213,0 +170777332859,213,0 +170777332908,213,0 +170777332957,213,0 +170777333005,213,0 +170777333053,213,0 +170777333101,213,0 +170777333151,213,0 +170777333198,213,0 +170777333246,214,0 +170777333294,214,0 +170777333342,214,0 +170777333390,214,0 +170777333438,214,0 +170777333486,214,0 +170777333534,214,0 +170777333582,214,0 +170777333630,214,0 +170777333679,213,0 +170777333729,213,0 +170777333777,213,0 +170777333825,213,0 +170777333874,213,0 +170777333924,213,0 +170777333973,213,0 +170777334021,213,0 +170777334069,213,0 +170777334117,213,0 +170777334167,214,0 +170777334215,214,0 +170777334264,214,0 +170777334312,214,0 +170777334362,214,0 +170777334409,214,0 +170777334457,214,0 +170777334505,214,0 +170777334553,213,0 +170777334603,213,0 +170777334651,213,0 +170777334699,213,0 +170777334747,213,0 +170777334795,213,0 +170777334843,213,0 +170777334891,213,0 +170777334940,213,0 +170777334990,213,0 +170777335038,213,0 +170777335086,213,0 +170777335133,214,0 +170777335181,214,0 +170777335229,214,0 +170777335279,214,0 +170777335327,214,0 +170777335375,214,0 +170777335424,214,0 +170777335472,214,0 +170777335520,213,0 +170777335568,213,0 +170777335616,213,0 +170777335666,213,0 +170777335715,213,0 +170777335765,213,0 +170777335813,213,0 +170777335862,213,0 +170777335910,213,0 +170777335958,213,0 +170777336006,213,0 +170777336054,213,0 +170777336102,213,0 +170777336150,214,0 +170777336198,214,0 +170777336247,214,0 +170777336295,214,0 +170777336343,214,0 +170777336391,214,0 +170777336439,213,0 +170777336487,213,0 +170777336536,213,0 +170777336584,213,0 +170777336632,213,0 +170777336682,213,0 +170777336731,213,0 +170777336781,213,0 +170777336830,213,0 +170777336878,214,0 +170777336926,213,0 +170777336974,214,0 +170777337022,214,0 +170777337070,214,0 +170777337118,214,0 +170777337168,214,0 +170777337217,214,0 +170777337267,214,0 +170777337315,214,0 +170777337364,213,0 +170777337412,213,0 +170777337460,213,0 +170777337508,213,0 +170777337556,213,0 +170777337604,213,0 +170777337652,213,0 +170777337700,213,0 +170777337749,214,0 +170777337797,214,0 +170777337845,213,0 +170777337893,214,0 +170777337941,214,0 +170777337989,214,0 +170777338037,214,0 +170777338085,214,0 +170777338135,214,0 +170777338184,214,0 +170777338232,214,0 +170777338282,213,0 +170777338331,213,0 +170777338379,213,0 +170777338427,213,0 +170777338475,213,0 +170777338523,213,0 +170777338572,213,0 +170777338622,214,0 +170777338671,214,0 +170777338721,214,0 +170777338770,214,0 +170777338818,214,0 +170777338866,214,0 +170777338915,214,0 +170777338963,214,0 +170777339013,215,0 +170777339062,214,0 +170777339110,214,0 +170777339160,214,0 +170777339209,214,0 +170777339257,213,0 +170777339305,213,0 +170777339353,213,0 +170777339401,213,0 +170777339449,213,0 +170777339497,213,0 +170777339545,213,0 +170777339593,213,0 +170777339642,214,0 +170777339692,214,0 +170777339740,214,0 +170777339790,214,0 +170777339837,214,0 +170777339887,214,0 +170777339935,214,0 +170777339983,214,0 +170777340031,214,0 +170777340079,214,0 +170777340127,214,0 +170777340176,213,0 +170777340224,213,0 +170777340274,213,0 +170777340322,213,0 +170777340370,213,0 +170777340417,213,0 +170777340465,213,0 +170777340515,213,0 +170777340563,214,0 +170777340611,214,0 +170777340659,214,0 +170777340706,214,0 +170777340754,214,0 +170777340802,214,0 +170777340850,214,0 +170777340898,214,0 +170777340946,214,0 +170777340993,214,0 +170777341041,214,0 +170777341091,213,0 +170777341139,213,0 +170777341187,213,0 +170777341235,213,0 +170777341283,214,0 +170777341331,213,0 +170777341379,214,0 +170777341428,214,0 +170777341478,214,0 +170777341526,214,0 +170777341575,214,0 +170777341623,214,0 +170777341671,214,0 +170777341719,214,0 +170777341767,214,0 +170777341817,214,0 +170777341866,214,0 +170777341914,214,0 +170777341962,214,0 +170777342010,214,0 +170777342058,213,0 +170777342106,213,0 +170777342154,213,0 +170777342201,213,0 +170777342249,213,0 +170777342297,214,0 +170777342345,214,0 +170777342393,213,0 +170777342441,214,0 +170777342489,214,0 +170777342537,214,0 +170777342585,214,0 +170777342634,214,0 +170777342684,214,0 +170777342733,214,0 +170777342781,214,0 +170777342831,214,0 +170777342879,214,0 +170777342926,214,0 +170777342974,213,0 +170777343022,213,0 +170777343070,213,0 +170777343119,213,0 +170777343167,213,0 +170777343215,213,0 +170777343263,213,0 +170777343311,213,0 +170777343359,213,0 +170777343407,214,0 +170777343455,214,0 +170777343502,214,0 +170777343550,214,0 +170777343600,214,0 +170777343648,214,0 +170777343696,214,0 +170777343744,214,0 +170777343791,214,0 +170777343839,214,0 +170777343887,213,0 +170777343935,213,0 +170777343983,213,0 +170777344031,213,0 +170777344078,213,0 +170777344126,213,0 +170777344174,214,0 +170777344224,214,0 +170777344271,214,0 +170777344319,214,0 +170777344367,214,0 +170777344415,214,0 +170777344464,214,0 +170777344512,214,0 +170777344560,214,0 +170777344608,214,0 +170777344656,214,0 +170777344704,214,0 +170777344752,214,0 +170777344799,214,0 +170777344847,213,0 +170777344897,213,0 +170777344945,213,0 +170777344992,213,0 +170777345040,213,0 +170777345088,213,0 +170777345136,214,0 +170777345184,214,0 +170777345231,214,0 +170777345279,214,0 +170777345327,214,0 +170777345375,214,0 +170777345423,214,0 +170777345471,214,0 +170777345519,214,0 +170777345568,214,0 +170777345616,214,0 +170777345664,214,0 +170777345712,214,0 +170777345759,213,0 +170777345807,213,0 +170777345855,213,0 +170777345903,213,0 +170777345951,213,0 +170777345999,213,0 +170777346047,214,0 +170777346095,213,0 +170777346142,214,0 +170777346190,214,0 +170777346238,214,0 +170777346286,214,0 +170777346334,214,0 +170777346382,214,0 +170777346430,214,0 +170777346478,214,0 +170777346525,214,0 +170777346573,214,0 +170777346621,214,0 +170777346669,214,0 +170777346719,213,0 +170777346767,213,0 +170777346816,213,0 +170777346864,213,0 +170777346914,213,0 +170777346962,213,0 +170777347010,213,0 +170777347057,213,0 +170777347105,213,0 +170777347155,213,0 +170777347203,213,0 +170777347251,214,0 +170777347298,214,0 +170777347346,214,0 +170777347394,214,0 +170777347442,214,0 +170777347490,214,0 +170777347538,214,0 +170777347585,214,0 +170777347633,213,0 +170777347683,213,0 +170777347731,213,0 +170777347779,213,0 +170777347826,213,0 +170777347876,213,0 +170777347924,213,0 +170777347972,213,0 +170777348020,213,0 +170777348069,213,0 +170777348117,214,0 +170777348167,214,0 +170777348216,214,0 +170777348264,214,0 +170777348312,214,0 +170777348360,214,0 +170777348408,214,0 +170777348456,214,0 +170777348504,214,0 +170777348553,213,0 +170777348601,213,0 +170777348649,213,0 +170777348697,213,0 +170777348745,213,0 +170777348794,213,0 +170777348842,213,0 +170777348892,213,0 +170777348940,213,0 +170777348987,213,0 +170777349035,214,0 +170777349085,214,0 +170777349133,214,0 +170777349181,214,0 +170777349230,214,0 +170777349278,214,0 +170777349326,214,0 +170777349374,214,0 +170777349421,214,0 +170777349469,214,0 +170777349517,213,0 +170777349565,213,0 +170777349613,213,0 +170777349660,213,0 +170777349708,213,0 +170777349756,213,0 +170777349806,213,0 +170777349853,213,0 +170777349903,214,0 +170777349952,214,0 +170777350000,214,0 +170777350050,214,0 +170777350098,214,0 +170777350147,214,0 +170777350195,214,0 +170777350245,214,0 +170777350292,214,0 +170777350340,214,0 +170777350388,214,0 +170777350436,213,0 +170777350484,213,0 +170777350534,213,0 +170777350581,213,0 +170777350629,213,0 +170777350677,213,0 +170777350725,213,0 +170777350774,213,0 +170777350822,213,0 +170777350870,213,0 +170777350918,213,0 +170777350966,214,0 +170777351014,214,0 +170777351062,214,0 +170777351109,214,0 +170777351157,214,0 +170777351207,214,0 +170777351255,214,0 +170777351302,214,0 +170777351350,213,0 +170777351398,213,0 +170777351446,213,0 +170777351494,213,0 +170777351542,213,0 +170777351590,213,0 +170777351637,213,0 +170777351685,213,0 +170777351733,213,0 +170777351781,213,0 +170777351829,213,0 +170777351877,214,0 +170777351926,214,0 +170777351974,214,0 +170777352022,214,0 +170777352071,214,0 +170777352119,214,0 +170777352167,214,0 +170777352215,214,0 +170777352263,213,0 +170777352312,213,0 +170777352362,213,0 +170777352410,213,0 +170777352458,213,0 +170777352506,213,0 +170777352553,213,0 +170777352601,213,0 +170777352649,213,0 +170777352697,213,0 +170777352745,213,0 +170777352793,214,0 +170777352842,213,0 +170777352890,214,0 +170777352939,213,0 +170777352987,214,0 +170777353035,214,0 +170777353084,214,0 +170777353132,214,0 +170777353180,214,0 +170777353230,213,0 +170777353277,213,0 +170777353325,213,0 +170777353375,213,0 +170777353423,213,0 +170777353470,213,0 +170777353518,213,0 +170777353566,213,0 +170777353614,213,0 +170777353662,213,0 +170777353710,214,0 +170777353758,213,0 +170777353805,214,0 +170777353853,214,0 +170777353901,214,0 +170777353949,214,0 +170777353997,214,0 +170777354045,214,0 +170777354092,214,0 +170777354140,213,0 +170777354190,213,0 +170777354238,213,0 +170777354285,213,0 +170777354333,213,0 +170777354381,213,0 +170777354429,213,0 +170777354477,213,0 +170777354525,213,0 +170777354573,213,0 +170777354621,213,0 +170777354669,213,0 +170777354718,213,0 +170777354766,213,0 +170777354814,213,0 +170777354862,213,0 +170777354909,213,0 +170777354957,214,0 +170777355005,214,0 +170777355053,213,0 +170777355101,213,0 +170777355149,213,0 +170777355196,213,0 +170777355246,213,0 +170777355294,213,0 +170777355342,213,0 +170777355389,213,0 +170777355437,213,0 +170777355485,213,0 +170777355533,213,0 +170777355582,213,0 +170777355630,213,0 +170777355680,213,0 +170777355727,214,0 +170777355775,214,0 +170777355823,213,0 +170777355871,214,0 +170777355919,214,0 +170777355967,214,0 +170777356014,213,0 +170777356062,213,0 +170777356110,213,0 +170777356159,213,0 +170777356207,213,0 +170777356255,213,0 +170777356303,213,0 +170777356350,213,0 +170777356398,213,0 +170777356446,213,0 +170777356495,213,0 +170777356543,213,0 +170777356591,214,0 +170777356639,214,0 +170777356688,214,0 +170777356736,214,0 +170777356784,214,0 +170777356832,214,0 +170777356880,214,0 +170777356929,213,0 +170777356977,213,0 +170777357025,213,0 +170777357073,213,0 +170777357121,213,0 +170777357168,213,0 +170777357216,213,0 +170777357264,213,0 +170777357312,214,0 +170777357360,214,0 +170777357407,214,0 +170777357455,214,0 +170777357503,214,0 +170777357551,214,0 +170777357599,214,0 +170777357649,214,0 +170777357697,214,0 +170777357745,214,0 +170777357792,214,0 +170777357840,213,0 +170777357888,213,0 +170777357938,213,0 +170777357986,213,0 +170777358034,213,0 +170777358082,213,0 +170777358131,214,0 +170777358181,214,0 +170777358228,214,0 +170777358276,214,0 +170777358324,214,0 +170777358372,214,0 +170777358420,214,0 +170777358468,214,0 +170777358516,214,0 +170777358564,214,0 +170777358612,215,0 +170777358662,214,0 +170777358710,214,0 +170777358759,214,0 +170777358807,213,0 +170777358855,213,0 +170777358904,213,0 +170777358952,213,0 +170777359000,213,0 +170777359048,213,0 +170777359096,214,0 +170777359145,214,0 +170777359193,214,0 +170777359243,214,0 +170777359291,214,0 +170777359339,214,0 +170777359388,214,0 +170777359438,214,0 +170777359486,214,0 +170777359535,214,0 +170777359583,215,0 +170777359633,214,0 +170777359682,214,0 +170777359730,214,0 +170777359778,213,0 +170777359827,213,0 +170777359875,214,0 +170777359923,214,0 +170777359971,214,0 +170777360019,214,0 +170777360067,214,0 +170777360115,214,0 +170777360163,214,0 +170777360211,214,0 +170777360261,214,0 +170777360308,214,0 +170777360358,215,0 +170777360406,214,0 +170777360454,215,0 +170777360502,215,0 +170777360550,214,0 +170777360598,214,0 +170777360647,213,0 +170777360697,213,0 +170777360745,213,0 +170777360793,213,0 +170777360842,213,0 +170777360892,214,0 +170777360940,214,0 +170777360988,214,0 +170777361036,214,0 +170777361084,214,0 +170777361133,214,0 +170777361181,214,0 +170777361229,214,0 +170777361279,214,0 +170777361326,214,0 +170777361374,214,0 +170777361424,214,0 +170777361473,214,0 +170777361521,214,0 +170777361571,213,0 +170777361620,213,0 +170777361668,213,0 +170777361718,213,0 +170777361766,213,0 +170777361814,213,0 +170777361863,214,0 +170777361911,214,0 +170777361959,214,0 +170777362009,214,0 +170777362057,214,0 +170777362105,214,0 +170777362154,214,0 +170777362202,214,0 +170777362252,214,0 +170777362300,215,0 +170777362348,214,0 +170777362395,215,0 +170777362443,214,0 +170777362491,213,0 +170777362539,213,0 +170777362587,213,0 +170777362635,213,0 +170777362683,213,0 +170777362730,213,0 +170777362778,214,0 +170777362826,214,0 +170777362874,214,0 +170777362923,214,0 +170777362970,214,0 +170777363020,214,0 +170777363068,214,0 +170777363115,214,0 +170777363163,214,0 +170777363211,215,0 +170777363259,214,0 +170777363309,215,0 +170777363357,214,0 +170777363406,214,0 +170777363454,213,0 +170777363502,213,0 +170777363551,213,0 +170777363601,213,0 +170777363650,214,0 +170777363698,214,0 +170777363746,214,0 +170777363796,214,0 +170777363844,214,0 +170777363892,214,0 +170777363940,214,0 +170777363989,214,0 +170777364037,214,0 +170777364085,214,0 +170777364133,215,0 +170777364181,215,0 +170777364228,214,0 +170777364276,215,0 +170777364324,214,0 +170777364372,213,0 +170777364420,213,0 +170777364468,213,0 +170777364516,213,0 +170777364564,213,0 +170777364612,213,0 +170777364662,213,0 +170777364711,213,0 +170777364759,214,0 +170777364809,213,0 +170777364857,214,0 +170777364905,214,0 +170777364954,214,0 +170777365004,214,0 +170777365051,214,0 +170777365101,214,0 +170777365149,214,0 +170777365197,214,0 +170777365245,214,0 +170777365293,213,0 +170777365341,213,0 +170777365390,213,0 +170777365438,213,0 +170777365486,213,0 +170777365534,213,0 +170777365582,213,0 +170777365630,213,0 +170777365679,214,0 +170777365727,214,0 +170777365775,214,0 +170777365823,214,0 +170777365873,214,0 +170777365921,214,0 +170777365970,214,0 +170777366018,214,0 +170777366066,214,0 +170777366114,214,0 +170777366162,214,0 +170777366210,214,0 +170777366259,213,0 +170777366307,213,0 +170777366355,213,0 +170777366403,213,0 +170777366451,213,0 +170777366499,213,0 +170777366546,213,0 +170777366594,213,0 +170777366642,213,0 +170777366690,214,0 +170777366738,214,0 +170777366786,214,0 +170777366834,214,0 +170777366882,214,0 +170777366930,214,0 +170777366978,214,0 +170777367026,214,0 +170777367074,214,0 +170777367121,214,0 +170777367171,213,0 +170777367220,213,0 +170777367268,213,0 +170777367316,213,0 +170777367364,213,0 +170777367412,213,0 +170777367460,213,0 +170777367510,213,0 +170777367557,213,0 +170777367607,214,0 +170777367655,214,0 +170777367705,214,0 +170777367754,214,0 +170777367802,214,0 +170777367850,214,0 +170777367898,214,0 +170777367946,214,0 +170777367994,214,0 +170777368042,214,0 +170777368090,213,0 +170777368139,213,0 +170777368187,213,0 +170777368235,213,0 +170777368283,213,0 +170777368331,213,0 +170777368379,213,0 +170777368428,213,0 +170777368476,213,0 +170777368524,213,0 +170777368572,213,0 +170777368620,213,0 +170777368668,214,0 +170777368716,214,0 +170777368764,214,0 +170777368812,214,0 +170777368859,214,0 +170777368907,214,0 +170777368955,214,0 +170777369003,214,0 +170777369051,213,0 +170777369101,213,0 +170777369150,213,0 +170777369198,213,0 +170777369246,213,0 +170777369294,213,0 +170777369343,213,0 +170777369393,213,0 +170777369441,213,0 +170777369489,213,0 +170777369537,213,0 +170777369586,213,0 +170777369634,213,0 +170777369682,214,0 +170777369732,214,0 +170777369780,214,0 +170777369829,214,0 +170777369879,214,0 +170777369926,214,0 +170777369974,213,0 +170777370022,213,0 +170777370070,213,0 +170777370118,213,0 +170777370166,213,0 +170777370214,213,0 +170777370262,213,0 +170777370310,213,0 +170777370359,213,0 +170777370409,213,0 +170777370457,213,0 +170777370507,213,0 +170777370556,213,0 +170777370604,214,0 +170777370654,214,0 +170777370702,214,0 +170777370749,214,0 +170777370799,214,0 +170777370848,214,0 +170777370896,213,0 +170777370944,213,0 +170777370992,213,0 +170777371042,213,0 +170777371090,213,0 +170777371138,213,0 +170777371187,213,0 +170777371235,213,0 +170777371285,213,0 +170777371334,213,0 +170777371382,213,0 +170777371431,214,0 +170777371479,214,0 +170777371529,214,0 +170777371577,214,0 +170777371626,214,0 +170777371676,214,0 +170777371724,214,0 +170777371772,214,0 +170777371821,213,0 +170777371869,213,0 +170777371917,213,0 +170777371967,213,0 +170777372015,213,0 +170777372062,213,0 +170777372110,213,0 +170777372158,213,0 +170777372206,213,0 +170777372256,213,0 +170777372304,213,0 +170777372352,213,0 +170777372399,213,0 +170777372447,214,0 +170777372497,214,0 +170777372545,214,0 +170777372593,214,0 +170777372641,214,0 +170777372689,214,0 +170777372738,214,0 +170777372786,213,0 +170777372834,213,0 +170777372882,213,0 +170777372929,213,0 +170777372977,213,0 +170777373025,213,0 +170777373073,213,0 +170777373121,213,0 +170777373169,214,0 +170777373218,214,0 +170777373266,214,0 +170777373314,214,0 +170777373363,214,0 +170777373411,214,0 +170777373459,214,0 +170777373507,214,0 +170777373555,215,0 +170777373603,214,0 +170777373651,214,0 +170777373700,213,0 +170777373748,213,0 +170777373796,213,0 +170777373845,213,0 +170777373893,213,0 +170777373941,213,0 +170777373989,214,0 +170777374037,214,0 +170777374085,214,0 +170777374133,214,0 +170777374180,214,0 +170777374228,214,0 +170777374276,214,0 +170777374324,214,0 +170777374372,214,0 +170777374419,214,0 +170777374467,215,0 +170777374517,215,0 +170777374565,214,0 +170777374613,213,0 +170777374661,213,0 +170777374709,213,0 +170777374756,213,0 +170777374804,213,0 +170777374854,213,0 +170777374902,214,0 +170777374949,214,0 +170777374997,214,0 +170777375045,214,0 +170777375093,214,0 +170777375141,214,0 +170777375189,214,0 +170777375237,214,0 +170777375284,214,0 +170777375332,214,0 +170777375380,214,0 +170777375428,215,0 +170777375476,215,0 +170777375524,214,0 +170777375571,213,0 +170777375619,213,0 +170777375667,213,0 +170777375715,213,0 +170777375763,213,0 +170777375811,213,0 +170777375859,213,0 +170777375907,214,0 +170777375954,214,0 +170777376002,214,0 +170777376050,214,0 +170777376098,214,0 +170777376146,214,0 +170777376194,214,0 +170777376242,215,0 +170777376290,215,0 +170777376337,215,0 +170777376385,214,0 +170777376435,215,0 +170777376482,213,0 +170777376532,213,0 +170777376580,213,0 +170777376628,213,0 +170777376675,213,0 +170777376723,213,0 +170777376773,213,0 +170777376820,213,0 +170777376868,213,0 +170777376916,214,0 +170777376964,214,0 +170777377012,214,0 +170777377060,214,0 +170777377108,214,0 +170777377156,214,0 +170777377203,214,0 +170777377251,214,0 +170777377299,214,0 +170777377348,214,0 +170777377396,214,0 +170777377444,213,0 +170777377492,213,0 +170777377541,213,0 +170777377589,213,0 +170777377637,213,0 +170777377685,213,0 +170777377733,213,0 +170777377781,213,0 +170777377830,213,0 +170777377878,213,0 +170777377926,213,0 +170777377974,214,0 +170777378021,214,0 +170777378069,214,0 +170777378117,214,0 +170777378165,214,0 +170777378212,214,0 +170777378262,214,0 +170777378310,214,0 +170777378357,213,0 +170777378405,213,0 +170777378453,213,0 +170777378501,213,0 +170777378549,213,0 +170777378596,213,0 +170777378644,213,0 +170777378692,213,0 +170777378740,213,0 +170777378788,213,0 +170777378836,213,0 +170777378883,214,0 +170777378931,214,0 +170777378979,214,0 +170777379027,214,0 +170777379075,214,0 +170777379123,214,0 +170777379171,214,0 +170777379218,214,0 +170777379266,213,0 +170777379314,213,0 +170777379362,213,0 +170777379410,213,0 +170777379458,213,0 +170777379505,213,0 +170777379553,213,0 +170777379601,213,0 +170777379649,213,0 +170777379697,213,0 +170777379745,213,0 +170777379792,213,0 +170777379840,213,0 +170777379888,214,0 +170777379936,214,0 +170777379984,214,0 +170777380032,214,0 +170777380079,214,0 +170777380127,214,0 +170777380175,214,0 +170777380223,213,0 +170777380271,213,0 +170777380318,213,0 +170777380366,213,0 +170777380414,213,0 +170777380462,213,0 +170777380510,213,0 +170777380557,213,0 +170777380605,213,0 +170777380655,213,0 +170777380704,213,0 +170777380752,214,0 +170777380800,213,0 +170777380848,213,0 +170777380896,214,0 +170777380944,213,0 +170777380992,214,0 +170777381040,214,0 +170777381088,214,0 +170777381137,213,0 +170777381185,213,0 +170777381234,213,0 +170777381282,213,0 +170777381330,213,0 +170777381378,213,0 +170777381426,213,0 +170777381473,213,0 +170777381521,213,0 +170777381569,213,0 +170777381617,213,0 +170777381665,213,0 +170777381713,214,0 +170777381760,213,0 +170777381808,214,0 +170777381858,214,0 +170777381907,214,0 +170777381955,214,0 +170777382005,214,0 +170777382053,214,0 +170777382101,213,0 +170777382149,213,0 +170777382196,213,0 +170777382244,213,0 +170777382292,213,0 +170777382340,213,0 +170777382388,213,0 +170777382435,213,0 +170777382483,214,0 +170777382531,214,0 +170777382579,214,0 +170777382627,214,0 +170777382674,214,0 +170777382722,214,0 +170777382770,214,0 +170777382818,214,0 +170777382866,214,0 +170777382914,214,0 +170777382962,214,0 +170777383011,213,0 +170777383059,213,0 +170777383107,213,0 +170777383155,213,0 +170777383202,213,0 +170777383250,213,0 +170777383298,213,0 +170777383346,213,0 +170777383394,214,0 +170777383442,214,0 +170777383490,214,0 +170777383539,214,0 +170777383587,214,0 +170777383635,214,0 +170777383684,214,0 +170777383732,214,0 +170777383781,215,0 +170777383829,214,0 +170777383877,214,0 +170777383925,213,0 +170777383974,213,0 +170777384024,213,0 +170777384072,213,0 +170777384120,213,0 +170777384168,213,0 +170777384216,213,0 +170777384265,213,0 +170777384313,213,0 +170777384361,214,0 +170777384409,214,0 +170777384457,214,0 +170777384505,214,0 +170777384553,214,0 +170777384601,214,0 +170777384649,214,0 +170777384698,214,0 +170777384748,214,0 +170777384796,214,0 +170777384844,214,0 +170777384891,213,0 +170777384939,213,0 +170777384987,213,0 +170777385035,213,0 +170777385084,213,0 +170777385132,213,0 +170777385180,213,0 +170777385228,214,0 +170777385276,214,0 +170777385324,214,0 +170777385371,214,0 +170777385419,214,0 +170777385467,214,0 +170777385515,214,0 +170777385563,215,0 +170777385611,215,0 +170777385658,214,0 +170777385706,214,0 +170777385754,214,0 +170777385802,213,0 +170777385850,213,0 +170777385898,213,0 +170777385945,213,0 +170777385995,213,0 +170777386042,213,0 +170777386090,214,0 +170777386138,214,0 +170777386186,214,0 +170777386233,214,0 +170777386281,214,0 +170777386329,214,0 +170777386377,214,0 +170777386425,214,0 +170777386473,214,0 +170777386520,214,0 +170777386568,214,0 +170777386616,214,0 +170777386666,214,0 +170777386715,214,0 +170777386763,213,0 +170777386813,213,0 +170777386862,213,0 +170777386912,213,0 +170777386961,213,0 +170777387009,213,0 +170777387057,214,0 +170777387105,213,0 +170777387153,213,0 +170777387203,214,0 +170777387251,214,0 +170777387298,214,0 +170777387346,214,0 +170777387396,214,0 +170777387443,214,0 +170777387491,215,0 +170777387539,214,0 +170777387587,214,0 +170777387635,214,0 +170777387683,213,0 +170777387731,213,0 +170777387780,213,0 +170777387828,213,0 +170777387876,213,0 +170777387926,214,0 +170777387974,213,0 +170777388023,213,0 +170777388073,213,0 +170777388121,214,0 +170777388168,214,0 +170777388216,214,0 +170777388266,214,0 +170777388314,214,0 +170777388361,214,0 +170777388409,214,0 +170777388457,214,0 +170777388505,214,0 +170777388553,215,0 +170777388601,213,0 +170777388649,213,0 +170777388697,213,0 +170777388745,213,0 +170777388792,213,0 +170777388840,213,0 +170777388888,213,0 +170777388936,213,0 +170777388984,214,0 +170777389033,214,0 +170777389081,214,0 +170777389129,214,0 +170777389177,214,0 +170777389225,214,0 +170777389274,214,0 +170777389322,214,0 +170777389372,215,0 +170777389420,214,0 +170777389468,214,0 +170777389515,213,0 +170777389563,213,0 +170777389611,213,0 +170777389659,213,0 +170777389707,213,0 +170777389755,213,0 +170777389803,213,0 +170777389850,214,0 +170777389900,213,0 +170777389949,214,0 +170777389997,214,0 +170777390045,214,0 +170777390093,214,0 +170777390142,214,0 +170777390190,214,0 +170777390240,214,0 +170777390288,214,0 +170777390336,214,0 +170777390384,214,0 +170777390432,214,0 +170777390479,213,0 +170777390529,213,0 +170777390577,213,0 +170777390625,213,0 +170777390672,213,0 +170777390720,213,0 +170777390768,213,0 +170777390816,214,0 +170777390864,214,0 +170777390912,214,0 +170777390959,214,0 +170777391007,214,0 +170777391055,214,0 +170777391103,215,0 +170777391151,214,0 +170777391199,214,0 +170777391247,214,0 +170777391295,214,0 +170777391342,214,0 +170777391390,213,0 +170777391438,213,0 +170777391488,213,0 +170777391537,213,0 +170777391587,213,0 +170777391635,213,0 +170777391682,214,0 +170777391730,213,0 +170777391778,214,0 +170777391826,214,0 +170777391874,214,0 +170777391923,214,0 +170777391971,214,0 +170777392019,214,0 +170777392067,214,0 +170777392117,214,0 +170777392164,215,0 +170777392212,214,0 +170777392260,214,0 +170777392308,213,0 +170777392356,213,0 +170777392406,213,0 +170777392454,213,0 +170777392502,213,0 +170777392549,213,0 +170777392599,213,0 +170777392647,213,0 +170777392695,214,0 +170777392743,214,0 +170777392791,214,0 +170777392840,214,0 +170777392888,214,0 +170777392936,214,0 +170777392984,214,0 +170777393032,214,0 +170777393080,214,0 +170777393128,214,0 +170777393177,214,0 +170777393225,214,0 +170777393275,213,0 +170777393322,213,0 +170777393370,213,0 +170777393418,213,0 +170777393466,213,0 +170777393514,213,0 +170777393562,213,0 +170777393610,213,0 +170777393658,213,0 +170777393706,213,0 +170777393753,214,0 +170777393801,214,0 +170777393851,214,0 +170777393899,214,0 +170777393948,214,0 +170777393998,214,0 +170777394047,214,0 +170777394095,214,0 +170777394145,214,0 +170777394193,213,0 +170777394241,212,0 +170777394290,213,0 +170777394338,213,0 +170777394388,213,0 +170777394437,213,0 +170777394487,213,0 +170777394535,213,0 +170777394583,213,0 +170777394630,213,0 +170777394678,213,0 +170777394726,213,0 +170777394774,214,0 +170777394822,214,0 +170777394870,214,0 +170777394917,214,0 +170777394965,214,0 +170777395013,214,0 +170777395061,214,0 +170777395110,213,0 +170777395158,213,0 +170777395208,213,0 +170777395257,213,0 +170777395305,213,0 +170777395353,213,0 +170777395401,213,0 +170777395451,213,0 +170777395499,213,0 +170777395546,213,0 +170777395594,214,0 +170777395642,214,0 +170777395690,214,0 +170777395738,214,0 +170777395786,214,0 +170777395835,214,0 +170777395883,214,0 +170777395932,214,0 +170777395980,214,0 +170777396030,213,0 +170777396077,213,0 +170777396125,213,0 +170777396173,213,0 +170777396221,213,0 +170777396269,213,0 +170777396317,213,0 +170777396365,213,0 +170777396413,213,0 +170777396461,214,0 +170777396511,214,0 +170777396558,214,0 +170777396606,214,0 +170777396654,214,0 +170777396702,214,0 +170777396752,214,0 +170777396800,214,0 +170777396848,215,0 +170777396896,214,0 +170777396944,214,0 +170777396991,213,0 +170777397039,213,0 +170777397087,213,0 +170777397135,213,0 +170777397183,213,0 +170777397231,213,0 +170777397280,213,0 +170777397328,213,0 +170777397378,214,0 +170777397427,214,0 +170777397475,214,0 +170777397523,214,0 +170777397571,214,0 +170777397619,214,0 +170777397666,214,0 +170777397716,215,0 +170777397764,215,0 +170777397812,214,0 +170777397861,214,0 +170777397911,213,0 +170777397960,213,0 +170777398010,213,0 +170777398058,213,0 +170777398107,213,0 +170777398155,213,0 +170777398205,213,0 +170777398253,213,0 +170777398302,213,0 +170777398352,213,0 +170777398400,214,0 +170777398447,214,0 +170777398495,214,0 +170777398545,214,0 +170777398594,214,0 +170777398644,214,0 +170777398692,214,0 +170777398740,214,0 +170777398789,214,0 +170777398837,213,0 +170777398885,213,0 +170777398935,213,0 +170777398984,213,0 +170777399032,213,0 +170777399080,213,0 +170777399128,213,0 +170777399176,213,0 +170777399224,213,0 +170777399272,213,0 +170777399319,213,0 +170777399367,213,0 +170777399415,213,0 +170777399463,213,0 +170777399513,214,0 +170777399562,214,0 +170777399612,214,0 +170777399660,214,0 +170777399708,214,0 +170777399756,213,0 +170777399803,213,0 +170777399851,213,0 +170777399901,213,0 +170777399949,213,0 +170777399997,213,0 +170777400045,213,0 +170777400093,213,0 +170777400140,213,0 +170777400188,213,0 +170777400236,213,0 +170777400284,214,0 +170777400332,214,0 +170777400380,214,0 +170777400429,214,0 +170777400477,214,0 +170777400525,214,0 +170777400575,214,0 +170777400622,214,0 +170777400670,214,0 +170777400718,213,0 +170777400768,213,0 +170777400816,213,0 +170777400864,213,0 +170777400911,213,0 +170777400959,213,0 +170777401007,213,0 +170777401057,214,0 +170777401105,213,0 +170777401153,214,0 +170777401202,214,0 +170777401250,214,0 +170777401298,214,0 +170777401346,214,0 +170777401395,214,0 +170777401443,214,0 +170777401491,214,0 +170777401539,214,0 +170777401586,214,0 +170777401634,213,0 +170777401682,213,0 +170777401730,213,0 +170777401778,213,0 +170777401826,213,0 +170777401874,213,0 +170777401921,213,0 +170777401969,213,0 +170777402017,213,0 +170777402065,213,0 +170777402113,214,0 +170777402161,214,0 +170777402208,214,0 +170777402258,214,0 +170777402306,214,0 +170777402354,214,0 +170777402401,214,0 +170777402449,214,0 +170777402497,214,0 +170777402545,213,0 +170777402593,213,0 +170777402640,213,0 +170777402688,213,0 +170777402738,213,0 +170777402786,213,0 +170777402834,213,0 +170777402881,213,0 +170777402931,213,0 +170777402980,213,0 +170777403028,214,0 +170777403076,214,0 +170777403124,214,0 +170777403172,214,0 +170777403221,214,0 +170777403271,214,0 +170777403319,214,0 +170777403368,214,0 +170777403416,214,0 +170777403466,214,0 +170777403514,213,0 +170777403563,213,0 +170777403611,213,0 +170777403659,213,0 +170777403709,213,0 +170777403757,213,0 +170777403806,213,0 +170777403854,213,0 +170777403902,214,0 +170777403950,214,0 +170777403998,214,0 +170777404046,214,0 +170777404094,214,0 +170777404142,214,0 +170777404190,214,0 +170777404239,214,0 +170777404287,214,0 +170777404336,214,0 +170777404386,214,0 +170777404434,213,0 +170777404482,213,0 +170777404530,213,0 +170777404577,213,0 +170777404625,214,0 +170777404675,214,0 +170777404723,214,0 +170777404771,214,0 +170777404819,214,0 +170777404867,214,0 +170777404915,215,0 +170777404963,214,0 +170777405010,214,0 +170777405058,215,0 +170777405106,215,0 +170777405154,215,0 +170777405202,214,0 +170777405251,214,0 +170777405299,214,0 +170777405347,213,0 +170777405395,214,0 +170777405445,213,0 +170777405494,214,0 +170777405542,214,0 +170777405590,214,0 +170777405638,214,0 +170777405686,214,0 +170777405734,214,0 +170777405781,214,0 +170777405829,214,0 +170777405877,214,0 +170777405925,215,0 +170777405974,215,0 +170777406022,214,0 +170777406070,215,0 +170777406118,214,0 +170777406166,214,0 +170777406214,214,0 +170777406262,214,0 +170777406309,213,0 +170777406357,213,0 +170777406405,213,0 +170777406453,213,0 +170777406502,213,0 +170777406550,214,0 +170777406600,214,0 +170777406648,214,0 +170777406696,214,0 +170777406744,214,0 +170777406793,214,0 +170777406841,214,0 +170777406889,215,0 +170777406937,214,0 +170777406985,214,0 +170777407033,214,0 +170777407082,214,0 +170777407132,214,0 +170777407180,214,0 +170777407229,213,0 +170777407277,213,0 +170777407327,213,0 +170777407376,213,0 +170777407424,213,0 +170777407472,213,0 +170777407520,214,0 +170777407569,214,0 +170777407619,214,0 +170777407668,214,0 +170777407716,214,0 +170777407764,214,0 +170777407812,214,0 +170777407860,214,0 +170777407908,214,0 +170777407958,214,0 +170777408006,214,0 +170777408054,214,0 +170777408101,214,0 +170777408149,213,0 +170777408197,213,0 +170777408245,213,0 +170777408293,213,0 +170777408343,214,0 +170777408392,214,0 +170777408440,213,0 +170777408488,214,0 +170777408536,214,0 +170777408584,214,0 +170777408632,214,0 +170777408681,214,0 +170777408729,214,0 +170777408777,214,0 +170777408825,214,0 +170777408875,214,0 +170777408922,214,0 +170777408972,214,0 +170777409020,214,0 +170777409069,213,0 +170777409119,213,0 +170777409167,213,0 +170777409216,213,0 +170777409264,213,0 +170777409314,213,0 +170777409363,213,0 +170777409411,213,0 +170777409459,213,0 +170777409507,213,0 +170777409555,214,0 +170777409604,214,0 +170777409652,214,0 +170777409700,214,0 +170777409748,214,0 +170777409796,214,0 +170777409844,214,0 +170777409892,214,0 +170777409940,214,0 +170777409990,214,0 +170777410037,213,0 +170777410085,213,0 +170777410135,213,0 +170777410184,213,0 +170777410232,213,0 +170777410280,213,0 +170777410328,213,0 +170777410376,213,0 +170777410424,213,0 +170777410474,214,0 +170777410523,214,0 +170777410571,214,0 +170777410619,214,0 +170777410667,214,0 +170777410715,214,0 +170777410764,214,0 +170777410812,214,0 +170777410860,214,0 +170777410909,214,0 +170777410957,213,0 +170777411007,213,0 +170777411056,213,0 +170777411106,213,0 +170777411153,213,0 +170777411203,213,0 +170777411251,213,0 +170777411299,213,0 +170777411347,213,0 +170777411396,213,0 +170777411446,213,0 +170777411494,214,0 +170777411542,214,0 +170777411590,214,0 +170777411638,214,0 +170777411687,214,0 +170777411735,214,0 +170777411783,214,0 +170777411833,214,0 +170777411880,213,0 +170777411930,213,0 +170777411978,213,0 +170777412026,213,0 +170777412074,213,0 +170777412123,213,0 +170777412171,213,0 +170777412219,213,0 +170777412269,213,0 +170777412316,213,0 +170777412364,213,0 +170777412412,213,0 +170777412460,213,0 +170777412510,214,0 +170777412559,214,0 +170777412607,214,0 +170777412655,214,0 +170777412703,214,0 +170777412752,214,0 +170777412800,213,0 +170777412848,213,0 +170777412898,213,0 +170777412946,213,0 +170777412994,213,0 +170777413042,213,0 +170777413089,213,0 +170777413139,213,0 +170777413187,213,0 +170777413235,213,0 +170777413284,213,0 +170777413332,214,0 +170777413380,213,0 +170777413430,214,0 +170777413478,213,0 +170777413526,214,0 +170777413574,214,0 +170777413622,214,0 +170777413669,214,0 +170777413717,213,0 +170777413765,213,0 +170777413815,213,0 +170777413864,213,0 +170777413912,213,0 +170777413960,213,0 +170777414009,213,0 +170777414057,213,0 +170777414105,213,0 +170777414153,213,0 +170777414201,213,0 +170777414249,213,0 +170777414297,213,0 +170777414345,214,0 +170777414393,214,0 +170777414440,214,0 +170777414488,214,0 +170777414536,214,0 +170777414584,214,0 +170777414632,214,0 +170777414680,213,0 +170777414728,213,0 +170777414776,213,0 +170777414823,213,0 +170777414873,213,0 +170777414921,213,0 +170777414969,213,0 +170777415017,213,0 +170777415066,213,0 +170777415116,213,0 +170777415165,213,0 +170777415213,213,0 +170777415261,213,0 +170777415309,213,0 +170777415357,213,0 +170777415405,214,0 +170777415453,214,0 +170777415501,214,0 +170777415549,214,0 +170777415598,213,0 +170777415646,213,0 +170777415696,213,0 +170777415745,213,0 +170777415795,213,0 +170777415843,213,0 +170777415891,213,0 +170777415939,213,0 +170777415986,213,0 +170777416034,213,0 +170777416082,214,0 +170777416132,214,0 +170777416180,214,0 +170777416227,214,0 +170777416275,214,0 +170777416323,214,0 +170777416371,214,0 +170777416419,214,0 +170777416467,214,0 +170777416517,213,0 +170777416565,213,0 +170777416614,213,0 +170777416662,213,0 +170777416711,213,0 +170777416761,213,0 +170777416809,213,0 +170777416857,213,0 +170777416905,213,0 +170777416954,214,0 +170777417002,214,0 +170777417050,214,0 +170777417098,214,0 +170777417146,214,0 +170777417194,214,0 +170777417242,214,0 +170777417290,214,0 +170777417338,214,0 +170777417386,214,0 +170777417435,214,0 +170777417483,213,0 +170777417533,213,0 +170777417581,213,0 +170777417629,213,0 +170777417678,213,0 +170777417726,213,0 +170777417776,213,0 +170777417824,214,0 +170777417871,213,0 +170777417919,214,0 +170777417967,214,0 +170777418015,214,0 +170777418063,214,0 +170777418111,214,0 +170777418161,214,0 +170777418208,214,0 +170777418256,214,0 +170777418306,214,0 +170777418356,214,0 +170777418405,213,0 +170777418453,213,0 +170777418501,213,0 +170777418549,213,0 +170777418597,213,0 +170777418646,213,0 +170777418694,214,0 +170777418744,214,0 +170777418792,214,0 +170777418840,214,0 +170777418888,214,0 +170777418935,214,0 +170777418983,214,0 +170777419031,214,0 +170777419079,214,0 +170777419127,215,0 +170777419175,214,0 +170777419223,214,0 +170777419271,214,0 +170777419321,213,0 +170777419369,213,0 +170777419417,213,0 +170777419464,214,0 +170777419512,214,0 +170777419562,213,0 +170777419611,214,0 +170777419661,214,0 +170777419710,214,0 +170777419758,214,0 +170777419806,214,0 +170777419854,214,0 +170777419904,214,0 +170777419953,214,0 +170777420001,214,0 +170777420049,215,0 +170777420099,214,0 +170777420147,214,0 +170777420195,214,0 +170777420243,213,0 +170777420292,213,0 +170777420340,213,0 +170777420388,213,0 +170777420436,213,0 +170777420484,213,0 +170777420532,213,0 +170777420580,214,0 +170777420627,214,0 +170777420677,214,0 +170777420725,214,0 +170777420774,214,0 +170777420822,214,0 +170777420870,214,0 +170777420918,214,0 +170777420966,214,0 +170777421014,214,0 +170777421062,214,0 +170777421110,214,0 +170777421160,213,0 +170777421208,213,0 +170777421256,213,0 +170777421303,213,0 +170777421351,213,0 +170777421401,214,0 +170777421450,213,0 +170777421498,214,0 +170777421546,214,0 +170777421594,214,0 +170777421642,214,0 +170777421691,214,0 +170777421739,215,0 +170777421787,215,0 +170777421837,214,0 +170777421885,214,0 +170777421932,215,0 +170777421980,214,0 +170777422030,214,0 +170777422078,214,0 +170777422125,213,0 +170777422175,213,0 +170777422223,213,0 +170777422271,213,0 +170777422318,213,0 +170777422366,213,0 +170777422414,213,0 +170777422462,213,0 +170777422510,213,0 +170777422559,214,0 +170777422607,214,0 +170777422655,214,0 +170777422703,214,0 +170777422750,214,0 +170777422798,214,0 +170777422848,214,0 +170777422896,214,0 +170777422943,214,0 +170777422991,214,0 +170777423039,213,0 +170777423087,213,0 +170777423135,213,0 +170777423183,213,0 +170777423231,213,0 +170777423279,213,0 +170777423328,213,0 +170777423376,213,0 +170777423426,213,0 +170777423475,213,0 +170777423523,213,0 +170777423571,213,0 +170777423619,214,0 +170777423669,214,0 +170777423717,214,0 +170777423765,214,0 +170777423813,214,0 +170777423862,214,0 +170777423910,214,0 +170777423958,213,0 +170777424006,213,0 +170777424054,213,0 +170777424102,213,0 +170777424150,213,0 +170777424197,213,0 +170777424247,213,0 +170777424295,213,0 +170777424344,213,0 +170777424392,213,0 +170777424442,213,0 +170777424490,214,0 +170777424538,214,0 +170777424586,214,0 +170777424634,214,0 +170777424683,214,0 +170777424733,214,0 +170777424781,214,0 +170777424830,214,0 +170777424880,214,0 +170777424928,213,0 +170777424975,213,0 +170777425023,213,0 +170777425071,213,0 +170777425119,213,0 +170777425167,213,0 +170777425217,213,0 +170777425266,213,0 +170777425314,213,0 +170777425362,214,0 +170777425410,214,0 +170777425458,214,0 +170777425506,214,0 +170777425554,214,0 +170777425602,214,0 +170777425650,214,0 +170777425698,214,0 +170777425747,214,0 +170777425795,214,0 +170777425843,213,0 +170777425891,213,0 +170777425941,213,0 +170777425988,213,0 +170777426038,213,0 +170777426086,213,0 +170777426134,213,0 +170777426183,214,0 +170777426231,214,0 +170777426279,214,0 +170777426329,214,0 +170777426377,214,0 +170777426425,214,0 +170777426473,214,0 +170777426522,214,0 +170777426572,214,0 +170777426619,214,0 +170777426669,214,0 +170777426717,214,0 +170777426766,213,0 +170777426816,213,0 +170777426864,213,0 +170777426911,213,0 +170777426959,213,0 +170777427007,213,0 +170777427056,214,0 +170777427104,213,0 +170777427152,214,0 +170777427200,214,0 +170777427248,214,0 +170777427296,214,0 +170777427344,214,0 +170777427391,214,0 +170777427439,214,0 +170777427489,214,0 +170777427538,214,0 +170777427588,214,0 +170777427638,214,0 +170777427685,213,0 +170777427735,213,0 +170777427783,213,0 +170777427832,213,0 +170777427880,213,0 +170777427928,213,0 +170777427976,213,0 +170777428024,214,0 +170777428072,214,0 +170777428120,214,0 +170777428169,214,0 +170777428219,214,0 +170777428266,214,0 +170777428316,214,0 +170777428364,214,0 +170777428413,214,0 +170777428461,214,0 +170777428509,214,0 +170777428557,214,0 +170777428605,213,0 +170777428655,213,0 +170777428703,213,0 +170777428751,213,0 +170777428799,213,0 +170777428848,213,0 +170777428898,213,0 +170777428947,213,0 +170777428995,213,0 +170777429044,213,0 +170777429094,213,0 +170777429142,214,0 +170777429191,214,0 +170777429239,214,0 +170777429289,214,0 +170777429337,214,0 +170777429385,214,0 +170777429433,214,0 +170777429481,214,0 +170777429528,213,0 +170777429578,213,0 +170777429626,213,0 +170777429674,213,0 +170777429722,213,0 +170777429770,213,0 +170777429818,213,0 +170777429866,213,0 +170777429914,213,0 +170777429962,214,0 +170777430011,214,0 +170777430061,214,0 +170777430110,214,0 +170777430158,214,0 +170777430206,214,0 +170777430254,214,0 +170777430302,214,0 +170777430350,214,0 +170777430398,214,0 +170777430447,214,0 +170777430495,213,0 +170777430545,213,0 +170777430593,213,0 +170777430641,213,0 +170777430690,213,0 +170777430740,213,0 +170777430788,213,0 +170777430837,214,0 +170777430887,213,0 +170777430934,214,0 +170777430982,214,0 +170777431032,214,0 +170777431080,214,0 +170777431128,214,0 +170777431175,214,0 +170777431223,214,0 +170777431271,214,0 +170777431319,214,0 +170777431369,214,0 +170777431417,213,0 +170777431465,213,0 +170777431513,213,0 +170777431560,213,0 +170777431608,213,0 +170777431656,213,0 +170777431704,213,0 +170777431752,213,0 +170777431802,213,0 +170777431850,213,0 +170777431898,214,0 +170777431946,214,0 +170777431994,214,0 +170777432041,214,0 +170777432091,214,0 +170777432139,214,0 +170777432187,214,0 +170777432235,214,0 +170777432283,214,0 +170777432331,213,0 +170777432379,213,0 +170777432428,213,0 +170777432476,213,0 +170777432526,213,0 +170777432574,213,0 +170777432623,213,0 +170777432671,213,0 +170777432720,213,0 +170777432768,213,0 +170777432818,213,0 +170777432866,214,0 +170777432915,214,0 +170777432963,214,0 +170777433011,214,0 +170777433059,214,0 +170777433107,214,0 +170777433155,214,0 +170777433205,214,0 +170777433252,214,0 +170777433300,213,0 +170777433350,213,0 +170777433399,213,0 +170777433447,213,0 +170777433495,213,0 +170777433543,213,0 +170777433593,213,0 +170777433641,213,0 +170777433689,213,0 +170777433736,213,0 +170777433784,213,0 +170777433832,213,0 +170777433880,213,0 +170777433928,213,0 +170777433976,214,0 +170777434026,214,0 +170777434075,214,0 +170777434123,214,0 +170777434171,214,0 +170777434219,214,0 +170777434269,214,0 +170777434318,215,0 +170777434366,214,0 +170777434414,214,0 +170777434462,215,0 +170777434510,215,0 +170777434558,214,0 +170777434606,214,0 +170777434654,214,0 +170777434702,213,0 +170777434750,213,0 +170777434798,213,0 +170777434847,213,0 +170777434895,213,0 +170777434943,213,0 +170777434991,213,0 +170777435039,213,0 +170777435087,214,0 +170777435135,214,0 +170777435183,214,0 +170777435231,214,0 +170777435279,214,0 +170777435327,214,0 +170777435375,214,0 +170777435423,214,0 +170777435471,214,0 +170777435520,214,0 +170777435568,214,0 +170777435616,213,0 +170777435664,213,0 +170777435712,213,0 +170777435761,213,0 +170777435811,213,0 +170777435859,213,0 +170777435908,213,0 +170777435956,213,0 +170777436004,213,0 +170777436052,213,0 +170777436101,213,0 +170777436149,213,0 +170777436199,214,0 +170777436247,214,0 +170777436296,214,0 +170777436346,214,0 +170777436394,214,0 +170777436442,214,0 +170777436490,214,0 +170777436538,213,0 +170777436585,213,0 +170777436635,213,0 +170777436683,213,0 +170777436731,213,0 +170777436778,213,0 +170777436826,213,0 +170777436876,213,0 +170777436925,213,0 +170777436973,213,0 +170777437021,213,0 +170777437069,214,0 +170777437117,213,0 +170777437165,213,0 +170777437213,214,0 +170777437261,214,0 +170777437309,214,0 +170777437358,214,0 +170777437406,214,0 +170777437454,213,0 +170777437502,213,0 +170777437551,213,0 +170777437601,213,0 +170777437649,213,0 +170777437697,213,0 +170777437745,213,0 +170777437793,213,0 +170777437840,213,0 +170777437888,213,0 +170777437936,213,0 +170777437986,213,0 +170777438034,214,0 +170777438082,214,0 +170777438131,214,0 +170777438181,214,0 +170777438230,214,0 +170777438278,214,0 +170777438326,214,0 +170777438374,214,0 +170777438422,213,0 +170777438469,213,0 +170777438517,213,0 +170777438565,213,0 +170777438613,213,0 +170777438660,213,0 +170777438708,213,0 +170777438756,213,0 +170777438804,213,0 +170777438852,214,0 +170777438900,214,0 +170777438947,214,0 +170777438995,214,0 +170777439043,214,0 +170777439091,214,0 +170777439141,214,0 +170777439188,214,0 +170777439236,214,0 +170777439284,214,0 +170777439334,213,0 +170777439383,213,0 +170777439431,213,0 +170777439479,213,0 +170777439527,213,0 +170777439575,213,0 +170777439623,213,0 +170777439670,213,0 +170777439718,213,0 +170777439768,213,0 +170777439817,213,0 +170777439867,213,0 +170777439915,214,0 +170777439963,214,0 +170777440011,214,0 +170777440059,214,0 +170777440108,214,0 +170777440156,214,0 +170777440204,214,0 +170777440252,213,0 +170777440301,213,0 +170777440351,213,0 +170777440400,213,0 +170777440448,213,0 +170777440496,213,0 +170777440545,213,0 +170777440595,213,0 +170777440643,213,0 +170777440691,213,0 +170777440740,213,0 +170777440788,213,0 +170777440838,213,0 +170777440886,213,0 +170777440934,213,0 +170777440983,213,0 +170777441033,214,0 +170777441081,214,0 +170777441129,214,0 +170777441177,214,0 +170777441225,213,0 +170777441273,213,0 +170777441322,213,0 +170777441370,213,0 +170777441418,213,0 +170777441466,213,0 +170777441514,213,0 +170777441562,213,0 +170777441611,213,0 +170777441659,213,0 +170777441707,213,0 +170777441755,213,0 +170777441803,213,0 +170777441853,213,0 +170777441901,213,0 +170777441948,213,0 +170777441996,213,0 +170777442044,214,0 +170777442092,214,0 +170777442140,213,0 +170777442189,213,0 +170777442237,213,0 +170777442285,213,0 +170777442333,213,0 +170777442383,213,0 +170777442431,213,0 +170777442479,213,0 +170777442528,213,0 +170777442576,213,0 +170777442625,213,0 +170777442675,213,0 +170777442723,214,0 +170777442771,214,0 +170777442818,214,0 +170777442866,214,0 +170777442916,214,0 +170777442964,214,0 +170777443012,214,0 +170777443061,213,0 +170777443109,213,0 +170777443159,213,0 +170777443208,213,0 +170777443256,213,0 +170777443306,213,0 +170777443354,213,0 +170777443403,213,0 +170777443451,213,0 +170777443499,214,0 +170777443547,214,0 +170777443596,214,0 +170777443644,214,0 +170777443692,214,0 +170777443740,214,0 +170777443789,214,0 +170777443837,214,0 +170777443885,214,0 +170777443933,214,0 +170777443981,214,0 +170777444029,213,0 +170777444077,213,0 +170777444125,213,0 +170777444173,213,0 +170777444222,213,0 +170777444270,213,0 +170777444320,213,0 +170777444369,213,0 +170777444419,213,0 +170777444467,214,0 +170777444515,214,0 +170777444563,214,0 +170777444610,214,0 +170777444658,214,0 +170777444708,215,0 +170777444756,214,0 +170777444804,214,0 +170777444852,214,0 +170777444899,214,0 +170777444947,213,0 +170777444995,213,0 +170777445043,213,0 +170777445091,213,0 +170777445139,213,0 +170777445187,213,0 +170777445234,213,0 +170777445282,213,0 +170777445330,213,0 +170777445378,214,0 +170777445426,213,0 +170777445474,214,0 +170777445521,214,0 +170777445569,214,0 +170777445617,214,0 +170777445665,214,0 +170777445713,214,0 +170777445761,214,0 +170777445809,214,0 +170777445857,213,0 +170777445904,213,0 +170777445952,213,0 +170777446000,213,0 +170777446048,213,0 +170777446096,214,0 +170777446143,213,0 +170777446191,214,0 +170777446239,213,0 +170777446287,214,0 +170777446335,214,0 +170777446384,214,0 +170777446432,214,0 +170777446480,214,0 +170777446527,214,0 +170777446577,214,0 +170777446625,214,0 +170777446674,214,0 +170777446722,214,0 +170777446770,214,0 +170777446818,213,0 +170777446866,213,0 +170777446914,213,0 +170777446962,213,0 +170777447010,214,0 +170777447058,213,0 +170777447105,214,0 +170777447153,214,0 +170777447201,214,0 +170777447249,214,0 +170777447297,214,0 +170777447345,214,0 +170777447395,214,0 +170777447443,214,0 +170777447491,214,0 +170777447539,214,0 +170777447588,214,0 +170777447636,214,0 +170777447684,214,0 +170777447732,213,0 +170777447780,213,0 +170777447828,213,0 +170777447877,213,0 +170777447925,213,0 +170777447973,213,0 +170777448021,214,0 +170777448070,214,0 +170777448118,214,0 +170777448166,214,0 +170777448216,214,0 +170777448265,214,0 +170777448313,214,0 +170777448361,214,0 +170777448409,214,0 +170777448459,214,0 +170777448508,214,0 +170777448558,214,0 +170777448607,214,0 +170777448655,214,0 +170777448703,213,0 +170777448751,213,0 +170777448799,213,0 +170777448846,213,0 +170777448896,214,0 +170777448943,214,0 +170777448991,214,0 +170777449039,214,0 +170777449087,214,0 +170777449137,214,0 +170777449185,214,0 +170777449233,214,0 +170777449280,214,0 +170777449328,215,0 +170777449376,214,0 +170777449424,214,0 +170777449471,214,0 +170777449519,214,0 +170777449568,215,0 +170777449616,213,0 +170777449664,213,0 +170777449712,213,0 +170777449760,213,0 +170777449808,213,0 +170777449856,214,0 +170777449904,214,0 +170777449952,214,0 +170777450001,214,0 +170777450049,214,0 +170777450097,214,0 +170777450147,214,0 +170777450196,214,0 +170777450244,214,0 +170777450292,214,0 +170777450341,214,0 +170777450389,214,0 +170777450437,214,0 +170777450485,214,0 +170777450535,213,0 +170777450583,213,0 +170777450632,213,0 +170777450680,213,0 +170777450728,213,0 +170777450776,213,0 +170777450824,213,0 +170777450872,214,0 +170777450920,214,0 +170777450969,214,0 +170777451017,214,0 +170777451065,214,0 +170777451113,214,0 +170777451161,214,0 +170777451209,214,0 +170777451257,214,0 +170777451306,214,0 +170777451354,214,0 +170777451402,214,0 +170777451450,213,0 +170777451498,213,0 +170777451546,213,0 +170777451594,213,0 +170777451642,213,0 +170777451689,213,0 +170777451737,214,0 +170777451787,214,0 +170777451835,214,0 +170777451883,214,0 +170777451930,214,0 +170777451980,214,0 +170777452028,214,0 +170777452076,214,0 +170777452125,214,0 +170777452175,214,0 +170777452223,214,0 +170777452271,214,0 +170777452320,214,0 +170777452370,214,0 +170777452417,213,0 +170777452465,213,0 +170777452513,213,0 +170777452561,213,0 +170777452609,213,0 +170777452657,213,0 +170777452707,214,0 +170777452756,213,0 +170777452806,214,0 +170777452854,214,0 +170777452902,214,0 +170777452950,214,0 +170777452999,214,0 +170777453047,214,0 +170777453095,214,0 +170777453143,214,0 +170777453191,214,0 +170777453239,214,0 +170777453288,214,0 +170777453336,213,0 +170777453384,213,0 +170777453432,213,0 +170777453480,213,0 +170777453528,213,0 +170777453576,213,0 +170777453624,213,0 +170777453672,213,0 +170777453720,213,0 +170777453769,214,0 +170777453818,214,0 +170777453866,214,0 +170777453914,214,0 +170777453962,214,0 +170777454010,214,0 +170777454058,214,0 +170777454106,214,0 +170777454156,215,0 +170777454204,214,0 +170777454253,214,0 +170777454303,213,0 +170777454353,213,0 +170777454400,213,0 +170777454448,213,0 +170777454498,213,0 +170777454546,213,0 +170777454594,213,0 +170777454641,213,0 +170777454691,213,0 +170777454739,213,0 +170777454787,213,0 +170777454837,214,0 +170777454885,214,0 +170777454933,214,0 +170777454981,214,0 +170777455029,214,0 +170777455077,214,0 +170777455124,214,0 +170777455172,214,0 +170777455220,213,0 +170777455270,213,0 +170777455319,213,0 +170777455367,213,0 +170777455415,213,0 +170777455463,213,0 +170777455512,213,0 +170777455560,213,0 +170777455610,213,0 +170777455658,213,0 +170777455706,213,0 +170777455753,213,0 +170777455801,213,0 +170777455849,214,0 +170777455897,213,0 +170777455945,214,0 +170777455993,214,0 +170777456041,214,0 +170777456090,214,0 +170777456138,213,0 +170777456188,213,0 +170777456237,213,0 +170777456285,213,0 +170777456333,213,0 +170777456381,213,0 +170777456429,213,0 +170777456476,213,0 +170777456524,213,0 +170777456572,213,0 +170777456620,213,0 +170777456668,214,0 +170777456716,214,0 +170777456764,214,0 +170777456812,214,0 +170777456860,214,0 +170777456907,214,0 +170777456957,214,0 +170777457005,214,0 +170777457053,214,0 +170777457101,213,0 +170777457149,213,0 +170777457198,213,0 +170777457246,213,0 +170777457294,213,0 +170777457343,213,0 +170777457391,213,0 +170777457439,213,0 +170777457489,213,0 +170777457537,213,0 +170777457585,213,0 +170777457633,213,0 +170777457680,213,0 +170777457728,213,0 +170777457776,214,0 +170777457824,214,0 +170777457872,214,0 +170777457919,214,0 +170777457967,214,0 +170777458015,213,0 +170777458063,213,0 +170777458111,213,0 +170777458159,213,0 +170777458207,212,0 +170777458255,213,0 +170777458304,213,0 +170777458352,213,0 +170777458400,213,0 +170777458448,213,0 +170777458496,213,0 +170777458545,214,0 +170777458593,214,0 +170777458641,214,0 +170777458689,214,0 +170777458736,214,0 +170777458784,214,0 +170777458832,214,0 +170777458880,214,0 +170777458930,213,0 +170777458979,213,0 +170777459027,213,0 +170777459075,213,0 +170777459125,213,0 +170777459173,213,0 +170777459220,213,0 +170777459268,213,0 +170777459316,213,0 +170777459364,213,0 +170777459412,213,0 +170777459460,214,0 +170777459508,214,0 +170777459556,213,0 +170777459603,214,0 +170777459651,214,0 +170777459701,214,0 +170777459749,214,0 +170777459796,214,0 +170777459846,214,0 +170777459895,213,0 +170777459945,213,0 +170777459993,213,0 +170777460041,213,0 +170777460089,213,0 +170777460137,213,0 +170777460184,213,0 +170777460232,213,0 +170777460280,213,0 +170777460328,213,0 +170777460378,213,0 +170777460425,214,0 +170777460473,214,0 +170777460521,214,0 +170777460569,214,0 +170777460617,214,0 +170777460665,214,0 +170777460713,214,0 +170777460762,214,0 +170777460810,213,0 +170777460860,213,0 +170777460909,213,0 +170777460959,213,0 +170777461008,213,0 +170777461056,213,0 +170777461104,213,0 +170777461154,213,0 +170777461202,214,0 +170777461250,214,0 +170777461299,214,0 +170777461349,214,0 +170777461397,214,0 +170777461446,214,0 +170777461494,214,0 +170777461544,214,0 +170777461593,214,0 +170777461641,214,0 +170777461689,214,0 +170777461737,213,0 +170777461785,213,0 +170777461833,213,0 +170777461881,213,0 +170777461929,213,0 +170777461976,213,0 +170777462024,213,0 +170777462072,213,0 +170777462120,213,0 +170777462168,213,0 +170777462216,214,0 +170777462264,214,0 +170777462313,214,0 +170777462361,214,0 +170777462409,214,0 +170777462459,214,0 +170777462507,214,0 +170777462555,214,0 +170777462603,214,0 +170777462651,213,0 +170777462698,213,0 +170777462748,213,0 +170777462796,213,0 +170777462845,213,0 +170777462893,213,0 +170777462941,213,0 +170777462991,214,0 +170777463039,214,0 +170777463088,214,0 +170777463136,214,0 +170777463184,214,0 +170777463234,214,0 +170777463283,214,0 +170777463331,214,0 +170777463379,214,0 +170777463427,214,0 +170777463476,214,0 +170777463524,214,0 +170777463572,214,0 +170777463621,213,0 +170777463671,213,0 +170777463719,213,0 +170777463767,213,0 +170777463816,213,0 +170777463864,213,0 +170777463912,213,0 +170777463960,213,0 +170777464010,214,0 +170777464058,214,0 +170777464105,214,0 +170777464155,214,0 +170777464203,214,0 +170777464251,214,0 +170777464299,214,0 +170777464348,214,0 +170777464396,214,0 +170777464444,214,0 +170777464494,214,0 +170777464541,213,0 +170777464589,213,0 +170777464637,213,0 +170777464687,213,0 +170777464736,213,0 +170777464784,213,0 +170777464832,213,0 +170777464880,213,0 +170777464929,213,0 +170777464979,213,0 +170777465027,214,0 +170777465075,214,0 +170777465124,214,0 +170777465174,214,0 +170777465223,214,0 +170777465271,214,0 +170777465319,214,0 +170777465367,214,0 +170777465415,214,0 +170777465463,213,0 +170777465511,213,0 +170777465559,213,0 +170777465607,213,0 +170777465654,213,0 +170777465702,213,0 +170777465752,213,0 +170777465800,213,0 +170777465847,213,0 +170777465895,213,0 +170777465943,213,0 +170777465991,214,0 +170777466039,214,0 +170777466087,214,0 +170777466135,214,0 +170777466184,214,0 +170777466234,214,0 +170777466282,214,0 +170777466330,214,0 +170777466378,214,0 +170777466426,213,0 +170777466473,213,0 +170777466521,213,0 +170777466569,213,0 +170777466617,213,0 +170777466665,213,0 +170777466713,213,0 +170777466761,213,0 +170777466809,213,0 +170777466857,213,0 +170777466905,213,0 +170777466955,213,0 +170777467003,214,0 +170777467050,214,0 +170777467100,214,0 +170777467148,214,0 +170777467196,214,0 +170777467244,214,0 +170777467293,214,0 +170777467341,213,0 +170777467391,213,0 +170777467439,212,0 +170777467487,213,0 +170777467535,213,0 +170777467583,213,0 +170777467631,213,0 +170777467679,213,0 +170777467726,213,0 +170777467774,213,0 +170777467822,213,0 +170777467870,214,0 +170777467918,214,0 +170777467968,214,0 +170777468017,214,0 +170777468065,214,0 +170777468113,214,0 +170777468161,214,0 +170777468208,214,0 +170777468256,213,0 +170777468306,213,0 +170777468354,213,0 +170777468402,213,0 +170777468450,213,0 +170777468497,213,0 +170777468545,213,0 +170777468593,213,0 +170777468641,213,0 +170777468689,213,0 +170777468737,213,0 +170777468785,213,0 +170777468833,214,0 +170777468881,214,0 +170777468929,214,0 +170777468976,214,0 +170777469024,214,0 +170777469072,214,0 +170777469120,214,0 +170777469168,214,0 +170777469218,213,0 +170777469265,213,0 +170777469313,213,0 +170777469361,212,0 +170777469411,212,0 +170777469459,213,0 +170777469506,213,0 +170777469554,213,0 +170777469602,213,0 +170777469652,213,0 +170777469699,213,0 +170777469747,213,0 +170777469795,213,0 +170777469843,213,0 +170777469891,213,0 +170777469939,214,0 +170777469988,213,0 +170777470036,214,0 +170777470084,214,0 +170777470134,213,0 +170777470181,213,0 +170777470231,213,0 +170777470279,213,0 +170777470327,213,0 +170777470375,213,0 +170777470423,213,0 +170777470471,213,0 +170777470520,213,0 +170777470568,213,0 +170777470616,213,0 +170777470664,213,0 +170777470713,213,0 +170777470761,213,0 +170777470811,214,0 +170777470858,214,0 +170777470906,214,0 +170777470954,214,0 +170777471002,214,0 +170777471050,214,0 +170777471100,213,0 +170777471149,213,0 +170777471197,213,0 +170777471245,213,0 +170777471293,213,0 +170777471340,213,0 +170777471388,213,0 +170777471436,213,0 +170777471486,213,0 +170777471534,213,0 +170777471582,214,0 +170777471630,214,0 +170777471678,214,0 +170777471726,214,0 +170777471774,214,0 +170777471823,214,0 +170777471871,214,0 +170777471919,214,0 +170777471967,214,0 +170777472015,213,0 +170777472063,213,0 +170777472111,213,0 +170777472159,213,0 +170777472206,213,0 +170777472254,213,0 +170777472302,213,0 +170777472350,213,0 +170777472398,213,0 +170777472446,213,0 +170777472494,214,0 +170777472544,213,0 +170777472592,214,0 +170777472639,214,0 +170777472687,214,0 +170777472735,214,0 +170777472785,214,0 +170777472833,214,0 +170777472881,214,0 +170777472929,213,0 +170777472976,213,0 +170777473024,213,0 +170777473072,213,0 +170777473120,213,0 +170777473170,213,0 +170777473218,213,0 +170777473265,213,0 +170777473315,213,0 +170777473364,214,0 +170777473412,214,0 +170777473460,214,0 +170777473510,214,0 +170777473559,214,0 +170777473607,214,0 +170777473655,214,0 +170777473704,214,0 +170777473752,214,0 +170777473802,214,0 +170777473850,214,0 +170777473899,213,0 +170777473949,213,0 +170777473997,213,0 +170777474045,213,0 +170777474093,213,0 +170777474141,213,0 +170777474189,214,0 +170777474238,214,0 +170777474286,214,0 +170777474336,214,0 +170777474384,214,0 +170777474431,214,0 +170777474479,214,0 +170777474529,214,0 +170777474577,214,0 +170777474626,214,0 +170777474676,214,0 +170777474724,214,0 +170777474772,214,0 +170777474820,213,0 +170777474869,213,0 +170777474917,213,0 +170777474965,213,0 +170777475014,213,0 +170777475062,213,0 +170777475110,213,0 +170777475158,214,0 +170777475206,214,0 +170777475254,214,0 +170777475304,214,0 +170777475352,214,0 +170777475399,214,0 +170777475449,214,0 +170777475497,214,0 +170777475545,214,0 +170777475593,214,0 +170777475640,214,0 +170777475688,214,0 +170777475738,214,0 +170777475787,213,0 +170777475835,213,0 +170777475883,213,0 +170777475931,213,0 +170777475979,213,0 +170777476027,213,0 +170777476074,213,0 +170777476122,213,0 +170777476172,213,0 +170777476221,214,0 +170777476269,214,0 +170777476317,214,0 +170777476367,214,0 +170777476415,214,0 +170777476462,214,0 +170777476510,214,0 +170777476558,214,0 +170777476606,214,0 +170777476656,214,0 +170777476705,213,0 +170777476753,213,0 +170777476801,213,0 +170777476849,213,0 +170777476897,213,0 +170777476945,213,0 +170777476994,213,0 +170777477044,213,0 +170777477092,214,0 +170777477139,214,0 +170777477187,214,0 +170777477237,214,0 +170777477285,214,0 +170777477333,214,0 +170777477381,214,0 +170777477428,214,0 +170777477478,214,0 +170777477528,214,0 +170777477575,214,0 +170777477623,214,0 +170777477671,213,0 +170777477719,213,0 +170777477767,213,0 +170777477815,214,0 +170777477863,213,0 +170777477913,214,0 +170777477962,214,0 +170777478012,214,0 +170777478060,214,0 +170777478108,214,0 +170777478157,214,0 +170777478207,214,0 +170777478254,214,0 +170777478304,214,0 +170777478353,215,0 +170777478403,215,0 +170777478451,214,0 +170777478500,214,0 +170777478548,214,0 +170777478598,213,0 +170777478647,213,0 +170777478695,213,0 +170777478745,213,0 +170777478793,213,0 +170777478840,214,0 +170777478888,214,0 +170777478936,214,0 +170777478986,214,0 +170777479034,214,0 +170777479082,214,0 +170777479129,215,0 +170777479177,214,0 +170777479227,214,0 +170777479275,214,0 +170777479323,214,0 +170777479372,214,0 +170777479421,214,0 +170777479469,214,0 +170777479517,214,0 +170777479567,213,0 +170777479614,213,0 +170777479662,213,0 +170777479710,213,0 +170777479760,213,0 +170777479808,213,0 +170777479855,213,0 +170777479903,214,0 +170777479951,214,0 +170777479999,214,0 +170777480047,214,0 +170777480095,214,0 +170777480142,214,0 +170777480190,214,0 +170777480238,214,0 +170777480286,214,0 +170777480334,214,0 +170777480384,214,0 +170777480432,214,0 +170777480480,213,0 +170777480529,213,0 +170777480579,213,0 +170777480628,213,0 +170777480678,213,0 +170777480726,213,0 +170777480775,213,0 +170777480823,213,0 +170777480871,213,0 +170777480919,213,0 +170777480967,214,0 +170777481015,214,0 +170777481065,214,0 +170777481114,214,0 +170777481162,214,0 +170777481210,214,0 +170777481258,214,0 +170777481306,214,0 +170777481354,214,0 +170777481404,214,0 +170777481452,213,0 +170777481500,213,0 +170777481549,213,0 +170777481597,213,0 +170777481645,213,0 +170777481693,213,0 +170777481741,214,0 +170777481789,214,0 +170777481837,214,0 +170777481884,214,0 +170777481932,214,0 +170777481980,214,0 +170777482029,214,0 +170777482077,214,0 +170777482127,214,0 +170777482175,214,0 +170777482223,214,0 +170777482271,214,0 +170777482319,214,0 +170777482367,213,0 +170777482416,213,0 +170777482466,213,0 +170777482514,213,0 +170777482562,213,0 +170777482610,213,0 +170777482657,214,0 +170777482705,214,0 +170777482755,214,0 +170777482803,214,0 +170777482851,214,0 +170777482900,214,0 +170777482948,214,0 +170777482996,214,0 +170777483044,214,0 +170777483093,214,0 +170777483141,214,0 +170777483189,214,0 +170777483237,214,0 +170777483287,214,0 +170777483335,213,0 +170777483382,213,0 +170777483432,213,0 +170777483480,213,0 +170777483529,213,0 +170777483579,213,0 +170777483627,213,0 +170777483675,213,0 +170777483723,213,0 +170777483771,213,0 +170777483819,213,0 +170777483867,214,0 +170777483915,214,0 +170777483962,214,0 +170777484010,214,0 +170777484058,214,0 +170777484106,214,0 +170777484154,213,0 +170777484202,214,0 +170777484250,214,0 +170777484298,213,0 +170777484346,213,0 +170777484394,213,0 +170777484441,213,0 +170777484489,213,0 +170777484539,213,0 +170777484587,213,0 +170777484635,213,0 +170777484683,213,0 +170777484732,213,0 +170777484780,213,0 +170777484828,213,0 +170777484876,213,0 +170777484924,213,0 +170777484973,213,0 +170777485021,214,0 +170777485069,214,0 +170777485119,214,0 +170777485168,214,0 +170777485218,213,0 +170777485266,213,0 +170777485314,213,0 +170777485362,213,0 +170777485410,213,0 +170777485458,213,0 +170777485506,213,0 +170777485554,213,0 +170777485603,213,0 +170777485651,213,0 +170777485699,213,0 +170777485747,213,0 +170777485795,213,0 +170777485843,213,0 +170777485891,213,0 +170777485940,214,0 +170777485988,214,0 +170777486038,214,0 +170777486086,214,0 +170777486134,214,0 +170777486182,213,0 +170777486230,213,0 +170777486277,213,0 +170777486325,213,0 +170777486373,213,0 +170777486421,213,0 +170777486471,213,0 +170777486519,213,0 +170777486567,213,0 +170777486616,213,0 +170777486664,213,0 +170777486712,213,0 +170777486761,214,0 +170777486809,213,0 +170777486857,214,0 +170777486905,214,0 +170777486953,214,0 +170777487003,214,0 +170777487052,214,0 +170777487100,213,0 +170777487148,213,0 +170777487196,213,0 +170777487244,213,0 +170777487293,213,0 +170777487341,213,0 +170777487389,213,0 +170777487437,213,0 +170777487485,213,0 +170777487534,213,0 +170777487582,213,0 +170777487631,213,0 +170777487679,213,0 +170777487727,214,0 +170777487775,214,0 +170777487822,213,0 +170777487870,214,0 +170777487918,214,0 +170777487966,214,0 +170777488014,214,0 +170777488064,213,0 +170777488113,213,0 +170777488161,213,0 +170777488211,213,0 +170777488259,213,0 +170777488307,213,0 +170777488354,213,0 +170777488404,213,0 +170777488452,213,0 +170777488500,213,0 +170777488548,213,0 +170777488596,213,0 +170777488644,213,0 +170777488691,214,0 +170777488739,214,0 +170777488787,213,0 +170777488835,213,0 +170777488885,213,0 +170777488933,214,0 +170777488981,213,0 +170777489030,213,0 +170777489078,213,0 +170777489126,213,0 +170777489175,213,0 +170777489223,213,0 +170777489271,213,0 +170777489319,213,0 +170777489367,213,0 +170777489415,213,0 +170777489463,213,0 +170777489511,213,0 +170777489558,213,0 +170777489606,213,0 +170777489654,213,0 +170777489702,214,0 +170777489750,214,0 +170777489798,214,0 +170777489846,214,0 +170777489894,214,0 +170777489942,213,0 +170777489991,213,0 +170777490039,213,0 +170777490087,213,0 +170777490135,213,0 +170777490183,213,0 +170777490231,213,0 +170777490279,213,0 +170777490328,213,0 +170777490376,213,0 +170777490426,214,0 +170777490474,214,0 +170777490522,214,0 +170777490569,214,0 +170777490617,214,0 +170777490665,214,0 +170777490715,214,0 +170777490763,214,0 +170777490811,214,0 +170777490858,214,0 +170777490906,213,0 +170777490954,213,0 +170777491002,213,0 +170777491051,213,0 +170777491099,213,0 +170777491147,213,0 +170777491195,213,0 +170777491245,213,0 +170777491294,213,0 +170777491344,213,0 +170777491393,214,0 +170777491441,214,0 +170777491489,214,0 +170777491538,214,0 +170777491586,214,0 +170777491634,214,0 +170777491682,214,0 +170777491730,214,0 +170777491780,214,0 +170777491828,213,0 +170777491876,213,0 +170777491924,213,0 +170777491972,213,0 +170777492020,213,0 +170777492068,213,0 +170777492117,213,0 +170777492165,213,0 +170777492213,214,0 +170777492261,214,0 +170777492308,214,0 +170777492356,214,0 +170777492406,214,0 +170777492454,214,0 +170777492503,214,0 +170777492553,214,0 +170777492601,214,0 +170777492649,214,0 +170777492697,214,0 +170777492744,214,0 +170777492792,213,0 +170777492840,213,0 +170777492890,213,0 +170777492939,213,0 +170777492987,213,0 +170777493035,213,0 +170777493085,213,0 +170777493133,213,0 +170777493180,214,0 +170777493228,214,0 +170777493276,214,0 +170777493326,214,0 +170777493374,214,0 +170777493422,214,0 +170777493470,214,0 +170777493518,214,0 +170777493566,214,0 +170777493614,214,0 +170777493662,214,0 +170777493711,214,0 +170777493759,213,0 +170777493807,213,0 +170777493855,213,0 +170777493903,213,0 +170777493951,213,0 +170777493999,213,0 +170777494047,214,0 +170777494095,214,0 +170777494143,213,0 +170777494192,214,0 +170777494240,214,0 +170777494288,214,0 +170777494336,214,0 +170777494383,214,0 +170777494431,214,0 +170777494479,214,0 +170777494527,214,0 +170777494577,214,0 +170777494624,214,0 +170777494674,213,0 +170777494722,213,0 +170777494770,213,0 +170777494818,213,0 +170777494866,213,0 +170777494914,213,0 +170777494963,213,0 +170777495011,213,0 +170777495060,214,0 +170777495108,214,0 +170777495156,214,0 +170777495204,214,0 +170777495252,214,0 +170777495301,214,0 +170777495349,214,0 +170777495399,214,0 +170777495447,214,0 +170777495495,214,0 +170777495543,214,0 +170777495591,214,0 +170777495639,213,0 +170777495686,213,0 +170777495734,213,0 +170777495784,213,0 +170777495832,213,0 +170777495880,213,0 +170777495928,213,0 +170777495976,213,0 +170777496024,213,0 +170777496071,214,0 +170777496121,214,0 +170777496169,214,0 +170777496218,214,0 +170777496266,214,0 +170777496314,214,0 +170777496362,214,0 +170777496410,214,0 +170777496458,214,0 +170777496508,214,0 +170777496555,213,0 +170777496603,213,0 +170777496651,213,0 +170777496699,213,0 +170777496747,213,0 +170777496797,213,0 +170777496846,213,0 +170777496894,213,0 +170777496942,213,0 +170777496991,213,0 +170777497039,213,0 +170777497087,214,0 +170777497135,214,0 +170777497183,214,0 +170777497233,214,0 +170777497281,214,0 +170777497329,214,0 +170777497376,214,0 +170777497426,214,0 +170777497475,214,0 +170777497523,213,0 +170777497571,213,0 +170777497620,213,0 +170777497670,213,0 +170777497717,213,0 +170777497765,213,0 +170777497815,213,0 +170777497863,213,0 +170777497911,214,0 +170777497959,213,0 +170777498007,213,0 +170777498055,214,0 +170777498103,214,0 +170777498150,214,0 +170777498198,214,0 +170777498248,214,0 +170777498297,214,0 +170777498345,214,0 +170777498393,214,0 +170777498441,213,0 +170777498491,213,0 +170777498538,213,0 +170777498586,213,0 +170777498634,213,0 +170777498684,213,0 +170777498732,213,0 +170777498780,213,0 +170777498828,213,0 +170777498876,213,0 +170777498925,213,0 +170777498975,214,0 +170777499023,214,0 +170777499071,214,0 +170777499119,214,0 +170777499168,214,0 +170777499218,214,0 +170777499266,214,0 +170777499315,214,0 +170777499363,215,0 +170777499411,213,0 +170777499461,213,0 +170777499510,213,0 +170777499558,213,0 +170777499608,213,0 +170777499655,213,0 +170777499703,213,0 +170777499751,213,0 +170777499799,214,0 +170777499849,213,0 +170777499897,213,0 +170777499945,214,0 +170777499994,214,0 +170777500042,214,0 +170777500090,214,0 +170777500138,214,0 +170777500186,214,0 +170777500234,214,0 +170777500282,214,0 +170777500331,213,0 +170777500379,213,0 +170777500427,213,0 +170777500477,213,0 +170777500526,213,0 +170777500576,213,0 +170777500624,213,0 +170777500673,213,0 +170777500723,213,0 +170777500771,213,0 +170777500819,213,0 +170777500867,214,0 +170777500915,214,0 +170777500964,214,0 +170777501012,214,0 +170777501060,214,0 +170777501108,213,0 +170777501156,213,0 +170777501205,214,0 +170777501253,214,0 +170777501301,213,0 +170777501349,213,0 +170777501398,213,0 +170777501446,213,0 +170777501494,213,0 +170777501542,213,0 +170777501590,213,0 +170777501638,213,0 +170777501686,213,0 +170777501735,213,0 +170777501785,213,0 +170777501832,213,0 +170777501880,213,0 +170777501930,213,0 +170777501978,213,0 +170777502026,213,0 +170777502074,213,0 +170777502122,213,0 +170777502171,214,0 +170777502219,213,0 +170777502267,213,0 +170777502315,213,0 +170777502363,213,0 +170777502411,213,0 +170777502460,213,0 +170777502510,213,0 +170777502558,213,0 +170777502606,213,0 +170777502654,213,0 +170777502702,213,0 +170777502751,213,0 +170777502801,213,0 +170777502848,213,0 +170777502896,213,0 +170777502944,214,0 +170777502992,214,0 +170777503042,214,0 +170777503090,214,0 +170777503137,214,0 +170777503185,213,0 +170777503233,213,0 +170777503281,213,0 +170777503329,213,0 +170777503377,213,0 +170777503424,212,0 +170777503472,213,0 +170777503520,213,0 +170777503568,213,0 +170777503615,213,0 +170777503663,213,0 +170777503711,213,0 +170777503759,213,0 +170777503809,214,0 +170777503856,214,0 +170777503906,214,0 +170777503954,214,0 +170777504002,214,0 +170777504049,214,0 +170777504097,214,0 +170777504145,213,0 +170777504193,213,0 +170777504241,213,0 +170777504288,213,0 +170777504338,213,0 +170777504388,213,0 +170777504437,213,0 +170777504485,213,0 +170777504533,213,0 +170777504581,213,0 +170777504629,213,0 +170777504677,213,0 +170777504724,213,0 +170777504774,214,0 +170777504822,214,0 +170777504871,214,0 +170777504919,214,0 +170777504967,214,0 +170777505015,214,0 +170777505063,213,0 +170777505111,213,0 +170777505159,213,0 +170777505207,213,0 +170777505255,213,0 +170777505302,213,0 +170777505352,213,0 +170777505400,213,0 +170777505448,213,0 +170777505496,213,0 +170777505545,214,0 +170777505593,214,0 +170777505641,214,0 +170777505690,214,0 +170777505740,214,0 +170777505788,214,0 +170777505836,214,0 +170777505884,214,0 +170777505932,214,0 +170777505979,214,0 +170777506027,213,0 +170777506075,213,0 +170777506125,213,0 +170777506173,213,0 +170777506221,213,0 +170777506269,213,0 +170777506317,213,0 +170777506364,213,0 +170777506412,213,0 +170777506460,214,0 +170777506510,214,0 +170777506558,214,0 +170777506606,214,0 +170777506655,214,0 +170777506703,214,0 +170777506753,214,0 +170777506802,214,0 +170777506852,214,0 +170777506901,214,0 +170777506949,213,0 +170777506997,213,0 +170777507045,213,0 +170777507093,214,0 +170777507141,213,0 +170777507189,213,0 +170777507238,213,0 +170777507286,214,0 +170777507334,214,0 +170777507384,214,0 +170777507432,214,0 +170777507481,214,0 +170777507529,214,0 +170777507577,214,0 +170777507625,214,0 +170777507673,215,0 +170777507721,214,0 +170777507768,215,0 +170777507816,214,0 +170777507864,214,0 +170777507913,213,0 +170777507961,213,0 +170777508011,213,0 +170777508060,213,0 +170777508108,214,0 +170777508156,214,0 +170777508205,214,0 +170777508253,214,0 +170777508301,214,0 +170777508351,214,0 +170777508400,214,0 +170777508448,214,0 +170777508496,214,0 +170777508546,214,0 +170777508594,215,0 +170777508643,214,0 +170777508693,214,0 +170777508741,214,0 +170777508790,214,0 +170777508838,214,0 +170777508886,213,0 +170777508935,213,0 +170777508983,213,0 +170777509031,214,0 +170777509079,214,0 +170777509127,214,0 +170777509175,214,0 +170777509224,214,0 +170777509272,214,0 +170777509320,214,0 +170777509368,214,0 +170777509415,214,0 +170777509463,214,0 +170777509511,215,0 +170777509559,215,0 +170777509607,214,0 +170777509655,215,0 +170777509702,214,0 +170777509750,214,0 +170777509800,213,0 +170777509848,213,0 +170777509897,213,0 +170777509945,213,0 +170777509993,213,0 +170777510041,214,0 +170777510089,214,0 +170777510137,214,0 +170777510184,214,0 +170777510232,214,0 +170777510282,214,0 +170777510330,214,0 +170777510378,214,0 +170777510427,214,0 +170777510477,214,0 +170777510525,215,0 +170777510573,214,0 +170777510620,214,0 +170777510670,214,0 +170777510718,214,0 +170777510765,213,0 +170777510813,213,0 +170777510861,213,0 +170777510909,213,0 +170777510957,213,0 +170777511005,213,0 +170777511053,213,0 +170777511101,214,0 +170777511148,214,0 +170777511196,214,0 +170777511244,214,0 +170777511292,214,0 +170777511340,214,0 +170777511388,214,0 +170777511436,214,0 +170777511484,214,0 +170777511532,214,0 +170777511580,214,0 +170777511628,214,0 +170777511677,213,0 +170777511725,213,0 +170777511773,213,0 +170777511821,213,0 +170777511869,213,0 +170777511917,213,0 +170777511964,213,0 +170777512012,213,0 +170777512060,213,0 +170777512108,213,0 +170777512156,214,0 +170777512205,213,0 +170777512255,214,0 +170777512303,214,0 +170777512351,214,0 +170777512399,214,0 +170777512448,214,0 +170777512496,214,0 +170777512546,214,0 +170777512594,214,0 +170777512643,213,0 +170777512693,213,0 +170777512742,213,0 +170777512790,213,0 +170777512839,213,0 +170777512887,213,0 +170777512935,213,0 +170777512983,213,0 +170777513031,213,0 +170777513079,213,0 +170777513129,213,0 +170777513178,213,0 +170777513226,214,0 +170777513276,213,0 +170777513325,214,0 +170777513373,214,0 +170777513421,214,0 +170777513470,214,0 +170777513518,214,0 +170777513566,213,0 +170777513614,213,0 +170777513662,213,0 +170777513710,213,0 +170777513758,213,0 +170777513806,213,0 +170777513854,213,0 +170777513904,213,0 +170777513953,213,0 +170777514001,213,0 +170777514049,213,0 +170777514097,213,0 +170777514145,213,0 +170777514195,214,0 +170777514244,214,0 +170777514294,214,0 +170777514342,214,0 +170777514389,214,0 +170777514439,214,0 +170777514488,214,0 +170777514536,213,0 +170777514586,213,0 +170777514634,213,0 +170777514682,213,0 +170777514730,213,0 +170777514778,213,0 +170777514826,213,0 +170777514873,213,0 +170777514923,213,0 +170777514971,213,0 +170777515019,213,0 +170777515067,213,0 +170777515115,214,0 +170777515162,214,0 +170777515210,214,0 +170777515260,214,0 +170777515308,214,0 +170777515356,214,0 +170777515404,214,0 +170777515453,213,0 +170777515501,213,0 +170777515549,213,0 +170777515597,213,0 +170777515646,213,0 +170777515694,213,0 +170777515742,213,0 +170777515790,213,0 +170777515838,213,0 +170777515888,213,0 +170777515936,213,0 +170777515983,214,0 +170777516033,214,0 +170777516081,214,0 +170777516129,214,0 +170777516177,214,0 +170777516225,214,0 +170777516274,214,0 +170777516322,214,0 +170777516370,214,0 +170777516418,213,0 +170777516466,213,0 +170777516514,213,0 +170777516563,213,0 +170777516611,213,0 +170777516661,213,0 +170777516710,213,0 +170777516758,213,0 +170777516808,213,0 +170777516856,213,0 +170777516904,214,0 +170777516952,214,0 +170777516999,214,0 +170777517047,214,0 +170777517095,214,0 +170777517143,214,0 +170777517191,214,0 +170777517239,214,0 +170777517289,214,0 +170777517337,214,0 +170777517384,213,0 +170777517432,213,0 +170777517480,213,0 +170777517528,213,0 +170777517578,213,0 +170777517626,213,0 +170777517675,213,0 +170777517723,213,0 +170777517771,213,0 +170777517819,213,0 +170777517867,214,0 +170777517916,214,0 +170777517964,214,0 +170777518014,214,0 +170777518063,214,0 +170777518111,214,0 +170777518159,214,0 +170777518207,214,0 +170777518256,214,0 +170777518304,213,0 +170777518352,213,0 +170777518400,213,0 +170777518448,213,0 +170777518496,213,0 +170777518544,213,0 +170777518593,213,0 +170777518643,213,0 +170777518691,214,0 +170777518739,214,0 +170777518789,214,0 +170777518836,214,0 +170777518886,214,0 +170777518935,214,0 +170777518983,214,0 +170777519031,214,0 +170777519081,214,0 +170777519129,214,0 +170777519178,214,0 +170777519226,213,0 +170777519274,213,0 +170777519322,213,0 +170777519370,213,0 +170777519418,213,0 +170777519466,213,0 +170777519514,213,0 +170777519563,213,0 +170777519611,213,0 +170777519659,214,0 +170777519707,213,0 +170777519755,214,0 +170777519803,214,0 +170777519851,214,0 +170777519899,214,0 +170777519948,214,0 +170777519998,214,0 diff --git a/laser_value/0213-08.csv b/laser_value/0213-08.csv new file mode 100644 index 0000000..9d8adf6 --- /dev/null +++ b/laser_value/0213-08.csv @@ -0,0 +1,7451 @@ +timestamp,laser_value,event +170777520046,214,0 +170777520096,214,0 +170777520144,214,0 +170777520192,213,0 +170777520240,213,0 +170777520289,213,0 +170777520337,213,0 +170777520385,213,0 +170777520433,213,0 +170777520481,213,0 +170777520529,213,0 +170777520579,213,0 +170777520627,213,0 +170777520674,213,0 +170777520724,213,0 +170777520773,213,0 +170777520821,213,0 +170777520869,214,0 +170777520919,214,0 +170777520967,214,0 +170777521015,214,0 +170777521063,214,0 +170777521111,214,0 +170777521160,213,0 +170777521208,213,0 +170777521256,213,0 +170777521304,213,0 +170777521352,213,0 +170777521400,213,0 +170777521448,213,0 +170777521495,213,0 +170777521545,213,0 +170777521594,213,0 +170777521644,213,0 +170777521692,214,0 +170777521740,214,0 +170777521788,214,0 +170777521836,214,0 +170777521884,214,0 +170777521932,214,0 +170777521980,214,0 +170777522027,214,0 +170777522075,213,0 +170777522125,213,0 +170777522173,213,0 +170777522222,213,0 +170777522270,213,0 +170777522320,213,0 +170777522368,213,0 +170777522417,213,0 +170777522465,213,0 +170777522515,213,0 +170777522563,213,0 +170777522611,214,0 +170777522659,214,0 +170777522707,214,0 +170777522754,214,0 +170777522802,214,0 +170777522850,214,0 +170777522898,214,0 +170777522946,214,0 +170777522994,214,0 +170777523042,213,0 +170777523092,213,0 +170777523139,213,0 +170777523189,213,0 +170777523239,213,0 +170777523288,213,0 +170777523336,213,0 +170777523384,213,0 +170777523432,213,0 +170777523480,214,0 +170777523529,214,0 +170777523577,214,0 +170777523625,214,0 +170777523673,214,0 +170777523721,214,0 +170777523770,214,0 +170777523820,214,0 +170777523869,214,0 +170777523917,214,0 +170777523967,213,0 +170777524016,213,0 +170777524066,213,0 +170777524114,213,0 +170777524162,213,0 +170777524210,213,0 +170777524257,213,0 +170777524305,213,0 +170777524355,214,0 +170777524403,214,0 +170777524451,214,0 +170777524500,214,0 +170777524550,214,0 +170777524599,214,0 +170777524649,214,0 +170777524698,214,0 +170777524746,214,0 +170777524794,214,0 +170777524842,214,0 +170777524890,214,0 +170777524938,213,0 +170777524986,213,0 +170777525034,213,0 +170777525082,213,0 +170777525131,213,0 +170777525181,213,0 +170777525229,213,0 +170777525277,214,0 +170777525326,214,0 +170777525374,214,0 +170777525424,214,0 +170777525473,214,0 +170777525521,214,0 +170777525569,214,0 +170777525617,214,0 +170777525666,214,0 +170777525716,214,0 +170777525765,214,0 +170777525815,214,0 +170777525864,213,0 +170777525914,213,0 +170777525962,213,0 +170777526012,213,0 +170777526059,213,0 +170777526107,213,0 +170777526155,213,0 +170777526203,213,0 +170777526251,213,0 +170777526299,214,0 +170777526346,214,0 +170777526394,214,0 +170777526442,214,0 +170777526490,214,0 +170777526539,214,0 +170777526587,214,0 +170777526637,214,0 +170777526684,214,0 +170777526732,214,0 +170777526780,214,0 +170777526828,213,0 +170777526876,213,0 +170777526924,213,0 +170777526973,213,0 +170777527021,213,0 +170777527069,213,0 +170777527117,213,0 +170777527167,213,0 +170777527216,213,0 +170777527264,214,0 +170777527312,214,0 +170777527360,214,0 +170777527409,214,0 +170777527457,214,0 +170777527505,214,0 +170777527553,214,0 +170777527601,214,0 +170777527648,214,0 +170777527696,214,0 +170777527746,213,0 +170777527795,213,0 +170777527845,213,0 +170777527894,212,0 +170777527942,213,0 +170777527992,213,0 +170777528039,213,0 +170777528087,213,0 +170777528135,213,0 +170777528183,213,0 +170777528231,213,0 +170777528279,213,0 +170777528327,214,0 +170777528375,214,0 +170777528424,214,0 +170777528472,214,0 +170777528520,214,0 +170777528570,214,0 +170777528618,214,0 +170777528665,214,0 +170777528715,213,0 +170777528763,213,0 +170777528811,213,0 +170777528859,213,0 +170777528907,213,0 +170777528955,213,0 +170777529003,213,0 +170777529050,213,0 +170777529100,213,0 +170777529148,213,0 +170777529197,213,0 +170777529245,213,0 +170777529293,214,0 +170777529341,214,0 +170777529388,214,0 +170777529436,214,0 +170777529484,214,0 +170777529532,214,0 +170777529581,214,0 +170777529629,214,0 +170777529677,213,0 +170777529726,213,0 +170777529774,213,0 +170777529822,213,0 +170777529870,213,0 +170777529919,213,0 +170777529967,213,0 +170777530017,213,0 +170777530066,213,0 +170777530114,213,0 +170777530162,213,0 +170777530210,214,0 +170777530258,213,0 +170777530305,213,0 +170777530353,213,0 +170777530401,213,0 +170777530449,214,0 +170777530497,214,0 +170777530545,214,0 +170777530594,213,0 +170777530644,213,0 +170777530692,213,0 +170777530741,213,0 +170777530789,213,0 +170777530837,213,0 +170777530885,213,0 +170777530933,213,0 +170777530980,213,0 +170777531028,213,0 +170777531076,213,0 +170777531124,213,0 +170777531173,213,0 +170777531221,213,0 +170777531269,213,0 +170777531317,214,0 +170777531365,214,0 +170777531412,214,0 +170777531460,214,0 +170777531508,214,0 +170777531558,213,0 +170777531605,213,0 +170777531653,213,0 +170777531701,213,0 +170777531749,213,0 +170777531797,213,0 +170777531845,213,0 +170777531892,213,0 +170777531940,213,0 +170777531988,213,0 +170777532036,213,0 +170777532083,213,0 +170777532131,214,0 +170777532179,214,0 +170777532227,214,0 +170777532275,214,0 +170777532323,214,0 +170777532372,214,0 +170777532420,214,0 +170777532468,214,0 +170777532516,213,0 +170777532564,213,0 +170777532613,213,0 +170777532661,213,0 +170777532709,213,0 +170777532757,213,0 +170777532805,213,0 +170777532852,213,0 +170777532900,213,0 +170777532948,213,0 +170777532996,213,0 +170777533044,213,0 +170777533092,213,0 +170777533140,213,0 +170777533189,214,0 +170777533237,214,0 +170777533285,214,0 +170777533335,214,0 +170777533383,214,0 +170777533431,214,0 +170777533480,213,0 +170777533530,213,0 +170777533578,213,0 +170777533626,213,0 +170777533674,213,0 +170777533722,213,0 +170777533770,213,0 +170777533818,213,0 +170777533866,213,0 +170777533915,213,0 +170777533963,213,0 +170777534011,213,0 +170777534059,213,0 +170777534107,213,0 +170777534156,214,0 +170777534204,214,0 +170777534252,213,0 +170777534300,214,0 +170777534347,214,0 +170777534395,213,0 +170777534443,213,0 +170777534491,213,0 +170777534539,213,0 +170777534587,213,0 +170777534637,213,0 +170777534685,213,0 +170777534732,213,0 +170777534780,213,0 +170777534830,213,0 +170777534878,213,0 +170777534926,213,0 +170777534974,213,0 +170777535022,214,0 +170777535070,214,0 +170777535117,214,0 +170777535165,214,0 +170777535213,214,0 +170777535261,214,0 +170777535311,214,0 +170777535359,213,0 +170777535408,213,0 +170777535456,213,0 +170777535506,213,0 +170777535554,213,0 +170777535602,213,0 +170777535650,213,0 +170777535697,213,0 +170777535745,213,0 +170777535793,214,0 +170777535841,213,0 +170777535891,214,0 +170777535939,214,0 +170777535988,214,0 +170777536036,214,0 +170777536084,214,0 +170777536132,214,0 +170777536182,214,0 +170777536230,214,0 +170777536277,213,0 +170777536325,213,0 +170777536373,213,0 +170777536423,213,0 +170777536472,213,0 +170777536520,213,0 +170777536570,213,0 +170777536619,213,0 +170777536667,214,0 +170777536715,213,0 +170777536763,213,0 +170777536812,214,0 +170777536860,214,0 +170777536910,214,0 +170777536958,214,0 +170777537006,214,0 +170777537054,214,0 +170777537101,214,0 +170777537149,214,0 +170777537199,214,0 +170777537247,213,0 +170777537296,213,0 +170777537344,213,0 +170777537392,213,0 +170777537440,213,0 +170777537488,213,0 +170777537536,213,0 +170777537585,214,0 +170777537635,213,0 +170777537683,213,0 +170777537731,214,0 +170777537778,214,0 +170777537826,214,0 +170777537876,214,0 +170777537924,214,0 +170777537972,214,0 +170777538020,215,0 +170777538068,214,0 +170777538117,214,0 +170777538165,213,0 +170777538213,213,0 +170777538260,213,0 +170777538308,214,0 +170777538356,214,0 +170777538404,214,0 +170777538454,214,0 +170777538501,213,0 +170777538549,214,0 +170777538599,214,0 +170777538647,214,0 +170777538694,214,0 +170777538743,214,0 +170777538792,214,0 +170777538840,214,0 +170777538888,214,0 +170777538936,214,0 +170777538984,214,0 +170777539033,214,0 +170777539081,214,0 +170777539129,213,0 +170777539179,213,0 +170777539228,213,0 +170777539276,214,0 +170777539324,213,0 +170777539372,214,0 +170777539420,214,0 +170777539468,214,0 +170777539518,214,0 +170777539567,214,0 +170777539615,214,0 +170777539665,214,0 +170777539714,214,0 +170777539762,214,0 +170777539810,215,0 +170777539858,214,0 +170777539907,214,0 +170777539955,214,0 +170777540005,214,0 +170777540054,214,0 +170777540102,213,0 +170777540150,213,0 +170777540198,213,0 +170777540248,213,0 +170777540295,213,0 +170777540345,213,0 +170777540393,213,0 +170777540441,214,0 +170777540489,214,0 +170777540537,214,0 +170777540584,214,0 +170777540632,214,0 +170777540680,214,0 +170777540728,214,0 +170777540776,214,0 +170777540823,214,0 +170777540871,214,0 +170777540919,215,0 +170777540967,214,0 +170777541015,213,0 +170777541063,213,0 +170777541112,213,0 +170777541160,213,0 +170777541208,213,0 +170777541258,213,0 +170777541306,213,0 +170777541354,214,0 +170777541403,214,0 +170777541453,214,0 +170777541502,214,0 +170777541552,214,0 +170777541600,214,0 +170777541647,214,0 +170777541695,214,0 +170777541743,214,0 +170777541791,214,0 +170777541839,214,0 +170777541889,214,0 +170777541937,214,0 +170777541985,213,0 +170777542032,213,0 +170777542080,213,0 +170777542128,213,0 +170777542178,213,0 +170777542226,213,0 +170777542274,213,0 +170777542322,214,0 +170777542371,213,0 +170777542419,213,0 +170777542467,214,0 +170777542516,214,0 +170777542564,214,0 +170777542612,214,0 +170777542660,214,0 +170777542710,214,0 +170777542758,214,0 +170777542806,214,0 +170777542854,214,0 +170777542902,213,0 +170777542950,213,0 +170777542997,213,0 +170777543045,213,0 +170777543093,213,0 +170777543141,213,0 +170777543189,213,0 +170777543236,213,0 +170777543284,213,0 +170777543332,213,0 +170777543382,214,0 +170777543429,213,0 +170777543479,213,0 +170777543527,214,0 +170777543575,214,0 +170777543624,214,0 +170777543672,214,0 +170777543720,214,0 +170777543768,214,0 +170777543816,214,0 +170777543863,213,0 +170777543911,213,0 +170777543959,213,0 +170777544007,213,0 +170777544056,213,0 +170777544104,213,0 +170777544152,213,0 +170777544200,213,0 +170777544248,213,0 +170777544296,213,0 +170777544344,213,0 +170777544391,213,0 +170777544441,213,0 +170777544489,214,0 +170777544538,214,0 +170777544586,214,0 +170777544634,214,0 +170777544684,214,0 +170777544732,214,0 +170777544781,214,0 +170777544829,213,0 +170777544877,213,0 +170777544925,213,0 +170777544973,213,0 +170777545021,213,0 +170777545069,213,0 +170777545117,213,0 +170777545166,213,0 +170777545216,213,0 +170777545264,213,0 +170777545313,213,0 +170777545361,213,0 +170777545409,213,0 +170777545459,213,0 +170777545508,213,0 +170777545556,214,0 +170777545604,214,0 +170777545653,214,0 +170777545701,214,0 +170777545749,213,0 +170777545797,213,0 +170777545845,213,0 +170777545895,213,0 +170777545943,213,0 +170777545991,213,0 +170777546040,213,0 +170777546088,213,0 +170777546138,213,0 +170777546186,213,0 +170777546234,213,0 +170777546282,213,0 +170777546331,213,0 +170777546379,213,0 +170777546427,214,0 +170777546475,214,0 +170777546523,214,0 +170777546571,214,0 +170777546620,214,0 +170777546670,214,0 +170777546719,213,0 +170777546769,213,0 +170777546817,213,0 +170777546865,213,0 +170777546914,213,0 +170777546964,213,0 +170777547012,213,0 +170777547060,213,0 +170777547109,213,0 +170777547157,213,0 +170777547205,213,0 +170777547254,214,0 +170777547302,214,0 +170777547350,214,0 +170777547398,214,0 +170777547448,214,0 +170777547497,214,0 +170777547547,214,0 +170777547596,214,0 +170777547644,213,0 +170777547694,213,0 +170777547741,213,0 +170777547789,213,0 +170777547837,213,0 +170777547887,213,0 +170777547934,213,0 +170777547984,213,0 +170777548032,213,0 +170777548081,213,0 +170777548129,213,0 +170777548179,213,0 +170777548227,213,0 +170777548275,213,0 +170777548323,213,0 +170777548371,214,0 +170777548419,214,0 +170777548467,214,0 +170777548515,214,0 +170777548563,214,0 +170777548611,213,0 +170777548658,213,0 +170777548706,213,0 +170777548754,213,0 +170777548802,213,0 +170777548850,213,0 +170777548898,213,0 +170777548948,213,0 +170777548996,213,0 +170777549045,213,0 +170777549093,213,0 +170777549141,213,0 +170777549189,213,0 +170777549237,213,0 +170777549286,213,0 +170777549334,213,0 +170777549384,213,0 +170777549433,213,0 +170777549481,214,0 +170777549531,213,0 +170777549579,213,0 +170777549628,213,0 +170777549676,213,0 +170777549724,213,0 +170777549774,213,0 +170777549823,213,0 +170777549871,213,0 +170777549919,213,0 +170777549969,213,0 +170777550017,213,0 +170777550065,213,0 +170777550112,213,0 +170777550160,213,0 +170777550208,213,0 +170777550256,214,0 +170777550306,214,0 +170777550354,214,0 +170777550402,214,0 +170777550450,214,0 +170777550498,213,0 +170777550546,213,0 +170777550595,213,0 +170777550643,213,0 +170777550693,213,0 +170777550742,213,0 +170777550790,213,0 +170777550839,213,0 +170777550887,213,0 +170777550935,213,0 +170777550983,213,0 +170777551031,214,0 +170777551079,214,0 +170777551127,214,0 +170777551177,214,0 +170777551225,214,0 +170777551273,214,0 +170777551321,214,0 +170777551369,214,0 +170777551417,213,0 +170777551465,213,0 +170777551512,213,0 +170777551560,213,0 +170777551610,213,0 +170777551659,213,0 +170777551707,213,0 +170777551755,213,0 +170777551805,214,0 +170777551854,214,0 +170777551902,214,0 +170777551950,214,0 +170777552000,214,0 +170777552048,214,0 +170777552096,214,0 +170777552144,214,0 +170777552192,214,0 +170777552239,214,0 +170777552287,215,0 +170777552337,214,0 +170777552386,213,0 +170777552436,213,0 +170777552484,213,0 +170777552533,213,0 +170777552581,213,0 +170777552629,213,0 +170777552679,213,0 +170777552726,214,0 +170777552776,214,0 +170777552824,214,0 +170777552872,214,0 +170777552921,214,0 +170777552969,214,0 +170777553019,214,0 +170777553067,214,0 +170777553116,214,0 +170777553164,214,0 +170777553212,214,0 +170777553260,214,0 +170777553308,214,0 +170777553357,213,0 +170777553405,213,0 +170777553453,213,0 +170777553503,214,0 +170777553551,214,0 +170777553598,214,0 +170777553646,214,0 +170777553696,214,0 +170777553744,214,0 +170777553792,214,0 +170777553840,214,0 +170777553888,214,0 +170777553936,214,0 +170777553983,214,0 +170777554031,215,0 +170777554079,215,0 +170777554127,215,0 +170777554175,214,0 +170777554223,214,0 +170777554271,213,0 +170777554319,213,0 +170777554367,213,0 +170777554415,213,0 +170777554463,213,0 +170777554512,213,0 +170777554560,214,0 +170777554608,214,0 +170777554656,214,0 +170777554703,214,0 +170777554753,214,0 +170777554801,214,0 +170777554849,214,0 +170777554898,214,0 +170777554946,214,0 +170777554994,214,0 +170777555042,214,0 +170777555090,214,0 +170777555137,214,0 +170777555185,214,0 +170777555233,213,0 +170777555281,213,0 +170777555329,213,0 +170777555376,213,0 +170777555424,213,0 +170777555472,213,0 +170777555520,213,0 +170777555568,213,0 +170777555616,213,0 +170777555663,213,0 +170777555711,213,0 +170777555759,213,0 +170777555807,214,0 +170777555855,214,0 +170777555903,213,0 +170777555950,214,0 +170777555998,214,0 +170777556046,214,0 +170777556094,214,0 +170777556142,214,0 +170777556190,213,0 +170777556238,213,0 +170777556286,213,0 +170777556334,213,0 +170777556382,213,0 +170777556429,213,0 +170777556477,213,0 +170777556525,213,0 +170777556573,213,0 +170777556621,213,0 +170777556669,213,0 +170777556717,213,0 +170777556766,214,0 +170777556814,214,0 +170777556862,214,0 +170777556909,214,0 +170777556957,214,0 +170777557005,214,0 +170777557053,214,0 +170777557101,213,0 +170777557149,213,0 +170777557197,213,0 +170777557245,213,0 +170777557293,213,0 +170777557341,213,0 +170777557389,213,0 +170777557437,213,0 +170777557485,213,0 +170777557532,213,0 +170777557582,213,0 +170777557631,213,0 +170777557679,213,0 +170777557727,214,0 +170777557775,214,0 +170777557823,214,0 +170777557871,214,0 +170777557921,214,0 +170777557970,214,0 +170777558020,214,0 +170777558069,213,0 +170777558117,213,0 +170777558167,213,0 +170777558214,213,0 +170777558262,213,0 +170777558310,213,0 +170777558358,213,0 +170777558408,213,0 +170777558455,213,0 +170777558503,213,0 +170777558551,214,0 +170777558599,214,0 +170777558647,214,0 +170777558695,214,0 +170777558743,214,0 +170777558791,214,0 +170777558839,214,0 +170777558887,214,0 +170777558935,214,0 +170777558984,214,0 +170777559034,213,0 +170777559082,213,0 +170777559130,213,0 +170777559179,213,0 +170777559227,213,0 +170777559275,213,0 +170777559325,213,0 +170777559373,213,0 +170777559421,213,0 +170777559469,213,0 +170777559517,214,0 +170777559564,214,0 +170777559612,214,0 +170777559660,214,0 +170777559708,214,0 +170777559756,214,0 +170777559804,214,0 +170777559852,214,0 +170777559900,214,0 +170777559948,213,0 +170777559998,213,0 +170777560046,212,0 +170777560095,212,0 +170777560143,212,0 +170777560193,213,0 +170777560241,213,0 +170777560289,213,0 +170777560338,213,0 +170777560388,212,0 +170777560437,213,0 +170777560485,213,0 +170777560533,213,0 +170777560581,213,0 +170777560630,213,0 +170777560678,213,0 +170777560726,213,0 +170777560774,213,0 +170777560824,214,0 +170777560872,214,0 +170777560919,213,0 +170777560967,213,0 +170777561017,213,0 +170777561065,213,0 +170777561114,213,0 +170777561162,213,0 +170777561210,213,0 +170777561258,213,0 +170777561306,213,0 +170777561355,213,0 +170777561403,213,0 +170777561451,213,0 +170777561499,213,0 +170777561548,213,0 +170777561596,213,0 +170777561644,214,0 +170777561692,214,0 +170777561740,214,0 +170777561789,214,0 +170777561839,213,0 +170777561887,213,0 +170777561935,213,0 +170777561984,213,0 +170777562032,213,0 +170777562080,213,0 +170777562128,213,0 +170777562178,214,0 +170777562225,213,0 +170777562275,214,0 +170777562323,214,0 +170777562371,214,0 +170777562419,214,0 +170777562467,214,0 +170777562515,214,0 +170777562564,214,0 +170777562612,214,0 +170777562660,214,0 +170777562708,214,0 +170777562756,214,0 +170777562803,213,0 +170777562853,213,0 +170777562901,213,0 +170777562949,213,0 +170777562997,213,0 +170777563045,213,0 +170777563093,213,0 +170777563140,213,0 +170777563188,214,0 +170777563236,214,0 +170777563284,214,0 +170777563332,214,0 +170777563382,214,0 +170777563430,214,0 +170777563478,214,0 +170777563527,214,0 +170777563577,214,0 +170777563625,215,0 +170777563674,215,0 +170777563724,214,0 +170777563772,213,0 +170777563820,213,0 +170777563869,213,0 +170777563917,213,0 +170777563966,213,0 +170777564014,213,0 +170777564062,213,0 +170777564112,214,0 +170777564160,214,0 +170777564208,213,0 +170777564255,214,0 +170777564303,214,0 +170777564351,214,0 +170777564399,214,0 +170777564447,214,0 +170777564495,214,0 +170777564543,214,0 +170777564591,214,0 +170777564639,214,0 +170777564686,213,0 +170777564734,213,0 +170777564784,213,0 +170777564833,213,0 +170777564881,213,0 +170777564929,213,0 +170777564977,213,0 +170777565025,213,0 +170777565073,213,0 +170777565121,213,0 +170777565169,213,0 +170777565217,213,0 +170777565265,214,0 +170777565313,214,0 +170777565361,214,0 +170777565408,214,0 +170777565456,214,0 +170777565504,214,0 +170777565554,214,0 +170777565603,214,0 +170777565651,213,0 +170777565699,213,0 +170777565747,213,0 +170777565795,213,0 +170777565843,213,0 +170777565891,213,0 +170777565939,213,0 +170777565988,213,0 +170777566038,213,0 +170777566085,213,0 +170777566133,214,0 +170777566181,214,0 +170777566231,214,0 +170777566279,214,0 +170777566326,214,0 +170777566374,214,0 +170777566422,214,0 +170777566470,214,0 +170777566520,214,0 +170777566568,214,0 +170777566617,213,0 +170777566665,213,0 +170777566713,213,0 +170777566761,213,0 +170777566809,213,0 +170777566858,213,0 +170777566906,213,0 +170777566954,213,0 +170777567002,214,0 +170777567050,213,0 +170777567100,214,0 +170777567148,214,0 +170777567197,214,0 +170777567245,214,0 +170777567295,214,0 +170777567343,214,0 +170777567390,215,0 +170777567438,214,0 +170777567488,214,0 +170777567536,213,0 +170777567584,213,0 +170777567633,213,0 +170777567683,213,0 +170777567731,213,0 +170777567778,213,0 +170777567828,213,0 +170777567876,213,0 +170777567924,214,0 +170777567972,214,0 +170777568021,214,0 +170777568071,214,0 +170777568119,214,0 +170777568168,214,0 +170777568216,214,0 +170777568264,214,0 +170777568312,214,0 +170777568361,214,0 +170777568411,214,0 +170777568459,213,0 +170777568507,213,0 +170777568556,213,0 +170777568606,213,0 +170777568653,213,0 +170777568703,213,0 +170777568751,213,0 +170777568800,213,0 +170777568848,213,0 +170777568896,213,0 +170777568944,213,0 +170777568992,214,0 +170777569040,214,0 +170777569088,214,0 +170777569136,214,0 +170777569183,214,0 +170777569233,214,0 +170777569282,214,0 +170777569330,214,0 +170777569378,214,0 +170777569426,213,0 +170777569474,213,0 +170777569522,213,0 +170777569570,213,0 +170777569618,213,0 +170777569665,213,0 +170777569713,213,0 +170777569761,213,0 +170777569809,213,0 +170777569857,213,0 +170777569907,213,0 +170777569955,214,0 +170777570004,214,0 +170777570052,214,0 +170777570102,214,0 +170777570151,214,0 +170777570201,214,0 +170777570249,214,0 +170777570297,214,0 +170777570345,214,0 +170777570394,213,0 +170777570444,213,0 +170777570492,213,0 +170777570541,213,0 +170777570591,213,0 +170777570639,213,0 +170777570687,213,0 +170777570735,213,0 +170777570784,213,0 +170777570832,213,0 +170777570880,213,0 +170777570928,213,0 +170777570977,214,0 +170777571027,213,0 +170777571076,214,0 +170777571126,214,0 +170777571174,214,0 +170777571222,214,0 +170777571270,214,0 +170777571319,213,0 +170777571369,213,0 +170777571418,213,0 +170777571466,213,0 +170777571514,213,0 +170777571562,213,0 +170777571610,213,0 +170777571658,213,0 +170777571708,213,0 +170777571756,214,0 +170777571805,214,0 +170777571853,214,0 +170777571903,214,0 +170777571950,214,0 +170777571998,214,0 +170777572046,214,0 +170777572094,214,0 +170777572142,214,0 +170777572190,214,0 +170777572240,214,0 +170777572288,213,0 +170777572337,213,0 +170777572385,213,0 +170777572435,213,0 +170777572483,213,0 +170777572531,213,0 +170777572579,213,0 +170777572628,213,0 +170777572676,213,0 +170777572726,214,0 +170777572774,214,0 +170777572822,214,0 +170777572869,214,0 +170777572917,214,0 +170777572965,214,0 +170777573015,214,0 +170777573062,214,0 +170777573110,214,0 +170777573158,214,0 +170777573208,213,0 +170777573257,213,0 +170777573305,213,0 +170777573355,213,0 +170777573404,213,0 +170777573452,213,0 +170777573500,213,0 +170777573550,213,0 +170777573598,213,0 +170777573647,214,0 +170777573695,214,0 +170777573743,214,0 +170777573793,214,0 +170777573842,214,0 +170777573890,214,0 +170777573938,214,0 +170777573986,214,0 +170777574033,214,0 +170777574081,214,0 +170777574129,214,0 +170777574177,213,0 +170777574227,213,0 +170777574275,213,0 +170777574322,213,0 +170777574370,213,0 +170777574420,213,0 +170777574469,213,0 +170777574519,213,0 +170777574567,213,0 +170777574615,214,0 +170777574663,214,0 +170777574712,214,0 +170777574762,214,0 +170777574810,214,0 +170777574859,214,0 +170777574907,214,0 +170777574955,214,0 +170777575003,214,0 +170777575053,215,0 +170777575102,213,0 +170777575152,213,0 +170777575200,213,0 +170777575248,213,0 +170777575296,213,0 +170777575343,213,0 +170777575391,213,0 +170777575439,213,0 +170777575487,213,0 +170777575535,213,0 +170777575583,214,0 +170777575631,214,0 +170777575679,214,0 +170777575729,214,0 +170777575777,214,0 +170777575825,214,0 +170777575874,214,0 +170777575924,214,0 +170777575973,214,0 +170777576021,214,0 +170777576071,213,0 +170777576120,213,0 +170777576170,213,0 +170777576218,213,0 +170777576266,213,0 +170777576315,213,0 +170777576363,213,0 +170777576411,213,0 +170777576459,213,0 +170777576508,213,0 +170777576558,213,0 +170777576606,214,0 +170777576655,214,0 +170777576703,214,0 +170777576753,213,0 +170777576801,214,0 +170777576849,214,0 +170777576898,213,0 +170777576946,214,0 +170777576994,213,0 +170777577044,213,0 +170777577092,213,0 +170777577140,212,0 +170777577188,213,0 +170777577235,213,0 +170777577283,213,0 +170777577331,213,0 +170777577379,213,0 +170777577427,213,0 +170777577475,212,0 +170777577525,213,0 +170777577573,213,0 +170777577621,213,0 +170777577669,213,0 +170777577717,213,0 +170777577766,213,0 +170777577816,213,0 +170777577864,214,0 +170777577913,214,0 +170777577963,213,0 +170777578011,213,0 +170777578059,212,0 +170777578107,212,0 +170777578155,213,0 +170777578203,212,0 +170777578251,213,0 +170777578298,213,0 +170777578346,213,0 +170777578394,213,0 +170777578442,213,0 +170777578490,213,0 +170777578538,213,0 +170777578586,213,0 +170777578635,213,0 +170777578683,213,0 +170777578731,213,0 +170777578781,213,0 +170777578829,214,0 +170777578876,214,0 +170777578926,213,0 +170777578974,213,0 +170777579022,213,0 +170777579070,213,0 +170777579118,213,0 +170777579166,213,0 +170777579214,213,0 +170777579263,213,0 +170777579311,213,0 +170777579359,213,0 +170777579407,213,0 +170777579455,213,0 +170777579503,213,0 +170777579551,213,0 +170777579599,213,0 +170777579647,214,0 +170777579695,213,0 +170777579743,213,0 +170777579790,214,0 +170777579838,213,0 +170777579888,213,0 +170777579936,213,0 +170777579984,213,0 +170777580032,213,0 +170777580081,213,0 +170777580131,213,0 +170777580179,213,0 +170777580227,213,0 +170777580275,213,0 +170777580324,214,0 +170777580374,214,0 +170777580422,214,0 +170777580471,214,0 +170777580519,214,0 +170777580567,214,0 +170777580616,214,0 +170777580664,214,0 +170777580712,214,0 +170777580760,214,0 +170777580808,213,0 +170777580857,213,0 +170777580905,213,0 +170777580953,213,0 +170777581001,213,0 +170777581049,214,0 +170777581097,214,0 +170777581145,214,0 +170777581193,214,0 +170777581241,214,0 +170777581291,214,0 +170777581340,214,0 +170777581389,214,0 +170777581437,214,0 +170777581485,215,0 +170777581533,214,0 +170777581581,214,0 +170777581629,214,0 +170777581677,214,0 +170777581725,214,0 +170777581773,213,0 +170777581821,213,0 +170777581869,213,0 +170777581917,213,0 +170777581964,214,0 +170777582012,214,0 +170777582062,214,0 +170777582110,214,0 +170777582158,214,0 +170777582206,214,0 +170777582254,214,0 +170777582303,214,0 +170777582351,214,0 +170777582399,214,0 +170777582447,215,0 +170777582497,215,0 +170777582546,215,0 +170777582596,214,0 +170777582645,214,0 +170777582693,214,0 +170777582741,213,0 +170777582789,214,0 +170777582837,214,0 +170777582885,214,0 +170777582934,214,0 +170777582984,214,0 +170777583031,214,0 +170777583081,214,0 +170777583129,214,0 +170777583177,214,0 +170777583225,214,0 +170777583273,214,0 +170777583321,214,0 +170777583370,214,0 +170777583418,215,0 +170777583466,215,0 +170777583514,214,0 +170777583563,214,0 +170777583613,214,0 +170777583661,213,0 +170777583709,213,0 +170777583757,213,0 +170777583804,213,0 +170777583852,214,0 +170777583902,214,0 +170777583950,214,0 +170777583998,214,0 +170777584046,214,0 +170777584095,214,0 +170777584143,214,0 +170777584191,214,0 +170777584239,214,0 +170777584287,214,0 +170777584335,214,0 +170777584383,215,0 +170777584430,214,0 +170777584478,215,0 +170777584526,214,0 +170777584574,214,0 +170777584622,213,0 +170777584672,213,0 +170777584720,213,0 +170777584767,213,0 +170777584815,213,0 +170777584863,213,0 +170777584913,213,0 +170777584961,213,0 +170777585009,214,0 +170777585056,214,0 +170777585104,214,0 +170777585154,214,0 +170777585202,214,0 +170777585250,214,0 +170777585297,214,0 +170777585345,214,0 +170777585393,214,0 +170777585441,214,0 +170777585489,214,0 +170777585537,214,0 +170777585586,213,0 +170777585634,213,0 +170777585682,213,0 +170777585730,213,0 +170777585778,213,0 +170777585826,213,0 +170777585874,213,0 +170777585922,213,0 +170777585970,213,0 +170777586018,214,0 +170777586066,214,0 +170777586113,214,0 +170777586161,214,0 +170777586211,214,0 +170777586259,214,0 +170777586308,214,0 +170777586356,214,0 +170777586406,214,0 +170777586454,214,0 +170777586503,213,0 +170777586551,213,0 +170777586601,213,0 +170777586650,213,0 +170777586700,213,0 +170777586748,213,0 +170777586796,213,0 +170777586844,213,0 +170777586892,213,0 +170777586941,213,0 +170777586989,213,0 +170777587037,213,0 +170777587086,213,0 +170777587134,213,0 +170777587184,214,0 +170777587232,214,0 +170777587280,214,0 +170777587328,214,0 +170777587376,214,0 +170777587424,213,0 +170777587472,213,0 +170777587519,213,0 +170777587567,213,0 +170777587615,213,0 +170777587663,213,0 +170777587711,213,0 +170777587759,213,0 +170777587807,213,0 +170777587857,213,0 +170777587906,213,0 +170777587954,213,0 +170777588004,214,0 +170777588053,214,0 +170777588103,214,0 +170777588151,214,0 +170777588199,214,0 +170777588247,214,0 +170777588295,214,0 +170777588343,214,0 +170777588392,214,0 +170777588440,213,0 +170777588490,213,0 +170777588537,213,0 +170777588587,213,0 +170777588635,213,0 +170777588683,213,0 +170777588732,213,0 +170777588780,213,0 +170777588828,213,0 +170777588878,213,0 +170777588926,213,0 +170777588975,214,0 +170777589025,214,0 +170777589073,214,0 +170777589121,214,0 +170777589169,214,0 +170777589216,214,0 +170777589266,214,0 +170777589314,214,0 +170777589362,213,0 +170777589411,213,0 +170777589461,213,0 +170777589509,213,0 +170777589558,213,0 +170777589606,213,0 +170777589654,213,0 +170777589704,213,0 +170777589752,213,0 +170777589801,213,0 +170777589849,213,0 +170777589897,213,0 +170777589945,214,0 +170777589993,214,0 +170777590041,214,0 +170777590089,214,0 +170777590137,214,0 +170777590185,214,0 +170777590233,214,0 +170777590281,214,0 +170777590330,213,0 +170777590378,213,0 +170777590426,213,0 +170777590474,213,0 +170777590522,213,0 +170777590570,213,0 +170777590619,212,0 +170777590667,213,0 +170777590715,212,0 +170777590763,212,0 +170777590811,213,0 +170777590859,213,0 +170777590907,213,0 +170777590955,213,0 +170777591002,213,0 +170777591050,213,0 +170777591098,213,0 +170777591146,213,0 +170777591194,213,0 +170777591242,213,0 +170777591290,213,0 +170777591338,213,0 +170777591388,213,0 +170777591437,213,0 +170777591487,213,0 +170777591536,214,0 +170777591584,214,0 +170777591632,214,0 +170777591680,214,0 +170777591728,213,0 +170777591776,213,0 +170777591825,213,0 +170777591875,213,0 +170777591924,213,0 +170777591972,213,0 +170777592022,213,0 +170777592070,213,0 +170777592118,213,0 +170777592167,213,0 +170777592215,213,0 +170777592263,214,0 +170777592311,214,0 +170777592359,214,0 +170777592407,214,0 +170777592457,214,0 +170777592506,214,0 +170777592555,214,0 +170777592603,214,0 +170777592653,214,0 +170777592701,213,0 +170777592750,213,0 +170777592798,213,0 +170777592846,213,0 +170777592896,213,0 +170777592944,213,0 +170777592993,213,0 +170777593043,213,0 +170777593091,213,0 +170777593139,213,0 +170777593188,213,0 +170777593238,214,0 +170777593286,214,0 +170777593334,213,0 +170777593382,213,0 +170777593430,213,0 +170777593478,213,0 +170777593527,213,0 +170777593577,214,0 +170777593624,213,0 +170777593672,213,0 +170777593722,213,0 +170777593770,213,0 +170777593819,213,0 +170777593869,213,0 +170777593917,213,0 +170777593965,213,0 +170777594012,213,0 +170777594060,213,0 +170777594110,213,0 +170777594158,213,0 +170777594206,213,0 +170777594254,214,0 +170777594303,214,0 +170777594351,214,0 +170777594401,214,0 +170777594449,214,0 +170777594498,214,0 +170777594546,214,0 +170777594594,213,0 +170777594642,213,0 +170777594690,213,0 +170777594738,213,0 +170777594786,213,0 +170777594834,213,0 +170777594883,213,0 +170777594931,213,0 +170777594979,213,0 +170777595028,213,0 +170777595076,213,0 +170777595124,213,0 +170777595174,214,0 +170777595222,214,0 +170777595269,214,0 +170777595319,214,0 +170777595369,214,0 +170777595416,214,0 +170777595464,214,0 +170777595512,214,0 +170777595562,213,0 +170777595610,213,0 +170777595658,213,0 +170777595706,213,0 +170777595755,213,0 +170777595805,213,0 +170777595853,213,0 +170777595901,213,0 +170777595950,213,0 +170777596000,213,0 +170777596049,213,0 +170777596097,214,0 +170777596145,214,0 +170777596195,214,0 +170777596243,214,0 +170777596290,214,0 +170777596340,214,0 +170777596389,214,0 +170777596437,214,0 +170777596487,213,0 +170777596535,213,0 +170777596583,213,0 +170777596631,213,0 +170777596679,213,0 +170777596727,213,0 +170777596775,213,0 +170777596823,213,0 +170777596871,214,0 +170777596919,214,0 +170777596968,214,0 +170777597016,214,0 +170777597066,214,0 +170777597113,214,0 +170777597161,214,0 +170777597209,214,0 +170777597257,214,0 +170777597305,214,0 +170777597354,214,0 +170777597402,214,0 +170777597450,213,0 +170777597498,213,0 +170777597546,213,0 +170777597594,213,0 +170777597642,213,0 +170777597690,213,0 +170777597738,213,0 +170777597786,213,0 +170777597835,214,0 +170777597883,214,0 +170777597931,214,0 +170777597980,214,0 +170777598028,214,0 +170777598078,214,0 +170777598126,214,0 +170777598174,214,0 +170777598222,214,0 +170777598270,214,0 +170777598319,214,0 +170777598367,214,0 +170777598415,213,0 +170777598465,213,0 +170777598514,213,0 +170777598562,213,0 +170777598612,213,0 +170777598660,213,0 +170777598708,213,0 +170777598756,213,0 +170777598804,213,0 +170777598852,214,0 +170777598900,214,0 +170777598948,214,0 +170777598997,214,0 +170777599047,214,0 +170777599095,214,0 +170777599144,214,0 +170777599192,214,0 +170777599240,214,0 +170777599288,214,0 +170777599336,213,0 +170777599384,213,0 +170777599432,213,0 +170777599479,213,0 +170777599527,213,0 +170777599575,213,0 +170777599625,213,0 +170777599673,213,0 +170777599721,213,0 +170777599769,213,0 +170777599819,213,0 +170777599867,213,0 +170777599915,213,0 +170777599963,213,0 +170777600010,214,0 +170777600060,213,0 +170777600110,214,0 +170777600159,214,0 +170777600209,214,0 +170777600257,214,0 +170777600306,213,0 +170777600356,213,0 +170777600405,213,0 +170777600453,213,0 +170777600501,213,0 +170777600549,213,0 +170777600596,213,0 +170777600644,213,0 +170777600692,213,0 +170777600740,213,0 +170777600789,213,0 +170777600837,213,0 +170777600885,213,0 +170777600935,213,0 +170777600983,213,0 +170777601031,213,0 +170777601079,213,0 +170777601127,213,0 +170777601175,214,0 +170777601224,213,0 +170777601272,213,0 +170777601320,213,0 +170777601368,213,0 +170777601416,213,0 +170777601464,213,0 +170777601512,213,0 +170777601561,213,0 +170777601609,213,0 +170777601657,213,0 +170777601707,213,0 +170777601756,213,0 +170777601804,213,0 +170777601852,213,0 +170777601902,213,0 +170777601950,213,0 +170777601999,213,0 +170777602047,214,0 +170777602095,214,0 +170777602143,214,0 +170777602192,213,0 +170777602242,213,0 +170777602290,213,0 +170777602338,213,0 +170777602387,213,0 +170777602437,213,0 +170777602486,213,0 +170777602534,213,0 +170777602582,213,0 +170777602630,213,0 +170777602680,213,0 +170777602728,213,0 +170777602775,214,0 +170777602825,214,0 +170777602874,214,0 +170777602921,214,0 +170777602969,214,0 +170777603017,214,0 +170777603065,214,0 +170777603114,214,0 +170777603162,213,0 +170777603210,213,0 +170777603258,213,0 +170777603306,213,0 +170777603356,213,0 +170777603405,213,0 +170777603453,213,0 +170777603501,213,0 +170777603549,213,0 +170777603599,213,0 +170777603647,214,0 +170777603694,214,0 +170777603742,214,0 +170777603790,214,0 +170777603838,214,0 +170777603886,214,0 +170777603934,214,0 +170777603983,214,0 +170777604031,214,0 +170777604079,213,0 +170777604127,213,0 +170777604175,212,0 +170777604223,213,0 +170777604270,213,0 +170777604318,213,0 +170777604366,213,0 +170777604414,213,0 +170777604462,213,0 +170777604510,213,0 +170777604558,213,0 +170777604607,213,0 +170777604655,213,0 +170777604703,214,0 +170777604751,214,0 +170777604801,214,0 +170777604849,214,0 +170777604896,214,0 +170777604944,214,0 +170777604992,214,0 +170777605040,213,0 +170777605090,213,0 +170777605138,213,0 +170777605186,213,0 +170777605235,213,0 +170777605283,213,0 +170777605331,213,0 +170777605379,213,0 +170777605427,213,0 +170777605475,213,0 +170777605523,213,0 +170777605571,213,0 +170777605619,214,0 +170777605667,214,0 +170777605716,214,0 +170777605764,214,0 +170777605812,214,0 +170777605860,214,0 +170777605908,214,0 +170777605956,214,0 +170777606004,213,0 +170777606052,213,0 +170777606100,213,0 +170777606148,213,0 +170777606196,213,0 +170777606245,213,0 +170777606293,213,0 +170777606343,213,0 +170777606392,213,0 +170777606440,213,0 +170777606490,213,0 +170777606539,214,0 +170777606589,214,0 +170777606637,214,0 +170777606685,214,0 +170777606733,214,0 +170777606781,214,0 +170777606830,214,0 +170777606880,214,0 +170777606927,213,0 +170777606975,213,0 +170777607025,213,0 +170777607073,213,0 +170777607122,213,0 +170777607170,213,0 +170777607220,213,0 +170777607268,214,0 +170777607316,214,0 +170777607364,214,0 +170777607412,214,0 +170777607460,214,0 +170777607507,214,0 +170777607555,214,0 +170777607603,214,0 +170777607651,214,0 +170777607699,214,0 +170777607747,214,0 +170777607795,214,0 +170777607843,214,0 +170777607892,213,0 +170777607940,213,0 +170777607988,213,0 +170777608036,213,0 +170777608084,213,0 +170777608132,213,0 +170777608180,213,0 +170777608228,213,0 +170777608277,213,0 +170777608325,213,0 +170777608373,214,0 +170777608422,214,0 +170777608470,214,0 +170777608518,214,0 +170777608567,214,0 +170777608617,214,0 +170777608665,214,0 +170777608713,214,0 +170777608761,214,0 +170777608809,214,0 +170777608858,213,0 +170777608908,213,0 +170777608955,213,0 +170777609003,213,0 +170777609051,213,0 +170777609099,213,0 +170777609147,213,0 +170777609195,213,0 +170777609245,213,0 +170777609293,213,0 +170777609340,213,0 +170777609388,214,0 +170777609436,214,0 +170777609484,214,0 +170777609532,214,0 +170777609580,214,0 +170777609629,214,0 +170777609677,214,0 +170777609725,214,0 +170777609775,214,0 +170777609823,213,0 +170777609871,213,0 +170777609920,213,0 +170777609968,213,0 +170777610016,213,0 +170777610066,213,0 +170777610115,213,0 +170777610163,213,0 +170777610211,213,0 +170777610258,213,0 +170777610306,213,0 +170777610354,213,0 +170777610402,214,0 +170777610450,214,0 +170777610498,214,0 +170777610546,214,0 +170777610593,214,0 +170777610641,214,0 +170777610689,214,0 +170777610737,214,0 +170777610785,213,0 +170777610833,213,0 +170777610881,213,0 +170777610930,213,0 +170777610978,213,0 +170777611026,213,0 +170777611074,213,0 +170777611122,213,0 +170777611170,213,0 +170777611217,213,0 +170777611267,214,0 +170777611317,214,0 +170777611366,214,0 +170777611416,214,0 +170777611464,214,0 +170777611512,214,0 +170777611561,214,0 +170777611609,214,0 +170777611659,214,0 +170777611706,213,0 +170777611754,213,0 +170777611804,213,0 +170777611852,213,0 +170777611900,213,0 +170777611948,213,0 +170777611996,213,0 +170777612044,213,0 +170777612093,214,0 +170777612141,214,0 +170777612189,214,0 +170777612237,214,0 +170777612285,214,0 +170777612334,214,0 +170777612384,214,0 +170777612432,214,0 +170777612481,214,0 +170777612531,214,0 +170777612579,214,0 +170777612627,214,0 +170777612675,213,0 +170777612723,213,0 +170777612771,213,0 +170777612820,213,0 +170777612868,213,0 +170777612916,214,0 +170777612966,214,0 +170777613015,214,0 +170777613063,214,0 +170777613113,214,0 +170777613161,214,0 +170777613210,214,0 +170777613260,214,0 +170777613309,214,0 +170777613359,214,0 +170777613409,214,0 +170777613458,214,0 +170777613508,214,0 +170777613555,214,0 +170777613603,213,0 +170777613653,213,0 +170777613703,213,0 +170777613750,213,0 +170777613798,213,0 +170777613848,213,0 +170777613896,213,0 +170777613944,214,0 +170777613992,213,0 +170777614041,214,0 +170777614089,214,0 +170777614139,214,0 +170777614188,214,0 +170777614238,214,0 +170777614286,214,0 +170777614334,214,0 +170777614382,214,0 +170777614431,214,0 +170777614479,214,0 +170777614527,214,0 +170777614575,213,0 +170777614623,213,0 +170777614672,213,0 +170777614721,213,0 +170777614769,213,0 +170777614817,213,0 +170777614865,213,0 +170777614913,213,0 +170777614961,213,0 +170777615009,214,0 +170777615057,214,0 +170777615106,214,0 +170777615156,214,0 +170777615204,214,0 +170777615252,214,0 +170777615301,214,0 +170777615349,214,0 +170777615398,214,0 +170777615446,214,0 +170777615496,213,0 +170777615544,213,0 +170777615592,213,0 +170777615639,213,0 +170777615687,213,0 +170777615737,213,0 +170777615785,213,0 +170777615833,213,0 +170777615882,213,0 +170777615932,213,0 +170777615981,213,0 +170777616031,213,0 +170777616079,214,0 +170777616128,214,0 +170777616176,214,0 +170777616226,214,0 +170777616274,214,0 +170777616323,214,0 +170777616371,214,0 +170777616420,214,0 +170777616468,213,0 +170777616516,213,0 +170777616564,213,0 +170777616612,213,0 +170777616662,213,0 +170777616710,213,0 +170777616759,213,0 +170777616809,213,0 +170777616858,213,0 +170777616906,213,0 +170777616954,214,0 +170777617002,214,0 +170777617052,214,0 +170777617099,214,0 +170777617149,214,0 +170777617199,214,0 +170777617248,214,0 +170777617296,214,0 +170777617344,214,0 +170777617394,213,0 +170777617441,213,0 +170777617490,213,0 +170777617539,213,0 +170777617587,213,0 +170777617635,213,0 +170777617683,213,0 +170777617731,213,0 +170777617779,213,0 +170777617827,213,0 +170777617875,213,0 +170777617923,213,0 +170777617971,213,0 +170777618020,213,0 +170777618068,214,0 +170777618116,214,0 +170777618166,214,0 +170777618215,214,0 +170777618264,214,0 +170777618312,214,0 +170777618360,213,0 +170777618410,213,0 +170777618458,213,0 +170777618506,213,0 +170777618555,213,0 +170777618605,213,0 +170777618653,213,0 +170777618702,213,0 +170777618750,213,0 +170777618798,213,0 +170777618846,214,0 +170777618894,214,0 +170777618942,214,0 +170777618991,214,0 +170777619041,214,0 +170777619088,214,0 +170777619136,214,0 +170777619184,214,0 +170777619232,214,0 +170777619280,214,0 +170777619328,213,0 +170777619376,213,0 +170777619424,213,0 +170777619474,213,0 +170777619522,213,0 +170777619571,213,0 +170777619621,213,0 +170777619670,213,0 +170777619720,213,0 +170777619769,213,0 +170777619817,213,0 +170777619865,213,0 +170777619915,213,0 +170777619964,214,0 +170777620014,214,0 +170777620062,213,0 +170777620109,213,0 +170777620158,214,0 +170777620205,214,0 +170777620253,213,0 +170777620301,213,0 +170777620351,213,0 +170777620400,213,0 +170777620448,213,0 +170777620496,213,0 +170777620546,213,0 +170777620593,213,0 +170777620641,213,0 +170777620689,213,0 +170777620737,213,0 +170777620785,213,0 +170777620833,213,0 +170777620880,213,0 +170777620928,213,0 +170777620976,213,0 +170777621024,213,0 +170777621072,213,0 +170777621120,213,0 +170777621168,214,0 +170777621215,213,0 +170777621263,213,0 +170777621311,213,0 +170777621359,213,0 +170777621407,213,0 +170777621457,213,0 +170777621506,213,0 +170777621554,213,0 +170777621602,213,0 +170777621650,213,0 +170777621698,213,0 +170777621746,213,0 +170777621793,213,0 +170777621841,214,0 +170777621889,214,0 +170777621937,214,0 +170777621985,214,0 +170777622034,214,0 +170777622082,214,0 +170777622130,214,0 +170777622178,213,0 +170777622226,213,0 +170777622274,213,0 +170777622321,213,0 +170777622369,213,0 +170777622417,213,0 +170777622465,213,0 +170777622515,213,0 +170777622562,213,0 +170777622610,213,0 +170777622658,213,0 +170777622706,213,0 +170777622754,213,0 +170777622802,213,0 +170777622850,213,0 +170777622899,214,0 +170777622947,214,0 +170777622995,214,0 +170777623043,214,0 +170777623091,214,0 +170777623139,213,0 +170777623187,213,0 +170777623235,213,0 +170777623283,213,0 +170777623332,213,0 +170777623380,213,0 +170777623428,213,0 +170777623478,213,0 +170777623527,213,0 +170777623575,213,0 +170777623623,213,0 +170777623671,213,0 +170777623721,213,0 +170777623770,213,0 +170777623820,213,0 +170777623869,213,0 +170777623917,214,0 +170777623966,214,0 +170777624014,214,0 +170777624062,213,0 +170777624112,213,0 +170777624161,213,0 +170777624209,213,0 +170777624258,213,0 +170777624306,213,0 +170777624354,213,0 +170777624402,213,0 +170777624450,214,0 +170777624498,214,0 +170777624547,214,0 +170777624597,214,0 +170777624645,214,0 +170777624693,214,0 +170777624741,214,0 +170777624789,214,0 +170777624836,214,0 +170777624884,214,0 +170777624934,214,0 +170777624982,214,0 +170777625030,213,0 +170777625078,213,0 +170777625126,213,0 +170777625175,213,0 +170777625223,213,0 +170777625273,213,0 +170777625321,213,0 +170777625369,213,0 +170777625417,214,0 +170777625464,214,0 +170777625514,214,0 +170777625564,214,0 +170777625613,214,0 +170777625661,214,0 +170777625710,214,0 +170777625758,214,0 +170777625808,214,0 +170777625856,214,0 +170777625904,214,0 +170777625953,213,0 +170777626003,213,0 +170777626051,213,0 +170777626098,213,0 +170777626148,213,0 +170777626196,214,0 +170777626244,213,0 +170777626292,214,0 +170777626341,214,0 +170777626389,214,0 +170777626439,214,0 +170777626487,214,0 +170777626535,214,0 +170777626584,214,0 +170777626632,214,0 +170777626680,214,0 +170777626728,214,0 +170777626776,214,0 +170777626824,214,0 +170777626872,214,0 +170777626919,213,0 +170777626967,213,0 +170777627015,213,0 +170777627063,213,0 +170777627111,213,0 +170777627158,213,0 +170777627206,213,0 +170777627254,213,0 +170777627302,214,0 +170777627350,214,0 +170777627398,214,0 +170777627446,214,0 +170777627494,214,0 +170777627542,214,0 +170777627590,214,0 +170777627639,214,0 +170777627687,214,0 +170777627735,214,0 +170777627783,214,0 +170777627832,214,0 +170777627880,213,0 +170777627928,213,0 +170777627976,213,0 +170777628024,213,0 +170777628073,213,0 +170777628121,214,0 +170777628171,214,0 +170777628219,214,0 +170777628267,214,0 +170777628316,214,0 +170777628364,214,0 +170777628412,214,0 +170777628460,214,0 +170777628510,214,0 +170777628558,214,0 +170777628606,215,0 +170777628655,215,0 +170777628705,214,0 +170777628754,214,0 +170777628802,213,0 +170777628850,213,0 +170777628898,213,0 +170777628946,213,0 +170777628993,213,0 +170777629041,213,0 +170777629089,214,0 +170777629139,214,0 +170777629188,214,0 +170777629236,214,0 +170777629284,214,0 +170777629332,214,0 +170777629380,214,0 +170777629428,214,0 +170777629477,214,0 +170777629525,214,0 +170777629573,214,0 +170777629621,214,0 +170777629671,214,0 +170777629720,214,0 +170777629768,213,0 +170777629816,213,0 +170777629863,213,0 +170777629911,213,0 +170777629959,213,0 +170777630007,213,0 +170777630055,213,0 +170777630104,213,0 +170777630152,213,0 +170777630200,214,0 +170777630248,214,0 +170777630296,214,0 +170777630343,214,0 +170777630391,214,0 +170777630439,214,0 +170777630487,214,0 +170777630534,214,0 +170777630582,214,0 +170777630630,214,0 +170777630678,214,0 +170777630726,213,0 +170777630774,213,0 +170777630823,213,0 +170777630871,213,0 +170777630919,213,0 +170777630966,213,0 +170777631016,213,0 +170777631065,213,0 +170777631113,213,0 +170777631161,213,0 +170777631209,213,0 +170777631257,213,0 +170777631304,213,0 +170777631352,214,0 +170777631400,214,0 +170777631448,214,0 +170777631496,214,0 +170777631544,214,0 +170777631591,214,0 +170777631639,214,0 +170777631687,213,0 +170777631735,213,0 +170777631784,213,0 +170777631832,213,0 +170777631880,213,0 +170777631928,213,0 +170777631976,213,0 +170777632025,213,0 +170777632073,213,0 +170777632121,213,0 +170777632169,213,0 +170777632218,213,0 +170777632266,213,0 +170777632315,213,0 +170777632363,213,0 +170777632411,214,0 +170777632459,213,0 +170777632507,214,0 +170777632556,214,0 +170777632604,214,0 +170777632652,213,0 +170777632701,213,0 +170777632749,213,0 +170777632797,213,0 +170777632845,213,0 +170777632893,213,0 +170777632941,213,0 +170777632989,213,0 +170777633037,213,0 +170777633084,213,0 +170777633134,213,0 +170777633182,213,0 +170777633229,213,0 +170777633279,213,0 +170777633328,214,0 +170777633376,214,0 +170777633424,214,0 +170777633472,214,0 +170777633520,214,0 +170777633569,213,0 +170777633617,213,0 +170777633665,213,0 +170777633713,213,0 +170777633761,213,0 +170777633809,213,0 +170777633856,213,0 +170777633906,213,0 +170777633954,213,0 +170777634001,213,0 +170777634049,213,0 +170777634097,213,0 +170777634145,213,0 +170777634192,214,0 +170777634240,214,0 +170777634288,214,0 +170777634336,214,0 +170777634384,214,0 +170777634432,214,0 +170777634479,214,0 +170777634527,213,0 +170777634575,213,0 +170777634623,213,0 +170777634670,213,0 +170777634718,213,0 +170777634766,213,0 +170777634814,213,0 +170777634862,213,0 +170777634909,213,0 +170777634957,213,0 +170777635005,213,0 +170777635053,213,0 +170777635101,213,0 +170777635149,214,0 +170777635198,214,0 +170777635246,214,0 +170777635294,214,0 +170777635342,214,0 +170777635389,214,0 +170777635437,214,0 +170777635485,213,0 +170777635533,213,0 +170777635583,212,0 +170777635630,212,0 +170777635678,213,0 +170777635728,213,0 +170777635776,213,0 +170777635824,213,0 +170777635872,213,0 +170777635920,213,0 +170777635969,213,0 +170777636019,213,0 +170777636066,213,0 +170777636114,213,0 +170777636164,213,0 +170777636212,213,0 +170777636259,213,0 +170777636307,213,0 +170777636357,214,0 +170777636406,214,0 +170777636454,213,0 +170777636502,213,0 +170777636550,213,0 +170777636598,213,0 +170777636646,213,0 +170777636694,213,0 +170777636742,213,0 +170777636791,213,0 +170777636839,213,0 +170777636887,213,0 +170777636935,213,0 +170777636985,213,0 +170777637034,213,0 +170777637082,213,0 +170777637130,213,0 +170777637178,213,0 +170777637227,213,0 +170777637275,214,0 +170777637323,214,0 +170777637371,213,0 +170777637419,213,0 +170777637467,213,0 +170777637516,213,0 +170777637566,213,0 +170777637614,213,0 +170777637663,213,0 +170777637711,213,0 +170777637759,213,0 +170777637809,213,0 +170777637858,213,0 +170777637906,213,0 +170777637956,214,0 +170777638004,214,0 +170777638053,214,0 +170777638101,214,0 +170777638149,214,0 +170777638197,214,0 +170777638245,214,0 +170777638294,214,0 +170777638342,213,0 +170777638390,213,0 +170777638438,213,0 +170777638485,213,0 +170777638533,213,0 +170777638581,213,0 +170777638629,213,0 +170777638677,213,0 +170777638725,213,0 +170777638773,213,0 +170777638821,214,0 +170777638869,214,0 +170777638917,214,0 +170777638965,214,0 +170777639013,214,0 +170777639060,214,0 +170777639110,214,0 +170777639158,214,0 +170777639206,214,0 +170777639255,214,0 +170777639303,213,0 +170777639351,213,0 +170777639399,213,0 +170777639447,213,0 +170777639495,213,0 +170777639543,213,0 +170777639593,214,0 +170777639640,214,0 +170777639688,213,0 +170777639736,214,0 +170777639786,214,0 +170777639835,214,0 +170777639883,214,0 +170777639933,214,0 +170777639981,214,0 +170777640029,214,0 +170777640078,214,0 +170777640128,214,0 +170777640175,214,0 +170777640223,213,0 +170777640271,213,0 +170777640319,213,0 +170777640369,213,0 +170777640417,213,0 +170777640465,214,0 +170777640513,214,0 +170777640561,214,0 +170777640608,214,0 +170777640657,214,0 +170777640704,214,0 +170777640752,214,0 +170777640800,214,0 +170777640848,214,0 +170777640896,214,0 +170777640944,214,0 +170777640994,215,0 +170777641042,214,0 +170777641089,214,0 +170777641137,214,0 +170777641185,213,0 +170777641233,213,0 +170777641283,213,0 +170777641331,213,0 +170777641379,214,0 +170777641426,214,0 +170777641474,214,0 +170777641522,214,0 +170777641570,214,0 +170777641618,214,0 +170777641666,214,0 +170777641715,214,0 +170777641763,214,0 +170777641811,214,0 +170777641859,214,0 +170777641908,215,0 +170777641956,215,0 +170777642005,214,0 +170777642053,214,0 +170777642101,214,0 +170777642150,213,0 +170777642198,213,0 +170777642248,213,0 +170777642296,213,0 +170777642343,213,0 +170777642391,214,0 +170777642439,214,0 +170777642487,214,0 +170777642535,214,0 +170777642582,214,0 +170777642630,214,0 +170777642678,214,0 +170777642726,214,0 +170777642774,214,0 +170777642822,215,0 +170777642870,215,0 +170777642917,214,0 +170777642965,214,0 +170777643013,214,0 +170777643061,214,0 +170777643109,213,0 +170777643157,213,0 +170777643204,213,0 +170777643252,213,0 +170777643300,213,0 +170777643348,213,0 +170777643396,213,0 +170777643443,213,0 +170777643491,213,0 +170777643539,214,0 +170777643587,214,0 +170777643635,214,0 +170777643683,214,0 +170777643732,214,0 +170777643780,214,0 +170777643828,214,0 +170777643878,214,0 +170777643926,214,0 +170777643974,214,0 +170777644022,213,0 +170777644070,213,0 +170777644118,213,0 +170777644166,213,0 +170777644213,213,0 +170777644261,213,0 +170777644309,213,0 +170777644359,213,0 +170777644407,213,0 +170777644455,213,0 +170777644503,213,0 +170777644551,213,0 +170777644600,213,0 +170777644650,214,0 +170777644699,214,0 +170777644747,214,0 +170777644797,214,0 +170777644845,214,0 +170777644893,214,0 +170777644941,214,0 +170777644989,213,0 +170777645037,213,0 +170777645085,213,0 +170777645133,213,0 +170777645180,213,0 +170777645228,213,0 +170777645276,213,0 +170777645324,213,0 +170777645372,213,0 +170777645420,213,0 +170777645468,214,0 +170777645515,214,0 +170777645563,214,0 +170777645611,214,0 +170777645659,214,0 +170777645707,214,0 +170777645755,214,0 +170777645803,214,0 +170777645850,214,0 +170777645898,214,0 +170777645946,213,0 +170777645994,213,0 +170777646042,213,0 +170777646090,213,0 +170777646137,213,0 +170777646187,213,0 +170777646235,213,0 +170777646283,213,0 +170777646330,213,0 +170777646378,213,0 +170777646426,214,0 +170777646474,214,0 +170777646522,214,0 +170777646570,214,0 +170777646618,214,0 +170777646666,214,0 +170777646713,214,0 +170777646761,214,0 +170777646809,214,0 +170777646857,214,0 +170777646907,213,0 +170777646956,213,0 +170777647005,213,0 +170777647055,213,0 +170777647103,213,0 +170777647151,213,0 +170777647199,213,0 +170777647247,213,0 +170777647296,213,0 +170777647344,213,0 +170777647392,213,0 +170777647440,213,0 +170777647489,214,0 +170777647537,214,0 +170777647585,214,0 +170777647633,214,0 +170777647680,214,0 +170777647728,214,0 +170777647776,214,0 +170777647824,213,0 +170777647872,213,0 +170777647919,213,0 +170777647967,213,0 +170777648015,213,0 +170777648063,213,0 +170777648111,213,0 +170777648159,213,0 +170777648206,213,0 +170777648254,213,0 +170777648302,213,0 +170777648350,213,0 +170777648399,213,0 +170777648447,213,0 +170777648495,213,0 +170777648544,214,0 +170777648592,213,0 +170777648640,213,0 +170777648688,214,0 +170777648736,214,0 +170777648784,213,0 +170777648831,213,0 +170777648879,213,0 +170777648927,213,0 +170777648975,213,0 +170777649023,213,0 +170777649071,213,0 +170777649119,213,0 +170777649166,213,0 +170777649214,213,0 +170777649264,213,0 +170777649312,213,0 +170777649360,213,0 +170777649409,213,0 +170777649457,213,0 +170777649505,213,0 +170777649553,213,0 +170777649601,213,0 +170777649648,214,0 +170777649696,214,0 +170777649744,213,0 +170777649792,213,0 +170777649840,213,0 +170777649887,213,0 +170777649935,213,0 +170777649983,213,0 +170777650031,213,0 +170777650079,213,0 +170777650127,213,0 +170777650174,213,0 +170777650222,213,0 +170777650270,213,0 +170777650318,213,0 +170777650366,213,0 +170777650414,214,0 +170777650462,214,0 +170777650509,214,0 +170777650557,214,0 +170777650605,214,0 +170777650653,214,0 +170777650701,213,0 +170777650749,213,0 +170777650796,213,0 +170777650844,213,0 +170777650892,213,0 +170777650940,213,0 +170777650988,213,0 +170777651036,214,0 +170777651085,213,0 +170777651133,214,0 +170777651181,214,0 +170777651228,214,0 +170777651276,214,0 +170777651324,214,0 +170777651372,214,0 +170777651420,214,0 +170777651468,214,0 +170777651516,214,0 +170777651563,214,0 +170777651611,214,0 +170777651659,213,0 +170777651707,213,0 +170777651755,213,0 +170777651803,213,0 +170777651851,213,0 +170777651899,213,0 +170777651946,214,0 +170777651994,214,0 +170777652042,214,0 +170777652090,214,0 +170777652138,214,0 +170777652186,214,0 +170777652234,214,0 +170777652282,214,0 +170777652330,214,0 +170777652379,214,0 +170777652427,214,0 +170777652475,214,0 +170777652525,214,0 +170777652574,214,0 +170777652622,213,0 +170777652670,213,0 +170777652718,213,0 +170777652766,213,0 +170777652814,213,0 +170777652862,213,0 +170777652910,213,0 +170777652957,214,0 +170777653005,214,0 +170777653053,214,0 +170777653103,214,0 +170777653152,214,0 +170777653200,214,0 +170777653248,214,0 +170777653296,214,0 +170777653344,214,0 +170777653392,214,0 +170777653439,214,0 +170777653487,214,0 +170777653535,213,0 +170777653583,213,0 +170777653631,213,0 +170777653679,213,0 +170777653727,213,0 +170777653774,213,0 +170777653822,213,0 +170777653872,213,0 +170777653920,213,0 +170777653967,213,0 +170777654015,214,0 +170777654063,213,0 +170777654111,214,0 +170777654159,214,0 +170777654209,214,0 +170777654257,214,0 +170777654306,214,0 +170777654354,214,0 +170777654402,214,0 +170777654451,214,0 +170777654499,213,0 +170777654547,213,0 +170777654595,213,0 +170777654643,213,0 +170777654691,213,0 +170777654741,213,0 +170777654790,213,0 +170777654838,213,0 +170777654886,213,0 +170777654935,213,0 +170777654983,213,0 +170777655031,214,0 +170777655079,214,0 +170777655129,214,0 +170777655177,214,0 +170777655226,214,0 +170777655274,214,0 +170777655324,214,0 +170777655372,214,0 +170777655419,214,0 +170777655467,213,0 +170777655515,213,0 +170777655563,213,0 +170777655611,213,0 +170777655659,213,0 +170777655709,213,0 +170777655756,213,0 +170777655804,213,0 +170777655852,213,0 +170777655900,213,0 +170777655948,214,0 +170777655996,214,0 +170777656045,214,0 +170777656093,214,0 +170777656143,214,0 +170777656190,214,0 +170777656238,214,0 +170777656288,214,0 +170777656337,214,0 +170777656385,214,0 +170777656433,213,0 +170777656482,213,0 +170777656530,213,0 +170777656578,213,0 +170777656626,213,0 +170777656676,213,0 +170777656725,213,0 +170777656773,214,0 +170777656821,214,0 +170777656869,214,0 +170777656917,214,0 +170777656966,214,0 +170777657016,214,0 +170777657064,214,0 +170777657112,214,0 +170777657159,214,0 +170777657207,214,0 +170777657255,214,0 +170777657305,214,0 +170777657354,213,0 +170777657402,213,0 +170777657452,213,0 +170777657501,213,0 +170777657549,213,0 +170777657597,213,0 +170777657645,213,0 +170777657693,213,0 +170777657741,213,0 +170777657789,214,0 +170777657837,214,0 +170777657884,214,0 +170777657932,214,0 +170777657980,214,0 +170777658028,214,0 +170777658076,214,0 +170777658124,214,0 +170777658172,214,0 +170777658221,214,0 +170777658269,214,0 +170777658318,213,0 +170777658366,213,0 +170777658414,213,0 +170777658462,213,0 +170777658510,213,0 +170777658558,213,0 +170777658608,213,0 +170777658655,213,0 +170777658703,213,0 +170777658751,213,0 +170777658801,213,0 +170777658849,213,0 +170777658897,213,0 +170777658945,213,0 +170777658993,213,0 +170777659040,213,0 +170777659088,213,0 +170777659136,213,0 +170777659186,214,0 +170777659234,214,0 +170777659282,213,0 +170777659331,213,0 +170777659379,213,0 +170777659429,213,0 +170777659478,213,0 +170777659528,213,0 +170777659577,213,0 +170777659627,213,0 +170777659675,213,0 +170777659723,213,0 +170777659771,213,0 +170777659819,213,0 +170777659867,213,0 +170777659915,213,0 +170777659964,214,0 +170777660012,213,0 +170777660060,214,0 +170777660110,214,0 +170777660157,214,0 +170777660205,213,0 +170777660253,212,0 +170777660301,213,0 +170777660349,213,0 +170777660399,213,0 +170777660447,213,0 +170777660495,213,0 +170777660544,213,0 +170777660592,213,0 +170777660640,213,0 +170777660688,213,0 +170777660736,213,0 +170777660784,213,0 +170777660834,214,0 +170777660882,214,0 +170777660929,214,0 +170777660977,214,0 +170777661025,214,0 +170777661075,214,0 +170777661123,214,0 +170777661171,213,0 +170777661219,213,0 +170777661268,213,0 +170777661316,213,0 +170777661366,213,0 +170777661414,213,0 +170777661463,213,0 +170777661513,213,0 +170777661560,213,0 +170777661608,213,0 +170777661656,213,0 +170777661704,213,0 +170777661752,214,0 +170777661800,214,0 +170777661848,214,0 +170777661896,214,0 +170777661944,214,0 +170777661992,214,0 +170777662040,214,0 +170777662089,214,0 +170777662139,213,0 +170777662187,213,0 +170777662235,213,0 +170777662284,213,0 +170777662334,213,0 +170777662382,213,0 +170777662430,213,0 +170777662478,213,0 +170777662526,213,0 +170777662574,213,0 +170777662622,213,0 +170777662669,214,0 +170777662717,214,0 +170777662765,214,0 +170777662815,214,0 +170777662863,214,0 +170777662912,214,0 +170777662962,214,0 +170777663010,214,0 +170777663058,213,0 +170777663106,213,0 +170777663155,213,0 +170777663203,213,0 +170777663251,213,0 +170777663299,213,0 +170777663347,213,0 +170777663395,213,0 +170777663444,213,0 +170777663492,213,0 +170777663540,213,0 +170777663588,213,0 +170777663637,213,0 +170777663685,214,0 +170777663733,213,0 +170777663781,214,0 +170777663829,214,0 +170777663879,214,0 +170777663928,214,0 +170777663976,214,0 +170777664026,213,0 +170777664073,213,0 +170777664121,213,0 +170777664169,213,0 +170777664217,213,0 +170777664265,213,0 +170777664315,213,0 +170777664363,213,0 +170777664412,213,0 +170777664462,213,0 +170777664509,213,0 +170777664557,213,0 +170777664605,213,0 +170777664653,214,0 +170777664701,214,0 +170777664751,214,0 +170777664799,214,0 +170777664848,214,0 +170777664896,214,0 +170777664944,213,0 +170777664992,213,0 +170777665040,213,0 +170777665089,213,0 +170777665137,213,0 +170777665187,213,0 +170777665235,213,0 +170777665284,213,0 +170777665332,213,0 +170777665380,213,0 +170777665429,213,0 +170777665477,213,0 +170777665527,213,0 +170777665575,213,0 +170777665623,214,0 +170777665671,214,0 +170777665718,214,0 +170777665766,214,0 +170777665816,214,0 +170777665864,214,0 +170777665912,213,0 +170777665961,213,0 +170777666009,213,0 +170777666059,213,0 +170777666108,213,0 +170777666158,213,0 +170777666207,213,0 +170777666257,213,0 +170777666305,213,0 +170777666353,213,0 +170777666401,214,0 +170777666450,214,0 +170777666498,213,0 +170777666548,214,0 +170777666596,214,0 +170777666645,214,0 +170777666693,214,0 +170777666743,214,0 +170777666791,214,0 +170777666838,214,0 +170777666886,213,0 +170777666936,213,0 +170777666984,213,0 +170777667033,213,0 +170777667083,213,0 +170777667132,213,0 +170777667180,213,0 +170777667228,213,0 +170777667278,213,0 +170777667326,213,0 +170777667374,213,0 +170777667423,213,0 +170777667471,213,0 +170777667519,213,0 +170777667569,214,0 +170777667618,214,0 +170777667666,214,0 +170777667714,214,0 +170777667762,214,0 +170777667812,213,0 +170777667859,213,0 +170777667907,213,0 +170777667955,213,0 +170777668003,213,0 +170777668053,213,0 +170777668100,213,0 +170777668148,213,0 +170777668198,213,0 +170777668246,213,0 +170777668294,213,0 +170777668342,213,0 +170777668390,213,0 +170777668438,213,0 +170777668486,213,0 +170777668534,213,0 +170777668581,213,0 +170777668631,213,0 +170777668679,214,0 +170777668727,214,0 +170777668775,213,0 +170777668823,213,0 +170777668872,213,0 +170777668920,213,0 +170777668970,213,0 +170777669018,213,0 +170777669066,213,0 +170777669113,213,0 +170777669163,213,0 +170777669211,213,0 +170777669260,213,0 +170777669308,213,0 +170777669356,213,0 +170777669404,213,0 +170777669452,213,0 +170777669502,214,0 +170777669551,214,0 +170777669599,214,0 +170777669647,214,0 +170777669695,214,0 +170777669743,213,0 +170777669791,213,0 +170777669839,213,0 +170777669887,213,0 +170777669934,213,0 +170777669982,213,0 +170777670030,213,0 +170777670078,213,0 +170777670127,213,0 +170777670177,213,0 +170777670225,214,0 +170777670273,214,0 +170777670321,214,0 +170777670370,214,0 +170777670418,214,0 +170777670466,214,0 +170777670516,214,0 +170777670564,214,0 +170777670613,214,0 +170777670661,213,0 +170777670711,213,0 +170777670760,213,0 +170777670808,213,0 +170777670856,213,0 +170777670903,213,0 +170777670951,213,0 +170777670999,213,0 +170777671047,214,0 +170777671095,214,0 +170777671143,214,0 +170777671191,214,0 +170777671238,214,0 +170777671286,214,0 +170777671334,214,0 +170777671382,214,0 +170777671430,214,0 +170777671478,214,0 +170777671526,214,0 +170777671573,214,0 +170777671621,213,0 +170777671669,213,0 +170777671719,213,0 +170777671768,213,0 +170777671816,213,0 +170777671865,213,0 +170777671915,213,0 +170777671963,214,0 +170777672010,214,0 +170777672060,214,0 +170777672108,214,0 +170777672156,214,0 +170777672203,214,0 +170777672251,214,0 +170777672299,214,0 +170777672347,214,0 +170777672396,214,0 +170777672444,214,0 +170777672492,214,0 +170777672540,214,0 +170777672588,213,0 +170777672636,213,0 +170777672684,213,0 +170777672732,213,0 +170777672780,213,0 +170777672829,213,0 +170777672877,214,0 +170777672925,214,0 +170777672973,214,0 +170777673021,214,0 +170777673069,214,0 +170777673117,214,0 +170777673165,214,0 +170777673214,215,0 +170777673262,214,0 +170777673310,214,0 +170777673358,214,0 +170777673406,214,0 +170777673454,214,0 +170777673502,213,0 +170777673550,213,0 +170777673599,213,0 +170777673647,213,0 +170777673695,213,0 +170777673743,213,0 +170777673793,213,0 +170777673841,213,0 +170777673890,213,0 +170777673938,214,0 +170777673986,214,0 +170777674034,214,0 +170777674081,214,0 +170777674129,214,0 +170777674179,214,0 +170777674227,214,0 +170777674275,214,0 +170777674323,214,0 +170777674371,214,0 +170777674420,214,0 +170777674468,213,0 +170777674516,213,0 +170777674564,213,0 +170777674612,213,0 +170777674660,213,0 +170777674708,213,0 +170777674757,213,0 +170777674805,213,0 +170777674853,213,0 +170777674901,213,0 +170777674951,214,0 +170777674998,214,0 +170777675046,214,0 +170777675094,214,0 +170777675142,214,0 +170777675190,214,0 +170777675238,214,0 +170777675286,214,0 +170777675336,214,0 +170777675383,214,0 +170777675433,213,0 +170777675481,213,0 +170777675530,213,0 +170777675578,213,0 +170777675626,213,0 +170777675674,213,0 +170777675722,213,0 +170777675770,213,0 +170777675818,213,0 +170777675867,214,0 +170777675915,213,0 +170777675965,214,0 +170777676012,214,0 +170777676060,214,0 +170777676108,214,0 +170777676156,214,0 +170777676206,214,0 +170777676253,214,0 +170777676301,214,0 +170777676349,214,0 +170777676398,213,0 +170777676446,213,0 +170777676494,213,0 +170777676542,213,0 +170777676591,213,0 +170777676639,213,0 +170777676687,213,0 +170777676735,213,0 +170777676783,213,0 +170777676831,213,0 +170777676878,213,0 +170777676926,213,0 +170777676974,214,0 +170777677022,213,0 +170777677070,214,0 +170777677119,214,0 +170777677169,214,0 +170777677218,214,0 +170777677266,214,0 +170777677314,213,0 +170777677362,213,0 +170777677410,213,0 +170777677458,213,0 +170777677506,213,0 +170777677554,213,0 +170777677602,213,0 +170777677650,213,0 +170777677698,213,0 +170777677747,213,0 +170777677795,213,0 +170777677845,213,0 +170777677893,213,0 +170777677941,213,0 +170777677989,214,0 +170777678037,213,0 +170777678084,214,0 +170777678132,214,0 +170777678182,214,0 +170777678230,214,0 +170777678279,213,0 +170777678327,213,0 +170777678375,213,0 +170777678425,213,0 +170777678473,213,0 +170777678520,213,0 +170777678568,213,0 +170777678616,213,0 +170777678664,213,0 +170777678712,214,0 +170777678760,214,0 +170777678809,214,0 +170777678857,214,0 +170777678905,214,0 +170777678953,214,0 +170777679001,214,0 +170777679049,214,0 +170777679096,214,0 +170777679144,214,0 +170777679192,214,0 +170777679240,213,0 +170777679288,213,0 +170777679336,213,0 +170777679384,213,0 +170777679432,213,0 +170777679480,213,0 +170777679527,213,0 +170777679577,213,0 +170777679625,214,0 +170777679675,214,0 +170777679724,214,0 +170777679772,214,0 +170777679820,214,0 +170777679868,214,0 +170777679917,214,0 +170777679965,214,0 +170777680013,214,0 +170777680063,214,0 +170777680111,214,0 +170777680158,214,0 +170777680206,213,0 +170777680256,213,0 +170777680305,213,0 +170777680353,213,0 +170777680401,213,0 +170777680449,213,0 +170777680497,213,0 +170777680546,213,0 +170777680594,213,0 +170777680642,214,0 +170777680690,214,0 +170777680740,214,0 +170777680788,214,0 +170777680836,214,0 +170777680885,214,0 +170777680933,214,0 +170777680981,213,0 +170777681029,214,0 +170777681077,214,0 +170777681124,213,0 +170777681172,213,0 +170777681220,213,0 +170777681268,213,0 +170777681316,213,0 +170777681364,213,0 +170777681412,213,0 +170777681459,213,0 +170777681507,213,0 +170777681555,213,0 +170777681603,213,0 +170777681652,213,0 +170777681700,213,0 +170777681748,213,0 +170777681798,214,0 +170777681846,213,0 +170777681894,214,0 +170777681942,214,0 +170777681989,214,0 +170777682037,214,0 +170777682087,213,0 +170777682136,213,0 +170777682184,213,0 +170777682234,213,0 +170777682282,213,0 +170777682330,213,0 +170777682378,213,0 +170777682426,213,0 +170777682474,213,0 +170777682523,213,0 +170777682571,213,0 +170777682619,213,0 +170777682667,213,0 +170777682715,214,0 +170777682765,214,0 +170777682813,214,0 +170777682861,214,0 +170777682909,214,0 +170777682958,214,0 +170777683006,214,0 +170777683056,213,0 +170777683104,213,0 +170777683152,213,0 +170777683200,213,0 +170777683249,213,0 +170777683297,213,0 +170777683347,213,0 +170777683394,213,0 +170777683442,213,0 +170777683490,213,0 +170777683538,213,0 +170777683588,213,0 +170777683635,214,0 +170777683683,214,0 +170777683731,214,0 +170777683779,214,0 +170777683827,214,0 +170777683875,214,0 +170777683922,214,0 +170777683970,214,0 +170777684018,213,0 +170777684066,213,0 +170777684114,213,0 +170777684162,213,0 +170777684210,213,0 +170777684259,213,0 +170777684309,213,0 +170777684357,213,0 +170777684405,213,0 +170777684452,213,0 +170777684500,213,0 +170777684550,214,0 +170777684598,214,0 +170777684646,214,0 +170777684694,214,0 +170777684742,214,0 +170777684789,214,0 +170777684837,214,0 +170777684887,214,0 +170777684935,213,0 +170777684983,213,0 +170777685031,213,0 +170777685079,213,0 +170777685127,213,0 +170777685174,213,0 +170777685222,213,0 +170777685270,213,0 +170777685318,213,0 +170777685365,213,0 +170777685413,214,0 +170777685461,214,0 +170777685509,214,0 +170777685557,214,0 +170777685605,214,0 +170777685653,214,0 +170777685701,214,0 +170777685750,214,0 +170777685798,214,0 +170777685846,214,0 +170777685894,213,0 +170777685942,213,0 +170777685990,213,0 +170777686039,213,0 +170777686089,213,0 +170777686139,213,0 +170777686186,213,0 +170777686234,213,0 +170777686284,213,0 +170777686333,213,0 +170777686381,214,0 +170777686429,214,0 +170777686477,214,0 +170777686527,214,0 +170777686576,214,0 +170777686626,214,0 +170777686674,214,0 +170777686721,214,0 +170777686769,214,0 +170777686817,214,0 +170777686865,213,0 +170777686913,213,0 +170777686962,213,0 +170777687010,213,0 +170777687060,213,0 +170777687107,213,0 +170777687155,213,0 +170777687203,213,0 +170777687253,213,0 +170777687301,214,0 +170777687350,214,0 +170777687400,214,0 +170777687449,214,0 +170777687498,214,0 +170777687548,214,0 +170777687596,214,0 +170777687644,214,0 +170777687692,214,0 +170777687740,214,0 +170777687788,213,0 +170777687836,213,0 +170777687884,213,0 +170777687932,213,0 +170777687980,213,0 +170777688027,213,0 +170777688077,213,0 +170777688125,213,0 +170777688173,213,0 +170777688220,213,0 +170777688268,213,0 +170777688316,213,0 +170777688364,214,0 +170777688412,214,0 +170777688460,214,0 +170777688509,214,0 +170777688558,214,0 +170777688606,214,0 +170777688654,214,0 +170777688702,214,0 +170777688752,213,0 +170777688800,213,0 +170777688847,213,0 +170777688895,213,0 +170777688943,213,0 +170777688991,213,0 +170777689039,213,0 +170777689087,213,0 +170777689136,213,0 +170777689184,213,0 +170777689232,213,0 +170777689280,213,0 +170777689328,213,0 +170777689376,214,0 +170777689424,214,0 +170777689473,214,0 +170777689521,214,0 +170777689569,214,0 +170777689617,214,0 +170777689665,214,0 +170777689713,213,0 +170777689760,213,0 +170777689808,213,0 +170777689856,213,0 +170777689904,213,0 +170777689952,213,0 +170777690000,213,0 +170777690048,213,0 +170777690096,213,0 +170777690145,213,0 +170777690193,213,0 +170777690243,213,0 +170777690291,213,0 +170777690339,213,0 +170777690388,213,0 +170777690438,213,0 +170777690486,214,0 +170777690534,214,0 +170777690582,214,0 +170777690631,214,0 +170777690679,213,0 +170777690728,213,0 +170777690776,213,0 +170777690824,213,0 +170777690874,213,0 +170777690922,213,0 +170777690970,213,0 +170777691018,213,0 +170777691067,213,0 +170777691115,213,0 +170777691163,213,0 +170777691211,213,0 +170777691259,213,0 +170777691307,213,0 +170777691355,214,0 +170777691403,213,0 +170777691450,214,0 +170777691498,214,0 +170777691546,214,0 +170777691594,213,0 +170777691642,213,0 +170777691692,213,0 +170777691740,213,0 +170777691788,213,0 +170777691836,213,0 +170777691883,213,0 +170777691931,213,0 +170777691981,213,0 +170777692029,213,0 +170777692077,213,0 +170777692124,213,0 +170777692172,213,0 +170777692220,213,0 +170777692268,213,0 +170777692316,214,0 +170777692364,214,0 +170777692412,214,0 +170777692461,214,0 +170777692509,214,0 +170777692557,213,0 +170777692605,213,0 +170777692655,213,0 +170777692702,213,0 +170777692750,213,0 +170777692798,213,0 +170777692848,213,0 +170777692897,213,0 +170777692945,213,0 +170777692995,213,0 +170777693043,213,0 +170777693092,213,0 +170777693140,214,0 +170777693190,214,0 +170777693238,214,0 +170777693287,214,0 +170777693335,214,0 +170777693383,214,0 +170777693431,214,0 +170777693479,214,0 +170777693527,213,0 +170777693575,213,0 +170777693623,213,0 +170777693672,213,0 +170777693720,213,0 +170777693770,213,0 +170777693818,213,0 +170777693867,213,0 +170777693917,213,0 +170777693965,213,0 +170777694014,213,0 +170777694063,213,0 +170777694113,214,0 +170777694161,214,0 +170777694210,214,0 +170777694260,214,0 +170777694309,214,0 +170777694359,214,0 +170777694407,214,0 +170777694455,213,0 +170777694502,213,0 +170777694550,213,0 +170777694598,213,0 +170777694648,213,0 +170777694696,213,0 +170777694743,213,0 +170777694791,213,0 +170777694841,213,0 +170777694890,213,0 +170777694938,213,0 +170777694986,214,0 +170777695035,214,0 +170777695083,214,0 +170777695133,214,0 +170777695181,214,0 +170777695229,214,0 +170777695277,214,0 +170777695326,214,0 +170777695374,214,0 +170777695422,213,0 +170777695470,213,0 +170777695518,213,0 +170777695568,213,0 +170777695617,213,0 +170777695667,213,0 +170777695715,213,0 +170777695762,213,0 +170777695810,213,0 +170777695858,213,0 +170777695906,214,0 +170777695954,214,0 +170777696002,214,0 +170777696050,214,0 +170777696098,214,0 +170777696148,214,0 +170777696196,214,0 +170777696244,214,0 +170777696293,214,0 +170777696341,214,0 +170777696389,213,0 +170777696437,213,0 +170777696486,213,0 +170777696536,213,0 +170777696584,213,0 +170777696632,213,0 +170777696680,214,0 +170777696728,214,0 +170777696776,214,0 +170777696823,214,0 +170777696871,214,0 +170777696919,214,0 +170777696967,214,0 +170777697015,214,0 +170777697063,214,0 +170777697111,214,0 +170777697159,214,0 +170777697208,214,0 +170777697256,214,0 +170777697304,213,0 +170777697352,213,0 +170777697402,213,0 +170777697450,213,0 +170777697499,213,0 +170777697547,213,0 +170777697597,213,0 +170777697645,213,0 +170777697693,213,0 +170777697740,213,0 +170777697788,213,0 +170777697836,213,0 +170777697885,214,0 +170777697933,214,0 +170777697981,214,0 +170777698029,214,0 +170777698077,214,0 +170777698124,214,0 +170777698172,214,0 +170777698220,214,0 +170777698268,213,0 +170777698316,213,0 +170777698365,213,0 +170777698413,213,0 +170777698461,213,0 +170777698509,213,0 +170777698557,213,0 +170777698605,213,0 +170777698653,213,0 +170777698702,213,0 +170777698750,213,0 +170777698798,214,0 +170777698846,214,0 +170777698894,213,0 +170777698942,214,0 +170777698991,214,0 +170777699039,214,0 +170777699087,214,0 +170777699135,214,0 +170777699183,214,0 +170777699231,213,0 +170777699279,213,0 +170777699329,213,0 +170777699378,213,0 +170777699426,213,0 +170777699474,213,0 +170777699522,213,0 +170777699570,213,0 +170777699618,213,0 +170777699666,213,0 +170777699714,213,0 +170777699762,214,0 +170777699810,213,0 +170777699858,213,0 +170777699907,214,0 +170777699955,214,0 +170777700005,214,0 +170777700053,214,0 +170777700101,214,0 +170777700148,213,0 +170777700198,213,0 +170777700246,213,0 +170777700294,213,0 +170777700342,213,0 +170777700390,213,0 +170777700437,213,0 +170777700485,213,0 +170777700533,213,0 +170777700583,214,0 +170777700631,214,0 +170777700679,214,0 +170777700727,214,0 +170777700775,214,0 +170777700823,214,0 +170777700871,214,0 +170777700919,214,0 +170777700967,214,0 +170777701015,214,0 +170777701062,214,0 +170777701110,213,0 +170777701158,213,0 +170777701208,213,0 +170777701256,213,0 +170777701305,213,0 +170777701355,213,0 +170777701405,213,0 +170777701454,213,0 +170777701502,213,0 +170777701550,214,0 +170777701598,214,0 +170777701646,214,0 +170777701694,214,0 +170777701742,214,0 +170777701791,214,0 +170777701839,214,0 +170777701889,214,0 +170777701937,215,0 +170777701986,214,0 +170777702036,214,0 +170777702084,213,0 +170777702133,213,0 +170777702183,213,0 +170777702231,213,0 +170777702280,213,0 +170777702328,214,0 +170777702376,213,0 +170777702424,214,0 +170777702472,214,0 +170777702520,214,0 +170777702567,214,0 +170777702617,214,0 +170777702665,214,0 +170777702713,214,0 +170777702761,214,0 +170777702810,215,0 +170777702858,214,0 +170777702906,214,0 +170777702954,214,0 +170777703002,213,0 +170777703052,213,0 +170777703100,213,0 +170777703148,213,0 +170777703196,213,0 +170777703244,213,0 +170777703292,213,0 +170777703340,213,0 +170777703388,214,0 +170777703435,214,0 +170777703485,214,0 +170777703533,214,0 +170777703581,214,0 +170777703630,214,0 +170777703678,214,0 +170777703728,214,0 +170777703776,214,0 +170777703824,214,0 +170777703872,214,0 +170777703920,214,0 +170777703969,213,0 +170777704017,213,0 +170777704065,213,0 +170777704113,213,0 +170777704163,213,0 +170777704212,213,0 +170777704262,213,0 +170777704310,213,0 +170777704358,213,0 +170777704406,214,0 +170777704456,213,0 +170777704504,214,0 +170777704552,214,0 +170777704599,214,0 +170777704647,214,0 +170777704697,214,0 +170777704746,214,0 +170777704796,214,0 +170777704844,214,0 +170777704892,214,0 +170777704940,213,0 +170777704989,213,0 +170777705037,213,0 +170777705085,213,0 +170777705135,213,0 +170777705183,213,0 +170777705231,214,0 +170777705279,214,0 +170777705327,213,0 +170777705376,214,0 +170777705424,214,0 +170777705474,214,0 +170777705521,214,0 +170777705569,214,0 +170777705617,214,0 +170777705667,213,0 +170777705715,213,0 +170777705763,214,0 +170777705811,214,0 +170777705859,213,0 +170777705907,213,0 +170777705956,213,0 +170777706006,213,0 +170777706054,213,0 +170777706102,213,0 +170777706150,213,0 +170777706198,213,0 +170777706246,213,0 +170777706294,213,0 +170777706342,213,0 +170777706389,213,0 +170777706439,214,0 +170777706488,214,0 +170777706536,214,0 +170777706584,214,0 +170777706634,213,0 +170777706682,214,0 +170777706730,214,0 +170777706778,214,0 +170777706826,213,0 +170777706874,213,0 +170777706921,213,0 +170777706971,213,0 +170777707019,213,0 +170777707068,213,0 +170777707116,213,0 +170777707164,213,0 +170777707214,213,0 +170777707263,213,0 +170777707311,213,0 +170777707359,213,0 +170777707407,213,0 +170777707457,213,0 +170777707506,213,0 +170777707554,213,0 +170777707602,213,0 +170777707650,214,0 +170777707700,214,0 +170777707748,214,0 +170777707797,213,0 +170777707845,213,0 +170777707893,213,0 +170777707941,213,0 +170777707989,213,0 +170777708039,213,0 +170777708088,213,0 +170777708137,213,0 +170777708187,213,0 +170777708235,213,0 +170777708283,214,0 +170777708332,214,0 +170777708380,214,0 +170777708430,214,0 +170777708478,214,0 +170777708527,214,0 +170777708577,214,0 +170777708625,214,0 +170777708674,214,0 +170777708722,213,0 +170777708770,213,0 +170777708820,213,0 +170777708868,213,0 +170777708917,213,0 +170777708965,213,0 +170777709015,213,0 +170777709062,213,0 +170777709112,213,0 +170777709161,213,0 +170777709209,213,0 +170777709259,214,0 +170777709307,214,0 +170777709355,214,0 +170777709403,214,0 +170777709450,214,0 +170777709498,214,0 +170777709546,214,0 +170777709594,214,0 +170777709644,214,0 +170777709691,213,0 +170777709739,213,0 +170777709787,213,0 +170777709837,213,0 +170777709885,213,0 +170777709933,213,0 +170777709982,213,0 +170777710032,213,0 +170777710081,213,0 +170777710129,213,0 +170777710177,213,0 +170777710225,214,0 +170777710273,214,0 +170777710321,214,0 +170777710369,214,0 +170777710416,214,0 +170777710466,214,0 +170777710515,214,0 +170777710563,214,0 +170777710611,214,0 +170777710659,213,0 +170777710707,213,0 +170777710757,213,0 +170777710805,213,0 +170777710853,213,0 +170777710900,213,0 +170777710948,213,0 +170777710996,213,0 +170777711044,213,0 +170777711094,214,0 +170777711142,214,0 +170777711190,214,0 +170777711239,214,0 +170777711288,214,0 +170777711336,214,0 +170777711384,214,0 +170777711432,214,0 +170777711482,214,0 +170777711531,214,0 +170777711581,213,0 +170777711630,213,0 +170777711680,213,0 +170777711729,213,0 +170777711777,213,0 +170777711825,213,0 +170777711873,213,0 +170777711921,213,0 +170777711971,213,0 +170777712020,214,0 +170777712068,214,0 +170777712116,214,0 +170777712164,214,0 +170777712214,214,0 +170777712262,214,0 +170777712309,214,0 +170777712357,214,0 +170777712405,214,0 +170777712455,214,0 +170777712503,213,0 +170777712552,213,0 +170777712602,213,0 +170777712652,213,0 +170777712699,213,0 +170777712749,213,0 +170777712799,213,0 +170777712847,213,0 +170777712894,213,0 +170777712944,213,0 +170777712992,213,0 +170777713040,214,0 +170777713087,214,0 +170777713137,214,0 +170777713185,214,0 +170777713234,214,0 +170777713282,214,0 +170777713330,214,0 +170777713379,214,0 +170777713427,214,0 +170777713475,213,0 +170777713523,213,0 +170777713572,213,0 +170777713622,213,0 +170777713671,213,0 +170777713719,213,0 +170777713767,213,0 +170777713815,213,0 +170777713863,213,0 +170777713913,213,0 +170777713961,213,0 +170777714008,214,0 +170777714056,214,0 +170777714106,214,0 +170777714153,214,0 +170777714201,214,0 +170777714249,214,0 +170777714297,214,0 +170777714345,214,0 +170777714393,214,0 +170777714440,213,0 +170777714488,213,0 +170777714536,213,0 +170777714584,213,0 +170777714633,213,0 +170777714681,213,0 +170777714729,213,0 +170777714778,213,0 +170777714826,214,0 +170777714874,213,0 +170777714922,213,0 +170777714970,214,0 +170777715018,214,0 +170777715065,214,0 +170777715115,214,0 +170777715163,214,0 +170777715211,214,0 +170777715258,214,0 +170777715306,214,0 +170777715354,214,0 +170777715402,213,0 +170777715451,213,0 +170777715499,213,0 +170777715547,213,0 +170777715595,213,0 +170777715643,213,0 +170777715692,214,0 +170777715740,214,0 +170777715788,214,0 +170777715836,214,0 +170777715883,214,0 +170777715931,214,0 +170777715979,214,0 +170777716027,214,0 +170777716075,214,0 +170777716123,214,0 +170777716170,214,0 +170777716218,214,0 +170777716266,214,0 +170777716314,213,0 +170777716362,213,0 +170777716410,213,0 +170777716457,213,0 +170777716505,213,0 +170777716553,213,0 +170777716603,213,0 +170777716650,214,0 +170777716700,213,0 +170777716748,214,0 +170777716796,214,0 +170777716845,214,0 +170777716893,214,0 +170777716941,214,0 +170777716988,214,0 +170777717036,214,0 +170777717084,214,0 +170777717132,214,0 +170777717180,214,0 +170777717227,214,0 +170777717275,213,0 +170777717323,213,0 +170777717371,213,0 +170777717419,213,0 +170777717467,213,0 +170777717514,214,0 +170777717562,213,0 +170777717610,213,0 +170777717658,213,0 +170777717706,214,0 +170777717754,214,0 +170777717802,214,0 +170777717849,214,0 +170777717897,214,0 +170777717945,214,0 +170777717993,214,0 +170777718041,214,0 +170777718090,214,0 +170777718138,214,0 +170777718186,214,0 +170777718234,213,0 +170777718282,213,0 +170777718329,213,0 +170777718379,213,0 +170777718427,213,0 +170777718475,213,0 +170777718523,214,0 +170777718572,213,0 +170777718622,213,0 +170777718669,213,0 +170777718717,214,0 +170777718765,214,0 +170777718813,214,0 +170777718861,214,0 +170777718908,214,0 +170777718956,214,0 +170777719004,214,0 +170777719052,214,0 +170777719100,214,0 +170777719148,214,0 +170777719196,213,0 +170777719244,212,0 +170777719291,213,0 +170777719339,213,0 +170777719389,213,0 +170777719437,213,0 +170777719486,213,0 +170777719534,213,0 +170777719582,213,0 +170777719629,213,0 +170777719677,213,0 +170777719725,214,0 +170777719773,214,0 +170777719821,214,0 +170777719869,214,0 +170777719916,214,0 +170777719964,214,0 +170777720012,214,0 +170777720060,214,0 +170777720108,214,0 +170777720156,213,0 +170777720205,212,0 +170777720253,213,0 +170777720302,213,0 +170777720350,213,0 +170777720398,213,0 +170777720446,213,0 +170777720494,213,0 +170777720542,213,0 +170777720590,214,0 +170777720637,214,0 +170777720685,213,0 +170777720733,214,0 +170777720781,213,0 +170777720829,214,0 +170777720877,213,0 +170777720925,214,0 +170777720972,214,0 +170777721022,214,0 +170777721071,213,0 +170777721119,213,0 +170777721169,213,0 +170777721217,213,0 +170777721265,213,0 +170777721313,213,0 +170777721360,213,0 +170777721410,213,0 +170777721458,213,0 +170777721507,213,0 +170777721555,213,0 +170777721603,214,0 +170777721651,213,0 +170777721699,214,0 +170777721747,214,0 +170777721795,214,0 +170777721843,214,0 +170777721891,214,0 +170777721939,214,0 +170777721987,214,0 +170777722035,213,0 +170777722084,213,0 +170777722132,213,0 +170777722182,213,0 +170777722229,213,0 +170777722277,213,0 +170777722325,213,0 +170777722375,213,0 +170777722423,213,0 +170777722471,213,0 +170777722519,213,0 +170777722567,213,0 +170777722614,214,0 +170777722664,214,0 +170777722712,214,0 +170777722759,214,0 +170777722807,214,0 +170777722855,214,0 +170777722903,214,0 +170777722951,214,0 +170777722999,213,0 +170777723047,213,0 +170777723094,213,0 +170777723142,213,0 +170777723190,213,0 +170777723238,213,0 +170777723286,213,0 +170777723334,213,0 +170777723382,213,0 +170777723429,213,0 +170777723477,214,0 +170777723525,214,0 +170777723573,214,0 +170777723621,214,0 +170777723669,214,0 +170777723717,214,0 +170777723764,214,0 +170777723812,214,0 +170777723860,214,0 +170777723908,214,0 +170777723956,213,0 +170777724004,213,0 +170777724051,213,0 +170777724101,213,0 +170777724149,213,0 +170777724197,213,0 +170777724244,213,0 +170777724292,213,0 +170777724340,213,0 +170777724388,213,0 +170777724436,213,0 +170777724484,213,0 +170777724532,213,0 +170777724581,214,0 +170777724629,214,0 +170777724677,214,0 +170777724725,214,0 +170777724773,214,0 +170777724821,214,0 +170777724869,213,0 +170777724917,213,0 +170777724965,213,0 +170777725012,213,0 +170777725060,213,0 +170777725108,213,0 +170777725156,213,0 +170777725204,213,0 +170777725252,213,0 +170777725300,213,0 +170777725348,213,0 +170777725396,213,0 +170777725444,213,0 +170777725492,213,0 +170777725540,214,0 +170777725588,214,0 +170777725636,214,0 +170777725683,214,0 +170777725731,214,0 +170777725779,214,0 +170777725829,213,0 +170777725878,213,0 +170777725926,213,0 +170777725974,213,0 +170777726022,213,0 +170777726070,213,0 +170777726119,213,0 +170777726169,213,0 +170777726217,213,0 +170777726265,213,0 +170777726313,213,0 +170777726360,213,0 +170777726408,213,0 +170777726456,214,0 +170777726504,213,0 +170777726552,213,0 +170777726602,214,0 +170777726649,214,0 +170777726697,214,0 +170777726745,213,0 +170777726793,213,0 +170777726841,212,0 +170777726889,213,0 +170777726937,213,0 +170777726985,213,0 +170777727032,213,0 +170777727080,213,0 +170777727130,213,0 +170777727178,213,0 +170777727226,213,0 +170777727274,213,0 +170777727322,213,0 +170777727370,213,0 +170777727418,214,0 +170777727467,214,0 +170777727515,214,0 +170777727564,214,0 +170777727612,214,0 +170777727660,213,0 +170777727708,213,0 +170777727756,213,0 +170777727806,213,0 +170777727854,213,0 +170777727903,213,0 +170777727951,213,0 +170777728001,213,0 +170777728049,213,0 +170777728098,213,0 +170777728146,213,0 +170777728194,213,0 +170777728242,213,0 +170777728290,213,0 +170777728339,214,0 +170777728387,214,0 +170777728435,214,0 +170777728485,214,0 +170777728533,214,0 +170777728581,214,0 +170777728629,213,0 +170777728677,213,0 +170777728725,213,0 +170777728772,213,0 +170777728820,213,0 +170777728870,213,0 +170777728919,213,0 +170777728969,213,0 +170777729018,213,0 +170777729066,213,0 +170777729116,214,0 +170777729165,214,0 +170777729213,214,0 +170777729261,214,0 +170777729311,214,0 +170777729360,214,0 +170777729408,214,0 +170777729456,214,0 +170777729504,214,0 +170777729552,213,0 +170777729600,213,0 +170777729648,213,0 +170777729696,213,0 +170777729743,213,0 +170777729791,213,0 +170777729839,213,0 +170777729887,213,0 +170777729935,213,0 +170777729983,213,0 +170777730031,214,0 +170777730080,214,0 +170777730128,214,0 +170777730176,214,0 +170777730224,214,0 +170777730271,214,0 +170777730321,214,0 +170777730369,214,0 +170777730418,214,0 +170777730466,213,0 +170777730514,213,0 +170777730562,213,0 +170777730610,213,0 +170777730657,213,0 +170777730705,213,0 +170777730753,213,0 +170777730801,213,0 +170777730849,214,0 +170777730896,213,0 +170777730944,213,0 +170777730992,214,0 +170777731040,214,0 +170777731088,214,0 +170777731136,214,0 +170777731184,214,0 +170777731231,214,0 +170777731279,214,0 +170777731327,214,0 +170777731375,214,0 +170777731423,213,0 +170777731471,213,0 +170777731520,213,0 +170777731570,213,0 +170777731619,213,0 +170777731669,213,0 +170777731719,214,0 +170777731768,213,0 +170777731816,214,0 +170777731864,214,0 +170777731912,214,0 +170777731959,214,0 +170777732007,214,0 +170777732055,214,0 +170777732103,214,0 +170777732151,214,0 +170777732199,214,0 +170777732248,214,0 +170777732296,214,0 +170777732345,213,0 +170777732395,213,0 +170777732443,213,0 +170777732491,213,0 +170777732539,213,0 +170777732588,213,0 +170777732636,213,0 +170777732686,213,0 +170777732734,214,0 +170777732783,214,0 +170777732831,213,0 +170777732879,214,0 +170777732929,214,0 +170777732977,214,0 +170777733026,214,0 +170777733074,214,0 +170777733122,214,0 +170777733170,214,0 +170777733217,214,0 +170777733267,213,0 +170777733315,213,0 +170777733363,213,0 +170777733410,213,0 +170777733458,213,0 +170777733506,213,0 +170777733554,213,0 +170777733602,213,0 +170777733650,213,0 +170777733698,213,0 +170777733746,213,0 +170777733793,213,0 +170777733841,214,0 +170777733890,214,0 +170777733938,213,0 +170777733986,213,0 +170777734034,213,0 +170777734082,214,0 +170777734130,214,0 +170777734178,213,0 +170777734226,213,0 +170777734273,213,0 +170777734321,213,0 +170777734369,213,0 +170777734417,213,0 +170777734465,213,0 +170777734513,213,0 +170777734562,213,0 +170777734610,213,0 +170777734658,213,0 +170777734708,213,0 +170777734757,213,0 +170777734805,213,0 +170777734853,213,0 +170777734901,213,0 +170777734949,213,0 +170777734997,214,0 +170777735045,214,0 +170777735093,214,0 +170777735141,213,0 +170777735189,213,0 +170777735238,213,0 +170777735286,213,0 +170777735334,213,0 +170777735382,213,0 +170777735430,213,0 +170777735478,213,0 +170777735525,213,0 +170777735573,213,0 +170777735621,213,0 +170777735669,213,0 +170777735717,214,0 +170777735765,214,0 +170777735813,214,0 +170777735861,214,0 +170777735908,214,0 +170777735956,214,0 +170777736004,214,0 +170777736054,213,0 +170777736103,212,0 +170777736151,213,0 +170777736201,213,0 +170777736249,213,0 +170777736296,213,0 +170777736345,213,0 +170777736392,213,0 +170777736440,213,0 +170777736490,213,0 +170777736538,214,0 +170777736586,214,0 +170777736634,214,0 +170777736683,214,0 +170777736731,214,0 +170777736779,214,0 +170777736827,214,0 +170777736875,214,0 +170777736923,214,0 +170777736971,213,0 +170777737019,213,0 +170777737067,213,0 +170777737115,213,0 +170777737163,213,0 +170777737211,213,0 +170777737259,213,0 +170777737308,213,0 +170777737358,213,0 +170777737406,214,0 +170777737455,213,0 +170777737503,214,0 +170777737551,214,0 +170777737599,214,0 +170777737647,214,0 +170777737695,214,0 +170777737743,214,0 +170777737791,214,0 +170777737839,214,0 +170777737887,213,0 +170777737934,213,0 +170777737984,213,0 +170777738033,213,0 +170777738081,213,0 +170777738129,213,0 +170777738179,213,0 +170777738227,213,0 +170777738275,213,0 +170777738323,214,0 +170777738371,213,0 +170777738420,214,0 +170777738468,214,0 +170777738516,214,0 +170777738564,214,0 +170777738612,214,0 +170777738661,214,0 +170777738711,214,0 +170777738759,214,0 +170777738807,214,0 +170777738856,213,0 +170777738904,213,0 +170777738952,213,0 +170777739000,213,0 +170777739048,213,0 +170777739098,213,0 +170777739147,213,0 +170777739195,214,0 +170777739243,214,0 +170777739291,214,0 +170777739341,214,0 +170777739390,214,0 +170777739438,214,0 +170777739487,214,0 +170777739535,214,0 +170777739585,214,0 +170777739633,214,0 +170777739681,214,0 +170777739730,214,0 +170777739780,214,0 +170777739830,213,0 +170777739877,213,0 +170777739925,214,0 +170777739973,214,0 +170777740021,214,0 +170777740069,214,0 +170777740119,214,0 +170777740168,214,0 +170777740218,214,0 +170777740267,214,0 +170777740317,214,0 +170777740365,214,0 +170777740414,214,0 +170777740462,214,0 +170777740510,214,0 +170777740560,214,0 +170777740609,214,0 +170777740657,214,0 +170777740705,213,0 +170777740753,213,0 +170777740803,214,0 +170777740850,213,0 +170777740898,214,0 +170777740946,214,0 +170777740994,214,0 +170777741042,214,0 +170777741090,214,0 +170777741140,214,0 +170777741188,214,0 +170777741237,214,0 +170777741285,214,0 +170777741335,214,0 +170777741384,214,0 +170777741432,214,0 +170777741480,214,0 +170777741528,214,0 +170777741576,214,0 +170777741624,213,0 +170777741672,213,0 +170777741720,213,0 +170777741769,213,0 +170777741819,213,0 +170777741868,213,0 +170777741918,214,0 +170777741966,214,0 +170777742014,214,0 +170777742063,214,0 +170777742111,214,0 +170777742159,214,0 +170777742207,214,0 +170777742255,214,0 +170777742303,214,0 +170777742351,214,0 +170777742399,214,0 +170777742447,214,0 +170777742495,214,0 +170777742543,213,0 +170777742592,213,0 +170777742640,213,0 +170777742688,213,0 +170777742736,213,0 +170777742786,213,0 +170777742835,213,0 +170777742883,213,0 +170777742933,213,0 +170777742981,213,0 +170777743030,213,0 +170777743080,214,0 +170777743128,213,0 +170777743176,214,0 +170777743223,214,0 +170777743272,214,0 +170777743319,214,0 +170777743367,214,0 +170777743417,214,0 +170777743466,213,0 +170777743516,213,0 +170777743564,213,0 +170777743613,213,0 +170777743661,213,0 +170777743711,213,0 +170777743758,213,0 +170777743806,213,0 +170777743854,213,0 +170777743904,213,0 +170777743952,213,0 +170777744000,213,0 +170777744048,214,0 +170777744096,214,0 +170777744144,214,0 +170777744193,214,0 +170777744241,214,0 +170777744289,214,0 +170777744337,214,0 +170777744385,214,0 +170777744434,213,0 +170777744482,213,0 +170777744530,213,0 +170777744578,213,0 +170777744628,213,0 +170777744676,213,0 +170777744724,213,0 +170777744772,213,0 +170777744821,213,0 +170777744870,213,0 +170777744918,214,0 +170777744966,214,0 +170777745014,214,0 +170777745062,214,0 +170777745110,214,0 +170777745160,214,0 +170777745207,214,0 +170777745255,214,0 +170777745303,214,0 +170777745351,213,0 +170777745399,213,0 +170777745447,213,0 +170777745495,213,0 +170777745545,213,0 +170777745593,213,0 +170777745641,213,0 +170777745690,213,0 +170777745740,213,0 +170777745789,213,0 +170777745837,214,0 +170777745885,214,0 +170777745933,214,0 +170777745981,214,0 +170777746029,214,0 +170777746077,214,0 +170777746125,214,0 +170777746173,214,0 +170777746221,214,0 +170777746269,213,0 +170777746318,213,0 +170777746366,213,0 +170777746414,213,0 +170777746464,213,0 +170777746511,213,0 +170777746559,213,0 +170777746609,213,0 +170777746657,213,0 +170777746706,213,0 +170777746754,214,0 +170777746802,213,0 +170777746850,214,0 +170777746898,214,0 +170777746946,214,0 +170777746994,214,0 +170777747042,214,0 +170777747090,214,0 +170777747138,214,0 +170777747186,213,0 +170777747236,213,0 +170777747284,213,0 +170777747331,213,0 +170777747381,213,0 +170777747429,213,0 +170777747477,213,0 +170777747525,213,0 +170777747573,213,0 +170777747621,213,0 +170777747670,213,0 +170777747718,213,0 +170777747766,213,0 +170777747816,214,0 +170777747864,214,0 +170777747912,214,0 +170777747961,214,0 +170777748009,213,0 +170777748057,214,0 +170777748105,214,0 +170777748154,213,0 +170777748202,213,0 +170777748250,213,0 +170777748298,213,0 +170777748346,213,0 +170777748394,213,0 +170777748442,213,0 +170777748492,213,0 +170777748540,213,0 +170777748587,213,0 +170777748635,213,0 +170777748685,213,0 +170777748733,213,0 +170777748781,213,0 +170777748830,213,0 +170777748878,214,0 +170777748928,213,0 +170777748977,214,0 +170777749025,214,0 +170777749075,214,0 +170777749123,214,0 +170777749171,214,0 +170777749220,214,0 +170777749268,214,0 +170777749316,214,0 +170777749366,214,0 +170777749415,214,0 +170777749463,214,0 +170777749512,213,0 +170777749560,213,0 +170777749608,213,0 +170777749656,213,0 +170777749704,213,0 +170777749752,213,0 +170777749802,213,0 +170777749850,213,0 +170777749898,213,0 +170777749948,213,0 +170777749996,213,0 +170777750045,213,0 +170777750095,214,0 +170777750144,213,0 +170777750192,213,0 +170777750242,214,0 +170777750290,214,0 +170777750338,214,0 +170777750385,214,0 +170777750433,214,0 +170777750481,213,0 +170777750529,213,0 +170777750579,213,0 +170777750628,213,0 +170777750678,213,0 +170777750726,213,0 +170777750774,213,0 +170777750822,213,0 +170777750870,213,0 +170777750919,213,0 +170777750969,213,0 +170777751017,213,0 +170777751066,214,0 +170777751114,214,0 +170777751162,214,0 +170777751210,214,0 +170777751260,214,0 +170777751308,214,0 +170777751356,214,0 +170777751405,213,0 +170777751453,213,0 +170777751501,213,0 +170777751551,213,0 +170777751600,213,0 +170777751648,213,0 +170777751696,213,0 +170777751744,213,0 +170777751792,213,0 +170777751840,213,0 +170777751888,213,0 +170777751936,214,0 +170777751984,214,0 +170777752034,214,0 +170777752083,214,0 +170777752132,214,0 +170777752180,214,0 +170777752228,214,0 +170777752278,214,0 +170777752327,213,0 +170777752375,213,0 +170777752425,213,0 +170777752474,213,0 +170777752522,213,0 +170777752570,213,0 +170777752620,213,0 +170777752668,213,0 +170777752717,214,0 +170777752765,214,0 +170777752813,214,0 +170777752861,214,0 +170777752909,214,0 +170777752959,214,0 +170777753007,214,0 +170777753055,214,0 +170777753102,214,0 +170777753150,214,0 +170777753198,214,0 +170777753246,213,0 +170777753296,213,0 +170777753344,213,0 +170777753392,213,0 +170777753441,213,0 +170777753491,213,0 +170777753539,213,0 +170777753588,213,0 +170777753638,213,0 +170777753687,214,0 +170777753737,214,0 +170777753786,214,0 +170777753834,214,0 +170777753882,214,0 +170777753932,214,0 +170777753980,214,0 +170777754029,214,0 +170777754077,214,0 +170777754125,214,0 +170777754173,213,0 +170777754221,213,0 +170777754270,213,0 +170777754318,213,0 +170777754366,213,0 +170777754414,213,0 +170777754464,213,0 +170777754513,213,0 +170777754563,213,0 +170777754611,213,0 +170777754660,213,0 +170777754708,214,0 +170777754756,214,0 +170777754804,214,0 +170777754853,214,0 +170777754901,214,0 +170777754951,214,0 +170777755000,214,0 +170777755050,214,0 +170777755098,214,0 +170777755146,213,0 +170777755194,213,0 +170777755242,213,0 +170777755290,213,0 +170777755338,213,0 +170777755387,213,0 +170777755435,213,0 +170777755483,213,0 +170777755531,213,0 +170777755579,213,0 +170777755627,214,0 +170777755677,213,0 +170777755726,214,0 +170777755774,214,0 +170777755823,214,0 +170777755871,214,0 +170777755919,214,0 +170777755967,214,0 +170777756017,213,0 +170777756065,213,0 +170777756113,213,0 +170777756162,213,0 +170777756210,213,0 +170777756258,213,0 +170777756306,213,0 +170777756354,213,0 +170777756402,213,0 +170777756450,213,0 +170777756498,213,0 +170777756546,213,0 +170777756593,213,0 +170777756641,213,0 +170777756691,214,0 +170777756741,214,0 +170777756789,214,0 +170777756837,214,0 +170777756884,214,0 +170777756934,214,0 +170777756982,213,0 +170777757031,213,0 +170777757079,213,0 +170777757127,213,0 +170777757175,213,0 +170777757223,213,0 +170777757271,213,0 +170777757319,213,0 +170777757369,213,0 +170777757417,213,0 +170777757465,213,0 +170777757513,214,0 +170777757561,214,0 +170777757610,214,0 +170777757658,214,0 +170777757706,214,0 +170777757756,214,0 +170777757804,214,0 +170777757852,214,0 +170777757901,213,0 +170777757949,213,0 +170777757997,213,0 +170777758045,213,0 +170777758093,213,0 +170777758141,213,0 +170777758189,213,0 +170777758237,213,0 +170777758285,213,0 +170777758333,213,0 +170777758381,213,0 +170777758428,213,0 +170777758476,213,0 +170777758524,213,0 +170777758572,213,0 +170777758622,213,0 +170777758670,214,0 +170777758718,214,0 +170777758766,214,0 +170777758815,213,0 +170777758863,213,0 +170777758913,213,0 +170777758962,213,0 +170777759010,213,0 +170777759060,213,0 +170777759108,213,0 +170777759156,213,0 +170777759205,213,0 +170777759253,214,0 +170777759302,213,0 +170777759352,214,0 +170777759400,214,0 +170777759448,214,0 +170777759496,214,0 +170777759544,214,0 +170777759593,214,0 +170777759641,214,0 +170777759689,214,0 +170777759737,213,0 +170777759785,213,0 +170777759833,213,0 +170777759881,213,0 +170777759928,213,0 +170777759978,213,0 +170777760026,214,0 +170777760074,213,0 +170777760122,214,0 +170777760171,214,0 +170777760219,214,0 +170777760267,214,0 +170777760315,214,0 +170777760363,214,0 +170777760412,214,0 +170777760460,214,0 +170777760508,214,0 +170777760556,214,0 +170777760604,214,0 +170777760652,214,0 +170777760700,213,0 +170777760747,213,0 +170777760795,213,0 +170777760843,213,0 +170777760891,213,0 +170777760939,213,0 +170777760987,213,0 +170777761035,214,0 +170777761084,214,0 +170777761132,214,0 +170777761180,214,0 +170777761228,214,0 +170777761276,214,0 +170777761324,214,0 +170777761372,214,0 +170777761421,214,0 +170777761471,214,0 +170777761519,214,0 +170777761567,214,0 +170777761615,214,0 +170777761664,213,0 +170777761712,213,0 +170777761760,213,0 +170777761808,214,0 +170777761856,213,0 +170777761904,214,0 +170777761951,214,0 +170777761999,214,0 +170777762047,214,0 +170777762095,214,0 +170777762143,214,0 +170777762191,214,0 +170777762239,214,0 +170777762287,214,0 +170777762334,214,0 +170777762382,214,0 +170777762430,214,0 +170777762478,214,0 +170777762528,214,0 +170777762577,213,0 +170777762627,214,0 +170777762675,214,0 +170777762723,214,0 +170777762770,214,0 +170777762818,214,0 +170777762866,214,0 +170777762914,214,0 +170777762962,214,0 +170777763010,214,0 +170777763058,214,0 +170777763107,214,0 +170777763155,214,0 +170777763203,215,0 +170777763252,215,0 +170777763300,214,0 +170777763350,214,0 +170777763398,214,0 +170777763447,214,0 +170777763495,213,0 +170777763543,213,0 +170777763593,213,0 +170777763642,213,0 +170777763690,213,0 +170777763739,213,0 +170777763787,213,0 +170777763835,213,0 +170777763883,214,0 +170777763931,214,0 +170777763979,214,0 +170777764029,214,0 +170777764078,214,0 +170777764126,214,0 +170777764176,214,0 +170777764225,214,0 +170777764275,214,0 +170777764323,214,0 +170777764371,214,0 +170777764418,213,0 +170777764468,213,0 +170777764518,213,0 +170777764565,213,0 +170777764613,213,0 +170777764661,213,0 +170777764709,213,0 +170777764759,213,0 +170777764807,213,0 +170777764856,213,0 +170777764906,213,0 +170777764954,213,0 +170777765003,214,0 +170777765051,214,0 +170777765099,214,0 +170777765147,214,0 +170777765195,214,0 +170777765244,214,0 +170777765294,214,0 +170777765342,213,0 +170777765391,213,0 +170777765441,213,0 +170777765489,213,0 +170777765537,213,0 +170777765585,213,0 +170777765634,213,0 +170777765684,213,0 +170777765732,213,0 +170777765781,213,0 +170777765829,213,0 +170777765879,214,0 +170777765927,214,0 +170777765975,214,0 +170777766023,214,0 +170777766071,214,0 +170777766119,214,0 +170777766167,214,0 +170777766215,214,0 +170777766263,213,0 +170777766311,213,0 +170777766358,213,0 +170777766406,213,0 +170777766454,213,0 +170777766502,213,0 +170777766550,213,0 +170777766598,213,0 +170777766645,213,0 +170777766693,213,0 +170777766741,214,0 +170777766791,214,0 +170777766839,214,0 +170777766886,214,0 +170777766936,214,0 +170777766984,214,0 +170777767032,214,0 +170777767080,214,0 +170777767127,214,0 +170777767175,214,0 +170777767223,213,0 +170777767271,213,0 +170777767319,213,0 +170777767367,213,0 +170777767414,213,0 +170777767462,213,0 +170777767510,213,0 +170777767558,213,0 +170777767606,213,0 +170777767654,214,0 +170777767702,214,0 +170777767751,214,0 +170777767799,214,0 +170777767847,214,0 +170777767895,214,0 +170777767942,214,0 +170777767990,214,0 +170777768038,214,0 +170777768086,214,0 +170777768134,214,0 +170777768182,213,0 +170777768230,213,0 +170777768277,213,0 +170777768325,213,0 +170777768373,213,0 +170777768421,213,0 +170777768469,213,0 +170777768517,213,0 +170777768566,213,0 +170777768614,214,0 +170777768662,214,0 +170777768711,214,0 +170777768759,214,0 +170777768807,214,0 +170777768855,214,0 +170777768903,214,0 +170777768950,214,0 +170777768998,214,0 +170777769046,213,0 +170777769096,213,0 +170777769143,213,0 +170777769191,213,0 +170777769241,213,0 +170777769288,213,0 +170777769336,213,0 +170777769384,213,0 +170777769432,213,0 +170777769480,213,0 +170777769528,213,0 +170777769576,214,0 +170777769623,214,0 +170777769671,214,0 +170777769721,214,0 +170777769768,214,0 +170777769816,214,0 +170777769864,214,0 +170777769912,214,0 +170777769960,214,0 +170777770008,213,0 +170777770055,213,0 +170777770103,213,0 +170777770153,213,0 +170777770201,213,0 +170777770248,213,0 +170777770296,213,0 +170777770346,213,0 +170777770393,214,0 +170777770441,213,0 +170777770489,214,0 +170777770537,214,0 +170777770585,214,0 +170777770633,214,0 +170777770681,214,0 +170777770728,214,0 +170777770778,214,0 +170777770826,214,0 +170777770874,214,0 +170777770921,213,0 +170777770971,213,0 +170777771019,213,0 +170777771066,213,0 +170777771114,213,0 +170777771162,213,0 +170777771210,213,0 +170777771258,213,0 +170777771305,213,0 +170777771353,214,0 +170777771401,213,0 +170777771449,214,0 +170777771497,214,0 +170777771545,214,0 +170777771592,214,0 +170777771640,214,0 +170777771688,214,0 +170777771737,214,0 +170777771785,214,0 +170777771833,214,0 +170777771881,213,0 +170777771929,213,0 +170777771977,213,0 +170777772026,213,0 +170777772074,213,0 +170777772122,213,0 +170777772170,213,0 +170777772218,213,0 +170777772265,213,0 +170777772313,213,0 +170777772361,214,0 +170777772409,214,0 +170777772457,214,0 +170777772506,214,0 +170777772554,214,0 +170777772602,214,0 +170777772650,214,0 +170777772698,214,0 +170777772745,214,0 +170777772793,213,0 +170777772841,213,0 +170777772889,213,0 +170777772937,213,0 +170777772985,213,0 +170777773032,214,0 +170777773080,213,0 +170777773128,213,0 +170777773176,213,0 +170777773224,214,0 +170777773272,214,0 +170777773321,214,0 +170777773369,214,0 +170777773417,214,0 +170777773465,214,0 +170777773513,214,0 +170777773560,214,0 +170777773608,214,0 +170777773656,214,0 +170777773704,213,0 +170777773752,213,0 +170777773801,213,0 +170777773849,213,0 +170777773897,213,0 +170777773945,213,0 +170777773993,214,0 +170777774041,214,0 +170777774089,214,0 +170777774136,214,0 +170777774186,213,0 +170777774234,214,0 +170777774282,214,0 +170777774329,214,0 +170777774377,214,0 +170777774425,214,0 +170777774475,214,0 +170777774522,214,0 +170777774570,214,0 +170777774618,214,0 +170777774666,213,0 +170777774714,213,0 +170777774762,213,0 +170777774810,213,0 +170777774858,213,0 +170777774905,214,0 +170777774955,214,0 +170777775004,214,0 +170777775054,214,0 +170777775102,214,0 +170777775151,214,0 +170777775201,214,0 +170777775249,214,0 +170777775297,215,0 +170777775345,214,0 +170777775393,215,0 +170777775440,214,0 +170777775488,214,0 +170777775536,214,0 +170777775584,213,0 +170777775632,213,0 +170777775680,213,0 +170777775727,213,0 +170777775775,213,0 +170777775825,214,0 +170777775873,214,0 +170777775921,214,0 +170777775968,213,0 +170777776016,214,0 +170777776064,214,0 +170777776112,214,0 +170777776159,214,0 +170777776207,214,0 +170777776255,214,0 +170777776304,214,0 +170777776352,214,0 +170777776400,214,0 +170777776448,214,0 +170777776496,213,0 +170777776544,213,0 +170777776591,213,0 +170777776639,213,0 +170777776687,213,0 +170777776735,213,0 +170777776783,213,0 +170777776831,213,0 +170777776879,213,0 +170777776926,213,0 +170777776974,213,0 +170777777024,214,0 +170777777072,214,0 +170777777120,214,0 +170777777168,214,0 +170777777216,214,0 +170777777265,214,0 +170777777313,214,0 +170777777361,214,0 +170777777409,214,0 +170777777457,213,0 +170777777505,213,0 +170777777553,213,0 +170777777600,213,0 +170777777650,213,0 +170777777698,213,0 +170777777746,213,0 +170777777795,213,0 +170777777843,213,0 +170777777891,213,0 +170777777939,213,0 +170777777987,213,0 +170777778035,214,0 +170777778083,214,0 +170777778131,214,0 +170777778179,214,0 +170777778229,214,0 +170777778278,214,0 +170777778326,215,0 +170777778374,213,0 +170777778424,213,0 +170777778471,213,0 +170777778519,213,0 +170777778567,213,0 +170777778615,213,0 +170777778663,213,0 +170777778711,213,0 +170777778760,213,0 +170777778808,213,0 +170777778856,213,0 +170777778904,214,0 +170777778952,213,0 +170777779000,214,0 +170777779049,214,0 +170777779097,214,0 +170777779147,214,0 +170777779195,214,0 +170777779242,214,0 +170777779290,213,0 +170777779338,213,0 +170777779386,213,0 +170777779434,213,0 +170777779482,213,0 +170777779530,213,0 +170777779577,213,0 +170777779625,213,0 +170777779673,213,0 +170777779721,213,0 +170777779769,213,0 +170777779817,213,0 +170777779866,213,0 +170777779914,214,0 +170777779962,214,0 +170777780009,214,0 +170777780057,214,0 +170777780105,214,0 +170777780153,214,0 +170777780200,213,0 +170777780248,213,0 +170777780296,213,0 +170777780344,213,0 +170777780392,213,0 +170777780440,213,0 +170777780488,213,0 +170777780535,213,0 +170777780583,213,0 +170777780631,213,0 +170777780681,213,0 +170777780728,214,0 +170777780776,214,0 +170777780824,214,0 +170777780874,214,0 +170777780921,214,0 +170777780969,214,0 +170777781017,214,0 +170777781065,214,0 +170777781114,214,0 +170777781162,213,0 +170777781210,213,0 +170777781258,213,0 +170777781306,213,0 +170777781354,213,0 +170777781402,213,0 +170777781449,213,0 +170777781497,213,0 +170777781545,213,0 +170777781593,213,0 +170777781641,213,0 +170777781689,213,0 +170777781738,213,0 +170777781786,213,0 +170777781834,213,0 +170777781881,214,0 +170777781929,214,0 +170777781977,214,0 +170777782025,214,0 +170777782073,213,0 +170777782120,213,0 +170777782168,213,0 +170777782216,213,0 +170777782264,213,0 +170777782312,213,0 +170777782360,213,0 +170777782408,213,0 +170777782457,213,0 +170777782507,213,0 +170777782556,213,0 +170777782604,213,0 +170777782652,213,0 +170777782700,213,0 +170777782750,213,0 +170777782799,213,0 +170777782847,213,0 +170777782895,213,0 +170777782943,214,0 +170777782992,213,0 +170777783040,213,0 +170777783088,213,0 +170777783136,213,0 +170777783185,213,0 +170777783233,213,0 +170777783283,213,0 +170777783331,213,0 +170777783379,213,0 +170777783426,213,0 +170777783474,214,0 +170777783524,214,0 +170777783572,214,0 +170777783620,214,0 +170777783669,214,0 +170777783717,214,0 +170777783765,214,0 +170777783815,214,0 +170777783864,214,0 +170777783912,214,0 +170777783960,213,0 +170777784008,213,0 +170777784057,213,0 +170777784105,213,0 +170777784154,213,0 +170777784204,214,0 +170777784252,214,0 +170777784301,214,0 +170777784351,214,0 +170777784399,214,0 +170777784448,214,0 +170777784496,214,0 +170777784544,214,0 +170777784592,214,0 +170777784641,214,0 +170777784691,214,0 +170777784739,214,0 +170777784787,214,0 +170777784835,214,0 +170777784883,214,0 +170777784931,214,0 +170777784979,214,0 +170777785027,214,0 +170777785075,214,0 +170777785122,214,0 +170777785170,214,0 +170777785218,214,0 +170777785266,214,0 +170777785314,215,0 +170777785362,215,0 +170777785410,214,0 +170777785458,214,0 +170777785506,214,0 +170777785556,215,0 +170777785604,214,0 +170777785653,214,0 +170777785703,214,0 +170777785752,214,0 +170777785800,214,0 +170777785848,214,0 +170777785896,214,0 +170777785946,214,0 +170777785993,214,0 +170777786041,214,0 +170777786091,214,0 +170777786140,214,0 +170777786188,214,0 +170777786238,214,0 +170777786286,214,0 +170777786335,214,0 +170777786385,214,0 +170777786434,214,0 +170777786482,214,0 +170777786530,214,0 +170777786578,214,0 +170777786626,214,0 +170777786674,214,0 +170777786723,213,0 +170777786771,213,0 +170777786819,213,0 +170777786867,213,0 +170777786916,213,0 +170777786966,213,0 +170777787015,213,0 +170777787065,213,0 +170777787114,214,0 +170777787164,213,0 +170777787212,214,0 +170777787260,214,0 +170777787309,214,0 +170777787357,214,0 +170777787407,214,0 +170777787455,214,0 +170777787503,214,0 +170777787551,214,0 +170777787598,214,0 +170777787646,213,0 +170777787694,213,0 +170777787744,213,0 +170777787792,213,0 +170777787841,213,0 +170777787889,213,0 +170777787937,213,0 +170777787985,213,0 +170777788035,213,0 +170777788084,214,0 +170777788134,213,0 +170777788182,214,0 +170777788230,214,0 +170777788278,214,0 +170777788327,214,0 +170777788375,214,0 +170777788423,214,0 +170777788471,214,0 +170777788519,214,0 +170777788569,214,0 +170777788616,213,0 +170777788664,213,0 +170777788712,213,0 +170777788760,213,0 +170777788808,213,0 +170777788858,213,0 +170777788906,213,0 +170777788954,213,0 +170777789002,213,0 +170777789050,214,0 +170777789099,214,0 +170777789147,214,0 +170777789195,214,0 +170777789245,214,0 +170777789292,214,0 +170777789340,214,0 +170777789390,214,0 +170777789440,214,0 +170777789488,214,0 +170777789535,213,0 +170777789585,213,0 +170777789633,213,0 +170777789681,213,0 +170777789729,213,0 +170777789778,213,0 +170777789826,214,0 +170777789876,214,0 +170777789924,214,0 +170777789972,214,0 +170777790021,214,0 +170777790069,214,0 +170777790119,214,0 +170777790167,214,0 +170777790216,214,0 +170777790264,214,0 +170777790314,214,0 +170777790362,214,0 +170777790410,214,0 +170777790458,213,0 +170777790505,213,0 +170777790553,213,0 +170777790601,213,0 +170777790649,213,0 +170777790697,213,0 +170777790747,214,0 +170777790795,213,0 +170777790844,213,0 +170777790894,214,0 +170777790943,214,0 +170777790991,214,0 +170777791039,214,0 +170777791087,214,0 +170777791135,214,0 +170777791183,214,0 +170777791231,214,0 +170777791279,214,0 +170777791327,214,0 +170777791375,214,0 +170777791423,213,0 +170777791471,213,0 +170777791520,213,0 +170777791570,213,0 +170777791619,213,0 +170777791667,213,0 +170777791715,213,0 +170777791763,213,0 +170777791811,214,0 +170777791859,214,0 +170777791909,214,0 +170777791957,214,0 +170777792004,214,0 +170777792052,214,0 +170777792102,214,0 +170777792151,214,0 +170777792201,214,0 +170777792249,214,0 +170777792299,214,0 +170777792347,213,0 +170777792395,213,0 +170777792442,213,0 +170777792490,213,0 +170777792538,213,0 +170777792586,213,0 +170777792634,213,0 +170777792684,213,0 +170777792732,213,0 +170777792780,213,0 +170777792827,214,0 +170777792875,214,0 +170777792923,214,0 +170777792973,214,0 +170777793021,214,0 +170777793070,214,0 +170777793120,214,0 +170777793169,214,0 +170777793219,214,0 +170777793268,213,0 +170777793316,213,0 +170777793366,213,0 +170777793415,213,0 +170777793463,213,0 +170777793511,213,0 +170777793559,213,0 +170777793607,213,0 +170777793655,213,0 +170777793703,213,0 +170777793751,214,0 +170777793801,213,0 +170777793850,214,0 +170777793898,214,0 +170777793946,214,0 +170777793996,214,0 +170777794045,214,0 +170777794093,214,0 +170777794141,214,0 +170777794189,213,0 +170777794237,213,0 +170777794285,213,0 +170777794335,213,0 +170777794382,213,0 +170777794432,213,0 +170777794482,213,0 +170777794530,213,0 +170777794579,213,0 +170777794627,213,0 +170777794675,214,0 +170777794723,214,0 +170777794772,214,0 +170777794820,214,0 +170777794870,214,0 +170777794918,214,0 +170777794967,214,0 +170777795015,214,0 +170777795063,214,0 +170777795111,213,0 +170777795159,213,0 +170777795209,213,0 +170777795257,213,0 +170777795304,213,0 +170777795352,213,0 +170777795400,213,0 +170777795450,213,0 +170777795499,213,0 +170777795547,213,0 +170777795595,214,0 +170777795643,214,0 +170777795691,214,0 +170777795739,214,0 +170777795787,214,0 +170777795835,214,0 +170777795885,214,0 +170777795932,214,0 +170777795980,214,0 +170777796028,213,0 +170777796076,213,0 +170777796124,213,0 +170777796172,213,0 +170777796220,213,0 +170777796270,213,0 +170777796319,213,0 +170777796367,213,0 +170777796415,213,0 +170777796463,213,0 +170777796511,213,0 +170777796559,214,0 +170777796607,214,0 +170777796657,214,0 +170777796706,214,0 +170777796754,214,0 +170777796802,214,0 +170777796850,215,0 +170777796898,214,0 +170777796946,214,0 +170777796994,213,0 +170777797043,213,0 +170777797091,213,0 +170777797141,213,0 +170777797190,213,0 +170777797238,213,0 +170777797286,213,0 +170777797334,213,0 +170777797383,213,0 +170777797431,213,0 +170777797481,213,0 +170777797529,214,0 +170777797578,214,0 +170777797626,214,0 +170777797674,214,0 +170777797722,214,0 +170777797770,214,0 +170777797820,214,0 +170777797868,214,0 +170777797917,213,0 +170777797965,213,0 +170777798013,213,0 +170777798063,213,0 +170777798111,213,0 +170777798159,213,0 +170777798207,213,0 +170777798255,213,0 +170777798303,214,0 +170777798352,214,0 +170777798400,214,0 +170777798450,214,0 +170777798497,214,0 +170777798545,213,0 +170777798593,214,0 +170777798641,214,0 +170777798689,214,0 +170777798739,214,0 +170777798789,214,0 +170777798838,213,0 +170777798886,213,0 +170777798936,213,0 +170777798985,213,0 +170777799033,213,0 +170777799081,213,0 +170777799129,214,0 +170777799177,214,0 +170777799224,214,0 +170777799272,214,0 +170777799322,214,0 +170777799371,214,0 +170777799421,214,0 +170777799469,214,0 +170777799517,214,0 +170777799566,215,0 +170777799614,214,0 +170777799662,214,0 +170777799710,214,0 +170777799760,214,0 +170777799808,213,0 +170777799856,213,0 +170777799903,213,0 +170777799951,213,0 +170777799999,213,0 +170777800049,213,0 +170777800097,213,0 +170777800145,214,0 +170777800193,213,0 +170777800241,214,0 +170777800288,214,0 +170777800336,214,0 +170777800386,214,0 +170777800434,214,0 +170777800482,214,0 +170777800531,214,0 +170777800579,215,0 +170777800627,214,0 +170777800675,214,0 +170777800723,213,0 +170777800771,213,0 +170777800819,213,0 +170777800868,213,0 +170777800916,213,0 +170777800964,213,0 +170777801012,213,0 +170777801062,213,0 +170777801110,214,0 +170777801159,214,0 +170777801207,214,0 +170777801255,214,0 +170777801303,214,0 +170777801351,214,0 +170777801400,214,0 +170777801448,214,0 +170777801496,214,0 +170777801546,214,0 +170777801594,214,0 +170777801643,213,0 +170777801691,213,0 +170777801741,213,0 +170777801789,213,0 +170777801837,213,0 +170777801885,213,0 +170777801932,213,0 +170777801982,213,0 +170777802031,214,0 +170777802079,214,0 +170777802127,214,0 +170777802175,214,0 +170777802223,214,0 +170777802271,214,0 +170777802321,214,0 +170777802370,214,0 +170777802418,214,0 +170777802466,214,0 +170777802516,214,0 +170777802564,213,0 +170777802613,213,0 +170777802661,213,0 +170777802709,213,0 +170777802757,213,0 +170777802806,213,0 +170777802854,213,0 +170777802902,214,0 +170777802952,214,0 +170777803001,213,0 +170777803049,214,0 +170777803097,214,0 +170777803147,214,0 +170777803195,214,0 +170777803243,214,0 +170777803291,214,0 +170777803338,214,0 +170777803386,214,0 +170777803434,214,0 +170777803482,213,0 +170777803530,213,0 +170777803578,213,0 +170777803627,213,0 +170777803677,213,0 +170777803725,213,0 +170777803773,213,0 +170777803822,213,0 +170777803872,214,0 +170777803920,214,0 +170777803968,214,0 +170777804016,214,0 +170777804064,214,0 +170777804112,214,0 +170777804161,214,0 +170777804211,214,0 +170777804258,214,0 +170777804308,214,0 +170777804356,214,0 +170777804404,214,0 +170777804453,213,0 +170777804501,213,0 +170777804551,213,0 +170777804599,213,0 +170777804647,213,0 +170777804695,213,0 +170777804744,213,0 +170777804792,213,0 +170777804840,213,0 +170777804888,214,0 +170777804936,214,0 +170777804984,214,0 +170777805033,214,0 +170777805081,214,0 +170777805129,214,0 +170777805177,214,0 +170777805227,214,0 +170777805276,214,0 +170777805326,214,0 +170777805375,213,0 +170777805425,213,0 +170777805473,213,0 +170777805521,213,0 +170777805569,213,0 +170777805617,213,0 +170777805665,213,0 +170777805714,214,0 +170777805764,214,0 +170777805812,214,0 +170777805860,214,0 +170777805909,214,0 +170777805959,214,0 +170777806007,214,0 +170777806055,214,0 +170777806102,214,0 +170777806152,214,0 +170777806201,214,0 +170777806249,214,0 +170777806299,213,0 +170777806347,213,0 +170777806395,213,0 +170777806442,213,0 +170777806490,213,0 +170777806540,214,0 +170777806588,214,0 +170777806636,214,0 +170777806685,214,0 +170777806735,214,0 +170777806783,214,0 +170777806831,214,0 +170777806880,214,0 +170777806930,214,0 +170777806978,214,0 +170777807025,214,0 +170777807075,214,0 +170777807123,214,0 +170777807172,214,0 +170777807220,213,0 +170777807268,213,0 +170777807316,213,0 +170777807364,213,0 +170777807412,213,0 +170777807460,213,0 +170777807508,213,0 +170777807556,213,0 +170777807604,214,0 +170777807652,214,0 +170777807700,214,0 +170777807749,214,0 +170777807799,214,0 +170777807846,214,0 +170777807894,214,0 +170777807942,214,0 +170777807990,215,0 +170777808038,214,0 +170777808088,214,0 +170777808136,214,0 +170777808185,213,0 +170777808233,213,0 +170777808281,213,0 +170777808330,213,0 +170777808380,214,0 +170777808428,213,0 +170777808477,214,0 +170777808527,214,0 +170777808574,214,0 +170777808622,214,0 +170777808670,214,0 +170777808718,214,0 +170777808766,214,0 +170777808814,214,0 +170777808863,214,0 +170777808913,214,0 +170777808961,214,0 +170777809010,214,0 +170777809058,214,0 +170777809106,213,0 +170777809155,213,0 +170777809205,213,0 +170777809253,213,0 +170777809301,213,0 +170777809350,213,0 +170777809398,214,0 +170777809446,213,0 +170777809494,214,0 +170777809542,214,0 +170777809589,214,0 +170777809637,214,0 +170777809685,214,0 +170777809733,214,0 +170777809782,214,0 +170777809830,214,0 +170777809880,214,0 +170777809928,214,0 +170777809977,214,0 +170777810025,213,0 +170777810073,213,0 +170777810122,213,0 +170777810170,213,0 +170777810220,213,0 +170777810268,213,0 +170777810315,213,0 +170777810363,213,0 +170777810411,213,0 +170777810461,213,0 +170777810509,213,0 +170777810558,214,0 +170777810606,214,0 +170777810654,214,0 +170777810704,214,0 +170777810752,214,0 +170777810799,214,0 +170777810847,214,0 +170777810895,214,0 +170777810943,214,0 +170777810991,213,0 +170777811039,213,0 +170777811087,213,0 +170777811135,213,0 +170777811182,213,0 +170777811230,213,0 +170777811278,213,0 +170777811327,213,0 +170777811375,213,0 +170777811423,213,0 +170777811471,214,0 +170777811519,214,0 +170777811569,214,0 +170777811617,214,0 +170777811664,214,0 +170777811714,214,0 +170777811762,214,0 +170777811811,214,0 +170777811859,214,0 +170777811907,213,0 +170777811955,213,0 +170777812003,213,0 +170777812051,213,0 +170777812099,213,0 +170777812146,213,0 +170777812194,213,0 +170777812242,213,0 +170777812290,213,0 +170777812338,213,0 +170777812386,213,0 +170777812434,214,0 +170777812483,214,0 +170777812531,214,0 +170777812579,214,0 +170777812627,214,0 +170777812675,214,0 +170777812723,214,0 +170777812771,214,0 +170777812820,213,0 +170777812868,213,0 +170777812916,213,0 +170777812964,213,0 +170777813012,213,0 +170777813061,213,0 +170777813109,213,0 +170777813157,213,0 +170777813205,213,0 +170777813253,213,0 +170777813300,213,0 +170777813348,213,0 +170777813396,214,0 +170777813444,213,0 +170777813492,213,0 +170777813540,214,0 +170777813588,213,0 +170777813635,213,0 +170777813683,214,0 +170777813731,214,0 +170777813779,213,0 +170777813826,213,0 +170777813874,213,0 +170777813922,213,0 +170777813970,213,0 +170777814020,213,0 +170777814068,213,0 +170777814116,213,0 +170777814164,213,0 +170777814212,213,0 +170777814259,213,0 +170777814307,213,0 +170777814355,213,0 +170777814405,213,0 +170777814454,213,0 +170777814502,213,0 +170777814550,213,0 +170777814598,214,0 +170777814646,214,0 +170777814694,213,0 +170777814743,213,0 +170777814791,213,0 +170777814839,213,0 +170777814889,213,0 +170777814937,213,0 +170777814985,213,0 +170777815033,213,0 +170777815082,213,0 +170777815130,213,0 +170777815178,214,0 +170777815226,214,0 +170777815274,214,0 +170777815322,214,0 +170777815371,214,0 +170777815419,214,0 +170777815467,214,0 +170777815515,214,0 +170777815565,214,0 +170777815613,213,0 +170777815660,213,0 +170777815708,213,0 +170777815756,213,0 +170777815804,213,0 +170777815852,213,0 +170777815900,213,0 +170777815948,213,0 +170777815997,213,0 +170777816045,214,0 +170777816093,214,0 +170777816141,213,0 +170777816191,214,0 +170777816240,214,0 +170777816288,214,0 +170777816336,214,0 +170777816384,214,0 +170777816432,214,0 +170777816481,214,0 +170777816529,214,0 +170777816577,213,0 +170777816627,213,0 +170777816675,213,0 +170777816724,213,0 +170777816774,213,0 +170777816822,213,0 +170777816871,213,0 +170777816921,213,0 +170777816969,213,0 +170777817018,214,0 +170777817066,213,0 +170777817116,214,0 +170777817164,214,0 +170777817213,214,0 +170777817261,214,0 +170777817309,214,0 +170777817359,214,0 +170777817407,214,0 +170777817455,214,0 +170777817502,213,0 +170777817550,213,0 +170777817598,213,0 +170777817646,213,0 +170777817694,213,0 +170777817742,213,0 +170777817790,213,0 +170777817838,213,0 +170777817886,214,0 +170777817934,214,0 +170777817984,214,0 +170777818032,214,0 +170777818080,214,0 +170777818127,214,0 +170777818176,214,0 +170777818223,214,0 +170777818271,214,0 +170777818321,215,0 +170777818370,215,0 +170777818418,213,0 +170777818466,213,0 +170777818516,213,0 +170777818566,213,0 +170777818615,213,0 +170777818665,213,0 +170777818713,213,0 +170777818761,214,0 +170777818809,214,0 +170777818858,214,0 +170777818908,215,0 +170777818955,214,0 +170777819003,214,0 +170777819051,214,0 +170777819099,214,0 +170777819147,214,0 +170777819195,214,0 +170777819243,214,0 +170777819291,214,0 +170777819338,213,0 +170777819386,213,0 +170777819436,213,0 +170777819484,213,0 +170777819532,213,0 +170777819581,213,0 +170777819629,214,0 +170777819677,214,0 +170777819725,214,0 +170777819775,214,0 +170777819823,214,0 +170777819871,214,0 +170777819920,214,0 +170777819968,214,0 +170777820016,214,0 +170777820066,214,0 +170777820115,214,0 +170777820163,214,0 +170777820211,214,0 +170777820260,213,0 +170777820308,213,0 +170777820356,213,0 +170777820406,213,0 +170777820454,213,0 +170777820502,213,0 +170777820551,213,0 +170777820599,214,0 +170777820647,214,0 +170777820695,214,0 +170777820743,214,0 +170777820791,214,0 +170777820840,214,0 +170777820888,214,0 +170777820936,214,0 +170777820984,214,0 +170777821032,214,0 +170777821080,214,0 +170777821127,214,0 +170777821177,214,0 +170777821225,213,0 +170777821273,213,0 +170777821321,213,0 +170777821371,213,0 +170777821418,213,0 +170777821466,214,0 +170777821514,214,0 +170777821562,214,0 +170777821610,214,0 +170777821658,214,0 +170777821706,214,0 +170777821754,214,0 +170777821804,214,0 +170777821853,214,0 +170777821901,214,0 +170777821949,214,0 +170777821997,214,0 +170777822045,214,0 +170777822094,214,0 +170777822144,213,0 +170777822193,213,0 +170777822241,213,0 +170777822289,213,0 +170777822337,213,0 +170777822387,213,0 +170777822435,213,0 +170777822483,213,0 +170777822531,214,0 +170777822580,214,0 +170777822628,214,0 +170777822677,214,0 +170777822727,214,0 +170777822775,214,0 +170777822823,214,0 +170777822871,214,0 +170777822919,214,0 +170777822967,214,0 +170777823015,214,0 +170777823063,213,0 +170777823111,213,0 +170777823159,213,0 +170777823208,213,0 +170777823256,213,0 +170777823306,213,0 +170777823354,213,0 +170777823403,213,0 +170777823452,213,0 +170777823502,213,0 +170777823551,213,0 +170777823601,214,0 +170777823651,214,0 +170777823698,214,0 +170777823748,214,0 +170777823798,214,0 +170777823846,214,0 +170777823893,214,0 +170777823941,214,0 +170777823989,213,0 +170777824039,213,0 +170777824089,213,0 +170777824136,213,0 +170777824185,213,0 +170777824232,213,0 +170777824282,213,0 +170777824331,213,0 +170777824381,213,0 +170777824430,213,0 +170777824480,213,0 +170777824528,213,0 +170777824576,213,0 +170777824624,214,0 +170777824673,214,0 +170777824723,214,0 +170777824771,214,0 +170777824820,214,0 +170777824868,214,0 +170777824916,213,0 +170777824966,213,0 +170777825015,213,0 +170777825063,213,0 +170777825111,213,0 +170777825159,213,0 +170777825208,213,0 +170777825256,213,0 +170777825306,213,0 +170777825354,213,0 +170777825403,213,0 +170777825451,213,0 +170777825501,214,0 +170777825549,214,0 +170777825597,214,0 +170777825645,214,0 +170777825692,214,0 +170777825740,214,0 +170777825790,214,0 +170777825838,214,0 +170777825887,213,0 +170777825935,213,0 +170777825984,213,0 +170777826034,213,0 +170777826083,213,0 +170777826133,213,0 +170777826181,213,0 +170777826230,213,0 +170777826278,213,0 +170777826326,213,0 +170777826374,213,0 +170777826423,214,0 +170777826471,214,0 +170777826521,214,0 +170777826569,214,0 +170777826617,214,0 +170777826666,214,0 +170777826716,214,0 +170777826764,214,0 +170777826812,213,0 +170777826860,213,0 +170777826908,213,0 +170777826956,213,0 +170777827005,213,0 +170777827053,213,0 +170777827101,213,0 +170777827149,213,0 +170777827197,213,0 +170777827245,213,0 +170777827293,213,0 +170777827341,213,0 +170777827390,214,0 +170777827440,214,0 +170777827487,214,0 +170777827535,214,0 +170777827585,214,0 +170777827633,214,0 +170777827681,214,0 +170777827729,213,0 +170777827777,213,0 +170777827825,213,0 +170777827874,213,0 +170777827922,213,0 +170777827970,213,0 +170777828018,213,0 +170777828066,213,0 +170777828114,213,0 +170777828162,214,0 +170777828211,214,0 +170777828259,214,0 +170777828308,214,0 +170777828356,214,0 +170777828404,214,0 +170777828452,214,0 +170777828500,214,0 +170777828548,214,0 +170777828595,214,0 +170777828643,213,0 +170777828691,213,0 +170777828739,213,0 +170777828787,213,0 +170777828835,213,0 +170777828883,214,0 +170777828930,214,0 +170777828978,214,0 +170777829026,214,0 +170777829076,214,0 +170777829123,214,0 +170777829171,214,0 +170777829221,214,0 +170777829270,214,0 +170777829318,214,0 +170777829366,214,0 +170777829414,214,0 +170777829462,214,0 +170777829510,214,0 +170777829557,214,0 +170777829605,213,0 +170777829653,213,0 +170777829703,213,0 +170777829752,213,0 +170777829802,214,0 +170777829850,214,0 +170777829899,214,0 +170777829947,214,0 +170777829995,214,0 +170777830043,214,0 +170777830090,214,0 +170777830138,214,0 +170777830186,214,0 +170777830234,214,0 +170777830282,214,0 +170777830330,215,0 +170777830378,214,0 +170777830425,214,0 +170777830473,214,0 +170777830521,213,0 +170777830569,213,0 +170777830617,213,0 +170777830665,213,0 +170777830715,213,0 +170777830763,213,0 +170777830811,213,0 +170777830859,214,0 +170777830907,214,0 +170777830956,214,0 +170777831004,214,0 +170777831052,214,0 +170777831100,214,0 +170777831149,214,0 +170777831197,215,0 +170777831245,214,0 +170777831293,214,0 +170777831341,214,0 +170777831391,214,0 +170777831439,213,0 +170777831487,213,0 +170777831536,213,0 +170777831584,213,0 +170777831632,213,0 +170777831681,214,0 +170777831729,213,0 +170777831779,213,0 +170777831827,214,0 +170777831876,214,0 +170777831926,214,0 +170777831976,214,0 +170777832025,214,0 +170777832073,214,0 +170777832121,214,0 +170777832169,214,0 +170777832219,214,0 +170777832266,214,0 +170777832314,214,0 +170777832362,213,0 +170777832410,213,0 +170777832458,213,0 +170777832506,213,0 +170777832556,213,0 +170777832604,213,0 +170777832653,213,0 +170777832701,213,0 +170777832749,213,0 +170777832797,213,0 +170777832845,213,0 +170777832893,213,0 +170777832941,214,0 +170777832991,214,0 +170777833039,214,0 +170777833087,214,0 +170777833135,214,0 +170777833184,214,0 +170777833232,214,0 +170777833282,214,0 +170777833330,213,0 +170777833378,213,0 +170777833426,213,0 +170777833473,213,0 +170777833523,213,0 +170777833571,213,0 +170777833619,213,0 +170777833667,213,0 +170777833715,213,0 +170777833763,214,0 +170777833812,214,0 +170777833862,214,0 +170777833910,214,0 +170777833958,214,0 +170777834006,214,0 +170777834055,214,0 +170777834103,214,0 +170777834151,214,0 +170777834199,214,0 +170777834247,213,0 +170777834295,213,0 +170777834343,213,0 +170777834391,213,0 +170777834439,213,0 +170777834488,213,0 +170777834536,213,0 +170777834584,213,0 +170777834632,214,0 +170777834682,214,0 +170777834730,214,0 +170777834778,214,0 +170777834827,214,0 +170777834875,214,0 +170777834923,214,0 +170777834972,214,0 +170777835020,214,0 +170777835068,214,0 +170777835116,214,0 +170777835166,213,0 +170777835214,213,0 +170777835263,213,0 +170777835311,213,0 +170777835359,213,0 +170777835407,213,0 +170777835455,213,0 +170777835503,213,0 +170777835551,213,0 +170777835600,213,0 +170777835648,213,0 +170777835696,214,0 +170777835743,214,0 +170777835791,214,0 +170777835839,214,0 +170777835887,214,0 +170777835935,214,0 +170777835984,214,0 +170777836032,214,0 +170777836080,214,0 +170777836130,213,0 +170777836177,213,0 +170777836225,213,0 +170777836273,213,0 +170777836321,213,0 +170777836371,213,0 +170777836419,213,0 +170777836467,213,0 +170777836515,213,0 +170777836563,214,0 +170777836610,213,0 +170777836658,214,0 +170777836706,214,0 +170777836754,214,0 +170777836802,214,0 +170777836850,214,0 +170777836898,214,0 +170777836946,214,0 +170777836994,214,0 +170777837043,213,0 +170777837091,213,0 +170777837139,213,0 +170777837187,213,0 +170777837235,213,0 +170777837283,213,0 +170777837331,213,0 +170777837379,213,0 +170777837426,213,0 +170777837474,213,0 +170777837522,214,0 +170777837572,214,0 +170777837621,214,0 +170777837669,214,0 +170777837719,214,0 +170777837767,214,0 +170777837815,214,0 +170777837864,214,0 +170777837914,214,0 +170777837962,213,0 +170777838010,213,0 +170777838059,213,0 +170777838107,213,0 +170777838155,213,0 +170777838203,213,0 +170777838251,213,0 +170777838301,213,0 +170777838349,213,0 +170777838397,213,0 +170777838446,213,0 +170777838494,214,0 +170777838542,214,0 +170777838590,214,0 +170777838640,214,0 +170777838687,214,0 +170777838735,214,0 +170777838783,214,0 +170777838833,214,0 +170777838882,213,0 +170777838930,213,0 +170777838980,213,0 +170777839028,213,0 +170777839076,213,0 +170777839124,213,0 +170777839172,213,0 +170777839220,213,0 +170777839267,213,0 +170777839317,213,0 +170777839367,213,0 +170777839414,213,0 +170777839464,213,0 +170777839512,214,0 +170777839561,214,0 +170777839609,214,0 +170777839657,214,0 +170777839705,214,0 +170777839754,214,0 +170777839802,214,0 +170777839852,213,0 +170777839900,213,0 +170777839948,213,0 +170777839996,213,0 +170777840044,213,0 +170777840093,213,0 +170777840141,213,0 +170777840189,213,0 +170777840239,213,0 +170777840287,213,0 +170777840335,213,0 +170777840382,214,0 +170777840432,214,0 +170777840480,214,0 +170777840529,214,0 +170777840577,214,0 +170777840625,214,0 +170777840675,214,0 +170777840723,214,0 +170777840771,213,0 +170777840820,213,0 +170777840868,213,0 +170777840916,213,0 +170777840964,213,0 +170777841012,213,0 +170777841060,213,0 +170777841108,213,0 +170777841156,213,0 +170777841204,213,0 +170777841252,213,0 +170777841300,213,0 +170777841348,214,0 +170777841396,214,0 +170777841444,214,0 +170777841491,214,0 +170777841539,214,0 +170777841587,214,0 +170777841637,214,0 +170777841685,213,0 +170777841733,213,0 +170777841781,213,0 +170777841829,213,0 +170777841878,213,0 +170777841926,213,0 +170777841976,213,0 +170777842024,213,0 +170777842073,213,0 +170777842123,213,0 +170777842171,213,0 +170777842218,214,0 +170777842266,214,0 +170777842315,214,0 +170777842364,214,0 +170777842412,214,0 +170777842460,214,0 +170777842508,214,0 +170777842556,214,0 +170777842606,213,0 +170777842655,213,0 +170777842703,213,0 +170777842751,213,0 +170777842801,213,0 +170777842849,213,0 +170777842898,213,0 +170777842946,213,0 +170777842994,213,0 +170777843042,213,0 +170777843090,213,0 +170777843138,213,0 +170777843186,214,0 +170777843235,214,0 +170777843285,214,0 +170777843334,214,0 +170777843382,214,0 +170777843432,214,0 +170777843482,214,0 +170777843529,214,0 +170777843579,213,0 +170777843628,213,0 +170777843676,213,0 +170777843726,213,0 +170777843774,213,0 +170777843822,213,0 +170777843870,213,0 +170777843919,213,0 +170777843967,213,0 +170777844015,213,0 +170777844063,213,0 +170777844111,213,0 +170777844159,213,0 +170777844207,214,0 +170777844256,214,0 +170777844304,214,0 +170777844352,214,0 +170777844400,214,0 +170777844450,214,0 +170777844499,213,0 +170777844549,213,0 +170777844598,213,0 +170777844647,213,0 +170777844694,213,0 +170777844742,213,0 +170777844790,213,0 +170777844838,213,0 +170777844886,213,0 +170777844934,213,0 +170777844982,213,0 +170777845032,214,0 +170777845080,213,0 +170777845129,214,0 +170777845179,214,0 +170777845227,214,0 +170777845275,214,0 +170777845324,214,0 +170777845374,214,0 +170777845422,213,0 +170777845470,213,0 +170777845519,213,0 +170777845569,213,0 +170777845617,213,0 +170777845665,213,0 +170777845713,213,0 +170777845762,213,0 +170777845812,214,0 +170777845860,213,0 +170777845909,214,0 +170777845957,214,0 +170777846007,214,0 +170777846056,214,0 +170777846106,214,0 +170777846155,214,0 +170777846205,214,0 +170777846253,214,0 +170777846303,214,0 +170777846351,213,0 +170777846400,213,0 +170777846448,213,0 +170777846496,213,0 +170777846545,213,0 +170777846593,213,0 +170777846643,213,0 +170777846691,213,0 +170777846739,213,0 +170777846787,214,0 +170777846835,214,0 +170777846884,214,0 +170777846932,214,0 +170777846980,214,0 +170777847028,214,0 +170777847076,214,0 +170777847125,214,0 +170777847173,214,0 +170777847221,214,0 +170777847271,213,0 +170777847320,213,0 +170777847368,213,0 +170777847416,213,0 +170777847464,213,0 +170777847513,213,0 +170777847563,213,0 +170777847611,213,0 +170777847659,213,0 +170777847707,213,0 +170777847755,213,0 +170777847803,214,0 +170777847851,214,0 +170777847898,214,0 +170777847946,214,0 +170777847996,214,0 +170777848044,214,0 +170777848093,214,0 +170777848141,214,0 +170777848191,214,0 +170777848238,213,0 +170777848288,213,0 +170777848336,213,0 +170777848384,213,0 +170777848433,213,0 +170777848481,213,0 +170777848529,214,0 +170777848577,214,0 +170777848627,214,0 +170777848675,214,0 +170777848722,214,0 +170777848770,214,0 +170777848818,214,0 +170777848868,214,0 +170777848917,214,0 +170777848967,214,0 +170777849016,214,0 +170777849064,214,0 +170777849112,214,0 +170777849162,213,0 +170777849210,213,0 +170777849258,213,0 +170777849307,213,0 +170777849355,214,0 +170777849405,213,0 +170777849453,214,0 +170777849501,214,0 +170777849549,214,0 +170777849597,214,0 +170777849645,214,0 +170777849693,214,0 +170777849742,214,0 +170777849790,214,0 +170777849838,214,0 +170777849886,214,0 +170777849935,214,0 +170777849983,214,0 +170777850033,214,0 +170777850081,213,0 +170777850129,213,0 +170777850177,213,0 +170777850226,214,0 +170777850274,214,0 +170777850322,213,0 +170777850372,214,0 +170777850421,214,0 +170777850469,214,0 +170777850517,214,0 +170777850567,214,0 +170777850616,214,0 +170777850666,214,0 +170777850714,214,0 +170777850763,215,0 +170777850811,214,0 +170777850859,214,0 +170777850907,214,0 +170777850955,214,0 +170777851002,213,0 +170777851050,213,0 +170777851098,213,0 +170777851148,213,0 +170777851197,213,0 +170777851245,214,0 +170777851293,214,0 +170777851343,214,0 +170777851391,214,0 +170777851439,214,0 +170777851487,214,0 +170777851536,214,0 +170777851586,214,0 +170777851634,215,0 +170777851683,214,0 +170777851733,214,0 +170777851782,214,0 +170777851830,214,0 +170777851878,214,0 +170777851926,213,0 +170777851976,213,0 +170777852025,213,0 +170777852073,213,0 +170777852121,214,0 +170777852169,214,0 +170777852219,214,0 +170777852267,214,0 +170777852315,214,0 +170777852363,214,0 +170777852411,214,0 +170777852458,214,0 +170777852508,214,0 +170777852557,214,0 +170777852605,214,0 +170777852653,214,0 +170777852701,214,0 +170777852749,214,0 +170777852797,214,0 +170777852845,214,0 +170777852893,213,0 +170777852943,213,0 +170777852991,213,0 +170777853039,213,0 +170777853086,213,0 +170777853134,213,0 +170777853184,213,0 +170777853234,214,0 +170777853281,214,0 +170777853329,214,0 +170777853377,214,0 +170777853427,214,0 +170777853475,214,0 +170777853523,214,0 +170777853571,214,0 +170777853620,214,0 +170777853668,214,0 +170777853718,214,0 +170777853766,214,0 +170777853815,213,0 +170777853865,213,0 +170777853914,213,0 +170777853962,213,0 +170777854010,213,0 +170777854058,213,0 +170777854107,213,0 +170777854157,213,0 +170777854205,213,0 +170777854253,213,0 +170777854301,213,0 +170777854349,214,0 +170777854396,214,0 +170777854444,214,0 +170777854494,214,0 +170777854542,214,0 +170777854590,214,0 +170777854638,214,0 +170777854686,214,0 +170777854733,213,0 +170777854781,213,0 +170777854831,213,0 +170777854879,213,0 +170777854927,213,0 +170777854975,213,0 +170777855023,213,0 +170777855071,213,0 +170777855119,213,0 +170777855166,213,0 +170777855214,213,0 +170777855262,214,0 +170777855310,214,0 +170777855358,214,0 +170777855406,214,0 +170777855454,214,0 +170777855502,214,0 +170777855550,214,0 +170777855599,214,0 +170777855647,214,0 +170777855697,213,0 +170777855744,213,0 +170777855792,213,0 +170777855840,213,0 +170777855890,213,0 +170777855938,213,0 +170777855987,213,0 +170777856035,213,0 +170777856083,213,0 +170777856131,214,0 +170777856179,214,0 +170777856227,214,0 +170777856275,214,0 +170777856323,214,0 +170777856371,214,0 +170777856418,214,0 +170777856468,214,0 +170777856516,214,0 +170777856565,214,0 +170777856613,213,0 +170777856661,213,0 +170777856711,213,0 +170777856760,213,0 +170777856808,213,0 +170777856856,213,0 +170777856905,213,0 +170777856953,213,0 +170777857001,213,0 +170777857049,213,0 +170777857097,213,0 +170777857146,213,0 +170777857194,213,0 +170777857242,214,0 +170777857290,213,0 +170777857338,214,0 +170777857386,214,0 +170777857436,214,0 +170777857484,214,0 +170777857533,213,0 +170777857581,213,0 +170777857629,213,0 +170777857677,213,0 +170777857726,213,0 +170777857774,213,0 +170777857824,213,0 +170777857872,213,0 +170777857920,213,0 +170777857968,213,0 +170777858017,213,0 +170777858065,213,0 +170777858113,214,0 +170777858161,214,0 +170777858209,214,0 +170777858259,214,0 +170777858308,214,0 +170777858356,214,0 +170777858404,214,0 +170777858452,213,0 +170777858500,213,0 +170777858548,213,0 +170777858596,213,0 +170777858644,213,0 +170777858692,213,0 +170777858739,213,0 +170777858787,213,0 +170777858835,213,0 +170777858883,213,0 +170777858932,213,0 +170777858980,213,0 +170777859028,213,0 +170777859076,214,0 +170777859124,214,0 +170777859172,214,0 +170777859220,214,0 +170777859268,214,0 +170777859316,214,0 +170777859364,214,0 +170777859412,213,0 +170777859460,213,0 +170777859508,213,0 +170777859556,213,0 +170777859604,213,0 +170777859653,213,0 +170777859701,213,0 +170777859750,213,0 +170777859800,213,0 +170777859849,213,0 +170777859897,213,0 +170777859945,213,0 +170777859993,214,0 +170777860041,214,0 +170777860089,214,0 +170777860137,214,0 +170777860185,214,0 +170777860233,214,0 +170777860280,214,0 +170777860328,213,0 +170777860376,213,0 +170777860424,213,0 +170777860472,213,0 +170777860520,213,0 +170777860568,213,0 +170777860615,213,0 +170777860665,213,0 +170777860713,213,0 +170777860761,213,0 +170777860810,213,0 +170777860860,213,0 +170777860908,213,0 +170777860956,214,0 +170777861003,213,0 +170777861053,214,0 +170777861102,214,0 +170777861150,214,0 +170777861198,214,0 +170777861246,213,0 +170777861294,213,0 +170777861342,213,0 +170777861391,213,0 +170777861439,213,0 +170777861487,213,0 +170777861535,213,0 +170777861583,213,0 +170777861631,213,0 +170777861679,213,0 +170777861727,213,0 +170777861775,214,0 +170777861823,214,0 +170777861871,214,0 +170777861919,214,0 +170777861968,214,0 +170777862016,214,0 +170777862064,214,0 +170777862114,214,0 +170777862162,213,0 +170777862210,213,0 +170777862258,213,0 +170777862306,213,0 +170777862353,213,0 +170777862401,213,0 +170777862449,213,0 +170777862497,213,0 +170777862545,213,0 +170777862593,213,0 +170777862641,213,0 +170777862691,213,0 +170777862740,214,0 +170777862788,214,0 +170777862836,214,0 +170777862886,214,0 +170777862933,214,0 +170777862981,214,0 +170777863031,214,0 +170777863079,214,0 +170777863127,213,0 +170777863175,213,0 +170777863223,213,0 +170777863271,213,0 +170777863318,213,0 +170777863366,213,0 +170777863416,213,0 +170777863464,213,0 +170777863513,213,0 +170777863561,213,0 +170777863609,214,0 +170777863657,214,0 +170777863706,214,0 +170777863754,214,0 +170777863802,214,0 +170777863850,214,0 +170777863898,214,0 +170777863946,214,0 +170777863994,214,0 +170777864042,213,0 +170777864090,213,0 +170777864138,213,0 +170777864186,213,0 +170777864234,213,0 +170777864282,213,0 +170777864330,213,0 +170777864378,213,0 +170777864426,213,0 +170777864473,213,0 +170777864521,214,0 +170777864569,214,0 +170777864619,214,0 +170777864668,214,0 +170777864718,214,0 +170777864766,214,0 +170777864814,214,0 +170777864861,214,0 +170777864909,214,0 +170777864957,213,0 +170777865005,213,0 +170777865053,213,0 +170777865103,213,0 +170777865152,213,0 +170777865200,213,0 +170777865248,213,0 +170777865296,213,0 +170777865344,213,0 +170777865393,213,0 +170777865441,213,0 +170777865489,214,0 +170777865539,214,0 +170777865588,214,0 +170777865638,214,0 +170777865687,214,0 +170777865735,214,0 +170777865783,214,0 +170777865831,214,0 +170777865881,214,0 +170777865928,213,0 +170777865976,213,0 +170777866024,213,0 +170777866072,213,0 +170777866120,213,0 +170777866168,213,0 +170777866216,213,0 +170777866264,213,0 +170777866313,213,0 +170777866361,213,0 +170777866409,213,0 +170777866457,214,0 +170777866506,214,0 +170777866554,214,0 +170777866604,214,0 +170777866652,214,0 +170777866700,214,0 +170777866748,214,0 +170777866796,214,0 +170777866844,213,0 +170777866892,213,0 +170777866939,213,0 +170777866987,213,0 +170777867037,213,0 +170777867085,213,0 +170777867133,213,0 +170777867181,213,0 +170777867228,213,0 +170777867276,213,0 +170777867326,213,0 +170777867375,214,0 +170777867425,213,0 +170777867472,214,0 +170777867520,214,0 +170777867568,214,0 +170777867616,214,0 +170777867664,214,0 +170777867712,214,0 +170777867761,213,0 +170777867809,213,0 +170777867859,213,0 +170777867907,213,0 +170777867956,213,0 +170777868006,213,0 +170777868054,213,0 +170777868102,213,0 +170777868151,213,0 +170777868199,213,0 +170777868247,213,0 +170777868297,213,0 +170777868345,213,0 +170777868394,213,0 +170777868444,214,0 +170777868492,214,0 +170777868539,214,0 +170777868587,214,0 +170777868635,214,0 +170777868683,213,0 +170777868731,213,0 +170777868779,213,0 +170777868829,213,0 +170777868877,213,0 +170777868925,213,0 +170777868973,213,0 +170777869022,213,0 +170777869072,213,0 +170777869120,213,0 +170777869168,213,0 +170777869217,213,0 +170777869267,214,0 +170777869315,213,0 +170777869363,214,0 +170777869411,214,0 +170777869458,214,0 +170777869508,214,0 +170777869557,214,0 +170777869605,213,0 +170777869653,213,0 +170777869701,213,0 +170777869749,213,0 +170777869798,213,0 +170777869848,213,0 +170777869897,213,0 +170777869947,213,0 +170777869996,213,0 +170777870044,213,0 +170777870092,213,0 +170777870142,213,0 +170777870190,214,0 +170777870239,214,0 +170777870289,214,0 +170777870336,214,0 +170777870384,214,0 +170777870432,214,0 +170777870480,214,0 +170777870528,214,0 +170777870577,213,0 +170777870625,213,0 +170777870673,213,0 +170777870721,213,0 +170777870769,213,0 +170777870819,213,0 +170777870867,213,0 +170777870916,213,0 +170777870965,213,0 +170777871013,213,0 +170777871061,213,0 +170777871109,213,0 +170777871157,214,0 +170777871207,214,0 +170777871256,214,0 +170777871304,214,0 +170777871352,214,0 +170777871400,214,0 +170777871449,214,0 +170777871499,213,0 +170777871547,213,0 +170777871596,213,0 +170777871646,213,0 +170777871694,213,0 +170777871742,213,0 +170777871790,213,0 +170777871838,213,0 +170777871887,213,0 +170777871935,213,0 +170777871985,214,0 +170777872033,214,0 +170777872082,214,0 +170777872130,214,0 +170777872178,214,0 +170777872228,214,0 +170777872276,214,0 +170777872323,214,0 +170777872371,214,0 +170777872419,213,0 +170777872467,213,0 +170777872517,213,0 +170777872565,213,0 +170777872614,213,0 +170777872662,213,0 +170777872712,213,0 +170777872760,213,0 +170777872808,213,0 +170777872856,214,0 +170777872905,214,0 +170777872953,214,0 +170777873001,214,0 +170777873051,214,0 +170777873098,214,0 +170777873148,214,0 +170777873196,214,0 +170777873244,214,0 +170777873292,214,0 +170777873340,213,0 +170777873389,213,0 +170777873437,213,0 +170777873487,213,0 +170777873536,213,0 +170777873584,213,0 +170777873634,214,0 +170777873682,214,0 +170777873730,214,0 +170777873777,214,0 +170777873825,214,0 +170777873873,214,0 +170777873921,214,0 +170777873969,214,0 +170777874017,214,0 +170777874065,214,0 +170777874113,214,0 +170777874161,214,0 +170777874208,214,0 +170777874256,214,0 +170777874304,213,0 +170777874352,213,0 +170777874400,213,0 +170777874447,213,0 +170777874495,213,0 +170777874543,213,0 +170777874591,213,0 +170777874639,214,0 +170777874687,214,0 +170777874734,214,0 +170777874784,214,0 +170777874832,214,0 +170777874879,214,0 +170777874927,214,0 +170777874975,214,0 +170777875023,214,0 +170777875071,214,0 +170777875119,214,0 +170777875167,214,0 +170777875214,213,0 +170777875264,213,0 +170777875312,213,0 +170777875360,213,0 +170777875408,213,0 +170777875457,213,0 +170777875505,213,0 +170777875555,214,0 +170777875604,214,0 +170777875652,214,0 +170777875700,214,0 +170777875749,214,0 +170777875797,214,0 +170777875845,214,0 +170777875895,214,0 +170777875944,215,0 +170777875994,214,0 +170777876042,214,0 +170777876092,214,0 +170777876141,213,0 +170777876191,213,0 +170777876240,213,0 +170777876290,213,0 +170777876338,213,0 +170777876387,214,0 +170777876435,214,0 +170777876483,214,0 +170777876531,214,0 +170777876580,214,0 +170777876628,214,0 +170777876676,214,0 +170777876724,214,0 +170777876772,214,0 +170777876820,214,0 +170777876868,214,0 +170777876916,214,0 +170777876964,214,0 +170777877012,214,0 +170777877060,213,0 +170777877109,213,0 +170777877157,213,0 +170777877207,213,0 +170777877256,213,0 +170777877304,213,0 +170777877352,213,0 +170777877400,214,0 +170777877450,214,0 +170777877499,214,0 +170777877547,214,0 +170777877595,214,0 +170777877643,214,0 +170777877691,214,0 +170777877739,214,0 +170777877787,214,0 +170777877836,214,0 +170777877884,214,0 +170777877932,214,0 +170777877980,213,0 +170777878028,213,0 +170777878076,213,0 +170777878125,213,0 +170777878173,213,0 +170777878221,213,0 +170777878271,214,0 +170777878320,213,0 +170777878370,214,0 +170777878418,214,0 +170777878466,214,0 +170777878514,214,0 +170777878562,214,0 +170777878610,214,0 +170777878660,214,0 +170777878709,214,0 +170777878757,214,0 +170777878805,214,0 +170777878854,214,0 +170777878902,213,0 +170777878950,213,0 +170777878998,213,0 +170777879048,213,0 +170777879096,213,0 +170777879145,214,0 +170777879193,214,0 +170777879241,214,0 +170777879289,214,0 +170777879338,214,0 +170777879386,214,0 +170777879434,214,0 +170777879482,214,0 +170777879530,214,0 +170777879580,214,0 +170777879628,214,0 +170777879676,214,0 +170777879724,214,0 +170777879772,214,0 +170777879821,214,0 +170777879869,213,0 +170777879918,213,0 +170777879966,213,0 +170777880014,213,0 diff --git a/laser_value/0213-09.csv b/laser_value/0213-09.csv new file mode 100644 index 0000000..b3cebd9 --- /dev/null +++ b/laser_value/0213-09.csv @@ -0,0 +1,7451 @@ +timestamp,laser_value,event +170777880065,213,0 +170777880114,213,0 +170777880162,214,0 +170777880210,214,0 +170777880259,214,0 +170777880309,214,0 +170777880357,214,0 +170777880405,214,0 +170777880453,214,0 +170777880502,214,0 +170777880550,215,0 +170777880600,214,0 +170777880648,214,0 +170777880696,214,0 +170777880743,214,0 +170777880793,213,0 +170777880841,213,0 +170777880889,213,0 +170777880937,213,0 +170777880985,213,0 +170777881034,213,0 +170777881082,213,0 +170777881130,213,0 +170777881180,213,0 +170777881229,214,0 +170777881278,214,0 +170777881326,214,0 +170777881374,214,0 +170777881422,214,0 +170777881472,214,0 +170777881520,214,0 +170777881568,214,0 +170777881616,214,0 +170777881666,214,0 +170777881715,213,0 +170777881763,213,0 +170777881811,213,0 +170777881861,213,0 +170777881908,213,0 +170777881956,213,0 +170777882004,213,0 +170777882052,213,0 +170777882100,213,0 +170777882150,213,0 +170777882199,214,0 +170777882247,214,0 +170777882295,214,0 +170777882343,214,0 +170777882391,214,0 +170777882439,214,0 +170777882487,214,0 +170777882534,214,0 +170777882582,214,0 +170777882630,213,0 +170777882678,213,0 +170777882728,213,0 +170777882776,213,0 +170777882825,213,0 +170777882875,213,0 +170777882924,213,0 +170777882972,213,0 +170777883020,213,0 +170777883068,213,0 +170777883116,214,0 +170777883164,213,0 +170777883212,214,0 +170777883260,214,0 +170777883308,214,0 +170777883356,214,0 +170777883404,214,0 +170777883452,214,0 +170777883500,214,0 +170777883549,213,0 +170777883597,213,0 +170777883645,213,0 +170777883693,213,0 +170777883741,213,0 +170777883788,213,0 +170777883836,213,0 +170777883884,213,0 +170777883934,213,0 +170777883981,213,0 +170777884029,214,0 +170777884077,214,0 +170777884125,214,0 +170777884173,214,0 +170777884221,214,0 +170777884269,214,0 +170777884317,214,0 +170777884366,214,0 +170777884414,214,0 +170777884462,214,0 +170777884510,213,0 +170777884558,213,0 +170777884606,213,0 +170777884654,213,0 +170777884703,213,0 +170777884751,213,0 +170777884799,213,0 +170777884847,213,0 +170777884895,213,0 +170777884944,213,0 +170777884992,213,0 +170777885040,214,0 +170777885088,214,0 +170777885136,214,0 +170777885184,214,0 +170777885232,214,0 +170777885280,214,0 +170777885328,214,0 +170777885375,214,0 +170777885425,213,0 +170777885475,213,0 +170777885524,213,0 +170777885572,213,0 +170777885620,213,0 +170777885668,213,0 +170777885716,213,0 +170777885764,213,0 +170777885811,213,0 +170777885859,213,0 +170777885907,213,0 +170777885957,213,0 +170777886005,214,0 +170777886053,214,0 +170777886102,214,0 +170777886150,214,0 +170777886198,214,0 +170777886246,214,0 +170777886296,214,0 +170777886345,213,0 +170777886393,213,0 +170777886441,213,0 +170777886489,213,0 +170777886537,213,0 +170777886586,213,0 +170777886634,213,0 +170777886684,213,0 +170777886732,213,0 +170777886781,213,0 +170777886829,214,0 +170777886879,214,0 +170777886927,214,0 +170777886975,214,0 +170777887022,214,0 +170777887070,214,0 +170777887118,214,0 +170777887166,215,0 +170777887214,214,0 +170777887262,214,0 +170777887311,213,0 +170777887359,213,0 +170777887409,213,0 +170777887457,213,0 +170777887506,213,0 +170777887554,213,0 +170777887604,213,0 +170777887652,213,0 +170777887700,213,0 +170777887747,213,0 +170777887797,214,0 +170777887845,214,0 +170777887893,214,0 +170777887941,214,0 +170777887990,214,0 +170777888038,214,0 +170777888086,214,0 +170777888134,214,0 +170777888184,214,0 +170777888233,213,0 +170777888281,213,0 +170777888329,213,0 +170777888377,213,0 +170777888426,213,0 +170777888474,213,0 +170777888522,213,0 +170777888570,213,0 +170777888618,213,0 +170777888666,213,0 +170777888715,213,0 +170777888763,214,0 +170777888811,213,0 +170777888859,214,0 +170777888907,214,0 +170777888955,214,0 +170777889004,214,0 +170777889052,214,0 +170777889100,214,0 +170777889150,213,0 +170777889198,213,0 +170777889245,213,0 +170777889293,213,0 +170777889341,213,0 +170777889389,213,0 +170777889437,213,0 +170777889485,213,0 +170777889533,213,0 +170777889581,213,0 +170777889629,213,0 +170777889677,214,0 +170777889726,213,0 +170777889774,214,0 +170777889824,214,0 +170777889872,214,0 +170777889921,214,0 +170777889969,214,0 +170777890019,214,0 +170777890067,213,0 +170777890115,213,0 +170777890164,213,0 +170777890212,213,0 +170777890260,213,0 +170777890308,213,0 +170777890356,213,0 +170777890404,213,0 +170777890453,213,0 +170777890501,213,0 +170777890549,213,0 +170777890599,213,0 +170777890647,214,0 +170777890695,214,0 +170777890744,214,0 +170777890792,214,0 +170777890840,214,0 +170777890888,214,0 +170777890936,214,0 +170777890984,214,0 +170777891032,213,0 +170777891080,213,0 +170777891128,213,0 +170777891176,213,0 +170777891224,213,0 +170777891272,213,0 +170777891320,213,0 +170777891368,213,0 +170777891417,213,0 +170777891465,213,0 +170777891513,213,0 +170777891561,214,0 +170777891609,214,0 +170777891657,214,0 +170777891707,214,0 +170777891756,214,0 +170777891806,214,0 +170777891854,214,0 +170777891903,214,0 +170777891951,213,0 +170777892001,213,0 +170777892048,213,0 +170777892096,213,0 +170777892144,213,0 +170777892194,213,0 +170777892242,213,0 +170777892291,213,0 +170777892341,213,0 +170777892390,213,0 +170777892438,213,0 +170777892486,214,0 +170777892534,214,0 +170777892582,214,0 +170777892630,214,0 +170777892678,214,0 +170777892728,214,0 +170777892776,214,0 +170777892824,214,0 +170777892873,213,0 +170777892923,213,0 +170777892971,213,0 +170777893020,213,0 +170777893070,213,0 +170777893119,213,0 +170777893169,213,0 +170777893218,213,0 +170777893266,213,0 +170777893316,213,0 +170777893364,214,0 +170777893412,214,0 +170777893460,214,0 +170777893509,214,0 +170777893557,214,0 +170777893606,214,0 +170777893656,214,0 +170777893704,214,0 +170777893752,214,0 +170777893800,213,0 +170777893848,213,0 +170777893896,213,0 +170777893945,213,0 +170777893993,213,0 +170777894043,213,0 +170777894092,213,0 +170777894140,213,0 +170777894188,213,0 +170777894236,214,0 +170777894284,214,0 +170777894334,214,0 +170777894382,214,0 +170777894429,214,0 +170777894477,214,0 +170777894525,214,0 +170777894573,214,0 +170777894621,214,0 +170777894669,214,0 +170777894717,213,0 +170777894765,213,0 +170777894813,213,0 +170777894860,213,0 +170777894908,213,0 +170777894956,213,0 +170777895004,213,0 +170777895052,213,0 +170777895100,214,0 +170777895148,214,0 +170777895196,214,0 +170777895244,214,0 +170777895293,214,0 +170777895341,214,0 +170777895389,214,0 +170777895437,214,0 +170777895485,214,0 +170777895533,214,0 +170777895581,214,0 +170777895629,214,0 +170777895676,213,0 +170777895724,213,0 +170777895772,213,0 +170777895820,213,0 +170777895868,214,0 +170777895916,213,0 +170777895963,213,0 +170777896011,213,0 +170777896059,214,0 +170777896107,213,0 +170777896155,214,0 +170777896203,214,0 +170777896250,214,0 +170777896298,214,0 +170777896346,214,0 +170777896394,214,0 +170777896442,214,0 +170777896490,214,0 +170777896538,214,0 +170777896586,213,0 +170777896634,213,0 +170777896683,213,0 +170777896731,213,0 +170777896779,213,0 +170777896828,213,0 +170777896876,213,0 +170777896924,213,0 +170777896972,214,0 +170777897020,213,0 +170777897068,213,0 +170777897117,214,0 +170777897165,214,0 +170777897213,214,0 +170777897261,214,0 +170777897311,214,0 +170777897359,214,0 +170777897407,214,0 +170777897454,214,0 +170777897502,213,0 +170777897550,213,0 +170777897598,213,0 +170777897646,213,0 +170777897695,213,0 +170777897745,213,0 +170777897793,213,0 +170777897841,213,0 +170777897889,214,0 +170777897938,214,0 +170777897986,214,0 +170777898034,214,0 +170777898082,214,0 +170777898130,214,0 +170777898178,214,0 +170777898227,214,0 +170777898277,214,0 +170777898327,214,0 +170777898376,214,0 +170777898424,214,0 +170777898472,213,0 +170777898522,213,0 +170777898571,213,0 +170777898619,213,0 +170777898669,213,0 +170777898718,213,0 +170777898768,213,0 +170777898816,213,0 +170777898864,214,0 +170777898912,214,0 +170777898961,214,0 +170777899009,214,0 +170777899057,214,0 +170777899107,214,0 +170777899155,214,0 +170777899203,214,0 +170777899251,214,0 +170777899300,214,0 +170777899350,214,0 +170777899398,213,0 +170777899447,212,0 +170777899497,213,0 +170777899545,213,0 +170777899593,213,0 +170777899642,213,0 +170777899690,213,0 +170777899739,213,0 +170777899787,213,0 +170777899836,213,0 +170777899884,213,0 +170777899932,214,0 +170777899980,214,0 +170777900028,214,0 +170777900076,214,0 +170777900124,214,0 +170777900171,214,0 +170777900219,214,0 +170777900267,214,0 +170777900315,213,0 +170777900363,213,0 +170777900411,213,0 +170777900459,213,0 +170777900506,213,0 +170777900554,213,0 +170777900602,213,0 +170777900650,213,0 +170777900700,213,0 +170777900748,213,0 +170777900795,213,0 +170777900843,213,0 +170777900891,213,0 +170777900939,213,0 +170777900987,213,0 +170777901035,213,0 +170777901082,214,0 +170777901130,214,0 +170777901178,214,0 +170777901226,213,0 +170777901274,213,0 +170777901322,212,0 +170777901370,213,0 +170777901419,213,0 +170777901467,213,0 +170777901517,213,0 +170777901566,213,0 +170777901614,213,0 +170777901662,213,0 +170777901712,213,0 +170777901760,213,0 +170777901808,213,0 +170777901857,214,0 +170777901905,214,0 +170777901953,214,0 +170777902003,214,0 +170777902052,214,0 +170777902100,214,0 +170777902150,214,0 +170777902198,213,0 +170777902247,213,0 +170777902295,213,0 +170777902345,213,0 +170777902394,213,0 +170777902442,213,0 +170777902492,213,0 +170777902541,213,0 +170777902589,213,0 +170777902639,213,0 +170777902687,213,0 +170777902736,214,0 +170777902784,214,0 +170777902832,214,0 +170777902880,213,0 +170777902929,214,0 +170777902977,213,0 +170777903027,214,0 +170777903075,214,0 +170777903123,213,0 +170777903172,213,0 +170777903220,213,0 +170777903270,213,0 +170777903319,213,0 +170777903369,213,0 +170777903417,213,0 +170777903465,213,0 +170777903512,213,0 +170777903560,213,0 +170777903608,213,0 +170777903658,213,0 +170777903705,213,0 +170777903753,213,0 +170777903803,214,0 +170777903850,214,0 +170777903898,213,0 +170777903946,214,0 +170777903994,214,0 +170777904042,214,0 +170777904089,214,0 +170777904137,214,0 +170777904185,214,0 +170777904233,214,0 +170777904281,214,0 +170777904329,214,0 +170777904376,214,0 +170777904424,214,0 +170777904472,214,0 +170777904520,213,0 +170777904568,213,0 +170777904616,213,0 +170777904663,213,0 +170777904711,213,0 +170777904759,213,0 +170777904809,213,0 +170777904857,213,0 +170777904905,213,0 +170777904952,213,0 +170777905000,214,0 +170777905050,214,0 +170777905098,214,0 +170777905147,214,0 +170777905195,214,0 +170777905243,214,0 +170777905292,214,0 +170777905342,214,0 +170777905390,214,0 +170777905438,213,0 +170777905487,213,0 +170777905537,213,0 +170777905585,213,0 +170777905634,213,0 +170777905682,213,0 +170777905732,213,0 +170777905781,213,0 +170777905831,213,0 +170777905879,214,0 +170777905927,214,0 +170777905975,214,0 +170777906023,214,0 +170777906071,214,0 +170777906119,214,0 +170777906166,214,0 +170777906214,214,0 +170777906264,214,0 +170777906311,214,0 +170777906359,213,0 +170777906407,213,0 +170777906457,213,0 +170777906504,213,0 +170777906552,213,0 +170777906602,213,0 +170777906650,213,0 +170777906697,213,0 +170777906745,213,0 +170777906795,213,0 +170777906843,213,0 +170777906890,213,0 +170777906938,214,0 +170777906986,214,0 +170777907036,214,0 +170777907083,214,0 +170777907131,214,0 +170777907179,214,0 +170777907227,214,0 +170777907275,213,0 +170777907323,213,0 +170777907371,213,0 +170777907418,213,0 +170777907468,213,0 +170777907516,213,0 +170777907563,213,0 +170777907611,214,0 +170777907661,213,0 +170777907710,213,0 +170777907758,214,0 +170777907806,214,0 +170777907854,214,0 +170777907902,214,0 +170777907951,214,0 +170777907999,214,0 +170777908047,214,0 +170777908095,214,0 +170777908142,214,0 +170777908190,214,0 +170777908238,213,0 +170777908286,213,0 +170777908334,213,0 +170777908384,213,0 +170777908433,213,0 +170777908481,214,0 +170777908529,213,0 +170777908577,214,0 +170777908627,214,0 +170777908676,214,0 +170777908726,214,0 +170777908775,214,0 +170777908823,214,0 +170777908873,214,0 +170777908922,214,0 +170777908970,214,0 +170777909018,214,0 +170777909068,214,0 +170777909117,214,0 +170777909167,213,0 +170777909216,213,0 +170777909264,213,0 +170777909314,213,0 +170777909362,213,0 +170777909410,213,0 +170777909458,213,0 +170777909506,213,0 +170777909554,214,0 +170777909603,214,0 +170777909651,214,0 +170777909699,214,0 +170777909748,214,0 +170777909796,214,0 +170777909846,214,0 +170777909895,214,0 +170777909943,214,0 +170777909993,214,0 +170777910041,214,0 +170777910089,213,0 +170777910137,213,0 +170777910184,213,0 +170777910232,213,0 +170777910282,213,0 +170777910330,213,0 +170777910378,213,0 +170777910426,213,0 +170777910474,214,0 +170777910522,214,0 +170777910571,214,0 +170777910621,214,0 +170777910669,214,0 +170777910718,214,0 +170777910766,214,0 +170777910816,214,0 +170777910864,214,0 +170777910911,214,0 +170777910960,214,0 +170777911007,213,0 +170777911057,213,0 +170777911105,213,0 +170777911154,213,0 +170777911202,213,0 +170777911250,213,0 +170777911298,213,0 +170777911346,213,0 +170777911394,213,0 +170777911442,213,0 +170777911490,213,0 +170777911540,213,0 +170777911589,214,0 +170777911639,214,0 +170777911687,214,0 +170777911736,214,0 +170777911784,214,0 +170777911832,214,0 +170777911880,214,0 +170777911928,213,0 +170777911976,213,0 +170777912024,213,0 +170777912072,213,0 +170777912120,213,0 +170777912169,213,0 +170777912217,213,0 +170777912265,213,0 +170777912313,213,0 +170777912361,213,0 +170777912411,213,0 +170777912459,213,0 +170777912506,214,0 +170777912554,213,0 +170777912604,214,0 +170777912652,214,0 +170777912701,214,0 +170777912749,214,0 +170777912797,214,0 +170777912845,213,0 +170777912895,213,0 +170777912943,213,0 +170777912991,212,0 +170777913040,213,0 +170777913090,213,0 +170777913138,213,0 +170777913186,213,0 +170777913235,213,0 +170777913283,213,0 +170777913333,213,0 +170777913381,213,0 +170777913429,213,0 +170777913478,214,0 +170777913526,214,0 +170777913574,214,0 +170777913622,214,0 +170777913670,214,0 +170777913720,214,0 +170777913767,214,0 +170777913817,213,0 +170777913865,213,0 +170777913913,213,0 +170777913961,213,0 +170777914009,213,0 +170777914057,213,0 +170777914106,213,0 +170777914154,213,0 +170777914202,213,0 +170777914250,213,0 +170777914299,213,0 +170777914349,214,0 +170777914398,214,0 +170777914448,214,0 +170777914497,214,0 +170777914547,214,0 +170777914595,214,0 +170777914644,214,0 +170777914694,214,0 +170777914743,213,0 +170777914793,213,0 +170777914841,213,0 +170777914889,213,0 +170777914937,213,0 +170777914986,213,0 +170777915034,213,0 +170777915082,213,0 +170777915131,213,0 +170777915179,213,0 +170777915227,213,0 +170777915275,214,0 +170777915323,213,0 +170777915371,214,0 +170777915419,214,0 +170777915467,214,0 +170777915516,214,0 +170777915566,214,0 +170777915615,214,0 +170777915663,213,0 +170777915713,212,0 +170777915761,213,0 +170777915809,213,0 +170777915857,213,0 +170777915905,213,0 +170777915953,213,0 +170777916001,213,0 +170777916049,213,0 +170777916096,213,0 +170777916146,214,0 +170777916194,214,0 +170777916242,214,0 +170777916291,214,0 +170777916341,214,0 +170777916391,214,0 +170777916440,214,0 +170777916488,214,0 +170777916537,214,0 +170777916585,213,0 +170777916635,213,0 +170777916683,213,0 +170777916731,213,0 +170777916779,213,0 +170777916826,213,0 +170777916874,213,0 +170777916922,213,0 +170777916970,214,0 +170777917020,214,0 +170777917069,214,0 +170777917117,214,0 +170777917165,214,0 +170777917213,214,0 +170777917263,214,0 +170777917310,214,0 +170777917358,214,0 +170777917406,214,0 +170777917454,214,0 +170777917502,213,0 +170777917550,213,0 +170777917598,213,0 +170777917646,213,0 +170777917695,214,0 +170777917743,214,0 +170777917793,214,0 +170777917842,214,0 +170777917890,214,0 +170777917938,214,0 +170777917986,214,0 +170777918036,214,0 +170777918084,214,0 +170777918133,214,0 +170777918183,214,0 +170777918232,214,0 +170777918280,214,0 +170777918328,214,0 +170777918377,214,0 +170777918425,214,0 +170777918473,213,0 +170777918521,213,0 +170777918569,213,0 +170777918619,214,0 +170777918667,214,0 +170777918716,214,0 +170777918766,214,0 +170777918815,214,0 +170777918863,214,0 +170777918913,214,0 +170777918962,214,0 +170777919010,214,0 +170777919058,214,0 +170777919106,214,0 +170777919156,214,0 +170777919204,214,0 +170777919251,214,0 +170777919301,214,0 +170777919351,213,0 +170777919400,213,0 +170777919448,213,0 +170777919496,213,0 +170777919544,213,0 +170777919592,213,0 +170777919640,213,0 +170777919688,213,0 +170777919736,213,0 +170777919784,214,0 +170777919833,213,0 +170777919881,214,0 +170777919929,214,0 +170777919977,214,0 +170777920025,214,0 +170777920073,214,0 +170777920120,214,0 +170777920170,214,0 +170777920218,214,0 +170777920265,215,0 +170777920313,213,0 +170777920361,213,0 +170777920409,213,0 +170777920457,213,0 +170777920505,213,0 +170777920553,213,0 +170777920600,213,0 +170777920650,213,0 +170777920698,213,0 +170777920746,214,0 +170777920795,214,0 +170777920843,214,0 +170777920891,214,0 +170777920939,214,0 +170777920988,214,0 +170777921036,214,0 +170777921084,214,0 +170777921132,214,0 +170777921179,214,0 +170777921227,213,0 +170777921275,213,0 +170777921323,213,0 +170777921372,213,0 +170777921420,213,0 +170777921468,213,0 +170777921516,213,0 +170777921564,213,0 +170777921614,214,0 +170777921663,214,0 +170777921711,214,0 +170777921760,214,0 +170777921810,214,0 +170777921858,214,0 +170777921906,214,0 +170777921954,214,0 +170777922001,214,0 +170777922049,214,0 +170777922097,214,0 +170777922145,214,0 +170777922193,213,0 +170777922241,213,0 +170777922289,213,0 +170777922339,213,0 +170777922387,213,0 +170777922434,213,0 +170777922484,213,0 +170777922532,214,0 +170777922580,214,0 +170777922628,214,0 +170777922676,214,0 +170777922725,214,0 +170777922773,214,0 +170777922821,214,0 +170777922870,214,0 +170777922918,214,0 +170777922966,214,0 +170777923014,214,0 +170777923064,214,0 +170777923111,213,0 +170777923159,213,0 +170777923207,213,0 +170777923255,213,0 +170777923303,213,0 +170777923351,213,0 +170777923398,213,0 +170777923446,213,0 +170777923494,213,0 +170777923542,214,0 +170777923590,214,0 +170777923638,214,0 +170777923685,214,0 +170777923733,214,0 +170777923781,214,0 +170777923829,214,0 +170777923878,214,0 +170777923926,214,0 +170777923974,214,0 +170777924022,213,0 +170777924070,213,0 +170777924118,213,0 +170777924166,213,0 +170777924216,213,0 +170777924264,213,0 +170777924312,213,0 +170777924360,213,0 +170777924407,213,0 +170777924455,213,0 +170777924505,214,0 +170777924553,214,0 +170777924602,214,0 +170777924650,214,0 +170777924700,214,0 +170777924749,214,0 +170777924797,214,0 +170777924845,214,0 +170777924893,214,0 +170777924941,213,0 +170777924989,213,0 +170777925038,213,0 +170777925086,213,0 +170777925134,213,0 +170777925184,213,0 +170777925232,213,0 +170777925280,213,0 +170777925328,213,0 +170777925376,213,0 +170777925425,213,0 +170777925473,214,0 +170777925521,214,0 +170777925571,214,0 +170777925619,214,0 +170777925666,214,0 +170777925714,214,0 +170777925762,214,0 +170777925812,214,0 +170777925861,214,0 +170777925911,213,0 +170777925959,213,0 +170777926008,213,0 +170777926056,213,0 +170777926104,213,0 +170777926152,213,0 +170777926201,213,0 +170777926251,213,0 +170777926299,213,0 +170777926347,213,0 +170777926394,213,0 +170777926442,214,0 +170777926490,214,0 +170777926538,214,0 +170777926587,214,0 +170777926635,214,0 +170777926683,214,0 +170777926731,214,0 +170777926781,214,0 +170777926829,213,0 +170777926877,213,0 +170777926925,213,0 +170777926973,213,0 +170777927022,213,0 +170777927072,213,0 +170777927119,213,0 +170777927167,213,0 +170777927215,213,0 +170777927265,213,0 +170777927313,213,0 +170777927361,213,0 +170777927410,213,0 +170777927458,214,0 +170777927506,214,0 +170777927554,214,0 +170777927602,214,0 +170777927650,214,0 +170777927698,214,0 +170777927746,213,0 +170777927794,212,0 +170777927841,213,0 +170777927891,213,0 +170777927940,213,0 +170777927988,213,0 +170777928036,213,0 +170777928084,213,0 +170777928132,213,0 +170777928180,213,0 +170777928228,213,0 +170777928277,213,0 +170777928327,213,0 +170777928375,213,0 +170777928423,214,0 +170777928470,214,0 +170777928520,214,0 +170777928568,214,0 +170777928616,214,0 +170777928664,213,0 +170777928713,213,0 +170777928761,213,0 +170777928809,213,0 +170777928857,213,0 +170777928905,213,0 +170777928953,213,0 +170777929001,213,0 +170777929049,213,0 +170777929096,213,0 +170777929146,213,0 +170777929195,213,0 +170777929243,213,0 +170777929291,214,0 +170777929339,214,0 +170777929387,214,0 +170777929435,214,0 +170777929483,214,0 +170777929531,214,0 +170777929579,214,0 +170777929627,213,0 +170777929675,213,0 +170777929724,213,0 +170777929774,213,0 +170777929822,213,0 +170777929870,213,0 +170777929919,213,0 +170777929967,213,0 +170777930015,213,0 +170777930064,213,0 +170777930112,214,0 +170777930160,213,0 +170777930210,214,0 +170777930258,214,0 +170777930306,214,0 +170777930354,214,0 +170777930402,214,0 +170777930450,214,0 +170777930498,214,0 +170777930546,213,0 +170777930594,213,0 +170777930641,213,0 +170777930689,213,0 +170777930737,213,0 +170777930785,213,0 +170777930833,213,0 +170777930883,213,0 +170777930931,214,0 +170777930980,214,0 +170777931028,214,0 +170777931078,214,0 +170777931126,214,0 +170777931173,214,0 +170777931222,214,0 +170777931271,214,0 +170777931319,214,0 +170777931367,214,0 +170777931417,214,0 +170777931466,213,0 +170777931515,213,0 +170777931565,213,0 +170777931613,213,0 +170777931661,213,0 +170777931710,213,0 +170777931758,213,0 +170777931806,213,0 +170777931854,214,0 +170777931902,214,0 +170777931950,214,0 +170777931997,214,0 +170777932045,214,0 +170777932093,214,0 +170777932141,214,0 +170777932189,214,0 +170777932237,214,0 +170777932287,214,0 +170777932335,214,0 +170777932384,213,0 +170777932432,213,0 +170777932480,213,0 +170777932529,213,0 +170777932577,213,0 +170777932627,213,0 +170777932675,213,0 +170777932722,213,0 +170777932770,214,0 +170777932818,213,0 +170777932868,214,0 +170777932916,214,0 +170777932965,214,0 +170777933013,214,0 +170777933061,214,0 +170777933110,214,0 +170777933158,214,0 +170777933206,214,0 +170777933254,214,0 +170777933302,213,0 +170777933350,213,0 +170777933398,213,0 +170777933446,213,0 +170777933494,213,0 +170777933543,213,0 +170777933591,213,0 +170777933639,213,0 +170777933687,214,0 +170777933736,213,0 +170777933786,214,0 +170777933834,214,0 +170777933881,214,0 +170777933931,214,0 +170777933979,214,0 +170777934027,214,0 +170777934075,214,0 +170777934124,214,0 +170777934174,214,0 +170777934222,214,0 +170777934270,213,0 +170777934319,213,0 +170777934369,213,0 +170777934417,213,0 +170777934465,213,0 +170777934514,213,0 +170777934562,213,0 +170777934610,213,0 +170777934658,213,0 +170777934706,213,0 +170777934754,213,0 +170777934803,214,0 +170777934851,213,0 +170777934901,214,0 +170777934949,214,0 +170777934998,214,0 +170777935048,214,0 +170777935095,214,0 +170777935143,214,0 +170777935191,213,0 +170777935239,213,0 +170777935287,213,0 +170777935335,213,0 +170777935384,213,0 +170777935432,213,0 +170777935480,213,0 +170777935528,213,0 +170777935576,213,0 +170777935624,213,0 +170777935672,213,0 +170777935720,213,0 +170777935768,213,0 +170777935817,214,0 +170777935865,213,0 +170777935915,214,0 +170777935963,214,0 +170777936011,214,0 +170777936059,214,0 +170777936107,213,0 +170777936156,213,0 +170777936204,213,0 +170777936252,213,0 +170777936301,213,0 +170777936349,213,0 +170777936397,213,0 +170777936447,213,0 +170777936494,213,0 +170777936542,213,0 +170777936590,214,0 +170777936638,214,0 +170777936686,214,0 +170777936736,214,0 +170777936785,214,0 +170777936833,214,0 +170777936881,214,0 +170777936929,214,0 +170777936979,214,0 +170777937028,213,0 +170777937078,213,0 +170777937126,213,0 +170777937174,213,0 +170777937223,213,0 +170777937271,213,0 +170777937319,213,0 +170777937367,213,0 +170777937415,213,0 +170777937464,213,0 +170777937512,214,0 +170777937560,213,0 +170777937610,214,0 +170777937658,214,0 +170777937707,214,0 +170777937757,214,0 +170777937806,214,0 +170777937854,214,0 +170777937902,214,0 +170777937950,213,0 +170777937998,213,0 +170777938048,213,0 +170777938096,213,0 +170777938145,213,0 +170777938195,213,0 +170777938243,213,0 +170777938292,213,0 +170777938340,214,0 +170777938388,214,0 +170777938436,214,0 +170777938484,214,0 +170777938533,214,0 +170777938581,214,0 +170777938629,214,0 +170777938677,214,0 +170777938725,214,0 +170777938773,214,0 +170777938821,214,0 +170777938868,213,0 +170777938916,213,0 +170777938964,213,0 +170777939014,213,0 +170777939061,214,0 +170777939111,213,0 +170777939159,214,0 +170777939207,213,0 +170777939257,213,0 +170777939305,214,0 +170777939354,214,0 +170777939404,214,0 +170777939451,214,0 +170777939501,214,0 +170777939549,214,0 +170777939597,214,0 +170777939645,214,0 +170777939693,214,0 +170777939740,214,0 +170777939788,214,0 +170777939838,213,0 +170777939886,213,0 +170777939933,213,0 +170777939981,213,0 +170777940029,213,0 +170777940077,214,0 +170777940125,214,0 +170777940173,214,0 +170777940222,214,0 +170777940270,214,0 +170777940318,214,0 +170777940366,214,0 +170777940415,214,0 +170777940463,214,0 +170777940511,214,0 +170777940559,214,0 +170777940608,214,0 +170777940656,214,0 +170777940704,214,0 +170777940752,213,0 +170777940800,213,0 +170777940848,213,0 +170777940896,213,0 +170777940945,213,0 +170777940993,214,0 +170777941041,214,0 +170777941091,214,0 +170777941139,214,0 +170777941188,214,0 +170777941238,214,0 +170777941287,214,0 +170777941335,214,0 +170777941383,214,0 +170777941432,214,0 +170777941480,214,0 +170777941528,214,0 +170777941576,214,0 +170777941625,214,0 +170777941675,213,0 +170777941723,213,0 +170777941772,213,0 +170777941820,213,0 +170777941868,213,0 +170777941916,213,0 +170777941964,213,0 +170777942012,213,0 +170777942061,214,0 +170777942109,214,0 +170777942157,214,0 +170777942205,214,0 +170777942254,214,0 +170777942302,214,0 +170777942350,214,0 +170777942398,214,0 +170777942446,214,0 +170777942494,214,0 +170777942543,214,0 +170777942591,213,0 +170777942639,213,0 +170777942687,213,0 +170777942735,213,0 +170777942782,213,0 +170777942830,213,0 +170777942878,213,0 +170777942926,213,0 +170777942974,213,0 +170777943022,213,0 +170777943070,214,0 +170777943117,214,0 +170777943165,214,0 +170777943213,214,0 +170777943261,214,0 +170777943309,214,0 +170777943357,214,0 +170777943406,214,0 +170777943456,214,0 +170777943504,214,0 +170777943552,213,0 +170777943600,213,0 +170777943649,213,0 +170777943697,213,0 +170777943746,213,0 +170777943794,213,0 +170777943842,213,0 +170777943890,213,0 +170777943938,213,0 +170777943985,213,0 +170777944033,213,0 +170777944081,213,0 +170777944129,214,0 +170777944177,213,0 +170777944225,214,0 +170777944272,214,0 +170777944322,214,0 +170777944370,214,0 +170777944418,214,0 +170777944465,213,0 +170777944513,213,0 +170777944561,213,0 +170777944609,213,0 +170777944658,213,0 +170777944706,213,0 +170777944754,213,0 +170777944802,213,0 +170777944852,213,0 +170777944901,213,0 +170777944951,213,0 +170777945001,214,0 +170777945048,214,0 +170777945096,214,0 +170777945144,214,0 +170777945194,214,0 +170777945242,214,0 +170777945290,214,0 +170777945338,214,0 +170777945386,213,0 +170777945435,213,0 +170777945483,213,0 +170777945531,213,0 +170777945579,213,0 +170777945628,213,0 +170777945678,213,0 +170777945726,213,0 +170777945773,213,0 +170777945821,213,0 +170777945869,214,0 +170777945917,214,0 +170777945967,214,0 +170777946015,214,0 +170777946063,214,0 +170777946111,214,0 +170777946160,214,0 +170777946210,214,0 +170777946258,214,0 +170777946307,213,0 +170777946357,213,0 +170777946406,213,0 +170777946456,213,0 +170777946504,213,0 +170777946552,213,0 +170777946601,213,0 +170777946649,213,0 +170777946697,213,0 +170777946747,213,0 +170777946795,213,0 +170777946844,213,0 +170777946892,214,0 +170777946940,214,0 +170777946988,214,0 +170777947036,214,0 +170777947084,214,0 +170777947132,214,0 +170777947180,214,0 +170777947229,214,0 +170777947279,213,0 +170777947327,213,0 +170777947375,213,0 +170777947423,213,0 +170777947471,213,0 +170777947519,213,0 +170777947567,213,0 +170777947614,213,0 +170777947662,213,0 +170777947710,213,0 +170777947758,213,0 +170777947806,214,0 +170777947854,213,0 +170777947902,213,0 +170777947949,214,0 +170777947997,214,0 +170777948045,214,0 +170777948093,214,0 +170777948141,214,0 +170777948189,213,0 +170777948238,212,0 +170777948286,213,0 +170777948336,213,0 +170777948384,213,0 +170777948432,213,0 +170777948481,213,0 +170777948529,213,0 +170777948577,213,0 +170777948625,213,0 +170777948673,213,0 +170777948721,213,0 +170777948770,214,0 +170777948818,214,0 +170777948868,214,0 +170777948916,214,0 +170777948964,214,0 +170777949012,214,0 +170777949059,214,0 +170777949107,213,0 +170777949155,213,0 +170777949205,213,0 +170777949254,213,0 +170777949302,213,0 +170777949350,213,0 +170777949398,213,0 +170777949447,213,0 +170777949497,213,0 +170777949546,213,0 +170777949596,213,0 +170777949644,213,0 +170777949693,214,0 +170777949741,214,0 +170777949790,214,0 +170777949840,214,0 +170777949888,214,0 +170777949936,214,0 +170777949984,214,0 +170777950032,213,0 +170777950080,213,0 +170777950127,213,0 +170777950175,213,0 +170777950223,213,0 +170777950273,213,0 +170777950322,213,0 +170777950370,213,0 +170777950418,213,0 +170777950466,213,0 +170777950513,213,0 +170777950561,213,0 +170777950609,214,0 +170777950657,214,0 +170777950705,214,0 +170777950753,214,0 +170777950801,214,0 +170777950848,214,0 +170777950896,214,0 +170777950944,214,0 +170777950992,213,0 +170777951040,213,0 +170777951088,213,0 +170777951137,213,0 +170777951185,213,0 +170777951233,213,0 +170777951282,213,0 +170777951332,213,0 +170777951380,213,0 +170777951428,213,0 +170777951476,213,0 +170777951524,214,0 +170777951572,214,0 +170777951621,214,0 +170777951669,214,0 +170777951717,214,0 +170777951765,214,0 +170777951814,214,0 +170777951862,214,0 +170777951910,213,0 +170777951958,213,0 +170777952006,213,0 +170777952055,213,0 +170777952103,213,0 +170777952151,213,0 +170777952198,213,0 +170777952248,213,0 +170777952296,213,0 +170777952344,214,0 +170777952391,214,0 +170777952439,214,0 +170777952487,214,0 +170777952535,214,0 +170777952583,214,0 +170777952631,214,0 +170777952679,214,0 +170777952728,214,0 +170777952777,214,0 +170777952825,213,0 +170777952873,213,0 +170777952921,213,0 +170777952969,213,0 +170777953017,213,0 +170777953065,213,0 +170777953112,213,0 +170777953160,213,0 +170777953208,213,0 +170777953258,213,0 +170777953307,214,0 +170777953355,214,0 +170777953404,214,0 +170777953452,214,0 +170777953500,214,0 +170777953548,214,0 +170777953597,214,0 +170777953645,214,0 +170777953693,214,0 +170777953741,213,0 +170777953789,213,0 +170777953837,213,0 +170777953884,213,0 +170777953932,213,0 +170777953982,213,0 +170777954031,213,0 +170777954079,213,0 +170777954129,213,0 +170777954177,214,0 +170777954226,214,0 +170777954276,214,0 +170777954325,214,0 +170777954373,214,0 +170777954423,214,0 +170777954471,214,0 +170777954518,214,0 +170777954566,214,0 +170777954616,214,0 +170777954666,214,0 +170777954714,213,0 +170777954761,213,0 +170777954809,213,0 +170777954857,213,0 +170777954907,213,0 +170777954955,213,0 +170777955004,213,0 +170777955052,213,0 +170777955100,213,0 +170777955148,213,0 +170777955198,213,0 +170777955247,214,0 +170777955295,214,0 +170777955343,214,0 +170777955392,214,0 +170777955440,214,0 +170777955490,214,0 +170777955538,214,0 +170777955586,214,0 +170777955635,213,0 +170777955683,213,0 +170777955733,213,0 +170777955781,213,0 +170777955829,213,0 +170777955877,213,0 +170777955925,213,0 +170777955974,213,0 +170777956022,213,0 +170777956070,213,0 +170777956118,214,0 +170777956166,214,0 +170777956214,214,0 +170777956261,214,0 +170777956309,214,0 +170777956357,214,0 +170777956405,214,0 +170777956453,214,0 +170777956503,214,0 +170777956551,213,0 +170777956599,213,0 +170777956646,213,0 +170777956696,213,0 +170777956744,213,0 +170777956792,213,0 +170777956840,213,0 +170777956888,213,0 +170777956936,213,0 +170777956984,213,0 +170777957032,214,0 +170777957080,214,0 +170777957128,214,0 +170777957176,214,0 +170777957223,214,0 +170777957271,214,0 +170777957321,214,0 +170777957369,214,0 +170777957417,214,0 +170777957465,213,0 +170777957513,213,0 +170777957560,213,0 +170777957608,213,0 +170777957658,213,0 +170777957706,213,0 +170777957753,213,0 +170777957801,213,0 +170777957849,214,0 +170777957897,214,0 +170777957945,214,0 +170777957993,214,0 +170777958041,214,0 +170777958089,214,0 +170777958137,214,0 +170777958186,214,0 +170777958234,214,0 +170777958282,214,0 +170777958331,214,0 +170777958381,214,0 +170777958429,213,0 +170777958477,213,0 +170777958525,213,0 +170777958573,213,0 +170777958622,213,0 +170777958670,213,0 +170777958718,213,0 +170777958766,213,0 +170777958815,214,0 +170777958863,214,0 +170777958911,214,0 +170777958959,214,0 +170777959006,214,0 +170777959054,214,0 +170777959102,214,0 +170777959150,214,0 +170777959198,214,0 +170777959247,214,0 +170777959295,214,0 +170777959343,213,0 +170777959392,213,0 +170777959440,213,0 +170777959488,213,0 +170777959536,213,0 +170777959584,213,0 +170777959634,213,0 +170777959683,213,0 +170777959731,213,0 +170777959779,213,0 +170777959827,214,0 +170777959875,214,0 +170777959924,214,0 +170777959972,214,0 +170777960020,214,0 +170777960068,214,0 +170777960116,214,0 +170777960164,214,0 +170777960212,214,0 +170777960260,213,0 +170777960307,213,0 +170777960355,212,0 +170777960403,213,0 +170777960453,213,0 +170777960502,213,0 +170777960550,213,0 +170777960598,213,0 +170777960646,213,0 +170777960696,213,0 +170777960743,213,0 +170777960793,213,0 +170777960842,214,0 +170777960892,214,0 +170777960940,214,0 +170777960988,214,0 +170777961036,214,0 +170777961085,214,0 +170777961133,214,0 +170777961182,213,0 +170777961232,213,0 +170777961280,213,0 +170777961328,213,0 +170777961376,213,0 +170777961424,213,0 +170777961473,213,0 +170777961521,213,0 +170777961569,213,0 +170777961617,214,0 +170777961665,214,0 +170777961713,214,0 +170777961761,213,0 +170777961809,214,0 +170777961856,214,0 +170777961904,214,0 +170777961954,214,0 +170777962002,214,0 +170777962050,214,0 +170777962098,213,0 +170777962147,213,0 +170777962197,213,0 +170777962245,213,0 +170777962294,213,0 +170777962342,213,0 +170777962390,213,0 +170777962438,213,0 +170777962486,213,0 +170777962534,213,0 +170777962583,214,0 +170777962631,214,0 +170777962679,214,0 +170777962728,214,0 +170777962776,214,0 +170777962824,214,0 +170777962872,214,0 +170777962922,214,0 +170777962971,214,0 +170777963019,214,0 +170777963067,213,0 +170777963116,213,0 +170777963164,213,0 +170777963212,213,0 +170777963259,213,0 +170777963307,213,0 +170777963355,213,0 +170777963405,213,0 +170777963453,214,0 +170777963500,214,0 +170777963548,214,0 +170777963596,214,0 +170777963644,214,0 +170777963692,214,0 +170777963740,214,0 +170777963789,214,0 +170777963837,214,0 +170777963885,214,0 +170777963934,214,0 +170777963982,213,0 +170777964030,213,0 +170777964078,213,0 +170777964128,213,0 +170777964177,213,0 +170777964227,213,0 +170777964276,213,0 +170777964325,213,0 +170777964375,214,0 +170777964424,214,0 +170777964472,214,0 +170777964520,214,0 +170777964568,214,0 +170777964618,214,0 +170777964667,214,0 +170777964715,214,0 +170777964763,214,0 +170777964811,214,0 +170777964859,214,0 +170777964907,213,0 +170777964955,213,0 +170777965004,213,0 +170777965054,213,0 +170777965103,213,0 +170777965151,213,0 +170777965199,213,0 +170777965247,213,0 +170777965295,213,0 +170777965343,214,0 +170777965390,214,0 +170777965438,214,0 +170777965486,214,0 +170777965534,214,0 +170777965582,214,0 +170777965630,214,0 +170777965677,214,0 +170777965725,214,0 +170777965773,214,0 +170777965823,213,0 +170777965870,213,0 +170777965918,213,0 +170777965966,213,0 +170777966014,213,0 +170777966062,213,0 +170777966110,213,0 +170777966159,213,0 +170777966207,213,0 +170777966255,213,0 +170777966302,213,0 +170777966350,214,0 +170777966398,214,0 +170777966446,214,0 +170777966494,214,0 +170777966542,214,0 +170777966589,214,0 +170777966637,214,0 +170777966685,214,0 +170777966733,214,0 +170777966781,213,0 +170777966830,213,0 +170777966878,213,0 +170777966926,213,0 +170777966975,213,0 +170777967023,213,0 +170777967071,213,0 +170777967120,213,0 +170777967168,214,0 +170777967216,213,0 +170777967264,214,0 +170777967312,214,0 +170777967360,214,0 +170777967408,214,0 +170777967457,214,0 +170777967505,214,0 +170777967555,214,0 +170777967603,214,0 +170777967651,214,0 +170777967698,213,0 +170777967748,213,0 +170777967796,213,0 +170777967844,213,0 +170777967893,213,0 +170777967941,213,0 +170777967991,213,0 +170777968039,213,0 +170777968088,213,0 +170777968136,214,0 +170777968184,214,0 +170777968232,214,0 +170777968281,214,0 +170777968331,214,0 +170777968380,214,0 +170777968430,214,0 +170777968478,214,0 +170777968526,214,0 +170777968574,214,0 +170777968622,213,0 +170777968669,213,0 +170777968717,213,0 +170777968765,213,0 +170777968813,213,0 +170777968861,213,0 +170777968909,213,0 +170777968957,213,0 +170777969005,214,0 +170777969052,214,0 +170777969100,214,0 +170777969150,214,0 +170777969198,214,0 +170777969247,214,0 +170777969295,214,0 +170777969343,214,0 +170777969391,214,0 +170777969441,214,0 +170777969488,214,0 +170777969536,213,0 +170777969586,213,0 +170777969634,213,0 +170777969683,213,0 +170777969732,213,0 +170777969780,213,0 +170777969828,213,0 +170777969876,213,0 +170777969923,213,0 +170777969971,213,0 +170777970019,213,0 +170777970067,214,0 +170777970115,214,0 +170777970163,214,0 +170777970210,214,0 +170777970258,214,0 +170777970306,214,0 +170777970354,214,0 +170777970402,214,0 +170777970450,214,0 +170777970499,213,0 +170777970547,213,0 +170777970595,213,0 +170777970644,213,0 +170777970692,213,0 +170777970740,213,0 +170777970788,213,0 +170777970835,213,0 +170777970883,213,0 +170777970931,213,0 +170777970979,213,0 +170777971027,213,0 +170777971075,213,0 +170777971124,214,0 +170777971172,213,0 +170777971222,214,0 +170777971270,214,0 +170777971317,214,0 +170777971365,214,0 +170777971415,213,0 +170777971464,213,0 +170777971512,213,0 +170777971560,213,0 +170777971608,213,0 +170777971656,213,0 +170777971704,213,0 +170777971753,213,0 +170777971801,213,0 +170777971851,213,0 +170777971899,213,0 +170777971947,214,0 +170777971995,214,0 +170777972044,214,0 +170777972094,214,0 +170777972141,214,0 +170777972191,214,0 +170777972239,214,0 +170777972287,214,0 +170777972336,213,0 +170777972384,213,0 +170777972432,213,0 +170777972480,213,0 +170777972530,213,0 +170777972579,213,0 +170777972628,213,0 +170777972678,213,0 +170777972726,213,0 +170777972774,214,0 +170777972823,214,0 +170777972873,214,0 +170777972922,214,0 +170777972970,214,0 +170777973019,214,0 +170777973069,214,0 +170777973117,214,0 +170777973165,214,0 +170777973213,214,0 +170777973260,213,0 +170777973309,213,0 +170777973358,213,0 +170777973406,213,0 +170777973454,213,0 +170777973502,213,0 +170777973551,213,0 +170777973599,213,0 +170777973649,213,0 +170777973697,213,0 +170777973745,214,0 +170777973793,214,0 +170777973840,214,0 +170777973888,214,0 +170777973936,214,0 +170777973984,214,0 +170777974032,214,0 +170777974080,214,0 +170777974128,214,0 +170777974176,214,0 +170777974224,213,0 +170777974272,213,0 +170777974319,212,0 +170777974367,213,0 +170777974415,213,0 +170777974463,213,0 +170777974511,213,0 +170777974559,213,0 +170777974607,213,0 +170777974654,213,0 +170777974702,214,0 +170777974750,214,0 +170777974798,214,0 +170777974846,214,0 +170777974894,214,0 +170777974942,214,0 +170777974990,214,0 +170777975037,214,0 +170777975085,214,0 +170777975133,213,0 +170777975181,213,0 +170777975229,213,0 +170777975278,213,0 +170777975326,213,0 +170777975374,213,0 +170777975421,213,0 +170777975469,213,0 +170777975517,213,0 +170777975565,214,0 +170777975614,213,0 +170777975664,213,0 +170777975712,214,0 +170777975759,214,0 +170777975809,214,0 +170777975857,214,0 +170777975905,214,0 +170777975953,214,0 +170777976000,214,0 +170777976050,213,0 +170777976099,213,0 +170777976147,213,0 +170777976197,213,0 +170777976244,213,0 +170777976292,213,0 +170777976340,213,0 +170777976388,213,0 +170777976438,213,0 +170777976486,213,0 +170777976533,213,0 +170777976583,214,0 +170777976632,214,0 +170777976680,214,0 +170777976730,214,0 +170777976779,214,0 +170777976827,214,0 +170777976876,214,0 +170777976924,214,0 +170777976972,213,0 +170777977020,213,0 +170777977068,213,0 +170777977118,213,0 +170777977167,213,0 +170777977217,213,0 +170777977264,213,0 +170777977314,213,0 +170777977362,213,0 +170777977410,213,0 +170777977458,213,0 +170777977507,213,0 +170777977555,213,0 +170777977605,213,0 +170777977653,213,0 +170777977702,213,0 +170777977750,213,0 +170777977798,213,0 +170777977846,214,0 +170777977896,213,0 +170777977945,213,0 +170777977993,213,0 +170777978041,213,0 +170777978089,213,0 +170777978137,213,0 +170777978185,213,0 +170777978234,213,0 +170777978284,213,0 +170777978332,213,0 +170777978381,213,0 +170777978431,213,0 +170777978479,213,0 +170777978528,214,0 +170777978578,213,0 +170777978627,214,0 +170777978675,214,0 +170777978723,214,0 +170777978771,214,0 +170777978819,214,0 +170777978867,213,0 +170777978917,213,0 +170777978965,213,0 +170777979012,213,0 +170777979062,213,0 +170777979110,213,0 +170777979158,213,0 +170777979206,213,0 +170777979254,213,0 +170777979302,213,0 +170777979351,213,0 +170777979400,213,0 +170777979450,214,0 +170777979498,214,0 +170777979546,214,0 +170777979594,214,0 +170777979641,214,0 +170777979689,214,0 +170777979737,214,0 +170777979785,212,0 +170777979833,213,0 +170777979880,213,0 +170777979928,213,0 +170777979976,213,0 +170777980024,213,0 +170777980072,213,0 +170777980121,213,0 +170777980169,213,0 +170777980219,213,0 +170777980267,213,0 +170777980316,213,0 +170777980364,214,0 +170777980412,213,0 +170777980460,214,0 +170777980508,214,0 +170777980556,214,0 +170777980604,214,0 +170777980653,214,0 +170777980701,213,0 +170777980749,213,0 +170777980797,213,0 +170777980845,213,0 +170777980893,213,0 +170777980941,213,0 +170777980990,213,0 +170777981040,213,0 +170777981088,213,0 +170777981137,213,0 +170777981185,213,0 +170777981233,213,0 +170777981281,213,0 +170777981330,214,0 +170777981378,214,0 +170777981426,214,0 +170777981474,214,0 +170777981523,214,0 +170777981573,214,0 +170777981621,213,0 +170777981670,213,0 +170777981718,213,0 +170777981766,213,0 +170777981816,213,0 +170777981865,213,0 +170777981913,213,0 +170777981962,213,0 +170777982012,213,0 +170777982060,213,0 +170777982108,213,0 +170777982157,214,0 +170777982205,213,0 +170777982253,214,0 +170777982301,214,0 +170777982351,214,0 +170777982399,214,0 +170777982447,214,0 +170777982495,214,0 +170777982544,213,0 +170777982592,213,0 +170777982640,213,0 +170777982688,213,0 +170777982736,213,0 +170777982784,213,0 +170777982832,213,0 +170777982880,214,0 +170777982927,213,0 +170777982977,214,0 +170777983026,214,0 +170777983074,214,0 +170777983122,214,0 +170777983170,214,0 +170777983220,214,0 +170777983268,214,0 +170777983315,214,0 +170777983363,214,0 +170777983411,214,0 +170777983461,214,0 +170777983510,213,0 +170777983560,213,0 +170777983609,213,0 +170777983657,213,0 +170777983707,213,0 +170777983755,214,0 +170777983804,214,0 +170777983853,214,0 +170777983901,214,0 +170777983949,214,0 +170777983997,214,0 +170777984046,214,0 +170777984094,214,0 +170777984142,214,0 +170777984190,214,0 +170777984238,214,0 +170777984286,214,0 +170777984334,214,0 +170777984382,214,0 +170777984430,213,0 +170777984478,213,0 +170777984526,213,0 +170777984574,213,0 +170777984623,213,0 +170777984671,214,0 +170777984719,214,0 +170777984767,214,0 +170777984815,214,0 +170777984864,214,0 +170777984912,214,0 +170777984960,214,0 +170777985008,214,0 +170777985058,214,0 +170777985106,214,0 +170777985155,214,0 +170777985205,214,0 +170777985252,214,0 +170777985302,214,0 +170777985350,213,0 +170777985398,213,0 +170777985446,213,0 +170777985495,213,0 +170777985544,213,0 +170777985594,213,0 +170777985642,213,0 +170777985690,214,0 +170777985738,214,0 +170777985786,214,0 +170777985833,214,0 +170777985881,214,0 +170777985931,214,0 +170777985979,214,0 +170777986026,214,0 +170777986074,214,0 +170777986122,214,0 +170777986172,214,0 +170777986221,214,0 +170777986269,213,0 +170777986317,213,0 +170777986364,213,0 +170777986414,213,0 +170777986463,213,0 +170777986511,213,0 +170777986559,213,0 +170777986607,213,0 +170777986656,214,0 +170777986706,214,0 +170777986755,214,0 +170777986805,214,0 +170777986854,214,0 +170777986902,214,0 +170777986950,214,0 +170777986998,214,0 +170777987046,214,0 +170777987094,214,0 +170777987142,214,0 +170777987191,213,0 +170777987239,213,0 +170777987287,213,0 +170777987337,213,0 +170777987384,213,0 +170777987434,213,0 +170777987483,213,0 +170777987531,213,0 +170777987579,214,0 +170777987627,213,0 +170777987675,214,0 +170777987723,214,0 +170777987770,214,0 +170777987818,214,0 +170777987868,214,0 +170777987915,214,0 +170777987963,214,0 +170777988011,214,0 +170777988059,214,0 +170777988107,213,0 +170777988155,213,0 +170777988203,213,0 +170777988250,213,0 +170777988298,213,0 +170777988346,213,0 +170777988394,213,0 +170777988442,213,0 +170777988490,213,0 +170777988537,213,0 +170777988585,213,0 +170777988635,214,0 +170777988684,214,0 +170777988732,214,0 +170777988780,214,0 +170777988830,214,0 +170777988878,214,0 +170777988927,214,0 +170777988975,214,0 +170777989023,213,0 +170777989071,213,0 +170777989121,213,0 +170777989168,213,0 +170777989216,213,0 +170777989264,213,0 +170777989312,213,0 +170777989360,213,0 +170777989408,213,0 +170777989457,213,0 +170777989507,213,0 +170777989555,213,0 +170777989602,213,0 +170777989650,213,0 +170777989700,214,0 +170777989749,214,0 +170777989797,214,0 +170777989847,214,0 +170777989895,214,0 +170777989943,214,0 +170777989990,213,0 +170777990040,213,0 +170777990088,212,0 +170777990137,213,0 +170777990185,213,0 +170777990235,213,0 +170777990284,213,0 +170777990332,213,0 +170777990380,213,0 +170777990430,213,0 +170777990478,213,0 +170777990526,213,0 +170777990574,213,0 +170777990622,213,0 +170777990671,214,0 +170777990719,214,0 +170777990767,214,0 +170777990815,214,0 +170777990863,214,0 +170777990911,213,0 +170777990959,213,0 +170777991007,213,0 +170777991054,213,0 +170777991102,213,0 +170777991150,213,0 +170777991198,213,0 +170777991246,213,0 +170777991294,213,0 +170777991343,213,0 +170777991391,214,0 +170777991439,214,0 +170777991487,213,0 +170777991536,214,0 +170777991584,214,0 +170777991634,214,0 +170777991682,214,0 +170777991729,214,0 +170777991777,214,0 +170777991827,213,0 +170777991874,212,0 +170777991922,213,0 +170777991972,213,0 +170777992020,213,0 +170777992067,213,0 +170777992115,213,0 +170777992163,213,0 +170777992212,213,0 +170777992262,214,0 +170777992310,213,0 +170777992359,214,0 +170777992407,214,0 +170777992455,214,0 +170777992503,214,0 +170777992552,214,0 +170777992600,214,0 +170777992648,214,0 +170777992696,214,0 +170777992744,213,0 +170777992792,213,0 +170777992840,213,0 +170777992887,213,0 +170777992935,213,0 +170777992983,213,0 +170777993031,213,0 +170777993079,213,0 +170777993128,213,0 +170777993176,213,0 +170777993224,213,0 +170777993272,214,0 +170777993320,214,0 +170777993368,214,0 +170777993416,214,0 +170777993466,214,0 +170777993513,214,0 +170777993561,214,0 +170777993609,214,0 +170777993659,214,0 +170777993707,213,0 +170777993755,213,0 +170777993803,213,0 +170777993852,213,0 +170777993902,213,0 +170777993949,213,0 +170777993997,213,0 +170777994045,213,0 +170777994093,213,0 +170777994141,213,0 +170777994189,214,0 +170777994237,214,0 +170777994284,214,0 +170777994332,214,0 +170777994380,214,0 +170777994428,214,0 +170777994476,214,0 +170777994523,214,0 +170777994571,214,0 +170777994619,213,0 +170777994667,213,0 +170777994715,213,0 +170777994762,213,0 +170777994810,213,0 +170777994860,213,0 +170777994908,213,0 +170777994955,213,0 +170777995005,213,0 +170777995054,213,0 +170777995102,213,0 +170777995150,213,0 +170777995198,213,0 +170777995246,214,0 +170777995294,214,0 +170777995341,214,0 +170777995389,214,0 +170777995437,214,0 +170777995485,214,0 +170777995534,213,0 +170777995582,213,0 +170777995631,212,0 +170777995679,213,0 +170777995727,213,0 +170777995775,213,0 +170777995823,213,0 +170777995871,213,0 +170777995918,213,0 +170777995966,213,0 +170777996014,213,0 +170777996062,213,0 +170777996110,213,0 +170777996158,214,0 +170777996206,214,0 +170777996255,214,0 +170777996303,214,0 +170777996353,214,0 +170777996402,214,0 +170777996450,214,0 +170777996498,213,0 +170777996546,213,0 +170777996596,213,0 +170777996643,213,0 +170777996691,213,0 +170777996739,213,0 +170777996787,213,0 +170777996835,213,0 +170777996885,213,0 +170777996933,213,0 +170777996980,214,0 +170777997028,214,0 +170777997078,214,0 +170777997127,214,0 +170777997175,214,0 +170777997224,214,0 +170777997272,214,0 +170777997320,214,0 +170777997368,214,0 +170777997416,213,0 +170777997464,213,0 +170777997513,213,0 +170777997561,213,0 +170777997610,213,0 +170777997658,213,0 +170777997706,213,0 +170777997754,213,0 +170777997803,213,0 +170777997851,213,0 +170777997899,214,0 +170777997947,214,0 +170777997995,214,0 +170777998043,214,0 +170777998090,214,0 +170777998138,214,0 +170777998186,214,0 +170777998234,214,0 +170777998282,214,0 +170777998330,213,0 +170777998377,213,0 +170777998425,213,0 +170777998475,213,0 +170777998522,213,0 +170777998570,213,0 +170777998618,214,0 +170777998666,213,0 +170777998713,214,0 +170777998761,214,0 +170777998809,213,0 +170777998857,214,0 +170777998905,214,0 +170777998952,214,0 +170777999000,214,0 +170777999048,214,0 +170777999096,214,0 +170777999143,214,0 +170777999191,214,0 +170777999239,213,0 +170777999287,213,0 +170777999336,213,0 +170777999384,213,0 +170777999432,213,0 +170777999481,213,0 +170777999531,214,0 +170777999579,214,0 +170777999626,213,0 +170777999674,214,0 +170777999722,214,0 +170777999770,214,0 +170777999818,214,0 +170777999866,214,0 +170777999914,214,0 +170777999961,214,0 +170778000009,214,0 +170778000057,214,0 +170778000105,214,0 +170778000153,214,0 +170778000201,213,0 +170778000248,213,0 +170778000296,213,0 +170778000346,213,0 +170778000394,213,0 +170778000441,213,0 +170778000489,213,0 +170778000539,213,0 +170778000588,213,0 +170778000636,213,0 +170778000684,214,0 +170778000732,214,0 +170778000780,214,0 +170778000829,214,0 +170778000877,214,0 +170778000927,214,0 +170778000976,214,0 +170778001024,214,0 +170778001072,214,0 +170778001120,213,0 +170778001168,212,0 +170778001216,213,0 +170778001265,213,0 +170778001315,213,0 +170778001363,213,0 +170778001410,213,0 +170778001458,213,0 +170778001506,213,0 +170778001556,213,0 +170778001604,213,0 +170778001652,213,0 +170778001700,213,0 +170778001748,213,0 +170778001797,214,0 +170778001847,214,0 +170778001894,214,0 +170778001942,214,0 +170778001990,214,0 +170778002038,213,0 +170778002086,213,0 +170778002134,213,0 +170778002182,213,0 +170778002230,212,0 +170778002278,213,0 +170778002327,213,0 +170778002375,213,0 +170778002423,213,0 +170778002471,213,0 +170778002519,213,0 +170778002567,213,0 +170778002616,213,0 +170778002666,213,0 +170778002714,213,0 +170778002761,213,0 +170778002811,213,0 +170778002859,214,0 +170778002907,214,0 +170778002956,213,0 +170778003006,213,0 +170778003053,213,0 +170778003101,213,0 +170778003151,213,0 +170778003199,213,0 +170778003246,213,0 +170778003294,213,0 +170778003344,213,0 +170778003393,213,0 +170778003441,213,0 +170778003489,214,0 +170778003537,214,0 +170778003585,214,0 +170778003634,214,0 +170778003682,214,0 +170778003730,214,0 +170778003778,214,0 +170778003827,214,0 +170778003875,214,0 +170778003923,213,0 +170778003971,213,0 +170778004020,213,0 +170778004068,213,0 +170778004116,213,0 +170778004164,213,0 +170778004212,213,0 +170778004260,213,0 +170778004308,213,0 +170778004355,213,0 +170778004403,214,0 +170778004451,214,0 +170778004499,214,0 +170778004547,214,0 +170778004596,214,0 +170778004644,214,0 +170778004693,214,0 +170778004741,214,0 +170778004789,214,0 +170778004837,213,0 +170778004885,213,0 +170778004932,213,0 +170778004981,213,0 +170778005030,213,0 +170778005078,213,0 +170778005126,213,0 +170778005173,213,0 +170778005223,214,0 +170778005271,214,0 +170778005318,214,0 +170778005366,214,0 +170778005414,214,0 +170778005462,214,0 +170778005511,214,0 +170778005559,214,0 +170778005607,214,0 +170778005656,214,0 +170778005704,214,0 +170778005752,213,0 +170778005801,213,0 +170778005849,213,0 +170778005897,213,0 +170778005945,213,0 +170778005993,213,0 +170778006040,213,0 +170778006088,214,0 +170778006136,214,0 +170778006184,214,0 +170778006232,214,0 +170778006280,214,0 +170778006327,214,0 +170778006375,214,0 +170778006423,214,0 +170778006471,214,0 +170778006519,214,0 +170778006567,214,0 +170778006614,214,0 +170778006662,214,0 +170778006710,213,0 +170778006758,213,0 +170778006807,213,0 +170778006855,213,0 +170778006903,214,0 +170778006951,214,0 +170778006999,214,0 +170778007046,214,0 +170778007094,214,0 +170778007142,214,0 +170778007190,214,0 +170778007238,214,0 +170778007286,214,0 +170778007334,214,0 +170778007381,214,0 +170778007429,214,0 +170778007477,214,0 +170778007525,214,0 +170778007573,214,0 +170778007622,213,0 +170778007670,213,0 +170778007718,213,0 +170778007765,213,0 +170778007813,213,0 +170778007861,213,0 +170778007909,214,0 +170778007957,214,0 +170778008005,214,0 +170778008052,214,0 +170778008100,214,0 +170778008149,214,0 +170778008197,214,0 +170778008245,214,0 +170778008293,214,0 +170778008341,214,0 +170778008389,214,0 +170778008436,214,0 +170778008486,214,0 +170778008535,213,0 +170778008583,213,0 +170778008631,213,0 +170778008679,213,0 +170778008727,213,0 +170778008775,213,0 +170778008823,213,0 +170778008873,213,0 +170778008920,213,0 +170778008968,213,0 +170778009018,213,0 +170778009067,214,0 +170778009117,214,0 +170778009165,214,0 +170778009213,214,0 +170778009262,214,0 +170778009310,214,0 +170778009358,214,0 +170778009406,214,0 +170778009453,213,0 +170778009501,213,0 +170778009549,213,0 +170778009597,213,0 +170778009644,213,0 +170778009692,213,0 +170778009740,213,0 +170778009788,213,0 +170778009837,213,0 +170778009885,213,0 +170778009933,214,0 +170778009981,213,0 +170778010029,214,0 +170778010076,214,0 +170778010124,214,0 +170778010172,214,0 +170778010220,214,0 +170778010268,214,0 +170778010316,214,0 +170778010363,214,0 +170778010411,213,0 +170778010459,213,0 +170778010507,213,0 +170778010555,213,0 +170778010603,213,0 +170778010650,213,0 +170778010698,213,0 +170778010746,213,0 +170778010794,213,0 +170778010842,214,0 +170778010890,213,0 +170778010937,214,0 +170778010985,214,0 +170778011033,214,0 +170778011081,214,0 +170778011129,214,0 +170778011177,214,0 +170778011224,214,0 +170778011272,214,0 +170778011320,213,0 +170778011368,213,0 +170778011416,213,0 +170778011464,213,0 +170778011511,213,0 +170778011559,213,0 +170778011607,213,0 +170778011655,213,0 +170778011702,213,0 +170778011750,214,0 +170778011798,214,0 +170778011846,214,0 +170778011894,214,0 +170778011943,214,0 +170778011991,214,0 +170778012039,214,0 +170778012086,214,0 +170778012134,214,0 +170778012182,214,0 +170778012230,213,0 +170778012278,213,0 +170778012326,213,0 +170778012374,213,0 +170778012421,213,0 +170778012469,213,0 +170778012517,213,0 +170778012565,214,0 +170778012613,213,0 +170778012661,213,0 +170778012710,214,0 +170778012758,214,0 +170778012806,214,0 +170778012854,214,0 +170778012903,214,0 +170778012953,214,0 +170778013001,214,0 +170778013049,214,0 +170778013096,215,0 +170778013146,214,0 +170778013194,213,0 +170778013243,213,0 +170778013291,213,0 +170778013339,213,0 +170778013387,213,0 +170778013435,213,0 +170778013483,214,0 +170778013531,214,0 +170778013579,213,0 +170778013628,214,0 +170778013678,214,0 +170778013727,214,0 +170778013777,214,0 +170778013825,214,0 +170778013874,214,0 +170778013922,214,0 +170778013972,214,0 +170778014019,214,0 +170778014069,214,0 +170778014117,213,0 +170778014165,213,0 +170778014213,213,0 +170778014260,213,0 +170778014310,213,0 +170778014359,213,0 +170778014409,213,0 +170778014457,214,0 +170778014505,214,0 +170778014552,214,0 +170778014602,214,0 +170778014650,214,0 +170778014697,214,0 +170778014745,214,0 +170778014793,214,0 +170778014841,214,0 +170778014889,214,0 +170778014936,214,0 +170778014984,214,0 +170778015032,213,0 +170778015080,213,0 +170778015128,213,0 +170778015175,213,0 +170778015223,213,0 +170778015271,213,0 +170778015319,213,0 +170778015367,213,0 +170778015414,213,0 +170778015462,214,0 +170778015510,214,0 +170778015558,214,0 +170778015605,214,0 +170778015653,214,0 +170778015703,214,0 +170778015752,214,0 +170778015800,214,0 +170778015849,214,0 +170778015899,214,0 +170778015947,213,0 +170778015995,213,0 +170778016042,213,0 +170778016090,213,0 +170778016138,213,0 +170778016186,213,0 +170778016234,213,0 +170778016283,213,0 +170778016331,213,0 +170778016379,214,0 +170778016427,213,0 +170778016475,214,0 +170778016523,214,0 +170778016572,214,0 +170778016620,214,0 +170778016668,214,0 +170778016718,214,0 +170778016767,214,0 +170778016815,214,0 +170778016864,214,0 +170778016914,213,0 +170778016963,213,0 +170778017011,213,0 +170778017059,213,0 +170778017109,213,0 +170778017158,213,0 +170778017208,213,0 +170778017257,213,0 +170778017305,213,0 +170778017353,213,0 +170778017402,214,0 +170778017450,214,0 +170778017498,214,0 +170778017546,214,0 +170778017594,214,0 +170778017641,214,0 +170778017691,214,0 +170778017739,214,0 +170778017787,213,0 +170778017835,213,0 +170778017883,213,0 +170778017931,213,0 +170778017978,213,0 +170778018028,213,0 +170778018077,213,0 +170778018127,213,0 +170778018175,213,0 +170778018224,213,0 +170778018272,214,0 +170778018322,214,0 +170778018370,214,0 +170778018418,214,0 +170778018465,214,0 +170778018513,214,0 +170778018563,214,0 +170778018612,214,0 +170778018660,214,0 +170778018708,214,0 +170778018756,213,0 +170778018804,213,0 +170778018851,213,0 +170778018899,213,0 +170778018947,213,0 +170778018995,213,0 +170778019043,213,0 +170778019091,213,0 +170778019138,214,0 +170778019188,213,0 +170778019236,214,0 +170778019285,214,0 +170778019335,214,0 +170778019383,214,0 +170778019431,214,0 +170778019480,214,0 +170778019529,214,0 +170778019577,214,0 +170778019625,214,0 +170778019673,213,0 +170778019721,213,0 +170778019771,213,0 +170778019818,213,0 +170778019868,213,0 +170778019917,213,0 +170778019967,213,0 +170778020015,213,0 +170778020064,213,0 +170778020112,213,0 +170778020162,213,0 +170778020210,214,0 +170778020259,214,0 +170778020307,214,0 +170778020357,214,0 +170778020406,214,0 +170778020454,214,0 +170778020502,214,0 +170778020551,214,0 +170778020599,213,0 +170778020647,213,0 +170778020696,213,0 +170778020744,213,0 +170778020792,213,0 +170778020840,213,0 +170778020888,213,0 +170778020936,214,0 +170778020985,213,0 +170778021033,213,0 +170778021082,214,0 +170778021132,214,0 +170778021181,214,0 +170778021229,214,0 +170778021279,214,0 +170778021328,214,0 +170778021378,214,0 +170778021425,214,0 +170778021473,214,0 +170778021521,213,0 +170778021569,213,0 +170778021617,213,0 +170778021665,213,0 +170778021713,213,0 +170778021761,213,0 +170778021809,213,0 +170778021857,213,0 +170778021905,213,0 +170778021952,213,0 +170778022002,214,0 +170778022050,214,0 +170778022098,214,0 +170778022147,214,0 +170778022195,214,0 +170778022243,214,0 +170778022291,214,0 +170778022339,214,0 +170778022389,214,0 +170778022437,213,0 +170778022486,213,0 +170778022535,213,0 +170778022585,213,0 +170778022633,213,0 +170778022681,213,0 +170778022729,213,0 +170778022778,213,0 +170778022828,213,0 +170778022875,214,0 +170778022925,213,0 +170778022973,214,0 +170778023022,214,0 +170778023072,214,0 +170778023121,214,0 +170778023169,214,0 +170778023217,214,0 +170778023265,214,0 +170778023314,214,0 +170778023362,214,0 +170778023412,213,0 +170778023460,213,0 +170778023509,213,0 +170778023557,213,0 +170778023605,213,0 +170778023652,213,0 +170778023700,213,0 +170778023748,213,0 +170778023796,213,0 +170778023844,213,0 +170778023892,213,0 +170778023940,214,0 +170778023987,214,0 +170778024035,214,0 +170778024083,214,0 +170778024131,214,0 +170778024179,214,0 +170778024227,214,0 +170778024276,214,0 +170778024324,213,0 +170778024372,213,0 +170778024420,213,0 +170778024468,213,0 +170778024516,213,0 +170778024563,213,0 +170778024613,213,0 +170778024662,213,0 +170778024712,213,0 +170778024760,213,0 +170778024807,213,0 +170778024855,213,0 +170778024903,214,0 +170778024951,214,0 +170778024999,214,0 +170778025047,214,0 +170778025095,214,0 +170778025143,214,0 +170778025191,214,0 +170778025239,213,0 +170778025287,213,0 +170778025336,213,0 +170778025386,213,0 +170778025434,213,0 +170778025481,213,0 +170778025531,213,0 +170778025580,213,0 +170778025628,213,0 +170778025676,213,0 +170778025724,213,0 +170778025772,213,0 +170778025822,214,0 +170778025869,214,0 +170778025919,214,0 +170778025967,214,0 +170778026014,214,0 +170778026062,214,0 +170778026110,214,0 +170778026158,213,0 +170778026206,213,0 +170778026256,213,0 +170778026303,213,0 +170778026353,213,0 +170778026401,213,0 +170778026450,213,0 +170778026500,213,0 +170778026547,213,0 +170778026595,214,0 +170778026645,214,0 +170778026693,214,0 +170778026742,214,0 +170778026790,214,0 +170778026838,214,0 +170778026886,214,0 +170778026936,214,0 +170778026984,214,0 +170778027032,214,0 +170778027081,213,0 +170778027130,213,0 +170778027178,213,0 +170778027226,213,0 +170778027274,213,0 +170778027324,213,0 +170778027371,213,0 +170778027419,213,0 +170778027467,213,0 +170778027517,214,0 +170778027566,214,0 +170778027614,214,0 +170778027662,214,0 +170778027710,214,0 +170778027759,214,0 +170778027809,214,0 +170778027858,214,0 +170778027908,214,0 +170778027957,214,0 +170778028005,214,0 +170778028053,213,0 +170778028103,214,0 +170778028151,213,0 +170778028200,214,0 +170778028248,213,0 +170778028296,214,0 +170778028344,213,0 +170778028392,214,0 +170778028440,214,0 +170778028489,214,0 +170778028537,214,0 +170778028585,214,0 +170778028635,214,0 +170778028683,214,0 +170778028730,214,0 +170778028778,214,0 +170778028826,214,0 +170778028876,214,0 +170778028924,214,0 +170778028972,213,0 +170778029020,213,0 +170778029068,213,0 +170778029117,213,0 +170778029165,213,0 +170778029213,213,0 +170778029261,214,0 +170778029309,214,0 +170778029358,214,0 +170778029408,214,0 +170778029456,214,0 +170778029504,214,0 +170778029552,214,0 +170778029600,214,0 +170778029648,214,0 +170778029695,214,0 +170778029743,214,0 +170778029793,214,0 +170778029841,214,0 +170778029889,213,0 +170778029938,213,0 +170778029986,213,0 +170778030035,213,0 +170778030085,213,0 +170778030133,213,0 +170778030181,213,0 +170778030229,214,0 +170778030277,213,0 +170778030326,214,0 +170778030376,214,0 +170778030425,214,0 +170778030475,214,0 +170778030524,214,0 +170778030573,214,0 +170778030621,214,0 +170778030669,214,0 +170778030717,214,0 +170778030765,214,0 +170778030813,213,0 +170778030861,213,0 +170778030909,213,0 +170778030959,213,0 +170778031007,213,0 +170778031055,213,0 +170778031104,213,0 +170778031154,213,0 +170778031201,213,0 +170778031249,213,0 +170778031297,213,0 +170778031347,213,0 +170778031396,213,0 +170778031444,213,0 +170778031492,214,0 +170778031542,214,0 +170778031591,214,0 +170778031639,214,0 +170778031687,214,0 +170778031737,213,0 +170778031786,213,0 +170778031836,213,0 +170778031883,213,0 +170778031931,213,0 +170778031981,213,0 +170778032029,213,0 +170778032077,213,0 +170778032125,213,0 +170778032173,213,0 +170778032221,213,0 +170778032269,214,0 +170778032317,214,0 +170778032366,214,0 +170778032416,214,0 +170778032464,214,0 +170778032513,214,0 +170778032563,214,0 +170778032611,214,0 +170778032658,213,0 +170778032706,213,0 +170778032754,213,0 +170778032804,213,0 +170778032853,213,0 +170778032901,213,0 +170778032951,213,0 +170778033000,213,0 +170778033048,213,0 +170778033096,213,0 +170778033144,214,0 +170778033193,214,0 +170778033241,214,0 +170778033289,214,0 +170778033337,214,0 +170778033385,214,0 +170778033433,214,0 +170778033480,214,0 +170778033528,214,0 +170778033576,214,0 +170778033624,213,0 +170778033672,213,0 +170778033719,213,0 +170778033769,213,0 +170778033817,213,0 +170778033865,213,0 +170778033913,213,0 +170778033960,213,0 +170778034008,213,0 +170778034056,213,0 +170778034104,214,0 +170778034153,214,0 +170778034203,214,0 +170778034252,214,0 +170778034300,214,0 +170778034348,214,0 +170778034396,214,0 +170778034444,214,0 +170778034491,214,0 +170778034541,213,0 +170778034589,213,0 +170778034636,213,0 +170778034684,213,0 +170778034732,213,0 +170778034782,213,0 +170778034830,213,0 +170778034878,213,0 +170778034925,213,0 +170778034973,213,0 +170778035021,213,0 +170778035069,213,0 +170778035117,214,0 +170778035164,214,0 +170778035212,214,0 +170778035260,214,0 +170778035309,214,0 +170778035357,214,0 +170778035405,215,0 +170778035453,213,0 +170778035501,213,0 +170778035549,213,0 +170778035596,213,0 +170778035644,213,0 +170778035692,213,0 +170778035740,213,0 +170778035789,213,0 +170778035837,213,0 +170778035885,213,0 +170778035933,213,0 +170778035981,213,0 +170778036028,214,0 +170778036076,213,0 +170778036124,214,0 +170778036172,213,0 +170778036220,214,0 +170778036268,214,0 +170778036316,214,0 +170778036365,214,0 +170778036413,213,0 +170778036461,213,0 +170778036511,213,0 +170778036559,213,0 +170778036607,213,0 +170778036654,213,0 +170778036704,213,0 +170778036753,213,0 +170778036801,213,0 +170778036849,213,0 +170778036897,213,0 +170778036945,213,0 +170778036993,214,0 +170778037041,214,0 +170778037089,214,0 +170778037138,214,0 +170778037186,214,0 +170778037234,214,0 +170778037283,214,0 +170778037331,213,0 +170778037381,213,0 +170778037428,213,0 +170778037476,213,0 +170778037526,213,0 +170778037574,213,0 +170778037621,213,0 +170778037669,213,0 +170778037717,213,0 +170778037765,213,0 +170778037813,213,0 +170778037861,213,0 +170778037909,213,0 +170778037958,213,0 +170778038008,214,0 +170778038055,214,0 +170778038103,214,0 +170778038151,214,0 +170778038201,214,0 +170778038250,213,0 +170778038298,213,0 +170778038346,213,0 +170778038394,213,0 +170778038441,213,0 +170778038489,213,0 +170778038539,213,0 +170778038587,213,0 +170778038635,213,0 +170778038684,214,0 +170778038732,214,0 +170778038780,214,0 +170778038828,214,0 +170778038876,214,0 +170778038925,214,0 +170778038973,214,0 +170778039021,214,0 +170778039071,214,0 +170778039119,214,0 +170778039168,213,0 +170778039216,213,0 +170778039265,213,0 +170778039315,213,0 +170778039363,213,0 +170778039411,213,0 +170778039459,213,0 +170778039507,213,0 +170778039556,214,0 +170778039604,214,0 +170778039652,214,0 +170778039700,214,0 +170778039748,214,0 +170778039796,214,0 +170778039844,214,0 +170778039893,214,0 +170778039941,214,0 +170778039989,214,0 +170778040037,214,0 +170778040086,213,0 +170778040134,213,0 +170778040182,213,0 +170778040230,213,0 +170778040278,213,0 +170778040326,213,0 +170778040374,214,0 +170778040422,214,0 +170778040470,214,0 +170778040517,214,0 +170778040567,214,0 +170778040615,214,0 +170778040664,214,0 +170778040712,214,0 +170778040760,214,0 +170778040808,214,0 +170778040858,214,0 +170778040907,214,0 +170778040955,214,0 +170778041005,213,0 +170778041052,213,0 +170778041100,213,0 +170778041150,213,0 +170778041198,213,0 +170778041246,213,0 +170778041294,213,0 +170778041342,213,0 +170778041391,214,0 +170778041439,214,0 +170778041487,214,0 +170778041535,214,0 +170778041583,214,0 +170778041631,214,0 +170778041679,214,0 +170778041726,214,0 +170778041774,214,0 +170778041822,214,0 +170778041870,214,0 +170778041918,214,0 +170778041968,213,0 +170778042016,213,0 +170778042064,213,0 +170778042111,213,0 +170778042159,213,0 +170778042209,213,0 +170778042258,213,0 +170778042308,214,0 +170778042357,214,0 +170778042405,214,0 +170778042453,214,0 +170778042501,214,0 +170778042549,214,0 +170778042597,214,0 +170778042645,214,0 +170778042693,214,0 +170778042741,214,0 +170778042789,214,0 +170778042836,214,0 +170778042884,213,0 +170778042932,213,0 +170778042981,213,0 +170778043029,213,0 +170778043077,213,0 +170778043125,213,0 +170778043173,214,0 +170778043221,214,0 +170778043268,213,0 +170778043316,214,0 +170778043364,214,0 +170778043412,214,0 +170778043460,214,0 +170778043508,214,0 +170778043555,214,0 +170778043603,214,0 +170778043651,214,0 +170778043699,214,0 +170778043747,214,0 +170778043796,213,0 +170778043844,213,0 +170778043892,213,0 +170778043940,213,0 +170778043987,213,0 +170778044035,213,0 +170778044083,213,0 +170778044131,213,0 +170778044179,213,0 +170778044228,213,0 +170778044278,214,0 +170778044326,214,0 +170778044374,214,0 +170778044421,214,0 +170778044469,214,0 +170778044517,214,0 +170778044565,214,0 +170778044615,214,0 +170778044662,214,0 +170778044710,214,0 +170778044758,213,0 +170778044806,213,0 +170778044854,213,0 +170778044903,213,0 +170778044952,213,0 +170778045000,213,0 +170778045048,213,0 +170778045096,213,0 +170778045144,213,0 +170778045191,214,0 +170778045239,213,0 +170778045287,214,0 +170778045335,214,0 +170778045383,214,0 +170778045431,214,0 +170778045479,214,0 +170778045526,214,0 +170778045574,214,0 +170778045622,214,0 +170778045670,213,0 +170778045718,213,0 +170778045766,213,0 +170778045815,213,0 +170778045863,213,0 +170778045911,213,0 +170778045958,213,0 +170778046006,213,0 +170778046054,213,0 +170778046102,214,0 +170778046150,214,0 +170778046198,214,0 +170778046247,214,0 +170778046295,214,0 +170778046343,214,0 +170778046391,214,0 +170778046439,214,0 +170778046487,214,0 +170778046535,214,0 +170778046583,213,0 +170778046631,213,0 +170778046679,213,0 +170778046726,213,0 +170778046776,213,0 +170778046825,213,0 +170778046873,213,0 +170778046921,213,0 +170778046969,213,0 +170778047019,213,0 +170778047068,214,0 +170778047118,214,0 +170778047166,213,0 +170778047213,214,0 +170778047261,214,0 +170778047309,214,0 +170778047359,214,0 +170778047407,214,0 +170778047455,214,0 +170778047503,213,0 +170778047550,213,0 +170778047598,213,0 +170778047646,213,0 +170778047694,213,0 +170778047742,213,0 +170778047790,213,0 +170778047838,213,0 +170778047886,213,0 +170778047935,213,0 +170778047983,214,0 +170778048033,214,0 +170778048081,214,0 +170778048128,214,0 +170778048176,214,0 +170778048224,214,0 +170778048272,214,0 +170778048320,214,0 +170778048368,214,0 +170778048416,214,0 +170778048465,213,0 +170778048513,213,0 +170778048561,213,0 +170778048611,213,0 +170778048659,213,0 +170778048707,213,0 +170778048754,213,0 +170778048802,213,0 +170778048852,213,0 +170778048901,213,0 +170778048951,214,0 +170778048999,213,0 +170778049047,214,0 +170778049096,214,0 +170778049144,214,0 +170778049192,214,0 +170778049240,214,0 +170778049289,214,0 +170778049337,214,0 +170778049385,213,0 +170778049433,213,0 +170778049481,213,0 +170778049530,213,0 +170778049578,213,0 +170778049628,213,0 +170778049676,213,0 +170778049724,213,0 +170778049771,214,0 +170778049819,214,0 +170778049867,214,0 +170778049915,214,0 +170778049963,214,0 +170778050010,214,0 +170778050058,214,0 +170778050106,214,0 +170778050154,214,0 +170778050202,214,0 +170778050249,214,0 +170778050297,213,0 +170778050347,213,0 +170778050395,213,0 +170778050443,213,0 +170778050491,213,0 +170778050539,213,0 +170778050587,213,0 +170778050635,213,0 +170778050684,213,0 +170778050732,214,0 +170778050782,214,0 +170778050829,214,0 +170778050877,214,0 +170778050927,214,0 +170778050975,214,0 +170778051023,214,0 +170778051071,214,0 +170778051119,214,0 +170778051167,214,0 +170778051215,213,0 +170778051262,212,0 +170778051310,213,0 +170778051358,213,0 +170778051406,213,0 +170778051454,213,0 +170778051504,213,0 +170778051551,213,0 +170778051599,213,0 +170778051647,213,0 +170778051695,214,0 +170778051743,214,0 +170778051791,214,0 +170778051839,214,0 +170778051887,214,0 +170778051936,214,0 +170778051984,214,0 +170778052032,214,0 +170778052082,214,0 +170778052130,214,0 +170778052179,213,0 +170778052228,213,0 +170778052276,213,0 +170778052324,213,0 +170778052372,213,0 +170778052420,213,0 +170778052470,213,0 +170778052518,213,0 +170778052565,213,0 +170778052615,213,0 +170778052663,213,0 +170778052711,214,0 +170778052759,214,0 +170778052807,214,0 +170778052856,214,0 +170778052904,214,0 +170778052954,214,0 +170778053003,214,0 +170778053051,214,0 +170778053101,213,0 +170778053150,213,0 +170778053198,213,0 +170778053247,213,0 +170778053297,213,0 +170778053345,213,0 +170778053393,213,0 +170778053440,213,0 +170778053490,213,0 +170778053538,213,0 +170778053586,213,0 +170778053634,214,0 +170778053683,214,0 +170778053731,214,0 +170778053779,214,0 +170778053828,214,0 +170778053876,214,0 +170778053924,214,0 +170778053972,214,0 +170778054020,213,0 +170778054069,213,0 +170778054117,213,0 +170778054167,213,0 +170778054215,213,0 +170778054264,213,0 +170778054314,213,0 +170778054361,213,0 +170778054409,213,0 +170778054457,213,0 +170778054505,213,0 +170778054553,213,0 +170778054601,213,0 +170778054649,214,0 +170778054698,214,0 +170778054746,214,0 +170778054795,214,0 +170778054845,214,0 +170778054892,214,0 +170778054940,213,0 +170778054988,213,0 +170778055036,213,0 +170778055086,213,0 +170778055133,213,0 +170778055183,213,0 +170778055233,213,0 +170778055280,213,0 +170778055328,213,0 +170778055378,213,0 +170778055426,213,0 +170778055475,213,0 +170778055525,214,0 +170778055573,213,0 +170778055621,214,0 +170778055668,214,0 +170778055716,213,0 +170778055764,214,0 +170778055814,214,0 +170778055862,213,0 +170778055910,213,0 +170778055958,213,0 +170778056007,213,0 +170778056056,213,0 +170778056106,213,0 +170778056154,213,0 +170778056202,213,0 +170778056251,213,0 +170778056299,213,0 +170778056349,214,0 +170778056398,214,0 +170778056446,214,0 +170778056496,214,0 +170778056544,214,0 +170778056593,214,0 +170778056641,214,0 +170778056689,214,0 +170778056739,214,0 +170778056788,213,0 +170778056836,213,0 +170778056885,213,0 +170778056933,213,0 +170778056983,213,0 +170778057031,213,0 +170778057079,213,0 +170778057127,213,0 +170778057175,213,0 +170778057224,213,0 +170778057274,213,0 +170778057322,214,0 +170778057371,214,0 +170778057421,214,0 +170778057469,214,0 +170778057517,214,0 +170778057565,214,0 +170778057613,214,0 +170778057661,214,0 +170778057708,213,0 +170778057756,213,0 +170778057806,213,0 +170778057854,213,0 +170778057902,213,0 +170778057951,213,0 +170778057999,213,0 +170778058047,213,0 +170778058097,213,0 +170778058145,213,0 +170778058193,213,0 +170778058242,213,0 +170778058290,213,0 +170778058338,213,0 +170778058386,213,0 +170778058435,214,0 +170778058483,214,0 +170778058531,214,0 +170778058579,214,0 +170778058627,214,0 +170778058675,214,0 +170778058723,214,0 +170778058771,214,0 +170778058820,214,0 +170778058868,214,0 +170778058916,214,0 +170778058964,214,0 +170778059012,214,0 +170778059060,214,0 +170778059108,213,0 +170778059156,213,0 +170778059204,213,0 +170778059252,213,0 +170778059301,213,0 +170778059349,213,0 +170778059397,213,0 +170778059445,213,0 +170778059493,213,0 +170778059541,213,0 +170778059589,213,0 +170778059636,214,0 +170778059684,214,0 +170778059732,214,0 +170778059780,214,0 +170778059828,214,0 +170778059877,214,0 +170778059925,214,0 +170778059973,214,0 +170778060021,213,0 +170778060071,213,0 +170778060120,213,0 +170778060170,213,0 +170778060217,213,0 +170778060267,213,0 +170778060315,213,0 +170778060363,213,0 +170778060411,213,0 +170778060459,213,0 +170778060508,213,0 +170778060556,214,0 +170778060605,214,0 +170778060653,214,0 +170778060701,214,0 +170778060749,214,0 +170778060797,214,0 +170778060845,214,0 +170778060893,214,0 +170778060940,214,0 +170778060988,213,0 +170778061036,213,0 +170778061084,213,0 +170778061132,213,0 +170778061180,213,0 +170778061229,213,0 +170778061279,213,0 +170778061327,213,0 +170778061376,213,0 +170778061426,214,0 +170778061474,214,0 +170778061522,214,0 +170778061571,214,0 +170778061619,214,0 +170778061667,214,0 +170778061715,214,0 +170778061763,214,0 +170778061811,214,0 +170778061859,214,0 +170778061907,213,0 +170778061954,213,0 +170778062002,213,0 +170778062050,213,0 +170778062098,213,0 +170778062148,213,0 +170778062196,213,0 +170778062245,213,0 +170778062293,213,0 +170778062341,213,0 +170778062390,213,0 +170778062438,214,0 +170778062486,213,0 +170778062534,214,0 +170778062584,214,0 +170778062633,214,0 +170778062681,214,0 +170778062729,214,0 +170778062778,214,0 +170778062828,213,0 +170778062876,213,0 +170778062924,213,0 +170778062972,213,0 +170778063020,213,0 +170778063067,213,0 +170778063117,213,0 +170778063165,213,0 +170778063214,213,0 +170778063262,213,0 +170778063312,214,0 +170778063360,214,0 +170778063409,214,0 +170778063457,214,0 +170778063507,214,0 +170778063554,214,0 +170778063602,214,0 +170778063650,214,0 +170778063698,214,0 +170778063748,213,0 +170778063797,213,0 +170778063847,213,0 +170778063895,213,0 +170778063943,213,0 +170778063992,213,0 +170778064040,213,0 +170778064088,213,0 +170778064136,213,0 +170778064184,213,0 +170778064232,213,0 +170778064280,214,0 +170778064328,214,0 +170778064376,214,0 +170778064425,214,0 +170778064473,214,0 +170778064521,214,0 +170778064569,214,0 +170778064617,214,0 +170778064665,213,0 +170778064713,213,0 +170778064761,213,0 +170778064811,213,0 +170778064858,213,0 +170778064906,213,0 +170778064954,213,0 +170778065004,213,0 +170778065052,213,0 +170778065100,213,0 +170778065148,213,0 +170778065195,213,0 +170778065245,214,0 +170778065294,214,0 +170778065344,214,0 +170778065392,214,0 +170778065440,214,0 +170778065489,214,0 +170778065537,214,0 +170778065585,214,0 +170778065633,213,0 +170778065681,213,0 +170778065729,213,0 +170778065777,213,0 +170778065825,213,0 +170778065874,213,0 +170778065922,213,0 +170778065972,213,0 +170778066019,213,0 +170778066067,213,0 +170778066115,213,0 +170778066165,213,0 +170778066214,213,0 +170778066262,214,0 +170778066310,214,0 +170778066358,214,0 +170778066407,214,0 +170778066457,214,0 +170778066505,214,0 +170778066554,213,0 +170778066602,213,0 +170778066652,213,0 +170778066700,213,0 +170778066747,213,0 +170778066797,213,0 +170778066845,213,0 +170778066894,213,0 +170778066942,213,0 +170778066990,213,0 +170778067038,213,0 +170778067086,213,0 +170778067134,214,0 +170778067183,214,0 +170778067231,214,0 +170778067279,214,0 +170778067327,214,0 +170778067375,214,0 +170778067423,214,0 +170778067471,213,0 +170778067519,213,0 +170778067567,213,0 +170778067615,213,0 +170778067663,213,0 +170778067711,213,0 +170778067759,213,0 +170778067807,213,0 +170778067855,213,0 +170778067903,213,0 +170778067952,213,0 +170778068001,213,0 +170778068049,213,0 +170778068097,213,0 +170778068145,214,0 +170778068193,214,0 +170778068242,214,0 +170778068290,214,0 +170778068338,214,0 +170778068386,213,0 +170778068434,213,0 +170778068482,213,0 +170778068531,213,0 +170778068579,213,0 +170778068629,213,0 +170778068678,213,0 +170778068727,213,0 +170778068777,213,0 +170778068825,213,0 +170778068873,213,0 +170778068921,213,0 +170778068969,214,0 +170778069018,214,0 +170778069067,214,0 +170778069115,214,0 +170778069163,214,0 +170778069211,214,0 +170778069259,214,0 +170778069307,213,0 +170778069355,213,0 +170778069404,213,0 +170778069454,213,0 +170778069502,213,0 +170778069549,213,0 +170778069599,213,0 +170778069647,213,0 +170778069696,214,0 +170778069744,213,0 +170778069794,214,0 +170778069842,214,0 +170778069890,214,0 +170778069939,214,0 +170778069989,214,0 +170778070037,214,0 +170778070085,214,0 +170778070133,214,0 +170778070180,214,0 +170778070228,214,0 +170778070276,213,0 +170778070324,213,0 +170778070372,213,0 +170778070422,213,0 +170778070470,213,0 +170778070518,214,0 +170778070567,214,0 +170778070615,214,0 +170778070663,214,0 +170778070711,214,0 +170778070759,214,0 +170778070807,214,0 +170778070855,214,0 +170778070903,214,0 +170778070952,214,0 +170778071000,214,0 +170778071048,214,0 +170778071096,214,0 +170778071144,214,0 +170778071192,213,0 +170778071241,213,0 +170778071291,214,0 +170778071340,214,0 +170778071388,214,0 +170778071436,214,0 +170778071484,214,0 +170778071532,214,0 +170778071581,214,0 +170778071631,214,0 +170778071680,214,0 +170778071728,214,0 +170778071776,214,0 +170778071824,214,0 +170778071874,214,0 +170778071921,214,0 +170778071969,214,0 +170778072017,214,0 +170778072065,214,0 +170778072114,214,0 +170778072162,213,0 +170778072210,214,0 +170778072260,214,0 +170778072308,214,0 +170778072356,214,0 +170778072404,214,0 +170778072453,214,0 +170778072501,214,0 +170778072550,214,0 +170778072598,214,0 +170778072646,214,0 +170778072694,214,0 +170778072742,214,0 +170778072790,215,0 +170778072838,214,0 +170778072886,214,0 +170778072934,214,0 +170778072981,214,0 +170778073029,213,0 +170778073077,214,0 +170778073127,213,0 +170778073174,214,0 +170778073222,214,0 +170778073270,214,0 +170778073319,214,0 +170778073367,214,0 +170778073417,214,0 +170778073466,214,0 +170778073514,214,0 +170778073564,214,0 +170778073613,214,0 +170778073661,214,0 +170778073709,215,0 +170778073758,214,0 +170778073806,214,0 +170778073854,214,0 +170778073902,214,0 +170778073950,213,0 +170778073998,213,0 +170778074046,213,0 +170778074094,213,0 +170778074142,213,0 +170778074191,213,0 +170778074241,213,0 +170778074289,213,0 +170778074336,213,0 +170778074386,214,0 +170778074435,214,0 +170778074485,214,0 +170778074534,214,0 +170778074584,214,0 +170778074631,214,0 +170778074679,214,0 +170778074727,214,0 +170778074775,214,0 +170778074823,214,0 +170778074873,213,0 +170778074921,213,0 +170778074970,213,0 +170778075018,213,0 +170778075066,213,0 +170778075114,213,0 +170778075162,213,0 +170778075209,213,0 +170778075257,213,0 +170778075305,213,0 +170778075354,213,0 +170778075402,214,0 +170778075450,214,0 +170778075498,214,0 +170778075546,214,0 +170778075594,214,0 +170778075642,214,0 +170778075690,214,0 +170778075737,214,0 +170778075785,213,0 +170778075833,213,0 +170778075881,213,0 +170778075929,213,0 +170778075977,213,0 +170778076024,213,0 +170778076072,213,0 +170778076122,213,0 +170778076170,213,0 +170778076219,213,0 +170778076267,213,0 +170778076317,214,0 +170778076364,214,0 +170778076412,214,0 +170778076462,214,0 +170778076510,214,0 +170778076559,214,0 +170778076607,214,0 +170778076656,214,0 +170778076704,214,0 +170778076754,213,0 +170778076803,213,0 +170778076851,213,0 +170778076901,213,0 +170778076949,213,0 +170778076998,213,0 +170778077046,213,0 +170778077094,213,0 +170778077143,213,0 +170778077191,213,0 +170778077239,213,0 +170778077289,213,0 +170778077338,214,0 +170778077386,214,0 +170778077436,214,0 +170778077483,214,0 +170778077531,214,0 +170778077579,214,0 +170778077627,214,0 +170778077675,213,0 +170778077723,213,0 +170778077771,213,0 +170778077819,212,0 +170778077868,213,0 +170778077916,213,0 +170778077966,213,0 +170778078015,213,0 +170778078063,213,0 +170778078112,213,0 +170778078160,213,0 +170778078208,213,0 +170778078256,213,0 +170778078304,213,0 +170778078352,214,0 +170778078400,214,0 +170778078448,214,0 +170778078496,214,0 +170778078543,214,0 +170778078591,213,0 +170778078641,213,0 +170778078689,213,0 +170778078738,213,0 +170778078786,213,0 +170778078834,213,0 +170778078882,213,0 +170778078930,213,0 +170778078979,214,0 +170778079027,213,0 +170778079075,213,0 +170778079123,214,0 +170778079171,214,0 +170778079219,214,0 +170778079267,214,0 +170778079316,214,0 +170778079364,214,0 +170778079412,214,0 +170778079461,214,0 +170778079509,213,0 +170778079557,213,0 +170778079605,213,0 +170778079653,213,0 +170778079701,213,0 +170778079749,213,0 +170778079797,213,0 +170778079845,213,0 +170778079892,213,0 +170778079940,213,0 +170778079988,213,0 +170778080036,214,0 +170778080084,214,0 +170778080132,214,0 +170778080179,214,0 +170778080227,214,0 +170778080277,214,0 +170778080326,214,0 +170778080374,214,0 +170778080422,213,0 +170778080470,213,0 +170778080518,213,0 +170778080567,213,0 +170778080615,213,0 +170778080664,213,0 +170778080712,213,0 +170778080760,213,0 +170778080809,213,0 +170778080857,213,0 +170778080905,213,0 +170778080953,214,0 +170778081001,214,0 +170778081048,214,0 +170778081096,214,0 +170778081144,214,0 +170778081193,214,0 +170778081241,214,0 +170778081289,214,0 +170778081337,214,0 +170778081385,213,0 +170778081433,213,0 +170778081481,213,0 +170778081528,213,0 +170778081578,213,0 +170778081626,213,0 +170778081675,213,0 +170778081723,213,0 +170778081771,213,0 +170778081819,213,0 +170778081869,213,0 +170778081917,213,0 +170778081964,214,0 +170778082012,214,0 +170778082060,213,0 +170778082108,214,0 +170778082156,214,0 +170778082206,214,0 +170778082254,214,0 +170778082303,213,0 +170778082353,213,0 +170778082400,213,0 +170778082448,213,0 +170778082498,213,0 +170778082547,213,0 +170778082597,213,0 +170778082645,213,0 +170778082693,213,0 +170778082742,213,0 +170778082790,213,0 +170778082838,213,0 +170778082886,213,0 +170778082934,213,0 +170778082982,213,0 +170778083030,213,0 +170778083077,213,0 +170778083125,214,0 +170778083173,214,0 +170778083221,213,0 +170778083271,213,0 +170778083320,213,0 +170778083368,213,0 +170778083416,213,0 +170778083464,213,0 +170778083511,213,0 +170778083559,213,0 +170778083607,213,0 +170778083655,213,0 +170778083703,213,0 +170778083752,213,0 +170778083801,214,0 +170778083849,214,0 +170778083897,214,0 +170778083945,214,0 +170778083993,214,0 +170778084041,214,0 +170778084089,214,0 +170778084136,213,0 +170778084186,213,0 +170778084236,213,0 +170778084283,213,0 +170778084331,213,0 +170778084379,213,0 +170778084427,213,0 +170778084477,213,0 +170778084525,213,0 +170778084573,213,0 +170778084621,213,0 +170778084670,214,0 +170778084718,213,0 +170778084766,214,0 +170778084814,214,0 +170778084862,214,0 +170778084909,214,0 +170778084957,214,0 +170778085005,214,0 +170778085053,213,0 +170778085101,213,0 +170778085149,213,0 +170778085197,213,0 +170778085245,213,0 +170778085293,213,0 +170778085341,213,0 +170778085388,213,0 +170778085438,213,0 +170778085486,213,0 +170778085535,213,0 +170778085585,213,0 +170778085634,214,0 +170778085682,214,0 +170778085732,214,0 +170778085779,214,0 +170778085827,214,0 +170778085875,214,0 +170778085923,214,0 +170778085971,214,0 +170778086019,213,0 +170778086067,213,0 +170778086115,213,0 +170778086162,213,0 +170778086210,213,0 +170778086258,213,0 +170778086306,213,0 +170778086354,213,0 +170778086402,214,0 +170778086449,214,0 +170778086497,214,0 +170778086545,214,0 +170778086593,214,0 +170778086641,214,0 +170778086689,214,0 +170778086737,214,0 +170778086785,214,0 +170778086833,214,0 +170778086882,214,0 +170778086930,213,0 +170778086978,213,0 +170778087027,213,0 +170778087075,213,0 +170778087125,213,0 +170778087173,213,0 +170778087222,213,0 +170778087272,213,0 +170778087321,213,0 +170778087371,213,0 +170778087420,214,0 +170778087468,214,0 +170778087516,214,0 +170778087564,214,0 +170778087614,214,0 +170778087661,214,0 +170778087711,214,0 +170778087759,214,0 +170778087808,214,0 +170778087856,213,0 +170778087906,213,0 +170778087953,213,0 +170778088001,213,0 +170778088049,213,0 +170778088097,213,0 +170778088145,213,0 +170778088193,213,0 +170778088241,213,0 +170778088289,213,0 +170778088337,214,0 +170778088385,214,0 +170778088433,214,0 +170778088481,214,0 +170778088529,214,0 +170778088578,214,0 +170778088628,214,0 +170778088676,214,0 +170778088724,214,0 +170778088772,213,0 +170778088820,213,0 +170778088869,213,0 +170778088917,213,0 +170778088965,213,0 +170778089014,213,0 +170778089062,213,0 +170778089110,213,0 +170778089158,213,0 +170778089206,213,0 +170778089255,213,0 +170778089303,214,0 +170778089351,214,0 +170778089399,214,0 +170778089448,214,0 +170778089496,214,0 +170778089544,213,0 +170778089592,214,0 +170778089640,214,0 +170778089688,213,0 +170778089737,213,0 +170778089785,213,0 +170778089833,213,0 +170778089881,213,0 +170778089929,213,0 +170778089978,213,0 +170778090026,213,0 +170778090076,213,0 +170778090124,213,0 +170778090173,213,0 +170778090221,213,0 +170778090269,213,0 +170778090317,214,0 +170778090366,214,0 +170778090414,214,0 +170778090462,214,0 +170778090510,214,0 +170778090558,214,0 +170778090606,214,0 +170778090653,213,0 +170778090701,213,0 +170778090749,213,0 +170778090797,213,0 +170778090846,213,0 +170778090894,213,0 +170778090942,213,0 +170778090990,213,0 +170778091038,213,0 +170778091086,213,0 +170778091134,213,0 +170778091183,213,0 +170778091231,214,0 +170778091279,214,0 +170778091327,214,0 +170778091375,214,0 +170778091424,214,0 +170778091472,214,0 +170778091520,214,0 +170778091569,213,0 +170778091619,213,0 +170778091667,213,0 +170778091716,213,0 +170778091764,213,0 +170778091812,213,0 +170778091860,213,0 +170778091908,214,0 +170778091955,213,0 +170778092003,214,0 +170778092051,214,0 +170778092101,214,0 +170778092149,214,0 +170778092197,214,0 +170778092245,214,0 +170778092292,214,0 +170778092340,214,0 +170778092388,214,0 +170778092438,214,0 +170778092487,213,0 +170778092535,213,0 +170778092583,213,0 +170778092631,213,0 +170778092680,213,0 +170778092728,213,0 +170778092776,214,0 +170778092826,214,0 +170778092874,214,0 +170778092923,214,0 +170778092971,214,0 +170778093019,214,0 +170778093068,214,0 +170778093118,214,0 +170778093166,214,0 +170778093215,214,0 +170778093263,214,0 +170778093313,214,0 +170778093361,214,0 +170778093409,213,0 +170778093458,213,0 +170778093507,214,0 +170778093555,214,0 +170778093603,214,0 +170778093651,214,0 +170778093699,214,0 +170778093747,214,0 +170778093795,214,0 +170778093845,214,0 +170778093893,214,0 +170778093940,214,0 +170778093988,214,0 +170778094036,214,0 +170778094084,214,0 +170778094133,214,0 +170778094181,214,0 +170778094231,214,0 +170778094279,214,0 +170778094327,213,0 +170778094374,213,0 +170778094422,214,0 +170778094470,214,0 +170778094520,213,0 +170778094569,214,0 +170778094617,214,0 +170778094665,214,0 +170778094713,214,0 +170778094761,214,0 +170778094811,214,0 +170778094860,214,0 +170778094908,215,0 +170778094958,214,0 +170778095005,214,0 +170778095053,214,0 +170778095101,214,0 +170778095149,213,0 +170778095199,213,0 +170778095247,213,0 +170778095296,213,0 +170778095344,213,0 +170778095392,213,0 +170778095441,214,0 +170778095489,214,0 +170778095537,214,0 +170778095585,214,0 +170778095633,214,0 +170778095681,214,0 +170778095730,214,0 +170778095778,214,0 +170778095826,214,0 +170778095874,214,0 +170778095922,214,0 +170778095971,214,0 +170778096019,214,0 +170778096067,213,0 +170778096115,213,0 +170778096165,213,0 +170778096213,213,0 +170778096261,213,0 +170778096309,213,0 +170778096357,213,0 +170778096404,213,0 +170778096452,213,0 +170778096500,213,0 +170778096549,214,0 +170778096597,214,0 +170778096645,214,0 +170778096693,214,0 +170778096741,214,0 +170778096789,214,0 +170778096838,214,0 +170778096888,214,0 +170778096936,213,0 +170778096984,213,0 +170778097032,213,0 +170778097080,213,0 +170778097129,213,0 +170778097179,213,0 +170778097227,213,0 +170778097275,213,0 +170778097323,214,0 +170778097371,213,0 +170778097420,214,0 +170778097470,213,0 +170778097518,214,0 +170778097565,214,0 +170778097613,214,0 +170778097661,214,0 +170778097709,214,0 +170778097757,214,0 +170778097805,213,0 +170778097852,213,0 +170778097900,213,0 +170778097950,213,0 +170778097999,213,0 +170778098049,213,0 +170778098097,213,0 +170778098145,213,0 +170778098192,213,0 +170778098240,213,0 +170778098288,213,0 +170778098338,214,0 +170778098386,214,0 +170778098434,214,0 +170778098483,214,0 +170778098531,214,0 +170778098579,214,0 +170778098627,214,0 +170778098676,214,0 +170778098724,213,0 +170778098772,213,0 +170778098820,213,0 +170778098870,213,0 +170778098918,213,0 +170778098966,213,0 +170778099014,213,0 +170778099063,213,0 +170778099113,213,0 +170778099160,213,0 +170778099208,213,0 +170778099258,214,0 +170778099306,214,0 +170778099354,214,0 +170778099403,214,0 +170778099452,214,0 +170778099502,214,0 +170778099550,214,0 +170778099598,213,0 +170778099647,213,0 +170778099697,213,0 +170778099745,213,0 +170778099794,213,0 +170778099842,213,0 +170778099890,213,0 +170778099938,213,0 +170778099987,213,0 +170778100037,213,0 +170778100086,214,0 +170778100136,214,0 +170778100184,214,0 +170778100231,214,0 +170778100281,214,0 +170778100329,214,0 +170778100377,214,0 +170778100424,214,0 +170778100474,213,0 +170778100522,213,0 +170778100571,213,0 +170778100621,213,0 +170778100668,213,0 +170778100716,213,0 +170778100764,213,0 +170778100812,214,0 +170778100860,213,0 +170778100908,214,0 +170778100956,214,0 +170778101005,214,0 +170778101055,214,0 +170778101104,214,0 +170778101152,214,0 +170778101202,214,0 +170778101251,214,0 +170778101299,214,0 +170778101347,213,0 +170778101395,213,0 +170778101443,213,0 +170778101491,213,0 +170778101541,213,0 +170778101588,214,0 +170778101636,214,0 +170778101684,213,0 +170778101732,214,0 +170778101780,214,0 +170778101828,214,0 +170778101876,214,0 +170778101924,214,0 +170778101973,214,0 +170778102021,214,0 +170778102069,214,0 +170778102117,214,0 +170778102165,214,0 +170778102214,214,0 +170778102262,213,0 +170778102310,213,0 +170778102358,213,0 +170778102406,213,0 +170778102454,213,0 +170778102503,214,0 +170778102551,213,0 +170778102601,214,0 +170778102649,214,0 +170778102697,214,0 +170778102745,214,0 +170778102793,214,0 +170778102842,214,0 +170778102890,214,0 +170778102940,214,0 +170778102988,214,0 +170778103036,214,0 +170778103083,214,0 +170778103133,213,0 +170778103182,213,0 +170778103230,213,0 +170778103280,213,0 +170778103328,213,0 +170778103377,213,0 +170778103425,213,0 +170778103475,213,0 +170778103522,213,0 +170778103572,214,0 +170778103620,214,0 +170778103669,214,0 +170778103717,214,0 +170778103765,214,0 +170778103815,214,0 +170778103863,214,0 +170778103912,214,0 +170778103962,214,0 +170778104011,213,0 +170778104061,213,0 +170778104109,213,0 +170778104157,213,0 +170778104206,213,0 +170778104254,213,0 +170778104302,213,0 +170778104350,213,0 +170778104398,213,0 +170778104446,214,0 +170778104494,214,0 +170778104542,214,0 +170778104591,214,0 +170778104639,214,0 +170778104689,214,0 +170778104736,214,0 +170778104784,214,0 +170778104832,214,0 +170778104880,213,0 +170778104928,213,0 +170778104977,213,0 +170778105025,213,0 +170778105073,213,0 +170778105121,213,0 +170778105169,213,0 +170778105217,213,0 +170778105265,213,0 +170778105314,213,0 +170778105363,213,0 +170778105411,213,0 +170778105459,213,0 +170778105507,214,0 +170778105555,214,0 +170778105603,214,0 +170778105651,214,0 +170778105699,214,0 +170778105748,214,0 +170778105796,213,0 +170778105844,213,0 +170778105892,213,0 +170778105940,213,0 +170778105987,213,0 +170778106035,213,0 +170778106083,213,0 +170778106131,213,0 +170778106179,213,0 +170778106227,213,0 +170778106275,213,0 +170778106322,213,0 +170778106370,213,0 +170778106420,213,0 +170778106469,214,0 +170778106517,213,0 +170778106565,214,0 +170778106615,214,0 +170778106663,213,0 +170778106712,213,0 +170778106760,213,0 +170778106808,213,0 +170778106857,213,0 +170778106905,213,0 +170778106953,213,0 +170778107001,213,0 +170778107049,213,0 +170778107097,213,0 +170778107147,213,0 +170778107195,214,0 +170778107242,214,0 +170778107290,214,0 +170778107338,214,0 +170778107388,214,0 +170778107437,214,0 +170778107485,214,0 +170778107533,214,0 +170778107581,213,0 +170778107629,213,0 +170778107677,213,0 +170778107727,213,0 +170778107776,213,0 +170778107826,213,0 +170778107874,213,0 +170778107923,213,0 +170778107973,213,0 +170778108022,213,0 +170778108070,213,0 +170778108119,213,0 +170778108167,214,0 +170778108215,214,0 +170778108265,214,0 +170778108313,214,0 +170778108361,214,0 +170778108409,214,0 +170778108457,213,0 +170778108505,213,0 +170778108552,212,0 +170778108602,213,0 +170778108650,213,0 +170778108698,213,0 +170778108746,213,0 +170778108794,213,0 +170778108843,213,0 +170778108891,213,0 +170778108939,213,0 +170778108987,213,0 +170778109035,213,0 +170778109083,213,0 +170778109131,214,0 +170778109179,214,0 +170778109227,214,0 +170778109276,214,0 +170778109324,213,0 +170778109374,213,0 +170778109421,213,0 +170778109471,213,0 +170778109519,213,0 +170778109567,213,0 +170778109615,213,0 +170778109664,213,0 +170778109714,213,0 +170778109762,213,0 +170778109809,213,0 +170778109857,214,0 +170778109905,213,0 +170778109953,214,0 +170778110003,214,0 +170778110051,214,0 +170778110100,214,0 +170778110148,214,0 +170778110198,214,0 +170778110246,213,0 +170778110295,213,0 +170778110343,213,0 +170778110391,213,0 +170778110439,213,0 +170778110487,213,0 +170778110535,213,0 +170778110584,213,0 +170778110634,213,0 +170778110682,213,0 +170778110730,213,0 +170778110779,214,0 +170778110827,213,0 +170778110877,214,0 +170778110925,214,0 +170778110973,214,0 +170778111021,214,0 +170778111070,214,0 +170778111118,213,0 +170778111166,213,0 +170778111214,213,0 +170778111262,213,0 +170778111312,213,0 +170778111361,213,0 +170778111409,213,0 +170778111457,213,0 +170778111506,213,0 +170778111556,213,0 +170778111604,213,0 +170778111653,213,0 +170778111703,213,0 +170778111751,213,0 +170778111799,213,0 +170778111847,214,0 +170778111895,214,0 +170778111942,214,0 +170778111992,213,0 +170778112041,213,0 +170778112089,213,0 +170778112137,213,0 +170778112187,213,0 +170778112235,213,0 +170778112284,213,0 +170778112332,213,0 +170778112380,213,0 +170778112430,214,0 +170778112478,213,0 +170778112526,214,0 +170778112574,214,0 +170778112622,214,0 +170778112670,214,0 +170778112718,214,0 +170778112766,214,0 +170778112813,214,0 +170778112863,213,0 +170778112912,213,0 +170778112962,213,0 +170778113010,213,0 +170778113059,213,0 +170778113109,213,0 +170778113157,213,0 +170778113206,214,0 +170778113254,214,0 +170778113302,214,0 +170778113350,214,0 +170778113398,214,0 +170778113448,214,0 +170778113497,214,0 +170778113547,214,0 +170778113596,215,0 +170778113644,214,0 +170778113693,214,0 +170778113741,213,0 +170778113789,213,0 +170778113839,213,0 +170778113887,213,0 +170778113935,213,0 +170778113984,213,0 +170778114032,214,0 +170778114080,214,0 +170778114128,214,0 +170778114176,214,0 +170778114224,214,0 +170778114273,214,0 +170778114321,214,0 +170778114369,214,0 +170778114417,214,0 +170778114465,214,0 +170778114513,214,0 +170778114561,214,0 +170778114608,214,0 +170778114656,213,0 +170778114704,214,0 +170778114754,213,0 +170778114803,213,0 +170778114851,214,0 +170778114900,214,0 +170778114948,214,0 +170778114996,214,0 +170778115046,214,0 +170778115094,214,0 +170778115143,214,0 +170778115191,214,0 +170778115239,214,0 +170778115287,214,0 +170778115335,214,0 +170778115384,214,0 +170778115432,214,0 +170778115480,214,0 +170778115528,214,0 +170778115577,213,0 +170778115625,213,0 +170778115673,214,0 +170778115722,214,0 +170778115770,214,0 +170778115818,214,0 +170778115866,214,0 +170778115915,214,0 +170778115963,214,0 +170778116011,214,0 +170778116059,214,0 +170778116107,214,0 +170778116155,215,0 +170778116204,215,0 +170778116252,214,0 +170778116300,214,0 +170778116348,214,0 +170778116396,213,0 +170778116444,213,0 +170778116491,213,0 +170778116539,213,0 +170778116587,213,0 +170778116635,213,0 +170778116683,214,0 +170778116732,214,0 +170778116780,213,0 +170778116828,214,0 +170778116876,214,0 +170778116926,214,0 +170778116973,214,0 +170778117021,214,0 +170778117069,214,0 +170778117117,214,0 +170778117167,214,0 +170778117215,214,0 +170778117263,214,0 +170778117312,213,0 +170778117360,213,0 +170778117408,213,0 +170778117458,213,0 +170778117506,213,0 +170778117555,213,0 +170778117603,213,0 +170778117651,213,0 +170778117700,214,0 +170778117748,214,0 +170778117798,213,0 +170778117846,214,0 +170778117894,214,0 +170778117941,214,0 +170778117989,214,0 +170778118037,214,0 +170778118085,214,0 +170778118133,214,0 +170778118182,213,0 +170778118230,213,0 +170778118280,213,0 +170778118328,213,0 +170778118375,213,0 +170778118423,213,0 +170778118471,213,0 +170778118521,213,0 +170778118569,214,0 +170778118617,214,0 +170778118665,214,0 +170778118713,214,0 +170778118762,214,0 +170778118810,214,0 +170778118859,214,0 +170778118907,214,0 +170778118955,214,0 +170778119003,214,0 +170778119053,214,0 +170778119101,213,0 +170778119150,213,0 +170778119199,213,0 +170778119247,213,0 +170778119295,213,0 +170778119345,213,0 +170778119393,213,0 +170778119440,213,0 +170778119488,213,0 +170778119536,213,0 +170778119586,213,0 +170778119634,214,0 +170778119682,214,0 +170778119729,214,0 +170778119777,214,0 +170778119825,214,0 +170778119875,214,0 +170778119923,214,0 +170778119971,213,0 +170778120019,213,0 +170778120067,213,0 +170778120114,213,0 +170778120162,213,0 +170778120212,213,0 +170778120260,213,0 +170778120308,213,0 +170778120355,213,0 +170778120403,213,0 +170778120451,213,0 +170778120501,213,0 +170778120549,213,0 +170778120596,214,0 +170778120644,214,0 +170778120694,214,0 +170778120742,214,0 +170778120791,214,0 +170778120839,213,0 +170778120889,213,0 +170778120938,213,0 +170778120986,213,0 +170778121034,213,0 +170778121082,213,0 +170778121130,213,0 +170778121178,214,0 +170778121227,214,0 +170778121277,214,0 +170778121326,214,0 +170778121374,214,0 +170778121422,214,0 +170778121470,214,0 +170778121518,214,0 +170778121568,214,0 +170778121616,214,0 +170778121664,214,0 +170778121713,213,0 +170778121761,213,0 +170778121809,213,0 +170778121857,213,0 +170778121905,213,0 +170778121953,213,0 +170778122000,213,0 +170778122050,213,0 +170778122098,213,0 +170778122146,213,0 +170778122194,214,0 +170778122242,214,0 +170778122291,214,0 +170778122341,214,0 +170778122390,214,0 +170778122438,214,0 +170778122487,214,0 +170778122537,214,0 +170778122585,214,0 +170778122633,213,0 +170778122682,213,0 +170778122730,213,0 +170778122778,213,0 +170778122828,213,0 +170778122876,213,0 +170778122923,213,0 +170778122971,213,0 +170778123019,213,0 +170778123067,213,0 +170778123115,213,0 +170778123164,214,0 +170778123212,214,0 +170778123262,214,0 +170778123310,214,0 +170778123358,214,0 +170778123407,214,0 +170778123455,214,0 +170778123504,213,0 +170778123554,213,0 +170778123601,213,0 +170778123651,213,0 +170778123699,213,0 +170778123747,213,0 +170778123795,213,0 +170778123842,213,0 +170778123890,213,0 +170778123938,213,0 +170778123986,213,0 +170778124034,214,0 +170778124082,214,0 +170778124130,214,0 +170778124179,214,0 +170778124227,214,0 +170778124275,214,0 +170778124323,214,0 +170778124372,213,0 +170778124422,213,0 +170778124472,213,0 +170778124519,213,0 +170778124569,213,0 +170778124617,213,0 +170778124665,213,0 +170778124714,213,0 +170778124762,213,0 +170778124811,213,0 +170778124859,213,0 +170778124907,213,0 +170778124955,214,0 +170778125005,213,0 +170778125053,214,0 +170778125101,214,0 +170778125148,214,0 +170778125196,214,0 +170778125246,214,0 +170778125296,213,0 +170778125345,213,0 +170778125393,213,0 +170778125441,213,0 +170778125489,213,0 +170778125537,213,0 +170778125586,213,0 +170778125636,213,0 +170778125684,213,0 +170778125732,213,0 +170778125780,214,0 +170778125828,214,0 +170778125876,214,0 +170778125925,214,0 +170778125973,214,0 +170778126021,214,0 +170778126070,214,0 +170778126118,214,0 +170778126166,213,0 +170778126214,213,0 +170778126262,213,0 +170778126310,213,0 +170778126358,213,0 +170778126406,213,0 +170778126455,213,0 +170778126505,213,0 +170778126553,214,0 +170778126601,214,0 +170778126649,214,0 +170778126698,214,0 +170778126746,214,0 +170778126794,214,0 +170778126842,214,0 +170778126891,214,0 +170778126939,214,0 +170778126987,214,0 +170778127035,213,0 +170778127085,213,0 +170778127133,213,0 +170778127181,213,0 +170778127229,213,0 +170778127277,213,0 +170778127326,213,0 +170778127374,213,0 +170778127422,213,0 +170778127470,213,0 +170778127519,213,0 +170778127567,214,0 +170778127615,214,0 +170778127665,214,0 +170778127713,214,0 +170778127760,214,0 +170778127808,214,0 +170778127856,214,0 +170778127904,213,0 +170778127952,213,0 +170778128000,213,0 +170778128050,213,0 +170778128099,213,0 +170778128147,213,0 +170778128196,213,0 +170778128244,213,0 +170778128292,213,0 +170778128340,213,0 +170778128388,213,0 +170778128436,214,0 +170778128483,214,0 +170778128533,214,0 +170778128581,214,0 +170778128628,214,0 +170778128678,214,0 +170778128727,214,0 +170778128777,214,0 +170778128826,213,0 +170778128876,213,0 +170778128924,213,0 +170778128971,213,0 +170778129019,213,0 +170778129069,213,0 +170778129117,213,0 +170778129165,214,0 +170778129213,214,0 +170778129260,214,0 +170778129310,214,0 +170778129358,214,0 +170778129407,214,0 +170778129455,214,0 +170778129505,214,0 +170778129553,214,0 +170778129602,214,0 +170778129650,214,0 +170778129698,213,0 +170778129746,213,0 +170778129795,213,0 +170778129845,213,0 +170778129894,213,0 +170778129944,213,0 +170778129992,213,0 +170778130040,213,0 +170778130088,213,0 +170778130137,214,0 +170778130185,214,0 +170778130233,214,0 +170778130281,214,0 +170778130329,214,0 +170778130377,214,0 +170778130425,214,0 +170778130473,214,0 +170778130521,214,0 +170778130570,213,0 +170778130618,213,0 +170778130666,213,0 +170778130714,213,0 +170778130762,213,0 +170778130812,213,0 +170778130860,213,0 +170778130908,213,0 +170778130955,213,0 +170778131003,214,0 +170778131051,214,0 +170778131101,214,0 +170778131149,214,0 +170778131197,214,0 +170778131245,214,0 +170778131294,214,0 +170778131342,214,0 +170778131390,214,0 +170778131438,214,0 +170778131486,213,0 +170778131535,213,0 +170778131583,213,0 +170778131631,213,0 +170778131679,213,0 +170778131727,213,0 +170778131776,213,0 +170778131824,214,0 +170778131874,214,0 +170778131923,214,0 +170778131973,214,0 +170778132022,214,0 +170778132072,214,0 +170778132120,214,0 +170778132169,214,0 +170778132217,214,0 +170778132265,214,0 +170778132315,214,0 +170778132364,213,0 +170778132414,213,0 +170778132461,213,0 +170778132509,213,0 +170778132557,213,0 +170778132607,213,0 +170778132655,213,0 +170778132702,213,0 +170778132752,214,0 +170778132801,214,0 +170778132849,214,0 +170778132897,214,0 +170778132945,214,0 +170778132993,214,0 +170778133043,214,0 +170778133090,214,0 +170778133140,214,0 +170778133189,214,0 +170778133237,213,0 +170778133287,213,0 +170778133336,214,0 +170778133384,213,0 +170778133432,213,0 +170778133482,214,0 +170778133530,214,0 +170778133579,214,0 +170778133629,214,0 +170778133678,214,0 +170778133728,214,0 +170778133777,214,0 +170778133825,214,0 +170778133873,214,0 +170778133921,214,0 +170778133969,214,0 +170778134018,214,0 +170778134067,214,0 +170778134115,213,0 +170778134163,213,0 +170778134213,214,0 +170778134260,214,0 +170778134310,214,0 +170778134358,214,0 +170778134406,214,0 +170778134454,214,0 +170778134502,214,0 +170778134549,214,0 +170778134599,214,0 +170778134647,214,0 +170778134696,214,0 +170778134746,214,0 +170778134794,214,0 +170778134842,214,0 +170778134890,214,0 +170778134938,214,0 +170778134987,213,0 +170778135036,213,0 +170778135084,213,0 +170778135134,214,0 +170778135182,214,0 +170778135231,214,0 +170778135279,214,0 +170778135327,214,0 +170778135376,214,0 +170778135424,214,0 +170778135472,214,0 +170778135521,214,0 +170778135569,214,0 +170778135617,214,0 +170778135665,214,0 +170778135713,214,0 +170778135761,214,0 +170778135809,214,0 +170778135857,213,0 +170778135904,213,0 +170778135954,213,0 +170778136002,213,0 +170778136050,213,0 +170778136098,213,0 +170778136147,214,0 +170778136195,214,0 +170778136243,214,0 +170778136293,214,0 +170778136342,214,0 +170778136390,214,0 +170778136438,214,0 +170778136486,214,0 +170778136534,214,0 +170778136582,214,0 +170778136631,214,0 +170778136679,214,0 +170778136727,213,0 +170778136775,213,0 +170778136823,213,0 +170778136870,213,0 +170778136918,213,0 +170778136968,213,0 +170778137016,213,0 +170778137064,213,0 +170778137113,213,0 +170778137161,213,0 +170778137209,214,0 +170778137257,214,0 +170778137305,214,0 +170778137353,214,0 +170778137401,214,0 +170778137448,214,0 +170778137496,214,0 +170778137544,214,0 +170778137592,213,0 +170778137640,213,0 +170778137690,213,0 +170778137738,213,0 +170778137785,213,0 +170778137835,213,0 +170778137883,213,0 +170778137932,213,0 +170778137980,213,0 +170778138028,213,0 +170778138077,213,0 +170778138127,213,0 +170778138175,213,0 +170778138223,214,0 +170778138271,213,0 +170778138318,214,0 +170778138366,214,0 +170778138414,214,0 +170778138462,213,0 +170778138511,213,0 +170778138559,213,0 +170778138607,213,0 +170778138656,213,0 +170778138704,213,0 +170778138752,213,0 +170778138800,213,0 +170778138848,213,0 +170778138895,213,0 +170778138943,214,0 +170778138993,214,0 +170778139042,214,0 +170778139090,214,0 +170778139140,214,0 +170778139188,214,0 +170778139237,213,0 +170778139285,214,0 +170778139333,213,0 +170778139382,213,0 +170778139432,213,0 +170778139480,213,0 +170778139528,213,0 +170778139577,213,0 +170778139625,213,0 +170778139673,213,0 +170778139723,213,0 +170778139771,213,0 +170778139819,213,0 +170778139866,213,0 +170778139914,213,0 +170778139962,214,0 +170778140010,214,0 +170778140058,214,0 +170778140106,214,0 +170778140154,214,0 +170778140202,213,0 +170778140250,213,0 +170778140297,213,0 +170778140345,213,0 +170778140393,213,0 +170778140441,213,0 +170778140489,213,0 +170778140537,213,0 +170778140585,213,0 +170778140633,214,0 +170778140682,214,0 +170778140730,214,0 +170778140778,214,0 +170778140828,214,0 +170778140876,214,0 +170778140925,214,0 +170778140973,214,0 +170778141021,214,0 +170778141070,214,0 +170778141118,213,0 +170778141166,213,0 +170778141214,213,0 +170778141262,213,0 +170778141310,213,0 +170778141358,213,0 +170778141405,213,0 +170778141453,213,0 +170778141501,214,0 +170778141551,214,0 +170778141598,214,0 +170778141646,214,0 +170778141694,214,0 +170778141742,214,0 +170778141790,214,0 +170778141839,214,0 +170778141887,214,0 +170778141935,214,0 +170778141983,213,0 +170778142031,213,0 +170778142078,213,0 +170778142128,213,0 +170778142176,213,0 +170778142225,213,0 +170778142273,213,0 +170778142322,213,0 +170778142372,213,0 +170778142420,213,0 +170778142469,214,0 +170778142518,214,0 +170778142566,214,0 +170778142614,214,0 +170778142662,214,0 +170778142710,214,0 +170778142758,214,0 +170778142806,214,0 +170778142853,213,0 +170778142903,213,0 +170778142953,213,0 +170778143000,213,0 +170778143048,213,0 +170778143096,213,0 +170778143144,213,0 +170778143192,213,0 +170778143240,213,0 +170778143288,213,0 +170778143336,214,0 +170778143384,214,0 +170778143432,214,0 +170778143480,214,0 +170778143528,214,0 +170778143577,214,0 +170778143625,214,0 +170778143673,214,0 +170778143721,213,0 +170778143769,213,0 +170778143817,213,0 +170778143864,213,0 +170778143912,213,0 +170778143960,213,0 +170778144008,213,0 +170778144056,214,0 +170778144105,214,0 +170778144153,214,0 +170778144201,214,0 +170778144249,214,0 +170778144298,214,0 +170778144346,214,0 +170778144394,214,0 +170778144442,214,0 +170778144491,214,0 +170778144539,214,0 +170778144587,213,0 +170778144635,213,0 +170778144683,213,0 +170778144732,213,0 +170778144780,213,0 +170778144829,213,0 +170778144877,213,0 +170778144925,214,0 +170778144973,214,0 +170778145021,214,0 +170778145069,214,0 +170778145117,214,0 +170778145165,214,0 +170778145213,214,0 +170778145262,214,0 +170778145310,214,0 +170778145360,214,0 +170778145407,214,0 +170778145455,213,0 +170778145505,213,0 +170778145554,213,0 +170778145604,214,0 +170778145653,213,0 +170778145703,213,0 +170778145752,214,0 +170778145802,214,0 +170778145850,214,0 +170778145898,214,0 +170778145946,214,0 +170778145993,214,0 +170778146043,215,0 +170778146091,214,0 +170778146139,214,0 +170778146187,214,0 +170778146235,214,0 +170778146284,214,0 +170778146332,214,0 +170778146380,213,0 +170778146428,213,0 +170778146477,213,0 +170778146525,213,0 +170778146573,214,0 +170778146621,214,0 +170778146671,214,0 +170778146719,214,0 +170778146768,214,0 +170778146816,214,0 +170778146864,214,0 +170778146912,214,0 +170778146960,214,0 +170778147009,214,0 +170778147057,214,0 +170778147107,214,0 +170778147155,214,0 +170778147203,213,0 +170778147252,213,0 +170778147302,213,0 +170778147349,213,0 +170778147399,214,0 +170778147447,213,0 +170778147495,214,0 +170778147543,214,0 +170778147592,214,0 +170778147640,214,0 +170778147688,214,0 +170778147736,214,0 +170778147783,214,0 +170778147833,214,0 +170778147882,214,0 +170778147930,214,0 +170778147978,214,0 +170778148027,214,0 +170778148075,214,0 +170778148123,213,0 +170778148171,213,0 +170778148221,213,0 +170778148268,213,0 +170778148316,213,0 +170778148366,213,0 +170778148415,213,0 +170778148463,214,0 +170778148511,214,0 +170778148559,214,0 +170778148607,214,0 +170778148655,214,0 +170778148704,214,0 +170778148752,214,0 +170778148802,214,0 +170778148851,214,0 +170778148899,214,0 +170778148947,214,0 +170778148995,213,0 +170778149045,213,0 +170778149093,213,0 +170778149140,213,0 +170778149188,213,0 +170778149236,214,0 +170778149286,213,0 +170778149334,213,0 +170778149383,213,0 +170778149431,214,0 +170778149481,214,0 +170778149529,214,0 +170778149578,214,0 +170778149628,214,0 +170778149676,214,0 +170778149723,214,0 +170778149771,214,0 +170778149821,214,0 +170778149870,213,0 +170778149918,213,0 +170778149966,213,0 +170778150016,213,0 +170778150065,213,0 +170778150115,213,0 +170778150162,213,0 +170778150210,213,0 +170778150258,213,0 +170778150306,213,0 +170778150354,214,0 +170778150402,214,0 +170778150450,214,0 +170778150500,214,0 +170778150549,214,0 +170778150597,214,0 +170778150645,214,0 +170778150693,214,0 +170778150741,213,0 +170778150790,213,0 +170778150838,213,0 +170778150888,213,0 +170778150935,213,0 +170778150983,213,0 +170778151031,213,0 +170778151081,213,0 +170778151128,213,0 +170778151176,213,0 +170778151224,214,0 +170778151272,214,0 +170778151320,214,0 +170778151368,214,0 +170778151416,214,0 +170778151464,214,0 +170778151513,214,0 +170778151561,214,0 +170778151609,213,0 +170778151657,213,0 +170778151705,213,0 +170778151754,213,0 +170778151802,213,0 +170778151850,213,0 +170778151898,213,0 +170778151947,214,0 +170778151995,214,0 +170778152045,214,0 +170778152094,214,0 +170778152142,214,0 +170778152190,214,0 +170778152238,214,0 +170778152286,214,0 +170778152334,214,0 +170778152382,214,0 +170778152431,214,0 +170778152479,213,0 +170778152527,213,0 +170778152575,213,0 +170778152623,214,0 +170778152670,213,0 +170778152718,214,0 +170778152766,214,0 +170778152814,214,0 +170778152862,214,0 +170778152911,214,0 +170778152959,214,0 +170778153009,214,0 +170778153057,214,0 +170778153105,214,0 +170778153154,214,0 +170778153204,214,0 +170778153252,214,0 +170778153301,214,0 +170778153350,213,0 +170778153400,213,0 +170778153448,214,0 +170778153497,214,0 +170778153545,213,0 +170778153595,214,0 +170778153644,214,0 +170778153692,214,0 +170778153741,214,0 +170778153789,214,0 +170778153839,214,0 +170778153887,214,0 +170778153935,214,0 +170778153983,214,0 +170778154031,214,0 +170778154078,214,0 +170778154128,214,0 +170778154176,214,0 +170778154224,213,0 +170778154272,213,0 +170778154319,213,0 +170778154367,213,0 +170778154417,213,0 +170778154465,213,0 +170778154512,213,0 +170778154560,213,0 +170778154610,214,0 +170778154659,214,0 +170778154707,214,0 +170778154756,214,0 +170778154804,214,0 +170778154854,214,0 +170778154902,214,0 +170778154950,214,0 +170778154999,214,0 +170778155048,214,0 +170778155098,213,0 +170778155146,213,0 +170778155194,213,0 +170778155242,213,0 +170778155291,213,0 +170778155339,213,0 +170778155389,213,0 +170778155436,214,0 +170778155484,214,0 +170778155532,214,0 +170778155580,214,0 +170778155630,214,0 +170778155678,214,0 +170778155727,214,0 +170778155777,214,0 +170778155826,214,0 +170778155874,214,0 +170778155923,214,0 +170778155971,213,0 +170778156019,213,0 +170778156067,213,0 +170778156115,213,0 +170778156163,213,0 +170778156211,213,0 +170778156259,213,0 +170778156307,213,0 +170778156355,214,0 +170778156404,214,0 +170778156452,214,0 +170778156500,214,0 +170778156550,214,0 +170778156597,214,0 +170778156645,214,0 +170778156693,214,0 +170778156741,214,0 +170778156789,214,0 +170778156839,213,0 +170778156888,213,0 +170778156936,213,0 +170778156984,213,0 +170778157032,213,0 +170778157080,213,0 +170778157128,213,0 +170778157176,213,0 +170778157226,213,0 +170778157274,213,0 +170778157323,213,0 +170778157371,214,0 +170778157420,214,0 +170778157468,214,0 +170778157516,214,0 +170778157566,214,0 +170778157614,214,0 +170778157661,214,0 +170778157709,213,0 +170778157759,213,0 +170778157807,213,0 +170778157855,213,0 +170778157902,213,0 +170778157950,213,0 +170778157998,213,0 +170778158048,213,0 +170778158097,214,0 +170778158145,213,0 +170778158193,214,0 +170778158241,214,0 +170778158289,214,0 +170778158338,214,0 +170778158386,214,0 +170778158434,214,0 +170778158482,214,0 +170778158530,214,0 +170778158578,213,0 +170778158626,213,0 +170778158675,213,0 +170778158723,213,0 +170778158771,213,0 +170778158820,213,0 +170778158870,214,0 +170778158918,213,0 +170778158966,214,0 +170778159015,214,0 +170778159063,214,0 +170778159111,214,0 +170778159161,214,0 +170778159210,214,0 +170778159259,214,0 +170778159309,214,0 +170778159357,214,0 +170778159406,214,0 +170778159454,213,0 +170778159504,213,0 +170778159553,213,0 +170778159601,213,0 +170778159650,213,0 +170778159700,213,0 +170778159749,213,0 +170778159797,214,0 +170778159845,214,0 +170778159895,214,0 +170778159943,214,0 +170778159991,214,0 +170778160040,214,0 +170778160088,214,0 +170778160138,214,0 +170778160185,214,0 +170778160235,214,0 +170778160283,214,0 +170778160331,213,0 +170778160380,213,0 +170778160429,213,0 +170778160477,213,0 +170778160527,213,0 +170778160575,213,0 +170778160623,213,0 +170778160672,213,0 +170778160720,214,0 +170778160770,214,0 +170778160817,214,0 +170778160867,214,0 +170778160915,214,0 +170778160963,214,0 +170778161010,214,0 +170778161058,214,0 +170778161106,214,0 +170778161154,214,0 +170778161202,213,0 +170778161250,213,0 +170778161299,213,0 +170778161347,213,0 +170778161395,213,0 +170778161443,213,0 +170778161491,213,0 +170778161539,213,0 +170778161587,213,0 +170778161635,213,0 +170778161682,214,0 +170778161730,214,0 +170778161778,214,0 +170778161826,214,0 +170778161876,214,0 +170778161925,214,0 +170778161973,214,0 +170778162023,214,0 +170778162070,214,0 +170778162120,213,0 +170778162168,213,0 +170778162216,213,0 +170778162265,213,0 +170778162313,213,0 +170778162361,213,0 +170778162409,213,0 +170778162457,213,0 +170778162505,213,0 +170778162552,214,0 +170778162600,214,0 +170778162648,214,0 +170778162696,213,0 +170778162745,214,0 +170778162793,213,0 +170778162843,213,0 +170778162892,214,0 +170778162942,213,0 +170778162990,213,0 +170778163037,213,0 +170778163087,213,0 +170778163136,213,0 +170778163184,213,0 +170778163234,213,0 +170778163282,213,0 +170778163329,213,0 +170778163379,213,0 +170778163427,213,0 +170778163475,213,0 +170778163523,214,0 +170778163572,214,0 +170778163620,214,0 +170778163668,214,0 +170778163716,214,0 +170778163764,214,0 +170778163812,214,0 +170778163861,213,0 +170778163909,213,0 +170778163959,213,0 +170778164006,213,0 +170778164056,213,0 +170778164105,213,0 +170778164155,213,0 +170778164204,213,0 +170778164252,213,0 +170778164300,214,0 +170778164348,214,0 +170778164397,214,0 +170778164445,214,0 +170778164495,214,0 +170778164543,214,0 +170778164591,214,0 +170778164639,214,0 +170778164687,214,0 +170778164735,213,0 +170778164783,213,0 +170778164830,213,0 +170778164880,213,0 +170778164928,213,0 +170778164976,213,0 +170778165024,213,0 +170778165071,213,0 +170778165119,214,0 +170778165167,214,0 +170778165215,214,0 +170778165264,214,0 +170778165312,213,0 +170778165360,214,0 +170778165408,214,0 +170778165456,214,0 +170778165503,214,0 +170778165553,214,0 +170778165601,213,0 +170778165649,213,0 +170778165697,213,0 +170778165744,213,0 +170778165792,213,0 +170778165840,213,0 +170778165888,213,0 +170778165936,213,0 +170778165984,213,0 +170778166033,213,0 +170778166081,214,0 +170778166131,214,0 +170778166178,214,0 +170778166226,214,0 +170778166274,214,0 +170778166322,214,0 +170778166370,214,0 +170778166419,214,0 +170778166467,213,0 +170778166515,213,0 +170778166563,213,0 +170778166611,213,0 +170778166660,213,0 +170778166708,213,0 +170778166756,213,0 +170778166804,213,0 +170778166852,213,0 +170778166902,213,0 +170778166949,213,0 +170778166997,213,0 +170778167045,214,0 +170778167093,214,0 +170778167141,214,0 +170778167188,214,0 +170778167236,214,0 +170778167285,214,0 +170778167333,213,0 +170778167381,213,0 +170778167429,213,0 +170778167477,213,0 +170778167525,213,0 +170778167574,213,0 +170778167622,213,0 +170778167672,213,0 +170778167719,213,0 +170778167767,213,0 +170778167815,214,0 +170778167863,214,0 +170778167910,214,0 +170778167958,214,0 +170778168006,214,0 +170778168054,214,0 +170778168102,214,0 +170778168150,214,0 +170778168199,213,0 +170778168248,213,0 +170778168296,213,0 +170778168344,213,0 +170778168392,213,0 +170778168440,213,0 +170778168490,213,0 +170778168537,213,0 +170778168585,213,0 +170778168633,213,0 +170778168683,213,0 +170778168732,214,0 +170778168780,214,0 +170778168828,214,0 +170778168876,214,0 +170778168923,214,0 +170778168971,215,0 +170778169021,214,0 +170778169068,213,0 +170778169116,213,0 +170778169166,213,0 +170778169213,213,0 +170778169261,213,0 +170778169309,213,0 +170778169358,213,0 +170778169406,213,0 +170778169454,213,0 +170778169502,213,0 +170778169551,213,0 +170778169599,214,0 +170778169647,214,0 +170778169695,214,0 +170778169743,214,0 +170778169791,214,0 +170778169839,214,0 +170778169888,214,0 +170778169936,214,0 +170778169984,213,0 +170778170032,213,0 +170778170080,213,0 +170778170128,213,0 +170778170176,213,0 +170778170224,213,0 +170778170271,214,0 +170778170319,214,0 +170778170367,214,0 +170778170417,214,0 +170778170465,214,0 +170778170512,214,0 +170778170560,214,0 +170778170608,214,0 +170778170656,214,0 +170778170706,214,0 +170778170753,214,0 +170778170801,214,0 +170778170849,213,0 +170778170897,213,0 +170778170945,213,0 +170778170993,213,0 +170778171041,214,0 +170778171089,214,0 +170778171136,214,0 +170778171184,214,0 +170778171232,214,0 +170778171280,214,0 +170778171328,214,0 +170778171376,214,0 +170778171424,214,0 +170778171472,214,0 +170778171521,215,0 +170778171569,214,0 +170778171618,214,0 +170778171668,214,0 +170778171716,213,0 +170778171764,213,0 +170778171813,214,0 +170778171861,214,0 +170778171909,214,0 +170778171957,214,0 +170778172005,214,0 +170778172053,214,0 +170778172101,214,0 +170778172150,214,0 +170778172200,214,0 +170778172248,214,0 +170778172297,214,0 +170778172345,215,0 +170778172393,214,0 +170778172440,214,0 +170778172488,214,0 +170778172536,214,0 +170778172584,213,0 +170778172633,213,0 +170778172681,213,0 +170778172729,213,0 +170778172778,213,0 +170778172827,214,0 +170778172875,214,0 +170778172923,214,0 +170778172971,214,0 +170778173019,214,0 +170778173067,214,0 +170778173114,214,0 +170778173164,214,0 +170778173211,214,0 +170778173259,214,0 +170778173307,214,0 +170778173355,214,0 +170778173403,214,0 +170778173450,214,0 +170778173498,214,0 +170778173546,214,0 +170778173594,214,0 +170778173642,214,0 +170778173689,214,0 +170778173739,214,0 +170778173787,214,0 +170778173836,214,0 +170778173884,214,0 +170778173932,214,0 +170778173981,214,0 +170778174029,214,0 +170778174077,214,0 +170778174124,214,0 +170778174172,214,0 +170778174220,214,0 +170778174269,214,0 +170778174317,214,0 +170778174365,213,0 +170778174413,214,0 +170778174462,214,0 +170778174512,214,0 +170778174560,214,0 +170778174609,214,0 +170778174658,214,0 +170778174706,214,0 +170778174754,214,0 +170778174802,214,0 +170778174850,214,0 +170778174898,214,0 +170778174946,215,0 +170778174993,215,0 +170778175041,214,0 +170778175091,214,0 +170778175138,214,0 +170778175186,213,0 +170778175234,213,0 +170778175282,213,0 +170778175330,214,0 +170778175378,214,0 +170778175425,214,0 +170778175475,214,0 +170778175523,214,0 +170778175571,214,0 +170778175618,214,0 +170778175666,214,0 +170778175716,214,0 +170778175764,214,0 +170778175813,214,0 +170778175861,214,0 +170778175909,214,0 +170778175957,214,0 +170778176006,214,0 +170778176054,213,0 +170778176102,213,0 +170778176150,213,0 +170778176200,213,0 +170778176247,213,0 +170778176295,213,0 +170778176343,214,0 +170778176392,214,0 +170778176440,214,0 +170778176488,214,0 +170778176537,214,0 +170778176585,214,0 +170778176633,214,0 +170778176681,214,0 +170778176729,214,0 +170778176777,214,0 +170778176825,214,0 +170778176873,214,0 +170778176921,213,0 +170778176968,213,0 +170778177016,213,0 +170778177064,213,0 +170778177112,213,0 +170778177160,213,0 +170778177209,213,0 +170778177257,214,0 +170778177305,214,0 +170778177353,214,0 +170778177401,214,0 +170778177448,214,0 +170778177496,214,0 +170778177544,214,0 +170778177592,214,0 +170778177641,214,0 +170778177689,214,0 +170778177737,214,0 +170778177785,214,0 +170778177832,213,0 +170778177880,213,0 +170778177930,213,0 +170778177977,213,0 +170778178025,213,0 +170778178073,213,0 +170778178121,213,0 +170778178169,213,0 +170778178217,213,0 +170778178265,214,0 +170778178313,214,0 +170778178360,214,0 +170778178408,214,0 +170778178458,214,0 +170778178507,214,0 +170778178557,214,0 +170778178605,214,0 +170778178653,214,0 +170778178701,213,0 +170778178749,213,0 +170778178797,213,0 +170778178845,213,0 +170778178893,213,0 +170778178940,213,0 +170778178988,213,0 +170778179038,213,0 +170778179086,213,0 +170778179134,214,0 +170778179182,214,0 +170778179230,214,0 +170778179278,214,0 +170778179327,214,0 +170778179376,214,0 +170778179424,214,0 +170778179472,214,0 +170778179520,214,0 +170778179568,213,0 +170778179616,213,0 +170778179664,213,0 +170778179713,213,0 +170778179761,213,0 +170778179809,213,0 +170778179857,213,0 +170778179905,213,0 +170778179953,213,0 +170778180001,213,0 +170778180048,213,0 +170778180096,214,0 +170778180144,214,0 +170778180192,214,0 +170778180241,214,0 +170778180289,214,0 +170778180337,214,0 +170778180385,214,0 +170778180433,213,0 +170778180482,213,0 +170778180530,213,0 +170778180578,213,0 +170778180626,213,0 +170778180674,213,0 +170778180723,213,0 +170778180771,213,0 +170778180819,213,0 +170778180867,213,0 +170778180915,213,0 +170778180964,213,0 +170778181012,213,0 +170778181060,213,0 +170778181108,214,0 +170778181158,214,0 +170778181205,214,0 +170778181253,214,0 +170778181301,213,0 +170778181349,213,0 +170778181397,213,0 +170778181445,213,0 +170778181493,213,0 +170778181541,213,0 +170778181589,213,0 +170778181638,213,0 +170778181688,213,0 +170778181736,213,0 +170778181785,213,0 +170778181833,214,0 +170778181881,214,0 +170778181931,214,0 +170778181979,214,0 +170778182028,214,0 +170778182076,214,0 +170778182124,214,0 +170778182172,213,0 +170778182220,213,0 +170778182268,213,0 +170778182317,213,0 +170778182365,213,0 +170778182413,213,0 +170778182463,213,0 +170778182511,213,0 +170778182558,213,0 +170778182608,213,0 +170778182657,213,0 +170778182707,214,0 +170778182755,214,0 +170778182804,214,0 +170778182852,214,0 +170778182902,214,0 +170778182951,214,0 +170778182999,214,0 +170778183047,213,0 +170778183097,213,0 +170778183145,213,0 +170778183193,213,0 +170778183240,213,0 +170778183288,213,0 +170778183336,213,0 +170778183384,213,0 +170778183432,213,0 +170778183482,213,0 +170778183530,213,0 +170778183579,214,0 +170778183627,214,0 +170778183677,214,0 +170778183726,214,0 +170778183774,214,0 +170778183823,214,0 +170778183871,214,0 +170778183921,213,0 +170778183970,213,0 +170778184018,213,0 +170778184066,213,0 +170778184114,213,0 +170778184162,213,0 +170778184210,213,0 +170778184258,213,0 +170778184306,214,0 +170778184353,214,0 +170778184401,214,0 +170778184449,214,0 +170778184497,214,0 +170778184547,214,0 +170778184596,214,0 +170778184644,214,0 +170778184692,214,0 +170778184740,214,0 +170778184788,213,0 +170778184835,213,0 +170778184883,213,0 +170778184931,213,0 +170778184979,213,0 +170778185027,213,0 +170778185075,213,0 +170778185123,213,0 +170778185170,213,0 +170778185218,214,0 +170778185266,214,0 +170778185314,214,0 +170778185362,214,0 +170778185410,214,0 +170778185457,214,0 +170778185505,214,0 +170778185553,214,0 +170778185601,214,0 +170778185649,213,0 +170778185696,213,0 +170778185746,213,0 +170778185794,213,0 +170778185841,213,0 +170778185889,213,0 +170778185937,213,0 +170778185985,213,0 +170778186033,213,0 +170778186080,213,0 +170778186128,213,0 +170778186176,214,0 +170778186224,214,0 +170778186272,214,0 +170778186321,214,0 +170778186369,214,0 +170778186417,214,0 +170778186465,214,0 +170778186513,214,0 +170778186561,213,0 +170778186609,213,0 +170778186657,213,0 +170778186705,213,0 +170778186754,213,0 +170778186802,213,0 +170778186852,213,0 +170778186900,213,0 +170778186948,213,0 +170778186997,213,0 +170778187045,213,0 +170778187093,214,0 +170778187141,214,0 +170778187190,213,0 +170778187238,214,0 +170778187286,214,0 +170778187334,214,0 +170778187382,213,0 +170778187430,213,0 +170778187479,213,0 +170778187527,213,0 +170778187575,213,0 +170778187625,213,0 +170778187673,213,0 +170778187721,213,0 +170778187770,213,0 +170778187820,213,0 +170778187868,213,0 +170778187917,214,0 +170778187965,214,0 +170778188014,214,0 +170778188062,214,0 +170778188112,214,0 +170778188160,214,0 +170778188209,214,0 +170778188257,213,0 +170778188306,213,0 +170778188354,213,0 +170778188402,213,0 +170778188452,213,0 +170778188501,213,0 +170778188549,214,0 +170778188599,214,0 +170778188648,214,0 +170778188697,214,0 +170778188747,214,0 +170778188795,214,0 +170778188843,214,0 +170778188891,214,0 +170778188939,214,0 +170778188986,214,0 +170778189034,215,0 +170778189084,214,0 +170778189132,214,0 +170778189180,214,0 +170778189228,214,0 +170778189277,214,0 +170778189327,214,0 +170778189375,214,0 +170778189422,214,0 +170778189470,214,0 +170778189518,214,0 +170778189566,214,0 +170778189615,215,0 +170778189665,214,0 +170778189713,215,0 +170778189761,215,0 +170778189810,214,0 +170778189858,214,0 +170778189906,214,0 +170778189956,214,0 +170778190004,214,0 +170778190052,214,0 +170778190101,214,0 +170778190149,214,0 +170778190197,214,0 +170778190245,214,0 +170778190294,214,0 +170778190342,214,0 +170778190392,214,0 +170778190440,214,0 +170778190489,214,0 +170778190539,215,0 +170778190587,214,0 +170778190635,215,0 +170778190682,215,0 +170778190730,214,0 +170778190778,214,0 +170778190826,214,0 +170778190874,214,0 +170778190922,214,0 +170778190972,213,0 +170778191019,213,0 +170778191067,214,0 +170778191115,214,0 +170778191163,214,0 +170778191213,214,0 +170778191260,214,0 +170778191310,214,0 +170778191358,214,0 +170778191406,214,0 +170778191454,214,0 +170778191503,214,0 +170778191553,214,0 +170778191602,214,0 +170778191650,214,0 +170778191698,214,0 +170778191748,214,0 +170778191796,213,0 +170778191843,213,0 +170778191891,213,0 +170778191939,213,0 +170778191987,213,0 +170778192035,213,0 +170778192085,214,0 +170778192132,214,0 +170778192180,214,0 +170778192228,214,0 +170778192278,214,0 +170778192326,214,0 +170778192375,214,0 +170778192423,214,0 +170778192473,214,0 +170778192520,214,0 +170778192570,214,0 +170778192618,214,0 +170778192666,213,0 +170778192714,213,0 +170778192762,213,0 +170778192810,213,0 +170778192858,213,0 +170778192907,214,0 +170778192955,213,0 +170778193005,214,0 +170778193053,214,0 +170778193102,214,0 +170778193150,214,0 +170778193199,214,0 +170778193247,214,0 +170778193297,214,0 +170778193345,214,0 +170778193393,214,0 +170778193441,214,0 +170778193489,213,0 +170778193537,213,0 +170778193586,213,0 +170778193634,213,0 +170778193684,213,0 +170778193732,213,0 +170778193779,213,0 +170778193827,214,0 +170778193877,214,0 +170778193926,214,0 +170778193974,214,0 +170778194022,214,0 +170778194070,214,0 +170778194120,214,0 +170778194169,214,0 +170778194219,214,0 +170778194266,214,0 +170778194314,214,0 +170778194364,213,0 +170778194413,213,0 +170778194463,213,0 +170778194511,213,0 +170778194559,213,0 +170778194606,213,0 +170778194656,214,0 +170778194706,214,0 +170778194755,214,0 +170778194805,214,0 +170778194852,214,0 +170778194902,214,0 +170778194951,214,0 +170778195001,214,0 +170778195049,214,0 +170778195097,214,0 +170778195145,214,0 +170778195192,214,0 +170778195240,213,0 +170778195288,213,0 +170778195336,213,0 +170778195384,213,0 +170778195432,213,0 +170778195482,213,0 +170778195530,213,0 +170778195578,213,0 +170778195625,214,0 +170778195673,214,0 +170778195721,214,0 +170778195769,214,0 +170778195819,214,0 +170778195866,214,0 +170778195916,214,0 +170778195964,214,0 +170778196013,214,0 +170778196063,214,0 +170778196111,213,0 +170778196160,213,0 +170778196210,213,0 +170778196259,213,0 +170778196307,213,0 +170778196355,213,0 +170778196404,213,0 +170778196452,213,0 +170778196500,213,0 +170778196548,214,0 +170778196596,214,0 +170778196644,214,0 +170778196693,214,0 +170778196741,214,0 +170778196791,214,0 +170778196839,214,0 +170778196887,214,0 +170778196935,214,0 +170778196983,213,0 +170778197030,213,0 +170778197078,213,0 +170778197126,213,0 +170778197174,213,0 +170778197222,213,0 +170778197272,213,0 +170778197320,213,0 +170778197368,213,0 +170778197416,213,0 +170778197464,214,0 +170778197511,214,0 +170778197561,214,0 +170778197609,214,0 +170778197657,214,0 +170778197706,214,0 +170778197754,214,0 +170778197802,214,0 +170778197850,213,0 +170778197898,213,0 +170778197946,213,0 +170778197995,213,0 +170778198043,213,0 +170778198092,213,0 +170778198140,213,0 +170778198188,213,0 +170778198238,213,0 +170778198287,213,0 +170778198335,213,0 +170778198385,213,0 +170778198434,214,0 +170778198484,214,0 +170778198533,214,0 +170778198583,214,0 +170778198631,214,0 +170778198679,214,0 +170778198727,213,0 +170778198776,213,0 +170778198824,213,0 +170778198874,213,0 +170778198922,213,0 +170778198970,213,0 +170778199019,213,0 +170778199067,213,0 +170778199116,213,0 +170778199164,214,0 +170778199212,213,0 +170778199260,214,0 +170778199308,214,0 +170778199356,214,0 +170778199404,214,0 +170778199452,214,0 +170778199500,214,0 +170778199548,214,0 +170778199596,213,0 +170778199644,213,0 +170778199692,213,0 +170778199741,213,0 +170778199791,213,0 +170778199839,213,0 +170778199887,213,0 +170778199936,213,0 +170778199986,213,0 +170778200035,214,0 +170778200085,214,0 +170778200134,214,0 +170778200182,214,0 +170778200232,214,0 +170778200279,214,0 +170778200327,214,0 +170778200375,214,0 +170778200423,214,0 +170778200471,213,0 +170778200519,213,0 +170778200566,213,0 +170778200614,213,0 +170778200662,213,0 +170778200710,213,0 +170778200758,213,0 +170778200806,213,0 +170778200854,213,0 +170778200902,213,0 +170778200949,214,0 +170778200997,214,0 +170778201047,214,0 +170778201095,214,0 +170778201142,214,0 +170778201192,214,0 +170778201240,214,0 +170778201287,214,0 +170778201335,213,0 +170778201385,213,0 +170778201433,213,0 +170778201481,213,0 +170778201528,213,0 +170778201576,213,0 +170778201624,213,0 +170778201672,213,0 +170778201720,213,0 +170778201768,213,0 +170778201817,214,0 +170778201865,214,0 +170778201913,214,0 +170778201962,214,0 +170778202010,214,0 +170778202058,214,0 +170778202106,214,0 +170778202154,214,0 +170778202202,213,0 +170778202250,213,0 +170778202298,213,0 +170778202346,213,0 +170778202394,213,0 +170778202442,213,0 +170778202491,213,0 +170778202541,213,0 +170778202589,214,0 +170778202638,213,0 +170778202686,214,0 +170778202734,214,0 +170778202782,214,0 +170778202830,214,0 +170778202878,214,0 +170778202927,214,0 +170778202975,214,0 +170778203023,213,0 +170778203071,213,0 +170778203120,213,0 +170778203169,213,0 +170778203217,213,0 +170778203265,213,0 +170778203313,213,0 +170778203361,214,0 +170778203409,213,0 +170778203457,213,0 +170778203505,214,0 +170778203553,214,0 +170778203601,214,0 +170778203648,214,0 +170778203696,214,0 +170778203744,214,0 +170778203794,214,0 +170778203842,214,0 +170778203889,213,0 +170778203937,213,0 +170778203985,213,0 +170778204034,213,0 +170778204082,213,0 +170778204130,213,0 +170778204178,213,0 +170778204226,213,0 +170778204275,213,0 +170778204325,213,0 +170778204374,214,0 +170778204422,214,0 +170778204472,214,0 +170778204521,214,0 +170778204569,214,0 +170778204617,214,0 +170778204665,214,0 +170778204714,214,0 +170778204762,213,0 +170778204810,213,0 +170778204858,213,0 +170778204908,213,0 +170778204957,213,0 +170778205005,213,0 +170778205053,213,0 +170778205103,213,0 +170778205151,214,0 +170778205199,214,0 +170778205248,214,0 +170778205296,214,0 +170778205346,214,0 +170778205394,214,0 +170778205441,214,0 +170778205489,214,0 +170778205539,214,0 +170778205587,213,0 +170778205636,213,0 +170778205684,213,0 +170778205732,213,0 +170778205780,213,0 +170778205827,213,0 +170778205875,213,0 +170778205923,213,0 +170778205971,213,0 +170778206020,213,0 +170778206068,213,0 +170778206116,214,0 +170778206164,214,0 +170778206213,214,0 +170778206263,214,0 +170778206310,214,0 +170778206360,214,0 +170778206408,214,0 +170778206455,214,0 +170778206503,214,0 +170778206551,214,0 +170778206599,215,0 +170778206648,214,0 +170778206696,214,0 +170778206745,214,0 +170778206793,214,0 +170778206841,214,0 +170778206888,213,0 +170778206936,213,0 +170778206986,213,0 +170778207034,213,0 +170778207083,214,0 +170778207131,214,0 +170778207181,214,0 +170778207228,214,0 +170778207278,214,0 +170778207326,214,0 +170778207375,214,0 +170778207423,214,0 +170778207473,214,0 +170778207521,214,0 +170778207570,214,0 +170778207620,214,0 +170778207669,214,0 +170778207718,213,0 +170778207768,213,0 +170778207816,213,0 +170778207864,213,0 +170778207913,214,0 +170778207961,214,0 +170778208011,214,0 +170778208058,214,0 +170778208108,214,0 +170778208157,214,0 +170778208205,214,0 +170778208253,214,0 +170778208301,214,0 +170778208349,214,0 +170778208397,214,0 +170778208446,214,0 +170778208494,214,0 +170778208542,214,0 +170778208590,213,0 +170778208640,213,0 +170778208687,213,0 +170778208735,213,0 +170778208783,213,0 +170778208833,214,0 +170778208881,214,0 +170778208929,214,0 +170778208977,214,0 +170778209026,214,0 +170778209074,214,0 +170778209122,214,0 +170778209170,214,0 +170778209218,214,0 +170778209267,214,0 +170778209315,214,0 +170778209365,214,0 +170778209413,214,0 +170778209462,213,0 +170778209510,213,0 +170778209558,213,0 +170778209606,214,0 +170778209656,214,0 +170778209704,214,0 +170778209753,214,0 +170778209803,214,0 +170778209851,214,0 +170778209900,214,0 +170778209948,214,0 +170778209996,215,0 +170778210044,214,0 +170778210092,215,0 +170778210140,214,0 +170778210188,214,0 +170778210236,214,0 +170778210285,213,0 +170778210333,213,0 +170778210381,213,0 +170778210429,213,0 +170778210478,213,0 +170778210526,214,0 +170778210574,214,0 +170778210622,214,0 +170778210672,214,0 +170778210721,214,0 +170778210769,214,0 +170778210817,214,0 +170778210865,214,0 +170778210913,214,0 +170778210961,214,0 +170778211010,214,0 +170778211058,214,0 +170778211108,214,0 +170778211155,213,0 +170778211203,213,0 +170778211251,213,0 +170778211301,213,0 +170778211350,213,0 +170778211398,213,0 +170778211446,213,0 +170778211494,213,0 +170778211542,214,0 +170778211590,213,0 +170778211638,214,0 +170778211686,214,0 +170778211734,214,0 +170778211783,214,0 +170778211831,214,0 +170778211879,214,0 +170778211927,215,0 +170778211975,213,0 +170778212023,213,0 +170778212072,213,0 +170778212120,213,0 +170778212168,213,0 +170778212216,213,0 +170778212264,213,0 +170778212312,213,0 +170778212360,214,0 +170778212408,213,0 +170778212457,213,0 +170778212505,214,0 +170778212553,214,0 +170778212601,214,0 +170778212649,214,0 +170778212698,214,0 +170778212746,214,0 +170778212794,214,0 +170778212842,213,0 +170778212890,213,0 +170778212937,213,0 +170778212987,213,0 +170778213035,213,0 +170778213083,213,0 +170778213130,213,0 +170778213178,213,0 +170778213226,213,0 +170778213274,213,0 +170778213322,214,0 +170778213371,214,0 +170778213419,214,0 +170778213467,214,0 +170778213515,214,0 +170778213563,214,0 +170778213611,214,0 +170778213660,213,0 +170778213708,213,0 +170778213756,213,0 +170778213804,213,0 +170778213852,213,0 +170778213900,213,0 +170778213948,213,0 +170778213997,213,0 +170778214047,214,0 +170778214096,214,0 +170778214144,214,0 +170778214193,214,0 +170778214241,214,0 +170778214291,214,0 +170778214341,214,0 +170778214388,215,0 +170778214436,214,0 +170778214486,214,0 +170778214534,213,0 +170778214582,213,0 +170778214630,213,0 +170778214679,213,0 +170778214729,213,0 +170778214776,213,0 +170778214824,213,0 +170778214874,214,0 +170778214923,214,0 +170778214971,214,0 +170778215019,214,0 +170778215067,214,0 +170778215116,214,0 +170778215164,214,0 +170778215212,214,0 +170778215260,214,0 +170778215309,214,0 +170778215359,214,0 +170778215407,213,0 +170778215456,213,0 +170778215504,213,0 +170778215552,213,0 +170778215600,213,0 +170778215648,213,0 +170778215698,213,0 +170778215746,213,0 +170778215794,214,0 +170778215842,214,0 +170778215889,214,0 +170778215937,214,0 +170778215987,214,0 +170778216035,214,0 +170778216083,214,0 +170778216131,214,0 +170778216179,214,0 +170778216227,213,0 +170778216275,213,0 +170778216323,213,0 +170778216372,213,0 +170778216420,213,0 +170778216470,213,0 +170778216518,213,0 +170778216565,213,0 +170778216613,213,0 +170778216663,214,0 +170778216712,214,0 +170778216762,214,0 +170778216810,214,0 +170778216859,214,0 +170778216907,214,0 +170778216957,214,0 +170778217006,214,0 +170778217056,214,0 +170778217104,213,0 +170778217151,213,0 +170778217201,213,0 +170778217249,213,0 +170778217297,213,0 +170778217346,214,0 +170778217394,214,0 +170778217442,214,0 +170778217491,214,0 +170778217541,214,0 +170778217590,214,0 +170778217638,214,0 +170778217686,214,0 +170778217734,214,0 +170778217782,214,0 +170778217832,214,0 +170778217879,214,0 +170778217927,213,0 +170778217975,213,0 +170778218023,213,0 +170778218071,213,0 +170778218119,213,0 +170778218168,213,0 +170778218218,214,0 +170778218266,214,0 +170778218314,214,0 +170778218363,214,0 +170778218411,214,0 +170778218459,214,0 +170778218507,214,0 +170778218555,214,0 +170778218603,214,0 +170778218651,214,0 +170778218699,214,0 +170778218747,214,0 +170778218796,213,0 +170778218846,213,0 +170778218894,213,0 +170778218941,213,0 +170778218989,213,0 +170778219037,213,0 +170778219085,213,0 +170778219133,213,0 +170778219181,213,0 +170778219231,214,0 +170778219278,214,0 +170778219326,214,0 +170778219376,214,0 +170778219424,214,0 +170778219473,214,0 +170778219523,214,0 +170778219571,214,0 +170778219619,214,0 +170778219668,213,0 +170778219718,213,0 +170778219765,213,0 +170778219813,213,0 +170778219861,213,0 +170778219911,213,0 +170778219958,213,0 +170778220008,213,0 +170778220056,214,0 +170778220105,213,0 +170778220153,214,0 +170778220201,214,0 +170778220249,214,0 +170778220297,214,0 +170778220344,214,0 +170778220392,214,0 +170778220440,214,0 +170778220488,213,0 +170778220536,213,0 +170778220583,213,0 +170778220631,213,0 +170778220681,213,0 +170778220728,213,0 +170778220778,213,0 +170778220826,213,0 +170778220874,213,0 +170778220921,214,0 +170778220969,214,0 +170778221017,214,0 +170778221065,214,0 +170778221113,214,0 +170778221161,214,0 +170778221209,214,0 +170778221256,214,0 +170778221304,214,0 +170778221352,213,0 +170778221400,213,0 +170778221448,213,0 +170778221496,213,0 +170778221543,213,0 +170778221593,213,0 +170778221641,213,0 +170778221688,214,0 +170778221738,214,0 +170778221786,214,0 +170778221834,214,0 +170778221881,214,0 +170778221929,214,0 +170778221977,214,0 +170778222025,214,0 +170778222073,214,0 +170778222121,214,0 +170778222168,214,0 +170778222216,213,0 +170778222264,213,0 +170778222312,213,0 +170778222360,213,0 +170778222408,213,0 +170778222455,213,0 +170778222503,214,0 +170778222551,213,0 +170778222599,214,0 +170778222648,214,0 +170778222696,214,0 +170778222744,214,0 +170778222792,214,0 +170778222841,214,0 +170778222889,214,0 +170778222938,214,0 +170778222988,214,0 +170778223038,213,0 +170778223086,213,0 +170778223133,213,0 +170778223183,213,0 +170778223231,213,0 +170778223279,214,0 +170778223328,214,0 +170778223378,214,0 +170778223427,214,0 +170778223475,214,0 +170778223525,214,0 +170778223573,214,0 +170778223621,214,0 +170778223669,214,0 +170778223718,214,0 +170778223766,214,0 +170778223814,214,0 +170778223862,214,0 +170778223910,213,0 +170778223958,213,0 +170778224007,213,0 +170778224055,213,0 +170778224103,213,0 +170778224151,213,0 +170778224199,214,0 +170778224247,214,0 +170778224295,214,0 +170778224343,214,0 +170778224390,214,0 +170778224438,214,0 +170778224486,214,0 +170778224534,214,0 +170778224582,214,0 +170778224630,214,0 +170778224678,214,0 +170778224725,213,0 +170778224773,213,0 +170778224821,213,0 +170778224871,213,0 +170778224918,213,0 +170778224966,213,0 +170778225014,213,0 +170778225062,213,0 +170778225110,213,0 +170778225157,214,0 +170778225205,214,0 +170778225253,214,0 +170778225301,214,0 +170778225349,214,0 +170778225397,214,0 +170778225445,214,0 +170778225492,214,0 +170778225542,214,0 +170778225590,213,0 +170778225638,213,0 +170778225685,213,0 +170778225733,213,0 +170778225783,213,0 +170778225831,213,0 +170778225878,213,0 +170778225926,214,0 +170778225974,214,0 +170778226022,214,0 +170778226070,214,0 +170778226119,214,0 +170778226167,214,0 +170778226215,214,0 +170778226263,214,0 +170778226310,214,0 +170778226358,214,0 +170778226406,214,0 +170778226454,213,0 +170778226503,213,0 +170778226551,213,0 +170778226600,213,0 +170778226648,213,0 +170778226696,213,0 +170778226744,214,0 +170778226793,214,0 +170778226841,214,0 +170778226889,214,0 +170778226938,214,0 +170778226986,214,0 +170778227034,214,0 +170778227082,215,0 +170778227129,214,0 +170778227177,214,0 +170778227225,214,0 +170778227273,213,0 +170778227321,213,0 +170778227368,213,0 +170778227416,213,0 +170778227464,213,0 +170778227512,213,0 +170778227560,213,0 +170778227608,213,0 +170778227655,213,0 +170778227703,213,0 +170778227751,214,0 +170778227799,214,0 +170778227846,214,0 +170778227894,214,0 +170778227942,214,0 +170778227990,214,0 +170778228038,214,0 +170778228086,214,0 +170778228133,213,0 +170778228181,213,0 +170778228229,213,0 +170778228277,213,0 +170778228325,213,0 +170778228373,213,0 +170778228421,213,0 +170778228468,213,0 +170778228516,214,0 +170778228564,213,0 +170778228612,214,0 +170778228660,214,0 +170778228708,214,0 +170778228755,214,0 +170778228803,214,0 +170778228851,214,0 +170778228899,214,0 +170778228948,214,0 +170778228996,213,0 +170778229046,213,0 +170778229093,213,0 +170778229141,213,0 +170778229189,213,0 +170778229237,213,0 +170778229285,214,0 +170778229334,213,0 +170778229382,213,0 +170778229431,214,0 +170778229479,214,0 +170778229528,214,0 +170778229576,214,0 +170778229624,214,0 +170778229672,214,0 +170778229720,214,0 +170778229769,214,0 +170778229817,213,0 +170778229865,213,0 +170778229913,213,0 +170778229962,213,0 +170778230012,213,0 +170778230060,213,0 +170778230108,213,0 +170778230155,213,0 +170778230203,214,0 +170778230251,214,0 +170778230299,214,0 +170778230347,214,0 +170778230394,214,0 +170778230442,214,0 +170778230490,214,0 +170778230538,214,0 +170778230586,214,0 +170778230634,214,0 +170778230681,213,0 +170778230729,213,0 +170778230777,213,0 +170778230825,213,0 +170778230873,213,0 +170778230922,213,0 +170778230972,214,0 +170778231019,214,0 +170778231067,214,0 +170778231115,214,0 +170778231163,214,0 +170778231211,214,0 +170778231259,214,0 +170778231307,214,0 +170778231355,214,0 +170778231402,214,0 +170778231452,214,0 +170778231500,214,0 +170778231548,213,0 +170778231597,213,0 +170778231645,213,0 +170778231692,213,0 +170778231740,214,0 +170778231788,214,0 +170778231836,214,0 +170778231884,214,0 +170778231932,214,0 +170778231980,214,0 +170778232028,214,0 +170778232077,214,0 +170778232125,214,0 +170778232173,214,0 +170778232221,214,0 +170778232269,214,0 +170778232318,214,0 +170778232366,213,0 +170778232414,213,0 +170778232463,213,0 +170778232511,213,0 +170778232561,213,0 +170778232609,213,0 +170778232657,214,0 +170778232706,214,0 +170778232754,214,0 +170778232802,214,0 +170778232850,214,0 +170778232899,215,0 +170778232947,214,0 +170778232995,214,0 +170778233043,214,0 +170778233091,214,0 +170778233140,214,0 +170778233190,213,0 +170778233239,213,0 +170778233287,213,0 +170778233337,213,0 +170778233385,213,0 +170778233432,213,0 +170778233480,214,0 +170778233528,214,0 +170778233578,214,0 +170778233626,214,0 +170778233674,214,0 +170778233723,214,0 +170778233773,214,0 +170778233821,214,0 +170778233869,214,0 +170778233918,214,0 +170778233966,214,0 +170778234014,214,0 +170778234062,213,0 +170778234110,213,0 +170778234159,213,0 +170778234209,213,0 +170778234257,213,0 +170778234304,213,0 +170778234354,213,0 +170778234402,213,0 +170778234450,213,0 +170778234499,213,0 +170778234547,214,0 +170778234595,214,0 +170778234645,214,0 +170778234692,214,0 +170778234740,214,0 +170778234788,214,0 +170778234836,214,0 +170778234884,214,0 +170778234932,213,0 +170778234980,213,0 +170778235028,213,0 +170778235077,213,0 +170778235125,213,0 +170778235175,213,0 +170778235224,214,0 +170778235274,214,0 +170778235322,214,0 +170778235369,214,0 +170778235417,214,0 +170778235465,214,0 +170778235513,214,0 +170778235561,215,0 +170778235609,214,0 +170778235657,214,0 +170778235705,214,0 +170778235753,213,0 +170778235802,213,0 +170778235850,213,0 +170778235898,213,0 +170778235946,213,0 +170778235994,213,0 +170778236042,214,0 +170778236090,213,0 +170778236138,213,0 +170778236187,214,0 +170778236235,214,0 +170778236283,214,0 +170778236331,214,0 +170778236379,214,0 +170778236427,214,0 +170778236475,214,0 +170778236525,214,0 +170778236574,213,0 +170778236622,213,0 +170778236670,213,0 +170778236718,213,0 +170778236766,213,0 +170778236814,213,0 +170778236863,214,0 +170778236911,214,0 +170778236959,214,0 +170778237007,214,0 +170778237055,214,0 +170778237103,214,0 +170778237151,214,0 +170778237200,214,0 +170778237248,214,0 +170778237296,214,0 +170778237344,214,0 +170778237394,214,0 +170778237442,213,0 +170778237490,213,0 +170778237537,213,0 +170778237585,213,0 +170778237633,213,0 +170778237683,213,0 +170778237732,213,0 +170778237780,214,0 +170778237828,214,0 +170778237877,214,0 +170778237925,214,0 +170778237973,214,0 +170778238023,214,0 +170778238071,214,0 +170778238119,214,0 +170778238167,214,0 +170778238214,214,0 +170778238262,213,0 +170778238310,213,0 +170778238358,213,0 +170778238406,213,0 +170778238454,213,0 +170778238502,213,0 +170778238550,214,0 +170778238598,213,0 +170778238648,214,0 +170778238695,214,0 +170778238745,214,0 +170778238794,214,0 +170778238844,214,0 +170778238892,214,0 +170778238940,214,0 +170778238988,214,0 +170778239036,214,0 +170778239085,214,0 +170778239133,213,0 +170778239183,213,0 +170778239231,213,0 +170778239280,213,0 +170778239328,213,0 +170778239376,213,0 +170778239425,214,0 +170778239473,214,0 +170778239521,214,0 +170778239569,214,0 +170778239617,214,0 +170778239665,214,0 +170778239713,214,0 +170778239761,214,0 +170778239810,214,0 +170778239858,214,0 +170778239906,214,0 +170778239955,213,0 +170778240005,213,0 diff --git a/laser_value/0213-10.csv b/laser_value/0213-10.csv new file mode 100644 index 0000000..846c098 --- /dev/null +++ b/laser_value/0213-10.csv @@ -0,0 +1,7452 @@ +timestamp,laser_value,event +170778240053,213,0 +170778240103,213,0 +170778240151,213,0 +170778240200,213,0 +170778240250,214,0 +170778240298,214,0 +170778240347,214,0 +170778240395,214,0 +170778240445,214,0 +170778240494,214,0 +170778240542,214,0 +170778240590,214,0 +170778240638,214,0 +170778240686,214,0 +170778240734,214,0 +170778240782,214,0 +170778240831,213,0 +170778240880,213,0 +170778240928,213,0 +170778240978,213,0 +170778241026,213,0 +170778241075,214,0 +170778241123,213,0 +170778241173,213,0 +170778241221,214,0 +170778241269,214,0 +170778241317,214,0 +170778241365,214,0 +170778241414,214,0 +170778241462,214,0 +170778241510,214,0 +170778241558,214,0 +170778241607,214,0 +170778241657,213,0 +170778241706,213,0 +170778241754,213,0 +170778241804,213,0 +170778241853,213,0 +170778241901,213,0 +170778241949,213,0 +170778241997,213,0 +170778242045,214,0 +170778242094,214,0 +170778242142,214,0 +170778242192,214,0 +170778242241,214,0 +170778242289,214,0 +170778242337,214,0 +170778242385,214,0 +170778242435,214,0 +170778242484,213,0 +170778242532,213,0 +170778242580,213,0 +170778242629,213,0 +170778242679,213,0 +170778242727,213,0 +170778242775,213,0 +170778242824,213,0 +170778242874,213,0 +170778242922,214,0 +170778242969,214,0 +170778243017,214,0 +170778243065,214,0 +170778243113,214,0 +170778243163,214,0 +170778243212,214,0 +170778243262,214,0 +170778243310,214,0 +170778243358,213,0 +170778243406,213,0 +170778243454,213,0 +170778243502,213,0 +170778243550,213,0 +170778243597,214,0 +170778243645,214,0 +170778243693,213,0 +170778243741,214,0 +170778243789,214,0 +170778243839,214,0 +170778243887,214,0 +170778243936,214,0 +170778243985,214,0 +170778244033,214,0 +170778244081,214,0 +170778244131,214,0 +170778244179,213,0 +170778244227,213,0 +170778244276,213,0 +170778244326,213,0 +170778244375,213,0 +170778244423,213,0 +170778244471,213,0 +170778244519,213,0 +170778244567,214,0 +170778244615,214,0 +170778244665,214,0 +170778244712,214,0 +170778244760,214,0 +170778244810,214,0 +170778244859,214,0 +170778244907,214,0 +170778244955,214,0 +170778245003,214,0 +170778245051,213,0 +170778245099,213,0 +170778245147,213,0 +170778245197,213,0 +170778245244,213,0 +170778245292,214,0 +170778245342,213,0 +170778245390,214,0 +170778245438,214,0 +170778245487,214,0 +170778245535,214,0 +170778245585,214,0 +170778245632,214,0 +170778245680,214,0 +170778245728,214,0 +170778245776,214,0 +170778245824,214,0 +170778245872,213,0 +170778245922,213,0 +170778245970,213,0 +170778246017,213,0 +170778246065,214,0 +170778246115,213,0 +170778246163,214,0 +170778246211,214,0 +170778246260,214,0 +170778246308,214,0 +170778246356,214,0 +170778246405,214,0 +170778246453,214,0 +170778246501,214,0 +170778246551,214,0 +170778246600,215,0 +170778246648,214,0 +170778246696,213,0 +170778246744,213,0 +170778246794,213,0 +170778246842,213,0 +170778246889,214,0 +170778246937,214,0 +170778246985,213,0 +170778247033,214,0 +170778247081,214,0 +170778247129,214,0 +170778247177,214,0 +170778247225,214,0 +170778247273,214,0 +170778247322,214,0 +170778247370,214,0 +170778247418,214,0 +170778247466,214,0 +170778247516,214,0 +170778247563,213,0 +170778247611,213,0 +170778247659,213,0 +170778247707,213,0 +170778247755,213,0 +170778247805,213,0 +170778247854,213,0 +170778247904,214,0 +170778247952,214,0 +170778247999,214,0 +170778248049,214,0 +170778248097,214,0 +170778248145,214,0 +170778248194,214,0 +170778248242,214,0 +170778248292,214,0 +170778248339,214,0 +170778248387,213,0 +170778248437,213,0 +170778248486,213,0 +170778248534,213,0 +170778248582,213,0 +170778248630,213,0 +170778248678,213,0 +170778248726,214,0 +170778248774,214,0 +170778248822,214,0 +170778248871,214,0 +170778248919,214,0 +170778248967,214,0 +170778249015,214,0 +170778249065,214,0 +170778249114,214,0 +170778249162,214,0 +170778249210,214,0 +170778249258,213,0 +170778249306,213,0 +170778249354,213,0 +170778249403,213,0 +170778249451,213,0 +170778249499,213,0 +170778249547,213,0 +170778249595,213,0 +170778249644,214,0 +170778249694,214,0 +170778249742,214,0 +170778249789,214,0 +170778249837,214,0 +170778249887,214,0 +170778249935,214,0 +170778249984,214,0 +170778250032,215,0 +170778250080,213,0 +170778250128,213,0 +170778250176,213,0 +170778250224,213,0 +170778250273,213,0 +170778250321,213,0 +170778250371,213,0 +170778250418,213,0 +170778250466,213,0 +170778250514,214,0 +170778250562,214,0 +170778250612,214,0 +170778250661,214,0 +170778250711,214,0 +170778250759,214,0 +170778250807,214,0 +170778250856,214,0 +170778250904,213,0 +170778250952,213,0 +170778251001,213,0 +170778251049,213,0 +170778251098,213,0 +170778251146,213,0 +170778251196,213,0 +170778251244,213,0 +170778251293,213,0 +170778251343,213,0 +170778251391,214,0 +170778251438,214,0 +170778251486,214,0 +170778251534,214,0 +170778251582,214,0 +170778251630,214,0 +170778251679,214,0 +170778251727,214,0 +170778251775,213,0 +170778251823,213,0 +170778251871,213,0 +170778251919,213,0 +170778251967,213,0 +170778252015,213,0 +170778252064,213,0 +170778252112,213,0 +170778252160,213,0 +170778252208,214,0 +170778252258,214,0 +170778252306,214,0 +170778252354,214,0 +170778252402,214,0 +170778252451,214,0 +170778252499,214,0 +170778252547,214,0 +170778252595,213,0 +170778252644,213,0 +170778252692,213,0 +170778252742,213,0 +170778252790,213,0 +170778252838,213,0 +170778252887,213,0 +170778252936,213,0 +170778252984,213,0 +170778253034,213,0 +170778253082,214,0 +170778253130,213,0 +170778253177,214,0 +170778253227,214,0 +170778253275,214,0 +170778253323,214,0 +170778253372,214,0 +170778253422,214,0 +170778253471,213,0 +170778253519,213,0 +170778253567,213,0 +170778253615,213,0 +170778253663,213,0 +170778253711,214,0 +170778253758,213,0 +170778253808,213,0 +170778253857,214,0 +170778253905,214,0 +170778253955,214,0 +170778254004,214,0 +170778254052,214,0 +170778254100,214,0 +170778254149,214,0 +170778254197,214,0 +170778254246,214,0 +170778254294,213,0 +170778254342,213,0 +170778254390,213,0 +170778254438,213,0 +170778254486,213,0 +170778254533,213,0 +170778254581,214,0 +170778254629,214,0 +170778254677,214,0 +170778254726,214,0 +170778254774,214,0 +170778254822,214,0 +170778254870,214,0 +170778254918,214,0 +170778254966,214,0 +170778255014,214,0 +170778255061,214,0 +170778255109,214,0 +170778255159,214,0 +170778255207,213,0 +170778255255,214,0 +170778255304,214,0 +170778255352,214,0 +170778255400,214,0 +170778255448,214,0 +170778255496,214,0 +170778255544,214,0 +170778255593,214,0 +170778255641,214,0 +170778255689,214,0 +170778255737,214,0 +170778255785,214,0 +170778255833,214,0 +170778255881,214,0 +170778255929,213,0 +170778255977,214,0 +170778256024,214,0 +170778256072,214,0 +170778256120,214,0 +170778256169,214,0 +170778256217,214,0 +170778256265,214,0 +170778256315,214,0 +170778256363,214,0 +170778256411,214,0 +170778256460,214,0 +170778256508,214,0 +170778256557,214,0 +170778256605,214,0 +170778256653,214,0 +170778256701,214,0 +170778256749,214,0 +170778256797,214,0 +170778256845,213,0 +170778256892,214,0 +170778256940,214,0 +170778256988,214,0 +170778257036,214,0 +170778257084,214,0 +170778257132,214,0 +170778257179,214,0 +170778257227,214,0 +170778257275,214,0 +170778257323,215,0 +170778257372,215,0 +170778257422,214,0 +170778257469,214,0 +170778257517,214,0 +170778257565,214,0 +170778257613,214,0 +170778257661,214,0 +170778257708,214,0 +170778257756,214,0 +170778257804,214,0 +170778257852,215,0 +170778257900,214,0 +170778257948,214,0 +170778257997,215,0 +170778258045,215,0 +170778258093,215,0 +170778258142,215,0 +170778258191,214,0 +170778258239,215,0 +170778258287,214,0 +170778258335,214,0 +170778258383,214,0 +170778258431,214,0 +170778258479,214,0 +170778258527,214,0 +170778258576,214,0 +170778258624,214,0 +170778258672,214,0 +170778258720,214,0 +170778258768,214,0 +170778258816,214,0 +170778258864,214,0 +170778258912,214,0 +170778258961,214,0 +170778259011,215,0 +170778259060,214,0 +170778259109,214,0 +170778259157,214,0 +170778259205,214,0 +170778259255,213,0 +170778259303,213,0 +170778259352,214,0 +170778259400,214,0 +170778259448,214,0 +170778259496,214,0 +170778259544,214,0 +170778259593,214,0 +170778259641,214,0 +170778259689,215,0 +170778259737,214,0 +170778259784,214,0 +170778259832,215,0 +170778259880,214,0 +170778259928,214,0 +170778259976,214,0 +170778260024,214,0 +170778260071,213,0 +170778260119,213,0 +170778260167,213,0 +170778260215,213,0 +170778260263,214,0 +170778260311,213,0 +170778260359,214,0 +170778260406,214,0 +170778260454,214,0 +170778260502,214,0 +170778260550,214,0 +170778260599,214,0 +170778260647,214,0 +170778260697,214,0 +170778260745,214,0 +170778260792,214,0 +170778260840,214,0 +170778260890,213,0 +170778260938,213,0 +170778260986,213,0 +170778261033,213,0 +170778261081,213,0 +170778261131,213,0 +170778261179,214,0 +170778261228,214,0 +170778261276,213,0 +170778261326,214,0 +170778261375,214,0 +170778261425,214,0 +170778261473,214,0 +170778261522,214,0 +170778261570,214,0 +170778261618,214,0 +170778261667,214,0 +170778261715,213,0 +170778261763,213,0 +170778261811,213,0 +170778261860,213,0 +170778261910,213,0 +170778261959,213,0 +170778262009,214,0 +170778262057,214,0 +170778262106,214,0 +170778262154,214,0 +170778262204,214,0 +170778262252,214,0 +170778262301,214,0 +170778262349,214,0 +170778262399,214,0 +170778262446,214,0 +170778262496,214,0 +170778262544,213,0 +170778262593,213,0 +170778262641,213,0 +170778262689,213,0 +170778262737,213,0 +170778262785,213,0 +170778262833,213,0 +170778262882,213,0 +170778262930,214,0 +170778262978,214,0 +170778263026,214,0 +170778263075,214,0 +170778263123,214,0 +170778263171,214,0 +170778263219,214,0 +170778263267,214,0 +170778263315,214,0 +170778263364,213,0 +170778263412,213,0 +170778263460,213,0 +170778263509,213,0 +170778263557,213,0 +170778263605,214,0 +170778263653,214,0 +170778263701,214,0 +170778263751,214,0 +170778263799,214,0 +170778263846,214,0 +170778263894,214,0 +170778263942,214,0 +170778263990,215,0 +170778264038,214,0 +170778264086,214,0 +170778264135,214,0 +170778264185,213,0 +170778264233,213,0 +170778264281,213,0 +170778264328,213,0 +170778264376,213,0 +170778264424,213,0 +170778264472,214,0 +170778264522,214,0 +170778264569,214,0 +170778264617,214,0 +170778264665,214,0 +170778264713,214,0 +170778264761,214,0 +170778264809,214,0 +170778264857,214,0 +170778264905,214,0 +170778264952,214,0 +170778265002,213,0 +170778265050,213,0 +170778265098,213,0 +170778265146,213,0 +170778265193,213,0 +170778265241,213,0 +170778265289,213,0 +170778265337,213,0 +170778265385,214,0 +170778265434,213,0 +170778265482,214,0 +170778265530,214,0 +170778265578,214,0 +170778265626,214,0 +170778265674,214,0 +170778265722,214,0 +170778265770,214,0 +170778265818,213,0 +170778265868,213,0 +170778265917,213,0 +170778265965,213,0 +170778266014,213,0 +170778266062,213,0 +170778266112,213,0 +170778266160,213,0 +170778266209,213,0 +170778266257,213,0 +170778266305,214,0 +170778266353,213,0 +170778266402,214,0 +170778266450,214,0 +170778266498,214,0 +170778266548,214,0 +170778266596,214,0 +170778266644,213,0 +170778266692,213,0 +170778266740,213,0 +170778266787,213,0 +170778266835,213,0 +170778266883,213,0 +170778266931,213,0 +170778266979,213,0 +170778267027,213,0 +170778267077,213,0 +170778267126,214,0 +170778267174,214,0 +170778267222,214,0 +170778267270,214,0 +170778267319,214,0 +170778267369,214,0 +170778267417,214,0 +170778267465,213,0 +170778267513,213,0 +170778267561,213,0 +170778267609,213,0 +170778267656,213,0 +170778267706,213,0 +170778267754,213,0 +170778267802,213,0 +170778267850,213,0 +170778267899,214,0 +170778267947,214,0 +170778267997,214,0 +170778268046,214,0 +170778268096,214,0 +170778268144,214,0 +170778268191,214,0 +170778268239,214,0 +170778268289,213,0 +170778268338,213,0 +170778268388,213,0 +170778268436,213,0 +170778268484,213,0 +170778268531,214,0 +170778268579,213,0 +170778268627,214,0 +170778268675,214,0 +170778268723,214,0 +170778268771,214,0 +170778268819,214,0 +170778268867,214,0 +170778268915,214,0 +170778268964,215,0 +170778269012,214,0 +170778269060,214,0 +170778269110,214,0 +170778269159,214,0 +170778269209,214,0 +170778269256,214,0 +170778269306,214,0 +170778269354,214,0 +170778269403,214,0 +170778269453,214,0 +170778269501,214,0 +170778269549,214,0 +170778269597,214,0 +170778269646,214,0 +170778269696,215,0 +170778269744,215,0 +170778269793,215,0 +170778269841,214,0 +170778269889,214,0 +170778269937,214,0 +170778269985,214,0 +170778270034,214,0 +170778270082,214,0 +170778270132,214,0 +170778270181,214,0 +170778270231,215,0 +170778270280,215,0 +170778270328,215,0 +170778270378,215,0 +170778270426,215,0 +170778270474,215,0 +170778270522,215,0 +170778270570,215,0 +170778270617,214,0 +170778270665,214,0 +170778270715,214,0 +170778270763,214,0 +170778270811,214,0 +170778270858,214,0 +170778270906,214,0 +170778270954,214,0 +170778271002,214,0 +170778271051,214,0 +170778271101,214,0 +170778271149,214,0 +170778271197,214,0 +170778271246,215,0 +170778271296,214,0 +170778271345,215,0 +170778271393,214,0 +170778271441,215,0 +170778271489,215,0 +170778271537,214,0 +170778271585,214,0 +170778271633,214,0 +170778271681,214,0 +170778271729,214,0 +170778271777,214,0 +170778271825,214,0 +170778271873,214,0 +170778271922,214,0 +170778271970,214,0 +170778272018,215,0 +170778272066,215,0 +170778272115,215,0 +170778272165,215,0 +170778272213,215,0 +170778272262,215,0 +170778272312,214,0 +170778272361,214,0 +170778272411,213,0 +170778272460,213,0 +170778272508,214,0 +170778272556,213,0 +170778272604,214,0 +170778272653,214,0 +170778272701,214,0 +170778272751,214,0 +170778272799,214,0 +170778272848,214,0 +170778272898,214,0 +170778272946,214,0 +170778272994,215,0 +170778273042,215,0 +170778273091,215,0 +170778273141,214,0 +170778273189,214,0 +170778273236,213,0 +170778273284,213,0 +170778273334,213,0 +170778273382,213,0 +170778273430,213,0 +170778273478,214,0 +170778273526,214,0 +170778273574,214,0 +170778273622,214,0 +170778273669,214,0 +170778273719,214,0 +170778273767,214,0 +170778273815,214,0 +170778273863,214,0 +170778273912,214,0 +170778273960,214,0 +170778274008,214,0 +170778274056,213,0 +170778274104,213,0 +170778274152,213,0 +170778274200,213,0 +170778274248,213,0 +170778274297,213,0 +170778274347,214,0 +170778274396,214,0 +170778274444,214,0 +170778274494,214,0 +170778274542,214,0 +170778274589,214,0 +170778274637,214,0 +170778274685,214,0 +170778274733,214,0 +170778274781,214,0 +170778274831,214,0 +170778274879,213,0 +170778274927,213,0 +170778274975,213,0 +170778275024,213,0 +170778275072,213,0 +170778275120,213,0 +170778275168,214,0 +170778275216,214,0 +170778275264,214,0 +170778275313,214,0 +170778275361,214,0 +170778275409,214,0 +170778275457,214,0 +170778275505,214,0 +170778275554,214,0 +170778275602,214,0 +170778275652,214,0 +170778275700,213,0 +170778275748,213,0 +170778275796,213,0 +170778275845,214,0 +170778275893,214,0 +170778275942,214,0 +170778275992,214,0 +170778276040,214,0 +170778276088,214,0 +170778276136,214,0 +170778276185,214,0 +170778276235,214,0 +170778276283,214,0 +170778276331,214,0 +170778276380,214,0 +170778276430,214,0 +170778276479,214,0 +170778276527,213,0 +170778276575,213,0 +170778276625,213,0 +170778276673,214,0 +170778276722,214,0 +170778276770,214,0 +170778276818,214,0 +170778276866,214,0 +170778276915,214,0 +170778276963,214,0 +170778277011,215,0 +170778277059,215,0 +170778277107,215,0 +170778277155,214,0 +170778277204,214,0 +170778277254,214,0 +170778277303,213,0 +170778277351,213,0 +170778277399,213,0 +170778277447,213,0 +170778277497,213,0 +170778277544,213,0 +170778277592,213,0 +170778277640,213,0 +170778277690,213,0 +170778277738,214,0 +170778277786,214,0 +170778277834,214,0 +170778277882,214,0 +170778277929,214,0 +170778277977,214,0 +170778278025,214,0 +170778278073,214,0 +170778278121,213,0 +170778278171,213,0 +170778278218,213,0 +170778278266,213,0 +170778278314,213,0 +170778278362,213,0 +170778278410,213,0 +170778278458,214,0 +170778278506,214,0 +170778278554,214,0 +170778278601,214,0 +170778278651,214,0 +170778278700,214,0 +170778278748,214,0 +170778278798,214,0 +170778278846,214,0 +170778278894,214,0 +170778278943,213,0 +170778278991,213,0 +170778279039,213,0 +170778279087,213,0 +170778279137,213,0 +170778279186,213,0 +170778279234,213,0 +170778279282,213,0 +170778279330,214,0 +170778279380,213,0 +170778279427,214,0 +170778279475,214,0 +170778279523,214,0 +170778279573,214,0 +170778279621,214,0 +170778279670,214,0 +170778279718,214,0 +170778279768,213,0 +170778279815,213,0 +170778279863,213,0 +170778279911,213,0 +170778279959,213,0 +170778280009,213,0 +170778280057,213,0 +170778280106,214,0 +170778280154,213,0 +170778280202,213,0 +170778280252,214,0 +170778280300,214,0 +170778280348,214,0 +170778280395,214,0 +170778280443,214,0 +170778280493,214,0 +170778280541,214,0 +170778280589,213,0 +170778280638,213,0 +170778280688,213,0 +170778280736,213,0 +170778280784,213,0 +170778280832,214,0 +170778280880,213,0 +170778280927,213,0 +170778280977,214,0 +170778281025,214,0 +170778281073,214,0 +170778281121,214,0 +170778281169,214,0 +170778281218,214,0 +170778281266,214,0 +170778281314,214,0 +170778281362,214,0 +170778281410,213,0 +170778281459,213,0 +170778281507,213,0 +170778281555,213,0 +170778281605,213,0 +170778281653,213,0 +170778281701,213,0 +170778281749,213,0 +170778281796,213,0 +170778281846,214,0 +170778281895,214,0 +170778281945,214,0 +170778281993,214,0 +170778282041,214,0 +170778282089,214,0 +170778282137,214,0 +170778282185,214,0 +170778282233,213,0 +170778282281,213,0 +170778282328,213,0 +170778282378,213,0 +170778282426,213,0 +170778282475,213,0 +170778282525,214,0 +170778282573,214,0 +170778282621,214,0 +170778282670,214,0 +170778282718,214,0 +170778282766,214,0 +170778282814,214,0 +170778282862,214,0 +170778282910,214,0 +170778282958,214,0 +170778283006,214,0 +170778283056,213,0 +170778283105,213,0 +170778283153,214,0 +170778283202,213,0 +170778283250,213,0 +170778283298,214,0 +170778283348,214,0 +170778283396,214,0 +170778283443,214,0 +170778283491,214,0 +170778283539,214,0 +170778283587,214,0 +170778283635,214,0 +170778283683,214,0 +170778283731,214,0 +170778283779,214,0 +170778283828,214,0 +170778283876,213,0 +170778283924,213,0 +170778283974,214,0 +170778284023,214,0 +170778284073,213,0 +170778284122,214,0 +170778284172,214,0 +170778284220,214,0 +170778284268,214,0 +170778284316,214,0 +170778284365,214,0 +170778284413,214,0 +170778284463,214,0 +170778284510,214,0 +170778284558,214,0 +170778284606,214,0 +170778284656,214,0 +170778284704,213,0 +170778284753,213,0 +170778284801,214,0 +170778284849,213,0 +170778284897,213,0 +170778284945,213,0 +170778284993,213,0 +170778285041,214,0 +170778285090,214,0 +170778285138,214,0 +170778285187,214,0 +170778285237,214,0 +170778285286,214,0 +170778285334,214,0 +170778285384,214,0 +170778285431,214,0 +170778285481,213,0 +170778285529,213,0 +170778285577,213,0 +170778285625,213,0 +170778285674,213,0 +170778285722,214,0 +170778285770,214,0 +170778285818,214,0 +170778285866,214,0 +170778285914,214,0 +170778285964,214,0 +170778286013,214,0 +170778286061,214,0 +170778286109,214,0 +170778286157,214,0 +170778286206,214,0 +170778286254,214,0 +170778286302,213,0 +170778286350,213,0 +170778286398,213,0 +170778286446,213,0 +170778286494,214,0 +170778286542,214,0 +170778286591,214,0 +170778286639,214,0 +170778286687,214,0 +170778286735,214,0 +170778286783,214,0 +170778286831,214,0 +170778286880,214,0 +170778286928,215,0 +170778286976,214,0 +170778287024,214,0 +170778287072,214,0 +170778287120,213,0 +170778287169,213,0 +170778287217,213,0 +170778287265,213,0 +170778287313,214,0 +170778287361,214,0 +170778287411,214,0 +170778287460,214,0 +170778287508,214,0 +170778287556,214,0 +170778287605,214,0 +170778287653,214,0 +170778287701,214,0 +170778287750,214,0 +170778287798,214,0 +170778287846,214,0 +170778287894,213,0 +170778287942,213,0 +170778287990,213,0 +170778288039,213,0 +170778288087,213,0 +170778288135,213,0 +170778288185,213,0 +170778288234,213,0 +170778288282,213,0 +170778288331,214,0 +170778288379,214,0 +170778288429,214,0 +170778288478,214,0 +170778288526,214,0 +170778288575,215,0 +170778288623,214,0 +170778288671,214,0 +170778288719,213,0 +170778288767,213,0 +170778288815,213,0 +170778288863,213,0 +170778288913,213,0 +170778288960,213,0 +170778289010,213,0 +170778289059,213,0 +170778289109,213,0 +170778289157,214,0 +170778289206,214,0 +170778289256,214,0 +170778289305,214,0 +170778289353,214,0 +170778289403,214,0 +170778289452,214,0 +170778289500,213,0 +170778289550,213,0 +170778289598,213,0 +170778289646,213,0 +170778289694,213,0 +170778289741,213,0 +170778289789,213,0 +170778289837,213,0 +170778289887,213,0 +170778289935,213,0 +170778289982,214,0 +170778290030,214,0 +170778290080,214,0 +170778290128,214,0 +170778290176,214,0 +170778290224,214,0 +170778290272,214,0 +170778290320,213,0 +170778290367,213,0 +170778290415,213,0 +170778290463,213,0 +170778290513,213,0 +170778290561,213,0 +170778290609,213,0 +170778290656,213,0 +170778290706,214,0 +170778290754,213,0 +170778290802,214,0 +170778290850,214,0 +170778290898,214,0 +170778290947,214,0 +170778290997,214,0 +170778291045,214,0 +170778291092,214,0 +170778291140,213,0 +170778291188,213,0 +170778291236,213,0 +170778291286,213,0 +170778291335,213,0 +170778291385,213,0 +170778291434,213,0 +170778291482,213,0 +170778291530,214,0 +170778291580,214,0 +170778291627,214,0 +170778291675,214,0 +170778291723,214,0 +170778291771,214,0 +170778291819,214,0 +170778291867,214,0 +170778291917,213,0 +170778291966,213,0 +170778292016,213,0 +170778292063,213,0 +170778292111,213,0 +170778292159,213,0 +170778292207,213,0 +170778292257,213,0 +170778292305,214,0 +170778292353,214,0 +170778292402,214,0 +170778292452,214,0 +170778292500,214,0 +170778292549,214,0 +170778292597,214,0 +170778292645,214,0 +170778292693,214,0 +170778292741,213,0 +170778292791,213,0 +170778292839,213,0 +170778292886,213,0 +170778292934,213,0 +170778292982,213,0 +170778293030,214,0 +170778293078,214,0 +170778293126,214,0 +170778293174,214,0 +170778293223,214,0 +170778293273,214,0 +170778293321,214,0 +170778293369,214,0 +170778293417,214,0 +170778293465,214,0 +170778293513,214,0 +170778293562,213,0 +170778293610,213,0 +170778293658,213,0 +170778293706,213,0 +170778293755,214,0 +170778293803,214,0 +170778293853,214,0 +170778293902,214,0 +170778293952,214,0 +170778294001,214,0 +170778294051,214,0 +170778294099,214,0 +170778294147,214,0 +170778294195,214,0 +170778294244,214,0 +170778294294,214,0 +170778294342,214,0 +170778294390,214,0 +170778294438,213,0 +170778294486,214,0 +170778294534,214,0 +170778294582,214,0 +170778294629,214,0 +170778294677,214,0 +170778294725,214,0 +170778294773,214,0 +170778294821,214,0 +170778294871,214,0 +170778294919,214,0 +170778294967,214,0 +170778295014,214,0 +170778295062,214,0 +170778295112,214,0 +170778295160,213,0 +170778295209,213,0 +170778295257,213,0 +170778295307,214,0 +170778295355,214,0 +170778295404,214,0 +170778295452,214,0 +170778295502,214,0 +170778295551,214,0 +170778295599,214,0 +170778295647,214,0 +170778295696,214,0 +170778295744,214,0 +170778295792,214,0 +170778295840,214,0 +170778295888,214,0 +170778295936,213,0 +170778295984,213,0 +170778296034,213,0 +170778296081,214,0 +170778296129,214,0 +170778296177,214,0 +170778296227,214,0 +170778296277,214,0 +170778296324,214,0 +170778296372,214,0 +170778296422,214,0 +170778296470,215,0 +170778296518,215,0 +170778296567,214,0 +170778296615,214,0 +170778296663,214,0 +170778296711,214,0 +170778296760,213,0 +170778296808,213,0 +170778296858,213,0 +170778296907,214,0 +170778296955,214,0 +170778297003,214,0 +170778297052,214,0 +170778297100,214,0 +170778297150,214,0 +170778297199,214,0 +170778297247,214,0 +170778297297,214,0 +170778297346,214,0 +170778297394,214,0 +170778297442,214,0 +170778297490,214,0 +170778297538,214,0 +170778297586,214,0 +170778297635,214,0 +170778297683,214,0 +170778297731,214,0 +170778297781,214,0 +170778297829,214,0 +170778297877,214,0 +170778297925,214,0 +170778297972,214,0 +170778298020,214,0 +170778298068,215,0 +170778298116,214,0 +170778298164,215,0 +170778298214,214,0 +170778298263,214,0 +170778298313,214,0 +170778298362,214,0 +170778298410,214,0 +170778298460,213,0 +170778298507,214,0 +170778298555,214,0 +170778298603,214,0 +170778298651,214,0 +170778298699,214,0 +170778298747,214,0 +170778298796,214,0 +170778298844,214,0 +170778298894,214,0 +170778298942,214,0 +170778298990,214,0 +170778299038,214,0 +170778299087,214,0 +170778299135,214,0 +170778299185,213,0 +170778299234,213,0 +170778299284,214,0 +170778299332,213,0 +170778299381,213,0 +170778299431,213,0 +170778299479,214,0 +170778299527,213,0 +170778299575,214,0 +170778299623,214,0 +170778299671,214,0 +170778299718,214,0 +170778299766,214,0 +170778299814,214,0 +170778299862,214,0 +170778299912,214,0 +170778299960,213,0 +170778300008,213,0 +170778300056,214,0 +170778300104,214,0 +170778300151,214,0 +170778300199,214,0 +170778300249,214,0 +170778300297,214,0 +170778300344,214,0 +170778300394,214,0 +170778300442,214,0 +170778300491,214,0 +170778300541,215,0 +170778300589,214,0 +170778300637,214,0 +170778300685,214,0 +170778300734,214,0 +170778300782,213,0 +170778300830,213,0 +170778300878,213,0 +170778300926,213,0 +170778300974,213,0 +170778301022,214,0 +170778301071,214,0 +170778301119,214,0 +170778301169,214,0 +170778301217,214,0 +170778301266,214,0 +170778301314,214,0 +170778301362,214,0 +170778301411,214,0 +170778301459,214,0 +170778301507,214,0 +170778301555,213,0 +170778301603,213,0 +170778301652,213,0 +170778301700,213,0 +170778301748,213,0 +170778301796,213,0 +170778301846,213,0 +170778301895,213,0 +170778301943,213,0 +170778301991,214,0 +170778302040,214,0 +170778302088,214,0 +170778302136,214,0 +170778302184,214,0 +170778302234,214,0 +170778302283,214,0 +170778302333,214,0 +170778302381,213,0 +170778302430,213,0 +170778302478,213,0 +170778302528,213,0 +170778302576,213,0 +170778302624,213,0 +170778302672,213,0 +170778302720,214,0 +170778302769,214,0 +170778302817,214,0 +170778302865,214,0 +170778302913,214,0 +170778302961,214,0 +170778303010,214,0 +170778303058,214,0 +170778303106,214,0 +170778303154,213,0 +170778303202,213,0 +170778303250,213,0 +170778303298,213,0 +170778303346,213,0 +170778303394,213,0 +170778303443,214,0 +170778303491,214,0 +170778303539,214,0 +170778303588,214,0 +170778303638,214,0 +170778303686,214,0 +170778303734,214,0 +170778303783,214,0 +170778303831,214,0 +170778303879,214,0 +170778303928,214,0 +170778303978,213,0 +170778304027,213,0 +170778304075,213,0 +170778304123,213,0 +170778304171,213,0 +170778304219,214,0 +170778304267,214,0 +170778304315,214,0 +170778304363,214,0 +170778304412,214,0 +170778304462,214,0 +170778304511,214,0 +170778304559,214,0 +170778304609,214,0 +170778304657,214,0 +170778304704,214,0 +170778304752,213,0 +170778304802,213,0 +170778304851,213,0 +170778304901,213,0 +170778304949,213,0 +170778304998,214,0 +170778305046,214,0 +170778305094,214,0 +170778305144,214,0 +170778305193,214,0 +170778305242,214,0 +170778305290,214,0 +170778305338,214,0 +170778305388,214,0 +170778305437,214,0 +170778305487,214,0 +170778305535,214,0 +170778305582,213,0 +170778305630,213,0 +170778305678,213,0 +170778305726,214,0 +170778305774,213,0 +170778305822,214,0 +170778305872,214,0 +170778305921,214,0 +170778305971,214,0 +170778306018,214,0 +170778306068,214,0 +170778306117,214,0 +170778306165,214,0 +170778306215,214,0 +170778306263,214,0 +170778306311,214,0 +170778306359,213,0 +170778306407,213,0 +170778306455,213,0 +170778306503,213,0 +170778306552,213,0 +170778306600,213,0 +170778306650,213,0 +170778306698,214,0 +170778306745,214,0 +170778306793,214,0 +170778306841,214,0 +170778306889,214,0 +170778306937,214,0 +170778306985,214,0 +170778307034,214,0 +170778307084,214,0 +170778307133,214,0 +170778307181,213,0 +170778307229,213,0 +170778307277,213,0 +170778307325,213,0 +170778307374,213,0 +170778307422,213,0 +170778307472,213,0 +170778307519,214,0 +170778307567,214,0 +170778307617,214,0 +170778307665,214,0 +170778307713,214,0 +170778307762,214,0 +170778307810,214,0 +170778307860,214,0 +170778307909,214,0 +170778307957,213,0 +170778308005,213,0 +170778308055,213,0 +170778308103,213,0 +170778308151,213,0 +170778308199,213,0 +170778308246,213,0 +170778308296,213,0 +170778308344,213,0 +170778308393,213,0 +170778308441,213,0 +170778308489,213,0 +170778308539,214,0 +170778308587,214,0 +170778308634,214,0 +170778308682,214,0 +170778308732,214,0 +170778308780,213,0 +170778308828,213,0 +170778308876,213,0 +170778308924,213,0 +170778308973,213,0 +170778309023,213,0 +170778309070,213,0 +170778309120,213,0 +170778309168,213,0 +170778309216,213,0 +170778309264,213,0 +170778309312,213,0 +170778309360,213,0 +170778309408,214,0 +170778309455,214,0 +170778309503,214,0 +170778309551,214,0 +170778309599,213,0 +170778309647,213,0 +170778309695,213,0 +170778309744,213,0 +170778309792,213,0 +170778309840,213,0 +170778309888,214,0 +170778309937,214,0 +170778309985,214,0 +170778310033,214,0 +170778310083,214,0 +170778310131,214,0 +170778310179,214,0 +170778310226,214,0 +170778310276,214,0 +170778310324,214,0 +170778310372,213,0 +170778310420,213,0 +170778310469,214,0 +170778310517,213,0 +170778310565,214,0 +170778310615,214,0 +170778310662,214,0 +170778310710,214,0 +170778310760,214,0 +170778310808,214,0 +170778310856,214,0 +170778310905,214,0 +170778310953,214,0 +170778311001,214,0 +170778311049,215,0 +170778311097,214,0 +170778311145,214,0 +170778311193,214,0 +170778311241,213,0 +170778311290,214,0 +170778311338,214,0 +170778311386,214,0 +170778311436,214,0 +170778311485,214,0 +170778311535,214,0 +170778311584,214,0 +170778311632,214,0 +170778311680,214,0 +170778311729,214,0 +170778311777,214,0 +170778311825,214,0 +170778311875,214,0 +170778311923,214,0 +170778311971,214,0 +170778312020,213,0 +170778312068,213,0 +170778312116,214,0 +170778312164,214,0 +170778312212,214,0 +170778312260,214,0 +170778312308,214,0 +170778312357,214,0 +170778312407,214,0 +170778312455,214,0 +170778312504,214,0 +170778312554,214,0 +170778312602,215,0 +170778312651,215,0 +170778312701,214,0 +170778312749,214,0 +170778312796,213,0 +170778312844,214,0 +170778312892,214,0 +170778312940,214,0 +170778312988,214,0 +170778313036,214,0 +170778313084,214,0 +170778313131,214,0 +170778313179,214,0 +170778313228,214,0 +170778313276,214,0 +170778313323,214,0 +170778313371,214,0 +170778313421,214,0 +170778313469,214,0 +170778313516,214,0 +170778313564,214,0 +170778313614,214,0 +170778313663,214,0 +170778313713,214,0 +170778313761,214,0 +170778313809,214,0 +170778313857,214,0 +170778313905,214,0 +170778313952,214,0 +170778314002,214,0 +170778314051,214,0 +170778314099,215,0 +170778314147,215,0 +170778314195,214,0 +170778314243,214,0 +170778314293,214,0 +170778314341,214,0 +170778314389,214,0 +170778314438,214,0 +170778314486,214,0 +170778314534,214,0 +170778314582,214,0 +170778314631,214,0 +170778314679,214,0 +170778314729,214,0 +170778314777,215,0 +170778314826,214,0 +170778314874,214,0 +170778314923,214,0 +170778314971,214,0 +170778315019,214,0 +170778315067,214,0 +170778315115,214,0 +170778315163,214,0 +170778315211,214,0 +170778315259,214,0 +170778315307,214,0 +170778315357,214,0 +170778315406,214,0 +170778315456,214,0 +170778315504,214,0 +170778315552,215,0 +170778315601,214,0 +170778315649,214,0 +170778315699,215,0 +170778315746,215,0 +170778315794,215,0 +170778315842,215,0 +170778315890,214,0 +170778315940,214,0 +170778315989,214,0 +170778316037,214,0 +170778316085,214,0 +170778316133,214,0 +170778316181,214,0 +170778316229,214,0 +170778316277,214,0 +170778316327,214,0 +170778316376,215,0 +170778316424,215,0 +170778316472,215,0 +170778316520,215,0 +170778316568,214,0 +170778316617,214,0 +170778316665,214,0 +170778316713,214,0 +170778316761,213,0 +170778316809,213,0 +170778316857,214,0 +170778316905,214,0 +170778316953,214,0 +170778317003,214,0 +170778317052,214,0 +170778317102,214,0 +170778317151,214,0 +170778317199,214,0 +170778317247,214,0 +170778317297,215,0 +170778317344,214,0 +170778317392,214,0 +170778317440,215,0 +170778317488,214,0 +170778317538,213,0 +170778317586,213,0 +170778317634,213,0 +170778317683,214,0 +170778317733,214,0 +170778317781,214,0 +170778317828,214,0 +170778317876,214,0 +170778317924,214,0 +170778317972,214,0 +170778318020,214,0 +170778318069,215,0 +170778318117,214,0 +170778318165,214,0 +170778318213,214,0 +170778318261,214,0 +170778318310,213,0 +170778318360,213,0 +170778318409,213,0 +170778318457,213,0 +170778318507,214,0 +170778318556,214,0 +170778318606,214,0 +170778318655,214,0 +170778318703,214,0 +170778318753,214,0 +170778318801,214,0 +170778318848,214,0 +170778318898,214,0 +170778318946,214,0 +170778318994,214,0 +170778319042,214,0 +170778319090,213,0 +170778319138,213,0 +170778319186,213,0 +170778319235,213,0 +170778319285,214,0 +170778319333,213,0 +170778319382,213,0 +170778319430,213,0 +170778319479,214,0 +170778319529,214,0 +170778319577,214,0 +170778319626,214,0 +170778319674,214,0 +170778319722,214,0 +170778319772,214,0 +170778319821,214,0 +170778319871,214,0 +170778319920,213,0 +170778319970,213,0 +170778320018,213,0 +170778320065,213,0 +170778320115,213,0 +170778320164,214,0 +170778320212,214,0 +170778320260,214,0 +170778320308,213,0 +170778320356,214,0 +170778320404,214,0 +170778320452,214,0 +170778320501,214,0 +170778320551,214,0 +170778320599,214,0 +170778320647,214,0 +170778320695,213,0 +170778320742,213,0 +170778320792,213,0 +170778320840,213,0 +170778320888,213,0 +170778320936,213,0 +170778320985,213,0 +170778321033,214,0 +170778321081,214,0 +170778321129,214,0 +170778321179,214,0 +170778321227,214,0 +170778321276,214,0 +170778321324,214,0 +170778321372,214,0 +170778321420,214,0 +170778321468,213,0 +170778321516,213,0 +170778321565,213,0 +170778321613,213,0 +170778321663,213,0 +170778321710,213,0 +170778321760,213,0 +170778321808,213,0 +170778321857,214,0 +170778321905,214,0 +170778321955,214,0 +170778322004,214,0 +170778322052,214,0 +170778322100,214,0 +170778322148,214,0 +170778322196,214,0 +170778322245,213,0 +170778322293,213,0 +170778322343,213,0 +170778322391,213,0 +170778322438,213,0 +170778322486,213,0 +170778322534,214,0 +170778322582,214,0 +170778322630,214,0 +170778322680,214,0 +170778322728,214,0 +170778322776,214,0 +170778322824,214,0 +170778322873,214,0 +170778322923,214,0 +170778322971,214,0 +170778323019,213,0 +170778323068,213,0 +170778323118,213,0 +170778323165,213,0 +170778323213,214,0 +170778323261,214,0 +170778323309,214,0 +170778323357,214,0 +170778323405,214,0 +170778323453,214,0 +170778323501,214,0 +170778323549,214,0 +170778323597,214,0 +170778323645,214,0 +170778323692,214,0 +170778323742,214,0 +170778323791,213,0 +170778323841,213,0 +170778323889,213,0 +170778323937,213,0 +170778323986,213,0 +170778324034,214,0 +170778324082,213,0 +170778324129,214,0 +170778324177,214,0 +170778324225,214,0 +170778324273,214,0 +170778324320,214,0 +170778324368,214,0 +170778324417,214,0 +170778324467,214,0 +170778324515,214,0 +170778324563,214,0 +170778324610,213,0 +170778324658,213,0 +170778324706,213,0 +170778324755,213,0 +170778324803,214,0 +170778324851,214,0 +170778324899,214,0 +170778324947,214,0 +170778324996,214,0 +170778325044,214,0 +170778325092,214,0 +170778325140,215,0 +170778325188,214,0 +170778325236,215,0 +170778325283,214,0 +170778325331,214,0 +170778325379,214,0 +170778325427,213,0 +170778325476,214,0 +170778325524,214,0 +170778325572,214,0 +170778325620,214,0 +170778325668,214,0 +170778325716,214,0 +170778325765,214,0 +170778325815,214,0 +170778325863,214,0 +170778325912,215,0 +170778325960,215,0 +170778326008,215,0 +170778326056,214,0 +170778326104,214,0 +170778326152,213,0 +170778326200,213,0 +170778326247,213,0 +170778326295,214,0 +170778326345,214,0 +170778326394,214,0 +170778326444,214,0 +170778326493,214,0 +170778326543,214,0 +170778326591,214,0 +170778326639,214,0 +170778326687,215,0 +170778326734,214,0 +170778326782,214,0 +170778326830,214,0 +170778326878,214,0 +170778326928,214,0 +170778326976,213,0 +170778327025,213,0 +170778327073,213,0 +170778327121,213,0 +170778327169,214,0 +170778327218,214,0 +170778327268,214,0 +170778327317,214,0 +170778327365,214,0 +170778327413,214,0 +170778327461,214,0 +170778327509,214,0 +170778327557,214,0 +170778327605,214,0 +170778327653,214,0 +170778327702,214,0 +170778327750,213,0 +170778327799,213,0 +170778327847,213,0 +170778327895,214,0 +170778327943,214,0 +170778327991,214,0 +170778328038,214,0 +170778328086,214,0 +170778328134,214,0 +170778328182,214,0 +170778328230,214,0 +170778328279,214,0 +170778328327,214,0 +170778328375,214,0 +170778328423,214,0 +170778328472,214,0 +170778328522,214,0 +170778328571,213,0 +170778328619,213,0 +170778328667,213,0 +170778328717,213,0 +170778328766,214,0 +170778328814,214,0 +170778328862,214,0 +170778328910,214,0 +170778328958,214,0 +170778329005,214,0 +170778329055,214,0 +170778329104,214,0 +170778329152,214,0 +170778329202,214,0 +170778329250,214,0 +170778329298,213,0 +170778329347,213,0 +170778329397,213,0 +170778329445,213,0 +170778329493,214,0 +170778329541,214,0 +170778329588,214,0 +170778329636,214,0 +170778329684,214,0 +170778329734,214,0 +170778329781,214,0 +170778329829,214,0 +170778329877,214,0 +170778329925,214,0 +170778329973,214,0 +170778330021,214,0 +170778330070,214,0 +170778330118,213,0 +170778330166,213,0 +170778330214,214,0 +170778330262,214,0 +170778330310,214,0 +170778330358,214,0 +170778330405,214,0 +170778330453,214,0 +170778330501,214,0 +170778330549,214,0 +170778330598,214,0 +170778330646,214,0 +170778330694,215,0 +170778330742,214,0 +170778330790,214,0 +170778330838,214,0 +170778330885,213,0 +170778330933,213,0 +170778330981,213,0 +170778331029,213,0 +170778331077,213,0 +170778331125,213,0 +170778331173,214,0 +170778331222,214,0 +170778331270,214,0 +170778331318,214,0 +170778331365,214,0 +170778331413,214,0 +170778331461,214,0 +170778331509,214,0 +170778331557,214,0 +170778331605,214,0 +170778331653,214,0 +170778331701,213,0 +170778331749,213,0 +170778331796,213,0 +170778331844,213,0 +170778331892,213,0 +170778331942,214,0 +170778331989,213,0 +170778332037,214,0 +170778332085,214,0 +170778332133,214,0 +170778332182,214,0 +170778332230,214,0 +170778332278,214,0 +170778332326,214,0 +170778332374,214,0 +170778332422,214,0 +170778332470,213,0 +170778332519,213,0 +170778332569,213,0 +170778332618,213,0 +170778332668,213,0 +170778332716,213,0 +170778332765,213,0 +170778332815,214,0 +170778332863,213,0 +170778332911,214,0 +170778332959,214,0 +170778333008,214,0 +170778333056,214,0 +170778333104,214,0 +170778333152,214,0 +170778333200,214,0 +170778333249,213,0 +170778333297,213,0 +170778333347,213,0 +170778333395,213,0 +170778333443,213,0 +170778333491,213,0 +170778333539,213,0 +170778333587,213,0 +170778333636,214,0 +170778333684,214,0 +170778333732,214,0 +170778333780,214,0 +170778333829,214,0 +170778333877,214,0 +170778333927,214,0 +170778333974,214,0 +170778334022,213,0 +170778334072,213,0 +170778334120,213,0 +170778334168,213,0 +170778334216,213,0 +170778334264,213,0 +170778334313,213,0 +170778334363,213,0 +170778334412,214,0 +170778334460,214,0 +170778334508,214,0 +170778334556,214,0 +170778334606,214,0 +170778334655,214,0 +170778334705,214,0 +170778334752,214,0 +170778334800,213,0 +170778334848,213,0 +170778334896,213,0 +170778334944,213,0 +170778334992,214,0 +170778335040,214,0 +170778335090,214,0 +170778335138,214,0 +170778335187,214,0 +170778335237,214,0 +170778335286,214,0 +170778335334,214,0 +170778335382,214,0 +170778335430,214,0 +170778335478,214,0 +170778335526,214,0 +170778335574,214,0 +170778335622,214,0 +170778335670,214,0 +170778335719,214,0 +170778335767,214,0 +170778335817,214,0 +170778335865,214,0 +170778335913,214,0 +170778335962,214,0 +170778336010,214,0 +170778336058,215,0 +170778336106,215,0 +170778336154,214,0 +170778336202,214,0 +170778336250,214,0 +170778336298,214,0 +170778336346,214,0 +170778336394,214,0 +170778336442,214,0 +170778336490,214,0 +170778336539,214,0 +170778336587,214,0 +170778336636,214,0 +170778336684,214,0 +170778336732,214,0 +170778336782,214,0 +170778336830,214,0 +170778336878,214,0 +170778336927,215,0 +170778336975,214,0 +170778337023,214,0 +170778337072,214,0 +170778337122,214,0 +170778337170,214,0 +170778337218,214,0 +170778337267,214,0 +170778337315,214,0 +170778337363,214,0 +170778337411,214,0 +170778337461,214,0 +170778337510,214,0 +170778337560,214,0 +170778337608,214,0 +170778337656,215,0 +170778337704,215,0 +170778337751,215,0 +170778337799,215,0 +170778337847,214,0 +170778337895,214,0 +170778337943,214,0 +170778337993,214,0 +170778338042,214,0 +170778338090,214,0 +170778338140,214,0 +170778338187,214,0 +170778338235,214,0 +170778338283,214,0 +170778338333,214,0 +170778338381,214,0 +170778338429,214,0 +170778338477,214,0 +170778338525,214,0 +170778338573,214,0 +170778338621,214,0 +170778338670,214,0 +170778338720,214,0 +170778338769,213,0 +170778338819,213,0 +170778338868,213,0 +170778338918,213,0 +170778338965,214,0 +170778339015,214,0 +170778339063,214,0 +170778339111,214,0 +170778339161,214,0 +170778339208,214,0 +170778339256,215,0 +170778339304,214,0 +170778339352,214,0 +170778339400,214,0 +170778339448,214,0 +170778339496,214,0 +170778339544,213,0 +170778339592,213,0 +170778339642,213,0 +170778339689,213,0 +170778339739,213,0 +170778339787,213,0 +170778339837,214,0 +170778339886,214,0 +170778339935,214,0 +170778339985,214,0 +170778340033,214,0 +170778340081,214,0 +170778340129,214,0 +170778340178,214,0 +170778340228,214,0 +170778340277,214,0 +170778340327,213,0 +170778340375,213,0 +170778340424,213,0 +170778340472,213,0 +170778340520,213,0 +170778340569,213,0 +170778340619,214,0 +170778340668,214,0 +170778340718,213,0 +170778340767,214,0 +170778340817,214,0 +170778340865,214,0 +170778340914,214,0 +170778340962,214,0 +170778341012,214,0 +170778341060,214,0 +170778341108,213,0 +170778341156,213,0 +170778341205,213,0 +170778341253,213,0 +170778341301,213,0 +170778341349,213,0 +170778341397,213,0 +170778341445,213,0 +170778341493,214,0 +170778341540,214,0 +170778341590,214,0 +170778341638,214,0 +170778341686,214,0 +170778341734,214,0 +170778341782,214,0 +170778341830,214,0 +170778341879,213,0 +170778341927,213,0 +170778341975,213,0 +170778342024,213,0 +170778342072,213,0 +170778342120,213,0 +170778342168,213,0 +170778342216,213,0 +170778342266,214,0 +170778342314,214,0 +170778342362,214,0 +170778342410,214,0 +170778342458,214,0 +170778342507,214,0 +170778342555,214,0 +170778342603,214,0 +170778342651,214,0 +170778342699,214,0 +170778342747,214,0 +170778342795,214,0 +170778342843,214,0 +170778342892,214,0 +170778342942,214,0 +170778342991,214,0 +170778343039,214,0 +170778343088,213,0 +170778343138,213,0 +170778343186,213,0 +170778343234,213,0 +170778343282,213,0 +170778343329,213,0 +170778343377,214,0 +170778343425,214,0 +170778343473,214,0 +170778343521,214,0 +170778343570,214,0 +170778343618,214,0 +170778343666,214,0 +170778343714,214,0 +170778343762,214,0 +170778343810,214,0 +170778343857,213,0 +170778343905,213,0 +170778343955,213,0 +170778344005,213,0 +170778344052,213,0 +170778344102,214,0 +170778344151,214,0 +170778344201,214,0 +170778344250,214,0 +170778344298,214,0 +170778344348,214,0 +170778344395,214,0 +170778344443,214,0 +170778344491,214,0 +170778344539,214,0 +170778344587,214,0 +170778344634,213,0 +170778344682,213,0 +170778344732,213,0 +170778344780,214,0 +170778344828,214,0 +170778344877,214,0 +170778344925,214,0 +170778344973,214,0 +170778345022,214,0 +170778345070,214,0 +170778345118,214,0 +170778345166,214,0 +170778345214,214,0 +170778345261,214,0 +170778345309,214,0 +170778345357,214,0 +170778345405,214,0 +170778345453,213,0 +170778345500,213,0 +170778345548,213,0 +170778345596,214,0 +170778345644,214,0 +170778345692,214,0 +170778345740,214,0 +170778345788,214,0 +170778345836,214,0 +170778345884,214,0 +170778345931,214,0 +170778345979,214,0 +170778346027,214,0 +170778346075,214,0 +170778346123,214,0 +170778346170,214,0 +170778346218,213,0 +170778346266,213,0 +170778346314,213,0 +170778346362,214,0 +170778346411,214,0 +170778346459,214,0 +170778346507,214,0 +170778346555,214,0 +170778346603,214,0 +170778346650,214,0 +170778346698,214,0 +170778346746,215,0 +170778346794,215,0 +170778346841,214,0 +170778346889,214,0 +170778346937,214,0 +170778346985,214,0 +170778347033,214,0 +170778347081,214,0 +170778347129,214,0 +170778347177,214,0 +170778347225,214,0 +170778347272,214,0 +170778347320,214,0 +170778347368,214,0 +170778347416,214,0 +170778347464,214,0 +170778347512,215,0 +170778347560,215,0 +170778347607,215,0 +170778347655,214,0 +170778347703,214,0 +170778347751,214,0 +170778347799,214,0 +170778347847,214,0 +170778347895,214,0 +170778347943,214,0 +170778347990,214,0 +170778348038,214,0 +170778348086,214,0 +170778348135,214,0 +170778348183,214,0 +170778348232,214,0 +170778348280,214,0 +170778348328,214,0 +170778348376,215,0 +170778348424,215,0 +170778348471,214,0 +170778348519,214,0 +170778348567,214,0 +170778348615,214,0 +170778348664,214,0 +170778348712,213,0 +170778348760,214,0 +170778348809,214,0 +170778348857,214,0 +170778348907,214,0 +170778348955,214,0 +170778349004,214,0 +170778349052,214,0 +170778349100,214,0 +170778349148,214,0 +170778349198,214,0 +170778349246,215,0 +170778349294,214,0 +170778349342,214,0 +170778349391,214,0 +170778349439,214,0 +170778349489,214,0 +170778349536,214,0 +170778349586,214,0 +170778349634,214,0 +170778349682,214,0 +170778349730,214,0 +170778349777,214,0 +170778349827,215,0 +170778349875,215,0 +170778349923,215,0 +170778349971,214,0 +170778350020,214,0 +170778350068,214,0 +170778350116,213,0 +170778350164,213,0 +170778350212,213,0 +170778350261,214,0 +170778350309,214,0 +170778350357,214,0 +170778350406,214,0 +170778350454,214,0 +170778350502,214,0 +170778350550,214,0 +170778350598,214,0 +170778350646,215,0 +170778350693,215,0 +170778350741,214,0 +170778350789,214,0 +170778350837,214,0 +170778350885,214,0 +170778350933,213,0 +170778350980,213,0 +170778351028,213,0 +170778351076,213,0 +170778351124,214,0 +170778351172,214,0 +170778351220,214,0 +170778351268,214,0 +170778351315,214,0 +170778351363,214,0 +170778351411,214,0 +170778351459,214,0 +170778351508,214,0 +170778351556,214,0 +170778351604,214,0 +170778351652,214,0 +170778351700,213,0 +170778351748,213,0 +170778351797,213,0 +170778351845,213,0 +170778351893,213,0 +170778351941,214,0 +170778351988,213,0 +170778352038,214,0 +170778352087,214,0 +170778352135,214,0 +170778352183,214,0 +170778352231,214,0 +170778352279,214,0 +170778352329,214,0 +170778352376,214,0 +170778352424,214,0 +170778352472,214,0 +170778352522,213,0 +170778352570,213,0 +170778352617,213,0 +170778352665,213,0 +170778352713,213,0 +170778352761,214,0 +170778352809,214,0 +170778352857,214,0 +170778352905,214,0 +170778352952,214,0 +170778353002,214,0 +170778353050,214,0 +170778353098,214,0 +170778353146,214,0 +170778353194,214,0 +170778353242,214,0 +170778353290,213,0 +170778353338,213,0 +170778353387,213,0 +170778353437,213,0 +170778353486,214,0 +170778353534,214,0 +170778353582,214,0 +170778353630,214,0 +170778353679,214,0 +170778353727,214,0 +170778353775,214,0 +170778353823,214,0 +170778353872,214,0 +170778353920,214,0 +170778353970,214,0 +170778354019,214,0 +170778354067,213,0 +170778354115,213,0 +170778354165,213,0 +170778354213,213,0 +170778354262,214,0 +170778354310,214,0 +170778354358,214,0 +170778354406,214,0 +170778354454,214,0 +170778354501,214,0 +170778354551,214,0 +170778354599,214,0 +170778354647,214,0 +170778354695,214,0 +170778354743,214,0 +170778354791,214,0 +170778354839,213,0 +170778354887,213,0 +170778354935,213,0 +170778354983,214,0 +170778355032,214,0 +170778355082,214,0 +170778355131,214,0 +170778355181,214,0 +170778355230,214,0 +170778355278,214,0 +170778355326,214,0 +170778355375,215,0 +170778355425,215,0 +170778355474,214,0 +170778355522,214,0 +170778355570,214,0 +170778355618,214,0 +170778355666,213,0 +170778355716,214,0 +170778355764,214,0 +170778355812,214,0 +170778355861,214,0 +170778355909,214,0 +170778355957,214,0 +170778356007,214,0 +170778356054,214,0 +170778356104,214,0 +170778356152,214,0 +170778356199,214,0 +170778356247,215,0 +170778356295,214,0 +170778356343,214,0 +170778356392,214,0 +170778356440,213,0 +170778356488,213,0 +170778356536,214,0 +170778356584,214,0 +170778356631,214,0 +170778356681,214,0 +170778356729,214,0 +170778356777,214,0 +170778356824,214,0 +170778356872,214,0 +170778356922,214,0 +170778356969,214,0 +170778357017,214,0 +170778357065,214,0 +170778357113,214,0 +170778357161,214,0 +170778357209,213,0 +170778357256,213,0 +170778357304,213,0 +170778357352,213,0 +170778357400,213,0 +170778357448,213,0 +170778357496,214,0 +170778357544,213,0 +170778357591,214,0 +170778357639,214,0 +170778357687,214,0 +170778357735,214,0 +170778357783,214,0 +170778357831,214,0 +170778357879,214,0 +170778357926,214,0 +170778357974,214,0 +170778358022,213,0 +170778358072,213,0 +170778358120,213,0 +170778358167,213,0 +170778358215,213,0 +170778358263,214,0 +170778358311,213,0 +170778358359,214,0 +170778358407,214,0 +170778358454,214,0 +170778358502,214,0 +170778358550,214,0 +170778358598,214,0 +170778358646,214,0 +170778358694,214,0 +170778358741,214,0 +170778358789,213,0 +170778358837,213,0 +170778358885,213,0 +170778358934,213,0 +170778358982,213,0 +170778359032,213,0 +170778359080,213,0 +170778359127,214,0 +170778359175,214,0 +170778359223,214,0 +170778359271,214,0 +170778359319,214,0 +170778359367,214,0 +170778359415,214,0 +170778359464,214,0 +170778359513,214,0 +170778359563,214,0 +170778359611,213,0 +170778359660,214,0 +170778359708,214,0 +170778359756,214,0 +170778359804,214,0 +170778359852,214,0 +170778359901,214,0 +170778359949,214,0 +170778359997,214,0 +170778360045,215,0 +170778360093,215,0 +170778360141,215,0 +170778360189,214,0 +170778360238,214,0 +170778360286,214,0 +170778360336,214,0 +170778360384,214,0 +170778360433,214,0 +170778360481,214,0 +170778360529,214,0 +170778360579,214,0 +170778360628,214,0 +170778360676,214,0 +170778360724,214,0 +170778360772,214,0 +170778360821,214,0 +170778360869,214,0 +170778360917,214,0 +170778360965,215,0 +170778361013,214,0 +170778361063,214,0 +170778361110,214,0 +170778361158,214,0 +170778361206,213,0 +170778361254,214,0 +170778361302,214,0 +170778361350,214,0 +170778361398,214,0 +170778361446,214,0 +170778361495,214,0 +170778361543,214,0 +170778361591,214,0 +170778361641,214,0 +170778361689,214,0 +170778361738,214,0 +170778361786,214,0 +170778361836,214,0 +170778361885,214,0 +170778361933,214,0 +170778361981,213,0 +170778362030,213,0 +170778362080,214,0 +170778362129,214,0 +170778362177,214,0 +170778362225,214,0 +170778362273,214,0 +170778362323,214,0 +170778362372,214,0 +170778362422,214,0 +170778362470,215,0 +170778362519,215,0 +170778362567,214,0 +170778362617,214,0 +170778362666,214,0 +170778362714,214,0 +170778362762,214,0 +170778362810,214,0 +170778362860,214,0 +170778362908,214,0 +170778362956,214,0 +170778363003,214,0 +170778363051,214,0 +170778363099,214,0 +170778363147,215,0 +170778363195,215,0 +170778363243,214,0 +170778363292,215,0 +170778363342,215,0 +170778363391,214,0 +170778363439,214,0 +170778363487,214,0 +170778363536,214,0 +170778363584,214,0 +170778363632,214,0 +170778363680,214,0 +170778363727,214,0 +170778363775,214,0 +170778363825,215,0 +170778363874,214,0 +170778363922,214,0 +170778363970,215,0 +170778364018,215,0 +170778364066,214,0 +170778364114,215,0 +170778364162,214,0 +170778364209,214,0 +170778364257,214,0 +170778364305,213,0 +170778364353,214,0 +170778364401,214,0 +170778364449,214,0 +170778364496,214,0 +170778364544,214,0 +170778364592,214,0 +170778364640,214,0 +170778364688,214,0 +170778364736,214,0 +170778364784,214,0 +170778364831,214,0 +170778364879,214,0 +170778364927,214,0 +170778364975,214,0 +170778365023,214,0 +170778365070,213,0 +170778365118,213,0 +170778365166,213,0 +170778365214,213,0 +170778365262,213,0 +170778365310,214,0 +170778365358,214,0 +170778365405,214,0 +170778365453,214,0 +170778365502,214,0 +170778365550,214,0 +170778365598,214,0 +170778365646,214,0 +170778365694,214,0 +170778365742,214,0 +170778365790,214,0 +170778365838,214,0 +170778365886,213,0 +170778365934,213,0 +170778365981,213,0 +170778366029,213,0 +170778366077,214,0 +170778366125,214,0 +170778366173,214,0 +170778366221,214,0 +170778366269,214,0 +170778366317,214,0 +170778366365,214,0 +170778366413,214,0 +170778366461,214,0 +170778366509,214,0 +170778366557,214,0 +170778366605,214,0 +170778366653,213,0 +170778366702,213,0 +170778366750,213,0 +170778366799,213,0 +170778366847,213,0 +170778366897,213,0 +170778366945,214,0 +170778366994,214,0 +170778367042,214,0 +170778367090,214,0 +170778367138,214,0 +170778367186,214,0 +170778367234,214,0 +170778367282,214,0 +170778367331,214,0 +170778367381,214,0 +170778367428,213,0 +170778367478,213,0 +170778367527,213,0 +170778367577,213,0 +170778367625,213,0 +170778367674,214,0 +170778367722,214,0 +170778367772,214,0 +170778367821,214,0 +170778367869,214,0 +170778367917,214,0 +170778367965,214,0 +170778368013,214,0 +170778368062,214,0 +170778368111,214,0 +170778368159,214,0 +170778368207,213,0 +170778368255,213,0 +170778368302,213,0 +170778368350,213,0 +170778368398,213,0 +170778368446,213,0 +170778368494,213,0 +170778368542,213,0 +170778368591,214,0 +170778368639,214,0 +170778368687,214,0 +170778368735,214,0 +170778368783,214,0 +170778368830,214,0 +170778368878,214,0 +170778368926,214,0 +170778368974,214,0 +170778369022,213,0 +170778369071,213,0 +170778369121,213,0 +170778369169,213,0 +170778369217,213,0 +170778369266,213,0 +170778369314,213,0 +170778369362,214,0 +170778369410,214,0 +170778369457,214,0 +170778369505,214,0 +170778369553,214,0 +170778369602,214,0 +170778369652,214,0 +170778369701,214,0 +170778369749,214,0 +170778369799,213,0 +170778369848,213,0 +170778369896,213,0 +170778369944,213,0 +170778369992,213,0 +170778370040,214,0 +170778370088,214,0 +170778370136,214,0 +170778370184,214,0 +170778370233,214,0 +170778370281,214,0 +170778370331,214,0 +170778370378,214,0 +170778370426,214,0 +170778370474,214,0 +170778370522,214,0 +170778370572,213,0 +170778370621,213,0 +170778370669,213,0 +170778370717,213,0 +170778370765,213,0 +170778370812,213,0 +170778370860,213,0 +170778370908,213,0 +170778370958,213,0 +170778371007,213,0 +170778371055,213,0 +170778371103,214,0 +170778371151,214,0 +170778371198,214,0 +170778371246,214,0 +170778371294,214,0 +170778371342,214,0 +170778371391,213,0 +170778371439,213,0 +170778371487,213,0 +170778371535,213,0 +170778371583,213,0 +170778371631,213,0 +170778371678,213,0 +170778371728,214,0 +170778371776,214,0 +170778371824,214,0 +170778371871,214,0 +170778371919,214,0 +170778371967,214,0 +170778372015,214,0 +170778372063,214,0 +170778372111,214,0 +170778372159,213,0 +170778372206,213,0 +170778372256,214,0 +170778372304,214,0 +170778372351,213,0 +170778372399,214,0 +170778372447,214,0 +170778372495,214,0 +170778372542,214,0 +170778372590,214,0 +170778372638,214,0 +170778372686,214,0 +170778372734,214,0 +170778372782,214,0 +170778372829,214,0 +170778372877,214,0 +170778372925,214,0 +170778372973,214,0 +170778373021,214,0 +170778373069,214,0 +170778373117,214,0 +170778373167,214,0 +170778373214,214,0 +170778373262,214,0 +170778373310,214,0 +170778373360,214,0 +170778373408,214,0 +170778373457,214,0 +170778373507,214,0 +170778373555,214,0 +170778373603,215,0 +170778373650,214,0 +170778373698,213,0 +170778373748,213,0 +170778373796,213,0 +170778373843,213,0 +170778373893,214,0 +170778373941,214,0 +170778373989,213,0 +170778374036,214,0 +170778374084,214,0 +170778374132,214,0 +170778374180,214,0 +170778374228,214,0 +170778374276,214,0 +170778374324,215,0 +170778374373,214,0 +170778374421,214,0 +170778374469,214,0 +170778374517,214,0 +170778374566,214,0 +170778374614,214,0 +170778374662,214,0 +170778374710,214,0 +170778374758,214,0 +170778374808,214,0 +170778374857,214,0 +170778374905,215,0 +170778374953,214,0 +170778375001,215,0 +170778375049,215,0 +170778375098,214,0 +170778375146,214,0 +170778375196,214,0 +170778375244,214,0 +170778375291,214,0 +170778375341,214,0 +170778375389,214,0 +170778375438,214,0 +170778375486,214,0 +170778375534,214,0 +170778375582,214,0 +170778375630,214,0 +170778375678,214,0 +170778375726,214,0 +170778375774,215,0 +170778375822,215,0 +170778375870,214,0 +170778375918,214,0 +170778375965,214,0 +170778376013,214,0 +170778376061,214,0 +170778376110,214,0 +170778376158,214,0 +170778376206,214,0 +170778376254,214,0 +170778376302,214,0 +170778376349,214,0 +170778376397,214,0 +170778376447,214,0 +170778376495,214,0 +170778376542,214,0 +170778376592,215,0 +170778376641,215,0 +170778376691,215,0 +170778376739,214,0 +170778376787,214,0 +170778376835,214,0 +170778376883,213,0 +170778376932,213,0 +170778376980,213,0 +170778377029,213,0 +170778377077,214,0 +170778377125,214,0 +170778377175,214,0 +170778377223,214,0 +170778377272,214,0 +170778377320,214,0 +170778377370,214,0 +170778377418,215,0 +170778377465,214,0 +170778377513,214,0 +170778377563,214,0 +170778377612,214,0 +170778377662,213,0 +170778377710,213,0 +170778377758,213,0 +170778377806,214,0 +170778377853,214,0 +170778377901,214,0 +170778377949,214,0 +170778377997,214,0 +170778378045,214,0 +170778378092,214,0 +170778378142,214,0 +170778378190,214,0 +170778378238,214,0 +170778378285,214,0 +170778378333,214,0 +170778378381,214,0 +170778378429,213,0 +170778378477,213,0 +170778378525,213,0 +170778378574,213,0 +170778378622,213,0 +170778378670,214,0 +170778378719,214,0 +170778378767,214,0 +170778378815,214,0 +170778378865,214,0 +170778378913,214,0 +170778378961,214,0 +170778379009,214,0 +170778379056,214,0 +170778379104,214,0 +170778379152,214,0 +170778379200,214,0 +170778379248,213,0 +170778379296,213,0 +170778379344,213,0 +170778379391,214,0 +170778379439,214,0 +170778379487,214,0 +170778379535,214,0 +170778379583,214,0 +170778379631,214,0 +170778379679,214,0 +170778379726,214,0 +170778379774,214,0 +170778379822,214,0 +170778379870,214,0 +170778379918,214,0 +170778379966,214,0 +170778380013,213,0 +170778380061,213,0 +170778380109,213,0 +170778380157,213,0 +170778380205,213,0 +170778380254,214,0 +170778380302,214,0 +170778380350,214,0 +170778380398,214,0 +170778380447,214,0 +170778380495,214,0 +170778380543,214,0 +170778380591,214,0 +170778380639,214,0 +170778380687,214,0 +170778380735,214,0 +170778380783,213,0 +170778380831,213,0 +170778380879,213,0 +170778380926,213,0 +170778380974,213,0 +170778381022,214,0 +170778381072,213,0 +170778381120,214,0 +170778381167,214,0 +170778381217,214,0 +170778381265,214,0 +170778381313,214,0 +170778381361,214,0 +170778381409,214,0 +170778381458,214,0 +170778381508,214,0 +170778381556,213,0 +170778381604,213,0 +170778381653,213,0 +170778381701,213,0 +170778381750,213,0 +170778381800,213,0 +170778381849,213,0 +170778381897,214,0 +170778381945,214,0 +170778381995,214,0 +170778382043,214,0 +170778382091,214,0 +170778382139,214,0 +170778382188,214,0 +170778382238,214,0 +170778382287,214,0 +170778382335,214,0 +170778382383,213,0 +170778382431,213,0 +170778382479,213,0 +170778382526,213,0 +170778382574,213,0 +170778382622,213,0 +170778382672,214,0 +170778382719,214,0 +170778382767,214,0 +170778382815,214,0 +170778382863,214,0 +170778382913,214,0 +170778382960,214,0 +170778383008,214,0 +170778383058,214,0 +170778383106,214,0 +170778383153,213,0 +170778383201,213,0 +170778383251,213,0 +170778383300,213,0 +170778383348,213,0 +170778383396,213,0 +170778383444,214,0 +170778383494,214,0 +170778383541,214,0 +170778383589,214,0 +170778383637,214,0 +170778383686,214,0 +170778383734,214,0 +170778383782,214,0 +170778383830,214,0 +170778383880,214,0 +170778383929,214,0 +170778383977,213,0 +170778384025,213,0 +170778384073,214,0 +170778384120,214,0 +170778384168,214,0 +170778384218,214,0 +170778384266,214,0 +170778384314,214,0 +170778384362,214,0 +170778384409,214,0 +170778384457,214,0 +170778384505,214,0 +170778384553,214,0 +170778384603,214,0 +170778384652,214,0 +170778384700,214,0 +170778384750,214,0 +170778384799,214,0 +170778384849,214,0 +170778384896,214,0 +170778384944,214,0 +170778384992,214,0 +170778385040,214,0 +170778385088,214,0 +170778385136,214,0 +170778385184,214,0 +170778385232,214,0 +170778385280,215,0 +170778385329,214,0 +170778385377,214,0 +170778385427,214,0 +170778385475,214,0 +170778385524,213,0 +170778385572,213,0 +170778385620,214,0 +170778385668,214,0 +170778385716,214,0 +170778385764,213,0 +170778385814,214,0 +170778385861,214,0 +170778385909,214,0 +170778385957,214,0 +170778386007,214,0 +170778386056,214,0 +170778386104,215,0 +170778386154,215,0 +170778386202,214,0 +170778386250,214,0 +170778386297,214,0 +170778386345,213,0 +170778386393,214,0 +170778386441,214,0 +170778386489,214,0 +170778386537,214,0 +170778386585,214,0 +170778386633,214,0 +170778386681,214,0 +170778386730,214,0 +170778386780,214,0 +170778386829,215,0 +170778386877,214,0 +170778386927,214,0 +170778386975,214,0 +170778387023,214,0 +170778387070,214,0 +170778387118,213,0 +170778387168,213,0 +170778387216,214,0 +170778387264,214,0 +170778387312,214,0 +170778387361,214,0 +170778387409,214,0 +170778387458,214,0 +170778387506,214,0 +170778387554,215,0 +170778387602,214,0 +170778387650,214,0 +170778387700,214,0 +170778387748,214,0 +170778387796,214,0 +170778387845,213,0 +170778387895,213,0 +170778387943,213,0 +170778387990,213,0 +170778388040,214,0 +170778388088,213,0 +170778388137,214,0 +170778388185,214,0 +170778388233,214,0 +170778388281,214,0 +170778388331,214,0 +170778388379,214,0 +170778388427,214,0 +170778388476,214,0 +170778388524,215,0 +170778388572,214,0 +170778388621,214,0 +170778388671,213,0 +170778388720,213,0 +170778388768,213,0 +170778388816,213,0 +170778388864,214,0 +170778388914,214,0 +170778388963,214,0 +170778389011,214,0 +170778389061,214,0 +170778389110,214,0 +170778389159,214,0 +170778389207,214,0 +170778389257,214,0 +170778389305,214,0 +170778389353,214,0 +170778389401,214,0 +170778389449,213,0 +170778389496,213,0 +170778389544,213,0 +170778389592,213,0 +170778389642,213,0 +170778389690,213,0 +170778389738,213,0 +170778389786,214,0 +170778389833,214,0 +170778389883,214,0 +170778389932,214,0 +170778389980,214,0 +170778390028,214,0 +170778390076,214,0 +170778390124,214,0 +170778390172,214,0 +170778390220,213,0 +170778390268,213,0 +170778390317,213,0 +170778390365,213,0 +170778390413,213,0 +170778390463,213,0 +170778390511,214,0 +170778390559,214,0 +170778390608,214,0 +170778390656,214,0 +170778390704,214,0 +170778390752,214,0 +170778390801,214,0 +170778390849,214,0 +170778390897,214,0 +170778390945,214,0 +170778390993,213,0 +170778391041,213,0 +170778391089,213,0 +170778391139,213,0 +170778391187,213,0 +170778391234,213,0 +170778391284,213,0 +170778391332,213,0 +170778391380,214,0 +170778391428,214,0 +170778391476,214,0 +170778391524,214,0 +170778391573,214,0 +170778391623,214,0 +170778391672,214,0 +170778391722,214,0 +170778391771,214,0 +170778391819,213,0 +170778391867,213,0 +170778391915,213,0 +170778391963,213,0 +170778392011,213,0 +170778392058,213,0 +170778392108,213,0 +170778392156,214,0 +170778392205,214,0 +170778392253,214,0 +170778392301,214,0 +170778392349,214,0 +170778392397,214,0 +170778392445,214,0 +170778392493,214,0 +170778392541,214,0 +170778392589,213,0 +170778392636,213,0 +170778392686,213,0 +170778392734,213,0 +170778392783,213,0 +170778392831,214,0 +170778392879,214,0 +170778392927,214,0 +170778392975,214,0 +170778393025,214,0 +170778393073,214,0 +170778393122,214,0 +170778393172,214,0 +170778393221,214,0 +170778393269,214,0 +170778393317,214,0 +170778393367,214,0 +170778393416,213,0 +170778393464,213,0 +170778393512,213,0 +170778393560,214,0 +170778393608,214,0 +170778393656,214,0 +170778393705,214,0 +170778393755,214,0 +170778393803,214,0 +170778393851,214,0 +170778393900,214,0 +170778393948,214,0 +170778393996,214,0 +170778394044,214,0 +170778394092,214,0 +170778394140,213,0 +170778394188,213,0 +170778394236,213,0 +170778394284,213,0 +170778394333,214,0 +170778394381,214,0 +170778394429,214,0 +170778394477,214,0 +170778394526,214,0 +170778394574,214,0 +170778394622,214,0 +170778394670,214,0 +170778394718,214,0 +170778394768,214,0 +170778394816,214,0 +170778394864,214,0 +170778394911,214,0 +170778394959,213,0 +170778395007,214,0 +170778395057,214,0 +170778395105,214,0 +170778395153,214,0 +170778395200,214,0 +170778395248,214,0 +170778395296,214,0 +170778395344,214,0 +170778395394,214,0 +170778395442,214,0 +170778395491,214,0 +170778395539,214,0 +170778395587,215,0 +170778395635,214,0 +170778395683,214,0 +170778395733,214,0 +170778395781,213,0 +170778395828,214,0 +170778395878,214,0 +170778395928,214,0 +170778395977,214,0 +170778396025,214,0 +170778396073,214,0 +170778396121,215,0 +170778396169,214,0 +170778396217,214,0 +170778396265,214,0 +170778396313,214,0 +170778396361,214,0 +170778396409,214,0 +170778396456,214,0 +170778396504,214,0 +170778396554,213,0 +170778396602,214,0 +170778396650,214,0 +170778396699,214,0 +170778396747,214,0 +170778396797,214,0 +170778396844,214,0 +170778396892,214,0 +170778396940,214,0 +170778396990,215,0 +170778397038,214,0 +170778397086,214,0 +170778397135,214,0 +170778397183,214,0 +170778397233,214,0 +170778397281,214,0 +170778397329,214,0 +170778397378,214,0 +170778397426,214,0 +170778397474,214,0 +170778397522,214,0 +170778397570,214,0 +170778397618,214,0 +170778397666,214,0 +170778397715,214,0 +170778397765,214,0 +170778397814,214,0 +170778397864,215,0 +170778397912,215,0 +170778397961,215,0 +170778398009,214,0 +170778398057,214,0 +170778398105,213,0 +170778398153,213,0 +170778398202,214,0 +170778398250,214,0 +170778398298,213,0 +170778398346,214,0 +170778398394,214,0 +170778398442,214,0 +170778398490,214,0 +170778398540,214,0 +170778398589,214,0 +170778398637,214,0 +170778398686,214,0 +170778398736,214,0 +170778398784,214,0 +170778398832,214,0 +170778398880,213,0 +170778398929,213,0 +170778398977,214,0 +170778399026,214,0 +170778399076,214,0 +170778399124,214,0 +170778399172,214,0 +170778399220,214,0 +170778399268,214,0 +170778399317,214,0 +170778399365,214,0 +170778399415,215,0 +170778399463,215,0 +170778399512,214,0 +170778399560,214,0 +170778399608,214,0 +170778399657,213,0 +170778399705,213,0 +170778399753,213,0 +170778399801,214,0 +170778399849,214,0 +170778399897,214,0 +170778399945,214,0 +170778399993,214,0 +170778400041,214,0 +170778400090,214,0 +170778400140,214,0 +170778400188,215,0 +170778400236,214,0 +170778400284,214,0 +170778400332,214,0 +170778400380,215,0 +170778400427,213,0 +170778400477,213,0 +170778400527,213,0 +170778400575,213,0 +170778400622,213,0 +170778400672,214,0 +170778400721,214,0 +170778400769,214,0 +170778400817,214,0 +170778400865,214,0 +170778400913,214,0 +170778400962,214,0 +170778401010,214,0 +170778401060,214,0 +170778401109,214,0 +170778401157,214,0 +170778401205,214,0 +170778401253,213,0 +170778401302,213,0 +170778401350,213,0 +170778401398,213,0 +170778401446,213,0 +170778401495,214,0 +170778401543,213,0 +170778401591,214,0 +170778401641,214,0 +170778401689,214,0 +170778401736,214,0 +170778401784,214,0 +170778401832,214,0 +170778401880,214,0 +170778401930,214,0 +170778401979,214,0 +170778402027,213,0 +170778402077,213,0 +170778402126,213,0 +170778402176,213,0 +170778402224,213,0 +170778402273,213,0 +170778402321,213,0 +170778402371,213,0 +170778402420,213,0 +170778402468,214,0 +170778402518,214,0 +170778402566,214,0 +170778402615,214,0 +170778402665,214,0 +170778402713,214,0 +170778402760,214,0 +170778402808,213,0 +170778402856,213,0 +170778402904,213,0 +170778402952,213,0 +170778403002,213,0 +170778403050,214,0 +170778403098,214,0 +170778403145,214,0 +170778403193,214,0 +170778403241,214,0 +170778403289,214,0 +170778403337,214,0 +170778403385,214,0 +170778403432,214,0 +170778403480,214,0 +170778403528,214,0 +170778403576,213,0 +170778403624,213,0 +170778403672,214,0 +170778403719,214,0 +170778403767,214,0 +170778403815,213,0 +170778403863,214,0 +170778403911,214,0 +170778403959,214,0 +170778404007,214,0 +170778404054,214,0 +170778404102,215,0 +170778404152,215,0 +170778404200,214,0 +170778404247,214,0 +170778404295,214,0 +170778404343,214,0 +170778404391,213,0 +170778404439,213,0 +170778404487,214,0 +170778404534,213,0 +170778404582,213,0 +170778404630,214,0 +170778404678,214,0 +170778404726,214,0 +170778404774,214,0 +170778404821,214,0 +170778404869,214,0 +170778404917,214,0 +170778404965,214,0 +170778405013,214,0 +170778405062,214,0 +170778405110,214,0 +170778405158,213,0 +170778405206,213,0 +170778405254,213,0 +170778405301,214,0 +170778405349,214,0 +170778405397,214,0 +170778405445,214,0 +170778405493,214,0 +170778405540,214,0 +170778405588,214,0 +170778405636,214,0 +170778405684,214,0 +170778405732,214,0 +170778405780,214,0 +170778405827,214,0 +170778405875,214,0 +170778405923,214,0 +170778405971,213,0 +170778406020,213,0 +170778406068,213,0 +170778406116,213,0 +170778406164,213,0 +170778406212,213,0 +170778406261,213,0 +170778406309,214,0 +170778406357,214,0 +170778406406,214,0 +170778406454,214,0 +170778406502,214,0 +170778406550,214,0 +170778406598,214,0 +170778406646,214,0 +170778406696,214,0 +170778406745,213,0 +170778406793,213,0 +170778406841,213,0 +170778406889,213,0 +170778406937,213,0 +170778406984,213,0 +170778407032,213,0 +170778407082,213,0 +170778407129,214,0 +170778407177,214,0 +170778407225,214,0 +170778407273,214,0 +170778407321,214,0 +170778407370,214,0 +170778407418,214,0 +170778407466,214,0 +170778407514,213,0 +170778407561,213,0 +170778407609,213,0 +170778407657,213,0 +170778407705,213,0 +170778407754,213,0 +170778407804,213,0 +170778407851,213,0 +170778407899,214,0 +170778407947,214,0 +170778407995,214,0 +170778408043,214,0 +170778408092,214,0 +170778408140,214,0 +170778408188,214,0 +170778408238,214,0 +170778408285,214,0 +170778408333,213,0 +170778408381,213,0 +170778408429,213,0 +170778408478,213,0 +170778408526,214,0 +170778408576,214,0 +170778408624,214,0 +170778408672,214,0 +170778408721,214,0 +170778408769,214,0 +170778408817,214,0 +170778408865,214,0 +170778408915,214,0 +170778408964,214,0 +170778409012,214,0 +170778409060,214,0 +170778409108,213,0 +170778409156,213,0 +170778409204,213,0 +170778409251,214,0 +170778409299,214,0 +170778409347,214,0 +170778409395,214,0 +170778409443,214,0 +170778409491,214,0 +170778409539,214,0 +170778409587,214,0 +170778409635,214,0 +170778409683,214,0 +170778409731,214,0 +170778409780,214,0 +170778409828,214,0 +170778409876,214,0 +170778409924,213,0 +170778409973,213,0 +170778410021,214,0 +170778410069,214,0 +170778410117,214,0 +170778410167,214,0 +170778410214,214,0 +170778410262,214,0 +170778410310,214,0 +170778410358,214,0 +170778410406,214,0 +170778410456,214,0 +170778410504,214,0 +170778410553,214,0 +170778410601,214,0 +170778410649,214,0 +170778410697,213,0 +170778410745,213,0 +170778410793,214,0 +170778410841,213,0 +170778410889,214,0 +170778410938,214,0 +170778410988,214,0 +170778411037,214,0 +170778411085,214,0 +170778411135,214,0 +170778411184,214,0 +170778411234,214,0 +170778411283,214,0 +170778411331,214,0 +170778411379,214,0 +170778411426,214,0 +170778411474,213,0 +170778411522,214,0 +170778411570,213,0 +170778411619,214,0 +170778411667,214,0 +170778411715,214,0 +170778411763,214,0 +170778411811,214,0 +170778411859,214,0 +170778411907,214,0 +170778411955,214,0 +170778412003,214,0 +170778412051,215,0 +170778412100,214,0 +170778412148,214,0 +170778412198,214,0 +170778412247,214,0 +170778412295,214,0 +170778412345,214,0 +170778412392,214,0 +170778412440,214,0 +170778412488,214,0 +170778412538,214,0 +170778412586,214,0 +170778412635,215,0 +170778412683,215,0 +170778412733,215,0 +170778412781,214,0 +170778412829,215,0 +170778412877,214,0 +170778412925,214,0 +170778412974,214,0 +170778413024,214,0 +170778413072,214,0 +170778413119,214,0 +170778413169,214,0 +170778413217,214,0 +170778413265,214,0 +170778413314,214,0 +170778413362,214,0 +170778413412,214,0 +170778413460,214,0 +170778413507,214,0 +170778413555,214,0 +170778413605,214,0 +170778413653,214,0 +170778413701,214,0 +170778413749,214,0 +170778413796,213,0 +170778413844,213,0 +170778413892,214,0 +170778413940,214,0 +170778413988,214,0 +170778414038,214,0 +170778414086,214,0 +170778414135,214,0 +170778414183,214,0 +170778414232,214,0 +170778414280,214,0 +170778414328,214,0 +170778414376,214,0 +170778414424,215,0 +170778414472,214,0 +170778414521,214,0 +170778414569,214,0 +170778414619,214,0 +170778414666,214,0 +170778414716,214,0 +170778414765,214,0 +170778414813,214,0 +170778414863,214,0 +170778414912,214,0 +170778414960,214,0 +170778415008,214,0 +170778415058,214,0 +170778415107,215,0 +170778415157,214,0 +170778415206,215,0 +170778415254,214,0 +170778415302,214,0 +170778415350,214,0 +170778415400,213,0 +170778415447,214,0 +170778415497,214,0 +170778415545,214,0 +170778415593,214,0 +170778415641,214,0 +170778415689,214,0 +170778415738,214,0 +170778415786,215,0 +170778415834,215,0 +170778415882,215,0 +170778415930,215,0 +170778415978,214,0 +170778416028,214,0 +170778416075,214,0 +170778416125,214,0 +170778416173,213,0 +170778416221,213,0 +170778416269,213,0 +170778416317,213,0 +170778416365,213,0 +170778416413,213,0 +170778416460,214,0 +170778416510,214,0 +170778416558,214,0 +170778416606,214,0 +170778416655,214,0 +170778416704,214,0 +170778416752,214,0 +170778416800,214,0 +170778416848,214,0 +170778416897,214,0 +170778416945,213,0 +170778416993,213,0 +170778417043,213,0 +170778417091,213,0 +170778417139,214,0 +170778417187,214,0 +170778417236,214,0 +170778417286,214,0 +170778417333,214,0 +170778417382,214,0 +170778417431,214,0 +170778417479,214,0 +170778417527,214,0 +170778417575,214,0 +170778417623,214,0 +170778417671,214,0 +170778417719,213,0 +170778417767,213,0 +170778417816,213,0 +170778417866,214,0 +170778417914,214,0 +170778417961,214,0 +170778418011,213,0 +170778418059,214,0 +170778418107,214,0 +170778418155,214,0 +170778418203,214,0 +170778418250,214,0 +170778418300,214,0 +170778418349,214,0 +170778418397,214,0 +170778418445,214,0 +170778418494,214,0 +170778418542,213,0 +170778418590,213,0 +170778418640,213,0 +170778418689,213,0 +170778418737,213,0 +170778418785,214,0 +170778418833,214,0 +170778418881,214,0 +170778418929,214,0 +170778418978,214,0 +170778419028,214,0 +170778419076,214,0 +170778419123,214,0 +170778419173,214,0 +170778419221,214,0 +170778419269,214,0 +170778419318,213,0 +170778419366,213,0 +170778419414,213,0 +170778419462,213,0 +170778419511,213,0 +170778419561,213,0 +170778419609,213,0 +170778419657,214,0 +170778419706,214,0 +170778419754,214,0 +170778419802,214,0 +170778419850,214,0 +170778419900,214,0 +170778419949,214,0 +170778419997,214,0 +170778420045,214,0 +170778420093,213,0 +170778420141,213,0 +170778420189,213,0 +170778420237,213,0 +170778420285,213,0 +170778420333,214,0 +170778420381,214,0 +170778420430,214,0 +170778420478,214,0 +170778420526,214,0 +170778420574,214,0 +170778420622,214,0 +170778420670,214,0 +170778420718,214,0 +170778420766,214,0 +170778420814,214,0 +170778420862,214,0 +170778420911,213,0 +170778420959,213,0 +170778421007,213,0 +170778421055,213,0 +170778421103,213,0 +170778421151,213,0 +170778421199,214,0 +170778421248,214,0 +170778421296,214,0 +170778421345,214,0 +170778421395,214,0 +170778421443,214,0 +170778421491,214,0 +170778421540,214,0 +170778421588,214,0 +170778421637,214,0 +170778421685,213,0 +170778421735,213,0 +170778421783,213,0 +170778421831,213,0 +170778421878,214,0 +170778421928,214,0 +170778421976,214,0 +170778422024,214,0 +170778422072,214,0 +170778422121,214,0 +170778422169,214,0 +170778422219,214,0 +170778422267,215,0 +170778422315,214,0 +170778422363,214,0 +170778422410,214,0 +170778422460,213,0 +170778422508,213,0 +170778422557,213,0 +170778422607,213,0 +170778422655,214,0 +170778422704,213,0 +170778422752,214,0 +170778422800,214,0 +170778422848,214,0 +170778422897,214,0 +170778422947,214,0 +170778422994,214,0 +170778423044,214,0 +170778423092,215,0 +170778423140,214,0 +170778423189,214,0 +170778423237,213,0 +170778423285,214,0 +170778423333,213,0 +170778423382,214,0 +170778423430,214,0 +170778423478,214,0 +170778423528,214,0 +170778423575,214,0 +170778423625,214,0 +170778423674,214,0 +170778423724,214,0 +170778423773,214,0 +170778423821,214,0 +170778423869,215,0 +170778423917,214,0 +170778423965,215,0 +170778424014,214,0 +170778424062,214,0 +170778424112,214,0 +170778424160,214,0 +170778424209,214,0 +170778424258,214,0 +170778424308,215,0 +170778424356,214,0 +170778424404,215,0 +170778424452,215,0 +170778424500,215,0 +170778424548,215,0 +170778424595,215,0 +170778424645,215,0 +170778424695,214,0 +170778424744,214,0 +170778424792,214,0 +170778424840,214,0 +170778424888,214,0 +170778424937,214,0 +170778424987,214,0 +170778425036,214,0 +170778425084,214,0 +170778425134,214,0 +170778425183,214,0 +170778425232,214,0 +170778425280,215,0 +170778425330,214,0 +170778425378,215,0 +170778425426,215,0 +170778425475,214,0 +170778425523,214,0 +170778425571,214,0 +170778425619,213,0 +170778425667,214,0 +170778425715,214,0 +170778425763,214,0 +170778425811,214,0 +170778425859,214,0 +170778425907,214,0 +170778425955,214,0 +170778426003,214,0 +170778426050,214,0 +170778426100,214,0 +170778426149,214,0 +170778426199,214,0 +170778426249,215,0 +170778426296,214,0 +170778426344,214,0 +170778426394,214,0 +170778426442,214,0 +170778426490,214,0 +170778426538,214,0 +170778426586,214,0 +170778426633,214,0 +170778426681,214,0 +170778426729,214,0 +170778426779,214,0 +170778426827,214,0 +170778426874,214,0 +170778426922,214,0 +170778426970,214,0 +170778427020,214,0 +170778427067,214,0 +170778427115,214,0 +170778427165,214,0 +170778427214,214,0 +170778427262,214,0 +170778427310,214,0 +170778427358,214,0 +170778427406,214,0 +170778427454,214,0 +170778427501,214,0 +170778427551,214,0 +170778427599,214,0 +170778427647,214,0 +170778427695,215,0 +170778427742,215,0 +170778427790,214,0 +170778427838,214,0 +170778427886,214,0 +170778427934,214,0 +170778427982,213,0 +170778428030,213,0 +170778428078,214,0 +170778428126,214,0 +170778428174,214,0 +170778428222,214,0 +170778428270,214,0 +170778428319,214,0 +170778428367,214,0 +170778428416,214,0 +170778428464,214,0 +170778428512,214,0 +170778428560,214,0 +170778428608,214,0 +170778428658,214,0 +170778428706,214,0 +170778428755,213,0 +170778428803,213,0 +170778428851,213,0 +170778428899,213,0 +170778428947,214,0 +170778428996,213,0 +170778429044,214,0 +170778429094,214,0 +170778429142,214,0 +170778429190,214,0 +170778429238,214,0 +170778429286,214,0 +170778429335,214,0 +170778429383,214,0 +170778429432,214,0 +170778429480,214,0 +170778429530,213,0 +170778429578,213,0 +170778429626,213,0 +170778429675,213,0 +170778429725,213,0 +170778429773,213,0 +170778429821,214,0 +170778429868,213,0 +170778429916,214,0 +170778429964,214,0 +170778430012,214,0 +170778430062,214,0 +170778430109,214,0 +170778430157,214,0 +170778430205,214,0 +170778430253,214,0 +170778430301,214,0 +170778430350,213,0 +170778430398,213,0 +170778430448,213,0 +170778430496,213,0 +170778430545,213,0 +170778430593,213,0 +170778430641,213,0 +170778430689,214,0 +170778430738,214,0 +170778430788,214,0 +170778430836,214,0 +170778430885,214,0 +170778430933,214,0 +170778430981,214,0 +170778431029,214,0 +170778431079,214,0 +170778431127,213,0 +170778431175,213,0 +170778431222,213,0 +170778431270,213,0 +170778431320,214,0 +170778431368,213,0 +170778431417,213,0 +170778431465,213,0 +170778431514,214,0 +170778431564,214,0 +170778431612,214,0 +170778431659,214,0 +170778431707,214,0 +170778431755,214,0 +170778431803,214,0 +170778431851,214,0 +170778431899,213,0 +170778431947,213,0 +170778431995,213,0 +170778432043,213,0 +170778432091,213,0 +170778432140,214,0 +170778432188,214,0 +170778432237,214,0 +170778432287,214,0 +170778432335,214,0 +170778432384,214,0 +170778432432,214,0 +170778432480,214,0 +170778432528,214,0 +170778432578,214,0 +170778432627,214,0 +170778432677,213,0 +170778432724,213,0 +170778432772,213,0 +170778432820,213,0 +170778432868,214,0 +170778432916,214,0 +170778432966,214,0 +170778433015,214,0 +170778433063,214,0 +170778433111,214,0 +170778433159,214,0 +170778433206,214,0 +170778433254,214,0 +170778433302,214,0 +170778433350,215,0 +170778433398,214,0 +170778433447,214,0 +170778433495,214,0 +170778433545,214,0 +170778433593,214,0 +170778433641,214,0 +170778433688,214,0 +170778433736,214,0 +170778433786,214,0 +170778433834,215,0 +170778433882,214,0 +170778433931,214,0 +170778433979,215,0 +170778434027,215,0 +170778434075,215,0 +170778434123,214,0 +170778434171,214,0 +170778434219,214,0 +170778434266,214,0 +170778434314,214,0 +170778434362,214,0 +170778434412,214,0 +170778434461,214,0 +170778434511,214,0 +170778434559,214,0 +170778434606,214,0 +170778434654,214,0 +170778434702,215,0 +170778434750,214,0 +170778434798,214,0 +170778434847,215,0 +170778434897,214,0 +170778434945,214,0 +170778434992,214,0 +170778435040,213,0 +170778435088,214,0 +170778435136,214,0 +170778435186,214,0 +170778435233,214,0 +170778435281,214,0 +170778435329,214,0 +170778435377,214,0 +170778435427,214,0 +170778435475,214,0 +170778435524,214,0 +170778435572,215,0 +170778435620,215,0 +170778435668,215,0 +170778435716,215,0 +170778435764,214,0 +170778435813,214,0 +170778435861,214,0 +170778435909,214,0 +170778435957,214,0 +170778436005,214,0 +170778436053,214,0 +170778436101,214,0 +170778436149,214,0 +170778436198,214,0 +170778436246,214,0 +170778436296,214,0 +170778436345,215,0 +170778436393,215,0 +170778436443,214,0 +170778436492,215,0 +170778436540,214,0 +170778436588,214,0 +170778436636,214,0 +170778436684,214,0 +170778436732,214,0 +170778436780,214,0 +170778436828,214,0 +170778436876,214,0 +170778436923,214,0 +170778436973,214,0 +170778437021,214,0 +170778437068,215,0 +170778437116,214,0 +170778437164,215,0 +170778437212,215,0 +170778437260,214,0 +170778437307,214,0 +170778437355,214,0 +170778437403,213,0 +170778437451,213,0 +170778437498,213,0 +170778437546,213,0 +170778437594,214,0 +170778437642,214,0 +170778437690,214,0 +170778437738,214,0 +170778437785,214,0 +170778437833,214,0 +170778437881,214,0 +170778437929,214,0 +170778437978,214,0 +170778438028,214,0 +170778438076,214,0 +170778438124,214,0 +170778438171,213,0 +170778438221,213,0 +170778438269,213,0 +170778438317,213,0 +170778438365,214,0 +170778438412,213,0 +170778438460,214,0 +170778438508,214,0 +170778438556,214,0 +170778438604,214,0 +170778438652,214,0 +170778438702,214,0 +170778438751,214,0 +170778438799,214,0 +170778438847,214,0 +170778438897,214,0 +170778438944,214,0 +170778438992,213,0 +170778439042,213,0 +170778439090,213,0 +170778439139,214,0 +170778439187,213,0 +170778439236,213,0 +170778439284,213,0 +170778439332,214,0 +170778439380,214,0 +170778439428,214,0 +170778439476,214,0 +170778439525,214,0 +170778439573,214,0 +170778439623,214,0 +170778439671,215,0 +170778439718,214,0 +170778439766,213,0 +170778439814,213,0 +170778439862,213,0 +170778439910,213,0 +170778439960,214,0 +170778440008,214,0 +170778440057,214,0 +170778440105,214,0 +170778440153,214,0 +170778440201,214,0 +170778440249,214,0 +170778440297,214,0 +170778440345,215,0 +170778440394,215,0 +170778440442,214,0 +170778440492,214,0 +170778440541,214,0 +170778440589,213,0 +170778440637,213,0 +170778440685,213,0 +170778440733,213,0 +170778440781,214,0 +170778440829,214,0 +170778440876,214,0 +170778440926,214,0 +170778440975,214,0 +170778441023,214,0 +170778441073,214,0 +170778441121,215,0 +170778441169,214,0 +170778441217,214,0 +170778441264,214,0 +170778441312,214,0 +170778441362,214,0 +170778441410,214,0 +170778441458,214,0 +170778441505,214,0 +170778441553,214,0 +170778441601,214,0 +170778441651,214,0 +170778441699,214,0 +170778441747,214,0 +170778441795,214,0 +170778441842,214,0 +170778441890,214,0 +170778441938,214,0 +170778441986,214,0 +170778442034,214,0 +170778442082,214,0 +170778442130,213,0 +170778442180,214,0 +170778442229,213,0 +170778442279,214,0 +170778442328,214,0 +170778442378,214,0 +170778442425,214,0 +170778442473,214,0 +170778442523,214,0 +170778442571,214,0 +170778442619,214,0 +170778442667,214,0 +170778442716,214,0 +170778442766,214,0 +170778442814,214,0 +170778442862,214,0 +170778442911,214,0 +170778442959,213,0 +170778443007,214,0 +170778443055,214,0 +170778443104,214,0 +170778443152,214,0 +170778443201,214,0 +170778443251,214,0 +170778443299,214,0 +170778443348,214,0 +170778443398,214,0 +170778443447,214,0 +170778443495,215,0 +170778443545,214,0 +170778443593,214,0 +170778443641,214,0 +170778443689,214,0 +170778443737,213,0 +170778443785,214,0 +170778443833,214,0 +170778443880,214,0 +170778443930,214,0 +170778443978,214,0 +170778444026,214,0 +170778444075,214,0 +170778444125,214,0 +170778444174,214,0 +170778444222,214,0 +170778444270,215,0 +170778444320,215,0 +170778444368,214,0 +170778444415,214,0 +170778444465,214,0 +170778444513,213,0 +170778444562,213,0 +170778444610,214,0 +170778444660,214,0 +170778444708,214,0 +170778444755,214,0 +170778444803,214,0 +170778444851,214,0 +170778444899,214,0 +170778444947,215,0 +170778444995,214,0 +170778445044,214,0 +170778445092,214,0 +170778445140,214,0 +170778445190,214,0 +170778445237,214,0 +170778445287,213,0 +170778445335,213,0 +170778445384,214,0 +170778445434,214,0 +170778445482,214,0 +170778445530,214,0 +170778445578,214,0 +170778445625,214,0 +170778445673,214,0 +170778445721,214,0 +170778445769,214,0 +170778445817,214,0 +170778445865,214,0 +170778445915,214,0 +170778445962,214,0 +170778446010,214,0 +170778446060,214,0 +170778446109,213,0 +170778446159,214,0 +170778446207,214,0 +170778446256,214,0 +170778446306,214,0 +170778446354,214,0 +170778446403,214,0 +170778446451,214,0 +170778446499,214,0 +170778446547,214,0 +170778446595,214,0 +170778446644,214,0 +170778446692,215,0 +170778446740,214,0 +170778446788,214,0 +170778446836,214,0 +170778446884,214,0 +170778446931,214,0 +170778446979,214,0 +170778447027,214,0 +170778447075,214,0 +170778447123,214,0 +170778447172,214,0 +170778447220,214,0 +170778447270,214,0 +170778447318,214,0 +170778447366,214,0 +170778447414,214,0 +170778447462,214,0 +170778447510,214,0 +170778447557,214,0 +170778447605,214,0 +170778447655,214,0 +170778447704,214,0 +170778447752,214,0 +170778447800,214,0 +170778447850,214,0 +170778447899,214,0 +170778447947,214,0 +170778447997,215,0 +170778448045,214,0 +170778448093,214,0 +170778448142,214,0 +170778448190,215,0 +170778448238,214,0 +170778448286,214,0 +170778448334,214,0 +170778448382,214,0 +170778448430,214,0 +170778448479,214,0 +170778448527,214,0 +170778448577,214,0 +170778448626,214,0 +170778448674,214,0 +170778448722,214,0 +170778448772,214,0 +170778448820,214,0 +170778448867,215,0 +170778448915,215,0 +170778448965,215,0 +170778449014,214,0 +170778449062,214,0 +170778449110,214,0 +170778449158,214,0 +170778449208,214,0 +170778449256,214,0 +170778449304,214,0 +170778449351,214,0 +170778449399,214,0 +170778449447,214,0 +170778449495,214,0 +170778449543,214,0 +170778449591,214,0 +170778449640,214,0 +170778449688,214,0 +170778449736,214,0 +170778449784,214,0 +170778449832,214,0 +170778449880,214,0 +170778449929,214,0 +170778449979,213,0 +170778450027,213,0 +170778450075,213,0 +170778450123,213,0 +170778450171,213,0 +170778450219,214,0 +170778450268,214,0 +170778450316,214,0 +170778450364,214,0 +170778450414,214,0 +170778450463,214,0 +170778450511,214,0 +170778450559,214,0 +170778450606,214,0 +170778450654,214,0 +170778450702,214,0 +170778450752,213,0 +170778450800,213,0 +170778450847,213,0 +170778450895,213,0 +170778450943,213,0 +170778450991,213,0 +170778451040,213,0 +170778451090,214,0 +170778451139,214,0 +170778451187,214,0 +170778451235,214,0 +170778451283,214,0 +170778451331,214,0 +170778451378,214,0 +170778451426,214,0 +170778451474,214,0 +170778451522,214,0 +170778451570,213,0 +170778451618,213,0 +170778451666,213,0 +170778451715,213,0 +170778451763,213,0 +170778451811,213,0 +170778451859,214,0 +170778451906,214,0 +170778451954,214,0 +170778452002,214,0 +170778452052,214,0 +170778452100,214,0 +170778452148,214,0 +170778452196,214,0 +170778452245,214,0 +170778452293,214,0 +170778452343,213,0 +170778452391,213,0 +170778452438,213,0 +170778452488,214,0 +170778452536,214,0 +170778452585,214,0 +170778452635,214,0 +170778452683,214,0 +170778452731,214,0 +170778452779,215,0 +170778452827,214,0 +170778452874,215,0 +170778452924,215,0 +170778452972,215,0 +170778453020,214,0 +170778453067,214,0 +170778453115,214,0 +170778453163,214,0 +170778453211,214,0 +170778453259,213,0 +170778453307,214,0 +170778453354,214,0 +170778453402,214,0 +170778453450,214,0 +170778453498,214,0 +170778453546,214,0 +170778453593,215,0 +170778453641,214,0 +170778453691,215,0 +170778453739,214,0 +170778453787,214,0 +170778453835,214,0 +170778453883,214,0 +170778453930,214,0 +170778453978,213,0 +170778454026,214,0 +170778454074,214,0 +170778454124,214,0 +170778454172,214,0 +170778454220,214,0 +170778454268,214,0 +170778454316,214,0 +170778454363,214,0 +170778454411,215,0 +170778454459,214,0 +170778454507,215,0 +170778454555,215,0 +170778454603,214,0 +170778454651,214,0 +170778454699,214,0 +170778454748,213,0 +170778454798,214,0 +170778454846,214,0 +170778454894,214,0 +170778454941,214,0 +170778454989,214,0 +170778455037,214,0 +170778455085,214,0 +170778455133,214,0 +170778455181,214,0 +170778455229,214,0 +170778455277,214,0 +170778455325,214,0 +170778455373,214,0 +170778455423,214,0 +170778455472,214,0 +170778455520,213,0 +170778455570,213,0 +170778455617,213,0 +170778455667,213,0 +170778455716,214,0 +170778455764,214,0 +170778455812,214,0 +170778455860,214,0 +170778455908,214,0 +170778455956,214,0 +170778456006,214,0 +170778456054,214,0 +170778456101,214,0 +170778456149,214,0 +170778456197,214,0 +170778456245,214,0 +170778456293,214,0 +170778456341,213,0 +170778456388,213,0 +170778456436,213,0 +170778456484,214,0 +170778456532,214,0 +170778456580,214,0 +170778456629,214,0 +170778456677,214,0 +170778456725,214,0 +170778456774,214,0 +170778456822,214,0 +170778456870,214,0 +170778456918,214,0 +170778456965,214,0 +170778457013,214,0 +170778457063,214,0 +170778457112,214,0 +170778457160,213,0 +170778457208,213,0 +170778457255,213,0 +170778457303,213,0 +170778457351,214,0 +170778457399,214,0 +170778457447,214,0 +170778457495,214,0 +170778457544,214,0 +170778457594,214,0 +170778457643,214,0 +170778457693,214,0 +170778457741,214,0 +170778457790,214,0 +170778457838,214,0 +170778457886,214,0 +170778457934,213,0 +170778457981,213,0 +170778458029,213,0 +170778458077,214,0 +170778458125,214,0 +170778458173,214,0 +170778458221,214,0 +170778458269,214,0 +170778458316,214,0 +170778458364,214,0 +170778458412,214,0 +170778458460,214,0 +170778458508,214,0 +170778458556,215,0 +170778458604,214,0 +170778458651,214,0 +170778458699,214,0 +170778458747,213,0 +170778458795,214,0 +170778458844,214,0 +170778458892,214,0 +170778458940,214,0 +170778458988,214,0 +170778459036,214,0 +170778459084,214,0 +170778459133,214,0 +170778459181,214,0 +170778459229,214,0 +170778459276,214,0 +170778459324,214,0 +170778459372,214,0 +170778459420,214,0 +170778459468,214,0 +170778459516,214,0 +170778459564,214,0 +170778459613,213,0 +170778459661,213,0 +170778459709,214,0 +170778459758,214,0 +170778459806,214,0 +170778459854,214,0 +170778459902,214,0 +170778459950,214,0 +170778459998,214,0 +170778460046,214,0 +170778460094,214,0 +170778460143,214,0 +170778460191,214,0 +170778460239,214,0 +170778460287,214,0 +170778460334,214,0 +170778460382,214,0 +170778460432,214,0 +170778460479,214,0 +170778460527,214,0 +170778460577,214,0 +170778460625,214,0 +170778460672,214,0 +170778460720,214,0 +170778460768,214,0 +170778460818,215,0 +170778460865,215,0 +170778460913,215,0 +170778460961,215,0 +170778461009,214,0 +170778461057,214,0 +170778461105,214,0 +170778461152,213,0 +170778461200,214,0 +170778461248,214,0 +170778461296,214,0 +170778461344,214,0 +170778461392,214,0 +170778461439,214,0 +170778461487,214,0 +170778461535,214,0 +170778461583,214,0 +170778461631,214,0 +170778461679,214,0 +170778461726,214,0 +170778461774,214,0 +170778461822,214,0 +170778461870,214,0 +170778461918,213,0 +170778461966,213,0 +170778462013,213,0 +170778462061,213,0 +170778462109,214,0 +170778462157,213,0 +170778462205,213,0 +170778462253,214,0 +170778462301,214,0 +170778462348,214,0 +170778462396,214,0 +170778462444,214,0 +170778462492,214,0 +170778462541,214,0 +170778462589,214,0 +170778462638,214,0 +170778462686,214,0 +170778462734,213,0 +170778462782,213,0 +170778462830,213,0 +170778462877,213,0 +170778462927,213,0 +170778462976,214,0 +170778463024,214,0 +170778463074,214,0 +170778463123,214,0 +170778463173,214,0 +170778463221,214,0 +170778463269,214,0 +170778463317,214,0 +170778463366,214,0 +170778463414,214,0 +170778463462,214,0 +170778463512,214,0 +170778463561,213,0 +170778463609,213,0 +170778463658,213,0 +170778463708,214,0 +170778463756,214,0 +170778463804,214,0 +170778463852,214,0 +170778463900,214,0 +170778463948,214,0 +170778463996,214,0 +170778464043,214,0 +170778464093,214,0 +170778464141,214,0 +170778464189,214,0 +170778464237,214,0 +170778464285,214,0 +170778464333,214,0 +170778464380,213,0 +170778464428,213,0 +170778464478,213,0 +170778464527,214,0 +170778464575,214,0 +170778464623,214,0 +170778464671,214,0 +170778464721,214,0 +170778464769,214,0 +170778464817,214,0 +170778464864,214,0 +170778464914,215,0 +170778464962,214,0 +170778465010,214,0 +170778465057,214,0 +170778465105,214,0 +170778465153,213,0 +170778465201,213,0 +170778465248,213,0 +170778465296,214,0 +170778465344,214,0 +170778465392,214,0 +170778465440,214,0 +170778465489,214,0 +170778465537,214,0 +170778465585,214,0 +170778465632,214,0 +170778465680,214,0 +170778465728,214,0 +170778465777,214,0 +170778465825,214,0 +170778465873,214,0 +170778465921,214,0 +170778465969,213,0 +170778466016,213,0 +170778466064,213,0 +170778466112,214,0 +170778466160,213,0 +170778466208,214,0 +170778466256,214,0 +170778466303,214,0 +170778466351,214,0 +170778466399,214,0 +170778466447,214,0 +170778466495,214,0 +170778466542,214,0 +170778466590,214,0 +170778466638,214,0 +170778466688,214,0 +170778466735,213,0 +170778466783,213,0 +170778466831,213,0 +170778466879,213,0 +170778466927,213,0 +170778466975,213,0 +170778467022,213,0 +170778467072,214,0 +170778467120,214,0 +170778467167,214,0 +170778467215,214,0 +170778467263,214,0 +170778467311,214,0 +170778467360,214,0 +170778467408,214,0 +170778467456,214,0 +170778467506,214,0 +170778467553,213,0 +170778467601,213,0 +170778467649,213,0 +170778467698,213,0 +170778467746,214,0 +170778467794,214,0 +170778467842,214,0 +170778467890,214,0 +170778467939,214,0 +170778467987,214,0 +170778468036,214,0 +170778468084,214,0 +170778468132,214,0 +170778468179,214,0 +170778468227,214,0 +170778468275,214,0 +170778468323,214,0 +170778468371,213,0 +170778468420,213,0 +170778468470,213,0 +170778468518,213,0 +170778468566,213,0 +170778468613,214,0 +170778468661,213,0 +170778468711,214,0 +170778468760,214,0 +170778468808,214,0 +170778468856,214,0 +170778468904,214,0 +170778468952,214,0 +170778469000,214,0 +170778469047,214,0 +170778469095,214,0 +170778469143,213,0 +170778469191,213,0 +170778469239,213,0 +170778469287,213,0 +170778469334,213,0 +170778469382,213,0 +170778469430,213,0 +170778469478,214,0 +170778469526,214,0 +170778469574,214,0 +170778469622,214,0 +170778469669,214,0 +170778469719,214,0 +170778469767,214,0 +170778469815,214,0 +170778469864,214,0 +170778469912,214,0 +170778469960,213,0 +170778470007,213,0 +170778470057,213,0 +170778470105,213,0 +170778470153,213,0 +170778470200,213,0 +170778470250,213,0 +170778470298,214,0 +170778470347,214,0 +170778470395,214,0 +170778470443,214,0 +170778470491,214,0 +170778470538,214,0 +170778470586,214,0 +170778470636,214,0 +170778470683,214,0 +170778470731,214,0 +170778470779,213,0 +170778470827,213,0 +170778470875,213,0 +170778470923,213,0 +170778470970,213,0 +170778471020,213,0 +170778471068,213,0 +170778471116,214,0 +170778471163,214,0 +170778471211,214,0 +170778471260,214,0 +170778471308,214,0 +170778471356,214,0 +170778471406,214,0 +170778471453,214,0 +170778471501,214,0 +170778471551,213,0 +170778471598,213,0 +170778471646,213,0 +170778471694,213,0 +170778471742,213,0 +170778471790,213,0 +170778471838,213,0 +170778471885,214,0 +170778471933,214,0 +170778471981,214,0 +170778472029,214,0 +170778472078,214,0 +170778472128,214,0 +170778472176,214,0 +170778472223,214,0 +170778472271,214,0 +170778472319,214,0 +170778472367,213,0 +170778472414,213,0 +170778472462,213,0 +170778472510,213,0 +170778472558,214,0 +170778472606,214,0 +170778472654,214,0 +170778472701,214,0 +170778472749,214,0 +170778472797,214,0 +170778472845,214,0 +170778472893,214,0 +170778472941,214,0 +170778472989,214,0 +170778473036,214,0 +170778473084,214,0 +170778473132,214,0 +170778473180,213,0 +170778473229,213,0 +170778473277,214,0 +170778473325,214,0 +170778473373,214,0 +170778473421,214,0 +170778473469,214,0 +170778473518,214,0 +170778473566,214,0 +170778473615,214,0 +170778473663,214,0 +170778473711,214,0 +170778473759,215,0 +170778473807,215,0 +170778473855,215,0 +170778473903,215,0 +170778473950,215,0 +170778473998,215,0 +170778474046,215,0 +170778474094,215,0 +170778474142,214,0 +170778474189,215,0 +170778474239,214,0 +170778474287,214,0 +170778474334,214,0 +170778474383,214,0 +170778474431,214,0 +170778474479,214,0 +170778474526,214,0 +170778474574,214,0 +170778474622,214,0 +170778474670,214,0 +170778474719,214,0 +170778474769,214,0 +170778474817,215,0 +170778474865,214,0 +170778474913,215,0 +170778474961,214,0 +170778475009,214,0 +170778475057,214,0 +170778475105,214,0 +170778475153,214,0 +170778475201,214,0 +170778475250,214,0 +170778475298,214,0 +170778475346,214,0 +170778475394,214,0 +170778475442,214,0 +170778475491,214,0 +170778475539,214,0 +170778475589,214,0 +170778475637,214,0 +170778475686,214,0 +170778475734,214,0 +170778475784,214,0 +170778475833,214,0 +170778475881,214,0 +170778475929,214,0 +170778475977,214,0 +170778476025,214,0 +170778476073,214,0 +170778476121,214,0 +170778476169,214,0 +170778476217,214,0 +170778476267,214,0 +170778476315,214,0 +170778476363,214,0 +170778476411,214,0 +170778476460,214,0 +170778476508,215,0 +170778476556,214,0 +170778476604,214,0 +170778476652,214,0 +170778476700,214,0 +170778476749,213,0 +170778476799,213,0 +170778476848,213,0 +170778476898,213,0 +170778476946,213,0 +170778476995,214,0 +170778477043,214,0 +170778477091,214,0 +170778477139,214,0 +170778477187,214,0 +170778477235,214,0 +170778477283,214,0 +170778477332,214,0 +170778477380,214,0 +170778477428,214,0 +170778477476,214,0 +170778477524,214,0 +170778477572,213,0 +170778477620,213,0 +170778477668,213,0 +170778477715,213,0 +170778477765,214,0 +170778477812,213,0 +170778477860,214,0 +170778477908,214,0 +170778477956,214,0 +170778478004,214,0 +170778478051,214,0 +170778478101,214,0 +170778478150,214,0 +170778478198,214,0 +170778478246,214,0 +170778478294,214,0 +170778478344,214,0 +170778478392,213,0 +170778478439,213,0 +170778478487,213,0 +170778478537,213,0 +170778478585,213,0 +170778478633,213,0 +170778478682,214,0 +170778478730,214,0 +170778478778,214,0 +170778478828,214,0 +170778478876,214,0 +170778478924,214,0 +170778478973,214,0 +170778479021,214,0 +170778479069,214,0 +170778479117,214,0 +170778479165,213,0 +170778479213,213,0 +170778479261,213,0 +170778479310,213,0 +170778479358,213,0 +170778479406,213,0 +170778479455,213,0 +170778479503,213,0 +170778479553,213,0 +170778479601,213,0 +170778479650,213,0 +170778479698,214,0 +170778479746,214,0 +170778479794,214,0 +170778479843,214,0 +170778479891,214,0 +170778479941,214,0 +170778479989,213,0 +170778480038,213,0 +170778480086,213,0 +170778480136,213,0 +170778480184,213,0 +170778480231,213,0 +170778480279,213,0 +170778480327,213,0 +170778480377,213,0 +170778480425,213,0 +170778480474,214,0 +170778480523,214,0 +170778480571,214,0 +170778480619,214,0 +170778480667,214,0 +170778480715,214,0 +170778480763,213,0 +170778480811,213,0 +170778480859,213,0 +170778480906,213,0 +170778480954,213,0 +170778481002,213,0 +170778481050,213,0 +170778481098,213,0 +170778481145,213,0 +170778481193,213,0 +170778481241,214,0 +170778481289,214,0 +170778481337,214,0 +170778481385,214,0 +170778481432,214,0 +170778481480,214,0 +170778481528,214,0 +170778481576,213,0 +170778481624,213,0 +170778481672,213,0 +170778481720,213,0 +170778481767,213,0 +170778481815,213,0 +170778481863,213,0 +170778481911,214,0 +170778481959,214,0 +170778482007,214,0 +170778482054,214,0 +170778482102,214,0 +170778482150,214,0 +170778482198,214,0 +170778482246,214,0 +170778482295,214,0 +170778482345,214,0 +170778482394,213,0 +170778482442,214,0 +170778482491,214,0 +170778482539,214,0 +170778482587,214,0 +170778482635,214,0 +170778482683,214,0 +170778482730,214,0 +170778482778,214,0 +170778482826,214,0 +170778482874,214,0 +170778482922,214,0 +170778482969,214,0 +170778483017,214,0 +170778483065,214,0 +170778483115,214,0 +170778483164,214,0 +170778483212,214,0 +170778483260,214,0 +170778483308,214,0 +170778483356,214,0 +170778483404,214,0 +170778483451,214,0 +170778483499,214,0 +170778483547,214,0 +170778483597,214,0 +170778483645,214,0 +170778483693,214,0 +170778483741,214,0 +170778483789,214,0 +170778483837,214,0 +170778483886,214,0 +170778483934,214,0 +170778483982,214,0 +170778484030,213,0 +170778484078,214,0 +170778484127,214,0 +170778484175,214,0 +170778484225,214,0 +170778484273,214,0 +170778484321,214,0 +170778484369,214,0 +170778484417,214,0 +170778484465,214,0 +170778484512,214,0 +170778484562,214,0 +170778484610,214,0 +170778484658,214,0 +170778484706,214,0 +170778484755,214,0 +170778484803,213,0 +170778484851,213,0 +170778484900,213,0 +170778484948,214,0 +170778484998,214,0 +170778485047,214,0 +170778485097,214,0 +170778485145,214,0 +170778485193,214,0 +170778485241,214,0 +170778485289,214,0 +170778485336,214,0 +170778485384,214,0 +170778485432,214,0 +170778485480,214,0 +170778485528,214,0 +170778485578,214,0 +170778485625,213,0 +170778485673,213,0 +170778485721,214,0 +170778485769,214,0 +170778485817,214,0 +170778485865,214,0 +170778485914,214,0 +170778485962,214,0 +170778486010,214,0 +170778486058,214,0 +170778486105,214,0 +170778486153,214,0 +170778486203,214,0 +170778486251,214,0 +170778486300,214,0 +170778486348,214,0 +170778486397,213,0 +170778486445,213,0 +170778486495,213,0 +170778486544,213,0 +170778486592,214,0 +170778486640,214,0 +170778486688,214,0 +170778486736,214,0 +170778486784,214,0 +170778486832,214,0 +170778486879,214,0 +170778486927,214,0 +170778486977,214,0 +170778487026,214,0 +170778487074,214,0 +170778487122,214,0 +170778487170,214,0 +170778487218,213,0 +170778487266,213,0 +170778487314,213,0 +170778487361,213,0 +170778487409,213,0 +170778487457,213,0 +170778487505,214,0 +170778487552,213,0 +170778487600,214,0 +170778487648,214,0 +170778487696,214,0 +170778487744,214,0 +170778487792,214,0 +170778487840,214,0 +170778487887,214,0 +170778487935,214,0 +170778487983,214,0 +170778488031,213,0 +170778488079,213,0 +170778488127,213,0 +170778488174,213,0 +170778488222,213,0 +170778488270,213,0 +170778488318,213,0 +170778488366,213,0 +170778488414,214,0 +170778488463,214,0 +170778488511,214,0 +170778488559,214,0 +170778488607,214,0 +170778488655,214,0 +170778488703,214,0 +170778488750,214,0 +170778488798,213,0 +170778488846,213,0 +170778488894,213,0 +170778488943,213,0 +170778488991,213,0 +170778489039,214,0 +170778489087,214,0 +170778489135,214,0 +170778489183,214,0 +170778489232,214,0 +170778489280,214,0 +170778489328,214,0 +170778489377,214,0 +170778489425,214,0 +170778489473,214,0 +170778489521,215,0 +170778489568,214,0 +170778489618,213,0 +170778489666,213,0 +170778489713,213,0 +170778489761,213,0 +170778489809,213,0 +170778489859,213,0 +170778489907,214,0 +170778489955,214,0 +170778490003,214,0 +170778490050,214,0 +170778490100,214,0 +170778490148,214,0 +170778490196,214,0 +170778490244,214,0 +170778490292,214,0 +170778490341,214,0 +170778490389,214,0 +170778490437,213,0 +170778490485,213,0 +170778490534,213,0 +170778490584,213,0 +170778490632,214,0 +170778490680,214,0 +170778490729,214,0 +170778490777,214,0 +170778490825,214,0 +170778490873,214,0 +170778490922,214,0 +170778490970,214,0 +170778491018,214,0 +170778491066,214,0 +170778491114,214,0 +170778491161,214,0 +170778491211,214,0 +170778491259,213,0 +170778491306,213,0 +170778491354,213,0 +170778491402,213,0 +170778491450,214,0 +170778491498,214,0 +170778491546,214,0 +170778491593,214,0 +170778491641,214,0 +170778491689,214,0 +170778491739,214,0 +170778491788,214,0 +170778491836,214,0 +170778491884,214,0 +170778491932,214,0 +170778491979,214,0 +170778492027,213,0 +170778492077,213,0 +170778492125,213,0 +170778492172,213,0 +170778492220,213,0 +170778492268,214,0 +170778492316,214,0 +170778492364,214,0 +170778492411,214,0 +170778492459,214,0 +170778492509,214,0 +170778492557,214,0 +170778492604,214,0 +170778492652,214,0 +170778492702,214,0 +170778492750,214,0 +170778492798,214,0 +170778492845,213,0 +170778492893,213,0 +170778492941,213,0 +170778492989,213,0 +170778493036,214,0 +170778493084,214,0 +170778493132,214,0 +170778493180,214,0 +170778493229,214,0 +170778493277,214,0 +170778493325,214,0 +170778493375,214,0 +170778493424,214,0 +170778493472,214,0 +170778493521,214,0 +170778493571,214,0 +170778493620,214,0 +170778493668,214,0 +170778493718,214,0 +170778493766,213,0 +170778493814,213,0 +170778493862,214,0 +170778493910,214,0 +170778493959,214,0 +170778494007,214,0 +170778494055,214,0 +170778494105,214,0 +170778494154,214,0 +170778494202,214,0 +170778494251,214,0 +170778494301,215,0 +170778494349,215,0 +170778494397,214,0 +170778494446,214,0 +170778494494,214,0 +170778494542,214,0 +170778494592,214,0 +170778494640,214,0 +170778494689,214,0 +170778494739,214,0 +170778494787,214,0 +170778494835,214,0 +170778494884,214,0 +170778494932,214,0 +170778494980,214,0 +170778495028,214,0 +170778495076,214,0 +170778495126,214,0 +170778495173,215,0 +170778495223,215,0 +170778495271,214,0 +170778495319,214,0 +170778495368,215,0 +170778495416,214,0 +170778495464,214,0 +170778495512,214,0 +170778495562,214,0 +170778495611,214,0 +170778495659,214,0 +170778495707,214,0 +170778495757,214,0 +170778495805,214,0 +170778495853,214,0 +170778495900,214,0 +170778495948,215,0 +170778495996,214,0 +170778496046,215,0 +170778496094,215,0 +170778496142,215,0 +170778496189,214,0 +170778496237,214,0 +170778496285,214,0 +170778496335,214,0 +170778496383,214,0 +170778496430,215,0 +170778496478,214,0 +170778496526,214,0 +170778496576,214,0 +170778496625,214,0 +170778496675,214,0 +170778496723,214,0 +170778496772,214,0 +170778496820,214,0 +170778496868,214,0 +170778496916,214,0 +170778496966,214,0 +170778497015,214,0 +170778497063,214,0 +170778497111,215,0 +170778497159,214,0 +170778497207,214,0 +170778497254,214,0 +170778497302,214,0 +170778497350,214,0 +170778497398,214,0 +170778497446,213,0 +170778497493,213,0 +170778497541,213,0 +170778497589,213,0 +170778497637,213,0 +170778497685,213,0 +170778497733,213,0 +170778497780,214,0 +170778497828,214,0 +170778497876,214,0 +170778497924,214,0 +170778497972,214,0 +170778498019,214,0 +170778498069,214,0 +170778498118,214,0 +170778498166,214,0 +170778498214,214,0 +170778498262,214,0 +170778498310,214,0 +170778498357,214,0 +170778498405,213,0 +170778498453,213,0 +170778498501,213,0 +170778498549,213,0 +170778498596,213,0 +170778498644,213,0 +170778498692,214,0 +170778498740,214,0 +170778498789,214,0 +170778498837,214,0 +170778498885,214,0 +170778498933,214,0 +170778498981,214,0 +170778499030,214,0 +170778499078,214,0 +170778499126,214,0 +170778499173,214,0 +170778499221,214,0 +170778499269,214,0 +170778499318,213,0 +170778499366,213,0 +170778499414,213,0 +170778499462,213,0 +170778499510,213,0 +170778499558,214,0 +170778499605,214,0 +170778499653,214,0 +170778499701,214,0 +170778499749,214,0 +170778499797,214,0 +170778499845,214,0 +170778499892,214,0 +170778499940,214,0 +170778499989,214,0 +170778500037,214,0 +170778500085,215,0 +170778500133,214,0 +170778500181,214,0 +170778500229,214,0 +170778500276,213,0 +170778500324,213,0 +170778500372,213,0 +170778500420,213,0 +170778500468,213,0 +170778500516,214,0 +170778500565,214,0 +170778500613,214,0 +170778500662,214,0 +170778500710,214,0 +170778500758,214,0 +170778500806,214,0 +170778500855,214,0 +170778500903,214,0 +170778500951,214,0 +170778500999,214,0 +170778501048,214,0 +170778501096,214,0 +170778501144,214,0 +170778501193,213,0 +170778501241,213,0 +170778501291,213,0 +170778501338,213,0 +170778501388,214,0 +170778501436,214,0 +170778501483,214,0 +170778501531,214,0 +170778501579,214,0 +170778501627,214,0 +170778501675,214,0 +170778501723,214,0 +170778501771,214,0 +170778501818,214,0 +170778501866,214,0 +170778501914,214,0 +170778501962,214,0 +170778502010,214,0 +170778502057,214,0 +170778502105,213,0 +170778502153,213,0 +170778502201,213,0 +170778502249,213,0 +170778502297,213,0 +170778502345,213,0 +170778502394,213,0 +170778502443,213,0 +170778502491,214,0 +170778502539,214,0 +170778502587,214,0 +170778502636,214,0 +170778502684,214,0 +170778502732,214,0 +170778502780,214,0 +170778502828,214,0 +170778502876,214,0 +170778502923,214,0 +170778502971,214,0 +170778503019,213,0 +170778503067,213,0 +170778503115,213,0 +170778503163,213,0 +170778503211,213,0 +170778503258,213,0 +170778503306,213,0 +170778503354,213,0 +170778503402,214,0 +170778503450,214,0 +170778503499,214,0 +170778503547,214,0 +170778503595,214,0 +170778503644,214,0 +170778503692,214,0 +170778503740,214,0 +170778503788,214,0 +170778503835,214,0 +170778503883,214,0 +170778503931,214,0 +170778503979,213,0 +170778504028,213,0 +170778504076,213,0 +170778504126,213,0 +170778504175,213,0 +170778504225,214,0 +170778504273,213,0 +170778504321,214,0 +170778504369,214,0 +170778504417,214,0 +170778504466,214,0 +170778504514,214,0 +170778504562,214,0 +170778504610,214,0 +170778504658,214,0 +170778504706,214,0 +170778504754,214,0 +170778504802,214,0 +170778504850,214,0 +170778504898,213,0 +170778504947,213,0 +170778504995,213,0 +170778505043,213,0 +170778505091,214,0 +170778505139,214,0 +170778505187,214,0 +170778505234,214,0 +170778505284,214,0 +170778505333,214,0 +170778505383,214,0 +170778505430,214,0 +170778505478,215,0 +170778505526,215,0 +170778505574,214,0 +170778505622,215,0 +170778505671,214,0 +170778505721,214,0 +170778505769,214,0 +170778505817,213,0 +170778505866,213,0 +170778505914,213,0 +170778505962,214,0 +170778506010,214,0 +170778506060,214,0 +170778506108,214,0 +170778506155,214,0 +170778506203,214,0 +170778506251,214,0 +170778506301,214,0 +170778506349,214,0 +170778506396,215,0 +170778506444,215,0 +170778506492,214,0 +170778506540,215,0 +170778506588,215,0 +170778506636,214,0 +170778506684,214,0 +170778506732,213,0 +170778506780,213,0 +170778506829,213,0 +170778506877,213,0 +170778506925,213,0 +170778506973,213,0 +170778507023,213,0 +170778507072,213,0 +170778507120,214,0 +170778507168,214,0 +170778507216,214,0 +170778507264,214,0 +170778507312,214,0 +170778507360,214,0 +170778507407,215,0 +170778507455,214,0 +170778507503,214,0 +170778507551,215,0 +170778507599,214,0 +170778507647,213,0 +170778507695,213,0 +170778507744,213,0 +170778507792,213,0 +170778507840,213,0 +170778507888,213,0 +170778507936,213,0 +170778507985,213,0 +170778508035,213,0 +170778508083,214,0 +170778508130,214,0 +170778508178,214,0 +170778508226,214,0 +170778508274,214,0 +170778508324,214,0 +170778508372,214,0 +170778508420,214,0 +170778508468,214,0 +170778508517,214,0 +170778508567,213,0 +170778508615,213,0 +170778508663,213,0 +170778508712,213,0 +170778508762,213,0 +170778508810,213,0 +170778508858,213,0 +170778508905,213,0 +170778508955,213,0 +170778509003,213,0 +170778509051,214,0 +170778509099,214,0 +170778509148,214,0 +170778509196,214,0 +170778509244,215,0 +170778509292,214,0 +170778509340,214,0 +170778509389,214,0 +170778509437,214,0 +170778509487,214,0 +170778509536,213,0 +170778509584,213,0 +170778509632,213,0 +170778509681,213,0 +170778509729,213,0 +170778509777,213,0 +170778509825,213,0 +170778509875,213,0 +170778509923,214,0 +170778509971,214,0 +170778510020,214,0 +170778510070,214,0 +170778510117,214,0 +170778510167,214,0 +170778510216,214,0 +170778510264,214,0 +170778510314,214,0 +170778510362,214,0 +170778510410,214,0 +170778510458,213,0 +170778510507,213,0 +170778510555,213,0 +170778510603,213,0 +170778510651,213,0 +170778510699,213,0 +170778510748,213,0 +170778510796,213,0 +170778510844,213,0 +170778510893,213,0 +170778510941,214,0 +170778510989,214,0 +170778511037,214,0 +170778511085,214,0 +170778511133,214,0 +170778511182,214,0 +170778511232,214,0 +170778511280,214,0 +170778511328,214,0 +170778511376,213,0 +170778511425,213,0 +170778511473,213,0 +170778511522,213,0 +170778511570,213,0 +170778511618,213,0 +170778511668,213,0 +170778511717,213,0 +170778511765,213,0 +170778511813,214,0 +170778511861,214,0 +170778511911,214,0 +170778511960,214,0 +170778512008,214,0 +170778512056,214,0 +170778512104,214,0 +170778512152,214,0 +170778512200,214,0 +170778512248,214,0 +170778512296,213,0 +170778512343,213,0 +170778512391,213,0 +170778512439,213,0 +170778512487,213,0 +170778512535,213,0 +170778512585,213,0 +170778512634,213,0 +170778512682,214,0 +170778512730,213,0 +170778512778,213,0 +170778512826,214,0 +170778512874,214,0 +170778512922,214,0 +170778512970,214,0 +170778513018,214,0 +170778513065,214,0 +170778513113,214,0 +170778513161,214,0 +170778513211,214,0 +170778513260,213,0 +170778513308,213,0 +170778513358,213,0 +170778513406,213,0 +170778513454,213,0 +170778513502,213,0 +170778513550,213,0 +170778513598,213,0 +170778513647,213,0 +170778513695,214,0 +170778513744,214,0 +170778513794,214,0 +170778513843,214,0 +170778513891,214,0 +170778513939,214,0 +170778513987,214,0 +170778514035,214,0 +170778514083,214,0 +170778514131,214,0 +170778514180,213,0 +170778514228,213,0 +170778514276,213,0 +170778514324,213,0 +170778514372,213,0 +170778514421,213,0 +170778514469,213,0 +170778514519,214,0 +170778514567,213,0 +170778514615,214,0 +170778514664,214,0 +170778514712,214,0 +170778514760,214,0 +170778514808,214,0 +170778514858,214,0 +170778514905,214,0 +170778514953,214,0 +170778515001,214,0 +170778515050,214,0 +170778515098,213,0 +170778515147,213,0 +170778515195,213,0 +170778515245,213,0 +170778515293,214,0 +170778515341,214,0 +170778515390,214,0 +170778515438,214,0 +170778515486,214,0 +170778515534,214,0 +170778515582,214,0 +170778515630,214,0 +170778515678,214,0 +170778515727,214,0 +170778515775,214,0 +170778515825,214,0 +170778515874,214,0 +170778515922,214,0 +170778515970,214,0 +170778516020,213,0 +170778516069,213,0 +170778516117,213,0 +170778516165,213,0 +170778516213,214,0 +170778516261,214,0 +170778516309,214,0 +170778516358,214,0 +170778516406,214,0 +170778516454,214,0 +170778516502,214,0 +170778516550,214,0 +170778516600,214,0 +170778516648,214,0 +170778516695,214,0 +170778516743,214,0 +170778516791,214,0 +170778516839,214,0 +170778516889,214,0 +170778516938,214,0 +170778516986,214,0 +170778517034,214,0 +170778517083,214,0 +170778517131,214,0 +170778517179,214,0 +170778517227,214,0 +170778517275,214,0 +170778517323,214,0 +170778517371,214,0 +170778517419,214,0 +170778517468,214,0 +170778517518,215,0 +170778517568,215,0 +170778517615,215,0 +170778517663,215,0 +170778517711,214,0 +170778517759,214,0 +170778517809,214,0 +170778517858,214,0 +170778517908,214,0 +170778517956,214,0 +170778518004,214,0 +170778518053,214,0 +170778518101,214,0 +170778518151,214,0 +170778518198,214,0 +170778518248,214,0 +170778518296,214,0 +170778518344,214,0 +170778518392,215,0 +170778518440,215,0 +170778518488,215,0 +170778518536,215,0 +170778518584,215,0 +170778518631,215,0 +170778518679,214,0 +170778518727,214,0 +170778518777,214,0 +170778518825,213,0 +170778518874,213,0 +170778518922,214,0 +170778518972,214,0 +170778519021,214,0 +170778519069,214,0 +170778519119,214,0 +170778519168,214,0 +170778519218,214,0 +170778519266,214,0 +170778519313,214,0 +170778519361,215,0 +170778519409,214,0 +170778519459,214,0 +170778519507,214,0 +170778519556,214,0 +170778519604,214,0 +170778519652,214,0 +170778519700,214,0 +170778519748,213,0 +170778519796,213,0 +170778519846,213,0 +170778519894,213,0 +170778519941,213,0 +170778519991,213,0 +170778520039,213,0 +170778520088,213,0 +170778520138,214,0 +170778520186,214,0 +170778520234,213,0 +170778520282,214,0 +170778520330,214,0 +170778520378,214,0 +170778520426,214,0 +170778520473,214,0 +170778520521,214,0 +170778520569,214,0 +170778520617,214,0 +170778520665,213,0 +170778520715,213,0 +170778520763,213,0 +170778520812,213,0 +170778520860,213,0 +170778520908,213,0 +170778520956,213,0 +170778521004,213,0 +170778521052,213,0 +170778521100,214,0 +170778521149,213,0 +170778521199,214,0 +170778521248,214,0 +170778521296,214,0 +170778521344,214,0 +170778521394,214,0 +170778521442,214,0 +170778521489,214,0 +170778521537,214,0 +170778521585,213,0 +170778521633,213,0 +170778521681,213,0 +170778521729,213,0 +170778521777,213,0 +170778521825,213,0 +170778521873,214,0 +170778521920,213,0 +170778521968,214,0 +170778522016,214,0 +170778522064,214,0 +170778522112,214,0 +170778522160,214,0 +170778522208,214,0 +170778522256,214,0 +170778522304,214,0 +170778522352,214,0 +170778522400,214,0 +170778522449,214,0 +170778522499,214,0 +170778522546,213,0 +170778522594,213,0 +170778522642,213,0 +170778522690,213,0 +170778522738,213,0 +170778522786,214,0 +170778522836,213,0 +170778522884,214,0 +170778522933,214,0 +170778522981,214,0 +170778523029,214,0 +170778523077,214,0 +170778523125,214,0 +170778523172,214,0 +170778523220,214,0 +170778523268,214,0 +170778523316,215,0 +170778523364,214,0 +170778523412,214,0 +170778523460,213,0 +170778523509,213,0 +170778523557,213,0 +170778523605,213,0 +170778523653,213,0 +170778523701,213,0 +170778523748,213,0 +170778523798,213,0 +170778523845,214,0 +170778523895,214,0 +170778523943,214,0 +170778523992,214,0 +170778524040,214,0 +170778524088,214,0 +170778524135,214,0 +170778524183,214,0 +170778524231,214,0 +170778524279,214,0 +170778524327,214,0 +170778524374,213,0 +170778524422,213,0 +170778524470,213,0 +170778524518,213,0 +170778524566,213,0 +170778524614,213,0 +170778524661,213,0 +170778524709,213,0 +170778524757,214,0 +170778524805,214,0 +170778524853,213,0 +170778524902,214,0 +170778524952,214,0 +170778525001,214,0 +170778525051,214,0 +170778525099,214,0 +170778525147,214,0 +170778525195,214,0 +170778525242,214,0 +170778525292,213,0 +170778525340,213,0 +170778525389,213,0 +170778525437,213,0 +170778525485,213,0 +170778525533,213,0 +170778525581,213,0 +170778525631,213,0 +170778525679,213,0 +170778525728,214,0 +170778525776,214,0 +170778525824,214,0 +170778525872,214,0 +170778525920,214,0 +170778525968,214,0 +170778526016,214,0 +170778526065,214,0 +170778526113,214,0 +170778526161,214,0 +170778526210,214,0 +170778526260,213,0 +170778526307,213,0 +170778526355,213,0 +170778526403,213,0 +170778526451,213,0 +170778526501,213,0 +170778526548,213,0 +170778526598,213,0 +170778526646,213,0 +170778526694,213,0 +170778526741,214,0 +170778526789,214,0 +170778526837,214,0 +170778526885,214,0 +170778526933,214,0 +170778526981,214,0 +170778527031,214,0 +170778527078,214,0 +170778527128,214,0 +170778527176,213,0 +170778527225,213,0 +170778527275,213,0 +170778527324,213,0 +170778527372,213,0 +170778527422,213,0 +170778527471,213,0 +170778527519,213,0 +170778527567,213,0 +170778527617,213,0 +170778527665,214,0 +170778527713,213,0 +170778527761,214,0 +170778527808,214,0 +170778527856,214,0 +170778527904,214,0 +170778527952,214,0 +170778527999,214,0 +170778528047,214,0 +170778528095,213,0 +170778528143,213,0 +170778528191,213,0 +170778528241,213,0 +170778528289,213,0 +170778528336,213,0 +170778528384,213,0 +170778528434,213,0 +170778528482,213,0 +170778528531,213,0 +170778528581,213,0 +170778528630,214,0 +170778528680,214,0 +170778528728,214,0 +170778528775,214,0 +170778528823,214,0 +170778528871,214,0 +170778528919,214,0 +170778528967,214,0 +170778529016,213,0 +170778529066,213,0 +170778529114,213,0 +170778529162,213,0 +170778529210,213,0 +170778529258,213,0 +170778529306,213,0 +170778529353,213,0 +170778529403,213,0 +170778529451,213,0 +170778529500,213,0 +170778529548,214,0 +170778529596,214,0 +170778529644,214,0 +170778529694,214,0 +170778529742,214,0 +170778529789,214,0 +170778529837,214,0 +170778529885,214,0 +170778529933,214,0 +170778529983,213,0 +170778530031,213,0 +170778530080,213,0 +170778530128,213,0 +170778530176,213,0 +170778530224,213,0 +170778530272,213,0 +170778530320,213,0 +170778530370,213,0 +170778530419,214,0 +170778530467,214,0 +170778530515,214,0 +170778530565,214,0 +170778530614,214,0 +170778530662,214,0 +170778530711,214,0 +170778530759,214,0 +170778530807,214,0 +170778530855,214,0 +170778530905,213,0 +170778530954,213,0 +170778531002,213,0 +170778531050,213,0 +170778531098,213,0 +170778531146,213,0 +170778531196,213,0 +170778531244,213,0 +170778531293,213,0 +170778531343,213,0 +170778531391,214,0 +170778531439,214,0 +170778531487,214,0 +170778531536,214,0 +170778531584,214,0 +170778531634,214,0 +170778531681,214,0 +170778531729,214,0 +170778531779,214,0 +170778531829,213,0 +170778531876,213,0 +170778531924,213,0 +170778531974,213,0 +170778532022,213,0 +170778532070,213,0 +170778532119,213,0 +170778532169,214,0 +170778532218,214,0 +170778532266,214,0 +170778532316,214,0 +170778532364,214,0 +170778532412,214,0 +170778532461,214,0 +170778532509,214,0 +170778532559,214,0 +170778532608,215,0 +170778532658,214,0 +170778532705,214,0 +170778532755,213,0 +170778532803,213,0 +170778532852,213,0 +170778532900,214,0 +170778532948,214,0 +170778532996,214,0 +170778533044,214,0 +170778533092,214,0 +170778533141,214,0 +170778533189,214,0 +170778533237,214,0 +170778533285,214,0 +170778533333,214,0 +170778533383,215,0 +170778533432,214,0 +170778533482,214,0 +170778533531,215,0 +170778533581,214,0 +170778533629,214,0 +170778533677,213,0 +170778533725,213,0 +170778533774,213,0 +170778533824,213,0 +170778533872,213,0 +170778533921,213,0 +170778533969,214,0 +170778534017,213,0 +170778534065,214,0 +170778534113,214,0 +170778534161,214,0 +170778534209,214,0 +170778534258,214,0 +170778534306,214,0 +170778534354,214,0 +170778534402,214,0 +170778534450,215,0 +170778534498,214,0 +170778534547,215,0 +170778534595,213,0 +170778534643,213,0 +170778534691,213,0 +170778534739,213,0 +170778534787,213,0 +170778534835,213,0 +170778534883,213,0 +170778534932,213,0 +170778534982,213,0 +170778535030,213,0 +170778535078,214,0 +170778535127,214,0 +170778535176,214,0 +170778535226,214,0 +170778535274,214,0 +170778535323,214,0 +170778535373,214,0 +170778535421,214,0 +170778535469,214,0 +170778535517,213,0 +170778535565,213,0 +170778535613,213,0 +170778535661,213,0 +170778535708,213,0 +170778535756,213,0 +170778535804,213,0 +170778535854,213,0 +170778535902,213,0 +170778535950,213,0 +170778535998,214,0 +170778536046,214,0 +170778536094,213,0 +170778536142,214,0 +170778536190,214,0 +170778536239,214,0 +170778536287,214,0 +170778536335,214,0 +170778536383,214,0 +170778536431,214,0 +170778536478,213,0 +170778536528,213,0 +170778536576,213,0 +170778536623,213,0 +170778536671,213,0 +170778536719,213,0 +170778536767,213,0 +170778536815,213,0 +170778536863,213,0 +170778536910,213,0 +170778536958,214,0 +170778537006,214,0 +170778537054,214,0 +170778537102,214,0 +170778537150,214,0 +170778537198,214,0 +170778537245,214,0 +170778537293,214,0 +170778537341,214,0 +170778537389,214,0 +170778537437,213,0 +170778537485,213,0 +170778537532,213,0 +170778537580,213,0 +170778537628,213,0 +170778537676,213,0 +170778537724,214,0 +170778537772,214,0 +170778537820,214,0 +170778537867,214,0 +170778537917,214,0 +170778537965,214,0 +170778538013,214,0 +170778538062,214,0 +170778538111,214,0 +170778538159,214,0 +170778538207,214,0 +170778538257,214,0 +170778538305,214,0 +170778538352,214,0 +170778538402,214,0 +170778538450,214,0 +170778538498,214,0 +170778538546,214,0 +170778538595,214,0 +170778538644,214,0 +170778538694,214,0 +170778538742,214,0 +170778538790,214,0 +170778538838,214,0 +170778538886,214,0 +170778538934,215,0 +170778538982,215,0 +170778539029,215,0 +170778539077,215,0 +170778539127,215,0 +170778539175,215,0 +170778539222,215,0 +170778539270,214,0 +170778539318,214,0 +170778539366,214,0 +170778539414,214,0 +170778539462,214,0 +170778539510,214,0 +170778539558,214,0 +170778539607,214,0 +170778539655,214,0 +170778539703,215,0 +170778539753,215,0 +170778539800,215,0 +170778539850,215,0 +170778539898,215,0 +170778539945,215,0 +170778539995,215,0 +170778540044,215,0 +170778540092,214,0 +170778540140,214,0 +170778540188,214,0 +170778540235,213,0 +170778540283,214,0 +170778540331,214,0 +170778540379,214,0 +170778540427,214,0 +170778540475,214,0 +170778540523,214,0 +170778540570,214,0 +170778540618,214,0 +170778540666,214,0 +170778540714,214,0 +170778540762,215,0 +170778540810,215,0 +170778540858,215,0 +170778540907,215,0 +170778540957,215,0 +170778541005,214,0 +170778541053,214,0 +170778541101,214,0 +170778541149,213,0 +170778541197,213,0 +170778541244,213,0 +170778541294,213,0 +170778541342,213,0 +170778541390,213,0 +170778541438,214,0 +170778541486,214,0 +170778541535,214,0 +170778541585,214,0 +170778541634,214,0 +170778541682,214,0 +170778541730,214,0 +170778541778,214,0 +170778541828,214,0 +170778541876,214,0 +170778541923,214,0 +170778541971,215,0 +170778542021,214,0 +170778542069,213,0 +170778542116,213,0 +170778542164,213,0 +170778542214,213,0 +170778542262,213,0 +170778542309,213,0 +170778542357,214,0 +170778542405,213,0 +170778542453,214,0 +170778542501,214,0 +170778542549,214,0 +170778542596,214,0 +170778542644,214,0 +170778542692,214,0 +170778542740,214,0 +170778542788,214,0 +170778542836,214,0 +170778542884,214,0 +170778542932,214,0 +170778542980,213,0 +170778543027,213,0 +170778543075,213,0 +170778543123,213,0 +170778543171,214,0 +170778543219,214,0 +170778543267,214,0 +170778543315,214,0 +170778543363,214,0 +170778543411,214,0 +170778543459,214,0 +170778543506,214,0 +170778543554,214,0 +170778543602,214,0 +170778543650,214,0 +170778543698,214,0 +170778543746,214,0 +170778543794,214,0 +170778543842,214,0 +170778543890,214,0 +170778543939,213,0 +170778543987,213,0 +170778544037,213,0 +170778544084,213,0 +170778544134,213,0 +170778544183,213,0 +170778544231,214,0 +170778544281,214,0 +170778544329,214,0 +170778544377,214,0 +170778544426,214,0 +170778544474,214,0 +170778544522,214,0 +170778544572,214,0 +170778544620,214,0 +170778544668,214,0 +170778544716,215,0 +170778544765,215,0 +170778544813,214,0 +170778544863,213,0 +170778544912,213,0 +170778544962,213,0 +170778545010,213,0 +170778545059,213,0 +170778545109,214,0 +170778545156,214,0 +170778545204,214,0 +170778545252,214,0 +170778545300,214,0 +170778545348,214,0 +170778545396,214,0 +170778545444,214,0 +170778545492,214,0 +170778545539,214,0 +170778545587,214,0 +170778545635,214,0 +170778545683,214,0 +170778545731,214,0 +170778545779,213,0 +170778545827,213,0 +170778545874,213,0 +170778545922,213,0 +170778545970,213,0 +170778546018,214,0 +170778546066,213,0 +170778546114,214,0 +170778546163,214,0 +170778546211,214,0 +170778546259,214,0 +170778546307,214,0 +170778546354,214,0 +170778546402,214,0 +170778546450,214,0 +170778546498,214,0 +170778546546,214,0 +170778546595,215,0 +170778546643,214,0 +170778546691,213,0 +170778546738,213,0 +170778546786,213,0 +170778546834,213,0 +170778546882,213,0 +170778546930,213,0 +170778546978,214,0 +170778547025,214,0 +170778547073,214,0 +170778547121,214,0 +170778547169,214,0 +170778547219,214,0 +170778547266,214,0 +170778547314,214,0 +170778547364,214,0 +170778547412,214,0 +170778547460,215,0 +170778547508,215,0 +170778547555,214,0 +170778547605,214,0 +170778547653,213,0 +170778547701,213,0 +170778547749,214,0 +170778547797,214,0 +170778547845,214,0 +170778547893,214,0 +170778547940,214,0 +170778547990,214,0 +170778548038,214,0 +170778548087,214,0 +170778548137,214,0 +170778548187,214,0 +170778548235,215,0 +170778548283,214,0 +170778548332,214,0 +170778548380,214,0 +170778548430,215,0 +170778548477,215,0 +170778548525,214,0 +170778548575,213,0 +170778548624,213,0 +170778548672,213,0 +170778548720,213,0 +170778548768,213,0 +170778548816,213,0 +170778548863,214,0 +170778548911,214,0 +170778548959,214,0 +170778549007,214,0 +170778549055,214,0 +170778549103,214,0 +170778549151,214,0 +170778549199,214,0 +170778549247,214,0 +170778549295,214,0 +170778549342,215,0 +170778549390,214,0 +170778549438,214,0 +170778549486,213,0 +170778549534,213,0 +170778549582,213,0 +170778549629,213,0 +170778549677,213,0 +170778549725,213,0 +170778549773,213,0 +170778549822,213,0 +170778549872,214,0 +170778549920,214,0 +170778549968,214,0 +170778550017,214,0 +170778550065,214,0 +170778550114,214,0 +170778550162,214,0 +170778550212,214,0 +170778550260,214,0 +170778550309,214,0 +170778550357,214,0 +170778550405,214,0 +170778550455,213,0 +170778550503,213,0 +170778550551,213,0 +170778550598,213,0 +170778550646,213,0 +170778550694,213,0 +170778550742,213,0 +170778550790,213,0 +170778550838,214,0 +170778550886,214,0 +170778550934,214,0 +170778550983,214,0 +170778551033,214,0 +170778551081,214,0 +170778551129,214,0 +170778551176,214,0 +170778551224,214,0 +170778551272,214,0 +170778551320,213,0 +170778551368,213,0 +170778551416,213,0 +170778551464,213,0 +170778551514,213,0 +170778551561,213,0 +170778551609,213,0 +170778551657,213,0 +170778551705,213,0 +170778551753,213,0 +170778551801,213,0 +170778551851,214,0 +170778551899,214,0 +170778551947,214,0 +170778551994,214,0 +170778552042,214,0 +170778552090,214,0 +170778552138,214,0 +170778552188,214,0 +170778552236,214,0 +170778552284,213,0 +170778552332,213,0 +170778552379,213,0 +170778552429,213,0 +170778552477,213,0 +170778552525,213,0 +170778552573,213,0 +170778552622,213,0 +170778552670,213,0 +170778552718,213,0 +170778552768,213,0 +170778552815,213,0 +170778552863,214,0 +170778552913,214,0 +170778552962,214,0 +170778553010,214,0 +170778553058,214,0 +170778553106,214,0 +170778553154,214,0 +170778553204,213,0 +170778553251,213,0 +170778553299,213,0 +170778553349,213,0 +170778553397,213,0 +170778553446,213,0 +170778553494,213,0 +170778553544,213,0 +170778553591,214,0 +170778553639,214,0 +170778553689,214,0 +170778553737,214,0 +170778553786,214,0 +170778553836,214,0 +170778553884,214,0 +170778553931,214,0 +170778553981,214,0 +170778554029,214,0 +170778554077,214,0 +170778554125,213,0 +170778554172,213,0 +170778554220,213,0 +170778554268,213,0 +170778554318,213,0 +170778554366,213,0 +170778554414,213,0 +170778554461,213,0 +170778554511,213,0 +170778554561,213,0 +170778554609,213,0 +170778554656,214,0 +170778554704,214,0 +170778554754,214,0 +170778554802,214,0 +170778554850,214,0 +170778554898,214,0 +170778554946,214,0 +170778554994,214,0 +170778555042,214,0 +170778555091,213,0 +170778555141,213,0 +170778555190,213,0 +170778555240,213,0 +170778555287,213,0 +170778555335,213,0 +170778555385,213,0 +170778555434,213,0 +170778555482,213,0 +170778555530,214,0 +170778555578,214,0 +170778555628,214,0 +170778555676,214,0 +170778555723,214,0 +170778555773,214,0 +170778555821,214,0 +170778555868,214,0 +170778555918,214,0 +170778555967,214,0 +170778556017,213,0 +170778556065,213,0 +170778556113,213,0 +170778556161,213,0 +170778556209,213,0 +170778556257,213,0 +170778556306,214,0 +170778556354,214,0 +170778556402,214,0 +170778556450,214,0 +170778556498,214,0 +170778556546,214,0 +170778556595,214,0 +170778556645,214,0 +170778556694,214,0 +170778556744,215,0 +170778556792,214,0 +170778556841,214,0 +170778556891,214,0 +170778556940,213,0 +170778556988,213,0 +170778557036,213,0 +170778557085,213,0 +170778557133,213,0 +170778557181,213,0 +170778557229,213,0 +170778557277,214,0 +170778557325,214,0 +170778557373,214,0 +170778557421,214,0 +170778557470,214,0 +170778557518,214,0 +170778557566,214,0 +170778557613,214,0 +170778557661,214,0 +170778557709,214,0 +170778557757,214,0 +170778557805,215,0 +170778557853,213,0 +170778557901,213,0 +170778557949,213,0 +170778557997,213,0 +170778558046,213,0 +170778558094,213,0 +170778558144,213,0 +170778558191,213,0 +170778558241,213,0 +170778558289,214,0 +170778558337,214,0 +170778558385,214,0 +170778558433,214,0 +170778558480,214,0 +170778558528,214,0 +170778558578,214,0 +170778558625,214,0 +170778558673,214,0 +170778558723,214,0 +170778558770,213,0 +170778558818,213,0 +170778558866,213,0 +170778558914,213,0 +170778558962,213,0 +170778559010,213,0 +170778559057,213,0 +170778559105,213,0 +170778559153,213,0 +170778559201,214,0 +170778559249,213,0 +170778559297,214,0 +170778559345,214,0 +170778559394,214,0 +170778559442,214,0 +170778559490,214,0 +170778559539,214,0 +170778559587,214,0 +170778559635,214,0 +170778559683,214,0 +170778559731,213,0 +170778559779,213,0 +170778559828,213,0 +170778559876,213,0 +170778559924,213,0 +170778559973,213,0 +170778560021,213,0 +170778560069,214,0 +170778560118,214,0 +170778560166,214,0 +170778560215,214,0 +170778560263,214,0 +170778560311,214,0 +170778560359,214,0 +170778560407,214,0 +170778560455,214,0 +170778560503,214,0 +170778560551,214,0 +170778560600,214,0 +170778560648,213,0 +170778560696,213,0 +170778560745,213,0 +170778560793,213,0 +170778560841,214,0 +170778560891,214,0 +170778560940,214,0 +170778560988,214,0 +170778561036,214,0 +170778561084,214,0 +170778561133,214,0 +170778561181,214,0 +170778561229,214,0 +170778561277,214,0 +170778561327,215,0 +170778561376,215,0 +170778561425,214,0 +170778561473,215,0 +170778561521,214,0 +170778561569,214,0 +170778561617,213,0 +170778561665,214,0 +170778561713,214,0 +170778561761,214,0 +170778561809,214,0 +170778561857,214,0 +170778561905,214,0 +170778561953,214,0 +170778562002,214,0 +170778562052,214,0 +170778562101,214,0 +170778562149,214,0 +170778562197,215,0 +170778562247,215,0 +170778562294,214,0 +170778562342,214,0 +170778562390,215,0 +170778562438,214,0 +170778562486,213,0 +170778562534,213,0 +170778562582,213,0 +170778562629,213,0 +170778562677,213,0 +170778562725,214,0 +170778562773,214,0 +170778562822,214,0 +170778562870,214,0 +170778562918,214,0 +170778562966,214,0 +170778563014,214,0 +170778563062,214,0 +170778563110,214,0 +170778563158,214,0 +170778563205,215,0 +170778563255,214,0 +170778563302,215,0 +170778563350,214,0 +170778563398,214,0 +170778563446,213,0 +170778563494,213,0 +170778563542,214,0 +170778563590,214,0 +170778563638,214,0 +170778563685,214,0 +170778563735,214,0 +170778563783,214,0 +170778563830,214,0 +170778563878,214,0 +170778563926,214,0 +170778563974,214,0 +170778564022,214,0 +170778564071,214,0 +170778564119,215,0 +170778564167,215,0 +170778564215,214,0 +170778564263,214,0 +170778564310,214,0 +170778564358,213,0 +170778564406,213,0 +170778564454,213,0 +170778564501,214,0 +170778564549,213,0 +170778564599,214,0 +170778564647,214,0 +170778564695,214,0 +170778564742,214,0 +170778564790,214,0 +170778564838,214,0 +170778564886,214,0 +170778564934,214,0 +170778564982,214,0 +170778565030,214,0 +170778565077,214,0 +170778565125,215,0 +170778565173,214,0 +170778565221,214,0 +170778565269,214,0 +170778565317,213,0 +170778565365,213,0 +170778565412,214,0 +170778565460,213,0 +170778565508,214,0 +170778565556,214,0 +170778565606,214,0 +170778565653,214,0 +170778565701,214,0 +170778565749,214,0 +170778565799,214,0 +170778565847,214,0 +170778565895,214,0 +170778565943,214,0 +170778565992,215,0 +170778566042,214,0 +170778566091,214,0 +170778566139,214,0 +170778566187,214,0 +170778566235,213,0 +170778566283,213,0 +170778566332,213,0 +170778566382,213,0 +170778566430,213,0 +170778566478,213,0 +170778566527,214,0 +170778566575,214,0 +170778566623,214,0 +170778566671,214,0 +170778566718,214,0 +170778566768,214,0 +170778566816,214,0 +170778566864,214,0 +170778566912,214,0 +170778566960,214,0 +170778567007,214,0 +170778567057,214,0 +170778567105,214,0 +170778567154,213,0 +170778567202,213,0 +170778567250,213,0 +170778567300,213,0 +170778567348,213,0 +170778567396,214,0 +170778567444,214,0 +170778567492,214,0 +170778567540,214,0 +170778567588,214,0 +170778567636,214,0 +170778567684,214,0 +170778567731,214,0 +170778567779,214,0 +170778567827,214,0 +170778567875,215,0 +170778567923,215,0 +170778567971,215,0 +170778568019,214,0 +170778568069,213,0 +170778568118,213,0 +170778568166,213,0 +170778568214,213,0 +170778568264,214,0 +170778568313,213,0 +170778568361,214,0 +170778568411,214,0 +170778568459,214,0 +170778568507,214,0 +170778568555,214,0 +170778568604,214,0 +170778568654,214,0 +170778568703,214,0 +170778568753,214,0 +170778568802,214,0 +170778568850,214,0 +170778568898,214,0 +170778568946,214,0 +170778568995,213,0 +170778569045,213,0 +170778569095,213,0 +170778569144,213,0 +170778569192,213,0 +170778569240,213,0 +170778569289,214,0 +170778569337,214,0 +170778569387,214,0 +170778569435,214,0 +170778569484,214,0 +170778569532,214,0 +170778569580,214,0 +170778569629,214,0 +170778569677,214,0 +170778569725,214,0 +170778569775,214,0 +170778569823,214,0 +170778569871,214,0 +170778569918,213,0 +170778569966,213,0 +170778570014,213,0 +170778570064,213,0 +170778570113,213,0 +170778570161,213,0 +170778570209,214,0 +170778570257,213,0 +170778570305,214,0 +170778570353,214,0 +170778570401,214,0 +170778570449,214,0 +170778570499,214,0 +170778570546,214,0 +170778570596,214,0 +170778570644,214,0 +170778570692,214,0 +170778570741,215,0 +170778570789,214,0 +170778570837,214,0 +170778570887,213,0 +170778570935,213,0 +170778570982,213,0 +170778571030,213,0 +170778571080,213,0 +170778571129,213,0 +170778571179,213,0 +170778571227,214,0 +170778571274,214,0 +170778571322,214,0 +170778571372,214,0 +170778571421,214,0 +170778571469,214,0 +170778571519,214,0 +170778571566,214,0 +170778571614,214,0 +170778571662,215,0 +170778571712,214,0 +170778571759,214,0 +170778571807,213,0 +170778571855,213,0 +170778571903,213,0 +170778571951,213,0 +170778571998,213,0 +170778572048,213,0 +170778572096,213,0 +170778572143,213,0 +170778572191,213,0 +170778572239,213,0 +170778572287,213,0 +170778572335,214,0 +170778572383,214,0 +170778572431,214,0 +170778572480,214,0 +170778572529,214,0 +170778572579,214,0 +170778572627,214,0 +170778572675,214,0 +170778572722,213,0 +170778572770,213,0 +170778572818,213,0 +170778572868,213,0 +170778572916,213,0 +170778572963,213,0 +170778573011,213,0 +170778573061,213,0 +170778573108,213,0 +170778573156,213,0 +170778573204,213,0 +170778573252,213,0 +170778573300,213,0 +170778573348,214,0 +170778573396,214,0 +170778573445,214,0 +170778573495,214,0 +170778573542,214,0 +170778573590,214,0 +170778573638,213,0 +170778573686,213,0 +170778573734,213,0 +170778573782,213,0 +170778573832,213,0 +170778573880,213,0 +170778573929,214,0 +170778573979,213,0 +170778574028,214,0 +170778574078,214,0 +170778574127,214,0 +170778574177,214,0 +170778574225,214,0 +170778574273,214,0 +170778574321,214,0 +170778574370,214,0 +170778574418,214,0 +170778574468,214,0 +170778574517,214,0 +170778574565,213,0 +170778574613,213,0 +170778574661,213,0 +170778574709,213,0 +170778574758,213,0 +170778574806,213,0 +170778574854,214,0 +170778574902,214,0 +170778574950,214,0 +170778574998,214,0 +170778575047,214,0 +170778575097,214,0 +170778575144,214,0 +170778575192,214,0 +170778575242,214,0 +170778575290,215,0 +170778575339,214,0 +170778575387,215,0 +170778575437,214,0 +170778575486,214,0 +170778575534,213,0 +170778575584,213,0 +170778575632,214,0 +170778575681,214,0 +170778575731,214,0 +170778575779,214,0 +170778575827,214,0 +170778575874,214,0 +170778575924,214,0 +170778575972,214,0 +170778576020,214,0 +170778576068,214,0 +170778576117,214,0 +170778576165,214,0 +170778576214,215,0 +170778576262,214,0 +170778576310,214,0 +170778576358,214,0 +170778576406,214,0 +170778576454,213,0 +170778576504,213,0 +170778576552,213,0 +170778576601,214,0 +170778576649,214,0 +170778576697,214,0 +170778576745,214,0 +170778576793,214,0 +170778576840,214,0 +170778576888,214,0 +170778576936,214,0 +170778576984,214,0 +170778577032,214,0 +170778577080,214,0 +170778577128,214,0 +170778577176,215,0 +170778577225,214,0 +170778577273,214,0 +170778577321,214,0 +170778577369,213,0 +170778577417,213,0 +170778577466,213,0 +170778577514,213,0 +170778577564,213,0 +170778577612,213,0 +170778577661,213,0 +170778577710,213,0 +170778577760,214,0 +170778577810,214,0 +170778577859,214,0 +170778577909,214,0 +170778577958,214,0 +170778578006,214,0 +170778578054,214,0 +170778578102,214,0 +170778578152,214,0 +170778578201,214,0 +170778578251,214,0 +170778578299,213,0 +170778578348,213,0 +170778578398,213,0 +170778578446,213,0 +170778578493,213,0 +170778578543,213,0 +170778578591,213,0 +170778578640,213,0 +170778578690,213,0 +170778578740,214,0 +170778578787,214,0 +170778578835,214,0 +170778578883,214,0 +170778578933,214,0 +170778578982,214,0 +170778579032,214,0 +170778579080,214,0 +170778579128,214,0 +170778579175,214,0 +170778579223,213,0 +170778579273,213,0 +170778579321,213,0 +170778579370,213,0 +170778579420,213,0 +170778579468,214,0 +170778579516,214,0 +170778579565,214,0 +170778579615,214,0 +170778579663,214,0 +170778579711,214,0 +170778579758,214,0 +170778579806,214,0 +170778579854,214,0 +170778579902,214,0 +170778579950,214,0 +170778580000,214,0 +170778580047,214,0 +170778580095,214,0 +170778580143,213,0 +170778580191,213,0 +170778580239,213,0 +170778580287,213,0 +170778580335,213,0 +170778580383,213,0 +170778580431,213,0 +170778580481,213,0 +170778580529,214,0 +170778580576,214,0 +170778580624,214,0 +170778580672,214,0 +170778580722,214,0 +170778580770,214,0 +170778580818,214,0 +170778580865,214,0 +170778580913,214,0 +170778580961,214,0 +170778581011,214,0 +170778581060,213,0 +170778581110,213,0 +170778581158,213,0 +170778581207,213,0 +170778581255,213,0 +170778581304,213,0 +170778581352,213,0 +170778581402,213,0 +170778581451,214,0 +170778581499,214,0 +170778581547,214,0 +170778581595,214,0 +170778581643,214,0 +170778581692,214,0 +170778581740,214,0 +170778581788,214,0 +170778581836,214,0 +170778581885,214,0 +170778581933,214,0 +170778581981,213,0 +170778582029,213,0 +170778582079,213,0 +170778582127,213,0 +170778582174,213,0 +170778582222,214,0 +170778582270,214,0 +170778582318,214,0 +170778582368,214,0 +170778582417,214,0 +170778582467,214,0 +170778582516,214,0 +170778582564,214,0 +170778582614,214,0 +170778582663,214,0 +170778582711,214,0 +170778582759,214,0 +170778582807,214,0 +170778582855,214,0 +170778582903,214,0 +170778582951,213,0 +170778582999,213,0 +170778583047,213,0 +170778583094,214,0 +170778583144,214,0 +170778583193,214,0 +170778583243,214,0 +170778583292,214,0 +170778583340,214,0 +170778583388,214,0 +170778583436,214,0 +170778583485,214,0 +170778583533,214,0 +170778583581,214,0 +170778583629,214,0 +170778583677,214,0 +170778583725,214,0 +170778583772,214,0 +170778583820,214,0 +170778583868,213,0 +170778583916,213,0 +170778583964,213,0 +170778584012,214,0 +170778584060,213,0 +170778584107,214,0 +170778584155,214,0 +170778584203,214,0 +170778584251,214,0 +170778584299,214,0 +170778584347,214,0 +170778584395,214,0 +170778584442,214,0 +170778584490,214,0 +170778584540,214,0 +170778584588,214,0 +170778584636,215,0 +170778584684,214,0 +170778584732,214,0 +170778584779,213,0 +170778584827,213,0 +170778584875,213,0 +170778584923,214,0 +170778584971,214,0 +170778585019,214,0 +170778585067,214,0 +170778585115,214,0 +170778585164,214,0 +170778585212,214,0 +170778585260,214,0 +170778585308,214,0 +170778585356,214,0 +170778585404,214,0 +170778585452,215,0 +170778585500,215,0 +170778585548,214,0 +170778585597,214,0 +170778585645,214,0 +170778585693,214,0 +170778585742,213,0 +170778585790,213,0 +170778585840,213,0 +170778585888,214,0 +170778585936,213,0 +170778585983,214,0 +170778586031,214,0 +170778586079,214,0 +170778586127,214,0 +170778586175,214,0 +170778586223,214,0 +170778586271,214,0 +170778586320,214,0 +170778586368,214,0 +170778586416,214,0 +170778586464,214,0 +170778586512,214,0 +170778586560,214,0 +170778586608,214,0 +170778586656,213,0 +170778586705,213,0 +170778586753,213,0 +170778586801,213,0 +170778586851,213,0 +170778586901,213,0 +170778586948,213,0 +170778586996,213,0 +170778587046,213,0 +170778587094,213,0 +170778587143,213,0 +170778587191,213,0 +170778587239,214,0 +170778587289,214,0 +170778587337,214,0 +170778587385,214,0 +170778587434,214,0 +170778587482,214,0 +170778587530,214,0 +170778587578,213,0 +170778587626,213,0 +170778587674,213,0 +170778587723,213,0 +170778587771,213,0 +170778587821,213,0 +170778587869,213,0 +170778587917,213,0 +170778587966,213,0 +170778588014,213,0 +170778588062,213,0 +170778588110,213,0 +170778588158,213,0 +170778588206,213,0 +170778588253,213,0 +170778588301,214,0 +170778588349,214,0 +170778588397,214,0 +170778588445,214,0 +170778588494,213,0 +170778588544,213,0 +170778588592,213,0 +170778588639,213,0 +170778588689,213,0 +170778588737,213,0 +170778588785,213,0 +170778588834,213,0 +170778588884,213,0 +170778588933,213,0 +170778588981,213,0 +170778589029,214,0 +170778589077,213,0 +170778589125,214,0 +170778589174,214,0 +170778589222,214,0 +170778589270,214,0 +170778589318,214,0 +170778589367,214,0 +170778589417,213,0 +170778589465,213,0 +170778589513,213,0 +170778589562,213,0 +170778589610,213,0 +170778589658,213,0 +170778589706,213,0 +170778589754,213,0 +170778589802,214,0 +170778589852,214,0 +170778589900,214,0 +170778589948,214,0 +170778589996,214,0 +170778590045,214,0 +170778590093,214,0 +170778590141,214,0 +170778590189,214,0 +170778590237,214,0 +170778590285,214,0 +170778590333,213,0 +170778590381,213,0 +170778590430,213,0 +170778590480,213,0 +170778590528,214,0 +170778590577,213,0 +170778590625,213,0 +170778590675,213,0 +170778590722,214,0 +170778590770,214,0 +170778590820,214,0 +170778590868,214,0 +170778590916,214,0 +170778590964,214,0 +170778591011,214,0 +170778591059,215,0 +170778591107,214,0 +170778591155,214,0 +170778591205,214,0 +170778591252,213,0 +170778591300,213,0 +170778591348,213,0 +170778591396,213,0 +170778591444,214,0 +170778591492,214,0 +170778591540,213,0 +170778591587,214,0 +170778591635,214,0 +170778591683,214,0 +170778591731,214,0 +170778591779,214,0 +170778591827,214,0 +170778591875,214,0 +170778591922,214,0 +170778591970,215,0 +170778592018,214,0 +170778592066,214,0 +170778592116,214,0 +170778592165,213,0 +170778592213,213,0 +170778592261,213,0 +170778592309,213,0 +170778592356,213,0 +170778592404,214,0 +170778592454,214,0 +170778592503,214,0 +170778592551,214,0 +170778592599,214,0 +170778592648,214,0 +170778592696,214,0 +170778592744,214,0 +170778592792,214,0 +170778592840,214,0 +170778592888,214,0 +170778592937,214,0 +170778592987,214,0 +170778593035,214,0 +170778593084,214,0 +170778593132,213,0 +170778593182,213,0 +170778593229,213,0 +170778593277,213,0 +170778593327,213,0 +170778593375,213,0 +170778593423,213,0 +170778593471,214,0 +170778593518,214,0 +170778593566,214,0 +170778593614,214,0 +170778593664,214,0 +170778593712,214,0 +170778593760,214,0 +170778593807,214,0 +170778593855,214,0 +170778593903,214,0 +170778593953,214,0 +170778594001,214,0 +170778594049,213,0 +170778594097,213,0 +170778594146,213,0 +170778594196,213,0 +170778594244,213,0 +170778594292,213,0 +170778594340,214,0 +170778594388,214,0 +170778594437,214,0 +170778594486,214,0 +170778594534,214,0 +170778594582,214,0 +170778594632,214,0 +170778594680,214,0 +170778594729,214,0 +170778594779,214,0 +170778594829,214,0 +170778594876,214,0 +170778594924,214,0 +170778594974,213,0 +170778595022,213,0 +170778595070,213,0 +170778595119,213,0 +170778595167,213,0 +170778595217,213,0 +170778595265,213,0 +170778595313,213,0 +170778595360,214,0 +170778595410,214,0 +170778595458,214,0 +170778595506,214,0 +170778595554,214,0 +170778595603,214,0 +170778595651,214,0 +170778595699,214,0 +170778595747,214,0 +170778595795,214,0 +170778595845,214,0 +170778595894,213,0 +170778595942,213,0 +170778595990,213,0 +170778596040,213,0 +170778596089,213,0 +170778596139,213,0 +170778596187,213,0 +170778596235,213,0 +170778596284,213,0 +170778596332,213,0 +170778596380,214,0 +170778596428,214,0 +170778596476,214,0 +170778596524,214,0 +170778596572,214,0 +170778596620,214,0 +170778596669,214,0 +170778596717,214,0 +170778596765,214,0 +170778596813,213,0 +170778596861,213,0 +170778596911,213,0 +170778596958,213,0 +170778597006,213,0 +170778597054,213,0 +170778597102,213,0 +170778597150,213,0 +170778597198,213,0 +170778597246,213,0 +170778597296,213,0 +170778597345,213,0 +170778597393,213,0 +170778597441,214,0 +170778597489,214,0 +170778597537,214,0 +170778597585,214,0 +170778597634,214,0 +170778597682,214,0 +170778597730,213,0 +170778597780,213,0 +170778597828,213,0 +170778597876,213,0 +170778597925,213,0 +170778597973,213,0 +170778598022,213,0 +170778598070,213,0 +170778598120,213,0 +170778598168,213,0 +170778598216,213,0 +170778598265,214,0 +170778598315,214,0 +170778598364,214,0 +170778598412,214,0 +170778598460,214,0 +170778598509,214,0 +170778598557,214,0 +170778598605,214,0 +170778598653,213,0 +170778598701,213,0 +170778598748,213,0 +170778598796,213,0 +170778598844,213,0 +170778598892,213,0 +170778598940,213,0 +170778598989,213,0 +170778599037,213,0 +170778599085,213,0 +170778599133,213,0 +170778599181,213,0 +170778599228,214,0 +170778599276,214,0 +170778599324,214,0 +170778599372,214,0 +170778599420,214,0 +170778599468,214,0 +170778599516,214,0 +170778599563,213,0 +170778599611,213,0 +170778599659,213,0 +170778599707,213,0 +170778599755,213,0 +170778599804,213,0 +170778599852,213,0 +170778599900,213,0 +170778599950,213,0 +170778599998,213,0 diff --git a/laser_value/0213-11.csv b/laser_value/0213-11.csv new file mode 100644 index 0000000..72468b9 --- /dev/null +++ b/laser_value/0213-11.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170778600046,213,0 +170778600094,214,0 +170778600143,214,0 +170778600191,214,0 +170778600239,214,0 +170778600288,214,0 +170778600336,214,0 +170778600384,214,0 +170778600432,214,0 +170778600480,214,0 +170778600528,213,0 +170778600575,213,0 +170778600623,213,0 +170778600671,213,0 +170778600719,213,0 +170778600767,213,0 +170778600815,213,0 +170778600862,213,0 +170778600910,213,0 +170778600960,213,0 +170778601007,214,0 +170778601055,214,0 +170778601103,214,0 +170778601151,214,0 +170778601199,214,0 +170778601247,214,0 +170778601295,214,0 +170778601343,214,0 +170778601392,214,0 +170778601440,213,0 +170778601490,213,0 +170778601538,213,0 +170778601586,213,0 +170778601634,213,0 +170778601681,213,0 +170778601729,213,0 +170778601779,213,0 +170778601828,213,0 +170778601876,213,0 +170778601924,214,0 +170778601974,213,0 +170778602023,214,0 +170778602073,214,0 +170778602121,214,0 +170778602169,214,0 +170778602216,214,0 +170778602264,214,0 +170778602312,214,0 +170778602362,213,0 +170778602410,213,0 +170778602458,213,0 +170778602506,213,0 +170778602554,213,0 +170778602602,213,0 +170778602651,213,0 +170778602699,213,0 +170778602747,214,0 +170778602796,214,0 +170778602844,214,0 +170778602894,214,0 +170778602942,214,0 +170778602990,214,0 +170778603038,214,0 +170778603087,214,0 +170778603136,214,0 +170778603184,214,0 +170778603232,214,0 +170778603280,213,0 +170778603328,213,0 +170778603376,213,0 +170778603424,213,0 +170778603474,213,0 +170778603521,214,0 +170778603569,214,0 +170778603619,214,0 +170778603668,214,0 +170778603716,214,0 +170778603764,214,0 +170778603812,214,0 +170778603860,214,0 +170778603908,214,0 +170778603958,214,0 +170778604007,214,0 +170778604055,215,0 +170778604103,214,0 +170778604153,214,0 +170778604200,214,0 +170778604248,214,0 +170778604296,214,0 +170778604344,214,0 +170778604392,214,0 +170778604442,214,0 +170778604491,214,0 +170778604539,214,0 +170778604587,214,0 +170778604636,214,0 +170778604684,214,0 +170778604732,214,0 +170778604782,214,0 +170778604830,214,0 +170778604879,214,0 +170778604927,215,0 +170778604977,215,0 +170778605026,214,0 +170778605076,214,0 +170778605123,214,0 +170778605171,213,0 +170778605219,214,0 +170778605267,214,0 +170778605315,214,0 +170778605365,214,0 +170778605414,214,0 +170778605464,214,0 +170778605511,214,0 +170778605559,214,0 +170778605607,214,0 +170778605655,214,0 +170778605705,214,0 +170778605753,215,0 +170778605802,214,0 +170778605850,215,0 +170778605898,214,0 +170778605947,214,0 +170778605997,214,0 +170778606046,213,0 +170778606096,213,0 +170778606144,213,0 +170778606192,213,0 +170778606240,214,0 +170778606289,214,0 +170778606339,214,0 +170778606388,214,0 +170778606436,214,0 +170778606486,214,0 +170778606535,214,0 +170778606585,214,0 +170778606633,214,0 +170778606680,214,0 +170778606730,215,0 +170778606778,215,0 +170778606826,215,0 +170778606874,214,0 +170778606923,214,0 +170778606971,213,0 +170778607021,213,0 +170778607070,213,0 +170778607118,213,0 +170778607168,213,0 +170778607215,214,0 +170778607263,214,0 +170778607311,214,0 +170778607359,214,0 +170778607409,214,0 +170778607457,214,0 +170778607505,214,0 +170778607554,214,0 +170778607604,214,0 +170778607652,214,0 +170778607699,214,0 +170778607749,214,0 +170778607798,214,0 +170778607846,215,0 +170778607894,213,0 +170778607942,213,0 +170778607990,213,0 +170778608038,213,0 +170778608086,213,0 +170778608134,213,0 +170778608182,213,0 +170778608230,213,0 +170778608279,214,0 +170778608327,214,0 +170778608375,214,0 +170778608423,214,0 +170778608471,214,0 +170778608519,214,0 +170778608567,214,0 +170778608615,214,0 +170778608663,214,0 +170778608713,214,0 +170778608762,214,0 +170778608812,213,0 +170778608860,213,0 +170778608908,213,0 +170778608955,213,0 +170778609003,213,0 +170778609053,213,0 +170778609101,214,0 +170778609149,214,0 +170778609198,214,0 +170778609246,214,0 +170778609296,214,0 +170778609344,214,0 +170778609392,214,0 +170778609440,214,0 +170778609489,214,0 +170778609539,214,0 +170778609586,215,0 +170778609634,214,0 +170778609684,214,0 +170778609732,214,0 +170778609779,213,0 +170778609827,213,0 +170778609877,213,0 +170778609926,213,0 +170778609974,213,0 +170778610022,213,0 +170778610070,213,0 +170778610118,214,0 +170778610166,214,0 +170778610214,214,0 +170778610262,214,0 +170778610310,214,0 +170778610358,214,0 +170778610406,214,0 +170778610455,214,0 +170778610505,214,0 +170778610553,214,0 +170778610602,214,0 +170778610650,213,0 +170778610698,213,0 +170778610746,213,0 +170778610794,213,0 +170778610842,213,0 +170778610889,213,0 +170778610937,213,0 +170778610987,213,0 +170778611036,213,0 +170778611084,214,0 +170778611132,213,0 +170778611181,214,0 +170778611229,214,0 +170778611278,214,0 +170778611326,214,0 +170778611374,214,0 +170778611422,214,0 +170778611470,214,0 +170778611520,214,0 +170778611569,213,0 +170778611617,213,0 +170778611665,213,0 +170778611713,213,0 +170778611762,213,0 +170778611810,213,0 +170778611858,213,0 +170778611906,213,0 +170778611954,213,0 +170778612002,213,0 +170778612050,213,0 +170778612099,213,0 +170778612147,213,0 +170778612197,213,0 +170778612245,214,0 +170778612294,214,0 +170778612344,214,0 +170778612392,214,0 +170778612440,214,0 +170778612488,213,0 +170778612536,213,0 +170778612583,213,0 +170778612631,213,0 +170778612679,213,0 +170778612727,213,0 +170778612775,213,0 +170778612823,213,0 +170778612872,213,0 +170778612920,213,0 +170778612970,213,0 +170778613018,214,0 +170778613065,214,0 +170778613113,214,0 +170778613161,214,0 +170778613209,214,0 +170778613257,214,0 +170778613305,214,0 +170778613354,214,0 +170778613404,214,0 +170778613452,213,0 +170778613501,213,0 +170778613549,213,0 +170778613597,213,0 +170778613645,213,0 +170778613693,213,0 +170778613741,213,0 +170778613788,213,0 +170778613836,213,0 +170778613884,214,0 +170778613932,213,0 +170778613980,213,0 +170778614028,214,0 +170778614075,214,0 +170778614123,214,0 +170778614171,214,0 +170778614219,214,0 +170778614267,214,0 +170778614315,214,0 +170778614363,213,0 +170778614410,213,0 +170778614460,213,0 +170778614508,213,0 +170778614556,213,0 +170778614603,213,0 +170778614651,213,0 +170778614699,213,0 +170778614749,213,0 +170778614796,213,0 +170778614844,214,0 +170778614892,214,0 +170778614940,214,0 +170778614989,214,0 +170778615037,214,0 +170778615085,214,0 +170778615133,214,0 +170778615181,214,0 +170778615229,214,0 +170778615277,213,0 +170778615324,213,0 +170778615374,213,0 +170778615422,213,0 +170778615470,213,0 +170778615518,213,0 +170778615567,213,0 +170778615615,213,0 +170778615663,213,0 +170778615711,214,0 +170778615759,214,0 +170778615807,214,0 +170778615855,214,0 +170778615903,215,0 +170778615950,214,0 +170778616000,214,0 +170778616049,214,0 +170778616098,214,0 +170778616146,214,0 +170778616194,213,0 +170778616242,213,0 +170778616290,213,0 +170778616338,213,0 +170778616386,213,0 +170778616435,213,0 +170778616483,213,0 +170778616532,213,0 +170778616580,214,0 +170778616628,214,0 +170778616676,214,0 +170778616724,214,0 +170778616771,214,0 +170778616819,214,0 +170778616867,214,0 +170778616915,214,0 +170778616963,214,0 +170778617011,214,0 +170778617059,214,0 +170778617108,213,0 +170778617156,213,0 +170778617204,213,0 +170778617252,213,0 +170778617300,213,0 +170778617347,213,0 +170778617395,213,0 +170778617443,213,0 +170778617491,214,0 +170778617541,214,0 +170778617589,214,0 +170778617638,214,0 +170778617686,214,0 +170778617734,214,0 +170778617781,214,0 +170778617829,214,0 +170778617877,214,0 +170778617925,214,0 +170778617973,214,0 +170778618020,213,0 +170778618068,213,0 +170778618118,213,0 +170778618165,213,0 +170778618213,213,0 +170778618261,214,0 +170778618309,214,0 +170778618357,214,0 +170778618405,214,0 +170778618452,214,0 +170778618500,214,0 +170778618548,214,0 +170778618598,214,0 +170778618645,214,0 +170778618693,214,0 +170778618741,214,0 +170778618789,214,0 +170778618837,214,0 +170778618885,214,0 +170778618932,214,0 +170778618980,213,0 +170778619028,213,0 +170778619076,213,0 +170778619124,214,0 +170778619172,213,0 +170778619220,214,0 +170778619268,213,0 +170778619316,214,0 +170778619363,214,0 +170778619413,214,0 +170778619463,214,0 +170778619511,214,0 +170778619560,214,0 +170778619610,214,0 +170778619659,214,0 +170778619707,214,0 +170778619756,214,0 +170778619804,214,0 +170778619854,214,0 +170778619902,213,0 +170778619949,213,0 +170778619997,213,0 +170778620047,213,0 +170778620095,213,0 +170778620143,214,0 +170778620192,213,0 +170778620242,214,0 +170778620290,214,0 +170778620339,214,0 +170778620387,214,0 +170778620435,214,0 +170778620483,214,0 +170778620531,215,0 +170778620579,214,0 +170778620626,214,0 +170778620674,214,0 +170778620724,214,0 +170778620771,214,0 +170778620819,213,0 +170778620869,213,0 +170778620918,213,0 +170778620966,214,0 +170778621014,214,0 +170778621064,214,0 +170778621111,214,0 +170778621159,214,0 +170778621209,214,0 +170778621257,214,0 +170778621306,214,0 +170778621356,214,0 +170778621404,214,0 +170778621452,214,0 +170778621501,214,0 +170778621551,215,0 +170778621599,215,0 +170778621648,214,0 +170778621696,214,0 +170778621744,213,0 +170778621792,213,0 +170778621840,214,0 +170778621890,214,0 +170778621938,214,0 +170778621987,214,0 +170778622036,214,0 +170778622084,214,0 +170778622134,214,0 +170778622184,214,0 +170778622231,214,0 +170778622279,214,0 +170778622327,214,0 +170778622377,215,0 +170778622426,214,0 +170778622476,215,0 +170778622525,214,0 +170778622573,214,0 +170778622621,214,0 +170778622669,213,0 +170778622717,213,0 +170778622765,213,0 +170778622813,213,0 +170778622863,213,0 +170778622912,213,0 +170778622960,213,0 +170778623008,213,0 +170778623056,214,0 +170778623106,214,0 +170778623155,214,0 +170778623203,214,0 +170778623251,214,0 +170778623300,214,0 +170778623348,214,0 +170778623396,214,0 +170778623444,214,0 +170778623492,214,0 +170778623540,214,0 +170778623588,213,0 +170778623637,213,0 +170778623685,213,0 +170778623733,213,0 +170778623780,213,0 +170778623830,213,0 +170778623878,213,0 +170778623926,213,0 +170778623975,214,0 +170778624023,214,0 +170778624071,214,0 +170778624119,214,0 +170778624166,214,0 +170778624216,214,0 +170778624263,214,0 +170778624311,214,0 +170778624361,214,0 +170778624410,214,0 +170778624458,214,0 +170778624507,213,0 +170778624556,213,0 +170778624606,213,0 +170778624654,213,0 +170778624703,213,0 +170778624751,214,0 +170778624801,214,0 +170778624850,213,0 +170778624898,214,0 +170778624946,214,0 +170778624994,214,0 +170778625042,214,0 +170778625091,214,0 +170778625139,214,0 +170778625187,214,0 +170778625235,215,0 +170778625282,214,0 +170778625330,215,0 +170778625380,215,0 +170778625428,215,0 +170778625475,215,0 +170778625523,215,0 +170778625571,214,0 +170778625619,214,0 +170778625667,215,0 +170778625715,215,0 +170778625762,214,0 +170778625810,214,0 +170778625858,214,0 +170778625906,214,0 +170778625954,214,0 +170778626002,214,0 +170778626050,214,0 +170778626097,214,0 +170778626145,214,0 +170778626195,214,0 +170778626243,214,0 +170778626291,214,0 +170778626339,214,0 +170778626386,214,0 +170778626434,214,0 +170778626484,214,0 +170778626532,214,0 +170778626580,214,0 +170778626628,215,0 +170778626677,214,0 +170778626725,214,0 +170778626773,214,0 +170778626821,213,0 +170778626869,214,0 +170778626917,214,0 +170778626966,214,0 +170778627014,214,0 +170778627062,214,0 +170778627110,214,0 +170778627160,214,0 +170778627208,214,0 +170778627256,214,0 +170778627305,214,0 +170778627355,214,0 +170778627403,214,0 +170778627452,215,0 +170778627500,215,0 +170778627549,215,0 +170778627597,214,0 +170778627645,215,0 +170778627693,213,0 +170778627741,213,0 +170778627790,213,0 +170778627838,213,0 +170778627886,213,0 +170778627934,214,0 +170778627983,214,0 +170778628031,214,0 +170778628081,214,0 +170778628130,214,0 +170778628178,214,0 +170778628226,214,0 +170778628274,214,0 +170778628321,214,0 +170778628371,214,0 +170778628419,215,0 +170778628468,215,0 +170778628516,215,0 +170778628566,214,0 +170778628615,213,0 +170778628663,213,0 +170778628711,213,0 +170778628760,213,0 +170778628808,213,0 +170778628856,213,0 +170778628906,213,0 +170778628955,213,0 +170778629003,213,0 +170778629051,214,0 +170778629099,213,0 +170778629147,214,0 +170778629195,214,0 +170778629243,214,0 +170778629292,214,0 +170778629342,214,0 +170778629390,214,0 +170778629437,214,0 +170778629485,214,0 +170778629535,214,0 +170778629583,213,0 +170778629632,213,0 +170778629680,213,0 +170778629728,213,0 +170778629776,214,0 +170778629823,214,0 +170778629871,214,0 +170778629919,214,0 +170778629968,214,0 +170778630016,214,0 +170778630064,214,0 +170778630114,214,0 +170778630163,214,0 +170778630213,214,0 +170778630261,214,0 +170778630309,214,0 +170778630357,215,0 +170778630404,214,0 +170778630454,214,0 +170778630502,213,0 +170778630551,213,0 +170778630599,213,0 +170778630649,213,0 +170778630697,214,0 +170778630746,214,0 +170778630796,214,0 +170778630844,214,0 +170778630891,214,0 +170778630939,214,0 +170778630987,214,0 +170778631037,214,0 +170778631085,214,0 +170778631134,214,0 +170778631182,214,0 +170778631232,214,0 +170778631281,214,0 +170778631329,214,0 +170778631379,213,0 +170778631428,213,0 +170778631476,213,0 +170778631524,213,0 +170778631572,213,0 +170778631620,213,0 +170778631668,213,0 +170778631717,214,0 +170778631767,213,0 +170778631815,214,0 +170778631863,214,0 +170778631912,214,0 +170778631962,214,0 +170778632010,214,0 +170778632059,214,0 +170778632107,214,0 +170778632155,214,0 +170778632203,214,0 +170778632251,214,0 +170778632300,213,0 +170778632348,213,0 +170778632396,213,0 +170778632444,213,0 +170778632492,213,0 +170778632540,213,0 +170778632588,214,0 +170778632635,214,0 +170778632685,214,0 +170778632733,214,0 +170778632781,214,0 +170778632828,214,0 +170778632876,214,0 +170778632924,214,0 +170778632972,214,0 +170778633020,214,0 +170778633068,214,0 +170778633117,214,0 +170778633165,215,0 +170778633215,213,0 +170778633263,213,0 +170778633311,213,0 +170778633360,213,0 +170778633408,213,0 +170778633456,213,0 +170778633504,214,0 +170778633552,213,0 +170778633602,214,0 +170778633649,214,0 +170778633697,214,0 +170778633745,214,0 +170778633795,214,0 +170778633844,214,0 +170778633892,214,0 +170778633940,214,0 +170778633990,214,0 +170778634037,214,0 +170778634087,214,0 +170778634135,213,0 +170778634184,213,0 +170778634232,213,0 +170778634282,213,0 +170778634330,213,0 +170778634379,213,0 +170778634429,214,0 +170778634477,214,0 +170778634525,214,0 +170778634573,214,0 +170778634621,214,0 +170778634670,214,0 +170778634718,214,0 +170778634766,214,0 +170778634816,214,0 +170778634865,214,0 +170778634915,215,0 +170778634964,214,0 +170778635012,214,0 +170778635060,213,0 +170778635110,213,0 +170778635157,213,0 +170778635207,214,0 +170778635255,214,0 +170778635303,214,0 +170778635352,214,0 +170778635402,214,0 +170778635450,214,0 +170778635498,214,0 +170778635546,214,0 +170778635594,214,0 +170778635643,215,0 +170778635691,215,0 +170778635739,215,0 +170778635787,215,0 +170778635835,214,0 +170778635883,215,0 +170778635931,214,0 +170778635980,213,0 +170778636028,213,0 +170778636077,213,0 +170778636125,213,0 +170778636173,213,0 +170778636221,213,0 +170778636269,213,0 +170778636317,214,0 +170778636365,214,0 +170778636413,214,0 +170778636463,214,0 +170778636511,214,0 +170778636558,214,0 +170778636606,214,0 +170778636654,214,0 +170778636704,214,0 +170778636752,214,0 +170778636801,215,0 +170778636851,214,0 +170778636899,213,0 +170778636947,213,0 +170778636995,213,0 +170778637043,213,0 +170778637090,213,0 +170778637140,213,0 +170778637189,214,0 +170778637239,214,0 +170778637287,214,0 +170778637336,214,0 +170778637384,214,0 +170778637432,214,0 +170778637482,214,0 +170778637530,214,0 +170778637577,214,0 +170778637625,214,0 +170778637675,214,0 +170778637723,214,0 +170778637771,214,0 +170778637820,213,0 +170778637868,213,0 +170778637918,213,0 +170778637966,213,0 +170778638014,213,0 +170778638061,214,0 +170778638109,214,0 +170778638157,214,0 +170778638207,214,0 +170778638254,214,0 +170778638302,214,0 +170778638352,214,0 +170778638401,214,0 +170778638449,214,0 +170778638497,214,0 +170778638545,214,0 +170778638593,215,0 +170778638643,214,0 +170778638691,213,0 +170778638738,213,0 +170778638786,213,0 +170778638836,213,0 +170778638884,214,0 +170778638932,213,0 +170778638980,214,0 +170778639027,213,0 +170778639077,214,0 +170778639125,214,0 +170778639173,214,0 +170778639221,214,0 +170778639270,214,0 +170778639320,214,0 +170778639369,214,0 +170778639419,214,0 +170778639467,214,0 +170778639515,214,0 +170778639563,214,0 +170778639610,213,0 +170778639660,213,0 +170778639708,213,0 +170778639756,213,0 +170778639804,213,0 +170778639852,213,0 +170778639900,213,0 +170778639949,213,0 +170778639997,213,0 +170778640046,213,0 +170778640096,213,0 +170778640144,214,0 +170778640192,214,0 +170778640240,214,0 +170778640288,214,0 +170778640336,214,0 +170778640384,214,0 +170778640432,214,0 +170778640479,214,0 +170778640527,213,0 +170778640575,213,0 +170778640625,213,0 +170778640673,213,0 +170778640720,213,0 +170778640768,213,0 +170778640816,213,0 +170778640864,213,0 +170778640913,213,0 +170778640963,214,0 +170778641011,213,0 +170778641059,214,0 +170778641108,214,0 +170778641156,214,0 +170778641206,214,0 +170778641255,214,0 +170778641303,214,0 +170778641353,214,0 +170778641401,214,0 +170778641450,213,0 +170778641500,213,0 +170778641549,213,0 +170778641597,213,0 +170778641645,213,0 +170778641693,213,0 +170778641741,213,0 +170778641789,213,0 +170778641837,214,0 +170778641884,214,0 +170778641932,214,0 +170778641982,214,0 +170778642030,214,0 +170778642079,214,0 +170778642129,214,0 +170778642177,214,0 +170778642225,214,0 +170778642272,214,0 +170778642322,214,0 +170778642370,213,0 +170778642418,213,0 +170778642466,213,0 +170778642515,213,0 +170778642563,213,0 +170778642611,213,0 +170778642659,213,0 +170778642707,213,0 +170778642755,213,0 +170778642803,213,0 +170778642851,214,0 +170778642898,214,0 +170778642946,214,0 +170778642996,214,0 +170778643044,214,0 +170778643092,214,0 +170778643141,214,0 +170778643191,214,0 +170778643239,213,0 +170778643287,213,0 +170778643335,213,0 +170778643383,213,0 +170778643432,213,0 +170778643480,213,0 +170778643530,213,0 +170778643578,213,0 +170778643626,213,0 +170778643673,214,0 +170778643721,214,0 +170778643769,214,0 +170778643817,214,0 +170778643867,214,0 +170778643915,214,0 +170778643962,214,0 +170778644010,214,0 +170778644058,214,0 +170778644108,214,0 +170778644156,214,0 +170778644204,213,0 +170778644252,213,0 +170778644299,213,0 +170778644347,213,0 +170778644395,213,0 +170778644443,213,0 +170778644493,214,0 +170778644541,214,0 +170778644589,214,0 +170778644636,214,0 +170778644684,214,0 +170778644734,214,0 +170778644782,214,0 +170778644830,214,0 +170778644879,214,0 +170778644929,214,0 +170778644977,214,0 +170778645026,214,0 +170778645074,213,0 +170778645124,214,0 +170778645173,214,0 +170778645223,214,0 +170778645272,214,0 +170778645322,214,0 +170778645370,214,0 +170778645418,214,0 +170778645467,214,0 +170778645515,214,0 +170778645563,214,0 +170778645611,215,0 +170778645659,215,0 +170778645709,214,0 +170778645757,214,0 +170778645806,214,0 +170778645856,214,0 +170778645904,214,0 +170778645952,214,0 +170778645999,214,0 +170778646049,214,0 +170778646097,214,0 +170778646146,214,0 +170778646194,214,0 +170778646242,214,0 +170778646290,214,0 +170778646338,214,0 +170778646388,214,0 +170778646436,214,0 +170778646485,214,0 +170778646535,214,0 +170778646583,215,0 +170778646632,214,0 +170778646682,214,0 +170778646729,215,0 +170778646779,214,0 +170778646828,214,0 +170778646876,214,0 +170778646924,213,0 +170778646972,213,0 +170778647022,214,0 +170778647070,214,0 +170778647118,214,0 +170778647166,214,0 +170778647214,214,0 +170778647262,214,0 +170778647310,214,0 +170778647359,214,0 +170778647407,214,0 +170778647455,214,0 +170778647503,214,0 +170778647551,214,0 +170778647599,214,0 +170778647648,214,0 +170778647696,214,0 +170778647746,214,0 +170778647794,214,0 +170778647842,213,0 +170778647890,214,0 +170778647939,214,0 +170778647989,214,0 +170778648039,214,0 +170778648086,214,0 +170778648136,214,0 +170778648184,214,0 +170778648233,214,0 +170778648283,214,0 +170778648331,214,0 +170778648379,215,0 +170778648428,214,0 +170778648478,215,0 +170778648526,215,0 +170778648574,215,0 +170778648622,214,0 +170778648670,214,0 +170778648718,213,0 +170778648767,213,0 +170778648815,214,0 +170778648863,214,0 +170778648912,214,0 +170778648962,214,0 +170778649010,214,0 +170778649058,214,0 +170778649106,214,0 +170778649154,214,0 +170778649201,214,0 +170778649251,215,0 +170778649301,215,0 +170778649348,215,0 +170778649396,215,0 +170778649444,215,0 +170778649492,214,0 +170778649540,214,0 +170778649588,214,0 +170778649636,213,0 +170778649686,213,0 +170778649735,213,0 +170778649783,214,0 +170778649831,214,0 +170778649879,214,0 +170778649927,214,0 +170778649975,214,0 +170778650024,214,0 +170778650074,214,0 +170778650122,214,0 +170778650169,214,0 +170778650217,215,0 +170778650267,215,0 +170778650315,215,0 +170778650363,214,0 +170778650412,214,0 +170778650462,214,0 +170778650511,213,0 +170778650561,213,0 +170778650609,213,0 +170778650658,214,0 +170778650706,214,0 +170778650756,214,0 +170778650805,214,0 +170778650855,214,0 +170778650903,214,0 +170778650951,214,0 +170778650999,214,0 +170778651047,214,0 +170778651096,214,0 +170778651144,214,0 +170778651192,214,0 +170778651240,215,0 +170778651288,214,0 +170778651336,214,0 +170778651384,213,0 +170778651432,213,0 +170778651481,213,0 +170778651531,213,0 +170778651580,213,0 +170778651628,214,0 +170778651676,214,0 +170778651724,214,0 +170778651773,214,0 +170778651821,214,0 +170778651869,214,0 +170778651917,214,0 +170778651965,214,0 +170778652015,214,0 +170778652064,214,0 +170778652112,214,0 +170778652160,214,0 +170778652208,214,0 +170778652256,214,0 +170778652304,213,0 +170778652352,213,0 +170778652401,213,0 +170778652449,213,0 +170778652497,214,0 +170778652545,214,0 +170778652595,213,0 +170778652642,213,0 +170778652690,214,0 +170778652738,213,0 +170778652786,214,0 +170778652834,214,0 +170778652882,214,0 +170778652929,214,0 +170778652977,214,0 +170778653025,214,0 +170778653073,214,0 +170778653123,214,0 +170778653171,214,0 +170778653220,213,0 +170778653270,213,0 +170778653319,213,0 +170778653367,213,0 +170778653416,214,0 +170778653466,214,0 +170778653514,213,0 +170778653563,214,0 +170778653613,214,0 +170778653661,214,0 +170778653709,214,0 +170778653757,214,0 +170778653805,214,0 +170778653852,214,0 +170778653900,215,0 +170778653950,214,0 +170778653998,214,0 +170778654045,214,0 +170778654095,214,0 +170778654144,213,0 +170778654194,213,0 +170778654242,213,0 +170778654291,214,0 +170778654339,213,0 +170778654387,214,0 +170778654435,214,0 +170778654483,213,0 +170778654532,214,0 +170778654582,214,0 +170778654631,214,0 +170778654679,214,0 +170778654727,214,0 +170778654775,214,0 +170778654823,214,0 +170778654871,214,0 +170778654919,214,0 +170778654967,214,0 +170778655015,213,0 +170778655063,213,0 +170778655112,213,0 +170778655160,213,0 +170778655209,213,0 +170778655257,214,0 +170778655307,214,0 +170778655354,214,0 +170778655404,214,0 +170778655452,214,0 +170778655501,214,0 +170778655549,214,0 +170778655597,214,0 +170778655644,214,0 +170778655694,214,0 +170778655742,214,0 +170778655790,214,0 +170778655838,215,0 +170778655886,214,0 +170778655933,213,0 +170778655981,213,0 +170778656029,213,0 +170778656077,213,0 +170778656127,213,0 +170778656175,214,0 +170778656222,214,0 +170778656272,214,0 +170778656320,214,0 +170778656369,214,0 +170778656419,214,0 +170778656467,214,0 +170778656515,214,0 +170778656563,214,0 +170778656612,214,0 +170778656662,214,0 +170778656710,215,0 +170778656757,214,0 +170778656807,214,0 +170778656856,213,0 +170778656904,213,0 +170778656952,213,0 +170778657000,213,0 +170778657048,213,0 +170778657096,214,0 +170778657144,214,0 +170778657192,214,0 +170778657241,213,0 +170778657290,214,0 +170778657339,214,0 +170778657389,214,0 +170778657436,214,0 +170778657484,214,0 +170778657532,214,0 +170778657580,214,0 +170778657628,214,0 +170778657676,214,0 +170778657724,214,0 +170778657774,213,0 +170778657823,213,0 +170778657871,213,0 +170778657919,213,0 +170778657967,213,0 +170778658015,214,0 +170778658065,214,0 +170778658112,214,0 +170778658162,214,0 +170778658210,214,0 +170778658258,214,0 +170778658306,214,0 +170778658355,214,0 +170778658405,214,0 +170778658452,214,0 +170778658500,215,0 +170778658550,215,0 +170778658599,214,0 +170778658647,213,0 +170778658697,213,0 +170778658745,213,0 +170778658793,213,0 +170778658842,213,0 +170778658890,214,0 +170778658938,213,0 +170778658986,214,0 +170778659035,214,0 +170778659083,214,0 +170778659131,214,0 +170778659179,214,0 +170778659227,215,0 +170778659277,214,0 +170778659325,214,0 +170778659374,214,0 +170778659422,215,0 +170778659470,214,0 +170778659518,214,0 +170778659566,213,0 +170778659614,213,0 +170778659661,213,0 +170778659709,213,0 +170778659757,214,0 +170778659805,213,0 +170778659854,214,0 +170778659902,214,0 +170778659950,213,0 +170778659998,214,0 +170778660046,214,0 +170778660095,214,0 +170778660145,214,0 +170778660192,214,0 +170778660240,214,0 +170778660290,214,0 +170778660338,214,0 +170778660386,214,0 +170778660435,214,0 +170778660483,213,0 +170778660531,213,0 +170778660579,213,0 +170778660627,213,0 +170778660674,213,0 +170778660724,213,0 +170778660772,213,0 +170778660819,213,0 +170778660869,214,0 +170778660917,214,0 +170778660966,214,0 +170778661016,214,0 +170778661064,214,0 +170778661112,214,0 +170778661160,214,0 +170778661208,214,0 +170778661256,214,0 +170778661304,214,0 +170778661352,214,0 +170778661401,213,0 +170778661449,213,0 +170778661497,213,0 +170778661545,214,0 +170778661593,214,0 +170778661641,214,0 +170778661689,214,0 +170778661738,214,0 +170778661786,214,0 +170778661834,214,0 +170778661884,214,0 +170778661932,214,0 +170778661980,214,0 +170778662028,215,0 +170778662076,214,0 +170778662124,215,0 +170778662171,214,0 +170778662221,214,0 +170778662270,213,0 +170778662318,213,0 +170778662366,213,0 +170778662416,214,0 +170778662464,214,0 +170778662512,214,0 +170778662560,214,0 +170778662609,214,0 +170778662657,214,0 +170778662705,214,0 +170778662753,214,0 +170778662800,214,0 +170778662850,214,0 +170778662898,214,0 +170778662945,215,0 +170778662995,214,0 +170778663043,215,0 +170778663091,214,0 +170778663140,214,0 +170778663188,214,0 +170778663237,214,0 +170778663285,214,0 +170778663333,214,0 +170778663380,214,0 +170778663428,214,0 +170778663476,214,0 +170778663524,214,0 +170778663572,214,0 +170778663619,214,0 +170778663667,214,0 +170778663715,214,0 +170778663763,214,0 +170778663811,214,0 +170778663860,215,0 +170778663908,214,0 +170778663956,214,0 +170778664004,215,0 +170778664052,214,0 +170778664100,213,0 +170778664147,214,0 +170778664195,214,0 +170778664243,214,0 +170778664291,214,0 +170778664341,214,0 +170778664388,214,0 +170778664436,214,0 +170778664484,214,0 +170778664532,214,0 +170778664580,214,0 +170778664628,214,0 +170778664676,215,0 +170778664724,215,0 +170778664772,215,0 +170778664820,214,0 +170778664868,215,0 +170778664916,214,0 +170778664965,214,0 +170778665015,213,0 +170778665064,213,0 +170778665114,213,0 +170778665163,214,0 +170778665211,214,0 +170778665259,214,0 +170778665307,214,0 +170778665355,214,0 +170778665403,214,0 +170778665451,214,0 +170778665498,214,0 +170778665546,214,0 +170778665594,214,0 +170778665642,215,0 +170778665690,215,0 +170778665739,214,0 +170778665787,214,0 +170778665835,214,0 +170778665884,214,0 +170778665932,213,0 +170778665980,214,0 +170778666028,214,0 +170778666076,214,0 +170778666126,214,0 +170778666173,214,0 +170778666221,214,0 +170778666269,214,0 +170778666318,214,0 +170778666366,214,0 +170778666414,214,0 +170778666462,214,0 +170778666510,214,0 +170778666558,215,0 +170778666606,215,0 +170778666653,214,0 +170778666701,214,0 +170778666749,214,0 +170778666799,213,0 +170778666847,213,0 +170778666895,214,0 +170778666943,214,0 +170778666990,214,0 +170778667038,214,0 +170778667086,214,0 +170778667134,214,0 +170778667184,214,0 +170778667233,214,0 +170778667281,214,0 +170778667331,214,0 +170778667380,214,0 +170778667430,214,0 +170778667479,214,0 +170778667529,214,0 +170778667578,214,0 +170778667628,215,0 +170778667677,214,0 +170778667725,213,0 +170778667775,213,0 +170778667823,213,0 +170778667871,214,0 +170778667919,214,0 +170778667967,214,0 +170778668014,214,0 +170778668062,214,0 +170778668110,214,0 +170778668158,214,0 +170778668206,214,0 +170778668256,214,0 +170778668304,214,0 +170778668352,215,0 +170778668401,215,0 +170778668450,215,0 +170778668498,215,0 +170778668548,214,0 +170778668596,214,0 +170778668644,213,0 +170778668692,213,0 +170778668741,213,0 +170778668790,213,0 +170778668838,213,0 +170778668886,214,0 +170778668934,214,0 +170778668982,214,0 +170778669030,214,0 +170778669080,214,0 +170778669128,214,0 +170778669175,214,0 +170778669223,214,0 +170778669273,214,0 +170778669322,214,0 +170778669370,215,0 +170778669418,214,0 +170778669466,214,0 +170778669516,213,0 +170778669564,213,0 +170778669612,213,0 +170778669661,213,0 +170778669709,214,0 +170778669758,214,0 +170778669806,214,0 +170778669854,214,0 +170778669902,214,0 +170778669952,214,0 +170778670001,214,0 +170778670049,214,0 +170778670099,214,0 +170778670148,214,0 +170778670196,214,0 +170778670244,214,0 +170778670292,214,0 +170778670339,214,0 +170778670387,214,0 +170778670435,213,0 +170778670483,213,0 +170778670531,213,0 +170778670578,213,0 +170778670626,213,0 +170778670676,213,0 +170778670724,214,0 +170778670773,214,0 +170778670821,214,0 +170778670869,214,0 +170778670919,214,0 +170778670968,214,0 +170778671018,214,0 +170778671066,214,0 +170778671115,214,0 +170778671163,214,0 +170778671211,215,0 +170778671261,214,0 +170778671309,214,0 +170778671357,213,0 +170778671405,213,0 +170778671454,214,0 +170778671502,214,0 +170778671550,214,0 +170778671597,214,0 +170778671647,214,0 +170778671695,214,0 +170778671744,214,0 +170778671792,214,0 +170778671842,214,0 +170778671890,214,0 +170778671939,214,0 +170778671989,214,0 +170778672038,215,0 +170778672086,215,0 +170778672134,215,0 +170778672182,214,0 +170778672230,213,0 +170778672278,213,0 +170778672326,213,0 +170778672375,213,0 +170778672425,214,0 +170778672474,214,0 +170778672522,214,0 +170778672572,214,0 +170778672620,214,0 +170778672668,214,0 +170778672717,214,0 +170778672765,214,0 +170778672813,214,0 +170778672861,215,0 +170778672909,214,0 +170778672957,214,0 +170778673005,214,0 +170778673052,215,0 +170778673102,214,0 +170778673150,213,0 +170778673198,213,0 +170778673246,214,0 +170778673294,214,0 +170778673342,214,0 +170778673391,214,0 +170778673439,214,0 +170778673489,214,0 +170778673538,214,0 +170778673586,214,0 +170778673634,214,0 +170778673682,214,0 +170778673730,214,0 +170778673778,214,0 +170778673826,214,0 +170778673874,215,0 +170778673923,215,0 +170778673971,214,0 +170778674021,213,0 +170778674069,213,0 +170778674117,214,0 +170778674166,213,0 +170778674215,213,0 +170778674265,214,0 +170778674314,214,0 +170778674364,214,0 +170778674413,214,0 +170778674463,214,0 +170778674511,214,0 +170778674559,214,0 +170778674607,214,0 +170778674655,214,0 +170778674704,215,0 +170778674754,215,0 +170778674803,215,0 +170778674851,215,0 +170778674899,214,0 +170778674946,213,0 +170778674994,213,0 +170778675042,213,0 +170778675090,213,0 +170778675138,214,0 +170778675187,214,0 +170778675235,214,0 +170778675285,214,0 +170778675333,214,0 +170778675382,214,0 +170778675430,214,0 +170778675478,214,0 +170778675527,214,0 +170778675575,214,0 +170778675625,214,0 +170778675674,215,0 +170778675724,215,0 +170778675772,214,0 +170778675821,214,0 +170778675871,213,0 +170778675920,213,0 +170778675968,214,0 +170778676018,214,0 +170778676066,214,0 +170778676115,214,0 +170778676163,214,0 +170778676213,214,0 +170778676260,214,0 +170778676308,214,0 +170778676356,214,0 +170778676404,214,0 +170778676452,214,0 +170778676499,214,0 +170778676547,214,0 +170778676595,214,0 +170778676643,214,0 +170778676691,214,0 +170778676739,213,0 +170778676787,213,0 +170778676835,214,0 +170778676882,214,0 +170778676932,214,0 +170778676981,213,0 +170778677031,214,0 +170778677080,214,0 +170778677128,214,0 +170778677176,214,0 +170778677224,214,0 +170778677273,214,0 +170778677323,214,0 +170778677371,214,0 +170778677419,215,0 +170778677467,215,0 +170778677515,215,0 +170778677562,214,0 +170778677610,214,0 +170778677660,213,0 +170778677708,213,0 +170778677755,213,0 +170778677803,213,0 +170778677851,213,0 +170778677899,213,0 +170778677947,214,0 +170778677996,214,0 +170778678044,214,0 +170778678094,214,0 +170778678142,214,0 +170778678190,214,0 +170778678238,214,0 +170778678286,214,0 +170778678333,214,0 +170778678383,214,0 +170778678432,214,0 +170778678482,214,0 +170778678530,214,0 +170778678578,213,0 +170778678627,213,0 +170778678677,213,0 +170778678725,214,0 +170778678773,214,0 +170778678821,214,0 +170778678869,214,0 +170778678916,214,0 +170778678964,214,0 +170778679012,214,0 +170778679060,214,0 +170778679110,214,0 +170778679159,214,0 +170778679207,214,0 +170778679255,214,0 +170778679303,215,0 +170778679352,214,0 +170778679402,214,0 +170778679450,213,0 +170778679498,213,0 +170778679546,213,0 +170778679593,213,0 +170778679643,214,0 +170778679691,214,0 +170778679740,214,0 +170778679790,214,0 +170778679838,214,0 +170778679887,214,0 +170778679937,214,0 +170778679985,214,0 +170778680033,214,0 +170778680082,214,0 +170778680130,214,0 +170778680178,214,0 +170778680226,214,0 +170778680276,214,0 +170778680325,214,0 +170778680373,213,0 +170778680423,214,0 +170778680472,213,0 +170778680522,214,0 +170778680570,214,0 +170778680617,214,0 +170778680665,214,0 +170778680713,214,0 +170778680761,214,0 +170778680811,214,0 +170778680860,214,0 +170778680908,214,0 +170778680958,215,0 +170778681007,215,0 +170778681057,215,0 +170778681105,215,0 +170778681154,215,0 +170778681204,214,0 +170778681252,214,0 +170778681302,214,0 +170778681351,214,0 +170778681399,214,0 +170778681447,214,0 +170778681495,214,0 +170778681543,214,0 +170778681592,214,0 +170778681640,214,0 +170778681690,214,0 +170778681738,214,0 +170778681787,214,0 +170778681835,214,0 +170778681883,214,0 +170778681931,215,0 +170778681981,214,0 +170778682030,214,0 +170778682080,215,0 +170778682129,214,0 +170778682177,214,0 +170778682225,214,0 +170778682273,214,0 +170778682321,214,0 +170778682369,214,0 +170778682417,214,0 +170778682465,214,0 +170778682514,214,0 +170778682562,214,0 +170778682610,214,0 +170778682658,214,0 +170778682706,214,0 +170778682754,215,0 +170778682801,215,0 +170778682851,215,0 +170778682899,215,0 +170778682946,215,0 +170778682996,214,0 +170778683044,214,0 +170778683091,214,0 +170778683139,214,0 +170778683187,214,0 +170778683237,214,0 +170778683284,214,0 +170778683332,214,0 +170778683380,214,0 +170778683428,214,0 +170778683478,214,0 +170778683526,215,0 +170778683575,215,0 +170778683623,215,0 +170778683671,215,0 +170778683719,215,0 +170778683767,215,0 +170778683815,215,0 +170778683863,215,0 +170778683911,214,0 +170778683959,214,0 +170778684007,214,0 +170778684055,214,0 +170778684104,214,0 +170778684152,214,0 +170778684200,214,0 +170778684249,214,0 +170778684297,214,0 +170778684345,214,0 +170778684395,214,0 +170778684444,214,0 +170778684494,214,0 +170778684542,214,0 +170778684590,215,0 +170778684639,214,0 +170778684687,215,0 +170778684736,215,0 +170778684784,214,0 +170778684834,214,0 +170778684883,213,0 +170778684931,213,0 +170778684979,213,0 +170778685027,214,0 +170778685075,213,0 +170778685125,213,0 +170778685172,214,0 +170778685220,214,0 +170778685270,214,0 +170778685318,214,0 +170778685367,214,0 +170778685415,214,0 +170778685463,214,0 +170778685513,214,0 +170778685561,214,0 +170778685610,214,0 +170778685660,214,0 +170778685709,214,0 +170778685757,214,0 +170778685805,213,0 +170778685853,213,0 +170778685901,213,0 +170778685951,213,0 +170778685999,213,0 +170778686048,214,0 +170778686096,214,0 +170778686144,214,0 +170778686194,214,0 +170778686241,214,0 +170778686291,214,0 +170778686340,214,0 +170778686390,215,0 +170778686438,214,0 +170778686487,215,0 +170778686535,214,0 +170778686585,214,0 +170778686633,214,0 +170778686682,213,0 +170778686730,213,0 +170778686778,213,0 +170778686826,213,0 +170778686874,213,0 +170778686922,213,0 +170778686970,214,0 +170778687018,214,0 +170778687067,214,0 +170778687115,214,0 +170778687163,214,0 +170778687211,214,0 +170778687259,214,0 +170778687307,214,0 +170778687355,214,0 +170778687403,214,0 +170778687450,214,0 +170778687500,214,0 +170778687548,213,0 +170778687598,213,0 +170778687645,213,0 +170778687693,213,0 +170778687743,213,0 +170778687792,213,0 +170778687840,213,0 +170778687888,213,0 +170778687938,213,0 +170778687987,213,0 +170778688035,214,0 +170778688083,214,0 +170778688131,214,0 +170778688179,214,0 +170778688227,214,0 +170778688275,214,0 +170778688324,214,0 +170778688372,214,0 +170778688420,214,0 +170778688468,214,0 +170778688516,213,0 +170778688566,213,0 +170778688614,213,0 +170778688663,213,0 +170778688713,213,0 +170778688762,213,0 +170778688811,214,0 +170778688859,214,0 +170778688909,214,0 +170778688958,214,0 +170778689006,214,0 +170778689056,214,0 +170778689104,214,0 +170778689152,214,0 +170778689201,214,0 +170778689249,214,0 +170778689297,214,0 +170778689345,214,0 +170778689393,213,0 +170778689441,213,0 +170778689490,213,0 +170778689540,213,0 +170778689588,213,0 +170778689636,214,0 +170778689684,213,0 +170778689731,214,0 +170778689779,214,0 +170778689829,214,0 +170778689877,214,0 +170778689925,214,0 +170778689972,214,0 +170778690020,214,0 +170778690068,214,0 +170778690117,215,0 +170778690167,215,0 +170778690216,214,0 +170778690266,214,0 +170778690314,213,0 +170778690362,213,0 +170778690410,213,0 +170778690457,213,0 +170778690505,213,0 +170778690553,213,0 +170778690603,214,0 +170778690650,213,0 +170778690698,214,0 +170778690746,214,0 +170778690794,214,0 +170778690842,214,0 +170778690890,214,0 +170778690939,214,0 +170778690989,215,0 +170778691037,214,0 +170778691086,214,0 +170778691134,214,0 +170778691182,214,0 +170778691232,213,0 +170778691281,213,0 +170778691329,213,0 +170778691377,213,0 +170778691426,213,0 +170778691474,213,0 +170778691524,213,0 +170778691572,214,0 +170778691620,214,0 +170778691668,214,0 +170778691716,214,0 +170778691764,214,0 +170778691812,214,0 +170778691861,214,0 +170778691911,215,0 +170778691959,214,0 +170778692007,214,0 +170778692056,214,0 +170778692104,213,0 +170778692154,213,0 +170778692203,214,0 +170778692253,214,0 +170778692301,214,0 +170778692349,214,0 +170778692398,214,0 +170778692447,214,0 +170778692495,214,0 +170778692543,214,0 +170778692591,214,0 +170778692639,214,0 +170778692687,215,0 +170778692735,214,0 +170778692783,215,0 +170778692832,215,0 +170778692880,215,0 +170778692928,215,0 +170778692976,214,0 +170778693024,214,0 +170778693073,214,0 +170778693121,214,0 +170778693169,214,0 +170778693217,214,0 +170778693265,214,0 +170778693313,214,0 +170778693361,214,0 +170778693409,214,0 +170778693457,215,0 +170778693505,215,0 +170778693553,215,0 +170778693602,215,0 +170778693650,215,0 +170778693698,215,0 +170778693748,215,0 +170778693797,215,0 +170778693845,214,0 +170778693893,213,0 +170778693941,214,0 +170778693989,214,0 +170778694038,214,0 +170778694086,214,0 +170778694134,214,0 +170778694184,214,0 +170778694233,214,0 +170778694281,214,0 +170778694329,214,0 +170778694377,214,0 +170778694426,214,0 +170778694474,214,0 +170778694522,214,0 +170778694570,215,0 +170778694618,215,0 +170778694666,215,0 +170778694714,215,0 +170778694761,214,0 +170778694809,213,0 +170778694857,214,0 +170778694905,214,0 +170778694953,214,0 +170778695001,214,0 +170778695049,214,0 +170778695098,214,0 +170778695146,214,0 +170778695195,214,0 +170778695243,214,0 +170778695291,214,0 +170778695341,215,0 +170778695390,214,0 +170778695438,215,0 +170778695486,215,0 +170778695533,215,0 +170778695581,215,0 +170778695629,214,0 +170778695679,214,0 +170778695726,213,0 +170778695774,214,0 +170778695822,214,0 +170778695872,214,0 +170778695920,214,0 +170778695967,214,0 +170778696015,214,0 +170778696063,214,0 +170778696112,214,0 +170778696160,214,0 +170778696208,214,0 +170778696258,214,0 +170778696305,214,0 +170778696353,215,0 +170778696401,214,0 +170778696449,214,0 +170778696497,214,0 +170778696544,214,0 +170778696592,214,0 +170778696640,213,0 +170778696690,213,0 +170778696738,213,0 +170778696786,213,0 +170778696835,214,0 +170778696883,214,0 +170778696931,213,0 +170778696980,213,0 +170778697028,214,0 +170778697078,214,0 +170778697126,214,0 +170778697174,214,0 +170778697223,214,0 +170778697271,214,0 +170778697319,214,0 +170778697369,214,0 +170778697417,214,0 +170778697466,214,0 +170778697515,213,0 +170778697563,213,0 +170778697611,213,0 +170778697659,213,0 +170778697707,213,0 +170778697755,213,0 +170778697803,214,0 +170778697850,214,0 +170778697898,214,0 +170778697946,214,0 +170778697995,214,0 +170778698043,214,0 +170778698093,214,0 +170778698141,214,0 +170778698189,214,0 +170778698237,214,0 +170778698285,214,0 +170778698334,214,0 +170778698384,214,0 +170778698433,213,0 +170778698481,213,0 +170778698529,213,0 +170778698578,214,0 +170778698626,214,0 +170778698676,214,0 +170778698724,214,0 +170778698773,214,0 +170778698821,214,0 +170778698871,214,0 +170778698919,214,0 +170778698968,214,0 +170778699018,214,0 +170778699065,214,0 +170778699113,214,0 +170778699161,215,0 +170778699211,214,0 +170778699259,214,0 +170778699307,214,0 +170778699355,214,0 +170778699403,214,0 +170778699451,214,0 +170778699500,214,0 +170778699548,214,0 +170778699596,214,0 +170778699644,214,0 +170778699693,214,0 +170778699741,214,0 +170778699789,214,0 +170778699837,214,0 +170778699885,214,0 +170778699935,215,0 +170778699983,215,0 +170778700030,214,0 +170778700078,214,0 +170778700128,215,0 +170778700176,214,0 +170778700224,214,0 +170778700272,214,0 +170778700320,214,0 +170778700368,214,0 +170778700417,214,0 +170778700465,214,0 +170778700513,214,0 +170778700561,214,0 +170778700609,214,0 +170778700658,214,0 +170778700706,214,0 +170778700754,214,0 +170778700804,214,0 +170778700852,214,0 +170778700901,214,0 +170778700949,215,0 +170778700998,214,0 +170778701046,214,0 +170778701094,214,0 +170778701144,214,0 +170778701192,214,0 +170778701241,214,0 +170778701289,214,0 +170778701339,214,0 +170778701387,214,0 +170778701435,214,0 +170778701483,214,0 +170778701530,214,0 +170778701578,214,0 +170778701626,214,0 +170778701676,215,0 +170778701724,214,0 +170778701772,214,0 +170778701821,215,0 +170778701869,215,0 +170778701917,214,0 +170778701965,215,0 +170778702013,214,0 +170778702063,214,0 +170778702111,214,0 +170778702158,214,0 +170778702206,214,0 +170778702256,214,0 +170778702305,214,0 +170778702353,214,0 +170778702401,214,0 +170778702449,214,0 +170778702497,214,0 +170778702547,214,0 +170778702595,215,0 +170778702644,215,0 +170778702692,215,0 +170778702740,215,0 +170778702789,214,0 +170778702837,215,0 +170778702885,214,0 +170778702935,213,0 +170778702984,213,0 +170778703034,213,0 +170778703082,213,0 +170778703130,213,0 +170778703177,214,0 +170778703227,214,0 +170778703275,214,0 +170778703323,214,0 +170778703371,214,0 +170778703419,214,0 +170778703466,214,0 +170778703514,214,0 +170778703562,214,0 +170778703610,214,0 +170778703658,214,0 +170778703706,214,0 +170778703755,214,0 +170778703805,214,0 +170778703853,213,0 +170778703901,213,0 +170778703949,213,0 +170778703997,213,0 +170778704046,213,0 +170778704094,213,0 +170778704142,214,0 +170778704190,213,0 +170778704238,214,0 +170778704288,214,0 +170778704335,214,0 +170778704383,214,0 +170778704433,214,0 +170778704481,214,0 +170778704529,214,0 +170778704577,214,0 +170778704625,214,0 +170778704672,214,0 +170778704720,214,0 +170778704768,213,0 +170778704816,213,0 +170778704864,213,0 +170778704912,213,0 +170778704960,213,0 +170778705009,214,0 +170778705057,213,0 +170778705105,214,0 +170778705153,214,0 +170778705203,214,0 +170778705251,214,0 +170778705299,214,0 +170778705348,214,0 +170778705396,214,0 +170778705445,214,0 +170778705495,214,0 +170778705544,214,0 +170778705592,214,0 +170778705640,213,0 +170778705690,213,0 +170778705738,213,0 +170778705786,213,0 +170778705834,214,0 +170778705881,214,0 +170778705931,214,0 +170778705979,214,0 +170778706027,214,0 +170778706076,214,0 +170778706124,214,0 +170778706172,214,0 +170778706220,214,0 +170778706268,214,0 +170778706317,214,0 +170778706365,214,0 +170778706413,214,0 +170778706461,215,0 +170778706510,214,0 +170778706558,213,0 +170778706606,214,0 +170778706654,214,0 +170778706702,214,0 +170778706750,214,0 +170778706798,214,0 +170778706846,214,0 +170778706893,214,0 +170778706941,214,0 +170778706991,214,0 +170778707039,214,0 +170778707086,214,0 +170778707134,214,0 +170778707182,214,0 +170778707231,214,0 +170778707281,215,0 +170778707329,215,0 +170778707378,215,0 +170778707426,214,0 +170778707474,213,0 +170778707524,214,0 +170778707573,214,0 +170778707621,214,0 +170778707669,214,0 +170778707717,214,0 +170778707766,214,0 +170778707814,214,0 +170778707862,214,0 +170778707910,214,0 +170778707958,214,0 +170778708005,214,0 +170778708053,215,0 +170778708101,215,0 +170778708149,215,0 +170778708196,215,0 +170778708244,214,0 +170778708294,214,0 +170778708343,214,0 +170778708393,214,0 +170778708442,214,0 +170778708492,214,0 +170778708540,214,0 +170778708587,214,0 +170778708635,214,0 +170778708685,214,0 +170778708732,214,0 +170778708780,214,0 +170778708830,214,0 +170778708878,214,0 +170778708926,215,0 +170778708973,214,0 +170778709021,215,0 +170778709069,215,0 +170778709117,215,0 +170778709167,215,0 +170778709216,214,0 +170778709266,214,0 +170778709313,214,0 +170778709361,214,0 +170778709409,214,0 +170778709457,214,0 +170778709505,214,0 +170778709553,214,0 +170778709601,214,0 +170778709650,214,0 +170778709698,215,0 +170778709748,215,0 +170778709797,215,0 +170778709845,215,0 +170778709893,215,0 +170778709941,215,0 +170778709988,215,0 +170778710036,215,0 +170778710084,214,0 +170778710132,214,0 +170778710180,214,0 +170778710228,214,0 +170778710276,214,0 +170778710325,214,0 +170778710375,214,0 +170778710423,214,0 +170778710470,214,0 +170778710520,214,0 +170778710568,214,0 +170778710616,214,0 +170778710664,215,0 +170778710712,215,0 +170778710759,215,0 +170778710807,215,0 +170778710855,215,0 +170778710903,215,0 +170778710951,215,0 +170778710999,214,0 +170778711047,213,0 +170778711095,213,0 +170778711143,213,0 +170778711191,213,0 +170778711239,214,0 +170778711287,214,0 +170778711335,214,0 +170778711383,214,0 +170778711430,214,0 +170778711480,214,0 +170778711529,214,0 +170778711579,214,0 +170778711628,214,0 +170778711676,214,0 +170778711724,214,0 +170778711773,214,0 +170778711821,214,0 +170778711869,214,0 +170778711917,213,0 +170778711965,213,0 +170778712012,213,0 +170778712060,213,0 +170778712110,213,0 +170778712159,213,0 +170778712207,214,0 +170778712255,214,0 +170778712303,214,0 +170778712351,214,0 +170778712398,214,0 +170778712446,214,0 +170778712494,214,0 +170778712542,214,0 +170778712590,214,0 +170778712638,214,0 +170778712688,214,0 +170778712735,214,0 +170778712783,214,0 +170778712833,213,0 +170778712881,213,0 +170778712930,213,0 +170778712978,214,0 +170778713027,213,0 +170778713077,214,0 +170778713125,214,0 +170778713173,214,0 +170778713221,214,0 +170778713269,214,0 +170778713316,214,0 +170778713364,214,0 +170778713412,214,0 +170778713460,214,0 +170778713507,214,0 +170778713555,214,0 +170778713603,214,0 +170778713651,214,0 +170778713699,213,0 +170778713746,213,0 +170778713796,213,0 +170778713844,213,0 +170778713891,213,0 +170778713939,213,0 +170778713987,213,0 +170778714035,214,0 +170778714083,214,0 +170778714131,214,0 +170778714179,214,0 +170778714228,214,0 +170778714276,214,0 +170778714324,214,0 +170778714372,214,0 +170778714420,214,0 +170778714469,214,0 +170778714517,214,0 +170778714565,214,0 +170778714613,213,0 +170778714661,213,0 +170778714710,213,0 +170778714758,213,0 +170778714806,214,0 +170778714856,214,0 +170778714903,214,0 +170778714951,214,0 +170778714999,214,0 +170778715047,214,0 +170778715095,214,0 +170778715143,214,0 +170778715191,214,0 +170778715239,214,0 +170778715287,214,0 +170778715335,214,0 +170778715384,214,0 +170778715432,214,0 +170778715481,214,0 +170778715529,213,0 +170778715579,213,0 +170778715627,213,0 +170778715676,213,0 +170778715724,214,0 +170778715774,214,0 +170778715822,214,0 +170778715870,214,0 +170778715919,214,0 +170778715967,214,0 +170778716015,214,0 +170778716063,214,0 +170778716111,214,0 +170778716159,214,0 +170778716207,214,0 +170778716255,214,0 +170778716304,214,0 +170778716352,214,0 +170778716402,213,0 +170778716450,213,0 +170778716499,214,0 +170778716547,214,0 +170778716597,214,0 +170778716644,214,0 +170778716694,214,0 +170778716743,214,0 +170778716793,214,0 +170778716842,214,0 +170778716890,214,0 +170778716940,214,0 +170778716989,215,0 +170778717037,214,0 +170778717085,215,0 +170778717133,214,0 +170778717181,214,0 +170778717229,214,0 +170778717277,214,0 +170778717325,214,0 +170778717373,214,0 +170778717423,214,0 +170778717470,214,0 +170778717520,214,0 +170778717569,214,0 +170778717617,214,0 +170778717667,214,0 +170778717715,214,0 +170778717763,215,0 +170778717810,215,0 +170778717860,214,0 +170778717908,214,0 +170778717957,215,0 +170778718007,214,0 +170778718055,214,0 +170778718103,214,0 +170778718151,214,0 +170778718200,214,0 +170778718248,214,0 +170778718298,214,0 +170778718346,214,0 +170778718395,214,0 +170778718445,214,0 +170778718494,214,0 +170778718542,214,0 +170778718592,214,0 +170778718640,214,0 +170778718689,214,0 +170778718737,214,0 +170778718785,215,0 +170778718833,215,0 +170778718880,215,0 +170778718928,215,0 +170778718976,214,0 +170778719026,214,0 +170778719073,214,0 +170778719121,213,0 +170778719169,213,0 +170778719217,213,0 +170778719266,214,0 +170778719314,214,0 +170778719362,214,0 +170778719410,214,0 +170778719458,214,0 +170778719505,214,0 +170778719553,214,0 +170778719601,214,0 +170778719649,214,0 +170778719697,214,0 +170778719745,214,0 +170778719792,214,0 +170778719840,215,0 +170778719888,214,0 +170778719936,214,0 +170778719984,214,0 +170778720032,213,0 +170778720080,213,0 +170778720128,214,0 +170778720176,213,0 +170778720224,214,0 +170778720272,214,0 +170778720321,214,0 +170778720371,214,0 +170778720419,214,0 +170778720466,214,0 +170778720516,214,0 +170778720566,215,0 +170778720613,215,0 +170778720661,215,0 +170778720709,215,0 +170778720757,215,0 +170778720805,215,0 +170778720853,214,0 +170778720903,213,0 +170778720952,213,0 +170778721000,214,0 +170778721048,214,0 +170778721098,214,0 +170778721145,214,0 +170778721193,214,0 +170778721243,214,0 +170778721292,214,0 +170778721342,214,0 +170778721390,214,0 +170778721437,214,0 +170778721485,214,0 +170778721535,214,0 +170778721583,215,0 +170778721631,214,0 +170778721679,214,0 +170778721727,214,0 +170778721776,214,0 +170778721825,213,0 +170778721873,213,0 +170778721921,213,0 +170778721969,214,0 +170778722017,214,0 +170778722065,214,0 +170778722115,214,0 +170778722164,214,0 +170778722214,214,0 +170778722262,214,0 +170778722310,214,0 +170778722358,214,0 +170778722406,214,0 +170778722453,214,0 +170778722503,215,0 +170778722551,215,0 +170778722600,215,0 +170778722648,215,0 +170778722696,213,0 +170778722744,213,0 +170778722792,213,0 +170778722840,214,0 +170778722888,213,0 +170778722936,214,0 +170778722984,214,0 +170778723033,214,0 +170778723081,214,0 +170778723129,214,0 +170778723177,214,0 +170778723226,214,0 +170778723276,214,0 +170778723324,214,0 +170778723372,214,0 +170778723421,214,0 +170778723471,214,0 +170778723519,215,0 +170778723566,214,0 +170778723614,214,0 +170778723662,214,0 +170778723710,214,0 +170778723758,214,0 +170778723806,214,0 +170778723856,214,0 +170778723903,214,0 +170778723951,214,0 +170778724001,214,0 +170778724049,214,0 +170778724097,214,0 +170778724145,214,0 +170778724194,215,0 +170778724244,215,0 +170778724293,215,0 +170778724341,215,0 +170778724389,215,0 +170778724437,215,0 +170778724487,214,0 +170778724534,214,0 +170778724582,214,0 +170778724630,214,0 +170778724678,214,0 +170778724728,214,0 +170778724777,214,0 +170778724825,214,0 +170778724873,214,0 +170778724922,214,0 +170778724970,215,0 +170778725018,215,0 +170778725065,215,0 +170778725113,214,0 +170778725161,215,0 +170778725209,215,0 +170778725257,215,0 +170778725306,214,0 +170778725354,214,0 +170778725404,214,0 +170778725452,214,0 +170778725499,214,0 +170778725549,214,0 +170778725597,214,0 +170778725645,214,0 +170778725693,214,0 +170778725742,214,0 +170778725790,214,0 +170778725838,215,0 +170778725886,215,0 +170778725934,215,0 +170778725981,215,0 +170778726031,215,0 +170778726079,215,0 +170778726127,215,0 +170778726175,214,0 +170778726222,214,0 +170778726270,214,0 +170778726318,214,0 +170778726366,214,0 +170778726416,214,0 +170778726464,214,0 +170778726511,214,0 +170778726559,214,0 +170778726607,214,0 +170778726655,214,0 +170778726705,214,0 +170778726754,214,0 +170778726804,215,0 +170778726852,215,0 +170778726899,215,0 +170778726947,215,0 +170778726995,215,0 +170778727043,215,0 +170778727093,214,0 +170778727141,214,0 +170778727189,214,0 +170778727237,214,0 +170778727286,214,0 +170778727336,214,0 +170778727384,214,0 +170778727432,214,0 +170778727481,214,0 +170778727531,214,0 +170778727580,214,0 +170778727630,215,0 +170778727678,214,0 +170778727726,215,0 +170778727775,215,0 +170778727825,214,0 +170778727873,215,0 +170778727920,215,0 +170778727970,215,0 +170778728018,214,0 +170778728066,214,0 +170778728114,213,0 +170778728163,213,0 +170778728213,213,0 +170778728261,213,0 +170778728309,213,0 +170778728356,214,0 +170778728404,214,0 +170778728452,214,0 +170778728500,214,0 +170778728548,214,0 +170778728596,214,0 +170778728644,214,0 +170778728691,214,0 +170778728741,214,0 +170778728789,214,0 +170778728837,214,0 +170778728885,214,0 +170778728934,214,0 +170778728982,213,0 +170778729030,213,0 +170778729078,213,0 +170778729126,213,0 +170778729174,213,0 +170778729223,213,0 +170778729273,213,0 +170778729321,213,0 +170778729370,213,0 +170778729418,214,0 +170778729467,214,0 +170778729515,214,0 +170778729565,214,0 +170778729613,214,0 +170778729661,214,0 +170778729709,214,0 +170778729757,214,0 +170778729804,214,0 +170778729852,214,0 +170778729900,213,0 +170778729948,213,0 +170778729996,213,0 +170778730044,213,0 +170778730092,213,0 +170778730141,213,0 +170778730189,213,0 +170778730237,214,0 +170778730285,214,0 +170778730333,214,0 +170778730380,214,0 +170778730428,214,0 +170778730478,214,0 +170778730527,214,0 +170778730577,214,0 +170778730626,214,0 +170778730674,215,0 +170778730724,214,0 +170778730772,213,0 +170778730821,213,0 +170778730869,213,0 +170778730919,213,0 +170778730967,214,0 +170778731015,213,0 +170778731062,214,0 +170778731110,214,0 +170778731160,214,0 +170778731209,214,0 +170778731257,214,0 +170778731305,214,0 +170778731355,214,0 +170778731403,214,0 +170778731451,214,0 +170778731499,214,0 +170778731547,214,0 +170778731595,214,0 +170778731643,213,0 +170778731693,213,0 +170778731742,213,0 +170778731790,213,0 +170778731838,213,0 +170778731886,213,0 +170778731934,213,0 +170778731982,213,0 +170778732031,214,0 +170778732079,214,0 +170778732127,214,0 +170778732177,214,0 +170778732225,214,0 +170778732274,214,0 +170778732322,214,0 +170778732370,214,0 +170778732418,214,0 +170778732466,214,0 +170778732514,214,0 +170778732562,213,0 +170778732612,213,0 +170778732660,213,0 +170778732709,213,0 +170778732757,213,0 +170778732807,213,0 +170778732856,214,0 +170778732904,213,0 +170778732952,213,0 +170778733000,214,0 +170778733048,214,0 +170778733096,214,0 +170778733144,214,0 +170778733191,214,0 +170778733241,214,0 +170778733289,214,0 +170778733337,214,0 +170778733385,214,0 +170778733432,213,0 +170778733482,213,0 +170778733532,213,0 +170778733580,213,0 +170778733629,213,0 +170778733677,214,0 +170778733725,214,0 +170778733773,214,0 +170778733822,214,0 +170778733870,214,0 +170778733920,214,0 +170778733969,214,0 +170778734019,214,0 +170778734067,214,0 +170778734115,214,0 +170778734164,214,0 +170778734214,214,0 +170778734263,214,0 +170778734313,213,0 +170778734361,213,0 +170778734408,213,0 +170778734456,213,0 +170778734504,214,0 +170778734552,214,0 +170778734600,214,0 +170778734648,214,0 +170778734698,214,0 +170778734747,214,0 +170778734797,214,0 +170778734846,214,0 +170778734894,214,0 +170778734942,214,0 +170778734990,215,0 +170778735039,215,0 +170778735087,215,0 +170778735137,215,0 +170778735185,214,0 +170778735234,214,0 +170778735282,214,0 +170778735330,214,0 +170778735378,214,0 +170778735427,214,0 +170778735477,214,0 +170778735525,214,0 +170778735574,214,0 +170778735624,214,0 +170778735673,214,0 +170778735721,215,0 +170778735769,215,0 +170778735817,215,0 +170778735865,215,0 +170778735915,214,0 +170778735964,215,0 +170778736012,215,0 +170778736060,214,0 +170778736110,214,0 +170778736158,214,0 +170778736206,214,0 +170778736253,214,0 +170778736301,214,0 +170778736349,214,0 +170778736397,214,0 +170778736445,214,0 +170778736493,214,0 +170778736543,214,0 +170778736592,214,0 +170778736640,214,0 +170778736690,215,0 +170778736737,215,0 +170778736785,215,0 +170778736835,214,0 +170778736883,215,0 +170778736932,214,0 +170778736980,214,0 +170778737030,214,0 +170778737078,214,0 +170778737126,214,0 +170778737174,214,0 +170778737221,214,0 +170778737271,214,0 +170778737319,214,0 +170778737367,214,0 +170778737415,214,0 +170778737463,214,0 +170778737512,215,0 +170778737562,215,0 +170778737611,215,0 +170778737661,215,0 +170778737709,215,0 +170778737757,214,0 +170778737805,215,0 +170778737852,214,0 +170778737900,214,0 +170778737948,214,0 +170778737998,214,0 +170778738047,214,0 +170778738095,214,0 +170778738145,214,0 +170778738193,214,0 +170778738242,215,0 +170778738292,214,0 +170778738341,215,0 +170778738389,215,0 +170778738439,215,0 +170778738487,215,0 +170778738534,215,0 +170778738582,215,0 +170778738632,215,0 +170778738681,214,0 +170778738729,214,0 +170778738777,214,0 +170778738825,214,0 +170778738873,214,0 +170778738923,214,0 +170778738972,214,0 +170778739020,214,0 +170778739069,214,0 +170778739119,214,0 +170778739168,214,0 +170778739216,215,0 +170778739264,214,0 +170778739312,215,0 +170778739360,214,0 +170778739408,215,0 +170778739456,215,0 +170778739504,215,0 +170778739552,215,0 +170778739601,214,0 +170778739651,214,0 +170778739699,214,0 +170778739747,214,0 +170778739795,214,0 +170778739843,214,0 +170778739891,214,0 +170778739939,214,0 +170778739987,214,0 +170778740034,214,0 +170778740082,214,0 +170778740130,215,0 +170778740178,215,0 +170778740226,215,0 +170778740274,215,0 +170778740322,215,0 +170778740371,215,0 +170778740421,214,0 +170778740469,215,0 +170778740518,215,0 +170778740568,214,0 +170778740616,214,0 +170778740664,214,0 +170778740712,214,0 +170778740761,214,0 +170778740811,214,0 +170778740860,214,0 +170778740908,214,0 +170778740958,214,0 +170778741007,215,0 +170778741057,214,0 +170778741106,214,0 +170778741155,215,0 +170778741203,215,0 +170778741251,215,0 +170778741299,214,0 +170778741347,215,0 +170778741396,214,0 +170778741446,213,0 +170778741495,213,0 +170778741545,213,0 +170778741593,213,0 +170778741641,213,0 +170778741690,214,0 +170778741738,214,0 +170778741786,214,0 +170778741835,214,0 +170778741883,214,0 +170778741931,214,0 +170778741979,214,0 +170778742027,214,0 +170778742075,214,0 +170778742123,214,0 +170778742172,214,0 +170778742220,214,0 +170778742270,214,0 +170778742318,214,0 +170778742366,213,0 +170778742415,213,0 +170778742463,213,0 +170778742513,213,0 +170778742561,213,0 +170778742608,214,0 +170778742656,213,0 +170778742704,214,0 +170778742752,214,0 +170778742802,214,0 +170778742850,214,0 +170778742898,214,0 +170778742946,214,0 +170778742995,214,0 +170778743045,214,0 +170778743093,215,0 +170778743140,214,0 +170778743188,215,0 +170778743236,213,0 +170778743284,213,0 +170778743332,213,0 +170778743380,213,0 +170778743428,213,0 +170778743478,214,0 +170778743526,214,0 +170778743573,214,0 +170778743623,214,0 +170778743672,214,0 +170778743720,214,0 +170778743768,214,0 +170778743816,214,0 +170778743866,215,0 +170778743914,214,0 +170778743963,214,0 +170778744011,214,0 +170778744059,214,0 +170778744106,214,0 +170778744154,213,0 +170778744202,213,0 +170778744250,213,0 +170778744298,213,0 +170778744347,214,0 +170778744395,213,0 +170778744443,213,0 +170778744492,214,0 +170778744540,214,0 +170778744588,214,0 +170778744636,214,0 +170778744684,214,0 +170778744732,214,0 +170778744780,214,0 +170778744827,214,0 +170778744877,214,0 +170778744925,214,0 +170778744973,214,0 +170778745021,213,0 +170778745069,213,0 +170778745118,213,0 +170778745166,213,0 +170778745214,213,0 +170778745262,213,0 +170778745310,213,0 +170778745358,213,0 +170778745407,213,0 +170778745455,214,0 +170778745503,214,0 +170778745553,214,0 +170778745601,214,0 +170778745648,214,0 +170778745698,214,0 +170778745747,214,0 +170778745795,214,0 +170778745843,214,0 +170778745891,214,0 +170778745939,213,0 +170778745989,213,0 +170778746038,213,0 +170778746088,213,0 +170778746136,213,0 +170778746184,213,0 +170778746232,213,0 +170778746279,214,0 +170778746327,214,0 +170778746375,214,0 +170778746425,214,0 +170778746474,214,0 +170778746523,214,0 +170778746571,214,0 +170778746619,214,0 +170778746669,214,0 +170778746717,214,0 +170778746764,214,0 +170778746812,213,0 +170778746860,213,0 +170778746908,213,0 +170778746957,213,0 +170778747007,213,0 +170778747055,214,0 +170778747103,213,0 +170778747151,213,0 +170778747199,214,0 +170778747247,214,0 +170778747295,214,0 +170778747344,214,0 +170778747394,214,0 +170778747442,214,0 +170778747491,214,0 +170778747539,214,0 +170778747587,215,0 +170778747635,214,0 +170778747684,213,0 +170778747732,213,0 +170778747782,213,0 +170778747830,213,0 +170778747879,213,0 +170778747927,213,0 +170778747975,214,0 +170778748023,214,0 +170778748072,214,0 +170778748120,214,0 +170778748168,214,0 +170778748217,214,0 +170778748267,214,0 +170778748315,214,0 +170778748363,214,0 +170778748411,214,0 +170778748458,214,0 +170778748506,214,0 +170778748554,213,0 +170778748604,213,0 +170778748652,213,0 +170778748701,213,0 +170778748749,213,0 +170778748798,213,0 +170778748846,214,0 +170778748896,214,0 +170778748944,214,0 +170778748992,214,0 +170778749041,214,0 +170778749089,214,0 +170778749138,214,0 +170778749186,214,0 +170778749234,214,0 +170778749282,214,0 +170778749330,214,0 +170778749380,214,0 +170778749427,214,0 +170778749475,213,0 +170778749525,213,0 +170778749573,213,0 +170778749621,213,0 +170778749669,213,0 +170778749717,213,0 +170778749766,214,0 +170778749816,214,0 +170778749864,214,0 +170778749912,214,0 +170778749961,214,0 +170778750009,214,0 +170778750058,214,0 +170778750108,214,0 +170778750156,214,0 +170778750205,214,0 +170778750253,215,0 +170778750301,214,0 +170778750349,214,0 +170778750399,214,0 +170778750447,214,0 +170778750495,214,0 +170778750543,214,0 +170778750592,214,0 +170778750641,214,0 +170778750691,214,0 +170778750739,214,0 +170778750787,214,0 +170778750835,214,0 +170778750884,214,0 +170778750932,214,0 +170778750980,214,0 +170778751029,215,0 +170778751077,215,0 +170778751125,214,0 +170778751175,214,0 +170778751223,214,0 +170778751272,214,0 +170778751320,214,0 +170778751368,214,0 +170778751417,214,0 +170778751467,214,0 +170778751515,214,0 +170778751563,214,0 +170778751610,214,0 +170778751658,214,0 +170778751706,214,0 +170778751754,214,0 +170778751802,215,0 +170778751850,214,0 +170778751898,214,0 +170778751946,214,0 +170778751995,215,0 +170778752043,215,0 +170778752091,214,0 +170778752139,214,0 +170778752187,214,0 +170778752236,214,0 +170778752284,214,0 +170778752334,214,0 +170778752382,214,0 +170778752431,215,0 +170778752479,215,0 +170778752527,214,0 +170778752576,214,0 +170778752626,215,0 +170778752674,215,0 +170778752722,215,0 +170778752771,215,0 +170778752821,215,0 +170778752869,214,0 +170778752917,214,0 +170778752965,214,0 +170778753013,214,0 +170778753061,214,0 +170778753110,214,0 +170778753160,214,0 +170778753208,214,0 +170778753256,214,0 +170778753303,214,0 +170778753353,214,0 +170778753401,214,0 +170778753449,214,0 +170778753497,214,0 +170778753544,215,0 +170778753592,215,0 +170778753642,215,0 +170778753690,215,0 +170778753738,214,0 +170778753786,214,0 +170778753835,214,0 +170778753883,214,0 +170778753931,214,0 +170778753979,214,0 +170778754027,214,0 +170778754075,214,0 +170778754123,214,0 +170778754172,214,0 +170778754222,214,0 +170778754271,214,0 +170778754319,214,0 +170778754367,215,0 +170778754415,215,0 +170778754464,214,0 +170778754512,215,0 +170778754560,215,0 +170778754608,215,0 +170778754656,214,0 +170778754703,213,0 +170778754751,213,0 +170778754799,214,0 +170778754847,214,0 +170778754896,214,0 +170778754944,214,0 +170778754992,214,0 +170778755040,214,0 +170778755088,214,0 +170778755135,214,0 +170778755183,214,0 +170778755231,215,0 +170778755280,214,0 +170778755328,215,0 +170778755378,214,0 +170778755426,214,0 +170778755474,214,0 +170778755523,214,0 +170778755571,213,0 +170778755619,213,0 +170778755667,213,0 +170778755715,214,0 +170778755764,214,0 +170778755812,214,0 +170778755860,214,0 +170778755908,214,0 +170778755956,214,0 +170778756004,214,0 +170778756052,214,0 +170778756100,214,0 +170778756148,214,0 +170778756198,214,0 +170778756246,214,0 +170778756294,214,0 +170778756343,214,0 +170778756393,214,0 +170778756441,214,0 +170778756488,213,0 +170778756536,214,0 +170778756586,214,0 +170778756634,213,0 +170778756682,214,0 +170778756730,214,0 +170778756778,214,0 +170778756826,214,0 +170778756873,214,0 +170778756923,214,0 +170778756971,214,0 +170778757018,214,0 +170778757068,214,0 +170778757116,214,0 +170778757163,214,0 +170778757211,214,0 +170778757259,215,0 +170778757308,214,0 +170778757356,214,0 +170778757406,214,0 +170778757454,214,0 +170778757503,214,0 +170778757551,214,0 +170778757601,214,0 +170778757649,214,0 +170778757698,214,0 +170778757746,214,0 +170778757795,214,0 +170778757843,215,0 +170778757891,214,0 +170778757939,215,0 +170778757987,215,0 +170778758035,215,0 +170778758083,215,0 +170778758131,214,0 +170778758179,213,0 +170778758227,213,0 +170778758275,213,0 +170778758322,214,0 +170778758370,214,0 +170778758418,214,0 +170778758466,214,0 +170778758514,214,0 +170778758562,214,0 +170778758609,214,0 +170778758657,214,0 +170778758705,214,0 +170778758753,214,0 +170778758801,214,0 +170778758849,214,0 +170778758897,214,0 +170778758944,214,0 +170778758992,214,0 +170778759040,214,0 +170778759090,213,0 +170778759138,213,0 +170778759187,213,0 +170778759235,213,0 +170778759283,214,0 +170778759331,213,0 +170778759380,214,0 +170778759428,214,0 +170778759478,214,0 +170778759526,214,0 +170778759575,214,0 +170778759623,214,0 +170778759673,214,0 +170778759721,214,0 +170778759769,214,0 +170778759816,214,0 +170778759864,215,0 +170778759912,213,0 +170778759960,213,0 +170778760008,213,0 +170778760056,214,0 +170778760104,213,0 +170778760152,214,0 +170778760200,214,0 +170778760249,214,0 +170778760299,214,0 +170778760348,214,0 +170778760396,214,0 +170778760444,214,0 +170778760492,214,0 +170778760540,214,0 +170778760588,215,0 +170778760636,214,0 +170778760684,214,0 +170778760732,214,0 +170778760779,213,0 +170778760829,214,0 +170778760877,214,0 +170778760925,214,0 +170778760972,214,0 +170778761020,214,0 +170778761068,214,0 +170778761118,214,0 +170778761166,214,0 +170778761214,214,0 +170778761262,214,0 +170778761310,214,0 +170778761357,214,0 +170778761405,215,0 +170778761453,215,0 +170778761503,215,0 +170778761551,215,0 +170778761600,214,0 +170778761648,214,0 +170778761698,214,0 +170778761745,213,0 +170778761793,214,0 +170778761841,214,0 +170778761889,214,0 +170778761937,214,0 +170778761985,214,0 +170778762033,214,0 +170778762082,214,0 +170778762130,214,0 +170778762180,215,0 +170778762228,214,0 +170778762276,215,0 +170778762325,215,0 +170778762373,215,0 +170778762421,215,0 +170778762469,214,0 +170778762517,213,0 +170778762565,213,0 +170778762614,213,0 +170778762662,213,0 +170778762710,214,0 +170778762758,214,0 +170778762806,214,0 +170778762856,214,0 +170778762904,214,0 +170778762953,214,0 +170778763003,214,0 +170778763050,214,0 +170778763098,215,0 +170778763148,214,0 +170778763196,215,0 +170778763245,215,0 +170778763295,215,0 +170778763342,215,0 +170778763390,214,0 +170778763438,214,0 +170778763486,214,0 +170778763534,214,0 +170778763582,214,0 +170778763632,214,0 +170778763679,214,0 +170778763729,214,0 +170778763777,214,0 +170778763825,214,0 +170778763873,214,0 +170778763921,215,0 +170778763968,214,0 +170778764018,214,0 +170778764066,214,0 +170778764114,214,0 +170778764162,215,0 +170778764211,214,0 +170778764261,214,0 +170778764308,213,0 +170778764358,213,0 +170778764406,214,0 +170778764455,214,0 +170778764503,214,0 +170778764551,214,0 +170778764599,214,0 +170778764648,214,0 +170778764696,214,0 +170778764746,214,0 +170778764795,214,0 +170778764845,214,0 +170778764894,215,0 +170778764943,214,0 +170778764993,215,0 +170778765041,214,0 +170778765090,214,0 +170778765140,213,0 +170778765188,213,0 +170778765236,213,0 +170778765284,214,0 +170778765331,214,0 +170778765379,214,0 +170778765427,214,0 +170778765475,214,0 +170778765525,214,0 +170778765573,214,0 +170778765621,214,0 +170778765669,214,0 +170778765716,214,0 +170778765764,215,0 +170778765812,214,0 +170778765860,214,0 +170778765908,214,0 +170778765958,214,0 +170778766007,213,0 +170778766055,214,0 +170778766104,214,0 +170778766152,214,0 +170778766200,214,0 +170778766248,214,0 +170778766298,214,0 +170778766347,214,0 +170778766395,214,0 +170778766443,214,0 +170778766493,214,0 +170778766540,214,0 +170778766590,214,0 +170778766638,214,0 +170778766686,215,0 +170778766735,214,0 +170778766785,214,0 +170778766833,214,0 +170778766881,214,0 +170778766930,214,0 +170778766978,214,0 +170778767026,214,0 +170778767074,214,0 +170778767122,214,0 +170778767170,214,0 +170778767220,214,0 +170778767268,214,0 +170778767316,215,0 +170778767364,215,0 +170778767411,215,0 +170778767459,215,0 +170778767507,215,0 +170778767555,215,0 +170778767605,215,0 +170778767653,215,0 +170778767701,214,0 +170778767750,214,0 +170778767798,214,0 +170778767846,214,0 +170778767894,214,0 +170778767942,214,0 +170778767990,214,0 +170778768038,214,0 +170778768087,214,0 +170778768137,214,0 +170778768185,214,0 +170778768233,214,0 +170778768282,214,0 +170778768332,214,0 +170778768381,215,0 +170778768429,215,0 +170778768479,214,0 +170778768527,215,0 +170778768575,214,0 +170778768622,213,0 +170778768670,214,0 +170778768718,214,0 +170778768766,214,0 +170778768814,214,0 +170778768862,214,0 +170778768910,214,0 +170778768958,214,0 +170778769007,214,0 +170778769055,214,0 +170778769103,214,0 +170778769151,214,0 +170778769199,214,0 +170778769247,215,0 +170778769297,215,0 +170778769345,214,0 +170778769393,215,0 +170778769440,214,0 +170778769490,214,0 +170778769538,214,0 +170778769586,214,0 +170778769634,214,0 +170778769683,214,0 +170778769731,214,0 +170778769779,214,0 +170778769827,214,0 +170778769875,214,0 +170778769924,214,0 +170778769972,214,0 +170778770022,214,0 +170778770070,215,0 +170778770119,215,0 +170778770167,214,0 +170778770215,215,0 +170778770263,215,0 +170778770311,214,0 +170778770359,213,0 +170778770407,213,0 +170778770455,214,0 +170778770503,213,0 +170778770551,214,0 +170778770599,214,0 +170778770646,214,0 +170778770694,214,0 +170778770744,214,0 +170778770792,214,0 +170778770841,215,0 +170778770889,215,0 +170778770937,215,0 +170778770987,215,0 +170778771034,215,0 +170778771083,215,0 +170778771130,214,0 +170778771178,214,0 +170778771226,213,0 +170778771274,213,0 +170778771324,213,0 +170778771373,214,0 +170778771421,214,0 +170778771469,214,0 +170778771517,214,0 +170778771565,214,0 +170778771613,214,0 +170778771661,214,0 +170778771710,214,0 +170778771758,215,0 +170778771806,214,0 +170778771854,215,0 +170778771902,215,0 +170778771952,215,0 +170778772000,215,0 +170778772048,214,0 +170778772095,214,0 +170778772145,213,0 +170778772194,213,0 +170778772244,214,0 +170778772292,213,0 +170778772341,214,0 +170778772389,214,0 +170778772438,214,0 +170778772486,214,0 +170778772536,214,0 +170778772584,214,0 +170778772632,214,0 +170778772680,215,0 +170778772729,215,0 +170778772777,215,0 +170778772825,215,0 +170778772873,214,0 +170778772920,214,0 +170778772968,213,0 +170778773016,213,0 +170778773066,213,0 +170778773114,213,0 +170778773162,213,0 +170778773209,213,0 +170778773257,214,0 +170778773305,214,0 +170778773353,214,0 +170778773401,214,0 +170778773449,214,0 +170778773497,214,0 +170778773544,214,0 +170778773592,214,0 +170778773642,214,0 +170778773690,214,0 +170778773739,214,0 +170778773789,213,0 +170778773837,213,0 +170778773885,213,0 +170778773933,213,0 +170778773981,213,0 +170778774029,213,0 +170778774078,213,0 +170778774128,213,0 +170778774177,213,0 +170778774227,213,0 +170778774276,213,0 +170778774324,214,0 +170778774374,214,0 +170778774421,214,0 +170778774471,214,0 +170778774520,214,0 +170778774568,214,0 +170778774618,214,0 +170778774666,214,0 +170778774714,214,0 +170778774763,214,0 +170778774811,215,0 +170778774859,214,0 +170778774907,214,0 +170778774957,215,0 +170778775005,215,0 +170778775054,214,0 +170778775102,213,0 +170778775152,213,0 +170778775200,213,0 +170778775249,213,0 +170778775297,214,0 +170778775345,214,0 +170778775393,214,0 +170778775442,214,0 +170778775490,214,0 +170778775538,214,0 +170778775588,214,0 +170778775636,214,0 +170778775684,214,0 +170778775734,214,0 +170778775783,214,0 +170778775833,214,0 +170778775882,214,0 +170778775932,214,0 +170778775980,213,0 +170778776028,214,0 +170778776077,213,0 +170778776125,213,0 +170778776174,213,0 +170778776222,213,0 +170778776270,214,0 +170778776318,214,0 +170778776366,214,0 +170778776416,214,0 +170778776465,214,0 +170778776513,214,0 +170778776562,215,0 +170778776610,215,0 +170778776660,215,0 +170778776709,215,0 +170778776759,214,0 +170778776807,214,0 +170778776856,213,0 +170778776904,214,0 +170778776952,214,0 +170778777000,214,0 +170778777048,214,0 +170778777098,214,0 +170778777146,214,0 +170778777194,214,0 +170778777243,214,0 +170778777291,214,0 +170778777339,214,0 +170778777388,214,0 +170778777438,214,0 +170778777487,215,0 +170778777535,215,0 +170778777585,215,0 +170778777634,214,0 +170778777684,214,0 +170778777733,214,0 +170778777781,214,0 +170778777831,214,0 +170778777880,214,0 +170778777928,214,0 +170778777978,214,0 +170778778026,214,0 +170778778074,214,0 +170778778122,214,0 +170778778169,214,0 +170778778219,214,0 +170778778267,215,0 +170778778315,215,0 +170778778362,215,0 +170778778412,214,0 +170778778461,214,0 +170778778511,214,0 +170778778559,214,0 +170778778607,213,0 +170778778656,213,0 +170778778704,214,0 +170778778752,214,0 +170778778800,214,0 +170778778848,214,0 +170778778896,214,0 +170778778944,214,0 +170778778992,215,0 +170778779040,214,0 +170778779088,214,0 +170778779136,214,0 +170778779185,215,0 +170778779235,215,0 +170778779283,214,0 +170778779331,215,0 +170778779380,214,0 +170778779428,213,0 +170778779478,214,0 +170778779526,213,0 +170778779575,214,0 +170778779623,214,0 +170778779673,214,0 +170778779721,214,0 +170778779769,214,0 +170778779816,214,0 +170778779864,214,0 +170778779912,215,0 +170778779960,215,0 +170778780010,215,0 +170778780059,214,0 +170778780109,215,0 +170778780158,215,0 +170778780206,215,0 +170778780256,214,0 +170778780304,213,0 +170778780353,213,0 +170778780403,214,0 +170778780450,213,0 +170778780498,214,0 +170778780548,214,0 +170778780598,214,0 +170778780647,214,0 +170778780695,214,0 +170778780744,214,0 +170778780792,214,0 +170778780840,214,0 +170778780888,214,0 +170778780936,214,0 +170778780984,214,0 +170778781032,214,0 +170778781081,214,0 +170778781129,214,0 +170778781177,214,0 +170778781227,213,0 +170778781275,213,0 +170778781323,214,0 +170778781372,213,0 +170778781420,214,0 +170778781470,214,0 +170778781519,214,0 +170778781568,214,0 +170778781616,214,0 +170778781664,214,0 +170778781712,214,0 +170778781760,215,0 +170778781808,215,0 +170778781858,214,0 +170778781905,214,0 +170778781953,214,0 +170778782001,213,0 +170778782049,214,0 +170778782097,214,0 +170778782145,214,0 +170778782193,214,0 +170778782242,214,0 +170778782292,214,0 +170778782339,214,0 +170778782387,214,0 +170778782435,214,0 +170778782483,214,0 +170778782531,214,0 +170778782579,214,0 +170778782627,215,0 +170778782674,214,0 +170778782722,215,0 +170778782770,214,0 +170778782818,214,0 +170778782866,214,0 +170778782914,214,0 +170778782962,214,0 +170778783009,214,0 +170778783059,214,0 +170778783109,214,0 +170778783156,214,0 +170778783206,214,0 +170778783255,214,0 +170778783303,215,0 +170778783353,215,0 +170778783401,214,0 +170778783449,215,0 +170778783498,214,0 +170778783548,215,0 +170778783597,215,0 +170778783647,215,0 +170778783695,214,0 +170778783742,214,0 +170778783790,214,0 +170778783838,214,0 +170778783888,214,0 +170778783936,214,0 +170778783984,215,0 +170778784032,214,0 +170778784080,214,0 +170778784128,215,0 +170778784175,215,0 +170778784223,215,0 +170778784271,215,0 +170778784319,215,0 +170778784369,215,0 +170778784417,215,0 +170778784465,214,0 +170778784514,214,0 +170778784564,214,0 +170778784612,214,0 +170778784660,214,0 +170778784708,214,0 +170778784755,214,0 +170778784803,214,0 +170778784851,214,0 +170778784901,214,0 +170778784949,214,0 +170778784998,214,0 +170778785047,214,0 +170778785095,214,0 +170778785143,215,0 +170778785193,215,0 +170778785242,215,0 +170778785290,215,0 +170778785340,214,0 +170778785387,214,0 +170778785437,214,0 +170778785485,214,0 +170778785533,214,0 +170778785581,214,0 +170778785629,214,0 +170778785677,214,0 +170778785725,214,0 +170778785773,214,0 +170778785821,214,0 +170778785870,214,0 +170778785918,215,0 +170778785966,214,0 +170778786014,215,0 +170778786062,214,0 +170778786110,215,0 +170778786158,214,0 +170778786205,214,0 +170778786253,213,0 +170778786301,214,0 +170778786349,213,0 +170778786397,214,0 +170778786445,214,0 +170778786495,214,0 +170778786544,214,0 +170778786594,214,0 +170778786642,214,0 +170778786690,214,0 +170778786739,214,0 +170778786787,214,0 +170778786835,215,0 +170778786885,215,0 +170778786934,215,0 +170778786984,215,0 +170778787033,214,0 +170778787081,214,0 +170778787129,213,0 +170778787177,213,0 +170778787225,213,0 +170778787274,213,0 +170778787322,213,0 +170778787372,214,0 +170778787420,214,0 +170778787468,214,0 +170778787517,214,0 +170778787565,214,0 +170778787615,214,0 +170778787664,214,0 +170778787712,214,0 +170778787760,214,0 +170778787808,214,0 +170778787856,214,0 +170778787904,214,0 +170778787952,214,0 +170778788000,213,0 +170778788047,213,0 +170778788095,214,0 +170778788143,213,0 +170778788193,214,0 +170778788242,214,0 +170778788292,214,0 +170778788341,214,0 +170778788389,214,0 +170778788437,214,0 +170778788485,214,0 +170778788533,214,0 +170778788583,214,0 +170778788630,214,0 +170778788680,215,0 +170778788728,214,0 +170778788778,214,0 +170778788825,214,0 +170778788873,213,0 +170778788923,213,0 +170778788971,214,0 +170778789019,214,0 +170778789068,214,0 +170778789118,214,0 +170778789166,214,0 +170778789214,214,0 +170778789261,214,0 +170778789309,214,0 +170778789359,214,0 +170778789408,214,0 +170778789458,214,0 +170778789506,215,0 +170778789554,215,0 +170778789602,214,0 +170778789651,214,0 +170778789699,214,0 +170778789747,214,0 +170778789795,213,0 +170778789845,214,0 +170778789892,214,0 +170778789940,214,0 +170778789988,214,0 +170778790038,214,0 +170778790086,214,0 +170778790135,214,0 +170778790183,214,0 +170778790233,214,0 +170778790280,215,0 +170778790328,215,0 +170778790378,215,0 +170778790426,214,0 +170778790474,214,0 +170778790523,214,0 +170778790573,213,0 +170778790621,214,0 +170778790668,213,0 +170778790716,214,0 +170778790764,214,0 +170778790812,214,0 +170778790862,214,0 +170778790910,214,0 +170778790958,214,0 +170778791007,214,0 +170778791057,214,0 +170778791105,215,0 +170778791153,215,0 +170778791201,215,0 +170778791248,215,0 +170778791296,215,0 +170778791344,215,0 +170778791392,214,0 +170778791440,214,0 +170778791488,214,0 +170778791535,214,0 +170778791583,214,0 +170778791631,214,0 +170778791679,214,0 +170778791727,214,0 +170778791775,214,0 +170778791824,215,0 +170778791872,215,0 +170778791920,215,0 +170778791969,215,0 +170778792017,215,0 +170778792065,215,0 +170778792113,215,0 +170778792161,214,0 +170778792209,215,0 +170778792256,214,0 +170778792304,214,0 +170778792352,214,0 +170778792400,214,0 +170778792448,214,0 +170778792496,214,0 +170778792546,214,0 +170778792595,214,0 +170778792645,214,0 +170778792694,214,0 +170778792742,214,0 +170778792792,214,0 +170778792841,215,0 +170778792889,215,0 +170778792937,214,0 +170778792987,215,0 +170778793036,215,0 +170778793086,214,0 +170778793134,214,0 +170778793182,213,0 +170778793229,213,0 +170778793277,213,0 +170778793325,214,0 +170778793373,214,0 +170778793421,214,0 +170778793469,214,0 +170778793519,214,0 +170778793567,214,0 +170778793615,214,0 +170778793664,214,0 +170778793712,214,0 +170778793760,215,0 +170778793808,214,0 +170778793856,215,0 +170778793904,215,0 +170778793952,215,0 +170778794000,214,0 +170778794048,213,0 +170778794095,213,0 +170778794143,213,0 +170778794191,213,0 +170778794239,214,0 +170778794287,213,0 +170778794335,214,0 +170778794382,214,0 +170778794430,214,0 +170778794478,214,0 +170778794526,214,0 +170778794574,214,0 +170778794622,214,0 +170778794670,214,0 +170778794718,214,0 +170778794768,214,0 +170778794815,215,0 +170778794865,213,0 +170778794914,213,0 +170778794964,213,0 +170778795012,213,0 +170778795061,214,0 +170778795109,214,0 +170778795157,214,0 +170778795205,213,0 +170778795255,214,0 +170778795302,214,0 +170778795350,214,0 +170778795398,214,0 +170778795448,214,0 +170778795496,214,0 +170778795543,214,0 +170778795591,214,0 +170778795641,214,0 +170778795689,214,0 +170778795737,214,0 +170778795785,214,0 +170778795834,214,0 +170778795882,213,0 +170778795930,213,0 +170778795979,214,0 +170778796027,214,0 +170778796077,214,0 +170778796125,214,0 +170778796174,214,0 +170778796222,214,0 +170778796272,214,0 +170778796320,214,0 +170778796368,214,0 +170778796417,215,0 +170778796465,215,0 +170778796513,214,0 +170778796561,214,0 +170778796609,213,0 +170778796659,213,0 +170778796707,214,0 +170778796754,213,0 +170778796802,214,0 +170778796852,214,0 +170778796901,214,0 +170778796949,214,0 +170778796997,214,0 +170778797047,214,0 +170778797095,214,0 +170778797144,214,0 +170778797192,214,0 +170778797242,214,0 +170778797291,214,0 +170778797339,214,0 +170778797387,214,0 +170778797435,214,0 +170778797483,213,0 +170778797531,213,0 +170778797581,213,0 +170778797628,213,0 +170778797676,214,0 +170778797724,214,0 +170778797772,214,0 +170778797820,214,0 +170778797868,214,0 +170778797916,214,0 +170778797964,214,0 +170778798012,214,0 +170778798060,214,0 +170778798110,215,0 +170778798159,214,0 +170778798207,214,0 +170778798255,215,0 +170778798303,214,0 +170778798353,214,0 +170778798402,214,0 +170778798450,214,0 +170778798498,214,0 +170778798546,214,0 +170778798594,214,0 +170778798642,214,0 +170778798689,215,0 +170778798737,214,0 +170778798785,215,0 +170778798835,215,0 +170778798883,215,0 +170778798932,215,0 +170778798982,215,0 +170778799031,215,0 +170778799079,215,0 +170778799127,214,0 +170778799177,214,0 +170778799226,214,0 +170778799274,214,0 +170778799322,214,0 +170778799372,214,0 +170778799421,214,0 +170778799469,214,0 +170778799517,214,0 +170778799567,215,0 +170778799616,215,0 +170778799664,215,0 +170778799712,215,0 +170778799760,214,0 +170778799810,215,0 +170778799859,215,0 +170778799908,215,0 +170778799956,215,0 +170778800004,214,0 +170778800054,214,0 +170778800102,214,0 +170778800152,214,0 +170778800201,214,0 +170778800249,214,0 +170778800297,214,0 +170778800347,214,0 +170778800396,214,0 +170778800444,214,0 +170778800494,214,0 +170778800542,214,0 +170778800590,214,0 +170778800638,214,0 +170778800685,215,0 +170778800735,215,0 +170778800783,214,0 +170778800832,215,0 +170778800880,215,0 +170778800928,214,0 +170778800977,214,0 +170778801025,214,0 +170778801073,214,0 +170778801121,214,0 +170778801169,214,0 +170778801217,214,0 +170778801265,215,0 +170778801313,214,0 +170778801362,215,0 +170778801410,215,0 +170778801458,215,0 +170778801506,215,0 +170778801554,215,0 +170778801602,215,0 +170778801650,214,0 +170778801698,214,0 +170778801747,214,0 +170778801795,214,0 +170778801845,214,0 +170778801893,214,0 +170778801942,214,0 +170778801990,214,0 +170778802039,214,0 +170778802089,214,0 +170778802138,214,0 +170778802188,214,0 +170778802237,214,0 +170778802286,214,0 +170778802335,214,0 +170778802385,215,0 +170778802434,215,0 +170778802482,215,0 +170778802532,215,0 +170778802581,214,0 +170778802629,214,0 +170778802679,214,0 +170778802727,214,0 +170778802776,214,0 +170778802824,214,0 +170778802874,214,0 +170778802922,214,0 +170778802971,214,0 +170778803019,214,0 +170778803067,214,0 +170778803117,214,0 +170778803166,214,0 +170778803215,214,0 +170778803265,214,0 +170778803313,214,0 +170778803361,215,0 +170778803408,214,0 +170778803456,214,0 +170778803504,214,0 +170778803552,214,0 +170778803600,214,0 +170778803648,214,0 +170778803696,214,0 +170778803744,214,0 +170778803792,214,0 +170778803839,214,0 +170778803887,214,0 +170778803935,214,0 +170778803985,214,0 +170778804034,214,0 +170778804082,215,0 +170778804130,215,0 +170778804178,215,0 +170778804226,215,0 +170778804274,214,0 +170778804323,214,0 +170778804373,214,0 +170778804421,213,0 +170778804470,214,0 +170778804518,214,0 +170778804568,214,0 +170778804616,214,0 +170778804665,214,0 +170778804713,214,0 +170778804760,214,0 +170778804808,214,0 +170778804856,214,0 +170778804904,214,0 +170778804952,214,0 +170778805000,215,0 +170778805048,215,0 +170778805095,214,0 +170778805143,214,0 +170778805191,215,0 +170778805239,213,0 +170778805287,213,0 +170778805334,213,0 +170778805384,214,0 +170778805432,214,0 +170778805479,214,0 +170778805527,214,0 +170778805575,214,0 +170778805623,214,0 +170778805671,214,0 +170778805719,214,0 +170778805767,214,0 +170778805815,214,0 +170778805864,214,0 +170778805912,214,0 +170778805960,215,0 +170778806009,214,0 +170778806057,214,0 +170778806105,213,0 +170778806153,213,0 +170778806201,213,0 +170778806248,214,0 +170778806296,214,0 +170778806344,214,0 +170778806392,214,0 +170778806440,214,0 +170778806487,214,0 +170778806535,214,0 +170778806583,214,0 +170778806631,214,0 +170778806679,215,0 +170778806727,215,0 +170778806774,215,0 +170778806822,215,0 +170778806870,214,0 +170778806918,214,0 +170778806966,214,0 +170778807014,213,0 +170778807062,213,0 +170778807110,214,0 +170778807158,214,0 +170778807205,214,0 +170778807253,214,0 +170778807301,214,0 +170778807349,214,0 +170778807397,214,0 +170778807445,214,0 +170778807493,214,0 +170778807540,214,0 +170778807590,214,0 +170778807638,214,0 +170778807685,215,0 +170778807735,215,0 +170778807783,214,0 +170778807830,213,0 +170778807878,213,0 +170778807928,214,0 +170778807977,213,0 +170778808025,214,0 +170778808075,214,0 +170778808124,214,0 +170778808174,214,0 +170778808223,214,0 +170778808271,214,0 +170778808320,214,0 +170778808368,214,0 +170778808416,214,0 +170778808464,215,0 +170778808512,214,0 +170778808560,214,0 +170778808608,215,0 +170778808656,214,0 +170778808705,214,0 +170778808753,213,0 +170778808803,213,0 +170778808851,214,0 +170778808899,213,0 +170778808948,213,0 +170778808998,214,0 +170778809047,214,0 +170778809095,214,0 +170778809144,214,0 +170778809194,214,0 +170778809242,214,0 +170778809290,214,0 +170778809338,214,0 +170778809387,215,0 +170778809437,215,0 +170778809484,214,0 +170778809534,215,0 +170778809583,214,0 +170778809631,214,0 +170778809681,213,0 +170778809729,213,0 +170778809778,213,0 +170778809826,214,0 +170778809874,214,0 +170778809922,214,0 +170778809970,214,0 +170778810018,214,0 +170778810066,214,0 +170778810113,214,0 +170778810161,214,0 +170778810209,214,0 +170778810257,214,0 +170778810306,214,0 +170778810354,214,0 +170778810402,214,0 +170778810451,214,0 +170778810499,214,0 +170778810547,214,0 +170778810595,213,0 +170778810643,213,0 +170778810691,214,0 +170778810738,213,0 +170778810786,213,0 +170778810834,214,0 +170778810884,214,0 +170778810931,214,0 +170778810979,214,0 +170778811027,214,0 +170778811075,214,0 +170778811123,214,0 +170778811171,214,0 +170778811220,214,0 +170778811268,214,0 +170778811316,214,0 +170778811363,214,0 +170778811413,214,0 +170778811461,214,0 +170778811509,214,0 +170778811557,213,0 +170778811606,213,0 +170778811654,213,0 +170778811702,213,0 +170778811749,214,0 +170778811797,213,0 +170778811845,214,0 +170778811895,214,0 +170778811943,214,0 +170778811991,214,0 +170778812040,214,0 +170778812090,214,0 +170778812138,214,0 +170778812186,214,0 +170778812233,214,0 +170778812283,214,0 +170778812331,214,0 +170778812380,214,0 +170778812428,213,0 +170778812478,213,0 +170778812526,213,0 +170778812574,213,0 +170778812623,213,0 +170778812673,213,0 +170778812721,213,0 +170778812769,213,0 +170778812816,213,0 +170778812866,213,0 +170778812916,214,0 +170778812963,214,0 +170778813013,214,0 +170778813061,214,0 +170778813110,214,0 +170778813160,214,0 +170778813209,214,0 +170778813259,214,0 +170778813307,214,0 +170778813356,213,0 +170778813406,213,0 +170778813455,213,0 +170778813503,213,0 +170778813551,213,0 +170778813601,213,0 +170778813649,213,0 +170778813697,213,0 +170778813745,214,0 +170778813793,213,0 +170778813842,214,0 +170778813890,214,0 +170778813938,214,0 +170778813988,214,0 +170778814036,214,0 +170778814085,214,0 +170778814133,214,0 +170778814183,214,0 +170778814232,214,0 +170778814280,214,0 +170778814328,214,0 +170778814376,214,0 +170778814424,213,0 +170778814473,214,0 +170778814521,214,0 +170778814571,214,0 +170778814619,214,0 +170778814667,214,0 +170778814715,214,0 +170778814764,214,0 +170778814812,214,0 +170778814861,214,0 +170778814909,215,0 +170778814959,214,0 +170778815009,214,0 +170778815058,215,0 +170778815106,215,0 +170778815154,214,0 +170778815204,214,0 +170778815251,214,0 +170778815299,214,0 +170778815347,214,0 +170778815397,214,0 +170778815446,214,0 +170778815494,214,0 +170778815542,214,0 +170778815590,214,0 +170778815640,214,0 +170778815688,215,0 +170778815737,215,0 +170778815785,215,0 +170778815835,215,0 +170778815883,215,0 +170778815930,215,0 +170778815978,215,0 +170778816026,215,0 +170778816076,214,0 +170778816125,214,0 +170778816173,214,0 +170778816223,214,0 +170778816271,214,0 +170778816319,214,0 +170778816368,214,0 +170778816416,214,0 +170778816464,214,0 +170778816513,214,0 +170778816563,214,0 +170778816611,214,0 +170778816659,215,0 +170778816707,215,0 +170778816755,214,0 +170778816802,215,0 +170778816850,215,0 +170778816898,215,0 +170778816946,215,0 +170778816994,214,0 +170778817042,214,0 +170778817090,214,0 +170778817140,214,0 +170778817187,214,0 +170778817235,214,0 +170778817285,214,0 +170778817334,214,0 +170778817382,214,0 +170778817430,214,0 +170778817478,214,0 +170778817528,214,0 +170778817577,214,0 +170778817625,214,0 +170778817673,214,0 +170778817723,215,0 +170778817772,215,0 +170778817822,214,0 +170778817869,215,0 +170778817917,214,0 +170778817965,214,0 +170778818015,213,0 +170778818065,214,0 +170778818113,214,0 +170778818161,214,0 +170778818208,214,0 +170778818256,214,0 +170778818306,214,0 +170778818355,214,0 +170778818403,214,0 +170778818451,214,0 +170778818501,214,0 +170778818549,214,0 +170778818597,215,0 +170778818645,215,0 +170778818692,215,0 +170778818740,214,0 +170778818790,215,0 +170778818839,215,0 +170778818887,214,0 +170778818935,213,0 +170778818983,213,0 +170778819033,213,0 +170778819081,213,0 +170778819130,214,0 +170778819178,214,0 +170778819226,214,0 +170778819275,214,0 +170778819323,213,0 +170778819371,214,0 +170778819421,214,0 +170778819470,214,0 +170778819520,214,0 +170778819568,214,0 +170778819616,214,0 +170778819664,214,0 +170778819712,214,0 +170778819760,214,0 +170778819809,214,0 +170778819859,214,0 +170778819906,213,0 +170778819954,213,0 +170778820002,213,0 +170778820050,213,0 +170778820098,214,0 +170778820148,214,0 +170778820196,214,0 +170778820244,214,0 +170778820293,214,0 +170778820341,214,0 +170778820391,214,0 +170778820439,214,0 +170778820488,214,0 +170778820538,215,0 +170778820586,214,0 +170778820633,214,0 +170778820681,214,0 +170778820729,214,0 +170778820777,214,0 +170778820825,213,0 +170778820873,214,0 +170778820921,213,0 +170778820969,213,0 +170778821016,213,0 +170778821064,213,0 +170778821112,214,0 +170778821162,214,0 +170778821210,214,0 +170778821257,214,0 +170778821305,214,0 +170778821353,214,0 +170778821401,214,0 +170778821449,214,0 +170778821496,214,0 +170778821544,215,0 +170778821594,214,0 +170778821642,214,0 +170778821689,215,0 +170778821737,213,0 +170778821785,213,0 +170778821835,213,0 +170778821882,213,0 +170778821930,214,0 +170778821978,214,0 +170778822026,214,0 +170778822074,214,0 +170778822122,214,0 +170778822170,214,0 +170778822218,214,0 +170778822265,214,0 +170778822313,214,0 +170778822361,215,0 +170778822411,214,0 +170778822460,214,0 +170778822508,215,0 +170778822558,214,0 +170778822606,214,0 +170778822655,214,0 +170778822705,214,0 +170778822753,213,0 +170778822801,213,0 +170778822850,214,0 +170778822898,214,0 +170778822946,214,0 +170778822996,214,0 +170778823043,214,0 +170778823091,214,0 +170778823139,214,0 +170778823189,214,0 +170778823237,214,0 +170778823285,215,0 +170778823333,215,0 +170778823382,215,0 +170778823432,215,0 +170778823480,214,0 +170778823528,214,0 +170778823577,214,0 +170778823625,213,0 +170778823675,213,0 +170778823723,213,0 +170778823772,214,0 +170778823820,214,0 +170778823868,214,0 +170778823916,214,0 +170778823964,214,0 +170778824011,214,0 +170778824059,214,0 +170778824107,214,0 +170778824155,214,0 +170778824203,215,0 +170778824251,214,0 +170778824300,214,0 +170778824348,215,0 +170778824396,215,0 +170778824443,215,0 +170778824491,214,0 +170778824539,213,0 +170778824587,213,0 +170778824635,213,0 +170778824683,214,0 +170778824731,214,0 +170778824778,214,0 +170778824826,214,0 +170778824874,214,0 +170778824922,214,0 +170778824970,214,0 +170778825017,214,0 +170778825065,214,0 +170778825113,214,0 +170778825161,214,0 +170778825210,215,0 +170778825258,215,0 +170778825306,214,0 +170778825354,214,0 +170778825404,214,0 +170778825453,213,0 +170778825503,213,0 +170778825551,213,0 +170778825599,213,0 +170778825646,213,0 +170778825694,213,0 +170778825742,213,0 +170778825790,214,0 +170778825838,214,0 +170778825888,214,0 +170778825936,214,0 +170778825985,214,0 +170778826033,214,0 +170778826081,214,0 +170778826128,214,0 +170778826176,214,0 +170778826224,214,0 +170778826274,214,0 +170778826323,214,0 +170778826371,213,0 +170778826418,213,0 +170778826466,213,0 +170778826514,213,0 +170778826562,213,0 +170778826610,213,0 +170778826658,213,0 +170778826705,213,0 +170778826755,213,0 +170778826803,213,0 +170778826851,213,0 +170778826899,214,0 +170778826947,213,0 +170778826994,214,0 +170778827042,214,0 +170778827090,214,0 +170778827138,214,0 +170778827186,214,0 +170778827234,214,0 +170778827281,214,0 +170778827329,213,0 +170778827379,213,0 +170778827427,213,0 +170778827476,213,0 +170778827526,213,0 +170778827575,213,0 +170778827623,213,0 +170778827671,214,0 +170778827719,214,0 +170778827767,214,0 +170778827815,214,0 +170778827863,214,0 +170778827912,214,0 +170778827960,214,0 +170778828008,214,0 +170778828056,214,0 +170778828106,214,0 +170778828155,214,0 +170778828203,214,0 +170778828251,213,0 +170778828299,213,0 +170778828347,213,0 +170778828395,213,0 +170778828443,213,0 +170778828490,214,0 +170778828540,214,0 +170778828588,214,0 +170778828636,214,0 +170778828685,214,0 +170778828733,214,0 +170778828781,214,0 +170778828829,214,0 +170778828877,214,0 +170778828925,215,0 +170778828973,214,0 +170778829021,214,0 +170778829069,215,0 +170778829116,214,0 +170778829164,214,0 +170778829212,214,0 +170778829260,214,0 +170778829308,214,0 +170778829356,214,0 +170778829404,214,0 +170778829451,214,0 +170778829501,214,0 +170778829549,214,0 +170778829598,214,0 +170778829646,214,0 +170778829694,214,0 +170778829743,214,0 +170778829793,214,0 +170778829841,215,0 +170778829889,215,0 +170778829937,215,0 +170778829985,215,0 +170778830032,215,0 +170778830082,214,0 +170778830131,213,0 +170778830179,214,0 +170778830227,214,0 +170778830275,214,0 +170778830325,214,0 +170778830373,214,0 +170778830421,214,0 +170778830470,214,0 +170778830518,214,0 +170778830566,214,0 +170778830614,214,0 +170778830662,214,0 +170778830710,215,0 +170778830758,215,0 +170778830806,215,0 +170778830856,215,0 +170778830905,215,0 +170778830953,215,0 +170778831003,214,0 +170778831050,214,0 +170778831098,214,0 +170778831148,214,0 +170778831196,214,0 +170778831244,214,0 +170778831293,214,0 +170778831341,214,0 +170778831389,214,0 +170778831437,214,0 +170778831485,214,0 +170778831533,214,0 +170778831581,214,0 +170778831629,214,0 +170778831677,215,0 +170778831726,215,0 +170778831776,214,0 +170778831824,215,0 +170778831871,215,0 +170778831921,214,0 +170778831970,213,0 +170778832018,213,0 +170778832068,213,0 +170778832116,214,0 +170778832164,214,0 +170778832213,214,0 +170778832261,214,0 +170778832310,214,0 +170778832360,214,0 +170778832409,214,0 +170778832459,214,0 +170778832507,214,0 +170778832556,214,0 +170778832606,214,0 +170778832654,214,0 +170778832701,215,0 +170778832749,215,0 +170778832797,214,0 +170778832845,214,0 +170778832893,214,0 +170778832941,213,0 +170778832989,213,0 +170778833037,213,0 +170778833085,214,0 +170778833134,214,0 +170778833182,213,0 +170778833230,214,0 +170778833278,214,0 +170778833328,214,0 +170778833376,214,0 +170778833423,214,0 +170778833471,214,0 +170778833519,214,0 +170778833567,214,0 +170778833615,214,0 +170778833663,214,0 +170778833711,215,0 +170778833760,214,0 +170778833810,214,0 +170778833857,213,0 +170778833905,213,0 +170778833953,213,0 +170778834001,213,0 +170778834049,213,0 +170778834096,213,0 +170778834144,213,0 +170778834192,213,0 +170778834241,213,0 +170778834289,213,0 +170778834337,214,0 +170778834386,214,0 +170778834434,214,0 +170778834482,214,0 +170778834530,214,0 +170778834578,214,0 +170778834626,214,0 +170778834673,214,0 +170778834723,214,0 +170778834771,213,0 +170778834820,213,0 +170778834868,213,0 +170778834916,213,0 +170778834965,213,0 +170778835013,213,0 +170778835061,214,0 +170778835109,213,0 +170778835159,214,0 +170778835207,214,0 +170778835256,214,0 +170778835304,213,0 +170778835354,214,0 +170778835401,214,0 +170778835449,214,0 +170778835499,214,0 +170778835547,214,0 +170778835596,214,0 +170778835646,214,0 +170778835694,213,0 +170778835743,213,0 +170778835791,213,0 +170778835839,213,0 +170778835888,214,0 +170778835938,213,0 +170778835986,214,0 +170778836034,214,0 +170778836082,214,0 +170778836130,214,0 +170778836178,214,0 +170778836226,214,0 +170778836273,214,0 +170778836321,214,0 +170778836369,215,0 +170778836417,214,0 +170778836465,215,0 +170778836513,215,0 +170778836563,214,0 +170778836611,214,0 +170778836659,213,0 +170778836708,213,0 +170778836758,214,0 +170778836806,214,0 +170778836854,214,0 +170778836903,214,0 +170778836953,214,0 +170778837002,214,0 +170778837051,214,0 +170778837101,214,0 +170778837149,214,0 +170778837197,214,0 +170778837245,215,0 +170778837293,215,0 +170778837342,215,0 +170778837390,214,0 +170778837438,215,0 +170778837486,214,0 +170778837536,214,0 +170778837584,214,0 +170778837631,214,0 +170778837679,214,0 +170778837729,214,0 +170778837777,214,0 +170778837825,214,0 +170778837874,214,0 +170778837922,214,0 +170778837971,214,0 +170778838019,214,0 +170778838069,215,0 +170778838117,215,0 +170778838165,215,0 +170778838214,215,0 +170778838264,215,0 +170778838313,214,0 +170778838361,215,0 +170778838409,214,0 +170778838457,213,0 +170778838506,213,0 +170778838554,214,0 +170778838604,213,0 +170778838652,213,0 +170778838700,214,0 +170778838749,213,0 +170778838799,214,0 +170778838847,214,0 +170778838896,214,0 +170778838946,214,0 +170778838993,214,0 +170778839043,214,0 +170778839091,214,0 +170778839139,214,0 +170778839188,214,0 +170778839238,215,0 +170778839287,215,0 +170778839335,215,0 +170778839383,214,0 +170778839431,213,0 +170778839479,214,0 +170778839529,214,0 +170778839578,214,0 +170778839628,214,0 +170778839676,214,0 +170778839724,214,0 +170778839773,214,0 +170778839821,214,0 +170778839869,214,0 +170778839917,214,0 +170778839967,214,0 +170778840015,214,0 +170778840063,215,0 +170778840111,215,0 +170778840160,214,0 +170778840208,215,0 +170778840257,214,0 +170778840305,214,0 +170778840355,213,0 +170778840403,213,0 +170778840451,214,0 +170778840499,214,0 +170778840548,214,0 +170778840598,214,0 +170778840646,214,0 +170778840695,214,0 +170778840743,214,0 +170778840793,214,0 +170778840842,214,0 +170778840890,214,0 +170778840938,214,0 +170778840986,214,0 +170778841036,214,0 +170778841083,214,0 +170778841133,214,0 +170778841182,214,0 +170778841232,215,0 +170778841281,213,0 +170778841329,213,0 +170778841377,213,0 +170778841425,213,0 +170778841473,213,0 +170778841521,213,0 +170778841569,213,0 +170778841619,214,0 +170778841667,214,0 +170778841716,214,0 +170778841764,214,0 +170778841812,214,0 +170778841860,214,0 +170778841908,214,0 +170778841956,214,0 +170778842005,214,0 +170778842055,214,0 +170778842104,214,0 +170778842152,214,0 +170778842200,213,0 +170778842248,213,0 +170778842298,213,0 +170778842347,213,0 +170778842395,213,0 +170778842443,213,0 +170778842491,213,0 +170778842539,213,0 +170778842588,213,0 +170778842638,214,0 +170778842686,213,0 +170778842734,214,0 +170778842782,214,0 +170778842831,214,0 +170778842879,214,0 +170778842927,214,0 +170778842975,214,0 +170778843023,214,0 +170778843072,214,0 +170778843122,214,0 +170778843170,213,0 +170778843218,213,0 +170778843267,213,0 +170778843317,214,0 +170778843364,214,0 +170778843412,214,0 +170778843460,214,0 +170778843508,214,0 +170778843558,214,0 +170778843607,214,0 +170778843657,214,0 +170778843706,214,0 +170778843756,214,0 +170778843804,214,0 +170778843853,214,0 +170778843901,214,0 +170778843949,214,0 +170778843999,214,0 +170778844047,214,0 +170778844095,213,0 +170778844143,214,0 +170778844191,213,0 +170778844240,214,0 +170778844288,214,0 +170778844336,214,0 +170778844384,214,0 +170778844432,214,0 +170778844480,214,0 +170778844528,214,0 +170778844577,214,0 +170778844627,214,0 +170778844676,214,0 +170778844724,214,0 +170778844772,214,0 +170778844820,214,0 +170778844868,214,0 +170778844916,214,0 +170778844966,214,0 +170778845014,214,0 +170778845063,214,0 +170778845113,213,0 +170778845161,214,0 +170778845209,214,0 +170778845256,214,0 +170778845304,214,0 +170778845352,214,0 +170778845402,214,0 +170778845450,214,0 +170778845498,214,0 +170778845545,214,0 +170778845593,214,0 +170778845641,215,0 +170778845689,214,0 +170778845737,214,0 +170778845785,214,0 +170778845833,215,0 +170778845882,214,0 +170778845932,214,0 +170778845980,213,0 +170778846028,214,0 +170778846075,214,0 +170778846123,214,0 +170778846173,214,0 +170778846221,214,0 +170778846269,214,0 +170778846317,214,0 +170778846365,214,0 +170778846414,215,0 +170778846464,214,0 +170778846512,214,0 +170778846560,214,0 +170778846608,215,0 +170778846657,214,0 +170778846705,214,0 +170778846755,215,0 +170778846803,215,0 +170778846852,214,0 +170778846900,214,0 +170778846948,213,0 +170778846996,214,0 +170778847046,214,0 +170778847095,214,0 +170778847145,214,0 +170778847193,214,0 +170778847241,214,0 +170778847290,214,0 +170778847340,214,0 +170778847389,214,0 +170778847439,214,0 +170778847487,214,0 +170778847534,215,0 +170778847582,215,0 +170778847630,215,0 +170778847678,215,0 +170778847726,214,0 +170778847776,214,0 +170778847824,213,0 +170778847873,214,0 +170778847921,213,0 +170778847969,214,0 +170778848018,214,0 +170778848066,214,0 +170778848114,214,0 +170778848162,214,0 +170778848210,214,0 +170778848260,214,0 +170778848309,214,0 +170778848359,214,0 +170778848406,214,0 +170778848454,215,0 +170778848502,214,0 +170778848550,215,0 +170778848598,215,0 +170778848646,215,0 +170778848694,214,0 +170778848743,213,0 +170778848791,213,0 +170778848839,214,0 +170778848888,214,0 +170778848938,213,0 +170778848987,214,0 +170778849035,214,0 +170778849083,214,0 +170778849131,214,0 +170778849179,214,0 +170778849228,214,0 +170778849276,214,0 +170778849324,214,0 +170778849372,214,0 +170778849420,214,0 +170778849470,214,0 +170778849518,215,0 +170778849565,215,0 +170778849613,214,0 +170778849663,213,0 +170778849711,213,0 +170778849760,213,0 +170778849808,213,0 +170778849856,213,0 +170778849906,214,0 +170778849955,213,0 +170778850005,214,0 +170778850054,214,0 +170778850104,214,0 +170778850152,214,0 +170778850200,214,0 +170778850247,214,0 +170778850295,214,0 +170778850343,214,0 +170778850391,215,0 +170778850439,215,0 +170778850487,214,0 +170778850535,214,0 +170778850582,213,0 +170778850630,213,0 +170778850680,213,0 +170778850729,213,0 +170778850777,213,0 +170778850827,213,0 +170778850875,214,0 +170778850924,214,0 +170778850974,214,0 +170778851022,214,0 +170778851070,214,0 +170778851119,214,0 +170778851167,214,0 +170778851215,214,0 +170778851263,214,0 +170778851311,214,0 +170778851361,215,0 +170778851409,215,0 +170778851456,214,0 +170778851506,213,0 +170778851555,213,0 +170778851605,213,0 +170778851653,213,0 +170778851702,213,0 +170778851750,213,0 +170778851798,213,0 +170778851848,214,0 +170778851897,213,0 +170778851945,214,0 +170778851995,214,0 +170778852044,214,0 +170778852092,214,0 +170778852142,214,0 +170778852189,214,0 +170778852237,214,0 +170778852285,214,0 +170778852333,214,0 +170778852381,214,0 +170778852429,214,0 +170778852477,213,0 +170778852525,213,0 +170778852573,213,0 +170778852621,214,0 +170778852671,213,0 +170778852719,214,0 +170778852768,213,0 +170778852816,214,0 +170778852864,213,0 +170778852912,214,0 +170778852960,214,0 +170778853009,214,0 +170778853057,214,0 +170778853107,214,0 +170778853155,214,0 +170778853204,214,0 +170778853252,214,0 +170778853302,214,0 +170778853350,214,0 +170778853399,213,0 +170778853447,213,0 +170778853495,213,0 +170778853543,213,0 +170778853591,213,0 +170778853639,214,0 +170778853687,214,0 +170778853736,214,0 +170778853784,214,0 +170778853833,214,0 +170778853881,214,0 +170778853930,214,0 +170778853978,214,0 +170778854026,214,0 +170778854074,214,0 +170778854122,214,0 +170778854170,214,0 +170778854218,214,0 +170778854266,214,0 +170778854315,213,0 +170778854365,213,0 +170778854414,213,0 +170778854462,213,0 +170778854510,213,0 +170778854558,213,0 +170778854606,214,0 +170778854654,214,0 +170778854702,214,0 +170778854751,214,0 +170778854801,214,0 +170778854849,214,0 +170778854898,214,0 +170778854948,214,0 +170778854996,214,0 +170778855045,214,0 +170778855095,214,0 +170778855143,214,0 +170778855191,215,0 +170778855238,214,0 +170778855288,213,0 +170778855338,213,0 +170778855387,213,0 +170778855435,213,0 +170778855484,213,0 +170778855532,213,0 +170778855582,213,0 +170778855631,213,0 +170778855679,213,0 +170778855729,213,0 +170778855777,214,0 +170778855825,214,0 +170778855873,213,0 +170778855922,213,0 +170778855970,213,0 +170778856018,214,0 +170778856066,214,0 +170778856114,214,0 +170778856162,214,0 +170778856209,213,0 +170778856257,213,0 +170778856305,213,0 +170778856353,214,0 +170778856401,214,0 +170778856448,213,0 +170778856496,213,0 +170778856544,214,0 +170778856592,214,0 +170778856640,214,0 +170778856688,214,0 +170778856736,214,0 +170778856784,214,0 +170778856834,214,0 +170778856881,214,0 +170778856929,214,0 +170778856977,215,0 +170778857025,215,0 +170778857075,214,0 +170778857123,213,0 +170778857171,213,0 +170778857219,213,0 +170778857266,213,0 +170778857314,214,0 +170778857363,214,0 +170778857411,214,0 +170778857459,214,0 +170778857507,214,0 +170778857555,214,0 +170778857603,214,0 +170778857651,215,0 +170778857699,215,0 +170778857746,214,0 +170778857794,215,0 +170778857842,215,0 +170778857890,214,0 +170778857939,214,0 +170778857987,214,0 +170778858035,213,0 +170778858082,214,0 +170778858130,214,0 +170778858178,214,0 +170778858226,214,0 +170778858274,214,0 +170778858322,214,0 +170778858369,214,0 +170778858417,214,0 +170778858465,214,0 +170778858513,214,0 +170778858561,214,0 +170778858609,214,0 +170778858657,214,0 +170778858706,214,0 +170778858754,215,0 +170778858802,215,0 +170778858852,214,0 +170778858900,214,0 +170778858948,214,0 +170778858995,213,0 +170778859043,214,0 +170778859091,214,0 +170778859139,214,0 +170778859187,214,0 +170778859234,214,0 +170778859282,214,0 +170778859330,214,0 +170778859378,214,0 +170778859426,214,0 +170778859475,214,0 +170778859525,215,0 +170778859573,214,0 +170778859621,214,0 +170778859670,214,0 +170778859718,215,0 +170778859768,215,0 +170778859816,215,0 +170778859864,214,0 +170778859913,214,0 +170778859961,214,0 +170778860011,214,0 +170778860059,214,0 +170778860108,214,0 +170778860156,214,0 +170778860204,214,0 +170778860254,214,0 +170778860302,214,0 +170778860349,214,0 +170778860397,214,0 +170778860445,214,0 +170778860493,214,0 +170778860543,214,0 +170778860591,214,0 +170778860640,214,0 +170778860690,214,0 +170778860738,215,0 +170778860786,214,0 +170778860835,214,0 +170778860883,214,0 +170778860931,214,0 +170778860980,214,0 +170778861028,214,0 +170778861078,214,0 +170778861126,214,0 +170778861174,214,0 +170778861222,214,0 +170778861271,214,0 +170778861321,214,0 +170778861369,214,0 +170778861417,215,0 +170778861465,215,0 +170778861513,215,0 +170778861561,214,0 +170778861610,215,0 +170778861658,214,0 +170778861707,215,0 +170778861755,214,0 +170778861803,214,0 +170778861851,214,0 +170778861899,214,0 +170778861947,214,0 +170778861995,214,0 +170778862043,214,0 +170778862093,214,0 +170778862140,214,0 +170778862188,214,0 +170778862236,214,0 +170778862284,214,0 +170778862334,215,0 +170778862383,214,0 +170778862431,215,0 +170778862479,215,0 +170778862528,215,0 +170778862576,215,0 +170778862624,215,0 +170778862674,214,0 +170778862723,213,0 +170778862771,213,0 +170778862821,214,0 +170778862868,214,0 +170778862918,214,0 +170778862966,214,0 +170778863015,214,0 +170778863065,214,0 +170778863113,214,0 +170778863161,214,0 +170778863210,214,0 +170778863258,214,0 +170778863306,214,0 +170778863354,214,0 +170778863402,215,0 +170778863450,215,0 +170778863498,215,0 +170778863547,214,0 +170778863597,214,0 +170778863645,213,0 +170778863694,213,0 +170778863744,214,0 +170778863793,214,0 +170778863841,214,0 +170778863889,214,0 +170778863937,214,0 +170778863986,214,0 +170778864036,214,0 +170778864085,214,0 +170778864133,214,0 +170778864181,214,0 +170778864230,215,0 +170778864280,215,0 +170778864328,214,0 +170778864376,215,0 +170778864425,215,0 +170778864475,214,0 +170778864523,214,0 +170778864571,213,0 +170778864619,213,0 +170778864666,213,0 +170778864714,214,0 +170778864762,214,0 +170778864810,214,0 +170778864859,214,0 +170778864907,214,0 +170778864955,214,0 +170778865003,214,0 +170778865053,214,0 +170778865102,214,0 +170778865150,215,0 +170778865198,215,0 +170778865248,214,0 +170778865297,214,0 +170778865345,214,0 +170778865393,215,0 +170778865441,214,0 +170778865489,213,0 +170778865537,213,0 +170778865585,213,0 +170778865633,213,0 +170778865682,213,0 +170778865730,214,0 +170778865778,214,0 +170778865827,214,0 +170778865875,214,0 +170778865923,214,0 +170778865971,214,0 +170778866021,214,0 +170778866069,214,0 +170778866117,214,0 +170778866165,214,0 +170778866213,214,0 +170778866262,214,0 +170778866312,214,0 +170778866360,214,0 +170778866407,214,0 +170778866457,213,0 +170778866505,213,0 +170778866553,213,0 +170778866601,213,0 +170778866650,213,0 +170778866700,213,0 +170778866749,213,0 +170778866799,214,0 +170778866848,214,0 +170778866898,214,0 +170778866946,214,0 +170778866993,214,0 +170778867043,214,0 +170778867091,214,0 +170778867139,214,0 +170778867187,214,0 +170778867235,214,0 +170778867284,214,0 +170778867334,214,0 +170778867383,213,0 +170778867431,213,0 +170778867479,213,0 +170778867527,213,0 +170778867575,213,0 +170778867623,213,0 +170778867671,213,0 +170778867719,213,0 +170778867767,213,0 +170778867815,213,0 +170778867863,213,0 +170778867911,214,0 +170778867959,214,0 +170778868007,214,0 +170778868055,214,0 +170778868104,214,0 +170778868152,214,0 +170778868202,214,0 +170778868250,214,0 +170778868298,213,0 +170778868345,213,0 +170778868393,213,0 +170778868441,213,0 +170778868489,213,0 +170778868537,213,0 +170778868587,214,0 +170778868635,214,0 +170778868684,214,0 +170778868734,214,0 +170778868782,214,0 +170778868830,214,0 +170778868879,214,0 +170778868927,214,0 +170778868975,214,0 +170778869025,214,0 +170778869073,214,0 +170778869121,215,0 +170778869170,215,0 +170778869218,213,0 +170778869266,214,0 +170778869315,214,0 +170778869365,213,0 +170778869414,214,0 +170778869462,213,0 +170778869512,213,0 +170778869560,214,0 +170778869609,214,0 +170778869657,214,0 +170778869705,214,0 +170778869755,214,0 +170778869804,214,0 +170778869852,214,0 +170778869900,214,0 +170778869948,214,0 +170778869997,214,0 +170778870045,215,0 +170778870093,214,0 +170778870141,214,0 +170778870189,213,0 +170778870237,214,0 +170778870285,214,0 +170778870333,214,0 +170778870381,213,0 +170778870430,214,0 +170778870478,214,0 +170778870528,214,0 +170778870577,214,0 +170778870627,214,0 +170778870676,214,0 +170778870724,214,0 +170778870772,214,0 +170778870822,214,0 +170778870870,215,0 +170778870919,215,0 +170778870969,215,0 +170778871017,214,0 +170778871065,214,0 +170778871114,213,0 +170778871164,213,0 +170778871211,213,0 +170778871261,214,0 +170778871309,214,0 +170778871357,214,0 +170778871406,214,0 +170778871454,214,0 +170778871502,214,0 +170778871550,214,0 +170778871599,214,0 +170778871647,214,0 +170778871697,214,0 +170778871746,214,0 +170778871794,215,0 +170778871844,214,0 +170778871892,215,0 +170778871940,215,0 +170778871988,214,0 +170778872037,214,0 +170778872087,213,0 +170778872136,214,0 +170778872186,214,0 +170778872233,213,0 +170778872283,214,0 +170778872331,214,0 +170778872380,214,0 +170778872428,214,0 +170778872476,214,0 +170778872524,214,0 +170778872574,214,0 +170778872622,214,0 +170778872671,214,0 +170778872719,215,0 +170778872769,214,0 +170778872816,215,0 +170778872864,214,0 +170778872912,215,0 +170778872960,214,0 +170778873008,214,0 +170778873056,214,0 +170778873104,214,0 +170778873152,213,0 +170778873200,214,0 +170778873248,214,0 +170778873297,214,0 +170778873345,214,0 +170778873393,214,0 +170778873441,214,0 +170778873489,214,0 +170778873537,214,0 +170778873585,215,0 +170778873633,215,0 +170778873683,214,0 +170778873732,214,0 +170778873780,214,0 +170778873828,214,0 +170778873877,214,0 +170778873925,214,0 +170778873973,214,0 +170778874023,214,0 +170778874071,214,0 +170778874120,214,0 +170778874170,214,0 +170778874218,214,0 +170778874266,214,0 +170778874315,214,0 +170778874363,214,0 +170778874413,214,0 +170778874462,214,0 +170778874510,215,0 +170778874558,215,0 +170778874606,214,0 +170778874654,214,0 +170778874704,215,0 +170778874752,215,0 +170778874800,214,0 +170778874849,213,0 +170778874897,213,0 +170778874945,214,0 +170778874995,214,0 +170778875043,214,0 +170778875090,214,0 +170778875138,214,0 +170778875186,214,0 +170778875236,214,0 +170778875284,214,0 +170778875332,214,0 +170778875381,214,0 +170778875429,215,0 +170778875477,215,0 +170778875527,215,0 +170778875574,215,0 +170778875624,215,0 +170778875672,215,0 +170778875720,214,0 +170778875768,214,0 +170778875816,214,0 +170778875864,214,0 +170778875911,214,0 +170778875961,214,0 +170778876009,214,0 +170778876057,214,0 +170778876105,214,0 +170778876154,214,0 +170778876202,214,0 +170778876250,214,0 +170778876300,215,0 +170778876348,214,0 +170778876397,214,0 +170778876445,215,0 +170778876495,215,0 +170778876542,215,0 +170778876592,215,0 +170778876642,214,0 +170778876691,214,0 +170778876741,214,0 +170778876789,213,0 +170778876837,213,0 +170778876885,214,0 +170778876934,214,0 +170778876982,214,0 +170778877030,214,0 +170778877078,214,0 +170778877127,214,0 +170778877175,214,0 +170778877225,215,0 +170778877273,215,0 +170778877321,214,0 +170778877369,215,0 +170778877418,215,0 +170778877466,215,0 +170778877516,215,0 +170778877565,214,0 +170778877613,213,0 +170778877663,213,0 +170778877712,214,0 +170778877762,214,0 +170778877811,214,0 +170778877861,214,0 +170778877909,214,0 +170778877958,214,0 +170778878008,214,0 +170778878056,214,0 +170778878104,214,0 +170778878152,214,0 +170778878200,214,0 +170778878249,214,0 +170778878299,214,0 +170778878347,215,0 +170778878395,214,0 +170778878443,215,0 +170778878491,214,0 +170778878539,213,0 +170778878587,213,0 +170778878634,214,0 +170778878682,213,0 +170778878732,214,0 +170778878781,214,0 +170778878831,214,0 +170778878880,214,0 +170778878930,214,0 +170778878980,214,0 +170778879027,214,0 +170778879077,214,0 +170778879125,214,0 +170778879173,215,0 +170778879222,215,0 +170778879270,215,0 +170778879320,215,0 +170778879368,215,0 +170778879416,214,0 +170778879465,214,0 +170778879515,213,0 +170778879564,213,0 +170778879614,213,0 +170778879662,214,0 +170778879710,213,0 +170778879759,214,0 +170778879809,214,0 +170778879857,214,0 +170778879906,214,0 +170778879954,214,0 +170778880002,214,0 +170778880052,214,0 +170778880102,214,0 +170778880149,214,0 +170778880199,214,0 +170778880248,214,0 +170778880296,214,0 +170778880344,214,0 +170778880392,214,0 +170778880440,213,0 +170778880488,213,0 +170778880538,214,0 +170778880586,214,0 +170778880634,214,0 +170778880682,214,0 +170778880731,214,0 +170778880781,214,0 +170778880830,214,0 +170778880878,214,0 +170778880926,214,0 +170778880974,214,0 +170778881022,214,0 +170778881070,215,0 +170778881118,214,0 +170778881167,215,0 +170778881217,215,0 +170778881266,215,0 +170778881314,214,0 +170778881364,214,0 +170778881413,214,0 +170778881463,214,0 +170778881511,214,0 +170778881560,214,0 +170778881610,214,0 +170778881659,214,0 +170778881709,214,0 +170778881757,214,0 +170778881806,214,0 +170778881854,214,0 +170778881902,214,0 +170778881950,215,0 +170778881998,215,0 +170778882048,215,0 +170778882097,214,0 +170778882145,215,0 +170778882194,215,0 +170778882242,214,0 +170778882292,213,0 +170778882341,213,0 +170778882389,214,0 +170778882437,214,0 +170778882485,214,0 +170778882533,213,0 +170778882581,214,0 +170778882631,214,0 +170778882679,214,0 +170778882727,214,0 +170778882775,214,0 +170778882824,214,0 +170778882872,215,0 +170778882922,214,0 +170778882970,214,0 +170778883017,214,0 +170778883067,214,0 +170778883115,214,0 +170778883163,215,0 +170778883212,214,0 +170778883262,213,0 +170778883310,214,0 +170778883358,214,0 +170778883407,214,0 +170778883455,214,0 +170778883503,214,0 +170778883551,214,0 +170778883599,214,0 +170778883647,214,0 +170778883697,214,0 +170778883745,214,0 +170778883792,214,0 +170778883840,214,0 +170778883888,214,0 +170778883938,214,0 +170778883987,215,0 +170778884035,215,0 +170778884084,214,0 +170778884132,214,0 +170778884180,213,0 +170778884228,213,0 +170778884276,214,0 +170778884324,214,0 +170778884372,214,0 +170778884419,214,0 +170778884467,214,0 +170778884515,214,0 +170778884563,214,0 +170778884612,214,0 +170778884660,214,0 +170778884708,214,0 +170778884756,214,0 +170778884804,214,0 +170778884852,214,0 +170778884899,214,0 +170778884947,215,0 +170778884995,215,0 +170778885043,214,0 +170778885091,213,0 +170778885139,213,0 +170778885186,213,0 +170778885234,213,0 +170778885282,213,0 +170778885330,214,0 +170778885378,214,0 +170778885426,214,0 +170778885473,214,0 +170778885521,214,0 +170778885571,214,0 +170778885619,214,0 +170778885666,214,0 +170778885716,214,0 +170778885764,214,0 +170778885811,214,0 +170778885859,214,0 +170778885907,214,0 +170778885955,215,0 +170778886003,214,0 +170778886050,214,0 +170778886098,213,0 +170778886146,213,0 +170778886194,213,0 +170778886241,213,0 +170778886289,213,0 +170778886337,214,0 +170778886385,214,0 +170778886433,214,0 +170778886480,214,0 +170778886528,214,0 +170778886576,214,0 +170778886626,214,0 +170778886675,214,0 +170778886723,214,0 +170778886771,214,0 +170778886820,214,0 +170778886868,214,0 +170778886916,214,0 +170778886964,213,0 +170778887013,213,0 +170778887063,213,0 +170778887110,213,0 +170778887158,214,0 +170778887206,214,0 +170778887254,214,0 +170778887303,214,0 +170778887351,214,0 +170778887399,214,0 +170778887447,214,0 +170778887495,214,0 +170778887542,214,0 +170778887590,214,0 +170778887638,214,0 +170778887686,214,0 +170778887734,214,0 +170778887782,214,0 +170778887830,214,0 +170778887877,213,0 +170778887925,214,0 +170778887973,213,0 +170778888021,213,0 +170778888069,214,0 +170778888118,214,0 +170778888166,214,0 +170778888214,214,0 +170778888262,214,0 +170778888310,214,0 +170778888359,214,0 +170778888407,214,0 +170778888455,214,0 +170778888504,214,0 +170778888552,214,0 +170778888600,214,0 +170778888648,214,0 +170778888697,214,0 +170778888745,215,0 +170778888793,213,0 +170778888841,213,0 +170778888889,213,0 +170778888936,214,0 +170778888984,213,0 +170778889034,214,0 +170778889081,213,0 +170778889129,214,0 +170778889177,214,0 +170778889225,214,0 +170778889273,214,0 +170778889321,214,0 +170778889370,214,0 +170778889418,214,0 +170778889466,214,0 +170778889514,215,0 +170778889563,214,0 +170778889611,215,0 +170778889659,214,0 +170778889707,214,0 +170778889756,214,0 +170778889804,213,0 +170778889852,214,0 +170778889901,214,0 +170778889949,214,0 +170778889997,214,0 +170778890045,214,0 +170778890092,214,0 +170778890140,214,0 +170778890188,214,0 +170778890236,214,0 +170778890284,214,0 +170778890333,215,0 +170778890383,214,0 +170778890431,215,0 +170778890480,215,0 +170778890530,215,0 +170778890578,214,0 +170778890626,214,0 +170778890674,213,0 +170778890722,213,0 +170778890770,213,0 +170778890818,214,0 +170778890866,214,0 +170778890913,214,0 +170778890963,214,0 +170778891013,214,0 +170778891062,214,0 +170778891110,214,0 +170778891159,214,0 +170778891209,214,0 +170778891257,214,0 +170778891305,214,0 +170778891354,215,0 +170778891404,215,0 +170778891452,215,0 +170778891500,214,0 +170778891548,214,0 +170778891596,214,0 +170778891644,213,0 +170778891693,214,0 +170778891741,214,0 +170778891789,214,0 +170778891837,214,0 +170778891886,214,0 +170778891934,214,0 +170778891984,214,0 +170778892032,214,0 +170778892080,214,0 +170778892128,214,0 +170778892176,214,0 +170778892224,214,0 +170778892271,215,0 +170778892319,215,0 +170778892367,214,0 +170778892417,214,0 +170778892465,214,0 +170778892514,214,0 +170778892562,213,0 +170778892610,213,0 +170778892660,213,0 +170778892708,213,0 +170778892757,213,0 +170778892805,214,0 +170778892853,213,0 +170778892902,213,0 +170778892950,214,0 +170778893000,214,0 +170778893049,214,0 +170778893097,214,0 +170778893145,214,0 +170778893195,214,0 +170778893244,214,0 +170778893294,214,0 +170778893342,215,0 +170778893391,215,0 +170778893439,214,0 +170778893487,213,0 +170778893535,213,0 +170778893584,213,0 +170778893632,213,0 +170778893680,214,0 +170778893729,214,0 +170778893777,214,0 +170778893825,214,0 +170778893873,214,0 +170778893921,214,0 +170778893969,214,0 +170778894018,214,0 +170778894068,214,0 +170778894116,214,0 +170778894163,214,0 +170778894211,214,0 +170778894259,214,0 +170778894307,214,0 +170778894355,214,0 +170778894403,213,0 +170778894450,213,0 +170778894498,213,0 +170778894546,213,0 +170778894594,213,0 +170778894643,213,0 +170778894691,213,0 +170778894741,214,0 +170778894790,214,0 +170778894838,214,0 +170778894886,214,0 +170778894933,214,0 +170778894981,214,0 +170778895029,214,0 +170778895077,214,0 +170778895126,214,0 +170778895176,214,0 +170778895225,214,0 +170778895275,215,0 +170778895322,213,0 +170778895372,213,0 +170778895420,213,0 +170778895468,213,0 +170778895516,214,0 +170778895564,214,0 +170778895612,214,0 +170778895661,214,0 +170778895711,214,0 +170778895758,214,0 +170778895806,214,0 +170778895854,214,0 +170778895904,214,0 +170778895952,214,0 +170778896001,214,0 +170778896049,214,0 +170778896097,215,0 +170778896145,214,0 +170778896193,214,0 +170778896241,214,0 +170778896291,213,0 +170778896340,213,0 +170778896388,213,0 +170778896436,213,0 +170778896484,214,0 +170778896532,214,0 +170778896580,214,0 +170778896629,214,0 +170778896677,214,0 +170778896725,214,0 +170778896773,214,0 +170778896821,214,0 +170778896868,214,0 +170778896916,214,0 +170778896964,215,0 +170778897012,214,0 +170778897060,214,0 +170778897109,214,0 +170778897157,214,0 +170778897205,213,0 +170778897255,213,0 +170778897303,213,0 +170778897351,213,0 +170778897398,213,0 +170778897446,214,0 +170778897496,214,0 +170778897544,214,0 +170778897593,214,0 +170778897641,214,0 +170778897689,214,0 +170778897737,214,0 +170778897785,214,0 +170778897833,214,0 +170778897881,214,0 +170778897929,214,0 +170778897977,215,0 +170778898025,214,0 +170778898073,214,0 +170778898122,213,0 +170778898170,213,0 +170778898219,213,0 +170778898267,213,0 +170778898315,214,0 +170778898365,213,0 +170778898414,214,0 +170778898462,214,0 +170778898512,214,0 +170778898561,214,0 +170778898609,214,0 +170778898657,214,0 +170778898705,214,0 +170778898754,214,0 +170778898802,214,0 +170778898850,214,0 +170778898898,214,0 +170778898946,214,0 +170778898994,214,0 +170778899042,214,0 +170778899090,213,0 +170778899138,213,0 +170778899187,213,0 +170778899235,213,0 +170778899285,213,0 +170778899332,213,0 +170778899380,213,0 +170778899428,213,0 +170778899476,213,0 +170778899524,213,0 +170778899572,213,0 +170778899620,214,0 +170778899669,214,0 +170778899717,214,0 +170778899765,214,0 +170778899813,214,0 +170778899861,214,0 +170778899909,214,0 +170778899957,214,0 +170778900006,213,0 +170778900054,213,0 +170778900102,213,0 +170778900150,213,0 +170778900198,213,0 +170778900246,213,0 +170778900294,213,0 +170778900342,213,0 +170778900391,213,0 +170778900439,214,0 +170778900487,213,0 +170778900535,213,0 +170778900585,213,0 +170778900633,214,0 +170778900680,214,0 +170778900730,214,0 +170778900778,214,0 +170778900827,214,0 +170778900875,214,0 +170778900923,213,0 +170778900971,213,0 +170778901018,213,0 +170778901066,214,0 +170778901114,213,0 +170778901162,213,0 +170778901210,213,0 +170778901258,214,0 +170778901305,214,0 +170778901353,214,0 +170778901401,214,0 +170778901449,214,0 +170778901499,214,0 +170778901548,214,0 +170778901596,214,0 +170778901644,214,0 +170778901692,214,0 +170778901740,214,0 +170778901788,214,0 +170778901837,214,0 +170778901885,213,0 +170778901933,213,0 +170778901981,213,0 +170778902029,213,0 +170778902077,214,0 +170778902124,214,0 +170778902172,214,0 +170778902220,214,0 +170778902268,214,0 +170778902316,214,0 +170778902364,214,0 +170778902414,214,0 +170778902462,214,0 +170778902509,214,0 +170778902557,214,0 +170778902605,215,0 +170778902653,215,0 +170778902701,214,0 +170778902749,214,0 +170778902797,214,0 +170778902845,214,0 +170778902893,214,0 +170778902940,214,0 +170778902990,214,0 +170778903039,214,0 +170778903087,214,0 +170778903135,214,0 +170778903183,214,0 +170778903232,214,0 +170778903280,215,0 +170778903328,214,0 +170778903376,214,0 +170778903426,215,0 +170778903475,215,0 +170778903523,214,0 +170778903573,214,0 +170778903622,214,0 +170778903670,214,0 +170778903718,214,0 +170778903766,214,0 +170778903814,214,0 +170778903862,214,0 +170778903911,214,0 +170778903961,214,0 +170778904009,214,0 +170778904058,214,0 +170778904106,214,0 +170778904154,214,0 +170778904202,214,0 +170778904250,214,0 +170778904297,214,0 +170778904345,215,0 +170778904393,215,0 +170778904441,215,0 +170778904489,214,0 +170778904538,214,0 +170778904588,214,0 +170778904636,214,0 +170778904684,214,0 +170778904732,214,0 +170778904780,214,0 +170778904828,214,0 +170778904877,214,0 +170778904925,214,0 +170778904975,214,0 +170778905024,214,0 +170778905074,214,0 +170778905122,214,0 +170778905171,215,0 +170778905221,214,0 +170778905269,215,0 +170778905318,215,0 +170778905366,214,0 +170778905414,215,0 +170778905462,215,0 +170778905510,214,0 +170778905558,214,0 +170778905607,214,0 +170778905655,214,0 +170778905705,214,0 +170778905753,214,0 +170778905802,214,0 +170778905850,214,0 +170778905900,214,0 +170778905948,214,0 +170778905995,214,0 +170778906043,214,0 +170778906091,215,0 +170778906139,214,0 +170778906187,215,0 +170778906235,215,0 +170778906283,215,0 +170778906333,215,0 +170778906381,215,0 +170778906429,214,0 +170778906477,214,0 +170778906524,214,0 +170778906572,213,0 +170778906622,214,0 +170778906670,214,0 +170778906718,214,0 +170778906766,214,0 +170778906815,214,0 +170778906863,214,0 +170778906911,214,0 +170778906959,214,0 +170778907009,215,0 +170778907057,214,0 +170778907105,214,0 +170778907154,215,0 +170778907202,215,0 +170778907250,215,0 +170778907298,214,0 +170778907346,214,0 +170778907395,214,0 +170778907443,213,0 +170778907491,213,0 +170778907539,213,0 +170778907587,213,0 +170778907635,213,0 +170778907683,214,0 +170778907732,213,0 +170778907780,214,0 +170778907828,214,0 +170778907878,214,0 +170778907926,214,0 +170778907974,214,0 +170778908022,214,0 +170778908070,214,0 +170778908119,214,0 +170778908167,214,0 +170778908217,214,0 +170778908266,214,0 +170778908314,214,0 +170778908362,214,0 +170778908412,213,0 +170778908459,213,0 +170778908509,213,0 +170778908558,213,0 +170778908606,213,0 +170778908656,213,0 +170778908704,214,0 +170778908753,213,0 +170778908801,214,0 +170778908849,214,0 +170778908899,214,0 +170778908948,214,0 +170778908996,214,0 +170778909046,214,0 +170778909095,214,0 +170778909145,214,0 +170778909194,214,0 +170778909244,214,0 +170778909292,214,0 +170778909341,213,0 +170778909389,213,0 +170778909437,213,0 +170778909487,213,0 +170778909534,214,0 +170778909582,214,0 +170778909630,214,0 +170778909680,214,0 +170778909727,214,0 +170778909777,214,0 +170778909825,214,0 +170778909873,214,0 +170778909920,214,0 +170778909968,214,0 +170778910016,214,0 +170778910064,215,0 +170778910112,214,0 +170778910160,214,0 +170778910210,214,0 +170778910259,213,0 +170778910309,213,0 +170778910357,213,0 +170778910406,213,0 +170778910454,213,0 +170778910502,213,0 +170778910550,213,0 +170778910598,214,0 +170778910645,214,0 +170778910695,214,0 +170778910743,214,0 +170778910791,214,0 +170778910838,214,0 +170778910886,214,0 +170778910934,214,0 +170778910982,214,0 +170778911030,214,0 +170778911078,214,0 +170778911126,214,0 +170778911174,213,0 +170778911223,213,0 +170778911271,213,0 +170778911320,213,0 +170778911370,213,0 +170778911419,213,0 +170778911467,213,0 +170778911515,213,0 +170778911563,213,0 +170778911611,213,0 +170778911659,214,0 +170778911707,214,0 +170778911754,214,0 +170778911802,214,0 +170778911852,214,0 +170778911901,214,0 +170778911949,214,0 +170778911997,214,0 +170778912045,214,0 +170778912093,214,0 +170778912142,213,0 +170778912190,213,0 +170778912238,213,0 +170778912287,213,0 +170778912337,213,0 +170778912386,213,0 +170778912434,213,0 +170778912484,213,0 +170778912532,213,0 +170778912580,213,0 +170778912628,214,0 +170778912676,213,0 +170778912724,214,0 +170778912773,214,0 +170778912821,214,0 +170778912871,214,0 +170778912920,214,0 +170778912970,214,0 +170778913017,213,0 +170778913067,213,0 +170778913115,213,0 +170778913163,213,0 +170778913211,213,0 +170778913260,213,0 +170778913310,213,0 +170778913359,214,0 +170778913407,213,0 +170778913455,213,0 +170778913503,213,0 +170778913551,213,0 +170778913599,213,0 +170778913646,214,0 +170778913694,214,0 +170778913742,214,0 +170778913790,214,0 +170778913838,214,0 +170778913887,214,0 +170778913936,214,0 +170778913984,213,0 +170778914032,213,0 +170778914080,213,0 +170778914128,213,0 +170778914176,213,0 +170778914225,213,0 +170778914273,213,0 +170778914321,214,0 +170778914369,214,0 +170778914417,214,0 +170778914466,214,0 +170778914516,214,0 +170778914564,214,0 +170778914613,214,0 +170778914661,214,0 +170778914709,214,0 +170778914757,214,0 +170778914806,214,0 +170778914854,214,0 +170778914902,213,0 +170778914950,213,0 +170778914999,213,0 +170778915047,213,0 +170778915095,213,0 +170778915143,213,0 +170778915193,213,0 +170778915242,214,0 +170778915290,213,0 +170778915338,214,0 +170778915386,214,0 +170778915434,214,0 +170778915483,214,0 +170778915531,214,0 +170778915579,214,0 +170778915627,214,0 +170778915676,214,0 +170778915724,214,0 +170778915774,214,0 +170778915823,213,0 +170778915871,213,0 +170778915919,213,0 +170778915967,213,0 +170778916015,213,0 +170778916062,213,0 +170778916110,213,0 +170778916158,213,0 +170778916206,214,0 +170778916255,214,0 +170778916303,214,0 +170778916351,214,0 +170778916399,214,0 +170778916446,214,0 +170778916494,214,0 +170778916544,214,0 +170778916592,214,0 +170778916641,214,0 +170778916691,214,0 +170778916740,214,0 +170778916788,213,0 +170778916836,213,0 +170778916886,213,0 +170778916935,213,0 +170778916985,213,0 +170778917033,214,0 +170778917080,214,0 +170778917128,214,0 +170778917176,214,0 +170778917224,214,0 +170778917272,214,0 +170778917320,214,0 +170778917368,214,0 +170778917417,214,0 +170778917466,214,0 +170778917514,214,0 +170778917562,214,0 +170778917611,215,0 +170778917659,214,0 +170778917707,213,0 +170778917755,213,0 +170778917803,213,0 +170778917851,213,0 +170778917899,214,0 +170778917947,214,0 +170778917995,214,0 +170778918044,214,0 +170778918092,214,0 +170778918140,214,0 +170778918188,214,0 +170778918236,214,0 +170778918285,214,0 +170778918335,214,0 +170778918382,215,0 +170778918430,215,0 +170778918478,214,0 +170778918526,214,0 +170778918576,214,0 +170778918623,214,0 +170778918671,213,0 +170778918719,213,0 +170778918767,214,0 +170778918815,213,0 +170778918863,214,0 +170778918911,214,0 +170778918959,214,0 +170778919006,214,0 +170778919054,214,0 +170778919102,214,0 +170778919150,214,0 +170778919200,214,0 +170778919249,214,0 +170778919297,214,0 +170778919345,214,0 +170778919393,215,0 +170778919440,215,0 +170778919488,214,0 +170778919536,214,0 +170778919584,213,0 +170778919632,213,0 +170778919680,213,0 +170778919729,214,0 +170778919777,214,0 +170778919825,214,0 +170778919875,214,0 +170778919923,214,0 +170778919972,214,0 +170778920022,214,0 +170778920069,214,0 +170778920119,214,0 +170778920168,214,0 +170778920218,214,0 +170778920266,214,0 +170778920314,214,0 +170778920362,214,0 +170778920410,215,0 +170778920458,214,0 +170778920505,213,0 +170778920553,214,0 +170778920603,213,0 +170778920652,214,0 +170778920700,214,0 +170778920748,214,0 +170778920796,214,0 +170778920844,214,0 +170778920892,214,0 +170778920942,214,0 +170778920989,214,0 +170778921039,214,0 +170778921087,215,0 +170778921136,214,0 +170778921184,214,0 +170778921232,214,0 +170778921280,215,0 +170778921330,215,0 +170778921379,214,0 +170778921427,213,0 +170778921475,213,0 +170778921523,213,0 +170778921572,213,0 +170778921620,213,0 +170778921670,214,0 +170778921719,213,0 +170778921767,214,0 +170778921817,214,0 +170778921865,214,0 +170778921914,214,0 +170778921962,214,0 +170778922010,214,0 +170778922057,214,0 +170778922107,214,0 +170778922156,214,0 +170778922204,214,0 +170778922252,214,0 +170778922300,214,0 +170778922348,213,0 +170778922395,213,0 +170778922443,213,0 +170778922491,213,0 +170778922541,213,0 +170778922588,213,0 +170778922636,214,0 +170778922684,213,0 +170778922732,214,0 +170778922780,214,0 +170778922828,214,0 +170778922875,214,0 +170778922923,214,0 +170778922971,214,0 +170778923019,214,0 +170778923067,214,0 +170778923116,214,0 +170778923164,214,0 +170778923212,214,0 +170778923260,214,0 +170778923307,213,0 +170778923355,213,0 +170778923403,213,0 +170778923451,213,0 +170778923501,213,0 +170778923550,213,0 +170778923598,213,0 +170778923646,213,0 +170778923694,213,0 +170778923742,214,0 +170778923791,213,0 +170778923839,214,0 +170778923887,214,0 +170778923935,214,0 +170778923983,214,0 +170778924030,214,0 +170778924080,214,0 +170778924128,214,0 +170778924175,214,0 +170778924223,213,0 +170778924271,213,0 +170778924319,213,0 +170778924367,213,0 +170778924415,213,0 +170778924463,213,0 +170778924510,213,0 +170778924559,214,0 +170778924606,214,0 +170778924654,214,0 +170778924702,214,0 +170778924750,214,0 +170778924798,214,0 +170778924846,214,0 +170778924894,214,0 +170778924942,214,0 +170778924990,214,0 +170778925038,214,0 +170778925085,214,0 +170778925133,214,0 +170778925181,213,0 +170778925229,213,0 +170778925277,213,0 +170778925325,214,0 +170778925373,213,0 +170778925420,214,0 +170778925468,214,0 +170778925516,214,0 +170778925564,214,0 +170778925612,214,0 +170778925660,214,0 +170778925708,214,0 +170778925755,214,0 +170778925803,214,0 +170778925853,214,0 +170778925900,214,0 +170778925948,214,0 +170778925996,214,0 +170778926044,214,0 +170778926092,213,0 +170778926140,213,0 +170778926188,213,0 +170778926238,213,0 +170778926285,213,0 +170778926333,213,0 +170778926381,213,0 +170778926431,213,0 +170778926479,213,0 +170778926527,213,0 +170778926575,213,0 +170778926623,213,0 +170778926670,214,0 +170778926718,214,0 +170778926766,214,0 +170778926814,214,0 +170778926862,214,0 +170778926909,214,0 +170778926957,214,0 +170778927005,214,0 +170778927053,214,0 +170778927101,214,0 +170778927151,214,0 +170778927198,214,0 +170778927246,214,0 +170778927294,214,0 +170778927342,214,0 +170778927390,214,0 +170778927438,214,0 +170778927486,214,0 +170778927534,213,0 +170778927581,213,0 +170778927629,214,0 +170778927677,213,0 +170778927725,214,0 +170778927773,214,0 +170778927821,214,0 +170778927869,214,0 +170778927918,214,0 +170778927967,214,0 +170778928015,214,0 +170778928063,214,0 +170778928111,214,0 +170778928159,214,0 +170778928207,214,0 +170778928256,214,0 +170778928306,214,0 +170778928354,215,0 +170778928402,214,0 +170778928451,213,0 +170778928499,213,0 +170778928547,213,0 +170778928595,213,0 +170778928643,214,0 +170778928692,214,0 +170778928742,214,0 +170778928789,214,0 +170778928837,214,0 +170778928885,214,0 +170778928933,214,0 +170778928983,214,0 +170778929031,214,0 +170778929079,214,0 +170778929127,215,0 +170778929176,214,0 +170778929225,214,0 +170778929273,215,0 +170778929321,214,0 +170778929371,213,0 +170778929419,213,0 +170778929467,213,0 +170778929516,213,0 +170778929564,213,0 +170778929613,213,0 +170778929661,214,0 +170778929711,214,0 +170778929759,214,0 +170778929807,214,0 +170778929855,214,0 +170778929902,214,0 +170778929950,214,0 +170778929998,214,0 +170778930046,214,0 +170778930094,214,0 +170778930143,214,0 +170778930191,215,0 +170778930239,214,0 +170778930287,213,0 +170778930335,213,0 +170778930385,213,0 +170778930434,214,0 +170778930482,213,0 +170778930531,214,0 +170778930581,214,0 +170778930629,214,0 +170778930678,214,0 +170778930726,214,0 +170778930775,214,0 +170778930825,214,0 +170778930874,214,0 +170778930922,214,0 +170778930972,214,0 +170778931020,214,0 +170778931069,214,0 +170778931117,214,0 +170778931165,214,0 +170778931213,213,0 +170778931261,213,0 +170778931309,213,0 +170778931358,213,0 +170778931406,213,0 +170778931454,214,0 +170778931502,213,0 +170778931550,213,0 +170778931598,214,0 +170778931645,214,0 +170778931693,214,0 +170778931741,214,0 +170778931789,214,0 +170778931837,214,0 +170778931885,214,0 +170778931933,214,0 +170778931981,214,0 +170778932029,214,0 +170778932077,214,0 +170778932126,214,0 +170778932174,213,0 +170778932224,213,0 +170778932272,213,0 +170778932320,213,0 +170778932367,213,0 +170778932415,214,0 +170778932463,214,0 +170778932511,214,0 +170778932559,214,0 +170778932609,214,0 +170778932657,214,0 +170778932706,214,0 +170778932754,214,0 +170778932802,214,0 +170778932850,214,0 +170778932898,214,0 +170778932946,214,0 +170778932995,215,0 +170778933045,214,0 +170778933093,214,0 +170778933142,213,0 +170778933192,213,0 +170778933240,214,0 +170778933289,214,0 +170778933337,214,0 +170778933385,214,0 +170778933435,214,0 +170778933484,214,0 +170778933532,214,0 +170778933581,214,0 +170778933631,214,0 +170778933680,214,0 +170778933728,215,0 +170778933776,215,0 +170778933824,215,0 +170778933872,215,0 +170778933920,215,0 +170778933970,214,0 +170778934019,214,0 +170778934067,213,0 +170778934117,214,0 +170778934166,214,0 +170778934214,214,0 +170778934262,214,0 +170778934312,214,0 +170778934359,214,0 +170778934407,214,0 +170778934455,214,0 +170778934505,214,0 +170778934553,214,0 +170778934602,214,0 +170778934652,215,0 +170778934700,215,0 +170778934748,215,0 +170778934796,215,0 +170778934843,215,0 +170778934891,215,0 +170778934940,214,0 +170778934987,214,0 +170778935037,214,0 +170778935085,214,0 +170778935133,214,0 +170778935182,214,0 +170778935230,214,0 +170778935280,214,0 +170778935328,214,0 +170778935375,214,0 +170778935423,214,0 +170778935471,215,0 +170778935521,215,0 +170778935569,215,0 +170778935617,215,0 +170778935665,215,0 +170778935714,215,0 +170778935764,215,0 +170778935812,214,0 +170778935861,214,0 +170778935911,214,0 +170778935959,214,0 +170778936007,214,0 +170778936055,214,0 +170778936102,214,0 +170778936150,214,0 +170778936198,214,0 +170778936246,214,0 +170778936296,214,0 +170778936345,214,0 +170778936395,214,0 +170778936444,214,0 +170778936492,215,0 +170778936540,214,0 +170778936590,214,0 +170778936638,214,0 +170778936685,215,0 +170778936734,214,0 +170778936781,214,0 +170778936829,213,0 +170778936877,213,0 +170778936925,213,0 +170778936975,213,0 +170778937023,214,0 +170778937071,214,0 +170778937118,214,0 +170778937168,214,0 +170778937216,214,0 +170778937265,214,0 +170778937313,214,0 +170778937361,214,0 +170778937409,214,0 +170778937458,214,0 +170778937506,214,0 +170778937554,214,0 +170778937602,214,0 +170778937650,214,0 +170778937698,214,0 +170778937746,213,0 +170778937795,213,0 +170778937843,213,0 +170778937891,213,0 +170778937939,213,0 +170778937987,213,0 +170778938035,213,0 +170778938083,213,0 +170778938130,214,0 +170778938180,214,0 +170778938228,214,0 +170778938275,214,0 +170778938323,214,0 +170778938371,214,0 +170778938419,214,0 +170778938467,214,0 +170778938515,214,0 +170778938564,214,0 +170778938612,214,0 +170778938660,214,0 +170778938708,213,0 +170778938756,213,0 +170778938803,213,0 +170778938851,213,0 +170778938899,213,0 +170778938947,213,0 +170778938997,214,0 +170778939046,214,0 +170778939096,214,0 +170778939144,214,0 +170778939191,214,0 +170778939241,214,0 +170778939289,214,0 +170778939338,214,0 +170778939388,214,0 +170778939437,214,0 +170778939485,214,0 +170778939533,214,0 +170778939581,214,0 +170778939631,213,0 +170778939679,213,0 +170778939728,213,0 +170778939778,213,0 +170778939826,213,0 +170778939874,213,0 +170778939923,213,0 +170778939971,213,0 +170778940019,213,0 +170778940067,214,0 +170778940117,213,0 +170778940164,214,0 +170778940213,214,0 +170778940262,214,0 +170778940310,214,0 +170778940358,214,0 +170778940406,214,0 +170778940454,214,0 +170778940502,214,0 +170778940549,213,0 +170778940597,213,0 +170778940647,213,0 +170778940695,213,0 +170778940744,213,0 +170778940792,213,0 +170778940840,213,0 +170778940888,213,0 +170778940938,213,0 +170778940986,214,0 +170778941035,214,0 +170778941085,214,0 +170778941132,214,0 +170778941180,214,0 +170778941228,214,0 +170778941276,214,0 +170778941324,214,0 +170778941371,214,0 +170778941419,214,0 +170778941467,214,0 +170778941515,213,0 +170778941564,213,0 +170778941612,213,0 +170778941660,213,0 +170778941708,213,0 +170778941756,214,0 +170778941803,214,0 +170778941851,214,0 +170778941901,214,0 +170778941950,214,0 +170778942000,214,0 +170778942048,214,0 +170778942097,214,0 +170778942145,214,0 +170778942195,214,0 +170778942242,214,0 +170778942290,214,0 +170778942340,214,0 +170778942388,213,0 +170778942436,213,0 +170778942484,213,0 +170778942532,213,0 +170778942581,213,0 +170778942631,213,0 +170778942679,213,0 +170778942727,214,0 +170778942776,214,0 +170778942826,213,0 +170778942875,214,0 +170778942925,214,0 +170778942974,214,0 +170778943022,214,0 +170778943070,214,0 +170778943118,214,0 +170778943166,215,0 +170778943214,214,0 +170778943262,214,0 +170778943310,213,0 +170778943359,213,0 +170778943407,213,0 +170778943455,213,0 +170778943503,213,0 +170778943551,213,0 +170778943600,213,0 +170778943648,214,0 +170778943697,214,0 +170778943745,214,0 +170778943793,214,0 +170778943843,214,0 +170778943890,214,0 +170778943938,214,0 +170778943986,214,0 +170778944036,214,0 +170778944084,214,0 +170778944133,214,0 +170778944183,214,0 +170778944231,214,0 +170778944280,213,0 +170778944328,213,0 +170778944376,213,0 +170778944424,213,0 +170778944472,213,0 +170778944520,213,0 +170778944568,214,0 +170778944617,214,0 +170778944667,214,0 +170778944716,214,0 +170778944766,214,0 +170778944813,214,0 +170778944863,214,0 +170778944911,214,0 +170778944959,214,0 +170778945007,214,0 +170778945055,214,0 +170778945102,214,0 +170778945150,214,0 +170778945198,214,0 +170778945247,213,0 +170778945295,213,0 +170778945343,213,0 +170778945391,213,0 +170778945441,213,0 +170778945490,214,0 +170778945538,214,0 +170778945586,214,0 +170778945634,214,0 +170778945682,214,0 +170778945731,214,0 +170778945781,214,0 +170778945829,214,0 +170778945877,214,0 +170778945926,214,0 +170778945974,214,0 +170778946023,214,0 +170778946073,214,0 +170778946121,213,0 +170778946168,213,0 +170778946216,213,0 +170778946266,213,0 +170778946313,213,0 +170778946363,214,0 +170778946412,213,0 +170778946460,214,0 +170778946508,213,0 +170778946556,214,0 +170778946604,214,0 +170778946653,214,0 +170778946701,214,0 +170778946749,214,0 +170778946798,214,0 +170778946846,214,0 +170778946894,214,0 +170778946942,214,0 +170778946990,214,0 +170778947039,214,0 +170778947089,213,0 +170778947137,213,0 +170778947186,213,0 +170778947236,213,0 +170778947285,213,0 +170778947335,213,0 +170778947384,213,0 +170778947434,214,0 +170778947482,214,0 +170778947530,214,0 +170778947578,214,0 +170778947626,214,0 +170778947674,214,0 +170778947722,214,0 +170778947769,214,0 +170778947817,214,0 +170778947865,214,0 +170778947915,214,0 +170778947963,214,0 +170778948011,213,0 +170778948059,213,0 +170778948107,213,0 +170778948155,213,0 +170778948203,214,0 +170778948250,213,0 +170778948298,214,0 +170778948346,214,0 +170778948396,214,0 +170778948445,214,0 +170778948493,214,0 +170778948541,214,0 +170778948591,214,0 +170778948640,214,0 +170778948690,214,0 +170778948738,214,0 +170778948786,214,0 +170778948835,214,0 +170778948885,214,0 +170778948932,213,0 +170778948980,213,0 +170778949030,213,0 +170778949078,213,0 +170778949127,214,0 +170778949177,214,0 +170778949225,214,0 +170778949272,214,0 +170778949322,214,0 +170778949371,214,0 +170778949421,214,0 +170778949469,214,0 +170778949517,214,0 +170778949566,214,0 +170778949616,214,0 +170778949663,214,0 +170778949711,215,0 +170778949759,214,0 +170778949807,214,0 +170778949855,214,0 +170778949903,213,0 +170778949952,213,0 +170778950000,213,0 +170778950048,214,0 +170778950096,214,0 +170778950146,214,0 +170778950194,214,0 +170778950242,214,0 +170778950289,214,0 +170778950339,214,0 +170778950387,214,0 +170778950436,214,0 +170778950484,215,0 +170778950534,214,0 +170778950583,214,0 +170778950631,215,0 +170778950681,214,0 +170778950730,214,0 +170778950780,213,0 +170778950828,213,0 +170778950877,213,0 +170778950927,213,0 +170778950975,213,0 +170778951024,214,0 +170778951074,214,0 +170778951123,214,0 +170778951171,214,0 +170778951219,214,0 +170778951267,214,0 +170778951315,214,0 +170778951365,214,0 +170778951413,214,0 +170778951461,214,0 +170778951510,214,0 +170778951558,214,0 +170778951608,214,0 +170778951656,214,0 +170778951705,214,0 +170778951753,213,0 +170778951802,213,0 +170778951850,213,0 +170778951898,213,0 +170778951946,214,0 +170778951996,213,0 +170778952044,214,0 +170778952093,214,0 +170778952143,214,0 +170778952191,214,0 +170778952240,214,0 +170778952288,214,0 +170778952338,214,0 +170778952386,214,0 +170778952435,214,0 +170778952483,214,0 +170778952531,214,0 +170778952579,214,0 +170778952628,214,0 +170778952676,213,0 +170778952724,213,0 +170778952772,213,0 +170778952820,213,0 +170778952868,213,0 +170778952916,214,0 +170778952964,214,0 +170778953014,214,0 +170778953063,214,0 +170778953111,214,0 +170778953159,214,0 +170778953207,214,0 +170778953257,214,0 +170778953305,214,0 +170778953353,214,0 +170778953400,214,0 +170778953448,214,0 +170778953498,214,0 +170778953546,214,0 +170778953594,213,0 +170778953642,213,0 +170778953691,213,0 +170778953741,213,0 +170778953790,213,0 +170778953840,213,0 +170778953888,213,0 +170778953937,213,0 +170778953985,213,0 +170778954033,214,0 +170778954081,214,0 +170778954129,214,0 +170778954178,214,0 +170778954226,214,0 +170778954274,214,0 +170778954322,214,0 +170778954370,214,0 +170778954417,214,0 +170778954467,214,0 +170778954516,213,0 +170778954564,213,0 +170778954612,213,0 +170778954662,213,0 +170778954710,213,0 +170778954758,213,0 +170778954807,213,0 +170778954855,213,0 +170778954903,213,0 +170778954951,213,0 +170778955000,213,0 +170778955048,214,0 +170778955098,214,0 +170778955147,214,0 +170778955195,214,0 +170778955243,214,0 +170778955292,214,0 +170778955340,214,0 +170778955388,214,0 +170778955438,213,0 +170778955486,213,0 +170778955533,213,0 +170778955581,213,0 +170778955629,213,0 +170778955679,213,0 +170778955728,213,0 +170778955778,213,0 +170778955826,213,0 +170778955874,213,0 +170778955921,214,0 +170778955969,214,0 +170778956017,214,0 +170778956065,214,0 +170778956115,214,0 +170778956162,214,0 +170778956212,214,0 +170778956260,214,0 +170778956308,214,0 +170778956356,213,0 +170778956405,213,0 +170778956453,213,0 +170778956503,213,0 +170778956552,213,0 +170778956600,213,0 +170778956648,213,0 +170778956697,213,0 +170778956745,213,0 +170778956793,213,0 +170778956841,214,0 +170778956891,214,0 +170778956940,214,0 +170778956988,214,0 +170778957036,214,0 +170778957084,214,0 +170778957132,214,0 +170778957181,214,0 +170778957229,214,0 +170778957277,213,0 +170778957325,213,0 +170778957373,213,0 +170778957422,213,0 +170778957472,213,0 +170778957520,213,0 +170778957568,213,0 +170778957616,213,0 +170778957663,213,0 +170778957711,213,0 +170778957759,213,0 +170778957809,214,0 +170778957857,214,0 +170778957905,213,0 +170778957955,214,0 +170778958003,214,0 +170778958051,214,0 +170778958099,214,0 +170778958148,214,0 +170778958196,214,0 +170778958246,213,0 +170778958294,213,0 +170778958341,213,0 +170778958389,213,0 +170778958437,213,0 +170778958485,213,0 +170778958535,214,0 +170778958583,214,0 +170778958632,214,0 +170778958682,214,0 +170778958730,214,0 +170778958778,214,0 +170778958827,214,0 +170778958875,214,0 +170778958923,214,0 +170778958971,214,0 +170778959020,214,0 +170778959068,214,0 +170778959116,214,0 +170778959164,213,0 +170778959212,213,0 +170778959260,213,0 +170778959308,213,0 +170778959358,213,0 +170778959406,213,0 +170778959455,214,0 +170778959503,214,0 +170778959551,214,0 +170778959601,214,0 +170778959650,214,0 +170778959698,214,0 +170778959748,214,0 +170778959796,214,0 +170778959844,214,0 +170778959892,214,0 +170778959940,214,0 +170778959988,214,0 diff --git a/laser_value/0213-12.csv b/laser_value/0213-12.csv new file mode 100644 index 0000000..bfa5446 --- /dev/null +++ b/laser_value/0213-12.csv @@ -0,0 +1,7435 @@ +timestamp,laser_value,event +170778960036,214,0 +170778960084,213,0 +170778960132,213,0 +170778960180,213,0 +170778960227,213,0 +170778960275,213,0 +170778960325,213,0 +170778960373,213,0 +170778960422,213,0 +170778960470,213,0 +170778960520,214,0 +170778960568,214,0 +170778960617,214,0 +170778960665,214,0 +170778960713,214,0 +170778960762,214,0 +170778960810,214,0 +170778960860,214,0 +170778960908,214,0 +170778960957,214,0 +170778961007,214,0 +170778961055,213,0 +170778961103,213,0 +170778961151,213,0 +170778961199,213,0 +170778961248,213,0 +170778961298,214,0 +170778961347,214,0 +170778961397,214,0 +170778961445,214,0 +170778961493,214,0 +170778961541,214,0 +170778961590,214,0 +170778961640,214,0 +170778961688,214,0 +170778961736,214,0 +170778961785,214,0 +170778961833,214,0 +170778961881,214,0 +170778961929,214,0 +170778961977,213,0 +170778962025,213,0 +170778962073,213,0 +170778962123,213,0 +170778962171,213,0 +170778962220,214,0 +170778962268,214,0 +170778962316,214,0 +170778962364,214,0 +170778962412,214,0 +170778962461,214,0 +170778962509,214,0 +170778962559,214,0 +170778962607,214,0 +170778962655,214,0 +170778962703,215,0 +170778962750,214,0 +170778962800,214,0 +170778962849,214,0 +170778962897,213,0 +170778962945,213,0 +170778962993,213,0 +170778963041,213,0 +170778963089,214,0 +170778963137,214,0 +170778963185,214,0 +170778963233,214,0 +170778963280,214,0 +170778963330,214,0 +170778963378,214,0 +170778963427,214,0 +170778963475,214,0 +170778963523,214,0 +170778963571,214,0 +170778963620,214,0 +170778963668,215,0 +170778963716,214,0 +170778963764,214,0 +170778963812,213,0 +170778963861,213,0 +170778963909,213,0 +170778963957,214,0 +170778964005,214,0 +170778964053,213,0 +170778964100,214,0 +170778964150,214,0 +170778964198,214,0 +170778964246,214,0 +170778964294,214,0 +170778964341,214,0 +170778964389,214,0 +170778964439,214,0 +170778964486,214,0 +170778964534,214,0 +170778964582,214,0 +170778964632,214,0 +170778964681,214,0 +170778964729,213,0 +170778964779,213,0 +170778964827,213,0 +170778964875,213,0 +170778964923,213,0 +170778964971,213,0 +170778965019,214,0 +170778965067,213,0 +170778965116,214,0 +170778965165,214,0 +170778965215,214,0 +170778965263,214,0 +170778965311,214,0 +170778965360,214,0 +170778965409,214,0 +170778965457,214,0 +170778965505,215,0 +170778965553,214,0 +170778965601,214,0 +170778965649,214,0 +170778965696,213,0 +170778965746,213,0 +170778965794,214,0 +170778965842,214,0 +170778965891,213,0 +170778965939,214,0 +170778965987,214,0 +170778966035,214,0 +170778966085,214,0 +170778966133,214,0 +170778966181,214,0 +170778966228,214,0 +170778966276,214,0 +170778966326,214,0 +170778966376,214,0 +170778966425,214,0 +170778966473,214,0 +170778966521,214,0 +170778966569,214,0 +170778966617,213,0 +170778966665,213,0 +170778966713,213,0 +170778966762,213,0 +170778966812,213,0 +170778966861,213,0 +170778966911,214,0 +170778966959,214,0 +170778967007,214,0 +170778967055,214,0 +170778967102,214,0 +170778967150,214,0 +170778967198,214,0 +170778967247,214,0 +170778967295,214,0 +170778967345,215,0 +170778967393,214,0 +170778967441,214,0 +170778967489,214,0 +170778967536,213,0 +170778967584,213,0 +170778967632,213,0 +170778967680,213,0 +170778967728,213,0 +170778967776,213,0 +170778967824,213,0 +170778967874,213,0 +170778967923,213,0 +170778967971,214,0 +170778968021,214,0 +170778968070,214,0 +170778968120,214,0 +170778968168,214,0 +170778968216,214,0 +170778968265,214,0 +170778968313,214,0 +170778968361,214,0 +170778968409,214,0 +170778968457,213,0 +170778968505,213,0 +170778968553,213,0 +170778968600,213,0 +170778968648,213,0 +170778968696,213,0 +170778968744,213,0 +170778968792,213,0 +170778968840,213,0 +170778968887,213,0 +170778968935,213,0 +170778968983,214,0 +170778969032,214,0 +170778969080,214,0 +170778969130,214,0 +170778969178,214,0 +170778969227,214,0 +170778969276,214,0 +170778969324,214,0 +170778969374,213,0 +170778969422,213,0 +170778969469,213,0 +170778969517,213,0 +170778969565,213,0 +170778969613,213,0 +170778969661,213,0 +170778969709,213,0 +170778969757,214,0 +170778969805,214,0 +170778969853,214,0 +170778969902,214,0 +170778969950,214,0 +170778969998,214,0 +170778970046,214,0 +170778970095,214,0 +170778970145,214,0 +170778970193,214,0 +170778970240,214,0 +170778970288,214,0 +170778970336,213,0 +170778970386,213,0 +170778970435,213,0 +170778970483,213,0 +170778970531,213,0 +170778970580,213,0 +170778970628,213,0 +170778970676,213,0 +170778970724,214,0 +170778970772,214,0 +170778970820,214,0 +170778970867,214,0 +170778970917,214,0 +170778970965,214,0 +170778971012,214,0 +170778971060,214,0 +170778971110,214,0 +170778971157,214,0 +170778971205,214,0 +170778971253,213,0 +170778971302,213,0 +170778971352,213,0 +170778971401,213,0 +170778971449,213,0 +170778971497,213,0 +170778971545,213,0 +170778971594,214,0 +170778971642,213,0 +170778971690,213,0 +170778971738,213,0 +170778971788,214,0 +170778971835,215,0 +170778971883,214,0 +170778971931,214,0 +170778971979,214,0 +170778972027,214,0 +170778972075,214,0 +170778972122,214,0 +170778972170,213,0 +170778972218,213,0 +170778972266,213,0 +170778972314,213,0 +170778972362,213,0 +170778972411,213,0 +170778972459,213,0 +170778972507,213,0 +170778972555,213,0 +170778972603,213,0 +170778972650,214,0 +170778972698,214,0 +170778972748,214,0 +170778972796,214,0 +170778972844,214,0 +170778972892,214,0 +170778972940,214,0 +170778972989,214,0 +170778973037,214,0 +170778973085,214,0 +170778973133,213,0 +170778973182,213,0 +170778973230,213,0 +170778973280,213,0 +170778973328,213,0 +170778973376,213,0 +170778973423,213,0 +170778973471,213,0 +170778973519,214,0 +170778973567,214,0 +170778973615,214,0 +170778973663,214,0 +170778973711,214,0 +170778973759,214,0 +170778973807,214,0 +170778973855,214,0 +170778973903,214,0 +170778973950,214,0 +170778974000,214,0 +170778974048,213,0 +170778974095,213,0 +170778974143,213,0 +170778974191,213,0 +170778974239,213,0 +170778974288,213,0 +170778974336,213,0 +170778974384,214,0 +170778974432,214,0 +170778974481,214,0 +170778974529,214,0 +170778974577,214,0 +170778974625,214,0 +170778974674,214,0 +170778974722,214,0 +170778974770,214,0 +170778974818,214,0 +170778974867,214,0 +170778974915,214,0 +170778974963,213,0 +170778975010,213,0 +170778975058,213,0 +170778975106,213,0 +170778975154,213,0 +170778975202,213,0 +170778975250,213,0 +170778975298,213,0 +170778975345,214,0 +170778975395,214,0 +170778975444,214,0 +170778975494,214,0 +170778975542,214,0 +170778975590,214,0 +170778975638,214,0 +170778975687,214,0 +170778975735,214,0 +170778975783,214,0 +170778975831,214,0 +170778975879,214,0 +170778975927,213,0 +170778975976,213,0 +170778976024,213,0 +170778976072,213,0 +170778976120,213,0 +170778976169,213,0 +170778976217,213,0 +170778976265,213,0 +170778976315,214,0 +170778976363,214,0 +170778976412,214,0 +170778976460,214,0 +170778976508,214,0 +170778976557,214,0 +170778976605,214,0 +170778976653,214,0 +170778976701,214,0 +170778976751,214,0 +170778976798,214,0 +170778976846,213,0 +170778976896,213,0 +170778976945,213,0 +170778976993,213,0 +170778977041,213,0 +170778977089,213,0 +170778977137,214,0 +170778977186,213,0 +170778977234,214,0 +170778977284,214,0 +170778977333,214,0 +170778977383,214,0 +170778977431,214,0 +170778977479,214,0 +170778977527,214,0 +170778977574,214,0 +170778977622,214,0 +170778977670,214,0 +170778977718,214,0 +170778977766,213,0 +170778977815,213,0 +170778977863,213,0 +170778977911,213,0 +170778977959,214,0 +170778978009,213,0 +170778978057,213,0 +170778978106,214,0 +170778978155,214,0 +170778978205,214,0 +170778978253,214,0 +170778978301,214,0 +170778978349,214,0 +170778978397,214,0 +170778978444,214,0 +170778978492,214,0 +170778978540,215,0 +170778978590,215,0 +170778978638,215,0 +170778978686,214,0 +170778978734,213,0 +170778978781,214,0 +170778978831,214,0 +170778978879,214,0 +170778978926,214,0 +170778978974,214,0 +170778979022,214,0 +170778979070,214,0 +170778979119,214,0 +170778979167,214,0 +170778979217,214,0 +170778979264,214,0 +170778979312,214,0 +170778979360,215,0 +170778979408,215,0 +170778979456,214,0 +170778979504,214,0 +170778979552,214,0 +170778979600,214,0 +170778979647,213,0 +170778979697,213,0 +170778979746,213,0 +170778979794,213,0 +170778979842,213,0 +170778979890,214,0 +170778979937,214,0 +170778979985,214,0 +170778980033,214,0 +170778980081,214,0 +170778980130,214,0 +170778980178,215,0 +170778980226,215,0 +170778980274,214,0 +170778980323,215,0 +170778980371,215,0 +170778980420,215,0 +170778980468,215,0 +170778980516,214,0 +170778980564,213,0 +170778980612,213,0 +170778980660,213,0 +170778980709,213,0 +170778980757,213,0 +170778980807,213,0 +170778980855,214,0 +170778980903,214,0 +170778980951,214,0 +170778980998,214,0 +170778981048,214,0 +170778981097,214,0 +170778981145,214,0 +170778981193,214,0 +170778981241,214,0 +170778981289,215,0 +170778981339,214,0 +170778981388,214,0 +170778981438,214,0 +170778981486,213,0 +170778981534,213,0 +170778981582,213,0 +170778981630,213,0 +170778981679,213,0 +170778981727,213,0 +170778981775,214,0 +170778981824,213,0 +170778981872,214,0 +170778981921,214,0 +170778981969,214,0 +170778982017,214,0 +170778982065,214,0 +170778982113,214,0 +170778982161,214,0 +170778982208,214,0 +170778982256,214,0 +170778982306,214,0 +170778982353,214,0 +170778982401,213,0 +170778982449,213,0 +170778982498,213,0 +170778982546,213,0 +170778982594,213,0 +170778982642,213,0 +170778982691,213,0 +170778982739,213,0 +170778982789,213,0 +170778982836,213,0 +170778982884,214,0 +170778982932,214,0 +170778982982,214,0 +170778983030,214,0 +170778983077,214,0 +170778983127,214,0 +170778983175,214,0 +170778983223,214,0 +170778983271,214,0 +170778983319,214,0 +170778983367,213,0 +170778983416,213,0 +170778983464,213,0 +170778983513,213,0 +170778983561,213,0 +170778983611,213,0 +170778983659,213,0 +170778983707,213,0 +170778983756,214,0 +170778983806,214,0 +170778983854,214,0 +170778983902,214,0 +170778983950,214,0 +170778983997,214,0 +170778984045,214,0 +170778984093,214,0 +170778984141,214,0 +170778984189,214,0 +170778984239,214,0 +170778984287,213,0 +170778984335,213,0 +170778984384,213,0 +170778984434,213,0 +170778984482,213,0 +170778984530,213,0 +170778984577,213,0 +170778984627,213,0 +170778984675,214,0 +170778984723,214,0 +170778984771,214,0 +170778984818,214,0 +170778984866,214,0 +170778984914,214,0 +170778984962,214,0 +170778985010,214,0 +170778985060,214,0 +170778985108,214,0 +170778985155,214,0 +170778985203,213,0 +170778985251,213,0 +170778985299,213,0 +170778985347,213,0 +170778985396,213,0 +170778985444,213,0 +170778985492,213,0 +170778985541,213,0 +170778985589,214,0 +170778985637,214,0 +170778985685,214,0 +170778985733,214,0 +170778985781,214,0 +170778985829,214,0 +170778985878,214,0 +170778985926,214,0 +170778985974,214,0 +170778986022,214,0 +170778986072,214,0 +170778986120,214,0 +170778986168,213,0 +170778986216,213,0 +170778986265,213,0 +170778986315,213,0 +170778986364,213,0 +170778986412,214,0 +170778986460,213,0 +170778986509,214,0 +170778986557,214,0 +170778986607,214,0 +170778986656,214,0 +170778986704,214,0 +170778986752,214,0 +170778986800,214,0 +170778986848,214,0 +170778986896,214,0 +170778986944,214,0 +170778986992,214,0 +170778987040,214,0 +170778987088,213,0 +170778987136,213,0 +170778987184,213,0 +170778987232,213,0 +170778987281,213,0 +170778987329,213,0 +170778987377,213,0 +170778987425,214,0 +170778987473,214,0 +170778987521,214,0 +170778987569,214,0 +170778987617,214,0 +170778987665,214,0 +170778987713,214,0 +170778987761,214,0 +170778987808,214,0 +170778987858,214,0 +170778987906,214,0 +170778987954,214,0 +170778988003,213,0 +170778988053,213,0 +170778988102,213,0 +170778988150,213,0 +170778988198,213,0 +170778988248,213,0 +170778988295,214,0 +170778988345,214,0 +170778988393,214,0 +170778988442,214,0 +170778988490,214,0 +170778988540,214,0 +170778988588,214,0 +170778988635,214,0 +170778988683,214,0 +170778988731,214,0 +170778988781,214,0 +170778988829,214,0 +170778988877,214,0 +170778988926,213,0 +170778988976,213,0 +170778989024,213,0 +170778989071,213,0 +170778989121,213,0 +170778989171,214,0 +170778989219,213,0 +170778989268,213,0 +170778989318,213,0 +170778989367,214,0 +170778989415,214,0 +170778989465,214,0 +170778989514,214,0 +170778989562,214,0 +170778989612,214,0 +170778989659,214,0 +170778989709,214,0 +170778989758,214,0 +170778989808,214,0 +170778989856,214,0 +170778989905,213,0 +170778989953,213,0 +170778990001,213,0 +170778990049,213,0 +170778990097,214,0 +170778990145,213,0 +170778990193,213,0 +170778990242,214,0 +170778990290,214,0 +170778990340,214,0 +170778990388,214,0 +170778990435,214,0 +170778990483,214,0 +170778990531,214,0 +170778990579,214,0 +170778990627,214,0 +170778990675,214,0 +170778990724,214,0 +170778990774,214,0 +170778990823,213,0 +170778990873,213,0 +170778990921,214,0 +170778990970,214,0 +170778991018,214,0 +170778991068,214,0 +170778991115,214,0 +170778991163,214,0 +170778991211,214,0 +170778991259,214,0 +170778991307,214,0 +170778991357,214,0 +170778991404,215,0 +170778991454,215,0 +170778991503,214,0 +170778991551,215,0 +170778991601,215,0 +170778991650,215,0 +170778991700,214,0 +170778991748,214,0 +170778991795,214,0 +170778991843,214,0 +170778991891,214,0 +170778991939,214,0 +170778991987,214,0 +170778992037,214,0 +170778992085,214,0 +170778992133,214,0 +170778992182,214,0 +170778992231,214,0 +170778992281,215,0 +170778992330,214,0 +170778992380,215,0 +170778992428,214,0 +170778992476,214,0 +170778992524,215,0 +170778992572,215,0 +170778992621,214,0 +170778992671,214,0 +170778992720,214,0 +170778992768,214,0 +170778992816,214,0 +170778992864,214,0 +170778992912,214,0 +170778992962,214,0 +170778993009,214,0 +170778993057,214,0 +170778993105,215,0 +170778993153,214,0 +170778993203,215,0 +170778993250,214,0 +170778993298,214,0 +170778993346,215,0 +170778993395,215,0 +170778993443,215,0 +170778993491,215,0 +170778993539,214,0 +170778993587,214,0 +170778993635,213,0 +170778993684,214,0 +170778993734,214,0 +170778993781,214,0 +170778993831,214,0 +170778993881,214,0 +170778993930,214,0 +170778993980,214,0 +170778994029,214,0 +170778994077,214,0 +170778994125,214,0 +170778994175,214,0 +170778994223,215,0 +170778994272,214,0 +170778994320,215,0 +170778994368,215,0 +170778994416,214,0 +170778994464,214,0 +170778994512,214,0 +170778994560,214,0 +170778994609,213,0 +170778994659,214,0 +170778994708,214,0 +170778994758,214,0 +170778994807,214,0 +170778994857,214,0 +170778994905,214,0 +170778994954,214,0 +170778995004,214,0 +170778995051,214,0 +170778995099,215,0 +170778995147,214,0 +170778995195,215,0 +170778995245,214,0 +170778995294,215,0 +170778995344,214,0 +170778995392,214,0 +170778995439,214,0 +170778995489,214,0 +170778995539,214,0 +170778995586,214,0 +170778995636,214,0 +170778995684,214,0 +170778995732,214,0 +170778995780,214,0 +170778995829,214,0 +170778995877,214,0 +170778995925,214,0 +170778995973,215,0 +170778996021,214,0 +170778996069,215,0 +170778996118,214,0 +170778996166,215,0 +170778996216,215,0 +170778996265,215,0 +170778996313,215,0 +170778996361,214,0 +170778996409,214,0 +170778996457,214,0 +170778996505,214,0 +170778996553,214,0 +170778996602,214,0 +170778996652,214,0 +170778996700,214,0 +170778996749,214,0 +170778996797,215,0 +170778996845,214,0 +170778996895,214,0 +170778996943,215,0 +170778996992,215,0 +170778997040,215,0 +170778997088,215,0 +170778997136,214,0 +170778997185,214,0 +170778997233,214,0 +170778997281,214,0 +170778997329,213,0 +170778997377,213,0 +170778997424,213,0 +170778997472,213,0 +170778997520,213,0 +170778997570,213,0 +170778997618,214,0 +170778997665,214,0 +170778997713,214,0 +170778997763,214,0 +170778997811,214,0 +170778997859,214,0 +170778997906,214,0 +170778997954,214,0 +170778998002,214,0 +170778998051,214,0 +170778998099,214,0 +170778998147,214,0 +170778998195,214,0 +170778998243,213,0 +170778998291,213,0 +170778998338,213,0 +170778998386,213,0 +170778998434,213,0 +170778998482,213,0 +170778998530,213,0 +170778998580,214,0 +170778998629,213,0 +170778998679,214,0 +170778998728,214,0 +170778998776,214,0 +170778998826,214,0 +170778998875,214,0 +170778998925,214,0 +170778998973,214,0 +170778999022,214,0 +170778999070,214,0 +170778999118,214,0 +170778999168,214,0 +170778999216,213,0 +170778999265,213,0 +170778999313,213,0 +170778999361,213,0 +170778999409,213,0 +170778999459,214,0 +170778999508,214,0 +170778999556,214,0 +170778999604,214,0 +170778999652,214,0 +170778999700,214,0 +170778999748,214,0 +170778999796,214,0 +170778999844,214,0 +170778999893,214,0 +170778999943,215,0 +170778999992,215,0 +170779000040,214,0 +170779000090,214,0 +170779000138,213,0 +170779000187,213,0 +170779000235,213,0 +170779000283,213,0 +170779000333,213,0 +170779000382,213,0 +170779000430,213,0 +170779000478,214,0 +170779000526,214,0 +170779000575,214,0 +170779000625,214,0 +170779000675,214,0 +170779000724,214,0 +170779000772,214,0 +170779000820,214,0 +170779000868,214,0 +170779000916,214,0 +170779000965,215,0 +170779001015,214,0 +170779001063,213,0 +170779001112,213,0 +170779001160,213,0 +170779001208,213,0 +170779001256,213,0 +170779001305,213,0 +170779001353,214,0 +170779001401,214,0 +170779001449,214,0 +170779001497,214,0 +170779001546,214,0 +170779001596,214,0 +170779001644,214,0 +170779001692,214,0 +170779001739,214,0 +170779001787,214,0 +170779001835,214,0 +170779001883,215,0 +170779001931,214,0 +170779001979,213,0 +170779002027,213,0 +170779002075,213,0 +170779002123,213,0 +170779002173,214,0 +170779002221,213,0 +170779002270,214,0 +170779002319,214,0 +170779002369,214,0 +170779002419,214,0 +170779002468,214,0 +170779002516,214,0 +170779002565,214,0 +170779002613,214,0 +170779002661,214,0 +170779002709,214,0 +170779002757,214,0 +170779002805,214,0 +170779002853,214,0 +170779002901,213,0 +170779002950,213,0 +170779003000,213,0 +170779003049,213,0 +170779003097,214,0 +170779003145,213,0 +170779003195,214,0 +170779003243,214,0 +170779003291,213,0 +170779003339,214,0 +170779003387,214,0 +170779003434,214,0 +170779003484,214,0 +170779003532,214,0 +170779003580,214,0 +170779003628,214,0 +170779003677,214,0 +170779003727,214,0 +170779003775,214,0 +170779003823,214,0 +170779003871,213,0 +170779003919,213,0 +170779003966,213,0 +170779004014,213,0 +170779004062,213,0 +170779004110,214,0 +170779004158,213,0 +170779004206,213,0 +170779004254,214,0 +170779004301,214,0 +170779004349,214,0 +170779004397,214,0 +170779004446,214,0 +170779004494,214,0 +170779004542,214,0 +170779004592,214,0 +170779004639,214,0 +170779004687,214,0 +170779004735,214,0 +170779004785,213,0 +170779004833,213,0 +170779004881,213,0 +170779004928,213,0 +170779004976,213,0 +170779005024,213,0 +170779005072,213,0 +170779005120,213,0 +170779005167,213,0 +170779005215,213,0 +170779005263,213,0 +170779005311,213,0 +170779005359,213,0 +170779005406,214,0 +170779005454,213,0 +170779005502,214,0 +170779005550,213,0 +170779005598,214,0 +170779005646,214,0 +170779005694,214,0 +170779005742,213,0 +170779005789,213,0 +170779005837,213,0 +170779005885,213,0 +170779005933,213,0 +170779005981,214,0 +170779006029,214,0 +170779006077,214,0 +170779006124,214,0 +170779006172,214,0 +170779006222,214,0 +170779006270,214,0 +170779006317,214,0 +170779006365,214,0 +170779006415,214,0 +170779006462,214,0 +170779006510,215,0 +170779006558,214,0 +170779006606,214,0 +170779006654,214,0 +170779006704,214,0 +170779006752,214,0 +170779006800,213,0 +170779006849,214,0 +170779006897,214,0 +170779006945,214,0 +170779006993,214,0 +170779007041,214,0 +170779007089,214,0 +170779007136,214,0 +170779007184,214,0 +170779007232,214,0 +170779007280,214,0 +170779007328,215,0 +170779007376,215,0 +170779007424,215,0 +170779007472,214,0 +170779007519,215,0 +170779007569,214,0 +170779007618,214,0 +170779007668,214,0 +170779007717,214,0 +170779007765,214,0 +170779007815,214,0 +170779007864,214,0 +170779007912,214,0 +170779007962,214,0 +170779008011,214,0 +170779008059,214,0 +170779008109,214,0 +170779008158,214,0 +170779008208,214,0 +170779008256,214,0 +170779008304,214,0 +170779008353,214,0 +170779008401,215,0 +170779008449,214,0 +170779008497,213,0 +170779008547,213,0 +170779008596,214,0 +170779008644,214,0 +170779008693,214,0 +170779008741,214,0 +170779008789,214,0 +170779008839,214,0 +170779008887,214,0 +170779008936,214,0 +170779008984,214,0 +170779009032,214,0 +170779009081,214,0 +170779009131,214,0 +170779009179,214,0 +170779009227,215,0 +170779009275,214,0 +170779009324,214,0 +170779009372,214,0 +170779009420,214,0 +170779009469,213,0 +170779009517,214,0 +170779009567,214,0 +170779009615,214,0 +170779009664,214,0 +170779009712,214,0 +170779009760,214,0 +170779009809,214,0 +170779009857,214,0 +170779009905,214,0 +170779009955,215,0 +170779010003,214,0 +170779010052,214,0 +170779010102,215,0 +170779010151,215,0 +170779010201,214,0 +170779010250,214,0 +170779010300,214,0 +170779010349,214,0 +170779010397,213,0 +170779010445,213,0 +170779010494,213,0 +170779010544,213,0 +170779010592,214,0 +170779010641,214,0 +170779010691,214,0 +170779010740,214,0 +170779010788,214,0 +170779010836,214,0 +170779010886,214,0 +170779010934,214,0 +170779010983,214,0 +170779011033,215,0 +170779011081,214,0 +170779011129,214,0 +170779011177,215,0 +170779011224,214,0 +170779011274,214,0 +170779011323,213,0 +170779011373,213,0 +170779011421,213,0 +170779011470,214,0 +170779011518,213,0 +170779011568,214,0 +170779011616,214,0 +170779011663,214,0 +170779011711,214,0 +170779011759,214,0 +170779011807,214,0 +170779011855,214,0 +170779011903,214,0 +170779011950,215,0 +170779011998,214,0 +170779012046,214,0 +170779012096,214,0 +170779012145,214,0 +170779012195,214,0 +170779012242,213,0 +170779012292,213,0 +170779012341,213,0 +170779012391,213,0 +170779012439,214,0 +170779012487,214,0 +170779012536,214,0 +170779012584,214,0 +170779012634,214,0 +170779012683,214,0 +170779012731,214,0 +170779012779,214,0 +170779012829,214,0 +170779012877,214,0 +170779012926,215,0 +170779012974,214,0 +170779013022,214,0 +170779013070,214,0 +170779013119,214,0 +170779013169,213,0 +170779013218,213,0 +170779013266,213,0 +170779013314,214,0 +170779013362,213,0 +170779013410,214,0 +170779013458,214,0 +170779013506,214,0 +170779013556,214,0 +170779013605,214,0 +170779013655,214,0 +170779013702,214,0 +170779013752,214,0 +170779013800,214,0 +170779013848,214,0 +170779013896,214,0 +170779013944,215,0 +170779013992,214,0 +170779014039,214,0 +170779014087,213,0 +170779014135,213,0 +170779014183,213,0 +170779014232,213,0 +170779014282,213,0 +170779014329,213,0 +170779014377,214,0 +170779014425,213,0 +170779014473,214,0 +170779014522,214,0 +170779014572,214,0 +170779014621,214,0 +170779014669,214,0 +170779014717,214,0 +170779014767,214,0 +170779014815,214,0 +170779014863,214,0 +170779014912,214,0 +170779014962,214,0 +170779015010,213,0 +170779015058,213,0 +170779015107,213,0 +170779015155,214,0 +170779015205,214,0 +170779015254,214,0 +170779015304,214,0 +170779015352,214,0 +170779015400,214,0 +170779015449,214,0 +170779015497,214,0 +170779015545,214,0 +170779015593,214,0 +170779015641,214,0 +170779015689,214,0 +170779015736,214,0 +170779015784,214,0 +170779015832,214,0 +170779015880,214,0 +170779015928,214,0 +170779015976,213,0 +170779016024,213,0 +170779016071,213,0 +170779016119,214,0 +170779016167,214,0 +170779016215,214,0 +170779016263,214,0 +170779016310,214,0 +170779016358,214,0 +170779016406,214,0 +170779016454,214,0 +170779016502,214,0 +170779016551,214,0 +170779016599,215,0 +170779016647,214,0 +170779016695,215,0 +170779016743,215,0 +170779016791,215,0 +170779016839,214,0 +170779016887,214,0 +170779016934,214,0 +170779016984,214,0 +170779017032,213,0 +170779017081,214,0 +170779017129,214,0 +170779017177,214,0 +170779017225,214,0 +170779017274,214,0 +170779017322,214,0 +170779017370,214,0 +170779017418,214,0 +170779017466,214,0 +170779017514,214,0 +170779017562,214,0 +170779017610,215,0 +170779017658,214,0 +170779017707,214,0 +170779017755,214,0 +170779017803,214,0 +170779017852,213,0 +170779017902,213,0 +170779017951,214,0 +170779018001,213,0 +170779018049,214,0 +170779018097,214,0 +170779018144,214,0 +170779018192,214,0 +170779018240,214,0 +170779018290,214,0 +170779018338,214,0 +170779018385,214,0 +170779018435,214,0 +170779018484,214,0 +170779018532,214,0 +170779018580,214,0 +170779018630,214,0 +170779018677,215,0 +170779018727,214,0 +170779018775,213,0 +170779018823,213,0 +170779018871,213,0 +170779018920,214,0 +170779018968,214,0 +170779019016,214,0 +170779019064,214,0 +170779019113,214,0 +170779019161,214,0 +170779019209,214,0 +170779019257,214,0 +170779019307,215,0 +170779019357,214,0 +170779019405,214,0 +170779019453,215,0 +170779019500,215,0 +170779019550,215,0 +170779019598,215,0 +170779019647,214,0 +170779019695,213,0 +170779019743,213,0 +170779019791,213,0 +170779019839,213,0 +170779019889,214,0 +170779019938,214,0 +170779019986,214,0 +170779020035,214,0 +170779020083,214,0 +170779020133,214,0 +170779020181,214,0 +170779020230,214,0 +170779020278,214,0 +170779020328,215,0 +170779020376,214,0 +170779020425,215,0 +170779020473,214,0 +170779020521,215,0 +170779020569,214,0 +170779020619,214,0 +170779020666,213,0 +170779020716,213,0 +170779020764,214,0 +170779020814,214,0 +170779020862,214,0 +170779020909,213,0 +170779020959,214,0 +170779021007,214,0 +170779021055,214,0 +170779021103,214,0 +170779021151,214,0 +170779021200,214,0 +170779021248,214,0 +170779021298,215,0 +170779021346,214,0 +170779021395,214,0 +170779021443,215,0 +170779021491,214,0 +170779021539,214,0 +170779021587,213,0 +170779021636,213,0 +170779021684,214,0 +170779021732,213,0 +170779021780,214,0 +170779021828,214,0 +170779021878,214,0 +170779021927,214,0 +170779021975,214,0 +170779022023,214,0 +170779022070,214,0 +170779022120,214,0 +170779022167,214,0 +170779022215,215,0 +170779022263,214,0 +170779022311,215,0 +170779022359,215,0 +170779022407,214,0 +170779022456,214,0 +170779022504,213,0 +170779022552,214,0 +170779022602,214,0 +170779022649,213,0 +170779022697,214,0 +170779022747,214,0 +170779022796,214,0 +170779022846,214,0 +170779022894,214,0 +170779022942,214,0 +170779022989,214,0 +170779023037,214,0 +170779023085,215,0 +170779023135,214,0 +170779023183,214,0 +170779023231,214,0 +170779023279,215,0 +170779023326,214,0 +170779023374,214,0 +170779023422,214,0 +170779023470,214,0 +170779023520,214,0 +170779023569,214,0 +170779023617,214,0 +170779023665,214,0 +170779023713,214,0 +170779023761,214,0 +170779023809,214,0 +170779023858,214,0 +170779023908,214,0 +170779023956,215,0 +170779024005,214,0 +170779024053,214,0 +170779024101,215,0 +170779024151,215,0 +170779024199,215,0 +170779024246,215,0 +170779024296,214,0 +170779024344,214,0 +170779024393,214,0 +170779024443,214,0 +170779024492,214,0 +170779024542,214,0 +170779024590,214,0 +170779024639,214,0 +170779024687,214,0 +170779024737,214,0 +170779024786,214,0 +170779024834,214,0 +170779024884,214,0 +170779024932,214,0 +170779024981,215,0 +170779025029,215,0 +170779025077,215,0 +170779025126,215,0 +170779025176,215,0 +170779025226,215,0 +170779025275,214,0 +170779025323,213,0 +170779025371,214,0 +170779025419,214,0 +170779025467,214,0 +170779025515,214,0 +170779025563,214,0 +170779025612,214,0 +170779025662,214,0 +170779025710,214,0 +170779025758,214,0 +170779025806,214,0 +170779025854,215,0 +170779025902,215,0 +170779025950,215,0 +170779025999,215,0 +170779026047,215,0 +170779026097,215,0 +170779026145,215,0 +170779026193,214,0 +170779026241,213,0 +170779026290,214,0 +170779026338,213,0 +170779026388,214,0 +170779026437,214,0 +170779026485,214,0 +170779026533,214,0 +170779026581,214,0 +170779026629,214,0 +170779026677,214,0 +170779026726,215,0 +170779026774,214,0 +170779026822,214,0 +170779026870,214,0 +170779026919,214,0 +170779026969,214,0 +170779027017,214,0 +170779027065,214,0 +170779027113,213,0 +170779027162,213,0 +170779027210,213,0 +170779027260,214,0 +170779027309,214,0 +170779027359,214,0 +170779027407,214,0 +170779027455,214,0 +170779027503,214,0 +170779027552,214,0 +170779027600,214,0 +170779027648,214,0 +170779027696,214,0 +170779027746,214,0 +170779027794,214,0 +170779027842,215,0 +170779027891,215,0 +170779027939,215,0 +170779027987,215,0 +170779028037,214,0 +170779028084,213,0 +170779028132,213,0 +170779028180,213,0 +170779028230,214,0 +170779028278,214,0 +170779028326,214,0 +170779028375,213,0 +170779028423,214,0 +170779028471,214,0 +170779028519,214,0 +170779028568,214,0 +170779028616,214,0 +170779028666,214,0 +170779028716,214,0 +170779028765,215,0 +170779028813,214,0 +170779028861,215,0 +170779028909,215,0 +170779028958,214,0 +170779029006,214,0 +170779029056,214,0 +170779029105,213,0 +170779029155,213,0 +170779029203,214,0 +170779029251,213,0 +170779029299,214,0 +170779029348,214,0 +170779029398,214,0 +170779029446,214,0 +170779029494,214,0 +170779029542,214,0 +170779029591,214,0 +170779029639,214,0 +170779029687,214,0 +170779029736,214,0 +170779029786,214,0 +170779029835,214,0 +170779029883,215,0 +170779029933,213,0 +170779029982,213,0 +170779030032,213,0 +170779030081,213,0 +170779030131,213,0 +170779030180,213,0 +170779030228,213,0 +170779030278,213,0 +170779030327,213,0 +170779030375,214,0 +170779030425,214,0 +170779030473,214,0 +170779030521,214,0 +170779030568,214,0 +170779030618,214,0 +170779030666,214,0 +170779030714,214,0 +170779030762,214,0 +170779030810,214,0 +170779030858,214,0 +170779030907,213,0 +170779030955,213,0 +170779031003,213,0 +170779031051,213,0 +170779031099,213,0 +170779031148,213,0 +170779031198,214,0 +170779031246,214,0 +170779031294,213,0 +170779031343,214,0 +170779031391,214,0 +170779031439,214,0 +170779031487,214,0 +170779031535,214,0 +170779031585,214,0 +170779031633,214,0 +170779031682,214,0 +170779031730,215,0 +170779031780,214,0 +170779031828,213,0 +170779031877,213,0 +170779031925,213,0 +170779031973,213,0 +170779032023,213,0 +170779032070,213,0 +170779032118,213,0 +170779032166,213,0 +170779032214,213,0 +170779032264,213,0 +170779032313,213,0 +170779032363,213,0 +170779032412,213,0 +170779032460,214,0 +170779032508,214,0 +170779032556,214,0 +170779032606,214,0 +170779032654,214,0 +170779032703,214,0 +170779032751,213,0 +170779032799,213,0 +170779032847,213,0 +170779032895,213,0 +170779032943,214,0 +170779032993,213,0 +170779033040,213,0 +170779033088,214,0 +170779033138,214,0 +170779033186,214,0 +170779033235,214,0 +170779033285,214,0 +170779033333,214,0 +170779033381,214,0 +170779033430,214,0 +170779033480,214,0 +170779033528,214,0 +170779033576,214,0 +170779033624,214,0 +170779033672,213,0 +170779033721,213,0 +170779033771,213,0 +170779033820,213,0 +170779033870,214,0 +170779033919,213,0 +170779033969,213,0 +170779034018,214,0 +170779034066,214,0 +170779034114,214,0 +170779034162,214,0 +170779034210,214,0 +170779034258,214,0 +170779034306,214,0 +170779034356,214,0 +170779034403,214,0 +170779034451,214,0 +170779034499,215,0 +170779034549,214,0 +170779034597,213,0 +170779034645,213,0 +170779034693,213,0 +170779034741,213,0 +170779034790,213,0 +170779034840,213,0 +170779034888,214,0 +170779034937,214,0 +170779034987,214,0 +170779035035,214,0 +170779035083,214,0 +170779035131,214,0 +170779035180,214,0 +170779035230,214,0 +170779035279,214,0 +170779035327,214,0 +170779035377,214,0 +170779035425,214,0 +170779035472,215,0 +170779035520,213,0 +170779035568,214,0 +170779035616,214,0 +170779035664,214,0 +170779035714,214,0 +170779035762,214,0 +170779035811,214,0 +170779035859,214,0 +170779035907,214,0 +170779035955,214,0 +170779036003,214,0 +170779036051,214,0 +170779036100,214,0 +170779036148,215,0 +170779036198,215,0 +170779036246,215,0 +170779036293,215,0 +170779036341,215,0 +170779036391,214,0 +170779036439,214,0 +170779036488,214,0 +170779036536,214,0 +170779036584,214,0 +170779036634,214,0 +170779036682,214,0 +170779036731,214,0 +170779036779,214,0 +170779036827,214,0 +170779036875,214,0 +170779036925,214,0 +170779036974,214,0 +170779037022,215,0 +170779037070,215,0 +170779037118,215,0 +170779037167,215,0 +170779037215,215,0 +170779037265,215,0 +170779037314,214,0 +170779037364,214,0 +170779037413,214,0 +170779037461,214,0 +170779037511,214,0 +170779037560,214,0 +170779037610,214,0 +170779037658,214,0 +170779037706,214,0 +170779037754,214,0 +170779037803,214,0 +170779037853,214,0 +170779037901,214,0 +170779037950,215,0 +170779038000,215,0 +170779038047,215,0 +170779038095,215,0 +170779038145,215,0 +170779038194,215,0 +170779038244,215,0 +170779038293,214,0 +170779038341,214,0 +170779038389,214,0 +170779038439,214,0 +170779038488,214,0 +170779038536,214,0 +170779038584,214,0 +170779038632,214,0 +170779038680,214,0 +170779038728,214,0 +170779038775,214,0 +170779038825,215,0 +170779038873,214,0 +170779038921,215,0 +170779038968,215,0 +170779039016,215,0 +170779039064,215,0 +170779039112,215,0 +170779039162,215,0 +170779039210,214,0 +170779039258,214,0 +170779039305,214,0 +170779039353,214,0 +170779039403,214,0 +170779039451,214,0 +170779039499,214,0 +170779039546,214,0 +170779039594,214,0 +170779039642,214,0 +170779039690,214,0 +170779039738,214,0 +170779039786,215,0 +170779039833,215,0 +170779039881,215,0 +170779039929,215,0 +170779039977,215,0 +170779040026,215,0 +170779040075,215,0 +170779040125,215,0 +170779040174,214,0 +170779040222,214,0 +170779040270,214,0 +170779040318,214,0 +170779040367,214,0 +170779040415,214,0 +170779040463,214,0 +170779040513,214,0 +170779040561,214,0 +170779040609,215,0 +170779040656,215,0 +170779040706,215,0 +170779040756,215,0 +170779040805,215,0 +170779040855,215,0 +170779040904,215,0 +170779040954,215,0 +170779041003,215,0 +170779041051,215,0 +170779041099,214,0 +170779041149,214,0 +170779041198,214,0 +170779041248,214,0 +170779041295,214,0 +170779041345,214,0 +170779041393,214,0 +170779041441,214,0 +170779041490,214,0 +170779041538,214,0 +170779041586,215,0 +170779041634,214,0 +170779041682,215,0 +170779041730,215,0 +170779041778,214,0 +170779041826,215,0 +170779041874,215,0 +170779041922,215,0 +170779041969,215,0 +170779042019,214,0 +170779042067,214,0 +170779042115,214,0 +170779042163,214,0 +170779042212,214,0 +170779042260,214,0 +170779042310,214,0 +170779042358,214,0 +170779042406,214,0 +170779042455,214,0 +170779042505,214,0 +170779042553,214,0 +170779042600,214,0 +170779042650,214,0 +170779042698,214,0 +170779042746,215,0 +170779042794,214,0 +170779042842,215,0 +170779042891,214,0 +170779042941,214,0 +170779042989,213,0 +170779043037,213,0 +170779043084,213,0 +170779043132,213,0 +170779043180,214,0 +170779043228,214,0 +170779043278,214,0 +170779043325,214,0 +170779043375,214,0 +170779043424,214,0 +170779043474,215,0 +170779043522,215,0 +170779043571,215,0 +170779043619,215,0 +170779043669,215,0 +170779043718,215,0 +170779043766,215,0 +170779043814,215,0 +170779043864,214,0 +170779043912,213,0 +170779043960,213,0 +170779044009,214,0 +170779044059,214,0 +170779044107,214,0 +170779044155,214,0 +170779044204,214,0 +170779044253,214,0 +170779044301,214,0 +170779044349,214,0 +170779044399,214,0 +170779044448,214,0 +170779044498,214,0 +170779044546,214,0 +170779044594,214,0 +170779044642,215,0 +170779044691,214,0 +170779044739,215,0 +170779044787,215,0 +170779044835,214,0 +170779044883,213,0 +170779044931,213,0 +170779044979,214,0 +170779045027,214,0 +170779045075,214,0 +170779045125,214,0 +170779045172,214,0 +170779045222,214,0 +170779045271,214,0 +170779045319,214,0 +170779045367,214,0 +170779045415,214,0 +170779045463,214,0 +170779045511,215,0 +170779045561,215,0 +170779045609,215,0 +170779045657,215,0 +170779045706,215,0 +170779045754,213,0 +170779045802,213,0 +170779045850,213,0 +170779045898,214,0 +170779045946,214,0 +170779045994,214,0 +170779046042,214,0 +170779046090,214,0 +170779046137,214,0 +170779046185,214,0 +170779046233,214,0 +170779046281,214,0 +170779046331,214,0 +170779046380,214,0 +170779046428,214,0 +170779046476,214,0 +170779046524,215,0 +170779046572,215,0 +170779046620,214,0 +170779046669,214,0 +170779046719,213,0 +170779046767,213,0 +170779046815,213,0 +170779046863,213,0 +170779046912,214,0 +170779046962,214,0 +170779047009,214,0 +170779047057,214,0 +170779047107,214,0 +170779047155,214,0 +170779047203,214,0 +170779047251,214,0 +170779047299,214,0 +170779047347,214,0 +170779047396,214,0 +170779047444,215,0 +170779047492,214,0 +170779047542,214,0 +170779047590,214,0 +170779047638,213,0 +170779047686,213,0 +170779047735,214,0 +170779047783,213,0 +170779047831,214,0 +170779047879,214,0 +170779047927,214,0 +170779047975,214,0 +170779048023,214,0 +170779048070,214,0 +170779048118,214,0 +170779048166,214,0 +170779048216,214,0 +170779048264,214,0 +170779048313,214,0 +170779048361,214,0 +170779048409,214,0 +170779048457,214,0 +170779048505,215,0 +170779048553,214,0 +170779048602,213,0 +170779048650,213,0 +170779048698,213,0 +170779048748,213,0 +170779048796,214,0 +170779048844,214,0 +170779048891,214,0 +170779048941,214,0 +170779048989,214,0 +170779049038,214,0 +170779049088,214,0 +170779049137,214,0 +170779049187,214,0 +170779049236,214,0 +170779049286,214,0 +170779049334,214,0 +170779049383,214,0 +170779049431,215,0 +170779049481,214,0 +170779049528,213,0 +170779049578,213,0 +170779049627,214,0 +170779049675,214,0 +170779049723,214,0 +170779049771,214,0 +170779049819,214,0 +170779049867,214,0 +170779049915,214,0 +170779049963,214,0 +170779050012,214,0 +170779050062,214,0 +170779050111,214,0 +170779050159,214,0 +170779050207,214,0 +170779050257,214,0 +170779050305,215,0 +170779050354,215,0 +170779050402,214,0 +170779050450,213,0 +170779050499,213,0 +170779050549,213,0 +170779050598,213,0 +170779050646,214,0 +170779050694,214,0 +170779050744,214,0 +170779050791,214,0 +170779050841,214,0 +170779050889,214,0 +170779050937,214,0 +170779050984,214,0 +170779051032,214,0 +170779051080,214,0 +170779051128,214,0 +170779051178,214,0 +170779051225,214,0 +170779051273,214,0 +170779051321,214,0 +170779051370,214,0 +170779051418,214,0 +170779051466,214,0 +170779051514,214,0 +170779051562,214,0 +170779051610,214,0 +170779051658,214,0 +170779051705,214,0 +170779051753,214,0 +170779051801,214,0 +170779051849,214,0 +170779051897,214,0 +170779051947,214,0 +170779051994,215,0 +170779052044,215,0 +170779052092,215,0 +170779052140,215,0 +170779052188,215,0 +170779052237,214,0 +170779052287,214,0 +170779052335,213,0 +170779052383,214,0 +170779052432,214,0 +170779052481,214,0 +170779052529,214,0 +170779052576,214,0 +170779052624,214,0 +170779052674,214,0 +170779052722,214,0 +170779052771,214,0 +170779052821,214,0 +170779052869,214,0 +170779052917,215,0 +170779052966,214,0 +170779053016,215,0 +170779053064,215,0 +170779053113,215,0 +170779053161,215,0 +170779053211,214,0 +170779053259,213,0 +170779053307,214,0 +170779053356,214,0 +170779053404,214,0 +170779053452,214,0 +170779053502,214,0 +170779053551,214,0 +170779053599,214,0 +170779053647,214,0 +170779053695,214,0 +170779053743,215,0 +170779053792,215,0 +170779053840,215,0 +170779053888,215,0 +170779053936,215,0 +170779053984,215,0 +170779054033,215,0 +170779054081,215,0 +170779054129,214,0 +170779054177,214,0 +170779054225,214,0 +170779054275,214,0 +170779054323,214,0 +170779054372,214,0 +170779054420,214,0 +170779054470,214,0 +170779054519,214,0 +170779054567,214,0 +170779054617,214,0 +170779054666,214,0 +170779054714,215,0 +170779054762,215,0 +170779054810,215,0 +170779054859,215,0 +170779054907,215,0 +170779054955,214,0 +170779055003,215,0 +170779055053,214,0 +170779055100,213,0 +170779055148,213,0 +170779055196,214,0 +170779055244,214,0 +170779055292,214,0 +170779055340,214,0 +170779055388,214,0 +170779055436,214,0 +170779055484,214,0 +170779055532,214,0 +170779055580,214,0 +170779055628,214,0 +170779055677,214,0 +170779055725,215,0 +170779055774,214,0 +170779055822,214,0 +170779055872,214,0 +170779055921,215,0 +170779055971,214,0 +170779056019,214,0 +170779056067,213,0 +170779056115,214,0 +170779056163,214,0 +170779056210,214,0 +170779056260,214,0 +170779056308,214,0 +170779056356,214,0 +170779056404,214,0 +170779056452,214,0 +170779056500,214,0 +170779056549,214,0 +170779056599,214,0 +170779056646,214,0 +170779056696,214,0 +170779056744,214,0 +170779056793,215,0 +170779056841,214,0 +170779056889,215,0 +170779056939,214,0 +170779056987,213,0 +170779057035,213,0 +170779057083,213,0 +170779057132,213,0 +170779057180,214,0 +170779057228,214,0 +170779057278,214,0 +170779057325,214,0 +170779057373,214,0 +170779057423,214,0 +170779057472,214,0 +170779057520,214,0 +170779057570,214,0 +170779057618,214,0 +170779057666,214,0 +170779057715,214,0 +170779057763,214,0 +170779057811,214,0 +170779057859,214,0 +170779057907,213,0 +170779057957,213,0 +170779058004,213,0 +170779058052,213,0 +170779058102,213,0 +170779058150,213,0 +170779058199,214,0 +170779058247,214,0 +170779058295,214,0 +170779058343,214,0 +170779058391,214,0 +170779058439,214,0 +170779058489,214,0 +170779058537,214,0 +170779058586,214,0 +170779058634,214,0 +170779058684,214,0 +170779058732,215,0 +170779058781,214,0 +170779058831,213,0 +170779058879,213,0 +170779058926,213,0 +170779058974,214,0 +170779059022,214,0 +170779059070,213,0 +170779059118,214,0 +170779059166,214,0 +170779059214,214,0 +170779059263,214,0 +170779059311,214,0 +170779059361,214,0 +170779059408,214,0 +170779059456,214,0 +170779059504,214,0 +170779059552,214,0 +170779059602,214,0 +170779059650,214,0 +170779059698,214,0 +170779059745,214,0 +170779059793,213,0 +170779059843,214,0 +170779059891,214,0 +170779059939,213,0 +170779059987,214,0 +170779060036,214,0 +170779060086,214,0 +170779060135,214,0 +170779060183,214,0 +170779060233,214,0 +170779060282,214,0 +170779060332,214,0 +170779060381,214,0 +170779060431,214,0 +170779060480,214,0 +170779060528,215,0 +170779060576,214,0 +170779060624,215,0 +170779060672,214,0 +170779060720,214,0 +170779060768,214,0 +170779060816,214,0 +170779060864,214,0 +170779060912,214,0 +170779060961,214,0 +170779061009,214,0 +170779061058,214,0 +170779061106,214,0 +170779061154,214,0 +170779061202,215,0 +170779061251,214,0 +170779061299,215,0 +170779061347,214,0 +170779061395,215,0 +170779061442,214,0 +170779061490,214,0 +170779061538,215,0 +170779061586,214,0 +170779061634,213,0 +170779061682,213,0 +170779061730,213,0 +170779061777,213,0 +170779061825,214,0 +170779061875,214,0 +170779061923,213,0 +170779061970,214,0 +170779062018,214,0 +170779062066,214,0 +170779062114,214,0 +170779062162,214,0 +170779062209,214,0 +170779062259,214,0 +170779062307,214,0 +170779062354,214,0 +170779062402,214,0 +170779062450,214,0 +170779062498,214,0 +170779062548,213,0 +170779062596,213,0 +170779062644,214,0 +170779062693,214,0 +170779062742,214,0 +170779062792,214,0 +170779062841,213,0 +170779062889,214,0 +170779062937,214,0 +170779062985,214,0 +170779063033,214,0 +170779063083,214,0 +170779063132,214,0 +170779063182,214,0 +170779063231,215,0 +170779063281,215,0 +170779063329,215,0 +170779063378,215,0 +170779063426,215,0 +170779063474,214,0 +170779063522,213,0 +170779063570,214,0 +170779063620,214,0 +170779063669,214,0 +170779063717,214,0 +170779063765,214,0 +170779063815,214,0 +170779063864,214,0 +170779063914,214,0 +170779063962,214,0 +170779064011,215,0 +170779064059,215,0 +170779064107,215,0 +170779064156,215,0 +170779064204,215,0 +170779064252,215,0 +170779064300,215,0 +170779064348,214,0 +170779064396,214,0 +170779064444,213,0 +170779064492,213,0 +170779064540,213,0 +170779064589,213,0 +170779064637,213,0 +170779064685,214,0 +170779064733,214,0 +170779064781,214,0 +170779064829,214,0 +170779064878,214,0 +170779064926,214,0 +170779064974,214,0 +170779065024,214,0 +170779065073,214,0 +170779065123,214,0 +170779065171,214,0 +170779065220,215,0 +170779065268,214,0 +170779065316,214,0 +170779065365,213,0 +170779065413,213,0 +170779065461,213,0 +170779065509,213,0 +170779065559,213,0 +170779065607,214,0 +170779065655,213,0 +170779065704,213,0 +170779065754,214,0 +170779065803,214,0 +170779065851,214,0 +170779065901,214,0 +170779065949,214,0 +170779065997,214,0 +170779066045,214,0 +170779066094,214,0 +170779066142,214,0 +170779066192,214,0 +170779066241,214,0 +170779066291,213,0 +170779066340,213,0 +170779066390,213,0 +170779066438,214,0 +170779066486,214,0 +170779066534,214,0 +170779066581,214,0 +170779066631,214,0 +170779066680,214,0 +170779066730,214,0 +170779066778,214,0 +170779066826,214,0 +170779066874,214,0 +170779066923,214,0 +170779066973,215,0 +170779067021,215,0 +170779067070,215,0 +170779067118,215,0 +170779067166,214,0 +170779067214,214,0 +170779067264,214,0 +170779067312,214,0 +170779067360,214,0 +170779067407,214,0 +170779067455,214,0 +170779067503,214,0 +170779067551,214,0 +170779067599,214,0 +170779067647,214,0 +170779067695,214,0 +170779067744,214,0 +170779067792,215,0 +170779067840,215,0 +170779067889,215,0 +170779067939,215,0 +170779067987,215,0 +170779068034,215,0 +170779068084,215,0 +170779068133,214,0 +170779068181,213,0 +170779068231,214,0 +170779068278,214,0 +170779068326,214,0 +170779068374,214,0 +170779068422,214,0 +170779068470,214,0 +170779068519,214,0 +170779068567,214,0 +170779068615,214,0 +170779068663,215,0 +170779068710,215,0 +170779068758,215,0 +170779068806,215,0 +170779068854,215,0 +170779068902,215,0 +170779068950,215,0 +170779068999,215,0 +170779069047,214,0 +170779069095,214,0 +170779069144,214,0 +170779069194,214,0 +170779069242,214,0 +170779069290,214,0 +170779069338,214,0 +170779069387,214,0 +170779069435,214,0 +170779069483,214,0 +170779069531,214,0 +170779069579,214,0 +170779069627,215,0 +170779069675,215,0 +170779069723,215,0 +170779069772,215,0 +170779069820,215,0 +170779069869,215,0 +170779069917,215,0 +170779069965,215,0 +170779070013,214,0 +170779070061,214,0 +170779070110,214,0 +170779070158,214,0 +170779070206,214,0 +170779070254,214,0 +170779070304,214,0 +170779070352,214,0 +170779070400,214,0 +170779070447,214,0 +170779070497,214,0 +170779070546,214,0 +170779070594,215,0 +170779070642,214,0 +170779070690,215,0 +170779070740,215,0 +170779070788,215,0 +170779070836,215,0 +170779070885,214,0 +170779070935,214,0 +170779070984,214,0 +170779071032,214,0 +170779071080,214,0 +170779071130,214,0 +170779071177,214,0 +170779071227,214,0 +170779071275,214,0 +170779071323,214,0 +170779071371,214,0 +170779071420,214,0 +170779071468,214,0 +170779071518,214,0 +170779071565,215,0 +170779071613,215,0 +170779071663,215,0 +170779071711,215,0 +170779071759,215,0 +170779071807,215,0 +170779071855,214,0 +170779071903,214,0 +170779071951,214,0 +170779071998,213,0 +170779072048,214,0 +170779072098,214,0 +170779072146,214,0 +170779072195,214,0 +170779072245,214,0 +170779072294,214,0 +170779072343,214,0 +170779072391,214,0 +170779072441,214,0 +170779072489,214,0 +170779072537,214,0 +170779072585,215,0 +170779072633,215,0 +170779072682,215,0 +170779072730,215,0 +170779072778,214,0 +170779072826,214,0 +170779072874,214,0 +170779072923,214,0 +170779072971,214,0 +170779073019,214,0 +170779073067,214,0 +170779073117,214,0 +170779073166,214,0 +170779073214,214,0 +170779073262,214,0 +170779073312,214,0 +170779073359,214,0 +170779073407,215,0 +170779073455,215,0 +170779073503,215,0 +170779073551,215,0 +170779073599,215,0 +170779073647,215,0 +170779073697,214,0 +170779073746,213,0 +170779073794,213,0 +170779073842,213,0 +170779073892,214,0 +170779073941,214,0 +170779073991,214,0 +170779074039,214,0 +170779074086,214,0 +170779074134,214,0 +170779074184,214,0 +170779074232,214,0 +170779074280,215,0 +170779074329,215,0 +170779074377,215,0 +170779074425,215,0 +170779074473,215,0 +170779074521,215,0 +170779074569,214,0 +170779074617,215,0 +170779074666,214,0 +170779074714,213,0 +170779074764,213,0 +170779074813,214,0 +170779074863,213,0 +170779074910,213,0 +170779074960,214,0 +170779075009,214,0 +170779075057,214,0 +170779075107,214,0 +170779075155,214,0 +170779075203,214,0 +170779075252,214,0 +170779075300,214,0 +170779075348,214,0 +170779075396,215,0 +170779075446,214,0 +170779075494,214,0 +170779075542,214,0 +170779075590,213,0 +170779075637,213,0 +170779075685,213,0 +170779075735,213,0 +170779075783,213,0 +170779075831,214,0 +170779075880,214,0 +170779075928,214,0 +170779075976,214,0 +170779076026,213,0 +170779076075,214,0 +170779076125,214,0 +170779076174,214,0 +170779076223,214,0 +170779076271,214,0 +170779076321,214,0 +170779076370,214,0 +170779076418,214,0 +170779076468,214,0 +170779076517,214,0 +170779076565,213,0 +170779076613,213,0 +170779076663,213,0 +170779076711,214,0 +170779076759,214,0 +170779076807,214,0 +170779076854,213,0 +170779076904,214,0 +170779076954,214,0 +170779077003,214,0 +170779077051,214,0 +170779077099,214,0 +170779077148,214,0 +170779077196,214,0 +170779077244,214,0 +170779077292,215,0 +170779077340,214,0 +170779077388,215,0 +170779077436,214,0 +170779077486,213,0 +170779077535,213,0 +170779077583,213,0 +170779077633,213,0 +170779077680,214,0 +170779077728,213,0 +170779077776,213,0 +170779077824,214,0 +170779077872,214,0 +170779077922,214,0 +170779077972,214,0 +170779078021,214,0 +170779078069,214,0 +170779078117,214,0 +170779078165,214,0 +170779078213,214,0 +170779078261,214,0 +170779078309,215,0 +170779078357,214,0 +170779078405,214,0 +170779078453,213,0 +170779078500,213,0 +170779078548,213,0 +170779078596,213,0 +170779078644,213,0 +170779078692,213,0 +170779078740,214,0 +170779078788,213,0 +170779078836,214,0 +170779078886,214,0 +170779078934,214,0 +170779078982,214,0 +170779079030,214,0 +170779079079,214,0 +170779079129,214,0 +170779079177,214,0 +170779079225,214,0 +170779079272,215,0 +170779079320,213,0 +170779079370,213,0 +170779079418,213,0 +170779079466,213,0 +170779079515,213,0 +170779079563,213,0 +170779079613,214,0 +170779079662,214,0 +170779079712,214,0 +170779079760,214,0 +170779079808,214,0 +170779079856,214,0 +170779079905,214,0 +170779079953,214,0 +170779080001,214,0 +170779080049,214,0 +170779080097,214,0 +170779080146,214,0 +170779080194,214,0 +170779080243,214,0 +170779080293,213,0 +170779080342,213,0 +170779080390,213,0 +170779080438,213,0 +170779080486,213,0 +170779080534,214,0 +170779080583,214,0 +170779080633,214,0 +170779080682,214,0 +170779080730,214,0 +170779080779,214,0 +170779080829,214,0 +170779080879,214,0 +170779080927,214,0 +170779080976,215,0 +170779081024,215,0 +170779081072,215,0 +170779081120,214,0 +170779081168,214,0 +170779081217,213,0 +170779081265,213,0 +170779081315,213,0 +170779081363,213,0 +170779081412,213,0 +170779081462,213,0 +170779081510,213,0 +170779081559,214,0 +170779081607,214,0 +170779081655,214,0 +170779081703,214,0 +170779081751,214,0 +170779081799,214,0 +170779081847,214,0 +170779081895,214,0 +170779081944,214,0 +170779081992,214,0 +170779082040,214,0 +170779082088,214,0 +170779082136,214,0 +170779082185,214,0 +170779082233,214,0 +170779082281,215,0 +170779082331,215,0 +170779082380,215,0 +170779082430,215,0 +170779082478,215,0 +170779082527,215,0 +170779082575,214,0 +170779082623,214,0 +170779082671,214,0 +170779082720,214,0 +170779082768,214,0 +170779082816,214,0 +170779082864,214,0 +170779082912,214,0 +170779082962,214,0 +170779083010,214,0 +170779083058,214,0 +170779083107,214,0 +170779083155,214,0 +170779083205,214,0 +170779083254,214,0 +170779083302,215,0 +170779083350,215,0 +170779083398,215,0 +170779083447,215,0 +170779083495,214,0 +170779083543,213,0 +170779083593,214,0 +170779083641,214,0 +170779083690,214,0 +170779083738,214,0 +170779083786,214,0 +170779083836,214,0 +170779083885,214,0 +170779083933,214,0 +170779083981,214,0 +170779084029,214,0 +170779084077,214,0 +170779084125,215,0 +170779084173,215,0 +170779084221,215,0 +170779084269,215,0 +170779084317,214,0 +170779084365,215,0 +170779084414,214,0 +170779084464,214,0 +170779084513,214,0 +170779084561,214,0 +170779084609,214,0 +170779084657,214,0 +170779084707,214,0 +170779084756,214,0 +170779084804,214,0 +170779084852,214,0 +170779084902,214,0 +170779084951,215,0 +170779085001,215,0 +170779085050,215,0 +170779085098,215,0 +170779085146,214,0 +170779085194,215,0 +170779085242,215,0 +170779085292,215,0 +170779085341,214,0 +170779085391,214,0 +170779085439,214,0 +170779085489,214,0 +170779085538,214,0 +170779085586,214,0 +170779085634,214,0 +170779085683,214,0 +170779085731,214,0 +170779085779,215,0 +170779085827,215,0 +170779085875,215,0 +170779085924,215,0 +170779085974,215,0 +170779086023,214,0 +170779086071,215,0 +170779086119,215,0 +170779086167,215,0 +170779086215,214,0 +170779086263,214,0 +170779086311,214,0 +170779086360,214,0 +170779086408,214,0 +170779086456,214,0 +170779086504,214,0 +170779086554,214,0 +170779086603,214,0 +170779086653,214,0 +170779086701,214,0 +170779086749,214,0 +170779086797,215,0 +170779086845,214,0 +170779086894,215,0 +170779086944,215,0 +170779086993,215,0 +170779087041,215,0 +170779087089,215,0 +170779087137,215,0 +170779087185,215,0 +170779087233,214,0 +170779087282,213,0 +170779087330,214,0 +170779087380,214,0 +170779087427,214,0 +170779087475,214,0 +170779087523,214,0 +170779087573,214,0 +170779087622,214,0 +170779087670,214,0 +170779087718,214,0 +170779087766,214,0 +170779087814,214,0 +170779087862,214,0 +170779087910,215,0 +170779087958,214,0 +170779088008,215,0 +170779088055,214,0 +170779088103,215,0 +170779088151,214,0 +170779088199,213,0 +170779088249,214,0 +170779088297,214,0 +170779088344,214,0 +170779088392,214,0 +170779088442,214,0 +170779088490,214,0 +170779088539,214,0 +170779088589,214,0 +170779088638,214,0 +170779088686,214,0 +170779088736,214,0 +170779088784,215,0 +170779088833,215,0 +170779088883,215,0 +170779088932,215,0 +170779088982,215,0 +170779089030,215,0 +170779089078,214,0 +170779089127,213,0 +170779089175,213,0 +170779089223,214,0 +170779089273,214,0 +170779089320,214,0 +170779089370,214,0 +170779089419,214,0 +170779089469,214,0 +170779089519,214,0 +170779089566,214,0 +170779089616,214,0 +170779089664,214,0 +170779089712,215,0 +170779089760,215,0 +170779089807,214,0 +170779089855,215,0 +170779089903,215,0 +170779089951,215,0 +170779089999,214,0 +170779090049,213,0 +170779090098,214,0 +170779090146,213,0 +170779090196,213,0 +170779090245,213,0 +170779090293,214,0 +170779090341,214,0 +170779090389,214,0 +170779090437,214,0 +170779090485,214,0 +170779090533,214,0 +170779090580,214,0 +170779090628,214,0 +170779090678,214,0 +170779090727,214,0 +170779090775,215,0 +170779090823,215,0 +170779090871,214,0 +170779090919,214,0 +170779090967,214,0 +170779091015,213,0 +170779091063,214,0 +170779091112,213,0 +170779091160,213,0 +170779091208,214,0 +170779091258,213,0 +170779091306,214,0 +170779091355,214,0 +170779091403,214,0 +170779091452,214,0 +170779091500,214,0 +170779091548,214,0 +170779091598,214,0 +170779091646,214,0 +170779091694,214,0 +170779091742,214,0 +170779091790,214,0 +170779091839,215,0 +170779091887,214,0 +170779091937,213,0 +170779091984,213,0 +170779092032,213,0 +170779092082,213,0 +170779092130,214,0 +170779092178,213,0 +170779092227,214,0 +170779092275,213,0 +170779092323,214,0 +170779092373,214,0 +170779092421,214,0 +170779092468,214,0 +170779092516,214,0 +170779092564,214,0 +170779092612,214,0 +170779092660,214,0 +170779092708,214,0 +170779092756,214,0 +170779092806,214,0 +170779092853,213,0 +170779092903,213,0 +170779092951,213,0 +170779092999,213,0 +170779093047,213,0 +170779093095,214,0 +170779093143,214,0 +170779093191,214,0 +170779093239,214,0 +170779093286,214,0 +170779093336,214,0 +170779093386,214,0 +170779093434,214,0 +170779093483,214,0 +170779093533,214,0 +170779093582,214,0 +170779093631,215,0 +170779093679,215,0 +170779093729,214,0 +170779093778,213,0 +170779093826,213,0 +170779093874,213,0 +170779093922,214,0 +170779093970,213,0 +170779094020,213,0 +170779094069,214,0 +170779094119,214,0 +170779094167,214,0 +170779094215,214,0 +170779094264,214,0 +170779094312,214,0 +170779094360,215,0 +170779094408,214,0 +170779094457,214,0 +170779094507,215,0 +170779094556,215,0 +170779094604,215,0 +170779094652,214,0 +170779094700,213,0 +170779094748,213,0 +170779094796,213,0 +170779094844,213,0 +170779094892,213,0 +170779094940,214,0 +170779094988,213,0 +170779095037,213,0 +170779095085,213,0 +170779095135,214,0 +170779095182,214,0 +170779095230,214,0 +170779095278,214,0 +170779095328,214,0 +170779095376,214,0 +170779095424,214,0 +170779095472,214,0 +170779095520,214,0 +170779095569,214,0 +170779095619,214,0 +170779095667,213,0 +170779095716,213,0 +170779095764,213,0 +170779095813,213,0 +170779095861,213,0 +170779095909,214,0 +170779095957,213,0 +170779096005,214,0 +170779096053,214,0 +170779096101,214,0 +170779096148,214,0 +170779096198,214,0 +170779096247,214,0 +170779096295,214,0 +170779096343,214,0 +170779096391,214,0 +170779096438,214,0 +170779096486,214,0 +170779096536,214,0 +170779096585,214,0 +170779096633,213,0 +170779096681,213,0 +170779096730,213,0 +170779096778,214,0 +170779096827,214,0 +170779096875,214,0 +170779096923,214,0 +170779096973,214,0 +170779097022,214,0 +170779097070,214,0 +170779097120,214,0 +170779097168,214,0 +170779097217,214,0 +170779097267,214,0 +170779097316,214,0 +170779097364,214,0 +170779097414,215,0 +170779097461,214,0 +170779097509,214,0 +170779097557,213,0 +170779097606,213,0 +170779097654,214,0 +170779097704,214,0 +170779097752,214,0 +170779097800,214,0 +170779097847,214,0 +170779097897,214,0 +170779097945,214,0 +170779097993,214,0 +170779098042,214,0 +170779098092,214,0 +170779098140,215,0 +170779098189,215,0 +170779098238,215,0 +170779098286,215,0 +170779098334,215,0 +170779098382,214,0 +170779098431,214,0 +170779098481,213,0 +170779098529,213,0 +170779098577,214,0 +170779098625,214,0 +170779098674,214,0 +170779098722,214,0 +170779098770,214,0 +170779098820,214,0 +170779098869,214,0 +170779098917,214,0 +170779098965,215,0 +170779099015,215,0 +170779099064,214,0 +170779099114,214,0 +170779099161,215,0 +170779099209,215,0 +170779099257,214,0 +170779099305,214,0 +170779099353,214,0 +170779099401,213,0 +170779099449,213,0 +170779099496,213,0 +170779099544,214,0 +170779099592,214,0 +170779099642,214,0 +170779099690,214,0 +170779099738,214,0 +170779099786,214,0 +170779099835,214,0 +170779099885,214,0 +170779099933,214,0 +170779099980,214,0 +170779100030,214,0 +170779100078,214,0 +170779100126,215,0 +170779100174,215,0 +170779100223,214,0 +170779100271,214,0 +170779100319,213,0 +170779100367,213,0 +170779100415,213,0 +170779100464,213,0 +170779100512,214,0 +170779100560,213,0 +170779100609,214,0 +170779100657,214,0 +170779100705,214,0 +170779100755,214,0 +170779100803,214,0 +170779100852,214,0 +170779100900,214,0 +170779100949,214,0 +170779100997,214,0 +170779101045,214,0 +170779101093,214,0 +170779101141,214,0 +170779101189,214,0 +170779101238,213,0 +170779101286,213,0 +170779101336,213,0 +170779101385,213,0 +170779101433,213,0 +170779101482,213,0 +170779101530,214,0 +170779101580,214,0 +170779101627,214,0 +170779101677,214,0 +170779101725,214,0 +170779101775,214,0 +170779101824,214,0 +170779101872,214,0 +170779101920,214,0 +170779101968,214,0 +170779102016,214,0 +170779102064,214,0 +170779102111,214,0 +170779102159,214,0 +170779102207,213,0 +170779102255,213,0 +170779102303,213,0 +170779102351,213,0 +170779102399,214,0 +170779102448,214,0 +170779102496,214,0 +170779102544,214,0 +170779102592,214,0 +170779102640,214,0 +170779102688,214,0 +170779102736,214,0 +170779102784,214,0 +170779102831,214,0 +170779102879,214,0 +170779102927,214,0 +170779102975,214,0 +170779103023,214,0 +170779103073,214,0 +170779103121,214,0 +170779103168,213,0 +170779103216,213,0 +170779103264,214,0 +170779103312,214,0 +170779103362,214,0 +170779103411,214,0 +170779103459,214,0 +170779103509,214,0 +170779103557,214,0 +170779103605,214,0 +170779103652,214,0 +170779103700,214,0 +170779103748,214,0 +170779103796,214,0 +170779103844,215,0 +170779103892,215,0 +170779103940,215,0 +170779103988,215,0 +170779104035,214,0 +170779104083,214,0 +170779104133,214,0 +170779104181,214,0 +170779104228,214,0 +170779104278,214,0 +170779104327,214,0 +170779104375,214,0 +170779104423,214,0 +170779104471,214,0 +170779104519,214,0 +170779104567,214,0 +170779104614,214,0 +170779104662,214,0 +170779104712,214,0 +170779104760,215,0 +170779104807,215,0 +170779104855,215,0 +170779104903,215,0 +170779104951,214,0 +170779105000,213,0 +170779105048,214,0 +170779105096,214,0 +170779105144,214,0 +170779105192,214,0 +170779105240,214,0 +170779105288,214,0 +170779105337,214,0 +170779105385,214,0 +170779105435,214,0 +170779105483,214,0 +170779105532,214,0 +170779105580,214,0 +170779105628,214,0 +170779105678,214,0 +170779105726,214,0 +170779105775,214,0 +170779105823,214,0 +170779105871,215,0 +170779105919,213,0 +170779105966,213,0 +170779106014,213,0 +170779106064,213,0 +170779106112,213,0 +170779106159,214,0 +170779106209,214,0 +170779106257,214,0 +170779106306,214,0 +170779106355,214,0 +170779106403,214,0 +170779106451,214,0 +170779106499,214,0 +170779106547,214,0 +170779106597,214,0 +170779106646,214,0 +170779106694,214,0 +170779106744,214,0 +170779106792,214,0 +170779106840,214,0 +170779106888,213,0 +170779106936,213,0 +170779106984,213,0 +170779107031,214,0 +170779107081,213,0 +170779107129,214,0 +170779107177,214,0 +170779107226,214,0 +170779107276,214,0 +170779107324,214,0 +170779107372,214,0 +170779107421,214,0 +170779107470,214,0 +170779107518,214,0 +170779107566,214,0 +170779107616,215,0 +170779107665,214,0 +170779107715,214,0 +170779107763,214,0 +170779107811,213,0 +170779107859,213,0 +170779107907,213,0 +170779107954,213,0 +170779108002,214,0 +170779108052,214,0 +170779108101,214,0 +170779108149,214,0 +170779108197,213,0 +170779108247,214,0 +170779108296,214,0 +170779108344,214,0 +170779108392,214,0 +170779108440,214,0 +170779108488,215,0 +170779108535,215,0 +170779108583,214,0 +170779108631,215,0 +170779108679,214,0 +170779108729,214,0 +170779108778,214,0 +170779108826,214,0 +170779108876,214,0 +170779108924,214,0 +170779108972,214,0 +170779109021,214,0 +170779109069,214,0 +170779109117,214,0 +170779109165,214,0 +170779109215,214,0 +170779109264,214,0 +170779109312,214,0 +170779109361,215,0 +170779109409,215,0 +170779109457,214,0 +170779109507,215,0 +170779109555,214,0 +170779109604,214,0 +170779109652,214,0 +170779109702,213,0 +170779109750,214,0 +170779109798,213,0 +170779109847,214,0 +170779109895,214,0 +170779109943,214,0 +170779109993,214,0 +170779110041,214,0 +170779110090,214,0 +170779110140,214,0 +170779110187,214,0 +170779110237,214,0 +170779110285,214,0 +170779110334,214,0 +170779110384,215,0 +170779110432,215,0 +170779110481,215,0 +170779110531,215,0 +170779110580,214,0 +170779110628,213,0 +170779110678,213,0 +170779110727,213,0 +170779110775,213,0 +170779110823,213,0 +170779110873,213,0 +170779110921,213,0 +170779110969,214,0 +170779111017,214,0 +170779111065,214,0 +170779111114,214,0 +170779111162,214,0 +170779111212,214,0 +170779111261,214,0 +170779111311,214,0 +170779111359,214,0 +170779111407,214,0 +170779111455,214,0 +170779111503,214,0 +170779111550,214,0 +170779111598,213,0 +170779111646,213,0 +170779111696,213,0 +170779111745,214,0 +170779111795,213,0 +170779111843,214,0 +170779111892,213,0 +170779111940,214,0 +170779111988,214,0 +170779112038,214,0 +170779112086,214,0 +170779112134,214,0 +170779112182,214,0 +170779112231,214,0 +170779112279,214,0 +170779112327,215,0 +170779112377,214,0 +170779112426,215,0 +170779112474,214,0 +170779112524,213,0 +170779112571,213,0 +170779112621,213,0 +170779112671,213,0 +170779112719,214,0 +170779112766,214,0 +170779112814,214,0 +170779112862,214,0 +170779112910,214,0 +170779112958,214,0 +170779113006,214,0 +170779113055,215,0 +170779113103,215,0 +170779113151,215,0 +170779113199,214,0 +170779113249,215,0 +170779113298,215,0 +170779113348,215,0 +170779113397,215,0 +170779113445,214,0 +170779113493,214,0 +170779113543,214,0 +170779113591,214,0 +170779113640,214,0 +170779113690,214,0 +170779113738,214,0 +170779113787,214,0 +170779113837,214,0 +170779113885,214,0 +170779113933,214,0 +170779113982,215,0 +170779114032,214,0 +170779114080,215,0 +170779114127,215,0 +170779114175,215,0 +170779114225,215,0 +170779114273,215,0 +170779114321,215,0 +170779114369,215,0 +170779114418,214,0 +170779114466,213,0 +170779114516,213,0 +170779114564,214,0 +170779114613,213,0 +170779114663,214,0 +170779114711,214,0 +170779114759,214,0 +170779114808,214,0 +170779114858,214,0 +170779114906,214,0 +170779114955,214,0 +170779115005,214,0 +170779115053,215,0 +170779115102,215,0 +170779115150,214,0 +170779115200,214,0 +170779115249,215,0 +170779115297,214,0 +170779115345,213,0 +170779115393,213,0 +170779115441,213,0 +170779115490,213,0 +170779115538,213,0 +170779115586,214,0 +170779115634,213,0 +170779115684,213,0 +170779115732,214,0 +170779115781,214,0 +170779115831,214,0 +170779115880,214,0 +170779115930,214,0 +170779115979,214,0 +170779116027,214,0 +170779116075,214,0 +170779116125,214,0 +170779116173,214,0 +170779116220,214,0 +170779116268,214,0 +170779116316,213,0 +170779116364,213,0 +170779116414,213,0 +170779116463,213,0 +170779116511,214,0 +170779116561,214,0 +170779116609,214,0 +170779116658,214,0 +170779116706,213,0 +170779116754,214,0 +170779116802,214,0 +170779116850,214,0 +170779116898,214,0 +170779116948,214,0 +170779116997,214,0 +170779117045,214,0 +170779117094,214,0 +170779117144,214,0 +170779117192,215,0 +170779117240,214,0 +170779117288,213,0 +170779117336,213,0 +170779117384,214,0 +170779117432,214,0 +170779117481,214,0 +170779117531,214,0 +170779117580,214,0 +170779117630,214,0 +170779117678,214,0 +170779117726,214,0 +170779117773,214,0 +170779117821,214,0 +170779117871,215,0 +170779117919,215,0 +170779117967,215,0 +170779118015,214,0 +170779118063,215,0 +170779118112,215,0 +170779118162,214,0 +170779118210,213,0 +170779118258,213,0 +170779118306,213,0 +170779118354,213,0 +170779118402,213,0 +170779118450,213,0 +170779118497,214,0 +170779118545,214,0 +170779118593,214,0 +170779118643,214,0 +170779118692,214,0 +170779118740,214,0 +170779118790,215,0 +170779118840,214,0 +170779118887,214,0 +170779118937,214,0 +170779118985,214,0 +170779119033,215,0 +170779119080,215,0 +170779119128,213,0 +170779119176,213,0 +170779119224,213,0 +170779119272,214,0 +170779119322,213,0 +170779119370,213,0 +170779119417,213,0 +170779119465,213,0 +170779119515,213,0 +170779119563,214,0 +170779119611,214,0 +170779119659,214,0 +170779119708,214,0 +170779119756,214,0 +170779119804,214,0 +170779119852,214,0 +170779119900,214,0 +170779119948,215,0 +170779119997,214,0 +170779120047,214,0 +170779120095,213,0 +170779120143,213,0 +170779120191,213,0 +170779120240,213,0 +170779120288,214,0 +170779120337,213,0 +170779120385,213,0 +170779120433,213,0 +170779120481,213,0 +170779120531,213,0 +170779120579,214,0 +170779120627,214,0 +170779120676,214,0 +170779120724,214,0 +170779120773,214,0 +170779120823,214,0 +170779120871,214,0 +170779120919,214,0 +170779120967,215,0 +170779121016,214,0 +170779121066,213,0 +170779121115,213,0 +170779121165,213,0 +170779121214,213,0 +170779121262,213,0 +170779121310,213,0 +170779121358,213,0 +170779121407,214,0 +170779121455,213,0 +170779121503,213,0 +170779121552,213,0 +170779121600,214,0 +170779121648,214,0 +170779121696,214,0 +170779121745,214,0 +170779121793,214,0 +170779121841,214,0 +170779121889,214,0 +170779121937,214,0 +170779121984,213,0 +170779122032,213,0 +170779122080,213,0 +170779122128,213,0 +170779122176,214,0 +170779122224,213,0 +170779122272,214,0 +170779122321,213,0 +170779122369,214,0 +170779122417,214,0 +170779122466,214,0 +170779122514,214,0 +170779122562,214,0 +170779122610,214,0 +170779122658,214,0 +170779122706,214,0 +170779122756,214,0 +170779122804,214,0 +170779122851,214,0 +170779122899,213,0 +170779122947,213,0 +170779122995,213,0 +170779123043,213,0 +170779123090,213,0 +170779123138,213,0 +170779123186,213,0 +170779123234,213,0 +170779123283,214,0 +170779123331,214,0 +170779123379,214,0 +170779123427,214,0 +170779123475,214,0 +170779123522,214,0 +170779123570,214,0 +170779123618,214,0 +170779123666,214,0 +170779123714,214,0 +170779123762,214,0 +170779123810,214,0 +170779123859,213,0 +170779123907,213,0 +170779123955,213,0 +170779124003,213,0 +170779124050,213,0 +170779124098,214,0 +170779124146,213,0 +170779124194,214,0 +170779124242,214,0 +170779124290,214,0 +170779124338,214,0 +170779124385,214,0 +170779124435,214,0 +170779124483,214,0 +170779124530,214,0 +170779124578,214,0 +170779124626,215,0 +170779124674,214,0 +170779124722,214,0 +170779124771,214,0 +170779124819,213,0 +170779124867,213,0 +170779124915,213,0 +170779124963,213,0 +170779125011,214,0 +170779125059,214,0 +170779125106,214,0 +170779125154,214,0 +170779125202,214,0 +170779125252,214,0 +170779125301,214,0 +170779125349,215,0 +170779125399,215,0 +170779125447,214,0 +170779125495,214,0 +170779125543,214,0 +170779125590,214,0 +170779125640,215,0 +170779125688,214,0 +170779125737,213,0 +170779125785,213,0 +170779125835,213,0 +170779125883,213,0 +170779125932,213,0 +170779125980,214,0 +170779126028,214,0 +170779126076,214,0 +170779126124,214,0 +170779126172,214,0 +170779126220,214,0 +170779126269,214,0 +170779126317,214,0 +170779126365,214,0 +170779126413,214,0 +170779126463,214,0 +170779126512,214,0 +170779126562,214,0 +170779126611,214,0 +170779126659,214,0 +170779126708,213,0 +170779126756,213,0 +170779126804,214,0 +170779126854,214,0 +170779126903,214,0 +170779126951,214,0 +170779126999,214,0 +170779127049,214,0 +170779127097,214,0 +170779127145,214,0 +170779127193,214,0 +170779127241,214,0 +170779127289,214,0 +170779127338,214,0 +170779127386,214,0 +170779127434,214,0 +170779127483,214,0 +170779127531,214,0 +170779127581,214,0 +170779127629,214,0 +170779127677,214,0 +170779127724,214,0 +170779127774,214,0 +170779127822,214,0 +170779127870,214,0 +170779127919,214,0 +170779127967,214,0 +170779128015,214,0 +170779128063,214,0 +170779128112,215,0 +170779128160,215,0 +170779128208,215,0 +170779128256,215,0 +170779128304,215,0 +170779128352,215,0 +170779128400,215,0 +170779128447,215,0 +170779128495,215,0 +170779128543,214,0 +170779128591,214,0 +170779128639,214,0 +170779128689,214,0 +170779128738,214,0 +170779128786,214,0 +170779128834,214,0 +170779128883,214,0 +170779128931,214,0 +170779128979,214,0 +170779129027,214,0 +170779129075,215,0 +170779129123,215,0 +170779129171,215,0 +170779129219,215,0 +170779129268,215,0 +170779129316,215,0 +170779129364,215,0 +170779129414,215,0 +170779129462,215,0 +170779129511,214,0 +170779129559,214,0 +170779129609,213,0 +170779129657,214,0 +170779129706,214,0 +170779129754,214,0 +170779129802,214,0 +170779129850,214,0 +170779129899,214,0 +170779129947,214,0 +170779129995,214,0 +170779130043,215,0 +170779130093,215,0 +170779130141,215,0 +170779130190,215,0 +170779130238,215,0 +170779130288,215,0 +170779130336,215,0 +170779130383,215,0 +170779130431,214,0 +170779130479,214,0 +170779130527,213,0 +170779130575,213,0 +170779130623,214,0 +170779130671,213,0 +170779130720,214,0 +170779130768,214,0 +170779130818,214,0 +170779130866,214,0 +170779130913,214,0 +170779130963,214,0 +170779131012,214,0 +170779131062,215,0 +170779131111,214,0 +170779131161,214,0 +170779131209,215,0 +170779131257,215,0 +170779131305,214,0 +170779131353,214,0 +170779131402,214,0 +170779131450,213,0 +170779131499,213,0 +170779131547,213,0 +170779131597,213,0 +170779131645,213,0 +170779131693,214,0 +170779131741,213,0 +170779131790,214,0 +170779131838,214,0 +170779131888,214,0 +170779131937,214,0 +170779131985,214,0 +170779132033,214,0 +170779132081,214,0 +170779132131,214,0 +170779132179,214,0 +170779132227,214,0 +170779132274,214,0 +170779132324,215,0 +170779132372,213,0 +170779132420,213,0 +170779132467,213,0 +170779132517,214,0 +170779132565,214,0 +170779132613,213,0 +170779132660,214,0 +170779132708,214,0 +170779132756,214,0 +170779132804,214,0 +170779132852,214,0 +170779132899,214,0 +170779132947,214,0 +170779132995,214,0 +170779133043,214,0 +170779133091,215,0 +170779133139,215,0 +170779133188,214,0 +170779133236,215,0 +170779133284,214,0 +170779133332,213,0 +170779133380,213,0 +170779133429,213,0 +170779133479,213,0 +170779133528,214,0 +170779133576,214,0 +170779133624,214,0 +170779133673,214,0 +170779133723,214,0 +170779133773,214,0 +170779133821,214,0 +170779133870,214,0 +170779133918,214,0 +170779133967,215,0 +170779134015,214,0 +170779134063,215,0 +170779134113,214,0 +170779134161,215,0 +170779134209,214,0 +170779134256,214,0 +170779134304,213,0 +170779134354,213,0 +170779134403,213,0 +170779134451,214,0 +170779134499,214,0 +170779134547,214,0 +170779134595,214,0 +170779134642,214,0 +170779134690,214,0 +170779134738,214,0 +170779134786,214,0 +170779134835,215,0 +170779134883,214,0 +170779134931,214,0 +170779134979,214,0 +170779135027,214,0 +170779135075,214,0 +170779135123,215,0 +170779135171,214,0 +170779135218,214,0 +170779135266,214,0 +170779135314,214,0 +170779135362,213,0 +170779135410,214,0 +170779135458,214,0 +170779135506,214,0 +170779135553,214,0 +170779135601,214,0 +170779135649,214,0 +170779135697,214,0 +170779135747,214,0 +170779135795,214,0 +170779135843,215,0 +170779135892,214,0 +170779135940,214,0 +170779135990,215,0 +170779136037,214,0 +170779136087,214,0 +170779136137,214,0 +170779136185,213,0 +170779136232,213,0 +170779136282,213,0 +170779136330,214,0 +170779136379,213,0 +170779136427,214,0 +170779136475,214,0 +170779136525,214,0 +170779136573,214,0 +170779136620,214,0 +170779136668,214,0 +170779136718,214,0 +170779136766,214,0 +170779136814,214,0 +170779136862,215,0 +170779136911,215,0 +170779136959,215,0 +170779137007,215,0 +170779137057,214,0 +170779137106,214,0 +170779137154,213,0 +170779137202,213,0 +170779137251,213,0 +170779137299,213,0 +170779137347,213,0 +170779137395,213,0 +170779137443,214,0 +170779137491,214,0 +170779137538,214,0 +170779137588,214,0 +170779137638,214,0 +170779137685,214,0 +170779137733,214,0 +170779137781,214,0 +170779137829,214,0 +170779137877,214,0 +170779137925,214,0 +170779137972,214,0 +170779138020,214,0 +170779138070,213,0 +170779138117,213,0 +170779138165,213,0 +170779138213,213,0 +170779138263,213,0 +170779138310,213,0 +170779138358,213,0 +170779138408,213,0 +170779138456,213,0 +170779138505,214,0 +170779138555,214,0 +170779138604,214,0 +170779138652,214,0 +170779138702,214,0 +170779138750,214,0 +170779138798,214,0 +170779138846,214,0 +170779138894,214,0 +170779138942,214,0 +170779138991,214,0 +170779139039,213,0 +170779139087,213,0 +170779139135,213,0 +170779139184,213,0 +170779139232,213,0 +170779139280,214,0 +170779139328,213,0 +170779139376,214,0 +170779139424,214,0 +170779139472,214,0 +170779139520,214,0 +170779139568,214,0 +170779139616,214,0 +170779139665,214,0 +170779139715,214,0 +170779139763,214,0 +170779139812,214,0 +170779139860,214,0 +170779139910,214,0 +170779139958,213,0 +170779140006,213,0 +170779140054,213,0 +170779140102,214,0 +170779140149,214,0 +170779140197,214,0 +170779140247,214,0 +170779140295,214,0 +170779140343,214,0 +170779140392,214,0 +170779140440,214,0 +170779140490,214,0 +170779140538,214,0 +170779140586,214,0 +170779140634,215,0 +170779140682,214,0 +170779140731,215,0 +170779140779,215,0 +170779140829,214,0 +170779140877,214,0 +170779140926,214,0 +170779140974,214,0 +170779141022,214,0 +170779141070,214,0 +170779141118,214,0 +170779141166,214,0 +170779141215,214,0 +170779141263,214,0 +170779141311,214,0 +170779141359,214,0 +170779141407,214,0 +170779141455,215,0 +170779141503,214,0 +170779141552,215,0 +170779141602,215,0 +170779141650,214,0 +170779141698,214,0 +170779141746,215,0 +170779141795,214,0 +170779141843,213,0 +170779141893,213,0 +170779141941,214,0 +170779141989,214,0 +170779142038,214,0 +170779142086,214,0 +170779142134,214,0 +170779142182,214,0 +170779142232,214,0 +170779142281,214,0 +170779142329,214,0 +170779142377,214,0 +170779142426,214,0 +170779142476,214,0 +170779142524,214,0 +170779142573,214,0 +170779142621,214,0 +170779142671,214,0 +170779142719,214,0 +170779142768,214,0 +170779142816,213,0 +170779142864,213,0 +170779142912,213,0 +170779142962,214,0 +170779143010,214,0 +170779143059,214,0 +170779143109,214,0 +170779143156,214,0 +170779143204,214,0 +170779143254,214,0 +170779143303,214,0 +170779143351,214,0 +170779143401,214,0 +170779143451,215,0 +170779143500,214,0 +170779143548,215,0 +170779143596,215,0 +170779143644,215,0 +170779143692,214,0 +170779143740,214,0 +170779143788,213,0 +170779143837,213,0 +170779143885,214,0 +170779143933,214,0 +170779143983,214,0 +170779144032,214,0 +170779144080,214,0 +170779144128,214,0 +170779144178,214,0 +170779144226,214,0 +170779144274,214,0 +170779144323,214,0 +170779144371,214,0 +170779144419,214,0 +170779144467,215,0 +170779144515,215,0 +170779144563,215,0 +170779144612,214,0 +170779144660,214,0 +170779144708,213,0 +170779144756,213,0 +170779144804,213,0 +170779144853,213,0 +170779144901,214,0 +170779144951,214,0 +170779144998,214,0 +170779145048,214,0 +170779145098,214,0 +170779145147,214,0 +170779145197,214,0 +170779145246,214,0 +170779145294,214,0 +170779145342,214,0 +170779145390,214,0 +170779145438,214,0 +170779145488,215,0 +170779145535,214,0 +170779145585,214,0 +170779145633,213,0 +170779145681,213,0 +170779145729,213,0 +170779145778,213,0 +170779145828,213,0 +170779145876,214,0 +170779145924,214,0 +170779145972,214,0 +170779146021,214,0 +170779146069,214,0 +170779146117,214,0 +170779146165,214,0 +170779146213,214,0 +170779146261,214,0 +170779146310,214,0 +170779146360,214,0 +170779146410,214,0 +170779146457,215,0 +170779146505,214,0 +170779146555,214,0 +170779146603,213,0 +170779146651,213,0 +170779146700,213,0 +170779146748,214,0 +170779146798,214,0 +170779146846,214,0 +170779146895,214,0 +170779146943,214,0 +170779146991,214,0 +170779147039,214,0 +170779147087,214,0 +170779147136,214,0 +170779147186,215,0 +170779147235,215,0 +170779147283,215,0 +170779147333,215,0 +170779147382,215,0 +170779147430,214,0 +170779147478,214,0 +170779147526,214,0 +170779147576,213,0 +170779147625,213,0 +170779147673,214,0 +170779147721,214,0 +170779147769,214,0 +170779147818,214,0 +170779147868,214,0 +170779147917,214,0 +170779147965,214,0 +170779148013,214,0 +170779148063,214,0 +170779148112,214,0 +170779148160,214,0 +170779148208,215,0 +170779148256,215,0 +170779148305,214,0 +170779148353,215,0 +170779148401,215,0 +170779148451,214,0 +170779148500,213,0 +170779148550,213,0 +170779148598,214,0 +170779148646,214,0 +170779148694,214,0 +170779148741,214,0 +170779148789,214,0 +170779148839,214,0 +170779148888,214,0 +170779148938,214,0 +170779148986,214,0 +170779149034,214,0 +170779149082,214,0 +170779149130,214,0 +170779149179,214,0 +170779149229,215,0 +170779149278,214,0 +170779149326,214,0 +170779149376,214,0 +170779149425,213,0 +170779149473,213,0 +170779149521,213,0 +170779149569,213,0 +170779149617,213,0 +170779149665,213,0 +170779149715,214,0 +170779149764,214,0 +170779149812,214,0 +170779149860,214,0 +170779149908,214,0 +170779149956,214,0 +170779150004,214,0 +170779150052,214,0 +170779150101,214,0 +170779150151,214,0 +170779150199,214,0 +170779150247,214,0 +170779150295,215,0 +170779150344,214,0 +170779150394,213,0 +170779150442,213,0 +170779150489,213,0 +170779150539,213,0 +170779150587,213,0 +170779150635,213,0 +170779150683,213,0 +170779150731,213,0 +170779150780,213,0 +170779150828,214,0 +170779150878,214,0 +170779150926,214,0 +170779150975,214,0 +170779151023,214,0 +170779151073,214,0 +170779151121,214,0 +170779151170,214,0 +170779151218,214,0 +170779151266,214,0 +170779151314,214,0 +170779151362,213,0 +170779151410,213,0 +170779151459,213,0 +170779151509,213,0 +170779151557,213,0 +170779151605,213,0 +170779151654,213,0 +170779151702,213,0 +170779151750,213,0 +170779151799,214,0 +170779151847,214,0 +170779151895,214,0 +170779151943,214,0 +170779151992,214,0 +170779152040,214,0 +170779152088,214,0 +170779152136,214,0 +170779152184,214,0 +170779152232,214,0 +170779152281,213,0 +170779152329,213,0 +170779152377,214,0 +170779152427,213,0 +170779152475,214,0 +170779152524,213,0 +170779152572,214,0 +170779152620,214,0 +170779152670,214,0 +170779152719,214,0 +170779152769,214,0 +170779152818,214,0 +170779152866,214,0 +170779152916,214,0 +170779152965,214,0 +170779153015,214,0 +170779153063,214,0 +170779153112,214,0 +170779153161,214,0 +170779153209,214,0 +170779153257,213,0 +170779153305,213,0 +170779153352,214,0 +170779153400,213,0 +170779153448,214,0 +170779153498,214,0 +170779153546,214,0 +170779153595,214,0 +170779153645,214,0 +170779153693,214,0 +170779153741,214,0 +170779153789,214,0 +170779153838,214,0 +170779153886,214,0 +170779153936,214,0 +170779153983,214,0 +170779154033,214,0 +170779154082,214,0 +170779154130,214,0 +170779154178,213,0 +170779154228,213,0 +170779154275,213,0 +170779154323,213,0 +170779154371,213,0 +170779154419,213,0 +170779154469,214,0 +170779154517,214,0 +170779154566,214,0 +170779154614,214,0 +170779154664,214,0 +170779154713,214,0 +170779154761,214,0 +170779154809,214,0 +170779154857,214,0 +170779154906,214,0 +170779154954,214,0 +170779155004,214,0 +170779155052,215,0 +170779155100,213,0 +170779155148,213,0 +170779155196,214,0 +170779155245,214,0 +170779155293,214,0 +170779155341,214,0 +170779155389,214,0 +170779155437,214,0 +170779155485,214,0 +170779155535,214,0 +170779155582,214,0 +170779155630,214,0 +170779155680,214,0 +170779155729,214,0 +170779155779,214,0 +170779155827,215,0 +170779155876,215,0 +170779155924,215,0 +170779155972,215,0 +170779156022,214,0 +170779156070,213,0 +170779156118,214,0 +170779156166,214,0 +170779156214,214,0 +170779156261,214,0 +170779156311,214,0 +170779156360,214,0 +170779156408,214,0 +170779156456,214,0 +170779156505,214,0 +170779156553,214,0 +170779156601,214,0 +170779156649,214,0 +170779156696,214,0 +170779156746,215,0 +170779156795,215,0 +170779156843,215,0 +170779156893,215,0 +170779156942,215,0 +170779156990,214,0 +170779157038,213,0 +170779157086,213,0 +170779157134,214,0 +170779157182,214,0 +170779157230,214,0 +170779157278,214,0 +170779157326,214,0 +170779157373,214,0 +170779157421,214,0 +170779157469,214,0 +170779157517,214,0 +170779157565,214,0 +170779157614,214,0 +170779157664,214,0 +170779157713,215,0 +170779157761,215,0 +170779157809,215,0 +170779157857,215,0 +170779157905,214,0 +170779157953,214,0 +170779158001,214,0 +170779158050,214,0 +170779158098,214,0 +170779158148,214,0 +170779158197,214,0 +170779158245,214,0 +170779158295,214,0 +170779158344,214,0 +170779158394,214,0 +170779158443,215,0 +170779158491,215,0 +170779158541,215,0 +170779158590,214,0 +170779158638,215,0 +170779158686,215,0 +170779158734,215,0 +170779158782,215,0 +170779158830,215,0 +170779158879,214,0 +170779158927,213,0 +170779158975,214,0 +170779159024,214,0 +170779159072,214,0 +170779159122,214,0 +170779159170,214,0 +170779159217,214,0 +170779159265,214,0 +170779159313,214,0 +170779159361,214,0 +170779159409,214,0 +170779159456,214,0 +170779159506,215,0 +170779159555,215,0 +170779159603,214,0 +170779159651,215,0 +170779159700,214,0 +170779159750,215,0 +170779159797,214,0 +170779159845,214,0 +170779159893,213,0 +170779159941,214,0 +170779159989,214,0 +170779160037,214,0 +170779160087,214,0 +170779160134,214,0 +170779160182,214,0 +170779160230,214,0 +170779160280,214,0 +170779160328,214,0 +170779160376,215,0 +170779160425,215,0 +170779160475,215,0 +170779160523,215,0 +170779160572,215,0 +170779160621,215,0 +170779160669,215,0 +170779160717,215,0 +170779160765,214,0 +170779160814,213,0 +170779160864,214,0 +170779160911,214,0 +170779160959,214,0 +170779161007,214,0 +170779161055,214,0 +170779161105,214,0 +170779161152,214,0 +170779161200,214,0 +170779161248,214,0 +170779161297,214,0 +170779161345,215,0 +170779161395,215,0 +170779161444,215,0 +170779161493,215,0 +170779161543,215,0 +170779161591,215,0 +170779161639,214,0 +170779161686,214,0 +170779161734,214,0 +170779161784,214,0 +170779161832,214,0 +170779161880,214,0 +170779161927,214,0 +170779161975,214,0 +170779162025,214,0 +170779162072,214,0 +170779162120,214,0 +170779162168,214,0 +170779162216,214,0 +170779162264,215,0 +170779162312,216,0 +170779162360,215,0 +170779162407,215,0 +170779162455,215,0 +170779162503,215,0 +170779162551,215,0 +170779162599,215,0 +170779162646,214,0 +170779162694,214,0 +170779162742,214,0 +170779162790,214,0 +170779162838,214,0 +170779162885,214,0 +170779162933,214,0 +170779162981,214,0 +170779163029,214,0 +170779163077,214,0 +170779163125,215,0 +170779163173,215,0 +170779163222,215,0 +170779163272,215,0 +170779163321,215,0 +170779163369,215,0 +170779163417,215,0 +170779163465,215,0 +170779163512,215,0 +170779163560,215,0 +170779163608,214,0 +170779163656,213,0 +170779163706,213,0 +170779163754,214,0 +170779163802,214,0 +170779163849,214,0 +170779163899,214,0 +170779163947,214,0 +170779163995,214,0 +170779164043,214,0 +170779164090,214,0 +170779164140,214,0 +170779164189,214,0 +170779164237,214,0 +170779164285,215,0 +170779164333,215,0 +170779164383,215,0 +170779164431,215,0 +170779164479,215,0 +170779164526,214,0 +170779164574,213,0 +170779164622,213,0 +170779164672,213,0 +170779164721,213,0 +170779164769,213,0 +170779164817,214,0 +170779164867,214,0 +170779164915,214,0 +170779164963,214,0 +170779165011,214,0 +170779165059,214,0 +170779165106,214,0 +170779165156,214,0 +170779165205,215,0 +170779165253,214,0 +170779165303,214,0 +170779165351,214,0 +170779165399,214,0 +170779165447,215,0 +170779165495,214,0 +170779165543,213,0 +170779165592,213,0 +170779165640,213,0 +170779165688,213,0 +170779165736,213,0 +170779165785,213,0 +170779165833,213,0 +170779165881,213,0 +170779165931,213,0 +170779165979,214,0 +170779166027,214,0 +170779166075,214,0 +170779166123,214,0 +170779166172,214,0 +170779166222,214,0 +170779166271,214,0 +170779166319,214,0 +170779166367,214,0 +170779166417,214,0 +170779166466,213,0 +170779166516,213,0 +170779166564,213,0 +170779166611,213,0 +170779166659,213,0 +170779166709,213,0 +170779166757,213,0 +170779166805,213,0 +170779166854,213,0 +170779166904,214,0 +170779166952,214,0 +170779167000,214,0 +170779167048,214,0 +170779167096,214,0 +170779167144,214,0 +170779167193,214,0 +170779167241,214,0 +170779167291,214,0 +170779167340,214,0 +170779167388,214,0 +170779167436,213,0 +170779167484,213,0 +170779167532,213,0 +170779167580,213,0 +170779167630,213,0 +170779167679,213,0 +170779167729,213,0 +170779167776,213,0 +170779167826,213,0 +170779167874,214,0 +170779167922,214,0 +170779167970,214,0 +170779168018,214,0 +170779168066,214,0 +170779168114,214,0 +170779168163,214,0 +170779168211,214,0 +170779168259,215,0 +170779168307,214,0 +170779168357,213,0 +170779168404,213,0 +170779168452,213,0 +170779168502,213,0 +170779168550,214,0 +170779168598,214,0 +170779168647,214,0 +170779168697,214,0 +170779168745,214,0 +170779168794,214,0 +170779168842,214,0 +170779168890,214,0 +170779168938,214,0 +170779168988,214,0 +170779169036,214,0 +170779169084,214,0 +170779169133,214,0 +170779169183,215,0 +170779169232,215,0 +170779169282,214,0 +170779169330,213,0 +170779169379,213,0 +170779169429,214,0 +170779169478,214,0 +170779169528,214,0 +170779169576,214,0 +170779169625,214,0 +170779169673,214,0 +170779169721,214,0 +170779169771,214,0 +170779169820,214,0 +170779169868,214,0 +170779169916,214,0 +170779169964,214,0 +170779170014,214,0 +170779170061,215,0 +170779170109,215,0 +170779170157,214,0 +170779170205,215,0 +170779170253,214,0 +170779170301,214,0 +170779170351,214,0 +170779170400,214,0 +170779170448,214,0 +170779170498,214,0 +170779170546,214,0 +170779170595,214,0 +170779170643,214,0 +170779170693,214,0 +170779170741,214,0 +170779170790,214,0 +170779170838,214,0 +170779170886,215,0 +170779170936,215,0 +170779170985,215,0 +170779171035,215,0 +170779171083,214,0 +170779171132,215,0 +170779171180,214,0 +170779171228,214,0 +170779171276,214,0 +170779171324,214,0 +170779171374,214,0 +170779171423,214,0 +170779171473,214,0 +170779171521,214,0 +170779171569,214,0 +170779171618,214,0 +170779171666,214,0 +170779171716,214,0 +170779171766,214,0 +170779171814,214,0 +170779171863,215,0 +170779171911,215,0 +170779171959,215,0 +170779172009,215,0 +170779172056,215,0 +170779172106,214,0 +170779172154,214,0 +170779172203,214,0 +170779172251,214,0 +170779172299,214,0 +170779172347,214,0 +170779172397,214,0 +170779172445,214,0 +170779172493,214,0 +170779172541,214,0 +170779172589,214,0 +170779172638,214,0 +170779172686,215,0 +170779172734,215,0 +170779172782,214,0 +170779172830,215,0 +170779172879,215,0 +170779172927,215,0 +170779172977,215,0 +170779173026,215,0 +170779173076,214,0 +170779173124,214,0 +170779173172,214,0 +170779173220,214,0 +170779173268,214,0 +170779173317,214,0 +170779173367,213,0 +170779173415,214,0 +170779173464,214,0 +170779173512,214,0 +170779173562,214,0 +170779173611,214,0 +170779173659,214,0 +170779173707,214,0 +170779173755,214,0 +170779173803,215,0 +170779173850,215,0 +170779173898,215,0 +170779173946,215,0 +170779173994,214,0 +170779174043,214,0 +170779174091,214,0 +170779174139,214,0 +170779174187,214,0 +170779174235,214,0 +170779174283,214,0 +170779174332,214,0 +170779174380,214,0 +170779174428,214,0 +170779174476,214,0 +170779174524,214,0 +170779174573,214,0 +170779174623,215,0 +170779174670,215,0 +170779174718,214,0 +170779174766,215,0 +170779174816,215,0 +170779174863,214,0 +170779174911,215,0 +170779174959,214,0 +170779175007,213,0 +170779175055,213,0 +170779175103,214,0 +170779175150,214,0 +170779175198,214,0 +170779175246,214,0 +170779175294,214,0 +170779175342,214,0 +170779175390,214,0 +170779175438,214,0 +170779175486,214,0 +170779175533,214,0 +170779175581,214,0 +170779175629,214,0 +170779175677,214,0 +170779175725,214,0 +170779175774,214,0 +170779175822,214,0 +170779175870,215,0 +170779175918,213,0 +170779175966,213,0 +170779176013,213,0 +170779176063,213,0 +170779176111,213,0 +170779176159,214,0 +170779176207,214,0 +170779176256,214,0 +170779176304,214,0 +170779176352,214,0 +170779176400,214,0 +170779176448,214,0 +170779176497,214,0 +170779176545,214,0 +170779176593,215,0 +170779176641,214,0 +170779176691,214,0 +170779176738,214,0 +170779176786,214,0 +170779176834,214,0 +170779176882,213,0 +170779176930,213,0 +170779176980,213,0 +170779177029,213,0 +170779177079,214,0 +170779177127,214,0 +170779177176,214,0 +170779177226,214,0 +170779177275,214,0 +170779177324,214,0 +170779177372,214,0 +170779177420,214,0 +170779177468,214,0 +170779177518,215,0 +170779177566,215,0 +170779177615,215,0 +170779177663,214,0 +170779177711,215,0 +170779177759,214,0 +170779177809,213,0 +170779177858,213,0 +170779177908,213,0 +170779177956,214,0 +170779178004,213,0 +170779178053,214,0 +170779178103,213,0 +170779178151,214,0 +170779178199,214,0 +170779178248,214,0 +170779178298,214,0 +170779178346,214,0 +170779178394,214,0 +170779178442,214,0 +170779178491,214,0 +170779178541,214,0 +170779178589,214,0 +170779178637,215,0 +170779178685,214,0 +170779178733,213,0 +170779178780,213,0 +170779178828,213,0 +170779178878,213,0 +170779178927,213,0 +170779178975,214,0 +170779179025,214,0 +170779179073,214,0 +170779179121,214,0 +170779179170,214,0 +170779179220,214,0 +170779179268,214,0 +170779179316,214,0 +170779179364,214,0 +170779179411,214,0 +170779179459,214,0 +170779179509,214,0 +170779179557,214,0 +170779179605,214,0 +170779179653,213,0 +170779179700,213,0 +170779179750,213,0 +170779179798,214,0 +170779179847,213,0 +170779179895,214,0 +170779179943,214,0 +170779179991,214,0 +170779180039,214,0 +170779180087,214,0 +170779180135,214,0 +170779180184,214,0 +170779180234,214,0 +170779180282,214,0 +170779180330,214,0 +170779180378,214,0 +170779180426,214,0 +170779180475,215,0 +170779180523,214,0 +170779180571,214,0 +170779180619,213,0 +170779180668,214,0 +170779180716,214,0 +170779180764,214,0 +170779180812,214,0 +170779180860,214,0 +170779180908,214,0 +170779180955,214,0 +170779181003,214,0 +170779181051,214,0 +170779181099,214,0 +170779181148,214,0 +170779181198,214,0 +170779181246,214,0 +170779181294,214,0 +170779181343,214,0 +170779181393,214,0 +170779181441,214,0 +170779181488,214,0 +170779181536,213,0 +170779181584,213,0 +170779181632,213,0 +170779181681,214,0 +170779181729,214,0 +170779181777,213,0 +170779181826,214,0 +170779181874,214,0 +170779181922,214,0 +170779181970,214,0 +170779182018,214,0 +170779182066,214,0 +170779182114,214,0 +170779182161,215,0 +170779182211,215,0 +170779182259,215,0 +170779182306,214,0 +170779182356,215,0 +170779182405,214,0 +170779182453,213,0 +170779182501,213,0 +170779182548,214,0 +170779182596,214,0 +170779182644,214,0 +170779182692,214,0 +170779182740,214,0 +170779182787,214,0 +170779182835,214,0 +170779182883,214,0 +170779182931,214,0 +170779182979,214,0 +170779183027,214,0 +170779183075,214,0 +170779183122,215,0 +170779183170,214,0 +170779183218,215,0 +170779183266,215,0 +170779183314,215,0 +170779183362,214,0 +170779183409,213,0 +170779183457,213,0 +170779183505,213,0 +170779183553,213,0 +170779183601,214,0 +170779183649,213,0 +170779183697,214,0 +170779183746,214,0 +170779183794,214,0 +170779183842,214,0 +170779183890,214,0 +170779183938,214,0 +170779183985,214,0 +170779184033,214,0 +170779184081,215,0 +170779184130,215,0 +170779184178,214,0 +170779184226,215,0 +170779184276,214,0 +170779184323,213,0 +170779184371,213,0 +170779184421,213,0 +170779184468,214,0 +170779184516,213,0 +170779184566,213,0 +170779184614,213,0 +170779184662,214,0 +170779184710,213,0 +170779184759,214,0 +170779184807,214,0 +170779184857,214,0 +170779184905,214,0 +170779184953,214,0 +170779185002,215,0 +170779185052,214,0 +170779185100,214,0 +170779185148,214,0 +170779185197,214,0 +170779185245,213,0 +170779185293,213,0 +170779185341,213,0 +170779185389,213,0 +170779185437,213,0 +170779185486,214,0 +170779185534,214,0 +170779185582,214,0 +170779185631,214,0 +170779185679,214,0 +170779185727,214,0 +170779185775,214,0 +170779185823,214,0 +170779185871,214,0 +170779185919,214,0 +170779185967,214,0 +170779186015,215,0 +170779186063,214,0 +170779186112,214,0 +170779186160,214,0 +170779186208,213,0 +170779186256,214,0 +170779186304,214,0 +170779186352,214,0 +170779186400,214,0 +170779186447,214,0 +170779186495,214,0 +170779186543,214,0 +170779186593,214,0 +170779186641,214,0 +170779186688,214,0 +170779186738,214,0 +170779186786,214,0 +170779186835,214,0 +170779186883,214,0 +170779186931,215,0 +170779186979,214,0 +170779187027,215,0 +170779187075,214,0 +170779187124,213,0 +170779187172,214,0 +170779187220,214,0 +170779187268,214,0 +170779187318,214,0 +170779187367,214,0 +170779187415,214,0 +170779187463,214,0 +170779187512,214,0 +170779187560,214,0 +170779187608,214,0 +170779187658,214,0 +170779187706,215,0 +170779187754,214,0 +170779187801,215,0 +170779187851,215,0 +170779187899,215,0 +170779187947,215,0 +170779187995,214,0 +170779188043,214,0 +170779188091,213,0 +170779188140,214,0 +170779188188,214,0 +170779188238,214,0 +170779188286,214,0 +170779188333,214,0 +170779188383,214,0 +170779188433,214,0 +170779188480,214,0 +170779188530,215,0 +170779188578,215,0 +170779188626,215,0 +170779188674,215,0 +170779188722,215,0 +170779188771,215,0 +170779188819,214,0 +170779188867,214,0 +170779188915,214,0 +170779188963,214,0 +170779189011,213,0 +170779189061,214,0 +170779189109,214,0 +170779189156,214,0 +170779189204,214,0 +170779189252,214,0 +170779189300,214,0 +170779189348,214,0 +170779189396,215,0 +170779189444,214,0 +170779189492,214,0 +170779189540,215,0 +170779189589,215,0 +170779189639,215,0 +170779189688,215,0 +170779189738,215,0 +170779189786,214,0 +170779189834,214,0 +170779189882,214,0 +170779189931,213,0 +170779189981,213,0 +170779190030,213,0 +170779190078,213,0 +170779190126,214,0 +170779190175,214,0 +170779190223,214,0 +170779190271,214,0 +170779190319,214,0 +170779190367,214,0 +170779190415,214,0 +170779190465,214,0 +170779190514,214,0 +170779190562,214,0 +170779190610,214,0 +170779190658,215,0 +170779190706,215,0 +170779190754,214,0 +170779190801,214,0 +170779190851,214,0 +170779190899,213,0 +170779190947,214,0 +170779190995,214,0 +170779191043,214,0 +170779191092,214,0 +170779191142,214,0 +170779191189,214,0 +170779191237,214,0 +170779191287,214,0 +170779191335,214,0 +170779191383,215,0 +170779191431,214,0 +170779191479,215,0 +170779191527,215,0 +170779191575,214,0 +170779191624,214,0 +170779191672,214,0 +170779191720,214,0 +170779191768,213,0 +170779191818,213,0 +170779191867,213,0 +170779191917,214,0 +170779191965,214,0 +170779192012,214,0 +170779192060,214,0 +170779192108,214,0 +170779192156,214,0 +170779192205,214,0 +170779192253,214,0 +170779192301,214,0 +170779192349,214,0 +170779192397,214,0 +170779192444,214,0 +170779192492,214,0 +170779192540,215,0 +170779192590,215,0 +170779192638,214,0 +170779192686,214,0 +170779192734,213,0 +170779192783,214,0 +170779192831,214,0 +170779192879,214,0 +170779192928,214,0 +170779192976,214,0 +170779193024,214,0 +170779193072,214,0 +170779193120,214,0 +170779193169,214,0 +170779193217,214,0 +170779193267,214,0 +170779193315,214,0 +170779193364,214,0 +170779193414,215,0 +170779193463,214,0 +170779193513,215,0 +170779193560,214,0 +170779193608,214,0 +170779193658,213,0 +170779193706,214,0 +170779193755,214,0 +170779193805,214,0 +170779193854,214,0 +170779193904,214,0 +170779193953,214,0 +170779194003,214,0 +170779194052,215,0 +170779194100,215,0 +170779194148,215,0 +170779194196,215,0 +170779194244,214,0 +170779194292,215,0 +170779194339,215,0 +170779194387,215,0 +170779194437,214,0 +170779194485,214,0 +170779194533,214,0 +170779194581,214,0 +170779194628,213,0 +170779194676,214,0 +170779194724,214,0 +170779194772,214,0 +170779194820,214,0 +170779194868,214,0 +170779194916,214,0 +170779194963,214,0 +170779195013,214,0 +170779195061,214,0 +170779195109,215,0 +170779195157,215,0 +170779195205,215,0 +170779195253,215,0 +170779195300,215,0 +170779195348,215,0 +170779195396,214,0 +170779195444,214,0 +170779195492,213,0 +170779195540,214,0 +170779195588,214,0 +170779195635,214,0 +170779195683,214,0 +170779195731,214,0 +170779195779,214,0 +170779195827,214,0 +170779195875,214,0 +170779195922,214,0 +170779195970,214,0 +170779196018,214,0 +170779196066,215,0 +170779196114,214,0 +170779196162,215,0 +170779196210,215,0 +170779196259,215,0 +170779196307,215,0 +170779196357,215,0 +170779196405,213,0 +170779196453,213,0 +170779196501,213,0 +170779196549,213,0 +170779196598,213,0 +170779196646,213,0 +170779196695,214,0 +170779196745,214,0 +170779196793,214,0 +170779196841,214,0 +170779196889,214,0 +170779196937,214,0 +170779196985,214,0 +170779197032,214,0 +170779197080,214,0 +170779197128,214,0 +170779197176,214,0 +170779197224,214,0 +170779197272,215,0 +170779197320,214,0 +170779197369,213,0 +170779197417,213,0 +170779197466,213,0 +170779197516,214,0 +170779197564,213,0 +170779197611,214,0 +170779197659,214,0 +170779197707,214,0 +170779197755,214,0 +170779197804,214,0 +170779197854,214,0 +170779197902,214,0 +170779197950,214,0 +170779197999,214,0 +170779198049,214,0 +170779198098,214,0 +170779198148,214,0 +170779198196,215,0 +170779198245,214,0 +170779198293,213,0 +170779198343,213,0 +170779198392,213,0 +170779198440,213,0 +170779198488,213,0 +170779198536,214,0 +170779198584,214,0 +170779198634,214,0 +170779198682,214,0 +170779198731,214,0 +170779198779,214,0 +170779198829,214,0 +170779198877,214,0 +170779198924,214,0 +170779198974,214,0 +170779199022,214,0 +170779199071,214,0 +170779199119,215,0 +170779199169,213,0 +170779199217,213,0 +170779199265,213,0 +170779199314,213,0 +170779199364,213,0 +170779199411,213,0 +170779199459,214,0 +170779199509,213,0 +170779199558,214,0 +170779199606,214,0 +170779199654,214,0 +170779199704,214,0 +170779199751,214,0 +170779199799,214,0 +170779199847,214,0 +170779199895,214,0 +170779199945,214,0 +170779199993,214,0 +170779200042,214,0 +170779200090,214,0 +170779200138,214,0 +170779200187,213,0 +170779200237,214,0 +170779200286,214,0 +170779200334,214,0 +170779200384,214,0 +170779200433,214,0 +170779200483,214,0 +170779200531,214,0 +170779200580,214,0 +170779200630,214,0 +170779200678,214,0 +170779200727,214,0 +170779200775,215,0 +170779200824,214,0 +170779200872,215,0 +170779200920,215,0 +170779200968,215,0 +170779201016,215,0 +170779201066,214,0 +170779201113,214,0 +170779201161,214,0 +170779201209,214,0 +170779201257,214,0 +170779201307,214,0 +170779201355,214,0 +170779201402,214,0 +170779201450,214,0 +170779201498,214,0 +170779201546,214,0 +170779201594,215,0 +170779201642,215,0 +170779201690,215,0 +170779201739,215,0 +170779201787,215,0 +170779201835,215,0 +170779201883,215,0 +170779201933,215,0 +170779201982,214,0 +170779202030,213,0 +170779202079,214,0 +170779202127,214,0 +170779202175,214,0 +170779202223,214,0 +170779202272,214,0 +170779202320,214,0 +170779202368,214,0 +170779202416,214,0 +170779202464,214,0 +170779202512,215,0 +170779202560,215,0 +170779202608,215,0 +170779202657,215,0 +170779202705,215,0 +170779202753,215,0 +170779202802,215,0 +170779202850,215,0 +170779202900,214,0 +170779202948,213,0 +170779202996,214,0 +170779203043,214,0 +170779203091,214,0 +170779203139,214,0 +170779203189,214,0 +170779203238,214,0 +170779203288,214,0 +170779203337,214,0 +170779203385,214,0 +170779203433,214,0 +170779203481,214,0 +170779203530,215,0 +170779203578,214,0 +170779203628,215,0 +170779203676,215,0 +170779203724,215,0 +170779203773,214,0 +170779203823,214,0 +170779203870,213,0 +170779203920,213,0 +170779203969,213,0 +170779204017,214,0 +170779204065,214,0 +170779204113,214,0 +170779204161,214,0 +170779204209,214,0 +170779204258,214,0 +170779204308,214,0 +170779204356,214,0 +170779204404,214,0 +170779204452,214,0 +170779204499,214,0 +170779204547,214,0 +170779204595,215,0 +170779204645,215,0 +170779204693,215,0 +170779204741,214,0 +170779204789,213,0 +170779204837,213,0 +170779204885,214,0 +170779204934,214,0 +170779204982,214,0 +170779205030,214,0 +170779205080,214,0 +170779205128,214,0 +170779205177,214,0 +170779205226,214,0 +170779205276,214,0 +170779205324,214,0 +170779205373,215,0 +170779205423,215,0 +170779205470,215,0 +170779205518,215,0 +170779205568,214,0 +170779205617,215,0 +170779205665,215,0 +170779205713,214,0 +170779205762,214,0 +170779205810,214,0 +170779205858,214,0 +170779205908,214,0 +170779205955,214,0 +170779206003,214,0 +170779206051,214,0 +170779206101,214,0 +170779206149,214,0 +170779206198,214,0 +170779206246,214,0 +170779206294,214,0 +170779206342,214,0 +170779206391,215,0 +170779206439,215,0 +170779206487,215,0 +170779206535,215,0 +170779206583,214,0 +170779206630,214,0 +170779206678,214,0 +170779206728,213,0 +170779206776,214,0 +170779206825,214,0 +170779206873,214,0 +170779206921,214,0 +170779206969,214,0 +170779207018,214,0 +170779207066,214,0 +170779207114,214,0 +170779207163,214,0 +170779207211,214,0 +170779207259,215,0 +170779207309,214,0 +170779207357,215,0 +170779207405,215,0 +170779207453,214,0 +170779207502,215,0 +170779207552,214,0 +170779207599,213,0 +170779207649,213,0 +170779207698,213,0 +170779207748,213,0 +170779207796,214,0 +170779207844,214,0 +170779207892,214,0 +170779207941,214,0 +170779207989,214,0 +170779208037,214,0 +170779208085,214,0 +170779208133,214,0 +170779208181,214,0 +170779208228,214,0 +170779208276,214,0 +170779208326,214,0 +170779208375,215,0 +170779208423,215,0 +170779208472,214,0 +170779208520,213,0 +170779208568,213,0 +170779208616,213,0 +170779208664,213,0 +170779208713,214,0 +170779208761,214,0 +170779208809,214,0 +170779208857,214,0 +170779208906,214,0 +170779208954,214,0 +170779209002,214,0 +170779209050,214,0 +170779209098,214,0 +170779209148,214,0 +170779209196,215,0 +170779209243,214,0 +170779209293,215,0 +170779209341,215,0 +170779209389,214,0 +170779209437,214,0 +170779209485,213,0 +170779209533,213,0 +170779209582,214,0 +170779209630,214,0 +170779209678,214,0 +170779209727,214,0 +170779209775,214,0 +170779209823,214,0 +170779209871,214,0 +170779209919,214,0 +170779209969,214,0 +170779210017,215,0 +170779210066,215,0 +170779210114,215,0 +170779210163,215,0 +170779210211,215,0 +170779210261,215,0 +170779210310,215,0 +170779210358,214,0 +170779210407,213,0 +170779210455,213,0 +170779210505,213,0 +170779210553,214,0 +170779210602,214,0 +170779210652,214,0 +170779210700,214,0 +170779210748,214,0 +170779210795,214,0 +170779210845,214,0 +170779210893,214,0 +170779210940,214,0 +170779210988,214,0 +170779211036,214,0 +170779211084,215,0 +170779211132,214,0 +170779211180,215,0 +170779211228,215,0 +170779211276,214,0 +170779211325,213,0 +170779211373,213,0 +170779211422,213,0 +170779211470,214,0 +170779211518,214,0 +170779211566,213,0 +170779211616,214,0 +170779211665,214,0 +170779211715,214,0 +170779211763,214,0 +170779211811,214,0 +170779211859,214,0 +170779211907,214,0 +170779211955,214,0 +170779212004,214,0 +170779212053,215,0 +170779212101,215,0 +170779212151,215,0 +170779212199,214,0 +170779212246,214,0 +170779212294,213,0 +170779212342,214,0 +170779212392,214,0 +170779212441,214,0 +170779212489,214,0 +170779212537,214,0 +170779212587,214,0 +170779212634,214,0 +170779212682,214,0 +170779212730,214,0 +170779212778,214,0 +170779212826,214,0 +170779212876,215,0 +170779212925,214,0 +170779212973,214,0 +170779213021,215,0 +170779213069,214,0 +170779213119,214,0 +170779213167,214,0 +170779213215,214,0 +170779213262,213,0 +170779213310,214,0 +170779213358,214,0 +170779213406,214,0 +170779213454,214,0 +170779213502,214,0 +170779213550,214,0 +170779213598,214,0 +170779213646,215,0 +170779213694,215,0 +170779213742,215,0 +170779213792,215,0 +170779213841,215,0 +170779213889,215,0 +170779213938,215,0 +170779213986,214,0 +170779214034,214,0 +170779214082,214,0 +170779214132,213,0 +170779214180,213,0 +170779214228,213,0 +170779214277,214,0 +170779214325,214,0 +170779214373,214,0 +170779214421,214,0 +170779214469,214,0 +170779214517,214,0 +170779214566,214,0 +170779214616,214,0 +170779214665,214,0 +170779214713,214,0 +170779214763,214,0 +170779214811,214,0 +170779214859,215,0 +170779214906,215,0 +170779214954,215,0 +170779215002,214,0 +170779215050,213,0 +170779215100,213,0 +170779215148,214,0 +170779215197,214,0 +170779215245,214,0 +170779215295,214,0 +170779215343,214,0 +170779215390,214,0 +170779215438,214,0 +170779215486,214,0 +170779215534,214,0 +170779215582,214,0 +170779215630,214,0 +170779215677,214,0 +170779215725,214,0 +170779215773,214,0 +170779215821,214,0 +170779215869,215,0 +170779215918,214,0 +170779215968,214,0 +170779216017,214,0 +170779216067,214,0 +170779216115,214,0 +170779216163,214,0 +170779216210,214,0 +170779216258,214,0 +170779216306,214,0 +170779216354,214,0 +170779216403,214,0 +170779216453,214,0 +170779216501,214,0 +170779216549,214,0 +170779216596,215,0 +170779216644,214,0 +170779216692,215,0 +170779216742,214,0 +170779216791,215,0 +170779216841,214,0 +170779216891,214,0 +170779216938,214,0 +170779216986,214,0 +170779217034,214,0 +170779217082,214,0 +170779217130,214,0 +170779217178,214,0 +170779217226,214,0 +170779217274,214,0 +170779217321,214,0 +170779217369,214,0 +170779217417,214,0 +170779217467,215,0 +170779217516,215,0 +170779217564,215,0 +170779217612,215,0 +170779217661,215,0 +170779217709,215,0 +170779217758,215,0 +170779217806,214,0 +170779217854,214,0 +170779217904,214,0 +170779217952,214,0 +170779218000,214,0 +170779218049,214,0 +170779218097,214,0 +170779218147,214,0 +170779218196,214,0 +170779218244,214,0 +170779218294,214,0 +170779218343,215,0 +170779218391,215,0 +170779218439,215,0 +170779218487,215,0 +170779218535,215,0 +170779218583,215,0 +170779218631,215,0 +170779218679,215,0 +170779218727,214,0 +170779218776,214,0 +170779218826,214,0 +170779218873,214,0 +170779218923,214,0 +170779218971,214,0 +170779219020,214,0 +170779219070,214,0 +170779219119,214,0 +170779219168,214,0 +170779219217,214,0 +170779219265,214,0 +170779219313,214,0 +170779219362,215,0 +170779219410,215,0 +170779219460,215,0 +170779219508,215,0 +170779219555,215,0 +170779219603,215,0 +170779219651,215,0 +170779219699,214,0 +170779219747,214,0 +170779219797,214,0 +170779219846,214,0 +170779219894,214,0 +170779219942,214,0 +170779219990,214,0 +170779220038,214,0 +170779220086,214,0 +170779220135,214,0 +170779220185,215,0 +170779220233,215,0 +170779220281,214,0 +170779220328,215,0 +170779220378,214,0 +170779220426,215,0 +170779220475,215,0 +170779220523,214,0 +170779220571,214,0 +170779220621,214,0 +170779220669,214,0 +170779220718,214,0 +170779220766,214,0 +170779220814,214,0 +170779220864,214,0 +170779220913,214,0 +170779220963,214,0 +170779221012,214,0 +170779221062,214,0 +170779221111,214,0 +170779221161,215,0 +170779221209,215,0 +170779221257,214,0 +170779221305,215,0 +170779221354,215,0 +170779221404,215,0 +170779221453,215,0 +170779221501,214,0 +170779221551,214,0 +170779221600,213,0 +170779221648,214,0 +170779221696,214,0 +170779221746,213,0 +170779221795,214,0 +170779221843,214,0 +170779221893,214,0 +170779221942,214,0 +170779221992,214,0 +170779222040,214,0 +170779222087,214,0 +170779222135,214,0 +170779222185,214,0 +170779222235,215,0 +170779222283,214,0 +170779222331,215,0 +170779222380,215,0 +170779222428,215,0 +170779222476,213,0 +170779222524,213,0 +170779222573,213,0 +170779222621,213,0 +170779222669,213,0 +170779222717,214,0 +170779222765,214,0 +170779222815,214,0 +170779222863,214,0 +170779222911,214,0 +170779222959,214,0 +170779223006,214,0 +170779223054,215,0 +170779223104,215,0 +170779223152,214,0 +170779223200,215,0 +170779223248,215,0 +170779223296,214,0 +170779223344,215,0 +170779223392,214,0 +170779223439,213,0 +170779223489,213,0 +170779223539,213,0 +170779223586,213,0 +170779223636,214,0 +170779223684,214,0 +170779223732,214,0 +170779223781,214,0 +170779223831,214,0 +170779223879,214,0 +170779223928,214,0 +170779223976,214,0 +170779224024,214,0 +170779224072,214,0 +170779224120,214,0 +170779224168,214,0 +170779224216,215,0 +170779224264,215,0 +170779224312,214,0 +170779224360,214,0 +170779224408,213,0 +170779224457,213,0 +170779224507,214,0 +170779224555,214,0 +170779224603,214,0 +170779224651,214,0 +170779224700,214,0 +170779224748,214,0 +170779224798,214,0 +170779224846,214,0 +170779224895,214,0 +170779224943,214,0 +170779224991,214,0 +170779225040,214,0 +170779225088,214,0 +170779225138,215,0 +170779225186,214,0 +170779225234,214,0 +170779225283,213,0 +170779225333,213,0 +170779225381,214,0 +170779225428,214,0 +170779225476,214,0 +170779225526,214,0 +170779225574,214,0 +170779225622,214,0 +170779225670,214,0 +170779225719,214,0 +170779225769,214,0 +170779225816,214,0 +170779225864,215,0 +170779225914,214,0 +170779225962,215,0 +170779226010,215,0 +170779226058,214,0 +170779226107,214,0 +170779226156,215,0 +170779226204,213,0 +170779226252,213,0 +170779226300,213,0 +170779226348,214,0 +170779226398,214,0 +170779226447,213,0 +170779226497,214,0 +170779226544,214,0 +170779226592,214,0 +170779226642,214,0 +170779226690,214,0 +170779226739,214,0 +170779226787,214,0 +170779226835,214,0 +170779226885,214,0 +170779226934,214,0 +170779226982,214,0 +170779227031,215,0 +170779227079,214,0 +170779227129,213,0 +170779227177,213,0 +170779227225,213,0 +170779227272,213,0 +170779227320,213,0 +170779227368,213,0 +170779227418,214,0 +170779227465,214,0 +170779227515,214,0 +170779227564,214,0 +170779227612,214,0 +170779227660,214,0 +170779227709,214,0 +170779227757,214,0 +170779227807,214,0 +170779227854,214,0 +170779227902,214,0 +170779227950,214,0 +170779228000,214,0 +170779228049,214,0 +170779228097,213,0 +170779228145,213,0 +170779228194,213,0 +170779228242,214,0 +170779228292,213,0 +170779228340,214,0 +170779228389,214,0 +170779228437,214,0 +170779228487,214,0 +170779228535,214,0 +170779228583,214,0 +170779228632,214,0 +170779228682,214,0 +170779228730,214,0 +170779228778,214,0 +170779228827,214,0 +170779228875,214,0 +170779228923,214,0 +170779228971,214,0 +170779229019,213,0 +170779229068,214,0 +170779229116,213,0 +170779229164,213,0 +170779229214,214,0 +170779229263,214,0 +170779229313,214,0 +170779229360,214,0 +170779229408,214,0 +170779229456,214,0 +170779229504,214,0 +170779229552,214,0 +170779229602,214,0 +170779229651,214,0 +170779229701,215,0 +170779229750,214,0 +170779229800,214,0 +170779229848,215,0 +170779229897,214,0 +170779229945,214,0 +170779229993,213,0 +170779230043,213,0 +170779230091,214,0 +170779230139,214,0 +170779230186,214,0 +170779230234,214,0 +170779230282,214,0 +170779230330,214,0 +170779230378,214,0 +170779230428,214,0 +170779230475,214,0 +170779230523,215,0 +170779230573,215,0 +170779230621,215,0 +170779230669,215,0 +170779230717,214,0 +170779230766,214,0 +170779230814,214,0 +170779230864,214,0 +170779230912,214,0 +170779230961,214,0 +170779231011,214,0 +170779231060,214,0 +170779231108,214,0 +170779231158,214,0 +170779231206,214,0 +170779231254,214,0 +170779231302,214,0 +170779231350,214,0 +170779231399,214,0 +170779231447,214,0 +170779231496,215,0 +170779231544,215,0 +170779231594,214,0 +170779231642,215,0 +170779231690,215,0 +170779231738,214,0 +170779231787,214,0 +170779231836,214,0 +170779231884,213,0 +170779231932,214,0 +170779231982,214,0 +170779232031,214,0 +170779232079,214,0 +170779232127,214,0 +170779232174,214,0 +170779232222,214,0 +170779232270,215,0 +170779232318,215,0 +170779232367,215,0 +170779232415,215,0 +170779232463,215,0 +170779232511,215,0 +170779232559,215,0 +170779232607,214,0 +170779232654,214,0 +170779232702,214,0 +170779232750,213,0 +170779232798,213,0 +170779232848,214,0 +170779232896,214,0 +170779232945,214,0 +170779232993,214,0 +170779233041,214,0 +170779233089,214,0 +170779233137,214,0 +170779233185,215,0 +170779233233,215,0 +170779233280,215,0 +170779233330,215,0 +170779233378,215,0 +170779233427,215,0 +170779233477,215,0 +170779233525,214,0 +170779233574,214,0 +170779233624,214,0 +170779233672,214,0 +170779233720,213,0 +170779233768,213,0 +170779233815,214,0 +170779233863,214,0 +170779233913,214,0 +170779233962,214,0 +170779234012,214,0 +170779234061,214,0 +170779234109,214,0 +170779234157,214,0 +170779234205,214,0 +170779234253,215,0 +170779234301,214,0 +170779234349,214,0 +170779234396,215,0 +170779234444,215,0 +170779234492,215,0 +170779234540,214,0 +170779234588,213,0 +170779234638,213,0 +170779234687,213,0 +170779234737,213,0 +170779234786,214,0 +170779234834,213,0 +170779234882,214,0 +170779234930,214,0 +170779234980,214,0 +170779235029,214,0 +170779235079,214,0 +170779235128,214,0 +170779235176,214,0 +170779235224,214,0 +170779235274,214,0 +170779235322,215,0 +170779235370,215,0 +170779235419,214,0 +170779235469,214,0 +170779235518,213,0 +170779235566,213,0 +170779235614,213,0 +170779235662,214,0 +170779235710,214,0 +170779235758,214,0 +170779235806,214,0 +170779235854,214,0 +170779235903,214,0 +170779235953,214,0 +170779236002,214,0 +170779236050,214,0 +170779236099,215,0 +170779236147,215,0 +170779236195,215,0 +170779236245,214,0 +170779236293,215,0 +170779236342,215,0 +170779236392,214,0 +170779236440,213,0 +170779236488,213,0 +170779236537,213,0 +170779236587,213,0 +170779236635,214,0 +170779236684,213,0 +170779236732,214,0 +170779236782,214,0 +170779236830,214,0 +170779236879,214,0 +170779236927,214,0 +170779236975,214,0 +170779237023,214,0 +170779237070,214,0 +170779237118,214,0 +170779237166,215,0 +170779237215,215,0 +170779237263,214,0 +170779237311,214,0 +170779237361,213,0 +170779237410,213,0 +170779237460,213,0 +170779237509,213,0 +170779237559,213,0 +170779237608,213,0 +170779237656,213,0 +170779237704,214,0 +170779237752,214,0 +170779237802,214,0 +170779237851,214,0 +170779237899,214,0 +170779237949,214,0 +170779237998,214,0 +170779238046,214,0 +170779238094,214,0 +170779238142,214,0 +170779238190,214,0 +170779238238,214,0 +170779238286,214,0 +170779238335,214,0 +170779238383,215,0 +170779238433,214,0 +170779238481,215,0 +170779238529,215,0 +170779238577,215,0 +170779238626,215,0 +170779238676,215,0 +170779238724,214,0 +170779238773,213,0 +170779238821,213,0 +170779238871,213,0 +170779238918,213,0 +170779238968,214,0 +170779239018,214,0 +170779239065,214,0 +170779239113,214,0 +170779239163,214,0 +170779239211,214,0 +170779239259,214,0 +170779239307,214,0 +170779239356,214,0 +170779239406,214,0 +170779239454,214,0 +170779239503,215,0 +170779239551,214,0 +170779239601,215,0 +170779239649,214,0 +170779239698,213,0 +170779239746,213,0 +170779239796,213,0 +170779239845,213,0 +170779239893,213,0 +170779239941,214,0 +170779239990,214,0 +170779240038,213,0 +170779240088,214,0 +170779240136,214,0 +170779240184,214,0 +170779240232,214,0 +170779240281,214,0 +170779240329,214,0 +170779240379,214,0 +170779240427,214,0 +170779240475,214,0 +170779240524,215,0 +170779240572,214,0 +170779240620,214,0 +170779240668,213,0 +170779240716,213,0 +170779240766,213,0 +170779240813,213,0 +170779240862,214,0 +170779240909,214,0 +170779240957,214,0 +170779241007,214,0 +170779241055,214,0 +170779241103,214,0 +170779241151,214,0 +170779241198,214,0 +170779241246,214,0 +170779241296,214,0 +170779241346,214,0 +170779241393,215,0 +170779241441,214,0 +170779241491,215,0 +170779241539,214,0 +170779241587,214,0 +170779241636,214,0 +170779241684,214,0 +170779241732,214,0 +170779241782,214,0 +170779241830,214,0 +170779241878,214,0 +170779241927,214,0 +170779241975,214,0 +170779242024,214,0 +170779242074,214,0 +170779242123,214,0 +170779242171,214,0 +170779242219,214,0 +170779242269,215,0 +170779242318,214,0 +170779242366,215,0 +170779242414,215,0 +170779242464,214,0 +170779242513,214,0 +170779242563,214,0 +170779242611,214,0 +170779242660,214,0 +170779242708,214,0 +170779242756,214,0 +170779242804,214,0 +170779242852,214,0 +170779242902,214,0 +170779242950,214,0 +170779242998,214,0 +170779243046,215,0 +170779243094,215,0 +170779243143,215,0 +170779243191,214,0 +170779243239,215,0 +170779243287,215,0 +170779243336,215,0 +170779243384,214,0 +170779243432,213,0 +170779243482,214,0 +170779243531,214,0 +170779243579,214,0 +170779243627,214,0 +170779243675,214,0 +170779243723,214,0 +170779243773,214,0 +170779243822,214,0 +170779243872,214,0 +170779243921,214,0 +170779243971,215,0 +170779244021,215,0 +170779244069,215,0 +170779244117,215,0 +170779244165,215,0 +170779244214,215,0 +170779244264,215,0 +170779244312,214,0 +170779244360,213,0 +170779244408,213,0 +170779244456,214,0 +170779244504,213,0 +170779244552,214,0 +170779244600,214,0 +170779244649,214,0 +170779244697,214,0 +170779244745,214,0 +170779244793,214,0 +170779244841,214,0 +170779244889,214,0 +170779244937,214,0 +170779244985,214,0 +170779245033,215,0 +170779245081,215,0 +170779245129,215,0 +170779245178,215,0 +170779245226,214,0 +170779245274,213,0 +170779245322,213,0 +170779245372,213,0 +170779245420,213,0 +170779245468,214,0 +170779245516,214,0 +170779245565,214,0 +170779245614,214,0 +170779245664,214,0 +170779245713,214,0 +170779245761,214,0 +170779245809,214,0 +170779245857,214,0 +170779245905,214,0 +170779245953,215,0 +170779246001,214,0 +170779246049,214,0 +170779246097,214,0 +170779246145,214,0 +170779246193,214,0 +170779246242,213,0 +170779246292,214,0 +170779246340,214,0 +170779246388,214,0 +170779246435,214,0 +170779246483,214,0 +170779246531,214,0 +170779246581,214,0 +170779246629,214,0 +170779246677,214,0 +170779246726,214,0 +170779246774,214,0 +170779246822,214,0 +170779246870,215,0 +170779246920,214,0 +170779246968,215,0 +170779247017,214,0 +170779247065,215,0 +170779247113,214,0 +170779247161,213,0 +170779247209,214,0 +170779247257,214,0 +170779247305,214,0 +170779247352,214,0 +170779247400,214,0 +170779247448,214,0 +170779247496,214,0 +170779247544,214,0 +170779247592,214,0 +170779247642,214,0 +170779247691,215,0 +170779247741,215,0 +170779247789,215,0 +170779247838,215,0 +170779247888,215,0 +170779247936,215,0 +170779247985,215,0 +170779248033,214,0 +170779248082,214,0 +170779248132,214,0 +170779248182,214,0 +170779248229,214,0 +170779248277,214,0 +170779248325,214,0 +170779248373,214,0 +170779248421,214,0 +170779248469,214,0 +170779248518,214,0 +170779248566,215,0 +170779248616,214,0 +170779248664,214,0 +170779248711,215,0 +170779248759,215,0 +170779248807,215,0 +170779248855,215,0 +170779248903,215,0 +170779248953,214,0 +170779249000,214,0 +170779249050,213,0 +170779249098,214,0 +170779249147,214,0 +170779249195,214,0 +170779249243,214,0 +170779249291,214,0 +170779249339,214,0 +170779249388,214,0 +170779249438,214,0 +170779249487,214,0 +170779249537,214,0 +170779249586,215,0 +170779249636,215,0 +170779249685,214,0 +170779249735,215,0 +170779249783,215,0 +170779249832,215,0 +170779249880,214,0 +170779249928,213,0 +170779249976,213,0 +170779250026,213,0 +170779250074,214,0 +170779250122,214,0 +170779250170,214,0 +170779250217,214,0 +170779250265,214,0 +170779250313,214,0 +170779250361,214,0 +170779250409,214,0 +170779250457,214,0 +170779250505,215,0 +170779250553,215,0 +170779250602,215,0 +170779250652,215,0 +170779250701,215,0 +170779250749,215,0 +170779250799,215,0 +170779250848,213,0 +170779250896,213,0 +170779250946,214,0 +170779250995,214,0 +170779251043,214,0 +170779251091,214,0 +170779251140,214,0 +170779251188,214,0 +170779251236,214,0 +170779251284,214,0 +170779251332,214,0 +170779251382,214,0 +170779251431,214,0 +170779251481,214,0 +170779251529,214,0 +170779251578,214,0 +170779251628,214,0 +170779251677,214,0 +170779251727,215,0 +170779251775,213,0 +170779251822,213,0 +170779251870,214,0 +170779251920,213,0 +170779251969,213,0 +170779252017,214,0 +170779252065,214,0 +170779252115,214,0 +170779252163,214,0 +170779252210,214,0 +170779252258,214,0 +170779252306,214,0 +170779252354,214,0 +170779252403,215,0 +170779252451,215,0 +170779252501,215,0 +170779252550,215,0 +170779252600,215,0 +170779252649,214,0 +170779252697,214,0 +170779252745,213,0 +170779252795,214,0 +170779252842,213,0 +170779252890,214,0 +170779252938,214,0 +170779252986,214,0 +170779253034,214,0 +170779253082,214,0 +170779253130,214,0 +170779253178,214,0 +170779253227,214,0 +170779253275,214,0 +170779253323,214,0 +170779253371,214,0 +170779253421,215,0 +170779253468,216,0 +170779253516,215,0 +170779253566,215,0 +170779253615,214,0 +170779253663,213,0 +170779253711,214,0 +170779253759,214,0 +170779253807,214,0 +170779253855,214,0 +170779253903,214,0 +170779253953,214,0 +170779254001,214,0 +170779254049,214,0 +170779254097,214,0 +170779254146,214,0 +170779254194,215,0 +170779254244,215,0 +170779254292,215,0 +170779254339,215,0 +170779254387,215,0 +170779254435,215,0 +170779254483,214,0 +170779254531,214,0 +170779254581,214,0 +170779254628,213,0 +170779254676,214,0 +170779254724,213,0 +170779254774,214,0 +170779254823,214,0 +170779254871,214,0 +170779254921,214,0 +170779254969,214,0 +170779255016,214,0 +170779255064,215,0 +170779255114,215,0 +170779255163,215,0 +170779255213,215,0 +170779255261,215,0 +170779255309,215,0 +170779255358,215,0 +170779255408,215,0 +170779255457,214,0 +170779255507,213,0 +170779255556,214,0 +170779255604,214,0 +170779255654,214,0 +170779255702,214,0 +170779255750,214,0 +170779255798,214,0 +170779255846,214,0 +170779255893,214,0 +170779255941,214,0 +170779255989,214,0 +170779256039,214,0 +170779256087,214,0 +170779256135,215,0 +170779256184,215,0 +170779256232,215,0 +170779256280,215,0 +170779256328,215,0 +170779256377,215,0 +170779256427,214,0 +170779256475,214,0 +170779256522,214,0 +170779256572,214,0 +170779256621,214,0 +170779256669,214,0 +170779256717,214,0 +170779256765,214,0 +170779256815,214,0 +170779256863,214,0 +170779256911,214,0 +170779256959,214,0 +170779257007,214,0 +170779257055,215,0 +170779257103,215,0 +170779257150,215,0 +170779257198,215,0 +170779257248,215,0 +170779257296,214,0 +170779257345,214,0 +170779257393,214,0 +170779257441,213,0 +170779257491,214,0 +170779257540,214,0 +170779257588,214,0 +170779257636,214,0 +170779257684,214,0 +170779257733,214,0 +170779257781,214,0 +170779257829,214,0 +170779257877,214,0 +170779257925,215,0 +170779257973,215,0 +170779258021,215,0 +170779258070,215,0 +170779258118,215,0 +170779258166,215,0 +170779258214,214,0 +170779258263,214,0 +170779258311,214,0 +170779258359,213,0 +170779258407,214,0 +170779258457,214,0 +170779258505,214,0 +170779258554,214,0 +170779258602,214,0 +170779258650,214,0 +170779258698,214,0 +170779258747,214,0 +170779258797,214,0 +170779258846,214,0 +170779258894,214,0 +170779258942,214,0 +170779258990,215,0 +170779259038,214,0 +170779259088,214,0 +170779259137,214,0 +170779259185,214,0 +170779259233,213,0 +170779259281,214,0 +170779259329,213,0 +170779259378,214,0 +170779259426,214,0 +170779259474,214,0 +170779259522,214,0 +170779259570,214,0 +170779259618,214,0 +170779259667,214,0 +170779259715,214,0 +170779259763,214,0 +170779259811,214,0 +170779259861,215,0 +170779259909,214,0 +170779259958,215,0 +170779260008,215,0 +170779260057,215,0 +170779260105,215,0 +170779260153,214,0 +170779260203,214,0 +170779260251,214,0 +170779260299,214,0 +170779260348,214,0 +170779260396,214,0 +170779260444,214,0 +170779260493,214,0 +170779260541,214,0 +170779260591,214,0 +170779260640,214,0 +170779260688,214,0 +170779260736,214,0 +170779260784,215,0 +170779260832,215,0 +170779260882,215,0 +170779260931,215,0 +170779260981,215,0 +170779261030,214,0 +170779261080,214,0 +170779261129,214,0 +170779261177,214,0 +170779261227,214,0 +170779261276,214,0 +170779261326,214,0 +170779261374,214,0 +170779261421,214,0 +170779261471,214,0 +170779261519,214,0 +170779261567,214,0 +170779261616,215,0 +170779261665,215,0 +170779261713,215,0 +170779261761,215,0 +170779261809,215,0 +170779261857,215,0 +170779261905,215,0 +170779261952,215,0 +170779262000,214,0 +170779262050,214,0 +170779262098,214,0 +170779262147,214,0 +170779262195,214,0 +170779262245,214,0 +170779262293,214,0 +170779262342,214,0 +170779262390,214,0 +170779262440,214,0 +170779262487,214,0 +170779262537,214,0 +170779262586,215,0 +170779262634,215,0 +170779262682,215,0 +170779262730,215,0 +170779262778,215,0 +170779262826,215,0 +170779262874,215,0 +170779262924,214,0 +170779262972,214,0 +170779263019,214,0 +170779263069,213,0 +170779263117,214,0 +170779263166,214,0 +170779263214,214,0 +170779263262,214,0 +170779263310,214,0 +170779263358,214,0 +170779263406,214,0 +170779263456,214,0 +170779263505,214,0 +170779263553,214,0 +170779263602,214,0 +170779263650,214,0 +170779263698,215,0 +170779263746,215,0 +170779263795,214,0 +170779263843,214,0 +170779263893,213,0 +170779263941,214,0 +170779263988,214,0 +170779264036,214,0 +170779264084,214,0 +170779264132,214,0 +170779264180,214,0 +170779264228,214,0 +170779264276,214,0 +170779264324,214,0 +170779264372,214,0 +170779264419,214,0 +170779264467,215,0 +170779264515,215,0 +170779264563,215,0 +170779264611,215,0 +170779264659,215,0 +170779264708,215,0 +170779264756,215,0 +170779264804,214,0 +170779264852,213,0 +170779264900,213,0 +170779264948,214,0 +170779264996,214,0 +170779265044,214,0 +170779265093,214,0 +170779265141,214,0 +170779265189,214,0 +170779265237,214,0 +170779265286,214,0 +170779265334,214,0 +170779265382,214,0 +170779265430,215,0 +170779265478,215,0 +170779265526,214,0 +170779265574,215,0 +170779265623,215,0 +170779265671,215,0 +170779265719,214,0 +170779265767,213,0 +170779265816,213,0 +170779265864,213,0 +170779265912,213,0 +170779265960,214,0 +170779266010,213,0 +170779266059,213,0 +170779266107,214,0 +170779266155,214,0 +170779266204,214,0 +170779266252,214,0 +170779266302,214,0 +170779266351,214,0 +170779266399,214,0 +170779266447,214,0 +170779266496,214,0 +170779266544,214,0 +170779266592,214,0 +170779266641,214,0 +170779266689,213,0 +170779266737,213,0 +170779266785,213,0 +170779266833,214,0 +170779266880,213,0 +170779266928,213,0 +170779266976,214,0 +170779267024,214,0 +170779267072,214,0 +170779267121,214,0 +170779267171,214,0 +170779267218,214,0 +170779267266,214,0 +170779267314,214,0 +170779267362,214,0 +170779267410,215,0 +170779267458,214,0 +170779267506,214,0 +170779267553,215,0 +170779267601,214,0 +170779267649,214,0 +170779267697,213,0 +170779267746,213,0 +170779267794,214,0 +170779267842,214,0 +170779267890,214,0 +170779267937,214,0 +170779267985,214,0 +170779268033,214,0 +170779268081,214,0 +170779268129,214,0 +170779268177,214,0 +170779268225,214,0 +170779268274,215,0 +170779268322,215,0 +170779268370,215,0 +170779268417,215,0 +170779268465,215,0 +170779268513,214,0 +170779268562,214,0 +170779268610,214,0 +170779268658,213,0 +170779268706,214,0 +170779268754,214,0 +170779268803,214,0 +170779268851,214,0 +170779268899,214,0 +170779268947,214,0 +170779268996,214,0 +170779269044,214,0 +170779269092,214,0 +170779269140,214,0 +170779269188,214,0 +170779269235,214,0 +170779269283,215,0 +170779269331,214,0 +170779269379,215,0 +170779269428,214,0 +170779269476,213,0 +170779269524,213,0 +170779269572,214,0 +170779269620,213,0 +170779269668,213,0 +170779269715,214,0 +170779269763,214,0 +170779269813,214,0 +170779269860,214,0 +170779269910,214,0 +170779269958,214,0 +170779270005,214,0 +170779270053,214,0 +170779270101,214,0 +170779270149,214,0 +170779270198,214,0 +170779270246,214,0 +170779270294,214,0 +170779270342,214,0 +170779270390,214,0 +170779270437,213,0 +170779270485,213,0 +170779270533,213,0 +170779270581,213,0 +170779270629,213,0 +170779270677,213,0 +170779270724,213,0 +170779270772,213,0 +170779270820,214,0 +170779270868,214,0 +170779270916,214,0 +170779270964,214,0 +170779271012,214,0 +170779271060,214,0 +170779271108,214,0 +170779271157,214,0 +170779271205,214,0 +170779271253,214,0 +170779271301,214,0 +170779271349,213,0 +170779271396,213,0 +170779271444,213,0 +170779271492,213,0 +170779271540,213,0 +170779271588,213,0 +170779271636,213,0 +170779271683,213,0 +170779271731,213,0 +170779271779,213,0 +170779271828,214,0 +170779271876,214,0 +170779271926,214,0 +170779271974,214,0 +170779272021,214,0 +170779272069,214,0 +170779272117,214,0 +170779272165,214,0 +170779272213,214,0 +170779272261,214,0 +170779272310,213,0 +170779272358,213,0 +170779272407,213,0 +170779272455,213,0 +170779272503,213,0 +170779272552,213,0 +170779272600,214,0 +170779272648,214,0 +170779272696,214,0 +170779272744,214,0 +170779272792,214,0 +170779272839,214,0 +170779272887,214,0 +170779272935,214,0 +170779272983,214,0 +170779273031,214,0 +170779273080,214,0 +170779273130,215,0 +170779273177,214,0 +170779273225,213,0 +170779273273,213,0 +170779273322,213,0 +170779273370,214,0 +170779273420,213,0 +170779273469,214,0 +170779273517,214,0 +170779273565,214,0 +170779273612,214,0 +170779273660,214,0 +170779273710,214,0 +170779273758,214,0 +170779273805,214,0 +170779273853,214,0 +170779273901,215,0 +170779273951,214,0 +170779273998,214,0 +170779274048,215,0 +170779274095,214,0 +170779274144,213,0 +170779274191,214,0 +170779274239,213,0 +170779274287,214,0 +170779274336,214,0 +170779274386,214,0 +170779274435,214,0 +170779274483,214,0 +170779274531,214,0 +170779274579,214,0 +170779274628,214,0 +170779274676,214,0 +170779274724,214,0 +170779274771,214,0 +170779274821,215,0 +170779274869,215,0 +170779274918,214,0 +170779274966,214,0 +170779275014,214,0 +170779275062,213,0 +170779275110,214,0 +170779275158,214,0 +170779275206,214,0 +170779275254,214,0 +170779275302,214,0 +170779275350,214,0 +170779275399,214,0 +170779275447,214,0 +170779275497,214,0 +170779275544,214,0 +170779275592,214,0 +170779275640,214,0 +170779275688,214,0 +170779275736,214,0 +170779275784,214,0 +170779275832,215,0 +170779275882,215,0 +170779275930,214,0 +170779275977,214,0 +170779276027,214,0 +170779276075,214,0 +170779276123,214,0 +170779276171,214,0 +170779276220,214,0 +170779276270,214,0 +170779276318,214,0 +170779276367,214,0 +170779276417,214,0 +170779276465,214,0 +170779276513,215,0 +170779276561,214,0 +170779276610,215,0 +170779276658,215,0 +170779276708,215,0 +170779276757,215,0 +170779276805,214,0 +170779276853,214,0 +170779276903,214,0 +170779276952,214,0 +170779277000,214,0 +170779277050,214,0 +170779277098,214,0 +170779277147,214,0 +170779277195,214,0 +170779277243,215,0 +170779277293,215,0 +170779277341,215,0 +170779277390,215,0 +170779277438,215,0 +170779277486,215,0 +170779277535,215,0 +170779277583,215,0 +170779277631,215,0 +170779277679,215,0 +170779277727,215,0 +170779277775,215,0 +170779277823,214,0 +170779277871,214,0 +170779277920,214,0 +170779277970,214,0 +170779278018,214,0 +170779278067,214,0 +170779278115,214,0 +170779278163,214,0 +170779278213,215,0 +170779278262,215,0 +170779278311,214,0 +170779278358,215,0 +170779278406,215,0 +170779278454,215,0 +170779278504,215,0 +170779278552,215,0 +170779278601,215,0 +170779278649,215,0 +170779278697,215,0 +170779278745,214,0 +170779278793,213,0 +170779278842,213,0 +170779278890,214,0 +170779278938,214,0 +170779278986,214,0 +170779279034,214,0 +170779279082,214,0 +170779279130,214,0 +170779279178,214,0 +170779279228,214,0 +170779279275,214,0 +170779279323,215,0 +170779279373,215,0 +170779279422,215,0 +170779279470,215,0 +170779279518,214,0 +170779279566,214,0 +170779279616,214,0 +170779279664,214,0 +170779279712,213,0 +170779279761,213,0 +170779279809,213,0 +170779279857,213,0 +170779279905,214,0 +170779279953,214,0 +170779280001,214,0 +170779280050,214,0 +170779280098,214,0 +170779280146,214,0 +170779280196,214,0 +170779280244,214,0 +170779280292,214,0 +170779280341,214,0 +170779280389,214,0 +170779280437,214,0 +170779280485,215,0 +170779280533,215,0 +170779280582,214,0 +170779280632,214,0 +170779280680,213,0 +170779280729,214,0 +170779280779,213,0 +170779280827,214,0 +170779280875,214,0 +170779280923,214,0 +170779280971,214,0 +170779281019,214,0 +170779281067,214,0 +170779281115,214,0 +170779281164,214,0 +170779281212,214,0 +170779281260,214,0 +170779281308,214,0 +170779281356,214,0 +170779281404,215,0 +170779281452,215,0 +170779281500,215,0 +170779281549,214,0 +170779281597,213,0 +170779281647,214,0 +170779281696,214,0 +170779281744,214,0 +170779281793,214,0 +170779281841,214,0 +170779281889,214,0 +170779281937,214,0 +170779281985,214,0 +170779282033,214,0 +170779282081,214,0 +170779282129,214,0 +170779282177,214,0 +170779282225,214,0 +170779282275,214,0 +170779282322,214,0 +170779282370,214,0 +170779282418,215,0 +170779282466,214,0 +170779282516,213,0 +170779282565,213,0 +170779282613,213,0 +170779282661,213,0 +170779282709,213,0 +170779282757,214,0 +170779282805,214,0 +170779282853,214,0 +170779282902,214,0 +170779282952,214,0 +170779283000,214,0 +170779283048,214,0 +170779283096,214,0 +170779283145,214,0 +170779283194,214,0 +170779283244,214,0 +170779283294,215,0 +170779283343,215,0 +170779283393,214,0 +170779283441,214,0 +170779283489,213,0 +170779283538,214,0 +170779283588,214,0 +170779283635,214,0 +170779283683,214,0 +170779283731,214,0 +170779283779,214,0 +170779283827,214,0 +170779283877,214,0 +170779283925,214,0 +170779283974,214,0 +170779284022,214,0 +170779284071,214,0 +170779284121,215,0 +170779284171,214,0 +170779284219,215,0 +170779284268,215,0 +170779284318,214,0 +170779284366,213,0 +170779284414,214,0 +170779284462,214,0 +170779284511,214,0 +170779284559,214,0 +170779284607,214,0 +170779284655,214,0 +170779284705,214,0 +170779284753,214,0 +170779284801,214,0 +170779284850,214,0 +170779284898,214,0 +170779284947,214,0 +170779284995,214,0 +170779285045,214,0 +170779285093,215,0 +170779285141,214,0 +170779285191,215,0 +170779285239,214,0 +170779285287,214,0 +170779285335,213,0 +170779285383,213,0 +170779285431,214,0 +170779285480,214,0 +170779285528,214,0 +170779285576,214,0 +170779285624,214,0 +170779285673,214,0 +170779285721,214,0 +170779285769,214,0 +170779285817,214,0 +170779285865,215,0 +170779285913,215,0 +170779285961,214,0 +170779286009,215,0 +170779286056,215,0 +170779286104,215,0 +170779286154,214,0 +170779286202,214,0 +170779286250,213,0 +170779286298,213,0 +170779286346,213,0 +170779286394,214,0 +170779286441,213,0 +170779286489,214,0 +170779286537,214,0 +170779286585,214,0 +170779286633,214,0 +170779286683,214,0 +170779286731,214,0 +170779286779,214,0 +170779286828,214,0 +170779286878,214,0 +170779286926,214,0 +170779286974,214,0 +170779287023,214,0 +170779287071,214,0 +170779287119,214,0 +170779287167,213,0 +170779287215,213,0 +170779287264,213,0 +170779287312,213,0 +170779287360,213,0 +170779287408,214,0 +170779287456,213,0 +170779287504,214,0 +170779287554,214,0 +170779287602,214,0 +170779287650,214,0 +170779287698,214,0 +170779287746,214,0 +170779287793,214,0 +170779287841,214,0 +170779287891,214,0 +170779287939,214,0 +170779287987,214,0 +170779288035,215,0 +170779288083,214,0 +170779288132,213,0 +170779288180,214,0 +170779288228,214,0 +170779288276,214,0 +170779288326,214,0 +170779288375,214,0 +170779288425,214,0 +170779288474,214,0 +170779288522,214,0 +170779288570,214,0 +170779288618,214,0 +170779288667,214,0 +170779288717,214,0 +170779288767,214,0 +170779288814,214,0 +170779288862,214,0 +170779288912,214,0 +170779288960,215,0 +170779289008,214,0 +170779289056,213,0 +170779289104,214,0 +170779289153,214,0 +170779289201,214,0 +170779289249,213,0 +170779289298,214,0 +170779289346,214,0 +170779289394,214,0 +170779289441,214,0 +170779289489,214,0 +170779289537,214,0 +170779289585,214,0 +170779289633,215,0 +170779289681,215,0 +170779289729,215,0 +170779289777,215,0 +170779289824,215,0 +170779289872,214,0 +170779289920,214,0 +170779289968,213,0 +170779290016,214,0 +170779290064,214,0 +170779290111,214,0 +170779290159,214,0 +170779290207,214,0 +170779290255,214,0 +170779290303,214,0 +170779290351,214,0 +170779290399,214,0 +170779290446,214,0 +170779290494,214,0 +170779290542,214,0 +170779290590,215,0 +170779290638,215,0 +170779290686,215,0 +170779290735,215,0 +170779290783,215,0 +170779290831,215,0 +170779290879,214,0 +170779290929,214,0 +170779290978,214,0 +170779291026,214,0 +170779291074,214,0 +170779291124,214,0 +170779291173,214,0 +170779291223,214,0 +170779291271,214,0 +170779291320,214,0 +170779291370,215,0 +170779291418,214,0 +170779291466,215,0 +170779291515,215,0 +170779291563,215,0 +170779291611,215,0 +170779291659,215,0 +170779291707,215,0 +170779291756,215,0 +170779291804,214,0 +170779291852,214,0 +170779291902,214,0 +170779291950,214,0 +170779291998,214,0 +170779292047,214,0 +170779292095,214,0 +170779292144,214,0 +170779292192,214,0 +170779292240,214,0 +170779292290,215,0 +170779292338,214,0 +170779292387,215,0 +170779292435,215,0 +170779292485,215,0 +170779292533,215,0 +170779292580,215,0 +170779292628,215,0 +170779292676,215,0 +170779292726,214,0 +170779292775,214,0 +170779292823,213,0 +170779292871,214,0 +170779292920,214,0 +170779292968,214,0 +170779293018,214,0 +170779293066,214,0 +170779293114,214,0 +170779293162,214,0 +170779293211,214,0 +170779293259,214,0 +170779293309,214,0 +170779293358,214,0 +170779293406,214,0 +170779293454,215,0 +170779293502,214,0 +170779293551,215,0 +170779293599,215,0 +170779293647,214,0 +170779293695,213,0 +170779293743,214,0 +170779293791,214,0 +170779293839,214,0 +170779293888,214,0 +170779293936,214,0 +170779293984,214,0 +170779294032,214,0 +170779294082,214,0 +170779294131,214,0 +170779294179,214,0 +170779294228,214,0 +170779294276,214,0 +170779294324,214,0 +170779294374,214,0 +170779294423,214,0 +170779294473,214,0 +170779294522,214,0 +170779294570,214,0 +170779294618,213,0 +170779294668,213,0 +170779294717,214,0 +170779294765,214,0 +170779294815,214,0 +170779294863,214,0 +170779294912,214,0 +170779294962,214,0 +170779295009,214,0 +170779295057,214,0 +170779295105,214,0 +170779295155,214,0 +170779295203,214,0 +170779295251,214,0 +170779295300,214,0 +170779295348,215,0 +170779295396,215,0 +170779295444,215,0 +170779295493,215,0 +170779295541,213,0 +170779295589,213,0 +170779295637,213,0 +170779295685,213,0 +170779295734,213,0 +170779295782,213,0 +170779295830,214,0 +170779295878,214,0 +170779295926,213,0 +170779295974,214,0 +170779296022,214,0 +170779296070,214,0 +170779296118,214,0 +170779296166,214,0 +170779296214,214,0 +170779296261,214,0 +170779296309,214,0 +170779296359,215,0 +170779296408,214,0 +170779296456,214,0 +170779296504,213,0 +170779296552,213,0 +170779296600,213,0 +170779296648,214,0 +170779296697,214,0 +170779296745,214,0 +170779296793,214,0 +170779296841,214,0 +170779296890,214,0 +170779296938,214,0 +170779296986,214,0 +170779297034,214,0 +170779297082,214,0 +170779297131,214,0 +170779297179,214,0 +170779297227,214,0 +170779297277,215,0 +170779297325,214,0 +170779297374,214,0 +170779297424,213,0 +170779297472,213,0 +170779297521,213,0 +170779297569,213,0 +170779297617,214,0 +170779297665,214,0 +170779297715,214,0 +170779297764,214,0 +170779297814,214,0 +170779297862,214,0 +170779297910,214,0 +170779297958,214,0 +170779298007,214,0 +170779298055,214,0 +170779298103,215,0 +170779298153,215,0 +170779298201,214,0 +170779298249,214,0 +170779298298,214,0 +170779298346,213,0 +170779298394,213,0 +170779298443,214,0 +170779298491,214,0 +170779298539,214,0 +170779298587,214,0 +170779298635,214,0 +170779298684,214,0 +170779298732,214,0 +170779298782,214,0 +170779298830,214,0 +170779298877,214,0 +170779298925,214,0 +170779298973,215,0 +170779299023,215,0 +170779299071,215,0 +170779299119,214,0 +170779299166,214,0 +170779299214,215,0 +170779299262,213,0 +170779299310,213,0 +170779299358,213,0 +170779299406,214,0 +170779299454,214,0 +170779299502,214,0 +170779299549,214,0 +170779299597,214,0 +170779299646,214,0 +170779299694,214,0 +170779299744,214,0 +170779299792,214,0 +170779299840,214,0 +170779299887,215,0 +170779299935,215,0 +170779299983,215,0 +170779300033,215,0 +170779300081,214,0 +170779300129,214,0 +170779300176,214,0 +170779300224,213,0 +170779300272,213,0 +170779300320,213,0 +170779300370,213,0 +170779300418,213,0 +170779300465,213,0 +170779300515,214,0 +170779300564,214,0 +170779300612,214,0 +170779300662,214,0 +170779300710,214,0 +170779300758,214,0 +170779300806,214,0 +170779300853,214,0 +170779300901,214,0 +170779300949,214,0 +170779300999,214,0 +170779301048,214,0 +170779301096,214,0 +170779301144,213,0 +170779301192,213,0 +170779301241,213,0 +170779301289,213,0 +170779301339,214,0 +170779301388,214,0 +170779301436,214,0 +170779301484,214,0 +170779301534,214,0 +170779301583,214,0 +170779301631,214,0 +170779301679,214,0 +170779301726,214,0 +170779301774,214,0 +170779301822,215,0 +170779301872,215,0 +170779301920,215,0 +170779301968,215,0 +170779302015,214,0 +170779302065,213,0 +170779302113,214,0 +170779302162,213,0 +170779302212,214,0 +170779302260,213,0 +170779302308,214,0 +170779302357,214,0 +170779302405,214,0 +170779302455,214,0 +170779302503,214,0 +170779302551,214,0 +170779302600,214,0 +170779302650,214,0 +170779302698,214,0 +170779302747,214,0 +170779302796,214,0 +170779302844,214,0 +170779302894,214,0 +170779302942,214,0 +170779302991,214,0 +170779303039,213,0 +170779303087,214,0 +170779303135,214,0 +170779303183,214,0 +170779303231,214,0 +170779303281,214,0 +170779303329,214,0 +170779303376,214,0 +170779303424,214,0 +170779303474,214,0 +170779303522,214,0 +170779303571,214,0 +170779303621,214,0 +170779303670,214,0 +170779303718,214,0 +170779303766,214,0 +170779303814,214,0 +170779303864,214,0 +170779303911,214,0 +170779303959,214,0 +170779304009,214,0 +170779304057,214,0 +170779304105,214,0 +170779304153,214,0 +170779304200,214,0 +170779304248,214,0 +170779304296,214,0 +170779304344,214,0 +170779304392,214,0 +170779304440,215,0 +170779304489,215,0 +170779304537,215,0 +170779304587,215,0 +170779304636,215,0 +170779304684,215,0 +170779304734,215,0 +170779304783,215,0 +170779304831,214,0 +170779304879,214,0 +170779304927,214,0 +170779304975,214,0 +170779305024,214,0 +170779305072,214,0 +170779305122,214,0 +170779305169,214,0 +170779305219,214,0 +170779305267,214,0 +170779305315,214,0 +170779305363,214,0 +170779305411,215,0 +170779305460,215,0 +170779305510,215,0 +170779305559,215,0 +170779305608,214,0 +170779305656,214,0 +170779305704,215,0 +170779305752,215,0 +170779305800,214,0 +170779305850,214,0 +170779305897,214,0 +170779305945,214,0 +170779305993,214,0 +170779306041,214,0 +170779306089,214,0 +170779306137,214,0 +170779306184,215,0 +170779306232,215,0 +170779306282,215,0 +170779306330,215,0 +170779306378,215,0 +170779306425,215,0 +170779306473,215,0 +170779306521,215,0 +170779306569,215,0 +170779306617,215,0 +170779306665,215,0 +170779306712,214,0 +170779306760,214,0 +170779306808,214,0 +170779306856,214,0 +170779306904,214,0 +170779306952,214,0 +170779307000,214,0 +170779307047,214,0 +170779307095,215,0 +170779307143,215,0 +170779307193,214,0 +170779307241,215,0 +170779307290,215,0 +170779307340,215,0 +170779307387,215,0 +170779307435,215,0 +170779307483,215,0 +170779307533,215,0 +170779307581,214,0 +170779307630,214,0 +170779307678,214,0 +170779307726,214,0 +170779307774,214,0 +170779307823,214,0 +170779307871,214,0 +170779307919,214,0 +170779307967,214,0 +170779308015,214,0 +170779308063,214,0 +170779308111,214,0 +170779308160,214,0 +170779308210,214,0 +170779308258,214,0 +170779308306,215,0 +170779308355,215,0 +170779308403,214,0 +170779308451,215,0 +170779308499,215,0 +170779308547,214,0 +170779308596,213,0 +170779308644,213,0 +170779308692,213,0 +170779308741,213,0 +170779308791,213,0 +170779308840,213,0 +170779308888,214,0 +170779308938,214,0 +170779308986,214,0 +170779309034,214,0 +170779309083,214,0 +170779309132,214,0 +170779309180,214,0 +170779309228,214,0 +170779309276,215,0 +170779309324,214,0 +170779309372,215,0 +170779309422,215,0 +170779309471,215,0 +170779309519,213,0 +170779309569,213,0 +170779309618,213,0 +170779309668,213,0 +170779309717,214,0 +170779309765,214,0 +170779309813,214,0 +170779309861,214,0 +170779309909,214,0 +170779309957,214,0 +170779310005,214,0 +170779310054,214,0 +170779310102,214,0 +170779310151,215,0 +170779310199,214,0 +170779310247,215,0 +170779310297,215,0 +170779310345,214,0 +170779310392,215,0 +170779310440,213,0 +170779310488,213,0 +170779310538,213,0 +170779310587,213,0 +170779310635,214,0 +170779310683,214,0 +170779310731,214,0 +170779310781,214,0 +170779310829,214,0 +170779310877,214,0 +170779310925,214,0 +170779310972,214,0 +170779311022,214,0 +170779311070,214,0 +170779311118,215,0 +170779311166,215,0 +170779311215,215,0 +170779311263,214,0 +170779311313,215,0 +170779311362,214,0 +170779311410,213,0 +170779311458,213,0 +170779311508,213,0 +170779311556,213,0 +170779311605,213,0 +170779311653,214,0 +170779311703,213,0 +170779311752,214,0 +170779311800,214,0 +170779311848,214,0 +170779311897,214,0 +170779311945,214,0 +170779311995,214,0 +170779312043,214,0 +170779312092,214,0 +170779312140,214,0 +170779312188,214,0 +170779312238,214,0 +170779312287,214,0 +170779312337,213,0 +170779312385,213,0 +170779312433,213,0 +170779312480,213,0 +170779312530,213,0 +170779312578,213,0 +170779312626,213,0 +170779312674,214,0 +170779312723,214,0 +170779312771,214,0 +170779312820,214,0 +170779312868,214,0 +170779312918,214,0 +170779312966,214,0 +170779313014,214,0 +170779313062,214,0 +170779313110,214,0 +170779313159,214,0 +170779313207,214,0 +170779313257,213,0 +170779313305,213,0 +170779313352,213,0 +170779313400,214,0 +170779313448,213,0 +170779313498,213,0 +170779313547,213,0 +170779313595,213,0 +170779313643,214,0 +170779313693,214,0 +170779313742,214,0 +170779313792,214,0 +170779313840,214,0 +170779313887,214,0 +170779313937,214,0 +170779313986,214,0 +170779314034,214,0 +170779314084,214,0 +170779314132,214,0 +170779314181,213,0 +170779314229,213,0 +170779314279,213,0 +170779314327,213,0 +170779314376,214,0 +170779314426,214,0 +170779314474,213,0 +170779314521,214,0 +170779314569,214,0 +170779314617,214,0 +170779314665,214,0 +170779314714,214,0 +170779314762,214,0 +170779314812,214,0 +170779314859,214,0 +170779314907,214,0 +170779314957,214,0 +170779315006,214,0 +170779315054,214,0 +170779315102,213,0 +170779315152,213,0 +170779315200,213,0 +170779315248,213,0 +170779315296,213,0 +170779315343,213,0 +170779315393,213,0 +170779315442,213,0 +170779315492,214,0 +170779315541,214,0 +170779315589,214,0 +170779315637,214,0 +170779315687,214,0 +170779315735,214,0 +170779315783,214,0 +170779315831,214,0 +170779315880,214,0 +170779315928,215,0 +170779315978,214,0 +170779316027,213,0 +170779316077,213,0 +170779316126,214,0 +170779316174,213,0 +170779316222,213,0 +170779316270,213,0 +170779316319,213,0 +170779316367,214,0 +170779316415,213,0 +170779316465,214,0 +170779316513,214,0 +170779316560,214,0 +170779316608,214,0 +170779316656,214,0 +170779316706,214,0 +170779316755,214,0 +170779316803,214,0 +170779316853,214,0 +170779316901,214,0 +170779316950,213,0 +170779317000,214,0 +170779317049,213,0 +170779317097,213,0 +170779317145,213,0 +170779317193,213,0 +170779317241,214,0 +170779317290,214,0 +170779317340,214,0 +170779317388,214,0 +170779317436,214,0 +170779317485,214,0 +170779317533,214,0 +170779317583,214,0 +170779317631,214,0 +170779317680,214,0 +170779317730,214,0 +170779317779,214,0 +170779317827,214,0 +170779317875,214,0 +170779317925,214,0 +170779317973,213,0 +170779318020,214,0 +170779318068,214,0 +170779318116,214,0 +170779318164,214,0 +170779318212,214,0 +170779318260,214,0 +170779318309,214,0 +170779318359,214,0 +170779318407,214,0 +170779318454,214,0 +170779318502,214,0 +170779318550,214,0 +170779318600,214,0 +170779318649,214,0 +170779318697,215,0 +170779318745,215,0 +170779318793,214,0 +170779318841,213,0 +170779318889,214,0 +170779318936,214,0 +170779318984,214,0 +170779319032,214,0 +170779319080,214,0 +170779319128,214,0 +170779319176,214,0 +170779319224,214,0 +170779319271,214,0 +170779319321,214,0 +170779319370,214,0 +170779319418,214,0 +170779319466,214,0 +170779319516,214,0 +170779319565,214,0 +170779319613,214,0 +170779319661,214,0 +170779319709,214,0 +170779319756,214,0 +170779319806,214,0 +170779319854,213,0 +170779319901,214,0 +170779319949,214,0 +170779319997,214,0 diff --git a/laser_value/0213-13.csv b/laser_value/0213-13.csv new file mode 100644 index 0000000..7813502 --- /dev/null +++ b/laser_value/0213-13.csv @@ -0,0 +1,7439 @@ +timestamp,laser_value,event +170779320045,214,0 +170779320093,214,0 +170779320141,214,0 +170779320189,214,0 +170779320238,214,0 +170779320286,215,0 +170779320334,214,0 +170779320382,214,0 +170779320430,215,0 +170779320478,215,0 +170779320526,214,0 +170779320575,215,0 +170779320625,214,0 +170779320674,214,0 +170779320722,214,0 +170779320770,214,0 +170779320818,214,0 +170779320866,214,0 +170779320914,214,0 +170779320962,214,0 +170779321010,214,0 +170779321059,214,0 +170779321109,214,0 +170779321157,215,0 +170779321206,215,0 +170779321256,215,0 +170779321304,215,0 +170779321351,214,0 +170779321399,215,0 +170779321447,215,0 +170779321495,214,0 +170779321543,214,0 +170779321591,214,0 +170779321639,214,0 +170779321687,214,0 +170779321735,214,0 +170779321782,214,0 +170779321830,214,0 +170779321878,214,0 +170779321926,214,0 +170779321974,214,0 +170779322024,214,0 +170779322072,214,0 +170779322120,214,0 +170779322167,215,0 +170779322215,215,0 +170779322263,215,0 +170779322311,215,0 +170779322359,215,0 +170779322407,215,0 +170779322454,214,0 +170779322502,214,0 +170779322550,213,0 +170779322598,214,0 +170779322648,214,0 +170779322697,213,0 +170779322745,214,0 +170779322793,214,0 +170779322841,214,0 +170779322890,214,0 +170779322938,214,0 +170779322986,214,0 +170779323034,214,0 +170779323082,215,0 +170779323131,215,0 +170779323181,214,0 +170779323229,215,0 +170779323277,215,0 +170779323325,215,0 +170779323374,214,0 +170779323423,214,0 +170779323471,213,0 +170779323519,213,0 +170779323567,213,0 +170779323615,214,0 +170779323663,214,0 +170779323711,214,0 +170779323760,214,0 +170779323808,214,0 +170779323856,214,0 +170779323904,214,0 +170779323953,214,0 +170779324001,214,0 +170779324049,214,0 +170779324099,214,0 +170779324147,214,0 +170779324196,215,0 +170779324244,214,0 +170779324292,214,0 +170779324340,214,0 +170779324388,214,0 +170779324436,213,0 +170779324484,214,0 +170779324531,213,0 +170779324581,213,0 +170779324629,214,0 +170779324678,214,0 +170779324726,214,0 +170779324775,214,0 +170779324825,214,0 +170779324873,214,0 +170779324921,214,0 +170779324970,214,0 +170779325020,214,0 +170779325068,215,0 +170779325115,215,0 +170779325163,215,0 +170779325213,214,0 +170779325261,215,0 +170779325308,214,0 +170779325356,213,0 +170779325404,213,0 +170779325452,214,0 +170779325500,214,0 +170779325548,214,0 +170779325596,214,0 +170779325645,214,0 +170779325693,214,0 +170779325743,214,0 +170779325792,214,0 +170779325842,214,0 +170779325889,214,0 +170779325939,214,0 +170779325988,214,0 +170779326036,214,0 +170779326084,214,0 +170779326132,214,0 +170779326180,215,0 +170779326228,214,0 +170779326276,213,0 +170779326324,214,0 +170779326372,214,0 +170779326419,214,0 +170779326467,214,0 +170779326515,214,0 +170779326563,214,0 +170779326611,214,0 +170779326660,214,0 +170779326708,214,0 +170779326756,214,0 +170779326804,215,0 +170779326852,214,0 +170779326899,214,0 +170779326947,214,0 +170779326997,215,0 +170779327044,214,0 +170779327092,215,0 +170779327140,214,0 +170779327189,213,0 +170779327237,213,0 +170779327285,213,0 +170779327335,214,0 +170779327382,214,0 +170779327432,214,0 +170779327480,214,0 +170779327527,214,0 +170779327575,214,0 +170779327623,214,0 +170779327672,214,0 +170779327720,214,0 +170779327768,214,0 +170779327816,214,0 +170779327864,214,0 +170779327911,215,0 +170779327961,214,0 +170779328009,214,0 +170779328057,214,0 +170779328106,214,0 +170779328156,213,0 +170779328204,214,0 +170779328251,214,0 +170779328299,214,0 +170779328347,214,0 +170779328397,214,0 +170779328445,214,0 +170779328493,214,0 +170779328541,214,0 +170779328589,214,0 +170779328638,214,0 +170779328688,214,0 +170779328737,214,0 +170779328785,214,0 +170779328833,214,0 +170779328883,215,0 +170779328931,214,0 +170779328978,215,0 +170779329028,214,0 +170779329076,213,0 +170779329124,213,0 +170779329172,213,0 +170779329220,214,0 +170779329267,214,0 +170779329317,214,0 +170779329365,214,0 +170779329414,214,0 +170779329462,214,0 +170779329510,214,0 +170779329560,214,0 +170779329608,214,0 +170779329656,214,0 +170779329703,214,0 +170779329751,214,0 +170779329799,214,0 +170779329847,214,0 +170779329895,215,0 +170779329943,214,0 +170779329993,213,0 +170779330041,213,0 +170779330090,213,0 +170779330138,213,0 +170779330188,213,0 +170779330235,213,0 +170779330283,214,0 +170779330331,214,0 +170779330379,214,0 +170779330427,214,0 +170779330477,214,0 +170779330526,214,0 +170779330575,214,0 +170779330623,214,0 +170779330671,214,0 +170779330719,214,0 +170779330767,214,0 +170779330815,214,0 +170779330863,214,0 +170779330911,214,0 +170779330959,213,0 +170779331007,214,0 +170779331054,213,0 +170779331102,213,0 +170779331150,214,0 +170779331198,214,0 +170779331248,214,0 +170779331296,214,0 +170779331343,214,0 +170779331391,214,0 +170779331439,214,0 +170779331487,214,0 +170779331536,214,0 +170779331584,214,0 +170779331632,215,0 +170779331680,214,0 +170779331728,215,0 +170779331775,214,0 +170779331825,214,0 +170779331874,213,0 +170779331922,213,0 +170779331970,214,0 +170779332019,214,0 +170779332067,214,0 +170779332115,214,0 +170779332165,214,0 +170779332213,214,0 +170779332262,214,0 +170779332310,214,0 +170779332360,214,0 +170779332409,214,0 +170779332457,214,0 +170779332505,214,0 +170779332553,215,0 +170779332603,215,0 +170779332652,215,0 +170779332702,214,0 +170779332750,214,0 +170779332799,214,0 +170779332847,213,0 +170779332895,214,0 +170779332943,214,0 +170779332991,214,0 +170779333039,214,0 +170779333087,214,0 +170779333135,214,0 +170779333183,214,0 +170779333232,214,0 +170779333280,214,0 +170779333329,214,0 +170779333379,214,0 +170779333427,214,0 +170779333475,215,0 +170779333524,215,0 +170779333572,215,0 +170779333620,215,0 +170779333668,214,0 +170779333718,214,0 +170779333766,214,0 +170779333814,214,0 +170779333863,214,0 +170779333911,214,0 +170779333959,214,0 +170779334007,214,0 +170779334057,214,0 +170779334105,214,0 +170779334152,214,0 +170779334200,214,0 +170779334250,214,0 +170779334298,214,0 +170779334346,214,0 +170779334395,215,0 +170779334443,215,0 +170779334491,215,0 +170779334539,215,0 +170779334587,214,0 +170779334636,214,0 +170779334684,214,0 +170779334732,214,0 +170779334780,214,0 +170779334828,214,0 +170779334877,214,0 +170779334925,214,0 +170779334975,214,0 +170779335023,214,0 +170779335071,215,0 +170779335118,215,0 +170779335168,214,0 +170779335216,215,0 +170779335264,215,0 +170779335312,215,0 +170779335360,215,0 +170779335408,215,0 +170779335455,214,0 +170779335503,215,0 +170779335551,214,0 +170779335601,214,0 +170779335650,214,0 +170779335700,214,0 +170779335748,214,0 +170779335796,214,0 +170779335843,214,0 +170779335891,214,0 +170779335941,214,0 +170779335990,214,0 +170779336038,215,0 +170779336086,214,0 +170779336136,214,0 +170779336183,215,0 +170779336231,215,0 +170779336279,215,0 +170779336329,215,0 +170779336378,215,0 +170779336428,215,0 +170779336476,214,0 +170779336524,214,0 +170779336572,213,0 +170779336620,214,0 +170779336668,213,0 +170779336717,214,0 +170779336765,214,0 +170779336815,214,0 +170779336864,214,0 +170779336912,214,0 +170779336960,214,0 +170779337008,214,0 +170779337056,214,0 +170779337104,214,0 +170779337152,215,0 +170779337200,215,0 +170779337247,215,0 +170779337295,214,0 +170779337343,214,0 +170779337391,214,0 +170779337439,213,0 +170779337487,213,0 +170779337537,213,0 +170779337585,214,0 +170779337633,214,0 +170779337682,214,0 +170779337730,214,0 +170779337780,214,0 +170779337828,214,0 +170779337877,214,0 +170779337925,214,0 +170779337975,214,0 +170779338022,214,0 +170779338070,215,0 +170779338120,214,0 +170779338168,214,0 +170779338217,214,0 +170779338265,215,0 +170779338313,214,0 +170779338363,214,0 +170779338412,213,0 +170779338460,214,0 +170779338508,213,0 +170779338556,214,0 +170779338604,214,0 +170779338652,214,0 +170779338702,214,0 +170779338751,214,0 +170779338801,214,0 +170779338850,214,0 +170779338898,214,0 +170779338946,215,0 +170779338994,214,0 +170779339042,215,0 +170779339090,215,0 +170779339138,214,0 +170779339186,215,0 +170779339235,214,0 +170779339285,214,0 +170779339334,213,0 +170779339384,213,0 +170779339432,213,0 +170779339481,213,0 +170779339529,214,0 +170779339577,214,0 +170779339627,214,0 +170779339675,214,0 +170779339723,214,0 +170779339772,214,0 +170779339820,214,0 +170779339868,214,0 +170779339917,214,0 +170779339965,214,0 +170779340013,214,0 +170779340061,214,0 +170779340109,214,0 +170779340158,214,0 +170779340206,214,0 +170779340254,213,0 +170779340302,213,0 +170779340351,213,0 +170779340399,213,0 +170779340447,213,0 +170779340497,213,0 +170779340544,214,0 +170779340592,214,0 +170779340640,214,0 +170779340688,214,0 +170779340737,214,0 +170779340785,214,0 +170779340835,214,0 +170779340883,214,0 +170779340932,214,0 +170779340980,214,0 +170779341030,214,0 +170779341077,214,0 +170779341127,214,0 +170779341175,213,0 +170779341224,213,0 +170779341274,213,0 +170779341322,214,0 +170779341370,214,0 +170779341419,214,0 +170779341467,214,0 +170779341515,214,0 +170779341563,214,0 +170779341611,214,0 +170779341660,214,0 +170779341708,214,0 +170779341758,214,0 +170779341807,214,0 +170779341857,214,0 +170779341906,214,0 +170779341954,214,0 +170779342004,214,0 +170779342052,214,0 +170779342100,214,0 +170779342149,213,0 +170779342199,213,0 +170779342247,214,0 +170779342295,214,0 +170779342343,214,0 +170779342391,214,0 +170779342438,214,0 +170779342486,214,0 +170779342534,214,0 +170779342582,214,0 +170779342630,214,0 +170779342679,214,0 +170779342727,214,0 +170779342777,215,0 +170779342825,214,0 +170779342873,215,0 +170779342922,215,0 +170779342972,214,0 +170779343021,213,0 +170779343070,213,0 +170779343118,214,0 +170779343168,214,0 +170779343216,214,0 +170779343265,214,0 +170779343313,214,0 +170779343361,214,0 +170779343409,214,0 +170779343459,214,0 +170779343507,214,0 +170779343556,214,0 +170779343606,215,0 +170779343655,215,0 +170779343705,215,0 +170779343754,214,0 +170779343804,214,0 +170779343852,215,0 +170779343900,214,0 +170779343949,214,0 +170779343997,214,0 +170779344045,214,0 +170779344093,214,0 +170779344142,214,0 +170779344192,214,0 +170779344240,214,0 +170779344288,214,0 +170779344336,215,0 +170779344385,214,0 +170779344433,215,0 +170779344481,214,0 +170779344529,215,0 +170779344578,215,0 +170779344628,215,0 +170779344677,215,0 +170779344727,215,0 +170779344775,215,0 +170779344823,215,0 +170779344872,214,0 +170779344920,214,0 +170779344968,214,0 +170779345016,214,0 +170779345064,214,0 +170779345112,214,0 +170779345161,214,0 +170779345209,214,0 +170779345257,214,0 +170779345305,215,0 +170779345353,214,0 +170779345401,214,0 +170779345450,214,0 +170779345498,215,0 +170779345548,215,0 +170779345596,215,0 +170779345644,215,0 +170779345693,214,0 +170779345743,214,0 +170779345791,214,0 +170779345839,213,0 +170779345887,214,0 +170779345935,214,0 +170779345982,214,0 +170779346030,214,0 +170779346078,214,0 +170779346128,214,0 +170779346177,214,0 +170779346225,214,0 +170779346273,214,0 +170779346321,214,0 +170779346369,214,0 +170779346417,215,0 +170779346464,214,0 +170779346514,215,0 +170779346563,215,0 +170779346611,215,0 +170779346659,215,0 +170779346707,214,0 +170779346756,213,0 +170779346804,213,0 +170779346852,213,0 +170779346900,213,0 +170779346948,213,0 +170779346996,214,0 +170779347045,214,0 +170779347093,214,0 +170779347141,214,0 +170779347191,214,0 +170779347239,214,0 +170779347287,214,0 +170779347334,214,0 +170779347382,214,0 +170779347430,214,0 +170779347478,214,0 +170779347526,214,0 +170779347574,214,0 +170779347622,214,0 +170779347671,213,0 +170779347721,213,0 +170779347770,213,0 +170779347820,214,0 +170779347869,214,0 +170779347917,214,0 +170779347967,214,0 +170779348015,214,0 +170779348063,214,0 +170779348111,214,0 +170779348159,214,0 +170779348208,214,0 +170779348256,214,0 +170779348304,214,0 +170779348352,214,0 +170779348402,214,0 +170779348451,214,0 +170779348501,215,0 +170779348550,214,0 +170779348598,213,0 +170779348646,214,0 +170779348696,213,0 +170779348743,214,0 +170779348791,214,0 +170779348839,214,0 +170779348889,214,0 +170779348937,214,0 +170779348985,214,0 +170779349034,214,0 +170779349082,214,0 +170779349130,214,0 +170779349178,214,0 +170779349226,215,0 +170779349274,215,0 +170779349322,214,0 +170779349370,215,0 +170779349418,214,0 +170779349466,214,0 +170779349514,213,0 +170779349562,213,0 +170779349610,214,0 +170779349659,214,0 +170779349707,214,0 +170779349755,214,0 +170779349803,214,0 +170779349852,214,0 +170779349902,214,0 +170779349950,214,0 +170779349997,214,0 +170779350047,214,0 +170779350095,214,0 +170779350143,214,0 +170779350192,214,0 +170779350240,214,0 +170779350288,215,0 +170779350336,214,0 +170779350384,214,0 +170779350434,214,0 +170779350482,214,0 +170779350530,214,0 +170779350578,214,0 +170779350627,214,0 +170779350677,214,0 +170779350725,214,0 +170779350772,214,0 +170779350820,214,0 +170779350868,214,0 +170779350918,214,0 +170779350966,214,0 +170779351015,215,0 +170779351063,215,0 +170779351111,215,0 +170779351159,214,0 +170779351206,215,0 +170779351254,214,0 +170779351304,214,0 +170779351352,214,0 +170779351400,214,0 +170779351447,214,0 +170779351495,214,0 +170779351545,214,0 +170779351592,214,0 +170779351642,214,0 +170779351691,214,0 +170779351739,214,0 +170779351787,214,0 +170779351835,214,0 +170779351883,214,0 +170779351931,214,0 +170779351980,214,0 +170779352028,215,0 +170779352076,215,0 +170779352124,215,0 +170779352173,215,0 +170779352221,215,0 +170779352271,214,0 +170779352318,213,0 +170779352366,213,0 +170779352414,213,0 +170779352462,214,0 +170779352510,214,0 +170779352558,214,0 +170779352607,214,0 +170779352655,214,0 +170779352703,214,0 +170779352751,214,0 +170779352799,214,0 +170779352847,214,0 +170779352895,214,0 +170779352943,214,0 +170779352991,214,0 +170779353039,214,0 +170779353087,214,0 +170779353135,214,0 +170779353182,214,0 +170779353230,213,0 +170779353278,213,0 +170779353326,213,0 +170779353374,213,0 +170779353423,213,0 +170779353473,213,0 +170779353522,213,0 +170779353570,213,0 +170779353618,213,0 +170779353666,214,0 +170779353714,213,0 +170779353764,213,0 +170779353812,214,0 +170779353861,214,0 +170779353909,214,0 +170779353958,214,0 +170779354008,214,0 +170779354056,214,0 +170779354105,214,0 +170779354153,213,0 +170779354203,213,0 +170779354251,214,0 +170779354299,214,0 +170779354347,214,0 +170779354395,214,0 +170779354442,214,0 +170779354490,214,0 +170779354538,214,0 +170779354586,214,0 +170779354634,214,0 +170779354682,214,0 +170779354731,214,0 +170779354779,214,0 +170779354829,215,0 +170779354877,214,0 +170779354925,214,0 +170779354972,214,0 +170779355022,214,0 +170779355070,214,0 +170779355118,213,0 +170779355166,213,0 +170779355213,213,0 +170779355261,214,0 +170779355309,214,0 +170779355357,214,0 +170779355405,214,0 +170779355453,214,0 +170779355501,214,0 +170779355549,214,0 +170779355597,214,0 +170779355644,214,0 +170779355692,214,0 +170779355740,214,0 +170779355788,214,0 +170779355836,214,0 +170779355886,215,0 +170779355933,215,0 +170779355981,214,0 +170779356029,213,0 +170779356077,213,0 +170779356125,213,0 +170779356173,213,0 +170779356223,214,0 +170779356270,214,0 +170779356318,214,0 +170779356366,214,0 +170779356414,214,0 +170779356464,214,0 +170779356511,214,0 +170779356561,214,0 +170779356609,214,0 +170779356657,214,0 +170779356705,214,0 +170779356753,214,0 +170779356801,214,0 +170779356850,215,0 +170779356898,215,0 +170779356946,214,0 +170779356994,213,0 +170779357043,214,0 +170779357091,213,0 +170779357139,214,0 +170779357187,214,0 +170779357237,214,0 +170779357286,214,0 +170779357336,214,0 +170779357384,214,0 +170779357432,214,0 +170779357480,214,0 +170779357529,214,0 +170779357577,214,0 +170779357627,214,0 +170779357674,214,0 +170779357722,215,0 +170779357770,215,0 +170779357820,214,0 +170779357868,213,0 +170779357917,213,0 +170779357965,213,0 +170779358013,214,0 +170779358062,214,0 +170779358112,214,0 +170779358160,214,0 +170779358208,214,0 +170779358255,214,0 +170779358303,214,0 +170779358353,214,0 +170779358401,215,0 +170779358449,214,0 +170779358496,215,0 +170779358544,214,0 +170779358592,214,0 +170779358642,214,0 +170779358691,214,0 +170779358739,215,0 +170779358787,214,0 +170779358835,213,0 +170779358883,213,0 +170779358933,213,0 +170779358981,213,0 +170779359030,214,0 +170779359080,214,0 +170779359128,214,0 +170779359177,214,0 +170779359225,214,0 +170779359275,214,0 +170779359324,214,0 +170779359374,214,0 +170779359423,214,0 +170779359471,214,0 +170779359519,215,0 +170779359569,214,0 +170779359618,215,0 +170779359668,214,0 +170779359716,214,0 +170779359765,213,0 +170779359813,213,0 +170779359861,213,0 +170779359909,213,0 +170779359957,213,0 +170779360006,214,0 +170779360054,214,0 +170779360104,214,0 +170779360152,214,0 +170779360201,214,0 +170779360251,214,0 +170779360300,214,0 +170779360348,214,0 +170779360398,214,0 +170779360447,214,0 +170779360495,214,0 +170779360543,214,0 +170779360591,214,0 +170779360641,213,0 +170779360690,213,0 +170779360738,214,0 +170779360786,214,0 +170779360834,214,0 +170779360882,213,0 +170779360931,214,0 +170779360981,213,0 +170779361030,214,0 +170779361078,214,0 +170779361126,214,0 +170779361176,214,0 +170779361225,214,0 +170779361275,214,0 +170779361322,215,0 +170779361370,214,0 +170779361418,215,0 +170779361466,215,0 +170779361516,214,0 +170779361564,214,0 +170779361613,213,0 +170779361661,213,0 +170779361709,213,0 +170779361759,214,0 +170779361806,213,0 +170779361854,214,0 +170779361904,214,0 +170779361952,214,0 +170779362000,214,0 +170779362047,214,0 +170779362095,214,0 +170779362145,214,0 +170779362194,214,0 +170779362244,214,0 +170779362293,214,0 +170779362341,215,0 +170779362391,215,0 +170779362439,215,0 +170779362488,214,0 +170779362536,213,0 +170779362586,213,0 +170779362634,213,0 +170779362683,213,0 +170779362731,213,0 +170779362779,213,0 +170779362827,214,0 +170779362875,214,0 +170779362925,214,0 +170779362974,214,0 +170779363024,214,0 +170779363073,214,0 +170779363121,214,0 +170779363171,214,0 +170779363220,214,0 +170779363268,214,0 +170779363316,214,0 +170779363366,214,0 +170779363413,214,0 +170779363463,213,0 +170779363511,213,0 +170779363560,213,0 +170779363608,214,0 +170779363656,213,0 +170779363704,213,0 +170779363754,214,0 +170779363802,214,0 +170779363851,214,0 +170779363901,214,0 +170779363951,214,0 +170779363998,214,0 +170779364048,214,0 +170779364096,214,0 +170779364144,214,0 +170779364192,214,0 +170779364240,214,0 +170779364289,214,0 +170779364337,214,0 +170779364385,213,0 +170779364433,213,0 +170779364481,213,0 +170779364529,213,0 +170779364579,214,0 +170779364627,214,0 +170779364676,214,0 +170779364726,214,0 +170779364774,214,0 +170779364821,214,0 +170779364869,214,0 +170779364919,214,0 +170779364967,214,0 +170779365015,215,0 +170779365063,215,0 +170779365111,214,0 +170779365159,215,0 +170779365208,214,0 +170779365256,214,0 +170779365306,214,0 +170779365355,213,0 +170779365403,214,0 +170779365451,214,0 +170779365501,214,0 +170779365550,214,0 +170779365598,214,0 +170779365647,214,0 +170779365695,214,0 +170779365743,214,0 +170779365791,214,0 +170779365839,215,0 +170779365888,214,0 +170779365938,215,0 +170779365986,215,0 +170779366034,215,0 +170779366082,215,0 +170779366130,215,0 +170779366178,214,0 +170779366226,213,0 +170779366275,214,0 +170779366323,214,0 +170779366370,214,0 +170779366418,214,0 +170779366466,214,0 +170779366515,214,0 +170779366563,214,0 +170779366613,214,0 +170779366661,215,0 +170779366709,214,0 +170779366756,215,0 +170779366804,215,0 +170779366854,215,0 +170779366901,214,0 +170779366949,215,0 +170779366997,215,0 +170779367045,214,0 +170779367093,214,0 +170779367141,214,0 +170779367189,213,0 +170779367236,214,0 +170779367284,214,0 +170779367332,214,0 +170779367380,214,0 +170779367428,214,0 +170779367476,214,0 +170779367524,214,0 +170779367573,214,0 +170779367621,215,0 +170779367669,215,0 +170779367717,215,0 +170779367766,215,0 +170779367814,215,0 +170779367862,215,0 +170779367910,215,0 +170779367958,215,0 +170779368006,214,0 +170779368053,214,0 +170779368101,214,0 +170779368149,214,0 +170779368198,214,0 +170779368246,214,0 +170779368296,214,0 +170779368344,214,0 +170779368392,214,0 +170779368440,214,0 +170779368489,214,0 +170779368538,215,0 +170779368588,214,0 +170779368636,215,0 +170779368685,215,0 +170779368733,214,0 +170779368781,215,0 +170779368831,214,0 +170779368879,215,0 +170779368927,214,0 +170779368975,214,0 +170779369022,214,0 +170779369072,214,0 +170779369120,214,0 +170779369169,214,0 +170779369217,214,0 +170779369265,214,0 +170779369313,214,0 +170779369361,214,0 +170779369409,214,0 +170779369457,215,0 +170779369505,215,0 +170779369553,215,0 +170779369602,215,0 +170779369650,215,0 +170779369698,215,0 +170779369746,215,0 +170779369794,214,0 +170779369842,215,0 +170779369889,214,0 +170779369937,214,0 +170779369985,214,0 +170779370033,214,0 +170779370081,214,0 +170779370129,214,0 +170779370176,214,0 +170779370224,214,0 +170779370272,214,0 +170779370320,214,0 +170779370368,214,0 +170779370416,214,0 +170779370464,214,0 +170779370512,214,0 +170779370560,214,0 +170779370609,215,0 +170779370657,215,0 +170779370707,215,0 +170779370756,214,0 +170779370804,214,0 +170779370854,214,0 +170779370903,213,0 +170779370951,213,0 +170779371001,214,0 +170779371049,214,0 +170779371098,214,0 +170779371148,213,0 +170779371197,214,0 +170779371247,214,0 +170779371295,214,0 +170779371343,214,0 +170779371391,214,0 +170779371438,214,0 +170779371486,214,0 +170779371536,214,0 +170779371584,214,0 +170779371632,214,0 +170779371680,214,0 +170779371728,214,0 +170779371777,213,0 +170779371825,213,0 +170779371873,213,0 +170779371921,213,0 +170779371969,213,0 +170779372017,213,0 +170779372065,213,0 +170779372114,214,0 +170779372164,214,0 +170779372212,213,0 +170779372261,214,0 +170779372309,214,0 +170779372357,214,0 +170779372405,214,0 +170779372453,214,0 +170779372500,214,0 +170779372548,214,0 +170779372596,215,0 +170779372644,214,0 +170779372692,214,0 +170779372742,213,0 +170779372789,213,0 +170779372837,213,0 +170779372885,214,0 +170779372933,214,0 +170779372983,213,0 +170779373032,214,0 +170779373082,214,0 +170779373130,214,0 +170779373178,214,0 +170779373226,214,0 +170779373275,214,0 +170779373323,214,0 +170779373373,214,0 +170779373421,214,0 +170779373470,214,0 +170779373518,214,0 +170779373566,214,0 +170779373614,213,0 +170779373664,213,0 +170779373713,213,0 +170779373763,213,0 +170779373811,213,0 +170779373859,213,0 +170779373908,214,0 +170779373956,214,0 +170779374006,213,0 +170779374055,214,0 +170779374103,214,0 +170779374151,214,0 +170779374199,214,0 +170779374249,214,0 +170779374298,214,0 +170779374346,214,0 +170779374394,214,0 +170779374442,214,0 +170779374490,214,0 +170779374538,214,0 +170779374587,213,0 +170779374635,213,0 +170779374685,213,0 +170779374733,213,0 +170779374781,213,0 +170779374829,213,0 +170779374878,213,0 +170779374928,214,0 +170779374976,214,0 +170779375025,214,0 +170779375075,214,0 +170779375123,214,0 +170779375171,214,0 +170779375218,214,0 +170779375268,214,0 +170779375316,214,0 +170779375364,214,0 +170779375413,214,0 +170779375463,214,0 +170779375511,213,0 +170779375560,213,0 +170779375608,213,0 +170779375656,213,0 +170779375706,213,0 +170779375755,213,0 +170779375803,214,0 +170779375851,214,0 +170779375899,214,0 +170779375947,214,0 +170779375995,214,0 +170779376042,214,0 +170779376090,214,0 +170779376138,214,0 +170779376186,214,0 +170779376234,214,0 +170779376283,214,0 +170779376331,214,0 +170779376379,214,0 +170779376426,214,0 +170779376474,213,0 +170779376522,213,0 +170779376572,214,0 +170779376620,214,0 +170779376667,214,0 +170779376715,214,0 +170779376765,214,0 +170779376814,214,0 +170779376862,214,0 +170779376911,214,0 +170779376959,214,0 +170779377009,214,0 +170779377057,214,0 +170779377105,214,0 +170779377153,214,0 +170779377201,215,0 +170779377249,214,0 +170779377298,214,0 +170779377348,213,0 +170779377397,213,0 +170779377445,213,0 +170779377493,214,0 +170779377541,213,0 +170779377591,213,0 +170779377640,214,0 +170779377689,214,0 +170779377739,214,0 +170779377787,214,0 +170779377837,214,0 +170779377886,214,0 +170779377936,214,0 +170779377985,215,0 +170779378035,214,0 +170779378083,214,0 +170779378132,215,0 +170779378180,214,0 +170779378229,214,0 +170779378277,213,0 +170779378325,213,0 +170779378373,213,0 +170779378423,214,0 +170779378472,214,0 +170779378520,214,0 +170779378569,214,0 +170779378617,214,0 +170779378665,214,0 +170779378715,214,0 +170779378764,214,0 +170779378812,214,0 +170779378862,214,0 +170779378910,214,0 +170779378958,214,0 +170779379007,214,0 +170779379055,214,0 +170779379103,215,0 +170779379151,214,0 +170779379199,214,0 +170779379247,214,0 +170779379297,214,0 +170779379345,213,0 +170779379393,214,0 +170779379441,214,0 +170779379489,214,0 +170779379538,214,0 +170779379586,214,0 +170779379634,214,0 +170779379684,214,0 +170779379732,214,0 +170779379779,215,0 +170779379829,215,0 +170779379877,215,0 +170779379926,215,0 +170779379974,215,0 +170779380024,214,0 +170779380072,214,0 +170779380120,214,0 +170779380168,213,0 +170779380216,213,0 +170779380263,214,0 +170779380311,214,0 +170779380359,214,0 +170779380407,214,0 +170779380455,214,0 +170779380503,214,0 +170779380552,214,0 +170779380600,214,0 +170779380649,214,0 +170779380697,214,0 +170779380745,214,0 +170779380793,215,0 +170779380841,214,0 +170779380889,215,0 +170779380937,215,0 +170779380986,215,0 +170779381034,214,0 +170779381082,213,0 +170779381130,213,0 +170779381177,214,0 +170779381225,214,0 +170779381273,214,0 +170779381321,214,0 +170779381371,214,0 +170779381420,214,0 +170779381470,214,0 +170779381518,214,0 +170779381566,214,0 +170779381614,214,0 +170779381661,214,0 +170779381711,214,0 +170779381759,215,0 +170779381808,215,0 +170779381856,214,0 +170779381906,214,0 +170779381954,214,0 +170779382002,213,0 +170779382050,213,0 +170779382098,213,0 +170779382146,213,0 +170779382194,213,0 +170779382243,214,0 +170779382291,214,0 +170779382341,214,0 +170779382389,214,0 +170779382436,214,0 +170779382484,214,0 +170779382534,214,0 +170779382582,214,0 +170779382630,214,0 +170779382678,214,0 +170779382726,214,0 +170779382773,214,0 +170779382821,214,0 +170779382869,214,0 +170779382917,213,0 +170779382965,213,0 +170779383015,213,0 +170779383062,213,0 +170779383110,213,0 +170779383158,214,0 +170779383206,213,0 +170779383254,214,0 +170779383304,214,0 +170779383351,214,0 +170779383400,214,0 +170779383449,214,0 +170779383499,214,0 +170779383548,214,0 +170779383598,214,0 +170779383647,214,0 +170779383697,214,0 +170779383745,214,0 +170779383793,214,0 +170779383842,213,0 +170779383892,213,0 +170779383940,213,0 +170779383989,213,0 +170779384039,213,0 +170779384087,213,0 +170779384135,213,0 +170779384182,213,0 +170779384230,213,0 +170779384280,213,0 +170779384328,214,0 +170779384376,214,0 +170779384425,214,0 +170779384473,214,0 +170779384521,214,0 +170779384571,214,0 +170779384620,214,0 +170779384670,214,0 +170779384718,214,0 +170779384768,213,0 +170779384815,213,0 +170779384863,213,0 +170779384911,213,0 +170779384959,213,0 +170779385009,214,0 +170779385057,214,0 +170779385106,214,0 +170779385156,214,0 +170779385204,214,0 +170779385251,214,0 +170779385300,214,0 +170779385349,214,0 +170779385399,214,0 +170779385447,214,0 +170779385494,214,0 +170779385542,214,0 +170779385592,214,0 +170779385640,214,0 +170779385689,213,0 +170779385737,213,0 +170779385785,213,0 +170779385833,213,0 +170779385881,214,0 +170779385929,214,0 +170779385977,214,0 +170779386025,214,0 +170779386073,214,0 +170779386122,214,0 +170779386172,214,0 +170779386219,214,0 +170779386269,214,0 +170779386317,214,0 +170779386364,214,0 +170779386412,214,0 +170779386460,215,0 +170779386508,215,0 +170779386558,214,0 +170779386607,213,0 +170779386655,213,0 +170779386703,214,0 +170779386751,214,0 +170779386801,214,0 +170779386850,214,0 +170779386898,214,0 +170779386946,214,0 +170779386994,214,0 +170779387042,214,0 +170779387090,214,0 +170779387138,214,0 +170779387187,214,0 +170779387237,214,0 +170779387285,214,0 +170779387333,214,0 +170779387380,214,0 +170779387430,215,0 +170779387479,214,0 +170779387527,214,0 +170779387575,214,0 +170779387623,214,0 +170779387671,214,0 +170779387720,214,0 +170779387770,214,0 +170779387818,214,0 +170779387867,214,0 +170779387917,214,0 +170779387967,214,0 +170779388016,214,0 +170779388066,214,0 +170779388115,214,0 +170779388163,215,0 +170779388212,215,0 +170779388260,214,0 +170779388308,214,0 +170779388356,215,0 +170779388405,215,0 +170779388453,213,0 +170779388503,213,0 +170779388552,214,0 +170779388602,213,0 +170779388651,214,0 +170779388699,214,0 +170779388749,214,0 +170779388797,214,0 +170779388845,214,0 +170779388893,214,0 +170779388941,214,0 +170779388990,214,0 +170779389040,214,0 +170779389087,214,0 +170779389137,214,0 +170779389185,215,0 +170779389233,215,0 +170779389281,214,0 +170779389329,214,0 +170779389377,213,0 +170779389425,213,0 +170779389474,213,0 +170779389522,213,0 +170779389570,214,0 +170779389618,214,0 +170779389666,214,0 +170779389715,214,0 +170779389763,214,0 +170779389811,214,0 +170779389860,214,0 +170779389908,214,0 +170779389956,214,0 +170779390003,214,0 +170779390051,214,0 +170779390099,214,0 +170779390147,214,0 +170779390195,215,0 +170779390243,214,0 +170779390292,214,0 +170779390340,213,0 +170779390388,214,0 +170779390436,214,0 +170779390484,214,0 +170779390532,214,0 +170779390580,214,0 +170779390629,214,0 +170779390679,214,0 +170779390728,214,0 +170779390778,214,0 +170779390826,214,0 +170779390874,214,0 +170779390922,215,0 +170779390970,214,0 +170779391018,214,0 +170779391067,215,0 +170779391117,214,0 +170779391165,214,0 +170779391212,214,0 +170779391260,213,0 +170779391308,213,0 +170779391358,213,0 +170779391406,214,0 +170779391455,214,0 +170779391503,214,0 +170779391551,214,0 +170779391599,214,0 +170779391647,214,0 +170779391696,214,0 +170779391744,214,0 +170779391794,214,0 +170779391843,214,0 +170779391893,214,0 +170779391940,214,0 +170779391988,215,0 +170779392038,215,0 +170779392087,214,0 +170779392135,214,0 +170779392183,213,0 +170779392232,213,0 +170779392280,213,0 +170779392328,213,0 +170779392376,213,0 +170779392424,214,0 +170779392471,213,0 +170779392519,214,0 +170779392567,214,0 +170779392615,214,0 +170779392663,214,0 +170779392712,214,0 +170779392760,214,0 +170779392808,214,0 +170779392857,214,0 +170779392905,214,0 +170779392953,214,0 +170779393001,214,0 +170779393049,214,0 +170779393096,214,0 +170779393144,214,0 +170779393192,214,0 +170779393240,214,0 +170779393288,214,0 +170779393337,215,0 +170779393385,215,0 +170779393433,214,0 +170779393481,214,0 +170779393529,214,0 +170779393576,213,0 +170779393624,214,0 +170779393672,214,0 +170779393720,214,0 +170779393769,214,0 +170779393817,214,0 +170779393865,214,0 +170779393913,214,0 +170779393961,214,0 +170779394008,214,0 +170779394056,214,0 +170779394104,214,0 +170779394153,214,0 +170779394201,214,0 +170779394249,214,0 +170779394297,215,0 +170779394345,215,0 +170779394392,214,0 +170779394440,214,0 +170779394488,213,0 +170779394536,213,0 +170779394585,214,0 +170779394633,213,0 +170779394681,214,0 +170779394729,214,0 +170779394778,214,0 +170779394828,214,0 +170779394876,214,0 +170779394923,214,0 +170779394971,215,0 +170779395019,214,0 +170779395067,214,0 +170779395115,215,0 +170779395163,215,0 +170779395210,215,0 +170779395258,215,0 +170779395306,215,0 +170779395354,214,0 +170779395402,213,0 +170779395449,213,0 +170779395497,214,0 +170779395545,214,0 +170779395594,214,0 +170779395642,214,0 +170779395690,214,0 +170779395739,213,0 +170779395787,214,0 +170779395837,214,0 +170779395884,214,0 +170779395932,214,0 +170779395980,214,0 +170779396028,215,0 +170779396076,215,0 +170779396124,215,0 +170779396171,215,0 +170779396219,214,0 +170779396269,214,0 +170779396316,214,0 +170779396364,213,0 +170779396412,214,0 +170779396461,214,0 +170779396509,214,0 +170779396557,214,0 +170779396605,214,0 +170779396653,214,0 +170779396701,214,0 +170779396748,214,0 +170779396796,214,0 +170779396844,214,0 +170779396892,214,0 +170779396940,214,0 +170779396988,215,0 +170779397035,215,0 +170779397083,214,0 +170779397131,215,0 +170779397179,214,0 +170779397227,214,0 +170779397275,213,0 +170779397323,213,0 +170779397370,213,0 +170779397418,214,0 +170779397466,214,0 +170779397514,214,0 +170779397562,214,0 +170779397609,214,0 +170779397657,214,0 +170779397705,214,0 +170779397753,214,0 +170779397801,214,0 +170779397849,214,0 +170779397897,214,0 +170779397945,214,0 +170779397993,215,0 +170779398041,215,0 +170779398089,214,0 +170779398137,214,0 +170779398186,213,0 +170779398236,213,0 +170779398285,213,0 +170779398333,213,0 +170779398381,214,0 +170779398429,213,0 +170779398477,213,0 +170779398526,214,0 +170779398576,213,0 +170779398625,214,0 +170779398673,214,0 +170779398723,214,0 +170779398771,214,0 +170779398818,214,0 +170779398866,214,0 +170779398914,214,0 +170779398962,214,0 +170779399010,215,0 +170779399058,214,0 +170779399106,213,0 +170779399154,213,0 +170779399202,213,0 +170779399249,214,0 +170779399299,213,0 +170779399347,214,0 +170779399396,214,0 +170779399444,214,0 +170779399492,214,0 +170779399540,214,0 +170779399588,214,0 +170779399635,214,0 +170779399683,214,0 +170779399731,214,0 +170779399779,214,0 +170779399829,215,0 +170779399877,214,0 +170779399926,214,0 +170779399975,214,0 +170779400023,213,0 +170779400071,213,0 +170779400121,213,0 +170779400169,213,0 +170779400217,213,0 +170779400265,214,0 +170779400314,214,0 +170779400362,214,0 +170779400412,214,0 +170779400461,214,0 +170779400509,214,0 +170779400557,214,0 +170779400606,214,0 +170779400654,214,0 +170779400702,214,0 +170779400750,214,0 +170779400798,214,0 +170779400846,214,0 +170779400895,214,0 +170779400943,214,0 +170779400991,213,0 +170779401039,213,0 +170779401089,213,0 +170779401136,213,0 +170779401184,214,0 +170779401234,213,0 +170779401282,213,0 +170779401329,214,0 +170779401377,214,0 +170779401425,214,0 +170779401473,214,0 +170779401521,214,0 +170779401569,214,0 +170779401617,214,0 +170779401665,214,0 +170779401714,214,0 +170779401762,214,0 +170779401810,215,0 +170779401859,214,0 +170779401907,213,0 +170779401955,213,0 +170779402003,213,0 +170779402053,213,0 +170779402101,214,0 +170779402150,213,0 +170779402199,213,0 +170779402247,213,0 +170779402297,214,0 +170779402345,214,0 +170779402392,214,0 +170779402440,214,0 +170779402488,214,0 +170779402536,214,0 +170779402584,214,0 +170779402632,214,0 +170779402680,214,0 +170779402728,214,0 +170779402776,214,0 +170779402823,213,0 +170779402871,213,0 +170779402919,213,0 +170779402967,213,0 +170779403015,213,0 +170779403063,214,0 +170779403110,213,0 +170779403158,214,0 +170779403208,214,0 +170779403256,214,0 +170779403304,214,0 +170779403352,214,0 +170779403399,214,0 +170779403447,214,0 +170779403495,214,0 +170779403543,214,0 +170779403591,215,0 +170779403639,214,0 +170779403688,214,0 +170779403736,213,0 +170779403784,213,0 +170779403832,213,0 +170779403882,213,0 +170779403930,213,0 +170779403977,213,0 +170779404025,214,0 +170779404073,213,0 +170779404121,213,0 +170779404169,214,0 +170779404217,214,0 +170779404265,214,0 +170779404313,214,0 +170779404361,214,0 +170779404408,214,0 +170779404458,214,0 +170779404507,214,0 +170779404557,214,0 +170779404605,214,0 +170779404653,213,0 +170779404701,213,0 +170779404748,213,0 +170779404796,213,0 +170779404844,213,0 +170779404892,213,0 +170779404940,213,0 +170779404989,213,0 +170779405037,214,0 +170779405086,214,0 +170779405134,214,0 +170779405182,214,0 +170779405230,214,0 +170779405278,214,0 +170779405326,214,0 +170779405375,214,0 +170779405423,214,0 +170779405471,215,0 +170779405519,214,0 +170779405567,214,0 +170779405615,213,0 +170779405663,213,0 +170779405712,213,0 +170779405760,213,0 +170779405808,214,0 +170779405858,214,0 +170779405906,214,0 +170779405954,214,0 +170779406002,214,0 +170779406050,214,0 +170779406099,214,0 +170779406147,214,0 +170779406195,214,0 +170779406245,214,0 +170779406294,214,0 +170779406342,215,0 +170779406391,215,0 +170779406439,214,0 +170779406487,213,0 +170779406537,213,0 +170779406584,213,0 +170779406632,213,0 +170779406682,214,0 +170779406730,214,0 +170779406779,214,0 +170779406827,214,0 +170779406875,214,0 +170779406923,214,0 +170779406971,214,0 +170779407020,214,0 +170779407070,214,0 +170779407118,214,0 +170779407167,214,0 +170779407217,214,0 +170779407265,214,0 +170779407314,214,0 +170779407362,214,0 +170779407412,214,0 +170779407460,213,0 +170779407509,213,0 +170779407559,214,0 +170779407606,213,0 +170779407654,213,0 +170779407702,214,0 +170779407750,214,0 +170779407798,214,0 +170779407846,214,0 +170779407896,214,0 +170779407944,214,0 +170779407993,214,0 +170779408041,214,0 +170779408091,214,0 +170779408139,214,0 +170779408187,214,0 +170779408234,214,0 +170779408284,214,0 +170779408332,214,0 +170779408380,213,0 +170779408428,214,0 +170779408477,214,0 +170779408527,214,0 +170779408575,214,0 +170779408623,214,0 +170779408671,214,0 +170779408720,214,0 +170779408769,214,0 +170779408819,214,0 +170779408867,214,0 +170779408915,214,0 +170779408965,215,0 +170779409014,214,0 +170779409062,215,0 +170779409112,215,0 +170779409160,215,0 +170779409209,214,0 +170779409259,214,0 +170779409308,214,0 +170779409356,214,0 +170779409405,214,0 +170779409453,214,0 +170779409503,214,0 +170779409551,214,0 +170779409599,214,0 +170779409647,214,0 +170779409695,215,0 +170779409743,215,0 +170779409791,215,0 +170779409839,215,0 +170779409887,215,0 +170779409935,215,0 +170779409982,215,0 +170779410030,215,0 +170779410080,215,0 +170779410128,215,0 +170779410176,214,0 +170779410225,214,0 +170779410275,214,0 +170779410325,214,0 +170779410373,214,0 +170779410422,214,0 +170779410470,214,0 +170779410518,214,0 +170779410566,215,0 +170779410614,215,0 +170779410663,215,0 +170779410713,215,0 +170779410761,215,0 +170779410809,215,0 +170779410857,215,0 +170779410905,215,0 +170779410954,215,0 +170779411002,214,0 +170779411052,214,0 +170779411101,214,0 +170779411149,214,0 +170779411197,214,0 +170779411245,214,0 +170779411293,214,0 +170779411342,214,0 +170779411392,214,0 +170779411440,214,0 +170779411488,214,0 +170779411536,214,0 +170779411584,215,0 +170779411633,214,0 +170779411683,214,0 +170779411730,215,0 +170779411778,215,0 +170779411828,215,0 +170779411876,215,0 +170779411924,214,0 +170779411973,214,0 +170779412021,214,0 +170779412069,213,0 +170779412119,214,0 +170779412167,214,0 +170779412215,214,0 +170779412263,214,0 +170779412311,214,0 +170779412360,214,0 +170779412408,214,0 +170779412457,214,0 +170779412505,214,0 +170779412553,214,0 +170779412603,214,0 +170779412651,214,0 +170779412699,215,0 +170779412748,215,0 +170779412796,214,0 +170779412846,215,0 +170779412895,214,0 +170779412943,214,0 +170779412991,213,0 +170779413039,213,0 +170779413087,213,0 +170779413135,214,0 +170779413183,214,0 +170779413232,214,0 +170779413282,214,0 +170779413330,214,0 +170779413377,214,0 +170779413425,214,0 +170779413473,214,0 +170779413521,214,0 +170779413569,214,0 +170779413617,214,0 +170779413667,214,0 +170779413714,214,0 +170779413762,215,0 +170779413810,214,0 +170779413858,214,0 +170779413906,213,0 +170779413954,213,0 +170779414002,213,0 +170779414050,214,0 +170779414099,214,0 +170779414147,214,0 +170779414195,214,0 +170779414243,214,0 +170779414291,214,0 +170779414339,214,0 +170779414387,214,0 +170779414435,214,0 +170779414484,214,0 +170779414532,214,0 +170779414580,214,0 +170779414628,215,0 +170779414676,214,0 +170779414723,214,0 +170779414771,215,0 +170779414819,213,0 +170779414869,213,0 +170779414917,213,0 +170779414964,214,0 +170779415012,214,0 +170779415062,214,0 +170779415110,214,0 +170779415158,214,0 +170779415207,214,0 +170779415255,214,0 +170779415303,214,0 +170779415351,214,0 +170779415400,214,0 +170779415450,214,0 +170779415498,214,0 +170779415547,214,0 +170779415595,214,0 +170779415643,215,0 +170779415692,214,0 +170779415740,214,0 +170779415788,213,0 +170779415836,214,0 +170779415884,214,0 +170779415932,214,0 +170779415981,214,0 +170779416029,214,0 +170779416077,214,0 +170779416127,214,0 +170779416176,214,0 +170779416224,214,0 +170779416272,214,0 +170779416320,214,0 +170779416368,214,0 +170779416416,215,0 +170779416465,215,0 +170779416515,215,0 +170779416564,215,0 +170779416612,214,0 +170779416660,213,0 +170779416708,213,0 +170779416756,213,0 +170779416805,213,0 +170779416855,214,0 +170779416903,214,0 +170779416953,214,0 +170779417002,214,0 +170779417052,214,0 +170779417100,214,0 +170779417148,214,0 +170779417197,214,0 +170779417245,214,0 +170779417293,214,0 +170779417341,215,0 +170779417391,215,0 +170779417438,215,0 +170779417486,215,0 +170779417534,215,0 +170779417582,214,0 +170779417630,214,0 +170779417679,213,0 +170779417727,213,0 +170779417775,214,0 +170779417824,214,0 +170779417872,214,0 +170779417922,214,0 +170779417969,214,0 +170779418017,214,0 +170779418065,214,0 +170779418113,214,0 +170779418161,214,0 +170779418211,214,0 +170779418260,215,0 +170779418308,215,0 +170779418356,215,0 +170779418404,215,0 +170779418453,214,0 +170779418503,214,0 +170779418551,213,0 +170779418599,213,0 +170779418647,213,0 +170779418695,213,0 +170779418743,213,0 +170779418790,214,0 +170779418838,213,0 +170779418886,214,0 +170779418934,214,0 +170779418982,214,0 +170779419029,214,0 +170779419077,214,0 +170779419125,214,0 +170779419175,214,0 +170779419224,214,0 +170779419272,214,0 +170779419320,214,0 +170779419367,214,0 +170779419415,213,0 +170779419463,213,0 +170779419511,213,0 +170779419559,213,0 +170779419607,213,0 +170779419655,214,0 +170779419703,214,0 +170779419751,214,0 +170779419799,214,0 +170779419847,214,0 +170779419896,214,0 +170779419944,214,0 +170779419994,214,0 +170779420042,214,0 +170779420089,214,0 +170779420139,214,0 +170779420188,214,0 +170779420236,214,0 +170779420284,214,0 +170779420334,214,0 +170779420383,213,0 +170779420431,213,0 +170779420481,213,0 +170779420529,213,0 +170779420578,213,0 +170779420626,214,0 +170779420674,214,0 +170779420722,214,0 +170779420770,214,0 +170779420818,214,0 +170779420866,214,0 +170779420913,214,0 +170779420961,214,0 +170779421009,214,0 +170779421057,214,0 +170779421106,214,0 +170779421154,214,0 +170779421202,215,0 +170779421250,214,0 +170779421299,213,0 +170779421347,213,0 +170779421397,213,0 +170779421445,213,0 +170779421494,213,0 +170779421542,214,0 +170779421591,214,0 +170779421639,214,0 +170779421687,214,0 +170779421735,214,0 +170779421783,214,0 +170779421831,214,0 +170779421880,214,0 +170779421928,214,0 +170779421976,214,0 +170779422024,214,0 +170779422074,214,0 +170779422123,214,0 +170779422171,214,0 +170779422219,213,0 +170779422269,213,0 +170779422318,213,0 +170779422366,214,0 +170779422414,213,0 +170779422464,214,0 +170779422511,214,0 +170779422559,214,0 +170779422607,214,0 +170779422655,214,0 +170779422703,214,0 +170779422751,214,0 +170779422798,214,0 +170779422848,214,0 +170779422896,215,0 +170779422944,214,0 +170779422992,214,0 +170779423039,215,0 +170779423089,214,0 +170779423138,213,0 +170779423186,214,0 +170779423234,214,0 +170779423282,214,0 +170779423330,214,0 +170779423378,214,0 +170779423425,214,0 +170779423473,214,0 +170779423521,214,0 +170779423569,214,0 +170779423617,215,0 +170779423665,214,0 +170779423713,215,0 +170779423761,215,0 +170779423809,215,0 +170779423857,215,0 +170779423904,215,0 +170779423952,215,0 +170779424000,214,0 +170779424048,214,0 +170779424096,213,0 +170779424144,213,0 +170779424193,214,0 +170779424241,214,0 +170779424289,214,0 +170779424337,214,0 +170779424385,214,0 +170779424433,214,0 +170779424481,214,0 +170779424529,214,0 +170779424578,214,0 +170779424626,214,0 +170779424674,215,0 +170779424723,214,0 +170779424771,215,0 +170779424819,215,0 +170779424867,215,0 +170779424915,215,0 +170779424963,214,0 +170779425011,213,0 +170779425060,213,0 +170779425108,214,0 +170779425156,214,0 +170779425204,214,0 +170779425252,214,0 +170779425300,214,0 +170779425348,214,0 +170779425395,214,0 +170779425443,214,0 +170779425491,214,0 +170779425539,214,0 +170779425587,214,0 +170779425637,214,0 +170779425685,215,0 +170779425734,214,0 +170779425782,215,0 +170779425831,214,0 +170779425881,213,0 +170779425930,213,0 +170779425980,213,0 +170779426030,213,0 +170779426079,213,0 +170779426129,214,0 +170779426176,214,0 +170779426224,214,0 +170779426272,214,0 +170779426322,214,0 +170779426370,214,0 +170779426419,214,0 +170779426467,214,0 +170779426516,214,0 +170779426564,214,0 +170779426612,214,0 +170779426662,214,0 +170779426711,214,0 +170779426761,214,0 +170779426810,213,0 +170779426860,213,0 +170779426908,213,0 +170779426955,213,0 +170779427003,213,0 +170779427051,213,0 +170779427101,213,0 +170779427150,214,0 +170779427198,214,0 +170779427248,214,0 +170779427296,214,0 +170779427345,214,0 +170779427394,214,0 +170779427442,214,0 +170779427492,214,0 +170779427541,214,0 +170779427589,214,0 +170779427639,214,0 +170779427688,214,0 +170779427736,213,0 +170779427786,213,0 +170779427835,213,0 +170779427883,213,0 +170779427931,213,0 +170779427978,214,0 +170779428026,213,0 +170779428074,214,0 +170779428122,214,0 +170779428170,214,0 +170779428218,214,0 +170779428265,214,0 +170779428315,214,0 +170779428363,214,0 +170779428410,214,0 +170779428458,214,0 +170779428506,214,0 +170779428554,215,0 +170779428602,214,0 +170779428650,214,0 +170779428697,213,0 +170779428745,213,0 +170779428795,214,0 +170779428843,214,0 +170779428890,213,0 +170779428938,213,0 +170779428986,213,0 +170779429034,214,0 +170779429082,214,0 +170779429130,214,0 +170779429178,214,0 +170779429225,214,0 +170779429273,214,0 +170779429321,214,0 +170779429369,214,0 +170779429417,214,0 +170779429467,214,0 +170779429515,214,0 +170779429564,214,0 +170779429612,213,0 +170779429660,213,0 +170779429708,213,0 +170779429757,213,0 +170779429807,214,0 +170779429855,214,0 +170779429904,214,0 +170779429954,214,0 +170779430002,214,0 +170779430050,214,0 +170779430099,214,0 +170779430147,215,0 +170779430197,215,0 +170779430246,214,0 +170779430296,215,0 +170779430344,215,0 +170779430392,215,0 +170779430440,214,0 +170779430487,214,0 +170779430535,214,0 +170779430583,214,0 +170779430631,214,0 +170779430679,214,0 +170779430727,214,0 +170779430774,214,0 +170779430822,214,0 +170779430872,214,0 +170779430920,214,0 +170779430969,214,0 +170779431017,214,0 +170779431065,214,0 +170779431113,215,0 +170779431161,215,0 +170779431209,215,0 +170779431257,214,0 +170779431306,214,0 +170779431354,214,0 +170779431402,214,0 +170779431450,213,0 +170779431497,213,0 +170779431545,213,0 +170779431595,214,0 +170779431644,214,0 +170779431692,214,0 +170779431740,214,0 +170779431789,214,0 +170779431837,214,0 +170779431887,214,0 +170779431934,214,0 +170779431982,214,0 +170779432030,215,0 +170779432078,214,0 +170779432126,214,0 +170779432173,214,0 +170779432221,215,0 +170779432271,214,0 +170779432319,214,0 +170779432367,213,0 +170779432415,213,0 +170779432463,214,0 +170779432510,213,0 +170779432558,214,0 +170779432606,214,0 +170779432654,214,0 +170779432702,214,0 +170779432749,214,0 +170779432797,214,0 +170779432845,214,0 +170779432893,214,0 +170779432941,215,0 +170779432990,214,0 +170779433038,215,0 +170779433086,214,0 +170779433134,215,0 +170779433181,214,0 +170779433229,214,0 +170779433277,214,0 +170779433325,213,0 +170779433373,213,0 +170779433421,214,0 +170779433470,214,0 +170779433518,214,0 +170779433566,214,0 +170779433614,214,0 +170779433662,214,0 +170779433710,214,0 +170779433759,214,0 +170779433807,214,0 +170779433857,214,0 +170779433905,214,0 +170779433954,215,0 +170779434002,215,0 +170779434050,215,0 +170779434098,214,0 +170779434146,214,0 +170779434193,214,0 +170779434241,213,0 +170779434289,213,0 +170779434337,214,0 +170779434385,214,0 +170779434433,214,0 +170779434481,214,0 +170779434529,214,0 +170779434578,214,0 +170779434628,214,0 +170779434675,214,0 +170779434723,214,0 +170779434773,214,0 +170779434821,214,0 +170779434869,214,0 +170779434917,214,0 +170779434964,215,0 +170779435014,215,0 +170779435062,214,0 +170779435111,214,0 +170779435159,214,0 +170779435208,213,0 +170779435256,214,0 +170779435304,214,0 +170779435352,214,0 +170779435400,214,0 +170779435449,214,0 +170779435497,214,0 +170779435545,214,0 +170779435595,214,0 +170779435643,214,0 +170779435692,214,0 +170779435742,214,0 +170779435789,214,0 +170779435837,214,0 +170779435885,214,0 +170779435933,214,0 +170779435981,214,0 +170779436031,213,0 +170779436080,213,0 +170779436128,213,0 +170779436176,213,0 +170779436226,213,0 +170779436275,213,0 +170779436323,213,0 +170779436371,213,0 +170779436419,213,0 +170779436467,213,0 +170779436515,214,0 +170779436564,214,0 +170779436612,214,0 +170779436662,214,0 +170779436710,214,0 +170779436759,214,0 +170779436807,214,0 +170779436857,214,0 +170779436905,214,0 +170779436953,214,0 +170779437001,213,0 +170779437049,213,0 +170779437098,214,0 +170779437146,214,0 +170779437194,214,0 +170779437243,214,0 +170779437293,214,0 +170779437341,214,0 +170779437389,214,0 +170779437437,214,0 +170779437485,214,0 +170779437534,214,0 +170779437582,214,0 +170779437631,215,0 +170779437679,214,0 +170779437727,215,0 +170779437775,215,0 +170779437825,215,0 +170779437873,214,0 +170779437920,214,0 +170779437968,214,0 +170779438018,214,0 +170779438067,214,0 +170779438115,214,0 +170779438163,214,0 +170779438211,214,0 +170779438260,214,0 +170779438308,214,0 +170779438356,214,0 +170779438404,214,0 +170779438452,214,0 +170779438502,214,0 +170779438550,215,0 +170779438598,214,0 +170779438646,214,0 +170779438694,215,0 +170779438743,215,0 +170779438793,214,0 +170779438841,214,0 +170779438890,214,0 +170779438938,214,0 +170779438986,214,0 +170779439034,214,0 +170779439082,214,0 +170779439130,214,0 +170779439179,214,0 +170779439227,214,0 +170779439277,214,0 +170779439325,215,0 +170779439374,215,0 +170779439424,215,0 +170779439471,215,0 +170779439521,215,0 +170779439569,215,0 +170779439617,215,0 +170779439665,215,0 +170779439713,214,0 +170779439760,214,0 +170779439810,214,0 +170779439858,214,0 +170779439906,214,0 +170779439955,214,0 +170779440003,214,0 +170779440053,214,0 +170779440100,214,0 +170779440148,214,0 +170779440198,215,0 +170779440247,214,0 +170779440295,215,0 +170779440345,215,0 +170779440394,215,0 +170779440442,215,0 +170779440490,215,0 +170779440538,215,0 +170779440586,215,0 +170779440635,214,0 +170779440685,214,0 +170779440733,214,0 +170779440780,214,0 +170779440828,214,0 +170779440876,214,0 +170779440924,214,0 +170779440974,214,0 +170779441021,214,0 +170779441069,214,0 +170779441117,215,0 +170779441167,215,0 +170779441216,215,0 +170779441264,215,0 +170779441312,215,0 +170779441360,215,0 +170779441409,215,0 +170779441457,214,0 +170779441505,215,0 +170779441553,214,0 +170779441603,214,0 +170779441652,214,0 +170779441700,214,0 +170779441748,214,0 +170779441796,214,0 +170779441845,214,0 +170779441895,214,0 +170779441943,214,0 +170779441992,214,0 +170779442040,214,0 +170779442088,214,0 +170779442136,215,0 +170779442184,215,0 +170779442232,215,0 +170779442281,215,0 +170779442329,215,0 +170779442377,215,0 +170779442425,214,0 +170779442473,214,0 +170779442521,213,0 +170779442570,214,0 +170779442619,214,0 +170779442667,214,0 +170779442717,214,0 +170779442765,214,0 +170779442813,214,0 +170779442861,214,0 +170779442910,214,0 +170779442960,215,0 +170779443007,214,0 +170779443057,214,0 +170779443105,215,0 +170779443153,215,0 +170779443201,215,0 +170779443249,215,0 +170779443297,215,0 +170779443345,215,0 +170779443394,214,0 +170779443442,213,0 +170779443492,213,0 +170779443540,214,0 +170779443588,214,0 +170779443635,214,0 +170779443683,214,0 +170779443731,214,0 +170779443781,214,0 +170779443830,214,0 +170779443880,214,0 +170779443930,214,0 +170779443979,214,0 +170779444028,214,0 +170779444078,214,0 +170779444126,215,0 +170779444174,215,0 +170779444223,214,0 +170779444271,214,0 +170779444319,214,0 +170779444367,213,0 +170779444415,213,0 +170779444463,213,0 +170779444510,213,0 +170779444558,213,0 +170779444606,213,0 +170779444654,214,0 +170779444702,213,0 +170779444750,214,0 +170779444797,213,0 +170779444847,214,0 +170779444895,214,0 +170779444943,214,0 +170779444990,214,0 +170779445038,214,0 +170779445086,214,0 +170779445134,214,0 +170779445183,214,0 +170779445233,214,0 +170779445282,213,0 +170779445332,213,0 +170779445380,214,0 +170779445428,214,0 +170779445475,214,0 +170779445523,214,0 +170779445573,214,0 +170779445621,214,0 +170779445670,214,0 +170779445718,214,0 +170779445766,214,0 +170779445814,214,0 +170779445863,214,0 +170779445911,215,0 +170779445961,214,0 +170779446010,214,0 +170779446058,215,0 +170779446106,215,0 +170779446155,214,0 +170779446203,213,0 +170779446251,213,0 +170779446299,214,0 +170779446349,214,0 +170779446397,214,0 +170779446446,214,0 +170779446494,214,0 +170779446544,214,0 +170779446592,214,0 +170779446639,214,0 +170779446687,214,0 +170779446737,214,0 +170779446785,214,0 +170779446833,214,0 +170779446881,214,0 +170779446930,215,0 +170779446978,215,0 +170779447026,215,0 +170779447074,214,0 +170779447122,213,0 +170779447171,213,0 +170779447219,214,0 +170779447267,214,0 +170779447315,213,0 +170779447364,214,0 +170779447414,214,0 +170779447462,214,0 +170779447511,214,0 +170779447559,214,0 +170779447607,214,0 +170779447655,214,0 +170779447703,214,0 +170779447751,214,0 +170779447801,214,0 +170779447849,214,0 +170779447898,215,0 +170779447948,214,0 +170779447996,214,0 +170779448044,213,0 +170779448093,213,0 +170779448143,213,0 +170779448190,214,0 +170779448238,214,0 +170779448288,214,0 +170779448336,214,0 +170779448385,214,0 +170779448433,214,0 +170779448481,214,0 +170779448531,214,0 +170779448579,214,0 +170779448627,214,0 +170779448674,215,0 +170779448722,215,0 +170779448770,214,0 +170779448820,214,0 +170779448868,214,0 +170779448917,214,0 +170779448965,213,0 +170779449013,213,0 +170779449061,214,0 +170779449109,213,0 +170779449156,214,0 +170779449206,214,0 +170779449254,214,0 +170779449302,214,0 +170779449351,214,0 +170779449401,214,0 +170779449449,214,0 +170779449497,214,0 +170779449544,215,0 +170779449592,214,0 +170779449640,215,0 +170779449688,215,0 +170779449736,215,0 +170779449784,214,0 +170779449831,214,0 +170779449879,213,0 +170779449929,213,0 +170779449977,213,0 +170779450025,213,0 +170779450073,213,0 +170779450122,213,0 +170779450170,214,0 +170779450218,214,0 +170779450268,214,0 +170779450316,214,0 +170779450365,214,0 +170779450413,214,0 +170779450463,214,0 +170779450512,214,0 +170779450560,214,0 +170779450608,214,0 +170779450658,214,0 +170779450707,214,0 +170779450755,214,0 +170779450803,214,0 +170779450851,214,0 +170779450900,214,0 +170779450950,214,0 +170779450998,214,0 +170779451047,214,0 +170779451097,214,0 +170779451145,214,0 +170779451193,214,0 +170779451242,214,0 +170779451292,214,0 +170779451340,214,0 +170779451388,214,0 +170779451436,214,0 +170779451484,215,0 +170779451533,214,0 +170779451581,214,0 +170779451629,214,0 +170779451677,214,0 +170779451727,214,0 +170779451774,214,0 +170779451822,214,0 +170779451870,214,0 +170779451920,214,0 +170779451969,214,0 +170779452017,214,0 +170779452065,214,0 +170779452115,214,0 +170779452163,215,0 +170779452211,214,0 +170779452260,215,0 +170779452310,215,0 +170779452359,215,0 +170779452409,215,0 +170779452457,215,0 +170779452506,215,0 +170779452556,214,0 +170779452604,214,0 +170779452653,214,0 +170779452702,214,0 +170779452752,214,0 +170779452802,214,0 +170779452849,214,0 +170779452897,214,0 +170779452945,214,0 +170779452993,214,0 +170779453041,214,0 +170779453088,214,0 +170779453136,215,0 +170779453184,215,0 +170779453232,215,0 +170779453280,215,0 +170779453328,215,0 +170779453376,215,0 +170779453424,215,0 +170779453471,215,0 +170779453519,214,0 +170779453567,214,0 +170779453615,213,0 +170779453664,214,0 +170779453712,213,0 +170779453760,214,0 +170779453810,214,0 +170779453857,214,0 +170779453905,214,0 +170779453953,214,0 +170779454001,214,0 +170779454049,214,0 +170779454097,214,0 +170779454145,214,0 +170779454193,215,0 +170779454240,215,0 +170779454288,215,0 +170779454338,215,0 +170779454387,215,0 +170779454437,214,0 +170779454486,214,0 +170779454534,214,0 +170779454582,214,0 +170779454630,214,0 +170779454680,214,0 +170779454728,214,0 +170779454777,214,0 +170779454825,214,0 +170779454873,214,0 +170779454922,214,0 +170779454970,214,0 +170779455018,215,0 +170779455066,214,0 +170779455114,215,0 +170779455162,215,0 +170779455210,215,0 +170779455257,214,0 +170779455305,215,0 +170779455353,214,0 +170779455402,214,0 +170779455450,214,0 +170779455498,214,0 +170779455546,214,0 +170779455595,214,0 +170779455643,214,0 +170779455691,214,0 +170779455739,214,0 +170779455787,214,0 +170779455836,214,0 +170779455884,214,0 +170779455932,214,0 +170779455980,214,0 +170779456028,214,0 +170779456076,215,0 +170779456125,215,0 +170779456173,215,0 +170779456221,215,0 +170779456269,214,0 +170779456317,214,0 +170779456365,214,0 +170779456413,214,0 +170779456461,214,0 +170779456510,214,0 +170779456558,214,0 +170779456608,214,0 +170779456657,214,0 +170779456705,214,0 +170779456753,214,0 +170779456801,214,0 +170779456851,214,0 +170779456901,214,0 +170779456949,214,0 +170779456996,214,0 +170779457044,215,0 +170779457094,215,0 +170779457142,214,0 +170779457191,214,0 +170779457239,213,0 +170779457287,214,0 +170779457335,214,0 +170779457383,214,0 +170779457431,214,0 +170779457481,214,0 +170779457529,214,0 +170779457577,214,0 +170779457624,214,0 +170779457672,214,0 +170779457720,214,0 +170779457770,214,0 +170779457818,214,0 +170779457867,215,0 +170779457915,215,0 +170779457963,214,0 +170779458011,215,0 +170779458059,215,0 +170779458107,214,0 +170779458156,214,0 +170779458204,213,0 +170779458252,214,0 +170779458302,214,0 +170779458352,214,0 +170779458399,214,0 +170779458447,214,0 +170779458495,214,0 +170779458543,214,0 +170779458591,214,0 +170779458639,214,0 +170779458687,214,0 +170779458736,214,0 +170779458784,215,0 +170779458832,214,0 +170779458880,214,0 +170779458928,215,0 +170779458978,215,0 +170779459026,214,0 +170779459074,214,0 +170779459122,214,0 +170779459170,214,0 +170779459219,214,0 +170779459267,214,0 +170779459317,214,0 +170779459366,214,0 +170779459414,214,0 +170779459464,214,0 +170779459513,214,0 +170779459563,214,0 +170779459611,214,0 +170779459659,214,0 +170779459707,214,0 +170779459755,214,0 +170779459803,214,0 +170779459850,215,0 +170779459898,215,0 +170779459946,215,0 +170779459996,213,0 +170779460044,214,0 +170779460093,213,0 +170779460141,213,0 +170779460189,214,0 +170779460239,213,0 +170779460286,214,0 +170779460334,214,0 +170779460382,214,0 +170779460430,214,0 +170779460479,214,0 +170779460527,214,0 +170779460575,214,0 +170779460623,214,0 +170779460673,214,0 +170779460720,214,0 +170779460770,214,0 +170779460820,215,0 +170779460867,215,0 +170779460915,214,0 +170779460963,214,0 +170779461011,213,0 +170779461059,214,0 +170779461109,214,0 +170779461157,214,0 +170779461205,214,0 +170779461254,214,0 +170779461302,214,0 +170779461350,214,0 +170779461398,214,0 +170779461446,214,0 +170779461494,214,0 +170779461542,214,0 +170779461590,215,0 +170779461638,215,0 +170779461685,215,0 +170779461733,215,0 +170779461781,214,0 +170779461829,213,0 +170779461877,213,0 +170779461925,213,0 +170779461972,213,0 +170779462022,214,0 +170779462070,213,0 +170779462117,214,0 +170779462165,213,0 +170779462213,214,0 +170779462261,214,0 +170779462309,214,0 +170779462357,214,0 +170779462407,214,0 +170779462456,214,0 +170779462506,214,0 +170779462555,214,0 +170779462603,214,0 +170779462651,214,0 +170779462699,215,0 +170779462749,213,0 +170779462798,213,0 +170779462846,213,0 +170779462894,213,0 +170779462942,213,0 +170779462990,213,0 +170779463038,213,0 +170779463085,213,0 +170779463133,213,0 +170779463181,214,0 +170779463231,214,0 +170779463280,214,0 +170779463328,214,0 +170779463376,214,0 +170779463424,214,0 +170779463472,214,0 +170779463521,214,0 +170779463569,214,0 +170779463617,215,0 +170779463665,214,0 +170779463713,213,0 +170779463760,213,0 +170779463808,214,0 +170779463856,213,0 +170779463904,214,0 +170779463952,214,0 +170779464000,214,0 +170779464048,214,0 +170779464095,214,0 +170779464143,214,0 +170779464191,214,0 +170779464239,214,0 +170779464287,214,0 +170779464335,214,0 +170779464384,215,0 +170779464432,214,0 +170779464480,214,0 +170779464528,215,0 +170779464576,214,0 +170779464624,213,0 +170779464672,213,0 +170779464720,213,0 +170779464768,214,0 +170779464818,214,0 +170779464865,214,0 +170779464915,214,0 +170779464964,214,0 +170779465012,214,0 +170779465060,214,0 +170779465108,214,0 +170779465158,214,0 +170779465207,214,0 +170779465255,214,0 +170779465303,214,0 +170779465351,214,0 +170779465399,214,0 +170779465447,214,0 +170779465495,214,0 +170779465543,213,0 +170779465591,214,0 +170779465640,214,0 +170779465688,214,0 +170779465738,214,0 +170779465787,214,0 +170779465837,214,0 +170779465885,214,0 +170779465932,214,0 +170779465980,214,0 +170779466030,214,0 +170779466079,214,0 +170779466127,215,0 +170779466175,214,0 +170779466225,215,0 +170779466273,215,0 +170779466322,214,0 +170779466370,214,0 +170779466420,214,0 +170779466468,213,0 +170779466517,214,0 +170779466567,214,0 +170779466615,214,0 +170779466663,214,0 +170779466710,214,0 +170779466758,214,0 +170779466806,214,0 +170779466854,214,0 +170779466902,214,0 +170779466950,214,0 +170779467000,214,0 +170779467048,214,0 +170779467097,215,0 +170779467145,215,0 +170779467193,214,0 +170779467241,215,0 +170779467290,214,0 +170779467338,214,0 +170779467388,214,0 +170779467436,213,0 +170779467484,214,0 +170779467532,214,0 +170779467580,214,0 +170779467629,214,0 +170779467679,214,0 +170779467727,214,0 +170779467775,214,0 +170779467822,214,0 +170779467872,214,0 +170779467920,214,0 +170779467969,215,0 +170779468017,215,0 +170779468065,215,0 +170779468113,215,0 +170779468161,215,0 +170779468209,214,0 +170779468257,214,0 +170779468305,214,0 +170779468353,213,0 +170779468401,213,0 +170779468449,214,0 +170779468497,214,0 +170779468545,214,0 +170779468594,214,0 +170779468644,214,0 +170779468692,214,0 +170779468741,214,0 +170779468789,214,0 +170779468839,214,0 +170779468887,215,0 +170779468935,215,0 +170779468983,215,0 +170779469031,215,0 +170779469080,215,0 +170779469128,214,0 +170779469178,214,0 +170779469225,214,0 +170779469273,214,0 +170779469321,214,0 +170779469369,214,0 +170779469419,214,0 +170779469467,214,0 +170779469514,214,0 +170779469562,214,0 +170779469612,214,0 +170779469660,215,0 +170779469707,215,0 +170779469757,215,0 +170779469806,215,0 +170779469854,215,0 +170779469902,215,0 +170779469950,215,0 +170779469998,215,0 +170779470046,214,0 +170779470096,214,0 +170779470144,214,0 +170779470193,214,0 +170779470241,214,0 +170779470289,214,0 +170779470337,214,0 +170779470385,214,0 +170779470435,214,0 +170779470484,215,0 +170779470533,214,0 +170779470581,215,0 +170779470629,215,0 +170779470679,215,0 +170779470728,215,0 +170779470776,215,0 +170779470824,215,0 +170779470874,214,0 +170779470923,215,0 +170779470971,214,0 +170779471020,214,0 +170779471068,214,0 +170779471116,214,0 +170779471164,214,0 +170779471212,214,0 +170779471260,214,0 +170779471308,214,0 +170779471357,214,0 +170779471405,214,0 +170779471455,214,0 +170779471503,214,0 +170779471551,214,0 +170779471599,214,0 +170779471648,214,0 +170779471696,214,0 +170779471746,214,0 +170779471793,215,0 +170779471841,214,0 +170779471889,214,0 +170779471937,213,0 +170779471985,214,0 +170779472035,213,0 +170779472083,214,0 +170779472131,214,0 +170779472178,214,0 +170779472226,214,0 +170779472274,214,0 +170779472322,214,0 +170779472370,214,0 +170779472418,214,0 +170779472466,215,0 +170779472514,214,0 +170779472562,215,0 +170779472610,215,0 +170779472658,215,0 +170779472707,215,0 +170779472755,214,0 +170779472803,214,0 +170779472851,214,0 +170779472899,214,0 +170779472947,214,0 +170779472995,214,0 +170779473044,214,0 +170779473092,214,0 +170779473140,214,0 +170779473188,214,0 +170779473235,214,0 +170779473283,215,0 +170779473331,215,0 +170779473379,214,0 +170779473428,214,0 +170779473476,214,0 +170779473525,215,0 +170779473573,215,0 +170779473622,215,0 +170779473670,214,0 +170779473718,213,0 +170779473766,213,0 +170779473814,214,0 +170779473862,213,0 +170779473911,214,0 +170779473959,214,0 +170779474008,214,0 +170779474056,214,0 +170779474104,214,0 +170779474154,214,0 +170779474202,214,0 +170779474251,214,0 +170779474299,214,0 +170779474349,214,0 +170779474397,214,0 +170779474445,214,0 +170779474494,215,0 +170779474544,214,0 +170779474593,214,0 +170779474641,213,0 +170779474689,213,0 +170779474737,213,0 +170779474785,213,0 +170779474832,214,0 +170779474882,214,0 +170779474930,214,0 +170779474979,214,0 +170779475027,214,0 +170779475075,214,0 +170779475123,214,0 +170779475171,214,0 +170779475219,214,0 +170779475269,214,0 +170779475318,214,0 +170779475366,215,0 +170779475415,215,0 +170779475463,215,0 +170779475511,214,0 +170779475559,213,0 +170779475609,213,0 +170779475658,213,0 +170779475706,213,0 +170779475755,214,0 +170779475803,213,0 +170779475851,214,0 +170779475899,214,0 +170779475947,214,0 +170779475995,214,0 +170779476043,214,0 +170779476092,214,0 +170779476142,214,0 +170779476190,214,0 +170779476238,214,0 +170779476287,214,0 +170779476335,214,0 +170779476383,214,0 +170779476431,214,0 +170779476479,213,0 +170779476527,213,0 +170779476577,213,0 +170779476624,214,0 +170779476672,214,0 +170779476720,214,0 +170779476770,214,0 +170779476818,214,0 +170779476866,214,0 +170779476913,214,0 +170779476961,214,0 +170779477009,214,0 +170779477059,214,0 +170779477107,214,0 +170779477156,214,0 +170779477204,214,0 +170779477252,214,0 +170779477300,214,0 +170779477348,213,0 +170779477396,213,0 +170779477444,213,0 +170779477493,213,0 +170779477541,214,0 +170779477589,213,0 +170779477637,214,0 +170779477685,214,0 +170779477732,214,0 +170779477780,214,0 +170779477828,214,0 +170779477876,214,0 +170779477924,214,0 +170779477972,214,0 +170779478022,214,0 +170779478071,214,0 +170779478119,214,0 +170779478168,214,0 +170779478218,214,0 +170779478266,214,0 +170779478314,213,0 +170779478362,213,0 +170779478410,214,0 +170779478458,214,0 +170779478507,214,0 +170779478555,214,0 +170779478603,214,0 +170779478652,214,0 +170779478702,214,0 +170779478751,214,0 +170779478799,214,0 +170779478847,214,0 +170779478895,215,0 +170779478945,214,0 +170779478992,214,0 +170779479040,214,0 +170779479088,214,0 +170779479136,214,0 +170779479184,213,0 +170779479232,214,0 +170779479281,214,0 +170779479329,214,0 +170779479379,213,0 +170779479427,214,0 +170779479475,214,0 +170779479522,214,0 +170779479570,214,0 +170779479620,214,0 +170779479668,214,0 +170779479716,214,0 +170779479765,214,0 +170779479813,214,0 +170779479861,214,0 +170779479909,215,0 +170779479958,214,0 +170779480006,215,0 +170779480054,214,0 +170779480102,213,0 +170779480150,213,0 +170779480198,214,0 +170779480245,214,0 +170779480295,214,0 +170779480344,214,0 +170779480392,214,0 +170779480440,214,0 +170779480488,214,0 +170779480536,214,0 +170779480584,214,0 +170779480632,214,0 +170779480681,215,0 +170779480729,214,0 +170779480777,215,0 +170779480825,215,0 +170779480873,214,0 +170779480922,214,0 +170779480972,214,0 +170779481020,213,0 +170779481067,214,0 +170779481115,214,0 +170779481163,214,0 +170779481213,214,0 +170779481261,214,0 +170779481310,214,0 +170779481358,214,0 +170779481406,214,0 +170779481454,214,0 +170779481504,214,0 +170779481551,214,0 +170779481601,214,0 +170779481649,214,0 +170779481698,214,0 +170779481746,215,0 +170779481796,215,0 +170779481844,214,0 +170779481893,213,0 +170779481941,214,0 +170779481990,213,0 +170779482038,214,0 +170779482086,214,0 +170779482134,214,0 +170779482182,214,0 +170779482229,214,0 +170779482279,214,0 +170779482327,214,0 +170779482375,214,0 +170779482422,214,0 +170779482470,214,0 +170779482518,214,0 +170779482566,214,0 +170779482616,214,0 +170779482665,214,0 +170779482713,214,0 +170779482762,214,0 +170779482810,213,0 +170779482858,213,0 +170779482906,214,0 +170779482956,214,0 +170779483005,214,0 +170779483053,214,0 +170779483101,214,0 +170779483150,214,0 +170779483198,214,0 +170779483246,214,0 +170779483294,214,0 +170779483342,214,0 +170779483390,214,0 +170779483440,214,0 +170779483489,215,0 +170779483539,214,0 +170779483587,215,0 +170779483635,215,0 +170779483683,214,0 +170779483731,214,0 +170779483778,214,0 +170779483826,214,0 +170779483876,214,0 +170779483924,214,0 +170779483972,214,0 +170779484020,214,0 +170779484069,214,0 +170779484117,214,0 +170779484165,214,0 +170779484213,214,0 +170779484261,215,0 +170779484308,215,0 +170779484356,215,0 +170779484404,215,0 +170779484452,215,0 +170779484502,215,0 +170779484550,215,0 +170779484599,214,0 +170779484647,214,0 +170779484695,213,0 +170779484743,214,0 +170779484792,214,0 +170779484840,214,0 +170779484888,214,0 +170779484936,214,0 +170779484984,214,0 +170779485034,214,0 +170779485083,214,0 +170779485131,214,0 +170779485179,215,0 +170779485227,214,0 +170779485275,215,0 +170779485324,214,0 +170779485372,214,0 +170779485422,214,0 +170779485471,214,0 +170779485519,213,0 +170779485568,214,0 +170779485616,214,0 +170779485664,214,0 +170779485712,214,0 +170779485760,214,0 +170779485808,214,0 +170779485855,214,0 +170779485903,214,0 +170779485951,214,0 +170779485999,214,0 +170779486048,214,0 +170779486096,214,0 +170779486144,214,0 +170779486192,215,0 +170779486240,214,0 +170779486288,214,0 +170779486337,214,0 +170779486387,214,0 +170779486434,213,0 +170779486482,213,0 +170779486530,213,0 +170779486578,213,0 +170779486628,213,0 +170779486675,213,0 +170779486723,213,0 +170779486771,214,0 +170779486819,213,0 +170779486867,214,0 +170779486915,214,0 +170779486965,214,0 +170779487012,214,0 +170779487060,214,0 +170779487108,214,0 +170779487156,214,0 +170779487204,214,0 +170779487252,214,0 +170779487301,214,0 +170779487349,214,0 +170779487397,213,0 +170779487445,213,0 +170779487493,214,0 +170779487540,214,0 +170779487590,214,0 +170779487638,213,0 +170779487687,214,0 +170779487737,214,0 +170779487785,214,0 +170779487834,214,0 +170779487882,214,0 +170779487930,214,0 +170779487980,214,0 +170779488027,214,0 +170779488075,214,0 +170779488123,214,0 +170779488171,214,0 +170779488219,214,0 +170779488267,213,0 +170779488315,213,0 +170779488363,213,0 +170779488412,214,0 +170779488461,214,0 +170779488509,214,0 +170779488557,214,0 +170779488605,214,0 +170779488653,214,0 +170779488701,214,0 +170779488750,214,0 +170779488800,214,0 +170779488848,214,0 +170779488896,214,0 +170779488944,214,0 +170779488992,214,0 +170779489040,214,0 +170779489089,214,0 +170779489139,214,0 +170779489187,213,0 +170779489234,214,0 +170779489282,214,0 +170779489330,213,0 +170779489380,214,0 +170779489429,214,0 +170779489477,214,0 +170779489526,214,0 +170779489575,214,0 +170779489625,214,0 +170779489674,214,0 +170779489722,214,0 +170779489770,214,0 +170779489818,214,0 +170779489866,214,0 +170779489914,215,0 +170779489964,214,0 +170779490013,214,0 +170779490063,213,0 +170779490111,214,0 +170779490159,214,0 +170779490207,214,0 +170779490255,214,0 +170779490303,214,0 +170779490351,214,0 +170779490399,214,0 +170779490448,214,0 +170779490498,214,0 +170779490547,214,0 +170779490595,215,0 +170779490645,215,0 +170779490694,215,0 +170779490742,215,0 +170779490790,215,0 +170779490839,215,0 +170779490887,214,0 +170779490935,214,0 +170779490985,214,0 +170779491033,214,0 +170779491082,214,0 +170779491130,214,0 +170779491178,214,0 +170779491226,214,0 +170779491273,214,0 +170779491323,214,0 +170779491371,215,0 +170779491420,215,0 +170779491468,215,0 +170779491516,215,0 +170779491566,215,0 +170779491614,215,0 +170779491661,215,0 +170779491709,215,0 +170779491759,214,0 +170779491807,214,0 +170779491855,214,0 +170779491904,214,0 +170779491952,214,0 +170779492000,214,0 +170779492049,214,0 +170779492099,214,0 +170779492147,214,0 +170779492195,214,0 +170779492244,214,0 +170779492292,214,0 +170779492342,214,0 +170779492391,214,0 +170779492439,215,0 +170779492489,215,0 +170779492536,214,0 +170779492584,215,0 +170779492632,214,0 +170779492680,215,0 +170779492730,214,0 +170779492778,214,0 +170779492827,214,0 +170779492875,213,0 +170779492923,214,0 +170779492971,214,0 +170779493021,214,0 +170779493070,214,0 +170779493118,214,0 +170779493166,214,0 +170779493216,214,0 +170779493264,214,0 +170779493312,214,0 +170779493360,214,0 +170779493409,215,0 +170779493459,215,0 +170779493507,214,0 +170779493554,214,0 +170779493604,214,0 +170779493652,214,0 +170779493700,213,0 +170779493749,213,0 +170779493797,213,0 +170779493847,213,0 +170779493895,213,0 +170779493944,214,0 +170779493992,214,0 +170779494042,214,0 +170779494090,214,0 +170779494138,214,0 +170779494186,214,0 +170779494233,214,0 +170779494281,214,0 +170779494329,214,0 +170779494377,214,0 +170779494427,214,0 +170779494475,214,0 +170779494523,214,0 +170779494570,214,0 +170779494620,213,0 +170779494669,214,0 +170779494717,213,0 +170779494767,214,0 +170779494817,214,0 +170779494865,214,0 +170779494913,214,0 +170779494962,214,0 +170779495011,214,0 +170779495059,214,0 +170779495109,214,0 +170779495158,214,0 +170779495206,214,0 +170779495256,214,0 +170779495304,214,0 +170779495352,214,0 +170779495401,214,0 +170779495451,214,0 +170779495499,213,0 +170779495547,214,0 +170779495596,214,0 +170779495644,214,0 +170779495694,214,0 +170779495743,214,0 +170779495791,214,0 +170779495839,214,0 +170779495887,214,0 +170779495935,214,0 +170779495983,214,0 +170779496031,214,0 +170779496081,214,0 +170779496128,214,0 +170779496176,215,0 +170779496224,215,0 +170779496272,214,0 +170779496322,214,0 +170779496370,214,0 +170779496419,214,0 +170779496467,214,0 +170779496517,214,0 +170779496565,214,0 +170779496613,214,0 +170779496662,214,0 +170779496712,214,0 +170779496760,214,0 +170779496808,214,0 +170779496857,214,0 +170779496905,214,0 +170779496955,214,0 +170779497003,214,0 +170779497051,214,0 +170779497100,214,0 +170779497150,215,0 +170779497198,215,0 +170779497246,214,0 +170779497294,213,0 +170779497343,214,0 +170779497393,214,0 +170779497442,214,0 +170779497490,214,0 +170779497538,214,0 +170779497586,214,0 +170779497634,214,0 +170779497682,214,0 +170779497730,214,0 +170779497778,215,0 +170779497827,215,0 +170779497877,214,0 +170779497926,215,0 +170779497974,215,0 +170779498022,215,0 +170779498070,215,0 +170779498118,214,0 +170779498165,214,0 +170779498213,214,0 +170779498261,214,0 +170779498309,214,0 +170779498358,214,0 +170779498406,214,0 +170779498454,214,0 +170779498502,214,0 +170779498552,214,0 +170779498599,215,0 +170779498649,214,0 +170779498698,214,0 +170779498746,215,0 +170779498794,215,0 +170779498844,215,0 +170779498892,215,0 +170779498940,215,0 +170779498988,215,0 +170779499036,215,0 +170779499085,214,0 +170779499133,214,0 +170779499181,214,0 +170779499229,214,0 +170779499277,214,0 +170779499326,214,0 +170779499374,214,0 +170779499422,214,0 +170779499470,215,0 +170779499520,215,0 +170779499568,215,0 +170779499616,215,0 +170779499663,215,0 +170779499713,215,0 +170779499763,215,0 +170779499812,215,0 +170779499860,215,0 +170779499909,215,0 +170779499959,214,0 +170779500007,213,0 +170779500056,214,0 +170779500104,214,0 +170779500154,214,0 +170779500202,214,0 +170779500250,214,0 +170779500299,214,0 +170779500347,214,0 +170779500396,214,0 +170779500446,215,0 +170779500494,214,0 +170779500543,214,0 +170779500591,215,0 +170779500639,215,0 +170779500687,215,0 +170779500735,214,0 +170779500783,214,0 +170779500831,214,0 +170779500881,213,0 +170779500930,213,0 +170779500978,213,0 +170779501026,213,0 +170779501074,213,0 +170779501122,214,0 +170779501171,214,0 +170779501221,214,0 +170779501270,214,0 +170779501318,214,0 +170779501366,214,0 +170779501416,214,0 +170779501465,214,0 +170779501515,214,0 +170779501563,214,0 +170779501611,214,0 +170779501659,214,0 +170779501708,214,0 +170779501756,214,0 +170779501804,214,0 +170779501854,213,0 +170779501902,214,0 +170779501950,214,0 +170779501998,214,0 +170779502047,214,0 +170779502095,214,0 +170779502143,214,0 +170779502191,214,0 +170779502239,214,0 +170779502288,214,0 +170779502338,214,0 +170779502386,215,0 +170779502434,214,0 +170779502482,214,0 +170779502531,215,0 +170779502581,214,0 +170779502630,214,0 +170779502678,213,0 +170779502728,213,0 +170779502776,213,0 +170779502824,214,0 +170779502873,214,0 +170779502921,214,0 +170779502969,214,0 +170779503017,214,0 +170779503065,214,0 +170779503114,214,0 +170779503162,214,0 +170779503212,214,0 +170779503260,214,0 +170779503308,214,0 +170779503356,215,0 +170779503405,215,0 +170779503453,214,0 +170779503503,214,0 +170779503551,214,0 +170779503599,213,0 +170779503647,213,0 +170779503694,214,0 +170779503742,214,0 +170779503790,214,0 +170779503838,214,0 +170779503886,214,0 +170779503934,214,0 +170779503982,214,0 +170779504029,214,0 +170779504077,214,0 +170779504125,214,0 +170779504173,214,0 +170779504221,214,0 +170779504271,214,0 +170779504319,214,0 +170779504368,214,0 +170779504416,214,0 +170779504466,214,0 +170779504515,213,0 +170779504563,213,0 +170779504611,213,0 +170779504659,214,0 +170779504707,214,0 +170779504755,213,0 +170779504803,214,0 +170779504852,214,0 +170779504900,214,0 +170779504948,214,0 +170779504998,214,0 +170779505045,214,0 +170779505093,214,0 +170779505141,215,0 +170779505189,214,0 +170779505237,214,0 +170779505285,214,0 +170779505333,214,0 +170779505381,213,0 +170779505430,213,0 +170779505478,213,0 +170779505528,213,0 +170779505576,213,0 +170779505624,213,0 +170779505671,213,0 +170779505719,214,0 +170779505767,214,0 +170779505815,214,0 +170779505863,214,0 +170779505911,214,0 +170779505961,214,0 +170779506010,214,0 +170779506060,214,0 +170779506108,214,0 +170779506157,214,0 +170779506205,214,0 +170779506253,213,0 +170779506301,213,0 +170779506350,213,0 +170779506398,213,0 +170779506448,213,0 +170779506496,214,0 +170779506545,213,0 +170779506593,214,0 +170779506643,214,0 +170779506690,214,0 +170779506738,214,0 +170779506787,214,0 +170779506834,214,0 +170779506882,214,0 +170779506930,214,0 +170779506978,214,0 +170779507026,214,0 +170779507074,214,0 +170779507122,214,0 +170779507170,213,0 +170779507220,213,0 +170779507269,213,0 +170779507317,213,0 +170779507366,214,0 +170779507414,214,0 +170779507464,214,0 +170779507512,214,0 +170779507560,214,0 +170779507608,214,0 +170779507656,214,0 +170779507704,214,0 +170779507752,214,0 +170779507801,214,0 +170779507851,214,0 +170779507899,214,0 +170779507946,214,0 +170779507994,214,0 +170779508042,214,0 +170779508090,213,0 +170779508138,213,0 +170779508186,214,0 +170779508234,214,0 +170779508282,214,0 +170779508330,214,0 +170779508379,214,0 +170779508427,214,0 +170779508477,214,0 +170779508525,214,0 +170779508574,214,0 +170779508622,214,0 +170779508670,214,0 +170779508718,215,0 +170779508766,214,0 +170779508814,214,0 +170779508863,214,0 +170779508911,214,0 +170779508959,213,0 +170779509007,214,0 +170779509055,214,0 +170779509103,214,0 +170779509151,214,0 +170779509199,214,0 +170779509248,214,0 +170779509296,214,0 +170779509344,214,0 +170779509392,214,0 +170779509442,214,0 +170779509490,215,0 +170779509538,214,0 +170779509585,215,0 +170779509633,215,0 +170779509683,214,0 +170779509731,214,0 +170779509779,214,0 +170779509828,214,0 +170779509876,213,0 +170779509924,214,0 +170779509972,214,0 +170779510022,214,0 +170779510071,214,0 +170779510121,214,0 +170779510169,214,0 +170779510217,214,0 +170779510266,214,0 +170779510316,214,0 +170779510364,214,0 +170779510411,215,0 +170779510459,215,0 +170779510507,215,0 +170779510555,214,0 +170779510603,215,0 +170779510651,214,0 +170779510699,214,0 +170779510747,213,0 +170779510795,213,0 +170779510844,214,0 +170779510892,214,0 +170779510940,214,0 +170779510989,214,0 +170779511037,214,0 +170779511085,214,0 +170779511133,214,0 +170779511181,214,0 +170779511229,214,0 +170779511277,214,0 +170779511325,214,0 +170779511373,214,0 +170779511421,214,0 +170779511471,214,0 +170779511520,214,0 +170779511568,214,0 +170779511616,213,0 +170779511664,214,0 +170779511712,214,0 +170779511760,214,0 +170779511808,214,0 +170779511856,214,0 +170779511904,214,0 +170779511953,214,0 +170779512003,214,0 +170779512051,214,0 +170779512100,214,0 +170779512148,214,0 +170779512198,214,0 +170779512247,214,0 +170779512295,214,0 +170779512345,214,0 +170779512394,214,0 +170779512444,214,0 +170779512493,214,0 +170779512541,214,0 +170779512591,214,0 +170779512640,214,0 +170779512688,214,0 +170779512736,214,0 +170779512786,214,0 +170779512835,214,0 +170779512883,214,0 +170779512931,214,0 +170779512981,214,0 +170779513030,215,0 +170779513078,215,0 +170779513128,215,0 +170779513177,215,0 +170779513225,215,0 +170779513275,214,0 +170779513324,214,0 +170779513372,214,0 +170779513420,214,0 +170779513468,214,0 +170779513516,214,0 +170779513566,214,0 +170779513614,214,0 +170779513662,214,0 +170779513710,214,0 +170779513758,214,0 +170779513806,214,0 +170779513855,215,0 +170779513905,215,0 +170779513954,215,0 +170779514004,215,0 +170779514053,215,0 +170779514101,215,0 +170779514149,215,0 +170779514199,215,0 +170779514248,214,0 +170779514298,214,0 +170779514346,214,0 +170779514395,214,0 +170779514445,214,0 +170779514493,214,0 +170779514541,214,0 +170779514589,214,0 +170779514638,214,0 +170779514686,215,0 +170779514734,214,0 +170779514782,215,0 +170779514832,215,0 +170779514881,215,0 +170779514931,215,0 +170779514979,215,0 +170779515028,215,0 +170779515076,215,0 +170779515124,215,0 +170779515172,214,0 +170779515220,214,0 +170779515268,214,0 +170779515317,214,0 +170779515365,214,0 +170779515415,214,0 +170779515463,214,0 +170779515511,214,0 +170779515560,214,0 +170779515610,215,0 +170779515659,215,0 +170779515709,215,0 +170779515757,215,0 +170779515805,215,0 +170779515853,215,0 +170779515901,215,0 +170779515950,215,0 +170779515998,215,0 +170779516046,214,0 +170779516094,213,0 +170779516144,213,0 +170779516192,213,0 +170779516241,213,0 +170779516291,214,0 +170779516341,213,0 +170779516388,214,0 +170779516438,214,0 +170779516486,214,0 +170779516536,214,0 +170779516585,214,0 +170779516635,214,0 +170779516683,214,0 +170779516732,214,0 +170779516782,215,0 +170779516830,215,0 +170779516879,214,0 +170779516929,214,0 +170779516978,213,0 +170779517026,213,0 +170779517074,213,0 +170779517124,213,0 +170779517172,213,0 +170779517221,214,0 +170779517271,214,0 +170779517319,214,0 +170779517366,214,0 +170779517414,214,0 +170779517462,214,0 +170779517512,214,0 +170779517561,214,0 +170779517609,214,0 +170779517657,214,0 +170779517707,215,0 +170779517755,214,0 +170779517804,214,0 +170779517852,214,0 +170779517900,213,0 +170779517950,213,0 +170779517999,213,0 +170779518047,213,0 +170779518095,213,0 +170779518143,213,0 +170779518193,214,0 +170779518242,214,0 +170779518290,214,0 +170779518340,214,0 +170779518388,214,0 +170779518436,214,0 +170779518484,214,0 +170779518532,214,0 +170779518579,214,0 +170779518627,214,0 +170779518677,214,0 +170779518725,214,0 +170779518775,213,0 +170779518824,213,0 +170779518872,213,0 +170779518920,213,0 +170779518970,214,0 +170779519019,213,0 +170779519067,214,0 +170779519115,214,0 +170779519164,214,0 +170779519214,214,0 +170779519263,214,0 +170779519311,214,0 +170779519359,214,0 +170779519409,214,0 +170779519458,215,0 +170779519506,215,0 +170779519556,215,0 +170779519605,214,0 +170779519653,213,0 +170779519701,213,0 +170779519751,213,0 +170779519800,214,0 +170779519848,213,0 +170779519896,214,0 +170779519946,214,0 +170779519995,214,0 +170779520043,214,0 +170779520091,214,0 +170779520139,214,0 +170779520187,214,0 +170779520236,214,0 +170779520284,214,0 +170779520334,214,0 +170779520383,214,0 +170779520433,215,0 +170779520481,214,0 +170779520530,213,0 +170779520580,213,0 +170779520628,213,0 +170779520676,213,0 +170779520725,213,0 +170779520773,214,0 +170779520823,214,0 +170779520871,214,0 +170779520920,214,0 +170779520970,214,0 +170779521018,214,0 +170779521067,214,0 +170779521115,214,0 +170779521163,214,0 +170779521213,214,0 +170779521261,215,0 +170779521309,214,0 +170779521358,214,0 +170779521406,213,0 +170779521456,213,0 +170779521505,214,0 +170779521553,214,0 +170779521601,214,0 +170779521651,214,0 +170779521699,214,0 +170779521748,214,0 +170779521796,214,0 +170779521844,214,0 +170779521894,214,0 +170779521942,214,0 +170779521991,214,0 +170779522041,214,0 +170779522089,214,0 +170779522138,214,0 +170779522186,214,0 +170779522234,214,0 +170779522283,213,0 +170779522331,213,0 +170779522379,214,0 +170779522429,214,0 +170779522477,214,0 +170779522526,214,0 +170779522574,214,0 +170779522622,214,0 +170779522670,214,0 +170779522720,214,0 +170779522768,214,0 +170779522816,214,0 +170779522865,214,0 +170779522915,215,0 +170779522964,214,0 +170779523014,214,0 +170779523062,214,0 +170779523110,213,0 +170779523158,213,0 +170779523207,213,0 +170779523255,214,0 +170779523303,213,0 +170779523351,214,0 +170779523401,214,0 +170779523449,213,0 +170779523498,214,0 +170779523546,214,0 +170779523596,214,0 +170779523645,214,0 +170779523693,214,0 +170779523743,214,0 +170779523792,214,0 +170779523840,214,0 +170779523889,214,0 +170779523939,214,0 +170779523988,213,0 +170779524036,214,0 +170779524086,214,0 +170779524134,214,0 +170779524182,214,0 +170779524230,213,0 +170779524278,214,0 +170779524327,214,0 +170779524375,214,0 +170779524423,214,0 +170779524471,214,0 +170779524519,214,0 +170779524567,214,0 +170779524615,214,0 +170779524663,215,0 +170779524712,214,0 +170779524760,214,0 +170779524810,214,0 +170779524858,213,0 +170779524906,213,0 +170779524953,214,0 +170779525003,214,0 +170779525053,214,0 +170779525100,214,0 +170779525150,214,0 +170779525198,214,0 +170779525246,214,0 +170779525294,214,0 +170779525343,214,0 +170779525393,214,0 +170779525441,215,0 +170779525490,215,0 +170779525538,214,0 +170779525586,214,0 +170779525634,214,0 +170779525682,214,0 +170779525730,214,0 +170779525778,214,0 +170779525825,214,0 +170779525873,214,0 +170779525921,214,0 +170779525969,215,0 +170779526017,215,0 +170779526067,215,0 +170779526114,215,0 +170779526162,215,0 +170779526210,215,0 +170779526258,215,0 +170779526306,215,0 +170779526354,215,0 +170779526402,215,0 +170779526451,215,0 +170779526499,215,0 +170779526549,215,0 +170779526598,214,0 +170779526647,214,0 +170779526695,214,0 +170779526743,214,0 +170779526791,214,0 +170779526839,214,0 +170779526889,214,0 +170779526937,214,0 +170779526985,215,0 +170779527032,214,0 +170779527080,214,0 +170779527130,214,0 +170779527178,215,0 +170779527227,215,0 +170779527277,214,0 +170779527324,215,0 +170779527372,215,0 +170779527422,214,0 +170779527470,214,0 +170779527519,214,0 +170779527567,214,0 +170779527615,214,0 +170779527663,214,0 +170779527711,214,0 +170779527759,214,0 +170779527807,214,0 +170779527855,214,0 +170779527903,214,0 +170779527950,215,0 +170779527998,215,0 +170779528046,215,0 +170779528094,215,0 +170779528142,215,0 +170779528190,215,0 +170779528238,215,0 +170779528286,214,0 +170779528335,214,0 +170779528385,214,0 +170779528433,214,0 +170779528482,214,0 +170779528530,214,0 +170779528578,214,0 +170779528626,214,0 +170779528674,214,0 +170779528722,214,0 +170779528770,214,0 +170779528818,214,0 +170779528865,214,0 +170779528913,215,0 +170779528961,215,0 +170779529009,215,0 +170779529057,215,0 +170779529105,214,0 +170779529153,214,0 +170779529201,214,0 +170779529249,214,0 +170779529298,214,0 +170779529346,214,0 +170779529394,214,0 +170779529444,214,0 +170779529492,214,0 +170779529540,214,0 +170779529588,214,0 +170779529636,214,0 +170779529685,214,0 +170779529735,214,0 +170779529783,215,0 +170779529831,215,0 +170779529879,214,0 +170779529927,215,0 +170779529976,214,0 +170779530024,214,0 +170779530072,213,0 +170779530120,213,0 +170779530168,213,0 +170779530216,213,0 +170779530264,214,0 +170779530312,214,0 +170779530360,214,0 +170779530409,214,0 +170779530459,214,0 +170779530508,214,0 +170779530558,214,0 +170779530607,214,0 +170779530655,215,0 +170779530703,214,0 +170779530751,215,0 +170779530799,214,0 +170779530847,214,0 +170779530895,215,0 +170779530943,213,0 +170779530990,213,0 +170779531040,213,0 +170779531088,213,0 +170779531136,214,0 +170779531184,214,0 +170779531232,214,0 +170779531280,214,0 +170779531328,214,0 +170779531377,214,0 +170779531425,214,0 +170779531473,214,0 +170779531523,214,0 +170779531571,214,0 +170779531619,214,0 +170779531667,214,0 +170779531716,214,0 +170779531766,214,0 +170779531815,213,0 +170779531863,213,0 +170779531911,213,0 +170779531959,213,0 +170779532009,213,0 +170779532057,214,0 +170779532105,214,0 +170779532152,214,0 +170779532200,214,0 +170779532250,214,0 +170779532298,214,0 +170779532346,214,0 +170779532394,214,0 +170779532442,214,0 +170779532490,214,0 +170779532538,215,0 +170779532586,214,0 +170779532634,214,0 +170779532682,213,0 +170779532730,213,0 +170779532778,214,0 +170779532825,214,0 +170779532873,214,0 +170779532923,214,0 +170779532972,214,0 +170779533020,214,0 +170779533068,214,0 +170779533116,214,0 +170779533166,214,0 +170779533214,214,0 +170779533263,214,0 +170779533313,215,0 +170779533361,215,0 +170779533409,215,0 +170779533457,215,0 +170779533506,214,0 +170779533556,213,0 +170779533604,213,0 +170779533652,214,0 +170779533700,214,0 +170779533748,214,0 +170779533795,214,0 +170779533843,214,0 +170779533893,214,0 +170779533941,214,0 +170779533989,214,0 +170779534037,214,0 +170779534085,214,0 +170779534133,215,0 +170779534181,215,0 +170779534229,214,0 +170779534277,214,0 +170779534326,215,0 +170779534376,214,0 +170779534423,213,0 +170779534473,213,0 +170779534521,213,0 +170779534569,214,0 +170779534618,214,0 +170779534668,214,0 +170779534717,214,0 +170779534765,214,0 +170779534815,214,0 +170779534863,214,0 +170779534911,214,0 +170779534958,214,0 +170779535006,214,0 +170779535056,214,0 +170779535104,214,0 +170779535153,215,0 +170779535203,214,0 +170779535251,214,0 +170779535299,214,0 +170779535347,214,0 +170779535395,214,0 +170779535442,214,0 +170779535492,214,0 +170779535541,214,0 +170779535589,214,0 +170779535637,214,0 +170779535685,214,0 +170779535733,214,0 +170779535781,214,0 +170779535829,214,0 +170779535877,214,0 +170779535925,214,0 +170779535973,215,0 +170779536020,215,0 +170779536068,214,0 +170779536116,214,0 +170779536166,213,0 +170779536213,213,0 +170779536261,214,0 +170779536311,214,0 +170779536359,214,0 +170779536409,214,0 +170779536457,214,0 +170779536505,214,0 +170779536552,214,0 +170779536600,215,0 +170779536650,215,0 +170779536699,214,0 +170779536747,215,0 +170779536797,214,0 +170779536845,215,0 +170779536893,215,0 +170779536940,215,0 +170779536988,214,0 +170779537036,213,0 +170779537084,213,0 +170779537132,214,0 +170779537180,214,0 +170779537229,214,0 +170779537277,214,0 +170779537325,214,0 +170779537373,214,0 +170779537421,214,0 +170779537469,214,0 +170779537518,214,0 +170779537566,214,0 +170779537616,215,0 +170779537665,214,0 +170779537713,215,0 +170779537761,214,0 +170779537809,215,0 +170779537859,214,0 +170779537907,214,0 +170779537954,213,0 +170779538004,214,0 +170779538054,214,0 +170779538103,214,0 +170779538151,214,0 +170779538201,214,0 +170779538248,214,0 +170779538296,214,0 +170779538344,214,0 +170779538392,214,0 +170779538440,214,0 +170779538488,214,0 +170779538536,214,0 +170779538585,214,0 +170779538635,215,0 +170779538684,214,0 +170779538732,214,0 +170779538780,214,0 +170779538828,213,0 +170779538876,214,0 +170779538926,214,0 +170779538974,214,0 +170779539023,214,0 +170779539073,214,0 +170779539121,214,0 +170779539170,214,0 +170779539219,214,0 +170779539269,214,0 +170779539317,214,0 +170779539365,214,0 +170779539414,215,0 +170779539462,215,0 +170779539512,215,0 +170779539560,215,0 +170779539608,214,0 +170779539656,213,0 +170779539705,214,0 +170779539753,214,0 +170779539801,214,0 +170779539851,214,0 +170779539900,214,0 +170779539950,214,0 +170779539998,214,0 +170779540046,214,0 +170779540093,214,0 +170779540141,214,0 +170779540190,214,0 +170779540237,214,0 +170779540287,214,0 +170779540335,214,0 +170779540383,214,0 +170779540431,214,0 +170779540479,214,0 +170779540528,213,0 +170779540576,213,0 +170779540626,214,0 +170779540674,214,0 +170779540723,214,0 +170779540773,214,0 +170779540821,214,0 +170779540870,214,0 +170779540920,214,0 +170779540968,214,0 +170779541016,215,0 +170779541063,215,0 +170779541113,215,0 +170779541163,215,0 +170779541212,215,0 +170779541260,214,0 +170779541310,214,0 +170779541359,214,0 +170779541409,214,0 +170779541457,214,0 +170779541506,214,0 +170779541556,214,0 +170779541604,214,0 +170779541653,215,0 +170779541701,215,0 +170779541749,215,0 +170779541797,215,0 +170779541847,215,0 +170779541894,215,0 +170779541944,215,0 +170779541992,215,0 +170779542040,215,0 +170779542088,214,0 +170779542136,215,0 +170779542183,214,0 +170779542233,214,0 +170779542281,214,0 +170779542329,214,0 +170779542376,214,0 +170779542424,214,0 +170779542472,214,0 +170779542520,215,0 +170779542568,214,0 +170779542616,215,0 +170779542664,215,0 +170779542712,215,0 +170779542760,215,0 +170779542809,215,0 +170779542857,215,0 +170779542907,215,0 +170779542955,215,0 +170779543004,215,0 +170779543052,214,0 +170779543100,213,0 +170779543148,213,0 +170779543196,213,0 +170779543244,214,0 +170779543292,213,0 +170779543340,214,0 +170779543388,214,0 +170779543436,214,0 +170779543485,214,0 +170779543533,214,0 +170779543581,214,0 +170779543629,214,0 +170779543677,214,0 +170779543727,214,0 +170779543775,215,0 +170779543823,215,0 +170779543871,215,0 +170779543920,215,0 +170779543968,215,0 +170779544016,215,0 +170779544066,215,0 +170779544115,215,0 +170779544163,215,0 +170779544211,215,0 +170779544261,215,0 +170779544310,215,0 +170779544358,214,0 +170779544406,214,0 +170779544454,214,0 +170779544503,214,0 +170779544551,214,0 +170779544599,214,0 +170779544647,214,0 +170779544697,214,0 +170779544745,214,0 +170779544793,214,0 +170779544841,214,0 +170779544890,214,0 +170779544938,214,0 +170779544986,214,0 +170779545034,215,0 +170779545082,215,0 +170779545130,215,0 +170779545178,215,0 +170779545227,214,0 +170779545275,214,0 +170779545325,214,0 +170779545373,214,0 +170779545421,214,0 +170779545470,214,0 +170779545518,214,0 +170779545566,214,0 +170779545616,214,0 +170779545663,214,0 +170779545711,214,0 +170779545759,215,0 +170779545807,215,0 +170779545856,215,0 +170779545904,215,0 +170779545952,215,0 +170779546000,215,0 +170779546048,214,0 +170779546095,214,0 +170779546145,213,0 +170779546193,214,0 +170779546240,213,0 +170779546288,214,0 +170779546336,214,0 +170779546386,214,0 +170779546435,214,0 +170779546485,214,0 +170779546533,214,0 +170779546581,214,0 +170779546630,214,0 +170779546678,214,0 +170779546726,215,0 +170779546776,215,0 +170779546824,215,0 +170779546872,215,0 +170779546921,214,0 +170779546969,214,0 +170779547017,213,0 +170779547065,214,0 +170779547113,214,0 +170779547161,214,0 +170779547211,214,0 +170779547258,214,0 +170779547306,214,0 +170779547354,214,0 +170779547402,214,0 +170779547452,214,0 +170779547500,215,0 +170779547549,214,0 +170779547599,215,0 +170779547647,215,0 +170779547695,215,0 +170779547743,215,0 +170779547791,215,0 +170779547839,214,0 +170779547888,213,0 +170779547936,213,0 +170779547984,214,0 +170779548034,214,0 +170779548083,214,0 +170779548131,214,0 +170779548181,214,0 +170779548229,214,0 +170779548277,214,0 +170779548326,215,0 +170779548374,215,0 +170779548422,215,0 +170779548470,215,0 +170779548518,215,0 +170779548565,215,0 +170779548615,215,0 +170779548663,214,0 +170779548711,213,0 +170779548760,214,0 +170779548808,214,0 +170779548856,214,0 +170779548906,214,0 +170779548954,214,0 +170779549002,214,0 +170779549050,214,0 +170779549098,214,0 +170779549146,214,0 +170779549194,214,0 +170779549242,214,0 +170779549290,214,0 +170779549337,214,0 +170779549385,214,0 +170779549435,214,0 +170779549483,215,0 +170779549531,214,0 +170779549580,214,0 +170779549628,213,0 +170779549676,214,0 +170779549724,214,0 +170779549772,214,0 +170779549820,214,0 +170779549867,214,0 +170779549915,214,0 +170779549965,214,0 +170779550013,214,0 +170779550060,214,0 +170779550108,214,0 +170779550156,214,0 +170779550204,214,0 +170779550253,214,0 +170779550301,215,0 +170779550349,215,0 +170779550397,214,0 +170779550446,214,0 +170779550494,214,0 +170779550542,214,0 +170779550590,214,0 +170779550639,214,0 +170779550689,214,0 +170779550738,214,0 +170779550786,214,0 +170779550834,214,0 +170779550884,214,0 +170779550932,214,0 +170779550980,214,0 +170779551028,215,0 +170779551076,215,0 +170779551125,215,0 +170779551175,215,0 +170779551223,214,0 +170779551272,214,0 +170779551322,214,0 +170779551370,214,0 +170779551418,214,0 +170779551465,214,0 +170779551515,214,0 +170779551563,214,0 +170779551612,214,0 +170779551660,214,0 +170779551708,214,0 +170779551756,215,0 +170779551804,215,0 +170779551852,215,0 +170779551900,215,0 +170779551950,215,0 +170779551999,215,0 +170779552047,214,0 +170779552097,214,0 +170779552145,214,0 +170779552192,214,0 +170779552240,214,0 +170779552288,214,0 +170779552336,214,0 +170779552384,214,0 +170779552432,214,0 +170779552480,214,0 +170779552530,214,0 +170779552578,214,0 +170779552625,214,0 +170779552673,214,0 +170779552721,214,0 +170779552769,215,0 +170779552819,214,0 +170779552867,215,0 +170779552915,214,0 +170779552963,214,0 +170779553011,214,0 +170779553058,214,0 +170779553106,214,0 +170779553156,214,0 +170779553204,214,0 +170779553253,214,0 +170779553301,214,0 +170779553349,214,0 +170779553397,214,0 +170779553445,215,0 +170779553493,215,0 +170779553541,215,0 +170779553589,215,0 +170779553637,215,0 +170779553685,215,0 +170779553732,215,0 +170779553780,214,0 +170779553830,214,0 +170779553878,214,0 +170779553926,214,0 +170779553974,214,0 +170779554022,214,0 +170779554069,214,0 +170779554119,214,0 +170779554167,214,0 +170779554215,215,0 +170779554264,215,0 +170779554312,215,0 +170779554360,215,0 +170779554408,215,0 +170779554456,215,0 +170779554504,215,0 +170779554551,215,0 +170779554601,214,0 +170779554651,214,0 +170779554699,214,0 +170779554746,214,0 +170779554796,214,0 +170779554844,214,0 +170779554892,214,0 +170779554939,214,0 +170779554987,214,0 +170779555035,214,0 +170779555083,215,0 +170779555131,214,0 +170779555178,215,0 +170779555226,215,0 +170779555274,215,0 +170779555322,215,0 +170779555370,215,0 +170779555418,215,0 +170779555467,214,0 +170779555515,214,0 +170779555563,214,0 +170779555611,214,0 +170779555659,214,0 +170779555707,214,0 +170779555755,214,0 +170779555803,214,0 +170779555851,214,0 +170779555900,215,0 +170779555948,215,0 +170779555996,215,0 +170779556044,215,0 +170779556092,215,0 +170779556141,215,0 +170779556189,215,0 +170779556237,215,0 +170779556285,214,0 +170779556333,215,0 +170779556381,215,0 +170779556429,215,0 +170779556479,215,0 +170779556527,215,0 +170779556575,214,0 +170779556624,215,0 +170779556672,215,0 +170779556720,215,0 +170779556768,215,0 +170779556816,215,0 +170779556864,215,0 +170779556913,215,0 +170779556961,215,0 +170779557009,215,0 +170779557058,215,0 +170779557106,215,0 +170779557156,215,0 +170779557204,214,0 +170779557252,215,0 +170779557301,214,0 +170779557351,215,0 +170779557400,215,0 +170779557448,215,0 +170779557496,215,0 +170779557546,215,0 +170779557595,215,0 +170779557643,215,0 +170779557691,215,0 +170779557739,215,0 +170779557787,215,0 +170779557837,215,0 +170779557886,215,0 +170779557934,215,0 +170779557982,214,0 +170779558031,214,0 +170779558080,214,0 +170779558128,214,0 +170779558175,214,0 +170779558223,214,0 +170779558271,214,0 +170779558319,215,0 +170779558367,214,0 +170779558415,215,0 +170779558463,215,0 +170779558511,215,0 +170779558560,215,0 +170779558610,215,0 +170779558658,215,0 +170779558706,215,0 +170779558755,215,0 +170779558805,215,0 +170779558855,214,0 +170779558903,213,0 +170779558950,213,0 +170779558998,214,0 +170779559048,214,0 +170779559098,214,0 +170779559147,214,0 +170779559196,214,0 +170779559246,214,0 +170779559294,215,0 +170779559342,215,0 +170779559390,214,0 +170779559439,215,0 +170779559489,215,0 +170779559537,215,0 +170779559586,215,0 +170779559634,215,0 +170779559682,214,0 +170779559730,213,0 +170779559778,213,0 +170779559828,213,0 +170779559876,214,0 +170779559924,213,0 +170779559973,214,0 +170779560021,214,0 +170779560069,214,0 +170779560118,214,0 +170779560168,214,0 +170779560217,214,0 +170779560265,214,0 +170779560313,214,0 +170779560361,214,0 +170779560409,214,0 +170779560457,214,0 +170779560505,215,0 +170779560555,214,0 +170779560603,213,0 +170779560652,214,0 +170779560702,214,0 +170779560750,214,0 +170779560799,214,0 +170779560847,214,0 +170779560895,214,0 +170779560943,214,0 +170779560993,214,0 +170779561040,214,0 +170779561088,214,0 +170779561136,215,0 +170779561184,215,0 +170779561232,215,0 +170779561280,215,0 +170779561328,215,0 +170779561376,214,0 +170779561425,213,0 +170779561475,214,0 +170779561523,214,0 +170779561571,214,0 +170779561619,214,0 +170779561667,214,0 +170779561716,214,0 +170779561766,214,0 +170779561814,214,0 +170779561862,214,0 +170779561910,214,0 +170779561957,214,0 +170779562007,215,0 +170779562055,215,0 +170779562103,215,0 +170779562152,215,0 +170779562200,215,0 +170779562248,214,0 +170779562296,213,0 +170779562344,214,0 +170779562392,214,0 +170779562440,214,0 +170779562488,214,0 +170779562536,214,0 +170779562584,214,0 +170779562632,214,0 +170779562680,214,0 +170779562729,214,0 +170779562777,214,0 +170779562827,214,0 +170779562876,214,0 +170779562924,215,0 +170779562974,215,0 +170779563022,215,0 +170779563071,214,0 +170779563119,214,0 +170779563167,214,0 +170779563215,214,0 +170779563265,214,0 +170779563314,214,0 +170779563364,214,0 +170779563412,214,0 +170779563459,214,0 +170779563507,214,0 +170779563555,215,0 +170779563603,215,0 +170779563651,215,0 +170779563699,215,0 +170779563746,215,0 +170779563794,215,0 +170779563842,215,0 +170779563891,215,0 +170779563939,214,0 +170779563987,214,0 +170779564035,214,0 +170779564083,214,0 +170779564132,214,0 +170779564180,214,0 +170779564228,214,0 +170779564276,214,0 +170779564324,214,0 +170779564373,214,0 +170779564421,215,0 +170779564469,215,0 +170779564517,215,0 +170779564565,215,0 +170779564614,215,0 +170779564662,215,0 +170779564711,215,0 +170779564759,214,0 +170779564807,214,0 +170779564855,214,0 +170779564903,214,0 +170779564951,214,0 +170779564998,214,0 +170779565046,214,0 +170779565094,214,0 +170779565144,214,0 +170779565192,215,0 +170779565239,215,0 +170779565287,215,0 +170779565335,215,0 +170779565383,215,0 +170779565431,215,0 +170779565479,215,0 +170779565527,215,0 +170779565576,215,0 +170779565624,214,0 +170779565672,214,0 +170779565720,214,0 +170779565768,214,0 +170779565816,214,0 +170779565863,214,0 +170779565911,214,0 +170779565959,214,0 +170779566007,214,0 +170779566055,215,0 +170779566103,215,0 +170779566151,215,0 +170779566198,215,0 +170779566246,215,0 +170779566294,215,0 +170779566342,215,0 +170779566390,215,0 +170779566438,214,0 +170779566486,214,0 +170779566533,214,0 +170779566581,214,0 +170779566631,214,0 +170779566679,214,0 +170779566728,214,0 +170779566776,215,0 +170779566826,215,0 +170779566875,215,0 +170779566923,215,0 +170779566973,215,0 +170779567022,215,0 +170779567072,215,0 +170779567120,215,0 +170779567169,215,0 +170779567219,215,0 +170779567268,215,0 +170779567318,214,0 +170779567367,214,0 +170779567417,214,0 +170779567466,214,0 +170779567514,214,0 +170779567562,214,0 +170779567611,214,0 +170779567659,215,0 +170779567707,215,0 +170779567755,215,0 +170779567803,215,0 +170779567851,215,0 +170779567899,215,0 +170779567949,215,0 +170779567997,215,0 +170779568046,215,0 +170779568096,215,0 +170779568143,214,0 +170779568191,214,0 +170779568239,214,0 +170779568287,214,0 +170779568335,214,0 +170779568383,214,0 +170779568430,214,0 +170779568478,214,0 +170779568526,214,0 +170779568574,214,0 +170779568622,215,0 +170779568670,215,0 +170779568718,214,0 +170779568767,214,0 +170779568815,214,0 +170779568863,214,0 +170779568912,214,0 +170779568962,215,0 +170779569010,214,0 +170779569059,214,0 +170779569109,214,0 +170779569158,214,0 +170779569206,214,0 +170779569256,214,0 +170779569305,214,0 +170779569355,214,0 +170779569403,214,0 +170779569452,214,0 +170779569500,214,0 +170779569548,214,0 +170779569596,214,0 +170779569644,214,0 +170779569693,214,0 +170779569741,214,0 +170779569789,215,0 +170779569837,214,0 +170779569885,214,0 +170779569933,214,0 +170779569983,214,0 +170779570030,214,0 +170779570078,214,0 +170779570126,214,0 +170779570176,214,0 +170779570224,214,0 +170779570272,214,0 +170779570321,214,0 +170779570369,214,0 +170779570419,214,0 +170779570467,214,0 +170779570515,215,0 +170779570563,215,0 +170779570610,215,0 +170779570658,215,0 +170779570708,214,0 +170779570756,214,0 +170779570805,214,0 +170779570853,214,0 +170779570903,214,0 +170779570951,214,0 +170779571001,214,0 +170779571050,214,0 +170779571098,214,0 +170779571148,215,0 +170779571197,215,0 +170779571245,215,0 +170779571293,215,0 +170779571341,215,0 +170779571389,215,0 +170779571437,215,0 +170779571485,215,0 +170779571534,214,0 +170779571582,214,0 +170779571630,214,0 +170779571679,214,0 +170779571727,214,0 +170779571775,214,0 +170779571823,214,0 +170779571871,215,0 +170779571919,215,0 +170779571969,215,0 +170779572017,215,0 +170779572066,215,0 +170779572114,215,0 +170779572164,215,0 +170779572212,215,0 +170779572261,215,0 +170779572309,215,0 +170779572357,214,0 +170779572405,214,0 +170779572453,214,0 +170779572503,214,0 +170779572552,214,0 +170779572602,214,0 +170779572650,214,0 +170779572699,214,0 +170779572747,214,0 +170779572795,214,0 +170779572843,214,0 +170779572893,214,0 +170779572942,214,0 +170779572992,215,0 +170779573040,214,0 +170779573088,215,0 +170779573137,215,0 +170779573185,214,0 +170779573234,214,0 +170779573284,214,0 +170779573334,214,0 +170779573381,214,0 +170779573429,214,0 +170779573477,214,0 +170779573527,214,0 +170779573576,214,0 +170779573624,214,0 +170779573672,214,0 +170779573720,214,0 +170779573770,215,0 +170779573818,215,0 +170779573866,215,0 +170779573915,215,0 +170779573963,215,0 +170779574011,215,0 +170779574059,214,0 +170779574107,214,0 +170779574157,214,0 +170779574204,214,0 +170779574254,214,0 +170779574303,214,0 +170779574353,214,0 +170779574401,215,0 +170779574449,215,0 +170779574498,215,0 +170779574548,215,0 +170779574597,215,0 +170779574647,215,0 +170779574695,215,0 +170779574743,215,0 +170779574792,215,0 +170779574840,215,0 +170779574889,214,0 +170779574937,214,0 +170779574985,214,0 +170779575033,214,0 +170779575081,214,0 +170779575129,214,0 +170779575179,215,0 +170779575227,215,0 +170779575275,215,0 +170779575322,215,0 +170779575370,215,0 +170779575420,215,0 +170779575470,215,0 +170779575518,215,0 +170779575565,215,0 +170779575613,215,0 +170779575661,215,0 +170779575711,214,0 +170779575759,214,0 +170779575809,214,0 +170779575856,214,0 +170779575905,214,0 +170779575952,214,0 +170779576000,214,0 +170779576048,214,0 +170779576096,215,0 +170779576144,215,0 +170779576192,215,0 +170779576240,215,0 +170779576288,215,0 +170779576338,215,0 +170779576386,215,0 +170779576435,215,0 +170779576483,215,0 +170779576531,215,0 +170779576579,214,0 +170779576627,214,0 +170779576675,214,0 +170779576725,214,0 +170779576773,214,0 +170779576821,214,0 +170779576869,214,0 +170779576917,214,0 +170779576966,214,0 +170779577014,215,0 +170779577062,214,0 +170779577112,215,0 +170779577159,215,0 +170779577207,215,0 +170779577255,215,0 +170779577303,215,0 +170779577353,215,0 +170779577402,214,0 +170779577450,214,0 +170779577498,214,0 +170779577546,214,0 +170779577596,214,0 +170779577645,214,0 +170779577695,214,0 +170779577744,214,0 +170779577794,214,0 +170779577843,215,0 +170779577893,214,0 +170779577942,215,0 +170779577990,215,0 +170779578038,215,0 +170779578086,215,0 +170779578136,215,0 +170779578185,215,0 +170779578235,215,0 +170779578283,214,0 +170779578331,214,0 +170779578380,214,0 +170779578428,214,0 +170779578476,214,0 +170779578524,214,0 +170779578574,214,0 +170779578622,215,0 +170779578671,215,0 +170779578719,215,0 +170779578767,214,0 +170779578815,215,0 +170779578863,215,0 +170779578911,215,0 +170779578959,215,0 +170779579007,215,0 +170779579056,215,0 +170779579104,214,0 +170779579152,214,0 +170779579200,214,0 +170779579250,214,0 +170779579299,214,0 +170779579349,214,0 +170779579399,214,0 +170779579447,215,0 +170779579494,215,0 +170779579544,215,0 +170779579592,215,0 +170779579641,215,0 +170779579691,215,0 +170779579741,215,0 +170779579789,215,0 +170779579838,215,0 +170779579886,215,0 +170779579934,213,0 +170779579982,213,0 +170779580030,214,0 +170779580080,214,0 +170779580129,214,0 +170779580177,214,0 +170779580225,214,0 +170779580275,214,0 +170779580324,214,0 +170779580374,214,0 +170779580423,214,0 +170779580471,215,0 +170779580519,215,0 +170779580569,214,0 +170779580617,214,0 +170779580665,214,0 +170779580713,214,0 +170779580762,213,0 +170779580810,213,0 +170779580858,213,0 +170779580906,213,0 +170779580956,214,0 +170779581004,214,0 +170779581051,214,0 +170779581099,214,0 +170779581147,214,0 +170779581195,214,0 +170779581243,214,0 +170779581293,214,0 +170779581342,214,0 +170779581392,215,0 +170779581440,214,0 +170779581488,214,0 +170779581537,215,0 +170779581585,214,0 +170779581635,213,0 +170779581683,213,0 +170779581731,213,0 +170779581779,214,0 +170779581827,214,0 +170779581874,214,0 +170779581924,214,0 +170779581972,214,0 +170779582021,214,0 +170779582069,214,0 +170779582119,214,0 +170779582167,214,0 +170779582215,214,0 +170779582262,215,0 +170779582310,215,0 +170779582359,214,0 +170779582407,214,0 +170779582456,213,0 +170779582504,214,0 +170779582554,214,0 +170779582603,213,0 +170779582653,214,0 +170779582701,214,0 +170779582749,214,0 +170779582797,214,0 +170779582845,214,0 +170779582893,214,0 +170779582941,214,0 +170779582988,215,0 +170779583036,214,0 +170779583084,214,0 +170779583132,214,0 +170779583180,214,0 +170779583228,214,0 +170779583277,213,0 +170779583325,214,0 +170779583375,214,0 +170779583423,214,0 +170779583472,214,0 +170779583520,214,0 +170779583568,214,0 +170779583616,214,0 +170779583666,214,0 +170779583715,214,0 +170779583765,214,0 +170779583814,214,0 +170779583864,214,0 +170779583911,214,0 +170779583959,214,0 +170779584007,214,0 +170779584055,214,0 +170779584103,213,0 +170779584152,214,0 +170779584200,214,0 +170779584250,214,0 +170779584298,214,0 +170779584345,214,0 +170779584393,214,0 +170779584441,214,0 +170779584491,215,0 +170779584540,215,0 +170779584588,215,0 +170779584638,215,0 +170779584686,215,0 +170779584735,215,0 +170779584783,215,0 +170779584831,214,0 +170779584881,214,0 +170779584929,214,0 +170779584977,214,0 +170779585024,214,0 +170779585072,214,0 +170779585122,215,0 +170779585171,215,0 +170779585221,215,0 +170779585270,215,0 +170779585320,215,0 +170779585369,215,0 +170779585417,215,0 +170779585466,215,0 +170779585514,215,0 +170779585562,215,0 +170779585610,214,0 +170779585660,214,0 +170779585708,214,0 +170779585757,214,0 +170779585805,215,0 +170779585853,215,0 +170779585901,215,0 +170779585949,214,0 +170779585998,215,0 +170779586046,215,0 +170779586094,215,0 +170779586142,215,0 +170779586190,215,0 +170779586238,215,0 +170779586286,215,0 +170779586334,215,0 +170779586384,215,0 +170779586432,215,0 +170779586481,214,0 +170779586529,214,0 +170779586578,214,0 +170779586625,214,0 +170779586673,214,0 +170779586722,214,0 +170779586771,214,0 +170779586820,214,0 +170779586868,215,0 +170779586916,215,0 +170779586964,215,0 +170779587012,215,0 +170779587060,214,0 +170779587110,215,0 +170779587158,215,0 +170779587207,215,0 +170779587255,214,0 +170779587303,214,0 +170779587351,214,0 +170779587401,214,0 +170779587449,214,0 +170779587496,214,0 +170779587544,214,0 +170779587592,214,0 +170779587640,214,0 +170779587688,215,0 +170779587736,215,0 +170779587784,214,0 +170779587833,215,0 +170779587881,215,0 +170779587931,215,0 +170779587980,215,0 +170779588028,215,0 +170779588076,215,0 +170779588124,214,0 +170779588172,214,0 +170779588222,214,0 +170779588269,214,0 +170779588317,214,0 +170779588365,214,0 +170779588413,214,0 +170779588461,214,0 +170779588509,214,0 +170779588557,215,0 +170779588606,215,0 +170779588656,215,0 +170779588705,215,0 +170779588753,215,0 +170779588801,215,0 +170779588851,215,0 +170779588899,215,0 +170779588947,214,0 +170779588994,214,0 +170779589042,214,0 +170779589090,214,0 +170779589138,214,0 +170779589187,214,0 +170779589237,214,0 +170779589285,214,0 +170779589333,214,0 +170779589382,214,0 +170779589430,215,0 +170779589480,215,0 +170779589529,215,0 +170779589577,215,0 +170779589627,215,0 +170779589677,215,0 +170779589724,215,0 +170779589774,214,0 +170779589822,214,0 +170779589870,214,0 +170779589918,214,0 +170779589967,214,0 +170779590015,214,0 +170779590065,214,0 +170779590113,215,0 +170779590161,215,0 +170779590209,215,0 +170779590257,215,0 +170779590305,215,0 +170779590352,215,0 +170779590400,215,0 +170779590450,215,0 +170779590498,215,0 +170779590546,215,0 +170779590595,214,0 +170779590643,214,0 +170779590691,214,0 +170779590741,214,0 +170779590788,214,0 +170779590836,214,0 +170779590884,215,0 +170779590932,214,0 +170779590980,215,0 +170779591028,215,0 +170779591077,215,0 +170779591125,215,0 +170779591175,215,0 +170779591223,215,0 +170779591271,215,0 +170779591319,215,0 +170779591367,215,0 +170779591415,214,0 +170779591463,214,0 +170779591511,214,0 +170779591559,214,0 +170779591606,214,0 +170779591654,214,0 +170779591702,214,0 +170779591750,214,0 +170779591798,215,0 +170779591847,215,0 +170779591895,215,0 +170779591943,215,0 +170779591991,215,0 +170779592039,215,0 +170779592087,215,0 +170779592135,215,0 +170779592185,215,0 +170779592233,214,0 +170779592282,214,0 +170779592330,214,0 +170779592378,214,0 +170779592426,214,0 +170779592474,214,0 +170779592522,214,0 +170779592571,215,0 +170779592619,215,0 +170779592667,215,0 +170779592715,215,0 +170779592765,215,0 +170779592814,215,0 +170779592864,215,0 +170779592912,214,0 +170779592961,215,0 +170779593011,214,0 +170779593059,214,0 +170779593106,214,0 +170779593154,214,0 +170779593202,214,0 +170779593250,214,0 +170779593298,214,0 +170779593346,214,0 +170779593396,214,0 +170779593444,214,0 +170779593493,214,0 +170779593541,215,0 +170779593589,215,0 +170779593637,215,0 +170779593684,215,0 +170779593732,215,0 +170779593782,215,0 +170779593830,215,0 +170779593878,214,0 +170779593927,214,0 +170779593975,214,0 +170779594023,214,0 +170779594072,214,0 +170779594122,214,0 +170779594171,214,0 +170779594221,214,0 +170779594269,214,0 +170779594317,215,0 +170779594365,215,0 +170779594414,215,0 +170779594464,215,0 +170779594512,215,0 +170779594560,215,0 +170779594609,215,0 +170779594657,215,0 +170779594705,214,0 +170779594755,214,0 +170779594802,214,0 +170779594850,214,0 +170779594900,214,0 +170779594948,214,0 +170779594997,214,0 +170779595047,214,0 +170779595095,214,0 +170779595143,214,0 +170779595192,214,0 +170779595240,215,0 +170779595290,214,0 +170779595337,215,0 +170779595387,215,0 +170779595435,214,0 +170779595484,214,0 +170779595532,213,0 +170779595580,214,0 +170779595628,214,0 +170779595676,214,0 +170779595724,213,0 +170779595774,214,0 +170779595823,214,0 +170779595871,214,0 +170779595921,214,0 +170779595969,214,0 +170779596018,214,0 +170779596066,214,0 +170779596114,215,0 +170779596162,215,0 +170779596210,214,0 +170779596258,215,0 +170779596306,214,0 +170779596355,214,0 +170779596403,214,0 +170779596451,214,0 +170779596499,213,0 +170779596549,214,0 +170779596597,214,0 +170779596646,214,0 +170779596694,214,0 +170779596742,214,0 +170779596790,214,0 +170779596838,214,0 +170779596886,215,0 +170779596935,215,0 +170779596983,215,0 +170779597031,215,0 +170779597080,215,0 +170779597128,214,0 +170779597178,214,0 +170779597227,214,0 +170779597277,214,0 +170779597325,214,0 +170779597373,214,0 +170779597421,214,0 +170779597469,214,0 +170779597517,214,0 +170779597564,214,0 +170779597612,215,0 +170779597660,215,0 +170779597708,215,0 +170779597756,215,0 +170779597804,215,0 +170779597852,215,0 +170779597899,215,0 +170779597949,214,0 +170779597997,214,0 +170779598045,214,0 +170779598094,215,0 +170779598142,215,0 +170779598192,215,0 +170779598239,214,0 +170779598289,214,0 +170779598337,215,0 +170779598386,215,0 +170779598434,215,0 +170779598484,215,0 +170779598533,215,0 +170779598583,215,0 +170779598632,215,0 +170779598682,215,0 +170779598730,215,0 +170779598779,214,0 +170779598827,215,0 +170779598875,215,0 +170779598923,215,0 +170779598971,215,0 +170779599019,215,0 +170779599068,215,0 +170779599118,215,0 +170779599166,215,0 +170779599214,215,0 +170779599261,215,0 +170779599309,215,0 +170779599357,215,0 +170779599405,215,0 +170779599454,215,0 +170779599502,215,0 +170779599550,214,0 +170779599598,214,0 +170779599648,214,0 +170779599697,214,0 +170779599745,214,0 +170779599794,214,0 +170779599844,215,0 +170779599892,215,0 +170779599941,215,0 +170779599991,215,0 +170779600040,215,0 +170779600088,215,0 +170779600138,215,0 +170779600188,215,0 +170779600236,215,0 +170779600285,215,0 +170779600333,215,0 +170779600383,214,0 +170779600430,214,0 +170779600480,214,0 +170779600528,214,0 +170779600577,214,0 +170779600625,214,0 +170779600673,214,0 +170779600721,214,0 +170779600771,215,0 +170779600820,215,0 +170779600868,215,0 +170779600918,215,0 +170779600966,215,0 +170779601014,215,0 +170779601062,215,0 +170779601110,215,0 +170779601158,215,0 +170779601207,214,0 +170779601256,214,0 +170779601304,214,0 +170779601354,214,0 +170779601403,214,0 +170779601453,214,0 +170779601501,214,0 +170779601549,215,0 +170779601596,214,0 +170779601646,214,0 +170779601694,214,0 +170779601742,214,0 +170779601790,215,0 +170779601839,215,0 +170779601887,215,0 +170779601935,214,0 +170779601985,214,0 +170779602034,214,0 +170779602082,213,0 +170779602132,214,0 +170779602179,214,0 +170779602227,214,0 +170779602277,214,0 +170779602325,214,0 +170779602373,214,0 +170779602421,214,0 +170779602470,214,0 +170779602518,214,0 +170779602566,215,0 +170779602614,215,0 +170779602662,215,0 +170779602710,215,0 +170779602758,215,0 +170779602806,215,0 +170779602854,213,0 +170779602902,214,0 +170779602952,214,0 +170779603001,214,0 +170779603049,214,0 +170779603097,214,0 +170779603145,214,0 +170779603193,214,0 +170779603241,214,0 +170779603289,214,0 +170779603337,215,0 +170779603384,215,0 +170779603432,215,0 +170779603480,215,0 +170779603530,215,0 +170779603578,215,0 +170779603626,215,0 +170779603674,214,0 +170779603723,214,0 +170779603771,214,0 +170779603819,214,0 +170779603867,214,0 +170779603915,214,0 +170779603963,214,0 +170779604012,214,0 +170779604060,214,0 +170779604108,214,0 +170779604158,214,0 +170779604205,214,0 +170779604253,215,0 +170779604301,215,0 +170779604349,215,0 +170779604397,215,0 +170779604446,214,0 +170779604494,214,0 +170779604542,214,0 +170779604590,214,0 +170779604638,214,0 +170779604686,214,0 +170779604735,214,0 +170779604783,214,0 +170779604833,214,0 +170779604881,215,0 +170779604929,215,0 +170779604978,215,0 +170779605026,215,0 +170779605074,215,0 +170779605122,215,0 +170779605172,215,0 +170779605219,215,0 +170779605267,214,0 +170779605317,213,0 +170779605366,213,0 +170779605416,214,0 +170779605464,214,0 +170779605513,214,0 +170779605561,214,0 +170779605609,214,0 +170779605657,214,0 +170779605705,214,0 +170779605753,214,0 +170779605801,215,0 +170779605849,215,0 +170779605897,215,0 +170779605945,215,0 +170779605994,215,0 +170779606042,215,0 +170779606090,214,0 +170779606138,214,0 +170779606185,214,0 +170779606233,214,0 +170779606281,214,0 +170779606331,214,0 +170779606379,214,0 +170779606426,214,0 +170779606474,214,0 +170779606522,214,0 +170779606572,215,0 +170779606621,215,0 +170779606669,215,0 +170779606717,215,0 +170779606767,215,0 +170779606816,214,0 +170779606866,214,0 +170779606913,214,0 +170779606961,214,0 +170779607009,214,0 +170779607057,214,0 +170779607105,214,0 +170779607155,214,0 +170779607203,214,0 +170779607252,214,0 +170779607300,214,0 +170779607349,215,0 +170779607397,215,0 +170779607447,214,0 +170779607496,215,0 +170779607544,215,0 +170779607594,215,0 +170779607642,215,0 +170779607691,215,0 +170779607739,214,0 +170779607787,214,0 +170779607837,214,0 +170779607885,214,0 +170779607932,214,0 +170779607982,214,0 +170779608032,214,0 +170779608081,214,0 +170779608129,214,0 +170779608177,215,0 +170779608224,215,0 +170779608272,215,0 +170779608320,215,0 +170779608368,215,0 +170779608416,215,0 +170779608465,215,0 +170779608512,215,0 +170779608560,214,0 +170779608608,214,0 +170779608656,214,0 +170779608704,214,0 +170779608752,214,0 +170779608799,214,0 +170779608847,214,0 +170779608895,214,0 +170779608943,214,0 +170779608993,214,0 +170779609040,215,0 +170779609088,215,0 +170779609136,215,0 +170779609184,215,0 +170779609232,214,0 +170779609280,214,0 +170779609328,214,0 +170779609376,214,0 +170779609424,214,0 +170779609473,214,0 +170779609521,214,0 +170779609569,214,0 +170779609617,214,0 +170779609665,214,0 +170779609713,214,0 +170779609762,214,0 +170779609811,215,0 +170779609859,215,0 +170779609909,215,0 +170779609958,215,0 +170779610008,215,0 +170779610056,215,0 +170779610105,214,0 +170779610153,214,0 +170779610203,214,0 +170779610250,214,0 +170779610300,214,0 +170779610349,214,0 +170779610397,214,0 +170779610445,215,0 +170779610493,215,0 +170779610541,215,0 +170779610589,215,0 +170779610638,215,0 +170779610686,215,0 +170779610736,215,0 +170779610784,215,0 +170779610832,215,0 +170779610881,215,0 +170779610930,215,0 +170779610978,215,0 +170779611026,215,0 +170779611074,215,0 +170779611122,215,0 +170779611170,215,0 +170779611218,215,0 +170779611266,215,0 +170779611313,215,0 +170779611361,215,0 +170779611409,215,0 +170779611459,215,0 +170779611506,215,0 +170779611554,215,0 +170779611602,215,0 +170779611650,215,0 +170779611698,215,0 +170779611747,215,0 +170779611795,215,0 +170779611845,215,0 +170779611893,215,0 +170779611940,215,0 +170779611988,215,0 +170779612038,215,0 +170779612085,215,0 +170779612133,215,0 +170779612183,215,0 +170779612231,215,0 +170779612279,215,0 +170779612328,215,0 +170779612376,215,0 +170779612426,215,0 +170779612475,215,0 +170779612523,214,0 +170779612571,214,0 +170779612619,214,0 +170779612667,214,0 +170779612715,214,0 +170779612762,214,0 +170779612810,215,0 +170779612860,215,0 +170779612909,215,0 +170779612957,215,0 +170779613005,215,0 +170779613052,215,0 +170779613102,215,0 +170779613150,215,0 +170779613199,215,0 +170779613247,215,0 +170779613297,215,0 +170779613345,214,0 +170779613393,214,0 +170779613440,214,0 +170779613488,214,0 +170779613538,214,0 +170779613587,214,0 +170779613636,214,0 +170779613684,214,0 +170779613732,214,0 +170779613782,215,0 +170779613831,215,0 +170779613879,215,0 +170779613927,214,0 +170779613975,215,0 +170779614023,215,0 +170779614071,215,0 +170779614120,215,0 +170779614170,214,0 +170779614217,214,0 +170779614265,214,0 +170779614315,214,0 +170779614364,214,0 +170779614412,214,0 +170779614460,214,0 +170779614508,214,0 +170779614556,214,0 +170779614604,215,0 +170779614653,215,0 +170779614701,214,0 +170779614749,215,0 +170779614797,215,0 +170779614845,215,0 +170779614894,215,0 +170779614942,214,0 +170779614992,214,0 +170779615039,214,0 +170779615089,214,0 +170779615137,214,0 +170779615185,214,0 +170779615233,215,0 +170779615282,215,0 +170779615330,215,0 +170779615380,215,0 +170779615428,215,0 +170779615476,215,0 +170779615525,215,0 +170779615575,215,0 +170779615622,215,0 +170779615670,215,0 +170779615718,215,0 +170779615766,214,0 +170779615814,214,0 +170779615863,214,0 +170779615911,214,0 +170779615959,214,0 +170779616009,214,0 +170779616058,215,0 +170779616108,214,0 +170779616156,215,0 +170779616205,215,0 +170779616253,215,0 +170779616301,215,0 +170779616349,215,0 +170779616397,215,0 +170779616446,215,0 +170779616494,215,0 +170779616542,214,0 +170779616590,214,0 +170779616640,214,0 +170779616687,214,0 +170779616735,214,0 +170779616785,214,0 +170779616834,214,0 +170779616882,214,0 +170779616930,214,0 +170779616978,214,0 +170779617026,214,0 +170779617074,214,0 +170779617122,214,0 +170779617171,215,0 +170779617221,214,0 +170779617270,215,0 +170779617320,215,0 +170779617369,214,0 +170779617419,214,0 +170779617467,214,0 +170779617516,214,0 +170779617564,214,0 +170779617612,214,0 +170779617661,214,0 +170779617709,214,0 +170779617757,214,0 +170779617805,214,0 +170779617853,215,0 +170779617901,214,0 +170779617948,215,0 +170779617998,215,0 +170779618047,215,0 +170779618095,215,0 +170779618143,214,0 +170779618191,214,0 +170779618239,214,0 +170779618287,214,0 +170779618336,214,0 +170779618384,214,0 +170779618434,214,0 +170779618483,214,0 +170779618533,214,0 +170779618581,214,0 +170779618630,215,0 +170779618678,214,0 +170779618726,215,0 +170779618775,215,0 +170779618825,215,0 +170779618873,214,0 +170779618920,214,0 +170779618968,214,0 +170779619018,214,0 +170779619066,214,0 +170779619115,214,0 +170779619165,214,0 +170779619213,214,0 +170779619260,214,0 +170779619310,214,0 +170779619358,214,0 +170779619407,214,0 +170779619455,214,0 +170779619505,214,0 +170779619554,214,0 +170779619604,215,0 +170779619651,215,0 +170779619701,214,0 +170779619749,214,0 +170779619798,214,0 +170779619846,214,0 +170779619894,214,0 +170779619944,214,0 +170779619992,214,0 +170779620039,214,0 +170779620089,214,0 +170779620137,214,0 +170779620185,214,0 +170779620233,214,0 +170779620280,215,0 +170779620328,215,0 +170779620376,215,0 +170779620424,215,0 +170779620472,214,0 +170779620520,214,0 +170779620568,214,0 +170779620615,214,0 +170779620665,214,0 +170779620713,214,0 +170779620761,214,0 +170779620809,214,0 +170779620857,215,0 +170779620904,214,0 +170779620954,215,0 +170779621002,215,0 +170779621050,215,0 +170779621098,215,0 +170779621146,215,0 +170779621194,215,0 +170779621242,215,0 +170779621289,214,0 +170779621337,214,0 +170779621387,214,0 +170779621435,214,0 +170779621483,214,0 +170779621530,214,0 +170779621578,214,0 +170779621628,214,0 +170779621677,214,0 +170779621725,215,0 +170779621773,215,0 +170779621822,215,0 +170779621870,215,0 +170779621920,215,0 +170779621967,215,0 +170779622015,215,0 +170779622063,215,0 +170779622111,214,0 +170779622159,214,0 +170779622207,214,0 +170779622256,214,0 +170779622306,214,0 +170779622354,214,0 +170779622401,214,0 +170779622451,214,0 +170779622499,214,0 +170779622547,214,0 +170779622595,214,0 +170779622644,215,0 +170779622694,215,0 +170779622742,215,0 +170779622790,215,0 +170779622839,215,0 +170779622887,215,0 +170779622936,214,0 +170779622984,214,0 +170779623034,215,0 +170779623082,214,0 +170779623131,214,0 +170779623179,215,0 +170779623227,215,0 +170779623276,215,0 +170779623326,215,0 +170779623375,215,0 +170779623425,215,0 +170779623474,215,0 +170779623522,215,0 +170779623570,215,0 +170779623618,215,0 +170779623667,215,0 +170779623715,215,0 +170779623765,215,0 +170779623812,215,0 +170779623862,214,0 +170779623910,215,0 +170779623958,215,0 +170779624006,215,0 +170779624055,215,0 +170779624104,215,0 +170779624152,215,0 +170779624202,215,0 +170779624250,215,0 +170779624298,215,0 +170779624347,215,0 +170779624397,215,0 +170779624445,215,0 +170779624494,215,0 +170779624542,215,0 +170779624592,214,0 +170779624639,214,0 +170779624687,214,0 +170779624735,214,0 +170779624785,214,0 +170779624833,214,0 +170779624881,215,0 +170779624928,215,0 +170779624976,215,0 +170779625024,215,0 +170779625072,215,0 +170779625120,215,0 +170779625168,215,0 +170779625216,215,0 +170779625264,215,0 +170779625313,215,0 +170779625361,214,0 +170779625409,214,0 +170779625459,214,0 +170779625507,214,0 +170779625555,214,0 +170779625604,214,0 +170779625652,214,0 +170779625701,214,0 +170779625751,214,0 +170779625799,214,0 +170779625848,215,0 +170779625896,215,0 +170779625946,215,0 +170779625994,215,0 +170779626043,215,0 +170779626091,215,0 +170779626139,214,0 +170779626187,214,0 +170779626236,214,0 +170779626286,214,0 +170779626334,214,0 +170779626383,214,0 +170779626431,214,0 +170779626480,214,0 +170779626528,214,0 +170779626578,214,0 +170779626627,215,0 +170779626675,215,0 +170779626725,215,0 +170779626774,215,0 +170779626824,215,0 +170779626872,214,0 +170779626919,214,0 +170779626967,214,0 +170779627015,214,0 +170779627063,214,0 +170779627113,214,0 +170779627160,214,0 +170779627208,214,0 +170779627256,214,0 +170779627304,214,0 +170779627352,215,0 +170779627400,215,0 +170779627448,215,0 +170779627496,215,0 +170779627545,215,0 +170779627593,215,0 +170779627641,215,0 +170779627691,215,0 +170779627739,214,0 +170779627786,214,0 +170779627834,214,0 +170779627884,214,0 +170779627932,214,0 +170779627980,214,0 +170779628029,214,0 +170779628079,214,0 +170779628126,215,0 +170779628176,215,0 +170779628224,215,0 +170779628273,215,0 +170779628321,215,0 +170779628369,215,0 +170779628417,215,0 +170779628465,215,0 +170779628513,215,0 +170779628561,214,0 +170779628609,214,0 +170779628657,214,0 +170779628704,214,0 +170779628752,214,0 +170779628800,214,0 +170779628848,214,0 +170779628896,214,0 +170779628944,214,0 +170779628992,214,0 +170779629041,215,0 +170779629089,215,0 +170779629139,215,0 +170779629188,215,0 +170779629236,215,0 +170779629284,215,0 +170779629332,215,0 +170779629380,214,0 +170779629428,214,0 +170779629476,214,0 +170779629524,214,0 +170779629574,214,0 +170779629621,214,0 +170779629669,214,0 +170779629719,214,0 +170779629768,215,0 +170779629816,215,0 +170779629864,215,0 +170779629912,215,0 +170779629960,215,0 +170779630008,215,0 +170779630057,215,0 +170779630107,215,0 +170779630156,215,0 +170779630205,214,0 +170779630253,214,0 +170779630303,214,0 +170779630351,214,0 +170779630400,214,0 +170779630448,214,0 +170779630496,214,0 +170779630545,215,0 +170779630593,215,0 +170779630641,215,0 +170779630691,215,0 +170779630740,215,0 +170779630788,215,0 +170779630836,215,0 +170779630884,215,0 +170779630932,215,0 +170779630981,214,0 +170779631029,214,0 +170779631077,214,0 +170779631125,214,0 +170779631173,214,0 +170779631221,214,0 +170779631269,215,0 +170779631316,215,0 +170779631364,215,0 +170779631412,215,0 +170779631460,215,0 +170779631508,215,0 +170779631557,215,0 +170779631607,215,0 +170779631656,215,0 +170779631706,215,0 +170779631754,214,0 +170779631803,214,0 +170779631851,214,0 +170779631899,214,0 +170779631947,214,0 +170779631997,214,0 +170779632044,215,0 +170779632092,215,0 +170779632140,214,0 +170779632188,215,0 +170779632238,215,0 +170779632287,215,0 +170779632337,215,0 +170779632384,215,0 +170779632432,215,0 +170779632480,215,0 +170779632528,215,0 +170779632576,214,0 +170779632624,214,0 +170779632672,214,0 +170779632722,214,0 +170779632771,214,0 +170779632819,214,0 +170779632867,214,0 +170779632916,214,0 +170779632964,214,0 +170779633012,215,0 +170779633060,215,0 +170779633108,215,0 +170779633156,215,0 +170779633205,215,0 +170779633253,215,0 +170779633301,215,0 +170779633351,215,0 +170779633400,214,0 +170779633448,213,0 +170779633496,214,0 +170779633544,214,0 +170779633593,214,0 +170779633643,214,0 +170779633692,214,0 +170779633740,214,0 +170779633788,214,0 +170779633836,215,0 +170779633886,214,0 +170779633934,215,0 +170779633982,214,0 +170779634029,215,0 +170779634077,215,0 +170779634125,215,0 +170779634173,214,0 +170779634221,214,0 +170779634271,214,0 +170779634319,214,0 +170779634368,214,0 +170779634418,214,0 +170779634465,214,0 +170779634513,214,0 +170779634561,214,0 +170779634609,214,0 +170779634659,214,0 +170779634707,214,0 +170779634756,214,0 +170779634806,214,0 +170779634853,215,0 +170779634901,215,0 +170779634951,215,0 +170779634998,214,0 +170779635046,214,0 +170779635094,214,0 +170779635142,214,0 +170779635192,214,0 +170779635241,214,0 +170779635289,214,0 +170779635337,215,0 +170779635385,215,0 +170779635434,215,0 +170779635482,215,0 +170779635530,215,0 +170779635578,215,0 +170779635627,215,0 +170779635677,215,0 +170779635726,215,0 +170779635774,214,0 +170779635822,214,0 +170779635872,215,0 +170779635920,215,0 +170779635968,214,0 +170779636016,215,0 +170779636064,215,0 +170779636111,215,0 +170779636159,215,0 +170779636209,215,0 +170779636257,215,0 +170779636304,215,0 +170779636352,215,0 +170779636400,215,0 +170779636448,215,0 +170779636495,215,0 +170779636543,215,0 +170779636591,214,0 +170779636639,214,0 +170779636687,214,0 +170779636734,214,0 +170779636782,214,0 +170779636830,214,0 +170779636878,214,0 +170779636926,214,0 +170779636974,215,0 +170779637023,215,0 +170779637071,215,0 +170779637121,215,0 +170779637170,215,0 +170779637218,215,0 +170779637266,215,0 +170779637314,215,0 +170779637363,215,0 +170779637411,214,0 +170779637461,214,0 +170779637510,214,0 +170779637558,214,0 +170779637606,214,0 +170779637654,214,0 +170779637703,214,0 +170779637751,214,0 +170779637799,214,0 +170779637847,214,0 +170779637894,215,0 +170779637942,215,0 +170779637990,215,0 +170779638038,215,0 +170779638086,215,0 +170779638135,216,0 +170779638183,215,0 +170779638231,214,0 +170779638278,214,0 +170779638326,214,0 +170779638376,214,0 +170779638424,214,0 +170779638473,214,0 +170779638521,214,0 +170779638569,214,0 +170779638617,215,0 +170779638664,215,0 +170779638712,215,0 +170779638760,215,0 +170779638808,215,0 +170779638856,215,0 +170779638903,215,0 +170779638951,215,0 +170779638999,214,0 +170779639047,214,0 +170779639095,214,0 +170779639143,214,0 +170779639191,214,0 +170779639238,214,0 +170779639286,215,0 +170779639334,214,0 +170779639382,215,0 +170779639430,215,0 +170779639478,215,0 +170779639525,215,0 +170779639573,215,0 +170779639621,215,0 +170779639669,215,0 +170779639717,215,0 +170779639765,215,0 +170779639814,214,0 +170779639862,214,0 +170779639910,214,0 +170779639958,214,0 +170779640008,215,0 +170779640056,214,0 +170779640105,215,0 +170779640155,215,0 +170779640204,215,0 +170779640252,215,0 +170779640300,215,0 +170779640348,215,0 +170779640396,215,0 +170779640444,215,0 +170779640492,215,0 +170779640540,215,0 +170779640588,215,0 +170779640637,214,0 +170779640685,214,0 +170779640733,214,0 +170779640782,215,0 +170779640830,214,0 +170779640878,215,0 +170779640926,215,0 +170779640974,215,0 +170779641023,215,0 +170779641071,215,0 +170779641119,215,0 +170779641167,215,0 +170779641216,215,0 +170779641264,215,0 +170779641312,215,0 +170779641360,215,0 +170779641407,214,0 +170779641455,214,0 +170779641503,214,0 +170779641551,214,0 +170779641599,214,0 +170779641647,215,0 +170779641694,214,0 +170779641744,215,0 +170779641793,215,0 +170779641841,215,0 +170779641889,215,0 +170779641937,215,0 +170779641986,215,0 +170779642034,215,0 +170779642082,215,0 +170779642130,215,0 +170779642178,215,0 +170779642225,214,0 +170779642273,214,0 +170779642321,214,0 +170779642369,214,0 +170779642417,214,0 +170779642465,214,0 +170779642514,214,0 +170779642564,214,0 +170779642611,215,0 +170779642659,215,0 +170779642709,215,0 +170779642756,214,0 +170779642804,215,0 +170779642852,215,0 +170779642900,215,0 +170779642948,215,0 +170779642996,214,0 +170779643044,214,0 +170779643092,214,0 +170779643141,214,0 +170779643189,214,0 +170779643238,215,0 +170779643288,215,0 +170779643336,215,0 +170779643384,215,0 +170779643432,215,0 +170779643481,215,0 +170779643529,215,0 +170779643579,215,0 +170779643626,215,0 +170779643674,215,0 +170779643724,215,0 +170779643772,215,0 +170779643820,214,0 +170779643869,214,0 +170779643919,214,0 +170779643967,214,0 +170779644015,214,0 +170779644062,215,0 +170779644112,215,0 +170779644160,215,0 +170779644207,215,0 +170779644255,215,0 +170779644303,215,0 +170779644351,215,0 +170779644399,215,0 +170779644446,215,0 +170779644496,215,0 +170779644544,215,0 +170779644592,215,0 +170779644641,214,0 +170779644689,214,0 +170779644739,214,0 +170779644786,214,0 +170779644834,214,0 +170779644884,214,0 +170779644932,214,0 +170779644981,214,0 +170779645029,214,0 +170779645078,215,0 +170779645126,215,0 +170779645176,215,0 +170779645224,215,0 +170779645272,215,0 +170779645321,215,0 +170779645369,215,0 +170779645417,214,0 +170779645465,214,0 +170779645513,214,0 +170779645561,214,0 +170779645609,214,0 +170779645657,214,0 +170779645705,214,0 +170779645754,214,0 +170779645804,214,0 +170779645851,214,0 +170779645899,214,0 +170779645947,215,0 +170779645995,215,0 +170779646045,215,0 +170779646094,215,0 +170779646143,215,0 +170779646191,215,0 +170779646241,214,0 +170779646290,214,0 +170779646338,214,0 +170779646386,214,0 +170779646434,214,0 +170779646482,214,0 +170779646531,214,0 +170779646581,214,0 +170779646629,214,0 +170779646677,214,0 +170779646726,214,0 +170779646774,214,0 +170779646823,215,0 +170779646871,215,0 +170779646921,215,0 +170779646970,214,0 +170779647020,214,0 +170779647069,214,0 +170779647117,214,0 +170779647167,214,0 +170779647216,214,0 +170779647264,214,0 +170779647312,214,0 +170779647360,214,0 +170779647409,214,0 +170779647459,214,0 +170779647506,215,0 +170779647554,215,0 +170779647602,215,0 +170779647652,215,0 +170779647701,215,0 +170779647749,215,0 +170779647798,215,0 +170779647846,214,0 +170779647894,214,0 +170779647944,215,0 +170779647992,215,0 +170779648040,215,0 +170779648088,215,0 +170779648135,215,0 +170779648183,215,0 +170779648231,215,0 +170779648281,215,0 +170779648330,215,0 +170779648378,215,0 +170779648427,215,0 +170779648477,215,0 +170779648526,215,0 +170779648574,215,0 +170779648624,214,0 +170779648673,215,0 +170779648721,215,0 +170779648769,215,0 +170779648819,215,0 +170779648868,215,0 +170779648916,215,0 +170779648964,215,0 +170779649012,215,0 +170779649061,215,0 +170779649111,215,0 +170779649159,215,0 +170779649208,215,0 +170779649256,215,0 +170779649304,215,0 +170779649354,215,0 +170779649401,215,0 +170779649451,214,0 +170779649499,215,0 +170779649548,214,0 +170779649596,214,0 +170779649644,215,0 +170779649692,215,0 +170779649741,215,0 +170779649789,215,0 +170779649837,215,0 +170779649887,215,0 +170779649936,215,0 +170779649984,215,0 +170779650032,215,0 +170779650080,215,0 +170779650128,215,0 +170779650177,215,0 +170779650227,214,0 +170779650275,214,0 +170779650324,214,0 +170779650374,214,0 +170779650422,214,0 +170779650471,215,0 +170779650519,215,0 +170779650567,215,0 +170779650615,215,0 +170779650664,215,0 +170779650712,215,0 +170779650760,215,0 +170779650808,215,0 +170779650856,215,0 +170779650904,215,0 +170779650952,215,0 +170779651000,215,0 +170779651049,214,0 +170779651097,214,0 +170779651146,214,0 +170779651196,214,0 +170779651244,214,0 +170779651292,215,0 +170779651341,215,0 +170779651391,215,0 +170779651439,215,0 +170779651488,215,0 +170779651536,215,0 +170779651584,215,0 +170779651632,215,0 +170779651680,215,0 +170779651728,215,0 +170779651776,215,0 +170779651824,214,0 +170779651873,214,0 +170779651921,214,0 +170779651969,214,0 +170779652017,214,0 +170779652065,215,0 +170779652112,215,0 +170779652160,215,0 +170779652210,215,0 +170779652258,215,0 +170779652306,215,0 +170779652355,215,0 +170779652405,215,0 +170779652452,215,0 +170779652500,215,0 +170779652548,215,0 +170779652598,215,0 +170779652647,214,0 +170779652695,214,0 +170779652745,214,0 +170779652793,214,0 +170779652841,214,0 +170779652888,214,0 +170779652936,214,0 +170779652984,214,0 +170779653032,215,0 +170779653080,215,0 +170779653128,215,0 +170779653175,215,0 +170779653223,215,0 +170779653271,215,0 +170779653319,215,0 +170779653367,215,0 +170779653414,215,0 +170779653462,213,0 +170779653510,214,0 +170779653558,214,0 +170779653606,214,0 +170779653654,214,0 +170779653701,214,0 +170779653751,214,0 +170779653800,214,0 +170779653848,214,0 +170779653898,214,0 +170779653947,215,0 +170779653995,215,0 +170779654043,215,0 +170779654093,215,0 +170779654141,215,0 +170779654190,215,0 +170779654238,214,0 +170779654287,213,0 +170779654335,214,0 +170779654385,214,0 +170779654434,214,0 +170779654484,214,0 +170779654532,214,0 +170779654580,214,0 +170779654627,214,0 +170779654677,214,0 +170779654725,214,0 +170779654774,215,0 +170779654824,215,0 +170779654873,215,0 +170779654923,215,0 +170779654971,215,0 +170779655019,214,0 +170779655066,213,0 +170779655114,213,0 +170779655162,214,0 +170779655210,214,0 +170779655258,214,0 +170779655306,214,0 +170779655354,214,0 +170779655403,214,0 +170779655451,214,0 +170779655499,215,0 +170779655548,215,0 +170779655596,215,0 +170779655644,215,0 +170779655692,215,0 +170779655740,215,0 +170779655788,215,0 +170779655836,214,0 +170779655884,214,0 +170779655932,214,0 +170779655980,214,0 +170779656027,214,0 +170779656077,214,0 +170779656125,214,0 +170779656173,214,0 +170779656220,214,0 +170779656268,214,0 +170779656316,214,0 +170779656364,215,0 +170779656412,215,0 +170779656460,215,0 +170779656508,215,0 +170779656556,215,0 +170779656604,215,0 +170779656653,214,0 +170779656701,213,0 +170779656749,214,0 +170779656799,214,0 +170779656846,214,0 +170779656896,214,0 +170779656944,214,0 +170779656993,214,0 +170779657041,214,0 +170779657089,214,0 +170779657137,214,0 +170779657185,214,0 +170779657233,215,0 +170779657280,215,0 +170779657328,215,0 +170779657376,215,0 +170779657424,215,0 +170779657472,214,0 +170779657520,214,0 +170779657568,214,0 +170779657616,214,0 +170779657664,214,0 +170779657713,214,0 +170779657761,214,0 +170779657809,214,0 +170779657856,214,0 +170779657904,214,0 +170779657952,214,0 +170779658000,215,0 +170779658048,215,0 +170779658096,215,0 +170779658143,215,0 +170779658191,215,0 +170779658239,214,0 +170779658287,214,0 +170779658337,213,0 +170779658385,214,0 +170779658432,214,0 +170779658480,214,0 +170779658528,214,0 +170779658578,214,0 +170779658627,214,0 +170779658675,214,0 +170779658724,214,0 +170779658772,215,0 +170779658820,214,0 +170779658868,215,0 +170779658916,215,0 +170779658964,214,0 +170779659012,215,0 +170779659061,214,0 +170779659109,214,0 +170779659159,214,0 +170779659208,214,0 +170779659258,214,0 +170779659306,214,0 +170779659354,215,0 +170779659403,214,0 +170779659451,215,0 +170779659501,215,0 +170779659548,215,0 +170779659596,215,0 +170779659644,215,0 +170779659692,215,0 +170779659742,215,0 +170779659791,215,0 +170779659839,215,0 +170779659889,215,0 +170779659936,215,0 +170779659986,215,0 +170779660035,215,0 +170779660083,215,0 +170779660131,215,0 +170779660179,215,0 +170779660227,215,0 +170779660275,215,0 +170779660324,215,0 +170779660374,215,0 +170779660422,215,0 +170779660471,215,0 +170779660519,215,0 +170779660567,215,0 +170779660616,215,0 +170779660666,215,0 +170779660714,215,0 +170779660763,215,0 +170779660813,215,0 +170779660861,215,0 +170779660908,215,0 +170779660956,215,0 +170779661006,215,0 +170779661054,215,0 +170779661103,215,0 +170779661153,215,0 +170779661200,215,0 +170779661250,215,0 +170779661299,215,0 +170779661349,215,0 +170779661398,215,0 +170779661448,215,0 +170779661496,215,0 +170779661544,215,0 +170779661593,215,0 +170779661641,215,0 +170779661690,215,0 +170779661740,215,0 +170779661789,215,0 +170779661837,215,0 +170779661885,215,0 +170779661933,215,0 +170779661981,215,0 +170779662030,215,0 +170779662080,215,0 +170779662130,215,0 +170779662177,215,0 +170779662227,214,0 +170779662275,214,0 +170779662323,214,0 +170779662372,214,0 +170779662420,214,0 +170779662468,214,0 +170779662518,214,0 +170779662567,214,0 +170779662617,214,0 +170779662665,214,0 +170779662713,215,0 +170779662761,215,0 +170779662810,215,0 +170779662858,215,0 +170779662908,215,0 +170779662955,215,0 +170779663003,215,0 +170779663051,214,0 +170779663099,214,0 +170779663149,214,0 +170779663197,214,0 +170779663245,214,0 +170779663294,214,0 +170779663342,214,0 +170779663392,214,0 +170779663439,214,0 +170779663489,215,0 +170779663537,215,0 +170779663586,215,0 +170779663634,215,0 +170779663684,215,0 +170779663732,214,0 +170779663780,215,0 +170779663829,214,0 +170779663877,214,0 +170779663925,214,0 +170779663973,214,0 +170779664021,214,0 +170779664070,214,0 +170779664118,214,0 +170779664168,214,0 +170779664217,214,0 +170779664267,214,0 +170779664315,214,0 +170779664362,215,0 +170779664410,215,0 +170779664460,215,0 +170779664509,215,0 +170779664557,215,0 +170779664607,215,0 +170779664656,214,0 +170779664704,213,0 +170779664752,214,0 +170779664802,214,0 +170779664850,214,0 +170779664898,214,0 +170779664947,214,0 +170779664997,214,0 +170779665045,214,0 +170779665092,214,0 +170779665140,215,0 +170779665190,214,0 +170779665238,215,0 +170779665286,215,0 +170779665335,215,0 +170779665383,214,0 +170779665431,214,0 +170779665481,214,0 +170779665530,214,0 +170779665579,214,0 +170779665629,214,0 +170779665677,214,0 +170779665725,214,0 +170779665774,214,0 +170779665824,214,0 +170779665873,215,0 +170779665921,215,0 +170779665969,215,0 +170779666017,215,0 +170779666065,215,0 +170779666113,215,0 +170779666161,215,0 +170779666210,214,0 +170779666258,214,0 +170779666308,214,0 +170779666355,214,0 +170779666403,214,0 +170779666451,214,0 +170779666499,214,0 +170779666547,214,0 +170779666595,214,0 +170779666643,214,0 +170779666692,214,0 +170779666741,215,0 +170779666789,215,0 +170779666837,215,0 +170779666885,215,0 +170779666933,215,0 +170779666981,215,0 +170779667030,215,0 +170779667078,214,0 +170779667126,214,0 +170779667174,214,0 +170779667222,214,0 +170779667270,214,0 +170779667318,214,0 +170779667365,214,0 +170779667415,214,0 +170779667464,214,0 +170779667514,215,0 +170779667563,215,0 +170779667611,215,0 +170779667659,215,0 +170779667707,215,0 +170779667756,215,0 +170779667804,214,0 +170779667852,214,0 +170779667901,214,0 +170779667949,214,0 +170779667997,214,0 +170779668046,214,0 +170779668094,214,0 +170779668144,214,0 +170779668192,214,0 +170779668241,214,0 +170779668289,214,0 +170779668337,215,0 +170779668385,215,0 +170779668433,214,0 +170779668481,214,0 +170779668529,215,0 +170779668578,214,0 +170779668626,214,0 +170779668674,214,0 +170779668722,214,0 +170779668772,214,0 +170779668821,214,0 +170779668869,214,0 +170779668917,214,0 +170779668965,214,0 +170779669013,214,0 +170779669061,215,0 +170779669110,214,0 +170779669160,215,0 +170779669208,215,0 +170779669257,215,0 +170779669305,215,0 +170779669353,215,0 +170779669403,215,0 +170779669450,214,0 +170779669500,214,0 +170779669548,214,0 +170779669597,214,0 +170779669647,214,0 +170779669696,214,0 +170779669744,214,0 +170779669794,214,0 +170779669842,215,0 +170779669891,215,0 +170779669939,215,0 +170779669989,215,0 +170779670038,215,0 +170779670086,215,0 +170779670136,215,0 +170779670185,215,0 +170779670233,214,0 +170779670281,214,0 +170779670329,214,0 +170779670377,214,0 +170779670425,214,0 +170779670473,214,0 +170779670522,215,0 +170779670572,214,0 +170779670622,215,0 +170779670671,215,0 +170779670719,215,0 +170779670769,215,0 +170779670816,215,0 +170779670864,215,0 +170779670912,215,0 +170779670960,215,0 +170779671008,214,0 +170779671056,214,0 +170779671104,214,0 +170779671152,214,0 +170779671201,214,0 +170779671249,214,0 +170779671297,215,0 +170779671345,214,0 +170779671395,215,0 +170779671443,215,0 +170779671492,215,0 +170779671542,215,0 +170779671589,215,0 +170779671639,215,0 +170779671689,215,0 +170779671736,215,0 +170779671784,215,0 +170779671834,215,0 +170779671883,214,0 +170779671931,214,0 +170779671981,214,0 +170779672029,214,0 +170779672078,214,0 +170779672128,214,0 +170779672177,215,0 +170779672227,215,0 +170779672274,215,0 +170779672322,215,0 +170779672370,215,0 +170779672418,215,0 +170779672466,215,0 +170779672514,215,0 +170779672561,215,0 +170779672609,215,0 +170779672657,214,0 +170779672705,214,0 +170779672754,214,0 +170779672802,214,0 +170779672850,214,0 +170779672898,215,0 +170779672946,214,0 +170779672993,215,0 +170779673041,215,0 +170779673089,215,0 +170779673137,215,0 +170779673185,215,0 +170779673233,215,0 +170779673281,215,0 +170779673330,215,0 +170779673380,215,0 +170779673427,214,0 +170779673475,214,0 +170779673523,214,0 +170779673571,214,0 +170779673619,214,0 +170779673668,214,0 +170779673716,214,0 +170779673764,215,0 +170779673812,215,0 +170779673860,215,0 +170779673908,215,0 +170779673955,215,0 +170779674003,215,0 +170779674051,215,0 +170779674101,215,0 +170779674149,215,0 +170779674196,215,0 +170779674244,214,0 +170779674292,214,0 +170779674340,214,0 +170779674388,214,0 +170779674436,214,0 +170779674484,214,0 +170779674532,214,0 +170779674581,214,0 +170779674629,214,0 +170779674677,214,0 +170779674725,215,0 +170779674772,215,0 +170779674822,215,0 +170779674870,215,0 +170779674918,215,0 +170779674966,215,0 +170779675015,214,0 +170779675063,214,0 +170779675111,214,0 +170779675158,214,0 +170779675206,214,0 +170779675254,214,0 +170779675302,214,0 +170779675350,214,0 +170779675399,215,0 +170779675449,214,0 +170779675497,215,0 +170779675545,215,0 +170779675594,215,0 +170779675642,215,0 +170779675690,215,0 +170779675739,215,0 +170779675787,215,0 +170779675835,215,0 +170779675882,214,0 +170779675930,214,0 +170779675980,214,0 +170779676028,214,0 +170779676076,214,0 +170779676125,214,0 +170779676173,214,0 +170779676223,215,0 +170779676270,215,0 +170779676320,214,0 +170779676369,215,0 +170779676417,215,0 +170779676465,215,0 +170779676514,215,0 +170779676562,215,0 +170779676612,215,0 +170779676661,214,0 +170779676709,214,0 +170779676757,214,0 +170779676806,214,0 +170779676854,214,0 +170779676904,214,0 +170779676953,214,0 +170779677003,215,0 +170779677050,214,0 +170779677098,215,0 +170779677148,215,0 +170779677196,215,0 +170779677244,215,0 +170779677293,215,0 +170779677343,215,0 +170779677390,215,0 +170779677438,214,0 +170779677488,214,0 +170779677536,214,0 +170779677584,214,0 +170779677632,214,0 +170779677681,214,0 +170779677729,214,0 +170779677777,214,0 +170779677826,214,0 +170779677874,215,0 +170779677922,215,0 +170779677970,215,0 +170779678018,215,0 +170779678066,214,0 +170779678115,215,0 +170779678163,214,0 +170779678211,215,0 +170779678259,214,0 +170779678308,213,0 +170779678356,214,0 +170779678406,214,0 +170779678455,214,0 +170779678505,214,0 +170779678553,214,0 +170779678602,214,0 +170779678651,214,0 +170779678699,214,0 +170779678747,214,0 +170779678795,214,0 +170779678843,214,0 +170779678891,214,0 +170779678939,214,0 +170779678987,214,0 +170779679036,215,0 +170779679084,213,0 +170779679132,213,0 +170779679180,214,0 +170779679230,214,0 +170779679277,214,0 +170779679325,214,0 +170779679373,214,0 +170779679421,214,0 +170779679469,214,0 +170779679517,214,0 +170779679565,214,0 +170779679613,214,0 +170779679661,214,0 +170779679710,215,0 +170779679758,215,0 +170779679806,215,0 +170779679854,215,0 +170779679902,215,0 +170779679950,215,0 +170779679998,215,0 diff --git a/laser_value/0213-14.csv b/laser_value/0213-14.csv new file mode 100644 index 0000000..c553932 --- /dev/null +++ b/laser_value/0213-14.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170779680048,215,0 +170779680096,215,0 +170779680144,214,0 +170779680193,215,0 +170779680241,215,0 +170779680289,214,0 +170779680338,214,0 +170779680388,214,0 +170779680436,214,0 +170779680484,214,0 +170779680533,214,0 +170779680581,214,0 +170779680631,214,0 +170779680678,215,0 +170779680726,215,0 +170779680776,215,0 +170779680824,215,0 +170779680872,215,0 +170779680920,215,0 +170779680969,215,0 +170779681017,215,0 +170779681065,214,0 +170779681113,214,0 +170779681161,214,0 +170779681210,214,0 +170779681258,214,0 +170779681306,214,0 +170779681354,214,0 +170779681402,215,0 +170779681449,215,0 +170779681499,215,0 +170779681548,215,0 +170779681596,215,0 +170779681644,215,0 +170779681693,215,0 +170779681741,215,0 +170779681791,215,0 +170779681839,214,0 +170779681887,214,0 +170779681936,214,0 +170779681986,214,0 +170779682035,214,0 +170779682083,214,0 +170779682131,214,0 +170779682180,214,0 +170779682228,214,0 +170779682278,215,0 +170779682327,215,0 +170779682377,215,0 +170779682426,215,0 +170779682476,215,0 +170779682524,215,0 +170779682572,215,0 +170779682621,215,0 +170779682671,214,0 +170779682719,214,0 +170779682766,214,0 +170779682814,214,0 +170779682862,214,0 +170779682910,214,0 +170779682958,214,0 +170779683007,214,0 +170779683055,214,0 +170779683105,215,0 +170779683154,215,0 +170779683202,215,0 +170779683250,214,0 +170779683298,214,0 +170779683347,215,0 +170779683395,214,0 +170779683443,215,0 +170779683492,214,0 +170779683540,214,0 +170779683588,214,0 +170779683636,214,0 +170779683684,214,0 +170779683732,214,0 +170779683782,214,0 +170779683831,214,0 +170779683879,214,0 +170779683928,215,0 +170779683978,214,0 +170779684027,215,0 +170779684077,215,0 +170779684126,215,0 +170779684176,215,0 +170779684224,214,0 +170779684271,214,0 +170779684321,214,0 +170779684369,214,0 +170779684417,214,0 +170779684464,214,0 +170779684512,214,0 +170779684560,215,0 +170779684608,214,0 +170779684656,214,0 +170779684703,215,0 +170779684751,215,0 +170779684799,215,0 +170779684847,215,0 +170779684895,215,0 +170779684943,215,0 +170779684990,215,0 +170779685038,215,0 +170779685086,214,0 +170779685134,214,0 +170779685182,214,0 +170779685230,214,0 +170779685279,215,0 +170779685327,214,0 +170779685375,214,0 +170779685422,215,0 +170779685470,215,0 +170779685518,215,0 +170779685566,215,0 +170779685614,215,0 +170779685661,215,0 +170779685711,215,0 +170779685760,215,0 +170779685808,215,0 +170779685858,214,0 +170779685906,214,0 +170779685954,214,0 +170779686003,214,0 +170779686052,214,0 +170779686100,214,0 +170779686148,215,0 +170779686198,215,0 +170779686247,215,0 +170779686297,215,0 +170779686345,215,0 +170779686393,215,0 +170779686440,215,0 +170779686488,215,0 +170779686538,215,0 +170779686586,215,0 +170779686635,215,0 +170779686683,214,0 +170779686731,214,0 +170779686779,214,0 +170779686828,214,0 +170779686876,214,0 +170779686924,214,0 +170779686973,214,0 +170779687023,214,0 +170779687072,214,0 +170779687122,214,0 +170779687171,214,0 +170779687219,214,0 +170779687267,214,0 +170779687315,214,0 +170779687363,215,0 +170779687411,215,0 +170779687459,214,0 +170779687508,214,0 +170779687556,214,0 +170779687605,214,0 +170779687653,214,0 +170779687701,214,0 +170779687751,214,0 +170779687799,214,0 +170779687847,214,0 +170779687894,214,0 +170779687944,214,0 +170779687992,214,0 +170779688040,214,0 +170779688088,215,0 +170779688136,214,0 +170779688185,215,0 +170779688233,214,0 +170779688281,214,0 +170779688329,214,0 +170779688378,214,0 +170779688426,214,0 +170779688476,214,0 +170779688525,214,0 +170779688573,214,0 +170779688621,214,0 +170779688671,214,0 +170779688719,215,0 +170779688767,215,0 +170779688816,214,0 +170779688864,215,0 +170779688914,215,0 +170779688962,215,0 +170779689009,215,0 +170779689059,214,0 +170779689107,214,0 +170779689155,214,0 +170779689204,214,0 +170779689252,214,0 +170779689300,214,0 +170779689348,214,0 +170779689398,214,0 +170779689445,214,0 +170779689493,215,0 +170779689541,215,0 +170779689589,215,0 +170779689638,215,0 +170779689686,215,0 +170779689734,215,0 +170779689782,215,0 +170779689832,214,0 +170779689880,214,0 +170779689929,214,0 +170779689977,214,0 +170779690025,214,0 +170779690073,214,0 +170779690121,214,0 +170779690168,214,0 +170779690216,215,0 +170779690264,215,0 +170779690312,215,0 +170779690360,215,0 +170779690408,215,0 +170779690455,215,0 +170779690503,215,0 +170779690553,215,0 +170779690602,215,0 +170779690652,215,0 +170779690699,214,0 +170779690747,214,0 +170779690795,214,0 +170779690843,214,0 +170779690893,215,0 +170779690940,214,0 +170779690988,215,0 +170779691036,214,0 +170779691084,214,0 +170779691132,215,0 +170779691180,215,0 +170779691228,215,0 +170779691277,215,0 +170779691325,215,0 +170779691373,215,0 +170779691421,215,0 +170779691469,214,0 +170779691519,214,0 +170779691568,214,0 +170779691616,214,0 +170779691665,214,0 +170779691713,214,0 +170779691761,214,0 +170779691809,214,0 +170779691857,215,0 +170779691905,215,0 +170779691953,215,0 +170779692002,215,0 +170779692050,215,0 +170779692098,215,0 +170779692146,215,0 +170779692195,215,0 +170779692243,215,0 +170779692291,214,0 +170779692339,214,0 +170779692387,214,0 +170779692436,214,0 +170779692484,215,0 +170779692534,215,0 +170779692583,215,0 +170779692633,215,0 +170779692680,215,0 +170779692728,215,0 +170779692778,215,0 +170779692826,215,0 +170779692873,215,0 +170779692921,215,0 +170779692969,215,0 +170779693019,215,0 +170779693067,215,0 +170779693115,214,0 +170779693162,214,0 +170779693210,214,0 +170779693258,214,0 +170779693306,214,0 +170779693355,214,0 +170779693403,215,0 +170779693451,214,0 +170779693501,215,0 +170779693549,215,0 +170779693598,215,0 +170779693646,215,0 +170779693695,215,0 +170779693745,215,0 +170779693793,215,0 +170779693841,214,0 +170779693890,214,0 +170779693940,214,0 +170779693988,214,0 +170779694037,214,0 +170779694086,214,0 +170779694136,215,0 +170779694184,214,0 +170779694232,214,0 +170779694279,214,0 +170779694329,214,0 +170779694377,215,0 +170779694426,215,0 +170779694474,215,0 +170779694522,215,0 +170779694571,215,0 +170779694619,215,0 +170779694667,215,0 +170779694717,214,0 +170779694764,214,0 +170779694814,214,0 +170779694863,214,0 +170779694911,214,0 +170779694959,214,0 +170779695007,214,0 +170779695055,214,0 +170779695104,215,0 +170779695152,215,0 +170779695200,215,0 +170779695250,215,0 +170779695297,215,0 +170779695345,215,0 +170779695393,215,0 +170779695441,215,0 +170779695489,214,0 +170779695537,214,0 +170779695585,214,0 +170779695633,214,0 +170779695682,214,0 +170779695730,214,0 +170779695778,214,0 +170779695826,214,0 +170779695876,214,0 +170779695925,214,0 +170779695974,214,0 +170779696024,214,0 +170779696072,215,0 +170779696120,214,0 +170779696168,214,0 +170779696215,214,0 +170779696265,214,0 +170779696313,214,0 +170779696362,214,0 +170779696410,214,0 +170779696458,214,0 +170779696507,214,0 +170779696557,214,0 +170779696605,214,0 +170779696653,214,0 +170779696700,215,0 +170779696748,215,0 +170779696796,215,0 +170779696844,215,0 +170779696894,215,0 +170779696943,215,0 +170779696993,215,0 +170779697042,215,0 +170779697092,214,0 +170779697140,214,0 +170779697189,215,0 +170779697239,215,0 +170779697288,215,0 +170779697336,215,0 +170779697384,215,0 +170779697432,215,0 +170779697480,215,0 +170779697528,215,0 +170779697577,215,0 +170779697625,215,0 +170779697673,215,0 +170779697721,215,0 +170779697769,215,0 +170779697817,215,0 +170779697866,215,0 +170779697914,215,0 +170779697962,214,0 +170779698010,215,0 +170779698059,215,0 +170779698109,215,0 +170779698157,215,0 +170779698205,215,0 +170779698252,215,0 +170779698300,215,0 +170779698350,215,0 +170779698398,215,0 +170779698446,215,0 +170779698495,215,0 +170779698543,215,0 +170779698591,215,0 +170779698639,215,0 +170779698688,214,0 +170779698736,214,0 +170779698784,214,0 +170779698832,214,0 +170779698881,215,0 +170779698929,214,0 +170779698977,215,0 +170779699025,214,0 +170779699073,215,0 +170779699121,215,0 +170779699169,215,0 +170779699218,215,0 +170779699266,215,0 +170779699314,215,0 +170779699362,215,0 +170779699411,215,0 +170779699459,215,0 +170779699507,214,0 +170779699555,214,0 +170779699602,214,0 +170779699650,214,0 +170779699698,214,0 +170779699746,214,0 +170779699796,214,0 +170779699844,215,0 +170779699891,215,0 +170779699939,215,0 +170779699987,215,0 +170779700035,215,0 +170779700083,215,0 +170779700131,215,0 +170779700180,215,0 +170779700228,215,0 +170779700276,215,0 +170779700326,214,0 +170779700374,214,0 +170779700422,214,0 +170779700470,214,0 +170779700517,214,0 +170779700567,215,0 +170779700615,215,0 +170779700663,215,0 +170779700712,215,0 +170779700762,215,0 +170779700810,215,0 +170779700858,215,0 +170779700905,215,0 +170779700953,215,0 +170779701003,215,0 +170779701052,215,0 +170779701102,214,0 +170779701151,214,0 +170779701199,214,0 +170779701247,214,0 +170779701295,214,0 +170779701343,214,0 +170779701391,214,0 +170779701439,214,0 +170779701488,214,0 +170779701536,215,0 +170779701586,215,0 +170779701635,215,0 +170779701683,215,0 +170779701733,215,0 +170779701781,215,0 +170779701830,215,0 +170779701878,215,0 +170779701926,214,0 +170779701975,214,0 +170779702023,214,0 +170779702071,214,0 +170779702121,214,0 +170779702170,214,0 +170779702218,214,0 +170779702268,214,0 +170779702316,214,0 +170779702365,214,0 +170779702415,215,0 +170779702463,215,0 +170779702511,215,0 +170779702560,215,0 +170779702608,215,0 +170779702656,215,0 +170779702704,214,0 +170779702752,214,0 +170779702799,214,0 +170779702849,214,0 +170779702898,214,0 +170779702946,214,0 +170779702994,214,0 +170779703042,214,0 +170779703090,214,0 +170779703138,214,0 +170779703186,215,0 +170779703234,215,0 +170779703281,215,0 +170779703329,215,0 +170779703377,215,0 +170779703425,215,0 +170779703473,215,0 +170779703521,214,0 +170779703568,214,0 +170779703616,214,0 +170779703664,214,0 +170779703712,214,0 +170779703760,214,0 +170779703808,214,0 +170779703856,214,0 +170779703905,214,0 +170779703953,214,0 +170779704001,214,0 +170779704049,214,0 +170779704098,214,0 +170779704146,214,0 +170779704194,215,0 +170779704242,214,0 +170779704290,215,0 +170779704337,214,0 +170779704385,213,0 +170779704433,213,0 +170779704481,214,0 +170779704529,214,0 +170779704578,214,0 +170779704626,214,0 +170779704674,214,0 +170779704722,214,0 +170779704770,214,0 +170779704818,214,0 +170779704866,214,0 +170779704914,215,0 +170779704961,214,0 +170779705011,214,0 +170779705059,214,0 +170779705107,214,0 +170779705155,213,0 +170779705202,214,0 +170779705250,213,0 +170779705298,213,0 +170779705347,214,0 +170779705395,214,0 +170779705443,214,0 +170779705491,214,0 +170779705539,214,0 +170779705588,214,0 +170779705636,214,0 +170779705684,214,0 +170779705732,214,0 +170779705780,214,0 +170779705829,214,0 +170779705878,214,0 +170779705926,214,0 +170779705974,213,0 +170779706023,214,0 +170779706071,214,0 +170779706119,214,0 +170779706167,214,0 +170779706215,214,0 +170779706262,214,0 +170779706310,214,0 +170779706358,214,0 +170779706407,214,0 +170779706455,215,0 +170779706505,215,0 +170779706553,215,0 +170779706600,215,0 +170779706648,215,0 +170779706696,215,0 +170779706744,214,0 +170779706792,214,0 +170779706840,214,0 +170779706888,214,0 +170779706935,214,0 +170779706983,214,0 +170779707033,214,0 +170779707082,214,0 +170779707132,214,0 +170779707180,214,0 +170779707229,215,0 +170779707279,215,0 +170779707326,214,0 +170779707374,215,0 +170779707422,215,0 +170779707470,215,0 +170779707518,214,0 +170779707566,214,0 +170779707614,214,0 +170779707662,214,0 +170779707710,214,0 +170779707759,214,0 +170779707807,214,0 +170779707857,214,0 +170779707905,214,0 +170779707953,214,0 +170779708002,214,0 +170779708050,214,0 +170779708098,215,0 +170779708148,215,0 +170779708196,215,0 +170779708243,214,0 +170779708293,215,0 +170779708343,214,0 +170779708390,214,0 +170779708438,214,0 +170779708486,214,0 +170779708534,214,0 +170779708582,214,0 +170779708630,215,0 +170779708678,214,0 +170779708726,215,0 +170779708774,215,0 +170779708824,215,0 +170779708873,215,0 +170779708921,215,0 +170779708969,215,0 +170779709017,215,0 +170779709065,215,0 +170779709112,215,0 +170779709162,215,0 +170779709210,215,0 +170779709258,215,0 +170779709305,215,0 +170779709353,215,0 +170779709401,215,0 +170779709449,215,0 +170779709497,215,0 +170779709546,215,0 +170779709594,215,0 +170779709642,215,0 +170779709692,215,0 +170779709741,215,0 +170779709789,215,0 +170779709837,215,0 +170779709885,215,0 +170779709934,215,0 +170779709982,215,0 +170779710031,215,0 +170779710079,215,0 +170779710129,215,0 +170779710177,215,0 +170779710225,215,0 +170779710273,215,0 +170779710320,215,0 +170779710368,215,0 +170779710416,215,0 +170779710464,215,0 +170779710514,215,0 +170779710563,215,0 +170779710611,215,0 +170779710659,214,0 +170779710707,214,0 +170779710754,214,0 +170779710802,214,0 +170779710850,214,0 +170779710898,214,0 +170779710946,214,0 +170779710993,214,0 +170779711041,215,0 +170779711089,215,0 +170779711137,215,0 +170779711185,215,0 +170779711233,215,0 +170779711280,215,0 +170779711328,215,0 +170779711376,215,0 +170779711424,215,0 +170779711472,215,0 +170779711519,214,0 +170779711569,214,0 +170779711617,214,0 +170779711665,214,0 +170779711712,214,0 +170779711760,214,0 +170779711808,214,0 +170779711858,214,0 +170779711905,214,0 +170779711955,215,0 +170779712003,215,0 +170779712051,215,0 +170779712100,215,0 +170779712148,215,0 +170779712195,215,0 +170779712243,215,0 +170779712291,215,0 +170779712339,214,0 +170779712387,214,0 +170779712436,214,0 +170779712484,214,0 +170779712533,214,0 +170779712583,214,0 +170779712631,214,0 +170779712679,214,0 +170779712726,214,0 +170779712774,215,0 +170779712824,215,0 +170779712873,215,0 +170779712923,215,0 +170779712971,215,0 +170779713020,215,0 +170779713069,215,0 +170779713117,214,0 +170779713165,214,0 +170779713213,214,0 +170779713263,214,0 +170779713311,214,0 +170779713360,214,0 +170779713410,214,0 +170779713459,214,0 +170779713508,215,0 +170779713556,214,0 +170779713604,215,0 +170779713654,215,0 +170779713702,215,0 +170779713750,215,0 +170779713799,215,0 +170779713848,215,0 +170779713896,215,0 +170779713944,214,0 +170779713994,214,0 +170779714042,214,0 +170779714090,214,0 +170779714139,214,0 +170779714189,214,0 +170779714237,214,0 +170779714285,214,0 +170779714334,215,0 +170779714382,214,0 +170779714430,215,0 +170779714477,215,0 +170779714527,215,0 +170779714576,215,0 +170779714624,215,0 +170779714672,215,0 +170779714720,214,0 +170779714768,214,0 +170779714816,214,0 +170779714864,214,0 +170779714912,214,0 +170779714960,214,0 +170779715009,214,0 +170779715059,214,0 +170779715107,214,0 +170779715156,214,0 +170779715204,214,0 +170779715252,214,0 +170779715300,215,0 +170779715348,215,0 +170779715396,215,0 +170779715444,214,0 +170779715492,214,0 +170779715541,214,0 +170779715589,213,0 +170779715637,214,0 +170779715685,214,0 +170779715733,214,0 +170779715781,214,0 +170779715829,214,0 +170779715877,214,0 +170779715925,214,0 +170779715974,214,0 +170779716022,215,0 +170779716070,214,0 +170779716118,215,0 +170779716166,215,0 +170779716215,215,0 +170779716263,215,0 +170779716311,214,0 +170779716359,214,0 +170779716407,214,0 +170779716455,214,0 +170779716504,214,0 +170779716552,214,0 +170779716602,214,0 +170779716650,214,0 +170779716699,214,0 +170779716747,214,0 +170779716797,214,0 +170779716845,214,0 +170779716892,214,0 +170779716940,214,0 +170779716988,214,0 +170779717036,214,0 +170779717084,214,0 +170779717132,214,0 +170779717182,214,0 +170779717231,214,0 +170779717280,213,0 +170779717330,214,0 +170779717378,214,0 +170779717425,214,0 +170779717473,214,0 +170779717523,214,0 +170779717571,214,0 +170779717619,214,0 +170779717666,214,0 +170779717714,214,0 +170779717762,215,0 +170779717812,215,0 +170779717861,215,0 +170779717909,215,0 +170779717957,214,0 +170779718005,214,0 +170779718053,214,0 +170779718100,214,0 +170779718148,214,0 +170779718196,214,0 +170779718244,214,0 +170779718292,214,0 +170779718340,214,0 +170779718388,215,0 +170779718437,215,0 +170779718485,215,0 +170779718533,215,0 +170779718583,215,0 +170779718631,214,0 +170779718679,215,0 +170779718728,214,0 +170779718776,214,0 +170779718824,214,0 +170779718872,214,0 +170779718921,214,0 +170779718971,214,0 +170779719020,214,0 +170779719070,214,0 +170779719117,215,0 +170779719165,215,0 +170779719213,214,0 +170779719261,214,0 +170779719309,215,0 +170779719357,215,0 +170779719406,215,0 +170779719454,215,0 +170779719502,214,0 +170779719552,214,0 +170779719599,214,0 +170779719647,214,0 +170779719695,214,0 +170779719743,214,0 +170779719791,214,0 +170779719839,215,0 +170779719887,214,0 +170779719935,214,0 +170779719984,215,0 +170779720034,215,0 +170779720083,215,0 +170779720133,215,0 +170779720181,215,0 +170779720229,215,0 +170779720276,215,0 +170779720324,215,0 +170779720374,214,0 +170779720422,214,0 +170779720471,214,0 +170779720521,214,0 +170779720569,214,0 +170779720617,214,0 +170779720665,214,0 +170779720714,214,0 +170779720762,215,0 +170779720812,214,0 +170779720860,215,0 +170779720907,215,0 +170779720955,215,0 +170779721005,215,0 +170779721053,215,0 +170779721102,215,0 +170779721150,214,0 +170779721198,214,0 +170779721246,214,0 +170779721295,215,0 +170779721345,214,0 +170779721393,214,0 +170779721440,215,0 +170779721488,215,0 +170779721538,215,0 +170779721586,215,0 +170779721633,215,0 +170779721683,215,0 +170779721731,215,0 +170779721780,215,0 +170779721830,215,0 +170779721878,215,0 +170779721927,214,0 +170779721975,214,0 +170779722023,214,0 +170779722071,214,0 +170779722119,215,0 +170779722168,215,0 +170779722216,215,0 +170779722264,215,0 +170779722312,215,0 +170779722360,215,0 +170779722408,215,0 +170779722457,215,0 +170779722507,215,0 +170779722555,215,0 +170779722604,215,0 +170779722652,215,0 +170779722700,215,0 +170779722749,214,0 +170779722799,214,0 +170779722847,214,0 +170779722895,214,0 +170779722943,214,0 +170779722990,214,0 +170779723038,215,0 +170779723088,215,0 +170779723136,215,0 +170779723184,215,0 +170779723232,215,0 +170779723281,215,0 +170779723329,215,0 +170779723377,215,0 +170779723425,215,0 +170779723473,215,0 +170779723521,215,0 +170779723569,214,0 +170779723616,214,0 +170779723664,214,0 +170779723714,214,0 +170779723762,214,0 +170779723811,214,0 +170779723861,214,0 +170779723909,215,0 +170779723957,214,0 +170779724006,214,0 +170779724056,215,0 +170779724104,215,0 +170779724151,215,0 +170779724199,215,0 +170779724247,215,0 +170779724295,214,0 +170779724343,214,0 +170779724391,214,0 +170779724440,214,0 +170779724488,214,0 +170779724536,214,0 +170779724584,214,0 +170779724632,214,0 +170779724680,214,0 +170779724728,214,0 +170779724777,214,0 +170779724826,215,0 +170779724874,215,0 +170779724924,215,0 +170779724973,215,0 +170779725021,215,0 +170779725069,215,0 +170779725117,215,0 +170779725165,214,0 +170779725213,214,0 +170779725261,214,0 +170779725309,214,0 +170779725356,214,0 +170779725406,214,0 +170779725454,214,0 +170779725502,214,0 +170779725550,214,0 +170779725599,214,0 +170779725647,215,0 +170779725696,215,0 +170779725744,215,0 +170779725792,215,0 +170779725840,215,0 +170779725888,215,0 +170779725936,215,0 +170779725985,214,0 +170779726033,214,0 +170779726081,214,0 +170779726129,214,0 +170779726176,214,0 +170779726224,214,0 +170779726272,214,0 +170779726320,214,0 +170779726368,214,0 +170779726415,215,0 +170779726463,215,0 +170779726511,215,0 +170779726561,215,0 +170779726608,215,0 +170779726656,215,0 +170779726706,215,0 +170779726755,214,0 +170779726803,213,0 +170779726850,213,0 +170779726898,214,0 +170779726946,214,0 +170779726994,214,0 +170779727043,214,0 +170779727093,214,0 +170779727142,214,0 +170779727190,214,0 +170779727240,214,0 +170779727288,214,0 +170779727335,215,0 +170779727385,215,0 +170779727433,215,0 +170779727481,215,0 +170779727528,215,0 +170779727578,214,0 +170779727627,214,0 +170779727675,214,0 +170779727723,214,0 +170779727772,214,0 +170779727820,214,0 +170779727868,214,0 +170779727916,214,0 +170779727964,214,0 +170779728012,214,0 +170779728061,214,0 +170779728111,215,0 +170779728159,215,0 +170779728208,215,0 +170779728256,215,0 +170779728304,215,0 +170779728353,214,0 +170779728401,214,0 +170779728449,214,0 +170779728497,214,0 +170779728547,214,0 +170779728595,214,0 +170779728642,214,0 +170779728690,214,0 +170779728740,214,0 +170779728788,214,0 +170779728836,215,0 +170779728885,215,0 +170779728933,215,0 +170779728981,215,0 +170779729029,215,0 +170779729077,215,0 +170779729126,215,0 +170779729174,214,0 +170779729224,214,0 +170779729272,214,0 +170779729320,214,0 +170779729368,215,0 +170779729417,215,0 +170779729465,215,0 +170779729513,215,0 +170779729562,215,0 +170779729610,215,0 +170779729660,215,0 +170779729707,215,0 +170779729755,215,0 +170779729803,215,0 +170779729853,215,0 +170779729901,215,0 +170779729949,214,0 +170779729997,214,0 +170779730045,214,0 +170779730092,214,0 +170779730140,214,0 +170779730190,214,0 +170779730239,215,0 +170779730287,215,0 +170779730337,215,0 +170779730385,215,0 +170779730434,215,0 +170779730482,215,0 +170779730530,215,0 +170779730578,215,0 +170779730627,215,0 +170779730675,215,0 +170779730723,215,0 +170779730773,214,0 +170779730821,214,0 +170779730870,214,0 +170779730920,214,0 +170779730968,214,0 +170779731016,214,0 +170779731065,214,0 +170779731113,214,0 +170779731161,214,0 +170779731209,214,0 +170779731257,214,0 +170779731305,215,0 +170779731353,215,0 +170779731401,215,0 +170779731449,215,0 +170779731498,215,0 +170779731546,214,0 +170779731596,214,0 +170779731644,213,0 +170779731693,214,0 +170779731741,214,0 +170779731789,214,0 +170779731837,214,0 +170779731885,214,0 +170779731933,214,0 +170779731981,214,0 +170779732030,214,0 +170779732078,215,0 +170779732126,214,0 +170779732176,214,0 +170779732224,214,0 +170779732272,215,0 +170779732319,214,0 +170779732369,214,0 +170779732417,213,0 +170779732466,214,0 +170779732514,214,0 +170779732564,214,0 +170779732612,214,0 +170779732660,214,0 +170779732709,214,0 +170779732757,214,0 +170779732805,214,0 +170779732854,214,0 +170779732902,214,0 +170779732952,215,0 +170779733001,215,0 +170779733051,214,0 +170779733100,214,0 +170779733148,214,0 +170779733196,214,0 +170779733243,214,0 +170779733291,214,0 +170779733339,214,0 +170779733387,214,0 +170779733437,214,0 +170779733486,214,0 +170779733535,214,0 +170779733585,215,0 +170779733633,215,0 +170779733681,215,0 +170779733730,215,0 +170779733779,215,0 +170779733827,215,0 +170779733875,214,0 +170779733923,215,0 +170779733971,214,0 +170779734019,215,0 +170779734066,215,0 +170779734114,214,0 +170779734162,215,0 +170779734210,215,0 +170779734257,215,0 +170779734305,215,0 +170779734353,215,0 +170779734401,215,0 +170779734450,215,0 +170779734498,215,0 +170779734546,215,0 +170779734594,215,0 +170779734643,215,0 +170779734691,215,0 +170779734740,215,0 +170779734788,215,0 +170779734837,214,0 +170779734885,215,0 +170779734933,215,0 +170779734981,215,0 +170779735030,215,0 +170779735078,215,0 +170779735126,215,0 +170779735174,215,0 +170779735223,215,0 +170779735271,215,0 +170779735319,215,0 +170779735367,215,0 +170779735416,215,0 +170779735464,215,0 +170779735512,214,0 +170779735560,214,0 +170779735608,214,0 +170779735656,214,0 +170779735705,214,0 +170779735753,214,0 +170779735801,214,0 +170779735850,214,0 +170779735898,214,0 +170779735948,214,0 +170779735997,214,0 +170779736045,214,0 +170779736093,214,0 +170779736141,214,0 +170779736190,215,0 +170779736238,215,0 +170779736286,215,0 +170779736335,214,0 +170779736383,214,0 +170779736433,214,0 +170779736482,214,0 +170779736530,214,0 +170779736579,214,0 +170779736629,214,0 +170779736678,214,0 +170779736726,214,0 +170779736774,214,0 +170779736822,214,0 +170779736872,214,0 +170779736921,215,0 +170779736969,214,0 +170779737018,215,0 +170779737066,215,0 +170779737114,215,0 +170779737162,214,0 +170779737210,214,0 +170779737260,213,0 +170779737308,214,0 +170779737357,214,0 +170779737405,214,0 +170779737454,214,0 +170779737502,214,0 +170779737550,214,0 +170779737598,214,0 +170779737647,215,0 +170779737697,215,0 +170779737746,215,0 +170779737796,215,0 +170779737844,215,0 +170779737892,215,0 +170779737941,215,0 +170779737991,214,0 +170779738040,214,0 +170779738090,214,0 +170779738138,214,0 +170779738185,214,0 +170779738233,214,0 +170779738281,214,0 +170779738329,214,0 +170779738377,215,0 +170779738425,215,0 +170779738475,215,0 +170779738522,215,0 +170779738570,215,0 +170779738618,215,0 +170779738666,215,0 +170779738715,215,0 +170779738765,215,0 +170779738813,214,0 +170779738861,214,0 +170779738910,214,0 +170779738958,214,0 +170779739006,215,0 +170779739053,214,0 +170779739103,214,0 +170779739151,214,0 +170779739200,215,0 +170779739248,215,0 +170779739296,215,0 +170779739344,215,0 +170779739394,215,0 +170779739442,215,0 +170779739489,215,0 +170779739537,215,0 +170779739585,214,0 +170779739633,214,0 +170779739681,214,0 +170779739729,214,0 +170779739777,215,0 +170779739825,214,0 +170779739872,215,0 +170779739920,215,0 +170779739970,215,0 +170779740018,215,0 +170779740066,215,0 +170779740113,215,0 +170779740163,215,0 +170779740211,215,0 +170779740258,215,0 +170779740306,215,0 +170779740354,215,0 +170779740403,214,0 +170779740451,214,0 +170779740499,214,0 +170779740547,214,0 +170779740595,215,0 +170779740643,215,0 +170779740691,215,0 +170779740740,215,0 +170779740790,215,0 +170779740839,215,0 +170779740887,215,0 +170779740935,215,0 +170779740984,216,0 +170779741034,215,0 +170779741083,215,0 +170779741131,215,0 +170779741179,215,0 +170779741227,214,0 +170779741275,214,0 +170779741324,214,0 +170779741372,214,0 +170779741420,214,0 +170779741468,214,0 +170779741516,214,0 +170779741564,215,0 +170779741612,214,0 +170779741660,214,0 +170779741709,215,0 +170779741757,215,0 +170779741806,215,0 +170779741854,215,0 +170779741904,215,0 +170779741952,215,0 +170779742000,214,0 +170779742049,213,0 +170779742099,214,0 +170779742147,214,0 +170779742196,214,0 +170779742244,214,0 +170779742294,214,0 +170779742342,214,0 +170779742389,214,0 +170779742437,214,0 +170779742487,214,0 +170779742534,215,0 +170779742582,215,0 +170779742630,215,0 +170779742678,215,0 +170779742726,215,0 +170779742773,215,0 +170779742821,213,0 +170779742869,214,0 +170779742917,214,0 +170779742965,214,0 +170779743014,214,0 +170779743064,214,0 +170779743113,214,0 +170779743161,214,0 +170779743209,214,0 +170779743257,214,0 +170779743305,215,0 +170779743354,215,0 +170779743402,215,0 +170779743452,215,0 +170779743501,215,0 +170779743551,214,0 +170779743598,214,0 +170779743646,213,0 +170779743694,213,0 +170779743742,214,0 +170779743790,214,0 +170779743838,214,0 +170779743886,214,0 +170779743935,214,0 +170779743985,214,0 +170779744032,214,0 +170779744080,214,0 +170779744130,215,0 +170779744178,215,0 +170779744226,215,0 +170779744275,214,0 +170779744325,215,0 +170779744373,215,0 +170779744422,214,0 +170779744470,214,0 +170779744519,213,0 +170779744567,214,0 +170779744617,214,0 +170779744664,214,0 +170779744712,214,0 +170779744762,214,0 +170779744809,214,0 +170779744857,214,0 +170779744905,215,0 +170779744955,215,0 +170779745002,215,0 +170779745050,215,0 +170779745098,215,0 +170779745146,215,0 +170779745194,214,0 +170779745242,213,0 +170779745289,214,0 +170779745337,214,0 +170779745387,214,0 +170779745435,214,0 +170779745484,214,0 +170779745532,214,0 +170779745580,215,0 +170779745629,215,0 +170779745679,215,0 +170779745728,215,0 +170779745778,215,0 +170779745826,215,0 +170779745874,215,0 +170779745923,214,0 +170779745971,215,0 +170779746019,214,0 +170779746067,214,0 +170779746116,214,0 +170779746166,214,0 +170779746215,215,0 +170779746265,214,0 +170779746314,215,0 +170779746362,215,0 +170779746410,215,0 +170779746458,215,0 +170779746507,215,0 +170779746555,215,0 +170779746603,215,0 +170779746651,215,0 +170779746698,215,0 +170779746746,215,0 +170779746794,214,0 +170779746842,215,0 +170779746890,214,0 +170779746939,215,0 +170779746987,215,0 +170779747035,215,0 +170779747083,215,0 +170779747130,215,0 +170779747178,215,0 +170779747226,215,0 +170779747275,215,0 +170779747323,215,0 +170779747371,215,0 +170779747419,215,0 +170779747467,215,0 +170779747514,215,0 +170779747562,215,0 +170779747610,214,0 +170779747658,214,0 +170779747706,214,0 +170779747754,215,0 +170779747803,215,0 +170779747851,214,0 +170779747900,215,0 +170779747948,215,0 +170779747996,215,0 +170779748044,215,0 +170779748091,215,0 +170779748139,215,0 +170779748187,215,0 +170779748235,215,0 +170779748284,215,0 +170779748332,215,0 +170779748380,214,0 +170779748427,214,0 +170779748475,214,0 +170779748523,214,0 +170779748571,214,0 +170779748619,214,0 +170779748668,215,0 +170779748718,214,0 +170779748766,215,0 +170779748813,215,0 +170779748863,215,0 +170779748911,215,0 +170779748958,215,0 +170779749006,215,0 +170779749054,215,0 +170779749102,215,0 +170779749150,214,0 +170779749198,214,0 +170779749245,214,0 +170779749293,214,0 +170779749341,214,0 +170779749389,214,0 +170779749436,214,0 +170779749484,214,0 +170779749532,215,0 +170779749580,214,0 +170779749628,215,0 +170779749675,215,0 +170779749723,215,0 +170779749771,215,0 +170779749819,215,0 +170779749867,215,0 +170779749914,215,0 +170779749962,215,0 +170779750010,214,0 +170779750058,214,0 +170779750107,214,0 +170779750157,214,0 +170779750206,214,0 +170779750254,214,0 +170779750302,214,0 +170779750351,215,0 +170779750399,215,0 +170779750447,215,0 +170779750495,215,0 +170779750543,215,0 +170779750591,215,0 +170779750639,215,0 +170779750687,215,0 +170779750735,215,0 +170779750784,215,0 +170779750832,214,0 +170779750881,214,0 +170779750929,214,0 +170779750979,214,0 +170779751028,214,0 +170779751076,214,0 +170779751124,214,0 +170779751173,214,0 +170779751221,215,0 +170779751269,215,0 +170779751319,215,0 +170779751367,215,0 +170779751415,215,0 +170779751464,215,0 +170779751514,215,0 +170779751561,215,0 +170779751609,214,0 +170779751659,214,0 +170779751708,214,0 +170779751756,214,0 +170779751804,214,0 +170779751854,214,0 +170779751902,214,0 +170779751950,214,0 +170779751999,215,0 +170779752049,215,0 +170779752096,215,0 +170779752144,215,0 +170779752192,215,0 +170779752240,215,0 +170779752288,215,0 +170779752337,215,0 +170779752385,215,0 +170779752433,214,0 +170779752481,214,0 +170779752529,214,0 +170779752577,214,0 +170779752624,214,0 +170779752672,214,0 +170779752720,214,0 +170779752768,214,0 +170779752816,215,0 +170779752864,214,0 +170779752911,215,0 +170779752959,214,0 +170779753007,215,0 +170779753055,215,0 +170779753103,215,0 +170779753151,215,0 +170779753199,214,0 +170779753248,213,0 +170779753298,213,0 +170779753346,214,0 +170779753395,214,0 +170779753443,214,0 +170779753492,214,0 +170779753540,214,0 +170779753588,214,0 +170779753636,215,0 +170779753684,214,0 +170779753733,215,0 +170779753783,215,0 +170779753832,215,0 +170779753882,214,0 +170779753931,215,0 +170779753979,215,0 +170779754027,214,0 +170779754075,214,0 +170779754123,213,0 +170779754170,214,0 +170779754218,214,0 +170779754268,214,0 +170779754316,214,0 +170779754365,214,0 +170779754415,214,0 +170779754462,214,0 +170779754510,214,0 +170779754558,214,0 +170779754608,215,0 +170779754656,214,0 +170779754704,215,0 +170779754752,215,0 +170779754800,214,0 +170779754849,214,0 +170779754899,214,0 +170779754948,214,0 +170779754998,214,0 +170779755046,214,0 +170779755093,214,0 +170779755143,214,0 +170779755191,214,0 +170779755239,214,0 +170779755288,214,0 +170779755338,214,0 +170779755386,214,0 +170779755435,215,0 +170779755483,215,0 +170779755531,215,0 +170779755579,215,0 +170779755627,214,0 +170779755676,214,0 +170779755724,214,0 +170779755772,214,0 +170779755820,214,0 +170779755868,214,0 +170779755916,214,0 +170779755964,214,0 +170779756012,214,0 +170779756061,214,0 +170779756109,215,0 +170779756157,215,0 +170779756206,215,0 +170779756254,215,0 +170779756303,215,0 +170779756351,215,0 +170779756399,214,0 +170779756447,214,0 +170779756495,214,0 +170779756542,214,0 +170779756590,214,0 +170779756638,214,0 +170779756686,214,0 +170779756734,214,0 +170779756781,215,0 +170779756829,214,0 +170779756877,215,0 +170779756925,214,0 +170779756973,214,0 +170779757020,215,0 +170779757068,214,0 +170779757116,215,0 +170779757164,214,0 +170779757212,214,0 +170779757260,214,0 +170779757309,214,0 +170779757357,214,0 +170779757405,214,0 +170779757453,214,0 +170779757502,215,0 +170779757550,214,0 +170779757598,215,0 +170779757648,215,0 +170779757696,215,0 +170779757743,215,0 +170779757791,215,0 +170779757839,215,0 +170779757887,215,0 +170779757937,215,0 +170779757986,215,0 +170779758034,214,0 +170779758084,215,0 +170779758132,215,0 +170779758179,215,0 +170779758227,215,0 +170779758277,215,0 +170779758325,215,0 +170779758374,215,0 +170779758424,215,0 +170779758472,215,0 +170779758519,215,0 +170779758567,215,0 +170779758615,215,0 +170779758663,215,0 +170779758711,215,0 +170779758759,215,0 +170779758807,215,0 +170779758856,215,0 +170779758904,215,0 +170779758952,215,0 +170779759001,215,0 +170779759049,215,0 +170779759097,215,0 +170779759146,215,0 +170779759196,215,0 +170779759244,215,0 +170779759292,215,0 +170779759341,215,0 +170779759389,215,0 +170779759437,215,0 +170779759485,215,0 +170779759532,215,0 +170779759580,215,0 +170779759628,215,0 +170779759678,214,0 +170779759726,214,0 +170779759774,215,0 +170779759822,214,0 +170779759871,215,0 +170779759919,215,0 +170779759967,214,0 +170779760015,215,0 +170779760063,215,0 +170779760111,215,0 +170779760158,215,0 +170779760206,215,0 +170779760254,215,0 +170779760302,215,0 +170779760350,215,0 +170779760398,214,0 +170779760446,213,0 +170779760493,213,0 +170779760541,213,0 +170779760591,213,0 +170779760640,214,0 +170779760688,214,0 +170779760735,214,0 +170779760785,214,0 +170779760833,214,0 +170779760880,214,0 +170779760930,214,0 +170779760978,214,0 +170779761025,214,0 +170779761073,214,0 +170779761121,214,0 +170779761169,214,0 +170779761217,214,0 +170779761264,213,0 +170779761312,213,0 +170779761360,213,0 +170779761408,213,0 +170779761456,214,0 +170779761503,214,0 +170779761553,214,0 +170779761601,214,0 +170779761649,214,0 +170779761697,214,0 +170779761744,214,0 +170779761792,214,0 +170779761840,215,0 +170779761888,215,0 +170779761936,215,0 +170779761984,215,0 +170779762031,214,0 +170779762081,214,0 +170779762129,214,0 +170779762177,214,0 +170779762224,214,0 +170779762272,214,0 +170779762320,214,0 +170779762369,214,0 +170779762417,214,0 +170779762465,214,0 +170779762513,214,0 +170779762562,214,0 +170779762610,215,0 +170779762658,215,0 +170779762706,214,0 +170779762753,215,0 +170779762801,214,0 +170779762849,214,0 +170779762897,213,0 +170779762946,213,0 +170779762994,214,0 +170779763042,214,0 +170779763090,214,0 +170779763139,214,0 +170779763187,214,0 +170779763235,214,0 +170779763283,214,0 +170779763331,214,0 +170779763378,215,0 +170779763426,215,0 +170779763474,214,0 +170779763524,215,0 +170779763572,215,0 +170779763620,215,0 +170779763667,214,0 +170779763717,214,0 +170779763765,214,0 +170779763813,214,0 +170779763860,214,0 +170779763908,214,0 +170779763956,214,0 +170779764004,214,0 +170779764052,214,0 +170779764100,214,0 +170779764148,214,0 +170779764196,215,0 +170779764244,215,0 +170779764291,215,0 +170779764339,215,0 +170779764389,215,0 +170779764437,214,0 +170779764486,214,0 +170779764534,214,0 +170779764582,214,0 +170779764629,214,0 +170779764677,214,0 +170779764725,214,0 +170779764773,214,0 +170779764821,214,0 +170779764868,215,0 +170779764916,214,0 +170779764964,214,0 +170779765012,215,0 +170779765060,215,0 +170779765107,215,0 +170779765155,215,0 +170779765205,215,0 +170779765253,214,0 +170779765301,214,0 +170779765348,214,0 +170779765396,214,0 +170779765444,214,0 +170779765492,214,0 +170779765540,214,0 +170779765587,214,0 +170779765635,214,0 +170779765684,214,0 +170779765732,215,0 +170779765780,215,0 +170779765828,215,0 +170779765876,215,0 +170779765924,215,0 +170779765972,215,0 +170779766019,214,0 +170779766067,214,0 +170779766115,214,0 +170779766163,214,0 +170779766211,214,0 +170779766260,214,0 +170779766308,214,0 +170779766357,214,0 +170779766405,214,0 +170779766453,214,0 +170779766501,214,0 +170779766549,214,0 +170779766597,214,0 +170779766644,215,0 +170779766692,215,0 +170779766740,215,0 +170779766790,215,0 +170779766837,214,0 +170779766885,214,0 +170779766933,214,0 +170779766981,214,0 +170779767029,214,0 +170779767078,214,0 +170779767128,214,0 +170779767176,214,0 +170779767224,214,0 +170779767272,214,0 +170779767320,214,0 +170779767368,214,0 +170779767416,215,0 +170779767465,215,0 +170779767513,215,0 +170779767561,214,0 +170779767609,215,0 +170779767657,214,0 +170779767706,214,0 +170779767754,214,0 +170779767802,214,0 +170779767850,214,0 +170779767898,214,0 +170779767946,214,0 +170779767994,214,0 +170779768042,214,0 +170779768091,215,0 +170779768141,215,0 +170779768190,215,0 +170779768240,215,0 +170779768288,215,0 +170779768337,215,0 +170779768387,215,0 +170779768435,214,0 +170779768483,214,0 +170779768531,214,0 +170779768579,214,0 +170779768627,214,0 +170779768676,214,0 +170779768724,214,0 +170779768774,214,0 +170779768823,214,0 +170779768873,214,0 +170779768922,215,0 +170779768970,214,0 +170779769018,215,0 +170779769066,215,0 +170779769114,214,0 +170779769162,215,0 +170779769209,215,0 +170779769257,214,0 +170779769305,214,0 +170779769353,214,0 +170779769401,214,0 +170779769449,214,0 +170779769496,214,0 +170779769546,214,0 +170779769594,214,0 +170779769643,214,0 +170779769691,214,0 +170779769739,215,0 +170779769787,215,0 +170779769834,215,0 +170779769884,214,0 +170779769932,215,0 +170779769980,215,0 +170779770029,214,0 +170779770079,214,0 +170779770127,214,0 +170779770175,214,0 +170779770223,214,0 +170779770270,214,0 +170779770318,214,0 +170779770368,215,0 +170779770417,214,0 +170779770465,214,0 +170779770513,215,0 +170779770562,215,0 +170779770612,215,0 +170779770660,215,0 +170779770708,215,0 +170779770756,215,0 +170779770804,215,0 +170779770853,214,0 +170779770901,214,0 +170779770949,214,0 +170779770997,214,0 +170779771044,215,0 +170779771092,214,0 +170779771142,215,0 +170779771189,215,0 +170779771237,215,0 +170779771285,215,0 +170779771333,215,0 +170779771380,215,0 +170779771430,215,0 +170779771479,215,0 +170779771527,215,0 +170779771575,215,0 +170779771624,215,0 +170779771672,214,0 +170779771720,214,0 +170779771768,214,0 +170779771816,214,0 +170779771864,214,0 +170779771912,214,0 +170779771959,214,0 +170779772007,215,0 +170779772055,215,0 +170779772105,215,0 +170779772153,215,0 +170779772200,215,0 +170779772248,215,0 +170779772296,215,0 +170779772344,214,0 +170779772392,215,0 +170779772440,214,0 +170779772488,214,0 +170779772535,214,0 +170779772585,214,0 +170779772633,214,0 +170779772681,214,0 +170779772728,214,0 +170779772776,214,0 +170779772824,215,0 +170779772872,214,0 +170779772920,215,0 +170779772968,215,0 +170779773017,215,0 +170779773065,215,0 +170779773113,215,0 +170779773163,215,0 +170779773212,215,0 +170779773260,214,0 +170779773308,214,0 +170779773356,214,0 +170779773403,214,0 +170779773451,214,0 +170779773499,214,0 +170779773547,214,0 +170779773595,214,0 +170779773643,214,0 +170779773692,215,0 +170779773742,215,0 +170779773789,215,0 +170779773837,215,0 +170779773885,215,0 +170779773933,215,0 +170779773981,215,0 +170779774029,214,0 +170779774076,214,0 +170779774124,214,0 +170779774172,214,0 +170779774220,214,0 +170779774268,214,0 +170779774316,214,0 +170779774363,214,0 +170779774411,214,0 +170779774459,214,0 +170779774507,214,0 +170779774555,215,0 +170779774603,214,0 +170779774650,215,0 +170779774698,214,0 +170779774746,215,0 +170779774796,215,0 +170779774844,214,0 +170779774893,214,0 +170779774943,214,0 +170779774991,214,0 +170779775039,214,0 +170779775087,214,0 +170779775136,214,0 +170779775184,214,0 +170779775234,214,0 +170779775282,214,0 +170779775330,214,0 +170779775377,214,0 +170779775425,215,0 +170779775473,214,0 +170779775521,215,0 +170779775569,215,0 +170779775618,214,0 +170779775666,214,0 +170779775714,214,0 +170779775762,214,0 +170779775810,214,0 +170779775858,214,0 +170779775906,214,0 +170779775954,214,0 +170779776003,214,0 +170779776051,214,0 +170779776099,214,0 +170779776147,215,0 +170779776195,214,0 +170779776243,215,0 +170779776291,214,0 +170779776338,215,0 +170779776386,214,0 +170779776434,214,0 +170779776482,214,0 +170779776530,214,0 +170779776578,214,0 +170779776628,214,0 +170779776676,214,0 +170779776724,214,0 +170779776772,214,0 +170779776819,214,0 +170779776867,214,0 +170779776917,214,0 +170779776965,214,0 +170779777014,215,0 +170779777062,215,0 +170779777112,215,0 +170779777161,215,0 +170779777209,215,0 +170779777258,214,0 +170779777306,214,0 +170779777356,214,0 +170779777404,214,0 +170779777453,214,0 +170779777501,214,0 +170779777549,214,0 +170779777597,214,0 +170779777647,215,0 +170779777696,214,0 +170779777744,214,0 +170779777792,215,0 +170779777840,215,0 +170779777889,215,0 +170779777937,215,0 +170779777985,215,0 +170779778033,214,0 +170779778081,214,0 +170779778129,214,0 +170779778177,214,0 +170779778226,214,0 +170779778274,214,0 +170779778323,214,0 +170779778371,214,0 +170779778419,215,0 +170779778467,214,0 +170779778517,215,0 +170779778566,214,0 +170779778614,215,0 +170779778663,214,0 +170779778713,215,0 +170779778761,214,0 +170779778809,215,0 +170779778858,214,0 +170779778908,214,0 +170779778957,214,0 +170779779005,214,0 +170779779053,214,0 +170779779101,214,0 +170779779151,214,0 +170779779199,214,0 +170779779248,214,0 +170779779296,215,0 +170779779345,215,0 +170779779393,215,0 +170779779441,215,0 +170779779489,215,0 +170779779538,215,0 +170779779586,214,0 +170779779636,214,0 +170779779685,214,0 +170779779733,214,0 +170779779781,214,0 +170779779829,214,0 +170779779877,214,0 +170779779925,214,0 +170779779974,214,0 +170779780024,214,0 +170779780073,214,0 +170779780123,214,0 +170779780172,214,0 +170779780220,214,0 +170779780268,215,0 +170779780318,214,0 +170779780366,215,0 +170779780414,214,0 +170779780462,214,0 +170779780509,213,0 +170779780557,214,0 +170779780605,214,0 +170779780653,214,0 +170779780701,214,0 +170779780749,214,0 +170779780798,214,0 +170779780846,214,0 +170779780896,214,0 +170779780945,214,0 +170779780993,214,0 +170779781041,214,0 +170779781091,214,0 +170779781140,214,0 +170779781190,214,0 +170779781238,214,0 +170779781285,214,0 +170779781333,213,0 +170779781381,213,0 +170779781431,214,0 +170779781479,214,0 +170779781527,214,0 +170779781575,214,0 +170779781624,214,0 +170779781674,214,0 +170779781722,214,0 +170779781770,214,0 +170779781818,214,0 +170779781865,214,0 +170779781915,214,0 +170779781963,214,0 +170779782012,214,0 +170779782060,214,0 +170779782108,214,0 +170779782156,214,0 +170779782204,214,0 +170779782252,214,0 +170779782302,214,0 +170779782350,214,0 +170779782399,214,0 +170779782447,214,0 +170779782495,215,0 +170779782543,215,0 +170779782591,215,0 +170779782639,215,0 +170779782688,215,0 +170779782738,214,0 +170779782787,214,0 +170779782835,215,0 +170779782885,214,0 +170779782932,214,0 +170779782980,214,0 +170779783028,214,0 +170779783078,214,0 +170779783127,214,0 +170779783175,214,0 +170779783223,215,0 +170779783271,215,0 +170779783319,215,0 +170779783369,215,0 +170779783417,215,0 +170779783465,215,0 +170779783514,215,0 +170779783562,215,0 +170779783612,214,0 +170779783661,214,0 +170779783709,214,0 +170779783757,214,0 +170779783806,214,0 +170779783854,214,0 +170779783902,214,0 +170779783950,214,0 +170779783998,215,0 +170779784046,215,0 +170779784095,215,0 +170779784143,215,0 +170779784193,215,0 +170779784241,215,0 +170779784290,215,0 +170779784338,215,0 +170779784386,215,0 +170779784434,214,0 +170779784484,214,0 +170779784532,214,0 +170779784579,214,0 +170779784629,214,0 +170779784677,214,0 +170779784725,214,0 +170779784774,214,0 +170779784822,214,0 +170779784870,214,0 +170779784918,214,0 +170779784966,214,0 +170779785014,214,0 +170779785062,215,0 +170779785110,214,0 +170779785158,215,0 +170779785205,215,0 +170779785253,215,0 +170779785301,214,0 +170779785351,214,0 +170779785400,214,0 +170779785448,214,0 +170779785496,214,0 +170779785544,214,0 +170779785592,214,0 +170779785642,214,0 +170779785691,214,0 +170779785741,214,0 +170779785789,215,0 +170779785836,215,0 +170779785884,214,0 +170779785932,214,0 +170779785982,214,0 +170779786030,214,0 +170779786078,214,0 +170779786125,214,0 +170779786173,214,0 +170779786223,214,0 +170779786271,214,0 +170779786319,214,0 +170779786367,214,0 +170779786415,214,0 +170779786464,214,0 +170779786512,214,0 +170779786561,214,0 +170779786611,214,0 +170779786659,215,0 +170779786707,214,0 +170779786754,215,0 +170779786802,214,0 +170779786850,215,0 +170779786900,214,0 +170779786948,214,0 +170779786997,214,0 +170779787045,214,0 +170779787095,214,0 +170779787144,214,0 +170779787192,214,0 +170779787242,214,0 +170779787289,215,0 +170779787337,215,0 +170779787385,215,0 +170779787433,215,0 +170779787481,215,0 +170779787529,215,0 +170779787577,215,0 +170779787626,215,0 +170779787674,214,0 +170779787724,214,0 +170779787773,214,0 +170779787823,214,0 +170779787872,214,0 +170779787921,214,0 +170779787971,214,0 +170779788020,214,0 +170779788068,215,0 +170779788116,215,0 +170779788164,215,0 +170779788214,215,0 +170779788262,215,0 +170779788309,215,0 +170779788357,215,0 +170779788405,215,0 +170779788453,215,0 +170779788501,214,0 +170779788549,215,0 +170779788599,215,0 +170779788647,215,0 +170779788696,215,0 +170779788744,215,0 +170779788792,215,0 +170779788840,215,0 +170779788888,215,0 +170779788937,215,0 +170779788987,215,0 +170779789036,215,0 +170779789086,215,0 +170779789134,215,0 +170779789181,215,0 +170779789231,215,0 +170779789279,214,0 +170779789327,214,0 +170779789376,214,0 +170779789424,214,0 +170779789472,214,0 +170779789520,215,0 +170779789570,214,0 +170779789618,215,0 +170779789667,215,0 +170779789715,215,0 +170779789763,215,0 +170779789812,215,0 +170779789862,215,0 +170779789910,215,0 +170779789958,215,0 +170779790006,215,0 +170779790054,214,0 +170779790103,214,0 +170779790151,214,0 +170779790201,214,0 +170779790248,214,0 +170779790296,214,0 +170779790344,214,0 +170779790394,214,0 +170779790442,214,0 +170779790490,214,0 +170779790539,215,0 +170779790587,215,0 +170779790636,215,0 +170779790686,215,0 +170779790734,215,0 +170779790783,215,0 +170779790833,215,0 +170779790881,214,0 +170779790930,213,0 +170779790980,214,0 +170779791028,214,0 +170779791075,214,0 +170779791125,214,0 +170779791174,214,0 +170779791222,214,0 +170779791270,214,0 +170779791318,214,0 +170779791367,214,0 +170779791417,214,0 +170779791465,214,0 +170779791512,214,0 +170779791562,215,0 +170779791610,214,0 +170779791657,214,0 +170779791705,214,0 +170779791753,214,0 +170779791803,214,0 +170779791850,214,0 +170779791898,214,0 +170779791946,214,0 +170779791994,214,0 +170779792042,214,0 +170779792091,214,0 +170779792139,214,0 +170779792187,214,0 +170779792235,215,0 +170779792282,214,0 +170779792330,215,0 +170779792378,215,0 +170779792426,215,0 +170779792474,214,0 +170779792522,213,0 +170779792570,213,0 +170779792620,214,0 +170779792667,214,0 +170779792717,214,0 +170779792766,214,0 +170779792816,214,0 +170779792864,214,0 +170779792913,214,0 +170779792961,214,0 +170779793009,215,0 +170779793057,214,0 +170779793105,214,0 +170779793153,214,0 +170779793202,215,0 +170779793252,214,0 +170779793300,214,0 +170779793348,213,0 +170779793396,214,0 +170779793443,214,0 +170779793491,214,0 +170779793539,213,0 +170779793587,214,0 +170779793637,214,0 +170779793686,214,0 +170779793735,214,0 +170779793783,214,0 +170779793831,214,0 +170779793879,214,0 +170779793927,214,0 +170779793975,214,0 +170779794023,214,0 +170779794070,214,0 +170779794118,214,0 +170779794166,213,0 +170779794214,214,0 +170779794263,214,0 +170779794311,214,0 +170779794359,214,0 +170779794407,214,0 +170779794455,214,0 +170779794503,214,0 +170779794551,214,0 +170779794598,214,0 +170779794646,215,0 +170779794694,214,0 +170779794742,215,0 +170779794790,215,0 +170779794839,215,0 +170779794887,214,0 +170779794936,214,0 +170779794986,214,0 +170779795034,214,0 +170779795082,214,0 +170779795129,214,0 +170779795177,214,0 +170779795227,215,0 +170779795275,215,0 +170779795323,215,0 +170779795370,214,0 +170779795418,215,0 +170779795466,215,0 +170779795514,215,0 +170779795562,215,0 +170779795610,215,0 +170779795657,215,0 +170779795705,215,0 +170779795753,215,0 +170779795801,215,0 +170779795849,215,0 +170779795899,215,0 +170779795948,215,0 +170779795996,215,0 +170779796045,215,0 +170779796093,215,0 +170779796141,215,0 +170779796189,215,0 +170779796239,215,0 +170779796287,215,0 +170779796336,215,0 +170779796384,215,0 +170779796434,215,0 +170779796483,214,0 +170779796533,214,0 +170779796580,214,0 +170779796628,214,0 +170779796676,214,0 +170779796724,215,0 +170779796772,215,0 +170779796820,215,0 +170779796868,215,0 +170779796916,215,0 +170779796965,215,0 +170779797013,215,0 +170779797061,215,0 +170779797111,215,0 +170779797158,215,0 +170779797208,215,0 +170779797256,215,0 +170779797305,214,0 +170779797353,214,0 +170779797401,214,0 +170779797449,214,0 +170779797497,214,0 +170779797545,214,0 +170779797593,215,0 +170779797641,214,0 +170779797688,214,0 +170779797736,214,0 +170779797784,215,0 +170779797832,215,0 +170779797880,215,0 +170779797928,215,0 +170779797976,215,0 +170779798024,215,0 +170779798073,214,0 +170779798123,214,0 +170779798172,214,0 +170779798220,214,0 +170779798268,214,0 +170779798316,214,0 +170779798364,214,0 +170779798412,214,0 +170779798460,214,0 +170779798507,215,0 +170779798555,215,0 +170779798605,215,0 +170779798654,215,0 +170779798702,215,0 +170779798752,215,0 +170779798800,215,0 +170779798849,215,0 +170779798897,214,0 +170779798947,214,0 +170779798996,214,0 +170779799046,214,0 +170779799094,214,0 +170779799142,214,0 +170779799191,214,0 +170779799239,214,0 +170779799289,215,0 +170779799337,215,0 +170779799386,215,0 +170779799436,215,0 +170779799485,215,0 +170779799533,215,0 +170779799581,215,0 +170779799629,215,0 +170779799678,215,0 +170779799726,214,0 +170779799774,214,0 +170779799822,214,0 +170779799869,214,0 +170779799917,214,0 +170779799965,214,0 +170779800013,214,0 +170779800061,214,0 +170779800109,215,0 +170779800157,215,0 +170779800205,214,0 +170779800252,215,0 +170779800300,214,0 +170779800348,214,0 +170779800396,215,0 +170779800444,215,0 +170779800494,214,0 +170779800543,214,0 +170779800591,214,0 +170779800640,214,0 +170779800690,214,0 +170779800738,214,0 +170779800787,214,0 +170779800837,214,0 +170779800885,214,0 +170779800933,214,0 +170779800982,214,0 +170779801030,214,0 +170779801078,215,0 +170779801126,215,0 +170779801174,214,0 +170779801223,214,0 +170779801273,215,0 +170779801321,214,0 +170779801370,214,0 +170779801418,214,0 +170779801466,214,0 +170779801514,214,0 +170779801564,214,0 +170779801611,214,0 +170779801659,214,0 +170779801707,214,0 +170779801757,214,0 +170779801804,214,0 +170779801852,215,0 +170779801900,215,0 +170779801948,215,0 +170779801996,215,0 +170779802044,215,0 +170779802091,215,0 +170779802139,214,0 +170779802189,214,0 +170779802236,214,0 +170779802284,214,0 +170779802332,214,0 +170779802380,214,0 +170779802428,214,0 +170779802476,214,0 +170779802525,214,0 +170779802573,215,0 +170779802621,215,0 +170779802669,215,0 +170779802717,215,0 +170779802766,215,0 +170779802814,215,0 +170779802862,215,0 +170779802910,214,0 +170779802958,214,0 +170779803006,214,0 +170779803055,214,0 +170779803103,214,0 +170779803153,214,0 +170779803202,214,0 +170779803250,214,0 +170779803298,214,0 +170779803346,214,0 +170779803393,215,0 +170779803441,215,0 +170779803489,215,0 +170779803537,215,0 +170779803585,215,0 +170779803633,215,0 +170779803680,214,0 +170779803728,214,0 +170779803776,214,0 +170779803824,214,0 +170779803872,214,0 +170779803920,214,0 +170779803968,214,0 +170779804016,214,0 +170779804065,214,0 +170779804113,214,0 +170779804162,214,0 +170779804210,215,0 +170779804260,215,0 +170779804310,215,0 +170779804359,215,0 +170779804407,215,0 +170779804455,215,0 +170779804503,214,0 +170779804551,214,0 +170779804598,214,0 +170779804646,214,0 +170779804694,214,0 +170779804744,214,0 +170779804791,214,0 +170779804839,214,0 +170779804887,214,0 +170779804937,214,0 +170779804986,215,0 +170779805035,215,0 +170779805083,214,0 +170779805133,215,0 +170779805181,215,0 +170779805228,215,0 +170779805278,215,0 +170779805326,214,0 +170779805374,214,0 +170779805421,214,0 +170779805471,214,0 +170779805519,214,0 +170779805567,214,0 +170779805615,214,0 +170779805663,214,0 +170779805711,214,0 +170779805760,214,0 +170779805808,214,0 +170779805856,214,0 +170779805904,214,0 +170779805952,214,0 +170779806000,215,0 +170779806048,215,0 +170779806097,214,0 +170779806147,214,0 +170779806195,214,0 +170779806243,214,0 +170779806292,214,0 +170779806342,214,0 +170779806391,214,0 +170779806439,214,0 +170779806487,214,0 +170779806535,214,0 +170779806583,214,0 +170779806631,215,0 +170779806680,215,0 +170779806728,215,0 +170779806776,215,0 +170779806824,215,0 +170779806873,214,0 +170779806921,214,0 +170779806971,214,0 +170779807018,214,0 +170779807068,214,0 +170779807116,215,0 +170779807164,215,0 +170779807213,215,0 +170779807261,215,0 +170779807309,215,0 +170779807357,215,0 +170779807405,215,0 +170779807454,215,0 +170779807502,215,0 +170779807550,215,0 +170779807598,215,0 +170779807645,215,0 +170779807695,215,0 +170779807743,215,0 +170779807790,215,0 +170779807838,215,0 +170779807886,215,0 +170779807934,215,0 +170779807982,215,0 +170779808032,215,0 +170779808081,215,0 +170779808131,215,0 +170779808179,215,0 +170779808228,215,0 +170779808278,215,0 +170779808326,215,0 +170779808374,215,0 +170779808422,215,0 +170779808470,215,0 +170779808519,215,0 +170779808568,215,0 +170779808616,215,0 +170779808664,215,0 +170779808714,215,0 +170779808762,215,0 +170779808810,215,0 +170779808858,215,0 +170779808905,215,0 +170779808953,215,0 +170779809001,215,0 +170779809051,215,0 +170779809099,215,0 +170779809146,215,0 +170779809194,215,0 +170779809244,215,0 +170779809292,214,0 +170779809339,214,0 +170779809389,214,0 +170779809437,214,0 +170779809484,214,0 +170779809532,214,0 +170779809582,214,0 +170779809629,214,0 +170779809677,214,0 +170779809727,215,0 +170779809776,214,0 +170779809824,214,0 +170779809874,215,0 +170779809922,215,0 +170779809970,214,0 +170779810018,215,0 +170779810066,214,0 +170779810114,214,0 +170779810161,213,0 +170779810211,213,0 +170779810259,213,0 +170779810307,214,0 +170779810355,214,0 +170779810402,214,0 +170779810450,214,0 +170779810500,214,0 +170779810547,214,0 +170779810595,214,0 +170779810643,214,0 +170779810691,214,0 +170779810739,214,0 +170779810789,214,0 +170779810838,214,0 +170779810887,215,0 +170779810935,213,0 +170779810985,213,0 +170779811033,213,0 +170779811081,214,0 +170779811129,214,0 +170779811177,214,0 +170779811225,214,0 +170779811273,214,0 +170779811320,214,0 +170779811368,214,0 +170779811416,214,0 +170779811464,214,0 +170779811514,214,0 +170779811563,214,0 +170779811613,215,0 +170779811660,215,0 +170779811710,214,0 +170779811758,213,0 +170779811806,213,0 +170779811854,214,0 +170779811903,214,0 +170779811951,214,0 +170779811999,214,0 +170779812047,214,0 +170779812096,214,0 +170779812144,214,0 +170779812192,214,0 +170779812240,214,0 +170779812288,214,0 +170779812335,214,0 +170779812383,214,0 +170779812431,214,0 +170779812479,215,0 +170779812527,214,0 +170779812575,213,0 +170779812623,214,0 +170779812670,214,0 +170779812718,214,0 +170779812766,214,0 +170779812814,214,0 +170779812862,214,0 +170779812911,214,0 +170779812959,214,0 +170779813007,214,0 +170779813055,214,0 +170779813103,214,0 +170779813151,214,0 +170779813200,214,0 +170779813250,214,0 +170779813297,214,0 +170779813345,215,0 +170779813393,215,0 +170779813443,215,0 +170779813492,215,0 +170779813540,215,0 +170779813588,215,0 +170779813636,215,0 +170779813684,215,0 +170779813732,214,0 +170779813781,214,0 +170779813829,214,0 +170779813877,214,0 +170779813927,214,0 +170779813974,214,0 +170779814024,214,0 +170779814073,214,0 +170779814121,214,0 +170779814169,214,0 +170779814219,214,0 +170779814267,215,0 +170779814316,214,0 +170779814366,215,0 +170779814415,214,0 +170779814465,214,0 +170779814513,214,0 +170779814561,214,0 +170779814608,214,0 +170779814656,214,0 +170779814706,214,0 +170779814755,214,0 +170779814805,214,0 +170779814853,214,0 +170779814902,214,0 +170779814950,214,0 +170779814998,215,0 +170779815048,215,0 +170779815096,215,0 +170779815145,215,0 +170779815193,215,0 +170779815241,215,0 +170779815290,214,0 +170779815338,214,0 +170779815388,214,0 +170779815436,214,0 +170779815484,214,0 +170779815532,214,0 +170779815581,214,0 +170779815629,214,0 +170779815677,214,0 +170779815726,214,0 +170779815774,214,0 +170779815822,214,0 +170779815870,215,0 +170779815920,215,0 +170779815968,215,0 +170779816017,215,0 +170779816066,215,0 +170779816114,214,0 +170779816162,214,0 +170779816212,214,0 +170779816260,214,0 +170779816309,214,0 +170779816357,214,0 +170779816407,214,0 +170779816454,214,0 +170779816502,214,0 +170779816550,214,0 +170779816598,215,0 +170779816647,215,0 +170779816695,215,0 +170779816745,215,0 +170779816793,215,0 +170779816842,214,0 +170779816890,215,0 +170779816940,214,0 +170779816988,214,0 +170779817036,214,0 +170779817084,214,0 +170779817132,214,0 +170779817180,214,0 +170779817228,214,0 +170779817277,214,0 +170779817325,214,0 +170779817375,214,0 +170779817422,214,0 +170779817472,214,0 +170779817520,215,0 +170779817569,215,0 +170779817617,215,0 +170779817665,215,0 +170779817713,214,0 +170779817761,214,0 +170779817809,214,0 +170779817856,214,0 +170779817904,214,0 +170779817952,214,0 +170779818000,214,0 +170779818049,214,0 +170779818099,214,0 +170779818147,214,0 +170779818195,214,0 +170779818244,215,0 +170779818292,215,0 +170779818340,215,0 +170779818388,215,0 +170779818436,214,0 +170779818483,215,0 +170779818531,214,0 +170779818579,214,0 +170779818628,214,0 +170779818676,214,0 +170779818724,214,0 +170779818772,214,0 +170779818820,214,0 +170779818869,214,0 +170779818917,214,0 +170779818965,215,0 +170779819014,215,0 +170779819062,215,0 +170779819112,215,0 +170779819160,215,0 +170779819209,215,0 +170779819257,215,0 +170779819305,214,0 +170779819353,214,0 +170779819402,214,0 +170779819450,214,0 +170779819500,214,0 +170779819549,214,0 +170779819599,214,0 +170779819648,215,0 +170779819696,215,0 +170779819746,215,0 +170779819793,215,0 +170779819843,215,0 +170779819891,215,0 +170779819939,215,0 +170779819987,215,0 +170779820036,215,0 +170779820084,215,0 +170779820134,214,0 +170779820182,214,0 +170779820230,215,0 +170779820277,215,0 +170779820327,214,0 +170779820377,215,0 +170779820424,215,0 +170779820474,215,0 +170779820522,215,0 +170779820570,215,0 +170779820618,215,0 +170779820667,215,0 +170779820715,215,0 +170779820765,215,0 +170779820814,215,0 +170779820862,215,0 +170779820912,214,0 +170779820961,214,0 +170779821011,214,0 +170779821060,214,0 +170779821108,214,0 +170779821156,214,0 +170779821206,214,0 +170779821255,215,0 +170779821305,215,0 +170779821354,215,0 +170779821404,215,0 +170779821452,215,0 +170779821500,215,0 +170779821548,215,0 +170779821596,214,0 +170779821645,215,0 +170779821693,215,0 +170779821743,214,0 +170779821790,214,0 +170779821840,214,0 +170779821889,214,0 +170779821939,214,0 +170779821988,214,0 +170779822036,214,0 +170779822084,214,0 +170779822133,214,0 +170779822181,214,0 +170779822231,215,0 +170779822279,214,0 +170779822328,215,0 +170779822376,215,0 +170779822425,214,0 +170779822473,215,0 +170779822521,214,0 +170779822571,214,0 +170779822620,214,0 +170779822668,214,0 +170779822716,214,0 +170779822764,214,0 +170779822812,214,0 +170779822860,214,0 +170779822909,214,0 +170779822959,214,0 +170779823008,215,0 +170779823056,214,0 +170779823104,215,0 +170779823152,215,0 +170779823200,215,0 +170779823248,215,0 +170779823297,214,0 +170779823345,214,0 +170779823395,214,0 +170779823443,214,0 +170779823491,214,0 +170779823538,214,0 +170779823586,214,0 +170779823636,214,0 +170779823685,214,0 +170779823733,214,0 +170779823781,214,0 +170779823831,214,0 +170779823879,215,0 +170779823928,214,0 +170779823976,214,0 +170779824024,215,0 +170779824072,214,0 +170779824120,214,0 +170779824168,214,0 +170779824215,214,0 +170779824263,214,0 +170779824313,214,0 +170779824361,214,0 +170779824410,214,0 +170779824458,214,0 +170779824506,214,0 +170779824554,214,0 +170779824604,214,0 +170779824653,215,0 +170779824703,215,0 +170779824752,215,0 +170779824801,215,0 +170779824849,215,0 +170779824897,215,0 +170779824945,214,0 +170779824995,214,0 +170779825042,214,0 +170779825090,214,0 +170779825138,214,0 +170779825186,214,0 +170779825234,214,0 +170779825283,214,0 +170779825331,214,0 +170779825381,214,0 +170779825430,215,0 +170779825478,215,0 +170779825526,215,0 +170779825575,215,0 +170779825625,215,0 +170779825673,215,0 +170779825722,215,0 +170779825770,214,0 +170779825818,214,0 +170779825866,214,0 +170779825914,214,0 +170779825963,214,0 +170779826011,214,0 +170779826059,214,0 +170779826107,214,0 +170779826156,214,0 +170779826206,215,0 +170779826254,215,0 +170779826303,215,0 +170779826351,215,0 +170779826401,215,0 +170779826450,215,0 +170779826498,215,0 +170779826546,214,0 +170779826594,214,0 +170779826642,214,0 +170779826690,214,0 +170779826739,214,0 +170779826789,214,0 +170779826837,214,0 +170779826886,214,0 +170779826934,214,0 +170779826982,214,0 +170779827030,215,0 +170779827078,215,0 +170779827125,214,0 +170779827175,215,0 +170779827223,215,0 +170779827271,214,0 +170779827319,214,0 +170779827368,214,0 +170779827417,214,0 +170779827465,214,0 +170779827513,214,0 +170779827561,214,0 +170779827609,214,0 +170779827656,214,0 +170779827704,215,0 +170779827752,215,0 +170779827800,215,0 +170779827847,215,0 +170779827895,215,0 +170779827943,215,0 +170779827991,215,0 +170779828041,215,0 +170779828090,215,0 +170779828138,214,0 +170779828186,214,0 +170779828236,214,0 +170779828284,214,0 +170779828331,214,0 +170779828381,214,0 +170779828430,214,0 +170779828478,214,0 +170779828526,215,0 +170779828574,215,0 +170779828623,214,0 +170779828671,215,0 +170779828721,215,0 +170779828770,215,0 +170779828818,215,0 +170779828868,215,0 +170779828917,214,0 +170779828967,214,0 +170779829015,214,0 +170779829063,214,0 +170779829111,214,0 +170779829160,214,0 +170779829208,214,0 +170779829258,214,0 +170779829305,214,0 +170779829353,214,0 +170779829401,214,0 +170779829449,215,0 +170779829497,214,0 +170779829544,214,0 +170779829594,214,0 +170779829642,215,0 +170779829691,215,0 +170779829739,214,0 +170779829787,214,0 +170779829835,214,0 +170779829883,214,0 +170779829931,214,0 +170779829980,214,0 +170779830028,214,0 +170779830078,214,0 +170779830127,214,0 +170779830177,214,0 +170779830225,214,0 +170779830273,214,0 +170779830321,214,0 +170779830370,214,0 +170779830419,214,0 +170779830467,214,0 +170779830515,215,0 +170779830563,214,0 +170779830611,214,0 +170779830660,213,0 +170779830708,214,0 +170779830756,214,0 +170779830805,214,0 +170779830853,214,0 +170779830901,214,0 +170779830949,214,0 +170779830999,214,0 +170779831048,214,0 +170779831098,215,0 +170779831147,215,0 +170779831195,215,0 +170779831243,215,0 +170779831292,214,0 +170779831340,214,0 +170779831390,214,0 +170779831439,214,0 +170779831487,214,0 +170779831535,214,0 +170779831583,214,0 +170779831631,214,0 +170779831680,214,0 +170779831728,215,0 +170779831778,215,0 +170779831827,215,0 +170779831875,215,0 +170779831925,215,0 +170779831973,215,0 +170779832020,215,0 +170779832070,215,0 +170779832119,215,0 +170779832169,214,0 +170779832217,214,0 +170779832265,215,0 +170779832314,215,0 +170779832362,215,0 +170779832412,215,0 +170779832461,215,0 +170779832509,215,0 +170779832559,215,0 +170779832608,215,0 +170779832656,215,0 +170779832704,215,0 +170779832754,215,0 +170779832801,215,0 +170779832849,215,0 +170779832897,215,0 +170779832945,214,0 +170779832995,214,0 +170779833044,214,0 +170779833092,214,0 +170779833140,214,0 +170779833188,215,0 +170779833236,214,0 +170779833285,215,0 +170779833333,215,0 +170779833381,215,0 +170779833429,215,0 +170779833477,215,0 +170779833525,215,0 +170779833573,215,0 +170779833621,215,0 +170779833669,215,0 +170779833717,214,0 +170779833766,214,0 +170779833816,214,0 +170779833864,214,0 +170779833913,214,0 +170779833961,214,0 +170779834011,214,0 +170779834060,215,0 +170779834108,214,0 +170779834157,214,0 +170779834207,215,0 +170779834255,214,0 +170779834303,215,0 +170779834351,215,0 +170779834399,215,0 +170779834447,215,0 +170779834494,214,0 +170779834542,214,0 +170779834590,213,0 +170779834638,214,0 +170779834686,214,0 +170779834734,214,0 +170779834782,214,0 +170779834830,214,0 +170779834878,214,0 +170779834926,214,0 +170779834975,214,0 +170779835023,214,0 +170779835071,214,0 +170779835119,214,0 +170779835167,215,0 +170779835214,214,0 +170779835262,215,0 +170779835312,215,0 +170779835359,214,0 +170779835407,214,0 +170779835455,214,0 +170779835503,214,0 +170779835551,214,0 +170779835598,214,0 +170779835646,214,0 +170779835694,214,0 +170779835742,214,0 +170779835791,214,0 +170779835839,214,0 +170779835888,215,0 +170779835936,215,0 +170779835984,215,0 +170779836032,215,0 +170779836080,215,0 +170779836127,214,0 +170779836175,214,0 +170779836223,214,0 +170779836271,214,0 +170779836319,214,0 +170779836367,214,0 +170779836415,214,0 +170779836463,214,0 +170779836512,214,0 +170779836560,214,0 +170779836608,215,0 +170779836657,215,0 +170779836705,215,0 +170779836753,215,0 +170779836801,214,0 +170779836849,215,0 +170779836897,215,0 +170779836945,214,0 +170779836993,214,0 +170779837041,214,0 +170779837088,214,0 +170779837136,214,0 +170779837184,214,0 +170779837232,214,0 +170779837280,214,0 +170779837330,215,0 +170779837378,215,0 +170779837425,215,0 +170779837475,215,0 +170779837523,215,0 +170779837572,215,0 +170779837620,215,0 +170779837668,215,0 +170779837716,215,0 +170779837764,214,0 +170779837812,214,0 +170779837860,214,0 +170779837908,214,0 +170779837957,215,0 +170779838005,215,0 +170779838053,215,0 +170779838101,215,0 +170779838149,215,0 +170779838197,215,0 +170779838245,215,0 +170779838293,215,0 +170779838340,215,0 +170779838388,215,0 +170779838436,215,0 +170779838484,215,0 +170779838532,215,0 +170779838580,214,0 +170779838628,214,0 +170779838676,214,0 +170779838724,214,0 +170779838773,214,0 +170779838821,214,0 +170779838869,215,0 +170779838918,215,0 +170779838966,215,0 +170779839014,215,0 +170779839062,215,0 +170779839109,215,0 +170779839158,215,0 +170779839206,215,0 +170779839254,215,0 +170779839303,214,0 +170779839351,214,0 +170779839401,214,0 +170779839450,214,0 +170779839499,214,0 +170779839549,214,0 +170779839597,214,0 +170779839645,214,0 +170779839693,214,0 +170779839741,214,0 +170779839790,214,0 +170779839839,214,0 +170779839887,214,0 +170779839935,214,0 +170779839983,214,0 +170779840031,215,0 +170779840079,214,0 +170779840127,214,0 +170779840175,214,0 +170779840225,213,0 +170779840274,213,0 +170779840322,214,0 +170779840370,214,0 +170779840418,214,0 +170779840466,214,0 +170779840514,214,0 +170779840562,214,0 +170779840611,214,0 +170779840659,214,0 +170779840708,214,0 +170779840758,215,0 +170779840806,214,0 +170779840855,214,0 +170779840903,215,0 +170779840951,215,0 +170779840999,214,0 +170779841047,214,0 +170779841096,214,0 +170779841144,214,0 +170779841192,214,0 +170779841240,214,0 +170779841290,214,0 +170779841339,214,0 +170779841387,214,0 +170779841435,215,0 +170779841483,215,0 +170779841532,214,0 +170779841580,215,0 +170779841630,215,0 +170779841678,215,0 +170779841727,215,0 +170779841775,214,0 +170779841823,213,0 +170779841871,214,0 +170779841920,214,0 +170779841968,214,0 +170779842016,214,0 +170779842064,214,0 +170779842111,214,0 +170779842159,214,0 +170779842207,214,0 +170779842255,214,0 +170779842303,214,0 +170779842352,214,0 +170779842400,215,0 +170779842448,215,0 +170779842496,214,0 +170779842544,214,0 +170779842591,214,0 +170779842641,213,0 +170779842690,214,0 +170779842738,214,0 +170779842786,214,0 +170779842834,214,0 +170779842882,214,0 +170779842930,214,0 +170779842979,214,0 +170779843027,214,0 +170779843076,214,0 +170779843126,214,0 +170779843174,215,0 +170779843222,215,0 +170779843271,215,0 +170779843321,215,0 +170779843369,214,0 +170779843417,214,0 +170779843466,214,0 +170779843516,214,0 +170779843564,214,0 +170779843613,214,0 +170779843662,214,0 +170779843710,214,0 +170779843758,214,0 +170779843808,214,0 +170779843856,215,0 +170779843905,215,0 +170779843953,215,0 +170779844003,215,0 +170779844050,214,0 +170779844098,215,0 +170779844146,214,0 +170779844194,214,0 +170779844242,214,0 +170779844291,214,0 +170779844339,215,0 +170779844387,215,0 +170779844435,215,0 +170779844484,215,0 +170779844532,215,0 +170779844582,215,0 +170779844630,215,0 +170779844678,215,0 +170779844727,215,0 +170779844775,215,0 +170779844823,215,0 +170779844873,215,0 +170779844920,215,0 +170779844968,215,0 +170779845018,215,0 +170779845067,215,0 +170779845115,215,0 +170779845163,215,0 +170779845211,215,0 +170779845259,215,0 +170779845309,215,0 +170779845357,215,0 +170779845405,215,0 +170779845453,215,0 +170779845501,215,0 +170779845550,215,0 +170779845600,215,0 +170779845649,215,0 +170779845698,215,0 +170779845748,214,0 +170779845796,214,0 +170779845844,214,0 +170779845892,214,0 +170779845940,214,0 +170779845989,214,0 +170779846037,214,0 +170779846086,214,0 +170779846136,215,0 +170779846185,214,0 +170779846233,215,0 +170779846281,215,0 +170779846331,215,0 +170779846379,215,0 +170779846428,215,0 +170779846476,215,0 +170779846524,214,0 +170779846573,214,0 +170779846621,214,0 +170779846669,214,0 +170779846717,214,0 +170779846765,214,0 +170779846813,214,0 +170779846862,214,0 +170779846911,214,0 +170779846959,214,0 +170779847007,215,0 +170779847057,214,0 +170779847106,215,0 +170779847154,215,0 +170779847202,215,0 +170779847250,215,0 +170779847299,215,0 +170779847347,214,0 +170779847395,214,0 +170779847443,214,0 +170779847490,214,0 +170779847538,214,0 +170779847588,214,0 +170779847637,214,0 +170779847685,214,0 +170779847733,215,0 +170779847781,214,0 +170779847829,215,0 +170779847877,215,0 +170779847926,215,0 +170779847974,215,0 +170779848024,215,0 +170779848072,215,0 +170779848121,215,0 +170779848169,214,0 +170779848219,214,0 +170779848267,214,0 +170779848315,214,0 +170779848363,214,0 +170779848411,214,0 +170779848458,214,0 +170779848506,214,0 +170779848556,214,0 +170779848604,214,0 +170779848652,214,0 +170779848700,215,0 +170779848749,215,0 +170779848797,215,0 +170779848847,215,0 +170779848894,215,0 +170779848944,214,0 +170779848993,214,0 +170779849041,214,0 +170779849091,214,0 +170779849139,214,0 +170779849187,214,0 +170779849236,214,0 +170779849286,214,0 +170779849335,214,0 +170779849385,215,0 +170779849433,214,0 +170779849482,215,0 +170779849532,214,0 +170779849580,215,0 +170779849627,215,0 +170779849675,215,0 +170779849725,215,0 +170779849773,214,0 +170779849822,214,0 +170779849870,214,0 +170779849919,214,0 +170779849967,214,0 +170779850015,214,0 +170779850063,214,0 +170779850111,214,0 +170779850161,214,0 +170779850210,214,0 +170779850260,214,0 +170779850308,214,0 +170779850356,215,0 +170779850404,215,0 +170779850451,215,0 +170779850499,215,0 +170779850549,215,0 +170779850597,214,0 +170779850645,214,0 +170779850694,214,0 +170779850742,214,0 +170779850790,214,0 +170779850838,214,0 +170779850886,214,0 +170779850935,214,0 +170779850983,214,0 +170779851033,214,0 +170779851081,215,0 +170779851129,215,0 +170779851177,215,0 +170779851225,214,0 +170779851272,215,0 +170779851320,215,0 +170779851368,214,0 +170779851418,214,0 +170779851467,214,0 +170779851515,214,0 +170779851565,214,0 +170779851614,214,0 +170779851664,214,0 +170779851713,214,0 +170779851761,214,0 +170779851809,214,0 +170779851857,214,0 +170779851907,215,0 +170779851956,215,0 +170779852004,215,0 +170779852052,214,0 +170779852101,215,0 +170779852151,214,0 +170779852199,214,0 +170779852248,214,0 +170779852296,214,0 +170779852346,214,0 +170779852394,214,0 +170779852443,214,0 +170779852491,214,0 +170779852539,214,0 +170779852589,214,0 +170779852638,214,0 +170779852688,214,0 +170779852736,214,0 +170779852785,215,0 +170779852833,215,0 +170779852882,214,0 +170779852930,214,0 +170779852980,214,0 +170779853027,214,0 +170779853075,214,0 +170779853123,214,0 +170779853171,214,0 +170779853219,214,0 +170779853267,214,0 +170779853315,214,0 +170779853363,214,0 +170779853411,214,0 +170779853460,214,0 +170779853508,215,0 +170779853556,215,0 +170779853604,215,0 +170779853652,215,0 +170779853700,215,0 +170779853748,214,0 +170779853796,214,0 +170779853844,214,0 +170779853891,214,0 +170779853939,214,0 +170779853987,214,0 +170779854035,214,0 +170779854085,214,0 +170779854133,214,0 +170779854181,214,0 +170779854228,214,0 +170779854276,214,0 +170779854324,214,0 +170779854374,215,0 +170779854422,215,0 +170779854470,215,0 +170779854519,215,0 +170779854569,214,0 +170779854617,213,0 +170779854665,213,0 +170779854713,214,0 +170779854761,214,0 +170779854809,214,0 +170779854856,214,0 +170779854906,214,0 +170779854954,214,0 +170779855003,214,0 +170779855053,214,0 +170779855102,214,0 +170779855152,214,0 +170779855200,214,0 +170779855248,214,0 +170779855296,215,0 +170779855345,214,0 +170779855395,214,0 +170779855443,214,0 +170779855490,214,0 +170779855538,214,0 +170779855588,214,0 +170779855637,214,0 +170779855685,214,0 +170779855735,214,0 +170779855783,214,0 +170779855832,214,0 +170779855880,214,0 +170779855928,215,0 +170779855976,215,0 +170779856025,215,0 +170779856073,215,0 +170779856121,215,0 +170779856169,214,0 +170779856217,214,0 +170779856265,215,0 +170779856313,214,0 +170779856361,215,0 +170779856411,215,0 +170779856460,215,0 +170779856508,215,0 +170779856556,215,0 +170779856604,215,0 +170779856653,215,0 +170779856701,215,0 +170779856751,215,0 +170779856799,215,0 +170779856847,215,0 +170779856894,215,0 +170779856944,215,0 +170779856992,215,0 +170779857040,215,0 +170779857088,215,0 +170779857136,215,0 +170779857185,215,0 +170779857235,215,0 +170779857283,215,0 +170779857331,215,0 +170779857379,215,0 +170779857426,215,0 +170779857474,215,0 +170779857524,215,0 +170779857572,215,0 +170779857620,215,0 +170779857669,215,0 +170779857717,215,0 +170779857765,215,0 +170779857813,214,0 +170779857861,214,0 +170779857910,214,0 +170779857958,214,0 +170779858008,214,0 +170779858057,214,0 +170779858107,215,0 +170779858155,214,0 +170779858202,215,0 +170779858250,215,0 +170779858298,215,0 +170779858346,215,0 +170779858394,215,0 +170779858442,215,0 +170779858492,215,0 +170779858539,215,0 +170779858589,214,0 +170779858637,214,0 +170779858686,214,0 +170779858736,214,0 +170779858785,214,0 +170779858835,214,0 +170779858883,214,0 +170779858932,214,0 +170779858980,214,0 +170779859028,214,0 +170779859078,215,0 +170779859127,215,0 +170779859175,215,0 +170779859223,215,0 +170779859271,215,0 +170779859321,215,0 +170779859368,214,0 +170779859418,214,0 +170779859466,214,0 +170779859514,214,0 +170779859562,214,0 +170779859609,214,0 +170779859657,214,0 +170779859705,214,0 +170779859755,214,0 +170779859803,214,0 +170779859851,214,0 +170779859900,214,0 +170779859948,214,0 +170779859998,214,0 +170779860047,214,0 +170779860095,215,0 +170779860145,214,0 +170779860194,214,0 +170779860242,214,0 +170779860292,214,0 +170779860340,214,0 +170779860387,214,0 +170779860437,214,0 +170779860485,214,0 +170779860534,214,0 +170779860584,214,0 +170779860632,214,0 +170779860680,215,0 +170779860728,215,0 +170779860776,215,0 +170779860823,215,0 +170779860871,215,0 +170779860921,215,0 +170779860969,215,0 +170779861018,214,0 +170779861066,214,0 +170779861116,214,0 +170779861164,214,0 +170779861212,214,0 +170779861260,214,0 +170779861309,214,0 +170779861357,214,0 +170779861407,214,0 +170779861455,214,0 +170779861502,214,0 +170779861552,214,0 +170779861601,215,0 +170779861649,215,0 +170779861697,215,0 +170779861747,215,0 +170779861795,214,0 +170779861843,214,0 +170779861891,214,0 +170779861938,214,0 +170779861988,214,0 +170779862038,214,0 +170779862087,214,0 +170779862136,214,0 +170779862184,214,0 +170779862234,214,0 +170779862283,214,0 +170779862333,215,0 +170779862382,215,0 +170779862432,215,0 +170779862480,215,0 +170779862528,215,0 +170779862576,215,0 +170779862624,213,0 +170779862672,213,0 +170779862720,213,0 +170779862768,214,0 +170779862817,214,0 +170779862867,214,0 +170779862915,214,0 +170779862964,214,0 +170779863012,214,0 +170779863062,214,0 +170779863109,214,0 +170779863157,215,0 +170779863205,215,0 +170779863253,215,0 +170779863301,215,0 +170779863351,215,0 +170779863399,214,0 +170779863448,214,0 +170779863496,213,0 +170779863544,213,0 +170779863592,213,0 +170779863640,214,0 +170779863688,214,0 +170779863736,214,0 +170779863783,214,0 +170779863833,214,0 +170779863881,214,0 +170779863929,214,0 +170779863978,214,0 +170779864028,214,0 +170779864077,214,0 +170779864127,214,0 +170779864175,214,0 +170779864224,214,0 +170779864272,214,0 +170779864320,214,0 +170779864368,214,0 +170779864417,214,0 +170779864467,214,0 +170779864514,214,0 +170779864562,214,0 +170779864610,214,0 +170779864658,214,0 +170779864706,214,0 +170779864754,214,0 +170779864802,214,0 +170779864851,215,0 +170779864901,215,0 +170779864948,214,0 +170779864996,215,0 +170779865044,214,0 +170779865094,214,0 +170779865142,214,0 +170779865189,214,0 +170779865237,214,0 +170779865285,214,0 +170779865333,214,0 +170779865383,214,0 +170779865430,214,0 +170779865480,214,0 +170779865528,214,0 +170779865577,214,0 +170779865625,215,0 +170779865673,215,0 +170779865721,215,0 +170779865769,214,0 +170779865817,214,0 +170779865865,213,0 +170779865913,214,0 +170779865961,214,0 +170779866009,214,0 +170779866057,214,0 +170779866106,214,0 +170779866156,214,0 +170779866204,214,0 +170779866252,214,0 +170779866300,215,0 +170779866348,214,0 +170779866396,215,0 +170779866444,215,0 +170779866491,215,0 +170779866539,215,0 +170779866587,214,0 +170779866635,214,0 +170779866683,214,0 +170779866732,214,0 +170779866780,214,0 +170779866828,214,0 +170779866878,214,0 +170779866926,214,0 +170779866975,214,0 +170779867023,214,0 +170779867072,214,0 +170779867120,214,0 +170779867170,215,0 +170779867218,215,0 +170779867267,215,0 +170779867317,215,0 +170779867365,214,0 +170779867413,214,0 +170779867461,214,0 +170779867509,214,0 +170779867556,214,0 +170779867606,214,0 +170779867654,214,0 +170779867702,214,0 +170779867750,214,0 +170779867798,214,0 +170779867846,214,0 +170779867894,215,0 +170779867942,215,0 +170779867991,215,0 +170779868039,215,0 +170779868087,215,0 +170779868136,215,0 +170779868184,215,0 +170779868234,214,0 +170779868282,214,0 +170779868330,214,0 +170779868377,214,0 +170779868425,214,0 +170779868475,214,0 +170779868523,214,0 +170779868571,215,0 +170779868619,215,0 +170779868667,214,0 +170779868715,215,0 +170779868763,215,0 +170779868810,215,0 +170779868858,215,0 +170779868908,215,0 +170779868957,215,0 +170779869007,215,0 +170779869055,214,0 +170779869103,215,0 +170779869151,215,0 +170779869198,215,0 +170779869246,215,0 +170779869296,215,0 +170779869344,215,0 +170779869392,215,0 +170779869440,215,0 +170779869489,215,0 +170779869537,215,0 +170779869585,215,0 +170779869633,215,0 +170779869681,215,0 +170779869728,215,0 +170779869778,215,0 +170779869827,214,0 +170779869875,214,0 +170779869925,215,0 +170779869974,215,0 +170779870022,215,0 +170779870072,215,0 +170779870120,215,0 +170779870169,215,0 +170779870219,215,0 +170779870267,215,0 +170779870314,215,0 +170779870364,215,0 +170779870412,215,0 +170779870461,215,0 +170779870510,215,0 +170779870557,215,0 +170779870605,214,0 +170779870653,214,0 +170779870701,214,0 +170779870749,214,0 +170779870799,214,0 +170779870847,214,0 +170779870896,214,0 +170779870946,214,0 +170779870993,214,0 +170779871043,214,0 +170779871091,214,0 +170779871139,214,0 +170779871188,215,0 +170779871236,215,0 +170779871286,215,0 +170779871334,215,0 +170779871381,214,0 +170779871429,214,0 +170779871477,213,0 +170779871527,214,0 +170779871576,214,0 +170779871626,213,0 +170779871674,214,0 +170779871722,214,0 +170779871770,214,0 +170779871818,214,0 +170779871866,214,0 +170779871913,214,0 +170779871961,214,0 +170779872009,215,0 +170779872059,214,0 +170779872108,215,0 +170779872156,214,0 +170779872204,214,0 +170779872254,214,0 +170779872302,213,0 +170779872351,213,0 +170779872399,214,0 +170779872447,214,0 +170779872495,214,0 +170779872543,214,0 +170779872591,214,0 +170779872639,214,0 +170779872687,214,0 +170779872735,214,0 +170779872783,214,0 +170779872832,214,0 +170779872882,214,0 +170779872929,214,0 +170779872977,215,0 +170779873025,214,0 +170779873075,214,0 +170779873122,214,0 +170779873170,214,0 +170779873220,214,0 +170779873268,214,0 +170779873317,214,0 +170779873367,214,0 +170779873416,214,0 +170779873464,214,0 +170779873514,214,0 +170779873563,214,0 +170779873611,214,0 +170779873659,214,0 +170779873708,215,0 +170779873756,215,0 +170779873804,214,0 +170779873853,214,0 +170779873901,214,0 +170779873949,214,0 +170779873997,214,0 +170779874047,214,0 +170779874096,214,0 +170779874144,214,0 +170779874192,214,0 +170779874240,214,0 +170779874288,214,0 +170779874337,214,0 +170779874385,214,0 +170779874433,215,0 +170779874481,215,0 +170779874531,214,0 +170779874579,214,0 +170779874628,214,0 +170779874676,214,0 +170779874726,214,0 +170779874774,214,0 +170779874822,214,0 +170779874870,214,0 +170779874917,214,0 +170779874965,214,0 +170779875013,214,0 +170779875061,214,0 +170779875109,215,0 +170779875157,215,0 +170779875205,214,0 +170779875253,215,0 +170779875302,215,0 +170779875352,215,0 +170779875400,215,0 +170779875449,214,0 +170779875497,214,0 +170779875545,214,0 +170779875594,214,0 +170779875642,214,0 +170779875690,214,0 +170779875738,214,0 +170779875787,214,0 +170779875835,214,0 +170779875883,214,0 +170779875931,214,0 +170779875979,215,0 +170779876028,215,0 +170779876078,215,0 +170779876126,215,0 +170779876175,215,0 +170779876225,214,0 +170779876274,214,0 +170779876322,214,0 +170779876370,214,0 +170779876419,214,0 +170779876467,214,0 +170779876515,214,0 +170779876564,214,0 +170779876612,215,0 +170779876660,214,0 +170779876708,215,0 +170779876756,215,0 +170779876804,215,0 +170779876852,215,0 +170779876901,215,0 +170779876949,215,0 +170779876998,214,0 +170779877048,214,0 +170779877096,214,0 +170779877144,214,0 +170779877192,214,0 +170779877241,214,0 +170779877289,214,0 +170779877338,215,0 +170779877386,214,0 +170779877434,214,0 +170779877484,215,0 +170779877532,215,0 +170779877579,215,0 +170779877627,215,0 +170779877677,215,0 +170779877725,215,0 +170779877774,215,0 +170779877822,215,0 +170779877870,214,0 +170779877920,214,0 +170779877968,214,0 +170779878015,214,0 +170779878063,214,0 +170779878111,214,0 +170779878161,214,0 +170779878209,214,0 +170779878256,214,0 +170779878304,215,0 +170779878352,214,0 +170779878400,215,0 +170779878448,215,0 +170779878498,215,0 +170779878547,215,0 +170779878595,215,0 +170779878643,214,0 +170779878691,214,0 +170779878741,214,0 +170779878789,214,0 +170779878837,214,0 +170779878885,214,0 +170779878932,214,0 +170779878982,214,0 +170779879030,214,0 +170779879078,214,0 +170779879126,214,0 +170779879174,214,0 +170779879223,214,0 +170779879271,214,0 +170779879319,215,0 +170779879368,214,0 +170779879416,214,0 +170779879464,213,0 +170779879514,214,0 +170779879562,213,0 +170779879611,214,0 +170779879659,214,0 +170779879707,214,0 +170779879755,214,0 +170779879803,214,0 +170779879852,214,0 +170779879902,214,0 +170779879950,214,0 +170779879999,214,0 +170779880049,214,0 +170779880097,215,0 +170779880145,215,0 +170779880193,215,0 +170779880241,214,0 +170779880288,214,0 +170779880336,214,0 +170779880384,214,0 +170779880432,214,0 +170779880482,214,0 +170779880530,214,0 +170779880578,214,0 +170779880627,214,0 +170779880677,214,0 +170779880725,215,0 +170779880774,215,0 +170779880822,215,0 +170779880870,215,0 +170779880918,215,0 +170779880968,215,0 +170779881017,215,0 +170779881067,214,0 +170779881116,214,0 +170779881164,214,0 +170779881212,214,0 +170779881262,214,0 +170779881311,214,0 +170779881361,214,0 +170779881409,215,0 +170779881457,215,0 +170779881506,215,0 +170779881554,215,0 +170779881604,215,0 +170779881651,215,0 +170779881701,215,0 +170779881749,215,0 +170779881797,214,0 +170779881846,214,0 +170779881894,214,0 +170779881942,215,0 +170779881990,214,0 +170779882040,215,0 +170779882088,215,0 +170779882137,215,0 +170779882185,215,0 +170779882233,215,0 +170779882283,215,0 +170779882332,215,0 +170779882380,215,0 +170779882430,215,0 +170779882478,215,0 +170779882526,215,0 +170779882574,215,0 +170779882623,214,0 +170779882673,214,0 +170779882721,214,0 +170779882768,214,0 +170779882816,214,0 +170779882864,214,0 +170779882914,214,0 +170779882963,214,0 +170779883013,214,0 +170779883061,214,0 +170779883110,215,0 +170779883158,215,0 +170779883206,215,0 +170779883254,215,0 +170779883302,215,0 +170779883350,215,0 +170779883398,215,0 +170779883446,214,0 +170779883494,214,0 +170779883542,214,0 +170779883589,214,0 +170779883637,214,0 +170779883687,214,0 +170779883735,214,0 +170779883784,214,0 +170779883832,214,0 +170779883880,215,0 +170779883930,215,0 +170779883978,215,0 +170779884026,215,0 +170779884074,215,0 +170779884123,215,0 +170779884171,215,0 +170779884219,215,0 +170779884267,214,0 +170779884315,214,0 +170779884364,214,0 +170779884414,214,0 +170779884462,214,0 +170779884511,214,0 +170779884561,214,0 +170779884609,214,0 +170779884657,214,0 +170779884706,215,0 +170779884756,215,0 +170779884804,215,0 +170779884853,215,0 +170779884901,215,0 +170779884949,215,0 +170779884997,215,0 +170779885045,214,0 +170779885094,214,0 +170779885144,214,0 +170779885192,214,0 +170779885240,214,0 +170779885288,214,0 +170779885336,214,0 +170779885384,214,0 +170779885433,214,0 +170779885481,215,0 +170779885529,215,0 +170779885577,215,0 +170779885626,215,0 +170779885674,215,0 +170779885722,215,0 +170779885770,214,0 +170779885820,215,0 +170779885869,214,0 +170779885919,214,0 +170779885968,214,0 +170779886018,214,0 +170779886066,214,0 +170779886113,214,0 +170779886163,215,0 +170779886213,214,0 +170779886262,215,0 +170779886310,215,0 +170779886358,215,0 +170779886407,215,0 +170779886457,215,0 +170779886505,215,0 +170779886553,215,0 +170779886601,215,0 +170779886650,214,0 +170779886700,214,0 +170779886749,214,0 +170779886799,214,0 +170779886847,214,0 +170779886895,214,0 +170779886944,214,0 +170779886992,215,0 +170779887040,215,0 +170779887088,215,0 +170779887136,215,0 +170779887184,215,0 +170779887232,215,0 +170779887281,215,0 +170779887329,215,0 +170779887379,215,0 +170779887427,215,0 +170779887475,214,0 +170779887524,214,0 +170779887572,214,0 +170779887622,214,0 +170779887671,214,0 +170779887721,214,0 +170779887769,214,0 +170779887817,214,0 +170779887865,214,0 +170779887914,215,0 +170779887962,215,0 +170779888012,215,0 +170779888061,215,0 +170779888111,215,0 +170779888159,215,0 +170779888206,215,0 +170779888254,214,0 +170779888304,214,0 +170779888353,214,0 +170779888403,214,0 +170779888452,214,0 +170779888502,214,0 +170779888550,214,0 +170779888598,214,0 +170779888645,214,0 +170779888695,214,0 +170779888744,215,0 +170779888792,214,0 +170779888842,215,0 +170779888890,215,0 +170779888938,215,0 +170779888986,214,0 +170779889034,215,0 +170779889082,213,0 +170779889130,214,0 +170779889177,214,0 +170779889227,214,0 +170779889276,214,0 +170779889326,214,0 +170779889375,214,0 +170779889423,214,0 +170779889471,214,0 +170779889519,214,0 +170779889569,215,0 +170779889617,215,0 +170779889666,214,0 +170779889716,215,0 +170779889764,215,0 +170779889812,214,0 +170779889859,214,0 +170779889907,213,0 +170779889957,214,0 +170779890005,214,0 +170779890054,214,0 +170779890104,214,0 +170779890152,214,0 +170779890200,214,0 +170779890248,214,0 +170779890296,214,0 +170779890344,214,0 +170779890393,215,0 +170779890441,215,0 +170779890489,215,0 +170779890538,215,0 +170779890586,214,0 +170779890634,214,0 +170779890682,214,0 +170779890730,214,0 +170779890779,214,0 +170779890827,214,0 +170779890875,214,0 +170779890923,214,0 +170779890971,214,0 +170779891019,214,0 +170779891067,214,0 +170779891114,214,0 +170779891162,214,0 +170779891210,214,0 +170779891258,214,0 +170779891306,214,0 +170779891354,214,0 +170779891402,215,0 +170779891449,215,0 +170779891497,214,0 +170779891545,214,0 +170779891593,214,0 +170779891641,214,0 +170779891689,214,0 +170779891737,214,0 +170779891784,214,0 +170779891832,214,0 +170779891880,214,0 +170779891928,214,0 +170779891976,214,0 +170779892024,214,0 +170779892072,215,0 +170779892119,215,0 +170779892167,215,0 +170779892215,214,0 +170779892263,214,0 +170779892311,214,0 +170779892359,214,0 +170779892408,214,0 +170779892456,214,0 +170779892506,214,0 +170779892554,214,0 +170779892601,214,0 +170779892649,214,0 +170779892699,214,0 +170779892747,214,0 +170779892795,214,0 +170779892844,215,0 +170779892892,215,0 +170779892942,215,0 +170779892991,215,0 +170779893039,214,0 +170779893087,214,0 +170779893136,214,0 +170779893184,214,0 +170779893232,215,0 +170779893282,214,0 +170779893330,215,0 +170779893378,215,0 +170779893427,215,0 +170779893475,215,0 +170779893523,215,0 +170779893571,215,0 +170779893619,215,0 +170779893667,215,0 +170779893715,215,0 +170779893764,215,0 +170779893812,215,0 +170779893861,215,0 +170779893909,214,0 +170779893957,214,0 +170779894007,215,0 +170779894055,215,0 +170779894104,215,0 +170779894152,215,0 +170779894200,215,0 +170779894248,215,0 +170779894296,215,0 +170779894344,215,0 +170779894394,215,0 +170779894443,215,0 +170779894493,215,0 +170779894541,215,0 +170779894589,215,0 +170779894638,215,0 +170779894686,215,0 +170779894735,214,0 +170779894785,214,0 +170779894833,214,0 +170779894881,214,0 +170779894928,215,0 +170779894978,215,0 +170779895026,215,0 +170779895075,215,0 +170779895123,215,0 +170779895173,215,0 +170779895220,215,0 +170779895270,215,0 +170779895318,215,0 +170779895366,215,0 +170779895414,215,0 +170779895462,215,0 +170779895510,214,0 +170779895557,214,0 +170779895605,214,0 +170779895655,214,0 +170779895703,214,0 +170779895752,214,0 +170779895800,215,0 +170779895848,214,0 +170779895898,214,0 +170779895946,215,0 +170779895995,215,0 +170779896044,215,0 +170779896094,215,0 +170779896142,215,0 +170779896191,215,0 +170779896239,215,0 +170779896287,214,0 +170779896336,214,0 +170779896386,214,0 +170779896434,214,0 +170779896482,214,0 +170779896531,214,0 +170779896579,214,0 +170779896627,215,0 +170779896677,215,0 +170779896726,215,0 +170779896774,215,0 +170779896822,215,0 +170779896870,215,0 +170779896919,215,0 +170779896969,215,0 +170779897018,215,0 +170779897066,214,0 +170779897114,214,0 +170779897162,214,0 +170779897210,214,0 +170779897257,214,0 +170779897305,214,0 +170779897353,214,0 +170779897401,215,0 +170779897449,214,0 +170779897496,214,0 +170779897544,214,0 +170779897592,215,0 +170779897640,215,0 +170779897688,215,0 +170779897736,215,0 +170779897783,215,0 +170779897831,215,0 +170779897881,214,0 +170779897929,214,0 +170779897977,214,0 +170779898025,214,0 +170779898074,214,0 +170779898122,214,0 +170779898172,214,0 +170779898221,214,0 +170779898269,214,0 +170779898317,214,0 +170779898367,214,0 +170779898414,214,0 +170779898462,214,0 +170779898510,214,0 +170779898560,215,0 +170779898609,215,0 +170779898657,215,0 +170779898705,214,0 +170779898753,214,0 +170779898802,214,0 +170779898850,214,0 +170779898898,214,0 +170779898946,214,0 +170779898994,214,0 +170779899042,215,0 +170779899092,214,0 +170779899139,214,0 +170779899187,215,0 +170779899235,215,0 +170779899283,215,0 +170779899331,215,0 +170779899381,215,0 +170779899430,214,0 +170779899478,214,0 +170779899526,214,0 +170779899574,214,0 +170779899623,214,0 +170779899671,214,0 +170779899721,214,0 +170779899769,214,0 +170779899817,214,0 +170779899865,214,0 +170779899914,214,0 +170779899962,215,0 +170779900010,215,0 +170779900059,215,0 +170779900109,215,0 +170779900157,215,0 +170779900206,215,0 +170779900254,215,0 +170779900302,214,0 +170779900350,214,0 +170779900398,214,0 +170779900448,214,0 +170779900496,214,0 +170779900543,214,0 +170779900591,214,0 +170779900641,214,0 +170779900689,214,0 +170779900737,214,0 +170779900786,215,0 +170779900834,215,0 +170779900882,215,0 +170779900932,215,0 +170779900981,215,0 +170779901031,215,0 +170779901078,215,0 +170779901126,213,0 +170779901176,214,0 +170779901224,214,0 +170779901272,214,0 +170779901321,214,0 +170779901369,214,0 +170779901417,214,0 +170779901465,214,0 +170779901513,214,0 +170779901561,214,0 +170779901608,215,0 +170779901658,215,0 +170779901707,215,0 +170779901755,215,0 +170779901805,214,0 +170779901854,214,0 +170779901902,213,0 +170779901950,213,0 +170779901999,214,0 +170779902049,214,0 +170779902098,214,0 +170779902146,214,0 +170779902194,214,0 +170779902242,214,0 +170779902292,214,0 +170779902340,214,0 +170779902387,214,0 +170779902435,215,0 +170779902485,214,0 +170779902534,215,0 +170779902582,215,0 +170779902630,214,0 +170779902678,214,0 +170779902728,214,0 +170779902775,213,0 +170779902823,214,0 +170779902871,214,0 +170779902921,214,0 +170779902969,214,0 +170779903016,214,0 +170779903064,214,0 +170779903112,214,0 +170779903160,214,0 +170779903208,214,0 +170779903256,215,0 +170779903304,214,0 +170779903353,214,0 +170779903403,215,0 +170779903452,214,0 +170779903500,214,0 +170779903550,214,0 +170779903599,214,0 +170779903647,214,0 +170779903695,214,0 +170779903744,214,0 +170779903792,214,0 +170779903840,214,0 +170779903888,214,0 +170779903936,214,0 +170779903984,214,0 +170779904034,214,0 +170779904081,214,0 +170779904129,214,0 +170779904177,214,0 +170779904225,214,0 +170779904274,215,0 +170779904322,214,0 +170779904370,214,0 +170779904418,214,0 +170779904465,214,0 +170779904513,214,0 +170779904561,214,0 +170779904609,214,0 +170779904657,214,0 +170779904704,214,0 +170779904754,214,0 +170779904802,215,0 +170779904850,215,0 +170779904897,215,0 +170779904945,215,0 +170779904993,215,0 +170779905041,214,0 +170779905089,214,0 +170779905137,214,0 +170779905184,214,0 +170779905232,214,0 +170779905280,214,0 +170779905328,215,0 +170779905376,215,0 +170779905425,215,0 +170779905473,215,0 +170779905521,215,0 +170779905569,215,0 +170779905617,215,0 +170779905666,215,0 +170779905716,215,0 +170779905764,215,0 +170779905813,215,0 +170779905863,215,0 +170779905911,214,0 +170779905959,215,0 +170779906008,215,0 +170779906056,215,0 +170779906106,215,0 +170779906153,215,0 +170779906203,215,0 +170779906252,215,0 +170779906302,215,0 +170779906350,215,0 +170779906399,215,0 +170779906447,215,0 +170779906495,215,0 +170779906545,215,0 +170779906592,215,0 +170779906640,215,0 +170779906690,215,0 +170779906738,215,0 +170779906787,215,0 +170779906835,215,0 +170779906885,215,0 +170779906934,215,0 +170779906982,215,0 +170779907030,215,0 +170779907080,215,0 +170779907128,215,0 +170779907177,215,0 +170779907225,215,0 +170779907274,215,0 +170779907324,215,0 +170779907371,215,0 +170779907419,215,0 +170779907469,215,0 +170779907517,214,0 +170779907565,214,0 +170779907612,214,0 +170779907660,214,0 +170779907710,214,0 +170779907758,214,0 +170779907805,214,0 +170779907853,214,0 +170779907901,214,0 +170779907949,215,0 +170779907997,215,0 +170779908046,215,0 +170779908094,215,0 +170779908142,215,0 +170779908189,215,0 +170779908237,215,0 +170779908285,215,0 +170779908333,214,0 +170779908380,214,0 +170779908428,214,0 +170779908476,214,0 +170779908526,214,0 +170779908575,214,0 +170779908625,214,0 +170779908673,214,0 +170779908721,214,0 +170779908770,214,0 +170779908820,215,0 +170779908868,215,0 +170779908917,215,0 +170779908965,215,0 +170779909013,215,0 +170779909062,215,0 +170779909112,214,0 +170779909160,214,0 +170779909208,214,0 +170779909257,214,0 +170779909305,214,0 +170779909353,214,0 +170779909401,214,0 +170779909449,214,0 +170779909498,214,0 +170779909546,215,0 +170779909596,214,0 +170779909645,215,0 +170779909693,214,0 +170779909741,215,0 +170779909789,215,0 +170779909837,215,0 +170779909887,215,0 +170779909934,214,0 +170779909982,214,0 +170779910030,214,0 +170779910078,214,0 +170779910127,214,0 +170779910175,214,0 +170779910223,214,0 +170779910272,214,0 +170779910320,214,0 +170779910368,214,0 +170779910416,215,0 +170779910464,215,0 +170779910512,215,0 +170779910560,215,0 +170779910609,214,0 +170779910659,215,0 +170779910708,214,0 +170779910757,214,0 +170779910805,214,0 +170779910855,214,0 +170779910903,214,0 +170779910950,214,0 +170779910998,214,0 +170779911046,214,0 +170779911094,214,0 +170779911142,214,0 +170779911191,215,0 +170779911239,214,0 +170779911287,215,0 +170779911334,215,0 +170779911382,215,0 +170779911430,215,0 +170779911478,215,0 +170779911526,214,0 +170779911574,214,0 +170779911621,214,0 +170779911669,214,0 +170779911717,214,0 +170779911765,214,0 +170779911813,214,0 +170779911862,214,0 +170779911910,214,0 +170779911958,214,0 +170779912008,215,0 +170779912057,215,0 +170779912105,215,0 +170779912153,215,0 +170779912200,215,0 +170779912248,215,0 +170779912296,215,0 +170779912345,214,0 +170779912393,214,0 +170779912441,214,0 +170779912490,214,0 +170779912538,214,0 +170779912588,214,0 +170779912636,214,0 +170779912683,214,0 +170779912731,214,0 +170779912779,214,0 +170779912827,214,0 +170779912875,214,0 +170779912924,215,0 +170779912972,215,0 +170779913020,215,0 +170779913068,215,0 +170779913116,214,0 +170779913166,213,0 +170779913215,214,0 +170779913263,213,0 +170779913311,214,0 +170779913359,214,0 +170779913407,214,0 +170779913455,214,0 +170779913503,214,0 +170779913551,214,0 +170779913599,214,0 +170779913648,214,0 +170779913696,214,0 +170779913744,214,0 +170779913792,215,0 +170779913840,215,0 +170779913889,215,0 +170779913937,214,0 +170779913985,214,0 +170779914034,214,0 +170779914082,214,0 +170779914132,214,0 +170779914181,214,0 +170779914229,214,0 +170779914277,214,0 +170779914327,214,0 +170779914376,214,0 +170779914424,214,0 +170779914472,214,0 +170779914522,214,0 +170779914570,214,0 +170779914619,215,0 +170779914667,214,0 +170779914715,214,0 +170779914763,214,0 +170779914811,214,0 +170779914860,214,0 +170779914908,214,0 +170779914956,214,0 +170779915006,214,0 +170779915055,214,0 +170779915103,214,0 +170779915153,214,0 +170779915201,214,0 +170779915249,214,0 +170779915296,214,0 +170779915344,215,0 +170779915392,215,0 +170779915440,215,0 +170779915488,215,0 +170779915536,214,0 +170779915584,214,0 +170779915632,214,0 +170779915682,214,0 +170779915729,214,0 +170779915779,214,0 +170779915828,214,0 +170779915878,214,0 +170779915926,214,0 +170779915974,214,0 +170779916023,214,0 +170779916073,214,0 +170779916121,215,0 +170779916170,215,0 +170779916220,215,0 +170779916269,215,0 +170779916317,214,0 +170779916365,214,0 +170779916413,214,0 +170779916461,214,0 +170779916509,214,0 +170779916557,214,0 +170779916606,215,0 +170779916654,214,0 +170779916703,214,0 +170779916753,215,0 +170779916801,215,0 +170779916849,215,0 +170779916898,215,0 +170779916946,215,0 +170779916994,215,0 +170779917043,215,0 +170779917091,215,0 +170779917139,214,0 +170779917187,214,0 +170779917235,214,0 +170779917283,214,0 +170779917333,215,0 +170779917382,215,0 +170779917430,215,0 +170779917478,215,0 +170779917526,215,0 +170779917575,215,0 +170779917625,215,0 +170779917674,215,0 +170779917722,215,0 +170779917770,215,0 +170779917818,215,0 +170779917866,215,0 +170779917914,215,0 +170779917961,215,0 +170779918009,215,0 +170779918057,215,0 +170779918105,215,0 +170779918153,215,0 +170779918202,215,0 +170779918250,215,0 +170779918298,215,0 +170779918348,215,0 +170779918396,215,0 +170779918443,215,0 +170779918491,215,0 +170779918539,215,0 +170779918589,215,0 +170779918638,215,0 +170779918688,215,0 +170779918737,214,0 +170779918785,214,0 +170779918835,215,0 +170779918883,214,0 +170779918931,215,0 +170779918980,215,0 +170779919029,215,0 +170779919077,215,0 +170779919125,215,0 +170779919173,215,0 +170779919222,215,0 +170779919270,215,0 +170779919318,215,0 +170779919366,215,0 +170779919416,215,0 +170779919464,215,0 +170779919513,215,0 +170779919561,214,0 +170779919611,214,0 +170779919660,214,0 +170779919708,214,0 +170779919758,214,0 +170779919806,214,0 +170779919854,214,0 +170779919901,214,0 +170779919949,214,0 +170779919997,215,0 +170779920045,215,0 +170779920093,215,0 +170779920141,215,0 +170779920191,215,0 +170779920238,215,0 +170779920288,215,0 +170779920336,214,0 +170779920385,214,0 +170779920433,214,0 +170779920481,214,0 +170779920529,214,0 +170779920579,214,0 +170779920627,214,0 +170779920675,214,0 +170779920724,214,0 +170779920774,214,0 +170779920823,214,0 +170779920873,214,0 +170779920921,215,0 +170779920969,215,0 +170779921018,215,0 +170779921067,215,0 +170779921117,215,0 +170779921165,213,0 +170779921213,214,0 +170779921262,214,0 +170779921310,214,0 +170779921358,214,0 +170779921408,214,0 +170779921457,214,0 +170779921505,214,0 +170779921554,214,0 +170779921602,214,0 +170779921652,214,0 +170779921701,215,0 +170779921751,214,0 +170779921800,215,0 +170779921848,214,0 +170779921896,215,0 +170779921944,213,0 +170779921992,214,0 +170779922040,214,0 +170779922089,214,0 +170779922137,214,0 +170779922187,214,0 +170779922235,214,0 +170779922282,214,0 +170779922330,214,0 +170779922380,214,0 +170779922428,214,0 +170779922477,214,0 +170779922525,214,0 +170779922573,215,0 +170779922621,214,0 +170779922671,214,0 +170779922720,214,0 +170779922770,213,0 +170779922818,214,0 +170779922865,213,0 +170779922913,214,0 +170779922963,214,0 +170779923013,214,0 +170779923062,214,0 +170779923112,214,0 +170779923161,214,0 +170779923209,214,0 +170779923257,214,0 +170779923306,214,0 +170779923356,214,0 +170779923404,215,0 +170779923452,214,0 +170779923500,215,0 +170779923547,214,0 +170779923595,214,0 +170779923645,214,0 +170779923693,214,0 +170779923742,214,0 +170779923790,214,0 +170779923838,214,0 +170779923886,214,0 +170779923934,214,0 +170779923982,214,0 +170779924030,215,0 +170779924080,215,0 +170779924129,214,0 +170779924179,214,0 +170779924226,214,0 +170779924276,214,0 +170779924324,214,0 +170779924372,214,0 +170779924421,214,0 +170779924471,214,0 +170779924521,214,0 +170779924570,214,0 +170779924620,214,0 +170779924669,214,0 +170779924717,215,0 +170779924765,215,0 +170779924813,214,0 +170779924861,215,0 +170779924909,215,0 +170779924957,215,0 +170779925006,215,0 +170779925054,214,0 +170779925102,214,0 +170779925150,214,0 +170779925198,214,0 +170779925246,213,0 +170779925294,214,0 +170779925341,214,0 +170779925391,214,0 +170779925439,214,0 +170779925487,214,0 +170779925536,214,0 +170779925586,214,0 +170779925634,214,0 +170779925682,215,0 +170779925731,215,0 +170779925779,215,0 +170779925828,215,0 +170779925878,214,0 +170779925926,214,0 +170779925974,214,0 +170779926023,214,0 +170779926071,214,0 +170779926121,214,0 +170779926168,214,0 +170779926218,214,0 +170779926266,214,0 +170779926315,214,0 +170779926363,214,0 +170779926413,214,0 +170779926461,215,0 +170779926509,215,0 +170779926557,215,0 +170779926605,215,0 +170779926654,215,0 +170779926702,215,0 +170779926750,214,0 +170779926798,214,0 +170779926846,214,0 +170779926895,214,0 +170779926943,214,0 +170779926993,214,0 +170779927042,214,0 +170779927090,214,0 +170779927140,214,0 +170779927187,214,0 +170779927235,214,0 +170779927285,214,0 +170779927333,214,0 +170779927383,215,0 +170779927430,215,0 +170779927478,214,0 +170779927526,214,0 +170779927576,213,0 +170779927624,213,0 +170779927673,213,0 +170779927723,214,0 +170779927771,214,0 +170779927819,214,0 +170779927868,214,0 +170779927918,214,0 +170779927965,214,0 +170779928015,214,0 +170779928063,214,0 +170779928112,214,0 +170779928160,214,0 +170779928210,214,0 +170779928258,214,0 +170779928306,215,0 +170779928355,214,0 +170779928404,213,0 +170779928452,214,0 +170779928502,214,0 +170779928550,214,0 +170779928598,214,0 +170779928647,214,0 +170779928695,214,0 +170779928744,214,0 +170779928793,214,0 +170779928843,214,0 +170779928890,214,0 +170779928938,214,0 +170779928986,215,0 +170779929034,215,0 +170779929084,214,0 +170779929131,214,0 +170779929179,214,0 +170779929227,214,0 +170779929275,214,0 +170779929323,214,0 +170779929371,214,0 +170779929419,214,0 +170779929467,214,0 +170779929515,214,0 +170779929563,214,0 +170779929611,214,0 +170779929660,215,0 +170779929710,215,0 +170779929758,215,0 +170779929806,215,0 +170779929855,215,0 +170779929905,215,0 +170779929953,214,0 +170779930002,214,0 +170779930052,214,0 +170779930101,214,0 +170779930149,214,0 +170779930197,215,0 +170779930245,215,0 +170779930293,215,0 +170779930341,215,0 +170779930390,215,0 +170779930438,215,0 +170779930486,215,0 +170779930536,215,0 +170779930585,215,0 +170779930635,215,0 +170779930683,215,0 +170779930731,215,0 +170779930779,214,0 +170779930828,214,0 +170779930876,215,0 +170779930926,215,0 +170779930973,215,0 +170779931021,215,0 +170779931069,215,0 +170779931117,215,0 +170779931165,215,0 +170779931213,215,0 +170779931261,215,0 +170779931310,215,0 +170779931360,215,0 +170779931408,215,0 +170779931457,215,0 +170779931505,214,0 +170779931555,214,0 +170779931603,214,0 +170779931651,213,0 +170779931700,214,0 +170779931748,214,0 +170779931796,214,0 +170779931844,214,0 +170779931892,214,0 +170779931940,214,0 +170779931989,214,0 +170779932039,215,0 +170779932087,215,0 +170779932135,214,0 +170779932184,214,0 +170779932232,215,0 +170779932280,214,0 +170779932329,214,0 +170779932377,214,0 +170779932425,214,0 +170779932473,214,0 +170779932521,214,0 +170779932570,214,0 +170779932618,214,0 +170779932666,214,0 +170779932714,214,0 +170779932764,214,0 +170779932812,214,0 +170779932860,214,0 +170779932909,214,0 +170779932957,214,0 +170779933005,214,0 +170779933053,214,0 +170779933101,214,0 +170779933150,214,0 +170779933198,214,0 +170779933246,214,0 +170779933296,214,0 +170779933344,214,0 +170779933393,214,0 +170779933441,214,0 +170779933489,214,0 +170779933539,214,0 +170779933588,214,0 +170779933636,214,0 +170779933684,214,0 +170779933733,215,0 +170779933781,214,0 +170779933829,215,0 +170779933877,214,0 +170779933927,214,0 +170779933975,214,0 +170779934023,214,0 +170779934071,214,0 +170779934120,214,0 +170779934168,214,0 +170779934216,214,0 +170779934266,214,0 +170779934313,215,0 +170779934363,215,0 +170779934412,215,0 +170779934460,215,0 +170779934508,215,0 +170779934558,214,0 +170779934606,215,0 +170779934654,215,0 +170779934702,214,0 +170779934749,214,0 +170779934797,214,0 +170779934845,214,0 +170779934893,214,0 +170779934941,214,0 +170779934989,214,0 +170779935039,214,0 +170779935086,214,0 +170779935134,215,0 +170779935182,215,0 +170779935232,215,0 +170779935280,215,0 +170779935328,215,0 +170779935377,215,0 +170779935427,215,0 +170779935476,215,0 +170779935526,214,0 +170779935574,214,0 +170779935622,214,0 +170779935670,214,0 +170779935718,214,0 +170779935766,214,0 +170779935815,214,0 +170779935865,214,0 +170779935914,214,0 +170779935962,215,0 +170779936010,215,0 +170779936059,215,0 +170779936107,214,0 +170779936157,214,0 +170779936205,215,0 +170779936254,215,0 +170779936302,215,0 +170779936350,214,0 +170779936397,214,0 +170779936445,214,0 +170779936495,214,0 +170779936543,214,0 +170779936591,214,0 +170779936639,214,0 +170779936687,214,0 +170779936735,215,0 +170779936783,214,0 +170779936830,215,0 +170779936878,215,0 +170779936926,215,0 +170779936974,215,0 +170779937022,215,0 +170779937070,215,0 +170779937118,215,0 +170779937168,214,0 +170779937216,214,0 +170779937264,214,0 +170779937311,214,0 +170779937359,214,0 +170779937409,214,0 +170779937457,214,0 +170779937505,214,0 +170779937554,214,0 +170779937604,215,0 +170779937653,215,0 +170779937703,214,0 +170779937752,215,0 +170779937802,215,0 +170779937850,215,0 +170779937899,214,0 +170779937949,214,0 +170779937997,214,0 +170779938045,214,0 +170779938094,214,0 +170779938142,214,0 +170779938191,214,0 +170779938239,214,0 +170779938289,214,0 +170779938337,214,0 +170779938386,214,0 +170779938434,214,0 +170779938484,215,0 +170779938532,215,0 +170779938580,214,0 +170779938628,215,0 +170779938676,214,0 +170779938725,214,0 +170779938775,214,0 +170779938823,213,0 +170779938870,213,0 +170779938918,214,0 +170779938968,214,0 +170779939016,214,0 +170779939065,214,0 +170779939113,214,0 +170779939163,214,0 +170779939211,214,0 +170779939259,214,0 +170779939307,214,0 +170779939356,214,0 +170779939404,214,0 +170779939454,214,0 +170779939501,215,0 +170779939549,215,0 +170779939599,214,0 +170779939647,214,0 +170779939695,214,0 +170779939742,214,0 +170779939792,214,0 +170779939840,214,0 +170779939888,214,0 +170779939936,214,0 +170779939984,214,0 +170779940032,214,0 +170779940081,215,0 +170779940129,215,0 +170779940179,214,0 +170779940227,214,0 +170779940276,215,0 +170779940324,214,0 +170779940372,214,0 +170779940422,213,0 +170779940470,214,0 +170779940519,214,0 +170779940568,214,0 +170779940618,214,0 +170779940667,214,0 +170779940717,214,0 +170779940767,214,0 +170779940815,214,0 +170779940863,214,0 +170779940911,214,0 +170779940958,214,0 +170779941008,214,0 +170779941056,214,0 +170779941105,214,0 +170779941153,214,0 +170779941201,214,0 +170779941251,213,0 +170779941299,213,0 +170779941348,213,0 +170779941398,213,0 +170779941446,214,0 +170779941494,213,0 +170779941543,214,0 +170779941591,214,0 +170779941639,214,0 +170779941687,214,0 +170779941735,214,0 +170779941784,214,0 +170779941832,214,0 +170779941881,214,0 +170779941931,214,0 +170779941980,214,0 +170779942030,213,0 +170779942079,214,0 +170779942127,214,0 +170779942175,214,0 +170779942224,214,0 +170779942274,214,0 +170779942323,214,0 +170779942373,214,0 +170779942421,214,0 +170779942469,214,0 +170779942517,215,0 +170779942565,215,0 +170779942612,215,0 +170779942660,215,0 +170779942708,215,0 +170779942756,214,0 +170779942804,214,0 +170779942852,214,0 +170779942902,214,0 +170779942951,214,0 +170779942999,214,0 +170779943047,214,0 +170779943095,214,0 +170779943143,215,0 +170779943191,215,0 +170779943238,215,0 +170779943288,215,0 +170779943336,215,0 +170779943383,215,0 +170779943431,215,0 +170779943479,215,0 +170779943527,215,0 +170779943575,215,0 +170779943624,214,0 +170779943673,214,0 +170779943721,215,0 +170779943770,214,0 +170779943818,215,0 +170779943866,215,0 +170779943914,215,0 +170779943962,215,0 +170779944010,215,0 +170779944057,215,0 +170779944105,215,0 +170779944153,215,0 +170779944201,215,0 +170779944248,215,0 +170779944296,214,0 +170779944344,214,0 +170779944392,214,0 +170779944440,214,0 +170779944488,214,0 +170779944535,214,0 +170779944583,214,0 +170779944631,214,0 +170779944679,214,0 +170779944728,214,0 +170779944776,214,0 +170779944826,214,0 +170779944875,215,0 +170779944923,215,0 +170779944971,215,0 +170779945020,215,0 +170779945070,215,0 +170779945118,214,0 +170779945166,214,0 +170779945213,214,0 +170779945261,214,0 +170779945309,214,0 +170779945357,214,0 +170779945407,214,0 +170779945455,214,0 +170779945503,214,0 +170779945550,214,0 +170779945598,214,0 +170779945646,214,0 +170779945694,214,0 +170779945742,214,0 +170779945790,215,0 +170779945838,215,0 +170779945886,215,0 +170779945935,215,0 +170779945983,214,0 +170779946031,214,0 +170779946079,214,0 +170779946127,214,0 +170779946175,214,0 +170779946223,214,0 +170779946272,214,0 +170779946320,214,0 +170779946368,214,0 +170779946418,214,0 +170779946466,214,0 +170779946515,214,0 +170779946563,215,0 +170779946613,214,0 +170779946662,215,0 +170779946710,215,0 +170779946758,215,0 +170779946806,215,0 +170779946854,215,0 +170779946903,215,0 +170779946953,215,0 +170779947000,215,0 +170779947048,214,0 +170779947096,215,0 +170779947144,214,0 +170779947192,214,0 +170779947240,214,0 +170779947290,214,0 +170779947338,214,0 +170779947386,214,0 +170779947434,214,0 +170779947482,214,0 +170779947531,214,0 +170779947579,214,0 +170779947629,214,0 +170779947677,214,0 +170779947724,214,0 +170779947772,214,0 +170779947820,214,0 +170779947870,214,0 +170779947919,215,0 +170779947967,214,0 +170779948015,214,0 +170779948063,214,0 +170779948111,214,0 +170779948160,214,0 +170779948208,214,0 +170779948257,214,0 +170779948305,214,0 +170779948353,214,0 +170779948401,214,0 +170779948449,214,0 +170779948497,214,0 +170779948546,215,0 +170779948594,214,0 +170779948642,215,0 +170779948690,215,0 +170779948738,215,0 +170779948786,214,0 +170779948835,213,0 +170779948883,214,0 +170779948931,214,0 +170779948979,214,0 +170779949027,214,0 +170779949076,214,0 +170779949126,214,0 +170779949175,214,0 +170779949223,214,0 +170779949271,214,0 +170779949319,214,0 +170779949367,214,0 +170779949415,215,0 +170779949463,214,0 +170779949511,214,0 +170779949560,214,0 +170779949610,214,0 +170779949658,214,0 +170779949707,214,0 +170779949755,214,0 +170779949803,214,0 +170779949851,214,0 +170779949900,214,0 +170779949948,214,0 +170779949998,214,0 +170779950046,214,0 +170779950094,214,0 +170779950142,214,0 +170779950191,214,0 +170779950239,214,0 +170779950287,215,0 +170779950335,214,0 +170779950383,214,0 +170779950432,213,0 +170779950482,213,0 +170779950531,213,0 +170779950579,213,0 +170779950628,214,0 +170779950676,214,0 +170779950726,214,0 +170779950775,214,0 +170779950823,214,0 +170779950871,214,0 +170779950920,214,0 +170779950968,215,0 +170779951016,214,0 +170779951064,214,0 +170779951112,214,0 +170779951161,214,0 +170779951209,213,0 +170779951259,213,0 +170779951307,213,0 +170779951356,213,0 +170779951406,213,0 +170779951453,214,0 +170779951501,214,0 +170779951551,214,0 +170779951599,214,0 +170779951647,214,0 +170779951695,214,0 +170779951742,214,0 +170779951790,214,0 +170779951838,214,0 +170779951888,215,0 +170779951936,214,0 +170779951985,215,0 +170779952035,214,0 +170779952082,214,0 +170779952132,213,0 +170779952180,214,0 +170779952227,213,0 +170779952275,213,0 +170779952325,214,0 +170779952373,214,0 +170779952421,214,0 +170779952468,214,0 +170779952516,214,0 +170779952564,214,0 +170779952614,214,0 +170779952662,214,0 +170779952709,214,0 +170779952757,215,0 +170779952805,215,0 +170779952855,214,0 +170779952903,214,0 +170779952952,214,0 +170779953000,214,0 +170779953048,213,0 +170779953096,213,0 +170779953144,214,0 +170779953192,213,0 +170779953240,214,0 +170779953287,214,0 +170779953337,214,0 +170779953386,214,0 +170779953434,214,0 +170779953482,214,0 +170779953530,214,0 +170779953578,214,0 +170779953626,214,0 +170779953674,214,0 +170779953722,215,0 +170779953771,214,0 +170779953819,214,0 +170779953869,214,0 +170779953918,214,0 +170779953968,213,0 +170779954016,214,0 +170779954065,214,0 +170779954115,214,0 +170779954163,214,0 +170779954211,214,0 +170779954259,214,0 +170779954308,214,0 +170779954358,214,0 +170779954407,214,0 +170779954455,214,0 +170779954503,214,0 +170779954552,215,0 +170779954602,215,0 +170779954650,215,0 +170779954698,215,0 +170779954745,215,0 +170779954793,215,0 +170779954842,214,0 +170779954890,214,0 +170779954938,214,0 +170779954987,214,0 +170779955036,214,0 +170779955086,214,0 +170779955135,214,0 +170779955183,215,0 +170779955231,215,0 +170779955281,215,0 +170779955329,215,0 +170779955378,215,0 +170779955426,215,0 +170779955474,215,0 +170779955522,215,0 +170779955570,215,0 +170779955619,215,0 +170779955667,215,0 +170779955717,215,0 +170779955765,215,0 +170779955814,215,0 +170779955862,215,0 +170779955912,215,0 +170779955959,215,0 +170779956007,215,0 +170779956057,215,0 +170779956105,215,0 +170779956154,215,0 +170779956202,215,0 +170779956250,215,0 +170779956299,215,0 +170779956348,215,0 +170779956396,215,0 +170779956445,215,0 +170779956493,215,0 +170779956541,215,0 +170779956589,215,0 +170779956637,215,0 +170779956685,215,0 +170779956733,215,0 +170779956781,214,0 +170779956829,214,0 +170779956877,215,0 +170779956925,215,0 +170779956973,215,0 +170779957022,215,0 +170779957072,215,0 +170779957120,215,0 +170779957168,215,0 +170779957215,215,0 +170779957263,215,0 +170779957311,215,0 +170779957361,215,0 +170779957410,215,0 +170779957460,215,0 +170779957508,215,0 +170779957557,214,0 +170779957605,214,0 +170779957654,214,0 +170779957702,214,0 +170779957750,214,0 +170779957798,214,0 +170779957846,214,0 +170779957894,214,0 +170779957941,214,0 +170779957989,214,0 +170779958037,214,0 +170779958087,214,0 +170779958135,214,0 +170779958184,214,0 +170779958232,215,0 +170779958281,214,0 +170779958331,215,0 +170779958379,215,0 +170779958427,215,0 +170779958475,215,0 +170779958522,214,0 +170779958570,214,0 +170779958618,213,0 +170779958668,214,0 +170779958717,214,0 +170779958767,214,0 +170779958814,214,0 +170779958864,214,0 +170779958912,214,0 +170779958961,214,0 +170779959009,214,0 +170779959057,214,0 +170779959105,214,0 +170779959153,215,0 +170779959201,214,0 +170779959249,214,0 +170779959296,215,0 +170779959344,214,0 +170779959394,214,0 +170779959442,214,0 +170779959491,214,0 +170779959540,213,0 +170779959590,213,0 +170779959639,213,0 +170779959689,213,0 +170779959737,214,0 +170779959785,214,0 +170779959834,214,0 +170779959882,214,0 +170779959932,214,0 +170779959981,214,0 +170779960031,214,0 +170779960078,214,0 +170779960126,214,0 +170779960176,214,0 +170779960225,214,0 +170779960275,214,0 +170779960323,214,0 +170779960370,214,0 +170779960418,214,0 +170779960468,213,0 +170779960516,213,0 +170779960564,213,0 +170779960613,213,0 +170779960663,213,0 +170779960711,214,0 +170779960759,214,0 +170779960807,214,0 +170779960855,214,0 +170779960903,214,0 +170779960951,214,0 +170779960998,214,0 +170779961046,214,0 +170779961096,214,0 +170779961145,214,0 +170779961193,214,0 +170779961241,214,0 +170779961291,215,0 +170779961340,214,0 +170779961390,213,0 +170779961438,213,0 +170779961486,213,0 +170779961534,213,0 +170779961582,213,0 +170779961631,214,0 +170779961679,213,0 +170779961727,214,0 +170779961776,213,0 +170779961824,214,0 +170779961872,213,0 +170779961920,214,0 +170779961970,214,0 +170779962017,214,0 +170779962067,214,0 +170779962116,214,0 +170779962164,214,0 +170779962212,214,0 +170779962260,214,0 +170779962308,213,0 +170779962356,213,0 +170779962404,213,0 +170779962452,213,0 +170779962501,213,0 +170779962551,213,0 +170779962600,214,0 +170779962650,214,0 +170779962698,213,0 +170779962747,214,0 +170779962795,214,0 +170779962843,214,0 +170779962892,214,0 +170779962942,214,0 +170779962991,214,0 +170779963041,214,0 +170779963089,214,0 +170779963138,214,0 +170779963188,214,0 +170779963236,214,0 +170779963284,213,0 +170779963331,213,0 +170779963381,213,0 +170779963429,213,0 +170779963478,213,0 +170779963528,213,0 +170779963576,214,0 +170779963625,214,0 +170779963675,214,0 +170779963724,214,0 +170779963772,214,0 +170779963822,214,0 +170779963870,214,0 +170779963920,214,0 +170779963968,214,0 +170779964017,214,0 +170779964067,214,0 +170779964115,214,0 +170779964164,213,0 +170779964212,213,0 +170779964260,213,0 +170779964309,213,0 +170779964357,213,0 +170779964407,214,0 +170779964455,214,0 +170779964503,214,0 +170779964552,214,0 +170779964602,214,0 +170779964651,214,0 +170779964701,214,0 +170779964749,214,0 +170779964797,214,0 +170779964845,214,0 +170779964893,214,0 +170779964941,214,0 +170779964988,214,0 +170779965036,214,0 +170779965084,214,0 +170779965134,213,0 +170779965182,213,0 +170779965231,214,0 +170779965281,214,0 +170779965329,214,0 +170779965376,213,0 +170779965424,214,0 +170779965472,214,0 +170779965522,214,0 +170779965570,214,0 +170779965617,214,0 +170779965665,214,0 +170779965715,215,0 +170779965763,215,0 +170779965811,214,0 +170779965858,215,0 +170779965906,215,0 +170779965954,215,0 +170779966002,214,0 +170779966050,213,0 +170779966099,213,0 +170779966149,214,0 +170779966198,214,0 +170779966246,214,0 +170779966294,214,0 +170779966343,214,0 +170779966391,214,0 +170779966439,214,0 +170779966488,214,0 +170779966536,214,0 +170779966584,214,0 +170779966632,214,0 +170779966680,214,0 +170779966728,215,0 +170779966776,214,0 +170779966825,215,0 +170779966875,215,0 +170779966923,214,0 +170779966972,214,0 +170779967022,213,0 +170779967070,214,0 +170779967118,214,0 +170779967166,214,0 +170779967215,214,0 +170779967263,214,0 +170779967311,214,0 +170779967361,214,0 +170779967410,214,0 +170779967458,214,0 +170779967508,214,0 +170779967557,214,0 +170779967605,214,0 +170779967654,214,0 +170779967702,214,0 +170779967752,215,0 +170779967800,215,0 +170779967848,214,0 +170779967897,214,0 +170779967945,214,0 +170779967993,214,0 +170779968041,214,0 +170779968089,214,0 +170779968138,214,0 +170779968188,214,0 +170779968237,214,0 +170779968285,214,0 +170779968333,214,0 +170779968383,214,0 +170779968430,215,0 +170779968478,215,0 +170779968526,215,0 +170779968574,214,0 +170779968622,215,0 +170779968670,215,0 +170779968718,215,0 +170779968766,215,0 +170779968813,214,0 +170779968861,214,0 +170779968909,214,0 +170779968957,214,0 +170779969005,214,0 +170779969053,214,0 +170779969100,214,0 +170779969148,214,0 +170779969196,214,0 +170779969246,214,0 +170779969294,214,0 +170779969342,214,0 +170779969390,214,0 +170779969437,215,0 +170779969487,215,0 +170779969535,215,0 +170779969584,215,0 +170779969634,214,0 +170779969682,214,0 +170779969730,214,0 +170779969778,213,0 +170779969826,213,0 +170779969875,213,0 +170779969923,214,0 +170779969971,214,0 +170779970021,214,0 +170779970068,214,0 +170779970118,214,0 +170779970166,214,0 +170779970214,214,0 +170779970262,214,0 +170779970311,214,0 +170779970359,214,0 +170779970409,214,0 +170779970457,214,0 +170779970505,214,0 +170779970552,214,0 +170779970600,215,0 +170779970650,214,0 +170779970698,213,0 +170779970747,213,0 +170779970795,214,0 +170779970845,213,0 +170779970893,214,0 +170779970941,214,0 +170779970990,214,0 +170779971038,214,0 +170779971088,214,0 +170779971137,214,0 +170779971187,214,0 +170779971235,214,0 +170779971284,214,0 +170779971332,214,0 +170779971380,214,0 +170779971428,215,0 +170779971476,214,0 +170779971525,214,0 +170779971575,214,0 +170779971622,213,0 +170779971670,213,0 +170779971718,214,0 +170779971766,214,0 +170779971814,214,0 +170779971862,214,0 +170779971910,214,0 +170779971958,214,0 +170779972007,214,0 +170779972055,214,0 +170779972104,214,0 +170779972152,214,0 +170779972202,214,0 +170779972250,214,0 +170779972299,214,0 +170779972347,214,0 +170779972397,214,0 +170779972446,214,0 +170779972494,214,0 +170779972542,214,0 +170779972590,213,0 +170779972637,214,0 +170779972685,214,0 +170779972735,214,0 +170779972783,214,0 +170779972832,214,0 +170779972882,214,0 +170779972931,214,0 +170779972979,214,0 +170779973028,214,0 +170779973076,214,0 +170779973124,214,0 +170779973172,214,0 +170779973222,214,0 +170779973270,214,0 +170779973318,215,0 +170779973365,215,0 +170779973413,214,0 +170779973461,214,0 +170779973509,213,0 +170779973557,213,0 +170779973605,213,0 +170779973654,214,0 +170779973704,214,0 +170779973752,214,0 +170779973800,214,0 +170779973847,214,0 +170779973895,214,0 +170779973943,214,0 +170779973991,214,0 +170779974039,214,0 +170779974089,214,0 +170779974138,214,0 +170779974186,214,0 +170779974234,214,0 +170779974282,215,0 +170779974331,214,0 +170779974379,214,0 +170779974429,213,0 +170779974478,213,0 +170779974526,214,0 +170779974576,214,0 +170779974624,213,0 +170779974672,214,0 +170779974720,214,0 +170779974769,214,0 +170779974817,214,0 +170779974866,214,0 +170779974914,214,0 +170779974962,214,0 +170779975010,214,0 +170779975058,214,0 +170779975108,214,0 +170779975156,214,0 +170779975203,214,0 +170779975253,214,0 +170779975302,214,0 +170779975350,213,0 +170779975398,213,0 +170779975448,213,0 +170779975496,213,0 +170779975545,214,0 +170779975593,214,0 +170779975641,214,0 +170779975690,214,0 +170779975738,214,0 +170779975786,214,0 +170779975834,214,0 +170779975882,214,0 +170779975930,214,0 +170779975977,214,0 +170779976027,214,0 +170779976075,215,0 +170779976123,214,0 +170779976170,214,0 +170779976220,214,0 +170779976268,213,0 +170779976316,213,0 +170779976365,213,0 +170779976413,214,0 +170779976461,214,0 +170779976509,213,0 +170779976557,214,0 +170779976604,214,0 +170779976652,214,0 +170779976700,214,0 +170779976748,214,0 +170779976796,214,0 +170779976844,214,0 +170779976892,214,0 +170779976941,214,0 +170779976989,214,0 +170779977038,215,0 +170779977086,214,0 +170779977134,214,0 +170779977183,214,0 +170779977231,214,0 +170779977281,214,0 +170779977329,214,0 +170779977378,214,0 +170779977426,214,0 +170779977474,214,0 +170779977523,214,0 +170779977573,214,0 +170779977621,214,0 +170779977669,214,0 +170779977717,215,0 +170779977764,215,0 +170779977814,215,0 +170779977862,214,0 +170779977911,215,0 +170779977959,215,0 +170779978007,214,0 +170779978055,215,0 +170779978103,214,0 +170779978150,214,0 +170779978198,214,0 +170779978246,213,0 +170779978294,214,0 +170779978343,214,0 +170779978391,214,0 +170779978439,214,0 +170779978489,214,0 +170779978538,214,0 +170779978586,214,0 +170779978634,214,0 +170779978682,214,0 +170779978729,214,0 +170779978779,214,0 +170779978827,214,0 +170779978874,214,0 +170779978924,215,0 +170779978972,215,0 +170779979020,214,0 +170779979067,214,0 +170779979115,214,0 +170779979163,214,0 +170779979211,214,0 +170779979259,214,0 +170779979307,214,0 +170779979355,214,0 +170779979403,214,0 +170779979451,214,0 +170779979500,215,0 +170779979550,215,0 +170779979597,215,0 +170779979647,215,0 +170779979695,215,0 +170779979744,215,0 +170779979794,215,0 +170779979843,215,0 +170779979891,215,0 +170779979939,214,0 +170779979987,214,0 +170779980036,213,0 +170779980084,214,0 +170779980134,214,0 +170779980182,214,0 +170779980229,214,0 +170779980277,214,0 +170779980325,214,0 +170779980373,214,0 +170779980421,214,0 +170779980471,214,0 +170779980520,214,0 +170779980568,214,0 +170779980617,215,0 +170779980665,215,0 +170779980715,215,0 +170779980763,215,0 +170779980810,214,0 +170779980858,214,0 +170779980908,214,0 +170779980957,214,0 +170779981005,214,0 +170779981053,214,0 +170779981101,214,0 +170779981148,214,0 +170779981196,214,0 +170779981244,214,0 +170779981292,214,0 +170779981340,214,0 +170779981389,214,0 +170779981437,214,0 +170779981486,214,0 +170779981534,214,0 +170779981582,214,0 +170779981630,214,0 +170779981680,214,0 +170779981729,215,0 +170779981777,214,0 +170779981825,213,0 +170779981873,213,0 +170779981922,213,0 +170779981971,213,0 +170779982019,213,0 +170779982067,214,0 +170779982115,214,0 +170779982164,214,0 +170779982212,214,0 +170779982260,214,0 +170779982310,214,0 +170779982359,214,0 +170779982407,214,0 +170779982455,214,0 +170779982503,214,0 +170779982552,214,0 +170779982600,214,0 +170779982648,215,0 +170779982698,214,0 +170779982747,214,0 +170779982797,213,0 +170779982844,213,0 +170779982892,213,0 +170779982940,213,0 +170779982988,214,0 +170779983038,214,0 +170779983085,214,0 +170779983133,214,0 +170779983181,214,0 +170779983229,214,0 +170779983277,214,0 +170779983325,214,0 +170779983375,214,0 +170779983422,214,0 +170779983470,214,0 +170779983518,214,0 +170779983568,214,0 +170779983615,214,0 +170779983663,214,0 +170779983711,213,0 +170779983761,213,0 +170779983810,213,0 +170779983860,213,0 +170779983908,213,0 +170779983957,214,0 +170779984005,213,0 +170779984055,213,0 +170779984102,214,0 +170779984150,214,0 +170779984200,214,0 +170779984249,214,0 +170779984299,214,0 +170779984347,214,0 +170779984395,214,0 +170779984444,214,0 +170779984494,214,0 +170779984542,214,0 +170779984590,214,0 +170779984638,213,0 +170779984685,213,0 +170779984733,213,0 +170779984781,213,0 +170779984829,213,0 +170779984877,213,0 +170779984926,213,0 +170779984974,213,0 +170779985024,214,0 +170779985072,214,0 +170779985121,214,0 +170779985169,214,0 +170779985217,214,0 +170779985267,214,0 +170779985314,214,0 +170779985362,214,0 +170779985412,214,0 +170779985460,214,0 +170779985508,214,0 +170779985557,213,0 +170779985605,213,0 +170779985653,213,0 +170779985701,213,0 +170779985750,213,0 +170779985798,213,0 +170779985846,213,0 +170779985894,213,0 +170779985942,214,0 +170779985990,214,0 +170779986038,214,0 +170779986086,214,0 +170779986135,214,0 +170779986185,214,0 +170779986232,214,0 +170779986280,214,0 +170779986328,214,0 +170779986376,214,0 +170779986424,214,0 +170779986472,213,0 +170779986520,213,0 +170779986568,213,0 +170779986617,213,0 +170779986667,213,0 +170779986716,213,0 +170779986764,213,0 +170779986812,213,0 +170779986862,213,0 +170779986911,213,0 +170779986961,213,0 +170779987010,213,0 +170779987058,214,0 +170779987106,214,0 +170779987154,214,0 +170779987202,214,0 +170779987250,214,0 +170779987298,214,0 +170779987347,214,0 +170779987395,214,0 +170779987443,213,0 +170779987491,213,0 +170779987539,213,0 +170779987589,213,0 +170779987637,213,0 +170779987685,213,0 +170779987733,213,0 +170779987782,213,0 +170779987830,213,0 +170779987878,213,0 +170779987926,214,0 +170779987974,214,0 +170779988021,214,0 +170779988069,214,0 +170779988117,214,0 +170779988167,214,0 +170779988215,214,0 +170779988264,214,0 +170779988312,214,0 +170779988360,213,0 +170779988408,213,0 +170779988456,213,0 +170779988504,213,0 +170779988551,213,0 +170779988601,213,0 +170779988649,213,0 +170779988698,213,0 +170779988748,213,0 +170779988797,213,0 +170779988847,213,0 +170779988896,214,0 +170779988944,213,0 +170779988994,214,0 +170779989041,214,0 +170779989089,214,0 +170779989137,214,0 +170779989187,214,0 +170779989235,214,0 +170779989283,213,0 +170779989330,213,0 +170779989378,213,0 +170779989428,213,0 +170779989477,213,0 +170779989527,213,0 +170779989575,213,0 +170779989623,213,0 +170779989671,213,0 +170779989719,213,0 +170779989766,214,0 +170779989814,214,0 +170779989862,214,0 +170779989910,214,0 +170779989960,214,0 +170779990008,214,0 +170779990055,214,0 +170779990103,214,0 +170779990153,214,0 +170779990201,213,0 +170779990249,213,0 +170779990297,213,0 +170779990344,213,0 +170779990392,213,0 +170779990440,213,0 +170779990488,213,0 +170779990538,213,0 +170779990586,213,0 +170779990634,214,0 +170779990683,214,0 +170779990731,213,0 +170779990779,214,0 +170779990827,214,0 +170779990876,214,0 +170779990924,214,0 +170779990974,214,0 +170779991023,214,0 +170779991071,214,0 +170779991119,213,0 +170779991168,213,0 +170779991216,213,0 +170779991264,213,0 +170779991312,213,0 +170779991362,213,0 +170779991411,213,0 +170779991459,214,0 +170779991507,213,0 +170779991555,213,0 +170779991602,214,0 +170779991650,214,0 +170779991698,214,0 +170779991748,214,0 +170779991796,214,0 +170779991844,214,0 +170779991893,214,0 +170779991941,214,0 +170779991989,214,0 +170779992038,214,0 +170779992086,213,0 +170779992136,213,0 +170779992184,213,0 +170779992233,213,0 +170779992283,213,0 +170779992331,214,0 +170779992378,214,0 +170779992428,214,0 +170779992476,214,0 +170779992523,214,0 +170779992571,214,0 +170779992621,214,0 +170779992669,214,0 +170779992716,215,0 +170779992764,214,0 +170779992812,214,0 +170779992860,214,0 +170779992908,214,0 +170779992956,214,0 +170779993004,214,0 +170779993053,214,0 +170779993101,214,0 +170779993151,214,0 +170779993199,214,0 +170779993248,214,0 +170779993298,214,0 +170779993345,214,0 +170779993393,214,0 +170779993441,214,0 +170779993489,214,0 +170779993537,214,0 +170779993585,214,0 +170779993632,214,0 +170779993680,214,0 +170779993729,215,0 +170779993777,214,0 +170779993825,214,0 +170779993875,214,0 +170779993922,214,0 +170779993970,214,0 +170779994020,214,0 +170779994068,214,0 +170779994117,214,0 +170779994165,214,0 +170779994213,214,0 +170779994263,214,0 +170779994312,214,0 +170779994360,214,0 +170779994408,214,0 +170779994457,214,0 +170779994505,214,0 +170779994555,214,0 +170779994603,215,0 +170779994652,215,0 +170779994700,215,0 +170779994750,214,0 +170779994799,214,0 +170779994848,214,0 +170779994896,214,0 +170779994944,214,0 +170779994994,214,0 +170779995043,214,0 +170779995091,214,0 +170779995139,214,0 +170779995187,214,0 +170779995235,214,0 +170779995284,214,0 +170779995334,214,0 +170779995384,215,0 +170779995433,215,0 +170779995481,215,0 +170779995531,215,0 +170779995579,215,0 +170779995626,215,0 +170779995676,214,0 +170779995725,214,0 +170779995775,214,0 +170779995824,214,0 +170779995872,214,0 +170779995920,214,0 +170779995970,214,0 +170779996019,214,0 +170779996069,214,0 +170779996117,214,0 +170779996165,214,0 +170779996214,214,0 +170779996262,214,0 +170779996312,215,0 +170779996359,215,0 +170779996407,215,0 +170779996455,215,0 +170779996505,215,0 +170779996553,215,0 +170779996601,215,0 +170779996650,214,0 +170779996698,213,0 +170779996746,213,0 +170779996794,213,0 +170779996842,214,0 +170779996890,214,0 +170779996938,214,0 +170779996985,214,0 +170779997033,214,0 +170779997081,214,0 +170779997129,214,0 +170779997177,214,0 +170779997225,214,0 +170779997273,214,0 +170779997320,215,0 +170779997368,215,0 +170779997418,215,0 +170779997466,214,0 +170779997513,215,0 +170779997561,215,0 +170779997609,214,0 +170779997657,214,0 +170779997705,213,0 +170779997753,214,0 +170779997801,214,0 +170779997849,214,0 +170779997896,214,0 +170779997944,214,0 +170779997992,214,0 +170779998040,214,0 +170779998089,214,0 +170779998137,214,0 +170779998185,215,0 +170779998233,215,0 +170779998283,214,0 +170779998331,214,0 +170779998380,214,0 +170779998428,214,0 +170779998476,215,0 +170779998525,214,0 +170779998573,213,0 +170779998623,213,0 +170779998672,213,0 +170779998722,213,0 +170779998770,213,0 +170779998819,213,0 +170779998867,214,0 +170779998917,214,0 +170779998965,214,0 +170779999014,214,0 +170779999062,214,0 +170779999112,214,0 +170779999159,214,0 +170779999209,215,0 +170779999257,214,0 +170779999307,215,0 +170779999354,215,0 +170779999402,214,0 +170779999452,214,0 +170779999500,213,0 +170779999548,213,0 +170779999596,213,0 +170779999644,213,0 +170779999693,214,0 +170779999743,214,0 +170779999792,214,0 +170779999841,214,0 +170779999889,214,0 +170779999939,214,0 +170779999987,214,0 +170780000036,214,0 +170780000086,214,0 +170780000134,214,0 +170780000182,214,0 +170780000230,214,0 +170780000279,214,0 +170780000327,214,0 +170780000375,214,0 +170780000423,213,0 +170780000472,213,0 +170780000522,213,0 +170780000570,214,0 +170780000618,214,0 +170780000667,214,0 +170780000717,214,0 +170780000765,214,0 +170780000813,214,0 +170780000862,214,0 +170780000910,214,0 +170780000958,214,0 +170780001006,214,0 +170780001054,214,0 +170780001102,214,0 +170780001150,214,0 +170780001198,214,0 +170780001246,214,0 +170780001294,214,0 +170780001342,213,0 +170780001389,213,0 +170780001437,213,0 +170780001485,213,0 +170780001535,213,0 +170780001584,213,0 +170780001634,214,0 +170780001683,214,0 +170780001731,214,0 +170780001781,214,0 +170780001829,214,0 +170780001878,214,0 +170780001926,214,0 +170780001974,214,0 +170780002023,214,0 +170780002071,214,0 +170780002119,214,0 +170780002167,214,0 +170780002215,214,0 +170780002263,214,0 +170780002311,213,0 +170780002359,213,0 +170780002406,213,0 +170780002454,213,0 +170780002504,213,0 +170780002552,213,0 +170780002601,213,0 +170780002650,213,0 +170780002698,214,0 +170780002746,214,0 +170780002794,214,0 +170780002844,214,0 +170780002892,214,0 +170780002939,214,0 +170780002987,214,0 +170780003035,214,0 +170780003083,214,0 +170780003131,214,0 +170780003181,214,0 +170780003229,213,0 +170780003278,213,0 +170780003328,213,0 +170780003375,213,0 +170780003423,213,0 +170780003473,213,0 +170780003521,213,0 +170780003569,213,0 +170780003617,213,0 +170780003665,214,0 +170780003712,214,0 +170780003760,214,0 +170780003808,214,0 +170780003856,214,0 +170780003906,214,0 +170780003953,214,0 +170780004001,214,0 +170780004049,214,0 +170780004097,214,0 +170780004145,213,0 +170780004193,213,0 +170780004242,213,0 +170780004290,213,0 +170780004338,213,0 +170780004386,213,0 +170780004434,213,0 +170780004482,214,0 +170780004531,214,0 +170780004581,214,0 +170780004629,214,0 +170780004677,214,0 +170780004724,214,0 +170780004774,214,0 +170780004823,214,0 +170780004873,214,0 +170780004922,214,0 +170780004972,214,0 +170780005020,214,0 +170780005069,213,0 +170780005117,213,0 +170780005165,213,0 +170780005213,213,0 +170780005263,213,0 +170780005312,213,0 +170780005360,213,0 +170780005409,213,0 +170780005457,214,0 +170780005505,213,0 +170780005555,214,0 +170780005603,214,0 +170780005651,214,0 +170780005699,214,0 +170780005747,214,0 +170780005795,214,0 +170780005844,214,0 +170780005894,214,0 +170780005942,214,0 +170780005991,213,0 +170780006039,213,0 +170780006087,213,0 +170780006136,213,0 +170780006186,213,0 +170780006234,213,0 +170780006282,213,0 +170780006329,214,0 +170780006377,214,0 +170780006425,213,0 +170780006473,214,0 +170780006521,214,0 +170780006571,214,0 +170780006618,214,0 +170780006668,214,0 +170780006716,214,0 +170780006765,214,0 +170780006813,214,0 +170780006861,214,0 +170780006909,214,0 +170780006957,213,0 +170780007005,213,0 +170780007053,213,0 +170780007101,213,0 +170780007151,213,0 +170780007199,213,0 +170780007247,214,0 +170780007296,213,0 +170780007344,214,0 +170780007392,214,0 +170780007440,214,0 +170780007488,214,0 +170780007537,214,0 +170780007585,214,0 +170780007635,214,0 +170780007684,214,0 +170780007732,214,0 +170780007782,214,0 +170780007831,214,0 +170780007881,213,0 +170780007929,213,0 +170780007978,213,0 +170780008026,213,0 +170780008074,214,0 +170780008122,214,0 +170780008170,214,0 +170780008219,214,0 +170780008269,214,0 +170780008318,214,0 +170780008366,214,0 +170780008416,214,0 +170780008465,214,0 +170780008513,214,0 +170780008561,215,0 +170780008610,214,0 +170780008658,214,0 +170780008708,214,0 +170780008757,214,0 +170780008805,213,0 +170780008853,213,0 +170780008903,214,0 +170780008951,214,0 +170780008998,214,0 +170780009048,214,0 +170780009097,214,0 +170780009145,214,0 +170780009193,214,0 +170780009241,214,0 +170780009289,214,0 +170780009337,214,0 +170780009386,214,0 +170780009436,214,0 +170780009485,214,0 +170780009535,214,0 +170780009584,214,0 +170780009632,214,0 +170780009680,214,0 +170780009730,213,0 +170780009778,213,0 +170780009826,213,0 +170780009875,213,0 +170780009923,213,0 +170780009973,214,0 +170780010020,214,0 +170780010068,214,0 +170780010116,214,0 +170780010164,214,0 +170780010212,214,0 +170780010260,214,0 +170780010308,214,0 +170780010355,214,0 +170780010405,215,0 +170780010453,215,0 +170780010500,215,0 +170780010548,214,0 +170780010598,214,0 +170780010646,213,0 +170780010695,213,0 +170780010745,213,0 +170780010794,213,0 +170780010842,214,0 +170780010890,214,0 +170780010939,214,0 +170780010989,214,0 +170780011037,214,0 +170780011086,214,0 +170780011136,214,0 +170780011185,214,0 +170780011233,214,0 +170780011281,214,0 +170780011329,214,0 +170780011377,214,0 +170780011426,214,0 +170780011474,214,0 +170780011522,214,0 +170780011569,213,0 +170780011617,213,0 +170780011665,213,0 +170780011714,213,0 +170780011762,213,0 +170780011810,213,0 +170780011858,213,0 +170780011906,213,0 +170780011953,213,0 +170780012001,213,0 +170780012049,213,0 +170780012097,213,0 +170780012145,214,0 +170780012194,214,0 +170780012244,214,0 +170780012291,214,0 +170780012339,214,0 +170780012387,214,0 +170780012435,214,0 +170780012485,214,0 +170780012534,213,0 +170780012582,213,0 +170780012630,213,0 +170780012678,213,0 +170780012727,214,0 +170780012775,214,0 +170780012823,214,0 +170780012871,214,0 +170780012919,214,0 +170780012967,214,0 +170780013014,214,0 +170780013062,214,0 +170780013110,214,0 +170780013158,214,0 +170780013206,214,0 +170780013254,214,0 +170780013301,214,0 +170780013349,214,0 +170780013399,214,0 +170780013448,213,0 +170780013497,213,0 +170780013547,213,0 +170780013595,213,0 +170780013644,213,0 +170780013694,213,0 +170780013743,214,0 +170780013791,214,0 +170780013839,214,0 +170780013887,214,0 +170780013935,214,0 +170780013983,214,0 +170780014033,214,0 +170780014081,214,0 +170780014129,214,0 +170780014178,214,0 +170780014228,215,0 +170780014276,214,0 +170780014323,214,0 +170780014373,213,0 +170780014421,213,0 +170780014469,213,0 +170780014518,213,0 +170780014566,213,0 +170780014614,214,0 +170780014662,213,0 +170780014710,214,0 +170780014759,214,0 +170780014807,214,0 +170780014855,214,0 +170780014903,214,0 +170780014951,214,0 +170780014999,214,0 +170780015046,215,0 +170780015094,214,0 +170780015142,215,0 +170780015192,215,0 +170780015240,215,0 +170780015289,213,0 +170780015337,213,0 +170780015385,213,0 +170780015434,213,0 +170780015482,213,0 +170780015530,214,0 +170780015578,214,0 +170780015625,214,0 +170780015675,214,0 +170780015724,214,0 +170780015772,214,0 +170780015820,214,0 +170780015869,214,0 +170780015917,214,0 +170780015965,214,0 +170780016015,215,0 +170780016062,215,0 +170780016110,214,0 +170780016158,215,0 +170780016206,214,0 +170780016254,213,0 +170780016301,213,0 +170780016351,213,0 +170780016399,214,0 +170780016447,213,0 +170780016495,213,0 +170780016544,213,0 +170780016594,213,0 +170780016643,214,0 +170780016691,214,0 +170780016739,214,0 +170780016788,214,0 +170780016836,214,0 +170780016884,214,0 +170780016934,214,0 +170780016982,214,0 +170780017030,214,0 +170780017077,214,0 +170780017127,213,0 +170780017175,213,0 +170780017223,213,0 +170780017271,213,0 +170780017318,213,0 +170780017366,213,0 +170780017414,213,0 +170780017464,213,0 +170780017512,213,0 +170780017559,213,0 +170780017607,214,0 +170780017655,214,0 +170780017703,214,0 +170780017751,214,0 +170780017799,214,0 +170780017848,214,0 +170780017896,214,0 +170780017944,214,0 +170780017991,214,0 +170780018039,214,0 +170780018089,214,0 +170780018137,214,0 +170780018185,214,0 +170780018233,214,0 +170780018281,214,0 +170780018330,214,0 +170780018380,214,0 +170780018427,214,0 +170780018477,214,0 +170780018525,214,0 +170780018574,214,0 +170780018624,214,0 +170780018672,215,0 +170780018721,214,0 +170780018771,214,0 +170780018820,215,0 +170780018868,214,0 +170780018917,214,0 +170780018965,214,0 +170780019013,214,0 +170780019061,214,0 +170780019109,213,0 +170780019157,214,0 +170780019206,214,0 +170780019256,214,0 +170780019305,214,0 +170780019353,214,0 +170780019401,214,0 +170780019451,214,0 +170780019499,214,0 +170780019546,214,0 +170780019594,214,0 +170780019642,214,0 +170780019690,215,0 +170780019738,215,0 +170780019785,215,0 +170780019835,215,0 +170780019883,215,0 +170780019930,214,0 +170780019978,213,0 +170780020026,213,0 +170780020074,213,0 +170780020122,214,0 +170780020170,214,0 +170780020218,214,0 +170780020265,214,0 +170780020313,214,0 +170780020363,214,0 +170780020411,214,0 +170780020458,214,0 +170780020506,214,0 +170780020554,214,0 +170780020602,214,0 +170780020650,215,0 +170780020698,214,0 +170780020746,214,0 +170780020795,214,0 +170780020843,214,0 +170780020891,213,0 +170780020939,213,0 +170780020987,213,0 +170780021035,213,0 +170780021084,213,0 +170780021132,214,0 +170780021180,214,0 +170780021228,214,0 +170780021276,214,0 +170780021324,214,0 +170780021373,214,0 +170780021423,214,0 +170780021472,214,0 +170780021520,214,0 +170780021568,214,0 +170780021618,214,0 +170780021667,215,0 +170780021717,215,0 +170780021766,214,0 +170780021815,214,0 +170780021863,213,0 +170780021911,214,0 +170780021959,214,0 +170780022007,214,0 +170780022057,214,0 +170780022104,214,0 +170780022152,214,0 +170780022200,214,0 +170780022250,214,0 +170780022298,214,0 +170780022346,214,0 +170780022393,214,0 +170780022443,214,0 +170780022491,214,0 +170780022539,214,0 +170780022587,214,0 +170780022636,215,0 +170780022686,214,0 +170780022734,214,0 +170780022782,213,0 +170780022831,214,0 +170780022879,214,0 +170780022927,214,0 +170780022975,214,0 +170780023023,214,0 +170780023071,214,0 +170780023118,214,0 +170780023166,214,0 +170780023216,214,0 +170780023264,214,0 +170780023312,215,0 +170780023359,215,0 +170780023407,215,0 +170780023455,215,0 +170780023503,215,0 +170780023551,215,0 +170780023599,214,0 +170780023647,214,0 +170780023695,213,0 +170780023742,214,0 +170780023790,214,0 +170780023838,214,0 +170780023886,214,0 +170780023935,214,0 +170780023985,214,0 +170780024034,214,0 +170780024082,214,0 +170780024132,214,0 +170780024181,215,0 +170780024231,214,0 +170780024279,215,0 +170780024328,215,0 +170780024378,215,0 +170780024426,214,0 +170780024473,214,0 +170780024521,214,0 +170780024569,214,0 +170780024617,213,0 +170780024667,214,0 +170780024715,214,0 +170780024764,213,0 +170780024812,214,0 +170780024860,214,0 +170780024908,214,0 +170780024957,214,0 +170780025007,214,0 +170780025055,214,0 +170780025104,214,0 +170780025154,214,0 +170780025201,214,0 +170780025251,214,0 +170780025300,214,0 +170780025348,215,0 +170780025397,215,0 +170780025445,215,0 +170780025493,214,0 +170780025542,213,0 +170780025590,214,0 +170780025638,213,0 +170780025686,214,0 +170780025734,213,0 +170780025782,213,0 +170780025830,214,0 +170780025877,214,0 +170780025925,214,0 +170780025973,214,0 +170780026023,214,0 +170780026070,214,0 +170780026120,214,0 +170780026169,214,0 +170780026217,214,0 +170780026265,215,0 +170780026313,215,0 +170780026361,215,0 +170780026409,214,0 +170780026459,213,0 +170780026506,214,0 +170780026556,213,0 +170780026604,213,0 +170780026652,214,0 +170780026700,214,0 +170780026748,214,0 +170780026796,214,0 +170780026843,214,0 +170780026891,214,0 +170780026939,214,0 +170780026989,214,0 +170780027038,214,0 +170780027086,215,0 +170780027134,215,0 +170780027181,214,0 +170780027229,215,0 +170780027277,215,0 +170780027325,214,0 +170780027373,213,0 +170780027421,213,0 +170780027468,214,0 +170780027516,214,0 +170780027564,214,0 +170780027614,214,0 +170780027661,214,0 +170780027709,214,0 +170780027757,214,0 +170780027805,214,0 +170780027852,214,0 +170780027902,214,0 +170780027950,214,0 +170780027998,214,0 +170780028045,214,0 +170780028095,214,0 +170780028143,214,0 +170780028191,214,0 +170780028238,214,0 +170780028286,214,0 +170780028334,213,0 +170780028382,213,0 +170780028432,213,0 +170780028481,213,0 +170780028531,214,0 +170780028579,214,0 +170780028628,213,0 +170780028676,214,0 +170780028724,214,0 +170780028772,214,0 +170780028820,214,0 +170780028868,214,0 +170780028917,214,0 +170780028967,214,0 +170780029015,214,0 +170780029064,214,0 +170780029112,214,0 +170780029160,214,0 +170780029208,214,0 +170780029256,213,0 +170780029305,213,0 +170780029355,213,0 +170780029403,213,0 +170780029451,214,0 +170780029499,213,0 +170780029548,213,0 +170780029596,214,0 +170780029644,213,0 +170780029693,214,0 +170780029743,214,0 +170780029793,214,0 +170780029840,214,0 +170780029888,214,0 +170780029936,214,0 +170780029984,214,0 +170780030032,214,0 +170780030082,214,0 +170780030130,214,0 +170780030179,213,0 +170780030227,213,0 +170780030276,213,0 +170780030326,213,0 +170780030374,214,0 +170780030422,214,0 +170780030470,214,0 +170780030519,214,0 +170780030567,214,0 +170780030615,214,0 +170780030663,214,0 +170780030712,214,0 +170780030762,214,0 +170780030810,214,0 +170780030858,214,0 +170780030907,215,0 +170780030957,214,0 +170780031006,214,0 +170780031054,214,0 +170780031102,213,0 +170780031152,213,0 +170780031201,214,0 +170780031249,213,0 +170780031297,213,0 +170780031345,213,0 +170780031394,214,0 +170780031442,214,0 +170780031492,214,0 +170780031540,214,0 +170780031588,214,0 +170780031636,214,0 +170780031684,214,0 +170780031732,214,0 +170780031779,214,0 +170780031827,214,0 +170780031875,214,0 +170780031923,214,0 +170780031971,214,0 +170780032019,213,0 +170780032068,213,0 +170780032116,213,0 +170780032164,213,0 +170780032214,213,0 +170780032261,213,0 +170780032309,213,0 +170780032357,213,0 +170780032405,213,0 +170780032453,214,0 +170780032501,214,0 +170780032549,214,0 +170780032596,214,0 +170780032644,214,0 +170780032692,214,0 +170780032740,214,0 +170780032788,214,0 +170780032836,214,0 +170780032884,214,0 +170780032932,214,0 +170780032981,213,0 +170780033029,213,0 +170780033078,213,0 +170780033128,214,0 +170780033176,213,0 +170780033225,214,0 +170780033273,214,0 +170780033321,214,0 +170780033370,214,0 +170780033418,214,0 +170780033466,214,0 +170780033514,214,0 +170780033563,214,0 +170780033611,214,0 +170780033659,214,0 +170780033709,214,0 +170780033756,214,0 +170780033806,214,0 +170780033854,214,0 +170780033902,213,0 +170780033950,213,0 +170780033997,213,0 +170780034045,213,0 +170780034093,214,0 +170780034141,213,0 +170780034189,214,0 +170780034237,213,0 +170780034285,214,0 +170780034333,214,0 +170780034381,214,0 +170780034429,214,0 +170780034477,214,0 +170780034525,214,0 +170780034573,214,0 +170780034621,214,0 +170780034668,215,0 +170780034716,214,0 +170780034766,214,0 +170780034814,213,0 +170780034862,213,0 +170780034909,213,0 +170780034957,213,0 +170780035005,213,0 +170780035053,213,0 +170780035101,213,0 +170780035149,214,0 +170780035197,214,0 +170780035244,214,0 +170780035292,214,0 +170780035342,214,0 +170780035391,214,0 +170780035439,214,0 +170780035487,214,0 +170780035534,214,0 +170780035582,214,0 +170780035630,214,0 +170780035678,214,0 +170780035726,213,0 +170780035775,213,0 +170780035823,213,0 +170780035871,213,0 +170780035919,213,0 +170780035967,213,0 +170780036016,213,0 +170780036064,214,0 +170780036114,214,0 +170780036162,214,0 +170780036211,214,0 +170780036259,214,0 +170780036307,214,0 +170780036355,214,0 +170780036403,214,0 +170780036451,214,0 +170780036498,214,0 +170780036546,214,0 +170780036594,214,0 +170780036642,214,0 +170780036690,213,0 +170780036740,213,0 +170780036789,213,0 +170780036839,213,0 +170780036887,213,0 +170780036935,213,0 +170780036984,213,0 +170780037032,213,0 +170780037081,213,0 +170780037131,213,0 +170780037179,214,0 +170780037228,214,0 +170780037276,214,0 +170780037324,214,0 +170780037374,214,0 +170780037423,214,0 +170780037471,214,0 +170780037519,214,0 +170780037568,214,0 +170780037616,213,0 +170780037664,213,0 +170780037712,213,0 +170780037762,213,0 +170780037810,213,0 +170780037859,213,0 +170780037909,214,0 +170780037957,214,0 +170780038004,214,0 +170780038054,214,0 +170780038103,214,0 +170780038151,214,0 +170780038199,214,0 +170780038247,214,0 +170780038296,214,0 +170780038346,214,0 +170780038395,214,0 +170780038443,214,0 +170780038493,214,0 +170780038541,213,0 +170780038590,213,0 +170780038638,214,0 +170780038688,214,0 +170780038736,214,0 +170780038783,214,0 +170780038831,214,0 +170780038879,214,0 +170780038929,214,0 +170780038977,214,0 +170780039026,214,0 +170780039074,214,0 +170780039122,214,0 +170780039170,215,0 +170780039218,214,0 +170780039266,214,0 +170780039314,215,0 +170780039362,214,0 +170780039411,214,0 +170780039459,213,0 +170780039507,213,0 +170780039555,213,0 +170780039604,213,0 +170780039654,214,0 +170780039703,214,0 +170780039751,214,0 +170780039799,214,0 +170780039849,214,0 +170780039897,214,0 +170780039945,214,0 +170780039994,214,0 diff --git a/laser_value/0213-15.csv b/laser_value/0213-15.csv new file mode 100644 index 0000000..272d480 --- /dev/null +++ b/laser_value/0213-15.csv @@ -0,0 +1,7437 @@ +timestamp,laser_value,event +170780040044,214,0 +170780040092,215,0 +170780040140,215,0 +170780040188,215,0 +170780040238,215,0 +170780040286,215,0 +170780040334,215,0 +170780040381,214,0 +170780040429,213,0 +170780040479,214,0 +170780040527,214,0 +170780040575,214,0 +170780040623,214,0 +170780040672,214,0 +170780040722,214,0 +170780040770,214,0 +170780040819,214,0 +170780040868,214,0 +170780040918,215,0 +170780040967,214,0 +170780041017,214,0 +170780041065,215,0 +170780041115,215,0 +170780041162,214,0 +170780041210,214,0 +170780041260,214,0 +170780041308,213,0 +170780041356,213,0 +170780041405,214,0 +170780041455,214,0 +170780041503,214,0 +170780041551,214,0 +170780041599,214,0 +170780041646,214,0 +170780041694,214,0 +170780041742,214,0 +170780041790,214,0 +170780041838,214,0 +170780041887,214,0 +170780041935,214,0 +170780041983,214,0 +170780042031,215,0 +170780042081,214,0 +170780042130,214,0 +170780042178,215,0 +170780042228,214,0 +170780042277,213,0 +170780042327,213,0 +170780042374,213,0 +170780042422,214,0 +170780042470,213,0 +170780042520,213,0 +170780042569,214,0 +170780042619,214,0 +170780042668,214,0 +170780042718,214,0 +170780042767,214,0 +170780042815,214,0 +170780042863,214,0 +170780042911,215,0 +170780042961,214,0 +170780043008,215,0 +170780043056,214,0 +170780043104,214,0 +170780043152,214,0 +170780043200,213,0 +170780043247,213,0 +170780043295,213,0 +170780043343,213,0 +170780043391,214,0 +170780043439,214,0 +170780043486,214,0 +170780043534,214,0 +170780043582,214,0 +170780043632,214,0 +170780043681,214,0 +170780043731,214,0 +170780043780,215,0 +170780043828,215,0 +170780043878,215,0 +170780043926,214,0 +170780043975,215,0 +170780044023,215,0 +170780044071,214,0 +170780044120,214,0 +170780044170,214,0 +170780044218,214,0 +170780044267,214,0 +170780044315,214,0 +170780044363,214,0 +170780044411,214,0 +170780044459,214,0 +170780044507,214,0 +170780044554,214,0 +170780044602,215,0 +170780044650,215,0 +170780044698,215,0 +170780044746,214,0 +170780044795,215,0 +170780044843,215,0 +170780044893,215,0 +170780044941,215,0 +170780044989,214,0 +170780045037,214,0 +170780045084,214,0 +170780045132,214,0 +170780045180,214,0 +170780045230,214,0 +170780045279,214,0 +170780045327,214,0 +170780045375,214,0 +170780045423,214,0 +170780045473,214,0 +170780045521,214,0 +170780045568,214,0 +170780045616,214,0 +170780045664,214,0 +170780045714,214,0 +170780045762,215,0 +170780045810,215,0 +170780045858,214,0 +170780045906,214,0 +170780045953,214,0 +170780046003,213,0 +170780046051,213,0 +170780046099,213,0 +170780046147,213,0 +170780046195,214,0 +170780046244,214,0 +170780046294,214,0 +170780046342,214,0 +170780046389,214,0 +170780046437,214,0 +170780046487,214,0 +170780046535,214,0 +170780046582,214,0 +170780046632,214,0 +170780046680,214,0 +170780046728,214,0 +170780046777,215,0 +170780046825,214,0 +170780046875,213,0 +170780046922,213,0 +170780046970,213,0 +170780047018,213,0 +170780047067,213,0 +170780047115,213,0 +170780047165,213,0 +170780047213,213,0 +170780047261,213,0 +170780047309,213,0 +170780047357,214,0 +170780047404,214,0 +170780047452,214,0 +170780047502,214,0 +170780047550,214,0 +170780047599,214,0 +170780047647,214,0 +170780047695,214,0 +170780047743,214,0 +170780047791,214,0 +170780047839,214,0 +170780047887,213,0 +170780047937,213,0 +170780047985,214,0 +170780048032,213,0 +170780048080,213,0 +170780048128,214,0 +170780048178,214,0 +170780048226,214,0 +170780048275,214,0 +170780048325,214,0 +170780048374,214,0 +170780048422,214,0 +170780048470,214,0 +170780048518,214,0 +170780048568,214,0 +170780048617,214,0 +170780048665,214,0 +170780048715,214,0 +170780048762,213,0 +170780048812,213,0 +170780048860,213,0 +170780048909,213,0 +170780048959,214,0 +170780049008,214,0 +170780049056,214,0 +170780049106,213,0 +170780049155,213,0 +170780049203,214,0 +170780049251,214,0 +170780049300,214,0 +170780049348,214,0 +170780049396,214,0 +170780049446,214,0 +170780049494,214,0 +170780049541,214,0 +170780049589,214,0 +170780049637,214,0 +170780049686,213,0 +170780049734,213,0 +170780049782,213,0 +170780049830,214,0 +170780049880,214,0 +170780049929,214,0 +170780049979,214,0 +170780050026,214,0 +170780050074,214,0 +170780050122,214,0 +170780050172,214,0 +170780050220,214,0 +170780050268,214,0 +170780050317,214,0 +170780050367,214,0 +170780050414,214,0 +170780050464,214,0 +170780050513,214,0 +170780050561,214,0 +170780050609,213,0 +170780050657,213,0 +170780050705,213,0 +170780050753,213,0 +170780050801,213,0 +170780050849,214,0 +170780050899,214,0 +170780050948,214,0 +170780050998,214,0 +170780051047,214,0 +170780051097,214,0 +170780051146,214,0 +170780051196,214,0 +170780051244,214,0 +170780051292,215,0 +170780051339,214,0 +170780051387,214,0 +170780051435,214,0 +170780051483,214,0 +170780051531,213,0 +170780051579,213,0 +170780051627,213,0 +170780051675,213,0 +170780051723,214,0 +170780051771,214,0 +170780051820,214,0 +170780051869,214,0 +170780051917,214,0 +170780051965,214,0 +170780052013,214,0 +170780052062,214,0 +170780052112,214,0 +170780052161,214,0 +170780052209,214,0 +170780052257,215,0 +170780052307,214,0 +170780052356,214,0 +170780052404,214,0 +170780052454,214,0 +170780052502,213,0 +170780052549,213,0 +170780052599,213,0 +170780052647,214,0 +170780052695,214,0 +170780052743,214,0 +170780052791,214,0 +170780052839,214,0 +170780052887,214,0 +170780052936,214,0 +170780052984,214,0 +170780053032,214,0 +170780053082,215,0 +170780053129,214,0 +170780053177,215,0 +170780053225,215,0 +170780053275,214,0 +170780053323,214,0 +170780053371,213,0 +170780053420,214,0 +170780053468,213,0 +170780053518,214,0 +170780053566,214,0 +170780053614,214,0 +170780053662,214,0 +170780053711,214,0 +170780053761,214,0 +170780053809,214,0 +170780053856,214,0 +170780053906,214,0 +170780053954,214,0 +170780054002,214,0 +170780054050,214,0 +170780054099,214,0 +170780054147,214,0 +170780054195,214,0 +170780054244,214,0 +170780054292,213,0 +170780054340,214,0 +170780054388,213,0 +170780054436,213,0 +170780054486,214,0 +170780054535,214,0 +170780054585,214,0 +170780054633,214,0 +170780054682,214,0 +170780054730,214,0 +170780054780,214,0 +170780054828,214,0 +170780054876,214,0 +170780054925,214,0 +170780054975,215,0 +170780055024,215,0 +170780055072,215,0 +170780055120,214,0 +170780055168,214,0 +170780055217,214,0 +170780055267,213,0 +170780055315,213,0 +170780055363,213,0 +170780055412,213,0 +170780055460,214,0 +170780055508,214,0 +170780055556,214,0 +170780055604,214,0 +170780055651,214,0 +170780055701,214,0 +170780055750,214,0 +170780055800,215,0 +170780055848,214,0 +170780055897,214,0 +170780055945,214,0 +170780055993,214,0 +170780056041,214,0 +170780056091,215,0 +170780056138,213,0 +170780056186,213,0 +170780056236,213,0 +170780056284,213,0 +170780056332,213,0 +170780056379,213,0 +170780056427,213,0 +170780056477,214,0 +170780056526,214,0 +170780056574,214,0 +170780056622,214,0 +170780056670,214,0 +170780056718,214,0 +170780056767,214,0 +170780056815,214,0 +170780056863,214,0 +170780056911,214,0 +170780056959,214,0 +170780057007,214,0 +170780057054,214,0 +170780057102,213,0 +170780057150,213,0 +170780057198,213,0 +170780057246,213,0 +170780057294,213,0 +170780057341,213,0 +170780057389,213,0 +170780057437,213,0 +170780057485,213,0 +170780057533,213,0 +170780057580,213,0 +170780057628,213,0 +170780057676,214,0 +170780057726,214,0 +170780057773,214,0 +170780057821,214,0 +170780057869,214,0 +170780057917,214,0 +170780057965,214,0 +170780058013,213,0 +170780058061,213,0 +170780058110,213,0 +170780058158,213,0 +170780058206,213,0 +170780058255,213,0 +170780058303,213,0 +170780058351,213,0 +170780058401,214,0 +170780058449,214,0 +170780058498,214,0 +170780058546,214,0 +170780058594,214,0 +170780058643,214,0 +170780058691,214,0 +170780058739,214,0 +170780058788,214,0 +170780058836,214,0 +170780058884,214,0 +170780058933,214,0 +170780058981,213,0 +170780059029,213,0 +170780059078,213,0 +170780059126,213,0 +170780059174,213,0 +170780059224,214,0 +170780059272,214,0 +170780059321,214,0 +170780059369,214,0 +170780059418,214,0 +170780059466,214,0 +170780059514,214,0 +170780059562,214,0 +170780059610,214,0 +170780059658,215,0 +170780059706,214,0 +170780059754,214,0 +170780059803,214,0 +170780059851,213,0 +170780059899,213,0 +170780059947,213,0 +170780059996,213,0 +170780060046,213,0 +170780060095,213,0 +170780060143,213,0 +170780060191,214,0 +170780060241,214,0 +170780060288,214,0 +170780060336,214,0 +170780060384,214,0 +170780060432,214,0 +170780060480,214,0 +170780060528,214,0 +170780060578,214,0 +170780060626,214,0 +170780060673,214,0 +170780060721,214,0 +170780060771,214,0 +170780060819,214,0 +170780060868,213,0 +170780060916,213,0 +170780060964,214,0 +170780061014,213,0 +170780061063,213,0 +170780061111,213,0 +170780061160,214,0 +170780061210,213,0 +170780061259,214,0 +170780061309,214,0 +170780061357,214,0 +170780061405,214,0 +170780061454,214,0 +170780061502,214,0 +170780061550,214,0 +170780061598,214,0 +170780061646,214,0 +170780061694,214,0 +170780061742,213,0 +170780061789,213,0 +170780061837,213,0 +170780061885,213,0 +170780061934,213,0 +170780061982,214,0 +170780062030,214,0 +170780062078,214,0 +170780062127,214,0 +170780062175,214,0 +170780062223,214,0 +170780062273,214,0 +170780062322,214,0 +170780062370,214,0 +170780062418,214,0 +170780062466,214,0 +170780062513,214,0 +170780062561,214,0 +170780062609,214,0 +170780062657,213,0 +170780062706,213,0 +170780062756,213,0 +170780062804,213,0 +170780062852,213,0 +170780062899,213,0 +170780062947,214,0 +170780062997,214,0 +170780063045,214,0 +170780063092,214,0 +170780063140,214,0 +170780063190,214,0 +170780063238,214,0 +170780063286,214,0 +170780063335,214,0 +170780063383,214,0 +170780063431,214,0 +170780063481,214,0 +170780063530,214,0 +170780063578,214,0 +170780063628,213,0 +170780063676,213,0 +170780063725,213,0 +170780063773,214,0 +170780063821,213,0 +170780063870,213,0 +170780063918,213,0 +170780063966,214,0 +170780064014,214,0 +170780064064,214,0 +170780064113,214,0 +170780064163,214,0 +170780064210,214,0 +170780064260,214,0 +170780064310,214,0 +170780064359,214,0 +170780064409,214,0 +170780064458,214,0 +170780064506,214,0 +170780064554,213,0 +170780064602,213,0 +170780064650,213,0 +170780064698,213,0 +170780064747,213,0 +170780064795,213,0 +170780064843,213,0 +170780064891,214,0 +170780064940,214,0 +170780064990,214,0 +170780065039,214,0 +170780065087,214,0 +170780065135,214,0 +170780065185,214,0 +170780065234,215,0 +170780065282,214,0 +170780065330,214,0 +170780065378,214,0 +170780065427,213,0 +170780065475,213,0 +170780065523,213,0 +170780065571,213,0 +170780065621,213,0 +170780065668,214,0 +170780065716,214,0 +170780065764,214,0 +170780065812,214,0 +170780065862,214,0 +170780065911,214,0 +170780065961,214,0 +170780066010,214,0 +170780066058,214,0 +170780066106,214,0 +170780066155,215,0 +170780066205,215,0 +170780066253,214,0 +170780066301,214,0 +170780066349,213,0 +170780066396,213,0 +170780066444,214,0 +170780066492,213,0 +170780066542,214,0 +170780066590,214,0 +170780066638,214,0 +170780066686,214,0 +170780066735,214,0 +170780066785,214,0 +170780066833,214,0 +170780066881,214,0 +170780066930,214,0 +170780066980,214,0 +170780067028,214,0 +170780067077,214,0 +170780067126,214,0 +170780067174,214,0 +170780067222,215,0 +170780067272,214,0 +170780067320,213,0 +170780067368,213,0 +170780067417,213,0 +170780067465,214,0 +170780067513,213,0 +170780067561,213,0 +170780067609,214,0 +170780067657,214,0 +170780067705,214,0 +170780067755,214,0 +170780067802,214,0 +170780067850,214,0 +170780067898,214,0 +170780067946,214,0 +170780067994,214,0 +170780068044,214,0 +170780068092,214,0 +170780068141,214,0 +170780068189,214,0 +170780068237,214,0 +170780068285,213,0 +170780068333,213,0 +170780068382,213,0 +170780068430,214,0 +170780068480,214,0 +170780068528,214,0 +170780068576,214,0 +170780068625,214,0 +170780068675,214,0 +170780068723,214,0 +170780068771,214,0 +170780068818,214,0 +170780068868,214,0 +170780068916,214,0 +170780068965,214,0 +170780069013,214,0 +170780069061,215,0 +170780069109,214,0 +170780069157,214,0 +170780069205,213,0 +170780069253,213,0 +170780069301,213,0 +170780069349,213,0 +170780069397,213,0 +170780069446,213,0 +170780069496,214,0 +170780069544,214,0 +170780069593,214,0 +170780069643,214,0 +170780069692,214,0 +170780069742,214,0 +170780069791,214,0 +170780069841,214,0 +170780069890,214,0 +170780069940,214,0 +170780069989,214,0 +170780070039,214,0 +170780070088,213,0 +170780070136,213,0 +170780070184,213,0 +170780070232,214,0 +170780070280,213,0 +170780070329,214,0 +170780070379,214,0 +170780070428,214,0 +170780070476,214,0 +170780070524,214,0 +170780070574,214,0 +170780070621,214,0 +170780070671,214,0 +170780070719,214,0 +170780070768,214,0 +170780070818,214,0 +170780070866,214,0 +170780070915,215,0 +170780070965,214,0 +170780071013,214,0 +170780071061,213,0 +170780071110,213,0 +170780071158,213,0 +170780071208,214,0 +170780071256,213,0 +170780071303,214,0 +170780071353,213,0 +170780071402,214,0 +170780071450,214,0 +170780071498,214,0 +170780071548,214,0 +170780071596,214,0 +170780071644,214,0 +170780071693,214,0 +170780071741,214,0 +170780071789,214,0 +170780071837,215,0 +170780071885,214,0 +170780071933,214,0 +170780071982,213,0 +170780072030,213,0 +170780072079,213,0 +170780072127,213,0 +170780072177,213,0 +170780072225,213,0 +170780072274,214,0 +170780072324,214,0 +170780072373,214,0 +170780072421,214,0 +170780072469,214,0 +170780072517,214,0 +170780072565,214,0 +170780072614,214,0 +170780072662,214,0 +170780072712,214,0 +170780072760,214,0 +170780072809,214,0 +170780072859,214,0 +170780072907,213,0 +170780072955,213,0 +170780073003,213,0 +170780073052,213,0 +170780073101,213,0 +170780073149,213,0 +170780073197,213,0 +170780073247,213,0 +170780073295,213,0 +170780073344,213,0 +170780073394,213,0 +170780073443,214,0 +170780073491,214,0 +170780073539,214,0 +170780073589,213,0 +170780073637,214,0 +170780073686,214,0 +170780073734,214,0 +170780073783,214,0 +170780073831,213,0 +170780073879,213,0 +170780073929,213,0 +170780073977,213,0 +170780074025,213,0 +170780074073,213,0 +170780074121,213,0 +170780074171,214,0 +170780074219,214,0 +170780074268,214,0 +170780074318,214,0 +170780074366,214,0 +170780074415,214,0 +170780074463,214,0 +170780074511,214,0 +170780074559,214,0 +170780074607,214,0 +170780074654,214,0 +170780074702,214,0 +170780074750,214,0 +170780074798,213,0 +170780074846,213,0 +170780074894,213,0 +170780074941,213,0 +170780074989,213,0 +170780075037,214,0 +170780075085,214,0 +170780075133,214,0 +170780075181,214,0 +170780075228,214,0 +170780075276,214,0 +170780075324,214,0 +170780075372,214,0 +170780075421,214,0 +170780075469,214,0 +170780075518,215,0 +170780075566,214,0 +170780075616,215,0 +170780075664,213,0 +170780075712,213,0 +170780075759,213,0 +170780075809,213,0 +170780075857,213,0 +170780075905,213,0 +170780075952,213,0 +170780076000,213,0 +170780076048,213,0 +170780076096,213,0 +170780076144,213,0 +170780076192,213,0 +170780076239,213,0 +170780076287,213,0 +170780076335,214,0 +170780076384,214,0 +170780076432,214,0 +170780076480,214,0 +170780076528,214,0 +170780076576,214,0 +170780076624,213,0 +170780076671,213,0 +170780076719,213,0 +170780076767,213,0 +170780076815,213,0 +170780076864,213,0 +170780076912,213,0 +170780076960,213,0 +170780077009,213,0 +170780077057,214,0 +170780077105,214,0 +170780077153,214,0 +170780077201,214,0 +170780077249,214,0 +170780077298,214,0 +170780077346,214,0 +170780077394,214,0 +170780077441,214,0 +170780077489,214,0 +170780077537,213,0 +170780077585,213,0 +170780077634,213,0 +170780077682,213,0 +170780077730,213,0 +170780077778,213,0 +170780077826,213,0 +170780077873,213,0 +170780077923,213,0 +170780077971,213,0 +170780078019,214,0 +170780078066,214,0 +170780078114,214,0 +170780078164,214,0 +170780078213,214,0 +170780078261,214,0 +170780078309,214,0 +170780078357,214,0 +170780078405,214,0 +170780078454,214,0 +170780078502,213,0 +170780078552,213,0 +170780078600,213,0 +170780078649,213,0 +170780078697,213,0 +170780078745,213,0 +170780078795,213,0 +170780078844,213,0 +170780078892,213,0 +170780078940,214,0 +170780078990,214,0 +170780079039,214,0 +170780079087,214,0 +170780079135,214,0 +170780079184,214,0 +170780079234,214,0 +170780079282,214,0 +170780079330,214,0 +170780079379,214,0 +170780079429,213,0 +170780079478,214,0 +170780079526,213,0 +170780079574,214,0 +170780079623,213,0 +170780079671,214,0 +170780079719,214,0 +170780079767,214,0 +170780079815,214,0 +170780079863,214,0 +170780079912,214,0 +170780079960,214,0 +170780080008,214,0 +170780080057,214,0 +170780080105,214,0 +170780080153,214,0 +170780080203,214,0 +170780080252,214,0 +170780080300,214,0 +170780080348,213,0 +170780080396,213,0 +170780080445,213,0 +170780080493,214,0 +170780080541,214,0 +170780080589,213,0 +170780080639,214,0 +170780080688,214,0 +170780080736,214,0 +170780080784,214,0 +170780080832,214,0 +170780080880,214,0 +170780080928,214,0 +170780080975,215,0 +170780081023,214,0 +170780081073,214,0 +170780081122,215,0 +170780081172,214,0 +170780081221,214,0 +170780081271,213,0 +170780081320,213,0 +170780081368,213,0 +170780081416,214,0 +170780081466,214,0 +170780081513,214,0 +170780081563,214,0 +170780081611,214,0 +170780081659,214,0 +170780081707,214,0 +170780081755,214,0 +170780081803,214,0 +170780081851,214,0 +170780081899,214,0 +170780081947,214,0 +170780081995,214,0 +170780082042,214,0 +170780082090,214,0 +170780082138,214,0 +170780082186,214,0 +170780082233,213,0 +170780082281,213,0 +170780082329,214,0 +170780082377,214,0 +170780082426,214,0 +170780082474,214,0 +170780082522,214,0 +170780082571,214,0 +170780082619,214,0 +170780082667,214,0 +170780082715,215,0 +170780082764,215,0 +170780082814,214,0 +170780082861,214,0 +170780082909,214,0 +170780082959,214,0 +170780083007,214,0 +170780083055,215,0 +170780083102,214,0 +170780083152,214,0 +170780083200,214,0 +170780083248,213,0 +170780083295,214,0 +170780083343,213,0 +170780083391,214,0 +170780083439,214,0 +170780083488,214,0 +170780083536,214,0 +170780083584,214,0 +170780083632,214,0 +170780083680,214,0 +170780083728,215,0 +170780083775,215,0 +170780083823,215,0 +170780083871,215,0 +170780083919,214,0 +170780083967,214,0 +170780084016,214,0 +170780084064,214,0 +170780084112,214,0 +170780084160,214,0 +170780084208,214,0 +170780084257,214,0 +170780084305,214,0 +170780084353,214,0 +170780084401,214,0 +170780084450,214,0 +170780084498,214,0 +170780084548,214,0 +170780084597,214,0 +170780084647,215,0 +170780084695,215,0 +170780084744,215,0 +170780084794,215,0 +170780084842,215,0 +170780084890,214,0 +170780084939,214,0 +170780084987,214,0 +170780085036,214,0 +170780085084,213,0 +170780085132,213,0 +170780085180,213,0 +170780085228,214,0 +170780085277,214,0 +170780085325,214,0 +170780085373,214,0 +170780085421,214,0 +170780085469,214,0 +170780085517,214,0 +170780085566,215,0 +170780085616,214,0 +170780085664,214,0 +170780085713,214,0 +170780085763,215,0 +170780085811,214,0 +170780085860,214,0 +170780085908,213,0 +170780085956,213,0 +170780086005,213,0 +170780086055,213,0 +170780086103,213,0 +170780086151,214,0 +170780086200,214,0 +170780086248,214,0 +170780086296,214,0 +170780086346,214,0 +170780086394,214,0 +170780086441,214,0 +170780086489,214,0 +170780086539,214,0 +170780086587,214,0 +170780086635,214,0 +170780086683,214,0 +170780086731,214,0 +170780086780,214,0 +170780086828,214,0 +170780086876,213,0 +170780086924,213,0 +170780086972,213,0 +170780087020,214,0 +170780087067,214,0 +170780087115,214,0 +170780087165,214,0 +170780087212,214,0 +170780087260,214,0 +170780087308,214,0 +170780087358,214,0 +170780087406,214,0 +170780087455,214,0 +170780087503,214,0 +170780087551,214,0 +170780087598,214,0 +170780087646,214,0 +170780087694,214,0 +170780087742,214,0 +170780087790,213,0 +170780087839,213,0 +170780087889,213,0 +170780087937,213,0 +170780087986,213,0 +170780088034,213,0 +170780088082,214,0 +170780088132,214,0 +170780088181,214,0 +170780088229,214,0 +170780088278,214,0 +170780088328,214,0 +170780088377,214,0 +170780088425,214,0 +170780088473,214,0 +170780088521,214,0 +170780088569,214,0 +170780088619,214,0 +170780088666,214,0 +170780088716,214,0 +170780088765,213,0 +170780088813,214,0 +170780088863,214,0 +170780088911,214,0 +170780088960,214,0 +170780089008,214,0 +170780089056,214,0 +170780089106,214,0 +170780089153,214,0 +170780089201,214,0 +170780089249,214,0 +170780089297,214,0 +170780089347,214,0 +170780089394,214,0 +170780089444,215,0 +170780089493,214,0 +170780089541,214,0 +170780089589,214,0 +170780089639,213,0 +170780089687,213,0 +170780089735,213,0 +170780089784,213,0 +170780089832,214,0 +170780089880,214,0 +170780089928,214,0 +170780089976,214,0 +170780090024,214,0 +170780090073,214,0 +170780090121,214,0 +170780090169,214,0 +170780090217,214,0 +170780090265,214,0 +170780090313,214,0 +170780090362,214,0 +170780090410,214,0 +170780090458,214,0 +170780090506,214,0 +170780090556,213,0 +170780090605,213,0 +170780090655,213,0 +170780090704,213,0 +170780090752,213,0 +170780090801,213,0 +170780090849,213,0 +170780090897,214,0 +170780090945,213,0 +170780090995,214,0 +170780091044,214,0 +170780091094,214,0 +170780091142,214,0 +170780091190,214,0 +170780091238,214,0 +170780091287,214,0 +170780091337,214,0 +170780091386,214,0 +170780091436,214,0 +170780091484,213,0 +170780091531,213,0 +170780091579,213,0 +170780091627,213,0 +170780091675,213,0 +170780091723,214,0 +170780091771,214,0 +170780091819,214,0 +170780091867,214,0 +170780091915,214,0 +170780091963,214,0 +170780092011,214,0 +170780092060,214,0 +170780092108,214,0 +170780092156,214,0 +170780092204,214,0 +170780092252,214,0 +170780092300,214,0 +170780092350,214,0 +170780092399,214,0 +170780092449,213,0 +170780092497,213,0 +170780092545,213,0 +170780092594,213,0 +170780092644,213,0 +170780092691,213,0 +170780092739,214,0 +170780092787,213,0 +170780092835,214,0 +170780092883,214,0 +170780092933,214,0 +170780092981,214,0 +170780093028,214,0 +170780093078,214,0 +170780093126,214,0 +170780093175,214,0 +170780093223,214,0 +170780093273,214,0 +170780093321,214,0 +170780093370,213,0 +170780093418,213,0 +170780093466,213,0 +170780093516,213,0 +170780093565,213,0 +170780093613,213,0 +170780093661,213,0 +170780093709,214,0 +170780093758,213,0 +170780093808,214,0 +170780093856,214,0 +170780093905,214,0 +170780093953,214,0 +170780094002,214,0 +170780094050,214,0 +170780094098,214,0 +170780094148,214,0 +170780094196,214,0 +170780094243,214,0 +170780094291,213,0 +170780094339,213,0 +170780094387,213,0 +170780094435,213,0 +170780094483,213,0 +170780094531,213,0 +170780094579,213,0 +170780094627,213,0 +170780094675,213,0 +170780094724,213,0 +170780094772,214,0 +170780094820,214,0 +170780094869,214,0 +170780094918,214,0 +170780094966,214,0 +170780095014,214,0 +170780095062,214,0 +170780095112,214,0 +170780095161,214,0 +170780095209,213,0 +170780095258,213,0 +170780095306,213,0 +170780095354,213,0 +170780095402,213,0 +170780095450,213,0 +170780095500,213,0 +170780095548,213,0 +170780095596,214,0 +170780095644,214,0 +170780095691,214,0 +170780095739,214,0 +170780095787,214,0 +170780095835,214,0 +170780095885,214,0 +170780095932,214,0 +170780095982,214,0 +170780096031,214,0 +170780096079,214,0 +170780096127,214,0 +170780096175,213,0 +170780096223,213,0 +170780096273,213,0 +170780096321,213,0 +170780096369,213,0 +170780096417,213,0 +170780096464,213,0 +170780096512,213,0 +170780096560,214,0 +170780096608,214,0 +170780096656,214,0 +170780096706,214,0 +170780096753,214,0 +170780096803,214,0 +170780096851,214,0 +170780096900,214,0 +170780096948,214,0 +170780096996,214,0 +170780097046,214,0 +170780097094,213,0 +170780097142,213,0 +170780097189,213,0 +170780097237,213,0 +170780097287,213,0 +170780097335,214,0 +170780097384,213,0 +170780097432,214,0 +170780097480,214,0 +170780097529,214,0 +170780097577,214,0 +170780097627,214,0 +170780097675,214,0 +170780097724,214,0 +170780097774,214,0 +170780097822,214,0 +170780097870,214,0 +170780097917,214,0 +170780097965,214,0 +170780098013,213,0 +170780098061,213,0 +170780098111,213,0 +170780098159,213,0 +170780098207,213,0 +170780098254,213,0 +170780098304,213,0 +170780098352,214,0 +170780098400,214,0 +170780098448,214,0 +170780098497,214,0 +170780098545,214,0 +170780098594,214,0 +170780098644,214,0 +170780098693,214,0 +170780098741,214,0 +170780098789,214,0 +170780098837,214,0 +170780098885,214,0 +170780098933,214,0 +170780098981,213,0 +170780099030,213,0 +170780099078,213,0 +170780099128,213,0 +170780099176,213,0 +170780099224,213,0 +170780099273,214,0 +170780099321,214,0 +170780099369,213,0 +170780099417,214,0 +170780099465,213,0 +170780099514,214,0 +170780099562,214,0 +170780099610,214,0 +170780099658,214,0 +170780099706,214,0 +170780099754,214,0 +170780099802,214,0 +170780099851,213,0 +170780099899,213,0 +170780099949,213,0 +170780099997,214,0 +170780100045,213,0 +170780100094,213,0 +170780100144,213,0 +170780100192,213,0 +170780100239,214,0 +170780100289,214,0 +170780100338,214,0 +170780100388,214,0 +170780100436,214,0 +170780100484,214,0 +170780100533,214,0 +170780100583,214,0 +170780100631,214,0 +170780100679,214,0 +170780100727,214,0 +170780100775,214,0 +170780100824,214,0 +170780100872,214,0 +170780100920,214,0 +170780100970,214,0 +170780101019,214,0 +170780101067,215,0 +170780101115,215,0 +170780101163,215,0 +170780101211,215,0 +170780101260,213,0 +170780101308,214,0 +170780101358,214,0 +170780101406,213,0 +170780101454,214,0 +170780101502,214,0 +170780101551,214,0 +170780101599,214,0 +170780101647,214,0 +170780101695,214,0 +170780101743,214,0 +170780101793,214,0 +170780101842,214,0 +170780101890,214,0 +170780101938,214,0 +170780101986,214,0 +170780102034,214,0 +170780102082,214,0 +170780102130,214,0 +170780102179,213,0 +170780102227,213,0 +170780102275,213,0 +170780102323,214,0 +170780102371,214,0 +170780102419,214,0 +170780102467,214,0 +170780102515,214,0 +170780102563,213,0 +170780102611,214,0 +170780102659,214,0 +170780102707,214,0 +170780102756,214,0 +170780102804,214,0 +170780102853,214,0 +170780102901,214,0 +170780102949,214,0 +170780102999,214,0 +170780103048,214,0 +170780103098,213,0 +170780103146,213,0 +170780103194,213,0 +170780103242,213,0 +170780103290,213,0 +170780103339,213,0 +170780103389,213,0 +170780103437,214,0 +170780103485,213,0 +170780103534,214,0 +170780103582,213,0 +170780103632,214,0 +170780103681,214,0 +170780103731,214,0 +170780103779,214,0 +170780103828,214,0 +170780103878,214,0 +170780103927,214,0 +170780103975,214,0 +170780104023,213,0 +170780104073,213,0 +170780104122,213,0 +170780104170,213,0 +170780104218,213,0 +170780104268,213,0 +170780104317,214,0 +170780104365,213,0 +170780104414,214,0 +170780104464,214,0 +170780104512,214,0 +170780104561,214,0 +170780104611,214,0 +170780104659,214,0 +170780104707,214,0 +170780104756,214,0 +170780104804,214,0 +170780104852,214,0 +170780104900,214,0 +170780104950,214,0 +170780104999,213,0 +170780105049,213,0 +170780105097,213,0 +170780105146,214,0 +170780105194,213,0 +170780105242,214,0 +170780105290,214,0 +170780105338,213,0 +170780105386,214,0 +170780105434,214,0 +170780105482,214,0 +170780105531,214,0 +170780105579,214,0 +170780105627,215,0 +170780105675,214,0 +170780105723,214,0 +170780105772,215,0 +170780105821,214,0 +170780105869,214,0 +170780105919,213,0 +170780105967,213,0 +170780106016,213,0 +170780106064,213,0 +170780106114,214,0 +170780106163,214,0 +170780106213,214,0 +170780106261,214,0 +170780106309,214,0 +170780106357,214,0 +170780106406,214,0 +170780106454,215,0 +170780106502,214,0 +170780106552,214,0 +170780106600,214,0 +170780106647,214,0 +170780106695,214,0 +170780106743,214,0 +170780106791,214,0 +170780106839,213,0 +170780106889,213,0 +170780106938,213,0 +170780106986,214,0 +170780107035,214,0 +170780107083,214,0 +170780107131,214,0 +170780107179,214,0 +170780107229,214,0 +170780107277,214,0 +170780107326,214,0 +170780107376,214,0 +170780107425,214,0 +170780107475,214,0 +170780107523,214,0 +170780107572,214,0 +170780107620,214,0 +170780107668,214,0 +170780107716,214,0 +170780107766,213,0 +170780107814,213,0 +170780107862,213,0 +170780107909,213,0 +170780107959,213,0 +170780108009,213,0 +170780108056,213,0 +170780108104,214,0 +170780108152,213,0 +170780108200,214,0 +170780108248,214,0 +170780108296,214,0 +170780108344,214,0 +170780108392,214,0 +170780108440,214,0 +170780108488,214,0 +170780108537,214,0 +170780108587,214,0 +170780108635,214,0 +170780108684,214,0 +170780108732,213,0 +170780108780,213,0 +170780108829,213,0 +170780108877,213,0 +170780108927,214,0 +170780108977,214,0 +170780109026,214,0 +170780109076,214,0 +170780109125,214,0 +170780109175,214,0 +170780109223,214,0 +170780109271,214,0 +170780109319,214,0 +170780109368,214,0 +170780109416,214,0 +170780109465,214,0 +170780109515,214,0 +170780109563,214,0 +170780109611,213,0 +170780109658,213,0 +170780109706,213,0 +170780109754,213,0 +170780109802,213,0 +170780109851,213,0 +170780109899,213,0 +170780109947,214,0 +170780109995,214,0 +170780110043,214,0 +170780110091,214,0 +170780110139,214,0 +170780110187,214,0 +170780110235,214,0 +170780110283,214,0 +170780110332,214,0 +170780110380,214,0 +170780110429,214,0 +170780110479,214,0 +170780110527,214,0 +170780110576,213,0 +170780110624,213,0 +170780110672,214,0 +170780110720,213,0 +170780110768,213,0 +170780110818,213,0 +170780110866,214,0 +170780110914,214,0 +170780110962,214,0 +170780111009,214,0 +170780111057,214,0 +170780111105,214,0 +170780111153,214,0 +170780111203,214,0 +170780111252,214,0 +170780111300,214,0 +170780111348,214,0 +170780111396,214,0 +170780111444,214,0 +170780111494,213,0 +170780111543,214,0 +170780111591,213,0 +170780111639,214,0 +170780111687,213,0 +170780111735,214,0 +170780111784,214,0 +170780111832,214,0 +170780111882,214,0 +170780111930,214,0 +170780111979,214,0 +170780112027,214,0 +170780112075,214,0 +170780112123,214,0 +170780112170,214,0 +170780112218,214,0 +170780112266,214,0 +170780112314,214,0 +170780112362,214,0 +170780112410,213,0 +170780112458,213,0 +170780112506,213,0 +170780112554,213,0 +170780112602,214,0 +170780112649,214,0 +170780112699,213,0 +170780112747,214,0 +170780112797,214,0 +170780112846,214,0 +170780112894,214,0 +170780112943,214,0 +170780112991,214,0 +170780113039,214,0 +170780113087,214,0 +170780113137,214,0 +170780113185,214,0 +170780113233,214,0 +170780113282,214,0 +170780113332,213,0 +170780113380,213,0 +170780113428,213,0 +170780113475,213,0 +170780113525,213,0 +170780113574,213,0 +170780113622,214,0 +170780113670,213,0 +170780113718,214,0 +170780113768,214,0 +170780113815,214,0 +170780113863,214,0 +170780113913,214,0 +170780113962,214,0 +170780114010,214,0 +170780114060,214,0 +170780114109,215,0 +170780114157,215,0 +170780114207,214,0 +170780114255,214,0 +170780114303,213,0 +170780114351,213,0 +170780114399,214,0 +170780114447,214,0 +170780114496,213,0 +170780114546,214,0 +170780114594,214,0 +170780114642,214,0 +170780114691,214,0 +170780114739,214,0 +170780114788,214,0 +170780114836,214,0 +170780114884,214,0 +170780114932,214,0 +170780114980,214,0 +170780115028,215,0 +170780115076,214,0 +170780115124,214,0 +170780115172,214,0 +170780115219,213,0 +170780115267,213,0 +170780115317,213,0 +170780115366,213,0 +170780115414,213,0 +170780115464,214,0 +170780115513,214,0 +170780115563,214,0 +170780115612,214,0 +170780115660,214,0 +170780115708,214,0 +170780115758,214,0 +170780115806,214,0 +170780115854,214,0 +170780115902,214,0 +170780115950,214,0 +170780115998,214,0 +170780116046,214,0 +170780116094,214,0 +170780116143,213,0 +170780116192,213,0 +170780116240,213,0 +170780116288,213,0 +170780116338,213,0 +170780116386,213,0 +170780116435,213,0 +170780116483,213,0 +170780116531,214,0 +170780116579,213,0 +170780116626,214,0 +170780116674,214,0 +170780116722,214,0 +170780116770,214,0 +170780116818,214,0 +170780116868,214,0 +170780116917,214,0 +170780116967,214,0 +170780117016,214,0 +170780117064,214,0 +170780117112,213,0 +170780117162,213,0 +170780117210,214,0 +170780117257,214,0 +170780117307,214,0 +170780117355,214,0 +170780117403,214,0 +170780117451,214,0 +170780117500,214,0 +170780117548,214,0 +170780117596,214,0 +170780117644,214,0 +170780117692,214,0 +170780117740,214,0 +170780117789,215,0 +170780117837,214,0 +170780117885,214,0 +170780117934,214,0 +170780117984,214,0 +170780118032,213,0 +170780118080,213,0 +170780118127,213,0 +170780118175,214,0 +170780118225,214,0 +170780118274,213,0 +170780118324,214,0 +170780118373,214,0 +170780118421,214,0 +170780118469,214,0 +170780118517,214,0 +170780118565,214,0 +170780118614,214,0 +170780118662,214,0 +170780118712,214,0 +170780118760,214,0 +170780118809,214,0 +170780118859,214,0 +170780118907,214,0 +170780118955,213,0 +170780119003,213,0 +170780119051,213,0 +170780119098,213,0 +170780119146,213,0 +170780119196,213,0 +170780119244,214,0 +170780119292,214,0 +170780119340,214,0 +170780119388,214,0 +170780119436,214,0 +170780119485,214,0 +170780119533,214,0 +170780119583,214,0 +170780119632,214,0 +170780119682,214,0 +170780119731,214,0 +170780119779,214,0 +170780119827,214,0 +170780119877,213,0 +170780119925,213,0 +170780119972,213,0 +170780120022,213,0 +170780120070,213,0 +170780120118,213,0 +170780120167,213,0 +170780120215,213,0 +170780120263,214,0 +170780120311,214,0 +170780120359,214,0 +170780120407,214,0 +170780120455,214,0 +170780120504,214,0 +170780120552,214,0 +170780120600,214,0 +170780120648,214,0 +170780120697,214,0 +170780120747,214,0 +170780120795,213,0 +170780120843,213,0 +170780120892,213,0 +170780120940,213,0 +170780120988,213,0 +170780121036,213,0 +170780121086,213,0 +170780121134,213,0 +170780121181,213,0 +170780121229,213,0 +170780121279,213,0 +170780121327,214,0 +170780121375,213,0 +170780121424,214,0 +170780121474,214,0 +170780121523,214,0 +170780121573,214,0 +170780121621,214,0 +170780121669,214,0 +170780121717,214,0 +170780121766,213,0 +170780121816,213,0 +170780121864,213,0 +170780121913,213,0 +170780121961,213,0 +170780122009,213,0 +170780122057,213,0 +170780122106,213,0 +170780122154,213,0 +170780122202,213,0 +170780122252,213,0 +170780122301,213,0 +170780122349,213,0 +170780122399,214,0 +170780122448,214,0 +170780122496,214,0 +170780122544,214,0 +170780122593,214,0 +170780122641,214,0 +170780122689,213,0 +170780122737,213,0 +170780122785,213,0 +170780122833,213,0 +170780122883,213,0 +170780122932,213,0 +170780122980,213,0 +170780123028,213,0 +170780123076,213,0 +170780123125,213,0 +170780123175,214,0 +170780123223,214,0 +170780123272,214,0 +170780123320,214,0 +170780123368,214,0 +170780123416,214,0 +170780123464,214,0 +170780123511,214,0 +170780123559,214,0 +170780123607,213,0 +170780123655,213,0 +170780123704,213,0 +170780123752,213,0 +170780123800,213,0 +170780123848,213,0 +170780123896,213,0 +170780123944,213,0 +170780123991,214,0 +170780124039,214,0 +170780124089,214,0 +170780124136,214,0 +170780124184,214,0 +170780124234,214,0 +170780124282,214,0 +170780124330,214,0 +170780124377,214,0 +170780124425,214,0 +170780124475,214,0 +170780124523,213,0 +170780124571,213,0 +170780124619,213,0 +170780124668,213,0 +170780124717,213,0 +170780124767,213,0 +170780124816,213,0 +170780124866,213,0 +170780124914,213,0 +170780124962,214,0 +170780125010,214,0 +170780125059,214,0 +170780125108,214,0 +170780125156,214,0 +170780125204,214,0 +170780125252,214,0 +170780125302,214,0 +170780125351,214,0 +170780125399,214,0 +170780125449,214,0 +170780125497,213,0 +170780125545,213,0 +170780125594,213,0 +170780125644,213,0 +170780125693,213,0 +170780125741,213,0 +170780125789,213,0 +170780125839,214,0 +170780125887,214,0 +170780125934,214,0 +170780125982,214,0 +170780126030,214,0 +170780126078,214,0 +170780126126,214,0 +170780126176,214,0 +170780126225,214,0 +170780126273,214,0 +170780126321,214,0 +170780126369,214,0 +170780126419,213,0 +170780126467,213,0 +170780126515,213,0 +170780126563,213,0 +170780126612,214,0 +170780126662,214,0 +170780126710,214,0 +170780126758,214,0 +170780126807,214,0 +170780126855,214,0 +170780126903,214,0 +170780126951,214,0 +170780126999,214,0 +170780127047,214,0 +170780127096,214,0 +170780127144,214,0 +170780127192,214,0 +170780127240,215,0 +170780127288,214,0 +170780127338,214,0 +170780127386,213,0 +170780127434,213,0 +170780127483,214,0 +170780127531,214,0 +170780127579,214,0 +170780127629,214,0 +170780127676,214,0 +170780127724,214,0 +170780127774,214,0 +170780127823,214,0 +170780127871,214,0 +170780127919,215,0 +170780127969,214,0 +170780128017,215,0 +170780128064,215,0 +170780128114,214,0 +170780128163,214,0 +170780128213,214,0 +170780128261,214,0 +170780128309,214,0 +170780128357,214,0 +170780128406,214,0 +170780128454,214,0 +170780128503,214,0 +170780128551,214,0 +170780128599,214,0 +170780128647,214,0 +170780128695,214,0 +170780128745,214,0 +170780128793,214,0 +170780128841,214,0 +170780128888,215,0 +170780128936,214,0 +170780128984,215,0 +170780129032,215,0 +170780129082,214,0 +170780129131,214,0 +170780129179,214,0 +170780129229,213,0 +170780129277,214,0 +170780129325,213,0 +170780129374,214,0 +170780129422,214,0 +170780129472,214,0 +170780129521,214,0 +170780129569,214,0 +170780129617,214,0 +170780129664,214,0 +170780129712,214,0 +170780129762,215,0 +170780129810,214,0 +170780129857,214,0 +170780129907,215,0 +170780129955,214,0 +170780130002,214,0 +170780130052,214,0 +170780130100,214,0 +170780130149,214,0 +170780130197,214,0 +170780130245,214,0 +170780130292,214,0 +170780130340,214,0 +170780130388,214,0 +170780130436,214,0 +170780130484,214,0 +170780130533,214,0 +170780130583,214,0 +170780130630,214,0 +170780130678,214,0 +170780130726,214,0 +170780130776,215,0 +170780130823,215,0 +170780130873,215,0 +170780130922,214,0 +170780130972,214,0 +170780131021,214,0 +170780131071,213,0 +170780131119,213,0 +170780131167,213,0 +170780131216,214,0 +170780131264,214,0 +170780131312,214,0 +170780131360,214,0 +170780131408,214,0 +170780131455,214,0 +170780131503,214,0 +170780131551,214,0 +170780131599,214,0 +170780131647,214,0 +170780131697,214,0 +170780131745,214,0 +170780131794,214,0 +170780131842,214,0 +170780131890,214,0 +170780131938,214,0 +170780131986,213,0 +170780132034,213,0 +170780132082,213,0 +170780132130,213,0 +170780132178,213,0 +170780132226,213,0 +170780132275,214,0 +170780132323,214,0 +170780132371,214,0 +170780132420,214,0 +170780132468,214,0 +170780132516,214,0 +170780132564,214,0 +170780132612,214,0 +170780132660,214,0 +170780132708,214,0 +170780132755,214,0 +170780132803,214,0 +170780132851,214,0 +170780132899,214,0 +170780132947,214,0 +170780132995,213,0 +170780133044,213,0 +170780133092,213,0 +170780133141,214,0 +170780133189,214,0 +170780133239,214,0 +170780133287,214,0 +170780133335,214,0 +170780133384,214,0 +170780133434,214,0 +170780133482,214,0 +170780133530,214,0 +170780133578,214,0 +170780133626,214,0 +170780133674,215,0 +170780133723,214,0 +170780133773,214,0 +170780133822,214,0 +170780133870,213,0 +170780133920,213,0 +170780133968,213,0 +170780134017,214,0 +170780134065,214,0 +170780134113,214,0 +170780134161,214,0 +170780134209,214,0 +170780134257,214,0 +170780134305,214,0 +170780134352,214,0 +170780134400,214,0 +170780134450,214,0 +170780134498,214,0 +170780134547,214,0 +170780134597,214,0 +170780134645,214,0 +170780134693,214,0 +170780134740,214,0 +170780134788,213,0 +170780134836,213,0 +170780134886,214,0 +170780134935,213,0 +170780134983,214,0 +170780135031,214,0 +170780135079,214,0 +170780135129,214,0 +170780135177,214,0 +170780135225,214,0 +170780135274,214,0 +170780135324,214,0 +170780135372,214,0 +170780135421,214,0 +170780135470,215,0 +170780135518,214,0 +170780135566,214,0 +170780135614,214,0 +170780135664,214,0 +170780135712,213,0 +170780135760,213,0 +170780135809,213,0 +170780135857,213,0 +170780135905,213,0 +170780135955,214,0 +170780136004,213,0 +170780136052,213,0 +170780136100,214,0 +170780136149,214,0 +170780136197,214,0 +170780136247,214,0 +170780136296,214,0 +170780136346,214,0 +170780136395,214,0 +170780136443,214,0 +170780136491,214,0 +170780136539,214,0 +170780136587,214,0 +170780136636,213,0 +170780136684,213,0 +170780136732,213,0 +170780136780,213,0 +170780136828,213,0 +170780136877,213,0 +170780136925,213,0 +170780136975,213,0 +170780137023,213,0 +170780137071,213,0 +170780137120,214,0 +170780137168,214,0 +170780137218,214,0 +170780137265,214,0 +170780137313,214,0 +170780137361,214,0 +170780137411,214,0 +170780137460,214,0 +170780137508,214,0 +170780137558,213,0 +170780137607,213,0 +170780137655,213,0 +170780137703,213,0 +170780137753,213,0 +170780137802,213,0 +170780137852,214,0 +170780137900,213,0 +170780137947,214,0 +170780137995,214,0 +170780138043,214,0 +170780138091,214,0 +170780138139,214,0 +170780138187,214,0 +170780138237,214,0 +170780138286,214,0 +170780138334,214,0 +170780138384,214,0 +170780138431,214,0 +170780138481,213,0 +170780138530,213,0 +170780138580,213,0 +170780138628,213,0 +170780138676,213,0 +170780138724,213,0 +170780138772,213,0 +170780138820,214,0 +170780138868,214,0 +170780138917,214,0 +170780138965,213,0 +170780139013,214,0 +170780139061,214,0 +170780139111,214,0 +170780139160,214,0 +170780139208,214,0 +170780139257,214,0 +170780139305,214,0 +170780139353,214,0 +170780139401,214,0 +170780139449,213,0 +170780139497,213,0 +170780139545,213,0 +170780139593,213,0 +170780139642,213,0 +170780139692,213,0 +170780139740,213,0 +170780139788,213,0 +170780139836,214,0 +170780139884,214,0 +170780139933,214,0 +170780139981,214,0 +170780140029,214,0 +170780140077,214,0 +170780140125,214,0 +170780140173,214,0 +170780140221,214,0 +170780140269,214,0 +170780140318,214,0 +170780140368,213,0 +170780140416,213,0 +170780140464,213,0 +170780140513,213,0 +170780140563,213,0 +170780140612,213,0 +170780140662,213,0 +170780140710,213,0 +170780140758,214,0 +170780140806,213,0 +170780140854,214,0 +170780140903,214,0 +170780140951,214,0 +170780140999,214,0 +170780141047,214,0 +170780141097,214,0 +170780141145,214,0 +170780141193,214,0 +170780141241,214,0 +170780141290,213,0 +170780141339,213,0 +170780141389,213,0 +170780141439,214,0 +170780141487,214,0 +170780141536,214,0 +170780141586,214,0 +170780141635,214,0 +170780141683,214,0 +170780141732,214,0 +170780141780,214,0 +170780141830,214,0 +170780141879,214,0 +170780141929,214,0 +170780141977,214,0 +170780142025,214,0 +170780142073,214,0 +170780142121,214,0 +170780142170,214,0 +170780142218,213,0 +170780142266,213,0 +170780142314,213,0 +170780142361,213,0 +170780142409,213,0 +170780142457,214,0 +170780142507,214,0 +170780142555,214,0 +170780142602,214,0 +170780142650,214,0 +170780142698,214,0 +170780142746,214,0 +170780142794,214,0 +170780142843,214,0 +170780142893,214,0 +170780142941,214,0 +170780142990,214,0 +170780143038,214,0 +170780143088,214,0 +170780143136,214,0 +170780143184,213,0 +170780143232,213,0 +170780143279,213,0 +170780143329,213,0 +170780143377,214,0 +170780143426,214,0 +170780143474,213,0 +170780143522,214,0 +170780143570,214,0 +170780143618,214,0 +170780143667,214,0 +170780143717,214,0 +170780143766,214,0 +170780143816,214,0 +170780143864,214,0 +170780143912,215,0 +170780143960,214,0 +170780144008,214,0 +170780144056,214,0 +170780144105,213,0 +170780144155,213,0 +170780144203,213,0 +170780144252,213,0 +170780144302,213,0 +170780144350,214,0 +170780144397,214,0 +170780144445,214,0 +170780144493,214,0 +170780144541,214,0 +170780144589,214,0 +170780144639,214,0 +170780144688,214,0 +170780144736,214,0 +170780144784,215,0 +170780144832,214,0 +170780144880,214,0 +170780144928,214,0 +170780144976,214,0 +170780145024,213,0 +170780145071,214,0 +170780145121,213,0 +170780145170,213,0 +170780145220,213,0 +170780145268,214,0 +170780145316,214,0 +170780145364,214,0 +170780145412,214,0 +170780145459,214,0 +170780145507,214,0 +170780145555,214,0 +170780145605,214,0 +170780145653,214,0 +170780145702,214,0 +170780145750,214,0 +170780145798,214,0 +170780145846,215,0 +170780145894,214,0 +170780145942,214,0 +170780145991,213,0 +170780146039,213,0 +170780146087,213,0 +170780146137,213,0 +170780146186,214,0 +170780146234,214,0 +170780146282,214,0 +170780146330,214,0 +170780146378,214,0 +170780146426,214,0 +170780146475,214,0 +170780146523,214,0 +170780146571,214,0 +170780146620,214,0 +170780146670,214,0 +170780146718,214,0 +170780146766,214,0 +170780146814,214,0 +170780146863,214,0 +170780146913,213,0 +170780146961,213,0 +170780147009,213,0 +170780147057,213,0 +170780147105,213,0 +170780147154,213,0 +170780147202,214,0 +170780147250,214,0 +170780147298,214,0 +170780147346,214,0 +170780147395,214,0 +170780147443,214,0 +170780147491,214,0 +170780147539,214,0 +170780147587,214,0 +170780147635,214,0 +170780147683,214,0 +170780147731,214,0 +170780147779,214,0 +170780147828,213,0 +170780147878,213,0 +170780147926,213,0 +170780147975,213,0 +170780148023,213,0 +170780148071,213,0 +170780148119,213,0 +170780148168,214,0 +170780148216,214,0 +170780148264,214,0 +170780148312,214,0 +170780148360,214,0 +170780148410,214,0 +170780148457,214,0 +170780148505,214,0 +170780148555,214,0 +170780148603,214,0 +170780148651,214,0 +170780148699,214,0 +170780148747,213,0 +170780148795,213,0 +170780148844,213,0 +170780148892,214,0 +170780148941,214,0 +170780148991,214,0 +170780149040,213,0 +170780149088,214,0 +170780149136,214,0 +170780149185,214,0 +170780149233,214,0 +170780149283,214,0 +170780149331,214,0 +170780149379,214,0 +170780149428,214,0 +170780149476,214,0 +170780149526,214,0 +170780149574,214,0 +170780149621,214,0 +170780149669,213,0 +170780149717,213,0 +170780149765,213,0 +170780149813,213,0 +170780149863,214,0 +170780149910,213,0 +170780149958,213,0 +170780150006,214,0 +170780150056,214,0 +170780150104,214,0 +170780150152,214,0 +170780150201,214,0 +170780150249,214,0 +170780150299,214,0 +170780150348,214,0 +170780150396,214,0 +170780150444,214,0 +170780150492,214,0 +170780150540,214,0 +170780150588,214,0 +170780150636,213,0 +170780150684,213,0 +170780150733,213,0 +170780150781,213,0 +170780150829,213,0 +170780150877,214,0 +170780150925,214,0 +170780150974,214,0 +170780151024,214,0 +170780151072,214,0 +170780151120,214,0 +170780151167,214,0 +170780151217,214,0 +170780151265,215,0 +170780151314,214,0 +170780151362,215,0 +170780151410,215,0 +170780151458,214,0 +170780151506,214,0 +170780151554,213,0 +170780151602,213,0 +170780151650,213,0 +170780151698,213,0 +170780151746,213,0 +170780151795,213,0 +170780151843,213,0 +170780151891,214,0 +170780151939,214,0 +170780151987,214,0 +170780152037,214,0 +170780152085,214,0 +170780152133,214,0 +170780152180,214,0 +170780152228,214,0 +170780152278,214,0 +170780152326,214,0 +170780152374,214,0 +170780152423,214,0 +170780152471,213,0 +170780152521,213,0 +170780152569,213,0 +170780152618,213,0 +170780152666,213,0 +170780152714,213,0 +170780152762,213,0 +170780152811,213,0 +170780152859,213,0 +170780152909,214,0 +170780152957,214,0 +170780153005,214,0 +170780153053,214,0 +170780153101,214,0 +170780153150,214,0 +170780153198,214,0 +170780153246,214,0 +170780153294,214,0 +170780153342,214,0 +170780153390,213,0 +170780153439,213,0 +170780153487,213,0 +170780153535,213,0 +170780153583,213,0 +170780153631,213,0 +170780153679,214,0 +170780153727,214,0 +170780153775,214,0 +170780153824,214,0 +170780153874,214,0 +170780153923,214,0 +170780153971,214,0 +170780154019,214,0 +170780154067,214,0 +170780154115,214,0 +170780154164,214,0 +170780154212,214,0 +170780154260,214,0 +170780154308,214,0 +170780154356,213,0 +170780154404,213,0 +170780154453,214,0 +170780154501,213,0 +170780154549,214,0 +170780154597,214,0 +170780154645,214,0 +170780154693,214,0 +170780154741,214,0 +170780154790,214,0 +170780154838,214,0 +170780154888,214,0 +170780154937,214,0 +170780154986,215,0 +170780155036,214,0 +170780155085,214,0 +170780155133,215,0 +170780155181,214,0 +170780155229,214,0 +170780155277,213,0 +170780155325,213,0 +170780155373,213,0 +170780155421,213,0 +170780155469,213,0 +170780155518,214,0 +170780155566,214,0 +170780155614,214,0 +170780155662,214,0 +170780155711,214,0 +170780155759,214,0 +170780155807,214,0 +170780155857,214,0 +170780155906,214,0 +170780155954,214,0 +170780156002,214,0 +170780156051,214,0 +170780156099,214,0 +170780156149,214,0 +170780156198,213,0 +170780156246,213,0 +170780156294,213,0 +170780156343,213,0 +170780156391,213,0 +170780156439,213,0 +170780156489,214,0 +170780156536,213,0 +170780156584,213,0 +170780156634,214,0 +170780156683,214,0 +170780156733,214,0 +170780156781,214,0 +170780156829,214,0 +170780156878,215,0 +170780156926,214,0 +170780156974,214,0 +170780157024,214,0 +170780157073,214,0 +170780157121,213,0 +170780157171,213,0 +170780157219,214,0 +170780157267,213,0 +170780157315,214,0 +170780157364,214,0 +170780157412,214,0 +170780157460,214,0 +170780157508,214,0 +170780157556,214,0 +170780157604,214,0 +170780157653,214,0 +170780157701,214,0 +170780157749,214,0 +170780157797,214,0 +170780157845,215,0 +170780157894,214,0 +170780157944,214,0 +170780157993,214,0 +170780158043,213,0 +170780158092,214,0 +170780158142,213,0 +170780158190,213,0 +170780158239,213,0 +170780158287,213,0 +170780158335,213,0 +170780158383,214,0 +170780158431,214,0 +170780158480,214,0 +170780158528,214,0 +170780158576,214,0 +170780158624,214,0 +170780158673,214,0 +170780158721,214,0 +170780158771,214,0 +170780158819,214,0 +170780158867,214,0 +170780158915,214,0 +170780158964,213,0 +170780159012,213,0 +170780159060,213,0 +170780159110,213,0 +170780159157,213,0 +170780159207,213,0 +170780159255,213,0 +170780159303,214,0 +170780159352,214,0 +170780159402,214,0 +170780159451,214,0 +170780159501,214,0 +170780159550,214,0 +170780159600,214,0 +170780159648,214,0 +170780159696,214,0 +170780159744,214,0 +170780159791,214,0 +170780159841,214,0 +170780159889,213,0 +170780159938,213,0 +170780159988,213,0 +170780160036,213,0 +170780160084,213,0 +170780160131,214,0 +170780160179,213,0 +170780160227,214,0 +170780160275,214,0 +170780160323,214,0 +170780160371,214,0 +170780160419,214,0 +170780160469,214,0 +170780160518,214,0 +170780160568,214,0 +170780160616,214,0 +170780160665,214,0 +170780160713,214,0 +170780160763,214,0 +170780160811,214,0 +170780160860,213,0 +170780160910,213,0 +170780160958,214,0 +170780161007,214,0 +170780161057,213,0 +170780161105,214,0 +170780161153,214,0 +170780161202,214,0 +170780161252,214,0 +170780161301,214,0 +170780161351,214,0 +170780161399,214,0 +170780161447,214,0 +170780161496,214,0 +170780161546,214,0 +170780161593,214,0 +170780161641,215,0 +170780161691,214,0 +170780161739,214,0 +170780161788,213,0 +170780161836,214,0 +170780161886,213,0 +170780161934,213,0 +170780161982,214,0 +170780162031,214,0 +170780162081,214,0 +170780162129,214,0 +170780162177,214,0 +170780162225,214,0 +170780162274,214,0 +170780162322,214,0 +170780162370,214,0 +170780162419,214,0 +170780162467,214,0 +170780162515,214,0 +170780162563,214,0 +170780162611,214,0 +170780162659,214,0 +170780162709,213,0 +170780162757,213,0 +170780162806,213,0 +170780162854,213,0 +170780162902,213,0 +170780162950,213,0 +170780162998,213,0 +170780163047,213,0 +170780163095,213,0 +170780163143,214,0 +170780163191,214,0 +170780163240,214,0 +170780163288,214,0 +170780163338,214,0 +170780163387,214,0 +170780163435,214,0 +170780163483,215,0 +170780163531,214,0 +170780163580,214,0 +170780163630,214,0 +170780163678,213,0 +170780163727,213,0 +170780163775,213,0 +170780163825,213,0 +170780163874,213,0 +170780163922,213,0 +170780163970,213,0 +170780164018,214,0 +170780164068,214,0 +170780164117,214,0 +170780164165,214,0 +170780164213,214,0 +170780164262,214,0 +170780164310,214,0 +170780164360,214,0 +170780164408,214,0 +170780164455,214,0 +170780164503,214,0 +170780164551,214,0 +170780164599,213,0 +170780164648,213,0 +170780164696,213,0 +170780164744,213,0 +170780164793,213,0 +170780164841,213,0 +170780164891,213,0 +170780164939,213,0 +170780164987,213,0 +170780165035,214,0 +170780165084,213,0 +170780165134,214,0 +170780165182,214,0 +170780165231,214,0 +170780165279,214,0 +170780165327,213,0 +170780165375,213,0 +170780165424,214,0 +170780165472,214,0 +170780165520,213,0 +170780165568,213,0 +170780165616,213,0 +170780165664,213,0 +170780165714,213,0 +170780165762,213,0 +170780165811,213,0 +170780165861,213,0 +170780165910,214,0 +170780165958,214,0 +170780166006,213,0 +170780166054,214,0 +170780166102,214,0 +170780166151,214,0 +170780166201,214,0 +170780166249,214,0 +170780166297,214,0 +170780166345,214,0 +170780166393,214,0 +170780166441,214,0 +170780166490,213,0 +170780166538,214,0 +170780166588,213,0 +170780166637,213,0 +170780166687,214,0 +170780166736,213,0 +170780166784,214,0 +170780166834,214,0 +170780166883,214,0 +170780166931,214,0 +170780166979,214,0 +170780167027,214,0 +170780167077,214,0 +170780167125,215,0 +170780167174,214,0 +170780167222,214,0 +170780167270,214,0 +170780167318,215,0 +170780167368,213,0 +170780167417,213,0 +170780167465,213,0 +170780167513,213,0 +170780167561,214,0 +170780167609,213,0 +170780167657,213,0 +170780167705,214,0 +170780167752,214,0 +170780167800,214,0 +170780167848,214,0 +170780167896,214,0 +170780167944,214,0 +170780167992,214,0 +170780168040,214,0 +170780168089,214,0 +170780168137,215,0 +170780168185,214,0 +170780168233,214,0 +170780168281,214,0 +170780168329,213,0 +170780168377,213,0 +170780168425,213,0 +170780168472,213,0 +170780168522,213,0 +170780168570,213,0 +170780168618,213,0 +170780168665,213,0 +170780168713,214,0 +170780168761,214,0 +170780168811,214,0 +170780168859,214,0 +170780168908,214,0 +170780168956,214,0 +170780169004,214,0 +170780169052,214,0 +170780169101,214,0 +170780169149,214,0 +170780169197,214,0 +170780169247,213,0 +170780169296,213,0 +170780169344,213,0 +170780169393,213,0 +170780169441,213,0 +170780169491,213,0 +170780169539,214,0 +170780169588,213,0 +170780169638,214,0 +170780169687,214,0 +170780169735,214,0 +170780169783,214,0 +170780169831,214,0 +170780169879,214,0 +170780169929,214,0 +170780169976,214,0 +170780170024,214,0 +170780170074,214,0 +170780170122,214,0 +170780170170,213,0 +170780170218,213,0 +170780170267,213,0 +170780170315,213,0 +170780170365,213,0 +170780170414,213,0 +170780170464,213,0 +170780170512,213,0 +170780170561,213,0 +170780170609,213,0 +170780170657,214,0 +170780170705,213,0 +170780170753,214,0 +170780170802,214,0 +170780170850,214,0 +170780170898,214,0 +170780170948,214,0 +170780170996,214,0 +170780171044,214,0 +170780171092,213,0 +170780171140,213,0 +170780171187,213,0 +170780171235,213,0 +170780171285,213,0 +170780171333,214,0 +170780171381,213,0 +170780171429,214,0 +170780171476,214,0 +170780171524,214,0 +170780171572,214,0 +170780171622,214,0 +170780171670,214,0 +170780171717,214,0 +170780171765,214,0 +170780171813,214,0 +170780171863,214,0 +170780171911,214,0 +170780171958,214,0 +170780172006,214,0 +170780172054,213,0 +170780172102,213,0 +170780172150,214,0 +170780172198,213,0 +170780172247,214,0 +170780172295,214,0 +170780172345,214,0 +170780172394,214,0 +170780172442,214,0 +170780172491,214,0 +170780172539,214,0 +170780172589,214,0 +170780172637,214,0 +170780172686,214,0 +170780172734,215,0 +170780172782,214,0 +170780172830,215,0 +170780172877,214,0 +170780172925,214,0 +170780172973,214,0 +170780173021,213,0 +170780173069,214,0 +170780173119,213,0 +170780173167,214,0 +170780173216,214,0 +170780173264,214,0 +170780173313,214,0 +170780173361,214,0 +170780173409,214,0 +170780173457,214,0 +170780173507,214,0 +170780173555,214,0 +170780173604,214,0 +170780173652,214,0 +170780173702,215,0 +170780173750,215,0 +170780173798,214,0 +170780173846,214,0 +170780173894,214,0 +170780173942,213,0 +170780173989,213,0 +170780174037,214,0 +170780174085,214,0 +170780174135,213,0 +170780174182,214,0 +170780174232,214,0 +170780174280,214,0 +170780174329,214,0 +170780174377,214,0 +170780174425,214,0 +170780174473,214,0 +170780174521,214,0 +170780174570,214,0 +170780174618,214,0 +170780174666,214,0 +170780174716,214,0 +170780174764,214,0 +170780174811,213,0 +170780174859,213,0 +170780174907,213,0 +170780174955,213,0 +170780175003,213,0 +170780175051,213,0 +170780175100,214,0 +170780175148,214,0 +170780175196,214,0 +170780175244,214,0 +170780175293,214,0 +170780175341,214,0 +170780175389,214,0 +170780175437,214,0 +170780175484,214,0 +170780175532,214,0 +170780175580,214,0 +170780175628,214,0 +170780175676,214,0 +170780175724,214,0 +170780175771,214,0 +170780175819,214,0 +170780175867,214,0 +170780175915,214,0 +170780175963,214,0 +170780176011,214,0 +170780176060,214,0 +170780176108,214,0 +170780176158,214,0 +170780176205,214,0 +170780176255,214,0 +170780176304,214,0 +170780176354,214,0 +170780176402,215,0 +170780176450,214,0 +170780176497,214,0 +170780176545,214,0 +170780176593,214,0 +170780176641,214,0 +170780176691,214,0 +170780176740,213,0 +170780176788,213,0 +170780176837,213,0 +170780176885,214,0 +170780176933,214,0 +170780176983,214,0 +170780177032,214,0 +170780177082,214,0 +170780177131,214,0 +170780177181,214,0 +170780177229,214,0 +170780177277,214,0 +170780177324,214,0 +170780177372,214,0 +170780177422,214,0 +170780177470,214,0 +170780177518,214,0 +170780177565,214,0 +170780177613,214,0 +170780177661,213,0 +170780177709,213,0 +170780177757,213,0 +170780177805,213,0 +170780177853,214,0 +170780177901,213,0 +170780177948,214,0 +170780177996,214,0 +170780178044,214,0 +170780178092,214,0 +170780178140,214,0 +170780178188,214,0 +170780178236,214,0 +170780178284,214,0 +170780178332,214,0 +170780178379,214,0 +170780178427,214,0 +170780178475,214,0 +170780178523,214,0 +170780178571,213,0 +170780178619,213,0 +170780178669,213,0 +170780178716,213,0 +170780178764,214,0 +170780178814,213,0 +170780178863,214,0 +170780178913,214,0 +170780178961,214,0 +170780179009,214,0 +170780179057,214,0 +170780179106,214,0 +170780179154,214,0 +170780179202,214,0 +170780179251,214,0 +170780179301,214,0 +170780179349,214,0 +170780179398,214,0 +170780179446,215,0 +170780179494,213,0 +170780179543,213,0 +170780179591,213,0 +170780179639,213,0 +170780179687,213,0 +170780179737,213,0 +170780179786,213,0 +170780179834,213,0 +170780179882,213,0 +170780179930,213,0 +170780179980,214,0 +170780180028,214,0 +170780180077,214,0 +170780180127,214,0 +170780180175,214,0 +170780180223,214,0 +170780180271,214,0 +170780180319,214,0 +170780180368,214,0 +170780180418,214,0 +170780180466,213,0 +170780180515,213,0 +170780180565,213,0 +170780180614,213,0 +170780180662,213,0 +170780180712,213,0 +170780180760,213,0 +170780180808,214,0 +170780180857,214,0 +170780180906,214,0 +170780180954,214,0 +170780181004,214,0 +170780181053,214,0 +170780181101,214,0 +170780181149,214,0 +170780181197,214,0 +170780181245,214,0 +170780181293,214,0 +170780181341,214,0 +170780181391,213,0 +170780181438,213,0 +170780181486,213,0 +170780181534,214,0 +170780181584,214,0 +170780181632,213,0 +170780181681,214,0 +170780181729,214,0 +170780181779,214,0 +170780181826,214,0 +170780181874,214,0 +170780181922,214,0 +170780181972,214,0 +170780182020,214,0 +170780182069,214,0 +170780182119,214,0 +170780182167,215,0 +170780182214,214,0 +170780182262,214,0 +170780182310,213,0 +170780182360,213,0 +170780182408,213,0 +170780182456,213,0 +170780182504,213,0 +170780182553,213,0 +170780182601,214,0 +170780182649,214,0 +170780182697,214,0 +170780182745,214,0 +170780182793,214,0 +170780182842,214,0 +170780182892,214,0 +170780182941,214,0 +170780182989,214,0 +170780183037,214,0 +170780183085,214,0 +170780183133,214,0 +170780183181,214,0 +170780183230,213,0 +170780183280,213,0 +170780183329,213,0 +170780183377,213,0 +170780183427,213,0 +170780183475,213,0 +170780183523,213,0 +170780183570,213,0 +170780183620,213,0 +170780183669,213,0 +170780183719,214,0 +170780183767,214,0 +170780183815,214,0 +170780183863,214,0 +170780183911,214,0 +170780183958,214,0 +170780184006,214,0 +170780184056,214,0 +170780184105,214,0 +170780184153,214,0 +170780184201,213,0 +170780184249,213,0 +170780184297,213,0 +170780184345,213,0 +170780184393,213,0 +170780184440,213,0 +170780184488,213,0 +170780184536,213,0 +170780184586,213,0 +170780184634,213,0 +170780184682,214,0 +170780184730,214,0 +170780184778,214,0 +170780184826,214,0 +170780184875,214,0 +170780184923,214,0 +170780184971,214,0 +170780185020,214,0 +170780185068,213,0 +170780185116,213,0 +170780185164,214,0 +170780185212,214,0 +170780185260,213,0 +170780185308,214,0 +170780185356,214,0 +170780185405,214,0 +170780185453,214,0 +170780185501,214,0 +170780185549,214,0 +170780185599,214,0 +170780185648,214,0 +170780185696,214,0 +170780185746,214,0 +170780185793,214,0 +170780185843,214,0 +170780185891,214,0 +170780185939,214,0 +170780185988,214,0 +170780186038,213,0 +170780186087,213,0 +170780186135,213,0 +170780186183,214,0 +170780186231,214,0 +170780186279,214,0 +170780186327,214,0 +170780186376,214,0 +170780186425,214,0 +170780186475,214,0 +170780186523,214,0 +170780186571,214,0 +170780186620,214,0 +170780186668,214,0 +170780186716,215,0 +170780186766,215,0 +170780186815,215,0 +170780186865,214,0 +170780186914,214,0 +170780186962,213,0 +170780187010,213,0 +170780187058,213,0 +170780187108,214,0 +170780187156,214,0 +170780187205,214,0 +170780187253,214,0 +170780187303,214,0 +170780187352,214,0 +170780187402,214,0 +170780187450,214,0 +170780187499,214,0 +170780187549,214,0 +170780187597,215,0 +170780187645,214,0 +170780187693,214,0 +170780187740,215,0 +170780187788,215,0 +170780187836,214,0 +170780187884,213,0 +170780187932,213,0 +170780187980,214,0 +170780188028,214,0 +170780188076,214,0 +170780188126,214,0 +170780188174,214,0 +170780188223,214,0 +170780188273,214,0 +170780188322,214,0 +170780188370,214,0 +170780188419,214,0 +170780188469,214,0 +170780188517,215,0 +170780188565,214,0 +170780188613,215,0 +170780188661,214,0 +170780188710,215,0 +170780188758,215,0 +170780188807,214,0 +170780188857,213,0 +170780188906,214,0 +170780188954,214,0 +170780189004,214,0 +170780189053,214,0 +170780189101,214,0 +170780189151,214,0 +170780189199,214,0 +170780189248,214,0 +170780189298,214,0 +170780189346,214,0 +170780189394,214,0 +170780189442,215,0 +170780189489,215,0 +170780189537,214,0 +170780189585,214,0 +170780189633,214,0 +170780189681,214,0 +170780189731,214,0 +170780189779,213,0 +170780189827,213,0 +170780189875,214,0 +170780189923,214,0 +170780189972,214,0 +170780190022,214,0 +170780190069,214,0 +170780190119,214,0 +170780190167,214,0 +170780190215,214,0 +170780190263,214,0 +170780190312,214,0 +170780190362,214,0 +170780190410,215,0 +170780190458,214,0 +170780190505,215,0 +170780190553,214,0 +170780190603,214,0 +170780190652,214,0 +170780190702,213,0 +170780190750,213,0 +170780190799,213,0 +170780190847,213,0 +170780190897,214,0 +170780190945,214,0 +170780190994,214,0 +170780191042,214,0 +170780191090,214,0 +170780191138,214,0 +170780191186,214,0 +170780191234,214,0 +170780191282,214,0 +170780191330,214,0 +170780191378,214,0 +170780191426,215,0 +170780191474,214,0 +170780191521,214,0 +170780191571,214,0 +170780191620,213,0 +170780191668,213,0 +170780191718,213,0 +170780191766,213,0 +170780191814,213,0 +170780191863,213,0 +170780191913,214,0 +170780191962,214,0 +170780192012,214,0 +170780192060,214,0 +170780192107,214,0 +170780192155,214,0 +170780192203,214,0 +170780192253,214,0 +170780192303,214,0 +170780192352,214,0 +170780192400,214,0 +170780192448,214,0 +170780192497,214,0 +170780192545,213,0 +170780192593,213,0 +170780192643,213,0 +170780192692,213,0 +170780192742,213,0 +170780192790,213,0 +170780192837,213,0 +170780192887,213,0 +170780192935,214,0 +170780192984,214,0 +170780193032,214,0 +170780193080,214,0 +170780193128,214,0 +170780193178,214,0 +170780193226,214,0 +170780193273,214,0 +170780193323,214,0 +170780193372,214,0 +170780193420,214,0 +170780193470,213,0 +170780193519,213,0 +170780193569,213,0 +170780193617,213,0 +170780193666,213,0 +170780193716,213,0 +170780193766,213,0 +170780193813,213,0 +170780193861,213,0 +170780193911,213,0 +170780193959,213,0 +170780194008,213,0 +170780194056,213,0 +170780194106,213,0 +170780194155,214,0 +170780194203,214,0 +170780194251,214,0 +170780194301,214,0 +170780194350,214,0 +170780194400,213,0 +170780194448,213,0 +170780194496,213,0 +170780194544,213,0 +170780194593,213,0 +170780194643,213,0 +170780194691,213,0 +170780194738,213,0 +170780194788,214,0 +170780194836,213,0 +170780194884,214,0 +170780194932,214,0 +170780194980,214,0 +170780195029,214,0 +170780195077,214,0 +170780195125,214,0 +170780195173,214,0 +170780195222,214,0 +170780195270,214,0 +170780195320,214,0 +170780195369,213,0 +170780195419,213,0 +170780195468,213,0 +170780195516,213,0 +170780195564,213,0 +170780195614,213,0 +170780195662,214,0 +170780195710,214,0 +170780195759,214,0 +170780195809,214,0 +170780195858,214,0 +170780195906,214,0 +170780195955,214,0 +170780196003,214,0 +170780196051,214,0 +170780196101,214,0 +170780196149,214,0 +170780196197,214,0 +170780196246,214,0 +170780196294,213,0 +170780196342,213,0 +170780196390,213,0 +170780196438,213,0 +170780196486,213,0 +170780196534,213,0 +170780196583,214,0 +170780196631,214,0 +170780196679,214,0 +170780196727,214,0 +170780196776,214,0 +170780196824,214,0 +170780196872,214,0 +170780196922,214,0 +170780196971,214,0 +170780197019,214,0 +170780197069,214,0 +170780197117,214,0 +170780197165,214,0 +170780197214,213,0 +170780197264,213,0 +170780197313,213,0 +170780197361,214,0 +170780197409,213,0 +170780197458,214,0 +170780197508,214,0 +170780197556,214,0 +170780197605,214,0 +170780197655,214,0 +170780197703,214,0 +170780197752,214,0 +170780197802,214,0 +170780197850,214,0 +170780197898,214,0 +170780197945,214,0 +170780197995,214,0 +170780198043,214,0 +170780198091,214,0 +170780198140,213,0 +170780198188,213,0 +170780198236,213,0 +170780198286,213,0 +170780198334,214,0 +170780198383,214,0 +170780198431,214,0 +170780198479,214,0 +170780198528,214,0 +170780198578,214,0 +170780198626,214,0 +170780198674,214,0 +170780198723,215,0 +170780198773,214,0 +170780198821,214,0 +170780198869,214,0 +170780198917,214,0 +170780198966,214,0 +170780199014,214,0 +170780199064,213,0 +170780199113,213,0 +170780199161,213,0 +170780199209,213,0 +170780199257,213,0 +170780199306,213,0 +170780199356,214,0 +170780199404,214,0 +170780199453,214,0 +170780199503,214,0 +170780199552,214,0 +170780199602,214,0 +170780199651,214,0 +170780199701,214,0 +170780199749,214,0 +170780199797,214,0 +170780199846,214,0 +170780199894,214,0 +170780199944,214,0 +170780199992,213,0 +170780200040,213,0 +170780200089,213,0 +170780200139,213,0 +170780200188,214,0 +170780200236,214,0 +170780200286,214,0 +170780200335,214,0 +170780200385,214,0 +170780200433,214,0 +170780200481,214,0 +170780200530,214,0 +170780200578,214,0 +170780200626,214,0 +170780200674,214,0 +170780200722,214,0 +170780200771,214,0 +170780200819,214,0 +170780200867,214,0 +170780200917,214,0 +170780200965,213,0 +170780201013,213,0 +170780201061,213,0 +170780201108,213,0 +170780201158,214,0 +170780201206,214,0 +170780201255,214,0 +170780201303,214,0 +170780201351,214,0 +170780201401,214,0 +170780201449,214,0 +170780201497,214,0 +170780201545,214,0 +170780201593,214,0 +170780201640,214,0 +170780201688,214,0 +170780201736,214,0 +170780201786,214,0 +170780201835,214,0 +170780201885,213,0 +170780201933,213,0 +170780201981,213,0 +170780202029,213,0 +170780202078,214,0 +170780202126,214,0 +170780202174,214,0 +170780202223,214,0 +170780202271,214,0 +170780202321,214,0 +170780202369,214,0 +170780202418,214,0 +170780202468,214,0 +170780202517,214,0 +170780202565,214,0 +170780202613,214,0 +170780202661,214,0 +170780202709,214,0 +170780202757,214,0 +170780202807,214,0 +170780202854,213,0 +170780202902,213,0 +170780202950,213,0 +170780202998,214,0 +170780203046,214,0 +170780203094,214,0 +170780203143,214,0 +170780203191,214,0 +170780203239,214,0 +170780203287,214,0 +170780203336,214,0 +170780203384,214,0 +170780203432,214,0 +170780203481,215,0 +170780203531,214,0 +170780203579,214,0 +170780203626,215,0 +170780203676,214,0 +170780203724,213,0 +170780203773,213,0 +170780203821,213,0 +170780203869,213,0 +170780203917,214,0 +170780203964,214,0 +170780204012,214,0 +170780204060,214,0 +170780204108,214,0 +170780204156,214,0 +170780204204,214,0 +170780204251,214,0 +170780204299,214,0 +170780204347,214,0 +170780204395,214,0 +170780204443,214,0 +170780204490,214,0 +170780204540,214,0 +170780204588,214,0 +170780204636,214,0 +170780204685,213,0 +170780204734,213,0 +170780204782,213,0 +170780204832,213,0 +170780204879,213,0 +170780204927,214,0 +170780204975,214,0 +170780205024,214,0 +170780205072,214,0 +170780205120,214,0 +170780205169,214,0 +170780205217,214,0 +170780205265,214,0 +170780205315,214,0 +170780205363,214,0 +170780205410,214,0 +170780205458,214,0 +170780205508,214,0 +170780205555,214,0 +170780205603,213,0 +170780205651,213,0 +170780205699,213,0 +170780205747,213,0 +170780205796,213,0 +170780205844,213,0 +170780205893,213,0 +170780205941,214,0 +170780205989,214,0 +170780206037,214,0 +170780206084,214,0 +170780206132,214,0 +170780206180,214,0 +170780206228,214,0 +170780206276,214,0 +170780206324,214,0 +170780206371,214,0 +170780206419,214,0 +170780206467,214,0 +170780206515,213,0 +170780206562,213,0 +170780206610,213,0 +170780206658,213,0 +170780206706,213,0 +170780206754,213,0 +170780206802,213,0 +170780206851,213,0 +170780206899,213,0 +170780206947,214,0 +170780206996,213,0 +170780207044,214,0 +170780207092,214,0 +170780207140,214,0 +170780207188,214,0 +170780207236,214,0 +170780207283,214,0 +170780207331,214,0 +170780207379,214,0 +170780207427,214,0 +170780207475,213,0 +170780207523,213,0 +170780207571,213,0 +170780207618,213,0 +170780207666,213,0 +170780207714,213,0 +170780207762,214,0 +170780207809,213,0 +170780207859,214,0 +170780207907,214,0 +170780207954,214,0 +170780208002,214,0 +170780208050,214,0 +170780208098,214,0 +170780208146,214,0 +170780208194,214,0 +170780208243,214,0 +170780208292,214,0 +170780208342,214,0 +170780208390,213,0 +170780208439,213,0 +170780208488,213,0 +170780208538,213,0 +170780208586,213,0 +170780208633,213,0 +170780208681,213,0 +170780208731,213,0 +170780208779,213,0 +170780208826,213,0 +170780208874,214,0 +170780208922,214,0 +170780208970,214,0 +170780209018,214,0 +170780209066,214,0 +170780209115,214,0 +170780209163,214,0 +170780209211,214,0 +170780209258,214,0 +170780209308,214,0 +170780209356,213,0 +170780209403,213,0 +170780209451,213,0 +170780209499,213,0 +170780209547,213,0 +170780209595,213,0 +170780209643,213,0 +170780209691,213,0 +170780209738,213,0 +170780209786,214,0 +170780209834,214,0 +170780209884,213,0 +170780209931,214,0 +170780209979,214,0 +170780210027,214,0 +170780210075,214,0 +170780210123,214,0 +170780210171,214,0 +170780210219,214,0 +170780210266,213,0 +170780210314,213,0 +170780210362,213,0 +170780210410,213,0 +170780210458,213,0 +170780210507,213,0 +170780210555,213,0 +170780210603,213,0 +170780210652,213,0 +170780210702,214,0 +170780210750,214,0 +170780210798,214,0 +170780210845,214,0 +170780210893,214,0 +170780210941,214,0 +170780210989,214,0 +170780211037,214,0 +170780211085,214,0 +170780211132,214,0 +170780211182,213,0 +170780211230,213,0 +170780211277,213,0 +170780211325,213,0 +170780211373,213,0 +170780211421,213,0 +170780211469,213,0 +170780211516,213,0 +170780211564,213,0 +170780211614,214,0 +170780211662,214,0 +170780211709,214,0 +170780211757,214,0 +170780211807,214,0 +170780211856,214,0 +170780211904,214,0 +170780211952,214,0 +170780212001,214,0 +170780212049,214,0 +170780212097,214,0 +170780212145,213,0 +170780212193,213,0 +170780212240,214,0 +170780212288,213,0 +170780212336,213,0 +170780212384,213,0 +170780212432,213,0 +170780212480,214,0 +170780212528,214,0 +170780212575,214,0 +170780212623,214,0 +170780212671,214,0 +170780212720,214,0 +170780212768,214,0 +170780212816,214,0 +170780212864,214,0 +170780212912,214,0 +170780212960,214,0 +170780213007,214,0 +170780213055,213,0 +170780213103,213,0 +170780213151,213,0 +170780213199,213,0 +170780213247,213,0 +170780213294,213,0 +170780213342,213,0 +170780213392,213,0 +170780213440,213,0 +170780213488,213,0 +170780213536,213,0 +170780213585,213,0 +170780213635,214,0 +170780213684,214,0 +170780213732,214,0 +170780213780,214,0 +170780213828,214,0 +170780213876,214,0 +170780213924,214,0 +170780213974,214,0 +170780214021,213,0 +170780214069,213,0 +170780214117,213,0 +170780214167,213,0 +170780214216,213,0 +170780214264,214,0 +170780214314,214,0 +170780214362,214,0 +170780214411,213,0 +170780214459,214,0 +170780214509,214,0 +170780214557,214,0 +170780214606,214,0 +170780214654,214,0 +170780214704,214,0 +170780214752,214,0 +170780214800,215,0 +170780214848,214,0 +170780214895,214,0 +170780214945,213,0 +170780214993,213,0 +170780215041,213,0 +170780215089,214,0 +170780215136,213,0 +170780215184,214,0 +170780215232,214,0 +170780215280,214,0 +170780215330,214,0 +170780215380,214,0 +170780215429,214,0 +170780215477,214,0 +170780215527,214,0 +170780215576,214,0 +170780215624,214,0 +170780215674,214,0 +170780215723,215,0 +170780215773,215,0 +170780215822,214,0 +170780215870,214,0 +170780215918,213,0 +170780215966,214,0 +170780216014,213,0 +170780216062,214,0 +170780216109,214,0 +170780216157,214,0 +170780216205,214,0 +170780216253,214,0 +170780216301,214,0 +170780216348,214,0 +170780216396,214,0 +170780216444,214,0 +170780216493,214,0 +170780216541,214,0 +170780216589,214,0 +170780216637,214,0 +170780216685,214,0 +170780216733,215,0 +170780216780,213,0 +170780216828,213,0 +170780216878,214,0 +170780216925,214,0 +170780216975,214,0 +170780217023,214,0 +170780217070,214,0 +170780217118,214,0 +170780217168,214,0 +170780217216,214,0 +170780217263,214,0 +170780217311,214,0 +170780217359,215,0 +170780217408,215,0 +170780217456,215,0 +170780217506,214,0 +170780217553,214,0 +170780217601,214,0 +170780217649,214,0 +170780217697,214,0 +170780217745,214,0 +170780217793,214,0 +170780217840,214,0 +170780217888,214,0 +170780217936,214,0 +170780217984,214,0 +170780218032,214,0 +170780218080,214,0 +170780218128,214,0 +170780218175,215,0 +170780218225,215,0 +170780218273,215,0 +170780218321,215,0 +170780218368,215,0 +170780218418,215,0 +170780218466,214,0 +170780218514,215,0 +170780218561,214,0 +170780218609,214,0 +170780218657,214,0 +170780218705,214,0 +170780218753,214,0 +170780218800,214,0 +170780218848,214,0 +170780218896,214,0 +170780218944,214,0 +170780218992,214,0 +170780219040,215,0 +170780219087,214,0 +170780219135,214,0 +170780219183,215,0 +170780219231,215,0 +170780219279,215,0 +170780219327,215,0 +170780219376,215,0 +170780219424,214,0 +170780219472,214,0 +170780219520,214,0 +170780219567,214,0 +170780219617,214,0 +170780219665,214,0 +170780219714,214,0 +170780219763,214,0 +170780219811,214,0 +170780219859,214,0 +170780219909,214,0 +170780219956,214,0 +170780220004,214,0 +170780220052,214,0 +170780220100,215,0 +170780220148,215,0 +170780220196,214,0 +170780220244,215,0 +170780220291,214,0 +170780220339,215,0 +170780220387,214,0 +170780220437,214,0 +170780220484,214,0 +170780220532,213,0 +170780220580,213,0 +170780220628,213,0 +170780220676,213,0 +170780220724,214,0 +170780220771,214,0 +170780220819,214,0 +170780220867,214,0 +170780220915,214,0 +170780220964,214,0 +170780221012,214,0 +170780221060,214,0 +170780221108,214,0 +170780221157,214,0 +170780221207,214,0 +170780221256,214,0 +170780221306,214,0 +170780221355,214,0 +170780221405,214,0 +170780221453,213,0 +170780221502,213,0 +170780221550,213,0 +170780221598,213,0 +170780221646,214,0 +170780221694,214,0 +170780221742,214,0 +170780221790,214,0 +170780221838,214,0 +170780221885,214,0 +170780221933,214,0 +170780221983,214,0 +170780222031,214,0 +170780222080,215,0 +170780222128,214,0 +170780222175,214,0 +170780222223,214,0 +170780222271,214,0 +170780222319,214,0 +170780222367,213,0 +170780222414,213,0 +170780222462,213,0 +170780222510,213,0 +170780222558,213,0 +170780222606,213,0 +170780222655,213,0 +170780222703,213,0 +170780222753,214,0 +170780222801,214,0 +170780222848,214,0 +170780222898,214,0 +170780222946,214,0 +170780222995,214,0 +170780223045,214,0 +170780223093,214,0 +170780223141,215,0 +170780223188,214,0 +170780223236,214,0 +170780223284,214,0 +170780223332,213,0 +170780223382,213,0 +170780223429,213,0 +170780223477,213,0 +170780223525,213,0 +170780223573,213,0 +170780223621,213,0 +170780223668,214,0 +170780223716,214,0 +170780223764,214,0 +170780223812,214,0 +170780223860,214,0 +170780223908,214,0 +170780223955,214,0 +170780224003,214,0 +170780224051,214,0 +170780224099,214,0 +170780224149,214,0 +170780224198,214,0 +170780224246,213,0 +170780224294,213,0 +170780224342,213,0 +170780224392,213,0 +170780224439,213,0 +170780224487,213,0 +170780224535,213,0 +170780224585,213,0 +170780224633,213,0 +170780224681,213,0 +170780224730,213,0 +170780224778,214,0 +170780224826,214,0 +170780224875,214,0 +170780224925,214,0 +170780224974,214,0 +170780225023,214,0 +170780225073,214,0 +170780225121,214,0 +170780225170,213,0 +170780225218,213,0 +170780225266,213,0 +170780225314,213,0 +170780225362,213,0 +170780225410,214,0 +170780225457,213,0 +170780225507,213,0 +170780225555,213,0 +170780225603,213,0 +170780225651,214,0 +170780225698,214,0 +170780225746,214,0 +170780225796,214,0 +170780225845,214,0 +170780225893,214,0 +170780225941,214,0 +170780225989,214,0 +170780226037,214,0 +170780226087,213,0 +170780226134,213,0 +170780226182,213,0 +170780226230,213,0 +170780226278,213,0 +170780226326,213,0 +170780226374,213,0 +170780226421,214,0 +170780226469,213,0 +170780226517,214,0 +170780226566,214,0 +170780226614,214,0 +170780226662,214,0 +170780226710,214,0 +170780226758,214,0 +170780226806,214,0 +170780226854,214,0 +170780226903,214,0 +170780226951,214,0 +170780226999,214,0 +170780227047,213,0 +170780227095,213,0 +170780227142,213,0 +170780227190,213,0 +170780227238,213,0 +170780227286,213,0 +170780227334,213,0 +170780227383,213,0 +170780227431,214,0 +170780227479,214,0 +170780227527,214,0 +170780227575,214,0 +170780227622,214,0 +170780227670,214,0 +170780227720,214,0 +170780227769,214,0 +170780227817,214,0 +170780227865,214,0 +170780227913,214,0 +170780227961,213,0 +170780228008,213,0 +170780228058,213,0 +170780228106,213,0 +170780228154,213,0 +170780228202,213,0 +170780228251,213,0 +170780228299,214,0 +170780228347,213,0 +170780228397,213,0 +170780228444,214,0 +170780228494,214,0 +170780228542,214,0 +170780228590,214,0 +170780228639,214,0 +170780228687,214,0 +170780228735,214,0 +170780228783,214,0 +170780228831,214,0 +170780228879,213,0 +170780228927,213,0 +170780228975,213,0 +170780229023,213,0 +170780229071,213,0 +170780229119,213,0 +170780229168,213,0 +170780229216,213,0 +170780229264,214,0 +170780229313,214,0 +170780229361,214,0 +170780229411,214,0 +170780229459,214,0 +170780229506,214,0 +170780229554,214,0 +170780229602,214,0 +170780229650,214,0 +170780229698,214,0 +170780229746,214,0 +170780229794,214,0 +170780229841,213,0 +170780229890,213,0 +170780229938,213,0 +170780229985,213,0 +170780230033,213,0 +170780230083,213,0 +170780230130,213,0 +170780230178,214,0 +170780230226,214,0 +170780230274,214,0 +170780230322,214,0 +170780230370,214,0 +170780230417,214,0 +170780230465,214,0 +170780230515,214,0 +170780230562,214,0 +170780230610,214,0 +170780230658,215,0 +170780230706,214,0 +170780230754,213,0 +170780230802,213,0 +170780230849,213,0 +170780230897,213,0 +170780230945,213,0 +170780230993,214,0 +170780231041,214,0 +170780231090,214,0 +170780231138,214,0 +170780231186,214,0 +170780231234,214,0 +170780231282,214,0 +170780231330,214,0 +170780231378,214,0 +170780231427,214,0 +170780231477,214,0 +170780231524,214,0 +170780231572,214,0 +170780231620,214,0 +170780231668,213,0 +170780231718,213,0 +170780231766,213,0 +170780231814,214,0 +170780231862,213,0 +170780231911,214,0 +170780231959,214,0 +170780232007,214,0 +170780232055,214,0 +170780232104,214,0 +170780232152,214,0 +170780232200,214,0 +170780232248,214,0 +170780232298,214,0 +170780232347,214,0 +170780232397,214,0 +170780232445,214,0 +170780232493,215,0 +170780232540,214,0 +170780232588,214,0 +170780232636,213,0 +170780232684,213,0 +170780232732,214,0 +170780232780,214,0 +170780232828,214,0 +170780232875,214,0 +170780232923,214,0 +170780232971,214,0 +170780233019,214,0 +170780233067,214,0 +170780233115,214,0 +170780233162,214,0 +170780233210,214,0 +170780233260,214,0 +170780233308,214,0 +170780233356,215,0 +170780233404,215,0 +170780233451,214,0 +170780233499,214,0 +170780233547,213,0 +170780233595,213,0 +170780233643,214,0 +170780233692,214,0 +170780233740,213,0 +170780233788,214,0 +170780233838,214,0 +170780233885,214,0 +170780233933,214,0 +170780233981,214,0 +170780234029,214,0 +170780234077,214,0 +170780234125,214,0 +170780234173,214,0 +170780234223,214,0 +170780234272,215,0 +170780234320,214,0 +170780234369,214,0 +170780234419,214,0 +170780234467,214,0 +170780234516,213,0 +170780234566,213,0 +170780234614,213,0 +170780234662,213,0 +170780234710,213,0 +170780234757,214,0 +170780234805,214,0 +170780234853,214,0 +170780234903,214,0 +170780234952,214,0 +170780235000,214,0 +170780235050,214,0 +170780235099,214,0 +170780235147,214,0 +170780235197,215,0 +170780235245,214,0 +170780235293,214,0 +170780235341,214,0 +170780235388,214,0 +170780235438,213,0 +170780235487,213,0 +170780235537,213,0 +170780235586,213,0 +170780235634,213,0 +170780235684,214,0 +170780235733,214,0 +170780235783,214,0 +170780235832,214,0 +170780235880,214,0 +170780235930,214,0 +170780235978,214,0 +170780236026,214,0 +170780236074,214,0 +170780236123,214,0 +170780236171,214,0 +170780236219,214,0 +170780236267,214,0 +170780236316,214,0 +170780236366,213,0 +170780236414,213,0 +170780236462,213,0 +170780236510,213,0 +170780236557,213,0 +170780236607,213,0 +170780236656,214,0 +170780236704,214,0 +170780236754,214,0 +170780236802,214,0 +170780236850,214,0 +170780236897,214,0 +170780236947,214,0 +170780236996,214,0 +170780237044,214,0 +170780237094,214,0 +170780237142,214,0 +170780237189,214,0 +170780237237,214,0 +170780237285,213,0 +170780237333,213,0 +170780237381,213,0 +170780237429,213,0 +170780237477,213,0 +170780237525,213,0 +170780237575,214,0 +170780237622,214,0 +170780237670,213,0 +170780237718,214,0 +170780237768,214,0 +170780237817,214,0 +170780237867,214,0 +170780237916,214,0 +170780237964,214,0 +170780238014,214,0 +170780238061,214,0 +170780238109,214,0 +170780238157,214,0 +170780238205,213,0 +170780238253,213,0 +170780238301,213,0 +170780238349,213,0 +170780238397,213,0 +170780238446,213,0 +170780238494,213,0 +170780238544,213,0 +170780238592,213,0 +170780238641,213,0 +170780238689,213,0 +170780238737,214,0 +170780238785,214,0 +170780238833,214,0 +170780238882,214,0 +170780238930,214,0 +170780238979,214,0 +170780239029,214,0 +170780239078,214,0 +170780239126,213,0 +170780239176,213,0 +170780239225,213,0 +170780239275,213,0 +170780239323,213,0 +170780239372,213,0 +170780239422,213,0 +170780239470,213,0 +170780239519,214,0 +170780239569,214,0 +170780239618,214,0 +170780239666,214,0 +170780239714,214,0 +170780239762,214,0 +170780239810,214,0 +170780239858,214,0 +170780239906,214,0 +170780239955,214,0 +170780240005,214,0 +170780240054,213,0 +170780240102,213,0 +170780240151,213,0 +170780240198,213,0 +170780240246,213,0 +170780240296,213,0 +170780240345,213,0 +170780240393,213,0 +170780240441,214,0 +170780240489,214,0 +170780240537,214,0 +170780240587,214,0 +170780240634,214,0 +170780240682,214,0 +170780240732,214,0 +170780240781,214,0 +170780240829,214,0 +170780240879,214,0 +170780240928,214,0 +170780240978,213,0 +170780241026,213,0 +170780241075,213,0 +170780241123,213,0 +170780241171,214,0 +170780241219,214,0 +170780241268,214,0 +170780241316,214,0 +170780241364,214,0 +170780241412,214,0 +170780241462,214,0 +170780241510,214,0 +170780241558,214,0 +170780241607,214,0 +170780241656,214,0 +170780241704,214,0 +170780241754,214,0 +170780241803,214,0 +170780241853,214,0 +170780241901,214,0 +170780241950,213,0 +170780242000,213,0 +170780242049,213,0 +170780242099,214,0 +170780242147,214,0 +170780242195,214,0 +170780242244,214,0 +170780242292,214,0 +170780242342,214,0 +170780242389,214,0 +170780242437,214,0 +170780242485,214,0 +170780242533,214,0 +170780242581,214,0 +170780242629,214,0 +170780242677,214,0 +170780242727,214,0 +170780242775,214,0 +170780242824,213,0 +170780242872,213,0 +170780242920,213,0 +170780242970,213,0 +170780243018,213,0 +170780243067,213,0 +170780243115,213,0 +170780243163,214,0 +170780243213,214,0 +170780243260,214,0 +170780243308,214,0 +170780243358,214,0 +170780243406,214,0 +170780243455,214,0 +170780243503,214,0 +170780243551,214,0 +170780243599,214,0 +170780243647,214,0 +170780243696,213,0 +170780243744,213,0 +170780243794,213,0 +170780243843,214,0 +170780243891,213,0 +170780243939,213,0 +170780243987,213,0 +170780244037,214,0 +170780244086,214,0 +170780244134,214,0 +170780244184,214,0 +170780244232,214,0 +170780244281,214,0 +170780244329,214,0 +170780244379,214,0 +170780244426,214,0 +170780244474,214,0 +170780244522,214,0 +170780244572,214,0 +170780244620,213,0 +170780244669,213,0 +170780244717,213,0 +170780244765,213,0 +170780244813,214,0 +170780244862,214,0 +170780244910,214,0 +170780244958,214,0 +170780245006,214,0 +170780245054,214,0 +170780245103,214,0 +170780245151,214,0 +170780245199,214,0 +170780245247,214,0 +170780245296,214,0 +170780245346,214,0 +170780245394,214,0 +170780245442,214,0 +170780245491,214,0 +170780245541,214,0 +170780245590,213,0 +170780245640,214,0 +170780245689,214,0 +170780245739,214,0 +170780245787,214,0 +170780245835,214,0 +170780245884,214,0 +170780245934,214,0 +170780245981,214,0 +170780246029,214,0 +170780246077,214,0 +170780246125,214,0 +170780246173,214,0 +170780246221,215,0 +170780246269,215,0 +170780246316,214,0 +170780246364,214,0 +170780246412,214,0 +170780246462,214,0 +170780246509,214,0 +170780246557,214,0 +170780246605,214,0 +170780246653,214,0 +170780246703,214,0 +170780246751,214,0 +170780246798,214,0 +170780246846,214,0 +170780246894,215,0 +170780246942,214,0 +170780246990,215,0 +170780247038,215,0 +170780247087,215,0 +170780247135,214,0 +170780247183,214,0 +170780247231,214,0 +170780247279,214,0 +170780247327,213,0 +170780247375,214,0 +170780247422,214,0 +170780247470,214,0 +170780247518,214,0 +170780247566,214,0 +170780247616,214,0 +170780247664,214,0 +170780247712,214,0 +170780247760,214,0 +170780247809,214,0 +170780247857,214,0 +170780247907,215,0 +170780247955,215,0 +170780248003,215,0 +170780248052,214,0 +170780248100,214,0 +170780248149,214,0 +170780248199,213,0 +170780248247,213,0 +170780248297,214,0 +170780248345,213,0 +170780248394,214,0 +170780248444,213,0 +170780248492,214,0 +170780248540,214,0 +170780248588,214,0 +170780248635,214,0 +170780248683,214,0 +170780248731,214,0 +170780248779,214,0 +170780248829,214,0 +170780248878,214,0 +170780248926,214,0 +170780248974,214,0 +170780249022,214,0 +170780249072,213,0 +170780249120,213,0 +170780249168,213,0 +170780249217,213,0 +170780249265,213,0 +170780249313,213,0 +170780249361,213,0 +170780249410,213,0 +170780249459,214,0 +170780249506,214,0 +170780249556,214,0 +170780249605,214,0 +170780249653,214,0 +170780249701,214,0 +170780249749,214,0 +170780249797,214,0 +170780249847,214,0 +170780249895,214,0 +170780249943,213,0 +170780249992,213,0 +170780250040,213,0 +170780250090,213,0 +170780250137,213,0 +170780250185,213,0 +170780250233,213,0 +170780250281,213,0 +170780250331,213,0 +170780250379,214,0 +170780250427,213,0 +170780250476,214,0 +170780250526,214,0 +170780250574,214,0 +170780250622,214,0 +170780250670,214,0 +170780250718,214,0 +170780250766,214,0 +170780250815,214,0 +170780250865,213,0 +170780250913,213,0 +170780250961,213,0 +170780251009,213,0 +170780251056,213,0 +170780251106,214,0 +170780251154,214,0 +170780251202,214,0 +170780251250,214,0 +170780251298,214,0 +170780251346,214,0 +170780251394,214,0 +170780251443,214,0 +170780251493,214,0 +170780251542,214,0 +170780251592,214,0 +170780251641,214,0 +170780251690,214,0 +170780251738,213,0 +170780251786,213,0 +170780251834,213,0 +170780251882,213,0 +170780251930,213,0 +170780251979,213,0 +170780252029,214,0 +170780252078,214,0 +170780252126,213,0 +170780252176,214,0 +170780252225,214,0 +170780252273,214,0 +170780252321,214,0 +170780252371,214,0 +170780252419,214,0 +170780252466,214,0 +170780252516,214,0 +170780252564,214,0 +170780252613,213,0 +170780252661,213,0 +170780252709,213,0 +170780252757,213,0 +170780252807,213,0 +170780252856,214,0 +170780252904,213,0 +170780252952,214,0 +170780253002,214,0 +170780253049,214,0 +170780253097,214,0 +170780253147,214,0 +170780253197,214,0 +170780253244,214,0 +170780253294,214,0 +170780253342,214,0 +170780253390,214,0 +170780253438,214,0 +170780253487,214,0 +170780253537,213,0 +170780253587,213,0 +170780253634,213,0 +170780253682,213,0 +170780253732,213,0 +170780253780,213,0 +170780253829,213,0 +170780253877,213,0 +170780253925,213,0 +170780253973,214,0 +170780254023,214,0 +170780254070,214,0 +170780254119,214,0 +170780254168,214,0 +170780254216,214,0 +170780254264,214,0 +170780254313,214,0 +170780254363,214,0 +170780254411,213,0 +170780254459,213,0 +170780254507,213,0 +170780254556,213,0 +170780254604,213,0 +170780254652,213,0 +170780254700,213,0 +170780254748,213,0 +170780254796,213,0 +170780254844,213,0 +170780254892,213,0 +170780254940,213,0 +170780254988,214,0 +170780255038,214,0 +170780255087,214,0 +170780255137,214,0 +170780255185,214,0 +170780255233,214,0 +170780255282,214,0 +170780255330,214,0 +170780255378,214,0 +170780255426,214,0 +170780255474,214,0 +170780255522,214,0 +170780255570,214,0 +170780255619,215,0 +170780255667,214,0 +170780255715,214,0 +170780255765,213,0 +170780255814,213,0 +170780255864,213,0 +170780255912,213,0 +170780255961,213,0 +170780256011,213,0 +170780256058,214,0 +170780256106,214,0 +170780256154,214,0 +170780256202,214,0 +170780256250,214,0 +170780256300,214,0 +170780256348,214,0 +170780256396,214,0 +170780256443,214,0 +170780256491,214,0 +170780256541,214,0 +170780256589,214,0 +170780256637,213,0 +170780256686,213,0 +170780256734,213,0 +170780256782,214,0 +170780256830,214,0 +170780256878,214,0 +170780256926,214,0 +170780256973,213,0 +170780257021,214,0 +170780257069,214,0 +170780257117,214,0 +170780257166,214,0 +170780257214,214,0 +170780257262,214,0 +170780257312,214,0 +170780257360,214,0 +170780257409,214,0 +170780257459,214,0 +170780257508,213,0 +170780257556,213,0 +170780257604,213,0 +170780257652,213,0 +170780257701,213,0 +170780257749,214,0 +170780257797,214,0 +170780257845,214,0 +170780257894,214,0 +170780257942,214,0 +170780257990,214,0 +170780258040,214,0 +170780258088,214,0 +170780258137,214,0 +170780258187,215,0 +170780258236,214,0 +170780258284,214,0 +170780258332,214,0 +170780258382,214,0 +170780258429,213,0 +170780258477,213,0 +170780258525,214,0 +170780258573,213,0 +170780258622,214,0 +170780258670,214,0 +170780258718,214,0 +170780258766,214,0 +170780258814,214,0 +170780258861,214,0 +170780258909,214,0 +170780258957,214,0 +170780259005,214,0 +170780259053,214,0 +170780259101,214,0 +170780259150,214,0 +170780259198,214,0 +170780259246,214,0 +170780259294,214,0 +170780259342,213,0 +170780259390,213,0 +170780259439,213,0 +170780259487,213,0 +170780259535,213,0 +170780259584,214,0 +170780259632,214,0 +170780259680,214,0 +170780259729,214,0 +170780259777,214,0 +170780259825,214,0 +170780259873,214,0 +170780259921,214,0 +170780259969,215,0 +170780260017,214,0 +170780260066,214,0 +170780260114,214,0 +170780260162,214,0 +170780260210,213,0 +170780260258,213,0 +170780260307,213,0 +170780260355,214,0 +170780260403,213,0 +170780260451,214,0 +170780260499,214,0 +170780260548,214,0 +170780260596,214,0 +170780260644,214,0 +170780260692,214,0 +170780260740,214,0 +170780260789,214,0 +170780260837,214,0 +170780260887,214,0 +170780260935,214,0 +170780260983,214,0 +170780261032,214,0 +170780261082,213,0 +170780261130,213,0 +170780261178,214,0 +170780261226,213,0 +170780261274,214,0 +170780261321,214,0 +170780261369,214,0 +170780261419,214,0 +170780261466,214,0 +170780261514,214,0 +170780261562,214,0 +170780261610,214,0 +170780261658,214,0 +170780261706,214,0 +170780261754,214,0 +170780261802,214,0 +170780261849,214,0 +170780261897,214,0 +170780261945,214,0 +170780261993,214,0 +170780262041,214,0 +170780262089,214,0 +170780262138,214,0 +170780262188,214,0 +170780262235,214,0 +170780262283,214,0 +170780262331,214,0 +170780262379,214,0 +170780262427,214,0 +170780262475,214,0 +170780262523,215,0 +170780262571,214,0 +170780262618,214,0 +170780262666,214,0 +170780262714,214,0 +170780262762,214,0 +170780262810,214,0 +170780262858,214,0 +170780262906,214,0 +170780262954,214,0 +170780263001,214,0 +170780263049,214,0 +170780263097,214,0 +170780263145,214,0 +170780263193,214,0 +170780263240,214,0 +170780263288,214,0 +170780263336,214,0 +170780263384,214,0 +170780263432,214,0 +170780263479,215,0 +170780263527,214,0 +170780263575,214,0 +170780263623,214,0 +170780263671,214,0 +170780263719,214,0 +170780263768,214,0 +170780263816,214,0 +170780263864,214,0 +170780263914,214,0 +170780263962,214,0 +170780264010,214,0 +170780264059,214,0 +170780264107,214,0 +170780264157,214,0 +170780264205,214,0 +170780264254,214,0 +170780264304,214,0 +170780264352,215,0 +170780264399,214,0 +170780264447,214,0 +170780264495,214,0 +170780264543,214,0 +170780264591,214,0 +170780264638,214,0 +170780264686,214,0 +170780264734,214,0 +170780264782,214,0 +170780264830,214,0 +170780264878,214,0 +170780264925,214,0 +170780264973,214,0 +170780265021,214,0 +170780265071,214,0 +170780265120,214,0 +170780265168,214,0 +170780265216,214,0 +170780265263,215,0 +170780265311,215,0 +170780265359,214,0 +170780265409,214,0 +170780265458,214,0 +170780265508,214,0 +170780265556,213,0 +170780265604,213,0 +170780265652,213,0 +170780265699,214,0 +170780265747,213,0 +170780265795,214,0 +170780265843,214,0 +170780265891,214,0 +170780265939,214,0 +170780265987,214,0 +170780266035,214,0 +170780266083,214,0 +170780266132,214,0 +170780266180,214,0 +170780266229,214,0 +170780266277,214,0 +170780266325,214,0 +170780266374,214,0 +170780266422,213,0 +170780266470,213,0 +170780266519,213,0 +170780266567,214,0 +170780266615,214,0 +170780266663,214,0 +170780266711,214,0 +170780266759,214,0 +170780266807,214,0 +170780266855,214,0 +170780266902,214,0 +170780266952,214,0 +170780267000,214,0 +170780267048,214,0 +170780267095,214,0 +170780267143,214,0 +170780267193,214,0 +170780267240,214,0 +170780267288,214,0 +170780267336,213,0 +170780267384,213,0 +170780267432,213,0 +170780267481,214,0 +170780267529,214,0 +170780267577,213,0 +170780267625,213,0 +170780267672,214,0 +170780267720,214,0 +170780267770,214,0 +170780267817,214,0 +170780267865,214,0 +170780267913,214,0 +170780267961,214,0 +170780268010,214,0 +170780268058,214,0 +170780268106,214,0 +170780268154,214,0 +170780268204,213,0 +170780268251,213,0 +170780268299,213,0 +170780268347,213,0 +170780268397,213,0 +170780268445,214,0 +170780268494,213,0 +170780268542,214,0 +170780268590,214,0 +170780268638,214,0 +170780268686,214,0 +170780268734,214,0 +170780268782,214,0 +170780268829,214,0 +170780268879,214,0 +170780268928,214,0 +170780268976,214,0 +170780269026,214,0 +170780269075,214,0 +170780269125,213,0 +170780269173,213,0 +170780269221,213,0 +170780269269,213,0 +170780269318,213,0 +170780269368,214,0 +170780269416,214,0 +170780269465,214,0 +170780269513,214,0 +170780269561,214,0 +170780269609,214,0 +170780269658,214,0 +170780269708,214,0 +170780269756,214,0 +170780269805,214,0 +170780269855,214,0 +170780269903,214,0 +170780269952,214,0 +170780270002,213,0 +170780270050,213,0 +170780270099,213,0 +170780270147,213,0 +170780270195,213,0 +170780270243,213,0 +170780270292,213,0 +170780270340,214,0 +170780270388,214,0 +170780270436,214,0 +170780270484,214,0 +170780270532,214,0 +170780270580,214,0 +170780270628,214,0 +170780270676,214,0 +170780270724,214,0 +170780270772,214,0 +170780270820,214,0 +170780270868,214,0 +170780270917,213,0 +170780270965,213,0 +170780271013,213,0 +170780271061,213,0 +170780271109,213,0 +170780271158,213,0 +170780271207,213,0 +170780271255,213,0 +170780271305,214,0 +170780271353,214,0 +170780271402,214,0 +170780271452,214,0 +170780271501,214,0 +170780271549,214,0 +170780271598,214,0 +170780271646,214,0 +170780271696,214,0 +170780271744,214,0 +170780271792,213,0 +170780271840,213,0 +170780271887,213,0 +170780271935,213,0 +170780271983,213,0 +170780272031,213,0 +170780272079,213,0 +170780272129,213,0 +170780272177,214,0 +170780272225,214,0 +170780272272,214,0 +170780272320,214,0 +170780272370,214,0 +170780272419,214,0 +170780272467,214,0 +170780272515,214,0 +170780272565,214,0 +170780272614,214,0 +170780272662,214,0 +170780272710,213,0 +170780272758,213,0 +170780272807,213,0 +170780272855,214,0 +170780272903,213,0 +170780272953,213,0 +170780273002,214,0 +170780273050,214,0 +170780273100,213,0 +170780273148,214,0 +170780273196,214,0 +170780273245,214,0 +170780273293,214,0 +170780273343,214,0 +170780273392,214,0 +170780273440,214,0 +170780273490,214,0 +170780273538,214,0 +170780273586,213,0 +170780273633,213,0 +170780273683,213,0 +170780273732,213,0 +170780273780,214,0 +170780273830,214,0 +170780273878,214,0 +170780273925,214,0 +170780273973,214,0 +170780274021,214,0 +170780274069,214,0 +170780274117,214,0 +170780274165,215,0 +170780274213,214,0 +170780274260,214,0 +170780274310,214,0 +170780274358,214,0 +170780274407,214,0 +170780274455,214,0 +170780274504,214,0 +170780274552,214,0 +170780274601,214,0 +170780274651,214,0 +170780274698,214,0 +170780274746,214,0 +170780274794,214,0 +170780274844,214,0 +170780274891,214,0 +170780274939,214,0 +170780274987,214,0 +170780275036,214,0 +170780275084,214,0 +170780275132,215,0 +170780275180,215,0 +170780275228,214,0 +170780275276,214,0 +170780275324,214,0 +170780275372,214,0 +170780275420,214,0 +170780275469,214,0 +170780275517,214,0 +170780275565,214,0 +170780275613,214,0 +170780275662,214,0 +170780275710,214,0 +170780275758,214,0 +170780275806,214,0 +170780275856,215,0 +170780275904,215,0 +170780275953,215,0 +170780276001,215,0 +170780276049,215,0 +170780276098,214,0 +170780276146,215,0 +170780276194,214,0 +170780276242,214,0 +170780276290,214,0 +170780276339,214,0 +170780276387,214,0 +170780276435,214,0 +170780276484,214,0 +170780276532,214,0 +170780276580,214,0 +170780276628,214,0 +170780276678,214,0 +170780276726,214,0 +170780276775,214,0 +170780276823,214,0 +170780276871,214,0 +170780276919,215,0 +170780276966,215,0 +170780277014,214,0 +170780277062,214,0 +170780277110,214,0 +170780277158,214,0 +170780277206,214,0 +170780277255,214,0 +170780277303,214,0 +170780277351,214,0 +170780277399,214,0 +170780277447,214,0 +170780277495,214,0 +170780277543,214,0 +170780277592,214,0 +170780277640,214,0 +170780277688,214,0 +170780277736,215,0 +170780277784,215,0 +170780277832,215,0 +170780277879,214,0 +170780277927,214,0 +170780277975,214,0 +170780278025,213,0 +170780278074,214,0 +170780278124,214,0 +170780278173,214,0 +170780278221,214,0 +170780278269,214,0 +170780278317,214,0 +170780278365,214,0 +170780278413,214,0 +170780278461,214,0 +170780278509,214,0 +170780278558,214,0 +170780278606,214,0 +170780278654,215,0 +170780278703,215,0 +170780278753,214,0 +170780278800,214,0 +170780278848,214,0 +170780278896,213,0 +170780278944,213,0 +170780278992,213,0 +170780279040,213,0 +170780279088,214,0 +170780279137,214,0 +170780279185,214,0 +170780279233,214,0 +170780279280,214,0 +170780279330,214,0 +170780279378,214,0 +170780279426,214,0 +170780279473,214,0 +170780279521,214,0 +170780279569,214,0 +170780279617,214,0 +170780279665,214,0 +170780279715,214,0 +170780279763,214,0 +170780279812,213,0 +170780279860,213,0 +170780279910,213,0 +170780279958,214,0 +170780280005,214,0 +170780280053,214,0 +170780280101,214,0 +170780280149,214,0 +170780280197,214,0 +170780280245,214,0 +170780280293,214,0 +170780280341,214,0 +170780280388,214,0 +170780280436,214,0 +170780280484,214,0 +170780280534,214,0 +170780280581,214,0 +170780280629,214,0 +170780280677,214,0 +170780280725,213,0 +170780280773,213,0 +170780280821,213,0 +170780280870,214,0 +170780280918,214,0 +170780280965,214,0 +170780281015,214,0 +170780281063,214,0 +170780281112,214,0 +170780281160,214,0 +170780281209,214,0 +170780281257,214,0 +170780281305,214,0 +170780281353,214,0 +170780281401,214,0 +170780281449,214,0 +170780281498,214,0 +170780281546,214,0 +170780281594,213,0 +170780281643,213,0 +170780281691,213,0 +170780281739,213,0 +170780281787,214,0 +170780281835,214,0 +170780281883,214,0 +170780281930,214,0 +170780281978,214,0 +170780282026,214,0 +170780282074,214,0 +170780282122,214,0 +170780282171,214,0 +170780282219,214,0 +170780282269,214,0 +170780282317,214,0 +170780282365,214,0 +170780282413,214,0 +170780282462,213,0 +170780282510,213,0 +170780282559,213,0 +170780282607,213,0 +170780282655,213,0 +170780282703,214,0 +170780282753,214,0 +170780282801,214,0 +170780282850,214,0 +170780282900,214,0 +170780282949,214,0 +170780282997,214,0 +170780283045,214,0 +170780283093,214,0 +170780283141,214,0 +170780283190,214,0 +170780283238,214,0 +170780283286,214,0 +170780283333,214,0 +170780283381,213,0 +170780283429,213,0 +170780283477,214,0 +170780283525,214,0 +170780283574,214,0 +170780283622,214,0 +170780283671,214,0 +170780283719,214,0 +170780283769,214,0 +170780283818,214,0 +170780283868,214,0 +170780283916,214,0 +170780283964,214,0 +170780284013,215,0 +170780284061,214,0 +170780284109,214,0 +170780284159,214,0 +170780284207,214,0 +170780284256,214,0 +170780284306,213,0 +170780284355,214,0 +170780284403,214,0 +170780284451,214,0 +170780284499,214,0 +170780284547,214,0 +170780284595,214,0 +170780284644,214,0 +170780284694,214,0 +170780284743,214,0 +170780284791,214,0 +170780284841,214,0 +170780284889,214,0 +170780284937,215,0 +170780284984,214,0 +170780285032,215,0 +170780285082,214,0 +170780285131,214,0 +170780285179,213,0 +170780285227,213,0 +170780285276,214,0 +170780285326,214,0 +170780285374,214,0 +170780285422,214,0 +170780285469,214,0 +170780285517,214,0 +170780285565,214,0 +170780285613,214,0 +170780285661,214,0 +170780285709,214,0 +170780285757,214,0 +170780285806,215,0 +170780285854,215,0 +170780285902,214,0 +170780285951,214,0 +170780285999,215,0 +170780286047,214,0 +170780286097,214,0 +170780286145,214,0 +170780286194,214,0 +170780286242,214,0 +170780286290,214,0 +170780286340,214,0 +170780286387,214,0 +170780286437,214,0 +170780286486,215,0 +170780286536,214,0 +170780286584,215,0 +170780286632,215,0 +170780286680,214,0 +170780286728,214,0 +170780286777,215,0 +170780286825,214,0 +170780286873,215,0 +170780286921,214,0 +170780286969,214,0 +170780287017,214,0 +170780287066,214,0 +170780287114,214,0 +170780287162,214,0 +170780287210,214,0 +170780287259,214,0 +170780287307,214,0 +170780287357,214,0 +170780287405,214,0 +170780287453,215,0 +170780287501,214,0 +170780287549,214,0 +170780287597,214,0 +170780287646,215,0 +170780287694,214,0 +170780287743,214,0 +170780287791,214,0 +170780287841,214,0 +170780287889,214,0 +170780287937,214,0 +170780287985,214,0 +170780288033,214,0 +170780288082,214,0 +170780288130,214,0 +170780288180,214,0 +170780288227,214,0 +170780288275,214,0 +170780288323,214,0 +170780288373,214,0 +170780288422,214,0 +170780288470,214,0 +170780288520,214,0 +170780288569,214,0 +170780288617,215,0 +170780288667,214,0 +170780288715,213,0 +170780288762,214,0 +170780288812,214,0 +170780288861,214,0 +170780288909,214,0 +170780288959,214,0 +170780289007,214,0 +170780289056,214,0 +170780289104,214,0 +170780289154,214,0 +170780289202,214,0 +170780289249,214,0 +170780289297,214,0 +170780289347,215,0 +170780289396,215,0 +170780289446,215,0 +170780289494,215,0 +170780289542,215,0 +170780289590,214,0 +170780289638,214,0 +170780289685,214,0 +170780289733,214,0 +170780289781,214,0 +170780289831,214,0 +170780289879,214,0 +170780289928,214,0 +170780289976,214,0 +170780290025,214,0 +170780290075,214,0 +170780290124,214,0 +170780290172,214,0 +170780290220,214,0 +170780290270,214,0 +170780290318,214,0 +170780290365,215,0 +170780290413,214,0 +170780290463,214,0 +170780290512,214,0 +170780290560,214,0 +170780290608,214,0 +170780290656,214,0 +170780290704,214,0 +170780290752,214,0 +170780290799,214,0 +170780290847,214,0 +170780290895,214,0 +170780290943,214,0 +170780290991,214,0 +170780291041,214,0 +170780291089,215,0 +170780291136,215,0 +170780291184,215,0 +170780291232,215,0 +170780291280,215,0 +170780291328,215,0 +170780291376,214,0 +170780291424,214,0 +170780291474,214,0 +170780291522,214,0 +170780291571,214,0 +170780291620,214,0 +170780291668,214,0 +170780291716,214,0 +170780291764,214,0 +170780291812,214,0 +170780291860,214,0 +170780291908,214,0 +170780291956,214,0 +170780292004,214,0 +170780292052,215,0 +170780292102,215,0 +170780292149,215,0 +170780292199,214,0 +170780292248,214,0 +170780292296,214,0 +170780292346,214,0 +170780292395,214,0 +170780292443,214,0 +170780292493,214,0 +170780292542,214,0 +170780292590,214,0 +170780292638,214,0 +170780292688,214,0 +170780292735,214,0 +170780292785,214,0 +170780292833,214,0 +170780292881,215,0 +170780292930,215,0 +170780292980,215,0 +170780293029,214,0 +170780293079,214,0 +170780293128,214,0 +170780293176,213,0 +170780293224,214,0 +170780293272,214,0 +170780293322,214,0 +170780293370,214,0 +170780293418,214,0 +170780293465,214,0 +170780293515,214,0 +170780293564,214,0 +170780293612,214,0 +170780293660,214,0 +170780293708,215,0 +170780293756,214,0 +170780293804,214,0 +170780293853,215,0 +170780293901,214,0 +170780293951,214,0 +170780293999,214,0 +170780294046,213,0 +170780294096,213,0 +170780294145,213,0 +170780294195,213,0 +170780294243,214,0 +170780294291,214,0 +170780294340,214,0 +170780294390,214,0 +170780294437,214,0 +170780294487,214,0 +170780294536,214,0 +170780294586,214,0 +170780294635,214,0 +170780294685,214,0 +170780294734,215,0 +170780294784,214,0 +170780294832,215,0 +170780294880,214,0 +170780294929,214,0 +170780294979,213,0 +170780295028,213,0 +170780295076,214,0 +170780295126,214,0 +170780295174,214,0 +170780295223,214,0 +170780295271,214,0 +170780295319,213,0 +170780295368,214,0 +170780295418,214,0 +170780295466,214,0 +170780295515,214,0 +170780295563,214,0 +170780295613,214,0 +170780295661,214,0 +170780295708,214,0 +170780295758,214,0 +170780295806,214,0 +170780295854,213,0 +170780295903,213,0 +170780295953,213,0 +170780296001,214,0 +170780296048,213,0 +170780296096,214,0 +170780296144,214,0 +170780296192,214,0 +170780296240,214,0 +170780296288,214,0 +170780296336,214,0 +170780296384,214,0 +170780296431,214,0 +170780296479,214,0 +170780296527,214,0 +170780296577,215,0 +170780296626,214,0 +170780296674,214,0 +170780296724,214,0 +170780296772,213,0 +170780296819,214,0 +170780296867,214,0 +170780296917,213,0 +170780296965,214,0 +170780297013,214,0 +170780297061,214,0 +170780297110,214,0 +170780297158,214,0 +170780297206,214,0 +170780297254,214,0 +170780297302,214,0 +170780297350,215,0 +170780297398,214,0 +170780297446,215,0 +170780297494,215,0 +170780297541,214,0 +170780297591,214,0 +170780297639,213,0 +170780297688,213,0 +170780297736,213,0 +170780297786,214,0 +170780297834,214,0 +170780297882,214,0 +170780297931,214,0 +170780297979,214,0 +170780298027,214,0 +170780298075,214,0 +170780298124,214,0 +170780298174,214,0 +170780298223,215,0 +170780298271,214,0 +170780298319,215,0 +170780298367,214,0 +170780298417,214,0 +170780298464,214,0 +170780298512,213,0 +170780298560,213,0 +170780298610,213,0 +170780298658,213,0 +170780298707,213,0 +170780298757,214,0 +170780298804,214,0 +170780298854,214,0 +170780298904,214,0 +170780298952,214,0 +170780299001,214,0 +170780299049,214,0 +170780299097,214,0 +170780299145,214,0 +170780299193,214,0 +170780299240,214,0 +170780299288,214,0 +170780299336,214,0 +170780299384,214,0 +170780299434,213,0 +170780299483,213,0 +170780299533,213,0 +170780299581,213,0 +170780299630,213,0 +170780299678,213,0 +170780299726,214,0 +170780299774,214,0 +170780299822,214,0 +170780299872,214,0 +170780299920,214,0 +170780299968,214,0 +170780300015,214,0 +170780300063,214,0 +170780300113,214,0 +170780300161,214,0 +170780300210,214,0 +170780300258,214,0 +170780300306,213,0 +170780300354,213,0 +170780300403,213,0 +170780300451,213,0 +170780300499,214,0 +170780300547,214,0 +170780300597,214,0 +170780300645,214,0 +170780300693,214,0 +170780300741,214,0 +170780300790,214,0 +170780300840,214,0 +170780300889,214,0 +170780300937,214,0 +170780300985,214,0 +170780301033,215,0 +170780301081,214,0 +170780301129,214,0 +170780301176,213,0 +170780301226,213,0 +170780301274,213,0 +170780301323,213,0 +170780301371,214,0 +170780301419,214,0 +170780301469,214,0 +170780301518,214,0 +170780301568,214,0 +170780301617,214,0 +170780301665,214,0 +170780301715,214,0 +170780301763,214,0 +170780301811,214,0 +170780301859,214,0 +170780301907,214,0 +170780301956,215,0 +170780302006,214,0 +170780302054,214,0 +170780302103,214,0 +170780302153,214,0 +170780302201,214,0 +170780302250,214,0 +170780302300,214,0 +170780302348,214,0 +170780302396,214,0 +170780302444,214,0 +170780302491,214,0 +170780302539,214,0 +170780302589,214,0 +170780302638,215,0 +170780302686,215,0 +170780302734,214,0 +170780302782,214,0 +170780302831,215,0 +170780302881,214,0 +170780302929,214,0 +170780302978,213,0 +170780303026,213,0 +170780303076,214,0 +170780303124,214,0 +170780303173,214,0 +170780303221,214,0 +170780303269,214,0 +170780303319,214,0 +170780303366,214,0 +170780303414,214,0 +170780303462,214,0 +170780303510,214,0 +170780303558,214,0 +170780303606,215,0 +170780303654,215,0 +170780303702,215,0 +170780303750,215,0 +170780303800,214,0 +170780303848,214,0 +170780303896,213,0 +170780303943,214,0 +170780303993,214,0 +170780304041,214,0 +170780304089,214,0 +170780304137,214,0 +170780304185,214,0 +170780304233,214,0 +170780304281,214,0 +170780304329,214,0 +170780304377,214,0 +170780304426,214,0 +170780304474,215,0 +170780304523,215,0 +170780304573,215,0 +170780304621,215,0 +170780304670,214,0 +170780304718,214,0 +170780304768,214,0 +170780304816,214,0 +170780304865,213,0 +170780304915,214,0 +170780304963,214,0 +170780305011,214,0 +170780305060,214,0 +170780305108,214,0 +170780305158,214,0 +170780305205,214,0 +170780305253,214,0 +170780305301,215,0 +170780305349,215,0 +170780305397,215,0 +170780305447,215,0 +170780305495,215,0 +170780305543,214,0 +170780305591,214,0 +170780305639,214,0 +170780305688,214,0 +170780305738,214,0 +170780305787,214,0 +170780305835,214,0 +170780305885,214,0 +170780305932,214,0 +170780305980,214,0 +170780306028,214,0 +170780306076,215,0 +170780306126,214,0 +170780306174,215,0 +170780306223,215,0 +170780306273,215,0 +170780306321,215,0 +170780306369,214,0 +170780306417,215,0 +170780306466,214,0 +170780306514,214,0 +170780306562,214,0 +170780306610,214,0 +170780306658,214,0 +170780306708,214,0 +170780306755,214,0 +170780306803,214,0 +170780306851,214,0 +170780306901,214,0 +170780306949,214,0 +170780306997,215,0 +170780307046,215,0 +170780307094,215,0 +170780307142,215,0 +170780307190,215,0 +170780307238,215,0 +170780307286,215,0 +170780307335,215,0 +170780307385,214,0 +170780307433,214,0 +170780307480,214,0 +170780307530,214,0 +170780307578,214,0 +170780307627,214,0 +170780307675,214,0 +170780307723,214,0 +170780307773,214,0 +170780307822,215,0 +170780307872,215,0 +170780307921,215,0 +170780307971,215,0 +170780308020,215,0 +170780308070,215,0 +170780308118,215,0 +170780308167,215,0 +170780308217,215,0 +170780308266,214,0 +170780308314,214,0 +170780308362,214,0 +170780308412,214,0 +170780308461,214,0 +170780308509,214,0 +170780308559,214,0 +170780308606,214,0 +170780308656,214,0 +170780308705,214,0 +170780308755,215,0 +170780308803,215,0 +170780308852,214,0 +170780308900,215,0 +170780308948,215,0 +170780308996,215,0 +170780309044,215,0 +170780309093,214,0 +170780309141,214,0 +170780309189,214,0 +170780309239,214,0 +170780309288,214,0 +170780309336,214,0 +170780309386,214,0 +170780309435,214,0 +170780309483,214,0 +170780309533,214,0 +170780309581,214,0 +170780309630,214,0 +170780309680,215,0 +170780309729,214,0 +170780309779,214,0 +170780309827,215,0 +170780309874,215,0 +170780309924,215,0 +170780309972,214,0 +170780310021,215,0 +170780310069,214,0 +170780310119,214,0 +170780310168,214,0 +170780310216,214,0 +170780310266,214,0 +170780310314,214,0 +170780310363,214,0 +170780310411,214,0 +170780310459,214,0 +170780310509,214,0 +170780310556,214,0 +170780310606,214,0 +170780310654,215,0 +170780310702,215,0 +170780310750,214,0 +170780310798,215,0 +170780310846,214,0 +170780310893,214,0 +170780310941,214,0 +170780310989,214,0 +170780311037,214,0 +170780311085,214,0 +170780311133,214,0 +170780311181,214,0 +170780311228,214,0 +170780311276,214,0 +170780311324,214,0 +170780311373,214,0 +170780311421,214,0 +170780311469,214,0 +170780311517,214,0 +170780311565,214,0 +170780311613,215,0 +170780311661,214,0 +170780311708,214,0 +170780311756,214,0 +170780311804,214,0 +170780311854,214,0 +170780311903,213,0 +170780311951,214,0 +170780312000,214,0 +170780312048,214,0 +170780312096,214,0 +170780312144,214,0 +170780312192,214,0 +170780312241,214,0 +170780312289,214,0 +170780312337,214,0 +170780312385,214,0 +170780312433,214,0 +170780312482,214,0 +170780312530,214,0 +170780312578,214,0 +170780312626,214,0 +170780312673,214,0 +170780312721,214,0 +170780312771,213,0 +170780312819,213,0 +170780312867,214,0 +170780312916,214,0 +170780312964,214,0 +170780313014,214,0 +170780313063,214,0 +170780313111,214,0 +170780313159,214,0 +170780313209,214,0 +170780313257,214,0 +170780313305,214,0 +170780313354,214,0 +170780313404,214,0 +170780313453,215,0 +170780313501,214,0 +170780313551,214,0 +170780313598,214,0 +170780313648,213,0 +170780313696,213,0 +170780313744,213,0 +170780313793,214,0 +170780313841,213,0 +170780313891,213,0 +170780313939,214,0 +170780313986,214,0 +170780314034,214,0 +170780314084,214,0 +170780314132,214,0 +170780314180,214,0 +170780314228,214,0 +170780314277,214,0 +170780314325,214,0 +170780314374,214,0 +170780314424,214,0 +170780314472,214,0 +170780314520,214,0 +170780314568,213,0 +170780314616,213,0 +170780314664,213,0 +170780314711,213,0 +170780314759,214,0 +170780314807,213,0 +170780314855,213,0 +170780314904,214,0 +170780314952,214,0 +170780315000,214,0 +170780315048,214,0 +170780315095,214,0 +170780315143,214,0 +170780315193,214,0 +170780315240,214,0 +170780315288,214,0 +170780315336,214,0 +170780315384,214,0 +170780315432,214,0 +170780315480,213,0 +170780315527,213,0 +170780315575,213,0 +170780315623,213,0 +170780315671,214,0 +170780315720,214,0 +170780315768,214,0 +170780315816,214,0 +170780315864,214,0 +170780315912,214,0 +170780315960,214,0 +170780316007,214,0 +170780316055,214,0 +170780316103,214,0 +170780316151,214,0 +170780316199,214,0 +170780316247,214,0 +170780316296,214,0 +170780316344,213,0 +170780316394,213,0 +170780316441,214,0 +170780316489,214,0 +170780316537,214,0 +170780316585,214,0 +170780316634,214,0 +170780316682,214,0 +170780316731,214,0 +170780316779,214,0 +170780316827,214,0 +170780316875,214,0 +170780316923,214,0 +170780316972,214,0 +170780317022,214,0 +170780317071,214,0 +170780317119,215,0 +170780317167,214,0 +170780317215,213,0 +170780317264,214,0 +170780317312,214,0 +170780317360,214,0 +170780317409,214,0 +170780317457,214,0 +170780317505,214,0 +170780317553,214,0 +170780317601,214,0 +170780317649,214,0 +170780317696,214,0 +170780317744,214,0 +170780317792,214,0 +170780317841,214,0 +170780317889,214,0 +170780317937,214,0 +170780317985,215,0 +170780318035,215,0 +170780318083,214,0 +170780318132,213,0 +170780318180,213,0 +170780318228,214,0 +170780318278,214,0 +170780318326,214,0 +170780318375,214,0 +170780318423,214,0 +170780318471,214,0 +170780318519,214,0 +170780318567,214,0 +170780318615,214,0 +170780318663,214,0 +170780318712,214,0 +170780318762,215,0 +170780318811,214,0 +170780318859,214,0 +170780318907,214,0 +170780318955,214,0 +170780319004,214,0 +170780319052,214,0 +170780319100,214,0 +170780319150,214,0 +170780319197,214,0 +170780319245,214,0 +170780319293,214,0 +170780319343,214,0 +170780319391,214,0 +170780319439,214,0 +170780319487,214,0 +170780319535,214,0 +170780319583,214,0 +170780319630,214,0 +170780319680,214,0 +170780319728,215,0 +170780319777,214,0 +170780319825,214,0 +170780319873,214,0 +170780319921,214,0 +170780319969,214,0 +170780320018,214,0 +170780320066,214,0 +170780320115,214,0 +170780320163,214,0 +170780320211,214,0 +170780320259,215,0 +170780320308,214,0 +170780320356,215,0 +170780320404,215,0 +170780320453,215,0 +170780320503,215,0 +170780320551,215,0 +170780320600,215,0 +170780320650,215,0 +170780320698,214,0 +170780320746,214,0 +170780320795,214,0 +170780320844,214,0 +170780320892,214,0 +170780320940,214,0 +170780320988,214,0 +170780321036,215,0 +170780321084,215,0 +170780321134,214,0 +170780321182,215,0 +170780321231,215,0 +170780321279,215,0 +170780321327,215,0 +170780321375,215,0 +170780321423,215,0 +170780321472,215,0 +170780321521,215,0 +170780321571,214,0 +170780321619,215,0 +170780321668,214,0 +170780321716,214,0 +170780321764,214,0 +170780321812,214,0 +170780321860,214,0 +170780321908,214,0 +170780321956,214,0 +170780322005,214,0 +170780322055,214,0 +170780322103,215,0 +170780322151,215,0 +170780322200,215,0 +170780322248,215,0 +170780322296,215,0 +170780322344,214,0 +170780322392,214,0 +170780322440,214,0 +170780322489,214,0 +170780322539,213,0 +170780322587,213,0 +170780322635,214,0 +170780322684,214,0 +170780322734,214,0 +170780322781,214,0 +170780322831,214,0 +170780322880,214,0 +170780322928,214,0 +170780322976,214,0 +170780323026,214,0 +170780323074,214,0 +170780323122,214,0 +170780323170,214,0 +170780323219,215,0 +170780323269,214,0 +170780323318,215,0 +170780323366,214,0 +170780323416,214,0 +170780323463,213,0 +170780323511,213,0 +170780323559,213,0 +170780323607,214,0 +170780323655,213,0 +170780323705,214,0 +170780323754,213,0 +170780323804,214,0 +170780323853,214,0 +170780323901,214,0 +170780323949,214,0 +170780323998,214,0 +170780324046,214,0 +170780324096,214,0 +170780324144,214,0 +170780324192,214,0 +170780324239,214,0 +170780324289,214,0 +170780324337,213,0 +170780324386,213,0 +170780324434,213,0 +170780324482,213,0 +170780324530,213,0 +170780324580,214,0 +170780324628,213,0 +170780324676,214,0 +170780324725,214,0 +170780324773,214,0 +170780324821,214,0 +170780324869,214,0 +170780324917,214,0 +170780324965,214,0 +170780325013,214,0 +170780325062,215,0 +170780325111,215,0 +170780325161,214,0 +170780325209,214,0 +170780325258,213,0 +170780325306,213,0 +170780325354,213,0 +170780325404,213,0 +170780325452,213,0 +170780325499,214,0 +170780325549,214,0 +170780325598,213,0 +170780325648,214,0 +170780325696,214,0 +170780325745,214,0 +170780325793,214,0 +170780325841,214,0 +170780325891,214,0 +170780325940,214,0 +170780325990,214,0 +170780326039,215,0 +170780326089,214,0 +170780326137,213,0 +170780326186,213,0 +170780326234,213,0 +170780326282,214,0 +170780326332,214,0 +170780326381,214,0 +170780326431,214,0 +170780326479,213,0 +170780326526,214,0 +170780326574,214,0 +170780326624,214,0 +170780326672,214,0 +170780326721,214,0 +170780326769,214,0 +170780326819,214,0 +170780326867,214,0 +170780326915,214,0 +170780326963,214,0 +170780327011,214,0 +170780327060,213,0 +170780327108,213,0 +170780327156,214,0 +170780327204,214,0 +170780327252,214,0 +170780327300,214,0 +170780327349,214,0 +170780327397,214,0 +170780327445,214,0 +170780327493,214,0 +170780327543,214,0 +170780327590,215,0 +170780327640,214,0 +170780327689,215,0 +170780327739,214,0 +170780327788,214,0 +170780327836,214,0 +170780327884,214,0 +170780327932,214,0 +170780327980,214,0 +170780328030,214,0 +170780328079,214,0 +170780328129,214,0 +170780328177,214,0 +170780328226,214,0 +170780328274,214,0 +170780328324,214,0 +170780328372,214,0 +170780328419,214,0 +170780328467,215,0 +170780328515,215,0 +170780328563,215,0 +170780328613,214,0 +170780328661,215,0 +170780328709,215,0 +170780328758,214,0 +170780328806,213,0 +170780328854,214,0 +170780328902,214,0 +170780328950,214,0 +170780328998,214,0 +170780329047,214,0 +170780329095,214,0 +170780329145,214,0 +170780329193,214,0 +170780329241,214,0 +170780329289,215,0 +170780329337,215,0 +170780329386,215,0 +170780329434,214,0 +170780329482,215,0 +170780329530,215,0 +170780329578,215,0 +170780329626,214,0 +170780329674,214,0 +170780329723,214,0 +170780329773,214,0 +170780329821,214,0 +170780329869,214,0 +170780329917,214,0 +170780329966,214,0 +170780330014,214,0 +170780330062,214,0 +170780330111,214,0 +170780330161,214,0 +170780330209,215,0 +170780330257,215,0 +170780330306,215,0 +170780330356,215,0 +170780330405,215,0 +170780330453,214,0 +170780330501,214,0 +170780330550,214,0 +170780330598,214,0 +170780330648,214,0 +170780330696,214,0 +170780330744,214,0 +170780330792,214,0 +170780330840,214,0 +170780330887,214,0 +170780330937,214,0 +170780330986,214,0 +170780331034,214,0 +170780331082,214,0 +170780331130,215,0 +170780331180,215,0 +170780331228,214,0 +170780331276,214,0 +170780331323,215,0 +170780331371,214,0 +170780331419,214,0 +170780331467,214,0 +170780331517,214,0 +170780331566,214,0 +170780331614,214,0 +170780331662,214,0 +170780331710,214,0 +170780331760,214,0 +170780331809,214,0 +170780331859,214,0 +170780331908,214,0 +170780331958,214,0 +170780332007,214,0 +170780332055,215,0 +170780332105,214,0 +170780332153,214,0 +170780332202,214,0 +170780332251,215,0 +170780332299,214,0 +170780332347,214,0 +170780332397,214,0 +170780332445,214,0 +170780332494,214,0 +170780332542,214,0 +170780332590,214,0 +170780332638,214,0 +170780332686,214,0 +170780332735,214,0 +170780332783,214,0 +170780332831,214,0 +170780332881,214,0 +170780332930,214,0 +170780332978,215,0 +170780333026,215,0 +170780333076,215,0 +170780333125,215,0 +170780333173,214,0 +170780333221,214,0 +170780333269,214,0 +170780333318,214,0 +170780333368,214,0 +170780333416,214,0 +170780333464,214,0 +170780333513,214,0 +170780333561,214,0 +170780333611,214,0 +170780333660,214,0 +170780333710,214,0 +170780333758,214,0 +170780333807,215,0 +170780333857,214,0 +170780333905,214,0 +170780333953,215,0 +170780334002,215,0 +170780334051,214,0 +170780334099,214,0 +170780334149,214,0 +170780334197,214,0 +170780334246,214,0 +170780334294,214,0 +170780334342,214,0 +170780334392,214,0 +170780334439,214,0 +170780334487,214,0 +170780334535,214,0 +170780334583,214,0 +170780334631,214,0 +170780334680,215,0 +170780334728,214,0 +170780334776,214,0 +170780334824,215,0 +170780334872,214,0 +170780334920,215,0 +170780334968,214,0 +170780335015,214,0 +170780335065,214,0 +170780335113,214,0 +170780335161,214,0 +170780335210,214,0 +170780335258,214,0 +170780335306,214,0 +170780335356,214,0 +170780335404,214,0 +170780335453,214,0 +170780335501,215,0 +170780335549,214,0 +170780335597,214,0 +170780335645,215,0 +170780335694,215,0 +170780335742,215,0 +170780335790,215,0 +170780335838,215,0 +170780335887,214,0 +170780335937,214,0 +170780335985,214,0 +170780336034,214,0 +170780336084,214,0 +170780336132,214,0 +170780336180,214,0 +170780336228,214,0 +170780336275,214,0 +170780336325,214,0 +170780336374,214,0 +170780336422,214,0 +170780336472,215,0 +170780336521,214,0 +170780336569,215,0 +170780336617,215,0 +170780336665,215,0 +170780336715,215,0 +170780336763,214,0 +170780336812,213,0 +170780336860,213,0 +170780336908,214,0 +170780336957,214,0 +170780337005,214,0 +170780337053,214,0 +170780337101,214,0 +170780337149,214,0 +170780337197,214,0 +170780337245,214,0 +170780337292,214,0 +170780337340,214,0 +170780337388,214,0 +170780337436,215,0 +170780337485,215,0 +170780337533,215,0 +170780337581,215,0 +170780337629,214,0 +170780337678,214,0 +170780337726,213,0 +170780337774,214,0 +170780337823,214,0 +170780337871,214,0 +170780337919,214,0 +170780337968,214,0 +170780338016,214,0 +170780338064,214,0 +170780338114,214,0 +170780338161,214,0 +170780338209,214,0 +170780338259,214,0 +170780338307,215,0 +170780338354,215,0 +170780338404,214,0 +170780338453,215,0 +170780338503,214,0 +170780338552,214,0 +170780338600,213,0 +170780338648,214,0 +170780338698,214,0 +170780338746,213,0 +170780338795,214,0 +170780338845,214,0 +170780338893,214,0 +170780338942,214,0 +170780338990,214,0 +170780339039,214,0 +170780339087,214,0 +170780339135,214,0 +170780339183,214,0 +170780339233,214,0 +170780339281,214,0 +170780339329,214,0 +170780339377,214,0 +170780339424,214,0 +170780339472,214,0 +170780339522,213,0 +170780339570,214,0 +170780339618,214,0 +170780339667,214,0 +170780339715,214,0 +170780339763,214,0 +170780339810,214,0 +170780339860,214,0 +170780339909,214,0 +170780339957,214,0 +170780340005,214,0 +170780340053,214,0 +170780340100,214,0 +170780340148,214,0 +170780340196,214,0 +170780340244,214,0 +170780340292,214,0 +170780340341,214,0 +170780340390,213,0 +170780340438,213,0 +170780340486,214,0 +170780340536,214,0 +170780340585,214,0 +170780340633,214,0 +170780340681,214,0 +170780340729,214,0 +170780340776,214,0 +170780340824,214,0 +170780340872,214,0 +170780340922,214,0 +170780340969,214,0 +170780341017,214,0 +170780341065,214,0 +170780341113,214,0 +170780341161,214,0 +170780341209,214,0 +170780341257,214,0 +170780341304,214,0 +170780341352,214,0 +170780341400,214,0 +170780341448,214,0 +170780341496,214,0 +170780341545,214,0 +170780341593,214,0 +170780341641,214,0 +170780341689,214,0 +170780341736,214,0 +170780341784,214,0 +170780341832,215,0 +170780341880,214,0 +170780341928,214,0 +170780341975,215,0 +170780342023,214,0 +170780342071,214,0 +170780342119,214,0 +170780342167,214,0 +170780342214,214,0 +170780342262,214,0 +170780342310,214,0 +170780342358,214,0 +170780342406,214,0 +170780342454,214,0 +170780342503,214,0 +170780342551,214,0 +170780342599,214,0 +170780342647,214,0 +170780342696,214,0 +170780342744,214,0 +170780342792,214,0 +170780342840,214,0 +170780342888,214,0 +170780342937,214,0 +170780342985,214,0 +170780343033,214,0 +170780343080,214,0 +170780343128,214,0 +170780343176,214,0 +170780343224,214,0 +170780343272,214,0 +170780343321,214,0 +170780343369,215,0 +170780343419,214,0 +170780343466,214,0 +170780343514,215,0 +170780343562,215,0 +170780343610,214,0 +170780343658,215,0 +170780343705,215,0 +170780343753,215,0 +170780343801,215,0 +170780343849,214,0 +170780343897,214,0 +170780343945,213,0 +170780343993,213,0 +170780344040,214,0 +170780344088,214,0 +170780344136,214,0 +170780344186,214,0 +170780344233,214,0 +170780344281,214,0 +170780344329,214,0 +170780344377,214,0 +170780344425,214,0 +170780344473,214,0 +170780344522,214,0 +170780344570,215,0 +170780344619,215,0 +170780344667,215,0 +170780344715,215,0 +170780344763,214,0 +170780344811,213,0 +170780344858,213,0 +170780344906,213,0 +170780344956,213,0 +170780345003,213,0 +170780345053,213,0 +170780345101,214,0 +170780345149,214,0 +170780345196,214,0 +170780345244,214,0 +170780345292,214,0 +170780345340,214,0 +170780345388,214,0 +170780345436,214,0 +170780345483,214,0 +170780345531,215,0 +170780345579,214,0 +170780345627,214,0 +170780345675,214,0 +170780345722,213,0 +170780345770,213,0 +170780345818,213,0 +170780345866,213,0 +170780345914,214,0 +170780345962,214,0 +170780346010,213,0 +170780346057,214,0 +170780346107,214,0 +170780346155,214,0 +170780346202,214,0 +170780346250,214,0 +170780346300,214,0 +170780346348,214,0 +170780346395,214,0 +170780346443,214,0 +170780346491,214,0 +170780346541,214,0 +170780346588,213,0 +170780346636,213,0 +170780346684,213,0 +170780346732,214,0 +170780346780,214,0 +170780346828,214,0 +170780346875,214,0 +170780346923,214,0 +170780346971,214,0 +170780347019,214,0 +170780347067,214,0 +170780347116,214,0 +170780347166,214,0 +170780347215,214,0 +170780347263,214,0 +170780347311,214,0 +170780347360,214,0 +170780347409,214,0 +170780347457,214,0 +170780347505,213,0 +170780347553,214,0 +170780347601,213,0 +170780347649,214,0 +170780347696,213,0 +170780347744,214,0 +170780347792,214,0 +170780347840,214,0 +170780347888,214,0 +170780347936,214,0 +170780347983,214,0 +170780348031,214,0 +170780348079,214,0 +170780348127,214,0 +170780348175,214,0 +170780348222,214,0 +170780348270,214,0 +170780348320,214,0 +170780348369,214,0 +170780348417,214,0 +170780348465,213,0 +170780348513,213,0 +170780348560,214,0 +170780348608,214,0 +170780348656,214,0 +170780348704,214,0 +170780348753,214,0 +170780348801,214,0 +170780348849,214,0 +170780348897,214,0 +170780348945,214,0 +170780348992,214,0 +170780349040,215,0 +170780349090,214,0 +170780349138,214,0 +170780349185,214,0 +170780349235,214,0 +170780349283,214,0 +170780349330,214,0 +170780349378,214,0 +170780349426,214,0 +170780349474,214,0 +170780349522,214,0 +170780349571,214,0 +170780349619,214,0 +170780349669,214,0 +170780349716,214,0 +170780349764,214,0 +170780349812,215,0 +170780349860,214,0 +170780349909,215,0 +170780349957,214,0 +170780350005,214,0 +170780350053,214,0 +170780350102,214,0 +170780350150,214,0 +170780350198,214,0 +170780350246,214,0 +170780350295,214,0 +170780350344,214,0 +170780350392,214,0 +170780350440,214,0 +170780350488,214,0 +170780350536,214,0 +170780350583,215,0 +170780350631,214,0 +170780350679,215,0 +170780350727,214,0 +170780350776,214,0 +170780350824,214,0 +170780350874,214,0 +170780350922,214,0 +170780350969,214,0 +170780351017,214,0 +170780351065,214,0 +170780351113,214,0 +170780351161,214,0 +170780351210,214,0 +170780351258,214,0 +170780351306,215,0 +170780351354,215,0 +170780351402,215,0 +170780351450,215,0 +170780351499,215,0 +170780351547,214,0 +170780351595,215,0 +170780351643,215,0 +170780351693,214,0 +170780351741,214,0 +170780351789,215,0 +170780351837,214,0 +170780351886,214,0 +170780351936,214,0 +170780351985,214,0 +170780352033,214,0 +170780352081,214,0 +170780352129,214,0 +170780352177,214,0 +170780352227,214,0 +170780352274,214,0 +170780352322,214,0 +170780352372,214,0 +170780352421,214,0 +170780352471,214,0 +170780352519,215,0 +170780352567,214,0 +170780352615,214,0 +170780352664,214,0 +170780352714,214,0 +170780352762,214,0 +170780352810,214,0 +170780352858,213,0 +170780352907,214,0 +170780352955,214,0 +170780353003,214,0 +170780353051,214,0 +170780353099,214,0 +170780353147,214,0 +170780353195,214,0 +170780353243,214,0 +170780353291,214,0 +170780353340,214,0 +170780353390,214,0 +170780353438,214,0 +170780353487,215,0 +170780353535,214,0 +170780353583,214,0 +170780353633,214,0 +170780353681,214,0 +170780353730,214,0 +170780353778,213,0 +170780353826,214,0 +170780353875,213,0 +170780353923,214,0 +170780353971,214,0 +170780354019,214,0 +170780354069,214,0 +170780354117,214,0 +170780354166,214,0 +170780354214,214,0 +170780354262,214,0 +170780354310,214,0 +170780354358,215,0 +170780354406,214,0 +170780354455,214,0 +170780354503,214,0 +170780354551,214,0 +170780354599,213,0 +170780354649,213,0 +170780354697,213,0 +170780354746,214,0 +170780354796,214,0 +170780354845,214,0 +170780354893,214,0 +170780354941,214,0 +170780354989,214,0 +170780355038,214,0 +170780355088,214,0 +170780355135,214,0 +170780355183,214,0 +170780355231,214,0 +170780355279,214,0 +170780355327,214,0 +170780355375,214,0 +170780355422,214,0 +170780355470,214,0 +170780355518,213,0 +170780355566,214,0 +170780355614,214,0 +170780355661,214,0 +170780355709,214,0 +170780355757,214,0 +170780355805,214,0 +170780355853,214,0 +170780355901,214,0 +170780355948,214,0 +170780355998,214,0 +170780356046,214,0 +170780356093,214,0 +170780356141,214,0 +170780356191,214,0 +170780356239,214,0 +170780356287,214,0 +170780356334,214,0 +170780356382,213,0 +170780356430,213,0 +170780356480,214,0 +170780356528,214,0 +170780356577,214,0 +170780356627,214,0 +170780356676,214,0 +170780356726,214,0 +170780356775,214,0 +170780356823,214,0 +170780356873,214,0 +170780356920,214,0 +170780356968,214,0 +170780357018,214,0 +170780357067,215,0 +170780357117,215,0 +170780357166,214,0 +170780357214,214,0 +170780357264,213,0 +170780357312,213,0 +170780357360,213,0 +170780357409,213,0 +170780357458,213,0 +170780357508,214,0 +170780357557,214,0 +170780357605,214,0 +170780357653,214,0 +170780357701,214,0 +170780357751,214,0 +170780357798,214,0 +170780357848,214,0 +170780357896,214,0 +170780357944,214,0 +170780357993,214,0 +170780358041,214,0 +170780358091,214,0 +170780358140,214,0 +170780358188,213,0 +170780358236,213,0 +170780358284,213,0 +170780358334,213,0 +170780358382,213,0 +170780358430,213,0 +170780358478,214,0 +170780358526,214,0 +170780358575,214,0 +170780358623,214,0 +170780358672,214,0 +170780358720,214,0 +170780358768,214,0 +170780358818,214,0 +170780358866,214,0 +170780358913,215,0 +170780358961,214,0 +170780359009,214,0 +170780359057,214,0 +170780359107,213,0 +170780359154,213,0 +170780359202,214,0 +170780359252,214,0 +170780359301,214,0 +170780359349,214,0 +170780359397,214,0 +170780359445,214,0 +170780359495,214,0 +170780359544,214,0 +170780359592,214,0 +170780359640,214,0 +170780359690,214,0 +170780359738,214,0 +170780359787,214,0 +170780359835,214,0 +170780359885,214,0 +170780359932,213,0 +170780359982,213,0 +170780360032,213,0 +170780360079,213,0 +170780360129,214,0 +170780360178,214,0 +170780360226,214,0 +170780360276,214,0 +170780360324,214,0 +170780360373,214,0 +170780360421,214,0 +170780360471,214,0 +170780360520,214,0 +170780360570,214,0 +170780360618,214,0 +170780360667,214,0 +170780360717,214,0 +170780360764,214,0 +170780360812,213,0 +170780360860,213,0 +170780360908,213,0 +170780360956,213,0 +170780361004,213,0 +170780361053,213,0 +170780361101,214,0 +170780361149,214,0 +170780361197,214,0 +170780361247,214,0 +170780361295,214,0 +170780361344,214,0 +170780361392,214,0 +170780361440,214,0 +170780361490,214,0 +170780361537,214,0 +170780361585,214,0 +170780361633,214,0 +170780361683,214,0 +170780361731,213,0 +170780361779,213,0 +170780361827,213,0 +170780361875,213,0 +170780361923,214,0 +170780361972,213,0 +170780362022,214,0 +170780362069,214,0 +170780362117,214,0 +170780362165,214,0 +170780362213,214,0 +170780362263,214,0 +170780362311,214,0 +170780362359,214,0 +170780362407,214,0 +170780362456,214,0 +170780362504,214,0 +170780362554,214,0 +170780362601,214,0 +170780362651,213,0 +170780362701,214,0 +170780362748,213,0 +170780362796,214,0 +170780362846,214,0 +170780362895,213,0 +170780362945,214,0 +170780362994,214,0 +170780363044,214,0 +170780363092,214,0 +170780363140,214,0 +170780363188,214,0 +170780363237,214,0 +170780363285,214,0 +170780363335,214,0 +170780363384,214,0 +170780363432,214,0 +170780363480,214,0 +170780363528,213,0 +170780363576,214,0 +170780363623,213,0 +170780363671,214,0 +170780363719,214,0 +170780363767,214,0 +170780363817,214,0 +170780363864,214,0 +170780363912,214,0 +170780363962,214,0 +170780364011,214,0 +170780364061,214,0 +170780364109,214,0 +170780364157,215,0 +170780364205,214,0 +170780364253,214,0 +170780364301,214,0 +170780364350,214,0 +170780364398,213,0 +170780364446,214,0 +170780364494,214,0 +170780364542,214,0 +170780364590,214,0 +170780364638,214,0 +170780364687,214,0 +170780364737,214,0 +170780364786,214,0 +170780364836,214,0 +170780364884,214,0 +170780364932,214,0 +170780364980,215,0 +170780365028,214,0 +170780365075,214,0 +170780365123,214,0 +170780365173,214,0 +170780365221,214,0 +170780365269,214,0 +170780365318,214,0 +170780365366,214,0 +170780365414,214,0 +170780365462,214,0 +170780365510,214,0 +170780365559,214,0 +170780365607,214,0 +170780365655,215,0 +170780365703,214,0 +170780365753,215,0 +170780365802,215,0 +170780365852,215,0 +170780365901,215,0 +170780365949,215,0 +170780365999,215,0 +170780366047,214,0 +170780366095,214,0 +170780366143,214,0 +170780366191,214,0 +170780366239,214,0 +170780366288,214,0 +170780366336,214,0 +170780366386,214,0 +170780366434,214,0 +170780366481,214,0 +170780366531,214,0 +170780366579,214,0 +170780366628,215,0 +170780366676,215,0 +170780366726,215,0 +170780366775,215,0 +170780366824,215,0 +170780366872,215,0 +170780366920,214,0 +170780366968,214,0 +170780367016,214,0 +170780367065,214,0 +170780367115,214,0 +170780367164,214,0 +170780367214,214,0 +170780367263,214,0 +170780367313,214,0 +170780367360,214,0 +170780367410,214,0 +170780367458,214,0 +170780367506,214,0 +170780367554,214,0 +170780367602,214,0 +170780367650,214,0 +170780367699,215,0 +170780367749,214,0 +170780367797,214,0 +170780367846,214,0 +170780367894,214,0 +170780367944,213,0 +170780367992,213,0 +170780368039,213,0 +170780368087,213,0 +170780368135,213,0 +170780368183,214,0 +170780368233,214,0 +170780368282,214,0 +170780368330,214,0 +170780368380,214,0 +170780368428,214,0 +170780368477,214,0 +170780368525,214,0 +170780368573,214,0 +170780368621,214,0 +170780368670,214,0 +170780368718,214,0 +170780368766,214,0 +170780368814,214,0 +170780368864,213,0 +170780368913,213,0 +170780368961,214,0 +170780369009,214,0 +170780369057,214,0 +170780369107,214,0 +170780369156,214,0 +170780369204,214,0 +170780369252,214,0 +170780369300,214,0 +170780369349,214,0 +170780369397,214,0 +170780369445,214,0 +170780369494,214,0 +170780369542,214,0 +170780369590,214,0 +170780369638,214,0 +170780369686,214,0 +170780369736,213,0 +170780369784,213,0 +170780369832,213,0 +170780369881,213,0 +170780369929,213,0 +170780369978,214,0 +170780370026,213,0 +170780370076,214,0 +170780370124,214,0 +170780370172,214,0 +170780370220,214,0 +170780370269,214,0 +170780370319,214,0 +170780370367,214,0 +170780370416,214,0 +170780370464,214,0 +170780370513,214,0 +170780370561,214,0 +170780370609,213,0 +170780370657,213,0 +170780370705,213,0 +170780370753,213,0 +170780370801,214,0 +170780370850,214,0 +170780370898,214,0 +170780370948,214,0 +170780370995,214,0 +170780371043,214,0 +170780371093,214,0 +170780371142,214,0 +170780371192,214,0 +170780371240,214,0 +170780371288,214,0 +170780371337,214,0 +170780371385,214,0 +170780371433,214,0 +170780371483,214,0 +170780371532,213,0 +170780371580,213,0 +170780371628,214,0 +170780371676,213,0 +170780371724,214,0 +170780371772,213,0 +170780371821,214,0 +170780371871,214,0 +170780371919,214,0 +170780371966,214,0 +170780372014,214,0 +170780372062,214,0 +170780372110,215,0 +170780372158,214,0 +170780372206,214,0 +170780372253,215,0 +170780372301,214,0 +170780372351,214,0 +170780372400,213,0 +170780372448,213,0 +170780372498,213,0 +170780372547,214,0 +170780372597,213,0 +170780372645,214,0 +170780372695,214,0 +170780372742,214,0 +170780372790,214,0 +170780372838,214,0 +170780372888,214,0 +170780372936,214,0 +170780372984,214,0 +170780373033,214,0 +170780373083,215,0 +170780373132,214,0 +170780373182,215,0 +170780373230,214,0 +170780373277,214,0 +170780373327,214,0 +170780373376,214,0 +170780373424,214,0 +170780373472,214,0 +170780373520,214,0 +170780373570,214,0 +170780373618,214,0 +170780373667,214,0 +170780373715,215,0 +170780373763,214,0 +170780373812,214,0 +170780373862,215,0 +170780373911,215,0 +170780373959,215,0 +170780374007,214,0 +170780374057,214,0 +170780374106,214,0 +170780374156,214,0 +170780374204,214,0 +170780374252,214,0 +170780374301,214,0 +170780374349,214,0 +170780374397,214,0 +170780374446,214,0 +170780374496,214,0 +170780374544,214,0 +170780374593,214,0 +170780374643,214,0 +170780374691,214,0 +170780374739,215,0 +170780374787,214,0 +170780374836,215,0 +170780374884,215,0 +170780374932,214,0 +170780374980,214,0 +170780375030,214,0 +170780375079,213,0 +170780375129,213,0 +170780375178,214,0 +170780375226,214,0 +170780375274,214,0 +170780375322,214,0 +170780375370,214,0 +170780375418,214,0 +170780375467,214,0 +170780375517,214,0 +170780375566,214,0 +170780375614,214,0 +170780375664,214,0 +170780375712,214,0 +170780375761,214,0 +170780375809,215,0 +170780375857,214,0 +170780375907,214,0 +170780375956,214,0 +170780376004,214,0 +170780376054,214,0 +170780376101,213,0 +170780376149,214,0 +170780376197,214,0 +170780376247,214,0 +170780376295,214,0 +170780376343,214,0 +170780376391,214,0 +170780376438,214,0 +170780376486,214,0 +170780376534,214,0 +170780376582,214,0 +170780376630,215,0 +170780376680,214,0 +170780376727,214,0 +170780376777,214,0 +170780376825,214,0 +170780376873,214,0 +170780376922,214,0 +170780376970,214,0 +170780377018,214,0 +170780377068,214,0 +170780377116,214,0 +170780377165,214,0 +170780377213,214,0 +170780377261,214,0 +170780377311,214,0 +170780377360,214,0 +170780377408,214,0 +170780377456,214,0 +170780377504,214,0 +170780377553,214,0 +170780377601,215,0 +170780377651,214,0 +170780377699,214,0 +170780377747,214,0 +170780377794,214,0 +170780377842,214,0 +170780377890,214,0 +170780377938,214,0 +170780377988,214,0 +170780378036,214,0 +170780378085,214,0 +170780378135,215,0 +170780378184,214,0 +170780378234,215,0 +170780378283,214,0 +170780378331,214,0 +170780378381,214,0 +170780378428,214,0 +170780378478,215,0 +170780378527,214,0 +170780378575,214,0 +170780378623,214,0 +170780378673,214,0 +170780378722,214,0 +170780378770,214,0 +170780378818,214,0 +170780378866,214,0 +170780378916,214,0 +170780378964,214,0 +170780379012,215,0 +170780379060,214,0 +170780379109,215,0 +170780379157,214,0 +170780379205,215,0 +170780379253,215,0 +170780379301,214,0 +170780379350,214,0 +170780379398,214,0 +170780379446,214,0 +170780379494,213,0 +170780379542,214,0 +170780379590,213,0 +170780379639,214,0 +170780379687,214,0 +170780379734,214,0 +170780379782,214,0 +170780379830,214,0 +170780379878,215,0 +170780379926,214,0 +170780379974,214,0 +170780380022,214,0 +170780380069,215,0 +170780380117,215,0 +170780380165,214,0 +170780380215,215,0 +170780380262,214,0 +170780380310,214,0 +170780380358,214,0 +170780380406,214,0 +170780380453,213,0 +170780380501,214,0 +170780380549,214,0 +170780380597,214,0 +170780380645,214,0 +170780380693,214,0 +170780380741,214,0 +170780380790,214,0 +170780380840,214,0 +170780380888,214,0 +170780380936,214,0 +170780380983,215,0 +170780381031,215,0 +170780381079,215,0 +170780381127,214,0 +170780381177,214,0 +170780381226,214,0 +170780381276,213,0 +170780381325,214,0 +170780381373,214,0 +170780381422,214,0 +170780381472,214,0 +170780381521,214,0 +170780381569,214,0 +170780381619,214,0 +170780381667,214,0 +170780381715,214,0 +170780381763,214,0 +170780381812,214,0 +170780381862,214,0 +170780381909,214,0 +170780381957,215,0 +170780382005,214,0 +170780382053,214,0 +170780382101,214,0 +170780382150,213,0 +170780382198,214,0 +170780382246,213,0 +170780382293,214,0 +170780382341,214,0 +170780382389,214,0 +170780382437,214,0 +170780382485,214,0 +170780382533,214,0 +170780382581,214,0 +170780382629,214,0 +170780382676,214,0 +170780382724,214,0 +170780382774,214,0 +170780382822,214,0 +170780382869,215,0 +170780382917,215,0 +170780382967,214,0 +170780383015,214,0 +170780383062,213,0 +170780383112,213,0 +170780383160,214,0 +170780383209,214,0 +170780383257,214,0 +170780383305,214,0 +170780383353,214,0 +170780383401,214,0 +170780383448,214,0 +170780383496,214,0 +170780383544,214,0 +170780383593,214,0 +170780383641,214,0 +170780383689,214,0 +170780383737,214,0 +170780383785,214,0 +170780383833,214,0 +170780383880,214,0 +170780383928,213,0 +170780383976,213,0 +170780384024,213,0 +170780384072,214,0 +170780384120,213,0 +170780384167,214,0 +170780384215,214,0 +170780384263,214,0 +170780384311,214,0 +170780384359,214,0 +170780384407,214,0 +170780384454,214,0 +170780384502,214,0 +170780384550,214,0 +170780384598,214,0 +170780384648,214,0 +170780384696,214,0 +170780384743,214,0 +170780384793,214,0 +170780384841,213,0 +170780384890,213,0 +170780384940,213,0 +170780384989,213,0 +170780385039,213,0 +170780385087,213,0 +170780385136,214,0 +170780385186,214,0 +170780385233,214,0 +170780385281,214,0 +170780385329,214,0 +170780385377,214,0 +170780385425,214,0 +170780385474,214,0 +170780385522,214,0 +170780385571,214,0 +170780385621,214,0 +170780385669,214,0 +170780385717,213,0 +170780385766,214,0 +170780385814,214,0 +170780385862,214,0 +170780385912,214,0 +170780385960,214,0 +170780386007,214,0 +170780386057,214,0 +170780386107,214,0 +170780386156,214,0 +170780386204,214,0 +170780386252,214,0 +170780386302,214,0 +170780386351,214,0 +170780386399,214,0 +170780386447,214,0 +170780386495,214,0 +170780386542,214,0 +170780386590,213,0 +170780386640,213,0 +170780386688,213,0 +170780386736,214,0 +170780386785,213,0 +170780386835,214,0 +170780386884,214,0 +170780386932,214,0 +170780386982,214,0 +170780387031,214,0 +170780387081,214,0 +170780387129,214,0 +170780387178,214,0 +170780387226,214,0 +170780387274,214,0 +170780387322,215,0 +170780387370,215,0 +170780387418,214,0 +170780387467,213,0 +170780387517,213,0 +170780387565,213,0 +170780387613,214,0 +170780387662,214,0 +170780387712,214,0 +170780387760,214,0 +170780387808,214,0 +170780387856,214,0 +170780387904,214,0 +170780387953,214,0 +170780388003,214,0 +170780388051,214,0 +170780388100,214,0 +170780388150,214,0 +170780388197,214,0 +170780388245,214,0 +170780388295,214,0 +170780388344,213,0 +170780388394,213,0 +170780388443,214,0 +170780388491,213,0 +170780388541,214,0 +170780388590,214,0 +170780388638,214,0 +170780388686,214,0 +170780388736,214,0 +170780388785,214,0 +170780388835,214,0 +170780388884,214,0 +170780388934,214,0 +170780388981,214,0 +170780389029,214,0 +170780389077,214,0 +170780389127,214,0 +170780389175,214,0 +170780389224,213,0 +170780389274,213,0 +170780389322,213,0 +170780389371,213,0 +170780389419,214,0 +170780389467,214,0 +170780389515,214,0 +170780389563,214,0 +170780389613,214,0 +170780389661,214,0 +170780389709,214,0 +170780389756,214,0 +170780389806,214,0 +170780389854,214,0 +170780389904,215,0 +170780389953,214,0 +170780390001,214,0 +170780390049,214,0 +170780390097,214,0 +170780390147,213,0 +170780390194,213,0 +170780390242,213,0 +170780390292,213,0 +170780390341,214,0 +170780390389,214,0 +170780390437,214,0 +170780390487,213,0 +170780390536,214,0 +170780390584,214,0 +170780390632,214,0 +170780390680,214,0 +170780390728,214,0 +170780390776,214,0 +170780390824,214,0 +170780390873,214,0 +170780390921,214,0 +170780390969,214,0 +170780391017,213,0 +170780391065,214,0 +170780391113,213,0 +170780391161,214,0 +170780391209,214,0 +170780391257,214,0 +170780391305,214,0 +170780391353,214,0 +170780391401,214,0 +170780391451,214,0 +170780391499,214,0 +170780391546,214,0 +170780391594,214,0 +170780391644,214,0 +170780391693,214,0 +170780391743,214,0 +170780391791,214,0 +170780391839,214,0 +170780391888,213,0 +170780391936,213,0 +170780391984,214,0 +170780392032,214,0 +170780392080,213,0 +170780392130,214,0 +170780392179,214,0 +170780392227,214,0 +170780392277,214,0 +170780392325,214,0 +170780392374,214,0 +170780392422,214,0 +170780392472,214,0 +170780392520,214,0 +170780392568,214,0 +170780392616,214,0 +170780392665,214,0 +170780392713,214,0 +170780392763,214,0 +170780392812,214,0 +170780392860,214,0 +170780392908,214,0 +170780392956,214,0 +170780393004,214,0 +170780393052,214,0 +170780393100,214,0 +170780393148,214,0 +170780393195,214,0 +170780393243,214,0 +170780393291,214,0 +170780393339,214,0 +170780393388,214,0 +170780393436,214,0 +170780393484,214,0 +170780393533,214,0 +170780393581,214,0 +170780393629,214,0 +170780393678,214,0 +170780393726,214,0 +170780393774,214,0 +170780393822,214,0 +170780393870,214,0 +170780393919,214,0 +170780393967,214,0 +170780394015,215,0 +170780394063,214,0 +170780394111,215,0 +170780394160,215,0 +170780394208,214,0 +170780394257,214,0 +170780394305,214,0 +170780394353,214,0 +170780394401,215,0 +170780394450,214,0 +170780394498,214,0 +170780394546,214,0 +170780394594,214,0 +170780394642,214,0 +170780394690,214,0 +170780394737,214,0 +170780394785,214,0 +170780394833,214,0 +170780394881,214,0 +170780394929,215,0 +170780394978,214,0 +170780395028,215,0 +170780395075,215,0 +170780395123,214,0 +170780395171,215,0 +170780395220,214,0 +170780395268,214,0 +170780395316,214,0 +170780395364,214,0 +170780395411,214,0 +170780395459,214,0 +170780395507,214,0 +170780395557,214,0 +170780395606,214,0 +170780395656,214,0 +170780395705,214,0 +170780395754,214,0 +170780395802,214,0 +170780395852,215,0 +170780395901,214,0 +170780395949,215,0 +170780395999,214,0 +170780396048,214,0 +170780396096,214,0 +170780396146,215,0 +170780396193,214,0 +170780396243,215,0 +170780396291,214,0 +170780396340,213,0 +170780396390,213,0 +170780396438,213,0 +170780396487,214,0 +170780396537,214,0 +170780396585,214,0 +170780396633,214,0 +170780396681,214,0 +170780396728,214,0 +170780396778,214,0 +170780396826,214,0 +170780396874,214,0 +170780396921,214,0 +170780396969,214,0 +170780397017,215,0 +170780397067,214,0 +170780397115,214,0 +170780397163,214,0 +170780397210,213,0 +170780397260,213,0 +170780397308,213,0 +170780397356,213,0 +170780397404,213,0 +170780397453,213,0 +170780397501,213,0 +170780397549,214,0 +170780397596,214,0 +170780397644,214,0 +170780397692,214,0 +170780397740,214,0 +170780397787,214,0 +170780397837,214,0 +170780397885,214,0 +170780397933,214,0 +170780397981,214,0 +170780398028,214,0 +170780398076,213,0 +170780398124,213,0 +170780398172,213,0 +170780398219,214,0 +170780398267,213,0 +170780398315,214,0 +170780398363,214,0 +170780398411,214,0 +170780398460,214,0 +170780398508,214,0 +170780398556,214,0 +170780398604,214,0 +170780398651,214,0 +170780398701,214,0 +170780398750,214,0 +170780398798,214,0 +170780398846,214,0 +170780398894,214,0 +170780398941,214,0 +170780398991,213,0 +170780399039,213,0 +170780399087,214,0 +170780399134,214,0 +170780399182,214,0 +170780399230,214,0 +170780399278,214,0 +170780399326,214,0 +170780399376,214,0 +170780399424,214,0 +170780399471,214,0 +170780399519,214,0 +170780399567,214,0 +170780399617,214,0 +170780399665,214,0 +170780399714,214,0 +170780399764,214,0 +170780399811,214,0 +170780399859,213,0 +170780399909,213,0 +170780399958,213,0 +170780400006,214,0 diff --git a/laser_value/0213-16.csv b/laser_value/0213-16.csv new file mode 100644 index 0000000..84195f7 --- /dev/null +++ b/laser_value/0213-16.csv @@ -0,0 +1,7436 @@ +timestamp,laser_value,event +170780400055,213,0 +170780400104,213,0 +170780400152,214,0 +170780400200,214,0 +170780400249,214,0 +170780400299,214,0 +170780400348,214,0 +170780400398,214,0 +170780400447,214,0 +170780400495,214,0 +170780400543,214,0 +170780400591,214,0 +170780400639,214,0 +170780400687,214,0 +170780400735,213,0 +170780400782,213,0 +170780400830,213,0 +170780400880,213,0 +170780400928,213,0 +170780400976,213,0 +170780401024,213,0 +170780401073,214,0 +170780401123,214,0 +170780401172,214,0 +170780401222,214,0 +170780401270,214,0 +170780401319,214,0 +170780401369,214,0 +170780401416,214,0 +170780401466,214,0 +170780401514,214,0 +170780401562,214,0 +170780401611,213,0 +170780401659,213,0 +170780401707,213,0 +170780401755,213,0 +170780401803,213,0 +170780401851,213,0 +170780401900,213,0 +170780401948,214,0 +170780401998,214,0 +170780402046,214,0 +170780402095,214,0 +170780402145,214,0 +170780402194,214,0 +170780402242,214,0 +170780402290,214,0 +170780402338,214,0 +170780402385,214,0 +170780402433,214,0 +170780402481,213,0 +170780402531,213,0 +170780402580,213,0 +170780402628,213,0 +170780402676,213,0 +170780402724,213,0 +170780402772,213,0 +170780402820,214,0 +170780402869,213,0 +170780402917,214,0 +170780402965,214,0 +170780403013,214,0 +170780403061,214,0 +170780403110,214,0 +170780403158,214,0 +170780403206,214,0 +170780403256,214,0 +170780403304,214,0 +170780403351,215,0 +170780403399,215,0 +170780403448,215,0 +170780403496,215,0 +170780403544,215,0 +170780403594,214,0 +170780403641,215,0 +170780403689,215,0 +170780403737,214,0 +170780403785,214,0 +170780403833,213,0 +170780403881,213,0 +170780403930,213,0 +170780403978,213,0 +170780404028,213,0 +170780404077,213,0 +170780404127,213,0 +170780404176,214,0 +170780404224,214,0 +170780404272,214,0 +170780404320,214,0 +170780404368,214,0 +170780404416,214,0 +170780404464,214,0 +170780404513,214,0 +170780404561,214,0 +170780404609,214,0 +170780404657,214,0 +170780404704,213,0 +170780404752,213,0 +170780404800,213,0 +170780404849,213,0 +170780404897,213,0 +170780404947,213,0 +170780404995,213,0 +170780405042,214,0 +170780405090,214,0 +170780405138,214,0 +170780405186,214,0 +170780405234,214,0 +170780405283,214,0 +170780405331,214,0 +170780405381,214,0 +170780405430,214,0 +170780405480,214,0 +170780405528,214,0 +170780405576,213,0 +170780405624,213,0 +170780405673,213,0 +170780405721,214,0 +170780405769,214,0 +170780405819,213,0 +170780405867,214,0 +170780405914,214,0 +170780405962,214,0 +170780406010,214,0 +170780406058,214,0 +170780406106,214,0 +170780406154,214,0 +170780406204,214,0 +170780406251,214,0 +170780406299,214,0 +170780406347,214,0 +170780406395,214,0 +170780406443,214,0 +170780406491,213,0 +170780406540,213,0 +170780406588,214,0 +170780406638,214,0 +170780406686,214,0 +170780406734,214,0 +170780406781,214,0 +170780406829,214,0 +170780406879,214,0 +170780406927,214,0 +170780406975,214,0 +170780407023,214,0 +170780407072,214,0 +170780407122,214,0 +170780407171,214,0 +170780407221,214,0 +170780407268,214,0 +170780407316,213,0 +170780407364,213,0 +170780407412,213,0 +170780407460,214,0 +170780407508,214,0 +170780407556,214,0 +170780407604,214,0 +170780407652,214,0 +170780407701,214,0 +170780407749,214,0 +170780407798,214,0 +170780407846,214,0 +170780407894,214,0 +170780407942,214,0 +170780407992,214,0 +170780408040,214,0 +170780408088,214,0 +170780408135,214,0 +170780408185,214,0 +170780408234,214,0 +170780408282,213,0 +170780408330,214,0 +170780408378,214,0 +170780408428,214,0 +170780408475,214,0 +170780408523,214,0 +170780408571,214,0 +170780408619,214,0 +170780408668,214,0 +170780408718,214,0 +170780408767,214,0 +170780408815,214,0 +170780408863,214,0 +170780408911,214,0 +170780408959,214,0 +170780409008,214,0 +170780409056,214,0 +170780409104,214,0 +170780409152,214,0 +170780409202,214,0 +170780409249,214,0 +170780409297,214,0 +170780409347,214,0 +170780409395,214,0 +170780409443,214,0 +170780409492,214,0 +170780409540,214,0 +170780409588,214,0 +170780409636,214,0 +170780409684,214,0 +170780409733,214,0 +170780409783,214,0 +170780409832,214,0 +170780409880,214,0 +170780409930,214,0 +170780409979,214,0 +170780410027,214,0 +170780410075,214,0 +170780410123,214,0 +170780410171,214,0 +170780410219,214,0 +170780410267,214,0 +170780410314,214,0 +170780410364,214,0 +170780410412,214,0 +170780410460,214,0 +170780410507,214,0 +170780410555,214,0 +170780410603,215,0 +170780410651,215,0 +170780410699,215,0 +170780410748,214,0 +170780410796,214,0 +170780410846,214,0 +170780410895,214,0 +170780410943,214,0 +170780410991,214,0 +170780411039,214,0 +170780411087,214,0 +170780411137,214,0 +170780411184,214,0 +170780411234,214,0 +170780411282,214,0 +170780411331,214,0 +170780411379,214,0 +170780411427,215,0 +170780411475,215,0 +170780411525,215,0 +170780411572,214,0 +170780411620,214,0 +170780411670,214,0 +170780411719,214,0 +170780411769,213,0 +170780411817,213,0 +170780411864,213,0 +170780411912,214,0 +170780411962,214,0 +170780412010,214,0 +170780412058,214,0 +170780412106,214,0 +170780412154,214,0 +170780412201,214,0 +170780412251,214,0 +170780412299,214,0 +170780412347,214,0 +170780412395,215,0 +170780412443,214,0 +170780412491,214,0 +170780412540,214,0 +170780412590,214,0 +170780412638,214,0 +170780412686,214,0 +170780412734,214,0 +170780412782,214,0 +170780412830,214,0 +170780412878,214,0 +170780412926,214,0 +170780412973,214,0 +170780413023,214,0 +170780413071,214,0 +170780413120,214,0 +170780413168,214,0 +170780413216,215,0 +170780413264,215,0 +170780413312,214,0 +170780413360,214,0 +170780413409,214,0 +170780413457,214,0 +170780413507,214,0 +170780413555,214,0 +170780413604,214,0 +170780413652,214,0 +170780413700,214,0 +170780413748,214,0 +170780413796,214,0 +170780413844,214,0 +170780413891,214,0 +170780413939,214,0 +170780413987,215,0 +170780414036,215,0 +170780414084,214,0 +170780414132,215,0 +170780414180,214,0 +170780414227,214,0 +170780414277,214,0 +170780414325,214,0 +170780414374,214,0 +170780414422,214,0 +170780414470,214,0 +170780414518,214,0 +170780414565,214,0 +170780414613,214,0 +170780414661,214,0 +170780414709,214,0 +170780414756,214,0 +170780414804,214,0 +170780414854,214,0 +170780414901,214,0 +170780414949,214,0 +170780414997,214,0 +170780415045,214,0 +170780415093,214,0 +170780415141,214,0 +170780415188,214,0 +170780415236,214,0 +170780415284,214,0 +170780415332,214,0 +170780415380,214,0 +170780415428,214,0 +170780415477,214,0 +170780415525,214,0 +170780415573,214,0 +170780415621,214,0 +170780415669,214,0 +170780415717,214,0 +170780415765,215,0 +170780415813,214,0 +170780415862,214,0 +170780415910,214,0 +170780415958,215,0 +170780416006,214,0 +170780416054,214,0 +170780416102,214,0 +170780416149,214,0 +170780416199,213,0 +170780416247,213,0 +170780416295,214,0 +170780416342,213,0 +170780416390,214,0 +170780416440,214,0 +170780416487,214,0 +170780416535,214,0 +170780416583,214,0 +170780416631,214,0 +170780416679,214,0 +170780416726,215,0 +170780416774,214,0 +170780416822,214,0 +170780416870,214,0 +170780416918,214,0 +170780416966,214,0 +170780417014,213,0 +170780417063,213,0 +170780417111,213,0 +170780417159,213,0 +170780417207,213,0 +170780417256,214,0 +170780417304,214,0 +170780417354,214,0 +170780417402,214,0 +170780417449,214,0 +170780417497,214,0 +170780417545,214,0 +170780417593,214,0 +170780417641,214,0 +170780417691,214,0 +170780417740,214,0 +170780417788,214,0 +170780417838,214,0 +170780417887,213,0 +170780417935,213,0 +170780417983,213,0 +170780418031,213,0 +170780418078,214,0 +170780418126,214,0 +170780418176,214,0 +170780418224,214,0 +170780418271,214,0 +170780418319,214,0 +170780418369,214,0 +170780418416,214,0 +170780418464,214,0 +170780418512,214,0 +170780418560,214,0 +170780418608,214,0 +170780418656,214,0 +170780418704,214,0 +170780418751,214,0 +170780418799,213,0 +170780418847,213,0 +170780418895,214,0 +170780418943,213,0 +170780418991,214,0 +170780419040,213,0 +170780419090,214,0 +170780419139,214,0 +170780419187,214,0 +170780419235,214,0 +170780419283,214,0 +170780419331,214,0 +170780419379,214,0 +170780419428,214,0 +170780419478,214,0 +170780419526,214,0 +170780419574,214,0 +170780419622,213,0 +170780419670,213,0 +170780419718,213,0 +170780419766,213,0 +170780419813,213,0 +170780419863,214,0 +170780419911,214,0 +170780419960,214,0 +170780420010,214,0 +170780420058,214,0 +170780420107,214,0 +170780420155,214,0 +170780420203,214,0 +170780420251,215,0 +170780420301,214,0 +170780420349,214,0 +170780420396,214,0 +170780420446,214,0 +170780420495,214,0 +170780420543,213,0 +170780420591,213,0 +170780420641,213,0 +170780420688,214,0 +170780420736,214,0 +170780420784,214,0 +170780420832,214,0 +170780420880,214,0 +170780420928,214,0 +170780420977,214,0 +170780421025,214,0 +170780421073,214,0 +170780421120,214,0 +170780421168,214,0 +170780421216,214,0 +170780421264,214,0 +170780421313,214,0 +170780421361,214,0 +170780421409,213,0 +170780421457,213,0 +170780421505,214,0 +170780421552,214,0 +170780421600,214,0 +170780421648,214,0 +170780421696,214,0 +170780421744,214,0 +170780421792,214,0 +170780421840,214,0 +170780421889,214,0 +170780421937,214,0 +170780421985,214,0 +170780422033,214,0 +170780422083,214,0 +170780422130,214,0 +170780422180,214,0 +170780422229,214,0 +170780422277,214,0 +170780422327,214,0 +170780422375,214,0 +170780422423,214,0 +170780422472,214,0 +170780422522,214,0 +170780422569,214,0 +170780422617,214,0 +170780422667,214,0 +170780422716,214,0 +170780422766,214,0 +170780422814,214,0 +170780422863,214,0 +170780422913,214,0 +170780422962,214,0 +170780423010,214,0 +170780423060,214,0 +170780423108,214,0 +170780423156,213,0 +170780423204,213,0 +170780423251,214,0 +170780423299,214,0 +170780423347,214,0 +170780423397,214,0 +170780423445,214,0 +170780423494,214,0 +170780423544,214,0 +170780423592,214,0 +170780423639,214,0 +170780423689,214,0 +170780423737,215,0 +170780423786,214,0 +170780423836,214,0 +170780423883,214,0 +170780423931,214,0 +170780423981,213,0 +170780424030,214,0 +170780424080,214,0 +170780424128,213,0 +170780424176,214,0 +170780424224,214,0 +170780424272,214,0 +170780424321,214,0 +170780424369,214,0 +170780424417,214,0 +170780424466,214,0 +170780424514,214,0 +170780424562,214,0 +170780424610,214,0 +170780424658,214,0 +170780424706,214,0 +170780424755,214,0 +170780424803,214,0 +170780424851,214,0 +170780424901,213,0 +170780424949,214,0 +170780424998,214,0 +170780425048,214,0 +170780425097,214,0 +170780425146,214,0 +170780425194,214,0 +170780425242,214,0 +170780425290,214,0 +170780425338,214,0 +170780425386,214,0 +170780425434,214,0 +170780425482,214,0 +170780425530,214,0 +170780425579,214,0 +170780425629,214,0 +170780425677,214,0 +170780425725,213,0 +170780425774,213,0 +170780425822,213,0 +170780425872,213,0 +170780425920,214,0 +170780425968,214,0 +170780426015,214,0 +170780426065,214,0 +170780426113,214,0 +170780426161,214,0 +170780426210,214,0 +170780426260,214,0 +170780426309,214,0 +170780426359,214,0 +170780426407,214,0 +170780426456,214,0 +170780426506,214,0 +170780426554,214,0 +170780426603,213,0 +170780426653,213,0 +170780426701,213,0 +170780426750,213,0 +170780426800,213,0 +170780426847,213,0 +170780426897,213,0 +170780426945,214,0 +170780426994,214,0 +170780427042,214,0 +170780427090,214,0 +170780427140,214,0 +170780427188,214,0 +170780427237,214,0 +170780427287,214,0 +170780427335,214,0 +170780427383,214,0 +170780427432,214,0 +170780427480,213,0 +170780427528,213,0 +170780427576,213,0 +170780427624,213,0 +170780427674,213,0 +170780427723,214,0 +170780427773,213,0 +170780427822,214,0 +170780427872,214,0 +170780427919,214,0 +170780427967,214,0 +170780428015,214,0 +170780428065,214,0 +170780428114,214,0 +170780428164,214,0 +170780428212,214,0 +170780428261,214,0 +170780428311,214,0 +170780428359,213,0 +170780428407,213,0 +170780428456,213,0 +170780428504,214,0 +170780428552,214,0 +170780428600,213,0 +170780428649,214,0 +170780428697,214,0 +170780428747,214,0 +170780428796,214,0 +170780428844,214,0 +170780428894,214,0 +170780428942,214,0 +170780428991,214,0 +170780429041,214,0 +170780429089,214,0 +170780429137,214,0 +170780429186,214,0 +170780429234,213,0 +170780429282,213,0 +170780429330,213,0 +170780429378,213,0 +170780429426,214,0 +170780429475,213,0 +170780429525,213,0 +170780429574,214,0 +170780429622,214,0 +170780429670,214,0 +170780429718,214,0 +170780429767,214,0 +170780429817,214,0 +170780429865,214,0 +170780429914,214,0 +170780429964,214,0 +170780430012,214,0 +170780430059,214,0 +170780430107,213,0 +170780430157,213,0 +170780430206,214,0 +170780430256,214,0 +170780430304,214,0 +170780430351,214,0 +170780430399,214,0 +170780430447,214,0 +170780430495,214,0 +170780430544,214,0 +170780430592,214,0 +170780430642,214,0 +170780430691,214,0 +170780430739,214,0 +170780430787,214,0 +170780430837,214,0 +170780430886,214,0 +170780430934,214,0 +170780430984,213,0 +170780431033,214,0 +170780431081,213,0 +170780431131,214,0 +170780431179,214,0 +170780431228,214,0 +170780431276,214,0 +170780431324,214,0 +170780431372,214,0 +170780431421,214,0 +170780431469,214,0 +170780431517,214,0 +170780431565,214,0 +170780431613,215,0 +170780431661,215,0 +170780431708,214,0 +170780431756,214,0 +170780431804,214,0 +170780431854,214,0 +170780431903,214,0 +170780431953,214,0 +170780432001,214,0 +170780432050,214,0 +170780432100,214,0 +170780432149,214,0 +170780432197,214,0 +170780432247,215,0 +170780432296,214,0 +170780432344,215,0 +170780432393,215,0 +170780432441,214,0 +170780432489,215,0 +170780432539,215,0 +170780432587,215,0 +170780432635,214,0 +170780432683,214,0 +170780432730,214,0 +170780432778,215,0 +170780432826,215,0 +170780432874,214,0 +170780432921,215,0 +170780432969,215,0 +170780433017,215,0 +170780433067,215,0 +170780433116,215,0 +170780433166,215,0 +170780433215,215,0 +170780433263,215,0 +170780433311,215,0 +170780433361,215,0 +170780433410,215,0 +170780433458,214,0 +170780433506,214,0 +170780433554,214,0 +170780433603,214,0 +170780433653,214,0 +170780433702,214,0 +170780433750,214,0 +170780433800,214,0 +170780433848,214,0 +170780433897,214,0 +170780433945,214,0 +170780433993,215,0 +170780434041,215,0 +170780434091,214,0 +170780434139,214,0 +170780434187,215,0 +170780434235,215,0 +170780434282,214,0 +170780434332,214,0 +170780434380,214,0 +170780434429,213,0 +170780434479,214,0 +170780434529,214,0 +170780434576,214,0 +170780434624,214,0 +170780434672,214,0 +170780434720,214,0 +170780434768,214,0 +170780434818,214,0 +170780434867,214,0 +170780434915,214,0 +170780434965,214,0 +170780435013,214,0 +170780435060,214,0 +170780435110,214,0 +170780435158,214,0 +170780435207,214,0 +170780435255,214,0 +170780435305,213,0 +170780435353,214,0 +170780435401,214,0 +170780435449,213,0 +170780435498,214,0 +170780435546,214,0 +170780435594,214,0 +170780435642,214,0 +170780435690,214,0 +170780435738,214,0 +170780435787,214,0 +170780435835,214,0 +170780435883,214,0 +170780435932,214,0 +170780435982,214,0 +170780436030,214,0 +170780436078,214,0 +170780436126,214,0 +170780436175,213,0 +170780436223,213,0 +170780436272,214,0 +170780436320,214,0 +170780436368,214,0 +170780436416,214,0 +170780436466,214,0 +170780436514,214,0 +170780436562,214,0 +170780436610,214,0 +170780436659,214,0 +170780436709,214,0 +170780436757,215,0 +170780436805,215,0 +170780436852,214,0 +170780436900,214,0 +170780436950,214,0 +170780436998,214,0 +170780437047,214,0 +170780437095,214,0 +170780437145,214,0 +170780437193,214,0 +170780437241,214,0 +170780437290,214,0 +170780437338,214,0 +170780437386,214,0 +170780437436,214,0 +170780437483,214,0 +170780437531,214,0 +170780437579,214,0 +170780437627,214,0 +170780437677,214,0 +170780437726,214,0 +170780437776,214,0 +170780437824,214,0 +170780437872,214,0 +170780437920,214,0 +170780437968,214,0 +170780438017,214,0 +170780438065,214,0 +170780438114,214,0 +170780438162,214,0 +170780438212,214,0 +170780438261,214,0 +170780438309,214,0 +170780438357,214,0 +170780438405,214,0 +170780438453,215,0 +170780438501,215,0 +170780438549,214,0 +170780438599,214,0 +170780438646,214,0 +170780438694,214,0 +170780438744,214,0 +170780438793,214,0 +170780438843,214,0 +170780438891,214,0 +170780438939,214,0 +170780438986,214,0 +170780439034,214,0 +170780439082,214,0 +170780439130,214,0 +170780439178,214,0 +170780439228,215,0 +170780439277,215,0 +170780439325,215,0 +170780439375,215,0 +170780439424,215,0 +170780439472,215,0 +170780439520,215,0 +170780439570,214,0 +170780439617,214,0 +170780439667,214,0 +170780439715,214,0 +170780439763,214,0 +170780439812,214,0 +170780439860,214,0 +170780439908,214,0 +170780439956,214,0 +170780440004,214,0 +170780440053,214,0 +170780440101,214,0 +170780440149,214,0 +170780440199,214,0 +170780440247,215,0 +170780440296,215,0 +170780440344,214,0 +170780440392,214,0 +170780440440,214,0 +170780440489,214,0 +170780440537,214,0 +170780440587,213,0 +170780440635,214,0 +170780440683,214,0 +170780440730,214,0 +170780440780,214,0 +170780440830,214,0 +170780440877,214,0 +170780440925,214,0 +170780440973,214,0 +170780441021,214,0 +170780441071,214,0 +170780441118,214,0 +170780441166,214,0 +170780441214,214,0 +170780441262,214,0 +170780441310,214,0 +170780441359,213,0 +170780441409,214,0 +170780441457,214,0 +170780441505,214,0 +170780441553,213,0 +170780441601,214,0 +170780441648,214,0 +170780441696,214,0 +170780441744,214,0 +170780441794,214,0 +170780441843,214,0 +170780441891,214,0 +170780441939,215,0 +170780441987,214,0 +170780442035,214,0 +170780442084,215,0 +170780442134,214,0 +170780442182,214,0 +170780442231,213,0 +170780442279,213,0 +170780442329,213,0 +170780442377,214,0 +170780442426,214,0 +170780442476,214,0 +170780442525,214,0 +170780442573,214,0 +170780442621,214,0 +170780442671,214,0 +170780442719,214,0 +170780442767,214,0 +170780442814,214,0 +170780442862,214,0 +170780442912,214,0 +170780442961,214,0 +170780443011,214,0 +170780443059,214,0 +170780443107,214,0 +170780443156,214,0 +170780443204,214,0 +170780443252,214,0 +170780443302,214,0 +170780443349,214,0 +170780443397,214,0 +170780443445,214,0 +170780443493,214,0 +170780443541,214,0 +170780443591,215,0 +170780443640,215,0 +170780443688,214,0 +170780443737,214,0 +170780443785,215,0 +170780443834,215,0 +170780443882,214,0 +170780443930,214,0 +170780443980,214,0 +170780444028,214,0 +170780444076,214,0 +170780444124,214,0 +170780444173,214,0 +170780444221,214,0 +170780444271,214,0 +170780444320,214,0 +170780444369,214,0 +170780444419,214,0 +170780444467,214,0 +170780444516,215,0 +170780444564,215,0 +170780444612,215,0 +170780444660,215,0 +170780444708,214,0 +170780444756,214,0 +170780444804,213,0 +170780444854,213,0 +170780444903,213,0 +170780444953,214,0 +170780445000,214,0 +170780445048,214,0 +170780445096,214,0 +170780445146,214,0 +170780445194,214,0 +170780445244,214,0 +170780445292,214,0 +170780445340,215,0 +170780445388,215,0 +170780445436,215,0 +170780445485,215,0 +170780445533,215,0 +170780445581,214,0 +170780445631,214,0 +170780445680,214,0 +170780445728,213,0 +170780445778,214,0 +170780445826,214,0 +170780445874,214,0 +170780445923,214,0 +170780445973,214,0 +170780446022,214,0 +170780446070,214,0 +170780446120,214,0 +170780446169,214,0 +170780446217,215,0 +170780446266,214,0 +170780446316,214,0 +170780446364,215,0 +170780446413,214,0 +170780446461,214,0 +170780446509,214,0 +170780446557,213,0 +170780446605,214,0 +170780446653,214,0 +170780446701,214,0 +170780446749,214,0 +170780446797,214,0 +170780446846,214,0 +170780446894,214,0 +170780446944,214,0 +170780446992,214,0 +170780447040,214,0 +170780447088,214,0 +170780447135,214,0 +170780447185,214,0 +170780447233,214,0 +170780447281,214,0 +170780447329,213,0 +170780447377,213,0 +170780447426,214,0 +170780447474,214,0 +170780447522,214,0 +170780447570,214,0 +170780447618,214,0 +170780447668,214,0 +170780447716,214,0 +170780447763,214,0 +170780447812,214,0 +170780447859,214,0 +170780447907,214,0 +170780447957,214,0 +170780448005,214,0 +170780448054,215,0 +170780448102,214,0 +170780448152,214,0 +170780448200,214,0 +170780448248,214,0 +170780448295,213,0 +170780448345,214,0 +170780448395,214,0 +170780448442,214,0 +170780448492,214,0 +170780448541,214,0 +170780448589,214,0 +170780448637,214,0 +170780448685,214,0 +170780448733,214,0 +170780448783,214,0 +170780448831,214,0 +170780448878,214,0 +170780448928,214,0 +170780448976,214,0 +170780449025,214,0 +170780449073,214,0 +170780449123,214,0 +170780449172,214,0 +170780449220,214,0 +170780449270,214,0 +170780449318,214,0 +170780449366,214,0 +170780449415,215,0 +170780449463,214,0 +170780449511,214,0 +170780449559,215,0 +170780449607,214,0 +170780449655,214,0 +170780449704,215,0 +170780449752,215,0 +170780449802,214,0 +170780449851,214,0 +170780449899,214,0 +170780449947,214,0 +170780449995,214,0 +170780450043,214,0 +170780450092,214,0 +170780450140,214,0 +170780450188,214,0 +170780450237,214,0 +170780450285,214,0 +170780450333,215,0 +170780450381,215,0 +170780450430,214,0 +170780450478,214,0 +170780450526,215,0 +170780450574,215,0 +170780450623,215,0 +170780450673,214,0 +170780450722,214,0 +170780450770,214,0 +170780450820,214,0 +170780450867,214,0 +170780450917,214,0 +170780450965,214,0 +170780451014,214,0 +170780451064,214,0 +170780451112,214,0 +170780451160,214,0 +170780451208,215,0 +170780451256,215,0 +170780451304,215,0 +170780451352,215,0 +170780451399,214,0 +170780451449,214,0 +170780451497,214,0 +170780451545,214,0 +170780451594,214,0 +170780451642,214,0 +170780451692,214,0 +170780451741,214,0 +170780451789,214,0 +170780451837,214,0 +170780451885,214,0 +170780451933,214,0 +170780451983,214,0 +170780452031,214,0 +170780452079,214,0 +170780452128,214,0 +170780452176,215,0 +170780452226,215,0 +170780452274,214,0 +170780452322,214,0 +170780452370,214,0 +170780452418,214,0 +170780452467,214,0 +170780452517,214,0 +170780452564,214,0 +170780452612,214,0 +170780452660,214,0 +170780452708,214,0 +170780452756,214,0 +170780452804,214,0 +170780452852,214,0 +170780452901,215,0 +170780452949,214,0 +170780452997,214,0 +170780453046,215,0 +170780453094,215,0 +170780453144,214,0 +170780453191,214,0 +170780453239,214,0 +170780453287,214,0 +170780453335,214,0 +170780453383,214,0 +170780453431,214,0 +170780453479,214,0 +170780453528,214,0 +170780453576,214,0 +170780453624,214,0 +170780453672,214,0 +170780453720,215,0 +170780453768,215,0 +170780453816,214,0 +170780453864,215,0 +170780453912,214,0 +170780453959,214,0 +170780454007,214,0 +170780454055,214,0 +170780454103,214,0 +170780454153,214,0 +170780454201,214,0 +170780454248,214,0 +170780454296,214,0 +170780454344,214,0 +170780454392,214,0 +170780454440,214,0 +170780454489,214,0 +170780454537,214,0 +170780454587,214,0 +170780454635,215,0 +170780454682,214,0 +170780454730,215,0 +170780454780,214,0 +170780454828,214,0 +170780454875,215,0 +170780454923,214,0 +170780454971,214,0 +170780455021,214,0 +170780455068,214,0 +170780455116,214,0 +170780455164,214,0 +170780455212,214,0 +170780455261,214,0 +170780455309,214,0 +170780455357,215,0 +170780455405,215,0 +170780455455,215,0 +170780455502,214,0 +170780455550,214,0 +170780455600,215,0 +170780455648,214,0 +170780455696,214,0 +170780455745,214,0 +170780455793,214,0 +170780455843,214,0 +170780455892,214,0 +170780455940,214,0 +170780455989,214,0 +170780456037,214,0 +170780456085,214,0 +170780456133,214,0 +170780456182,215,0 +170780456232,214,0 +170780456279,214,0 +170780456327,215,0 +170780456375,215,0 +170780456423,215,0 +170780456472,215,0 +170780456520,215,0 +170780456568,214,0 +170780456617,214,0 +170780456665,213,0 +170780456714,214,0 +170780456762,214,0 +170780456812,214,0 +170780456861,214,0 +170780456909,214,0 +170780456957,214,0 +170780457005,214,0 +170780457053,214,0 +170780457101,214,0 +170780457150,214,0 +170780457198,214,0 +170780457246,215,0 +170780457294,215,0 +170780457342,214,0 +170780457389,214,0 +170780457437,214,0 +170780457487,214,0 +170780457534,213,0 +170780457582,214,0 +170780457632,214,0 +170780457680,214,0 +170780457727,214,0 +170780457777,214,0 +170780457825,214,0 +170780457874,214,0 +170780457922,214,0 +170780457970,214,0 +170780458018,214,0 +170780458065,214,0 +170780458115,214,0 +170780458163,215,0 +170780458211,214,0 +170780458260,214,0 +170780458308,214,0 +170780458355,213,0 +170780458403,213,0 +170780458451,213,0 +170780458499,213,0 +170780458547,214,0 +170780458595,214,0 +170780458644,214,0 +170780458693,214,0 +170780458741,214,0 +170780458789,214,0 +170780458837,214,0 +170780458885,215,0 +170780458934,214,0 +170780458982,214,0 +170780459030,214,0 +170780459078,214,0 +170780459126,214,0 +170780459175,213,0 +170780459223,213,0 +170780459271,213,0 +170780459319,214,0 +170780459368,213,0 +170780459416,214,0 +170780459464,214,0 +170780459512,214,0 +170780459560,214,0 +170780459609,214,0 +170780459657,214,0 +170780459705,214,0 +170780459753,214,0 +170780459801,214,0 +170780459849,214,0 +170780459896,214,0 +170780459944,214,0 +170780459992,214,0 +170780460040,213,0 +170780460088,213,0 +170780460136,214,0 +170780460183,214,0 +170780460231,214,0 +170780460279,214,0 +170780460327,214,0 +170780460375,214,0 +170780460423,214,0 +170780460471,214,0 +170780460518,214,0 +170780460566,214,0 +170780460614,214,0 +170780460663,215,0 +170780460711,214,0 +170780460759,214,0 +170780460807,214,0 +170780460855,214,0 +170780460902,213,0 +170780460952,213,0 +170780461000,213,0 +170780461048,214,0 +170780461095,213,0 +170780461143,214,0 +170780461191,214,0 +170780461239,214,0 +170780461287,214,0 +170780461334,214,0 +170780461382,214,0 +170780461430,214,0 +170780461478,214,0 +170780461527,214,0 +170780461575,214,0 +170780461623,214,0 +170780461671,214,0 +170780461719,213,0 +170780461767,213,0 +170780461814,213,0 +170780461862,213,0 +170780461910,214,0 +170780461958,213,0 +170780462007,214,0 +170780462055,214,0 +170780462103,214,0 +170780462151,214,0 +170780462199,214,0 +170780462247,214,0 +170780462296,214,0 +170780462345,214,0 +170780462393,214,0 +170780462441,215,0 +170780462489,215,0 +170780462537,213,0 +170780462584,213,0 +170780462632,214,0 +170780462680,214,0 +170780462728,214,0 +170780462777,214,0 +170780462827,214,0 +170780462876,214,0 +170780462926,214,0 +170780462974,214,0 +170780463022,214,0 +170780463070,214,0 +170780463119,214,0 +170780463167,214,0 +170780463217,214,0 +170780463266,214,0 +170780463316,214,0 +170780463364,214,0 +170780463413,213,0 +170780463463,213,0 +170780463511,214,0 +170780463560,214,0 +170780463608,213,0 +170780463657,214,0 +170780463707,214,0 +170780463756,214,0 +170780463804,214,0 +170780463852,214,0 +170780463900,214,0 +170780463948,214,0 +170780463996,214,0 +170780464044,214,0 +170780464092,214,0 +170780464140,214,0 +170780464189,214,0 +170780464239,213,0 +170780464288,213,0 +170780464336,213,0 +170780464386,214,0 +170780464434,213,0 +170780464483,214,0 +170780464531,214,0 +170780464579,214,0 +170780464628,214,0 +170780464676,214,0 +170780464726,214,0 +170780464774,214,0 +170780464822,214,0 +170780464870,214,0 +170780464919,214,0 +170780464967,214,0 +170780465015,214,0 +170780465065,214,0 +170780465113,214,0 +170780465162,214,0 +170780465210,214,0 +170780465259,214,0 +170780465309,214,0 +170780465358,214,0 +170780465406,215,0 +170780465454,215,0 +170780465504,214,0 +170780465552,214,0 +170780465601,215,0 +170780465651,215,0 +170780465699,215,0 +170780465747,215,0 +170780465797,215,0 +170780465844,215,0 +170780465894,214,0 +170780465942,215,0 +170780465991,214,0 +170780466039,214,0 +170780466087,214,0 +170780466135,215,0 +170780466185,214,0 +170780466234,215,0 +170780466284,215,0 +170780466332,215,0 +170780466380,215,0 +170780466429,215,0 +170780466479,215,0 +170780466528,215,0 +170780466576,215,0 +170780466626,215,0 +170780466673,215,0 +170780466723,215,0 +170780466772,215,0 +170780466820,215,0 +170780466868,214,0 +170780466918,215,0 +170780466967,215,0 +170780467017,215,0 +170780467065,215,0 +170780467113,215,0 +170780467162,215,0 +170780467212,215,0 +170780467260,215,0 +170780467309,215,0 +170780467357,215,0 +170780467407,214,0 +170780467455,215,0 +170780467503,214,0 +170780467550,214,0 +170780467600,214,0 +170780467648,214,0 +170780467696,214,0 +170780467744,214,0 +170780467793,214,0 +170780467841,214,0 +170780467891,214,0 +170780467939,214,0 +170780467988,215,0 +170780468036,215,0 +170780468084,214,0 +170780468132,215,0 +170780468180,214,0 +170780468228,214,0 +170780468277,215,0 +170780468325,214,0 +170780468373,214,0 +170780468421,214,0 +170780468469,214,0 +170780468519,214,0 +170780468568,214,0 +170780468616,214,0 +170780468664,214,0 +170780468712,214,0 +170780468760,214,0 +170780468808,214,0 +170780468856,214,0 +170780468904,214,0 +170780468953,214,0 +170780469001,214,0 +170780469049,214,0 +170780469097,214,0 +170780469145,214,0 +170780469192,214,0 +170780469240,214,0 +170780469288,214,0 +170780469336,214,0 +170780469384,214,0 +170780469432,214,0 +170780469480,214,0 +170780469528,214,0 +170780469575,214,0 +170780469623,214,0 +170780469671,214,0 +170780469719,214,0 +170780469767,214,0 +170780469815,214,0 +170780469862,215,0 +170780469912,215,0 +170780469960,214,0 +170780470008,214,0 +170780470056,214,0 +170780470104,214,0 +170780470152,214,0 +170780470199,214,0 +170780470247,213,0 +170780470295,214,0 +170780470343,214,0 +170780470391,214,0 +170780470439,214,0 +170780470489,214,0 +170780470538,214,0 +170780470588,214,0 +170780470635,214,0 +170780470683,215,0 +170780470731,214,0 +170780470779,214,0 +170780470827,214,0 +170780470875,214,0 +170780470923,214,0 +170780470971,213,0 +170780471020,213,0 +170780471068,213,0 +170780471118,214,0 +170780471167,214,0 +170780471215,214,0 +170780471263,214,0 +170780471311,214,0 +170780471361,214,0 +170780471409,214,0 +170780471457,214,0 +170780471504,214,0 +170780471552,215,0 +170780471602,214,0 +170780471651,214,0 +170780471699,214,0 +170780471747,214,0 +170780471795,213,0 +170780471843,213,0 +170780471891,213,0 +170780471940,213,0 +170780471988,214,0 +170780472038,214,0 +170780472085,214,0 +170780472135,214,0 +170780472183,214,0 +170780472231,214,0 +170780472279,214,0 +170780472326,215,0 +170780472374,214,0 +170780472424,214,0 +170780472472,214,0 +170780472520,214,0 +170780472567,214,0 +170780472615,214,0 +170780472663,213,0 +170780472711,213,0 +170780472761,213,0 +170780472809,213,0 +170780472858,213,0 +170780472908,213,0 +170780472957,214,0 +170780473007,214,0 +170780473055,214,0 +170780473104,214,0 +170780473152,214,0 +170780473201,214,0 +170780473251,214,0 +170780473301,214,0 +170780473348,214,0 +170780473396,214,0 +170780473444,213,0 +170780473494,213,0 +170780473543,213,0 +170780473593,214,0 +170780473641,214,0 +170780473690,214,0 +170780473738,214,0 +170780473786,214,0 +170780473834,214,0 +170780473884,214,0 +170780473932,214,0 +170780473980,214,0 +170780474028,214,0 +170780474076,214,0 +170780474124,214,0 +170780474173,214,0 +170780474223,214,0 +170780474272,213,0 +170780474322,213,0 +170780474369,214,0 +170780474417,214,0 +170780474465,214,0 +170780474513,214,0 +170780474561,214,0 +170780474611,214,0 +170780474659,214,0 +170780474708,214,0 +170780474756,214,0 +170780474804,214,0 +170780474854,214,0 +170780474903,214,0 +170780474951,214,0 +170780474999,214,0 +170780475047,214,0 +170780475096,214,0 +170780475144,213,0 +170780475192,213,0 +170780475242,214,0 +170780475290,214,0 +170780475338,214,0 +170780475386,214,0 +170780475435,214,0 +170780475483,214,0 +170780475531,214,0 +170780475580,214,0 +170780475628,214,0 +170780475676,214,0 +170780475724,214,0 +170780475772,214,0 +170780475822,214,0 +170780475871,214,0 +170780475921,214,0 +170780475969,213,0 +170780476017,213,0 +170780476065,213,0 +170780476114,214,0 +170780476164,214,0 +170780476211,214,0 +170780476259,214,0 +170780476307,214,0 +170780476355,214,0 +170780476403,214,0 +170780476451,214,0 +170780476501,214,0 +170780476550,214,0 +170780476598,214,0 +170780476646,214,0 +170780476696,214,0 +170780476745,214,0 +170780476795,213,0 +170780476844,214,0 +170780476892,214,0 +170780476942,213,0 +170780476991,214,0 +170780477041,214,0 +170780477089,214,0 +170780477137,214,0 +170780477185,214,0 +170780477233,214,0 +170780477281,214,0 +170780477330,214,0 +170780477378,214,0 +170780477426,214,0 +170780477474,214,0 +170780477523,214,0 +170780477571,214,0 +170780477619,214,0 +170780477667,214,0 +170780477715,213,0 +170780477763,214,0 +170780477811,214,0 +170780477861,214,0 +170780477909,214,0 +170780477956,214,0 +170780478004,214,0 +170780478054,214,0 +170780478102,214,0 +170780478151,214,0 +170780478199,214,0 +170780478249,214,0 +170780478298,214,0 +170780478346,214,0 +170780478394,214,0 +170780478443,213,0 +170780478491,214,0 +170780478539,214,0 +170780478587,214,0 +170780478635,214,0 +170780478685,214,0 +170780478733,214,0 +170780478781,214,0 +170780478829,214,0 +170780478878,214,0 +170780478926,214,0 +170780478975,214,0 +170780479023,214,0 +170780479073,214,0 +170780479121,214,0 +170780479169,214,0 +170780479217,214,0 +170780479266,213,0 +170780479316,214,0 +170780479363,213,0 +170780479411,214,0 +170780479459,214,0 +170780479509,214,0 +170780479557,214,0 +170780479606,214,0 +170780479654,214,0 +170780479702,214,0 +170780479752,214,0 +170780479799,214,0 +170780479847,214,0 +170780479897,214,0 +170780479945,214,0 +170780479994,214,0 +170780480042,214,0 +170780480092,214,0 +170780480140,214,0 +170780480189,214,0 +170780480237,214,0 +170780480285,214,0 +170780480333,214,0 +170780480381,214,0 +170780480429,214,0 +170780480478,214,0 +170780480528,215,0 +170780480578,214,0 +170780480626,214,0 +170780480673,214,0 +170780480722,214,0 +170780480771,214,0 +170780480820,214,0 +170780480868,214,0 +170780480918,214,0 +170780480968,214,0 +170780481017,214,0 +170780481066,214,0 +170780481114,214,0 +170780481162,214,0 +170780481210,214,0 +170780481258,214,0 +170780481306,214,0 +170780481354,215,0 +170780481401,215,0 +170780481449,215,0 +170780481499,214,0 +170780481547,214,0 +170780481595,214,0 +170780481643,214,0 +170780481690,214,0 +170780481740,214,0 +170780481790,214,0 +170780481837,214,0 +170780481887,214,0 +170780481936,214,0 +170780481986,214,0 +170780482034,214,0 +170780482082,214,0 +170780482131,214,0 +170780482181,214,0 +170780482229,214,0 +170780482277,214,0 +170780482326,214,0 +170780482376,214,0 +170780482424,214,0 +170780482472,214,0 +170780482520,214,0 +170780482568,213,0 +170780482616,214,0 +170780482664,214,0 +170780482712,214,0 +170780482760,214,0 +170780482808,214,0 +170780482855,214,0 +170780482903,214,0 +170780482953,214,0 +170780483001,214,0 +170780483050,215,0 +170780483098,214,0 +170780483146,214,0 +170780483194,214,0 +170780483244,214,0 +170780483292,214,0 +170780483340,214,0 +170780483388,213,0 +170780483435,214,0 +170780483485,214,0 +170780483533,214,0 +170780483581,214,0 +170780483629,214,0 +170780483678,214,0 +170780483726,214,0 +170780483774,214,0 +170780483822,214,0 +170780483870,214,0 +170780483919,214,0 +170780483967,214,0 +170780484015,215,0 +170780484063,214,0 +170780484111,214,0 +170780484159,214,0 +170780484206,213,0 +170780484254,213,0 +170780484304,214,0 +170780484352,214,0 +170780484399,214,0 +170780484447,214,0 +170780484497,214,0 +170780484545,214,0 +170780484593,214,0 +170780484642,214,0 +170780484690,214,0 +170780484738,214,0 +170780484788,214,0 +170780484836,214,0 +170780484884,214,0 +170780484932,214,0 +170780484981,213,0 +170780485029,213,0 +170780485078,213,0 +170780485128,214,0 +170780485176,213,0 +170780485225,214,0 +170780485275,214,0 +170780485323,214,0 +170780485371,214,0 +170780485419,214,0 +170780485468,214,0 +170780485518,214,0 +170780485566,214,0 +170780485615,214,0 +170780485663,214,0 +170780485713,214,0 +170780485760,214,0 +170780485808,213,0 +170780485858,213,0 +170780485906,213,0 +170780485954,213,0 +170780486003,213,0 +170780486051,214,0 +170780486101,214,0 +170780486148,214,0 +170780486196,214,0 +170780486244,214,0 +170780486294,214,0 +170780486341,214,0 +170780486391,214,0 +170780486439,214,0 +170780486488,214,0 +170780486536,214,0 +170780486586,214,0 +170780486633,213,0 +170780486681,213,0 +170780486729,213,0 +170780486777,213,0 +170780486825,213,0 +170780486875,213,0 +170780486924,213,0 +170780486972,214,0 +170780487022,214,0 +170780487071,214,0 +170780487119,214,0 +170780487169,214,0 +170780487216,214,0 +170780487264,214,0 +170780487314,214,0 +170780487362,214,0 +170780487410,214,0 +170780487457,214,0 +170780487507,213,0 +170780487555,213,0 +170780487603,214,0 +170780487651,214,0 +170780487699,214,0 +170780487746,214,0 +170780487796,214,0 +170780487844,214,0 +170780487893,214,0 +170780487941,214,0 +170780487989,214,0 +170780488037,214,0 +170780488085,214,0 +170780488133,214,0 +170780488182,214,0 +170780488232,214,0 +170780488280,214,0 +170780488328,213,0 +170780488377,213,0 +170780488425,214,0 +170780488475,214,0 +170780488523,214,0 +170780488571,214,0 +170780488619,214,0 +170780488668,214,0 +170780488716,214,0 +170780488764,214,0 +170780488812,214,0 +170780488862,214,0 +170780488911,214,0 +170780488959,214,0 +170780489009,214,0 +170780489058,214,0 +170780489108,214,0 +170780489156,214,0 +170780489205,214,0 +170780489255,214,0 +170780489304,214,0 +170780489352,214,0 +170780489400,214,0 +170780489448,214,0 +170780489496,215,0 +170780489544,214,0 +170780489592,214,0 +170780489639,214,0 +170780489687,214,0 +170780489735,215,0 +170780489783,214,0 +170780489832,214,0 +170780489880,214,0 +170780489928,214,0 +170780489976,214,0 +170780490024,214,0 +170780490073,214,0 +170780490121,214,0 +170780490169,214,0 +170780490218,214,0 +170780490266,214,0 +170780490314,214,0 +170780490362,214,0 +170780490410,214,0 +170780490457,214,0 +170780490505,215,0 +170780490553,215,0 +170780490601,215,0 +170780490649,214,0 +170780490697,214,0 +170780490744,214,0 +170780490792,214,0 +170780490842,214,0 +170780490890,214,0 +170780490938,214,0 +170780490987,214,0 +170780491035,214,0 +170780491083,214,0 +170780491131,214,0 +170780491181,214,0 +170780491228,214,0 +170780491278,214,0 +170780491326,214,0 +170780491374,214,0 +170780491423,215,0 +170780491473,214,0 +170780491523,214,0 +170780491570,214,0 +170780491620,214,0 +170780491668,214,0 +170780491716,214,0 +170780491764,214,0 +170780491813,214,0 +170780491861,214,0 +170780491909,214,0 +170780491957,214,0 +170780492007,214,0 +170780492056,214,0 +170780492104,215,0 +170780492154,214,0 +170780492203,214,0 +170780492253,214,0 +170780492300,214,0 +170780492350,214,0 +170780492398,214,0 +170780492446,214,0 +170780492493,213,0 +170780492543,214,0 +170780492590,214,0 +170780492640,214,0 +170780492688,214,0 +170780492735,214,0 +170780492785,214,0 +170780492834,214,0 +170780492882,214,0 +170780492930,214,0 +170780492978,214,0 +170780493028,214,0 +170780493077,214,0 +170780493125,214,0 +170780493175,214,0 +170780493224,213,0 +170780493274,213,0 +170780493321,214,0 +170780493369,214,0 +170780493417,214,0 +170780493465,214,0 +170780493513,214,0 +170780493561,214,0 +170780493609,214,0 +170780493657,214,0 +170780493705,214,0 +170780493753,214,0 +170780493801,214,0 +170780493848,214,0 +170780493896,214,0 +170780493946,214,0 +170780493994,214,0 +170780494042,214,0 +170780494091,213,0 +170780494139,213,0 +170780494189,214,0 +170780494237,214,0 +170780494286,214,0 +170780494334,214,0 +170780494384,214,0 +170780494432,214,0 +170780494480,214,0 +170780494529,214,0 +170780494577,214,0 +170780494625,214,0 +170780494673,214,0 +170780494721,214,0 +170780494769,214,0 +170780494819,214,0 +170780494867,214,0 +170780494915,214,0 +170780494962,214,0 +170780495010,214,0 +170780495060,214,0 +170780495109,214,0 +170780495157,214,0 +170780495207,215,0 +170780495256,215,0 +170780495304,214,0 +170780495352,215,0 +170780495400,215,0 +170780495448,215,0 +170780495497,215,0 +170780495547,215,0 +170780495595,215,0 +170780495643,214,0 +170780495691,214,0 +170780495739,214,0 +170780495787,214,0 +170780495836,214,0 +170780495886,214,0 +170780495934,214,0 +170780495983,214,0 +170780496033,214,0 +170780496082,215,0 +170780496130,214,0 +170780496179,215,0 +170780496227,215,0 +170780496277,215,0 +170780496325,215,0 +170780496373,215,0 +170780496422,214,0 +170780496470,214,0 +170780496520,214,0 +170780496569,214,0 +170780496617,214,0 +170780496665,214,0 +170780496715,214,0 +170780496763,214,0 +170780496811,214,0 +170780496859,214,0 +170780496906,215,0 +170780496954,214,0 +170780497004,214,0 +170780497053,214,0 +170780497103,214,0 +170780497153,215,0 +170780497200,214,0 +170780497250,214,0 +170780497298,214,0 +170780497346,214,0 +170780497394,213,0 +170780497442,214,0 +170780497490,214,0 +170780497538,214,0 +170780497586,214,0 +170780497634,214,0 +170780497682,214,0 +170780497731,214,0 +170780497779,214,0 +170780497827,214,0 +170780497876,214,0 +170780497924,214,0 +170780497972,214,0 +170780498020,214,0 +170780498068,214,0 +170780498116,214,0 +170780498165,214,0 +170780498215,214,0 +170780498264,214,0 +170780498312,214,0 +170780498360,214,0 +170780498408,214,0 +170780498456,214,0 +170780498506,214,0 +170780498554,214,0 +170780498603,214,0 +170780498653,214,0 +170780498701,214,0 +170780498749,214,0 +170780498797,214,0 +170780498845,215,0 +170780498892,214,0 +170780498940,214,0 +170780498988,214,0 +170780499038,214,0 +170780499086,214,0 +170780499134,214,0 +170780499183,214,0 +170780499231,214,0 +170780499280,214,0 +170780499330,214,0 +170780499379,214,0 +170780499427,214,0 +170780499475,214,0 +170780499525,214,0 +170780499573,214,0 +170780499622,214,0 +170780499670,214,0 +170780499718,214,0 +170780499768,214,0 +170780499816,214,0 +170780499864,214,0 +170780499913,214,0 +170780499961,214,0 +170780500009,214,0 +170780500057,214,0 +170780500105,214,0 +170780500153,214,0 +170780500201,214,0 +170780500250,214,0 +170780500300,214,0 +170780500348,214,0 +170780500395,215,0 +170780500443,214,0 +170780500493,214,0 +170780500541,214,0 +170780500589,214,0 +170780500637,214,0 +170780500686,214,0 +170780500734,214,0 +170780500782,214,0 +170780500830,214,0 +170780500878,214,0 +170780500926,214,0 +170780500974,214,0 +170780501022,214,0 +170780501070,215,0 +170780501118,215,0 +170780501166,215,0 +170780501215,215,0 +170780501263,215,0 +170780501313,214,0 +170780501361,214,0 +170780501409,214,0 +170780501456,214,0 +170780501506,214,0 +170780501554,214,0 +170780501602,214,0 +170780501651,214,0 +170780501701,214,0 +170780501749,214,0 +170780501798,214,0 +170780501846,214,0 +170780501894,214,0 +170780501942,214,0 +170780501991,214,0 +170780502039,214,0 +170780502087,214,0 +170780502135,214,0 +170780502183,214,0 +170780502233,214,0 +170780502280,214,0 +170780502330,214,0 +170780502379,214,0 +170780502429,214,0 +170780502478,214,0 +170780502526,214,0 +170780502576,214,0 +170780502624,214,0 +170780502673,214,0 +170780502721,214,0 +170780502769,214,0 +170780502819,214,0 +170780502868,214,0 +170780502916,214,0 +170780502964,215,0 +170780503012,214,0 +170780503060,214,0 +170780503108,214,0 +170780503155,214,0 +170780503203,214,0 +170780503251,214,0 +170780503299,214,0 +170780503347,214,0 +170780503397,214,0 +170780503445,214,0 +170780503494,214,0 +170780503543,214,0 +170780503591,215,0 +170780503641,214,0 +170780503690,215,0 +170780503738,215,0 +170780503786,214,0 +170780503834,214,0 +170780503884,214,0 +170780503933,214,0 +170780503981,214,0 +170780504029,214,0 +170780504079,214,0 +170780504128,214,0 +170780504176,214,0 +170780504224,215,0 +170780504272,214,0 +170780504322,214,0 +170780504371,215,0 +170780504421,215,0 +170780504468,214,0 +170780504518,215,0 +170780504566,214,0 +170780504614,214,0 +170780504663,214,0 +170780504713,214,0 +170780504762,214,0 +170780504810,214,0 +170780504860,214,0 +170780504908,214,0 +170780504955,214,0 +170780505003,214,0 +170780505051,214,0 +170780505101,215,0 +170780505149,214,0 +170780505198,215,0 +170780505248,215,0 +170780505296,214,0 +170780505344,215,0 +170780505393,214,0 +170780505441,213,0 +170780505491,214,0 +170780505540,214,0 +170780505588,214,0 +170780505636,214,0 +170780505686,214,0 +170780505734,214,0 +170780505782,214,0 +170780505831,214,0 +170780505879,214,0 +170780505927,214,0 +170780505975,214,0 +170780506023,214,0 +170780506071,214,0 +170780506118,214,0 +170780506166,214,0 +170780506214,214,0 +170780506262,213,0 +170780506310,213,0 +170780506358,213,0 +170780506407,214,0 +170780506455,214,0 +170780506505,214,0 +170780506553,214,0 +170780506602,214,0 +170780506650,214,0 +170780506698,214,0 +170780506746,214,0 +170780506795,214,0 +170780506843,214,0 +170780506891,214,0 +170780506941,214,0 +170780506991,214,0 +170780507040,214,0 +170780507088,213,0 +170780507137,213,0 +170780507187,214,0 +170780507235,214,0 +170780507283,214,0 +170780507331,214,0 +170780507379,214,0 +170780507427,214,0 +170780507475,214,0 +170780507522,214,0 +170780507570,214,0 +170780507618,214,0 +170780507668,214,0 +170780507717,214,0 +170780507767,214,0 +170780507815,214,0 +170780507863,213,0 +170780507911,213,0 +170780507959,214,0 +170780508007,213,0 +170780508056,213,0 +170780508104,214,0 +170780508153,214,0 +170780508201,214,0 +170780508249,214,0 +170780508297,214,0 +170780508347,214,0 +170780508395,214,0 +170780508443,214,0 +170780508491,214,0 +170780508540,214,0 +170780508588,214,0 +170780508636,214,0 +170780508686,214,0 +170780508734,214,0 +170780508782,214,0 +170780508830,214,0 +170780508879,214,0 +170780508927,214,0 +170780508975,215,0 +170780509024,214,0 +170780509072,214,0 +170780509120,215,0 +170780509168,214,0 +170780509216,215,0 +170780509264,215,0 +170780509312,215,0 +170780509360,214,0 +170780509408,214,0 +170780509457,214,0 +170780509507,214,0 +170780509556,215,0 +170780509604,215,0 +170780509652,214,0 +170780509700,214,0 +170780509748,215,0 +170780509796,214,0 +170780509843,215,0 +170780509893,215,0 +170780509941,215,0 +170780509989,215,0 +170780510038,215,0 +170780510088,214,0 +170780510136,215,0 +170780510185,215,0 +170780510233,214,0 +170780510281,214,0 +170780510329,214,0 +170780510377,214,0 +170780510425,214,0 +170780510475,215,0 +170780510523,215,0 +170780510572,215,0 +170780510620,215,0 +170780510670,215,0 +170780510719,215,0 +170780510769,215,0 +170780510818,215,0 +170780510866,215,0 +170780510914,215,0 +170780510962,214,0 +170780511010,214,0 +170780511058,214,0 +170780511106,214,0 +170780511153,214,0 +170780511201,214,0 +170780511251,214,0 +170780511298,214,0 +170780511346,214,0 +170780511394,214,0 +170780511442,215,0 +170780511490,214,0 +170780511537,215,0 +170780511585,215,0 +170780511633,215,0 +170780511681,215,0 +170780511729,214,0 +170780511777,214,0 +170780511825,214,0 +170780511873,214,0 +170780511921,214,0 +170780511970,214,0 +170780512020,214,0 +170780512068,214,0 +170780512117,214,0 +170780512167,214,0 +170780512215,214,0 +170780512264,214,0 +170780512312,214,0 +170780512361,215,0 +170780512411,214,0 +170780512460,214,0 +170780512510,215,0 +170780512558,214,0 +170780512607,214,0 +170780512655,214,0 +170780512703,214,0 +170780512753,214,0 +170780512802,214,0 +170780512850,214,0 +170780512898,214,0 +170780512946,214,0 +170780512996,214,0 +170780513043,214,0 +170780513093,214,0 +170780513141,214,0 +170780513190,214,0 +170780513240,214,0 +170780513289,214,0 +170780513339,214,0 +170780513387,214,0 +170780513436,214,0 +170780513484,214,0 +170780513534,214,0 +170780513582,214,0 +170780513631,214,0 +170780513681,214,0 +170780513729,214,0 +170780513778,214,0 +170780513828,214,0 +170780513876,214,0 +170780513923,214,0 +170780513973,214,0 +170780514021,214,0 +170780514069,215,0 +170780514117,214,0 +170780514165,214,0 +170780514214,214,0 +170780514264,214,0 +170780514313,214,0 +170780514363,214,0 +170780514411,214,0 +170780514458,214,0 +170780514506,214,0 +170780514554,215,0 +170780514602,214,0 +170780514650,214,0 +170780514698,214,0 +170780514746,214,0 +170780514794,215,0 +170780514842,215,0 +170780514891,214,0 +170780514939,214,0 +170780514987,214,0 +170780515036,214,0 +170780515084,214,0 +170780515132,214,0 +170780515180,214,0 +170780515228,214,0 +170780515276,214,0 +170780515324,214,0 +170780515372,214,0 +170780515420,214,0 +170780515468,215,0 +170780515515,215,0 +170780515563,215,0 +170780515611,215,0 +170780515659,215,0 +170780515707,215,0 +170780515755,215,0 +170780515803,214,0 +170780515852,214,0 +170780515902,214,0 +170780515950,214,0 +170780515999,214,0 +170780516048,214,0 +170780516096,214,0 +170780516144,214,0 +170780516194,214,0 +170780516243,214,0 +170780516291,214,0 +170780516339,215,0 +170780516387,215,0 +170780516436,214,0 +170780516484,214,0 +170780516534,214,0 +170780516582,214,0 +170780516630,213,0 +170780516679,213,0 +170780516727,213,0 +170780516775,214,0 +170780516824,214,0 +170780516874,214,0 +170780516923,214,0 +170780516971,214,0 +170780517021,214,0 +170780517069,214,0 +170780517116,214,0 +170780517166,214,0 +170780517214,214,0 +170780517262,214,0 +170780517310,214,0 +170780517359,214,0 +170780517409,214,0 +170780517457,213,0 +170780517505,214,0 +170780517553,214,0 +170780517602,214,0 +170780517650,214,0 +170780517699,214,0 +170780517747,214,0 +170780517795,214,0 +170780517843,214,0 +170780517891,214,0 +170780517940,214,0 +170780517988,214,0 +170780518036,214,0 +170780518084,214,0 +170780518131,214,0 +170780518179,214,0 +170780518227,213,0 +170780518277,214,0 +170780518324,214,0 +170780518372,214,0 +170780518420,214,0 +170780518468,214,0 +170780518516,214,0 +170780518564,214,0 +170780518612,214,0 +170780518660,214,0 +170780518708,214,0 +170780518757,214,0 +170780518807,214,0 +170780518856,215,0 +170780518906,214,0 +170780518954,214,0 +170780519002,214,0 +170780519050,214,0 +170780519099,213,0 +170780519147,213,0 +170780519195,214,0 +170780519243,214,0 +170780519291,214,0 +170780519339,214,0 +170780519387,214,0 +170780519436,214,0 +170780519484,214,0 +170780519532,214,0 +170780519580,214,0 +170780519628,214,0 +170780519676,214,0 +170780519723,214,0 +170780519771,214,0 +170780519819,213,0 +170780519867,213,0 +170780519915,214,0 +170780519963,213,0 +170780520011,214,0 +170780520059,213,0 +170780520107,214,0 +170780520155,214,0 +170780520203,214,0 +170780520250,214,0 +170780520298,214,0 +170780520348,214,0 +170780520397,214,0 +170780520445,214,0 +170780520493,214,0 +170780520541,214,0 +170780520589,214,0 +170780520637,213,0 +170780520685,214,0 +170780520733,213,0 +170780520781,214,0 +170780520828,214,0 +170780520876,214,0 +170780520924,214,0 +170780520972,214,0 +170780521020,214,0 +170780521068,214,0 +170780521116,214,0 +170780521164,214,0 +170780521212,214,0 +170780521260,214,0 +170780521308,214,0 +170780521355,214,0 +170780521403,214,0 +170780521451,214,0 +170780521501,214,0 +170780521549,214,0 +170780521598,214,0 +170780521648,215,0 +170780521696,215,0 +170780521744,215,0 +170780521793,215,0 +170780521841,215,0 +170780521889,215,0 +170780521937,215,0 +170780521985,215,0 +170780522033,215,0 +170780522080,215,0 +170780522128,215,0 +170780522176,215,0 +170780522226,214,0 +170780522274,215,0 +170780522322,215,0 +170780522371,215,0 +170780522421,215,0 +170780522469,215,0 +170780522518,215,0 +170780522566,215,0 +170780522614,215,0 +170780522662,215,0 +170780522710,215,0 +170780522758,215,0 +170780522806,215,0 +170780522854,215,0 +170780522903,215,0 +170780522951,215,0 +170780522999,215,0 +170780523047,215,0 +170780523095,215,0 +170780523143,214,0 +170780523191,215,0 +170780523240,215,0 +170780523288,215,0 +170780523337,215,0 +170780523385,215,0 +170780523433,215,0 +170780523481,215,0 +170780523529,215,0 +170780523577,215,0 +170780523625,214,0 +170780523673,215,0 +170780523721,214,0 +170780523769,214,0 +170780523818,214,0 +170780523868,214,0 +170780523916,214,0 +170780523963,214,0 +170780524011,214,0 +170780524059,214,0 +170780524109,215,0 +170780524158,214,0 +170780524208,215,0 +170780524256,215,0 +170780524303,214,0 +170780524351,214,0 +170780524399,215,0 +170780524449,214,0 +170780524498,215,0 +170780524546,214,0 +170780524596,214,0 +170780524643,214,0 +170780524691,214,0 +170780524741,214,0 +170780524790,214,0 +170780524838,214,0 +170780524886,214,0 +170780524934,214,0 +170780524984,214,0 +170780525032,215,0 +170780525080,215,0 +170780525129,215,0 +170780525177,214,0 +170780525225,215,0 +170780525273,215,0 +170780525322,214,0 +170780525372,214,0 +170780525421,214,0 +170780525469,214,0 +170780525519,214,0 +170780525568,214,0 +170780525616,214,0 +170780525665,214,0 +170780525713,215,0 +170780525761,214,0 +170780525809,215,0 +170780525857,214,0 +170780525906,215,0 +170780525956,214,0 +170780526004,215,0 +170780526052,214,0 +170780526100,214,0 +170780526147,214,0 +170780526197,214,0 +170780526246,214,0 +170780526294,214,0 +170780526342,214,0 +170780526390,214,0 +170780526438,214,0 +170780526488,214,0 +170780526535,214,0 +170780526585,215,0 +170780526633,215,0 +170780526681,215,0 +170780526730,215,0 +170780526778,214,0 +170780526828,215,0 +170780526876,214,0 +170780526925,214,0 +170780526973,214,0 +170780527021,214,0 +170780527070,214,0 +170780527118,214,0 +170780527166,214,0 +170780527215,214,0 +170780527265,214,0 +170780527312,214,0 +170780527360,214,0 +170780527408,215,0 +170780527458,214,0 +170780527506,214,0 +170780527553,215,0 +170780527603,214,0 +170780527653,215,0 +170780527701,214,0 +170780527749,214,0 +170780527798,214,0 +170780527848,214,0 +170780527897,214,0 +170780527947,214,0 +170780527996,214,0 +170780528044,214,0 +170780528092,214,0 +170780528141,214,0 +170780528191,214,0 +170780528239,215,0 +170780528287,215,0 +170780528335,214,0 +170780528384,214,0 +170780528432,214,0 +170780528482,214,0 +170780528530,214,0 +170780528578,213,0 +170780528626,214,0 +170780528675,214,0 +170780528725,214,0 +170780528774,214,0 +170780528822,214,0 +170780528870,214,0 +170780528918,214,0 +170780528966,214,0 +170780529015,214,0 +170780529065,214,0 +170780529113,214,0 +170780529162,214,0 +170780529210,214,0 +170780529258,215,0 +170780529306,214,0 +170780529356,213,0 +170780529404,214,0 +170780529453,214,0 +170780529501,214,0 +170780529550,214,0 +170780529600,214,0 +170780529649,214,0 +170780529697,214,0 +170780529745,214,0 +170780529795,214,0 +170780529844,214,0 +170780529892,214,0 +170780529941,214,0 +170780529989,214,0 +170780530039,214,0 +170780530087,214,0 +170780530135,213,0 +170780530183,213,0 +170780530231,214,0 +170780530278,214,0 +170780530326,214,0 +170780530376,214,0 +170780530424,214,0 +170780530473,214,0 +170780530521,214,0 +170780530569,214,0 +170780530617,214,0 +170780530665,214,0 +170780530713,215,0 +170780530761,215,0 +170780530810,215,0 +170780530858,214,0 +170780530908,214,0 +170780530956,213,0 +170780531005,214,0 +170780531053,213,0 +170780531101,214,0 +170780531151,214,0 +170780531199,214,0 +170780531247,214,0 +170780531295,214,0 +170780531343,214,0 +170780531391,214,0 +170780531438,214,0 +170780531488,214,0 +170780531537,215,0 +170780531587,214,0 +170780531635,214,0 +170780531683,214,0 +170780531731,214,0 +170780531779,213,0 +170780531827,213,0 +170780531875,214,0 +170780531924,214,0 +170780531972,214,0 +170780532022,214,0 +170780532071,214,0 +170780532121,214,0 +170780532169,214,0 +170780532217,214,0 +170780532266,214,0 +170780532316,214,0 +170780532364,214,0 +170780532412,214,0 +170780532459,214,0 +170780532507,214,0 +170780532555,214,0 +170780532605,214,0 +170780532654,214,0 +170780532702,214,0 +170780532750,214,0 +170780532800,214,0 +170780532848,214,0 +170780532896,214,0 +170780532944,214,0 +170780532991,214,0 +170780533039,214,0 +170780533089,214,0 +170780533137,214,0 +170780533186,214,0 +170780533236,214,0 +170780533285,214,0 +170780533333,214,0 +170780533383,214,0 +170780533431,214,0 +170780533479,214,0 +170780533528,214,0 +170780533576,214,0 +170780533626,214,0 +170780533673,214,0 +170780533721,214,0 +170780533771,214,0 +170780533819,215,0 +170780533868,215,0 +170780533916,215,0 +170780533964,215,0 +170780534012,214,0 +170780534062,214,0 +170780534110,214,0 +170780534159,214,0 +170780534209,214,0 +170780534256,214,0 +170780534304,215,0 +170780534352,215,0 +170780534402,214,0 +170780534450,215,0 +170780534498,215,0 +170780534546,215,0 +170780534595,215,0 +170780534643,215,0 +170780534691,214,0 +170780534739,215,0 +170780534789,214,0 +170780534838,215,0 +170780534888,215,0 +170780534937,215,0 +170780534985,215,0 +170780535033,215,0 +170780535081,215,0 +170780535130,215,0 +170780535180,215,0 +170780535230,215,0 +170780535277,215,0 +170780535325,215,0 +170780535374,215,0 +170780535423,215,0 +170780535471,215,0 +170780535519,214,0 +170780535569,214,0 +170780535618,215,0 +170780535666,215,0 +170780535715,215,0 +170780535763,215,0 +170780535811,215,0 +170780535859,214,0 +170780535907,215,0 +170780535957,215,0 +170780536006,215,0 +170780536054,215,0 +170780536104,215,0 +170780536152,215,0 +170780536200,215,0 +170780536248,215,0 +170780536295,215,0 +170780536343,215,0 +170780536391,214,0 +170780536441,214,0 +170780536490,214,0 +170780536540,214,0 +170780536589,214,0 +170780536639,214,0 +170780536687,214,0 +170780536735,214,0 +170780536783,214,0 +170780536831,214,0 +170780536879,214,0 +170780536926,215,0 +170780536976,214,0 +170780537025,215,0 +170780537073,215,0 +170780537121,214,0 +170780537169,214,0 +170780537219,214,0 +170780537267,214,0 +170780537316,214,0 +170780537364,214,0 +170780537412,214,0 +170780537460,214,0 +170780537508,214,0 +170780537556,214,0 +170780537605,214,0 +170780537653,214,0 +170780537703,214,0 +170780537751,214,0 +170780537799,214,0 +170780537848,215,0 +170780537896,214,0 +170780537946,214,0 +170780537994,214,0 +170780538041,213,0 +170780538089,214,0 +170780538139,214,0 +170780538187,214,0 +170780538236,214,0 +170780538284,214,0 +170780538332,214,0 +170780538380,214,0 +170780538430,215,0 +170780538478,214,0 +170780538526,214,0 +170780538575,214,0 +170780538623,214,0 +170780538671,214,0 +170780538719,214,0 +170780538767,214,0 +170780538815,213,0 +170780538864,213,0 +170780538914,214,0 +170780538962,214,0 +170780539010,214,0 +170780539058,214,0 +170780539107,214,0 +170780539157,214,0 +170780539205,214,0 +170780539252,214,0 +170780539300,214,0 +170780539350,214,0 +170780539398,214,0 +170780539446,214,0 +170780539495,214,0 +170780539545,214,0 +170780539593,214,0 +170780539640,214,0 +170780539690,213,0 +170780539738,214,0 +170780539786,214,0 +170780539835,214,0 +170780539885,214,0 +170780539934,214,0 +170780539982,214,0 +170780540030,214,0 +170780540078,214,0 +170780540126,214,0 +170780540174,215,0 +170780540224,214,0 +170780540272,214,0 +170780540320,214,0 +170780540367,213,0 +170780540417,213,0 +170780540465,214,0 +170780540514,213,0 +170780540562,214,0 +170780540610,214,0 +170780540658,214,0 +170780540706,214,0 +170780540756,214,0 +170780540805,214,0 +170780540855,214,0 +170780540903,214,0 +170780540951,214,0 +170780540999,214,0 +170780541048,214,0 +170780541096,214,0 +170780541144,214,0 +170780541194,213,0 +170780541242,213,0 +170780541290,213,0 +170780541339,214,0 +170780541387,214,0 +170780541437,214,0 +170780541484,214,0 +170780541532,214,0 +170780541582,214,0 +170780541631,214,0 +170780541679,214,0 +170780541727,214,0 +170780541777,214,0 +170780541826,214,0 +170780541874,214,0 +170780541924,214,0 +170780541973,214,0 +170780542021,214,0 +170780542071,214,0 +170780542119,214,0 +170780542167,215,0 +170780542214,214,0 +170780542264,214,0 +170780542312,214,0 +170780542360,214,0 +170780542409,214,0 +170780542457,214,0 +170780542505,214,0 +170780542553,214,0 +170780542603,214,0 +170780542651,214,0 +170780542699,214,0 +170780542748,214,0 +170780542796,214,0 +170780542844,214,0 +170780542893,215,0 +170780542943,214,0 +170780542991,215,0 +170780543039,214,0 +170780543087,214,0 +170780543136,214,0 +170780543186,214,0 +170780543233,214,0 +170780543281,214,0 +170780543331,214,0 +170780543380,214,0 +170780543428,214,0 +170780543478,214,0 +170780543527,215,0 +170780543575,215,0 +170780543625,214,0 +170780543674,215,0 +170780543722,215,0 +170780543770,214,0 +170780543820,215,0 +170780543868,214,0 +170780543916,214,0 +170780543964,214,0 +170780544011,214,0 +170780544059,214,0 +170780544107,214,0 +170780544157,214,0 +170780544206,214,0 +170780544256,214,0 +170780544304,214,0 +170780544352,214,0 +170780544400,214,0 +170780544447,215,0 +170780544495,215,0 +170780544543,215,0 +170780544591,214,0 +170780544641,214,0 +170780544690,214,0 +170780544740,214,0 +170780544789,214,0 +170780544837,214,0 +170780544885,214,0 +170780544933,214,0 +170780544983,214,0 +170780545030,214,0 +170780545080,214,0 +170780545128,215,0 +170780545176,215,0 +170780545224,215,0 +170780545273,215,0 +170780545321,215,0 +170780545371,215,0 +170780545419,214,0 +170780545467,214,0 +170780545515,214,0 +170780545564,214,0 +170780545614,214,0 +170780545662,214,0 +170780545710,214,0 +170780545758,214,0 +170780545805,214,0 +170780545853,214,0 +170780545901,214,0 +170780545949,214,0 +170780545997,214,0 +170780546045,214,0 +170780546094,215,0 +170780546144,214,0 +170780546193,214,0 +170780546241,214,0 +170780546289,214,0 +170780546337,214,0 +170780546387,214,0 +170780546435,214,0 +170780546484,214,0 +170780546534,214,0 +170780546583,215,0 +170780546633,215,0 +170780546681,215,0 +170780546729,215,0 +170780546777,215,0 +170780546826,215,0 +170780546874,214,0 +170780546922,215,0 +170780546970,215,0 +170780547018,214,0 +170780547066,214,0 +170780547114,214,0 +170780547162,215,0 +170780547210,214,0 +170780547258,214,0 +170780547305,215,0 +170780547353,214,0 +170780547401,215,0 +170780547449,215,0 +170780547497,215,0 +170780547547,215,0 +170780547595,215,0 +170780547644,214,0 +170780547694,215,0 +170780547742,215,0 +170780547791,215,0 +170780547841,214,0 +170780547890,214,0 +170780547938,214,0 +170780547987,215,0 +170780548037,214,0 +170780548085,215,0 +170780548134,215,0 +170780548184,215,0 +170780548232,214,0 +170780548280,215,0 +170780548328,214,0 +170780548377,215,0 +170780548427,214,0 +170780548476,214,0 +170780548524,214,0 +170780548574,214,0 +170780548622,214,0 +170780548671,214,0 +170780548719,214,0 +170780548769,214,0 +170780548817,214,0 +170780548864,214,0 +170780548914,214,0 +170780548963,214,0 +170780549013,214,0 +170780549061,215,0 +170780549109,214,0 +170780549157,215,0 +170780549204,214,0 +170780549252,214,0 +170780549300,214,0 +170780549348,214,0 +170780549396,214,0 +170780549444,213,0 +170780549492,214,0 +170780549541,213,0 +170780549589,214,0 +170780549638,214,0 +170780549686,214,0 +170780549734,214,0 +170780549783,214,0 +170780549831,214,0 +170780549879,214,0 +170780549928,214,0 +170780549976,214,0 +170780550024,214,0 +170780550072,214,0 +170780550120,214,0 +170780550168,214,0 +170780550216,214,0 +170780550263,214,0 +170780550313,214,0 +170780550362,214,0 +170780550412,214,0 +170780550459,214,0 +170780550509,214,0 +170780550557,214,0 +170780550604,214,0 +170780550652,214,0 +170780550700,214,0 +170780550748,214,0 +170780550796,215,0 +170780550843,214,0 +170780550891,215,0 +170780550939,214,0 +170780550987,213,0 +170780551035,214,0 +170780551083,214,0 +170780551130,214,0 +170780551178,214,0 +170780551226,214,0 +170780551274,214,0 +170780551322,214,0 +170780551370,214,0 +170780551419,214,0 +170780551467,214,0 +170780551515,215,0 +170780551564,215,0 +170780551614,214,0 +170780551662,214,0 +170780551710,214,0 +170780551758,214,0 +170780551805,214,0 +170780551853,213,0 +170780551901,214,0 +170780551949,214,0 +170780551997,214,0 +170780552045,214,0 +170780552094,214,0 +170780552144,214,0 +170780552191,214,0 +170780552239,214,0 +170780552287,215,0 +170780552335,214,0 +170780552383,214,0 +170780552431,215,0 +170780552478,214,0 +170780552526,214,0 +170780552574,214,0 +170780552623,214,0 +170780552671,214,0 +170780552719,214,0 +170780552767,214,0 +170780552815,214,0 +170780552862,214,0 +170780552912,214,0 +170780552960,214,0 +170780553007,214,0 +170780553055,214,0 +170780553103,214,0 +170780553151,215,0 +170780553199,214,0 +170780553247,215,0 +170780553296,214,0 +170780553344,214,0 +170780553392,214,0 +170780553440,214,0 +170780553488,214,0 +170780553535,214,0 +170780553583,214,0 +170780553631,214,0 +170780553681,214,0 +170780553729,214,0 +170780553777,214,0 +170780553826,214,0 +170780553876,214,0 +170780553925,214,0 +170780553975,214,0 +170780554023,214,0 +170780554072,214,0 +170780554120,214,0 +170780554169,214,0 +170780554217,214,0 +170780554265,214,0 +170780554313,214,0 +170780554361,214,0 +170780554409,214,0 +170780554458,214,0 +170780554508,214,0 +170780554556,214,0 +170780554605,214,0 +170780554653,214,0 +170780554701,214,0 +170780554749,214,0 +170780554797,214,0 +170780554846,214,0 +170780554895,214,0 +170780554943,214,0 +170780554993,214,0 +170780555041,214,0 +170780555090,214,0 +170780555138,214,0 +170780555186,215,0 +170780555233,214,0 +170780555281,214,0 +170780555331,214,0 +170780555379,214,0 +170780555426,214,0 +170780555474,214,0 +170780555522,215,0 +170780555570,215,0 +170780555618,214,0 +170780555666,214,0 +170780555715,214,0 +170780555763,214,0 +170780555813,214,0 +170780555860,214,0 +170780555910,215,0 +170780555959,215,0 +170780556009,215,0 +170780556058,215,0 +170780556106,215,0 +170780556154,215,0 +170780556202,215,0 +170780556250,214,0 +170780556298,215,0 +170780556345,215,0 +170780556393,214,0 +170780556441,214,0 +170780556489,214,0 +170780556537,214,0 +170780556584,214,0 +170780556632,214,0 +170780556680,214,0 +170780556728,214,0 +170780556776,214,0 +170780556824,214,0 +170780556871,214,0 +170780556921,214,0 +170780556970,215,0 +170780557018,215,0 +170780557068,214,0 +170780557117,214,0 +170780557165,214,0 +170780557214,215,0 +170780557262,214,0 +170780557310,214,0 +170780557358,214,0 +170780557405,214,0 +170780557453,214,0 +170780557501,214,0 +170780557549,214,0 +170780557597,214,0 +170780557646,214,0 +170780557694,214,0 +170780557742,214,0 +170780557790,214,0 +170780557838,215,0 +170780557886,214,0 +170780557933,215,0 +170780557983,214,0 +170780558032,214,0 +170780558080,214,0 +170780558128,214,0 +170780558176,214,0 +170780558224,214,0 +170780558272,214,0 +170780558320,214,0 +170780558368,214,0 +170780558417,214,0 +170780558465,215,0 +170780558513,214,0 +170780558561,214,0 +170780558611,214,0 +170780558659,214,0 +170780558707,215,0 +170780558754,215,0 +170780558802,214,0 +170780558850,214,0 +170780558898,214,0 +170780558946,214,0 +170780558994,214,0 +170780559044,214,0 +170780559093,215,0 +170780559143,215,0 +170780559191,215,0 +170780559240,215,0 +170780559289,215,0 +170780559337,215,0 +170780559387,215,0 +170780559436,215,0 +170780559484,215,0 +170780559532,214,0 +170780559580,215,0 +170780559628,215,0 +170780559676,214,0 +170780559723,214,0 +170780559771,214,0 +170780559819,215,0 +170780559867,215,0 +170780559915,214,0 +170780559962,215,0 +170780560010,214,0 +170780560058,215,0 +170780560106,215,0 +170780560154,215,0 +170780560202,215,0 +170780560249,215,0 +170780560297,214,0 +170780560345,214,0 +170780560393,214,0 +170780560442,214,0 +170780560492,214,0 +170780560540,214,0 +170780560587,214,0 +170780560635,214,0 +170780560683,214,0 +170780560732,214,0 +170780560782,214,0 +170780560830,214,0 +170780560877,214,0 +170780560927,215,0 +170780560975,214,0 +170780561024,214,0 +170780561072,214,0 +170780561120,214,0 +170780561170,214,0 +170780561219,214,0 +170780561267,214,0 +170780561315,214,0 +170780561363,214,0 +170780561412,214,0 +170780561460,214,0 +170780561508,214,0 +170780561558,214,0 +170780561606,214,0 +170780561655,214,0 +170780561704,214,0 +170780561752,215,0 +170780561802,214,0 +170780561850,215,0 +170780561898,215,0 +170780561946,214,0 +170780561993,214,0 +170780562041,213,0 +170780562089,214,0 +170780562137,214,0 +170780562185,214,0 +170780562233,214,0 +170780562280,214,0 +170780562328,214,0 +170780562376,214,0 +170780562424,214,0 +170780562472,214,0 +170780562519,214,0 +170780562567,214,0 +170780562615,214,0 +170780562663,215,0 +170780562711,215,0 +170780562759,214,0 +170780562806,214,0 +170780562854,213,0 +170780562902,213,0 +170780562950,214,0 +170780562999,214,0 +170780563047,213,0 +170780563095,213,0 +170780563143,214,0 +170780563190,214,0 +170780563240,214,0 +170780563288,214,0 +170780563335,214,0 +170780563383,214,0 +170780563431,214,0 +170780563479,214,0 +170780563527,214,0 +170780563574,214,0 +170780563622,214,0 +170780563670,214,0 +170780563719,214,0 +170780563766,214,0 +170780563814,214,0 +170780563864,214,0 +170780563912,214,0 +170780563959,214,0 +170780564007,214,0 +170780564055,214,0 +170780564103,214,0 +170780564151,214,0 +170780564199,214,0 +170780564246,214,0 +170780564294,214,0 +170780564342,214,0 +170780564390,214,0 +170780564438,214,0 +170780564485,214,0 +170780564533,214,0 +170780564581,214,0 +170780564630,214,0 +170780564678,214,0 +170780564726,214,0 +170780564774,214,0 +170780564822,214,0 +170780564871,214,0 +170780564919,214,0 +170780564969,214,0 +170780565016,214,0 +170780565064,214,0 +170780565112,214,0 +170780565160,214,0 +170780565208,214,0 +170780565255,214,0 +170780565303,214,0 +170780565351,214,0 +170780565401,214,0 +170780565450,214,0 +170780565498,214,0 +170780565547,214,0 +170780565595,214,0 +170780565644,215,0 +170780565692,214,0 +170780565740,215,0 +170780565788,215,0 +170780565836,214,0 +170780565884,214,0 +170780565931,214,0 +170780565979,214,0 +170780566027,214,0 +170780566075,214,0 +170780566123,214,0 +170780566170,214,0 +170780566218,214,0 +170780566266,214,0 +170780566314,215,0 +170780566361,215,0 +170780566409,215,0 +170780566457,215,0 +170780566505,214,0 +170780566554,214,0 +170780566602,214,0 +170780566650,214,0 +170780566698,214,0 +170780566746,214,0 +170780566793,214,0 +170780566841,214,0 +170780566889,214,0 +170780566937,214,0 +170780566985,214,0 +170780567033,214,0 +170780567082,215,0 +170780567130,215,0 +170780567178,215,0 +170780567226,214,0 +170780567273,215,0 +170780567321,215,0 +170780567369,215,0 +170780567419,214,0 +170780567468,214,0 +170780567516,214,0 +170780567564,213,0 +170780567612,214,0 +170780567660,214,0 +170780567709,214,0 +170780567757,214,0 +170780567807,214,0 +170780567855,214,0 +170780567904,214,0 +170780567954,214,0 +170780568002,214,0 +170780568049,215,0 +170780568097,214,0 +170780568145,214,0 +170780568193,215,0 +170780568241,214,0 +170780568289,214,0 +170780568337,214,0 +170780568385,214,0 +170780568432,214,0 +170780568482,214,0 +170780568531,214,0 +170780568579,214,0 +170780568629,214,0 +170780568677,214,0 +170780568726,214,0 +170780568774,214,0 +170780568824,214,0 +170780568873,214,0 +170780568923,214,0 +170780568972,214,0 +170780569020,214,0 +170780569068,213,0 +170780569118,213,0 +170780569167,213,0 +170780569217,214,0 +170780569265,214,0 +170780569313,214,0 +170780569361,214,0 +170780569408,214,0 +170780569456,214,0 +170780569506,214,0 +170780569555,214,0 +170780569603,214,0 +170780569651,214,0 +170780569701,215,0 +170780569749,214,0 +170780569798,214,0 +170780569846,214,0 +170780569894,213,0 +170780569942,214,0 +170780569991,214,0 +170780570041,214,0 +170780570089,214,0 +170780570137,214,0 +170780570185,214,0 +170780570234,214,0 +170780570282,214,0 +170780570330,214,0 +170780570378,214,0 +170780570426,214,0 +170780570474,215,0 +170780570522,215,0 +170780570571,214,0 +170780570619,214,0 +170780570667,214,0 +170780570717,214,0 +170780570766,214,0 +170780570814,214,0 +170780570864,214,0 +170780570911,214,0 +170780570959,214,0 +170780571009,214,0 +170780571057,214,0 +170780571105,215,0 +170780571154,214,0 +170780571204,215,0 +170780571254,215,0 +170780571301,214,0 +170780571351,215,0 +170780571399,214,0 +170780571449,214,0 +170780571498,214,0 +170780571548,214,0 +170780571597,214,0 +170780571645,214,0 +170780571695,214,0 +170780571743,214,0 +170780571792,215,0 +170780571840,214,0 +170780571890,215,0 +170780571937,215,0 +170780571987,215,0 +170780572037,215,0 +170780572086,214,0 +170780572134,214,0 +170780572182,214,0 +170780572230,214,0 +170780572278,214,0 +170780572326,214,0 +170780572374,214,0 +170780572423,214,0 +170780572471,214,0 +170780572519,214,0 +170780572566,214,0 +170780572614,214,0 +170780572664,214,0 +170780572711,215,0 +170780572759,214,0 +170780572807,215,0 +170780572855,215,0 +170780572903,214,0 +170780572951,214,0 +170780572999,214,0 +170780573046,214,0 +170780573094,214,0 +170780573144,214,0 +170780573192,214,0 +170780573239,214,0 +170780573289,214,0 +170780573338,214,0 +170780573386,214,0 +170780573435,214,0 +170780573483,214,0 +170780573531,214,0 +170780573579,214,0 +170780573627,214,0 +170780573675,214,0 +170780573723,214,0 +170780573771,214,0 +170780573820,214,0 +170780573868,214,0 +170780573916,214,0 +170780573965,214,0 +170780574013,214,0 +170780574061,214,0 +170780574109,214,0 +170780574157,214,0 +170780574205,214,0 +170780574255,214,0 +170780574303,214,0 +170780574352,214,0 +170780574400,214,0 +170780574448,214,0 +170780574498,214,0 +170780574547,214,0 +170780574595,214,0 +170780574643,214,0 +170780574692,214,0 +170780574742,214,0 +170780574791,214,0 +170780574839,214,0 +170780574889,214,0 +170780574938,214,0 +170780574988,214,0 +170780575036,214,0 +170780575085,215,0 +170780575135,214,0 +170780575184,214,0 +170780575232,215,0 +170780575280,214,0 +170780575328,214,0 +170780575376,214,0 +170780575426,214,0 +170780575473,214,0 +170780575523,214,0 +170780575572,214,0 +170780575622,214,0 +170780575670,214,0 +170780575718,214,0 +170780575767,214,0 +170780575815,215,0 +170780575863,215,0 +170780575912,215,0 +170780575960,214,0 +170780576008,215,0 +170780576056,214,0 +170780576104,214,0 +170780576152,214,0 +170780576199,214,0 +170780576247,214,0 +170780576297,214,0 +170780576345,214,0 +170780576393,214,0 +170780576441,214,0 +170780576490,214,0 +170780576538,214,0 +170780576586,215,0 +170780576634,215,0 +170780576683,215,0 +170780576733,215,0 +170780576782,215,0 +170780576832,214,0 +170780576880,214,0 +170780576927,214,0 +170780576977,214,0 +170780577025,214,0 +170780577074,214,0 +170780577122,214,0 +170780577170,214,0 +170780577218,214,0 +170780577268,214,0 +170780577316,214,0 +170780577365,214,0 +170780577413,214,0 +170780577461,214,0 +170780577509,214,0 +170780577558,214,0 +170780577608,214,0 +170780577656,215,0 +170780577704,214,0 +170780577752,214,0 +170780577800,214,0 +170780577849,214,0 +170780577897,214,0 +170780577945,214,0 +170780577993,214,0 +170780578041,214,0 +170780578091,214,0 +170780578139,214,0 +170780578188,214,0 +170780578238,214,0 +170780578286,214,0 +170780578334,215,0 +170780578383,214,0 +170780578431,214,0 +170780578479,214,0 +170780578527,214,0 +170780578576,214,0 +170780578626,214,0 +170780578674,214,0 +170780578723,214,0 +170780578771,214,0 +170780578819,214,0 +170780578867,214,0 +170780578917,214,0 +170780578965,215,0 +170780579013,214,0 +170780579062,214,0 +170780579110,215,0 +170780579160,214,0 +170780579209,214,0 +170780579257,214,0 +170780579305,214,0 +170780579355,213,0 +170780579403,214,0 +170780579450,214,0 +170780579500,214,0 +170780579548,214,0 +170780579596,214,0 +170780579644,214,0 +170780579693,214,0 +170780579741,214,0 +170780579789,214,0 +170780579839,214,0 +170780579887,214,0 +170780579936,214,0 +170780579984,214,0 +170780580032,214,0 +170780580082,214,0 +170780580131,214,0 +170780580180,213,0 +170780580228,214,0 +170780580278,214,0 +170780580327,214,0 +170780580377,214,0 +170780580425,214,0 +170780580473,214,0 +170780580521,214,0 +170780580568,214,0 +170780580616,214,0 +170780580664,214,0 +170780580712,214,0 +170780580760,214,0 +170780580808,214,0 +170780580855,214,0 +170780580903,214,0 +170780580951,214,0 +170780580999,213,0 +170780581047,214,0 +170780581094,214,0 +170780581142,214,0 +170780581192,214,0 +170780581240,214,0 +170780581287,214,0 +170780581335,214,0 +170780581383,214,0 +170780581431,214,0 +170780581479,214,0 +170780581527,214,0 +170780581576,214,0 +170780581624,214,0 +170780581672,214,0 +170780581721,213,0 +170780581769,213,0 +170780581817,213,0 +170780581865,214,0 +170780581914,214,0 +170780581962,214,0 +170780582010,214,0 +170780582058,214,0 +170780582107,214,0 +170780582155,214,0 +170780582203,214,0 +170780582251,214,0 +170780582299,214,0 +170780582347,214,0 +170780582395,214,0 +170780582443,214,0 +170780582490,213,0 +170780582538,213,0 +170780582586,213,0 +170780582636,213,0 +170780582684,214,0 +170780582732,214,0 +170780582781,214,0 +170780582831,214,0 +170780582880,214,0 +170780582928,214,0 +170780582978,214,0 +170780583025,214,0 +170780583075,215,0 +170780583124,214,0 +170780583172,214,0 +170780583220,214,0 +170780583268,214,0 +170780583318,214,0 +170780583367,214,0 +170780583415,214,0 +170780583464,214,0 +170780583512,214,0 +170780583562,214,0 +170780583610,214,0 +170780583658,215,0 +170780583707,215,0 +170780583755,215,0 +170780583803,215,0 +170780583851,215,0 +170780583900,215,0 +170780583950,215,0 +170780583998,214,0 +170780584047,214,0 +170780584095,214,0 +170780584145,214,0 +170780584194,215,0 +170780584244,215,0 +170780584292,215,0 +170780584340,215,0 +170780584388,215,0 +170780584436,215,0 +170780584484,215,0 +170780584533,215,0 +170780584581,215,0 +170780584629,215,0 +170780584679,214,0 +170780584728,214,0 +170780584778,214,0 +170780584826,215,0 +170780584874,215,0 +170780584922,214,0 +170780584970,214,0 +170780585018,215,0 +170780585065,215,0 +170780585115,215,0 +170780585163,215,0 +170780585211,215,0 +170780585259,215,0 +170780585307,215,0 +170780585356,215,0 +170780585404,214,0 +170780585452,214,0 +170780585500,214,0 +170780585550,214,0 +170780585597,214,0 +170780585645,214,0 +170780585693,214,0 +170780585743,214,0 +170780585791,214,0 +170780585839,214,0 +170780585888,214,0 +170780585936,214,0 +170780585984,214,0 +170780586032,214,0 +170780586080,215,0 +170780586129,214,0 +170780586177,214,0 +170780586225,215,0 +170780586275,214,0 +170780586323,214,0 +170780586371,214,0 +170780586419,214,0 +170780586467,214,0 +170780586516,214,0 +170780586564,214,0 +170780586612,214,0 +170780586660,214,0 +170780586708,214,0 +170780586757,214,0 +170780586807,214,0 +170780586855,214,0 +170780586904,214,0 +170780586952,214,0 +170780587002,214,0 +170780587050,214,0 +170780587099,214,0 +170780587149,214,0 +170780587196,214,0 +170780587246,214,0 +170780587294,214,0 +170780587343,214,0 +170780587391,214,0 +170780587439,214,0 +170780587489,214,0 +170780587538,214,0 +170780587586,214,0 +170780587635,215,0 +170780587685,214,0 +170780587735,214,0 +170780587784,215,0 +170780587832,215,0 +170780587881,214,0 +170780587929,214,0 +170780587977,214,0 +170780588025,214,0 +170780588073,214,0 +170780588121,214,0 +170780588169,214,0 +170780588217,214,0 +170780588265,214,0 +170780588314,214,0 +170780588362,214,0 +170780588411,214,0 +170780588458,215,0 +170780588508,215,0 +170780588556,214,0 +170780588604,214,0 +170780588652,214,0 +170780588700,214,0 +170780588748,214,0 +170780588795,214,0 +170780588843,214,0 +170780588893,214,0 +170780588941,214,0 +170780588990,214,0 +170780589038,214,0 +170780589086,215,0 +170780589134,214,0 +170780589183,214,0 +170780589231,215,0 +170780589279,214,0 +170780589329,214,0 +170780589377,214,0 +170780589426,214,0 +170780589474,214,0 +170780589524,214,0 +170780589572,214,0 +170780589619,214,0 +170780589667,214,0 +170780589715,214,0 +170780589763,214,0 +170780589811,214,0 +170780589859,214,0 +170780589907,214,0 +170780589955,214,0 +170780590003,214,0 +170780590051,215,0 +170780590100,215,0 +170780590148,214,0 +170780590197,214,0 +170780590247,214,0 +170780590296,214,0 +170780590346,214,0 +170780590395,214,0 +170780590445,214,0 +170780590492,214,0 +170780590542,214,0 +170780590591,214,0 +170780590641,214,0 +170780590689,214,0 +170780590737,214,0 +170780590786,214,0 +170780590836,214,0 +170780590884,214,0 +170780590933,215,0 +170780590981,214,0 +170780591029,214,0 +170780591077,214,0 +170780591125,213,0 +170780591173,214,0 +170780591221,214,0 +170780591269,214,0 +170780591317,214,0 +170780591366,214,0 +170780591416,214,0 +170780591465,214,0 +170780591513,214,0 +170780591561,214,0 +170780591609,214,0 +170780591657,214,0 +170780591705,214,0 +170780591753,214,0 +170780591801,215,0 +170780591850,214,0 +170780591898,214,0 +170780591946,214,0 +170780591996,214,0 +170780592044,214,0 +170780592092,214,0 +170780592140,214,0 +170780592187,214,0 +170780592235,214,0 +170780592285,214,0 +170780592335,214,0 +170780592384,214,0 +170780592432,214,0 +170780592480,214,0 +170780592529,214,0 +170780592579,215,0 +170780592627,214,0 +170780592676,214,0 +170780592724,214,0 +170780592772,214,0 +170780592822,213,0 +170780592871,214,0 +170780592921,214,0 +170780592970,214,0 +170780593018,214,0 +170780593068,214,0 +170780593117,214,0 +170780593167,214,0 +170780593215,214,0 +170780593263,214,0 +170780593310,214,0 +170780593358,215,0 +170780593408,214,0 +170780593456,214,0 +170780593505,213,0 +170780593555,214,0 +170780593603,214,0 +170780593651,214,0 +170780593700,214,0 +170780593750,214,0 +170780593799,214,0 +170780593848,214,0 +170780593896,214,0 +170780593944,214,0 +170780593992,214,0 +170780594040,214,0 +170780594088,214,0 +170780594137,214,0 +170780594187,214,0 +170780594236,214,0 +170780594286,213,0 +170780594334,214,0 +170780594381,214,0 +170780594431,214,0 +170780594479,214,0 +170780594528,214,0 +170780594576,214,0 +170780594624,214,0 +170780594672,214,0 +170780594720,214,0 +170780594768,214,0 +170780594818,214,0 +170780594866,214,0 +170780594915,214,0 +170780594965,214,0 +170780595014,214,0 +170780595064,214,0 +170780595112,214,0 +170780595161,214,0 +170780595209,214,0 +170780595257,214,0 +170780595307,214,0 +170780595355,214,0 +170780595404,214,0 +170780595452,215,0 +170780595500,215,0 +170780595548,215,0 +170780595598,215,0 +170780595646,215,0 +170780595693,215,0 +170780595741,214,0 +170780595791,214,0 +170780595839,214,0 +170780595888,214,0 +170780595936,214,0 +170780595986,215,0 +170780596034,214,0 +170780596082,215,0 +170780596130,215,0 +170780596178,214,0 +170780596225,215,0 +170780596273,215,0 +170780596321,214,0 +170780596371,215,0 +170780596419,215,0 +170780596467,215,0 +170780596515,215,0 +170780596564,215,0 +170780596612,214,0 +170780596660,214,0 +170780596708,215,0 +170780596758,215,0 +170780596807,215,0 +170780596857,215,0 +170780596906,215,0 +170780596956,215,0 +170780597004,215,0 +170780597052,215,0 +170780597101,215,0 +170780597151,214,0 +170780597199,215,0 +170780597246,214,0 +170780597296,214,0 +170780597345,214,0 +170780597393,214,0 +170780597441,214,0 +170780597489,214,0 +170780597537,214,0 +170780597585,214,0 +170780597633,214,0 +170780597681,214,0 +170780597729,214,0 +170780597777,214,0 +170780597825,214,0 +170780597874,215,0 +170780597924,214,0 +170780597973,215,0 +170780598021,214,0 +170780598071,214,0 +170780598119,214,0 +170780598167,214,0 +170780598216,214,0 +170780598266,214,0 +170780598314,213,0 +170780598362,214,0 +170780598410,214,0 +170780598459,214,0 +170780598509,214,0 +170780598558,214,0 +170780598606,214,0 +170780598654,215,0 +170780598704,215,0 +170780598753,214,0 +170780598801,214,0 +170780598849,214,0 +170780598897,214,0 +170780598945,214,0 +170780598994,214,0 +170780599042,214,0 +170780599090,214,0 +170780599138,214,0 +170780599186,214,0 +170780599234,214,0 +170780599282,214,0 +170780599330,214,0 +170780599378,214,0 +170780599426,214,0 +170780599474,214,0 +170780599523,215,0 +170780599571,215,0 +170780599619,215,0 +170780599669,215,0 +170780599718,214,0 +170780599766,213,0 +170780599814,214,0 +170780599862,214,0 +170780599910,214,0 +170780599958,214,0 +170780600008,214,0 +170780600057,214,0 +170780600105,214,0 +170780600155,214,0 +170780600204,214,0 +170780600252,215,0 +170780600300,214,0 +170780600348,214,0 +170780600397,214,0 +170780600445,214,0 +170780600495,214,0 +170780600543,214,0 +170780600591,214,0 +170780600639,214,0 +170780600687,214,0 +170780600736,214,0 +170780600786,214,0 +170780600834,214,0 +170780600883,214,0 +170780600931,214,0 +170780600979,215,0 +170780601027,215,0 +170780601075,215,0 +170780601123,214,0 +170780601171,215,0 +170780601220,215,0 +170780601268,214,0 +170780601316,214,0 +170780601364,213,0 +170780601413,214,0 +170780601463,214,0 +170780601511,214,0 +170780601559,214,0 +170780601608,214,0 +170780601656,214,0 +170780601706,214,0 +170780601754,214,0 +170780601802,214,0 +170780601850,214,0 +170780601898,214,0 +170780601946,214,0 +170780601995,214,0 +170780602045,214,0 +170780602094,214,0 +170780602144,213,0 +170780602192,214,0 +170780602241,213,0 +170780602289,214,0 +170780602337,214,0 +170780602387,214,0 +170780602436,214,0 +170780602484,214,0 +170780602532,214,0 +170780602580,214,0 +170780602629,214,0 +170780602679,214,0 +170780602727,214,0 +170780602775,214,0 +170780602823,214,0 +170780602872,214,0 +170780602920,214,0 +170780602968,214,0 +170780603016,214,0 +170780603064,214,0 +170780603113,214,0 +170780603161,214,0 +170780603209,214,0 +170780603257,214,0 +170780603306,214,0 +170780603356,214,0 +170780603404,214,0 +170780603452,214,0 +170780603500,215,0 +170780603547,215,0 +170780603597,214,0 +170780603646,214,0 +170780603694,214,0 +170780603744,214,0 +170780603792,214,0 +170780603840,214,0 +170780603889,214,0 +170780603937,214,0 +170780603985,214,0 +170780604033,214,0 +170780604082,214,0 +170780604132,214,0 +170780604180,214,0 +170780604227,214,0 +170780604275,214,0 +170780604323,215,0 +170780604371,214,0 +170780604419,214,0 +170780604468,214,0 +170780604516,214,0 +170780604564,213,0 +170780604612,214,0 +170780604660,214,0 +170780604708,214,0 +170780604758,214,0 +170780604807,214,0 +170780604855,214,0 +170780604903,214,0 +170780604951,214,0 +170780605001,215,0 +170780605050,215,0 +170780605100,215,0 +170780605148,214,0 +170780605197,214,0 +170780605245,214,0 +170780605295,214,0 +170780605344,214,0 +170780605394,214,0 +170780605444,214,0 +170780605491,214,0 +170780605539,214,0 +170780605587,214,0 +170780605637,214,0 +170780605686,214,0 +170780605734,214,0 +170780605782,214,0 +170780605832,215,0 +170780605881,215,0 +170780605931,214,0 +170780605979,215,0 +170780606027,214,0 +170780606075,214,0 +170780606124,214,0 +170780606172,214,0 +170780606222,214,0 +170780606271,214,0 +170780606319,214,0 +170780606367,214,0 +170780606417,214,0 +170780606466,214,0 +170780606514,214,0 +170780606562,214,0 +170780606611,214,0 +170780606661,214,0 +170780606709,215,0 +170780606757,215,0 +170780606806,214,0 +170780606854,214,0 +170780606904,214,0 +170780606952,214,0 +170780607000,214,0 +170780607049,214,0 +170780607099,214,0 +170780607148,214,0 +170780607198,214,0 +170780607247,214,0 +170780607297,214,0 +170780607345,214,0 +170780607393,214,0 +170780607441,214,0 +170780607489,214,0 +170780607538,214,0 +170780607588,214,0 +170780607637,214,0 +170780607685,214,0 +170780607735,214,0 +170780607783,214,0 +170780607832,214,0 +170780607880,214,0 +170780607928,214,0 +170780607977,214,0 +170780608025,214,0 +170780608075,214,0 +170780608123,214,0 +170780608171,215,0 +170780608219,215,0 +170780608266,214,0 +170780608314,215,0 +170780608362,215,0 +170780608410,214,0 +170780608458,214,0 +170780608508,214,0 +170780608555,214,0 +170780608603,214,0 +170780608651,214,0 +170780608701,214,0 +170780608749,215,0 +170780608797,215,0 +170780608845,215,0 +170780608893,215,0 +170780608941,215,0 +170780608989,215,0 +170780609038,215,0 +170780609086,214,0 +170780609136,215,0 +170780609185,215,0 +170780609233,215,0 +170780609281,215,0 +170780609329,215,0 +170780609378,215,0 +170780609428,215,0 +170780609477,214,0 +170780609527,214,0 +170780609577,215,0 +170780609624,215,0 +170780609672,215,0 +170780609720,215,0 +170780609768,215,0 +170780609818,215,0 +170780609866,215,0 +170780609914,215,0 +170780609962,215,0 +170780610011,215,0 +170780610059,215,0 +170780610109,214,0 +170780610158,214,0 +170780610208,214,0 +170780610256,214,0 +170780610304,214,0 +170780610353,214,0 +170780610403,214,0 +170780610450,214,0 +170780610498,214,0 +170780610546,214,0 +170780610594,214,0 +170780610644,215,0 +170780610692,214,0 +170780610741,214,0 +170780610789,214,0 +170780610837,214,0 +170780610887,214,0 +170780610936,214,0 +170780610984,214,0 +170780611034,214,0 +170780611081,214,0 +170780611129,214,0 +170780611179,214,0 +170780611227,214,0 +170780611275,214,0 +170780611323,214,0 +170780611371,214,0 +170780611420,214,0 +170780611468,214,0 +170780611518,215,0 +170780611566,215,0 +170780611615,214,0 +170780611663,214,0 +170780611711,214,0 +170780611759,214,0 +170780611807,214,0 +170780611855,214,0 +170780611903,214,0 +170780611951,214,0 +170780612000,214,0 +170780612050,214,0 +170780612099,214,0 +170780612147,214,0 +170780612197,214,0 +170780612246,214,0 +170780612295,214,0 +170780612343,215,0 +170780612391,215,0 +170780612439,214,0 +170780612489,214,0 +170780612537,214,0 +170780612585,214,0 +170780612633,213,0 +170780612680,214,0 +170780612728,214,0 +170780612776,214,0 +170780612824,214,0 +170780612872,214,0 +170780612922,214,0 +170780612971,214,0 +170780613019,214,0 +170780613069,214,0 +170780613117,214,0 +170780613165,214,0 +170780613212,214,0 +170780613260,215,0 +170780613308,214,0 +170780613356,214,0 +170780613404,214,0 +170780613452,214,0 +170780613500,214,0 +170780613548,214,0 +170780613595,214,0 +170780613645,214,0 +170780613693,214,0 +170780613741,214,0 +170780613790,214,0 +170780613838,214,0 +170780613886,214,0 +170780613934,214,0 +170780613984,215,0 +170780614033,214,0 +170780614081,214,0 +170780614129,214,0 +170780614177,214,0 +170780614226,214,0 +170780614274,214,0 +170780614324,214,0 +170780614373,214,0 +170780614421,214,0 +170780614469,214,0 +170780614517,214,0 +170780614567,214,0 +170780614614,214,0 +170780614662,215,0 +170780614710,215,0 +170780614760,215,0 +170780614809,215,0 +170780614859,214,0 +170780614907,214,0 +170780614955,214,0 +170780615003,214,0 +170780615051,214,0 +170780615099,214,0 +170780615148,214,0 +170780615198,214,0 +170780615245,214,0 +170780615295,214,0 +170780615343,214,0 +170780615393,214,0 +170780615440,214,0 +170780615490,214,0 +170780615538,215,0 +170780615587,214,0 +170780615635,214,0 +170780615683,214,0 +170780615731,214,0 +170780615779,214,0 +170780615827,214,0 +170780615875,214,0 +170780615922,214,0 +170780615972,214,0 +170780616020,214,0 +170780616068,214,0 +170780616116,214,0 +170780616165,214,0 +170780616215,214,0 +170780616263,214,0 +170780616310,215,0 +170780616358,214,0 +170780616406,214,0 +170780616456,214,0 +170780616505,214,0 +170780616553,213,0 +170780616602,213,0 +170780616652,214,0 +170780616700,214,0 +170780616748,214,0 +170780616795,214,0 +170780616843,214,0 +170780616891,214,0 +170780616939,214,0 +170780616988,214,0 +170780617036,214,0 +170780617084,214,0 +170780617132,214,0 +170780617180,214,0 +170780617227,215,0 +170780617275,214,0 +170780617323,214,0 +170780617372,213,0 +170780617420,214,0 +170780617468,214,0 +170780617516,214,0 +170780617564,214,0 +170780617611,214,0 +170780617659,214,0 +170780617707,214,0 +170780617756,214,0 +170780617804,214,0 +170780617852,214,0 +170780617900,214,0 +170780617948,214,0 +170780617996,214,0 +170780618044,214,0 +170780618092,214,0 +170780618141,214,0 +170780618189,213,0 +170780618238,213,0 +170780618286,213,0 +170780618334,213,0 +170780618382,214,0 +170780618430,214,0 +170780618478,214,0 +170780618525,214,0 +170780618573,214,0 +170780618621,214,0 +170780618670,214,0 +170780618718,214,0 +170780618768,214,0 +170780618816,214,0 +170780618863,214,0 +170780618911,214,0 +170780618959,214,0 +170780619007,213,0 +170780619055,213,0 +170780619103,214,0 +170780619151,214,0 +170780619198,214,0 +170780619248,214,0 +170780619296,214,0 +170780619343,214,0 +170780619391,214,0 +170780619439,214,0 +170780619488,214,0 +170780619536,214,0 +170780619584,214,0 +170780619632,214,0 +170780619679,214,0 +170780619729,214,0 +170780619778,214,0 +170780619826,214,0 +170780619874,214,0 +170780619923,214,0 +170780619971,214,0 +170780620019,214,0 +170780620067,214,0 +170780620116,214,0 +170780620164,214,0 +170780620212,214,0 +170780620260,214,0 +170780620308,215,0 +170780620355,214,0 +170780620403,215,0 +170780620452,215,0 +170780620500,214,0 +170780620548,214,0 +170780620596,214,0 +170780620644,214,0 +170780620693,215,0 +170780620741,214,0 +170780620789,214,0 +170780620836,215,0 +170780620884,214,0 +170780620932,215,0 +170780620981,214,0 +170780621029,215,0 +170780621077,214,0 +170780621125,215,0 +170780621174,215,0 +170780621222,215,0 +170780621270,215,0 +170780621318,214,0 +170780621366,214,0 +170780621414,214,0 +170780621461,214,0 +170780621511,214,0 +170780621559,214,0 +170780621607,214,0 +170780621656,215,0 +170780621704,214,0 +170780621752,214,0 +170780621799,215,0 +170780621847,214,0 +170780621895,215,0 +170780621943,215,0 +170780621991,214,0 +170780622039,214,0 +170780622086,214,0 +170780622134,214,0 +170780622182,213,0 +170780622230,213,0 +170780622278,214,0 +170780622326,214,0 +170780622374,214,0 +170780622423,214,0 +170780622471,214,0 +170780622519,214,0 +170780622566,214,0 +170780622614,215,0 +170780622662,214,0 +170780622711,214,0 +170780622759,214,0 +170780622807,214,0 +170780622855,214,0 +170780622903,214,0 +170780622950,214,0 +170780622998,213,0 +170780623046,213,0 +170780623094,214,0 +170780623143,214,0 +170780623191,214,0 +170780623239,214,0 +170780623287,214,0 +170780623335,214,0 +170780623385,214,0 +170780623432,214,0 +170780623480,214,0 +170780623528,214,0 +170780623576,214,0 +170780623624,214,0 +170780623672,214,0 +170780623720,214,0 +170780623768,214,0 +170780623818,214,0 +170780623866,214,0 +170780623914,214,0 +170780623961,214,0 +170780624009,214,0 +170780624057,214,0 +170780624107,214,0 +170780624155,214,0 +170780624204,215,0 +170780624252,214,0 +170780624300,215,0 +170780624348,214,0 +170780624397,214,0 +170780624445,215,0 +170780624493,214,0 +170780624541,214,0 +170780624591,214,0 +170780624640,214,0 +170780624688,214,0 +170780624736,214,0 +170780624786,214,0 +170780624834,214,0 +170780624881,214,0 +170780624929,214,0 +170780624977,214,0 +170780625025,214,0 +170780625075,215,0 +170780625124,215,0 +170780625174,215,0 +170780625223,214,0 +170780625271,214,0 +170780625320,214,0 +170780625368,214,0 +170780625416,214,0 +170780625466,214,0 +170780625514,214,0 +170780625561,214,0 +170780625609,214,0 +170780625659,214,0 +170780625707,214,0 +170780625756,214,0 +170780625806,214,0 +170780625854,214,0 +170780625903,215,0 +170780625953,214,0 +170780626001,214,0 +170780626049,214,0 +170780626098,214,0 +170780626148,214,0 +170780626197,214,0 +170780626245,214,0 +170780626295,214,0 +170780626344,214,0 +170780626392,214,0 +170780626440,214,0 +170780626488,214,0 +170780626537,214,0 +170780626587,214,0 +170780626636,214,0 +170780626684,214,0 +170780626732,214,0 +170780626780,215,0 +170780626828,214,0 +170780626878,214,0 +170780626926,214,0 +170780626975,214,0 +170780627025,214,0 +170780627072,214,0 +170780627120,214,0 +170780627168,214,0 +170780627216,214,0 +170780627264,214,0 +170780627312,214,0 +170780627360,214,0 +170780627408,214,0 +170780627456,215,0 +170780627506,214,0 +170780627555,215,0 +170780627603,215,0 +170780627653,214,0 +170780627702,215,0 +170780627750,214,0 +170780627798,214,0 +170780627847,214,0 +170780627897,214,0 +170780627946,214,0 +170780627996,214,0 +170780628045,214,0 +170780628093,214,0 +170780628143,214,0 +170780628191,214,0 +170780628241,214,0 +170780628288,214,0 +170780628338,214,0 +170780628387,215,0 +170780628435,215,0 +170780628483,215,0 +170780628533,214,0 +170780628582,214,0 +170780628630,214,0 +170780628678,214,0 +170780628726,214,0 +170780628774,214,0 +170780628824,214,0 +170780628873,214,0 +170780628921,214,0 +170780628969,214,0 +170780629019,214,0 +170780629068,214,0 +170780629116,214,0 +170780629164,214,0 +170780629214,214,0 +170780629261,214,0 +170780629309,214,0 +170780629357,214,0 +170780629407,214,0 +170780629456,213,0 +170780629506,213,0 +170780629555,214,0 +170780629603,214,0 +170780629653,214,0 +170780629701,214,0 +170780629749,214,0 +170780629797,214,0 +170780629845,214,0 +170780629892,215,0 +170780629940,214,0 +170780629988,215,0 +170780630036,214,0 +170780630084,214,0 +170780630132,214,0 +170780630181,214,0 +170780630231,213,0 +170780630280,213,0 +170780630328,214,0 +170780630376,214,0 +170780630426,214,0 +170780630474,214,0 +170780630523,214,0 +170780630571,214,0 +170780630619,214,0 +170780630667,214,0 +170780630717,214,0 +170780630764,214,0 +170780630812,214,0 +170780630862,214,0 +170780630910,214,0 +170780630958,214,0 +170780631007,213,0 +170780631055,213,0 +170780631103,213,0 +170780631151,213,0 +170780631199,213,0 +170780631247,214,0 +170780631297,214,0 +170780631345,214,0 +170780631393,214,0 +170780631441,214,0 +170780631490,214,0 +170780631538,214,0 +170780631586,214,0 +170780631636,214,0 +170780631685,214,0 +170780631735,214,0 +170780631782,214,0 +170780631830,213,0 +170780631880,213,0 +170780631929,213,0 +170780631977,213,0 +170780632025,214,0 +170780632073,214,0 +170780632121,214,0 +170780632171,214,0 +170780632218,214,0 +170780632268,214,0 +170780632318,214,0 +170780632367,214,0 +170780632416,214,0 +170780632464,214,0 +170780632512,214,0 +170780632560,214,0 +170780632608,214,0 +170780632656,214,0 +170780632704,214,0 +170780632752,214,0 +170780632802,214,0 +170780632850,214,0 +170780632898,214,0 +170780632946,214,0 +170780632994,214,0 +170780633042,215,0 +170780633090,215,0 +170780633139,215,0 +170780633187,215,0 +170780633235,214,0 +170780633285,215,0 +170780633334,214,0 +170780633382,214,0 +170780633430,214,0 +170780633478,214,0 +170780633526,215,0 +170780633575,215,0 +170780633625,215,0 +170780633673,215,0 +170780633722,215,0 +170780633772,215,0 +170780633820,215,0 +170780633868,215,0 +170780633916,215,0 +170780633965,215,0 +170780634013,215,0 +170780634062,215,0 +170780634112,215,0 +170780634160,215,0 +170780634208,214,0 +170780634256,214,0 +170780634304,214,0 +170780634352,214,0 +170780634400,214,0 +170780634447,215,0 +170780634497,215,0 +170780634545,215,0 +170780634593,215,0 +170780634641,215,0 +170780634689,215,0 +170780634738,214,0 +170780634786,215,0 +170780634834,214,0 +170780634881,214,0 +170780634929,214,0 +170780634977,214,0 +170780635025,214,0 +170780635074,214,0 +170780635122,214,0 +170780635170,214,0 +170780635219,214,0 +170780635267,214,0 +170780635315,214,0 +170780635363,214,0 +170780635411,214,0 +170780635459,214,0 +170780635507,214,0 +170780635556,214,0 +170780635604,215,0 +170780635654,214,0 +170780635702,215,0 +170780635751,214,0 +170780635801,214,0 +170780635850,214,0 +170780635898,214,0 +170780635946,214,0 +170780635994,214,0 +170780636042,214,0 +170780636090,214,0 +170780636138,214,0 +170780636186,214,0 +170780636234,215,0 +170780636282,214,0 +170780636329,214,0 +170780636377,215,0 +170780636425,214,0 +170780636475,215,0 +170780636523,214,0 +170780636571,214,0 +170780636619,213,0 +170780636668,214,0 +170780636716,214,0 +170780636764,214,0 +170780636812,214,0 +170780636861,214,0 +170780636911,214,0 +170780636959,214,0 +170780637007,214,0 +170780637055,214,0 +170780637103,214,0 +170780637151,214,0 +170780637200,214,0 +170780637250,214,0 +170780637298,214,0 +170780637347,214,0 +170780637395,213,0 +170780637443,213,0 +170780637493,214,0 +170780637542,214,0 +170780637590,214,0 +170780637639,214,0 +170780637687,214,0 +170780637735,214,0 +170780637785,214,0 +170780637834,214,0 +170780637882,214,0 +170780637932,214,0 +170780637980,214,0 +170780638027,215,0 +170780638075,215,0 +170780638125,214,0 +170780638174,214,0 +170780638222,213,0 +170780638270,213,0 +170780638318,213,0 +170780638368,214,0 +170780638417,214,0 +170780638467,214,0 +170780638516,214,0 +170780638564,214,0 +170780638614,214,0 +170780638662,214,0 +170780638710,214,0 +170780638759,214,0 +170780638809,214,0 +170780638856,214,0 +170780638904,214,0 +170780638954,214,0 +170780639003,214,0 +170780639051,213,0 +170780639099,213,0 +170780639147,213,0 +170780639195,213,0 +170780639245,213,0 +170780639293,214,0 +170780639340,214,0 +170780639388,214,0 +170780639438,214,0 +170780639486,214,0 +170780639534,214,0 +170780639582,214,0 +170780639631,214,0 +170780639679,214,0 +170780639727,214,0 +170780639776,214,0 +170780639824,213,0 +170780639872,213,0 +170780639920,213,0 +170780639970,213,0 +170780640019,213,0 +170780640069,213,0 +170780640116,213,0 +170780640164,214,0 +170780640214,214,0 +170780640263,214,0 +170780640311,214,0 +170780640359,214,0 +170780640407,214,0 +170780640455,214,0 +170780640503,214,0 +170780640551,214,0 +170780640599,213,0 +170780640646,213,0 +170780640694,213,0 +170780640744,213,0 +170780640792,214,0 +170780640841,214,0 +170780640889,214,0 +170780640937,214,0 +170780640985,214,0 +170780641033,214,0 +170780641081,214,0 +170780641128,214,0 +170780641178,214,0 +170780641226,214,0 +170780641275,214,0 +170780641323,214,0 +170780641371,214,0 +170780641420,214,0 +170780641468,213,0 +170780641516,213,0 +170780641564,214,0 +170780641612,214,0 +170780641660,214,0 +170780641707,214,0 +170780641755,214,0 +170780641803,214,0 +170780641851,214,0 +170780641899,214,0 +170780641947,214,0 +170780641995,214,0 +170780642042,214,0 +170780642090,214,0 +170780642138,215,0 +170780642186,214,0 +170780642234,214,0 +170780642281,214,0 +170780642329,214,0 +170780642377,214,0 +170780642425,214,0 +170780642473,214,0 +170780642521,214,0 +170780642568,214,0 +170780642618,214,0 +170780642666,214,0 +170780642714,214,0 +170780642762,214,0 +170780642809,215,0 +170780642857,215,0 +170780642907,214,0 +170780642955,214,0 +170780643002,214,0 +170780643050,214,0 +170780643098,214,0 +170780643146,214,0 +170780643194,214,0 +170780643242,214,0 +170780643290,214,0 +170780643337,214,0 +170780643385,214,0 +170780643433,214,0 +170780643483,214,0 +170780643532,214,0 +170780643580,214,0 +170780643628,214,0 +170780643678,214,0 +170780643727,214,0 +170780643775,214,0 +170780643823,214,0 +170780643872,214,0 +170780643920,214,0 +170780643968,214,0 +170780644016,214,0 +170780644064,214,0 +170780644112,214,0 +170780644160,214,0 +170780644209,214,0 +170780644259,214,0 +170780644307,214,0 +170780644355,214,0 +170780644404,215,0 +170780644452,215,0 +170780644500,214,0 +170780644548,214,0 +170780644596,214,0 +170780644644,214,0 +170780644692,214,0 +170780644740,214,0 +170780644788,214,0 +170780644836,214,0 +170780644884,214,0 +170780644932,215,0 +170780644980,215,0 +170780645028,215,0 +170780645076,215,0 +170780645124,215,0 +170780645172,215,0 +170780645221,215,0 +170780645269,215,0 +170780645318,215,0 +170780645366,215,0 +170780645416,215,0 +170780645464,215,0 +170780645512,214,0 +170780645560,214,0 +170780645607,215,0 +170780645655,215,0 +170780645705,215,0 +170780645753,215,0 +170780645802,215,0 +170780645852,215,0 +170780645900,215,0 +170780645948,214,0 +170780645997,215,0 +170780646045,215,0 +170780646093,215,0 +170780646141,215,0 +170780646189,215,0 +170780646236,215,0 +170780646284,215,0 +170780646334,215,0 +170780646383,215,0 +170780646431,215,0 +170780646479,215,0 +170780646529,214,0 +170780646577,215,0 +170780646626,215,0 +170780646676,215,0 +170780646724,214,0 +170780646773,215,0 +170780646821,214,0 +170780646871,215,0 +170780646919,215,0 +170780646966,214,0 +170780647016,214,0 +170780647064,214,0 +170780647113,214,0 +170780647161,214,0 +170780647209,214,0 +170780647259,214,0 +170780647307,214,0 +170780647356,214,0 +170780647404,214,0 +170780647453,214,0 +170780647501,214,0 +170780647549,214,0 +170780647599,214,0 +170780647647,214,0 +170780647695,214,0 +170780647743,214,0 +170780647791,214,0 +170780647840,213,0 +170780647888,213,0 +170780647938,213,0 +170780647987,214,0 +170780648035,214,0 +170780648083,214,0 +170780648131,214,0 +170780648181,214,0 +170780648230,214,0 +170780648280,214,0 +170780648329,214,0 +170780648377,214,0 +170780648425,214,0 +170780648473,214,0 +170780648521,214,0 +170780648569,214,0 +170780648618,214,0 +170780648668,213,0 +170780648717,214,0 +170780648767,214,0 +170780648815,214,0 +170780648863,214,0 +170780648912,214,0 +170780648962,214,0 +170780649010,214,0 +170780649059,214,0 +170780649109,214,0 +170780649158,214,0 +170780649208,214,0 +170780649257,214,0 +170780649307,214,0 +170780649355,214,0 +170780649404,214,0 +170780649452,214,0 +170780649500,214,0 +170780649550,214,0 +170780649599,214,0 +170780649647,214,0 +170780649695,214,0 +170780649743,214,0 +170780649790,214,0 +170780649840,214,0 +170780649888,214,0 +170780649936,214,0 +170780649985,215,0 +170780650033,215,0 +170780650081,214,0 +170780650129,215,0 +170780650177,214,0 +170780650225,214,0 +170780650273,214,0 +170780650321,213,0 +170780650369,214,0 +170780650418,214,0 +170780650466,214,0 +170780650514,214,0 +170780650563,214,0 +170780650613,214,0 +170780650661,214,0 +170780650709,214,0 +170780650757,214,0 +170780650805,214,0 +170780650853,214,0 +170780650901,214,0 +170780650948,214,0 +170780650998,214,0 +170780651046,214,0 +170780651094,213,0 +170780651142,213,0 +170780651191,214,0 +170780651241,214,0 +170780651289,214,0 +170780651337,214,0 +170780651385,214,0 +170780651433,214,0 +170780651481,214,0 +170780651528,214,0 +170780651576,214,0 +170780651626,215,0 +170780651675,214,0 +170780651725,214,0 +170780651773,214,0 +170780651822,213,0 +170780651872,213,0 +170780651921,213,0 +170780651969,213,0 +170780652019,213,0 +170780652068,214,0 +170780652116,214,0 +170780652164,214,0 +170780652212,214,0 +170780652260,214,0 +170780652308,214,0 +170780652356,214,0 +170780652406,214,0 +170780652454,214,0 +170780652503,215,0 +170780652553,214,0 +170780652601,214,0 +170780652649,213,0 +170780652698,213,0 +170780652746,213,0 +170780652794,213,0 +170780652844,214,0 +170780652891,214,0 +170780652941,214,0 +170780652989,214,0 +170780653037,214,0 +170780653085,214,0 +170780653133,214,0 +170780653182,214,0 +170780653230,214,0 +170780653278,214,0 +170780653326,214,0 +170780653374,214,0 +170780653422,214,0 +170780653470,213,0 +170780653517,214,0 +170780653565,214,0 +170780653615,214,0 +170780653663,214,0 +170780653711,214,0 +170780653759,214,0 +170780653807,214,0 +170780653855,214,0 +170780653902,214,0 +170780653950,214,0 +170780653998,214,0 +170780654048,215,0 +170780654097,215,0 +170780654145,215,0 +170780654195,214,0 +170780654243,214,0 +170780654290,214,0 +170780654339,214,0 +170780654386,214,0 +170780654436,214,0 +170780654484,214,0 +170780654532,214,0 +170780654580,214,0 +170780654629,214,0 +170780654679,214,0 +170780654727,214,0 +170780654775,215,0 +170780654823,214,0 +170780654871,215,0 +170780654919,214,0 +170780654968,214,0 +170780655018,214,0 +170780655067,214,0 +170780655115,214,0 +170780655165,214,0 +170780655213,214,0 +170780655262,214,0 +170780655310,214,0 +170780655358,214,0 +170780655406,214,0 +170780655456,214,0 +170780655505,214,0 +170780655553,214,0 +170780655601,214,0 +170780655649,214,0 +170780655698,214,0 +170780655746,214,0 +170780655794,214,0 +170780655844,214,0 +170780655892,214,0 +170780655940,214,0 +170780655989,214,0 +170780656037,214,0 +170780656085,214,0 +170780656135,214,0 +170780656182,214,0 +170780656230,214,0 +170780656280,214,0 +170780656328,214,0 +170780656376,214,0 +170780656425,214,0 +170780656473,214,0 +170780656523,214,0 +170780656572,214,0 +170780656620,214,0 +170780656670,214,0 +170780656719,213,0 +170780656767,213,0 +170780656817,214,0 +170780656865,214,0 +170780656912,214,0 +170780656962,214,0 +170780657010,214,0 +170780657058,214,0 +170780657106,214,0 +170780657155,215,0 +170780657205,214,0 +170780657253,214,0 +170780657302,215,0 +170780657352,215,0 +170780657401,214,0 +170780657449,214,0 +170780657497,214,0 +170780657545,214,0 +170780657593,214,0 +170780657641,214,0 +170780657689,214,0 +170780657738,214,0 +170780657788,214,0 +170780657837,214,0 +170780657885,214,0 +170780657933,214,0 +170780657981,214,0 +170780658031,214,0 +170780658079,215,0 +170780658128,214,0 +170780658176,214,0 +170780658224,214,0 +170780658272,214,0 +170780658320,214,0 +170780658368,214,0 +170780658417,214,0 +170780658467,214,0 +170780658515,214,0 +170780658564,214,0 +170780658614,214,0 +170780658662,215,0 +170780658710,214,0 +170780658758,214,0 +170780658807,214,0 +170780658855,215,0 +170780658903,215,0 +170780658951,214,0 +170780659000,215,0 +170780659048,214,0 +170780659096,213,0 +170780659146,213,0 +170780659195,213,0 +170780659243,214,0 +170780659291,213,0 +170780659339,214,0 +170780659389,214,0 +170780659438,214,0 +170780659486,214,0 +170780659534,214,0 +170780659584,214,0 +170780659631,214,0 +170780659679,214,0 +170780659729,214,0 +170780659777,215,0 +170780659826,214,0 +170780659874,213,0 +170780659922,213,0 +170780659970,213,0 +170780660018,213,0 +170780660066,214,0 +170780660113,214,0 +170780660161,214,0 +170780660211,214,0 +170780660259,214,0 +170780660307,214,0 +170780660355,214,0 +170780660404,214,0 +170780660452,214,0 +170780660501,214,0 +170780660551,214,0 +170780660600,214,0 +170780660650,214,0 +170780660698,214,0 +170780660746,214,0 +170780660794,214,0 +170780660843,214,0 +170780660893,214,0 +170780660941,214,0 +170780660990,214,0 +170780661038,214,0 +170780661088,214,0 +170780661136,214,0 +170780661185,215,0 +170780661234,214,0 +170780661284,214,0 +170780661332,214,0 +170780661381,214,0 +170780661429,214,0 +170780661477,213,0 +170780661525,214,0 +170780661573,214,0 +170780661621,214,0 +170780661669,214,0 +170780661717,214,0 +170780661765,214,0 +170780661814,214,0 +170780661862,214,0 +170780661910,214,0 +170780661960,214,0 +170780662009,214,0 +170780662057,215,0 +170780662105,214,0 +170780662153,215,0 +170780662201,214,0 +170780662249,214,0 +170780662297,214,0 +170780662345,214,0 +170780662394,214,0 +170780662442,214,0 +170780662490,214,0 +170780662538,214,0 +170780662586,214,0 +170780662634,214,0 +170780662682,214,0 +170780662731,214,0 +170780662781,214,0 +170780662830,214,0 +170780662878,214,0 +170780662926,214,0 +170780662974,214,0 +170780663022,214,0 +170780663070,214,0 +170780663118,214,0 +170780663168,214,0 +170780663217,214,0 +170780663265,214,0 +170780663313,214,0 +170780663361,214,0 +170780663409,214,0 +170780663457,214,0 +170780663507,214,0 +170780663555,214,0 +170780663604,214,0 +170780663652,214,0 +170780663700,214,0 +170780663748,214,0 +170780663795,215,0 +170780663843,214,0 +170780663893,214,0 +170780663941,214,0 +170780663988,214,0 +170780664036,214,0 +170780664084,214,0 +170780664132,214,0 +170780664180,214,0 +170780664228,214,0 +170780664276,214,0 +170780664324,214,0 +170780664373,214,0 +170780664421,214,0 +170780664469,214,0 +170780664517,214,0 +170780664565,214,0 +170780664613,214,0 +170780664661,214,0 +170780664710,214,0 +170780664758,214,0 +170780664806,214,0 +170780664853,214,0 +170780664903,214,0 +170780664951,214,0 +170780664999,214,0 +170780665046,214,0 +170780665094,214,0 +170780665142,214,0 +170780665190,215,0 +170780665238,214,0 +170780665286,214,0 +170780665333,214,0 +170780665381,214,0 +170780665431,214,0 +170780665479,214,0 +170780665527,214,0 +170780665576,214,0 +170780665626,214,0 +170780665674,214,0 +170780665722,214,0 +170780665771,214,0 +170780665819,214,0 +170780665867,214,0 +170780665915,214,0 +170780665963,214,0 +170780666012,214,0 +170780666060,215,0 +170780666108,214,0 +170780666157,214,0 +170780666207,214,0 +170780666256,214,0 +170780666304,213,0 +170780666352,213,0 +170780666399,214,0 +170780666447,213,0 +170780666495,213,0 +170780666544,214,0 +170780666592,214,0 +170780666640,214,0 +170780666688,214,0 +170780666736,214,0 +170780666783,214,0 +170780666831,214,0 +170780666879,214,0 +170780666927,214,0 +170780666975,214,0 +170780667023,214,0 +170780667071,213,0 +170780667118,213,0 +170780667166,213,0 +170780667214,213,0 +170780667262,213,0 +170780667310,213,0 +170780667358,214,0 +170780667407,214,0 +170780667455,214,0 +170780667503,214,0 +170780667551,214,0 +170780667600,214,0 +170780667648,214,0 +170780667698,214,0 +170780667746,214,0 +170780667795,214,0 +170780667843,214,0 +170780667893,213,0 +170780667940,213,0 +170780667988,213,0 +170780668036,213,0 +170780668086,213,0 +170780668134,214,0 +170780668183,213,0 +170780668231,214,0 +170780668279,214,0 +170780668328,214,0 +170780668378,214,0 +170780668426,214,0 +170780668473,214,0 +170780668523,214,0 +170780668571,214,0 +170780668620,214,0 +170780668668,214,0 +170780668716,213,0 +170780668763,214,0 +170780668811,213,0 +170780668861,214,0 +170780668908,214,0 +170780668956,214,0 +170780669004,214,0 +170780669052,214,0 +170780669102,214,0 +170780669151,214,0 +170780669199,214,0 +170780669247,214,0 +170780669295,214,0 +170780669343,214,0 +170780669390,214,0 +170780669438,214,0 +170780669486,214,0 +170780669534,214,0 +170780669582,214,0 +170780669629,214,0 +170780669677,214,0 +170780669725,214,0 +170780669773,214,0 +170780669821,214,0 +170780669869,214,0 +170780669917,214,0 +170780669966,214,0 +170780670014,215,0 +170780670062,214,0 +170780670110,214,0 +170780670158,214,0 +170780670206,214,0 +170780670255,214,0 +170780670305,214,0 +170780670352,214,0 +170780670400,214,0 +170780670450,214,0 +170780670499,214,0 +170780670547,214,0 +170780670597,214,0 +170780670646,214,0 +170780670694,214,0 +170780670742,214,0 +170780670790,214,0 +170780670838,214,0 +170780670888,214,0 +170780670937,214,0 +170780670985,215,0 +170780671035,214,0 +170780671084,213,0 +170780671132,214,0 +170780671182,214,0 +170780671230,214,0 +170780671278,214,0 +170780671327,214,0 +170780671375,214,0 +170780671423,214,0 +170780671472,214,0 +170780671520,214,0 +170780671568,214,0 +170780671616,214,0 +170780671666,214,0 +170780671715,215,0 +170780671765,214,0 +170780671813,214,0 +170780671861,213,0 +170780671910,213,0 +170780671958,213,0 +170780672008,213,0 +170780672057,213,0 +170780672105,214,0 +170780672153,214,0 +170780672201,214,0 +170780672249,214,0 +170780672299,214,0 +170780672347,214,0 +170780672395,214,0 +170780672444,214,0 +170780672492,214,0 +170780672540,214,0 +170780672589,214,0 +170780672637,214,0 +170780672685,213,0 +170780672733,213,0 +170780672781,213,0 +170780672829,214,0 +170780672877,214,0 +170780672926,214,0 +170780672974,214,0 +170780673022,214,0 +170780673070,214,0 +170780673118,214,0 +170780673168,214,0 +170780673217,214,0 +170780673265,214,0 +170780673315,214,0 +170780673363,214,0 +170780673410,214,0 +170780673460,213,0 +170780673508,213,0 +170780673558,214,0 +170780673607,214,0 +170780673655,214,0 +170780673703,214,0 +170780673751,214,0 +170780673799,214,0 +170780673847,214,0 +170780673896,214,0 +170780673944,214,0 +170780673994,214,0 +170780674042,214,0 +170780674091,215,0 +170780674139,215,0 +170780674187,215,0 +170780674236,215,0 +170780674284,215,0 +170780674332,215,0 +170780674380,215,0 +170780674428,215,0 +170780674475,214,0 +170780674523,215,0 +170780674571,215,0 +170780674619,214,0 +170780674667,214,0 +170780674715,214,0 +170780674762,214,0 +170780674810,214,0 +170780674858,214,0 +170780674906,214,0 +170780674954,214,0 +170780675002,215,0 +170780675051,214,0 +170780675099,214,0 +170780675149,215,0 +170780675197,215,0 +170780675245,215,0 +170780675292,215,0 +170780675342,214,0 +170780675391,214,0 +170780675439,214,0 +170780675487,214,0 +170780675535,214,0 +170780675585,214,0 +170780675634,214,0 +170780675682,214,0 +170780675732,214,0 +170780675780,214,0 +170780675829,214,0 +170780675877,215,0 +170780675925,215,0 +170780675973,214,0 +170780676022,214,0 +170780676070,214,0 +170780676118,214,0 +170780676166,214,0 +170780676214,214,0 +170780676264,214,0 +170780676311,213,0 +170780676359,214,0 +170780676409,214,0 +170780676457,214,0 +170780676505,214,0 +170780676553,214,0 +170780676601,214,0 +170780676649,214,0 +170780676697,214,0 +170780676745,214,0 +170780676792,214,0 +170780676840,214,0 +170780676890,214,0 +170780676938,214,0 +170780676987,214,0 +170780677035,214,0 +170780677085,213,0 +170780677132,213,0 +170780677180,214,0 +170780677228,213,0 +170780677276,213,0 +170780677326,213,0 +170780677374,214,0 +170780677422,214,0 +170780677471,214,0 +170780677521,214,0 +170780677570,214,0 +170780677618,214,0 +170780677666,214,0 +170780677716,214,0 +170780677765,214,0 +170780677814,214,0 +170780677862,214,0 +170780677910,213,0 +170780677958,213,0 +170780678006,213,0 +170780678054,213,0 +170780678104,214,0 +170780678153,214,0 +170780678203,214,0 +170780678251,214,0 +170780678298,214,0 +170780678346,214,0 +170780678396,214,0 +170780678445,214,0 +170780678495,214,0 +170780678543,214,0 +170780678591,214,0 +170780678639,214,0 +170780678686,213,0 +170780678734,213,0 +170780678784,213,0 +170780678832,213,0 +170780678880,214,0 +170780678928,214,0 +170780678976,214,0 +170780679024,213,0 +170780679071,214,0 +170780679121,214,0 +170780679170,214,0 +170780679220,214,0 +170780679268,214,0 +170780679317,214,0 +170780679367,214,0 +170780679415,214,0 +170780679463,214,0 +170780679511,213,0 +170780679559,213,0 +170780679608,213,0 +170780679656,214,0 +170780679704,214,0 +170780679752,213,0 +170780679802,214,0 +170780679849,214,0 +170780679897,214,0 +170780679945,214,0 +170780679993,214,0 +170780680041,214,0 +170780680091,214,0 +170780680140,214,0 +170780680188,214,0 +170780680238,214,0 +170780680286,213,0 +170780680334,213,0 +170780680383,213,0 +170780680431,213,0 +170780680479,213,0 +170780680527,214,0 +170780680575,213,0 +170780680624,214,0 +170780680674,214,0 +170780680721,214,0 +170780680769,214,0 +170780680817,214,0 +170780680867,214,0 +170780680916,214,0 +170780680966,214,0 +170780681014,214,0 +170780681063,214,0 +170780681113,213,0 +170780681162,213,0 +170780681210,213,0 +170780681258,214,0 +170780681306,214,0 +170780681354,213,0 +170780681402,214,0 +170780681451,214,0 +170780681499,214,0 +170780681549,214,0 +170780681597,214,0 +170780681645,214,0 +170780681693,214,0 +170780681742,214,0 +170780681792,214,0 +170780681841,214,0 +170780681891,214,0 +170780681939,214,0 +170780681988,214,0 +170780682036,214,0 +170780682086,214,0 +170780682133,214,0 +170780682181,214,0 +170780682229,214,0 +170780682277,214,0 +170780682327,214,0 +170780682376,215,0 +170780682424,215,0 +170780682472,215,0 +170780682522,215,0 +170780682570,214,0 +170780682618,214,0 +170780682667,214,0 +170780682715,214,0 +170780682765,214,0 +170780682814,214,0 +170780682863,214,0 +170780682911,214,0 +170780682961,214,0 +170780683010,215,0 +170780683058,215,0 +170780683108,215,0 +170780683157,215,0 +170780683205,215,0 +170780683255,214,0 +170780683304,215,0 +170780683352,215,0 +170780683400,214,0 +170780683448,214,0 +170780683498,214,0 +170780683545,214,0 +170780683593,214,0 +170780683641,214,0 +170780683689,214,0 +170780683737,214,0 +170780683785,214,0 +170780683833,215,0 +170780683883,215,0 +170780683932,214,0 +170780683980,215,0 +170780684028,215,0 +170780684076,214,0 +170780684124,215,0 +170780684173,214,0 +170780684221,214,0 +170780684271,214,0 +170780684318,214,0 +170780684366,214,0 +170780684414,214,0 +170780684462,214,0 +170780684510,214,0 +170780684558,214,0 +170780684606,214,0 +170780684654,214,0 +170780684702,214,0 +170780684751,215,0 +170780684801,214,0 +170780684850,215,0 +170780684900,214,0 +170780684948,214,0 +170780684997,214,0 +170780685045,214,0 +170780685095,214,0 +170780685143,214,0 +170780685192,214,0 +170780685240,214,0 +170780685288,214,0 +170780685336,214,0 +170780685384,214,0 +170780685431,214,0 +170780685479,214,0 +170780685527,214,0 +170780685575,215,0 +170780685623,215,0 +170780685671,214,0 +170780685718,215,0 +170780685766,214,0 +170780685814,215,0 +170780685862,214,0 +170780685910,214,0 +170780685958,214,0 +170780686005,214,0 +170780686053,214,0 +170780686101,214,0 +170780686149,214,0 +170780686197,214,0 +170780686244,214,0 +170780686292,214,0 +170780686340,214,0 +170780686388,214,0 +170780686436,214,0 +170780686484,214,0 +170780686531,214,0 +170780686579,214,0 +170780686627,214,0 +170780686675,214,0 +170780686723,213,0 +170780686771,213,0 +170780686819,214,0 +170780686866,214,0 +170780686916,214,0 +170780686964,214,0 +170780687012,214,0 +170780687059,214,0 +170780687109,214,0 +170780687156,214,0 +170780687204,214,0 +170780687252,214,0 +170780687300,214,0 +170780687348,214,0 +170780687395,214,0 +170780687443,214,0 +170780687491,214,0 +170780687539,213,0 +170780687587,213,0 +170780687635,213,0 +170780687683,213,0 +170780687731,214,0 +170780687778,214,0 +170780687826,214,0 +170780687874,214,0 +170780687922,214,0 +170780687969,214,0 +170780688019,214,0 +170780688067,214,0 +170780688115,214,0 +170780688162,214,0 +170780688210,214,0 +170780688258,214,0 +170780688306,213,0 +170780688354,213,0 +170780688402,213,0 +170780688450,213,0 +170780688498,213,0 +170780688547,213,0 +170780688595,214,0 +170780688643,214,0 +170780688693,214,0 +170780688740,214,0 +170780688788,214,0 +170780688836,214,0 +170780688884,214,0 +170780688931,214,0 +170780688979,214,0 +170780689027,214,0 +170780689075,214,0 +170780689123,213,0 +170780689171,213,0 +170780689219,213,0 +170780689266,214,0 +170780689314,214,0 +170780689362,214,0 +170780689410,214,0 +170780689460,214,0 +170780689508,214,0 +170780689555,214,0 +170780689605,214,0 +170780689653,214,0 +170780689702,214,0 +170780689750,215,0 +170780689798,214,0 +170780689846,214,0 +170780689895,214,0 +170780689943,213,0 +170780689991,213,0 +170780690038,214,0 +170780690086,214,0 +170780690134,214,0 +170780690182,214,0 +170780690230,214,0 +170780690277,214,0 +170780690325,214,0 +170780690373,214,0 +170780690421,214,0 +170780690470,214,0 +170780690518,214,0 +170780690566,214,0 +170780690614,214,0 +170780690662,214,0 +170780690709,213,0 +170780690757,214,0 +170780690805,213,0 +170780690855,214,0 +170780690904,214,0 +170780690952,214,0 +170780691000,214,0 +170780691048,214,0 +170780691097,214,0 +170780691145,214,0 +170780691193,214,0 +170780691241,214,0 +170780691289,215,0 +170780691337,214,0 +170780691384,214,0 +170780691432,214,0 +170780691480,214,0 +170780691528,213,0 +170780691577,214,0 +170780691625,214,0 +170780691673,214,0 +170780691722,214,0 +170780691770,214,0 +170780691818,214,0 +170780691866,214,0 +170780691915,214,0 +170780691965,214,0 +170780692013,214,0 +170780692061,214,0 +170780692109,214,0 +170780692156,214,0 +170780692204,215,0 +170780692252,215,0 +170780692300,214,0 +170780692348,213,0 +170780692396,213,0 +170780692444,214,0 +170780692491,214,0 +170780692539,214,0 +170780692587,214,0 +170780692637,214,0 +170780692684,214,0 +170780692732,214,0 +170780692780,214,0 +170780692828,214,0 +170780692876,214,0 +170780692925,214,0 +170780692975,214,0 +170780693024,214,0 +170780693072,214,0 +170780693120,214,0 +170780693168,214,0 +170780693217,214,0 +170780693265,214,0 +170780693313,214,0 +170780693361,214,0 +170780693409,214,0 +170780693457,214,0 +170780693506,214,0 +170780693556,214,0 +170780693604,214,0 +170780693652,214,0 +170780693701,215,0 +170780693749,214,0 +170780693797,214,0 +170780693846,215,0 +170780693896,214,0 +170780693944,214,0 +170780693993,215,0 +170780694041,214,0 +170780694091,214,0 +170780694139,214,0 +170780694187,215,0 +170780694236,215,0 +170780694284,215,0 +170780694332,215,0 +170780694380,215,0 +170780694428,215,0 +170780694476,215,0 +170780694524,215,0 +170780694572,215,0 +170780694620,215,0 +170780694667,214,0 +170780694715,214,0 +170780694763,214,0 +170780694811,214,0 +170780694859,214,0 +170780694907,215,0 +170780694955,215,0 +170780695003,214,0 +170780695050,215,0 +170780695098,214,0 +170780695146,215,0 +170780695196,215,0 +170780695245,215,0 +170780695293,215,0 +170780695341,215,0 +170780695389,214,0 +170780695436,214,0 +170780695484,214,0 +170780695532,214,0 +170780695580,214,0 +170780695628,214,0 +170780695676,214,0 +170780695724,214,0 +170780695773,214,0 +170780695821,214,0 +170780695871,214,0 +170780695919,215,0 +170780695968,214,0 +170780696016,215,0 +170780696065,215,0 +170780696113,215,0 +170780696161,215,0 +170780696211,215,0 +170780696260,214,0 +170780696310,214,0 +170780696359,214,0 +170780696409,214,0 +170780696457,214,0 +170780696506,214,0 +170780696556,214,0 +170780696604,214,0 +170780696653,214,0 +170780696702,214,0 +170780696750,214,0 +170780696800,214,0 +170780696848,214,0 +170780696897,214,0 +170780696945,214,0 +170780696993,214,0 +170780697041,214,0 +170780697089,214,0 +170780697139,214,0 +170780697188,214,0 +170780697236,214,0 +170780697284,214,0 +170780697332,214,0 +170780697382,214,0 +170780697430,214,0 +170780697478,214,0 +170780697527,214,0 +170780697577,214,0 +170780697625,214,0 +170780697673,214,0 +170780697721,215,0 +170780697770,215,0 +170780697820,214,0 +170780697868,214,0 +170780697915,214,0 +170780697965,213,0 +170780698014,213,0 +170780698062,214,0 +170780698112,214,0 +170780698160,214,0 +170780698209,214,0 +170780698259,214,0 +170780698307,214,0 +170780698355,214,0 +170780698404,214,0 +170780698452,214,0 +170780698500,215,0 +170780698548,214,0 +170780698596,214,0 +170780698645,214,0 +170780698693,214,0 +170780698743,213,0 +170780698792,213,0 +170780698840,214,0 +170780698888,214,0 +170780698936,214,0 +170780698984,214,0 +170780699032,214,0 +170780699080,214,0 +170780699128,214,0 +170780699177,214,0 +170780699225,214,0 +170780699275,214,0 +170780699324,214,0 +170780699374,214,0 +170780699422,214,0 +170780699471,215,0 +170780699519,214,0 +170780699569,213,0 +170780699617,213,0 +170780699665,213,0 +170780699713,214,0 +170780699760,214,0 +170780699808,214,0 +170780699858,214,0 +170780699906,214,0 +170780699954,214,0 +170780700002,214,0 +170780700050,214,0 +170780700098,214,0 +170780700146,214,0 +170780700195,214,0 +170780700243,214,0 +170780700293,214,0 +170780700340,213,0 +170780700388,214,0 +170780700436,214,0 +170780700484,214,0 +170780700532,214,0 +170780700582,214,0 +170780700630,214,0 +170780700678,214,0 +170780700727,214,0 +170780700777,214,0 +170780700826,214,0 +170780700874,214,0 +170780700922,214,0 +170780700972,214,0 +170780701019,215,0 +170780701067,215,0 +170780701117,214,0 +170780701166,214,0 +170780701214,213,0 +170780701262,214,0 +170780701310,214,0 +170780701358,214,0 +170780701408,214,0 +170780701457,214,0 +170780701507,214,0 +170780701556,214,0 +170780701604,214,0 +170780701652,214,0 +170780701702,214,0 +170780701749,214,0 +170780701797,215,0 +170780701845,214,0 +170780701895,214,0 +170780701944,214,0 +170780701992,214,0 +170780702040,214,0 +170780702088,214,0 +170780702138,214,0 +170780702186,214,0 +170780702234,214,0 +170780702282,214,0 +170780702329,214,0 +170780702377,214,0 +170780702427,214,0 +170780702475,214,0 +170780702524,215,0 +170780702572,214,0 +170780702622,215,0 +170780702670,214,0 +170780702718,214,0 +170780702768,214,0 +170780702817,214,0 +170780702867,214,0 +170780702915,214,0 +170780702963,214,0 +170780703012,214,0 +170780703060,214,0 +170780703108,214,0 +170780703156,214,0 +170780703206,214,0 +170780703253,214,0 +170780703301,214,0 +170780703351,214,0 +170780703400,214,0 +170780703450,214,0 +170780703499,215,0 +170780703547,214,0 +170780703597,214,0 +170780703645,214,0 +170780703694,214,0 +170780703742,214,0 +170780703792,214,0 +170780703841,214,0 +170780703889,214,0 +170780703937,214,0 +170780703985,214,0 +170780704033,214,0 +170780704081,215,0 +170780704129,214,0 +170780704177,215,0 +170780704226,214,0 +170780704274,214,0 +170780704322,214,0 +170780704370,214,0 +170780704418,214,0 +170780704466,214,0 +170780704516,214,0 +170780704564,214,0 +170780704613,214,0 +170780704661,214,0 +170780704709,214,0 +170780704757,214,0 +170780704806,215,0 +170780704854,215,0 +170780704902,215,0 +170780704950,215,0 +170780705000,214,0 +170780705048,214,0 +170780705097,215,0 +170780705145,214,0 +170780705195,214,0 +170780705243,214,0 +170780705292,214,0 +170780705340,214,0 +170780705388,214,0 +170780705436,214,0 +170780705484,214,0 +170780705532,214,0 +170780705580,215,0 +170780705629,215,0 +170780705679,214,0 +170780705728,214,0 +170780705777,215,0 +170780705827,215,0 +170780705875,215,0 +170780705923,214,0 +170780705972,214,0 +170780706022,214,0 +170780706070,214,0 +170780706118,214,0 +170780706166,215,0 +170780706214,214,0 +170780706261,214,0 +170780706309,214,0 +170780706357,214,0 +170780706405,215,0 +170780706453,214,0 +170780706503,215,0 +170780706550,215,0 +170780706600,214,0 +170780706648,215,0 +170780706696,214,0 +170780706745,214,0 +170780706793,214,0 +170780706843,214,0 +170780706892,215,0 +170780706942,214,0 +170780706990,214,0 +170780707038,214,0 +170780707087,215,0 +170780707137,215,0 +170780707186,215,0 +170780707234,215,0 +170780707283,215,0 +170780707333,215,0 +170780707383,214,0 +170780707432,214,0 +170780707481,215,0 +170780707529,214,0 +170780707579,214,0 +170780707627,214,0 +170780707675,214,0 +170780707724,214,0 +170780707772,214,0 +170780707820,214,0 +170780707868,214,0 +170780707918,214,0 +170780707967,215,0 +170780708015,214,0 +170780708063,215,0 +170780708112,215,0 +170780708160,214,0 +170780708210,215,0 +170780708258,215,0 +170780708307,214,0 +170780708357,214,0 +170780708406,214,0 +170780708454,214,0 +170780708502,214,0 +170780708550,214,0 +170780708600,214,0 +170780708648,214,0 +170780708695,214,0 +170780708745,214,0 +170780708793,214,0 +170780708842,214,0 +170780708890,215,0 +170780708938,215,0 +170780708986,215,0 +170780709034,214,0 +170780709082,214,0 +170780709131,214,0 +170780709179,213,0 +170780709227,213,0 +170780709275,214,0 +170780709323,214,0 +170780709371,214,0 +170780709421,214,0 +170780709468,214,0 +170780709518,214,0 +170780709567,214,0 +170780709615,214,0 +170780709663,214,0 +170780709711,214,0 +170780709759,215,0 +170780709809,214,0 +170780709856,214,0 +170780709904,214,0 +170780709952,214,0 +170780710002,214,0 +170780710051,213,0 +170780710101,214,0 +170780710149,214,0 +170780710197,214,0 +170780710245,214,0 +170780710294,214,0 +170780710342,214,0 +170780710390,214,0 +170780710439,214,0 +170780710489,214,0 +170780710539,214,0 +170780710586,214,0 +170780710636,214,0 +170780710684,214,0 +170780710733,214,0 +170780710783,214,0 +170780710831,213,0 +170780710879,214,0 +170780710928,214,0 +170780710976,214,0 +170780711026,214,0 +170780711075,214,0 +170780711125,214,0 +170780711173,214,0 +170780711222,214,0 +170780711270,214,0 +170780711320,214,0 +170780711369,215,0 +170780711417,215,0 +170780711465,214,0 +170780711515,214,0 +170780711563,213,0 +170780711612,214,0 +170780711662,213,0 +170780711710,214,0 +170780711757,214,0 +170780711807,214,0 +170780711855,214,0 +170780711904,214,0 +170780711952,214,0 +170780712000,214,0 +170780712048,214,0 +170780712096,214,0 +170780712144,214,0 +170780712192,214,0 +170780712240,214,0 +170780712288,214,0 +170780712338,214,0 +170780712385,213,0 +170780712435,214,0 +170780712483,214,0 +170780712532,214,0 +170780712580,214,0 +170780712628,214,0 +170780712678,214,0 +170780712727,214,0 +170780712775,214,0 +170780712823,215,0 +170780712871,214,0 +170780712919,215,0 +170780712967,215,0 +170780713015,215,0 +170780713063,215,0 +170780713112,214,0 +170780713162,214,0 +170780713210,214,0 +170780713259,214,0 +170780713307,214,0 +170780713355,214,0 +170780713403,214,0 +170780713451,214,0 +170780713499,214,0 +170780713547,215,0 +170780713594,214,0 +170780713642,214,0 +170780713692,214,0 +170780713740,214,0 +170780713789,214,0 +170780713837,214,0 +170780713885,214,0 +170780713933,214,0 +170780713981,214,0 +170780714029,214,0 +170780714078,214,0 +170780714128,214,0 +170780714175,214,0 +170780714223,214,0 +170780714273,214,0 +170780714322,214,0 +170780714370,214,0 +170780714418,214,0 +170780714466,214,0 +170780714514,214,0 +170780714562,214,0 +170780714610,215,0 +170780714659,214,0 +170780714707,214,0 +170780714755,214,0 +170780714803,213,0 +170780714851,214,0 +170780714900,213,0 +170780714950,214,0 +170780714998,214,0 +170780715047,214,0 +170780715095,214,0 +170780715143,214,0 +170780715191,214,0 +170780715239,214,0 +170780715287,214,0 +170780715335,214,0 +170780715383,214,0 +170780715432,214,0 +170780715480,215,0 +170780715529,214,0 +170780715577,213,0 +170780715625,213,0 +170780715673,214,0 +170780715721,214,0 +170780715769,214,0 +170780715817,214,0 +170780715866,214,0 +170780715914,214,0 +170780715964,214,0 +170780716011,214,0 +170780716059,214,0 +170780716109,214,0 +170780716159,214,0 +170780716206,214,0 +170780716254,214,0 +170780716302,215,0 +170780716350,214,0 +170780716398,213,0 +170780716446,213,0 +170780716493,213,0 +170780716543,214,0 +170780716591,214,0 +170780716639,214,0 +170780716687,214,0 +170780716736,214,0 +170780716784,214,0 +170780716834,214,0 +170780716882,214,0 +170780716929,214,0 +170780716977,214,0 +170780717027,214,0 +170780717075,214,0 +170780717124,214,0 +170780717173,214,0 +170780717221,214,0 +170780717270,213,0 +170780717319,214,0 +170780717369,214,0 +170780717417,214,0 +170780717465,214,0 +170780717513,214,0 +170780717562,214,0 +170780717610,214,0 +170780717658,214,0 +170780717706,214,0 +170780717754,214,0 +170780717802,214,0 +170780717850,214,0 +170780717899,214,0 +170780717947,214,0 +170780717997,214,0 +170780718045,214,0 +170780718094,214,0 +170780718142,214,0 +170780718190,214,0 +170780718239,214,0 +170780718287,214,0 +170780718335,214,0 +170780718383,214,0 +170780718433,215,0 +170780718480,215,0 +170780718528,214,0 +170780718576,215,0 +170780718624,214,0 +170780718672,214,0 +170780718720,214,0 +170780718769,214,0 +170780718819,214,0 +170780718867,214,0 +170780718916,214,0 +170780718966,214,0 +170780719015,214,0 +170780719063,214,0 +170780719111,214,0 +170780719159,214,0 +170780719207,215,0 +170780719255,214,0 +170780719303,214,0 +170780719351,214,0 +170780719399,214,0 +170780719448,215,0 +170780719496,214,0 +170780719545,214,0 +170780719595,214,0 +170780719643,214,0 +170780719692,214,0 +170780719742,214,0 +170780719791,214,0 +170780719839,215,0 +170780719887,214,0 +170780719935,214,0 +170780719983,214,0 +170780720031,214,0 +170780720080,215,0 +170780720128,214,0 +170780720178,214,0 +170780720226,214,0 +170780720275,214,0 +170780720325,214,0 +170780720374,213,0 +170780720422,214,0 +170780720470,214,0 +170780720518,214,0 +170780720568,214,0 +170780720616,214,0 +170780720665,214,0 +170780720713,214,0 +170780720763,214,0 +170780720811,214,0 +170780720860,214,0 +170780720909,214,0 +170780720958,214,0 +170780721005,214,0 +170780721053,214,0 +170780721101,214,0 +170780721151,214,0 +170780721200,214,0 +170780721248,214,0 +170780721296,214,0 +170780721346,214,0 +170780721395,214,0 +170780721443,214,0 +170780721491,214,0 +170780721539,214,0 +170780721587,214,0 +170780721635,214,0 +170780721683,214,0 +170780721732,214,0 +170780721782,215,0 +170780721829,214,0 +170780721877,215,0 +170780721925,214,0 +170780721975,214,0 +170780722023,214,0 +170780722070,214,0 +170780722118,214,0 +170780722166,214,0 +170780722214,214,0 +170780722261,214,0 +170780722309,214,0 +170780722359,214,0 +170780722408,214,0 +170780722456,214,0 +170780722504,214,0 +170780722552,214,0 +170780722600,214,0 +170780722648,215,0 +170780722695,214,0 +170780722743,214,0 +170780722793,214,0 +170780722841,214,0 +170780722890,214,0 +170780722938,214,0 +170780722988,214,0 +170780723037,214,0 +170780723085,214,0 +170780723133,214,0 +170780723183,214,0 +170780723232,215,0 +170780723280,214,0 +170780723328,215,0 +170780723376,215,0 +170780723424,215,0 +170780723474,215,0 +170780723521,214,0 +170780723571,214,0 +170780723619,214,0 +170780723667,214,0 +170780723716,214,0 +170780723764,214,0 +170780723814,214,0 +170780723862,214,0 +170780723910,214,0 +170780723958,214,0 +170780724007,215,0 +170780724055,215,0 +170780724105,215,0 +170780724153,214,0 +170780724201,215,0 +170780724249,214,0 +170780724297,214,0 +170780724344,214,0 +170780724394,214,0 +170780724442,214,0 +170780724490,214,0 +170780724538,214,0 +170780724585,214,0 +170780724633,214,0 +170780724683,214,0 +170780724731,214,0 +170780724779,214,0 +170780724827,214,0 +170780724875,214,0 +170780724922,215,0 +170780724970,215,0 +170780725018,214,0 +170780725066,214,0 +170780725114,214,0 +170780725162,214,0 +170780725210,213,0 +170780725258,213,0 +170780725307,213,0 +170780725356,214,0 +170780725404,214,0 +170780725453,214,0 +170780725503,214,0 +170780725552,214,0 +170780725600,214,0 +170780725650,214,0 +170780725697,214,0 +170780725745,215,0 +170780725795,214,0 +170780725843,214,0 +170780725892,214,0 +170780725942,214,0 +170780725991,213,0 +170780726039,213,0 +170780726087,213,0 +170780726135,213,0 +170780726183,214,0 +170780726231,214,0 +170780726279,214,0 +170780726327,214,0 +170780726375,214,0 +170780726424,214,0 +170780726472,214,0 +170780726522,214,0 +170780726570,214,0 +170780726619,214,0 +170780726667,214,0 +170780726715,214,0 +170780726763,214,0 +170780726811,213,0 +170780726859,213,0 +170780726908,213,0 +170780726956,214,0 +170780727006,213,0 +170780727054,214,0 +170780727103,214,0 +170780727153,214,0 +170780727201,214,0 +170780727249,214,0 +170780727297,214,0 +170780727346,214,0 +170780727396,214,0 +170780727445,214,0 +170780727493,214,0 +170780727541,214,0 +170780727591,213,0 +170780727639,213,0 +170780727687,213,0 +170780727734,213,0 +170780727782,213,0 +170780727830,213,0 +170780727878,213,0 +170780727926,214,0 +170780727976,213,0 +170780728024,214,0 +170780728073,214,0 +170780728121,214,0 +170780728169,214,0 +170780728218,214,0 +170780728266,214,0 +170780728314,214,0 +170780728362,214,0 +170780728410,213,0 +170780728458,213,0 +170780728506,213,0 +170780728554,213,0 +170780728603,213,0 +170780728651,213,0 +170780728699,213,0 +170780728747,214,0 +170780728796,213,0 +170780728844,214,0 +170780728894,214,0 +170780728943,214,0 +170780728993,214,0 +170780729042,214,0 +170780729092,214,0 +170780729140,214,0 +170780729187,213,0 +170780729237,213,0 +170780729286,213,0 +170780729334,213,0 +170780729384,213,0 +170780729432,214,0 +170780729481,213,0 +170780729529,214,0 +170780729578,213,0 +170780729628,214,0 +170780729677,214,0 +170780729725,214,0 +170780729775,214,0 +170780729824,214,0 +170780729872,215,0 +170780729920,214,0 +170780729968,214,0 +170780730017,213,0 +170780730065,213,0 +170780730113,213,0 +170780730163,213,0 +170780730211,213,0 +170780730258,213,0 +170780730306,214,0 +170780730354,214,0 +170780730403,214,0 +170780730451,214,0 +170780730500,214,0 +170780730548,214,0 +170780730596,214,0 +170780730644,214,0 +170780730694,214,0 +170780730743,214,0 +170780730791,214,0 +170780730839,214,0 +170780730887,214,0 +170780730935,214,0 +170780730983,214,0 +170780731031,214,0 +170780731079,214,0 +170780731127,214,0 +170780731176,214,0 +170780731224,214,0 +170780731274,215,0 +170780731322,214,0 +170780731371,214,0 +170780731419,215,0 +170780731469,214,0 +170780731517,214,0 +170780731566,214,0 +170780731616,214,0 +170780731663,215,0 +170780731711,214,0 +170780731759,214,0 +170780731807,214,0 +170780731855,214,0 +170780731903,215,0 +170780731950,215,0 +170780731998,215,0 +170780732046,214,0 +170780732094,215,0 +170780732142,215,0 +170780732191,214,0 +170780732239,215,0 +170780732287,214,0 +170780732335,214,0 +170780732383,215,0 +170780732431,214,0 +170780732478,214,0 +170780732526,214,0 +170780732574,214,0 +170780732623,215,0 +170780732671,214,0 +170780732719,214,0 +170780732767,215,0 +170780732816,214,0 +170780732864,215,0 +170780732912,214,0 +170780732959,214,0 +170780733007,214,0 +170780733055,215,0 +170780733103,214,0 +170780733151,214,0 +170780733199,214,0 +170780733247,214,0 +170780733294,214,0 +170780733342,214,0 +170780733390,214,0 +170780733438,214,0 +170780733486,214,0 +170780733533,214,0 +170780733581,214,0 +170780733629,214,0 +170780733677,214,0 +170780733725,214,0 +170780733773,214,0 +170780733821,214,0 +170780733869,214,0 +170780733917,214,0 +170780733965,214,0 +170780734014,214,0 +170780734062,214,0 +170780734110,213,0 +170780734158,214,0 +170780734206,214,0 +170780734255,214,0 +170780734303,214,0 +170780734351,214,0 +170780734401,214,0 +170780734448,214,0 +170780734496,214,0 +170780734546,214,0 +170780734594,214,0 +170780734642,214,0 +170780734691,214,0 +170780734741,214,0 +170780734790,214,0 +170780734838,213,0 +170780734886,214,0 +170780734936,213,0 +170780734985,214,0 +170780735035,214,0 +170780735085,214,0 +170780735132,214,0 +170780735180,214,0 +170780735228,214,0 +170780735276,214,0 +170780735324,214,0 +170780735372,214,0 +170780735420,214,0 +170780735468,214,0 +170780735516,214,0 +170780735564,214,0 +170780735612,213,0 +170780735661,213,0 +170780735709,213,0 +170780735757,213,0 +170780735805,214,0 +170780735855,213,0 +170780735904,214,0 +170780735952,214,0 +170780736002,214,0 +170780736051,214,0 +170780736101,214,0 +170780736150,214,0 +170780736200,214,0 +170780736249,214,0 +170780736297,214,0 +170780736345,214,0 +170780736393,214,0 +170780736443,213,0 +170780736491,213,0 +170780736540,213,0 +170780736588,213,0 +170780736636,213,0 +170780736685,214,0 +170780736733,214,0 +170780736781,214,0 +170780736829,214,0 +170780736877,214,0 +170780736927,214,0 +170780736975,214,0 +170780737022,214,0 +170780737070,214,0 +170780737118,214,0 +170780737166,214,0 +170780737214,214,0 +170780737263,213,0 +170780737311,213,0 +170780737359,213,0 +170780737407,213,0 +170780737455,213,0 +170780737503,213,0 +170780737552,213,0 +170780737602,214,0 +170780737650,214,0 +170780737698,214,0 +170780737747,214,0 +170780737797,214,0 +170780737845,214,0 +170780737892,214,0 +170780737940,214,0 +170780737988,214,0 +170780738038,213,0 +170780738086,213,0 +170780738134,213,0 +170780738182,213,0 +170780738230,214,0 +170780738277,214,0 +170780738325,214,0 +170780738373,214,0 +170780738423,214,0 +170780738470,214,0 +170780738518,214,0 +170780738566,214,0 +170780738614,214,0 +170780738662,214,0 +170780738711,214,0 +170780738761,214,0 +170780738810,213,0 +170780738858,213,0 +170780738906,213,0 +170780738954,213,0 +170780739002,213,0 +170780739052,213,0 +170780739100,213,0 +170780739148,213,0 +170780739196,214,0 +170780739244,214,0 +170780739292,214,0 +170780739339,214,0 +170780739387,214,0 +170780739435,214,0 +170780739483,214,0 +170780739531,214,0 +170780739581,214,0 +170780739630,213,0 +170780739678,213,0 +170780739726,213,0 +170780739774,213,0 +170780739822,213,0 +170780739870,213,0 +170780739918,213,0 +170780739968,214,0 +170780740015,214,0 +170780740063,214,0 +170780740111,214,0 +170780740161,214,0 +170780740209,214,0 +170780740257,214,0 +170780740305,214,0 +170780740353,214,0 +170780740400,214,0 +170780740448,213,0 +170780740496,213,0 +170780740546,213,0 +170780740595,213,0 +170780740643,214,0 +170780740691,213,0 +170780740741,213,0 +170780740789,214,0 +170780740836,214,0 +170780740886,214,0 +170780740934,214,0 +170780740983,214,0 +170780741031,214,0 +170780741081,214,0 +170780741130,214,0 +170780741178,214,0 +170780741228,213,0 +170780741277,213,0 +170780741327,214,0 +170780741376,214,0 +170780741426,214,0 +170780741475,214,0 +170780741523,214,0 +170780741571,214,0 +170780741621,214,0 +170780741670,214,0 +170780741718,214,0 +170780741766,214,0 +170780741814,214,0 +170780741862,214,0 +170780741910,214,0 +170780741958,214,0 +170780742007,213,0 +170780742055,213,0 +170780742103,213,0 +170780742153,213,0 +170780742202,213,0 +170780742252,213,0 +170780742300,214,0 +170780742348,214,0 +170780742396,214,0 +170780742445,214,0 +170780742493,214,0 +170780742541,214,0 +170780742589,214,0 +170780742638,214,0 +170780742688,214,0 +170780742736,214,0 +170780742784,214,0 +170780742832,214,0 +170780742880,214,0 +170780742930,214,0 +170780742979,214,0 +170780743027,214,0 +170780743075,214,0 +170780743123,214,0 +170780743172,214,0 +170780743220,214,0 +170780743270,214,0 +170780743318,215,0 +170780743366,214,0 +170780743414,214,0 +170780743462,214,0 +170780743510,214,0 +170780743559,214,0 +170780743607,214,0 +170780743655,214,0 +170780743703,214,0 +170780743751,214,0 +170780743799,214,0 +170780743847,214,0 +170780743896,214,0 +170780743946,214,0 +170780743994,214,0 +170780744042,214,0 +170780744090,214,0 +170780744139,214,0 +170780744187,214,0 +170780744235,214,0 +170780744283,214,0 +170780744333,214,0 +170780744381,214,0 +170780744430,215,0 +170780744478,214,0 +170780744528,214,0 +170780744575,214,0 +170780744625,215,0 +170780744673,214,0 +170780744722,214,0 +170780744770,214,0 +170780744818,214,0 +170780744866,214,0 +170780744915,215,0 +170780744963,215,0 +170780745011,214,0 +170780745061,214,0 +170780745110,214,0 +170780745160,214,0 +170780745208,214,0 +170780745256,213,0 +170780745305,213,0 +170780745353,213,0 +170780745402,213,0 +170780745450,213,0 +170780745498,214,0 +170780745546,214,0 +170780745594,214,0 +170780745643,214,0 +170780745691,214,0 +170780745739,214,0 +170780745787,214,0 +170780745835,214,0 +170780745884,214,0 +170780745932,214,0 +170780745980,214,0 +170780746028,213,0 +170780746076,213,0 +170780746124,214,0 +170780746172,213,0 +170780746220,213,0 +170780746268,214,0 +170780746316,214,0 +170780746365,213,0 +170780746415,214,0 +170780746462,214,0 +170780746512,214,0 +170780746560,214,0 +170780746608,214,0 +170780746656,214,0 +170780746704,214,0 +170780746751,214,0 +170780746799,214,0 +170780746847,213,0 +170780746895,213,0 +170780746943,213,0 +170780746991,214,0 +170780747039,214,0 +170780747087,214,0 +170780747135,214,0 +170780747182,214,0 +170780747230,214,0 +170780747278,214,0 +170780747326,214,0 +170780747374,214,0 +170780747422,214,0 +170780747470,215,0 +170780747518,214,0 +170780747566,214,0 +170780747613,214,0 +170780747663,213,0 +170780747711,214,0 +170780747759,214,0 +170780747807,214,0 +170780747855,214,0 +170780747902,214,0 +170780747950,214,0 +170780748000,214,0 +170780748048,214,0 +170780748097,214,0 +170780748147,214,0 +170780748196,214,0 +170780748244,214,0 +170780748294,214,0 +170780748341,214,0 +170780748391,214,0 +170780748440,213,0 +170780748488,213,0 +170780748536,213,0 +170780748584,214,0 +170780748632,214,0 +170780748682,214,0 +170780748731,214,0 +170780748779,214,0 +170780748828,214,0 +170780748876,214,0 +170780748924,214,0 +170780748972,214,0 +170780749020,214,0 +170780749068,214,0 +170780749116,214,0 +170780749166,214,0 +170780749213,214,0 +170780749261,213,0 +170780749311,213,0 +170780749359,213,0 +170780749407,213,0 +170780749455,213,0 +170780749503,214,0 +170780749552,213,0 +170780749601,213,0 +170780749651,214,0 +170780749699,214,0 +170780749747,214,0 +170780749795,214,0 +170780749842,214,0 +170780749892,214,0 +170780749941,214,0 +170780749991,214,0 +170780750039,213,0 +170780750088,213,0 +170780750136,213,0 +170780750186,213,0 +170780750235,213,0 +170780750285,213,0 +170780750334,213,0 +170780750382,214,0 +170780750430,214,0 +170780750478,214,0 +170780750526,214,0 +170780750576,214,0 +170780750624,214,0 +170780750672,214,0 +170780750721,214,0 +170780750769,214,0 +170780750819,214,0 +170780750867,213,0 +170780750916,213,0 +170780750964,213,0 +170780751012,213,0 +170780751060,213,0 +170780751108,214,0 +170780751156,214,0 +170780751204,214,0 +170780751251,214,0 +170780751301,214,0 +170780751350,214,0 +170780751398,214,0 +170780751446,214,0 +170780751494,214,0 +170780751542,214,0 +170780751591,214,0 +170780751639,214,0 +170780751687,213,0 +170780751735,214,0 +170780751785,213,0 +170780751834,214,0 +170780751882,214,0 +170780751932,214,0 +170780751981,214,0 +170780752029,214,0 +170780752079,214,0 +170780752126,214,0 +170780752175,214,0 +170780752223,214,0 +170780752271,214,0 +170780752318,214,0 +170780752366,214,0 +170780752416,214,0 +170780752465,213,0 +170780752513,213,0 +170780752561,213,0 +170780752609,214,0 +170780752657,214,0 +170780752707,214,0 +170780752754,214,0 +170780752802,214,0 +170780752850,214,0 +170780752898,214,0 +170780752946,214,0 +170780752994,214,0 +170780753044,214,0 +170780753092,214,0 +170780753139,214,0 +170780753187,214,0 +170780753237,214,0 +170780753285,214,0 +170780753332,214,0 +170780753382,214,0 +170780753430,214,0 +170780753478,214,0 +170780753527,214,0 +170780753577,214,0 +170780753625,214,0 +170780753672,214,0 +170780753722,214,0 +170780753770,214,0 +170780753818,214,0 +170780753866,214,0 +170780753913,214,0 +170780753961,214,0 +170780754009,214,0 +170780754057,214,0 +170780754105,213,0 +170780754153,213,0 +170780754201,213,0 +170780754250,213,0 +170780754298,214,0 +170780754346,214,0 +170780754394,214,0 +170780754442,214,0 +170780754490,214,0 +170780754539,214,0 +170780754589,214,0 +170780754638,214,0 +170780754686,214,0 +170780754736,214,0 +170780754785,214,0 +170780754833,214,0 +170780754881,213,0 +170780754929,213,0 +170780754977,213,0 +170780755024,214,0 +170780755072,214,0 +170780755120,214,0 +170780755168,214,0 +170780755216,214,0 +170780755264,214,0 +170780755311,214,0 +170780755359,214,0 +170780755407,214,0 +170780755455,214,0 +170780755503,215,0 +170780755551,214,0 +170780755598,214,0 +170780755646,214,0 +170780755694,214,0 +170780755742,214,0 +170780755791,214,0 +170780755839,214,0 +170780755887,214,0 +170780755936,215,0 +170780755986,214,0 +170780756034,215,0 +170780756081,214,0 +170780756129,214,0 +170780756177,214,0 +170780756225,214,0 +170780756273,214,0 +170780756322,214,0 +170780756370,214,0 +170780756418,214,0 +170780756466,214,0 +170780756515,214,0 +170780756563,214,0 +170780756613,214,0 +170780756661,214,0 +170780756709,215,0 +170780756758,214,0 +170780756806,214,0 +170780756854,215,0 +170780756904,215,0 +170780756953,215,0 +170780757001,215,0 +170780757049,215,0 +170780757097,214,0 +170780757147,214,0 +170780757196,214,0 +170780757246,214,0 +170780757294,214,0 +170780757343,214,0 +170780757391,213,0 +170780757439,214,0 +170780757487,214,0 +170780757535,214,0 +170780757583,214,0 +170780757633,214,0 +170780757681,214,0 +170780757730,214,0 +170780757780,214,0 +170780757829,215,0 +170780757877,215,0 +170780757926,214,0 +170780757974,215,0 +170780758022,214,0 +170780758070,213,0 +170780758119,213,0 +170780758167,213,0 +170780758217,213,0 +170780758264,213,0 +170780758314,214,0 +170780758362,214,0 +170780758411,214,0 +170780758459,214,0 +170780758507,214,0 +170780758555,214,0 +170780758602,214,0 +170780758650,214,0 +170780758698,214,0 +170780758746,214,0 +170780758794,214,0 +170780758842,214,0 +170780758890,213,0 +170780758937,213,0 +170780758985,213,0 +170780759033,213,0 +170780759081,214,0 +170780759131,214,0 +170780759178,214,0 +170780759226,214,0 +170780759274,214,0 +170780759322,214,0 +170780759371,214,0 +170780759419,214,0 +170780759467,214,0 +170780759515,214,0 +170780759564,214,0 +170780759612,214,0 +170780759660,213,0 +170780759708,213,0 +170780759757,214,0 +170780759805,214,0 +170780759855,214,0 +170780759903,214,0 +170780759952,214,0 +170780760000,214,0 diff --git a/laser_value/0213-17.csv b/laser_value/0213-17.csv new file mode 100644 index 0000000..0da6a5d --- /dev/null +++ b/laser_value/0213-17.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170780760050,214,0 +170780760100,214,0 +170780760148,214,0 +170780760195,214,0 +170780760243,214,0 +170780760291,214,0 +170780760339,214,0 +170780760387,214,0 +170780760436,214,0 +170780760484,213,0 +170780760534,213,0 +170780760582,213,0 +170780760630,214,0 +170780760677,214,0 +170780760727,214,0 +170780760776,214,0 +170780760824,214,0 +170780760872,214,0 +170780760920,214,0 +170780760970,214,0 +170780761018,214,0 +170780761065,214,0 +170780761113,214,0 +170780761161,214,0 +170780761211,214,0 +170780761258,214,0 +170780761308,214,0 +170780761356,214,0 +170780761404,214,0 +170780761451,214,0 +170780761499,214,0 +170780761549,214,0 +170780761597,214,0 +170780761645,214,0 +170780761692,214,0 +170780761742,214,0 +170780761790,214,0 +170780761838,214,0 +170780761887,214,0 +170780761935,214,0 +170780761983,214,0 +170780762031,214,0 +170780762079,214,0 +170780762128,214,0 +170780762176,214,0 +170780762224,214,0 +170780762272,214,0 +170780762321,214,0 +170780762369,214,0 +170780762419,214,0 +170780762467,214,0 +170780762516,214,0 +170780762564,214,0 +170780762612,214,0 +170780762661,214,0 +170780762709,214,0 +170780762757,214,0 +170780762805,214,0 +170780762853,214,0 +170780762901,213,0 +170780762949,214,0 +170780762997,214,0 +170780763046,214,0 +170780763094,214,0 +170780763142,214,0 +170780763190,214,0 +170780763238,214,0 +170780763287,214,0 +170780763337,214,0 +170780763385,214,0 +170780763434,214,0 +170780763482,214,0 +170780763532,214,0 +170780763580,214,0 +170780763628,214,0 +170780763677,214,0 +170780763725,213,0 +170780763773,214,0 +170780763821,214,0 +170780763870,214,0 +170780763918,214,0 +170780763966,214,0 +170780764015,214,0 +170780764063,214,0 +170780764111,214,0 +170780764161,214,0 +170780764209,214,0 +170780764258,214,0 +170780764306,214,0 +170780764354,214,0 +170780764403,214,0 +170780764451,214,0 +170780764499,213,0 +170780764547,213,0 +170780764595,213,0 +170780764642,213,0 +170780764690,213,0 +170780764738,214,0 +170780764786,214,0 +170780764833,214,0 +170780764881,214,0 +170780764929,214,0 +170780764977,214,0 +170780765025,214,0 +170780765074,214,0 +170780765122,214,0 +170780765170,214,0 +170780765218,214,0 +170780765267,214,0 +170780765315,213,0 +170780765365,213,0 +170780765413,213,0 +170780765461,213,0 +170780765508,213,0 +170780765556,213,0 +170780765606,213,0 +170780765654,213,0 +170780765701,214,0 +170780765751,214,0 +170780765799,214,0 +170780765847,214,0 +170780765896,214,0 +170780765944,214,0 +170780765992,214,0 +170780766040,214,0 +170780766089,213,0 +170780766137,213,0 +170780766185,213,0 +170780766233,213,0 +170780766281,213,0 +170780766329,213,0 +170780766376,213,0 +170780766424,214,0 +170780766472,214,0 +170780766520,214,0 +170780766570,214,0 +170780766619,213,0 +170780766667,214,0 +170780766717,214,0 +170780766764,214,0 +170780766814,214,0 +170780766862,214,0 +170780766910,213,0 +170780766959,213,0 +170780767007,213,0 +170780767055,213,0 +170780767104,213,0 +170780767152,213,0 +170780767202,214,0 +170780767250,214,0 +170780767298,214,0 +170780767346,214,0 +170780767393,214,0 +170780767441,214,0 +170780767491,214,0 +170780767539,214,0 +170780767588,214,0 +170780767636,214,0 +170780767686,213,0 +170780767735,213,0 +170780767783,214,0 +170780767831,214,0 +170780767879,214,0 +170780767929,214,0 +170780767978,214,0 +170780768026,214,0 +170780768075,214,0 +170780768123,214,0 +170780768173,214,0 +170780768221,214,0 +170780768269,214,0 +170780768317,215,0 +170780768365,214,0 +170780768414,214,0 +170780768462,214,0 +170780768510,214,0 +170780768559,214,0 +170780768607,214,0 +170780768657,214,0 +170780768705,214,0 +170780768753,214,0 +170780768801,214,0 +170780768850,214,0 +170780768898,214,0 +170780768947,214,0 +170780768995,214,0 +170780769045,214,0 +170780769093,214,0 +170780769141,214,0 +170780769189,214,0 +170780769237,214,0 +170780769286,213,0 +170780769334,213,0 +170780769382,213,0 +170780769430,214,0 +170780769478,214,0 +170780769526,214,0 +170780769576,214,0 +170780769623,214,0 +170780769673,214,0 +170780769721,214,0 +170780769769,214,0 +170780769818,214,0 +170780769868,214,0 +170780769915,214,0 +170780769963,214,0 +170780770011,214,0 +170780770059,214,0 +170780770109,213,0 +170780770157,213,0 +170780770206,213,0 +170780770254,213,0 +170780770302,213,0 +170780770350,213,0 +170780770400,213,0 +170780770448,214,0 +170780770496,214,0 +170780770544,214,0 +170780770592,214,0 +170780770640,214,0 +170780770688,214,0 +170780770736,214,0 +170780770783,214,0 +170780770833,214,0 +170780770881,214,0 +170780770930,214,0 +170780770978,213,0 +170780771026,214,0 +170780771076,214,0 +170780771123,214,0 +170780771171,214,0 +170780771219,214,0 +170780771267,214,0 +170780771315,214,0 +170780771365,214,0 +170780771412,215,0 +170780771460,214,0 +170780771508,214,0 +170780771558,215,0 +170780771606,214,0 +170780771654,214,0 +170780771702,214,0 +170780771750,214,0 +170780771797,214,0 +170780771845,214,0 +170780771895,214,0 +170780771944,214,0 +170780771992,214,0 +170780772040,214,0 +170780772090,214,0 +170780772138,214,0 +170780772186,214,0 +170780772235,214,0 +170780772285,214,0 +170780772332,214,0 +170780772380,214,0 +170780772430,214,0 +170780772478,214,0 +170780772527,214,0 +170780772575,214,0 +170780772623,214,0 +170780772671,214,0 +170780772721,214,0 +170780772769,214,0 +170780772818,215,0 +170780772866,214,0 +170780772914,214,0 +170780772962,214,0 +170780773010,214,0 +170780773058,215,0 +170780773106,214,0 +170780773154,214,0 +170780773203,214,0 +170780773251,214,0 +170780773301,214,0 +170780773350,213,0 +170780773398,214,0 +170780773446,214,0 +170780773496,214,0 +170780773543,214,0 +170780773593,214,0 +170780773641,214,0 +170780773689,214,0 +170780773736,214,0 +170780773784,214,0 +170780773832,214,0 +170780773880,214,0 +170780773928,214,0 +170780773976,214,0 +170780774023,214,0 +170780774073,214,0 +170780774121,213,0 +170780774169,213,0 +170780774216,213,0 +170780774264,214,0 +170780774312,214,0 +170780774360,214,0 +170780774408,214,0 +170780774456,214,0 +170780774506,214,0 +170780774553,214,0 +170780774603,214,0 +170780774651,214,0 +170780774699,214,0 +170780774747,214,0 +170780774796,214,0 +170780774846,214,0 +170780774895,213,0 +170780774943,213,0 +170780774993,213,0 +170780775042,213,0 +170780775092,213,0 +170780775140,213,0 +170780775189,213,0 +170780775237,214,0 +170780775285,213,0 +170780775334,214,0 +170780775382,214,0 +170780775430,214,0 +170780775480,214,0 +170780775527,214,0 +170780775575,214,0 +170780775623,214,0 +170780775671,214,0 +170780775720,213,0 +170780775768,213,0 +170780775816,213,0 +170780775864,213,0 +170780775912,213,0 +170780775960,213,0 +170780776009,213,0 +170780776057,213,0 +170780776107,214,0 +170780776154,214,0 +170780776204,214,0 +170780776252,214,0 +170780776300,214,0 +170780776348,214,0 +170780776397,214,0 +170780776447,214,0 +170780776495,214,0 +170780776542,213,0 +170780776592,213,0 +170780776641,213,0 +170780776689,213,0 +170780776737,213,0 +170780776785,214,0 +170780776833,214,0 +170780776881,214,0 +170780776931,214,0 +170780776978,213,0 +170780777026,214,0 +170780777074,214,0 +170780777122,214,0 +170780777170,214,0 +170780777220,214,0 +170780777268,214,0 +170780777317,213,0 +170780777365,213,0 +170780777413,213,0 +170780777463,213,0 +170780777511,213,0 +170780777559,214,0 +170780777607,214,0 +170780777656,214,0 +170780777704,214,0 +170780777753,214,0 +170780777801,214,0 +170780777849,214,0 +170780777899,214,0 +170780777948,214,0 +170780777996,214,0 +170780778044,214,0 +170780778094,214,0 +170780778142,213,0 +170780778190,213,0 +170780778239,213,0 +170780778287,213,0 +170780778335,213,0 +170780778383,213,0 +170780778431,213,0 +170780778479,213,0 +170780778527,213,0 +170780778575,214,0 +170780778622,214,0 +170780778670,214,0 +170780778718,214,0 +170780778766,214,0 +170780778815,214,0 +170780778863,214,0 +170780778913,213,0 +170780778961,213,0 +170780779008,213,0 +170780779056,213,0 +170780779106,213,0 +170780779154,214,0 +170780779202,214,0 +170780779250,214,0 +170780779297,214,0 +170780779345,214,0 +170780779395,214,0 +170780779442,214,0 +170780779490,214,0 +170780779538,214,0 +170780779586,214,0 +170780779634,214,0 +170780779682,214,0 +170780779732,214,0 +170780779780,214,0 +170780779828,214,0 +170780779876,214,0 +170780779923,214,0 +170780779971,214,0 +170780780019,214,0 +170780780067,214,0 +170780780115,214,0 +170780780165,214,0 +170780780214,214,0 +170780780264,214,0 +170780780312,214,0 +170780780361,214,0 +170780780409,214,0 +170780780457,214,0 +170780780505,214,0 +170780780554,214,0 +170780780602,214,0 +170780780652,214,0 +170780780700,214,0 +170780780748,214,0 +170780780796,214,0 +170780780845,214,0 +170780780893,214,0 +170780780943,214,0 +170780780990,214,0 +170780781038,215,0 +170780781086,214,0 +170780781134,214,0 +170780781182,214,0 +170780781230,214,0 +170780781280,214,0 +170780781327,214,0 +170780781375,214,0 +170780781425,214,0 +170780781473,214,0 +170780781521,214,0 +170780781569,214,0 +170780781617,214,0 +170780781664,214,0 +170780781714,214,0 +170780781762,214,0 +170780781811,215,0 +170780781859,215,0 +170780781907,214,0 +170780781955,214,0 +170780782003,214,0 +170780782052,214,0 +170780782100,214,0 +170780782148,214,0 +170780782196,214,0 +170780782244,214,0 +170780782292,214,0 +170780782342,214,0 +170780782390,214,0 +170780782438,214,0 +170780782485,214,0 +170780782535,214,0 +170780782584,214,0 +170780782632,215,0 +170780782682,214,0 +170780782730,215,0 +170780782778,214,0 +170780782827,214,0 +170780782877,214,0 +170780782925,214,0 +170780782973,214,0 +170780783022,214,0 +170780783070,214,0 +170780783118,214,0 +170780783166,214,0 +170780783214,214,0 +170780783264,214,0 +170780783313,214,0 +170780783363,214,0 +170780783411,214,0 +170780783459,214,0 +170780783507,214,0 +170780783555,214,0 +170780783602,214,0 +170780783652,214,0 +170780783700,214,0 +170780783750,214,0 +170780783799,213,0 +170780783847,213,0 +170780783897,214,0 +170780783945,214,0 +170780783992,214,0 +170780784040,214,0 +170780784088,214,0 +170780784136,214,0 +170780784184,214,0 +170780784232,214,0 +170780784281,214,0 +170780784329,214,0 +170780784379,214,0 +170780784427,214,0 +170780784476,214,0 +170780784524,214,0 +170780784572,213,0 +170780784620,213,0 +170780784668,213,0 +170780784717,213,0 +170780784767,213,0 +170780784816,214,0 +170780784866,214,0 +170780784915,214,0 +170780784963,214,0 +170780785011,214,0 +170780785059,214,0 +170780785107,214,0 +170780785155,214,0 +170780785204,214,0 +170780785252,214,0 +170780785302,214,0 +170780785350,213,0 +170780785399,213,0 +170780785447,213,0 +170780785495,213,0 +170780785543,213,0 +170780785591,213,0 +170780785640,214,0 +170780785688,214,0 +170780785736,214,0 +170780785784,214,0 +170780785834,214,0 +170780785883,214,0 +170780785933,214,0 +170780785981,214,0 +170780786028,214,0 +170780786078,214,0 +170780786126,213,0 +170780786175,213,0 +170780786225,213,0 +170780786274,213,0 +170780786322,213,0 +170780786370,213,0 +170780786418,213,0 +170780786466,213,0 +170780786515,214,0 +170780786563,214,0 +170780786611,214,0 +170780786660,214,0 +170780786708,214,0 +170780786756,214,0 +170780786804,214,0 +170780786852,214,0 +170780786900,214,0 +170780786948,213,0 +170780786998,213,0 +170780787047,213,0 +170780787096,213,0 +170780787144,213,0 +170780787192,213,0 +170780787240,214,0 +170780787287,214,0 +170780787335,214,0 +170780787385,214,0 +170780787433,214,0 +170780787481,214,0 +170780787529,214,0 +170780787576,214,0 +170780787624,214,0 +170780787672,214,0 +170780787720,214,0 +170780787768,213,0 +170780787816,213,0 +170780787865,213,0 +170780787915,213,0 +170780787963,213,0 +170780788011,213,0 +170780788059,214,0 +170780788106,214,0 +170780788154,214,0 +170780788202,214,0 +170780788252,214,0 +170780788301,214,0 +170780788349,214,0 +170780788399,214,0 +170780788447,214,0 +170780788496,214,0 +170780788546,213,0 +170780788593,213,0 +170780788641,213,0 +170780788689,213,0 +170780788737,213,0 +170780788785,214,0 +170780788834,213,0 +170780788882,214,0 +170780788930,214,0 +170780788980,214,0 +170780789029,214,0 +170780789077,214,0 +170780789126,214,0 +170780789174,214,0 +170780789222,214,0 +170780789270,214,0 +170780789320,213,0 +170780789368,213,0 +170780789416,213,0 +170780789464,213,0 +170780789512,213,0 +170780789561,213,0 +170780789611,213,0 +170780789660,213,0 +170780789709,214,0 +170780789757,214,0 +170780789805,214,0 +170780789855,214,0 +170780789903,214,0 +170780789951,214,0 +170780789998,214,0 +170780790046,214,0 +170780790094,214,0 +170780790142,213,0 +170780790192,213,0 +170780790240,213,0 +170780790289,213,0 +170780790337,213,0 +170780790387,213,0 +170780790436,213,0 +170780790484,214,0 +170780790532,214,0 +170780790580,214,0 +170780790628,214,0 +170780790678,214,0 +170780790726,214,0 +170780790774,214,0 +170780790823,214,0 +170780790871,214,0 +170780790919,214,0 +170780790967,213,0 +170780791015,213,0 +170780791062,213,0 +170780791112,214,0 +170780791160,214,0 +170780791208,214,0 +170780791256,214,0 +170780791303,214,0 +170780791351,214,0 +170780791399,214,0 +170780791447,214,0 +170780791495,214,0 +170780791543,214,0 +170780791592,214,0 +170780791640,214,0 +170780791688,214,0 +170780791736,214,0 +170780791784,214,0 +170780791831,214,0 +170780791879,214,0 +170780791927,214,0 +170780791975,214,0 +170780792023,214,0 +170780792071,214,0 +170780792119,214,0 +170780792168,215,0 +170780792218,214,0 +170780792266,215,0 +170780792313,215,0 +170780792363,215,0 +170780792412,215,0 +170780792460,214,0 +170780792510,214,0 +170780792557,214,0 +170780792605,214,0 +170780792653,214,0 +170780792701,214,0 +170780792749,214,0 +170780792797,214,0 +170780792845,214,0 +170780792893,214,0 +170780792941,214,0 +170780792989,215,0 +170780793037,215,0 +170780793084,215,0 +170780793132,214,0 +170780793180,214,0 +170780793228,214,0 +170780793276,214,0 +170780793325,214,0 +170780793375,214,0 +170780793422,214,0 +170780793470,214,0 +170780793518,214,0 +170780793566,214,0 +170780793614,214,0 +170780793662,214,0 +170780793711,214,0 +170780793761,214,0 +170780793809,215,0 +170780793857,214,0 +170780793904,215,0 +170780793952,215,0 +170780794000,214,0 +170780794048,214,0 +170780794096,214,0 +170780794144,213,0 +170780794193,213,0 +170780794241,213,0 +170780794289,213,0 +170780794337,214,0 +170780794384,214,0 +170780794432,214,0 +170780794480,214,0 +170780794528,214,0 +170780794576,214,0 +170780794624,214,0 +170780794673,214,0 +170780794721,214,0 +170780794770,214,0 +170780794820,214,0 +170780794868,214,0 +170780794917,214,0 +170780794965,213,0 +170780795013,213,0 +170780795061,213,0 +170780795109,214,0 +170780795157,214,0 +170780795206,214,0 +170780795254,214,0 +170780795303,214,0 +170780795351,214,0 +170780795399,214,0 +170780795447,214,0 +170780795495,214,0 +170780795543,214,0 +170780795591,214,0 +170780795638,214,0 +170780795686,214,0 +170780795736,214,0 +170780795784,213,0 +170780795833,213,0 +170780795881,213,0 +170780795929,213,0 +170780795977,214,0 +170780796025,213,0 +170780796072,214,0 +170780796120,214,0 +170780796168,214,0 +170780796216,214,0 +170780796264,214,0 +170780796313,214,0 +170780796361,214,0 +170780796408,214,0 +170780796456,214,0 +170780796504,214,0 +170780796552,213,0 +170780796601,213,0 +170780796649,213,0 +170780796697,213,0 +170780796745,213,0 +170780796793,214,0 +170780796841,214,0 +170780796889,214,0 +170780796937,214,0 +170780796986,214,0 +170780797034,214,0 +170780797082,214,0 +170780797130,214,0 +170780797178,214,0 +170780797226,214,0 +170780797274,214,0 +170780797322,214,0 +170780797370,213,0 +170780797419,213,0 +170780797469,213,0 +170780797518,213,0 +170780797566,213,0 +170780797614,213,0 +170780797662,213,0 +170780797710,214,0 +170780797758,214,0 +170780797807,214,0 +170780797857,214,0 +170780797906,214,0 +170780797954,214,0 +170780798002,214,0 +170780798051,214,0 +170780798101,214,0 +170780798149,214,0 +170780798198,213,0 +170780798248,213,0 +170780798297,213,0 +170780798347,213,0 +170780798394,214,0 +170780798444,213,0 +170780798492,214,0 +170780798540,214,0 +170780798588,214,0 +170780798637,214,0 +170780798687,214,0 +170780798736,214,0 +170780798786,214,0 +170780798835,214,0 +170780798883,214,0 +170780798933,214,0 +170780798983,213,0 +170780799032,213,0 +170780799082,213,0 +170780799131,213,0 +170780799181,214,0 +170780799229,214,0 +170780799278,214,0 +170780799328,214,0 +170780799376,214,0 +170780799425,214,0 +170780799475,214,0 +170780799523,214,0 +170780799571,214,0 +170780799619,214,0 +170780799667,214,0 +170780799714,214,0 +170780799764,213,0 +170780799813,213,0 +170780799861,213,0 +170780799909,213,0 +170780799957,213,0 +170780800005,214,0 +170780800055,214,0 +170780800103,214,0 +170780800152,214,0 +170780800200,214,0 +170780800250,214,0 +170780800298,214,0 +170780800347,214,0 +170780800397,215,0 +170780800445,214,0 +170780800493,214,0 +170780800542,214,0 +170780800592,214,0 +170780800641,214,0 +170780800689,213,0 +170780800737,214,0 +170780800785,214,0 +170780800833,214,0 +170780800882,214,0 +170780800932,214,0 +170780800981,214,0 +170780801029,214,0 +170780801077,214,0 +170780801125,214,0 +170780801173,214,0 +170780801221,214,0 +170780801269,214,0 +170780801318,214,0 +170780801368,214,0 +170780801416,213,0 +170780801463,214,0 +170780801511,214,0 +170780801559,214,0 +170780801607,214,0 +170780801657,214,0 +170780801706,214,0 +170780801754,214,0 +170780801802,214,0 +170780801850,214,0 +170780801900,214,0 +170780801948,214,0 +170780801997,215,0 +170780802046,214,0 +170780802094,214,0 +170780802144,214,0 +170780802192,214,0 +170780802241,213,0 +170780802289,214,0 +170780802337,214,0 +170780802385,214,0 +170780802435,214,0 +170780802484,214,0 +170780802534,214,0 +170780802582,214,0 +170780802629,214,0 +170780802677,214,0 +170780802725,214,0 +170780802773,214,0 +170780802823,214,0 +170780802872,214,0 +170780802920,214,0 +170780802968,214,0 +170780803016,214,0 +170780803066,214,0 +170780803115,214,0 +170780803164,214,0 +170780803212,214,0 +170780803262,214,0 +170780803310,214,0 +170780803358,214,0 +170780803406,214,0 +170780803454,214,0 +170780803502,214,0 +170780803551,214,0 +170780803599,214,0 +170780803647,214,0 +170780803697,214,0 +170780803746,214,0 +170780803794,213,0 +170780803842,213,0 +170780803890,214,0 +170780803938,214,0 +170780803986,214,0 +170780804034,214,0 +170780804083,214,0 +170780804133,214,0 +170780804181,214,0 +170780804230,214,0 +170780804278,214,0 +170780804327,214,0 +170780804375,214,0 +170780804423,214,0 +170780804471,214,0 +170780804519,214,0 +170780804567,214,0 +170780804615,214,0 +170780804662,214,0 +170780804710,214,0 +170780804758,214,0 +170780804806,214,0 +170780804854,214,0 +170780804902,214,0 +170780804949,214,0 +170780804997,214,0 +170780805045,214,0 +170780805093,214,0 +170780805141,214,0 +170780805189,214,0 +170780805236,214,0 +170780805284,214,0 +170780805332,214,0 +170780805380,214,0 +170780805428,214,0 +170780805475,214,0 +170780805523,214,0 +170780805571,214,0 +170780805619,214,0 +170780805667,214,0 +170780805715,214,0 +170780805762,215,0 +170780805810,214,0 +170780805858,215,0 +170780805906,214,0 +170780805954,214,0 +170780806002,214,0 +170780806049,214,0 +170780806097,214,0 +170780806147,214,0 +170780806194,213,0 +170780806242,213,0 +170780806290,213,0 +170780806338,213,0 +170780806386,213,0 +170780806433,214,0 +170780806483,214,0 +170780806531,214,0 +170780806579,214,0 +170780806626,214,0 +170780806674,214,0 +170780806722,214,0 +170780806770,214,0 +170780806818,214,0 +170780806867,214,0 +170780806915,214,0 +170780806963,213,0 +170780807011,213,0 +170780807059,213,0 +170780807107,213,0 +170780807155,213,0 +170780807203,213,0 +170780807251,213,0 +170780807299,213,0 +170780807348,213,0 +170780807398,213,0 +170780807446,213,0 +170780807493,214,0 +170780807541,214,0 +170780807589,214,0 +170780807637,214,0 +170780807685,214,0 +170780807733,214,0 +170780807781,214,0 +170780807828,214,0 +170780807876,214,0 +170780807926,214,0 +170780807975,214,0 +170780808025,214,0 +170780808073,214,0 +170780808122,214,0 +170780808172,213,0 +170780808219,213,0 +170780808267,213,0 +170780808317,213,0 +170780808366,214,0 +170780808416,214,0 +170780808464,214,0 +170780808512,213,0 +170780808560,214,0 +170780808608,214,0 +170780808655,214,0 +170780808703,214,0 +170780808753,214,0 +170780808802,214,0 +170780808852,214,0 +170780808900,214,0 +170780808948,214,0 +170780808996,213,0 +170780809045,213,0 +170780809093,213,0 +170780809141,213,0 +170780809189,214,0 +170780809238,214,0 +170780809286,214,0 +170780809336,214,0 +170780809384,214,0 +170780809432,214,0 +170780809480,214,0 +170780809527,214,0 +170780809577,214,0 +170780809625,214,0 +170780809674,214,0 +170780809724,214,0 +170780809772,214,0 +170780809821,214,0 +170780809869,214,0 +170780809917,214,0 +170780809965,214,0 +170780810013,214,0 +170780810062,214,0 +170780810110,214,0 +170780810158,214,0 +170780810207,214,0 +170780810255,214,0 +170780810303,214,0 +170780810353,214,0 +170780810401,214,0 +170780810449,214,0 +170780810497,214,0 +170780810546,214,0 +170780810596,214,0 +170780810644,213,0 +170780810691,213,0 +170780810741,214,0 +170780810791,213,0 +170780810839,214,0 +170780810888,214,0 +170780810936,214,0 +170780810984,214,0 +170780811032,214,0 +170780811081,214,0 +170780811131,214,0 +170780811179,214,0 +170780811227,214,0 +170780811275,214,0 +170780811323,214,0 +170780811371,214,0 +170780811419,214,0 +170780811466,214,0 +170780811514,214,0 +170780811562,214,0 +170780811610,214,0 +170780811660,214,0 +170780811709,214,0 +170780811759,214,0 +170780811807,214,0 +170780811855,214,0 +170780811903,214,0 +170780811952,214,0 +170780812000,214,0 +170780812049,214,0 +170780812099,214,0 +170780812147,214,0 +170780812196,214,0 +170780812244,213,0 +170780812292,214,0 +170780812340,214,0 +170780812390,214,0 +170780812438,214,0 +170780812486,214,0 +170780812535,214,0 +170780812585,214,0 +170780812633,214,0 +170780812680,214,0 +170780812728,214,0 +170780812776,214,0 +170780812824,214,0 +170780812872,214,0 +170780812920,214,0 +170780812969,213,0 +170780813019,213,0 +170780813067,213,0 +170780813115,213,0 +170780813164,213,0 +170780813214,213,0 +170780813262,214,0 +170780813309,214,0 +170780813357,214,0 +170780813407,214,0 +170780813455,214,0 +170780813503,214,0 +170780813550,214,0 +170780813598,214,0 +170780813648,214,0 +170780813696,214,0 +170780813744,214,0 +170780813792,213,0 +170780813840,213,0 +170780813887,213,0 +170780813935,213,0 +170780813983,213,0 +170780814031,213,0 +170780814079,213,0 +170780814127,213,0 +170780814175,213,0 +170780814223,213,0 +170780814270,214,0 +170780814318,214,0 +170780814366,214,0 +170780814414,214,0 +170780814462,214,0 +170780814511,214,0 +170780814559,214,0 +170780814607,213,0 +170780814655,213,0 +170780814705,213,0 +170780814752,213,0 +170780814800,213,0 +170780814848,213,0 +170780814896,213,0 +170780814944,213,0 +170780814992,214,0 +170780815040,213,0 +170780815089,214,0 +170780815138,214,0 +170780815186,214,0 +170780815234,214,0 +170780815282,214,0 +170780815330,214,0 +170780815378,213,0 +170780815427,213,0 +170780815475,213,0 +170780815525,213,0 +170780815573,213,0 +170780815622,213,0 +170780815670,213,0 +170780815720,214,0 +170780815769,213,0 +170780815819,214,0 +170780815867,213,0 +170780815916,214,0 +170780815964,214,0 +170780816012,214,0 +170780816060,214,0 +170780816109,214,0 +170780816157,214,0 +170780816205,213,0 +170780816255,213,0 +170780816303,213,0 +170780816350,213,0 +170780816400,213,0 +170780816448,213,0 +170780816496,214,0 +170780816544,214,0 +170780816592,214,0 +170780816640,214,0 +170780816687,214,0 +170780816737,214,0 +170780816785,214,0 +170780816835,214,0 +170780816884,214,0 +170780816932,214,0 +170780816980,214,0 +170780817030,213,0 +170780817078,214,0 +170780817125,214,0 +170780817173,214,0 +170780817221,214,0 +170780817270,214,0 +170780817318,214,0 +170780817366,214,0 +170780817416,214,0 +170780817463,214,0 +170780817511,214,0 +170780817559,214,0 +170780817607,215,0 +170780817656,214,0 +170780817704,214,0 +170780817754,214,0 +170780817803,214,0 +170780817851,214,0 +170780817899,213,0 +170780817947,214,0 +170780817996,214,0 +170780818044,214,0 +170780818092,214,0 +170780818140,214,0 +170780818187,214,0 +170780818235,214,0 +170780818283,214,0 +170780818331,214,0 +170780818379,214,0 +170780818427,214,0 +170780818475,214,0 +170780818523,214,0 +170780818572,214,0 +170780818620,213,0 +170780818668,213,0 +170780818718,213,0 +170780818766,214,0 +170780818814,214,0 +170780818862,214,0 +170780818911,214,0 +170780818959,214,0 +170780819009,214,0 +170780819056,214,0 +170780819106,214,0 +170780819155,214,0 +170780819203,214,0 +170780819253,214,0 +170780819302,214,0 +170780819352,214,0 +170780819400,214,0 +170780819449,213,0 +170780819499,214,0 +170780819546,214,0 +170780819596,214,0 +170780819644,214,0 +170780819692,214,0 +170780819740,214,0 +170780819788,214,0 +170780819836,214,0 +170780819883,214,0 +170780819933,214,0 +170780819981,214,0 +170780820029,214,0 +170780820077,214,0 +170780820126,214,0 +170780820174,214,0 +170780820222,213,0 +170780820270,213,0 +170780820318,214,0 +170780820366,214,0 +170780820415,214,0 +170780820465,214,0 +170780820513,214,0 +170780820561,214,0 +170780820610,214,0 +170780820660,214,0 +170780820707,214,0 +170780820755,214,0 +170780820803,214,0 +170780820851,214,0 +170780820901,214,0 +170780820950,214,0 +170780820998,214,0 +170780821046,214,0 +170780821094,214,0 +170780821142,214,0 +170780821190,214,0 +170780821237,214,0 +170780821285,214,0 +170780821333,214,0 +170780821381,214,0 +170780821430,214,0 +170780821478,214,0 +170780821526,214,0 +170780821574,215,0 +170780821622,214,0 +170780821671,214,0 +170780821721,214,0 +170780821769,214,0 +170780821817,214,0 +170780821866,214,0 +170780821914,214,0 +170780821962,214,0 +170780822010,214,0 +170780822057,214,0 +170780822105,214,0 +170780822153,214,0 +170780822201,214,0 +170780822249,214,0 +170780822296,215,0 +170780822344,214,0 +170780822392,215,0 +170780822440,214,0 +170780822488,214,0 +170780822537,214,0 +170780822585,214,0 +170780822633,214,0 +170780822681,214,0 +170780822729,214,0 +170780822777,214,0 +170780822825,214,0 +170780822874,214,0 +170780822924,214,0 +170780822971,214,0 +170780823019,214,0 +170780823067,214,0 +170780823115,214,0 +170780823163,214,0 +170780823211,214,0 +170780823259,214,0 +170780823307,214,0 +170780823355,214,0 +170780823403,213,0 +170780823451,213,0 +170780823499,213,0 +170780823548,213,0 +170780823596,213,0 +170780823644,214,0 +170780823692,214,0 +170780823740,214,0 +170780823788,214,0 +170780823838,214,0 +170780823887,214,0 +170780823935,214,0 +170780823983,214,0 +170780824031,214,0 +170780824079,214,0 +170780824127,214,0 +170780824176,214,0 +170780824226,213,0 +170780824274,213,0 +170780824322,213,0 +170780824371,213,0 +170780824421,214,0 +170780824468,214,0 +170780824518,214,0 +170780824567,214,0 +170780824617,214,0 +170780824666,214,0 +170780824714,214,0 +170780824762,214,0 +170780824810,214,0 +170780824857,214,0 +170780824905,214,0 +170780824955,214,0 +170780825002,213,0 +170780825050,213,0 +170780825098,213,0 +170780825146,213,0 +170780825193,213,0 +170780825243,213,0 +170780825290,214,0 +170780825338,214,0 +170780825386,214,0 +170780825434,214,0 +170780825482,214,0 +170780825532,214,0 +170780825580,214,0 +170780825629,214,0 +170780825677,214,0 +170780825726,214,0 +170780825774,214,0 +170780825822,213,0 +170780825872,213,0 +170780825920,213,0 +170780825967,213,0 +170780826015,213,0 +170780826065,213,0 +170780826113,214,0 +170780826160,214,0 +170780826208,214,0 +170780826256,214,0 +170780826304,214,0 +170780826352,214,0 +170780826400,214,0 +170780826448,214,0 +170780826495,214,0 +170780826545,214,0 +170780826593,214,0 +170780826641,213,0 +170780826690,213,0 +170780826738,213,0 +170780826788,213,0 +170780826837,213,0 +170780826885,213,0 +170780826933,213,0 +170780826981,213,0 +170780827029,214,0 +170780827077,214,0 +170780827125,214,0 +170780827173,214,0 +170780827222,214,0 +170780827270,214,0 +170780827319,214,0 +170780827367,214,0 +170780827417,213,0 +170780827465,213,0 +170780827513,213,0 +170780827561,213,0 +170780827610,213,0 +170780827660,213,0 +170780827708,213,0 +170780827755,213,0 +170780827803,213,0 +170780827853,213,0 +170780827903,214,0 +170780827952,214,0 +170780828002,214,0 +170780828051,214,0 +170780828101,214,0 +170780828150,214,0 +170780828198,214,0 +170780828248,213,0 +170780828296,213,0 +170780828345,213,0 +170780828393,213,0 +170780828443,213,0 +170780828490,213,0 +170780828538,213,0 +170780828586,214,0 +170780828634,214,0 +170780828682,214,0 +170780828730,214,0 +170780828778,214,0 +170780828826,214,0 +170780828874,214,0 +170780828923,214,0 +170780828973,214,0 +170780829021,214,0 +170780829070,214,0 +170780829118,214,0 +170780829166,214,0 +170780829214,214,0 +170780829264,214,0 +170780829312,214,0 +170780829361,214,0 +170780829409,214,0 +170780829457,214,0 +170780829507,214,0 +170780829556,214,0 +170780829606,215,0 +170780829653,215,0 +170780829701,214,0 +170780829749,214,0 +170780829797,214,0 +170780829845,214,0 +170780829893,214,0 +170780829941,214,0 +170780829989,214,0 +170780830037,214,0 +170780830085,214,0 +170780830133,214,0 +170780830181,214,0 +170780830229,214,0 +170780830277,214,0 +170780830325,214,0 +170780830372,214,0 +170780830420,214,0 +170780830468,215,0 +170780830518,215,0 +170780830566,214,0 +170780830614,214,0 +170780830662,214,0 +170780830710,214,0 +170780830758,214,0 +170780830807,214,0 +170780830855,214,0 +170780830903,214,0 +170780830951,214,0 +170780830999,214,0 +170780831047,214,0 +170780831095,214,0 +170780831143,215,0 +170780831191,214,0 +170780831240,214,0 +170780831288,215,0 +170780831336,214,0 +170780831384,214,0 +170780831433,213,0 +170780831481,213,0 +170780831531,213,0 +170780831580,214,0 +170780831630,214,0 +170780831679,214,0 +170780831727,214,0 +170780831775,214,0 +170780831825,214,0 +170780831874,214,0 +170780831922,214,0 +170780831970,214,0 +170780832018,214,0 +170780832067,214,0 +170780832115,214,0 +170780832165,214,0 +170780832214,214,0 +170780832264,213,0 +170780832311,213,0 +170780832359,214,0 +170780832407,213,0 +170780832457,214,0 +170780832506,214,0 +170780832554,214,0 +170780832602,214,0 +170780832652,214,0 +170780832700,214,0 +170780832748,214,0 +170780832796,214,0 +170780832844,214,0 +170780832893,214,0 +170780832941,214,0 +170780832990,214,0 +170780833038,213,0 +170780833086,213,0 +170780833134,213,0 +170780833182,214,0 +170780833230,213,0 +170780833278,214,0 +170780833326,213,0 +170780833376,214,0 +170780833423,214,0 +170780833471,214,0 +170780833521,214,0 +170780833569,214,0 +170780833617,214,0 +170780833666,214,0 +170780833714,214,0 +170780833762,214,0 +170780833810,214,0 +170780833858,213,0 +170780833906,213,0 +170780833954,213,0 +170780834002,213,0 +170780834051,213,0 +170780834099,213,0 +170780834147,213,0 +170780834197,214,0 +170780834246,214,0 +170780834296,214,0 +170780834344,214,0 +170780834391,214,0 +170780834439,214,0 +170780834489,214,0 +170780834537,214,0 +170780834585,214,0 +170780834633,213,0 +170780834681,213,0 +170780834730,213,0 +170780834780,213,0 +170780834829,213,0 +170780834877,213,0 +170780834925,213,0 +170780834974,213,0 +170780835022,214,0 +170780835070,214,0 +170780835118,214,0 +170780835168,214,0 +170780835215,214,0 +170780835263,214,0 +170780835311,214,0 +170780835359,214,0 +170780835407,214,0 +170780835456,213,0 +170780835506,213,0 +170780835554,213,0 +170780835603,213,0 +170780835653,213,0 +170780835702,214,0 +170780835750,214,0 +170780835798,214,0 +170780835848,214,0 +170780835896,214,0 +170780835943,214,0 +170780835991,214,0 +170780836039,214,0 +170780836087,214,0 +170780836135,214,0 +170780836183,214,0 +170780836231,213,0 +170780836279,213,0 +170780836327,213,0 +170780836375,213,0 +170780836423,213,0 +170780836472,214,0 +170780836522,214,0 +170780836571,214,0 +170780836621,214,0 +170780836671,214,0 +170780836720,214,0 +170780836770,214,0 +170780836819,214,0 +170780836867,214,0 +170780836915,214,0 +170780836965,214,0 +170780837014,214,0 +170780837064,213,0 +170780837112,213,0 +170780837160,213,0 +170780837208,213,0 +170780837256,213,0 +170780837305,214,0 +170780837353,214,0 +170780837402,214,0 +170780837450,214,0 +170780837498,214,0 +170780837546,214,0 +170780837594,214,0 +170780837642,214,0 +170780837690,214,0 +170780837740,214,0 +170780837788,214,0 +170780837836,213,0 +170780837885,213,0 +170780837933,213,0 +170780837981,213,0 +170780838029,213,0 +170780838077,213,0 +170780838125,213,0 +170780838173,214,0 +170780838221,214,0 +170780838269,214,0 +170780838317,214,0 +170780838365,214,0 +170780838413,214,0 +170780838461,214,0 +170780838510,214,0 +170780838560,214,0 +170780838609,214,0 +170780838659,213,0 +170780838706,213,0 +170780838754,213,0 +170780838804,214,0 +170780838853,214,0 +170780838901,213,0 +170780838949,214,0 +170780838997,214,0 +170780839045,214,0 +170780839093,214,0 +170780839141,214,0 +170780839191,214,0 +170780839239,214,0 +170780839287,214,0 +170780839336,214,0 +170780839384,214,0 +170780839432,214,0 +170780839481,213,0 +170780839529,213,0 +170780839577,213,0 +170780839625,214,0 +170780839675,214,0 +170780839723,214,0 +170780839770,214,0 +170780839818,214,0 +170780839866,214,0 +170780839914,214,0 +170780839962,214,0 +170780840010,214,0 +170780840060,214,0 +170780840108,214,0 +170780840157,214,0 +170780840205,214,0 +170780840254,214,0 +170780840302,213,0 +170780840352,213,0 +170780840400,214,0 +170780840448,214,0 +170780840497,214,0 +170780840545,214,0 +170780840594,214,0 +170780840644,214,0 +170780840692,214,0 +170780840740,214,0 +170780840789,214,0 +170780840839,214,0 +170780840888,214,0 +170780840936,214,0 +170780840986,214,0 +170780841035,214,0 +170780841083,214,0 +170780841133,214,0 +170780841181,214,0 +170780841229,214,0 +170780841277,214,0 +170780841325,214,0 +170780841372,214,0 +170780841420,214,0 +170780841468,214,0 +170780841518,214,0 +170780841567,214,0 +170780841615,214,0 +170780841665,214,0 +170780841713,214,0 +170780841761,214,0 +170780841809,214,0 +170780841858,214,0 +170780841908,213,0 +170780841956,214,0 +170780842005,214,0 +170780842053,214,0 +170780842101,214,0 +170780842149,214,0 +170780842197,214,0 +170780842245,214,0 +170780842294,214,0 +170780842342,214,0 +170780842392,214,0 +170780842440,214,0 +170780842488,214,0 +170780842536,214,0 +170780842583,214,0 +170780842631,213,0 +170780842679,213,0 +170780842727,213,0 +170780842775,213,0 +170780842823,213,0 +170780842871,213,0 +170780842919,214,0 +170780842967,214,0 +170780843016,214,0 +170780843064,214,0 +170780843114,214,0 +170780843162,214,0 +170780843210,214,0 +170780843258,214,0 +170780843305,214,0 +170780843354,214,0 +170780843401,214,0 +170780843451,213,0 +170780843501,213,0 +170780843550,213,0 +170780843598,213,0 +170780843648,213,0 +170780843697,213,0 +170780843747,213,0 +170780843796,214,0 +170780843844,213,0 +170780843892,214,0 +170780843941,214,0 +170780843991,214,0 +170780844039,214,0 +170780844087,214,0 +170780844136,214,0 +170780844186,214,0 +170780844233,214,0 +170780844283,213,0 +170780844331,213,0 +170780844379,213,0 +170780844427,213,0 +170780844474,213,0 +170780844522,213,0 +170780844570,213,0 +170780844620,213,0 +170780844667,214,0 +170780844715,214,0 +170780844763,214,0 +170780844812,214,0 +170780844860,214,0 +170780844908,214,0 +170780844958,214,0 +170780845006,214,0 +170780845055,214,0 +170780845103,213,0 +170780845152,213,0 +170780845200,214,0 +170780845250,214,0 +170780845298,214,0 +170780845345,214,0 +170780845393,214,0 +170780845441,214,0 +170780845489,214,0 +170780845537,214,0 +170780845585,214,0 +170780845633,214,0 +170780845681,214,0 +170780845730,214,0 +170780845778,214,0 +170780845828,214,0 +170780845877,213,0 +170780845925,213,0 +170780845973,213,0 +170780846021,213,0 +170780846070,213,0 +170780846118,214,0 +170780846166,214,0 +170780846214,214,0 +170780846262,214,0 +170780846311,214,0 +170780846359,214,0 +170780846407,214,0 +170780846455,214,0 +170780846503,214,0 +170780846552,214,0 +170780846600,214,0 +170780846648,214,0 +170780846696,213,0 +170780846744,213,0 +170780846792,213,0 +170780846841,213,0 +170780846889,213,0 +170780846937,214,0 +170780846987,214,0 +170780847035,214,0 +170780847083,214,0 +170780847132,214,0 +170780847182,214,0 +170780847229,214,0 +170780847277,214,0 +170780847325,214,0 +170780847373,214,0 +170780847421,214,0 +170780847469,213,0 +170780847519,213,0 +170780847567,213,0 +170780847614,213,0 +170780847662,213,0 +170780847712,213,0 +170780847761,213,0 +170780847810,213,0 +170780847858,213,0 +170780847905,214,0 +170780847953,214,0 +170780848003,214,0 +170780848051,214,0 +170780848099,214,0 +170780848147,214,0 +170780848196,214,0 +170780848244,213,0 +170780848292,213,0 +170780848340,213,0 +170780848388,213,0 +170780848436,213,0 +170780848484,213,0 +170780848533,213,0 +170780848583,213,0 +170780848631,213,0 +170780848679,214,0 +170780848727,214,0 +170780848776,214,0 +170780848824,214,0 +170780848872,214,0 +170780848921,214,0 +170780848969,214,0 +170780849019,214,0 +170780849067,213,0 +170780849116,213,0 +170780849164,213,0 +170780849212,214,0 +170780849260,213,0 +170780849308,213,0 +170780849358,214,0 +170780849407,214,0 +170780849455,214,0 +170780849503,214,0 +170780849553,214,0 +170780849601,214,0 +170780849648,214,0 +170780849696,214,0 +170780849746,214,0 +170780849795,214,0 +170780849845,214,0 +170780849894,213,0 +170780849942,213,0 +170780849992,213,0 +170780850040,213,0 +170780850088,214,0 +170780850137,214,0 +170780850187,214,0 +170780850236,214,0 +170780850284,214,0 +170780850332,214,0 +170780850380,214,0 +170780850430,214,0 +170780850478,214,0 +170780850527,214,0 +170780850577,214,0 +170780850625,214,0 +170780850674,213,0 +170780850724,213,0 +170780850771,213,0 +170780850820,213,0 +170780850868,214,0 +170780850917,214,0 +170780850967,214,0 +170780851017,214,0 +170780851065,214,0 +170780851114,214,0 +170780851162,214,0 +170780851210,214,0 +170780851259,214,0 +170780851309,214,0 +170780851357,214,0 +170780851405,214,0 +170780851453,214,0 +170780851502,213,0 +170780851550,213,0 +170780851599,213,0 +170780851647,214,0 +170780851695,214,0 +170780851743,214,0 +170780851791,214,0 +170780851838,214,0 +170780851888,214,0 +170780851936,214,0 +170780851983,214,0 +170780852031,214,0 +170780852079,214,0 +170780852127,214,0 +170780852175,214,0 +170780852223,214,0 +170780852272,213,0 +170780852320,213,0 +170780852368,213,0 +170780852416,214,0 +170780852464,214,0 +170780852512,214,0 +170780852559,214,0 +170780852607,214,0 +170780852655,214,0 +170780852703,214,0 +170780852751,214,0 +170780852799,214,0 +170780852848,214,0 +170780852896,214,0 +170780852944,214,0 +170780852992,214,0 +170780853040,214,0 +170780853089,213,0 +170780853137,214,0 +170780853185,214,0 +170780853234,214,0 +170780853282,214,0 +170780853330,214,0 +170780853380,214,0 +170780853428,214,0 +170780853476,214,0 +170780853525,214,0 +170780853575,214,0 +170780853624,214,0 +170780853674,214,0 +170780853722,214,0 +170780853770,214,0 +170780853819,214,0 +170780853867,214,0 +170780853917,214,0 +170780853965,214,0 +170780854012,214,0 +170780854060,214,0 +170780854108,214,0 +170780854156,214,0 +170780854204,214,0 +170780854252,214,0 +170780854300,214,0 +170780854347,214,0 +170780854395,214,0 +170780854445,214,0 +170780854493,214,0 +170780854540,214,0 +170780854590,214,0 +170780854638,214,0 +170780854685,214,0 +170780854733,214,0 +170780854783,214,0 +170780854831,214,0 +170780854878,214,0 +170780854926,214,0 +170780854974,214,0 +170780855022,214,0 +170780855072,215,0 +170780855120,214,0 +170780855167,214,0 +170780855215,214,0 +170780855265,214,0 +170780855312,215,0 +170780855360,214,0 +170780855408,214,0 +170780855458,214,0 +170780855506,214,0 +170780855554,214,0 +170780855601,214,0 +170780855649,214,0 +170780855697,214,0 +170780855745,214,0 +170780855793,214,0 +170780855841,214,0 +170780855889,214,0 +170780855936,214,0 +170780855984,214,0 +170780856032,214,0 +170780856080,214,0 +170780856128,214,0 +170780856175,214,0 +170780856223,214,0 +170780856271,214,0 +170780856319,213,0 +170780856367,213,0 +170780856415,213,0 +170780856462,213,0 +170780856510,213,0 +170780856558,214,0 +170780856606,213,0 +170780856656,214,0 +170780856704,214,0 +170780856751,214,0 +170780856799,214,0 +170780856849,214,0 +170780856897,214,0 +170780856944,214,0 +170780856992,214,0 +170780857040,214,0 +170780857090,213,0 +170780857137,213,0 +170780857185,213,0 +170780857235,213,0 +170780857282,213,0 +170780857330,213,0 +170780857378,213,0 +170780857426,214,0 +170780857473,213,0 +170780857521,213,0 +170780857569,214,0 +170780857617,214,0 +170780857665,214,0 +170780857713,214,0 +170780857760,214,0 +170780857808,214,0 +170780857856,214,0 +170780857904,213,0 +170780857952,213,0 +170780857999,213,0 +170780858047,213,0 +170780858095,213,0 +170780858143,214,0 +170780858191,214,0 +170780858239,214,0 +170780858288,214,0 +170780858336,214,0 +170780858385,214,0 +170780858433,214,0 +170780858481,214,0 +170780858529,214,0 +170780858577,214,0 +170780858626,214,0 +170780858676,214,0 +170780858724,214,0 +170780858773,213,0 +170780858821,214,0 +170780858870,214,0 +170780858918,214,0 +170780858966,214,0 +170780859015,214,0 +170780859063,214,0 +170780859113,214,0 +170780859162,214,0 +170780859212,214,0 +170780859260,214,0 +170780859307,214,0 +170780859355,214,0 +170780859403,214,0 +170780859451,214,0 +170780859499,213,0 +170780859549,214,0 +170780859598,214,0 +170780859648,214,0 +170780859696,214,0 +170780859745,214,0 +170780859795,214,0 +170780859843,214,0 +170780859890,214,0 +170780859938,214,0 +170780859986,214,0 +170780860034,214,0 +170780860082,214,0 +170780860130,214,0 +170780860178,214,0 +170780860226,214,0 +170780860274,214,0 +170780860323,213,0 +170780860371,213,0 +170780860419,214,0 +170780860467,214,0 +170780860515,214,0 +170780860564,214,0 +170780860612,214,0 +170780860660,214,0 +170780860708,214,0 +170780860755,214,0 +170780860803,214,0 +170780860851,214,0 +170780860899,214,0 +170780860947,214,0 +170780860994,214,0 +170780861042,214,0 +170780861092,213,0 +170780861140,213,0 +170780861189,213,0 +170780861237,213,0 +170780861284,214,0 +170780861332,214,0 +170780861380,214,0 +170780861428,214,0 +170780861477,214,0 +170780861525,214,0 +170780861575,214,0 +170780861622,214,0 +170780861670,214,0 +170780861718,214,0 +170780861768,214,0 +170780861816,214,0 +170780861865,214,0 +170780861915,213,0 +170780861963,213,0 +170780862012,213,0 +170780862060,213,0 +170780862108,214,0 +170780862156,213,0 +170780862206,214,0 +170780862254,214,0 +170780862303,214,0 +170780862351,214,0 +170780862399,214,0 +170780862447,214,0 +170780862495,214,0 +170780862543,214,0 +170780862592,214,0 +170780862642,214,0 +170780862690,214,0 +170780862737,213,0 +170780862785,213,0 +170780862833,213,0 +170780862883,213,0 +170780862931,213,0 +170780862979,214,0 +170780863027,214,0 +170780863076,214,0 +170780863126,214,0 +170780863175,214,0 +170780863223,214,0 +170780863271,214,0 +170780863319,214,0 +170780863368,214,0 +170780863416,214,0 +170780863464,214,0 +170780863512,213,0 +170780863560,213,0 +170780863608,213,0 +170780863658,213,0 +170780863705,213,0 +170780863753,213,0 +170780863801,213,0 +170780863849,213,0 +170780863897,213,0 +170780863944,213,0 +170780863992,214,0 +170780864040,214,0 +170780864090,214,0 +170780864139,214,0 +170780864187,214,0 +170780864235,214,0 +170780864283,214,0 +170780864331,213,0 +170780864378,213,0 +170780864426,213,0 +170780864474,213,0 +170780864522,213,0 +170780864570,213,0 +170780864618,213,0 +170780864666,213,0 +170780864713,213,0 +170780864761,214,0 +170780864809,214,0 +170780864857,214,0 +170780864905,214,0 +170780864953,214,0 +170780865002,214,0 +170780865050,214,0 +170780865098,213,0 +170780865146,213,0 +170780865193,213,0 +170780865241,213,0 +170780865289,213,0 +170780865337,213,0 +170780865385,214,0 +170780865433,213,0 +170780865483,214,0 +170780865532,214,0 +170780865580,214,0 +170780865630,214,0 +170780865678,214,0 +170780865727,214,0 +170780865777,214,0 +170780865825,214,0 +170780865872,214,0 +170780865922,213,0 +170780865970,213,0 +170780866018,213,0 +170780866066,213,0 +170780866114,214,0 +170780866162,214,0 +170780866211,214,0 +170780866259,214,0 +170780866307,214,0 +170780866354,214,0 +170780866402,214,0 +170780866450,214,0 +170780866498,214,0 +170780866546,214,0 +170780866594,214,0 +170780866642,214,0 +170780866689,214,0 +170780866737,213,0 +170780866785,214,0 +170780866835,214,0 +170780866884,214,0 +170780866932,214,0 +170780866980,214,0 +170780867028,214,0 +170780867075,214,0 +170780867123,214,0 +170780867171,214,0 +170780867219,214,0 +170780867267,214,0 +170780867315,214,0 +170780867362,214,0 +170780867410,214,0 +170780867458,214,0 +170780867506,214,0 +170780867555,213,0 +170780867603,213,0 +170780867651,213,0 +170780867699,213,0 +170780867747,214,0 +170780867795,214,0 +170780867842,214,0 +170780867890,214,0 +170780867938,214,0 +170780867987,214,0 +170780868035,214,0 +170780868083,214,0 +170780868131,214,0 +170780868179,214,0 +170780868227,214,0 +170780868275,214,0 +170780868322,213,0 +170780868370,213,0 +170780868418,213,0 +170780868466,213,0 +170780868514,213,0 +170780868562,214,0 +170780868610,214,0 +170780868657,214,0 +170780868707,214,0 +170780868755,214,0 +170780868802,214,0 +170780868850,214,0 +170780868898,214,0 +170780868946,214,0 +170780868994,214,0 +170780869042,214,0 +170780869090,214,0 +170780869138,214,0 +170780869186,214,0 +170780869234,214,0 +170780869281,214,0 +170780869329,214,0 +170780869377,214,0 +170780869425,214,0 +170780869473,214,0 +170780869521,214,0 +170780869569,214,0 +170780869618,214,0 +170780869666,214,0 +170780869716,214,0 +170780869764,214,0 +170780869811,214,0 +170780869859,214,0 +170780869909,214,0 +170780869958,214,0 +170780870006,214,0 +170780870054,214,0 +170780870102,214,0 +170780870150,214,0 +170780870198,214,0 +170780870247,214,0 +170780870295,214,0 +170780870344,214,0 +170780870392,215,0 +170780870440,214,0 +170780870488,215,0 +170780870536,215,0 +170780870586,214,0 +170780870634,214,0 +170780870681,214,0 +170780870729,214,0 +170780870779,214,0 +170780870827,214,0 +170780870876,214,0 +170780870924,214,0 +170780870972,214,0 +170780871022,214,0 +170780871069,214,0 +170780871117,214,0 +170780871167,214,0 +170780871216,214,0 +170780871264,214,0 +170780871312,215,0 +170780871362,214,0 +170780871411,214,0 +170780871459,214,0 +170780871507,214,0 +170780871555,213,0 +170780871604,213,0 +170780871652,214,0 +170780871700,213,0 +170780871750,214,0 +170780871797,214,0 +170780871845,214,0 +170780871893,214,0 +170780871943,214,0 +170780871992,214,0 +170780872040,214,0 +170780872088,214,0 +170780872136,214,0 +170780872184,214,0 +170780872233,214,0 +170780872281,214,0 +170780872329,213,0 +170780872379,213,0 +170780872427,213,0 +170780872476,213,0 +170780872524,213,0 +170780872572,213,0 +170780872620,214,0 +170780872669,214,0 +170780872717,214,0 +170780872767,214,0 +170780872816,214,0 +170780872864,214,0 +170780872912,214,0 +170780872962,214,0 +170780873011,214,0 +170780873059,214,0 +170780873107,214,0 +170780873155,213,0 +170780873203,213,0 +170780873251,213,0 +170780873299,213,0 +170780873348,213,0 +170780873398,213,0 +170780873446,214,0 +170780873495,214,0 +170780873545,214,0 +170780873593,214,0 +170780873642,214,0 +170780873690,214,0 +170780873738,214,0 +170780873786,214,0 +170780873836,214,0 +170780873885,214,0 +170780873933,213,0 +170780873981,213,0 +170780874030,213,0 +170780874080,213,0 +170780874129,213,0 +170780874177,214,0 +170780874225,214,0 +170780874273,214,0 +170780874322,214,0 +170780874370,214,0 +170780874420,214,0 +170780874467,214,0 +170780874515,214,0 +170780874563,214,0 +170780874611,214,0 +170780874659,214,0 +170780874707,214,0 +170780874755,213,0 +170780874803,213,0 +170780874850,213,0 +170780874898,213,0 +170780874946,213,0 +170780874994,214,0 +170780875042,214,0 +170780875089,213,0 +170780875137,214,0 +170780875185,214,0 +170780875233,214,0 +170780875281,214,0 +170780875329,214,0 +170780875377,214,0 +170780875426,214,0 +170780875474,214,0 +170780875522,214,0 +170780875570,213,0 +170780875618,213,0 +170780875667,213,0 +170780875716,213,0 +170780875764,213,0 +170780875814,213,0 +170780875862,213,0 +170780875911,213,0 +170780875959,213,0 +170780876007,214,0 +170780876055,214,0 +170780876103,214,0 +170780876151,214,0 +170780876201,214,0 +170780876250,214,0 +170780876298,214,0 +170780876348,213,0 +170780876395,213,0 +170780876445,213,0 +170780876495,213,0 +170780876543,213,0 +170780876591,213,0 +170780876639,214,0 +170780876688,213,0 +170780876736,213,0 +170780876786,214,0 +170780876834,214,0 +170780876881,214,0 +170780876929,214,0 +170780876977,214,0 +170780877025,214,0 +170780877073,214,0 +170780877121,214,0 +170780877169,213,0 +170780877219,213,0 +170780877267,213,0 +170780877316,213,0 +170780877364,213,0 +170780877412,213,0 +170780877460,213,0 +170780877508,214,0 +170780877557,214,0 +170780877607,214,0 +170780877655,214,0 +170780877703,214,0 +170780877752,214,0 +170780877800,214,0 +170780877849,214,0 +170780877897,214,0 +170780877945,214,0 +170780877995,214,0 +170780878044,214,0 +170780878094,214,0 +170780878142,214,0 +170780878190,214,0 +170780878238,214,0 +170780878286,214,0 +170780878335,214,0 +170780878383,214,0 +170780878431,214,0 +170780878480,214,0 +170780878530,214,0 +170780878578,214,0 +170780878627,214,0 +170780878677,214,0 +170780878725,214,0 +170780878773,214,0 +170780878821,214,0 +170780878870,214,0 +170780878918,214,0 +170780878966,214,0 +170780879016,214,0 +170780879064,214,0 +170780879112,214,0 +170780879161,214,0 +170780879209,214,0 +170780879257,214,0 +170780879306,214,0 +170780879356,215,0 +170780879404,214,0 +170780879452,214,0 +170780879500,214,0 +170780879547,214,0 +170780879595,214,0 +170780879643,214,0 +170780879693,214,0 +170780879741,214,0 +170780879790,214,0 +170780879838,214,0 +170780879886,214,0 +170780879934,214,0 +170780879984,214,0 +170780880032,214,0 +170780880081,214,0 +170780880129,214,0 +170780880177,214,0 +170780880225,214,0 +170780880273,214,0 +170780880321,214,0 +170780880370,213,0 +170780880420,213,0 +170780880469,214,0 +170780880517,214,0 +170780880566,214,0 +170780880614,214,0 +170780880662,214,0 +170780880710,214,0 +170780880758,214,0 +170780880808,214,0 +170780880857,214,0 +170780880907,214,0 +170780880956,214,0 +170780881006,214,0 +170780881055,214,0 +170780881103,214,0 +170780881153,213,0 +170780881202,213,0 +170780881250,213,0 +170780881298,213,0 +170780881347,213,0 +170780881395,213,0 +170780881443,213,0 +170780881492,214,0 +170780881540,214,0 +170780881588,214,0 +170780881636,214,0 +170780881684,214,0 +170780881733,214,0 +170780881781,214,0 +170780881829,214,0 +170780881876,214,0 +170780881924,214,0 +170780881972,213,0 +170780882020,213,0 +170780882068,213,0 +170780882117,213,0 +170780882165,213,0 +170780882213,214,0 +170780882261,214,0 +170780882309,214,0 +170780882357,214,0 +170780882404,214,0 +170780882452,214,0 +170780882500,214,0 +170780882548,214,0 +170780882597,214,0 +170780882645,214,0 +170780882693,214,0 +170780882741,214,0 +170780882790,213,0 +170780882838,213,0 +170780882886,214,0 +170780882934,213,0 +170780882982,213,0 +170780883030,214,0 +170780883080,214,0 +170780883128,214,0 +170780883176,214,0 +170780883224,214,0 +170780883273,214,0 +170780883323,214,0 +170780883372,214,0 +170780883422,214,0 +170780883470,214,0 +170780883518,214,0 +170780883566,213,0 +170780883615,213,0 +170780883663,213,0 +170780883711,213,0 +170780883759,213,0 +170780883809,214,0 +170780883858,214,0 +170780883907,214,0 +170780883957,214,0 +170780884007,214,0 +170780884056,214,0 +170780884104,214,0 +170780884152,214,0 +170780884201,214,0 +170780884251,214,0 +170780884301,214,0 +170780884348,213,0 +170780884396,213,0 +170780884444,213,0 +170780884492,213,0 +170780884540,213,0 +170780884588,213,0 +170780884638,213,0 +170780884687,214,0 +170780884735,214,0 +170780884783,214,0 +170780884831,214,0 +170780884879,214,0 +170780884927,214,0 +170780884975,214,0 +170780885024,214,0 +170780885072,214,0 +170780885120,214,0 +170780885170,213,0 +170780885218,213,0 +170780885266,213,0 +170780885314,213,0 +170780885363,213,0 +170780885413,213,0 +170780885462,213,0 +170780885510,213,0 +170780885558,214,0 +170780885608,214,0 +170780885655,214,0 +170780885703,214,0 +170780885751,214,0 +170780885801,214,0 +170780885849,214,0 +170780885897,214,0 +170780885945,214,0 +170780885992,213,0 +170780886040,213,0 +170780886088,213,0 +170780886136,213,0 +170780886186,213,0 +170780886235,213,0 +170780886283,213,0 +170780886333,213,0 +170780886381,213,0 +170780886429,214,0 +170780886477,214,0 +170780886525,214,0 +170780886572,214,0 +170780886620,214,0 +170780886668,214,0 +170780886716,214,0 +170780886766,213,0 +170780886814,213,0 +170780886863,213,0 +170780886911,213,0 +170780886959,213,0 +170780887007,213,0 +170780887055,213,0 +170780887105,213,0 +170780887153,214,0 +170780887202,214,0 +170780887250,214,0 +170780887298,214,0 +170780887346,214,0 +170780887394,214,0 +170780887442,214,0 +170780887491,214,0 +170780887539,214,0 +170780887587,213,0 +170780887635,213,0 +170780887685,213,0 +170780887733,213,0 +170780887781,214,0 +170780887829,213,0 +170780887877,214,0 +170780887924,214,0 +170780887972,214,0 +170780888020,214,0 +170780888068,214,0 +170780888118,214,0 +170780888166,214,0 +170780888214,214,0 +170780888262,214,0 +170780888309,214,0 +170780888357,214,0 +170780888405,213,0 +170780888453,213,0 +170780888503,213,0 +170780888553,213,0 +170780888602,214,0 +170780888650,214,0 +170780888698,214,0 +170780888746,214,0 +170780888794,214,0 +170780888842,214,0 +170780888891,214,0 +170780888939,214,0 +170780888989,214,0 +170780889038,214,0 +170780889086,214,0 +170780889136,214,0 +170780889185,213,0 +170780889235,213,0 +170780889283,213,0 +170780889331,214,0 +170780889380,213,0 +170780889428,213,0 +170780889476,213,0 +170780889526,214,0 +170780889575,214,0 +170780889623,214,0 +170780889673,214,0 +170780889721,214,0 +170780889770,214,0 +170780889820,214,0 +170780889869,214,0 +170780889919,214,0 +170780889967,214,0 +170780890014,214,0 +170780890064,214,0 +170780890112,214,0 +170780890160,214,0 +170780890208,214,0 +170780890256,214,0 +170780890304,214,0 +170780890351,214,0 +170780890399,214,0 +170780890449,214,0 +170780890497,215,0 +170780890546,214,0 +170780890596,214,0 +170780890645,214,0 +170780890693,214,0 +170780890741,214,0 +170780890789,214,0 +170780890837,214,0 +170780890887,214,0 +170780890936,214,0 +170780890984,214,0 +170780891032,215,0 +170780891082,214,0 +170780891129,214,0 +170780891177,214,0 +170780891225,215,0 +170780891275,214,0 +170780891324,214,0 +170780891372,215,0 +170780891422,214,0 +170780891470,214,0 +170780891518,214,0 +170780891566,214,0 +170780891614,214,0 +170780891663,214,0 +170780891711,214,0 +170780891759,214,0 +170780891807,214,0 +170780891857,214,0 +170780891906,214,0 +170780891956,214,0 +170780892005,214,0 +170780892053,214,0 +170780892101,214,0 +170780892149,214,0 +170780892197,214,0 +170780892246,214,0 +170780892294,214,0 +170780892344,214,0 +170780892392,213,0 +170780892441,214,0 +170780892491,213,0 +170780892539,214,0 +170780892587,214,0 +170780892635,214,0 +170780892684,214,0 +170780892732,214,0 +170780892780,214,0 +170780892828,214,0 +170780892876,214,0 +170780892926,214,0 +170780892974,214,0 +170780893022,214,0 +170780893070,214,0 +170780893119,214,0 +170780893169,214,0 +170780893217,213,0 +170780893266,213,0 +170780893315,213,0 +170780893363,213,0 +170780893411,214,0 +170780893461,214,0 +170780893509,214,0 +170780893558,214,0 +170780893606,214,0 +170780893654,214,0 +170780893702,214,0 +170780893750,214,0 +170780893798,214,0 +170780893846,214,0 +170780893894,214,0 +170780893941,214,0 +170780893989,213,0 +170780894037,213,0 +170780894085,213,0 +170780894133,213,0 +170780894181,213,0 +170780894229,213,0 +170780894278,213,0 +170780894328,214,0 +170780894375,214,0 +170780894423,214,0 +170780894473,214,0 +170780894521,214,0 +170780894569,214,0 +170780894617,214,0 +170780894665,214,0 +170780894714,214,0 +170780894764,214,0 +170780894812,213,0 +170780894860,213,0 +170780894908,213,0 +170780894956,213,0 +170780895005,213,0 +170780895053,213,0 +170780895103,213,0 +170780895150,213,0 +170780895198,213,0 +170780895248,213,0 +170780895296,214,0 +170780895344,214,0 +170780895392,214,0 +170780895440,214,0 +170780895488,214,0 +170780895537,214,0 +170780895585,213,0 +170780895633,213,0 +170780895681,213,0 +170780895729,213,0 +170780895776,213,0 +170780895826,214,0 +170780895874,214,0 +170780895922,214,0 +170780895971,214,0 +170780896019,214,0 +170780896069,214,0 +170780896117,214,0 +170780896166,214,0 +170780896214,214,0 +170780896264,214,0 +170780896313,214,0 +170780896361,214,0 +170780896409,213,0 +170780896457,213,0 +170780896507,213,0 +170780896556,213,0 +170780896606,213,0 +170780896654,213,0 +170780896702,214,0 +170780896751,214,0 +170780896799,214,0 +170780896849,214,0 +170780896898,214,0 +170780896946,214,0 +170780896994,214,0 +170780897042,214,0 +170780897090,214,0 +170780897138,214,0 +170780897186,214,0 +170780897233,213,0 +170780897282,213,0 +170780897331,213,0 +170780897379,213,0 +170780897429,214,0 +170780897476,214,0 +170780897526,213,0 +170780897574,214,0 +170780897622,214,0 +170780897670,214,0 +170780897718,214,0 +170780897765,214,0 +170780897813,214,0 +170780897863,214,0 +170780897911,214,0 +170780897958,214,0 +170780898008,213,0 +170780898056,213,0 +170780898104,213,0 +170780898152,213,0 +170780898199,213,0 +170780898247,214,0 +170780898295,214,0 +170780898345,214,0 +170780898392,214,0 +170780898442,214,0 +170780898491,214,0 +170780898539,214,0 +170780898589,214,0 +170780898637,214,0 +170780898686,214,0 +170780898734,214,0 +170780898782,214,0 +170780898830,213,0 +170780898879,214,0 +170780898927,213,0 +170780898975,214,0 +170780899023,214,0 +170780899073,214,0 +170780899122,214,0 +170780899170,214,0 +170780899218,214,0 +170780899266,214,0 +170780899316,214,0 +170780899365,214,0 +170780899413,214,0 +170780899461,214,0 +170780899510,214,0 +170780899558,214,0 +170780899606,213,0 +170780899654,213,0 +170780899702,213,0 +170780899751,214,0 +170780899799,214,0 +170780899847,214,0 +170780899897,214,0 +170780899946,214,0 +170780899994,214,0 +170780900042,214,0 +170780900090,214,0 +170780900138,214,0 +170780900186,214,0 +170780900234,214,0 +170780900282,214,0 +170780900330,214,0 +170780900378,214,0 +170780900427,214,0 +170780900477,214,0 +170780900526,214,0 +170780900574,214,0 +170780900622,214,0 +170780900672,214,0 +170780900720,214,0 +170780900768,214,0 +170780900815,214,0 +170780900865,214,0 +170780900913,214,0 +170780900961,214,0 +170780901009,214,0 +170780901057,214,0 +170780901105,214,0 +170780901153,214,0 +170780901202,214,0 +170780901250,213,0 +170780901298,214,0 +170780901346,214,0 +170780901394,214,0 +170780901443,214,0 +170780901493,214,0 +170780901541,214,0 +170780901589,214,0 +170780901638,214,0 +170780901686,214,0 +170780901736,214,0 +170780901785,214,0 +170780901835,214,0 +170780901884,214,0 +170780901932,214,0 +170780901981,214,0 +170780902029,214,0 +170780902079,213,0 +170780902129,214,0 +170780902178,213,0 +170780902226,214,0 +170780902274,213,0 +170780902322,214,0 +170780902371,214,0 +170780902421,214,0 +170780902469,214,0 +170780902518,214,0 +170780902566,214,0 +170780902614,214,0 +170780902662,214,0 +170780902710,214,0 +170780902758,214,0 +170780902806,214,0 +170780902854,213,0 +170780902902,213,0 +170780902950,213,0 +170780902998,214,0 +170780903046,214,0 +170780903094,214,0 +170780903142,214,0 +170780903190,214,0 +170780903237,214,0 +170780903287,214,0 +170780903335,214,0 +170780903385,214,0 +170780903433,214,0 +170780903480,214,0 +170780903528,214,0 +170780903576,214,0 +170780903624,213,0 +170780903674,213,0 +170780903722,213,0 +170780903771,214,0 +170780903821,214,0 +170780903870,214,0 +170780903920,214,0 +170780903969,214,0 +170780904017,214,0 +170780904065,214,0 +170780904113,214,0 +170780904161,214,0 +170780904209,214,0 +170780904257,214,0 +170780904305,214,0 +170780904353,214,0 +170780904402,213,0 +170780904452,213,0 +170780904500,213,0 +170780904549,213,0 +170780904599,213,0 +170780904648,214,0 +170780904696,214,0 +170780904744,214,0 +170780904792,214,0 +170780904840,214,0 +170780904889,214,0 +170780904937,214,0 +170780904987,214,0 +170780905035,214,0 +170780905083,214,0 +170780905131,214,0 +170780905180,214,0 +170780905228,213,0 +170780905277,213,0 +170780905327,213,0 +170780905375,213,0 +170780905423,213,0 +170780905472,213,0 +170780905520,213,0 +170780905570,214,0 +170780905618,214,0 +170780905666,214,0 +170780905714,214,0 +170780905763,214,0 +170780905811,214,0 +170780905859,214,0 +170780905909,214,0 +170780905957,214,0 +170780906006,214,0 +170780906054,213,0 +170780906104,213,0 +170780906153,213,0 +170780906201,213,0 +170780906249,213,0 +170780906297,213,0 +170780906346,213,0 +170780906396,214,0 +170780906445,214,0 +170780906495,214,0 +170780906543,214,0 +170780906592,214,0 +170780906640,214,0 +170780906688,214,0 +170780906736,214,0 +170780906786,214,0 +170780906834,213,0 +170780906881,213,0 +170780906929,213,0 +170780906979,214,0 +170780907027,214,0 +170780907076,213,0 +170780907126,214,0 +170780907174,214,0 +170780907223,214,0 +170780907271,214,0 +170780907319,214,0 +170780907367,214,0 +170780907415,214,0 +170780907465,214,0 +170780907513,214,0 +170780907561,214,0 +170780907608,213,0 +170780907656,213,0 +170780907706,213,0 +170780907755,213,0 +170780907805,213,0 +170780907853,214,0 +170780907902,214,0 +170780907952,214,0 +170780908000,214,0 +170780908049,214,0 +170780908099,214,0 +170780908147,214,0 +170780908196,214,0 +170780908244,214,0 +170780908292,214,0 +170780908342,214,0 +170780908391,214,0 +170780908439,214,0 +170780908489,214,0 +170780908537,213,0 +170780908585,214,0 +170780908632,214,0 +170780908680,214,0 +170780908728,214,0 +170780908778,214,0 +170780908827,214,0 +170780908875,214,0 +170780908925,214,0 +170780908973,214,0 +170780909021,214,0 +170780909069,214,0 +170780909117,214,0 +170780909166,214,0 +170780909216,214,0 +170780909265,214,0 +170780909313,214,0 +170780909361,214,0 +170780909410,214,0 +170780909458,214,0 +170780909506,214,0 +170780909554,214,0 +170780909602,214,0 +170780909650,214,0 +170780909699,214,0 +170780909749,214,0 +170780909797,214,0 +170780909847,214,0 +170780909895,214,0 +170780909944,214,0 +170780909992,214,0 +170780910040,213,0 +170780910089,213,0 +170780910139,213,0 +170780910187,213,0 +170780910236,214,0 +170780910284,214,0 +170780910332,214,0 +170780910382,214,0 +170780910431,214,0 +170780910481,214,0 +170780910530,214,0 +170780910580,214,0 +170780910629,214,0 +170780910677,214,0 +170780910725,214,0 +170780910775,214,0 +170780910823,213,0 +170780910871,213,0 +170780910919,214,0 +170780910967,213,0 +170780911015,213,0 +170780911064,214,0 +170780911112,214,0 +170780911160,214,0 +170780911208,214,0 +170780911256,214,0 +170780911304,214,0 +170780911354,214,0 +170780911402,214,0 +170780911451,214,0 +170780911499,214,0 +170780911549,214,0 +170780911597,214,0 +170780911644,213,0 +170780911694,213,0 +170780911742,213,0 +170780911791,213,0 +170780911841,213,0 +170780911889,213,0 +170780911938,213,0 +170780911986,213,0 +170780912034,214,0 +170780912082,214,0 +170780912130,214,0 +170780912180,214,0 +170780912228,214,0 +170780912276,214,0 +170780912324,214,0 +170780912373,214,0 +170780912421,214,0 +170780912469,213,0 +170780912517,213,0 +170780912565,213,0 +170780912613,213,0 +170780912661,213,0 +170780912709,213,0 +170780912758,214,0 +170780912806,214,0 +170780912856,214,0 +170780912904,214,0 +170780912952,214,0 +170780913000,214,0 +170780913048,214,0 +170780913095,214,0 +170780913145,214,0 +170780913193,214,0 +170780913241,213,0 +170780913290,213,0 +170780913338,213,0 +170780913386,213,0 +170780913434,213,0 +170780913484,213,0 +170780913532,213,0 +170780913580,213,0 +170780913628,213,0 +170780913676,214,0 +170780913724,213,0 +170780913771,214,0 +170780913819,214,0 +170780913867,214,0 +170780913915,214,0 +170780913963,214,0 +170780914011,214,0 +170780914059,213,0 +170780914107,213,0 +170780914156,213,0 +170780914204,213,0 +170780914252,214,0 +170780914302,213,0 +170780914350,213,0 +170780914398,213,0 +170780914445,214,0 +170780914495,214,0 +170780914544,214,0 +170780914594,214,0 +170780914642,214,0 +170780914690,214,0 +170780914739,214,0 +170780914787,214,0 +170780914837,213,0 +170780914885,214,0 +170780914934,213,0 +170780914982,214,0 +170780915030,214,0 +170780915078,214,0 +170780915127,214,0 +170780915177,214,0 +170780915226,214,0 +170780915274,214,0 +170780915322,214,0 +170780915370,214,0 +170780915418,214,0 +170780915466,214,0 +170780915516,214,0 +170780915565,214,0 +170780915613,214,0 +170780915663,214,0 +170780915711,214,0 +170780915760,214,0 +170780915810,214,0 +170780915859,214,0 +170780915907,214,0 +170780915955,215,0 +170780916003,214,0 +170780916052,214,0 +170780916100,214,0 +170780916150,214,0 +170780916198,214,0 +170780916247,214,0 +170780916295,214,0 +170780916345,214,0 +170780916393,214,0 +170780916442,214,0 +170780916490,213,0 +170780916538,214,0 +170780916586,214,0 +170780916634,214,0 +170780916682,214,0 +170780916730,214,0 +170780916778,214,0 +170780916828,214,0 +170780916877,214,0 +170780916925,214,0 +170780916973,214,0 +170780917022,214,0 +170780917070,214,0 +170780917118,215,0 +170780917166,214,0 +170780917216,214,0 +170780917263,213,0 +170780917311,213,0 +170780917361,213,0 +170780917411,214,0 +170780917458,214,0 +170780917508,213,0 +170780917558,214,0 +170780917607,214,0 +170780917655,214,0 +170780917703,214,0 +170780917751,214,0 +170780917799,214,0 +170780917847,214,0 +170780917895,214,0 +170780917944,214,0 +170780917994,214,0 +170780918042,214,0 +170780918090,213,0 +170780918138,214,0 +170780918186,214,0 +170780918235,214,0 +170780918283,214,0 +170780918333,214,0 +170780918382,214,0 +170780918432,214,0 +170780918479,214,0 +170780918529,214,0 +170780918579,214,0 +170780918626,214,0 +170780918674,214,0 +170780918722,214,0 +170780918770,214,0 +170780918820,214,0 +170780918869,214,0 +170780918919,213,0 +170780918967,214,0 +170780919015,214,0 +170780919063,214,0 +170780919112,214,0 +170780919160,214,0 +170780919208,214,0 +170780919258,214,0 +170780919305,214,0 +170780919353,214,0 +170780919401,214,0 +170780919451,214,0 +170780919499,214,0 +170780919547,214,0 +170780919595,214,0 +170780919642,214,0 +170780919692,214,0 +170780919742,214,0 +170780919791,214,0 +170780919839,214,0 +170780919889,214,0 +170780919938,214,0 +170780919986,214,0 +170780920034,214,0 +170780920083,214,0 +170780920131,214,0 +170780920181,214,0 +170780920230,214,0 +170780920278,214,0 +170780920326,214,0 +170780920374,214,0 +170780920422,214,0 +170780920471,214,0 +170780920519,213,0 +170780920567,214,0 +170780920615,214,0 +170780920663,214,0 +170780920713,214,0 +170780920761,214,0 +170780920809,214,0 +170780920858,214,0 +170780920908,214,0 +170780920957,214,0 +170780921005,214,0 +170780921053,215,0 +170780921101,214,0 +170780921149,214,0 +170780921197,214,0 +170780921245,214,0 +170780921293,213,0 +170780921342,213,0 +170780921390,213,0 +170780921438,213,0 +170780921488,213,0 +170780921537,213,0 +170780921585,213,0 +170780921633,214,0 +170780921681,214,0 +170780921730,214,0 +170780921780,214,0 +170780921829,214,0 +170780921877,214,0 +170780921925,214,0 +170780921975,214,0 +170780922023,214,0 +170780922071,213,0 +170780922119,213,0 +170780922167,213,0 +170780922215,213,0 +170780922264,213,0 +170780922312,213,0 +170780922360,213,0 +170780922408,214,0 +170780922457,214,0 +170780922505,213,0 +170780922553,214,0 +170780922603,214,0 +170780922652,214,0 +170780922700,214,0 +170780922748,214,0 +170780922796,214,0 +170780922844,214,0 +170780922892,213,0 +170780922940,213,0 +170780922988,213,0 +170780923036,213,0 +170780923084,213,0 +170780923133,213,0 +170780923183,213,0 +170780923231,213,0 +170780923280,213,0 +170780923330,213,0 +170780923378,214,0 +170780923426,214,0 +170780923475,214,0 +170780923523,214,0 +170780923571,214,0 +170780923619,214,0 +170780923667,213,0 +170780923717,213,0 +170780923765,213,0 +170780923813,213,0 +170780923860,213,0 +170780923910,213,0 +170780923958,213,0 +170780924007,213,0 +170780924057,213,0 +170780924105,214,0 +170780924154,214,0 +170780924202,214,0 +170780924252,214,0 +170780924301,214,0 +170780924349,214,0 +170780924397,214,0 +170780924447,214,0 +170780924495,213,0 +170780924542,213,0 +170780924592,213,0 +170780924640,213,0 +170780924688,213,0 +170780924736,213,0 +170780924784,213,0 +170780924832,213,0 +170780924879,214,0 +170780924927,214,0 +170780924977,214,0 +170780925026,214,0 +170780925074,214,0 +170780925122,214,0 +170780925170,214,0 +170780925218,214,0 +170780925268,213,0 +170780925317,213,0 +170780925365,213,0 +170780925413,213,0 +170780925461,213,0 +170780925510,213,0 +170780925560,213,0 +170780925608,213,0 +170780925656,213,0 +170780925705,214,0 +170780925753,214,0 +170780925803,214,0 +170780925852,214,0 +170780925900,214,0 +170780925950,214,0 +170780925998,214,0 +170780926046,214,0 +170780926095,213,0 +170780926145,213,0 +170780926193,213,0 +170780926240,213,0 +170780926290,213,0 +170780926339,213,0 +170780926387,213,0 +170780926435,214,0 +170780926485,214,0 +170780926534,214,0 +170780926584,214,0 +170780926632,214,0 +170780926680,214,0 +170780926727,214,0 +170780926775,214,0 +170780926823,214,0 +170780926871,214,0 +170780926919,213,0 +170780926967,214,0 +170780927015,214,0 +170780927063,214,0 +170780927113,214,0 +170780927162,214,0 +170780927210,214,0 +170780927258,214,0 +170780927306,214,0 +170780927354,214,0 +170780927402,214,0 +170780927450,214,0 +170780927497,214,0 +170780927545,214,0 +170780927593,214,0 +170780927641,214,0 +170780927690,214,0 +170780927738,214,0 +170780927788,214,0 +170780927836,214,0 +170780927884,214,0 +170780927931,214,0 +170780927981,214,0 +170780928029,214,0 +170780928078,214,0 +170780928126,214,0 +170780928174,215,0 +170780928222,215,0 +170780928272,214,0 +170780928321,215,0 +170780928371,214,0 +170780928419,214,0 +170780928468,214,0 +170780928518,214,0 +170780928566,214,0 +170780928613,214,0 +170780928663,214,0 +170780928711,214,0 +170780928759,214,0 +170780928808,214,0 +170780928856,215,0 +170780928904,214,0 +170780928953,215,0 +170780929001,215,0 +170780929050,215,0 +170780929098,214,0 +170780929146,214,0 +170780929194,214,0 +170780929243,214,0 +170780929293,214,0 +170780929341,214,0 +170780929389,214,0 +170780929437,214,0 +170780929485,214,0 +170780929533,214,0 +170780929582,214,0 +170780929632,214,0 +170780929681,214,0 +170780929731,214,0 +170780929779,214,0 +170780929827,214,0 +170780929875,215,0 +170780929924,214,0 +170780929974,214,0 +170780930022,214,0 +170780930069,214,0 +170780930119,214,0 +170780930169,214,0 +170780930218,214,0 +170780930266,214,0 +170780930315,214,0 +170780930363,214,0 +170780930411,214,0 +170780930459,214,0 +170780930509,214,0 +170780930559,214,0 +170780930608,215,0 +170780930656,214,0 +170780930704,214,0 +170780930752,214,0 +170780930800,214,0 +170780930848,214,0 +170780930896,214,0 +170780930944,214,0 +170780930992,214,0 +170780931041,214,0 +170780931089,214,0 +170780931137,214,0 +170780931185,214,0 +170780931234,214,0 +170780931282,214,0 +170780931332,214,0 +170780931381,214,0 +170780931429,214,0 +170780931477,215,0 +170780931525,215,0 +170780931575,215,0 +170780931623,214,0 +170780931671,214,0 +170780931719,213,0 +170780931767,213,0 +170780931815,214,0 +170780931863,214,0 +170780931912,214,0 +170780931961,214,0 +170780932011,214,0 +170780932059,214,0 +170780932107,214,0 +170780932156,214,0 +170780932204,214,0 +170780932252,214,0 +170780932300,214,0 +170780932348,214,0 +170780932398,214,0 +170780932445,214,0 +170780932493,213,0 +170780932541,213,0 +170780932591,213,0 +170780932640,214,0 +170780932688,214,0 +170780932736,214,0 +170780932786,214,0 +170780932835,214,0 +170780932885,214,0 +170780932933,214,0 +170780932981,214,0 +170780933030,214,0 +170780933078,214,0 +170780933126,214,0 +170780933174,214,0 +170780933223,214,0 +170780933271,214,0 +170780933319,213,0 +170780933368,213,0 +170780933416,213,0 +170780933464,214,0 +170780933512,214,0 +170780933560,214,0 +170780933609,214,0 +170780933657,214,0 +170780933707,214,0 +170780933755,214,0 +170780933803,214,0 +170780933852,214,0 +170780933902,214,0 +170780933951,214,0 +170780933999,214,0 +170780934047,214,0 +170780934095,213,0 +170780934143,213,0 +170780934191,213,0 +170780934239,213,0 +170780934287,214,0 +170780934336,214,0 +170780934384,214,0 +170780934432,214,0 +170780934480,214,0 +170780934528,214,0 +170780934576,214,0 +170780934625,214,0 +170780934673,214,0 +170780934723,214,0 +170780934770,214,0 +170780934820,214,0 +170780934869,214,0 +170780934917,213,0 +170780934965,213,0 +170780935013,213,0 +170780935061,214,0 +170780935109,213,0 +170780935158,214,0 +170780935208,214,0 +170780935256,214,0 +170780935304,214,0 +170780935352,214,0 +170780935400,214,0 +170780935449,214,0 +170780935497,214,0 +170780935546,214,0 +170780935594,214,0 +170780935644,214,0 +170780935692,214,0 +170780935740,213,0 +170780935789,214,0 +170780935837,213,0 +170780935885,214,0 +170780935933,213,0 +170780935981,214,0 +170780936029,214,0 +170780936077,214,0 +170780936125,214,0 +170780936174,214,0 +170780936224,214,0 +170780936272,214,0 +170780936321,214,0 +170780936371,214,0 +170780936419,214,0 +170780936467,214,0 +170780936515,213,0 +170780936563,213,0 +170780936611,213,0 +170780936659,214,0 +170780936708,213,0 +170780936756,213,0 +170780936804,214,0 +170780936854,214,0 +170780936902,214,0 +170780936949,214,0 +170780936999,214,0 +170780937049,214,0 +170780937096,214,0 +170780937144,214,0 +170780937192,214,0 +170780937242,214,0 +170780937291,214,0 +170780937339,213,0 +170780937389,213,0 +170780937438,214,0 +170780937486,214,0 +170780937534,214,0 +170780937582,214,0 +170780937630,214,0 +170780937679,214,0 +170780937729,214,0 +170780937777,214,0 +170780937826,214,0 +170780937876,214,0 +170780937925,214,0 +170780937973,214,0 +170780938021,214,0 +170780938071,214,0 +170780938119,214,0 +170780938168,214,0 +170780938216,214,0 +170780938266,214,0 +170780938314,214,0 +170780938362,214,0 +170780938411,214,0 +170780938459,214,0 +170780938509,214,0 +170780938558,214,0 +170780938606,214,0 +170780938656,214,0 +170780938704,214,0 +170780938751,214,0 +170780938799,214,0 +170780938849,214,0 +170780938897,214,0 +170780938946,214,0 +170780938994,214,0 +170780939042,214,0 +170780939090,214,0 +170780939138,214,0 +170780939186,214,0 +170780939235,214,0 +170780939283,214,0 +170780939333,214,0 +170780939382,215,0 +170780939430,215,0 +170780939478,215,0 +170780939526,215,0 +170780939576,215,0 +170780939624,214,0 +170780939672,214,0 +170780939721,214,0 +170780939771,214,0 +170780939819,214,0 +170780939867,214,0 +170780939915,214,0 +170780939964,215,0 +170780940012,214,0 +170780940062,215,0 +170780940111,214,0 +170780940159,215,0 +170780940207,215,0 +170780940255,215,0 +170780940303,214,0 +170780940353,214,0 +170780940401,214,0 +170780940449,214,0 +170780940497,213,0 +170780940546,213,0 +170780940596,213,0 +170780940643,213,0 +170780940691,214,0 +170780940739,214,0 +170780940787,214,0 +170780940835,214,0 +170780940885,214,0 +170780940933,214,0 +170780940981,214,0 +170780941028,214,0 +170780941076,214,0 +170780941126,214,0 +170780941174,215,0 +170780941223,215,0 +170780941271,215,0 +170780941319,215,0 +170780941367,215,0 +170780941417,215,0 +170780941465,215,0 +170780941512,215,0 +170780941562,215,0 +170780941610,215,0 +170780941659,214,0 +170780941707,214,0 +170780941757,214,0 +170780941806,214,0 +170780941854,214,0 +170780941904,214,0 +170780941953,214,0 +170780942001,214,0 +170780942050,214,0 +170780942098,214,0 +170780942148,214,0 +170780942196,214,0 +170780942245,214,0 +170780942293,215,0 +170780942343,215,0 +170780942392,214,0 +170780942440,214,0 +170780942488,214,0 +170780942537,214,0 +170780942587,214,0 +170780942636,214,0 +170780942684,214,0 +170780942734,214,0 +170780942782,214,0 +170780942830,214,0 +170780942880,214,0 +170780942927,214,0 +170780942977,214,0 +170780943026,214,0 +170780943075,214,0 +170780943122,214,0 +170780943170,214,0 +170780943218,214,0 +170780943266,214,0 +170780943314,214,0 +170780943364,213,0 +170780943413,214,0 +170780943463,214,0 +170780943510,214,0 +170780943558,214,0 +170780943606,214,0 +170780943654,214,0 +170780943704,214,0 +170780943752,214,0 +170780943801,214,0 +170780943849,214,0 +170780943897,214,0 +170780943947,214,0 +170780943994,214,0 +170780944042,215,0 +170780944092,214,0 +170780944140,213,0 +170780944188,213,0 +170780944237,214,0 +170780944285,214,0 +170780944335,214,0 +170780944384,214,0 +170780944432,214,0 +170780944480,214,0 +170780944530,214,0 +170780944578,214,0 +170780944625,215,0 +170780944673,215,0 +170780944723,214,0 +170780944772,214,0 +170780944820,215,0 +170780944868,214,0 +170780944916,214,0 +170780944966,214,0 +170780945013,213,0 +170780945061,214,0 +170780945111,213,0 +170780945159,214,0 +170780945207,214,0 +170780945255,214,0 +170780945303,214,0 +170780945350,214,0 +170780945400,214,0 +170780945448,215,0 +170780945496,214,0 +170780945543,215,0 +170780945591,214,0 +170780945639,214,0 +170780945687,214,0 +170780945735,213,0 +170780945783,213,0 +170780945832,214,0 +170780945880,214,0 +170780945930,214,0 +170780945977,214,0 +170780946025,214,0 +170780946073,214,0 +170780946121,214,0 +170780946169,214,0 +170780946217,214,0 +170780946265,214,0 +170780946313,214,0 +170780946362,215,0 +170780946412,214,0 +170780946460,214,0 +170780946509,214,0 +170780946559,213,0 +170780946607,213,0 +170780946655,214,0 +170780946702,213,0 +170780946750,214,0 +170780946798,214,0 +170780946846,214,0 +170780946894,214,0 +170780946942,214,0 +170780946992,214,0 +170780947040,214,0 +170780947087,214,0 +170780947135,214,0 +170780947183,214,0 +170780947231,214,0 +170780947279,214,0 +170780947327,213,0 +170780947374,213,0 +170780947422,213,0 +170780947470,214,0 +170780947518,213,0 +170780947567,214,0 +170780947615,214,0 +170780947663,214,0 +170780947711,214,0 +170780947759,214,0 +170780947808,214,0 +170780947856,214,0 +170780947904,214,0 +170780947952,214,0 +170780948000,215,0 +170780948048,214,0 +170780948096,214,0 +170780948145,214,0 +170780948193,214,0 +170780948241,214,0 +170780948289,214,0 +170780948336,214,0 +170780948384,214,0 +170780948432,214,0 +170780948482,214,0 +170780948530,214,0 +170780948579,214,0 +170780948627,214,0 +170780948675,214,0 +170780948723,215,0 +170780948771,215,0 +170780948819,214,0 +170780948869,214,0 +170780948918,214,0 +170780948966,214,0 +170780949016,214,0 +170780949064,214,0 +170780949113,214,0 +170780949161,214,0 +170780949210,214,0 +170780949260,214,0 +170780949310,214,0 +170780949359,214,0 +170780949409,214,0 +170780949457,214,0 +170780949505,215,0 +170780949553,214,0 +170780949600,215,0 +170780949648,214,0 +170780949698,214,0 +170780949747,214,0 +170780949795,214,0 +170780949843,213,0 +170780949891,214,0 +170780949939,214,0 +170780949987,214,0 +170780950035,214,0 +170780950083,214,0 +170780950133,214,0 +170780950180,214,0 +170780950228,214,0 +170780950276,215,0 +170780950324,214,0 +170780950372,215,0 +170780950420,214,0 +170780950468,214,0 +170780950517,214,0 +170780950567,214,0 +170780950615,214,0 +170780950664,214,0 +170780950712,214,0 +170780950762,214,0 +170780950810,214,0 +170780950858,214,0 +170780950907,214,0 +170780950955,214,0 +170780951003,214,0 +170780951051,214,0 +170780951101,214,0 +170780951148,214,0 +170780951196,214,0 +170780951244,214,0 +170780951292,214,0 +170780951340,214,0 +170780951388,214,0 +170780951436,214,0 +170780951484,214,0 +170780951532,214,0 +170780951581,214,0 +170780951631,214,0 +170780951679,214,0 +170780951728,214,0 +170780951778,215,0 +170780951826,214,0 +170780951874,215,0 +170780951923,214,0 +170780951971,215,0 +170780952019,215,0 +170780952067,214,0 +170780952116,214,0 +170780952164,214,0 +170780952212,214,0 +170780952260,214,0 +170780952307,214,0 +170780952355,214,0 +170780952403,215,0 +170780952451,215,0 +170780952499,215,0 +170780952547,215,0 +170780952595,215,0 +170780952644,214,0 +170780952692,215,0 +170780952740,215,0 +170780952788,214,0 +170780952837,214,0 +170780952885,215,0 +170780952934,214,0 +170780952982,214,0 +170780953030,214,0 +170780953078,214,0 +170780953126,214,0 +170780953174,214,0 +170780953222,214,0 +170780953270,214,0 +170780953318,214,0 +170780953367,214,0 +170780953415,214,0 +170780953465,214,0 +170780953513,215,0 +170780953561,214,0 +170780953610,215,0 +170780953660,214,0 +170780953708,214,0 +170780953756,214,0 +170780953805,214,0 +170780953853,214,0 +170780953903,214,0 +170780953950,214,0 +170780954000,214,0 +170780954048,214,0 +170780954096,214,0 +170780954144,214,0 +170780954192,214,0 +170780954241,214,0 +170780954289,214,0 +170780954337,214,0 +170780954385,215,0 +170780954434,214,0 +170780954483,214,0 +170780954530,213,0 +170780954580,213,0 +170780954629,213,0 +170780954679,213,0 +170780954727,213,0 +170780954776,214,0 +170780954824,214,0 +170780954872,214,0 +170780954920,214,0 +170780954968,214,0 +170780955016,214,0 +170780955064,214,0 +170780955112,214,0 +170780955160,214,0 +170780955208,214,0 +170780955258,214,0 +170780955307,214,0 +170780955357,213,0 +170780955405,213,0 +170780955454,213,0 +170780955502,213,0 +170780955550,214,0 +170780955600,214,0 +170780955648,214,0 +170780955697,214,0 +170780955747,214,0 +170780955795,214,0 +170780955843,214,0 +170780955892,214,0 +170780955940,214,0 +170780955990,214,0 +170780956039,214,0 +170780956087,214,0 +170780956137,214,0 +170780956185,213,0 +170780956233,213,0 +170780956282,214,0 +170780956330,214,0 +170780956378,214,0 +170780956428,214,0 +170780956477,214,0 +170780956525,214,0 +170780956573,214,0 +170780956622,214,0 +170780956670,214,0 +170780956718,214,0 +170780956766,215,0 +170780956816,215,0 +170780956863,214,0 +170780956911,214,0 +170780956959,213,0 +170780957007,213,0 +170780957057,214,0 +170780957105,214,0 +170780957153,214,0 +170780957201,214,0 +170780957249,214,0 +170780957297,214,0 +170780957345,214,0 +170780957393,214,0 +170780957442,214,0 +170780957490,215,0 +170780957538,215,0 +170780957586,215,0 +170780957634,215,0 +170780957683,214,0 +170780957733,214,0 +170780957781,214,0 +170780957829,214,0 +170780957877,214,0 +170780957926,214,0 +170780957974,214,0 +170780958023,214,0 +170780958071,214,0 +170780958119,214,0 +170780958167,214,0 +170780958215,214,0 +170780958263,214,0 +170780958313,215,0 +170780958361,215,0 +170780958408,215,0 +170780958458,215,0 +170780958506,214,0 +170780958554,214,0 +170780958603,214,0 +170780958651,214,0 +170780958699,214,0 +170780958747,214,0 +170780958796,214,0 +170780958846,214,0 +170780958894,214,0 +170780958942,214,0 +170780958989,214,0 +170780959037,215,0 +170780959087,215,0 +170780959135,215,0 +170780959182,214,0 +170780959232,214,0 +170780959280,215,0 +170780959328,214,0 +170780959377,214,0 +170780959425,214,0 +170780959473,214,0 +170780959521,214,0 +170780959570,214,0 +170780959618,214,0 +170780959666,214,0 +170780959714,214,0 +170780959763,215,0 +170780959811,215,0 +170780959859,215,0 +170780959907,215,0 +170780959955,214,0 +170780960003,214,0 +170780960050,214,0 +170780960100,215,0 +170780960148,214,0 +170780960196,214,0 +170780960243,214,0 +170780960291,214,0 +170780960341,214,0 +170780960390,214,0 +170780960438,214,0 +170780960486,214,0 +170780960534,214,0 +170780960583,214,0 +170780960631,214,0 +170780960681,214,0 +170780960729,215,0 +170780960776,214,0 +170780960824,214,0 +170780960872,215,0 +170780960920,214,0 +170780960970,213,0 +170780961017,213,0 +170780961065,213,0 +170780961113,214,0 +170780961161,214,0 +170780961210,214,0 +170780961259,213,0 +170780961307,214,0 +170780961355,214,0 +170780961403,214,0 +170780961450,214,0 +170780961498,214,0 +170780961546,214,0 +170780961595,214,0 +170780961645,214,0 +170780961694,214,0 +170780961742,214,0 +170780961790,213,0 +170780961838,213,0 +170780961886,213,0 +170780961934,213,0 +170780961982,213,0 +170780962031,214,0 +170780962079,213,0 +170780962127,213,0 +170780962175,214,0 +170780962225,214,0 +170780962274,214,0 +170780962322,214,0 +170780962370,214,0 +170780962418,214,0 +170780962466,214,0 +170780962515,214,0 +170780962563,213,0 +170780962611,213,0 +170780962661,213,0 +170780962710,213,0 +170780962758,213,0 +170780962808,213,0 +170780962856,214,0 +170780962904,213,0 +170780962952,213,0 +170780962999,214,0 +170780963047,214,0 +170780963095,214,0 +170780963143,214,0 +170780963191,214,0 +170780963239,214,0 +170780963287,214,0 +170780963334,214,0 +170780963382,213,0 +170780963430,213,0 +170780963478,214,0 +170780963528,214,0 +170780963577,214,0 +170780963625,214,0 +170780963674,214,0 +170780963724,214,0 +170780963772,214,0 +170780963820,214,0 +170780963868,214,0 +170780963916,214,0 +170780963964,215,0 +170780964011,214,0 +170780964061,214,0 +170780964109,215,0 +170780964157,214,0 +170780964206,214,0 +170780964254,214,0 +170780964302,215,0 +170780964350,214,0 +170780964398,215,0 +170780964445,215,0 +170780964493,215,0 +170780964541,215,0 +170780964589,215,0 +170780964639,215,0 +170780964687,215,0 +170780964735,215,0 +170780964784,215,0 +170780964832,215,0 +170780964880,215,0 +170780964928,214,0 +170780964976,214,0 +170780965025,214,0 +170780965073,214,0 +170780965121,214,0 +170780965169,214,0 +170780965219,214,0 +170780965267,215,0 +170780965316,214,0 +170780965364,215,0 +170780965413,214,0 +170780965461,215,0 +170780965509,215,0 +170780965557,215,0 +170780965607,215,0 +170780965655,214,0 +170780965702,214,0 +170780965750,214,0 +170780965798,214,0 +170780965846,214,0 +170780965894,214,0 +170780965942,214,0 +170780965990,214,0 +170780966040,215,0 +170780966089,215,0 +170780966137,214,0 +170780966185,215,0 +170780966234,214,0 +170780966282,215,0 +170780966330,214,0 +170780966380,215,0 +170780966429,215,0 +170780966477,214,0 +170780966525,215,0 +170780966574,214,0 +170780966622,214,0 +170780966672,215,0 +170780966720,214,0 +170780966769,215,0 +170780966817,214,0 +170780966867,215,0 +170780966915,214,0 +170780966964,214,0 +170780967014,214,0 +170780967062,214,0 +170780967109,215,0 +170780967157,215,0 +170780967205,214,0 +170780967255,215,0 +170780967303,214,0 +170780967351,214,0 +170780967399,214,0 +170780967447,214,0 +170780967494,214,0 +170780967542,214,0 +170780967590,214,0 +170780967638,214,0 +170780967686,214,0 +170780967734,214,0 +170780967782,214,0 +170780967830,214,0 +170780967879,214,0 +170780967927,215,0 +170780967977,215,0 +170780968025,214,0 +170780968072,214,0 +170780968120,215,0 +170780968168,214,0 +170780968216,214,0 +170780968266,214,0 +170780968314,214,0 +170780968363,214,0 +170780968412,214,0 +170780968460,214,0 +170780968508,215,0 +170780968558,214,0 +170780968606,215,0 +170780968653,214,0 +170780968701,215,0 +170780968749,215,0 +170780968797,215,0 +170780968845,215,0 +170780968895,215,0 +170780968943,215,0 +170780968992,214,0 +170780969040,214,0 +170780969088,214,0 +170780969136,214,0 +170780969184,214,0 +170780969234,214,0 +170780969282,214,0 +170780969331,214,0 +170780969381,214,0 +170780969429,215,0 +170780969479,215,0 +170780969527,215,0 +170780969576,214,0 +170780969624,214,0 +170780969672,215,0 +170780969721,215,0 +170780969769,214,0 +170780969817,214,0 +170780969867,214,0 +170780969914,214,0 +170780969962,214,0 +170780970012,214,0 +170780970060,214,0 +170780970107,214,0 +170780970157,214,0 +170780970205,214,0 +170780970253,214,0 +170780970301,214,0 +170780970350,215,0 +170780970398,215,0 +170780970446,215,0 +170780970494,214,0 +170780970542,214,0 +170780970590,214,0 +170780970640,213,0 +170780970689,214,0 +170780970737,214,0 +170780970785,214,0 +170780970833,214,0 +170780970881,214,0 +170780970929,214,0 +170780970978,214,0 +170780971028,214,0 +170780971077,214,0 +170780971125,214,0 +170780971173,214,0 +170780971221,215,0 +170780971271,215,0 +170780971318,215,0 +170780971366,214,0 +170780971416,214,0 +170780971464,214,0 +170780971512,214,0 +170780971561,214,0 +170780971609,214,0 +170780971659,214,0 +170780971708,214,0 +170780971758,214,0 +170780971806,214,0 +170780971854,214,0 +170780971903,215,0 +170780971951,215,0 +170780972001,214,0 +170780972049,214,0 +170780972097,214,0 +170780972145,214,0 +170780972193,213,0 +170780972241,214,0 +170780972289,214,0 +170780972337,214,0 +170780972385,214,0 +170780972432,214,0 +170780972482,214,0 +170780972530,214,0 +170780972579,214,0 +170780972627,214,0 +170780972677,215,0 +170780972726,214,0 +170780972774,215,0 +170780972822,215,0 +170780972872,215,0 +170780972920,214,0 +170780972968,214,0 +170780973015,214,0 +170780973065,214,0 +170780973113,214,0 +170780973161,214,0 +170780973209,214,0 +170780973258,214,0 +170780973306,214,0 +170780973354,214,0 +170780973402,214,0 +170780973452,214,0 +170780973500,214,0 +170780973548,215,0 +170780973596,215,0 +170780973644,215,0 +170780973693,214,0 +170780973741,214,0 +170780973789,214,0 +170780973837,213,0 +170780973885,214,0 +170780973932,214,0 +170780973980,214,0 +170780974028,214,0 +170780974076,214,0 +170780974126,214,0 +170780974175,214,0 +170780974223,214,0 +170780974271,214,0 +170780974321,214,0 +170780974370,214,0 +170780974418,214,0 +170780974466,214,0 +170780974514,215,0 +170780974564,214,0 +170780974611,213,0 +170780974659,213,0 +170780974707,213,0 +170780974755,214,0 +170780974803,214,0 +170780974851,214,0 +170780974899,214,0 +170780974947,214,0 +170780974995,214,0 +170780975043,214,0 +170780975092,214,0 +170780975140,214,0 +170780975188,214,0 +170780975236,214,0 +170780975285,214,0 +170780975334,214,0 +170780975382,214,0 +170780975432,214,0 +170780975481,213,0 +170780975529,214,0 +170780975577,213,0 +170780975625,214,0 +170780975674,214,0 +170780975722,214,0 +170780975772,214,0 +170780975820,214,0 +170780975869,214,0 +170780975917,214,0 +170780975967,214,0 +170780976017,214,0 +170780976064,214,0 +170780976114,214,0 +170780976164,214,0 +170780976213,214,0 +170780976263,214,0 +170780976311,214,0 +170780976358,214,0 +170780976406,214,0 +170780976454,214,0 +170780976502,215,0 +170780976550,214,0 +170780976600,214,0 +170780976649,215,0 +170780976699,215,0 +170780976749,215,0 +170780976797,215,0 +170780976846,215,0 +170780976894,215,0 +170780976942,215,0 +170780976990,214,0 +170780977039,215,0 +170780977089,214,0 +170780977137,215,0 +170780977187,215,0 +170780977234,215,0 +170780977282,215,0 +170780977332,215,0 +170780977380,215,0 +170780977429,215,0 +170780977479,215,0 +170780977526,215,0 +170780977574,215,0 +170780977624,215,0 +170780977672,215,0 +170780977719,214,0 +170780977767,214,0 +170780977815,214,0 +170780977863,213,0 +170780977911,214,0 +170780977959,213,0 +170780978006,213,0 +170780978054,214,0 +170780978104,213,0 +170780978152,214,0 +170780978199,213,0 +170780978247,214,0 +170780978295,214,0 +170780978343,214,0 +170780978392,213,0 +170780978440,213,0 +170780978490,213,0 +170780978537,214,0 +170780978585,214,0 +170780978635,213,0 +170780978684,213,0 +170780978732,213,0 +170780978780,213,0 +170780978830,214,0 +170780978878,213,0 +170780978926,214,0 +170780978974,213,0 +170780979021,214,0 +170780979071,213,0 +170780979120,213,0 +170780979168,213,0 +170780979218,214,0 +170780979266,214,0 +170780979314,214,0 +170780979363,213,0 +170780979413,213,0 +170780979462,214,0 +170780979510,214,0 +170780979560,213,0 +170780979609,213,0 +170780979659,214,0 +170780979708,214,0 +170780979756,214,0 +170780979806,214,0 +170780979854,214,0 +170780979903,213,0 +170780979951,214,0 +170780979999,214,0 +170780980048,214,0 +170780980097,214,0 +170780980146,214,0 +170780980194,214,0 +170780980242,213,0 +170780980290,213,0 +170780980338,214,0 +170780980386,213,0 +170780980434,214,0 +170780980483,214,0 +170780980531,214,0 +170780980579,214,0 +170780980627,214,0 +170780980677,214,0 +170780980726,214,0 +170780980776,214,0 +170780980825,214,0 +170780980875,214,0 +170780980923,214,0 +170780980972,214,0 +170780981022,213,0 +170780981069,213,0 +170780981119,214,0 +170780981167,214,0 +170780981216,214,0 +170780981266,214,0 +170780981315,214,0 +170780981363,214,0 +170780981411,214,0 +170780981459,214,0 +170780981509,214,0 +170780981558,214,0 +170780981607,214,0 +170780981655,214,0 +170780981705,214,0 +170780981753,214,0 +170780981801,213,0 +170780981849,213,0 +170780981897,213,0 +170780981944,214,0 +170780981994,213,0 +170780982042,214,0 +170780982090,214,0 +170780982138,214,0 +170780982186,214,0 +170780982234,214,0 +170780982283,214,0 +170780982333,214,0 +170780982381,214,0 +170780982430,214,0 +170780982478,214,0 +170780982526,214,0 +170780982574,214,0 +170780982622,213,0 +170780982672,213,0 +170780982720,214,0 +170780982767,214,0 +170780982817,214,0 +170780982867,214,0 +170780982914,214,0 +170780982962,214,0 +170780983012,214,0 +170780983060,214,0 +170780983108,214,0 +170780983156,214,0 +170780983205,214,0 +170780983253,214,0 +170780983301,214,0 +170780983351,214,0 +170780983398,214,0 +170780983446,214,0 +170780983494,213,0 +170780983544,214,0 +170780983593,214,0 +170780983643,214,0 +170780983692,214,0 +170780983742,214,0 +170780983791,214,0 +170780983839,214,0 +170780983887,214,0 +170780983935,214,0 +170780983985,214,0 +170780984032,214,0 +170780984080,215,0 +170780984128,214,0 +170780984176,214,0 +170780984224,214,0 +170780984274,214,0 +170780984322,214,0 +170780984370,214,0 +170780984419,214,0 +170780984467,214,0 +170780984515,214,0 +170780984563,214,0 +170780984611,214,0 +170780984659,214,0 +170780984707,214,0 +170780984755,214,0 +170780984802,214,0 +170780984852,214,0 +170780984901,214,0 +170780984949,214,0 +170780984999,214,0 +170780985048,214,0 +170780985096,214,0 +170780985144,213,0 +170780985192,214,0 +170780985242,214,0 +170780985290,214,0 +170780985339,214,0 +170780985389,214,0 +170780985437,214,0 +170780985484,214,0 +170780985532,214,0 +170780985580,214,0 +170780985630,214,0 +170780985678,214,0 +170780985727,214,0 +170780985775,214,0 +170780985825,214,0 +170780985873,214,0 +170780985920,214,0 +170780985968,214,0 +170780986016,214,0 +170780986064,214,0 +170780986112,214,0 +170780986160,214,0 +170780986208,214,0 +170780986256,214,0 +170780986304,214,0 +170780986351,214,0 +170780986399,214,0 +170780986447,214,0 +170780986495,214,0 +170780986543,214,0 +170780986591,214,0 +170780986639,214,0 +170780986687,214,0 +170780986735,214,0 +170780986783,214,0 +170780986831,214,0 +170780986880,214,0 +170780986928,214,0 +170780986976,214,0 +170780987024,214,0 +170780987073,214,0 +170780987123,214,0 +170780987172,214,0 +170780987222,214,0 +170780987272,214,0 +170780987321,214,0 +170780987369,214,0 +170780987417,213,0 +170780987465,214,0 +170780987514,214,0 +170780987562,214,0 +170780987610,214,0 +170780987658,214,0 +170780987706,214,0 +170780987754,214,0 +170780987803,214,0 +170780987851,214,0 +170780987899,214,0 +170780987947,214,0 +170780987995,214,0 +170780988043,215,0 +170780988091,214,0 +170780988141,214,0 +170780988189,214,0 +170780988238,214,0 +170780988286,214,0 +170780988334,214,0 +170780988383,214,0 +170780988433,214,0 +170780988481,214,0 +170780988530,214,0 +170780988578,214,0 +170780988628,214,0 +170780988676,215,0 +170780988724,215,0 +170780988772,215,0 +170780988819,215,0 +170780988867,215,0 +170780988915,215,0 +170780988965,214,0 +170780989013,214,0 +170780989061,214,0 +170780989108,214,0 +170780989156,214,0 +170780989206,215,0 +170780989255,215,0 +170780989303,215,0 +170780989353,215,0 +170780989401,215,0 +170780989449,215,0 +170780989498,215,0 +170780989548,215,0 +170780989597,215,0 +170780989645,215,0 +170780989693,215,0 +170780989743,215,0 +170780989791,214,0 +170780989838,214,0 +170780989886,214,0 +170780989934,214,0 +170780989984,215,0 +170780990031,215,0 +170780990079,215,0 +170780990127,215,0 +170780990175,215,0 +170780990223,215,0 +170780990273,215,0 +170780990322,215,0 +170780990372,215,0 +170780990421,215,0 +170780990469,214,0 +170780990519,215,0 +170780990567,214,0 +170780990615,214,0 +170780990664,214,0 +170780990712,214,0 +170780990760,214,0 +170780990808,214,0 +170780990855,214,0 +170780990903,214,0 +170780990951,214,0 +170780990999,214,0 +170780991047,214,0 +170780991095,214,0 +170780991144,214,0 +170780991192,215,0 +170780991240,215,0 +170780991288,214,0 +170780991337,214,0 +170780991387,214,0 +170780991436,213,0 +170780991486,213,0 +170780991533,214,0 +170780991581,214,0 +170780991631,214,0 +170780991679,214,0 +170780991728,214,0 +170780991776,214,0 +170780991825,214,0 +170780991873,214,0 +170780991921,214,0 +170780991969,214,0 +170780992017,214,0 +170780992065,214,0 +170780992114,214,0 +170780992162,214,0 +170780992211,214,0 +170780992259,213,0 +170780992307,213,0 +170780992357,214,0 +170780992404,214,0 +170780992452,213,0 +170780992500,214,0 +170780992550,214,0 +170780992598,214,0 +170780992646,214,0 +170780992693,214,0 +170780992743,214,0 +170780992793,214,0 +170780992842,214,0 +170780992890,214,0 +170780992938,215,0 +170780992986,214,0 +170780993035,214,0 +170780993085,213,0 +170780993133,213,0 +170780993182,213,0 +170780993230,214,0 +170780993280,214,0 +170780993329,214,0 +170780993377,214,0 +170780993425,214,0 +170780993473,214,0 +170780993521,214,0 +170780993569,214,0 +170780993617,214,0 +170780993664,214,0 +170780993714,214,0 +170780993762,214,0 +170780993811,214,0 +170780993859,213,0 +170780993907,214,0 +170780993957,214,0 +170780994006,214,0 +170780994054,214,0 +170780994102,214,0 +170780994151,214,0 +170780994199,214,0 +170780994247,214,0 +170780994296,214,0 +170780994344,214,0 +170780994392,214,0 +170780994440,214,0 +170780994488,214,0 +170780994538,214,0 +170780994587,214,0 +170780994635,213,0 +170780994683,214,0 +170780994731,214,0 +170780994779,214,0 +170780994828,214,0 +170780994876,214,0 +170780994924,214,0 +170780994972,214,0 +170780995020,214,0 +170780995068,214,0 +170780995115,214,0 +170780995165,214,0 +170780995213,214,0 +170780995261,214,0 +170780995309,214,0 +170780995358,215,0 +170780995407,214,0 +170780995455,214,0 +170780995503,214,0 +170780995551,214,0 +170780995601,214,0 +170780995648,214,0 +170780995696,214,0 +170780995744,214,0 +170780995792,214,0 +170780995840,214,0 +170780995888,215,0 +170780995936,214,0 +170780995984,214,0 +170780996033,214,0 +170780996081,215,0 +170780996129,214,0 +170780996177,215,0 +170780996225,214,0 +170780996273,214,0 +170780996320,214,0 +170780996368,214,0 +170780996416,214,0 +170780996464,214,0 +170780996512,214,0 +170780996560,214,0 +170780996608,214,0 +170780996656,214,0 +170780996704,214,0 +170780996751,214,0 +170780996799,214,0 +170780996847,215,0 +170780996895,215,0 +170780996943,214,0 +170780996990,215,0 +170780997038,214,0 +170780997086,214,0 +170780997134,214,0 +170780997182,214,0 +170780997230,214,0 +170780997278,214,0 +170780997325,214,0 +170780997373,214,0 +170780997421,214,0 +170780997469,214,0 +170780997517,214,0 +170780997565,215,0 +170780997613,214,0 +170780997661,215,0 +170780997708,215,0 +170780997756,214,0 +170780997806,214,0 +170780997853,214,0 +170780997901,214,0 +170780997949,214,0 +170780997997,214,0 +170780998046,214,0 +170780998096,214,0 +170780998144,214,0 +170780998192,214,0 +170780998240,214,0 +170780998288,215,0 +170780998336,215,0 +170780998384,215,0 +170780998431,215,0 +170780998479,215,0 +170780998529,214,0 +170780998577,214,0 +170780998624,214,0 +170780998674,214,0 +170780998723,214,0 +170780998771,214,0 +170780998821,214,0 +170780998870,214,0 +170780998918,214,0 +170780998966,214,0 +170780999016,214,0 +170780999065,214,0 +170780999115,215,0 +170780999162,215,0 +170780999212,214,0 +170780999261,214,0 +170780999311,215,0 +170780999359,214,0 +170780999408,214,0 +170780999456,214,0 +170780999504,214,0 +170780999554,214,0 +170780999601,214,0 +170780999649,214,0 +170780999697,214,0 +170780999747,214,0 +170780999795,214,0 +170780999843,214,0 +170780999891,214,0 +170780999939,214,0 +170780999988,214,0 +170781000036,214,0 +170781000084,215,0 +170781000132,215,0 +170781000180,215,0 +170781000229,214,0 +170781000277,214,0 +170781000325,213,0 +170781000373,214,0 +170781000421,214,0 +170781000468,214,0 +170781000516,214,0 +170781000564,214,0 +170781000614,214,0 +170781000662,214,0 +170781000710,214,0 +170781000758,214,0 +170781000805,215,0 +170781000853,215,0 +170781000903,215,0 +170781000951,214,0 +170781000999,214,0 +170781001047,214,0 +170781001096,214,0 +170781001144,214,0 +170781001193,214,0 +170781001241,214,0 +170781001289,214,0 +170781001337,214,0 +170781001385,214,0 +170781001432,214,0 +170781001480,215,0 +170781001528,214,0 +170781001576,215,0 +170781001624,215,0 +170781001673,214,0 +170781001721,215,0 +170781001771,214,0 +170781001818,214,0 +170781001868,214,0 +170781001917,214,0 +170781001965,214,0 +170781002015,214,0 +170781002064,214,0 +170781002112,214,0 +170781002160,214,0 +170781002208,214,0 +170781002256,214,0 +170781002304,214,0 +170781002352,214,0 +170781002400,214,0 +170781002449,214,0 +170781002497,215,0 +170781002547,215,0 +170781002595,215,0 +170781002642,214,0 +170781002692,214,0 +170781002742,214,0 +170781002789,214,0 +170781002839,214,0 +170781002887,214,0 +170781002936,214,0 +170781002984,214,0 +170781003032,215,0 +170781003082,215,0 +170781003130,215,0 +170781003177,215,0 +170781003225,215,0 +170781003275,215,0 +170781003323,215,0 +170781003372,215,0 +170781003422,215,0 +170781003469,214,0 +170781003519,214,0 +170781003567,214,0 +170781003617,214,0 +170781003666,214,0 +170781003714,214,0 +170781003762,214,0 +170781003810,214,0 +170781003858,214,0 +170781003905,214,0 +170781003953,215,0 +170781004001,215,0 +170781004049,215,0 +170781004097,214,0 +170781004146,215,0 +170781004194,214,0 +170781004242,214,0 +170781004290,213,0 +170781004337,214,0 +170781004385,214,0 +170781004433,214,0 +170781004481,214,0 +170781004529,214,0 +170781004577,214,0 +170781004625,214,0 +170781004672,214,0 +170781004720,214,0 +170781004768,214,0 +170781004816,214,0 +170781004866,214,0 +170781004914,214,0 +170781004963,214,0 +170781005013,214,0 +170781005062,214,0 +170781005112,213,0 +170781005161,213,0 +170781005209,213,0 +170781005258,214,0 +170781005306,214,0 +170781005354,214,0 +170781005402,214,0 +170781005450,214,0 +170781005500,214,0 +170781005548,214,0 +170781005597,214,0 +170781005645,214,0 +170781005693,214,0 +170781005741,214,0 +170781005789,214,0 +170781005839,214,0 +170781005886,213,0 +170781005934,214,0 +170781005984,214,0 +170781006033,214,0 +170781006083,214,0 +170781006131,214,0 +170781006179,214,0 +170781006227,214,0 +170781006274,214,0 +170781006324,214,0 +170781006372,215,0 +170781006420,214,0 +170781006469,215,0 +170781006519,214,0 +170781006567,215,0 +170781006616,214,0 +170781006664,214,0 +170781006712,214,0 +170781006760,214,0 +170781006808,214,0 +170781006856,214,0 +170781006904,214,0 +170781006952,214,0 +170781006999,214,0 +170781007047,214,0 +170781007095,214,0 +170781007145,214,0 +170781007194,215,0 +170781007242,215,0 +170781007290,215,0 +170781007338,214,0 +170781007386,215,0 +170781007434,214,0 +170781007482,214,0 +170781007530,214,0 +170781007577,214,0 +170781007625,214,0 +170781007675,214,0 +170781007723,214,0 +170781007771,214,0 +170781007819,214,0 +170781007866,214,0 +170781007916,215,0 +170781007964,214,0 +170781008012,215,0 +170781008059,215,0 +170781008107,215,0 +170781008157,214,0 +170781008205,214,0 +170781008252,214,0 +170781008300,214,0 +170781008348,214,0 +170781008396,214,0 +170781008444,214,0 +170781008492,214,0 +170781008540,214,0 +170781008588,214,0 +170781008636,214,0 +170781008684,215,0 +170781008732,214,0 +170781008782,215,0 +170781008830,215,0 +170781008877,215,0 +170781008925,215,0 +170781008975,214,0 +170781009023,214,0 +170781009072,214,0 +170781009122,214,0 +170781009171,214,0 +170781009221,214,0 +170781009270,214,0 +170781009318,214,0 +170781009368,214,0 +170781009418,214,0 +170781009465,214,0 +170781009513,214,0 +170781009561,215,0 +170781009609,214,0 +170781009657,215,0 +170781009705,215,0 +170781009755,214,0 +170781009803,215,0 +170781009850,214,0 +170781009898,213,0 +170781009946,213,0 +170781009996,214,0 +170781010044,214,0 +170781010092,214,0 +170781010139,214,0 +170781010187,214,0 +170781010235,214,0 +170781010283,214,0 +170781010331,214,0 +170781010379,214,0 +170781010428,214,0 +170781010476,214,0 +170781010526,214,0 +170781010575,214,0 +170781010625,215,0 +170781010673,214,0 +170781010722,213,0 +170781010770,213,0 +170781010820,213,0 +170781010868,213,0 +170781010917,213,0 +170781010965,214,0 +170781011015,213,0 +170781011064,214,0 +170781011114,214,0 +170781011163,214,0 +170781011211,214,0 +170781011260,214,0 +170781011308,214,0 +170781011356,214,0 +170781011406,214,0 +170781011454,214,0 +170781011503,213,0 +170781011551,213,0 +170781011599,213,0 +170781011647,213,0 +170781011696,213,0 +170781011744,213,0 +170781011792,214,0 +170781011842,214,0 +170781011889,214,0 +170781011937,214,0 +170781011985,214,0 +170781012033,214,0 +170781012081,214,0 +170781012129,214,0 +170781012179,214,0 +170781012227,214,0 +170781012275,214,0 +170781012322,214,0 +170781012372,213,0 +170781012421,214,0 +170781012469,213,0 +170781012517,214,0 +170781012565,214,0 +170781012615,214,0 +170781012663,214,0 +170781012711,214,0 +170781012759,214,0 +170781012807,214,0 +170781012854,214,0 +170781012904,214,0 +170781012952,214,0 +170781013000,214,0 +170781013048,214,0 +170781013097,214,0 +170781013147,214,0 +170781013195,214,0 +170781013244,214,0 +170781013292,214,0 +170781013340,214,0 +170781013388,214,0 +170781013436,214,0 +170781013485,214,0 +170781013533,215,0 +170781013581,214,0 +170781013631,214,0 +170781013678,215,0 +170781013728,215,0 +170781013777,215,0 +170781013825,214,0 +170781013873,214,0 +170781013921,214,0 +170781013969,214,0 +170781014017,214,0 +170781014067,215,0 +170781014114,214,0 +170781014164,215,0 +170781014214,215,0 +170781014261,215,0 +170781014309,215,0 +170781014357,215,0 +170781014405,215,0 +170781014453,215,0 +170781014502,215,0 +170781014552,215,0 +170781014600,215,0 +170781014649,214,0 +170781014699,215,0 +170781014747,215,0 +170781014795,215,0 +170781014844,214,0 +170781014892,215,0 +170781014940,215,0 +170781014988,215,0 +170781015036,215,0 +170781015085,215,0 +170781015133,215,0 +170781015181,215,0 +170781015229,215,0 +170781015279,215,0 +170781015328,215,0 +170781015378,215,0 +170781015426,215,0 +170781015473,215,0 +170781015521,215,0 +170781015569,214,0 +170781015617,214,0 +170781015665,214,0 +170781015713,214,0 +170781015763,214,0 +170781015811,214,0 +170781015859,214,0 +170781015907,214,0 +170781015956,215,0 +170781016004,215,0 +170781016052,215,0 +170781016101,215,0 +170781016151,214,0 +170781016200,214,0 +170781016248,214,0 +170781016296,214,0 +170781016345,214,0 +170781016393,214,0 +170781016441,214,0 +170781016489,214,0 +170781016537,214,0 +170781016586,214,0 +170781016634,214,0 +170781016682,214,0 +170781016729,214,0 +170781016777,215,0 +170781016825,214,0 +170781016873,214,0 +170781016921,215,0 +170781016969,215,0 +170781017017,214,0 +170781017065,214,0 +170781017113,214,0 +170781017160,214,0 +170781017210,214,0 +170781017258,214,0 +170781017307,214,0 +170781017355,214,0 +170781017403,214,0 +170781017451,215,0 +170781017499,215,0 +170781017546,215,0 +170781017594,214,0 +170781017642,214,0 +170781017692,215,0 +170781017739,214,0 +170781017787,214,0 +170781017835,214,0 +170781017883,214,0 +170781017931,214,0 +170781017978,214,0 +170781018026,214,0 +170781018074,214,0 +170781018122,214,0 +170781018170,214,0 +170781018217,214,0 +170781018265,214,0 +170781018313,215,0 +170781018361,215,0 +170781018411,214,0 +170781018460,214,0 +170781018508,214,0 +170781018556,215,0 +170781018604,214,0 +170781018653,214,0 +170781018701,214,0 +170781018749,214,0 +170781018799,214,0 +170781018848,214,0 +170781018896,214,0 +170781018944,214,0 +170781018992,214,0 +170781019040,214,0 +170781019088,214,0 +170781019137,214,0 +170781019185,214,0 +170781019233,214,0 +170781019282,215,0 +170781019330,215,0 +170781019380,215,0 +170781019428,215,0 +170781019477,214,0 +170781019525,213,0 +170781019573,213,0 +170781019621,214,0 +170781019670,214,0 +170781019718,213,0 +170781019766,214,0 +170781019816,214,0 +170781019865,214,0 +170781019915,214,0 +170781019962,214,0 +170781020010,214,0 +170781020058,214,0 +170781020106,215,0 +170781020154,214,0 +170781020201,215,0 +170781020249,214,0 +170781020297,214,0 +170781020345,213,0 +170781020393,214,0 +170781020441,214,0 +170781020488,214,0 +170781020536,214,0 +170781020584,214,0 +170781020634,214,0 +170781020682,214,0 +170781020730,214,0 +170781020779,214,0 +170781020829,214,0 +170781020876,214,0 +170781020924,214,0 +170781020974,214,0 +170781021022,214,0 +170781021069,215,0 +170781021119,214,0 +170781021167,213,0 +170781021214,214,0 +170781021262,214,0 +170781021310,213,0 +170781021360,214,0 +170781021408,214,0 +170781021456,214,0 +170781021505,214,0 +170781021553,214,0 +170781021601,214,0 +170781021650,214,0 +170781021700,214,0 +170781021748,214,0 +170781021796,215,0 +170781021843,214,0 +170781021893,214,0 +170781021941,213,0 +170781021990,214,0 +170781022038,214,0 +170781022088,214,0 +170781022135,214,0 +170781022183,214,0 +170781022233,214,0 +170781022281,214,0 +170781022330,214,0 +170781022378,214,0 +170781022426,214,0 +170781022474,214,0 +170781022524,214,0 +170781022572,214,0 +170781022620,214,0 +170781022667,214,0 +170781022715,213,0 +170781022763,213,0 +170781022813,213,0 +170781022862,213,0 +170781022910,214,0 +170781022958,214,0 +170781023006,213,0 +170781023054,214,0 +170781023103,214,0 +170781023151,214,0 +170781023201,214,0 +170781023249,214,0 +170781023297,214,0 +170781023346,214,0 +170781023396,214,0 +170781023444,214,0 +170781023491,214,0 +170781023539,213,0 +170781023589,213,0 +170781023637,213,0 +170781023685,214,0 +170781023733,214,0 +170781023781,214,0 +170781023829,214,0 +170781023877,214,0 +170781023925,214,0 +170781023973,214,0 +170781024020,214,0 +170781024068,214,0 +170781024116,214,0 +170781024164,214,0 +170781024212,214,0 +170781024260,214,0 +170781024308,214,0 +170781024356,213,0 +170781024405,213,0 +170781024453,213,0 +170781024501,213,0 +170781024549,214,0 +170781024598,213,0 +170781024648,214,0 +170781024696,214,0 +170781024744,214,0 +170781024792,214,0 +170781024840,214,0 +170781024888,214,0 +170781024936,214,0 +170781024985,214,0 +170781025033,214,0 +170781025081,214,0 +170781025129,214,0 +170781025177,214,0 +170781025225,214,0 +170781025273,214,0 +170781025321,214,0 +170781025369,214,0 +170781025417,214,0 +170781025465,214,0 +170781025514,214,0 +170781025564,214,0 +170781025613,214,0 +170781025661,214,0 +170781025711,215,0 +170781025760,215,0 +170781025808,214,0 +170781025858,214,0 +170781025906,214,0 +170781025954,214,0 +170781026002,214,0 +170781026049,214,0 +170781026097,215,0 +170781026145,215,0 +170781026193,215,0 +170781026241,215,0 +170781026289,214,0 +170781026337,215,0 +170781026385,215,0 +170781026433,215,0 +170781026480,215,0 +170781026528,215,0 +170781026576,215,0 +170781026624,215,0 +170781026672,215,0 +170781026720,214,0 +170781026770,215,0 +170781026818,215,0 +170781026867,215,0 +170781026915,215,0 +170781026963,215,0 +170781027013,215,0 +170781027061,215,0 +170781027108,215,0 +170781027156,215,0 +170781027204,215,0 +170781027254,215,0 +170781027302,215,0 +170781027350,215,0 +170781027399,215,0 +170781027447,215,0 +170781027495,215,0 +170781027545,215,0 +170781027594,215,0 +170781027642,215,0 +170781027692,215,0 +170781027740,215,0 +170781027789,215,0 +170781027839,215,0 +170781027888,215,0 +170781027936,215,0 +170781027984,215,0 +170781028032,215,0 +170781028080,215,0 +170781028127,214,0 +170781028175,215,0 +170781028223,215,0 +170781028271,214,0 +170781028319,214,0 +170781028367,214,0 +170781028414,214,0 +170781028462,214,0 +170781028510,214,0 +170781028558,214,0 +170781028605,214,0 +170781028653,214,0 +170781028701,214,0 +170781028749,215,0 +170781028796,215,0 +170781028844,215,0 +170781028892,215,0 +170781028940,215,0 +170781028988,215,0 +170781029036,215,0 +170781029085,214,0 +170781029133,214,0 +170781029181,214,0 +170781029229,214,0 +170781029277,214,0 +170781029324,214,0 +170781029372,214,0 +170781029420,214,0 +170781029468,215,0 +170781029516,214,0 +170781029563,214,0 +170781029611,215,0 +170781029659,214,0 +170781029707,215,0 +170781029755,215,0 +170781029802,215,0 +170781029850,214,0 +170781029898,214,0 +170781029946,214,0 +170781029994,214,0 +170781030041,214,0 +170781030089,214,0 +170781030137,214,0 +170781030185,214,0 +170781030233,214,0 +170781030281,214,0 +170781030328,214,0 +170781030376,214,0 +170781030424,214,0 +170781030473,214,0 +170781030523,214,0 +170781030570,215,0 +170781030618,214,0 +170781030666,214,0 +170781030714,214,0 +170781030763,213,0 +170781030811,214,0 +170781030859,214,0 +170781030907,214,0 +170781030954,214,0 +170781031002,214,0 +170781031050,214,0 +170781031098,214,0 +170781031146,214,0 +170781031194,214,0 +170781031241,214,0 +170781031291,215,0 +170781031339,215,0 +170781031387,214,0 +170781031434,214,0 +170781031484,214,0 +170781031532,214,0 +170781031580,213,0 +170781031628,214,0 +170781031676,213,0 +170781031723,214,0 +170781031773,214,0 +170781031821,214,0 +170781031870,214,0 +170781031918,214,0 +170781031966,214,0 +170781032014,214,0 +170781032062,214,0 +170781032110,214,0 +170781032159,214,0 +170781032207,214,0 +170781032255,214,0 +170781032303,214,0 +170781032350,214,0 +170781032398,214,0 +170781032446,214,0 +170781032494,214,0 +170781032543,214,0 +170781032591,214,0 +170781032639,214,0 +170781032687,214,0 +170781032735,214,0 +170781032783,214,0 +170781032830,214,0 +170781032878,214,0 +170781032926,214,0 +170781032974,215,0 +170781033021,215,0 +170781033069,215,0 +170781033117,215,0 +170781033165,213,0 +170781033212,214,0 +170781033260,214,0 +170781033308,214,0 +170781033356,214,0 +170781033405,214,0 +170781033453,214,0 +170781033501,214,0 +170781033549,214,0 +170781033597,214,0 +170781033644,214,0 +170781033692,214,0 +170781033740,214,0 +170781033788,215,0 +170781033838,215,0 +170781033887,214,0 +170781033935,214,0 +170781033983,214,0 +170781034031,214,0 +170781034079,214,0 +170781034129,214,0 +170781034176,214,0 +170781034224,213,0 +170781034274,214,0 +170781034321,214,0 +170781034371,214,0 +170781034419,214,0 +170781034468,214,0 +170781034516,214,0 +170781034566,214,0 +170781034615,214,0 +170781034663,215,0 +170781034711,214,0 +170781034761,213,0 +170781034808,213,0 +170781034856,214,0 +170781034904,214,0 +170781034953,214,0 +170781035001,214,0 +170781035051,214,0 +170781035099,214,0 +170781035147,214,0 +170781035196,214,0 +170781035244,214,0 +170781035292,214,0 +170781035340,214,0 +170781035387,215,0 +170781035437,214,0 +170781035485,214,0 +170781035534,214,0 +170781035582,214,0 +170781035632,214,0 +170781035680,214,0 +170781035728,214,0 +170781035776,214,0 +170781035824,214,0 +170781035872,214,0 +170781035920,214,0 +170781035968,215,0 +170781036016,214,0 +170781036065,214,0 +170781036114,215,0 +170781036162,214,0 +170781036212,214,0 +170781036260,214,0 +170781036307,214,0 +170781036355,214,0 +170781036403,214,0 +170781036451,214,0 +170781036499,214,0 +170781036547,214,0 +170781036594,214,0 +170781036642,214,0 +170781036690,214,0 +170781036738,214,0 +170781036786,214,0 +170781036835,214,0 +170781036883,215,0 +170781036931,214,0 +170781036979,215,0 +170781037027,215,0 +170781037075,214,0 +170781037124,214,0 +170781037174,214,0 +170781037222,214,0 +170781037271,214,0 +170781037319,214,0 +170781037369,214,0 +170781037418,214,0 +170781037466,214,0 +170781037514,214,0 +170781037562,215,0 +170781037610,215,0 +170781037660,215,0 +170781037709,215,0 +170781037759,215,0 +170781037807,215,0 +170781037855,215,0 +170781037903,215,0 +170781037952,214,0 +170781038000,214,0 +170781038048,215,0 +170781038096,215,0 +170781038144,215,0 +170781038192,215,0 +170781038240,214,0 +170781038287,215,0 +170781038335,215,0 +170781038383,215,0 +170781038431,215,0 +170781038479,215,0 +170781038529,215,0 +170781038577,215,0 +170781038625,215,0 +170781038674,214,0 +170781038722,215,0 +170781038770,214,0 +170781038818,214,0 +170781038866,214,0 +170781038915,214,0 +170781038965,215,0 +170781039013,215,0 +170781039062,215,0 +170781039110,215,0 +170781039158,215,0 +170781039206,215,0 +170781039254,215,0 +170781039302,215,0 +170781039350,215,0 +170781039399,215,0 +170781039447,215,0 +170781039497,215,0 +170781039546,214,0 +170781039594,214,0 +170781039642,214,0 +170781039690,214,0 +170781039739,214,0 +170781039789,214,0 +170781039837,214,0 +170781039886,214,0 +170781039936,215,0 +170781039984,215,0 +170781040033,215,0 +170781040083,215,0 +170781040131,215,0 +170781040179,215,0 +170781040227,214,0 +170781040275,215,0 +170781040323,214,0 +170781040372,214,0 +170781040420,214,0 +170781040468,214,0 +170781040516,214,0 +170781040565,214,0 +170781040613,214,0 +170781040661,214,0 +170781040709,214,0 +170781040759,214,0 +170781040806,215,0 +170781040854,215,0 +170781040902,214,0 +170781040950,214,0 +170781040998,215,0 +170781041046,214,0 +170781041094,214,0 +170781041141,214,0 +170781041189,213,0 +170781041237,213,0 +170781041285,214,0 +170781041333,214,0 +170781041382,214,0 +170781041430,214,0 +170781041480,214,0 +170781041527,214,0 +170781041577,214,0 +170781041626,214,0 +170781041676,214,0 +170781041725,214,0 +170781041773,214,0 +170781041823,214,0 +170781041871,214,0 +170781041918,214,0 +170781041968,214,0 +170781042016,214,0 +170781042064,213,0 +170781042112,214,0 +170781042160,214,0 +170781042208,214,0 +170781042256,214,0 +170781042305,214,0 +170781042353,214,0 +170781042403,214,0 +170781042451,214,0 +170781042500,214,0 +170781042548,214,0 +170781042596,214,0 +170781042644,214,0 +170781042692,214,0 +170781042740,214,0 +170781042789,213,0 +170781042837,213,0 +170781042885,213,0 +170781042934,214,0 +170781042984,213,0 +170781043032,214,0 +170781043080,213,0 +170781043129,214,0 +170781043177,214,0 +170781043227,214,0 +170781043276,214,0 +170781043326,214,0 +170781043373,214,0 +170781043421,214,0 +170781043469,215,0 +170781043519,214,0 +170781043567,214,0 +170781043615,214,0 +170781043663,213,0 +170781043710,214,0 +170781043758,214,0 +170781043806,214,0 +170781043854,214,0 +170781043904,214,0 +170781043952,214,0 +170781044001,214,0 +170781044049,214,0 +170781044097,214,0 +170781044146,214,0 +170781044194,214,0 +170781044242,215,0 +170781044290,215,0 +170781044340,214,0 +170781044389,213,0 +170781044439,214,0 +170781044488,214,0 +170781044538,214,0 +170781044586,214,0 +170781044635,214,0 +170781044685,214,0 +170781044734,214,0 +170781044784,214,0 +170781044832,214,0 +170781044880,214,0 +170781044929,214,0 +170781044977,215,0 +170781045026,215,0 +170781045074,214,0 +170781045122,214,0 +170781045170,214,0 +170781045220,213,0 +170781045268,214,0 +170781045316,214,0 +170781045363,214,0 +170781045413,214,0 +170781045462,214,0 +170781045510,214,0 +170781045558,215,0 +170781045608,214,0 +170781045656,214,0 +170781045704,214,0 +170781045753,214,0 +170781045803,215,0 +170781045851,215,0 +170781045899,214,0 +170781045947,214,0 +170781045995,214,0 +170781046042,214,0 +170781046090,214,0 +170781046140,214,0 +170781046188,214,0 +170781046237,214,0 +170781046285,214,0 +170781046333,214,0 +170781046381,214,0 +170781046431,214,0 +170781046479,215,0 +170781046526,214,0 +170781046574,215,0 +170781046622,215,0 +170781046670,215,0 +170781046718,215,0 +170781046766,214,0 +170781046815,214,0 +170781046865,214,0 +170781046914,214,0 +170781046962,214,0 +170781047010,214,0 +170781047060,214,0 +170781047108,214,0 +170781047157,214,0 +170781047205,214,0 +170781047255,215,0 +170781047304,215,0 +170781047352,215,0 +170781047400,215,0 +170781047448,214,0 +170781047497,215,0 +170781047545,214,0 +170781047593,214,0 +170781047643,214,0 +170781047691,214,0 +170781047739,214,0 +170781047786,214,0 +170781047836,214,0 +170781047884,215,0 +170781047932,215,0 +170781047981,214,0 +170781048031,214,0 +170781048080,215,0 +170781048128,215,0 +170781048178,215,0 +170781048227,215,0 +170781048275,215,0 +170781048323,215,0 +170781048371,214,0 +170781048420,214,0 +170781048468,214,0 +170781048516,214,0 +170781048564,214,0 +170781048612,214,0 +170781048661,214,0 +170781048709,214,0 +170781048759,214,0 +170781048807,215,0 +170781048856,214,0 +170781048906,214,0 +170781048954,215,0 +170781049002,215,0 +170781049050,215,0 +170781049099,214,0 +170781049147,214,0 +170781049197,213,0 +170781049244,214,0 +170781049294,213,0 +170781049342,214,0 +170781049390,214,0 +170781049439,214,0 +170781049487,214,0 +170781049535,214,0 +170781049583,214,0 +170781049632,214,0 +170781049682,214,0 +170781049730,215,0 +170781049779,215,0 +170781049827,215,0 +170781049875,215,0 +170781049923,214,0 +170781049970,214,0 +170781050018,214,0 +170781050066,214,0 +170781050115,214,0 +170781050163,214,0 +170781050211,214,0 +170781050260,214,0 +170781050308,215,0 +170781050356,215,0 +170781050405,215,0 +170781050453,215,0 +170781050503,215,0 +170781050551,215,0 +170781050600,215,0 +170781050648,215,0 +170781050696,215,0 +170781050744,215,0 +170781050792,214,0 +170781050840,215,0 +170781050888,215,0 +170781050937,214,0 +170781050985,215,0 +170781051033,215,0 +170781051081,215,0 +170781051129,214,0 +170781051178,215,0 +170781051226,215,0 +170781051274,215,0 +170781051324,215,0 +170781051373,215,0 +170781051421,215,0 +170781051469,215,0 +170781051517,215,0 +170781051565,215,0 +170781051613,214,0 +170781051661,214,0 +170781051710,214,0 +170781051759,214,0 +170781051807,214,0 +170781051855,215,0 +170781051903,215,0 +170781051951,215,0 +170781052001,215,0 +170781052048,215,0 +170781052096,215,0 +170781052144,215,0 +170781052192,215,0 +170781052239,215,0 +170781052287,215,0 +170781052335,214,0 +170781052385,214,0 +170781052432,214,0 +170781052480,214,0 +170781052528,214,0 +170781052576,214,0 +170781052623,214,0 +170781052671,214,0 +170781052719,214,0 +170781052767,214,0 +170781052815,214,0 +170781052864,215,0 +170781052912,214,0 +170781052960,214,0 +170781053007,214,0 +170781053055,215,0 +170781053103,214,0 +170781053151,214,0 +170781053199,213,0 +170781053246,213,0 +170781053294,213,0 +170781053342,214,0 +170781053392,213,0 +170781053440,214,0 +170781053487,214,0 +170781053535,214,0 +170781053583,214,0 +170781053631,214,0 +170781053679,214,0 +170781053729,214,0 +170781053778,214,0 +170781053826,214,0 +170781053874,214,0 +170781053924,214,0 +170781053972,214,0 +170781054021,213,0 +170781054069,213,0 +170781054117,214,0 +170781054165,214,0 +170781054212,214,0 +170781054262,214,0 +170781054311,214,0 +170781054359,214,0 +170781054407,214,0 +170781054454,214,0 +170781054502,214,0 +170781054550,214,0 +170781054600,214,0 +170781054648,215,0 +170781054696,214,0 +170781054745,214,0 +170781054793,214,0 +170781054841,214,0 +170781054889,214,0 +170781054937,213,0 +170781054985,214,0 +170781055033,214,0 +170781055081,214,0 +170781055128,214,0 +170781055176,214,0 +170781055224,214,0 +170781055274,215,0 +170781055323,214,0 +170781055373,214,0 +170781055422,215,0 +170781055470,215,0 +170781055520,215,0 +170781055568,214,0 +170781055616,214,0 +170781055665,214,0 +170781055713,214,0 +170781055761,214,0 +170781055809,214,0 +170781055857,214,0 +170781055905,214,0 +170781055954,214,0 +170781056002,215,0 +170781056052,215,0 +170781056100,214,0 +170781056148,214,0 +170781056195,215,0 +170781056243,214,0 +170781056293,214,0 +170781056341,215,0 +170781056389,214,0 +170781056436,214,0 +170781056484,214,0 +170781056532,214,0 +170781056582,214,0 +170781056631,215,0 +170781056679,214,0 +170781056727,214,0 +170781056776,215,0 +170781056824,215,0 +170781056872,215,0 +170781056920,215,0 +170781056968,215,0 +170781057017,215,0 +170781057065,215,0 +170781057113,214,0 +170781057161,214,0 +170781057209,214,0 +170781057257,214,0 +170781057306,214,0 +170781057354,214,0 +170781057404,214,0 +170781057453,214,0 +170781057501,214,0 +170781057549,214,0 +170781057599,214,0 +170781057648,214,0 +170781057696,214,0 +170781057745,215,0 +170781057793,215,0 +170781057841,215,0 +170781057891,215,0 +170781057939,215,0 +170781057987,214,0 +170781058035,214,0 +170781058083,214,0 +170781058130,214,0 +170781058178,214,0 +170781058226,214,0 +170781058276,214,0 +170781058324,214,0 +170781058371,214,0 +170781058419,215,0 +170781058467,214,0 +170781058515,214,0 +170781058563,215,0 +170781058611,215,0 +170781058659,215,0 +170781058707,214,0 +170781058755,214,0 +170781058804,214,0 +170781058852,214,0 +170781058900,214,0 +170781058948,214,0 +170781058997,214,0 +170781059047,214,0 +170781059096,214,0 +170781059144,214,0 +170781059192,214,0 +170781059240,214,0 +170781059289,214,0 +170781059339,214,0 +170781059387,215,0 +170781059435,214,0 +170781059484,214,0 +170781059532,214,0 +170781059580,214,0 +170781059628,213,0 +170781059676,213,0 +170781059724,213,0 +170781059772,214,0 +170781059821,214,0 +170781059869,214,0 +170781059917,214,0 +170781059965,213,0 +170781060013,214,0 +170781060061,214,0 +170781060110,214,0 +170781060158,214,0 +170781060206,214,0 +170781060254,214,0 +170781060302,215,0 +170781060350,215,0 +170781060398,214,0 +170781060446,214,0 +170781060495,214,0 +170781060545,213,0 +170781060593,214,0 +170781060641,214,0 +170781060688,213,0 +170781060738,214,0 +170781060786,214,0 +170781060834,214,0 +170781060882,214,0 +170781060929,214,0 +170781060977,214,0 +170781061025,214,0 +170781061073,215,0 +170781061122,214,0 +170781061170,215,0 +170781061218,214,0 +170781061266,214,0 +170781061316,214,0 +170781061363,214,0 +170781061411,214,0 +170781061459,214,0 +170781061507,214,0 +170781061555,214,0 +170781061603,214,0 +170781061651,215,0 +170781061698,214,0 +170781061746,214,0 +170781061794,215,0 +170781061842,214,0 +170781061890,215,0 +170781061939,214,0 +170781061987,214,0 +170781062035,214,0 +170781062085,214,0 +170781062134,214,0 +170781062184,214,0 +170781062233,214,0 +170781062281,215,0 +170781062329,214,0 +170781062377,215,0 +170781062427,215,0 +170781062476,215,0 +170781062524,215,0 +170781062572,215,0 +170781062621,215,0 +170781062669,215,0 +170781062719,215,0 +170781062766,215,0 +170781062814,214,0 +170781062862,214,0 +170781062910,214,0 +170781062960,214,0 +170781063009,214,0 +170781063059,214,0 +170781063107,215,0 +170781063155,215,0 +170781063203,215,0 +170781063250,215,0 +170781063298,215,0 +170781063348,215,0 +170781063396,215,0 +170781063443,215,0 +170781063491,215,0 +170781063539,215,0 +170781063587,214,0 +170781063635,214,0 +170781063683,214,0 +170781063731,214,0 +170781063780,215,0 +170781063828,214,0 +170781063876,214,0 +170781063924,215,0 +170781063972,215,0 +170781064019,215,0 +170781064069,215,0 +170781064117,215,0 +170781064165,214,0 +170781064212,215,0 +170781064260,215,0 +170781064310,215,0 +170781064358,215,0 +170781064405,215,0 +170781064453,214,0 +170781064501,214,0 +170781064549,214,0 +170781064597,214,0 +170781064645,215,0 +170781064692,214,0 +170781064740,214,0 +170781064788,215,0 +170781064836,215,0 +170781064884,214,0 +170781064932,215,0 +170781064980,215,0 +170781065028,215,0 +170781065075,214,0 +170781065123,215,0 +170781065171,214,0 +170781065219,214,0 +170781065267,214,0 +170781065317,214,0 +170781065364,214,0 +170781065412,214,0 +170781065460,214,0 +170781065508,214,0 +170781065556,214,0 +170781065604,214,0 +170781065652,214,0 +170781065701,214,0 +170781065749,215,0 +170781065797,215,0 +170781065845,215,0 +170781065895,215,0 +170781065943,215,0 +170781065992,214,0 +170781066040,214,0 +170781066089,214,0 +170781066137,214,0 +170781066185,214,0 +170781066235,214,0 +170781066283,214,0 +170781066332,214,0 +170781066382,214,0 +170781066430,215,0 +170781066479,215,0 +170781066527,215,0 +170781066575,215,0 +170781066623,214,0 +170781066671,215,0 +170781066719,215,0 +170781066767,215,0 +170781066815,214,0 +170781066863,214,0 +170781066910,214,0 +170781066960,214,0 +170781067008,214,0 +170781067056,214,0 +170781067104,214,0 +170781067151,214,0 +170781067199,215,0 +170781067249,214,0 +170781067297,215,0 +170781067346,215,0 +170781067394,215,0 +170781067442,215,0 +170781067489,215,0 +170781067537,215,0 +170781067587,215,0 +170781067635,215,0 +170781067683,214,0 +170781067730,214,0 +170781067778,214,0 +170781067826,214,0 +170781067874,214,0 +170781067923,214,0 +170781067971,214,0 +170781068019,215,0 +170781068067,215,0 +170781068115,215,0 +170781068163,215,0 +170781068212,215,0 +170781068260,215,0 +170781068308,215,0 +170781068356,215,0 +170781068405,214,0 +170781068455,214,0 +170781068503,214,0 +170781068551,214,0 +170781068599,214,0 +170781068648,214,0 +170781068696,214,0 +170781068746,214,0 +170781068795,214,0 +170781068843,214,0 +170781068893,215,0 +170781068941,214,0 +170781068989,215,0 +170781069038,215,0 +170781069086,215,0 +170781069134,215,0 +170781069183,215,0 +170781069233,214,0 +170781069281,213,0 +170781069330,214,0 +170781069380,214,0 +170781069429,214,0 +170781069477,214,0 +170781069527,214,0 +170781069576,214,0 +170781069624,214,0 +170781069674,214,0 +170781069722,214,0 +170781069770,214,0 +170781069817,214,0 +170781069867,214,0 +170781069915,214,0 +170781069964,214,0 +170781070012,214,0 +170781070062,213,0 +170781070110,213,0 +170781070158,214,0 +170781070206,213,0 +170781070253,214,0 +170781070303,214,0 +170781070351,214,0 +170781070398,214,0 +170781070446,214,0 +170781070494,214,0 +170781070542,214,0 +170781070590,214,0 +170781070638,214,0 +170781070687,214,0 +170781070735,214,0 +170781070784,214,0 +170781070834,214,0 +170781070882,213,0 +170781070930,213,0 +170781070978,213,0 +170781071027,214,0 +170781071077,214,0 +170781071125,213,0 +170781071173,214,0 +170781071221,214,0 +170781071268,214,0 +170781071318,214,0 +170781071366,214,0 +170781071414,214,0 +170781071463,214,0 +170781071511,214,0 +170781071561,214,0 +170781071610,214,0 +170781071658,214,0 +170781071708,214,0 +170781071756,213,0 +170781071805,214,0 +170781071853,214,0 +170781071901,214,0 +170781071949,214,0 +170781071997,214,0 +170781072045,214,0 +170781072092,214,0 +170781072142,214,0 +170781072190,214,0 +170781072239,215,0 +170781072287,214,0 +170781072335,214,0 +170781072384,215,0 +170781072434,213,0 +170781072483,214,0 +170781072531,214,0 +170781072581,214,0 +170781072630,214,0 +170781072680,214,0 +170781072729,214,0 +170781072777,214,0 +170781072825,214,0 +170781072875,214,0 +170781072923,214,0 +170781072971,214,0 +170781073018,214,0 +170781073066,214,0 +170781073116,214,0 +170781073164,214,0 +170781073213,214,0 +170781073261,213,0 +170781073309,213,0 +170781073357,214,0 +170781073405,214,0 +170781073453,214,0 +170781073501,214,0 +170781073550,214,0 +170781073598,214,0 +170781073646,214,0 +170781073694,214,0 +170781073742,214,0 +170781073791,214,0 +170781073839,214,0 +170781073889,214,0 +170781073937,214,0 +170781073985,214,0 +170781074034,214,0 +170781074084,213,0 +170781074133,214,0 +170781074183,214,0 +170781074231,214,0 +170781074279,214,0 +170781074327,214,0 +170781074374,214,0 +170781074422,214,0 +170781074470,214,0 +170781074520,214,0 +170781074569,215,0 +170781074617,215,0 +170781074665,215,0 +170781074713,215,0 +170781074761,215,0 +170781074810,215,0 +170781074858,215,0 +170781074906,215,0 +170781074954,215,0 +170781075002,215,0 +170781075050,215,0 +170781075097,215,0 +170781075147,215,0 +170781075197,215,0 +170781075246,215,0 +170781075294,215,0 +170781075342,215,0 +170781075390,215,0 +170781075438,215,0 +170781075486,215,0 +170781075534,215,0 +170781075583,215,0 +170781075633,215,0 +170781075681,215,0 +170781075729,215,0 +170781075777,215,0 +170781075825,215,0 +170781075874,215,0 +170781075922,215,0 +170781075972,215,0 +170781076020,215,0 +170781076068,215,0 +170781076115,215,0 +170781076163,215,0 +170781076213,215,0 +170781076262,215,0 +170781076310,215,0 +170781076360,215,0 +170781076409,215,0 +170781076459,215,0 +170781076506,215,0 +170781076554,215,0 +170781076602,214,0 +170781076652,214,0 +170781076700,215,0 +170781076747,215,0 +170781076795,215,0 +170781076843,214,0 +170781076891,214,0 +170781076939,214,0 +170781076989,215,0 +170781077038,214,0 +170781077086,214,0 +170781077134,215,0 +170781077184,215,0 +170781077231,215,0 +170781077281,215,0 +170781077329,215,0 +170781077379,215,0 +170781077428,215,0 +170781077476,215,0 +170781077526,215,0 +170781077575,214,0 +170781077623,214,0 +170781077671,214,0 +170781077719,214,0 +170781077767,214,0 +170781077815,214,0 +170781077864,215,0 +170781077912,215,0 +170781077962,214,0 +170781078010,215,0 +170781078058,215,0 +170781078105,215,0 +170781078153,215,0 +170781078203,215,0 +170781078252,215,0 +170781078300,215,0 +170781078350,214,0 +170781078398,214,0 +170781078446,214,0 +170781078495,214,0 +170781078545,214,0 +170781078594,214,0 +170781078642,214,0 +170781078692,214,0 +170781078741,214,0 +170781078789,214,0 +170781078839,214,0 +170781078887,214,0 +170781078936,214,0 +170781078984,215,0 +170781079032,215,0 +170781079080,215,0 +170781079128,215,0 +170781079177,215,0 +170781079225,214,0 +170781079275,214,0 +170781079322,214,0 +170781079372,214,0 +170781079420,214,0 +170781079469,214,0 +170781079517,214,0 +170781079567,214,0 +170781079615,214,0 +170781079663,214,0 +170781079712,215,0 +170781079760,215,0 +170781079810,215,0 +170781079859,215,0 +170781079907,215,0 +170781079957,214,0 +170781080005,214,0 +170781080053,214,0 +170781080101,214,0 +170781080150,214,0 +170781080198,214,0 +170781080246,214,0 +170781080294,214,0 +170781080342,214,0 +170781080390,214,0 +170781080438,215,0 +170781080485,214,0 +170781080533,214,0 +170781080581,215,0 +170781080629,215,0 +170781080677,215,0 +170781080725,215,0 +170781080774,214,0 +170781080823,214,0 +170781080873,214,0 +170781080921,214,0 +170781080970,213,0 +170781081018,214,0 +170781081068,214,0 +170781081116,214,0 +170781081165,214,0 +170781081215,214,0 +170781081264,214,0 +170781081312,214,0 +170781081360,214,0 +170781081410,215,0 +170781081458,215,0 +170781081505,215,0 +170781081553,214,0 +170781081603,214,0 +170781081651,214,0 +170781081699,214,0 +170781081747,214,0 +170781081795,214,0 +170781081844,214,0 +170781081892,214,0 +170781081940,214,0 +170781081988,214,0 +170781082038,214,0 +170781082086,214,0 +170781082133,214,0 +170781082183,215,0 +170781082231,215,0 +170781082281,215,0 +170781082329,215,0 +170781082378,214,0 +170781082426,214,0 +170781082474,214,0 +170781082523,214,0 +170781082573,214,0 +170781082621,214,0 +170781082670,214,0 +170781082720,214,0 +170781082768,214,0 +170781082816,214,0 +170781082864,214,0 +170781082913,214,0 +170781082961,214,0 +170781083011,215,0 +170781083060,214,0 +170781083110,214,0 +170781083158,215,0 +170781083207,214,0 +170781083255,213,0 +170781083303,213,0 +170781083351,214,0 +170781083401,214,0 +170781083448,213,0 +170781083498,214,0 +170781083546,214,0 +170781083594,214,0 +170781083643,214,0 +170781083691,214,0 +170781083739,214,0 +170781083787,214,0 +170781083835,214,0 +170781083883,214,0 +170781083931,214,0 +170781083981,214,0 +170781084028,214,0 +170781084076,214,0 +170781084126,213,0 +170781084175,214,0 +170781084223,214,0 +170781084271,214,0 +170781084320,214,0 +170781084370,214,0 +170781084419,214,0 +170781084469,214,0 +170781084517,215,0 +170781084565,214,0 +170781084613,214,0 +170781084661,214,0 +170781084709,214,0 +170781084757,215,0 +170781084805,215,0 +170781084854,213,0 +170781084902,214,0 +170781084950,213,0 +170781084998,214,0 +170781085046,214,0 +170781085094,214,0 +170781085141,214,0 +170781085189,214,0 +170781085237,214,0 +170781085287,214,0 +170781085336,214,0 +170781085386,214,0 +170781085435,214,0 +170781085485,214,0 +170781085534,214,0 +170781085582,214,0 +170781085630,214,0 +170781085678,214,0 +170781085726,214,0 +170781085774,214,0 +170781085821,214,0 +170781085869,214,0 +170781085917,214,0 +170781085965,214,0 +170781086013,214,0 +170781086062,214,0 +170781086110,214,0 +170781086158,214,0 +170781086206,214,0 +170781086254,215,0 +170781086303,215,0 +170781086351,214,0 +170781086399,215,0 +170781086447,214,0 +170781086494,214,0 +170781086542,214,0 +170781086592,214,0 +170781086641,214,0 +170781086691,214,0 +170781086740,215,0 +170781086789,215,0 +170781086837,215,0 +170781086885,215,0 +170781086933,215,0 +170781086981,215,0 +170781087031,215,0 +170781087080,215,0 +170781087129,215,0 +170781087179,215,0 +170781087227,215,0 +170781087276,215,0 +170781087324,214,0 +170781087372,215,0 +170781087420,215,0 +170781087468,215,0 +170781087516,215,0 +170781087563,215,0 +170781087611,215,0 +170781087659,215,0 +170781087707,215,0 +170781087755,215,0 +170781087802,215,0 +170781087850,215,0 +170781087900,215,0 +170781087948,215,0 +170781087996,214,0 +170781088043,214,0 +170781088093,214,0 +170781088141,214,0 +170781088188,214,0 +170781088236,214,0 +170781088284,214,0 +170781088332,214,0 +170781088380,214,0 +170781088428,215,0 +170781088475,215,0 +170781088525,215,0 +170781088573,215,0 +170781088620,215,0 +170781088668,215,0 +170781088716,215,0 +170781088764,214,0 +170781088812,214,0 +170781088860,214,0 +170781088908,214,0 +170781088956,214,0 +170781089003,214,0 +170781089051,214,0 +170781089099,214,0 +170781089147,214,0 +170781089195,214,0 +170781089244,214,0 +170781089294,215,0 +170781089343,215,0 +170781089393,215,0 +170781089441,214,0 +170781089490,215,0 +170781089538,215,0 +170781089586,214,0 +170781089635,214,0 +170781089685,214,0 +170781089733,214,0 +170781089781,214,0 +170781089829,214,0 +170781089878,214,0 +170781089926,214,0 +170781089974,214,0 +170781090021,215,0 +170781090069,214,0 +170781090119,215,0 +170781090168,215,0 +170781090216,215,0 +170781090264,215,0 +170781090312,215,0 +170781090360,215,0 +170781090409,214,0 +170781090457,214,0 +170781090507,214,0 +170781090555,214,0 +170781090604,214,0 +170781090652,214,0 +170781090700,214,0 +170781090750,214,0 +170781090799,214,0 +170781090849,214,0 +170781090897,214,0 +170781090946,214,0 +170781090994,214,0 +170781091042,215,0 +170781091090,214,0 +170781091140,214,0 +170781091188,215,0 +170781091237,214,0 +170781091285,213,0 +170781091335,213,0 +170781091384,214,0 +170781091432,213,0 +170781091480,214,0 +170781091528,214,0 +170781091576,214,0 +170781091624,214,0 +170781091671,214,0 +170781091721,214,0 +170781091769,214,0 +170781091818,214,0 +170781091866,214,0 +170781091914,214,0 +170781091963,214,0 +170781092011,214,0 +170781092059,214,0 +170781092109,213,0 +170781092157,213,0 +170781092205,213,0 +170781092253,214,0 +170781092301,214,0 +170781092350,214,0 +170781092398,214,0 +170781092446,214,0 +170781092494,214,0 +170781092544,214,0 +170781092592,214,0 +170781092640,214,0 +170781092689,214,0 +170781092739,214,0 +170781092788,214,0 +170781092836,214,0 +170781092886,213,0 +170781092933,213,0 +170781092983,214,0 +170781093031,214,0 +170781093080,214,0 +170781093128,214,0 +170781093176,214,0 +170781093226,214,0 +170781093275,215,0 +170781093323,214,0 +170781093371,214,0 +170781093421,214,0 +170781093470,214,0 +170781093518,214,0 +170781093566,214,0 +170781093614,214,0 +170781093662,214,0 +170781093711,213,0 +170781093761,213,0 +170781093810,214,0 +170781093860,214,0 +170781093908,214,0 +170781093956,214,0 +170781094004,214,0 +170781094051,214,0 +170781094099,214,0 +170781094147,214,0 +170781094197,214,0 +170781094245,215,0 +170781094294,214,0 +170781094343,214,0 +170781094391,214,0 +170781094439,214,0 +170781094487,213,0 +170781094536,213,0 +170781094584,214,0 +170781094632,214,0 +170781094682,214,0 +170781094729,214,0 +170781094777,214,0 +170781094825,214,0 +170781094873,214,0 +170781094921,214,0 +170781094968,214,0 +170781095016,214,0 +170781095064,215,0 +170781095112,214,0 +170781095160,214,0 +170781095209,214,0 +170781095257,214,0 +170781095305,214,0 +170781095353,214,0 +170781095403,214,0 +170781095450,214,0 +170781095500,214,0 +170781095550,214,0 +170781095597,214,0 +170781095647,214,0 +170781095695,214,0 +170781095743,215,0 +170781095791,214,0 +170781095838,214,0 +170781095886,215,0 +170781095934,215,0 +170781095984,214,0 +170781096032,214,0 +170781096081,214,0 +170781096129,214,0 +170781096177,214,0 +170781096226,214,0 +170781096276,214,0 +170781096324,214,0 +170781096372,214,0 +170781096419,215,0 +170781096467,215,0 +170781096515,215,0 +170781096563,215,0 +170781096611,215,0 +170781096659,215,0 +170781096707,214,0 +170781096755,214,0 +170781096802,215,0 +170781096850,214,0 +170781096898,214,0 +170781096946,214,0 +170781096994,214,0 +170781097042,214,0 +170781097090,214,0 +170781097138,214,0 +170781097187,214,0 +170781097235,215,0 +170781097283,215,0 +170781097331,215,0 +170781097379,215,0 +170781097429,215,0 +170781097477,214,0 +170781097526,215,0 +170781097574,214,0 +170781097623,215,0 +170781097671,214,0 +170781097719,213,0 +170781097767,214,0 +170781097815,214,0 +170781097864,214,0 +170781097914,214,0 +170781097962,214,0 +170781098010,214,0 +170781098057,214,0 +170781098105,214,0 +170781098153,214,0 +170781098201,214,0 +170781098251,214,0 +170781098299,215,0 +170781098347,215,0 +170781098395,215,0 +170781098444,214,0 +170781098492,213,0 +170781098540,214,0 +170781098588,214,0 +170781098637,214,0 +170781098685,214,0 +170781098733,214,0 +170781098781,214,0 +170781098828,214,0 +170781098876,214,0 +170781098924,214,0 +170781098972,214,0 +170781099022,214,0 +170781099069,214,0 +170781099119,214,0 +170781099167,214,0 +170781099215,214,0 +170781099264,214,0 +170781099312,214,0 +170781099360,214,0 +170781099408,214,0 +170781099456,214,0 +170781099505,214,0 +170781099554,214,0 +170781099602,214,0 +170781099650,214,0 +170781099700,215,0 +170781099749,214,0 +170781099797,215,0 +170781099845,214,0 +170781099894,215,0 +170781099942,215,0 +170781099990,215,0 +170781100040,214,0 +170781100087,214,0 +170781100135,214,0 +170781100185,214,0 +170781100233,214,0 +170781100281,214,0 +170781100329,215,0 +170781100377,215,0 +170781100425,215,0 +170781100472,214,0 +170781100520,215,0 +170781100568,215,0 +170781100616,215,0 +170781100664,215,0 +170781100712,215,0 +170781100761,215,0 +170781100809,214,0 +170781100859,214,0 +170781100908,214,0 +170781100958,214,0 +170781101006,214,0 +170781101054,215,0 +170781101101,214,0 +170781101151,215,0 +170781101200,215,0 +170781101248,215,0 +170781101296,215,0 +170781101344,215,0 +170781101392,215,0 +170781101440,215,0 +170781101488,215,0 +170781101536,215,0 +170781101583,214,0 +170781101631,215,0 +170781101679,214,0 +170781101727,214,0 +170781101775,214,0 +170781101823,214,0 +170781101871,214,0 +170781101921,214,0 +170781101969,214,0 +170781102017,214,0 +170781102065,214,0 +170781102113,215,0 +170781102161,215,0 +170781102210,214,0 +170781102258,215,0 +170781102308,214,0 +170781102355,214,0 +170781102403,214,0 +170781102451,214,0 +170781102501,214,0 +170781102549,213,0 +170781102597,214,0 +170781102645,214,0 +170781102694,214,0 +170781102742,214,0 +170781102790,214,0 +170781102839,214,0 +170781102887,214,0 +170781102937,214,0 +170781102986,214,0 +170781103036,214,0 +170781103084,214,0 +170781103133,214,0 +170781103181,214,0 +170781103229,214,0 +170781103279,214,0 +170781103327,213,0 +170781103375,213,0 +170781103422,213,0 +170781103470,213,0 +170781103518,214,0 +170781103566,214,0 +170781103614,214,0 +170781103664,214,0 +170781103713,214,0 +170781103762,214,0 +170781103810,214,0 +170781103858,214,0 +170781103906,214,0 +170781103954,214,0 +170781104004,214,0 +170781104052,214,0 +170781104101,214,0 +170781104151,213,0 +170781104200,214,0 +170781104250,214,0 +170781104299,214,0 +170781104347,214,0 +170781104396,214,0 +170781104446,214,0 +170781104494,214,0 +170781104542,214,0 +170781104589,214,0 +170781104639,214,0 +170781104688,215,0 +170781104736,214,0 +170781104786,215,0 +170781104835,214,0 +170781104883,214,0 +170781104933,213,0 +170781104981,213,0 +170781105030,214,0 +170781105080,214,0 +170781105128,214,0 +170781105176,214,0 +170781105224,214,0 +170781105273,214,0 +170781105323,214,0 +170781105371,214,0 +170781105419,214,0 +170781105467,215,0 +170781105514,215,0 +170781105562,214,0 +170781105610,214,0 +170781105658,214,0 +170781105706,214,0 +170781105754,214,0 +170781105803,214,0 +170781105851,214,0 +170781105901,214,0 +170781105949,214,0 +170781105998,214,0 +170781106046,214,0 +170781106094,214,0 +170781106142,214,0 +170781106192,214,0 +170781106239,214,0 +170781106287,214,0 +170781106337,215,0 +170781106386,215,0 +170781106436,214,0 +170781106484,214,0 +170781106533,214,0 +170781106581,214,0 +170781106631,214,0 +170781106679,214,0 +170781106728,214,0 +170781106776,214,0 +170781106824,214,0 +170781106872,214,0 +170781106922,214,0 +170781106970,214,0 +170781107019,215,0 +170781107067,215,0 +170781107115,215,0 +170781107165,214,0 +170781107213,215,0 +170781107261,214,0 +170781107309,213,0 +170781107357,214,0 +170781107406,214,0 +170781107454,214,0 +170781107502,214,0 +170781107550,214,0 +170781107598,214,0 +170781107646,214,0 +170781107695,214,0 +170781107745,214,0 +170781107792,214,0 +170781107840,214,0 +170781107888,214,0 +170781107936,215,0 +170781107984,214,0 +170781108032,214,0 +170781108082,214,0 +170781108131,214,0 +170781108181,213,0 +170781108230,214,0 +170781108278,214,0 +170781108328,214,0 +170781108376,214,0 +170781108425,214,0 +170781108475,214,0 +170781108524,214,0 +170781108574,214,0 +170781108624,214,0 +170781108673,214,0 +170781108723,214,0 +170781108771,214,0 +170781108820,214,0 +170781108868,214,0 +170781108918,213,0 +170781108967,214,0 +170781109015,213,0 +170781109063,214,0 +170781109111,214,0 +170781109159,214,0 +170781109208,214,0 +170781109256,214,0 +170781109304,214,0 +170781109352,214,0 +170781109400,214,0 +170781109449,214,0 +170781109497,214,0 +170781109547,214,0 +170781109596,214,0 +170781109646,214,0 +170781109695,213,0 +170781109745,213,0 +170781109793,213,0 +170781109841,214,0 +170781109888,214,0 +170781109938,214,0 +170781109987,214,0 +170781110035,214,0 +170781110083,214,0 +170781110131,214,0 +170781110179,214,0 +170781110227,214,0 +170781110275,214,0 +170781110323,214,0 +170781110370,214,0 +170781110418,214,0 +170781110466,214,0 +170781110514,213,0 +170781110561,213,0 +170781110609,213,0 +170781110657,213,0 +170781110705,213,0 +170781110754,214,0 +170781110802,214,0 +170781110852,214,0 +170781110900,214,0 +170781110948,214,0 +170781110995,214,0 +170781111045,214,0 +170781111094,214,0 +170781111144,214,0 +170781111194,214,0 +170781111242,215,0 +170781111291,214,0 +170781111339,214,0 +170781111387,214,0 +170781111435,214,0 +170781111483,214,0 +170781111531,214,0 +170781111580,214,0 +170781111630,214,0 +170781111679,214,0 +170781111729,214,0 +170781111777,215,0 +170781111826,215,0 +170781111874,215,0 +170781111922,215,0 +170781111970,215,0 +170781112018,215,0 +170781112066,214,0 +170781112114,214,0 +170781112162,214,0 +170781112211,214,0 +170781112259,214,0 +170781112307,215,0 +170781112355,215,0 +170781112403,215,0 +170781112451,215,0 +170781112499,215,0 +170781112548,215,0 +170781112598,215,0 +170781112646,215,0 +170781112695,215,0 +170781112745,214,0 +170781112793,214,0 +170781112841,214,0 +170781112890,214,0 +170781112938,214,0 +170781112986,214,0 +170781113034,214,0 +170781113082,214,0 +170781113131,214,0 +170781113179,214,0 +170781113227,214,0 +170781113275,214,0 +170781113323,214,0 +170781113372,215,0 +170781113420,214,0 +170781113468,215,0 +170781113517,215,0 +170781113565,215,0 +170781113613,214,0 +170781113662,215,0 +170781113710,214,0 +170781113760,214,0 +170781113809,214,0 +170781113857,214,0 +170781113905,214,0 +170781113955,214,0 +170781114004,214,0 +170781114052,214,0 +170781114102,215,0 +170781114150,215,0 +170781114199,215,0 +170781114247,215,0 +170781114297,215,0 +170781114345,215,0 +170781114394,214,0 +170781114442,214,0 +170781114492,214,0 +170781114541,214,0 +170781114589,214,0 +170781114637,214,0 +170781114685,214,0 +170781114733,214,0 +170781114781,214,0 +170781114829,214,0 +170781114877,214,0 +170781114926,214,0 +170781114974,214,0 +170781115022,214,0 +170781115070,214,0 +170781115118,214,0 +170781115166,215,0 +170781115214,214,0 +170781115262,214,0 +170781115310,214,0 +170781115359,214,0 +170781115407,214,0 +170781115457,214,0 +170781115506,214,0 +170781115556,214,0 +170781115605,214,0 +170781115653,214,0 +170781115701,214,0 +170781115749,214,0 +170781115797,214,0 +170781115847,214,0 +170781115894,215,0 +170781115942,214,0 +170781115990,214,0 +170781116038,214,0 +170781116086,214,0 +170781116135,214,0 +170781116185,214,0 +170781116234,214,0 +170781116282,214,0 +170781116330,214,0 +170781116380,214,0 +170781116429,214,0 +170781116477,214,0 +170781116525,214,0 +170781116573,214,0 +170781116623,215,0 +170781116671,214,0 +170781116720,214,0 +170781116768,214,0 +170781116818,215,0 +170781116866,214,0 +170781116915,214,0 +170781116965,214,0 +170781117014,214,0 +170781117062,214,0 +170781117110,214,0 +170781117158,214,0 +170781117206,214,0 +170781117254,214,0 +170781117303,214,0 +170781117351,214,0 +170781117399,215,0 +170781117447,214,0 +170781117495,214,0 +170781117543,214,0 +170781117591,215,0 +170781117639,214,0 +170781117688,214,0 +170781117738,214,0 +170781117787,214,0 +170781117835,214,0 +170781117885,214,0 +170781117933,214,0 +170781117981,214,0 +170781118030,214,0 +170781118078,214,0 +170781118126,214,0 +170781118174,214,0 +170781118222,214,0 +170781118270,215,0 +170781118319,214,0 +170781118367,214,0 +170781118415,214,0 +170781118465,214,0 +170781118513,214,0 +170781118561,214,0 +170781118609,214,0 +170781118656,214,0 +170781118704,214,0 +170781118752,214,0 +170781118802,214,0 +170781118851,214,0 +170781118899,214,0 +170781118947,214,0 +170781118995,214,0 +170781119043,214,0 +170781119091,214,0 +170781119139,214,0 +170781119187,214,0 +170781119235,214,0 +170781119283,215,0 +170781119331,214,0 +170781119379,214,0 +170781119426,213,0 +170781119476,214,0 +170781119524,213,0 +170781119573,214,0 +170781119621,214,0 +170781119669,214,0 +170781119717,214,0 +170781119766,214,0 +170781119815,214,0 +170781119865,214,0 +170781119913,214,0 +170781119960,214,0 +170781120008,214,0 diff --git a/laser_value/0213-18.csv b/laser_value/0213-18.csv new file mode 100644 index 0000000..4b6adb2 --- /dev/null +++ b/laser_value/0213-18.csv @@ -0,0 +1,7439 @@ +timestamp,laser_value,event +170781120057,214,0 +170781120106,214,0 +170781120156,213,0 +170781120204,214,0 +170781120253,213,0 +170781120301,214,0 +170781120349,214,0 +170781120397,214,0 +170781120445,214,0 +170781120494,214,0 +170781120542,214,0 +170781120590,214,0 +170781120638,214,0 +170781120686,214,0 +170781120734,214,0 +170781120783,215,0 +170781120831,214,0 +170781120879,214,0 +170781120927,213,0 +170781120975,213,0 +170781121023,213,0 +170781121071,213,0 +170781121119,214,0 +170781121167,214,0 +170781121216,214,0 +170781121264,214,0 +170781121312,214,0 +170781121360,214,0 +170781121408,214,0 +170781121457,214,0 +170781121507,214,0 +170781121556,214,0 +170781121606,214,0 +170781121654,215,0 +170781121702,214,0 +170781121750,213,0 +170781121799,213,0 +170781121847,213,0 +170781121895,213,0 +170781121943,213,0 +170781121993,214,0 +170781122041,213,0 +170781122089,214,0 +170781122136,214,0 +170781122184,214,0 +170781122232,214,0 +170781122280,214,0 +170781122330,214,0 +170781122378,214,0 +170781122427,214,0 +170781122477,214,0 +170781122525,214,0 +170781122573,213,0 +170781122621,213,0 +170781122669,213,0 +170781122716,213,0 +170781122764,213,0 +170781122812,214,0 +170781122860,214,0 +170781122908,214,0 +170781122956,214,0 +170781123004,214,0 +170781123052,214,0 +170781123101,214,0 +170781123149,214,0 +170781123199,214,0 +170781123248,214,0 +170781123296,214,0 +170781123346,214,0 +170781123395,214,0 +170781123443,214,0 +170781123493,214,0 +170781123542,214,0 +170781123590,214,0 +170781123638,214,0 +170781123686,214,0 +170781123735,214,0 +170781123783,214,0 +170781123831,214,0 +170781123881,214,0 +170781123930,215,0 +170781123980,215,0 +170781124029,214,0 +170781124079,214,0 +170781124127,214,0 +170781124176,214,0 +170781124224,214,0 +170781124272,214,0 +170781124320,214,0 +170781124368,214,0 +170781124416,215,0 +170781124465,215,0 +170781124515,215,0 +170781124563,215,0 +170781124612,215,0 +170781124660,215,0 +170781124709,215,0 +170781124759,215,0 +170781124807,215,0 +170781124856,215,0 +170781124904,215,0 +170781124952,215,0 +170781125000,215,0 +170781125048,215,0 +170781125096,215,0 +170781125145,215,0 +170781125195,215,0 +170781125243,215,0 +170781125291,215,0 +170781125340,215,0 +170781125390,215,0 +170781125438,215,0 +170781125486,214,0 +170781125535,215,0 +170781125585,215,0 +170781125633,215,0 +170781125682,215,0 +170781125730,214,0 +170781125778,215,0 +170781125826,214,0 +170781125874,214,0 +170781125922,215,0 +170781125970,214,0 +170781126018,215,0 +170781126067,215,0 +170781126115,215,0 +170781126165,215,0 +170781126214,214,0 +170781126262,215,0 +170781126311,215,0 +170781126361,215,0 +170781126410,214,0 +170781126460,214,0 +170781126509,214,0 +170781126559,215,0 +170781126607,214,0 +170781126655,214,0 +170781126703,214,0 +170781126751,214,0 +170781126800,214,0 +170781126848,215,0 +170781126896,214,0 +170781126944,215,0 +170781126992,215,0 +170781127040,215,0 +170781127088,215,0 +170781127137,215,0 +170781127185,215,0 +170781127233,215,0 +170781127281,215,0 +170781127330,214,0 +170781127380,214,0 +170781127429,214,0 +170781127479,214,0 +170781127527,214,0 +170781127575,214,0 +170781127623,214,0 +170781127671,214,0 +170781127720,214,0 +170781127769,214,0 +170781127819,214,0 +170781127868,214,0 +170781127916,214,0 +170781127966,215,0 +170781128014,215,0 +170781128062,214,0 +170781128110,214,0 +170781128158,213,0 +170781128205,213,0 +170781128255,214,0 +170781128303,214,0 +170781128351,214,0 +170781128399,214,0 +170781128449,214,0 +170781128497,214,0 +170781128546,214,0 +170781128594,214,0 +170781128642,214,0 +170781128690,215,0 +170781128738,215,0 +170781128786,215,0 +170781128835,215,0 +170781128885,214,0 +170781128933,214,0 +170781128981,213,0 +170781129030,214,0 +170781129078,214,0 +170781129126,214,0 +170781129174,214,0 +170781129221,214,0 +170781129271,214,0 +170781129320,214,0 +170781129368,214,0 +170781129416,214,0 +170781129464,214,0 +170781129512,214,0 +170781129560,214,0 +170781129608,215,0 +170781129655,215,0 +170781129703,214,0 +170781129751,213,0 +170781129801,214,0 +170781129848,213,0 +170781129896,213,0 +170781129944,214,0 +170781129994,214,0 +170781130042,214,0 +170781130089,214,0 +170781130137,214,0 +170781130187,214,0 +170781130235,214,0 +170781130282,214,0 +170781130330,214,0 +170781130378,214,0 +170781130427,214,0 +170781130475,214,0 +170781130525,214,0 +170781130573,214,0 +170781130621,213,0 +170781130669,213,0 +170781130716,213,0 +170781130764,213,0 +170781130814,214,0 +170781130863,214,0 +170781130911,214,0 +170781130959,214,0 +170781131009,214,0 +170781131057,214,0 +170781131105,214,0 +170781131153,214,0 +170781131202,214,0 +170781131252,214,0 +170781131300,214,0 +170781131347,214,0 +170781131395,213,0 +170781131445,214,0 +170781131493,214,0 +170781131542,214,0 +170781131591,214,0 +170781131639,214,0 +170781131689,214,0 +170781131737,214,0 +170781131785,214,0 +170781131833,214,0 +170781131882,214,0 +170781131930,214,0 +170781131979,214,0 +170781132027,214,0 +170781132077,215,0 +170781132125,214,0 +170781132173,214,0 +170781132222,214,0 +170781132272,214,0 +170781132320,214,0 +170781132368,214,0 +170781132416,214,0 +170781132463,214,0 +170781132513,214,0 +170781132561,214,0 +170781132609,214,0 +170781132657,214,0 +170781132705,214,0 +170781132753,215,0 +170781132801,215,0 +170781132848,215,0 +170781132896,214,0 +170781132946,214,0 +170781132994,214,0 +170781133042,213,0 +170781133091,214,0 +170781133139,214,0 +170781133187,214,0 +170781133237,214,0 +170781133284,214,0 +170781133332,214,0 +170781133380,214,0 +170781133428,214,0 +170781133476,214,0 +170781133524,214,0 +170781133571,214,0 +170781133619,214,0 +170781133667,214,0 +170781133717,215,0 +170781133764,214,0 +170781133814,213,0 +170781133862,214,0 +170781133909,214,0 +170781133957,214,0 +170781134005,214,0 +170781134053,214,0 +170781134101,214,0 +170781134150,214,0 +170781134198,214,0 +170781134246,214,0 +170781134294,214,0 +170781134342,214,0 +170781134390,214,0 +170781134438,214,0 +170781134485,213,0 +170781134535,213,0 +170781134583,213,0 +170781134630,214,0 +170781134678,213,0 +170781134728,214,0 +170781134776,213,0 +170781134824,213,0 +170781134873,214,0 +170781134921,214,0 +170781134969,214,0 +170781135017,213,0 +170781135066,214,0 +170781135116,213,0 +170781135165,214,0 +170781135215,213,0 +170781135263,213,0 +170781135311,214,0 +170781135359,214,0 +170781135407,213,0 +170781135456,213,0 +170781135506,214,0 +170781135554,213,0 +170781135601,213,0 +170781135649,213,0 +170781135697,213,0 +170781135747,213,0 +170781135795,213,0 +170781135843,213,0 +170781135892,213,0 +170781135940,214,0 +170781135989,213,0 +170781136037,214,0 +170781136085,214,0 +170781136133,214,0 +170781136181,213,0 +170781136229,213,0 +170781136276,213,0 +170781136324,214,0 +170781136374,213,0 +170781136422,214,0 +170781136469,214,0 +170781136517,213,0 +170781136567,214,0 +170781136616,214,0 +170781136666,214,0 +170781136715,214,0 +170781136765,214,0 +170781136813,214,0 +170781136862,214,0 +170781136911,214,0 +170781136959,214,0 +170781137007,214,0 +170781137057,214,0 +170781137105,214,0 +170781137154,214,0 +170781137204,214,0 +170781137252,214,0 +170781137300,214,0 +170781137348,214,0 +170781137396,214,0 +170781137445,214,0 +170781137494,214,0 +170781137544,214,0 +170781137592,214,0 +170781137640,214,0 +170781137688,214,0 +170781137737,214,0 +170781137787,214,0 +170781137835,214,0 +170781137882,214,0 +170781137930,214,0 +170781137980,214,0 +170781138029,214,0 +170781138079,214,0 +170781138127,214,0 +170781138175,214,0 +170781138223,214,0 +170781138271,214,0 +170781138320,214,0 +170781138368,214,0 +170781138418,214,0 +170781138466,214,0 +170781138514,214,0 +170781138562,213,0 +170781138611,213,0 +170781138659,213,0 +170781138707,214,0 +170781138755,214,0 +170781138804,213,0 +170781138854,214,0 +170781138902,214,0 +170781138951,214,0 +170781139001,214,0 +170781139049,214,0 +170781139097,214,0 +170781139145,214,0 +170781139193,214,0 +170781139240,214,0 +170781139288,214,0 +170781139338,214,0 +170781139386,213,0 +170781139434,213,0 +170781139484,213,0 +170781139531,213,0 +170781139579,213,0 +170781139627,214,0 +170781139677,214,0 +170781139725,214,0 +170781139774,214,0 +170781139824,214,0 +170781139872,214,0 +170781139920,214,0 +170781139968,214,0 +170781140016,214,0 +170781140064,214,0 +170781140112,214,0 +170781140160,214,0 +170781140208,213,0 +170781140256,213,0 +170781140305,214,0 +170781140353,213,0 +170781140401,214,0 +170781140449,214,0 +170781140499,214,0 +170781140547,214,0 +170781140594,214,0 +170781140642,214,0 +170781140690,214,0 +170781140738,214,0 +170781140786,214,0 +170781140836,214,0 +170781140885,214,0 +170781140935,214,0 +170781140984,214,0 +170781141034,213,0 +170781141082,213,0 +170781141131,214,0 +170781141179,214,0 +170781141229,214,0 +170781141277,214,0 +170781141326,214,0 +170781141376,214,0 +170781141424,214,0 +170781141472,214,0 +170781141520,215,0 +170781141567,215,0 +170781141615,215,0 +170781141663,214,0 +170781141713,215,0 +170781141761,214,0 +170781141810,214,0 +170781141858,214,0 +170781141908,214,0 +170781141956,214,0 +170781142004,214,0 +170781142052,214,0 +170781142100,214,0 +170781142148,214,0 +170781142196,214,0 +170781142245,215,0 +170781142293,215,0 +170781142341,215,0 +170781142389,215,0 +170781142436,215,0 +170781142486,215,0 +170781142535,215,0 +170781142583,214,0 +170781142631,213,0 +170781142679,213,0 +170781142727,214,0 +170781142776,214,0 +170781142824,214,0 +170781142872,214,0 +170781142920,214,0 +170781142969,214,0 +170781143017,214,0 +170781143065,214,0 +170781143114,214,0 +170781143162,215,0 +170781143211,215,0 +170781143261,215,0 +170781143309,215,0 +170781143357,215,0 +170781143405,214,0 +170781143452,214,0 +170781143500,214,0 +170781143548,214,0 +170781143598,214,0 +170781143647,214,0 +170781143695,214,0 +170781143743,214,0 +170781143791,214,0 +170781143839,214,0 +170781143886,215,0 +170781143934,215,0 +170781143982,215,0 +170781144030,215,0 +170781144078,216,0 +170781144126,215,0 +170781144175,214,0 +170781144224,214,0 +170781144272,214,0 +170781144320,214,0 +170781144370,214,0 +170781144418,214,0 +170781144465,214,0 +170781144513,214,0 +170781144561,215,0 +170781144609,215,0 +170781144659,214,0 +170781144707,215,0 +170781144754,215,0 +170781144804,215,0 +170781144854,215,0 +170781144901,215,0 +170781144949,215,0 +170781144999,214,0 +170781145047,215,0 +170781145094,215,0 +170781145142,215,0 +170781145190,215,0 +170781145238,215,0 +170781145286,215,0 +170781145334,215,0 +170781145382,215,0 +170781145429,215,0 +170781145477,215,0 +170781145525,216,0 +170781145575,215,0 +170781145623,215,0 +170781145671,215,0 +170781145719,215,0 +170781145767,214,0 +170781145815,214,0 +170781145864,214,0 +170781145912,215,0 +170781145962,215,0 +170781146011,215,0 +170781146059,215,0 +170781146109,215,0 +170781146156,215,0 +170781146206,215,0 +170781146254,215,0 +170781146303,215,0 +170781146353,217,0 +170781146401,216,0 +170781146449,215,0 +170781146499,216,0 +170781146548,215,0 +170781146596,215,0 +170781146644,215,0 +170781146693,215,0 +170781146743,215,0 +170781146791,215,0 +170781146840,215,0 +170781146890,215,0 +170781146938,215,0 +170781146987,215,0 +170781147035,215,0 +170781147083,215,0 +170781147133,215,0 +170781147181,216,0 +170781147229,215,0 +170781147278,215,0 +170781147326,215,0 +170781147374,214,0 +170781147422,214,0 +170781147472,214,0 +170781147521,214,0 +170781147569,214,0 +170781147617,215,0 +170781147667,215,0 +170781147715,215,0 +170781147764,215,0 +170781147814,215,0 +170781147861,215,0 +170781147911,216,0 +170781147960,215,0 +170781148008,215,0 +170781148058,216,0 +170781148106,216,0 +170781148155,215,0 +170781148205,214,0 +170781148255,215,0 +170781148304,214,0 +170781148354,215,0 +170781148402,215,0 +170781148451,215,0 +170781148499,215,0 +170781148549,216,0 +170781148598,216,0 +170781148648,215,0 +170781148696,216,0 +170781148745,216,0 +170781148795,215,0 +170781148843,216,0 +170781148891,216,0 +170781148940,216,0 +170781148990,215,0 +170781149038,215,0 +170781149086,215,0 +170781149134,215,0 +170781149182,215,0 +170781149230,216,0 +170781149278,216,0 +170781149325,215,0 +170781149375,215,0 +170781149423,215,0 +170781149471,216,0 +170781149519,216,0 +170781149568,216,0 +170781149618,216,0 +170781149666,216,0 +170781149714,215,0 +170781149763,215,0 +170781149811,215,0 +170781149859,215,0 +170781149909,215,0 +170781149958,215,0 +170781150006,215,0 +170781150056,215,0 +170781150103,215,0 +170781150151,215,0 +170781150201,215,0 +170781150249,216,0 +170781150298,216,0 +170781150346,216,0 +170781150394,215,0 +170781150442,216,0 +170781150490,215,0 +170781150537,216,0 +170781150585,215,0 +170781150633,214,0 +170781150682,214,0 +170781150732,215,0 +170781150780,215,0 +170781150828,215,0 +170781150876,215,0 +170781150924,215,0 +170781150972,215,0 +170781151020,215,0 +170781151068,215,0 +170781151116,215,0 +170781151164,215,0 +170781151211,216,0 +170781151261,215,0 +170781151309,215,0 +170781151358,215,0 +170781151406,214,0 +170781151456,214,0 +170781151504,214,0 +170781151553,214,0 +170781151601,214,0 +170781151649,214,0 +170781151697,215,0 +170781151745,214,0 +170781151795,215,0 +170781151843,215,0 +170781151892,215,0 +170781151940,215,0 +170781151988,215,0 +170781152036,216,0 +170781152086,216,0 +170781152133,215,0 +170781152183,215,0 +170781152232,214,0 +170781152282,214,0 +170781152330,214,0 +170781152379,215,0 +170781152429,215,0 +170781152479,215,0 +170781152528,215,0 +170781152577,215,0 +170781152627,215,0 +170781152677,215,0 +170781152725,215,0 +170781152772,215,0 +170781152820,216,0 +170781152868,216,0 +170781152918,215,0 +170781152966,215,0 +170781153014,214,0 +170781153061,214,0 +170781153111,214,0 +170781153159,214,0 +170781153207,214,0 +170781153254,215,0 +170781153302,215,0 +170781153350,215,0 +170781153400,215,0 +170781153448,215,0 +170781153496,215,0 +170781153544,215,0 +170781153593,216,0 +170781153641,216,0 +170781153689,216,0 +170781153737,215,0 +170781153785,215,0 +170781153833,214,0 +170781153882,214,0 +170781153932,214,0 +170781153981,214,0 +170781154031,214,0 +170781154080,215,0 +170781154130,215,0 +170781154179,215,0 +170781154229,215,0 +170781154277,216,0 +170781154325,215,0 +170781154373,215,0 +170781154421,215,0 +170781154469,215,0 +170781154518,215,0 +170781154566,215,0 +170781154614,214,0 +170781154662,214,0 +170781154710,214,0 +170781154758,214,0 +170781154806,215,0 +170781154855,215,0 +170781154903,215,0 +170781154951,216,0 +170781154999,215,0 +170781155047,215,0 +170781155097,215,0 +170781155146,216,0 +170781155194,216,0 +170781155244,216,0 +170781155292,215,0 +170781155340,215,0 +170781155388,215,0 +170781155437,214,0 +170781155487,215,0 +170781155536,214,0 +170781155586,214,0 +170781155635,214,0 +170781155683,214,0 +170781155731,215,0 +170781155779,215,0 +170781155827,216,0 +170781155875,216,0 +170781155923,216,0 +170781155971,215,0 +170781156021,215,0 +170781156069,216,0 +170781156118,215,0 +170781156168,215,0 +170781156216,214,0 +170781156263,214,0 +170781156313,214,0 +170781156361,214,0 +170781156409,214,0 +170781156457,215,0 +170781156506,215,0 +170781156554,215,0 +170781156602,215,0 +170781156650,215,0 +170781156698,215,0 +170781156746,216,0 +170781156795,215,0 +170781156845,215,0 +170781156893,216,0 +170781156942,215,0 +170781156990,215,0 +170781157038,214,0 +170781157086,214,0 +170781157135,214,0 +170781157183,214,0 +170781157231,214,0 +170781157279,214,0 +170781157327,214,0 +170781157375,215,0 +170781157425,214,0 +170781157473,214,0 +170781157521,215,0 +170781157570,215,0 +170781157620,215,0 +170781157667,216,0 +170781157715,215,0 +170781157763,215,0 +170781157811,214,0 +170781157859,214,0 +170781157907,214,0 +170781157955,214,0 +170781158003,214,0 +170781158051,214,0 +170781158100,214,0 +170781158148,214,0 +170781158198,214,0 +170781158246,215,0 +170781158294,215,0 +170781158343,215,0 +170781158391,215,0 +170781158439,215,0 +170781158489,215,0 +170781158537,215,0 +170781158585,215,0 +170781158633,214,0 +170781158681,214,0 +170781158728,214,0 +170781158778,216,0 +170781158828,215,0 +170781158875,214,0 +170781158923,215,0 +170781158971,214,0 +170781159021,215,0 +170781159070,215,0 +170781159120,215,0 +170781159168,215,0 +170781159217,215,0 +170781159265,215,0 +170781159313,215,0 +170781159361,215,0 +170781159410,214,0 +170781159458,214,0 +170781159506,214,0 +170781159554,214,0 +170781159602,214,0 +170781159649,214,0 +170781159697,214,0 +170781159745,214,0 +170781159793,215,0 +170781159841,215,0 +170781159889,215,0 +170781159937,215,0 +170781159984,215,0 +170781160034,215,0 +170781160082,215,0 +170781160130,215,0 +170781160177,215,0 +170781160227,214,0 +170781160275,214,0 +170781160323,215,0 +170781160371,215,0 +170781160419,215,0 +170781160468,215,0 +170781160518,216,0 +170781160567,216,0 +170781160615,216,0 +170781160665,216,0 +170781160713,216,0 +170781160761,216,0 +170781160809,216,0 +170781160858,216,0 +170781160908,216,0 +170781160956,215,0 +170781161005,216,0 +170781161053,215,0 +170781161101,216,0 +170781161149,216,0 +170781161198,216,0 +170781161246,216,0 +170781161294,216,0 +170781161344,216,0 +170781161392,216,0 +170781161440,216,0 +170781161489,216,0 +170781161539,216,0 +170781161587,216,0 +170781161635,216,0 +170781161683,216,0 +170781161731,216,0 +170781161778,216,0 +170781161828,216,0 +170781161876,216,0 +170781161923,216,0 +170781161973,215,0 +170781162021,216,0 +170781162069,216,0 +170781162117,216,0 +170781162165,216,0 +170781162213,216,0 +170781162260,216,0 +170781162308,216,0 +170781162358,216,0 +170781162406,216,0 +170781162455,215,0 +170781162503,215,0 +170781162551,215,0 +170781162599,215,0 +170781162647,215,0 +170781162695,215,0 +170781162742,215,0 +170781162790,215,0 +170781162838,215,0 +170781162886,215,0 +170781162934,215,0 +170781162982,215,0 +170781163031,215,0 +170781163079,216,0 +170781163127,215,0 +170781163177,215,0 +170781163226,216,0 +170781163276,215,0 +170781163325,216,0 +170781163375,216,0 +170781163423,215,0 +170781163471,214,0 +170781163519,214,0 +170781163567,215,0 +170781163615,215,0 +170781163664,215,0 +170781163714,215,0 +170781163763,215,0 +170781163811,215,0 +170781163861,215,0 +170781163910,215,0 +170781163960,215,0 +170781164008,215,0 +170781164055,215,0 +170781164103,216,0 +170781164151,215,0 +170781164199,215,0 +170781164248,214,0 +170781164296,214,0 +170781164344,214,0 +170781164392,214,0 +170781164440,215,0 +170781164488,215,0 +170781164535,215,0 +170781164583,215,0 +170781164631,215,0 +170781164681,215,0 +170781164729,215,0 +170781164778,216,0 +170781164828,216,0 +170781164875,216,0 +170781164925,215,0 +170781164974,216,0 +170781165024,214,0 +170781165073,214,0 +170781165123,214,0 +170781165171,215,0 +170781165220,215,0 +170781165268,215,0 +170781165316,214,0 +170781165364,215,0 +170781165412,215,0 +170781165460,215,0 +170781165508,216,0 +170781165557,216,0 +170781165605,216,0 +170781165653,216,0 +170781165703,216,0 +170781165751,215,0 +170781165799,215,0 +170781165847,214,0 +170781165896,214,0 +170781165946,215,0 +170781165993,215,0 +170781166041,214,0 +170781166091,215,0 +170781166139,215,0 +170781166187,215,0 +170781166235,216,0 +170781166284,215,0 +170781166334,215,0 +170781166382,215,0 +170781166430,216,0 +170781166477,216,0 +170781166525,215,0 +170781166573,215,0 +170781166623,215,0 +170781166671,214,0 +170781166720,214,0 +170781166768,214,0 +170781166816,214,0 +170781166866,214,0 +170781166915,215,0 +170781166963,215,0 +170781167011,215,0 +170781167061,215,0 +170781167109,215,0 +170781167158,215,0 +170781167206,216,0 +170781167254,216,0 +170781167304,215,0 +170781167353,215,0 +170781167401,215,0 +170781167449,214,0 +170781167497,214,0 +170781167545,214,0 +170781167593,214,0 +170781167641,214,0 +170781167688,214,0 +170781167736,215,0 +170781167784,215,0 +170781167834,215,0 +170781167882,215,0 +170781167930,215,0 +170781167979,215,0 +170781168027,215,0 +170781168075,215,0 +170781168125,215,0 +170781168172,215,0 +170781168220,215,0 +170781168268,214,0 +170781168318,214,0 +170781168366,214,0 +170781168414,214,0 +170781168463,214,0 +170781168511,214,0 +170781168561,214,0 +170781168610,215,0 +170781168658,215,0 +170781168706,215,0 +170781168756,215,0 +170781168804,216,0 +170781168852,215,0 +170781168900,215,0 +170781168949,215,0 +170781168998,215,0 +170781169046,214,0 +170781169094,213,0 +170781169142,214,0 +170781169190,214,0 +170781169238,214,0 +170781169286,214,0 +170781169334,214,0 +170781169382,214,0 +170781169429,214,0 +170781169477,215,0 +170781169525,215,0 +170781169573,215,0 +170781169622,215,0 +170781169670,215,0 +170781169718,215,0 +170781169766,215,0 +170781169814,215,0 +170781169864,213,0 +170781169911,213,0 +170781169959,214,0 +170781170009,214,0 +170781170057,214,0 +170781170105,214,0 +170781170153,214,0 +170781170202,214,0 +170781170250,214,0 +170781170298,214,0 +170781170346,215,0 +170781170394,215,0 +170781170442,215,0 +170781170490,216,0 +170781170538,215,0 +170781170587,215,0 +170781170635,215,0 +170781170683,214,0 +170781170731,214,0 +170781170781,214,0 +170781170829,214,0 +170781170877,214,0 +170781170925,214,0 +170781170974,214,0 +170781171024,214,0 +170781171072,215,0 +170781171120,215,0 +170781171167,215,0 +170781171217,214,0 +170781171266,215,0 +170781171314,215,0 +170781171362,215,0 +170781171410,215,0 +170781171458,214,0 +170781171506,214,0 +170781171554,214,0 +170781171602,214,0 +170781171650,214,0 +170781171698,214,0 +170781171747,214,0 +170781171795,214,0 +170781171843,215,0 +170781171891,215,0 +170781171939,215,0 +170781171987,215,0 +170781172035,215,0 +170781172083,215,0 +170781172133,215,0 +170781172181,215,0 +170781172228,215,0 +170781172278,214,0 +170781172327,214,0 +170781172375,214,0 +170781172425,215,0 +170781172473,215,0 +170781172520,215,0 +170781172568,215,0 +170781172618,215,0 +170781172666,215,0 +170781172714,216,0 +170781172762,215,0 +170781172811,216,0 +170781172861,216,0 +170781172910,216,0 +170781172958,216,0 +170781173008,215,0 +170781173057,215,0 +170781173107,215,0 +170781173156,215,0 +170781173204,215,0 +170781173252,215,0 +170781173300,215,0 +170781173348,215,0 +170781173396,216,0 +170781173445,215,0 +170781173495,216,0 +170781173542,215,0 +170781173592,216,0 +170781173640,216,0 +170781173688,216,0 +170781173737,215,0 +170781173785,216,0 +170781173835,215,0 +170781173883,215,0 +170781173931,215,0 +170781173979,216,0 +170781174027,216,0 +170781174075,215,0 +170781174122,215,0 +170781174170,216,0 +170781174218,216,0 +170781174268,216,0 +170781174315,216,0 +170781174365,216,0 +170781174413,215,0 +170781174461,216,0 +170781174509,216,0 +170781174557,216,0 +170781174606,215,0 +170781174654,215,0 +170781174702,215,0 +170781174750,215,0 +170781174798,215,0 +170781174846,215,0 +170781174894,215,0 +170781174942,215,0 +170781174991,215,0 +170781175039,215,0 +170781175089,215,0 +170781175138,216,0 +170781175188,215,0 +170781175236,216,0 +170781175284,215,0 +170781175332,216,0 +170781175381,215,0 +170781175431,215,0 +170781175479,214,0 +170781175527,215,0 +170781175576,214,0 +170781175626,215,0 +170781175674,215,0 +170781175721,215,0 +170781175769,215,0 +170781175819,215,0 +170781175867,215,0 +170781175915,216,0 +170781175963,215,0 +170781176012,215,0 +170781176060,216,0 +170781176110,216,0 +170781176158,215,0 +170781176206,216,0 +170781176255,214,0 +170781176303,215,0 +170781176351,214,0 +170781176399,214,0 +170781176448,215,0 +170781176496,215,0 +170781176544,215,0 +170781176592,215,0 +170781176640,216,0 +170781176688,215,0 +170781176738,216,0 +170781176787,216,0 +170781176837,215,0 +170781176885,216,0 +170781176934,216,0 +170781176984,216,0 +170781177032,215,0 +170781177080,214,0 +170781177129,214,0 +170781177179,214,0 +170781177227,215,0 +170781177275,215,0 +170781177324,215,0 +170781177372,215,0 +170781177420,215,0 +170781177468,215,0 +170781177516,215,0 +170781177564,216,0 +170781177612,216,0 +170781177660,215,0 +170781177709,216,0 +170781177759,215,0 +170781177807,215,0 +170781177855,215,0 +170781177903,214,0 +170781177951,214,0 +170781178000,214,0 +170781178050,214,0 +170781178098,214,0 +170781178147,215,0 +170781178195,215,0 +170781178244,215,0 +170781178292,215,0 +170781178342,215,0 +170781178390,215,0 +170781178438,216,0 +170781178487,215,0 +170781178537,216,0 +170781178586,216,0 +170781178636,215,0 +170781178684,214,0 +170781178733,214,0 +170781178783,214,0 +170781178832,214,0 +170781178880,214,0 +170781178928,214,0 +170781178976,214,0 +170781179024,215,0 +170781179072,215,0 +170781179120,215,0 +170781179168,215,0 +170781179216,215,0 +170781179264,215,0 +170781179312,215,0 +170781179360,215,0 +170781179408,216,0 +170781179455,214,0 +170781179503,214,0 +170781179551,214,0 +170781179601,214,0 +170781179650,214,0 +170781179698,215,0 +170781179746,214,0 +170781179796,214,0 +170781179845,215,0 +170781179893,215,0 +170781179943,215,0 +170781179992,215,0 +170781180042,215,0 +170781180091,216,0 +170781180141,216,0 +170781180189,215,0 +170781180237,217,0 +170781180285,213,0 +170781180333,214,0 +170781180380,214,0 +170781180428,214,0 +170781180476,214,0 +170781180526,214,0 +170781180574,214,0 +170781180622,214,0 +170781180669,214,0 +170781180719,218,0 +170781180768,215,0 +170781180818,215,0 +170781180867,215,0 +170781180917,215,0 +170781180965,215,0 +170781181013,216,0 +170781181062,216,0 +170781181112,213,0 +170781181161,213,0 +170781181211,213,0 +170781181259,214,0 +170781181307,214,0 +170781181355,214,0 +170781181403,214,0 +170781181452,214,0 +170781181502,215,0 +170781181551,214,0 +170781181601,215,0 +170781181649,215,0 +170781181697,215,0 +170781181745,215,0 +170781181794,215,0 +170781181842,215,0 +170781181892,214,0 +170781181941,214,0 +170781181991,214,0 +170781182039,214,0 +170781182088,214,0 +170781182136,215,0 +170781182184,215,0 +170781182233,215,0 +170781182281,214,0 +170781182331,215,0 +170781182379,215,0 +170781182428,215,0 +170781182478,215,0 +170781182526,215,0 +170781182575,216,0 +170781182623,215,0 +170781182672,214,0 +170781182720,214,0 +170781182768,214,0 +170781182816,214,0 +170781182865,215,0 +170781182915,214,0 +170781182964,215,0 +170781183012,215,0 +170781183060,215,0 +170781183110,215,0 +170781183159,215,0 +170781183207,215,0 +170781183256,215,0 +170781183304,215,0 +170781183354,215,0 +170781183403,215,0 +170781183451,215,0 +170781183499,215,0 +170781183547,214,0 +170781183595,214,0 +170781183643,214,0 +170781183692,214,0 +170781183742,215,0 +170781183789,215,0 +170781183837,215,0 +170781183885,215,0 +170781183933,215,0 +170781183983,215,0 +170781184031,215,0 +170781184080,215,0 +170781184128,216,0 +170781184176,216,0 +170781184224,215,0 +170781184274,214,0 +170781184323,214,0 +170781184371,214,0 +170781184421,215,0 +170781184468,215,0 +170781184516,215,0 +170781184566,215,0 +170781184615,215,0 +170781184665,215,0 +170781184714,215,0 +170781184762,215,0 +170781184812,215,0 +170781184860,216,0 +170781184908,216,0 +170781184956,216,0 +170781185004,216,0 +170781185053,215,0 +170781185101,215,0 +170781185149,215,0 +170781185197,215,0 +170781185246,215,0 +170781185294,216,0 +170781185344,216,0 +170781185392,215,0 +170781185441,216,0 +170781185491,216,0 +170781185539,216,0 +170781185586,216,0 +170781185634,216,0 +170781185684,216,0 +170781185732,216,0 +170781185780,215,0 +170781185828,215,0 +170781185876,214,0 +170781185924,215,0 +170781185973,215,0 +170781186023,215,0 +170781186071,215,0 +170781186119,216,0 +170781186166,215,0 +170781186214,215,0 +170781186262,216,0 +170781186312,216,0 +170781186361,216,0 +170781186409,215,0 +170781186459,216,0 +170781186507,216,0 +170781186555,215,0 +170781186602,215,0 +170781186650,215,0 +170781186698,215,0 +170781186746,215,0 +170781186796,215,0 +170781186844,215,0 +170781186891,215,0 +170781186939,215,0 +170781186987,215,0 +170781187035,216,0 +170781187085,216,0 +170781187133,216,0 +170781187181,216,0 +170781187229,216,0 +170781187277,216,0 +170781187326,216,0 +170781187374,216,0 +170781187422,216,0 +170781187472,215,0 +170781187520,214,0 +170781187567,214,0 +170781187617,214,0 +170781187665,214,0 +170781187713,215,0 +170781187762,215,0 +170781187810,216,0 +170781187858,215,0 +170781187908,215,0 +170781187957,215,0 +170781188007,215,0 +170781188055,215,0 +170781188104,215,0 +170781188152,215,0 +170781188200,215,0 +170781188250,215,0 +170781188299,214,0 +170781188349,214,0 +170781188397,215,0 +170781188446,214,0 +170781188494,214,0 +170781188542,214,0 +170781188590,215,0 +170781188638,215,0 +170781188686,215,0 +170781188734,215,0 +170781188782,216,0 +170781188830,215,0 +170781188878,215,0 +170781188926,215,0 +170781188974,215,0 +170781189023,215,0 +170781189073,215,0 +170781189120,213,0 +170781189168,214,0 +170781189216,214,0 +170781189266,214,0 +170781189314,214,0 +170781189362,214,0 +170781189410,214,0 +170781189457,214,0 +170781189505,215,0 +170781189553,214,0 +170781189603,215,0 +170781189652,215,0 +170781189700,215,0 +170781189750,215,0 +170781189798,215,0 +170781189845,215,0 +170781189895,214,0 +170781189944,214,0 +170781189994,214,0 +170781190042,214,0 +170781190090,214,0 +170781190138,214,0 +170781190187,215,0 +170781190235,215,0 +170781190284,215,0 +170781190332,215,0 +170781190380,215,0 +170781190428,215,0 +170781190476,215,0 +170781190524,215,0 +170781190573,215,0 +170781190621,215,0 +170781190669,215,0 +170781190716,213,0 +170781190764,214,0 +170781190812,214,0 +170781190860,214,0 +170781190908,214,0 +170781190956,214,0 +170781191005,214,0 +170781191053,215,0 +170781191101,215,0 +170781191149,215,0 +170781191196,215,0 +170781191244,215,0 +170781191292,215,0 +170781191340,215,0 +170781191388,215,0 +170781191436,215,0 +170781191484,214,0 +170781191532,214,0 +170781191579,214,0 +170781191627,214,0 +170781191675,214,0 +170781191723,215,0 +170781191771,214,0 +170781191819,214,0 +170781191866,214,0 +170781191914,215,0 +170781191962,215,0 +170781192010,215,0 +170781192057,215,0 +170781192105,216,0 +170781192155,215,0 +170781192203,215,0 +170781192250,215,0 +170781192298,214,0 +170781192346,214,0 +170781192394,214,0 +170781192442,215,0 +170781192490,215,0 +170781192537,215,0 +170781192585,215,0 +170781192633,215,0 +170781192681,215,0 +170781192729,215,0 +170781192777,216,0 +170781192825,216,0 +170781192873,215,0 +170781192921,215,0 +170781192969,216,0 +170781193018,215,0 +170781193066,215,0 +170781193115,214,0 +170781193163,214,0 +170781193213,214,0 +170781193262,215,0 +170781193310,215,0 +170781193358,215,0 +170781193406,215,0 +170781193454,215,0 +170781193502,215,0 +170781193550,216,0 +170781193597,216,0 +170781193645,216,0 +170781193693,215,0 +170781193743,216,0 +170781193791,216,0 +170781193838,215,0 +170781193886,215,0 +170781193936,215,0 +170781193984,215,0 +170781194032,215,0 +170781194081,215,0 +170781194131,215,0 +170781194180,215,0 +170781194228,215,0 +170781194276,215,0 +170781194324,215,0 +170781194372,215,0 +170781194421,216,0 +170781194469,216,0 +170781194517,216,0 +170781194565,215,0 +170781194614,215,0 +170781194664,215,0 +170781194712,214,0 +170781194761,214,0 +170781194809,214,0 +170781194857,214,0 +170781194905,214,0 +170781194953,214,0 +170781195001,215,0 +170781195048,215,0 +170781195096,215,0 +170781195144,215,0 +170781195192,215,0 +170781195240,215,0 +170781195288,215,0 +170781195336,216,0 +170781195384,216,0 +170781195431,215,0 +170781195479,216,0 +170781195527,214,0 +170781195575,214,0 +170781195625,214,0 +170781195674,214,0 +170781195722,214,0 +170781195770,215,0 +170781195818,214,0 +170781195867,215,0 +170781195917,215,0 +170781195967,215,0 +170781196014,215,0 +170781196062,215,0 +170781196110,215,0 +170781196160,215,0 +170781196208,215,0 +170781196257,215,0 +170781196305,214,0 +170781196353,214,0 +170781196401,214,0 +170781196449,214,0 +170781196497,214,0 +170781196546,215,0 +170781196594,214,0 +170781196643,215,0 +170781196693,215,0 +170781196741,215,0 +170781196789,215,0 +170781196837,215,0 +170781196886,215,0 +170781196936,215,0 +170781196985,215,0 +170781197035,216,0 +170781197083,215,0 +170781197130,215,0 +170781197178,215,0 +170781197226,215,0 +170781197276,215,0 +170781197324,215,0 +170781197373,216,0 +170781197423,215,0 +170781197472,215,0 +170781197522,215,0 +170781197571,216,0 +170781197621,216,0 +170781197670,215,0 +170781197720,216,0 +170781197768,216,0 +170781197817,215,0 +170781197867,215,0 +170781197915,215,0 +170781197963,215,0 +170781198012,215,0 +170781198060,215,0 +170781198108,215,0 +170781198156,215,0 +170781198205,216,0 +170781198253,216,0 +170781198301,215,0 +170781198351,215,0 +170781198399,216,0 +170781198446,216,0 +170781198496,216,0 +170781198545,215,0 +170781198593,215,0 +170781198641,215,0 +170781198689,215,0 +170781198737,215,0 +170781198785,215,0 +170781198833,215,0 +170781198881,215,0 +170781198929,215,0 +170781198978,216,0 +170781199026,216,0 +170781199076,216,0 +170781199123,216,0 +170781199171,215,0 +170781199221,215,0 +170781199269,216,0 +170781199317,216,0 +170781199366,215,0 +170781199414,215,0 +170781199462,215,0 +170781199511,215,0 +170781199559,215,0 +170781199607,215,0 +170781199657,215,0 +170781199706,215,0 +170781199756,215,0 +170781199804,215,0 +170781199852,215,0 +170781199900,215,0 +170781199948,215,0 +170781199996,216,0 +170781200045,215,0 +170781200093,216,0 +170781200141,215,0 +170781200190,215,0 +170781200238,215,0 +170781200286,215,0 +170781200336,214,0 +170781200384,214,0 +170781200432,214,0 +170781200480,214,0 +170781200528,215,0 +170781200577,215,0 +170781200627,215,0 +170781200675,215,0 +170781200723,215,0 +170781200770,215,0 +170781200818,215,0 +170781200866,215,0 +170781200916,215,0 +170781200964,215,0 +170781201012,215,0 +170781201061,215,0 +170781201109,214,0 +170781201157,214,0 +170781201207,214,0 +170781201255,214,0 +170781201303,214,0 +170781201352,214,0 +170781201402,215,0 +170781201450,214,0 +170781201499,215,0 +170781201547,215,0 +170781201597,215,0 +170781201647,215,0 +170781201696,215,0 +170781201746,215,0 +170781201794,215,0 +170781201843,215,0 +170781201891,215,0 +170781201939,214,0 +170781201987,214,0 +170781202035,214,0 +170781202084,214,0 +170781202132,214,0 +170781202182,214,0 +170781202230,215,0 +170781202278,215,0 +170781202326,215,0 +170781202374,216,0 +170781202422,215,0 +170781202470,215,0 +170781202518,216,0 +170781202567,215,0 +170781202615,216,0 +170781202663,215,0 +170781202712,214,0 +170781202762,214,0 +170781202811,214,0 +170781202861,214,0 +170781202910,214,0 +170781202960,214,0 +170781203008,215,0 +170781203056,215,0 +170781203104,215,0 +170781203152,215,0 +170781203202,215,0 +170781203251,215,0 +170781203299,215,0 +170781203347,215,0 +170781203395,215,0 +170781203444,215,0 +170781203492,215,0 +170781203540,214,0 +170781203588,214,0 +170781203636,214,0 +170781203683,214,0 +170781203731,214,0 +170781203779,215,0 +170781203827,215,0 +170781203875,215,0 +170781203923,215,0 +170781203971,215,0 +170781204019,216,0 +170781204067,215,0 +170781204115,215,0 +170781204163,215,0 +170781204211,216,0 +170781204260,215,0 +170781204308,214,0 +170781204357,214,0 +170781204407,215,0 +170781204455,215,0 +170781204504,215,0 +170781204552,215,0 +170781204600,215,0 +170781204650,215,0 +170781204699,215,0 +170781204747,215,0 +170781204795,215,0 +170781204843,216,0 +170781204892,215,0 +170781204940,216,0 +170781204988,215,0 +170781205036,215,0 +170781205084,215,0 +170781205132,214,0 +170781205180,214,0 +170781205229,214,0 +170781205279,214,0 +170781205328,214,0 +170781205378,214,0 +170781205426,215,0 +170781205475,215,0 +170781205525,215,0 +170781205573,215,0 +170781205620,215,0 +170781205670,215,0 +170781205719,215,0 +170781205769,215,0 +170781205818,215,0 +170781205868,215,0 +170781205916,214,0 +170781205964,213,0 +170781206012,214,0 +170781206061,214,0 +170781206111,214,0 +170781206159,214,0 +170781206207,214,0 +170781206255,214,0 +170781206303,215,0 +170781206351,215,0 +170781206398,215,0 +170781206448,215,0 +170781206497,215,0 +170781206547,216,0 +170781206595,215,0 +170781206643,215,0 +170781206692,215,0 +170781206740,213,0 +170781206788,213,0 +170781206836,213,0 +170781206884,214,0 +170781206933,214,0 +170781206981,214,0 +170781207029,214,0 +170781207077,214,0 +170781207127,214,0 +170781207176,215,0 +170781207226,214,0 +170781207275,215,0 +170781207325,215,0 +170781207373,215,0 +170781207422,215,0 +170781207470,215,0 +170781207519,214,0 +170781207569,213,0 +170781207617,213,0 +170781207665,213,0 +170781207713,214,0 +170781207760,213,0 +170781207808,213,0 +170781207858,214,0 +170781207907,214,0 +170781207957,214,0 +170781208005,214,0 +170781208054,214,0 +170781208102,214,0 +170781208152,214,0 +170781208201,214,0 +170781208249,214,0 +170781208297,216,0 +170781208345,215,0 +170781208395,215,0 +170781208443,216,0 +170781208491,216,0 +170781208539,215,0 +170781208586,216,0 +170781208634,215,0 +170781208682,215,0 +170781208730,214,0 +170781208777,214,0 +170781208825,214,0 +170781208873,214,0 +170781208921,214,0 +170781208970,215,0 +170781209018,215,0 +170781209068,215,0 +170781209118,215,0 +170781209167,215,0 +170781209215,215,0 +170781209263,215,0 +170781209311,215,0 +170781209359,215,0 +170781209406,216,0 +170781209456,215,0 +170781209504,215,0 +170781209552,215,0 +170781209601,215,0 +170781209649,215,0 +170781209699,215,0 +170781209748,215,0 +170781209798,215,0 +170781209846,215,0 +170781209893,215,0 +170781209943,216,0 +170781209992,216,0 +170781210040,216,0 +170781210090,216,0 +170781210139,216,0 +170781210187,215,0 +170781210237,216,0 +170781210286,215,0 +170781210334,215,0 +170781210384,215,0 +170781210433,215,0 +170781210481,215,0 +170781210531,215,0 +170781210580,216,0 +170781210628,215,0 +170781210676,216,0 +170781210726,215,0 +170781210774,216,0 +170781210822,217,0 +170781210871,216,0 +170781210919,216,0 +170781210967,215,0 +170781211015,216,0 +170781211064,215,0 +170781211114,214,0 +170781211161,215,0 +170781211209,215,0 +170781211257,215,0 +170781211307,215,0 +170781211356,215,0 +170781211404,215,0 +170781211452,215,0 +170781211500,216,0 +170781211548,215,0 +170781211596,215,0 +170781211644,216,0 +170781211693,218,0 +170781211741,216,0 +170781211790,215,0 +170781211838,215,0 +170781211886,215,0 +170781211936,215,0 +170781211985,215,0 +170781212033,215,0 +170781212081,215,0 +170781212129,215,0 +170781212177,215,0 +170781212226,217,0 +170781212274,216,0 +170781212323,216,0 +170781212371,216,0 +170781212421,216,0 +170781212469,215,0 +170781212517,215,0 +170781212566,215,0 +170781212614,215,0 +170781212662,216,0 +170781212711,214,0 +170781212759,215,0 +170781212809,215,0 +170781212857,215,0 +170781212904,215,0 +170781212952,215,0 +170781213000,215,0 +170781213050,215,0 +170781213099,215,0 +170781213147,215,0 +170781213195,215,0 +170781213242,215,0 +170781213290,216,0 +170781213338,216,0 +170781213386,216,0 +170781213434,216,0 +170781213481,215,0 +170781213529,214,0 +170781213577,215,0 +170781213625,215,0 +170781213673,215,0 +170781213722,215,0 +170781213770,215,0 +170781213818,215,0 +170781213867,215,0 +170781213915,215,0 +170781213963,215,0 +170781214011,216,0 +170781214059,215,0 +170781214107,216,0 +170781214154,216,0 +170781214202,215,0 +170781214250,215,0 +170781214300,215,0 +170781214349,214,0 +170781214399,214,0 +170781214447,215,0 +170781214494,214,0 +170781214542,215,0 +170781214590,215,0 +170781214638,215,0 +170781214688,215,0 +170781214736,215,0 +170781214784,215,0 +170781214833,216,0 +170781214881,216,0 +170781214929,216,0 +170781214977,215,0 +170781215025,215,0 +170781215073,215,0 +170781215121,214,0 +170781215169,214,0 +170781215218,214,0 +170781215266,214,0 +170781215314,215,0 +170781215362,215,0 +170781215410,215,0 +170781215458,215,0 +170781215506,215,0 +170781215554,215,0 +170781215602,215,0 +170781215650,215,0 +170781215697,215,0 +170781215747,215,0 +170781215795,215,0 +170781215843,216,0 +170781215890,215,0 +170781215938,214,0 +170781215986,214,0 +170781216034,214,0 +170781216082,214,0 +170781216130,214,0 +170781216179,214,0 +170781216227,215,0 +170781216276,215,0 +170781216324,215,0 +170781216374,215,0 +170781216422,215,0 +170781216469,215,0 +170781216517,215,0 +170781216565,216,0 +170781216613,215,0 +170781216661,215,0 +170781216710,215,0 +170781216760,214,0 +170781216809,214,0 +170781216859,214,0 +170781216906,214,0 +170781216954,214,0 +170781217004,214,0 +170781217052,214,0 +170781217100,214,0 +170781217149,215,0 +170781217197,215,0 +170781217245,215,0 +170781217293,215,0 +170781217340,215,0 +170781217388,216,0 +170781217436,215,0 +170781217484,215,0 +170781217532,214,0 +170781217580,214,0 +170781217628,214,0 +170781217676,214,0 +170781217724,214,0 +170781217772,214,0 +170781217821,214,0 +170781217869,215,0 +170781217917,214,0 +170781217965,215,0 +170781218013,215,0 +170781218061,216,0 +170781218109,215,0 +170781218158,215,0 +170781218206,215,0 +170781218254,215,0 +170781218302,215,0 +170781218352,213,0 +170781218400,213,0 +170781218447,214,0 +170781218495,214,0 +170781218543,214,0 +170781218591,214,0 +170781218639,214,0 +170781218687,215,0 +170781218736,215,0 +170781218784,215,0 +170781218832,215,0 +170781218880,215,0 +170781218928,215,0 +170781218976,215,0 +170781219024,215,0 +170781219073,215,0 +170781219123,215,0 +170781219170,213,0 +170781219218,213,0 +170781219266,214,0 +170781219314,214,0 +170781219364,214,0 +170781219413,214,0 +170781219461,214,0 +170781219511,214,0 +170781219559,214,0 +170781219607,215,0 +170781219655,215,0 +170781219704,215,0 +170781219754,215,0 +170781219802,215,0 +170781219850,215,0 +170781219899,216,0 +170781219947,214,0 +170781219995,213,0 +170781220042,213,0 +170781220090,213,0 +170781220138,213,0 +170781220186,214,0 +170781220234,214,0 +170781220282,214,0 +170781220331,214,0 +170781220379,214,0 +170781220427,214,0 +170781220475,215,0 +170781220523,215,0 +170781220570,215,0 +170781220620,215,0 +170781220668,215,0 +170781220716,215,0 +170781220764,213,0 +170781220813,213,0 +170781220861,213,0 +170781220909,214,0 +170781220957,214,0 +170781221005,214,0 +170781221052,214,0 +170781221102,214,0 +170781221150,215,0 +170781221198,215,0 +170781221247,215,0 +170781221295,215,0 +170781221343,215,0 +170781221391,215,0 +170781221439,215,0 +170781221487,215,0 +170781221537,214,0 +170781221584,214,0 +170781221632,214,0 +170781221680,214,0 +170781221728,215,0 +170781221776,215,0 +170781221824,215,0 +170781221874,215,0 +170781221922,215,0 +170781221970,215,0 +170781222019,215,0 +170781222067,215,0 +170781222117,216,0 +170781222165,216,0 +170781222213,216,0 +170781222261,215,0 +170781222310,215,0 +170781222358,215,0 +170781222406,215,0 +170781222454,215,0 +170781222503,215,0 +170781222553,215,0 +170781222601,215,0 +170781222650,215,0 +170781222698,216,0 +170781222746,215,0 +170781222796,216,0 +170781222844,216,0 +170781222893,216,0 +170781222941,215,0 +170781222989,216,0 +170781223037,215,0 +170781223085,215,0 +170781223134,216,0 +170781223182,215,0 +170781223230,215,0 +170781223280,215,0 +170781223330,215,0 +170781223379,215,0 +170781223427,216,0 +170781223475,215,0 +170781223524,216,0 +170781223572,216,0 +170781223620,216,0 +170781223668,216,0 +170781223718,216,0 +170781223766,216,0 +170781223814,215,0 +170781223863,215,0 +170781223911,215,0 +170781223959,215,0 +170781224009,215,0 +170781224057,215,0 +170781224106,215,0 +170781224154,215,0 +170781224202,215,0 +170781224250,215,0 +170781224299,215,0 +170781224349,215,0 +170781224397,216,0 +170781224447,216,0 +170781224495,215,0 +170781224543,216,0 +170781224590,216,0 +170781224640,216,0 +170781224689,215,0 +170781224739,215,0 +170781224787,215,0 +170781224836,215,0 +170781224884,215,0 +170781224934,215,0 +170781224983,215,0 +170781225033,215,0 +170781225082,215,0 +170781225132,215,0 +170781225180,215,0 +170781225228,216,0 +170781225277,215,0 +170781225327,215,0 +170781225376,215,0 +170781225426,215,0 +170781225474,216,0 +170781225523,215,0 +170781225571,215,0 +170781225619,214,0 +170781225667,214,0 +170781225717,215,0 +170781225765,215,0 +170781225812,215,0 +170781225860,215,0 +170781225910,215,0 +170781225958,215,0 +170781226007,215,0 +170781226055,216,0 +170781226103,216,0 +170781226151,216,0 +170781226201,215,0 +170781226250,216,0 +170781226300,215,0 +170781226348,214,0 +170781226397,215,0 +170781226445,215,0 +170781226493,215,0 +170781226541,215,0 +170781226589,215,0 +170781226637,215,0 +170781226685,215,0 +170781226735,215,0 +170781226783,215,0 +170781226830,215,0 +170781226878,215,0 +170781226926,216,0 +170781226976,215,0 +170781227024,216,0 +170781227073,216,0 +170781227121,215,0 +170781227169,215,0 +170781227217,214,0 +170781227265,214,0 +170781227313,214,0 +170781227362,215,0 +170781227410,214,0 +170781227458,215,0 +170781227506,215,0 +170781227554,215,0 +170781227602,215,0 +170781227650,215,0 +170781227697,215,0 +170781227747,216,0 +170781227795,215,0 +170781227844,215,0 +170781227894,215,0 +170781227942,215,0 +170781227990,213,0 +170781228039,214,0 +170781228087,214,0 +170781228135,214,0 +170781228183,214,0 +170781228231,214,0 +170781228279,214,0 +170781228327,214,0 +170781228375,214,0 +170781228423,215,0 +170781228472,215,0 +170781228522,215,0 +170781228570,215,0 +170781228617,215,0 +170781228667,215,0 +170781228716,215,0 +170781228764,214,0 +170781228814,213,0 +170781228863,213,0 +170781228911,214,0 +170781228959,213,0 +170781229007,214,0 +170781229055,214,0 +170781229102,214,0 +170781229152,214,0 +170781229201,215,0 +170781229249,215,0 +170781229297,215,0 +170781229347,215,0 +170781229394,215,0 +170781229444,215,0 +170781229494,215,0 +170781229542,216,0 +170781229589,214,0 +170781229637,214,0 +170781229685,214,0 +170781229733,214,0 +170781229781,214,0 +170781229831,214,0 +170781229880,214,0 +170781229928,214,0 +170781229976,214,0 +170781230026,214,0 +170781230074,215,0 +170781230123,215,0 +170781230171,215,0 +170781230219,215,0 +170781230267,215,0 +170781230315,216,0 +170781230362,214,0 +170781230410,214,0 +170781230458,214,0 +170781230506,214,0 +170781230554,214,0 +170781230602,215,0 +170781230650,215,0 +170781230697,215,0 +170781230745,215,0 +170781230793,215,0 +170781230841,215,0 +170781230889,215,0 +170781230937,215,0 +170781230986,216,0 +170781231034,215,0 +170781231082,215,0 +170781231130,216,0 +170781231179,214,0 +170781231229,214,0 +170781231277,214,0 +170781231325,214,0 +170781231372,214,0 +170781231420,215,0 +170781231468,214,0 +170781231516,215,0 +170781231564,215,0 +170781231611,215,0 +170781231659,215,0 +170781231709,215,0 +170781231757,215,0 +170781231805,216,0 +170781231854,216,0 +170781231902,215,0 +170781231950,215,0 +170781231997,214,0 +170781232047,214,0 +170781232095,214,0 +170781232144,214,0 +170781232194,215,0 +170781232242,215,0 +170781232291,215,0 +170781232339,215,0 +170781232387,215,0 +170781232435,215,0 +170781232483,216,0 +170781232532,216,0 +170781232582,215,0 +170781232630,215,0 +170781232678,215,0 +170781232726,215,0 +170781232774,214,0 +170781232821,214,0 +170781232871,214,0 +170781232919,214,0 +170781232968,215,0 +170781233016,214,0 +170781233064,215,0 +170781233112,215,0 +170781233162,215,0 +170781233211,215,0 +170781233259,215,0 +170781233307,215,0 +170781233355,215,0 +170781233405,215,0 +170781233454,215,0 +170781233502,215,0 +170781233550,215,0 +170781233599,214,0 +170781233647,215,0 +170781233697,215,0 +170781233745,215,0 +170781233792,215,0 +170781233840,215,0 +170781233888,215,0 +170781233936,215,0 +170781233984,215,0 +170781234032,215,0 +170781234080,216,0 +170781234127,216,0 +170781234175,216,0 +170781234223,216,0 +170781234271,216,0 +170781234319,215,0 +170781234367,216,0 +170781234416,216,0 +170781234466,215,0 +170781234514,215,0 +170781234561,216,0 +170781234609,216,0 +170781234657,216,0 +170781234705,216,0 +170781234755,216,0 +170781234802,216,0 +170781234850,216,0 +170781234898,216,0 +170781234946,216,0 +170781234994,216,0 +170781235042,216,0 +170781235090,216,0 +170781235137,216,0 +170781235187,216,0 +170781235235,215,0 +170781235284,215,0 +170781235332,215,0 +170781235380,215,0 +170781235428,215,0 +170781235478,215,0 +170781235527,216,0 +170781235575,216,0 +170781235624,216,0 +170781235672,216,0 +170781235720,216,0 +170781235768,216,0 +170781235816,215,0 +170781235865,215,0 +170781235915,215,0 +170781235962,215,0 +170781236010,215,0 +170781236058,215,0 +170781236107,215,0 +170781236155,215,0 +170781236203,215,0 +170781236251,215,0 +170781236299,215,0 +170781236347,215,0 +170781236395,215,0 +170781236444,216,0 +170781236492,216,0 +170781236542,216,0 +170781236590,216,0 +170781236639,216,0 +170781236687,215,0 +170781236736,215,0 +170781236786,214,0 +170781236834,214,0 +170781236882,214,0 +170781236930,214,0 +170781236979,214,0 +170781237027,214,0 +170781237075,214,0 +170781237123,214,0 +170781237173,215,0 +170781237221,215,0 +170781237270,215,0 +170781237320,215,0 +170781237367,215,0 +170781237417,215,0 +170781237465,215,0 +170781237514,216,0 +170781237562,215,0 +170781237612,213,0 +170781237660,214,0 +170781237708,214,0 +170781237757,214,0 +170781237805,214,0 +170781237853,214,0 +170781237901,215,0 +170781237949,215,0 +170781237999,215,0 +170781238047,215,0 +170781238095,215,0 +170781238142,215,0 +170781238190,215,0 +170781238238,215,0 +170781238286,215,0 +170781238334,215,0 +170781238383,214,0 +170781238431,214,0 +170781238479,214,0 +170781238527,214,0 +170781238575,214,0 +170781238623,214,0 +170781238671,215,0 +170781238720,215,0 +170781238768,215,0 +170781238816,215,0 +170781238864,215,0 +170781238912,215,0 +170781238960,215,0 +170781239007,215,0 +170781239057,215,0 +170781239106,215,0 +170781239156,215,0 +170781239204,214,0 +170781239252,214,0 +170781239299,214,0 +170781239347,214,0 +170781239395,214,0 +170781239444,214,0 +170781239492,215,0 +170781239540,215,0 +170781239588,215,0 +170781239636,215,0 +170781239684,215,0 +170781239732,215,0 +170781239779,215,0 +170781239827,215,0 +170781239875,215,0 +170781239923,215,0 +170781239971,215,0 +170781240021,214,0 +170781240070,214,0 +170781240120,214,0 +170781240169,214,0 +170781240217,215,0 +170781240267,214,0 +170781240315,215,0 +170781240364,215,0 +170781240414,215,0 +170781240462,215,0 +170781240510,215,0 +170781240558,215,0 +170781240606,216,0 +170781240654,216,0 +170781240703,215,0 +170781240751,215,0 +170781240801,214,0 +170781240850,214,0 +170781240900,214,0 +170781240948,214,0 +170781240996,215,0 +170781241044,214,0 +170781241092,215,0 +170781241140,215,0 +170781241189,215,0 +170781241237,215,0 +170781241285,215,0 +170781241333,215,0 +170781241382,216,0 +170781241432,216,0 +170781241482,216,0 +170781241530,216,0 +170781241577,215,0 +170781241625,214,0 +170781241675,214,0 +170781241724,214,0 +170781241772,214,0 +170781241820,214,0 +170781241868,215,0 +170781241916,214,0 +170781241965,215,0 +170781242013,216,0 +170781242061,215,0 +170781242108,215,0 +170781242156,215,0 +170781242204,215,0 +170781242252,215,0 +170781242300,215,0 +170781242348,215,0 +170781242397,214,0 +170781242445,214,0 +170781242495,214,0 +170781242544,214,0 +170781242592,214,0 +170781242640,214,0 +170781242688,214,0 +170781242736,215,0 +170781242785,215,0 +170781242835,215,0 +170781242882,215,0 +170781242930,215,0 +170781242979,215,0 +170781243027,215,0 +170781243075,216,0 +170781243123,216,0 +170781243173,215,0 +170781243221,214,0 +170781243268,214,0 +170781243316,214,0 +170781243364,214,0 +170781243412,214,0 +170781243460,215,0 +170781243508,215,0 +170781243557,214,0 +170781243605,215,0 +170781243653,215,0 +170781243700,216,0 +170781243750,215,0 +170781243798,216,0 +170781243845,215,0 +170781243893,215,0 +170781243941,216,0 +170781243989,215,0 +170781244037,215,0 +170781244085,215,0 +170781244132,215,0 +170781244180,215,0 +170781244230,215,0 +170781244278,215,0 +170781244325,215,0 +170781244373,215,0 +170781244421,215,0 +170781244469,215,0 +170781244518,215,0 +170781244568,215,0 +170781244617,215,0 +170781244667,215,0 +170781244716,216,0 +170781244766,215,0 +170781244814,214,0 +170781244861,214,0 +170781244911,214,0 +170781244959,214,0 +170781245006,214,0 +170781245054,215,0 +170781245102,215,0 +170781245150,215,0 +170781245198,215,0 +170781245247,215,0 +170781245295,215,0 +170781245343,215,0 +170781245391,215,0 +170781245439,215,0 +170781245486,215,0 +170781245534,215,0 +170781245582,215,0 +170781245630,214,0 +170781245678,214,0 +170781245727,214,0 +170781245775,214,0 +170781245823,214,0 +170781245871,214,0 +170781245919,215,0 +170781245969,215,0 +170781246017,215,0 +170781246065,215,0 +170781246113,215,0 +170781246160,215,0 +170781246208,216,0 +170781246258,216,0 +170781246307,215,0 +170781246355,215,0 +170781246403,214,0 +170781246451,215,0 +170781246499,215,0 +170781246547,215,0 +170781246596,215,0 +170781246644,216,0 +170781246692,216,0 +170781246742,216,0 +170781246790,215,0 +170781246838,216,0 +170781246886,215,0 +170781246933,216,0 +170781246981,216,0 +170781247031,216,0 +170781247079,216,0 +170781247127,215,0 +170781247175,216,0 +170781247223,215,0 +170781247270,215,0 +170781247318,215,0 +170781247366,216,0 +170781247414,216,0 +170781247462,216,0 +170781247512,216,0 +170781247561,216,0 +170781247609,216,0 +170781247658,216,0 +170781247706,216,0 +170781247756,216,0 +170781247804,216,0 +170781247852,215,0 +170781247900,216,0 +170781247948,215,0 +170781247996,215,0 +170781248044,215,0 +170781248092,215,0 +170781248141,215,0 +170781248189,216,0 +170781248237,215,0 +170781248285,215,0 +170781248334,215,0 +170781248382,216,0 +170781248430,216,0 +170781248478,216,0 +170781248526,215,0 +170781248574,216,0 +170781248624,217,0 +170781248673,216,0 +170781248721,215,0 +170781248771,215,0 +170781248818,214,0 +170781248866,214,0 +170781248914,214,0 +170781248964,215,0 +170781249012,215,0 +170781249060,215,0 +170781249107,215,0 +170781249157,215,0 +170781249205,215,0 +170781249253,215,0 +170781249302,215,0 +170781249352,216,0 +170781249400,216,0 +170781249448,215,0 +170781249497,215,0 +170781249545,215,0 +170781249595,215,0 +170781249644,214,0 +170781249694,214,0 +170781249742,214,0 +170781249789,214,0 +170781249837,214,0 +170781249885,214,0 +170781249933,214,0 +170781249981,214,0 +170781250029,215,0 +170781250077,215,0 +170781250124,215,0 +170781250174,215,0 +170781250222,215,0 +170781250270,216,0 +170781250317,215,0 +170781250367,215,0 +170781250415,214,0 +170781250463,213,0 +170781250512,214,0 +170781250562,214,0 +170781250610,214,0 +170781250657,214,0 +170781250705,216,0 +170781250755,214,0 +170781250804,214,0 +170781250854,214,0 +170781250902,215,0 +170781250950,215,0 +170781250999,215,0 +170781251047,215,0 +170781251095,215,0 +170781251142,215,0 +170781251190,215,0 +170781251238,214,0 +170781251286,214,0 +170781251334,214,0 +170781251382,214,0 +170781251430,214,0 +170781251478,214,0 +170781251525,214,0 +170781251575,215,0 +170781251623,215,0 +170781251672,215,0 +170781251720,215,0 +170781251768,215,0 +170781251818,215,0 +170781251866,215,0 +170781251914,215,0 +170781251962,216,0 +170781252009,214,0 +170781252059,214,0 +170781252109,214,0 +170781252156,214,0 +170781252206,214,0 +170781252254,215,0 +170781252302,214,0 +170781252351,215,0 +170781252401,215,0 +170781252449,215,0 +170781252498,215,0 +170781252546,215,0 +170781252594,215,0 +170781252642,215,0 +170781252690,216,0 +170781252738,216,0 +170781252788,215,0 +170781252837,214,0 +170781252885,214,0 +170781252935,215,0 +170781252983,215,0 +170781253031,215,0 +170781253078,215,0 +170781253128,215,0 +170781253176,215,0 +170781253224,215,0 +170781253273,215,0 +170781253321,216,0 +170781253370,216,0 +170781253418,216,0 +170781253466,215,0 +170781253514,215,0 +170781253562,215,0 +170781253610,215,0 +170781253658,214,0 +170781253706,214,0 +170781253753,214,0 +170781253801,214,0 +170781253849,214,0 +170781253899,215,0 +170781253947,215,0 +170781253994,215,0 +170781254044,215,0 +170781254092,215,0 +170781254141,216,0 +170781254189,215,0 +170781254237,216,0 +170781254285,216,0 +170781254333,215,0 +170781254383,215,0 +170781254432,214,0 +170781254480,214,0 +170781254528,214,0 +170781254578,214,0 +170781254627,214,0 +170781254677,214,0 +170781254726,215,0 +170781254774,215,0 +170781254824,215,0 +170781254872,215,0 +170781254919,215,0 +170781254967,215,0 +170781255017,215,0 +170781255066,215,0 +170781255116,215,0 +170781255164,215,0 +170781255212,215,0 +170781255261,214,0 +170781255309,214,0 +170781255357,214,0 +170781255406,214,0 +170781255456,214,0 +170781255504,214,0 +170781255552,214,0 +170781255600,214,0 +170781255648,215,0 +170781255696,215,0 +170781255744,215,0 +170781255793,215,0 +170781255843,215,0 +170781255891,215,0 +170781255938,215,0 +170781255988,215,0 +170781256037,214,0 +170781256085,214,0 +170781256133,213,0 +170781256181,214,0 +170781256229,214,0 +170781256277,214,0 +170781256325,214,0 +170781256375,214,0 +170781256423,214,0 +170781256471,215,0 +170781256518,215,0 +170781256568,215,0 +170781256617,215,0 +170781256665,215,0 +170781256713,215,0 +170781256761,216,0 +170781256809,215,0 +170781256859,213,0 +170781256906,214,0 +170781256956,214,0 +170781257004,214,0 +170781257053,214,0 +170781257101,214,0 +170781257149,214,0 +170781257197,214,0 +170781257247,215,0 +170781257297,215,0 +170781257344,215,0 +170781257392,215,0 +170781257440,215,0 +170781257490,215,0 +170781257538,215,0 +170781257586,215,0 +170781257634,214,0 +170781257683,213,0 +170781257731,213,0 +170781257779,214,0 +170781257829,214,0 +170781257878,214,0 +170781257928,214,0 +170781257977,214,0 +170781258027,215,0 +170781258075,215,0 +170781258124,215,0 +170781258172,215,0 +170781258220,215,0 +170781258268,215,0 +170781258317,215,0 +170781258365,215,0 +170781258413,215,0 +170781258461,214,0 +170781258509,214,0 +170781258557,214,0 +170781258605,214,0 +170781258653,215,0 +170781258701,215,0 +170781258748,215,0 +170781258796,215,0 +170781258844,215,0 +170781258893,215,0 +170781258941,216,0 +170781258989,216,0 +170781259037,216,0 +170781259086,216,0 +170781259134,215,0 +170781259182,216,0 +170781259230,215,0 +170781259278,215,0 +170781259327,215,0 +170781259375,215,0 +170781259423,215,0 +170781259472,215,0 +170781259520,216,0 +170781259568,216,0 +170781259616,216,0 +170781259664,216,0 +170781259712,216,0 +170781259760,216,0 +170781259808,216,0 +170781259857,216,0 +170781259905,216,0 +170781259952,216,0 +170781260000,216,0 +170781260048,216,0 +170781260096,215,0 +170781260145,216,0 +170781260193,216,0 +170781260241,215,0 +170781260289,216,0 +170781260337,216,0 +170781260385,216,0 +170781260432,216,0 +170781260480,216,0 +170781260528,216,0 +170781260578,216,0 +170781260625,216,0 +170781260673,215,0 +170781260721,215,0 +170781260769,215,0 +170781260818,215,0 +170781260866,215,0 +170781260914,216,0 +170781260964,215,0 +170781261012,215,0 +170781261061,215,0 +170781261109,215,0 +170781261157,215,0 +170781261205,215,0 +170781261253,215,0 +170781261301,215,0 +170781261349,215,0 +170781261398,215,0 +170781261446,215,0 +170781261496,216,0 +170781261543,216,0 +170781261591,215,0 +170781261641,215,0 +170781261690,214,0 +170781261738,214,0 +170781261788,214,0 +170781261836,214,0 +170781261883,215,0 +170781261933,215,0 +170781261981,215,0 +170781262030,215,0 +170781262080,215,0 +170781262129,215,0 +170781262177,215,0 +170781262225,215,0 +170781262275,215,0 +170781262323,215,0 +170781262370,215,0 +170781262418,215,0 +170781262468,214,0 +170781262516,214,0 +170781262564,214,0 +170781262611,214,0 +170781262659,214,0 +170781262709,215,0 +170781262757,215,0 +170781262806,215,0 +170781262854,215,0 +170781262904,215,0 +170781262951,215,0 +170781262999,216,0 +170781263047,215,0 +170781263095,215,0 +170781263144,216,0 +170781263192,216,0 +170781263240,215,0 +170781263290,215,0 +170781263339,215,0 +170781263387,215,0 +170781263435,215,0 +170781263485,215,0 +170781263533,215,0 +170781263582,215,0 +170781263630,215,0 +170781263678,215,0 +170781263728,215,0 +170781263776,215,0 +170781263824,216,0 +170781263873,215,0 +170781263921,215,0 +170781263969,215,0 +170781264016,216,0 +170781264064,215,0 +170781264114,214,0 +170781264162,214,0 +170781264209,214,0 +170781264257,215,0 +170781264305,215,0 +170781264353,215,0 +170781264401,215,0 +170781264449,215,0 +170781264499,215,0 +170781264548,215,0 +170781264598,216,0 +170781264645,216,0 +170781264695,215,0 +170781264744,215,0 +170781264794,216,0 +170781264843,215,0 +170781264891,214,0 +170781264941,214,0 +170781264989,214,0 +170781265038,214,0 +170781265086,214,0 +170781265134,214,0 +170781265184,215,0 +170781265231,215,0 +170781265279,215,0 +170781265327,215,0 +170781265375,215,0 +170781265423,215,0 +170781265471,215,0 +170781265519,215,0 +170781265567,215,0 +170781265617,215,0 +170781265666,214,0 +170781265716,214,0 +170781265764,214,0 +170781265812,214,0 +170781265860,214,0 +170781265908,214,0 +170781265955,214,0 +170781266003,214,0 +170781266051,215,0 +170781266101,215,0 +170781266149,215,0 +170781266198,215,0 +170781266248,215,0 +170781266297,215,0 +170781266345,215,0 +170781266395,215,0 +170781266443,215,0 +170781266492,213,0 +170781266540,214,0 +170781266588,214,0 +170781266636,214,0 +170781266685,214,0 +170781266735,214,0 +170781266784,214,0 +170781266832,215,0 +170781266882,215,0 +170781266930,215,0 +170781266979,215,0 +170781267027,215,0 +170781267075,215,0 +170781267123,215,0 +170781267171,215,0 +170781267219,215,0 +170781267266,214,0 +170781267314,213,0 +170781267362,214,0 +170781267412,213,0 +170781267460,214,0 +170781267508,214,0 +170781267556,214,0 +170781267604,214,0 +170781267652,214,0 +170781267700,215,0 +170781267749,215,0 +170781267797,215,0 +170781267847,215,0 +170781267895,215,0 +170781267944,215,0 +170781267992,215,0 +170781268040,215,0 +170781268090,214,0 +170781268137,214,0 +170781268185,214,0 +170781268233,214,0 +170781268281,214,0 +170781268331,214,0 +170781268380,215,0 +170781268428,215,0 +170781268476,215,0 +170781268524,215,0 +170781268573,215,0 +170781268623,217,0 +170781268671,215,0 +170781268718,215,0 +170781268766,215,0 +170781268814,215,0 +170781268862,214,0 +170781268912,214,0 +170781268960,214,0 +170781269008,214,0 +170781269056,214,0 +170781269104,214,0 +170781269151,214,0 +170781269199,214,0 +170781269249,214,0 +170781269297,215,0 +170781269346,215,0 +170781269396,215,0 +170781269446,215,0 +170781269493,215,0 +170781269541,215,0 +170781269589,215,0 +170781269637,215,0 +170781269687,214,0 +170781269734,213,0 +170781269784,213,0 +170781269832,214,0 +170781269880,214,0 +170781269928,214,0 +170781269977,214,0 +170781270027,214,0 +170781270076,215,0 +170781270126,215,0 +170781270173,215,0 +170781270223,215,0 +170781270272,215,0 +170781270320,215,0 +170781270370,215,0 +170781270419,215,0 +170781270467,215,0 +170781270515,214,0 +170781270565,214,0 +170781270612,214,0 +170781270662,214,0 +170781270711,214,0 +170781270759,215,0 +170781270807,215,0 +170781270857,215,0 +170781270906,215,0 +170781270954,215,0 +170781271002,215,0 +170781271050,216,0 +170781271098,215,0 +170781271146,216,0 +170781271194,215,0 +170781271242,215,0 +170781271290,214,0 +170781271339,215,0 +170781271387,215,0 +170781271435,215,0 +170781271483,215,0 +170781271532,215,0 +170781271580,215,0 +170781271628,215,0 +170781271677,215,0 +170781271727,216,0 +170781271775,216,0 +170781271823,215,0 +170781271871,216,0 +170781271920,216,0 +170781271970,216,0 +170781272019,216,0 +170781272067,216,0 +170781272115,215,0 +170781272165,216,0 +170781272212,215,0 +170781272260,215,0 +170781272308,215,0 +170781272356,215,0 +170781272404,215,0 +170781272452,215,0 +170781272500,216,0 +170781272548,216,0 +170781272597,215,0 +170781272645,216,0 +170781272693,215,0 +170781272741,215,0 +170781272789,216,0 +170781272837,216,0 +170781272886,215,0 +170781272934,216,0 +170781272982,215,0 +170781273032,215,0 +170781273081,216,0 +170781273129,216,0 +170781273177,216,0 +170781273225,216,0 +170781273273,216,0 +170781273321,216,0 +170781273371,216,0 +170781273419,216,0 +170781273468,216,0 +170781273516,216,0 +170781273564,216,0 +170781273612,215,0 +170781273659,215,0 +170781273709,215,0 +170781273757,215,0 +170781273805,216,0 +170781273852,216,0 +170781273900,215,0 +170781273950,215,0 +170781273999,215,0 +170781274047,216,0 +170781274095,215,0 +170781274143,215,0 +170781274191,216,0 +170781274239,216,0 +170781274286,215,0 +170781274336,215,0 +170781274384,215,0 +170781274432,215,0 +170781274480,215,0 +170781274529,214,0 +170781274577,214,0 +170781274625,214,0 +170781274673,215,0 +170781274721,215,0 +170781274770,215,0 +170781274818,215,0 +170781274866,215,0 +170781274914,217,0 +170781274963,216,0 +170781275011,216,0 +170781275059,215,0 +170781275107,216,0 +170781275155,215,0 +170781275203,216,0 +170781275251,215,0 +170781275299,214,0 +170781275348,214,0 +170781275398,214,0 +170781275446,214,0 +170781275494,215,0 +170781275541,215,0 +170781275589,215,0 +170781275637,215,0 +170781275687,215,0 +170781275736,215,0 +170781275786,215,0 +170781275835,216,0 +170781275885,216,0 +170781275934,215,0 +170781275982,215,0 +170781276032,215,0 +170781276080,214,0 +170781276128,214,0 +170781276176,214,0 +170781276225,214,0 +170781276273,214,0 +170781276321,214,0 +170781276369,214,0 +170781276417,215,0 +170781276465,216,0 +170781276513,215,0 +170781276561,215,0 +170781276610,215,0 +170781276660,215,0 +170781276709,215,0 +170781276759,216,0 +170781276807,215,0 +170781276854,215,0 +170781276904,214,0 +170781276953,214,0 +170781277001,214,0 +170781277049,214,0 +170781277097,214,0 +170781277145,214,0 +170781277193,215,0 +170781277241,215,0 +170781277289,215,0 +170781277337,215,0 +170781277386,214,0 +170781277434,214,0 +170781277482,215,0 +170781277530,215,0 +170781277578,215,0 +170781277625,215,0 +170781277673,215,0 +170781277721,213,0 +170781277769,214,0 +170781277817,214,0 +170781277866,214,0 +170781277916,214,0 +170781277964,214,0 +170781278012,214,0 +170781278061,216,0 +170781278111,215,0 +170781278159,215,0 +170781278206,215,0 +170781278254,215,0 +170781278302,215,0 +170781278350,215,0 +170781278398,215,0 +170781278446,215,0 +170781278495,214,0 +170781278543,214,0 +170781278591,214,0 +170781278639,214,0 +170781278687,214,0 +170781278734,214,0 +170781278782,214,0 +170781278830,214,0 +170781278880,214,0 +170781278927,215,0 +170781278977,215,0 +170781279025,214,0 +170781279074,215,0 +170781279124,215,0 +170781279172,215,0 +170781279220,215,0 +170781279268,215,0 +170781279317,214,0 +170781279367,214,0 +170781279416,214,0 +170781279465,214,0 +170781279515,214,0 +170781279563,214,0 +170781279612,214,0 +170781279660,215,0 +170781279708,215,0 +170781279756,215,0 +170781279804,215,0 +170781279852,215,0 +170781279900,215,0 +170781279947,215,0 +170781279995,215,0 +170781280043,215,0 +170781280091,214,0 +170781280139,214,0 +170781280187,214,0 +170781280234,214,0 +170781280282,214,0 +170781280330,214,0 +170781280378,214,0 +170781280426,214,0 +170781280474,214,0 +170781280522,215,0 +170781280571,216,0 +170781280619,215,0 +170781280667,216,0 +170781280715,215,0 +170781280762,215,0 +170781280810,215,0 +170781280858,215,0 +170781280906,214,0 +170781280954,214,0 +170781281002,214,0 +170781281050,214,0 +170781281098,214,0 +170781281146,215,0 +170781281195,214,0 +170781281243,215,0 +170781281291,215,0 +170781281339,214,0 +170781281388,215,0 +170781281436,215,0 +170781281484,215,0 +170781281532,215,0 +170781281580,215,0 +170781281629,215,0 +170781281677,215,0 +170781281725,214,0 +170781281773,214,0 +170781281823,214,0 +170781281872,214,0 +170781281920,214,0 +170781281968,214,0 +170781282018,214,0 +170781282065,214,0 +170781282115,215,0 +170781282163,215,0 +170781282211,215,0 +170781282259,215,0 +170781282307,216,0 +170781282354,216,0 +170781282402,215,0 +170781282450,215,0 +170781282498,214,0 +170781282546,214,0 +170781282594,214,0 +170781282641,214,0 +170781282689,214,0 +170781282737,215,0 +170781282787,215,0 +170781282836,215,0 +170781282884,215,0 +170781282932,215,0 +170781282980,216,0 +170781283029,215,0 +170781283077,216,0 +170781283125,216,0 +170781283173,216,0 +170781283221,215,0 +170781283269,216,0 +170781283317,215,0 +170781283366,215,0 +170781283414,215,0 +170781283462,215,0 +170781283511,215,0 +170781283561,215,0 +170781283609,216,0 +170781283656,216,0 +170781283704,216,0 +170781283752,216,0 +170781283800,216,0 +170781283848,216,0 +170781283896,215,0 +170781283944,216,0 +170781283992,216,0 +170781284039,215,0 +170781284087,215,0 +170781284135,215,0 +170781284184,215,0 +170781284232,215,0 +170781284280,216,0 +170781284328,215,0 +170781284378,216,0 +170781284427,216,0 +170781284475,216,0 +170781284523,216,0 +170781284571,216,0 +170781284620,216,0 +170781284668,216,0 +170781284716,215,0 +170781284765,215,0 +170781284813,215,0 +170781284861,215,0 +170781284909,215,0 +170781284959,215,0 +170781285008,215,0 +170781285056,215,0 +170781285104,215,0 +170781285152,216,0 +170781285200,215,0 +170781285249,215,0 +170781285297,215,0 +170781285347,217,0 +170781285394,216,0 +170781285444,216,0 +170781285492,216,0 +170781285540,216,0 +170781285587,216,0 +170781285635,215,0 +170781285683,216,0 +170781285733,214,0 +170781285781,214,0 +170781285829,214,0 +170781285876,214,0 +170781285924,215,0 +170781285974,215,0 +170781286023,215,0 +170781286073,215,0 +170781286121,215,0 +170781286168,216,0 +170781286216,216,0 +170781286264,216,0 +170781286314,216,0 +170781286361,216,0 +170781286411,216,0 +170781286460,216,0 +170781286508,214,0 +170781286556,214,0 +170781286605,214,0 +170781286653,214,0 +170781286701,214,0 +170781286749,214,0 +170781286798,214,0 +170781286846,214,0 +170781286894,215,0 +170781286942,215,0 +170781286989,215,0 +170781287037,215,0 +170781287087,215,0 +170781287134,215,0 +170781287184,215,0 +170781287233,215,0 +170781287283,215,0 +170781287332,213,0 +170781287380,213,0 +170781287428,214,0 +170781287476,214,0 +170781287525,214,0 +170781287573,214,0 +170781287622,214,0 +170781287672,215,0 +170781287720,214,0 +170781287767,215,0 +170781287815,215,0 +170781287863,215,0 +170781287911,215,0 +170781287959,215,0 +170781288008,215,0 +170781288056,215,0 +170781288105,215,0 +170781288153,214,0 +170781288201,214,0 +170781288249,214,0 +170781288298,214,0 +170781288348,214,0 +170781288396,214,0 +170781288445,214,0 +170781288493,215,0 +170781288543,215,0 +170781288590,215,0 +170781288638,215,0 +170781288686,216,0 +170781288734,215,0 +170781288782,215,0 +170781288830,215,0 +170781288878,215,0 +170781288927,214,0 +170781288975,214,0 +170781289023,214,0 +170781289071,214,0 +170781289119,214,0 +170781289167,214,0 +170781289215,215,0 +170781289263,214,0 +170781289310,215,0 +170781289358,215,0 +170781289406,215,0 +170781289455,215,0 +170781289503,215,0 +170781289551,216,0 +170781289599,216,0 +170781289647,216,0 +170781289695,215,0 +170781289742,214,0 +170781289790,214,0 +170781289838,214,0 +170781289886,215,0 +170781289934,214,0 +170781289981,215,0 +170781290029,215,0 +170781290077,215,0 +170781290125,215,0 +170781290173,215,0 +170781290220,215,0 +170781290268,215,0 +170781290316,215,0 +170781290364,216,0 +170781290412,216,0 +170781290460,216,0 +170781290508,215,0 +170781290556,214,0 +170781290604,214,0 +170781290652,215,0 +170781290699,215,0 +170781290747,215,0 +170781290795,215,0 +170781290843,215,0 +170781290891,215,0 +170781290939,215,0 +170781290987,215,0 +170781291036,215,0 +170781291084,215,0 +170781291132,216,0 +170781291180,215,0 +170781291228,216,0 +170781291277,215,0 +170781291326,214,0 +170781291376,215,0 +170781291424,215,0 +170781291473,215,0 +170781291521,215,0 +170781291570,215,0 +170781291618,215,0 +170781291666,215,0 +170781291714,215,0 +170781291762,215,0 +170781291810,215,0 +170781291857,216,0 +170781291905,215,0 +170781291953,216,0 +170781292001,215,0 +170781292050,216,0 +170781292098,216,0 +170781292147,214,0 +170781292195,214,0 +170781292243,214,0 +170781292292,215,0 +170781292342,214,0 +170781292389,215,0 +170781292437,215,0 +170781292485,215,0 +170781292533,215,0 +170781292582,215,0 +170781292630,216,0 +170781292678,216,0 +170781292726,216,0 +170781292774,216,0 +170781292821,215,0 +170781292869,215,0 +170781292917,215,0 +170781292965,214,0 +170781293013,215,0 +170781293060,214,0 +170781293108,215,0 +170781293156,215,0 +170781293204,215,0 +170781293252,215,0 +170781293300,215,0 +170781293347,215,0 +170781293395,215,0 +170781293445,216,0 +170781293494,215,0 +170781293544,216,0 +170781293592,216,0 +170781293640,215,0 +170781293689,215,0 +170781293738,214,0 +170781293786,214,0 +170781293834,214,0 +170781293882,214,0 +170781293930,215,0 +170781293979,215,0 +170781294027,215,0 +170781294075,215,0 +170781294123,215,0 +170781294171,215,0 +170781294221,215,0 +170781294268,215,0 +170781294316,216,0 +170781294364,215,0 +170781294412,216,0 +170781294462,215,0 +170781294509,215,0 +170781294559,214,0 +170781294607,214,0 +170781294655,215,0 +170781294702,214,0 +170781294752,215,0 +170781294800,215,0 +170781294849,215,0 +170781294897,215,0 +170781294945,215,0 +170781294993,215,0 +170781295040,215,0 +170781295090,215,0 +170781295138,216,0 +170781295185,215,0 +170781295233,216,0 +170781295281,215,0 +170781295329,215,0 +170781295377,215,0 +170781295425,215,0 +170781295474,215,0 +170781295522,215,0 +170781295570,215,0 +170781295618,216,0 +170781295666,216,0 +170781295715,215,0 +170781295763,215,0 +170781295811,216,0 +170781295859,216,0 +170781295907,216,0 +170781295954,216,0 +170781296002,216,0 +170781296050,216,0 +170781296100,215,0 +170781296148,215,0 +170781296195,215,0 +170781296243,215,0 +170781296291,215,0 +170781296339,215,0 +170781296387,215,0 +170781296437,216,0 +170781296485,216,0 +170781296533,216,0 +170781296581,216,0 +170781296630,216,0 +170781296680,217,0 +170781296729,215,0 +170781296777,216,0 +170781296826,216,0 +170781296874,215,0 +170781296922,215,0 +170781296970,215,0 +170781297017,214,0 +170781297065,215,0 +170781297113,215,0 +170781297161,215,0 +170781297209,215,0 +170781297258,215,0 +170781297306,215,0 +170781297354,215,0 +170781297402,215,0 +170781297450,216,0 +170781297497,216,0 +170781297545,215,0 +170781297593,216,0 +170781297641,215,0 +170781297689,215,0 +170781297737,215,0 +170781297784,214,0 +170781297832,214,0 +170781297880,215,0 +170781297930,214,0 +170781297977,215,0 +170781298025,215,0 +170781298073,215,0 +170781298123,215,0 +170781298171,215,0 +170781298219,215,0 +170781298268,215,0 +170781298316,215,0 +170781298365,215,0 +170781298413,215,0 +170781298463,215,0 +170781298512,215,0 +170781298560,214,0 +170781298608,214,0 +170781298656,214,0 +170781298704,214,0 +170781298752,214,0 +170781298801,214,0 +170781298851,214,0 +170781298899,215,0 +170781298948,215,0 +170781298996,215,0 +170781299044,215,0 +170781299093,215,0 +170781299141,215,0 +170781299189,215,0 +170781299237,215,0 +170781299285,216,0 +170781299332,215,0 +170781299380,214,0 +170781299428,214,0 +170781299476,214,0 +170781299525,214,0 +170781299573,214,0 +170781299621,214,0 +170781299671,215,0 +170781299720,215,0 +170781299768,215,0 +170781299816,215,0 +170781299865,215,0 +170781299913,215,0 +170781299961,215,0 +170781300009,215,0 +170781300058,215,0 +170781300106,215,0 +170781300154,214,0 +170781300202,214,0 +170781300252,214,0 +170781300299,214,0 +170781300347,214,0 +170781300395,214,0 +170781300443,214,0 +170781300491,214,0 +170781300538,215,0 +170781300586,215,0 +170781300634,215,0 +170781300682,215,0 +170781300730,215,0 +170781300778,215,0 +170781300825,215,0 +170781300875,215,0 +170781300924,215,0 +170781300974,214,0 +170781301021,214,0 +170781301069,214,0 +170781301117,214,0 +170781301167,215,0 +170781301216,215,0 +170781301266,215,0 +170781301313,215,0 +170781301361,215,0 +170781301411,215,0 +170781301459,215,0 +170781301507,215,0 +170781301556,215,0 +170781301604,215,0 +170781301652,216,0 +170781301700,215,0 +170781301748,215,0 +170781301795,214,0 +170781301843,214,0 +170781301891,214,0 +170781301939,215,0 +170781301987,215,0 +170781302036,214,0 +170781302084,215,0 +170781302134,215,0 +170781302183,215,0 +170781302231,215,0 +170781302279,216,0 +170781302327,216,0 +170781302376,216,0 +170781302426,215,0 +170781302475,215,0 +170781302523,215,0 +170781302571,214,0 +170781302621,214,0 +170781302669,215,0 +170781302716,215,0 +170781302764,215,0 +170781302812,215,0 +170781302862,215,0 +170781302910,215,0 +170781302959,215,0 +170781303009,215,0 +170781303056,216,0 +170781303104,216,0 +170781303152,216,0 +170781303202,216,0 +170781303250,216,0 +170781303298,216,0 +170781303346,215,0 +170781303393,214,0 +170781303441,214,0 +170781303489,215,0 +170781303539,214,0 +170781303588,214,0 +170781303636,215,0 +170781303685,215,0 +170781303733,215,0 +170781303781,215,0 +170781303829,215,0 +170781303879,215,0 +170781303927,215,0 +170781303975,215,0 +170781304024,215,0 +170781304072,216,0 +170781304120,215,0 +170781304169,214,0 +170781304217,214,0 +170781304267,214,0 +170781304316,214,0 +170781304366,214,0 +170781304415,214,0 +170781304463,214,0 +170781304512,214,0 +170781304562,215,0 +170781304610,215,0 +170781304659,215,0 +170781304709,215,0 +170781304757,215,0 +170781304806,215,0 +170781304854,215,0 +170781304902,215,0 +170781304950,215,0 +170781304999,214,0 +170781305049,214,0 +170781305097,214,0 +170781305145,214,0 +170781305193,214,0 +170781305241,214,0 +170781305290,214,0 +170781305340,215,0 +170781305388,215,0 +170781305437,215,0 +170781305485,215,0 +170781305533,215,0 +170781305581,216,0 +170781305629,215,0 +170781305677,215,0 +170781305726,215,0 +170781305776,214,0 +170781305825,214,0 +170781305873,214,0 +170781305921,214,0 +170781305971,214,0 +170781306020,215,0 +170781306068,215,0 +170781306118,215,0 +170781306167,215,0 +170781306217,215,0 +170781306264,215,0 +170781306312,215,0 +170781306362,215,0 +170781306410,215,0 +170781306458,215,0 +170781306506,215,0 +170781306554,215,0 +170781306603,214,0 +170781306651,215,0 +170781306701,215,0 +170781306749,215,0 +170781306798,215,0 +170781306846,215,0 +170781306894,218,0 +170781306942,216,0 +170781306990,215,0 +170781307039,215,0 +170781307087,215,0 +170781307137,216,0 +170781307186,216,0 +170781307234,215,0 +170781307284,215,0 +170781307333,215,0 +170781307381,215,0 +170781307431,215,0 +170781307480,215,0 +170781307528,215,0 +170781307578,215,0 +170781307625,215,0 +170781307675,215,0 +170781307723,216,0 +170781307772,215,0 +170781307820,216,0 +170781307868,216,0 +170781307917,216,0 +170781307965,216,0 +170781308013,216,0 +170781308061,215,0 +170781308109,215,0 +170781308157,215,0 +170781308205,215,0 +170781308252,215,0 +170781308300,215,0 +170781308348,215,0 +170781308398,216,0 +170781308446,216,0 +170781308494,216,0 +170781308542,216,0 +170781308591,216,0 +170781308640,217,0 +170781308688,216,0 +170781308738,216,0 +170781308787,215,0 +170781308837,215,0 +170781308885,215,0 +170781308934,215,0 +170781308984,214,0 +170781309032,214,0 +170781309081,215,0 +170781309129,214,0 +170781309177,215,0 +170781309226,214,0 +170781309274,215,0 +170781309322,215,0 +170781309370,215,0 +170781309417,215,0 +170781309465,215,0 +170781309513,215,0 +170781309563,215,0 +170781309612,215,0 +170781309662,217,0 +170781309711,215,0 +170781309759,215,0 +170781309807,213,0 +170781309856,214,0 +170781309906,214,0 +170781309955,214,0 +170781310005,214,0 +170781310054,215,0 +170781310104,215,0 +170781310153,215,0 +170781310203,215,0 +170781310252,215,0 +170781310302,215,0 +170781310350,215,0 +170781310399,215,0 +170781310449,215,0 +170781310497,215,0 +170781310545,215,0 +170781310593,214,0 +170781310641,214,0 +170781310689,214,0 +170781310736,215,0 +170781310784,215,0 +170781310832,215,0 +170781310880,215,0 +170781310928,215,0 +170781310976,215,0 +170781311026,215,0 +170781311073,215,0 +170781311123,215,0 +170781311171,215,0 +170781311219,216,0 +170781311268,215,0 +170781311316,215,0 +170781311364,215,0 +170781311414,214,0 +170781311463,215,0 +170781311511,215,0 +170781311559,215,0 +170781311607,215,0 +170781311656,215,0 +170781311704,215,0 +170781311754,215,0 +170781311801,215,0 +170781311849,215,0 +170781311897,215,0 +170781311945,216,0 +170781311993,216,0 +170781312043,215,0 +170781312091,216,0 +170781312139,215,0 +170781312187,214,0 +170781312236,215,0 +170781312284,215,0 +170781312332,215,0 +170781312380,215,0 +170781312428,215,0 +170781312477,215,0 +170781312527,215,0 +170781312576,215,0 +170781312624,215,0 +170781312672,216,0 +170781312719,215,0 +170781312767,215,0 +170781312815,216,0 +170781312863,216,0 +170781312911,215,0 +170781312959,215,0 +170781313006,214,0 +170781313054,215,0 +170781313102,215,0 +170781313150,215,0 +170781313198,215,0 +170781313246,215,0 +170781313296,215,0 +170781313343,215,0 +170781313393,215,0 +170781313441,216,0 +170781313489,216,0 +170781313537,216,0 +170781313586,216,0 +170781313634,215,0 +170781313683,215,0 +170781313731,215,0 +170781313779,214,0 +170781313827,214,0 +170781313877,214,0 +170781313926,214,0 +170781313976,214,0 +170781314024,215,0 +170781314073,214,0 +170781314123,215,0 +170781314172,215,0 +170781314222,215,0 +170781314270,215,0 +170781314318,216,0 +170781314366,216,0 +170781314414,215,0 +170781314461,215,0 +170781314509,216,0 +170781314557,215,0 +170781314605,213,0 +170781314653,213,0 +170781314701,214,0 +170781314750,214,0 +170781314800,214,0 +170781314848,214,0 +170781314896,214,0 +170781314945,214,0 +170781314993,215,0 +170781315041,215,0 +170781315089,215,0 +170781315138,215,0 +170781315188,215,0 +170781315236,216,0 +170781315285,215,0 +170781315333,215,0 +170781315383,215,0 +170781315431,213,0 +170781315478,214,0 +170781315528,214,0 +170781315576,214,0 +170781315624,214,0 +170781315672,214,0 +170781315720,214,0 +170781315769,214,0 +170781315817,215,0 +170781315865,214,0 +170781315915,215,0 +170781315964,215,0 +170781316012,215,0 +170781316062,215,0 +170781316111,215,0 +170781316159,215,0 +170781316207,214,0 +170781316255,214,0 +170781316305,214,0 +170781316352,214,0 +170781316400,214,0 +170781316448,214,0 +170781316496,214,0 +170781316543,215,0 +170781316591,215,0 +170781316639,215,0 +170781316687,215,0 +170781316735,215,0 +170781316783,215,0 +170781316832,215,0 +170781316880,215,0 +170781316928,215,0 +170781316976,215,0 +170781317023,214,0 +170781317071,214,0 +170781317121,214,0 +170781317170,214,0 +170781317218,214,0 +170781317268,214,0 +170781317317,215,0 +170781317365,214,0 +170781317413,215,0 +170781317463,215,0 +170781317512,215,0 +170781317562,215,0 +170781317610,216,0 +170781317657,215,0 +170781317705,215,0 +170781317753,215,0 +170781317801,214,0 +170781317849,214,0 +170781317897,214,0 +170781317946,214,0 +170781317996,214,0 +170781318044,214,0 +170781318093,214,0 +170781318143,215,0 +170781318191,215,0 +170781318239,214,0 +170781318286,215,0 +170781318336,215,0 +170781318384,215,0 +170781318431,215,0 +170781318479,215,0 +170781318529,216,0 +170781318576,215,0 +170781318626,213,0 +170781318675,214,0 +170781318725,214,0 +170781318774,214,0 +170781318822,214,0 +170781318872,214,0 +170781318920,214,0 +170781318968,215,0 +170781319016,214,0 +170781319064,215,0 +170781319113,215,0 +170781319162,215,0 +170781319210,215,0 +170781319258,214,0 +170781319306,214,0 +170781319354,215,0 +170781319403,214,0 +170781319451,213,0 +170781319499,214,0 +170781319548,214,0 +170781319598,214,0 +170781319646,214,0 +170781319694,214,0 +170781319742,214,0 +170781319789,214,0 +170781319837,215,0 +170781319885,215,0 +170781319933,215,0 +170781319981,215,0 +170781320030,215,0 +170781320078,215,0 +170781320126,215,0 +170781320175,215,0 +170781320223,215,0 +170781320271,215,0 +170781320319,215,0 +170781320368,215,0 +170781320416,215,0 +170781320464,215,0 +170781320513,216,0 +170781320561,215,0 +170781320609,215,0 +170781320657,215,0 +170781320705,216,0 +170781320752,216,0 +170781320800,216,0 +170781320848,216,0 +170781320896,216,0 +170781320946,216,0 +170781320993,215,0 +170781321043,216,0 +170781321091,216,0 +170781321139,216,0 +170781321186,216,0 +170781321234,216,0 +170781321282,216,0 +170781321330,216,0 +170781321378,216,0 +170781321426,216,0 +170781321473,216,0 +170781321521,216,0 +170781321569,216,0 +170781321618,216,0 +170781321666,216,0 +170781321716,216,0 +170781321763,216,0 +170781321811,216,0 +170781321859,216,0 +170781321907,215,0 +170781321955,215,0 +170781322003,216,0 +170781322050,216,0 +170781322100,216,0 +170781322148,216,0 +170781322195,216,0 +170781322243,216,0 +170781322293,216,0 +170781322340,216,0 +170781322390,216,0 +170781322438,216,0 +170781322485,215,0 +170781322533,215,0 +170781322581,215,0 +170781322629,215,0 +170781322677,215,0 +170781322725,215,0 +170781322772,216,0 +170781322820,215,0 +170781322868,215,0 +170781322916,216,0 +170781322964,216,0 +170781323012,215,0 +170781323059,216,0 +170781323107,216,0 +170781323155,216,0 +170781323203,216,0 +170781323252,216,0 +170781323300,215,0 +170781323349,215,0 +170781323397,214,0 +170781323445,215,0 +170781323493,215,0 +170781323541,215,0 +170781323589,215,0 +170781323636,215,0 +170781323684,215,0 +170781323732,215,0 +170781323780,215,0 +170781323828,216,0 +170781323877,216,0 +170781323925,216,0 +170781323973,217,0 +170781324020,216,0 +170781324068,215,0 +170781324116,215,0 +170781324165,215,0 +170781324215,215,0 +170781324263,215,0 +170781324311,215,0 +170781324360,215,0 +170781324408,215,0 +170781324457,215,0 +170781324506,215,0 +170781324556,215,0 +170781324604,216,0 +170781324651,215,0 +170781324699,215,0 +170781324747,215,0 +170781324795,216,0 +170781324843,215,0 +170781324891,216,0 +170781324938,215,0 +170781324988,215,0 +170781325036,214,0 +170781325083,214,0 +170781325131,214,0 +170781325179,215,0 +170781325227,215,0 +170781325275,215,0 +170781325323,215,0 +170781325370,215,0 +170781325418,215,0 +170781325466,215,0 +170781325514,215,0 +170781325562,215,0 +170781325610,216,0 +170781325658,216,0 +170781325705,216,0 +170781325755,215,0 +170781325803,214,0 +170781325850,214,0 +170781325898,214,0 +170781325946,214,0 +170781325994,214,0 +170781326042,214,0 +170781326091,214,0 +170781326139,215,0 +170781326187,215,0 +170781326234,215,0 +170781326282,215,0 +170781326330,215,0 +170781326379,215,0 +170781326427,215,0 +170781326475,215,0 +170781326523,215,0 +170781326571,215,0 +170781326618,214,0 +170781326666,213,0 +170781326714,214,0 +170781326763,214,0 +170781326811,214,0 +170781326859,214,0 +170781326907,214,0 +170781326955,214,0 +170781327002,214,0 +170781327050,215,0 +170781327098,216,0 +170781327146,215,0 +170781327194,215,0 +170781327242,215,0 +170781327290,215,0 +170781327337,216,0 +170781327385,215,0 +170781327433,213,0 +170781327481,213,0 +170781327529,214,0 +170781327577,213,0 +170781327625,214,0 +170781327672,214,0 +170781327720,214,0 +170781327768,214,0 +170781327816,214,0 +170781327864,214,0 +170781327913,215,0 +170781327961,215,0 +170781328009,215,0 +170781328057,215,0 +170781328104,215,0 +170781328154,215,0 +170781328203,215,0 +170781328251,213,0 +170781328299,213,0 +170781328348,213,0 +170781328396,214,0 +170781328444,214,0 +170781328491,214,0 +170781328539,214,0 +170781328587,214,0 +170781328635,214,0 +170781328682,215,0 +170781328730,215,0 +170781328778,215,0 +170781328828,215,0 +170781328877,215,0 +170781328925,216,0 +170781328973,215,0 +170781329021,214,0 +170781329069,214,0 +170781329118,213,0 +170781329167,214,0 +170781329215,214,0 +170781329263,214,0 +170781329311,214,0 +170781329361,214,0 +170781329408,214,0 +170781329456,214,0 +170781329506,214,0 +170781329554,214,0 +170781329601,214,0 +170781329651,215,0 +170781329699,215,0 +170781329746,215,0 +170781329794,215,0 +170781329842,213,0 +170781329892,214,0 +170781329940,214,0 +170781329989,214,0 +170781330037,214,0 +170781330086,214,0 +170781330136,214,0 +170781330184,215,0 +170781330232,215,0 +170781330280,215,0 +170781330328,215,0 +170781330376,215,0 +170781330425,215,0 +170781330473,215,0 +170781330521,215,0 +170781330569,215,0 +170781330618,214,0 +170781330666,214,0 +170781330716,214,0 +170781330764,214,0 +170781330813,214,0 +170781330861,214,0 +170781330911,215,0 +170781330959,215,0 +170781331006,215,0 +170781331054,215,0 +170781331104,215,0 +170781331152,215,0 +170781331200,215,0 +170781331249,215,0 +170781331297,215,0 +170781331346,216,0 +170781331396,215,0 +170781331444,214,0 +170781331493,214,0 +170781331541,214,0 +170781331589,216,0 +170781331637,215,0 +170781331685,214,0 +170781331732,215,0 +170781331780,215,0 +170781331828,215,0 +170781331876,215,0 +170781331924,215,0 +170781331972,215,0 +170781332021,216,0 +170781332069,216,0 +170781332117,216,0 +170781332166,215,0 +170781332214,215,0 +170781332264,215,0 +170781332312,215,0 +170781332360,215,0 +170781332407,215,0 +170781332455,216,0 +170781332503,216,0 +170781332551,216,0 +170781332599,216,0 +170781332647,216,0 +170781332696,216,0 +170781332744,216,0 +170781332792,216,0 +170781332842,215,0 +170781332890,217,0 +170781332937,216,0 +170781332987,216,0 +170781333036,215,0 +170781333084,216,0 +170781333132,216,0 +170781333180,216,0 +170781333228,215,0 +170781333276,216,0 +170781333324,216,0 +170781333373,216,0 +170781333421,216,0 +170781333469,216,0 +170781333517,216,0 +170781333565,216,0 +170781333612,216,0 +170781333660,216,0 +170781333708,216,0 +170781333756,215,0 +170781333804,216,0 +170781333852,216,0 +170781333901,215,0 +170781333949,215,0 +170781333999,215,0 +170781334048,216,0 +170781334098,216,0 +170781334146,215,0 +170781334194,216,0 +170781334242,215,0 +170781334289,215,0 +170781334337,216,0 +170781334387,216,0 +170781334435,216,0 +170781334484,215,0 +170781334532,216,0 +170781334580,215,0 +170781334629,214,0 +170781334679,214,0 +170781334728,214,0 +170781334778,215,0 +170781334826,215,0 +170781334874,215,0 +170781334922,215,0 +170781334970,215,0 +170781335019,215,0 +170781335067,215,0 +170781335115,215,0 +170781335164,215,0 +170781335212,215,0 +170781335262,215,0 +170781335311,216,0 +170781335361,215,0 +170781335409,215,0 +170781335458,214,0 +170781335508,214,0 +170781335557,214,0 +170781335605,214,0 +170781335653,215,0 +170781335703,215,0 +170781335752,215,0 +170781335800,215,0 +170781335848,215,0 +170781335897,215,0 +170781335947,215,0 +170781335995,216,0 +170781336043,216,0 +170781336090,215,0 +170781336140,216,0 +170781336188,215,0 +170781336236,214,0 +170781336283,214,0 +170781336331,214,0 +170781336379,214,0 +170781336427,215,0 +170781336475,215,0 +170781336524,214,0 +170781336572,215,0 +170781336620,216,0 +170781336668,215,0 +170781336718,216,0 +170781336767,216,0 +170781336817,215,0 +170781336864,215,0 +170781336912,215,0 +170781336962,215,0 +170781337011,215,0 +170781337061,214,0 +170781337109,214,0 +170781337157,214,0 +170781337205,214,0 +170781337254,214,0 +170781337302,214,0 +170781337351,215,0 +170781337399,215,0 +170781337449,215,0 +170781337497,215,0 +170781337545,215,0 +170781337594,215,0 +170781337642,215,0 +170781337691,215,0 +170781337739,215,0 +170781337787,215,0 +170781337835,214,0 +170781337883,213,0 +170781337931,214,0 +170781337980,214,0 +170781338030,214,0 +170781338079,214,0 +170781338129,214,0 +170781338177,214,0 +170781338224,215,0 +170781338272,215,0 +170781338320,215,0 +170781338370,215,0 +170781338419,215,0 +170781338467,215,0 +170781338515,215,0 +170781338563,215,0 +170781338610,215,0 +170781338658,213,0 +170781338706,213,0 +170781338754,214,0 +170781338802,214,0 +170781338852,214,0 +170781338899,214,0 +170781338947,214,0 +170781338997,214,0 +170781339046,215,0 +170781339096,215,0 +170781339144,215,0 +170781339192,215,0 +170781339241,215,0 +170781339289,215,0 +170781339337,215,0 +170781339386,215,0 +170781339436,214,0 +170781339485,214,0 +170781339533,214,0 +170781339581,214,0 +170781339631,214,0 +170781339680,214,0 +170781339730,214,0 +170781339778,214,0 +170781339826,217,0 +170781339874,215,0 +170781339922,215,0 +170781339969,215,0 +170781340017,216,0 +170781340065,215,0 +170781340113,215,0 +170781340163,215,0 +170781340211,215,0 +170781340260,214,0 +170781340308,213,0 +170781340357,214,0 +170781340407,214,0 +170781340455,214,0 +170781340503,214,0 +170781340553,215,0 +170781340601,215,0 +170781340650,215,0 +170781340698,215,0 +170781340747,215,0 +170781340795,215,0 +170781340845,215,0 +170781340893,215,0 +170781340941,215,0 +170781340989,215,0 +170781341037,214,0 +170781341086,214,0 +170781341136,214,0 +170781341185,214,0 +170781341235,214,0 +170781341282,214,0 +170781341330,214,0 +170781341378,214,0 +170781341426,214,0 +170781341474,215,0 +170781341522,215,0 +170781341570,215,0 +170781341618,215,0 +170781341666,215,0 +170781341715,215,0 +170781341765,216,0 +170781341813,216,0 +170781341862,216,0 +170781341912,216,0 +170781341960,215,0 +170781342008,216,0 +170781342055,216,0 +170781342103,215,0 +170781342153,215,0 +170781342202,215,0 +170781342250,214,0 +170781342298,214,0 +170781342348,214,0 +170781342396,215,0 +170781342443,215,0 +170781342493,215,0 +170781342541,215,0 +170781342589,215,0 +170781342637,215,0 +170781342686,215,0 +170781342734,215,0 +170781342784,215,0 +170781342831,215,0 +170781342881,215,0 +170781342929,215,0 +170781342977,216,0 +170781343026,215,0 +170781343074,214,0 +170781343122,214,0 +170781343171,214,0 +170781343221,214,0 +170781343269,215,0 +170781343316,215,0 +170781343366,215,0 +170781343415,215,0 +170781343463,215,0 +170781343511,215,0 +170781343559,215,0 +170781343607,215,0 +170781343655,216,0 +170781343702,215,0 +170781343750,215,0 +170781343798,215,0 +170781343846,214,0 +170781343894,214,0 +170781343941,214,0 +170781343989,214,0 +170781344037,214,0 +170781344085,215,0 +170781344133,215,0 +170781344181,215,0 +170781344228,215,0 +170781344276,215,0 +170781344324,215,0 +170781344372,215,0 +170781344421,216,0 +170781344469,215,0 +170781344517,215,0 +170781344567,215,0 +170781344616,215,0 +170781344664,215,0 +170781344713,215,0 +170781344761,215,0 +170781344811,215,0 +170781344860,215,0 +170781344908,215,0 +170781344956,215,0 +170781345004,215,0 +170781345052,216,0 +170781345102,216,0 +170781345150,216,0 +170781345198,215,0 +170781345245,216,0 +170781345295,216,0 +170781345343,215,0 +170781345391,215,0 +170781345439,215,0 +170781345488,215,0 +170781345536,216,0 +170781345584,215,0 +170781345632,215,0 +170781345681,216,0 +170781345731,215,0 +170781345779,215,0 +170781345828,215,0 +170781345878,216,0 +170781345927,215,0 +170781345975,215,0 +170781346025,216,0 +170781346073,215,0 +170781346122,215,0 +170781346170,215,0 +170781346219,215,0 +170781346267,215,0 +170781346317,215,0 +170781346365,215,0 +170781346413,215,0 +170781346462,215,0 +170781346510,215,0 +170781346558,215,0 +170781346608,215,0 +170781346657,215,0 +170781346707,216,0 +170781346755,215,0 +170781346802,215,0 +170781346852,215,0 +170781346901,215,0 +170781346949,215,0 +170781346997,215,0 +170781347045,214,0 +170781347095,214,0 +170781347143,214,0 +170781347192,214,0 +170781347240,214,0 +170781347288,215,0 +170781347336,214,0 +170781347386,215,0 +170781347434,215,0 +170781347482,215,0 +170781347531,215,0 +170781347581,215,0 +170781347628,215,0 +170781347676,215,0 +170781347726,215,0 +170781347774,215,0 +170781347822,215,0 +170781347871,214,0 +170781347921,214,0 +170781347970,214,0 +170781348018,214,0 +170781348066,214,0 +170781348114,214,0 +170781348163,214,0 +170781348211,215,0 +170781348259,214,0 +170781348307,215,0 +170781348355,215,0 +170781348404,215,0 +170781348452,215,0 +170781348500,215,0 +170781348548,216,0 +170781348596,215,0 +170781348644,214,0 +170781348693,213,0 +170781348741,214,0 +170781348789,214,0 +170781348837,214,0 +170781348885,214,0 +170781348933,214,0 +170781348982,215,0 +170781349032,215,0 +170781349080,215,0 +170781349128,215,0 +170781349176,215,0 +170781349224,215,0 +170781349273,215,0 +170781349322,215,0 +170781349372,215,0 +170781349421,215,0 +170781349469,214,0 +170781349519,214,0 +170781349567,214,0 +170781349615,214,0 +170781349663,214,0 +170781349711,214,0 +170781349760,214,0 +170781349808,214,0 +170781349856,215,0 +170781349904,215,0 +170781349953,214,0 +170781350001,215,0 +170781350051,215,0 +170781350100,215,0 +170781350150,216,0 +170781350199,215,0 +170781350249,214,0 +170781350298,214,0 +170781350346,214,0 +170781350395,214,0 +170781350443,215,0 +170781350491,214,0 +170781350539,215,0 +170781350587,215,0 +170781350635,215,0 +170781350683,215,0 +170781350731,215,0 +170781350780,215,0 +170781350830,215,0 +170781350878,215,0 +170781350925,215,0 +170781350973,215,0 +170781351023,215,0 +170781351071,214,0 +170781351120,214,0 +170781351168,214,0 +170781351216,215,0 +170781351264,215,0 +170781351312,215,0 +170781351360,215,0 +170781351409,215,0 +170781351457,215,0 +170781351507,215,0 +170781351556,215,0 +170781351606,215,0 +170781351654,215,0 +170781351702,215,0 +170781351751,215,0 +170781351799,215,0 +170781351849,214,0 +170781351898,214,0 +170781351946,214,0 +170781351994,214,0 +170781352042,214,0 +170781352090,215,0 +170781352139,215,0 +170781352187,215,0 +170781352237,215,0 +170781352284,215,0 +170781352332,216,0 +170781352380,215,0 +170781352428,216,0 +170781352476,216,0 +170781352526,216,0 +170781352573,215,0 +170781352623,215,0 +170781352671,215,0 +170781352719,214,0 +170781352767,214,0 +170781352814,214,0 +170781352862,215,0 +170781352910,215,0 +170781352958,215,0 +170781353008,215,0 +170781353056,215,0 +170781353105,215,0 +170781353153,215,0 +170781353201,215,0 +170781353249,215,0 +170781353298,216,0 +170781353348,215,0 +170781353396,216,0 +170781353445,215,0 +170781353493,215,0 +170781353543,214,0 +170781353592,215,0 +170781353640,215,0 +170781353688,215,0 +170781353738,215,0 +170781353786,215,0 +170781353834,215,0 +170781353882,215,0 +170781353930,215,0 +170781353979,215,0 +170781354027,215,0 +170781354075,216,0 +170781354123,215,0 +170781354172,215,0 +170781354220,215,0 +170781354268,214,0 +170781354316,214,0 +170781354364,214,0 +170781354414,214,0 +170781354462,214,0 +170781354510,214,0 +170781354558,215,0 +170781354605,214,0 +170781354655,215,0 +170781354703,215,0 +170781354751,215,0 +170781354800,215,0 +170781354848,216,0 +170781354896,216,0 +170781354944,216,0 +170781354992,216,0 +170781355040,215,0 +170781355088,214,0 +170781355136,214,0 +170781355185,214,0 +170781355233,214,0 +170781355283,215,0 +170781355332,214,0 +170781355382,215,0 +170781355430,215,0 +170781355478,215,0 +170781355526,215,0 +170781355573,215,0 +170781355621,215,0 +170781355669,215,0 +170781355717,215,0 +170781355765,215,0 +170781355813,215,0 +170781355862,214,0 +170781355910,214,0 +170781355958,214,0 +170781356006,214,0 +170781356056,214,0 +170781356105,214,0 +170781356153,214,0 +170781356201,215,0 +170781356249,215,0 +170781356297,215,0 +170781356345,215,0 +170781356393,215,0 +170781356442,215,0 +170781356492,215,0 +170781356540,216,0 +170781356587,215,0 +170781356637,215,0 +170781356685,214,0 +170781356733,215,0 +170781356782,215,0 +170781356832,215,0 +170781356879,215,0 +170781356929,215,0 +170781356977,215,0 +170781357025,215,0 +170781357073,215,0 +170781357122,215,0 +170781357171,215,0 +170781357221,215,0 +170781357269,216,0 +170781357317,215,0 +170781357365,215,0 +170781357414,215,0 +170781357462,215,0 +170781357511,215,0 +170781357559,215,0 +170781357609,215,0 +170781357657,215,0 +170781357706,215,0 +170781357756,215,0 +170781357805,215,0 +170781357853,216,0 +170781357902,215,0 +170781357950,216,0 +170781357998,216,0 +170781358046,215,0 +170781358096,216,0 +170781358143,215,0 +170781358193,215,0 +170781358242,215,0 +170781358290,215,0 +170781358338,214,0 +170781358388,214,0 +170781358436,215,0 +170781358484,215,0 +170781358533,215,0 +170781358581,215,0 +170781358630,215,0 +170781358678,215,0 +170781358728,215,0 +170781358777,215,0 +170781358825,216,0 +170781358875,215,0 +170781358923,215,0 +170781358972,215,0 +170781359020,215,0 +170781359068,214,0 +170781359116,214,0 +170781359164,214,0 +170781359212,214,0 +170781359260,214,0 +170781359308,215,0 +170781359356,215,0 +170781359403,215,0 +170781359451,215,0 +170781359499,215,0 +170781359549,215,0 +170781359597,215,0 +170781359645,215,0 +170781359693,215,0 +170781359740,215,0 +170781359790,215,0 +170781359839,215,0 +170781359889,214,0 +170781359937,214,0 +170781359985,214,0 +170781360034,214,0 +170781360082,214,0 +170781360130,215,0 +170781360178,215,0 +170781360226,215,0 +170781360274,215,0 +170781360323,215,0 +170781360373,216,0 +170781360422,216,0 +170781360470,215,0 +170781360518,215,0 +170781360566,215,0 +170781360615,215,0 +170781360665,215,0 +170781360715,214,0 +170781360764,215,0 +170781360812,214,0 +170781360860,215,0 +170781360908,215,0 +170781360956,215,0 +170781361004,215,0 +170781361052,215,0 +170781361101,215,0 +170781361149,215,0 +170781361197,215,0 +170781361246,215,0 +170781361296,216,0 +170781361344,215,0 +170781361393,215,0 +170781361441,215,0 +170781361491,215,0 +170781361538,214,0 +170781361586,215,0 +170781361636,215,0 +170781361684,215,0 +170781361732,215,0 +170781361780,215,0 +170781361828,215,0 +170781361877,215,0 +170781361925,215,0 +170781361973,215,0 +170781362021,215,0 +170781362070,216,0 +170781362118,215,0 +170781362168,215,0 +170781362216,215,0 +170781362264,215,0 +170781362312,214,0 +170781362359,214,0 +170781362409,214,0 +170781362457,214,0 +170781362505,214,0 +170781362552,215,0 +170781362600,215,0 +170781362648,215,0 +170781362696,215,0 +170781362744,215,0 +170781362794,216,0 +170781362842,215,0 +170781362891,216,0 +170781362939,216,0 +170781362987,215,0 +170781363035,215,0 +170781363083,214,0 +170781363130,214,0 +170781363178,214,0 +170781363226,214,0 +170781363276,214,0 +170781363324,214,0 +170781363372,215,0 +170781363421,214,0 +170781363470,215,0 +170781363518,215,0 +170781363566,215,0 +170781363614,215,0 +170781363662,215,0 +170781363710,215,0 +170781363758,215,0 +170781363806,215,0 +170781363854,215,0 +170781363901,214,0 +170781363949,214,0 +170781363999,214,0 +170781364047,214,0 +170781364094,214,0 +170781364142,215,0 +170781364192,215,0 +170781364241,215,0 +170781364289,215,0 +170781364337,215,0 +170781364384,215,0 +170781364434,215,0 +170781364482,215,0 +170781364531,215,0 +170781364579,215,0 +170781364627,215,0 +170781364675,215,0 +170781364724,213,0 +170781364774,214,0 +170781364822,214,0 +170781364870,214,0 +170781364918,214,0 +170781364966,214,0 +170781365015,214,0 +170781365063,215,0 +170781365111,215,0 +170781365159,215,0 +170781365207,215,0 +170781365255,215,0 +170781365302,215,0 +170781365352,215,0 +170781365401,215,0 +170781365449,215,0 +170781365497,214,0 +170781365545,213,0 +170781365593,214,0 +170781365641,214,0 +170781365689,214,0 +170781365737,214,0 +170781365784,214,0 +170781365834,214,0 +170781365883,215,0 +170781365931,215,0 +170781365979,215,0 +170781366027,215,0 +170781366075,215,0 +170781366124,216,0 +170781366172,215,0 +170781366220,215,0 +170781366268,215,0 +170781366317,213,0 +170781366367,213,0 +170781366416,213,0 +170781366464,213,0 +170781366512,213,0 +170781366560,214,0 +170781366610,214,0 +170781366658,214,0 +170781366707,214,0 +170781366755,214,0 +170781366804,214,0 +170781366852,214,0 +170781366902,215,0 +170781366950,215,0 +170781366999,215,0 +170781367047,215,0 +170781367095,214,0 +170781367145,213,0 +170781367194,214,0 +170781367242,214,0 +170781367292,214,0 +170781367340,214,0 +170781367388,214,0 +170781367437,214,0 +170781367485,214,0 +170781367534,215,0 +170781367582,215,0 +170781367632,215,0 +170781367680,215,0 +170781367728,215,0 +170781367775,215,0 +170781367825,215,0 +170781367873,215,0 +170781367921,213,0 +170781367969,214,0 +170781368018,214,0 +170781368066,214,0 +170781368114,214,0 +170781368162,214,0 +170781368212,214,0 +170781368261,214,0 +170781368309,214,0 +170781368357,215,0 +170781368406,214,0 +170781368454,215,0 +170781368502,215,0 +170781368552,215,0 +170781368600,215,0 +170781368649,216,0 +170781368697,214,0 +170781368745,214,0 +170781368795,214,0 +170781368843,214,0 +170781368892,214,0 +170781368940,214,0 +170781368989,214,0 +170781369037,215,0 +170781369085,215,0 +170781369135,215,0 +170781369184,215,0 +170781369232,215,0 +170781369280,215,0 +170781369328,215,0 +170781369376,215,0 +170781369424,215,0 +170781369472,215,0 +170781369519,215,0 +170781369569,215,0 +170781369618,215,0 +170781369668,215,0 +170781369717,215,0 +170781369767,216,0 +170781369816,215,0 +170781369864,215,0 +170781369912,215,0 +170781369961,216,0 +170781370009,215,0 +170781370057,215,0 +170781370105,216,0 +170781370155,215,0 +170781370204,216,0 +170781370252,216,0 +170781370300,215,0 +170781370348,215,0 +170781370396,215,0 +170781370444,216,0 +170781370492,215,0 +170781370540,216,0 +170781370589,216,0 +170781370637,216,0 +170781370686,216,0 +170781370736,216,0 +170781370785,215,0 +170781370833,216,0 +170781370881,216,0 +170781370931,216,0 +170781370979,216,0 +170781371026,215,0 +170781371074,216,0 +170781371122,215,0 +170781371170,215,0 +170781371220,215,0 +170781371268,215,0 +170781371316,215,0 +170781371364,217,0 +170781371412,215,0 +170781371460,216,0 +170781371507,216,0 +170781371557,215,0 +170781371605,216,0 +170781371654,216,0 +170781371702,215,0 +170781371752,215,0 +170781371800,216,0 +170781371847,215,0 +170781371895,214,0 +170781371943,215,0 +170781371993,215,0 +170781372042,215,0 +170781372090,215,0 +170781372140,215,0 +170781372188,215,0 +170781372237,216,0 +170781372287,215,0 +170781372335,215,0 +170781372382,217,0 +170781372432,216,0 +170781372480,216,0 +170781372529,216,0 +170781372577,216,0 +170781372625,215,0 +170781372673,215,0 +170781372723,214,0 +170781372772,214,0 +170781372820,214,0 +170781372868,215,0 +170781372918,215,0 +170781372966,215,0 +170781373014,215,0 +170781373061,215,0 +170781373111,215,0 +170781373160,215,0 +170781373208,215,0 +170781373256,216,0 +170781373304,216,0 +170781373352,215,0 +170781373400,216,0 +170781373450,215,0 +170781373498,215,0 +170781373547,214,0 +170781373595,214,0 +170781373643,214,0 +170781373693,214,0 +170781373742,214,0 +170781373792,215,0 +170781373840,215,0 +170781373887,215,0 +170781373935,215,0 +170781373983,215,0 +170781374033,215,0 +170781374082,215,0 +170781374132,216,0 +170781374180,215,0 +170781374228,215,0 +170781374276,215,0 +170781374325,214,0 +170781374373,214,0 +170781374423,214,0 +170781374471,214,0 +170781374520,214,0 +170781374570,215,0 +170781374619,215,0 +170781374669,215,0 +170781374718,215,0 +170781374766,215,0 +170781374814,215,0 +170781374864,215,0 +170781374912,215,0 +170781374960,215,0 +170781375008,215,0 +170781375056,215,0 +170781375105,214,0 +170781375154,213,0 +170781375204,214,0 +170781375252,214,0 +170781375300,214,0 +170781375348,214,0 +170781375397,214,0 +170781375447,214,0 +170781375496,215,0 +170781375546,215,0 +170781375594,215,0 +170781375642,215,0 +170781375690,215,0 +170781375739,215,0 +170781375789,215,0 +170781375837,215,0 +170781375886,215,0 +170781375934,214,0 +170781375984,213,0 +170781376031,213,0 +170781376081,214,0 +170781376129,214,0 +170781376177,214,0 +170781376225,214,0 +170781376273,214,0 +170781376320,214,0 +170781376370,215,0 +170781376418,215,0 +170781376467,215,0 +170781376515,215,0 +170781376563,216,0 +170781376611,215,0 +170781376659,215,0 +170781376707,215,0 +170781376756,213,0 +170781376806,214,0 +170781376855,214,0 +170781376903,214,0 +170781376951,214,0 +170781377000,214,0 +170781377048,214,0 +170781377096,215,0 +170781377144,215,0 +170781377194,215,0 +170781377241,215,0 +170781377291,215,0 +170781377339,215,0 +170781377387,215,0 +170781377436,215,0 +170781377484,215,0 +170781377534,214,0 +170781377582,214,0 +170781377630,214,0 +170781377678,214,0 +170781377727,214,0 +170781377775,214,0 +170781377823,214,0 +170781377872,215,0 +170781377920,215,0 +170781377968,215,0 +170781378016,215,0 +170781378064,215,0 +170781378112,215,0 +170781378161,215,0 +170781378211,215,0 +170781378259,215,0 +170781378308,215,0 +170781378356,214,0 +170781378404,214,0 +170781378454,214,0 +170781378502,214,0 +170781378550,214,0 +170781378598,214,0 +170781378647,214,0 +170781378695,215,0 +170781378744,215,0 +170781378792,215,0 +170781378842,215,0 +170781378891,215,0 +170781378941,215,0 +170781378989,215,0 +170781379038,215,0 +170781379086,215,0 +170781379134,214,0 +170781379184,214,0 +170781379233,214,0 +170781379282,214,0 +170781379330,214,0 +170781379380,214,0 +170781379428,215,0 +170781379477,215,0 +170781379525,215,0 +170781379573,215,0 +170781379623,215,0 +170781379671,215,0 +170781379718,215,0 +170781379766,215,0 +170781379814,215,0 +170781379864,215,0 +170781379912,215,0 +170781379960,214,0 +170781380009,214,0 +170781380059,214,0 +170781380107,215,0 +170781380155,214,0 +170781380204,215,0 +170781380254,215,0 +170781380302,215,0 +170781380350,215,0 +170781380397,215,0 +170781380445,216,0 +170781380493,216,0 +170781380543,215,0 +170781380591,216,0 +170781380639,216,0 +170781380687,215,0 +170781380735,214,0 +170781380783,214,0 +170781380831,214,0 +170781380880,215,0 +170781380928,215,0 +170781380976,215,0 +170781381024,215,0 +170781381073,215,0 +170781381123,215,0 +170781381172,215,0 +170781381220,215,0 +170781381270,215,0 +170781381318,216,0 +170781381366,216,0 +170781381414,215,0 +170781381462,216,0 +170781381509,215,0 +170781381557,215,0 +170781381607,215,0 +170781381656,215,0 +170781381704,215,0 +170781381752,215,0 +170781381800,216,0 +170781381848,216,0 +170781381896,215,0 +170781381944,215,0 +170781381993,216,0 +170781382043,215,0 +170781382090,216,0 +170781382138,216,0 +170781382186,216,0 +170781382234,216,0 +170781382282,215,0 +170781382330,215,0 +170781382378,216,0 +170781382425,215,0 +170781382473,215,0 +170781382521,215,0 +170781382570,216,0 +170781382618,215,0 +170781382666,216,0 +170781382714,216,0 +170781382762,215,0 +170781382811,216,0 +170781382859,215,0 +170781382907,215,0 +170781382955,215,0 +170781383003,215,0 +170781383050,215,0 +170781383098,215,0 +170781383148,214,0 +170781383195,214,0 +170781383243,215,0 +170781383291,214,0 +170781383341,214,0 +170781383389,215,0 +170781383438,215,0 +170781383488,215,0 +170781383535,215,0 +170781383583,215,0 +170781383631,215,0 +170781383679,215,0 +170781383727,215,0 +170781383777,215,0 +170781383826,215,0 +170781383874,215,0 +170781383922,215,0 +170781383971,214,0 +170781384021,214,0 +170781384069,214,0 +170781384118,214,0 +170781384168,214,0 +170781384216,214,0 +170781384265,215,0 +170781384313,215,0 +170781384361,215,0 +170781384409,215,0 +170781384457,215,0 +170781384505,215,0 +170781384553,216,0 +170781384602,215,0 +170781384652,215,0 +170781384699,216,0 +170781384749,214,0 +170781384797,214,0 +170781384846,214,0 +170781384894,214,0 +170781384942,214,0 +170781384992,214,0 +170781385039,215,0 +170781385087,215,0 +170781385135,215,0 +170781385183,215,0 +170781385231,215,0 +170781385279,215,0 +170781385326,215,0 +170781385374,215,0 +170781385422,215,0 +170781385470,215,0 +170781385517,215,0 +170781385565,214,0 +170781385613,214,0 +170781385662,214,0 +170781385710,214,0 +170781385758,214,0 +170781385806,215,0 +170781385854,215,0 +170781385903,215,0 +170781385953,215,0 +170781386000,215,0 +170781386050,216,0 +170781386098,215,0 +170781386147,215,0 +170781386195,215,0 +170781386243,215,0 +170781386291,215,0 +170781386339,215,0 +170781386386,214,0 +170781386434,214,0 +170781386482,214,0 +170781386530,215,0 +170781386578,215,0 +170781386626,215,0 +170781386674,215,0 +170781386723,215,0 +170781386771,215,0 +170781386820,215,0 +170781386870,216,0 +170781386918,215,0 +170781386966,216,0 +170781387015,216,0 +170781387063,215,0 +170781387113,215,0 +170781387161,214,0 +170781387210,214,0 +170781387260,214,0 +170781387309,214,0 +170781387357,215,0 +170781387406,215,0 +170781387454,215,0 +170781387504,215,0 +170781387553,215,0 +170781387601,215,0 +170781387651,215,0 +170781387699,214,0 +170781387746,216,0 +170781387796,216,0 +170781387844,215,0 +170781387891,215,0 +170781387939,215,0 +170781387987,214,0 +170781388035,214,0 +170781388083,214,0 +170781388132,214,0 +170781388180,214,0 +170781388228,215,0 +170781388276,215,0 +170781388323,215,0 +170781388371,215,0 +170781388419,215,0 +170781388468,215,0 +170781388516,215,0 +170781388564,215,0 +170781388612,215,0 +170781388661,215,0 +170781388709,215,0 +170781388757,215,0 +170781388807,214,0 +170781388855,214,0 +170781388903,214,0 +170781388951,215,0 +170781388999,214,0 +170781389047,215,0 +170781389094,215,0 +170781389142,215,0 +170781389192,215,0 +170781389240,215,0 +170781389289,215,0 +170781389337,216,0 +170781389385,215,0 +170781389433,215,0 +170781389481,215,0 +170781389529,215,0 +170781389578,214,0 +170781389626,214,0 +170781389674,214,0 +170781389724,214,0 +170781389772,214,0 +170781389821,214,0 +170781389871,214,0 +170781389918,215,0 +170781389966,215,0 +170781390014,215,0 +170781390062,215,0 +170781390112,215,0 +170781390159,215,0 +170781390207,215,0 +170781390255,216,0 +170781390305,215,0 +170781390354,215,0 +170781390402,214,0 +170781390450,214,0 +170781390498,214,0 +170781390546,214,0 +170781390595,214,0 +170781390643,215,0 +170781390693,215,0 +170781390741,215,0 +170781390788,215,0 +170781390836,215,0 +170781390884,215,0 +170781390934,215,0 +170781390982,215,0 +170781391030,215,0 +170781391079,215,0 +170781391129,215,0 +170781391176,214,0 +170781391224,214,0 +170781391272,214,0 +170781391320,214,0 +170781391368,214,0 +170781391416,214,0 +170781391464,214,0 +170781391511,214,0 +170781391559,215,0 +170781391609,215,0 +170781391656,215,0 +170781391706,215,0 +170781391754,215,0 +170781391802,215,0 +170781391849,215,0 +170781391899,215,0 +170781391947,215,0 +170781391995,214,0 +170781392042,214,0 +170781392092,214,0 +170781392141,214,0 +170781392189,214,0 +170781392239,214,0 +170781392286,214,0 +170781392336,214,0 +170781392383,215,0 +170781392431,215,0 +170781392479,215,0 +170781392529,215,0 +170781392576,215,0 +170781392624,215,0 +170781392672,215,0 +170781392720,215,0 +170781392768,214,0 +170781392817,214,0 +170781392865,214,0 +170781392913,214,0 +170781392961,214,0 +170781393009,214,0 +170781393058,214,0 +170781393106,215,0 +170781393154,215,0 +170781393202,215,0 +170781393250,215,0 +170781393298,215,0 +170781393347,215,0 +170781393395,215,0 +170781393443,215,0 +170781393493,215,0 +170781393541,215,0 +170781393589,214,0 +170781393638,215,0 +170781393686,214,0 +170781393734,214,0 +170781393784,215,0 +170781393832,215,0 +170781393880,215,0 +170781393929,215,0 +170781393977,215,0 +170781394025,215,0 +170781394073,215,0 +170781394123,215,0 +170781394172,215,0 +170781394220,215,0 +170781394268,215,0 +170781394316,215,0 +170781394363,215,0 +170781394411,215,0 +170781394459,215,0 +170781394507,215,0 +170781394556,215,0 +170781394604,215,0 +170781394652,215,0 +170781394700,215,0 +170781394748,215,0 +170781394795,216,0 +170781394843,215,0 +170781394891,215,0 +170781394939,215,0 +170781394986,215,0 +170781395036,215,0 +170781395084,215,0 +170781395133,215,0 +170781395181,215,0 +170781395229,215,0 +170781395277,215,0 +170781395325,215,0 +170781395375,215,0 +170781395422,215,0 +170781395472,215,0 +170781395520,215,0 +170781395568,215,0 +170781395616,215,0 +170781395665,215,0 +170781395713,215,0 +170781395763,215,0 +170781395811,215,0 +170781395859,215,0 +170781395908,215,0 +170781395958,215,0 +170781396006,214,0 +170781396055,214,0 +170781396103,214,0 +170781396151,214,0 +170781396199,214,0 +170781396247,214,0 +170781396295,214,0 +170781396343,215,0 +170781396391,215,0 +170781396439,215,0 +170781396486,215,0 +170781396534,215,0 +170781396582,215,0 +170781396632,215,0 +170781396679,215,0 +170781396729,215,0 +170781396776,215,0 +170781396824,214,0 +170781396872,214,0 +170781396920,214,0 +170781396968,214,0 +170781397015,214,0 +170781397063,214,0 +170781397111,214,0 +170781397159,215,0 +170781397207,215,0 +170781397255,215,0 +170781397303,215,0 +170781397350,215,0 +170781397398,215,0 +170781397446,215,0 +170781397494,215,0 +170781397543,215,0 +170781397591,215,0 +170781397639,214,0 +170781397687,214,0 +170781397735,214,0 +170781397782,214,0 +170781397830,214,0 +170781397879,214,0 +170781397927,215,0 +170781397975,214,0 +170781398023,215,0 +170781398071,214,0 +170781398119,215,0 +170781398166,215,0 +170781398214,215,0 +170781398262,215,0 +170781398310,215,0 +170781398358,215,0 +170781398406,214,0 +170781398454,214,0 +170781398501,214,0 +170781398549,214,0 +170781398597,214,0 +170781398645,214,0 +170781398693,215,0 +170781398741,214,0 +170781398789,215,0 +170781398836,215,0 +170781398884,215,0 +170781398932,215,0 +170781398980,215,0 +170781399028,215,0 +170781399075,215,0 +170781399123,215,0 +170781399171,215,0 +170781399219,214,0 +170781399266,214,0 +170781399316,214,0 +170781399364,214,0 +170781399411,214,0 +170781399459,214,0 +170781399507,214,0 +170781399555,214,0 +170781399603,215,0 +170781399652,215,0 +170781399700,215,0 +170781399749,215,0 +170781399797,215,0 +170781399845,215,0 +170781399894,215,0 +170781399942,215,0 +170781399990,215,0 +170781400040,213,0 +170781400088,214,0 +170781400137,214,0 +170781400185,214,0 +170781400233,214,0 +170781400281,214,0 +170781400329,214,0 +170781400378,214,0 +170781400426,215,0 +170781400474,215,0 +170781400522,215,0 +170781400570,215,0 +170781400617,215,0 +170781400665,215,0 +170781400713,215,0 +170781400763,215,0 +170781400812,214,0 +170781400860,214,0 +170781400908,214,0 +170781400956,214,0 +170781401004,214,0 +170781401053,214,0 +170781401103,215,0 +170781401151,214,0 +170781401198,214,0 +170781401246,214,0 +170781401294,215,0 +170781401344,215,0 +170781401393,215,0 +170781401443,215,0 +170781401490,215,0 +170781401538,215,0 +170781401588,215,0 +170781401637,214,0 +170781401685,214,0 +170781401733,214,0 +170781401781,214,0 +170781401829,214,0 +170781401877,214,0 +170781401926,214,0 +170781401976,214,0 +170781402025,215,0 +170781402073,215,0 +170781402123,215,0 +170781402172,215,0 +170781402222,215,0 +170781402270,215,0 +170781402318,215,0 +170781402366,215,0 +170781402415,214,0 +170781402463,214,0 +170781402511,214,0 +170781402559,214,0 +170781402607,214,0 +170781402656,214,0 +170781402704,214,0 +170781402754,214,0 +170781402803,214,0 +170781402853,215,0 +170781402901,215,0 +170781402949,215,0 +170781402996,215,0 +170781403044,215,0 +170781403092,215,0 +170781403142,215,0 +170781403190,215,0 +170781403239,214,0 +170781403287,214,0 +170781403335,214,0 +170781403384,214,0 +170781403434,214,0 +170781403482,214,0 +170781403531,215,0 +170781403581,215,0 +170781403630,215,0 +170781403678,215,0 +170781403726,215,0 +170781403775,215,0 +170781403823,215,0 +170781403871,215,0 +170781403921,215,0 +170781403969,215,0 +170781404016,214,0 +170781404066,214,0 +170781404115,214,0 +170781404163,214,0 +170781404211,214,0 +170781404261,214,0 +170781404308,214,0 +170781404356,214,0 +170781404406,215,0 +170781404455,215,0 +170781404503,215,0 +170781404551,215,0 +170781404599,215,0 +170781404648,215,0 +170781404696,215,0 +170781404744,215,0 +170781404792,215,0 +170781404841,214,0 +170781404891,214,0 +170781404939,214,0 +170781404988,214,0 +170781405038,214,0 +170781405086,214,0 +170781405134,214,0 +170781405181,214,0 +170781405229,215,0 +170781405277,215,0 +170781405325,215,0 +170781405375,215,0 +170781405423,215,0 +170781405472,215,0 +170781405521,215,0 +170781405571,215,0 +170781405619,214,0 +170781405667,214,0 +170781405715,214,0 +170781405763,214,0 +170781405810,214,0 +170781405860,214,0 +170781405908,214,0 +170781405957,214,0 +170781406007,215,0 +170781406055,215,0 +170781406104,215,0 +170781406152,215,0 +170781406200,215,0 +170781406248,215,0 +170781406296,215,0 +170781406344,215,0 +170781406391,215,0 +170781406439,215,0 +170781406489,214,0 +170781406538,215,0 +170781406586,215,0 +170781406636,215,0 +170781406684,215,0 +170781406733,215,0 +170781406781,215,0 +170781406831,215,0 +170781406879,215,0 +170781406927,215,0 +170781406975,215,0 +170781407023,215,0 +170781407071,215,0 +170781407120,215,0 +170781407168,215,0 +170781407216,215,0 +170781407264,214,0 +170781407314,215,0 +170781407361,215,0 +170781407409,215,0 +170781407457,215,0 +170781407505,215,0 +170781407553,215,0 +170781407601,215,0 +170781407651,215,0 +170781407698,215,0 +170781407746,215,0 +170781407796,215,0 +170781407844,215,0 +170781407892,215,0 +170781407940,215,0 +170781407988,214,0 +170781408035,214,0 +170781408083,214,0 +170781408133,215,0 +170781408182,214,0 +170781408230,214,0 +170781408280,215,0 +170781408328,215,0 +170781408376,215,0 +170781408424,215,0 +170781408473,215,0 +170781408521,215,0 +170781408569,215,0 +170781408618,215,0 +170781408668,215,0 +170781408717,215,0 +170781408767,215,0 +170781408815,215,0 +170781408863,214,0 +170781408911,214,0 +170781408960,214,0 +170781409008,214,0 +170781409057,214,0 +170781409105,214,0 +170781409155,215,0 +170781409203,215,0 +170781409252,215,0 +170781409302,215,0 +170781409350,215,0 +170781409397,215,0 +170781409447,215,0 +170781409496,215,0 +170781409544,215,0 +170781409592,215,0 +170781409640,214,0 +170781409689,215,0 +170781409737,214,0 +170781409785,214,0 +170781409833,214,0 +170781409883,214,0 +170781409930,215,0 +170781409978,215,0 +170781410028,215,0 +170781410076,215,0 +170781410125,215,0 +170781410173,215,0 +170781410221,215,0 +170781410269,215,0 +170781410319,215,0 +170781410368,215,0 +170781410416,215,0 +170781410466,214,0 +170781410513,214,0 +170781410563,214,0 +170781410611,214,0 +170781410660,214,0 +170781410710,215,0 +170781410759,215,0 +170781410807,215,0 +170781410855,215,0 +170781410904,215,0 +170781410954,215,0 +170781411002,215,0 +170781411051,215,0 +170781411101,215,0 +170781411151,215,0 +170781411198,215,0 +170781411246,214,0 +170781411294,214,0 +170781411344,214,0 +170781411392,214,0 +170781411440,214,0 +170781411488,214,0 +170781411537,214,0 +170781411585,215,0 +170781411633,215,0 +170781411682,215,0 +170781411732,215,0 +170781411780,215,0 +170781411828,215,0 +170781411877,215,0 +170781411925,215,0 +170781411975,215,0 +170781412024,215,0 +170781412072,214,0 +170781412122,214,0 +170781412171,214,0 +170781412219,214,0 +170781412267,214,0 +170781412316,214,0 +170781412364,214,0 +170781412412,215,0 +170781412460,215,0 +170781412508,215,0 +170781412556,215,0 +170781412604,215,0 +170781412652,215,0 +170781412702,215,0 +170781412751,215,0 +170781412801,215,0 +170781412849,214,0 +170781412897,213,0 +170781412945,214,0 +170781412992,214,0 +170781413040,214,0 +170781413088,214,0 +170781413136,214,0 +170781413184,214,0 +170781413234,215,0 +170781413281,215,0 +170781413331,215,0 +170781413381,215,0 +170781413428,215,0 +170781413478,215,0 +170781413526,215,0 +170781413574,215,0 +170781413622,215,0 +170781413671,214,0 +170781413719,214,0 +170781413767,214,0 +170781413815,214,0 +170781413863,214,0 +170781413911,214,0 +170781413959,214,0 +170781414007,214,0 +170781414055,215,0 +170781414103,214,0 +170781414151,214,0 +170781414199,215,0 +170781414246,215,0 +170781414294,215,0 +170781414342,215,0 +170781414390,215,0 +170781414438,214,0 +170781414486,214,0 +170781414534,214,0 +170781414581,214,0 +170781414629,214,0 +170781414677,214,0 +170781414725,214,0 +170781414773,214,0 +170781414821,215,0 +170781414870,214,0 +170781414920,215,0 +170781414967,215,0 +170781415017,215,0 +170781415065,215,0 +170781415113,215,0 +170781415161,215,0 +170781415208,215,0 +170781415256,213,0 +170781415306,213,0 +170781415354,214,0 +170781415402,214,0 +170781415449,214,0 +170781415497,214,0 +170781415545,214,0 +170781415593,214,0 +170781415641,214,0 +170781415689,215,0 +170781415737,215,0 +170781415785,215,0 +170781415835,215,0 +170781415884,215,0 +170781415932,215,0 +170781415980,215,0 +170781416029,215,0 +170781416079,214,0 +170781416128,213,0 +170781416176,214,0 +170781416224,214,0 +170781416272,214,0 +170781416322,214,0 +170781416371,214,0 +170781416419,215,0 +170781416467,214,0 +170781416517,215,0 +170781416564,215,0 +170781416612,215,0 +170781416660,214,0 +170781416710,215,0 +170781416758,215,0 +170781416806,215,0 +170781416853,214,0 +170781416903,214,0 +170781416951,214,0 +170781416999,214,0 +170781417048,214,0 +170781417098,214,0 +170781417147,214,0 +170781417195,214,0 +170781417245,214,0 +170781417293,214,0 +170781417341,215,0 +170781417390,215,0 +170781417438,214,0 +170781417488,215,0 +170781417537,215,0 +170781417585,215,0 +170781417633,214,0 +170781417681,213,0 +170781417731,213,0 +170781417779,214,0 +170781417826,214,0 +170781417874,214,0 +170781417922,214,0 +170781417972,214,0 +170781418020,214,0 +170781418069,214,0 +170781418117,214,0 +170781418165,215,0 +170781418213,215,0 +170781418262,215,0 +170781418310,215,0 +170781418358,215,0 +170781418408,215,0 +170781418456,215,0 +170781418504,215,0 +170781418552,215,0 +170781418601,214,0 +170781418651,215,0 +170781418699,215,0 +170781418748,215,0 +170781418798,215,0 +170781418846,215,0 +170781418894,215,0 +170781418942,215,0 +170781418990,215,0 +170781419038,215,0 +170781419085,215,0 +170781419133,215,0 +170781419181,215,0 +170781419229,215,0 +170781419278,215,0 +170781419328,215,0 +170781419376,215,0 +170781419425,215,0 +170781419473,215,0 +170781419521,215,0 +170781419569,215,0 +170781419619,215,0 +170781419667,215,0 +170781419716,215,0 +170781419765,215,0 +170781419815,215,0 +170781419863,215,0 +170781419911,215,0 +170781419960,215,0 +170781420008,215,0 +170781420058,215,0 +170781420106,215,0 +170781420155,215,0 +170781420205,216,0 +170781420254,215,0 +170781420302,215,0 +170781420352,215,0 +170781420400,215,0 +170781420448,215,0 +170781420497,215,0 +170781420545,215,0 +170781420593,215,0 +170781420641,215,0 +170781420689,215,0 +170781420737,215,0 +170781420785,215,0 +170781420834,215,0 +170781420882,215,0 +170781420931,215,0 +170781420979,214,0 +170781421029,214,0 +170781421077,215,0 +170781421126,214,0 +170781421174,215,0 +170781421222,215,0 +170781421270,215,0 +170781421318,215,0 +170781421366,215,0 +170781421415,215,0 +170781421465,215,0 +170781421513,215,0 +170781421561,215,0 +170781421610,215,0 +170781421660,215,0 +170781421709,214,0 +170781421757,214,0 +170781421805,214,0 +170781421853,214,0 +170781421903,214,0 +170781421952,215,0 +170781422000,214,0 +170781422050,215,0 +170781422098,215,0 +170781422147,215,0 +170781422195,215,0 +170781422244,215,0 +170781422292,215,0 +170781422342,215,0 +170781422390,215,0 +170781422439,214,0 +170781422487,214,0 +170781422537,214,0 +170781422584,214,0 +170781422632,214,0 +170781422680,214,0 +170781422730,214,0 +170781422778,214,0 +170781422826,214,0 +170781422874,214,0 +170781422923,215,0 +170781422973,215,0 +170781423021,215,0 +170781423070,215,0 +170781423118,215,0 +170781423168,215,0 +170781423215,215,0 +170781423263,215,0 +170781423313,214,0 +170781423361,214,0 +170781423409,214,0 +170781423457,214,0 +170781423505,214,0 +170781423552,214,0 +170781423602,214,0 +170781423650,214,0 +170781423698,214,0 +170781423746,215,0 +170781423794,215,0 +170781423843,215,0 +170781423891,215,0 +170781423939,215,0 +170781423988,215,0 +170781424036,215,0 +170781424084,214,0 +170781424133,213,0 +170781424183,214,0 +170781424231,214,0 +170781424279,214,0 +170781424327,214,0 +170781424376,214,0 +170781424424,214,0 +170781424472,215,0 +170781424520,214,0 +170781424568,214,0 +170781424616,215,0 +170781424664,215,0 +170781424711,215,0 +170781424759,215,0 +170781424807,215,0 +170781424855,215,0 +170781424903,213,0 +170781424953,214,0 +170781425001,214,0 +170781425048,214,0 +170781425096,214,0 +170781425146,214,0 +170781425195,214,0 +170781425243,214,0 +170781425293,214,0 +170781425341,214,0 +170781425389,214,0 +170781425438,215,0 +170781425487,215,0 +170781425535,215,0 +170781425585,215,0 +170781425633,215,0 +170781425681,214,0 +170781425729,214,0 +170781425777,214,0 +170781425826,214,0 +170781425874,214,0 +170781425922,214,0 +170781425971,214,0 +170781426021,214,0 +170781426069,214,0 +170781426118,214,0 +170781426166,214,0 +170781426214,215,0 +170781426262,215,0 +170781426311,215,0 +170781426359,215,0 +170781426407,215,0 +170781426457,215,0 +170781426506,214,0 +170781426556,213,0 +170781426605,213,0 +170781426655,214,0 +170781426704,214,0 +170781426752,214,0 +170781426800,214,0 +170781426848,214,0 +170781426897,214,0 +170781426945,214,0 +170781426993,214,0 +170781427041,215,0 +170781427089,214,0 +170781427137,215,0 +170781427184,215,0 +170781427232,215,0 +170781427280,215,0 +170781427328,215,0 +170781427376,215,0 +170781427424,214,0 +170781427473,214,0 +170781427521,214,0 +170781427569,214,0 +170781427617,214,0 +170781427667,214,0 +170781427716,214,0 +170781427764,214,0 +170781427812,214,0 +170781427861,214,0 +170781427909,214,0 +170781427959,214,0 +170781428007,215,0 +170781428055,215,0 +170781428104,215,0 +170781428154,215,0 +170781428202,215,0 +170781428250,215,0 +170781428299,215,0 +170781428349,214,0 +170781428398,213,0 +170781428446,214,0 +170781428495,214,0 +170781428543,214,0 +170781428591,214,0 +170781428639,214,0 +170781428689,214,0 +170781428737,215,0 +170781428784,214,0 +170781428832,214,0 +170781428880,215,0 +170781428930,215,0 +170781428979,215,0 +170781429027,215,0 +170781429075,215,0 +170781429123,215,0 +170781429172,215,0 +170781429220,215,0 +170781429268,214,0 +170781429318,214,0 +170781429367,214,0 +170781429417,214,0 +170781429465,214,0 +170781429512,214,0 +170781429560,214,0 +170781429608,214,0 +170781429656,214,0 +170781429706,214,0 +170781429753,215,0 +170781429801,214,0 +170781429849,214,0 +170781429899,214,0 +170781429946,214,0 +170781429996,215,0 +170781430045,215,0 +170781430095,214,0 +170781430143,215,0 +170781430191,214,0 +170781430239,214,0 +170781430287,213,0 +170781430335,214,0 +170781430384,214,0 +170781430432,214,0 +170781430480,214,0 +170781430528,214,0 +170781430576,214,0 +170781430623,214,0 +170781430671,214,0 +170781430719,215,0 +170781430767,215,0 +170781430817,215,0 +170781430865,215,0 +170781430913,215,0 +170781430961,215,0 +170781431008,215,0 +170781431056,215,0 +170781431104,215,0 +170781431154,214,0 +170781431203,214,0 +170781431251,214,0 +170781431301,214,0 +170781431349,214,0 +170781431397,215,0 +170781431444,214,0 +170781431494,215,0 +170781431543,215,0 +170781431593,215,0 +170781431642,215,0 +170781431692,215,0 +170781431740,215,0 +170781431789,215,0 +170781431839,215,0 +170781431887,215,0 +170781431935,215,0 +170781431983,215,0 +170781432030,215,0 +170781432080,215,0 +170781432129,215,0 +170781432179,215,0 +170781432227,215,0 +170781432276,215,0 +170781432326,215,0 +170781432374,215,0 +170781432422,215,0 +170781432470,215,0 +170781432518,215,0 +170781432566,215,0 +170781432615,215,0 +170781432665,215,0 +170781432713,215,0 +170781432761,215,0 +170781432808,215,0 +170781432856,215,0 +170781432906,215,0 +170781432954,215,0 +170781433002,215,0 +170781433051,214,0 +170781433101,214,0 +170781433149,214,0 +170781433198,214,0 +170781433246,214,0 +170781433294,214,0 +170781433344,214,0 +170781433391,215,0 +170781433441,215,0 +170781433489,215,0 +170781433537,215,0 +170781433586,215,0 +170781433634,215,0 +170781433682,215,0 +170781433730,215,0 +170781433778,215,0 +170781433827,215,0 +170781433875,215,0 +170781433924,214,0 +170781433972,214,0 +170781434020,214,0 +170781434068,215,0 +170781434115,214,0 +170781434163,214,0 +170781434211,214,0 +170781434259,214,0 +170781434307,214,0 +170781434355,214,0 +170781434402,214,0 +170781434450,214,0 +170781434498,215,0 +170781434546,215,0 +170781434594,215,0 +170781434642,215,0 +170781434691,215,0 +170781434739,215,0 +170781434789,215,0 +170781434836,215,0 +170781434884,214,0 +170781434932,213,0 +170781434980,214,0 +170781435030,214,0 +170781435078,213,0 +170781435127,214,0 +170781435175,214,0 +170781435223,214,0 +170781435271,214,0 +170781435320,214,0 +170781435368,214,0 +170781435418,214,0 +170781435466,215,0 +170781435514,215,0 +170781435561,215,0 +170781435609,215,0 +170781435657,215,0 +170781435707,215,0 +170781435755,215,0 +170781435803,215,0 +170781435852,214,0 +170781435900,214,0 +170781435948,214,0 +170781435997,214,0 +170781436047,214,0 +170781436095,214,0 +170781436142,214,0 +170781436190,214,0 +170781436238,214,0 +170781436286,214,0 +170781436336,215,0 +170781436385,215,0 +170781436433,214,0 +170781436482,215,0 +170781436530,215,0 +170781436580,215,0 +170781436628,215,0 +170781436676,215,0 +170781436724,215,0 +170781436773,214,0 +170781436821,214,0 +170781436869,214,0 +170781436916,214,0 +170781436964,214,0 +170781437012,214,0 +170781437060,214,0 +170781437110,214,0 +170781437159,214,0 +170781437207,215,0 +170781437255,215,0 +170781437303,214,0 +170781437351,215,0 +170781437400,215,0 +170781437448,215,0 +170781437497,215,0 +170781437545,215,0 +170781437595,215,0 +170781437643,215,0 +170781437691,213,0 +170781437740,213,0 +170781437788,214,0 +170781437836,214,0 +170781437883,214,0 +170781437933,214,0 +170781437981,214,0 +170781438029,214,0 +170781438076,214,0 +170781438126,214,0 +170781438173,215,0 +170781438221,215,0 +170781438269,215,0 +170781438317,214,0 +170781438366,215,0 +170781438416,215,0 +170781438465,215,0 +170781438513,215,0 +170781438561,215,0 +170781438611,214,0 +170781438658,213,0 +170781438708,214,0 +170781438756,214,0 +170781438804,214,0 +170781438851,214,0 +170781438899,214,0 +170781438947,214,0 +170781438995,214,0 +170781439043,214,0 +170781439091,214,0 +170781439138,215,0 +170781439186,215,0 +170781439236,215,0 +170781439284,215,0 +170781439331,215,0 +170781439379,215,0 +170781439427,215,0 +170781439475,215,0 +170781439523,214,0 +170781439571,213,0 +170781439620,214,0 +170781439668,213,0 +170781439717,214,0 +170781439767,214,0 +170781439815,214,0 +170781439863,214,0 +170781439911,214,0 +170781439959,214,0 +170781440008,214,0 +170781440056,214,0 +170781440104,215,0 +170781440152,214,0 +170781440201,215,0 +170781440249,215,0 +170781440297,215,0 +170781440345,215,0 +170781440393,215,0 +170781440441,214,0 +170781440489,213,0 +170781440538,214,0 +170781440588,214,0 +170781440636,214,0 +170781440684,214,0 +170781440733,214,0 +170781440781,214,0 +170781440830,214,0 +170781440878,214,0 +170781440926,214,0 +170781440974,215,0 +170781441022,215,0 +170781441070,215,0 +170781441119,215,0 +170781441167,215,0 +170781441215,215,0 +170781441263,215,0 +170781441313,215,0 +170781441360,215,0 +170781441408,214,0 +170781441456,214,0 +170781441504,214,0 +170781441554,214,0 +170781441603,214,0 +170781441651,214,0 +170781441699,214,0 +170781441747,214,0 +170781441794,214,0 +170781441842,214,0 +170781441890,215,0 +170781441938,215,0 +170781441986,215,0 +170781442034,215,0 +170781442082,215,0 +170781442130,215,0 +170781442177,215,0 +170781442225,215,0 +170781442273,215,0 +170781442322,214,0 +170781442370,214,0 +170781442418,214,0 +170781442466,214,0 +170781442514,214,0 +170781442561,214,0 +170781442609,215,0 +170781442657,215,0 +170781442705,215,0 +170781442754,215,0 +170781442802,215,0 +170781442850,215,0 +170781442899,215,0 +170781442947,215,0 +170781442995,215,0 +170781443043,215,0 +170781443091,215,0 +170781443140,215,0 +170781443188,215,0 +170781443236,214,0 +170781443284,214,0 +170781443332,214,0 +170781443380,214,0 +170781443428,214,0 +170781443475,214,0 +170781443523,214,0 +170781443571,214,0 +170781443619,214,0 +170781443667,214,0 +170781443715,214,0 +170781443763,215,0 +170781443812,215,0 +170781443860,215,0 +170781443910,215,0 +170781443958,215,0 +170781444005,215,0 +170781444053,215,0 +170781444101,215,0 +170781444149,214,0 +170781444197,213,0 +170781444244,213,0 +170781444294,213,0 +170781444342,213,0 +170781444391,214,0 +170781444439,214,0 +170781444489,214,0 +170781444537,214,0 +170781444586,214,0 +170781444636,214,0 +170781444683,214,0 +170781444731,215,0 +170781444779,215,0 +170781444827,215,0 +170781444875,215,0 +170781444923,215,0 +170781444972,215,0 +170781445020,215,0 +170781445068,215,0 +170781445116,213,0 +170781445163,213,0 +170781445211,213,0 +170781445259,213,0 +170781445307,214,0 +170781445355,213,0 +170781445403,213,0 +170781445452,214,0 +170781445502,214,0 +170781445550,214,0 +170781445598,214,0 +170781445645,214,0 +170781445695,214,0 +170781445743,214,0 +170781445791,214,0 +170781445838,214,0 +170781445886,215,0 +170781445934,214,0 +170781445982,215,0 +170781446030,214,0 +170781446078,213,0 +170781446126,213,0 +170781446175,213,0 +170781446223,213,0 +170781446271,214,0 +170781446318,214,0 +170781446366,214,0 +170781446414,214,0 +170781446462,214,0 +170781446510,214,0 +170781446558,214,0 +170781446606,215,0 +170781446653,215,0 +170781446701,215,0 +170781446749,215,0 +170781446797,215,0 +170781446845,215,0 +170781446893,215,0 +170781446941,215,0 +170781446990,213,0 +170781447038,213,0 +170781447086,213,0 +170781447134,213,0 +170781447182,214,0 +170781447231,214,0 +170781447281,214,0 +170781447329,214,0 +170781447378,214,0 +170781447428,214,0 +170781447476,214,0 +170781447525,214,0 +170781447573,214,0 +170781447623,215,0 +170781447670,215,0 +170781447718,215,0 +170781447766,215,0 +170781447814,215,0 +170781447864,215,0 +170781447912,213,0 +170781447960,213,0 +170781448009,213,0 +170781448057,213,0 +170781448105,213,0 +170781448153,213,0 +170781448202,213,0 +170781448250,213,0 +170781448298,213,0 +170781448348,214,0 +170781448397,214,0 +170781448445,214,0 +170781448493,214,0 +170781448541,214,0 +170781448591,214,0 +170781448640,215,0 +170781448690,214,0 +170781448737,215,0 +170781448785,215,0 +170781448833,213,0 +170781448881,213,0 +170781448929,213,0 +170781448979,213,0 +170781449027,213,0 +170781449076,213,0 +170781449124,213,0 +170781449174,214,0 +170781449221,214,0 +170781449271,214,0 +170781449319,214,0 +170781449367,214,0 +170781449416,214,0 +170781449464,214,0 +170781449513,214,0 +170781449561,214,0 +170781449609,215,0 +170781449657,215,0 +170781449705,215,0 +170781449753,214,0 +170781449801,213,0 +170781449850,213,0 +170781449898,213,0 +170781449946,213,0 +170781449994,213,0 +170781450042,213,0 +170781450092,214,0 +170781450140,214,0 +170781450189,214,0 +170781450239,214,0 +170781450286,214,0 +170781450334,214,0 +170781450382,214,0 +170781450430,214,0 +170781450480,214,0 +170781450528,215,0 +170781450577,215,0 +170781450625,215,0 +170781450674,213,0 +170781450722,213,0 +170781450772,213,0 +170781450821,213,0 +170781450869,213,0 +170781450919,214,0 +170781450968,214,0 +170781451018,214,0 +170781451066,214,0 +170781451114,214,0 +170781451163,214,0 +170781451211,214,0 +170781451259,214,0 +170781451307,214,0 +170781451357,215,0 +170781451405,215,0 +170781451452,215,0 +170781451502,215,0 +170781451550,215,0 +170781451599,213,0 +170781451648,213,0 +170781451697,213,0 +170781451745,214,0 +170781451793,213,0 +170781451842,214,0 +170781451890,214,0 +170781451938,214,0 +170781451986,214,0 +170781452034,214,0 +170781452082,214,0 +170781452132,215,0 +170781452180,215,0 +170781452227,215,0 +170781452277,215,0 +170781452325,215,0 +170781452374,215,0 +170781452422,215,0 +170781452470,215,0 +170781452518,214,0 +170781452568,213,0 +170781452616,213,0 +170781452664,213,0 +170781452712,214,0 +170781452761,214,0 +170781452811,214,0 +170781452860,214,0 +170781452908,214,0 +170781452957,214,0 +170781453005,214,0 +170781453053,214,0 +170781453101,214,0 +170781453151,215,0 +170781453199,215,0 +170781453247,215,0 +170781453294,215,0 +170781453342,215,0 +170781453390,215,0 +170781453438,215,0 +170781453486,214,0 +170781453534,213,0 +170781453582,214,0 +170781453630,214,0 +170781453678,214,0 +170781453725,214,0 +170781453773,214,0 +170781453821,214,0 +170781453871,215,0 +170781453919,215,0 +170781453967,215,0 +170781454016,215,0 +170781454066,215,0 +170781454114,215,0 +170781454163,215,0 +170781454213,215,0 +170781454260,214,0 +170781454310,215,0 +170781454358,215,0 +170781454406,214,0 +170781454454,214,0 +170781454502,214,0 +170781454549,214,0 +170781454599,215,0 +170781454647,215,0 +170781454695,214,0 +170781454743,215,0 +170781454790,215,0 +170781454838,215,0 +170781454888,215,0 +170781454936,215,0 +170781454985,215,0 +170781455035,215,0 +170781455083,215,0 +170781455132,215,0 +170781455180,215,0 +170781455228,215,0 +170781455276,215,0 +170781455325,214,0 +170781455375,214,0 +170781455423,214,0 +170781455471,214,0 +170781455520,214,0 +170781455568,215,0 +170781455616,215,0 +170781455666,215,0 +170781455714,215,0 +170781455762,215,0 +170781455811,215,0 +170781455861,215,0 +170781455910,215,0 +170781455958,215,0 +170781456006,215,0 +170781456054,215,0 +170781456102,215,0 +170781456151,215,0 +170781456201,215,0 +170781456249,214,0 +170781456297,214,0 +170781456346,214,0 +170781456394,214,0 +170781456443,214,0 +170781456493,214,0 +170781456541,214,0 +170781456590,214,0 +170781456638,214,0 +170781456688,214,0 +170781456737,214,0 +170781456787,215,0 +170781456835,215,0 +170781456884,215,0 +170781456932,215,0 +170781456980,215,0 +170781457028,215,0 +170781457078,215,0 +170781457127,215,0 +170781457175,213,0 +170781457223,213,0 +170781457271,214,0 +170781457319,214,0 +170781457366,214,0 +170781457416,214,0 +170781457464,214,0 +170781457512,214,0 +170781457560,214,0 +170781457608,214,0 +170781457656,214,0 +170781457704,214,0 +170781457751,215,0 +170781457801,214,0 +170781457849,215,0 +170781457897,215,0 +170781457944,215,0 +170781457992,215,0 +170781458040,214,0 +170781458088,213,0 +170781458138,213,0 +170781458186,213,0 +170781458234,213,0 +170781458282,213,0 +170781458329,213,0 +170781458379,213,0 +170781458427,214,0 +170781458475,214,0 +170781458522,214,0 +170781458570,214,0 +170781458618,214,0 +170781458666,214,0 +170781458714,214,0 +170781458763,214,0 +170781458811,214,0 +170781458859,215,0 +170781458906,215,0 +170781458954,215,0 +170781459004,214,0 +170781459052,213,0 +170781459100,213,0 +170781459148,213,0 +170781459197,213,0 +170781459247,214,0 +170781459294,214,0 +170781459342,214,0 +170781459390,214,0 +170781459438,214,0 +170781459487,214,0 +170781459535,214,0 +170781459583,215,0 +170781459633,214,0 +170781459681,214,0 +170781459729,215,0 +170781459777,214,0 +170781459826,215,0 +170781459874,215,0 +170781459922,214,0 +170781459972,213,0 +170781460020,213,0 +170781460069,213,0 +170781460119,213,0 +170781460167,213,0 +170781460214,214,0 +170781460262,214,0 +170781460312,214,0 +170781460360,214,0 +170781460408,214,0 +170781460457,214,0 +170781460505,214,0 +170781460553,214,0 +170781460603,214,0 +170781460652,214,0 +170781460700,215,0 +170781460748,215,0 +170781460796,215,0 +170781460845,214,0 +170781460895,213,0 +170781460943,213,0 +170781460991,214,0 +170781461040,214,0 +170781461088,214,0 +170781461136,214,0 +170781461184,214,0 +170781461233,214,0 +170781461281,214,0 +170781461331,214,0 +170781461379,214,0 +170781461426,214,0 +170781461474,214,0 +170781461522,214,0 +170781461570,215,0 +170781461618,215,0 +170781461666,215,0 +170781461715,215,0 +170781461765,214,0 +170781461814,213,0 +170781461862,213,0 +170781461910,213,0 +170781461958,214,0 +170781462008,214,0 +170781462057,214,0 +170781462105,214,0 +170781462153,214,0 +170781462201,214,0 +170781462250,214,0 +170781462298,214,0 +170781462348,214,0 +170781462396,214,0 +170781462445,215,0 +170781462493,215,0 +170781462541,215,0 +170781462589,215,0 +170781462638,214,0 +170781462686,214,0 +170781462734,214,0 +170781462783,213,0 +170781462831,213,0 +170781462879,214,0 +170781462927,214,0 +170781462975,214,0 +170781463023,214,0 +170781463073,214,0 +170781463122,214,0 +170781463170,214,0 +170781463218,214,0 +170781463267,214,0 +170781463315,214,0 +170781463363,214,0 +170781463411,215,0 +170781463461,214,0 +170781463509,214,0 +170781463558,214,0 +170781463608,215,0 +170781463656,213,0 +170781463705,213,0 +170781463753,213,0 +170781463802,213,0 +170781463850,214,0 +170781463898,213,0 +170781463946,214,0 +170781463994,213,0 +170781464042,214,0 +170781464091,214,0 +170781464139,214,0 +170781464189,214,0 +170781464237,214,0 +170781464284,214,0 +170781464334,215,0 +170781464383,215,0 +170781464433,215,0 +170781464481,215,0 +170781464529,215,0 +170781464577,213,0 +170781464626,213,0 +170781464676,214,0 +170781464724,214,0 +170781464771,214,0 +170781464821,214,0 +170781464869,214,0 +170781464917,214,0 +170781464966,214,0 +170781465014,214,0 +170781465064,214,0 +170781465113,214,0 +170781465163,214,0 +170781465211,214,0 +170781465259,214,0 +170781465306,215,0 +170781465354,215,0 +170781465402,215,0 +170781465450,215,0 +170781465500,213,0 +170781465547,213,0 +170781465597,214,0 +170781465645,213,0 +170781465693,214,0 +170781465742,214,0 +170781465790,214,0 +170781465838,214,0 +170781465886,214,0 +170781465934,214,0 +170781465982,214,0 +170781466031,214,0 +170781466079,214,0 +170781466127,214,0 +170781466177,215,0 +170781466226,215,0 +170781466274,215,0 +170781466323,215,0 +170781466371,214,0 +170781466419,213,0 +170781466467,214,0 +170781466515,213,0 +170781466565,213,0 +170781466612,213,0 +170781466660,214,0 +170781466708,214,0 +170781466756,214,0 +170781466804,214,0 +170781466852,214,0 +170781466900,214,0 +170781466948,214,0 +170781466995,214,0 +170781467043,214,0 +170781467091,214,0 +170781467139,215,0 +170781467187,215,0 +170781467236,215,0 +170781467284,215,0 +170781467332,214,0 +170781467381,213,0 +170781467431,213,0 +170781467480,213,0 +170781467528,214,0 +170781467578,214,0 +170781467627,214,0 +170781467675,214,0 +170781467725,214,0 +170781467773,214,0 +170781467822,214,0 +170781467872,214,0 +170781467920,214,0 +170781467968,214,0 +170781468017,215,0 +170781468065,215,0 +170781468113,215,0 +170781468162,215,0 +170781468210,215,0 +170781468258,213,0 +170781468306,213,0 +170781468354,213,0 +170781468404,213,0 +170781468453,214,0 +170781468503,213,0 +170781468551,213,0 +170781468600,214,0 +170781468648,214,0 +170781468697,214,0 +170781468745,214,0 +170781468795,214,0 +170781468843,214,0 +170781468891,214,0 +170781468939,215,0 +170781468987,214,0 +170781469034,214,0 +170781469082,215,0 +170781469132,215,0 +170781469181,213,0 +170781469231,213,0 +170781469280,213,0 +170781469328,213,0 +170781469378,213,0 +170781469427,214,0 +170781469475,214,0 +170781469523,214,0 +170781469570,214,0 +170781469618,214,0 +170781469666,214,0 +170781469714,214,0 +170781469762,214,0 +170781469809,214,0 +170781469857,214,0 +170781469905,214,0 +170781469953,215,0 +170781470001,215,0 +170781470049,215,0 +170781470098,214,0 +170781470146,213,0 +170781470194,213,0 +170781470242,213,0 +170781470289,214,0 +170781470337,214,0 +170781470385,213,0 +170781470433,214,0 +170781470481,214,0 +170781470530,214,0 +170781470578,214,0 +170781470626,214,0 +170781470676,214,0 +170781470725,214,0 +170781470773,214,0 +170781470821,215,0 +170781470869,215,0 +170781470917,215,0 +170781470965,215,0 +170781471013,214,0 +170781471061,213,0 +170781471109,213,0 +170781471157,213,0 +170781471206,213,0 +170781471254,214,0 +170781471304,214,0 +170781471353,214,0 +170781471403,214,0 +170781471452,214,0 +170781471502,214,0 +170781471551,214,0 +170781471599,214,0 +170781471647,214,0 +170781471695,215,0 +170781471743,214,0 +170781471791,214,0 +170781471839,215,0 +170781471887,214,0 +170781471936,214,0 +170781471986,213,0 +170781472035,213,0 +170781472085,213,0 +170781472132,214,0 +170781472180,214,0 +170781472228,214,0 +170781472276,214,0 +170781472324,214,0 +170781472372,214,0 +170781472420,214,0 +170781472469,214,0 +170781472517,214,0 +170781472567,215,0 +170781472616,215,0 +170781472664,214,0 +170781472712,215,0 +170781472760,215,0 +170781472808,215,0 +170781472857,214,0 +170781472905,213,0 +170781472953,213,0 +170781473001,213,0 +170781473049,213,0 +170781473098,214,0 +170781473146,214,0 +170781473195,214,0 +170781473243,214,0 +170781473293,214,0 +170781473341,214,0 +170781473389,214,0 +170781473436,215,0 +170781473484,215,0 +170781473532,215,0 +170781473580,215,0 +170781473628,215,0 +170781473676,215,0 +170781473724,215,0 +170781473771,215,0 +170781473821,214,0 +170781473870,213,0 +170781473918,214,0 +170781473968,214,0 +170781474017,214,0 +170781474067,214,0 +170781474115,214,0 +170781474164,214,0 +170781474212,214,0 +170781474262,214,0 +170781474310,215,0 +170781474358,215,0 +170781474407,215,0 +170781474455,215,0 +170781474504,215,0 +170781474552,215,0 +170781474602,215,0 +170781474651,215,0 +170781474699,215,0 +170781474749,213,0 +170781474797,214,0 +170781474845,214,0 +170781474894,214,0 +170781474942,214,0 +170781474992,214,0 +170781475040,214,0 +170781475088,214,0 +170781475137,214,0 +170781475187,215,0 +170781475236,214,0 +170781475286,215,0 +170781475334,215,0 +170781475382,215,0 +170781475430,214,0 +170781475479,215,0 +170781475529,215,0 +170781475578,215,0 +170781475626,214,0 +170781475676,213,0 +170781475725,214,0 +170781475773,214,0 +170781475821,214,0 +170781475869,214,0 +170781475918,214,0 +170781475966,214,0 +170781476016,214,0 +170781476064,214,0 +170781476113,215,0 +170781476161,215,0 +170781476211,215,0 +170781476260,215,0 +170781476309,215,0 +170781476357,215,0 +170781476405,215,0 +170781476453,215,0 +170781476502,215,0 +170781476550,214,0 +170781476599,213,0 +170781476647,214,0 +170781476695,214,0 +170781476743,214,0 +170781476791,214,0 +170781476839,214,0 +170781476887,214,0 +170781476936,214,0 +170781476985,214,0 +170781477033,215,0 +170781477081,215,0 +170781477129,215,0 +170781477177,215,0 +170781477226,215,0 +170781477274,215,0 +170781477322,215,0 +170781477372,215,0 +170781477419,215,0 +170781477467,214,0 +170781477515,213,0 +170781477563,214,0 +170781477613,213,0 +170781477660,214,0 +170781477710,214,0 +170781477759,214,0 +170781477807,214,0 +170781477855,214,0 +170781477903,214,0 +170781477951,214,0 +170781477999,214,0 +170781478046,214,0 +170781478094,215,0 +170781478142,214,0 +170781478190,215,0 +170781478238,214,0 +170781478286,215,0 +170781478333,215,0 +170781478381,214,0 +170781478431,213,0 +170781478479,214,0 +170781478528,213,0 +170781478576,213,0 +170781478624,214,0 +170781478672,214,0 +170781478719,214,0 +170781478767,214,0 +170781478815,214,0 +170781478863,214,0 +170781478911,214,0 +170781478958,214,0 +170781479006,214,0 +170781479054,214,0 +170781479102,214,0 +170781479152,214,0 +170781479199,214,0 +170781479249,214,0 +170781479297,215,0 +170781479344,214,0 +170781479392,213,0 +170781479442,213,0 +170781479490,213,0 +170781479537,213,0 +170781479585,213,0 +170781479633,214,0 +170781479683,214,0 +170781479731,214,0 +170781479780,214,0 +170781479828,214,0 +170781479876,214,0 +170781479924,214,0 +170781479972,214,0 +170781480020,214,0 diff --git a/laser_value/0213-19.csv b/laser_value/0213-19.csv new file mode 100644 index 0000000..36e7bbc --- /dev/null +++ b/laser_value/0213-19.csv @@ -0,0 +1,7443 @@ +timestamp,laser_value,event +170781480068,214,0 +170781480116,214,0 +170781480164,215,0 +170781480212,215,0 +170781480260,214,0 +170781480308,213,0 +170781480356,213,0 +170781480403,213,0 +170781480451,213,0 +170781480501,213,0 +170781480548,213,0 +170781480596,214,0 +170781480644,214,0 +170781480692,214,0 +170781480740,214,0 +170781480788,214,0 +170781480836,214,0 +170781480885,214,0 +170781480933,214,0 +170781480981,214,0 +170781481028,214,0 +170781481076,214,0 +170781481124,215,0 +170781481172,215,0 +170781481221,213,0 +170781481269,213,0 +170781481317,213,0 +170781481365,213,0 +170781481412,213,0 +170781481460,213,0 +170781481508,213,0 +170781481556,213,0 +170781481605,213,0 +170781481655,214,0 +170781481703,213,0 +170781481750,214,0 +170781481798,214,0 +170781481846,214,0 +170781481894,214,0 +170781481942,214,0 +170781481990,214,0 +170781482037,214,0 +170781482085,214,0 +170781482133,213,0 +170781482181,213,0 +170781482230,213,0 +170781482278,213,0 +170781482328,213,0 +170781482375,214,0 +170781482423,214,0 +170781482471,214,0 +170781482519,214,0 +170781482567,214,0 +170781482615,214,0 +170781482662,214,0 +170781482710,214,0 +170781482758,214,0 +170781482806,214,0 +170781482854,214,0 +170781482902,214,0 +170781482949,215,0 +170781482997,215,0 +170781483045,214,0 +170781483093,215,0 +170781483141,215,0 +170781483189,215,0 +170781483237,215,0 +170781483284,215,0 +170781483334,215,0 +170781483382,215,0 +170781483429,214,0 +170781483477,215,0 +170781483525,213,0 +170781483573,213,0 +170781483621,213,0 +170781483670,214,0 +170781483718,214,0 +170781483766,214,0 +170781483813,214,0 +170781483863,214,0 +170781483911,214,0 +170781483959,214,0 +170781484006,214,0 +170781484054,214,0 +170781484104,215,0 +170781484152,215,0 +170781484199,215,0 +170781484247,215,0 +170781484295,215,0 +170781484343,215,0 +170781484391,214,0 +170781484438,214,0 +170781484486,213,0 +170781484534,214,0 +170781484582,214,0 +170781484631,214,0 +170781484679,214,0 +170781484729,214,0 +170781484776,214,0 +170781484824,214,0 +170781484872,214,0 +170781484921,214,0 +170781484969,215,0 +170781485017,215,0 +170781485066,215,0 +170781485114,215,0 +170781485162,215,0 +170781485210,215,0 +170781485259,214,0 +170781485307,215,0 +170781485355,214,0 +170781485403,214,0 +170781485451,214,0 +170781485499,214,0 +170781485547,214,0 +170781485594,214,0 +170781485644,214,0 +170781485692,214,0 +170781485740,214,0 +170781485789,214,0 +170781485837,214,0 +170781485885,214,0 +170781485932,214,0 +170781485982,215,0 +170781486030,215,0 +170781486079,215,0 +170781486127,215,0 +170781486176,215,0 +170781486224,214,0 +170781486273,214,0 +170781486321,213,0 +170781486369,214,0 +170781486417,213,0 +170781486466,214,0 +170781486514,214,0 +170781486562,214,0 +170781486610,214,0 +170781486658,214,0 +170781486706,214,0 +170781486754,214,0 +170781486802,214,0 +170781486850,214,0 +170781486897,215,0 +170781486945,215,0 +170781486993,215,0 +170781487041,215,0 +170781487090,215,0 +170781487138,215,0 +170781487188,213,0 +170781487237,213,0 +170781487285,213,0 +170781487334,213,0 +170781487382,214,0 +170781487430,214,0 +170781487478,214,0 +170781487528,214,0 +170781487576,214,0 +170781487623,214,0 +170781487671,214,0 +170781487719,214,0 +170781487769,214,0 +170781487817,214,0 +170781487865,215,0 +170781487914,215,0 +170781487962,215,0 +170781488010,214,0 +170781488058,215,0 +170781488108,214,0 +170781488157,213,0 +170781488205,213,0 +170781488253,213,0 +170781488300,214,0 +170781488348,214,0 +170781488396,213,0 +170781488444,214,0 +170781488494,214,0 +170781488541,214,0 +170781488589,214,0 +170781488637,214,0 +170781488687,214,0 +170781488734,215,0 +170781488782,215,0 +170781488832,215,0 +170781488881,215,0 +170781488929,215,0 +170781488977,214,0 +170781489025,214,0 +170781489073,213,0 +170781489120,213,0 +170781489168,213,0 +170781489216,214,0 +170781489264,213,0 +170781489313,214,0 +170781489360,214,0 +170781489408,214,0 +170781489456,214,0 +170781489504,214,0 +170781489552,214,0 +170781489600,215,0 +170781489648,215,0 +170781489695,214,0 +170781489743,214,0 +170781489793,215,0 +170781489841,215,0 +170781489890,215,0 +170781489938,214,0 +170781489986,213,0 +170781490036,213,0 +170781490085,213,0 +170781490133,213,0 +170781490182,213,0 +170781490232,214,0 +170781490281,213,0 +170781490329,213,0 +170781490379,213,0 +170781490428,214,0 +170781490478,214,0 +170781490526,214,0 +170781490574,214,0 +170781490622,214,0 +170781490671,214,0 +170781490719,214,0 +170781490769,215,0 +170781490816,214,0 +170781490864,214,0 +170781490912,213,0 +170781490962,213,0 +170781491011,213,0 +170781491059,213,0 +170781491109,213,0 +170781491158,213,0 +170781491206,213,0 +170781491254,214,0 +170781491302,214,0 +170781491350,214,0 +170781491398,214,0 +170781491445,214,0 +170781491493,214,0 +170781491543,215,0 +170781491591,214,0 +170781491639,215,0 +170781491688,215,0 +170781491736,214,0 +170781491784,214,0 +170781491832,213,0 +170781491880,213,0 +170781491929,213,0 +170781491977,213,0 +170781492025,213,0 +170781492073,213,0 +170781492121,213,0 +170781492169,213,0 +170781492216,213,0 +170781492264,214,0 +170781492312,214,0 +170781492362,214,0 +170781492410,214,0 +170781492459,214,0 +170781492507,214,0 +170781492555,214,0 +170781492605,214,0 +170781492654,214,0 +170781492702,214,0 +170781492750,213,0 +170781492798,213,0 +170781492848,213,0 +170781492895,214,0 +170781492945,214,0 +170781492995,214,0 +170781493042,213,0 +170781493090,214,0 +170781493138,214,0 +170781493186,214,0 +170781493234,214,0 +170781493283,214,0 +170781493331,214,0 +170781493379,214,0 +170781493427,214,0 +170781493475,215,0 +170781493523,214,0 +170781493571,214,0 +170781493618,214,0 +170781493668,213,0 +170781493716,213,0 +170781493763,213,0 +170781493813,213,0 +170781493861,213,0 +170781493909,214,0 +170781493956,214,0 +170781494006,214,0 +170781494054,214,0 +170781494101,214,0 +170781494149,214,0 +170781494197,214,0 +170781494245,214,0 +170781494293,214,0 +170781494341,214,0 +170781494389,215,0 +170781494437,214,0 +170781494485,215,0 +170781494534,214,0 +170781494582,213,0 +170781494632,213,0 +170781494681,213,0 +170781494729,213,0 +170781494777,214,0 +170781494826,214,0 +170781494876,214,0 +170781494924,214,0 +170781494973,214,0 +170781495023,214,0 +170781495071,214,0 +170781495119,214,0 +170781495168,214,0 +170781495218,215,0 +170781495267,215,0 +170781495315,214,0 +170781495363,214,0 +170781495411,215,0 +170781495461,215,0 +170781495510,213,0 +170781495558,214,0 +170781495607,214,0 +170781495655,214,0 +170781495703,214,0 +170781495751,214,0 +170781495799,214,0 +170781495849,214,0 +170781495898,214,0 +170781495946,214,0 +170781495994,214,0 +170781496043,215,0 +170781496091,215,0 +170781496141,215,0 +170781496190,214,0 +170781496238,215,0 +170781496286,214,0 +170781496336,214,0 +170781496383,215,0 +170781496433,214,0 +170781496482,214,0 +170781496530,214,0 +170781496578,214,0 +170781496626,214,0 +170781496674,214,0 +170781496724,214,0 +170781496772,214,0 +170781496819,214,0 +170781496867,214,0 +170781496915,215,0 +170781496963,215,0 +170781497011,215,0 +170781497060,215,0 +170781497110,215,0 +170781497158,215,0 +170781497206,215,0 +170781497253,215,0 +170781497301,215,0 +170781497349,214,0 +170781497399,214,0 +170781497447,214,0 +170781497496,214,0 +170781497545,214,0 +170781497593,214,0 +170781497641,214,0 +170781497689,214,0 +170781497737,214,0 +170781497785,215,0 +170781497833,215,0 +170781497882,214,0 +170781497930,215,0 +170781497980,214,0 +170781498028,214,0 +170781498076,215,0 +170781498123,215,0 +170781498171,214,0 +170781498221,214,0 +170781498270,214,0 +170781498320,214,0 +170781498368,214,0 +170781498417,214,0 +170781498465,214,0 +170781498515,215,0 +170781498562,214,0 +170781498610,214,0 +170781498658,214,0 +170781498708,214,0 +170781498756,215,0 +170781498805,215,0 +170781498855,215,0 +170781498904,215,0 +170781498952,215,0 +170781499001,215,0 +170781499049,214,0 +170781499099,214,0 +170781499147,214,0 +170781499195,214,0 +170781499243,213,0 +170781499292,214,0 +170781499340,214,0 +170781499390,214,0 +170781499438,214,0 +170781499487,214,0 +170781499536,214,0 +170781499584,214,0 +170781499632,214,0 +170781499682,215,0 +170781499730,215,0 +170781499778,214,0 +170781499826,214,0 +170781499875,215,0 +170781499923,215,0 +170781499973,215,0 +170781500022,215,0 +170781500072,214,0 +170781500120,213,0 +170781500169,213,0 +170781500217,213,0 +170781500265,214,0 +170781500313,214,0 +170781500360,214,0 +170781500410,214,0 +170781500459,214,0 +170781500507,214,0 +170781500557,214,0 +170781500606,214,0 +170781500654,214,0 +170781500702,214,0 +170781500752,214,0 +170781500800,215,0 +170781500848,214,0 +170781500896,214,0 +170781500943,215,0 +170781500993,214,0 +170781501041,213,0 +170781501090,213,0 +170781501138,213,0 +170781501186,213,0 +170781501236,214,0 +170781501284,213,0 +170781501331,213,0 +170781501379,214,0 +170781501429,214,0 +170781501477,214,0 +170781501526,214,0 +170781501574,214,0 +170781501624,214,0 +170781501671,214,0 +170781501719,215,0 +170781501767,214,0 +170781501815,214,0 +170781501865,215,0 +170781501914,214,0 +170781501964,213,0 +170781502013,213,0 +170781502061,213,0 +170781502109,213,0 +170781502157,213,0 +170781502205,214,0 +170781502253,214,0 +170781502301,213,0 +170781502350,214,0 +170781502398,214,0 +170781502447,214,0 +170781502495,214,0 +170781502543,214,0 +170781502591,214,0 +170781502641,214,0 +170781502690,215,0 +170781502738,215,0 +170781502787,215,0 +170781502835,215,0 +170781502885,213,0 +170781502933,213,0 +170781502980,213,0 +170781503028,213,0 +170781503076,213,0 +170781503124,214,0 +170781503172,214,0 +170781503220,213,0 +170781503268,214,0 +170781503317,213,0 +170781503367,214,0 +170781503415,214,0 +170781503463,214,0 +170781503511,214,0 +170781503559,215,0 +170781503608,214,0 +170781503656,215,0 +170781503704,215,0 +170781503752,214,0 +170781503801,213,0 +170781503849,213,0 +170781503899,213,0 +170781503948,213,0 +170781503996,213,0 +170781504044,214,0 +170781504092,213,0 +170781504140,213,0 +170781504189,214,0 +170781504239,214,0 +170781504287,214,0 +170781504334,214,0 +170781504382,214,0 +170781504430,214,0 +170781504478,214,0 +170781504527,214,0 +170781504577,215,0 +170781504625,215,0 +170781504674,214,0 +170781504724,214,0 +170781504773,213,0 +170781504821,213,0 +170781504869,213,0 +170781504918,213,0 +170781504966,214,0 +170781505014,214,0 +170781505064,214,0 +170781505112,214,0 +170781505160,214,0 +170781505207,214,0 +170781505255,214,0 +170781505303,214,0 +170781505351,214,0 +170781505399,214,0 +170781505447,214,0 +170781505495,215,0 +170781505543,215,0 +170781505592,214,0 +170781505640,213,0 +170781505690,213,0 +170781505739,213,0 +170781505787,213,0 +170781505837,214,0 +170781505886,213,0 +170781505934,213,0 +170781505982,214,0 +170781506030,214,0 +170781506078,214,0 +170781506126,214,0 +170781506175,214,0 +170781506225,214,0 +170781506273,214,0 +170781506320,214,0 +170781506370,214,0 +170781506418,214,0 +170781506467,215,0 +170781506515,214,0 +170781506565,214,0 +170781506613,213,0 +170781506661,213,0 +170781506710,214,0 +170781506758,214,0 +170781506808,214,0 +170781506857,213,0 +170781506907,214,0 +170781506956,214,0 +170781507006,214,0 +170781507055,214,0 +170781507103,214,0 +170781507151,214,0 +170781507199,214,0 +170781507247,214,0 +170781507295,214,0 +170781507344,215,0 +170781507392,215,0 +170781507440,214,0 +170781507490,213,0 +170781507537,213,0 +170781507585,213,0 +170781507633,213,0 +170781507681,213,0 +170781507729,213,0 +170781507777,213,0 +170781507826,213,0 +170781507874,214,0 +170781507922,214,0 +170781507971,214,0 +170781508019,214,0 +170781508067,214,0 +170781508117,214,0 +170781508165,214,0 +170781508212,214,0 +170781508260,214,0 +170781508308,214,0 +170781508356,215,0 +170781508406,214,0 +170781508454,213,0 +170781508503,213,0 +170781508553,213,0 +170781508600,213,0 +170781508648,214,0 +170781508696,214,0 +170781508744,214,0 +170781508794,213,0 +170781508843,214,0 +170781508893,214,0 +170781508942,214,0 +170781508990,214,0 +170781509038,214,0 +170781509087,214,0 +170781509135,214,0 +170781509185,215,0 +170781509234,214,0 +170781509282,214,0 +170781509330,213,0 +170781509380,213,0 +170781509428,213,0 +170781509477,213,0 +170781509525,213,0 +170781509573,213,0 +170781509621,213,0 +170781509669,214,0 +170781509717,214,0 +170781509766,214,0 +170781509814,214,0 +170781509862,214,0 +170781509912,214,0 +170781509961,214,0 +170781510011,214,0 +170781510060,214,0 +170781510108,214,0 +170781510158,214,0 +170781510206,214,0 +170781510254,213,0 +170781510302,213,0 +170781510350,213,0 +170781510398,213,0 +170781510447,213,0 +170781510496,213,0 +170781510546,214,0 +170781510595,214,0 +170781510643,214,0 +170781510691,214,0 +170781510739,214,0 +170781510787,214,0 +170781510835,214,0 +170781510883,214,0 +170781510932,214,0 +170781510980,214,0 +170781511028,214,0 +170781511078,215,0 +170781511125,214,0 +170781511175,213,0 +170781511224,213,0 +170781511274,213,0 +170781511323,213,0 +170781511371,214,0 +170781511419,214,0 +170781511467,213,0 +170781511515,214,0 +170781511563,214,0 +170781511611,214,0 +170781511659,214,0 +170781511708,214,0 +170781511756,214,0 +170781511806,214,0 +170781511854,214,0 +170781511902,214,0 +170781511951,214,0 +170781512001,215,0 +170781512050,213,0 +170781512100,213,0 +170781512148,213,0 +170781512196,214,0 +170781512245,213,0 +170781512295,214,0 +170781512343,214,0 +170781512391,214,0 +170781512438,214,0 +170781512486,214,0 +170781512534,214,0 +170781512584,214,0 +170781512632,214,0 +170781512681,214,0 +170781512729,215,0 +170781512777,214,0 +170781512827,214,0 +170781512875,214,0 +170781512923,215,0 +170781512971,213,0 +170781513018,213,0 +170781513066,214,0 +170781513114,214,0 +170781513162,214,0 +170781513212,214,0 +170781513260,214,0 +170781513309,214,0 +170781513357,214,0 +170781513407,214,0 +170781513455,214,0 +170781513503,214,0 +170781513550,214,0 +170781513598,214,0 +170781513648,214,0 +170781513697,215,0 +170781513747,215,0 +170781513795,215,0 +170781513843,214,0 +170781513892,214,0 +170781513940,214,0 +170781513988,214,0 +170781514036,214,0 +170781514086,214,0 +170781514134,214,0 +170781514183,214,0 +170781514231,214,0 +170781514280,214,0 +170781514330,215,0 +170781514379,215,0 +170781514427,214,0 +170781514475,214,0 +170781514523,215,0 +170781514573,215,0 +170781514622,215,0 +170781514670,215,0 +170781514720,214,0 +170781514768,213,0 +170781514815,214,0 +170781514865,214,0 +170781514913,214,0 +170781514962,214,0 +170781515010,214,0 +170781515058,215,0 +170781515106,214,0 +170781515154,214,0 +170781515202,215,0 +170781515250,215,0 +170781515298,215,0 +170781515346,215,0 +170781515394,214,0 +170781515442,215,0 +170781515489,215,0 +170781515539,214,0 +170781515588,214,0 +170781515636,214,0 +170781515686,214,0 +170781515735,214,0 +170781515783,214,0 +170781515831,214,0 +170781515879,214,0 +170781515928,214,0 +170781515976,214,0 +170781516024,214,0 +170781516073,214,0 +170781516121,215,0 +170781516169,214,0 +170781516219,215,0 +170781516267,215,0 +170781516315,215,0 +170781516362,215,0 +170781516410,215,0 +170781516458,215,0 +170781516506,214,0 +170781516554,214,0 +170781516602,214,0 +170781516650,214,0 +170781516697,214,0 +170781516745,214,0 +170781516793,214,0 +170781516841,214,0 +170781516889,214,0 +170781516937,214,0 +170781516986,214,0 +170781517034,214,0 +170781517083,214,0 +170781517131,214,0 +170781517179,215,0 +170781517227,215,0 +170781517277,215,0 +170781517325,214,0 +170781517373,215,0 +170781517422,214,0 +170781517470,214,0 +170781517520,214,0 +170781517568,214,0 +170781517617,214,0 +170781517667,214,0 +170781517715,214,0 +170781517764,214,0 +170781517814,214,0 +170781517862,214,0 +170781517909,215,0 +170781517957,214,0 +170781518007,214,0 +170781518056,215,0 +170781518106,215,0 +170781518155,215,0 +170781518205,214,0 +170781518253,215,0 +170781518302,215,0 +170781518350,215,0 +170781518400,214,0 +170781518447,213,0 +170781518495,214,0 +170781518543,214,0 +170781518593,214,0 +170781518642,214,0 +170781518690,214,0 +170781518738,214,0 +170781518788,214,0 +170781518836,214,0 +170781518883,214,0 +170781518931,214,0 +170781518979,214,0 +170781519029,214,0 +170781519078,214,0 +170781519128,214,0 +170781519177,215,0 +170781519225,214,0 +170781519275,215,0 +170781519324,213,0 +170781519372,213,0 +170781519422,213,0 +170781519471,213,0 +170781519521,213,0 +170781519570,213,0 +170781519620,214,0 +170781519668,214,0 +170781519717,214,0 +170781519767,214,0 +170781519815,214,0 +170781519863,214,0 +170781519912,214,0 +170781519962,214,0 +170781520011,214,0 +170781520059,215,0 +170781520107,215,0 +170781520155,214,0 +170781520202,214,0 +170781520252,213,0 +170781520301,213,0 +170781520351,213,0 +170781520399,213,0 +170781520448,213,0 +170781520498,213,0 +170781520546,213,0 +170781520594,214,0 +170781520641,214,0 +170781520689,214,0 +170781520737,214,0 +170781520787,214,0 +170781520835,214,0 +170781520884,215,0 +170781520934,214,0 +170781520983,215,0 +170781521031,214,0 +170781521081,214,0 +170781521129,213,0 +170781521176,213,0 +170781521226,213,0 +170781521274,213,0 +170781521322,213,0 +170781521370,213,0 +170781521418,213,0 +170781521467,213,0 +170781521517,213,0 +170781521564,214,0 +170781521612,214,0 +170781521660,214,0 +170781521710,214,0 +170781521757,214,0 +170781521805,214,0 +170781521853,214,0 +170781521901,214,0 +170781521949,214,0 +170781521997,214,0 +170781522046,213,0 +170781522094,213,0 +170781522144,213,0 +170781522192,214,0 +170781522241,214,0 +170781522289,214,0 +170781522337,214,0 +170781522387,214,0 +170781522436,214,0 +170781522484,214,0 +170781522534,214,0 +170781522582,214,0 +170781522631,214,0 +170781522679,214,0 +170781522729,215,0 +170781522778,215,0 +170781522828,214,0 +170781522877,214,0 +170781522925,214,0 +170781522973,213,0 +170781523022,213,0 +170781523070,213,0 +170781523120,214,0 +170781523167,214,0 +170781523217,214,0 +170781523266,214,0 +170781523314,214,0 +170781523364,214,0 +170781523413,214,0 +170781523461,215,0 +170781523509,214,0 +170781523558,214,0 +170781523606,215,0 +170781523654,214,0 +170781523702,214,0 +170781523750,215,0 +170781523800,215,0 +170781523849,213,0 +170781523897,213,0 +170781523945,213,0 +170781523993,213,0 +170781524042,214,0 +170781524092,214,0 +170781524140,214,0 +170781524187,213,0 +170781524235,214,0 +170781524285,214,0 +170781524333,214,0 +170781524381,214,0 +170781524430,214,0 +170781524480,214,0 +170781524529,214,0 +170781524579,214,0 +170781524626,215,0 +170781524676,214,0 +170781524725,214,0 +170781524773,213,0 +170781524821,213,0 +170781524869,213,0 +170781524917,213,0 +170781524965,213,0 +170781525013,214,0 +170781525061,213,0 +170781525110,214,0 +170781525158,214,0 +170781525208,214,0 +170781525256,214,0 +170781525305,214,0 +170781525353,214,0 +170781525403,214,0 +170781525451,215,0 +170781525500,215,0 +170781525548,214,0 +170781525596,215,0 +170781525644,213,0 +170781525693,213,0 +170781525741,213,0 +170781525791,213,0 +170781525839,213,0 +170781525887,213,0 +170781525936,214,0 +170781525984,214,0 +170781526032,214,0 +170781526080,214,0 +170781526128,214,0 +170781526178,214,0 +170781526225,214,0 +170781526273,214,0 +170781526321,214,0 +170781526369,215,0 +170781526417,215,0 +170781526465,214,0 +170781526513,214,0 +170781526560,213,0 +170781526608,213,0 +170781526656,213,0 +170781526704,213,0 +170781526752,214,0 +170781526801,214,0 +170781526849,214,0 +170781526899,214,0 +170781526947,214,0 +170781526995,214,0 +170781527042,214,0 +170781527090,214,0 +170781527138,214,0 +170781527186,214,0 +170781527234,214,0 +170781527282,214,0 +170781527329,214,0 +170781527377,214,0 +170781527425,214,0 +170781527475,213,0 +170781527522,213,0 +170781527570,213,0 +170781527618,214,0 +170781527666,213,0 +170781527714,214,0 +170781527762,213,0 +170781527810,214,0 +170781527858,214,0 +170781527906,214,0 +170781527954,214,0 +170781528003,214,0 +170781528051,214,0 +170781528099,214,0 +170781528147,214,0 +170781528194,215,0 +170781528242,214,0 +170781528290,215,0 +170781528338,215,0 +170781528386,214,0 +170781528434,213,0 +170781528481,213,0 +170781528529,213,0 +170781528579,213,0 +170781528627,213,0 +170781528676,214,0 +170781528724,214,0 +170781528773,214,0 +170781528821,214,0 +170781528869,214,0 +170781528917,214,0 +170781528965,214,0 +170781529013,215,0 +170781529060,214,0 +170781529108,214,0 +170781529156,214,0 +170781529204,214,0 +170781529252,214,0 +170781529300,213,0 +170781529348,213,0 +170781529397,213,0 +170781529445,213,0 +170781529493,214,0 +170781529541,214,0 +170781529590,213,0 +170781529640,214,0 +170781529688,214,0 +170781529736,214,0 +170781529784,214,0 +170781529832,214,0 +170781529880,214,0 +170781529929,214,0 +170781529977,214,0 +170781530025,214,0 +170781530073,214,0 +170781530123,214,0 +170781530172,213,0 +170781530222,213,0 +170781530270,213,0 +170781530319,213,0 +170781530367,213,0 +170781530417,213,0 +170781530466,213,0 +170781530514,214,0 +170781530562,213,0 +170781530610,214,0 +170781530659,214,0 +170781530707,214,0 +170781530755,214,0 +170781530803,214,0 +170781530853,214,0 +170781530902,214,0 +170781530950,214,0 +170781530998,214,0 +170781531047,214,0 +170781531095,214,0 +170781531143,213,0 +170781531191,213,0 +170781531239,213,0 +170781531289,213,0 +170781531337,213,0 +170781531385,213,0 +170781531434,214,0 +170781531484,214,0 +170781531532,214,0 +170781531580,214,0 +170781531627,214,0 +170781531677,214,0 +170781531725,214,0 +170781531773,214,0 +170781531822,214,0 +170781531872,214,0 +170781531921,214,0 +170781531969,214,0 +170781532017,213,0 +170781532065,213,0 +170781532113,213,0 +170781532161,213,0 +170781532208,213,0 +170781532256,213,0 +170781532304,213,0 +170781532352,213,0 +170781532400,214,0 +170781532449,213,0 +170781532499,214,0 +170781532546,214,0 +170781532594,214,0 +170781532642,214,0 +170781532690,214,0 +170781532738,214,0 +170781532786,214,0 +170781532834,214,0 +170781532882,214,0 +170781532930,213,0 +170781532978,213,0 +170781533027,213,0 +170781533077,213,0 +170781533125,213,0 +170781533173,213,0 +170781533222,213,0 +170781533271,214,0 +170781533319,214,0 +170781533369,214,0 +170781533417,214,0 +170781533465,214,0 +170781533513,214,0 +170781533562,214,0 +170781533612,214,0 +170781533660,214,0 +170781533708,215,0 +170781533756,214,0 +170781533805,214,0 +170781533854,213,0 +170781533902,213,0 +170781533950,213,0 +170781533998,213,0 +170781534046,214,0 +170781534094,214,0 +170781534142,214,0 +170781534190,214,0 +170781534239,214,0 +170781534289,214,0 +170781534338,214,0 +170781534386,214,0 +170781534434,214,0 +170781534482,214,0 +170781534530,214,0 +170781534580,214,0 +170781534628,214,0 +170781534676,214,0 +170781534725,214,0 +170781534773,214,0 +170781534821,214,0 +170781534869,214,0 +170781534917,214,0 +170781534965,214,0 +170781535014,214,0 +170781535062,214,0 +170781535110,214,0 +170781535160,214,0 +170781535209,214,0 +170781535259,214,0 +170781535308,215,0 +170781535358,214,0 +170781535405,214,0 +170781535453,214,0 +170781535503,214,0 +170781535552,214,0 +170781535602,213,0 +170781535650,214,0 +170781535699,214,0 +170781535749,214,0 +170781535798,214,0 +170781535848,214,0 +170781535897,214,0 +170781535945,214,0 +170781535995,214,0 +170781536043,214,0 +170781536091,214,0 +170781536140,214,0 +170781536188,214,0 +170781536236,214,0 +170781536285,215,0 +170781536333,214,0 +170781536381,214,0 +170781536430,214,0 +170781536478,214,0 +170781536528,213,0 +170781536577,213,0 +170781536625,214,0 +170781536673,214,0 +170781536723,214,0 +170781536771,214,0 +170781536820,214,0 +170781536870,214,0 +170781536918,214,0 +170781536967,214,0 +170781537015,214,0 +170781537063,214,0 +170781537111,214,0 +170781537159,214,0 +170781537209,214,0 +170781537258,214,0 +170781537306,214,0 +170781537354,214,0 +170781537402,214,0 +170781537450,213,0 +170781537498,213,0 +170781537547,213,0 +170781537595,213,0 +170781537643,214,0 +170781537691,214,0 +170781537740,214,0 +170781537788,214,0 +170781537837,214,0 +170781537887,214,0 +170781537935,214,0 +170781537983,214,0 +170781538031,214,0 +170781538080,215,0 +170781538130,214,0 +170781538178,215,0 +170781538225,214,0 +170781538273,214,0 +170781538323,213,0 +170781538371,213,0 +170781538420,213,0 +170781538468,213,0 +170781538517,213,0 +170781538565,213,0 +170781538613,214,0 +170781538661,214,0 +170781538711,214,0 +170781538760,214,0 +170781538808,214,0 +170781538858,214,0 +170781538907,214,0 +170781538955,214,0 +170781539003,214,0 +170781539051,214,0 +170781539100,214,0 +170781539148,214,0 +170781539198,214,0 +170781539246,213,0 +170781539293,213,0 +170781539343,213,0 +170781539393,214,0 +170781539441,214,0 +170781539490,214,0 +170781539538,214,0 +170781539586,214,0 +170781539635,214,0 +170781539683,214,0 +170781539731,214,0 +170781539779,214,0 +170781539827,214,0 +170781539875,215,0 +170781539923,214,0 +170781539972,215,0 +170781540020,214,0 +170781540070,214,0 +170781540118,214,0 +170781540167,213,0 +170781540217,213,0 +170781540265,213,0 +170781540313,213,0 +170781540360,214,0 +170781540408,214,0 +170781540456,214,0 +170781540506,214,0 +170781540554,214,0 +170781540603,214,0 +170781540651,214,0 +170781540699,214,0 +170781540747,214,0 +170781540796,214,0 +170781540844,214,0 +170781540892,214,0 +170781540940,214,0 +170781540988,214,0 +170781541037,213,0 +170781541085,213,0 +170781541135,213,0 +170781541183,213,0 +170781541231,214,0 +170781541280,214,0 +170781541328,214,0 +170781541376,214,0 +170781541424,214,0 +170781541471,214,0 +170781541521,214,0 +170781541569,214,0 +170781541617,214,0 +170781541664,214,0 +170781541712,214,0 +170781541762,214,0 +170781541810,214,0 +170781541858,214,0 +170781541907,213,0 +170781541955,214,0 +170781542003,213,0 +170781542051,214,0 +170781542100,214,0 +170781542150,214,0 +170781542198,214,0 +170781542247,214,0 +170781542297,214,0 +170781542346,214,0 +170781542396,214,0 +170781542445,214,0 +170781542493,214,0 +170781542541,214,0 +170781542589,214,0 +170781542636,214,0 +170781542684,214,0 +170781542732,214,0 +170781542780,214,0 +170781542828,213,0 +170781542876,213,0 +170781542924,213,0 +170781542973,214,0 +170781543023,214,0 +170781543070,214,0 +170781543118,214,0 +170781543166,214,0 +170781543214,214,0 +170781543262,214,0 +170781543312,214,0 +170781543360,214,0 +170781543407,214,0 +170781543455,214,0 +170781543505,214,0 +170781543554,214,0 +170781543602,214,0 +170781543652,214,0 +170781543700,213,0 +170781543748,214,0 +170781543796,214,0 +170781543844,214,0 +170781543893,214,0 +170781543941,214,0 +170781543989,214,0 +170781544038,214,0 +170781544086,214,0 +170781544134,214,0 +170781544182,214,0 +170781544230,214,0 +170781544278,214,0 +170781544326,214,0 +170781544374,214,0 +170781544423,214,0 +170781544473,214,0 +170781544521,214,0 +170781544570,213,0 +170781544620,213,0 +170781544667,213,0 +170781544715,214,0 +170781544763,214,0 +170781544813,214,0 +170781544862,214,0 +170781544910,214,0 +170781544958,214,0 +170781545006,214,0 +170781545054,214,0 +170781545102,214,0 +170781545149,214,0 +170781545197,214,0 +170781545245,214,0 +170781545293,214,0 +170781545341,214,0 +170781545389,214,0 +170781545436,214,0 +170781545484,213,0 +170781545534,213,0 +170781545582,213,0 +170781545629,213,0 +170781545677,213,0 +170781545725,213,0 +170781545773,214,0 +170781545821,213,0 +170781545869,213,0 +170781545918,214,0 +170781545966,214,0 +170781546014,214,0 +170781546062,214,0 +170781546112,214,0 +170781546161,214,0 +170781546209,214,0 +170781546257,214,0 +170781546305,213,0 +170781546353,213,0 +170781546401,213,0 +170781546449,213,0 +170781546498,213,0 +170781546546,213,0 +170781546594,213,0 +170781546644,213,0 +170781546692,213,0 +170781546741,214,0 +170781546789,214,0 +170781546837,214,0 +170781546885,214,0 +170781546933,214,0 +170781546983,214,0 +170781547030,214,0 +170781547078,214,0 +170781547128,214,0 +170781547176,214,0 +170781547224,213,0 +170781547273,213,0 +170781547321,213,0 +170781547371,213,0 +170781547420,213,0 +170781547468,213,0 +170781547517,213,0 +170781547565,214,0 +170781547613,214,0 +170781547663,214,0 +170781547712,214,0 +170781547761,214,0 +170781547809,214,0 +170781547857,214,0 +170781547907,214,0 +170781547956,214,0 +170781548006,214,0 +170781548056,214,0 +170781548103,213,0 +170781548151,213,0 +170781548201,213,0 +170781548249,213,0 +170781548298,213,0 +170781548346,214,0 +170781548394,214,0 +170781548442,214,0 +170781548491,214,0 +170781548541,214,0 +170781548589,214,0 +170781548638,214,0 +170781548688,214,0 +170781548736,215,0 +170781548783,214,0 +170781548833,214,0 +170781548882,214,0 +170781548930,214,0 +170781548978,213,0 +170781549026,213,0 +170781549076,213,0 +170781549125,213,0 +170781549175,213,0 +170781549224,213,0 +170781549273,213,0 +170781549323,213,0 +170781549371,213,0 +170781549419,214,0 +170781549467,214,0 +170781549514,214,0 +170781549562,214,0 +170781549612,214,0 +170781549660,214,0 +170781549709,214,0 +170781549759,214,0 +170781549808,214,0 +170781549856,213,0 +170781549905,213,0 +170781549953,213,0 +170781550001,213,0 +170781550049,213,0 +170781550097,213,0 +170781550145,213,0 +170781550193,213,0 +170781550241,214,0 +170781550288,214,0 +170781550336,214,0 +170781550386,214,0 +170781550434,214,0 +170781550482,214,0 +170781550530,214,0 +170781550579,214,0 +170781550629,214,0 +170781550678,214,0 +170781550726,214,0 +170781550774,213,0 +170781550822,213,0 +170781550871,213,0 +170781550921,213,0 +170781550969,214,0 +170781551017,214,0 +170781551064,214,0 +170781551112,214,0 +170781551160,214,0 +170781551208,214,0 +170781551258,214,0 +170781551307,214,0 +170781551357,214,0 +170781551406,215,0 +170781551454,214,0 +170781551504,214,0 +170781551553,214,0 +170781551601,214,0 +170781551649,214,0 +170781551697,213,0 +170781551746,214,0 +170781551796,214,0 +170781551845,214,0 +170781551893,214,0 +170781551941,214,0 +170781551989,214,0 +170781552037,214,0 +170781552085,214,0 +170781552133,214,0 +170781552182,214,0 +170781552232,214,0 +170781552280,214,0 +170781552327,214,0 +170781552375,214,0 +170781552423,214,0 +170781552471,214,0 +170781552519,213,0 +170781552567,213,0 +170781552616,213,0 +170781552664,214,0 +170781552712,214,0 +170781552760,214,0 +170781552809,214,0 +170781552857,214,0 +170781552905,214,0 +170781552953,214,0 +170781553001,214,0 +170781553049,214,0 +170781553099,214,0 +170781553146,214,0 +170781553196,214,0 +170781553245,214,0 +170781553295,214,0 +170781553343,214,0 +170781553391,214,0 +170781553439,214,0 +170781553488,214,0 +170781553536,214,0 +170781553586,214,0 +170781553634,214,0 +170781553683,214,0 +170781553731,214,0 +170781553780,214,0 +170781553828,214,0 +170781553876,214,0 +170781553926,214,0 +170781553974,214,0 +170781554022,214,0 +170781554071,214,0 +170781554119,214,0 +170781554167,215,0 +170781554216,214,0 +170781554266,214,0 +170781554315,214,0 +170781554363,214,0 +170781554411,214,0 +170781554459,214,0 +170781554507,214,0 +170781554556,214,0 +170781554604,214,0 +170781554652,214,0 +170781554699,214,0 +170781554747,214,0 +170781554795,214,0 +170781554843,214,0 +170781554891,214,0 +170781554940,214,0 +170781554988,214,0 +170781555036,214,0 +170781555086,214,0 +170781555135,213,0 +170781555183,213,0 +170781555231,213,0 +170781555279,213,0 +170781555327,213,0 +170781555374,214,0 +170781555422,214,0 +170781555470,214,0 +170781555518,214,0 +170781555566,214,0 +170781555613,214,0 +170781555661,214,0 +170781555709,214,0 +170781555757,214,0 +170781555805,214,0 +170781555854,214,0 +170781555902,214,0 +170781555950,214,0 +170781555998,214,0 +170781556045,213,0 +170781556095,213,0 +170781556143,213,0 +170781556191,214,0 +170781556238,213,0 +170781556288,213,0 +170781556336,214,0 +170781556384,214,0 +170781556433,214,0 +170781556482,214,0 +170781556530,214,0 +170781556578,214,0 +170781556628,214,0 +170781556675,214,0 +170781556725,214,0 +170781556773,214,0 +170781556821,214,0 +170781556869,214,0 +170781556916,213,0 +170781556964,213,0 +170781557012,213,0 +170781557062,214,0 +170781557110,213,0 +170781557158,214,0 +170781557207,214,0 +170781557255,214,0 +170781557304,214,0 +170781557354,214,0 +170781557403,214,0 +170781557451,214,0 +170781557499,214,0 +170781557547,214,0 +170781557597,214,0 +170781557645,214,0 +170781557694,214,0 +170781557742,214,0 +170781557790,213,0 +170781557839,213,0 +170781557887,213,0 +170781557935,213,0 +170781557983,214,0 +170781558031,214,0 +170781558080,214,0 +170781558128,214,0 +170781558176,214,0 +170781558225,214,0 +170781558273,214,0 +170781558321,214,0 +170781558369,214,0 +170781558419,214,0 +170781558467,214,0 +170781558514,214,0 +170781558562,214,0 +170781558612,214,0 +170781558660,213,0 +170781558707,213,0 +170781558755,213,0 +170781558803,213,0 +170781558851,213,0 +170781558899,214,0 +170781558946,213,0 +170781558994,214,0 +170781559042,214,0 +170781559090,214,0 +170781559139,214,0 +170781559187,214,0 +170781559235,214,0 +170781559284,214,0 +170781559332,214,0 +170781559380,214,0 +170781559428,214,0 +170781559477,214,0 +170781559525,213,0 +170781559573,213,0 +170781559623,214,0 +170781559672,214,0 +170781559720,213,0 +170781559770,214,0 +170781559819,214,0 +170781559869,214,0 +170781559918,214,0 +170781559967,214,0 +170781560017,214,0 +170781560065,214,0 +170781560114,214,0 +170781560164,215,0 +170781560212,214,0 +170781560260,215,0 +170781560308,214,0 +170781560356,214,0 +170781560404,214,0 +170781560453,213,0 +170781560503,213,0 +170781560551,214,0 +170781560599,214,0 +170781560648,214,0 +170781560698,214,0 +170781560747,214,0 +170781560796,214,0 +170781560844,214,0 +170781560892,214,0 +170781560940,214,0 +170781560988,214,0 +170781561036,214,0 +170781561084,214,0 +170781561133,215,0 +170781561182,214,0 +170781561230,215,0 +170781561278,214,0 +170781561327,214,0 +170781561375,213,0 +170781561423,214,0 +170781561471,214,0 +170781561519,213,0 +170781561566,214,0 +170781561614,214,0 +170781561662,214,0 +170781561710,214,0 +170781561760,214,0 +170781561807,215,0 +170781561855,214,0 +170781561905,214,0 +170781561954,214,0 +170781562002,214,0 +170781562050,214,0 +170781562100,214,0 +170781562148,214,0 +170781562197,213,0 +170781562245,213,0 +170781562293,213,0 +170781562341,213,0 +170781562389,214,0 +170781562438,214,0 +170781562488,214,0 +170781562536,214,0 +170781562584,214,0 +170781562633,214,0 +170781562683,214,0 +170781562732,214,0 +170781562780,214,0 +170781562828,214,0 +170781562877,214,0 +170781562927,214,0 +170781562976,214,0 +170781563026,214,0 +170781563075,213,0 +170781563123,213,0 +170781563171,213,0 +170781563221,213,0 +170781563270,213,0 +170781563320,213,0 +170781563368,213,0 +170781563417,213,0 +170781563467,214,0 +170781563515,214,0 +170781563562,214,0 +170781563612,214,0 +170781563660,214,0 +170781563708,214,0 +170781563757,214,0 +170781563807,214,0 +170781563856,214,0 +170781563904,214,0 +170781563954,213,0 +170781564003,213,0 +170781564051,213,0 +170781564099,213,0 +170781564147,213,0 +170781564196,214,0 +170781564244,213,0 +170781564293,213,0 +170781564341,214,0 +170781564389,214,0 +170781564439,214,0 +170781564488,214,0 +170781564537,214,0 +170781564585,214,0 +170781564633,214,0 +170781564681,214,0 +170781564729,214,0 +170781564777,214,0 +170781564826,213,0 +170781564876,213,0 +170781564924,213,0 +170781564972,213,0 +170781565020,213,0 +170781565068,213,0 +170781565116,213,0 +170781565165,214,0 +170781565213,213,0 +170781565261,214,0 +170781565311,214,0 +170781565358,214,0 +170781565408,214,0 +170781565456,214,0 +170781565505,214,0 +170781565555,214,0 +170781565603,214,0 +170781565651,214,0 +170781565699,213,0 +170781565748,213,0 +170781565796,213,0 +170781565846,213,0 +170781565893,213,0 +170781565943,213,0 +170781565991,214,0 +170781566039,213,0 +170781566088,214,0 +170781566138,214,0 +170781566186,214,0 +170781566233,214,0 +170781566282,214,0 +170781566331,214,0 +170781566379,214,0 +170781566427,214,0 +170781566475,214,0 +170781566522,214,0 +170781566570,213,0 +170781566618,213,0 +170781566666,213,0 +170781566714,213,0 +170781566761,213,0 +170781566809,213,0 +170781566857,213,0 +170781566905,214,0 +170781566952,213,0 +170781567000,214,0 +170781567048,214,0 +170781567096,214,0 +170781567144,214,0 +170781567193,214,0 +170781567241,214,0 +170781567289,214,0 +170781567337,214,0 +170781567385,214,0 +170781567433,213,0 +170781567481,213,0 +170781567529,213,0 +170781567577,213,0 +170781567625,213,0 +170781567673,214,0 +170781567720,214,0 +170781567768,214,0 +170781567816,214,0 +170781567864,214,0 +170781567912,214,0 +170781567960,214,0 +170781568008,214,0 +170781568056,214,0 +170781568104,214,0 +170781568153,214,0 +170781568202,214,0 +170781568250,214,0 +170781568300,214,0 +170781568348,214,0 +170781568396,214,0 +170781568444,214,0 +170781568492,214,0 +170781568540,214,0 +170781568587,214,0 +170781568635,214,0 +170781568683,214,0 +170781568733,214,0 +170781568781,214,0 +170781568830,214,0 +170781568880,214,0 +170781568929,214,0 +170781568977,214,0 +170781569025,215,0 +170781569074,214,0 +170781569122,214,0 +170781569170,214,0 +170781569220,214,0 +170781569269,214,0 +170781569317,214,0 +170781569367,214,0 +170781569415,214,0 +170781569464,214,0 +170781569512,214,0 +170781569560,214,0 +170781569607,214,0 +170781569655,214,0 +170781569704,214,0 +170781569752,214,0 +170781569800,214,0 +170781569848,214,0 +170781569896,214,0 +170781569944,214,0 +170781569992,214,0 +170781570040,214,0 +170781570089,214,0 +170781570137,213,0 +170781570185,214,0 +170781570233,214,0 +170781570282,213,0 +170781570332,213,0 +170781570379,214,0 +170781570427,214,0 +170781570475,214,0 +170781570523,214,0 +170781570572,214,0 +170781570620,214,0 +170781570668,214,0 +170781570718,214,0 +170781570767,214,0 +170781570815,214,0 +170781570863,214,0 +170781570913,214,0 +170781570962,213,0 +170781571011,213,0 +170781571059,213,0 +170781571107,214,0 +170781571155,214,0 +170781571203,214,0 +170781571253,214,0 +170781571300,214,0 +170781571348,214,0 +170781571396,214,0 +170781571446,214,0 +170781571494,214,0 +170781571543,214,0 +170781571591,214,0 +170781571640,214,0 +170781571688,215,0 +170781571736,214,0 +170781571786,213,0 +170781571835,214,0 +170781571883,214,0 +170781571931,214,0 +170781571979,214,0 +170781572027,214,0 +170781572074,214,0 +170781572122,214,0 +170781572170,214,0 +170781572218,214,0 +170781572267,214,0 +170781572317,214,0 +170781572365,214,0 +170781572413,215,0 +170781572461,214,0 +170781572510,214,0 +170781572560,215,0 +170781572609,214,0 +170781572657,213,0 +170781572707,214,0 +170781572755,213,0 +170781572803,214,0 +170781572852,214,0 +170781572900,214,0 +170781572948,214,0 +170781572995,214,0 +170781573043,214,0 +170781573091,214,0 +170781573139,214,0 +170781573187,214,0 +170781573235,214,0 +170781573282,214,0 +170781573330,214,0 +170781573378,214,0 +170781573428,214,0 +170781573476,214,0 +170781573523,213,0 +170781573571,213,0 +170781573619,214,0 +170781573667,214,0 +170781573715,213,0 +170781573763,214,0 +170781573811,214,0 +170781573859,214,0 +170781573908,214,0 +170781573956,214,0 +170781574004,214,0 +170781574052,214,0 +170781574101,214,0 +170781574149,214,0 +170781574197,214,0 +170781574245,214,0 +170781574293,214,0 +170781574341,214,0 +170781574389,213,0 +170781574437,213,0 +170781574484,214,0 +170781574532,214,0 +170781574580,214,0 +170781574628,214,0 +170781574676,214,0 +170781574724,214,0 +170781574772,214,0 +170781574820,214,0 +170781574868,214,0 +170781574915,214,0 +170781574963,214,0 +170781575011,215,0 +170781575059,214,0 +170781575107,214,0 +170781575155,214,0 +170781575203,214,0 +170781575251,213,0 +170781575299,213,0 +170781575346,213,0 +170781575394,213,0 +170781575442,213,0 +170781575490,214,0 +170781575540,214,0 +170781575588,214,0 +170781575635,214,0 +170781575685,214,0 +170781575733,214,0 +170781575782,214,0 +170781575830,214,0 +170781575878,214,0 +170781575927,214,0 +170781575975,215,0 +170781576023,214,0 +170781576071,214,0 +170781576119,213,0 +170781576167,213,0 +170781576216,213,0 +170781576266,213,0 +170781576314,213,0 +170781576362,214,0 +170781576411,214,0 +170781576459,214,0 +170781576507,214,0 +170781576556,214,0 +170781576604,214,0 +170781576652,214,0 +170781576702,214,0 +170781576750,214,0 +170781576799,214,0 +170781576848,214,0 +170781576896,214,0 +170781576944,214,0 +170781576992,213,0 +170781577040,213,0 +170781577088,213,0 +170781577136,213,0 +170781577183,213,0 +170781577231,213,0 +170781577279,213,0 +170781577327,214,0 +170781577375,214,0 +170781577422,214,0 +170781577470,214,0 +170781577518,214,0 +170781577568,214,0 +170781577616,214,0 +170781577664,214,0 +170781577712,214,0 +170781577759,214,0 +170781577809,213,0 +170781577857,213,0 +170781577905,213,0 +170781577953,213,0 +170781578002,213,0 +170781578050,214,0 +170781578098,214,0 +170781578148,213,0 +170781578195,214,0 +170781578243,214,0 +170781578291,214,0 +170781578339,214,0 +170781578387,214,0 +170781578437,214,0 +170781578485,214,0 +170781578534,214,0 +170781578582,214,0 +170781578630,214,0 +170781578678,213,0 +170781578727,213,0 +170781578775,213,0 +170781578823,213,0 +170781578873,213,0 +170781578922,213,0 +170781578970,213,0 +170781579018,213,0 +170781579066,214,0 +170781579114,214,0 +170781579162,214,0 +170781579211,214,0 +170781579259,214,0 +170781579309,214,0 +170781579357,214,0 +170781579405,214,0 +170781579453,214,0 +170781579502,214,0 +170781579550,213,0 +170781579598,213,0 +170781579648,213,0 +170781579696,213,0 +170781579745,213,0 +170781579793,213,0 +170781579841,213,0 +170781579889,214,0 +170781579939,213,0 +170781579986,213,0 +170781580034,214,0 +170781580084,214,0 +170781580132,214,0 +170781580180,214,0 +170781580227,214,0 +170781580275,214,0 +170781580323,214,0 +170781580371,213,0 +170781580419,213,0 +170781580469,213,0 +170781580516,213,0 +170781580564,214,0 +170781580614,214,0 +170781580662,214,0 +170781580710,213,0 +170781580759,214,0 +170781580807,214,0 +170781580855,214,0 +170781580903,214,0 +170781580951,214,0 +170781581000,214,0 +170781581050,214,0 +170781581097,214,0 +170781581145,214,0 +170781581195,214,0 +170781581243,213,0 +170781581292,213,0 +170781581340,213,0 +170781581388,213,0 +170781581437,214,0 +170781581485,214,0 +170781581533,214,0 +170781581583,214,0 +170781581632,214,0 +170781581681,214,0 +170781581731,214,0 +170781581779,214,0 +170781581827,214,0 +170781581876,214,0 +170781581924,215,0 +170781581972,215,0 +170781582021,214,0 +170781582069,214,0 +170781582117,214,0 +170781582165,214,0 +170781582213,213,0 +170781582262,214,0 +170781582310,214,0 +170781582359,214,0 +170781582407,214,0 +170781582455,214,0 +170781582505,214,0 +170781582553,214,0 +170781582600,214,0 +170781582648,214,0 +170781582696,214,0 +170781582746,214,0 +170781582794,214,0 +170781582842,214,0 +170781582890,214,0 +170781582938,214,0 +170781582987,214,0 +170781583036,214,0 +170781583086,214,0 +170781583134,214,0 +170781583182,214,0 +170781583230,214,0 +170781583278,214,0 +170781583327,214,0 +170781583375,214,0 +170781583423,215,0 +170781583471,215,0 +170781583520,215,0 +170781583568,215,0 +170781583616,215,0 +170781583665,215,0 +170781583713,215,0 +170781583761,215,0 +170781583809,215,0 +170781583857,214,0 +170781583906,214,0 +170781583956,215,0 +170781584005,214,0 +170781584055,215,0 +170781584104,215,0 +170781584154,215,0 +170781584202,215,0 +170781584249,215,0 +170781584297,215,0 +170781584347,215,0 +170781584395,215,0 +170781584442,215,0 +170781584492,214,0 +170781584540,214,0 +170781584589,215,0 +170781584637,214,0 +170781584687,214,0 +170781584735,214,0 +170781584782,214,0 +170781584832,214,0 +170781584880,214,0 +170781584927,215,0 +170781584977,214,0 +170781585026,215,0 +170781585076,215,0 +170781585123,215,0 +170781585173,214,0 +170781585222,215,0 +170781585270,215,0 +170781585320,214,0 +170781585368,214,0 +170781585416,214,0 +170781585465,214,0 +170781585515,214,0 +170781585562,214,0 +170781585612,214,0 +170781585660,214,0 +170781585709,214,0 +170781585759,214,0 +170781585808,214,0 +170781585858,214,0 +170781585907,214,0 +170781585957,214,0 +170781586005,214,0 +170781586053,214,0 +170781586101,214,0 +170781586149,214,0 +170781586198,214,0 +170781586246,214,0 +170781586294,214,0 +170781586343,214,0 +170781586393,213,0 +170781586441,214,0 +170781586489,213,0 +170781586538,214,0 +170781586588,214,0 +170781586636,214,0 +170781586684,214,0 +170781586732,214,0 +170781586779,214,0 +170781586827,214,0 +170781586875,214,0 +170781586925,214,0 +170781586973,214,0 +170781587020,214,0 +170781587070,214,0 +170781587118,215,0 +170781587166,214,0 +170781587214,214,0 +170781587262,214,0 +170781587311,213,0 +170781587359,214,0 +170781587409,214,0 +170781587458,214,0 +170781587508,214,0 +170781587555,214,0 +170781587605,214,0 +170781587654,215,0 +170781587704,215,0 +170781587753,215,0 +170781587801,214,0 +170781587849,215,0 +170781587897,214,0 +170781587945,214,0 +170781587993,214,0 +170781588041,214,0 +170781588091,213,0 +170781588140,214,0 +170781588190,214,0 +170781588238,213,0 +170781588287,214,0 +170781588337,214,0 +170781588386,214,0 +170781588434,214,0 +170781588482,214,0 +170781588532,214,0 +170781588580,214,0 +170781588629,214,0 +170781588677,214,0 +170781588725,214,0 +170781588773,215,0 +170781588822,214,0 +170781588872,214,0 +170781588920,213,0 +170781588969,213,0 +170781589017,213,0 +170781589065,213,0 +170781589113,214,0 +170781589161,214,0 +170781589211,214,0 +170781589259,214,0 +170781589306,214,0 +170781589356,214,0 +170781589404,214,0 +170781589452,214,0 +170781589500,214,0 +170781589549,214,0 +170781589597,214,0 +170781589645,215,0 +170781589693,214,0 +170781589741,214,0 +170781589790,213,0 +170781589840,213,0 +170781589888,213,0 +170781589936,213,0 +170781589984,213,0 +170781590031,214,0 +170781590079,214,0 +170781590129,214,0 +170781590178,214,0 +170781590226,214,0 +170781590276,214,0 +170781590325,214,0 +170781590375,214,0 +170781590423,214,0 +170781590471,214,0 +170781590519,214,0 +170781590568,214,0 +170781590618,213,0 +170781590667,214,0 +170781590717,213,0 +170781590764,213,0 +170781590812,214,0 +170781590860,214,0 +170781590908,214,0 +170781590956,214,0 +170781591004,214,0 +170781591054,214,0 +170781591102,214,0 +170781591149,214,0 +170781591197,214,0 +170781591245,215,0 +170781591293,214,0 +170781591343,214,0 +170781591391,214,0 +170781591438,214,0 +170781591486,213,0 +170781591536,213,0 +170781591585,214,0 +170781591633,214,0 +170781591681,214,0 +170781591731,214,0 +170781591779,214,0 +170781591827,214,0 +170781591874,214,0 +170781591924,214,0 +170781591972,214,0 +170781592020,214,0 +170781592068,214,0 +170781592116,214,0 +170781592165,214,0 +170781592214,214,0 +170781592262,214,0 +170781592309,214,0 +170781592357,214,0 +170781592407,213,0 +170781592455,213,0 +170781592503,213,0 +170781592552,214,0 +170781592601,214,0 +170781592649,214,0 +170781592697,214,0 +170781592745,214,0 +170781592793,214,0 +170781592841,214,0 +170781592890,214,0 +170781592938,214,0 +170781592986,214,0 +170781593035,215,0 +170781593083,215,0 +170781593131,214,0 +170781593179,213,0 +170781593226,213,0 +170781593274,214,0 +170781593322,214,0 +170781593370,214,0 +170781593418,214,0 +170781593466,214,0 +170781593514,214,0 +170781593561,214,0 +170781593609,214,0 +170781593657,214,0 +170781593705,214,0 +170781593753,214,0 +170781593800,215,0 +170781593848,215,0 +170781593896,214,0 +170781593944,214,0 +170781593992,214,0 +170781594039,213,0 +170781594089,213,0 +170781594137,213,0 +170781594184,213,0 +170781594232,213,0 +170781594280,213,0 +170781594328,214,0 +170781594377,214,0 +170781594425,214,0 +170781594473,214,0 +170781594521,214,0 +170781594569,214,0 +170781594616,214,0 +170781594664,214,0 +170781594712,214,0 +170781594760,214,0 +170781594808,214,0 +170781594855,214,0 +170781594903,213,0 +170781594951,213,0 +170781594999,213,0 +170781595047,213,0 +170781595096,213,0 +170781595144,214,0 +170781595192,214,0 +170781595240,214,0 +170781595287,214,0 +170781595335,214,0 +170781595385,214,0 +170781595433,214,0 +170781595480,214,0 +170781595528,214,0 +170781595576,214,0 +170781595624,214,0 +170781595672,214,0 +170781595720,213,0 +170781595767,213,0 +170781595815,213,0 +170781595863,213,0 +170781595911,213,0 +170781595959,213,0 +170781596006,213,0 +170781596054,214,0 +170781596102,214,0 +170781596150,213,0 +170781596199,214,0 +170781596247,214,0 +170781596295,214,0 +170781596343,214,0 +170781596390,214,0 +170781596438,214,0 +170781596486,214,0 +170781596536,214,0 +170781596585,213,0 +170781596633,213,0 +170781596681,213,0 +170781596729,214,0 +170781596777,213,0 +170781596825,214,0 +170781596872,214,0 +170781596920,214,0 +170781596970,214,0 +170781597018,214,0 +170781597067,214,0 +170781597115,214,0 +170781597164,214,0 +170781597212,214,0 +170781597260,214,0 +170781597308,214,0 +170781597357,214,0 +170781597407,214,0 +170781597455,214,0 +170781597504,213,0 +170781597552,213,0 +170781597600,214,0 +170781597648,214,0 +170781597697,214,0 +170781597745,214,0 +170781597793,214,0 +170781597841,214,0 +170781597889,214,0 +170781597938,214,0 +170781597988,214,0 +170781598036,214,0 +170781598085,214,0 +170781598135,214,0 +170781598183,214,0 +170781598231,214,0 +170781598279,214,0 +170781598326,214,0 +170781598374,214,0 +170781598422,214,0 +170781598470,214,0 +170781598518,214,0 +170781598567,214,0 +170781598615,214,0 +170781598663,214,0 +170781598712,215,0 +170781598760,214,0 +170781598808,214,0 +170781598858,214,0 +170781598906,215,0 +170781598954,214,0 +170781599003,214,0 +170781599051,214,0 +170781599101,214,0 +170781599148,214,0 +170781599196,214,0 +170781599246,214,0 +170781599295,214,0 +170781599343,214,0 +170781599393,214,0 +170781599441,214,0 +170781599489,215,0 +170781599538,215,0 +170781599586,214,0 +170781599636,215,0 +170781599685,214,0 +170781599735,214,0 +170781599784,214,0 +170781599832,215,0 +170781599880,214,0 +170781599928,215,0 +170781599977,214,0 +170781600027,214,0 +170781600075,214,0 +170781600123,214,0 +170781600170,214,0 +170781600220,214,0 +170781600268,214,0 +170781600317,214,0 +170781600365,215,0 +170781600413,214,0 +170781600461,214,0 +170781600510,215,0 +170781600558,215,0 +170781600606,214,0 +170781600654,214,0 +170781600702,215,0 +170781600750,214,0 +170781600798,214,0 +170781600847,214,0 +170781600895,214,0 +170781600943,214,0 +170781600991,214,0 +170781601039,214,0 +170781601088,214,0 +170781601136,214,0 +170781601185,214,0 +170781601233,214,0 +170781601281,214,0 +170781601331,214,0 +170781601378,214,0 +170781601426,214,0 +170781601474,215,0 +170781601522,214,0 +170781601570,214,0 +170781601618,214,0 +170781601667,213,0 +170781601715,214,0 +170781601763,214,0 +170781601811,214,0 +170781601859,214,0 +170781601908,214,0 +170781601956,214,0 +170781602004,214,0 +170781602052,214,0 +170781602102,214,0 +170781602149,214,0 +170781602197,215,0 +170781602245,215,0 +170781602293,215,0 +170781602341,215,0 +170781602388,214,0 +170781602436,214,0 +170781602484,214,0 +170781602532,213,0 +170781602580,214,0 +170781602628,214,0 +170781602676,214,0 +170781602723,214,0 +170781602771,214,0 +170781602819,214,0 +170781602867,214,0 +170781602915,214,0 +170781602963,214,0 +170781603013,215,0 +170781603062,215,0 +170781603110,214,0 +170781603158,215,0 +170781603206,214,0 +170781603254,214,0 +170781603303,214,0 +170781603351,213,0 +170781603399,213,0 +170781603447,213,0 +170781603496,213,0 +170781603544,213,0 +170781603592,213,0 +170781603642,213,0 +170781603690,214,0 +170781603739,214,0 +170781603787,214,0 +170781603835,214,0 +170781603883,214,0 +170781603931,214,0 +170781603980,214,0 +170781604028,214,0 +170781604078,214,0 +170781604126,214,0 +170781604174,213,0 +170781604221,213,0 +170781604271,213,0 +170781604319,213,0 +170781604367,213,0 +170781604415,213,0 +170781604462,213,0 +170781604510,214,0 +170781604560,214,0 +170781604607,214,0 +170781604655,214,0 +170781604705,214,0 +170781604753,214,0 +170781604801,214,0 +170781604850,214,0 +170781604900,214,0 +170781604947,215,0 +170781604997,213,0 +170781605045,213,0 +170781605094,214,0 +170781605142,214,0 +170781605190,214,0 +170781605238,214,0 +170781605287,214,0 +170781605335,214,0 +170781605383,214,0 +170781605433,214,0 +170781605481,214,0 +170781605529,214,0 +170781605578,215,0 +170781605626,214,0 +170781605674,214,0 +170781605722,214,0 +170781605770,214,0 +170781605818,213,0 +170781605867,213,0 +170781605917,214,0 +170781605966,214,0 +170781606015,214,0 +170781606063,214,0 +170781606111,214,0 +170781606159,214,0 +170781606207,214,0 +170781606255,214,0 +170781606304,214,0 +170781606354,214,0 +170781606402,214,0 +170781606450,214,0 +170781606498,214,0 +170781606546,214,0 +170781606593,215,0 +170781606641,214,0 +170781606689,213,0 +170781606739,214,0 +170781606788,214,0 +170781606838,214,0 +170781606886,214,0 +170781606934,214,0 +170781606983,214,0 +170781607031,214,0 +170781607080,214,0 +170781607130,214,0 +170781607178,214,0 +170781607225,214,0 +170781607275,214,0 +170781607323,214,0 +170781607371,214,0 +170781607419,214,0 +170781607467,214,0 +170781607514,214,0 +170781607562,214,0 +170781607612,214,0 +170781607660,214,0 +170781607707,214,0 +170781607755,214,0 +170781607803,214,0 +170781607851,214,0 +170781607899,214,0 +170781607947,214,0 +170781607996,215,0 +170781608044,214,0 +170781608094,214,0 +170781608142,214,0 +170781608189,214,0 +170781608237,214,0 +170781608285,214,0 +170781608335,214,0 +170781608383,214,0 +170781608431,214,0 +170781608479,214,0 +170781608526,214,0 +170781608574,214,0 +170781608622,214,0 +170781608670,214,0 +170781608718,214,0 +170781608766,214,0 +170781608814,214,0 +170781608862,215,0 +170781608909,214,0 +170781608959,215,0 +170781609007,215,0 +170781609055,215,0 +170781609103,214,0 +170781609151,214,0 +170781609198,214,0 +170781609246,214,0 +170781609294,214,0 +170781609342,214,0 +170781609392,214,0 +170781609441,214,0 +170781609489,214,0 +170781609539,214,0 +170781609586,214,0 +170781609634,214,0 +170781609684,215,0 +170781609732,215,0 +170781609780,215,0 +170781609828,214,0 +170781609877,215,0 +170781609925,215,0 +170781609973,214,0 +170781610021,213,0 +170781610070,213,0 +170781610118,213,0 +170781610166,213,0 +170781610214,214,0 +170781610262,214,0 +170781610309,214,0 +170781610357,214,0 +170781610405,214,0 +170781610453,214,0 +170781610501,214,0 +170781610549,214,0 +170781610597,214,0 +170781610645,214,0 +170781610693,214,0 +170781610740,214,0 +170781610788,214,0 +170781610836,213,0 +170781610884,213,0 +170781610932,213,0 +170781610981,213,0 +170781611029,214,0 +170781611077,213,0 +170781611126,214,0 +170781611174,214,0 +170781611222,214,0 +170781611272,214,0 +170781611319,214,0 +170781611367,214,0 +170781611415,214,0 +170781611464,214,0 +170781611512,214,0 +170781611560,214,0 +170781611608,214,0 +170781611656,214,0 +170781611704,213,0 +170781611752,213,0 +170781611801,214,0 +170781611851,214,0 +170781611900,214,0 +170781611950,214,0 +170781611998,214,0 +170781612047,214,0 +170781612097,214,0 +170781612146,214,0 +170781612194,214,0 +170781612242,214,0 +170781612290,214,0 +170781612338,214,0 +170781612385,214,0 +170781612435,214,0 +170781612483,214,0 +170781612531,214,0 +170781612580,214,0 +170781612630,214,0 +170781612678,214,0 +170781612726,214,0 +170781612775,214,0 +170781612825,214,0 +170781612873,214,0 +170781612921,214,0 +170781612969,214,0 +170781613016,214,0 +170781613064,214,0 +170781613112,214,0 +170781613160,214,0 +170781613208,214,0 +170781613257,214,0 +170781613305,214,0 +170781613353,214,0 +170781613401,214,0 +170781613449,214,0 +170781613498,214,0 +170781613548,214,0 +170781613596,214,0 +170781613643,214,0 +170781613691,214,0 +170781613739,215,0 +170781613787,215,0 +170781613835,215,0 +170781613883,214,0 +170781613932,214,0 +170781613980,215,0 +170781614028,214,0 +170781614075,214,0 +170781614123,214,0 +170781614171,213,0 +170781614219,213,0 +170781614267,214,0 +170781614315,214,0 +170781614364,214,0 +170781614412,214,0 +170781614460,214,0 +170781614508,214,0 +170781614555,214,0 +170781614603,214,0 +170781614653,214,0 +170781614701,214,0 +170781614748,214,0 +170781614796,214,0 +170781614844,214,0 +170781614892,214,0 +170781614940,214,0 +170781614988,213,0 +170781615035,213,0 +170781615083,214,0 +170781615131,214,0 +170781615181,214,0 +170781615229,214,0 +170781615278,214,0 +170781615326,214,0 +170781615374,214,0 +170781615422,214,0 +170781615472,214,0 +170781615519,214,0 +170781615567,214,0 +170781615615,214,0 +170781615663,214,0 +170781615711,214,0 +170781615761,214,0 +170781615809,213,0 +170781615858,213,0 +170781615906,213,0 +170781615954,214,0 +170781616003,214,0 +170781616053,214,0 +170781616101,214,0 +170781616149,214,0 +170781616198,214,0 +170781616248,214,0 +170781616296,214,0 +170781616344,214,0 +170781616391,214,0 +170781616439,214,0 +170781616487,214,0 +170781616535,214,0 +170781616585,214,0 +170781616633,214,0 +170781616682,213,0 +170781616732,214,0 +170781616780,213,0 +170781616827,214,0 +170781616875,214,0 +170781616923,214,0 +170781616971,214,0 +170781617021,214,0 +170781617070,214,0 +170781617120,214,0 +170781617168,214,0 +170781617215,214,0 +170781617265,214,0 +170781617313,214,0 +170781617362,214,0 +170781617412,214,0 +170781617459,213,0 +170781617509,213,0 +170781617557,213,0 +170781617606,214,0 +170781617656,213,0 +170781617704,214,0 +170781617752,214,0 +170781617800,214,0 +170781617848,214,0 +170781617895,214,0 +170781617943,214,0 +170781617991,214,0 +170781618039,214,0 +170781618088,214,0 +170781618136,215,0 +170781618184,214,0 +170781618232,214,0 +170781618280,214,0 +170781618328,214,0 +170781618378,214,0 +170781618427,214,0 +170781618476,214,0 +170781618524,214,0 +170781618572,214,0 +170781618620,214,0 +170781618668,214,0 +170781618716,214,0 +170781618763,214,0 +170781618811,214,0 +170781618859,214,0 +170781618907,215,0 +170781618956,215,0 +170781619004,214,0 +170781619052,214,0 +170781619102,214,0 +170781619150,214,0 +170781619197,214,0 +170781619245,214,0 +170781619293,214,0 +170781619343,214,0 +170781619391,214,0 +170781619438,214,0 +170781619486,214,0 +170781619534,214,0 +170781619582,215,0 +170781619630,215,0 +170781619678,214,0 +170781619725,215,0 +170781619773,215,0 +170781619821,215,0 +170781619869,215,0 +170781619917,214,0 +170781619965,214,0 +170781620013,214,0 +170781620060,214,0 +170781620108,214,0 +170781620156,214,0 +170781620204,214,0 +170781620252,214,0 +170781620300,214,0 +170781620349,215,0 +170781620399,215,0 +170781620447,215,0 +170781620494,215,0 +170781620542,215,0 +170781620590,215,0 +170781620638,215,0 +170781620686,215,0 +170781620734,214,0 +170781620782,214,0 +170781620829,214,0 +170781620877,214,0 +170781620925,214,0 +170781620973,214,0 +170781621021,214,0 +170781621069,214,0 +170781621118,214,0 +170781621166,215,0 +170781621214,215,0 +170781621262,215,0 +170781621310,215,0 +170781621357,214,0 +170781621405,215,0 +170781621453,215,0 +170781621502,215,0 +170781621550,215,0 +170781621600,214,0 +170781621648,214,0 +170781621697,214,0 +170781621745,214,0 +170781621793,214,0 +170781621841,214,0 +170781621890,214,0 +170781621938,214,0 +170781621986,215,0 +170781622033,215,0 +170781622081,214,0 +170781622129,215,0 +170781622177,215,0 +170781622226,215,0 +170781622274,215,0 +170781622322,215,0 +170781622370,215,0 +170781622418,214,0 +170781622466,214,0 +170781622514,214,0 +170781622561,214,0 +170781622609,214,0 +170781622659,214,0 +170781622708,214,0 +170781622757,214,0 +170781622805,214,0 +170781622853,214,0 +170781622901,215,0 +170781622949,215,0 +170781622998,215,0 +170781623046,214,0 +170781623096,215,0 +170781623145,214,0 +170781623193,214,0 +170781623243,214,0 +170781623292,214,0 +170781623340,214,0 +170781623388,214,0 +170781623436,213,0 +170781623484,214,0 +170781623533,214,0 +170781623581,214,0 +170781623629,214,0 +170781623678,214,0 +170781623727,214,0 +170781623775,214,0 +170781623823,214,0 +170781623871,214,0 +170781623919,214,0 +170781623967,214,0 +170781624015,215,0 +170781624063,214,0 +170781624110,214,0 +170781624158,213,0 +170781624206,214,0 +170781624254,214,0 +170781624302,214,0 +170781624351,214,0 +170781624399,214,0 +170781624447,214,0 +170781624495,214,0 +170781624542,214,0 +170781624590,214,0 +170781624638,214,0 +170781624686,214,0 +170781624734,214,0 +170781624782,214,0 +170781624830,215,0 +170781624878,214,0 +170781624925,214,0 +170781624975,214,0 +170781625024,214,0 +170781625072,214,0 +170781625120,214,0 +170781625170,214,0 +170781625218,214,0 +170781625267,214,0 +170781625315,214,0 +170781625363,214,0 +170781625413,214,0 +170781625460,214,0 +170781625510,214,0 +170781625560,214,0 +170781625607,214,0 +170781625657,214,0 +170781625705,214,0 +170781625753,214,0 +170781625802,214,0 +170781625850,214,0 +170781625898,214,0 +170781625946,214,0 +170781625994,214,0 +170781626044,214,0 +170781626093,214,0 +170781626141,214,0 +170781626190,214,0 +170781626238,214,0 +170781626286,214,0 +170781626336,215,0 +170781626385,215,0 +170781626435,215,0 +170781626483,214,0 +170781626532,214,0 +170781626582,214,0 +170781626629,214,0 +170781626677,214,0 +170781626725,214,0 +170781626773,214,0 +170781626823,214,0 +170781626872,214,0 +170781626920,214,0 +170781626970,215,0 +170781627018,215,0 +170781627066,214,0 +170781627113,215,0 +170781627163,215,0 +170781627212,215,0 +170781627262,215,0 +170781627311,214,0 +170781627359,214,0 +170781627407,213,0 +170781627455,214,0 +170781627503,214,0 +170781627551,214,0 +170781627599,214,0 +170781627646,214,0 +170781627696,214,0 +170781627745,214,0 +170781627795,215,0 +170781627843,214,0 +170781627891,214,0 +170781627938,215,0 +170781627986,214,0 +170781628034,215,0 +170781628084,215,0 +170781628133,214,0 +170781628181,214,0 +170781628230,213,0 +170781628278,213,0 +170781628326,213,0 +170781628374,213,0 +170781628423,213,0 +170781628471,213,0 +170781628519,214,0 +170781628567,213,0 +170781628615,214,0 +170781628663,214,0 +170781628711,214,0 +170781628759,214,0 +170781628807,214,0 +170781628854,214,0 +170781628904,214,0 +170781628953,214,0 +170781629003,214,0 +170781629052,214,0 +170781629100,214,0 +170781629148,214,0 +170781629196,214,0 +170781629244,214,0 +170781629292,215,0 +170781629340,215,0 +170781629389,215,0 +170781629439,214,0 +170781629488,214,0 +170781629538,214,0 +170781629586,214,0 +170781629634,214,0 +170781629683,214,0 +170781629732,214,0 +170781629780,214,0 +170781629828,214,0 +170781629878,214,0 +170781629926,214,0 +170781629975,215,0 +170781630023,215,0 +170781630071,214,0 +170781630119,215,0 +170781630167,215,0 +170781630215,214,0 +170781630263,214,0 +170781630312,214,0 +170781630362,214,0 +170781630410,214,0 +170781630459,214,0 +170781630507,214,0 +170781630555,214,0 +170781630604,214,0 +170781630652,214,0 +170781630702,214,0 +170781630750,214,0 +170781630798,215,0 +170781630847,215,0 +170781630895,215,0 +170781630945,215,0 +170781630994,215,0 +170781631042,215,0 +170781631090,214,0 +170781631138,214,0 +170781631186,214,0 +170781631233,214,0 +170781631281,214,0 +170781631329,214,0 +170781631377,214,0 +170781631426,214,0 +170781631474,215,0 +170781631522,214,0 +170781631570,214,0 +170781631618,215,0 +170781631665,215,0 +170781631713,215,0 +170781631761,215,0 +170781631809,215,0 +170781631857,214,0 +170781631905,214,0 +170781631952,214,0 +170781632000,214,0 +170781632048,214,0 +170781632098,214,0 +170781632145,214,0 +170781632193,214,0 +170781632241,214,0 +170781632289,214,0 +170781632337,215,0 +170781632385,215,0 +170781632433,215,0 +170781632482,215,0 +170781632530,214,0 +170781632578,214,0 +170781632626,215,0 +170781632674,214,0 +170781632721,214,0 +170781632769,213,0 +170781632817,214,0 +170781632865,214,0 +170781632915,214,0 +170781632964,214,0 +170781633012,214,0 +170781633060,214,0 +170781633108,214,0 +170781633156,214,0 +170781633204,214,0 +170781633253,214,0 +170781633301,215,0 +170781633349,215,0 +170781633397,215,0 +170781633445,215,0 +170781633492,214,0 +170781633542,213,0 +170781633590,213,0 +170781633638,213,0 +170781633686,214,0 +170781633735,214,0 +170781633784,214,0 +170781633832,214,0 +170781633880,214,0 +170781633928,214,0 +170781633978,214,0 +170781634026,214,0 +170781634073,214,0 +170781634121,214,0 +170781634169,214,0 +170781634219,214,0 +170781634267,215,0 +170781634315,214,0 +170781634363,214,0 +170781634411,214,0 +170781634460,214,0 +170781634508,214,0 +170781634558,214,0 +170781634606,214,0 +170781634653,214,0 +170781634701,214,0 +170781634749,214,0 +170781634797,214,0 +170781634847,214,0 +170781634895,214,0 +170781634944,214,0 +170781634992,214,0 +170781635041,214,0 +170781635089,215,0 +170781635137,214,0 +170781635185,213,0 +170781635234,214,0 +170781635282,214,0 +170781635332,214,0 +170781635380,214,0 +170781635427,214,0 +170781635475,214,0 +170781635523,214,0 +170781635571,214,0 +170781635619,214,0 +170781635667,214,0 +170781635716,214,0 +170781635764,214,0 +170781635813,214,0 +170781635861,215,0 +170781635909,214,0 +170781635957,213,0 +170781636005,214,0 +170781636053,214,0 +170781636100,214,0 +170781636148,214,0 +170781636196,214,0 +170781636244,214,0 +170781636292,214,0 +170781636340,214,0 +170781636388,214,0 +170781636437,214,0 +170781636486,214,0 +170781636534,214,0 +170781636582,214,0 +170781636630,215,0 +170781636678,214,0 +170781636727,214,0 +170781636775,213,0 +170781636823,213,0 +170781636871,213,0 +170781636920,214,0 +170781636968,214,0 +170781637016,214,0 +170781637064,214,0 +170781637112,214,0 +170781637159,214,0 +170781637209,214,0 +170781637257,214,0 +170781637305,214,0 +170781637354,214,0 +170781637402,214,0 +170781637449,214,0 +170781637497,214,0 +170781637545,214,0 +170781637593,213,0 +170781637642,213,0 +170781637690,213,0 +170781637738,213,0 +170781637786,214,0 +170781637835,214,0 +170781637885,214,0 +170781637934,214,0 +170781637982,214,0 +170781638030,214,0 +170781638078,214,0 +170781638126,214,0 +170781638174,214,0 +170781638221,214,0 +170781638269,214,0 +170781638317,214,0 +170781638367,214,0 +170781638414,214,0 +170781638462,214,0 +170781638510,214,0 +170781638559,214,0 +170781638607,214,0 +170781638655,214,0 +170781638703,214,0 +170781638751,215,0 +170781638799,214,0 +170781638846,215,0 +170781638894,215,0 +170781638942,215,0 +170781638990,215,0 +170781639038,215,0 +170781639086,214,0 +170781639134,214,0 +170781639182,214,0 +170781639229,214,0 +170781639277,214,0 +170781639325,214,0 +170781639373,214,0 +170781639421,215,0 +170781639469,214,0 +170781639516,214,0 +170781639566,215,0 +170781639614,215,0 +170781639662,215,0 +170781639710,215,0 +170781639757,215,0 +170781639805,215,0 +170781639853,215,0 +170781639903,215,0 +170781639950,215,0 +170781639998,215,0 +170781640048,215,0 +170781640095,215,0 +170781640143,215,0 +170781640191,215,0 +170781640239,215,0 +170781640287,215,0 +170781640335,215,0 +170781640383,215,0 +170781640430,215,0 +170781640478,214,0 +170781640526,215,0 +170781640574,215,0 +170781640622,215,0 +170781640670,215,0 +170781640717,214,0 +170781640767,214,0 +170781640815,214,0 +170781640862,214,0 +170781640910,214,0 +170781640958,214,0 +170781641006,214,0 +170781641055,214,0 +170781641105,215,0 +170781641152,214,0 +170781641200,214,0 +170781641248,215,0 +170781641296,215,0 +170781641344,214,0 +170781641392,214,0 +170781641439,214,0 +170781641487,214,0 +170781641535,214,0 +170781641583,214,0 +170781641631,214,0 +170781641679,214,0 +170781641727,214,0 +170781641776,214,0 +170781641824,214,0 +170781641872,214,0 +170781641919,214,0 +170781641967,214,0 +170781642015,214,0 +170781642063,215,0 +170781642111,215,0 +170781642159,215,0 +170781642206,215,0 +170781642254,214,0 +170781642302,215,0 +170781642350,215,0 +170781642398,214,0 +170781642446,214,0 +170781642494,214,0 +170781642543,214,0 +170781642591,214,0 +170781642639,214,0 +170781642687,214,0 +170781642734,214,0 +170781642784,214,0 +170781642832,214,0 +170781642880,214,0 +170781642927,215,0 +170781642975,215,0 +170781643023,215,0 +170781643072,215,0 +170781643120,215,0 +170781643168,214,0 +170781643217,214,0 +170781643265,214,0 +170781643313,214,0 +170781643363,214,0 +170781643410,214,0 +170781643458,214,0 +170781643506,214,0 +170781643554,214,0 +170781643603,214,0 +170781643651,214,0 +170781643699,214,0 +170781643747,215,0 +170781643796,215,0 +170781643844,215,0 +170781643892,214,0 +170781643940,215,0 +170781643988,214,0 +170781644036,214,0 +170781644084,214,0 +170781644131,213,0 +170781644179,214,0 +170781644227,214,0 +170781644275,214,0 +170781644324,214,0 +170781644372,214,0 +170781644422,214,0 +170781644471,214,0 +170781644519,214,0 +170781644569,214,0 +170781644617,214,0 +170781644665,214,0 +170781644713,215,0 +170781644761,215,0 +170781644808,214,0 +170781644856,214,0 +170781644904,213,0 +170781644952,214,0 +170781645000,214,0 +170781645049,214,0 +170781645097,214,0 +170781645147,214,0 +170781645194,214,0 +170781645242,214,0 +170781645290,214,0 +170781645338,214,0 +170781645386,214,0 +170781645434,214,0 +170781645483,215,0 +170781645531,215,0 +170781645580,215,0 +170781645628,214,0 +170781645678,213,0 +170781645725,214,0 +170781645773,214,0 +170781645821,214,0 +170781645869,214,0 +170781645917,214,0 +170781645966,214,0 +170781646014,214,0 +170781646064,214,0 +170781646111,214,0 +170781646159,214,0 +170781646207,214,0 +170781646255,214,0 +170781646303,214,0 +170781646351,214,0 +170781646398,215,0 +170781646446,214,0 +170781646494,213,0 +170781646542,213,0 +170781646590,213,0 +170781646637,213,0 +170781646687,214,0 +170781646736,214,0 +170781646784,214,0 +170781646834,214,0 +170781646883,214,0 +170781646931,214,0 +170781646979,214,0 +170781647027,214,0 +170781647074,215,0 +170781647122,214,0 +170781647170,214,0 +170781647218,215,0 +170781647267,214,0 +170781647315,213,0 +170781647365,213,0 +170781647414,213,0 +170781647462,213,0 +170781647510,214,0 +170781647558,213,0 +170781647606,214,0 +170781647654,214,0 +170781647702,214,0 +170781647750,214,0 +170781647799,214,0 +170781647847,214,0 +170781647895,214,0 +170781647944,214,0 +170781647994,214,0 +170781648042,214,0 +170781648090,213,0 +170781648139,213,0 +170781648187,213,0 +170781648235,213,0 +170781648285,213,0 +170781648334,213,0 +170781648382,213,0 +170781648430,213,0 +170781648480,214,0 +170781648529,214,0 +170781648579,214,0 +170781648626,214,0 +170781648676,214,0 +170781648724,214,0 +170781648772,214,0 +170781648821,214,0 +170781648869,214,0 +170781648917,213,0 +170781648965,214,0 +170781649013,213,0 +170781649061,213,0 +170781649109,214,0 +170781649157,213,0 +170781649206,214,0 +170781649254,214,0 +170781649302,214,0 +170781649350,214,0 +170781649398,214,0 +170781649447,214,0 +170781649495,214,0 +170781649543,214,0 +170781649591,214,0 +170781649639,214,0 +170781649687,214,0 +170781649735,213,0 +170781649783,214,0 +170781649831,214,0 +170781649879,214,0 +170781649927,214,0 +170781649976,214,0 +170781650024,214,0 +170781650074,214,0 +170781650122,214,0 +170781650170,214,0 +170781650218,214,0 +170781650267,214,0 +170781650317,214,0 +170781650365,214,0 +170781650413,214,0 +170781650461,214,0 +170781650508,213,0 +170781650556,214,0 +170781650606,213,0 +170781650655,214,0 +170781650705,214,0 +170781650754,214,0 +170781650802,214,0 +170781650852,214,0 +170781650900,214,0 +170781650948,214,0 +170781650996,214,0 +170781651044,214,0 +170781651093,214,0 +170781651143,214,0 +170781651191,214,0 +170781651240,214,0 +170781651288,214,0 +170781651336,214,0 +170781651385,214,0 +170781651435,214,0 +170781651484,214,0 +170781651534,214,0 +170781651583,214,0 +170781651631,214,0 +170781651679,214,0 +170781651728,214,0 +170781651776,215,0 +170781651824,214,0 +170781651872,215,0 +170781651920,215,0 +170781651968,215,0 +170781652016,214,0 +170781652065,214,0 +170781652113,214,0 +170781652161,215,0 +170781652211,215,0 +170781652260,215,0 +170781652310,214,0 +170781652358,215,0 +170781652406,215,0 +170781652455,215,0 +170781652503,215,0 +170781652553,215,0 +170781652602,215,0 +170781652650,215,0 +170781652700,214,0 +170781652747,215,0 +170781652795,215,0 +170781652843,214,0 +170781652891,214,0 +170781652941,214,0 +170781652988,214,0 +170781653036,214,0 +170781653084,214,0 +170781653134,214,0 +170781653182,214,0 +170781653231,214,0 +170781653279,214,0 +170781653327,214,0 +170781653375,214,0 +170781653423,215,0 +170781653471,215,0 +170781653521,215,0 +170781653569,214,0 +170781653617,214,0 +170781653666,214,0 +170781653714,215,0 +170781653762,214,0 +170781653812,214,0 +170781653861,214,0 +170781653909,214,0 +170781653958,214,0 +170781654006,214,0 +170781654056,214,0 +170781654104,214,0 +170781654151,214,0 +170781654199,214,0 +170781654249,215,0 +170781654298,214,0 +170781654346,215,0 +170781654394,215,0 +170781654442,215,0 +170781654490,214,0 +170781654538,214,0 +170781654586,214,0 +170781654635,214,0 +170781654685,214,0 +170781654733,214,0 +170781654781,214,0 +170781654829,214,0 +170781654878,214,0 +170781654926,214,0 +170781654974,214,0 +170781655022,214,0 +170781655070,215,0 +170781655117,215,0 +170781655165,215,0 +170781655215,214,0 +170781655264,214,0 +170781655312,214,0 +170781655360,214,0 +170781655410,214,0 +170781655459,214,0 +170781655507,214,0 +170781655555,214,0 +170781655604,214,0 +170781655652,214,0 +170781655702,214,0 +170781655750,214,0 +170781655799,214,0 +170781655849,215,0 +170781655897,215,0 +170781655946,214,0 +170781655996,214,0 +170781656044,215,0 +170781656093,215,0 +170781656142,214,0 +170781656190,214,0 +170781656238,214,0 +170781656286,214,0 +170781656335,214,0 +170781656384,214,0 +170781656432,214,0 +170781656480,214,0 +170781656528,215,0 +170781656575,215,0 +170781656625,215,0 +170781656673,215,0 +170781656721,215,0 +170781656770,215,0 +170781656818,215,0 +170781656866,215,0 +170781656914,215,0 +170781656963,214,0 +170781657011,214,0 +170781657061,214,0 +170781657110,214,0 +170781657158,214,0 +170781657206,214,0 +170781657256,214,0 +170781657304,214,0 +170781657352,214,0 +170781657401,214,0 +170781657449,214,0 +170781657497,214,0 +170781657545,214,0 +170781657594,214,0 +170781657643,214,0 +170781657691,214,0 +170781657739,214,0 +170781657787,213,0 +170781657835,213,0 +170781657885,214,0 +170781657934,214,0 +170781657982,214,0 +170781658030,214,0 +170781658080,214,0 +170781658128,214,0 +170781658175,214,0 +170781658223,214,0 +170781658271,214,0 +170781658321,214,0 +170781658369,214,0 +170781658418,215,0 +170781658466,215,0 +170781658514,214,0 +170781658562,214,0 +170781658610,214,0 +170781658658,214,0 +170781658706,214,0 +170781658754,214,0 +170781658802,214,0 +170781658850,214,0 +170781658898,214,0 +170781658947,214,0 +170781658997,214,0 +170781659046,214,0 +170781659094,214,0 +170781659144,215,0 +170781659192,215,0 +170781659239,215,0 +170781659289,215,0 +170781659338,215,0 +170781659386,213,0 +170781659434,213,0 +170781659483,214,0 +170781659533,214,0 +170781659581,214,0 +170781659628,214,0 +170781659676,214,0 +170781659724,214,0 +170781659772,214,0 +170781659822,214,0 +170781659870,215,0 +170781659917,214,0 +170781659965,215,0 +170781660013,214,0 +170781660061,215,0 +170781660111,214,0 +170781660159,214,0 +170781660206,214,0 +170781660254,214,0 +170781660302,214,0 +170781660352,213,0 +170781660399,214,0 +170781660447,214,0 +170781660495,214,0 +170781660543,214,0 +170781660591,214,0 +170781660639,214,0 +170781660687,214,0 +170781660736,215,0 +170781660784,215,0 +170781660832,215,0 +170781660880,215,0 +170781660928,214,0 +170781660976,214,0 +170781661025,213,0 +170781661073,214,0 +170781661121,214,0 +170781661171,214,0 +170781661219,214,0 +170781661268,214,0 +170781661316,214,0 +170781661364,214,0 +170781661413,214,0 +170781661461,214,0 +170781661509,214,0 +170781661557,215,0 +170781661607,215,0 +170781661655,215,0 +170781661703,214,0 +170781661751,215,0 +170781661800,214,0 +170781661850,214,0 +170781661897,214,0 +170781661945,214,0 +170781661995,214,0 +170781662043,214,0 +170781662091,214,0 +170781662140,214,0 +170781662190,214,0 +170781662238,215,0 +170781662286,214,0 +170781662334,214,0 +170781662381,214,0 +170781662431,215,0 +170781662480,213,0 +170781662528,215,0 +170781662578,214,0 +170781662626,214,0 +170781662674,214,0 +170781662722,214,0 +170781662771,214,0 +170781662819,214,0 +170781662867,214,0 +170781662917,214,0 +170781662965,214,0 +170781663014,214,0 +170781663064,214,0 +170781663112,214,0 +170781663159,214,0 +170781663209,214,0 +170781663257,215,0 +170781663306,215,0 +170781663356,214,0 +170781663403,214,0 +170781663451,214,0 +170781663499,214,0 +170781663547,214,0 +170781663595,214,0 +170781663642,214,0 +170781663690,214,0 +170781663738,215,0 +170781663786,214,0 +170781663834,215,0 +170781663881,214,0 +170781663929,215,0 +170781663977,214,0 +170781664025,214,0 +170781664073,215,0 +170781664120,214,0 +170781664168,214,0 +170781664216,215,0 +170781664264,214,0 +170781664312,214,0 +170781664359,215,0 +170781664407,215,0 +170781664455,215,0 +170781664503,215,0 +170781664551,215,0 +170781664599,215,0 +170781664648,215,0 +170781664696,214,0 +170781664744,214,0 +170781664792,215,0 +170781664839,214,0 +170781664887,215,0 +170781664935,214,0 +170781664983,214,0 +170781665030,214,0 +170781665078,214,0 +170781665126,214,0 +170781665174,214,0 +170781665222,214,0 +170781665269,214,0 +170781665317,214,0 +170781665365,214,0 +170781665413,215,0 +170781665462,215,0 +170781665510,214,0 +170781665558,215,0 +170781665606,215,0 +170781665654,215,0 +170781665702,215,0 +170781665750,214,0 +170781665799,214,0 +170781665847,214,0 +170781665895,214,0 +170781665943,214,0 +170781665990,214,0 +170781666040,214,0 +170781666088,214,0 +170781666135,215,0 +170781666183,214,0 +170781666231,214,0 +170781666279,215,0 +170781666327,215,0 +170781666374,215,0 +170781666422,215,0 +170781666470,214,0 +170781666518,215,0 +170781666566,214,0 +170781666615,214,0 +170781666663,214,0 +170781666712,214,0 +170781666760,214,0 +170781666808,214,0 +170781666856,214,0 +170781666905,214,0 +170781666953,214,0 +170781667001,214,0 +170781667048,214,0 +170781667096,214,0 +170781667144,215,0 +170781667192,214,0 +170781667240,215,0 +170781667289,215,0 +170781667337,214,0 +170781667386,214,0 +170781667434,213,0 +170781667482,214,0 +170781667530,214,0 +170781667578,214,0 +170781667625,214,0 +170781667675,214,0 +170781667723,214,0 +170781667771,214,0 +170781667820,214,0 +170781667868,214,0 +170781667916,214,0 +170781667964,214,0 +170781668012,214,0 +170781668061,214,0 +170781668109,214,0 +170781668158,214,0 +170781668206,214,0 +170781668254,213,0 +170781668302,213,0 +170781668350,213,0 +170781668397,214,0 +170781668445,214,0 +170781668493,214,0 +170781668541,214,0 +170781668589,214,0 +170781668636,214,0 +170781668684,214,0 +170781668732,214,0 +170781668780,214,0 +170781668828,215,0 +170781668876,214,0 +170781668924,214,0 +170781668973,215,0 +170781669023,214,0 +170781669071,213,0 +170781669120,214,0 +170781669168,214,0 +170781669216,214,0 +170781669265,214,0 +170781669315,214,0 +170781669363,214,0 +170781669411,214,0 +170781669459,214,0 +170781669508,214,0 +170781669556,214,0 +170781669604,214,0 +170781669654,214,0 +170781669703,214,0 +170781669751,214,0 +170781669800,214,0 +170781669848,214,0 +170781669896,214,0 +170781669944,214,0 +170781669992,214,0 +170781670040,214,0 +170781670087,214,0 +170781670135,214,0 +170781670183,214,0 +170781670231,215,0 +170781670279,214,0 +170781670327,215,0 +170781670374,214,0 +170781670422,215,0 +170781670470,215,0 +170781670518,215,0 +170781670566,215,0 +170781670614,214,0 +170781670662,214,0 +170781670711,214,0 +170781670759,214,0 +170781670809,214,0 +170781670857,214,0 +170781670905,214,0 +170781670952,214,0 +170781671000,214,0 +170781671050,215,0 +170781671098,215,0 +170781671146,215,0 +170781671195,215,0 +170781671243,215,0 +170781671291,215,0 +170781671339,215,0 +170781671387,214,0 +170781671436,214,0 +170781671484,214,0 +170781671532,214,0 +170781671582,214,0 +170781671630,214,0 +170781671679,214,0 +170781671727,214,0 +170781671775,215,0 +170781671823,215,0 +170781671871,215,0 +170781671919,215,0 +170781671967,215,0 +170781672014,215,0 +170781672062,215,0 +170781672110,215,0 +170781672160,214,0 +170781672208,214,0 +170781672255,214,0 +170781672303,214,0 +170781672351,214,0 +170781672399,214,0 +170781672447,214,0 +170781672495,214,0 +170781672543,214,0 +170781672591,214,0 +170781672638,215,0 +170781672688,215,0 +170781672736,215,0 +170781672786,215,0 +170781672835,215,0 +170781672883,215,0 +170781672931,214,0 +170781672980,214,0 +170781673029,214,0 +170781673077,214,0 +170781673124,214,0 +170781673172,214,0 +170781673220,214,0 +170781673268,214,0 +170781673316,214,0 +170781673364,214,0 +170781673412,214,0 +170781673459,215,0 +170781673507,214,0 +170781673555,215,0 +170781673603,215,0 +170781673652,215,0 +170781673700,215,0 +170781673748,214,0 +170781673796,214,0 +170781673844,214,0 +170781673892,214,0 +170781673939,214,0 +170781673987,214,0 +170781674035,214,0 +170781674083,214,0 +170781674131,214,0 +170781674179,214,0 +170781674226,214,0 +170781674274,214,0 +170781674322,214,0 +170781674372,215,0 +170781674421,214,0 +170781674469,214,0 +170781674517,215,0 +170781674566,214,0 +170781674614,214,0 +170781674664,214,0 +170781674713,213,0 +170781674761,214,0 +170781674809,214,0 +170781674858,214,0 +170781674908,214,0 +170781674956,214,0 +170781675005,214,0 +170781675053,214,0 +170781675101,214,0 +170781675149,214,0 +170781675199,214,0 +170781675248,214,0 +170781675298,214,0 +170781675346,214,0 +170781675395,215,0 +170781675443,214,0 +170781675491,213,0 +170781675541,214,0 +170781675589,214,0 +170781675637,214,0 +170781675686,214,0 +170781675734,214,0 +170781675782,214,0 +170781675832,214,0 +170781675880,214,0 +170781675927,214,0 +170781675975,214,0 +170781676023,215,0 +170781676071,215,0 +170781676119,214,0 +170781676167,215,0 +170781676215,214,0 +170781676263,214,0 +170781676311,214,0 +170781676359,214,0 +170781676407,214,0 +170781676454,214,0 +170781676502,214,0 +170781676550,215,0 +170781676598,215,0 +170781676648,215,0 +170781676697,215,0 +170781676745,215,0 +170781676795,215,0 +170781676842,215,0 +170781676890,215,0 +170781676938,214,0 +170781676986,215,0 +170781677034,214,0 +170781677082,214,0 +170781677130,214,0 +170781677177,215,0 +170781677225,215,0 +170781677273,214,0 +170781677321,215,0 +170781677371,215,0 +170781677420,215,0 +170781677468,215,0 +170781677518,215,0 +170781677567,215,0 +170781677615,214,0 +170781677663,215,0 +170781677711,215,0 +170781677759,215,0 +170781677807,214,0 +170781677854,214,0 +170781677902,214,0 +170781677952,214,0 +170781678000,214,0 +170781678048,214,0 +170781678095,214,0 +170781678143,214,0 +170781678193,214,0 +170781678242,214,0 +170781678290,214,0 +170781678340,215,0 +170781678387,214,0 +170781678435,214,0 +170781678483,215,0 +170781678531,215,0 +170781678579,214,0 +170781678628,214,0 +170781678676,214,0 +170781678724,213,0 +170781678772,214,0 +170781678822,214,0 +170781678871,214,0 +170781678919,214,0 +170781678967,214,0 +170781679016,214,0 +170781679066,214,0 +170781679114,214,0 +170781679162,215,0 +170781679210,214,0 +170781679259,214,0 +170781679309,215,0 +170781679357,214,0 +170781679405,214,0 +170781679452,214,0 +170781679500,214,0 +170781679548,214,0 +170781679596,213,0 +170781679644,214,0 +170781679692,214,0 +170781679740,214,0 +170781679788,214,0 +170781679836,214,0 +170781679885,214,0 +170781679933,214,0 +170781679981,215,0 +170781680029,215,0 +170781680079,214,0 +170781680127,215,0 +170781680174,215,0 +170781680224,214,0 +170781680272,214,0 +170781680320,214,0 +170781680368,214,0 +170781680416,214,0 +170781680465,214,0 +170781680513,214,0 +170781680562,214,0 +170781680611,214,0 +170781680661,214,0 +170781680709,214,0 +170781680757,215,0 +170781680805,214,0 +170781680854,214,0 +170781680902,214,0 +170781680950,215,0 +170781680998,215,0 +170781681048,214,0 +170781681097,214,0 +170781681145,214,0 +170781681194,214,0 +170781681242,214,0 +170781681290,214,0 +170781681338,214,0 +170781681388,214,0 +170781681437,214,0 +170781681487,214,0 +170781681536,215,0 +170781681584,214,0 +170781681633,215,0 +170781681683,215,0 +170781681731,214,0 +170781681779,215,0 +170781681827,214,0 +170781681875,214,0 +170781681923,214,0 +170781681971,214,0 +170781682019,214,0 +170781682067,214,0 +170781682115,214,0 +170781682163,214,0 +170781682212,214,0 +170781682260,214,0 +170781682309,215,0 +170781682357,215,0 +170781682405,215,0 +170781682453,215,0 +170781682501,215,0 +170781682549,215,0 +170781682597,214,0 +170781682645,214,0 +170781682692,214,0 +170781682740,214,0 +170781682788,214,0 +170781682838,214,0 +170781682886,214,0 +170781682934,214,0 +170781682982,214,0 +170781683029,214,0 +170781683079,215,0 +170781683128,215,0 +170781683176,214,0 +170781683226,214,0 +170781683275,215,0 +170781683323,215,0 +170781683373,214,0 +170781683422,215,0 +170781683470,214,0 +170781683518,214,0 +170781683568,214,0 +170781683616,214,0 +170781683664,214,0 +170781683712,214,0 +170781683760,214,0 +170781683807,214,0 +170781683855,214,0 +170781683903,214,0 +170781683953,214,0 +170781684001,214,0 +170781684050,215,0 +170781684098,215,0 +170781684146,214,0 +170781684194,215,0 +170781684242,214,0 +170781684291,214,0 +170781684339,214,0 +170781684388,214,0 +170781684438,214,0 +170781684486,214,0 +170781684534,214,0 +170781684582,214,0 +170781684629,214,0 +170781684679,214,0 +170781684727,214,0 +170781684775,214,0 +170781684823,215,0 +170781684871,214,0 +170781684919,214,0 +170781684966,214,0 +170781685014,215,0 +170781685064,214,0 +170781685112,213,0 +170781685159,214,0 +170781685207,214,0 +170781685255,214,0 +170781685303,214,0 +170781685351,214,0 +170781685399,214,0 +170781685448,214,0 +170781685496,214,0 +170781685544,214,0 +170781685594,214,0 +170781685643,214,0 +170781685691,214,0 +170781685739,214,0 +170781685788,215,0 +170781685838,214,0 +170781685886,214,0 +170781685935,214,0 +170781685983,213,0 +170781686033,214,0 +170781686082,214,0 +170781686130,214,0 +170781686178,214,0 +170781686226,214,0 +170781686276,214,0 +170781686325,214,0 +170781686373,214,0 +170781686421,214,0 +170781686469,214,0 +170781686518,214,0 +170781686566,215,0 +170781686616,214,0 +170781686663,214,0 +170781686711,213,0 +170781686759,213,0 +170781686809,214,0 +170781686857,214,0 +170781686906,214,0 +170781686954,214,0 +170781687002,214,0 +170781687051,214,0 +170781687099,214,0 +170781687148,214,0 +170781687196,214,0 +170781687244,214,0 +170781687294,214,0 +170781687341,214,0 +170781687391,214,0 +170781687439,214,0 +170781687487,213,0 +170781687535,213,0 +170781687583,213,0 +170781687630,213,0 +170781687678,214,0 +170781687726,214,0 +170781687774,214,0 +170781687822,214,0 +170781687869,214,0 +170781687919,214,0 +170781687967,214,0 +170781688016,214,0 +170781688064,214,0 +170781688114,214,0 +170781688163,214,0 +170781688213,214,0 +170781688260,214,0 +170781688308,214,0 +170781688358,214,0 +170781688407,214,0 +170781688457,214,0 +170781688506,214,0 +170781688554,214,0 +170781688602,214,0 +170781688652,214,0 +170781688700,214,0 +170781688749,214,0 +170781688799,214,0 +170781688847,214,0 +170781688894,214,0 +170781688942,214,0 +170781688990,215,0 +170781689038,215,0 +170781689087,214,0 +170781689135,214,0 +170781689185,215,0 +170781689233,214,0 +170781689282,214,0 +170781689332,214,0 +170781689379,215,0 +170781689429,215,0 +170781689478,215,0 +170781689526,215,0 +170781689574,215,0 +170781689622,215,0 +170781689670,215,0 +170781689718,215,0 +170781689766,215,0 +170781689814,215,0 +170781689861,215,0 +170781689911,215,0 +170781689959,215,0 +170781690007,215,0 +170781690055,215,0 +170781690103,215,0 +170781690151,215,0 +170781690198,215,0 +170781690248,215,0 +170781690296,215,0 +170781690344,215,0 +170781690392,215,0 +170781690439,215,0 +170781690489,215,0 +170781690538,214,0 +170781690586,215,0 +170781690636,215,0 +170781690684,215,0 +170781690733,214,0 +170781690781,214,0 +170781690829,214,0 +170781690877,214,0 +170781690925,214,0 +170781690975,214,0 +170781691024,214,0 +170781691072,215,0 +170781691121,214,0 +170781691171,215,0 +170781691219,214,0 +170781691267,215,0 +170781691316,214,0 +170781691364,215,0 +170781691414,215,0 +170781691463,214,0 +170781691511,214,0 +170781691560,214,0 +170781691610,214,0 +170781691659,214,0 +170781691709,214,0 +170781691757,214,0 +170781691805,214,0 +170781691854,214,0 +170781691902,214,0 +170781691950,215,0 +170781692000,215,0 +170781692047,214,0 +170781692095,214,0 +170781692145,214,0 +170781692194,215,0 +170781692242,215,0 +170781692290,214,0 +170781692338,214,0 +170781692387,214,0 +170781692437,214,0 +170781692486,214,0 +170781692536,214,0 +170781692584,214,0 +170781692632,214,0 +170781692680,214,0 +170781692729,215,0 +170781692777,215,0 +170781692826,214,0 +170781692874,215,0 +170781692922,214,0 +170781692970,215,0 +170781693018,214,0 +170781693066,214,0 +170781693116,214,0 +170781693163,214,0 +170781693211,214,0 +170781693259,214,0 +170781693309,214,0 +170781693357,214,0 +170781693406,214,0 +170781693454,215,0 +170781693504,215,0 +170781693552,215,0 +170781693600,215,0 +170781693647,215,0 +170781693695,214,0 +170781693743,214,0 +170781693791,214,0 +170781693839,214,0 +170781693889,214,0 +170781693936,213,0 +170781693986,214,0 +170781694035,214,0 +170781694085,214,0 +170781694133,214,0 +170781694181,214,0 +170781694230,214,0 +170781694278,214,0 +170781694326,214,0 +170781694374,214,0 +170781694422,214,0 +170781694469,215,0 +170781694519,214,0 +170781694566,214,0 +170781694616,214,0 +170781694664,214,0 +170781694712,213,0 +170781694759,213,0 +170781694807,213,0 +170781694855,213,0 +170781694903,214,0 +170781694951,214,0 +170781694998,214,0 +170781695046,214,0 +170781695094,214,0 +170781695144,214,0 +170781695193,214,0 +170781695241,214,0 +170781695289,214,0 +170781695338,215,0 +170781695386,214,0 +170781695433,215,0 +170781695481,214,0 +170781695529,213,0 +170781695577,213,0 +170781695625,213,0 +170781695673,214,0 +170781695720,214,0 +170781695768,214,0 +170781695816,214,0 +170781695864,214,0 +170781695912,214,0 +170781695960,214,0 +170781696007,214,0 +170781696057,214,0 +170781696105,214,0 +170781696154,214,0 +170781696203,214,0 +170781696251,215,0 +170781696299,214,0 +170781696347,213,0 +170781696394,213,0 +170781696444,214,0 +170781696492,214,0 +170781696539,214,0 +170781696587,214,0 +170781696635,214,0 +170781696683,214,0 +170781696731,214,0 +170781696780,214,0 +170781696828,214,0 +170781696876,214,0 +170781696923,214,0 +170781696971,214,0 +170781697019,215,0 +170781697067,215,0 +170781697115,214,0 +170781697164,213,0 +170781697212,213,0 +170781697260,214,0 +170781697307,214,0 +170781697355,214,0 +170781697403,214,0 +170781697453,214,0 +170781697500,214,0 +170781697548,214,0 +170781697596,214,0 +170781697644,214,0 +170781697692,214,0 +170781697739,214,0 +170781697789,214,0 +170781697838,215,0 +170781697886,215,0 +170781697934,213,0 +170781697982,214,0 +170781698031,214,0 +170781698079,214,0 +170781698129,214,0 +170781698176,214,0 +170781698224,214,0 +170781698272,214,0 +170781698320,214,0 +170781698368,214,0 +170781698416,214,0 +170781698463,214,0 +170781698511,214,0 +170781698559,214,0 +170781698607,215,0 +170781698655,215,0 +170781698703,215,0 +170781698751,213,0 +170781698799,214,0 +170781698848,213,0 +170781698896,214,0 +170781698944,214,0 +170781698993,214,0 +170781699041,214,0 +170781699089,214,0 +170781699137,214,0 +170781699185,214,0 +170781699233,214,0 +170781699280,214,0 +170781699328,214,0 +170781699376,214,0 +170781699424,214,0 +170781699472,215,0 +170781699520,214,0 +170781699569,213,0 +170781699618,213,0 +170781699668,214,0 +170781699717,214,0 +170781699765,214,0 +170781699813,214,0 +170781699863,214,0 +170781699912,214,0 +170781699962,214,0 +170781700011,214,0 +170781700059,214,0 +170781700109,214,0 +170781700157,214,0 +170781700205,214,0 +170781700252,214,0 +170781700300,214,0 +170781700350,213,0 +170781700398,214,0 +170781700446,214,0 +170781700494,214,0 +170781700543,214,0 +170781700591,214,0 +170781700639,214,0 +170781700687,214,0 +170781700735,214,0 +170781700783,214,0 +170781700831,214,0 +170781700879,214,0 +170781700928,215,0 +170781700976,214,0 +170781701026,214,0 +170781701075,214,0 +170781701123,214,0 +170781701173,214,0 +170781701222,214,0 +170781701272,214,0 +170781701321,215,0 +170781701371,215,0 +170781701419,214,0 +170781701467,215,0 +170781701515,215,0 +170781701564,215,0 +170781701614,215,0 +170781701661,215,0 +170781701711,215,0 +170781701759,215,0 +170781701807,215,0 +170781701855,215,0 +170781701903,215,0 +170781701951,215,0 +170781701998,215,0 +170781702046,214,0 +170781702094,215,0 +170781702142,214,0 +170781702190,215,0 +170781702238,215,0 +170781702287,214,0 +170781702337,215,0 +170781702385,215,0 +170781702433,215,0 +170781702480,215,0 +170781702530,215,0 +170781702579,215,0 +170781702629,215,0 +170781702676,215,0 +170781702726,215,0 +170781702774,215,0 +170781702821,215,0 +170781702869,215,0 +170781702917,215,0 +170781702965,215,0 +170781703015,215,0 +170781703062,215,0 +170781703110,215,0 +170781703158,215,0 +170781703206,215,0 +170781703254,215,0 +170781703302,215,0 +170781703350,215,0 +170781703398,214,0 +170781703445,214,0 +170781703493,214,0 +170781703541,214,0 +170781703589,214,0 +170781703637,214,0 +170781703687,214,0 +170781703736,214,0 +170781703784,214,0 +170781703834,214,0 +170781703882,214,0 +170781703929,215,0 +170781703977,214,0 +170781704025,215,0 +170781704075,215,0 +170781704124,214,0 +170781704172,215,0 +170781704220,215,0 +170781704268,215,0 +170781704318,214,0 +170781704367,214,0 +170781704415,214,0 +170781704463,214,0 +170781704511,214,0 +170781704559,214,0 +170781704607,214,0 +170781704655,214,0 +170781704704,214,0 +170781704754,214,0 +170781704802,214,0 +170781704851,214,0 +170781704899,214,0 +170781704949,214,0 +170781704997,214,0 +170781705046,214,0 +170781705096,215,0 +170781705144,214,0 +170781705193,214,0 +170781705243,214,0 +170781705292,214,0 +170781705342,214,0 +170781705390,214,0 +170781705438,215,0 +170781705487,214,0 +170781705537,214,0 +170781705585,215,0 +170781705633,214,0 +170781705680,215,0 +170781705728,214,0 +170781705778,214,0 +170781705826,214,0 +170781705874,214,0 +170781705922,214,0 +170781705970,214,0 +170781706018,214,0 +170781706067,214,0 +170781706115,214,0 +170781706165,214,0 +170781706214,214,0 +170781706262,214,0 +170781706310,214,0 +170781706358,214,0 +170781706405,214,0 +170781706453,214,0 +170781706501,214,0 +170781706551,214,0 +170781706600,215,0 +170781706648,215,0 +170781706696,214,0 +170781706744,214,0 +170781706794,213,0 +170781706842,213,0 +170781706889,214,0 +170781706937,214,0 +170781706985,214,0 +170781707035,214,0 +170781707083,214,0 +170781707132,214,0 +170781707180,214,0 +170781707228,214,0 +170781707276,214,0 +170781707324,214,0 +170781707372,214,0 +170781707420,214,0 +170781707468,214,0 +170781707517,214,0 +170781707565,214,0 +170781707615,213,0 +170781707664,213,0 +170781707712,214,0 +170781707761,214,0 +170781707811,214,0 +170781707860,214,0 +170781707908,214,0 +170781707956,214,0 +170781708006,214,0 +170781708054,214,0 +170781708102,214,0 +170781708150,214,0 +170781708198,214,0 +170781708245,214,0 +170781708293,214,0 +170781708343,214,0 +170781708391,213,0 +170781708439,214,0 +170781708488,214,0 +170781708536,214,0 +170781708584,214,0 +170781708634,214,0 +170781708683,214,0 +170781708731,214,0 +170781708779,214,0 +170781708828,214,0 +170781708876,214,0 +170781708924,214,0 +170781708972,214,0 +170781709020,215,0 +170781709070,214,0 +170781709117,214,0 +170781709165,214,0 +170781709215,213,0 +170781709263,213,0 +170781709311,214,0 +170781709359,214,0 +170781709407,214,0 +170781709455,214,0 +170781709502,214,0 +170781709550,214,0 +170781709598,214,0 +170781709646,214,0 +170781709694,214,0 +170781709743,214,0 +170781709793,214,0 +170781709842,214,0 +170781709890,215,0 +170781709938,214,0 +170781709986,214,0 +170781710036,214,0 +170781710085,214,0 +170781710133,214,0 +170781710181,214,0 +170781710229,214,0 +170781710277,214,0 +170781710325,214,0 +170781710373,214,0 +170781710422,214,0 +170781710470,214,0 +170781710518,214,0 +170781710566,214,0 +170781710613,215,0 +170781710661,214,0 +170781710709,214,0 +170781710757,214,0 +170781710805,214,0 +170781710853,214,0 +170781710901,213,0 +170781710949,214,0 +170781710998,214,0 +170781711048,214,0 +170781711097,214,0 +170781711147,214,0 +170781711195,214,0 +170781711243,214,0 +170781711291,214,0 +170781711338,214,0 +170781711388,214,0 +170781711436,214,0 +170781711485,214,0 +170781711533,214,0 +170781711583,214,0 +170781711632,214,0 +170781711680,214,0 +170781711730,214,0 +170781711777,214,0 +170781711825,214,0 +170781711875,214,0 +170781711924,214,0 +170781711974,214,0 +170781712022,214,0 +170781712070,215,0 +170781712119,214,0 +170781712167,215,0 +170781712217,215,0 +170781712266,214,0 +170781712314,214,0 +170781712362,214,0 +170781712410,214,0 +170781712458,214,0 +170781712507,214,0 +170781712555,214,0 +170781712603,214,0 +170781712653,214,0 +170781712701,214,0 +170781712749,214,0 +170781712797,214,0 +170781712846,214,0 +170781712894,214,0 +170781712942,214,0 +170781712990,214,0 +170781713038,214,0 +170781713086,215,0 +170781713135,214,0 +170781713185,214,0 +170781713234,214,0 +170781713284,214,0 +170781713332,214,0 +170781713381,214,0 +170781713429,214,0 +170781713477,214,0 +170781713525,214,0 +170781713573,214,0 +170781713622,214,0 +170781713670,215,0 +170781713720,215,0 +170781713768,214,0 +170781713816,215,0 +170781713865,214,0 +170781713915,214,0 +170781713964,214,0 +170781714012,214,0 +170781714061,214,0 +170781714111,214,0 +170781714160,214,0 +170781714208,214,0 +170781714256,215,0 +170781714306,214,0 +170781714354,215,0 +170781714401,215,0 +170781714449,215,0 +170781714497,215,0 +170781714547,215,0 +170781714595,214,0 +170781714643,216,0 +170781714692,214,0 +170781714740,214,0 +170781714788,214,0 +170781714837,214,0 +170781714885,214,0 +170781714935,214,0 +170781714984,214,0 +170781715032,214,0 +170781715080,215,0 +170781715128,215,0 +170781715176,214,0 +170781715224,214,0 +170781715273,215,0 +170781715323,215,0 +170781715371,215,0 +170781715419,215,0 +170781715468,215,0 +170781715516,214,0 +170781715564,214,0 +170781715612,214,0 +170781715660,214,0 +170781715709,214,0 +170781715757,214,0 +170781715805,214,0 +170781715855,214,0 +170781715902,214,0 +170781715950,214,0 +170781715998,214,0 +170781716046,214,0 +170781716096,215,0 +170781716145,215,0 +170781716193,214,0 +170781716241,214,0 +170781716289,215,0 +170781716338,215,0 +170781716386,213,0 +170781716436,214,0 +170781716484,214,0 +170781716533,214,0 +170781716583,214,0 +170781716631,214,0 +170781716678,214,0 +170781716726,214,0 +170781716774,214,0 +170781716824,214,0 +170781716873,214,0 +170781716923,214,0 +170781716970,215,0 +170781717018,215,0 +170781717066,214,0 +170781717114,215,0 +170781717162,214,0 +170781717212,214,0 +170781717261,214,0 +170781717309,214,0 +170781717358,214,0 +170781717406,214,0 +170781717454,214,0 +170781717502,214,0 +170781717550,214,0 +170781717598,214,0 +170781717648,214,0 +170781717696,214,0 +170781717745,214,0 +170781717793,214,0 +170781717841,214,0 +170781717889,214,0 +170781717937,214,0 +170781717986,213,0 +170781718034,214,0 +170781718083,214,0 +170781718131,214,0 +170781718179,214,0 +170781718227,214,0 +170781718277,214,0 +170781718324,214,0 +170781718372,214,0 +170781718420,214,0 +170781718468,214,0 +170781718516,214,0 +170781718564,214,0 +170781718612,214,0 +170781718661,214,0 +170781718711,214,0 +170781718760,214,0 +170781718810,214,0 +170781718858,214,0 +170781718907,214,0 +170781718955,214,0 +170781719003,214,0 +170781719051,214,0 +170781719099,214,0 +170781719147,214,0 +170781719195,214,0 +170781719244,214,0 +170781719292,215,0 +170781719340,214,0 +170781719390,214,0 +170781719437,214,0 +170781719485,214,0 +170781719533,214,0 +170781719581,214,0 +170781719629,214,0 +170781719677,214,0 +170781719727,214,0 +170781719775,214,0 +170781719822,214,0 +170781719870,214,0 +170781719918,214,0 +170781719966,214,0 +170781720016,214,0 +170781720065,214,0 +170781720115,214,0 +170781720164,214,0 +170781720212,215,0 +170781720260,215,0 +170781720309,215,0 +170781720357,214,0 +170781720407,214,0 +170781720455,214,0 +170781720502,214,0 +170781720550,214,0 +170781720600,214,0 +170781720648,214,0 +170781720697,214,0 +170781720745,214,0 +170781720795,214,0 +170781720843,214,0 +170781720890,214,0 +170781720938,214,0 +170781720986,214,0 +170781721034,215,0 +170781721084,214,0 +170781721131,214,0 +170781721179,214,0 +170781721229,214,0 +170781721277,214,0 +170781721326,214,0 +170781721374,214,0 +170781721422,214,0 +170781721470,214,0 +170781721518,214,0 +170781721566,214,0 +170781721614,214,0 +170781721662,214,0 +170781721711,215,0 +170781721759,215,0 +170781721807,215,0 +170781721855,215,0 +170781721904,214,0 +170781721952,214,0 +170781722000,214,0 +170781722048,214,0 +170781722096,214,0 +170781722144,214,0 +170781722194,214,0 +170781722243,214,0 +170781722291,214,0 +170781722339,214,0 +170781722387,214,0 +170781722437,214,0 +170781722485,214,0 +170781722534,215,0 +170781722582,215,0 +170781722631,215,0 +170781722679,214,0 +170781722729,214,0 +170781722777,214,0 +170781722825,214,0 +170781722874,214,0 +170781722924,214,0 +170781722973,214,0 +170781723021,214,0 +170781723069,214,0 +170781723117,214,0 +170781723167,214,0 +170781723216,214,0 +170781723264,214,0 +170781723312,214,0 +170781723360,214,0 +170781723408,215,0 +170781723456,214,0 +170781723505,214,0 +170781723553,214,0 +170781723601,214,0 +170781723649,214,0 +170781723697,214,0 +170781723745,214,0 +170781723793,214,0 +170781723841,214,0 +170781723889,214,0 +170781723938,214,0 +170781723988,214,0 +170781724035,214,0 +170781724083,214,0 +170781724131,214,0 +170781724179,214,0 +170781724227,214,0 +170781724275,214,0 +170781724325,214,0 +170781724372,214,0 +170781724420,213,0 +170781724468,213,0 +170781724516,214,0 +170781724564,214,0 +170781724611,214,0 +170781724659,214,0 +170781724707,214,0 +170781724757,214,0 +170781724806,214,0 +170781724854,214,0 +170781724903,214,0 +170781724951,214,0 +170781724999,214,0 +170781725048,214,0 +170781725098,214,0 +170781725145,214,0 +170781725195,214,0 +170781725244,214,0 +170781725292,214,0 +170781725342,214,0 +170781725390,214,0 +170781725437,214,0 +170781725485,214,0 +170781725533,214,0 +170781725581,214,0 +170781725629,215,0 +170781725678,215,0 +170781725726,215,0 +170781725775,215,0 +170781725823,215,0 +170781725871,214,0 +170781725919,214,0 +170781725967,215,0 +170781726015,214,0 +170781726062,214,0 +170781726112,214,0 +170781726160,214,0 +170781726207,215,0 +170781726255,214,0 +170781726303,214,0 +170781726351,215,0 +170781726399,214,0 +170781726446,215,0 +170781726494,215,0 +170781726542,215,0 +170781726590,215,0 +170781726637,214,0 +170781726685,215,0 +170781726733,214,0 +170781726781,214,0 +170781726829,214,0 +170781726878,214,0 +170781726926,214,0 +170781726974,214,0 +170781727023,214,0 +170781727071,214,0 +170781727119,214,0 +170781727168,214,0 +170781727216,214,0 +170781727265,214,0 +170781727315,215,0 +170781727364,214,0 +170781727414,214,0 +170781727461,214,0 +170781727509,215,0 +170781727557,214,0 +170781727605,214,0 +170781727653,214,0 +170781727701,214,0 +170781727749,214,0 +170781727798,214,0 +170781727846,214,0 +170781727896,214,0 +170781727943,214,0 +170781727991,214,0 +170781728039,214,0 +170781728089,214,0 +170781728138,215,0 +170781728186,214,0 +170781728234,215,0 +170781728284,214,0 +170781728332,214,0 +170781728380,214,0 +170781728428,213,0 +170781728477,213,0 +170781728527,214,0 +170781728574,214,0 +170781728622,214,0 +170781728672,214,0 +170781728721,214,0 +170781728769,214,0 +170781728818,214,0 +170781728866,214,0 +170781728916,214,0 +170781728964,214,0 +170781729012,214,0 +170781729060,215,0 +170781729109,214,0 +170781729157,214,0 +170781729205,214,0 +170781729254,214,0 +170781729302,214,0 +170781729350,214,0 +170781729400,214,0 +170781729449,214,0 +170781729497,214,0 +170781729545,214,0 +170781729593,214,0 +170781729641,214,0 +170781729689,214,0 +170781729738,215,0 +170781729786,214,0 +170781729836,214,0 +170781729884,215,0 +170781729931,214,0 +170781729979,214,0 +170781730027,214,0 +170781730075,214,0 +170781730123,214,0 +170781730172,214,0 +170781730220,214,0 +170781730268,214,0 +170781730316,214,0 +170781730363,214,0 +170781730411,214,0 +170781730459,214,0 +170781730508,214,0 +170781730556,214,0 +170781730606,215,0 +170781730654,214,0 +170781730703,214,0 +170781730752,214,0 +170781730800,214,0 +170781730848,214,0 +170781730896,214,0 +170781730944,214,0 +170781730992,214,0 +170781731040,214,0 +170781731089,214,0 +170781731139,214,0 +170781731188,214,0 +170781731236,214,0 +170781731285,215,0 +170781731335,215,0 +170781731383,215,0 +170781731431,214,0 +170781731480,214,0 +170781731528,214,0 +170781731576,214,0 +170781731624,214,0 +170781731673,214,0 +170781731721,214,0 +170781731769,214,0 +170781731817,214,0 +170781731867,214,0 +170781731915,214,0 +170781731963,214,0 +170781732011,214,0 +170781732060,214,0 +170781732108,214,0 +170781732157,214,0 +170781732205,215,0 +170781732253,214,0 +170781732303,214,0 +170781732351,214,0 +170781732400,214,0 +170781732448,214,0 +170781732496,214,0 +170781732544,214,0 +170781732592,214,0 +170781732641,214,0 +170781732689,214,0 +170781732737,214,0 +170781732785,214,0 +170781732835,214,0 +170781732884,214,0 +170781732932,214,0 +170781732980,214,0 +170781733028,214,0 +170781733078,214,0 +170781733125,214,0 +170781733173,214,0 +170781733223,214,0 +170781733272,214,0 +170781733320,214,0 +170781733368,214,0 +170781733416,214,0 +170781733464,214,0 +170781733513,214,0 +170781733561,214,0 +170781733611,214,0 +170781733659,214,0 +170781733707,214,0 +170781733755,214,0 +170781733802,215,0 +170781733850,214,0 +170781733900,214,0 +170781733949,214,0 +170781733999,214,0 +170781734047,213,0 +170781734095,213,0 +170781734144,213,0 +170781734192,214,0 +170781734240,214,0 +170781734290,214,0 +170781734338,214,0 +170781734385,214,0 +170781734433,214,0 +170781734483,214,0 +170781734532,214,0 +170781734580,214,0 +170781734630,215,0 +170781734678,214,0 +170781734726,214,0 +170781734774,214,0 +170781734823,214,0 +170781734873,213,0 +170781734920,213,0 +170781734970,213,0 +170781735019,214,0 +170781735067,214,0 +170781735115,214,0 +170781735163,214,0 +170781735213,214,0 +170781735261,214,0 +170781735310,214,0 +170781735358,214,0 +170781735406,214,0 +170781735455,214,0 +170781735503,214,0 +170781735551,214,0 +170781735601,214,0 +170781735648,213,0 +170781735696,213,0 +170781735744,213,0 +170781735794,213,0 +170781735842,213,0 +170781735891,214,0 +170781735939,214,0 +170781735987,214,0 +170781736035,214,0 +170781736083,214,0 +170781736132,214,0 +170781736180,214,0 +170781736228,214,0 +170781736276,214,0 +170781736324,214,0 +170781736371,214,0 +170781736419,214,0 +170781736467,214,0 +170781736516,214,0 +170781736566,214,0 +170781736615,214,0 +170781736663,214,0 +170781736713,214,0 +170781736760,214,0 +170781736808,214,0 +170781736856,214,0 +170781736904,214,0 +170781736952,214,0 +170781737000,214,0 +170781737047,214,0 +170781737095,214,0 +170781737143,214,0 +170781737191,214,0 +170781737239,214,0 +170781737287,213,0 +170781737336,214,0 +170781737386,214,0 +170781737435,214,0 +170781737483,214,0 +170781737533,214,0 +170781737581,214,0 +170781737630,214,0 +170781737678,214,0 +170781737726,214,0 +170781737774,214,0 +170781737822,214,0 +170781737871,214,0 +170781737919,214,0 +170781737967,214,0 +170781738017,214,0 +170781738065,214,0 +170781738114,214,0 +170781738162,214,0 +170781738210,214,0 +170781738259,214,0 +170781738307,214,0 +170781738357,214,0 +170781738405,214,0 +170781738454,215,0 +170781738504,214,0 +170781738552,214,0 +170781738600,215,0 +170781738648,215,0 +170781738697,214,0 +170781738745,214,0 +170781738793,215,0 +170781738840,214,0 +170781738890,214,0 +170781738938,214,0 +170781738987,214,0 +170781739035,214,0 +170781739083,214,0 +170781739131,214,0 +170781739179,214,0 +170781739227,214,0 +170781739275,214,0 +170781739323,215,0 +170781739372,214,0 +170781739420,215,0 +170781739468,215,0 +170781739516,215,0 +170781739564,214,0 +170781739612,214,0 +170781739660,214,0 +170781739709,214,0 +170781739759,214,0 +170781739807,214,0 +170781739855,214,0 +170781739903,214,0 +170781739950,214,0 +170781739998,214,0 +170781740046,214,0 +170781740096,214,0 +170781740145,214,0 +170781740195,214,0 +170781740244,214,0 +170781740293,214,0 +170781740343,214,0 +170781740392,214,0 +170781740440,214,0 +170781740490,214,0 +170781740538,214,0 +170781740586,214,0 +170781740634,214,0 +170781740681,214,0 +170781740729,214,0 +170781740777,214,0 +170781740827,214,0 +170781740875,214,0 +170781740923,214,0 +170781740971,214,0 +170781741018,215,0 +170781741066,214,0 +170781741114,214,0 +170781741162,214,0 +170781741210,214,0 +170781741259,213,0 +170781741307,214,0 +170781741357,214,0 +170781741406,214,0 +170781741454,214,0 +170781741504,214,0 +170781741552,214,0 +170781741601,214,0 +170781741649,214,0 +170781741698,214,0 +170781741746,214,0 +170781741794,214,0 +170781741842,214,0 +170781741891,214,0 +170781741939,214,0 +170781741989,214,0 +170781742038,214,0 +170781742086,214,0 +170781742134,214,0 +170781742183,214,0 +170781742233,214,0 +170781742281,214,0 +170781742329,214,0 +170781742377,214,0 +170781742426,214,0 +170781742474,214,0 +170781742522,214,0 +170781742570,215,0 +170781742619,214,0 +170781742667,214,0 +170781742715,214,0 +170781742763,214,0 +170781742812,214,0 +170781742860,214,0 +170781742909,214,0 +170781742959,214,0 +170781743007,213,0 +170781743055,214,0 +170781743103,214,0 +170781743152,214,0 +170781743201,214,0 +170781743249,214,0 +170781743299,214,0 +170781743347,214,0 +170781743395,214,0 +170781743443,214,0 +170781743492,214,0 +170781743540,214,0 +170781743590,214,0 +170781743638,214,0 +170781743685,214,0 +170781743733,214,0 +170781743781,214,0 +170781743829,214,0 +170781743877,214,0 +170781743926,214,0 +170781743974,214,0 +170781744024,214,0 +170781744073,214,0 +170781744123,214,0 +170781744172,215,0 +170781744220,214,0 +170781744270,214,0 +170781744318,214,0 +170781744367,214,0 +170781744417,214,0 +170781744465,213,0 +170781744514,213,0 +170781744564,213,0 +170781744613,214,0 +170781744663,214,0 +170781744712,214,0 +170781744760,214,0 +170781744810,214,0 +170781744859,214,0 +170781744909,214,0 +170781744957,214,0 +170781745006,215,0 +170781745056,214,0 +170781745105,214,0 +170781745155,214,0 +170781745203,214,0 +170781745251,213,0 +170781745298,213,0 +170781745346,213,0 +170781745396,214,0 +170781745445,213,0 +170781745493,214,0 +170781745541,214,0 +170781745589,214,0 +170781745637,214,0 +170781745686,214,0 +170781745734,214,0 +170781745782,214,0 +170781745832,214,0 +170781745881,214,0 +170781745929,214,0 +170781745977,214,0 +170781746025,214,0 +170781746073,213,0 +170781746123,213,0 +170781746172,213,0 +170781746220,213,0 +170781746268,214,0 +170781746316,214,0 +170781746364,214,0 +170781746411,214,0 +170781746459,214,0 +170781746509,214,0 +170781746557,214,0 +170781746604,214,0 +170781746652,214,0 +170781746700,214,0 +170781746748,214,0 +170781746798,214,0 +170781746845,214,0 +170781746895,213,0 +170781746944,213,0 +170781746992,213,0 +170781747040,214,0 +170781747088,213,0 +170781747136,214,0 +170781747184,214,0 +170781747232,214,0 +170781747280,214,0 +170781747328,214,0 +170781747377,214,0 +170781747425,214,0 +170781747473,214,0 +170781747521,214,0 +170781747569,214,0 +170781747617,214,0 +170781747666,213,0 +170781747716,213,0 +170781747764,213,0 +170781747812,213,0 +170781747860,213,0 +170781747909,214,0 +170781747957,214,0 +170781748005,214,0 +170781748055,213,0 +170781748104,214,0 +170781748154,214,0 +170781748201,214,0 +170781748251,214,0 +170781748300,214,0 +170781748350,214,0 +170781748399,214,0 +170781748449,214,0 +170781748497,214,0 +170781748546,214,0 +170781748594,214,0 +170781748642,214,0 +170781748690,214,0 +170781748738,214,0 +170781748786,214,0 +170781748834,214,0 +170781748882,214,0 +170781748931,214,0 +170781748979,214,0 +170781749029,214,0 +170781749077,214,0 +170781749126,214,0 +170781749174,214,0 +170781749224,214,0 +170781749272,214,0 +170781749319,214,0 +170781749369,213,0 +170781749417,214,0 +170781749466,214,0 +170781749514,214,0 +170781749564,214,0 +170781749613,214,0 +170781749661,214,0 +170781749710,214,0 +170781749760,214,0 +170781749808,214,0 +170781749856,214,0 +170781749904,214,0 +170781749953,214,0 +170781750001,214,0 +170781750049,214,0 +170781750099,214,0 +170781750148,214,0 +170781750198,214,0 +170781750246,214,0 +170781750293,214,0 +170781750341,214,0 +170781750391,214,0 +170781750439,214,0 +170781750487,215,0 +170781750535,215,0 +170781750583,215,0 +170781750632,215,0 +170781750680,215,0 +170781750728,214,0 +170781750776,214,0 +170781750825,215,0 +170781750873,215,0 +170781750921,214,0 +170781750969,215,0 +170781751017,214,0 +170781751065,215,0 +170781751113,215,0 +170781751161,215,0 +170781751210,215,0 +170781751258,215,0 +170781751308,215,0 +170781751357,215,0 +170781751405,215,0 +170781751453,215,0 +170781751501,215,0 +170781751550,215,0 +170781751598,215,0 +170781751648,215,0 +170781751697,215,0 +170781751745,215,0 +170781751793,215,0 +170781751843,215,0 +170781751893,215,0 +170781751942,215,0 +170781751990,215,0 +170781752038,215,0 +170781752086,215,0 +170781752135,215,0 +170781752183,215,0 +170781752232,215,0 +170781752280,214,0 +170781752330,215,0 +170781752378,214,0 +170781752427,214,0 +170781752477,214,0 +170781752524,214,0 +170781752572,214,0 +170781752620,214,0 +170781752668,214,0 +170781752716,215,0 +170781752764,214,0 +170781752814,214,0 +170781752863,215,0 +170781752911,215,0 +170781752959,215,0 +170781753007,215,0 +170781753056,215,0 +170781753104,215,0 +170781753154,215,0 +170781753201,214,0 +170781753249,214,0 +170781753299,214,0 +170781753347,214,0 +170781753395,214,0 +170781753444,214,0 +170781753494,214,0 +170781753541,214,0 +170781753589,214,0 +170781753637,214,0 +170781753685,214,0 +170781753734,214,0 +170781753782,215,0 +170781753830,214,0 +170781753878,215,0 +170781753926,214,0 +170781753974,215,0 +170781754022,214,0 +170781754069,214,0 +170781754117,214,0 +170781754165,214,0 +170781754213,214,0 +170781754261,214,0 +170781754311,214,0 +170781754359,214,0 +170781754408,214,0 +170781754458,214,0 +170781754507,214,0 +170781754555,214,0 +170781754603,214,0 +170781754653,215,0 +170781754701,214,0 +170781754749,214,0 +170781754797,215,0 +170781754846,214,0 +170781754894,213,0 +170781754944,213,0 +170781754993,213,0 +170781755041,214,0 +170781755091,214,0 +170781755140,214,0 +170781755190,214,0 +170781755239,214,0 +170781755287,214,0 +170781755337,214,0 +170781755386,214,0 +170781755434,214,0 +170781755481,214,0 +170781755529,214,0 +170781755577,214,0 +170781755627,215,0 +170781755675,214,0 +170781755722,213,0 +170781755772,213,0 +170781755820,213,0 +170781755867,213,0 +170781755915,214,0 +170781755963,214,0 +170781756011,214,0 +170781756059,214,0 +170781756108,214,0 +170781756156,214,0 +170781756204,214,0 +170781756252,214,0 +170781756300,215,0 +170781756347,215,0 +170781756397,215,0 +170781756444,214,0 +170781756492,213,0 +170781756540,213,0 +170781756588,214,0 +170781756636,214,0 +170781756684,214,0 +170781756733,214,0 +170781756783,214,0 +170781756832,214,0 +170781756880,214,0 +170781756928,214,0 +170781756975,214,0 +170781757023,214,0 +170781757071,214,0 +170781757119,214,0 +170781757169,215,0 +170781757217,214,0 +170781757265,214,0 +170781757313,213,0 +170781757360,213,0 +170781757410,213,0 +170781757458,214,0 +170781757506,214,0 +170781757554,214,0 +170781757603,214,0 +170781757651,214,0 +170781757699,214,0 +170781757747,214,0 +170781757794,214,0 +170781757842,214,0 +170781757890,214,0 +170781757938,214,0 +170781757986,215,0 +170781758034,214,0 +170781758081,214,0 +170781758129,214,0 +170781758177,214,0 +170781758225,214,0 +170781758275,214,0 +170781758324,214,0 +170781758374,214,0 +170781758423,214,0 +170781758471,214,0 +170781758520,214,0 +170781758570,214,0 +170781758618,214,0 +170781758666,215,0 +170781758715,214,0 +170781758763,214,0 +170781758811,214,0 +170781758858,214,0 +170781758906,214,0 +170781758954,214,0 +170781759002,214,0 +170781759050,214,0 +170781759098,214,0 +170781759146,214,0 +170781759195,214,0 +170781759243,214,0 +170781759292,214,0 +170781759342,214,0 +170781759390,214,0 +170781759438,214,0 +170781759487,214,0 +170781759535,214,0 +170781759583,215,0 +170781759631,214,0 +170781759680,214,0 +170781759729,214,0 +170781759777,214,0 +170781759825,214,0 +170781759873,214,0 +170781759922,214,0 +170781759970,214,0 +170781760020,214,0 +170781760067,214,0 +170781760117,214,0 +170781760165,214,0 +170781760213,214,0 +170781760261,214,0 +170781760308,215,0 +170781760356,214,0 +170781760406,214,0 +170781760454,214,0 +170781760501,214,0 +170781760549,214,0 +170781760597,213,0 +170781760645,214,0 +170781760693,214,0 +170781760741,214,0 +170781760788,214,0 +170781760836,214,0 +170781760884,214,0 +170781760932,214,0 +170781760980,214,0 +170781761028,214,0 +170781761076,214,0 +170781761124,214,0 +170781761172,214,0 +170781761220,214,0 +170781761269,214,0 +170781761317,214,0 +170781761365,213,0 +170781761413,213,0 +170781761462,214,0 +170781761512,213,0 +170781761560,214,0 +170781761607,214,0 +170781761655,214,0 +170781761705,214,0 +170781761753,214,0 +170781761801,214,0 +170781761848,214,0 +170781761896,214,0 +170781761944,214,0 +170781761994,214,0 +170781762043,214,0 +170781762091,214,0 +170781762141,213,0 +170781762189,214,0 +170781762237,214,0 +170781762285,214,0 +170781762332,214,0 +170781762380,214,0 +170781762428,214,0 +170781762476,214,0 +170781762524,214,0 +170781762572,214,0 +170781762620,215,0 +170781762669,215,0 +170781762717,215,0 +170781762765,215,0 +170781762813,215,0 +170781762861,215,0 +170781762909,215,0 +170781762958,215,0 +170781763006,215,0 +170781763056,214,0 +170781763105,215,0 +170781763155,215,0 +170781763203,214,0 +170781763251,215,0 +170781763300,215,0 +170781763350,215,0 +170781763398,214,0 +170781763446,214,0 +170781763495,215,0 +170781763543,215,0 +170781763591,215,0 +170781763639,214,0 +170781763687,215,0 +170781763735,215,0 +170781763783,215,0 +170781763831,215,0 +170781763880,215,0 +170781763930,215,0 +170781763978,215,0 +170781764026,214,0 +170781764074,214,0 +170781764122,214,0 +170781764170,214,0 +170781764217,214,0 +170781764267,214,0 +170781764316,214,0 +170781764366,214,0 +170781764414,214,0 +170781764462,214,0 +170781764510,214,0 +170781764559,214,0 +170781764607,215,0 +170781764655,215,0 +170781764703,215,0 +170781764752,215,0 +170781764802,214,0 +170781764850,214,0 +170781764898,214,0 +170781764946,213,0 +170781764995,213,0 +170781765043,214,0 +170781765091,214,0 +170781765141,214,0 +170781765189,214,0 +170781765237,214,0 +170781765284,214,0 +170781765332,214,0 +170781765382,214,0 +170781765430,214,0 +170781765478,214,0 +170781765526,214,0 +170781765575,214,0 +170781765623,214,0 +170781765672,214,0 +170781765720,214,0 +170781765768,213,0 +170781765816,213,0 +170781765865,214,0 +170781765913,214,0 +170781765961,214,0 +170781766009,214,0 +170781766057,214,0 +170781766104,214,0 +170781766152,214,0 +170781766200,214,0 +170781766248,214,0 +170781766296,214,0 +170781766344,214,0 +170781766392,214,0 +170781766439,214,0 +170781766487,214,0 +170781766535,213,0 +170781766583,214,0 +170781766631,214,0 +170781766680,214,0 +170781766729,214,0 +170781766777,214,0 +170781766825,214,0 +170781766873,214,0 +170781766921,214,0 +170781766970,214,0 +170781767018,214,0 +170781767066,214,0 +170781767114,214,0 +170781767162,214,0 +170781767210,215,0 +170781767258,214,0 +170781767307,214,0 +170781767355,213,0 +170781767403,214,0 +170781767451,214,0 +170781767498,214,0 +170781767546,214,0 +170781767596,214,0 +170781767644,214,0 +170781767691,214,0 +170781767739,214,0 +170781767787,214,0 +170781767836,215,0 +170781767886,214,0 +170781767934,214,0 +170781767982,214,0 +170781768029,214,0 +170781768077,214,0 +170781768125,214,0 +170781768173,214,0 +170781768221,214,0 +170781768269,214,0 +170781768318,214,0 +170781768366,214,0 +170781768416,214,0 +170781768464,214,0 +170781768513,214,0 +170781768561,214,0 +170781768610,214,0 +170781768658,214,0 +170781768706,214,0 +170781768756,215,0 +170781768804,214,0 +170781768853,214,0 +170781768903,214,0 +170781768952,214,0 +170781769000,214,0 +170781769048,214,0 +170781769098,214,0 +170781769147,214,0 +170781769197,214,0 +170781769245,214,0 +170781769292,214,0 +170781769340,214,0 +170781769388,214,0 +170781769436,214,0 +170781769486,214,0 +170781769535,214,0 +170781769583,215,0 +170781769631,214,0 +170781769679,214,0 +170781769727,214,0 +170781769776,214,0 +170781769824,214,0 +170781769872,214,0 +170781769920,214,0 +170781769968,214,0 +170781770018,214,0 +170781770065,214,0 +170781770113,214,0 +170781770163,214,0 +170781770211,214,0 +170781770259,215,0 +170781770308,215,0 +170781770356,215,0 +170781770404,214,0 +170781770452,214,0 +170781770502,214,0 +170781770550,214,0 +170781770599,214,0 +170781770647,214,0 +170781770695,214,0 +170781770744,214,0 +170781770792,214,0 +170781770840,214,0 +170781770890,214,0 +170781770939,215,0 +170781770987,214,0 +170781771037,215,0 +170781771085,215,0 +170781771134,215,0 +170781771184,214,0 +170781771232,215,0 +170781771280,214,0 +170781771328,214,0 +170781771377,214,0 +170781771425,214,0 +170781771475,214,0 +170781771522,214,0 +170781771572,214,0 +170781771620,214,0 +170781771668,214,0 +170781771717,214,0 +170781771765,215,0 +170781771813,215,0 +170781771863,214,0 +170781771912,214,0 +170781771960,214,0 +170781772008,214,0 +170781772058,214,0 +170781772107,214,0 +170781772155,214,0 +170781772203,214,0 +170781772251,214,0 +170781772301,214,0 +170781772349,214,0 +170781772397,214,0 +170781772444,214,0 +170781772492,214,0 +170781772540,215,0 +170781772588,214,0 +170781772636,215,0 +170781772686,215,0 +170781772734,215,0 +170781772781,215,0 +170781772829,215,0 +170781772877,214,0 +170781772925,214,0 +170781772973,214,0 +170781773023,214,0 +170781773072,214,0 +170781773120,214,0 +170781773168,214,0 +170781773216,214,0 +170781773264,214,0 +170781773312,214,0 +170781773360,214,0 +170781773408,214,0 +170781773457,214,0 +170781773507,214,0 +170781773555,214,0 +170781773604,215,0 +170781773652,215,0 +170781773700,214,0 +170781773748,214,0 +170781773796,213,0 +170781773844,214,0 +170781773892,214,0 +170781773939,214,0 +170781773987,214,0 +170781774035,214,0 +170781774085,214,0 +170781774132,214,0 +170781774180,214,0 +170781774228,214,0 +170781774276,214,0 +170781774324,214,0 +170781774373,215,0 +170781774421,214,0 +170781774469,214,0 +170781774517,214,0 +170781774566,214,0 +170781774614,214,0 +170781774662,214,0 +170781774710,214,0 +170781774758,214,0 +170781774806,214,0 +170781774854,214,0 +170781774901,214,0 +170781774949,214,0 +170781774997,214,0 +170781775045,215,0 +170781775093,215,0 +170781775141,214,0 +170781775189,215,0 +170781775237,215,0 +170781775284,215,0 +170781775332,214,0 +170781775380,215,0 +170781775428,214,0 +170781775476,214,0 +170781775524,215,0 +170781775572,214,0 +170781775620,215,0 +170781775669,215,0 +170781775717,215,0 +170781775767,215,0 +170781775815,215,0 +170781775864,215,0 +170781775912,214,0 +170781775960,215,0 +170781776008,215,0 +170781776058,214,0 +170781776105,214,0 +170781776155,214,0 +170781776203,214,0 +170781776252,214,0 +170781776300,214,0 +170781776348,215,0 +170781776398,215,0 +170781776447,215,0 +170781776497,215,0 +170781776545,215,0 +170781776594,215,0 +170781776642,214,0 +170781776690,214,0 +170781776738,215,0 +170781776788,214,0 +170781776837,215,0 +170781776887,214,0 +170781776934,214,0 +170781776982,214,0 +170781777030,214,0 +170781777078,214,0 +170781777126,214,0 +170781777174,214,0 +170781777222,214,0 +170781777269,214,0 +170781777317,214,0 +170781777365,214,0 +170781777415,214,0 +170781777463,214,0 +170781777512,215,0 +170781777560,215,0 +170781777608,215,0 +170781777656,214,0 +170781777704,214,0 +170781777752,214,0 +170781777800,214,0 +170781777848,214,0 +170781777895,214,0 +170781777943,214,0 +170781777991,214,0 +170781778039,214,0 +170781778087,214,0 +170781778137,214,0 +170781778184,214,0 +170781778232,214,0 +170781778282,214,0 +170781778332,215,0 +170781778380,214,0 +170781778429,214,0 +170781778477,215,0 +170781778526,214,0 +170781778574,214,0 +170781778624,213,0 +170781778673,214,0 +170781778721,214,0 +170781778769,214,0 +170781778817,214,0 +170781778865,214,0 +170781778912,214,0 +170781778960,214,0 +170781779008,214,0 +170781779056,214,0 +170781779104,214,0 +170781779152,214,0 +170781779201,214,0 +170781779249,214,0 +170781779297,215,0 +170781779347,214,0 +170781779395,213,0 +170781779444,214,0 +170781779493,214,0 +170781779543,214,0 +170781779591,214,0 +170781779639,214,0 +170781779688,214,0 +170781779736,214,0 +170781779784,215,0 +170781779834,214,0 +170781779882,214,0 +170781779930,214,0 +170781779979,214,0 +170781780027,215,0 +170781780075,214,0 +170781780123,214,0 +170781780171,214,0 +170781780221,214,0 +170781780269,214,0 +170781780316,214,0 +170781780366,214,0 +170781780414,214,0 +170781780462,214,0 +170781780510,214,0 +170781780558,214,0 +170781780606,214,0 +170781780653,215,0 +170781780701,215,0 +170781780749,215,0 +170781780797,215,0 +170781780845,214,0 +170781780895,214,0 +170781780943,214,0 +170781780991,214,0 +170781781039,214,0 +170781781088,214,0 +170781781136,214,0 +170781781186,214,0 +170781781235,214,0 +170781781285,214,0 +170781781334,215,0 +170781781384,214,0 +170781781433,214,0 +170781781483,215,0 +170781781531,215,0 +170781781579,215,0 +170781781628,215,0 +170781781676,214,0 +170781781724,214,0 +170781781774,214,0 +170781781822,214,0 +170781781870,214,0 +170781781918,214,0 +170781781965,214,0 +170781782015,214,0 +170781782063,214,0 +170781782111,214,0 +170781782160,214,0 +170781782208,214,0 +170781782256,215,0 +170781782304,214,0 +170781782353,215,0 +170781782403,215,0 +170781782451,215,0 +170781782499,214,0 +170781782548,214,0 +170781782596,214,0 +170781782644,214,0 +170781782694,214,0 +170781782743,214,0 +170781782791,214,0 +170781782839,214,0 +170781782887,214,0 +170781782935,214,0 +170781782984,214,0 +170781783034,215,0 +170781783082,215,0 +170781783131,214,0 +170781783179,215,0 +170781783227,214,0 +170781783275,214,0 +170781783325,214,0 +170781783373,214,0 +170781783421,214,0 +170781783468,214,0 +170781783518,214,0 +170781783566,214,0 +170781783614,214,0 +170781783662,214,0 +170781783711,214,0 +170781783759,214,0 +170781783809,214,0 +170781783856,214,0 +170781783904,214,0 +170781783952,214,0 +170781784002,214,0 +170781784050,214,0 +170781784098,214,0 +170781784147,214,0 +170781784195,214,0 +170781784245,214,0 +170781784294,214,0 +170781784342,214,0 +170781784392,214,0 +170781784439,214,0 +170781784489,214,0 +170781784537,214,0 +170781784585,214,0 +170781784634,214,0 +170781784682,214,0 +170781784730,214,0 +170781784778,215,0 +170781784826,214,0 +170781784876,215,0 +170781784925,214,0 +170781784973,214,0 +170781785021,214,0 +170781785071,214,0 +170781785119,214,0 +170781785167,214,0 +170781785214,214,0 +170781785262,214,0 +170781785310,214,0 +170781785359,214,0 +170781785407,215,0 +170781785455,214,0 +170781785503,215,0 +170781785551,214,0 +170781785600,214,0 +170781785648,215,0 +170781785696,214,0 +170781785746,214,0 +170781785795,214,0 +170781785843,213,0 +170781785893,213,0 +170781785942,214,0 +170781785992,214,0 +170781786040,214,0 +170781786088,214,0 +170781786136,214,0 +170781786185,214,0 +170781786235,214,0 +170781786283,214,0 +170781786331,214,0 +170781786378,214,0 +170781786426,214,0 +170781786476,214,0 +170781786524,215,0 +170781786572,214,0 +170781786620,214,0 +170781786668,214,0 +170781786716,214,0 +170781786765,214,0 +170781786813,214,0 +170781786861,214,0 +170781786911,214,0 +170781786960,214,0 +170781787010,214,0 +170781787059,214,0 +170781787109,215,0 +170781787157,214,0 +170781787206,215,0 +170781787256,214,0 +170781787305,214,0 +170781787355,214,0 +170781787402,214,0 +170781787452,214,0 +170781787500,214,0 +170781787549,214,0 +170781787597,214,0 +170781787647,215,0 +170781787696,214,0 +170781787744,214,0 +170781787794,214,0 +170781787842,214,0 +170781787889,215,0 +170781787937,215,0 +170781787985,215,0 +170781788035,215,0 +170781788083,214,0 +170781788130,214,0 +170781788178,214,0 +170781788226,214,0 +170781788274,214,0 +170781788322,214,0 +170781788371,214,0 +170781788421,214,0 +170781788469,215,0 +170781788517,214,0 +170781788566,214,0 +170781788614,214,0 +170781788662,215,0 +170781788711,215,0 +170781788759,215,0 +170781788807,215,0 +170781788855,215,0 +170781788904,214,0 +170781788952,214,0 +170781789000,214,0 +170781789048,214,0 +170781789095,214,0 +170781789143,214,0 +170781789191,214,0 +170781789239,214,0 +170781789287,214,0 +170781789335,214,0 +170781789382,214,0 +170781789430,214,0 +170781789478,215,0 +170781789526,215,0 +170781789574,214,0 +170781789621,215,0 +170781789669,214,0 +170781789717,214,0 +170781789765,214,0 +170781789813,214,0 +170781789860,214,0 +170781789908,214,0 +170781789956,214,0 +170781790004,214,0 +170781790052,214,0 +170781790099,214,0 +170781790147,214,0 +170781790195,214,0 +170781790244,215,0 +170781790292,215,0 +170781790342,215,0 +170781790389,215,0 +170781790437,214,0 +170781790485,214,0 +170781790533,214,0 +170781790581,214,0 +170781790630,214,0 +170781790678,214,0 +170781790726,214,0 +170781790773,214,0 +170781790821,214,0 +170781790869,214,0 +170781790917,215,0 +170781790965,214,0 +170781791014,214,0 +170781791062,215,0 +170781791110,215,0 +170781791159,215,0 +170781791207,215,0 +170781791255,215,0 +170781791304,214,0 +170781791352,214,0 +170781791400,214,0 +170781791448,214,0 +170781791496,214,0 +170781791544,214,0 +170781791592,214,0 +170781791640,214,0 +170781791689,214,0 +170781791737,214,0 +170781791785,214,0 +170781791833,215,0 +170781791881,214,0 +170781791929,215,0 +170781791976,214,0 +170781792026,214,0 +170781792074,214,0 +170781792121,214,0 +170781792169,214,0 +170781792219,214,0 +170781792267,214,0 +170781792314,214,0 +170781792362,214,0 +170781792410,214,0 +170781792458,214,0 +170781792506,214,0 +170781792555,215,0 +170781792603,214,0 +170781792651,215,0 +170781792699,215,0 +170781792747,214,0 +170781792795,215,0 +170781792843,214,0 +170781792892,215,0 +170781792940,214,0 +170781792988,214,0 +170781793036,214,0 +170781793084,214,0 +170781793132,214,0 +170781793181,214,0 +170781793231,214,0 +170781793280,214,0 +170781793328,214,0 +170781793378,214,0 +170781793426,214,0 +170781793475,214,0 +170781793525,214,0 +170781793573,215,0 +170781793621,214,0 +170781793669,214,0 +170781793717,214,0 +170781793765,214,0 +170781793812,213,0 +170781793862,214,0 +170781793910,214,0 +170781793958,214,0 +170781794005,214,0 +170781794055,214,0 +170781794103,214,0 +170781794151,214,0 +170781794198,214,0 +170781794246,215,0 +170781794294,215,0 +170781794344,214,0 +170781794391,215,0 +170781794439,214,0 +170781794487,214,0 +170781794535,214,0 +170781794584,214,0 +170781794634,213,0 +170781794681,213,0 +170781794731,214,0 +170781794779,214,0 +170781794827,214,0 +170781794875,214,0 +170781794922,214,0 +170781794972,214,0 +170781795021,214,0 +170781795069,214,0 +170781795117,215,0 +170781795165,214,0 +170781795213,214,0 +170781795261,214,0 +170781795309,214,0 +170781795357,214,0 +170781795404,213,0 +170781795454,213,0 +170781795502,214,0 +170781795550,214,0 +170781795598,214,0 +170781795647,214,0 +170781795695,214,0 +170781795745,214,0 +170781795794,214,0 +170781795842,214,0 +170781795890,214,0 +170781795938,214,0 +170781795986,214,0 +170781796034,214,0 +170781796082,214,0 +170781796130,214,0 +170781796178,213,0 +170781796226,213,0 +170781796275,213,0 +170781796323,213,0 +170781796372,214,0 +170781796420,214,0 +170781796468,214,0 +170781796516,214,0 +170781796564,214,0 +170781796612,214,0 +170781796660,214,0 +170781796709,214,0 +170781796757,214,0 +170781796805,215,0 +170781796853,215,0 +170781796900,214,0 +170781796948,214,0 +170781796996,213,0 +170781797046,213,0 +170781797093,213,0 +170781797141,213,0 +170781797189,213,0 +170781797237,214,0 +170781797285,214,0 +170781797333,213,0 +170781797380,214,0 +170781797428,214,0 +170781797476,214,0 +170781797524,214,0 +170781797572,214,0 +170781797620,214,0 +170781797668,214,0 +170781797716,214,0 +170781797763,214,0 +170781797813,213,0 +170781797861,214,0 +170781797910,214,0 +170781797958,214,0 +170781798006,214,0 +170781798054,214,0 +170781798102,214,0 +170781798150,214,0 +170781798198,214,0 +170781798248,214,0 +170781798296,214,0 +170781798345,214,0 +170781798393,214,0 +170781798441,214,0 +170781798489,214,0 +170781798538,214,0 +170781798586,214,0 +170781798634,213,0 +170781798682,213,0 +170781798732,214,0 +170781798780,214,0 +170781798828,214,0 +170781798877,214,0 +170781798925,214,0 +170781798974,214,0 +170781799022,214,0 +170781799070,214,0 +170781799118,214,0 +170781799168,214,0 +170781799216,215,0 +170781799264,215,0 +170781799313,214,0 +170781799361,214,0 +170781799409,214,0 +170781799457,214,0 +170781799505,214,0 +170781799555,214,0 +170781799604,214,0 +170781799654,215,0 +170781799702,215,0 +170781799750,214,0 +170781799797,214,0 +170781799845,214,0 +170781799893,215,0 +170781799941,214,0 +170781799989,214,0 +170781800039,214,0 +170781800086,214,0 +170781800134,214,0 +170781800184,215,0 +170781800232,214,0 +170781800281,214,0 +170781800331,215,0 +170781800380,215,0 +170781800428,214,0 +170781800478,214,0 +170781800527,215,0 +170781800577,215,0 +170781800626,215,0 +170781800676,214,0 +170781800724,215,0 +170781800773,215,0 +170781800823,215,0 +170781800871,215,0 +170781800918,214,0 +170781800968,214,0 +170781801016,214,0 +170781801064,214,0 +170781801112,214,0 +170781801161,214,0 +170781801209,214,0 +170781801257,214,0 +170781801307,214,0 +170781801356,214,0 +170781801406,215,0 +170781801455,215,0 +170781801503,215,0 +170781801551,215,0 +170781801601,215,0 +170781801649,215,0 +170781801697,215,0 +170781801746,214,0 +170781801794,213,0 +170781801842,214,0 +170781801890,214,0 +170781801940,214,0 +170781801989,214,0 +170781802039,214,0 +170781802088,214,0 +170781802136,214,0 +170781802184,214,0 +170781802232,214,0 +170781802281,214,0 +170781802329,214,0 +170781802379,215,0 +170781802428,215,0 +170781802476,214,0 +170781802526,214,0 +170781802573,214,0 +170781802621,214,0 +170781802669,214,0 +170781802717,214,0 +170781802765,214,0 +170781802814,214,0 +170781802862,214,0 +170781802910,214,0 +170781802958,214,0 +170781803006,214,0 +170781803054,214,0 +170781803102,214,0 +170781803150,214,0 +170781803198,214,0 +170781803245,214,0 +170781803293,215,0 +170781803341,214,0 +170781803389,214,0 +170781803437,214,0 +170781803485,214,0 +170781803533,214,0 +170781803581,214,0 +170781803628,214,0 +170781803676,214,0 +170781803724,214,0 +170781803772,214,0 +170781803820,214,0 +170781803868,214,0 +170781803916,214,0 +170781803964,214,0 +170781804012,214,0 +170781804061,215,0 +170781804110,214,0 +170781804158,214,0 +170781804208,214,0 +170781804256,214,0 +170781804303,214,0 +170781804351,214,0 +170781804399,214,0 +170781804447,214,0 +170781804496,214,0 +170781804544,214,0 +170781804592,214,0 +170781804640,215,0 +170781804688,214,0 +170781804736,214,0 +170781804784,215,0 +170781804834,214,0 +170781804882,214,0 +170781804930,214,0 +170781804977,214,0 +170781805027,213,0 +170781805075,213,0 +170781805123,214,0 +170781805171,214,0 +170781805219,214,0 +170781805268,214,0 +170781805316,214,0 +170781805364,214,0 +170781805413,214,0 +170781805461,214,0 +170781805509,214,0 +170781805557,214,0 +170781805607,214,0 +170781805656,214,0 +170781805704,214,0 +170781805754,214,0 +170781805802,214,0 +170781805850,214,0 +170781805899,214,0 +170781805947,214,0 +170781805995,214,0 +170781806044,214,0 +170781806094,214,0 +170781806142,214,0 +170781806190,214,0 +170781806238,214,0 +170781806286,214,0 +170781806333,214,0 +170781806381,215,0 +170781806431,214,0 +170781806479,214,0 +170781806527,214,0 +170781806576,214,0 +170781806624,214,0 +170781806672,214,0 +170781806722,214,0 +170781806769,214,0 +170781806819,214,0 +170781806867,214,0 +170781806915,214,0 +170781806963,214,0 +170781807011,214,0 +170781807060,214,0 +170781807108,214,0 +170781807156,214,0 +170781807204,214,0 +170781807254,214,0 +170781807301,214,0 +170781807349,214,0 +170781807397,214,0 +170781807445,213,0 +170781807493,213,0 +170781807543,214,0 +170781807591,214,0 +170781807639,213,0 +170781807687,214,0 +170781807735,214,0 +170781807782,214,0 +170781807830,214,0 +170781807880,214,0 +170781807928,214,0 +170781807977,215,0 +170781808025,214,0 +170781808073,214,0 +170781808121,214,0 +170781808169,214,0 +170781808217,213,0 +170781808266,213,0 +170781808314,213,0 +170781808362,213,0 +170781808412,214,0 +170781808459,213,0 +170781808509,214,0 +170781808559,214,0 +170781808606,214,0 +170781808654,214,0 +170781808702,214,0 +170781808750,214,0 +170781808800,214,0 +170781808847,214,0 +170781808897,214,0 +170781808945,215,0 +170781808993,214,0 +170781809041,214,0 +170781809088,214,0 +170781809138,213,0 +170781809186,214,0 +170781809234,214,0 +170781809281,213,0 +170781809329,213,0 +170781809377,214,0 +170781809427,214,0 +170781809474,214,0 +170781809522,214,0 +170781809570,214,0 +170781809618,214,0 +170781809666,214,0 +170781809714,214,0 +170781809763,214,0 +170781809811,214,0 +170781809861,214,0 +170781809909,214,0 +170781809957,214,0 +170781810005,214,0 +170781810054,214,0 +170781810102,214,0 +170781810150,214,0 +170781810198,214,0 +170781810248,214,0 +170781810297,214,0 +170781810345,214,0 +170781810393,214,0 +170781810441,214,0 +170781810489,214,0 +170781810538,214,0 +170781810586,215,0 +170781810634,214,0 +170781810682,214,0 +170781810730,214,0 +170781810778,214,0 +170781810827,214,0 +170781810875,214,0 +170781810923,214,0 +170781810973,214,0 +170781811020,214,0 +170781811068,213,0 +170781811116,214,0 +170781811164,214,0 +170781811212,214,0 +170781811262,214,0 +170781811311,214,0 +170781811359,214,0 +170781811407,214,0 +170781811457,214,0 +170781811506,214,0 +170781811554,215,0 +170781811604,214,0 +170781811652,215,0 +170781811701,214,0 +170781811751,214,0 +170781811798,215,0 +170781811846,214,0 +170781811894,214,0 +170781811942,214,0 +170781811990,214,0 +170781812038,214,0 +170781812086,214,0 +170781812134,215,0 +170781812182,214,0 +170781812230,214,0 +170781812278,215,0 +170781812327,214,0 +170781812375,215,0 +170781812425,215,0 +170781812474,215,0 +170781812524,215,0 +170781812572,214,0 +170781812620,214,0 +170781812668,214,0 +170781812716,215,0 +170781812763,214,0 +170781812813,214,0 +170781812861,214,0 +170781812910,214,0 +170781812958,214,0 +170781813008,214,0 +170781813056,214,0 +170781813104,214,0 +170781813152,214,0 +170781813200,215,0 +170781813248,214,0 +170781813295,215,0 +170781813343,215,0 +170781813391,214,0 +170781813439,214,0 +170781813488,215,0 +170781813536,215,0 +170781813586,214,0 +170781813634,214,0 +170781813682,214,0 +170781813730,214,0 +170781813778,214,0 +170781813827,214,0 +170781813875,214,0 +170781813923,214,0 +170781813971,214,0 +170781814019,214,0 +170781814067,214,0 +170781814115,214,0 +170781814163,214,0 +170781814211,214,0 +170781814259,214,0 +170781814307,214,0 +170781814355,214,0 +170781814402,215,0 +170781814450,214,0 +170781814498,214,0 +170781814546,215,0 +170781814595,215,0 +170781814643,214,0 +170781814691,214,0 +170781814739,214,0 +170781814787,214,0 +170781814836,214,0 +170781814886,214,0 +170781814934,214,0 +170781814982,214,0 +170781815030,214,0 +170781815078,214,0 +170781815125,214,0 +170781815173,214,0 +170781815221,214,0 +170781815271,215,0 +170781815318,214,0 +170781815366,215,0 +170781815414,214,0 +170781815462,215,0 +170781815510,215,0 +170781815557,214,0 +170781815607,214,0 +170781815655,213,0 +170781815703,213,0 +170781815750,214,0 +170781815798,214,0 +170781815846,214,0 +170781815896,214,0 +170781815943,214,0 +170781815991,214,0 +170781816039,214,0 +170781816087,214,0 +170781816135,214,0 +170781816183,214,0 +170781816232,214,0 +170781816282,214,0 +170781816330,215,0 +170781816378,214,0 +170781816427,214,0 +170781816475,214,0 +170781816523,214,0 +170781816572,213,0 +170781816620,213,0 +170781816668,214,0 +170781816718,214,0 +170781816766,214,0 +170781816815,214,0 +170781816865,214,0 +170781816912,214,0 +170781816960,214,0 +170781817008,214,0 +170781817056,214,0 +170781817104,214,0 +170781817153,214,0 +170781817201,214,0 +170781817249,214,0 +170781817297,214,0 +170781817345,215,0 +170781817393,214,0 +170781817441,214,0 +170781817488,213,0 +170781817536,213,0 +170781817584,213,0 +170781817632,214,0 +170781817680,214,0 +170781817728,213,0 +170781817777,213,0 +170781817825,214,0 +170781817873,214,0 +170781817923,214,0 +170781817972,214,0 +170781818020,214,0 +170781818068,214,0 +170781818116,214,0 +170781818164,214,0 +170781818211,214,0 +170781818259,215,0 +170781818307,214,0 +170781818357,214,0 +170781818406,214,0 +170781818454,214,0 +170781818503,213,0 +170781818553,214,0 +170781818601,214,0 +170781818650,214,0 +170781818700,214,0 +170781818747,214,0 +170781818797,214,0 +170781818845,214,0 +170781818893,214,0 +170781818940,214,0 +170781818988,214,0 +170781819038,214,0 +170781819086,215,0 +170781819134,214,0 +170781819181,215,0 +170781819229,215,0 +170781819279,214,0 +170781819326,214,0 +170781819374,214,0 +170781819422,214,0 +170781819470,214,0 +170781819518,214,0 +170781819566,214,0 +170781819613,214,0 +170781819661,214,0 +170781819709,214,0 +170781819757,214,0 +170781819805,214,0 +170781819853,214,0 +170781819901,215,0 +170781819948,215,0 +170781819998,215,0 +170781820046,214,0 +170781820094,215,0 +170781820141,215,0 +170781820189,214,0 +170781820239,214,0 +170781820288,214,0 +170781820336,214,0 +170781820384,214,0 +170781820432,214,0 +170781820481,214,0 +170781820529,214,0 +170781820577,214,0 +170781820625,214,0 +170781820673,214,0 +170781820721,214,0 +170781820770,214,0 +170781820818,214,0 +170781820866,215,0 +170781820914,215,0 +170781820961,215,0 +170781821009,215,0 +170781821057,214,0 +170781821105,214,0 +170781821153,214,0 +170781821201,214,0 +170781821249,214,0 +170781821297,214,0 +170781821345,214,0 +170781821394,214,0 +170781821442,214,0 +170781821490,214,0 +170781821538,214,0 +170781821586,214,0 +170781821633,214,0 +170781821681,214,0 +170781821731,215,0 +170781821780,215,0 +170781821829,215,0 +170781821877,215,0 +170781821925,215,0 +170781821973,214,0 +170781822021,214,0 +170781822070,214,0 +170781822118,214,0 +170781822166,214,0 +170781822214,214,0 +170781822261,214,0 +170781822309,214,0 +170781822357,214,0 +170781822405,214,0 +170781822453,214,0 +170781822502,214,0 +170781822552,215,0 +170781822601,215,0 +170781822651,215,0 +170781822699,215,0 +170781822747,215,0 +170781822796,215,0 +170781822846,215,0 +170781822895,214,0 +170781822943,215,0 +170781822991,214,0 +170781823039,214,0 +170781823087,213,0 +170781823135,214,0 +170781823183,214,0 +170781823231,214,0 +170781823279,214,0 +170781823326,214,0 +170781823374,214,0 +170781823424,214,0 +170781823472,214,0 +170781823519,214,0 +170781823567,214,0 +170781823617,215,0 +170781823666,215,0 +170781823716,215,0 +170781823764,217,0 +170781823811,215,0 +170781823859,215,0 +170781823907,214,0 +170781823955,214,0 +170781824003,213,0 +170781824051,213,0 +170781824100,214,0 +170781824148,214,0 +170781824197,214,0 +170781824245,214,0 +170781824293,214,0 +170781824341,214,0 +170781824389,214,0 +170781824438,214,0 +170781824486,214,0 +170781824534,214,0 +170781824582,214,0 +170781824630,214,0 +170781824678,214,0 +170781824726,215,0 +170781824774,214,0 +170781824823,214,0 +170781824873,214,0 +170781824923,213,0 +170781824970,213,0 +170781825019,213,0 +170781825068,213,0 +170781825116,214,0 +170781825165,213,0 +170781825215,214,0 +170781825263,214,0 +170781825312,214,0 +170781825362,214,0 +170781825410,214,0 +170781825458,214,0 +170781825507,214,0 +170781825555,214,0 +170781825605,214,0 +170781825653,214,0 +170781825700,214,0 +170781825748,214,0 +170781825796,214,0 +170781825846,213,0 +170781825894,213,0 +170781825943,213,0 +170781825991,213,0 +170781826041,214,0 +170781826090,214,0 +170781826138,214,0 +170781826186,214,0 +170781826236,214,0 +170781826284,214,0 +170781826332,214,0 +170781826380,214,0 +170781826427,214,0 +170781826475,214,0 +170781826525,214,0 +170781826573,214,0 +170781826621,215,0 +170781826670,215,0 +170781826720,214,0 +170781826769,214,0 +170781826819,213,0 +170781826868,213,0 +170781826916,213,0 +170781826964,213,0 +170781827013,214,0 +170781827061,213,0 +170781827109,214,0 +170781827157,214,0 +170781827205,214,0 +170781827255,214,0 +170781827303,214,0 +170781827352,214,0 +170781827402,214,0 +170781827451,214,0 +170781827501,214,0 +170781827550,214,0 +170781827598,214,0 +170781827647,214,0 +170781827695,213,0 +170781827743,213,0 +170781827791,214,0 +170781827841,214,0 +170781827890,213,0 +170781827940,213,0 +170781827989,214,0 +170781828037,213,0 +170781828086,214,0 +170781828134,214,0 +170781828184,214,0 +170781828232,214,0 +170781828280,214,0 +170781828327,214,0 +170781828375,214,0 +170781828423,214,0 +170781828471,214,0 +170781828519,214,0 +170781828569,214,0 +170781828617,214,0 +170781828664,213,0 +170781828712,213,0 +170781828760,214,0 +170781828809,214,0 +170781828857,214,0 +170781828905,214,0 +170781828955,214,0 +170781829003,214,0 +170781829051,214,0 +170781829099,214,0 +170781829146,214,0 +170781829196,214,0 +170781829244,214,0 +170781829292,214,0 +170781829341,214,0 +170781829389,214,0 +170781829437,214,0 +170781829485,214,0 +170781829533,214,0 +170781829581,214,0 +170781829628,213,0 +170781829676,214,0 +170781829724,213,0 +170781829772,214,0 +170781829820,214,0 +170781829868,214,0 +170781829916,214,0 +170781829964,214,0 +170781830013,214,0 +170781830063,214,0 +170781830112,214,0 +170781830162,214,0 +170781830211,214,0 +170781830259,214,0 +170781830307,214,0 +170781830355,214,0 +170781830403,214,0 +170781830452,214,0 +170781830500,213,0 +170781830550,213,0 +170781830598,213,0 +170781830646,214,0 +170781830694,214,0 +170781830742,213,0 +170781830791,214,0 +170781830841,214,0 +170781830889,214,0 +170781830937,214,0 +170781830986,214,0 +170781831034,214,0 +170781831082,214,0 +170781831130,214,0 +170781831180,214,0 +170781831228,214,0 +170781831275,215,0 +170781831323,214,0 +170781831371,214,0 +170781831419,213,0 +170781831469,213,0 +170781831517,213,0 +170781831565,214,0 +170781831614,214,0 +170781831664,214,0 +170781831713,214,0 +170781831763,214,0 +170781831811,214,0 +170781831860,214,0 +170781831908,214,0 +170781831956,214,0 +170781832004,214,0 +170781832052,215,0 +170781832100,214,0 +170781832148,215,0 +170781832195,215,0 +170781832243,214,0 +170781832291,215,0 +170781832341,214,0 +170781832389,214,0 +170781832438,214,0 +170781832486,214,0 +170781832534,214,0 +170781832581,214,0 +170781832629,214,0 +170781832679,214,0 +170781832728,214,0 +170781832776,214,0 +170781832824,214,0 +170781832874,215,0 +170781832922,214,0 +170781832969,215,0 +170781833017,215,0 +170781833065,215,0 +170781833115,214,0 +170781833164,214,0 +170781833214,214,0 +170781833263,214,0 +170781833311,214,0 +170781833359,214,0 +170781833407,214,0 +170781833455,214,0 +170781833503,214,0 +170781833551,214,0 +170781833599,214,0 +170781833646,214,0 +170781833694,214,0 +170781833742,214,0 +170781833790,215,0 +170781833838,214,0 +170781833885,215,0 +170781833933,214,0 +170781833983,215,0 +170781834031,215,0 +170781834079,214,0 +170781834126,214,0 +170781834176,214,0 +170781834225,214,0 +170781834273,214,0 +170781834323,214,0 +170781834372,214,0 +170781834420,214,0 +170781834468,214,0 +170781834516,214,0 +170781834564,214,0 +170781834612,214,0 +170781834661,214,0 +170781834709,214,0 +170781834757,214,0 +170781834805,215,0 +170781834853,215,0 +170781834901,214,0 +170781834949,214,0 +170781834997,215,0 +170781835045,214,0 +170781835094,214,0 +170781835142,213,0 +170781835190,213,0 +170781835239,213,0 +170781835289,213,0 +170781835338,214,0 +170781835386,213,0 +170781835436,214,0 +170781835485,214,0 +170781835533,214,0 +170781835583,214,0 +170781835631,214,0 +170781835679,214,0 +170781835726,214,0 +170781835774,214,0 +170781835822,214,0 +170781835870,214,0 +170781835918,214,0 +170781835966,214,0 +170781836014,214,0 +170781836063,214,0 +170781836111,213,0 +170781836161,213,0 +170781836209,213,0 +170781836258,213,0 +170781836308,213,0 +170781836357,214,0 +170781836405,214,0 +170781836455,214,0 +170781836503,214,0 +170781836551,214,0 +170781836599,214,0 +170781836648,214,0 +170781836696,214,0 +170781836744,214,0 +170781836792,214,0 +170781836840,214,0 +170781836889,214,0 +170781836938,214,0 +170781836986,213,0 +170781837035,213,0 +170781837083,213,0 +170781837131,213,0 +170781837179,214,0 +170781837227,213,0 +170781837276,213,0 +170781837324,213,0 +170781837372,213,0 +170781837420,214,0 +170781837468,214,0 +170781837516,214,0 +170781837563,214,0 +170781837613,214,0 +170781837661,214,0 +170781837710,214,0 +170781837758,214,0 +170781837806,214,0 +170781837854,214,0 +170781837902,213,0 +170781837950,213,0 +170781837998,213,0 +170781838046,213,0 +170781838094,213,0 +170781838142,213,0 +170781838191,214,0 +170781838239,213,0 +170781838287,214,0 +170781838336,214,0 +170781838384,214,0 +170781838432,214,0 +170781838480,214,0 +170781838530,214,0 +170781838578,214,0 +170781838627,214,0 +170781838677,214,0 +170781838726,214,0 +170781838776,214,0 +170781838824,213,0 +170781838872,213,0 +170781838921,213,0 +170781838969,213,0 +170781839017,213,0 +170781839065,214,0 +170781839113,213,0 +170781839161,214,0 +170781839209,213,0 +170781839257,214,0 +170781839306,214,0 +170781839354,214,0 +170781839402,214,0 +170781839450,214,0 +170781839499,214,0 +170781839549,214,0 +170781839597,214,0 +170781839645,214,0 +170781839693,214,0 +170781839742,214,0 +170781839792,213,0 +170781839841,213,0 +170781839889,213,0 +170781839937,213,0 +170781839986,214,0 diff --git a/laser_value/0213-20.csv b/laser_value/0213-20.csv new file mode 100644 index 0000000..cf0340f --- /dev/null +++ b/laser_value/0213-20.csv @@ -0,0 +1,7439 @@ +timestamp,laser_value,event +170781840036,214,0 +170781840084,214,0 +170781840132,214,0 +170781840180,214,0 +170781840228,214,0 +170781840276,214,0 +170781840323,214,0 +170781840373,214,0 +170781840421,214,0 +170781840470,214,0 +170781840518,214,0 +170781840568,214,0 +170781840615,214,0 +170781840665,214,0 +170781840713,213,0 +170781840761,213,0 +170781840810,214,0 +170781840858,213,0 +170781840907,214,0 +170781840956,214,0 +170781841004,214,0 +170781841052,214,0 +170781841100,214,0 +170781841149,214,0 +170781841197,214,0 +170781841245,214,0 +170781841293,214,0 +170781841342,214,0 +170781841390,214,0 +170781841439,214,0 +170781841489,214,0 +170781841536,214,0 +170781841584,214,0 +170781841632,213,0 +170781841680,213,0 +170781841727,214,0 +170781841777,214,0 +170781841825,214,0 +170781841872,214,0 +170781841922,214,0 +170781841970,214,0 +170781842019,214,0 +170781842067,214,0 +170781842116,214,0 +170781842164,214,0 +170781842212,215,0 +170781842260,214,0 +170781842307,214,0 +170781842355,214,0 +170781842403,214,0 +170781842451,215,0 +170781842498,214,0 +170781842546,214,0 +170781842594,213,0 +170781842642,213,0 +170781842690,214,0 +170781842738,213,0 +170781842786,214,0 +170781842835,214,0 +170781842885,214,0 +170781842933,214,0 +170781842980,214,0 +170781843028,214,0 +170781843076,214,0 +170781843124,214,0 +170781843172,214,0 +170781843220,215,0 +170781843268,214,0 +170781843316,214,0 +170781843365,214,0 +170781843413,214,0 +170781843461,214,0 +170781843510,213,0 +170781843558,213,0 +170781843608,213,0 +170781843657,213,0 +170781843705,213,0 +170781843753,214,0 +170781843803,214,0 +170781843851,214,0 +170781843899,214,0 +170781843946,214,0 +170781843996,214,0 +170781844044,214,0 +170781844092,214,0 +170781844141,214,0 +170781844191,214,0 +170781844239,214,0 +170781844287,214,0 +170781844334,214,0 +170781844382,214,0 +170781844430,213,0 +170781844480,213,0 +170781844528,213,0 +170781844577,213,0 +170781844627,213,0 +170781844675,214,0 +170781844723,214,0 +170781844771,214,0 +170781844819,214,0 +170781844868,214,0 +170781844916,214,0 +170781844964,214,0 +170781845012,214,0 +170781845060,214,0 +170781845107,214,0 +170781845155,214,0 +170781845205,214,0 +170781845254,214,0 +170781845304,214,0 +170781845352,213,0 +170781845401,213,0 +170781845450,213,0 +170781845500,213,0 +170781845548,214,0 +170781845596,214,0 +170781845643,214,0 +170781845691,214,0 +170781845739,214,0 +170781845787,214,0 +170781845835,214,0 +170781845883,214,0 +170781845930,214,0 +170781845978,214,0 +170781846026,214,0 +170781846074,214,0 +170781846123,214,0 +170781846171,214,0 +170781846219,214,0 +170781846267,214,0 +170781846316,213,0 +170781846365,214,0 +170781846413,213,0 +170781846461,213,0 +170781846511,214,0 +170781846558,213,0 +170781846606,214,0 +170781846654,214,0 +170781846702,214,0 +170781846750,214,0 +170781846798,214,0 +170781846846,214,0 +170781846894,214,0 +170781846942,214,0 +170781846990,214,0 +170781847038,214,0 +170781847085,214,0 +170781847133,214,0 +170781847181,213,0 +170781847229,213,0 +170781847277,213,0 +170781847325,214,0 +170781847374,214,0 +170781847422,214,0 +170781847470,214,0 +170781847518,214,0 +170781847565,214,0 +170781847613,214,0 +170781847661,214,0 +170781847709,214,0 +170781847757,214,0 +170781847805,214,0 +170781847853,214,0 +170781847900,214,0 +170781847948,214,0 +170781847997,214,0 +170781848045,214,0 +170781848093,214,0 +170781848141,213,0 +170781848189,214,0 +170781848238,214,0 +170781848286,214,0 +170781848334,214,0 +170781848382,214,0 +170781848429,214,0 +170781848477,214,0 +170781848525,214,0 +170781848574,214,0 +170781848624,214,0 +170781848672,214,0 +170781848720,214,0 +170781848768,214,0 +170781848815,214,0 +170781848863,214,0 +170781848911,215,0 +170781848959,214,0 +170781849007,214,0 +170781849055,213,0 +170781849104,213,0 +170781849152,213,0 +170781849202,213,0 +170781849250,213,0 +170781849297,214,0 +170781849345,213,0 +170781849395,214,0 +170781849443,214,0 +170781849492,214,0 +170781849542,214,0 +170781849590,214,0 +170781849638,214,0 +170781849685,214,0 +170781849733,214,0 +170781849783,214,0 +170781849832,214,0 +170781849882,214,0 +170781849930,214,0 +170781849978,213,0 +170781850027,213,0 +170781850076,213,0 +170781850124,214,0 +170781850174,214,0 +170781850222,213,0 +170781850270,214,0 +170781850317,214,0 +170781850365,214,0 +170781850413,214,0 +170781850461,214,0 +170781850511,214,0 +170781850558,214,0 +170781850608,214,0 +170781850657,214,0 +170781850707,214,0 +170781850756,214,0 +170781850804,214,0 +170781850852,214,0 +170781850900,213,0 +170781850949,213,0 +170781850997,213,0 +170781851045,213,0 +170781851093,213,0 +170781851141,213,0 +170781851189,214,0 +170781851239,214,0 +170781851287,214,0 +170781851336,214,0 +170781851386,214,0 +170781851435,214,0 +170781851485,214,0 +170781851534,214,0 +170781851582,214,0 +170781851632,214,0 +170781851681,214,0 +170781851731,214,0 +170781851780,214,0 +170781851828,213,0 +170781851876,213,0 +170781851924,213,0 +170781851972,213,0 +170781852020,214,0 +170781852067,213,0 +170781852115,214,0 +170781852163,214,0 +170781852213,214,0 +170781852261,214,0 +170781852308,214,0 +170781852358,214,0 +170781852406,214,0 +170781852454,214,0 +170781852503,214,0 +170781852551,214,0 +170781852601,214,0 +170781852649,214,0 +170781852697,214,0 +170781852745,214,0 +170781852794,213,0 +170781852842,213,0 +170781852892,213,0 +170781852940,214,0 +170781852988,214,0 +170781853035,214,0 +170781853083,214,0 +170781853133,214,0 +170781853182,214,0 +170781853230,214,0 +170781853278,214,0 +170781853326,214,0 +170781853374,214,0 +170781853422,214,0 +170781853470,214,0 +170781853519,214,0 +170781853567,214,0 +170781853615,214,0 +170781853663,214,0 +170781853711,213,0 +170781853758,214,0 +170781853806,213,0 +170781853856,214,0 +170781853904,214,0 +170781853951,214,0 +170781853999,214,0 +170781854047,214,0 +170781854095,214,0 +170781854143,214,0 +170781854191,214,0 +170781854239,214,0 +170781854287,214,0 +170781854334,215,0 +170781854382,214,0 +170781854430,215,0 +170781854478,214,0 +170781854526,214,0 +170781854574,214,0 +170781854621,214,0 +170781854669,214,0 +170781854717,214,0 +170781854766,214,0 +170781854814,214,0 +170781854862,214,0 +170781854910,214,0 +170781854958,214,0 +170781855006,214,0 +170781855054,214,0 +170781855103,214,0 +170781855153,215,0 +170781855201,214,0 +170781855250,214,0 +170781855300,214,0 +170781855348,215,0 +170781855397,214,0 +170781855445,214,0 +170781855493,214,0 +170781855541,213,0 +170781855589,213,0 +170781855638,213,0 +170781855687,213,0 +170781855737,213,0 +170781855785,214,0 +170781855834,214,0 +170781855884,214,0 +170781855932,214,0 +170781855980,214,0 +170781856029,214,0 +170781856077,214,0 +170781856125,214,0 +170781856173,214,0 +170781856221,214,0 +170781856270,214,0 +170781856318,214,0 +170781856366,214,0 +170781856415,214,0 +170781856465,213,0 +170781856513,213,0 +170781856561,213,0 +170781856609,213,0 +170781856658,214,0 +170781856706,213,0 +170781856754,213,0 +170781856802,213,0 +170781856850,214,0 +170781856899,214,0 +170781856947,214,0 +170781856995,214,0 +170781857043,214,0 +170781857091,214,0 +170781857139,214,0 +170781857187,214,0 +170781857234,214,0 +170781857284,214,0 +170781857333,214,0 +170781857381,213,0 +170781857429,213,0 +170781857478,213,0 +170781857526,213,0 +170781857574,213,0 +170781857624,213,0 +170781857673,213,0 +170781857721,213,0 +170781857769,214,0 +170781857817,214,0 +170781857867,214,0 +170781857914,214,0 +170781857964,214,0 +170781858012,214,0 +170781858060,214,0 +170781858108,214,0 +170781858156,214,0 +170781858204,214,0 +170781858252,214,0 +170781858300,213,0 +170781858348,213,0 +170781858396,213,0 +170781858443,213,0 +170781858493,213,0 +170781858542,213,0 +170781858590,214,0 +170781858638,214,0 +170781858686,213,0 +170781858734,214,0 +170781858782,214,0 +170781858830,214,0 +170781858879,214,0 +170781858927,214,0 +170781858977,214,0 +170781859026,214,0 +170781859074,214,0 +170781859122,214,0 +170781859171,214,0 +170781859219,213,0 +170781859269,213,0 +170781859317,213,0 +170781859365,213,0 +170781859414,213,0 +170781859462,213,0 +170781859512,213,0 +170781859561,213,0 +170781859609,214,0 +170781859659,214,0 +170781859706,214,0 +170781859756,214,0 +170781859804,214,0 +170781859853,214,0 +170781859901,214,0 +170781859951,214,0 +170781860000,214,0 +170781860048,214,0 +170781860096,214,0 +170781860144,213,0 +170781860192,213,0 +170781860240,213,0 +170781860288,213,0 +170781860336,214,0 +170781860385,213,0 +170781860435,214,0 +170781860483,214,0 +170781860531,214,0 +170781860579,214,0 +170781860628,214,0 +170781860678,214,0 +170781860726,214,0 +170781860775,214,0 +170781860825,214,0 +170781860873,214,0 +170781860920,214,0 +170781860968,214,0 +170781861016,214,0 +170781861064,214,0 +170781861112,213,0 +170781861161,213,0 +170781861209,213,0 +170781861257,214,0 +170781861305,214,0 +170781861355,213,0 +170781861404,214,0 +170781861454,214,0 +170781861502,214,0 +170781861551,214,0 +170781861599,214,0 +170781861649,214,0 +170781861697,214,0 +170781861745,214,0 +170781861793,214,0 +170781861840,214,0 +170781861888,214,0 +170781861938,214,0 +170781861986,213,0 +170781862033,213,0 +170781862083,213,0 +170781862133,213,0 +170781862180,213,0 +170781862228,214,0 +170781862278,213,0 +170781862326,214,0 +170781862374,214,0 +170781862421,214,0 +170781862471,214,0 +170781862519,214,0 +170781862568,214,0 +170781862616,214,0 +170781862664,214,0 +170781862712,214,0 +170781862760,214,0 +170781862809,215,0 +170781862857,214,0 +170781862905,214,0 +170781862953,213,0 +170781863000,213,0 +170781863050,213,0 +170781863098,213,0 +170781863146,214,0 +170781863193,213,0 +170781863241,214,0 +170781863291,214,0 +170781863340,214,0 +170781863390,214,0 +170781863438,214,0 +170781863487,214,0 +170781863537,214,0 +170781863585,214,0 +170781863634,215,0 +170781863682,214,0 +170781863730,214,0 +170781863778,214,0 +170781863827,214,0 +170781863877,213,0 +170781863926,213,0 +170781863974,214,0 +170781864022,214,0 +170781864070,214,0 +170781864118,214,0 +170781864166,214,0 +170781864214,214,0 +170781864263,214,0 +170781864311,214,0 +170781864359,214,0 +170781864408,214,0 +170781864456,214,0 +170781864506,214,0 +170781864554,214,0 +170781864603,214,0 +170781864653,214,0 +170781864701,214,0 +170781864750,214,0 +170781864798,213,0 +170781864846,213,0 +170781864894,214,0 +170781864943,214,0 +170781864991,214,0 +170781865039,214,0 +170781865087,214,0 +170781865137,214,0 +170781865186,214,0 +170781865236,214,0 +170781865284,214,0 +170781865331,214,0 +170781865379,214,0 +170781865429,214,0 +170781865478,214,0 +170781865526,214,0 +170781865574,214,0 +170781865623,214,0 +170781865671,214,0 +170781865719,213,0 +170781865767,213,0 +170781865815,213,0 +170781865863,213,0 +170781865911,213,0 +170781865960,213,0 +170781866010,213,0 +170781866059,214,0 +170781866107,214,0 +170781866157,214,0 +170781866205,214,0 +170781866252,214,0 +170781866300,214,0 +170781866350,214,0 +170781866399,214,0 +170781866447,214,0 +170781866497,214,0 +170781866546,214,0 +170781866596,214,0 +170781866644,213,0 +170781866692,213,0 +170781866740,213,0 +170781866789,213,0 +170781866837,213,0 +170781866885,213,0 +170781866934,213,0 +170781866984,213,0 +170781867032,214,0 +170781867081,214,0 +170781867129,214,0 +170781867177,214,0 +170781867225,214,0 +170781867274,214,0 +170781867324,214,0 +170781867373,214,0 +170781867423,214,0 +170781867471,214,0 +170781867519,213,0 +170781867567,213,0 +170781867616,213,0 +170781867664,213,0 +170781867712,213,0 +170781867762,213,0 +170781867810,213,0 +170781867858,214,0 +170781867907,214,0 +170781867955,214,0 +170781868003,214,0 +170781868051,214,0 +170781868099,214,0 +170781868147,214,0 +170781868196,214,0 +170781868246,214,0 +170781868294,214,0 +170781868342,214,0 +170781868391,215,0 +170781868439,214,0 +170781868487,214,0 +170781868535,213,0 +170781868583,214,0 +170781868631,213,0 +170781868680,213,0 +170781868728,214,0 +170781868776,214,0 +170781868824,214,0 +170781868872,214,0 +170781868920,214,0 +170781868968,214,0 +170781869015,214,0 +170781869063,214,0 +170781869113,214,0 +170781869161,214,0 +170781869210,214,0 +170781869258,214,0 +170781869306,214,0 +170781869354,214,0 +170781869402,213,0 +170781869450,213,0 +170781869499,213,0 +170781869547,213,0 +170781869595,214,0 +170781869645,214,0 +170781869694,214,0 +170781869742,214,0 +170781869792,214,0 +170781869840,214,0 +170781869889,214,0 +170781869939,214,0 +170781869988,214,0 +170781870036,214,0 +170781870084,214,0 +170781870132,214,0 +170781870180,214,0 +170781870228,214,0 +170781870276,214,0 +170781870325,213,0 +170781870375,213,0 +170781870422,213,0 +170781870470,213,0 +170781870518,213,0 +170781870566,213,0 +170781870613,213,0 +170781870661,214,0 +170781870709,214,0 +170781870759,214,0 +170781870806,214,0 +170781870854,214,0 +170781870902,214,0 +170781870951,214,0 +170781870999,214,0 +170781871047,214,0 +170781871095,214,0 +170781871145,214,0 +170781871194,214,0 +170781871242,213,0 +170781871291,213,0 +170781871341,213,0 +170781871388,213,0 +170781871436,213,0 +170781871484,213,0 +170781871532,213,0 +170781871580,213,0 +170781871629,213,0 +170781871677,213,0 +170781871725,213,0 +170781871774,213,0 +170781871822,214,0 +170781871870,214,0 +170781871918,214,0 +170781871966,214,0 +170781872015,214,0 +170781872063,214,0 +170781872112,214,0 +170781872162,213,0 +170781872210,213,0 +170781872258,213,0 +170781872306,213,0 +170781872355,213,0 +170781872405,213,0 +170781872452,213,0 +170781872502,213,0 +170781872550,214,0 +170781872598,214,0 +170781872646,214,0 +170781872695,214,0 +170781872745,214,0 +170781872793,214,0 +170781872841,214,0 +170781872889,214,0 +170781872938,214,0 +170781872986,214,0 +170781873035,214,0 +170781873083,213,0 +170781873131,213,0 +170781873179,213,0 +170781873227,213,0 +170781873275,213,0 +170781873323,213,0 +170781873371,213,0 +170781873420,213,0 +170781873468,213,0 +170781873518,213,0 +170781873566,214,0 +170781873613,214,0 +170781873661,214,0 +170781873709,214,0 +170781873759,214,0 +170781873807,214,0 +170781873855,214,0 +170781873902,214,0 +170781873950,214,0 +170781873998,213,0 +170781874046,213,0 +170781874094,213,0 +170781874143,213,0 +170781874191,213,0 +170781874241,213,0 +170781874289,213,0 +170781874337,214,0 +170781874385,214,0 +170781874433,214,0 +170781874481,214,0 +170781874528,214,0 +170781874576,214,0 +170781874624,214,0 +170781874674,214,0 +170781874721,214,0 +170781874769,214,0 +170781874817,214,0 +170781874865,213,0 +170781874913,213,0 +170781874963,213,0 +170781875011,213,0 +170781875059,214,0 +170781875108,213,0 +170781875156,214,0 +170781875206,214,0 +170781875255,214,0 +170781875305,214,0 +170781875353,215,0 +170781875400,214,0 +170781875450,214,0 +170781875498,214,0 +170781875546,214,0 +170781875595,214,0 +170781875643,214,0 +170781875693,214,0 +170781875740,214,0 +170781875790,214,0 +170781875838,214,0 +170781875886,214,0 +170781875934,214,0 +170781875982,214,0 +170781876029,214,0 +170781876077,214,0 +170781876125,214,0 +170781876173,214,0 +170781876223,214,0 +170781876271,214,0 +170781876318,214,0 +170781876368,214,0 +170781876416,214,0 +170781876464,214,0 +170781876511,215,0 +170781876561,214,0 +170781876609,214,0 +170781876657,214,0 +170781876705,214,0 +170781876754,214,0 +170781876802,214,0 +170781876850,214,0 +170781876898,214,0 +170781876947,214,0 +170781876997,214,0 +170781877046,214,0 +170781877094,214,0 +170781877142,214,0 +170781877190,214,0 +170781877239,215,0 +170781877287,214,0 +170781877335,214,0 +170781877384,214,0 +170781877432,214,0 +170781877480,214,0 +170781877528,214,0 +170781877576,214,0 +170781877624,214,0 +170781877672,214,0 +170781877720,214,0 +170781877769,214,0 +170781877817,214,0 +170781877865,214,0 +170781877913,214,0 +170781877961,214,0 +170781878009,214,0 +170781878057,214,0 +170781878105,214,0 +170781878152,215,0 +170781878202,215,0 +170781878250,214,0 +170781878297,214,0 +170781878345,214,0 +170781878393,214,0 +170781878441,214,0 +170781878488,214,0 +170781878536,214,0 +170781878584,214,0 +170781878634,214,0 +170781878682,214,0 +170781878731,214,0 +170781878779,214,0 +170781878827,214,0 +170781878875,214,0 +170781878923,214,0 +170781878972,214,0 +170781879022,214,0 +170781879071,215,0 +170781879119,214,0 +170781879169,214,0 +170781879218,214,0 +170781879266,214,0 +170781879314,214,0 +170781879364,214,0 +170781879413,214,0 +170781879461,213,0 +170781879509,213,0 +170781879558,214,0 +170781879608,214,0 +170781879656,214,0 +170781879704,214,0 +170781879752,214,0 +170781879801,214,0 +170781879849,214,0 +170781879897,214,0 +170781879945,214,0 +170781879993,214,0 +170781880042,214,0 +170781880090,214,0 +170781880138,214,0 +170781880186,214,0 +170781880235,214,0 +170781880285,214,0 +170781880333,213,0 +170781880381,213,0 +170781880429,213,0 +170781880476,214,0 +170781880526,214,0 +170781880574,214,0 +170781880623,214,0 +170781880671,214,0 +170781880721,214,0 +170781880769,214,0 +170781880818,214,0 +170781880866,214,0 +170781880914,214,0 +170781880962,214,0 +170781881011,214,0 +170781881061,214,0 +170781881110,214,0 +170781881160,214,0 +170781881209,214,0 +170781881259,213,0 +170781881307,213,0 +170781881354,213,0 +170781881402,213,0 +170781881452,214,0 +170781881500,213,0 +170781881547,214,0 +170781881595,214,0 +170781881643,214,0 +170781881691,214,0 +170781881741,214,0 +170781881790,214,0 +170781881838,215,0 +170781881886,214,0 +170781881934,214,0 +170781881983,214,0 +170781882033,214,0 +170781882082,214,0 +170781882132,213,0 +170781882180,213,0 +170781882228,213,0 +170781882276,213,0 +170781882324,213,0 +170781882373,214,0 +170781882421,214,0 +170781882469,214,0 +170781882517,214,0 +170781882567,214,0 +170781882616,214,0 +170781882664,214,0 +170781882712,214,0 +170781882760,214,0 +170781882808,214,0 +170781882856,214,0 +170781882904,214,0 +170781882952,214,0 +170781882999,214,0 +170781883049,213,0 +170781883097,213,0 +170781883146,213,0 +170781883194,213,0 +170781883242,213,0 +170781883292,214,0 +170781883340,213,0 +170781883389,214,0 +170781883437,213,0 +170781883485,214,0 +170781883533,214,0 +170781883582,214,0 +170781883632,214,0 +170781883680,214,0 +170781883729,214,0 +170781883777,214,0 +170781883825,214,0 +170781883875,214,0 +170781883924,214,0 +170781883974,213,0 +170781884023,213,0 +170781884071,213,0 +170781884119,213,0 +170781884168,213,0 +170781884218,213,0 +170781884267,214,0 +170781884315,214,0 +170781884363,214,0 +170781884411,214,0 +170781884459,214,0 +170781884507,214,0 +170781884555,214,0 +170781884603,214,0 +170781884652,214,0 +170781884702,214,0 +170781884750,214,0 +170781884798,214,0 +170781884846,214,0 +170781884894,213,0 +170781884942,213,0 +170781884991,213,0 +170781885041,213,0 +170781885089,213,0 +170781885137,213,0 +170781885185,214,0 +170781885234,214,0 +170781885282,214,0 +170781885330,214,0 +170781885380,214,0 +170781885429,214,0 +170781885479,214,0 +170781885526,214,0 +170781885576,215,0 +170781885624,214,0 +170781885673,214,0 +170781885721,214,0 +170781885771,213,0 +170781885819,213,0 +170781885868,213,0 +170781885916,213,0 +170781885964,213,0 +170781886012,213,0 +170781886062,213,0 +170781886111,213,0 +170781886159,213,0 +170781886207,214,0 +170781886256,214,0 +170781886304,214,0 +170781886354,214,0 +170781886402,214,0 +170781886450,214,0 +170781886498,214,0 +170781886545,214,0 +170781886593,214,0 +170781886641,214,0 +170781886689,213,0 +170781886739,213,0 +170781886787,213,0 +170781886836,213,0 +170781886884,213,0 +170781886932,213,0 +170781886982,213,0 +170781887030,213,0 +170781887079,213,0 +170781887127,213,0 +170781887175,213,0 +170781887223,214,0 +170781887272,214,0 +170781887320,214,0 +170781887370,214,0 +170781887419,214,0 +170781887469,214,0 +170781887517,214,0 +170781887565,214,0 +170781887612,213,0 +170781887662,213,0 +170781887711,213,0 +170781887759,213,0 +170781887809,213,0 +170781887857,213,0 +170781887906,214,0 +170781887954,214,0 +170781888002,214,0 +170781888052,214,0 +170781888101,214,0 +170781888151,214,0 +170781888199,214,0 +170781888247,214,0 +170781888295,214,0 +170781888344,214,0 +170781888392,214,0 +170781888440,215,0 +170781888490,214,0 +170781888538,213,0 +170781888587,213,0 +170781888635,213,0 +170781888683,213,0 +170781888731,213,0 +170781888779,213,0 +170781888827,214,0 +170781888875,214,0 +170781888924,214,0 +170781888972,214,0 +170781889020,214,0 +170781889068,214,0 +170781889116,214,0 +170781889164,214,0 +170781889213,214,0 +170781889263,214,0 +170781889310,214,0 +170781889360,214,0 +170781889409,214,0 +170781889457,213,0 +170781889507,213,0 +170781889555,213,0 +170781889603,213,0 +170781889651,213,0 +170781889698,213,0 +170781889746,213,0 +170781889794,214,0 +170781889842,214,0 +170781889892,214,0 +170781889940,214,0 +170781889988,214,0 +170781890036,214,0 +170781890083,214,0 +170781890131,214,0 +170781890179,214,0 +170781890229,214,0 +170781890278,214,0 +170781890328,213,0 +170781890376,213,0 +170781890424,213,0 +170781890472,213,0 +170781890520,213,0 +170781890568,213,0 +170781890616,214,0 +170781890665,214,0 +170781890715,213,0 +170781890763,213,0 +170781890811,214,0 +170781890860,213,0 +170781890910,214,0 +170781890958,214,0 +170781891007,214,0 +170781891057,214,0 +170781891105,214,0 +170781891154,214,0 +170781891204,214,0 +170781891252,213,0 +170781891299,213,0 +170781891347,213,0 +170781891395,213,0 +170781891445,213,0 +170781891494,213,0 +170781891542,214,0 +170781891590,214,0 +170781891638,214,0 +170781891687,214,0 +170781891737,214,0 +170781891785,214,0 +170781891833,214,0 +170781891882,214,0 +170781891932,214,0 +170781891980,214,0 +170781892029,214,0 +170781892077,214,0 +170781892126,214,0 +170781892174,214,0 +170781892222,214,0 +170781892270,214,0 +170781892320,214,0 +170781892368,214,0 +170781892417,214,0 +170781892465,214,0 +170781892513,214,0 +170781892561,214,0 +170781892610,214,0 +170781892658,214,0 +170781892706,214,0 +170781892754,214,0 +170781892802,214,0 +170781892851,214,0 +170781892901,214,0 +170781892949,214,0 +170781892998,214,0 +170781893048,214,0 +170781893097,213,0 +170781893147,214,0 +170781893195,214,0 +170781893244,214,0 +170781893292,214,0 +170781893342,214,0 +170781893391,214,0 +170781893439,214,0 +170781893487,214,0 +170781893535,214,0 +170781893583,214,0 +170781893631,214,0 +170781893679,215,0 +170781893728,214,0 +170781893776,214,0 +170781893824,214,0 +170781893874,214,0 +170781893921,214,0 +170781893969,214,0 +170781894019,214,0 +170781894068,214,0 +170781894116,214,0 +170781894164,214,0 +170781894213,214,0 +170781894261,214,0 +170781894309,214,0 +170781894357,214,0 +170781894405,214,0 +170781894453,214,0 +170781894501,215,0 +170781894550,214,0 +170781894598,214,0 +170781894648,214,0 +170781894696,214,0 +170781894744,214,0 +170781894793,214,0 +170781894843,214,0 +170781894891,214,0 +170781894939,214,0 +170781894988,214,0 +170781895038,214,0 +170781895087,214,0 +170781895135,214,0 +170781895183,214,0 +170781895231,214,0 +170781895279,214,0 +170781895328,215,0 +170781895376,215,0 +170781895424,214,0 +170781895472,215,0 +170781895521,214,0 +170781895569,214,0 +170781895619,214,0 +170781895667,214,0 +170781895716,214,0 +170781895764,214,0 +170781895812,214,0 +170781895860,214,0 +170781895910,214,0 +170781895957,214,0 +170781896005,214,0 +170781896053,214,0 +170781896101,214,0 +170781896149,214,0 +170781896197,214,0 +170781896246,214,0 +170781896294,214,0 +170781896342,215,0 +170781896392,215,0 +170781896440,215,0 +170781896488,215,0 +170781896536,215,0 +170781896585,214,0 +170781896635,214,0 +170781896684,214,0 +170781896732,213,0 +170781896780,213,0 +170781896829,214,0 +170781896877,214,0 +170781896925,214,0 +170781896975,214,0 +170781897023,214,0 +170781897072,214,0 +170781897122,214,0 +170781897171,214,0 +170781897221,214,0 +170781897268,214,0 +170781897316,214,0 +170781897364,214,0 +170781897414,214,0 +170781897462,214,0 +170781897509,214,0 +170781897557,214,0 +170781897607,213,0 +170781897655,213,0 +170781897704,213,0 +170781897752,214,0 +170781897800,213,0 +170781897850,213,0 +170781897897,214,0 +170781897945,214,0 +170781897995,214,0 +170781898045,214,0 +170781898092,214,0 +170781898140,214,0 +170781898188,214,0 +170781898236,214,0 +170781898286,214,0 +170781898335,214,0 +170781898383,214,0 +170781898433,214,0 +170781898480,214,0 +170781898528,213,0 +170781898576,213,0 +170781898626,213,0 +170781898675,213,0 +170781898725,214,0 +170781898773,214,0 +170781898822,214,0 +170781898872,214,0 +170781898921,214,0 +170781898969,214,0 +170781899018,214,0 +170781899066,214,0 +170781899116,214,0 +170781899165,214,0 +170781899215,214,0 +170781899264,214,0 +170781899314,214,0 +170781899362,214,0 +170781899410,213,0 +170781899458,213,0 +170781899507,213,0 +170781899555,213,0 +170781899603,214,0 +170781899652,214,0 +170781899700,214,0 +170781899748,214,0 +170781899798,214,0 +170781899847,214,0 +170781899895,214,0 +170781899945,214,0 +170781899993,214,0 +170781900041,214,0 +170781900090,214,0 +170781900140,214,0 +170781900188,214,0 +170781900237,215,0 +170781900286,214,0 +170781900336,213,0 +170781900384,213,0 +170781900432,213,0 +170781900481,213,0 +170781900531,214,0 +170781900578,214,0 +170781900628,214,0 +170781900676,214,0 +170781900725,214,0 +170781900773,214,0 +170781900823,214,0 +170781900871,214,0 +170781900920,214,0 +170781900970,214,0 +170781901018,214,0 +170781901066,215,0 +170781901114,214,0 +170781901162,214,0 +170781901211,214,0 +170781901259,213,0 +170781901307,213,0 +170781901355,213,0 +170781901404,214,0 +170781901452,214,0 +170781901500,214,0 +170781901550,214,0 +170781901599,214,0 +170781901647,214,0 +170781901695,214,0 +170781901745,214,0 +170781901794,214,0 +170781901842,214,0 +170781901890,214,0 +170781901938,214,0 +170781901986,214,0 +170781902035,214,0 +170781902085,214,0 +170781902134,213,0 +170781902182,213,0 +170781902230,213,0 +170781902278,214,0 +170781902326,213,0 +170781902375,213,0 +170781902425,214,0 +170781902473,214,0 +170781902521,214,0 +170781902570,214,0 +170781902618,214,0 +170781902666,214,0 +170781902716,214,0 +170781902763,214,0 +170781902811,214,0 +170781902859,214,0 +170781902909,214,0 +170781902958,215,0 +170781903008,214,0 +170781903056,213,0 +170781903104,213,0 +170781903153,213,0 +170781903203,214,0 +170781903251,213,0 +170781903299,213,0 +170781903347,214,0 +170781903394,214,0 +170781903442,214,0 +170781903492,214,0 +170781903541,214,0 +170781903589,214,0 +170781903639,214,0 +170781903687,214,0 +170781903736,214,0 +170781903786,215,0 +170781903834,214,0 +170781903882,214,0 +170781903931,213,0 +170781903979,213,0 +170781904027,213,0 +170781904075,214,0 +170781904123,214,0 +170781904173,214,0 +170781904221,214,0 +170781904270,214,0 +170781904320,214,0 +170781904369,214,0 +170781904417,214,0 +170781904465,214,0 +170781904513,215,0 +170781904562,214,0 +170781904610,214,0 +170781904658,214,0 +170781904706,214,0 +170781904755,214,0 +170781904803,214,0 +170781904851,213,0 +170781904899,213,0 +170781904947,213,0 +170781904995,214,0 +170781905044,214,0 +170781905094,214,0 +170781905142,214,0 +170781905190,214,0 +170781905238,214,0 +170781905287,214,0 +170781905335,214,0 +170781905383,214,0 +170781905431,214,0 +170781905479,214,0 +170781905527,214,0 +170781905575,214,0 +170781905623,214,0 +170781905672,214,0 +170781905720,214,0 +170781905768,214,0 +170781905816,213,0 +170781905864,214,0 +170781905913,213,0 +170781905961,214,0 +170781906011,214,0 +170781906059,214,0 +170781906106,214,0 +170781906156,214,0 +170781906204,214,0 +170781906251,215,0 +170781906301,214,0 +170781906349,215,0 +170781906397,215,0 +170781906445,214,0 +170781906493,215,0 +170781906542,215,0 +170781906592,214,0 +170781906641,214,0 +170781906691,213,0 +170781906738,213,0 +170781906788,214,0 +170781906836,214,0 +170781906884,214,0 +170781906932,214,0 +170781906981,214,0 +170781907029,214,0 +170781907079,214,0 +170781907127,214,0 +170781907175,214,0 +170781907223,214,0 +170781907271,214,0 +170781907318,214,0 +170781907368,214,0 +170781907416,214,0 +170781907464,214,0 +170781907511,214,0 +170781907561,214,0 +170781907610,213,0 +170781907658,213,0 +170781907706,213,0 +170781907754,213,0 +170781907802,213,0 +170781907851,214,0 +170781907899,213,0 +170781907947,214,0 +170781907995,214,0 +170781908043,214,0 +170781908090,214,0 +170781908138,214,0 +170781908186,214,0 +170781908234,214,0 +170781908282,214,0 +170781908332,215,0 +170781908381,214,0 +170781908429,214,0 +170781908477,213,0 +170781908525,213,0 +170781908572,213,0 +170781908622,213,0 +170781908670,214,0 +170781908718,213,0 +170781908767,213,0 +170781908815,214,0 +170781908863,214,0 +170781908912,214,0 +170781908960,214,0 +170781909010,214,0 +170781909058,214,0 +170781909106,214,0 +170781909154,214,0 +170781909203,214,0 +170781909253,214,0 +170781909301,214,0 +170781909349,214,0 +170781909396,214,0 +170781909444,215,0 +170781909492,215,0 +170781909542,214,0 +170781909591,215,0 +170781909639,215,0 +170781909689,214,0 +170781909736,214,0 +170781909784,214,0 +170781909834,213,0 +170781909882,213,0 +170781909931,213,0 +170781909979,213,0 +170781910028,214,0 +170781910076,214,0 +170781910124,214,0 +170781910172,214,0 +170781910222,214,0 +170781910270,214,0 +170781910318,214,0 +170781910365,214,0 +170781910413,214,0 +170781910461,214,0 +170781910511,214,0 +170781910560,214,0 +170781910608,214,0 +170781910658,215,0 +170781910707,214,0 +170781910755,213,0 +170781910803,213,0 +170781910852,213,0 +170781910902,213,0 +170781910950,213,0 +170781910998,213,0 +170781911046,214,0 +170781911094,214,0 +170781911142,214,0 +170781911191,214,0 +170781911239,214,0 +170781911289,214,0 +170781911336,214,0 +170781911384,214,0 +170781911432,214,0 +170781911482,214,0 +170781911530,214,0 +170781911578,214,0 +170781911625,213,0 +170781911673,213,0 +170781911721,213,0 +170781911769,213,0 +170781911817,214,0 +170781911867,214,0 +170781911916,214,0 +170781911964,214,0 +170781912012,214,0 +170781912062,214,0 +170781912111,214,0 +170781912160,214,0 +170781912208,214,0 +170781912258,214,0 +170781912306,214,0 +170781912353,214,0 +170781912401,214,0 +170781912449,214,0 +170781912499,214,0 +170781912547,214,0 +170781912594,213,0 +170781912642,213,0 +170781912690,214,0 +170781912738,214,0 +170781912786,214,0 +170781912835,214,0 +170781912883,214,0 +170781912933,214,0 +170781912981,214,0 +170781913029,214,0 +170781913076,214,0 +170781913124,215,0 +170781913172,214,0 +170781913220,215,0 +170781913268,215,0 +170781913318,215,0 +170781913367,214,0 +170781913417,214,0 +170781913466,214,0 +170781913515,214,0 +170781913565,214,0 +170781913614,214,0 +170781913662,214,0 +170781913710,214,0 +170781913758,214,0 +170781913806,214,0 +170781913856,214,0 +170781913903,214,0 +170781913951,214,0 +170781914001,215,0 +170781914049,214,0 +170781914098,215,0 +170781914146,215,0 +170781914196,214,0 +170781914243,214,0 +170781914293,214,0 +170781914341,214,0 +170781914389,213,0 +170781914436,214,0 +170781914486,214,0 +170781914534,214,0 +170781914583,214,0 +170781914631,214,0 +170781914679,214,0 +170781914727,214,0 +170781914777,214,0 +170781914825,214,0 +170781914872,214,0 +170781914920,214,0 +170781914970,215,0 +170781915018,215,0 +170781915067,215,0 +170781915117,214,0 +170781915166,214,0 +170781915216,214,0 +170781915265,214,0 +170781915313,213,0 +170781915361,213,0 +170781915409,214,0 +170781915459,214,0 +170781915508,214,0 +170781915556,214,0 +170781915604,214,0 +170781915652,214,0 +170781915700,214,0 +170781915747,214,0 +170781915795,214,0 +170781915843,214,0 +170781915891,214,0 +170781915939,214,0 +170781915987,215,0 +170781916035,214,0 +170781916082,214,0 +170781916130,214,0 +170781916178,213,0 +170781916228,213,0 +170781916277,214,0 +170781916327,213,0 +170781916376,214,0 +170781916426,214,0 +170781916474,214,0 +170781916523,214,0 +170781916571,214,0 +170781916619,214,0 +170781916668,214,0 +170781916718,214,0 +170781916768,214,0 +170781916817,214,0 +170781916866,214,0 +170781916916,214,0 +170781916966,214,0 +170781917013,214,0 +170781917063,214,0 +170781917111,213,0 +170781917159,214,0 +170781917207,214,0 +170781917254,213,0 +170781917304,214,0 +170781917354,214,0 +170781917401,214,0 +170781917449,214,0 +170781917497,214,0 +170781917547,214,0 +170781917596,214,0 +170781917644,214,0 +170781917692,214,0 +170781917740,214,0 +170781917789,214,0 +170781917837,214,0 +170781917887,214,0 +170781917936,214,0 +170781917984,213,0 +170781918032,213,0 +170781918080,214,0 +170781918128,213,0 +170781918176,214,0 +170781918224,214,0 +170781918271,214,0 +170781918319,214,0 +170781918369,214,0 +170781918417,214,0 +170781918465,214,0 +170781918513,214,0 +170781918561,214,0 +170781918609,214,0 +170781918657,214,0 +170781918704,214,0 +170781918754,214,0 +170781918802,214,0 +170781918850,214,0 +170781918899,213,0 +170781918947,214,0 +170781918995,214,0 +170781919044,214,0 +170781919092,214,0 +170781919142,214,0 +170781919191,214,0 +170781919241,214,0 +170781919289,214,0 +170781919337,214,0 +170781919385,214,0 +170781919433,214,0 +170781919481,214,0 +170781919528,214,0 +170781919576,214,0 +170781919624,214,0 +170781919672,214,0 +170781919720,215,0 +170781919768,214,0 +170781919816,213,0 +170781919865,213,0 +170781919915,214,0 +170781919963,214,0 +170781920010,214,0 +170781920058,214,0 +170781920106,214,0 +170781920156,214,0 +170781920204,214,0 +170781920253,214,0 +170781920301,214,0 +170781920349,214,0 +170781920397,214,0 +170781920445,215,0 +170781920495,215,0 +170781920544,214,0 +170781920594,214,0 +170781920643,214,0 +170781920691,214,0 +170781920741,214,0 +170781920788,214,0 +170781920838,214,0 +170781920886,214,0 +170781920934,214,0 +170781920982,214,0 +170781921031,214,0 +170781921079,214,0 +170781921129,214,0 +170781921177,214,0 +170781921224,214,0 +170781921272,214,0 +170781921320,214,0 +170781921368,215,0 +170781921416,214,0 +170781921464,214,0 +170781921512,214,0 +170781921560,214,0 +170781921608,213,0 +170781921657,214,0 +170781921707,214,0 +170781921756,214,0 +170781921804,214,0 +170781921852,214,0 +170781921900,214,0 +170781921948,214,0 +170781921995,214,0 +170781922043,214,0 +170781922091,214,0 +170781922139,214,0 +170781922189,214,0 +170781922238,215,0 +170781922286,215,0 +170781922335,214,0 +170781922383,215,0 +170781922431,214,0 +170781922481,214,0 +170781922528,214,0 +170781922576,214,0 +170781922624,214,0 +170781922672,214,0 +170781922720,214,0 +170781922770,214,0 +170781922819,214,0 +170781922867,214,0 +170781922915,214,0 +170781922963,214,0 +170781923011,214,0 +170781923059,214,0 +170781923108,214,0 +170781923157,214,0 +170781923205,215,0 +170781923253,214,0 +170781923302,214,0 +170781923350,214,0 +170781923398,213,0 +170781923446,213,0 +170781923494,213,0 +170781923542,214,0 +170781923589,214,0 +170781923637,214,0 +170781923685,214,0 +170781923733,214,0 +170781923781,214,0 +170781923829,214,0 +170781923877,214,0 +170781923924,214,0 +170781923974,214,0 +170781924022,214,0 +170781924069,214,0 +170781924117,214,0 +170781924167,215,0 +170781924216,215,0 +170781924264,214,0 +170781924312,213,0 +170781924360,214,0 +170781924409,213,0 +170781924457,214,0 +170781924507,214,0 +170781924556,214,0 +170781924606,214,0 +170781924655,214,0 +170781924705,214,0 +170781924753,214,0 +170781924801,214,0 +170781924849,214,0 +170781924897,214,0 +170781924945,214,0 +170781924992,214,0 +170781925040,214,0 +170781925088,214,0 +170781925136,214,0 +170781925184,214,0 +170781925232,214,0 +170781925280,213,0 +170781925328,213,0 +170781925375,213,0 +170781925423,214,0 +170781925471,214,0 +170781925519,214,0 +170781925569,214,0 +170781925616,214,0 +170781925664,214,0 +170781925712,214,0 +170781925762,214,0 +170781925810,214,0 +170781925858,214,0 +170781925906,214,0 +170781925955,214,0 +170781926005,214,0 +170781926054,214,0 +170781926104,214,0 +170781926152,213,0 +170781926201,213,0 +170781926249,213,0 +170781926297,213,0 +170781926345,213,0 +170781926395,214,0 +170781926442,214,0 +170781926490,213,0 +170781926540,214,0 +170781926588,214,0 +170781926637,214,0 +170781926685,214,0 +170781926733,214,0 +170781926783,214,0 +170781926832,214,0 +170781926882,214,0 +170781926930,214,0 +170781926978,214,0 +170781927027,213,0 +170781927075,213,0 +170781927125,213,0 +170781927173,213,0 +170781927222,213,0 +170781927270,214,0 +170781927318,213,0 +170781927366,213,0 +170781927414,214,0 +170781927462,214,0 +170781927510,214,0 +170781927558,214,0 +170781927607,214,0 +170781927655,214,0 +170781927703,214,0 +170781927751,214,0 +170781927799,214,0 +170781927847,214,0 +170781927896,214,0 +170781927944,214,0 +170781927994,213,0 +170781928042,213,0 +170781928090,214,0 +170781928138,213,0 +170781928186,214,0 +170781928234,214,0 +170781928281,214,0 +170781928329,214,0 +170781928379,214,0 +170781928427,214,0 +170781928475,214,0 +170781928523,214,0 +170781928571,214,0 +170781928619,214,0 +170781928668,214,0 +170781928716,214,0 +170781928764,214,0 +170781928812,214,0 +170781928861,213,0 +170781928909,213,0 +170781928957,213,0 +170781929005,213,0 +170781929053,214,0 +170781929100,214,0 +170781929148,214,0 +170781929196,214,0 +170781929244,214,0 +170781929292,214,0 +170781929340,214,0 +170781929388,214,0 +170781929436,214,0 +170781929483,214,0 +170781929531,214,0 +170781929579,214,0 +170781929627,214,0 +170781929675,214,0 +170781929723,214,0 +170781929770,213,0 +170781929818,214,0 +170781929868,213,0 +170781929915,213,0 +170781929963,213,0 +170781930011,214,0 +170781930059,214,0 +170781930107,214,0 +170781930155,214,0 +170781930203,214,0 +170781930251,214,0 +170781930300,214,0 +170781930348,214,0 +170781930397,214,0 +170781930447,214,0 +170781930495,214,0 +170781930543,214,0 +170781930591,214,0 +170781930640,214,0 +170781930690,213,0 +170781930738,213,0 +170781930787,214,0 +170781930837,213,0 +170781930886,214,0 +170781930934,214,0 +170781930982,214,0 +170781931030,214,0 +170781931078,214,0 +170781931126,214,0 +170781931176,214,0 +170781931224,214,0 +170781931273,214,0 +170781931321,214,0 +170781931370,214,0 +170781931418,214,0 +170781931468,214,0 +170781931516,214,0 +170781931564,214,0 +170781931612,214,0 +170781931660,214,0 +170781931708,214,0 +170781931755,214,0 +170781931803,214,0 +170781931851,214,0 +170781931899,214,0 +170781931947,214,0 +170781931995,214,0 +170781932042,214,0 +170781932090,214,0 +170781932138,214,0 +170781932188,214,0 +170781932236,215,0 +170781932285,214,0 +170781932333,214,0 +170781932381,214,0 +170781932428,214,0 +170781932476,213,0 +170781932524,213,0 +170781932572,213,0 +170781932621,213,0 +170781932669,214,0 +170781932719,214,0 +170781932767,214,0 +170781932814,214,0 +170781932862,214,0 +170781932910,214,0 +170781932958,214,0 +170781933006,214,0 +170781933055,214,0 +170781933105,214,0 +170781933153,214,0 +170781933200,214,0 +170781933248,214,0 +170781933296,214,0 +170781933344,214,0 +170781933392,213,0 +170781933440,213,0 +170781933488,213,0 +170781933537,213,0 +170781933585,214,0 +170781933633,214,0 +170781933681,214,0 +170781933728,214,0 +170781933776,214,0 +170781933824,214,0 +170781933874,214,0 +170781933922,214,0 +170781933970,214,0 +170781934019,214,0 +170781934069,214,0 +170781934117,214,0 +170781934165,214,0 +170781934214,214,0 +170781934264,213,0 +170781934313,213,0 +170781934361,213,0 +170781934410,213,0 +170781934460,214,0 +170781934508,214,0 +170781934556,213,0 +170781934604,214,0 +170781934652,214,0 +170781934701,214,0 +170781934749,214,0 +170781934799,214,0 +170781934847,214,0 +170781934895,214,0 +170781934943,214,0 +170781934992,214,0 +170781935040,214,0 +170781935089,214,0 +170781935139,214,0 +170781935188,214,0 +170781935236,213,0 +170781935284,213,0 +170781935332,214,0 +170781935382,213,0 +170781935430,214,0 +170781935479,214,0 +170781935527,214,0 +170781935577,214,0 +170781935626,214,0 +170781935674,214,0 +170781935724,214,0 +170781935773,214,0 +170781935821,214,0 +170781935871,214,0 +170781935920,214,0 +170781935968,214,0 +170781936018,215,0 +170781936067,214,0 +170781936115,213,0 +170781936165,213,0 +170781936215,214,0 +170781936262,214,0 +170781936312,214,0 +170781936361,214,0 +170781936409,214,0 +170781936457,214,0 +170781936505,214,0 +170781936553,214,0 +170781936603,214,0 +170781936650,214,0 +170781936698,215,0 +170781936746,214,0 +170781936796,215,0 +170781936845,214,0 +170781936893,214,0 +170781936943,214,0 +170781936991,214,0 +170781937039,214,0 +170781937087,214,0 +170781937135,214,0 +170781937183,214,0 +170781937232,214,0 +170781937280,214,0 +170781937328,214,0 +170781937377,214,0 +170781937427,214,0 +170781937476,214,0 +170781937526,214,0 +170781937576,214,0 +170781937625,214,0 +170781937673,215,0 +170781937722,214,0 +170781937772,214,0 +170781937820,214,0 +170781937868,214,0 +170781937916,214,0 +170781937964,214,0 +170781938012,214,0 +170781938061,214,0 +170781938111,214,0 +170781938159,214,0 +170781938207,214,0 +170781938256,214,0 +170781938304,214,0 +170781938352,214,0 +170781938400,214,0 +170781938448,214,0 +170781938497,214,0 +170781938545,214,0 +170781938593,215,0 +170781938641,214,0 +170781938689,214,0 +170781938739,214,0 +170781938787,214,0 +170781938836,213,0 +170781938884,214,0 +170781938934,214,0 +170781938983,214,0 +170781939033,214,0 +170781939081,214,0 +170781939129,214,0 +170781939176,214,0 +170781939226,214,0 +170781939274,214,0 +170781939322,214,0 +170781939370,214,0 +170781939418,214,0 +170781939466,214,0 +170781939515,215,0 +170781939563,215,0 +170781939611,214,0 +170781939660,214,0 +170781939708,213,0 +170781939756,213,0 +170781939804,214,0 +170781939854,214,0 +170781939902,214,0 +170781939951,214,0 +170781940001,214,0 +170781940049,214,0 +170781940097,214,0 +170781940145,214,0 +170781940193,214,0 +170781940242,214,0 +170781940290,214,0 +170781940340,214,0 +170781940389,214,0 +170781940437,214,0 +170781940485,214,0 +170781940533,215,0 +170781940581,214,0 +170781940629,213,0 +170781940678,213,0 +170781940728,213,0 +170781940777,213,0 +170781940825,214,0 +170781940873,214,0 +170781940922,214,0 +170781940970,214,0 +170781941018,214,0 +170781941068,214,0 +170781941117,214,0 +170781941165,214,0 +170781941213,214,0 +170781941261,214,0 +170781941309,214,0 +170781941357,214,0 +170781941405,214,0 +170781941453,214,0 +170781941502,214,0 +170781941552,213,0 +170781941601,213,0 +170781941649,213,0 +170781941699,213,0 +170781941746,214,0 +170781941796,214,0 +170781941844,214,0 +170781941893,214,0 +170781941941,214,0 +170781941991,214,0 +170781942039,214,0 +170781942087,214,0 +170781942136,214,0 +170781942184,214,0 +170781942232,214,0 +170781942280,214,0 +170781942328,214,0 +170781942376,214,0 +170781942424,213,0 +170781942473,213,0 +170781942521,213,0 +170781942569,213,0 +170781942617,214,0 +170781942667,213,0 +170781942715,214,0 +170781942763,214,0 +170781942811,214,0 +170781942859,214,0 +170781942907,214,0 +170781942954,214,0 +170781943004,214,0 +170781943052,214,0 +170781943101,214,0 +170781943149,214,0 +170781943197,214,0 +170781943245,214,0 +170781943293,214,0 +170781943341,213,0 +170781943389,213,0 +170781943438,213,0 +170781943486,213,0 +170781943534,213,0 +170781943584,214,0 +170781943633,214,0 +170781943681,214,0 +170781943730,214,0 +170781943778,214,0 +170781943826,214,0 +170781943874,214,0 +170781943922,214,0 +170781943970,214,0 +170781944020,214,0 +170781944068,214,0 +170781944117,214,0 +170781944165,214,0 +170781944215,213,0 +170781944264,213,0 +170781944312,213,0 +170781944362,213,0 +170781944410,213,0 +170781944458,213,0 +170781944506,213,0 +170781944555,213,0 +170781944604,214,0 +170781944652,214,0 +170781944702,214,0 +170781944751,214,0 +170781944801,214,0 +170781944849,214,0 +170781944897,214,0 +170781944946,214,0 +170781944994,214,0 +170781945044,214,0 +170781945092,213,0 +170781945141,213,0 +170781945191,213,0 +170781945239,213,0 +170781945286,213,0 +170781945336,213,0 +170781945384,214,0 +170781945432,214,0 +170781945480,214,0 +170781945529,214,0 +170781945577,214,0 +170781945625,214,0 +170781945674,214,0 +170781945722,214,0 +170781945772,214,0 +170781945820,214,0 +170781945869,214,0 +170781945917,214,0 +170781945967,213,0 +170781946016,213,0 +170781946064,213,0 +170781946113,213,0 +170781946161,214,0 +170781946209,213,0 +170781946257,214,0 +170781946306,214,0 +170781946354,214,0 +170781946404,214,0 +170781946452,214,0 +170781946500,214,0 +170781946547,214,0 +170781946595,214,0 +170781946643,214,0 +170781946691,214,0 +170781946741,214,0 +170781946788,214,0 +170781946836,214,0 +170781946886,213,0 +170781946934,213,0 +170781946982,213,0 +170781947030,213,0 +170781947077,213,0 +170781947125,213,0 +170781947173,213,0 +170781947223,214,0 +170781947271,214,0 +170781947320,214,0 +170781947368,214,0 +170781947416,214,0 +170781947464,214,0 +170781947512,214,0 +170781947560,214,0 +170781947608,214,0 +170781947657,214,0 +170781947705,214,0 +170781947753,213,0 +170781947801,213,0 +170781947849,213,0 +170781947897,213,0 +170781947946,213,0 +170781947994,213,0 +170781948042,213,0 +170781948090,213,0 +170781948139,213,0 +170781948187,213,0 +170781948236,213,0 +170781948284,214,0 +170781948334,214,0 +170781948383,214,0 +170781948433,214,0 +170781948481,214,0 +170781948530,214,0 +170781948580,214,0 +170781948628,213,0 +170781948677,213,0 +170781948727,214,0 +170781948775,213,0 +170781948824,214,0 +170781948874,214,0 +170781948923,214,0 +170781948971,214,0 +170781949019,214,0 +170781949067,214,0 +170781949115,214,0 +170781949163,214,0 +170781949210,214,0 +170781949258,214,0 +170781949306,214,0 +170781949356,214,0 +170781949405,214,0 +170781949453,214,0 +170781949501,214,0 +170781949549,214,0 +170781949596,214,0 +170781949644,213,0 +170781949694,214,0 +170781949742,214,0 +170781949790,214,0 +170781949838,214,0 +170781949885,214,0 +170781949933,214,0 +170781949983,214,0 +170781950033,214,0 +170781950082,214,0 +170781950132,214,0 +170781950179,214,0 +170781950227,214,0 +170781950275,215,0 +170781950323,214,0 +170781950373,214,0 +170781950421,213,0 +170781950469,214,0 +170781950517,214,0 +170781950564,214,0 +170781950612,214,0 +170781950660,214,0 +170781950710,214,0 +170781950758,214,0 +170781950807,214,0 +170781950855,214,0 +170781950905,214,0 +170781950952,214,0 +170781951000,214,0 +170781951048,214,0 +170781951096,214,0 +170781951146,214,0 +170781951194,214,0 +170781951243,214,0 +170781951292,214,0 +170781951340,214,0 +170781951390,214,0 +170781951438,214,0 +170781951486,214,0 +170781951534,214,0 +170781951582,214,0 +170781951630,214,0 +170781951677,214,0 +170781951727,214,0 +170781951776,214,0 +170781951824,214,0 +170781951872,214,0 +170781951922,214,0 +170781951971,214,0 +170781952019,215,0 +170781952067,214,0 +170781952115,214,0 +170781952163,214,0 +170781952211,213,0 +170781952260,214,0 +170781952308,214,0 +170781952358,214,0 +170781952407,214,0 +170781952457,214,0 +170781952504,214,0 +170781952552,214,0 +170781952600,214,0 +170781952648,215,0 +170781952696,214,0 +170781952746,215,0 +170781952794,214,0 +170781952842,214,0 +170781952889,214,0 +170781952937,214,0 +170781952987,214,0 +170781953035,214,0 +170781953083,214,0 +170781953131,213,0 +170781953179,214,0 +170781953228,214,0 +170781953277,214,0 +170781953327,214,0 +170781953376,214,0 +170781953426,214,0 +170781953474,214,0 +170781953522,214,0 +170781953570,214,0 +170781953618,214,0 +170781953666,214,0 +170781953715,214,0 +170781953763,214,0 +170781953812,215,0 +170781953862,214,0 +170781953911,214,0 +170781953961,213,0 +170781954011,213,0 +170781954060,213,0 +170781954108,214,0 +170781954156,214,0 +170781954204,214,0 +170781954253,214,0 +170781954303,214,0 +170781954351,214,0 +170781954399,214,0 +170781954447,214,0 +170781954495,214,0 +170781954543,214,0 +170781954590,214,0 +170781954638,214,0 +170781954686,215,0 +170781954734,214,0 +170781954782,215,0 +170781954830,214,0 +170781954878,214,0 +170781954925,214,0 +170781954973,214,0 +170781955021,214,0 +170781955069,214,0 +170781955117,214,0 +170781955165,214,0 +170781955213,214,0 +170781955262,214,0 +170781955310,214,0 +170781955359,214,0 +170781955409,214,0 +170781955457,214,0 +170781955505,214,0 +170781955554,214,0 +170781955604,214,0 +170781955652,214,0 +170781955699,214,0 +170781955747,213,0 +170781955797,213,0 +170781955845,213,0 +170781955894,214,0 +170781955942,214,0 +170781955990,214,0 +170781956040,214,0 +170781956089,214,0 +170781956137,214,0 +170781956185,214,0 +170781956233,214,0 +170781956281,214,0 +170781956330,214,0 +170781956378,214,0 +170781956428,214,0 +170781956477,214,0 +170781956525,214,0 +170781956573,214,0 +170781956621,213,0 +170781956668,213,0 +170781956716,213,0 +170781956764,213,0 +170781956814,213,0 +170781956862,213,0 +170781956909,213,0 +170781956957,213,0 +170781957007,213,0 +170781957054,213,0 +170781957102,214,0 +170781957152,214,0 +170781957199,214,0 +170781957247,214,0 +170781957295,214,0 +170781957343,214,0 +170781957393,214,0 +170781957440,214,0 +170781957488,213,0 +170781957536,213,0 +170781957584,213,0 +170781957633,213,0 +170781957681,213,0 +170781957729,213,0 +170781957778,213,0 +170781957826,214,0 +170781957874,214,0 +170781957922,214,0 +170781957971,214,0 +170781958019,214,0 +170781958067,214,0 +170781958115,214,0 +170781958164,214,0 +170781958212,214,0 +170781958260,214,0 +170781958308,214,0 +170781958356,214,0 +170781958404,213,0 +170781958452,213,0 +170781958501,213,0 +170781958550,213,0 +170781958598,213,0 +170781958646,213,0 +170781958694,214,0 +170781958742,214,0 +170781958790,214,0 +170781958839,214,0 +170781958889,214,0 +170781958937,214,0 +170781958985,214,0 +170781959033,214,0 +170781959082,214,0 +170781959132,214,0 +170781959180,215,0 +170781959228,214,0 +170781959276,213,0 +170781959325,213,0 +170781959375,213,0 +170781959422,213,0 +170781959472,213,0 +170781959520,213,0 +170781959570,213,0 +170781959617,214,0 +170781959665,214,0 +170781959713,214,0 +170781959761,214,0 +170781959809,214,0 +170781959857,214,0 +170781959905,214,0 +170781959952,214,0 +170781960000,214,0 +170781960048,215,0 +170781960096,214,0 +170781960144,213,0 +170781960192,213,0 +170781960241,213,0 +170781960289,214,0 +170781960337,213,0 +170781960385,213,0 +170781960433,214,0 +170781960480,214,0 +170781960528,214,0 +170781960576,214,0 +170781960624,214,0 +170781960672,214,0 +170781960720,214,0 +170781960768,214,0 +170781960815,214,0 +170781960863,214,0 +170781960913,214,0 +170781960960,214,0 +170781961010,214,0 +170781961058,213,0 +170781961105,213,0 +170781961153,214,0 +170781961201,213,0 +170781961249,214,0 +170781961297,214,0 +170781961347,214,0 +170781961395,214,0 +170781961442,214,0 +170781961490,214,0 +170781961538,214,0 +170781961586,214,0 +170781961636,214,0 +170781961685,214,0 +170781961735,215,0 +170781961783,214,0 +170781961830,214,0 +170781961878,214,0 +170781961926,213,0 +170781961974,213,0 +170781962024,213,0 +170781962073,213,0 +170781962123,213,0 +170781962172,213,0 +170781962222,213,0 +170781962270,214,0 +170781962318,214,0 +170781962367,214,0 +170781962417,214,0 +170781962465,214,0 +170781962513,214,0 +170781962560,214,0 +170781962608,214,0 +170781962656,214,0 +170781962706,214,0 +170781962754,213,0 +170781962802,214,0 +170781962850,213,0 +170781962898,213,0 +170781962945,213,0 +170781962993,213,0 +170781963041,214,0 +170781963089,214,0 +170781963139,214,0 +170781963187,214,0 +170781963236,214,0 +170781963284,214,0 +170781963332,214,0 +170781963380,214,0 +170781963430,214,0 +170781963477,214,0 +170781963527,214,0 +170781963576,214,0 +170781963626,214,0 +170781963674,213,0 +170781963722,214,0 +170781963770,214,0 +170781963819,213,0 +170781963869,214,0 +170781963918,214,0 +170781963968,214,0 +170781964016,214,0 +170781964063,214,0 +170781964111,214,0 +170781964159,214,0 +170781964207,214,0 +170781964255,214,0 +170781964303,214,0 +170781964350,214,0 +170781964398,214,0 +170781964446,214,0 +170781964494,214,0 +170781964542,214,0 +170781964589,214,0 +170781964637,214,0 +170781964685,214,0 +170781964733,214,0 +170781964781,214,0 +170781964829,214,0 +170781964876,214,0 +170781964924,214,0 +170781964972,214,0 +170781965020,214,0 +170781965068,214,0 +170781965117,214,0 +170781965165,215,0 +170781965213,215,0 +170781965261,215,0 +170781965310,215,0 +170781965360,214,0 +170781965408,214,0 +170781965456,214,0 +170781965504,214,0 +170781965553,214,0 +170781965603,214,0 +170781965650,214,0 +170781965698,214,0 +170781965746,214,0 +170781965795,215,0 +170781965843,215,0 +170781965893,215,0 +170781965941,215,0 +170781965990,215,0 +170781966038,214,0 +170781966085,215,0 +170781966135,215,0 +170781966183,215,0 +170781966230,215,0 +170781966278,214,0 +170781966326,214,0 +170781966374,214,0 +170781966423,215,0 +170781966471,215,0 +170781966519,215,0 +170781966567,215,0 +170781966615,215,0 +170781966662,215,0 +170781966710,215,0 +170781966760,215,0 +170781966808,215,0 +170781966857,215,0 +170781966906,215,0 +170781966954,214,0 +170781967002,214,0 +170781967050,214,0 +170781967099,214,0 +170781967147,214,0 +170781967195,214,0 +170781967243,214,0 +170781967291,214,0 +170781967339,214,0 +170781967386,214,0 +170781967434,214,0 +170781967484,214,0 +170781967532,214,0 +170781967581,215,0 +170781967629,214,0 +170781967677,214,0 +170781967725,214,0 +170781967773,215,0 +170781967822,215,0 +170781967870,215,0 +170781967919,214,0 +170781967967,214,0 +170781968015,214,0 +170781968063,214,0 +170781968112,214,0 +170781968160,214,0 +170781968208,214,0 +170781968256,214,0 +170781968304,214,0 +170781968352,214,0 +170781968402,214,0 +170781968449,214,0 +170781968497,214,0 +170781968545,214,0 +170781968593,214,0 +170781968641,215,0 +170781968689,215,0 +170781968737,214,0 +170781968785,215,0 +170781968833,214,0 +170781968882,214,0 +170781968930,214,0 +170781968978,214,0 +170781969026,214,0 +170781969074,214,0 +170781969122,214,0 +170781969171,214,0 +170781969221,214,0 +170781969269,214,0 +170781969318,214,0 +170781969366,214,0 +170781969414,214,0 +170781969462,214,0 +170781969510,214,0 +170781969558,214,0 +170781969605,214,0 +170781969653,214,0 +170781969703,214,0 +170781969752,214,0 +170781969802,214,0 +170781969849,213,0 +170781969897,213,0 +170781969945,214,0 +170781969993,213,0 +170781970043,214,0 +170781970090,214,0 +170781970138,214,0 +170781970188,214,0 +170781970237,214,0 +170781970285,214,0 +170781970333,214,0 +170781970381,214,0 +170781970429,214,0 +170781970477,215,0 +170781970525,215,0 +170781970573,215,0 +170781970621,214,0 +170781970670,214,0 +170781970720,213,0 +170781970769,213,0 +170781970817,214,0 +170781970865,214,0 +170781970913,214,0 +170781970961,214,0 +170781971009,214,0 +170781971056,214,0 +170781971106,214,0 +170781971154,214,0 +170781971201,214,0 +170781971249,214,0 +170781971297,214,0 +170781971345,214,0 +170781971395,214,0 +170781971444,214,0 +170781971492,214,0 +170781971540,214,0 +170781971589,213,0 +170781971639,213,0 +170781971687,213,0 +170781971735,214,0 +170781971783,214,0 +170781971830,214,0 +170781971878,214,0 +170781971926,213,0 +170781971976,214,0 +170781972024,214,0 +170781972072,214,0 +170781972120,214,0 +170781972167,214,0 +170781972215,214,0 +170781972265,215,0 +170781972313,215,0 +170781972362,214,0 +170781972410,214,0 +170781972458,214,0 +170781972506,213,0 +170781972555,213,0 +170781972605,213,0 +170781972653,214,0 +170781972701,213,0 +170781972750,214,0 +170781972798,214,0 +170781972848,214,0 +170781972896,214,0 +170781972945,214,0 +170781972994,214,0 +170781973042,214,0 +170781973090,214,0 +170781973140,214,0 +170781973188,214,0 +170781973236,214,0 +170781973284,214,0 +170781973331,213,0 +170781973379,213,0 +170781973427,213,0 +170781973475,213,0 +170781973523,213,0 +170781973571,213,0 +170781973620,213,0 +170781973668,214,0 +170781973717,213,0 +170781973765,213,0 +170781973813,213,0 +170781973861,214,0 +170781973909,214,0 +170781973957,214,0 +170781974006,214,0 +170781974054,214,0 +170781974102,214,0 +170781974150,214,0 +170781974198,214,0 +170781974246,213,0 +170781974293,213,0 +170781974341,213,0 +170781974389,213,0 +170781974437,213,0 +170781974486,213,0 +170781974534,214,0 +170781974582,214,0 +170781974630,214,0 +170781974678,214,0 +170781974726,214,0 +170781974774,214,0 +170781974822,214,0 +170781974870,214,0 +170781974919,214,0 +170781974969,214,0 +170781975017,214,0 +170781975065,214,0 +170781975114,213,0 +170781975162,213,0 +170781975211,213,0 +170781975261,213,0 +170781975310,213,0 +170781975358,213,0 +170781975408,213,0 +170781975456,214,0 +170781975504,214,0 +170781975552,214,0 +170781975600,214,0 +170781975647,214,0 +170781975695,214,0 +170781975743,214,0 +170781975791,214,0 +170781975839,214,0 +170781975887,214,0 +170781975935,214,0 +170781975983,213,0 +170781976031,213,0 +170781976079,213,0 +170781976127,213,0 +170781976175,213,0 +170781976222,213,0 +170781976270,214,0 +170781976318,214,0 +170781976366,214,0 +170781976415,214,0 +170781976463,214,0 +170781976511,214,0 +170781976559,214,0 +170781976607,214,0 +170781976655,214,0 +170781976703,214,0 +170781976752,214,0 +170781976800,214,0 +170781976848,213,0 +170781976896,213,0 +170781976944,213,0 +170781976992,213,0 +170781977040,214,0 +170781977088,213,0 +170781977136,214,0 +170781977183,214,0 +170781977231,214,0 +170781977279,214,0 +170781977327,214,0 +170781977377,214,0 +170781977425,214,0 +170781977473,214,0 +170781977521,214,0 +170781977569,214,0 +170781977618,214,0 +170781977666,214,0 +170781977715,214,0 +170781977763,213,0 +170781977813,214,0 +170781977862,213,0 +170781977910,214,0 +170781977960,214,0 +170781978008,214,0 +170781978056,214,0 +170781978104,214,0 +170781978153,214,0 +170781978201,214,0 +170781978249,214,0 +170781978297,214,0 +170781978347,214,0 +170781978395,214,0 +170781978442,215,0 +170781978492,214,0 +170781978540,214,0 +170781978589,214,0 +170781978637,213,0 +170781978687,214,0 +170781978735,213,0 +170781978784,214,0 +170781978832,214,0 +170781978881,214,0 +170781978929,214,0 +170781978977,214,0 +170781979025,214,0 +170781979073,214,0 +170781979121,214,0 +170781979169,214,0 +170781979219,214,0 +170781979268,214,0 +170781979316,214,0 +170781979365,214,0 +170781979415,214,0 +170781979463,214,0 +170781979512,214,0 +170781979562,214,0 +170781979610,214,0 +170781979658,214,0 +170781979705,214,0 +170781979753,214,0 +170781979803,214,0 +170781979851,214,0 +170781979899,214,0 +170781979947,214,0 +170781979996,214,0 +170781980044,214,0 +170781980094,214,0 +170781980143,214,0 +170781980192,214,0 +170781980240,214,0 +170781980288,214,0 +170781980336,214,0 +170781980386,214,0 +170781980435,214,0 +170781980485,214,0 +170781980533,214,0 +170781980581,214,0 +170781980630,214,0 +170781980678,214,0 +170781980728,214,0 +170781980775,214,0 +170781980825,214,0 +170781980874,214,0 +170781980922,214,0 +170781980970,214,0 +170781981020,214,0 +170781981068,214,0 +170781981117,215,0 +170781981165,214,0 +170781981213,214,0 +170781981263,214,0 +170781981311,214,0 +170781981358,214,0 +170781981406,214,0 +170781981454,214,0 +170781981502,214,0 +170781981550,214,0 +170781981599,214,0 +170781981647,214,0 +170781981695,214,0 +170781981745,214,0 +170781981794,214,0 +170781981842,214,0 +170781981892,214,0 +170781981940,214,0 +170781981987,214,0 +170781982035,214,0 +170781982085,214,0 +170781982134,214,0 +170781982182,214,0 +170781982230,214,0 +170781982278,213,0 +170781982328,214,0 +170781982376,214,0 +170781982425,214,0 +170781982475,214,0 +170781982523,214,0 +170781982572,214,0 +170781982620,215,0 +170781982668,214,0 +170781982716,214,0 +170781982764,215,0 +170781982812,214,0 +170781982861,215,0 +170781982911,214,0 +170781982959,214,0 +170781983007,214,0 +170781983055,214,0 +170781983103,214,0 +170781983151,214,0 +170781983198,214,0 +170781983248,214,0 +170781983296,214,0 +170781983344,214,0 +170781983392,215,0 +170781983441,215,0 +170781983489,214,0 +170781983537,214,0 +170781983585,215,0 +170781983633,214,0 +170781983681,215,0 +170781983729,214,0 +170781983777,214,0 +170781983825,214,0 +170781983873,214,0 +170781983921,214,0 +170781983969,214,0 +170781984017,214,0 +170781984064,214,0 +170781984112,214,0 +170781984162,214,0 +170781984210,214,0 +170781984257,214,0 +170781984305,214,0 +170781984353,214,0 +170781984401,214,0 +170781984448,214,0 +170781984496,214,0 +170781984544,214,0 +170781984592,215,0 +170781984640,214,0 +170781984687,214,0 +170781984735,214,0 +170781984785,213,0 +170781984832,214,0 +170781984880,213,0 +170781984928,214,0 +170781984976,214,0 +170781985024,214,0 +170781985073,214,0 +170781985123,214,0 +170781985171,214,0 +170781985219,214,0 +170781985267,214,0 +170781985315,214,0 +170781985362,214,0 +170781985410,214,0 +170781985458,214,0 +170781985506,214,0 +170781985554,214,0 +170781985602,214,0 +170781985651,213,0 +170781985701,213,0 +170781985749,213,0 +170781985797,213,0 +170781985846,214,0 +170781985894,214,0 +170781985942,214,0 +170781985992,214,0 +170781986040,214,0 +170781986087,214,0 +170781986137,214,0 +170781986186,214,0 +170781986234,214,0 +170781986284,214,0 +170781986332,214,0 +170781986380,214,0 +170781986429,214,0 +170781986479,214,0 +170781986528,213,0 +170781986576,213,0 +170781986626,213,0 +170781986674,213,0 +170781986721,213,0 +170781986769,214,0 +170781986817,214,0 +170781986865,214,0 +170781986915,214,0 +170781986962,214,0 +170781987012,214,0 +170781987060,214,0 +170781987109,214,0 +170781987159,214,0 +170781987207,214,0 +170781987255,214,0 +170781987303,214,0 +170781987351,214,0 +170781987398,214,0 +170781987448,213,0 +170781987496,213,0 +170781987544,213,0 +170781987593,213,0 +170781987641,213,0 +170781987689,213,0 +170781987737,213,0 +170781987785,214,0 +170781987833,214,0 +170781987882,214,0 +170781987930,214,0 +170781987980,214,0 +170781988029,214,0 +170781988077,214,0 +170781988127,214,0 +170781988176,214,0 +170781988226,214,0 +170781988273,214,0 +170781988321,213,0 +170781988371,213,0 +170781988419,214,0 +170781988468,214,0 +170781988516,214,0 +170781988564,214,0 +170781988613,214,0 +170781988663,214,0 +170781988712,214,0 +170781988760,214,0 +170781988808,214,0 +170781988856,214,0 +170781988906,214,0 +170781988954,214,0 +170781989001,214,0 +170781989051,214,0 +170781989099,215,0 +170781989147,214,0 +170781989195,213,0 +170781989244,213,0 +170781989294,213,0 +170781989342,213,0 +170781989391,213,0 +170781989439,214,0 +170781989487,214,0 +170781989536,214,0 +170781989584,214,0 +170781989634,214,0 +170781989682,214,0 +170781989729,214,0 +170781989777,214,0 +170781989825,214,0 +170781989873,214,0 +170781989923,214,0 +170781989970,214,0 +170781990020,214,0 +170781990068,213,0 +170781990116,213,0 +170781990164,214,0 +170781990212,214,0 +170781990260,214,0 +170781990308,213,0 +170781990356,214,0 +170781990404,214,0 +170781990452,214,0 +170781990501,214,0 +170781990549,214,0 +170781990597,214,0 +170781990647,214,0 +170781990694,214,0 +170781990742,214,0 +170781990791,215,0 +170781990839,214,0 +170781990887,214,0 +170781990936,213,0 +170781990984,213,0 +170781991032,213,0 +170781991081,214,0 +170781991129,214,0 +170781991177,214,0 +170781991225,214,0 +170781991272,214,0 +170781991320,214,0 +170781991369,214,0 +170781991417,214,0 +170781991467,214,0 +170781991515,214,0 +170781991562,214,0 +170781991610,214,0 +170781991660,214,0 +170781991709,214,0 +170781991757,214,0 +170781991806,214,0 +170781991854,214,0 +170781991904,214,0 +170781991952,214,0 +170781992000,214,0 +170781992048,214,0 +170781992096,214,0 +170781992143,214,0 +170781992193,214,0 +170781992241,214,0 +170781992289,214,0 +170781992338,214,0 +170781992388,215,0 +170781992437,215,0 +170781992487,215,0 +170781992536,215,0 +170781992584,214,0 +170781992634,214,0 +170781992682,214,0 +170781992729,214,0 +170781992777,214,0 +170781992825,214,0 +170781992875,214,0 +170781992923,214,0 +170781992971,214,0 +170781993020,214,0 +170781993068,215,0 +170781993116,214,0 +170781993164,214,0 +170781993212,214,0 +170781993260,214,0 +170781993308,215,0 +170781993357,215,0 +170781993405,215,0 +170781993454,215,0 +170781993502,215,0 +170781993550,214,0 +170781993598,214,0 +170781993646,214,0 +170781993696,214,0 +170781993744,214,0 +170781993791,214,0 +170781993839,214,0 +170781993887,214,0 +170781993935,214,0 +170781993984,214,0 +170781994032,214,0 +170781994080,214,0 +170781994128,214,0 +170781994176,215,0 +170781994225,215,0 +170781994273,215,0 +170781994321,215,0 +170781994369,214,0 +170781994417,214,0 +170781994464,214,0 +170781994512,214,0 +170781994560,214,0 +170781994610,214,0 +170781994659,214,0 +170781994707,214,0 +170781994755,214,0 +170781994803,214,0 +170781994851,214,0 +170781994901,214,0 +170781994949,214,0 +170781994998,214,0 +170781995047,214,0 +170781995097,214,0 +170781995145,215,0 +170781995193,215,0 +170781995241,215,0 +170781995290,214,0 +170781995338,213,0 +170781995388,214,0 +170781995437,213,0 +170781995485,214,0 +170781995533,214,0 +170781995583,214,0 +170781995631,214,0 +170781995678,214,0 +170781995728,214,0 +170781995776,214,0 +170781995825,214,0 +170781995875,214,0 +170781995923,214,0 +170781995972,214,0 +170781996020,214,0 +170781996070,214,0 +170781996118,214,0 +170781996166,214,0 +170781996214,214,0 +170781996263,213,0 +170781996311,213,0 +170781996359,214,0 +170781996407,213,0 +170781996455,214,0 +170781996503,214,0 +170781996551,214,0 +170781996599,214,0 +170781996647,214,0 +170781996696,214,0 +170781996746,214,0 +170781996794,214,0 +170781996843,214,0 +170781996891,215,0 +170781996939,214,0 +170781996987,214,0 +170781997035,214,0 +170781997084,213,0 +170781997132,213,0 +170781997182,213,0 +170781997230,214,0 +170781997277,214,0 +170781997325,213,0 +170781997373,214,0 +170781997422,214,0 +170781997470,214,0 +170781997518,214,0 +170781997566,214,0 +170781997614,214,0 +170781997663,214,0 +170781997711,214,0 +170781997761,214,0 +170781997810,214,0 +170781997858,214,0 +170781997906,214,0 +170781997956,213,0 +170781998005,213,0 +170781998053,214,0 +170781998101,214,0 +170781998149,214,0 +170781998197,214,0 +170781998245,214,0 +170781998293,214,0 +170781998341,214,0 +170781998389,214,0 +170781998436,214,0 +170781998484,214,0 +170781998534,215,0 +170781998582,215,0 +170781998630,214,0 +170781998679,214,0 +170781998729,215,0 +170781998777,214,0 +170781998826,213,0 +170781998876,214,0 +170781998924,214,0 +170781998972,214,0 +170781999019,214,0 +170781999069,214,0 +170781999117,214,0 +170781999166,214,0 +170781999214,214,0 +170781999262,214,0 +170781999310,214,0 +170781999358,215,0 +170781999406,215,0 +170781999456,215,0 +170781999505,215,0 +170781999553,214,0 +170781999602,214,0 +170781999650,214,0 +170781999698,214,0 +170781999748,214,0 +170781999796,214,0 +170781999844,214,0 +170781999893,214,0 +170781999941,214,0 +170781999991,214,0 +170782000040,214,0 +170782000088,214,0 +170782000136,214,0 +170782000184,215,0 +170782000232,214,0 +170782000281,214,0 +170782000329,214,0 +170782000377,214,0 +170782000425,214,0 +170782000473,215,0 +170782000523,214,0 +170782000572,214,0 +170782000622,213,0 +170782000670,213,0 +170782000719,214,0 +170782000767,214,0 +170782000817,214,0 +170782000864,214,0 +170782000912,214,0 +170782000960,214,0 +170782001010,214,0 +170782001059,214,0 +170782001107,214,0 +170782001155,214,0 +170782001203,215,0 +170782001253,215,0 +170782001301,215,0 +170782001350,214,0 +170782001398,214,0 +170782001446,214,0 +170782001494,213,0 +170782001542,214,0 +170782001591,214,0 +170782001639,214,0 +170782001687,214,0 +170782001736,214,0 +170782001786,214,0 +170782001834,214,0 +170782001883,214,0 +170782001931,214,0 +170782001979,214,0 +170782002027,214,0 +170782002075,214,0 +170782002123,214,0 +170782002173,214,0 +170782002222,214,0 +170782002270,214,0 +170782002318,213,0 +170782002366,214,0 +170782002414,214,0 +170782002463,214,0 +170782002513,214,0 +170782002562,214,0 +170782002610,214,0 +170782002658,214,0 +170782002706,214,0 +170782002754,214,0 +170782002802,214,0 +170782002850,214,0 +170782002899,214,0 +170782002947,214,0 +170782002995,214,0 +170782003045,214,0 +170782003093,214,0 +170782003140,214,0 +170782003190,214,0 +170782003239,213,0 +170782003287,214,0 +170782003337,214,0 +170782003385,214,0 +170782003433,214,0 +170782003481,214,0 +170782003529,214,0 +170782003578,214,0 +170782003626,214,0 +170782003674,214,0 +170782003722,214,0 +170782003770,214,0 +170782003820,214,0 +170782003869,214,0 +170782003919,214,0 +170782003966,214,0 +170782004014,214,0 +170782004062,214,0 +170782004112,214,0 +170782004161,214,0 +170782004209,214,0 +170782004259,214,0 +170782004307,214,0 +170782004356,214,0 +170782004404,214,0 +170782004453,214,0 +170782004501,214,0 +170782004549,214,0 +170782004597,214,0 +170782004645,214,0 +170782004693,215,0 +170782004743,214,0 +170782004790,215,0 +170782004838,215,0 +170782004888,214,0 +170782004936,214,0 +170782004985,214,0 +170782005033,214,0 +170782005081,214,0 +170782005129,214,0 +170782005177,214,0 +170782005225,214,0 +170782005273,214,0 +170782005321,214,0 +170782005369,214,0 +170782005417,215,0 +170782005465,215,0 +170782005514,215,0 +170782005562,215,0 +170782005612,215,0 +170782005660,215,0 +170782005708,215,0 +170782005755,214,0 +170782005803,214,0 +170782005853,214,0 +170782005901,214,0 +170782005949,214,0 +170782005998,214,0 +170782006048,214,0 +170782006096,214,0 +170782006144,214,0 +170782006192,214,0 +170782006241,214,0 +170782006289,215,0 +170782006337,215,0 +170782006385,215,0 +170782006434,215,0 +170782006482,215,0 +170782006530,215,0 +170782006578,214,0 +170782006626,215,0 +170782006674,214,0 +170782006722,214,0 +170782006770,214,0 +170782006820,214,0 +170782006868,214,0 +170782006917,214,0 +170782006965,214,0 +170782007015,214,0 +170782007064,214,0 +170782007112,215,0 +170782007160,215,0 +170782007208,214,0 +170782007255,215,0 +170782007303,215,0 +170782007351,215,0 +170782007400,215,0 +170782007448,214,0 +170782007498,214,0 +170782007545,214,0 +170782007593,214,0 +170782007641,214,0 +170782007689,214,0 +170782007737,214,0 +170782007785,214,0 +170782007833,214,0 +170782007882,214,0 +170782007930,214,0 +170782007978,214,0 +170782008026,214,0 +170782008073,215,0 +170782008121,215,0 +170782008171,214,0 +170782008220,215,0 +170782008268,215,0 +170782008316,214,0 +170782008363,214,0 +170782008411,214,0 +170782008461,214,0 +170782008508,214,0 +170782008556,214,0 +170782008604,214,0 +170782008652,214,0 +170782008700,214,0 +170782008748,214,0 +170782008796,214,0 +170782008843,214,0 +170782008891,214,0 +170782008939,214,0 +170782008987,214,0 +170782009035,214,0 +170782009083,215,0 +170782009132,214,0 +170782009180,215,0 +170782009228,214,0 +170782009276,214,0 +170782009324,214,0 +170782009372,213,0 +170782009420,214,0 +170782009468,214,0 +170782009517,214,0 +170782009565,214,0 +170782009613,214,0 +170782009661,214,0 +170782009709,214,0 +170782009758,214,0 +170782009806,214,0 +170782009854,214,0 +170782009902,214,0 +170782009951,214,0 +170782009999,214,0 +170782010047,214,0 +170782010095,214,0 +170782010143,214,0 +170782010191,214,0 +170782010238,213,0 +170782010286,213,0 +170782010336,214,0 +170782010385,213,0 +170782010435,214,0 +170782010483,214,0 +170782010531,214,0 +170782010579,214,0 +170782010628,214,0 +170782010676,214,0 +170782010724,214,0 +170782010772,214,0 +170782010820,214,0 +170782010867,214,0 +170782010915,214,0 +170782010963,214,0 +170782011011,214,0 +170782011059,214,0 +170782011107,213,0 +170782011154,214,0 +170782011204,214,0 +170782011253,214,0 +170782011301,214,0 +170782011351,214,0 +170782011399,214,0 +170782011447,214,0 +170782011495,214,0 +170782011544,214,0 +170782011592,214,0 +170782011642,214,0 +170782011689,214,0 +170782011737,214,0 +170782011787,214,0 +170782011836,214,0 +170782011886,214,0 +170782011934,213,0 +170782011981,213,0 +170782012029,214,0 +170782012077,214,0 +170782012127,214,0 +170782012174,214,0 +170782012224,214,0 +170782012272,214,0 +170782012320,214,0 +170782012367,214,0 +170782012415,214,0 +170782012463,214,0 +170782012511,214,0 +170782012559,214,0 +170782012607,214,0 +170782012655,214,0 +170782012702,215,0 +170782012750,214,0 +170782012798,214,0 +170782012846,213,0 +170782012894,213,0 +170782012942,214,0 +170782012989,213,0 +170782013037,214,0 +170782013085,214,0 +170782013133,214,0 +170782013181,214,0 +170782013229,214,0 +170782013277,214,0 +170782013324,214,0 +170782013374,214,0 +170782013422,214,0 +170782013471,214,0 +170782013519,214,0 +170782013567,214,0 +170782013615,214,0 +170782013663,213,0 +170782013711,213,0 +170782013760,214,0 +170782013810,213,0 +170782013859,213,0 +170782013909,213,0 +170782013957,213,0 +170782014006,213,0 +170782014055,214,0 +170782014103,214,0 +170782014151,214,0 +170782014199,214,0 +170782014248,214,0 +170782014296,214,0 +170782014344,214,0 +170782014392,214,0 +170782014440,214,0 +170782014488,214,0 +170782014536,213,0 +170782014583,214,0 +170782014633,214,0 +170782014680,214,0 +170782014728,214,0 +170782014776,214,0 +170782014824,214,0 +170782014872,214,0 +170782014921,214,0 +170782014971,214,0 +170782015020,214,0 +170782015068,214,0 +170782015116,215,0 +170782015164,214,0 +170782015212,214,0 +170782015260,214,0 +170782015308,214,0 +170782015355,214,0 +170782015403,213,0 +170782015451,214,0 +170782015499,214,0 +170782015548,214,0 +170782015596,214,0 +170782015644,214,0 +170782015694,214,0 +170782015743,214,0 +170782015791,214,0 +170782015839,214,0 +170782015887,214,0 +170782015935,214,0 +170782015983,214,0 +170782016032,214,0 +170782016080,214,0 +170782016130,214,0 +170782016177,214,0 +170782016227,214,0 +170782016275,214,0 +170782016324,214,0 +170782016374,214,0 +170782016423,214,0 +170782016473,214,0 +170782016521,214,0 +170782016570,214,0 +170782016618,214,0 +170782016668,214,0 +170782016717,214,0 +170782016767,214,0 +170782016815,214,0 +170782016864,214,0 +170782016914,214,0 +170782016962,214,0 +170782017011,215,0 +170782017061,214,0 +170782017109,213,0 +170782017157,214,0 +170782017205,213,0 +170782017254,213,0 +170782017304,214,0 +170782017351,214,0 +170782017399,214,0 +170782017447,214,0 +170782017497,214,0 +170782017545,214,0 +170782017594,214,0 +170782017642,214,0 +170782017692,214,0 +170782017741,214,0 +170782017789,214,0 +170782017837,214,0 +170782017887,214,0 +170782017934,213,0 +170782017982,213,0 +170782018030,213,0 +170782018078,214,0 +170782018126,214,0 +170782018174,214,0 +170782018222,214,0 +170782018271,214,0 +170782018319,214,0 +170782018367,214,0 +170782018415,214,0 +170782018463,214,0 +170782018510,214,0 +170782018558,214,0 +170782018606,214,0 +170782018654,214,0 +170782018702,215,0 +170782018750,214,0 +170782018798,213,0 +170782018845,214,0 +170782018893,214,0 +170782018941,214,0 +170782018989,214,0 +170782019037,214,0 +170782019084,214,0 +170782019132,214,0 +170782019180,214,0 +170782019228,214,0 +170782019276,214,0 +170782019324,214,0 +170782019371,215,0 +170782019421,214,0 +170782019469,215,0 +170782019518,214,0 +170782019568,214,0 +170782019616,214,0 +170782019663,214,0 +170782019711,214,0 +170782019759,214,0 +170782019807,214,0 +170782019855,214,0 +170782019904,214,0 +170782019952,214,0 +170782020000,214,0 +170782020049,214,0 +170782020097,215,0 +170782020145,214,0 +170782020194,214,0 +170782020242,215,0 +170782020290,215,0 +170782020338,215,0 +170782020386,215,0 +170782020433,214,0 +170782020481,214,0 +170782020529,214,0 +170782020577,214,0 +170782020625,214,0 +170782020674,214,0 +170782020722,214,0 +170782020769,214,0 +170782020819,214,0 +170782020867,214,0 +170782020915,215,0 +170782020962,214,0 +170782021012,215,0 +170782021061,214,0 +170782021109,215,0 +170782021159,215,0 +170782021208,215,0 +170782021256,215,0 +170782021304,214,0 +170782021353,214,0 +170782021401,214,0 +170782021449,214,0 +170782021498,214,0 +170782021546,214,0 +170782021594,214,0 +170782021642,214,0 +170782021689,214,0 +170782021737,214,0 +170782021785,214,0 +170782021835,214,0 +170782021884,214,0 +170782021933,214,0 +170782021983,214,0 +170782022031,215,0 +170782022080,215,0 +170782022128,215,0 +170782022176,214,0 +170782022226,214,0 +170782022275,213,0 +170782022325,213,0 +170782022372,214,0 +170782022422,214,0 +170782022471,214,0 +170782022519,214,0 +170782022569,214,0 +170782022617,214,0 +170782022666,214,0 +170782022716,214,0 +170782022763,214,0 +170782022811,215,0 +170782022861,214,0 +170782022909,215,0 +170782022957,215,0 +170782023004,214,0 +170782023052,214,0 +170782023100,213,0 +170782023148,214,0 +170782023198,214,0 +170782023245,214,0 +170782023295,214,0 +170782023343,214,0 +170782023391,214,0 +170782023440,214,0 +170782023490,214,0 +170782023539,214,0 +170782023589,214,0 +170782023637,214,0 +170782023686,214,0 +170782023736,214,0 +170782023784,214,0 +170782023832,214,0 +170782023879,214,0 +170782023929,213,0 +170782023978,213,0 +170782024026,213,0 +170782024074,213,0 +170782024122,213,0 +170782024170,214,0 +170782024218,214,0 +170782024266,214,0 +170782024315,214,0 +170782024365,214,0 +170782024413,214,0 +170782024462,214,0 +170782024510,214,0 +170782024558,214,0 +170782024606,214,0 +170782024655,214,0 +170782024705,214,0 +170782024754,214,0 +170782024804,213,0 +170782024853,213,0 +170782024901,214,0 +170782024949,214,0 +170782024999,214,0 +170782025047,214,0 +170782025096,214,0 +170782025144,214,0 +170782025193,214,0 +170782025241,214,0 +170782025289,214,0 +170782025337,214,0 +170782025385,214,0 +170782025433,214,0 +170782025482,214,0 +170782025530,214,0 +170782025580,214,0 +170782025628,214,0 +170782025675,213,0 +170782025723,213,0 +170782025771,213,0 +170782025819,213,0 +170782025867,213,0 +170782025916,214,0 +170782025964,214,0 +170782026012,214,0 +170782026060,214,0 +170782026109,214,0 +170782026157,214,0 +170782026205,214,0 +170782026252,214,0 +170782026300,215,0 +170782026348,215,0 +170782026396,214,0 +170782026444,214,0 +170782026492,213,0 +170782026540,213,0 +170782026587,214,0 +170782026635,214,0 +170782026685,214,0 +170782026733,214,0 +170782026781,214,0 +170782026830,214,0 +170782026878,214,0 +170782026926,214,0 +170782026974,214,0 +170782027023,214,0 +170782027071,215,0 +170782027121,214,0 +170782027168,214,0 +170782027216,214,0 +170782027264,214,0 +170782027314,214,0 +170782027362,214,0 +170782027409,214,0 +170782027457,214,0 +170782027505,214,0 +170782027553,214,0 +170782027602,214,0 +170782027650,214,0 +170782027700,214,0 +170782027748,214,0 +170782027797,214,0 +170782027847,214,0 +170782027896,214,0 +170782027946,214,0 +170782027995,215,0 +170782028043,214,0 +170782028091,214,0 +170782028139,214,0 +170782028187,213,0 +170782028235,213,0 +170782028283,214,0 +170782028330,214,0 +170782028378,214,0 +170782028426,214,0 +170782028474,214,0 +170782028522,214,0 +170782028572,214,0 +170782028619,214,0 +170782028669,214,0 +170782028717,214,0 +170782028765,215,0 +170782028813,214,0 +170782028862,214,0 +170782028910,214,0 +170782028958,215,0 +170782029006,214,0 +170782029054,214,0 +170782029102,214,0 +170782029150,214,0 +170782029199,214,0 +170782029247,214,0 +170782029295,214,0 +170782029343,214,0 +170782029391,214,0 +170782029439,214,0 +170782029487,214,0 +170782029534,215,0 +170782029582,215,0 +170782029630,215,0 +170782029678,215,0 +170782029726,214,0 +170782029774,215,0 +170782029822,215,0 +170782029870,214,0 +170782029917,214,0 +170782029965,214,0 +170782030013,215,0 +170782030061,214,0 +170782030111,214,0 +170782030158,214,0 +170782030206,215,0 +170782030256,215,0 +170782030304,215,0 +170782030353,214,0 +170782030401,215,0 +170782030451,215,0 +170782030498,215,0 +170782030548,215,0 +170782030598,215,0 +170782030645,215,0 +170782030695,215,0 +170782030744,215,0 +170782030794,214,0 +170782030842,214,0 +170782030890,215,0 +170782030939,214,0 +170782030987,214,0 +170782031035,215,0 +170782031083,215,0 +170782031131,215,0 +170782031179,215,0 +170782031227,214,0 +170782031275,215,0 +170782031323,215,0 +170782031372,214,0 +170782031420,215,0 +170782031468,215,0 +170782031518,214,0 +170782031566,215,0 +170782031614,214,0 +170782031663,214,0 +170782031711,214,0 +170782031760,214,0 +170782031808,214,0 +170782031856,215,0 +170782031906,214,0 +170782031955,214,0 +170782032003,215,0 +170782032053,214,0 +170782032101,215,0 +170782032149,215,0 +170782032197,215,0 +170782032245,214,0 +170782032294,215,0 +170782032344,214,0 +170782032391,214,0 +170782032439,214,0 +170782032487,214,0 +170782032537,214,0 +170782032584,214,0 +170782032634,214,0 +170782032684,214,0 +170782032731,214,0 +170782032781,214,0 +170782032830,214,0 +170782032878,214,0 +170782032926,215,0 +170782032974,214,0 +170782033024,215,0 +170782033072,215,0 +170782033120,215,0 +170782033167,214,0 +170782033215,214,0 +170782033263,214,0 +170782033311,214,0 +170782033359,213,0 +170782033407,214,0 +170782033455,214,0 +170782033503,214,0 +170782033551,214,0 +170782033601,214,0 +170782033650,214,0 +170782033698,214,0 +170782033746,214,0 +170782033794,214,0 +170782033843,214,0 +170782033891,215,0 +170782033939,215,0 +170782033987,214,0 +170782034036,215,0 +170782034086,215,0 +170782034135,214,0 +170782034183,213,0 +170782034231,214,0 +170782034281,214,0 +170782034330,214,0 +170782034378,214,0 +170782034426,214,0 +170782034476,214,0 +170782034524,214,0 +170782034573,214,0 +170782034621,214,0 +170782034669,214,0 +170782034717,215,0 +170782034767,214,0 +170782034815,215,0 +170782034862,214,0 +170782034912,214,0 +170782034960,214,0 +170782035008,214,0 +170782035056,214,0 +170782035104,214,0 +170782035153,214,0 +170782035203,214,0 +170782035250,214,0 +170782035298,214,0 +170782035346,214,0 +170782035394,214,0 +170782035442,214,0 +170782035490,214,0 +170782035538,214,0 +170782035586,214,0 +170782035634,215,0 +170782035683,215,0 +170782035732,215,0 +170782035780,214,0 +170782035830,213,0 +170782035878,213,0 +170782035926,214,0 +170782035975,214,0 +170782036023,214,0 +170782036072,214,0 +170782036120,214,0 +170782036168,214,0 +170782036218,214,0 +170782036266,214,0 +170782036315,214,0 +170782036363,214,0 +170782036413,214,0 +170782036461,214,0 +170782036509,214,0 +170782036557,214,0 +170782036604,214,0 +170782036652,214,0 +170782036702,214,0 +170782036750,213,0 +170782036798,214,0 +170782036847,214,0 +170782036895,214,0 +170782036943,214,0 +170782036991,214,0 +170782037039,214,0 +170782037087,214,0 +170782037135,214,0 +170782037185,214,0 +170782037234,214,0 +170782037283,214,0 +170782037331,214,0 +170782037379,214,0 +170782037427,215,0 +170782037475,214,0 +170782037525,213,0 +170782037573,213,0 +170782037621,213,0 +170782037670,213,0 +170782037718,213,0 +170782037766,214,0 +170782037815,214,0 +170782037863,214,0 +170782037911,214,0 +170782037959,214,0 +170782038007,214,0 +170782038055,214,0 +170782038103,214,0 +170782038150,214,0 +170782038198,214,0 +170782038246,215,0 +170782038294,214,0 +170782038342,214,0 +170782038390,213,0 +170782038438,213,0 +170782038486,213,0 +170782038535,213,0 +170782038583,213,0 +170782038631,214,0 +170782038679,214,0 +170782038727,214,0 +170782038776,214,0 +170782038826,214,0 +170782038875,214,0 +170782038925,214,0 +170782038974,214,0 +170782039022,214,0 +170782039072,214,0 +170782039119,214,0 +170782039167,214,0 +170782039215,213,0 +170782039263,213,0 +170782039311,213,0 +170782039359,213,0 +170782039408,214,0 +170782039458,213,0 +170782039506,214,0 +170782039554,214,0 +170782039602,214,0 +170782039650,214,0 +170782039697,214,0 +170782039745,214,0 +170782039793,214,0 +170782039843,215,0 +170782039892,214,0 +170782039940,215,0 +170782039988,214,0 +170782040036,214,0 +170782040085,213,0 +170782040133,213,0 +170782040183,214,0 +170782040231,214,0 +170782040279,214,0 +170782040326,214,0 +170782040374,214,0 +170782040424,214,0 +170782040472,214,0 +170782040520,214,0 +170782040568,214,0 +170782040615,214,0 +170782040663,214,0 +170782040713,214,0 +170782040762,214,0 +170782040811,214,0 +170782040859,214,0 +170782040907,214,0 +170782040955,214,0 +170782041005,214,0 +170782041053,214,0 +170782041102,214,0 +170782041150,214,0 +170782041198,214,0 +170782041246,214,0 +170782041294,214,0 +170782041342,214,0 +170782041391,214,0 +170782041439,214,0 +170782041490,214,0 +170782041539,214,0 +170782041589,214,0 +170782041638,214,0 +170782041688,215,0 +170782041735,214,0 +170782041785,213,0 +170782041835,213,0 +170782041883,213,0 +170782041930,214,0 +170782041980,214,0 +170782042028,214,0 +170782042076,214,0 +170782042124,214,0 +170782042173,214,0 +170782042221,214,0 +170782042269,214,0 +170782042319,214,0 +170782042366,214,0 +170782042416,214,0 +170782042464,214,0 +170782042512,215,0 +170782042560,214,0 +170782042609,214,0 +170782042657,214,0 +170782042707,213,0 +170782042755,214,0 +170782042804,214,0 +170782042852,214,0 +170782042900,214,0 +170782042949,214,0 +170782042999,214,0 +170782043047,214,0 +170782043095,214,0 +170782043143,215,0 +170782043192,214,0 +170782043240,215,0 +170782043288,214,0 +170782043336,214,0 +170782043384,214,0 +170782043433,214,0 +170782043481,214,0 +170782043531,214,0 +170782043580,214,0 +170782043628,214,0 +170782043678,214,0 +170782043726,214,0 +170782043775,214,0 +170782043825,214,0 +170782043874,215,0 +170782043924,215,0 +170782043973,215,0 +170782044023,214,0 +170782044072,215,0 +170782044120,214,0 +170782044170,214,0 +170782044217,215,0 +170782044265,214,0 +170782044313,214,0 +170782044361,214,0 +170782044409,214,0 +170782044457,214,0 +170782044505,215,0 +170782044553,214,0 +170782044602,215,0 +170782044650,215,0 +170782044698,215,0 +170782044746,215,0 +170782044796,215,0 +170782044844,215,0 +170782044892,215,0 +170782044940,215,0 +170782044988,215,0 +170782045035,215,0 +170782045085,215,0 +170782045133,214,0 +170782045181,214,0 +170782045229,215,0 +170782045277,215,0 +170782045326,215,0 +170782045374,215,0 +170782045424,215,0 +170782045472,215,0 +170782045519,215,0 +170782045567,215,0 +170782045615,215,0 +170782045665,215,0 +170782045712,215,0 +170782045762,214,0 +170782045810,215,0 +170782045859,214,0 +170782045907,215,0 +170782045955,214,0 +170782046005,214,0 +170782046054,214,0 +170782046102,214,0 +170782046150,214,0 +170782046198,214,0 +170782046245,215,0 +170782046293,214,0 +170782046341,214,0 +170782046389,214,0 +170782046437,215,0 +170782046485,214,0 +170782046532,215,0 +170782046580,214,0 +170782046628,214,0 +170782046677,215,0 +170782046725,215,0 +170782046773,214,0 +170782046821,214,0 +170782046869,214,0 +170782046916,214,0 +170782046966,214,0 +170782047014,214,0 +170782047062,214,0 +170782047110,214,0 +170782047157,214,0 +170782047205,214,0 +170782047253,215,0 +170782047301,214,0 +170782047349,215,0 +170782047397,214,0 +170782047446,215,0 +170782047494,214,0 +170782047543,215,0 +170782047591,214,0 +170782047639,214,0 +170782047687,213,0 +170782047735,214,0 +170782047784,214,0 +170782047832,214,0 +170782047880,214,0 +170782047927,214,0 +170782047975,214,0 +170782048023,214,0 +170782048071,214,0 +170782048119,214,0 +170782048167,214,0 +170782048215,214,0 +170782048263,214,0 +170782048310,214,0 +170782048358,215,0 +170782048408,214,0 +170782048456,214,0 +170782048504,214,0 +170782048551,213,0 +170782048599,213,0 +170782048649,213,0 +170782048698,213,0 +170782048746,213,0 +170782048794,213,0 +170782048844,213,0 +170782048892,214,0 +170782048940,214,0 +170782048987,214,0 +170782049037,214,0 +170782049086,214,0 +170782049134,214,0 +170782049182,214,0 +170782049230,214,0 +170782049278,214,0 +170782049326,214,0 +170782049376,213,0 +170782049424,213,0 +170782049472,213,0 +170782049521,213,0 +170782049571,213,0 +170782049620,214,0 +170782049668,214,0 +170782049716,214,0 +170782049764,214,0 +170782049813,214,0 +170782049861,214,0 +170782049911,214,0 +170782049959,214,0 +170782050008,215,0 +170782050056,214,0 +170782050104,215,0 +170782050153,214,0 +170782050201,213,0 +170782050249,213,0 +170782050297,213,0 +170782050345,214,0 +170782050393,214,0 +170782050441,214,0 +170782050488,214,0 +170782050538,214,0 +170782050587,214,0 +170782050635,214,0 +170782050683,214,0 +170782050731,214,0 +170782050779,214,0 +170782050826,214,0 +170782050874,214,0 +170782050922,215,0 +170782050970,215,0 +170782051018,214,0 +170782051067,213,0 +170782051115,214,0 +170782051163,213,0 +170782051211,213,0 +170782051259,214,0 +170782051308,214,0 +170782051358,214,0 +170782051406,214,0 +170782051454,214,0 +170782051502,214,0 +170782051551,214,0 +170782051599,215,0 +170782051647,214,0 +170782051695,214,0 +170782051743,214,0 +170782051791,214,0 +170782051840,214,0 +170782051888,214,0 +170782051938,214,0 +170782051986,213,0 +170782052035,213,0 +170782052083,214,0 +170782052131,214,0 +170782052181,214,0 +170782052230,214,0 +170782052278,214,0 +170782052326,214,0 +170782052375,214,0 +170782052425,214,0 +170782052474,214,0 +170782052522,214,0 +170782052570,214,0 +170782052620,214,0 +170782052667,215,0 +170782052717,214,0 +170782052766,213,0 +170782052814,213,0 +170782052862,214,0 +170782052912,214,0 +170782052960,214,0 +170782053008,214,0 +170782053055,214,0 +170782053105,214,0 +170782053153,214,0 +170782053201,214,0 +170782053250,214,0 +170782053300,214,0 +170782053348,214,0 +170782053396,215,0 +170782053443,215,0 +170782053493,214,0 +170782053541,214,0 +170782053590,214,0 +170782053638,213,0 +170782053686,213,0 +170782053734,214,0 +170782053782,213,0 +170782053830,214,0 +170782053878,214,0 +170782053926,214,0 +170782053973,214,0 +170782054023,214,0 +170782054071,214,0 +170782054119,214,0 +170782054168,214,0 +170782054216,214,0 +170782054264,214,0 +170782054312,214,0 +170782054359,215,0 +170782054409,214,0 +170782054457,213,0 +170782054505,213,0 +170782054553,213,0 +170782054602,213,0 +170782054651,214,0 +170782054699,214,0 +170782054749,214,0 +170782054797,214,0 +170782054845,214,0 +170782054894,214,0 +170782054942,214,0 +170782054990,214,0 +170782055038,214,0 +170782055085,214,0 +170782055133,214,0 +170782055183,214,0 +170782055232,214,0 +170782055280,214,0 +170782055328,214,0 +170782055376,214,0 +170782055425,214,0 +170782055473,215,0 +170782055521,215,0 +170782055569,215,0 +170782055617,214,0 +170782055665,214,0 +170782055714,214,0 +170782055764,214,0 +170782055812,214,0 +170782055860,214,0 +170782055907,214,0 +170782055957,214,0 +170782056005,214,0 +170782056053,214,0 +170782056102,214,0 +170782056150,214,0 +170782056200,214,0 +170782056248,215,0 +170782056297,215,0 +170782056345,214,0 +170782056395,214,0 +170782056443,214,0 +170782056490,214,0 +170782056538,214,0 +170782056588,214,0 +170782056636,214,0 +170782056684,214,0 +170782056733,214,0 +170782056783,214,0 +170782056832,214,0 +170782056882,214,0 +170782056930,214,0 +170782056978,214,0 +170782057027,214,0 +170782057075,214,0 +170782057125,214,0 +170782057173,214,0 +170782057222,214,0 +170782057272,214,0 +170782057320,214,0 +170782057369,213,0 +170782057419,214,0 +170782057467,213,0 +170782057516,214,0 +170782057566,214,0 +170782057615,214,0 +170782057665,214,0 +170782057713,214,0 +170782057762,214,0 +170782057810,214,0 +170782057858,214,0 +170782057908,214,0 +170782057957,214,0 +170782058005,214,0 +170782058053,215,0 +170782058101,214,0 +170782058151,214,0 +170782058199,214,0 +170782058246,214,0 +170782058294,214,0 +170782058344,214,0 +170782058392,214,0 +170782058440,214,0 +170782058489,214,0 +170782058537,214,0 +170782058586,214,0 +170782058634,215,0 +170782058682,214,0 +170782058732,215,0 +170782058780,215,0 +170782058828,214,0 +170782058876,215,0 +170782058925,214,0 +170782058975,214,0 +170782059024,214,0 +170782059072,214,0 +170782059120,214,0 +170782059170,214,0 +170782059218,214,0 +170782059265,214,0 +170782059313,214,0 +170782059363,215,0 +170782059412,214,0 +170782059460,215,0 +170782059510,215,0 +170782059559,215,0 +170782059607,215,0 +170782059655,214,0 +170782059703,214,0 +170782059751,214,0 +170782059799,214,0 +170782059848,214,0 +170782059896,214,0 +170782059944,214,0 +170782059994,214,0 +170782060042,214,0 +170782060089,214,0 +170782060137,214,0 +170782060187,214,0 +170782060236,214,0 +170782060284,214,0 +170782060332,214,0 +170782060380,214,0 +170782060428,215,0 +170782060476,215,0 +170782060524,215,0 +170782060572,215,0 +170782060621,214,0 +170782060669,213,0 +170782060717,214,0 +170782060765,214,0 +170782060813,214,0 +170782060861,214,0 +170782060909,214,0 +170782060958,214,0 +170782061006,214,0 +170782061054,214,0 +170782061103,214,0 +170782061151,214,0 +170782061201,214,0 +170782061249,214,0 +170782061298,214,0 +170782061348,215,0 +170782061397,215,0 +170782061447,214,0 +170782061495,214,0 +170782061543,213,0 +170782061591,214,0 +170782061640,214,0 +170782061690,214,0 +170782061739,214,0 +170782061787,214,0 +170782061835,214,0 +170782061883,214,0 +170782061932,214,0 +170782061980,214,0 +170782062028,214,0 +170782062078,215,0 +170782062126,215,0 +170782062174,215,0 +170782062223,214,0 +170782062273,214,0 +170782062321,214,0 +170782062370,214,0 +170782062419,214,0 +170782062467,214,0 +170782062515,214,0 +170782062565,214,0 +170782062614,214,0 +170782062662,214,0 +170782062712,214,0 +170782062761,214,0 +170782062809,214,0 +170782062858,214,0 +170782062906,214,0 +170782062954,215,0 +170782063002,214,0 +170782063050,214,0 +170782063098,214,0 +170782063146,214,0 +170782063193,214,0 +170782063241,214,0 +170782063289,214,0 +170782063337,214,0 +170782063385,214,0 +170782063433,214,0 +170782063481,214,0 +170782063529,214,0 +170782063579,214,0 +170782063627,215,0 +170782063675,214,0 +170782063724,215,0 +170782063772,215,0 +170782063820,215,0 +170782063868,214,0 +170782063917,214,0 +170782063967,214,0 +170782064016,214,0 +170782064064,214,0 +170782064114,214,0 +170782064161,214,0 +170782064209,214,0 +170782064259,214,0 +170782064307,214,0 +170782064355,214,0 +170782064403,214,0 +170782064450,214,0 +170782064498,215,0 +170782064546,214,0 +170782064594,215,0 +170782064644,214,0 +170782064693,215,0 +170782064741,214,0 +170782064789,214,0 +170782064837,214,0 +170782064885,214,0 +170782064933,214,0 +170782064980,214,0 +170782065028,214,0 +170782065076,214,0 +170782065124,215,0 +170782065172,214,0 +170782065219,215,0 +170782065269,214,0 +170782065317,215,0 +170782065365,215,0 +170782065412,215,0 +170782065460,215,0 +170782065508,215,0 +170782065556,215,0 +170782065604,214,0 +170782065652,214,0 +170782065700,214,0 +170782065749,214,0 +170782065797,214,0 +170782065845,215,0 +170782065892,214,0 +170782065940,214,0 +170782065988,214,0 +170782066036,214,0 +170782066084,215,0 +170782066132,215,0 +170782066180,215,0 +170782066229,215,0 +170782066279,215,0 +170782066327,215,0 +170782066375,215,0 +170782066424,214,0 +170782066472,214,0 +170782066520,214,0 +170782066569,214,0 +170782066617,214,0 +170782066665,215,0 +170782066713,215,0 +170782066761,214,0 +170782066809,215,0 +170782066859,215,0 +170782066908,215,0 +170782066956,215,0 +170782067006,215,0 +170782067055,215,0 +170782067103,215,0 +170782067151,215,0 +170782067199,214,0 +170782067247,214,0 +170782067295,214,0 +170782067343,214,0 +170782067391,214,0 +170782067440,214,0 +170782067488,214,0 +170782067537,214,0 +170782067587,214,0 +170782067635,215,0 +170782067683,215,0 +170782067731,214,0 +170782067778,215,0 +170782067828,214,0 +170782067876,215,0 +170782067925,215,0 +170782067975,214,0 +170782068023,214,0 +170782068071,214,0 +170782068120,214,0 +170782068168,214,0 +170782068216,214,0 +170782068264,214,0 +170782068312,214,0 +170782068361,214,0 +170782068409,214,0 +170782068457,214,0 +170782068505,214,0 +170782068553,215,0 +170782068601,214,0 +170782068651,215,0 +170782068699,215,0 +170782068747,215,0 +170782068794,214,0 +170782068842,214,0 +170782068890,214,0 +170782068940,214,0 +170782068988,214,0 +170782069036,214,0 +170782069084,214,0 +170782069133,214,0 +170782069181,214,0 +170782069231,214,0 +170782069280,214,0 +170782069328,214,0 +170782069376,214,0 +170782069424,214,0 +170782069472,215,0 +170782069519,214,0 +170782069567,214,0 +170782069617,214,0 +170782069665,215,0 +170782069712,214,0 +170782069760,213,0 +170782069808,214,0 +170782069858,214,0 +170782069906,214,0 +170782069955,214,0 +170782070005,214,0 +170782070053,214,0 +170782070100,214,0 +170782070150,214,0 +170782070200,214,0 +170782070247,214,0 +170782070295,214,0 +170782070343,214,0 +170782070391,215,0 +170782070439,215,0 +170782070487,215,0 +170782070535,214,0 +170782070583,214,0 +170782070631,214,0 +170782070679,214,0 +170782070728,214,0 +170782070776,214,0 +170782070826,214,0 +170782070874,214,0 +170782070923,214,0 +170782070971,214,0 +170782071020,214,0 +170782071068,214,0 +170782071118,215,0 +170782071166,214,0 +170782071214,214,0 +170782071261,214,0 +170782071309,214,0 +170782071357,214,0 +170782071405,214,0 +170782071453,214,0 +170782071501,214,0 +170782071549,214,0 +170782071597,214,0 +170782071645,214,0 +170782071693,214,0 +170782071740,215,0 +170782071788,215,0 +170782071836,215,0 +170782071884,215,0 +170782071934,215,0 +170782071982,215,0 +170782072030,215,0 +170782072079,215,0 +170782072127,215,0 +170782072175,214,0 +170782072223,214,0 +170782072271,214,0 +170782072319,214,0 +170782072367,214,0 +170782072415,214,0 +170782072464,215,0 +170782072512,215,0 +170782072561,215,0 +170782072609,215,0 +170782072657,215,0 +170782072705,215,0 +170782072755,215,0 +170782072804,215,0 +170782072854,215,0 +170782072903,215,0 +170782072951,214,0 +170782072999,214,0 +170782073049,214,0 +170782073098,214,0 +170782073147,214,0 +170782073195,214,0 +170782073243,214,0 +170782073291,214,0 +170782073339,214,0 +170782073389,214,0 +170782073437,214,0 +170782073486,214,0 +170782073534,215,0 +170782073582,215,0 +170782073630,214,0 +170782073679,215,0 +170782073727,214,0 +170782073775,214,0 +170782073823,213,0 +170782073873,214,0 +170782073921,214,0 +170782073968,214,0 +170782074016,214,0 +170782074066,214,0 +170782074115,214,0 +170782074163,214,0 +170782074213,214,0 +170782074262,214,0 +170782074312,214,0 +170782074360,214,0 +170782074408,214,0 +170782074457,214,0 +170782074505,214,0 +170782074554,214,0 +170782074602,215,0 +170782074650,214,0 +170782074698,213,0 +170782074747,214,0 +170782074795,214,0 +170782074843,214,0 +170782074891,214,0 +170782074941,214,0 +170782074990,214,0 +170782075038,214,0 +170782075086,214,0 +170782075134,214,0 +170782075182,214,0 +170782075230,214,0 +170782075278,215,0 +170782075326,215,0 +170782075373,214,0 +170782075421,215,0 +170782075469,214,0 +170782075517,214,0 +170782075567,214,0 +170782075615,214,0 +170782075663,214,0 +170782075712,214,0 +170782075762,214,0 +170782075810,214,0 +170782075859,214,0 +170782075909,214,0 +170782075957,214,0 +170782076006,214,0 +170782076054,215,0 +170782076104,215,0 +170782076152,215,0 +170782076200,214,0 +170782076247,215,0 +170782076297,214,0 +170782076346,214,0 +170782076396,214,0 +170782076445,214,0 +170782076495,214,0 +170782076543,214,0 +170782076592,214,0 +170782076640,214,0 +170782076690,214,0 +170782076738,214,0 +170782076787,214,0 +170782076835,214,0 +170782076883,214,0 +170782076933,214,0 +170782076981,214,0 +170782077030,214,0 +170782077079,214,0 +170782077129,214,0 +170782077177,213,0 +170782077225,213,0 +170782077273,214,0 +170782077321,214,0 +170782077369,214,0 +170782077418,214,0 +170782077466,214,0 +170782077514,214,0 +170782077562,214,0 +170782077611,214,0 +170782077661,214,0 +170782077709,214,0 +170782077758,215,0 +170782077806,215,0 +170782077854,215,0 +170782077902,214,0 +170782077952,214,0 +170782078000,214,0 +170782078048,214,0 +170782078097,214,0 +170782078147,214,0 +170782078196,214,0 +170782078244,214,0 +170782078293,214,0 +170782078341,214,0 +170782078389,214,0 +170782078439,215,0 +170782078487,215,0 +170782078535,215,0 +170782078584,215,0 +170782078632,214,0 +170782078680,215,0 +170782078728,214,0 +170782078777,214,0 +170782078827,214,0 +170782078875,214,0 +170782078923,214,0 +170782078970,214,0 +170782079020,214,0 +170782079068,214,0 +170782079117,214,0 +170782079165,214,0 +170782079213,214,0 +170782079263,215,0 +170782079312,215,0 +170782079360,214,0 +170782079408,214,0 +170782079456,214,0 +170782079504,215,0 +170782079554,215,0 +170782079603,214,0 +170782079651,214,0 +170782079699,214,0 +170782079747,214,0 +170782079795,214,0 +170782079843,214,0 +170782079892,214,0 +170782079942,214,0 +170782079990,214,0 +170782080039,214,0 +170782080087,214,0 +170782080135,214,0 +170782080183,214,0 +170782080232,214,0 +170782080280,214,0 +170782080328,214,0 +170782080376,214,0 +170782080426,214,0 +170782080474,214,0 +170782080523,214,0 +170782080572,214,0 +170782080620,214,0 +170782080670,214,0 +170782080719,214,0 +170782080767,214,0 +170782080817,215,0 +170782080865,214,0 +170782080913,214,0 +170782080960,214,0 +170782081010,214,0 +170782081059,214,0 +170782081107,214,0 +170782081155,214,0 +170782081203,214,0 +170782081251,214,0 +170782081299,214,0 +170782081347,214,0 +170782081395,214,0 +170782081444,214,0 +170782081492,214,0 +170782081540,214,0 +170782081590,214,0 +170782081638,214,0 +170782081686,215,0 +170782081735,214,0 +170782081783,215,0 +170782081831,214,0 +170782081881,214,0 +170782081929,215,0 +170782081977,214,0 +170782082026,215,0 +170782082076,214,0 +170782082125,214,0 +170782082173,214,0 +170782082221,214,0 +170782082271,214,0 +170782082320,214,0 +170782082370,214,0 +170782082418,214,0 +170782082465,214,0 +170782082513,214,0 +170782082563,214,0 +170782082611,214,0 +170782082659,214,0 +170782082706,214,0 +170782082754,215,0 +170782082804,215,0 +170782082853,214,0 +170782082901,214,0 +170782082951,214,0 +170782082999,214,0 +170782083047,214,0 +170782083096,214,0 +170782083144,214,0 +170782083194,214,0 +170782083242,214,0 +170782083291,214,0 +170782083339,214,0 +170782083387,214,0 +170782083435,214,0 +170782083482,214,0 +170782083530,214,0 +170782083578,214,0 +170782083626,214,0 +170782083674,214,0 +170782083722,214,0 +170782083770,214,0 +170782083818,214,0 +170782083867,214,0 +170782083915,214,0 +170782083963,214,0 +170782084011,214,0 +170782084061,214,0 +170782084108,214,0 +170782084156,214,0 +170782084204,215,0 +170782084252,214,0 +170782084300,215,0 +170782084348,215,0 +170782084396,215,0 +170782084444,214,0 +170782084492,214,0 +170782084540,214,0 +170782084589,214,0 +170782084637,214,0 +170782084685,214,0 +170782084735,214,0 +170782084782,214,0 +170782084830,215,0 +170782084878,214,0 +170782084926,214,0 +170782084974,214,0 +170782085022,215,0 +170782085071,215,0 +170782085119,215,0 +170782085169,215,0 +170782085218,214,0 +170782085266,215,0 +170782085316,214,0 +170782085364,214,0 +170782085411,214,0 +170782085459,214,0 +170782085507,215,0 +170782085555,215,0 +170782085603,215,0 +170782085652,215,0 +170782085701,215,0 +170782085751,215,0 +170782085799,215,0 +170782085848,215,0 +170782085898,215,0 +170782085947,215,0 +170782085995,214,0 +170782086043,214,0 +170782086091,215,0 +170782086138,214,0 +170782086186,214,0 +170782086234,214,0 +170782086282,214,0 +170782086330,214,0 +170782086378,214,0 +170782086426,214,0 +170782086474,214,0 +170782086521,214,0 +170782086569,214,0 +170782086617,215,0 +170782086665,215,0 +170782086715,215,0 +170782086764,215,0 +170782086812,214,0 +170782086862,215,0 +170782086911,214,0 +170782086959,214,0 +170782087009,214,0 +170782087057,214,0 +170782087106,214,0 +170782087154,214,0 +170782087202,214,0 +170782087250,214,0 +170782087298,214,0 +170782087346,214,0 +170782087394,214,0 +170782087441,214,0 +170782087489,214,0 +170782087539,215,0 +170782087587,215,0 +170782087635,214,0 +170782087683,214,0 +170782087731,214,0 +170782087779,213,0 +170782087826,214,0 +170782087874,214,0 +170782087924,214,0 +170782087972,214,0 +170782088021,214,0 +170782088070,214,0 +170782088118,214,0 +170782088166,214,0 +170782088214,214,0 +170782088262,214,0 +170782088310,214,0 +170782088358,214,0 +170782088406,215,0 +170782088454,214,0 +170782088501,214,0 +170782088551,214,0 +170782088600,214,0 +170782088650,214,0 +170782088698,214,0 +170782088745,214,0 +170782088793,214,0 +170782088841,214,0 +170782088889,214,0 +170782088937,214,0 +170782088984,214,0 +170782089032,215,0 +170782089082,214,0 +170782089129,214,0 +170782089177,214,0 +170782089225,214,0 +170782089273,214,0 +170782089322,214,0 +170782089372,214,0 +170782089421,214,0 +170782089469,214,0 +170782089517,214,0 +170782089567,214,0 +170782089615,214,0 +170782089664,214,0 +170782089712,214,0 +170782089760,214,0 +170782089810,215,0 +170782089858,215,0 +170782089907,215,0 +170782089956,215,0 +170782090004,214,0 +170782090054,214,0 +170782090102,214,0 +170782090150,214,0 +170782090198,214,0 +170782090245,214,0 +170782090293,214,0 +170782090341,214,0 +170782090389,214,0 +170782090437,214,0 +170782090487,214,0 +170782090534,214,0 +170782090582,214,0 +170782090630,214,0 +170782090678,214,0 +170782090726,214,0 +170782090774,214,0 +170782090822,214,0 +170782090870,214,0 +170782090919,214,0 +170782090967,214,0 +170782091015,213,0 +170782091065,214,0 +170782091114,214,0 +170782091162,214,0 +170782091210,214,0 +170782091258,214,0 +170782091306,214,0 +170782091353,214,0 +170782091401,214,0 +170782091451,214,0 +170782091500,214,0 +170782091548,214,0 +170782091596,214,0 +170782091646,214,0 +170782091695,214,0 +170782091744,214,0 +170782091792,213,0 +170782091840,213,0 +170782091888,213,0 +170782091938,214,0 +170782091987,214,0 +170782092037,214,0 +170782092085,214,0 +170782092134,214,0 +170782092182,214,0 +170782092230,214,0 +170782092278,214,0 +170782092326,214,0 +170782092376,214,0 +170782092423,215,0 +170782092471,215,0 +170782092519,215,0 +170782092567,214,0 +170782092615,214,0 +170782092663,214,0 +170782092711,213,0 +170782092759,214,0 +170782092807,214,0 +170782092855,214,0 +170782092904,214,0 +170782092952,214,0 +170782093000,214,0 +170782093048,214,0 +170782093095,214,0 +170782093143,214,0 +170782093191,214,0 +170782093239,214,0 +170782093288,214,0 +170782093336,214,0 +170782093384,214,0 +170782093432,213,0 +170782093480,213,0 +170782093529,213,0 +170782093577,214,0 +170782093625,214,0 +170782093674,214,0 +170782093722,214,0 +170782093770,214,0 +170782093818,214,0 +170782093865,214,0 +170782093913,214,0 +170782093961,214,0 +170782094010,215,0 +170782094058,214,0 +170782094106,214,0 +170782094154,214,0 +170782094202,214,0 +170782094250,213,0 +170782094299,213,0 +170782094347,213,0 +170782094395,213,0 +170782094443,213,0 +170782094490,214,0 +170782094538,214,0 +170782094588,214,0 +170782094636,214,0 +170782094684,214,0 +170782094733,214,0 +170782094781,214,0 +170782094829,214,0 +170782094876,214,0 +170782094924,214,0 +170782094972,214,0 +170782095020,213,0 +170782095068,213,0 +170782095116,213,0 +170782095163,214,0 +170782095211,213,0 +170782095259,214,0 +170782095307,214,0 +170782095356,214,0 +170782095406,214,0 +170782095454,214,0 +170782095502,214,0 +170782095549,214,0 +170782095599,214,0 +170782095648,214,0 +170782095698,214,0 +170782095747,214,0 +170782095795,214,0 +170782095843,213,0 +170782095891,213,0 +170782095941,214,0 +170782095990,213,0 +170782096038,214,0 +170782096086,214,0 +170782096136,214,0 +170782096184,214,0 +170782096233,214,0 +170782096281,214,0 +170782096329,214,0 +170782096378,214,0 +170782096428,214,0 +170782096476,214,0 +170782096525,214,0 +170782096575,214,0 +170782096623,214,0 +170782096672,213,0 +170782096720,213,0 +170782096768,214,0 +170782096816,213,0 +170782096864,214,0 +170782096912,214,0 +170782096962,213,0 +170782097010,214,0 +170782097058,214,0 +170782097106,214,0 +170782097153,214,0 +170782097203,214,0 +170782097251,214,0 +170782097299,214,0 +170782097348,214,0 +170782097396,214,0 +170782097444,214,0 +170782097494,214,0 +170782097543,214,0 +170782097591,214,0 +170782097639,214,0 +170782097689,214,0 +170782097737,214,0 +170782097786,214,0 +170782097835,214,0 +170782097883,214,0 +170782097933,215,0 +170782097981,215,0 +170782098029,214,0 +170782098077,214,0 +170782098125,215,0 +170782098173,215,0 +170782098221,214,0 +170782098270,214,0 +170782098318,215,0 +170782098368,215,0 +170782098416,215,0 +170782098463,214,0 +170782098511,214,0 +170782098559,215,0 +170782098608,214,0 +170782098656,215,0 +170782098704,215,0 +170782098754,215,0 +170782098803,214,0 +170782098852,215,0 +170782098900,214,0 +170782098948,214,0 +170782098996,215,0 +170782099044,215,0 +170782099091,215,0 +170782099139,215,0 +170782099187,215,0 +170782099235,215,0 +170782099283,215,0 +170782099330,215,0 +170782099380,215,0 +170782099429,215,0 +170782099477,215,0 +170782099525,215,0 +170782099573,215,0 +170782099621,215,0 +170782099669,215,0 +170782099716,215,0 +170782099766,215,0 +170782099814,215,0 +170782099861,215,0 +170782099909,215,0 +170782099957,215,0 +170782100005,214,0 +170782100054,214,0 +170782100102,214,0 +170782100152,215,0 +170782100199,215,0 +170782100247,215,0 +170782100295,214,0 +170782100344,215,0 +170782100392,215,0 +170782100440,215,0 +170782100488,215,0 +170782100536,215,0 +170782100583,214,0 +170782100631,214,0 +170782100681,214,0 +170782100728,214,0 +170782100776,214,0 +170782100824,214,0 +170782100872,214,0 +170782100920,214,0 +170782100968,214,0 +170782101016,214,0 +170782101063,214,0 +170782101111,214,0 +170782101159,214,0 +170782101207,214,0 +170782101255,214,0 +170782101302,214,0 +170782101350,214,0 +170782101398,214,0 +170782101446,214,0 +170782101494,213,0 +170782101541,213,0 +170782101591,214,0 +170782101639,214,0 +170782101686,214,0 +170782101734,214,0 +170782101784,214,0 +170782101833,214,0 +170782101881,214,0 +170782101929,214,0 +170782101977,214,0 +170782102024,214,0 +170782102072,214,0 +170782102120,214,0 +170782102168,214,0 +170782102216,214,0 +170782102264,214,0 +170782102314,213,0 +170782102363,213,0 +170782102413,213,0 +170782102461,214,0 +170782102510,214,0 +170782102560,214,0 +170782102607,214,0 +170782102655,214,0 +170782102703,214,0 +170782102751,214,0 +170782102801,214,0 +170782102850,214,0 +170782102898,214,0 +170782102946,214,0 +170782102996,214,0 +170782103045,214,0 +170782103093,213,0 +170782103141,213,0 +170782103189,213,0 +170782103237,213,0 +170782103287,213,0 +170782103335,213,0 +170782103383,214,0 +170782103430,214,0 +170782103478,214,0 +170782103528,214,0 +170782103577,214,0 +170782103625,214,0 +170782103675,214,0 +170782103724,214,0 +170782103774,214,0 +170782103823,214,0 +170782103873,214,0 +170782103922,213,0 +170782103972,213,0 +170782104020,213,0 +170782104068,213,0 +170782104116,214,0 +170782104164,214,0 +170782104212,214,0 +170782104259,214,0 +170782104309,215,0 +170782104357,214,0 +170782104406,214,0 +170782104456,214,0 +170782104503,214,0 +170782104551,214,0 +170782104601,214,0 +170782104649,214,0 +170782104698,213,0 +170782104746,213,0 +170782104794,214,0 +170782104844,214,0 +170782104892,214,0 +170782104939,214,0 +170782104987,214,0 +170782105035,214,0 +170782105085,214,0 +170782105133,214,0 +170782105182,214,0 +170782105230,214,0 +170782105278,214,0 +170782105326,214,0 +170782105374,215,0 +170782105421,214,0 +170782105469,214,0 +170782105517,213,0 +170782105565,213,0 +170782105613,214,0 +170782105662,214,0 +170782105710,214,0 +170782105758,214,0 +170782105806,214,0 +170782105855,214,0 +170782105903,214,0 +170782105953,214,0 +170782106000,214,0 +170782106048,214,0 +170782106096,214,0 +170782106144,214,0 +170782106192,214,0 +170782106240,215,0 +170782106288,214,0 +170782106338,213,0 +170782106386,213,0 +170782106434,213,0 +170782106481,214,0 +170782106531,214,0 +170782106579,214,0 +170782106627,214,0 +170782106676,214,0 +170782106726,214,0 +170782106774,214,0 +170782106822,214,0 +170782106870,214,0 +170782106918,214,0 +170782106966,214,0 +170782107014,214,0 +170782107062,214,0 +170782107110,214,0 +170782107159,213,0 +170782107209,213,0 +170782107256,214,0 +170782107304,214,0 +170782107352,214,0 +170782107400,214,0 +170782107448,214,0 +170782107496,214,0 +170782107544,214,0 +170782107592,214,0 +170782107640,214,0 +170782107690,214,0 +170782107738,214,0 +170782107786,215,0 +170782107834,214,0 +170782107881,214,0 +170782107931,214,0 +170782107979,214,0 +170782108027,214,0 +170782108076,214,0 +170782108124,214,0 +170782108172,214,0 +170782108220,214,0 +170782108268,214,0 +170782108318,214,0 +170782108367,214,0 +170782108417,214,0 +170782108466,214,0 +170782108514,214,0 +170782108562,214,0 +170782108612,214,0 +170782108661,214,0 +170782108709,214,0 +170782108757,214,0 +170782108807,214,0 +170782108855,214,0 +170782108904,214,0 +170782108952,214,0 +170782109002,214,0 +170782109050,214,0 +170782109099,214,0 +170782109147,214,0 +170782109195,214,0 +170782109243,214,0 +170782109292,214,0 +170782109340,214,0 +170782109388,214,0 +170782109436,214,0 +170782109484,214,0 +170782109532,214,0 +170782109582,214,0 +170782109630,214,0 +170782109678,214,0 +170782109727,214,0 +170782109775,214,0 +170782109823,214,0 +170782109873,214,0 +170782109922,214,0 +170782109970,215,0 +170782110020,214,0 +170782110068,215,0 +170782110116,214,0 +170782110165,215,0 +170782110213,215,0 +170782110261,214,0 +170782110309,214,0 +170782110358,214,0 +170782110406,214,0 +170782110456,214,0 +170782110504,214,0 +170782110552,214,0 +170782110601,215,0 +170782110649,215,0 +170782110697,215,0 +170782110745,215,0 +170782110793,215,0 +170782110841,215,0 +170782110889,214,0 +170782110937,214,0 +170782110985,214,0 +170782111034,214,0 +170782111082,214,0 +170782111130,214,0 +170782111178,214,0 +170782111228,214,0 +170782111277,214,0 +170782111327,214,0 +170782111376,214,0 +170782111424,214,0 +170782111474,214,0 +170782111522,215,0 +170782111571,215,0 +170782111619,215,0 +170782111667,214,0 +170782111717,215,0 +170782111766,214,0 +170782111814,214,0 +170782111862,214,0 +170782111912,214,0 +170782111961,214,0 +170782112009,213,0 +170782112057,214,0 +170782112105,214,0 +170782112155,214,0 +170782112204,214,0 +170782112254,214,0 +170782112303,214,0 +170782112353,214,0 +170782112402,214,0 +170782112450,214,0 +170782112498,214,0 +170782112546,214,0 +170782112594,214,0 +170782112642,214,0 +170782112690,214,0 +170782112738,214,0 +170782112786,213,0 +170782112833,213,0 +170782112881,213,0 +170782112929,214,0 +170782112978,214,0 +170782113028,214,0 +170782113076,214,0 +170782113124,214,0 +170782113173,214,0 +170782113221,214,0 +170782113269,214,0 +170782113318,214,0 +170782113368,214,0 +170782113415,214,0 +170782113463,215,0 +170782113511,214,0 +170782113559,214,0 +170782113607,214,0 +170782113655,214,0 +170782113703,214,0 +170782113750,213,0 +170782113798,214,0 +170782113846,214,0 +170782113894,214,0 +170782113942,214,0 +170782113990,214,0 +170782114038,214,0 +170782114086,214,0 +170782114133,214,0 +170782114181,214,0 +170782114229,214,0 +170782114277,215,0 +170782114325,214,0 +170782114374,214,0 +170782114422,214,0 +170782114472,214,0 +170782114521,214,0 +170782114569,214,0 +170782114617,214,0 +170782114665,214,0 +170782114713,214,0 +170782114761,214,0 +170782114809,214,0 +170782114857,214,0 +170782114905,214,0 +170782114954,215,0 +170782115002,214,0 +170782115051,214,0 +170782115099,214,0 +170782115149,214,0 +170782115198,214,0 +170782115248,214,0 +170782115296,214,0 +170782115345,214,0 +170782115393,214,0 +170782115441,214,0 +170782115489,214,0 +170782115538,214,0 +170782115586,214,0 +170782115634,214,0 +170782115682,214,0 +170782115730,215,0 +170782115778,215,0 +170782115825,215,0 +170782115873,214,0 +170782115921,214,0 +170782115969,214,0 +170782116017,214,0 +170782116065,214,0 +170782116114,214,0 +170782116164,214,0 +170782116213,214,0 +170782116261,214,0 +170782116309,214,0 +170782116357,214,0 +170782116406,214,0 +170782116454,214,0 +170782116504,214,0 +170782116552,215,0 +170782116601,215,0 +170782116649,214,0 +170782116697,214,0 +170782116745,214,0 +170782116792,214,0 +170782116840,213,0 +170782116888,214,0 +170782116938,214,0 +170782116987,214,0 +170782117035,214,0 +170782117083,214,0 +170782117133,214,0 +170782117182,214,0 +170782117230,214,0 +170782117278,214,0 +170782117326,214,0 +170782117375,214,0 +170782117423,214,0 +170782117471,215,0 +170782117521,214,0 +170782117569,214,0 +170782117618,213,0 +170782117666,213,0 +170782117716,214,0 +170782117764,214,0 +170782117813,214,0 +170782117863,214,0 +170782117911,214,0 +170782117959,214,0 +170782118007,214,0 +170782118056,214,0 +170782118104,214,0 +170782118153,214,0 +170782118202,214,0 +170782118251,215,0 +170782118299,214,0 +170782118347,214,0 +170782118395,214,0 +170782118444,213,0 +170782118494,214,0 +170782118542,214,0 +170782118591,214,0 +170782118641,214,0 +170782118690,214,0 +170782118738,214,0 +170782118788,214,0 +170782118837,214,0 +170782118887,214,0 +170782118935,214,0 +170782118984,215,0 +170782119032,215,0 +170782119080,214,0 +170782119130,214,0 +170782119178,214,0 +170782119226,214,0 +170782119274,214,0 +170782119321,214,0 +170782119369,214,0 +170782119417,214,0 +170782119465,214,0 +170782119515,214,0 +170782119563,214,0 +170782119613,214,0 +170782119660,214,0 +170782119710,214,0 +170782119758,214,0 +170782119807,214,0 +170782119855,214,0 +170782119903,215,0 +170782119951,214,0 +170782120001,214,0 +170782120050,214,0 +170782120098,214,0 +170782120146,214,0 +170782120194,214,0 +170782120243,214,0 +170782120291,214,0 +170782120339,214,0 +170782120387,214,0 +170782120435,214,0 +170782120485,214,0 +170782120534,214,0 +170782120582,215,0 +170782120630,215,0 +170782120678,215,0 +170782120726,214,0 +170782120776,214,0 +170782120825,214,0 +170782120875,214,0 +170782120923,214,0 +170782120971,214,0 +170782121018,214,0 +170782121066,214,0 +170782121114,214,0 +170782121162,214,0 +170782121212,214,0 +170782121260,214,0 +170782121307,214,0 +170782121355,214,0 +170782121403,214,0 +170782121451,214,0 +170782121499,215,0 +170782121548,214,0 +170782121596,214,0 +170782121644,213,0 +170782121692,213,0 +170782121742,214,0 +170782121790,214,0 +170782121838,214,0 +170782121887,214,0 +170782121937,214,0 +170782121984,214,0 +170782122032,214,0 +170782122082,214,0 +170782122130,214,0 +170782122178,214,0 +170782122226,214,0 +170782122275,214,0 +170782122323,215,0 +170782122371,214,0 +170782122421,214,0 +170782122469,214,0 +170782122517,214,0 +170782122566,214,0 +170782122616,214,0 +170782122664,214,0 +170782122711,214,0 +170782122761,214,0 +170782122811,214,0 +170782122859,214,0 +170782122906,214,0 +170782122956,215,0 +170782123004,215,0 +170782123054,215,0 +170782123101,215,0 +170782123149,215,0 +170782123199,214,0 +170782123249,214,0 +170782123296,215,0 +170782123344,214,0 +170782123392,215,0 +170782123442,214,0 +170782123489,215,0 +170782123537,215,0 +170782123587,215,0 +170782123635,215,0 +170782123683,215,0 +170782123731,215,0 +170782123779,215,0 +170782123827,215,0 +170782123875,214,0 +170782123922,215,0 +170782123970,214,0 +170782124020,214,0 +170782124070,214,0 +170782124118,214,0 +170782124165,214,0 +170782124215,214,0 +170782124263,214,0 +170782124311,214,0 +170782124359,215,0 +170782124407,215,0 +170782124456,215,0 +170782124506,215,0 +170782124555,215,0 +170782124605,215,0 +170782124654,215,0 +170782124702,214,0 +170782124750,214,0 +170782124799,214,0 +170782124847,213,0 +170782124896,213,0 +170782124944,213,0 +170782124992,214,0 +170782125040,213,0 +170782125088,214,0 +170782125136,214,0 +170782125184,214,0 +170782125231,214,0 +170782125281,214,0 +170782125329,214,0 +170782125376,214,0 +170782125424,214,0 +170782125472,214,0 +170782125520,214,0 +170782125568,214,0 +170782125616,214,0 +170782125664,213,0 +170782125712,213,0 +170782125759,213,0 +170782125807,213,0 +170782125857,214,0 +170782125904,214,0 +170782125952,214,0 +170782126000,214,0 +170782126048,214,0 +170782126097,214,0 +170782126145,214,0 +170782126193,214,0 +170782126241,214,0 +170782126289,214,0 +170782126337,214,0 +170782126384,215,0 +170782126432,214,0 +170782126480,213,0 +170782126528,213,0 +170782126576,214,0 +170782126623,214,0 +170782126671,214,0 +170782126720,214,0 +170782126768,214,0 +170782126816,214,0 +170782126864,214,0 +170782126912,214,0 +170782126960,214,0 +170782127007,214,0 +170782127055,215,0 +170782127105,215,0 +170782127152,214,0 +170782127200,214,0 +170782127250,214,0 +170782127298,213,0 +170782127345,214,0 +170782127393,214,0 +170782127441,214,0 +170782127489,214,0 +170782127537,214,0 +170782127586,214,0 +170782127636,214,0 +170782127685,214,0 +170782127733,214,0 +170782127781,214,0 +170782127829,214,0 +170782127876,214,0 +170782127924,214,0 +170782127972,215,0 +170782128020,214,0 +170782128068,214,0 +170782128115,214,0 +170782128164,213,0 +170782128211,214,0 +170782128259,214,0 +170782128307,214,0 +170782128355,214,0 +170782128405,214,0 +170782128452,214,0 +170782128500,214,0 +170782128550,214,0 +170782128599,215,0 +170782128647,214,0 +170782128695,215,0 +170782128743,214,0 +170782128793,215,0 +170782128842,214,0 +170782128892,214,0 +170782128939,214,0 +170782128987,214,0 +170782129037,214,0 +170782129085,214,0 +170782129133,214,0 +170782129181,214,0 +170782129229,214,0 +170782129277,214,0 +170782129326,214,0 +170782129374,214,0 +170782129422,214,0 +170782129470,215,0 +170782129518,215,0 +170782129567,214,0 +170782129617,214,0 +170782129666,214,0 +170782129714,214,0 +170782129762,214,0 +170782129810,214,0 +170782129858,214,0 +170782129906,214,0 +170782129955,214,0 +170782130003,214,0 +170782130051,214,0 +170782130098,215,0 +170782130148,215,0 +170782130196,215,0 +170782130244,215,0 +170782130291,215,0 +170782130339,215,0 +170782130387,214,0 +170782130435,214,0 +170782130483,214,0 +170782130530,214,0 +170782130578,214,0 +170782130626,214,0 +170782130674,214,0 +170782130722,214,0 +170782130770,214,0 +170782130818,214,0 +170782130866,214,0 +170782130913,214,0 +170782130961,215,0 +170782131009,215,0 +170782131057,215,0 +170782131105,214,0 +170782131152,214,0 +170782131200,214,0 +170782131248,214,0 +170782131296,214,0 +170782131344,214,0 +170782131392,214,0 +170782131439,214,0 +170782131487,214,0 +170782131535,214,0 +170782131583,214,0 +170782131631,214,0 +170782131679,214,0 +170782131726,214,0 +170782131774,214,0 +170782131824,215,0 +170782131872,215,0 +170782131921,215,0 +170782131969,214,0 +170782132017,215,0 +170782132066,214,0 +170782132114,214,0 +170782132162,214,0 +170782132210,214,0 +170782132258,214,0 +170782132307,214,0 +170782132355,214,0 +170782132403,214,0 +170782132451,214,0 +170782132498,214,0 +170782132546,214,0 +170782132594,214,0 +170782132642,214,0 +170782132690,214,0 +170782132737,214,0 +170782132785,214,0 +170782132833,214,0 +170782132881,214,0 +170782132929,213,0 +170782132977,213,0 +170782133024,214,0 +170782133072,214,0 +170782133120,214,0 +170782133169,214,0 +170782133217,214,0 +170782133265,214,0 +170782133315,214,0 +170782133362,214,0 +170782133410,214,0 +170782133458,214,0 +170782133506,214,0 +170782133554,214,0 +170782133601,214,0 +170782133649,214,0 +170782133699,214,0 +170782133747,214,0 +170782133794,213,0 +170782133842,214,0 +170782133890,214,0 +170782133938,214,0 +170782133986,214,0 +170782134034,214,0 +170782134081,214,0 +170782134129,214,0 +170782134177,214,0 +170782134225,214,0 +170782134274,214,0 +170782134324,214,0 +170782134373,215,0 +170782134421,214,0 +170782134470,214,0 +170782134518,214,0 +170782134566,214,0 +170782134614,214,0 +170782134663,214,0 +170782134713,214,0 +170782134760,214,0 +170782134808,214,0 +170782134856,214,0 +170782134904,214,0 +170782134953,215,0 +170782135001,215,0 +170782135049,215,0 +170782135098,215,0 +170782135146,215,0 +170782135194,214,0 +170782135242,214,0 +170782135290,214,0 +170782135337,214,0 +170782135385,214,0 +170782135433,214,0 +170782135481,214,0 +170782135529,214,0 +170782135578,214,0 +170782135626,214,0 +170782135674,215,0 +170782135723,214,0 +170782135771,214,0 +170782135819,215,0 +170782135867,215,0 +170782135914,214,0 +170782135962,215,0 +170782136010,215,0 +170782136060,214,0 +170782136108,214,0 +170782136155,214,0 +170782136205,214,0 +170782136253,214,0 +170782136301,214,0 +170782136350,214,0 +170782136398,214,0 +170782136446,214,0 +170782136494,214,0 +170782136542,215,0 +170782136591,214,0 +170782136639,215,0 +170782136687,214,0 +170782136735,214,0 +170782136783,214,0 +170782136833,214,0 +170782136881,214,0 +170782136929,214,0 +170782136977,214,0 +170782137025,214,0 +170782137072,214,0 +170782137120,214,0 +170782137170,214,0 +170782137218,214,0 +170782137267,214,0 +170782137317,214,0 +170782137366,214,0 +170782137415,215,0 +170782137463,215,0 +170782137511,214,0 +170782137559,215,0 +170782137608,214,0 +170782137656,214,0 +170782137704,214,0 +170782137752,214,0 +170782137800,214,0 +170782137848,214,0 +170782137895,214,0 +170782137943,214,0 +170782137993,214,0 +170782138042,214,0 +170782138090,214,0 +170782138138,214,0 +170782138185,214,0 +170782138233,214,0 +170782138281,214,0 +170782138329,215,0 +170782138377,214,0 +170782138425,214,0 +170782138473,214,0 +170782138520,214,0 +170782138568,214,0 +170782138616,214,0 +170782138664,214,0 +170782138712,214,0 +170782138760,214,0 +170782138808,214,0 +170782138857,214,0 +170782138907,214,0 +170782138956,214,0 +170782139004,214,0 +170782139052,214,0 +170782139101,214,0 +170782139149,214,0 +170782139197,214,0 +170782139245,214,0 +170782139295,214,0 +170782139344,214,0 +170782139392,214,0 +170782139440,214,0 +170782139488,214,0 +170782139538,214,0 +170782139585,214,0 +170782139633,214,0 +170782139681,214,0 +170782139731,214,0 +170782139780,215,0 +170782139828,215,0 +170782139878,215,0 +170782139926,214,0 +170782139974,214,0 +170782140021,214,0 +170782140069,214,0 +170782140119,214,0 +170782140168,214,0 +170782140216,214,0 +170782140265,214,0 +170782140313,214,0 +170782140361,214,0 +170782140409,214,0 +170782140457,214,0 +170782140505,214,0 +170782140554,214,0 +170782140604,214,0 +170782140652,214,0 +170782140700,214,0 +170782140749,215,0 +170782140798,215,0 +170782140848,214,0 +170782140897,214,0 +170782140945,214,0 +170782140993,214,0 +170782141041,213,0 +170782141089,214,0 +170782141138,214,0 +170782141186,214,0 +170782141234,214,0 +170782141283,214,0 +170782141333,214,0 +170782141381,214,0 +170782141430,214,0 +170782141478,214,0 +170782141526,214,0 +170782141576,215,0 +170782141625,214,0 +170782141675,214,0 +170782141723,214,0 +170782141771,214,0 +170782141820,213,0 +170782141868,214,0 +170782141917,214,0 +170782141967,214,0 +170782142015,214,0 +170782142063,214,0 +170782142111,214,0 +170782142159,214,0 +170782142207,214,0 +170782142255,214,0 +170782142304,215,0 +170782142352,214,0 +170782142400,215,0 +170782142450,215,0 +170782142499,214,0 +170782142549,214,0 +170782142597,213,0 +170782142646,214,0 +170782142696,214,0 +170782142745,214,0 +170782142793,214,0 +170782142843,214,0 +170782142891,214,0 +170782142938,214,0 +170782142986,214,0 +170782143034,214,0 +170782143082,214,0 +170782143130,214,0 +170782143178,214,0 +170782143226,215,0 +170782143276,215,0 +170782143325,214,0 +170782143373,214,0 +170782143421,213,0 +170782143469,213,0 +170782143517,214,0 +170782143565,214,0 +170782143613,214,0 +170782143662,214,0 +170782143710,214,0 +170782143760,214,0 +170782143809,214,0 +170782143857,214,0 +170782143905,214,0 +170782143955,214,0 +170782144003,214,0 +170782144052,214,0 +170782144100,215,0 +170782144148,214,0 +170782144197,213,0 +170782144245,214,0 +170782144293,214,0 +170782144341,214,0 +170782144389,214,0 +170782144437,214,0 +170782144487,214,0 +170782144535,214,0 +170782144584,214,0 +170782144634,214,0 +170782144682,214,0 +170782144730,214,0 +170782144777,214,0 +170782144825,214,0 +170782144873,214,0 +170782144921,214,0 +170782144969,214,0 +170782145017,213,0 +170782145067,213,0 +170782145116,213,0 +170782145164,214,0 +170782145212,214,0 +170782145260,214,0 +170782145309,214,0 +170782145357,214,0 +170782145407,214,0 +170782145456,214,0 +170782145506,214,0 +170782145555,214,0 +170782145603,214,0 +170782145651,214,0 +170782145699,214,0 +170782145747,214,0 +170782145797,213,0 +170782145844,213,0 +170782145894,213,0 +170782145942,213,0 +170782145991,213,0 +170782146039,214,0 +170782146089,213,0 +170782146137,214,0 +170782146185,214,0 +170782146233,214,0 +170782146281,214,0 +170782146329,214,0 +170782146377,214,0 +170782146425,214,0 +170782146472,214,0 +170782146520,214,0 +170782146570,214,0 +170782146619,213,0 +170782146667,213,0 +170782146717,213,0 +170782146765,214,0 +170782146814,214,0 +170782146862,214,0 +170782146910,214,0 +170782146958,214,0 +170782147006,214,0 +170782147054,214,0 +170782147102,214,0 +170782147151,214,0 +170782147199,214,0 +170782147247,214,0 +170782147295,214,0 +170782147343,214,0 +170782147391,214,0 +170782147440,214,0 +170782147490,214,0 +170782147538,214,0 +170782147587,214,0 +170782147637,214,0 +170782147685,214,0 +170782147733,214,0 +170782147780,215,0 +170782147828,215,0 +170782147876,215,0 +170782147924,215,0 +170782147972,215,0 +170782148020,215,0 +170782148070,214,0 +170782148118,214,0 +170782148167,214,0 +170782148215,214,0 +170782148263,214,0 +170782148311,215,0 +170782148359,214,0 +170782148408,214,0 +170782148456,215,0 +170782148504,215,0 +170782148552,215,0 +170782148600,215,0 +170782148648,214,0 +170782148697,215,0 +170782148745,214,0 +170782148793,215,0 +170782148841,215,0 +170782148891,215,0 +170782148940,214,0 +170782148990,214,0 +170782149039,214,0 +170782149089,215,0 +170782149137,214,0 +170782149186,214,0 +170782149236,214,0 +170782149285,214,0 +170782149333,215,0 +170782149383,215,0 +170782149432,214,0 +170782149480,215,0 +170782149530,215,0 +170782149578,214,0 +170782149626,215,0 +170782149674,214,0 +170782149723,214,0 +170782149771,214,0 +170782149821,214,0 +170782149870,214,0 +170782149920,214,0 +170782149969,214,0 +170782150017,214,0 +170782150065,214,0 +170782150113,214,0 +170782150162,214,0 +170782150210,214,0 +170782150258,214,0 +170782150306,215,0 +170782150356,215,0 +170782150403,214,0 +170782150451,215,0 +170782150499,214,0 +170782150547,214,0 +170782150597,214,0 +170782150645,214,0 +170782150692,214,0 +170782150742,214,0 +170782150792,214,0 +170782150839,214,0 +170782150887,214,0 +170782150935,214,0 +170782150983,214,0 +170782151031,214,0 +170782151079,214,0 +170782151127,214,0 +170782151175,214,0 +170782151223,215,0 +170782151273,214,0 +170782151321,214,0 +170782151370,214,0 +170782151418,214,0 +170782151466,214,0 +170782151515,214,0 +170782151565,214,0 +170782151613,214,0 +170782151661,214,0 +170782151709,214,0 +170782151757,214,0 +170782151804,214,0 +170782151852,214,0 +170782151900,214,0 +170782151950,214,0 +170782151998,214,0 +170782152047,215,0 +170782152095,215,0 +170782152143,214,0 +170782152191,214,0 +170782152239,213,0 +170782152289,213,0 +170782152338,214,0 +170782152388,213,0 +170782152436,214,0 +170782152484,214,0 +170782152533,214,0 +170782152581,214,0 +170782152631,214,0 +170782152678,215,0 +170782152728,214,0 +170782152777,214,0 +170782152827,214,0 +170782152876,214,0 +170782152924,215,0 +170782152972,214,0 +170782153020,214,0 +170782153068,213,0 +170782153116,213,0 +170782153164,214,0 +170782153212,214,0 +170782153260,214,0 +170782153308,214,0 +170782153357,214,0 +170782153407,214,0 +170782153456,214,0 +170782153504,214,0 +170782153552,214,0 +170782153602,214,0 +170782153649,215,0 +170782153699,215,0 +170782153747,214,0 +170782153796,215,0 +170782153844,214,0 +170782153894,213,0 +170782153942,214,0 +170782153990,214,0 +170782154038,214,0 +170782154086,214,0 +170782154133,214,0 +170782154181,214,0 +170782154229,214,0 +170782154277,214,0 +170782154327,214,0 +170782154376,214,0 +170782154426,215,0 +170782154475,215,0 +170782154525,215,0 +170782154573,214,0 +170782154622,214,0 +170782154670,213,0 +170782154718,213,0 +170782154766,213,0 +170782154816,214,0 +170782154864,214,0 +170782154912,214,0 +170782154960,214,0 +170782155008,214,0 +170782155057,214,0 +170782155105,214,0 +170782155153,214,0 +170782155201,214,0 +170782155251,215,0 +170782155299,214,0 +170782155346,214,0 +170782155394,214,0 +170782155442,214,0 +170782155490,213,0 +170782155540,213,0 +170782155589,213,0 +170782155637,214,0 +170782155685,214,0 +170782155733,214,0 +170782155782,214,0 +170782155830,214,0 +170782155878,214,0 +170782155926,214,0 +170782155974,214,0 +170782156022,214,0 +170782156070,214,0 +170782156118,214,0 +170782156166,215,0 +170782156214,214,0 +170782156262,214,0 +170782156311,213,0 +170782156359,213,0 +170782156407,214,0 +170782156455,214,0 +170782156503,213,0 +170782156552,214,0 +170782156602,214,0 +170782156649,214,0 +170782156697,214,0 +170782156745,214,0 +170782156794,214,0 +170782156842,214,0 +170782156890,214,0 +170782156938,214,0 +170782156987,214,0 +170782157035,214,0 +170782157085,213,0 +170782157134,213,0 +170782157184,214,0 +170782157232,214,0 +170782157280,214,0 +170782157328,214,0 +170782157377,214,0 +170782157427,214,0 +170782157475,214,0 +170782157522,214,0 +170782157570,214,0 +170782157620,215,0 +170782157668,214,0 +170782157715,214,0 +170782157763,214,0 +170782157811,214,0 +170782157859,214,0 +170782157907,214,0 +170782157956,214,0 +170782158004,214,0 +170782158052,214,0 +170782158101,214,0 +170782158149,214,0 +170782158199,214,0 +170782158246,214,0 +170782158294,214,0 +170782158342,214,0 +170782158390,214,0 +170782158440,214,0 +170782158488,215,0 +170782158535,214,0 +170782158585,215,0 +170782158633,214,0 +170782158681,214,0 +170782158729,214,0 +170782158778,214,0 +170782158826,214,0 +170782158874,214,0 +170782158922,214,0 +170782158971,214,0 +170782159019,214,0 +170782159067,214,0 +170782159114,214,0 +170782159162,215,0 +170782159210,214,0 +170782159258,214,0 +170782159306,215,0 +170782159355,215,0 +170782159403,215,0 +170782159451,214,0 +170782159499,214,0 +170782159546,214,0 +170782159594,214,0 +170782159644,214,0 +170782159693,214,0 +170782159743,215,0 +170782159790,215,0 +170782159838,215,0 +170782159886,215,0 +170782159936,215,0 +170782159983,215,0 +170782160031,215,0 +170782160079,215,0 +170782160127,215,0 +170782160175,215,0 +170782160223,215,0 +170782160272,214,0 +170782160320,214,0 +170782160368,215,0 +170782160416,215,0 +170782160466,214,0 +170782160514,215,0 +170782160562,215,0 +170782160611,215,0 +170782160659,215,0 +170782160707,215,0 +170782160756,215,0 +170782160806,215,0 +170782160854,215,0 +170782160902,215,0 +170782160950,215,0 +170782160998,215,0 +170782161045,215,0 +170782161093,215,0 +170782161141,214,0 +170782161191,215,0 +170782161238,214,0 +170782161286,215,0 +170782161334,214,0 +170782161382,214,0 +170782161430,214,0 +170782161478,215,0 +170782161526,215,0 +170782161573,215,0 +170782161621,215,0 +170782161669,215,0 +170782161717,215,0 +170782161767,215,0 +170782161814,215,0 +170782161862,215,0 +170782161912,215,0 +170782161961,214,0 +170782162009,215,0 +170782162058,215,0 +170782162106,215,0 +170782162154,214,0 +170782162202,214,0 +170782162250,214,0 +170782162298,214,0 +170782162346,214,0 +170782162393,214,0 +170782162443,214,0 +170782162491,214,0 +170782162540,214,0 +170782162590,214,0 +170782162637,215,0 +170782162685,215,0 +170782162733,214,0 +170782162783,215,0 +170782162831,215,0 +170782162878,214,0 +170782162926,215,0 +170782162974,215,0 +170782163022,214,0 +170782163071,215,0 +170782163121,214,0 +170782163169,214,0 +170782163217,214,0 +170782163264,214,0 +170782163312,214,0 +170782163360,214,0 +170782163409,214,0 +170782163457,214,0 +170782163507,214,0 +170782163555,214,0 +170782163602,214,0 +170782163652,214,0 +170782163701,214,0 +170782163749,214,0 +170782163797,215,0 +170782163845,214,0 +170782163893,215,0 +170782163940,214,0 +170782163988,214,0 +170782164038,213,0 +170782164085,213,0 +170782164133,213,0 +170782164181,214,0 +170782164229,213,0 +170782164277,214,0 +170782164325,214,0 +170782164372,214,0 +170782164420,214,0 +170782164468,214,0 +170782164516,214,0 +170782164564,214,0 +170782164612,214,0 +170782164660,214,0 +170782164707,214,0 +170782164755,214,0 +170782164803,214,0 +170782164852,214,0 +170782164900,215,0 +170782164950,214,0 +170782164998,213,0 +170782165046,214,0 +170782165093,214,0 +170782165141,214,0 +170782165191,214,0 +170782165239,214,0 +170782165288,214,0 +170782165338,214,0 +170782165387,214,0 +170782165437,214,0 +170782165485,214,0 +170782165533,215,0 +170782165582,214,0 +170782165630,215,0 +170782165678,214,0 +170782165726,214,0 +170782165774,215,0 +170782165822,215,0 +170782165870,214,0 +170782165918,214,0 +170782165967,214,0 +170782166015,214,0 +170782166065,214,0 +170782166114,214,0 +170782166162,214,0 +170782166212,214,0 +170782166260,214,0 +170782166308,214,0 +170782166355,214,0 +170782166405,214,0 +170782166453,215,0 +170782166502,215,0 +170782166552,214,0 +170782166600,215,0 +170782166648,214,0 +170782166696,214,0 +170782166744,215,0 +170782166792,214,0 +170782166840,214,0 +170782166887,214,0 +170782166937,214,0 +170782166985,214,0 +170782167034,214,0 +170782167084,214,0 +170782167134,214,0 +170782167181,214,0 +170782167231,214,0 +170782167279,214,0 +170782167327,214,0 +170782167375,214,0 +170782167424,214,0 +170782167474,214,0 +170782167524,214,0 +170782167571,214,0 +170782167619,214,0 +170782167667,214,0 +170782167715,214,0 +170782167763,213,0 +170782167811,213,0 +170782167859,214,0 +170782167907,214,0 +170782167955,214,0 +170782168003,214,0 +170782168051,214,0 +170782168100,214,0 +170782168148,214,0 +170782168196,214,0 +170782168246,214,0 +170782168295,214,0 +170782168343,214,0 +170782168392,214,0 +170782168440,214,0 +170782168490,215,0 +170782168538,214,0 +170782168587,214,0 +170782168637,214,0 +170782168685,214,0 +170782168734,214,0 +170782168782,213,0 +170782168830,214,0 +170782168878,214,0 +170782168928,214,0 +170782168976,214,0 +170782169023,214,0 +170782169071,214,0 +170782169121,214,0 +170782169170,214,0 +170782169220,214,0 +170782169269,214,0 +170782169317,214,0 +170782169365,214,0 +170782169413,215,0 +170782169463,214,0 +170782169512,214,0 +170782169560,214,0 +170782169608,214,0 +170782169656,214,0 +170782169706,214,0 +170782169754,214,0 +170782169802,214,0 +170782169850,214,0 +170782169898,214,0 +170782169946,214,0 +170782169995,214,0 +170782170043,214,0 +170782170091,214,0 +170782170139,214,0 +170782170188,214,0 +170782170236,215,0 +170782170284,214,0 +170782170332,215,0 +170782170382,215,0 +170782170430,215,0 +170782170479,214,0 +170782170529,214,0 +170782170577,214,0 +170782170624,214,0 +170782170672,214,0 +170782170722,214,0 +170782170770,214,0 +170782170818,214,0 +170782170866,214,0 +170782170915,214,0 +170782170963,214,0 +170782171011,215,0 +170782171060,214,0 +170782171110,215,0 +170782171158,215,0 +170782171206,215,0 +170782171254,215,0 +170782171303,215,0 +170782171351,215,0 +170782171401,215,0 +170782171449,214,0 +170782171498,214,0 +170782171548,214,0 +170782171597,214,0 +170782171645,214,0 +170782171695,214,0 +170782171744,214,0 +170782171794,214,0 +170782171842,214,0 +170782171891,214,0 +170782171940,214,0 +170782171988,214,0 +170782172036,214,0 +170782172084,214,0 +170782172134,215,0 +170782172182,215,0 +170782172230,215,0 +170782172278,215,0 +170782172327,214,0 +170782172377,214,0 +170782172425,214,0 +170782172472,214,0 +170782172520,214,0 +170782172568,214,0 +170782172618,214,0 +170782172667,214,0 +170782172715,214,0 +170782172763,214,0 +170782172813,214,0 +170782172862,214,0 +170782172912,215,0 +170782172961,214,0 +170782173009,214,0 +170782173057,214,0 +170782173105,214,0 +170782173153,214,0 +170782173201,215,0 +170782173249,214,0 +170782173297,214,0 +170782173346,213,0 +170782173394,213,0 +170782173442,214,0 +170782173491,214,0 +170782173539,214,0 +170782173587,214,0 +170782173637,214,0 +170782173686,214,0 +170782173736,214,0 +170782173784,214,0 +170782173832,214,0 +170782173879,214,0 +170782173929,214,0 +170782173977,215,0 +170782174027,214,0 +170782174075,215,0 +170782174124,215,0 +170782174174,214,0 +170782174221,214,0 +170782174269,214,0 +170782174317,213,0 +170782174365,213,0 +170782174413,213,0 +170782174461,213,0 +170782174509,213,0 +170782174556,213,0 +170782174604,214,0 +170782174652,214,0 +170782174701,214,0 +170782174749,214,0 +170782174797,214,0 +170782174847,214,0 +170782174896,214,0 +170782174944,214,0 +170782174992,215,0 +170782175040,214,0 +170782175088,214,0 +170782175136,214,0 +170782175185,214,0 +170782175233,213,0 +170782175281,213,0 +170782175331,213,0 +170782175380,214,0 +170782175428,214,0 +170782175476,214,0 +170782175524,214,0 +170782175573,214,0 +170782175621,214,0 +170782175671,214,0 +170782175719,214,0 +170782175768,214,0 +170782175818,214,0 +170782175866,214,0 +170782175914,214,0 +170782175963,215,0 +170782176013,215,0 +170782176062,214,0 +170782176112,213,0 +170782176161,213,0 +170782176211,214,0 +170782176259,213,0 +170782176307,213,0 +170782176357,214,0 +170782176404,214,0 +170782176454,214,0 +170782176502,214,0 +170782176550,214,0 +170782176599,214,0 +170782176647,214,0 +170782176695,214,0 +170782176743,214,0 +170782176793,214,0 +170782176840,214,0 +170782176888,215,0 +170782176936,214,0 +170782176986,214,0 +170782177034,214,0 +170782177082,213,0 +170782177131,213,0 +170782177181,214,0 +170782177229,214,0 +170782177277,214,0 +170782177325,214,0 +170782177374,214,0 +170782177422,214,0 +170782177472,214,0 +170782177520,214,0 +170782177569,214,0 +170782177619,214,0 +170782177667,214,0 +170782177715,214,0 +170782177763,214,0 +170782177811,215,0 +170782177860,215,0 +170782177910,214,0 +170782177959,214,0 +170782178007,213,0 +170782178055,213,0 +170782178104,214,0 +170782178154,214,0 +170782178202,214,0 +170782178250,214,0 +170782178299,214,0 +170782178347,214,0 +170782178395,214,0 +170782178445,214,0 +170782178494,214,0 +170782178544,214,0 +170782178592,214,0 +170782178640,215,0 +170782178689,215,0 +170782178739,214,0 +170782178787,214,0 +170782178835,214,0 +170782178884,214,0 +170782178934,213,0 +170782178982,213,0 +170782179030,214,0 +170782179078,214,0 +170782179126,214,0 +170782179173,214,0 +170782179221,214,0 +170782179271,214,0 +170782179319,214,0 +170782179367,214,0 +170782179416,214,0 +170782179464,214,0 +170782179514,215,0 +170782179561,215,0 +170782179611,215,0 +170782179660,214,0 +170782179708,215,0 +170782179756,215,0 +170782179804,214,0 +170782179854,214,0 +170782179903,214,0 +170782179953,214,0 +170782180001,214,0 +170782180050,214,0 +170782180098,214,0 +170782180146,214,0 +170782180194,214,0 +170782180243,214,0 +170782180293,214,0 +170782180342,214,0 +170782180392,214,0 +170782180440,214,0 +170782180488,214,0 +170782180536,214,0 +170782180584,214,0 +170782180633,213,0 +170782180683,214,0 +170782180732,213,0 +170782180780,214,0 +170782180828,214,0 +170782180877,214,0 +170782180925,214,0 +170782180973,214,0 +170782181021,214,0 +170782181069,214,0 +170782181117,213,0 +170782181165,214,0 +170782181213,214,0 +170782181260,214,0 +170782181308,214,0 +170782181356,214,0 +170782181404,214,0 +170782181452,214,0 +170782181502,214,0 +170782181551,214,0 +170782181599,214,0 +170782181648,214,0 +170782181698,213,0 +170782181747,214,0 +170782181795,214,0 +170782181845,214,0 +170782181895,214,0 +170782181944,214,0 +170782181994,214,0 +170782182043,214,0 +170782182091,214,0 +170782182139,214,0 +170782182189,214,0 +170782182238,214,0 +170782182286,214,0 +170782182334,214,0 +170782182384,214,0 +170782182433,214,0 +170782182481,214,0 +170782182529,214,0 +170782182577,214,0 +170782182625,214,0 +170782182675,214,0 +170782182722,214,0 +170782182771,214,0 +170782182818,214,0 +170782182866,214,0 +170782182916,214,0 +170782182966,214,0 +170782183014,214,0 +170782183061,213,0 +170782183109,214,0 +170782183159,214,0 +170782183207,214,0 +170782183255,214,0 +170782183303,214,0 +170782183351,214,0 +170782183398,214,0 +170782183446,214,0 +170782183494,214,0 +170782183542,214,0 +170782183590,214,0 +170782183638,214,0 +170782183686,214,0 +170782183735,214,0 +170782183785,214,0 +170782183833,214,0 +170782183882,214,0 +170782183930,214,0 +170782183978,214,0 +170782184026,214,0 +170782184074,214,0 +170782184123,214,0 +170782184171,214,0 +170782184219,214,0 +170782184268,214,0 +170782184316,214,0 +170782184364,213,0 +170782184414,214,0 +170782184462,214,0 +170782184509,214,0 +170782184557,214,0 +170782184605,214,0 +170782184653,214,0 +170782184703,214,0 +170782184751,213,0 +170782184799,214,0 +170782184848,214,0 +170782184897,214,0 +170782184945,214,0 +170782184993,214,0 +170782185043,214,0 +170782185091,214,0 +170782185140,214,0 +170782185188,214,0 +170782185236,214,0 +170782185284,214,0 +170782185333,214,0 +170782185381,214,0 +170782185431,214,0 +170782185479,214,0 +170782185527,214,0 +170782185575,214,0 +170782185624,214,0 +170782185673,214,0 +170782185723,214,0 +170782185772,213,0 +170782185820,214,0 +170782185868,214,0 +170782185916,214,0 +170782185964,214,0 +170782186012,214,0 +170782186061,214,0 +170782186111,214,0 +170782186159,214,0 +170782186208,214,0 +170782186258,214,0 +170782186307,214,0 +170782186357,214,0 +170782186404,214,0 +170782186454,214,0 +170782186502,214,0 +170782186549,214,0 +170782186597,214,0 +170782186647,214,0 +170782186695,214,0 +170782186743,214,0 +170782186791,214,0 +170782186840,214,0 +170782186888,214,0 +170782186937,214,0 +170782186985,214,0 +170782187033,214,0 +170782187081,214,0 +170782187129,214,0 +170782187177,213,0 +170782187227,214,0 +170782187275,214,0 +170782187323,214,0 +170782187370,214,0 +170782187420,214,0 +170782187468,214,0 +170782187516,214,0 +170782187565,214,0 +170782187615,214,0 +170782187663,214,0 +170782187711,214,0 +170782187758,214,0 +170782187806,214,0 +170782187856,214,0 +170782187905,214,0 +170782187953,214,0 +170782188001,214,0 +170782188050,214,0 +170782188100,214,0 +170782188148,214,0 +170782188197,214,0 +170782188245,213,0 +170782188293,214,0 +170782188341,214,0 +170782188391,214,0 +170782188439,214,0 +170782188488,214,0 +170782188536,214,0 +170782188584,214,0 +170782188633,214,0 +170782188681,214,0 +170782188729,214,0 +170782188777,214,0 +170782188825,214,0 +170782188875,214,0 +170782188922,214,0 +170782188972,214,0 +170782189021,214,0 +170782189071,214,0 +170782189119,214,0 +170782189167,214,0 +170782189216,214,0 +170782189264,214,0 +170782189314,214,0 +170782189362,214,0 +170782189410,214,0 +170782189458,214,0 +170782189506,214,0 +170782189554,214,0 +170782189601,214,0 +170782189651,214,0 +170782189699,214,0 +170782189748,214,0 +170782189796,214,0 +170782189844,214,0 +170782189892,214,0 +170782189940,214,0 +170782189990,214,0 +170782190038,214,0 +170782190086,214,0 +170782190133,213,0 +170782190181,214,0 +170782190229,214,0 +170782190279,214,0 +170782190328,214,0 +170782190376,214,0 +170782190426,213,0 +170782190474,214,0 +170782190521,214,0 +170782190569,214,0 +170782190617,214,0 +170782190665,214,0 +170782190713,214,0 +170782190763,214,0 +170782190811,214,0 +170782190858,213,0 +170782190906,214,0 +170782190956,214,0 +170782191005,214,0 +170782191053,214,0 +170782191101,213,0 +170782191149,214,0 +170782191197,214,0 +170782191246,214,0 +170782191294,214,0 +170782191344,214,0 +170782191392,214,0 +170782191440,214,0 +170782191488,214,0 +170782191536,214,0 +170782191585,214,0 +170782191633,214,0 +170782191683,214,0 +170782191732,214,0 +170782191780,214,0 +170782191829,214,0 +170782191879,214,0 +170782191929,214,0 +170782191976,214,0 +170782192024,213,0 +170782192072,214,0 +170782192122,214,0 +170782192170,214,0 +170782192219,213,0 +170782192267,214,0 +170782192317,214,0 +170782192364,214,0 +170782192412,214,0 +170782192460,214,0 +170782192508,214,0 +170782192558,214,0 +170782192605,214,0 +170782192653,214,0 +170782192703,214,0 +170782192752,214,0 +170782192800,214,0 +170782192848,214,0 +170782192896,213,0 +170782192946,214,0 +170782192994,214,0 +170782193041,214,0 +170782193090,214,0 +170782193137,214,0 +170782193187,213,0 +170782193235,214,0 +170782193282,214,0 +170782193330,214,0 +170782193378,214,0 +170782193426,214,0 +170782193473,214,0 +170782193521,213,0 +170782193571,214,0 +170782193618,214,0 +170782193666,214,0 +170782193714,214,0 +170782193762,213,0 +170782193810,214,0 +170782193858,214,0 +170782193905,214,0 +170782193953,214,0 +170782194003,214,0 +170782194051,213,0 +170782194099,214,0 +170782194146,214,0 +170782194196,214,0 +170782194244,214,0 +170782194292,214,0 +170782194341,214,0 +170782194389,214,0 +170782194437,214,0 +170782194485,213,0 +170782194533,214,0 +170782194581,214,0 +170782194628,214,0 +170782194678,214,0 +170782194726,214,0 +170782194775,214,0 +170782194823,214,0 +170782194871,213,0 +170782194919,214,0 +170782194967,214,0 +170782195014,214,0 +170782195062,214,0 +170782195110,214,0 +170782195158,214,0 +170782195206,214,0 +170782195254,214,0 +170782195303,214,0 +170782195351,213,0 +170782195399,214,0 +170782195447,214,0 +170782195495,214,0 +170782195542,214,0 +170782195590,214,0 +170782195640,214,0 +170782195687,214,0 +170782195737,214,0 +170782195786,214,0 +170782195834,214,0 +170782195884,214,0 +170782195933,214,0 +170782195981,214,0 +170782196031,213,0 +170782196081,214,0 +170782196129,214,0 +170782196176,214,0 +170782196224,213,0 +170782196272,214,0 +170782196320,214,0 +170782196370,214,0 +170782196418,214,0 +170782196465,214,0 +170782196513,214,0 +170782196561,214,0 +170782196609,214,0 +170782196659,214,0 +170782196708,214,0 +170782196756,214,0 +170782196806,214,0 +170782196853,214,0 +170782196901,214,0 +170782196949,213,0 +170782196997,214,0 +170782197045,214,0 +170782197093,214,0 +170782197141,214,0 +170782197189,214,0 +170782197237,214,0 +170782197286,214,0 +170782197336,214,0 +170782197384,214,0 +170782197432,214,0 +170782197480,214,0 +170782197529,214,0 +170782197577,214,0 +170782197625,214,0 +170782197673,214,0 +170782197721,214,0 +170782197770,214,0 +170782197818,214,0 +170782197866,214,0 +170782197914,214,0 +170782197962,213,0 +170782198010,213,0 +170782198058,214,0 +170782198106,214,0 +170782198156,214,0 +170782198205,213,0 +170782198255,214,0 +170782198303,213,0 +170782198350,214,0 +170782198398,214,0 +170782198446,214,0 +170782198494,214,0 +170782198542,214,0 +170782198590,214,0 +170782198638,213,0 +170782198686,214,0 +170782198734,214,0 +170782198783,214,0 +170782198833,214,0 +170782198881,214,0 +170782198929,214,0 +170782198976,214,0 +170782199024,214,0 +170782199072,213,0 +170782199120,213,0 +170782199168,214,0 +170782199216,214,0 +170782199264,214,0 +170782199312,213,0 +170782199362,213,0 +170782199410,214,0 +170782199457,214,0 +170782199507,214,0 +170782199555,214,0 +170782199603,214,0 +170782199651,214,0 +170782199698,213,0 +170782199746,213,0 +170782199794,214,0 +170782199842,214,0 +170782199890,213,0 +170782199938,214,0 +170782199986,214,0 diff --git a/laser_value/0213-21.csv b/laser_value/0213-21.csv new file mode 100644 index 0000000..e90b342 --- /dev/null +++ b/laser_value/0213-21.csv @@ -0,0 +1,7440 @@ +timestamp,laser_value,event +170782200034,213,0 +170782200084,213,0 +170782200133,214,0 +170782200181,214,0 +170782200229,214,0 +170782200277,214,0 +170782200325,214,0 +170782200373,214,0 +170782200421,214,0 +170782200469,214,0 +170782200518,214,0 +170782200566,214,0 +170782200614,214,0 +170782200662,214,0 +170782200710,213,0 +170782200760,214,0 +170782200808,214,0 +170782200856,214,0 +170782200904,214,0 +170782200953,213,0 +170782201001,214,0 +170782201050,214,0 +170782201100,213,0 +170782201148,213,0 +170782201196,214,0 +170782201244,214,0 +170782201293,214,0 +170782201341,213,0 +170782201389,214,0 +170782201437,214,0 +170782201484,214,0 +170782201532,213,0 +170782201582,214,0 +170782201630,214,0 +170782201678,214,0 +170782201727,214,0 +170782201775,214,0 +170782201825,214,0 +170782201873,213,0 +170782201922,213,0 +170782201970,214,0 +170782202019,213,0 +170782202067,214,0 +170782202115,213,0 +170782202165,213,0 +170782202213,214,0 +170782202262,213,0 +170782202310,213,0 +170782202358,214,0 +170782202406,213,0 +170782202454,214,0 +170782202504,214,0 +170782202552,214,0 +170782202601,214,0 +170782202649,214,0 +170782202697,213,0 +170782202747,214,0 +170782202796,214,0 +170782202844,214,0 +170782202892,214,0 +170782202940,214,0 +170782202988,214,0 +170782203037,214,0 +170782203085,214,0 +170782203133,213,0 +170782203181,213,0 +170782203229,213,0 +170782203277,214,0 +170782203325,214,0 +170782203372,214,0 +170782203420,214,0 +170782203470,214,0 +170782203519,214,0 +170782203567,214,0 +170782203615,214,0 +170782203663,214,0 +170782203711,213,0 +170782203759,214,0 +170782203807,214,0 +170782203855,213,0 +170782203903,214,0 +170782203951,214,0 +170782203999,213,0 +170782204047,214,0 +170782204096,214,0 +170782204144,214,0 +170782204192,214,0 +170782204241,214,0 +170782204291,214,0 +170782204340,213,0 +170782204390,214,0 +170782204439,214,0 +170782204489,214,0 +170782204537,214,0 +170782204585,213,0 +170782204633,214,0 +170782204681,213,0 +170782204730,214,0 +170782204778,213,0 +170782204828,214,0 +170782204876,214,0 +170782204924,214,0 +170782204973,214,0 +170782205021,213,0 +170782205071,214,0 +170782205119,214,0 +170782205168,214,0 +170782205218,214,0 +170782205266,214,0 +170782205314,214,0 +170782205361,213,0 +170782205411,214,0 +170782205459,214,0 +170782205508,214,0 +170782205558,214,0 +170782205606,214,0 +170782205654,213,0 +170782205702,214,0 +170782205749,214,0 +170782205797,214,0 +170782205845,214,0 +170782205895,214,0 +170782205943,214,0 +170782205990,214,0 +170782206038,213,0 +170782206088,214,0 +170782206136,213,0 +170782206184,213,0 +170782206233,214,0 +170782206281,214,0 +170782206329,214,0 +170782206378,214,0 +170782206426,214,0 +170782206474,214,0 +170782206522,214,0 +170782206570,214,0 +170782206618,214,0 +170782206666,214,0 +170782206714,214,0 +170782206762,213,0 +170782206810,214,0 +170782206859,214,0 +170782206907,213,0 +170782206955,214,0 +170782207003,213,0 +170782207051,214,0 +170782207099,214,0 +170782207147,214,0 +170782207195,214,0 +170782207244,214,0 +170782207292,214,0 +170782207340,214,0 +170782207388,213,0 +170782207436,214,0 +170782207484,214,0 +170782207533,214,0 +170782207581,214,0 +170782207629,214,0 +170782207678,214,0 +170782207726,214,0 +170782207774,214,0 +170782207822,214,0 +170782207870,214,0 +170782207917,214,0 +170782207965,213,0 +170782208013,214,0 +170782208061,213,0 +170782208110,214,0 +170782208160,213,0 +170782208209,214,0 +170782208259,214,0 +170782208307,213,0 +170782208355,214,0 +170782208403,214,0 +170782208451,214,0 +170782208500,214,0 +170782208548,213,0 +170782208596,214,0 +170782208644,214,0 +170782208692,214,0 +170782208741,214,0 +170782208791,214,0 +170782208840,214,0 +170782208888,214,0 +170782208936,214,0 +170782208984,214,0 +170782209034,214,0 +170782209082,214,0 +170782209130,214,0 +170782209179,214,0 +170782209227,214,0 +170782209275,214,0 +170782209323,213,0 +170782209371,214,0 +170782209420,213,0 +170782209470,214,0 +170782209518,214,0 +170782209567,214,0 +170782209615,214,0 +170782209663,214,0 +170782209713,213,0 +170782209762,214,0 +170782209810,214,0 +170782209860,214,0 +170782209909,214,0 +170782209957,214,0 +170782210005,214,0 +170782210053,214,0 +170782210102,213,0 +170782210150,214,0 +170782210200,213,0 +170782210248,213,0 +170782210297,213,0 +170782210345,214,0 +170782210393,214,0 +170782210441,214,0 +170782210489,214,0 +170782210537,214,0 +170782210586,214,0 +170782210634,214,0 +170782210682,214,0 +170782210730,214,0 +170782210778,214,0 +170782210826,214,0 +170782210876,214,0 +170782210925,214,0 +170782210973,213,0 +170782211021,213,0 +170782211069,214,0 +170782211117,214,0 +170782211165,214,0 +170782211214,213,0 +170782211262,213,0 +170782211310,214,0 +170782211359,214,0 +170782211407,213,0 +170782211455,213,0 +170782211503,214,0 +170782211551,213,0 +170782211599,214,0 +170782211647,214,0 +170782211695,214,0 +170782211743,214,0 +170782211791,213,0 +170782211840,214,0 +170782211888,214,0 +170782211936,213,0 +170782211984,213,0 +170782212032,214,0 +170782212080,214,0 +170782212128,213,0 +170782212176,214,0 +170782212224,214,0 +170782212272,213,0 +170782212321,214,0 +170782212369,214,0 +170782212418,213,0 +170782212466,214,0 +170782212514,214,0 +170782212564,214,0 +170782212612,214,0 +170782212661,214,0 +170782212709,213,0 +170782212757,213,0 +170782212807,214,0 +170782212856,213,0 +170782212904,213,0 +170782212952,214,0 +170782213001,213,0 +170782213051,214,0 +170782213101,214,0 +170782213148,213,0 +170782213198,213,0 +170782213248,213,0 +170782213296,214,0 +170782213343,213,0 +170782213391,213,0 +170782213441,214,0 +170782213489,214,0 +170782213538,213,0 +170782213588,214,0 +170782213636,214,0 +170782213685,213,0 +170782213735,214,0 +170782213783,214,0 +170782213832,214,0 +170782213880,214,0 +170782213928,214,0 +170782213976,213,0 +170782214024,214,0 +170782214072,214,0 +170782214121,214,0 +170782214169,214,0 +170782214217,214,0 +170782214265,214,0 +170782214315,214,0 +170782214363,214,0 +170782214411,213,0 +170782214459,213,0 +170782214507,214,0 +170782214556,213,0 +170782214604,213,0 +170782214654,214,0 +170782214703,214,0 +170782214753,214,0 +170782214801,213,0 +170782214849,214,0 +170782214897,214,0 +170782214945,213,0 +170782214993,214,0 +170782215041,214,0 +170782215089,214,0 +170782215136,213,0 +170782215184,214,0 +170782215232,213,0 +170782215282,214,0 +170782215330,213,0 +170782215379,214,0 +170782215427,213,0 +170782215475,213,0 +170782215523,214,0 +170782215571,214,0 +170782215619,213,0 +170782215669,213,0 +170782215718,214,0 +170782215766,214,0 +170782215816,214,0 +170782215864,214,0 +170782215913,214,0 +170782215961,214,0 +170782216011,213,0 +170782216059,214,0 +170782216107,213,0 +170782216156,214,0 +170782216204,213,0 +170782216254,214,0 +170782216302,213,0 +170782216349,213,0 +170782216399,214,0 +170782216447,213,0 +170782216495,214,0 +170782216544,213,0 +170782216592,213,0 +170782216641,214,0 +170782216690,214,0 +170782216738,213,0 +170782216787,214,0 +170782216835,214,0 +170782216883,214,0 +170782216931,214,0 +170782216980,214,0 +170782217030,214,0 +170782217079,213,0 +170782217129,213,0 +170782217177,214,0 +170782217225,214,0 +170782217274,214,0 +170782217322,214,0 +170782217372,214,0 +170782217421,214,0 +170782217469,214,0 +170782217517,214,0 +170782217567,214,0 +170782217616,214,0 +170782217664,214,0 +170782217712,213,0 +170782217762,214,0 +170782217811,214,0 +170782217861,214,0 +170782217910,214,0 +170782217958,214,0 +170782218006,214,0 +170782218056,213,0 +170782218103,213,0 +170782218151,214,0 +170782218199,214,0 +170782218247,213,0 +170782218297,214,0 +170782218345,213,0 +170782218393,214,0 +170782218441,214,0 +170782218489,213,0 +170782218537,214,0 +170782218585,214,0 +170782218634,214,0 +170782218682,213,0 +170782218731,214,0 +170782218779,214,0 +170782218827,214,0 +170782218875,214,0 +170782218925,214,0 +170782218974,214,0 +170782219022,213,0 +170782219070,213,0 +170782219118,213,0 +170782219166,213,0 +170782219216,213,0 +170782219264,213,0 +170782219312,213,0 +170782219361,214,0 +170782219411,213,0 +170782219460,214,0 +170782219508,214,0 +170782219558,214,0 +170782219607,213,0 +170782219656,214,0 +170782219704,213,0 +170782219752,213,0 +170782219802,213,0 +170782219850,213,0 +170782219898,214,0 +170782219946,214,0 +170782219993,213,0 +170782220041,213,0 +170782220091,213,0 +170782220139,214,0 +170782220188,214,0 +170782220236,214,0 +170782220286,214,0 +170782220335,213,0 +170782220383,213,0 +170782220431,213,0 +170782220479,213,0 +170782220527,213,0 +170782220577,214,0 +170782220626,214,0 +170782220676,213,0 +170782220724,213,0 +170782220773,213,0 +170782220821,214,0 +170782220871,213,0 +170782220919,213,0 +170782220967,214,0 +170782221016,214,0 +170782221064,213,0 +170782221114,214,0 +170782221161,214,0 +170782221211,214,0 +170782221259,213,0 +170782221308,214,0 +170782221356,213,0 +170782221404,214,0 +170782221451,214,0 +170782221500,214,0 +170782221547,214,0 +170782221595,214,0 +170782221643,214,0 +170782221691,214,0 +170782221741,214,0 +170782221789,214,0 +170782221838,214,0 +170782221888,214,0 +170782221937,214,0 +170782221985,214,0 +170782222035,213,0 +170782222084,213,0 +170782222132,214,0 +170782222180,213,0 +170782222230,213,0 +170782222277,214,0 +170782222327,213,0 +170782222375,214,0 +170782222423,214,0 +170782222471,214,0 +170782222519,214,0 +170782222567,214,0 +170782222615,214,0 +170782222663,214,0 +170782222711,214,0 +170782222760,214,0 +170782222810,214,0 +170782222858,213,0 +170782222905,214,0 +170782222955,214,0 +170782223003,214,0 +170782223052,213,0 +170782223100,214,0 +170782223148,214,0 +170782223198,214,0 +170782223247,214,0 +170782223295,213,0 +170782223345,214,0 +170782223393,214,0 +170782223440,214,0 +170782223490,214,0 +170782223538,214,0 +170782223586,214,0 +170782223635,214,0 +170782223683,214,0 +170782223733,214,0 +170782223781,214,0 +170782223830,214,0 +170782223878,214,0 +170782223926,214,0 +170782223974,213,0 +170782224023,213,0 +170782224071,214,0 +170782224119,214,0 +170782224168,213,0 +170782224216,214,0 +170782224264,214,0 +170782224312,214,0 +170782224360,214,0 +170782224408,214,0 +170782224456,214,0 +170782224505,214,0 +170782224553,214,0 +170782224601,214,0 +170782224649,214,0 +170782224698,214,0 +170782224746,213,0 +170782224794,214,0 +170782224842,214,0 +170782224890,214,0 +170782224938,214,0 +170782224985,214,0 +170782225033,214,0 +170782225081,214,0 +170782225129,214,0 +170782225177,214,0 +170782225225,214,0 +170782225273,213,0 +170782225321,214,0 +170782225369,214,0 +170782225417,214,0 +170782225466,214,0 +170782225514,214,0 +170782225564,214,0 +170782225612,214,0 +170782225661,214,0 +170782225709,214,0 +170782225759,214,0 +170782225808,214,0 +170782225857,214,0 +170782225905,213,0 +170782225953,214,0 +170782226001,214,0 +170782226049,214,0 +170782226097,214,0 +170782226146,214,0 +170782226196,214,0 +170782226244,214,0 +170782226293,214,0 +170782226341,214,0 +170782226391,214,0 +170782226438,214,0 +170782226486,214,0 +170782226534,214,0 +170782226582,214,0 +170782226630,213,0 +170782226678,214,0 +170782226725,213,0 +170782226773,214,0 +170782226823,214,0 +170782226872,213,0 +170782226920,214,0 +170782226968,214,0 +170782227016,214,0 +170782227064,214,0 +170782227112,214,0 +170782227160,213,0 +170782227208,214,0 +170782227256,214,0 +170782227303,214,0 +170782227351,214,0 +170782227401,214,0 +170782227449,214,0 +170782227496,214,0 +170782227544,214,0 +170782227592,214,0 +170782227642,214,0 +170782227689,214,0 +170782227737,214,0 +170782227785,213,0 +170782227835,214,0 +170782227883,214,0 +170782227932,214,0 +170782227980,214,0 +170782228028,214,0 +170782228076,214,0 +170782228125,213,0 +170782228173,214,0 +170782228221,214,0 +170782228271,214,0 +170782228319,214,0 +170782228366,213,0 +170782228416,214,0 +170782228464,214,0 +170782228512,213,0 +170782228560,214,0 +170782228608,214,0 +170782228655,213,0 +170782228703,213,0 +170782228753,214,0 +170782228801,213,0 +170782228850,214,0 +170782228898,213,0 +170782228946,213,0 +170782228994,214,0 +170782229042,213,0 +170782229090,214,0 +170782229139,214,0 +170782229187,214,0 +170782229235,213,0 +170782229283,214,0 +170782229331,214,0 +170782229381,214,0 +170782229429,213,0 +170782229478,214,0 +170782229526,214,0 +170782229574,214,0 +170782229622,214,0 +170782229670,213,0 +170782229718,214,0 +170782229767,214,0 +170782229815,214,0 +170782229863,214,0 +170782229911,214,0 +170782229960,214,0 +170782230010,214,0 +170782230058,214,0 +170782230106,214,0 +170782230155,214,0 +170782230205,214,0 +170782230253,214,0 +170782230302,214,0 +170782230350,214,0 +170782230398,213,0 +170782230446,214,0 +170782230494,214,0 +170782230543,214,0 +170782230591,214,0 +170782230639,214,0 +170782230689,214,0 +170782230738,214,0 +170782230788,214,0 +170782230837,214,0 +170782230885,214,0 +170782230933,213,0 +170782230981,214,0 +170782231028,214,0 +170782231076,214,0 +170782231124,214,0 +170782231172,213,0 +170782231220,213,0 +170782231268,214,0 +170782231316,213,0 +170782231364,214,0 +170782231413,214,0 +170782231461,214,0 +170782231509,213,0 +170782231557,214,0 +170782231605,214,0 +170782231653,214,0 +170782231701,213,0 +170782231750,213,0 +170782231798,214,0 +170782231846,214,0 +170782231894,214,0 +170782231942,214,0 +170782231991,214,0 +170782232039,214,0 +170782232089,214,0 +170782232137,214,0 +170782232185,214,0 +170782232233,214,0 +170782232280,213,0 +170782232328,214,0 +170782232378,214,0 +170782232426,214,0 +170782232474,214,0 +170782232523,214,0 +170782232573,214,0 +170782232622,214,0 +170782232670,214,0 +170782232719,214,0 +170782232767,214,0 +170782232817,214,0 +170782232866,214,0 +170782232914,214,0 +170782232962,214,0 +170782233010,214,0 +170782233059,214,0 +170782233107,214,0 +170782233155,214,0 +170782233203,214,0 +170782233252,214,0 +170782233302,214,0 +170782233350,214,0 +170782233399,213,0 +170782233447,213,0 +170782233495,213,0 +170782233543,214,0 +170782233591,213,0 +170782233640,214,0 +170782233690,214,0 +170782233737,214,0 +170782233785,214,0 +170782233835,214,0 +170782233883,214,0 +170782233932,214,0 +170782233980,214,0 +170782234028,214,0 +170782234076,214,0 +170782234125,214,0 +170782234173,214,0 +170782234221,214,0 +170782234270,214,0 +170782234318,214,0 +170782234368,214,0 +170782234417,214,0 +170782234465,214,0 +170782234513,214,0 +170782234563,214,0 +170782234611,214,0 +170782234659,214,0 +170782234707,214,0 +170782234755,214,0 +170782234803,214,0 +170782234850,214,0 +170782234898,214,0 +170782234946,214,0 +170782234994,214,0 +170782235044,214,0 +170782235091,214,0 +170782235139,214,0 +170782235187,214,0 +170782235237,213,0 +170782235285,214,0 +170782235333,214,0 +170782235382,214,0 +170782235430,214,0 +170782235480,214,0 +170782235527,214,0 +170782235575,214,0 +170782235625,213,0 +170782235674,214,0 +170782235724,213,0 +170782235772,213,0 +170782235820,214,0 +170782235868,213,0 +170782235917,214,0 +170782235967,213,0 +170782236016,214,0 +170782236066,214,0 +170782236114,214,0 +170782236162,214,0 +170782236209,214,0 +170782236257,213,0 +170782236305,214,0 +170782236353,214,0 +170782236403,214,0 +170782236450,214,0 +170782236498,214,0 +170782236548,214,0 +170782236597,214,0 +170782236647,214,0 +170782236695,214,0 +170782236743,214,0 +170782236793,214,0 +170782236842,214,0 +170782236890,214,0 +170782236938,214,0 +170782236986,213,0 +170782237034,214,0 +170782237082,214,0 +170782237130,214,0 +170782237177,214,0 +170782237225,214,0 +170782237273,214,0 +170782237321,214,0 +170782237369,214,0 +170782237417,214,0 +170782237465,214,0 +170782237512,214,0 +170782237560,214,0 +170782237608,214,0 +170782237656,214,0 +170782237704,214,0 +170782237752,214,0 +170782237800,214,0 +170782237847,214,0 +170782237895,214,0 +170782237943,214,0 +170782237991,214,0 +170782238039,214,0 +170782238088,214,0 +170782238136,213,0 +170782238186,213,0 +170782238234,214,0 +170782238283,214,0 +170782238331,214,0 +170782238379,214,0 +170782238427,214,0 +170782238477,214,0 +170782238525,214,0 +170782238573,214,0 +170782238621,214,0 +170782238670,214,0 +170782238719,213,0 +170782238767,213,0 +170782238815,214,0 +170782238863,214,0 +170782238910,214,0 +170782238958,213,0 +170782239006,214,0 +170782239054,214,0 +170782239101,213,0 +170782239149,214,0 +170782239197,214,0 +170782239245,214,0 +170782239292,214,0 +170782239340,214,0 +170782239388,213,0 +170782239436,214,0 +170782239484,214,0 +170782239532,214,0 +170782239581,214,0 +170782239630,214,0 +170782239680,214,0 +170782239728,214,0 +170782239775,213,0 +170782239823,214,0 +170782239871,213,0 +170782239919,214,0 +170782239967,213,0 +170782240015,213,0 +170782240063,214,0 +170782240112,214,0 +170782240160,214,0 +170782240208,214,0 +170782240257,214,0 +170782240307,213,0 +170782240355,214,0 +170782240404,214,0 +170782240452,214,0 +170782240500,214,0 +170782240548,214,0 +170782240596,214,0 +170782240646,214,0 +170782240693,214,0 +170782240743,214,0 +170782240791,214,0 +170782240841,213,0 +170782240888,214,0 +170782240936,214,0 +170782240986,213,0 +170782241034,214,0 +170782241084,214,0 +170782241133,214,0 +170782241181,214,0 +170782241229,213,0 +170782241278,214,0 +170782241328,214,0 +170782241376,214,0 +170782241425,214,0 +170782241473,214,0 +170782241521,214,0 +170782241569,214,0 +170782241617,214,0 +170782241667,214,0 +170782241716,213,0 +170782241764,214,0 +170782241812,214,0 +170782241860,214,0 +170782241909,214,0 +170782241957,214,0 +170782242005,213,0 +170782242052,214,0 +170782242102,213,0 +170782242150,213,0 +170782242198,214,0 +170782242246,213,0 +170782242293,214,0 +170782242341,214,0 +170782242389,214,0 +170782242439,213,0 +170782242487,214,0 +170782242536,214,0 +170782242586,214,0 +170782242635,214,0 +170782242685,214,0 +170782242733,214,0 +170782242780,214,0 +170782242830,214,0 +170782242879,214,0 +170782242927,214,0 +170782242975,213,0 +170782243023,214,0 +170782243071,213,0 +170782243119,213,0 +170782243166,214,0 +170782243214,214,0 +170782243262,213,0 +170782243310,214,0 +170782243358,214,0 +170782243406,214,0 +170782243453,214,0 +170782243501,214,0 +170782243549,214,0 +170782243597,214,0 +170782243645,214,0 +170782243694,213,0 +170782243742,214,0 +170782243792,214,0 +170782243840,214,0 +170782243888,214,0 +170782243937,214,0 +170782243985,213,0 +170782244033,214,0 +170782244083,214,0 +170782244132,213,0 +170782244180,214,0 +170782244228,213,0 +170782244278,214,0 +170782244326,214,0 +170782244375,214,0 +170782244425,214,0 +170782244473,214,0 +170782244522,214,0 +170782244570,214,0 +170782244619,214,0 +170782244667,214,0 +170782244715,214,0 +170782244763,214,0 +170782244811,213,0 +170782244859,214,0 +170782244907,214,0 +170782244954,214,0 +170782245002,213,0 +170782245052,214,0 +170782245099,214,0 +170782245147,214,0 +170782245197,214,0 +170782245244,214,0 +170782245294,214,0 +170782245342,213,0 +170782245391,214,0 +170782245439,214,0 +170782245489,213,0 +170782245537,214,0 +170782245586,213,0 +170782245636,213,0 +170782245684,214,0 +170782245733,214,0 +170782245783,213,0 +170782245831,214,0 +170782245880,214,0 +170782245928,214,0 +170782245977,214,0 +170782246027,214,0 +170782246075,214,0 +170782246124,214,0 +170782246172,213,0 +170782246222,214,0 +170782246270,214,0 +170782246318,214,0 +170782246365,214,0 +170782246413,214,0 +170782246463,213,0 +170782246511,214,0 +170782246558,214,0 +170782246606,214,0 +170782246654,214,0 +170782246702,214,0 +170782246750,214,0 +170782246799,214,0 +170782246847,214,0 +170782246895,214,0 +170782246943,214,0 +170782246991,213,0 +170782247041,214,0 +170782247089,214,0 +170782247136,213,0 +170782247184,213,0 +170782247234,214,0 +170782247282,214,0 +170782247330,214,0 +170782247378,214,0 +170782247425,214,0 +170782247475,214,0 +170782247524,213,0 +170782247572,214,0 +170782247622,214,0 +170782247670,214,0 +170782247719,214,0 +170782247768,213,0 +170782247816,213,0 +170782247864,214,0 +170782247912,214,0 +170782247961,213,0 +170782248009,214,0 +170782248057,213,0 +170782248105,214,0 +170782248153,214,0 +170782248203,214,0 +170782248252,214,0 +170782248302,214,0 +170782248350,214,0 +170782248399,214,0 +170782248448,214,0 +170782248496,214,0 +170782248544,214,0 +170782248592,214,0 +170782248640,214,0 +170782248687,213,0 +170782248737,214,0 +170782248785,213,0 +170782248832,214,0 +170782248882,213,0 +170782248930,214,0 +170782248978,213,0 +170782249025,214,0 +170782249073,213,0 +170782249121,214,0 +170782249169,213,0 +170782249217,213,0 +170782249265,213,0 +170782249313,214,0 +170782249360,213,0 +170782249408,213,0 +170782249456,214,0 +170782249504,214,0 +170782249552,214,0 +170782249600,214,0 +170782249648,214,0 +170782249696,214,0 +170782249745,214,0 +170782249793,214,0 +170782249841,214,0 +170782249889,214,0 +170782249937,214,0 +170782249985,213,0 +170782250033,214,0 +170782250082,213,0 +170782250132,214,0 +170782250181,214,0 +170782250229,213,0 +170782250277,214,0 +170782250325,213,0 +170782250373,214,0 +170782250421,214,0 +170782250468,214,0 +170782250516,214,0 +170782250564,214,0 +170782250612,213,0 +170782250659,214,0 +170782250707,213,0 +170782250755,214,0 +170782250803,214,0 +170782250851,213,0 +170782250899,214,0 +170782250946,213,0 +170782250994,214,0 +170782251044,214,0 +170782251092,214,0 +170782251140,214,0 +170782251189,213,0 +170782251237,213,0 +170782251285,213,0 +170782251333,213,0 +170782251381,214,0 +170782251430,213,0 +170782251480,214,0 +170782251528,214,0 +170782251576,214,0 +170782251625,214,0 +170782251673,214,0 +170782251721,214,0 +170782251770,213,0 +170782251820,214,0 +170782251868,213,0 +170782251916,213,0 +170782251965,213,0 +170782252013,214,0 +170782252063,214,0 +170782252110,213,0 +170782252160,214,0 +170782252208,214,0 +170782252256,214,0 +170782252303,213,0 +170782252351,214,0 +170782252399,213,0 +170782252449,213,0 +170782252497,213,0 +170782252546,213,0 +170782252594,213,0 +170782252644,213,0 +170782252692,214,0 +170782252740,214,0 +170782252787,214,0 +170782252835,214,0 +170782252883,213,0 +170782252931,214,0 +170782252979,214,0 +170782253028,214,0 +170782253076,214,0 +170782253124,214,0 +170782253172,214,0 +170782253220,214,0 +170782253269,214,0 +170782253317,213,0 +170782253367,213,0 +170782253415,214,0 +170782253463,214,0 +170782253511,214,0 +170782253558,214,0 +170782253606,214,0 +170782253656,213,0 +170782253704,214,0 +170782253752,213,0 +170782253801,214,0 +170782253849,214,0 +170782253897,213,0 +170782253945,213,0 +170782253994,214,0 +170782254042,214,0 +170782254092,213,0 +170782254141,213,0 +170782254190,214,0 +170782254240,213,0 +170782254288,213,0 +170782254336,213,0 +170782254384,213,0 +170782254432,214,0 +170782254481,213,0 +170782254529,213,0 +170782254577,213,0 +170782254625,213,0 +170782254673,214,0 +170782254721,214,0 +170782254770,214,0 +170782254818,214,0 +170782254868,213,0 +170782254917,213,0 +170782254967,214,0 +170782255015,214,0 +170782255063,213,0 +170782255112,213,0 +170782255160,213,0 +170782255210,214,0 +170782255258,213,0 +170782255306,213,0 +170782255355,214,0 +170782255403,214,0 +170782255452,213,0 +170782255500,214,0 +170782255550,214,0 +170782255599,214,0 +170782255647,213,0 +170782255695,214,0 +170782255745,214,0 +170782255793,213,0 +170782255841,214,0 +170782255889,214,0 +170782255938,214,0 +170782255986,213,0 +170782256034,213,0 +170782256084,213,0 +170782256132,213,0 +170782256180,214,0 +170782256229,214,0 +170782256277,214,0 +170782256325,213,0 +170782256375,213,0 +170782256424,213,0 +170782256473,214,0 +170782256521,214,0 +170782256571,213,0 +170782256620,214,0 +170782256668,214,0 +170782256718,214,0 +170782256766,214,0 +170782256815,213,0 +170782256863,214,0 +170782256913,214,0 +170782256961,214,0 +170782257010,214,0 +170782257060,213,0 +170782257108,214,0 +170782257156,214,0 +170782257204,213,0 +170782257251,213,0 +170782257299,214,0 +170782257347,214,0 +170782257397,213,0 +170782257445,214,0 +170782257494,213,0 +170782257542,213,0 +170782257590,214,0 +170782257638,213,0 +170782257686,214,0 +170782257734,214,0 +170782257783,214,0 +170782257831,213,0 +170782257879,214,0 +170782257927,213,0 +170782257977,214,0 +170782258026,214,0 +170782258074,214,0 +170782258122,214,0 +170782258170,214,0 +170782258218,214,0 +170782258266,213,0 +170782258314,213,0 +170782258362,214,0 +170782258411,213,0 +170782258459,213,0 +170782258509,214,0 +170782258558,214,0 +170782258608,214,0 +170782258657,214,0 +170782258707,214,0 +170782258755,214,0 +170782258804,213,0 +170782258854,214,0 +170782258902,213,0 +170782258950,214,0 +170782258998,214,0 +170782259045,214,0 +170782259095,214,0 +170782259143,214,0 +170782259191,213,0 +170782259238,213,0 +170782259286,213,0 +170782259334,214,0 +170782259382,214,0 +170782259430,214,0 +170782259479,214,0 +170782259529,213,0 +170782259578,214,0 +170782259626,214,0 +170782259674,214,0 +170782259721,214,0 +170782259769,214,0 +170782259817,214,0 +170782259865,214,0 +170782259913,213,0 +170782259961,214,0 +170782260010,214,0 +170782260058,213,0 +170782260106,214,0 +170782260154,214,0 +170782260201,213,0 +170782260249,214,0 +170782260299,214,0 +170782260346,214,0 +170782260394,214,0 +170782260442,214,0 +170782260490,214,0 +170782260539,213,0 +170782260587,213,0 +170782260635,214,0 +170782260683,213,0 +170782260731,214,0 +170782260779,213,0 +170782260828,214,0 +170782260876,214,0 +170782260926,214,0 +170782260975,214,0 +170782261023,213,0 +170782261073,214,0 +170782261121,214,0 +170782261170,214,0 +170782261218,213,0 +170782261267,214,0 +170782261315,214,0 +170782261365,214,0 +170782261414,214,0 +170782261462,214,0 +170782261510,214,0 +170782261558,214,0 +170782261608,214,0 +170782261657,214,0 +170782261705,214,0 +170782261753,214,0 +170782261801,214,0 +170782261849,214,0 +170782261896,214,0 +170782261946,214,0 +170782261994,214,0 +170782262042,214,0 +170782262091,214,0 +170782262139,214,0 +170782262187,213,0 +170782262235,213,0 +170782262283,214,0 +170782262332,214,0 +170782262380,214,0 +170782262428,214,0 +170782262477,214,0 +170782262525,213,0 +170782262573,214,0 +170782262623,214,0 +170782262671,214,0 +170782262718,214,0 +170782262766,214,0 +170782262814,214,0 +170782262862,214,0 +170782262910,214,0 +170782262958,214,0 +170782263005,214,0 +170782263053,214,0 +170782263101,214,0 +170782263149,214,0 +170782263197,214,0 +170782263246,214,0 +170782263294,214,0 +170782263344,214,0 +170782263392,214,0 +170782263440,214,0 +170782263487,214,0 +170782263537,214,0 +170782263586,214,0 +170782263634,214,0 +170782263682,214,0 +170782263732,214,0 +170782263780,214,0 +170782263827,214,0 +170782263875,214,0 +170782263923,214,0 +170782263971,214,0 +170782264019,214,0 +170782264068,214,0 +170782264116,214,0 +170782264164,214,0 +170782264214,214,0 +170782264262,214,0 +170782264311,214,0 +170782264359,214,0 +170782264408,214,0 +170782264456,213,0 +170782264506,214,0 +170782264555,214,0 +170782264605,214,0 +170782264653,214,0 +170782264701,214,0 +170782264748,214,0 +170782264798,214,0 +170782264848,214,0 +170782264895,214,0 +170782264943,214,0 +170782264993,214,0 +170782265041,214,0 +170782265090,214,0 +170782265140,214,0 +170782265189,214,0 +170782265237,214,0 +170782265285,214,0 +170782265333,214,0 +170782265383,214,0 +170782265432,214,0 +170782265480,214,0 +170782265528,214,0 +170782265577,214,0 +170782265625,214,0 +170782265673,214,0 +170782265722,214,0 +170782265770,214,0 +170782265820,214,0 +170782265867,214,0 +170782265915,214,0 +170782265963,214,0 +170782266011,214,0 +170782266059,214,0 +170782266106,214,0 +170782266154,214,0 +170782266204,214,0 +170782266253,214,0 +170782266301,214,0 +170782266349,214,0 +170782266397,214,0 +170782266445,214,0 +170782266492,214,0 +170782266540,214,0 +170782266590,214,0 +170782266638,214,0 +170782266685,214,0 +170782266733,214,0 +170782266781,214,0 +170782266829,214,0 +170782266877,214,0 +170782266926,214,0 +170782266976,214,0 +170782267023,214,0 +170782267073,214,0 +170782267121,214,0 +170782267168,214,0 +170782267216,214,0 +170782267264,214,0 +170782267312,214,0 +170782267360,214,0 +170782267408,214,0 +170782267456,214,0 +170782267504,214,0 +170782267551,214,0 +170782267599,214,0 +170782267647,214,0 +170782267695,214,0 +170782267743,214,0 +170782267791,214,0 +170782267840,214,0 +170782267888,214,0 +170782267936,214,0 +170782267983,214,0 +170782268031,214,0 +170782268079,214,0 +170782268127,214,0 +170782268175,214,0 +170782268222,214,0 +170782268270,214,0 +170782268318,214,0 +170782268366,213,0 +170782268414,214,0 +170782268462,214,0 +170782268510,214,0 +170782268557,213,0 +170782268605,214,0 +170782268653,214,0 +170782268701,214,0 +170782268749,214,0 +170782268798,214,0 +170782268846,214,0 +170782268894,214,0 +170782268942,214,0 +170782268991,214,0 +170782269041,214,0 +170782269089,214,0 +170782269137,214,0 +170782269185,214,0 +170782269234,214,0 +170782269283,214,0 +170782269331,214,0 +170782269379,214,0 +170782269429,214,0 +170782269478,214,0 +170782269528,214,0 +170782269577,214,0 +170782269627,214,0 +170782269675,214,0 +170782269723,214,0 +170782269772,214,0 +170782269822,214,0 +170782269869,213,0 +170782269917,214,0 +170782269967,214,0 +170782270016,214,0 +170782270064,214,0 +170782270112,214,0 +170782270160,214,0 +170782270207,214,0 +170782270255,214,0 +170782270303,214,0 +170782270351,214,0 +170782270399,214,0 +170782270447,214,0 +170782270494,214,0 +170782270542,214,0 +170782270590,214,0 +170782270638,214,0 +170782270686,214,0 +170782270733,214,0 +170782270781,214,0 +170782270829,214,0 +170782270877,214,0 +170782270926,214,0 +170782270974,214,0 +170782271024,214,0 +170782271072,214,0 +170782271120,214,0 +170782271168,214,0 +170782271217,214,0 +170782271265,214,0 +170782271315,214,0 +170782271363,214,0 +170782271410,214,0 +170782271458,214,0 +170782271508,214,0 +170782271556,214,0 +170782271605,214,0 +170782271653,214,0 +170782271701,214,0 +170782271749,214,0 +170782271798,214,0 +170782271846,214,0 +170782271894,214,0 +170782271942,214,0 +170782271991,214,0 +170782272039,214,0 +170782272089,214,0 +170782272138,214,0 +170782272188,214,0 +170782272236,214,0 +170782272283,214,0 +170782272333,214,0 +170782272381,214,0 +170782272430,214,0 +170782272478,214,0 +170782272526,214,0 +170782272574,214,0 +170782272621,214,0 +170782272669,214,0 +170782272717,214,0 +170782272765,214,0 +170782272813,214,0 +170782272861,214,0 +170782272908,214,0 +170782272956,214,0 +170782273006,214,0 +170782273053,214,0 +170782273101,214,0 +170782273149,214,0 +170782273197,214,0 +170782273245,214,0 +170782273293,214,0 +170782273340,214,0 +170782273388,214,0 +170782273436,214,0 +170782273484,214,0 +170782273533,214,0 +170782273581,214,0 +170782273629,214,0 +170782273677,214,0 +170782273724,214,0 +170782273772,214,0 +170782273820,214,0 +170782273868,214,0 +170782273916,214,0 +170782273964,214,0 +170782274011,214,0 +170782274059,214,0 +170782274107,214,0 +170782274155,214,0 +170782274204,214,0 +170782274254,214,0 +170782274302,214,0 +170782274350,214,0 +170782274399,214,0 +170782274447,214,0 +170782274495,214,0 +170782274542,214,0 +170782274592,214,0 +170782274640,214,0 +170782274688,214,0 +170782274735,214,0 +170782274783,214,0 +170782274833,214,0 +170782274881,214,0 +170782274930,214,0 +170782274978,214,0 +170782275026,214,0 +170782275074,214,0 +170782275121,214,0 +170782275169,214,0 +170782275217,214,0 +170782275265,214,0 +170782275313,214,0 +170782275361,214,0 +170782275409,214,0 +170782275457,214,0 +170782275504,214,0 +170782275552,214,0 +170782275602,214,0 +170782275650,214,0 +170782275698,214,0 +170782275747,214,0 +170782275797,214,0 +170782275844,214,0 +170782275892,214,0 +170782275940,214,0 +170782275988,214,0 +170782276036,214,0 +170782276085,214,0 +170782276133,214,0 +170782276182,214,0 +170782276230,214,0 +170782276278,214,0 +170782276326,214,0 +170782276374,214,0 +170782276421,214,0 +170782276469,214,0 +170782276517,214,0 +170782276566,214,0 +170782276614,214,0 +170782276664,214,0 +170782276713,214,0 +170782276761,214,0 +170782276809,214,0 +170782276857,214,0 +170782276904,214,0 +170782276952,214,0 +170782277000,214,0 +170782277048,214,0 +170782277096,214,0 +170782277143,214,0 +170782277191,214,0 +170782277239,214,0 +170782277287,214,0 +170782277335,214,0 +170782277383,214,0 +170782277431,214,0 +170782277478,214,0 +170782277526,214,0 +170782277574,214,0 +170782277622,214,0 +170782277670,214,0 +170782277717,214,0 +170782277765,214,0 +170782277813,214,0 +170782277861,214,0 +170782277909,214,0 +170782277957,214,0 +170782278006,214,0 +170782278056,214,0 +170782278105,214,0 +170782278155,214,0 +170782278203,214,0 +170782278251,214,0 +170782278300,214,0 +170782278350,214,0 +170782278398,214,0 +170782278445,214,0 +170782278493,214,0 +170782278541,214,0 +170782278589,214,0 +170782278637,213,0 +170782278687,214,0 +170782278735,214,0 +170782278782,214,0 +170782278830,214,0 +170782278878,214,0 +170782278928,214,0 +170782278976,214,0 +170782279025,214,0 +170782279073,214,0 +170782279123,214,0 +170782279172,214,0 +170782279220,214,0 +170782279268,214,0 +170782279318,214,0 +170782279366,214,0 +170782279413,214,0 +170782279463,214,0 +170782279511,214,0 +170782279559,214,0 +170782279608,214,0 +170782279656,214,0 +170782279706,214,0 +170782279754,214,0 +170782279803,214,0 +170782279851,214,0 +170782279899,214,0 +170782279947,214,0 +170782279995,214,0 +170782280043,214,0 +170782280092,214,0 +170782280140,214,0 +170782280188,214,0 +170782280236,214,0 +170782280286,214,0 +170782280335,214,0 +170782280385,214,0 +170782280434,214,0 +170782280484,214,0 +170782280532,214,0 +170782280581,214,0 +170782280631,214,0 +170782280680,214,0 +170782280728,214,0 +170782280776,214,0 +170782280826,214,0 +170782280873,214,0 +170782280923,214,0 +170782280971,214,0 +170782281020,214,0 +170782281068,214,0 +170782281118,214,0 +170782281166,214,0 +170782281215,214,0 +170782281263,214,0 +170782281311,214,0 +170782281361,214,0 +170782281410,214,0 +170782281460,214,0 +170782281509,214,0 +170782281559,214,0 +170782281607,214,0 +170782281656,214,0 +170782281706,214,0 +170782281754,214,0 +170782281803,214,0 +170782281851,214,0 +170782281901,214,0 +170782281949,213,0 +170782281997,214,0 +170782282046,214,0 +170782282094,214,0 +170782282142,214,0 +170782282190,214,0 +170782282238,214,0 +170782282286,214,0 +170782282335,214,0 +170782282383,214,0 +170782282433,214,0 +170782282482,214,0 +170782282532,214,0 +170782282581,214,0 +170782282631,214,0 +170782282680,214,0 +170782282728,214,0 +170782282776,214,0 +170782282825,214,0 +170782282874,214,0 +170782282921,214,0 +170782282971,214,0 +170782283020,214,0 +170782283068,214,0 +170782283116,214,0 +170782283166,214,0 +170782283214,214,0 +170782283262,214,0 +170782283311,214,0 +170782283359,214,0 +170782283408,214,0 +170782283458,214,0 +170782283506,214,0 +170782283554,214,0 +170782283602,214,0 +170782283651,214,0 +170782283701,214,0 +170782283750,214,0 +170782283798,214,0 +170782283846,214,0 +170782283894,214,0 +170782283942,214,0 +170782283990,214,0 +170782284038,214,0 +170782284087,214,0 +170782284135,214,0 +170782284183,214,0 +170782284231,214,0 +170782284280,214,0 +170782284330,214,0 +170782284378,214,0 +170782284425,214,0 +170782284475,214,0 +170782284523,214,0 +170782284572,214,0 +170782284620,214,0 +170782284668,214,0 +170782284716,214,0 +170782284763,214,0 +170782284811,214,0 +170782284859,214,0 +170782284908,214,0 +170782284958,214,0 +170782285006,213,0 +170782285054,214,0 +170782285102,213,0 +170782285150,214,0 +170782285197,214,0 +170782285247,214,0 +170782285295,214,0 +170782285342,214,0 +170782285392,214,0 +170782285440,214,0 +170782285487,214,0 +170782285535,214,0 +170782285583,214,0 +170782285632,214,0 +170782285680,214,0 +170782285728,214,0 +170782285776,214,0 +170782285824,214,0 +170782285872,214,0 +170782285919,214,0 +170782285967,214,0 +170782286017,214,0 +170782286064,214,0 +170782286112,214,0 +170782286160,214,0 +170782286208,214,0 +170782286256,214,0 +170782286304,214,0 +170782286353,214,0 +170782286401,214,0 +170782286449,214,0 +170782286497,214,0 +170782286546,214,0 +170782286595,214,0 +170782286645,214,0 +170782286693,214,0 +170782286740,214,0 +170782286788,214,0 +170782286836,214,0 +170782286884,214,0 +170782286932,214,0 +170782286980,214,0 +170782287029,213,0 +170782287077,214,0 +170782287125,214,0 +170782287172,214,0 +170782287220,214,0 +170782287270,214,0 +170782287318,214,0 +170782287365,214,0 +170782287413,214,0 +170782287463,214,0 +170782287512,214,0 +170782287560,214,0 +170782287608,214,0 +170782287656,214,0 +170782287703,214,0 +170782287751,214,0 +170782287800,214,0 +170782287848,214,0 +170782287896,214,0 +170782287944,214,0 +170782287992,214,0 +170782288040,214,0 +170782288087,214,0 +170782288135,214,0 +170782288183,214,0 +170782288231,214,0 +170782288279,214,0 +170782288327,214,0 +170782288376,214,0 +170782288424,214,0 +170782288472,214,0 +170782288520,214,0 +170782288567,214,0 +170782288617,214,0 +170782288666,214,0 +170782288716,214,0 +170782288765,214,0 +170782288813,214,0 +170782288861,214,0 +170782288909,214,0 +170782288957,214,0 +170782289005,214,0 +170782289054,214,0 +170782289102,214,0 +170782289150,214,0 +170782289199,214,0 +170782289247,214,0 +170782289295,214,0 +170782289343,214,0 +170782289390,214,0 +170782289440,214,0 +170782289489,214,0 +170782289537,214,0 +170782289585,214,0 +170782289633,214,0 +170782289680,214,0 +170782289728,214,0 +170782289776,214,0 +170782289824,214,0 +170782289872,214,0 +170782289920,214,0 +170782289968,214,0 +170782290016,213,0 +170782290063,214,0 +170782290111,214,0 +170782290159,214,0 +170782290207,214,0 +170782290255,214,0 +170782290302,214,0 +170782290350,214,0 +170782290398,213,0 +170782290446,214,0 +170782290495,214,0 +170782290543,214,0 +170782290591,214,0 +170782290639,213,0 +170782290686,214,0 +170782290736,214,0 +170782290784,214,0 +170782290831,214,0 +170782290881,214,0 +170782290929,214,0 +170782290976,214,0 +170782291024,214,0 +170782291072,214,0 +170782291120,214,0 +170782291168,214,0 +170782291216,214,0 +170782291263,214,0 +170782291311,214,0 +170782291359,214,0 +170782291407,214,0 +170782291455,214,0 +170782291502,214,0 +170782291550,214,0 +170782291598,214,0 +170782291646,214,0 +170782291694,214,0 +170782291744,214,0 +170782291792,214,0 +170782291840,214,0 +170782291889,214,0 +170782291939,214,0 +170782291987,214,0 +170782292034,214,0 +170782292082,214,0 +170782292132,214,0 +170782292180,214,0 +170782292229,214,0 +170782292277,214,0 +170782292325,214,0 +170782292373,214,0 +170782292421,214,0 +170782292468,214,0 +170782292516,214,0 +170782292564,214,0 +170782292614,214,0 +170782292663,214,0 +170782292711,214,0 +170782292759,214,0 +170782292806,214,0 +170782292854,214,0 +170782292902,214,0 +170782292950,214,0 +170782292998,214,0 +170782293045,213,0 +170782293093,214,0 +170782293141,214,0 +170782293189,214,0 +170782293237,214,0 +170782293287,214,0 +170782293336,214,0 +170782293384,214,0 +170782293432,214,0 +170782293482,214,0 +170782293529,214,0 +170782293577,214,0 +170782293627,214,0 +170782293676,214,0 +170782293726,214,0 +170782293774,214,0 +170782293822,214,0 +170782293870,214,0 +170782293918,214,0 +170782293967,214,0 +170782294015,214,0 +170782294064,214,0 +170782294114,214,0 +170782294162,214,0 +170782294210,213,0 +170782294257,214,0 +170782294305,214,0 +170782294353,214,0 +170782294401,214,0 +170782294449,214,0 +170782294497,214,0 +170782294546,214,0 +170782294594,214,0 +170782294642,214,0 +170782294692,214,0 +170782294741,214,0 +170782294791,214,0 +170782294839,214,0 +170782294887,214,0 +170782294935,214,0 +170782294984,214,0 +170782295032,214,0 +170782295080,213,0 +170782295128,214,0 +170782295176,214,0 +170782295225,214,0 +170782295275,214,0 +170782295323,214,0 +170782295371,213,0 +170782295419,214,0 +170782295467,214,0 +170782295515,214,0 +170782295563,214,0 +170782295612,214,0 +170782295662,214,0 +170782295710,214,0 +170782295759,214,0 +170782295807,214,0 +170782295855,214,0 +170782295903,214,0 +170782295952,214,0 +170782296000,213,0 +170782296048,214,0 +170782296095,214,0 +170782296143,214,0 +170782296191,214,0 +170782296239,214,0 +170782296287,214,0 +170782296335,214,0 +170782296382,213,0 +170782296430,214,0 +170782296478,214,0 +170782296527,214,0 +170782296575,214,0 +170782296623,214,0 +170782296671,214,0 +170782296719,213,0 +170782296767,214,0 +170782296815,214,0 +170782296863,214,0 +170782296910,214,0 +170782296958,214,0 +170782297006,213,0 +170782297054,214,0 +170782297102,214,0 +170782297150,214,0 +170782297197,214,0 +170782297245,214,0 +170782297293,213,0 +170782297343,214,0 +170782297392,214,0 +170782297440,214,0 +170782297488,214,0 +170782297536,214,0 +170782297583,214,0 +170782297631,214,0 +170782297679,214,0 +170782297727,214,0 +170782297775,214,0 +170782297823,214,0 +170782297871,214,0 +170782297920,213,0 +170782297968,214,0 +170782298016,214,0 +170782298064,213,0 +170782298112,214,0 +170782298160,214,0 +170782298208,214,0 +170782298257,214,0 +170782298305,214,0 +170782298353,214,0 +170782298401,214,0 +170782298450,213,0 +170782298498,214,0 +170782298547,214,0 +170782298595,214,0 +170782298644,214,0 +170782298692,213,0 +170782298742,214,0 +170782298790,214,0 +170782298838,214,0 +170782298887,214,0 +170782298935,214,0 +170782298983,214,0 +170782299031,214,0 +170782299080,214,0 +170782299128,214,0 +170782299178,214,0 +170782299227,214,0 +170782299275,213,0 +170782299323,214,0 +170782299371,214,0 +170782299421,214,0 +170782299468,214,0 +170782299516,214,0 +170782299566,214,0 +170782299614,213,0 +170782299662,214,0 +170782299711,213,0 +170782299759,214,0 +170782299809,214,0 +170782299856,214,0 +170782299904,214,0 +170782299952,214,0 +170782300002,214,0 +170782300050,214,0 +170782300097,214,0 +170782300145,214,0 +170782300193,214,0 +170782300241,213,0 +170782300288,214,0 +170782300336,214,0 +170782300384,213,0 +170782300432,213,0 +170782300479,214,0 +170782300527,214,0 +170782300576,214,0 +170782300624,214,0 +170782300672,214,0 +170782300722,214,0 +170782300770,214,0 +170782300817,214,0 +170782300865,214,0 +170782300913,214,0 +170782300961,213,0 +170782301008,214,0 +170782301058,213,0 +170782301106,214,0 +170782301154,214,0 +170782301203,214,0 +170782301251,214,0 +170782301299,214,0 +170782301346,214,0 +170782301394,214,0 +170782301442,213,0 +170782301490,214,0 +170782301538,214,0 +170782301586,214,0 +170782301633,214,0 +170782301681,214,0 +170782301729,214,0 +170782301777,213,0 +170782301825,214,0 +170782301873,214,0 +170782301921,214,0 +170782301970,214,0 +170782302018,213,0 +170782302068,214,0 +170782302117,214,0 +170782302167,214,0 +170782302216,214,0 +170782302264,214,0 +170782302312,214,0 +170782302360,214,0 +170782302408,214,0 +170782302456,214,0 +170782302505,214,0 +170782302553,214,0 +170782302601,214,0 +170782302649,214,0 +170782302696,213,0 +170782302744,214,0 +170782302794,214,0 +170782302841,214,0 +170782302889,214,0 +170782302937,214,0 +170782302987,214,0 +170782303036,213,0 +170782303084,214,0 +170782303132,214,0 +170782303180,213,0 +170782303227,214,0 +170782303277,213,0 +170782303325,213,0 +170782303374,214,0 +170782303422,213,0 +170782303470,214,0 +170782303519,214,0 +170782303567,214,0 +170782303615,214,0 +170782303663,214,0 +170782303713,214,0 +170782303761,213,0 +170782303810,213,0 +170782303858,214,0 +170782303906,214,0 +170782303954,214,0 +170782304002,213,0 +170782304050,214,0 +170782304098,214,0 +170782304147,214,0 +170782304197,214,0 +170782304246,213,0 +170782304294,214,0 +170782304342,214,0 +170782304390,214,0 +170782304440,214,0 +170782304489,214,0 +170782304537,214,0 +170782304585,214,0 +170782304633,214,0 +170782304681,214,0 +170782304730,214,0 +170782304780,214,0 +170782304829,214,0 +170782304877,214,0 +170782304927,214,0 +170782304976,213,0 +170782305026,214,0 +170782305075,214,0 +170782305123,214,0 +170782305173,214,0 +170782305222,214,0 +170782305272,214,0 +170782305320,214,0 +170782305369,214,0 +170782305417,214,0 +170782305465,214,0 +170782305515,214,0 +170782305563,214,0 +170782305612,214,0 +170782305660,214,0 +170782305708,214,0 +170782305756,214,0 +170782305804,214,0 +170782305854,214,0 +170782305903,214,0 +170782305951,214,0 +170782305999,214,0 +170782306048,214,0 +170782306096,214,0 +170782306144,214,0 +170782306192,214,0 +170782306242,214,0 +170782306290,214,0 +170782306338,214,0 +170782306387,214,0 +170782306437,214,0 +170782306486,214,0 +170782306534,214,0 +170782306582,214,0 +170782306632,214,0 +170782306681,214,0 +170782306731,214,0 +170782306780,214,0 +170782306828,214,0 +170782306878,214,0 +170782306926,214,0 +170782306974,214,0 +170782307022,213,0 +170782307070,214,0 +170782307117,214,0 +170782307165,214,0 +170782307213,214,0 +170782307261,214,0 +170782307309,214,0 +170782307357,214,0 +170782307405,214,0 +170782307453,214,0 +170782307502,214,0 +170782307550,214,0 +170782307600,214,0 +170782307649,214,0 +170782307699,214,0 +170782307747,214,0 +170782307795,214,0 +170782307843,214,0 +170782307891,214,0 +170782307938,214,0 +170782307988,214,0 +170782308036,214,0 +170782308084,214,0 +170782308133,214,0 +170782308183,213,0 +170782308232,214,0 +170782308280,214,0 +170782308330,214,0 +170782308378,214,0 +170782308426,214,0 +170782308474,214,0 +170782308522,214,0 +170782308570,214,0 +170782308617,214,0 +170782308665,214,0 +170782308715,214,0 +170782308765,214,0 +170782308814,214,0 +170782308862,214,0 +170782308910,214,0 +170782308958,214,0 +170782309006,214,0 +170782309054,214,0 +170782309102,214,0 +170782309151,214,0 +170782309201,214,0 +170782309249,214,0 +170782309298,214,0 +170782309348,214,0 +170782309396,214,0 +170782309444,214,0 +170782309493,214,0 +170782309541,214,0 +170782309591,214,0 +170782309639,214,0 +170782309687,214,0 +170782309736,214,0 +170782309784,214,0 +170782309832,214,0 +170782309880,214,0 +170782309928,214,0 +170782309977,214,0 +170782310027,214,0 +170782310076,214,0 +170782310124,214,0 +170782310174,214,0 +170782310223,214,0 +170782310271,214,0 +170782310319,214,0 +170782310368,214,0 +170782310418,214,0 +170782310468,214,0 +170782310517,214,0 +170782310565,214,0 +170782310613,214,0 +170782310661,214,0 +170782310709,214,0 +170782310757,214,0 +170782310806,214,0 +170782310856,214,0 +170782310905,214,0 +170782310953,214,0 +170782311003,214,0 +170782311051,214,0 +170782311098,214,0 +170782311146,214,0 +170782311196,214,0 +170782311245,214,0 +170782311293,214,0 +170782311341,214,0 +170782311391,214,0 +170782311440,214,0 +170782311488,214,0 +170782311536,214,0 +170782311584,214,0 +170782311633,214,0 +170782311681,214,0 +170782311731,214,0 +170782311780,214,0 +170782311830,214,0 +170782311878,213,0 +170782311925,214,0 +170782311973,214,0 +170782312021,214,0 +170782312069,214,0 +170782312119,214,0 +170782312168,214,0 +170782312218,214,0 +170782312267,214,0 +170782312315,214,0 +170782312365,214,0 +170782312414,214,0 +170782312462,214,0 +170782312510,214,0 +170782312558,214,0 +170782312606,214,0 +170782312654,214,0 +170782312702,214,0 +170782312751,214,0 +170782312799,214,0 +170782312847,214,0 +170782312895,214,0 +170782312943,214,0 +170782312991,214,0 +170782313039,214,0 +170782313087,214,0 +170782313135,214,0 +170782313184,214,0 +170782313232,214,0 +170782313282,214,0 +170782313331,214,0 +170782313379,214,0 +170782313427,214,0 +170782313475,214,0 +170782313523,214,0 +170782313571,214,0 +170782313619,214,0 +170782313667,214,0 +170782313716,214,0 +170782313764,214,0 +170782313814,214,0 +170782313862,214,0 +170782313911,214,0 +170782313959,214,0 +170782314007,214,0 +170782314055,214,0 +170782314103,214,0 +170782314151,214,0 +170782314201,214,0 +170782314250,214,0 +170782314298,214,0 +170782314346,214,0 +170782314395,214,0 +170782314445,214,0 +170782314494,214,0 +170782314544,214,0 +170782314593,214,0 +170782314641,214,0 +170782314691,214,0 +170782314738,214,0 +170782314788,214,0 +170782314837,214,0 +170782314887,214,0 +170782314936,214,0 +170782314984,214,0 +170782315034,214,0 +170782315084,214,0 +170782315132,214,0 +170782315180,214,0 +170782315229,214,0 +170782315277,214,0 +170782315325,214,0 +170782315373,214,0 +170782315421,214,0 +170782315469,214,0 +170782315518,214,0 +170782315566,214,0 +170782315614,214,0 +170782315662,214,0 +170782315712,214,0 +170782315760,214,0 +170782315809,214,0 +170782315857,214,0 +170782315905,214,0 +170782315953,213,0 +170782316002,214,0 +170782316052,214,0 +170782316100,214,0 +170782316149,214,0 +170782316199,214,0 +170782316247,214,0 +170782316296,214,0 +170782316345,214,0 +170782316393,214,0 +170782316441,214,0 +170782316491,214,0 +170782316540,214,0 +170782316590,214,0 +170782316638,214,0 +170782316688,214,0 +170782316736,214,0 +170782316784,214,0 +170782316832,214,0 +170782316879,214,0 +170782316927,214,0 +170782316975,214,0 +170782317023,214,0 +170782317071,214,0 +170782317120,214,0 +170782317168,214,0 +170782317218,214,0 +170782317266,214,0 +170782317314,214,0 +170782317363,214,0 +170782317413,214,0 +170782317461,214,0 +170782317508,214,0 +170782317556,214,0 +170782317604,214,0 +170782317652,214,0 +170782317702,214,0 +170782317750,214,0 +170782317799,214,0 +170782317847,214,0 +170782317896,214,0 +170782317944,214,0 +170782317994,214,0 +170782318042,214,0 +170782318090,214,0 +170782318137,214,0 +170782318187,214,0 +170782318235,214,0 +170782318284,214,0 +170782318334,214,0 +170782318383,214,0 +170782318431,214,0 +170782318481,214,0 +170782318530,214,0 +170782318578,214,0 +170782318626,214,0 +170782318675,214,0 +170782318725,214,0 +170782318773,214,0 +170782318822,214,0 +170782318872,214,0 +170782318920,214,0 +170782318969,214,0 +170782319019,214,0 +170782319067,214,0 +170782319115,214,0 +170782319163,214,0 +170782319211,214,0 +170782319259,214,0 +170782319308,214,0 +170782319358,214,0 +170782319406,214,0 +170782319455,214,0 +170782319503,214,0 +170782319552,214,0 +170782319600,214,0 +170782319648,214,0 +170782319698,214,0 +170782319746,214,0 +170782319795,214,0 +170782319843,214,0 +170782319891,214,0 +170782319939,214,0 +170782319988,214,0 +170782320038,214,0 +170782320088,214,0 +170782320135,214,0 +170782320183,214,0 +170782320231,214,0 +170782320281,214,0 +170782320329,214,0 +170782320377,214,0 +170782320425,214,0 +170782320473,214,0 +170782320521,214,0 +170782320570,215,0 +170782320620,215,0 +170782320668,215,0 +170782320715,215,0 +170782320763,214,0 +170782320813,215,0 +170782320862,215,0 +170782320910,215,0 +170782320958,215,0 +170782321006,214,0 +170782321054,214,0 +170782321104,214,0 +170782321152,214,0 +170782321199,214,0 +170782321249,214,0 +170782321298,214,0 +170782321348,214,0 +170782321396,214,0 +170782321444,214,0 +170782321491,214,0 +170782321539,214,0 +170782321587,214,0 +170782321635,214,0 +170782321683,214,0 +170782321733,214,0 +170782321781,214,0 +170782321829,214,0 +170782321877,214,0 +170782321924,214,0 +170782321972,215,0 +170782322020,215,0 +170782322068,215,0 +170782322118,214,0 +170782322166,214,0 +170782322215,214,0 +170782322263,214,0 +170782322311,214,0 +170782322359,214,0 +170782322409,214,0 +170782322457,214,0 +170782322505,214,0 +170782322553,214,0 +170782322602,214,0 +170782322652,214,0 +170782322701,215,0 +170782322749,215,0 +170782322797,215,0 +170782322845,215,0 +170782322894,215,0 +170782322942,215,0 +170782322992,215,0 +170782323041,215,0 +170782323089,214,0 +170782323137,214,0 +170782323185,214,0 +170782323233,214,0 +170782323282,214,0 +170782323332,214,0 +170782323381,214,0 +170782323431,214,0 +170782323479,214,0 +170782323528,214,0 +170782323578,214,0 +170782323626,214,0 +170782323674,214,0 +170782323723,214,0 +170782323771,214,0 +170782323821,214,0 +170782323869,214,0 +170782323917,214,0 +170782323966,213,0 +170782324014,213,0 +170782324062,213,0 +170782324110,213,0 +170782324158,213,0 +170782324206,213,0 +170782324254,213,0 +170782324302,213,0 +170782324350,214,0 +170782324397,214,0 +170782324447,214,0 +170782324495,214,0 +170782324543,214,0 +170782324592,214,0 +170782324642,214,0 +170782324690,214,0 +170782324738,214,0 +170782324787,214,0 +170782324837,214,0 +170782324886,213,0 +170782324934,213,0 +170782324982,213,0 +170782325032,213,0 +170782325081,213,0 +170782325129,213,0 +170782325177,214,0 +170782325225,214,0 +170782325273,214,0 +170782325321,214,0 +170782325369,214,0 +170782325418,214,0 +170782325466,214,0 +170782325514,214,0 +170782325562,214,0 +170782325610,214,0 +170782325658,214,0 +170782325706,214,0 +170782325754,213,0 +170782325802,214,0 +170782325851,214,0 +170782325899,214,0 +170782325947,214,0 +170782325995,214,0 +170782326043,214,0 +170782326091,214,0 +170782326140,214,0 +170782326188,214,0 +170782326236,214,0 +170782326284,214,0 +170782326333,214,0 +170782326381,215,0 +170782326429,215,0 +170782326477,215,0 +170782326525,215,0 +170782326573,214,0 +170782326620,214,0 +170782326668,214,0 +170782326716,214,0 +170782326766,214,0 +170782326813,214,0 +170782326863,214,0 +170782326911,214,0 +170782326960,214,0 +170782327010,214,0 +170782327058,214,0 +170782327107,214,0 +170782327155,214,0 +170782327203,215,0 +170782327251,214,0 +170782327299,214,0 +170782327346,215,0 +170782327394,214,0 +170782327442,214,0 +170782327490,214,0 +170782327538,214,0 +170782327585,214,0 +170782327633,214,0 +170782327681,214,0 +170782327729,214,0 +170782327777,214,0 +170782327825,214,0 +170782327872,214,0 +170782327922,215,0 +170782327970,214,0 +170782328018,215,0 +170782328066,214,0 +170782328113,215,0 +170782328161,215,0 +170782328209,215,0 +170782328257,215,0 +170782328305,214,0 +170782328353,213,0 +170782328401,213,0 +170782328450,213,0 +170782328498,213,0 +170782328546,213,0 +170782328596,214,0 +170782328643,214,0 +170782328691,214,0 +170782328739,214,0 +170782328787,214,0 +170782328835,214,0 +170782328883,214,0 +170782328931,214,0 +170782328979,214,0 +170782329026,214,0 +170782329074,214,0 +170782329122,214,0 +170782329170,215,0 +170782329218,213,0 +170782329267,213,0 +170782329315,214,0 +170782329365,213,0 +170782329413,214,0 +170782329461,213,0 +170782329508,214,0 +170782329558,214,0 +170782329606,214,0 +170782329654,214,0 +170782329702,214,0 +170782329751,214,0 +170782329801,214,0 +170782329850,214,0 +170782329900,214,0 +170782329948,214,0 +170782329997,214,0 +170782330045,215,0 +170782330093,213,0 +170782330143,213,0 +170782330191,213,0 +170782330239,214,0 +170782330287,214,0 +170782330336,214,0 +170782330386,214,0 +170782330433,214,0 +170782330481,214,0 +170782330529,214,0 +170782330577,214,0 +170782330625,214,0 +170782330674,214,0 +170782330724,214,0 +170782330772,214,0 +170782330820,215,0 +170782330869,214,0 +170782330919,214,0 +170782330967,213,0 +170782331016,213,0 +170782331064,213,0 +170782331112,213,0 +170782331160,214,0 +170782331208,214,0 +170782331256,214,0 +170782331304,214,0 +170782331354,214,0 +170782331401,214,0 +170782331449,214,0 +170782331499,214,0 +170782331546,214,0 +170782331594,214,0 +170782331642,214,0 +170782331690,214,0 +170782331738,214,0 +170782331786,214,0 +170782331834,213,0 +170782331882,213,0 +170782331930,213,0 +170782331977,213,0 +170782332025,213,0 +170782332073,213,0 +170782332121,214,0 +170782332169,213,0 +170782332216,213,0 +170782332264,214,0 +170782332312,214,0 +170782332360,214,0 +170782332408,214,0 +170782332456,214,0 +170782332503,214,0 +170782332552,214,0 +170782332599,214,0 +170782332647,214,0 +170782332697,213,0 +170782332745,213,0 +170782332792,213,0 +170782332840,213,0 +170782332890,213,0 +170782332939,213,0 +170782332987,213,0 +170782333037,214,0 +170782333086,214,0 +170782333136,214,0 +170782333185,214,0 +170782333233,214,0 +170782333283,214,0 +170782333331,214,0 +170782333379,214,0 +170782333427,214,0 +170782333476,214,0 +170782333526,214,0 +170782333575,213,0 +170782333623,213,0 +170782333671,213,0 +170782333721,213,0 +170782333770,213,0 +170782333820,213,0 +170782333867,213,0 +170782333915,214,0 +170782333963,214,0 +170782334013,214,0 +170782334061,214,0 +170782334109,214,0 +170782334158,214,0 +170782334206,214,0 +170782334254,214,0 +170782334302,214,0 +170782334350,214,0 +170782334398,214,0 +170782334446,214,0 +170782334494,214,0 +170782334544,215,0 +170782334593,214,0 +170782334641,215,0 +170782334689,215,0 +170782334737,215,0 +170782334785,215,0 +170782334833,214,0 +170782334882,213,0 +170782334932,213,0 +170782334981,213,0 +170782335029,214,0 +170782335077,214,0 +170782335125,214,0 +170782335173,214,0 +170782335223,214,0 +170782335272,214,0 +170782335322,214,0 +170782335370,214,0 +170782335418,214,0 +170782335467,214,0 +170782335517,214,0 +170782335565,214,0 +170782335614,215,0 +170782335662,215,0 +170782335712,214,0 +170782335760,213,0 +170782335808,213,0 +170782335856,214,0 +170782335904,214,0 +170782335951,214,0 +170782335999,214,0 +170782336047,214,0 +170782336095,214,0 +170782336143,214,0 +170782336192,214,0 +170782336242,215,0 +170782336290,214,0 +170782336338,214,0 +170782336385,214,0 +170782336433,215,0 +170782336483,215,0 +170782336531,214,0 +170782336578,214,0 +170782336626,214,0 +170782336674,214,0 +170782336722,214,0 +170782336770,214,0 +170782336818,214,0 +170782336866,214,0 +170782336914,214,0 +170782336962,214,0 +170782337010,214,0 +170782337058,214,0 +170782337105,214,0 +170782337155,214,0 +170782337203,214,0 +170782337252,214,0 +170782337300,214,0 +170782337348,215,0 +170782337398,214,0 +170782337446,214,0 +170782337494,213,0 +170782337543,214,0 +170782337591,213,0 +170782337639,214,0 +170782337688,214,0 +170782337738,214,0 +170782337787,214,0 +170782337837,214,0 +170782337885,214,0 +170782337933,214,0 +170782337982,214,0 +170782338030,214,0 +170782338080,214,0 +170782338128,214,0 +170782338177,214,0 +170782338225,214,0 +170782338273,214,0 +170782338322,214,0 +170782338372,213,0 +170782338420,213,0 +170782338468,214,0 +170782338516,214,0 +170782338564,214,0 +170782338612,214,0 +170782338659,214,0 +170782338707,214,0 +170782338757,214,0 +170782338805,214,0 +170782338853,214,0 +170782338901,215,0 +170782338948,215,0 +170782338998,214,0 +170782339046,215,0 +170782339094,214,0 +170782339143,214,0 +170782339193,214,0 +170782339242,214,0 +170782339290,214,0 +170782339338,214,0 +170782339388,214,0 +170782339436,214,0 +170782339484,214,0 +170782339532,214,0 +170782339580,214,0 +170782339629,214,0 +170782339677,215,0 +170782339725,215,0 +170782339773,215,0 +170782339821,215,0 +170782339870,215,0 +170782339918,214,0 +170782339966,214,0 +170782340016,214,0 +170782340064,214,0 +170782340113,214,0 +170782340162,214,0 +170782340210,214,0 +170782340258,214,0 +170782340306,214,0 +170782340354,214,0 +170782340404,214,0 +170782340452,214,0 +170782340499,215,0 +170782340549,215,0 +170782340598,215,0 +170782340646,215,0 +170782340696,214,0 +170782340744,215,0 +170782340792,215,0 +170782340841,214,0 +170782340891,213,0 +170782340939,213,0 +170782340987,213,0 +170782341036,213,0 +170782341086,213,0 +170782341134,214,0 +170782341182,214,0 +170782341231,214,0 +170782341279,214,0 +170782341327,214,0 +170782341377,214,0 +170782341425,214,0 +170782341474,214,0 +170782341522,214,0 +170782341570,214,0 +170782341618,214,0 +170782341668,214,0 +170782341716,214,0 +170782341763,213,0 +170782341811,213,0 +170782341859,213,0 +170782341907,214,0 +170782341955,214,0 +170782342003,213,0 +170782342051,214,0 +170782342099,214,0 +170782342147,214,0 +170782342195,214,0 +170782342242,214,0 +170782342290,214,0 +170782342340,214,0 +170782342389,214,0 +170782342437,214,0 +170782342485,214,0 +170782342535,214,0 +170782342584,214,0 +170782342632,213,0 +170782342682,213,0 +170782342730,213,0 +170782342778,214,0 +170782342827,214,0 +170782342875,214,0 +170782342925,214,0 +170782342973,214,0 +170782343021,214,0 +170782343068,214,0 +170782343116,214,0 +170782343166,214,0 +170782343214,214,0 +170782343262,214,0 +170782343310,214,0 +170782343358,214,0 +170782343407,214,0 +170782343457,213,0 +170782343506,213,0 +170782343556,213,0 +170782343604,213,0 +170782343651,213,0 +170782343699,214,0 +170782343747,214,0 +170782343795,214,0 +170782343843,214,0 +170782343892,214,0 +170782343940,214,0 +170782343989,214,0 +170782344037,214,0 +170782344085,214,0 +170782344133,214,0 +170782344181,214,0 +170782344229,214,0 +170782344276,215,0 +170782344324,213,0 +170782344372,213,0 +170782344422,213,0 +170782344470,213,0 +170782344517,213,0 +170782344567,214,0 +170782344615,213,0 +170782344663,214,0 +170782344712,214,0 +170782344760,214,0 +170782344808,214,0 +170782344856,214,0 +170782344904,214,0 +170782344953,214,0 +170782345003,214,0 +170782345051,214,0 +170782345100,214,0 +170782345150,213,0 +170782345197,213,0 +170782345245,213,0 +170782345295,213,0 +170782345343,213,0 +170782345391,213,0 +170782345439,214,0 +170782345487,213,0 +170782345536,214,0 +170782345584,214,0 +170782345632,214,0 +170782345680,214,0 +170782345729,214,0 +170782345777,214,0 +170782345825,214,0 +170782345875,214,0 +170782345923,214,0 +170782345972,214,0 +170782346020,214,0 +170782346068,213,0 +170782346116,213,0 +170782346165,213,0 +170782346213,214,0 +170782346263,213,0 +170782346310,213,0 +170782346358,214,0 +170782346406,214,0 +170782346454,214,0 +170782346502,214,0 +170782346550,214,0 +170782346598,214,0 +170782346648,214,0 +170782346697,214,0 +170782346745,214,0 +170782346795,214,0 +170782346844,214,0 +170782346892,213,0 +170782346940,213,0 +170782346988,213,0 +170782347037,213,0 +170782347085,214,0 +170782347135,213,0 +170782347183,214,0 +170782347231,214,0 +170782347280,214,0 +170782347328,214,0 +170782347376,214,0 +170782347426,214,0 +170782347474,214,0 +170782347522,214,0 +170782347571,214,0 +170782347621,214,0 +170782347668,215,0 +170782347718,214,0 +170782347766,213,0 +170782347815,213,0 +170782347865,214,0 +170782347914,213,0 +170782347964,213,0 +170782348013,213,0 +170782348061,214,0 +170782348109,214,0 +170782348159,214,0 +170782348208,214,0 +170782348256,214,0 +170782348304,214,0 +170782348354,214,0 +170782348402,214,0 +170782348451,214,0 +170782348499,214,0 +170782348547,214,0 +170782348595,213,0 +170782348643,213,0 +170782348691,213,0 +170782348740,213,0 +170782348790,214,0 +170782348838,214,0 +170782348887,214,0 +170782348937,214,0 +170782348986,214,0 +170782349034,214,0 +170782349082,214,0 +170782349130,214,0 +170782349178,214,0 +170782349227,214,0 +170782349277,214,0 +170782349324,214,0 +170782349372,214,0 +170782349420,214,0 +170782349468,213,0 +170782349518,213,0 +170782349566,213,0 +170782349615,214,0 +170782349665,214,0 +170782349714,214,0 +170782349762,214,0 +170782349810,214,0 +170782349858,214,0 +170782349906,214,0 +170782349955,214,0 +170782350005,214,0 +170782350054,214,0 +170782350102,214,0 +170782350150,214,0 +170782350199,214,0 +170782350247,214,0 +170782350295,213,0 +170782350343,213,0 +170782350391,214,0 +170782350440,213,0 +170782350490,214,0 +170782350538,214,0 +170782350586,214,0 +170782350633,214,0 +170782350681,214,0 +170782350731,214,0 +170782350779,214,0 +170782350827,214,0 +170782350874,214,0 +170782350922,214,0 +170782350970,214,0 +170782351018,215,0 +170782351066,214,0 +170782351114,214,0 +170782351162,214,0 +170782351210,214,0 +170782351258,214,0 +170782351307,214,0 +170782351355,214,0 +170782351403,214,0 +170782351451,214,0 +170782351499,214,0 +170782351547,214,0 +170782351595,214,0 +170782351643,214,0 +170782351692,214,0 +170782351742,214,0 +170782351789,214,0 +170782351837,215,0 +170782351885,215,0 +170782351933,214,0 +170782351981,214,0 +170782352029,214,0 +170782352078,214,0 +170782352126,214,0 +170782352176,214,0 +170782352225,214,0 +170782352273,214,0 +170782352321,214,0 +170782352369,214,0 +170782352419,214,0 +170782352468,214,0 +170782352516,214,0 +170782352564,214,0 +170782352612,214,0 +170782352661,214,0 +170782352709,214,0 +170782352759,214,0 +170782352807,214,0 +170782352856,213,0 +170782352906,213,0 +170782352955,213,0 +170782353005,214,0 +170782353053,214,0 +170782353101,214,0 +170782353150,214,0 +170782353198,214,0 +170782353246,214,0 +170782353295,214,0 +170782353343,214,0 +170782353391,214,0 +170782353439,214,0 +170782353488,214,0 +170782353536,214,0 +170782353584,214,0 +170782353632,214,0 +170782353680,214,0 +170782353728,214,0 +170782353776,213,0 +170782353826,213,0 +170782353874,214,0 +170782353921,214,0 +170782353969,214,0 +170782354017,214,0 +170782354065,214,0 +170782354113,214,0 +170782354161,214,0 +170782354209,214,0 +170782354257,214,0 +170782354304,214,0 +170782354352,214,0 +170782354400,214,0 +170782354450,214,0 +170782354497,214,0 +170782354545,214,0 +170782354593,213,0 +170782354641,213,0 +170782354689,214,0 +170782354739,213,0 +170782354786,214,0 +170782354834,214,0 +170782354882,214,0 +170782354932,214,0 +170782354979,214,0 +170782355027,214,0 +170782355075,214,0 +170782355123,214,0 +170782355173,214,0 +170782355221,214,0 +170782355269,215,0 +170782355317,214,0 +170782355365,214,0 +170782355413,214,0 +170782355460,214,0 +170782355508,214,0 +170782355556,214,0 +170782355604,214,0 +170782355652,214,0 +170782355700,214,0 +170782355748,214,0 +170782355796,214,0 +170782355845,214,0 +170782355893,215,0 +170782355943,215,0 +170782355992,215,0 +170782356040,214,0 +170782356088,214,0 +170782356136,214,0 +170782356185,214,0 +170782356233,214,0 +170782356281,214,0 +170782356329,214,0 +170782356377,214,0 +170782356427,214,0 +170782356476,214,0 +170782356524,214,0 +170782356574,214,0 +170782356622,214,0 +170782356669,214,0 +170782356719,214,0 +170782356768,214,0 +170782356816,215,0 +170782356864,214,0 +170782356912,215,0 +170782356960,215,0 +170782357008,215,0 +170782357055,214,0 +170782357105,214,0 +170782357155,214,0 +170782357202,214,0 +170782357250,214,0 +170782357298,214,0 +170782357348,214,0 +170782357397,214,0 +170782357445,214,0 +170782357493,214,0 +170782357543,214,0 +170782357591,214,0 +170782357639,214,0 +170782357687,214,0 +170782357735,214,0 +170782357782,214,0 +170782357830,214,0 +170782357878,215,0 +170782357926,214,0 +170782357974,214,0 +170782358022,213,0 +170782358070,213,0 +170782358118,214,0 +170782358166,214,0 +170782358214,214,0 +170782358263,214,0 +170782358311,214,0 +170782358359,214,0 +170782358407,214,0 +170782358455,214,0 +170782358503,214,0 +170782358551,214,0 +170782358600,214,0 +170782358648,214,0 +170782358696,214,0 +170782358744,214,0 +170782358793,214,0 +170782358843,213,0 +170782358891,213,0 +170782358938,213,0 +170782358988,213,0 +170782359036,214,0 +170782359084,214,0 +170782359132,214,0 +170782359182,214,0 +170782359229,214,0 +170782359279,214,0 +170782359327,214,0 +170782359375,214,0 +170782359422,214,0 +170782359470,214,0 +170782359518,214,0 +170782359568,214,0 +170782359616,214,0 +170782359665,214,0 +170782359713,213,0 +170782359761,213,0 +170782359810,213,0 +170782359858,213,0 +170782359906,213,0 +170782359954,213,0 +170782360002,214,0 +170782360050,214,0 +170782360098,214,0 +170782360146,214,0 +170782360194,214,0 +170782360242,214,0 +170782360290,214,0 +170782360338,214,0 +170782360386,214,0 +170782360435,214,0 +170782360483,214,0 +170782360531,213,0 +170782360580,213,0 +170782360628,213,0 +170782360676,213,0 +170782360726,213,0 +170782360775,213,0 +170782360823,213,0 +170782360871,213,0 +170782360919,213,0 +170782360967,213,0 +170782361014,214,0 +170782361062,213,0 +170782361110,214,0 +170782361158,214,0 +170782361206,214,0 +170782361254,214,0 +170782361303,214,0 +170782361351,214,0 +170782361399,213,0 +170782361449,213,0 +170782361497,213,0 +170782361545,213,0 +170782361593,214,0 +170782361641,214,0 +170782361689,214,0 +170782361738,214,0 +170782361788,214,0 +170782361836,214,0 +170782361885,214,0 +170782361933,214,0 +170782361983,214,0 +170782362032,214,0 +170782362080,214,0 +170782362128,214,0 +170782362177,214,0 +170782362225,214,0 +170782362273,213,0 +170782362321,213,0 +170782362369,214,0 +170782362417,214,0 +170782362465,214,0 +170782362514,214,0 +170782362564,214,0 +170782362614,214,0 +170782362662,214,0 +170782362711,214,0 +170782362761,214,0 +170782362809,214,0 +170782362858,214,0 +170782362906,214,0 +170782362954,215,0 +170782363002,214,0 +170782363051,214,0 +170782363101,214,0 +170782363149,214,0 +170782363197,214,0 +170782363245,214,0 +170782363293,214,0 +170782363342,214,0 +170782363390,214,0 +170782363438,214,0 +170782363487,214,0 +170782363535,214,0 +170782363583,214,0 +170782363631,214,0 +170782363680,215,0 +170782363728,214,0 +170782363776,215,0 +170782363824,214,0 +170782363874,214,0 +170782363922,214,0 +170782363971,214,0 +170782364021,214,0 +170782364069,214,0 +170782364116,214,0 +170782364164,214,0 +170782364212,214,0 +170782364260,214,0 +170782364308,214,0 +170782364358,214,0 +170782364406,214,0 +170782364453,214,0 +170782364503,214,0 +170782364551,215,0 +170782364600,215,0 +170782364648,214,0 +170782364696,214,0 +170782364744,214,0 +170782364792,214,0 +170782364840,214,0 +170782364888,214,0 +170782364936,214,0 +170782364984,214,0 +170782365033,214,0 +170782365081,214,0 +170782365131,214,0 +170782365179,214,0 +170782365228,214,0 +170782365278,214,0 +170782365327,214,0 +170782365375,214,0 +170782365423,214,0 +170782365471,215,0 +170782365520,215,0 +170782365568,215,0 +170782365618,214,0 +170782365667,213,0 +170782365717,213,0 +170782365767,213,0 +170782365814,214,0 +170782365864,214,0 +170782365912,214,0 +170782365960,214,0 +170782366008,214,0 +170782366055,214,0 +170782366103,214,0 +170782366151,214,0 +170782366199,214,0 +170782366247,214,0 +170782366295,214,0 +170782366343,214,0 +170782366391,214,0 +170782366439,214,0 +170782366487,214,0 +170782366536,213,0 +170782366584,213,0 +170782366632,213,0 +170782366681,213,0 +170782366731,213,0 +170782366779,213,0 +170782366828,213,0 +170782366878,213,0 +170782366927,213,0 +170782366977,214,0 +170782367025,214,0 +170782367074,214,0 +170782367122,214,0 +170782367170,214,0 +170782367220,214,0 +170782367268,214,0 +170782367316,214,0 +170782367364,213,0 +170782367413,213,0 +170782367463,213,0 +170782367510,213,0 +170782367560,213,0 +170782367608,213,0 +170782367657,214,0 +170782367705,214,0 +170782367755,214,0 +170782367803,214,0 +170782367851,214,0 +170782367899,214,0 +170782367948,214,0 +170782367996,214,0 +170782368044,214,0 +170782368092,214,0 +170782368140,214,0 +170782368188,214,0 +170782368236,213,0 +170782368285,213,0 +170782368333,213,0 +170782368383,213,0 +170782368432,214,0 +170782368480,213,0 +170782368528,214,0 +170782368576,214,0 +170782368624,214,0 +170782368672,214,0 +170782368720,214,0 +170782368769,214,0 +170782368819,214,0 +170782368867,214,0 +170782368915,214,0 +170782368964,214,0 +170782369014,214,0 +170782369062,213,0 +170782369110,213,0 +170782369157,213,0 +170782369205,214,0 +170782369253,213,0 +170782369301,213,0 +170782369349,213,0 +170782369397,214,0 +170782369444,214,0 +170782369494,214,0 +170782369542,214,0 +170782369590,214,0 +170782369639,214,0 +170782369688,214,0 +170782369738,214,0 +170782369786,214,0 +170782369835,214,0 +170782369883,213,0 +170782369931,213,0 +170782369979,213,0 +170782370027,214,0 +170782370075,213,0 +170782370123,214,0 +170782370171,214,0 +170782370219,214,0 +170782370267,214,0 +170782370316,214,0 +170782370366,214,0 +170782370414,214,0 +170782370461,214,0 +170782370509,214,0 +170782370559,214,0 +170782370608,214,0 +170782370658,214,0 +170782370706,214,0 +170782370754,214,0 +170782370803,214,0 +170782370851,214,0 +170782370901,214,0 +170782370949,214,0 +170782370997,214,0 +170782371045,214,0 +170782371094,214,0 +170782371142,214,0 +170782371190,214,0 +170782371238,215,0 +170782371286,215,0 +170782371335,215,0 +170782371383,214,0 +170782371431,214,0 +170782371479,214,0 +170782371527,214,0 +170782371574,214,0 +170782371622,214,0 +170782371670,214,0 +170782371718,214,0 +170782371768,214,0 +170782371816,214,0 +170782371865,214,0 +170782371915,215,0 +170782371963,215,0 +170782372011,214,0 +170782372059,214,0 +170782372107,215,0 +170782372156,214,0 +170782372204,214,0 +170782372252,214,0 +170782372300,214,0 +170782372349,214,0 +170782372397,214,0 +170782372445,214,0 +170782372494,214,0 +170782372544,214,0 +170782372593,214,0 +170782372643,214,0 +170782372691,214,0 +170782372739,214,0 +170782372787,214,0 +170782372836,214,0 +170782372886,214,0 +170782372934,214,0 +170782372982,214,0 +170782373029,214,0 +170782373079,214,0 +170782373127,214,0 +170782373175,214,0 +170782373223,214,0 +170782373272,214,0 +170782373320,214,0 +170782373368,214,0 +170782373416,214,0 +170782373463,214,0 +170782373511,214,0 +170782373559,214,0 +170782373607,214,0 +170782373655,214,0 +170782373705,214,0 +170782373753,214,0 +170782373801,214,0 +170782373849,214,0 +170782373897,214,0 +170782373944,214,0 +170782373992,214,0 +170782374042,214,0 +170782374090,213,0 +170782374139,213,0 +170782374189,214,0 +170782374238,214,0 +170782374286,213,0 +170782374335,214,0 +170782374385,214,0 +170782374434,214,0 +170782374482,214,0 +170782374532,214,0 +170782374581,214,0 +170782374629,214,0 +170782374679,214,0 +170782374728,214,0 +170782374776,215,0 +170782374824,214,0 +170782374872,214,0 +170782374922,213,0 +170782374971,213,0 +170782375020,213,0 +170782375068,213,0 +170782375118,214,0 +170782375168,214,0 +170782375216,214,0 +170782375264,214,0 +170782375312,214,0 +170782375361,214,0 +170782375409,214,0 +170782375458,215,0 +170782375506,214,0 +170782375554,214,0 +170782375604,214,0 +170782375652,214,0 +170782375700,214,0 +170782375748,214,0 +170782375797,213,0 +170782375847,213,0 +170782375895,214,0 +170782375942,214,0 +170782375992,214,0 +170782376040,214,0 +170782376089,214,0 +170782376137,214,0 +170782376187,214,0 +170782376235,214,0 +170782376283,214,0 +170782376332,214,0 +170782376382,214,0 +170782376431,214,0 +170782376481,215,0 +170782376530,214,0 +170782376580,214,0 +170782376628,213,0 +170782376676,214,0 +170782376724,213,0 +170782376771,213,0 +170782376819,214,0 +170782376867,214,0 +170782376915,214,0 +170782376963,214,0 +170782377011,214,0 +170782377059,214,0 +170782377108,215,0 +170782377156,214,0 +170782377204,214,0 +170782377254,215,0 +170782377302,214,0 +170782377351,215,0 +170782377399,214,0 +170782377448,213,0 +170782377496,214,0 +170782377544,214,0 +170782377592,214,0 +170782377640,214,0 +170782377688,214,0 +170782377736,214,0 +170782377784,214,0 +170782377832,214,0 +170782377881,214,0 +170782377931,214,0 +170782377979,214,0 +170782378028,215,0 +170782378078,215,0 +170782378126,215,0 +170782378174,214,0 +170782378222,214,0 +170782378270,213,0 +170782378319,214,0 +170782378369,213,0 +170782378417,214,0 +170782378465,214,0 +170782378513,214,0 +170782378562,214,0 +170782378610,214,0 +170782378660,214,0 +170782378708,214,0 +170782378756,214,0 +170782378803,214,0 +170782378851,214,0 +170782378901,215,0 +170782378949,215,0 +170782378998,214,0 +170782379046,214,0 +170782379094,214,0 +170782379144,214,0 +170782379193,214,0 +170782379241,214,0 +170782379289,214,0 +170782379337,214,0 +170782379385,214,0 +170782379433,214,0 +170782379481,214,0 +170782379529,214,0 +170782379577,214,0 +170782379625,214,0 +170782379674,214,0 +170782379724,214,0 +170782379772,214,0 +170782379820,214,0 +170782379868,214,0 +170782379916,214,0 +170782379965,213,0 +170782380013,214,0 +170782380061,214,0 +170782380111,214,0 +170782380159,214,0 +170782380207,214,0 +170782380256,214,0 +170782380304,214,0 +170782380352,214,0 +170782380401,214,0 +170782380449,214,0 +170782380497,214,0 +170782380545,214,0 +170782380595,215,0 +170782380643,214,0 +170782380691,214,0 +170782380739,214,0 +170782380788,213,0 +170782380836,213,0 +170782380884,214,0 +170782380934,214,0 +170782380982,214,0 +170782381030,214,0 +170782381078,214,0 +170782381126,214,0 +170782381174,214,0 +170782381222,214,0 +170782381270,214,0 +170782381317,214,0 +170782381365,214,0 +170782381413,214,0 +170782381461,214,0 +170782381509,214,0 +170782381557,214,0 +170782381607,214,0 +170782381655,213,0 +170782381703,213,0 +170782381752,214,0 +170782381802,214,0 +170782381851,214,0 +170782381901,214,0 +170782381949,214,0 +170782381997,214,0 +170782382045,214,0 +170782382093,214,0 +170782382141,214,0 +170782382189,214,0 +170782382237,215,0 +170782382286,214,0 +170782382334,214,0 +170782382384,214,0 +170782382433,214,0 +170782382481,213,0 +170782382529,213,0 +170782382579,214,0 +170782382628,214,0 +170782382676,214,0 +170782382724,214,0 +170782382774,214,0 +170782382821,214,0 +170782382871,214,0 +170782382919,214,0 +170782382968,214,0 +170782383016,214,0 +170782383066,214,0 +170782383116,214,0 +170782383165,214,0 +170782383215,214,0 +170782383262,214,0 +170782383312,213,0 +170782383360,213,0 +170782383408,213,0 +170782383456,213,0 +170782383505,213,0 +170782383555,213,0 +170782383603,213,0 +170782383651,213,0 +170782383699,214,0 +170782383747,214,0 +170782383795,214,0 +170782383844,214,0 +170782383892,214,0 +170782383940,214,0 +170782383988,214,0 +170782384038,214,0 +170782384087,214,0 +170782384135,213,0 +170782384183,213,0 +170782384231,213,0 +170782384279,213,0 +170782384327,213,0 +170782384377,213,0 +170782384424,213,0 +170782384474,213,0 +170782384524,213,0 +170782384571,214,0 +170782384619,214,0 +170782384667,214,0 +170782384717,214,0 +170782384766,214,0 +170782384814,214,0 +170782384862,214,0 +170782384910,214,0 +170782384958,213,0 +170782385007,213,0 +170782385055,214,0 +170782385103,214,0 +170782385151,214,0 +170782385201,214,0 +170782385248,214,0 +170782385298,214,0 +170782385346,214,0 +170782385395,214,0 +170782385443,214,0 +170782385493,214,0 +170782385541,214,0 +170782385590,214,0 +170782385638,215,0 +170782385688,214,0 +170782385736,214,0 +170782385785,214,0 +170782385833,214,0 +170782385883,214,0 +170782385931,214,0 +170782385979,214,0 +170782386028,214,0 +170782386076,214,0 +170782386125,214,0 +170782386173,214,0 +170782386223,214,0 +170782386271,214,0 +170782386319,214,0 +170782386367,215,0 +170782386414,215,0 +170782386462,215,0 +170782386512,215,0 +170782386561,214,0 +170782386609,214,0 +170782386657,214,0 +170782386705,214,0 +170782386753,214,0 +170782386801,214,0 +170782386849,214,0 +170782386896,215,0 +170782386944,215,0 +170782386992,214,0 +170782387040,215,0 +170782387090,214,0 +170782387139,215,0 +170782387187,215,0 +170782387235,214,0 +170782387283,214,0 +170782387330,215,0 +170782387378,215,0 +170782387428,214,0 +170782387476,214,0 +170782387524,214,0 +170782387572,214,0 +170782387620,214,0 +170782387669,214,0 +170782387717,214,0 +170782387765,214,0 +170782387813,214,0 +170782387861,214,0 +170782387911,214,0 +170782387960,214,0 +170782388008,214,0 +170782388056,214,0 +170782388104,214,0 +170782388152,214,0 +170782388202,214,0 +170782388250,214,0 +170782388299,214,0 +170782388347,213,0 +170782388395,214,0 +170782388444,213,0 +170782388494,214,0 +170782388543,214,0 +170782388593,214,0 +170782388641,214,0 +170782388691,214,0 +170782388739,214,0 +170782388787,214,0 +170782388835,214,0 +170782388882,214,0 +170782388930,214,0 +170782388978,214,0 +170782389026,214,0 +170782389074,214,0 +170782389122,214,0 +170782389170,214,0 +170782389217,213,0 +170782389265,213,0 +170782389315,214,0 +170782389363,214,0 +170782389412,214,0 +170782389460,214,0 +170782389509,214,0 +170782389557,214,0 +170782389605,214,0 +170782389655,214,0 +170782389704,214,0 +170782389752,214,0 +170782389800,214,0 +170782389848,214,0 +170782389895,214,0 +170782389943,214,0 +170782389991,214,0 +170782390039,213,0 +170782390088,213,0 +170782390136,214,0 +170782390186,214,0 +170782390234,214,0 +170782390283,214,0 +170782390331,214,0 +170782390381,214,0 +170782390429,214,0 +170782390477,214,0 +170782390526,214,0 +170782390574,214,0 +170782390624,214,0 +170782390672,214,0 +170782390721,214,0 +170782390769,215,0 +170782390819,214,0 +170782390867,214,0 +170782390915,214,0 +170782390963,214,0 +170782391011,214,0 +170782391059,214,0 +170782391107,214,0 +170782391156,214,0 +170782391206,214,0 +170782391254,214,0 +170782391302,214,0 +170782391349,214,0 +170782391397,214,0 +170782391447,214,0 +170782391495,215,0 +170782391544,214,0 +170782391592,214,0 +170782391642,214,0 +170782391690,214,0 +170782391739,214,0 +170782391789,214,0 +170782391837,214,0 +170782391886,214,0 +170782391934,214,0 +170782391982,214,0 +170782392030,214,0 +170782392078,214,0 +170782392128,214,0 +170782392176,214,0 +170782392225,214,0 +170782392273,214,0 +170782392323,215,0 +170782392371,214,0 +170782392420,214,0 +170782392468,214,0 +170782392516,214,0 +170782392566,213,0 +170782392614,214,0 +170782392663,214,0 +170782392711,214,0 +170782392761,214,0 +170782392809,214,0 +170782392856,214,0 +170782392906,214,0 +170782392954,214,0 +170782393003,214,0 +170782393053,214,0 +170782393101,214,0 +170782393149,215,0 +170782393197,214,0 +170782393246,215,0 +170782393296,214,0 +170782393344,213,0 +170782393393,213,0 +170782393443,213,0 +170782393492,214,0 +170782393540,213,0 +170782393588,213,0 +170782393636,214,0 +170782393684,214,0 +170782393733,214,0 +170782393783,214,0 +170782393833,214,0 +170782393882,214,0 +170782393932,214,0 +170782393981,214,0 +170782394031,214,0 +170782394079,214,0 +170782394127,214,0 +170782394174,213,0 +170782394222,213,0 +170782394272,213,0 +170782394320,213,0 +170782394368,214,0 +170782394416,214,0 +170782394464,214,0 +170782394512,214,0 +170782394560,214,0 +170782394608,214,0 +170782394656,214,0 +170782394704,214,0 +170782394753,214,0 +170782394801,214,0 +170782394849,215,0 +170782394899,214,0 +170782394948,214,0 +170782394996,214,0 +170782395046,214,0 +170782395095,213,0 +170782395145,214,0 +170782395193,213,0 +170782395242,214,0 +170782395292,214,0 +170782395341,214,0 +170782395389,214,0 +170782395437,214,0 +170782395485,214,0 +170782395535,214,0 +170782395582,214,0 +170782395630,214,0 +170782395678,214,0 +170782395726,214,0 +170782395776,214,0 +170782395824,214,0 +170782395871,213,0 +170782395921,213,0 +170782395969,213,0 +170782396017,214,0 +170782396066,214,0 +170782396114,214,0 +170782396162,214,0 +170782396210,214,0 +170782396258,214,0 +170782396306,214,0 +170782396354,214,0 +170782396403,214,0 +170782396451,214,0 +170782396499,214,0 +170782396547,214,0 +170782396595,214,0 +170782396643,214,0 +170782396691,214,0 +170782396740,213,0 +170782396788,213,0 +170782396836,214,0 +170782396886,214,0 +170782396934,214,0 +170782396983,214,0 +170782397032,214,0 +170782397080,214,0 +170782397128,214,0 +170782397178,214,0 +170782397227,214,0 +170782397275,214,0 +170782397323,214,0 +170782397373,214,0 +170782397421,214,0 +170782397469,214,0 +170782397516,214,0 +170782397566,213,0 +170782397614,213,0 +170782397662,214,0 +170782397710,213,0 +170782397759,213,0 +170782397807,214,0 +170782397855,214,0 +170782397905,214,0 +170782397953,214,0 +170782398000,214,0 +170782398048,214,0 +170782398096,214,0 +170782398144,214,0 +170782398192,214,0 +170782398240,214,0 +170782398288,214,0 +170782398336,214,0 +170782398385,214,0 +170782398433,213,0 +170782398483,214,0 +170782398532,214,0 +170782398580,214,0 +170782398630,214,0 +170782398679,214,0 +170782398727,214,0 +170782398776,214,0 +170782398826,214,0 +170782398875,214,0 +170782398923,214,0 +170782398971,214,0 +170782399021,214,0 +170782399070,215,0 +170782399118,214,0 +170782399166,214,0 +170782399216,214,0 +170782399264,214,0 +170782399312,214,0 +170782399359,214,0 +170782399407,214,0 +170782399455,214,0 +170782399503,215,0 +170782399551,214,0 +170782399601,214,0 +170782399650,215,0 +170782399698,215,0 +170782399746,215,0 +170782399794,215,0 +170782399842,215,0 +170782399892,215,0 +170782399940,215,0 +170782399987,214,0 +170782400035,214,0 +170782400085,215,0 +170782400133,214,0 +170782400181,215,0 +170782400230,214,0 +170782400280,215,0 +170782400329,215,0 +170782400379,215,0 +170782400427,215,0 +170782400475,215,0 +170782400523,215,0 +170782400571,215,0 +170782400620,215,0 +170782400668,215,0 +170782400716,215,0 +170782400766,215,0 +170782400815,214,0 +170782400863,215,0 +170782400912,214,0 +170782400960,215,0 +170782401008,215,0 +170782401058,215,0 +170782401106,215,0 +170782401154,214,0 +170782401203,215,0 +170782401252,215,0 +170782401302,215,0 +170782401352,215,0 +170782401400,215,0 +170782401447,215,0 +170782401495,215,0 +170782401543,215,0 +170782401591,215,0 +170782401641,214,0 +170782401689,214,0 +170782401738,214,0 +170782401788,214,0 +170782401837,214,0 +170782401885,214,0 +170782401933,214,0 +170782401983,214,0 +170782402030,214,0 +170782402078,214,0 +170782402126,215,0 +170782402176,215,0 +170782402224,215,0 +170782402271,214,0 +170782402319,215,0 +170782402367,215,0 +170782402415,215,0 +170782402465,215,0 +170782402512,214,0 +170782402560,214,0 +170782402610,214,0 +170782402659,214,0 +170782402707,214,0 +170782402755,214,0 +170782402803,214,0 +170782402851,214,0 +170782402900,214,0 +170782402948,214,0 +170782402996,214,0 +170782403044,214,0 +170782403092,214,0 +170782403140,215,0 +170782403190,214,0 +170782403239,215,0 +170782403287,214,0 +170782403335,214,0 +170782403384,214,0 +170782403434,213,0 +170782403482,213,0 +170782403530,214,0 +170782403578,214,0 +170782403626,214,0 +170782403675,214,0 +170782403725,214,0 +170782403773,214,0 +170782403821,214,0 +170782403869,214,0 +170782403918,214,0 +170782403968,214,0 +170782404017,214,0 +170782404067,214,0 +170782404116,214,0 +170782404164,214,0 +170782404212,214,0 +170782404260,213,0 +170782404308,213,0 +170782404356,213,0 +170782404405,213,0 +170782404453,214,0 +170782404502,214,0 +170782404550,214,0 +170782404598,214,0 +170782404647,214,0 +170782404695,214,0 +170782404743,214,0 +170782404791,214,0 +170782404839,214,0 +170782404887,214,0 +170782404937,214,0 +170782404986,215,0 +170782405034,214,0 +170782405084,213,0 +170782405133,213,0 +170782405183,213,0 +170782405231,214,0 +170782405280,214,0 +170782405328,214,0 +170782405376,214,0 +170782405426,214,0 +170782405474,214,0 +170782405521,214,0 +170782405571,214,0 +170782405619,214,0 +170782405668,214,0 +170782405718,214,0 +170782405766,215,0 +170782405814,214,0 +170782405861,214,0 +170782405909,213,0 +170782405957,213,0 +170782406005,213,0 +170782406053,213,0 +170782406101,213,0 +170782406149,213,0 +170782406196,213,0 +170782406244,214,0 +170782406292,214,0 +170782406340,214,0 +170782406388,214,0 +170782406437,214,0 +170782406485,214,0 +170782406533,214,0 +170782406581,214,0 +170782406629,214,0 +170782406678,214,0 +170782406726,213,0 +170782406774,213,0 +170782406822,213,0 +170782406869,213,0 +170782406919,213,0 +170782406967,214,0 +170782407015,213,0 +170782407064,214,0 +170782407114,214,0 +170782407162,214,0 +170782407210,214,0 +170782407258,214,0 +170782407306,214,0 +170782407353,214,0 +170782407403,214,0 +170782407451,214,0 +170782407498,214,0 +170782407546,214,0 +170782407595,213,0 +170782407643,213,0 +170782407691,213,0 +170782407739,214,0 +170782407787,214,0 +170782407835,214,0 +170782407883,214,0 +170782407931,214,0 +170782407979,214,0 +170782408026,214,0 +170782408074,214,0 +170782408124,214,0 +170782408173,214,0 +170782408221,214,0 +170782408271,214,0 +170782408318,214,0 +170782408366,214,0 +170782408414,213,0 +170782408462,213,0 +170782408512,213,0 +170782408560,214,0 +170782408609,214,0 +170782408659,214,0 +170782408707,214,0 +170782408756,214,0 +170782408806,214,0 +170782408855,214,0 +170782408904,214,0 +170782408954,214,0 +170782409002,214,0 +170782409051,214,0 +170782409099,214,0 +170782409147,215,0 +170782409195,214,0 +170782409244,213,0 +170782409294,213,0 +170782409342,214,0 +170782409389,214,0 +170782409437,214,0 +170782409487,214,0 +170782409535,214,0 +170782409583,214,0 +170782409631,214,0 +170782409679,214,0 +170782409728,214,0 +170782409776,214,0 +170782409824,214,0 +170782409872,214,0 +170782409921,214,0 +170782409969,214,0 +170782410017,214,0 +170782410067,214,0 +170782410116,213,0 +170782410164,214,0 +170782410214,214,0 +170782410263,214,0 +170782410313,214,0 +170782410361,214,0 +170782410410,214,0 +170782410458,214,0 +170782410508,214,0 +170782410556,214,0 +170782410605,214,0 +170782410653,215,0 +170782410702,214,0 +170782410752,215,0 +170782410800,215,0 +170782410848,214,0 +170782410896,214,0 +170782410944,214,0 +170782410992,214,0 +170782411040,214,0 +170782411089,214,0 +170782411137,214,0 +170782411187,214,0 +170782411235,214,0 +170782411282,214,0 +170782411330,214,0 +170782411378,215,0 +170782411428,215,0 +170782411477,215,0 +170782411527,215,0 +170782411575,215,0 +170782411623,215,0 +170782411672,215,0 +170782411722,214,0 +170782411771,214,0 +170782411819,214,0 +170782411869,214,0 +170782411917,214,0 +170782411965,214,0 +170782412013,214,0 +170782412061,214,0 +170782412109,215,0 +170782412157,214,0 +170782412205,215,0 +170782412254,215,0 +170782412303,214,0 +170782412351,215,0 +170782412401,215,0 +170782412449,215,0 +170782412498,215,0 +170782412548,214,0 +170782412596,214,0 +170782412644,214,0 +170782412693,214,0 +170782412741,214,0 +170782412789,214,0 +170782412837,214,0 +170782412885,214,0 +170782412934,215,0 +170782412982,214,0 +170782413030,215,0 +170782413079,214,0 +170782413127,215,0 +170782413175,215,0 +170782413225,215,0 +170782413273,215,0 +170782413321,215,0 +170782413370,215,0 +170782413418,214,0 +170782413466,214,0 +170782413515,214,0 +170782413563,214,0 +170782413612,215,0 +170782413662,214,0 +170782413711,215,0 +170782413759,215,0 +170782413809,215,0 +170782413856,215,0 +170782413904,215,0 +170782413952,215,0 +170782414002,215,0 +170782414049,215,0 +170782414097,215,0 +170782414145,215,0 +170782414193,215,0 +170782414241,214,0 +170782414289,214,0 +170782414337,215,0 +170782414385,215,0 +170782414434,215,0 +170782414482,215,0 +170782414530,215,0 +170782414578,215,0 +170782414626,215,0 +170782414673,215,0 +170782414721,215,0 +170782414769,215,0 +170782414817,214,0 +170782414865,215,0 +170782414914,215,0 +170782414962,215,0 +170782415012,215,0 +170782415061,215,0 +170782415109,214,0 +170782415158,214,0 +170782415206,215,0 +170782415254,215,0 +170782415302,215,0 +170782415350,214,0 +170782415400,215,0 +170782415448,215,0 +170782415495,215,0 +170782415543,215,0 +170782415593,215,0 +170782415643,215,0 +170782415690,215,0 +170782415738,215,0 +170782415786,215,0 +170782415834,215,0 +170782415882,214,0 +170782415930,214,0 +170782415978,213,0 +170782416028,214,0 +170782416077,214,0 +170782416125,214,0 +170782416173,214,0 +170782416221,214,0 +170782416269,214,0 +170782416317,214,0 +170782416365,215,0 +170782416414,215,0 +170782416464,215,0 +170782416511,214,0 +170782416559,214,0 +170782416607,215,0 +170782416657,214,0 +170782416705,213,0 +170782416754,213,0 +170782416802,213,0 +170782416852,214,0 +170782416901,214,0 +170782416949,214,0 +170782416997,214,0 +170782417045,214,0 +170782417095,214,0 +170782417143,214,0 +170782417191,214,0 +170782417239,214,0 +170782417288,214,0 +170782417336,214,0 +170782417384,215,0 +170782417432,214,0 +170782417482,214,0 +170782417530,213,0 +170782417578,214,0 +170782417627,214,0 +170782417675,214,0 +170782417723,214,0 +170782417771,214,0 +170782417819,214,0 +170782417868,214,0 +170782417916,214,0 +170782417964,214,0 +170782418012,215,0 +170782418062,214,0 +170782418110,214,0 +170782418159,214,0 +170782418209,214,0 +170782418258,215,0 +170782418306,213,0 +170782418356,213,0 +170782418404,213,0 +170782418452,213,0 +170782418500,213,0 +170782418549,214,0 +170782418597,214,0 +170782418645,214,0 +170782418693,214,0 +170782418741,214,0 +170782418789,214,0 +170782418837,214,0 +170782418885,215,0 +170782418932,215,0 +170782418980,215,0 +170782419030,214,0 +170782419078,214,0 +170782419126,214,0 +170782419175,213,0 +170782419225,213,0 +170782419274,213,0 +170782419322,214,0 +170782419372,214,0 +170782419420,214,0 +170782419468,214,0 +170782419516,214,0 +170782419564,214,0 +170782419613,214,0 +170782419661,214,0 +170782419709,214,0 +170782419759,214,0 +170782419808,214,0 +170782419858,214,0 +170782419906,214,0 +170782419954,213,0 +170782420002,214,0 +170782420050,214,0 +170782420098,214,0 +170782420147,214,0 +170782420195,214,0 +170782420243,214,0 +170782420293,214,0 +170782420341,214,0 +170782420389,214,0 +170782420437,214,0 +170782420486,214,0 +170782420534,214,0 +170782420582,214,0 +170782420630,215,0 +170782420680,214,0 +170782420728,214,0 +170782420776,214,0 +170782420825,214,0 +170782420873,214,0 +170782420923,214,0 +170782420972,214,0 +170782421020,214,0 +170782421068,214,0 +170782421116,214,0 +170782421164,214,0 +170782421214,215,0 +170782421263,215,0 +170782421313,215,0 +170782421362,215,0 +170782421412,215,0 +170782421460,215,0 +170782421509,214,0 +170782421559,214,0 +170782421607,214,0 +170782421656,214,0 +170782421704,214,0 +170782421754,214,0 +170782421802,214,0 +170782421850,214,0 +170782421897,214,0 +170782421947,214,0 +170782421996,214,0 +170782422046,214,0 +170782422094,214,0 +170782422142,215,0 +170782422191,214,0 +170782422239,215,0 +170782422287,214,0 +170782422337,215,0 +170782422385,213,0 +170782422434,214,0 +170782422484,214,0 +170782422532,214,0 +170782422580,214,0 +170782422629,214,0 +170782422677,214,0 +170782422725,214,0 +170782422773,214,0 +170782422821,214,0 +170782422869,214,0 +170782422917,214,0 +170782422966,214,0 +170782423014,215,0 +170782423062,215,0 +170782423110,215,0 +170782423158,214,0 +170782423206,214,0 +170782423254,214,0 +170782423302,214,0 +170782423351,214,0 +170782423399,214,0 +170782423447,214,0 +170782423497,214,0 +170782423546,214,0 +170782423596,214,0 +170782423645,214,0 +170782423695,214,0 +170782423743,214,0 +170782423791,214,0 +170782423840,215,0 +170782423888,215,0 +170782423936,214,0 +170782423984,214,0 +170782424032,213,0 +170782424082,214,0 +170782424131,214,0 +170782424181,214,0 +170782424229,214,0 +170782424277,214,0 +170782424326,214,0 +170782424374,214,0 +170782424424,214,0 +170782424473,214,0 +170782424523,215,0 +170782424571,215,0 +170782424619,214,0 +170782424668,215,0 +170782424718,214,0 +170782424766,214,0 +170782424815,214,0 +170782424865,213,0 +170782424913,214,0 +170782424961,214,0 +170782425008,214,0 +170782425056,214,0 +170782425104,214,0 +170782425154,214,0 +170782425202,214,0 +170782425250,214,0 +170782425299,214,0 +170782425349,214,0 +170782425398,214,0 +170782425446,214,0 +170782425496,214,0 +170782425544,215,0 +170782425592,214,0 +170782425640,214,0 +170782425688,213,0 +170782425737,214,0 +170782425785,214,0 +170782425833,214,0 +170782425882,214,0 +170782425930,214,0 +170782425980,214,0 +170782426029,214,0 +170782426077,214,0 +170782426127,214,0 +170782426175,214,0 +170782426222,215,0 +170782426270,215,0 +170782426320,215,0 +170782426368,214,0 +170782426418,215,0 +170782426467,214,0 +170782426517,214,0 +170782426564,214,0 +170782426614,214,0 +170782426662,214,0 +170782426710,214,0 +170782426758,214,0 +170782426806,214,0 +170782426854,214,0 +170782426903,214,0 +170782426953,214,0 +170782427002,214,0 +170782427050,215,0 +170782427100,214,0 +170782427148,215,0 +170782427197,214,0 +170782427247,214,0 +170782427294,214,0 +170782427342,214,0 +170782427390,214,0 +170782427438,214,0 +170782427486,214,0 +170782427534,214,0 +170782427582,214,0 +170782427629,214,0 +170782427677,215,0 +170782427725,214,0 +170782427773,215,0 +170782427821,215,0 +170782427869,215,0 +170782427916,214,0 +170782427964,214,0 +170782428012,215,0 +170782428060,214,0 +170782428108,214,0 +170782428156,214,0 +170782428204,214,0 +170782428252,214,0 +170782428300,215,0 +170782428347,214,0 +170782428395,215,0 +170782428443,215,0 +170782428493,215,0 +170782428541,215,0 +170782428588,215,0 +170782428636,215,0 +170782428686,215,0 +170782428734,215,0 +170782428782,215,0 +170782428830,214,0 +170782428878,214,0 +170782428925,214,0 +170782428975,214,0 +170782429023,214,0 +170782429072,214,0 +170782429122,214,0 +170782429171,214,0 +170782429219,215,0 +170782429269,214,0 +170782429318,215,0 +170782429366,214,0 +170782429414,215,0 +170782429464,215,0 +170782429513,215,0 +170782429561,215,0 +170782429609,215,0 +170782429659,214,0 +170782429706,214,0 +170782429754,214,0 +170782429802,214,0 +170782429850,214,0 +170782429898,214,0 +170782429946,214,0 +170782429994,214,0 +170782430042,214,0 +170782430089,214,0 +170782430137,215,0 +170782430185,214,0 +170782430233,215,0 +170782430281,214,0 +170782430329,215,0 +170782430376,215,0 +170782430424,214,0 +170782430472,214,0 +170782430520,214,0 +170782430570,214,0 +170782430619,214,0 +170782430667,214,0 +170782430716,214,0 +170782430764,214,0 +170782430812,214,0 +170782430860,214,0 +170782430908,214,0 +170782430958,214,0 +170782431008,214,0 +170782431056,214,0 +170782431103,214,0 +170782431151,214,0 +170782431199,215,0 +170782431247,214,0 +170782431295,214,0 +170782431345,213,0 +170782431394,213,0 +170782431444,214,0 +170782431491,214,0 +170782431541,214,0 +170782431589,214,0 +170782431637,214,0 +170782431686,214,0 +170782431734,214,0 +170782431782,214,0 +170782431830,215,0 +170782431878,215,0 +170782431926,214,0 +170782431976,215,0 +170782432025,214,0 +170782432075,214,0 +170782432123,214,0 +170782432170,213,0 +170782432218,213,0 +170782432266,213,0 +170782432314,214,0 +170782432362,214,0 +170782432409,214,0 +170782432459,214,0 +170782432508,214,0 +170782432556,214,0 +170782432604,214,0 +170782432652,214,0 +170782432701,214,0 +170782432749,214,0 +170782432797,214,0 +170782432846,215,0 +170782432894,214,0 +170782432942,214,0 +170782432992,214,0 +170782433040,214,0 +170782433087,213,0 +170782433135,214,0 +170782433185,214,0 +170782433233,214,0 +170782433281,214,0 +170782433330,214,0 +170782433380,214,0 +170782433428,214,0 +170782433475,214,0 +170782433523,214,0 +170782433573,214,0 +170782433621,214,0 +170782433669,214,0 +170782433718,214,0 +170782433766,213,0 +170782433814,213,0 +170782433861,214,0 +170782433909,214,0 +170782433959,214,0 +170782434008,214,0 +170782434056,214,0 +170782434105,214,0 +170782434153,214,0 +170782434201,214,0 +170782434249,214,0 +170782434297,215,0 +170782434346,215,0 +170782434394,215,0 +170782434442,215,0 +170782434490,214,0 +170782434538,214,0 +170782434586,214,0 +170782434633,214,0 +170782434681,214,0 +170782434729,214,0 +170782434779,214,0 +170782434827,214,0 +170782434875,214,0 +170782434923,214,0 +170782434971,214,0 +170782435020,214,0 +170782435068,214,0 +170782435118,215,0 +170782435165,214,0 +170782435213,215,0 +170782435261,215,0 +170782435311,215,0 +170782435359,214,0 +170782435406,213,0 +170782435454,214,0 +170782435502,214,0 +170782435550,214,0 +170782435598,214,0 +170782435646,214,0 +170782435693,214,0 +170782435741,214,0 +170782435789,214,0 +170782435837,214,0 +170782435885,215,0 +170782435933,214,0 +170782435980,215,0 +170782436028,214,0 +170782436076,215,0 +170782436124,214,0 +170782436172,214,0 +170782436220,214,0 +170782436269,213,0 +170782436317,214,0 +170782436365,214,0 +170782436413,214,0 +170782436462,214,0 +170782436510,214,0 +170782436558,214,0 +170782436607,214,0 +170782436655,214,0 +170782436703,214,0 +170782436751,215,0 +170782436799,214,0 +170782436846,215,0 +170782436894,215,0 +170782436942,214,0 +170782436990,214,0 +170782437038,213,0 +170782437086,213,0 +170782437134,213,0 +170782437182,214,0 +170782437229,214,0 +170782437277,214,0 +170782437327,214,0 +170782437374,214,0 +170782437422,214,0 +170782437470,214,0 +170782437519,214,0 +170782437567,214,0 +170782437615,214,0 +170782437663,214,0 +170782437711,214,0 +170782437759,214,0 +170782437807,214,0 +170782437854,213,0 +170782437902,213,0 +170782437952,214,0 +170782438000,213,0 +170782438049,214,0 +170782438097,214,0 +170782438145,214,0 +170782438193,214,0 +170782438243,214,0 +170782438291,214,0 +170782438340,214,0 +170782438388,214,0 +170782438438,215,0 +170782438486,214,0 +170782438535,214,0 +170782438585,214,0 +170782438632,213,0 +170782438680,213,0 +170782438728,213,0 +170782438776,213,0 +170782438826,213,0 +170782438874,214,0 +170782438921,214,0 +170782438969,214,0 +170782439019,214,0 +170782439068,214,0 +170782439116,214,0 +170782439164,214,0 +170782439214,214,0 +170782439262,214,0 +170782439310,214,0 +170782439358,214,0 +170782439406,214,0 +170782439454,213,0 +170782439501,213,0 +170782439549,213,0 +170782439597,213,0 +170782439647,213,0 +170782439695,213,0 +170782439743,213,0 +170782439791,213,0 +170782439839,214,0 +170782439886,214,0 +170782439936,214,0 +170782439985,214,0 +170782440035,214,0 +170782440083,214,0 +170782440131,214,0 +170782440179,214,0 +170782440228,214,0 +170782440276,213,0 +170782440324,213,0 +170782440373,213,0 +170782440421,214,0 +170782440469,213,0 +170782440519,214,0 +170782440568,214,0 +170782440616,214,0 +170782440666,214,0 +170782440713,214,0 +170782440761,214,0 +170782440809,214,0 +170782440859,215,0 +170782440906,214,0 +170782440954,215,0 +170782441002,214,0 +170782441052,213,0 +170782441101,213,0 +170782441149,214,0 +170782441197,214,0 +170782441245,214,0 +170782441293,214,0 +170782441342,214,0 +170782441390,214,0 +170782441440,214,0 +170782441488,214,0 +170782441536,215,0 +170782441585,214,0 +170782441635,214,0 +170782441683,215,0 +170782441731,215,0 +170782441779,214,0 +170782441828,214,0 +170782441876,214,0 +170782441926,214,0 +170782441975,214,0 +170782442023,214,0 +170782442073,214,0 +170782442121,214,0 +170782442169,214,0 +170782442218,214,0 +170782442266,214,0 +170782442314,214,0 +170782442362,214,0 +170782442410,215,0 +170782442458,214,0 +170782442506,215,0 +170782442555,214,0 +170782442603,214,0 +170782442653,214,0 +170782442702,214,0 +170782442750,214,0 +170782442798,214,0 +170782442846,214,0 +170782442894,214,0 +170782442944,214,0 +170782442992,214,0 +170782443041,215,0 +170782443089,215,0 +170782443138,215,0 +170782443186,215,0 +170782443234,215,0 +170782443282,215,0 +170782443332,215,0 +170782443381,215,0 +170782443431,214,0 +170782443480,214,0 +170782443528,214,0 +170782443578,214,0 +170782443626,214,0 +170782443675,214,0 +170782443723,214,0 +170782443771,214,0 +170782443820,214,0 +170782443868,214,0 +170782443916,214,0 +170782443964,215,0 +170782444012,214,0 +170782444060,215,0 +170782444108,214,0 +170782444156,215,0 +170782444204,214,0 +170782444253,214,0 +170782444301,214,0 +170782444349,214,0 +170782444398,214,0 +170782444446,214,0 +170782444494,214,0 +170782444543,214,0 +170782444593,214,0 +170782444641,214,0 +170782444689,214,0 +170782444738,214,0 +170782444786,214,0 +170782444836,215,0 +170782444884,214,0 +170782444932,215,0 +170782444980,214,0 +170782445027,214,0 +170782445077,214,0 +170782445125,214,0 +170782445173,214,0 +170782445221,214,0 +170782445269,214,0 +170782445317,214,0 +170782445365,214,0 +170782445413,214,0 +170782445461,214,0 +170782445509,215,0 +170782445557,214,0 +170782445606,214,0 +170782445654,215,0 +170782445702,214,0 +170782445750,214,0 +170782445798,214,0 +170782445846,214,0 +170782445895,214,0 +170782445943,214,0 +170782445991,214,0 +170782446041,214,0 +170782446089,214,0 +170782446137,214,0 +170782446184,214,0 +170782446234,214,0 +170782446283,215,0 +170782446331,215,0 +170782446379,215,0 +170782446427,215,0 +170782446477,215,0 +170782446525,215,0 +170782446574,215,0 +170782446622,214,0 +170782446670,214,0 +170782446720,214,0 +170782446767,214,0 +170782446815,214,0 +170782446865,214,0 +170782446914,215,0 +170782446964,214,0 +170782447013,215,0 +170782447063,215,0 +170782447112,215,0 +170782447160,215,0 +170782447208,215,0 +170782447256,214,0 +170782447304,215,0 +170782447352,215,0 +170782447400,214,0 +170782447448,214,0 +170782447498,214,0 +170782447546,214,0 +170782447594,214,0 +170782447641,214,0 +170782447689,214,0 +170782447737,214,0 +170782447785,214,0 +170782447833,214,0 +170782447883,214,0 +170782447931,215,0 +170782447980,215,0 +170782448030,215,0 +170782448079,215,0 +170782448129,214,0 +170782448178,214,0 +170782448226,214,0 +170782448276,214,0 +170782448325,214,0 +170782448375,214,0 +170782448423,214,0 +170782448471,214,0 +170782448519,214,0 +170782448567,214,0 +170782448615,214,0 +170782448662,215,0 +170782448712,214,0 +170782448761,215,0 +170782448811,214,0 +170782448859,214,0 +170782448908,215,0 +170782448956,215,0 +170782449004,214,0 +170782449052,214,0 +170782449100,213,0 +170782449148,214,0 +170782449196,214,0 +170782449244,214,0 +170782449292,214,0 +170782449340,214,0 +170782449388,214,0 +170782449436,214,0 +170782449483,214,0 +170782449531,214,0 +170782449581,215,0 +170782449629,215,0 +170782449677,215,0 +170782449725,215,0 +170782449772,215,0 +170782449822,214,0 +170782449870,213,0 +170782449919,213,0 +170782449967,214,0 +170782450015,214,0 +170782450063,214,0 +170782450112,214,0 +170782450160,214,0 +170782450208,214,0 +170782450257,214,0 +170782450305,214,0 +170782450353,215,0 +170782450401,215,0 +170782450448,214,0 +170782450496,215,0 +170782450546,215,0 +170782450594,214,0 +170782450641,213,0 +170782450689,213,0 +170782450737,213,0 +170782450785,213,0 +170782450834,213,0 +170782450884,214,0 +170782450931,214,0 +170782450979,214,0 +170782451027,214,0 +170782451075,214,0 +170782451123,214,0 +170782451170,214,0 +170782451218,214,0 +170782451268,214,0 +170782451316,214,0 +170782451363,215,0 +170782451413,214,0 +170782451461,213,0 +170782451508,213,0 +170782451558,214,0 +170782451606,214,0 +170782451655,214,0 +170782451704,214,0 +170782451752,214,0 +170782451800,214,0 +170782451849,214,0 +170782451897,214,0 +170782451945,214,0 +170782451993,214,0 +170782452043,214,0 +170782452091,214,0 +170782452140,214,0 +170782452188,214,0 +170782452236,214,0 +170782452284,213,0 +170782452332,214,0 +170782452380,214,0 +170782452429,214,0 +170782452477,214,0 +170782452525,214,0 +170782452573,214,0 +170782452621,214,0 +170782452669,214,0 +170782452719,214,0 +170782452767,214,0 +170782452816,214,0 +170782452866,214,0 +170782452915,214,0 +170782452963,214,0 +170782453011,214,0 +170782453061,213,0 +170782453110,213,0 +170782453160,213,0 +170782453209,214,0 +170782453259,213,0 +170782453307,213,0 +170782453355,214,0 +170782453403,214,0 +170782453451,214,0 +170782453500,214,0 +170782453548,214,0 +170782453598,214,0 +170782453646,214,0 +170782453694,214,0 +170782453743,214,0 +170782453791,214,0 +170782453840,214,0 +170782453890,213,0 +170782453940,213,0 +170782453988,213,0 +170782454035,213,0 +170782454083,213,0 +170782454133,213,0 +170782454182,213,0 +170782454230,213,0 +170782454280,214,0 +170782454328,214,0 +170782454376,214,0 +170782454425,214,0 +170782454475,214,0 +170782454524,214,0 +170782454572,214,0 +170782454622,214,0 +170782454671,214,0 +170782454719,214,0 +170782454769,214,0 +170782454818,214,0 +170782454866,214,0 +170782454914,214,0 +170782454962,214,0 +170782455012,215,0 +170782455060,214,0 +170782455108,215,0 +170782455156,215,0 +170782455203,215,0 +170782455251,215,0 +170782455299,214,0 +170782455349,214,0 +170782455398,215,0 +170782455446,214,0 +170782455494,214,0 +170782455544,215,0 +170782455593,215,0 +170782455641,215,0 +170782455689,215,0 +170782455737,215,0 +170782455785,215,0 +170782455833,215,0 +170782455880,215,0 +170782455928,215,0 +170782455976,215,0 +170782456024,215,0 +170782456074,215,0 +170782456122,215,0 +170782456171,214,0 +170782456219,215,0 +170782456268,215,0 +170782456316,215,0 +170782456366,214,0 +170782456414,214,0 +170782456461,215,0 +170782456509,215,0 +170782456557,215,0 +170782456607,215,0 +170782456656,215,0 +170782456704,215,0 +170782456753,215,0 +170782456801,214,0 +170782456849,214,0 +170782456897,215,0 +170782456945,215,0 +170782456995,214,0 +170782457042,215,0 +170782457090,214,0 +170782457138,214,0 +170782457186,214,0 +170782457236,214,0 +170782457284,214,0 +170782457333,214,0 +170782457381,214,0 +170782457431,214,0 +170782457479,214,0 +170782457528,214,0 +170782457578,214,0 +170782457627,215,0 +170782457677,215,0 +170782457724,214,0 +170782457772,215,0 +170782457820,214,0 +170782457870,214,0 +170782457918,214,0 +170782457967,214,0 +170782458015,214,0 +170782458063,214,0 +170782458111,214,0 +170782458159,214,0 +170782458209,214,0 +170782458257,215,0 +170782458305,214,0 +170782458353,215,0 +170782458400,215,0 +170782458448,214,0 +170782458496,214,0 +170782458546,214,0 +170782458594,214,0 +170782458643,214,0 +170782458691,213,0 +170782458741,213,0 +170782458789,213,0 +170782458838,213,0 +170782458886,214,0 +170782458935,214,0 +170782458983,214,0 +170782459031,214,0 +170782459081,214,0 +170782459130,214,0 +170782459178,214,0 +170782459226,214,0 +170782459274,214,0 +170782459322,214,0 +170782459370,214,0 +170782459418,215,0 +170782459468,214,0 +170782459516,213,0 +170782459565,214,0 +170782459615,214,0 +170782459664,214,0 +170782459712,214,0 +170782459760,214,0 +170782459808,214,0 +170782459857,214,0 +170782459905,214,0 +170782459953,214,0 +170782460001,214,0 +170782460048,214,0 +170782460096,215,0 +170782460144,214,0 +170782460192,214,0 +170782460240,214,0 +170782460288,213,0 +170782460336,213,0 +170782460383,214,0 +170782460433,214,0 +170782460482,214,0 +170782460532,214,0 +170782460580,214,0 +170782460628,214,0 +170782460675,214,0 +170782460725,214,0 +170782460773,214,0 +170782460822,214,0 +170782460872,215,0 +170782460920,214,0 +170782460968,214,0 +170782461016,214,0 +170782461064,214,0 +170782461113,213,0 +170782461161,213,0 +170782461209,214,0 +170782461257,214,0 +170782461305,214,0 +170782461353,214,0 +170782461401,214,0 +170782461450,214,0 +170782461498,214,0 +170782461546,214,0 +170782461595,214,0 +170782461645,214,0 +170782461693,215,0 +170782461741,214,0 +170782461789,215,0 +170782461838,214,0 +170782461886,213,0 +170782461934,213,0 +170782461982,213,0 +170782462030,214,0 +170782462078,213,0 +170782462126,214,0 +170782462175,214,0 +170782462223,214,0 +170782462273,214,0 +170782462322,214,0 +170782462370,214,0 +170782462420,214,0 +170782462468,214,0 +170782462516,214,0 +170782462563,214,0 +170782462613,214,0 +170782462662,214,0 +170782462710,213,0 +170782462760,213,0 +170782462808,213,0 +170782462857,213,0 +170782462907,213,0 +170782462955,213,0 +170782463003,213,0 +170782463052,213,0 +170782463100,214,0 +170782463148,214,0 +170782463196,214,0 +170782463244,214,0 +170782463293,214,0 +170782463343,214,0 +170782463391,214,0 +170782463440,214,0 +170782463490,213,0 +170782463538,213,0 +170782463587,213,0 +170782463635,214,0 +170782463685,214,0 +170782463734,214,0 +170782463782,214,0 +170782463830,214,0 +170782463878,214,0 +170782463926,214,0 +170782463974,214,0 +170782464024,214,0 +170782464072,214,0 +170782464120,214,0 +170782464167,214,0 +170782464217,214,0 +170782464265,214,0 +170782464313,213,0 +170782464361,213,0 +170782464409,213,0 +170782464457,214,0 +170782464505,214,0 +170782464553,214,0 +170782464600,214,0 +170782464648,214,0 +170782464696,214,0 +170782464746,214,0 +170782464794,214,0 +170782464843,214,0 +170782464891,215,0 +170782464941,215,0 +170782464989,214,0 +170782465037,214,0 +170782465086,214,0 +170782465136,213,0 +170782465185,214,0 +170782465233,214,0 +170782465283,214,0 +170782465331,214,0 +170782465380,214,0 +170782465430,214,0 +170782465478,214,0 +170782465527,214,0 +170782465575,214,0 +170782465623,215,0 +170782465671,214,0 +170782465719,214,0 +170782465767,214,0 +170782465816,214,0 +170782465866,214,0 +170782465914,214,0 +170782465962,213,0 +170782466010,214,0 +170782466058,214,0 +170782466105,214,0 +170782466153,214,0 +170782466203,214,0 +170782466251,214,0 +170782466300,214,0 +170782466350,214,0 +170782466398,214,0 +170782466447,215,0 +170782466495,214,0 +170782466545,214,0 +170782466594,215,0 +170782466642,214,0 +170782466690,214,0 +170782466738,213,0 +170782466788,214,0 +170782466835,214,0 +170782466885,214,0 +170782466933,214,0 +170782466981,214,0 +170782467030,214,0 +170782467078,214,0 +170782467126,214,0 +170782467174,215,0 +170782467222,214,0 +170782467270,214,0 +170782467318,214,0 +170782467367,215,0 +170782467415,214,0 +170782467463,214,0 +170782467511,214,0 +170782467561,214,0 +170782467609,214,0 +170782467658,214,0 +170782467708,214,0 +170782467757,214,0 +170782467805,215,0 +170782467853,214,0 +170782467901,214,0 +170782467951,215,0 +170782468000,214,0 +170782468048,215,0 +170782468096,215,0 +170782468144,215,0 +170782468194,215,0 +170782468242,215,0 +170782468290,215,0 +170782468338,214,0 +170782468388,214,0 +170782468437,215,0 +170782468485,215,0 +170782468535,215,0 +170782468582,215,0 +170782468630,215,0 +170782468678,215,0 +170782468726,215,0 +170782468774,215,0 +170782468822,215,0 +170782468870,214,0 +170782468918,215,0 +170782468966,215,0 +170782469014,215,0 +170782469062,214,0 +170782469110,214,0 +170782469159,214,0 +170782469209,214,0 +170782469257,214,0 +170782469305,214,0 +170782469354,215,0 +170782469402,214,0 +170782469450,215,0 +170782469498,215,0 +170782469546,214,0 +170782469594,215,0 +170782469644,215,0 +170782469691,215,0 +170782469739,215,0 +170782469789,215,0 +170782469837,215,0 +170782469886,215,0 +170782469936,214,0 +170782469985,214,0 +170782470033,214,0 +170782470081,214,0 +170782470129,214,0 +170782470177,214,0 +170782470225,214,0 +170782470272,214,0 +170782470320,214,0 +170782470370,214,0 +170782470418,214,0 +170782470466,214,0 +170782470515,214,0 +170782470563,214,0 +170782470611,214,0 +170782470659,214,0 +170782470709,215,0 +170782470756,214,0 +170782470806,215,0 +170782470854,214,0 +170782470903,213,0 +170782470951,213,0 +170782470999,214,0 +170782471047,214,0 +170782471097,214,0 +170782471145,214,0 +170782471193,214,0 +170782471241,214,0 +170782471290,214,0 +170782471340,214,0 +170782471388,214,0 +170782471436,214,0 +170782471483,214,0 +170782471531,214,0 +170782471579,214,0 +170782471627,214,0 +170782471675,214,0 +170782471723,214,0 +170782471771,213,0 +170782471819,213,0 +170782471869,213,0 +170782471918,213,0 +170782471966,213,0 +170782472015,213,0 +170782472063,213,0 +170782472111,214,0 +170782472159,214,0 +170782472207,214,0 +170782472255,214,0 +170782472303,214,0 +170782472352,214,0 +170782472400,214,0 +170782472448,214,0 +170782472498,214,0 +170782472546,214,0 +170782472595,214,0 +170782472645,214,0 +170782472694,214,0 +170782472743,214,0 +170782472793,214,0 +170782472841,214,0 +170782472890,214,0 +170782472940,214,0 +170782472988,214,0 +170782473037,214,0 +170782473085,213,0 +170782473133,213,0 +170782473182,213,0 +170782473230,213,0 +170782473278,214,0 +170782473328,214,0 +170782473376,214,0 +170782473424,214,0 +170782473473,214,0 +170782473521,214,0 +170782473570,214,0 +170782473618,214,0 +170782473666,214,0 +170782473714,214,0 +170782473763,214,0 +170782473811,214,0 +170782473861,214,0 +170782473909,214,0 +170782473956,213,0 +170782474004,213,0 +170782474054,214,0 +170782474102,213,0 +170782474151,214,0 +170782474200,214,0 +170782474248,214,0 +170782474296,214,0 +170782474344,214,0 +170782474392,214,0 +170782474440,214,0 +170782474488,214,0 +170782474536,214,0 +170782474585,214,0 +170782474633,215,0 +170782474682,215,0 +170782474730,214,0 +170782474778,213,0 +170782474827,213,0 +170782474875,213,0 +170782474923,213,0 +170782474971,213,0 +170782475019,213,0 +170782475067,213,0 +170782475116,213,0 +170782475164,214,0 +170782475212,214,0 +170782475261,214,0 +170782475309,214,0 +170782475357,214,0 +170782475405,214,0 +170782475453,214,0 +170782475502,214,0 +170782475550,214,0 +170782475599,214,0 +170782475647,214,0 +170782475695,213,0 +170782475743,213,0 +170782475791,213,0 +170782475838,213,0 +170782475886,213,0 +170782475934,213,0 +170782475984,213,0 +170782476031,213,0 +170782476079,214,0 +170782476127,214,0 +170782476175,214,0 +170782476223,214,0 +170782476270,214,0 +170782476318,214,0 +170782476366,214,0 +170782476414,214,0 +170782476462,214,0 +170782476509,214,0 +170782476557,213,0 +170782476605,213,0 +170782476653,214,0 +170782476702,213,0 +170782476750,213,0 +170782476798,214,0 +170782476846,214,0 +170782476894,214,0 +170782476942,214,0 +170782476989,214,0 +170782477037,214,0 +170782477085,214,0 +170782477133,214,0 +170782477181,215,0 +170782477230,214,0 +170782477279,214,0 +170782477327,214,0 +170782477375,214,0 +170782477423,213,0 +170782477471,213,0 +170782477520,214,0 +170782477570,213,0 +170782477619,214,0 +170782477667,214,0 +170782477715,214,0 +170782477763,214,0 +170782477813,214,0 +170782477860,214,0 +170782477908,214,0 +170782477956,214,0 +170782478004,214,0 +170782478052,215,0 +170782478100,215,0 +170782478148,214,0 +170782478196,214,0 +170782478245,214,0 +170782478293,213,0 +170782478342,214,0 +170782478390,213,0 +170782478438,214,0 +170782478486,214,0 +170782478534,214,0 +170782478582,214,0 +170782478629,214,0 +170782478677,214,0 +170782478725,214,0 +170782478773,214,0 +170782478821,214,0 +170782478869,214,0 +170782478917,214,0 +170782478964,214,0 +170782479012,215,0 +170782479060,215,0 +170782479110,214,0 +170782479158,214,0 +170782479206,214,0 +170782479254,214,0 +170782479301,214,0 +170782479349,214,0 +170782479399,214,0 +170782479447,214,0 +170782479495,214,0 +170782479543,214,0 +170782479592,214,0 +170782479640,214,0 +170782479688,214,0 +170782479736,215,0 +170782479784,214,0 +170782479831,215,0 +170782479879,214,0 +170782479927,214,0 +170782479975,214,0 +170782480024,214,0 +170782480072,214,0 +170782480120,214,0 +170782480168,214,0 +170782480217,214,0 +170782480265,214,0 +170782480313,214,0 +170782480360,214,0 +170782480408,214,0 +170782480456,214,0 +170782480504,215,0 +170782480552,214,0 +170782480600,214,0 +170782480647,214,0 +170782480695,214,0 +170782480743,214,0 +170782480791,214,0 +170782480839,214,0 +170782480887,213,0 +170782480934,213,0 +170782480982,214,0 +170782481030,213,0 +170782481078,214,0 +170782481126,214,0 +170782481174,214,0 +170782481224,214,0 +170782481272,214,0 +170782481320,214,0 +170782481368,214,0 +170782481416,214,0 +170782481465,215,0 +170782481513,214,0 +170782481561,214,0 +170782481610,214,0 +170782481658,214,0 +170782481706,215,0 +170782481754,213,0 +170782481802,213,0 +170782481850,214,0 +170782481899,214,0 +170782481947,214,0 +170782481995,214,0 +170782482043,214,0 +170782482091,214,0 +170782482139,214,0 +170782482187,214,0 +170782482235,214,0 +170782482282,214,0 +170782482330,214,0 +170782482378,215,0 +170782482427,214,0 +170782482475,214,0 +170782482523,215,0 +170782482573,214,0 +170782482622,214,0 +170782482670,213,0 +170782482719,213,0 +170782482767,214,0 +170782482815,214,0 +170782482863,214,0 +170782482913,213,0 +170782482962,214,0 +170782483010,214,0 +170782483060,214,0 +170782483108,214,0 +170782483155,214,0 +170782483203,214,0 +170782483251,214,0 +170782483299,214,0 +170782483349,215,0 +170782483398,214,0 +170782483448,214,0 +170782483497,213,0 +170782483545,213,0 +170782483595,214,0 +170782483643,213,0 +170782483691,213,0 +170782483738,214,0 +170782483788,214,0 +170782483837,214,0 +170782483885,214,0 +170782483935,214,0 +170782483983,214,0 +170782484032,214,0 +170782484082,214,0 +170782484131,214,0 +170782484179,215,0 +170782484227,214,0 +170782484274,215,0 +170782484324,214,0 +170782484372,213,0 +170782484420,213,0 +170782484468,214,0 +170782484516,214,0 +170782484565,214,0 +170782484613,214,0 +170782484662,214,0 +170782484712,214,0 +170782484761,214,0 +170782484811,214,0 +170782484861,214,0 +170782484910,214,0 +170782484958,214,0 +170782485006,214,0 +170782485054,214,0 +170782485102,215,0 +170782485150,214,0 +170782485200,214,0 +170782485249,213,0 +170782485297,213,0 +170782485345,213,0 +170782485393,213,0 +170782485442,213,0 +170782485490,214,0 +170782485538,213,0 +170782485586,214,0 +170782485634,214,0 +170782485683,214,0 +170782485733,214,0 +170782485781,214,0 +170782485828,214,0 +170782485876,214,0 +170782485924,214,0 +170782485972,214,0 +170782486020,214,0 +170782486068,214,0 +170782486116,213,0 +170782486163,213,0 +170782486211,214,0 +170782486259,213,0 +170782486307,213,0 +170782486355,213,0 +170782486403,214,0 +170782486451,214,0 +170782486499,214,0 +170782486546,214,0 +170782486594,214,0 +170782486644,214,0 +170782486693,214,0 +170782486741,214,0 +170782486789,214,0 +170782486837,214,0 +170782486885,214,0 +170782486934,214,0 +170782486982,213,0 +170782487032,213,0 +170782487080,213,0 +170782487129,213,0 +170782487179,213,0 +170782487227,214,0 +170782487275,214,0 +170782487323,214,0 +170782487372,214,0 +170782487420,214,0 +170782487469,214,0 +170782487517,214,0 +170782487565,214,0 +170782487613,214,0 +170782487663,215,0 +170782487712,214,0 +170782487762,214,0 +170782487810,214,0 +170782487858,213,0 +170782487906,213,0 +170782487954,213,0 +170782488002,214,0 +170782488050,214,0 +170782488098,214,0 +170782488146,214,0 +170782488194,214,0 +170782488242,214,0 +170782488289,214,0 +170782488337,214,0 +170782488387,214,0 +170782488435,214,0 +170782488483,214,0 +170782488532,214,0 +170782488580,214,0 +170782488628,215,0 +170782488676,214,0 +170782488724,214,0 +170782488772,214,0 +170782488821,214,0 +170782488871,214,0 +170782488919,214,0 +170782488967,214,0 +170782489016,214,0 +170782489064,214,0 +170782489112,214,0 +170782489160,214,0 +170782489208,214,0 +170782489256,214,0 +170782489305,215,0 +170782489355,214,0 +170782489403,214,0 +170782489452,214,0 +170782489500,214,0 +170782489548,214,0 +170782489596,214,0 +170782489645,214,0 +170782489693,214,0 +170782489741,214,0 +170782489788,214,0 +170782489836,214,0 +170782489884,214,0 +170782489934,214,0 +170782489981,214,0 +170782490031,214,0 +170782490079,215,0 +170782490127,214,0 +170782490174,214,0 +170782490222,214,0 +170782490272,214,0 +170782490320,214,0 +170782490367,215,0 +170782490415,214,0 +170782490463,214,0 +170782490511,214,0 +170782490560,214,0 +170782490608,214,0 +170782490656,214,0 +170782490704,214,0 +170782490753,214,0 +170782490801,214,0 +170782490849,214,0 +170782490897,214,0 +170782490945,214,0 +170782490993,214,0 +170782491041,214,0 +170782491088,214,0 +170782491136,214,0 +170782491184,215,0 +170782491232,214,0 +170782491280,214,0 +170782491328,214,0 +170782491376,214,0 +170782491423,214,0 +170782491471,213,0 +170782491519,214,0 +170782491567,213,0 +170782491615,214,0 +170782491665,214,0 +170782491713,214,0 +170782491760,214,0 +170782491808,214,0 +170782491856,214,0 +170782491906,214,0 +170782491955,214,0 +170782492005,215,0 +170782492053,215,0 +170782492101,214,0 +170782492149,214,0 +170782492198,214,0 +170782492248,213,0 +170782492296,213,0 +170782492345,213,0 +170782492393,213,0 +170782492441,214,0 +170782492489,214,0 +170782492537,214,0 +170782492586,214,0 +170782492636,214,0 +170782492685,214,0 +170782492733,214,0 +170782492781,214,0 +170782492829,214,0 +170782492879,215,0 +170782492927,214,0 +170782492976,214,0 +170782493024,214,0 +170782493074,213,0 +170782493123,213,0 +170782493171,213,0 +170782493219,213,0 +170782493268,213,0 +170782493316,213,0 +170782493364,213,0 +170782493412,214,0 +170782493460,214,0 +170782493509,214,0 +170782493557,214,0 +170782493605,214,0 +170782493653,214,0 +170782493701,214,0 +170782493748,214,0 +170782493796,214,0 +170782493844,214,0 +170782493892,214,0 +170782493940,213,0 +170782493988,213,0 +170782494035,213,0 +170782494083,213,0 +170782494131,213,0 +170782494179,213,0 +170782494227,213,0 +170782494275,213,0 +170782494323,213,0 +170782494371,213,0 +170782494419,214,0 +170782494466,213,0 +170782494514,214,0 +170782494562,214,0 +170782494610,214,0 +170782494658,214,0 +170782494707,214,0 +170782494755,214,0 +170782494803,213,0 +170782494851,213,0 +170782494900,213,0 +170782494948,213,0 +170782494996,213,0 +170782495044,214,0 +170782495092,214,0 +170782495140,213,0 +170782495189,214,0 +170782495237,214,0 +170782495285,214,0 +170782495332,214,0 +170782495380,214,0 +170782495428,214,0 +170782495478,214,0 +170782495525,214,0 +170782495573,214,0 +170782495621,214,0 +170782495669,213,0 +170782495717,213,0 +170782495765,213,0 +170782495813,213,0 +170782495860,213,0 +170782495908,214,0 +170782495956,213,0 +170782496004,214,0 +170782496052,214,0 +170782496100,214,0 +170782496148,214,0 +170782496195,214,0 +170782496243,214,0 +170782496291,214,0 +170782496339,214,0 +170782496387,215,0 +170782496435,214,0 +170782496482,214,0 +170782496530,214,0 +170782496578,213,0 +170782496626,213,0 +170782496675,214,0 +170782496725,213,0 +170782496773,214,0 +170782496820,214,0 +170782496868,214,0 +170782496916,214,0 +170782496964,214,0 +170782497012,214,0 +170782497060,214,0 +170782497108,214,0 +170782497157,214,0 +170782497206,214,0 +170782497254,214,0 +170782497302,214,0 +170782497350,214,0 +170782497398,214,0 +170782497446,213,0 +170782497494,213,0 +170782497542,213,0 +170782497591,213,0 +170782497639,213,0 +170782497687,214,0 +170782497736,214,0 +170782497784,214,0 +170782497834,214,0 +170782497883,214,0 +170782497933,214,0 +170782497981,214,0 +170782498029,214,0 +170782498076,214,0 +170782498124,214,0 +170782498174,214,0 +170782498223,215,0 +170782498273,214,0 +170782498322,213,0 +170782498370,213,0 +170782498420,213,0 +170782498467,213,0 +170782498515,213,0 +170782498563,213,0 +170782498611,213,0 +170782498659,213,0 +170782498709,214,0 +170782498758,214,0 +170782498806,214,0 +170782498856,214,0 +170782498905,214,0 +170782498953,214,0 +170782499001,214,0 +170782499049,214,0 +170782499097,214,0 +170782499146,214,0 +170782499194,213,0 +170782499244,213,0 +170782499293,213,0 +170782499343,214,0 +170782499392,213,0 +170782499440,213,0 +170782499488,214,0 +170782499537,214,0 +170782499587,214,0 +170782499635,214,0 +170782499682,214,0 +170782499730,214,0 +170782499780,214,0 +170782499828,214,0 +170782499876,214,0 +170782499924,215,0 +170782499973,214,0 +170782500021,213,0 +170782500069,213,0 +170782500117,213,0 +170782500165,213,0 +170782500214,213,0 +170782500262,213,0 +170782500310,214,0 +170782500358,214,0 +170782500406,214,0 +170782500454,214,0 +170782500502,214,0 +170782500550,214,0 +170782500599,214,0 +170782500647,214,0 +170782500695,214,0 +170782500743,214,0 +170782500791,214,0 +170782500839,214,0 +170782500887,214,0 +170782500935,213,0 +170782500983,213,0 +170782501031,214,0 +170782501079,213,0 +170782501127,213,0 +170782501175,214,0 +170782501224,213,0 +170782501272,214,0 +170782501320,213,0 +170782501368,214,0 +170782501416,214,0 +170782501464,214,0 +170782501513,214,0 +170782501561,214,0 +170782501611,214,0 +170782501658,214,0 +170782501706,214,0 +170782501754,214,0 +170782501802,213,0 +170782501850,213,0 +170782501898,214,0 +170782501948,213,0 +170782501995,214,0 +170782502043,213,0 +170782502091,214,0 +170782502141,214,0 +170782502190,214,0 +170782502238,214,0 +170782502286,214,0 +170782502334,214,0 +170782502382,214,0 +170782502430,214,0 +170782502478,214,0 +170782502526,214,0 +170782502575,214,0 +170782502623,214,0 +170782502671,213,0 +170782502719,213,0 +170782502766,213,0 +170782502814,213,0 +170782502864,214,0 +170782502912,214,0 +170782502960,214,0 +170782503009,213,0 +170782503057,214,0 +170782503106,214,0 +170782503156,214,0 +170782503204,214,0 +170782503252,214,0 +170782503299,214,0 +170782503347,214,0 +170782503395,215,0 +170782503443,214,0 +170782503491,214,0 +170782503539,213,0 +170782503587,214,0 +170782503636,214,0 +170782503684,214,0 +170782503733,214,0 +170782503781,213,0 +170782503829,214,0 +170782503879,214,0 +170782503927,214,0 +170782503976,214,0 +170782504024,214,0 +170782504072,214,0 +170782504120,214,0 +170782504168,214,0 +170782504216,214,0 +170782504265,215,0 +170782504315,215,0 +170782504363,214,0 +170782504411,213,0 +170782504459,213,0 +170782504508,213,0 +170782504556,214,0 +170782504604,213,0 +170782504654,214,0 +170782504703,214,0 +170782504753,214,0 +170782504801,214,0 +170782504849,214,0 +170782504896,214,0 +170782504944,214,0 +170782504992,214,0 +170782505042,215,0 +170782505090,215,0 +170782505137,214,0 +170782505187,214,0 +170782505235,214,0 +170782505284,213,0 +170782505332,213,0 +170782505380,213,0 +170782505428,214,0 +170782505478,214,0 +170782505525,214,0 +170782505573,214,0 +170782505621,214,0 +170782505669,214,0 +170782505717,214,0 +170782505765,214,0 +170782505813,214,0 +170782505860,214,0 +170782505908,215,0 +170782505956,214,0 +170782506005,215,0 +170782506053,215,0 +170782506101,214,0 +170782506149,213,0 +170782506199,213,0 +170782506246,214,0 +170782506296,214,0 +170782506345,214,0 +170782506393,214,0 +170782506441,214,0 +170782506491,214,0 +170782506539,214,0 +170782506587,214,0 +170782506635,214,0 +170782506684,214,0 +170782506732,214,0 +170782506780,214,0 +170782506829,214,0 +170782506879,215,0 +170782506927,214,0 +170782506976,214,0 +170782507024,213,0 +170782507072,214,0 +170782507120,214,0 +170782507170,214,0 +170782507217,214,0 +170782507265,214,0 +170782507315,214,0 +170782507363,214,0 +170782507410,214,0 +170782507460,214,0 +170782507508,214,0 +170782507556,214,0 +170782507604,215,0 +170782507653,214,0 +170782507703,215,0 +170782507751,215,0 +170782507800,214,0 +170782507848,214,0 +170782507898,214,0 +170782507947,214,0 +170782507995,214,0 +170782508045,214,0 +170782508092,214,0 +170782508140,214,0 +170782508190,214,0 +170782508239,214,0 +170782508287,214,0 +170782508335,214,0 +170782508383,215,0 +170782508431,215,0 +170782508479,215,0 +170782508527,215,0 +170782508574,215,0 +170782508622,214,0 +170782508672,214,0 +170782508719,214,0 +170782508769,213,0 +170782508818,214,0 +170782508868,214,0 +170782508916,214,0 +170782508964,214,0 +170782509012,214,0 +170782509061,214,0 +170782509109,214,0 +170782509157,214,0 +170782509205,214,0 +170782509253,215,0 +170782509301,214,0 +170782509349,215,0 +170782509397,214,0 +170782509445,215,0 +170782509493,215,0 +170782509541,214,0 +170782509588,214,0 +170782509636,213,0 +170782509684,213,0 +170782509734,214,0 +170782509783,214,0 +170782509831,214,0 +170782509881,214,0 +170782509929,214,0 +170782509978,214,0 +170782510028,214,0 +170782510076,214,0 +170782510123,214,0 +170782510171,214,0 +170782510221,214,0 +170782510269,215,0 +170782510316,215,0 +170782510364,214,0 +170782510414,214,0 +170782510462,214,0 +170782510510,213,0 +170782510557,214,0 +170782510607,214,0 +170782510655,214,0 +170782510703,214,0 +170782510751,214,0 +170782510798,214,0 +170782510848,214,0 +170782510896,214,0 +170782510944,214,0 +170782510991,214,0 +170782511039,214,0 +170782511087,214,0 +170782511137,214,0 +170782511186,215,0 +170782511234,215,0 +170782511284,214,0 +170782511333,214,0 +170782511381,213,0 +170782511429,214,0 +170782511477,214,0 +170782511526,214,0 +170782511575,214,0 +170782511623,214,0 +170782511673,214,0 +170782511721,214,0 +170782511769,214,0 +170782511817,214,0 +170782511866,214,0 +170782511915,214,0 +170782511963,214,0 +170782512011,214,0 +170782512061,215,0 +170782512109,214,0 +170782512157,215,0 +170782512205,213,0 +170782512254,213,0 +170782512304,213,0 +170782512353,213,0 +170782512401,213,0 +170782512449,213,0 +170782512499,214,0 +170782512547,214,0 +170782512595,214,0 +170782512643,214,0 +170782512690,214,0 +170782512740,214,0 +170782512788,214,0 +170782512836,214,0 +170782512885,214,0 +170782512935,214,0 +170782512983,214,0 +170782513031,214,0 +170782513079,214,0 +170782513127,213,0 +170782513175,213,0 +170782513222,213,0 +170782513270,213,0 +170782513318,213,0 +170782513366,213,0 +170782513416,213,0 +170782513464,214,0 +170782513513,213,0 +170782513563,213,0 +170782513611,214,0 +170782513659,214,0 +170782513707,213,0 +170782513754,214,0 +170782513802,214,0 +170782513852,214,0 +170782513900,214,0 +170782513947,214,0 +170782513995,214,0 +170782514043,213,0 +170782514093,214,0 +170782514142,213,0 +170782514192,213,0 +170782514241,214,0 +170782514291,214,0 +170782514339,214,0 +170782514387,214,0 +170782514436,214,0 +170782514484,214,0 +170782514532,214,0 +170782514580,214,0 +170782514628,214,0 +170782514677,214,0 +170782514725,214,0 +170782514773,214,0 +170782514821,214,0 +170782514871,213,0 +170782514920,213,0 +170782514968,213,0 +170782515018,214,0 +170782515067,214,0 +170782515115,214,0 +170782515165,214,0 +170782515214,214,0 +170782515262,214,0 +170782515310,214,0 +170782515359,214,0 +170782515407,214,0 +170782515455,214,0 +170782515503,214,0 +170782515551,215,0 +170782515599,214,0 +170782515647,214,0 +170782515695,214,0 +170782515745,213,0 +170782515793,213,0 +170782515841,213,0 +170782515890,213,0 +170782515940,214,0 +170782515989,213,0 +170782516037,213,0 +170782516085,214,0 +170782516133,214,0 +170782516182,214,0 +170782516232,214,0 +170782516281,214,0 +170782516329,214,0 +170782516377,214,0 +170782516425,214,0 +170782516473,214,0 +170782516523,214,0 +170782516570,214,0 +170782516618,213,0 +170782516666,213,0 +170782516714,213,0 +170782516762,213,0 +170782516810,214,0 +170782516860,213,0 +170782516909,214,0 +170782516957,214,0 +170782517005,214,0 +170782517053,214,0 +170782517103,214,0 +170782517151,214,0 +170782517199,214,0 +170782517247,214,0 +170782517295,214,0 +170782517344,214,0 +170782517392,214,0 +170782517440,214,0 +170782517488,213,0 +170782517536,213,0 +170782517586,214,0 +170782517634,213,0 +170782517682,214,0 +170782517729,214,0 +170782517777,214,0 +170782517827,214,0 +170782517876,214,0 +170782517924,214,0 +170782517974,214,0 +170782518023,214,0 +170782518073,214,0 +170782518122,214,0 +170782518170,214,0 +170782518220,214,0 +170782518268,214,0 +170782518316,213,0 +170782518365,213,0 +170782518413,213,0 +170782518461,213,0 +170782518509,213,0 +170782518559,214,0 +170782518607,214,0 +170782518656,214,0 +170782518706,214,0 +170782518754,214,0 +170782518802,214,0 +170782518849,214,0 +170782518897,214,0 +170782518945,214,0 +170782518993,214,0 +170782519041,214,0 +170782519091,215,0 +170782519139,214,0 +170782519187,213,0 +170782519234,213,0 +170782519282,214,0 +170782519330,213,0 +170782519378,214,0 +170782519426,214,0 +170782519474,214,0 +170782519522,214,0 +170782519569,214,0 +170782519617,214,0 +170782519665,214,0 +170782519713,214,0 +170782519761,214,0 +170782519811,214,0 +170782519858,214,0 +170782519906,215,0 +170782519954,214,0 +170782520002,214,0 +170782520050,214,0 +170782520098,214,0 +170782520146,213,0 +170782520193,214,0 +170782520241,214,0 +170782520289,214,0 +170782520337,214,0 +170782520385,214,0 +170782520433,214,0 +170782520481,214,0 +170782520529,214,0 +170782520578,214,0 +170782520626,214,0 +170782520674,214,0 +170782520723,214,0 +170782520771,214,0 +170782520819,215,0 +170782520867,214,0 +170782520915,214,0 +170782520964,214,0 +170782521012,214,0 +170782521060,214,0 +170782521108,214,0 +170782521156,214,0 +170782521203,214,0 +170782521251,214,0 +170782521301,214,0 +170782521349,214,0 +170782521396,214,0 +170782521444,214,0 +170782521492,214,0 +170782521542,214,0 +170782521589,214,0 +170782521637,214,0 +170782521685,215,0 +170782521733,214,0 +170782521781,214,0 +170782521829,213,0 +170782521877,213,0 +170782521925,213,0 +170782521972,214,0 +170782522020,214,0 +170782522068,214,0 +170782522116,214,0 +170782522164,214,0 +170782522212,214,0 +170782522260,214,0 +170782522308,214,0 +170782522355,214,0 +170782522403,214,0 +170782522451,214,0 +170782522499,214,0 +170782522547,214,0 +170782522595,214,0 +170782522642,213,0 +170782522690,213,0 +170782522740,213,0 +170782522789,213,0 +170782522837,213,0 +170782522885,213,0 +170782522933,213,0 +170782522983,213,0 +170782523032,214,0 +170782523080,214,0 +170782523130,214,0 +170782523178,214,0 +170782523225,214,0 +170782523275,214,0 +170782523323,214,0 +170782523373,214,0 +170782523420,214,0 +170782523470,214,0 +170782523519,213,0 +170782523567,213,0 +170782523617,213,0 +170782523666,213,0 +170782523714,213,0 +170782523764,213,0 +170782523813,213,0 +170782523861,213,0 +170782523911,214,0 +170782523958,214,0 +170782524006,214,0 +170782524054,214,0 +170782524104,214,0 +170782524152,214,0 +170782524199,214,0 +170782524247,214,0 +170782524295,214,0 +170782524343,214,0 +170782524391,214,0 +170782524440,213,0 +170782524488,213,0 +170782524536,214,0 +170782524584,213,0 +170782524634,214,0 +170782524682,213,0 +170782524731,214,0 +170782524781,214,0 +170782524830,214,0 +170782524878,214,0 +170782524926,214,0 +170782524974,214,0 +170782525022,214,0 +170782525071,214,0 +170782525121,214,0 +170782525169,214,0 +170782525217,214,0 +170782525265,213,0 +170782525314,213,0 +170782525362,213,0 +170782525410,213,0 +170782525459,213,0 +170782525507,214,0 +170782525557,213,0 +170782525606,214,0 +170782525656,214,0 +170782525704,214,0 +170782525752,214,0 +170782525800,214,0 +170782525848,214,0 +170782525897,214,0 +170782525945,214,0 +170782525994,214,0 +170782526042,214,0 +170782526090,214,0 +170782526140,213,0 +170782526188,213,0 +170782526237,213,0 +170782526285,213,0 +170782526333,213,0 +170782526381,213,0 +170782526431,213,0 +170782526479,213,0 +170782526527,214,0 +170782526575,214,0 +170782526622,214,0 +170782526670,214,0 +170782526718,214,0 +170782526766,214,0 +170782526814,214,0 +170782526862,214,0 +170782526911,214,0 +170782526959,214,0 +170782527008,213,0 +170782527056,213,0 +170782527104,213,0 +170782527152,213,0 +170782527202,213,0 +170782527249,214,0 +170782527298,214,0 +170782527345,214,0 +170782527393,214,0 +170782527441,214,0 +170782527489,214,0 +170782527539,214,0 +170782527587,214,0 +170782527636,214,0 +170782527684,214,0 +170782527734,214,0 +170782527783,214,0 +170782527831,214,0 +170782527881,213,0 +170782527929,213,0 +170782527977,213,0 +170782528026,213,0 +170782528074,213,0 +170782528122,213,0 +170782528171,214,0 +170782528221,214,0 +170782528269,214,0 +170782528317,214,0 +170782528365,214,0 +170782528413,214,0 +170782528461,214,0 +170782528510,214,0 +170782528560,214,0 +170782528608,214,0 +170782528655,215,0 +170782528705,214,0 +170782528753,213,0 +170782528802,213,0 +170782528850,214,0 +170782528898,213,0 +170782528946,214,0 +170782528994,214,0 +170782529044,214,0 +170782529091,214,0 +170782529139,214,0 +170782529187,214,0 +170782529235,214,0 +170782529283,214,0 +170782529332,214,0 +170782529380,214,0 +170782529428,214,0 +170782529476,214,0 +170782529526,214,0 +170782529574,214,0 +170782529623,213,0 +170782529671,213,0 +170782529719,214,0 +170782529767,213,0 +170782529815,213,0 +170782529863,214,0 +170782529913,214,0 +170782529961,214,0 +170782530010,214,0 +170782530058,214,0 +170782530106,214,0 +170782530156,214,0 +170782530204,214,0 +170782530253,214,0 +170782530301,214,0 +170782530349,214,0 +170782530397,215,0 +170782530445,214,0 +170782530494,213,0 +170782530544,213,0 +170782530592,214,0 +170782530641,213,0 +170782530689,214,0 +170782530739,214,0 +170782530788,214,0 +170782530836,214,0 +170782530886,214,0 +170782530934,214,0 +170782530983,214,0 +170782531031,214,0 +170782531079,214,0 +170782531129,214,0 +170782531177,215,0 +170782531226,214,0 +170782531275,214,0 +170782531323,214,0 +170782531371,213,0 +170782531421,214,0 +170782531469,213,0 +170782531517,214,0 +170782531565,214,0 +170782531613,214,0 +170782531661,214,0 +170782531709,214,0 +170782531758,214,0 +170782531806,214,0 +170782531854,215,0 +170782531904,214,0 +170782531953,215,0 +170782532003,214,0 +170782532052,214,0 +170782532100,215,0 +170782532150,215,0 +170782532197,214,0 +170782532245,213,0 +170782532295,213,0 +170782532343,214,0 +170782532392,214,0 +170782532440,214,0 +170782532488,214,0 +170782532536,214,0 +170782532586,214,0 +170782532634,214,0 +170782532682,214,0 +170782532731,214,0 +170782532781,214,0 +170782532829,214,0 +170782532877,214,0 +170782532926,214,0 +170782532976,214,0 +170782533025,214,0 +170782533073,213,0 +170782533123,213,0 +170782533172,214,0 +170782533220,214,0 +170782533268,214,0 +170782533316,214,0 +170782533364,214,0 +170782533412,214,0 +170782533460,214,0 +170782533507,214,0 +170782533555,214,0 +170782533603,214,0 +170782533653,214,0 +170782533700,214,0 +170782533748,214,0 +170782533796,214,0 +170782533844,215,0 +170782533892,214,0 +170782533940,213,0 +170782533988,214,0 +170782534036,214,0 +170782534083,214,0 +170782534131,214,0 +170782534179,214,0 +170782534227,214,0 +170782534275,214,0 +170782534323,214,0 +170782534371,214,0 +170782534419,214,0 +170782534467,215,0 +170782534514,215,0 +170782534562,214,0 +170782534610,215,0 +170782534658,214,0 +170782534706,215,0 +170782534754,214,0 +170782534801,214,0 +170782534851,214,0 +170782534900,214,0 +170782534948,214,0 +170782534996,214,0 +170782535044,214,0 +170782535091,214,0 +170782535139,214,0 +170782535187,214,0 +170782535235,214,0 +170782535283,214,0 +170782535331,214,0 +170782535379,214,0 +170782535426,215,0 +170782535476,215,0 +170782535526,215,0 +170782535573,215,0 +170782535621,215,0 +170782535669,214,0 +170782535717,214,0 +170782535767,214,0 +170782535815,214,0 +170782535863,214,0 +170782535912,214,0 +170782535962,214,0 +170782536009,214,0 +170782536057,214,0 +170782536105,214,0 +170782536153,214,0 +170782536201,215,0 +170782536251,215,0 +170782536299,215,0 +170782536348,215,0 +170782536396,215,0 +170782536445,215,0 +170782536495,214,0 +170782536543,214,0 +170782536591,214,0 +170782536641,214,0 +170782536690,214,0 +170782536738,214,0 +170782536788,214,0 +170782536837,214,0 +170782536885,214,0 +170782536933,214,0 +170782536981,214,0 +170782537029,214,0 +170782537077,214,0 +170782537125,214,0 +170782537174,214,0 +170782537222,214,0 +170782537272,214,0 +170782537320,214,0 +170782537369,214,0 +170782537417,213,0 +170782537465,213,0 +170782537513,214,0 +170782537563,213,0 +170782537612,214,0 +170782537660,214,0 +170782537709,214,0 +170782537759,214,0 +170782537807,214,0 +170782537856,214,0 +170782537904,214,0 +170782537954,214,0 +170782538003,214,0 +170782538051,215,0 +170782538099,215,0 +170782538149,215,0 +170782538197,214,0 +170782538245,214,0 +170782538293,213,0 +170782538341,213,0 +170782538390,213,0 +170782538440,213,0 +170782538489,214,0 +170782538537,214,0 +170782538585,214,0 +170782538633,214,0 +170782538683,214,0 +170782538730,214,0 +170782538778,214,0 +170782538828,214,0 +170782538876,214,0 +170782538924,214,0 +170782538973,214,0 +170782539023,214,0 +170782539071,214,0 +170782539119,214,0 +170782539166,213,0 +170782539214,213,0 +170782539264,213,0 +170782539312,213,0 +170782539360,213,0 +170782539408,214,0 +170782539456,213,0 +170782539504,214,0 +170782539551,214,0 +170782539599,214,0 +170782539649,214,0 +170782539697,214,0 +170782539746,214,0 +170782539794,214,0 +170782539842,215,0 +170782539892,215,0 +170782539941,214,0 +170782539991,213,0 +170782540040,213,0 +170782540088,213,0 +170782540136,213,0 +170782540184,213,0 +170782540232,213,0 +170782540280,214,0 +170782540329,214,0 +170782540377,213,0 +170782540427,214,0 +170782540476,214,0 +170782540524,214,0 +170782540574,214,0 +170782540623,214,0 +170782540673,214,0 +170782540721,214,0 +170782540770,214,0 +170782540818,214,0 +170782540866,213,0 +170782540914,213,0 +170782540964,213,0 +170782541012,213,0 +170782541060,214,0 +170782541107,213,0 +170782541155,213,0 +170782541203,214,0 +170782541251,214,0 +170782541301,214,0 +170782541349,214,0 +170782541397,214,0 +170782541445,214,0 +170782541494,214,0 +170782541542,214,0 +170782541590,214,0 +170782541638,214,0 +170782541686,214,0 +170782541735,213,0 +170782541783,213,0 +170782541831,213,0 +170782541879,213,0 +170782541927,213,0 +170782541975,213,0 +170782542025,214,0 +170782542074,213,0 +170782542124,214,0 +170782542172,214,0 +170782542220,214,0 +170782542268,214,0 +170782542316,214,0 +170782542365,214,0 +170782542415,214,0 +170782542462,214,0 +170782542512,214,0 +170782542560,214,0 +170782542610,213,0 +170782542659,213,0 +170782542707,213,0 +170782542755,213,0 +170782542803,213,0 +170782542851,214,0 +170782542900,214,0 +170782542948,214,0 +170782542996,214,0 +170782543044,214,0 +170782543092,214,0 +170782543140,214,0 +170782543188,214,0 +170782543237,214,0 +170782543285,214,0 +170782543335,214,0 +170782543383,214,0 +170782543432,214,0 +170782543482,213,0 +170782543530,213,0 +170782543578,213,0 +170782543627,213,0 +170782543675,214,0 +170782543723,214,0 +170782543771,214,0 +170782543821,214,0 +170782543869,214,0 +170782543917,214,0 +170782543965,214,0 +170782544012,214,0 +170782544060,214,0 +170782544108,214,0 +170782544156,214,0 +170782544204,214,0 +170782544252,214,0 +170782544300,214,0 +170782544349,213,0 +170782544397,213,0 +170782544445,213,0 +170782544493,213,0 +170782544540,213,0 +170782544590,213,0 +170782544638,213,0 +170782544686,214,0 +170782544735,214,0 +170782544785,214,0 +170782544833,214,0 +170782544881,214,0 +170782544930,214,0 +170782544978,214,0 +170782545026,214,0 +170782545074,214,0 +170782545122,214,0 +170782545170,214,0 +170782545218,213,0 +170782545266,213,0 +170782545314,213,0 +170782545362,213,0 +170782545409,213,0 +170782545457,214,0 +170782545507,214,0 +170782545554,214,0 +170782545602,214,0 +170782545650,214,0 +170782545698,214,0 +170782545746,214,0 +170782545794,214,0 +170782545843,214,0 +170782545891,215,0 +170782545939,214,0 +170782545987,214,0 +170782546036,213,0 +170782546084,213,0 +170782546132,213,0 +170782546181,213,0 +170782546229,213,0 +170782546279,213,0 +170782546327,214,0 +170782546374,213,0 +170782546422,214,0 +170782546470,214,0 +170782546520,214,0 +170782546568,214,0 +170782546615,214,0 +170782546663,214,0 +170782546713,214,0 +170782546761,214,0 +170782546811,214,0 +170782546860,214,0 +170782546910,213,0 +170782546959,213,0 +170782547009,213,0 +170782547058,213,0 +170782547106,213,0 +170782547156,213,0 +170782547205,213,0 +170782547253,214,0 +170782547301,213,0 +170782547351,214,0 +170782547399,214,0 +170782547448,214,0 +170782547498,214,0 +170782547546,214,0 +170782547594,214,0 +170782547643,214,0 +170782547693,214,0 +170782547742,214,0 +170782547790,213,0 +170782547838,213,0 +170782547886,213,0 +170782547935,213,0 +170782547985,214,0 +170782548033,214,0 +170782548081,213,0 +170782548129,214,0 +170782548177,214,0 +170782548226,214,0 +170782548274,214,0 +170782548322,214,0 +170782548370,214,0 +170782548418,214,0 +170782548465,214,0 +170782548513,215,0 +170782548561,215,0 +170782548609,214,0 +170782548657,213,0 +170782548705,213,0 +170782548753,214,0 +170782548800,214,0 +170782548848,213,0 +170782548896,214,0 +170782548944,214,0 +170782548992,214,0 +170782549040,214,0 +170782549089,214,0 +170782549137,214,0 +170782549185,214,0 +170782549234,214,0 +170782549282,214,0 +170782549330,214,0 +170782549378,214,0 +170782549425,214,0 +170782549473,214,0 +170782549521,213,0 +170782549569,213,0 +170782549617,213,0 +170782549665,214,0 +170782549713,213,0 +170782549761,213,0 +170782549809,213,0 +170782549857,214,0 +170782549905,214,0 +170782549952,214,0 +170782550000,214,0 +170782550048,214,0 +170782550096,214,0 +170782550146,214,0 +170782550194,214,0 +170782550241,214,0 +170782550291,215,0 +170782550339,214,0 +170782550386,213,0 +170782550434,213,0 +170782550482,213,0 +170782550530,213,0 +170782550578,213,0 +170782550625,214,0 +170782550673,214,0 +170782550721,214,0 +170782550769,214,0 +170782550817,214,0 +170782550866,214,0 +170782550914,214,0 +170782550962,214,0 +170782551012,214,0 +170782551059,214,0 +170782551107,214,0 +170782551157,214,0 +170782551205,214,0 +170782551252,213,0 +170782551300,213,0 +170782551350,213,0 +170782551399,214,0 +170782551447,214,0 +170782551495,214,0 +170782551543,214,0 +170782551591,214,0 +170782551638,214,0 +170782551686,214,0 +170782551735,214,0 +170782551783,214,0 +170782551831,214,0 +170782551879,214,0 +170782551927,214,0 +170782551975,215,0 +170782552023,214,0 +170782552070,214,0 +170782552120,213,0 +170782552169,213,0 +170782552219,213,0 +170782552268,213,0 +170782552318,214,0 +170782552367,214,0 +170782552415,214,0 +170782552463,214,0 +170782552511,214,0 +170782552560,214,0 +170782552608,214,0 +170782552656,214,0 +170782552704,214,0 +170782552752,214,0 +170782552801,215,0 +170782552851,214,0 +170782552899,215,0 +170782552948,214,0 +170782552998,213,0 +170782553047,213,0 +170782553095,214,0 +170782553143,214,0 +170782553191,214,0 +170782553241,214,0 +170782553290,214,0 +170782553338,214,0 +170782553388,214,0 +170782553435,214,0 +170782553483,214,0 +170782553531,214,0 +170782553581,214,0 +170782553629,215,0 +170782553677,214,0 +170782553725,214,0 +170782553774,214,0 +170782553824,214,0 +170782553872,213,0 +170782553920,213,0 +170782553969,213,0 +170782554019,213,0 +170782554068,213,0 +170782554118,214,0 +170782554167,214,0 +170782554215,214,0 +170782554265,214,0 +170782554313,214,0 +170782554361,214,0 +170782554409,215,0 +170782554457,214,0 +170782554505,214,0 +170782554553,214,0 +170782554601,214,0 +170782554649,214,0 +170782554698,213,0 +170782554746,213,0 +170782554795,213,0 +170782554843,214,0 +170782554891,214,0 +170782554939,214,0 +170782554987,214,0 +170782555037,214,0 +170782555086,214,0 +170782555136,214,0 +170782555183,215,0 +170782555231,214,0 +170782555281,214,0 +170782555330,214,0 +170782555378,215,0 +170782555427,215,0 +170782555475,215,0 +170782555523,214,0 +170782555572,213,0 +170782555622,213,0 +170782555670,213,0 +170782555718,213,0 +170782555767,214,0 +170782555815,214,0 +170782555863,214,0 +170782555911,214,0 +170782555959,214,0 +170782556006,214,0 +170782556056,214,0 +170782556104,214,0 +170782556151,214,0 +170782556201,215,0 +170782556250,214,0 +170782556300,214,0 +170782556348,214,0 +170782556396,214,0 +170782556443,214,0 +170782556491,213,0 +170782556539,213,0 +170782556587,213,0 +170782556636,213,0 +170782556684,213,0 +170782556734,214,0 +170782556784,214,0 +170782556833,214,0 +170782556881,214,0 +170782556931,214,0 +170782556979,214,0 +170782557027,214,0 +170782557076,214,0 +170782557124,214,0 +170782557172,214,0 +170782557219,214,0 +170782557267,214,0 +170782557317,213,0 +170782557365,213,0 +170782557414,213,0 +170782557462,213,0 +170782557510,213,0 +170782557559,213,0 +170782557607,213,0 +170782557657,213,0 +170782557705,213,0 +170782557753,214,0 +170782557801,214,0 +170782557850,214,0 +170782557898,214,0 +170782557947,214,0 +170782557995,214,0 +170782558043,214,0 +170782558091,214,0 +170782558139,214,0 +170782558187,213,0 +170782558237,213,0 +170782558286,213,0 +170782558336,213,0 +170782558385,213,0 +170782558433,213,0 +170782558481,214,0 +170782558531,214,0 +170782558579,214,0 +170782558627,214,0 +170782558674,214,0 +170782558722,214,0 +170782558770,214,0 +170782558820,214,0 +170782558868,214,0 +170782558916,214,0 +170782558963,214,0 +170782559013,214,0 +170782559061,213,0 +170782559109,213,0 +170782559156,213,0 +170782559204,213,0 +170782559252,213,0 +170782559300,213,0 +170782559348,214,0 +170782559396,213,0 +170782559444,214,0 +170782559491,214,0 +170782559539,214,0 +170782559587,214,0 +170782559635,214,0 +170782559683,214,0 +170782559731,214,0 +170782559780,214,0 +170782559830,214,0 +170782559878,215,0 +170782559927,213,0 +170782559975,213,0 +170782560023,213,0 diff --git a/laser_value/0213-22.csv b/laser_value/0213-22.csv new file mode 100644 index 0000000..8767547 --- /dev/null +++ b/laser_value/0213-22.csv @@ -0,0 +1,7436 @@ +timestamp,laser_value,event +170782560072,214,0 +170782560119,213,0 +170782560169,214,0 +170782560217,214,0 +170782560265,214,0 +170782560313,214,0 +170782560362,214,0 +170782560410,214,0 +170782560460,214,0 +170782560509,214,0 +170782560559,214,0 +170782560607,214,0 +170782560655,214,0 +170782560702,214,0 +170782560750,214,0 +170782560798,213,0 +170782560846,213,0 +170782560895,213,0 +170782560943,214,0 +170782560991,213,0 +170782561039,214,0 +170782561087,214,0 +170782561135,214,0 +170782561183,214,0 +170782561231,214,0 +170782561279,214,0 +170782561327,214,0 +170782561376,214,0 +170782561424,214,0 +170782561472,214,0 +170782561520,214,0 +170782561569,215,0 +170782561617,214,0 +170782561665,213,0 +170782561714,214,0 +170782561762,213,0 +170782561812,214,0 +170782561860,214,0 +170782561909,214,0 +170782561957,214,0 +170782562007,214,0 +170782562056,214,0 +170782562104,214,0 +170782562154,214,0 +170782562203,214,0 +170782562253,214,0 +170782562302,214,0 +170782562350,215,0 +170782562400,214,0 +170782562448,214,0 +170782562496,214,0 +170782562544,213,0 +170782562592,214,0 +170782562639,213,0 +170782562687,213,0 +170782562737,214,0 +170782562785,214,0 +170782562834,214,0 +170782562882,214,0 +170782562932,214,0 +170782562980,214,0 +170782563029,215,0 +170782563077,214,0 +170782563125,214,0 +170782563173,215,0 +170782563222,215,0 +170782563270,215,0 +170782563320,215,0 +170782563368,214,0 +170782563417,214,0 +170782563465,214,0 +170782563515,214,0 +170782563564,214,0 +170782563614,214,0 +170782563662,214,0 +170782563710,214,0 +170782563758,214,0 +170782563805,214,0 +170782563853,214,0 +170782563901,214,0 +170782563949,214,0 +170782563997,214,0 +170782564045,215,0 +170782564093,215,0 +170782564143,214,0 +170782564192,214,0 +170782564241,214,0 +170782564289,213,0 +170782564337,214,0 +170782564385,214,0 +170782564433,214,0 +170782564481,214,0 +170782564529,214,0 +170782564577,214,0 +170782564625,214,0 +170782564674,214,0 +170782564722,215,0 +170782564770,215,0 +170782564818,214,0 +170782564868,215,0 +170782564915,215,0 +170782564965,215,0 +170782565014,215,0 +170782565064,214,0 +170782565112,214,0 +170782565161,214,0 +170782565211,213,0 +170782565260,214,0 +170782565308,214,0 +170782565358,214,0 +170782565407,214,0 +170782565457,214,0 +170782565505,214,0 +170782565554,214,0 +170782565602,214,0 +170782565650,214,0 +170782565700,215,0 +170782565748,215,0 +170782565797,215,0 +170782565845,215,0 +170782565893,214,0 +170782565943,214,0 +170782565992,214,0 +170782566040,213,0 +170782566088,214,0 +170782566136,214,0 +170782566186,214,0 +170782566234,214,0 +170782566282,214,0 +170782566331,214,0 +170782566379,214,0 +170782566429,214,0 +170782566476,214,0 +170782566524,214,0 +170782566574,214,0 +170782566622,215,0 +170782566670,214,0 +170782566718,214,0 +170782566766,214,0 +170782566814,214,0 +170782566862,213,0 +170782566909,213,0 +170782566957,214,0 +170782567007,214,0 +170782567055,214,0 +170782567104,214,0 +170782567152,214,0 +170782567200,214,0 +170782567248,214,0 +170782567298,214,0 +170782567346,214,0 +170782567394,214,0 +170782567443,214,0 +170782567493,214,0 +170782567542,214,0 +170782567590,214,0 +170782567638,214,0 +170782567686,214,0 +170782567734,213,0 +170782567782,213,0 +170782567830,213,0 +170782567879,213,0 +170782567929,213,0 +170782567977,213,0 +170782568026,214,0 +170782568074,214,0 +170782568124,214,0 +170782568173,214,0 +170782568223,214,0 +170782568272,215,0 +170782568320,214,0 +170782568370,214,0 +170782568418,214,0 +170782568466,214,0 +170782568515,214,0 +170782568563,213,0 +170782568613,213,0 +170782568661,213,0 +170782568710,213,0 +170782568760,213,0 +170782568809,213,0 +170782568857,214,0 +170782568907,214,0 +170782568956,214,0 +170782569004,214,0 +170782569052,214,0 +170782569100,214,0 +170782569149,214,0 +170782569197,214,0 +170782569245,214,0 +170782569293,214,0 +170782569343,214,0 +170782569391,214,0 +170782569438,213,0 +170782569488,213,0 +170782569536,213,0 +170782569584,213,0 +170782569633,214,0 +170782569683,214,0 +170782569733,213,0 +170782569781,214,0 +170782569829,214,0 +170782569878,214,0 +170782569928,214,0 +170782569976,214,0 +170782570024,214,0 +170782570071,214,0 +170782570121,214,0 +170782570170,214,0 +170782570218,214,0 +170782570266,214,0 +170782570314,213,0 +170782570364,213,0 +170782570411,213,0 +170782570459,213,0 +170782570507,213,0 +170782570555,213,0 +170782570603,213,0 +170782570651,213,0 +170782570701,213,0 +170782570750,213,0 +170782570798,214,0 +170782570846,214,0 +170782570896,214,0 +170782570944,214,0 +170782570992,214,0 +170782571041,214,0 +170782571089,214,0 +170782571137,214,0 +170782571187,213,0 +170782571234,213,0 +170782571284,213,0 +170782571332,213,0 +170782571380,213,0 +170782571429,213,0 +170782571477,213,0 +170782571525,213,0 +170782571575,213,0 +170782571623,213,0 +170782571670,214,0 +170782571720,214,0 +170782571769,214,0 +170782571819,214,0 +170782571869,214,0 +170782571917,214,0 +170782571964,214,0 +170782572012,214,0 +170782572060,213,0 +170782572108,213,0 +170782572158,213,0 +170782572207,213,0 +170782572257,213,0 +170782572305,213,0 +170782572353,213,0 +170782572402,213,0 +170782572450,214,0 +170782572498,214,0 +170782572546,214,0 +170782572595,214,0 +170782572645,214,0 +170782572693,214,0 +170782572742,214,0 +170782572792,214,0 +170782572841,214,0 +170782572889,213,0 +170782572937,213,0 +170782572987,213,0 +170782573035,213,0 +170782573083,213,0 +170782573131,214,0 +170782573179,213,0 +170782573226,213,0 +170782573276,213,0 +170782573324,213,0 +170782573372,214,0 +170782573420,214,0 +170782573469,214,0 +170782573517,214,0 +170782573566,214,0 +170782573616,214,0 +170782573664,214,0 +170782573712,214,0 +170782573761,213,0 +170782573811,213,0 +170782573861,213,0 +170782573908,213,0 +170782573956,213,0 +170782574004,213,0 +170782574052,213,0 +170782574100,213,0 +170782574150,213,0 +170782574198,213,0 +170782574247,214,0 +170782574295,214,0 +170782574343,214,0 +170782574391,214,0 +170782574439,214,0 +170782574488,214,0 +170782574536,214,0 +170782574584,214,0 +170782574634,213,0 +170782574682,213,0 +170782574730,213,0 +170782574778,213,0 +170782574826,213,0 +170782574874,213,0 +170782574923,213,0 +170782574971,214,0 +170782575019,213,0 +170782575066,214,0 +170782575116,214,0 +170782575164,214,0 +170782575213,214,0 +170782575263,214,0 +170782575312,214,0 +170782575360,214,0 +170782575408,214,0 +170782575456,214,0 +170782575506,213,0 +170782575555,213,0 +170782575603,213,0 +170782575653,213,0 +170782575701,213,0 +170782575749,214,0 +170782575798,213,0 +170782575846,214,0 +170782575894,214,0 +170782575942,214,0 +170782575990,214,0 +170782576038,214,0 +170782576086,214,0 +170782576134,214,0 +170782576183,215,0 +170782576231,214,0 +170782576279,214,0 +170782576327,214,0 +170782576375,213,0 +170782576423,213,0 +170782576472,214,0 +170782576522,213,0 +170782576570,214,0 +170782576619,214,0 +170782576669,214,0 +170782576716,214,0 +170782576766,214,0 +170782576816,214,0 +170782576863,214,0 +170782576911,214,0 +170782576961,214,0 +170782577009,214,0 +170782577057,214,0 +170782577105,214,0 +170782577154,214,0 +170782577202,214,0 +170782577250,213,0 +170782577298,214,0 +170782577347,214,0 +170782577395,214,0 +170782577445,214,0 +170782577493,214,0 +170782577541,214,0 +170782577589,214,0 +170782577637,214,0 +170782577684,214,0 +170782577734,214,0 +170782577783,215,0 +170782577831,214,0 +170782577879,214,0 +170782577927,214,0 +170782577977,214,0 +170782578025,214,0 +170782578074,214,0 +170782578122,213,0 +170782578170,213,0 +170782578218,214,0 +170782578266,214,0 +170782578315,214,0 +170782578363,214,0 +170782578411,214,0 +170782578461,214,0 +170782578509,214,0 +170782578558,214,0 +170782578606,214,0 +170782578654,214,0 +170782578702,214,0 +170782578752,214,0 +170782578800,214,0 +170782578849,214,0 +170782578899,214,0 +170782578946,213,0 +170782578994,213,0 +170782579042,213,0 +170782579090,213,0 +170782579138,213,0 +170782579186,214,0 +170782579234,214,0 +170782579284,213,0 +170782579333,214,0 +170782579383,214,0 +170782579431,214,0 +170782579480,214,0 +170782579530,214,0 +170782579577,214,0 +170782579625,214,0 +170782579675,215,0 +170782579723,214,0 +170782579772,214,0 +170782579820,213,0 +170782579868,213,0 +170782579916,214,0 +170782579964,213,0 +170782580012,214,0 +170782580062,214,0 +170782580110,213,0 +170782580159,214,0 +170782580209,214,0 +170782580257,214,0 +170782580304,214,0 +170782580352,214,0 +170782580400,214,0 +170782580448,214,0 +170782580496,214,0 +170782580546,214,0 +170782580595,215,0 +170782580643,214,0 +170782580691,213,0 +170782580741,213,0 +170782580789,213,0 +170782580838,213,0 +170782580886,214,0 +170782580934,214,0 +170782580982,214,0 +170782581030,214,0 +170782581078,213,0 +170782581127,214,0 +170782581177,214,0 +170782581227,214,0 +170782581276,214,0 +170782581326,214,0 +170782581374,214,0 +170782581421,214,0 +170782581469,214,0 +170782581519,214,0 +170782581567,213,0 +170782581615,213,0 +170782581663,213,0 +170782581711,213,0 +170782581759,213,0 +170782581808,214,0 +170782581857,214,0 +170782581907,214,0 +170782581955,214,0 +170782582004,214,0 +170782582052,214,0 +170782582100,214,0 +170782582148,214,0 +170782582196,214,0 +170782582244,214,0 +170782582292,215,0 +170782582340,214,0 +170782582388,214,0 +170782582436,213,0 +170782582484,213,0 +170782582532,213,0 +170782582581,213,0 +170782582631,213,0 +170782582679,213,0 +170782582726,214,0 +170782582774,214,0 +170782582822,214,0 +170782582872,214,0 +170782582920,214,0 +170782582968,214,0 +170782583017,214,0 +170782583065,214,0 +170782583113,214,0 +170782583162,214,0 +170782583210,214,0 +170782583258,214,0 +170782583306,213,0 +170782583354,213,0 +170782583402,213,0 +170782583450,213,0 +170782583499,213,0 +170782583549,213,0 +170782583597,214,0 +170782583645,214,0 +170782583694,214,0 +170782583742,214,0 +170782583790,214,0 +170782583838,214,0 +170782583886,214,0 +170782583934,214,0 +170782583983,214,0 +170782584031,214,0 +170782584081,214,0 +170782584129,214,0 +170782584176,213,0 +170782584224,213,0 +170782584272,213,0 +170782584320,213,0 +170782584368,213,0 +170782584416,213,0 +170782584464,214,0 +170782584512,214,0 +170782584560,214,0 +170782584608,214,0 +170782584657,214,0 +170782584707,214,0 +170782584756,214,0 +170782584804,214,0 +170782584854,214,0 +170782584902,214,0 +170782584951,214,0 +170782584999,214,0 +170782585047,213,0 +170782585095,213,0 +170782585143,213,0 +170782585191,214,0 +170782585240,214,0 +170782585288,214,0 +170782585336,214,0 +170782585384,214,0 +170782585432,214,0 +170782585480,214,0 +170782585529,214,0 +170782585577,214,0 +170782585625,214,0 +170782585673,214,0 +170782585721,214,0 +170782585771,214,0 +170782585818,214,0 +170782585866,214,0 +170782585916,213,0 +170782585964,213,0 +170782586013,213,0 +170782586061,213,0 +170782586111,213,0 +170782586159,214,0 +170782586208,214,0 +170782586258,214,0 +170782586306,214,0 +170782586354,214,0 +170782586402,214,0 +170782586450,214,0 +170782586499,214,0 +170782586547,214,0 +170782586595,214,0 +170782586644,214,0 +170782586694,214,0 +170782586742,214,0 +170782586791,213,0 +170782586839,213,0 +170782586888,213,0 +170782586936,213,0 +170782586984,213,0 +170782587032,213,0 +170782587080,214,0 +170782587128,213,0 +170782587176,214,0 +170782587226,213,0 +170782587274,214,0 +170782587322,214,0 +170782587371,214,0 +170782587419,214,0 +170782587469,214,0 +170782587518,214,0 +170782587566,214,0 +170782587616,213,0 +170782587665,213,0 +170782587713,213,0 +170782587761,213,0 +170782587809,213,0 +170782587857,213,0 +170782587907,213,0 +170782587955,213,0 +170782588004,213,0 +170782588052,213,0 +170782588102,214,0 +170782588150,214,0 +170782588199,214,0 +170782588247,214,0 +170782588295,214,0 +170782588343,214,0 +170782588392,214,0 +170782588442,214,0 +170782588490,214,0 +170782588539,213,0 +170782588589,213,0 +170782588637,213,0 +170782588686,213,0 +170782588736,213,0 +170782588784,213,0 +170782588832,213,0 +170782588880,213,0 +170782588927,213,0 +170782588975,213,0 +170782589023,213,0 +170782589071,214,0 +170782589119,214,0 +170782589169,214,0 +170782589218,214,0 +170782589266,214,0 +170782589316,214,0 +170782589365,213,0 +170782589413,213,0 +170782589462,213,0 +170782589510,213,0 +170782589558,213,0 +170782589608,213,0 +170782589656,213,0 +170782589704,214,0 +170782589751,214,0 +170782589799,214,0 +170782589849,214,0 +170782589897,214,0 +170782589945,214,0 +170782589994,214,0 +170782590042,214,0 +170782590090,214,0 +170782590138,214,0 +170782590188,214,0 +170782590236,213,0 +170782590285,213,0 +170782590333,213,0 +170782590383,213,0 +170782590430,213,0 +170782590478,214,0 +170782590526,214,0 +170782590574,213,0 +170782590624,214,0 +170782590673,214,0 +170782590721,214,0 +170782590769,214,0 +170782590819,214,0 +170782590868,214,0 +170782590916,214,0 +170782590964,214,0 +170782591012,214,0 +170782591060,214,0 +170782591109,213,0 +170782591157,213,0 +170782591207,213,0 +170782591255,213,0 +170782591304,213,0 +170782591354,213,0 +170782591402,213,0 +170782591451,213,0 +170782591499,214,0 +170782591549,214,0 +170782591597,214,0 +170782591645,214,0 +170782591692,214,0 +170782591742,214,0 +170782591791,214,0 +170782591841,214,0 +170782591889,214,0 +170782591938,214,0 +170782591988,213,0 +170782592036,214,0 +170782592084,213,0 +170782592133,213,0 +170782592183,213,0 +170782592233,213,0 +170782592281,213,0 +170782592330,214,0 +170782592380,214,0 +170782592428,214,0 +170782592476,214,0 +170782592524,214,0 +170782592571,214,0 +170782592621,214,0 +170782592671,214,0 +170782592718,214,0 +170782592766,214,0 +170782592814,213,0 +170782592864,213,0 +170782592912,213,0 +170782592960,213,0 +170782593009,214,0 +170782593057,214,0 +170782593105,214,0 +170782593153,214,0 +170782593201,214,0 +170782593250,214,0 +170782593300,214,0 +170782593348,214,0 +170782593397,214,0 +170782593445,214,0 +170782593495,214,0 +170782593543,214,0 +170782593591,214,0 +170782593639,214,0 +170782593687,213,0 +170782593735,213,0 +170782593783,213,0 +170782593832,213,0 +170782593880,214,0 +170782593928,214,0 +170782593978,214,0 +170782594026,214,0 +170782594075,214,0 +170782594125,214,0 +170782594174,214,0 +170782594222,214,0 +170782594270,214,0 +170782594318,214,0 +170782594368,214,0 +170782594416,214,0 +170782594464,215,0 +170782594513,214,0 +170782594561,213,0 +170782594611,213,0 +170782594658,213,0 +170782594706,213,0 +170782594754,213,0 +170782594802,214,0 +170782594852,214,0 +170782594901,214,0 +170782594949,214,0 +170782594997,214,0 +170782595045,214,0 +170782595093,214,0 +170782595141,214,0 +170782595189,214,0 +170782595237,214,0 +170782595285,214,0 +170782595333,214,0 +170782595381,214,0 +170782595430,213,0 +170782595480,214,0 +170782595528,214,0 +170782595576,214,0 +170782595623,214,0 +170782595671,214,0 +170782595719,214,0 +170782595769,214,0 +170782595818,214,0 +170782595866,214,0 +170782595914,214,0 +170782595962,214,0 +170782596010,215,0 +170782596060,214,0 +170782596107,214,0 +170782596157,214,0 +170782596205,214,0 +170782596253,214,0 +170782596301,213,0 +170782596349,214,0 +170782596397,214,0 +170782596445,214,0 +170782596493,214,0 +170782596541,214,0 +170782596588,214,0 +170782596638,214,0 +170782596686,214,0 +170782596734,214,0 +170782596783,214,0 +170782596833,215,0 +170782596882,214,0 +170782596932,214,0 +170782596981,214,0 +170782597029,214,0 +170782597079,214,0 +170782597127,214,0 +170782597176,213,0 +170782597226,213,0 +170782597275,213,0 +170782597325,214,0 +170782597373,214,0 +170782597421,214,0 +170782597470,214,0 +170782597518,214,0 +170782597566,214,0 +170782597614,214,0 +170782597664,214,0 +170782597712,214,0 +170782597759,215,0 +170782597809,215,0 +170782597858,214,0 +170782597908,214,0 +170782597956,214,0 +170782598005,213,0 +170782598053,213,0 +170782598101,213,0 +170782598151,213,0 +170782598200,213,0 +170782598250,214,0 +170782598299,214,0 +170782598347,214,0 +170782598395,214,0 +170782598443,214,0 +170782598492,214,0 +170782598540,215,0 +170782598588,214,0 +170782598636,214,0 +170782598686,214,0 +170782598735,214,0 +170782598783,214,0 +170782598831,214,0 +170782598880,213,0 +170782598928,213,0 +170782598978,213,0 +170782599026,213,0 +170782599074,213,0 +170782599123,214,0 +170782599173,214,0 +170782599221,214,0 +170782599268,214,0 +170782599316,214,0 +170782599364,214,0 +170782599412,214,0 +170782599462,214,0 +170782599510,214,0 +170782599559,214,0 +170782599609,214,0 +170782599657,214,0 +170782599705,214,0 +170782599753,213,0 +170782599801,213,0 +170782599848,213,0 +170782599896,213,0 +170782599946,213,0 +170782599995,214,0 +170782600045,214,0 +170782600094,214,0 +170782600142,214,0 +170782600190,214,0 +170782600240,214,0 +170782600288,214,0 +170782600336,214,0 +170782600385,214,0 +170782600433,214,0 +170782600483,214,0 +170782600531,214,0 +170782600580,214,0 +170782600630,213,0 +170782600677,213,0 +170782600725,213,0 +170782600775,213,0 +170782600825,213,0 +170782600874,213,0 +170782600924,213,0 +170782600973,214,0 +170782601023,214,0 +170782601071,214,0 +170782601120,214,0 +170782601170,214,0 +170782601218,214,0 +170782601267,214,0 +170782601315,214,0 +170782601363,214,0 +170782601411,214,0 +170782601459,213,0 +170782601507,213,0 +170782601555,213,0 +170782601604,213,0 +170782601652,213,0 +170782601700,213,0 +170782601748,213,0 +170782601796,214,0 +170782601844,214,0 +170782601892,214,0 +170782601940,214,0 +170782601988,214,0 +170782602037,214,0 +170782602087,214,0 +170782602135,214,0 +170782602183,214,0 +170782602232,214,0 +170782602282,214,0 +170782602331,213,0 +170782602379,213,0 +170782602427,213,0 +170782602475,213,0 +170782602525,213,0 +170782602574,213,0 +170782602622,213,0 +170782602670,213,0 +170782602718,213,0 +170782602766,214,0 +170782602814,214,0 +170782602862,214,0 +170782602910,214,0 +170782602959,214,0 +170782603007,214,0 +170782603057,214,0 +170782603105,214,0 +170782603154,214,0 +170782603202,213,0 +170782603252,213,0 +170782603301,213,0 +170782603349,213,0 +170782603397,214,0 +170782603445,213,0 +170782603495,214,0 +170782603543,214,0 +170782603591,213,0 +170782603638,214,0 +170782603688,214,0 +170782603736,214,0 +170782603784,214,0 +170782603833,214,0 +170782603881,214,0 +170782603929,214,0 +170782603977,214,0 +170782604025,214,0 +170782604073,213,0 +170782604121,213,0 +170782604169,213,0 +170782604217,213,0 +170782604267,213,0 +170782604315,213,0 +170782604364,214,0 +170782604413,213,0 +170782604461,213,0 +170782604511,214,0 +170782604559,214,0 +170782604608,214,0 +170782604656,214,0 +170782604706,214,0 +170782604754,214,0 +170782604802,214,0 +170782604850,214,0 +170782604899,214,0 +170782604947,213,0 +170782604995,213,0 +170782605043,213,0 +170782605092,213,0 +170782605142,213,0 +170782605190,213,0 +170782605238,213,0 +170782605287,213,0 +170782605337,214,0 +170782605385,214,0 +170782605434,214,0 +170782605482,214,0 +170782605532,214,0 +170782605580,214,0 +170782605628,214,0 +170782605675,214,0 +170782605723,214,0 +170782605771,214,0 +170782605821,213,0 +170782605869,213,0 +170782605918,213,0 +170782605966,213,0 +170782606014,213,0 +170782606064,213,0 +170782606113,213,0 +170782606161,213,0 +170782606209,213,0 +170782606259,213,0 +170782606306,213,0 +170782606354,214,0 +170782606404,214,0 +170782606452,214,0 +170782606500,214,0 +170782606548,214,0 +170782606597,214,0 +170782606645,213,0 +170782606693,213,0 +170782606741,213,0 +170782606789,213,0 +170782606839,213,0 +170782606887,213,0 +170782606935,213,0 +170782606983,213,0 +170782607031,213,0 +170782607079,213,0 +170782607126,214,0 +170782607174,214,0 +170782607222,214,0 +170782607272,214,0 +170782607322,214,0 +170782607371,214,0 +170782607419,214,0 +170782607469,214,0 +170782607517,214,0 +170782607566,213,0 +170782607614,213,0 +170782607662,213,0 +170782607710,213,0 +170782607759,213,0 +170782607807,213,0 +170782607855,213,0 +170782607903,213,0 +170782607951,214,0 +170782608000,214,0 +170782608050,214,0 +170782608099,214,0 +170782608149,214,0 +170782608198,214,0 +170782608248,214,0 +170782608298,214,0 +170782608345,214,0 +170782608393,213,0 +170782608443,213,0 +170782608491,213,0 +170782608539,213,0 +170782608587,214,0 +170782608635,214,0 +170782608682,214,0 +170782608730,214,0 +170782608778,214,0 +170782608826,214,0 +170782608874,214,0 +170782608922,214,0 +170782608970,214,0 +170782609018,214,0 +170782609066,214,0 +170782609114,214,0 +170782609163,214,0 +170782609211,214,0 +170782609259,213,0 +170782609307,213,0 +170782609355,213,0 +170782609403,214,0 +170782609451,213,0 +170782609498,214,0 +170782609546,214,0 +170782609596,213,0 +170782609643,214,0 +170782609691,214,0 +170782609739,214,0 +170782609787,214,0 +170782609835,214,0 +170782609883,215,0 +170782609931,214,0 +170782609980,214,0 +170782610028,214,0 +170782610076,214,0 +170782610124,213,0 +170782610172,213,0 +170782610219,213,0 +170782610269,213,0 +170782610317,213,0 +170782610365,213,0 +170782610412,214,0 +170782610460,214,0 +170782610508,214,0 +170782610556,214,0 +170782610606,214,0 +170782610654,214,0 +170782610702,214,0 +170782610750,214,0 +170782610799,214,0 +170782610847,214,0 +170782610895,214,0 +170782610944,214,0 +170782610992,213,0 +170782611040,213,0 +170782611088,213,0 +170782611136,213,0 +170782611184,213,0 +170782611232,213,0 +170782611280,213,0 +170782611328,214,0 +170782611375,214,0 +170782611423,214,0 +170782611471,214,0 +170782611519,214,0 +170782611567,214,0 +170782611615,214,0 +170782611663,214,0 +170782611710,214,0 +170782611758,214,0 +170782611806,214,0 +170782611854,213,0 +170782611902,213,0 +170782611950,213,0 +170782611997,213,0 +170782612045,213,0 +170782612093,213,0 +170782612143,214,0 +170782612191,214,0 +170782612239,214,0 +170782612287,214,0 +170782612335,214,0 +170782612383,214,0 +170782612432,214,0 +170782612480,214,0 +170782612530,214,0 +170782612579,214,0 +170782612627,214,0 +170782612677,214,0 +170782612725,213,0 +170782612774,213,0 +170782612822,213,0 +170782612870,213,0 +170782612918,213,0 +170782612968,214,0 +170782613017,213,0 +170782613065,214,0 +170782613115,213,0 +170782613163,214,0 +170782613211,214,0 +170782613260,214,0 +170782613308,214,0 +170782613356,214,0 +170782613404,214,0 +170782613452,214,0 +170782613501,214,0 +170782613549,214,0 +170782613599,213,0 +170782613647,213,0 +170782613695,213,0 +170782613743,213,0 +170782613791,213,0 +170782613839,213,0 +170782613888,213,0 +170782613936,214,0 +170782613986,214,0 +170782614033,214,0 +170782614081,214,0 +170782614131,214,0 +170782614180,214,0 +170782614228,214,0 +170782614276,215,0 +170782614326,214,0 +170782614373,214,0 +170782614421,214,0 +170782614469,213,0 +170782614519,213,0 +170782614567,213,0 +170782614616,214,0 +170782614664,214,0 +170782614712,214,0 +170782614760,214,0 +170782614808,213,0 +170782614856,214,0 +170782614904,214,0 +170782614951,214,0 +170782614999,214,0 +170782615047,214,0 +170782615095,214,0 +170782615143,214,0 +170782615192,214,0 +170782615240,214,0 +170782615288,214,0 +170782615336,213,0 +170782615384,213,0 +170782615434,213,0 +170782615482,213,0 +170782615530,213,0 +170782615579,213,0 +170782615629,213,0 +170782615678,214,0 +170782615728,214,0 +170782615776,214,0 +170782615825,214,0 +170782615873,214,0 +170782615921,214,0 +170782615969,214,0 +170782616018,214,0 +170782616066,214,0 +170782616116,214,0 +170782616165,213,0 +170782616213,213,0 +170782616263,213,0 +170782616311,213,0 +170782616360,213,0 +170782616410,213,0 +170782616459,213,0 +170782616509,213,0 +170782616557,213,0 +170782616605,213,0 +170782616654,213,0 +170782616702,213,0 +170782616752,213,0 +170782616799,213,0 +170782616849,213,0 +170782616897,213,0 +170782616945,213,0 +170782616994,214,0 +170782617042,214,0 +170782617090,214,0 +170782617138,214,0 +170782617186,214,0 +170782617234,214,0 +170782617282,214,0 +170782617330,214,0 +170782617378,214,0 +170782617426,214,0 +170782617474,213,0 +170782617523,213,0 +170782617573,213,0 +170782617622,213,0 +170782617670,213,0 +170782617718,213,0 +170782617768,213,0 +170782617816,214,0 +170782617864,214,0 +170782617911,214,0 +170782617961,214,0 +170782618010,214,0 +170782618060,214,0 +170782618109,214,0 +170782618159,214,0 +170782618207,214,0 +170782618255,214,0 +170782618303,214,0 +170782618351,213,0 +170782618399,213,0 +170782618447,213,0 +170782618495,213,0 +170782618542,214,0 +170782618590,214,0 +170782618638,214,0 +170782618688,214,0 +170782618737,214,0 +170782618785,214,0 +170782618833,214,0 +170782618881,214,0 +170782618931,214,0 +170782618979,214,0 +170782619027,214,0 +170782619075,215,0 +170782619122,214,0 +170782619170,214,0 +170782619220,213,0 +170782619268,213,0 +170782619316,213,0 +170782619364,213,0 +170782619412,213,0 +170782619461,214,0 +170782619509,214,0 +170782619559,214,0 +170782619608,214,0 +170782619656,214,0 +170782619704,214,0 +170782619752,214,0 +170782619802,214,0 +170782619851,214,0 +170782619901,214,0 +170782619949,214,0 +170782619998,214,0 +170782620046,214,0 +170782620096,213,0 +170782620145,213,0 +170782620193,213,0 +170782620241,213,0 +170782620289,214,0 +170782620336,214,0 +170782620384,214,0 +170782620432,214,0 +170782620482,214,0 +170782620530,214,0 +170782620579,214,0 +170782620627,214,0 +170782620675,214,0 +170782620725,214,0 +170782620773,214,0 +170782620822,214,0 +170782620870,214,0 +170782620918,213,0 +170782620966,213,0 +170782621014,214,0 +170782621062,214,0 +170782621111,214,0 +170782621159,214,0 +170782621207,214,0 +170782621257,214,0 +170782621304,214,0 +170782621352,214,0 +170782621402,214,0 +170782621451,214,0 +170782621499,215,0 +170782621549,214,0 +170782621597,214,0 +170782621645,215,0 +170782621692,214,0 +170782621740,214,0 +170782621788,214,0 +170782621838,214,0 +170782621886,214,0 +170782621934,214,0 +170782621982,214,0 +170782622030,214,0 +170782622078,214,0 +170782622126,214,0 +170782622174,214,0 +170782622222,214,0 +170782622270,214,0 +170782622317,214,0 +170782622367,214,0 +170782622415,214,0 +170782622463,214,0 +170782622513,214,0 +170782622562,215,0 +170782622610,214,0 +170782622660,214,0 +170782622709,214,0 +170782622757,214,0 +170782622805,214,0 +170782622853,214,0 +170782622902,214,0 +170782622952,214,0 +170782623000,214,0 +170782623047,214,0 +170782623095,214,0 +170782623143,214,0 +170782623193,214,0 +170782623241,214,0 +170782623290,214,0 +170782623338,215,0 +170782623388,214,0 +170782623436,215,0 +170782623484,214,0 +170782623532,214,0 +170782623581,214,0 +170782623629,214,0 +170782623677,214,0 +170782623725,214,0 +170782623773,214,0 +170782623822,214,0 +170782623870,214,0 +170782623920,214,0 +170782623969,214,0 +170782624019,214,0 +170782624067,214,0 +170782624115,215,0 +170782624163,214,0 +170782624212,214,0 +170782624262,215,0 +170782624310,214,0 +170782624359,214,0 +170782624407,213,0 +170782624455,213,0 +170782624503,214,0 +170782624553,214,0 +170782624600,214,0 +170782624650,214,0 +170782624698,214,0 +170782624747,214,0 +170782624797,214,0 +170782624846,214,0 +170782624896,214,0 +170782624944,214,0 +170782624993,215,0 +170782625041,215,0 +170782625091,215,0 +170782625139,214,0 +170782625187,214,0 +170782625235,214,0 +170782625283,213,0 +170782625331,213,0 +170782625379,213,0 +170782625426,213,0 +170782625474,214,0 +170782625524,214,0 +170782625572,214,0 +170782625620,214,0 +170782625668,214,0 +170782625716,214,0 +170782625764,214,0 +170782625811,214,0 +170782625859,214,0 +170782625909,214,0 +170782625958,214,0 +170782626006,214,0 +170782626056,214,0 +170782626105,214,0 +170782626153,213,0 +170782626203,213,0 +170782626251,213,0 +170782626299,213,0 +170782626346,213,0 +170782626394,213,0 +170782626444,213,0 +170782626492,214,0 +170782626540,214,0 +170782626588,214,0 +170782626637,214,0 +170782626685,214,0 +170782626735,214,0 +170782626783,214,0 +170782626831,214,0 +170782626879,214,0 +170782626927,214,0 +170782626974,213,0 +170782627024,213,0 +170782627072,213,0 +170782627120,213,0 +170782627169,213,0 +170782627219,213,0 +170782627267,213,0 +170782627315,214,0 +170782627363,214,0 +170782627411,214,0 +170782627459,214,0 +170782627508,214,0 +170782627556,214,0 +170782627604,214,0 +170782627652,214,0 +170782627702,214,0 +170782627750,214,0 +170782627797,214,0 +170782627845,214,0 +170782627895,213,0 +170782627944,213,0 +170782627992,213,0 +170782628040,214,0 +170782628088,214,0 +170782628136,214,0 +170782628184,214,0 +170782628234,214,0 +170782628282,214,0 +170782628330,214,0 +170782628378,214,0 +170782628425,214,0 +170782628475,214,0 +170782628524,214,0 +170782628572,214,0 +170782628620,214,0 +170782628670,214,0 +170782628718,213,0 +170782628766,213,0 +170782628815,213,0 +170782628863,214,0 +170782628911,213,0 +170782628959,213,0 +170782629008,214,0 +170782629056,214,0 +170782629104,214,0 +170782629152,214,0 +170782629200,214,0 +170782629248,214,0 +170782629298,214,0 +170782629347,214,0 +170782629397,214,0 +170782629445,214,0 +170782629493,214,0 +170782629542,214,0 +170782629590,213,0 +170782629640,213,0 +170782629687,213,0 +170782629737,213,0 +170782629785,214,0 +170782629833,214,0 +170782629880,214,0 +170782629928,214,0 +170782629976,214,0 +170782630024,214,0 +170782630072,214,0 +170782630120,214,0 +170782630168,214,0 +170782630218,215,0 +170782630267,214,0 +170782630315,214,0 +170782630363,214,0 +170782630412,214,0 +170782630460,214,0 +170782630508,213,0 +170782630556,213,0 +170782630604,213,0 +170782630652,213,0 +170782630702,213,0 +170782630750,214,0 +170782630799,214,0 +170782630849,214,0 +170782630897,214,0 +170782630944,214,0 +170782630992,214,0 +170782631040,214,0 +170782631088,214,0 +170782631138,214,0 +170782631186,214,0 +170782631234,214,0 +170782631282,214,0 +170782631330,213,0 +170782631378,213,0 +170782631426,213,0 +170782631473,213,0 +170782631521,213,0 +170782631569,213,0 +170782631617,214,0 +170782631665,214,0 +170782631713,214,0 +170782631763,214,0 +170782631811,214,0 +170782631860,214,0 +170782631908,214,0 +170782631956,214,0 +170782632006,214,0 +170782632053,214,0 +170782632101,214,0 +170782632151,214,0 +170782632199,213,0 +170782632247,213,0 +170782632295,213,0 +170782632343,213,0 +170782632392,213,0 +170782632442,213,0 +170782632490,213,0 +170782632538,213,0 +170782632586,213,0 +170782632635,213,0 +170782632685,213,0 +170782632734,214,0 +170782632782,214,0 +170782632830,214,0 +170782632878,214,0 +170782632926,214,0 +170782632975,214,0 +170782633025,214,0 +170782633073,213,0 +170782633122,213,0 +170782633172,213,0 +170782633220,213,0 +170782633269,213,0 +170782633317,213,0 +170782633367,213,0 +170782633416,213,0 +170782633464,213,0 +170782633512,213,0 +170782633560,213,0 +170782633608,214,0 +170782633656,214,0 +170782633706,213,0 +170782633755,214,0 +170782633805,214,0 +170782633853,214,0 +170782633901,214,0 +170782633949,213,0 +170782633998,213,0 +170782634048,213,0 +170782634096,213,0 +170782634145,213,0 +170782634193,213,0 +170782634241,213,0 +170782634289,214,0 +170782634337,213,0 +170782634385,214,0 +170782634433,214,0 +170782634480,214,0 +170782634528,214,0 +170782634576,214,0 +170782634624,214,0 +170782634672,214,0 +170782634720,214,0 +170782634769,214,0 +170782634817,213,0 +170782634865,213,0 +170782634915,213,0 +170782634964,213,0 +170782635012,213,0 +170782635060,213,0 +170782635108,213,0 +170782635156,213,0 +170782635204,213,0 +170782635252,214,0 +170782635301,214,0 +170782635349,214,0 +170782635397,214,0 +170782635445,214,0 +170782635493,214,0 +170782635541,214,0 +170782635589,214,0 +170782635637,214,0 +170782635684,213,0 +170782635732,213,0 +170782635780,213,0 +170782635828,213,0 +170782635876,213,0 +170782635926,214,0 +170782635975,213,0 +170782636025,213,0 +170782636073,213,0 +170782636120,214,0 +170782636168,214,0 +170782636218,214,0 +170782636266,214,0 +170782636314,214,0 +170782636362,214,0 +170782636410,214,0 +170782636457,214,0 +170782636505,214,0 +170782636553,213,0 +170782636603,213,0 +170782636652,213,0 +170782636700,213,0 +170782636748,213,0 +170782636796,213,0 +170782636844,214,0 +170782636892,214,0 +170782636939,214,0 +170782636987,214,0 +170782637035,214,0 +170782637083,214,0 +170782637131,214,0 +170782637179,214,0 +170782637226,214,0 +170782637274,214,0 +170782637322,214,0 +170782637370,214,0 +170782637418,213,0 +170782637466,213,0 +170782637513,213,0 +170782637561,214,0 +170782637609,213,0 +170782637657,213,0 +170782637706,214,0 +170782637754,214,0 +170782637802,214,0 +170782637852,214,0 +170782637901,214,0 +170782637949,214,0 +170782637999,214,0 +170782638048,214,0 +170782638098,214,0 +170782638147,214,0 +170782638195,214,0 +170782638245,214,0 +170782638294,213,0 +170782638342,213,0 +170782638392,213,0 +170782638441,214,0 +170782638489,213,0 +170782638539,214,0 +170782638587,214,0 +170782638635,214,0 +170782638682,214,0 +170782638730,214,0 +170782638780,214,0 +170782638829,214,0 +170782638877,214,0 +170782638925,214,0 +170782638973,214,0 +170782639023,214,0 +170782639071,214,0 +170782639120,214,0 +170782639170,213,0 +170782639217,213,0 +170782639267,214,0 +170782639316,214,0 +170782639366,214,0 +170782639414,214,0 +170782639462,214,0 +170782639510,214,0 +170782639558,214,0 +170782639607,214,0 +170782639655,214,0 +170782639703,214,0 +170782639752,214,0 +170782639800,214,0 +170782639848,215,0 +170782639898,215,0 +170782639946,214,0 +170782639995,214,0 +170782640043,214,0 +170782640091,214,0 +170782640139,214,0 +170782640187,214,0 +170782640235,214,0 +170782640283,214,0 +170782640331,214,0 +170782640379,214,0 +170782640427,214,0 +170782640476,214,0 +170782640526,214,0 +170782640574,215,0 +170782640623,214,0 +170782640673,215,0 +170782640721,214,0 +170782640769,215,0 +170782640817,214,0 +170782640865,214,0 +170782640914,213,0 +170782640964,213,0 +170782641012,214,0 +170782641060,214,0 +170782641108,214,0 +170782641155,214,0 +170782641205,214,0 +170782641255,214,0 +170782641303,214,0 +170782641352,214,0 +170782641400,214,0 +170782641449,214,0 +170782641499,214,0 +170782641548,214,0 +170782641596,214,0 +170782641644,215,0 +170782641692,214,0 +170782641740,214,0 +170782641788,213,0 +170782641838,214,0 +170782641887,214,0 +170782641935,214,0 +170782641983,214,0 +170782642031,214,0 +170782642079,214,0 +170782642127,214,0 +170782642176,214,0 +170782642224,214,0 +170782642272,214,0 +170782642320,214,0 +170782642369,215,0 +170782642417,214,0 +170782642465,214,0 +170782642515,214,0 +170782642563,214,0 +170782642611,214,0 +170782642659,213,0 +170782642708,213,0 +170782642756,213,0 +170782642806,213,0 +170782642854,213,0 +170782642903,213,0 +170782642951,214,0 +170782642999,214,0 +170782643048,214,0 +170782643096,214,0 +170782643144,214,0 +170782643192,214,0 +170782643242,214,0 +170782643290,214,0 +170782643338,214,0 +170782643386,214,0 +170782643433,214,0 +170782643481,214,0 +170782643529,213,0 +170782643579,213,0 +170782643628,213,0 +170782643678,213,0 +170782643727,213,0 +170782643775,214,0 +170782643823,214,0 +170782643871,214,0 +170782643919,214,0 +170782643968,214,0 +170782644016,214,0 +170782644064,214,0 +170782644112,214,0 +170782644160,214,0 +170782644208,214,0 +170782644256,214,0 +170782644305,214,0 +170782644353,214,0 +170782644401,213,0 +170782644449,213,0 +170782644497,213,0 +170782644545,213,0 +170782644593,213,0 +170782644642,214,0 +170782644690,214,0 +170782644738,214,0 +170782644788,214,0 +170782644836,214,0 +170782644885,214,0 +170782644935,214,0 +170782644983,214,0 +170782645031,214,0 +170782645080,214,0 +170782645128,214,0 +170782645176,214,0 +170782645224,214,0 +170782645272,213,0 +170782645320,213,0 +170782645368,213,0 +170782645417,213,0 +170782645465,213,0 +170782645513,214,0 +170782645562,213,0 +170782645610,214,0 +170782645660,214,0 +170782645708,214,0 +170782645756,214,0 +170782645804,214,0 +170782645852,214,0 +170782645900,214,0 +170782645947,214,0 +170782645997,214,0 +170782646046,214,0 +170782646094,214,0 +170782646144,213,0 +170782646192,213,0 +170782646241,213,0 +170782646289,213,0 +170782646339,213,0 +170782646388,213,0 +170782646438,213,0 +170782646487,214,0 +170782646535,214,0 +170782646585,214,0 +170782646633,214,0 +170782646682,214,0 +170782646732,214,0 +170782646781,214,0 +170782646829,214,0 +170782646877,214,0 +170782646925,215,0 +170782646973,214,0 +170782647023,213,0 +170782647071,213,0 +170782647119,213,0 +170782647167,213,0 +170782647215,213,0 +170782647264,214,0 +170782647314,213,0 +170782647362,214,0 +170782647410,214,0 +170782647457,214,0 +170782647505,214,0 +170782647555,214,0 +170782647603,214,0 +170782647652,214,0 +170782647700,214,0 +170782647748,214,0 +170782647796,214,0 +170782647846,214,0 +170782647895,213,0 +170782647945,213,0 +170782647993,213,0 +170782648041,213,0 +170782648089,213,0 +170782648136,213,0 +170782648184,213,0 +170782648234,214,0 +170782648282,214,0 +170782648330,214,0 +170782648378,214,0 +170782648427,214,0 +170782648476,214,0 +170782648524,214,0 +170782648574,214,0 +170782648622,214,0 +170782648671,214,0 +170782648719,214,0 +170782648767,213,0 +170782648815,213,0 +170782648863,213,0 +170782648910,213,0 +170782648960,213,0 +170782649008,213,0 +170782649056,214,0 +170782649104,214,0 +170782649152,214,0 +170782649199,214,0 +170782649248,214,0 +170782649297,214,0 +170782649345,214,0 +170782649393,214,0 +170782649441,214,0 +170782649489,214,0 +170782649537,214,0 +170782649585,213,0 +170782649632,213,0 +170782649680,213,0 +170782649728,213,0 +170782649776,213,0 +170782649824,213,0 +170782649874,213,0 +170782649922,214,0 +170782649969,214,0 +170782650017,214,0 +170782650067,214,0 +170782650115,214,0 +170782650163,214,0 +170782650212,214,0 +170782650260,214,0 +170782650310,214,0 +170782650359,214,0 +170782650409,214,0 +170782650456,213,0 +170782650504,213,0 +170782650552,213,0 +170782650600,213,0 +170782650649,214,0 +170782650699,214,0 +170782650747,213,0 +170782650796,214,0 +170782650844,214,0 +170782650892,214,0 +170782650940,214,0 +170782650988,214,0 +170782651036,214,0 +170782651083,214,0 +170782651131,215,0 +170782651181,214,0 +170782651229,214,0 +170782651278,214,0 +170782651326,213,0 +170782651374,213,0 +170782651422,213,0 +170782651472,213,0 +170782651521,213,0 +170782651571,213,0 +170782651618,214,0 +170782651668,214,0 +170782651718,214,0 +170782651767,214,0 +170782651815,214,0 +170782651865,214,0 +170782651912,214,0 +170782651960,214,0 +170782652008,214,0 +170782652058,214,0 +170782652107,215,0 +170782652155,214,0 +170782652203,214,0 +170782652251,214,0 +170782652301,213,0 +170782652350,213,0 +170782652400,213,0 +170782652449,213,0 +170782652497,214,0 +170782652545,214,0 +170782652595,214,0 +170782652643,214,0 +170782652690,214,0 +170782652738,214,0 +170782652786,214,0 +170782652834,214,0 +170782652882,214,0 +170782652930,215,0 +170782652978,214,0 +170782653025,214,0 +170782653073,214,0 +170782653121,213,0 +170782653169,213,0 +170782653218,214,0 +170782653268,214,0 +170782653316,214,0 +170782653364,214,0 +170782653412,214,0 +170782653460,214,0 +170782653507,214,0 +170782653557,214,0 +170782653605,214,0 +170782653653,214,0 +170782653701,215,0 +170782653749,215,0 +170782653798,215,0 +170782653846,214,0 +170782653895,214,0 +170782653945,213,0 +170782653995,213,0 +170782654042,213,0 +170782654090,213,0 +170782654138,213,0 +170782654186,213,0 +170782654236,214,0 +170782654284,214,0 +170782654332,214,0 +170782654380,214,0 +170782654429,214,0 +170782654477,214,0 +170782654525,214,0 +170782654573,214,0 +170782654621,214,0 +170782654670,214,0 +170782654720,214,0 +170782654768,214,0 +170782654817,214,0 +170782654865,213,0 +170782654913,213,0 +170782654963,214,0 +170782655011,213,0 +170782655059,214,0 +170782655107,214,0 +170782655155,214,0 +170782655204,214,0 +170782655252,214,0 +170782655300,214,0 +170782655348,215,0 +170782655396,214,0 +170782655445,214,0 +170782655493,214,0 +170782655541,214,0 +170782655591,214,0 +170782655640,214,0 +170782655688,214,0 +170782655738,213,0 +170782655786,213,0 +170782655835,213,0 +170782655883,214,0 +170782655933,214,0 +170782655982,214,0 +170782656030,214,0 +170782656079,214,0 +170782656127,214,0 +170782656177,214,0 +170782656226,214,0 +170782656274,214,0 +170782656324,214,0 +170782656372,215,0 +170782656421,215,0 +170782656471,214,0 +170782656519,214,0 +170782656566,213,0 +170782656614,213,0 +170782656662,213,0 +170782656710,213,0 +170782656758,213,0 +170782656806,213,0 +170782656853,213,0 +170782656901,213,0 +170782656949,213,0 +170782656997,213,0 +170782657045,214,0 +170782657092,214,0 +170782657140,214,0 +170782657188,214,0 +170782657236,214,0 +170782657284,214,0 +170782657331,214,0 +170782657379,214,0 +170782657429,213,0 +170782657477,213,0 +170782657524,213,0 +170782657572,213,0 +170782657620,213,0 +170782657670,214,0 +170782657719,213,0 +170782657768,214,0 +170782657816,214,0 +170782657864,214,0 +170782657912,214,0 +170782657960,214,0 +170782658007,214,0 +170782658055,214,0 +170782658103,214,0 +170782658151,215,0 +170782658199,214,0 +170782658246,214,0 +170782658294,213,0 +170782658342,213,0 +170782658390,213,0 +170782658438,213,0 +170782658486,213,0 +170782658535,213,0 +170782658583,213,0 +170782658631,214,0 +170782658679,214,0 +170782658726,214,0 +170782658774,214,0 +170782658822,214,0 +170782658870,214,0 +170782658918,214,0 +170782658965,214,0 +170782659013,214,0 +170782659061,214,0 +170782659109,215,0 +170782659157,213,0 +170782659205,213,0 +170782659253,213,0 +170782659300,213,0 +170782659350,213,0 +170782659400,213,0 +170782659447,213,0 +170782659495,214,0 +170782659543,214,0 +170782659593,214,0 +170782659641,214,0 +170782659689,214,0 +170782659737,214,0 +170782659785,214,0 +170782659833,214,0 +170782659880,214,0 +170782659928,214,0 +170782659976,214,0 +170782660024,214,0 +170782660072,213,0 +170782660120,213,0 +170782660168,213,0 +170782660217,213,0 +170782660267,213,0 +170782660316,213,0 +170782660364,213,0 +170782660412,213,0 +170782660460,214,0 +170782660510,214,0 +170782660557,214,0 +170782660607,214,0 +170782660655,214,0 +170782660703,214,0 +170782660751,214,0 +170782660800,214,0 +170782660850,214,0 +170782660898,213,0 +170782660946,213,0 +170782660994,213,0 +170782661042,213,0 +170782661091,213,0 +170782661141,213,0 +170782661188,214,0 +170782661238,214,0 +170782661286,214,0 +170782661334,214,0 +170782661382,214,0 +170782661430,214,0 +170782661477,214,0 +170782661527,214,0 +170782661575,214,0 +170782661624,214,0 +170782661672,214,0 +170782661722,214,0 +170782661771,213,0 +170782661819,213,0 +170782661869,213,0 +170782661917,213,0 +170782661965,213,0 +170782662014,213,0 +170782662062,213,0 +170782662110,213,0 +170782662158,213,0 +170782662205,214,0 +170782662253,214,0 +170782662301,214,0 +170782662349,214,0 +170782662397,214,0 +170782662445,214,0 +170782662493,214,0 +170782662541,215,0 +170782662589,214,0 +170782662637,213,0 +170782662686,213,0 +170782662736,213,0 +170782662784,213,0 +170782662832,213,0 +170782662880,213,0 +170782662928,214,0 +170782662977,214,0 +170782663025,214,0 +170782663075,214,0 +170782663124,214,0 +170782663172,214,0 +170782663222,214,0 +170782663270,214,0 +170782663318,214,0 +170782663366,214,0 +170782663415,214,0 +170782663463,214,0 +170782663512,213,0 +170782663560,213,0 +170782663608,213,0 +170782663658,213,0 +170782663706,214,0 +170782663754,214,0 +170782663803,213,0 +170782663851,214,0 +170782663899,214,0 +170782663947,214,0 +170782663995,214,0 +170782664043,214,0 +170782664092,214,0 +170782664140,214,0 +170782664188,214,0 +170782664237,214,0 +170782664285,214,0 +170782664333,214,0 +170782664381,213,0 +170782664429,213,0 +170782664477,213,0 +170782664525,213,0 +170782664574,213,0 +170782664622,213,0 +170782664672,213,0 +170782664719,214,0 +170782664769,214,0 +170782664817,214,0 +170782664864,214,0 +170782664912,214,0 +170782664960,214,0 +170782665008,214,0 +170782665056,214,0 +170782665103,215,0 +170782665151,215,0 +170782665199,214,0 +170782665249,214,0 +170782665298,213,0 +170782665348,213,0 +170782665396,213,0 +170782665443,213,0 +170782665491,214,0 +170782665541,213,0 +170782665590,214,0 +170782665638,214,0 +170782665686,214,0 +170782665734,214,0 +170782665782,214,0 +170782665830,214,0 +170782665878,214,0 +170782665926,214,0 +170782665976,214,0 +170782666024,214,0 +170782666073,215,0 +170782666121,214,0 +170782666169,214,0 +170782666217,214,0 +170782666266,214,0 +170782666314,214,0 +170782666362,214,0 +170782666410,214,0 +170782666458,214,0 +170782666506,214,0 +170782666554,214,0 +170782666602,214,0 +170782666651,214,0 +170782666699,214,0 +170782666747,214,0 +170782666795,214,0 +170782666843,214,0 +170782666891,214,0 +170782666939,214,0 +170782666987,214,0 +170782667035,213,0 +170782667084,213,0 +170782667134,214,0 +170782667182,214,0 +170782667230,214,0 +170782667279,214,0 +170782667329,214,0 +170782667377,214,0 +170782667426,214,0 +170782667474,214,0 +170782667524,214,0 +170782667571,214,0 +170782667621,214,0 +170782667669,214,0 +170782667717,214,0 +170782667766,214,0 +170782667816,214,0 +170782667864,213,0 +170782667912,214,0 +170782667961,214,0 +170782668009,214,0 +170782668057,214,0 +170782668105,214,0 +170782668153,214,0 +170782668201,214,0 +170782668250,214,0 +170782668300,214,0 +170782668348,214,0 +170782668396,214,0 +170782668444,214,0 +170782668492,214,0 +170782668540,215,0 +170782668589,215,0 +170782668639,214,0 +170782668688,215,0 +170782668736,213,0 +170782668785,213,0 +170782668833,213,0 +170782668881,214,0 +170782668929,214,0 +170782668977,214,0 +170782669025,214,0 +170782669073,214,0 +170782669122,214,0 +170782669170,214,0 +170782669218,214,0 +170782669268,214,0 +170782669316,214,0 +170782669364,214,0 +170782669411,215,0 +170782669459,214,0 +170782669509,214,0 +170782669557,214,0 +170782669604,214,0 +170782669652,213,0 +170782669700,213,0 +170782669748,214,0 +170782669796,214,0 +170782669844,214,0 +170782669891,214,0 +170782669939,214,0 +170782669987,214,0 +170782670035,214,0 +170782670083,214,0 +170782670131,214,0 +170782670178,214,0 +170782670226,214,0 +170782670274,214,0 +170782670322,214,0 +170782670370,214,0 +170782670419,214,0 +170782670467,213,0 +170782670515,213,0 +170782670564,213,0 +170782670612,213,0 +170782670660,214,0 +170782670708,214,0 +170782670756,214,0 +170782670806,214,0 +170782670854,214,0 +170782670901,214,0 +170782670949,214,0 +170782670999,214,0 +170782671048,214,0 +170782671096,214,0 +170782671144,214,0 +170782671192,214,0 +170782671240,214,0 +170782671288,214,0 +170782671337,214,0 +170782671385,213,0 +170782671433,213,0 +170782671481,213,0 +170782671529,213,0 +170782671578,214,0 +170782671626,214,0 +170782671674,214,0 +170782671722,214,0 +170782671770,214,0 +170782671817,214,0 +170782671865,214,0 +170782671913,214,0 +170782671961,214,0 +170782672010,214,0 +170782672058,214,0 +170782672106,214,0 +170782672154,214,0 +170782672202,214,0 +170782672250,213,0 +170782672298,213,0 +170782672346,213,0 +170782672394,214,0 +170782672443,214,0 +170782672493,214,0 +170782672541,214,0 +170782672589,214,0 +170782672636,214,0 +170782672684,214,0 +170782672734,214,0 +170782672782,214,0 +170782672830,214,0 +170782672877,214,0 +170782672925,214,0 +170782672975,214,0 +170782673023,214,0 +170782673071,214,0 +170782673119,214,0 +170782673166,214,0 +170782673216,214,0 +170782673265,213,0 +170782673313,214,0 +170782673361,214,0 +170782673409,214,0 +170782673458,214,0 +170782673506,214,0 +170782673556,214,0 +170782673604,214,0 +170782673652,214,0 +170782673701,215,0 +170782673749,214,0 +170782673797,214,0 +170782673847,214,0 +170782673896,214,0 +170782673944,214,0 +170782673992,213,0 +170782674040,213,0 +170782674088,213,0 +170782674138,213,0 +170782674187,213,0 +170782674235,214,0 +170782674283,214,0 +170782674331,214,0 +170782674379,214,0 +170782674428,214,0 +170782674476,214,0 +170782674526,214,0 +170782674574,214,0 +170782674622,214,0 +170782674671,214,0 +170782674719,214,0 +170782674768,214,0 +170782674816,214,0 +170782674866,213,0 +170782674914,213,0 +170782674961,213,0 +170782675011,213,0 +170782675060,213,0 +170782675108,213,0 +170782675156,213,0 +170782675204,214,0 +170782675253,214,0 +170782675301,214,0 +170782675349,214,0 +170782675397,214,0 +170782675445,214,0 +170782675493,214,0 +170782675540,214,0 +170782675588,214,0 +170782675636,214,0 +170782675684,214,0 +170782675732,213,0 +170782675781,213,0 +170782675829,213,0 +170782675877,213,0 +170782675924,213,0 +170782675972,213,0 +170782676022,213,0 +170782676070,214,0 +170782676118,214,0 +170782676165,214,0 +170782676213,214,0 +170782676261,214,0 +170782676309,214,0 +170782676357,214,0 +170782676405,214,0 +170782676453,214,0 +170782676501,214,0 +170782676549,214,0 +170782676596,213,0 +170782676644,213,0 +170782676692,213,0 +170782676740,213,0 +170782676788,213,0 +170782676838,213,0 +170782676885,213,0 +170782676935,213,0 +170782676985,213,0 +170782677033,213,0 +170782677080,214,0 +170782677128,214,0 +170782677176,214,0 +170782677224,214,0 +170782677272,214,0 +170782677320,214,0 +170782677370,214,0 +170782677419,214,0 +170782677469,213,0 +170782677518,213,0 +170782677566,213,0 +170782677615,213,0 +170782677663,213,0 +170782677711,213,0 +170782677759,214,0 +170782677807,213,0 +170782677855,213,0 +170782677903,214,0 +170782677951,214,0 +170782677998,214,0 +170782678046,214,0 +170782678094,214,0 +170782678142,214,0 +170782678190,214,0 +170782678239,214,0 +170782678287,214,0 +170782678335,213,0 +170782678383,213,0 +170782678432,213,0 +170782678480,213,0 +170782678528,213,0 +170782678576,213,0 +170782678624,213,0 +170782678672,213,0 +170782678720,214,0 +170782678767,214,0 +170782678815,214,0 +170782678865,214,0 +170782678914,214,0 +170782678962,214,0 +170782679010,214,0 +170782679058,214,0 +170782679106,214,0 +170782679154,214,0 +170782679202,213,0 +170782679252,213,0 +170782679301,213,0 +170782679351,213,0 +170782679399,213,0 +170782679446,213,0 +170782679494,213,0 +170782679542,213,0 +170782679592,214,0 +170782679640,214,0 +170782679688,214,0 +170782679737,214,0 +170782679787,214,0 +170782679835,214,0 +170782679883,214,0 +170782679931,214,0 +170782679979,214,0 +170782680028,214,0 +170782680078,213,0 +170782680126,213,0 +170782680175,213,0 +170782680223,213,0 +170782680273,213,0 +170782680321,213,0 +170782680370,213,0 +170782680418,213,0 +170782680466,213,0 +170782680514,214,0 +170782680562,214,0 +170782680610,214,0 +170782680658,214,0 +170782680706,214,0 +170782680754,214,0 +170782680803,214,0 +170782680853,214,0 +170782680901,214,0 +170782680949,213,0 +170782680996,213,0 +170782681046,213,0 +170782681094,213,0 +170782681142,213,0 +170782681190,213,0 +170782681238,213,0 +170782681286,213,0 +170782681333,214,0 +170782681381,214,0 +170782681431,214,0 +170782681479,214,0 +170782681528,214,0 +170782681576,214,0 +170782681624,214,0 +170782681672,214,0 +170782681720,214,0 +170782681770,216,0 +170782681818,213,0 +170782681866,213,0 +170782681914,213,0 +170782681963,213,0 +170782682011,213,0 +170782682059,213,0 +170782682107,214,0 +170782682155,214,0 +170782682203,214,0 +170782682252,214,0 +170782682300,214,0 +170782682348,214,0 +170782682396,214,0 +170782682444,214,0 +170782682492,214,0 +170782682540,214,0 +170782682590,214,0 +170782682638,214,0 +170782682685,213,0 +170782682735,213,0 +170782682783,213,0 +170782682832,213,0 +170782682880,213,0 +170782682928,213,0 +170782682978,214,0 +170782683026,214,0 +170782683074,214,0 +170782683121,214,0 +170782683169,214,0 +170782683219,214,0 +170782683268,214,0 +170782683316,214,0 +170782683364,214,0 +170782683412,214,0 +170782683460,214,0 +170782683508,214,0 +170782683556,213,0 +170782683604,213,0 +170782683654,213,0 +170782683703,214,0 +170782683751,214,0 +170782683799,214,0 +170782683847,214,0 +170782683897,214,0 +170782683945,214,0 +170782683994,214,0 +170782684042,214,0 +170782684092,214,0 +170782684140,214,0 +170782684187,214,0 +170782684235,214,0 +170782684283,214,0 +170782684331,214,0 +170782684379,214,0 +170782684427,213,0 +170782684476,214,0 +170782684524,214,0 +170782684572,214,0 +170782684621,214,0 +170782684669,214,0 +170782684717,214,0 +170782684765,214,0 +170782684813,214,0 +170782684861,214,0 +170782684909,214,0 +170782684956,214,0 +170782685004,215,0 +170782685052,214,0 +170782685100,214,0 +170782685150,214,0 +170782685198,214,0 +170782685246,214,0 +170782685294,213,0 +170782685343,213,0 +170782685391,213,0 +170782685439,214,0 +170782685487,214,0 +170782685535,214,0 +170782685582,214,0 +170782685630,214,0 +170782685678,214,0 +170782685726,214,0 +170782685774,214,0 +170782685822,214,0 +170782685871,214,0 +170782685921,214,0 +170782685969,214,0 +170782686017,214,0 +170782686065,214,0 +170782686113,214,0 +170782686160,213,0 +170782686210,213,0 +170782686259,213,0 +170782686309,213,0 +170782686357,213,0 +170782686406,213,0 +170782686454,214,0 +170782686502,214,0 +170782686550,214,0 +170782686600,214,0 +170782686649,214,0 +170782686697,214,0 +170782686745,214,0 +170782686793,214,0 +170782686841,214,0 +170782686889,214,0 +170782686939,214,0 +170782686988,214,0 +170782687036,213,0 +170782687084,213,0 +170782687133,213,0 +170782687181,214,0 +170782687231,214,0 +170782687280,214,0 +170782687330,214,0 +170782687378,214,0 +170782687426,214,0 +170782687475,214,0 +170782687525,214,0 +170782687574,214,0 +170782687622,214,0 +170782687670,214,0 +170782687718,214,0 +170782687766,214,0 +170782687814,214,0 +170782687863,214,0 +170782687911,213,0 +170782687959,213,0 +170782688009,213,0 +170782688058,213,0 +170782688106,213,0 +170782688154,213,0 +170782688204,213,0 +170782688253,214,0 +170782688301,214,0 +170782688349,214,0 +170782688397,214,0 +170782688447,214,0 +170782688494,214,0 +170782688544,214,0 +170782688592,214,0 +170782688640,214,0 +170782688689,214,0 +170782688739,214,0 +170782688788,213,0 +170782688836,213,0 +170782688886,213,0 +170782688935,213,0 +170782688983,213,0 +170782689033,213,0 +170782689082,213,0 +170782689130,214,0 +170782689178,214,0 +170782689226,214,0 +170782689276,214,0 +170782689325,214,0 +170782689375,214,0 +170782689424,214,0 +170782689472,214,0 +170782689520,214,0 +170782689570,214,0 +170782689619,214,0 +170782689667,213,0 +170782689715,213,0 +170782689763,213,0 +170782689811,213,0 +170782689861,213,0 +170782689908,213,0 +170782689958,213,0 +170782690006,214,0 +170782690055,213,0 +170782690103,214,0 +170782690153,214,0 +170782690202,214,0 +170782690250,214,0 +170782690300,214,0 +170782690347,214,0 +170782690395,214,0 +170782690443,214,0 +170782690493,214,0 +170782690541,213,0 +170782690588,213,0 +170782690636,213,0 +170782690684,213,0 +170782690732,213,0 +170782690780,213,0 +170782690828,213,0 +170782690878,213,0 +170782690926,214,0 +170782690973,213,0 +170782691023,214,0 +170782691071,214,0 +170782691119,214,0 +170782691167,214,0 +170782691216,214,0 +170782691266,214,0 +170782691314,214,0 +170782691362,214,0 +170782691410,213,0 +170782691457,213,0 +170782691505,213,0 +170782691553,213,0 +170782691603,213,0 +170782691651,213,0 +170782691699,213,0 +170782691748,213,0 +170782691796,214,0 +170782691845,214,0 +170782691893,214,0 +170782691941,214,0 +170782691989,214,0 +170782692037,214,0 +170782692085,214,0 +170782692133,214,0 +170782692181,214,0 +170782692229,214,0 +170782692277,213,0 +170782692326,213,0 +170782692374,213,0 +170782692424,213,0 +170782692472,213,0 +170782692520,213,0 +170782692569,213,0 +170782692617,214,0 +170782692666,213,0 +170782692714,214,0 +170782692762,214,0 +170782692810,215,0 +170782692858,214,0 +170782692908,214,0 +170782692956,214,0 +170782693005,214,0 +170782693053,214,0 +170782693101,214,0 +170782693149,213,0 +170782693197,213,0 +170782693245,213,0 +170782693293,213,0 +170782693340,214,0 +170782693388,213,0 +170782693436,213,0 +170782693484,214,0 +170782693532,213,0 +170782693581,214,0 +170782693631,214,0 +170782693679,214,0 +170782693727,214,0 +170782693775,214,0 +170782693823,214,0 +170782693872,214,0 +170782693920,214,0 +170782693968,214,0 +170782694017,213,0 +170782694065,213,0 +170782694113,213,0 +170782694161,213,0 +170782694209,213,0 +170782694257,213,0 +170782694304,213,0 +170782694352,214,0 +170782694402,213,0 +170782694450,214,0 +170782694497,214,0 +170782694547,214,0 +170782694596,214,0 +170782694644,214,0 +170782694692,214,0 +170782694742,214,0 +170782694790,214,0 +170782694839,213,0 +170782694887,213,0 +170782694935,213,0 +170782694983,213,0 +170782695031,213,0 +170782695079,213,0 +170782695128,213,0 +170782695176,213,0 +170782695224,213,0 +170782695272,213,0 +170782695320,213,0 +170782695368,213,0 +170782695416,214,0 +170782695463,214,0 +170782695511,214,0 +170782695559,214,0 +170782695607,214,0 +170782695657,214,0 +170782695705,214,0 +170782695753,213,0 +170782695800,213,0 +170782695848,213,0 +170782695896,213,0 +170782695946,213,0 +170782695995,213,0 +170782696043,213,0 +170782696091,214,0 +170782696139,213,0 +170782696187,214,0 +170782696236,214,0 +170782696284,214,0 +170782696332,214,0 +170782696380,214,0 +170782696429,214,0 +170782696479,214,0 +170782696526,214,0 +170782696576,214,0 +170782696625,213,0 +170782696675,213,0 +170782696723,213,0 +170782696771,214,0 +170782696820,213,0 +170782696868,213,0 +170782696918,214,0 +170782696967,214,0 +170782697015,214,0 +170782697063,214,0 +170782697113,214,0 +170782697161,214,0 +170782697208,214,0 +170782697256,214,0 +170782697304,214,0 +170782697352,214,0 +170782697400,214,0 +170782697448,214,0 +170782697498,213,0 +170782697546,213,0 +170782697594,213,0 +170782697643,214,0 +170782697692,214,0 +170782697740,213,0 +170782697788,214,0 +170782697838,214,0 +170782697887,214,0 +170782697935,214,0 +170782697983,214,0 +170782698031,214,0 +170782698079,214,0 +170782698127,214,0 +170782698175,214,0 +170782698223,214,0 +170782698271,214,0 +170782698320,214,0 +170782698368,213,0 +170782698416,213,0 +170782698466,213,0 +170782698515,213,0 +170782698563,213,0 +170782698611,213,0 +170782698659,214,0 +170782698706,214,0 +170782698754,214,0 +170782698802,214,0 +170782698850,214,0 +170782698899,214,0 +170782698947,214,0 +170782698995,214,0 +170782699043,214,0 +170782699091,214,0 +170782699139,215,0 +170782699187,214,0 +170782699235,213,0 +170782699283,213,0 +170782699331,213,0 +170782699379,214,0 +170782699426,214,0 +170782699474,214,0 +170782699524,214,0 +170782699573,214,0 +170782699621,214,0 +170782699669,214,0 +170782699717,214,0 +170782699765,214,0 +170782699814,214,0 +170782699864,214,0 +170782699911,214,0 +170782699959,214,0 +170782700009,214,0 +170782700057,214,0 +170782700106,213,0 +170782700154,213,0 +170782700204,213,0 +170782700251,214,0 +170782700299,214,0 +170782700347,213,0 +170782700395,214,0 +170782700443,214,0 +170782700492,214,0 +170782700540,214,0 +170782700588,214,0 +170782700636,214,0 +170782700684,214,0 +170782700732,214,0 +170782700780,214,0 +170782700828,214,0 +170782700875,214,0 +170782700923,214,0 +170782700971,213,0 +170782701019,213,0 +170782701067,213,0 +170782701115,213,0 +170782701163,213,0 +170782701210,213,0 +170782701258,214,0 +170782701306,214,0 +170782701354,214,0 +170782701402,214,0 +170782701450,214,0 +170782701498,214,0 +170782701545,214,0 +170782701593,214,0 +170782701641,214,0 +170782701689,214,0 +170782701737,214,0 +170782701785,214,0 +170782701832,213,0 +170782701880,213,0 +170782701928,213,0 +170782701976,213,0 +170782702024,213,0 +170782702072,213,0 +170782702120,214,0 +170782702168,214,0 +170782702216,214,0 +170782702264,214,0 +170782702312,214,0 +170782702359,214,0 +170782702407,214,0 +170782702457,214,0 +170782702505,214,0 +170782702553,214,0 +170782702600,214,0 +170782702648,214,0 +170782702696,213,0 +170782702744,213,0 +170782702792,213,0 +170782702840,213,0 +170782702888,213,0 +170782702935,213,0 +170782702985,213,0 +170782703033,214,0 +170782703081,214,0 +170782703129,214,0 +170782703177,214,0 +170782703225,214,0 +170782703273,214,0 +170782703322,214,0 +170782703370,215,0 +170782703420,214,0 +170782703467,214,0 +170782703517,214,0 +170782703565,213,0 +170782703613,213,0 +170782703662,213,0 +170782703710,213,0 +170782703758,214,0 +170782703808,213,0 +170782703856,214,0 +170782703904,214,0 +170782703952,214,0 +170782704000,214,0 +170782704048,214,0 +170782704097,214,0 +170782704147,214,0 +170782704196,214,0 +170782704244,214,0 +170782704292,214,0 +170782704341,214,0 +170782704389,214,0 +170782704439,213,0 +170782704486,213,0 +170782704534,213,0 +170782704582,213,0 +170782704631,213,0 +170782704678,213,0 +170782704726,213,0 +170782704774,214,0 +170782704822,214,0 +170782704870,214,0 +170782704918,214,0 +170782704966,214,0 +170782705014,214,0 +170782705061,214,0 +170782705109,214,0 +170782705157,214,0 +170782705205,214,0 +170782705255,214,0 +170782705303,213,0 +170782705351,213,0 +170782705400,213,0 +170782705448,213,0 +170782705496,213,0 +170782705544,213,0 +170782705592,214,0 +170782705641,214,0 +170782705689,214,0 +170782705737,214,0 +170782705785,214,0 +170782705835,214,0 +170782705883,214,0 +170782705930,214,0 +170782705978,214,0 +170782706026,214,0 +170782706074,214,0 +170782706122,214,0 +170782706171,213,0 +170782706219,213,0 +170782706267,213,0 +170782706315,213,0 +170782706363,213,0 +170782706411,214,0 +170782706461,214,0 +170782706508,214,0 +170782706556,213,0 +170782706604,214,0 +170782706653,214,0 +170782706702,214,0 +170782706750,214,0 +170782706798,214,0 +170782706846,214,0 +170782706894,214,0 +170782706942,214,0 +170782706989,214,0 +170782707037,213,0 +170782707085,213,0 +170782707133,213,0 +170782707181,214,0 +170782707229,214,0 +170782707277,214,0 +170782707324,214,0 +170782707372,214,0 +170782707420,214,0 +170782707468,214,0 +170782707516,214,0 +170782707564,214,0 +170782707612,214,0 +170782707660,214,0 +170782707709,214,0 +170782707757,214,0 +170782707807,214,0 +170782707856,214,0 +170782707906,213,0 +170782707954,213,0 +170782708003,213,0 +170782708051,213,0 +170782708101,213,0 +170782708149,214,0 +170782708197,214,0 +170782708245,214,0 +170782708293,214,0 +170782708341,214,0 +170782708388,214,0 +170782708436,214,0 +170782708484,214,0 +170782708534,214,0 +170782708582,214,0 +170782708630,214,0 +170782708678,214,0 +170782708726,214,0 +170782708775,213,0 +170782708824,213,0 +170782708872,213,0 +170782708920,214,0 +170782708968,213,0 +170782709016,213,0 +170782709064,213,0 +170782709112,214,0 +170782709162,214,0 +170782709210,214,0 +170782709258,214,0 +170782709307,214,0 +170782709355,214,0 +170782709403,214,0 +170782709452,214,0 +170782709500,214,0 +170782709550,214,0 +170782709598,214,0 +170782709646,213,0 +170782709695,213,0 +170782709745,214,0 +170782709794,214,0 +170782709844,214,0 +170782709892,214,0 +170782709940,214,0 +170782709988,214,0 +170782710036,214,0 +170782710084,214,0 +170782710132,214,0 +170782710180,214,0 +170782710229,214,0 +170782710279,214,0 +170782710327,214,0 +170782710374,214,0 +170782710422,214,0 +170782710470,214,0 +170782710518,214,0 +170782710566,213,0 +170782710616,214,0 +170782710664,214,0 +170782710713,214,0 +170782710763,214,0 +170782710811,214,0 +170782710861,214,0 +170782710909,214,0 +170782710958,214,0 +170782711006,214,0 +170782711055,214,0 +170782711103,214,0 +170782711153,214,0 +170782711202,214,0 +170782711250,214,0 +170782711298,214,0 +170782711348,214,0 +170782711396,213,0 +170782711445,213,0 +170782711493,213,0 +170782711541,213,0 +170782711589,213,0 +170782711637,214,0 +170782711686,214,0 +170782711736,214,0 +170782711784,214,0 +170782711834,214,0 +170782711883,214,0 +170782711933,214,0 +170782711981,214,0 +170782712030,214,0 +170782712078,214,0 +170782712126,214,0 +170782712176,214,0 +170782712225,213,0 +170782712273,213,0 +170782712321,213,0 +170782712369,213,0 +170782712417,213,0 +170782712465,213,0 +170782712512,213,0 +170782712560,214,0 +170782712610,213,0 +170782712658,214,0 +170782712706,214,0 +170782712755,214,0 +170782712805,214,0 +170782712853,214,0 +170782712901,214,0 +170782712949,214,0 +170782712996,214,0 +170782713044,214,0 +170782713094,213,0 +170782713143,213,0 +170782713191,213,0 +170782713239,213,0 +170782713287,213,0 +170782713335,213,0 +170782713383,213,0 +170782713430,214,0 +170782713478,213,0 +170782713528,214,0 +170782713576,214,0 +170782713624,214,0 +170782713673,214,0 +170782713723,214,0 +170782713771,214,0 +170782713818,214,0 +170782713866,214,0 +170782713914,214,0 +170782713962,213,0 +170782714012,213,0 +170782714060,213,0 +170782714108,213,0 +170782714156,214,0 +170782714204,213,0 +170782714252,214,0 +170782714300,214,0 +170782714349,214,0 +170782714397,214,0 +170782714447,214,0 +170782714496,214,0 +170782714544,214,0 +170782714592,214,0 +170782714640,214,0 +170782714688,214,0 +170782714738,214,0 +170782714787,214,0 +170782714835,213,0 +170782714883,213,0 +170782714930,213,0 +170782714980,213,0 +170782715028,213,0 +170782715076,213,0 +170782715123,213,0 +170782715171,213,0 +170782715219,214,0 +170782715267,214,0 +170782715315,214,0 +170782715363,214,0 +170782715411,214,0 +170782715459,214,0 +170782715508,214,0 +170782715556,214,0 +170782715605,214,0 +170782715653,214,0 +170782715701,213,0 +170782715749,213,0 +170782715797,213,0 +170782715845,213,0 +170782715892,213,0 +170782715940,213,0 +170782715988,213,0 +170782716036,213,0 +170782716085,214,0 +170782716135,214,0 +170782716183,214,0 +170782716230,214,0 +170782716278,214,0 +170782716326,214,0 +170782716375,214,0 +170782716425,214,0 +170782716473,214,0 +170782716522,214,0 +170782716570,213,0 +170782716618,213,0 +170782716666,213,0 +170782716714,213,0 +170782716763,213,0 +170782716811,213,0 +170782716859,213,0 +170782716909,213,0 +170782716958,213,0 +170782717006,214,0 +170782717054,214,0 +170782717102,214,0 +170782717150,214,0 +170782717199,214,0 +170782717247,214,0 +170782717295,214,0 +170782717343,214,0 +170782717393,214,0 +170782717440,213,0 +170782717490,213,0 +170782717538,213,0 +170782717586,213,0 +170782717634,213,0 +170782717682,213,0 +170782717730,213,0 +170782717777,213,0 +170782717825,214,0 +170782717873,214,0 +170782717921,214,0 +170782717969,214,0 +170782718018,214,0 +170782718066,214,0 +170782718114,214,0 +170782718162,214,0 +170782718210,214,0 +170782718257,214,0 +170782718305,213,0 +170782718353,213,0 +170782718401,213,0 +170782718449,213,0 +170782718496,213,0 +170782718544,213,0 +170782718592,213,0 +170782718640,214,0 +170782718688,214,0 +170782718736,213,0 +170782718783,214,0 +170782718831,214,0 +170782718879,214,0 +170782718927,214,0 +170782718974,214,0 +170782719022,214,0 +170782719072,214,0 +170782719120,214,0 +170782719168,213,0 +170782719216,213,0 +170782719264,213,0 +170782719313,213,0 +170782719361,213,0 +170782719411,214,0 +170782719459,213,0 +170782719508,214,0 +170782719556,213,0 +170782719604,214,0 +170782719654,214,0 +170782719703,214,0 +170782719751,214,0 +170782719800,214,0 +170782719850,214,0 +170782719900,214,0 +170782719948,214,0 +170782719997,213,0 +170782720047,213,0 +170782720095,213,0 +170782720144,213,0 +170782720192,213,0 +170782720240,213,0 +170782720288,214,0 +170782720336,213,0 +170782720385,214,0 +170782720433,214,0 +170782720483,214,0 +170782720531,214,0 +170782720579,214,0 +170782720627,214,0 +170782720675,214,0 +170782720723,214,0 +170782720770,214,0 +170782720818,214,0 +170782720868,214,0 +170782720916,213,0 +170782720965,213,0 +170782721015,213,0 +170782721064,213,0 +170782721114,213,0 +170782721163,213,0 +170782721213,213,0 +170782721261,213,0 +170782721309,214,0 +170782721357,213,0 +170782721406,214,0 +170782721454,214,0 +170782721503,214,0 +170782721551,214,0 +170782721599,214,0 +170782721647,214,0 +170782721697,215,0 +170782721746,213,0 +170782721796,213,0 +170782721843,213,0 +170782721891,213,0 +170782721939,213,0 +170782721987,213,0 +170782722035,213,0 +170782722083,213,0 +170782722133,213,0 +170782722181,214,0 +170782722230,214,0 +170782722278,214,0 +170782722328,214,0 +170782722375,214,0 +170782722423,214,0 +170782722471,214,0 +170782722519,214,0 +170782722567,214,0 +170782722615,214,0 +170782722663,213,0 +170782722711,213,0 +170782722759,213,0 +170782722807,213,0 +170782722856,213,0 +170782722906,214,0 +170782722955,214,0 +170782723003,214,0 +170782723052,214,0 +170782723102,214,0 +170782723150,214,0 +170782723198,214,0 +170782723246,214,0 +170782723294,214,0 +170782723343,214,0 +170782723391,214,0 +170782723439,214,0 +170782723488,213,0 +170782723536,213,0 +170782723584,214,0 +170782723632,213,0 +170782723682,214,0 +170782723730,214,0 +170782723778,214,0 +170782723827,214,0 +170782723875,214,0 +170782723923,214,0 +170782723971,214,0 +170782724019,214,0 +170782724067,214,0 +170782724115,214,0 +170782724164,214,0 +170782724214,214,0 +170782724262,214,0 +170782724311,214,0 +170782724359,213,0 +170782724409,213,0 +170782724457,213,0 +170782724504,214,0 +170782724552,214,0 +170782724600,214,0 +170782724648,214,0 +170782724696,214,0 +170782724744,214,0 +170782724792,214,0 +170782724840,214,0 +170782724888,214,0 +170782724936,214,0 +170782724984,214,0 +170782725033,214,0 +170782725081,214,0 +170782725129,214,0 +170782725177,214,0 +170782725224,213,0 +170782725272,213,0 +170782725320,213,0 +170782725368,213,0 +170782725416,214,0 +170782725463,213,0 +170782725511,214,0 +170782725559,214,0 +170782725607,214,0 +170782725655,214,0 +170782725704,214,0 +170782725752,214,0 +170782725800,214,0 +170782725849,214,0 +170782725897,215,0 +170782725945,215,0 +170782725993,215,0 +170782726041,215,0 +170782726089,213,0 +170782726136,213,0 +170782726186,213,0 +170782726234,214,0 +170782726282,214,0 +170782726329,214,0 +170782726377,214,0 +170782726425,214,0 +170782726473,214,0 +170782726521,214,0 +170782726570,214,0 +170782726618,214,0 +170782726666,214,0 +170782726716,214,0 +170782726765,214,0 +170782726815,214,0 +170782726864,214,0 +170782726912,214,0 +170782726960,213,0 +170782727008,213,0 +170782727058,214,0 +170782727107,213,0 +170782727155,213,0 +170782727203,213,0 +170782727251,214,0 +170782727301,214,0 +170782727350,214,0 +170782727398,214,0 +170782727446,214,0 +170782727496,214,0 +170782727545,214,0 +170782727593,214,0 +170782727641,215,0 +170782727691,214,0 +170782727740,214,0 +170782727788,214,0 +170782727836,214,0 +170782727885,213,0 +170782727935,214,0 +170782727983,214,0 +170782728032,214,0 +170782728080,214,0 +170782728128,214,0 +170782728178,214,0 +170782728226,214,0 +170782728274,214,0 +170782728323,214,0 +170782728373,215,0 +170782728421,215,0 +170782728469,214,0 +170782728517,215,0 +170782728565,215,0 +170782728613,215,0 +170782728661,214,0 +170782728709,214,0 +170782728757,214,0 +170782728804,214,0 +170782728852,214,0 +170782728900,214,0 +170782728948,214,0 +170782728998,214,0 +170782729046,214,0 +170782729095,214,0 +170782729143,215,0 +170782729191,215,0 +170782729239,215,0 +170782729287,215,0 +170782729336,215,0 +170782729386,214,0 +170782729435,215,0 +170782729483,214,0 +170782729531,214,0 +170782729579,214,0 +170782729627,213,0 +170782729675,214,0 +170782729725,214,0 +170782729774,214,0 +170782729824,214,0 +170782729872,214,0 +170782729920,214,0 +170782729968,214,0 +170782730017,215,0 +170782730065,215,0 +170782730113,215,0 +170782730161,214,0 +170782730209,215,0 +170782730258,215,0 +170782730308,215,0 +170782730357,214,0 +170782730405,214,0 +170782730455,214,0 +170782730503,214,0 +170782730551,214,0 +170782730599,214,0 +170782730647,214,0 +170782730695,214,0 +170782730743,214,0 +170782730791,214,0 +170782730840,215,0 +170782730888,214,0 +170782730936,214,0 +170782730985,214,0 +170782731035,215,0 +170782731083,214,0 +170782731131,214,0 +170782731179,214,0 +170782731227,214,0 +170782731277,213,0 +170782731324,213,0 +170782731374,214,0 +170782731422,214,0 +170782731470,214,0 +170782731518,214,0 +170782731566,214,0 +170782731614,214,0 +170782731662,214,0 +170782731710,214,0 +170782731759,215,0 +170782731807,214,0 +170782731857,215,0 +170782731906,215,0 +170782731954,215,0 +170782732002,215,0 +170782732050,214,0 +170782732100,214,0 +170782732149,213,0 +170782732197,213,0 +170782732245,214,0 +170782732293,214,0 +170782732342,214,0 +170782732390,214,0 +170782732440,214,0 +170782732488,214,0 +170782732537,214,0 +170782732585,214,0 +170782732633,214,0 +170782732681,214,0 +170782732729,214,0 +170782732778,214,0 +170782732828,214,0 +170782732876,214,0 +170782732924,214,0 +170782732973,214,0 +170782733023,213,0 +170782733072,213,0 +170782733122,213,0 +170782733171,213,0 +170782733219,213,0 +170782733267,213,0 +170782733317,213,0 +170782733366,213,0 +170782733416,214,0 +170782733464,214,0 +170782733512,214,0 +170782733561,214,0 +170782733611,214,0 +170782733659,214,0 +170782733708,214,0 +170782733756,214,0 +170782733804,214,0 +170782733852,213,0 +170782733900,213,0 +170782733948,213,0 +170782733997,213,0 +170782734045,213,0 +170782734093,213,0 +170782734143,213,0 +170782734191,214,0 +170782734238,213,0 +170782734286,214,0 +170782734334,214,0 +170782734382,214,0 +170782734430,214,0 +170782734478,214,0 +170782734528,214,0 +170782734576,214,0 +170782734624,214,0 +170782734672,215,0 +170782734721,213,0 +170782734771,213,0 +170782734819,213,0 +170782734866,213,0 +170782734914,213,0 +170782734964,213,0 +170782735012,213,0 +170782735061,213,0 +170782735109,213,0 +170782735157,214,0 +170782735207,214,0 +170782735256,214,0 +170782735304,214,0 +170782735354,214,0 +170782735402,214,0 +170782735450,214,0 +170782735499,214,0 +170782735548,214,0 +170782735596,213,0 +170782735646,213,0 +170782735694,213,0 +170782735742,213,0 +170782735791,213,0 +170782735841,214,0 +170782735889,214,0 +170782735937,214,0 +170782735986,214,0 +170782736034,214,0 +170782736082,214,0 +170782736130,214,0 +170782736180,214,0 +170782736229,214,0 +170782736279,214,0 +170782736328,214,0 +170782736376,215,0 +170782736426,214,0 +170782736474,213,0 +170782736523,213,0 +170782736571,213,0 +170782736620,213,0 +170782736668,214,0 +170782736716,214,0 +170782736764,214,0 +170782736812,214,0 +170782736860,214,0 +170782736908,214,0 +170782736955,214,0 +170782737005,214,0 +170782737053,214,0 +170782737102,214,0 +170782737150,214,0 +170782737198,214,0 +170782737246,214,0 +170782737293,214,0 +170782737341,213,0 +170782737389,213,0 +170782737437,213,0 +170782737485,213,0 +170782737535,213,0 +170782737584,213,0 +170782737632,214,0 +170782737682,214,0 +170782737730,214,0 +170782737779,214,0 +170782737827,214,0 +170782737875,214,0 +170782737923,214,0 +170782737971,214,0 +170782738019,214,0 +170782738067,214,0 +170782738116,214,0 +170782738164,213,0 +170782738214,213,0 +170782738264,213,0 +170782738311,213,0 +170782738359,213,0 +170782738409,213,0 +170782738457,213,0 +170782738505,213,0 +170782738553,213,0 +170782738601,213,0 +170782738649,214,0 +170782738697,214,0 +170782738745,214,0 +170782738793,214,0 +170782738840,214,0 +170782738890,214,0 +170782738938,214,0 +170782738986,214,0 +170782739034,214,0 +170782739083,213,0 +170782739133,213,0 +170782739181,213,0 +170782739229,213,0 +170782739278,213,0 +170782739327,213,0 +170782739375,213,0 +170782739423,214,0 +170782739471,214,0 +170782739519,214,0 +170782739567,214,0 +170782739615,214,0 +170782739662,214,0 +170782739710,214,0 +170782739758,214,0 +170782739806,214,0 +170782739856,214,0 +170782739904,214,0 +170782739953,213,0 +170782740001,213,0 +170782740051,213,0 +170782740099,213,0 +170782740148,213,0 +170782740198,213,0 +170782740247,213,0 +170782740295,214,0 +170782740343,214,0 +170782740391,213,0 +170782740439,214,0 +170782740487,214,0 +170782740534,214,0 +170782740582,214,0 +170782740630,214,0 +170782740680,214,0 +170782740729,214,0 +170782740777,213,0 +170782740826,213,0 +170782740874,213,0 +170782740922,213,0 +170782740970,213,0 +170782741018,213,0 +170782741066,213,0 +170782741113,213,0 +170782741163,214,0 +170782741211,213,0 +170782741258,213,0 +170782741306,214,0 +170782741354,214,0 +170782741402,214,0 +170782741450,214,0 +170782741498,214,0 +170782741546,214,0 +170782741595,214,0 +170782741645,214,0 +170782741694,213,0 +170782741742,213,0 +170782741790,213,0 +170782741838,213,0 +170782741886,213,0 +170782741934,214,0 +170782741984,214,0 +170782742032,214,0 +170782742081,214,0 +170782742129,214,0 +170782742177,214,0 +170782742225,214,0 +170782742273,214,0 +170782742322,214,0 +170782742370,214,0 +170782742418,214,0 +170782742468,214,0 +170782742517,214,0 +170782742565,213,0 +170782742613,213,0 +170782742661,213,0 +170782742709,214,0 +170782742757,214,0 +170782742805,214,0 +170782742853,214,0 +170782742902,214,0 +170782742950,214,0 +170782742998,214,0 +170782743046,214,0 +170782743096,214,0 +170782743145,214,0 +170782743193,215,0 +170782743241,215,0 +170782743289,215,0 +170782743338,215,0 +170782743386,214,0 +170782743434,213,0 +170782743482,213,0 +170782743530,213,0 +170782743578,213,0 +170782743626,214,0 +170782743673,214,0 +170782743723,214,0 +170782743772,214,0 +170782743820,214,0 +170782743868,214,0 +170782743916,214,0 +170782743966,214,0 +170782744015,214,0 +170782744065,214,0 +170782744114,214,0 +170782744162,214,0 +170782744210,214,0 +170782744258,214,0 +170782744306,214,0 +170782744356,214,0 +170782744403,214,0 +170782744451,214,0 +170782744501,214,0 +170782744550,214,0 +170782744598,214,0 +170782744646,214,0 +170782744694,214,0 +170782744742,214,0 +170782744792,214,0 +170782744841,214,0 +170782744889,215,0 +170782744939,215,0 +170782744988,214,0 +170782745036,215,0 +170782745086,214,0 +170782745135,214,0 +170782745185,213,0 +170782745232,213,0 +170782745280,213,0 +170782745328,214,0 +170782745378,213,0 +170782745427,214,0 +170782745477,214,0 +170782745526,214,0 +170782745574,214,0 +170782745624,214,0 +170782745673,214,0 +170782745721,214,0 +170782745769,214,0 +170782745819,214,0 +170782745866,214,0 +170782745914,214,0 +170782745962,214,0 +170782746012,214,0 +170782746060,213,0 +170782746107,213,0 +170782746155,213,0 +170782746205,213,0 +170782746254,213,0 +170782746302,213,0 +170782746350,213,0 +170782746400,213,0 +170782746448,213,0 +170782746496,213,0 +170782746543,213,0 +170782746593,214,0 +170782746641,214,0 +170782746690,214,0 +170782746738,214,0 +170782746786,214,0 +170782746836,214,0 +170782746885,214,0 +170782746935,213,0 +170782746983,213,0 +170782747031,213,0 +170782747079,213,0 +170782747127,213,0 +170782747176,213,0 +170782747224,213,0 +170782747272,213,0 +170782747321,213,0 +170782747369,214,0 +170782747417,214,0 +170782747465,214,0 +170782747515,214,0 +170782747564,214,0 +170782747614,214,0 +170782747663,214,0 +170782747711,214,0 +170782747759,214,0 +170782747807,213,0 +170782747855,213,0 +170782747903,213,0 +170782747951,213,0 +170782747999,213,0 +170782748048,213,0 +170782748098,214,0 +170782748146,214,0 +170782748194,214,0 +170782748242,214,0 +170782748290,214,0 +170782748337,214,0 +170782748387,214,0 +170782748435,214,0 +170782748483,214,0 +170782748532,214,0 +170782748580,214,0 +170782748628,214,0 +170782748676,213,0 +170782748726,213,0 +170782748774,213,0 +170782748821,213,0 +170782748869,213,0 +170782748917,213,0 +170782748965,213,0 +170782749013,213,0 +170782749061,214,0 +170782749111,214,0 +170782749159,214,0 +170782749208,214,0 +170782749256,214,0 +170782749304,214,0 +170782749352,214,0 +170782749401,214,0 +170782749449,214,0 +170782749497,214,0 +170782749545,213,0 +170782749593,213,0 +170782749641,213,0 +170782749689,213,0 +170782749737,213,0 +170782749786,213,0 +170782749834,214,0 +170782749882,214,0 +170782749931,214,0 +170782749979,214,0 +170782750027,214,0 +170782750075,214,0 +170782750123,214,0 +170782750172,214,0 +170782750220,214,0 +170782750268,214,0 +170782750316,214,0 +170782750364,214,0 +170782750412,213,0 +170782750459,213,0 +170782750507,213,0 +170782750555,213,0 +170782750604,213,0 +170782750652,214,0 +170782750700,213,0 +170782750749,214,0 +170782750797,214,0 +170782750845,214,0 +170782750893,214,0 +170782750941,214,0 +170782750989,214,0 +170782751037,214,0 +170782751084,214,0 +170782751132,215,0 +170782751180,214,0 +170782751228,215,0 +170782751278,214,0 +170782751326,213,0 +170782751373,213,0 +170782751421,213,0 +170782751469,214,0 +170782751517,214,0 +170782751565,214,0 +170782751613,214,0 +170782751661,214,0 +170782751708,214,0 +170782751756,214,0 +170782751804,214,0 +170782751854,214,0 +170782751902,214,0 +170782751949,215,0 +170782751997,214,0 +170782752045,214,0 +170782752093,214,0 +170782752141,214,0 +170782752189,213,0 +170782752238,213,0 +170782752286,213,0 +170782752335,213,0 +170782752383,214,0 +170782752431,213,0 +170782752479,214,0 +170782752529,214,0 +170782752578,214,0 +170782752626,214,0 +170782752676,214,0 +170782752723,214,0 +170782752773,214,0 +170782752821,214,0 +170782752869,214,0 +170782752916,214,0 +170782752964,214,0 +170782753012,214,0 +170782753060,213,0 +170782753108,213,0 +170782753156,213,0 +170782753204,213,0 +170782753252,213,0 +170782753301,213,0 +170782753350,213,0 +170782753400,214,0 +170782753448,214,0 +170782753496,214,0 +170782753544,214,0 +170782753591,214,0 +170782753639,214,0 +170782753687,214,0 +170782753737,214,0 +170782753786,214,0 +170782753834,214,0 +170782753884,213,0 +170782753931,213,0 +170782753979,213,0 +170782754029,214,0 +170782754078,213,0 +170782754126,213,0 +170782754174,214,0 +170782754222,214,0 +170782754272,214,0 +170782754320,214,0 +170782754367,214,0 +170782754417,214,0 +170782754465,214,0 +170782754513,214,0 +170782754561,214,0 +170782754608,214,0 +170782754656,214,0 +170782754704,215,0 +170782754752,214,0 +170782754800,213,0 +170782754848,213,0 +170782754895,213,0 +170782754943,213,0 +170782754991,213,0 +170782755039,213,0 +170782755087,214,0 +170782755135,214,0 +170782755184,214,0 +170782755232,214,0 +170782755280,214,0 +170782755328,214,0 +170782755376,214,0 +170782755424,214,0 +170782755471,214,0 +170782755519,214,0 +170782755567,214,0 +170782755615,214,0 +170782755663,213,0 +170782755712,213,0 +170782755762,214,0 +170782755810,213,0 +170782755858,214,0 +170782755905,214,0 +170782755953,213,0 +170782756001,214,0 +170782756049,214,0 +170782756097,214,0 +170782756145,214,0 +170782756193,214,0 +170782756241,214,0 +170782756289,215,0 +170782756339,214,0 +170782756388,214,0 +170782756436,214,0 +170782756484,214,0 +170782756532,213,0 +170782756580,213,0 +170782756629,213,0 +170782756678,214,0 +170782756726,214,0 +170782756774,214,0 +170782756822,214,0 +170782756870,214,0 +170782756918,214,0 +170782756965,214,0 +170782757013,214,0 +170782757061,214,0 +170782757109,214,0 +170782757156,214,0 +170782757204,214,0 +170782757252,214,0 +170782757300,214,0 +170782757348,214,0 +170782757396,213,0 +170782757445,213,0 +170782757495,213,0 +170782757543,214,0 +170782757590,214,0 +170782757638,214,0 +170782757686,214,0 +170782757734,214,0 +170782757782,214,0 +170782757831,214,0 +170782757879,214,0 +170782757927,214,0 +170782757975,215,0 +170782758022,214,0 +170782758070,214,0 +170782758118,215,0 +170782758166,214,0 +170782758214,214,0 +170782758262,214,0 +170782758310,213,0 +170782758358,213,0 +170782758405,213,0 +170782758453,214,0 +170782758501,214,0 +170782758549,214,0 +170782758597,214,0 +170782758645,214,0 +170782758694,214,0 +170782758744,214,0 +170782758792,214,0 +170782758839,214,0 +170782758887,214,0 +170782758937,214,0 +170782758986,214,0 +170782759034,214,0 +170782759082,214,0 +170782759130,214,0 +170782759180,213,0 +170782759228,213,0 +170782759277,213,0 +170782759325,213,0 +170782759373,213,0 +170782759421,213,0 +170782759469,214,0 +170782759517,214,0 +170782759565,214,0 +170782759613,214,0 +170782759662,214,0 +170782759710,214,0 +170782759758,214,0 +170782759808,214,0 +170782759857,214,0 +170782759905,214,0 +170782759955,214,0 +170782760004,213,0 +170782760054,213,0 +170782760102,213,0 +170782760150,213,0 +170782760197,214,0 +170782760247,213,0 +170782760295,214,0 +170782760344,214,0 +170782760394,214,0 +170782760442,214,0 +170782760490,214,0 +170782760538,214,0 +170782760586,214,0 +170782760635,214,0 +170782760683,214,0 +170782760731,214,0 +170782760781,214,0 +170782760829,214,0 +170782760878,214,0 +170782760928,213,0 +170782760976,213,0 +170782761023,213,0 +170782761071,213,0 +170782761119,213,0 +170782761169,213,0 +170782761217,213,0 +170782761265,213,0 +170782761314,213,0 +170782761362,213,0 +170782761412,213,0 +170782761461,213,0 +170782761509,213,0 +170782761557,213,0 +170782761605,213,0 +170782761654,213,0 +170782761702,214,0 +170782761750,214,0 +170782761798,214,0 +170782761846,214,0 +170782761894,214,0 +170782761943,214,0 +170782761991,214,0 +170782762039,214,0 +170782762086,214,0 +170782762134,214,0 +170782762182,213,0 +170782762230,213,0 +170782762280,213,0 +170782762328,213,0 +170782762377,213,0 +170782762427,213,0 +170782762476,213,0 +170782762526,213,0 +170782762574,213,0 +170782762621,214,0 +170782762669,214,0 +170782762719,214,0 +170782762768,214,0 +170782762816,214,0 +170782762864,214,0 +170782762912,214,0 +170782762960,214,0 +170782763008,214,0 +170782763056,214,0 +170782763104,213,0 +170782763151,213,0 +170782763199,213,0 +170782763247,213,0 +170782763295,213,0 +170782763343,213,0 +170782763390,214,0 +170782763438,213,0 +170782763486,214,0 +170782763534,214,0 +170782763582,214,0 +170782763630,214,0 +170782763678,214,0 +170782763726,214,0 +170782763775,214,0 +170782763823,214,0 +170782763871,214,0 +170782763919,214,0 +170782763967,213,0 +170782764015,213,0 +170782764063,213,0 +170782764110,213,0 +170782764158,213,0 +170782764207,213,0 +170782764255,213,0 +170782764303,213,0 +170782764353,213,0 +170782764401,213,0 +170782764449,214,0 +170782764496,214,0 +170782764546,214,0 +170782764594,214,0 +170782764642,214,0 +170782764690,214,0 +170782764738,214,0 +170782764787,214,0 +170782764835,213,0 +170782764883,213,0 +170782764931,213,0 +170782764979,213,0 +170782765027,213,0 +170782765076,213,0 +170782765124,213,0 +170782765172,213,0 +170782765220,214,0 +170782765268,214,0 +170782765316,214,0 +170782765364,214,0 +170782765411,214,0 +170782765459,214,0 +170782765507,214,0 +170782765555,214,0 +170782765603,214,0 +170782765651,214,0 +170782765698,214,0 +170782765746,213,0 +170782765794,213,0 +170782765842,213,0 +170782765892,213,0 +170782765940,213,0 +170782765987,213,0 +170782766035,214,0 +170782766083,214,0 +170782766131,214,0 +170782766181,214,0 +170782766229,214,0 +170782766277,214,0 +170782766325,214,0 +170782766373,214,0 +170782766421,214,0 +170782766469,214,0 +170782766517,214,0 +170782766566,214,0 +170782766614,213,0 +170782766662,213,0 +170782766712,213,0 +170782766761,213,0 +170782766809,214,0 +170782766857,213,0 +170782766906,214,0 +170782766954,214,0 +170782767002,214,0 +170782767052,214,0 +170782767100,214,0 +170782767148,214,0 +170782767196,214,0 +170782767244,215,0 +170782767291,214,0 +170782767341,214,0 +170782767389,214,0 +170782767437,213,0 +170782767486,213,0 +170782767534,213,0 +170782767582,213,0 +170782767630,213,0 +170782767678,213,0 +170782767726,213,0 +170782767774,213,0 +170782767822,213,0 +170782767870,214,0 +170782767918,214,0 +170782767966,214,0 +170782768015,214,0 +170782768063,214,0 +170782768111,214,0 +170782768159,214,0 +170782768208,214,0 +170782768258,214,0 +170782768306,213,0 +170782768354,213,0 +170782768403,213,0 +170782768451,213,0 +170782768499,213,0 +170782768549,213,0 +170782768597,214,0 +170782768644,214,0 +170782768692,214,0 +170782768740,214,0 +170782768790,214,0 +170782768839,214,0 +170782768889,214,0 +170782768938,214,0 +170782768988,214,0 +170782769036,214,0 +170782769084,214,0 +170782769132,214,0 +170782769181,213,0 +170782769231,213,0 +170782769281,213,0 +170782769329,213,0 +170782769378,214,0 +170782769428,213,0 +170782769475,214,0 +170782769525,214,0 +170782769573,213,0 +170782769622,214,0 +170782769672,214,0 +170782769720,214,0 +170782769769,214,0 +170782769819,214,0 +170782769867,214,0 +170782769916,214,0 +170782769964,214,0 +170782770014,214,0 +170782770063,213,0 +170782770113,213,0 +170782770161,213,0 +170782770210,213,0 +170782770260,213,0 +170782770308,213,0 +170782770356,213,0 +170782770404,213,0 +170782770452,213,0 +170782770501,213,0 +170782770549,214,0 +170782770599,214,0 +170782770647,214,0 +170782770696,214,0 +170782770744,214,0 +170782770792,214,0 +170782770840,214,0 +170782770888,214,0 +170782770936,213,0 +170782770984,213,0 +170782771033,213,0 +170782771081,213,0 +170782771129,213,0 +170782771179,214,0 +170782771228,213,0 +170782771276,213,0 +170782771324,214,0 +170782771372,213,0 +170782771421,214,0 +170782771469,214,0 +170782771519,214,0 +170782771567,214,0 +170782771615,214,0 +170782771663,214,0 +170782771712,214,0 +170782771760,214,0 +170782771808,213,0 +170782771856,213,0 +170782771905,213,0 +170782771953,213,0 +170782772003,214,0 +170782772052,213,0 +170782772102,214,0 +170782772150,214,0 +170782772198,214,0 +170782772246,214,0 +170782772294,214,0 +170782772343,214,0 +170782772391,214,0 +170782772439,214,0 +170782772488,214,0 +170782772536,214,0 +170782772584,214,0 +170782772634,214,0 +170782772682,213,0 +170782772729,213,0 +170782772777,213,0 +170782772827,214,0 +170782772875,214,0 +170782772924,214,0 +170782772972,214,0 +170782773022,214,0 +170782773071,214,0 +170782773121,214,0 +170782773169,214,0 +170782773217,214,0 +170782773265,214,0 +170782773313,214,0 +170782773361,215,0 +170782773409,214,0 +170782773458,214,0 +170782773506,214,0 +170782773556,214,0 +170782773605,213,0 +170782773653,213,0 +170782773703,214,0 +170782773752,214,0 +170782773800,214,0 +170782773849,214,0 +170782773897,214,0 +170782773945,214,0 +170782773993,214,0 +170782774041,215,0 +170782774091,214,0 +170782774138,214,0 +170782774186,214,0 +170782774236,215,0 +170782774284,214,0 +170782774333,214,0 +170782774383,214,0 +170782774431,214,0 +170782774479,213,0 +170782774527,214,0 +170782774576,214,0 +170782774624,214,0 +170782774672,214,0 +170782774720,214,0 +170782774768,214,0 +170782774817,214,0 +170782774865,214,0 +170782774913,214,0 +170782774961,214,0 +170782775009,214,0 +170782775057,214,0 +170782775106,214,0 +170782775156,214,0 +170782775204,214,0 +170782775252,214,0 +170782775300,214,0 +170782775348,213,0 +170782775396,213,0 +170782775444,213,0 +170782775493,214,0 +170782775541,214,0 +170782775589,214,0 +170782775637,214,0 +170782775686,214,0 +170782775734,214,0 +170782775782,214,0 +170782775830,214,0 +170782775880,214,0 +170782775929,214,0 +170782775977,214,0 +170782776025,214,0 +170782776073,214,0 +170782776121,214,0 +170782776169,214,0 +170782776218,214,0 +170782776266,213,0 +170782776316,213,0 +170782776365,213,0 +170782776413,213,0 +170782776461,213,0 +170782776509,213,0 +170782776557,213,0 +170782776605,214,0 +170782776653,214,0 +170782776701,214,0 +170782776749,214,0 +170782776796,214,0 +170782776844,214,0 +170782776892,214,0 +170782776940,214,0 +170782776988,214,0 +170782777036,214,0 +170782777084,214,0 +170782777134,215,0 +170782777183,213,0 +170782777233,213,0 +170782777281,213,0 +170782777330,213,0 +170782777380,213,0 +170782777428,213,0 +170782777477,213,0 +170782777527,213,0 +170782777575,213,0 +170782777623,213,0 +170782777671,214,0 +170782777720,214,0 +170782777768,214,0 +170782777816,214,0 +170782777865,214,0 +170782777913,214,0 +170782777961,214,0 +170782778009,214,0 +170782778058,213,0 +170782778106,213,0 +170782778154,213,0 +170782778204,213,0 +170782778252,213,0 +170782778300,213,0 +170782778349,213,0 +170782778397,213,0 +170782778445,213,0 +170782778494,213,0 +170782778542,213,0 +170782778592,214,0 +170782778640,214,0 +170782778688,214,0 +170782778737,214,0 +170782778785,214,0 +170782778833,214,0 +170782778881,214,0 +170782778929,214,0 +170782778977,214,0 +170782779027,213,0 +170782779075,213,0 +170782779124,213,0 +170782779172,213,0 +170782779220,213,0 +170782779269,213,0 +170782779317,213,0 +170782779365,213,0 +170782779413,214,0 +170782779461,214,0 +170782779509,214,0 +170782779557,214,0 +170782779607,214,0 +170782779655,214,0 +170782779704,214,0 +170782779752,214,0 +170782779800,214,0 +170782779848,214,0 +170782779896,213,0 +170782779944,213,0 +170782779993,213,0 +170782780041,213,0 +170782780091,213,0 +170782780139,213,0 +170782780187,214,0 +170782780236,214,0 +170782780284,214,0 +170782780332,214,0 +170782780380,214,0 +170782780428,214,0 +170782780476,214,0 +170782780524,214,0 +170782780572,214,0 +170782780621,214,0 +170782780669,214,0 +170782780717,214,0 +170782780765,214,0 +170782780813,213,0 +170782780861,213,0 +170782780909,213,0 +170782780957,213,0 +170782781006,213,0 +170782781054,213,0 +170782781102,213,0 +170782781150,213,0 +170782781198,214,0 +170782781246,214,0 +170782781295,214,0 +170782781345,214,0 +170782781393,214,0 +170782781441,214,0 +170782781489,214,0 +170782781537,214,0 +170782781585,213,0 +170782781633,214,0 +170782781680,214,0 +170782781730,213,0 +170782781778,213,0 +170782781826,213,0 +170782781874,213,0 +170782781923,213,0 +170782781971,213,0 +170782782019,213,0 +170782782067,213,0 +170782782117,213,0 +170782782165,213,0 +170782782213,214,0 +170782782261,214,0 +170782782310,214,0 +170782782358,214,0 +170782782406,214,0 +170782782454,214,0 +170782782503,214,0 +170782782551,214,0 +170782782599,214,0 +170782782647,214,0 +170782782695,213,0 +170782782743,213,0 +170782782791,213,0 +170782782839,214,0 +170782782888,213,0 +170782782938,213,0 +170782782987,213,0 +170782783035,214,0 +170782783085,214,0 +170782783132,214,0 +170782783182,214,0 +170782783230,214,0 +170782783278,214,0 +170782783326,214,0 +170782783375,214,0 +170782783423,214,0 +170782783471,214,0 +170782783521,214,0 +170782783570,213,0 +170782783620,213,0 +170782783667,213,0 +170782783715,213,0 +170782783763,214,0 +170782783811,213,0 +170782783859,213,0 +170782783907,214,0 +170782783955,214,0 +170782784004,214,0 +170782784054,214,0 +170782784102,214,0 +170782784151,214,0 +170782784199,214,0 +170782784247,214,0 +170782784295,214,0 +170782784343,214,0 +170782784392,214,0 +170782784442,214,0 +170782784490,213,0 +170782784537,213,0 +170782784587,213,0 +170782784636,213,0 +170782784686,213,0 +170782784734,213,0 +170782784782,213,0 +170782784831,213,0 +170782784879,214,0 +170782784927,214,0 +170782784975,214,0 +170782785023,214,0 +170782785071,214,0 +170782785119,214,0 +170782785167,214,0 +170782785214,214,0 +170782785264,214,0 +170782785313,214,0 +170782785361,214,0 +170782785409,213,0 +170782785457,213,0 +170782785505,213,0 +170782785553,213,0 +170782785601,213,0 +170782785648,213,0 +170782785696,213,0 +170782785744,213,0 +170782785792,213,0 +170782785840,214,0 +170782785888,214,0 +170782785935,214,0 +170782785983,214,0 +170782786031,214,0 +170782786079,214,0 +170782786129,214,0 +170782786176,214,0 +170782786226,214,0 +170782786276,213,0 +170782786324,213,0 +170782786373,213,0 +170782786423,213,0 +170782786471,213,0 +170782786519,213,0 +170782786567,213,0 +170782786615,213,0 +170782786662,214,0 +170782786710,214,0 +170782786758,214,0 +170782786808,214,0 +170782786856,214,0 +170782786904,214,0 +170782786952,214,0 +170782787002,214,0 +170782787051,214,0 +170782787099,214,0 +170782787147,214,0 +170782787195,213,0 +170782787243,213,0 +170782787291,213,0 +170782787339,213,0 +170782787387,213,0 +170782787436,213,0 +170782787486,214,0 +170782787534,213,0 +170782787583,214,0 +170782787631,214,0 +170782787681,214,0 +170782787729,214,0 +170782787778,214,0 +170782787828,214,0 +170782787875,214,0 +170782787923,214,0 +170782787971,214,0 +170782788019,214,0 +170782788067,214,0 +170782788115,213,0 +170782788163,213,0 +170782788212,214,0 +170782788260,213,0 +170782788310,214,0 +170782788358,214,0 +170782788407,214,0 +170782788457,214,0 +170782788506,214,0 +170782788554,214,0 +170782788602,214,0 +170782788650,214,0 +170782788698,214,0 +170782788746,214,0 +170782788795,214,0 +170782788845,214,0 +170782788893,214,0 +170782788941,214,0 +170782788989,214,0 +170782789038,213,0 +170782789086,213,0 +170782789136,213,0 +170782789184,213,0 +170782789233,213,0 +170782789283,214,0 +170782789331,214,0 +170782789379,214,0 +170782789427,214,0 +170782789475,214,0 +170782789524,214,0 +170782789572,214,0 +170782789620,214,0 +170782789668,214,0 +170782789716,214,0 +170782789765,214,0 +170782789813,214,0 +170782789861,215,0 +170782789911,214,0 +170782789960,213,0 +170782790010,213,0 +170782790058,213,0 +170782790107,213,0 +170782790155,213,0 +170782790203,213,0 +170782790251,213,0 +170782790299,214,0 +170782790347,214,0 +170782790396,214,0 +170782790444,214,0 +170782790492,214,0 +170782790540,214,0 +170782790588,214,0 +170782790638,214,0 +170782790686,214,0 +170782790734,214,0 +170782790783,214,0 +170782790831,213,0 +170782790879,213,0 +170782790927,213,0 +170782790975,213,0 +170782791023,213,0 +170782791071,213,0 +170782791119,213,0 +170782791168,214,0 +170782791216,213,0 +170782791264,214,0 +170782791312,214,0 +170782791360,214,0 +170782791409,214,0 +170782791459,214,0 +170782791507,214,0 +170782791556,214,0 +170782791604,214,0 +170782791652,214,0 +170782791700,214,0 +170782791748,213,0 +170782791796,213,0 +170782791845,213,0 +170782791893,213,0 +170782791943,213,0 +170782791991,213,0 +170782792040,213,0 +170782792088,213,0 +170782792136,213,0 +170782792184,213,0 +170782792233,213,0 +170782792283,213,0 +170782792331,214,0 +170782792379,214,0 +170782792428,214,0 +170782792476,214,0 +170782792526,214,0 +170782792574,214,0 +170782792622,214,0 +170782792669,213,0 +170782792719,213,0 +170782792769,213,0 +170782792818,213,0 +170782792868,213,0 +170782792917,213,0 +170782792965,213,0 +170782793015,213,0 +170782793064,213,0 +170782793114,213,0 +170782793162,214,0 +170782793210,214,0 +170782793259,214,0 +170782793307,214,0 +170782793355,214,0 +170782793403,214,0 +170782793451,214,0 +170782793500,214,0 +170782793548,215,0 +170782793598,213,0 +170782793646,213,0 +170782793694,213,0 +170782793743,213,0 +170782793791,214,0 +170782793841,214,0 +170782793889,214,0 +170782793937,214,0 +170782793984,214,0 +170782794032,214,0 +170782794080,214,0 +170782794128,214,0 +170782794176,214,0 +170782794224,214,0 +170782794272,214,0 +170782794320,214,0 +170782794368,214,0 +170782794415,214,0 +170782794463,214,0 +170782794511,213,0 +170782794559,213,0 +170782794607,213,0 +170782794655,213,0 +170782794703,213,0 +170782794751,213,0 +170782794800,213,0 +170782794848,213,0 +170782794898,214,0 +170782794945,214,0 +170782794993,214,0 +170782795041,214,0 +170782795089,214,0 +170782795137,214,0 +170782795184,214,0 +170782795232,214,0 +170782795280,214,0 +170782795328,214,0 +170782795376,214,0 +170782795423,213,0 +170782795471,213,0 +170782795519,213,0 +170782795567,213,0 +170782795615,213,0 +170782795665,213,0 +170782795714,214,0 +170782795764,213,0 +170782795813,214,0 +170782795861,214,0 +170782795909,214,0 +170782795957,214,0 +170782796006,214,0 +170782796054,214,0 +170782796102,214,0 +170782796150,214,0 +170782796198,214,0 +170782796246,214,0 +170782796294,214,0 +170782796344,213,0 +170782796393,213,0 +170782796441,214,0 +170782796490,213,0 +170782796538,214,0 +170782796586,214,0 +170782796635,214,0 +170782796683,214,0 +170782796731,214,0 +170782796779,214,0 +170782796827,214,0 +170782796875,214,0 +170782796923,214,0 +170782796971,214,0 +170782797018,214,0 +170782797066,214,0 +170782797114,214,0 +170782797164,214,0 +170782797212,213,0 +170782797259,213,0 +170782797307,213,0 +170782797355,213,0 +170782797403,213,0 +170782797452,213,0 +170782797500,214,0 +170782797550,213,0 +170782797598,214,0 +170782797645,214,0 +170782797693,214,0 +170782797741,214,0 +170782797789,214,0 +170782797837,214,0 +170782797885,214,0 +170782797932,214,0 +170782797980,214,0 +170782798028,214,0 +170782798076,214,0 +170782798124,213,0 +170782798172,213,0 +170782798219,213,0 +170782798267,213,0 +170782798315,213,0 +170782798363,213,0 +170782798413,213,0 +170782798462,213,0 +170782798510,214,0 +170782798560,214,0 +170782798607,214,0 +170782798655,214,0 +170782798703,214,0 +170782798751,214,0 +170782798799,214,0 +170782798849,214,0 +170782798897,214,0 +170782798945,214,0 +170782798992,214,0 +170782799040,214,0 +170782799088,213,0 +170782799136,213,0 +170782799184,213,0 +170782799232,213,0 +170782799280,213,0 +170782799330,213,0 +170782799378,213,0 +170782799426,213,0 +170782799475,213,0 +170782799523,214,0 +170782799572,214,0 +170782799622,214,0 +170782799670,214,0 +170782799718,214,0 +170782799766,214,0 +170782799814,214,0 +170782799863,214,0 +170782799913,214,0 +170782799961,213,0 +170782800009,213,0 +170782800058,213,0 +170782800108,213,0 +170782800157,213,0 +170782800205,213,0 +170782800254,213,0 +170782800302,213,0 +170782800350,213,0 +170782800398,214,0 +170782800446,213,0 +170782800496,214,0 +170782800544,214,0 +170782800592,214,0 +170782800640,214,0 +170782800688,214,0 +170782800737,214,0 +170782800787,214,0 +170782800835,214,0 +170782800883,213,0 +170782800930,213,0 +170782800980,213,0 +170782801028,213,0 +170782801076,213,0 +170782801124,213,0 +170782801173,213,0 +170782801221,214,0 +170782801269,213,0 +170782801319,213,0 +170782801368,213,0 +170782801416,214,0 +170782801464,214,0 +170782801512,214,0 +170782801561,214,0 +170782801609,214,0 +170782801657,214,0 +170782801705,214,0 +170782801753,214,0 +170782801801,213,0 +170782801849,213,0 +170782801898,213,0 +170782801946,213,0 +170782801996,213,0 +170782802044,213,0 +170782802091,213,0 +170782802139,214,0 +170782802189,214,0 +170782802237,214,0 +170782802285,214,0 +170782802333,214,0 +170782802381,214,0 +170782802430,214,0 +170782802479,214,0 +170782802527,214,0 +170782802575,214,0 +170782802623,214,0 +170782802671,214,0 +170782802719,213,0 +170782802769,213,0 +170782802816,213,0 +170782802864,213,0 +170782802912,213,0 +170782802960,214,0 +170782803008,213,0 +170782803056,214,0 +170782803103,213,0 +170782803151,214,0 +170782803199,214,0 +170782803247,214,0 +170782803295,214,0 +170782803343,214,0 +170782803392,214,0 +170782803440,214,0 +170782803488,214,0 +170782803536,214,0 +170782803584,214,0 +170782803632,213,0 +170782803679,213,0 +170782803727,213,0 +170782803775,213,0 +170782803825,213,0 +170782803872,213,0 +170782803920,213,0 +170782803968,213,0 +170782804016,214,0 +170782804066,213,0 +170782804114,214,0 +170782804162,214,0 +170782804210,214,0 +170782804258,214,0 +170782804305,214,0 +170782804353,214,0 +170782804401,214,0 +170782804451,214,0 +170782804499,214,0 +170782804546,213,0 +170782804594,213,0 +170782804642,213,0 +170782804692,213,0 +170782804740,213,0 +170782804787,214,0 +170782804835,214,0 +170782804883,214,0 +170782804931,214,0 +170782804979,214,0 +170782805027,214,0 +170782805074,214,0 +170782805122,214,0 +170782805170,214,0 +170782805220,214,0 +170782805268,214,0 +170782805317,214,0 +170782805365,214,0 +170782805413,214,0 +170782805461,213,0 +170782805508,213,0 +170782805558,213,0 +170782805607,213,0 +170782805655,213,0 +170782805703,213,0 +170782805751,213,0 +170782805800,213,0 +170782805848,214,0 +170782805898,214,0 +170782805946,214,0 +170782805995,214,0 +170782806043,214,0 +170782806093,214,0 +170782806141,214,0 +170782806190,214,0 +170782806238,214,0 +170782806288,214,0 +170782806336,213,0 +170782806385,213,0 +170782806433,213,0 +170782806482,213,0 +170782806532,213,0 +170782806580,213,0 +170782806628,213,0 +170782806676,213,0 +170782806723,214,0 +170782806771,214,0 +170782806821,214,0 +170782806869,214,0 +170782806917,214,0 +170782806966,214,0 +170782807014,215,0 +170782807062,214,0 +170782807111,214,0 +170782807159,214,0 +170782807207,214,0 +170782807255,213,0 +170782807303,213,0 +170782807351,213,0 +170782807399,213,0 +170782807447,213,0 +170782807495,214,0 +170782807542,213,0 +170782807590,213,0 +170782807640,213,0 +170782807688,214,0 +170782807736,214,0 +170782807783,214,0 +170782807833,214,0 +170782807881,214,0 +170782807930,214,0 +170782807978,214,0 +170782808026,214,0 +170782808076,214,0 +170782808125,214,0 +170782808175,213,0 +170782808223,213,0 +170782808271,213,0 +170782808318,213,0 +170782808366,213,0 +170782808414,213,0 +170782808462,213,0 +170782808510,213,0 +170782808558,213,0 +170782808606,214,0 +170782808656,214,0 +170782808705,214,0 +170782808753,214,0 +170782808803,214,0 +170782808851,214,0 +170782808899,214,0 +170782808947,214,0 +170782808994,214,0 +170782809042,214,0 +170782809092,214,0 +170782809141,213,0 +170782809189,213,0 +170782809237,213,0 +170782809285,213,0 +170782809333,213,0 +170782809381,213,0 +170782809431,213,0 +170782809478,213,0 +170782809528,214,0 +170782809576,214,0 +170782809625,214,0 +170782809675,214,0 +170782809723,214,0 +170782809771,214,0 +170782809819,214,0 +170782809867,214,0 +170782809916,214,0 +170782809964,214,0 +170782810012,213,0 +170782810059,213,0 +170782810107,213,0 +170782810155,213,0 +170782810203,213,0 +170782810251,213,0 +170782810299,213,0 +170782810347,213,0 +170782810395,214,0 +170782810443,213,0 +170782810491,214,0 +170782810539,214,0 +170782810588,214,0 +170782810636,214,0 +170782810684,214,0 +170782810732,214,0 +170782810780,214,0 +170782810829,214,0 +170782810877,214,0 +170782810925,213,0 +170782810972,213,0 +170782811020,213,0 +170782811068,213,0 +170782811116,213,0 +170782811164,213,0 +170782811212,213,0 +170782811259,213,0 +170782811307,214,0 +170782811355,214,0 +170782811403,214,0 +170782811451,214,0 +170782811499,214,0 +170782811547,214,0 +170782811595,214,0 +170782811644,214,0 +170782811692,214,0 +170782811740,214,0 +170782811787,214,0 +170782811835,213,0 +170782811885,213,0 +170782811934,213,0 +170782811982,213,0 +170782812030,213,0 +170782812078,213,0 +170782812126,213,0 +170782812176,213,0 +170782812224,214,0 +170782812271,214,0 +170782812321,214,0 +170782812369,213,0 +170782812418,214,0 +170782812466,214,0 +170782812514,214,0 +170782812564,214,0 +170782812612,214,0 +170782812660,214,0 +170782812708,214,0 +170782812756,213,0 +170782812804,213,0 +170782812852,213,0 +170782812901,213,0 +170782812949,213,0 +170782812997,213,0 +170782813045,213,0 +170782813093,213,0 +170782813141,213,0 +170782813189,213,0 +170782813238,213,0 +170782813286,214,0 +170782813336,214,0 +170782813384,214,0 +170782813433,214,0 +170782813481,214,0 +170782813529,214,0 +170782813577,214,0 +170782813625,214,0 +170782813674,213,0 +170782813722,213,0 +170782813770,213,0 +170782813818,213,0 +170782813868,213,0 +170782813917,213,0 +170782813965,213,0 +170782814013,213,0 +170782814063,213,0 +170782814112,213,0 +170782814160,213,0 +170782814208,213,0 +170782814256,214,0 +170782814304,214,0 +170782814353,214,0 +170782814403,214,0 +170782814452,214,0 +170782814500,214,0 +170782814548,214,0 +170782814596,213,0 +170782814644,213,0 +170782814692,213,0 +170782814742,214,0 +170782814789,213,0 +170782814839,214,0 +170782814887,214,0 +170782814936,214,0 +170782814984,214,0 +170782815034,214,0 +170782815082,214,0 +170782815131,214,0 +170782815181,214,0 +170782815229,214,0 +170782815278,214,0 +170782815326,214,0 +170782815374,214,0 +170782815422,214,0 +170782815470,214,0 +170782815520,213,0 +170782815569,213,0 +170782815617,213,0 +170782815667,213,0 +170782815716,213,0 +170782815766,213,0 +170782815815,214,0 +170782815865,214,0 +170782815913,214,0 +170782815960,214,0 +170782816008,214,0 +170782816056,214,0 +170782816104,214,0 +170782816152,214,0 +170782816200,214,0 +170782816248,214,0 +170782816296,214,0 +170782816345,214,0 +170782816395,213,0 +170782816444,213,0 +170782816492,213,0 +170782816540,213,0 +170782816588,214,0 +170782816637,214,0 +170782816685,214,0 +170782816733,214,0 +170782816781,214,0 +170782816831,214,0 +170782816879,214,0 +170782816926,214,0 +170782816976,214,0 +170782817026,214,0 +170782817075,214,0 +170782817123,215,0 +170782817171,214,0 +170782817219,214,0 +170782817267,214,0 +170782817315,214,0 +170782817363,214,0 +170782817411,214,0 +170782817459,214,0 +170782817507,214,0 +170782817555,214,0 +170782817603,214,0 +170782817651,214,0 +170782817700,214,0 +170782817748,214,0 +170782817796,214,0 +170782817846,214,0 +170782817894,215,0 +170782817941,214,0 +170782817989,214,0 +170782818037,214,0 +170782818085,214,0 +170782818133,214,0 +170782818183,214,0 +170782818232,214,0 +170782818282,214,0 +170782818330,214,0 +170782818378,214,0 +170782818426,214,0 +170782818475,214,0 +170782818523,214,0 +170782818571,214,0 +170782818619,214,0 +170782818669,214,0 +170782818718,214,0 +170782818766,214,0 +170782818814,214,0 +170782818864,214,0 +170782818912,214,0 +170782818960,215,0 +170782819009,214,0 +170782819057,214,0 +170782819105,214,0 +170782819155,214,0 +170782819202,214,0 +170782819252,214,0 +170782819302,214,0 +170782819350,214,0 +170782819397,214,0 +170782819447,214,0 +170782819496,214,0 +170782819544,214,0 +170782819594,214,0 +170782819642,214,0 +170782819690,214,0 +170782819739,214,0 +170782819787,214,0 +170782819835,215,0 +170782819883,214,0 +170782819930,214,0 +170782819978,214,0 +170782820026,214,0 +170782820074,213,0 +170782820122,213,0 +170782820170,213,0 +170782820218,213,0 +170782820266,214,0 +170782820315,214,0 +170782820363,214,0 +170782820411,214,0 +170782820459,214,0 +170782820507,214,0 +170782820556,214,0 +170782820604,214,0 +170782820652,214,0 +170782820700,214,0 +170782820750,214,0 +170782820798,214,0 +170782820846,214,0 +170782820894,214,0 +170782820942,214,0 +170782820991,213,0 +170782821041,213,0 +170782821090,213,0 +170782821138,213,0 +170782821188,213,0 +170782821236,213,0 +170782821283,214,0 +170782821333,213,0 +170782821382,213,0 +170782821430,213,0 +170782821478,214,0 +170782821528,214,0 +170782821577,214,0 +170782821625,214,0 +170782821673,214,0 +170782821721,214,0 +170782821769,214,0 +170782821819,214,0 +170782821868,214,0 +170782821916,213,0 +170782821964,213,0 +170782822012,213,0 +170782822060,213,0 +170782822108,213,0 +170782822156,213,0 +170782822204,213,0 +170782822252,213,0 +170782822301,213,0 +170782822351,214,0 +170782822400,214,0 +170782822448,213,0 +170782822498,214,0 +170782822546,214,0 +170782822594,214,0 +170782822643,214,0 +170782822693,214,0 +170782822741,214,0 +170782822790,214,0 +170782822838,213,0 +170782822888,213,0 +170782822936,213,0 +170782822985,213,0 +170782823035,213,0 +170782823084,213,0 +170782823132,213,0 +170782823180,213,0 +170782823230,213,0 +170782823279,213,0 +170782823327,213,0 +170782823375,214,0 +170782823423,214,0 +170782823473,213,0 +170782823522,213,0 +170782823570,214,0 +170782823620,214,0 +170782823668,214,0 +170782823715,213,0 +170782823763,213,0 +170782823811,213,0 +170782823861,213,0 +170782823909,213,0 +170782823958,213,0 +170782824006,213,0 +170782824054,213,0 +170782824104,213,0 +170782824152,213,0 +170782824201,214,0 +170782824249,214,0 +170782824297,214,0 +170782824345,214,0 +170782824394,214,0 +170782824442,214,0 +170782824492,214,0 +170782824540,214,0 +170782824588,214,0 +170782824637,213,0 +170782824685,213,0 +170782824735,213,0 +170782824782,213,0 +170782824832,213,0 +170782824881,213,0 +170782824931,213,0 +170782824979,213,0 +170782825027,213,0 +170782825075,214,0 +170782825124,214,0 +170782825172,214,0 +170782825220,214,0 +170782825270,214,0 +170782825318,214,0 +170782825366,214,0 +170782825414,214,0 +170782825462,214,0 +170782825511,214,0 +170782825561,213,0 +170782825609,213,0 +170782825657,213,0 +170782825705,213,0 +170782825754,213,0 +170782825804,213,0 +170782825852,213,0 +170782825901,213,0 +170782825951,213,0 +170782826000,213,0 +170782826048,214,0 +170782826096,214,0 +170782826144,214,0 +170782826192,214,0 +170782826240,214,0 +170782826290,214,0 +170782826339,214,0 +170782826387,214,0 +170782826435,214,0 +170782826483,213,0 +170782826531,213,0 +170782826579,213,0 +170782826628,213,0 +170782826678,213,0 +170782826727,213,0 +170782826775,213,0 +170782826825,213,0 +170782826872,213,0 +170782826922,213,0 +170782826970,214,0 +170782827018,214,0 +170782827066,214,0 +170782827114,214,0 +170782827162,214,0 +170782827211,214,0 +170782827261,214,0 +170782827308,214,0 +170782827358,214,0 +170782827406,213,0 +170782827455,213,0 +170782827503,213,0 +170782827553,213,0 +170782827601,213,0 +170782827650,213,0 +170782827698,213,0 +170782827746,213,0 +170782827794,213,0 +170782827842,214,0 +170782827890,214,0 +170782827940,214,0 +170782827989,214,0 +170782828037,214,0 +170782828087,214,0 +170782828135,214,0 +170782828182,214,0 +170782828232,214,0 +170782828280,213,0 +170782828328,213,0 +170782828376,213,0 +170782828424,213,0 +170782828472,213,0 +170782828521,213,0 +170782828571,213,0 +170782828619,213,0 +170782828668,213,0 +170782828718,213,0 +170782828766,213,0 +170782828814,214,0 +170782828862,214,0 +170782828911,214,0 +170782828959,214,0 +170782829009,214,0 +170782829058,214,0 +170782829108,214,0 +170782829156,214,0 +170782829206,213,0 +170782829255,213,0 +170782829305,213,0 +170782829353,213,0 +170782829401,213,0 +170782829449,213,0 +170782829497,213,0 +170782829545,213,0 +170782829593,213,0 +170782829641,213,0 +170782829689,213,0 +170782829738,213,0 +170782829786,213,0 +170782829834,213,0 +170782829884,213,0 +170782829933,213,0 +170782829981,214,0 +170782830029,214,0 +170782830079,214,0 +170782830126,213,0 +170782830174,213,0 +170782830222,213,0 +170782830270,213,0 +170782830318,213,0 +170782830366,213,0 +170782830416,214,0 +170782830464,213,0 +170782830513,213,0 +170782830563,214,0 +170782830611,214,0 +170782830660,214,0 +170782830708,214,0 +170782830756,214,0 +170782830805,214,0 +170782830853,214,0 +170782830903,214,0 +170782830952,214,0 +170782831000,214,0 +170782831048,213,0 +170782831096,213,0 +170782831144,213,0 +170782831194,213,0 +170782831242,213,0 +170782831290,214,0 +170782831339,214,0 +170782831389,214,0 +170782831437,214,0 +170782831486,214,0 +170782831536,214,0 +170782831585,214,0 +170782831635,214,0 +170782831683,214,0 +170782831732,214,0 +170782831780,214,0 +170782831828,214,0 +170782831878,214,0 +170782831926,214,0 +170782831974,213,0 +170782832022,213,0 +170782832069,213,0 +170782832117,213,0 +170782832167,214,0 +170782832215,214,0 +170782832263,214,0 +170782832311,214,0 +170782832360,214,0 +170782832408,214,0 +170782832458,214,0 +170782832505,214,0 +170782832553,214,0 +170782832601,214,0 +170782832651,214,0 +170782832699,214,0 +170782832748,214,0 +170782832796,214,0 +170782832844,214,0 +170782832892,213,0 +170782832940,213,0 +170782832990,214,0 +170782833038,214,0 +170782833086,214,0 +170782833135,214,0 +170782833185,214,0 +170782833233,214,0 +170782833282,214,0 +170782833332,214,0 +170782833380,214,0 +170782833429,214,0 +170782833477,214,0 +170782833525,214,0 +170782833573,214,0 +170782833621,214,0 +170782833669,214,0 +170782833717,214,0 +170782833765,213,0 +170782833814,213,0 +170782833864,213,0 +170782833913,213,0 +170782833961,214,0 +170782834011,214,0 +170782834059,213,0 +170782834107,214,0 +170782834155,214,0 +170782834202,214,0 +170782834250,214,0 +170782834298,214,0 +170782834346,214,0 +170782834394,214,0 +170782834444,214,0 +170782834492,214,0 +170782834540,214,0 +170782834588,214,0 +170782834636,214,0 +170782834684,213,0 +170782834733,213,0 +170782834781,213,0 +170782834829,213,0 +170782834877,213,0 +170782834927,213,0 +170782834975,214,0 +170782835022,214,0 +170782835070,214,0 +170782835118,214,0 +170782835166,214,0 +170782835214,214,0 +170782835262,214,0 +170782835310,214,0 +170782835358,214,0 +170782835406,214,0 +170782835454,214,0 +170782835502,214,0 +170782835551,214,0 +170782835601,213,0 +170782835649,213,0 +170782835697,213,0 +170782835746,213,0 +170782835794,213,0 +170782835843,213,0 +170782835893,213,0 +170782835942,213,0 +170782835992,213,0 +170782836041,213,0 +170782836089,213,0 +170782836137,213,0 +170782836185,213,0 +170782836235,214,0 +170782836284,214,0 +170782836333,214,0 +170782836381,214,0 +170782836429,214,0 +170782836477,214,0 +170782836525,213,0 +170782836573,213,0 +170782836620,213,0 +170782836670,213,0 +170782836719,213,0 +170782836767,213,0 +170782836815,213,0 +170782836863,213,0 +170782836911,214,0 +170782836959,214,0 +170782837008,214,0 +170782837058,214,0 +170782837106,214,0 +170782837153,214,0 +170782837201,214,0 +170782837249,214,0 +170782837297,214,0 +170782837345,214,0 +170782837393,214,0 +170782837441,213,0 +170782837488,213,0 +170782837536,213,0 +170782837584,213,0 +170782837632,213,0 +170782837680,214,0 +170782837728,213,0 +170782837776,214,0 +170782837824,214,0 +170782837873,214,0 +170782837921,214,0 +170782837971,214,0 +170782838019,214,0 +170782838067,214,0 +170782838116,214,0 +170782838166,214,0 +170782838215,214,0 +170782838263,214,0 +170782838311,214,0 +170782838359,213,0 +170782838408,213,0 +170782838456,213,0 +170782838506,214,0 +170782838554,214,0 +170782838602,214,0 +170782838649,214,0 +170782838697,214,0 +170782838747,214,0 +170782838795,214,0 +170782838844,214,0 +170782838892,214,0 +170782838942,214,0 +170782838991,214,0 +170782839041,214,0 +170782839089,214,0 +170782839138,214,0 +170782839186,214,0 +170782839234,214,0 +170782839284,213,0 +170782839333,213,0 +170782839381,213,0 +170782839429,213,0 +170782839477,214,0 +170782839525,214,0 +170782839575,214,0 +170782839623,214,0 +170782839672,214,0 +170782839722,214,0 +170782839770,214,0 +170782839818,214,0 +170782839867,214,0 +170782839916,214,0 +170782839966,214,0 +170782840014,214,0 +170782840064,214,0 +170782840113,214,0 +170782840161,213,0 +170782840209,213,0 +170782840259,213,0 +170782840308,213,0 +170782840358,214,0 +170782840406,214,0 +170782840454,214,0 +170782840503,214,0 +170782840551,214,0 +170782840599,214,0 +170782840647,214,0 +170782840695,214,0 +170782840744,214,0 +170782840792,214,0 +170782840840,214,0 +170782840888,214,0 +170782840936,214,0 +170782840984,214,0 +170782841033,214,0 +170782841081,213,0 +170782841129,213,0 +170782841177,213,0 +170782841225,213,0 +170782841274,214,0 +170782841324,214,0 +170782841373,214,0 +170782841421,214,0 +170782841469,214,0 +170782841517,214,0 +170782841567,214,0 +170782841615,214,0 +170782841664,214,0 +170782841714,214,0 +170782841762,214,0 +170782841810,214,0 +170782841859,214,0 +170782841909,214,0 +170782841957,214,0 +170782842005,213,0 +170782842053,213,0 +170782842102,213,0 +170782842152,213,0 +170782842201,213,0 +170782842249,214,0 +170782842297,214,0 +170782842345,214,0 +170782842394,214,0 +170782842442,214,0 +170782842492,214,0 +170782842542,214,0 +170782842589,214,0 +170782842637,214,0 +170782842687,214,0 +170782842735,214,0 +170782842784,214,0 +170782842832,214,0 +170782842882,214,0 +170782842930,213,0 +170782842978,213,0 +170782843025,213,0 +170782843073,213,0 +170782843121,213,0 +170782843169,213,0 +170782843217,214,0 +170782843265,214,0 +170782843315,213,0 +170782843363,214,0 +170782843411,214,0 +170782843460,214,0 +170782843508,214,0 +170782843558,214,0 +170782843607,214,0 +170782843655,214,0 +170782843703,214,0 +170782843751,214,0 +170782843801,214,0 +170782843849,213,0 +170782843898,213,0 +170782843946,213,0 +170782843994,213,0 +170782844042,213,0 +170782844091,213,0 +170782844141,213,0 +170782844191,213,0 +170782844240,213,0 +170782844288,213,0 +170782844336,213,0 +170782844384,214,0 +170782844432,214,0 +170782844480,214,0 +170782844528,214,0 +170782844576,214,0 +170782844624,214,0 +170782844672,214,0 +170782844720,214,0 +170782844767,213,0 +170782844817,213,0 +170782844865,213,0 +170782844913,213,0 +170782844961,213,0 +170782845009,213,0 +170782845058,213,0 +170782845108,213,0 +170782845156,213,0 +170782845205,213,0 +170782845253,214,0 +170782845301,214,0 +170782845349,214,0 +170782845399,214,0 +170782845448,214,0 +170782845498,214,0 +170782845546,214,0 +170782845595,214,0 +170782845643,214,0 +170782845691,213,0 +170782845739,213,0 +170782845787,213,0 +170782845835,213,0 +170782845883,213,0 +170782845932,213,0 +170782845982,214,0 +170782846031,214,0 +170782846080,213,0 +170782846129,214,0 +170782846177,214,0 +170782846226,214,0 +170782846274,214,0 +170782846322,214,0 +170782846370,214,0 +170782846418,214,0 +170782846466,214,0 +170782846514,214,0 +170782846562,214,0 +170782846610,213,0 +170782846659,213,0 +170782846707,213,0 +170782846755,214,0 +170782846803,213,0 +170782846851,214,0 +170782846900,214,0 +170782846948,214,0 +170782846998,214,0 +170782847046,214,0 +170782847094,214,0 +170782847142,214,0 +170782847191,214,0 +170782847239,214,0 +170782847287,214,0 +170782847336,214,0 +170782847384,214,0 +170782847432,214,0 +170782847480,213,0 +170782847528,213,0 +170782847576,213,0 +170782847625,213,0 +170782847673,213,0 +170782847723,213,0 +170782847771,213,0 +170782847819,213,0 +170782847866,214,0 +170782847916,214,0 +170782847964,214,0 +170782848012,214,0 +170782848060,214,0 +170782848108,214,0 +170782848156,214,0 +170782848205,214,0 +170782848253,215,0 +170782848301,214,0 +170782848350,214,0 +170782848400,214,0 +170782848448,213,0 +170782848496,213,0 +170782848543,213,0 +170782848591,213,0 +170782848639,213,0 +170782848689,214,0 +170782848738,214,0 +170782848786,214,0 +170782848836,214,0 +170782848884,214,0 +170782848932,214,0 +170782848981,214,0 +170782849029,214,0 +170782849077,215,0 +170782849127,214,0 +170782849176,214,0 +170782849226,214,0 +170782849275,214,0 +170782849323,213,0 +170782849373,213,0 +170782849420,213,0 +170782849468,213,0 +170782849516,213,0 +170782849566,214,0 +170782849614,214,0 +170782849662,214,0 +170782849709,214,0 +170782849757,214,0 +170782849805,214,0 +170782849853,214,0 +170782849903,214,0 +170782849951,214,0 +170782849999,214,0 +170782850048,214,0 +170782850096,214,0 +170782850144,214,0 +170782850194,214,0 +170782850242,213,0 +170782850291,213,0 +170782850341,213,0 +170782850388,213,0 +170782850436,213,0 +170782850484,214,0 +170782850532,214,0 +170782850580,214,0 +170782850628,214,0 +170782850678,214,0 +170782850726,214,0 +170782850774,214,0 +170782850821,214,0 +170782850869,214,0 +170782850919,214,0 +170782850967,214,0 +170782851015,214,0 +170782851063,214,0 +170782851112,214,0 +170782851160,213,0 +170782851208,213,0 +170782851257,213,0 +170782851307,213,0 +170782851355,213,0 +170782851403,213,0 +170782851451,213,0 +170782851499,213,0 +170782851547,213,0 +170782851595,214,0 +170782851644,214,0 +170782851694,214,0 +170782851742,214,0 +170782851791,214,0 +170782851839,214,0 +170782851887,214,0 +170782851935,214,0 +170782851984,214,0 +170782852034,214,0 +170782852082,213,0 +170782852131,213,0 +170782852181,213,0 +170782852229,213,0 +170782852276,213,0 +170782852326,213,0 +170782852374,213,0 +170782852422,213,0 +170782852470,213,0 +170782852520,214,0 +170782852567,214,0 +170782852617,214,0 +170782852665,214,0 +170782852715,214,0 +170782852764,214,0 +170782852812,214,0 +170782852860,214,0 +170782852908,214,0 +170782852957,214,0 +170782853005,213,0 +170782853053,213,0 +170782853101,213,0 +170782853151,213,0 +170782853199,213,0 +170782853246,213,0 +170782853294,214,0 +170782853342,214,0 +170782853390,214,0 +170782853438,214,0 +170782853486,214,0 +170782853534,214,0 +170782853582,214,0 +170782853630,214,0 +170782853678,214,0 +170782853727,214,0 +170782853775,214,0 +170782853825,214,0 +170782853874,214,0 +170782853922,213,0 +170782853970,213,0 +170782854018,213,0 +170782854066,213,0 +170782854114,213,0 +170782854162,213,0 +170782854210,213,0 +170782854260,213,0 +170782854307,213,0 +170782854355,213,0 +170782854403,214,0 +170782854451,214,0 +170782854501,214,0 +170782854550,214,0 +170782854598,214,0 +170782854646,214,0 +170782854695,214,0 +170782854743,214,0 +170782854791,214,0 +170782854839,213,0 +170782854887,213,0 +170782854935,213,0 +170782854983,213,0 +170782855033,213,0 +170782855082,213,0 +170782855130,213,0 +170782855178,213,0 +170782855227,213,0 +170782855275,213,0 +170782855325,213,0 +170782855373,213,0 +170782855422,214,0 +170782855470,214,0 +170782855518,214,0 +170782855566,214,0 +170782855616,214,0 +170782855664,214,0 +170782855712,214,0 +170782855760,213,0 +170782855808,213,0 +170782855856,213,0 +170782855904,213,0 +170782855953,213,0 +170782856001,213,0 +170782856051,213,0 +170782856098,213,0 +170782856148,213,0 +170782856196,213,0 +170782856244,213,0 +170782856293,214,0 +170782856341,214,0 +170782856391,214,0 +170782856440,214,0 +170782856488,214,0 +170782856537,214,0 +170782856585,214,0 +170782856633,214,0 +170782856681,213,0 +170782856731,213,0 +170782856779,213,0 +170782856828,213,0 +170782856876,213,0 +170782856924,213,0 +170782856972,213,0 +170782857022,213,0 +170782857069,214,0 +170782857117,214,0 +170782857165,214,0 +170782857213,214,0 +170782857261,214,0 +170782857309,214,0 +170782857357,214,0 +170782857405,214,0 +170782857453,214,0 +170782857502,215,0 +170782857552,213,0 +170782857601,213,0 +170782857649,213,0 +170782857699,213,0 +170782857746,213,0 +170782857796,213,0 +170782857844,213,0 +170782857892,213,0 +170782857940,213,0 +170782857988,213,0 +170782858036,213,0 +170782858084,214,0 +170782858132,214,0 +170782858179,214,0 +170782858229,214,0 +170782858277,214,0 +170782858326,214,0 +170782858374,214,0 +170782858424,214,0 +170782858472,214,0 +170782858520,213,0 +170782858568,213,0 +170782858616,213,0 +170782858664,213,0 +170782858712,213,0 +170782858759,214,0 +170782858809,213,0 +170782858858,213,0 +170782858908,214,0 +170782858956,214,0 +170782859004,214,0 +170782859053,214,0 +170782859101,214,0 +170782859151,214,0 +170782859199,214,0 +170782859247,214,0 +170782859296,214,0 +170782859344,214,0 +170782859392,214,0 +170782859440,213,0 +170782859488,213,0 +170782859536,213,0 +170782859584,214,0 +170782859632,213,0 +170782859681,214,0 +170782859729,213,0 +170782859777,214,0 +170782859825,214,0 +170782859874,214,0 +170782859922,214,0 +170782859972,214,0 +170782860020,214,0 +170782860069,214,0 +170782860117,214,0 +170782860165,214,0 +170782860215,214,0 +170782860263,214,0 +170782860310,213,0 +170782860358,213,0 +170782860406,213,0 +170782860454,213,0 +170782860502,213,0 +170782860552,214,0 +170782860599,214,0 +170782860649,214,0 +170782860697,214,0 +170782860746,214,0 +170782860796,214,0 +170782860845,214,0 +170782860893,214,0 +170782860941,214,0 +170782860991,214,0 +170782861040,214,0 +170782861088,214,0 +170782861136,214,0 +170782861184,214,0 +170782861232,213,0 +170782861280,213,0 +170782861330,214,0 +170782861379,214,0 +170782861427,214,0 +170782861475,214,0 +170782861523,214,0 +170782861571,214,0 +170782861619,214,0 +170782861667,214,0 +170782861715,214,0 +170782861763,214,0 +170782861810,214,0 +170782861860,214,0 +170782861908,214,0 +170782861957,215,0 +170782862005,215,0 +170782862055,215,0 +170782862103,214,0 +170782862151,214,0 +170782862199,214,0 +170782862247,214,0 +170782862295,214,0 +170782862342,214,0 +170782862390,214,0 +170782862440,214,0 +170782862489,214,0 +170782862539,214,0 +170782862587,214,0 +170782862635,214,0 +170782862684,214,0 +170782862732,215,0 +170782862780,214,0 +170782862828,215,0 +170782862876,215,0 +170782862924,214,0 +170782862973,215,0 +170782863021,214,0 +170782863071,214,0 +170782863120,214,0 +170782863170,214,0 +170782863218,214,0 +170782863267,214,0 +170782863317,214,0 +170782863366,214,0 +170782863416,214,0 +170782863465,214,0 +170782863513,214,0 +170782863561,214,0 +170782863609,214,0 +170782863659,214,0 +170782863708,214,0 +170782863758,214,0 +170782863806,215,0 +170782863854,214,0 +170782863902,214,0 +170782863949,214,0 +170782863997,213,0 +170782864045,214,0 +170782864093,214,0 +170782864141,214,0 +170782864189,214,0 +170782864237,214,0 +170782864287,214,0 +170782864336,214,0 +170782864386,214,0 +170782864434,214,0 +170782864482,214,0 +170782864530,214,0 +170782864578,214,0 +170782864627,214,0 +170782864675,214,0 +170782864723,214,0 +170782864771,214,0 +170782864819,215,0 +170782864867,214,0 +170782864915,213,0 +170782864964,213,0 +170782865012,213,0 +170782865060,213,0 +170782865108,213,0 +170782865156,214,0 +170782865205,214,0 +170782865253,214,0 +170782865301,214,0 +170782865349,214,0 +170782865398,214,0 +170782865446,214,0 +170782865494,214,0 +170782865542,214,0 +170782865592,214,0 +170782865640,214,0 +170782865689,214,0 +170782865739,214,0 +170782865787,214,0 +170782865835,213,0 +170782865884,213,0 +170782865932,213,0 +170782865982,213,0 +170782866030,214,0 +170782866078,214,0 +170782866126,214,0 +170782866174,213,0 +170782866223,214,0 +170782866271,214,0 +170782866320,214,0 +170782866368,214,0 +170782866418,214,0 +170782866466,214,0 +170782866515,214,0 +170782866563,214,0 +170782866611,214,0 +170782866660,215,0 +170782866710,214,0 +170782866758,213,0 +170782866806,213,0 +170782866854,213,0 +170782866902,213,0 +170782866951,213,0 +170782867001,213,0 +170782867050,213,0 +170782867100,214,0 +170782867149,214,0 +170782867197,214,0 +170782867247,214,0 +170782867295,214,0 +170782867343,214,0 +170782867390,214,0 +170782867438,214,0 +170782867486,214,0 +170782867536,214,0 +170782867585,214,0 +170782867633,213,0 +170782867683,213,0 +170782867731,213,0 +170782867779,213,0 +170782867827,213,0 +170782867876,214,0 +170782867924,213,0 +170782867973,214,0 +170782868021,214,0 +170782868071,214,0 +170782868120,214,0 +170782868168,214,0 +170782868218,214,0 +170782868266,214,0 +170782868315,214,0 +170782868363,214,0 +170782868413,214,0 +170782868461,214,0 +170782868508,214,0 +170782868558,213,0 +170782868608,213,0 +170782868655,213,0 +170782868705,213,0 +170782868753,213,0 +170782868801,213,0 +170782868849,214,0 +170782868898,214,0 +170782868948,214,0 +170782868997,214,0 +170782869045,214,0 +170782869093,214,0 +170782869141,214,0 +170782869189,214,0 +170782869239,214,0 +170782869288,214,0 +170782869338,214,0 +170782869386,214,0 +170782869434,214,0 +170782869483,213,0 +170782869531,213,0 +170782869579,213,0 +170782869627,213,0 +170782869676,213,0 +170782869724,213,0 +170782869772,213,0 +170782869822,214,0 +170782869871,214,0 +170782869921,214,0 +170782869969,214,0 +170782870018,214,0 +170782870066,214,0 +170782870116,214,0 +170782870165,214,0 +170782870213,214,0 +170782870263,214,0 +170782870311,214,0 +170782870358,214,0 +170782870406,213,0 +170782870454,213,0 +170782870502,213,0 +170782870552,213,0 +170782870600,213,0 +170782870648,213,0 +170782870695,214,0 +170782870743,213,0 +170782870791,213,0 +170782870839,214,0 +170782870889,214,0 +170782870937,214,0 +170782870985,214,0 +170782871034,214,0 +170782871082,214,0 +170782871130,214,0 +170782871178,214,0 +170782871226,214,0 +170782871276,214,0 +170782871324,213,0 +170782871372,213,0 +170782871420,213,0 +170782871469,213,0 +170782871517,213,0 +170782871565,213,0 +170782871613,213,0 +170782871663,213,0 +170782871712,213,0 +170782871760,214,0 +170782871810,214,0 +170782871859,214,0 +170782871907,214,0 +170782871955,214,0 +170782872003,214,0 +170782872051,214,0 +170782872101,214,0 +170782872149,214,0 +170782872196,213,0 +170782872244,213,0 +170782872292,213,0 +170782872342,213,0 +170782872390,213,0 +170782872438,213,0 +170782872486,213,0 +170782872535,213,0 +170782872583,213,0 +170782872631,213,0 +170782872681,214,0 +170782872730,214,0 +170782872780,214,0 +170782872829,214,0 +170782872877,214,0 +170782872925,214,0 +170782872975,214,0 +170782873024,214,0 +170782873072,214,0 +170782873122,213,0 +170782873170,213,0 +170782873218,213,0 +170782873266,213,0 +170782873314,213,0 +170782873361,213,0 +170782873411,213,0 +170782873460,213,0 +170782873508,213,0 +170782873556,213,0 +170782873606,213,0 +170782873656,214,0 +170782873705,214,0 +170782873755,214,0 +170782873804,214,0 +170782873854,214,0 +170782873903,214,0 +170782873951,214,0 +170782873999,214,0 +170782874048,213,0 +170782874096,213,0 +170782874146,213,0 +170782874194,213,0 +170782874243,213,0 +170782874291,213,0 +170782874339,213,0 +170782874389,213,0 +170782874437,213,0 +170782874486,213,0 +170782874535,214,0 +170782874583,214,0 +170782874631,214,0 +170782874679,214,0 +170782874727,214,0 +170782874775,214,0 +170782874823,214,0 +170782874871,214,0 +170782874919,214,0 +170782874967,213,0 +170782875015,213,0 +170782875063,213,0 +170782875111,213,0 +170782875160,213,0 +170782875209,213,0 +170782875257,214,0 +170782875307,214,0 +170782875355,214,0 +170782875403,214,0 +170782875451,214,0 +170782875500,214,0 +170782875548,214,0 +170782875596,214,0 +170782875645,214,0 +170782875693,214,0 +170782875741,214,0 +170782875789,214,0 +170782875837,214,0 +170782875885,213,0 +170782875933,213,0 +170782875981,213,0 +170782876028,214,0 +170782876078,213,0 +170782876126,214,0 +170782876176,214,0 +170782876223,214,0 +170782876271,214,0 +170782876319,214,0 +170782876368,214,0 +170782876418,214,0 +170782876467,214,0 +170782876515,214,0 +170782876563,214,0 +170782876611,214,0 +170782876659,214,0 +170782876707,214,0 +170782876755,214,0 +170782876803,213,0 +170782876851,213,0 +170782876899,213,0 +170782876947,213,0 +170782876995,213,0 +170782877043,214,0 +170782877092,213,0 +170782877140,214,0 +170782877188,214,0 +170782877237,214,0 +170782877287,214,0 +170782877335,214,0 +170782877383,214,0 +170782877431,214,0 +170782877479,214,0 +170782877528,214,0 +170782877578,214,0 +170782877625,214,0 +170782877675,214,0 +170782877724,213,0 +170782877772,213,0 +170782877820,213,0 +170782877868,213,0 +170782877916,214,0 +170782877964,214,0 +170782878012,214,0 +170782878060,214,0 +170782878108,214,0 +170782878156,214,0 +170782878204,214,0 +170782878253,214,0 +170782878303,214,0 +170782878352,214,0 +170782878400,214,0 +170782878448,214,0 +170782878496,214,0 +170782878544,214,0 +170782878592,214,0 +170782878640,213,0 +170782878688,213,0 +170782878736,213,0 +170782878783,213,0 +170782878831,213,0 +170782878881,214,0 +170782878929,214,0 +170782878978,214,0 +170782879026,214,0 +170782879074,214,0 +170782879122,214,0 +170782879170,214,0 +170782879218,214,0 +170782879266,215,0 +170782879314,214,0 +170782879362,214,0 +170782879410,214,0 +170782879459,214,0 +170782879507,213,0 +170782879555,213,0 +170782879605,213,0 +170782879654,213,0 +170782879704,213,0 +170782879752,213,0 +170782879801,213,0 +170782879849,213,0 +170782879899,214,0 +170782879947,214,0 +170782879995,214,0 +170782880043,214,0 +170782880092,214,0 +170782880140,214,0 +170782880188,214,0 +170782880236,214,0 +170782880284,214,0 +170782880332,214,0 +170782880381,214,0 +170782880429,213,0 +170782880477,213,0 +170782880525,213,0 +170782880573,213,0 +170782880621,213,0 +170782880670,213,0 +170782880720,213,0 +170782880769,214,0 +170782880819,214,0 +170782880868,214,0 +170782880916,214,0 +170782880966,214,0 +170782881014,214,0 +170782881063,214,0 +170782881111,214,0 +170782881161,214,0 +170782881209,214,0 +170782881257,214,0 +170782881305,214,0 +170782881354,213,0 +170782881402,213,0 +170782881450,213,0 +170782881498,213,0 +170782881546,213,0 +170782881594,213,0 +170782881642,214,0 +170782881692,214,0 +170782881740,214,0 +170782881788,214,0 +170782881836,214,0 +170782881885,214,0 +170782881935,214,0 +170782881982,214,0 +170782882032,214,0 +170782882080,214,0 +170782882129,214,0 +170782882179,214,0 +170782882227,214,0 +170782882276,213,0 +170782882324,213,0 +170782882372,213,0 +170782882420,214,0 +170782882468,214,0 +170782882516,214,0 +170782882564,214,0 +170782882612,214,0 +170782882662,214,0 +170782882710,214,0 +170782882757,214,0 +170782882807,214,0 +170782882855,214,0 +170782882903,214,0 +170782882951,214,0 +170782883000,214,0 +170782883050,214,0 +170782883097,214,0 +170782883145,214,0 +170782883193,213,0 +170782883241,213,0 +170782883289,213,0 +170782883337,213,0 +170782883385,213,0 +170782883433,213,0 +170782883481,214,0 +170782883529,214,0 +170782883578,214,0 +170782883626,214,0 +170782883676,214,0 +170782883725,214,0 +170782883775,214,0 +170782883824,214,0 +170782883874,214,0 +170782883922,214,0 +170782883970,214,0 +170782884018,214,0 +170782884066,214,0 +170782884115,213,0 +170782884163,213,0 +170782884211,213,0 +170782884259,213,0 +170782884309,213,0 +170782884356,214,0 +170782884406,214,0 +170782884456,213,0 +170782884504,214,0 +170782884552,214,0 +170782884601,214,0 +170782884650,214,0 +170782884698,214,0 +170782884748,214,0 +170782884796,214,0 +170782884845,214,0 +170782884893,214,0 +170782884941,214,0 +170782884989,214,0 +170782885037,213,0 +170782885085,213,0 +170782885133,213,0 +170782885183,213,0 +170782885232,213,0 +170782885282,213,0 +170782885331,214,0 +170782885381,214,0 +170782885430,214,0 +170782885478,214,0 +170782885526,214,0 +170782885574,214,0 +170782885622,214,0 +170782885670,214,0 +170782885718,214,0 +170782885767,214,0 +170782885815,214,0 +170782885863,214,0 +170782885913,213,0 +170782885961,213,0 +170782886010,213,0 +170782886058,213,0 +170782886106,213,0 +170782886156,213,0 +170782886204,214,0 +170782886252,214,0 +170782886301,214,0 +170782886349,214,0 +170782886399,214,0 +170782886446,214,0 +170782886494,214,0 +170782886542,214,0 +170782886590,214,0 +170782886640,214,0 +170782886688,214,0 +170782886736,214,0 +170782886785,214,0 +170782886835,213,0 +170782886883,213,0 +170782886930,213,0 +170782886978,213,0 +170782887028,213,0 +170782887076,213,0 +170782887125,213,0 +170782887173,213,0 +170782887221,213,0 +170782887269,213,0 +170782887317,213,0 +170782887365,213,0 +170782887413,214,0 +170782887463,214,0 +170782887511,214,0 +170782887558,214,0 +170782887608,214,0 +170782887656,214,0 +170782887704,214,0 +170782887753,213,0 +170782887803,213,0 +170782887851,213,0 +170782887899,213,0 +170782887947,213,0 +170782887996,213,0 +170782888044,214,0 +170782888094,214,0 +170782888142,214,0 +170782888191,214,0 +170782888239,214,0 +170782888289,214,0 +170782888338,214,0 +170782888386,214,0 +170782888434,214,0 +170782888482,214,0 +170782888532,214,0 +170782888581,214,0 +170782888629,214,0 +170782888679,213,0 +170782888728,213,0 +170782888776,213,0 +170782888824,213,0 +170782888872,213,0 +170782888920,213,0 +170782888970,213,0 +170782889017,214,0 +170782889065,214,0 +170782889113,213,0 +170782889163,214,0 +170782889211,214,0 +170782889260,214,0 +170782889308,214,0 +170782889356,214,0 +170782889404,214,0 +170782889452,214,0 +170782889502,214,0 +170782889550,214,0 +170782889597,213,0 +170782889645,213,0 +170782889693,213,0 +170782889743,213,0 +170782889791,214,0 +170782889840,213,0 +170782889888,214,0 +170782889936,213,0 +170782889984,213,0 +170782890032,214,0 +170782890080,214,0 +170782890130,214,0 +170782890178,214,0 +170782890226,214,0 +170782890273,214,0 +170782890321,214,0 +170782890369,214,0 +170782890417,214,0 +170782890465,214,0 +170782890515,213,0 +170782890563,213,0 +170782890612,213,0 +170782890660,213,0 +170782890708,213,0 +170782890758,213,0 +170782890806,213,0 +170782890854,214,0 +170782890903,214,0 +170782890953,214,0 +170782891001,214,0 +170782891049,214,0 +170782891097,214,0 +170782891146,214,0 +170782891194,214,0 +170782891242,214,0 +170782891290,214,0 +170782891338,214,0 +170782891386,214,0 +170782891436,213,0 +170782891485,213,0 +170782891533,213,0 +170782891583,213,0 +170782891631,213,0 +170782891678,213,0 +170782891726,213,0 +170782891774,214,0 +170782891822,214,0 +170782891870,214,0 +170782891918,214,0 +170782891966,214,0 +170782892014,214,0 +170782892062,214,0 +170782892110,214,0 +170782892158,214,0 +170782892206,215,0 +170782892254,214,0 +170782892302,214,0 +170782892352,213,0 +170782892401,213,0 +170782892451,214,0 +170782892499,213,0 +170782892546,214,0 +170782892596,214,0 +170782892644,214,0 +170782892692,214,0 +170782892741,214,0 +170782892789,214,0 +170782892837,214,0 +170782892885,214,0 +170782892933,215,0 +170782892983,214,0 +170782893031,215,0 +170782893080,214,0 +170782893128,215,0 +170782893176,214,0 +170782893224,213,0 +170782893272,214,0 +170782893322,213,0 +170782893370,213,0 +170782893419,214,0 +170782893467,214,0 +170782893515,214,0 +170782893563,214,0 +170782893612,214,0 +170782893660,214,0 +170782893708,214,0 +170782893758,214,0 +170782893807,214,0 +170782893855,214,0 +170782893905,214,0 +170782893953,215,0 +170782894002,215,0 +170782894050,214,0 +170782894100,214,0 +170782894148,213,0 +170782894197,213,0 +170782894245,213,0 +170782894293,213,0 +170782894343,214,0 +170782894392,214,0 +170782894440,214,0 +170782894488,214,0 +170782894537,214,0 +170782894587,214,0 +170782894635,214,0 +170782894685,214,0 +170782894732,214,0 +170782894782,214,0 +170782894830,214,0 +170782894878,214,0 +170782894926,214,0 +170782894975,214,0 +170782895025,214,0 +170782895075,213,0 +170782895124,213,0 +170782895174,213,0 +170782895223,213,0 +170782895273,214,0 +170782895322,213,0 +170782895370,214,0 +170782895420,214,0 +170782895468,214,0 +170782895516,214,0 +170782895565,214,0 +170782895613,214,0 +170782895661,214,0 +170782895711,214,0 +170782895758,214,0 +170782895806,214,0 +170782895854,214,0 +170782895902,214,0 +170782895950,213,0 +170782895998,213,0 +170782896047,213,0 +170782896095,213,0 +170782896143,214,0 +170782896191,213,0 +170782896241,214,0 +170782896289,214,0 +170782896337,214,0 +170782896385,214,0 +170782896434,214,0 +170782896482,214,0 +170782896530,214,0 +170782896580,214,0 +170782896628,214,0 +170782896676,214,0 +170782896725,214,0 +170782896773,214,0 +170782896821,214,0 +170782896871,213,0 +170782896920,213,0 +170782896970,213,0 +170782897018,213,0 +170782897067,213,0 +170782897117,213,0 +170782897165,213,0 +170782897214,214,0 +170782897264,214,0 +170782897312,213,0 +170782897360,214,0 +170782897409,214,0 +170782897457,214,0 +170782897505,214,0 +170782897553,214,0 +170782897602,214,0 +170782897650,214,0 +170782897698,214,0 +170782897746,214,0 +170782897794,213,0 +170782897844,213,0 +170782897893,213,0 +170782897943,213,0 +170782897991,213,0 +170782898039,213,0 +170782898087,213,0 +170782898135,213,0 +170782898183,214,0 +170782898231,214,0 +170782898279,214,0 +170782898328,214,0 +170782898376,214,0 +170782898424,214,0 +170782898474,214,0 +170782898522,214,0 +170782898569,214,0 +170782898617,214,0 +170782898665,213,0 +170782898713,213,0 +170782898761,213,0 +170782898811,213,0 +170782898859,213,0 +170782898908,213,0 +170782898956,213,0 +170782899006,214,0 +170782899055,214,0 +170782899105,214,0 +170782899154,214,0 +170782899204,214,0 +170782899253,214,0 +170782899301,214,0 +170782899351,214,0 +170782899399,214,0 +170782899447,215,0 +170782899496,215,0 +170782899544,214,0 +170782899592,213,0 +170782899640,213,0 +170782899688,213,0 +170782899738,213,0 +170782899787,213,0 +170782899837,213,0 +170782899886,213,0 +170782899934,213,0 +170782899982,214,0 +170782900030,214,0 +170782900080,214,0 +170782900129,214,0 +170782900179,214,0 +170782900227,214,0 +170782900275,214,0 +170782900323,214,0 +170782900371,214,0 +170782900419,214,0 +170782900468,213,0 +170782900516,213,0 +170782900564,213,0 +170782900614,213,0 +170782900663,213,0 +170782900711,213,0 +170782900761,213,0 +170782900809,214,0 +170782900857,214,0 +170782900906,214,0 +170782900956,214,0 +170782901004,214,0 +170782901054,214,0 +170782901102,214,0 +170782901151,214,0 +170782901199,214,0 +170782901247,214,0 +170782901295,214,0 +170782901344,214,0 +170782901392,213,0 +170782901440,213,0 +170782901490,213,0 +170782901539,213,0 +170782901589,213,0 +170782901638,213,0 +170782901686,213,0 +170782901734,213,0 +170782901784,213,0 +170782901833,213,0 +170782901883,214,0 +170782901931,214,0 +170782901980,214,0 +170782902028,214,0 +170782902078,214,0 +170782902127,214,0 +170782902175,214,0 +170782902223,214,0 +170782902271,213,0 +170782902321,213,0 +170782902369,213,0 +170782902417,214,0 +170782902465,213,0 +170782902513,214,0 +170782902560,213,0 +170782902608,214,0 +170782902656,214,0 +170782902704,214,0 +170782902752,214,0 +170782902800,214,0 +170782902850,214,0 +170782902899,214,0 +170782902947,214,0 +170782902995,214,0 +170782903045,214,0 +170782903093,214,0 +170782903141,214,0 +170782903189,213,0 +170782903236,213,0 +170782903284,213,0 +170782903332,214,0 +170782903380,213,0 +170782903430,214,0 +170782903479,214,0 +170782903527,214,0 +170782903575,214,0 +170782903625,214,0 +170782903673,214,0 +170782903722,214,0 +170782903770,214,0 +170782903819,214,0 +170782903869,214,0 +170782903919,214,0 +170782903966,214,0 +170782904016,214,0 +170782904065,214,0 +170782904115,213,0 +170782904164,214,0 +170782904212,213,0 +170782904262,214,0 +170782904310,214,0 +170782904359,214,0 +170782904407,214,0 +170782904455,214,0 +170782904503,214,0 +170782904552,214,0 +170782904600,214,0 +170782904650,214,0 +170782904699,214,0 +170782904747,214,0 +170782904795,214,0 +170782904845,215,0 +170782904894,214,0 +170782904944,214,0 +170782904992,214,0 +170782905040,213,0 +170782905088,213,0 +170782905136,213,0 +170782905183,214,0 +170782905233,214,0 +170782905281,214,0 +170782905329,214,0 +170782905378,214,0 +170782905426,214,0 +170782905474,214,0 +170782905524,214,0 +170782905574,214,0 +170782905622,214,0 +170782905671,214,0 +170782905719,214,0 +170782905767,214,0 +170782905815,214,0 +170782905863,214,0 +170782905911,213,0 +170782905960,213,0 +170782906010,213,0 +170782906058,213,0 +170782906107,214,0 +170782906155,214,0 +170782906205,214,0 +170782906254,214,0 +170782906302,214,0 +170782906352,214,0 +170782906400,214,0 +170782906449,214,0 +170782906497,214,0 +170782906547,214,0 +170782906596,214,0 +170782906644,214,0 +170782906692,214,0 +170782906740,214,0 +170782906789,214,0 +170782906839,214,0 +170782906887,214,0 +170782906937,214,0 +170782906986,214,0 +170782907034,214,0 +170782907084,214,0 +170782907131,214,0 +170782907181,214,0 +170782907229,214,0 +170782907278,214,0 +170782907326,214,0 +170782907374,215,0 +170782907424,214,0 +170782907472,215,0 +170782907520,214,0 +170782907568,214,0 +170782907616,214,0 +170782907664,214,0 +170782907712,214,0 +170782907759,214,0 +170782907809,214,0 +170782907857,214,0 +170782907905,214,0 +170782907954,214,0 +170782908004,214,0 +170782908053,214,0 +170782908101,214,0 +170782908151,215,0 +170782908199,214,0 +170782908247,214,0 +170782908296,214,0 +170782908346,214,0 +170782908395,214,0 +170782908443,215,0 +170782908493,214,0 +170782908541,214,0 +170782908589,213,0 +170782908638,213,0 +170782908686,213,0 +170782908734,214,0 +170782908782,213,0 +170782908831,214,0 +170782908881,214,0 +170782908929,214,0 +170782908977,213,0 +170782909025,214,0 +170782909074,214,0 +170782909122,214,0 +170782909172,214,0 +170782909220,214,0 +170782909269,214,0 +170782909319,214,0 +170782909367,214,0 +170782909415,214,0 +170782909463,214,0 +170782909511,213,0 +170782909560,213,0 +170782909610,213,0 +170782909657,213,0 +170782909705,213,0 +170782909753,214,0 +170782909803,214,0 +170782909852,214,0 +170782909902,214,0 +170782909950,214,0 +170782909998,214,0 +170782910046,214,0 +170782910093,214,0 +170782910141,214,0 +170782910189,214,0 +170782910237,214,0 +170782910285,214,0 +170782910333,214,0 +170782910381,215,0 +170782910430,213,0 +170782910478,213,0 +170782910526,213,0 +170782910574,213,0 +170782910621,213,0 +170782910669,214,0 +170782910717,214,0 +170782910765,214,0 +170782910813,214,0 +170782910861,214,0 +170782910908,214,0 +170782910958,214,0 +170782911006,214,0 +170782911054,214,0 +170782911102,214,0 +170782911150,214,0 +170782911199,214,0 +170782911247,214,0 +170782911297,213,0 +170782911345,213,0 +170782911394,213,0 +170782911444,213,0 +170782911493,213,0 +170782911541,213,0 +170782911591,213,0 +170782911640,214,0 +170782911688,213,0 +170782911736,213,0 +170782911784,214,0 +170782911832,214,0 +170782911880,214,0 +170782911928,214,0 +170782911976,214,0 +170782912025,214,0 +170782912075,214,0 +170782912123,214,0 +170782912171,214,0 +170782912220,213,0 +170782912268,213,0 +170782912316,213,0 +170782912364,213,0 +170782912414,213,0 +170782912464,213,0 +170782912512,213,0 +170782912559,213,0 +170782912607,213,0 +170782912657,213,0 +170782912705,213,0 +170782912753,213,0 +170782912801,213,0 +170782912848,213,0 +170782912896,213,0 +170782912946,213,0 +170782912994,213,0 +170782913041,214,0 +170782913091,213,0 +170782913139,214,0 +170782913187,214,0 +170782913235,214,0 +170782913283,214,0 +170782913331,214,0 +170782913379,214,0 +170782913426,214,0 +170782913474,214,0 +170782913522,214,0 +170782913570,213,0 +170782913618,213,0 +170782913667,213,0 +170782913715,213,0 +170782913763,213,0 +170782913811,213,0 +170782913859,213,0 +170782913907,214,0 +170782913956,214,0 +170782914006,214,0 +170782914054,214,0 +170782914102,214,0 +170782914150,214,0 +170782914199,214,0 +170782914247,214,0 +170782914295,214,0 +170782914343,214,0 +170782914391,214,0 +170782914439,214,0 +170782914487,213,0 +170782914535,213,0 +170782914583,213,0 +170782914631,213,0 +170782914680,213,0 +170782914728,213,0 +170782914776,213,0 +170782914826,213,0 +170782914874,214,0 +170782914921,214,0 +170782914971,214,0 +170782915020,214,0 +170782915068,214,0 +170782915116,214,0 +170782915166,214,0 +170782915214,214,0 +170782915263,214,0 +170782915313,214,0 +170782915360,213,0 +170782915408,213,0 +170782915456,213,0 +170782915504,213,0 +170782915552,213,0 +170782915602,213,0 +170782915650,213,0 +170782915698,213,0 +170782915747,213,0 +170782915795,214,0 +170782915843,214,0 +170782915891,214,0 +170782915939,214,0 +170782915988,214,0 +170782916036,214,0 +170782916084,214,0 +170782916134,214,0 +170782916182,214,0 +170782916229,214,0 +170782916277,213,0 +170782916325,213,0 +170782916373,213,0 +170782916421,213,0 +170782916471,213,0 +170782916520,213,0 +170782916568,213,0 +170782916616,213,0 +170782916665,214,0 +170782916715,214,0 +170782916764,214,0 +170782916812,214,0 +170782916860,214,0 +170782916908,214,0 +170782916956,214,0 +170782917004,214,0 +170782917052,214,0 +170782917099,214,0 +170782917147,213,0 +170782917195,213,0 +170782917244,213,0 +170782917292,213,0 +170782917340,213,0 +170782917390,213,0 +170782917438,213,0 +170782917485,213,0 +170782917535,213,0 +170782917583,213,0 +170782917631,214,0 +170782917679,214,0 +170782917727,214,0 +170782917775,214,0 +170782917824,214,0 +170782917872,214,0 +170782917921,214,0 +170782917969,214,0 +170782918017,214,0 +170782918065,213,0 +170782918113,213,0 +170782918163,213,0 +170782918212,213,0 +170782918261,213,0 +170782918309,213,0 +170782918357,213,0 +170782918405,213,0 +170782918453,213,0 +170782918501,213,0 +170782918549,214,0 +170782918597,214,0 +170782918645,214,0 +170782918693,214,0 +170782918741,214,0 +170782918790,214,0 +170782918838,214,0 +170782918888,214,0 +170782918937,213,0 +170782918985,213,0 +170782919035,213,0 +170782919083,213,0 +170782919132,213,0 +170782919180,214,0 +170782919228,214,0 +170782919278,213,0 +170782919327,214,0 +170782919377,214,0 +170782919426,214,0 +170782919474,214,0 +170782919522,214,0 +170782919570,214,0 +170782919620,214,0 +170782919667,214,0 +170782919715,214,0 +170782919763,214,0 +170782919811,214,0 +170782919859,213,0 +170782919909,213,0 +170782919957,213,0 +170782920006,213,0 diff --git a/laser_value/0213-23.csv b/laser_value/0213-23.csv new file mode 100644 index 0000000..ae79977 --- /dev/null +++ b/laser_value/0213-23.csv @@ -0,0 +1,7446 @@ +timestamp,laser_value,event +170782920055,213,0 +170782920103,214,0 +170782920151,213,0 +170782920199,213,0 +170782920247,214,0 +170782920294,214,0 +170782920342,214,0 +170782920392,214,0 +170782920441,214,0 +170782920489,214,0 +170782920537,214,0 +170782920585,214,0 +170782920633,214,0 +170782920682,214,0 +170782920730,213,0 +170782920778,213,0 +170782920825,213,0 +170782920873,213,0 +170782920921,213,0 +170782920969,213,0 +170782921018,214,0 +170782921066,214,0 +170782921114,214,0 +170782921162,214,0 +170782921210,214,0 +170782921259,214,0 +170782921307,214,0 +170782921357,214,0 +170782921405,214,0 +170782921453,214,0 +170782921501,214,0 +170782921549,214,0 +170782921597,214,0 +170782921646,213,0 +170782921694,213,0 +170782921742,213,0 +170782921790,213,0 +170782921838,214,0 +170782921886,213,0 +170782921934,214,0 +170782921983,214,0 +170782922031,214,0 +170782922079,214,0 +170782922127,214,0 +170782922175,214,0 +170782922223,214,0 +170782922272,214,0 +170782922320,214,0 +170782922370,214,0 +170782922419,214,0 +170782922467,214,0 +170782922515,214,0 +170782922563,213,0 +170782922613,213,0 +170782922662,213,0 +170782922710,214,0 +170782922758,214,0 +170782922806,214,0 +170782922854,214,0 +170782922902,214,0 +170782922950,214,0 +170782922998,214,0 +170782923047,214,0 +170782923097,214,0 +170782923145,214,0 +170782923192,214,0 +170782923242,214,0 +170782923290,214,0 +170782923339,214,0 +170782923387,214,0 +170782923435,213,0 +170782923483,213,0 +170782923531,213,0 +170782923579,213,0 +170782923627,213,0 +170782923676,213,0 +170782923724,214,0 +170782923772,213,0 +170782923820,214,0 +170782923868,214,0 +170782923916,214,0 +170782923964,214,0 +170782924012,214,0 +170782924060,214,0 +170782924108,214,0 +170782924156,214,0 +170782924203,214,0 +170782924251,214,0 +170782924299,214,0 +170782924349,213,0 +170782924398,213,0 +170782924448,213,0 +170782924497,213,0 +170782924545,213,0 +170782924593,214,0 +170782924642,213,0 +170782924692,214,0 +170782924740,214,0 +170782924788,214,0 +170782924836,214,0 +170782924884,214,0 +170782924933,214,0 +170782924983,214,0 +170782925030,214,0 +170782925078,214,0 +170782925128,215,0 +170782925176,214,0 +170782925225,213,0 +170782925275,213,0 +170782925324,213,0 +170782925372,213,0 +170782925420,213,0 +170782925468,213,0 +170782925517,213,0 +170782925565,213,0 +170782925613,213,0 +170782925661,214,0 +170782925709,213,0 +170782925757,214,0 +170782925805,214,0 +170782925855,214,0 +170782925903,214,0 +170782925950,214,0 +170782925998,214,0 +170782926046,214,0 +170782926094,214,0 +170782926142,213,0 +170782926191,213,0 +170782926239,213,0 +170782926287,213,0 +170782926334,213,0 +170782926382,213,0 +170782926430,214,0 +170782926478,213,0 +170782926526,214,0 +170782926574,214,0 +170782926623,214,0 +170782926671,214,0 +170782926720,214,0 +170782926768,214,0 +170782926816,214,0 +170782926866,214,0 +170782926914,214,0 +170782926962,214,0 +170782927010,214,0 +170782927059,213,0 +170782927109,213,0 +170782927157,213,0 +170782927205,213,0 +170782927252,214,0 +170782927300,214,0 +170782927348,214,0 +170782927396,214,0 +170782927444,214,0 +170782927492,214,0 +170782927540,214,0 +170782927587,214,0 +170782927635,214,0 +170782927683,214,0 +170782927733,214,0 +170782927780,214,0 +170782927828,214,0 +170782927876,214,0 +170782927924,213,0 +170782927972,213,0 +170782928019,213,0 +170782928069,213,0 +170782928117,214,0 +170782928165,214,0 +170782928213,214,0 +170782928262,214,0 +170782928310,214,0 +170782928360,214,0 +170782928408,214,0 +170782928456,214,0 +170782928504,214,0 +170782928552,214,0 +170782928601,214,0 +170782928651,214,0 +170782928699,214,0 +170782928747,214,0 +170782928794,214,0 +170782928842,213,0 +170782928890,213,0 +170782928938,214,0 +170782928988,214,0 +170782929036,214,0 +170782929085,214,0 +170782929133,214,0 +170782929183,214,0 +170782929230,214,0 +170782929278,214,0 +170782929326,214,0 +170782929374,214,0 +170782929422,214,0 +170782929472,214,0 +170782929520,214,0 +170782929569,214,0 +170782929617,214,0 +170782929666,214,0 +170782929714,213,0 +170782929762,213,0 +170782929810,213,0 +170782929858,213,0 +170782929905,213,0 +170782929953,214,0 +170782930001,214,0 +170782930049,214,0 +170782930097,214,0 +170782930144,214,0 +170782930192,214,0 +170782930240,214,0 +170782930288,214,0 +170782930337,214,0 +170782930387,214,0 +170782930434,214,0 +170782930482,214,0 +170782930530,214,0 +170782930578,214,0 +170782930626,213,0 +170782930674,213,0 +170782930723,213,0 +170782930771,213,0 +170782930821,213,0 +170782930868,213,0 +170782930918,213,0 +170782930967,214,0 +170782931017,214,0 +170782931065,214,0 +170782931113,214,0 +170782931161,214,0 +170782931209,214,0 +170782931258,214,0 +170782931306,214,0 +170782931355,214,0 +170782931403,214,0 +170782931453,214,0 +170782931502,214,0 +170782931552,213,0 +170782931600,213,0 +170782931647,213,0 +170782931695,213,0 +170782931743,213,0 +170782931791,213,0 +170782931841,213,0 +170782931888,213,0 +170782931938,213,0 +170782931987,214,0 +170782932035,214,0 +170782932083,214,0 +170782932131,214,0 +170782932179,214,0 +170782932227,214,0 +170782932274,214,0 +170782932322,214,0 +170782932370,214,0 +170782932418,213,0 +170782932468,213,0 +170782932517,213,0 +170782932565,213,0 +170782932612,213,0 +170782932660,213,0 +170782932708,213,0 +170782932757,214,0 +170782932805,213,0 +170782932855,213,0 +170782932902,213,0 +170782932950,213,0 +170782932998,214,0 +170782933046,214,0 +170782933095,214,0 +170782933143,214,0 +170782933191,214,0 +170782933239,214,0 +170782933288,214,0 +170782933338,213,0 +170782933386,213,0 +170782933435,213,0 +170782933483,213,0 +170782933531,213,0 +170782933580,213,0 +170782933628,213,0 +170782933676,213,0 +170782933724,213,0 +170782933774,213,0 +170782933822,213,0 +170782933871,214,0 +170782933919,214,0 +170782933968,214,0 +170782934016,214,0 +170782934064,214,0 +170782934112,214,0 +170782934161,214,0 +170782934209,213,0 +170782934257,213,0 +170782934307,213,0 +170782934355,213,0 +170782934403,213,0 +170782934450,213,0 +170782934498,213,0 +170782934546,213,0 +170782934594,213,0 +170782934642,213,0 +170782934692,213,0 +170782934741,214,0 +170782934789,214,0 +170782934837,214,0 +170782934886,214,0 +170782934934,214,0 +170782934982,214,0 +170782935030,214,0 +170782935078,214,0 +170782935126,213,0 +170782935175,213,0 +170782935225,213,0 +170782935273,213,0 +170782935322,213,0 +170782935370,213,0 +170782935419,213,0 +170782935467,213,0 +170782935515,213,0 +170782935565,213,0 +170782935614,213,0 +170782935662,214,0 +170782935712,214,0 +170782935760,214,0 +170782935808,214,0 +170782935855,214,0 +170782935903,214,0 +170782935953,214,0 +170782936001,214,0 +170782936048,213,0 +170782936096,213,0 +170782936144,213,0 +170782936192,213,0 +170782936240,213,0 +170782936289,213,0 +170782936337,213,0 +170782936384,213,0 +170782936432,214,0 +170782936480,214,0 +170782936529,214,0 +170782936577,214,0 +170782936625,214,0 +170782936673,214,0 +170782936721,214,0 +170782936769,214,0 +170782936817,214,0 +170782936866,214,0 +170782936914,213,0 +170782936964,213,0 +170782937011,213,0 +170782937059,213,0 +170782937107,213,0 +170782937155,213,0 +170782937205,213,0 +170782937253,213,0 +170782937302,213,0 +170782937350,214,0 +170782937398,214,0 +170782937446,214,0 +170782937495,214,0 +170782937545,214,0 +170782937594,214,0 +170782937642,214,0 +170782937690,214,0 +170782937738,214,0 +170782937786,214,0 +170782937834,213,0 +170782937882,213,0 +170782937929,213,0 +170782937979,213,0 +170782938027,213,0 +170782938075,213,0 +170782938122,214,0 +170782938170,214,0 +170782938218,214,0 +170782938266,214,0 +170782938314,214,0 +170782938361,214,0 +170782938409,214,0 +170782938457,214,0 +170782938506,214,0 +170782938554,214,0 +170782938602,214,0 +170782938650,214,0 +170782938698,213,0 +170782938746,213,0 +170782938795,213,0 +170782938843,213,0 +170782938892,213,0 +170782938940,213,0 +170782938988,213,0 +170782939036,213,0 +170782939084,214,0 +170782939132,214,0 +170782939180,214,0 +170782939227,214,0 +170782939277,214,0 +170782939325,214,0 +170782939373,214,0 +170782939420,214,0 +170782939470,214,0 +170782939518,214,0 +170782939566,214,0 +170782939615,213,0 +170782939663,213,0 +170782939711,213,0 +170782939760,213,0 +170782939808,213,0 +170782939858,213,0 +170782939906,213,0 +170782939954,213,0 +170782940003,213,0 +170782940053,214,0 +170782940101,214,0 +170782940150,214,0 +170782940200,214,0 +170782940247,214,0 +170782940295,214,0 +170782940343,214,0 +170782940393,214,0 +170782940441,214,0 +170782940488,214,0 +170782940536,213,0 +170782940586,213,0 +170782940634,213,0 +170782940683,213,0 +170782940731,213,0 +170782940780,213,0 +170782940830,213,0 +170782940879,213,0 +170782940929,213,0 +170782940977,214,0 +170782941025,214,0 +170782941073,214,0 +170782941122,214,0 +170782941170,214,0 +170782941218,214,0 +170782941267,214,0 +170782941317,214,0 +170782941366,214,0 +170782941414,213,0 +170782941462,213,0 +170782941510,213,0 +170782941558,213,0 +170782941607,213,0 +170782941655,213,0 +170782941705,213,0 +170782941753,213,0 +170782941801,213,0 +170782941848,213,0 +170782941896,214,0 +170782941944,214,0 +170782941992,214,0 +170782942042,214,0 +170782942091,214,0 +170782942139,214,0 +170782942187,214,0 +170782942235,214,0 +170782942283,214,0 +170782942331,213,0 +170782942379,213,0 +170782942428,213,0 +170782942476,213,0 +170782942524,213,0 +170782942572,213,0 +170782942620,213,0 +170782942668,213,0 +170782942717,213,0 +170782942765,213,0 +170782942813,213,0 +170782942861,213,0 +170782942910,213,0 +170782942958,213,0 +170782943006,213,0 +170782943054,213,0 +170782943103,214,0 +170782943151,214,0 +170782943199,213,0 +170782943247,213,0 +170782943295,213,0 +170782943343,213,0 +170782943392,213,0 +170782943440,213,0 +170782943488,213,0 +170782943536,213,0 +170782943583,213,0 +170782943631,213,0 +170782943679,213,0 +170782943727,214,0 +170782943775,214,0 +170782943823,214,0 +170782943870,214,0 +170782943918,214,0 +170782943966,214,0 +170782944014,214,0 +170782944064,214,0 +170782944111,213,0 +170782944159,213,0 +170782944207,213,0 +170782944255,213,0 +170782944303,213,0 +170782944351,213,0 +170782944399,213,0 +170782944448,213,0 +170782944496,213,0 +170782944544,213,0 +170782944592,213,0 +170782944641,214,0 +170782944691,214,0 +170782944739,214,0 +170782944787,214,0 +170782944835,214,0 +170782944884,214,0 +170782944934,214,0 +170782944983,213,0 +170782945031,213,0 +170782945079,213,0 +170782945128,213,0 +170782945178,213,0 +170782945227,213,0 +170782945277,213,0 +170782945326,213,0 +170782945374,213,0 +170782945422,213,0 +170782945470,213,0 +170782945518,213,0 +170782945568,213,0 +170782945616,213,0 +170782945665,214,0 +170782945713,214,0 +170782945761,213,0 +170782945809,214,0 +170782945857,214,0 +170782945906,213,0 +170782945954,213,0 +170782946004,213,0 +170782946053,213,0 +170782946101,213,0 +170782946149,213,0 +170782946197,213,0 +170782946245,213,0 +170782946293,213,0 +170782946342,214,0 +170782946390,213,0 +170782946438,214,0 +170782946487,214,0 +170782946537,214,0 +170782946586,214,0 +170782946636,214,0 +170782946685,214,0 +170782946733,214,0 +170782946781,213,0 +170782946831,213,0 +170782946879,213,0 +170782946927,213,0 +170782946974,213,0 +170782947024,213,0 +170782947072,213,0 +170782947120,213,0 +170782947168,213,0 +170782947216,213,0 +170782947265,213,0 +170782947313,214,0 +170782947363,214,0 +170782947412,214,0 +170782947461,214,0 +170782947509,214,0 +170782947557,214,0 +170782947605,214,0 +170782947653,214,0 +170782947701,213,0 +170782947751,213,0 +170782947798,213,0 +170782947848,213,0 +170782947896,213,0 +170782947944,213,0 +170782947992,213,0 +170782948040,213,0 +170782948088,213,0 +170782948136,213,0 +170782948185,213,0 +170782948233,213,0 +170782948283,213,0 +170782948332,214,0 +170782948380,214,0 +170782948428,214,0 +170782948477,214,0 +170782948525,214,0 +170782948575,213,0 +170782948624,213,0 +170782948674,213,0 +170782948723,213,0 +170782948771,213,0 +170782948821,213,0 +170782948870,213,0 +170782948920,213,0 +170782948967,213,0 +170782949015,214,0 +170782949063,214,0 +170782949113,214,0 +170782949162,214,0 +170782949210,214,0 +170782949258,214,0 +170782949307,214,0 +170782949357,214,0 +170782949407,214,0 +170782949454,214,0 +170782949504,213,0 +170782949552,213,0 +170782949601,213,0 +170782949649,213,0 +170782949697,213,0 +170782949745,214,0 +170782949793,214,0 +170782949841,214,0 +170782949889,214,0 +170782949937,214,0 +170782949985,214,0 +170782950033,214,0 +170782950082,214,0 +170782950130,215,0 +170782950178,214,0 +170782950226,214,0 +170782950275,214,0 +170782950323,214,0 +170782950373,213,0 +170782950422,213,0 +170782950472,213,0 +170782950519,214,0 +170782950567,214,0 +170782950615,214,0 +170782950663,214,0 +170782950711,214,0 +170782950759,214,0 +170782950807,214,0 +170782950856,214,0 +170782950904,214,0 +170782950952,214,0 +170782951002,214,0 +170782951050,214,0 +170782951099,214,0 +170782951147,214,0 +170782951195,214,0 +170782951244,214,0 +170782951292,213,0 +170782951342,213,0 +170782951391,214,0 +170782951439,214,0 +170782951487,214,0 +170782951535,214,0 +170782951585,214,0 +170782951632,214,0 +170782951680,214,0 +170782951728,214,0 +170782951778,214,0 +170782951827,214,0 +170782951875,214,0 +170782951923,215,0 +170782951973,215,0 +170782952021,214,0 +170782952069,214,0 +170782952118,214,0 +170782952166,213,0 +170782952214,213,0 +170782952262,214,0 +170782952310,214,0 +170782952358,214,0 +170782952406,214,0 +170782952454,214,0 +170782952502,213,0 +170782952549,214,0 +170782952597,214,0 +170782952645,214,0 +170782952693,214,0 +170782952741,214,0 +170782952789,214,0 +170782952837,214,0 +170782952885,214,0 +170782952933,214,0 +170782952982,214,0 +170782953030,214,0 +170782953080,213,0 +170782953128,213,0 +170782953177,213,0 +170782953227,213,0 +170782953275,213,0 +170782953324,213,0 +170782953372,213,0 +170782953422,213,0 +170782953470,213,0 +170782953518,214,0 +170782953566,213,0 +170782953614,214,0 +170782953662,213,0 +170782953710,214,0 +170782953758,214,0 +170782953805,214,0 +170782953853,214,0 +170782953901,214,0 +170782953951,214,0 +170782953999,213,0 +170782954047,213,0 +170782954096,213,0 +170782954144,213,0 +170782954194,213,0 +170782954243,214,0 +170782954293,214,0 +170782954342,214,0 +170782954390,214,0 +170782954438,214,0 +170782954486,214,0 +170782954535,214,0 +170782954585,214,0 +170782954634,214,0 +170782954684,214,0 +170782954732,214,0 +170782954781,214,0 +170782954831,214,0 +170782954880,213,0 +170782954928,213,0 +170782954977,213,0 +170782955027,213,0 +170782955076,213,0 +170782955124,213,0 +170782955174,213,0 +170782955223,213,0 +170782955271,214,0 +170782955319,213,0 +170782955369,214,0 +170782955417,214,0 +170782955466,214,0 +170782955514,214,0 +170782955564,214,0 +170782955613,214,0 +170782955661,214,0 +170782955709,214,0 +170782955757,214,0 +170782955805,213,0 +170782955854,213,0 +170782955904,213,0 +170782955952,213,0 +170782956001,213,0 +170782956051,213,0 +170782956100,213,0 +170782956150,214,0 +170782956198,213,0 +170782956246,213,0 +170782956294,214,0 +170782956343,213,0 +170782956391,214,0 +170782956441,214,0 +170782956489,214,0 +170782956538,214,0 +170782956586,214,0 +170782956634,214,0 +170782956683,213,0 +170782956731,213,0 +170782956779,213,0 +170782956827,213,0 +170782956875,213,0 +170782956923,213,0 +170782956971,213,0 +170782957020,213,0 +170782957068,214,0 +170782957116,213,0 +170782957166,213,0 +170782957214,214,0 +170782957261,214,0 +170782957309,214,0 +170782957359,214,0 +170782957408,214,0 +170782957458,214,0 +170782957506,214,0 +170782957554,213,0 +170782957602,213,0 +170782957651,213,0 +170782957701,213,0 +170782957749,213,0 +170782957797,213,0 +170782957846,213,0 +170782957894,213,0 +170782957942,213,0 +170782957989,213,0 +170782958037,214,0 +170782958085,214,0 +170782958133,214,0 +170782958181,214,0 +170782958229,214,0 +170782958276,214,0 +170782958324,214,0 +170782958372,214,0 +170782958420,214,0 +170782958468,213,0 +170782958516,213,0 +170782958564,213,0 +170782958611,213,0 +170782958659,213,0 +170782958707,213,0 +170782958757,213,0 +170782958805,213,0 +170782958852,213,0 +170782958900,213,0 +170782958948,213,0 +170782958998,214,0 +170782959045,214,0 +170782959093,214,0 +170782959141,214,0 +170782959191,214,0 +170782959238,214,0 +170782959286,214,0 +170782959334,214,0 +170782959382,213,0 +170782959430,213,0 +170782959478,213,0 +170782959525,213,0 +170782959573,213,0 +170782959621,213,0 +170782959669,213,0 +170782959717,213,0 +170782959765,213,0 +170782959814,213,0 +170782959862,213,0 +170782959910,213,0 +170782959958,213,0 +170782960007,214,0 +170782960055,214,0 +170782960104,214,0 +170782960152,214,0 +170782960202,214,0 +170782960250,213,0 +170782960297,213,0 +170782960347,213,0 +170782960394,213,0 +170782960442,213,0 +170782960490,213,0 +170782960538,213,0 +170782960586,213,0 +170782960635,213,0 +170782960683,213,0 +170782960732,213,0 +170782960780,213,0 +170782960828,214,0 +170782960878,213,0 +170782960926,214,0 +170782960975,214,0 +170782961023,214,0 +170782961071,214,0 +170782961119,214,0 +170782961168,213,0 +170782961216,213,0 +170782961266,213,0 +170782961314,213,0 +170782961361,213,0 +170782961411,213,0 +170782961459,213,0 +170782961506,213,0 +170782961554,213,0 +170782961602,213,0 +170782961651,213,0 +170782961699,213,0 +170782961747,214,0 +170782961795,214,0 +170782961843,214,0 +170782961892,214,0 +170782961940,214,0 +170782961988,214,0 +170782962036,214,0 +170782962083,213,0 +170782962131,213,0 +170782962179,213,0 +170782962227,213,0 +170782962275,213,0 +170782962323,213,0 +170782962371,213,0 +170782962420,213,0 +170782962468,213,0 +170782962516,213,0 +170782962564,213,0 +170782962611,213,0 +170782962661,213,0 +170782962709,213,0 +170782962757,214,0 +170782962804,214,0 +170782962852,214,0 +170782962900,214,0 +170782962947,213,0 +170782962995,213,0 +170782963043,213,0 +170782963093,213,0 +170782963142,213,0 +170782963190,213,0 +170782963238,213,0 +170782963287,213,0 +170782963335,213,0 +170782963383,213,0 +170782963430,213,0 +170782963480,213,0 +170782963528,213,0 +170782963576,214,0 +170782963624,214,0 +170782963672,214,0 +170782963721,214,0 +170782963771,214,0 +170782963820,214,0 +170782963868,213,0 +170782963916,213,0 +170782963965,213,0 +170782964013,213,0 +170782964061,213,0 +170782964109,213,0 +170782964158,213,0 +170782964208,213,0 +170782964257,213,0 +170782964305,213,0 +170782964355,214,0 +170782964403,213,0 +170782964451,214,0 +170782964499,214,0 +170782964548,214,0 +170782964596,213,0 +170782964644,214,0 +170782964694,214,0 +170782964743,213,0 +170782964791,213,0 +170782964839,213,0 +170782964888,213,0 +170782964936,213,0 +170782964984,213,0 +170782965032,213,0 +170782965080,213,0 +170782965129,213,0 +170782965177,214,0 +170782965225,214,0 +170782965273,214,0 +170782965321,214,0 +170782965369,214,0 +170782965417,214,0 +170782965465,214,0 +170782965513,214,0 +170782965561,214,0 +170782965609,214,0 +170782965656,213,0 +170782965704,213,0 +170782965752,213,0 +170782965800,213,0 +170782965848,213,0 +170782965897,213,0 +170782965945,214,0 +170782965995,214,0 +170782966042,214,0 +170782966090,213,0 +170782966138,214,0 +170782966186,214,0 +170782966234,214,0 +170782966282,214,0 +170782966330,214,0 +170782966378,214,0 +170782966427,214,0 +170782966475,214,0 +170782966523,214,0 +170782966571,213,0 +170782966619,213,0 +170782966669,213,0 +170782966717,213,0 +170782966766,213,0 +170782966814,214,0 +170782966864,213,0 +170782966911,214,0 +170782966959,214,0 +170782967009,214,0 +170782967057,214,0 +170782967105,214,0 +170782967153,214,0 +170782967201,214,0 +170782967250,214,0 +170782967300,214,0 +170782967348,214,0 +170782967396,214,0 +170782967445,213,0 +170782967493,213,0 +170782967541,213,0 +170782967589,213,0 +170782967637,213,0 +170782967685,213,0 +170782967734,213,0 +170782967782,213,0 +170782967832,214,0 +170782967879,214,0 +170782967929,214,0 +170782967977,214,0 +170782968025,214,0 +170782968073,214,0 +170782968122,214,0 +170782968170,214,0 +170782968218,214,0 +170782968266,214,0 +170782968314,214,0 +170782968363,213,0 +170782968411,213,0 +170782968460,213,0 +170782968508,213,0 +170782968556,213,0 +170782968606,213,0 +170782968655,213,0 +170782968703,213,0 +170782968751,213,0 +170782968801,214,0 +170782968848,213,0 +170782968896,213,0 +170782968946,213,0 +170782968994,214,0 +170782969043,214,0 +170782969093,214,0 +170782969141,214,0 +170782969190,214,0 +170782969238,213,0 +170782969286,213,0 +170782969335,213,0 +170782969385,213,0 +170782969434,213,0 +170782969482,213,0 +170782969532,213,0 +170782969580,213,0 +170782969627,213,0 +170782969675,213,0 +170782969723,213,0 +170782969771,213,0 +170782969819,213,0 +170782969867,213,0 +170782969916,213,0 +170782969964,213,0 +170782970014,213,0 +170782970062,214,0 +170782970111,214,0 +170782970161,213,0 +170782970210,213,0 +170782970258,213,0 +170782970306,213,0 +170782970354,213,0 +170782970402,213,0 +170782970449,213,0 +170782970497,213,0 +170782970545,213,0 +170782970593,213,0 +170782970641,213,0 +170782970689,214,0 +170782970736,214,0 +170782970784,213,0 +170782970832,214,0 +170782970880,214,0 +170782970928,213,0 +170782970976,214,0 +170782971024,213,0 +170782971072,213,0 +170782971121,213,0 +170782971169,213,0 +170782971217,213,0 +170782971265,213,0 +170782971313,213,0 +170782971360,213,0 +170782971410,213,0 +170782971458,213,0 +170782971506,214,0 +170782971553,213,0 +170782971603,214,0 +170782971651,213,0 +170782971698,214,0 +170782971746,214,0 +170782971794,214,0 +170782971844,214,0 +170782971891,214,0 +170782971939,213,0 +170782971987,213,0 +170782972037,213,0 +170782972084,213,0 +170782972132,213,0 +170782972182,213,0 +170782972230,213,0 +170782972279,213,0 +170782972327,214,0 +170782972375,214,0 +170782972425,214,0 +170782972474,214,0 +170782972524,214,0 +170782972573,214,0 +170782972621,214,0 +170782972671,214,0 +170782972720,214,0 +170782972768,214,0 +170782972818,214,0 +170782972865,213,0 +170782972913,213,0 +170782972961,213,0 +170782973011,213,0 +170782973060,213,0 +170782973108,213,0 +170782973156,214,0 +170782973204,214,0 +170782973252,214,0 +170782973300,214,0 +170782973348,214,0 +170782973397,214,0 +170782973445,214,0 +170782973493,214,0 +170782973541,214,0 +170782973590,214,0 +170782973638,214,0 +170782973686,214,0 +170782973734,213,0 +170782973782,213,0 +170782973830,213,0 +170782973880,213,0 +170782973928,213,0 +170782973975,213,0 +170782974025,213,0 +170782974073,213,0 +170782974122,214,0 +170782974172,214,0 +170782974220,214,0 +170782974269,214,0 +170782974317,214,0 +170782974365,214,0 +170782974413,214,0 +170782974461,214,0 +170782974509,214,0 +170782974556,214,0 +170782974604,214,0 +170782974652,213,0 +170782974700,213,0 +170782974748,213,0 +170782974796,213,0 +170782974844,213,0 +170782974892,213,0 +170782974940,213,0 +170782974989,213,0 +170782975037,213,0 +170782975085,214,0 +170782975133,213,0 +170782975181,214,0 +170782975230,214,0 +170782975278,214,0 +170782975326,214,0 +170782975374,214,0 +170782975424,214,0 +170782975472,214,0 +170782975520,214,0 +170782975568,213,0 +170782975615,213,0 +170782975665,213,0 +170782975714,213,0 +170782975762,213,0 +170782975812,213,0 +170782975860,213,0 +170782975908,213,0 +170782975955,213,0 +170782976005,213,0 +170782976053,214,0 +170782976102,214,0 +170782976150,214,0 +170782976198,214,0 +170782976246,214,0 +170782976294,214,0 +170782976342,214,0 +170782976390,214,0 +170782976437,213,0 +170782976487,213,0 +170782976535,213,0 +170782976583,213,0 +170782976632,213,0 +170782976680,213,0 +170782976728,213,0 +170782976776,213,0 +170782976826,213,0 +170782976873,213,0 +170782976921,213,0 +170782976969,213,0 +170782977017,213,0 +170782977067,213,0 +170782977115,213,0 +170782977163,214,0 +170782977210,213,0 +170782977258,214,0 +170782977306,214,0 +170782977356,213,0 +170782977405,213,0 +170782977453,213,0 +170782977503,213,0 +170782977552,213,0 +170782977600,213,0 +170782977648,213,0 +170782977696,213,0 +170782977746,213,0 +170782977795,213,0 +170782977843,213,0 +170782977891,213,0 +170782977940,213,0 +170782977988,213,0 +170782978036,213,0 +170782978086,214,0 +170782978133,214,0 +170782978183,214,0 +170782978231,213,0 +170782978280,213,0 +170782978330,213,0 +170782978379,213,0 +170782978427,213,0 +170782978475,213,0 +170782978523,213,0 +170782978573,213,0 +170782978620,213,0 +170782978668,213,0 +170782978718,213,0 +170782978767,213,0 +170782978815,213,0 +170782978865,214,0 +170782978913,214,0 +170782978961,214,0 +170782979010,214,0 +170782979060,214,0 +170782979109,214,0 +170782979157,213,0 +170782979205,213,0 +170782979255,213,0 +170782979302,213,0 +170782979350,213,0 +170782979400,213,0 +170782979448,213,0 +170782979496,213,0 +170782979545,214,0 +170782979593,213,0 +170782979641,214,0 +170782979689,214,0 +170782979737,214,0 +170782979787,214,0 +170782979836,214,0 +170782979884,214,0 +170782979933,214,0 +170782979981,214,0 +170782980031,213,0 +170782980080,213,0 +170782980130,213,0 +170782980178,213,0 +170782980227,213,0 +170782980277,213,0 +170782980326,213,0 +170782980376,214,0 +170782980425,213,0 +170782980473,214,0 +170782980521,214,0 +170782980569,214,0 +170782980617,214,0 +170782980666,214,0 +170782980714,214,0 +170782980762,214,0 +170782980810,214,0 +170782980858,214,0 +170782980906,214,0 +170782980954,213,0 +170782981003,213,0 +170782981053,214,0 +170782981102,213,0 +170782981150,213,0 +170782981198,213,0 +170782981246,214,0 +170782981294,214,0 +170782981343,214,0 +170782981391,214,0 +170782981439,214,0 +170782981489,214,0 +170782981538,214,0 +170782981586,214,0 +170782981634,214,0 +170782981684,214,0 +170782981731,214,0 +170782981781,214,0 +170782981829,213,0 +170782981877,213,0 +170782981925,213,0 +170782981974,213,0 +170782982024,213,0 +170782982073,213,0 +170782982123,214,0 +170782982171,214,0 +170782982219,214,0 +170782982266,214,0 +170782982316,214,0 +170782982365,214,0 +170782982415,214,0 +170782982465,214,0 +170782982512,214,0 +170782982560,214,0 +170782982608,214,0 +170782982656,214,0 +170782982704,214,0 +170782982752,213,0 +170782982802,213,0 +170782982851,213,0 +170782982901,213,0 +170782982949,213,0 +170782982996,213,0 +170782983046,213,0 +170782983095,213,0 +170782983145,214,0 +170782983193,214,0 +170782983241,214,0 +170782983289,214,0 +170782983337,214,0 +170782983386,214,0 +170782983434,214,0 +170782983482,214,0 +170782983530,214,0 +170782983578,214,0 +170782983626,213,0 +170782983674,213,0 +170782983723,213,0 +170782983771,213,0 +170782983819,213,0 +170782983868,213,0 +170782983916,213,0 +170782983964,213,0 +170782984012,213,0 +170782984062,213,0 +170782984111,213,0 +170782984159,213,0 +170782984209,213,0 +170782984257,214,0 +170782984306,214,0 +170782984356,214,0 +170782984404,214,0 +170782984453,214,0 +170782984501,214,0 +170782984549,213,0 +170782984598,213,0 +170782984646,213,0 +170782984694,213,0 +170782984742,213,0 +170782984790,213,0 +170782984840,213,0 +170782984889,213,0 +170782984937,213,0 +170782984985,213,0 +170782985034,213,0 +170782985084,213,0 +170782985132,213,0 +170782985181,213,0 +170782985229,213,0 +170782985279,213,0 +170782985328,213,0 +170782985376,214,0 +170782985426,213,0 +170782985475,213,0 +170782985525,213,0 +170782985574,213,0 +170782985624,213,0 +170782985672,213,0 +170782985721,213,0 +170782985771,213,0 +170782985819,213,0 +170782985867,213,0 +170782985915,213,0 +170782985964,213,0 +170782986014,214,0 +170782986062,214,0 +170782986111,214,0 +170782986161,214,0 +170782986209,214,0 +170782986257,214,0 +170782986306,214,0 +170782986354,213,0 +170782986402,213,0 +170782986451,213,0 +170782986499,213,0 +170782986549,213,0 +170782986598,213,0 +170782986646,213,0 +170782986696,213,0 +170782986745,213,0 +170782986793,214,0 +170782986841,214,0 +170782986889,214,0 +170782986937,214,0 +170782986985,214,0 +170782987032,214,0 +170782987080,214,0 +170782987129,214,0 +170782987177,214,0 +170782987225,213,0 +170782987275,213,0 +170782987324,213,0 +170782987374,213,0 +170782987422,213,0 +170782987470,213,0 +170782987519,213,0 +170782987567,213,0 +170782987615,213,0 +170782987663,213,0 +170782987712,213,0 +170782987762,214,0 +170782987811,214,0 +170782987861,214,0 +170782987910,214,0 +170782987958,214,0 +170782988008,214,0 +170782988056,214,0 +170782988104,214,0 +170782988153,213,0 +170782988202,213,0 +170782988252,213,0 +170782988301,213,0 +170782988349,213,0 +170782988397,213,0 +170782988445,213,0 +170782988495,213,0 +170782988544,213,0 +170782988594,213,0 +170782988643,213,0 +170782988691,213,0 +170782988739,213,0 +170782988787,214,0 +170782988835,214,0 +170782988882,214,0 +170782988930,214,0 +170782988978,214,0 +170782989026,213,0 +170782989074,213,0 +170782989122,213,0 +170782989171,213,0 +170782989221,213,0 +170782989270,213,0 +170782989318,213,0 +170782989366,213,0 +170782989414,213,0 +170782989464,213,0 +170782989511,213,0 +170782989561,213,0 +170782989609,213,0 +170782989658,213,0 +170782989706,214,0 +170782989756,214,0 +170782989804,214,0 +170782989851,214,0 +170782989899,214,0 +170782989947,213,0 +170782989995,213,0 +170782990043,213,0 +170782990091,213,0 +170782990139,213,0 +170782990187,213,0 +170782990235,213,0 +170782990282,213,0 +170782990330,213,0 +170782990380,213,0 +170782990428,213,0 +170782990477,213,0 +170782990527,214,0 +170782990576,214,0 +170782990626,214,0 +170782990675,214,0 +170782990725,214,0 +170782990773,214,0 +170782990820,214,0 +170782990868,213,0 +170782990918,213,0 +170782990966,213,0 +170782991015,213,0 +170782991065,213,0 +170782991114,213,0 +170782991162,213,0 +170782991212,213,0 +170782991260,213,0 +170782991308,213,0 +170782991356,213,0 +170782991405,214,0 +170782991453,214,0 +170782991502,214,0 +170782991552,214,0 +170782991600,214,0 +170782991648,214,0 +170782991696,214,0 +170782991744,213,0 +170782991791,213,0 +170782991839,213,0 +170782991887,213,0 +170782991937,213,0 +170782991985,213,0 +170782992033,213,0 +170782992081,213,0 +170782992130,213,0 +170782992178,213,0 +170782992226,213,0 +170782992274,213,0 +170782992322,213,0 +170782992372,213,0 +170782992419,213,0 +170782992467,214,0 +170782992515,214,0 +170782992563,214,0 +170782992611,214,0 +170782992659,213,0 +170782992707,213,0 +170782992755,213,0 +170782992804,213,0 +170782992852,213,0 +170782992900,213,0 +170782992948,213,0 +170782992995,213,0 +170782993043,213,0 +170782993091,213,0 +170782993139,213,0 +170782993188,213,0 +170782993236,214,0 +170782993284,214,0 +170782993332,214,0 +170782993380,213,0 +170782993428,214,0 +170782993477,214,0 +170782993525,214,0 +170782993575,213,0 +170782993624,213,0 +170782993672,213,0 +170782993720,213,0 +170782993768,213,0 +170782993817,213,0 +170782993865,213,0 +170782993915,213,0 +170782993964,213,0 +170782994012,213,0 +170782994062,213,0 +170782994110,214,0 +170782994158,214,0 +170782994206,214,0 +170782994255,214,0 +170782994303,214,0 +170782994351,214,0 +170782994399,214,0 +170782994448,214,0 +170782994496,213,0 +170782994546,213,0 +170782994595,213,0 +170782994645,214,0 +170782994692,213,0 +170782994742,213,0 +170782994791,214,0 +170782994841,214,0 +170782994890,214,0 +170782994938,214,0 +170782994986,214,0 +170782995034,214,0 +170782995082,214,0 +170782995130,214,0 +170782995178,214,0 +170782995226,214,0 +170782995274,214,0 +170782995323,214,0 +170782995371,213,0 +170782995419,213,0 +170782995467,213,0 +170782995514,213,0 +170782995562,213,0 +170782995610,213,0 +170782995658,214,0 +170782995706,214,0 +170782995754,214,0 +170782995802,214,0 +170782995850,214,0 +170782995899,214,0 +170782995947,214,0 +170782995997,214,0 +170782996044,214,0 +170782996094,214,0 +170782996142,214,0 +170782996191,214,0 +170782996241,214,0 +170782996289,213,0 +170782996337,213,0 +170782996385,213,0 +170782996433,213,0 +170782996482,213,0 +170782996532,213,0 +170782996581,213,0 +170782996630,214,0 +170782996678,214,0 +170782996726,214,0 +170782996775,214,0 +170782996823,214,0 +170782996872,214,0 +170782996920,214,0 +170782996968,214,0 +170782997016,214,0 +170782997064,214,0 +170782997112,214,0 +170782997161,214,0 +170782997209,213,0 +170782997257,213,0 +170782997305,213,0 +170782997352,213,0 +170782997400,213,0 +170782997450,213,0 +170782997498,213,0 +170782997547,214,0 +170782997595,213,0 +170782997643,213,0 +170782997690,214,0 +170782997740,214,0 +170782997788,214,0 +170782997836,214,0 +170782997884,214,0 +170782997931,214,0 +170782997981,214,0 +170782998029,214,0 +170782998076,214,0 +170782998124,213,0 +170782998172,213,0 +170782998220,213,0 +170782998268,213,0 +170782998316,213,0 +170782998365,213,0 +170782998413,213,0 +170782998462,213,0 +170782998512,213,0 +170782998560,213,0 +170782998610,213,0 +170782998658,214,0 +170782998707,214,0 +170782998755,214,0 +170782998805,214,0 +170782998854,214,0 +170782998903,214,0 +170782998951,214,0 +170782999001,213,0 +170782999049,213,0 +170782999098,213,0 +170782999146,213,0 +170782999194,213,0 +170782999242,213,0 +170782999290,213,0 +170782999337,213,0 +170782999385,213,0 +170782999435,213,0 +170782999483,213,0 +170782999531,214,0 +170782999579,214,0 +170782999626,214,0 +170782999676,214,0 +170782999724,213,0 +170782999772,213,0 +170782999819,213,0 +170782999867,214,0 +170782999915,214,0 +170782999963,213,0 +170783000012,213,0 +170783000060,213,0 +170783000110,213,0 +170783000158,212,0 +170783000207,213,0 +170783000255,213,0 +170783000304,213,0 +170783000352,213,0 +170783000402,213,0 +170783000450,213,0 +170783000498,213,0 +170783000547,213,0 +170783000595,213,0 +170783000643,213,0 +170783000690,213,0 +170783000738,213,0 +170783000786,213,0 +170783000834,213,0 +170783000882,213,0 +170783000930,213,0 +170783000977,213,0 +170783001025,213,0 +170783001073,213,0 +170783001121,213,0 +170783001169,213,0 +170783001217,213,0 +170783001265,213,0 +170783001312,213,0 +170783001362,214,0 +170783001410,213,0 +170783001458,214,0 +170783001506,213,0 +170783001555,214,0 +170783001603,214,0 +170783001651,214,0 +170783001699,214,0 +170783001747,213,0 +170783001796,213,0 +170783001844,213,0 +170783001892,213,0 +170783001939,213,0 +170783001987,213,0 +170783002035,213,0 +170783002083,213,0 +170783002133,213,0 +170783002181,213,0 +170783002228,213,0 +170783002276,214,0 +170783002324,214,0 +170783002372,214,0 +170783002420,214,0 +170783002469,214,0 +170783002517,214,0 +170783002565,214,0 +170783002613,214,0 +170783002661,213,0 +170783002709,213,0 +170783002758,213,0 +170783002806,213,0 +170783002854,213,0 +170783002902,213,0 +170783002950,213,0 +170783003000,213,0 +170783003047,213,0 +170783003095,213,0 +170783003143,213,0 +170783003191,213,0 +170783003239,214,0 +170783003287,214,0 +170783003335,214,0 +170783003383,214,0 +170783003431,214,0 +170783003478,214,0 +170783003526,214,0 +170783003574,213,0 +170783003624,213,0 +170783003671,213,0 +170783003719,213,0 +170783003767,213,0 +170783003815,213,0 +170783003863,213,0 +170783003911,213,0 +170783003959,213,0 +170783004006,213,0 +170783004054,213,0 +170783004102,214,0 +170783004150,214,0 +170783004198,214,0 +170783004246,214,0 +170783004294,214,0 +170783004342,214,0 +170783004389,214,0 +170783004437,214,0 +170783004485,213,0 +170783004533,213,0 +170783004581,213,0 +170783004628,213,0 +170783004676,213,0 +170783004725,213,0 +170783004773,213,0 +170783004821,213,0 +170783004869,213,0 +170783004917,214,0 +170783004965,214,0 +170783005014,213,0 +170783005062,214,0 +170783005111,214,0 +170783005159,214,0 +170783005207,214,0 +170783005255,214,0 +170783005304,214,0 +170783005352,214,0 +170783005400,213,0 +170783005448,213,0 +170783005496,213,0 +170783005545,213,0 +170783005595,213,0 +170783005642,213,0 +170783005690,213,0 +170783005738,213,0 +170783005786,213,0 +170783005835,214,0 +170783005883,214,0 +170783005931,214,0 +170783005981,214,0 +170783006030,214,0 +170783006078,214,0 +170783006128,214,0 +170783006176,214,0 +170783006225,214,0 +170783006273,214,0 +170783006321,213,0 +170783006369,213,0 +170783006417,213,0 +170783006464,213,0 +170783006514,213,0 +170783006562,213,0 +170783006610,213,0 +170783006659,213,0 +170783006707,213,0 +170783006755,213,0 +170783006805,214,0 +170783006853,213,0 +170783006902,214,0 +170783006950,214,0 +170783006998,214,0 +170783007046,214,0 +170783007095,214,0 +170783007143,214,0 +170783007193,214,0 +170783007241,213,0 +170783007290,213,0 +170783007339,213,0 +170783007389,213,0 +170783007437,213,0 +170783007486,213,0 +170783007534,213,0 +170783007582,213,0 +170783007632,213,0 +170783007680,213,0 +170783007728,213,0 +170783007777,213,0 +170783007825,213,0 +170783007875,213,0 +170783007924,214,0 +170783007974,214,0 +170783008022,214,0 +170783008071,214,0 +170783008120,213,0 +170783008168,213,0 +170783008216,213,0 +170783008264,213,0 +170783008312,213,0 +170783008362,213,0 +170783008410,213,0 +170783008458,213,0 +170783008505,213,0 +170783008553,213,0 +170783008601,213,0 +170783008649,213,0 +170783008697,214,0 +170783008745,214,0 +170783008794,214,0 +170783008842,214,0 +170783008892,214,0 +170783008940,214,0 +170783008987,214,0 +170783009035,213,0 +170783009083,213,0 +170783009131,213,0 +170783009179,213,0 +170783009227,213,0 +170783009276,213,0 +170783009326,213,0 +170783009374,213,0 +170783009422,213,0 +170783009470,213,0 +170783009517,214,0 +170783009567,213,0 +170783009615,214,0 +170783009663,214,0 +170783009711,214,0 +170783009759,214,0 +170783009807,214,0 +170783009856,214,0 +170783009906,214,0 +170783009955,213,0 +170783010005,213,0 +170783010053,213,0 +170783010102,213,0 +170783010150,213,0 +170783010199,213,0 +170783010247,213,0 +170783010295,214,0 +170783010343,213,0 +170783010391,214,0 +170783010440,214,0 +170783010488,214,0 +170783010536,214,0 +170783010586,214,0 +170783010634,214,0 +170783010681,214,0 +170783010731,214,0 +170783010780,214,0 +170783010828,214,0 +170783010876,213,0 +170783010924,213,0 +170783010973,213,0 +170783011023,213,0 +170783011071,213,0 +170783011119,213,0 +170783011168,214,0 +170783011216,214,0 +170783011265,214,0 +170783011313,214,0 +170783011361,214,0 +170783011409,214,0 +170783011457,214,0 +170783011506,215,0 +170783011556,215,0 +170783011605,214,0 +170783011653,214,0 +170783011701,214,0 +170783011749,213,0 +170783011797,213,0 +170783011847,213,0 +170783011895,213,0 +170783011943,213,0 +170783011992,213,0 +170783012042,213,0 +170783012089,213,0 +170783012139,213,0 +170783012188,213,0 +170783012236,214,0 +170783012286,214,0 +170783012334,214,0 +170783012382,214,0 +170783012430,214,0 +170783012478,214,0 +170783012526,214,0 +170783012574,214,0 +170783012623,214,0 +170783012672,213,0 +170783012720,213,0 +170783012768,213,0 +170783012816,213,0 +170783012866,213,0 +170783012915,213,0 +170783012965,213,0 +170783013013,213,0 +170783013061,214,0 +170783013109,214,0 +170783013158,214,0 +170783013207,214,0 +170783013255,213,0 +170783013303,214,0 +170783013351,214,0 +170783013401,214,0 +170783013449,214,0 +170783013496,214,0 +170783013546,214,0 +170783013594,213,0 +170783013643,213,0 +170783013693,213,0 +170783013741,213,0 +170783013790,213,0 +170783013840,213,0 +170783013888,213,0 +170783013936,213,0 +170783013985,213,0 +170783014033,213,0 +170783014082,213,0 +170783014132,213,0 +170783014181,213,0 +170783014229,214,0 +170783014277,214,0 +170783014325,214,0 +170783014373,213,0 +170783014421,214,0 +170783014471,214,0 +170783014519,213,0 +170783014566,213,0 +170783014614,213,0 +170783014664,213,0 +170783014711,213,0 +170783014759,213,0 +170783014809,213,0 +170783014857,213,0 +170783014905,213,0 +170783014952,213,0 +170783015000,213,0 +170783015050,213,0 +170783015098,214,0 +170783015146,214,0 +170783015194,214,0 +170783015242,214,0 +170783015289,214,0 +170783015339,214,0 +170783015387,213,0 +170783015435,213,0 +170783015484,213,0 +170783015532,213,0 +170783015580,213,0 +170783015628,213,0 +170783015678,213,0 +170783015727,213,0 +170783015777,213,0 +170783015825,214,0 +170783015873,214,0 +170783015921,214,0 +170783015969,214,0 +170783016016,214,0 +170783016064,214,0 +170783016112,214,0 +170783016162,214,0 +170783016210,214,0 +170783016258,214,0 +170783016305,213,0 +170783016355,213,0 +170783016403,213,0 +170783016452,213,0 +170783016500,213,0 +170783016550,213,0 +170783016598,213,0 +170783016647,213,0 +170783016695,214,0 +170783016745,214,0 +170783016793,214,0 +170783016840,214,0 +170783016888,214,0 +170783016938,214,0 +170783016986,214,0 +170783017035,214,0 +170783017083,214,0 +170783017133,214,0 +170783017182,214,0 +170783017230,213,0 +170783017278,213,0 +170783017326,213,0 +170783017374,213,0 +170783017422,213,0 +170783017470,213,0 +170783017519,213,0 +170783017567,214,0 +170783017617,214,0 +170783017664,214,0 +170783017712,214,0 +170783017760,214,0 +170783017810,214,0 +170783017858,214,0 +170783017906,214,0 +170783017953,214,0 +170783018001,214,0 +170783018051,214,0 +170783018099,214,0 +170783018147,213,0 +170783018194,213,0 +170783018242,213,0 +170783018290,213,0 +170783018338,213,0 +170783018386,213,0 +170783018435,213,0 +170783018483,213,0 +170783018531,213,0 +170783018579,213,0 +170783018627,214,0 +170783018675,214,0 +170783018723,214,0 +170783018770,214,0 +170783018818,214,0 +170783018866,214,0 +170783018916,214,0 +170783018963,214,0 +170783019013,214,0 +170783019061,213,0 +170783019110,213,0 +170783019158,213,0 +170783019207,213,0 +170783019255,213,0 +170783019305,213,0 +170783019353,213,0 +170783019401,214,0 +170783019449,213,0 +170783019497,214,0 +170783019544,214,0 +170783019594,214,0 +170783019642,214,0 +170783019691,214,0 +170783019741,214,0 +170783019789,214,0 +170783019838,214,0 +170783019888,214,0 +170783019936,213,0 +170783019983,213,0 +170783020031,213,0 +170783020081,213,0 +170783020129,213,0 +170783020176,213,0 +170783020224,213,0 +170783020272,213,0 +170783020320,213,0 +170783020368,213,0 +170783020416,214,0 +170783020464,214,0 +170783020512,214,0 +170783020560,214,0 +170783020609,214,0 +170783020657,214,0 +170783020707,214,0 +170783020754,214,0 +170783020804,214,0 +170783020852,213,0 +170783020900,213,0 +170783020948,213,0 +170783020997,213,0 +170783021045,213,0 +170783021094,213,0 +170783021142,213,0 +170783021192,213,0 +170783021240,213,0 +170783021287,213,0 +170783021335,213,0 +170783021383,213,0 +170783021431,213,0 +170783021479,213,0 +170783021527,214,0 +170783021575,214,0 +170783021623,214,0 +170783021672,214,0 +170783021720,214,0 +170783021770,213,0 +170783021819,213,0 +170783021867,213,0 +170783021915,213,0 +170783021963,213,0 +170783022012,213,0 +170783022060,213,0 +170783022108,214,0 +170783022158,213,0 +170783022205,213,0 +170783022253,213,0 +170783022303,214,0 +170783022352,214,0 +170783022402,214,0 +170783022450,214,0 +170783022498,214,0 +170783022547,214,0 +170783022597,214,0 +170783022645,214,0 +170783022694,213,0 +170783022744,213,0 +170783022793,213,0 +170783022841,213,0 +170783022889,213,0 +170783022937,213,0 +170783022986,213,0 +170783023034,213,0 +170783023082,213,0 +170783023130,213,0 +170783023178,213,0 +170783023228,213,0 +170783023276,214,0 +170783023325,214,0 +170783023373,214,0 +170783023421,214,0 +170783023469,214,0 +170783023517,214,0 +170783023566,213,0 +170783023616,213,0 +170783023665,213,0 +170783023713,213,0 +170783023761,213,0 +170783023809,213,0 +170783023857,213,0 +170783023905,213,0 +170783023953,213,0 +170783024001,213,0 +170783024049,213,0 +170783024096,213,0 +170783024146,213,0 +170783024195,214,0 +170783024245,214,0 +170783024293,214,0 +170783024341,214,0 +170783024388,213,0 +170783024436,214,0 +170783024484,213,0 +170783024532,213,0 +170783024582,213,0 +170783024630,213,0 +170783024679,213,0 +170783024729,213,0 +170783024776,213,0 +170783024824,213,0 +170783024874,213,0 +170783024922,213,0 +170783024971,213,0 +170783025019,214,0 +170783025068,214,0 +170783025118,214,0 +170783025166,214,0 +170783025214,214,0 +170783025262,214,0 +170783025310,214,0 +170783025359,214,0 +170783025407,213,0 +170783025455,213,0 +170783025503,213,0 +170783025551,213,0 +170783025598,213,0 +170783025646,213,0 +170783025696,213,0 +170783025744,213,0 +170783025793,213,0 +170783025843,213,0 +170783025890,214,0 +170783025938,214,0 +170783025986,214,0 +170783026034,214,0 +170783026084,214,0 +170783026132,214,0 +170783026179,214,0 +170783026228,214,0 +170783026276,214,0 +170783026324,213,0 +170783026372,213,0 +170783026420,213,0 +170783026468,213,0 +170783026517,213,0 +170783026566,213,0 +170783026614,213,0 +170783026662,213,0 +170783026710,213,0 +170783026760,214,0 +170783026809,214,0 +170783026858,214,0 +170783026906,214,0 +170783026954,214,0 +170783027002,214,0 +170783027052,214,0 +170783027100,214,0 +170783027148,214,0 +170783027196,214,0 +170783027243,213,0 +170783027291,213,0 +170783027339,213,0 +170783027389,213,0 +170783027437,213,0 +170783027486,213,0 +170783027534,213,0 +170783027582,214,0 +170783027631,214,0 +170783027679,214,0 +170783027727,214,0 +170783027777,214,0 +170783027825,214,0 +170783027874,214,0 +170783027923,214,0 +170783027971,214,0 +170783028019,214,0 +170783028069,214,0 +170783028117,213,0 +170783028165,213,0 +170783028214,213,0 +170783028262,213,0 +170783028310,213,0 +170783028359,213,0 +170783028407,213,0 +170783028455,213,0 +170783028505,214,0 +170783028553,213,0 +170783028602,214,0 +170783028650,214,0 +170783028698,214,0 +170783028746,214,0 +170783028794,214,0 +170783028842,214,0 +170783028891,213,0 +170783028939,214,0 +170783028989,214,0 +170783029038,213,0 +170783029086,213,0 +170783029134,213,0 +170783029182,213,0 +170783029231,213,0 +170783029279,213,0 +170783029327,213,0 +170783029375,213,0 +170783029425,213,0 +170783029472,213,0 +170783029522,213,0 +170783029570,213,0 +170783029619,213,0 +170783029669,213,0 +170783029718,214,0 +170783029766,213,0 +170783029814,214,0 +170783029864,214,0 +170783029912,214,0 +170783029960,213,0 +170783030009,213,0 +170783030057,213,0 +170783030105,213,0 +170783030155,213,0 +170783030202,213,0 +170783030250,213,0 +170783030298,213,0 +170783030346,213,0 +170783030394,213,0 +170783030442,213,0 +170783030492,213,0 +170783030540,214,0 +170783030589,214,0 +170783030637,214,0 +170783030685,214,0 +170783030733,214,0 +170783030782,214,0 +170783030832,213,0 +170783030880,213,0 +170783030928,213,0 +170783030975,213,0 +170783031023,213,0 +170783031071,213,0 +170783031119,213,0 +170783031168,213,0 +170783031216,213,0 +170783031264,213,0 +170783031312,213,0 +170783031360,213,0 +170783031408,214,0 +170783031456,214,0 +170783031505,214,0 +170783031553,214,0 +170783031601,214,0 +170783031651,214,0 +170783031699,214,0 +170783031748,213,0 +170783031796,213,0 +170783031844,213,0 +170783031892,213,0 +170783031940,213,0 +170783031989,213,0 +170783032039,213,0 +170783032086,213,0 +170783032136,213,0 +170783032184,213,0 +170783032232,213,0 +170783032280,213,0 +170783032328,213,0 +170783032375,214,0 +170783032423,214,0 +170783032473,214,0 +170783032521,214,0 +170783032570,214,0 +170783032620,214,0 +170783032669,213,0 +170783032717,213,0 +170783032765,213,0 +170783032813,213,0 +170783032862,213,0 +170783032910,213,0 +170783032960,213,0 +170783033009,213,0 +170783033057,213,0 +170783033105,213,0 +170783033153,213,0 +170783033201,214,0 +170783033249,214,0 +170783033297,214,0 +170783033345,214,0 +170783033394,214,0 +170783033442,214,0 +170783033491,214,0 +170783033541,214,0 +170783033589,213,0 +170783033637,213,0 +170783033686,213,0 +170783033734,213,0 +170783033782,213,0 +170783033830,213,0 +170783033878,213,0 +170783033926,213,0 +170783033973,213,0 +170783034021,213,0 +170783034069,214,0 +170783034119,214,0 +170783034168,214,0 +170783034216,214,0 +170783034264,214,0 +170783034312,214,0 +170783034360,214,0 +170783034408,214,0 +170783034455,214,0 +170783034503,213,0 +170783034553,213,0 +170783034601,213,0 +170783034650,213,0 +170783034698,213,0 +170783034747,213,0 +170783034797,213,0 +170783034846,213,0 +170783034896,213,0 +170783034944,213,0 +170783034992,213,0 +170783035040,213,0 +170783035088,213,0 +170783035136,214,0 +170783035185,214,0 +170783035233,214,0 +170783035281,214,0 +170783035329,214,0 +170783035377,213,0 +170783035425,213,0 +170783035474,213,0 +170783035522,213,0 +170783035570,213,0 +170783035618,213,0 +170783035665,213,0 +170783035713,213,0 +170783035761,213,0 +170783035811,213,0 +170783035860,213,0 +170783035908,213,0 +170783035956,213,0 +170783036004,213,0 +170783036051,213,0 +170783036099,214,0 +170783036149,214,0 +170783036197,214,0 +170783036246,214,0 +170783036296,213,0 +170783036344,213,0 +170783036392,213,0 +170783036439,213,0 +170783036487,213,0 +170783036537,213,0 +170783036586,213,0 +170783036634,213,0 +170783036684,213,0 +170783036732,213,0 +170783036780,213,0 +170783036828,213,0 +170783036877,213,0 +170783036925,214,0 +170783036973,214,0 +170783037021,214,0 +170783037070,214,0 +170783037118,214,0 +170783037166,214,0 +170783037214,213,0 +170783037262,213,0 +170783037310,213,0 +170783037358,213,0 +170783037406,213,0 +170783037455,213,0 +170783037505,213,0 +170783037552,213,0 +170783037600,213,0 +170783037648,213,0 +170783037696,213,0 +170783037744,214,0 +170783037792,214,0 +170783037840,214,0 +170783037890,214,0 +170783037938,214,0 +170783037987,214,0 +170783038035,214,0 +170783038083,214,0 +170783038131,213,0 +170783038180,213,0 +170783038228,213,0 +170783038276,213,0 +170783038324,213,0 +170783038372,213,0 +170783038421,213,0 +170783038471,213,0 +170783038520,214,0 +170783038568,214,0 +170783038616,214,0 +170783038664,214,0 +170783038712,214,0 +170783038761,214,0 +170783038809,214,0 +170783038857,214,0 +170783038905,214,0 +170783038952,214,0 +170783039000,214,0 +170783039048,213,0 +170783039096,213,0 +170783039144,213,0 +170783039191,213,0 +170783039239,214,0 +170783039287,214,0 +170783039335,214,0 +170783039383,214,0 +170783039432,214,0 +170783039480,214,0 +170783039528,214,0 +170783039578,214,0 +170783039627,214,0 +170783039675,214,0 +170783039723,214,0 +170783039771,214,0 +170783039819,214,0 +170783039867,214,0 +170783039915,214,0 +170783039963,214,0 +170783040012,214,0 +170783040060,214,0 +170783040108,214,0 +170783040156,214,0 +170783040205,214,0 +170783040253,214,0 +170783040301,214,0 +170783040349,214,0 +170783040396,214,0 +170783040444,214,0 +170783040492,214,0 +170783040540,214,0 +170783040588,214,0 +170783040636,214,0 +170783040683,214,0 +170783040731,214,0 +170783040781,214,0 +170783040828,213,0 +170783040876,213,0 +170783040924,213,0 +170783040972,213,0 +170783041020,214,0 +170783041069,214,0 +170783041117,213,0 +170783041165,214,0 +170783041214,214,0 +170783041264,214,0 +170783041311,214,0 +170783041361,214,0 +170783041409,214,0 +170783041456,214,0 +170783041504,214,0 +170783041552,214,0 +170783041601,214,0 +170783041651,214,0 +170783041699,214,0 +170783041748,213,0 +170783041797,213,0 +170783041847,213,0 +170783041896,213,0 +170783041944,213,0 +170783041992,213,0 +170783042040,214,0 +170783042087,214,0 +170783042135,213,0 +170783042183,213,0 +170783042231,214,0 +170783042280,214,0 +170783042328,214,0 +170783042376,214,0 +170783042424,214,0 +170783042472,214,0 +170783042519,214,0 +170783042567,214,0 +170783042615,214,0 +170783042665,213,0 +170783042712,213,0 +170783042760,213,0 +170783042808,213,0 +170783042856,213,0 +170783042904,213,0 +170783042953,213,0 +170783043001,213,0 +170783043049,213,0 +170783043097,213,0 +170783043145,213,0 +170783043192,213,0 +170783043240,214,0 +170783043288,214,0 +170783043336,214,0 +170783043384,214,0 +170783043431,214,0 +170783043481,214,0 +170783043529,214,0 +170783043578,213,0 +170783043626,213,0 +170783043674,213,0 +170783043722,213,0 +170783043770,213,0 +170783043817,213,0 +170783043865,213,0 +170783043913,213,0 +170783043962,213,0 +170783044012,213,0 +170783044060,214,0 +170783044107,214,0 +170783044155,213,0 +170783044205,214,0 +170783044253,214,0 +170783044300,214,0 +170783044348,214,0 +170783044396,214,0 +170783044444,214,0 +170783044492,213,0 +170783044539,213,0 +170783044587,213,0 +170783044635,213,0 +170783044683,213,0 +170783044731,213,0 +170783044778,213,0 +170783044826,214,0 +170783044874,213,0 +170783044922,213,0 +170783044970,213,0 +170783045018,214,0 +170783045066,214,0 +170783045113,214,0 +170783045161,214,0 +170783045209,214,0 +170783045257,214,0 +170783045305,214,0 +170783045353,214,0 +170783045401,213,0 +170783045450,213,0 +170783045500,213,0 +170783045548,213,0 +170783045596,213,0 +170783045644,213,0 +170783045693,213,0 +170783045743,213,0 +170783045791,213,0 +170783045839,213,0 +170783045886,214,0 +170783045934,213,0 +170783045982,214,0 +170783046030,214,0 +170783046078,214,0 +170783046126,214,0 +170783046174,214,0 +170783046222,214,0 +170783046272,214,0 +170783046319,213,0 +170783046369,213,0 +170783046418,213,0 +170783046466,213,0 +170783046514,213,0 +170783046562,213,0 +170783046611,213,0 +170783046659,213,0 +170783046708,213,0 +170783046756,213,0 +170783046804,213,0 +170783046852,214,0 +170783046900,214,0 +170783046948,214,0 +170783046995,214,0 +170783047045,214,0 +170783047093,214,0 +170783047140,214,0 +170783047188,213,0 +170783047236,213,0 +170783047284,213,0 +170783047332,213,0 +170783047380,213,0 +170783047427,213,0 +170783047475,213,0 +170783047523,213,0 +170783047571,213,0 +170783047619,213,0 +170783047667,214,0 +170783047714,214,0 +170783047762,214,0 +170783047810,214,0 +170783047859,213,0 +170783047907,214,0 +170783047956,214,0 +170783048006,214,0 +170783048054,214,0 +170783048101,213,0 +170783048149,213,0 +170783048197,213,0 +170783048245,213,0 +170783048293,213,0 +170783048341,213,0 +170783048390,213,0 +170783048438,213,0 +170783048486,213,0 +170783048534,213,0 +170783048582,213,0 +170783048629,213,0 +170783048677,214,0 +170783048725,214,0 +170783048773,213,0 +170783048821,214,0 +170783048870,214,0 +170783048918,214,0 +170783048966,214,0 +170783049014,213,0 +170783049061,213,0 +170783049109,213,0 +170783049157,213,0 +170783049206,213,0 +170783049254,213,0 +170783049302,213,0 +170783049350,213,0 +170783049398,213,0 +170783049446,213,0 +170783049493,213,0 +170783049541,213,0 +170783049589,213,0 +170783049637,213,0 +170783049687,213,0 +170783049734,214,0 +170783049784,213,0 +170783049832,214,0 +170783049880,214,0 +170783049927,213,0 +170783049975,213,0 +170783050025,213,0 +170783050074,213,0 +170783050122,213,0 +170783050170,213,0 +170783050218,213,0 +170783050267,213,0 +170783050315,213,0 +170783050363,213,0 +170783050411,213,0 +170783050459,213,0 +170783050507,213,0 +170783050554,214,0 +170783050602,214,0 +170783050650,214,0 +170783050698,214,0 +170783050746,214,0 +170783050793,214,0 +170783050841,213,0 +170783050889,213,0 +170783050939,213,0 +170783050987,213,0 +170783051036,213,0 +170783051084,213,0 +170783051132,213,0 +170783051180,213,0 +170783051228,213,0 +170783051276,213,0 +170783051325,213,0 +170783051375,213,0 +170783051424,213,0 +170783051472,214,0 +170783051520,214,0 +170783051570,214,0 +170783051618,214,0 +170783051665,214,0 +170783051715,214,0 +170783051763,213,0 +170783051811,213,0 +170783051860,213,0 +170783051910,213,0 +170783051959,213,0 +170783052007,213,0 +170783052055,213,0 +170783052103,213,0 +170783052151,213,0 +170783052200,213,0 +170783052248,214,0 +170783052298,214,0 +170783052346,214,0 +170783052393,214,0 +170783052441,214,0 +170783052491,214,0 +170783052539,214,0 +170783052587,214,0 +170783052636,213,0 +170783052684,213,0 +170783052733,213,0 +170783052783,213,0 +170783052832,213,0 +170783052880,213,0 +170783052928,213,0 +170783052976,213,0 +170783053025,213,0 +170783053073,213,0 +170783053121,214,0 +170783053171,213,0 +170783053219,214,0 +170783053268,214,0 +170783053316,214,0 +170783053364,214,0 +170783053412,214,0 +170783053462,214,0 +170783053511,214,0 +170783053559,213,0 +170783053608,213,0 +170783053656,213,0 +170783053704,213,0 +170783053752,213,0 +170783053800,213,0 +170783053848,213,0 +170783053896,213,0 +170783053944,213,0 +170783053992,213,0 +170783054041,213,0 +170783054089,213,0 +170783054139,214,0 +170783054187,214,0 +170783054235,214,0 +170783054283,214,0 +170783054330,214,0 +170783054380,214,0 +170783054429,214,0 +170783054477,213,0 +170783054525,213,0 +170783054573,213,0 +170783054623,213,0 +170783054672,213,0 +170783054720,213,0 +170783054770,213,0 +170783054819,213,0 +170783054867,213,0 +170783054915,213,0 +170783054963,214,0 +170783055011,214,0 +170783055059,214,0 +170783055106,214,0 +170783055154,214,0 +170783055202,214,0 +170783055250,214,0 +170783055298,214,0 +170783055346,214,0 +170783055395,213,0 +170783055443,213,0 +170783055492,213,0 +170783055541,213,0 +170783055589,213,0 +170783055637,213,0 +170783055685,213,0 +170783055733,214,0 +170783055782,213,0 +170783055830,214,0 +170783055880,214,0 +170783055928,214,0 +170783055976,214,0 +170783056024,214,0 +170783056072,214,0 +170783056120,214,0 +170783056169,214,0 +170783056219,214,0 +170783056267,214,0 +170783056316,213,0 +170783056366,213,0 +170783056414,213,0 +170783056461,213,0 +170783056511,213,0 +170783056559,213,0 +170783056607,214,0 +170783056656,214,0 +170783056704,213,0 +170783056752,214,0 +170783056800,214,0 +170783056847,214,0 +170783056895,214,0 +170783056943,214,0 +170783056993,214,0 +170783057040,214,0 +170783057088,214,0 +170783057136,214,0 +170783057186,213,0 +170783057234,213,0 +170783057283,213,0 +170783057331,213,0 +170783057379,213,0 +170783057427,213,0 +170783057475,214,0 +170783057523,214,0 +170783057572,214,0 +170783057622,214,0 +170783057669,214,0 +170783057719,214,0 +170783057768,214,0 +170783057816,214,0 +170783057866,214,0 +170783057915,214,0 +170783057963,214,0 +170783058011,214,0 +170783058059,214,0 +170783058109,213,0 +170783058157,213,0 +170783058205,213,0 +170783058254,213,0 +170783058304,213,0 +170783058352,213,0 +170783058400,213,0 +170783058448,213,0 +170783058495,213,0 +170783058543,213,0 +170783058591,214,0 +170783058639,214,0 +170783058687,214,0 +170783058735,214,0 +170783058783,214,0 +170783058833,214,0 +170783058880,214,0 +170783058928,214,0 +170783058976,214,0 +170783059024,213,0 +170783059072,213,0 +170783059120,213,0 +170783059170,213,0 +170783059217,213,0 +170783059265,213,0 +170783059313,213,0 +170783059361,213,0 +170783059409,213,0 +170783059457,213,0 +170783059505,213,0 +170783059553,213,0 +170783059602,213,0 +170783059652,214,0 +170783059700,214,0 +170783059749,214,0 +170783059799,214,0 +170783059847,214,0 +170783059896,213,0 +170783059944,213,0 +170783059992,213,0 +170783060040,213,0 +170783060089,213,0 +170783060137,213,0 +170783060185,213,0 +170783060233,213,0 +170783060281,213,0 +170783060329,214,0 +170783060377,214,0 +170783060425,214,0 +170783060472,214,0 +170783060520,214,0 +170783060570,214,0 +170783060618,214,0 +170783060666,214,0 +170783060713,214,0 +170783060761,214,0 +170783060809,213,0 +170783060857,213,0 +170783060905,213,0 +170783060954,213,0 +170783061002,213,0 +170783061050,213,0 +170783061098,213,0 +170783061147,214,0 +170783061195,214,0 +170783061243,214,0 +170783061292,214,0 +170783061340,214,0 +170783061388,214,0 +170783061436,214,0 +170783061486,214,0 +170783061534,214,0 +170783061582,214,0 +170783061630,214,0 +170783061678,214,0 +170783061725,213,0 +170783061773,213,0 +170783061821,213,0 +170783061869,213,0 +170783061917,213,0 +170783061965,213,0 +170783062014,213,0 +170783062064,214,0 +170783062112,214,0 +170783062160,214,0 +170783062209,214,0 +170783062257,214,0 +170783062305,214,0 +170783062352,214,0 +170783062400,214,0 +170783062448,214,0 +170783062496,214,0 +170783062544,214,0 +170783062592,214,0 +170783062641,213,0 +170783062689,213,0 +170783062737,213,0 +170783062785,212,0 +170783062833,213,0 +170783062881,213,0 +170783062930,213,0 +170783062978,213,0 +170783063026,213,0 +170783063074,213,0 +170783063122,213,0 +170783063171,213,0 +170783063219,213,0 +170783063267,213,0 +170783063315,214,0 +170783063364,214,0 +170783063412,214,0 +170783063461,214,0 +170783063511,214,0 +170783063560,214,0 +170783063608,214,0 +170783063656,214,0 +170783063704,214,0 +170783063752,214,0 +170783063800,214,0 +170783063848,214,0 +170783063896,214,0 +170783063945,214,0 +170783063993,213,0 +170783064041,213,0 +170783064091,213,0 +170783064140,213,0 +170783064188,213,0 +170783064236,213,0 +170783064284,213,0 +170783064332,213,0 +170783064380,213,0 +170783064427,214,0 +170783064475,214,0 +170783064523,214,0 +170783064571,214,0 +170783064619,214,0 +170783064667,214,0 +170783064715,214,0 +170783064763,214,0 +170783064812,214,0 +170783064860,214,0 +170783064910,213,0 +170783064957,213,0 +170783065005,213,0 +170783065055,213,0 +170783065105,213,0 +170783065152,213,0 +170783065202,213,0 +170783065252,213,0 +170783065299,213,0 +170783065349,213,0 +170783065397,214,0 +170783065445,213,0 +170783065492,214,0 +170783065542,214,0 +170783065591,214,0 +170783065639,214,0 +170783065689,214,0 +170783065737,214,0 +170783065784,214,0 +170783065834,213,0 +170783065882,213,0 +170783065930,213,0 +170783065979,213,0 +170783066027,213,0 +170783066077,213,0 +170783066125,213,0 +170783066174,213,0 +170783066222,213,0 +170783066270,213,0 +170783066318,213,0 +170783066367,213,0 +170783066415,213,0 +170783066463,213,0 +170783066513,214,0 +170783066562,214,0 +170783066611,214,0 +170783066659,214,0 +170783066707,213,0 +170783066757,213,0 +170783066806,213,0 +170783066856,213,0 +170783066904,213,0 +170783066952,213,0 +170783067000,213,0 +170783067049,213,0 +170783067098,213,0 +170783067146,213,0 +170783067196,213,0 +170783067245,213,0 +170783067293,213,0 +170783067341,214,0 +170783067389,214,0 +170783067437,214,0 +170783067485,214,0 +170783067532,214,0 +170783067580,214,0 +170783067628,213,0 +170783067678,213,0 +170783067725,213,0 +170783067775,213,0 +170783067823,213,0 +170783067872,213,0 +170783067920,213,0 +170783067968,213,0 +170783068016,213,0 +170783068064,213,0 +170783068112,213,0 +170783068160,213,0 +170783068208,214,0 +170783068256,214,0 +170783068306,213,0 +170783068355,214,0 +170783068403,214,0 +170783068453,214,0 +170783068501,214,0 +170783068548,213,0 +170783068596,213,0 +170783068646,213,0 +170783068694,213,0 +170783068743,213,0 +170783068791,213,0 +170783068841,213,0 +170783068888,213,0 +170783068938,213,0 +170783068987,213,0 +170783069035,214,0 +170783069085,214,0 +170783069133,214,0 +170783069181,214,0 +170783069229,214,0 +170783069277,214,0 +170783069326,214,0 +170783069374,214,0 +170783069424,213,0 +170783069472,213,0 +170783069519,213,0 +170783069569,213,0 +170783069617,213,0 +170783069665,213,0 +170783069713,213,0 +170783069761,213,0 +170783069808,213,0 +170783069856,213,0 +170783069904,213,0 +170783069952,214,0 +170783070000,214,0 +170783070048,214,0 +170783070098,214,0 +170783070146,214,0 +170783070193,214,0 +170783070243,214,0 +170783070292,214,0 +170783070340,213,0 +170783070388,213,0 +170783070438,213,0 +170783070486,213,0 +170783070534,213,0 +170783070582,213,0 +170783070630,213,0 +170783070679,213,0 +170783070727,214,0 +170783070775,214,0 +170783070823,214,0 +170783070871,214,0 +170783070920,214,0 +170783070970,214,0 +170783071018,215,0 +170783071066,215,0 +170783071113,214,0 +170783071161,214,0 +170783071211,214,0 +170783071260,213,0 +170783071308,213,0 +170783071358,213,0 +170783071407,213,0 +170783071457,213,0 +170783071505,213,0 +170783071553,214,0 +170783071602,214,0 +170783071650,214,0 +170783071698,214,0 +170783071746,214,0 +170783071794,214,0 +170783071842,214,0 +170783071890,214,0 +170783071937,214,0 +170783071987,214,0 +170783072035,214,0 +170783072084,214,0 +170783072134,214,0 +170783072182,213,0 +170783072230,213,0 +170783072279,213,0 +170783072327,213,0 +170783072375,213,0 +170783072424,213,0 +170783072472,213,0 +170783072522,213,0 +170783072570,214,0 +170783072618,213,0 +170783072666,214,0 +170783072714,214,0 +170783072762,214,0 +170783072809,214,0 +170783072857,214,0 +170783072905,214,0 +170783072953,214,0 +170783073001,214,0 +170783073049,213,0 +170783073097,213,0 +170783073145,213,0 +170783073193,213,0 +170783073242,213,0 +170783073292,213,0 +170783073341,213,0 +170783073389,213,0 +170783073438,213,0 +170783073486,213,0 +170783073536,213,0 +170783073584,214,0 +170783073632,214,0 +170783073680,214,0 +170783073728,214,0 +170783073776,213,0 +170783073823,213,0 +170783073871,214,0 +170783073919,214,0 +170783073967,213,0 +170783074015,213,0 +170783074065,213,0 +170783074112,213,0 +170783074160,213,0 +170783074210,213,0 +170783074258,213,0 +170783074307,213,0 +170783074355,213,0 +170783074405,213,0 +170783074452,213,0 +170783074500,214,0 +170783074550,214,0 +170783074599,214,0 +170783074649,214,0 +170783074696,214,0 +170783074746,214,0 +170783074794,214,0 +170783074842,214,0 +170783074889,213,0 +170783074939,213,0 +170783074987,213,0 +170783075036,213,0 +170783075084,213,0 +170783075132,213,0 +170783075180,213,0 +170783075228,213,0 +170783075275,213,0 +170783075323,213,0 +170783075371,213,0 +170783075421,213,0 +170783075468,214,0 +170783075516,214,0 +170783075564,214,0 +170783075612,214,0 +170783075661,214,0 +170783075709,214,0 +170783075757,214,0 +170783075806,213,0 +170783075856,213,0 +170783075904,213,0 +170783075951,213,0 +170783075999,213,0 +170783076047,213,0 +170783076095,213,0 +170783076144,213,0 +170783076192,213,0 +170783076240,213,0 +170783076288,213,0 +170783076336,214,0 +170783076384,214,0 +170783076431,214,0 +170783076479,214,0 +170783076527,214,0 +170783076577,214,0 +170783076625,214,0 +170783076673,214,0 +170783076721,213,0 +170783076769,213,0 +170783076817,213,0 +170783076864,213,0 +170783076914,213,0 +170783076962,213,0 +170783077010,213,0 +170783077059,213,0 +170783077108,213,0 +170783077156,213,0 +170783077204,213,0 +170783077252,213,0 +170783077300,213,0 +170783077348,214,0 +170783077395,214,0 +170783077443,214,0 +170783077491,214,0 +170783077539,214,0 +170783077587,213,0 +170783077635,213,0 +170783077683,213,0 +170783077730,213,0 +170783077778,213,0 +170783077826,213,0 +170783077875,213,0 +170783077923,213,0 +170783077971,213,0 +170783078021,213,0 +170783078069,213,0 +170783078117,214,0 +170783078166,213,0 +170783078214,214,0 +170783078263,214,0 +170783078313,214,0 +170783078361,214,0 +170783078409,214,0 +170783078457,214,0 +170783078505,213,0 +170783078553,213,0 +170783078601,213,0 +170783078649,213,0 +170783078697,213,0 +170783078745,213,0 +170783078792,213,0 +170783078840,213,0 +170783078888,213,0 +170783078937,213,0 +170783078985,213,0 +170783079033,213,0 +170783079083,214,0 +170783079131,213,0 +170783079180,214,0 +170783079230,214,0 +170783079278,214,0 +170783079327,214,0 +170783079375,214,0 +170783079423,213,0 +170783079471,213,0 +170783079519,213,0 +170783079567,213,0 +170783079615,213,0 +170783079662,213,0 +170783079710,213,0 +170783079760,213,0 +170783079808,213,0 +170783079857,213,0 +170783079905,213,0 +170783079953,213,0 +170783080003,214,0 +170783080050,214,0 +170783080098,214,0 +170783080148,214,0 +170783080197,214,0 +170783080247,214,0 +170783080296,214,0 +170783080344,213,0 +170783080392,213,0 +170783080442,213,0 +170783080490,213,0 +170783080538,213,0 +170783080586,213,0 +170783080634,213,0 +170783080683,213,0 +170783080731,213,0 +170783080781,213,0 +170783080828,213,0 +170783080876,213,0 +170783080924,214,0 +170783080972,214,0 +170783081020,214,0 +170783081068,214,0 +170783081116,214,0 +170783081163,214,0 +170783081211,214,0 +170783081259,213,0 +170783081307,213,0 +170783081355,213,0 +170783081403,213,0 +170783081451,213,0 +170783081500,213,0 +170783081550,213,0 +170783081598,213,0 +170783081646,213,0 +170783081694,213,0 +170783081743,213,0 +170783081793,213,0 +170783081840,214,0 +170783081890,214,0 +170783081938,214,0 +170783081986,214,0 +170783082035,214,0 +170783082083,214,0 +170783082131,214,0 +170783082179,213,0 +170783082228,213,0 +170783082278,213,0 +170783082326,213,0 +170783082374,213,0 +170783082421,213,0 +170783082469,213,0 +170783082517,213,0 +170783082567,213,0 +170783082615,213,0 +170783082663,213,0 +170783082711,214,0 +170783082760,214,0 +170783082810,214,0 +170783082858,214,0 +170783082907,214,0 +170783082955,214,0 +170783083004,214,0 +170783083052,213,0 +170783083102,213,0 +170783083150,213,0 +170783083198,213,0 +170783083245,213,0 +170783083295,213,0 +170783083343,213,0 +170783083391,213,0 +170783083439,214,0 +170783083488,213,0 +170783083538,214,0 +170783083586,214,0 +170783083634,214,0 +170783083683,214,0 +170783083731,214,0 +170783083780,214,0 +170783083828,214,0 +170783083876,214,0 +170783083926,214,0 +170783083974,213,0 +170783084021,213,0 +170783084069,213,0 +170783084117,213,0 +170783084165,213,0 +170783084213,213,0 +170783084261,214,0 +170783084310,214,0 +170783084360,214,0 +170783084409,214,0 +170783084459,214,0 +170783084507,214,0 +170783084556,214,0 +170783084604,214,0 +170783084654,214,0 +170783084702,214,0 +170783084750,214,0 +170783084798,214,0 +170783084846,214,0 +170783084895,213,0 +170783084943,213,0 +170783084991,213,0 +170783085040,213,0 +170783085088,214,0 +170783085136,214,0 +170783085186,214,0 +170783085235,214,0 +170783085285,214,0 +170783085333,214,0 +170783085380,214,0 +170783085428,214,0 +170783085476,214,0 +170783085526,214,0 +170783085575,214,0 +170783085623,214,0 +170783085673,214,0 +170783085720,214,0 +170783085768,213,0 +170783085816,213,0 +170783085864,213,0 +170783085912,213,0 +170783085960,213,0 +170783086008,213,0 +170783086056,213,0 +170783086105,213,0 +170783086153,214,0 +170783086201,214,0 +170783086249,214,0 +170783086298,214,0 +170783086348,214,0 +170783086396,214,0 +170783086444,214,0 +170783086491,214,0 +170783086541,214,0 +170783086589,214,0 +170783086637,214,0 +170783086685,213,0 +170783086733,213,0 +170783086781,213,0 +170783086829,213,0 +170783086877,213,0 +170783086926,213,0 +170783086974,213,0 +170783087022,213,0 +170783087070,213,0 +170783087119,214,0 +170783087167,214,0 +170783087217,214,0 +170783087266,214,0 +170783087316,214,0 +170783087364,214,0 +170783087412,214,0 +170783087461,214,0 +170783087511,214,0 +170783087560,214,0 +170783087608,213,0 +170783087656,213,0 +170783087705,213,0 +170783087755,213,0 +170783087803,213,0 +170783087851,213,0 +170783087900,214,0 +170783087948,213,0 +170783087998,214,0 +170783088045,214,0 +170783088093,214,0 +170783088141,214,0 +170783088189,214,0 +170783088237,214,0 +170783088285,214,0 +170783088333,214,0 +170783088382,214,0 +170783088430,214,0 +170783088478,214,0 +170783088526,213,0 +170783088575,213,0 +170783088623,213,0 +170783088671,213,0 +170783088719,213,0 +170783088768,213,0 +170783088816,213,0 +170783088864,214,0 +170783088914,213,0 +170783088963,214,0 +170783089013,214,0 +170783089061,214,0 +170783089110,214,0 +170783089158,214,0 +170783089206,214,0 +170783089256,214,0 +170783089303,214,0 +170783089351,214,0 +170783089399,213,0 +170783089447,213,0 +170783089495,213,0 +170783089542,213,0 +170783089590,213,0 +170783089640,213,0 +170783089688,213,0 +170783089735,213,0 +170783089783,213,0 +170783089831,213,0 +170783089879,213,0 +170783089927,214,0 +170783089975,214,0 +170783090024,214,0 +170783090072,214,0 +170783090121,214,0 +170783090169,214,0 +170783090219,214,0 +170783090267,214,0 +170783090315,213,0 +170783090363,213,0 +170783090411,213,0 +170783090458,212,0 +170783090506,213,0 +170783090554,213,0 +170783090604,213,0 +170783090652,213,0 +170783090701,213,0 +170783090749,213,0 +170783090797,213,0 +170783090845,213,0 +170783090893,214,0 +170783090941,214,0 +170783090989,214,0 +170783091037,214,0 +170783091084,214,0 +170783091134,214,0 +170783091182,214,0 +170783091230,213,0 +170783091278,213,0 +170783091327,213,0 +170783091377,213,0 +170783091426,213,0 +170783091474,213,0 +170783091522,213,0 +170783091572,213,0 +170783091619,213,0 +170783091667,213,0 +170783091715,213,0 +170783091765,213,0 +170783091813,213,0 +170783091862,214,0 +170783091912,214,0 +170783091961,213,0 +170783092009,213,0 +170783092057,214,0 +170783092105,213,0 +170783092153,213,0 +170783092202,213,0 +170783092250,213,0 +170783092299,213,0 +170783092349,213,0 +170783092398,213,0 +170783092446,213,0 +170783092496,213,0 +170783092544,213,0 +170783092593,213,0 +170783092641,213,0 +170783092691,213,0 +170783092738,213,0 +170783092786,213,0 +170783092834,214,0 +170783092884,213,0 +170783092932,214,0 +170783092981,214,0 +170783093031,213,0 +170783093080,212,0 +170783093130,213,0 +170783093179,213,0 +170783093227,213,0 +170783093275,213,0 +170783093322,213,0 +170783093370,213,0 +170783093418,213,0 +170783093466,214,0 +170783093515,213,0 +170783093563,214,0 +170783093613,214,0 +170783093660,214,0 +170783093708,214,0 +170783093756,214,0 +170783093804,214,0 +170783093852,214,0 +170783093900,214,0 +170783093947,213,0 +170783093995,213,0 +170783094043,213,0 +170783094091,213,0 +170783094139,213,0 +170783094186,213,0 +170783094234,213,0 +170783094282,213,0 +170783094330,213,0 +170783094377,213,0 +170783094425,213,0 +170783094473,214,0 +170783094521,214,0 +170783094569,214,0 +170783094618,214,0 +170783094666,214,0 +170783094714,213,0 +170783094762,214,0 +170783094810,214,0 +170783094858,213,0 +170783094907,213,0 +170783094955,213,0 +170783095005,213,0 +170783095052,213,0 +170783095100,213,0 +170783095148,213,0 +170783095198,213,0 +170783095246,213,0 +170783095294,213,0 +170783095342,213,0 +170783095390,213,0 +170783095437,214,0 +170783095487,214,0 +170783095535,214,0 +170783095583,214,0 +170783095631,214,0 +170783095679,214,0 +170783095728,214,0 +170783095776,213,0 +170783095824,213,0 +170783095872,213,0 +170783095920,213,0 +170783095969,213,0 +170783096019,213,0 +170783096067,213,0 +170783096115,213,0 +170783096162,213,0 +170783096212,213,0 +170783096261,213,0 +170783096309,213,0 +170783096357,214,0 +170783096405,214,0 +170783096453,214,0 +170783096501,214,0 +170783096549,214,0 +170783096598,214,0 +170783096646,213,0 +170783096696,213,0 +170783096744,213,0 +170783096793,213,0 +170783096843,213,0 +170783096891,213,0 +170783096939,213,0 +170783096986,213,0 +170783097034,213,0 +170783097082,213,0 +170783097130,214,0 +170783097180,214,0 +170783097228,214,0 +170783097277,214,0 +170783097325,214,0 +170783097373,214,0 +170783097422,214,0 +170783097472,214,0 +170783097521,214,0 +170783097570,213,0 +170783097618,213,0 +170783097666,213,0 +170783097714,213,0 +170783097762,213,0 +170783097810,213,0 +170783097858,213,0 +170783097905,213,0 +170783097953,213,0 +170783098001,213,0 +170783098049,214,0 +170783098097,214,0 +170783098145,214,0 +170783098194,214,0 +170783098244,214,0 +170783098292,214,0 +170783098340,214,0 +170783098389,214,0 +170783098437,214,0 +170783098485,213,0 +170783098535,213,0 +170783098583,213,0 +170783098632,213,0 +170783098682,213,0 +170783098730,213,0 +170783098778,213,0 +170783098825,213,0 +170783098875,213,0 +170783098923,213,0 +170783098971,214,0 +170783099020,213,0 +170783099068,213,0 +170783099116,214,0 +170783099164,213,0 +170783099213,214,0 +170783099261,214,0 +170783099309,214,0 +170783099357,213,0 +170783099405,213,0 +170783099453,213,0 +170783099501,213,0 +170783099550,213,0 +170783099598,213,0 +170783099646,213,0 +170783099694,213,0 +170783099742,213,0 +170783099790,214,0 +170783099839,213,0 +170783099887,214,0 +170783099935,214,0 +170783099985,214,0 +170783100034,214,0 +170783100084,214,0 +170783100133,214,0 +170783100181,214,0 +170783100230,214,0 +170783100278,213,0 +170783100327,213,0 +170783100375,213,0 +170783100423,213,0 +170783100473,213,0 +170783100522,213,0 +170783100572,213,0 +170783100621,213,0 +170783100669,214,0 +170783100717,214,0 +170783100765,214,0 +170783100813,214,0 +170783100862,214,0 +170783100910,214,0 +170783100958,214,0 +170783101006,214,0 +170783101054,214,0 +170783101102,214,0 +170783101150,214,0 +170783101198,213,0 +170783101246,213,0 +170783101294,213,0 +170783101342,213,0 +170783101390,213,0 +170783101439,213,0 +170783101488,213,0 +170783101538,213,0 +170783101586,213,0 +170783101634,213,0 +170783101683,213,0 +170783101731,214,0 +170783101781,214,0 +170783101829,214,0 +170783101878,214,0 +170783101928,214,0 +170783101977,214,0 +170783102025,214,0 +170783102075,213,0 +170783102123,213,0 +170783102172,213,0 +170783102222,213,0 +170783102271,213,0 +170783102321,213,0 +170783102371,213,0 +170783102418,213,0 +170783102468,213,0 +170783102517,213,0 +170783102565,214,0 +170783102613,214,0 +170783102663,214,0 +170783102711,214,0 +170783102759,214,0 +170783102807,214,0 +170783102856,214,0 +170783102904,214,0 +170783102954,214,0 +170783103002,213,0 +170783103050,212,0 +170783103099,213,0 +170783103147,212,0 +170783103197,213,0 +170783103246,213,0 +170783103294,213,0 +170783103343,213,0 +170783103393,213,0 +170783103441,213,0 +170783103489,213,0 +170783103538,213,0 +170783103586,214,0 +170783103634,213,0 +170783103682,213,0 +170783103730,214,0 +170783103778,214,0 +170783103826,214,0 +170783103875,214,0 +170783103923,213,0 +170783103973,213,0 +170783104022,213,0 +170783104070,213,0 +170783104118,213,0 +170783104168,213,0 +170783104216,213,0 +170783104264,213,0 +170783104311,213,0 +170783104361,214,0 +170783104411,214,0 +170783104459,214,0 +170783104506,214,0 +170783104556,214,0 +170783104604,214,0 +170783104652,214,0 +170783104700,214,0 +170783104749,214,0 +170783104799,213,0 +170783104848,213,0 +170783104896,213,0 +170783104944,213,0 +170783104992,213,0 +170783105040,213,0 +170783105089,213,0 +170783105137,214,0 +170783105187,214,0 +170783105236,214,0 +170783105284,214,0 +170783105332,214,0 +170783105382,214,0 +170783105431,214,0 +170783105479,214,0 +170783105527,214,0 +170783105575,214,0 +170783105622,214,0 +170783105672,214,0 +170783105720,213,0 +170783105768,213,0 +170783105816,213,0 +170783105864,213,0 +170783105912,213,0 +170783105960,213,0 +170783106008,214,0 +170783106056,214,0 +170783106105,214,0 +170783106153,214,0 +170783106201,214,0 +170783106249,214,0 +170783106297,214,0 +170783106345,214,0 +170783106393,214,0 +170783106442,214,0 +170783106490,214,0 +170783106539,214,0 +170783106587,214,0 +170783106637,213,0 +170783106685,213,0 +170783106733,213,0 +170783106781,213,0 +170783106828,213,0 +170783106878,214,0 +170783106926,214,0 +170783106974,214,0 +170783107022,213,0 +170783107070,214,0 +170783107118,214,0 +170783107165,214,0 +170783107213,214,0 +170783107261,214,0 +170783107311,214,0 +170783107359,214,0 +170783107408,214,0 +170783107458,214,0 +170783107506,213,0 +170783107554,213,0 +170783107603,213,0 +170783107651,213,0 +170783107699,213,0 +170783107747,213,0 +170783107795,213,0 +170783107843,213,0 +170783107892,214,0 +170783107940,214,0 +170783107988,214,0 +170783108036,214,0 +170783108084,214,0 +170783108132,214,0 +170783108181,214,0 +170783108229,214,0 +170783108278,214,0 +170783108328,214,0 +170783108376,214,0 +170783108424,213,0 +170783108472,213,0 +170783108520,213,0 +170783108567,213,0 +170783108617,213,0 +170783108665,213,0 +170783108714,213,0 +170783108764,213,0 +170783108813,213,0 +170783108861,213,0 +170783108909,213,0 +170783108957,213,0 +170783109007,213,0 +170783109056,214,0 +170783109105,214,0 +170783109153,213,0 +170783109201,213,0 +170783109251,213,0 +170783109299,213,0 +170783109347,212,0 +170783109395,213,0 +170783109444,213,0 +170783109492,212,0 +170783109540,213,0 +170783109588,213,0 +170783109636,213,0 +170783109685,213,0 +170783109735,213,0 +170783109782,213,0 +170783109830,213,0 +170783109880,213,0 +170783109928,213,0 +170783109975,213,0 +170783110023,213,0 +170783110071,214,0 +170783110119,214,0 +170783110167,214,0 +170783110216,213,0 +170783110264,213,0 +170783110312,213,0 +170783110362,213,0 +170783110410,213,0 +170783110458,213,0 +170783110505,213,0 +170783110553,213,0 +170783110603,213,0 +170783110651,213,0 +170783110700,213,0 +170783110748,213,0 +170783110796,213,0 +170783110845,213,0 +170783110893,213,0 +170783110941,213,0 +170783110989,214,0 +170783111037,213,0 +170783111085,214,0 +170783111133,213,0 +170783111181,213,0 +170783111229,213,0 +170783111277,213,0 +170783111325,213,0 +170783111373,213,0 +170783111422,213,0 +170783111472,213,0 +170783111521,213,0 +170783111571,213,0 +170783111619,213,0 +170783111667,213,0 +170783111714,214,0 +170783111762,214,0 +170783111810,214,0 +170783111858,214,0 +170783111908,214,0 +170783111957,214,0 +170783112005,214,0 +170783112053,213,0 +170783112102,213,0 +170783112150,213,0 +170783112198,213,0 +170783112246,213,0 +170783112294,213,0 +170783112342,213,0 +170783112390,213,0 +170783112438,213,0 +170783112487,213,0 +170783112535,213,0 +170783112583,214,0 +170783112631,214,0 +170783112679,214,0 +170783112728,214,0 +170783112776,214,0 +170783112824,214,0 +170783112872,214,0 +170783112921,214,0 +170783112969,213,0 +170783113017,213,0 +170783113065,213,0 +170783113113,213,0 +170783113160,213,0 +170783113208,213,0 +170783113256,213,0 +170783113304,213,0 +170783113354,213,0 +170783113401,214,0 +170783113451,213,0 +170783113499,213,0 +170783113547,214,0 +170783113595,214,0 +170783113643,214,0 +170783113691,214,0 +170783113740,214,0 +170783113788,214,0 +170783113837,213,0 +170783113887,213,0 +170783113935,213,0 +170783113982,213,0 +170783114030,213,0 +170783114078,213,0 +170783114126,213,0 +170783114174,213,0 +170783114222,213,0 +170783114270,213,0 +170783114318,213,0 +170783114365,214,0 +170783114413,214,0 +170783114461,214,0 +170783114509,214,0 +170783114557,214,0 +170783114605,214,0 +170783114653,214,0 +170783114701,214,0 +170783114749,213,0 +170783114796,213,0 +170783114846,213,0 +170783114894,213,0 +170783114942,213,0 +170783114990,213,0 +170783115039,213,0 +170783115089,214,0 +170783115138,214,0 +170783115186,214,0 +170783115235,214,0 +170783115283,214,0 +170783115331,214,0 +170783115381,214,0 +170783115430,214,0 +170783115480,214,0 +170783115527,214,0 +170783115575,214,0 +170783115625,214,0 +170783115672,213,0 +170783115720,213,0 +170783115768,213,0 +170783115816,213,0 +170783115864,213,0 +170783115912,213,0 +170783115960,213,0 +170783116007,214,0 +170783116055,213,0 +170783116103,213,0 +170783116153,214,0 +170783116200,214,0 +170783116248,214,0 +170783116296,214,0 +170783116344,214,0 +170783116394,214,0 +170783116441,214,0 +170783116489,214,0 +170783116537,213,0 +170783116585,213,0 +170783116633,213,0 +170783116680,213,0 +170783116728,213,0 +170783116776,213,0 +170783116824,213,0 +170783116872,213,0 +170783116919,213,0 +170783116967,214,0 +170783117015,213,0 +170783117065,213,0 +170783117114,214,0 +170783117162,214,0 +170783117212,214,0 +170783117261,214,0 +170783117309,214,0 +170783117357,214,0 +170783117405,214,0 +170783117454,213,0 +170783117502,213,0 +170783117550,213,0 +170783117600,213,0 +170783117648,213,0 +170783117696,213,0 +170783117743,213,0 +170783117793,213,0 +170783117841,213,0 +170783117889,213,0 +170783117938,214,0 +170783117988,214,0 +170783118037,214,0 +170783118087,213,0 +170783118135,214,0 +170783118183,214,0 +170783118232,214,0 +170783118280,214,0 +170783118328,214,0 +170783118376,213,0 +170783118425,213,0 +170783118473,213,0 +170783118521,212,0 +170783118571,213,0 +170783118619,213,0 +170783118668,213,0 +170783118717,213,0 +170783118765,213,0 +170783118815,213,0 +170783118863,213,0 +170783118911,214,0 +170783118959,213,0 +170783119008,214,0 +170783119057,214,0 +170783119105,213,0 +170783119153,213,0 +170783119201,214,0 +170783119251,214,0 +170783119299,213,0 +170783119347,213,0 +170783119394,213,0 +170783119442,213,0 +170783119490,213,0 +170783119540,213,0 +170783119588,213,0 +170783119636,213,0 +170783119684,213,0 +170783119732,213,0 +170783119781,213,0 +170783119830,213,0 +170783119878,214,0 +170783119926,214,0 +170783119976,214,0 +170783120024,214,0 +170783120072,214,0 +170783120120,214,0 +170783120169,214,0 +170783120217,213,0 +170783120265,213,0 +170783120313,213,0 +170783120361,213,0 +170783120411,213,0 +170783120460,213,0 +170783120510,213,0 +170783120558,213,0 +170783120606,213,0 +170783120654,213,0 +170783120702,214,0 +170783120749,213,0 +170783120797,214,0 +170783120845,214,0 +170783120893,214,0 +170783120941,214,0 +170783120989,214,0 +170783121038,214,0 +170783121088,213,0 +170783121137,213,0 +170783121185,213,0 +170783121235,213,0 +170783121283,213,0 +170783121331,213,0 +170783121380,213,0 +170783121428,213,0 +170783121476,213,0 +170783121525,213,0 +170783121575,213,0 +170783121623,213,0 +170783121671,214,0 +170783121719,213,0 +170783121767,214,0 +170783121816,214,0 +170783121866,214,0 +170783121914,214,0 +170783121963,214,0 +170783122011,213,0 +170783122059,213,0 +170783122107,213,0 +170783122156,213,0 +170783122204,213,0 +170783122252,213,0 +170783122300,213,0 +170783122349,213,0 +170783122399,213,0 +170783122448,213,0 +170783122496,213,0 +170783122544,214,0 +170783122594,214,0 +170783122643,213,0 +170783122691,214,0 +170783122740,214,0 +170783122788,214,0 +170783122836,214,0 +170783122886,214,0 +170783122934,213,0 +170783122983,213,0 +170783123031,213,0 +170783123079,213,0 +170783123128,213,0 +170783123176,213,0 +170783123226,213,0 +170783123274,213,0 +170783123322,213,0 +170783123371,213,0 +170783123421,213,0 +170783123470,213,0 +170783123520,213,0 +170783123569,213,0 +170783123617,213,0 +170783123667,213,0 +170783123716,213,0 +170783123764,214,0 +170783123812,213,0 +170783123860,212,0 +170783123908,213,0 +170783123956,213,0 +170783124005,213,0 +170783124053,213,0 +170783124103,213,0 +170783124151,213,0 +170783124200,213,0 +170783124250,213,0 +170783124297,213,0 +170783124345,213,0 +170783124393,213,0 +170783124443,213,0 +170783124491,213,0 +170783124539,213,0 +170783124587,213,0 +170783124635,213,0 +170783124684,213,0 +170783124732,213,0 +170783124780,213,0 +170783124828,213,0 +170783124876,213,0 +170783124924,213,0 +170783124972,213,0 +170783125020,213,0 +170783125068,213,0 +170783125116,213,0 +170783125165,213,0 +170783125215,213,0 +170783125264,213,0 +170783125312,213,0 +170783125360,213,0 +170783125408,213,0 +170783125457,214,0 +170783125505,214,0 +170783125553,214,0 +170783125601,214,0 +170783125651,213,0 +170783125699,213,0 +170783125748,213,0 +170783125798,213,0 +170783125846,213,0 +170783125894,213,0 +170783125943,213,0 +170783125991,213,0 +170783126039,213,0 +170783126087,213,0 +170783126135,214,0 +170783126184,213,0 +170783126234,214,0 +170783126283,213,0 +170783126333,214,0 +170783126381,214,0 +170783126428,214,0 +170783126476,214,0 +170783126526,213,0 +170783126576,213,0 +170783126623,213,0 +170783126673,213,0 +170783126721,213,0 +170783126770,213,0 +170783126818,213,0 +170783126866,213,0 +170783126914,213,0 +170783126963,213,0 +170783127011,213,0 +170783127059,214,0 +170783127107,214,0 +170783127155,214,0 +170783127204,214,0 +170783127254,214,0 +170783127302,214,0 +170783127351,214,0 +170783127399,214,0 +170783127449,213,0 +170783127497,213,0 +170783127545,213,0 +170783127593,213,0 +170783127640,213,0 +170783127688,213,0 +170783127736,214,0 +170783127786,213,0 +170783127834,214,0 +170783127882,214,0 +170783127929,214,0 +170783127979,214,0 +170783128028,214,0 +170783128078,214,0 +170783128126,214,0 +170783128174,214,0 +170783128223,214,0 +170783128273,214,0 +170783128321,214,0 +170783128369,213,0 +170783128418,213,0 +170783128466,213,0 +170783128514,213,0 +170783128562,213,0 +170783128611,213,0 +170783128659,213,0 +170783128709,214,0 +170783128757,214,0 +170783128805,214,0 +170783128853,214,0 +170783128901,214,0 +170783128949,214,0 +170783128996,214,0 +170783129046,214,0 +170783129094,214,0 +170783129141,214,0 +170783129189,214,0 +170783129237,214,0 +170783129287,213,0 +170783129335,213,0 +170783129382,213,0 +170783129430,213,0 +170783129480,213,0 +170783129528,213,0 +170783129576,213,0 +170783129623,213,0 +170783129671,214,0 +170783129719,214,0 +170783129767,214,0 +170783129815,214,0 +170783129863,214,0 +170783129911,214,0 +170783129959,214,0 +170783130007,214,0 +170783130055,214,0 +170783130102,214,0 +170783130150,214,0 +170783130198,213,0 +170783130246,213,0 +170783130294,213,0 +170783130342,213,0 +170783130390,213,0 +170783130437,213,0 +170783130485,213,0 +170783130533,213,0 +170783130581,214,0 +170783130629,214,0 +170783130677,214,0 +170783130725,214,0 +170783130772,214,0 +170783130820,214,0 +170783130868,214,0 +170783130916,214,0 +170783130964,214,0 +170783131012,214,0 +170783131060,214,0 +170783131108,213,0 +170783131157,213,0 +170783131205,213,0 +170783131253,213,0 +170783131303,213,0 +170783131351,213,0 +170783131400,213,0 +170783131448,213,0 +170783131496,213,0 +170783131544,213,0 +170783131591,214,0 +170783131639,214,0 +170783131687,214,0 +170783131735,214,0 +170783131783,214,0 +170783131830,214,0 +170783131878,214,0 +170783131928,214,0 +170783131976,214,0 +170783132023,213,0 +170783132071,213,0 +170783132119,213,0 +170783132167,213,0 +170783132215,213,0 +170783132263,213,0 +170783132310,213,0 +170783132358,213,0 +170783132406,214,0 +170783132454,213,0 +170783132502,214,0 +170783132549,214,0 +170783132597,214,0 +170783132645,214,0 +170783132693,214,0 +170783132741,214,0 +170783132789,213,0 +170783132836,214,0 +170783132884,214,0 +170783132932,213,0 +170783132980,213,0 +170783133028,213,0 +170783133076,213,0 +170783133123,213,0 +170783133171,213,0 +170783133219,213,0 +170783133267,213,0 +170783133315,213,0 +170783133363,213,0 +170783133411,213,0 +170783133458,213,0 +170783133508,213,0 +170783133556,213,0 +170783133604,213,0 +170783133653,213,0 +170783133701,213,0 +170783133749,214,0 +170783133798,213,0 +170783133846,212,0 +170783133894,213,0 +170783133942,213,0 +170783133990,213,0 +170783134038,213,0 +170783134086,213,0 +170783134133,213,0 +170783134181,213,0 +170783134229,213,0 +170783134277,213,0 +170783134325,213,0 +170783134373,213,0 +170783134423,213,0 +170783134472,213,0 +170783134520,214,0 +170783134568,214,0 +170783134616,214,0 +170783134664,214,0 +170783134711,213,0 +170783134759,213,0 +170783134807,213,0 +170783134855,213,0 +170783134903,213,0 +170783134951,213,0 +170783134999,213,0 +170783135046,213,0 +170783135094,213,0 +170783135144,213,0 +170783135193,213,0 +170783135243,214,0 +170783135292,214,0 +170783135340,214,0 +170783135388,214,0 +170783135436,214,0 +170783135485,214,0 +170783135533,214,0 +170783135581,214,0 +170783135631,213,0 +170783135680,213,0 +170783135728,213,0 +170783135776,213,0 +170783135825,213,0 +170783135873,213,0 +170783135921,213,0 +170783135969,213,0 +170783136017,213,0 +170783136066,213,0 +170783136114,213,0 +170783136162,213,0 +170783136210,214,0 +170783136258,214,0 +170783136307,214,0 +170783136355,214,0 +170783136403,214,0 +170783136451,214,0 +170783136499,214,0 +170783136547,213,0 +170783136594,213,0 +170783136644,213,0 +170783136692,213,0 +170783136739,213,0 +170783136787,213,0 +170783136835,213,0 +170783136883,213,0 +170783136932,213,0 +170783136980,213,0 +170783137029,213,0 +170783137077,213,0 +170783137127,213,0 +170783137175,213,0 +170783137222,213,0 +170783137272,214,0 +170783137320,213,0 +170783137368,213,0 +170783137415,213,0 +170783137465,213,0 +170783137513,213,0 +170783137561,213,0 +170783137609,213,0 +170783137657,213,0 +170783137706,213,0 +170783137754,213,0 +170783137804,213,0 +170783137851,213,0 +170783137901,213,0 +170783137949,213,0 +170783137997,213,0 +170783138046,213,0 +170783138094,214,0 +170783138143,214,0 +170783138191,214,0 +170783138239,214,0 +170783138287,214,0 +170783138334,213,0 +170783138382,213,0 +170783138430,213,0 +170783138478,213,0 +170783138526,213,0 +170783138574,213,0 +170783138621,213,0 +170783138669,213,0 +170783138717,213,0 +170783138766,213,0 +170783138814,213,0 +170783138862,213,0 +170783138910,213,0 +170783138958,213,0 +170783139005,213,0 +170783139053,213,0 +170783139101,214,0 +170783139149,214,0 +170783139197,214,0 +170783139246,213,0 +170783139294,213,0 +170783139343,213,0 +170783139391,213,0 +170783139439,213,0 +170783139487,213,0 +170783139535,213,0 +170783139584,213,0 +170783139632,213,0 +170783139680,213,0 +170783139728,213,0 +170783139775,213,0 +170783139825,213,0 +170783139873,214,0 +170783139921,214,0 +170783139968,214,0 +170783140016,214,0 +170783140064,214,0 +170783140112,214,0 +170783140160,213,0 +170783140208,213,0 +170783140256,213,0 +170783140306,213,0 +170783140353,213,0 +170783140403,213,0 +170783140451,213,0 +170783140499,213,0 +170783140547,213,0 +170783140595,213,0 +170783140642,213,0 +170783140690,213,0 +170783140740,214,0 +170783140788,214,0 +170783140836,214,0 +170783140885,213,0 +170783140933,214,0 +170783140981,214,0 +170783141029,214,0 +170783141077,213,0 +170783141125,213,0 +170783141174,213,0 +170783141222,213,0 +170783141270,213,0 +170783141319,213,0 +170783141367,213,0 +170783141415,213,0 +170783141465,213,0 +170783141512,213,0 +170783141560,214,0 +170783141610,213,0 +170783141658,214,0 +170783141706,214,0 +170783141754,214,0 +170783141802,214,0 +170783141849,214,0 +170783141899,214,0 +170783141947,214,0 +170783141996,213,0 +170783142046,213,0 +170783142094,213,0 +170783142141,213,0 +170783142191,213,0 +170783142239,213,0 +170783142287,213,0 +170783142336,213,0 +170783142384,213,0 +170783142432,214,0 +170783142481,214,0 +170783142531,214,0 +170783142580,214,0 +170783142630,214,0 +170783142678,214,0 +170783142727,214,0 +170783142777,214,0 +170783142824,214,0 +170783142872,213,0 +170783142922,213,0 +170783142970,213,0 +170783143018,213,0 +170783143066,213,0 +170783143115,213,0 +170783143163,213,0 +170783143212,213,0 +170783143260,213,0 +170783143308,213,0 +170783143358,214,0 +170783143406,214,0 +170783143453,214,0 +170783143501,214,0 +170783143549,214,0 +170783143597,214,0 +170783143645,214,0 +170783143694,214,0 +170783143744,214,0 +170783143793,213,0 +170783143843,213,0 +170783143891,213,0 +170783143939,213,0 +170783143987,213,0 +170783144035,213,0 +170783144084,213,0 +170783144132,213,0 +170783144181,213,0 +170783144231,213,0 +170783144280,213,0 +170783144328,214,0 +170783144376,214,0 +170783144424,214,0 +170783144472,214,0 +170783144520,214,0 +170783144570,214,0 +170783144618,214,0 +170783144665,214,0 +170783144713,213,0 +170783144761,213,0 +170783144811,213,0 +170783144859,213,0 +170783144906,213,0 +170783144954,213,0 +170783145002,213,0 +170783145051,213,0 +170783145099,213,0 +170783145147,214,0 +170783145195,213,0 +170783145243,213,0 +170783145291,214,0 +170783145340,214,0 +170783145390,214,0 +170783145438,214,0 +170783145486,214,0 +170783145534,214,0 +170783145582,214,0 +170783145630,213,0 +170783145677,213,0 +170783145725,213,0 +170783145773,213,0 +170783145821,213,0 +170783145869,213,0 +170783145917,214,0 +170783145967,213,0 +170783146016,213,0 +170783146064,213,0 +170783146112,214,0 +170783146160,214,0 +170783146209,214,0 +170783146259,214,0 +170783146308,214,0 +170783146356,214,0 +170783146404,214,0 +170783146452,214,0 +170783146501,214,0 +170783146551,213,0 +170783146599,213,0 +170783146648,213,0 +170783146698,213,0 +170783146747,213,0 +170783146797,213,0 +170783146844,213,0 +170783146892,213,0 +170783146940,214,0 +170783146988,214,0 +170783147036,213,0 +170783147084,214,0 +170783147132,214,0 +170783147180,214,0 +170783147228,214,0 +170783147277,214,0 +170783147327,214,0 +170783147375,214,0 +170783147423,214,0 +170783147471,213,0 +170783147518,213,0 +170783147566,213,0 +170783147614,213,0 +170783147662,213,0 +170783147710,213,0 +170783147759,213,0 +170783147807,213,0 +170783147855,213,0 +170783147903,213,0 +170783147951,213,0 +170783148001,214,0 +170783148048,214,0 +170783148096,214,0 +170783148144,214,0 +170783148192,214,0 +170783148240,214,0 +170783148288,213,0 +170783148338,214,0 +170783148385,213,0 +170783148433,213,0 +170783148481,213,0 +170783148529,213,0 +170783148577,213,0 +170783148625,213,0 +170783148673,213,0 +170783148722,213,0 +170783148772,213,0 +170783148819,213,0 +170783148869,213,0 +170783148917,214,0 +170783148965,214,0 +170783149013,214,0 +170783149062,214,0 +170783149110,214,0 +170783149158,214,0 +170783149206,214,0 +170783149254,214,0 +170783149303,213,0 +170783149353,213,0 +170783149402,213,0 +170783149450,213,0 +170783149498,213,0 +170783149547,213,0 +170783149597,213,0 +170783149645,214,0 +170783149693,213,0 +170783149741,214,0 +170783149790,214,0 +170783149840,214,0 +170783149887,214,0 +170783149935,214,0 +170783149983,214,0 +170783150031,214,0 +170783150079,214,0 +170783150127,214,0 +170783150175,214,0 +170783150223,213,0 +170783150271,213,0 +170783150320,213,0 +170783150368,213,0 +170783150416,213,0 +170783150464,213,0 +170783150513,213,0 +170783150561,213,0 +170783150609,213,0 +170783150657,213,0 +170783150705,214,0 +170783150753,214,0 +170783150803,214,0 +170783150851,214,0 +170783150899,214,0 +170783150948,214,0 +170783150996,214,0 +170783151044,214,0 +170783151092,214,0 +170783151140,213,0 +170783151188,213,0 +170783151236,213,0 +170783151284,213,0 +170783151332,213,0 +170783151380,213,0 +170783151427,213,0 +170783151475,213,0 +170783151523,213,0 +170783151571,213,0 +170783151619,213,0 +170783151667,213,0 +170783151715,214,0 +170783151764,214,0 +170783151814,214,0 +170783151862,214,0 +170783151910,214,0 +170783151957,214,0 +170783152005,214,0 +170783152053,213,0 +170783152103,213,0 +170783152152,213,0 +170783152200,213,0 +170783152248,213,0 +170783152298,213,0 +170783152345,213,0 +170783152395,213,0 +170783152443,213,0 +170783152492,213,0 +170783152540,213,0 +170783152590,213,0 +170783152639,214,0 +170783152687,214,0 +170783152735,214,0 +170783152783,214,0 +170783152832,214,0 +170783152880,214,0 +170783152929,214,0 +170783152979,213,0 +170783153027,213,0 +170783153075,213,0 +170783153123,213,0 +170783153171,213,0 +170783153219,213,0 +170783153266,213,0 +170783153314,213,0 +170783153362,213,0 +170783153412,213,0 +170783153461,213,0 +170783153509,213,0 +170783153557,213,0 +170783153605,214,0 +170783153652,214,0 +170783153700,214,0 +170783153748,214,0 +170783153796,214,0 +170783153843,214,0 +170783153891,213,0 +170783153939,213,0 +170783153987,213,0 +170783154035,213,0 +170783154083,213,0 +170783154130,213,0 +170783154180,213,0 +170783154228,213,0 +170783154276,213,0 +170783154323,213,0 +170783154371,213,0 +170783154419,213,0 +170783154467,213,0 +170783154515,213,0 +170783154563,213,0 +170783154613,213,0 +170783154660,213,0 +170783154708,213,0 +170783154756,214,0 +170783154804,213,0 +170783154852,213,0 +170783154900,212,0 +170783154948,213,0 +170783154996,213,0 +170783155044,213,0 +170783155092,213,0 +170783155140,213,0 +170783155187,213,0 +170783155235,213,0 +170783155283,213,0 +170783155331,213,0 +170783155379,213,0 +170783155427,213,0 +170783155475,213,0 +170783155523,213,0 +170783155571,213,0 +170783155619,213,0 +170783155667,214,0 +170783155714,214,0 +170783155762,213,0 +170783155812,213,0 +170783155860,213,0 +170783155908,213,0 +170783155955,213,0 +170783156003,213,0 +170783156053,213,0 +170783156102,213,0 +170783156150,213,0 +170783156198,213,0 +170783156246,213,0 +170783156294,214,0 +170783156342,214,0 +170783156390,214,0 +170783156438,214,0 +170783156486,214,0 +170783156533,214,0 +170783156581,214,0 +170783156629,214,0 +170783156677,213,0 +170783156725,213,0 +170783156773,213,0 +170783156821,213,0 +170783156870,213,0 +170783156918,213,0 +170783156966,213,0 +170783157016,213,0 +170783157063,213,0 +170783157111,213,0 +170783157159,213,0 +170783157209,213,0 +170783157256,213,0 +170783157304,213,0 +170783157354,213,0 +170783157403,214,0 +170783157453,214,0 +170783157502,214,0 +170783157550,214,0 +170783157598,213,0 +170783157646,213,0 +170783157695,213,0 +170783157743,213,0 +170783157793,213,0 +170783157841,213,0 +170783157889,213,0 +170783157938,213,0 +170783157986,213,0 +170783158036,213,0 +170783158083,213,0 +170783158131,214,0 +170783158179,213,0 +170783158227,213,0 +170783158276,213,0 +170783158324,214,0 +170783158372,214,0 +170783158420,214,0 +170783158468,214,0 +170783158515,213,0 +170783158563,213,0 +170783158611,213,0 +170783158661,213,0 +170783158709,213,0 +170783158758,213,0 +170783158808,213,0 +170783158857,213,0 +170783158906,213,0 +170783158954,214,0 +170783159002,213,0 +170783159052,214,0 +170783159100,214,0 +170783159149,214,0 +170783159197,214,0 +170783159247,214,0 +170783159295,214,0 +170783159343,214,0 +170783159390,214,0 +170783159438,213,0 +170783159488,213,0 +170783159537,213,0 +170783159585,213,0 +170783159633,213,0 +170783159681,213,0 +170783159729,213,0 +170783159777,213,0 +170783159824,214,0 +170783159874,214,0 +170783159922,213,0 +170783159970,213,0 +170783160017,214,0 +170783160065,214,0 +170783160113,214,0 +170783160163,214,0 +170783160210,214,0 +170783160258,214,0 +170783160306,214,0 +170783160354,213,0 +170783160402,213,0 +170783160451,213,0 +170783160499,213,0 +170783160547,213,0 +170783160597,213,0 +170783160644,213,0 +170783160692,213,0 +170783160740,213,0 +170783160788,214,0 +170783160838,214,0 +170783160886,214,0 +170783160935,214,0 +170783160983,214,0 +170783161031,214,0 +170783161080,214,0 +170783161128,214,0 +170783161176,214,0 +170783161224,214,0 +170783161272,213,0 +170783161321,213,0 +170783161369,213,0 +170783161417,213,0 +170783161467,213,0 +170783161516,213,0 +170783161566,213,0 +170783161614,213,0 +170783161661,213,0 +170783161709,213,0 +170783161757,213,0 +170783161805,213,0 +170783161853,213,0 +170783161902,214,0 +170783161950,214,0 +170783161998,213,0 +170783162046,213,0 +170783162094,214,0 +170783162143,214,0 +170783162191,213,0 +170783162239,213,0 +170783162288,213,0 +170783162336,213,0 +170783162384,213,0 +170783162432,213,0 +170783162480,213,0 +170783162529,213,0 +170783162577,213,0 +170783162625,213,0 +170783162673,213,0 +170783162721,213,0 +170783162770,213,0 +170783162818,213,0 +170783162866,213,0 +170783162915,214,0 +170783162963,214,0 +170783163013,214,0 +170783163060,214,0 +170783163108,213,0 +170783163158,213,0 +170783163207,213,0 +170783163257,213,0 +170783163305,213,0 +170783163353,213,0 +170783163402,213,0 +170783163450,213,0 +170783163498,213,0 +170783163546,213,0 +170783163594,213,0 +170783163643,213,0 +170783163693,213,0 +170783163741,213,0 +170783163789,213,0 +170783163837,213,0 +170783163886,213,0 +170783163934,214,0 +170783163983,214,0 +170783164031,213,0 +170783164079,213,0 +170783164127,213,0 +170783164175,213,0 +170783164223,213,0 +170783164271,213,0 +170783164320,213,0 +170783164368,213,0 +170783164418,213,0 +170783164466,213,0 +170783164514,213,0 +170783164562,213,0 +170783164610,213,0 +170783164658,213,0 +170783164705,214,0 +170783164753,214,0 +170783164801,214,0 +170783164849,214,0 +170783164899,214,0 +170783164946,213,0 +170783164996,213,0 +170783165044,213,0 +170783165093,213,0 +170783165143,213,0 +170783165192,213,0 +170783165240,213,0 +170783165288,213,0 +170783165337,213,0 +170783165385,213,0 +170783165433,213,0 +170783165481,214,0 +170783165531,213,0 +170783165580,214,0 +170783165628,214,0 +170783165678,214,0 +170783165726,214,0 +170783165775,214,0 +170783165823,214,0 +170783165873,213,0 +170783165921,213,0 +170783165971,213,0 +170783166019,213,0 +170783166067,213,0 +170783166115,213,0 +170783166162,213,0 +170783166210,213,0 +170783166258,213,0 +170783166306,213,0 +170783166354,213,0 +170783166402,213,0 +170783166450,214,0 +170783166499,214,0 +170783166547,214,0 +170783166595,214,0 +170783166643,214,0 +170783166691,214,0 +170783166739,214,0 +170783166789,213,0 +170783166838,213,0 +170783166888,213,0 +170783166935,213,0 +170783166983,213,0 +170783167031,213,0 +170783167079,213,0 +170783167127,213,0 +170783167175,213,0 +170783167223,213,0 +170783167272,213,0 +170783167322,213,0 +170783167370,214,0 +170783167418,213,0 +170783167466,213,0 +170783167513,213,0 +170783167561,213,0 +170783167609,214,0 +170783167657,214,0 +170783167705,213,0 +170783167753,212,0 +170783167801,212,0 +170783167849,212,0 +170783167897,213,0 +170783167946,213,0 +170783167994,213,0 +170783168042,213,0 +170783168090,213,0 +170783168140,213,0 +170783168187,213,0 +170783168235,213,0 +170783168283,213,0 +170783168333,213,0 +170783168382,213,0 +170783168432,213,0 +170783168480,213,0 +170783168529,214,0 +170783168577,213,0 +170783168627,213,0 +170783168675,213,0 +170783168723,213,0 +170783168770,213,0 +170783168818,213,0 +170783168866,213,0 +170783168914,213,0 +170783168964,213,0 +170783169012,213,0 +170783169061,213,0 +170783169109,214,0 +170783169157,213,0 +170783169205,214,0 +170783169253,214,0 +170783169302,214,0 +170783169352,214,0 +170783169400,214,0 +170783169448,214,0 +170783169496,214,0 +170783169544,213,0 +170783169591,213,0 +170783169641,213,0 +170783169689,213,0 +170783169736,213,0 +170783169786,213,0 +170783169834,213,0 +170783169882,213,0 +170783169930,213,0 +170783169978,214,0 +170783170026,214,0 +170783170075,214,0 +170783170124,214,0 +170783170174,214,0 +170783170222,214,0 +170783170269,214,0 +170783170317,214,0 +170783170365,214,0 +170783170413,214,0 +170783170461,213,0 +170783170509,213,0 +170783170557,213,0 +170783170605,213,0 +170783170652,213,0 +170783170700,213,0 +170783170748,213,0 +170783170796,214,0 +170783170844,214,0 +170783170892,214,0 +170783170940,214,0 +170783170988,214,0 +170783171038,214,0 +170783171087,214,0 +170783171135,214,0 +170783171183,214,0 +170783171231,214,0 +170783171279,214,0 +170783171327,214,0 +170783171375,213,0 +170783171422,213,0 +170783171470,213,0 +170783171518,213,0 +170783171568,213,0 +170783171615,213,0 +170783171663,213,0 +170783171711,214,0 +170783171761,214,0 +170783171809,214,0 +170783171856,214,0 +170783171904,214,0 +170783171952,214,0 +170783172002,214,0 +170783172051,214,0 +170783172101,214,0 +170783172149,214,0 +170783172197,214,0 +170783172244,214,0 +170783172292,213,0 +170783172340,213,0 +170783172388,213,0 +170783172436,213,0 +170783172486,213,0 +170783172534,213,0 +170783172583,213,0 +170783172633,214,0 +170783172682,214,0 +170783172730,213,0 +170783172778,214,0 +170783172826,214,0 +170783172874,214,0 +170783172922,214,0 +170783172970,214,0 +170783173018,214,0 +170783173065,214,0 +170783173113,214,0 +170783173161,214,0 +170783173209,213,0 +170783173257,213,0 +170783173305,213,0 +170783173355,213,0 +170783173403,213,0 +170783173450,213,0 +170783173498,213,0 +170783173546,213,0 +170783173594,213,0 +170783173642,213,0 +170783173691,214,0 +170783173739,213,0 +170783173787,214,0 +170783173835,214,0 +170783173883,214,0 +170783173933,214,0 +170783173980,214,0 +170783174028,214,0 +170783174076,214,0 +170783174124,213,0 +170783174172,213,0 +170783174221,213,0 +170783174271,213,0 +170783174319,213,0 +170783174367,213,0 +170783174414,213,0 +170783174464,213,0 +170783174513,213,0 +170783174561,214,0 +170783174611,213,0 +170783174660,214,0 +170783174708,214,0 +170783174756,214,0 +170783174804,214,0 +170783174852,214,0 +170783174901,214,0 +170783174951,214,0 +170783174999,214,0 +170783175047,213,0 +170783175094,213,0 +170783175144,213,0 +170783175193,213,0 +170783175241,213,0 +170783175289,213,0 +170783175337,213,0 +170783175385,213,0 +170783175435,213,0 +170783175482,213,0 +170783175530,214,0 +170783175578,214,0 +170783175628,214,0 +170783175677,214,0 +170783175727,214,0 +170783175775,214,0 +170783175824,214,0 +170783175872,214,0 +170783175920,214,0 +170783175968,213,0 +170783176017,213,0 +170783176065,213,0 +170783176113,213,0 +170783176161,213,0 +170783176209,213,0 +170783176257,213,0 +170783176305,214,0 +170783176353,214,0 +170783176402,214,0 +170783176450,214,0 +170783176499,214,0 +170783176547,214,0 +170783176595,214,0 +170783176643,214,0 +170783176691,213,0 +170783176739,214,0 +170783176788,214,0 +170783176836,214,0 +170783176886,213,0 +170783176935,213,0 +170783176985,212,0 +170783177032,213,0 +170783177080,213,0 +170783177130,213,0 +170783177178,213,0 +170783177226,213,0 +170783177274,213,0 +170783177322,213,0 +170783177371,213,0 +170783177421,213,0 +170783177469,213,0 +170783177518,214,0 +170783177568,214,0 +170783177616,214,0 +170783177665,214,0 +170783177715,214,0 +170783177762,214,0 +170783177810,213,0 +170783177858,213,0 +170783177906,213,0 +170783177956,213,0 +170783178004,213,0 +170783178053,213,0 +170783178101,213,0 +170783178151,213,0 +170783178198,213,0 +170783178246,213,0 +170783178294,213,0 +170783178344,213,0 +170783178393,213,0 +170783178443,213,0 +170783178490,213,0 +170783178540,214,0 +170783178589,213,0 +170783178637,214,0 +170783178687,214,0 +170783178736,213,0 +170783178786,213,0 +170783178834,213,0 +170783178883,213,0 +170783178931,213,0 +170783178979,213,0 +170783179027,213,0 +170783179076,213,0 +170783179124,213,0 +170783179172,213,0 +170783179220,213,0 +170783179268,213,0 +170783179316,213,0 +170783179363,213,0 +170783179411,213,0 +170783179459,214,0 +170783179507,214,0 +170783179555,214,0 +170783179603,214,0 +170783179651,213,0 +170783179699,213,0 +170783179747,213,0 +170783179796,213,0 +170783179844,213,0 +170783179892,213,0 +170783179941,213,0 +170783179989,213,0 +170783180037,213,0 +170783180085,213,0 +170783180133,214,0 +170783180181,214,0 +170783180230,214,0 +170783180280,214,0 +170783180329,214,0 +170783180379,214,0 +170783180427,214,0 +170783180477,214,0 +170783180524,214,0 +170783180572,213,0 +170783180620,213,0 +170783180668,213,0 +170783180718,213,0 +170783180766,213,0 +170783180814,213,0 +170783180861,213,0 +170783180909,213,0 +170783180959,213,0 +170783181008,213,0 +170783181056,213,0 +170783181104,214,0 +170783181154,214,0 +170783181203,214,0 +170783181253,214,0 +170783181301,214,0 +170783181349,214,0 +170783181398,214,0 +170783181446,213,0 +170783181494,213,0 +170783181542,213,0 +170783181590,213,0 +170783181639,213,0 +170783181689,213,0 +170783181737,213,0 +170783181785,213,0 +170783181833,213,0 +170783181882,213,0 +170783181932,213,0 +170783181981,213,0 +170783182029,213,0 +170783182077,214,0 +170783182126,214,0 +170783182174,214,0 +170783182222,214,0 +170783182270,214,0 +170783182318,214,0 +170783182366,214,0 +170783182414,213,0 +170783182462,213,0 +170783182509,213,0 +170783182559,213,0 +170783182608,213,0 +170783182656,213,0 +170783182706,213,0 +170783182754,213,0 +170783182803,213,0 +170783182851,213,0 +170783182901,213,0 +170783182950,213,0 +170783182999,213,0 +170783183047,214,0 +170783183097,214,0 +170783183146,213,0 +170783183194,214,0 +170783183242,214,0 +170783183292,213,0 +170783183341,213,0 +170783183389,213,0 +170783183437,213,0 +170783183485,213,0 +170783183532,213,0 +170783183580,213,0 +170783183630,213,0 +170783183678,213,0 +170783183727,213,0 +170783183775,213,0 +170783183824,213,0 +170783183872,213,0 +170783183920,213,0 +170783183968,213,0 +170783184016,213,0 +170783184066,213,0 +170783184115,213,0 +170783184163,214,0 +170783184213,213,0 +170783184260,213,0 +170783184308,213,0 +170783184358,213,0 +170783184406,213,0 +170783184455,213,0 +170783184503,213,0 +170783184551,213,0 +170783184599,213,0 +170783184647,213,0 +170783184694,213,0 +170783184742,213,0 +170783184790,213,0 +170783184838,213,0 +170783184886,214,0 +170783184934,213,0 +170783184983,214,0 +170783185031,214,0 +170783185079,214,0 +170783185127,214,0 +170783185177,213,0 +170783185226,213,0 +170783185274,213,0 +170783185322,213,0 +170783185370,213,0 +170783185419,213,0 +170783185467,213,0 +170783185515,213,0 +170783185563,213,0 +170783185611,213,0 +170783185659,213,0 +170783185708,213,0 +170783185758,213,0 +170783185807,213,0 +170783185855,213,0 +170783185903,214,0 +170783185951,213,0 +170783185999,214,0 +170783186047,214,0 +170783186095,213,0 +170783186143,213,0 +170783186191,213,0 +170783186239,213,0 +170783186288,213,0 +170783186336,213,0 +170783186384,213,0 +170783186433,213,0 +170783186483,213,0 +170783186532,213,0 +170783186582,213,0 +170783186631,213,0 +170783186681,214,0 +170783186729,214,0 +170783186777,214,0 +170783186825,214,0 +170783186873,214,0 +170783186921,213,0 +170783186970,213,0 +170783187020,213,0 +170783187067,213,0 +170783187115,213,0 +170783187163,213,0 +170783187211,213,0 +170783187261,213,0 +170783187309,213,0 +170783187356,213,0 +170783187404,213,0 +170783187452,213,0 +170783187500,213,0 +170783187548,214,0 +170783187595,213,0 +170783187643,214,0 +170783187691,214,0 +170783187739,213,0 +170783187787,214,0 +170783187834,214,0 +170783187882,214,0 +170783187930,213,0 +170783187979,213,0 +170783188027,213,0 +170783188077,213,0 +170783188125,213,0 +170783188174,213,0 +170783188222,213,0 +170783188272,213,0 +170783188321,213,0 +170783188369,213,0 +170783188417,214,0 +170783188465,213,0 +170783188513,213,0 +170783188561,213,0 +170783188610,213,0 +170783188658,214,0 +170783188706,214,0 +170783188755,214,0 +170783188805,214,0 +170783188854,213,0 +170783188904,213,0 +170783188952,213,0 +170783188999,213,0 +170783189047,213,0 +170783189095,213,0 +170783189144,213,0 +170783189192,213,0 +170783189242,213,0 +170783189291,213,0 +170783189341,213,0 +170783189389,213,0 +170783189437,214,0 +170783189485,214,0 +170783189534,214,0 +170783189582,214,0 +170783189632,214,0 +170783189681,214,0 +170783189729,213,0 +170783189777,213,0 +170783189825,213,0 +170783189873,213,0 +170783189921,213,0 +170783189969,213,0 +170783190017,213,0 +170783190066,213,0 +170783190114,213,0 +170783190162,213,0 +170783190210,214,0 +170783190259,214,0 +170783190307,214,0 +170783190357,214,0 +170783190406,214,0 +170783190454,214,0 +170783190502,214,0 +170783190550,214,0 +170783190600,214,0 +170783190648,213,0 +170783190696,213,0 +170783190744,213,0 +170783190793,213,0 +170783190841,213,0 +170783190889,213,0 +170783190939,213,0 +170783190988,213,0 +170783191038,213,0 +170783191085,213,0 +170783191133,213,0 +170783191183,214,0 +170783191231,214,0 +170783191280,214,0 +170783191328,214,0 +170783191376,214,0 +170783191424,214,0 +170783191472,214,0 +170783191520,214,0 +170783191569,213,0 +170783191617,213,0 +170783191665,213,0 +170783191714,213,0 +170783191764,213,0 +170783191812,213,0 +170783191860,213,0 +170783191908,214,0 +170783191957,213,0 +170783192005,214,0 +170783192053,214,0 +170783192101,214,0 +170783192149,214,0 +170783192197,214,0 +170783192245,214,0 +170783192293,214,0 +170783192341,214,0 +170783192390,214,0 +170783192438,214,0 +170783192486,213,0 +170783192534,213,0 +170783192582,213,0 +170783192630,213,0 +170783192679,214,0 +170783192727,214,0 +170783192776,214,0 +170783192826,214,0 +170783192874,214,0 +170783192922,214,0 +170783192971,214,0 +170783193019,214,0 +170783193067,214,0 +170783193115,214,0 +170783193162,214,0 +170783193210,214,0 +170783193258,214,0 +170783193306,214,0 +170783193354,214,0 +170783193402,213,0 +170783193450,213,0 +170783193498,213,0 +170783193546,213,0 +170783193594,213,0 +170783193641,213,0 +170783193689,213,0 +170783193737,214,0 +170783193785,214,0 +170783193834,214,0 +170783193884,214,0 +170783193933,214,0 +170783193981,214,0 +170783194029,214,0 +170783194077,214,0 +170783194126,214,0 +170783194174,214,0 +170783194222,214,0 +170783194270,214,0 +170783194320,213,0 +170783194368,213,0 +170783194416,213,0 +170783194465,213,0 +170783194513,213,0 +170783194562,213,0 +170783194612,213,0 +170783194660,213,0 +170783194709,213,0 +170783194757,213,0 +170783194805,213,0 +170783194853,213,0 +170783194901,213,0 +170783194948,213,0 +170783194996,214,0 +170783195046,214,0 +170783195093,214,0 +170783195143,214,0 +170783195191,214,0 +170783195238,214,0 +170783195286,213,0 +170783195334,213,0 +170783195382,213,0 +170783195430,213,0 +170783195478,213,0 +170783195525,213,0 +170783195573,213,0 +170783195621,213,0 +170783195669,213,0 +170783195717,213,0 +170783195766,214,0 +170783195814,214,0 +170783195862,214,0 +170783195910,214,0 +170783195959,214,0 +170783196007,214,0 +170783196055,214,0 +170783196104,214,0 +170783196152,213,0 +170783196200,213,0 +170783196248,213,0 +170783196297,213,0 +170783196345,213,0 +170783196393,213,0 +170783196441,213,0 +170783196491,213,0 +170783196539,213,0 +170783196587,213,0 +170783196636,214,0 +170783196684,213,0 +170783196732,214,0 +170783196780,214,0 +170783196828,214,0 +170783196876,214,0 +170783196924,214,0 +170783196972,214,0 +170783197021,214,0 +170783197069,213,0 +170783197117,213,0 +170783197165,213,0 +170783197212,213,0 +170783197262,213,0 +170783197310,213,0 +170783197358,213,0 +170783197406,213,0 +170783197455,213,0 +170783197503,213,0 +170783197551,213,0 +170783197599,213,0 +170783197647,213,0 +170783197697,213,0 +170783197744,214,0 +170783197792,214,0 +170783197840,214,0 +170783197888,214,0 +170783197936,214,0 +170783197984,214,0 +170783198032,213,0 +170783198080,213,0 +170783198127,213,0 +170783198175,213,0 +170783198223,213,0 +170783198271,213,0 +170783198319,213,0 +170783198368,213,0 +170783198416,213,0 +170783198464,213,0 +170783198512,213,0 +170783198560,213,0 +170783198608,213,0 +170783198656,213,0 +170783198704,214,0 +170783198751,213,0 +170783198801,214,0 +170783198849,214,0 +170783198898,214,0 +170783198946,213,0 +170783198994,213,0 +170783199042,213,0 +170783199090,213,0 +170783199138,213,0 +170783199186,213,0 +170783199233,213,0 +170783199281,213,0 +170783199329,213,0 +170783199378,213,0 +170783199426,213,0 +170783199476,213,0 +170783199524,213,0 +170783199572,213,0 +170783199621,214,0 +170783199669,214,0 +170783199717,214,0 +170783199767,214,0 +170783199815,214,0 +170783199863,213,0 +170783199912,213,0 +170783199960,213,0 +170783200009,213,0 +170783200057,213,0 +170783200105,213,0 +170783200153,213,0 +170783200203,213,0 +170783200251,213,0 +170783200299,213,0 +170783200348,213,0 +170783200396,213,0 +170783200445,214,0 +170783200493,213,0 +170783200543,214,0 +170783200592,214,0 +170783200642,214,0 +170783200690,214,0 +170783200739,214,0 +170783200787,213,0 +170783200835,213,0 +170783200885,213,0 +170783200934,213,0 +170783200982,213,0 +170783201030,213,0 +170783201078,213,0 +170783201126,213,0 +170783201174,213,0 +170783201222,213,0 +170783201269,213,0 +170783201317,214,0 +170783201365,214,0 +170783201413,214,0 +170783201461,214,0 +170783201509,214,0 +170783201557,214,0 +170783201605,214,0 +170783201654,214,0 +170783201704,213,0 +170783201754,213,0 +170783201801,213,0 +170783201849,213,0 +170783201897,213,0 +170783201945,213,0 +170783201995,213,0 +170783202043,213,0 +170783202091,213,0 +170783202139,214,0 +170783202188,213,0 +170783202238,214,0 +170783202286,214,0 +170783202335,214,0 +170783202383,214,0 +170783202431,214,0 +170783202479,214,0 +170783202527,214,0 +170783202575,214,0 +170783202623,213,0 +170783202671,213,0 +170783202718,213,0 +170783202768,213,0 +170783202817,213,0 +170783202865,213,0 +170783202913,213,0 +170783202961,213,0 +170783203008,213,0 +170783203056,213,0 +170783203104,214,0 +170783203152,214,0 +170783203200,214,0 +170783203248,214,0 +170783203295,213,0 +170783203343,214,0 +170783203391,214,0 +170783203441,214,0 +170783203489,214,0 +170783203536,213,0 +170783203584,213,0 +170783203632,213,0 +170783203680,213,0 +170783203728,213,0 +170783203775,213,0 +170783203823,213,0 +170783203871,213,0 +170783203919,213,0 +170783203967,214,0 +170783204015,214,0 +170783204063,214,0 +170783204111,214,0 +170783204158,214,0 +170783204206,214,0 +170783204254,214,0 +170783204302,214,0 +170783204352,214,0 +170783204399,214,0 +170783204447,213,0 +170783204495,213,0 +170783204545,213,0 +170783204594,213,0 +170783204642,213,0 +170783204692,213,0 +170783204740,213,0 +170783204789,213,0 +170783204837,213,0 +170783204885,213,0 +170783204933,213,0 +170783204981,214,0 +170783205029,214,0 +170783205076,214,0 +170783205124,214,0 +170783205174,214,0 +170783205223,214,0 +170783205271,214,0 +170783205319,214,0 +170783205367,213,0 +170783205416,213,0 +170783205464,213,0 +170783205512,213,0 +170783205559,213,0 +170783205607,213,0 +170783205655,213,0 +170783205703,213,0 +170783205751,214,0 +170783205799,213,0 +170783205847,214,0 +170783205895,214,0 +170783205942,214,0 +170783205990,214,0 +170783206038,214,0 +170783206086,214,0 +170783206134,214,0 +170783206184,214,0 +170783206233,214,0 +170783206281,213,0 +170783206331,213,0 +170783206378,213,0 +170783206426,213,0 +170783206474,213,0 +170783206524,213,0 +170783206572,213,0 +170783206619,213,0 +170783206667,213,0 +170783206717,213,0 +170783206765,213,0 +170783206813,214,0 +170783206862,214,0 +170783206910,214,0 +170783206960,214,0 +170783207009,214,0 +170783207057,214,0 +170783207105,214,0 +170783207153,214,0 +170783207203,213,0 +170783207252,213,0 +170783207302,213,0 +170783207349,213,0 +170783207399,213,0 +170783207448,213,0 +170783207496,213,0 +170783207546,213,0 +170783207595,213,0 +170783207643,213,0 +170783207691,213,0 +170783207739,213,0 +170783207787,214,0 +170783207836,214,0 +170783207884,214,0 +170783207934,214,0 +170783207983,214,0 +170783208031,214,0 +170783208079,214,0 +170783208127,213,0 +170783208177,213,0 +170783208226,213,0 +170783208275,213,0 +170783208325,213,0 +170783208374,213,0 +170783208424,213,0 +170783208472,213,0 +170783208519,213,0 +170783208567,213,0 +170783208615,213,0 +170783208663,214,0 +170783208711,214,0 +170783208759,214,0 +170783208806,214,0 +170783208854,214,0 +170783208902,214,0 +170783208950,214,0 +170783208998,214,0 +170783209046,213,0 +170783209093,213,0 +170783209141,213,0 +170783209191,212,0 +170783209238,213,0 +170783209286,213,0 +170783209334,213,0 +170783209382,213,0 +170783209430,213,0 +170783209478,213,0 +170783209526,213,0 +170783209575,213,0 +170783209623,213,0 +170783209672,214,0 +170783209722,213,0 +170783209771,214,0 +170783209821,214,0 +170783209869,214,0 +170783209917,214,0 +170783209966,213,0 +170783210014,213,0 +170783210062,213,0 +170783210110,213,0 +170783210158,213,0 +170783210206,213,0 +170783210253,213,0 +170783210301,213,0 +170783210349,213,0 +170783210397,213,0 +170783210445,213,0 +170783210494,213,0 +170783210542,213,0 +170783210590,213,0 +170783210638,213,0 +170783210687,213,0 +170783210735,213,0 +170783210783,213,0 +170783210831,214,0 +170783210880,213,0 +170783210928,213,0 +170783210976,213,0 +170783211024,213,0 +170783211072,213,0 +170783211120,213,0 +170783211169,213,0 +170783211217,213,0 +170783211267,213,0 +170783211315,213,0 +170783211363,213,0 +170783211410,213,0 +170783211460,213,0 +170783211508,213,0 +170783211556,213,0 +170783211604,213,0 +170783211652,214,0 +170783211700,214,0 +170783211747,214,0 +170783211795,213,0 +170783211843,212,0 +170783211891,213,0 +170783211939,213,0 +170783211987,213,0 +170783212035,213,0 +170783212082,213,0 +170783212130,213,0 +170783212178,213,0 +170783212226,213,0 +170783212274,213,0 +170783212322,213,0 +170783212371,213,0 +170783212419,213,0 +170783212467,214,0 +170783212515,214,0 +170783212565,214,0 +170783212614,214,0 +170783212664,214,0 +170783212712,213,0 +170783212761,213,0 +170783212809,213,0 +170783212857,213,0 +170783212907,213,0 +170783212954,213,0 +170783213002,213,0 +170783213052,213,0 +170783213100,213,0 +170783213148,213,0 +170783213197,213,0 +170783213247,213,0 +170783213295,213,0 +170783213343,213,0 +170783213391,213,0 +170783213440,213,0 +170783213489,213,0 +170783213537,214,0 +170783213587,214,0 +170783213636,213,0 +170783213686,213,0 +170783213734,213,0 +170783213782,213,0 +170783213830,213,0 +170783213877,213,0 +170783213925,213,0 +170783213975,213,0 +170783214024,213,0 +170783214072,213,0 +170783214120,213,0 +170783214168,213,0 +170783214216,214,0 +170783214264,214,0 +170783214312,214,0 +170783214360,214,0 +170783214407,214,0 +170783214455,214,0 +170783214503,214,0 +170783214552,213,0 +170783214600,213,0 +170783214648,213,0 +170783214698,213,0 +170783214747,213,0 +170783214795,213,0 +170783214845,213,0 +170783214894,213,0 +170783214944,213,0 +170783214992,213,0 +170783215040,213,0 +170783215089,213,0 +170783215137,213,0 +170783215185,214,0 +170783215233,214,0 +170783215281,214,0 +170783215329,214,0 +170783215377,214,0 +170783215426,214,0 +170783215474,214,0 +170783215522,214,0 +170783215571,214,0 +170783215621,214,0 +170783215669,214,0 +170783215717,214,0 +170783215765,214,0 +170783215813,214,0 +170783215861,214,0 +170783215909,213,0 +170783215958,213,0 +170783216008,213,0 +170783216056,213,0 +170783216104,213,0 +170783216152,213,0 +170783216200,213,0 +170783216249,214,0 +170783216297,214,0 +170783216345,214,0 +170783216394,214,0 +170783216442,214,0 +170783216490,214,0 +170783216540,214,0 +170783216588,214,0 +170783216636,214,0 +170783216685,214,0 +170783216733,214,0 +170783216781,214,0 +170783216830,213,0 +170783216878,213,0 +170783216926,213,0 +170783216974,213,0 +170783217022,213,0 +170783217070,213,0 +170783217120,213,0 +170783217168,213,0 +170783217216,213,0 +170783217264,213,0 +170783217313,213,0 +170783217361,214,0 +170783217409,214,0 +170783217457,214,0 +170783217507,214,0 +170783217554,214,0 +170783217602,214,0 +170783217650,214,0 +170783217700,214,0 +170783217749,214,0 +170783217797,213,0 +170783217847,213,0 +170783217894,213,0 +170783217944,213,0 +170783217992,213,0 +170783218039,213,0 +170783218089,213,0 +170783218137,213,0 +170783218185,213,0 +170783218234,214,0 +170783218284,214,0 +170783218332,214,0 +170783218379,214,0 +170783218427,214,0 +170783218475,214,0 +170783218523,214,0 +170783218571,214,0 +170783218621,214,0 +170783218669,213,0 +170783218718,213,0 +170783218768,213,0 +170783218816,213,0 +170783218865,213,0 +170783218915,213,0 +170783218963,213,0 +170783219012,213,0 +170783219060,213,0 +170783219110,214,0 +170783219158,214,0 +170783219206,214,0 +170783219253,214,0 +170783219303,214,0 +170783219351,214,0 +170783219400,214,0 +170783219448,214,0 +170783219496,214,0 +170783219546,214,0 +170783219595,213,0 +170783219643,213,0 +170783219693,213,0 +170783219741,213,0 +170783219789,213,0 +170783219837,213,0 +170783219886,213,0 +170783219934,213,0 +170783219982,214,0 +170783220031,213,0 +170783220079,214,0 +170783220127,214,0 +170783220175,214,0 +170783220223,214,0 +170783220271,214,0 +170783220319,214,0 +170783220367,214,0 +170783220415,214,0 +170783220463,214,0 +170783220511,214,0 +170783220558,213,0 +170783220606,213,0 +170783220656,213,0 +170783220704,213,0 +170783220752,213,0 +170783220801,213,0 +170783220851,213,0 +170783220899,213,0 +170783220948,213,0 +170783220996,213,0 +170783221044,214,0 +170783221092,214,0 +170783221140,214,0 +170783221189,214,0 +170783221237,214,0 +170783221287,214,0 +170783221334,214,0 +170783221384,214,0 +170783221432,213,0 +170783221480,213,0 +170783221529,213,0 +170783221579,213,0 +170783221627,213,0 +170783221676,213,0 +170783221724,213,0 +170783221772,213,0 +170783221820,213,0 +170783221868,213,0 +170783221917,213,0 +170783221965,214,0 +170783222015,213,0 +170783222063,214,0 +170783222112,214,0 +170783222160,214,0 +170783222208,214,0 +170783222256,214,0 +170783222304,215,0 +170783222352,213,0 +170783222400,213,0 +170783222448,213,0 +170783222497,213,0 +170783222545,213,0 +170783222593,213,0 +170783222643,213,0 +170783222691,213,0 +170783222740,213,0 +170783222788,213,0 +170783222838,213,0 +170783222886,214,0 +170783222934,213,0 +170783222982,213,0 +170783223030,214,0 +170783223077,214,0 +170783223127,214,0 +170783223175,214,0 +170783223223,214,0 +170783223272,213,0 +170783223320,213,0 +170783223368,213,0 +170783223416,213,0 +170783223464,213,0 +170783223513,213,0 +170783223561,213,0 +170783223609,213,0 +170783223657,213,0 +170783223705,213,0 +170783223755,213,0 +170783223802,214,0 +170783223852,214,0 +170783223902,214,0 +170783223951,214,0 +170783224000,214,0 +170783224048,214,0 +170783224098,214,0 +170783224147,214,0 +170783224195,213,0 +170783224245,213,0 +170783224293,213,0 +170783224341,213,0 +170783224388,213,0 +170783224436,213,0 +170783224486,213,0 +170783224534,213,0 +170783224582,213,0 +170783224631,213,0 +170783224679,213,0 +170783224727,214,0 +170783224775,214,0 +170783224822,214,0 +170783224872,214,0 +170783224921,214,0 +170783224969,214,0 +170783225017,214,0 +170783225065,214,0 +170783225113,213,0 +170783225161,213,0 +170783225210,213,0 +170783225260,213,0 +170783225308,213,0 +170783225356,213,0 +170783225405,213,0 +170783225453,213,0 +170783225501,213,0 +170783225549,213,0 +170783225597,214,0 +170783225644,214,0 +170783225694,214,0 +170783225742,214,0 +170783225790,214,0 +170783225838,214,0 +170783225885,214,0 +170783225933,214,0 +170783225981,214,0 +170783226029,213,0 +170783226077,213,0 +170783226125,213,0 +170783226174,213,0 +170783226222,213,0 +170783226270,213,0 +170783226318,213,0 +170783226366,213,0 +170783226415,213,0 +170783226463,213,0 +170783226513,213,0 +170783226561,213,0 +170783226608,213,0 +170783226656,213,0 +170783226706,214,0 +170783226754,214,0 +170783226802,214,0 +170783226850,214,0 +170783226898,214,0 +170783226947,213,0 +170783226996,213,0 +170783227044,213,0 +170783227094,213,0 +170783227143,213,0 +170783227191,213,0 +170783227239,213,0 +170783227287,213,0 +170783227334,213,0 +170783227382,213,0 +170783227430,213,0 +170783227478,213,0 +170783227526,213,0 +170783227574,214,0 +170783227621,214,0 +170783227669,214,0 +170783227717,214,0 +170783227765,214,0 +170783227814,214,0 +170783227864,213,0 +170783227913,213,0 +170783227961,213,0 +170783228009,213,0 +170783228058,213,0 +170783228106,213,0 +170783228154,213,0 +170783228202,213,0 +170783228250,213,0 +170783228297,213,0 +170783228345,213,0 +170783228395,213,0 +170783228443,213,0 +170783228491,213,0 +170783228538,214,0 +170783228586,214,0 +170783228636,214,0 +170783228684,214,0 +170783228732,214,0 +170783228779,214,0 +170783228827,213,0 +170783228877,213,0 +170783228926,213,0 +170783228976,213,0 +170783229025,213,0 +170783229075,213,0 +170783229124,213,0 +170783229172,213,0 +170783229222,213,0 +170783229271,213,0 +170783229319,213,0 +170783229367,214,0 +170783229415,214,0 +170783229463,214,0 +170783229511,214,0 +170783229559,214,0 +170783229607,214,0 +170783229655,214,0 +170783229702,213,0 +170783229750,213,0 +170783229798,213,0 +170783229846,213,0 +170783229894,213,0 +170783229942,213,0 +170783229990,213,0 +170783230038,213,0 +170783230086,213,0 +170783230133,213,0 +170783230183,213,0 +170783230231,213,0 +170783230280,213,0 +170783230328,214,0 +170783230376,214,0 +170783230426,213,0 +170783230474,214,0 +170783230523,214,0 +170783230571,214,0 +170783230619,214,0 +170783230667,213,0 +170783230715,213,0 +170783230763,213,0 +170783230813,213,0 +170783230861,213,0 +170783230910,213,0 +170783230958,213,0 +170783231006,213,0 +170783231054,213,0 +170783231101,213,0 +170783231151,213,0 +170783231199,213,0 +170783231247,213,0 +170783231296,214,0 +170783231346,214,0 +170783231394,214,0 +170783231441,214,0 +170783231489,214,0 +170783231537,214,0 +170783231587,213,0 +170783231635,213,0 +170783231682,213,0 +170783231732,213,0 +170783231780,213,0 +170783231828,213,0 +170783231876,213,0 +170783231924,213,0 +170783231971,213,0 +170783232019,213,0 +170783232067,213,0 +170783232115,213,0 +170783232163,214,0 +170783232211,214,0 +170783232259,214,0 +170783232307,214,0 +170783232355,214,0 +170783232402,214,0 +170783232450,214,0 +170783232500,213,0 +170783232549,213,0 +170783232597,213,0 +170783232645,213,0 +170783232695,213,0 +170783232744,213,0 +170783232792,213,0 +170783232841,213,0 +170783232889,213,0 +170783232937,213,0 +170783232985,213,0 +170783233033,213,0 +170783233082,213,0 +170783233130,213,0 +170783233180,213,0 +170783233228,214,0 +170783233276,214,0 +170783233325,214,0 +170783233373,214,0 +170783233421,213,0 +170783233469,213,0 +170783233517,213,0 +170783233565,213,0 +170783233613,213,0 +170783233661,213,0 +170783233710,213,0 +170783233760,213,0 +170783233808,213,0 +170783233857,213,0 +170783233905,213,0 +170783233953,213,0 +170783234001,214,0 +170783234049,214,0 +170783234098,214,0 +170783234146,214,0 +170783234194,214,0 +170783234242,214,0 +170783234290,214,0 +170783234338,213,0 +170783234387,213,0 +170783234435,213,0 +170783234485,213,0 +170783234533,213,0 +170783234580,213,0 +170783234628,213,0 +170783234676,214,0 +170783234724,214,0 +170783234772,214,0 +170783234820,214,0 +170783234868,214,0 +170783234916,214,0 +170783234964,213,0 +170783235012,214,0 +170783235059,214,0 +170783235107,214,0 +170783235157,214,0 +170783235205,214,0 +170783235254,213,0 +170783235302,213,0 +170783235350,213,0 +170783235400,213,0 +170783235449,213,0 +170783235497,213,0 +170783235545,213,0 +170783235593,213,0 +170783235642,213,0 +170783235690,214,0 +170783235738,214,0 +170783235788,214,0 +170783235836,214,0 +170783235885,214,0 +170783235933,214,0 +170783235982,214,0 +170783236030,214,0 +170783236078,214,0 +170783236126,214,0 +170783236174,213,0 +170783236222,213,0 +170783236270,213,0 +170783236319,213,0 +170783236367,213,0 +170783236415,213,0 +170783236463,213,0 +170783236513,214,0 +170783236560,213,0 +170783236608,214,0 +170783236658,214,0 +170783236706,214,0 +170783236754,214,0 +170783236803,214,0 +170783236851,214,0 +170783236899,214,0 +170783236947,214,0 +170783236995,214,0 +170783237043,214,0 +170783237091,213,0 +170783237139,213,0 +170783237187,213,0 +170783237236,213,0 +170783237284,213,0 +170783237332,213,0 +170783237380,213,0 +170783237429,213,0 +170783237477,214,0 +170783237525,214,0 +170783237575,214,0 +170783237624,214,0 +170783237672,214,0 +170783237720,214,0 +170783237768,214,0 +170783237815,214,0 +170783237863,214,0 +170783237911,214,0 +170783237959,214,0 +170783238007,213,0 +170783238057,213,0 +170783238105,213,0 +170783238153,213,0 +170783238200,213,0 +170783238248,213,0 +170783238296,213,0 +170783238344,214,0 +170783238392,214,0 +170783238440,214,0 +170783238488,214,0 +170783238535,214,0 +170783238583,214,0 +170783238633,214,0 +170783238681,214,0 +170783238729,214,0 +170783238777,214,0 +170783238824,214,0 +170783238872,214,0 +170783238920,213,0 +170783238968,213,0 +170783239016,213,0 +170783239066,213,0 +170783239114,213,0 +170783239162,213,0 +170783239210,213,0 +170783239258,213,0 +170783239306,213,0 +170783239353,214,0 +170783239401,214,0 +170783239449,214,0 +170783239497,214,0 +170783239545,214,0 +170783239593,214,0 +170783239641,214,0 +170783239689,214,0 +170783239737,214,0 +170783239786,214,0 +170783239834,213,0 +170783239882,213,0 +170783239930,213,0 +170783239978,213,0 +170783240027,213,0 +170783240075,213,0 +170783240123,213,0 +170783240171,213,0 +170783240219,213,0 +170783240268,213,0 +170783240318,213,0 +170783240367,213,0 +170783240415,213,0 +170783240465,213,0 +170783240514,214,0 +170783240562,214,0 +170783240610,214,0 +170783240658,214,0 +170783240707,214,0 +170783240755,213,0 +170783240803,213,0 +170783240853,213,0 +170783240901,213,0 +170783240948,213,0 +170783240998,213,0 +170783241046,213,0 +170783241094,213,0 +170783241142,213,0 +170783241190,213,0 +170783241238,213,0 +170783241286,214,0 +170783241334,213,0 +170783241381,213,0 +170783241429,214,0 +170783241479,214,0 +170783241528,214,0 +170783241578,214,0 +170783241626,214,0 +170783241675,213,0 +170783241723,213,0 +170783241773,213,0 +170783241821,213,0 +170783241868,213,0 +170783241918,213,0 +170783241967,213,0 +170783242015,213,0 +170783242063,213,0 +170783242111,213,0 +170783242159,213,0 +170783242207,213,0 +170783242255,213,0 +170783242303,214,0 +170783242352,214,0 +170783242400,214,0 +170783242448,214,0 +170783242497,214,0 +170783242547,214,0 +170783242595,213,0 +170783242643,213,0 +170783242692,213,0 +170783242740,213,0 +170783242788,213,0 +170783242838,213,0 +170783242887,213,0 +170783242936,213,0 +170783242984,213,0 +170783243032,213,0 +170783243082,213,0 +170783243131,213,0 +170783243181,213,0 +170783243228,213,0 +170783243278,213,0 +170783243327,213,0 +170783243375,214,0 +170783243425,214,0 +170783243473,213,0 +170783243521,213,0 +170783243569,213,0 +170783243618,213,0 +170783243666,213,0 +170783243714,213,0 +170783243762,213,0 +170783243810,213,0 +170783243858,213,0 +170783243906,213,0 +170783243954,213,0 +170783244003,213,0 +170783244053,213,0 +170783244101,214,0 +170783244148,214,0 +170783244196,214,0 +170783244244,214,0 +170783244292,214,0 +170783244341,214,0 +170783244389,214,0 +170783244437,213,0 +170783244485,213,0 +170783244533,213,0 +170783244581,213,0 +170783244630,213,0 +170783244680,213,0 +170783244728,213,0 +170783244776,213,0 +170783244824,213,0 +170783244873,213,0 +170783244921,213,0 +170783244969,213,0 +170783245017,214,0 +170783245065,214,0 +170783245112,214,0 +170783245162,214,0 +170783245210,214,0 +170783245258,214,0 +170783245306,214,0 +170783245354,213,0 +170783245402,213,0 +170783245450,213,0 +170783245497,213,0 +170783245547,213,0 +170783245595,213,0 +170783245643,213,0 +170783245691,213,0 +170783245740,213,0 +170783245788,213,0 +170783245838,213,0 +170783245886,213,0 +170783245934,213,0 +170783245981,213,0 +170783246029,213,0 +170783246079,214,0 +170783246128,214,0 +170783246176,214,0 +170783246226,214,0 +170783246275,213,0 +170783246323,213,0 +170783246371,213,0 +170783246419,213,0 +170783246467,213,0 +170783246514,213,0 +170783246562,213,0 +170783246610,213,0 +170783246658,213,0 +170783246706,213,0 +170783246754,213,0 +170783246801,213,0 +170783246849,213,0 +170783246897,213,0 +170783246947,214,0 +170783246995,214,0 +170783247043,214,0 +170783247091,214,0 +170783247140,214,0 +170783247188,214,0 +170783247238,213,0 +170783247287,213,0 +170783247335,213,0 +170783247384,213,0 +170783247434,213,0 +170783247482,213,0 +170783247530,213,0 +170783247578,213,0 +170783247626,213,0 +170783247674,213,0 +170783247722,214,0 +170783247769,213,0 +170783247819,214,0 +170783247868,214,0 +170783247918,214,0 +170783247966,214,0 +170783248015,214,0 +170783248063,214,0 +170783248113,213,0 +170783248162,213,0 +170783248212,213,0 +170783248259,213,0 +170783248309,213,0 +170783248359,213,0 +170783248408,213,0 +170783248456,213,0 +170783248506,213,0 +170783248555,214,0 +170783248603,214,0 +170783248652,214,0 +170783248702,214,0 +170783248751,214,0 +170783248799,214,0 +170783248847,214,0 +170783248895,214,0 +170783248943,214,0 +170783248991,214,0 +170783249039,213,0 +170783249086,213,0 +170783249134,213,0 +170783249182,213,0 +170783249230,213,0 +170783249278,213,0 +170783249327,213,0 +170783249375,213,0 +170783249424,213,0 +170783249472,214,0 +170783249520,214,0 +170783249568,214,0 +170783249616,214,0 +170783249664,214,0 +170783249712,214,0 +170783249760,214,0 +170783249807,214,0 +170783249857,214,0 +170783249906,214,0 +170783249954,213,0 +170783250004,213,0 +170783250053,213,0 +170783250101,213,0 +170783250150,213,0 +170783250198,213,0 +170783250248,213,0 +170783250297,213,0 +170783250345,214,0 +170783250393,214,0 +170783250441,214,0 +170783250489,214,0 +170783250538,214,0 +170783250586,214,0 +170783250634,214,0 +170783250682,214,0 +170783250730,214,0 +170783250778,214,0 +170783250826,214,0 +170783250876,213,0 +170783250924,213,0 +170783250971,213,0 +170783251019,213,0 +170783251067,213,0 +170783251115,213,0 +170783251163,214,0 +170783251211,214,0 +170783251261,214,0 +170783251308,214,0 +170783251358,214,0 +170783251406,214,0 +170783251454,214,0 +170783251503,214,0 +170783251551,214,0 +170783251599,214,0 +170783251647,214,0 +170783251696,214,0 +170783251744,214,0 +170783251792,213,0 +170783251842,213,0 +170783251891,213,0 +170783251939,213,0 +170783251987,213,0 +170783252037,214,0 +170783252084,213,0 +170783252134,214,0 +170783252182,214,0 +170783252230,214,0 +170783252277,214,0 +170783252325,214,0 +170783252375,214,0 +170783252423,214,0 +170783252471,214,0 +170783252519,214,0 +170783252566,214,0 +170783252614,214,0 +170783252662,214,0 +170783252710,213,0 +170783252758,213,0 +170783252806,213,0 +170783252854,213,0 +170783252903,213,0 +170783252951,213,0 +170783252999,213,0 +170783253047,213,0 +170783253095,213,0 +170783253143,214,0 +170783253190,214,0 +170783253238,214,0 +170783253288,214,0 +170783253336,214,0 +170783253384,214,0 +170783253432,214,0 +170783253479,214,0 +170783253529,214,0 +170783253578,214,0 +170783253628,213,0 +170783253676,213,0 +170783253724,213,0 +170783253772,213,0 +170783253819,213,0 +170783253867,213,0 +170783253915,213,0 +170783253963,213,0 +170783254011,213,0 +170783254059,214,0 +170783254107,214,0 +170783254155,214,0 +170783254203,214,0 +170783254251,214,0 +170783254298,214,0 +170783254348,214,0 +170783254396,214,0 +170783254444,214,0 +170783254492,214,0 +170783254541,213,0 +170783254589,213,0 +170783254638,213,0 +170783254686,213,0 +170783254734,213,0 +170783254782,213,0 +170783254830,213,0 +170783254878,213,0 +170783254928,213,0 +170783254976,214,0 +170783255023,214,0 +170783255073,214,0 +170783255121,214,0 +170783255169,214,0 +170783255217,214,0 +170783255265,214,0 +170783255313,214,0 +170783255362,214,0 +170783255410,214,0 +170783255458,213,0 +170783255506,213,0 +170783255555,213,0 +170783255603,213,0 +170783255653,213,0 +170783255701,213,0 +170783255748,213,0 +170783255796,213,0 +170783255844,213,0 +170783255894,214,0 +170783255943,214,0 +170783255991,214,0 +170783256039,214,0 +170783256087,214,0 +170783256135,214,0 +170783256182,213,0 +170783256230,213,0 +170783256278,213,0 +170783256326,214,0 +170783256376,213,0 +170783256425,213,0 +170783256473,213,0 +170783256521,213,0 +170783256571,213,0 +170783256619,213,0 +170783256668,213,0 +170783256716,213,0 +170783256764,213,0 +170783256812,213,0 +170783256861,213,0 +170783256911,213,0 +170783256959,213,0 +170783257008,213,0 +170783257056,214,0 +170783257106,213,0 +170783257154,214,0 +170783257203,213,0 +170783257251,214,0 +170783257300,213,0 +170783257350,213,0 +170783257399,213,0 +170783257449,213,0 +170783257497,213,0 +170783257546,213,0 +170783257596,213,0 +170783257646,213,0 +170783257695,213,0 +170783257743,213,0 +170783257793,213,0 +170783257841,214,0 +170783257888,214,0 +170783257936,214,0 +170783257984,214,0 +170783258032,214,0 +170783258082,214,0 +170783258131,214,0 +170783258179,214,0 +170783258229,213,0 +170783258278,213,0 +170783258326,213,0 +170783258376,213,0 +170783258423,213,0 +170783258471,213,0 +170783258519,213,0 +170783258567,213,0 +170783258615,213,0 +170783258663,213,0 +170783258711,214,0 +170783258760,214,0 +170783258808,214,0 +170783258856,214,0 +170783258906,214,0 +170783258954,214,0 +170783259002,214,0 +170783259049,214,0 +170783259097,214,0 +170783259147,213,0 +170783259195,213,0 +170783259243,213,0 +170783259290,213,0 +170783259338,213,0 +170783259386,213,0 +170783259436,213,0 +170783259484,213,0 +170783259533,213,0 +170783259583,214,0 +170783259632,214,0 +170783259680,214,0 +170783259728,214,0 +170783259776,214,0 +170783259824,214,0 +170783259873,214,0 +170783259921,214,0 +170783259969,214,0 +170783260017,214,0 +170783260067,213,0 +170783260116,213,0 +170783260166,213,0 +170783260213,213,0 +170783260263,213,0 +170783260311,213,0 +170783260359,214,0 +170783260407,214,0 +170783260455,214,0 +170783260504,214,0 +170783260552,214,0 +170783260600,214,0 +170783260648,214,0 +170783260696,214,0 +170783260744,214,0 +170783260793,214,0 +170783260841,214,0 +170783260889,214,0 +170783260937,214,0 +170783260987,213,0 +170783261035,213,0 +170783261082,213,0 +170783261130,213,0 +170783261178,213,0 +170783261226,213,0 +170783261276,213,0 +170783261324,213,0 +170783261372,213,0 +170783261419,213,0 +170783261467,213,0 +170783261517,214,0 +170783261566,214,0 +170783261614,214,0 +170783261663,214,0 +170783261711,214,0 +170783261761,214,0 +170783261809,214,0 +170783261858,214,0 +170783261906,213,0 +170783261954,213,0 +170783262002,213,0 +170783262050,213,0 +170783262098,213,0 +170783262147,213,0 +170783262195,213,0 +170783262244,213,0 +170783262292,214,0 +170783262342,213,0 +170783262390,214,0 +170783262438,214,0 +170783262485,214,0 +170783262533,214,0 +170783262581,214,0 +170783262629,214,0 +170783262679,214,0 +170783262727,214,0 +170783262776,214,0 +170783262824,213,0 +170783262873,213,0 +170783262921,213,0 +170783262969,213,0 +170783263019,213,0 +170783263068,213,0 +170783263116,213,0 +170783263165,213,0 +170783263213,213,0 +170783263261,214,0 +170783263311,214,0 +170783263360,214,0 +170783263410,214,0 +170783263459,214,0 +170783263507,214,0 +170783263555,214,0 +170783263605,214,0 +170783263654,214,0 +170783263702,214,0 +170783263750,213,0 +170783263800,213,0 +170783263849,213,0 +170783263899,213,0 +170783263947,213,0 +170783263995,213,0 +170783264044,214,0 +170783264092,213,0 +170783264140,214,0 +170783264189,214,0 +170783264237,214,0 +170783264285,214,0 +170783264333,214,0 +170783264381,214,0 +170783264429,214,0 +170783264477,214,0 +170783264526,214,0 +170783264574,214,0 +170783264623,214,0 +170783264671,213,0 +170783264721,213,0 +170783264770,213,0 +170783264820,213,0 +170783264868,213,0 +170783264917,213,0 +170783264965,213,0 +170783265015,213,0 +170783265063,214,0 +170783265111,214,0 +170783265158,214,0 +170783265208,214,0 +170783265256,214,0 +170783265306,214,0 +170783265355,214,0 +170783265403,214,0 +170783265451,214,0 +170783265500,214,0 +170783265550,214,0 +170783265598,213,0 +170783265646,213,0 +170783265694,213,0 +170783265743,213,0 +170783265793,213,0 +170783265842,213,0 +170783265892,213,0 +170783265940,213,0 +170783265989,214,0 +170783266037,214,0 +170783266085,214,0 +170783266133,214,0 +170783266181,214,0 +170783266229,214,0 +170783266277,214,0 +170783266326,214,0 +170783266374,214,0 +170783266422,214,0 +170783266470,214,0 +170783266518,213,0 +170783266566,213,0 +170783266613,213,0 +170783266661,213,0 +170783266709,213,0 +170783266759,213,0 +170783266808,213,0 +170783266856,213,0 +170783266904,213,0 +170783266953,213,0 +170783267001,214,0 +170783267050,213,0 +170783267098,214,0 +170783267146,214,0 +170783267196,214,0 +170783267244,214,0 +170783267293,214,0 +170783267341,214,0 +170783267390,214,0 +170783267438,213,0 +170783267486,213,0 +170783267534,213,0 +170783267582,213,0 +170783267630,213,0 +170783267678,213,0 +170783267726,213,0 +170783267774,213,0 +170783267823,214,0 +170783267873,214,0 +170783267922,214,0 +170783267970,214,0 +170783268020,214,0 +170783268068,214,0 +170783268116,214,0 +170783268165,214,0 +170783268215,214,0 +170783268263,214,0 +170783268310,214,0 +170783268358,213,0 +170783268406,213,0 +170783268454,213,0 +170783268503,213,0 +170783268551,213,0 +170783268601,213,0 +170783268649,213,0 +170783268697,213,0 +170783268745,213,0 +170783268793,214,0 +170783268841,214,0 +170783268888,214,0 +170783268938,214,0 +170783268986,214,0 +170783269034,214,0 +170783269082,214,0 +170783269129,214,0 +170783269177,214,0 +170783269225,214,0 +170783269273,213,0 +170783269321,213,0 +170783269369,213,0 +170783269418,213,0 +170783269466,213,0 +170783269515,213,0 +170783269563,213,0 +170783269611,213,0 +170783269659,213,0 +170783269707,213,0 +170783269755,214,0 +170783269802,214,0 +170783269850,214,0 +170783269898,214,0 +170783269948,214,0 +170783269995,214,0 +170783270043,214,0 +170783270093,214,0 +170783270140,214,0 +170783270188,213,0 +170783270236,213,0 +170783270284,213,0 +170783270334,213,0 +170783270382,213,0 +170783270429,213,0 +170783270477,213,0 +170783270525,213,0 +170783270573,213,0 +170783270621,213,0 +170783270669,213,0 +170783270716,213,0 +170783270764,213,0 +170783270812,213,0 +170783270860,213,0 +170783270908,213,0 +170783270956,213,0 +170783271004,214,0 +170783271051,214,0 +170783271099,213,0 +170783271147,213,0 +170783271195,213,0 +170783271243,213,0 +170783271292,213,0 +170783271342,213,0 +170783271389,213,0 +170783271437,213,0 +170783271485,213,0 +170783271533,213,0 +170783271581,213,0 +170783271629,214,0 +170783271678,214,0 +170783271726,214,0 +170783271774,214,0 +170783271822,214,0 +170783271870,214,0 +170783271917,214,0 +170783271965,214,0 +170783272013,213,0 +170783272063,213,0 +170783272111,213,0 +170783272158,213,0 +170783272206,213,0 +170783272256,213,0 +170783272305,213,0 +170783272353,213,0 +170783272401,213,0 +170783272449,213,0 +170783272497,214,0 +170783272545,214,0 +170783272592,214,0 +170783272640,214,0 +170783272688,214,0 +170783272736,214,0 +170783272784,214,0 +170783272832,214,0 +170783272880,214,0 +170783272927,213,0 +170783272975,213,0 +170783273025,213,0 +170783273073,213,0 +170783273121,213,0 +170783273168,213,0 +170783273218,213,0 +170783273266,213,0 +170783273314,213,0 +170783273362,213,0 +170783273409,214,0 +170783273457,214,0 +170783273505,214,0 +170783273553,215,0 +170783273601,214,0 +170783273651,214,0 +170783273699,214,0 +170783273747,214,0 +170783273795,214,0 +170783273844,213,0 +170783273892,213,0 +170783273940,213,0 +170783273987,213,0 +170783274035,213,0 +170783274085,213,0 +170783274133,213,0 +170783274180,213,0 +170783274228,213,0 +170783274276,214,0 +170783274325,214,0 +170783274373,214,0 +170783274422,214,0 +170783274470,214,0 +170783274518,214,0 +170783274566,214,0 +170783274614,214,0 +170783274661,214,0 +170783274709,214,0 +170783274757,214,0 +170783274805,213,0 +170783274853,213,0 +170783274901,213,0 +170783274949,213,0 +170783274996,213,0 +170783275044,213,0 +170783275092,213,0 +170783275140,213,0 +170783275188,213,0 +170783275236,213,0 +170783275284,213,0 +170783275333,214,0 +170783275381,214,0 +170783275429,214,0 +170783275478,214,0 +170783275526,214,0 +170783275574,214,0 +170783275622,214,0 +170783275671,214,0 +170783275721,213,0 +170783275768,213,0 +170783275816,213,0 +170783275864,213,0 +170783275912,213,0 +170783275960,213,0 +170783276008,213,0 +170783276056,213,0 +170783276105,213,0 +170783276153,213,0 +170783276200,213,0 +170783276248,213,0 +170783276296,213,0 +170783276344,213,0 +170783276392,213,0 +170783276440,213,0 +170783276488,213,0 +170783276536,214,0 +170783276583,214,0 +170783276631,213,0 +170783276679,213,0 +170783276727,213,0 +170783276775,213,0 +170783276823,213,0 +170783276871,213,0 +170783276919,213,0 +170783276966,213,0 +170783277014,213,0 +170783277062,213,0 +170783277111,214,0 +170783277159,214,0 +170783277207,213,0 +170783277255,214,0 +170783277303,214,0 +170783277351,214,0 +170783277399,214,0 +170783277446,214,0 +170783277494,214,0 +170783277544,213,0 +170783277592,213,0 +170783277639,213,0 +170783277687,213,0 +170783277735,213,0 +170783277783,213,0 +170783277831,213,0 +170783277879,214,0 +170783277927,213,0 +170783277975,214,0 +170783278023,214,0 +170783278071,214,0 +170783278120,214,0 +170783278168,214,0 +170783278216,214,0 +170783278266,214,0 +170783278314,214,0 +170783278363,214,0 +170783278413,214,0 +170783278461,213,0 +170783278510,213,0 +170783278558,213,0 +170783278608,213,0 +170783278656,213,0 +170783278704,214,0 +170783278752,214,0 +170783278799,214,0 +170783278849,214,0 +170783278897,214,0 +170783278945,214,0 +170783278992,214,0 +170783279042,214,0 +170783279090,214,0 +170783279138,214,0 +170783279186,214,0 +170783279234,214,0 +170783279281,214,0 +170783279329,214,0 +170783279379,213,0 +170783279427,213,0 +170783279475,213,0 +170783279522,213,0 +170783279570,214,0 +170783279618,213,0 +170783279668,213,0 +170783279717,214,0 +170783279767,214,0 +170783279816,214,0 +170783279864,214,0 +170783279912,214,0 +170783279961,214,0 +170783280009,214,0 diff --git a/laser_value/0214-00.csv b/laser_value/0214-00.csv new file mode 100644 index 0000000..078617e --- /dev/null +++ b/laser_value/0214-00.csv @@ -0,0 +1,7443 @@ +timestamp,laser_value,event +170783280060,214,0 +170783280109,214,0 +170783280157,214,0 +170783280206,214,0 +170783280254,214,0 +170783280302,213,0 +170783280352,213,0 +170783280401,213,0 +170783280449,214,0 +170783280499,213,0 +170783280547,214,0 +170783280595,214,0 +170783280643,214,0 +170783280692,214,0 +170783280742,214,0 +170783280789,214,0 +170783280839,214,0 +170783280888,214,0 +170783280936,214,0 +170783280986,214,0 +170783281035,214,0 +170783281085,214,0 +170783281133,214,0 +170783281182,214,0 +170783281230,213,0 +170783281278,213,0 +170783281326,213,0 +170783281374,213,0 +170783281422,213,0 +170783281471,213,0 +170783281521,213,0 +170783281570,213,0 +170783281618,214,0 +170783281666,214,0 +170783281716,214,0 +170783281764,214,0 +170783281812,214,0 +170783281861,214,0 +170783281909,214,0 +170783281957,214,0 +170783282007,214,0 +170783282055,214,0 +170783282103,214,0 +170783282152,213,0 +170783282202,213,0 +170783282250,213,0 +170783282297,213,0 +170783282345,213,0 +170783282393,213,0 +170783282441,214,0 +170783282489,214,0 +170783282537,214,0 +170783282587,214,0 +170783282636,214,0 +170783282684,214,0 +170783282732,214,0 +170783282781,214,0 +170783282831,214,0 +170783282879,214,0 +170783282927,214,0 +170783282975,214,0 +170783283023,214,0 +170783283072,213,0 +170783283122,213,0 +170783283170,213,0 +170783283219,213,0 +170783283267,213,0 +170783283316,213,0 +170783283366,213,0 +170783283416,213,0 +170783283464,214,0 +170783283511,214,0 +170783283559,214,0 +170783283607,214,0 +170783283655,214,0 +170783283705,214,0 +170783283753,214,0 +170783283801,214,0 +170783283849,214,0 +170783283897,214,0 +170783283945,214,0 +170783283994,213,0 +170783284042,213,0 +170783284090,213,0 +170783284138,213,0 +170783284186,213,0 +170783284235,213,0 +170783284285,213,0 +170783284334,213,0 +170783284382,214,0 +170783284432,213,0 +170783284480,213,0 +170783284529,214,0 +170783284577,214,0 +170783284625,214,0 +170783284673,214,0 +170783284721,214,0 +170783284770,214,0 +170783284820,214,0 +170783284868,214,0 +170783284917,213,0 +170783284967,213,0 +170783285016,213,0 +170783285066,213,0 +170783285115,213,0 +170783285163,213,0 +170783285211,213,0 +170783285259,214,0 +170783285307,213,0 +170783285355,214,0 +170783285403,214,0 +170783285451,214,0 +170783285499,214,0 +170783285546,214,0 +170783285594,214,0 +170783285642,214,0 +170783285690,214,0 +170783285740,214,0 +170783285788,214,0 +170783285835,213,0 +170783285883,213,0 +170783285931,213,0 +170783285980,213,0 +170783286028,213,0 +170783286076,213,0 +170783286124,213,0 +170783286173,213,0 +170783286221,213,0 +170783286269,213,0 +170783286317,213,0 +170783286365,214,0 +170783286412,214,0 +170783286460,214,0 +170783286508,214,0 +170783286556,214,0 +170783286604,214,0 +170783286652,214,0 +170783286700,214,0 +170783286747,213,0 +170783286795,213,0 +170783286843,213,0 +170783286893,213,0 +170783286940,213,0 +170783286988,213,0 +170783287038,213,0 +170783287087,213,0 +170783287135,213,0 +170783287185,213,0 +170783287233,214,0 +170783287281,214,0 +170783287329,214,0 +170783287376,214,0 +170783287424,214,0 +170783287472,214,0 +170783287522,214,0 +170783287570,214,0 +170783287618,214,0 +170783287665,213,0 +170783287713,213,0 +170783287763,213,0 +170783287811,213,0 +170783287859,213,0 +170783287907,213,0 +170783287956,213,0 +170783288004,213,0 +170783288052,213,0 +170783288102,214,0 +170783288149,214,0 +170783288197,214,0 +170783288245,214,0 +170783288293,214,0 +170783288341,213,0 +170783288391,213,0 +170783288438,213,0 +170783288488,214,0 +170783288536,214,0 +170783288584,213,0 +170783288632,213,0 +170783288679,213,0 +170783288729,213,0 +170783288778,213,0 +170783288826,213,0 +170783288874,213,0 +170783288924,213,0 +170783288972,213,0 +170783289019,213,0 +170783289067,213,0 +170783289115,213,0 +170783289163,213,0 +170783289213,214,0 +170783289260,214,0 +170783289308,214,0 +170783289358,213,0 +170783289406,214,0 +170783289454,214,0 +170783289502,213,0 +170783289550,213,0 +170783289598,213,0 +170783289645,213,0 +170783289695,213,0 +170783289743,213,0 +170783289791,213,0 +170783289839,213,0 +170783289888,213,0 +170783289938,213,0 +170783289987,213,0 +170783290035,213,0 +170783290084,213,0 +170783290132,214,0 +170783290180,214,0 +170783290228,214,0 +170783290276,214,0 +170783290324,214,0 +170783290372,214,0 +170783290420,213,0 +170783290468,213,0 +170783290516,213,0 +170783290564,213,0 +170783290611,213,0 +170783290659,213,0 +170783290709,213,0 +170783290758,213,0 +170783290808,213,0 +170783290856,213,0 +170783290904,213,0 +170783290952,213,0 +170783291000,213,0 +170783291049,213,0 +170783291097,213,0 +170783291145,213,0 +170783291193,213,0 +170783291241,213,0 +170783291289,214,0 +170783291337,213,0 +170783291385,213,0 +170783291434,213,0 +170783291482,213,0 +170783291530,213,0 +170783291578,213,0 +170783291626,213,0 +170783291675,213,0 +170783291723,213,0 +170783291773,213,0 +170783291821,213,0 +170783291869,214,0 +170783291918,213,0 +170783291966,214,0 +170783292014,214,0 +170783292063,214,0 +170783292113,214,0 +170783292161,214,0 +170783292209,214,0 +170783292258,213,0 +170783292308,213,0 +170783292356,213,0 +170783292404,213,0 +170783292452,213,0 +170783292500,213,0 +170783292549,213,0 +170783292599,213,0 +170783292648,213,0 +170783292696,214,0 +170783292744,214,0 +170783292792,214,0 +170783292839,214,0 +170783292889,214,0 +170783292937,214,0 +170783292986,214,0 +170783293034,214,0 +170783293084,214,0 +170783293132,214,0 +170783293180,213,0 +170783293227,213,0 +170783293277,213,0 +170783293325,213,0 +170783293374,213,0 +170783293422,213,0 +170783293470,213,0 +170783293520,213,0 +170783293568,213,0 +170783293617,213,0 +170783293665,214,0 +170783293713,214,0 +170783293761,214,0 +170783293810,214,0 +170783293860,214,0 +170783293908,214,0 +170783293955,214,0 +170783294003,214,0 +170783294053,214,0 +170783294101,213,0 +170783294149,213,0 +170783294197,213,0 +170783294245,213,0 +170783294292,213,0 +170783294342,213,0 +170783294391,213,0 +170783294439,213,0 +170783294489,213,0 +170783294537,214,0 +170783294585,214,0 +170783294632,214,0 +170783294680,214,0 +170783294728,214,0 +170783294776,214,0 +170783294824,214,0 +170783294874,214,0 +170783294922,214,0 +170783294969,214,0 +170783295017,213,0 +170783295065,213,0 +170783295113,213,0 +170783295163,213,0 +170783295210,213,0 +170783295258,213,0 +170783295306,214,0 +170783295356,214,0 +170783295403,214,0 +170783295451,214,0 +170783295501,214,0 +170783295550,214,0 +170783295598,214,0 +170783295646,214,0 +170783295696,214,0 +170783295744,214,0 +170783295791,214,0 +170783295841,214,0 +170783295889,214,0 +170783295937,213,0 +170783295985,213,0 +170783296033,213,0 +170783296080,213,0 +170783296128,213,0 +170783296176,213,0 +170783296226,214,0 +170783296273,214,0 +170783296321,214,0 +170783296369,214,0 +170783296417,214,0 +170783296467,214,0 +170783296515,214,0 +170783296564,214,0 +170783296614,214,0 +170783296662,214,0 +170783296711,214,0 +170783296759,214,0 +170783296809,214,0 +170783296857,212,0 +170783296906,213,0 +170783296954,213,0 +170783297002,213,0 +170783297050,213,0 +170783297098,213,0 +170783297146,213,0 +170783297194,213,0 +170783297242,213,0 +170783297291,213,0 +170783297339,213,0 +170783297387,213,0 +170783297435,213,0 +170783297483,213,0 +170783297531,213,0 +170783297579,213,0 +170783297627,214,0 +170783297676,214,0 +170783297724,214,0 +170783297772,213,0 +170783297820,213,0 +170783297868,213,0 +170783297916,213,0 +170783297964,213,0 +170783298012,213,0 +170783298059,213,0 +170783298109,213,0 +170783298158,213,0 +170783298206,214,0 +170783298254,214,0 +170783298304,214,0 +170783298352,214,0 +170783298400,214,0 +170783298449,214,0 +170783298497,214,0 +170783298545,214,0 +170783298593,214,0 +170783298642,214,0 +170783298692,213,0 +170783298740,213,0 +170783298788,212,0 +170783298837,213,0 +170783298885,213,0 +170783298933,212,0 +170783298982,213,0 +170783299030,213,0 +170783299078,213,0 +170783299126,213,0 +170783299174,213,0 +170783299222,213,0 +170783299270,212,0 +170783299318,213,0 +170783299365,213,0 +170783299413,213,0 +170783299461,213,0 +170783299511,214,0 +170783299559,214,0 +170783299606,213,0 +170783299654,213,0 +170783299702,213,0 +170783299750,213,0 +170783299798,213,0 +170783299847,213,0 +170783299897,213,0 +170783299945,213,0 +170783299993,213,0 +170783300041,213,0 +170783300090,213,0 +170783300140,213,0 +170783300188,213,0 +170783300236,213,0 +170783300285,213,0 +170783300333,213,0 +170783300381,213,0 +170783300429,214,0 +170783300477,214,0 +170783300526,213,0 +170783300576,213,0 +170783300624,213,0 +170783300672,213,0 +170783300721,213,0 +170783300771,213,0 +170783300819,213,0 +170783300867,213,0 +170783300916,213,0 +170783300964,213,0 +170783301012,213,0 +170783301060,213,0 +170783301108,213,0 +170783301157,214,0 +170783301205,213,0 +170783301253,214,0 +170783301302,214,0 +170783301350,214,0 +170783301400,214,0 +170783301448,213,0 +170783301497,213,0 +170783301547,213,0 +170783301595,213,0 +170783301643,213,0 +170783301691,213,0 +170783301740,213,0 +170783301790,213,0 +170783301838,213,0 +170783301886,213,0 +170783301933,214,0 +170783301983,213,0 +170783302031,213,0 +170783302079,214,0 +170783302128,214,0 +170783302176,214,0 +170783302226,214,0 +170783302274,214,0 +170783302322,214,0 +170783302371,213,0 +170783302421,213,0 +170783302469,213,0 +170783302517,213,0 +170783302564,213,0 +170783302612,213,0 +170783302660,213,0 +170783302708,213,0 +170783302758,213,0 +170783302806,213,0 +170783302854,214,0 +170783302903,214,0 +170783302951,214,0 +170783303000,214,0 +170783303050,214,0 +170783303098,214,0 +170783303146,214,0 +170783303195,214,0 +170783303243,214,0 +170783303293,213,0 +170783303340,213,0 +170783303390,213,0 +170783303438,213,0 +170783303487,213,0 +170783303535,213,0 +170783303585,213,0 +170783303634,213,0 +170783303684,213,0 +170783303732,214,0 +170783303781,214,0 +170783303829,214,0 +170783303877,214,0 +170783303925,214,0 +170783303973,214,0 +170783304021,214,0 +170783304068,214,0 +170783304118,214,0 +170783304166,214,0 +170783304214,213,0 +170783304262,213,0 +170783304310,213,0 +170783304357,213,0 +170783304407,213,0 +170783304455,213,0 +170783304504,213,0 +170783304552,213,0 +170783304602,213,0 +170783304650,214,0 +170783304697,214,0 +170783304745,214,0 +170783304793,214,0 +170783304843,214,0 +170783304891,214,0 +170783304939,214,0 +170783304987,214,0 +170783305034,214,0 +170783305082,214,0 +170783305132,213,0 +170783305181,213,0 +170783305229,213,0 +170783305277,213,0 +170783305325,213,0 +170783305373,213,0 +170783305421,213,0 +170783305469,213,0 +170783305518,213,0 +170783305566,213,0 +170783305616,213,0 +170783305664,214,0 +170783305712,214,0 +170783305761,214,0 +170783305809,214,0 +170783305857,214,0 +170783305906,214,0 +170783305954,214,0 +170783306004,214,0 +170783306052,213,0 +170783306101,213,0 +170783306151,213,0 +170783306200,213,0 +170783306248,213,0 +170783306298,213,0 +170783306347,213,0 +170783306395,213,0 +170783306443,213,0 +170783306491,213,0 +170783306539,213,0 +170783306588,214,0 +170783306638,214,0 +170783306686,214,0 +170783306735,214,0 +170783306783,214,0 +170783306831,214,0 +170783306879,214,0 +170783306927,214,0 +170783306975,213,0 +170783307023,213,0 +170783307070,213,0 +170783307118,213,0 +170783307166,214,0 +170783307216,213,0 +170783307264,213,0 +170783307311,213,0 +170783307361,213,0 +170783307410,214,0 +170783307458,214,0 +170783307508,214,0 +170783307556,214,0 +170783307605,214,0 +170783307653,214,0 +170783307701,214,0 +170783307749,214,0 +170783307798,214,0 +170783307848,214,0 +170783307896,213,0 +170783307944,213,0 +170783307992,213,0 +170783308040,213,0 +170783308089,213,0 +170783308137,213,0 +170783308185,213,0 +170783308233,213,0 +170783308282,214,0 +170783308332,214,0 +170783308380,214,0 +170783308428,214,0 +170783308476,214,0 +170783308525,214,0 +170783308573,214,0 +170783308621,214,0 +170783308669,214,0 +170783308717,214,0 +170783308765,214,0 +170783308813,213,0 +170783308861,213,0 +170783308909,213,0 +170783308956,214,0 +170783309004,213,0 +170783309054,214,0 +170783309102,214,0 +170783309150,214,0 +170783309197,214,0 +170783309245,214,0 +170783309295,214,0 +170783309343,214,0 +170783309391,214,0 +170783309439,214,0 +170783309488,214,0 +170783309536,214,0 +170783309584,214,0 +170783309632,214,0 +170783309680,214,0 +170783309728,213,0 +170783309778,213,0 +170783309825,213,0 +170783309875,213,0 +170783309923,213,0 +170783309971,213,0 +170783310019,213,0 +170783310068,214,0 +170783310116,213,0 +170783310166,214,0 +170783310215,214,0 +170783310265,214,0 +170783310313,214,0 +170783310362,214,0 +170783310412,214,0 +170783310460,214,0 +170783310508,214,0 +170783310555,214,0 +170783310603,214,0 +170783310653,213,0 +170783310701,213,0 +170783310751,213,0 +170783310800,213,0 +170783310850,213,0 +170783310898,213,0 +170783310947,213,0 +170783310996,214,0 +170783311044,214,0 +170783311092,214,0 +170783311140,214,0 +170783311190,214,0 +170783311238,214,0 +170783311286,214,0 +170783311335,214,0 +170783311383,214,0 +170783311432,214,0 +170783311480,214,0 +170783311530,214,0 +170783311579,213,0 +170783311627,213,0 +170783311675,213,0 +170783311723,213,0 +170783311771,213,0 +170783311820,213,0 +170783311868,213,0 +170783311916,214,0 +170783311964,214,0 +170783312012,214,0 +170783312060,214,0 +170783312107,214,0 +170783312155,214,0 +170783312203,214,0 +170783312251,214,0 +170783312299,214,0 +170783312347,214,0 +170783312395,214,0 +170783312443,214,0 +170783312491,213,0 +170783312539,213,0 +170783312587,213,0 +170783312635,213,0 +170783312682,213,0 +170783312730,213,0 +170783312778,213,0 +170783312826,213,0 +170783312874,213,0 +170783312922,213,0 +170783312970,213,0 +170783313019,213,0 +170783313067,214,0 +170783313117,214,0 +170783313165,213,0 +170783313214,214,0 +170783313262,214,0 +170783313312,214,0 +170783313361,214,0 +170783313409,213,0 +170783313459,213,0 +170783313507,213,0 +170783313555,213,0 +170783313603,213,0 +170783313650,213,0 +170783313698,213,0 +170783313746,213,0 +170783313794,213,0 +170783313842,213,0 +170783313890,213,0 +170783313938,213,0 +170783313987,213,0 +170783314037,214,0 +170783314085,213,0 +170783314133,213,0 +170783314182,213,0 +170783314230,214,0 +170783314278,214,0 +170783314326,213,0 +170783314374,213,0 +170783314423,213,0 +170783314471,213,0 +170783314519,213,0 +170783314567,213,0 +170783314616,213,0 +170783314666,213,0 +170783314715,213,0 +170783314763,213,0 +170783314811,213,0 +170783314859,213,0 +170783314907,213,0 +170783314955,213,0 +170783315003,213,0 +170783315051,213,0 +170783315101,213,0 +170783315149,214,0 +170783315196,214,0 +170783315246,213,0 +170783315295,213,0 +170783315343,213,0 +170783315393,213,0 +170783315441,213,0 +170783315490,213,0 +170783315538,213,0 +170783315588,213,0 +170783315637,213,0 +170783315685,213,0 +170783315733,213,0 +170783315782,214,0 +170783315832,214,0 +170783315880,214,0 +170783315928,214,0 +170783315976,214,0 +170783316025,214,0 +170783316073,214,0 +170783316123,214,0 +170783316170,213,0 +170783316220,213,0 +170783316270,213,0 +170783316317,213,0 +170783316367,213,0 +170783316416,213,0 +170783316466,213,0 +170783316514,213,0 +170783316563,213,0 +170783316613,213,0 +170783316661,213,0 +170783316709,213,0 +170783316757,213,0 +170783316805,214,0 +170783316854,214,0 +170783316902,214,0 +170783316952,214,0 +170783317001,214,0 +170783317051,214,0 +170783317100,213,0 +170783317148,213,0 +170783317197,213,0 +170783317245,213,0 +170783317293,213,0 +170783317343,213,0 +170783317391,213,0 +170783317439,213,0 +170783317488,213,0 +170783317537,213,0 +170783317587,213,0 +170783317636,214,0 +170783317686,214,0 +170783317735,214,0 +170783317785,214,0 +170783317834,214,0 +170783317882,214,0 +170783317932,214,0 +170783317979,213,0 +170783318029,213,0 +170783318078,213,0 +170783318126,213,0 +170783318176,213,0 +170783318224,213,0 +170783318273,213,0 +170783318321,213,0 +170783318369,213,0 +170783318417,213,0 +170783318466,213,0 +170783318514,213,0 +170783318563,213,0 +170783318611,214,0 +170783318659,214,0 +170783318707,214,0 +170783318755,214,0 +170783318803,214,0 +170783318851,214,0 +170783318899,213,0 +170783318947,213,0 +170783318995,213,0 +170783319043,213,0 +170783319092,213,0 +170783319140,213,0 +170783319189,213,0 +170783319237,213,0 +170783319285,213,0 +170783319335,213,0 +170783319383,214,0 +170783319430,214,0 +170783319478,214,0 +170783319526,214,0 +170783319576,214,0 +170783319624,214,0 +170783319671,214,0 +170783319721,214,0 +170783319769,214,0 +170783319817,213,0 +170783319865,213,0 +170783319912,213,0 +170783319962,213,0 +170783320010,213,0 +170783320059,213,0 +170783320107,213,0 +170783320155,213,0 +170783320205,213,0 +170783320253,214,0 +170783320301,213,0 +170783320348,214,0 +170783320396,214,0 +170783320444,214,0 +170783320492,214,0 +170783320540,214,0 +170783320590,214,0 +170783320638,214,0 +170783320685,214,0 +170783320735,213,0 +170783320784,213,0 +170783320834,213,0 +170783320882,213,0 +170783320930,213,0 +170783320978,213,0 +170783321025,213,0 +170783321075,213,0 +170783321123,213,0 +170783321171,213,0 +170783321219,213,0 +170783321268,213,0 +170783321318,213,0 +170783321366,213,0 +170783321415,214,0 +170783321463,213,0 +170783321511,213,0 +170783321559,214,0 +170783321608,214,0 +170783321656,213,0 +170783321705,213,0 +170783321755,213,0 +170783321804,213,0 +170783321852,213,0 +170783321900,213,0 +170783321948,213,0 +170783321996,213,0 +170783322044,213,0 +170783322092,213,0 +170783322140,213,0 +170783322188,214,0 +170783322236,214,0 +170783322284,214,0 +170783322331,214,0 +170783322379,214,0 +170783322427,214,0 +170783322475,214,0 +170783322525,214,0 +170783322573,213,0 +170783322622,213,0 +170783322670,213,0 +170783322720,213,0 +170783322768,213,0 +170783322816,213,0 +170783322864,213,0 +170783322913,213,0 +170783322963,213,0 +170783323011,213,0 +170783323058,213,0 +170783323106,213,0 +170783323156,214,0 +170783323204,214,0 +170783323252,214,0 +170783323300,214,0 +170783323348,214,0 +170783323395,214,0 +170783323445,214,0 +170783323493,213,0 +170783323543,213,0 +170783323590,213,0 +170783323638,213,0 +170783323686,213,0 +170783323736,213,0 +170783323784,213,0 +170783323831,213,0 +170783323879,213,0 +170783323927,214,0 +170783323975,214,0 +170783324023,214,0 +170783324070,214,0 +170783324118,214,0 +170783324166,214,0 +170783324215,214,0 +170783324263,214,0 +170783324311,214,0 +170783324359,214,0 +170783324407,213,0 +170783324455,213,0 +170783324504,213,0 +170783324552,213,0 +170783324600,213,0 +170783324648,214,0 +170783324695,213,0 +170783324743,213,0 +170783324791,214,0 +170783324839,214,0 +170783324889,214,0 +170783324936,214,0 +170783324984,214,0 +170783325032,214,0 +170783325080,214,0 +170783325128,214,0 +170783325176,214,0 +170783325226,214,0 +170783325273,214,0 +170783325323,214,0 +170783325371,213,0 +170783325419,213,0 +170783325467,213,0 +170783325515,213,0 +170783325563,213,0 +170783325612,213,0 +170783325660,213,0 +170783325709,214,0 +170783325757,214,0 +170783325807,214,0 +170783325856,214,0 +170783325906,214,0 +170783325954,214,0 +170783326003,214,0 +170783326053,214,0 +170783326101,214,0 +170783326150,214,0 +170783326198,214,0 +170783326246,213,0 +170783326294,213,0 +170783326342,213,0 +170783326389,213,0 +170783326437,213,0 +170783326485,213,0 +170783326533,213,0 +170783326581,213,0 +170783326629,213,0 +170783326678,214,0 +170783326728,214,0 +170783326776,214,0 +170783326825,214,0 +170783326875,214,0 +170783326923,214,0 +170783326972,214,0 +170783327020,214,0 +170783327068,214,0 +170783327116,214,0 +170783327164,213,0 +170783327212,213,0 +170783327261,213,0 +170783327311,213,0 +170783327359,213,0 +170783327407,213,0 +170783327456,213,0 +170783327504,213,0 +170783327552,213,0 +170783327601,213,0 +170783327649,213,0 +170783327697,213,0 +170783327745,214,0 +170783327793,214,0 +170783327841,214,0 +170783327889,214,0 +170783327937,214,0 +170783327986,214,0 +170783328036,214,0 +170783328084,213,0 +170783328132,213,0 +170783328179,213,0 +170783328227,213,0 +170783328277,213,0 +170783328326,213,0 +170783328374,213,0 +170783328424,213,0 +170783328472,213,0 +170783328521,213,0 +170783328569,213,0 +170783328617,214,0 +170783328666,214,0 +170783328716,214,0 +170783328765,214,0 +170783328813,213,0 +170783328861,214,0 +170783328909,214,0 +170783328958,214,0 +170783329006,213,0 +170783329055,213,0 +170783329104,212,0 +170783329152,213,0 +170783329200,213,0 +170783329248,213,0 +170783329296,213,0 +170783329346,213,0 +170783329393,213,0 +170783329441,213,0 +170783329489,213,0 +170783329539,213,0 +170783329587,213,0 +170783329635,214,0 +170783329683,214,0 +170783329732,214,0 +170783329782,214,0 +170783329830,214,0 +170783329879,214,0 +170783329927,213,0 +170783329975,213,0 +170783330023,213,0 +170783330072,213,0 +170783330120,213,0 +170783330168,213,0 +170783330218,213,0 +170783330267,213,0 +170783330315,213,0 +170783330363,213,0 +170783330411,213,0 +170783330459,213,0 +170783330506,213,0 +170783330554,213,0 +170783330602,213,0 +170783330652,213,0 +170783330701,213,0 +170783330751,214,0 +170783330799,214,0 +170783330846,213,0 +170783330894,213,0 +170783330942,213,0 +170783330992,213,0 +170783331041,213,0 +170783331089,213,0 +170783331138,213,0 +170783331186,213,0 +170783331234,213,0 +170783331282,213,0 +170783331330,213,0 +170783331378,213,0 +170783331426,213,0 +170783331474,214,0 +170783331522,214,0 +170783331570,214,0 +170783331618,214,0 +170783331667,214,0 +170783331716,214,0 +170783331764,213,0 +170783331814,213,0 +170783331863,213,0 +170783331911,213,0 +170783331959,213,0 +170783332007,213,0 +170783332057,213,0 +170783332105,213,0 +170783332153,213,0 +170783332202,213,0 +170783332252,213,0 +170783332299,213,0 +170783332347,214,0 +170783332395,214,0 +170783332443,214,0 +170783332493,214,0 +170783332541,214,0 +170783332589,214,0 +170783332638,214,0 +170783332688,213,0 +170783332736,213,0 +170783332784,213,0 +170783332831,213,0 +170783332879,213,0 +170783332927,213,0 +170783332975,213,0 +170783333025,213,0 +170783333072,213,0 +170783333122,213,0 +170783333171,213,0 +170783333219,213,0 +170783333269,214,0 +170783333318,214,0 +170783333366,213,0 +170783333415,213,0 +170783333463,213,0 +170783333511,213,0 +170783333559,214,0 +170783333607,213,0 +170783333655,213,0 +170783333704,213,0 +170783333752,213,0 +170783333800,213,0 +170783333848,213,0 +170783333896,213,0 +170783333946,213,0 +170783333995,213,0 +170783334045,213,0 +170783334093,213,0 +170783334141,214,0 +170783334189,214,0 +170783334236,214,0 +170783334284,214,0 +170783334334,214,0 +170783334382,214,0 +170783334430,214,0 +170783334478,214,0 +170783334525,213,0 +170783334573,213,0 +170783334623,213,0 +170783334672,213,0 +170783334720,213,0 +170783334770,213,0 +170783334818,213,0 +170783334866,213,0 +170783334914,213,0 +170783334962,213,0 +170783335010,213,0 +170783335057,214,0 +170783335107,214,0 +170783335156,214,0 +170783335204,214,0 +170783335254,214,0 +170783335303,214,0 +170783335353,214,0 +170783335402,214,0 +170783335450,213,0 +170783335500,213,0 +170783335548,213,0 +170783335597,213,0 +170783335647,213,0 +170783335695,213,0 +170783335744,213,0 +170783335792,213,0 +170783335840,213,0 +170783335888,213,0 +170783335935,214,0 +170783335983,214,0 +170783336031,214,0 +170783336081,214,0 +170783336129,214,0 +170783336176,214,0 +170783336224,214,0 +170783336272,214,0 +170783336320,214,0 +170783336369,213,0 +170783336417,213,0 +170783336465,213,0 +170783336513,213,0 +170783336561,213,0 +170783336609,213,0 +170783336657,213,0 +170783336706,213,0 +170783336754,213,0 +170783336803,213,0 +170783336851,213,0 +170783336899,214,0 +170783336949,213,0 +170783336997,214,0 +170783337045,214,0 +170783337093,214,0 +170783337142,214,0 +170783337190,214,0 +170783337238,214,0 +170783337286,213,0 +170783337336,213,0 +170783337384,213,0 +170783337431,213,0 +170783337479,213,0 +170783337527,213,0 +170783337575,213,0 +170783337623,213,0 +170783337673,213,0 +170783337721,213,0 +170783337769,213,0 +170783337817,214,0 +170783337866,214,0 +170783337914,214,0 +170783337962,214,0 +170783338011,214,0 +170783338061,214,0 +170783338109,214,0 +170783338157,214,0 +170783338205,213,0 +170783338252,213,0 +170783338300,213,0 +170783338350,213,0 +170783338398,213,0 +170783338446,213,0 +170783338494,214,0 +170783338543,213,0 +170783338593,214,0 +170783338642,213,0 +170783338692,214,0 +170783338739,214,0 +170783338787,214,0 +170783338837,214,0 +170783338885,214,0 +170783338934,214,0 +170783338984,214,0 +170783339032,214,0 +170783339080,214,0 +170783339129,213,0 +170783339177,213,0 +170783339225,213,0 +170783339274,213,0 +170783339324,213,0 +170783339374,213,0 +170783339421,213,0 +170783339469,213,0 +170783339519,214,0 +170783339567,214,0 +170783339616,214,0 +170783339664,214,0 +170783339712,214,0 +170783339760,214,0 +170783339808,214,0 +170783339856,214,0 +170783339904,214,0 +170783339952,214,0 +170783340000,214,0 +170783340049,213,0 +170783340097,213,0 +170783340146,213,0 +170783340194,213,0 +170783340244,213,0 +170783340292,213,0 +170783340340,213,0 +170783340389,214,0 +170783340439,214,0 +170783340487,214,0 +170783340536,214,0 +170783340584,214,0 +170783340634,214,0 +170783340682,214,0 +170783340731,214,0 +170783340779,214,0 +170783340827,214,0 +170783340875,214,0 +170783340923,214,0 +170783340972,213,0 +170783341022,213,0 +170783341071,213,0 +170783341119,213,0 +170783341169,213,0 +170783341218,213,0 +170783341268,213,0 +170783341315,213,0 +170783341363,213,0 +170783341411,213,0 +170783341459,213,0 +170783341507,213,0 +170783341555,213,0 +170783341603,214,0 +170783341651,214,0 +170783341700,213,0 +170783341748,213,0 +170783341798,214,0 +170783341846,214,0 +170783341893,213,0 +170783341941,213,0 +170783341991,213,0 +170783342039,213,0 +170783342088,213,0 +170783342138,213,0 +170783342186,213,0 +170783342233,213,0 +170783342283,213,0 +170783342331,213,0 +170783342379,213,0 +170783342427,213,0 +170783342475,213,0 +170783342524,213,0 +170783342572,213,0 +170783342620,214,0 +170783342668,214,0 +170783342716,214,0 +170783342765,214,0 +170783342813,213,0 +170783342862,213,0 +170783342912,213,0 +170783342960,213,0 +170783343008,213,0 +170783343056,213,0 +170783343103,213,0 +170783343151,213,0 +170783343201,213,0 +170783343249,213,0 +170783343298,213,0 +170783343346,213,0 +170783343396,213,0 +170783343444,214,0 +170783343493,214,0 +170783343541,214,0 +170783343589,214,0 +170783343637,214,0 +170783343685,214,0 +170783343733,213,0 +170783343782,213,0 +170783343830,213,0 +170783343878,213,0 +170783343927,213,0 +170783343975,213,0 +170783344025,213,0 +170783344073,213,0 +170783344121,213,0 +170783344168,213,0 +170783344216,213,0 +170783344264,214,0 +170783344314,213,0 +170783344363,214,0 +170783344411,214,0 +170783344459,214,0 +170783344507,214,0 +170783344555,214,0 +170783344603,214,0 +170783344651,213,0 +170783344699,213,0 +170783344747,213,0 +170783344794,213,0 +170783344844,213,0 +170783344893,213,0 +170783344943,213,0 +170783344992,213,0 +170783345042,213,0 +170783345091,213,0 +170783345139,213,0 +170783345187,213,0 +170783345237,213,0 +170783345285,214,0 +170783345332,214,0 +170783345380,214,0 +170783345428,214,0 +170783345478,214,0 +170783345526,213,0 +170783345574,213,0 +170783345622,213,0 +170783345671,213,0 +170783345719,213,0 +170783345769,213,0 +170783345818,213,0 +170783345866,213,0 +170783345914,213,0 +170783345962,213,0 +170783346010,213,0 +170783346058,213,0 +170783346107,213,0 +170783346155,213,0 +170783346203,213,0 +170783346251,214,0 +170783346301,213,0 +170783346348,213,0 +170783346398,214,0 +170783346446,213,0 +170783346494,213,0 +170783346542,213,0 +170783346590,213,0 +170783346637,213,0 +170783346685,213,0 +170783346733,213,0 +170783346781,213,0 +170783346831,213,0 +170783346879,213,0 +170783346927,213,0 +170783346975,213,0 +170783347024,213,0 +170783347073,213,0 +170783347123,214,0 +170783347171,213,0 +170783347219,213,0 +170783347268,213,0 +170783347318,214,0 +170783347367,213,0 +170783347415,213,0 +170783347463,213,0 +170783347511,213,0 +170783347559,213,0 +170783347607,213,0 +170783347655,213,0 +170783347703,213,0 +170783347751,213,0 +170783347799,214,0 +170783347848,214,0 +170783347896,214,0 +170783347944,214,0 +170783347992,214,0 +170783348040,214,0 +170783348088,214,0 +170783348137,214,0 +170783348185,214,0 +170783348233,214,0 +170783348281,213,0 +170783348329,213,0 +170783348377,213,0 +170783348424,213,0 +170783348472,213,0 +170783348522,213,0 +170783348570,213,0 +170783348618,214,0 +170783348666,214,0 +170783348714,214,0 +170783348761,214,0 +170783348809,214,0 +170783348857,214,0 +170783348907,214,0 +170783348954,214,0 +170783349004,214,0 +170783349053,214,0 +170783349101,214,0 +170783349149,214,0 +170783349197,214,0 +170783349245,213,0 +170783349293,213,0 +170783349340,213,0 +170783349388,213,0 +170783349436,213,0 +170783349484,213,0 +170783349532,213,0 +170783349580,213,0 +170783349628,213,0 +170783349676,214,0 +170783349725,214,0 +170783349773,214,0 +170783349821,214,0 +170783349869,214,0 +170783349917,214,0 +170783349965,214,0 +170783350015,214,0 +170783350062,214,0 +170783350110,214,0 +170783350160,213,0 +170783350208,213,0 +170783350256,213,0 +170783350304,213,0 +170783350351,213,0 +170783350399,213,0 +170783350447,213,0 +170783350495,214,0 +170783350543,214,0 +170783350591,214,0 +170783350639,214,0 +170783350687,214,0 +170783350734,214,0 +170783350784,214,0 +170783350832,214,0 +170783350880,214,0 +170783350929,214,0 +170783350979,214,0 +170783351028,214,0 +170783351078,213,0 +170783351127,213,0 +170783351175,213,0 +170783351223,213,0 +170783351271,213,0 +170783351319,213,0 +170783351367,213,0 +170783351415,213,0 +170783351463,213,0 +170783351511,214,0 +170783351560,213,0 +170783351610,214,0 +170783351658,214,0 +170783351705,214,0 +170783351753,214,0 +170783351803,214,0 +170783351851,214,0 +170783351900,214,0 +170783351948,214,0 +170783351996,213,0 +170783352044,213,0 +170783352094,213,0 +170783352143,213,0 +170783352191,213,0 +170783352239,213,0 +170783352287,213,0 +170783352336,213,0 +170783352384,213,0 +170783352432,213,0 +170783352480,214,0 +170783352528,214,0 +170783352578,214,0 +170783352626,214,0 +170783352675,214,0 +170783352725,214,0 +170783352772,214,0 +170783352820,214,0 +170783352868,214,0 +170783352916,213,0 +170783352964,213,0 +170783353012,213,0 +170783353060,213,0 +170783353108,213,0 +170783353156,213,0 +170783353204,213,0 +170783353252,214,0 +170783353300,214,0 +170783353348,214,0 +170783353396,214,0 +170783353443,214,0 +170783353493,214,0 +170783353542,214,0 +170783353590,214,0 +170783353638,214,0 +170783353686,214,0 +170783353735,214,0 +170783353783,214,0 +170783353833,213,0 +170783353882,213,0 +170783353930,213,0 +170783353978,213,0 +170783354026,213,0 +170783354074,213,0 +170783354124,213,0 +170783354172,214,0 +170783354219,213,0 +170783354267,213,0 +170783354315,214,0 +170783354363,214,0 +170783354413,214,0 +170783354461,214,0 +170783354510,214,0 +170783354558,214,0 +170783354606,214,0 +170783354654,214,0 +170783354702,213,0 +170783354751,213,0 +170783354801,213,0 +170783354850,213,0 +170783354898,213,0 +170783354948,213,0 +170783354997,213,0 +170783355045,213,0 +170783355095,213,0 +170783355143,213,0 +170783355192,213,0 +170783355240,214,0 +170783355290,214,0 +170783355338,214,0 +170783355386,214,0 +170783355433,214,0 +170783355481,214,0 +170783355531,214,0 +170783355580,214,0 +170783355628,214,0 +170783355676,213,0 +170783355724,213,0 +170783355773,213,0 +170783355821,213,0 +170783355869,213,0 +170783355919,213,0 +170783355968,213,0 +170783356016,213,0 +170783356066,213,0 +170783356115,213,0 +170783356163,214,0 +170783356213,214,0 +170783356262,214,0 +170783356310,214,0 +170783356358,214,0 +170783356406,214,0 +170783356454,214,0 +170783356503,214,0 +170783356551,214,0 +170783356601,213,0 +170783356649,213,0 +170783356697,213,0 +170783356745,213,0 +170783356793,213,0 +170783356841,213,0 +170783356890,213,0 +170783356938,213,0 +170783356986,213,0 +170783357034,213,0 +170783357084,213,0 +170783357132,213,0 +170783357179,214,0 +170783357229,214,0 +170783357277,214,0 +170783357326,214,0 +170783357374,214,0 +170783357422,214,0 +170783357472,213,0 +170783357520,213,0 +170783357567,213,0 +170783357615,213,0 +170783357665,213,0 +170783357713,213,0 +170783357761,213,0 +170783357808,213,0 +170783357856,213,0 +170783357904,213,0 +170783357954,213,0 +170783358002,213,0 +170783358050,213,0 +170783358099,214,0 +170783358147,213,0 +170783358195,214,0 +170783358244,214,0 +170783358292,214,0 +170783358340,214,0 +170783358388,213,0 +170783358436,213,0 +170783358486,213,0 +170783358535,213,0 +170783358583,213,0 +170783358631,213,0 +170783358680,213,0 +170783358730,213,0 +170783358778,213,0 +170783358826,213,0 +170783358874,213,0 +170783358923,213,0 +170783358973,213,0 +170783359021,214,0 +170783359068,213,0 +170783359118,213,0 +170783359167,214,0 +170783359215,213,0 +170783359263,215,0 +170783359311,213,0 +170783359359,213,0 +170783359407,213,0 +170783359455,213,0 +170783359503,213,0 +170783359551,213,0 +170783359599,213,0 +170783359647,213,0 +170783359695,213,0 +170783359743,213,0 +170783359792,213,0 +170783359840,213,0 +170783359888,213,0 +170783359937,213,0 +170783359987,213,0 +170783360035,213,0 +170783360083,213,0 +170783360131,214,0 +170783360180,214,0 +170783360228,213,0 +170783360278,213,0 +170783360326,213,0 +170783360374,213,0 +170783360421,213,0 +170783360469,213,0 +170783360519,213,0 +170783360567,213,0 +170783360615,213,0 +170783360663,213,0 +170783360710,213,0 +170783360758,213,0 +170783360806,214,0 +170783360856,214,0 +170783360904,214,0 +170783360952,214,0 +170783361001,214,0 +170783361049,214,0 +170783361097,214,0 +170783361145,213,0 +170783361194,213,0 +170783361244,213,0 +170783361292,213,0 +170783361341,213,0 +170783361389,213,0 +170783361439,213,0 +170783361487,213,0 +170783361536,213,0 +170783361584,213,0 +170783361632,213,0 +170783361681,213,0 +170783361731,214,0 +170783361780,214,0 +170783361828,214,0 +170783361876,214,0 +170783361924,213,0 +170783361972,214,0 +170783362020,214,0 +170783362070,213,0 +170783362118,213,0 +170783362167,213,0 +170783362215,213,0 +170783362263,213,0 +170783362311,213,0 +170783362359,213,0 +170783362407,213,0 +170783362455,213,0 +170783362503,213,0 +170783362551,213,0 +170783362599,214,0 +170783362646,214,0 +170783362694,214,0 +170783362742,214,0 +170783362790,214,0 +170783362838,214,0 +170783362886,214,0 +170783362934,214,0 +170783362984,213,0 +170783363033,213,0 +170783363081,213,0 +170783363131,213,0 +170783363179,213,0 +170783363228,213,0 +170783363278,213,0 +170783363325,213,0 +170783363374,213,0 +170783363423,213,0 +170783363473,213,0 +170783363520,214,0 +170783363568,214,0 +170783363618,213,0 +170783363666,214,0 +170783363714,214,0 +170783363761,214,0 +170783363811,214,0 +170783363860,214,0 +170783363908,213,0 +170783363956,213,0 +170783364004,213,0 +170783364052,213,0 +170783364099,213,0 +170783364147,213,0 +170783364196,213,0 +170783364243,213,0 +170783364291,213,0 +170783364341,213,0 +170783364388,213,0 +170783364436,214,0 +170783364484,213,0 +170783364534,214,0 +170783364581,214,0 +170783364631,214,0 +170783364679,214,0 +170783364727,214,0 +170783364775,214,0 +170783364822,213,0 +170783364870,213,0 +170783364918,213,0 +170783364968,213,0 +170783365016,213,0 +170783365064,213,0 +170783365112,213,0 +170783365161,213,0 +170783365211,213,0 +170783365259,213,0 +170783365306,213,0 +170783365356,214,0 +170783365404,214,0 +170783365453,214,0 +170783365503,214,0 +170783365551,214,0 +170783365600,214,0 +170783365648,214,0 +170783365698,214,0 +170783365747,213,0 +170783365795,213,0 +170783365843,213,0 +170783365891,213,0 +170783365939,213,0 +170783365986,213,0 +170783366034,213,0 +170783366082,213,0 +170783366130,213,0 +170783366178,213,0 +170783366227,213,0 +170783366275,214,0 +170783366323,214,0 +170783366371,214,0 +170783366419,214,0 +170783366467,214,0 +170783366514,214,0 +170783366562,214,0 +170783366610,214,0 +170783366658,213,0 +170783366706,213,0 +170783366754,213,0 +170783366801,213,0 +170783366849,213,0 +170783366897,213,0 +170783366945,213,0 +170783366993,213,0 +170783367042,213,0 +170783367090,213,0 +170783367138,213,0 +170783367185,213,0 +170783367233,213,0 +170783367281,214,0 +170783367329,214,0 +170783367378,214,0 +170783367426,214,0 +170783367474,214,0 +170783367522,214,0 +170783367569,213,0 +170783367619,213,0 +170783367667,213,0 +170783367714,213,0 +170783367764,213,0 +170783367812,213,0 +170783367859,213,0 +170783367909,213,0 +170783367956,213,0 +170783368004,213,0 +170783368052,213,0 +170783368100,213,0 +170783368148,213,0 +170783368195,213,0 +170783368243,213,0 +170783368291,213,0 +170783368339,213,0 +170783368387,214,0 +170783368434,214,0 +170783368484,214,0 +170783368532,214,0 +170783368579,214,0 +170783368627,214,0 +170783368675,214,0 +170783368723,214,0 +170783368771,214,0 +170783368818,214,0 +170783368866,214,0 +170783368914,214,0 +170783368962,213,0 +170783369010,213,0 +170783369058,213,0 +170783369105,213,0 +170783369153,213,0 +170783369203,213,0 +170783369250,213,0 +170783369298,214,0 +170783369348,214,0 +170783369397,214,0 +170783369445,214,0 +170783369493,214,0 +170783369541,214,0 +170783369588,214,0 +170783369636,214,0 +170783369684,214,0 +170783369732,214,0 +170783369781,214,0 +170783369829,214,0 +170783369877,213,0 +170783369926,213,0 +170783369974,213,0 +170783370022,213,0 +170783370070,214,0 +170783370118,213,0 +170783370166,214,0 +170783370216,214,0 +170783370265,214,0 +170783370315,214,0 +170783370362,214,0 +170783370412,214,0 +170783370460,214,0 +170783370508,214,0 +170783370555,214,0 +170783370603,214,0 +170783370651,214,0 +170783370699,214,0 +170783370747,214,0 +170783370796,213,0 +170783370844,213,0 +170783370892,213,0 +170783370941,213,0 +170783370989,213,0 +170783371038,213,0 +170783371086,214,0 +170783371134,214,0 +170783371182,214,0 +170783371232,214,0 +170783371280,214,0 +170783371329,214,0 +170783371377,214,0 +170783371425,214,0 +170783371473,214,0 +170783371521,214,0 +170783371569,214,0 +170783371618,214,0 +170783371666,214,0 +170783371714,213,0 +170783371764,213,0 +170783371813,213,0 +170783371861,214,0 +170783371909,214,0 +170783371957,214,0 +170783372005,214,0 +170783372053,214,0 +170783372101,214,0 +170783372149,214,0 +170783372198,214,0 +170783372246,214,0 +170783372296,214,0 +170783372344,214,0 +170783372393,214,0 +170783372443,214,0 +170783372490,214,0 +170783372538,214,0 +170783372586,214,0 +170783372634,213,0 +170783372684,213,0 +170783372733,213,0 +170783372783,213,0 +170783372830,213,0 +170783372878,213,0 +170783372928,213,0 +170783372976,213,0 +170783373024,213,0 +170783373072,214,0 +170783373120,214,0 +170783373167,214,0 +170783373215,214,0 +170783373263,214,0 +170783373313,214,0 +170783373362,214,0 +170783373410,214,0 +170783373458,214,0 +170783373508,214,0 +170783373557,213,0 +170783373605,213,0 +170783373653,213,0 +170783373701,213,0 +170783373751,213,0 +170783373799,213,0 +170783373846,213,0 +170783373896,213,0 +170783373945,213,0 +170783373993,213,0 +170783374041,213,0 +170783374091,214,0 +170783374140,214,0 +170783374188,214,0 +170783374236,214,0 +170783374284,214,0 +170783374332,214,0 +170783374380,214,0 +170783374428,214,0 +170783374476,213,0 +170783374524,213,0 +170783374572,213,0 +170783374619,213,0 +170783374669,213,0 +170783374718,213,0 +170783374768,213,0 +170783374817,213,0 +170783374865,213,0 +170783374915,213,0 +170783374962,213,0 +170783375010,213,0 +170783375060,213,0 +170783375109,214,0 +170783375159,214,0 +170783375207,214,0 +170783375255,214,0 +170783375304,214,0 +170783375352,214,0 +170783375400,213,0 +170783375448,213,0 +170783375496,213,0 +170783375544,213,0 +170783375593,213,0 +170783375641,213,0 +170783375689,213,0 +170783375737,213,0 +170783375785,213,0 +170783375835,213,0 +170783375883,213,0 +170783375931,213,0 +170783375979,213,0 +170783376027,214,0 +170783376074,214,0 +170783376122,214,0 +170783376172,214,0 +170783376220,214,0 +170783376268,214,0 +170783376317,213,0 +170783376365,213,0 +170783376413,213,0 +170783376461,213,0 +170783376509,213,0 +170783376557,213,0 +170783376605,213,0 +170783376653,213,0 +170783376701,213,0 +170783376749,213,0 +170783376797,213,0 +170783376845,213,0 +170783376894,214,0 +170783376942,214,0 +170783376990,213,0 +170783377038,213,0 +170783377086,214,0 +170783377134,214,0 +170783377184,214,0 +170783377233,213,0 +170783377283,213,0 +170783377330,213,0 +170783377380,213,0 +170783377428,213,0 +170783377476,213,0 +170783377525,213,0 +170783377573,213,0 +170783377621,213,0 +170783377669,213,0 +170783377717,214,0 +170783377766,213,0 +170783377814,213,0 +170783377862,214,0 +170783377911,214,0 +170783377961,214,0 +170783378009,214,0 +170783378057,214,0 +170783378105,214,0 +170783378153,213,0 +170783378202,213,0 +170783378250,213,0 +170783378300,213,0 +170783378349,213,0 +170783378399,213,0 +170783378446,213,0 +170783378494,213,0 +170783378542,213,0 +170783378590,213,0 +170783378638,214,0 +170783378687,214,0 +170783378735,214,0 +170783378783,214,0 +170783378831,214,0 +170783378879,214,0 +170783378929,214,0 +170783378976,214,0 +170783379024,214,0 +170783379072,213,0 +170783379120,213,0 +170783379169,213,0 +170783379217,213,0 +170783379265,213,0 +170783379313,213,0 +170783379361,213,0 +170783379409,213,0 +170783379457,213,0 +170783379505,214,0 +170783379552,214,0 +170783379602,214,0 +170783379651,213,0 +170783379699,214,0 +170783379747,214,0 +170783379797,214,0 +170783379844,214,0 +170783379892,214,0 +170783379942,214,0 +170783379990,213,0 +170783380038,213,0 +170783380085,213,0 +170783380133,213,0 +170783380181,213,0 +170783380229,213,0 +170783380279,213,0 +170783380328,213,0 +170783380376,213,0 +170783380425,213,0 +170783380473,213,0 +170783380521,214,0 +170783380569,213,0 +170783380617,214,0 +170783380666,214,0 +170783380714,214,0 +170783380762,214,0 +170783380810,214,0 +170783380858,214,0 +170783380906,213,0 +170783380953,213,0 +170783381001,213,0 +170783381049,213,0 +170783381097,213,0 +170783381145,213,0 +170783381192,213,0 +170783381240,213,0 +170783381288,213,0 +170783381336,213,0 +170783381384,214,0 +170783381432,213,0 +170783381479,214,0 +170783381527,214,0 +170783381575,214,0 +170783381623,214,0 +170783381671,214,0 +170783381719,214,0 +170783381767,214,0 +170783381816,213,0 +170783381864,213,0 +170783381913,213,0 +170783381963,213,0 +170783382011,213,0 +170783382059,213,0 +170783382107,214,0 +170783382154,213,0 +170783382202,214,0 +170783382252,213,0 +170783382300,214,0 +170783382349,214,0 +170783382397,214,0 +170783382445,214,0 +170783382493,214,0 +170783382541,214,0 +170783382589,214,0 +170783382637,214,0 +170783382685,214,0 +170783382732,213,0 +170783382780,213,0 +170783382828,213,0 +170783382876,213,0 +170783382924,213,0 +170783382972,213,0 +170783383020,214,0 +170783383068,214,0 +170783383117,214,0 +170783383167,214,0 +170783383215,214,0 +170783383263,214,0 +170783383311,214,0 +170783383359,214,0 +170783383407,214,0 +170783383456,214,0 +170783383506,214,0 +170783383554,214,0 +170783383601,214,0 +170783383649,213,0 +170783383699,213,0 +170783383748,213,0 +170783383796,213,0 +170783383844,213,0 +170783383894,213,0 +170783383941,213,0 +170783383989,213,0 +170783384039,213,0 +170783384087,213,0 +170783384135,214,0 +170783384184,214,0 +170783384234,214,0 +170783384281,214,0 +170783384329,214,0 +170783384377,214,0 +170783384425,214,0 +170783384473,214,0 +170783384522,214,0 +170783384570,213,0 +170783384618,213,0 +170783384666,213,0 +170783384714,213,0 +170783384762,213,0 +170783384810,213,0 +170783384858,213,0 +170783384905,213,0 +170783384953,213,0 +170783385003,213,0 +170783385051,214,0 +170783385099,214,0 +170783385147,214,0 +170783385196,214,0 +170783385246,214,0 +170783385295,214,0 +170783385344,214,0 +170783385392,214,0 +170783385440,214,0 +170783385490,213,0 +170783385538,213,0 +170783385586,213,0 +170783385634,213,0 +170783385681,213,0 +170783385729,213,0 +170783385779,213,0 +170783385828,213,0 +170783385876,213,0 +170783385926,213,0 +170783385974,213,0 +170783386022,214,0 +170783386069,214,0 +170783386117,214,0 +170783386165,214,0 +170783386213,214,0 +170783386261,214,0 +170783386310,214,0 +170783386358,214,0 +170783386408,213,0 +170783386455,213,0 +170783386503,213,0 +170783386551,213,0 +170783386601,213,0 +170783386650,213,0 +170783386700,213,0 +170783386748,213,0 +170783386797,213,0 +170783386846,213,0 +170783386894,213,0 +170783386944,213,0 +170783386992,214,0 +170783387040,214,0 +170783387089,214,0 +170783387139,214,0 +170783387186,214,0 +170783387234,214,0 +170783387282,214,0 +170783387330,213,0 +170783387378,213,0 +170783387426,213,0 +170783387475,213,0 +170783387523,213,0 +170783387571,213,0 +170783387619,213,0 +170783387667,213,0 +170783387715,213,0 +170783387763,213,0 +170783387811,213,0 +170783387859,214,0 +170783387907,214,0 +170783387956,214,0 +170783388004,214,0 +170783388052,214,0 +170783388100,214,0 +170783388149,214,0 +170783388197,214,0 +170783388245,213,0 +170783388295,213,0 +170783388343,213,0 +170783388392,213,0 +170783388440,213,0 +170783388490,213,0 +170783388538,213,0 +170783388587,213,0 +170783388635,213,0 +170783388683,213,0 +170783388732,214,0 +170783388782,214,0 +170783388830,214,0 +170783388879,214,0 +170783388929,214,0 +170783388977,214,0 +170783389025,214,0 +170783389074,214,0 +170783389122,214,0 +170783389170,213,0 +170783389218,213,0 +170783389266,213,0 +170783389314,213,0 +170783389362,213,0 +170783389410,213,0 +170783389458,213,0 +170783389506,213,0 +170783389553,213,0 +170783389601,214,0 +170783389651,213,0 +170783389699,214,0 +170783389748,214,0 +170783389798,214,0 +170783389846,214,0 +170783389895,214,0 +170783389943,214,0 +170783389993,214,0 +170783390041,214,0 +170783390089,213,0 +170783390137,213,0 +170783390185,213,0 +170783390234,213,0 +170783390282,213,0 +170783390331,213,0 +170783390379,213,0 +170783390429,213,0 +170783390477,214,0 +170783390525,213,0 +170783390573,214,0 +170783390621,214,0 +170783390670,214,0 +170783390720,214,0 +170783390768,214,0 +170783390815,214,0 +170783390865,214,0 +170783390913,214,0 +170783390962,214,0 +170783391010,213,0 +170783391058,213,0 +170783391106,213,0 +170783391154,213,0 +170783391202,213,0 +170783391250,214,0 +170783391298,213,0 +170783391346,214,0 +170783391394,214,0 +170783391442,214,0 +170783391490,214,0 +170783391538,214,0 +170783391586,214,0 +170783391634,214,0 +170783391682,214,0 +170783391731,214,0 +170783391779,214,0 +170783391827,214,0 +170783391876,214,0 +170783391924,213,0 +170783391974,213,0 +170783392022,213,0 +170783392070,213,0 +170783392119,213,0 +170783392169,213,0 +170783392218,213,0 +170783392266,214,0 +170783392316,214,0 +170783392364,214,0 +170783392413,214,0 +170783392461,214,0 +170783392510,214,0 +170783392558,214,0 +170783392606,214,0 +170783392654,214,0 +170783392704,214,0 +170783392752,214,0 +170783392800,214,0 +170783392849,213,0 +170783392899,213,0 +170783392946,213,0 +170783392996,213,0 +170783393044,213,0 +170783393092,213,0 +170783393141,213,0 +170783393189,213,0 +170783393237,214,0 +170783393285,214,0 +170783393333,214,0 +170783393382,214,0 +170783393430,214,0 +170783393478,214,0 +170783393526,214,0 +170783393574,214,0 +170783393622,214,0 +170783393670,214,0 +170783393718,214,0 +170783393766,213,0 +170783393816,213,0 +170783393865,213,0 +170783393915,213,0 +170783393963,213,0 +170783394012,213,0 +170783394060,213,0 +170783394110,213,0 +170783394158,213,0 +170783394205,213,0 +170783394253,213,0 +170783394303,214,0 +170783394352,214,0 +170783394402,214,0 +170783394450,214,0 +170783394499,214,0 +170783394547,214,0 +170783394596,214,0 +170783394646,214,0 +170783394694,213,0 +170783394742,213,0 +170783394790,213,0 +170783394839,213,0 +170783394887,213,0 +170783394935,213,0 +170783394983,213,0 +170783395032,213,0 +170783395080,213,0 +170783395128,213,0 +170783395176,214,0 +170783395224,214,0 +170783395272,213,0 +170783395321,214,0 +170783395369,214,0 +170783395417,214,0 +170783395465,214,0 +170783395513,214,0 +170783395561,214,0 +170783395611,213,0 +170783395658,213,0 +170783395708,213,0 +170783395756,213,0 +170783395804,213,0 +170783395852,213,0 +170783395900,213,0 +170783395949,213,0 +170783395999,214,0 +170783396047,214,0 +170783396095,214,0 +170783396143,214,0 +170783396192,214,0 +170783396242,214,0 +170783396290,214,0 +170783396338,214,0 +170783396387,214,0 +170783396435,214,0 +170783396483,214,0 +170783396531,213,0 +170783396579,213,0 +170783396628,213,0 +170783396676,213,0 +170783396724,214,0 +170783396772,213,0 +170783396822,213,0 +170783396869,214,0 +170783396917,214,0 +170783396965,214,0 +170783397015,214,0 +170783397063,214,0 +170783397111,214,0 +170783397159,214,0 +170783397207,214,0 +170783397255,214,0 +170783397302,215,0 +170783397350,214,0 +170783397400,214,0 +170783397449,213,0 +170783397497,213,0 +170783397545,213,0 +170783397593,213,0 +170783397643,213,0 +170783397692,213,0 +170783397740,214,0 +170783397790,214,0 +170783397839,214,0 +170783397889,214,0 +170783397937,214,0 +170783397986,214,0 +170783398036,214,0 +170783398084,214,0 +170783398132,214,0 +170783398179,214,0 +170783398227,214,0 +170783398275,214,0 +170783398323,214,0 +170783398371,213,0 +170783398419,213,0 +170783398469,213,0 +170783398517,213,0 +170783398564,213,0 +170783398612,213,0 +170783398662,213,0 +170783398710,213,0 +170783398758,214,0 +170783398807,214,0 +170783398857,214,0 +170783398906,214,0 +170783398954,214,0 +170783399002,214,0 +170783399050,214,0 +170783399098,214,0 +170783399146,214,0 +170783399194,214,0 +170783399242,214,0 +170783399290,213,0 +170783399338,213,0 +170783399386,213,0 +170783399435,213,0 +170783399485,213,0 +170783399534,213,0 +170783399582,213,0 +170783399632,213,0 +170783399681,213,0 +170783399731,214,0 +170783399780,213,0 +170783399830,214,0 +170783399877,214,0 +170783399925,214,0 +170783399975,214,0 +170783400023,214,0 +170783400071,214,0 +170783400119,214,0 +170783400168,214,0 +170783400216,213,0 +170783400265,213,0 +170783400313,213,0 +170783400361,213,0 +170783400409,213,0 +170783400459,213,0 +170783400507,213,0 +170783400555,213,0 +170783400602,213,0 +170783400650,214,0 +170783400698,213,0 +170783400748,214,0 +170783400796,214,0 +170783400845,214,0 +170783400893,214,0 +170783400943,214,0 +170783400991,214,0 +170783401038,214,0 +170783401086,214,0 +170783401134,213,0 +170783401182,213,0 +170783401230,213,0 +170783401278,213,0 +170783401326,213,0 +170783401374,213,0 +170783401421,213,0 +170783401469,213,0 +170783401519,213,0 +170783401568,213,0 +170783401616,213,0 +170783401664,213,0 +170783401712,214,0 +170783401760,214,0 +170783401808,213,0 +170783401856,214,0 +170783401904,214,0 +170783401952,214,0 +170783402001,213,0 +170783402050,213,0 +170783402100,213,0 +170783402148,213,0 +170783402196,213,0 +170783402245,213,0 +170783402293,213,0 +170783402341,213,0 +170783402391,213,0 +170783402439,213,0 +170783402488,213,0 +170783402537,214,0 +170783402585,214,0 +170783402633,214,0 +170783402683,214,0 +170783402732,214,0 +170783402780,214,0 +170783402828,214,0 +170783402877,214,0 +170783402927,213,0 +170783402975,213,0 +170783403023,213,0 +170783403072,213,0 +170783403120,213,0 +170783403168,213,0 +170783403218,213,0 +170783403267,213,0 +170783403315,213,0 +170783403365,213,0 +170783403413,213,0 +170783403461,214,0 +170783403508,213,0 +170783403556,214,0 +170783403604,214,0 +170783403652,214,0 +170783403702,214,0 +170783403751,214,0 +170783403799,214,0 +170783403847,213,0 +170783403895,213,0 +170783403943,213,0 +170783403991,213,0 +170783404039,213,0 +170783404087,213,0 +170783404135,213,0 +170783404182,213,0 +170783404230,213,0 +170783404280,213,0 +170783404328,213,0 +170783404377,213,0 +170783404425,214,0 +170783404475,214,0 +170783404524,214,0 +170783404574,214,0 +170783404623,214,0 +170783404673,214,0 +170783404722,214,0 +170783404770,213,0 +170783404818,213,0 +170783404868,213,0 +170783404916,213,0 +170783404963,213,0 +170783405011,213,0 +170783405061,213,0 +170783405109,213,0 +170783405157,213,0 +170783405205,213,0 +170783405253,213,0 +170783405301,213,0 +170783405349,213,0 +170783405398,214,0 +170783405446,214,0 +170783405495,214,0 +170783405543,214,0 +170783405591,214,0 +170783405639,214,0 +170783405687,213,0 +170783405735,213,0 +170783405785,213,0 +170783405833,213,0 +170783405880,213,0 +170783405928,213,0 +170783405978,213,0 +170783406026,213,0 +170783406075,213,0 +170783406123,213,0 +170783406172,214,0 +170783406222,214,0 +170783406271,214,0 +170783406319,214,0 +170783406369,214,0 +170783406417,214,0 +170783406466,214,0 +170783406515,214,0 +170783406565,214,0 +170783406613,213,0 +170783406661,213,0 +170783406709,213,0 +170783406757,213,0 +170783406806,213,0 +170783406855,213,0 +170783406903,213,0 +170783406951,213,0 +170783406999,213,0 +170783407047,214,0 +170783407095,213,0 +170783407144,214,0 +170783407192,214,0 +170783407240,214,0 +170783407288,214,0 +170783407336,214,0 +170783407384,214,0 +170783407432,214,0 +170783407480,214,0 +170783407530,213,0 +170783407577,213,0 +170783407627,213,0 +170783407676,213,0 +170783407726,213,0 +170783407774,213,0 +170783407822,213,0 +170783407869,213,0 +170783407917,213,0 +170783407967,213,0 +170783408016,213,0 +170783408064,213,0 +170783408114,213,0 +170783408163,213,0 +170783408212,213,0 +170783408262,214,0 +170783408310,214,0 +170783408358,213,0 +170783408405,214,0 +170783408453,213,0 +170783408503,213,0 +170783408551,213,0 +170783408600,213,0 +170783408650,213,0 +170783408697,213,0 +170783408745,213,0 +170783408795,213,0 +170783408843,213,0 +170783408891,213,0 +170783408939,213,0 +170783408988,213,0 +170783409038,213,0 +170783409086,213,0 +170783409135,213,0 +170783409183,213,0 +170783409231,213,0 +170783409279,214,0 +170783409327,214,0 +170783409374,213,0 +170783409424,213,0 +170783409473,213,0 +170783409523,213,0 +170783409572,213,0 +170783409620,213,0 +170783409670,213,0 +170783409719,213,0 +170783409769,213,0 +170783409817,213,0 +170783409865,213,0 +170783409913,213,0 +170783409960,213,0 +170783410008,214,0 +170783410058,214,0 +170783410107,214,0 +170783410155,214,0 +170783410205,214,0 +170783410252,214,0 +170783410300,213,0 +170783410348,213,0 +170783410396,213,0 +170783410444,213,0 +170783410492,213,0 +170783410541,213,0 +170783410589,213,0 +170783410637,213,0 +170783410687,213,0 +170783410735,213,0 +170783410784,213,0 +170783410832,214,0 +170783410880,214,0 +170783410928,214,0 +170783410976,214,0 +170783411024,214,0 +170783411072,214,0 +170783411121,214,0 +170783411169,214,0 +170783411218,213,0 +170783411268,213,0 +170783411316,213,0 +170783411364,213,0 +170783411413,213,0 +170783411461,213,0 +170783411509,213,0 +170783411559,213,0 +170783411607,214,0 +170783411656,213,0 +170783411705,213,0 +170783411753,214,0 +170783411801,213,0 +170783411849,214,0 +170783411897,214,0 +170783411945,214,0 +170783411994,214,0 +170783412042,214,0 +170783412090,214,0 +170783412140,213,0 +170783412189,213,0 +170783412237,213,0 +170783412285,213,0 +170783412333,213,0 +170783412380,213,0 +170783412428,213,0 +170783412478,213,0 +170783412527,213,0 +170783412575,213,0 +170783412623,214,0 +170783412671,214,0 +170783412719,214,0 +170783412767,214,0 +170783412815,214,0 +170783412864,214,0 +170783412912,214,0 +170783412960,214,0 +170783413009,214,0 +170783413057,213,0 +170783413105,213,0 +170783413153,213,0 +170783413202,213,0 +170783413250,213,0 +170783413298,213,0 +170783413346,213,0 +170783413394,214,0 +170783413443,214,0 +170783413491,214,0 +170783413539,214,0 +170783413587,214,0 +170783413634,214,0 +170783413682,214,0 +170783413730,214,0 +170783413778,214,0 +170783413827,214,0 +170783413875,214,0 +170783413923,214,0 +170783413971,213,0 +170783414019,213,0 +170783414067,213,0 +170783414116,213,0 +170783414164,213,0 +170783414212,214,0 +170783414261,214,0 +170783414309,214,0 +170783414358,214,0 +170783414406,214,0 +170783414454,214,0 +170783414502,214,0 +170783414551,214,0 +170783414599,214,0 +170783414647,214,0 +170783414696,214,0 +170783414744,214,0 +170783414792,214,0 +170783414840,214,0 +170783414887,213,0 +170783414935,213,0 +170783414983,213,0 +170783415031,213,0 +170783415079,213,0 +170783415126,214,0 +170783415174,213,0 +170783415224,213,0 +170783415272,214,0 +170783415319,214,0 +170783415367,214,0 +170783415415,214,0 +170783415463,214,0 +170783415511,214,0 +170783415561,214,0 +170783415610,214,0 +170783415658,214,0 +170783415706,214,0 +170783415754,214,0 +170783415801,213,0 +170783415851,213,0 +170783415900,213,0 +170783415948,213,0 +170783415996,213,0 +170783416044,213,0 +170783416092,213,0 +170783416140,214,0 +170783416187,214,0 +170783416235,214,0 +170783416283,214,0 +170783416331,214,0 +170783416379,214,0 +170783416427,214,0 +170783416475,214,0 +170783416523,214,0 +170783416570,214,0 +170783416618,214,0 +170783416666,214,0 +170783416714,213,0 +170783416762,213,0 +170783416810,213,0 +170783416857,213,0 +170783416905,213,0 +170783416953,213,0 +170783417001,213,0 +170783417049,213,0 +170783417097,213,0 +170783417144,214,0 +170783417192,213,0 +170783417240,214,0 +170783417288,214,0 +170783417336,214,0 +170783417384,214,0 +170783417431,214,0 +170783417479,214,0 +170783417527,214,0 +170783417575,214,0 +170783417623,214,0 +170783417671,213,0 +170783417718,213,0 +170783417766,213,0 +170783417814,213,0 +170783417862,213,0 +170783417909,213,0 +170783417957,213,0 +170783418005,213,0 +170783418053,213,0 +170783418101,213,0 +170783418149,214,0 +170783418196,214,0 +170783418244,214,0 +170783418292,214,0 +170783418340,214,0 +170783418388,214,0 +170783418436,214,0 +170783418484,214,0 +170783418533,214,0 +170783418581,213,0 +170783418629,213,0 +170783418677,213,0 +170783418725,213,0 +170783418772,213,0 +170783418820,213,0 +170783418868,213,0 +170783418916,214,0 +170783418964,214,0 +170783419012,213,0 +170783419061,214,0 +170783419109,214,0 +170783419156,214,0 +170783419204,214,0 +170783419252,214,0 +170783419300,214,0 +170783419348,214,0 +170783419397,214,0 +170783419445,214,0 +170783419493,213,0 +170783419541,213,0 +170783419588,213,0 +170783419636,213,0 +170783419684,213,0 +170783419732,213,0 +170783419780,213,0 +170783419827,213,0 +170783419875,213,0 +170783419925,213,0 +170783419973,213,0 +170783420020,214,0 +170783420068,214,0 +170783420116,214,0 +170783420164,214,0 +170783420212,214,0 +170783420260,214,0 +170783420307,214,0 +170783420355,214,0 +170783420403,213,0 +170783420451,213,0 +170783420500,213,0 +170783420548,213,0 +170783420596,213,0 +170783420644,213,0 +170783420692,213,0 +170783420740,213,0 +170783420788,213,0 +170783420836,213,0 +170783420884,213,0 +170783420931,213,0 +170783420979,213,0 +170783421029,214,0 +170783421078,214,0 +170783421126,214,0 +170783421174,214,0 +170783421221,214,0 +170783421271,214,0 +170783421319,213,0 +170783421368,213,0 +170783421416,213,0 +170783421464,213,0 +170783421511,213,0 +170783421559,213,0 +170783421607,213,0 +170783421655,213,0 +170783421703,213,0 +170783421751,213,0 +170783421800,213,0 +170783421848,213,0 +170783421896,214,0 +170783421945,214,0 +170783421993,214,0 +170783422042,214,0 +170783422092,214,0 +170783422139,214,0 +170783422187,214,0 +170783422235,213,0 +170783422283,213,0 +170783422331,213,0 +170783422378,213,0 +170783422426,213,0 +170783422474,213,0 +170783422522,213,0 +170783422570,213,0 +170783422618,213,0 +170783422667,213,0 +170783422715,213,0 +170783422763,213,0 +170783422812,213,0 +170783422862,213,0 +170783422911,213,0 +170783422959,213,0 +170783423007,213,0 +170783423055,214,0 +170783423103,214,0 +170783423151,213,0 +170783423198,213,0 +170783423246,213,0 +170783423294,213,0 +170783423343,213,0 +170783423391,213,0 +170783423439,213,0 +170783423487,213,0 +170783423535,213,0 +170783423583,213,0 +170783423630,213,0 +170783423678,213,0 +170783423728,213,0 +170783423775,214,0 +170783423823,214,0 +170783423871,214,0 +170783423919,214,0 +170783423967,214,0 +170783424014,214,0 +170783424062,214,0 +170783424110,213,0 +170783424158,213,0 +170783424206,213,0 +170783424254,213,0 +170783424302,213,0 +170783424349,213,0 +170783424397,213,0 +170783424445,213,0 +170783424493,213,0 +170783424541,213,0 +170783424589,214,0 +170783424636,214,0 +170783424684,214,0 +170783424734,214,0 +170783424781,214,0 +170783424831,214,0 +170783424879,214,0 +170783424926,214,0 +170783424974,214,0 +170783425022,213,0 +170783425070,213,0 +170783425119,213,0 +170783425167,213,0 +170783425215,213,0 +170783425262,213,0 +170783425310,213,0 +170783425358,213,0 +170783425407,213,0 +170783425455,213,0 +170783425503,213,0 +170783425551,214,0 +170783425599,214,0 +170783425646,214,0 +170783425696,214,0 +170783425744,214,0 +170783425791,214,0 +170783425839,214,0 +170783425887,214,0 +170783425935,213,0 +170783425983,213,0 +170783426031,213,0 +170783426078,213,0 +170783426126,213,0 +170783426174,213,0 +170783426222,213,0 +170783426269,213,0 +170783426317,213,0 +170783426365,214,0 +170783426413,213,0 +170783426461,214,0 +170783426508,213,0 +170783426556,214,0 +170783426604,214,0 +170783426652,214,0 +170783426699,214,0 +170783426747,214,0 +170783426795,214,0 +170783426843,213,0 +170783426892,213,0 +170783426942,213,0 +170783426990,213,0 +170783427038,213,0 +170783427085,213,0 +170783427133,213,0 +170783427183,213,0 +170783427231,213,0 +170783427278,214,0 +170783427326,213,0 +170783427374,214,0 +170783427422,214,0 +170783427470,214,0 +170783427518,214,0 +170783427566,214,0 +170783427613,214,0 +170783427661,214,0 +170783427711,214,0 +170783427758,213,0 +170783427806,213,0 +170783427854,213,0 +170783427902,213,0 +170783427950,213,0 +170783427997,213,0 +170783428045,213,0 +170783428093,213,0 +170783428141,213,0 +170783428189,214,0 +170783428237,214,0 +170783428285,214,0 +170783428332,214,0 +170783428380,214,0 +170783428428,214,0 +170783428476,214,0 +170783428524,214,0 +170783428573,214,0 +170783428623,214,0 +170783428671,213,0 +170783428718,213,0 +170783428766,213,0 +170783428814,213,0 +170783428864,213,0 +170783428912,213,0 +170783428961,214,0 +170783429009,214,0 +170783429059,214,0 +170783429108,214,0 +170783429158,214,0 +170783429206,214,0 +170783429255,214,0 +170783429303,214,0 +170783429351,214,0 +170783429400,214,0 +170783429448,214,0 +170783429496,214,0 +170783429544,214,0 +170783429594,213,0 +170783429642,213,0 +170783429689,213,0 +170783429739,213,0 +170783429788,213,0 +170783429836,213,0 +170783429884,213,0 +170783429932,213,0 +170783429980,213,0 +170783430027,213,0 +170783430075,213,0 +170783430123,214,0 +170783430171,214,0 +170783430219,214,0 +170783430267,214,0 +170783430314,214,0 +170783430362,214,0 +170783430410,214,0 +170783430458,214,0 +170783430506,213,0 +170783430554,213,0 +170783430602,213,0 +170783430649,213,0 +170783430697,213,0 +170783430745,213,0 +170783430793,213,0 +170783430842,213,0 +170783430890,213,0 +170783430940,213,0 +170783430989,213,0 +170783431039,213,0 +170783431087,213,0 +170783431135,213,0 +170783431184,213,0 +170783431232,213,0 +170783431280,213,0 +170783431328,213,0 +170783431376,214,0 +170783431425,214,0 +170783431475,213,0 +170783431523,213,0 +170783431572,213,0 +170783431622,213,0 +170783431671,213,0 +170783431719,213,0 +170783431767,213,0 +170783431815,213,0 +170783431863,213,0 +170783431911,213,0 +170783431959,213,0 +170783432007,214,0 +170783432054,214,0 +170783432104,214,0 +170783432152,213,0 +170783432201,214,0 +170783432249,214,0 +170783432297,214,0 +170783432345,213,0 +170783432395,213,0 +170783432443,213,0 +170783432491,213,0 +170783432538,213,0 +170783432588,213,0 +170783432636,213,0 +170783432685,213,0 +170783432733,213,0 +170783432783,213,0 +170783432832,213,0 +170783432882,213,0 +170783432929,213,0 +170783432977,213,0 +170783433027,214,0 +170783433075,214,0 +170783433125,214,0 +170783433172,214,0 +170783433220,214,0 +170783433270,213,0 +170783433318,213,0 +170783433367,213,0 +170783433415,213,0 +170783433463,213,0 +170783433511,213,0 +170783433559,213,0 +170783433607,213,0 +170783433655,213,0 +170783433703,213,0 +170783433752,213,0 +170783433800,213,0 +170783433850,213,0 +170783433899,213,0 +170783433947,213,0 +170783433995,214,0 +170783434045,213,0 +170783434094,214,0 +170783434142,214,0 +170783434190,214,0 +170783434238,213,0 +170783434287,213,0 +170783434335,213,0 +170783434383,213,0 +170783434431,213,0 +170783434479,213,0 +170783434527,213,0 +170783434575,213,0 +170783434623,213,0 +170783434671,213,0 +170783434720,213,0 +170783434770,213,0 +170783434818,213,0 +170783434866,213,0 +170783434914,214,0 +170783434963,213,0 +170783435013,214,0 +170783435061,214,0 +170783435110,213,0 +170783435160,213,0 +170783435208,213,0 +170783435255,213,0 +170783435303,213,0 +170783435353,213,0 +170783435402,213,0 +170783435450,213,0 +170783435500,213,0 +170783435548,213,0 +170783435596,213,0 +170783435644,213,0 +170783435691,213,0 +170783435741,213,0 +170783435789,214,0 +170783435838,214,0 +170783435886,213,0 +170783435934,214,0 +170783435984,214,0 +170783436033,213,0 +170783436081,213,0 +170783436129,213,0 +170783436177,213,0 +170783436227,213,0 +170783436275,213,0 +170783436322,213,0 +170783436370,213,0 +170783436420,213,0 +170783436468,213,0 +170783436516,213,0 +170783436564,214,0 +170783436612,214,0 +170783436660,214,0 +170783436708,214,0 +170783436756,214,0 +170783436804,214,0 +170783436852,214,0 +170783436900,214,0 +170783436947,214,0 +170783436997,213,0 +170783437045,213,0 +170783437093,213,0 +170783437141,213,0 +170783437190,213,0 +170783437240,213,0 +170783437289,213,0 +170783437337,213,0 +170783437385,214,0 +170783437433,214,0 +170783437481,214,0 +170783437529,214,0 +170783437577,214,0 +170783437625,214,0 +170783437673,214,0 +170783437721,214,0 +170783437769,214,0 +170783437818,214,0 +170783437866,213,0 +170783437914,213,0 +170783437962,213,0 +170783438010,213,0 +170783438058,213,0 +170783438106,213,0 +170783438155,213,0 +170783438203,213,0 +170783438251,213,0 +170783438301,214,0 +170783438348,214,0 +170783438398,214,0 +170783438446,214,0 +170783438495,214,0 +170783438543,213,0 +170783438592,214,0 +170783438640,214,0 +170783438688,214,0 +170783438738,214,0 +170783438787,213,0 +170783438835,213,0 +170783438883,213,0 +170783438931,213,0 +170783438980,213,0 +170783439030,213,0 +170783439078,213,0 +170783439126,214,0 +170783439174,213,0 +170783439222,213,0 +170783439270,214,0 +170783439319,214,0 +170783439369,213,0 +170783439417,214,0 +170783439466,214,0 +170783439516,214,0 +170783439563,214,0 +170783439613,214,0 +170783439661,214,0 +170783439709,214,0 +170783439757,213,0 +170783439805,213,0 +170783439854,213,0 +170783439902,213,0 +170783439950,213,0 +170783439998,213,0 +170783440046,213,0 +170783440094,213,0 +170783440143,213,0 +170783440193,214,0 +170783440242,214,0 +170783440292,214,0 +170783440340,214,0 +170783440389,214,0 +170783440437,214,0 +170783440485,214,0 +170783440533,214,0 +170783440581,214,0 +170783440630,214,0 +170783440678,213,0 +170783440728,213,0 +170783440776,213,0 +170783440825,213,0 +170783440875,213,0 +170783440923,213,0 +170783440971,213,0 +170783441020,213,0 +170783441068,213,0 +170783441116,214,0 +170783441164,213,0 +170783441212,214,0 +170783441261,214,0 +170783441309,214,0 +170783441357,214,0 +170783441405,214,0 +170783441453,214,0 +170783441501,214,0 +170783441549,213,0 +170783441597,213,0 +170783441645,213,0 +170783441692,213,0 +170783441740,213,0 +170783441790,213,0 +170783441838,213,0 +170783441886,213,0 +170783441935,214,0 +170783441985,214,0 +170783442033,214,0 +170783442080,214,0 +170783442130,214,0 +170783442178,214,0 +170783442227,214,0 +170783442275,214,0 +170783442323,214,0 +170783442371,214,0 +170783442419,214,0 +170783442469,213,0 +170783442516,213,0 +170783442564,213,0 +170783442612,213,0 +170783442660,213,0 +170783442710,214,0 +170783442758,214,0 +170783442807,214,0 +170783442855,214,0 +170783442903,214,0 +170783442951,214,0 +170783442999,214,0 +170783443047,214,0 +170783443097,214,0 +170783443145,214,0 +170783443192,214,0 +170783443242,214,0 +170783443290,214,0 +170783443338,214,0 +170783443387,213,0 +170783443437,213,0 +170783443484,213,0 +170783443532,213,0 +170783443580,213,0 +170783443628,213,0 +170783443676,213,0 +170783443724,213,0 +170783443772,213,0 +170783443820,213,0 +170783443869,214,0 +170783443917,214,0 +170783443965,214,0 +170783444013,214,0 +170783444061,214,0 +170783444109,214,0 +170783444156,214,0 +170783444204,214,0 +170783444252,214,0 +170783444302,213,0 +170783444351,213,0 +170783444401,213,0 +170783444449,213,0 +170783444498,213,0 +170783444548,213,0 +170783444596,213,0 +170783444645,213,0 +170783444693,213,0 +170783444743,213,0 +170783444792,213,0 +170783444840,214,0 +170783444888,214,0 +170783444936,214,0 +170783444984,214,0 +170783445032,214,0 +170783445080,214,0 +170783445128,214,0 +170783445177,214,0 +170783445225,213,0 +170783445274,213,0 +170783445322,213,0 +170783445370,213,0 +170783445420,213,0 +170783445468,213,0 +170783445516,213,0 +170783445564,213,0 +170783445612,213,0 +170783445660,213,0 +170783445707,214,0 +170783445755,213,0 +170783445803,214,0 +170783445851,214,0 +170783445899,214,0 +170783445947,214,0 +170783445995,214,0 +170783446044,214,0 +170783446092,214,0 +170783446141,213,0 +170783446189,213,0 +170783446237,213,0 +170783446285,213,0 +170783446333,213,0 +170783446381,213,0 +170783446428,213,0 +170783446476,213,0 +170783446524,213,0 +170783446574,213,0 +170783446622,214,0 +170783446670,214,0 +170783446719,214,0 +170783446767,214,0 +170783446816,214,0 +170783446864,214,0 +170783446912,214,0 +170783446960,214,0 +170783447008,214,0 +170783447056,214,0 +170783447104,213,0 +170783447153,213,0 +170783447201,213,0 +170783447249,213,0 +170783447297,213,0 +170783447345,213,0 +170783447393,213,0 +170783447442,213,0 +170783447490,213,0 +170783447539,213,0 +170783447587,214,0 +170783447636,214,0 +170783447686,214,0 +170783447735,214,0 +170783447783,214,0 +170783447831,214,0 +170783447879,214,0 +170783447929,214,0 +170783447977,214,0 +170783448024,213,0 +170783448072,213,0 +170783448120,213,0 +170783448168,213,0 +170783448216,213,0 +170783448264,213,0 +170783448312,213,0 +170783448360,213,0 +170783448408,213,0 +170783448457,213,0 +170783448507,213,0 +170783448555,213,0 +170783448603,213,0 +170783448651,214,0 +170783448699,214,0 +170783448748,214,0 +170783448798,214,0 +170783448846,214,0 +170783448893,214,0 +170783448943,213,0 +170783448991,213,0 +170783449039,213,0 +170783449088,213,0 +170783449136,213,0 +170783449186,213,0 +170783449234,213,0 +170783449282,213,0 +170783449331,213,0 +170783449379,214,0 +170783449427,213,0 +170783449475,214,0 +170783449523,214,0 +170783449572,214,0 +170783449620,214,0 +170783449670,214,0 +170783449719,214,0 +170783449769,214,0 +170783449817,213,0 +170783449866,213,0 +170783449914,213,0 +170783449964,213,0 +170783450012,213,0 +170783450060,213,0 +170783450109,213,0 +170783450157,213,0 +170783450205,213,0 +170783450253,214,0 +170783450302,213,0 +170783450350,214,0 +170783450398,214,0 +170783450446,214,0 +170783450494,214,0 +170783450544,214,0 +170783450592,214,0 +170783450641,214,0 +170783450689,214,0 +170783450737,214,0 +170783450785,212,0 +170783450833,213,0 +170783450882,213,0 +170783450930,213,0 +170783450978,213,0 +170783451026,213,0 +170783451075,213,0 +170783451123,213,0 +170783451172,213,0 +170783451220,213,0 +170783451270,213,0 +170783451318,214,0 +170783451366,214,0 +170783451413,214,0 +170783451463,214,0 +170783451511,214,0 +170783451559,214,0 +170783451608,214,0 +170783451656,213,0 +170783451706,213,0 +170783451754,213,0 +170783451802,213,0 +170783451850,213,0 +170783451897,213,0 +170783451947,213,0 +170783451995,213,0 +170783452043,213,0 +170783452091,213,0 +170783452138,213,0 +170783452188,213,0 +170783452236,213,0 +170783452285,213,0 +170783452333,214,0 +170783452381,214,0 +170783452429,214,0 +170783452477,214,0 +170783452524,214,0 +170783452572,214,0 +170783452620,213,0 +170783452668,213,0 +170783452716,213,0 +170783452764,213,0 +170783452813,213,0 +170783452861,213,0 +170783452909,213,0 +170783452957,213,0 +170783453004,213,0 +170783453052,213,0 +170783453100,214,0 +170783453150,213,0 +170783453198,213,0 +170783453245,214,0 +170783453293,214,0 +170783453341,214,0 +170783453389,214,0 +170783453437,214,0 +170783453485,214,0 +170783453532,213,0 +170783453580,213,0 +170783453628,213,0 +170783453676,213,0 +170783453724,213,0 +170783453773,213,0 +170783453821,213,0 +170783453869,213,0 +170783453917,213,0 +170783453965,213,0 +170783454013,213,0 +170783454060,213,0 +170783454108,213,0 +170783454156,214,0 +170783454204,214,0 +170783454252,214,0 +170783454299,214,0 +170783454347,214,0 +170783454395,214,0 +170783454443,213,0 +170783454491,213,0 +170783454538,213,0 +170783454588,213,0 +170783454636,213,0 +170783454685,213,0 +170783454733,213,0 +170783454781,213,0 +170783454829,213,0 +170783454878,213,0 +170783454926,213,0 +170783454973,213,0 +170783455021,213,0 +170783455071,213,0 +170783455120,213,0 +170783455170,214,0 +170783455218,214,0 +170783455266,214,0 +170783455313,214,0 +170783455361,213,0 +170783455411,213,0 +170783455459,213,0 +170783455508,213,0 +170783455556,213,0 +170783455606,213,0 +170783455655,213,0 +170783455703,213,0 +170783455751,213,0 +170783455799,213,0 +170783455849,213,0 +170783455897,213,0 +170783455945,213,0 +170783455994,213,0 +170783456042,214,0 +170783456092,214,0 +170783456139,214,0 +170783456187,214,0 +170783456235,214,0 +170783456283,213,0 +170783456331,213,0 +170783456379,213,0 +170783456427,213,0 +170783456474,213,0 +170783456524,213,0 +170783456573,213,0 +170783456621,213,0 +170783456669,213,0 +170783456717,213,0 +170783456765,214,0 +170783456814,214,0 +170783456862,214,0 +170783456910,214,0 +170783456958,214,0 +170783457006,214,0 +170783457055,214,0 +170783457103,214,0 +170783457151,214,0 +170783457198,213,0 +170783457246,213,0 +170783457295,213,0 +170783457343,213,0 +170783457391,213,0 +170783457439,213,0 +170783457487,213,0 +170783457535,213,0 +170783457584,213,0 +170783457632,214,0 +170783457680,214,0 +170783457727,214,0 +170783457775,214,0 +170783457823,214,0 +170783457871,214,0 +170783457919,214,0 +170783457967,214,0 +170783458015,214,0 +170783458063,214,0 +170783458112,213,0 +170783458160,213,0 +170783458208,213,0 +170783458256,213,0 +170783458305,214,0 +170783458353,214,0 +170783458401,214,0 +170783458449,214,0 +170783458497,214,0 +170783458545,214,0 +170783458594,214,0 +170783458642,214,0 +170783458690,214,0 +170783458737,214,0 +170783458785,214,0 +170783458833,214,0 +170783458881,214,0 +170783458929,214,0 +170783458977,214,0 +170783459026,213,0 +170783459074,213,0 +170783459123,213,0 +170783459171,213,0 +170783459219,213,0 +170783459267,213,0 +170783459315,214,0 +170783459363,214,0 +170783459412,214,0 +170783459460,214,0 +170783459509,214,0 +170783459557,214,0 +170783459605,214,0 +170783459653,214,0 +170783459700,214,0 +170783459750,214,0 +170783459798,214,0 +170783459847,214,0 +170783459895,214,0 +170783459942,213,0 +170783459990,213,0 +170783460040,213,0 +170783460088,213,0 +170783460135,213,0 +170783460183,213,0 +170783460231,213,0 +170783460279,213,0 +170783460328,214,0 +170783460378,214,0 +170783460426,214,0 +170783460475,214,0 +170783460523,214,0 +170783460571,214,0 +170783460619,214,0 +170783460668,214,0 +170783460716,214,0 +170783460765,214,0 +170783460813,214,0 +170783460861,213,0 +170783460909,213,0 +170783460957,213,0 +170783461005,213,0 +170783461053,213,0 +170783461101,213,0 +170783461150,213,0 +170783461198,213,0 +170783461246,213,0 +170783461293,213,0 +170783461341,213,0 +170783461391,213,0 +170783461440,213,0 +170783461488,214,0 +170783461538,214,0 +170783461586,214,0 +170783461634,214,0 +170783461683,214,0 +170783461731,214,0 +170783461781,213,0 +170783461830,213,0 +170783461880,213,0 +170783461928,213,0 +170783461976,213,0 +170783462025,213,0 +170783462075,213,0 +170783462122,213,0 +170783462170,213,0 +170783462220,213,0 +170783462268,213,0 +170783462316,213,0 +170783462364,214,0 +170783462412,214,0 +170783462459,214,0 +170783462507,213,0 +170783462555,214,0 +170783462603,214,0 +170783462653,214,0 +170783462701,213,0 +170783462750,213,0 +170783462798,213,0 +170783462846,213,0 +170783462896,213,0 +170783462944,213,0 +170783462992,213,0 +170783463040,213,0 +170783463088,213,0 +170783463137,213,0 +170783463185,213,0 +170783463233,213,0 +170783463281,213,0 +170783463331,213,0 +170783463380,213,0 +170783463429,214,0 +170783463477,214,0 +170783463527,213,0 +170783463575,214,0 +170783463623,213,0 +170783463671,213,0 +170783463720,213,0 +170783463768,213,0 +170783463816,213,0 +170783463864,213,0 +170783463913,213,0 +170783463961,213,0 +170783464009,213,0 +170783464059,213,0 +170783464107,213,0 +170783464156,213,0 +170783464204,213,0 +170783464252,214,0 +170783464300,214,0 +170783464349,214,0 +170783464397,214,0 +170783464447,214,0 +170783464495,214,0 +170783464543,213,0 +170783464592,213,0 +170783464640,213,0 +170783464688,213,0 +170783464736,213,0 +170783464785,213,0 +170783464835,213,0 +170783464884,213,0 +170783464932,213,0 +170783464982,213,0 +170783465031,213,0 +170783465079,213,0 +170783465127,213,0 +170783465175,214,0 +170783465223,213,0 +170783465272,214,0 +170783465320,214,0 +170783465370,214,0 +170783465418,214,0 +170783465466,213,0 +170783465514,213,0 +170783465562,213,0 +170783465611,213,0 +170783465661,213,0 +170783465709,213,0 +170783465757,213,0 +170783465806,213,0 +170783465856,213,0 +170783465905,213,0 +170783465953,213,0 +170783466003,213,0 +170783466052,213,0 +170783466102,213,0 +170783466151,213,0 +170783466199,214,0 +170783466248,214,0 +170783466296,214,0 +170783466346,214,0 +170783466395,213,0 +170783466445,213,0 +170783466493,213,0 +170783466541,213,0 +170783466589,213,0 +170783466637,213,0 +170783466685,213,0 +170783466733,213,0 +170783466782,213,0 +170783466832,213,0 +170783466880,213,0 +170783466927,213,0 +170783466975,213,0 +170783467025,213,0 +170783467074,213,0 +170783467124,214,0 +170783467172,214,0 +170783467220,214,0 +170783467268,214,0 +170783467317,213,0 +170783467365,213,0 +170783467413,213,0 +170783467461,213,0 +170783467509,213,0 +170783467559,213,0 +170783467606,213,0 +170783467654,213,0 +170783467704,213,0 +170783467752,213,0 +170783467800,213,0 +170783467848,213,0 +170783467895,213,0 +170783467943,213,0 +170783467991,213,0 +170783468039,214,0 +170783468089,214,0 +170783468138,214,0 +170783468186,214,0 +170783468234,213,0 +170783468282,213,0 +170783468330,213,0 +170783468379,213,0 +170783468427,213,0 +170783468477,213,0 +170783468525,213,0 +170783468574,213,0 +170783468622,213,0 +170783468671,213,0 +170783468719,213,0 +170783468769,213,0 +170783468817,214,0 +170783468865,213,0 +170783468913,214,0 +170783468961,214,0 +170783469009,214,0 +170783469058,214,0 +170783469108,214,0 +170783469156,213,0 +170783469205,213,0 +170783469255,213,0 +170783469303,213,0 +170783469352,213,0 +170783469400,213,0 +170783469450,213,0 +170783469499,213,0 +170783469547,213,0 +170783469595,213,0 +170783469643,213,0 +170783469691,214,0 +170783469739,214,0 +170783469788,214,0 +170783469836,214,0 +170783469884,214,0 +170783469932,214,0 +170783469980,214,0 +170783470029,214,0 +170783470077,213,0 +170783470125,213,0 +170783470175,213,0 +170783470223,213,0 +170783470271,213,0 +170783470318,213,0 +170783470366,213,0 +170783470416,213,0 +170783470464,213,0 +170783470512,214,0 +170783470560,214,0 +170783470607,214,0 +170783470657,214,0 +170783470706,214,0 +170783470754,214,0 +170783470802,214,0 +170783470850,214,0 +170783470898,214,0 +170783470946,214,0 +170783470996,213,0 +170783471045,213,0 +170783471095,213,0 +170783471143,213,0 +170783471191,213,0 +170783471240,214,0 +170783471289,213,0 +170783471337,213,0 +170783471385,214,0 +170783471435,214,0 +170783471483,214,0 +170783471531,214,0 +170783471579,214,0 +170783471627,214,0 +170783471674,214,0 +170783471722,214,0 +170783471770,214,0 +170783471818,214,0 +170783471868,214,0 +170783471916,213,0 +170783471964,213,0 +170783472012,213,0 +170783472061,214,0 +170783472109,214,0 +170783472158,214,0 +170783472206,214,0 +170783472254,214,0 +170783472302,214,0 +170783472350,214,0 +170783472400,214,0 +170783472449,214,0 +170783472497,214,0 +170783472545,214,0 +170783472593,214,0 +170783472641,214,0 +170783472690,214,0 +170783472738,214,0 +170783472788,214,0 +170783472836,213,0 +170783472885,213,0 +170783472933,213,0 +170783472983,213,0 +170783473031,214,0 +170783473080,214,0 +170783473130,214,0 +170783473179,214,0 +170783473229,214,0 +170783473277,214,0 +170783473324,214,0 +170783473372,214,0 +170783473420,214,0 +170783473468,214,0 +170783473516,214,0 +170783473566,214,0 +170783473615,214,0 +170783473663,214,0 +170783473711,214,0 +170783473761,213,0 +170783473808,213,0 +170783473856,213,0 +170783473904,213,0 +170783473954,213,0 +170783474002,213,0 +170783474051,213,0 +170783474099,214,0 +170783474147,213,0 +170783474195,214,0 +170783474244,214,0 +170783474292,214,0 +170783474340,214,0 +170783474388,214,0 +170783474436,214,0 +170783474486,214,0 +170783474534,214,0 +170783474582,214,0 +170783474631,214,0 +170783474679,213,0 +170783474727,213,0 +170783474775,213,0 +170783474823,213,0 +170783474871,213,0 +170783474919,213,0 +170783474968,213,0 +170783475016,213,0 +170783475064,213,0 +170783475114,213,0 +170783475161,213,0 +170783475211,213,0 +170783475259,213,0 +170783475307,213,0 +170783475355,213,0 +170783475404,214,0 +170783475452,214,0 +170783475500,214,0 +170783475549,214,0 +170783475599,213,0 +170783475647,213,0 +170783475696,213,0 +170783475744,213,0 +170783475794,213,0 +170783475843,213,0 +170783475893,213,0 +170783475941,213,0 +170783475988,213,0 +170783476038,213,0 +170783476086,213,0 +170783476136,213,0 +170783476185,213,0 +170783476233,214,0 +170783476283,214,0 +170783476332,214,0 +170783476381,214,0 +170783476429,214,0 +170783476479,213,0 +170783476527,213,0 +170783476576,213,0 +170783476624,213,0 +170783476674,213,0 +170783476721,213,0 +170783476769,213,0 +170783476817,213,0 +170783476865,213,0 +170783476913,213,0 +170783476961,213,0 +170783477010,213,0 +170783477058,213,0 +170783477106,213,0 +170783477154,214,0 +170783477202,214,0 +170783477250,213,0 +170783477298,214,0 +170783477345,214,0 +170783477393,214,0 +170783477443,213,0 +170783477491,213,0 +170783477540,213,0 +170783477588,213,0 +170783477636,213,0 +170783477685,213,0 +170783477733,213,0 +170783477781,213,0 +170783477831,213,0 +170783477879,213,0 +170783477927,213,0 +170783477975,214,0 +170783478023,213,0 +170783478071,214,0 +170783478119,214,0 +170783478167,214,0 +170783478214,214,0 +170783478264,214,0 +170783478312,214,0 +170783478360,213,0 +170783478408,213,0 +170783478456,213,0 +170783478504,213,0 +170783478551,213,0 +170783478601,213,0 +170783478650,213,0 +170783478698,213,0 +170783478748,213,0 +170783478796,213,0 +170783478843,213,0 +170783478893,213,0 +170783478942,214,0 +170783478992,214,0 +170783479041,214,0 +170783479090,214,0 +170783479138,214,0 +170783479186,214,0 +170783479235,213,0 +170783479285,213,0 +170783479333,213,0 +170783479381,213,0 +170783479429,213,0 +170783479477,213,0 +170783479525,213,0 +170783479573,213,0 +170783479621,213,0 +170783479670,213,0 +170783479718,214,0 +170783479766,214,0 +170783479814,214,0 +170783479862,214,0 +170783479912,214,0 +170783479960,214,0 +170783480009,214,0 +170783480057,214,0 +170783480105,214,0 +170783480154,214,0 +170783480204,213,0 +170783480252,213,0 +170783480300,213,0 +170783480348,213,0 +170783480396,213,0 +170783480444,213,0 +170783480493,214,0 +170783480543,214,0 +170783480592,214,0 +170783480642,214,0 +170783480690,214,0 +170783480738,214,0 +170783480786,214,0 +170783480835,214,0 +170783480883,214,0 +170783480933,214,0 +170783480980,214,0 +170783481030,214,0 +170783481078,213,0 +170783481126,213,0 +170783481174,213,0 +170783481223,213,0 +170783481273,213,0 +170783481321,214,0 +170783481369,213,0 +170783481417,213,0 +170783481465,213,0 +170783481514,214,0 +170783481562,214,0 +170783481610,214,0 +170783481658,214,0 +170783481708,214,0 +170783481757,214,0 +170783481805,214,0 +170783481854,214,0 +170783481902,214,0 +170783481952,214,0 +170783482001,213,0 +170783482051,213,0 +170783482100,213,0 +170783482148,213,0 +170783482196,213,0 +170783482244,213,0 +170783482292,213,0 +170783482340,213,0 +170783482388,213,0 +170783482436,213,0 +170783482486,213,0 +170783482535,213,0 +170783482583,214,0 +170783482631,214,0 +170783482679,214,0 +170783482729,214,0 +170783482778,214,0 +170783482828,214,0 +170783482877,214,0 +170783482925,213,0 +170783482973,213,0 +170783483023,213,0 +170783483072,213,0 +170783483120,213,0 +170783483170,213,0 +170783483219,213,0 +170783483267,213,0 +170783483317,213,0 +170783483365,213,0 +170783483414,213,0 +170783483462,213,0 +170783483510,213,0 +170783483558,213,0 +170783483607,214,0 +170783483655,214,0 +170783483703,214,0 +170783483751,214,0 +170783483801,214,0 +170783483850,213,0 +170783483898,213,0 +170783483948,213,0 +170783483996,213,0 +170783484045,213,0 +170783484095,213,0 +170783484144,213,0 +170783484194,213,0 +170783484241,213,0 +170783484289,213,0 +170783484339,214,0 +170783484387,214,0 +170783484435,213,0 +170783484483,214,0 +170783484531,214,0 +170783484580,214,0 +170783484630,214,0 +170783484679,214,0 +170783484727,214,0 +170783484777,213,0 +170783484825,213,0 +170783484873,213,0 +170783484920,213,0 +170783484970,213,0 +170783485019,213,0 +170783485069,213,0 +170783485117,213,0 +170783485166,213,0 +170783485214,214,0 +170783485262,214,0 +170783485312,214,0 +170783485360,214,0 +170783485407,214,0 +170783485455,214,0 +170783485505,214,0 +170783485553,214,0 +170783485601,214,0 +170783485649,214,0 +170783485697,213,0 +170783485746,213,0 +170783485794,213,0 +170783485844,213,0 +170783485892,213,0 +170783485941,213,0 +170783485989,213,0 +170783486037,213,0 +170783486085,213,0 +170783486133,214,0 +170783486181,214,0 +170783486230,214,0 +170783486280,214,0 +170783486329,214,0 +170783486377,214,0 +170783486425,214,0 +170783486473,214,0 +170783486521,214,0 +170783486569,214,0 +170783486618,213,0 +170783486666,213,0 +170783486714,213,0 +170783486762,213,0 +170783486810,213,0 +170783486858,213,0 +170783486906,213,0 +170783486955,213,0 +170783487003,213,0 +170783487053,213,0 +170783487101,213,0 +170783487150,214,0 +170783487198,214,0 +170783487247,214,0 +170783487295,214,0 +170783487343,214,0 +170783487391,214,0 +170783487439,213,0 +170783487487,214,0 +170783487535,213,0 +170783487584,213,0 +170783487632,213,0 +170783487682,213,0 +170783487729,213,0 +170783487777,213,0 +170783487825,213,0 +170783487873,213,0 +170783487921,213,0 +170783487971,213,0 +170783488018,214,0 +170783488066,214,0 +170783488114,214,0 +170783488162,214,0 +170783488212,214,0 +170783488260,214,0 +170783488309,214,0 +170783488359,214,0 +170783488407,214,0 +170783488455,213,0 +170783488503,213,0 +170783488552,213,0 +170783488602,213,0 +170783488650,213,0 +170783488699,213,0 +170783488747,213,0 +170783488797,213,0 +170783488845,213,0 +170783488894,213,0 +170783488942,214,0 +170783488991,213,0 +170783489039,214,0 +170783489087,214,0 +170783489135,214,0 +170783489183,214,0 +170783489231,214,0 +170783489279,214,0 +170783489327,214,0 +170783489375,213,0 +170783489423,213,0 +170783489471,213,0 +170783489520,213,0 +170783489570,213,0 +170783489618,213,0 +170783489667,213,0 +170783489717,213,0 +170783489765,213,0 +170783489812,214,0 +170783489860,214,0 +170783489908,214,0 +170783489956,214,0 +170783490004,214,0 +170783490051,214,0 +170783490099,214,0 +170783490147,214,0 +170783490195,214,0 +170783490243,214,0 +170783490291,213,0 +170783490339,213,0 +170783490388,213,0 +170783490438,213,0 +170783490486,213,0 +170783490535,213,0 +170783490585,213,0 +170783490634,213,0 +170783490684,214,0 +170783490732,214,0 +170783490780,214,0 +170783490828,214,0 +170783490875,213,0 +170783490923,214,0 +170783490971,214,0 +170783491019,214,0 +170783491069,214,0 +170783491118,214,0 +170783491166,214,0 +170783491215,213,0 +170783491263,212,0 +170783491311,213,0 +170783491359,213,0 +170783491407,213,0 +170783491456,213,0 +170783491504,213,0 +170783491552,213,0 +170783491599,213,0 +170783491649,213,0 +170783491696,213,0 +170783491744,213,0 +170783491792,213,0 +170783491840,214,0 +170783491888,214,0 +170783491935,214,0 +170783491983,214,0 +170783492031,214,0 +170783492079,214,0 +170783492127,213,0 +170783492174,213,0 +170783492222,213,0 +170783492270,213,0 +170783492318,213,0 +170783492366,213,0 +170783492414,213,0 +170783492462,213,0 +170783492510,213,0 +170783492559,213,0 +170783492609,214,0 +170783492658,213,0 +170783492708,213,0 +170783492757,214,0 +170783492805,213,0 +170783492853,214,0 +170783492901,214,0 +170783492949,214,0 +170783492997,214,0 +170783493045,213,0 +170783493094,213,0 +170783493142,212,0 +170783493190,212,0 +170783493238,213,0 +170783493286,213,0 +170783493336,213,0 +170783493384,213,0 +170783493433,213,0 +170783493481,213,0 +170783493530,213,0 +170783493580,213,0 +170783493628,213,0 +170783493676,213,0 +170783493724,213,0 +170783493772,214,0 +170783493820,214,0 +170783493869,214,0 +170783493917,214,0 +170783493965,213,0 +170783494012,213,0 +170783494060,213,0 +170783494108,213,0 +170783494156,213,0 +170783494204,213,0 +170783494252,213,0 +170783494299,213,0 +170783494349,213,0 +170783494397,213,0 +170783494444,213,0 +170783494492,213,0 +170783494540,213,0 +170783494588,214,0 +170783494636,214,0 +170783494685,214,0 +170783494733,214,0 +170783494781,214,0 +170783494829,214,0 +170783494878,213,0 +170783494926,213,0 +170783494974,213,0 +170783495023,213,0 +170783495071,213,0 +170783495120,213,0 +170783495168,213,0 +170783495216,213,0 +170783495265,213,0 +170783495313,213,0 +170783495361,213,0 +170783495410,213,0 +170783495458,214,0 +170783495506,213,0 +170783495554,214,0 +170783495603,214,0 +170783495651,214,0 +170783495701,214,0 +170783495749,214,0 +170783495796,213,0 +170783495844,213,0 +170783495892,213,0 +170783495940,213,0 +170783495989,213,0 +170783496039,213,0 +170783496088,213,0 +170783496136,213,0 +170783496185,213,0 +170783496233,213,0 +170783496283,213,0 +170783496331,213,0 +170783496378,214,0 +170783496426,213,0 +170783496474,213,0 +170783496522,214,0 +170783496570,214,0 +170783496617,214,0 +170783496665,214,0 +170783496713,213,0 +170783496761,213,0 +170783496809,212,0 +170783496857,213,0 +170783496905,213,0 +170783496954,213,0 +170783497002,213,0 +170783497050,213,0 +170783497098,213,0 +170783497145,213,0 +170783497193,213,0 +170783497241,213,0 +170783497289,214,0 +170783497337,214,0 +170783497386,213,0 +170783497434,213,0 +170783497482,214,0 +170783497530,214,0 +170783497577,214,0 +170783497627,213,0 +170783497675,213,0 +170783497724,213,0 +170783497773,213,0 +170783497821,213,0 +170783497871,213,0 +170783497918,213,0 +170783497966,213,0 +170783498014,213,0 +170783498063,213,0 +170783498111,213,0 +170783498159,213,0 +170783498207,214,0 +170783498255,214,0 +170783498303,214,0 +170783498352,214,0 +170783498400,214,0 +170783498448,214,0 +170783498496,214,0 +170783498543,213,0 +170783498591,213,0 +170783498639,213,0 +170783498687,213,0 +170783498735,213,0 +170783498783,213,0 +170783498830,213,0 +170783498878,213,0 +170783498926,213,0 +170783498974,213,0 +170783499022,214,0 +170783499070,214,0 +170783499119,214,0 +170783499167,214,0 +170783499215,214,0 +170783499264,214,0 +170783499312,214,0 +170783499360,214,0 +170783499407,214,0 +170783499455,213,0 +170783499505,213,0 +170783499553,213,0 +170783499600,213,0 +170783499648,213,0 +170783499696,213,0 +170783499744,213,0 +170783499792,213,0 +170783499839,213,0 +170783499887,213,0 +170783499937,213,0 +170783499984,213,0 +170783500032,214,0 +170783500080,214,0 +170783500128,214,0 +170783500176,214,0 +170783500224,214,0 +170783500272,214,0 +170783500320,214,0 +170783500367,213,0 +170783500415,213,0 +170783500463,213,0 +170783500511,213,0 +170783500559,213,0 +170783500607,213,0 +170783500654,213,0 +170783500702,213,0 +170783500750,213,0 +170783500800,214,0 +170783500847,214,0 +170783500895,214,0 +170783500943,214,0 +170783500991,214,0 +170783501039,214,0 +170783501086,214,0 +170783501134,214,0 +170783501182,215,0 +170783501230,214,0 +170783501278,213,0 +170783501327,213,0 +170783501375,214,0 +170783501423,214,0 +170783501472,213,0 +170783501520,214,0 +170783501570,213,0 +170783501617,214,0 +170783501667,214,0 +170783501715,214,0 +170783501762,214,0 +170783501810,214,0 +170783501860,214,0 +170783501907,214,0 +170783501955,215,0 +170783502003,214,0 +170783502051,214,0 +170783502099,214,0 +170783502146,214,0 +170783502194,213,0 +170783502242,213,0 +170783502290,213,0 +170783502338,214,0 +170783502386,214,0 +170783502433,214,0 +170783502481,214,0 +170783502529,214,0 +170783502577,214,0 +170783502625,214,0 +170783502673,214,0 +170783502721,214,0 +170783502769,214,0 +170783502817,214,0 +170783502864,214,0 +170783502912,214,0 +170783502960,214,0 +170783503008,214,0 +170783503056,214,0 +170783503104,214,0 +170783503152,213,0 +170783503199,213,0 +170783503247,213,0 +170783503295,213,0 +170783503343,214,0 +170783503391,213,0 +170783503439,214,0 +170783503486,214,0 +170783503534,213,0 +170783503582,214,0 +170783503630,214,0 +170783503678,214,0 +170783503726,214,0 +170783503774,214,0 +170783503821,214,0 +170783503871,214,0 +170783503918,214,0 +170783503966,214,0 +170783504014,214,0 +170783504062,213,0 +170783504110,213,0 +170783504157,213,0 +170783504205,213,0 +170783504253,214,0 +170783504301,214,0 +170783504349,214,0 +170783504397,214,0 +170783504445,213,0 +170783504492,214,0 +170783504540,214,0 +170783504588,214,0 +170783504638,214,0 +170783504685,214,0 +170783504733,214,0 +170783504781,214,0 +170783504829,214,0 +170783504877,214,0 +170783504926,214,0 +170783504974,213,0 +170783505022,213,0 +170783505070,213,0 +170783505119,213,0 +170783505167,213,0 +170783505215,213,0 +170783505262,213,0 +170783505312,213,0 +170783505360,213,0 +170783505408,214,0 +170783505455,214,0 +170783505503,214,0 +170783505551,214,0 +170783505600,214,0 +170783505650,214,0 +170783505698,214,0 +170783505746,214,0 +170783505794,214,0 +170783505842,214,0 +170783505891,213,0 +170783505941,213,0 +170783505989,213,0 +170783506037,213,0 +170783506086,213,0 +170783506136,213,0 +170783506185,213,0 +170783506235,213,0 +170783506283,213,0 +170783506332,213,0 +170783506380,214,0 +170783506430,213,0 +170783506478,214,0 +170783506526,214,0 +170783506573,214,0 +170783506621,214,0 +170783506671,214,0 +170783506719,214,0 +170783506767,214,0 +170783506816,213,0 +170783506864,213,0 +170783506914,213,0 +170783506963,213,0 +170783507012,213,0 +170783507060,213,0 +170783507108,213,0 +170783507156,213,0 +170783507206,213,0 +170783507255,213,0 +170783507303,213,0 +170783507351,213,0 +170783507401,213,0 +170783507450,214,0 +170783507500,214,0 +170783507548,214,0 +170783507596,214,0 +170783507645,214,0 +170783507693,214,0 +170783507741,213,0 +170783507790,213,0 +170783507838,213,0 +170783507886,213,0 +170783507934,213,0 +170783507982,213,0 +170783508030,213,0 +170783508078,213,0 +170783508126,213,0 +170783508175,213,0 +170783508225,213,0 +170783508274,213,0 +170783508322,213,0 +170783508370,214,0 +170783508420,214,0 +170783508468,214,0 +170783508516,214,0 +170783508564,214,0 +170783508611,213,0 +170783508659,213,0 +170783508707,213,0 +170783508755,213,0 +170783508805,213,0 +170783508853,213,0 +170783508902,213,0 +170783508950,213,0 +170783509000,213,0 +170783509050,213,0 +170783509097,213,0 +170783509145,213,0 +170783509193,213,0 +170783509241,213,0 +170783509291,213,0 +170783509339,213,0 +170783509387,214,0 +170783509436,213,0 +170783509486,214,0 +170783509533,213,0 +170783509581,213,0 +170783509629,213,0 +170783509677,213,0 +170783509727,213,0 +170783509774,213,0 +170783509822,213,0 +170783509870,213,0 +170783509918,213,0 +170783509966,213,0 +170783510015,213,0 +170783510063,213,0 +170783510111,213,0 +170783510161,214,0 +170783510210,214,0 +170783510258,214,0 +170783510306,213,0 +170783510354,214,0 +170783510403,214,0 +170783510451,214,0 +170783510499,213,0 +170783510547,213,0 +170783510595,213,0 +170783510644,213,0 +170783510694,213,0 +170783510742,213,0 +170783510790,213,0 +170783510838,213,0 +170783510887,213,0 +170783510935,213,0 +170783510984,213,0 +170783511032,213,0 +170783511082,214,0 +170783511131,214,0 +170783511179,214,0 +170783511229,214,0 +170783511278,214,0 +170783511328,214,0 +170783511377,213,0 +170783511425,213,0 +170783511475,213,0 +170783511523,213,0 +170783511570,213,0 +170783511618,213,0 +170783511666,213,0 +170783511714,213,0 +170783511764,213,0 +170783511813,213,0 +170783511861,213,0 +170783511909,213,0 +170783511959,214,0 +170783512007,213,0 +170783512055,213,0 +170783512103,214,0 +170783512151,214,0 +170783512199,214,0 +170783512247,214,0 +170783512294,213,0 +170783512344,213,0 +170783512393,213,0 +170783512441,213,0 +170783512491,213,0 +170783512539,213,0 +170783512587,213,0 +170783512636,213,0 +170783512684,213,0 +170783512732,213,0 +170783512780,213,0 +170783512828,213,0 +170783512876,213,0 +170783512924,214,0 +170783512974,213,0 +170783513023,214,0 +170783513071,214,0 +170783513119,214,0 +170783513169,214,0 +170783513218,213,0 +170783513268,213,0 +170783513317,213,0 +170783513367,213,0 +170783513415,213,0 +170783513464,213,0 +170783513512,213,0 +170783513560,213,0 +170783513609,213,0 +170783513657,213,0 +170783513705,213,0 +170783513753,213,0 +170783513801,213,0 +170783513849,213,0 +170783513899,213,0 +170783513946,213,0 +170783513994,214,0 +170783514044,214,0 +170783514093,214,0 +170783514141,213,0 +170783514190,213,0 +170783514238,213,0 +170783514286,213,0 +170783514334,213,0 +170783514382,213,0 +170783514431,213,0 +170783514481,213,0 +170783514529,213,0 +170783514578,213,0 +170783514626,213,0 +170783514674,213,0 +170783514722,214,0 +170783514772,214,0 +170783514819,214,0 +170783514869,214,0 +170783514917,214,0 +170783514965,214,0 +170783515013,214,0 +170783515062,213,0 +170783515110,213,0 +170783515158,213,0 +170783515208,213,0 +170783515256,213,0 +170783515305,213,0 +170783515353,213,0 +170783515401,213,0 +170783515449,213,0 +170783515497,213,0 +170783515545,213,0 +170783515593,214,0 +170783515641,214,0 +170783515689,214,0 +170783515739,214,0 +170783515787,214,0 +170783515836,214,0 +170783515884,214,0 +170783515932,214,0 +170783515980,213,0 +170783516029,213,0 +170783516077,213,0 +170783516127,213,0 +170783516175,213,0 +170783516223,213,0 +170783516271,213,0 +170783516319,213,0 +170783516366,214,0 +170783516414,214,0 +170783516464,214,0 +170783516512,214,0 +170783516561,214,0 +170783516611,214,0 +170783516658,214,0 +170783516708,214,0 +170783516756,214,0 +170783516804,214,0 +170783516852,214,0 +170783516900,213,0 +170783516948,213,0 +170783516996,213,0 +170783517045,213,0 +170783517093,213,0 +170783517141,213,0 +170783517191,213,0 +170783517240,213,0 +170783517289,213,0 +170783517337,213,0 +170783517385,214,0 +170783517435,214,0 +170783517483,214,0 +170783517531,214,0 +170783517578,214,0 +170783517626,214,0 +170783517676,214,0 +170783517724,214,0 +170783517772,214,0 +170783517820,213,0 +170783517868,213,0 +170783517916,213,0 +170783517964,213,0 +170783518013,213,0 +170783518061,213,0 +170783518111,213,0 +170783518158,213,0 +170783518208,213,0 +170783518256,213,0 +170783518304,214,0 +170783518352,213,0 +170783518400,213,0 +170783518448,213,0 +170783518496,213,0 +170783518544,214,0 +170783518592,214,0 +170783518640,214,0 +170783518687,214,0 +170783518735,213,0 +170783518783,213,0 +170783518833,213,0 +170783518881,213,0 +170783518930,213,0 +170783518979,213,0 +170783519027,213,0 +170783519075,213,0 +170783519125,213,0 +170783519174,213,0 +170783519224,213,0 +170783519271,213,0 +170783519319,214,0 +170783519367,214,0 +170783519415,214,0 +170783519463,214,0 +170783519513,214,0 +170783519560,214,0 +170783519610,214,0 +170783519659,213,0 +170783519707,212,0 +170783519755,213,0 +170783519805,213,0 +170783519853,213,0 +170783519900,213,0 +170783519948,213,0 +170783519996,213,0 +170783520044,213,0 +170783520094,213,0 +170783520142,213,0 +170783520191,213,0 +170783520239,213,0 +170783520287,213,0 +170783520335,213,0 +170783520383,213,0 +170783520430,214,0 +170783520478,214,0 +170783520526,214,0 +170783520574,213,0 +170783520623,213,0 +170783520671,213,0 +170783520720,213,0 +170783520768,213,0 +170783520816,213,0 +170783520864,213,0 +170783520911,213,0 +170783520959,213,0 +170783521007,213,0 +170783521055,213,0 +170783521103,213,0 +170783521151,213,0 +170783521200,213,0 +170783521248,213,0 +170783521296,213,0 +170783521344,213,0 +170783521392,213,0 +170783521440,214,0 +170783521488,214,0 +170783521537,214,0 +170783521585,214,0 +170783521633,214,0 +170783521683,214,0 +170783521732,214,0 +170783521780,214,0 +170783521828,214,0 +170783521876,214,0 +170783521923,213,0 +170783521971,213,0 +170783522021,213,0 +170783522070,213,0 +170783522120,212,0 +170783522169,213,0 +170783522219,213,0 +170783522268,213,0 +170783522316,213,0 +170783522366,213,0 +170783522415,213,0 +170783522463,213,0 +170783522511,213,0 +170783522561,214,0 +170783522609,214,0 +170783522657,214,0 +170783522705,214,0 +170783522753,214,0 +170783522801,214,0 +170783522849,213,0 +170783522898,212,0 +170783522948,213,0 +170783522996,213,0 +170783523043,213,0 +170783523091,213,0 +170783523139,213,0 +170783523187,213,0 +170783523235,213,0 +170783523283,213,0 +170783523331,213,0 +170783523379,213,0 +170783523427,214,0 +170783523476,214,0 +170783523526,214,0 +170783523574,214,0 +170783523623,214,0 +170783523671,214,0 +170783523721,214,0 +170783523770,213,0 +170783523818,213,0 +170783523866,213,0 +170783523915,213,0 +170783523965,213,0 +170783524013,213,0 +170783524061,213,0 +170783524109,213,0 +170783524157,213,0 +170783524204,214,0 +170783524254,214,0 +170783524302,214,0 +170783524350,214,0 +170783524399,214,0 +170783524449,214,0 +170783524497,214,0 +170783524544,214,0 +170783524592,214,0 +170783524640,214,0 +170783524688,213,0 +170783524736,213,0 +170783524783,213,0 +170783524831,213,0 +170783524879,213,0 +170783524927,214,0 +170783524976,214,0 +170783525024,214,0 +170783525072,214,0 +170783525120,214,0 +170783525168,214,0 +170783525217,214,0 +170783525265,214,0 +170783525313,214,0 +170783525363,214,0 +170783525412,214,0 +170783525460,214,0 +170783525508,214,0 +170783525556,214,0 +170783525604,214,0 +170783525652,214,0 +170783525700,214,0 +170783525748,214,0 +170783525797,214,0 +170783525845,214,0 +170783525893,214,0 +170783525941,214,0 +170783525989,214,0 +170783526038,214,0 +170783526088,214,0 +170783526136,214,0 +170783526185,214,0 +170783526233,214,0 +170783526281,214,0 +170783526329,214,0 +170783526377,214,0 +170783526425,214,0 +170783526473,214,0 +170783526522,213,0 +170783526570,213,0 +170783526618,213,0 +170783526668,213,0 +170783526716,213,0 +170783526764,213,0 +170783526812,213,0 +170783526860,213,0 +170783526908,213,0 +170783526955,214,0 +170783527003,213,0 +170783527051,214,0 +170783527101,214,0 +170783527150,214,0 +170783527200,214,0 +170783527249,214,0 +170783527299,214,0 +170783527347,214,0 +170783527396,214,0 +170783527446,213,0 +170783527494,213,0 +170783527543,213,0 +170783527591,213,0 +170783527641,213,0 +170783527690,213,0 +170783527740,213,0 +170783527789,213,0 +170783527839,214,0 +170783527888,213,0 +170783527936,213,0 +170783527986,213,0 +170783528034,214,0 +170783528082,214,0 +170783528131,214,0 +170783528179,214,0 +170783528227,214,0 +170783528275,213,0 +170783528323,214,0 +170783528371,213,0 +170783528419,213,0 +170783528468,213,0 +170783528518,213,0 +170783528566,213,0 +170783528614,213,0 +170783528661,213,0 +170783528711,213,0 +170783528759,213,0 +170783528808,213,0 +170783528856,213,0 +170783528904,214,0 +170783528952,214,0 +170783529000,214,0 +170783529048,214,0 +170783529097,214,0 +170783529146,214,0 +170783529194,214,0 +170783529242,214,0 +170783529290,213,0 +170783529338,213,0 +170783529386,213,0 +170783529434,213,0 +170783529482,213,0 +170783529530,213,0 +170783529580,213,0 +170783529628,214,0 +170783529675,214,0 +170783529723,214,0 +170783529773,214,0 +170783529820,214,0 +170783529868,214,0 +170783529916,214,0 +170783529966,214,0 +170783530014,214,0 +170783530061,214,0 +170783530111,214,0 +170783530159,214,0 +170783530207,213,0 +170783530255,213,0 +170783530303,213,0 +170783530351,213,0 +170783530398,213,0 +170783530448,213,0 +170783530496,213,0 +170783530545,213,0 +170783530593,213,0 +170783530641,214,0 +170783530689,214,0 +170783530737,214,0 +170783530785,214,0 +170783530833,214,0 +170783530882,214,0 +170783530932,214,0 +170783530981,214,0 +170783531031,214,0 +170783531080,214,0 +170783531128,213,0 +170783531178,213,0 +170783531226,213,0 +170783531274,213,0 +170783531322,213,0 +170783531371,213,0 +170783531419,214,0 +170783531467,213,0 +170783531517,213,0 +170783531566,214,0 +170783531614,214,0 +170783531664,214,0 +170783531711,214,0 +170783531759,214,0 +170783531809,214,0 +170783531858,214,0 +170783531908,214,0 +170783531957,214,0 +170783532005,213,0 +170783532053,213,0 +170783532103,213,0 +170783532151,213,0 +170783532200,213,0 +170783532248,213,0 +170783532296,213,0 +170783532344,213,0 +170783532393,213,0 +170783532441,213,0 +170783532491,214,0 +170783532539,214,0 +170783532587,214,0 +170783532636,214,0 +170783532684,214,0 +170783532732,214,0 +170783532782,214,0 +170783532830,214,0 +170783532878,214,0 +170783532926,214,0 +170783532973,213,0 +170783533023,213,0 +170783533072,213,0 +170783533120,213,0 +170783533168,213,0 +170783533216,213,0 +170783533264,213,0 +170783533312,213,0 +170783533362,213,0 +170783533411,214,0 +170783533461,214,0 +170783533509,214,0 +170783533556,214,0 +170783533606,214,0 +170783533654,214,0 +170783533702,214,0 +170783533750,214,0 +170783533798,214,0 +170783533847,213,0 +170783533897,213,0 +170783533946,213,0 +170783533994,213,0 +170783534042,213,0 +170783534090,213,0 +170783534138,213,0 +170783534187,213,0 +170783534237,213,0 +170783534286,213,0 +170783534334,213,0 +170783534384,213,0 +170783534432,214,0 +170783534481,214,0 +170783534529,214,0 +170783534577,214,0 +170783534625,213,0 +170783534674,214,0 +170783534722,214,0 +170783534770,213,0 +170783534818,213,0 +170783534868,213,0 +170783534916,213,0 +170783534964,213,0 +170783535012,213,0 +170783535061,213,0 +170783535111,213,0 +170783535160,213,0 +170783535210,213,0 +170783535257,213,0 +170783535305,213,0 +170783535355,214,0 +170783535404,214,0 +170783535454,214,0 +170783535503,214,0 +170783535551,214,0 +170783535599,214,0 +170783535647,214,0 +170783535695,213,0 +170783535745,213,0 +170783535794,213,0 +170783535843,213,0 +170783535891,213,0 +170783535939,213,0 +170783535989,213,0 +170783536037,213,0 +170783536086,213,0 +170783536134,213,0 +170783536184,213,0 +170783536232,213,0 +170783536279,214,0 +170783536327,214,0 +170783536375,213,0 +170783536423,214,0 +170783536471,214,0 +170783536519,213,0 +170783536567,214,0 +170783536616,213,0 +170783536664,213,0 +170783536712,213,0 +170783536760,213,0 +170783536807,213,0 +170783536855,213,0 +170783536905,213,0 +170783536954,213,0 +170783537004,213,0 +170783537052,213,0 +170783537101,213,0 +170783537151,213,0 +170783537200,213,0 +170783537248,213,0 +170783537298,214,0 +170783537346,214,0 +170783537394,214,0 +170783537443,214,0 +170783537491,214,0 +170783537539,213,0 +170783537588,213,0 +170783537638,212,0 +170783537686,213,0 +170783537734,213,0 +170783537782,213,0 +170783537830,213,0 +170783537877,213,0 +170783537925,213,0 +170783537973,213,0 +170783538021,213,0 +170783538070,213,0 +170783538118,213,0 +170783538168,213,0 +170783538216,213,0 +170783538264,214,0 +170783538312,214,0 +170783538360,214,0 +170783538407,214,0 +170783538455,213,0 +170783538503,213,0 +170783538553,213,0 +170783538601,213,0 +170783538649,212,0 +170783538696,213,0 +170783538744,213,0 +170783538792,213,0 +170783538840,213,0 +170783538888,213,0 +170783538937,213,0 +170783538987,213,0 +170783539036,213,0 +170783539084,213,0 +170783539132,213,0 +170783539180,213,0 +170783539228,214,0 +170783539276,213,0 +170783539324,214,0 +170783539372,213,0 +170783539421,213,0 +170783539469,213,0 +170783539518,213,0 +170783539566,213,0 +170783539616,213,0 +170783539664,213,0 +170783539713,213,0 +170783539761,213,0 +170783539810,213,0 +170783539860,213,0 +170783539908,214,0 +170783539957,214,0 +170783540005,213,0 +170783540053,214,0 +170783540103,214,0 +170783540150,214,0 +170783540198,214,0 +170783540246,214,0 +170783540296,213,0 +170783540344,213,0 +170783540393,213,0 +170783540441,213,0 +170783540491,213,0 +170783540539,213,0 +170783540586,213,0 +170783540636,213,0 +170783540684,213,0 +170783540732,213,0 +170783540780,213,0 +170783540828,213,0 +170783540877,213,0 +170783540925,214,0 +170783540973,213,0 +170783541021,214,0 +170783541070,214,0 +170783541120,214,0 +170783541169,214,0 +170783541217,213,0 +170783541265,213,0 +170783541314,213,0 +170783541364,213,0 +170783541412,213,0 +170783541461,213,0 +170783541511,213,0 +170783541558,213,0 +170783541608,213,0 +170783541656,213,0 +170783541705,213,0 +170783541755,213,0 +170783541802,213,0 +170783541850,213,0 +170783541898,213,0 +170783541946,213,0 +170783541994,214,0 +170783542042,214,0 +170783542092,214,0 +170783542140,213,0 +170783542189,213,0 +170783542237,213,0 +170783542285,213,0 +170783542333,213,0 +170783542383,213,0 +170783542431,213,0 +170783542479,213,0 +170783542527,213,0 +170783542575,213,0 +170783542624,213,0 +170783542672,213,0 +170783542721,213,0 +170783542769,213,0 +170783542819,214,0 +170783542867,214,0 +170783542916,214,0 +170783542966,214,0 +170783543014,214,0 +170783543062,213,0 +170783543110,213,0 +170783543159,213,0 +170783543207,213,0 +170783543255,213,0 +170783543303,213,0 +170783543351,213,0 +170783543399,213,0 +170783543447,213,0 +170783543495,213,0 +170783543544,213,0 +170783543592,213,0 +170783543641,213,0 +170783543689,214,0 +170783543737,214,0 +170783543785,213,0 +170783543833,214,0 +170783543881,214,0 +170783543929,214,0 +170783543979,213,0 +170783544028,213,0 +170783544076,213,0 +170783544125,213,0 +170783544173,213,0 +170783544221,213,0 +170783544269,213,0 +170783544317,213,0 +170783544365,213,0 +170783544413,213,0 +170783544461,213,0 +170783544509,214,0 +170783544557,214,0 +170783544605,214,0 +170783544652,214,0 +170783544700,214,0 +170783544748,214,0 +170783544796,214,0 +170783544846,214,0 +170783544894,213,0 +170783544942,213,0 +170783544990,213,0 +170783545037,213,0 +170783545087,213,0 +170783545135,213,0 +170783545183,213,0 +170783545231,213,0 +170783545279,214,0 +170783545328,214,0 +170783545376,214,0 +170783545424,214,0 +170783545473,214,0 +170783545523,214,0 +170783545571,214,0 +170783545620,214,0 +170783545670,214,0 +170783545720,214,0 +170783545769,213,0 +170783545817,213,0 +170783545866,213,0 +170783545916,213,0 +170783545964,213,0 +170783546012,213,0 +170783546060,213,0 +170783546108,214,0 +170783546157,214,0 +170783546205,214,0 +170783546253,214,0 +170783546301,214,0 +170783546349,214,0 +170783546398,214,0 +170783546448,214,0 +170783546497,214,0 +170783546545,214,0 +170783546595,214,0 +170783546643,214,0 +170783546691,214,0 +170783546739,213,0 +170783546787,213,0 +170783546835,213,0 +170783546883,213,0 +170783546932,213,0 +170783546980,213,0 +170783547030,214,0 +170783547078,214,0 +170783547125,214,0 +170783547173,214,0 +170783547223,214,0 +170783547272,214,0 +170783547320,214,0 +170783547368,214,0 +170783547416,214,0 +170783547464,214,0 +170783547512,214,0 +170783547562,214,0 +170783547611,214,0 +170783547659,213,0 +170783547707,213,0 +170783547756,213,0 +170783547804,213,0 +170783547852,213,0 +170783547900,213,0 +170783547950,213,0 +170783547998,214,0 +170783548046,214,0 +170783548093,213,0 +170783548143,214,0 +170783548191,214,0 +170783548240,214,0 +170783548290,214,0 +170783548338,214,0 +170783548387,214,0 +170783548435,214,0 +170783548483,214,0 +170783548531,214,0 +170783548579,213,0 +170783548627,213,0 +170783548675,213,0 +170783548723,213,0 +170783548772,213,0 +170783548820,213,0 +170783548868,213,0 +170783548916,213,0 +170783548964,213,0 +170783549012,213,0 +170783549060,213,0 +170783549108,214,0 +170783549156,214,0 +170783549205,214,0 +170783549255,214,0 +170783549302,214,0 +170783549350,214,0 +170783549400,214,0 +170783549448,214,0 +170783549496,213,0 +170783549545,213,0 +170783549593,213,0 +170783549641,213,0 +170783549689,213,0 +170783549737,213,0 +170783549786,213,0 +170783549834,213,0 +170783549882,213,0 +170783549932,213,0 +170783549980,213,0 +170783550029,214,0 +170783550079,214,0 +170783550128,214,0 +170783550176,214,0 +170783550226,214,0 +170783550274,214,0 +170783550322,214,0 +170783550369,214,0 +170783550417,213,0 +170783550465,213,0 +170783550513,213,0 +170783550561,213,0 +170783550610,213,0 +170783550658,213,0 +170783550706,213,0 +170783550754,213,0 +170783550802,213,0 +170783550851,213,0 +170783550901,214,0 +170783550950,214,0 +170783550998,214,0 +170783551046,214,0 +170783551094,214,0 +170783551144,214,0 +170783551191,214,0 +170783551239,214,0 +170783551287,214,0 +170783551335,213,0 +170783551385,213,0 +170783551433,213,0 +170783551481,213,0 +170783551529,213,0 +170783551578,213,0 +170783551626,213,0 +170783551674,213,0 +170783551722,213,0 +170783551771,213,0 +170783551819,214,0 +170783551867,214,0 +170783551914,214,0 +170783551964,214,0 +170783552012,214,0 +170783552059,214,0 +170783552107,214,0 +170783552155,214,0 +170783552203,214,0 +170783552251,213,0 +170783552299,213,0 +170783552347,213,0 +170783552396,213,0 +170783552445,213,0 +170783552493,213,0 +170783552541,213,0 +170783552589,213,0 +170783552637,213,0 +170783552685,213,0 +170783552732,214,0 +170783552780,214,0 +170783552828,214,0 +170783552876,214,0 +170783552925,214,0 +170783552973,214,0 +170783553023,214,0 +170783553070,214,0 +170783553118,214,0 +170783553166,213,0 +170783553214,213,0 +170783553262,213,0 +170783553310,213,0 +170783553358,213,0 +170783553407,213,0 +170783553455,213,0 +170783553503,213,0 +170783553551,213,0 +170783553598,213,0 +170783553646,214,0 +170783553694,214,0 +170783553742,214,0 +170783553790,214,0 +170783553839,214,0 +170783553887,214,0 +170783553935,214,0 +170783553983,214,0 +170783554031,214,0 +170783554079,213,0 +170783554127,213,0 +170783554176,213,0 +170783554226,213,0 +170783554275,213,0 +170783554325,213,0 +170783554373,213,0 +170783554421,213,0 +170783554470,213,0 +170783554519,213,0 +170783554567,213,0 +170783554615,214,0 +170783554663,213,0 +170783554711,213,0 +170783554760,213,0 +170783554808,214,0 +170783554856,214,0 +170783554904,214,0 +170783554952,214,0 +170783555000,213,0 +170783555047,213,0 +170783555095,213,0 +170783555143,213,0 +170783555191,213,0 +170783555239,213,0 +170783555287,213,0 +170783555335,213,0 +170783555382,213,0 +170783555431,213,0 +170783555479,214,0 +170783555527,213,0 +170783555574,214,0 +170783555622,214,0 +170783555672,214,0 +170783555720,214,0 +170783555768,214,0 +170783555816,214,0 +170783555863,214,0 +170783555911,213,0 +170783555959,213,0 +170783556007,213,0 +170783556055,213,0 +170783556103,213,0 +170783556152,213,0 +170783556200,213,0 +170783556248,213,0 +170783556295,213,0 +170783556345,213,0 +170783556393,213,0 +170783556441,213,0 +170783556488,213,0 +170783556536,214,0 +170783556584,214,0 +170783556632,214,0 +170783556680,214,0 +170783556729,214,0 +170783556777,214,0 +170783556825,214,0 +170783556875,213,0 +170783556924,213,0 +170783556972,213,0 +170783557021,213,0 +170783557069,213,0 +170783557119,213,0 +170783557168,213,0 +170783557218,213,0 +170783557267,213,0 +170783557317,213,0 +170783557365,214,0 +170783557414,214,0 +170783557462,214,0 +170783557510,214,0 +170783557559,214,0 +170783557607,214,0 +170783557655,214,0 +170783557703,214,0 +170783557752,213,0 +170783557800,213,0 +170783557848,213,0 +170783557897,213,0 +170783557945,213,0 +170783557993,213,0 +170783558041,213,0 +170783558089,213,0 +170783558137,213,0 +170783558184,213,0 +170783558232,213,0 +170783558280,213,0 +170783558328,213,0 +170783558376,214,0 +170783558424,214,0 +170783558472,214,0 +170783558521,214,0 +170783558571,214,0 +170783558620,214,0 +170783558670,213,0 +170783558719,213,0 +170783558767,213,0 +170783558815,213,0 +170783558863,213,0 +170783558911,213,0 +170783558958,213,0 +170783559006,213,0 +170783559054,213,0 +170783559102,213,0 +170783559152,214,0 +170783559200,213,0 +170783559249,214,0 +170783559297,214,0 +170783559346,214,0 +170783559396,214,0 +170783559444,214,0 +170783559493,214,0 +170783559543,214,0 +170783559591,213,0 +170783559639,213,0 +170783559686,213,0 +170783559736,213,0 +170783559785,213,0 +170783559835,213,0 +170783559883,213,0 +170783559931,213,0 +170783559979,214,0 +170783560026,214,0 +170783560076,214,0 +170783560125,214,0 +170783560175,214,0 +170783560223,214,0 +170783560271,214,0 +170783560320,214,0 +170783560368,214,0 +170783560417,214,0 +170783560465,214,0 +170783560513,213,0 +170783560561,213,0 +170783560609,213,0 +170783560657,213,0 +170783560705,213,0 +170783560753,213,0 +170783560801,213,0 +170783560849,213,0 +170783560897,214,0 +170783560945,214,0 +170783560994,214,0 +170783561042,214,0 +170783561090,214,0 +170783561140,214,0 +170783561188,214,0 +170783561236,214,0 +170783561284,214,0 +170783561332,214,0 +170783561381,214,0 +170783561429,213,0 +170783561477,213,0 +170783561526,213,0 +170783561574,213,0 +170783561622,213,0 +170783561672,213,0 +170783561721,213,0 +170783561771,213,0 +170783561820,213,0 +170783561868,213,0 +170783561916,214,0 +170783561964,214,0 +170783562012,214,0 +170783562060,214,0 +170783562108,214,0 +170783562156,214,0 +170783562204,214,0 +170783562253,214,0 +170783562303,214,0 +170783562353,213,0 +170783562401,213,0 +170783562448,213,0 +170783562498,213,0 +170783562546,213,0 +170783562594,213,0 +170783562642,213,0 +170783562691,213,0 +170783562739,213,0 +170783562787,214,0 +170783562835,214,0 +170783562883,214,0 +170783562931,214,0 +170783562979,214,0 +170783563027,214,0 +170783563074,214,0 +170783563122,214,0 +170783563172,214,0 +170783563220,214,0 +170783563269,213,0 +170783563319,213,0 +170783563367,213,0 +170783563414,213,0 +170783563462,213,0 +170783563512,213,0 +170783563560,213,0 +170783563609,213,0 +170783563657,213,0 +170783563705,213,0 +170783563755,213,0 +170783563802,213,0 +170783563850,214,0 +170783563900,214,0 +170783563948,214,0 +170783563996,214,0 +170783564045,214,0 +170783564093,214,0 +170783564142,214,0 +170783564190,213,0 +170783564238,213,0 +170783564286,213,0 +170783564334,213,0 +170783564384,213,0 +170783564432,213,0 +170783564480,213,0 +170783564527,213,0 +170783564577,213,0 +170783564626,213,0 +170783564676,213,0 +170783564725,213,0 +170783564773,213,0 +170783564821,213,0 +170783564869,213,0 +170783564917,213,0 +170783564967,213,0 +170783565014,214,0 +170783565062,214,0 +170783565112,213,0 +170783565160,213,0 +170783565208,213,0 +170783565256,213,0 +170783565304,213,0 +170783565351,213,0 +170783565399,213,0 +170783565447,213,0 +170783565497,213,0 +170783565545,213,0 +170783565593,213,0 +170783565640,213,0 +170783565690,213,0 +170783565738,214,0 +170783565786,213,0 +170783565834,214,0 +170783565882,214,0 +170783565930,214,0 +170783565978,214,0 +170783566026,213,0 +170783566074,213,0 +170783566121,213,0 +170783566171,213,0 +170783566220,213,0 +170783566268,213,0 +170783566316,213,0 +170783566364,213,0 +170783566412,213,0 +170783566460,213,0 +170783566508,213,0 +170783566556,213,0 +170783566605,213,0 +170783566653,214,0 +170783566701,214,0 +170783566749,214,0 +170783566797,214,0 +170783566845,214,0 +170783566893,214,0 +170783566941,213,0 +170783566990,213,0 +170783567040,213,0 +170783567087,213,0 +170783567135,213,0 +170783567183,213,0 +170783567233,213,0 +170783567281,213,0 +170783567330,213,0 +170783567380,213,0 +170783567429,213,0 +170783567477,213,0 +170783567525,214,0 +170783567574,214,0 +170783567624,214,0 +170783567672,214,0 +170783567720,214,0 +170783567768,214,0 +170783567816,214,0 +170783567865,213,0 +170783567915,213,0 +170783567963,213,0 +170783568011,213,0 +170783568059,213,0 +170783568106,213,0 +170783568154,214,0 +170783568204,214,0 +170783568253,214,0 +170783568303,214,0 +170783568350,214,0 +170783568398,214,0 +170783568448,214,0 +170783568496,214,0 +170783568544,214,0 +170783568592,214,0 +170783568641,214,0 +170783568689,214,0 +170783568739,214,0 +170783568787,213,0 +170783568834,213,0 +170783568882,213,0 +170783568932,213,0 +170783568980,214,0 +170783569029,214,0 +170783569077,214,0 +170783569127,214,0 +170783569175,214,0 +170783569224,214,0 +170783569272,214,0 +170783569322,214,0 +170783569371,214,0 +170783569419,214,0 +170783569469,214,0 +170783569517,214,0 +170783569565,214,0 +170783569614,214,0 +170783569662,214,0 +170783569711,213,0 +170783569759,213,0 +170783569807,213,0 +170783569857,213,0 +170783569906,214,0 +170783569956,214,0 +170783570004,214,0 +170783570052,214,0 +170783570100,214,0 +170783570148,214,0 +170783570196,214,0 +170783570243,214,0 +170783570291,214,0 +170783570341,214,0 +170783570389,214,0 +170783570437,214,0 +170783570485,214,0 +170783570534,214,0 +170783570582,214,0 +170783570630,213,0 +170783570680,213,0 +170783570729,213,0 +170783570777,213,0 +170783570825,213,0 +170783570873,213,0 +170783570921,213,0 +170783570969,213,0 +170783571017,213,0 +170783571066,214,0 +170783571116,214,0 +170783571164,214,0 +170783571212,214,0 +170783571261,214,0 +170783571309,214,0 +170783571357,214,0 +170783571405,214,0 +170783571453,214,0 +170783571501,214,0 +170783571549,213,0 +170783571597,213,0 +170783571646,213,0 +170783571694,213,0 +170783571742,213,0 +170783571790,213,0 +170783571840,213,0 +170783571888,213,0 +170783571936,213,0 +170783571984,213,0 +170783572033,213,0 +170783572082,215,0 +170783572130,214,0 +170783572180,214,0 +170783572228,214,0 +170783572276,214,0 +170783572325,214,0 +170783572373,214,0 +170783572423,214,0 +170783572471,213,0 +170783572519,213,0 +170783572567,213,0 +170783572614,213,0 +170783572662,213,0 +170783572710,213,0 +170783572758,213,0 +170783572806,213,0 +170783572855,213,0 +170783572903,213,0 +170783572951,213,0 +170783573000,213,0 +170783573048,213,0 +170783573098,214,0 +170783573147,213,0 +170783573195,214,0 +170783573243,214,0 +170783573291,214,0 +170783573340,214,0 +170783573388,213,0 +170783573438,213,0 +170783573486,213,0 +170783573535,213,0 +170783573583,213,0 +170783573631,213,0 +170783573679,213,0 +170783573729,213,0 +170783573777,213,0 +170783573825,214,0 +170783573872,213,0 +170783573920,214,0 +170783573968,214,0 +170783574016,214,0 +170783574064,214,0 +170783574114,214,0 +170783574163,214,0 +170783574211,214,0 +170783574261,214,0 +170783574310,213,0 +170783574359,213,0 +170783574409,213,0 +170783574457,213,0 +170783574505,213,0 +170783574553,213,0 +170783574602,213,0 +170783574650,213,0 +170783574698,213,0 +170783574747,213,0 +170783574795,214,0 +170783574843,214,0 +170783574891,214,0 +170783574939,214,0 +170783574987,214,0 +170783575036,214,0 +170783575086,215,0 +170783575135,214,0 +170783575183,214,0 +170783575231,213,0 +170783575279,213,0 +170783575329,213,0 +170783575378,213,0 +170783575426,213,0 +170783575474,213,0 +170783575522,213,0 +170783575570,213,0 +170783575618,214,0 +170783575667,214,0 +170783575715,214,0 +170783575763,214,0 +170783575811,214,0 +170783575859,214,0 +170783575907,214,0 +170783575956,214,0 +170783576004,214,0 +170783576052,214,0 +170783576100,214,0 +170783576150,213,0 +170783576199,213,0 +170783576249,213,0 +170783576297,213,0 +170783576345,213,0 +170783576394,213,0 +170783576442,213,0 +170783576492,213,0 +170783576541,213,0 +170783576589,214,0 +170783576638,214,0 +170783576688,214,0 +170783576736,214,0 +170783576784,214,0 +170783576832,214,0 +170783576880,214,0 +170783576928,214,0 +170783576976,214,0 +170783577025,214,0 +170783577073,213,0 +170783577121,213,0 +170783577170,213,0 +170783577218,213,0 +170783577266,213,0 +170783577314,213,0 +170783577364,213,0 +170783577413,213,0 +170783577461,213,0 +170783577509,213,0 +170783577557,213,0 +170783577605,213,0 +170783577653,214,0 +170783577702,214,0 +170783577750,214,0 +170783577798,214,0 +170783577846,214,0 +170783577894,214,0 +170783577942,214,0 +170783577992,213,0 +170783578040,213,0 +170783578089,213,0 +170783578137,213,0 +170783578185,213,0 +170783578233,213,0 +170783578282,213,0 +170783578330,213,0 +170783578378,213,0 +170783578426,213,0 +170783578475,213,0 +170783578523,213,0 +170783578571,214,0 +170783578621,214,0 +170783578671,214,0 +170783578720,214,0 +170783578768,214,0 +170783578817,214,0 +170783578865,214,0 +170783578913,213,0 +170783578963,213,0 +170783579011,213,0 +170783579059,213,0 +170783579106,213,0 +170783579154,213,0 +170783579202,213,0 +170783579250,213,0 +170783579298,213,0 +170783579346,214,0 +170783579394,213,0 +170783579443,214,0 +170783579491,214,0 +170783579539,214,0 +170783579589,214,0 +170783579637,214,0 +170783579685,214,0 +170783579733,214,0 +170783579780,214,0 +170783579828,213,0 +170783579878,213,0 +170783579926,213,0 +170783579973,213,0 +170783580023,213,0 +170783580072,213,0 +170783580120,213,0 +170783580168,213,0 +170783580216,214,0 +170783580266,214,0 +170783580314,214,0 +170783580363,214,0 +170783580411,214,0 +170783580459,214,0 +170783580507,214,0 +170783580555,214,0 +170783580604,214,0 +170783580652,214,0 +170783580700,214,0 +170783580748,213,0 +170783580796,213,0 +170783580844,213,0 +170783580892,213,0 +170783580940,213,0 +170783580989,213,0 +170783581037,213,0 +170783581087,213,0 +170783581135,213,0 +170783581184,214,0 +170783581234,213,0 +170783581282,213,0 +170783581330,214,0 +170783581377,214,0 +170783581425,214,0 +170783581473,214,0 +170783581521,214,0 +170783581571,214,0 +170783581619,214,0 +170783581667,213,0 +170783581714,213,0 +170783581764,213,0 +170783581812,213,0 +170783581860,213,0 +170783581908,213,0 +170783581957,213,0 +170783582005,213,0 +170783582055,213,0 +170783582103,213,0 +170783582152,213,0 +170783582200,214,0 +170783582250,214,0 +170783582299,214,0 +170783582347,214,0 +170783582395,214,0 +170783582443,214,0 +170783582491,214,0 +170783582541,214,0 +170783582589,213,0 +170783582637,213,0 +170783582686,213,0 +170783582734,213,0 +170783582782,213,0 +170783582830,213,0 +170783582878,213,0 +170783582926,213,0 +170783582974,213,0 +170783583023,214,0 +170783583071,214,0 +170783583121,214,0 +170783583170,214,0 +170783583218,214,0 +170783583266,214,0 +170783583316,214,0 +170783583365,214,0 +170783583413,214,0 +170783583463,214,0 +170783583511,213,0 +170783583559,213,0 +170783583607,213,0 +170783583655,213,0 +170783583704,213,0 +170783583752,213,0 +170783583800,213,0 +170783583849,213,0 +170783583897,213,0 +170783583945,213,0 +170783583995,213,0 +170783584044,213,0 +170783584092,214,0 +170783584142,214,0 +170783584190,214,0 +170783584237,214,0 +170783584287,214,0 +170783584335,214,0 +170783584383,214,0 +170783584431,213,0 +170783584479,213,0 +170783584527,213,0 +170783584574,213,0 +170783584622,213,0 +170783584670,213,0 +170783584718,213,0 +170783584766,213,0 +170783584814,213,0 +170783584864,213,0 +170783584912,213,0 +170783584959,214,0 +170783585009,214,0 +170783585058,214,0 +170783585106,214,0 +170783585154,214,0 +170783585202,214,0 +170783585250,214,0 +170783585298,214,0 +170783585346,213,0 +170783585395,213,0 +170783585443,213,0 +170783585493,213,0 +170783585541,213,0 +170783585589,213,0 +170783585637,213,0 +170783585685,213,0 +170783585734,213,0 +170783585782,213,0 +170783585830,213,0 +170783585878,213,0 +170783585926,213,0 +170783585974,214,0 +170783586022,214,0 +170783586070,214,0 +170783586118,214,0 +170783586166,214,0 +170783586215,214,0 +170783586265,213,0 +170783586313,213,0 +170783586361,213,0 +170783586410,213,0 +170783586458,213,0 +170783586506,213,0 +170783586554,213,0 +170783586602,213,0 +170783586650,213,0 +170783586698,213,0 +170783586746,213,0 +170783586793,214,0 +170783586841,214,0 +170783586891,213,0 +170783586939,214,0 +170783586988,214,0 +170783587036,214,0 +170783587084,214,0 +170783587134,214,0 +170783587182,213,0 +170783587229,213,0 +170783587277,213,0 +170783587327,213,0 +170783587375,213,0 +170783587424,213,0 +170783587472,213,0 +170783587520,213,0 +170783587568,213,0 +170783587616,213,0 +170783587664,213,0 +170783587712,213,0 +170783587761,213,0 +170783587809,214,0 +170783587857,214,0 +170783587907,214,0 +170783587955,214,0 +170783588003,214,0 +170783588050,214,0 +170783588100,213,0 +170783588148,213,0 +170783588196,213,0 +170783588245,213,0 +170783588293,213,0 +170783588343,213,0 +170783588390,213,0 +170783588438,213,0 +170783588488,213,0 +170783588536,213,0 +170783588584,213,0 +170783588632,213,0 +170783588681,214,0 +170783588729,214,0 +170783588779,214,0 +170783588828,214,0 +170783588876,214,0 +170783588924,214,0 +170783588972,214,0 +170783589020,213,0 +170783589067,213,0 +170783589117,213,0 +170783589166,213,0 +170783589214,213,0 +170783589262,213,0 +170783589310,213,0 +170783589358,213,0 +170783589406,213,0 +170783589454,213,0 +170783589503,213,0 +170783589551,214,0 +170783589601,214,0 +170783589649,214,0 +170783589696,214,0 +170783589744,214,0 +170783589794,214,0 +170783589842,214,0 +170783589890,214,0 +170783589938,213,0 +170783589986,213,0 +170783590033,213,0 +170783590082,213,0 +170783590131,213,0 +170783590179,213,0 +170783590227,213,0 +170783590275,213,0 +170783590323,214,0 +170783590371,214,0 +170783590420,214,0 +170783590468,214,0 +170783590516,214,0 +170783590565,214,0 +170783590613,214,0 +170783590661,214,0 +170783590711,214,0 +170783590759,214,0 +170783590807,214,0 +170783590855,214,0 +170783590902,213,0 +170783590950,213,0 +170783591000,213,0 +170783591048,214,0 +170783591096,213,0 +170783591143,214,0 +170783591191,214,0 +170783591241,214,0 +170783591289,214,0 +170783591336,214,0 +170783591384,214,0 +170783591432,214,0 +170783591480,214,0 +170783591528,214,0 +170783591578,214,0 +170783591627,214,0 +170783591677,214,0 +170783591725,214,0 +170783591772,214,0 +170783591822,213,0 +170783591870,213,0 +170783591918,213,0 +170783591967,214,0 +170783592017,214,0 +170783592065,214,0 +170783592113,214,0 +170783592161,214,0 +170783592208,214,0 +170783592256,214,0 +170783592304,214,0 +170783592354,214,0 +170783592401,214,0 +170783592449,214,0 +170783592497,214,0 +170783592545,214,0 +170783592593,214,0 +170783592641,214,0 +170783592689,213,0 +170783592738,213,0 +170783592786,213,0 +170783592834,213,0 +170783592881,213,0 +170783592929,213,0 +170783592977,213,0 +170783593025,214,0 +170783593073,214,0 +170783593121,214,0 +170783593169,214,0 +170783593217,214,0 +170783593266,214,0 +170783593314,214,0 +170783593364,214,0 +170783593413,214,0 +170783593462,214,0 +170783593510,214,0 +170783593558,214,0 +170783593606,213,0 +170783593654,213,0 +170783593702,213,0 +170783593752,213,0 +170783593799,213,0 +170783593847,213,0 +170783593897,213,0 +170783593945,213,0 +170783593994,213,0 +170783594044,213,0 +170783594093,213,0 +170783594142,213,0 +170783594190,213,0 +170783594238,213,0 +170783594287,214,0 +170783594335,214,0 +170783594383,214,0 +170783594431,214,0 +170783594481,214,0 +170783594529,214,0 +170783594577,213,0 +170783594625,213,0 +170783594674,213,0 +170783594723,213,0 +170783594771,213,0 +170783594819,213,0 +170783594867,213,0 +170783594917,213,0 +170783594965,213,0 +170783595014,213,0 +170783595062,213,0 +170783595110,213,0 +170783595158,213,0 +170783595208,214,0 +170783595257,214,0 +170783595306,214,0 +170783595356,214,0 +170783595404,214,0 +170783595452,213,0 +170783595500,213,0 +170783595548,213,0 +170783595596,213,0 +170783595644,213,0 +170783595692,213,0 +170783595739,213,0 +170783595787,213,0 +170783595835,213,0 +170783595883,213,0 +170783595931,213,0 +170783595979,214,0 +170783596027,214,0 +170783596076,214,0 +170783596126,214,0 +170783596174,214,0 +170783596223,214,0 +170783596271,214,0 +170783596319,214,0 +170783596367,214,0 +170783596415,213,0 +170783596464,213,0 +170783596512,213,0 +170783596560,213,0 +170783596608,213,0 +170783596656,213,0 +170783596704,214,0 +170783596752,213,0 +170783596799,214,0 +170783596847,214,0 +170783596895,214,0 +170783596943,214,0 +170783596990,214,0 +170783597038,214,0 +170783597086,214,0 +170783597134,214,0 +170783597182,214,0 +170783597231,214,0 +170783597281,214,0 +170783597330,213,0 +170783597378,213,0 +170783597427,213,0 +170783597475,213,0 +170783597525,213,0 +170783597573,213,0 +170783597622,213,0 +170783597670,213,0 +170783597718,213,0 +170783597766,213,0 +170783597814,214,0 +170783597862,214,0 +170783597910,214,0 +170783597958,214,0 +170783598006,214,0 +170783598054,214,0 +170783598102,214,0 +170783598150,214,0 +170783598197,214,0 +170783598245,213,0 +170783598293,213,0 +170783598343,213,0 +170783598392,213,0 +170783598442,213,0 +170783598491,213,0 +170783598539,213,0 +170783598589,213,0 +170783598636,214,0 +170783598684,214,0 +170783598732,214,0 +170783598780,214,0 +170783598828,214,0 +170783598876,214,0 +170783598925,214,0 +170783598973,214,0 +170783599021,214,0 +170783599070,214,0 +170783599118,214,0 +170783599166,213,0 +170783599214,213,0 +170783599261,213,0 +170783599309,213,0 +170783599357,213,0 +170783599405,213,0 +170783599453,213,0 +170783599501,213,0 +170783599549,213,0 +170783599596,213,0 +170783599644,214,0 +170783599692,214,0 +170783599740,214,0 +170783599789,214,0 +170783599837,214,0 +170783599885,214,0 +170783599933,214,0 +170783599981,214,0 +170783600030,214,0 +170783600078,213,0 +170783600126,213,0 +170783600176,213,0 +170783600224,213,0 +170783600272,213,0 +170783600320,213,0 +170783600368,213,0 +170783600417,213,0 +170783600466,213,0 +170783600514,213,0 +170783600562,213,0 +170783600610,214,0 +170783600660,214,0 +170783600708,214,0 +170783600756,214,0 +170783600804,214,0 +170783600853,214,0 +170783600901,214,0 +170783600949,214,0 +170783600998,213,0 +170783601046,213,0 +170783601096,213,0 +170783601144,213,0 +170783601192,213,0 +170783601240,213,0 +170783601288,213,0 +170783601335,213,0 +170783601383,213,0 +170783601431,214,0 +170783601481,214,0 +170783601529,214,0 +170783601578,214,0 +170783601628,214,0 +170783601677,214,0 +170783601725,214,0 +170783601773,214,0 +170783601821,214,0 +170783601869,214,0 +170783601918,213,0 +170783601967,213,0 +170783602017,213,0 +170783602065,213,0 +170783602113,213,0 +170783602161,213,0 +170783602210,213,0 +170783602258,213,0 +170783602306,213,0 +170783602354,214,0 +170783602404,213,0 +170783602452,214,0 +170783602499,214,0 +170783602547,214,0 +170783602595,214,0 +170783602643,214,0 +170783602691,214,0 +170783602739,214,0 +170783602787,214,0 +170783602835,213,0 +170783602885,213,0 +170783602933,213,0 +170783602980,213,0 +170783603028,213,0 +170783603078,213,0 +170783603126,213,0 +170783603174,213,0 +170783603222,213,0 +170783603269,213,0 +170783603319,214,0 +170783603368,214,0 +170783603416,214,0 +170783603464,214,0 +170783603512,214,0 +170783603562,214,0 +170783603610,214,0 +170783603659,214,0 +170783603707,214,0 +170783603757,213,0 +170783603804,213,0 +170783603852,213,0 +170783603900,213,0 +170783603948,213,0 +170783603998,213,0 +170783604046,213,0 +170783604093,213,0 +170783604141,213,0 +170783604189,213,0 +170783604237,213,0 +170783604285,214,0 +170783604333,214,0 +170783604381,214,0 +170783604429,214,0 +170783604477,214,0 +170783604526,214,0 +170783604576,214,0 +170783604625,214,0 +170783604673,213,0 +170783604721,213,0 +170783604769,213,0 +170783604819,213,0 +170783604866,213,0 +170783604914,213,0 +170783604962,213,0 +170783605010,213,0 +170783605058,213,0 +170783605108,213,0 +170783605157,214,0 +170783605205,214,0 +170783605255,214,0 +170783605303,214,0 +170783605351,214,0 +170783605399,214,0 +170783605448,214,0 +170783605497,214,0 +170783605545,214,0 +170783605595,213,0 +170783605644,213,0 +170783605692,213,0 +170783605740,213,0 +170783605788,213,0 +170783605836,213,0 +170783605884,213,0 +170783605933,213,0 +170783605981,214,0 +170783606029,214,0 +170783606079,214,0 +170783606127,214,0 +170783606174,214,0 +170783606222,214,0 +170783606270,214,0 +170783606320,214,0 +170783606368,214,0 +170783606417,214,0 +170783606467,214,0 +170783606515,213,0 +170783606563,213,0 +170783606611,213,0 +170783606660,213,0 +170783606708,213,0 +170783606758,213,0 +170783606806,213,0 +170783606855,213,0 +170783606905,213,0 +170783606954,213,0 +170783607004,213,0 +170783607051,214,0 +170783607099,214,0 +170783607149,214,0 +170783607197,214,0 +170783607245,214,0 +170783607293,214,0 +170783607342,214,0 +170783607390,214,0 +170783607438,213,0 +170783607486,213,0 +170783607535,213,0 +170783607583,213,0 +170783607633,213,0 +170783607681,213,0 +170783607729,213,0 +170783607778,213,0 +170783607826,213,0 +170783607874,214,0 +170783607922,213,0 +170783607970,213,0 +170783608018,214,0 +170783608066,214,0 +170783608114,213,0 +170783608162,214,0 +170783608211,213,0 +170783608259,213,0 +170783608307,214,0 +170783608355,213,0 +170783608405,213,0 +170783608454,213,0 +170783608502,213,0 +170783608550,213,0 +170783608598,213,0 +170783608648,213,0 +170783608695,213,0 +170783608743,213,0 +170783608791,214,0 +170783608841,214,0 +170783608888,214,0 +170783608936,214,0 +170783608984,214,0 +170783609032,214,0 +170783609080,214,0 +170783609128,214,0 +170783609175,214,0 +170783609223,214,0 +170783609271,213,0 +170783609319,213,0 +170783609368,213,0 +170783609416,213,0 +170783609466,213,0 +170783609515,213,0 +170783609565,213,0 +170783609612,213,0 +170783609660,213,0 +170783609708,214,0 +170783609758,213,0 +170783609806,213,0 +170783609854,213,0 +170783609903,214,0 +170783609951,214,0 +170783610001,214,0 +170783610049,214,0 +170783610098,214,0 +170783610146,214,0 +170783610196,213,0 +170783610243,213,0 +170783610293,213,0 +170783610341,213,0 +170783610389,213,0 +170783610437,213,0 +170783610485,213,0 +170783610534,213,0 +170783610584,213,0 +170783610633,213,0 +170783610681,213,0 +170783610729,213,0 +170783610779,214,0 +170783610828,214,0 +170783610878,214,0 +170783610926,214,0 +170783610975,214,0 +170783611025,214,0 +170783611072,214,0 +170783611122,213,0 +170783611170,213,0 +170783611218,213,0 +170783611266,213,0 +170783611315,213,0 +170783611363,213,0 +170783611413,213,0 +170783611462,213,0 +170783611510,213,0 +170783611558,213,0 +170783611608,213,0 +170783611656,214,0 +170783611703,213,0 +170783611753,214,0 +170783611801,214,0 +170783611849,214,0 +170783611897,214,0 +170783611945,214,0 +170783611994,214,0 +170783612042,213,0 +170783612090,213,0 +170783612138,213,0 +170783612186,213,0 +170783612234,213,0 +170783612283,213,0 +170783612331,213,0 +170783612380,213,0 +170783612428,214,0 +170783612476,214,0 +170783612524,214,0 +170783612574,214,0 +170783612622,214,0 +170783612670,214,0 +170783612717,214,0 +170783612765,214,0 +170783612813,214,0 +170783612863,214,0 +170783612912,214,0 +170783612960,213,0 +170783613008,213,0 +170783613056,213,0 +170783613105,213,0 +170783613153,214,0 +170783613201,213,0 +170783613249,214,0 +170783613297,214,0 +170783613345,214,0 +170783613393,214,0 +170783613441,214,0 +170783613488,214,0 +170783613536,214,0 +170783613584,214,0 +170783613632,214,0 +170783613682,214,0 +170783613730,214,0 +170783613778,214,0 +170783613826,214,0 +170783613874,214,0 +170783613922,213,0 +170783613970,213,0 +170783614017,213,0 +170783614065,214,0 +170783614113,214,0 +170783614161,214,0 +170783614209,214,0 +170783614257,214,0 +170783614305,214,0 +170783614353,214,0 +170783614402,214,0 +170783614450,214,0 +170783614498,214,0 +170783614548,214,0 +170783614596,214,0 +170783614645,214,0 +170783614693,214,0 +170783614741,214,0 +170783614789,214,0 +170783614837,213,0 +170783614885,213,0 +170783614933,213,0 +170783614980,213,0 +170783615028,213,0 +170783615076,213,0 +170783615126,213,0 +170783615175,214,0 +170783615225,213,0 +170783615273,214,0 +170783615322,214,0 +170783615370,214,0 +170783615418,214,0 +170783615468,214,0 +170783615517,214,0 +170783615567,214,0 +170783615615,214,0 +170783615664,214,0 +170783615714,213,0 +170783615762,213,0 +170783615811,213,0 +170783615859,213,0 +170783615907,213,0 +170783615956,213,0 +170783616006,213,0 +170783616055,213,0 +170783616103,213,0 +170783616153,213,0 +170783616201,213,0 +170783616250,214,0 +170783616300,214,0 +170783616349,214,0 +170783616397,214,0 +170783616445,214,0 +170783616493,214,0 +170783616541,214,0 +170783616588,214,0 +170783616636,213,0 +170783616686,213,0 +170783616734,213,0 +170783616782,213,0 +170783616829,213,0 +170783616877,213,0 +170783616925,213,0 +170783616973,213,0 +170783617021,213,0 +170783617069,213,0 +170783617116,213,0 +170783617164,213,0 +170783617212,214,0 +170783617260,214,0 +170783617308,214,0 +170783617356,214,0 +170783617404,214,0 +170783617452,214,0 +170783617500,214,0 +170783617549,214,0 +170783617597,213,0 +170783617645,213,0 +170783617693,213,0 +170783617741,213,0 +170783617791,213,0 +170783617840,213,0 +170783617890,213,0 +170783617938,213,0 +170783617987,213,0 +170783618037,213,0 +170783618084,213,0 +170783618132,213,0 +170783618180,214,0 +170783618228,214,0 +170783618276,214,0 +170783618326,214,0 +170783618373,214,0 +170783618421,214,0 +170783618469,213,0 +170783618517,213,0 +170783618567,213,0 +170783618616,213,0 +170783618664,213,0 +170783618712,213,0 +170783618761,213,0 +170783618809,213,0 +170783618859,214,0 +170783618908,213,0 +170783618958,213,0 +170783619006,214,0 +170783619054,214,0 +170783619103,214,0 +170783619151,214,0 +170783619201,214,0 +170783619250,214,0 +170783619298,214,0 +170783619346,214,0 +170783619394,213,0 +170783619442,213,0 +170783619490,213,0 +170783619537,213,0 +170783619585,213,0 +170783619633,213,0 +170783619683,213,0 +170783619731,213,0 +170783619779,213,0 +170783619827,213,0 +170783619875,214,0 +170783619923,214,0 +170783619970,214,0 +170783620018,214,0 +170783620066,214,0 +170783620116,214,0 +170783620164,214,0 +170783620212,214,0 +170783620260,214,0 +170783620309,214,0 +170783620358,213,0 +170783620406,213,0 +170783620454,213,0 +170783620502,213,0 +170783620552,213,0 +170783620601,213,0 +170783620649,213,0 +170783620697,213,0 +170783620747,213,0 +170783620794,214,0 +170783620844,214,0 +170783620893,214,0 +170783620941,214,0 +170783620989,214,0 +170783621039,214,0 +170783621088,214,0 +170783621138,214,0 +170783621185,214,0 +170783621235,214,0 +170783621283,213,0 +170783621331,213,0 +170783621379,213,0 +170783621426,213,0 +170783621476,213,0 +170783621524,213,0 +170783621572,214,0 +170783621620,214,0 +170783621669,214,0 +170783621719,214,0 +170783621768,214,0 +170783621818,214,0 +170783621866,214,0 +170783621914,214,0 +170783621962,214,0 +170783622011,214,0 +170783622061,214,0 +170783622111,214,0 +170783622158,213,0 +170783622206,213,0 +170783622254,213,0 +170783622304,213,0 +170783622353,213,0 +170783622402,214,0 +170783622450,213,0 +170783622498,213,0 +170783622548,213,0 +170783622596,214,0 +170783622644,214,0 +170783622691,214,0 +170783622741,214,0 +170783622789,214,0 +170783622837,214,0 +170783622884,214,0 +170783622932,214,0 +170783622980,214,0 +170783623028,214,0 +170783623076,213,0 +170783623125,213,0 +170783623175,213,0 +170783623225,213,0 +170783623274,213,0 +170783623324,213,0 +170783623373,213,0 +170783623421,213,0 +170783623469,214,0 +170783623517,214,0 +170783623567,214,0 +170783623616,214,0 +170783623664,214,0 +170783623712,214,0 +170783623761,214,0 +170783623811,214,0 +170783623860,214,0 +170783623910,214,0 +170783623958,214,0 +170783624006,213,0 +170783624054,213,0 +170783624103,213,0 +170783624151,213,0 +170783624199,213,0 +170783624247,213,0 +170783624296,213,0 +170783624346,213,0 +170783624393,213,0 +170783624441,213,0 +170783624489,213,0 +170783624537,213,0 +170783624585,214,0 +170783624633,214,0 +170783624681,214,0 +170783624729,214,0 +170783624778,214,0 +170783624828,214,0 +170783624876,214,0 +170783624924,213,0 +170783624972,213,0 +170783625020,213,0 +170783625067,213,0 +170783625115,213,0 +170783625165,213,0 +170783625214,213,0 +170783625262,213,0 +170783625310,213,0 +170783625358,213,0 +170783625406,213,0 +170783625455,213,0 +170783625505,213,0 +170783625553,213,0 +170783625602,213,0 +170783625652,213,0 +170783625699,214,0 +170783625747,214,0 +170783625797,214,0 +170783625845,213,0 +170783625893,213,0 +170783625942,213,0 +170783625990,213,0 +170783626039,213,0 +170783626089,213,0 +170783626137,213,0 +170783626186,213,0 +170783626234,213,0 +170783626282,213,0 +170783626331,213,0 +170783626381,214,0 +170783626429,213,0 +170783626478,213,0 +170783626528,214,0 +170783626576,214,0 +170783626624,214,0 +170783626672,214,0 +170783626720,214,0 +170783626767,213,0 +170783626815,213,0 +170783626863,213,0 +170783626911,213,0 +170783626961,213,0 +170783627009,213,0 +170783627057,213,0 +170783627105,213,0 +170783627154,213,0 +170783627204,213,0 +170783627253,213,0 +170783627301,213,0 +170783627349,214,0 +170783627397,214,0 +170783627445,214,0 +170783627494,214,0 +170783627542,214,0 +170783627590,214,0 +170783627638,215,0 +170783627686,213,0 +170783627734,213,0 +170783627781,213,0 +170783627829,213,0 +170783627879,213,0 +170783627927,213,0 +170783627975,213,0 +170783628024,213,0 +170783628072,213,0 +170783628120,213,0 +170783628168,213,0 +170783628217,213,0 +170783628265,213,0 +170783628315,213,0 +170783628364,214,0 +170783628412,214,0 +170783628460,214,0 +170783628508,214,0 +170783628556,214,0 +170783628604,213,0 +170783628652,213,0 +170783628700,213,0 +170783628748,213,0 +170783628796,213,0 +170783628843,213,0 +170783628891,213,0 +170783628939,213,0 +170783628989,213,0 +170783629038,213,0 +170783629086,213,0 +170783629136,213,0 +170783629184,214,0 +170783629233,214,0 +170783629283,214,0 +170783629331,214,0 +170783629380,214,0 +170783629430,214,0 +170783629477,214,0 +170783629525,213,0 +170783629573,213,0 +170783629621,213,0 +170783629669,213,0 +170783629717,213,0 +170783629765,213,0 +170783629813,213,0 +170783629861,213,0 +170783629909,213,0 +170783629957,213,0 +170783630005,213,0 +170783630054,213,0 +170783630104,213,0 +170783630152,214,0 +170783630200,214,0 +170783630248,214,0 +170783630297,213,0 +170783630347,214,0 +170783630394,214,0 +170783630444,213,0 +170783630492,213,0 +170783630540,213,0 +170783630589,213,0 +170783630639,213,0 +170783630688,213,0 +170783630736,213,0 +170783630786,213,0 +170783630834,213,0 +170783630882,213,0 +170783630930,213,0 +170783630977,213,0 +170783631027,213,0 +170783631075,213,0 +170783631124,214,0 +170783631172,214,0 +170783631220,214,0 +170783631268,214,0 +170783631315,214,0 +170783631363,213,0 +170783631411,213,0 +170783631459,213,0 +170783631508,213,0 +170783631557,213,0 +170783631605,213,0 +170783631653,213,0 +170783631701,213,0 +170783631749,213,0 +170783631797,213,0 +170783631844,213,0 +170783631892,213,0 +170783631940,213,0 +170783631988,213,0 +170783632036,213,0 +170783632083,214,0 +170783632131,214,0 +170783632179,214,0 +170783632227,214,0 +170783632276,213,0 +170783632326,213,0 +170783632374,213,0 +170783632422,213,0 +170783632469,213,0 +170783632519,213,0 +170783632567,213,0 +170783632616,213,0 +170783632664,213,0 +170783632712,213,0 +170783632760,213,0 +170783632808,214,0 +170783632856,213,0 +170783632905,214,0 +170783632953,214,0 +170783633001,214,0 +170783633048,214,0 +170783633096,214,0 +170783633144,214,0 +170783633192,214,0 +170783633240,213,0 +170783633288,213,0 +170783633337,213,0 +170783633385,213,0 +170783633433,213,0 +170783633481,213,0 +170783633529,213,0 +170783633577,213,0 +170783633626,213,0 +170783633674,213,0 +170783633722,214,0 +170783633770,214,0 +170783633817,214,0 +170783633865,214,0 +170783633913,214,0 +170783633961,214,0 +170783634009,214,0 +170783634057,214,0 +170783634105,214,0 +170783634152,213,0 +170783634200,213,0 +170783634248,213,0 +170783634296,213,0 +170783634346,213,0 +170783634395,214,0 +170783634443,214,0 +170783634491,214,0 +170783634538,214,0 +170783634586,214,0 +170783634634,214,0 +170783634682,214,0 +170783634731,214,0 +170783634779,214,0 +170783634827,214,0 +170783634875,214,0 +170783634923,214,0 +170783634971,214,0 +170783635019,214,0 +170783635067,214,0 +170783635115,213,0 +170783635163,214,0 +170783635210,214,0 +170783635258,214,0 +170783635308,214,0 +170783635356,214,0 +170783635405,214,0 +170783635453,214,0 +170783635501,214,0 +170783635549,214,0 +170783635598,214,0 +170783635646,214,0 +170783635694,214,0 +170783635742,214,0 +170783635792,214,0 +170783635841,214,0 +170783635891,214,0 +170783635938,214,0 +170783635986,214,0 +170783636034,214,0 +170783636082,214,0 +170783636130,214,0 +170783636180,214,0 +170783636228,214,0 +170783636277,214,0 +170783636327,214,0 +170783636374,214,0 +170783636422,214,0 +170783636470,214,0 +170783636518,214,0 +170783636566,214,0 +170783636614,214,0 +170783636661,214,0 +170783636709,214,0 +170783636757,214,0 +170783636806,214,0 +170783636854,214,0 +170783636902,214,0 +170783636950,213,0 +170783636999,214,0 +170783637047,214,0 +170783637095,214,0 +170783637143,213,0 +170783637191,214,0 +170783637239,214,0 +170783637288,214,0 +170783637337,214,0 +170783637385,214,0 +170783637433,214,0 +170783637481,214,0 +170783637529,214,0 +170783637576,214,0 +170783637624,214,0 +170783637672,214,0 +170783637720,214,0 +170783637768,214,0 +170783637816,214,0 +170783637863,213,0 +170783637911,213,0 +170783637959,213,0 +170783638007,213,0 +170783638055,213,0 +170783638102,213,0 +170783638150,213,0 +170783638200,213,0 +170783638247,214,0 +170783638295,214,0 +170783638345,214,0 +170783638393,214,0 +170783638441,214,0 +170783638489,214,0 +170783638536,214,0 +170783638584,214,0 +170783638632,214,0 +170783638680,214,0 +170783638728,214,0 +170783638775,213,0 +170783638823,213,0 +170783638871,213,0 +170783638919,213,0 +170783638967,213,0 +170783639015,213,0 +170783639062,213,0 +170783639110,213,0 +170783639159,213,0 +170783639207,214,0 +170783639255,214,0 +170783639305,214,0 +170783639354,214,0 +170783639404,214,0 +170783639452,214,0 +170783639500,214,0 +170783639548,214,0 +170783639597,214,0 +170783639645,214,0 +170783639693,213,0 +170783639742,213,0 +170783639790,213,0 +170783639838,213,0 +170783639886,213,0 +170783639936,213,0 +170783639984,213,0 diff --git a/laser_value/0214-01.csv b/laser_value/0214-01.csv new file mode 100644 index 0000000..04dfcd5 --- /dev/null +++ b/laser_value/0214-01.csv @@ -0,0 +1,7410 @@ +timestamp,laser_value,event +170783641465,214,0 +170783641513,214,0 +170783641562,213,0 +170783641610,213,0 +170783641660,213,0 +170783641709,213,0 +170783641757,213,0 +170783641807,213,0 +170783641855,213,0 +170783641903,213,0 +170783641951,213,0 +170783641999,213,0 +170783642048,213,0 +170783642096,213,0 +170783642144,214,0 +170783642194,214,0 +170783642244,214,0 +170783642291,214,0 +170783642339,214,0 +170783642387,214,0 +170783642435,214,0 +170783642483,213,0 +170783642532,213,0 +170783642580,213,0 +170783642628,213,0 +170783642678,213,0 +170783642726,213,0 +170783642774,213,0 +170783642821,213,0 +170783642869,213,0 +170783642917,213,0 +170783642965,213,0 +170783643015,213,0 +170783643063,213,0 +170783643112,213,0 +170783643160,213,0 +170783643210,214,0 +170783643258,213,0 +170783643307,214,0 +170783643355,214,0 +170783643405,213,0 +170783643452,213,0 +170783643502,213,0 +170783643551,213,0 +170783643599,213,0 +170783643647,213,0 +170783643695,213,0 +170783643743,213,0 +170783643791,213,0 +170783643839,213,0 +170783643887,214,0 +170783643936,213,0 +170783643986,214,0 +170783644034,214,0 +170783644082,214,0 +170783644131,214,0 +170783644181,214,0 +170783644229,214,0 +170783644278,214,0 +170783644328,214,0 +170783644377,213,0 +170783644425,213,0 +170783644475,213,0 +170783644523,213,0 +170783644571,213,0 +170783644618,213,0 +170783644668,213,0 +170783644716,213,0 +170783644764,213,0 +170783644813,213,0 +170783644863,213,0 +170783644911,214,0 +170783644959,214,0 +170783645008,214,0 +170783645056,214,0 +170783645104,214,0 +170783645152,214,0 +170783645200,214,0 +170783645249,214,0 +170783645299,213,0 +170783645347,213,0 +170783645395,213,0 +170783645442,213,0 +170783645492,213,0 +170783645540,213,0 +170783645588,213,0 +170783645636,213,0 +170783645685,213,0 +170783645733,213,0 +170783645781,213,0 +170783645829,214,0 +170783645877,214,0 +170783645926,214,0 +170783645974,214,0 +170783646022,214,0 +170783646070,214,0 +170783646120,214,0 +170783646169,214,0 +170783646217,213,0 +170783646265,213,0 +170783646315,212,0 +170783646364,213,0 +170783646414,213,0 +170783646462,213,0 +170783646509,213,0 +170783646557,213,0 +170783646605,213,0 +170783646653,213,0 +170783646703,213,0 +170783646751,213,0 +170783646798,214,0 +170783646848,213,0 +170783646896,214,0 +170783646945,214,0 +170783646993,214,0 +170783647043,214,0 +170783647091,214,0 +170783647139,213,0 +170783647187,213,0 +170783647235,213,0 +170783647284,213,0 +170783647334,213,0 +170783647382,213,0 +170783647430,213,0 +170783647478,213,0 +170783647527,213,0 +170783647577,213,0 +170783647625,214,0 +170783647674,213,0 +170783647722,214,0 +170783647772,214,0 +170783647820,214,0 +170783647868,214,0 +170783647917,214,0 +170783647967,214,0 +170783648015,214,0 +170783648062,213,0 +170783648110,213,0 +170783648160,213,0 +170783648208,213,0 +170783648255,213,0 +170783648303,213,0 +170783648351,213,0 +170783648399,213,0 +170783648447,213,0 +170783648495,213,0 +170783648543,213,0 +170783648593,214,0 +170783648641,214,0 +170783648689,214,0 +170783648736,214,0 +170783648784,214,0 +170783648834,214,0 +170783648882,214,0 +170783648930,214,0 +170783648980,213,0 +170783649027,213,0 +170783649077,213,0 +170783649125,213,0 +170783649173,213,0 +170783649221,213,0 +170783649269,213,0 +170783649317,213,0 +170783649364,213,0 +170783649412,214,0 +170783649462,214,0 +170783649511,214,0 +170783649559,214,0 +170783649609,214,0 +170783649657,214,0 +170783649706,214,0 +170783649754,214,0 +170783649802,214,0 +170783649850,214,0 +170783649898,214,0 +170783649946,213,0 +170783649994,213,0 +170783650042,213,0 +170783650091,213,0 +170783650139,213,0 +170783650187,213,0 +170783650237,213,0 +170783650285,214,0 +170783650334,214,0 +170783650382,214,0 +170783650430,214,0 +170783650478,214,0 +170783650526,214,0 +170783650574,214,0 +170783650623,214,0 +170783650671,214,0 +170783650719,214,0 +170783650767,214,0 +170783650815,214,0 +170783650865,213,0 +170783650914,213,0 +170783650962,213,0 +170783651011,213,0 +170783651059,213,0 +170783651109,214,0 +170783651157,213,0 +170783651206,213,0 +170783651254,214,0 +170783651302,214,0 +170783651350,214,0 +170783651398,214,0 +170783651447,214,0 +170783651495,214,0 +170783651543,214,0 +170783651593,214,0 +170783651641,214,0 +170783651689,214,0 +170783651738,214,0 +170783651788,213,0 +170783651836,213,0 +170783651885,213,0 +170783651933,213,0 +170783651983,213,0 +170783652031,213,0 +170783652078,213,0 +170783652126,213,0 +170783652176,213,0 +170783652225,214,0 +170783652275,213,0 +170783652323,214,0 +170783652372,214,0 +170783652422,214,0 +170783652471,214,0 +170783652519,214,0 +170783652569,214,0 +170783652618,214,0 +170783652666,214,0 +170783652714,213,0 +170783652762,213,0 +170783652810,213,0 +170783652857,213,0 +170783652905,213,0 +170783652955,213,0 +170783653003,213,0 +170783653051,212,0 +170783653099,213,0 +170783653147,213,0 +170783653196,213,0 +170783653246,213,0 +170783653294,213,0 +170783653341,213,0 +170783653389,213,0 +170783653437,213,0 +170783653485,213,0 +170783653533,214,0 +170783653581,214,0 +170783653631,213,0 +170783653680,213,0 +170783653728,213,0 +170783653778,213,0 +170783653825,213,0 +170783653873,213,0 +170783653921,213,0 +170783653971,213,0 +170783654019,214,0 +170783654068,213,0 +170783654116,213,0 +170783654164,214,0 +170783654214,214,0 +170783654261,214,0 +170783654311,214,0 +170783654360,214,0 +170783654408,214,0 +170783654456,214,0 +170783654506,214,0 +170783654554,213,0 +170783654602,213,0 +170783654650,213,0 +170783654699,213,0 +170783654747,213,0 +170783654795,213,0 +170783654843,213,0 +170783654891,213,0 +170783654939,213,0 +170783654987,213,0 +170783655035,213,0 +170783655084,214,0 +170783655134,214,0 +170783655183,214,0 +170783655231,214,0 +170783655281,214,0 +170783655330,214,0 +170783655378,214,0 +170783655426,214,0 +170783655474,213,0 +170783655524,213,0 +170783655573,213,0 +170783655621,213,0 +170783655671,213,0 +170783655720,213,0 +170783655768,213,0 +170783655818,213,0 +170783655866,213,0 +170783655913,213,0 +170783655961,214,0 +170783656011,213,0 +170783656059,214,0 +170783656107,214,0 +170783656156,214,0 +170783656204,214,0 +170783656252,214,0 +170783656300,214,0 +170783656348,214,0 +170783656395,213,0 +170783656445,213,0 +170783656493,213,0 +170783656543,213,0 +170783656591,213,0 +170783656640,213,0 +170783656688,213,0 +170783656736,213,0 +170783656784,214,0 +170783656832,214,0 +170783656879,214,0 +170783656928,214,0 +170783656977,214,0 +170783657025,214,0 +170783657074,214,0 +170783657124,214,0 +170783657173,214,0 +170783657223,214,0 +170783657271,214,0 +170783657320,213,0 +170783657368,213,0 +170783657418,213,0 +170783657466,213,0 +170783657514,213,0 +170783657562,213,0 +170783657610,214,0 +170783657657,214,0 +170783657705,214,0 +170783657753,214,0 +170783657803,214,0 +170783657852,214,0 +170783657900,214,0 +170783657948,214,0 +170783657996,214,0 +170783658044,214,0 +170783658092,214,0 +170783658140,214,0 +170783658188,214,0 +170783658238,214,0 +170783658287,213,0 +170783658335,213,0 +170783658383,213,0 +170783658431,213,0 +170783658479,213,0 +170783658527,213,0 +170783658574,214,0 +170783658622,214,0 +170783658670,213,0 +170783658718,214,0 +170783658766,214,0 +170783658814,214,0 +170783658863,214,0 +170783658913,214,0 +170783658962,214,0 +170783659012,214,0 +170783659061,214,0 +170783659110,214,0 +170783659160,214,0 +170783659209,213,0 +170783659259,213,0 +170783659307,213,0 +170783659355,213,0 +170783659402,213,0 +170783659450,213,0 +170783659498,213,0 +170783659546,213,0 +170783659594,213,0 +170783659643,213,0 +170783659691,213,0 +170783659739,213,0 +170783659789,213,0 +170783659836,213,0 +170783659886,213,0 +170783659935,214,0 +170783659985,214,0 +170783660034,214,0 +170783660082,214,0 +170783660132,213,0 +170783660181,213,0 +170783660231,213,0 +170783660280,213,0 +170783660330,213,0 +170783660378,213,0 +170783660427,213,0 +170783660477,213,0 +170783660525,213,0 +170783660573,213,0 +170783660622,213,0 +170783660670,213,0 +170783660720,214,0 +170783660768,214,0 +170783660815,214,0 +170783660863,214,0 +170783660913,214,0 +170783660961,214,0 +170783661009,214,0 +170783661058,213,0 +170783661106,213,0 +170783661154,213,0 +170783661202,213,0 +170783661250,213,0 +170783661298,213,0 +170783661346,213,0 +170783661393,213,0 +170783661441,213,0 +170783661491,213,0 +170783661539,214,0 +170783661586,214,0 +170783661634,214,0 +170783661682,214,0 +170783661732,214,0 +170783661779,214,0 +170783661827,214,0 +170783661875,214,0 +170783661923,214,0 +170783661971,213,0 +170783662019,213,0 +170783662069,213,0 +170783662117,213,0 +170783662165,213,0 +170783662213,213,0 +170783662260,213,0 +170783662308,213,0 +170783662356,213,0 +170783662404,214,0 +170783662454,214,0 +170783662503,214,0 +170783662553,214,0 +170783662601,214,0 +170783662650,214,0 +170783662698,214,0 +170783662746,214,0 +170783662796,214,0 +170783662843,214,0 +170783662893,213,0 +170783662941,213,0 +170783662990,213,0 +170783663038,213,0 +170783663086,213,0 +170783663134,214,0 +170783663184,213,0 +170783663233,213,0 +170783663283,214,0 +170783663331,213,0 +170783663378,213,0 +170783663428,214,0 +170783663476,214,0 +170783663525,214,0 +170783663573,214,0 +170783663623,214,0 +170783663671,214,0 +170783663719,214,0 +170783663768,214,0 +170783663816,213,0 +170783663864,213,0 +170783663911,213,0 +170783663959,213,0 +170783664009,213,0 +170783664057,213,0 +170783664105,213,0 +170783664153,213,0 +170783664201,214,0 +170783664248,213,0 +170783664298,214,0 +170783664346,214,0 +170783664394,214,0 +170783664441,214,0 +170783664489,214,0 +170783664537,214,0 +170783664585,214,0 +170783664633,214,0 +170783664681,214,0 +170783664730,214,0 +170783664778,213,0 +170783664826,213,0 +170783664875,213,0 +170783664925,213,0 +170783664973,213,0 +170783665022,213,0 +170783665070,213,0 +170783665118,214,0 +170783665166,213,0 +170783665214,214,0 +170783665262,214,0 +170783665310,214,0 +170783665357,214,0 +170783665405,214,0 +170783665453,214,0 +170783665503,214,0 +170783665552,214,0 +170783665600,214,0 +170783665648,214,0 +170783665696,213,0 +170783665746,213,0 +170783665793,213,0 +170783665841,213,0 +170783665889,213,0 +170783665937,213,0 +170783665985,214,0 +170783666033,213,0 +170783666082,214,0 +170783666130,214,0 +170783666178,214,0 +170783666226,214,0 +170783666275,214,0 +170783666323,214,0 +170783666371,214,0 +170783666419,214,0 +170783666468,214,0 +170783666516,214,0 +170783666564,214,0 +170783666612,213,0 +170783666660,213,0 +170783666708,213,0 +170783666755,213,0 +170783666803,213,0 +170783666851,213,0 +170783666899,213,0 +170783666947,213,0 +170783666995,213,0 +170783667043,214,0 +170783667091,214,0 +170783667139,214,0 +170783667186,214,0 +170783667236,214,0 +170783667285,214,0 +170783667333,214,0 +170783667383,214,0 +170783667431,214,0 +170783667479,214,0 +170783667528,213,0 +170783667576,213,0 +170783667626,213,0 +170783667674,213,0 +170783667723,213,0 +170783667773,213,0 +170783667821,213,0 +170783667870,213,0 +170783667918,214,0 +170783667966,213,0 +170783668014,213,0 +170783668062,214,0 +170783668110,214,0 +170783668158,214,0 +170783668206,214,0 +170783668254,214,0 +170783668302,214,0 +170783668350,214,0 +170783668398,214,0 +170783668446,214,0 +170783668493,213,0 +170783668541,213,0 +170783668589,213,0 +170783668637,213,0 +170783668687,213,0 +170783668737,213,0 +170783668786,213,0 +170783668836,213,0 +170783668884,213,0 +170783668932,213,0 +170783668980,213,0 +170783669029,214,0 +170783669078,214,0 +170783669126,214,0 +170783669174,214,0 +170783669222,214,0 +170783669270,214,0 +170783669318,214,0 +170783669368,214,0 +170783669417,213,0 +170783669465,213,0 +170783669513,213,0 +170783669562,213,0 +170783669610,213,0 +170783669660,213,0 +170783669708,213,0 +170783669756,213,0 +170783669804,213,0 +170783669852,213,0 +170783669901,213,0 +170783669951,214,0 +170783670000,214,0 +170783670048,214,0 +170783670096,214,0 +170783670144,214,0 +170783670192,214,0 +170783670241,214,0 +170783670289,214,0 +170783670337,213,0 +170783670387,213,0 +170783670436,213,0 +170783670484,213,0 +170783670534,213,0 +170783670583,213,0 +170783670631,213,0 +170783670679,213,0 +170783670727,213,0 +170783670777,213,0 +170783670825,213,0 +170783670874,214,0 +170783670922,214,0 +170783670970,214,0 +170783671018,214,0 +170783671066,214,0 +170783671114,214,0 +170783671162,214,0 +170783671210,214,0 +170783671259,213,0 +170783671307,213,0 +170783671355,213,0 +170783671403,213,0 +170783671451,213,0 +170783671501,213,0 +170783671549,213,0 +170783671598,213,0 +170783671646,213,0 +170783671696,213,0 +170783671744,213,0 +170783671793,214,0 +170783671843,214,0 +170783671891,214,0 +170783671939,214,0 +170783671987,214,0 +170783672035,214,0 +170783672084,214,0 +170783672134,214,0 +170783672182,213,0 +170783672231,213,0 +170783672279,213,0 +170783672327,213,0 +170783672375,213,0 +170783672424,213,0 +170783672472,213,0 +170783672520,213,0 +170783672568,213,0 +170783672616,213,0 +170783672663,213,0 +170783672711,213,0 +170783672759,214,0 +170783672807,214,0 +170783672855,214,0 +170783672903,214,0 +170783672951,214,0 +170783672999,214,0 +170783673048,214,0 +170783673098,213,0 +170783673147,213,0 +170783673195,213,0 +170783673245,213,0 +170783673294,213,0 +170783673344,213,0 +170783673392,213,0 +170783673440,213,0 +170783673488,213,0 +170783673536,213,0 +170783673585,213,0 +170783673633,213,0 +170783673681,214,0 +170783673729,214,0 +170783673777,213,0 +170783673824,214,0 +170783673872,214,0 +170783673922,214,0 +170783673970,214,0 +170783674018,214,0 +170783674066,213,0 +170783674114,213,0 +170783674163,213,0 +170783674213,213,0 +170783674261,213,0 +170783674310,213,0 +170783674358,213,0 +170783674408,213,0 +170783674456,213,0 +170783674504,213,0 +170783674553,213,0 +170783674602,213,0 +170783674650,213,0 +170783674700,213,0 +170783674748,213,0 +170783674797,213,0 +170783674845,213,0 +170783674893,213,0 +170783674941,214,0 +170783674989,214,0 +170783675039,214,0 +170783675087,214,0 +170783675136,214,0 +170783675186,214,0 +170783675234,214,0 +170783675283,214,0 +170783675333,214,0 +170783675381,214,0 +170783675429,213,0 +170783675477,213,0 +170783675526,213,0 +170783675574,213,0 +170783675622,213,0 +170783675670,213,0 +170783675718,213,0 +170783675767,213,0 +170783675815,213,0 +170783675863,213,0 +170783675911,213,0 +170783675959,213,0 +170783676007,214,0 +170783676057,213,0 +170783676105,214,0 +170783676153,214,0 +170783676201,214,0 +170783676250,214,0 +170783676300,214,0 +170783676347,213,0 +170783676395,213,0 +170783676443,213,0 +170783676491,213,0 +170783676539,213,0 +170783676587,213,0 +170783676635,213,0 +170783676683,213,0 +170783676731,213,0 +170783676780,213,0 +170783676830,213,0 +170783676879,214,0 +170783676927,213,0 +170783676975,214,0 +170783677025,214,0 +170783677073,214,0 +170783677122,214,0 +170783677172,214,0 +170783677221,214,0 +170783677271,214,0 +170783677320,213,0 +170783677368,213,0 +170783677418,213,0 +170783677467,213,0 +170783677515,213,0 +170783677563,213,0 +170783677613,213,0 +170783677662,213,0 +170783677710,214,0 +170783677760,213,0 +170783677808,214,0 +170783677856,214,0 +170783677905,214,0 +170783677953,214,0 +170783678001,214,0 +170783678049,214,0 +170783678097,214,0 +170783678146,214,0 +170783678194,214,0 +170783678244,213,0 +170783678292,213,0 +170783678340,213,0 +170783678388,213,0 +170783678437,213,0 +170783678487,214,0 +170783678535,213,0 +170783678583,214,0 +170783678630,214,0 +170783678678,214,0 +170783678728,214,0 +170783678775,214,0 +170783678823,214,0 +170783678871,215,0 +170783678919,214,0 +170783678967,214,0 +170783679015,214,0 +170783679063,214,0 +170783679111,214,0 +170783679159,213,0 +170783679207,213,0 +170783679254,213,0 +170783679302,213,0 +170783679350,213,0 +170783679398,214,0 +170783679446,214,0 +170783679496,214,0 +170783679544,214,0 +170783679591,214,0 +170783679641,214,0 +170783679690,214,0 +170783679738,214,0 +170783679786,214,0 +170783679834,214,0 +170783679884,214,0 +170783679932,214,0 +170783679980,214,0 +170783680028,214,0 +170783680076,213,0 +170783680124,213,0 +170783680171,213,0 +170783680219,213,0 +170783680267,213,0 +170783680317,213,0 +170783680365,214,0 +170783680413,214,0 +170783680460,214,0 +170783680508,214,0 +170783680556,214,0 +170783680604,214,0 +170783680652,214,0 +170783680700,214,0 +170783680750,214,0 +170783680798,214,0 +170783680845,214,0 +170783680893,214,0 +170783680941,214,0 +170783680989,214,0 +170783681037,213,0 +170783681087,213,0 +170783681135,213,0 +170783681183,213,0 +170783681231,213,0 +170783681278,213,0 +170783681326,213,0 +170783681374,213,0 +170783681422,213,0 +170783681470,214,0 +170783681518,213,0 +170783681566,214,0 +170783681613,214,0 +170783681661,214,0 +170783681709,214,0 +170783681757,214,0 +170783681805,214,0 +170783681853,214,0 +170783681901,214,0 +170783681949,213,0 +170783681997,213,0 +170783682044,213,0 +170783682092,213,0 +170783682142,213,0 +170783682192,213,0 +170783682241,213,0 +170783682290,213,0 +170783682340,213,0 +170783682388,213,0 +170783682437,214,0 +170783682485,213,0 +170783682533,214,0 +170783682581,214,0 +170783682631,214,0 +170783682680,214,0 +170783682728,214,0 +170783682776,214,0 +170783682824,214,0 +170783682872,213,0 +170783682920,213,0 +170783682967,213,0 +170783683015,213,0 +170783683063,213,0 +170783683111,213,0 +170783683159,213,0 +170783683207,213,0 +170783683255,213,0 +170783683303,213,0 +170783683350,213,0 +170783683398,213,0 +170783683446,214,0 +170783683496,213,0 +170783683543,214,0 +170783683591,214,0 +170783683639,214,0 +170783683687,214,0 +170783683735,214,0 +170783683783,213,0 +170783683830,213,0 +170783683878,213,0 +170783683926,213,0 +170783683974,213,0 +170783684022,213,0 +170783684069,213,0 +170783684117,213,0 +170783684165,213,0 +170783684213,213,0 +170783684261,213,0 +170783684309,213,0 +170783684358,214,0 +170783684406,214,0 +170783684455,214,0 +170783684503,214,0 +170783684551,214,0 +170783684599,214,0 +170783684649,214,0 +170783684697,214,0 +170783684746,213,0 +170783684794,213,0 +170783684842,213,0 +170783684890,213,0 +170783684938,213,0 +170783684986,213,0 +170783685034,213,0 +170783685082,213,0 +170783685130,213,0 +170783685178,214,0 +170783685227,213,0 +170783685277,214,0 +170783685325,214,0 +170783685373,214,0 +170783685421,214,0 +170783685468,214,0 +170783685516,214,0 +170783685566,214,0 +170783685614,214,0 +170783685662,213,0 +170783685711,213,0 +170783685761,213,0 +170783685810,213,0 +170783685860,213,0 +170783685910,213,0 +170783685959,213,0 +170783686009,213,0 +170783686057,213,0 +170783686106,213,0 +170783686154,214,0 +170783686204,214,0 +170783686252,214,0 +170783686301,214,0 +170783686349,214,0 +170783686397,214,0 +170783686445,214,0 +170783686494,214,0 +170783686544,214,0 +170783686592,213,0 +170783686641,213,0 +170783686689,213,0 +170783686739,213,0 +170783686787,213,0 +170783686834,213,0 +170783686882,213,0 +170783686932,213,0 +170783686980,214,0 +170783687029,213,0 +170783687077,213,0 +170783687125,214,0 +170783687173,214,0 +170783687222,214,0 +170783687270,214,0 +170783687320,214,0 +170783687368,214,0 +170783687416,214,0 +170783687463,214,0 +170783687511,213,0 +170783687559,213,0 +170783687609,213,0 +170783687657,213,0 +170783687704,213,0 +170783687752,213,0 +170783687800,213,0 +170783687848,213,0 +170783687896,213,0 +170783687944,213,0 +170783687992,214,0 +170783688040,214,0 +170783688087,214,0 +170783688135,214,0 +170783688183,214,0 +170783688231,214,0 +170783688279,214,0 +170783688327,214,0 +170783688375,214,0 +170783688423,214,0 +170783688471,213,0 +170783688519,213,0 +170783688567,213,0 +170783688615,213,0 +170783688664,213,0 +170783688712,213,0 +170783688760,213,0 +170783688809,213,0 +170783688857,213,0 +170783688905,213,0 +170783688955,213,0 +170783689002,214,0 +170783689050,214,0 +170783689098,214,0 +170783689146,214,0 +170783689196,214,0 +170783689245,214,0 +170783689293,214,0 +170783689341,214,0 +170783689391,213,0 +170783689438,213,0 +170783689488,213,0 +170783689538,213,0 +170783689585,213,0 +170783689633,213,0 +170783689681,213,0 +170783689731,213,0 +170783689779,213,0 +170783689827,213,0 +170783689875,213,0 +170783689924,214,0 +170783689974,214,0 +170783690022,214,0 +170783690070,214,0 +170783690119,214,0 +170783690169,214,0 +170783690218,214,0 +170783690266,214,0 +170783690314,213,0 +170783690362,213,0 +170783690410,213,0 +170783690458,213,0 +170783690507,213,0 +170783690555,213,0 +170783690603,213,0 +170783690651,213,0 +170783690699,213,0 +170783690747,213,0 +170783690794,213,0 +170783690842,214,0 +170783690890,214,0 +170783690938,214,0 +170783690987,214,0 +170783691035,214,0 +170783691085,214,0 +170783691134,214,0 +170783691184,214,0 +170783691233,213,0 +170783691283,213,0 +170783691331,213,0 +170783691379,213,0 +170783691427,213,0 +170783691475,213,0 +170783691523,213,0 +170783691571,213,0 +170783691618,213,0 +170783691666,213,0 +170783691714,213,0 +170783691762,213,0 +170783691812,213,0 +170783691859,214,0 +170783691907,214,0 +170783691955,214,0 +170783692005,214,0 +170783692054,214,0 +170783692104,214,0 +170783692152,213,0 +170783692200,213,0 +170783692248,213,0 +170783692296,213,0 +170783692344,213,0 +170783692393,213,0 +170783692441,213,0 +170783692489,213,0 +170783692537,213,0 +170783692585,213,0 +170783692633,213,0 +170783692681,213,0 +170783692729,214,0 +170783692778,214,0 +170783692826,214,0 +170783692874,214,0 +170783692922,214,0 +170783692971,214,0 +170783693021,214,0 +170783693069,214,0 +170783693117,213,0 +170783693166,213,0 +170783693214,213,0 +170783693264,213,0 +170783693311,213,0 +170783693359,213,0 +170783693407,213,0 +170783693455,213,0 +170783693503,214,0 +170783693551,214,0 +170783693601,214,0 +170783693650,214,0 +170783693698,214,0 +170783693746,214,0 +170783693795,214,0 +170783693845,214,0 +170783693894,214,0 +170783693944,214,0 +170783693992,214,0 +170783694041,213,0 +170783694091,213,0 +170783694140,213,0 +170783694188,213,0 +170783694236,213,0 +170783694284,213,0 +170783694333,213,0 +170783694381,213,0 +170783694429,214,0 +170783694479,214,0 +170783694527,214,0 +170783694574,214,0 +170783694622,214,0 +170783694672,214,0 +170783694721,214,0 +170783694769,214,0 +170783694819,214,0 +170783694869,214,0 +170783694918,214,0 +170783694967,213,0 +170783695015,213,0 +170783695063,213,0 +170783695111,213,0 +170783695159,213,0 +170783695207,214,0 +170783695257,213,0 +170783695305,213,0 +170783695353,213,0 +170783695401,213,0 +170783695448,214,0 +170783695498,214,0 +170783695546,214,0 +170783695594,214,0 +170783695643,214,0 +170783695691,214,0 +170783695739,214,0 +170783695787,214,0 +170783695835,214,0 +170783695883,213,0 +170783695933,213,0 +170783695981,213,0 +170783696028,213,0 +170783696076,213,0 +170783696124,213,0 +170783696172,213,0 +170783696222,213,0 +170783696271,213,0 +170783696319,213,0 +170783696367,214,0 +170783696415,214,0 +170783696463,214,0 +170783696513,214,0 +170783696561,214,0 +170783696610,214,0 +170783696660,214,0 +170783696708,214,0 +170783696757,214,0 +170783696805,213,0 +170783696855,213,0 +170783696904,213,0 +170783696952,213,0 +170783697002,213,0 +170783697051,213,0 +170783697099,213,0 +170783697147,213,0 +170783697196,213,0 +170783697244,213,0 +170783697292,214,0 +170783697340,214,0 +170783697388,214,0 +170783697436,214,0 +170783697484,214,0 +170783697533,214,0 +170783697581,214,0 +170783697629,214,0 +170783697677,214,0 +170783697725,214,0 +170783697775,213,0 +170783697822,213,0 +170783697870,213,0 +170783697918,213,0 +170783697968,213,0 +170783698016,213,0 +170783698064,213,0 +170783698113,213,0 +170783698161,213,0 +170783698209,213,0 +170783698257,213,0 +170783698305,214,0 +170783698353,213,0 +170783698403,214,0 +170783698452,214,0 +170783698500,214,0 +170783698548,214,0 +170783698596,214,0 +170783698646,214,0 +170783698694,213,0 +170783698743,213,0 +170783698791,213,0 +170783698841,213,0 +170783698890,213,0 +170783698938,213,0 +170783698987,213,0 +170783699037,213,0 +170783699085,213,0 +170783699134,213,0 +170783699184,214,0 +170783699232,214,0 +170783699280,214,0 +170783699327,214,0 +170783699375,214,0 +170783699423,214,0 +170783699471,214,0 +170783699520,214,0 +170783699570,214,0 +170783699618,213,0 +170783699665,213,0 +170783699713,213,0 +170783699761,213,0 +170783699809,213,0 +170783699857,213,0 +170783699905,213,0 +170783699952,213,0 +170783700000,213,0 +170783700050,213,0 +170783700097,214,0 +170783700147,213,0 +170783700195,213,0 +170783700244,214,0 +170783700292,214,0 +170783700340,214,0 +170783700390,214,0 +170783700437,214,0 +170783700487,214,0 +170783700535,213,0 +170783700583,213,0 +170783700631,213,0 +170783700680,213,0 +170783700728,213,0 +170783700778,213,0 +170783700825,213,0 +170783700875,213,0 +170783700923,214,0 +170783700971,214,0 +170783701020,214,0 +170783701070,214,0 +170783701119,214,0 +170783701167,214,0 +170783701215,214,0 +170783701263,214,0 +170783701313,214,0 +170783701361,214,0 +170783701409,214,0 +170783701458,214,0 +170783701506,213,0 +170783701556,213,0 +170783701603,213,0 +170783701651,213,0 +170783701699,213,0 +170783701749,214,0 +170783701798,214,0 +170783701848,213,0 +170783701896,214,0 +170783701944,214,0 +170783701992,214,0 +170783702040,214,0 +170783702089,214,0 +170783702139,214,0 +170783702187,214,0 +170783702234,214,0 +170783702282,214,0 +170783702332,214,0 +170783702380,214,0 +170783702429,213,0 +170783702477,213,0 +170783702525,213,0 +170783702574,213,0 +170783702622,213,0 +170783702670,213,0 +170783702718,213,0 +170783702766,214,0 +170783702814,214,0 +170783702861,214,0 +170783702911,214,0 +170783702959,214,0 +170783703007,214,0 +170783703056,214,0 +170783703104,214,0 +170783703153,214,0 +170783703201,214,0 +170783703251,214,0 +170783703300,214,0 +170783703348,213,0 +170783703396,213,0 +170783703444,213,0 +170783703492,213,0 +170783703540,213,0 +170783703590,213,0 +170783703638,213,0 +170783703685,213,0 +170783703735,213,0 +170783703783,213,0 +170783703830,214,0 +170783703878,214,0 +170783703926,213,0 +170783703974,214,0 +170783704022,214,0 +170783704070,214,0 +170783704117,214,0 +170783704165,214,0 +170783704213,214,0 +170783704261,213,0 +170783704309,213,0 +170783704358,213,0 +170783704408,213,0 +170783704457,213,0 +170783704507,213,0 +170783704555,213,0 +170783704603,213,0 +170783704650,214,0 +170783704698,213,0 +170783704747,213,0 +170783704795,214,0 +170783704843,213,0 +170783704891,214,0 +170783704939,214,0 +170783704987,214,0 +170783705035,214,0 +170783705082,214,0 +170783705130,214,0 +170783705178,214,0 +170783705226,213,0 +170783705274,213,0 +170783705321,213,0 +170783705371,213,0 +170783705420,213,0 +170783705468,213,0 +170783705516,213,0 +170783705566,213,0 +170783705615,213,0 +170783705663,213,0 +170783705711,213,0 +170783705759,214,0 +170783705807,214,0 +170783705855,214,0 +170783705902,214,0 +170783705950,214,0 +170783705998,214,0 +170783706046,214,0 +170783706095,214,0 +170783706143,213,0 +170783706191,213,0 +170783706239,213,0 +170783706287,213,0 +170783706334,213,0 +170783706382,213,0 +170783706432,213,0 +170783706479,213,0 +170783706527,213,0 +170783706575,213,0 +170783706623,213,0 +170783706671,213,0 +170783706719,214,0 +170783706767,214,0 +170783706814,214,0 +170783706862,214,0 +170783706910,214,0 +170783706958,214,0 +170783707007,214,0 +170783707055,213,0 +170783707103,213,0 +170783707152,213,0 +170783707200,213,0 +170783707249,213,0 +170783707297,213,0 +170783707345,213,0 +170783707393,213,0 +170783707441,213,0 +170783707489,213,0 +170783707536,213,0 +170783707584,213,0 +170783707632,214,0 +170783707680,214,0 +170783707728,214,0 +170783707775,214,0 +170783707823,214,0 +170783707871,214,0 +170783707919,214,0 +170783707967,214,0 +170783708016,213,0 +170783708064,213,0 +170783708113,213,0 +170783708161,213,0 +170783708209,213,0 +170783708257,213,0 +170783708305,213,0 +170783708353,213,0 +170783708401,213,0 +170783708448,214,0 +170783708496,213,0 +170783708544,214,0 +170783708592,214,0 +170783708640,214,0 +170783708688,214,0 +170783708735,214,0 +170783708783,214,0 +170783708831,214,0 +170783708879,214,0 +170783708926,213,0 +170783708974,213,0 +170783709022,213,0 +170783709070,213,0 +170783709119,213,0 +170783709168,213,0 +170783709216,213,0 +170783709264,213,0 +170783709312,213,0 +170783709360,214,0 +170783709408,214,0 +170783709455,214,0 +170783709503,214,0 +170783709551,214,0 +170783709599,214,0 +170783709647,214,0 +170783709696,214,0 +170783709744,214,0 +170783709792,214,0 +170783709840,213,0 +170783709887,213,0 +170783709935,213,0 +170783709983,213,0 +170783710031,213,0 +170783710079,213,0 +170783710127,213,0 +170783710176,213,0 +170783710224,214,0 +170783710272,213,0 +170783710320,213,0 +170783710369,214,0 +170783710419,214,0 +170783710467,214,0 +170783710516,214,0 +170783710564,214,0 +170783710612,214,0 +170783710660,214,0 +170783710708,214,0 +170783710757,214,0 +170783710807,213,0 +170783710856,213,0 +170783710905,213,0 +170783710953,213,0 +170783711001,213,0 +170783711049,213,0 +170783711097,213,0 +170783711145,213,0 +170783711193,213,0 +170783711242,213,0 +170783711292,214,0 +170783711341,214,0 +170783711391,214,0 +170783711439,214,0 +170783711487,214,0 +170783711534,214,0 +170783711582,214,0 +170783711630,214,0 +170783711678,214,0 +170783711726,213,0 +170783711774,213,0 +170783711822,213,0 +170783711870,213,0 +170783711918,213,0 +170783711966,213,0 +170783712014,213,0 +170783712061,213,0 +170783712109,213,0 +170783712157,213,0 +170783712205,213,0 +170783712253,214,0 +170783712301,214,0 +170783712348,214,0 +170783712398,214,0 +170783712446,214,0 +170783712495,214,0 +170783712543,214,0 +170783712591,214,0 +170783712639,213,0 +170783712687,213,0 +170783712737,213,0 +170783712786,213,0 +170783712836,213,0 +170783712884,213,0 +170783712933,213,0 +170783712981,213,0 +170783713029,213,0 +170783713079,214,0 +170783713126,214,0 +170783713176,215,0 +170783713225,214,0 +170783713275,214,0 +170783713323,214,0 +170783713371,214,0 +170783713418,214,0 +170783713466,214,0 +170783713516,214,0 +170783713564,213,0 +170783713611,213,0 +170783713660,213,0 +170783713707,213,0 +170783713755,213,0 +170783713803,213,0 +170783713853,213,0 +170783713902,213,0 +170783713950,213,0 +170783713998,213,0 +170783714048,213,0 +170783714096,213,0 +170783714144,214,0 +170783714192,214,0 +170783714239,214,0 +170783714287,214,0 +170783714335,214,0 +170783714385,214,0 +170783714433,214,0 +170783714481,214,0 +170783714528,213,0 +170783714578,213,0 +170783714627,213,0 +170783714675,213,0 +170783714725,213,0 +170783714774,213,0 +170783714822,213,0 +170783714870,213,0 +170783714918,213,0 +170783714966,213,0 +170783715014,213,0 +170783715063,214,0 +170783715111,213,0 +170783715159,214,0 +170783715207,214,0 +170783715255,214,0 +170783715302,214,0 +170783715350,214,0 +170783715400,213,0 +170783715449,213,0 +170783715497,213,0 +170783715545,213,0 +170783715594,213,0 +170783715644,213,0 +170783715693,213,0 +170783715741,213,0 +170783715791,213,0 +170783715840,213,0 +170783715890,213,0 +170783715937,214,0 +170783715987,214,0 +170783716035,214,0 +170783716083,214,0 +170783716130,214,0 +170783716180,214,0 +170783716229,214,0 +170783716277,214,0 +170783716325,214,0 +170783716375,213,0 +170783716423,213,0 +170783716472,213,0 +170783716520,213,0 +170783716568,213,0 +170783716616,213,0 +170783716665,213,0 +170783716715,213,0 +170783716763,213,0 +170783716811,213,0 +170783716859,213,0 +170783716908,214,0 +170783716956,214,0 +170783717005,214,0 +170783717053,213,0 +170783717101,214,0 +170783717149,214,0 +170783717199,214,0 +170783717247,214,0 +170783717296,213,0 +170783717344,213,0 +170783717392,213,0 +170783717440,213,0 +170783717488,213,0 +170783717536,213,0 +170783717584,213,0 +170783717633,213,0 +170783717683,213,0 +170783717731,213,0 +170783717779,213,0 +170783717828,213,0 +170783717876,213,0 +170783717926,214,0 +170783717974,213,0 +170783718022,214,0 +170783718071,214,0 +170783718120,214,0 +170783718170,214,0 +170783718218,213,0 +170783718266,213,0 +170783718315,213,0 +170783718363,213,0 +170783718411,213,0 +170783718461,213,0 +170783718509,213,0 +170783718556,213,0 +170783718604,213,0 +170783718654,213,0 +170783718702,214,0 +170783718750,214,0 +170783718798,213,0 +170783718847,214,0 +170783718895,214,0 +170783718945,214,0 +170783718994,214,0 +170783719042,214,0 +170783719090,214,0 +170783719139,213,0 +170783719189,213,0 +170783719237,213,0 +170783719286,213,0 +170783719334,213,0 +170783719382,213,0 +170783719429,213,0 +170783719477,213,0 +170783719525,213,0 +170783719573,213,0 +170783719621,214,0 +170783719670,214,0 +170783719718,214,0 +170783719766,214,0 +170783719814,214,0 +170783719862,214,0 +170783719910,214,0 +170783719957,214,0 +170783720005,214,0 +170783720053,213,0 +170783720101,213,0 +170783720150,213,0 +170783720198,213,0 +170783720246,213,0 +170783720295,213,0 +170783720343,213,0 +170783720391,213,0 +170783720439,213,0 +170783720487,213,0 +170783720535,213,0 +170783720583,214,0 +170783720631,214,0 +170783720679,214,0 +170783720726,214,0 +170783720774,214,0 +170783720824,214,0 +170783720872,214,0 +170783720920,214,0 +170783720968,214,0 +170783721016,213,0 +170783721064,213,0 +170783721112,213,0 +170783721159,213,0 +170783721207,213,0 +170783721255,213,0 +170783721305,213,0 +170783721353,213,0 +170783721401,213,0 +170783721450,213,0 +170783721500,213,0 +170783721548,213,0 +170783721596,214,0 +170783721644,214,0 +170783721692,214,0 +170783721740,214,0 +170783721789,214,0 +170783721839,214,0 +170783721886,214,0 +170783721934,213,0 +170783721982,213,0 +170783722030,213,0 +170783722078,213,0 +170783722126,213,0 +170783722174,213,0 +170783722222,213,0 +170783722270,213,0 +170783722318,213,0 +170783722367,214,0 +170783722415,214,0 +170783722463,214,0 +170783722511,214,0 +170783722559,214,0 +170783722608,214,0 +170783722656,214,0 +170783722704,214,0 +170783722752,214,0 +170783722802,214,0 +170783722851,214,0 +170783722901,213,0 +170783722948,213,0 +170783722996,214,0 +170783723044,214,0 +170783723092,214,0 +170783723142,214,0 +170783723189,214,0 +170783723239,214,0 +170783723287,214,0 +170783723336,214,0 +170783723384,214,0 +170783723433,214,0 +170783723481,214,0 +170783723529,214,0 +170783723578,214,0 +170783723628,214,0 +170783723675,214,0 +170783723723,214,0 +170783723771,214,0 +170783723819,213,0 +170783723867,213,0 +170783723916,213,0 +170783723965,213,0 +170783724015,214,0 +170783724063,214,0 +170783724111,214,0 +170783724159,214,0 +170783724208,214,0 +170783724258,214,0 +170783724306,214,0 +170783724355,214,0 +170783724403,214,0 +170783724451,214,0 +170783724499,214,0 +170783724548,214,0 +170783724596,214,0 +170783724644,214,0 +170783724694,214,0 +170783724742,214,0 +170783724791,213,0 +170783724839,213,0 +170783724887,213,0 +170783724937,214,0 +170783724985,214,0 +170783725033,214,0 +170783725082,214,0 +170783725130,214,0 +170783725178,214,0 +170783725226,214,0 +170783725273,214,0 +170783725321,214,0 +170783725369,214,0 +170783725417,214,0 +170783725465,214,0 +170783725513,214,0 +170783725560,214,0 +170783725608,214,0 +170783725656,213,0 +170783725704,213,0 +170783725752,213,0 +170783725800,213,0 +170783725849,213,0 +170783725897,213,0 +170783725945,213,0 +170783725993,213,0 +170783726042,213,0 +170783726090,214,0 +170783726138,213,0 +170783726186,214,0 +170783726234,214,0 +170783726284,214,0 +170783726332,214,0 +170783726381,214,0 +170783726429,213,0 +170783726478,214,0 +170783726528,214,0 +170783726577,213,0 +170783726627,213,0 +170783726675,213,0 +170783726723,213,0 +170783726772,213,0 +170783726820,213,0 +170783726869,213,0 +170783726917,213,0 +170783726965,213,0 +170783727015,213,0 +170783727064,213,0 +170783727114,213,0 +170783727162,213,0 +170783727210,214,0 +170783727258,214,0 +170783727306,214,0 +170783727355,214,0 +170783727405,214,0 +170783727452,214,0 +170783727500,214,0 +170783727550,213,0 +170783727598,213,0 +170783727646,213,0 +170783727693,213,0 +170783727741,213,0 +170783727789,213,0 +170783727837,213,0 +170783727885,213,0 +170783727933,213,0 +170783727981,213,0 +170783728030,213,0 +170783728080,213,0 +170783728129,213,0 +170783728179,214,0 +170783728227,214,0 +170783728276,214,0 +170783728326,214,0 +170783728374,214,0 +170783728422,213,0 +170783728470,213,0 +170783728518,213,0 +170783728567,213,0 +170783728615,213,0 +170783728663,213,0 +170783728711,213,0 +170783728759,213,0 +170783728807,213,0 +170783728855,213,0 +170783728904,214,0 +170783728954,213,0 +170783729002,214,0 +170783729049,214,0 +170783729097,214,0 +170783729145,214,0 +170783729193,214,0 +170783729241,214,0 +170783729290,214,0 +170783729338,214,0 +170783729386,213,0 +170783729434,213,0 +170783729481,213,0 +170783729529,213,0 +170783729577,213,0 +170783729625,213,0 +170783729675,213,0 +170783729724,213,0 +170783729772,214,0 +170783729820,213,0 +170783729868,214,0 +170783729915,214,0 +170783729963,214,0 +170783730011,214,0 +170783730059,214,0 +170783730107,214,0 +170783730155,214,0 +170783730202,214,0 +170783730250,214,0 +170783730298,213,0 +170783730346,213,0 +170783730394,213,0 +170783730442,213,0 +170783730490,213,0 +170783730537,213,0 +170783730585,213,0 +170783730633,213,0 +170783730681,213,0 +170783730729,213,0 +170783730777,213,0 +170783730825,214,0 +170783730873,213,0 +170783730922,214,0 +170783730970,214,0 +170783731020,214,0 +170783731069,214,0 +170783731117,214,0 +170783731167,214,0 +170783731215,214,0 +170783731262,213,0 +170783731310,213,0 +170783731358,213,0 +170783731406,213,0 +170783731456,213,0 +170783731505,213,0 +170783731553,213,0 +170783731601,213,0 +170783731651,213,0 +170783731700,213,0 +170783731748,213,0 +170783731796,214,0 +170783731844,214,0 +170783731893,214,0 +170783731941,214,0 +170783731989,214,0 +170783732037,214,0 +170783732087,214,0 +170783732134,214,0 +170783732184,213,0 +170783732232,213,0 +170783732281,213,0 +170783732329,213,0 +170783732379,213,0 +170783732427,213,0 +170783732475,213,0 +170783732523,213,0 +170783732571,213,0 +170783732620,213,0 +170783732668,213,0 +170783732716,213,0 +170783732764,213,0 +170783732812,214,0 +170783732860,214,0 +170783732908,214,0 +170783732956,214,0 +170783733003,214,0 +170783733051,214,0 +170783733099,213,0 +170783733149,213,0 +170783733198,213,0 +170783733248,213,0 +170783733297,213,0 +170783733345,213,0 +170783733393,213,0 +170783733442,213,0 +170783733490,213,0 +170783733540,213,0 +170783733589,213,0 +170783733637,213,0 +170783733685,213,0 +170783733733,213,0 +170783733781,213,0 +170783733829,214,0 +170783733877,214,0 +170783733926,214,0 +170783733974,213,0 +170783734022,213,0 +170783734070,213,0 +170783734117,213,0 +170783734165,213,0 +170783734215,213,0 +170783734264,213,0 +170783734312,213,0 +170783734360,213,0 +170783734408,213,0 +170783734456,213,0 +170783734506,213,0 +170783734554,213,0 +170783734602,214,0 +170783734650,214,0 +170783734697,214,0 +170783734746,214,0 +170783734795,214,0 +170783734843,214,0 +170783734893,214,0 +170783734941,213,0 +170783734990,213,0 +170783735040,213,0 +170783735088,213,0 +170783735136,213,0 +170783735185,213,0 +170783735233,213,0 +170783735281,213,0 +170783735329,213,0 +170783735376,213,0 +170783735426,213,0 +170783735474,213,0 +170783735523,214,0 +170783735571,213,0 +170783735619,213,0 +170783735667,213,0 +170783735715,214,0 +170783735763,214,0 +170783735812,214,0 +170783735862,214,0 +170783735910,213,0 +170783735958,213,0 +170783736005,213,0 +170783736053,213,0 +170783736101,213,0 +170783736149,213,0 +170783736197,213,0 +170783736245,213,0 +170783736294,213,0 +170783736342,213,0 +170783736390,213,0 +170783736438,213,0 +170783736486,213,0 +170783736533,214,0 +170783736581,214,0 +170783736629,214,0 +170783736678,213,0 +170783736726,214,0 +170783736774,214,0 +170783736822,213,0 +170783736870,213,0 +170783736919,213,0 +170783736969,213,0 +170783737018,213,0 +170783737066,213,0 +170783737114,213,0 +170783737162,213,0 +170783737210,213,0 +170783737259,213,0 +170783737309,213,0 +170783737357,213,0 +170783737406,213,0 +170783737454,214,0 +170783737504,214,0 +170783737552,214,0 +170783737599,214,0 +170783737647,214,0 +170783737695,214,0 +170783737743,213,0 +170783737791,213,0 +170783737839,213,0 +170783737887,213,0 +170783737935,213,0 +170783737982,213,0 +170783738032,213,0 +170783738080,213,0 +170783738128,213,0 +170783738175,213,0 +170783738223,213,0 +170783738271,214,0 +170783738321,214,0 +170783738368,214,0 +170783738416,213,0 +170783738464,214,0 +170783738512,214,0 +170783738560,214,0 +170783738608,214,0 +170783738655,214,0 +170783738703,213,0 +170783738751,213,0 +170783738799,213,0 +170783738846,213,0 +170783738894,213,0 +170783738942,213,0 +170783738992,213,0 +170783739041,213,0 +170783739091,213,0 +170783739140,214,0 +170783739189,213,0 +170783739237,214,0 +170783739285,214,0 +170783739333,214,0 +170783739383,214,0 +170783739432,214,0 +170783739480,214,0 +170783739530,214,0 +170783739578,214,0 +170783739626,213,0 +170783739673,213,0 +170783739721,213,0 +170783739769,213,0 +170783739817,213,0 +170783739864,213,0 +170783739912,213,0 +170783739960,213,0 +170783740009,213,0 +170783740057,213,0 +170783740105,214,0 +170783740153,213,0 +170783740201,214,0 +170783740248,214,0 +170783740296,214,0 +170783740344,214,0 +170783740392,214,0 +170783740440,214,0 +170783740489,214,0 +170783740538,213,0 +170783740586,213,0 +170783740636,213,0 +170783740684,213,0 +170783740732,213,0 +170783740780,213,0 +170783740828,213,0 +170783740876,213,0 +170783740924,214,0 +170783740973,213,0 +170783741023,213,0 +170783741072,214,0 +170783741120,214,0 +170783741168,214,0 +170783741218,214,0 +170783741267,214,0 +170783741315,214,0 +170783741363,214,0 +170783741411,214,0 +170783741459,213,0 +170783741507,213,0 +170783741554,213,0 +170783741602,213,0 +170783741650,213,0 +170783741700,213,0 +170783741747,213,0 +170783741795,213,0 +170783741843,213,0 +170783741893,213,0 +170783741942,213,0 +170783741992,213,0 +170783742040,213,0 +170783742089,214,0 +170783742139,213,0 +170783742187,214,0 +170783742236,214,0 +170783742284,214,0 +170783742333,214,0 +170783742381,214,0 +170783742431,213,0 +170783742480,213,0 +170783742530,213,0 +170783742578,213,0 +170783742625,213,0 +170783742675,213,0 +170783742723,213,0 +170783742772,213,0 +170783742820,213,0 +170783742870,213,0 +170783742918,213,0 +170783742966,214,0 +170783743014,214,0 +170783743061,214,0 +170783743109,214,0 +170783743157,214,0 +170783743207,214,0 +170783743255,214,0 +170783743304,214,0 +170783743354,213,0 +170783743402,213,0 +170783743450,213,0 +170783743498,213,0 +170783743547,213,0 +170783743595,213,0 +170783743643,213,0 +170783743692,213,0 +170783743740,213,0 +170783743790,213,0 +170783743838,214,0 +170783743887,214,0 +170783743937,214,0 +170783743987,214,0 +170783744034,214,0 +170783744082,214,0 +170783744130,214,0 +170783744178,214,0 +170783744226,214,0 +170783744275,213,0 +170783744323,213,0 +170783744371,213,0 +170783744419,213,0 +170783744467,213,0 +170783744517,213,0 +170783744565,213,0 +170783744612,213,0 +170783744660,213,0 +170783744708,213,0 +170783744758,214,0 +170783744806,214,0 +170783744854,214,0 +170783744903,214,0 +170783744951,214,0 +170783745001,214,0 +170783745049,214,0 +170783745097,214,0 +170783745145,214,0 +170783745192,213,0 +170783745240,213,0 +170783745288,213,0 +170783745336,213,0 +170783745384,213,0 +170783745434,213,0 +170783745482,214,0 +170783745530,214,0 +170783745578,214,0 +170783745627,214,0 +170783745675,214,0 +170783745725,214,0 +170783745772,214,0 +170783745822,214,0 +170783745870,214,0 +170783745918,214,0 +170783745967,214,0 +170783746015,214,0 +170783746063,214,0 +170783746111,213,0 +170783746159,213,0 +170783746209,213,0 +170783746257,213,0 +170783746306,214,0 +170783746354,213,0 +170783746402,214,0 +170783746449,214,0 +170783746497,213,0 +170783746545,214,0 +170783746593,214,0 +170783746641,214,0 +170783746689,214,0 +170783746737,214,0 +170783746786,214,0 +170783746834,214,0 +170783746884,214,0 +170783746931,214,0 +170783746979,214,0 +170783747027,214,0 +170783747075,213,0 +170783747123,213,0 +170783747173,213,0 +170783747222,213,0 +170783747272,213,0 +170783747321,213,0 +170783747369,213,0 +170783747419,214,0 +170783747468,214,0 +170783747516,214,0 +170783747564,214,0 +170783747612,214,0 +170783747660,214,0 +170783747710,214,0 +170783747758,214,0 +170783747806,214,0 +170783747855,214,0 +170783747905,214,0 +170783747954,214,0 +170783748004,213,0 +170783748052,213,0 +170783748101,213,0 +170783748151,213,0 +170783748199,213,0 +170783748248,213,0 +170783748298,213,0 +170783748347,213,0 +170783748396,213,0 +170783748444,214,0 +170783748492,214,0 +170783748540,214,0 +170783748588,214,0 +170783748638,214,0 +170783748686,214,0 +170783748734,214,0 +170783748781,214,0 +170783748829,214,0 +170783748879,214,0 +170783748927,213,0 +170783748975,213,0 +170783749023,213,0 +170783749072,213,0 +170783749122,213,0 +170783749170,213,0 +170783749217,213,0 +170783749267,213,0 +170783749315,213,0 +170783749363,214,0 +170783749411,213,0 +170783749459,214,0 +170783749508,214,0 +170783749556,214,0 +170783749606,214,0 +170783749654,214,0 +170783749702,214,0 +170783749749,214,0 +170783749797,214,0 +170783749845,213,0 +170783749895,213,0 +170783749944,213,0 +170783749992,213,0 +170783750040,213,0 +170783750088,213,0 +170783750137,213,0 +170783750185,213,0 +170783750233,213,0 +170783750281,213,0 +170783750329,213,0 +170783750377,213,0 +170783750427,213,0 +170783750475,214,0 +170783750524,214,0 +170783750572,214,0 +170783750620,214,0 +170783750668,214,0 +170783750717,214,0 +170783750765,213,0 +170783750813,213,0 +170783750863,213,0 +170783750911,213,0 +170783750958,213,0 +170783751008,213,0 +170783751056,213,0 +170783751104,213,0 +170783751153,213,0 +170783751201,213,0 +170783751250,213,0 +170783751300,213,0 +170783751348,213,0 +170783751397,214,0 +170783751445,213,0 +170783751493,214,0 +170783751543,214,0 +170783751592,214,0 +170783751640,214,0 +170783751690,213,0 +170783751738,213,0 +170783751786,213,0 +170783751833,213,0 +170783751883,213,0 +170783751932,213,0 +170783751980,213,0 +170783752030,213,0 +170783752078,213,0 +170783752126,213,0 +170783752174,213,0 +170783752222,213,0 +170783752270,213,0 +170783752318,214,0 +170783752366,214,0 +170783752414,214,0 +170783752463,214,0 +170783752511,214,0 +170783752560,214,0 +170783752610,213,0 +170783752658,213,0 +170783752707,213,0 +170783752757,213,0 +170783752805,213,0 +170783752853,213,0 +170783752901,213,0 +170783752948,213,0 +170783752996,213,0 +170783753044,213,0 +170783753092,214,0 +170783753140,213,0 +170783753188,214,0 +170783753238,214,0 +170783753286,214,0 +170783753335,214,0 +170783753383,214,0 +170783753433,214,0 +170783753481,214,0 +170783753530,214,0 +170783753578,213,0 +170783753628,213,0 +170783753677,213,0 +170783753725,213,0 +170783753773,213,0 +170783753822,213,0 +170783753870,213,0 +170783753918,213,0 +170783753968,214,0 +170783754016,214,0 +170783754064,214,0 +170783754111,214,0 +170783754159,214,0 +170783754207,214,0 +170783754255,214,0 +170783754305,214,0 +170783754354,214,0 +170783754402,214,0 +170783754450,214,0 +170783754498,213,0 +170783754546,213,0 +170783754594,213,0 +170783754642,213,0 +170783754690,214,0 +170783754738,213,0 +170783754787,213,0 +170783754837,213,0 +170783754885,213,0 +170783754934,214,0 +170783754982,214,0 +170783755032,214,0 +170783755080,214,0 +170783755128,214,0 +170783755176,214,0 +170783755223,214,0 +170783755271,214,0 +170783755319,214,0 +170783755367,214,0 +170783755417,213,0 +170783755465,213,0 +170783755514,213,0 +170783755562,213,0 +170783755610,213,0 +170783755660,213,0 +170783755707,213,0 +170783755755,213,0 +170783755805,214,0 +170783755853,213,0 +170783755902,213,0 +170783755952,214,0 +170783756000,214,0 +170783756048,214,0 +170783756096,214,0 +170783756145,214,0 +170783756193,214,0 +170783756241,214,0 +170783756291,214,0 +170783756338,213,0 +170783756388,213,0 +170783756436,213,0 +170783756484,213,0 +170783756532,213,0 +170783756581,213,0 +170783756629,213,0 +170783756678,213,0 +170783756728,213,0 +170783756776,213,0 +170783756825,213,0 +170783756873,213,0 +170783756921,213,0 +170783756971,213,0 +170783757019,214,0 +170783757068,214,0 +170783757116,214,0 +170783757164,214,0 +170783757212,214,0 +170783757260,214,0 +170783757308,213,0 +170783757357,213,0 +170783757405,213,0 +170783757455,213,0 +170783757503,213,0 +170783757551,213,0 +170783757600,213,0 +170783757649,213,0 +170783757697,213,0 +170783757745,213,0 +170783757793,213,0 +170783757841,214,0 +170783757889,214,0 +170783757939,214,0 +170783757987,214,0 +170783758034,214,0 +170783758082,214,0 +170783758130,214,0 +170783758178,214,0 +170783758228,213,0 +170783758277,213,0 +170783758325,213,0 +170783758375,213,0 +170783758423,213,0 +170783758471,213,0 +170783758519,213,0 +170783758567,213,0 +170783758614,213,0 +170783758662,213,0 +170783758710,213,0 +170783758758,214,0 +170783758808,214,0 +170783758855,214,0 +170783758903,214,0 +170783758951,214,0 +170783759001,214,0 +170783759048,214,0 +170783759096,214,0 +170783759144,213,0 +170783759192,213,0 +170783759240,213,0 +170783759288,213,0 +170783759337,213,0 +170783759387,213,0 +170783759434,213,0 +170783759482,213,0 +170783759532,213,0 +170783759580,213,0 +170783759629,213,0 +170783759679,214,0 +170783759727,214,0 +170783759775,214,0 +170783759824,214,0 +170783759872,214,0 +170783759921,214,0 +170783759969,214,0 +170783760017,214,0 +170783760067,213,0 +170783760115,213,0 +170783760164,213,0 +170783760214,213,0 +170783760262,213,0 +170783760309,213,0 +170783760357,213,0 +170783760405,213,0 +170783760453,213,0 +170783760501,213,0 +170783760550,214,0 +170783760598,213,0 +170783760648,213,0 +170783760696,214,0 +170783760744,214,0 +170783760791,214,0 +170783760839,214,0 +170783760887,214,0 +170783760935,214,0 +170783760983,213,0 +170783761031,213,0 +170783761079,213,0 +170783761127,213,0 +170783761175,213,0 +170783761223,213,0 +170783761273,213,0 +170783761322,213,0 +170783761372,213,0 +170783761420,213,0 +170783761468,213,0 +170783761516,213,0 +170783761564,213,0 +170783761613,213,0 +170783761663,213,0 +170783761711,213,0 +170783761759,214,0 +170783761807,214,0 +170783761855,214,0 +170783761902,214,0 +170783761950,213,0 +170783761998,213,0 +170783762046,213,0 +170783762096,213,0 +170783762144,213,0 +170783762191,213,0 +170783762239,213,0 +170783762289,213,0 +170783762338,213,0 +170783762386,214,0 +170783762436,214,0 +170783762484,213,0 +170783762533,214,0 +170783762581,214,0 +170783762629,214,0 +170783762677,214,0 +170783762725,214,0 +170783762773,214,0 +170783762821,214,0 +170783762869,213,0 +170783762918,213,0 +170783762966,213,0 +170783763016,213,0 +170783763063,213,0 +170783763111,213,0 +170783763159,213,0 +170783763207,213,0 +170783763255,213,0 +170783763303,213,0 +170783763352,213,0 +170783763400,213,0 +170783763448,213,0 +170783763496,213,0 +170783763546,214,0 +170783763595,214,0 +170783763643,214,0 +170783763691,214,0 +170783763739,214,0 +170783763787,213,0 +170783763834,213,0 +170783763882,213,0 +170783763930,213,0 +170783763978,213,0 +170783764026,213,0 +170783764074,213,0 +170783764121,213,0 +170783764169,213,0 +170783764219,213,0 +170783764268,213,0 +170783764316,213,0 +170783764364,214,0 +170783764412,214,0 +170783764459,214,0 +170783764507,214,0 +170783764555,214,0 +170783764603,214,0 +170783764651,214,0 +170783764699,213,0 +170783764746,213,0 +170783764794,213,0 +170783764842,213,0 +170783764890,213,0 +170783764938,213,0 +170783764986,213,0 +170783765034,213,0 +170783765083,213,0 +170783765131,213,0 +170783765180,213,0 +170783765230,213,0 +170783765277,213,0 +170783765325,213,0 +170783765375,214,0 +170783765424,214,0 +170783765472,214,0 +170783765520,214,0 +170783765568,214,0 +170783765616,213,0 +170783765663,213,0 +170783765711,213,0 +170783765759,212,0 +170783765807,213,0 +170783765855,213,0 +170783765902,213,0 +170783765952,213,0 +170783766000,213,0 +170783766047,213,0 +170783766095,213,0 +170783766143,213,0 +170783766193,213,0 +170783766242,213,0 +170783766290,213,0 +170783766340,213,0 +170783766388,214,0 +170783766435,214,0 +170783766485,214,0 +170783766535,214,0 +170783766582,213,0 +170783766632,213,0 +170783766680,213,0 +170783766728,213,0 +170783766776,213,0 +170783766824,213,0 +170783766872,213,0 +170783766920,214,0 +170783766968,213,0 +170783767016,214,0 +170783767064,214,0 +170783767113,214,0 +170783767163,214,0 +170783767211,214,0 +170783767259,214,0 +170783767307,214,0 +170783767354,214,0 +170783767402,214,0 +170783767452,214,0 +170783767500,214,0 +170783767548,213,0 +170783767597,214,0 +170783767645,213,0 +170783767693,213,0 +170783767743,214,0 +170783767792,214,0 +170783767840,214,0 +170783767890,214,0 +170783767939,214,0 +170783767989,214,0 +170783768037,214,0 +170783768085,214,0 +170783768133,214,0 +170783768182,214,0 +170783768230,214,0 +170783768278,214,0 +170783768328,214,0 +170783768376,214,0 +170783768425,213,0 +170783768473,214,0 +170783768523,213,0 +170783768570,213,0 +170783768620,214,0 +170783768668,214,0 +170783768716,214,0 +170783768765,214,0 +170783768813,214,0 +170783768861,214,0 +170783768909,214,0 +170783768957,214,0 +170783769005,214,0 +170783769053,214,0 +170783769103,214,0 +170783769151,214,0 +170783769199,214,0 +170783769248,214,0 +170783769296,214,0 +170783769344,214,0 +170783769394,213,0 +170783769442,213,0 +170783769490,213,0 +170783769538,213,0 +170783769585,214,0 +170783769635,214,0 +170783769683,214,0 +170783769732,213,0 +170783769780,214,0 +170783769828,214,0 +170783769876,214,0 +170783769926,214,0 +170783769975,214,0 +170783770024,214,0 +170783770074,214,0 +170783770122,214,0 +170783770170,214,0 +170783770217,214,0 +170783770265,214,0 +170783770313,213,0 +170783770361,213,0 +170783770409,213,0 +170783770459,213,0 +170783770508,213,0 +170783770557,213,0 +170783770605,213,0 +170783770653,213,0 +170783770701,213,0 +170783770749,213,0 +170783770799,214,0 +170783770848,214,0 +170783770896,214,0 +170783770944,214,0 +170783770992,214,0 +170783771040,214,0 +170783771089,214,0 +170783771137,214,0 +170783771185,214,0 +170783771233,213,0 +170783771282,213,0 +170783771330,213,0 +170783771380,213,0 +170783771429,213,0 +170783771477,213,0 +170783771525,213,0 +170783771573,213,0 +170783771621,213,0 +170783771669,213,0 +170783771717,213,0 +170783771766,213,0 +170783771814,213,0 +170783771864,214,0 +170783771913,214,0 +170783771963,214,0 +170783772012,214,0 +170783772060,214,0 +170783772110,214,0 +170783772159,213,0 +170783772207,213,0 +170783772257,213,0 +170783772305,213,0 +170783772355,213,0 +170783772402,213,0 +170783772452,213,0 +170783772501,213,0 +170783772551,213,0 +170783772599,213,0 +170783772647,213,0 +170783772695,214,0 +170783772744,214,0 +170783772792,214,0 +170783772840,214,0 +170783772888,214,0 +170783772936,214,0 +170783772984,214,0 +170783773031,214,0 +170783773079,214,0 +170783773127,213,0 +170783773177,213,0 +170783773224,213,0 +170783773272,213,0 +170783773322,213,0 +170783773370,213,0 +170783773419,213,0 +170783773467,213,0 +170783773517,213,0 +170783773566,213,0 +170783773614,213,0 +170783773662,214,0 +170783773710,213,0 +170783773758,213,0 +170783773806,214,0 +170783773854,214,0 +170783773902,214,0 +170783773950,214,0 +170783773999,214,0 +170783774047,213,0 +170783774095,213,0 +170783774143,213,0 +170783774191,213,0 +170783774239,213,0 +170783774287,213,0 +170783774335,213,0 +170783774384,213,0 +170783774434,213,0 +170783774482,213,0 +170783774530,214,0 +170783774578,213,0 +170783774627,213,0 +170783774675,214,0 +170783774725,214,0 +170783774773,214,0 +170783774822,214,0 +170783774871,214,0 +170783774919,214,0 +170783774969,213,0 +170783775018,213,0 +170783775068,213,0 +170783775116,213,0 +170783775163,213,0 +170783775211,213,0 +170783775261,214,0 +170783775310,214,0 +170783775358,213,0 +170783775406,214,0 +170783775454,214,0 +170783775502,214,0 +170783775551,214,0 +170783775601,214,0 +170783775650,214,0 +170783775700,214,0 +170783775748,214,0 +170783775796,214,0 +170783775844,214,0 +170783775893,213,0 +170783775941,213,0 +170783775989,213,0 +170783776037,213,0 +170783776085,213,0 +170783776132,213,0 +170783776180,213,0 +170783776228,213,0 +170783776276,213,0 +170783776324,214,0 +170783776372,214,0 +170783776420,214,0 +170783776467,214,0 +170783776515,214,0 +170783776565,214,0 +170783776612,214,0 +170783776662,214,0 +170783776710,214,0 +170783776758,214,0 +170783776807,214,0 +170783776855,213,0 +170783776903,213,0 +170783776951,213,0 +170783776999,213,0 +170783777047,213,0 +170783777095,213,0 +170783777143,213,0 +170783777191,213,0 +170783777239,213,0 +170783777287,213,0 +170783777336,213,0 +170783777386,213,0 +170783777435,214,0 +170783777483,214,0 +170783777531,214,0 +170783777579,214,0 +170783777627,214,0 +170783777675,214,0 +170783777725,214,0 +170783777772,213,0 +170783777820,213,0 +170783777868,212,0 +170783777916,213,0 +170783777964,212,0 +170783778014,212,0 +170783778063,213,0 +170783778113,213,0 +170783778162,213,0 +170783778210,213,0 +170783778258,213,0 +170783778307,213,0 +170783778355,213,0 +170783778403,213,0 +170783778451,213,0 +170783778499,213,0 +170783778547,213,0 +170783778597,213,0 +170783778645,214,0 +170783778694,213,0 +170783778744,213,0 +170783778791,213,0 +170783778839,213,0 +170783778889,213,0 +170783778938,213,0 +170783778986,213,0 +170783779034,213,0 +170783779084,213,0 +170783779132,213,0 +170783779180,213,0 +170783779228,213,0 +170783779277,213,0 +170783779325,213,0 +170783779374,214,0 +170783779422,214,0 +170783779470,214,0 +170783779518,214,0 +170783779566,214,0 +170783779614,213,0 +170783779662,213,0 +170783779710,213,0 +170783779758,213,0 +170783779806,213,0 +170783779854,213,0 +170783779902,213,0 +170783779950,213,0 +170783779998,213,0 +170783780046,213,0 +170783780095,214,0 +170783780143,214,0 +170783780191,214,0 +170783780239,214,0 +170783780289,214,0 +170783780336,214,0 +170783780384,214,0 +170783780432,214,0 +170783780480,214,0 +170783780530,214,0 +170783780578,213,0 +170783780627,213,0 +170783780675,213,0 +170783780723,213,0 +170783780771,213,0 +170783780818,213,0 +170783780866,213,0 +170783780914,213,0 +170783780962,213,0 +170783781010,214,0 +170783781058,214,0 +170783781106,214,0 +170783781156,214,0 +170783781204,214,0 +170783781253,214,0 +170783781301,214,0 +170783781349,214,0 +170783781397,214,0 +170783781445,214,0 +170783781493,213,0 +170783781541,213,0 +170783781589,213,0 +170783781637,213,0 +170783781686,213,0 +170783781734,213,0 +170783781782,213,0 +170783781830,213,0 +170783781878,213,0 +170783781925,213,0 +170783781973,213,0 +170783782021,214,0 +170783782069,214,0 +170783782119,214,0 +170783782168,214,0 +170783782216,214,0 +170783782264,214,0 +170783782312,214,0 +170783782360,214,0 +170783782408,213,0 +170783782456,213,0 +170783782506,213,0 +170783782553,213,0 +170783782603,213,0 +170783782651,213,0 +170783782698,213,0 +170783782748,214,0 +170783782796,214,0 +170783782844,213,0 +170783782892,214,0 +170783782940,213,0 +170783782988,214,0 +170783783037,214,0 +170783783085,214,0 +170783783135,214,0 +170783783184,214,0 +170783783232,214,0 +170783783282,214,0 +170783783331,214,0 +170783783379,213,0 +170783783429,213,0 +170783783478,213,0 +170783783526,213,0 +170783783575,213,0 +170783783623,213,0 +170783783671,213,0 +170783783721,213,0 +170783783770,213,0 +170783783818,213,0 +170783783868,214,0 +170783783916,214,0 +170783783965,214,0 +170783784015,214,0 +170783784064,214,0 +170783784114,214,0 +170783784164,214,0 +170783784211,214,0 +170783784259,213,0 +170783784308,213,0 +170783784356,213,0 +170783784405,213,0 +170783784453,213,0 +170783784503,213,0 +170783784551,213,0 +170783784600,213,0 +170783784648,213,0 +170783784698,214,0 +170783784746,213,0 +170783784795,214,0 +170783784843,214,0 +170783784891,214,0 +170783784939,214,0 +170783784989,214,0 +170783785036,214,0 +170783785086,214,0 +170783785134,214,0 +170783785182,214,0 +170783785230,213,0 +170783785278,213,0 +170783785326,213,0 +170783785375,213,0 +170783785423,213,0 +170783785471,213,0 +170783785519,213,0 +170783785567,213,0 +170783785616,213,0 +170783785664,213,0 +170783785714,214,0 +170783785762,213,0 +170783785811,214,0 +170783785861,214,0 +170783785909,214,0 +170783785957,213,0 +170783786005,213,0 +170783786052,214,0 +170783786100,214,0 +170783786148,213,0 +170783786198,213,0 +170783786248,213,0 +170783786296,213,0 +170783786343,213,0 +170783786391,213,0 +170783786439,213,0 +170783786487,213,0 +170783786535,213,0 +170783786583,213,0 +170783786632,213,0 +170783786682,213,0 +170783786731,213,0 +170783786779,213,0 +170783786829,214,0 +170783786877,213,0 +170783786925,214,0 +170783786973,214,0 +170783787021,214,0 +170783787069,213,0 +170783787117,213,0 +170783787166,212,0 +170783787214,213,0 +170783787262,213,0 +170783787310,213,0 +170783787358,213,0 +170783787407,213,0 +170783787455,213,0 +170783787505,213,0 +170783787553,213,0 +170783787602,213,0 +170783787650,213,0 +170783787698,213,0 +170783787746,214,0 +170783787794,214,0 +170783787842,214,0 +170783787890,214,0 +170783787937,214,0 +170783787985,213,0 +170783788033,213,0 +170783788081,213,0 +170783788131,213,0 +170783788179,213,0 +170783788226,213,0 +170783788274,213,0 +170783788322,213,0 +170783788370,213,0 +170783788420,213,0 +170783788468,214,0 +170783788515,214,0 +170783788563,214,0 +170783788611,214,0 +170783788659,214,0 +170783788707,214,0 +170783788755,214,0 +170783788803,214,0 +170783788850,214,0 +170783788898,214,0 +170783788946,213,0 +170783788996,213,0 +170783789044,213,0 +170783789093,213,0 +170783789143,213,0 +170783789191,213,0 +170783789238,213,0 +170783789286,214,0 +170783789336,214,0 +170783789384,213,0 +170783789432,214,0 +170783789480,214,0 +170783789528,214,0 +170783789576,214,0 +170783789624,214,0 +170783789672,214,0 +170783789721,214,0 +170783789769,214,0 +170783789817,214,0 +170783789865,213,0 +170783789914,213,0 +170783789964,213,0 +170783790012,213,0 +170783790061,213,0 +170783790111,213,0 +170783790159,213,0 +170783790208,214,0 +170783790256,214,0 +170783790304,214,0 +170783790354,214,0 +170783790401,214,0 +170783790449,214,0 +170783790497,214,0 +170783790547,214,0 +170783790595,214,0 +170783790643,214,0 +170783790691,214,0 +170783790739,214,0 +170783790787,213,0 +170783790834,213,0 +170783790882,213,0 +170783790930,213,0 +170783790978,213,0 +170783791026,213,0 +170783791074,213,0 +170783791122,213,0 +170783791169,214,0 +170783791217,214,0 +170783791267,214,0 +170783791315,214,0 +170783791363,214,0 +170783791410,214,0 +170783791458,214,0 +170783791506,214,0 +170783791554,214,0 +170783791602,214,0 +170783791650,214,0 +170783791699,213,0 +170783791747,213,0 +170783791795,213,0 +170783791843,213,0 +170783791891,213,0 +170783791940,213,0 +170783791988,213,0 +170783792036,213,0 +170783792084,213,0 +170783792131,213,0 +170783792179,214,0 +170783792229,214,0 +170783792277,213,0 +170783792324,214,0 +170783792372,214,0 +170783792420,214,0 +170783792468,214,0 +170783792516,214,0 +170783792564,214,0 +170783792612,214,0 +170783792659,213,0 +170783792707,213,0 +170783792755,213,0 +170783792803,213,0 +170783792851,213,0 +170783792899,213,0 +170783792947,213,0 +170783792994,213,0 +170783793042,213,0 +170783793090,213,0 +170783793140,213,0 +170783793187,214,0 +170783793235,213,0 +170783793283,214,0 +170783793331,214,0 +170783793379,214,0 +170783793427,214,0 +170783793474,214,0 +170783793522,214,0 +170783793570,213,0 +170783793618,213,0 +170783793668,213,0 +170783793717,213,0 +170783793765,213,0 +170783793813,213,0 +170783793861,213,0 +170783793909,213,0 +170783793957,213,0 +170783794005,213,0 +170783794053,214,0 +170783794100,214,0 +170783794148,214,0 +170783794196,214,0 +170783794246,214,0 +170783794294,214,0 +170783794342,214,0 +170783794390,214,0 +170783794438,214,0 +170783794487,213,0 +170783794535,213,0 +170783794583,213,0 +170783794631,213,0 +170783794679,213,0 +170783794727,213,0 +170783794774,213,0 +170783794824,213,0 +170783794872,213,0 +170783794921,213,0 +170783794971,214,0 +170783795019,214,0 +170783795067,214,0 +170783795114,214,0 +170783795162,214,0 +170783795210,214,0 +170783795260,214,0 +170783795309,214,0 +170783795357,214,0 +170783795405,214,0 +170783795455,213,0 +170783795503,213,0 +170783795550,213,0 +170783795598,213,0 +170783795646,213,0 +170783795694,213,0 +170783795742,213,0 +170783795790,213,0 +170783795839,213,0 +170783795887,213,0 +170783795935,213,0 +170783795983,213,0 +170783796030,213,0 +170783796078,213,0 +170783796126,213,0 +170783796174,213,0 +170783796222,214,0 +170783796270,214,0 +170783796319,214,0 +170783796369,213,0 +170783796418,213,0 +170783796466,213,0 +170783796516,213,0 +170783796564,213,0 +170783796611,213,0 +170783796661,213,0 +170783796709,213,0 +170783796757,213,0 +170783796805,213,0 +170783796853,213,0 +170783796901,213,0 +170783796948,214,0 +170783796996,214,0 +170783797044,214,0 +170783797092,214,0 +170783797140,214,0 +170783797190,214,0 +170783797239,214,0 +170783797289,213,0 +170783797337,213,0 +170783797385,213,0 +170783797433,213,0 +170783797481,213,0 +170783797530,213,0 +170783797578,213,0 +170783797628,213,0 +170783797675,213,0 +170783797725,213,0 +170783797773,214,0 +170783797821,214,0 +170783797869,214,0 +170783797916,214,0 +170783797964,214,0 +170783798012,214,0 +170783798060,214,0 +170783798108,214,0 +170783798156,214,0 +170783798205,213,0 +170783798253,213,0 +170783798301,213,0 +170783798349,213,0 +170783798397,213,0 +170783798445,213,0 +170783798492,213,0 +170783798542,213,0 +170783798591,213,0 +170783798639,213,0 +170783798687,213,0 +170783798735,213,0 +170783798783,214,0 +170783798833,214,0 +170783798882,214,0 +170783798930,214,0 +170783798980,214,0 +170783799029,214,0 +170783799077,214,0 +170783799125,214,0 +170783799175,213,0 +170783799224,213,0 +170783799272,213,0 +170783799320,213,0 +170783799368,213,0 +170783799416,213,0 +170783799464,213,0 +170783799511,213,0 +170783799559,214,0 +170783799609,214,0 +170783799657,214,0 +170783799705,214,0 +170783799753,214,0 +170783799802,214,0 +170783799850,214,0 +170783799898,214,0 +170783799948,214,0 +170783799996,214,0 +170783800045,214,0 +170783800093,213,0 +170783800141,213,0 +170783800191,213,0 +170783800240,213,0 +170783800290,213,0 +170783800339,213,0 +170783800387,213,0 +170783800435,213,0 +170783800485,214,0 +170783800532,214,0 +170783800582,214,0 +170783800630,214,0 +170783800679,214,0 +170783800727,214,0 +170783800775,214,0 +170783800823,214,0 +170783800871,214,0 +170783800919,214,0 +170783800968,214,0 +170783801016,213,0 +170783801066,213,0 +170783801115,213,0 +170783801165,213,0 +170783801214,213,0 +170783801262,213,0 +170783801312,213,0 +170783801360,213,0 +170783801408,213,0 +170783801456,213,0 +170783801505,214,0 +170783801555,214,0 +170783801602,214,0 +170783801650,214,0 +170783801698,214,0 +170783801746,214,0 +170783801794,214,0 +170783801844,214,0 +170783801893,214,0 +170783801943,213,0 +170783801992,213,0 +170783802040,213,0 +170783802090,213,0 +170783802138,213,0 +170783802187,213,0 +170783802235,213,0 +170783802285,213,0 +170783802333,213,0 +170783802382,213,0 +170783802430,213,0 +170783802478,214,0 +170783802526,214,0 +170783802574,213,0 +170783802623,214,0 +170783802671,214,0 +170783802719,214,0 +170783802767,214,0 +170783802815,214,0 +170783802865,213,0 +170783802914,213,0 +170783802962,213,0 +170783803010,213,0 +170783803058,213,0 +170783803107,213,0 +170783803155,213,0 +170783803203,213,0 +170783803253,213,0 +170783803302,213,0 +170783803352,213,0 +170783803401,213,0 +170783803451,214,0 +170783803499,214,0 +170783803547,214,0 +170783803596,214,0 +170783803644,214,0 +170783803692,214,0 +170783803740,214,0 +170783803790,213,0 +170783803838,213,0 +170783803885,213,0 +170783803935,213,0 +170783803983,213,0 +170783804031,213,0 +170783804079,213,0 +170783804128,213,0 +170783804176,213,0 +170783804226,213,0 +170783804275,214,0 +170783804323,214,0 +170783804373,214,0 +170783804421,214,0 +170783804469,214,0 +170783804517,214,0 +170783804565,214,0 +170783804613,214,0 +170783804662,214,0 +170783804710,213,0 +170783804758,213,0 +170783804806,213,0 +170783804854,213,0 +170783804902,213,0 +170783804950,213,0 +170783804999,213,0 +170783805047,213,0 +170783805095,213,0 +170783805143,213,0 +170783805191,214,0 +170783805239,214,0 +170783805287,214,0 +170783805335,214,0 +170783805383,214,0 +170783805431,214,0 +170783805479,214,0 +170783805528,214,0 +170783805576,214,0 +170783805626,213,0 +170783805674,213,0 +170783805721,213,0 +170783805771,213,0 +170783805819,213,0 +170783805868,213,0 +170783805916,213,0 +170783805964,213,0 +170783806012,213,0 +170783806060,213,0 +170783806108,213,0 +170783806158,213,0 +170783806206,213,0 +170783806254,214,0 +170783806301,214,0 +170783806349,214,0 +170783806397,214,0 +170783806445,214,0 +170783806493,214,0 +170783806543,214,0 +170783806591,213,0 +170783806638,213,0 +170783806688,213,0 +170783806737,213,0 +170783806785,213,0 +170783806833,213,0 +170783806881,213,0 +170783806929,213,0 +170783806977,213,0 +170783807025,213,0 +170783807075,213,0 +170783807122,213,0 +170783807170,214,0 +170783807218,214,0 +170783807266,213,0 +170783807316,214,0 +170783807365,214,0 +170783807413,214,0 +170783807461,214,0 +170783807511,213,0 +170783807559,213,0 +170783807608,213,0 +170783807656,213,0 +170783807704,213,0 +170783807752,213,0 +170783807800,213,0 +170783807848,213,0 +170783807896,213,0 +170783807944,213,0 +170783807991,213,0 +170783808039,213,0 +170783808089,213,0 +170783808137,213,0 +170783808184,213,0 +170783808232,214,0 +170783808280,214,0 +170783808328,214,0 +170783808378,214,0 +170783808425,213,0 +170783808475,213,0 +170783808523,213,0 +170783808571,213,0 +170783808620,213,0 +170783808668,213,0 +170783808718,213,0 +170783808766,213,0 +170783808815,213,0 +170783808863,213,0 +170783808911,213,0 +170783808959,213,0 +170783809007,214,0 +170783809055,214,0 +170783809103,214,0 +170783809152,213,0 +170783809200,214,0 +170783809248,214,0 +170783809296,214,0 +170783809344,213,0 +170783809392,213,0 +170783809442,213,0 +170783809490,213,0 +170783809539,213,0 +170783809587,213,0 +170783809635,213,0 +170783809684,213,0 +170783809732,213,0 +170783809780,213,0 +170783809829,213,0 +170783809877,213,0 +170783809925,213,0 +170783809973,213,0 +170783810021,214,0 +170783810069,214,0 +170783810116,214,0 +170783810164,214,0 +170783810212,214,0 +170783810260,214,0 +170783810308,213,0 +170783810357,213,0 +170783810407,213,0 +170783810456,213,0 +170783810506,213,0 +170783810554,213,0 +170783810602,213,0 +170783810649,213,0 +170783810697,213,0 +170783810747,214,0 +170783810795,214,0 +170783810843,214,0 +170783810891,214,0 +170783810939,214,0 +170783810988,214,0 +170783811036,214,0 +170783811084,214,0 +170783811133,214,0 +170783811181,214,0 +170783811231,213,0 +170783811279,213,0 +170783811328,213,0 +170783811376,213,0 +170783811424,213,0 +170783811472,214,0 +170783811521,214,0 +170783811569,214,0 +170783811617,214,0 +170783811667,214,0 +170783811716,214,0 +170783811764,214,0 +170783811814,214,0 +170783811862,214,0 +170783811911,214,0 +170783811959,214,0 +170783812007,214,0 +170783812056,214,0 +170783812104,214,0 +170783812154,213,0 +170783812201,214,0 +170783812251,214,0 +170783812300,213,0 +170783812350,214,0 +170783812398,214,0 +170783812447,214,0 +170783812497,214,0 +170783812546,214,0 +170783812594,214,0 +170783812642,214,0 +170783812690,214,0 +170783812738,214,0 +170783812785,214,0 +170783812833,214,0 +170783812881,214,0 +170783812929,214,0 +170783812977,214,0 +170783813026,214,0 +170783813074,213,0 +170783813122,213,0 +170783813170,213,0 +170783813218,213,0 +170783813265,213,0 +170783813313,213,0 +170783813361,213,0 +170783813409,214,0 +170783813459,213,0 +170783813508,214,0 +170783813556,214,0 +170783813605,214,0 +170783813653,214,0 +170783813703,214,0 +170783813753,214,0 +170783813802,214,0 +170783813850,214,0 +170783813898,214,0 +170783813946,214,0 +170783813995,213,0 +170783814043,213,0 +170783814091,213,0 +170783814139,213,0 +170783814187,213,0 +170783814236,213,0 +170783814284,214,0 +170783814332,213,0 +170783814382,214,0 +170783814430,214,0 +170783814478,214,0 +170783814526,214,0 +170783814575,214,0 +170783814625,214,0 +170783814673,214,0 +170783814720,214,0 +170783814768,214,0 +170783814816,214,0 +170783814864,214,0 +170783814914,213,0 +170783814963,213,0 +170783815013,213,0 +170783815061,213,0 +170783815109,213,0 +170783815157,213,0 +170783815205,213,0 +170783815254,213,0 +170783815302,213,0 +170783815350,213,0 +170783815398,213,0 +170783815446,213,0 +170783815494,214,0 +170783815543,214,0 +170783815591,213,0 +170783815639,214,0 +170783815687,214,0 +170783815735,214,0 +170783815783,214,0 +170783815831,213,0 +170783815881,213,0 +170783815929,213,0 +170783815976,213,0 +170783816024,213,0 +170783816074,213,0 +170783816123,213,0 +170783816171,213,0 +170783816219,213,0 +170783816269,213,0 +170783816317,213,0 +170783816364,213,0 +170783816412,214,0 +170783816462,213,0 +170783816510,214,0 +170783816559,214,0 +170783816607,214,0 +170783816657,214,0 +170783816704,214,0 +170783816752,214,0 +170783816800,213,0 +170783816848,213,0 +170783816898,213,0 +170783816947,213,0 +170783816995,213,0 +170783817044,213,0 +170783817092,213,0 +170783817140,213,0 +170783817188,213,0 +170783817238,213,0 +170783817287,213,0 +170783817337,213,0 +170783817385,214,0 +170783817432,213,0 +170783817480,213,0 +170783817530,214,0 +170783817578,213,0 +170783817626,214,0 +170783817675,214,0 +170783817725,213,0 +170783817773,213,0 +170783817821,213,0 +170783817870,213,0 +170783817920,213,0 +170783817968,213,0 +170783818016,213,0 +170783818064,213,0 +170783818113,213,0 +170783818161,213,0 +170783818209,213,0 +170783818257,213,0 +170783818305,213,0 +170783818353,214,0 +170783818401,214,0 +170783818449,214,0 +170783818497,214,0 +170783818546,214,0 +170783818594,214,0 +170783818642,213,0 +170783818690,213,0 +170783818739,213,0 +170783818787,213,0 +170783818835,213,0 +170783818884,213,0 +170783818932,213,0 +170783818980,213,0 +170783819028,213,0 +170783819076,213,0 +170783819125,213,0 +170783819173,214,0 +170783819221,214,0 +170783819269,214,0 +170783819316,214,0 +170783819364,214,0 +170783819412,214,0 +170783819460,214,0 +170783819508,214,0 +170783819556,213,0 +170783819604,213,0 +170783819651,213,0 +170783819701,213,0 +170783819749,213,0 +170783819797,213,0 +170783819844,213,0 +170783819894,213,0 +170783819942,213,0 +170783819991,213,0 +170783820039,213,0 +170783820087,213,0 +170783820135,213,0 +170783820183,213,0 +170783820231,214,0 +170783820281,214,0 +170783820328,213,0 +170783820376,214,0 +170783820424,214,0 +170783820474,213,0 +170783820522,213,0 +170783820571,212,0 +170783820619,213,0 +170783820667,213,0 +170783820716,213,0 +170783820764,213,0 +170783820812,213,0 +170783820862,213,0 +170783820909,213,0 +170783820959,213,0 +170783821007,213,0 +170783821055,213,0 +170783821104,213,0 +170783821152,213,0 +170783821200,214,0 +170783821250,214,0 +170783821298,214,0 +170783821346,214,0 +170783821393,214,0 +170783821443,213,0 +170783821491,213,0 +170783821539,213,0 +170783821588,213,0 +170783821638,213,0 +170783821687,213,0 +170783821735,213,0 +170783821783,213,0 +170783821831,213,0 +170783821879,213,0 +170783821927,213,0 +170783821975,213,0 +170783822023,213,0 +170783822072,213,0 +170783822122,214,0 +170783822169,214,0 +170783822217,214,0 +170783822265,214,0 +170783822313,214,0 +170783822361,213,0 +170783822411,213,0 +170783822459,213,0 +170783822508,213,0 +170783822556,213,0 +170783822604,213,0 +170783822652,213,0 +170783822701,213,0 +170783822749,213,0 +170783822798,213,0 +170783822848,213,0 +170783822897,213,0 +170783822947,214,0 +170783822996,213,0 +170783823044,214,0 +170783823092,214,0 +170783823140,214,0 +170783823188,214,0 +170783823236,214,0 +170783823284,213,0 +170783823333,213,0 +170783823381,213,0 +170783823429,213,0 +170783823478,213,0 +170783823526,213,0 +170783823574,213,0 +170783823622,213,0 +170783823671,213,0 +170783823721,213,0 +170783823769,213,0 +170783823818,213,0 +170783823866,214,0 +170783823916,214,0 +170783823965,214,0 +170783824013,214,0 +170783824061,214,0 +170783824109,214,0 +170783824157,214,0 +170783824205,213,0 +170783824254,213,0 +170783824302,213,0 +170783824350,213,0 +170783824398,213,0 +170783824446,213,0 +170783824494,213,0 +170783824542,213,0 +170783824589,213,0 +170783824639,213,0 +170783824687,213,0 +170783824734,213,0 +170783824782,214,0 +170783824830,214,0 +170783824878,214,0 +170783824926,214,0 +170783824973,214,0 +170783825021,214,0 +170783825071,214,0 +170783825119,213,0 +170783825168,213,0 +170783825216,213,0 +170783825264,213,0 +170783825312,213,0 +170783825360,213,0 +170783825409,213,0 +170783825457,213,0 +170783825505,213,0 +170783825555,213,0 +170783825603,214,0 +170783825650,213,0 +170783825698,213,0 +170783825746,214,0 +170783825796,214,0 +170783825844,214,0 +170783825892,214,0 +170783825941,214,0 +170783825991,214,0 +170783826040,214,0 +170783826088,213,0 +170783826137,213,0 +170783826187,213,0 +170783826235,213,0 +170783826284,213,0 +170783826334,213,0 +170783826381,213,0 +170783826429,213,0 +170783826477,213,0 +170783826527,213,0 +170783826576,213,0 +170783826624,214,0 +170783826673,214,0 +170783826721,214,0 +170783826769,214,0 +170783826817,214,0 +170783826867,214,0 +170783826916,214,0 +170783826964,214,0 +170783827013,213,0 +170783827063,213,0 +170783827112,213,0 +170783827160,213,0 +170783827208,213,0 +170783827258,213,0 +170783827306,213,0 +170783827355,213,0 +170783827403,213,0 +170783827453,213,0 +170783827500,214,0 +170783827548,214,0 +170783827596,214,0 +170783827646,214,0 +170783827694,214,0 +170783827742,214,0 +170783827790,214,0 +170783827838,214,0 +170783827887,214,0 +170783827935,213,0 +170783827983,213,0 +170783828031,213,0 +170783828079,213,0 +170783828127,213,0 +170783828175,213,0 +170783828224,213,0 +170783828272,213,0 +170783828320,213,0 +170783828368,213,0 +170783828418,213,0 +170783828467,213,0 +170783828515,214,0 +170783828563,214,0 +170783828613,214,0 +170783828662,214,0 +170783828710,214,0 +170783828758,214,0 +170783828808,214,0 +170783828856,213,0 +170783828903,213,0 +170783828951,213,0 +170783828999,213,0 +170783829047,213,0 +170783829095,213,0 +170783829143,213,0 +170783829193,213,0 +170783829242,213,0 +170783829292,213,0 +170783829340,214,0 +170783829389,213,0 +170783829437,213,0 +170783829486,214,0 +170783829534,214,0 +170783829582,214,0 +170783829630,214,0 +170783829678,214,0 +170783829726,214,0 +170783829774,214,0 +170783829823,214,0 +170783829871,214,0 +170783829921,214,0 +170783829969,214,0 +170783830018,214,0 +170783830066,214,0 +170783830116,214,0 +170783830164,214,0 +170783830212,214,0 +170783830259,213,0 +170783830309,213,0 +170783830357,213,0 +170783830405,213,0 +170783830453,213,0 +170783830501,213,0 +170783830548,213,0 +170783830596,213,0 +170783830646,213,0 +170783830695,213,0 +170783830745,214,0 +170783830792,214,0 +170783830840,214,0 +170783830890,214,0 +170783830938,214,0 +170783830986,214,0 +170783831035,214,0 +170783831083,214,0 +170783831131,214,0 +170783831179,213,0 +170783831227,213,0 +170783831275,213,0 +170783831324,213,0 +170783831372,213,0 +170783831420,213,0 +170783831468,213,0 +170783831518,213,0 +170783831565,213,0 +170783831615,213,0 +170783831663,213,0 +170783831712,214,0 +170783831762,214,0 +170783831810,213,0 +170783831858,214,0 +170783831906,214,0 +170783831955,214,0 +170783832003,214,0 +170783832053,214,0 +170783832101,213,0 +170783832148,213,0 +170783832198,213,0 +170783832246,213,0 +170783832295,213,0 +170783832343,213,0 +170783832391,213,0 +170783832439,213,0 +170783832489,213,0 +170783832538,214,0 +170783832586,213,0 +170783832634,214,0 +170783832684,214,0 +170783832731,214,0 +170783832779,214,0 +170783832827,214,0 +170783832875,214,0 +170783832924,214,0 +170783832974,214,0 +170783833022,213,0 +170783833070,213,0 +170783833118,213,0 +170783833167,213,0 +170783833215,213,0 +170783833263,213,0 +170783833311,213,0 +170783833359,214,0 +170783833407,214,0 +170783833456,214,0 +170783833504,214,0 +170783833552,214,0 +170783833601,214,0 +170783833649,214,0 +170783833697,214,0 +170783833745,214,0 +170783833795,214,0 +170783833843,214,0 +170783833892,214,0 +170783833940,214,0 +170783833988,213,0 +170783834036,213,0 +170783834084,213,0 +170783834132,213,0 +170783834180,213,0 +170783834228,213,0 +170783834276,214,0 +170783834324,214,0 +170783834373,214,0 +170783834423,214,0 +170783834471,214,0 +170783834520,214,0 +170783834568,214,0 +170783834616,214,0 +170783834664,214,0 +170783834712,214,0 +170783834760,214,0 +170783834808,214,0 +170783834856,214,0 +170783834905,213,0 +170783834955,213,0 +170783835003,213,0 +170783835051,213,0 +170783835100,213,0 +170783835150,213,0 +170783835197,213,0 +170783835247,213,0 +170783835295,213,0 +170783835344,213,0 +170783835392,214,0 +170783835442,214,0 +170783835489,214,0 +170783835537,214,0 +170783835585,214,0 +170783835635,214,0 +170783835684,214,0 +170783835732,214,0 +170783835780,214,0 +170783835828,213,0 +170783835878,213,0 +170783835927,213,0 +170783835976,213,0 +170783836024,213,0 +170783836074,213,0 +170783836123,213,0 +170783836173,213,0 +170783836221,213,0 +170783836270,213,0 +170783836318,213,0 +170783836367,213,0 +170783836415,213,0 +170783836463,213,0 +170783836511,214,0 +170783836559,214,0 +170783836607,213,0 +170783836655,214,0 +170783836704,214,0 +170783836752,213,0 +170783836800,213,0 +170783836848,213,0 +170783836896,213,0 +170783836944,213,0 +170783836994,213,0 +170783837041,213,0 +170783837091,213,0 +170783837139,213,0 +170783837188,213,0 +170783837236,213,0 +170783837284,213,0 +170783837334,213,0 +170783837382,213,0 +170783837429,213,0 +170783837479,213,0 +170783837527,214,0 +170783837575,213,0 +170783837624,214,0 +170783837672,213,0 +170783837720,213,0 +170783837768,213,0 +170783837818,213,0 +170783837866,213,0 +170783837915,213,0 +170783837963,213,0 +170783838012,213,0 +170783838062,213,0 +170783838111,213,0 +170783838159,213,0 +170783838209,213,0 +170783838257,213,0 +170783838305,213,0 +170783838354,213,0 +170783838402,214,0 +170783838450,214,0 +170783838498,214,0 +170783838546,214,0 +170783838594,213,0 +170783838643,213,0 +170783838691,213,0 +170783838741,213,0 +170783838790,213,0 +170783838838,213,0 +170783838886,213,0 +170783838935,213,0 +170783838983,213,0 +170783839031,213,0 +170783839079,214,0 +170783839129,214,0 +170783839176,214,0 +170783839224,214,0 +170783839274,214,0 +170783839322,214,0 +170783839370,214,0 +170783839418,214,0 +170783839467,214,0 +170783839515,213,0 +170783839565,213,0 +170783839612,213,0 +170783839660,213,0 +170783839708,213,0 +170783839756,213,0 +170783839804,213,0 +170783839852,213,0 +170783839900,213,0 +170783839948,213,0 +170783839995,213,0 +170783840045,213,0 +170783840093,213,0 +170783840141,214,0 +170783840189,214,0 +170783840238,214,0 +170783840286,214,0 +170783840336,214,0 +170783840384,214,0 +170783840432,214,0 +170783840481,213,0 +170783840529,213,0 +170783840578,213,0 +170783840626,213,0 +170783840676,213,0 +170783840724,213,0 +170783840773,213,0 +170783840823,213,0 +170783840871,213,0 +170783840920,213,0 +170783840970,213,0 +170783841019,213,0 +170783841069,214,0 +170783841118,214,0 +170783841168,214,0 +170783841216,214,0 +170783841264,214,0 +170783841313,214,0 +170783841361,214,0 +170783841409,213,0 +170783841457,213,0 +170783841505,213,0 +170783841555,213,0 +170783841603,213,0 +170783841650,213,0 +170783841700,213,0 +170783841748,213,0 +170783841796,213,0 +170783841843,213,0 +170783841891,214,0 +170783841939,214,0 +170783841987,214,0 +170783842035,214,0 +170783842083,214,0 +170783842133,214,0 +170783842181,214,0 +170783842230,214,0 +170783842278,214,0 +170783842326,213,0 +170783842376,213,0 +170783842425,213,0 +170783842475,213,0 +170783842524,213,0 +170783842573,213,0 +170783842621,213,0 +170783842669,213,0 +170783842719,213,0 +170783842767,214,0 +170783842815,214,0 +170783842862,214,0 +170783842910,214,0 +170783842958,214,0 +170783843008,214,0 +170783843057,214,0 +170783843105,214,0 +170783843155,214,0 +170783843204,214,0 +170783843252,213,0 +170783843302,213,0 +170783843349,213,0 +170783843398,213,0 +170783843445,213,0 +170783843495,213,0 +170783843543,213,0 +170783843591,213,0 +170783843639,213,0 +170783843688,213,0 +170783843736,213,0 +170783843784,214,0 +170783843832,214,0 +170783843880,214,0 +170783843928,214,0 +170783843976,214,0 +170783844023,214,0 +170783844071,214,0 +170783844119,214,0 +170783844167,213,0 +170783844217,213,0 +170783844266,213,0 +170783844314,213,0 +170783844362,213,0 +170783844411,213,0 +170783844459,213,0 +170783844507,213,0 +170783844555,213,0 +170783844603,214,0 +170783844651,214,0 +170783844699,214,0 +170783844748,214,0 +170783844796,214,0 +170783844844,214,0 +170783844892,214,0 +170783844940,214,0 +170783844988,214,0 +170783845036,214,0 +170783845084,213,0 +170783845132,213,0 +170783845179,213,0 +170783845227,213,0 +170783845275,213,0 +170783845323,213,0 +170783845373,213,0 +170783845421,213,0 +170783845470,213,0 +170783845518,213,0 +170783845566,213,0 +170783845613,213,0 +170783845661,214,0 +170783845709,214,0 +170783845757,214,0 +170783845805,214,0 +170783845852,214,0 +170783845900,214,0 +170783845948,214,0 +170783845997,214,0 +170783846045,213,0 +170783846093,213,0 +170783846141,213,0 +170783846189,213,0 +170783846237,213,0 +170783846285,213,0 +170783846332,213,0 +170783846380,213,0 +170783846428,213,0 +170783846478,213,0 +170783846526,213,0 +170783846574,214,0 +170783846621,213,0 +170783846669,214,0 +170783846717,214,0 +170783846765,214,0 +170783846815,214,0 +170783846863,214,0 +170783846911,214,0 +170783846959,213,0 +170783847006,213,0 +170783847054,213,0 +170783847102,213,0 +170783847150,213,0 +170783847198,213,0 +170783847246,213,0 +170783847294,213,0 +170783847344,213,0 +170783847393,213,0 +170783847443,213,0 +170783847492,213,0 +170783847542,213,0 +170783847589,214,0 +170783847637,214,0 +170783847685,214,0 +170783847735,214,0 +170783847784,214,0 +170783847832,214,0 +170783847882,213,0 +170783847930,213,0 +170783847978,213,0 +170783848027,213,0 +170783848075,213,0 +170783848123,213,0 +170783848171,213,0 +170783848218,213,0 +170783848268,213,0 +170783848316,213,0 +170783848364,213,0 +170783848412,213,0 +170783848461,214,0 +170783848509,214,0 +170783848559,214,0 +170783848608,214,0 +170783848658,214,0 +170783848705,214,0 +170783848753,214,0 +170783848803,213,0 +170783848852,213,0 +170783848902,213,0 +170783848950,213,0 +170783848999,213,0 +170783849047,213,0 +170783849097,213,0 +170783849145,213,0 +170783849194,213,0 +170783849244,213,0 +170783849293,213,0 +170783849341,214,0 +170783849390,214,0 +170783849438,214,0 +170783849486,214,0 +170783849536,214,0 +170783849583,214,0 +170783849631,214,0 +170783849681,214,0 +170783849730,213,0 +170783849778,213,0 +170783849826,213,0 +170783849874,213,0 +170783849924,213,0 +170783849972,213,0 +170783850019,213,0 +170783850067,213,0 +170783850115,213,0 +170783850163,213,0 +170783850213,213,0 +170783850261,213,0 +170783850308,213,0 +170783850356,214,0 +170783850404,214,0 +170783850454,214,0 +170783850502,214,0 +170783850550,214,0 +170783850597,214,0 +170783850647,214,0 +170783850695,213,0 +170783850743,213,0 +170783850791,213,0 +170783850838,213,0 +170783850888,213,0 +170783850936,213,0 +170783850984,213,0 +170783851031,213,0 +170783851079,213,0 +170783851127,213,0 +170783851175,213,0 +170783851223,213,0 +170783851270,214,0 +170783851318,214,0 +170783851366,214,0 +170783851416,214,0 +170783851464,213,0 +170783851511,214,0 +170783851559,214,0 +170783851607,213,0 +170783851655,213,0 +170783851703,213,0 +170783851751,213,0 +170783851798,213,0 +170783851846,213,0 +170783851894,213,0 +170783851942,213,0 +170783851991,213,0 +170783852041,213,0 +170783852090,213,0 +170783852138,213,0 +170783852186,213,0 +170783852236,213,0 +170783852284,214,0 +170783852332,213,0 +170783852379,214,0 +170783852427,214,0 +170783852475,214,0 +170783852523,213,0 +170783852571,213,0 +170783852619,213,0 +170783852667,213,0 +170783852716,213,0 +170783852764,213,0 +170783852814,213,0 +170783852863,213,0 +170783852911,213,0 +170783852959,213,0 +170783853007,213,0 +170783853056,213,0 +170783853106,213,0 +170783853154,213,0 +170783853202,213,0 +170783853251,213,0 +170783853299,213,0 +170783853349,214,0 +170783853396,214,0 +170783853444,213,0 +170783853492,213,0 +170783853542,213,0 +170783853591,213,0 +170783853639,213,0 +170783853687,213,0 +170783853737,213,0 +170783853786,213,0 +170783853835,213,0 +170783853883,213,0 +170783853931,213,0 +170783853979,213,0 +170783854029,213,0 +170783854077,213,0 +170783854125,213,0 +170783854174,213,0 +170783854222,214,0 +170783854270,214,0 +170783854318,214,0 +170783854366,213,0 +170783854414,213,0 +170783854462,213,0 +170783854511,213,0 +170783854561,213,0 +170783854610,213,0 +170783854660,213,0 +170783854709,213,0 +170783854757,213,0 +170783854807,213,0 +170783854855,214,0 +170783854904,214,0 +170783854952,214,0 +170783855000,214,0 +170783855048,214,0 +170783855096,214,0 +170783855145,214,0 +170783855193,214,0 +170783855240,214,0 +170783855288,213,0 +170783855336,213,0 +170783855384,213,0 +170783855432,214,0 +170783855480,213,0 +170783855528,213,0 +170783855576,213,0 +170783855623,214,0 +170783855671,214,0 +170783855719,214,0 +170783855767,214,0 +170783855815,214,0 +170783855864,214,0 +170783855914,214,0 +170783855962,214,0 +170783856010,214,0 +170783856058,214,0 +170783856107,214,0 +170783856157,214,0 +170783856206,214,0 +170783856254,213,0 +170783856302,214,0 +170783856350,214,0 +170783856398,214,0 +170783856445,214,0 +170783856493,214,0 +170783856543,214,0 +170783856590,214,0 +170783856638,214,0 +170783856686,214,0 +170783856735,214,0 +170783856783,214,0 +170783856831,214,0 +170783856879,214,0 +170783856927,214,0 +170783856977,214,0 +170783857025,214,0 +170783857073,214,0 +170783857121,214,0 +170783857168,213,0 +170783857216,213,0 +170783857264,213,0 +170783857312,214,0 +170783857362,214,0 +170783857410,214,0 +170783857459,214,0 +170783857507,214,0 +170783857555,214,0 +170783857604,214,0 +170783857652,214,0 +170783857700,214,0 +170783857748,214,0 +170783857797,214,0 +170783857845,214,0 +170783857893,214,0 +170783857941,214,0 +170783857991,214,0 +170783858039,214,0 +170783858088,213,0 +170783858136,213,0 +170783858184,213,0 +170783858232,213,0 +170783858279,213,0 +170783858327,213,0 +170783858375,214,0 +170783858423,214,0 +170783858472,214,0 +170783858522,214,0 +170783858570,214,0 +170783858619,214,0 +170783858667,214,0 +170783858715,214,0 +170783858763,214,0 +170783858811,214,0 +170783858858,214,0 +170783858908,214,0 +170783858955,214,0 +170783859003,213,0 +170783859053,213,0 +170783859101,213,0 +170783859149,213,0 +170783859196,213,0 +170783859244,213,0 +170783859292,214,0 +170783859342,213,0 +170783859389,214,0 +170783859437,214,0 +170783859485,214,0 +170783859533,214,0 +170783859581,214,0 +170783859629,214,0 +170783859676,214,0 +170783859726,214,0 +170783859775,214,0 +170783859823,214,0 +170783859873,214,0 +170783859920,213,0 +170783859970,213,0 +170783860018,213,0 +170783860065,213,0 +170783860115,213,0 +170783860163,213,0 +170783860212,213,0 +170783860260,213,0 +170783860308,213,0 +170783860358,213,0 +170783860407,213,0 +170783860455,214,0 +170783860505,214,0 +170783860553,214,0 +170783860601,214,0 +170783860650,214,0 +170783860698,214,0 +170783860746,214,0 +170783860795,214,0 +170783860843,213,0 +170783860891,213,0 +170783860939,213,0 +170783860987,213,0 +170783861036,213,0 +170783861084,213,0 +170783861132,213,0 +170783861180,213,0 +170783861228,213,0 +170783861275,213,0 +170783861323,213,0 +170783861371,213,0 +170783861420,213,0 +170783861468,213,0 +170783861518,213,0 +170783861566,214,0 +170783861615,214,0 +170783861665,214,0 +170783861713,214,0 +170783861761,214,0 +170783861810,213,0 +170783861860,213,0 +170783861908,213,0 +170783861956,213,0 +170783862004,213,0 +170783862053,213,0 +170783862101,213,0 +170783862151,213,0 +170783862200,213,0 +170783862250,214,0 +170783862298,214,0 +170783862347,214,0 +170783862395,214,0 +170783862443,214,0 +170783862491,214,0 +170783862539,214,0 +170783862587,214,0 +170783862636,214,0 +170783862684,214,0 +170783862733,213,0 +170783862781,213,0 +170783862831,213,0 +170783862880,213,0 +170783862928,213,0 +170783862976,213,0 +170783863024,213,0 +170783863072,213,0 +170783863120,213,0 +170783863168,213,0 +170783863216,213,0 +170783863264,214,0 +170783863312,214,0 +170783863360,214,0 +170783863407,214,0 +170783863455,214,0 +170783863503,214,0 +170783863551,214,0 +170783863599,214,0 +170783863647,213,0 +170783863696,213,0 +170783863744,213,0 +170783863794,213,0 +170783863843,213,0 +170783863893,213,0 +170783863941,213,0 +170783863988,213,0 +170783864036,213,0 +170783864084,213,0 +170783864132,213,0 +170783864180,214,0 +170783864229,214,0 +170783864279,214,0 +170783864328,213,0 +170783864376,214,0 +170783864426,214,0 +170783864475,214,0 +170783864525,214,0 +170783864574,213,0 +170783864622,213,0 +170783864671,213,0 +170783864721,213,0 +170783864769,213,0 +170783864817,213,0 +170783864866,213,0 +170783864914,213,0 +170783864964,213,0 +170783865012,213,0 +170783865060,213,0 +170783865109,213,0 +170783865158,214,0 +170783865206,214,0 +170783865254,214,0 +170783865302,214,0 +170783865352,214,0 +170783865400,214,0 +170783865449,214,0 +170783865497,213,0 +170783865547,213,0 +170783865594,213,0 +170783865642,213,0 +170783865692,213,0 +170783865741,213,0 +170783865790,213,0 +170783865838,213,0 +170783865886,213,0 +170783865934,213,0 +170783865982,213,0 +170783866029,213,0 +170783866077,213,0 +170783866127,213,0 +170783866174,214,0 +170783866222,214,0 +170783866270,214,0 +170783866318,214,0 +170783866366,214,0 +170783866414,213,0 +170783866462,213,0 +170783866509,213,0 +170783866557,213,0 +170783866605,213,0 +170783866653,213,0 +170783866701,213,0 +170783866750,213,0 +170783866798,213,0 +170783866846,213,0 +170783866895,213,0 +170783866945,213,0 +170783866995,213,0 +170783867042,213,0 +170783867090,213,0 +170783867140,213,0 +170783867188,213,0 +170783867236,214,0 +170783867284,214,0 +170783867333,213,0 +170783867381,213,0 +170783867429,213,0 +170783867477,213,0 +170783867525,213,0 +170783867573,213,0 +170783867621,213,0 +170783867671,213,0 +170783867718,213,0 +170783867766,213,0 +170783867814,213,0 +170783867862,213,0 +170783867910,213,0 +170783867958,214,0 +170783868007,214,0 +170783868055,214,0 +170783868103,214,0 +170783868153,214,0 +170783868200,214,0 +170783868250,213,0 +170783868298,213,0 +170783868345,213,0 +170783868395,213,0 +170783868443,213,0 +170783868491,213,0 +170783868539,213,0 +170783868587,213,0 +170783868635,213,0 +170783868683,213,0 +170783868730,213,0 +170783868780,213,0 +170783868828,213,0 +170783868876,213,0 +170783868923,214,0 +170783868971,214,0 +170783869019,214,0 +170783869067,214,0 +170783869115,214,0 +170783869163,214,0 +170783869211,213,0 +170783869260,213,0 +170783869308,213,0 +170783869356,213,0 +170783869406,213,0 +170783869454,213,0 +170783869503,213,0 +170783869551,213,0 +170783869601,213,0 +170783869650,213,0 +170783869698,213,0 +170783869748,214,0 +170783869796,214,0 +170783869844,214,0 +170783869891,214,0 +170783869939,214,0 +170783869987,214,0 +170783870037,214,0 +170783870085,214,0 +170783870133,213,0 +170783870180,213,0 +170783870228,213,0 +170783870278,213,0 +170783870326,213,0 +170783870373,213,0 +170783870421,213,0 +170783870471,213,0 +170783870519,213,0 +170783870568,214,0 +170783870618,214,0 +170783870667,213,0 +170783870715,213,0 +170783870763,214,0 +170783870811,214,0 +170783870859,214,0 +170783870908,214,0 +170783870958,214,0 +170783871006,214,0 +170783871053,213,0 +170783871101,213,0 +170783871149,213,0 +170783871199,213,0 +170783871248,213,0 +170783871296,213,0 +170783871344,213,0 +170783871394,213,0 +170783871443,213,0 +170783871492,213,0 +170783871540,213,0 +170783871590,214,0 +170783871638,214,0 +170783871686,214,0 +170783871734,214,0 +170783871783,214,0 +170783871831,214,0 +170783871879,214,0 +170783871926,214,0 +170783871974,213,0 +170783872024,213,0 +170783872072,213,0 +170783872119,213,0 +170783872167,213,0 +170783872215,213,0 +170783872263,213,0 +170783872311,213,0 +170783872359,213,0 +170783872408,213,0 +170783872456,213,0 +170783872504,214,0 +170783872552,214,0 +170783872602,214,0 +170783872649,214,0 +170783872697,214,0 +170783872745,214,0 +170783872793,214,0 +170783872841,214,0 +170783872888,213,0 +170783872936,213,0 +170783872984,213,0 +170783873032,213,0 +170783873080,213,0 +170783873128,213,0 +170783873177,213,0 +170783873227,213,0 +170783873274,213,0 +170783873322,213,0 +170783873370,214,0 +170783873418,213,0 +170783873468,214,0 +170783873516,214,0 +170783873564,214,0 +170783873613,214,0 +170783873661,214,0 +170783873709,214,0 +170783873757,214,0 +170783873806,214,0 +170783873856,213,0 +170783873904,213,0 +170783873952,213,0 +170783874000,213,0 +170783874049,213,0 +170783874097,213,0 +170783874147,213,0 +170783874195,213,0 +170783874244,213,0 +170783874294,213,0 +170783874343,214,0 +170783874391,213,0 +170783874439,214,0 +170783874487,214,0 +170783874535,214,0 +170783874583,214,0 +170783874633,214,0 +170783874682,214,0 +170783874732,213,0 +170783874781,212,0 +170783874831,213,0 +170783874879,213,0 +170783874926,213,0 +170783874974,213,0 +170783875022,213,0 +170783875072,213,0 +170783875121,213,0 +170783875169,213,0 +170783875217,213,0 +170783875266,214,0 +170783875314,214,0 +170783875362,214,0 +170783875410,214,0 +170783875458,214,0 +170783875508,214,0 +170783875556,214,0 +170783875604,214,0 +170783875652,214,0 +170783875701,213,0 +170783875749,213,0 +170783875797,213,0 +170783875845,213,0 +170783875893,213,0 +170783875941,213,0 +170783875989,213,0 +170783876036,213,0 +170783876086,213,0 +170783876134,213,0 +170783876183,214,0 +170783876231,214,0 +170783876279,214,0 +170783876327,214,0 +170783876375,214,0 +170783876423,214,0 +170783876471,214,0 +170783876519,214,0 +170783876567,214,0 +170783876615,213,0 +170783876662,213,0 +170783876712,213,0 +170783876761,213,0 +170783876809,213,0 +170783876859,213,0 +170783876907,213,0 +170783876955,214,0 +170783877002,214,0 +170783877052,214,0 +170783877100,214,0 +170783877148,214,0 +170783877196,214,0 +170783877244,214,0 +170783877291,214,0 +170783877339,214,0 +170783877387,214,0 +170783877435,214,0 +170783877483,214,0 +170783877531,213,0 +170783877580,213,0 +170783877628,213,0 +170783877676,213,0 +170783877724,213,0 +170783877774,213,0 +170783877823,214,0 +170783877873,214,0 +170783877921,214,0 +170783877969,214,0 +170783878018,214,0 +170783878066,214,0 +170783878116,214,0 +170783878164,214,0 +170783878211,214,0 +170783878259,214,0 +170783878307,214,0 +170783878357,214,0 +170783878406,214,0 +170783878456,213,0 +170783878505,213,0 +170783878553,213,0 +170783878601,213,0 +170783878651,213,0 +170783878700,213,0 +170783878750,213,0 +170783878798,213,0 +170783878846,213,0 +170783878894,213,0 +170783878943,213,0 +170783878991,214,0 +170783879039,214,0 +170783879087,214,0 +170783879135,214,0 +170783879184,214,0 +170783879232,214,0 +170783879282,214,0 +170783879331,214,0 +170783879381,213,0 +170783879429,213,0 +170783879478,213,0 +170783879528,213,0 +170783879576,213,0 +170783879624,213,0 +170783879672,213,0 +170783879720,213,0 +170783879768,213,0 +170783879815,213,0 +170783879863,213,0 +170783879911,213,0 +170783879959,214,0 +170783880009,214,0 +170783880058,214,0 +170783880106,214,0 +170783880156,214,0 +170783880203,214,0 +170783880251,214,0 +170783880299,213,0 +170783880347,213,0 +170783880397,213,0 +170783880446,213,0 +170783880494,213,0 +170783880544,213,0 +170783880593,213,0 +170783880641,213,0 +170783880689,213,0 +170783880737,213,0 +170783880785,213,0 +170783880835,213,0 +170783880884,213,0 +170783880934,213,0 +170783880982,213,0 +170783881030,214,0 +170783881077,214,0 +170783881125,214,0 +170783881175,214,0 +170783881223,213,0 +170783881271,213,0 +170783881320,213,0 +170783881368,213,0 +170783881416,213,0 +170783881464,213,0 +170783881514,213,0 +170783881562,213,0 +170783881610,213,0 +170783881659,213,0 +170783881709,213,0 +170783881758,213,0 +170783881806,213,0 +170783881856,213,0 +170783881905,214,0 +170783881953,214,0 +170783882003,214,0 +170783882051,214,0 +170783882100,214,0 +170783882148,213,0 +170783882196,213,0 +170783882246,213,0 +170783882293,213,0 +170783882341,213,0 +170783882389,213,0 +170783882437,213,0 +170783882485,213,0 +170783882533,213,0 +170783882581,213,0 +170783882629,213,0 +170783882679,213,0 +170783882726,214,0 +170783882776,214,0 +170783882824,214,0 +170783882873,214,0 +170783882921,214,0 +170783882969,214,0 +170783883019,214,0 +170783883067,213,0 +170783883115,213,0 +170783883163,213,0 +170783883211,213,0 +170783883258,213,0 +170783883308,213,0 +170783883356,213,0 +170783883404,213,0 +170783883453,213,0 +170783883503,213,0 +170783883551,213,0 +170783883599,214,0 +170783883647,214,0 +170783883696,214,0 +170783883744,214,0 +170783883793,214,0 +170783883841,214,0 +170783883891,214,0 +170783883939,214,0 +170783883987,214,0 +170783884035,213,0 +170783884084,213,0 +170783884132,213,0 +170783884182,213,0 +170783884231,213,0 +170783884279,213,0 +170783884328,213,0 +170783884376,213,0 +170783884424,213,0 +170783884472,213,0 +170783884520,214,0 +170783884568,214,0 +170783884616,214,0 +170783884664,214,0 +170783884712,214,0 +170783884761,214,0 +170783884811,214,0 +170783884859,214,0 +170783884907,214,0 +170783884954,213,0 +170783885004,213,0 +170783885052,213,0 +170783885100,213,0 +170783885148,213,0 +170783885197,213,0 +170783885245,213,0 +170783885293,214,0 +170783885341,213,0 +170783885390,213,0 +170783885438,214,0 +170783885486,214,0 +170783885534,214,0 +170783885582,214,0 +170783885630,214,0 +170783885678,214,0 +170783885726,214,0 +170783885774,214,0 +170783885822,214,0 +170783885870,213,0 +170783885918,213,0 +170783885967,213,0 +170783886015,213,0 +170783886063,213,0 +170783886111,213,0 +170783886159,213,0 +170783886207,213,0 +170783886256,213,0 +170783886304,213,0 +170783886352,213,0 +170783886400,214,0 +170783886448,214,0 +170783886495,214,0 +170783886543,214,0 +170783886591,214,0 +170783886639,214,0 +170783886687,214,0 +170783886735,214,0 +170783886783,213,0 +170783886830,213,0 +170783886878,213,0 +170783886926,213,0 +170783886975,213,0 +170783887025,213,0 +170783887074,213,0 +170783887122,213,0 +170783887172,213,0 +170783887220,214,0 +170783887270,214,0 +170783887319,214,0 +170783887367,214,0 +170783887417,214,0 +170783887466,214,0 +170783887516,214,0 +170783887563,214,0 +170783887611,214,0 +170783887659,214,0 +170783887707,213,0 +170783887755,213,0 +170783887803,213,0 +170783887851,213,0 +170783887901,213,0 +170783887949,213,0 +170783887997,213,0 +170783888046,213,0 +170783888094,214,0 +170783888142,214,0 +170783888190,214,0 +170783888237,214,0 +170783888285,214,0 +170783888333,214,0 +170783888381,214,0 +170783888429,214,0 +170783888479,214,0 +170783888527,214,0 +170783888574,214,0 +170783888622,213,0 +170783888670,213,0 +170783888718,213,0 +170783888768,213,0 +170783888816,213,0 +170783888864,213,0 +170783888913,213,0 +170783888961,213,0 +170783889011,213,0 +170783889059,213,0 +170783889107,214,0 +170783889156,214,0 +170783889206,214,0 +170783889254,214,0 +170783889303,214,0 +170783889351,214,0 +170783889401,214,0 +170783889448,214,0 +170783889496,214,0 +170783889544,214,0 +170783889592,213,0 +170783889640,213,0 +170783889688,213,0 +170783889736,213,0 +170783889783,213,0 +170783889833,213,0 +170783889881,213,0 +170783889929,213,0 +170783889977,213,0 +170783890024,213,0 +170783890074,213,0 +170783890122,214,0 +170783890170,214,0 +170783890217,214,0 +170783890265,214,0 +170783890313,214,0 +170783890361,214,0 +170783890409,214,0 +170783890457,214,0 +170783890504,213,0 +170783890552,213,0 +170783890600,213,0 +170783890648,213,0 +170783890696,213,0 +170783890744,213,0 +170783890792,213,0 +170783890839,213,0 +170783890887,213,0 +170783890935,213,0 +170783890985,213,0 +170783891033,214,0 +170783891080,214,0 +170783891128,214,0 +170783891176,214,0 +170783891225,214,0 +170783891273,214,0 +170783891321,214,0 +170783891369,214,0 +170783891418,213,0 +170783891466,213,0 +170783891514,213,0 +170783891562,213,0 +170783891611,213,0 +170783891659,213,0 +170783891707,213,0 +170783891755,213,0 +170783891803,213,0 +170783891851,213,0 +170783891901,214,0 +170783891948,213,0 +170783891996,214,0 +170783892044,214,0 +170783892092,214,0 +170783892140,214,0 +170783892188,214,0 +170783892236,214,0 +170783892283,214,0 +170783892331,213,0 +170783892379,213,0 +170783892429,213,0 +170783892477,213,0 +170783892524,213,0 +170783892572,213,0 +170783892620,213,0 +170783892670,213,0 +170783892717,213,0 +170783892767,213,0 +170783892815,213,0 +170783892862,213,0 +170783892912,213,0 +170783892960,214,0 +170783893008,214,0 +170783893057,214,0 +170783893105,214,0 +170783893154,214,0 +170783893202,214,0 +170783893250,213,0 +170783893298,213,0 +170783893346,213,0 +170783893396,213,0 +170783893443,213,0 +170783893492,213,0 +170783893539,213,0 +170783893587,213,0 +170783893637,213,0 +170783893685,213,0 +170783893734,213,0 +170783893782,213,0 +170783893830,213,0 +170783893878,214,0 +170783893926,214,0 +170783893974,214,0 +170783894022,214,0 +170783894071,214,0 +170783894121,214,0 +170783894169,213,0 +170783894217,213,0 +170783894266,213,0 +170783894314,213,0 +170783894362,213,0 +170783894410,213,0 +170783894458,213,0 +170783894505,213,0 +170783894553,213,0 +170783894603,213,0 +170783894651,213,0 +170783894699,213,0 +170783894747,213,0 +170783894795,213,0 +170783894842,213,0 +170783894890,214,0 +170783894938,214,0 +170783894986,214,0 +170783895034,214,0 +170783895082,214,0 +170783895130,213,0 +170783895180,213,0 +170783895229,213,0 +170783895277,213,0 +170783895325,213,0 +170783895373,213,0 +170783895421,213,0 +170783895469,213,0 +170783895517,213,0 +170783895565,213,0 +170783895615,213,0 +170783895663,213,0 +170783895711,214,0 +170783895759,214,0 +170783895808,214,0 +170783895856,214,0 +170783895904,214,0 +170783895952,214,0 +170783896000,214,0 +170783896048,213,0 +170783896096,213,0 +170783896144,213,0 +170783896192,213,0 +170783896241,213,0 +170783896289,213,0 +170783896337,213,0 +170783896385,213,0 +170783896434,213,0 +170783896482,213,0 +170783896530,213,0 +170783896578,213,0 +170783896628,213,0 +170783896676,214,0 +170783896723,214,0 +170783896771,214,0 +170783896821,214,0 +170783896869,214,0 +170783896917,214,0 +170783896966,213,0 +170783897016,213,0 +170783897065,213,0 +170783897113,213,0 +170783897161,213,0 +170783897209,213,0 +170783897256,213,0 +170783897304,213,0 +170783897352,213,0 +170783897400,214,0 +170783897450,214,0 +170783897498,214,0 +170783897545,214,0 +170783897593,214,0 +170783897641,214,0 +170783897691,214,0 +170783897739,214,0 +170783897788,214,0 +170783897838,214,0 +170783897887,213,0 +170783897935,213,0 +170783897983,213,0 +170783898031,214,0 +170783898079,213,0 +170783898127,213,0 +170783898175,213,0 +170783898222,214,0 +170783898270,214,0 +170783898320,214,0 +170783898368,214,0 +170783898415,214,0 +170783898463,214,0 +170783898511,214,0 +170783898559,214,0 +170783898609,214,0 +170783898657,214,0 +170783898705,214,0 +170783898753,214,0 +170783898800,213,0 +170783898848,213,0 +170783898898,213,0 +170783898946,213,0 +170783898994,213,0 +170783899042,213,0 +170783899091,214,0 +170783899141,214,0 +170783899190,214,0 +170783899238,214,0 +170783899286,214,0 +170783899336,214,0 +170783899383,214,0 +170783899431,214,0 +170783899479,214,0 +170783899527,214,0 +170783899577,214,0 +170783899626,214,0 +170783899674,214,0 +170783899722,213,0 +170783899771,213,0 +170783899819,213,0 +170783899867,213,0 +170783899915,213,0 +170783899963,213,0 +170783900011,213,0 +170783900059,213,0 +170783900108,213,0 +170783900158,213,0 +170783900205,214,0 +170783900253,214,0 +170783900301,214,0 +170783900349,214,0 +170783900397,214,0 +170783900445,214,0 +170783900494,214,0 +170783900542,214,0 +170783900590,214,0 +170783900640,213,0 +170783900689,213,0 +170783900739,213,0 +170783900788,213,0 +170783900836,213,0 +170783900884,213,0 +170783900932,213,0 +170783900980,213,0 +170783901028,213,0 +170783901078,213,0 +170783901125,213,0 +170783901173,213,0 +170783901222,213,0 +170783901270,214,0 +170783901318,214,0 +170783901366,214,0 +170783901416,214,0 +170783901465,214,0 +170783901513,214,0 +170783901561,213,0 +170783901609,213,0 +170783901657,213,0 +170783901705,213,0 +170783901753,213,0 +170783901802,213,0 +170783901852,213,0 +170783901900,213,0 +170783901948,213,0 +170783901996,213,0 +170783902044,213,0 +170783902092,213,0 +170783902140,213,0 +170783902189,213,0 +170783902239,214,0 +170783902288,214,0 +170783902336,214,0 +170783902384,214,0 +170783902434,214,0 +170783902481,213,0 +170783902531,213,0 +170783902580,213,0 +170783902628,213,0 +170783902676,213,0 +170783902724,213,0 +170783902772,213,0 +170783902820,213,0 +170783902870,213,0 +170783902917,213,0 +170783902965,213,0 +170783903013,214,0 +170783903061,214,0 +170783903109,214,0 +170783903159,214,0 +170783903207,214,0 +170783903255,214,0 +170783903304,214,0 +170783903354,214,0 +170783903402,213,0 +170783903451,213,0 +170783903499,213,0 +170783903548,213,0 +170783903596,213,0 +170783903645,213,0 +170783903695,213,0 +170783903743,213,0 +170783903791,213,0 +170783903839,213,0 +170783903888,213,0 +170783903937,214,0 +170783903985,214,0 +170783904033,214,0 +170783904081,214,0 +170783904131,214,0 +170783904179,214,0 +170783904227,214,0 +170783904276,213,0 +170783904325,213,0 +170783904373,213,0 +170783904421,213,0 +170783904469,213,0 +170783904517,213,0 +170783904565,213,0 +170783904615,213,0 +170783904663,213,0 +170783904712,213,0 +170783904760,213,0 +170783904810,214,0 +170783904858,214,0 +170783904905,214,0 +170783904953,214,0 +170783905001,214,0 +170783905049,214,0 +170783905097,214,0 +170783905145,214,0 +170783905193,213,0 +170783905242,212,0 +170783905290,213,0 +170783905338,213,0 +170783905386,213,0 +170783905436,213,0 +170783905485,213,0 +170783905533,213,0 +170783905583,213,0 +170783905631,213,0 +170783905679,213,0 +170783905728,213,0 +170783905778,214,0 +170783905825,214,0 +170783905875,213,0 +170783905923,213,0 +170783905971,214,0 +170783906020,213,0 +170783906068,214,0 +170783906116,213,0 +170783906164,213,0 +170783906212,213,0 +170783906261,213,0 +170783906309,213,0 +170783906357,213,0 +170783906405,213,0 +170783906453,213,0 +170783906503,213,0 +170783906551,213,0 +170783906598,213,0 +170783906648,213,0 +170783906696,214,0 +170783906745,214,0 +170783906793,214,0 +170783906843,214,0 +170783906891,214,0 +170783906940,214,0 +170783906988,214,0 +170783907036,213,0 +170783907086,213,0 +170783907133,213,0 +170783907181,213,0 +170783907229,213,0 +170783907279,213,0 +170783907328,213,0 +170783907376,213,0 +170783907426,213,0 +170783907476,214,0 +170783907525,214,0 +170783907575,213,0 +170783907623,214,0 +170783907672,214,0 +170783907720,214,0 +170783907768,214,0 +170783907817,214,0 +170783907865,214,0 +170783907913,214,0 +170783907961,213,0 +170783908009,213,0 +170783908058,213,0 +170783908108,213,0 +170783908156,213,0 +170783908204,213,0 +170783908252,213,0 +170783908299,213,0 +170783908347,213,0 +170783908395,214,0 +170783908443,214,0 +170783908493,214,0 +170783908541,214,0 +170783908589,214,0 +170783908638,214,0 +170783908688,214,0 +170783908736,214,0 +170783908785,214,0 +170783908835,213,0 +170783908884,213,0 +170783908934,213,0 +170783908983,213,0 +170783909033,213,0 +170783909081,213,0 +170783909129,213,0 +170783909177,213,0 +170783909224,214,0 +170783909272,213,0 +170783909320,214,0 +170783909368,214,0 +170783909418,214,0 +170783909466,214,0 +170783909514,214,0 +170783909562,214,0 +170783909610,214,0 +170783909658,214,0 +170783909707,214,0 +170783909755,213,0 +170783909803,213,0 +170783909851,213,0 +170783909900,213,0 +170783909950,213,0 +170783909999,213,0 +170783910047,213,0 +170783910095,213,0 +170783910143,213,0 +170783910191,213,0 +170783910240,214,0 +170783910290,214,0 +170783910338,214,0 +170783910387,214,0 +170783910435,214,0 +170783910485,214,0 +170783910534,214,0 +170783910584,214,0 +170783910632,214,0 +170783910680,213,0 +170783910727,213,0 +170783910775,213,0 +170783910823,213,0 +170783910871,213,0 +170783910919,213,0 +170783910967,213,0 +170783911016,213,0 +170783911066,214,0 +170783911116,214,0 +170783911165,214,0 +170783911214,214,0 +170783911262,214,0 +170783911310,214,0 +170783911358,214,0 +170783911406,214,0 +170783911454,214,0 +170783911502,214,0 +170783911552,214,0 +170783911600,213,0 +170783911647,213,0 +170783911697,213,0 +170783911746,213,0 +170783911796,213,0 +170783911845,213,0 +170783911893,213,0 +170783911941,213,0 +170783911989,214,0 +170783912037,214,0 +170783912086,214,0 +170783912134,214,0 +170783912182,214,0 +170783912231,214,0 +170783912279,214,0 +170783912329,214,0 +170783912377,214,0 +170783912424,214,0 +170783912472,214,0 +170783912520,213,0 +170783912569,213,0 +170783912617,213,0 +170783912665,213,0 +170783912715,213,0 +170783912763,213,0 +170783912810,213,0 +170783912858,213,0 +170783912906,213,0 +170783912956,213,0 +170783913004,213,0 +170783913052,214,0 +170783913100,214,0 +170783913148,214,0 +170783913197,214,0 +170783913245,214,0 +170783913293,214,0 +170783913341,214,0 +170783913389,213,0 +170783913438,213,0 +170783913488,213,0 +170783913536,213,0 +170783913585,213,0 +170783913635,213,0 +170783913684,213,0 +170783913732,213,0 +170783913780,213,0 +170783913828,213,0 +170783913876,213,0 +170783913924,213,0 +170783913972,213,0 +170783914020,213,0 +170783914068,213,0 +170783914117,214,0 +170783914167,214,0 +170783914215,214,0 +170783914263,214,0 +170783914312,213,0 +170783914361,213,0 +170783914411,213,0 +170783914459,213,0 +170783914507,213,0 +170783914555,213,0 +170783914603,213,0 +170783914652,213,0 +170783914700,213,0 +170783914748,213,0 +170783914796,213,0 +170783914844,214,0 +170783914892,214,0 +170783914940,214,0 +170783914988,214,0 +170783915036,214,0 +170783915084,214,0 +170783915132,214,0 +170783915180,214,0 +170783915229,213,0 +170783915277,213,0 +170783915325,213,0 +170783915373,213,0 +170783915423,213,0 +170783915472,213,0 +170783915520,213,0 +170783915568,213,0 +170783915617,214,0 +170783915667,213,0 +170783915716,214,0 +170783915766,214,0 +170783915814,214,0 +170783915862,214,0 +170783915910,214,0 +170783915957,214,0 +170783916005,214,0 +170783916053,214,0 +170783916101,214,0 +170783916149,213,0 +170783916197,213,0 +170783916245,213,0 +170783916293,213,0 +170783916342,213,0 +170783916390,213,0 +170783916440,214,0 +170783916488,213,0 +170783916536,214,0 +170783916584,214,0 +170783916632,214,0 +170783916680,214,0 +170783916729,214,0 +170783916778,214,0 +170783916828,214,0 +170783916877,214,0 +170783916927,214,0 +170783916975,214,0 +170783917024,214,0 +170783917072,213,0 +170783917120,213,0 +170783917170,213,0 +170783917218,213,0 +170783917265,213,0 +170783917313,214,0 +170783917363,214,0 +170783917411,214,0 +170783917460,214,0 +170783917510,214,0 +170783917558,214,0 +170783917606,214,0 +170783917655,214,0 +170783917703,214,0 +170783917751,214,0 +170783917799,214,0 +170783917847,214,0 +170783917895,214,0 +170783917943,214,0 +170783917992,213,0 +170783918040,213,0 +170783918088,213,0 +170783918136,213,0 +170783918185,213,0 +170783918233,213,0 +170783918281,213,0 +170783918329,214,0 +170783918377,214,0 +170783918424,214,0 +170783918474,214,0 +170783918523,214,0 +170783918571,214,0 +170783918619,214,0 +170783918667,214,0 +170783918717,214,0 +170783918766,214,0 +170783918814,214,0 +170783918863,214,0 +170783918911,213,0 +170783918959,213,0 +170783919007,213,0 +170783919055,213,0 +170783919103,213,0 +170783919151,213,0 +170783919199,213,0 +170783919247,213,0 +170783919295,214,0 +170783919342,213,0 +170783919390,214,0 +170783919438,214,0 +170783919486,214,0 +170783919534,214,0 +170783919582,214,0 +170783919630,214,0 +170783919678,214,0 +170783919725,214,0 +170783919773,214,0 +170783919823,213,0 +170783919872,213,0 +170783919922,213,0 +170783919970,213,0 +170783920018,213,0 +170783920067,213,0 +170783920115,213,0 +170783920163,213,0 +170783920210,213,0 +170783920258,213,0 +170783920306,213,0 +170783920356,214,0 +170783920403,214,0 +170783920451,214,0 +170783920499,214,0 +170783920549,214,0 +170783920598,214,0 +170783920648,214,0 +170783920696,214,0 +170783920745,213,0 +170783920793,213,0 +170783920841,213,0 +170783920889,213,0 +170783920937,213,0 +170783920987,213,0 +170783921036,213,0 +170783921084,213,0 +170783921132,213,0 +170783921180,213,0 +170783921228,214,0 +170783921278,214,0 +170783921326,214,0 +170783921374,214,0 +170783921423,214,0 +170783921471,214,0 +170783921519,214,0 +170783921569,214,0 +170783921617,213,0 +170783921664,213,0 +170783921712,213,0 +170783921760,213,0 +170783921808,213,0 +170783921856,213,0 +170783921904,213,0 +170783921951,213,0 +170783921999,213,0 +170783922047,213,0 +170783922095,214,0 +170783922143,214,0 +170783922191,214,0 +170783922240,214,0 +170783922288,214,0 +170783922336,214,0 +170783922384,214,0 +170783922432,214,0 +170783922479,214,0 +170783922527,213,0 +170783922575,213,0 +170783922623,213,0 +170783922671,213,0 +170783922719,213,0 +170783922766,213,0 +170783922814,213,0 +170783922862,213,0 +170783922910,213,0 +170783922958,213,0 +170783923007,213,0 +170783923055,213,0 +170783923103,214,0 +170783923151,214,0 +170783923200,214,0 +170783923248,214,0 +170783923296,214,0 +170783923344,214,0 +170783923392,214,0 +170783923440,213,0 +170783923489,213,0 +170783923537,213,0 +170783923587,213,0 +170783923636,213,0 +170783923686,213,0 +170783923734,213,0 +170783923781,213,0 +170783923829,213,0 +170783923879,213,0 +170783923927,213,0 +170783923975,213,0 +170783924023,214,0 +170783924071,214,0 +170783924120,214,0 +170783924168,214,0 +170783924216,214,0 +170783924264,214,0 +170783924312,214,0 +170783924360,213,0 +170783924408,213,0 +170783924456,213,0 +170783924504,213,0 +170783924553,213,0 +170783924601,213,0 +170783924649,213,0 +170783924697,213,0 +170783924746,213,0 +170783924794,213,0 +170783924844,213,0 +170783924892,214,0 +170783924941,213,0 +170783924991,214,0 +170783925040,214,0 +170783925088,214,0 +170783925136,214,0 +170783925184,214,0 +170783925233,214,0 +170783925281,213,0 +170783925329,213,0 +170783925377,213,0 +170783925425,213,0 +170783925473,213,0 +170783925522,213,0 +170783925570,213,0 +170783925620,213,0 +170783925668,213,0 +170783925716,213,0 +170783925764,213,0 +170783925811,214,0 +170783925859,213,0 +170783925907,214,0 +170783925955,214,0 +170783926003,214,0 +170783926053,214,0 +170783926101,214,0 +170783926149,214,0 +170783926198,213,0 +170783926246,212,0 +170783926294,213,0 +170783926342,213,0 +170783926389,213,0 +170783926437,213,0 +170783926487,213,0 +170783926536,213,0 +170783926586,213,0 +170783926634,213,0 +170783926683,213,0 +170783926733,214,0 +170783926782,214,0 +170783926830,214,0 +170783926878,214,0 +170783926927,214,0 +170783926977,214,0 +170783927025,214,0 +170783927073,213,0 +170783927121,213,0 +170783927169,213,0 +170783927217,213,0 +170783927266,213,0 +170783927316,213,0 +170783927364,213,0 +170783927413,213,0 +170783927463,213,0 +170783927511,213,0 +170783927559,213,0 +170783927608,213,0 +170783927656,213,0 +170783927704,214,0 +170783927751,214,0 +170783927799,214,0 +170783927847,214,0 +170783927895,214,0 +170783927943,214,0 +170783927991,214,0 +170783928038,213,0 +170783928086,213,0 +170783928134,213,0 +170783928184,213,0 +170783928232,213,0 +170783928281,213,0 +170783928329,213,0 +170783928377,213,0 +170783928425,213,0 +170783928473,213,0 +170783928521,214,0 +170783928569,214,0 +170783928617,213,0 +170783928666,214,0 +170783928716,214,0 +170783928765,214,0 +170783928813,214,0 +170783928861,214,0 +170783928909,213,0 +170783928958,213,0 +170783929006,213,0 +170783929054,213,0 +170783929104,213,0 +170783929152,213,0 +170783929200,213,0 +170783929248,213,0 +170783929297,213,0 +170783929345,213,0 +170783929393,213,0 +170783929441,213,0 +170783929490,214,0 +170783929538,214,0 +170783929586,214,0 +170783929634,214,0 +170783929682,214,0 +170783929732,214,0 +170783929780,214,0 +170783929829,213,0 +170783929877,213,0 +170783929925,213,0 +170783929975,213,0 +170783930022,213,0 +170783930070,213,0 +170783930120,213,0 +170783930169,213,0 +170783930217,214,0 +170783930267,213,0 +170783930315,214,0 +170783930363,214,0 +170783930412,214,0 +170783930460,214,0 +170783930508,214,0 +170783930556,214,0 +170783930604,214,0 +170783930652,214,0 +170783930702,214,0 +170783930750,213,0 +170783930799,213,0 +170783930848,213,0 +170783930896,213,0 +170783930946,213,0 +170783930995,213,0 +170783931045,213,0 +170783931094,213,0 +170783931142,213,0 +170783931190,213,0 +170783931238,214,0 +170783931288,214,0 +170783931336,214,0 +170783931384,214,0 +170783931432,214,0 +170783931479,214,0 +170783931527,214,0 +170783931575,214,0 +170783931623,214,0 +170783931671,213,0 +170783931719,213,0 +170783931767,213,0 +170783931815,213,0 +170783931865,213,0 +170783931913,213,0 +170783931960,213,0 +170783932008,213,0 +170783932058,213,0 +170783932106,213,0 +170783932155,214,0 +170783932205,214,0 +170783932253,214,0 +170783932301,214,0 +170783932350,214,0 +170783932400,214,0 +170783932448,214,0 +170783932496,214,0 +170783932545,213,0 +170783932593,213,0 +170783932643,213,0 +170783932691,213,0 +170783932738,213,0 +170783932788,213,0 +170783932838,213,0 +170783932885,213,0 +170783932935,213,0 +170783932983,213,0 +170783933031,214,0 +170783933079,214,0 +170783933128,214,0 +170783933176,214,0 +170783933226,214,0 +170783933274,214,0 +170783933322,214,0 +170783933371,214,0 +170783933419,214,0 +170783933467,213,0 +170783933515,213,0 +170783933563,213,0 +170783933612,213,0 +170783933662,213,0 +170783933711,213,0 +170783933759,213,0 +170783933809,213,0 +170783933858,213,0 +170783933906,213,0 +170783933954,213,0 +170783934002,213,0 +170783934050,214,0 +170783934098,213,0 +170783934146,214,0 +170783934195,214,0 +170783934243,214,0 +170783934291,214,0 +170783934339,213,0 +170783934389,213,0 +170783934437,213,0 +170783934486,213,0 +170783934536,213,0 +170783934585,213,0 +170783934633,213,0 +170783934681,213,0 +170783934729,213,0 +170783934777,213,0 +170783934825,213,0 +170783934873,213,0 +170783934921,213,0 +170783934970,213,0 +170783935018,214,0 +170783935066,214,0 +170783935114,214,0 +170783935162,214,0 +170783935210,214,0 +170783935258,213,0 +170783935306,213,0 +170783935355,213,0 +170783935403,213,0 +170783935451,213,0 +170783935501,213,0 +170783935548,213,0 +170783935598,213,0 +170783935646,213,0 +170783935694,213,0 +170783935742,214,0 +170783935790,214,0 +170783935838,214,0 +170783935885,214,0 +170783935933,214,0 +170783935981,214,0 +170783936029,214,0 +170783936077,214,0 +170783936125,214,0 +170783936173,213,0 +170783936223,213,0 +170783936271,213,0 +170783936320,214,0 +170783936368,214,0 +170783936418,214,0 +170783936465,214,0 +170783936513,214,0 +170783936561,214,0 +170783936611,214,0 +170783936659,214,0 +170783936707,214,0 +170783936755,214,0 +170783936804,214,0 +170783936852,214,0 +170783936902,214,0 +170783936951,214,0 +170783936999,214,0 +170783937047,214,0 +170783937097,213,0 +170783937144,213,0 +170783937192,214,0 +170783937240,213,0 +170783937288,214,0 +170783937338,213,0 +170783937387,214,0 +170783937435,214,0 +170783937483,214,0 +170783937531,214,0 +170783937580,214,0 +170783937628,214,0 +170783937676,214,0 +170783937726,214,0 +170783937774,214,0 +170783937821,214,0 +170783937871,214,0 +170783937920,214,0 +170783937970,214,0 +170783938018,213,0 +170783938067,213,0 +170783938115,213,0 +170783938165,213,0 +170783938214,214,0 +170783938262,214,0 +170783938312,214,0 +170783938361,214,0 +170783938409,214,0 +170783938457,214,0 +170783938505,214,0 +170783938553,214,0 +170783938601,214,0 +170783938649,214,0 +170783938697,214,0 +170783938745,214,0 +170783938794,214,0 +170783938842,214,0 +170783938890,214,0 +170783938938,213,0 +170783938986,213,0 +170783939036,213,0 +170783939085,213,0 +170783939133,213,0 +170783939181,213,0 +170783939229,213,0 +170783939277,213,0 +170783939326,213,0 +170783939374,213,0 +170783939422,214,0 +170783939470,214,0 +170783939518,214,0 +170783939568,214,0 +170783939616,214,0 +170783939664,214,0 +170783939712,213,0 +170783939761,214,0 +170783939809,213,0 +170783939857,213,0 +170783939905,213,0 +170783939953,213,0 +170783940001,213,0 +170783940051,213,0 +170783940100,213,0 +170783940150,213,0 +170783940198,213,0 +170783940247,213,0 +170783940297,214,0 +170783940346,214,0 +170783940394,214,0 +170783940442,214,0 +170783940492,214,0 +170783940541,214,0 +170783940589,214,0 +170783940639,214,0 +170783940688,214,0 +170783940736,213,0 +170783940784,213,0 +170783940832,213,0 +170783940880,213,0 +170783940928,213,0 +170783940976,213,0 +170783941025,213,0 +170783941073,213,0 +170783941123,213,0 +170783941170,213,0 +170783941220,213,0 +170783941270,213,0 +170783941318,214,0 +170783941365,214,0 +170783941413,214,0 +170783941463,214,0 +170783941512,214,0 +170783941560,214,0 +170783941608,214,0 +170783941658,213,0 +170783941706,213,0 +170783941755,213,0 +170783941803,213,0 +170783941853,213,0 +170783941901,213,0 +170783941950,213,0 +170783941998,213,0 +170783942048,213,0 +170783942097,213,0 +170783942147,213,0 +170783942196,213,0 +170783942245,214,0 +170783942293,214,0 +170783942343,214,0 +170783942392,214,0 +170783942442,214,0 +170783942490,214,0 +170783942539,213,0 +170783942589,213,0 +170783942638,213,0 +170783942686,213,0 +170783942736,213,0 +170783942785,213,0 +170783942835,213,0 +170783942883,213,0 +170783942932,213,0 +170783942980,213,0 +170783943030,213,0 +170783943078,213,0 +170783943126,214,0 +170783943174,214,0 +170783943223,214,0 +170783943271,214,0 +170783943319,214,0 +170783943367,214,0 +170783943415,214,0 +170783943462,213,0 +170783943510,213,0 +170783943558,213,0 +170783943606,213,0 +170783943654,213,0 +170783943702,213,0 +170783943750,213,0 +170783943798,213,0 +170783943845,213,0 +170783943893,213,0 +170783943941,213,0 +170783943989,213,0 +170783944039,213,0 +170783944086,213,0 +170783944134,214,0 +170783944182,214,0 +170783944230,214,0 +170783944278,214,0 +170783944326,214,0 +170783944374,213,0 +170783944422,213,0 +170783944470,213,0 +170783944518,213,0 +170783944568,213,0 +170783944616,213,0 +170783944665,213,0 +170783944713,213,0 +170783944762,214,0 +170783944810,214,0 +170783944860,213,0 +170783944908,214,0 +170783944956,214,0 +170783945004,214,0 +170783945052,214,0 +170783945100,214,0 +170783945149,214,0 +170783945197,214,0 +170783945247,214,0 +170783945296,213,0 +170783945344,213,0 +170783945392,213,0 +170783945442,213,0 +170783945491,213,0 +170783945539,213,0 +170783945587,213,0 +170783945635,213,0 +170783945683,214,0 +170783945731,213,0 +170783945780,214,0 +170783945830,214,0 +170783945879,214,0 +170783945929,214,0 +170783945977,214,0 +170783946025,214,0 +170783946074,214,0 +170783946122,214,0 +170783946170,213,0 +170783946220,213,0 +170783946269,213,0 +170783946317,213,0 +170783946365,213,0 +170783946413,213,0 +170783946463,213,0 +170783946512,213,0 +170783946560,213,0 +170783946608,213,0 +170783946658,214,0 +170783946706,214,0 +170783946755,214,0 +170783946805,214,0 +170783946854,214,0 +170783946904,214,0 +170783946952,214,0 +170783947001,214,0 +170783947049,214,0 +170783947097,213,0 +170783947147,213,0 +170783947196,213,0 +170783947244,213,0 +170783947294,213,0 +170783947343,213,0 +170783947393,214,0 +170783947440,213,0 +170783947490,214,0 +170783947540,214,0 +170783947589,214,0 +170783947637,214,0 +170783947685,214,0 +170783947733,214,0 +170783947782,214,0 +170783947830,214,0 +170783947878,214,0 +170783947926,214,0 +170783947974,214,0 +170783948022,213,0 +170783948072,213,0 +170783948121,213,0 +170783948171,213,0 +170783948219,213,0 +170783948268,213,0 +170783948318,214,0 +170783948365,214,0 +170783948413,214,0 +170783948461,214,0 +170783948509,214,0 +170783948557,214,0 +170783948605,214,0 +170783948653,214,0 +170783948701,213,0 +170783948749,214,0 +170783948798,214,0 +170783948846,214,0 +170783948894,213,0 +170783948944,213,0 +170783948993,213,0 +170783949043,213,0 +170783949091,213,0 +170783949140,213,0 +170783949188,213,0 +170783949236,213,0 +170783949284,213,0 +170783949333,213,0 +170783949381,213,0 +170783949429,214,0 +170783949479,214,0 +170783949527,214,0 +170783949576,214,0 +170783949626,214,0 +170783949675,214,0 +170783949723,214,0 +170783949771,214,0 +170783949819,213,0 +170783949869,213,0 +170783949917,213,0 +170783949965,213,0 +170783950014,213,0 +170783950064,213,0 +170783950113,213,0 +170783950163,213,0 +170783950211,213,0 +170783950259,213,0 +170783950307,213,0 +170783950355,213,0 +170783950404,213,0 +170783950452,214,0 +170783950500,214,0 +170783950548,214,0 +170783950596,214,0 +170783950645,214,0 +170783950695,214,0 +170783950743,213,0 +170783950792,213,0 +170783950840,213,0 +170783950888,213,0 +170783950936,213,0 +170783950984,213,0 +170783951033,213,0 +170783951083,213,0 +170783951131,213,0 +170783951180,213,0 +170783951229,213,0 +170783951278,213,0 +170783951327,213,0 +170783951375,213,0 +170783951424,213,0 +170783951474,214,0 +170783951522,214,0 +170783951570,214,0 +170783951618,213,0 +170783951665,213,0 +170783951715,213,0 +170783951763,213,0 +170783951811,213,0 +170783951860,213,0 +170783951908,213,0 +170783951956,213,0 +170783952006,213,0 +170783952055,213,0 +170783952103,213,0 +170783952151,213,0 +170783952199,213,0 +170783952247,213,0 +170783952295,214,0 +170783952344,214,0 +170783952392,214,0 +170783952440,214,0 +170783952488,214,0 +170783952536,213,0 +170783952584,213,0 +170783952632,213,0 +170783952680,213,0 +170783952728,213,0 +170783952777,213,0 +170783952825,213,0 +170783952873,213,0 +170783952921,213,0 +170783952969,213,0 +170783953017,213,0 +170783953065,213,0 +170783953114,213,0 +170783953162,213,0 +170783953210,213,0 +170783953258,213,0 +170783953308,214,0 +170783953356,213,0 +170783953405,214,0 +170783953455,213,0 +170783953504,213,0 +170783953554,213,0 +170783953602,213,0 +170783953651,213,0 +170783953699,213,0 +170783953749,213,0 +170783953798,213,0 +170783953848,213,0 +170783953896,213,0 +170783953945,213,0 +170783953995,214,0 +170783954043,213,0 +170783954091,214,0 +170783954139,214,0 +170783954187,213,0 +170783954235,214,0 +170783954284,214,0 +170783954332,214,0 +170783954380,213,0 +170783954428,213,0 +170783954477,213,0 +170783954525,213,0 +170783954573,213,0 +170783954621,213,0 +170783954669,213,0 +170783954717,213,0 +170783954766,213,0 +170783954816,214,0 +170783954865,214,0 +170783954913,214,0 +170783954963,214,0 +170783955012,214,0 +170783955062,214,0 +170783955110,214,0 +170783955158,214,0 +170783955207,214,0 +170783955255,213,0 +170783955303,213,0 +170783955351,213,0 +170783955399,213,0 +170783955447,213,0 +170783955495,213,0 +170783955543,214,0 +170783955591,214,0 +170783955639,214,0 +170783955687,214,0 +170783955735,214,0 +170783955783,214,0 +170783955831,214,0 +170783955879,214,0 +170783955927,214,0 +170783955976,214,0 +170783956024,214,0 +170783956072,214,0 +170783956120,214,0 +170783956169,213,0 +170783956217,213,0 +170783956265,213,0 +170783956315,213,0 +170783956363,214,0 +170783956411,214,0 +170783956459,214,0 +170783956506,214,0 +170783956554,214,0 +170783956604,214,0 +170783956653,214,0 +170783956701,214,0 +170783956749,214,0 +170783956797,214,0 +170783956845,214,0 +170783956893,214,0 +170783956941,214,0 +170783956989,214,0 +170783957037,215,0 +170783957085,213,0 +170783957134,213,0 +170783957182,213,0 +170783957232,213,0 +170783957280,213,0 +170783957329,213,0 +170783957377,213,0 +170783957425,214,0 +170783957475,214,0 +170783957523,214,0 +170783957570,214,0 +170783957620,214,0 +170783957668,214,0 +170783957718,214,0 +170783957765,214,0 +170783957813,214,0 +170783957861,214,0 +170783957909,214,0 +170783957959,213,0 +170783958007,213,0 +170783958055,213,0 +170783958103,213,0 +170783958152,213,0 +170783958200,213,0 +170783958248,213,0 +170783958296,213,0 +170783958344,213,0 +170783958392,214,0 +170783958440,214,0 +170783958488,214,0 +170783958536,214,0 +170783958585,214,0 +170783958633,214,0 +170783958683,214,0 +170783958732,214,0 +170783958780,214,0 +170783958828,214,0 +170783958876,213,0 +170783958924,213,0 +170783958974,213,0 +170783959023,213,0 +170783959071,213,0 +170783959119,213,0 +170783959169,213,0 +170783959217,213,0 +170783959265,214,0 +170783959312,213,0 +170783959360,214,0 +170783959410,214,0 +170783959458,214,0 +170783959506,214,0 +170783959555,214,0 +170783959603,214,0 +170783959651,214,0 +170783959701,214,0 +170783959750,214,0 +170783959798,213,0 +170783959846,213,0 +170783959894,213,0 +170783959943,213,0 +170783959993,213,0 +170783960041,213,0 +170783960090,213,0 +170783960138,214,0 +170783960186,213,0 +170783960234,213,0 +170783960282,214,0 +170783960330,214,0 +170783960378,214,0 +170783960426,214,0 +170783960474,214,0 +170783960524,214,0 +170783960573,214,0 +170783960621,214,0 +170783960669,214,0 +170783960717,213,0 +170783960765,213,0 +170783960813,213,0 +170783960860,213,0 +170783960910,213,0 +170783960958,213,0 +170783961007,213,0 +170783961055,214,0 +170783961105,214,0 +170783961153,214,0 +170783961201,214,0 +170783961249,214,0 +170783961298,214,0 +170783961346,214,0 +170783961394,214,0 +170783961442,214,0 +170783961490,214,0 +170783961538,214,0 +170783961586,213,0 +170783961634,213,0 +170783961683,213,0 +170783961733,213,0 +170783961782,213,0 +170783961832,213,0 +170783961880,213,0 +170783961929,214,0 +170783961979,214,0 +170783962026,213,0 +170783962074,214,0 +170783962122,214,0 +170783962170,214,0 +170783962218,214,0 +170783962266,214,0 +170783962314,214,0 +170783962362,214,0 +170783962411,213,0 +170783962459,214,0 +170783962509,213,0 +170783962557,213,0 +170783962606,213,0 +170783962654,213,0 +170783962702,213,0 +170783962751,213,0 +170783962799,213,0 +170783962849,214,0 +170783962898,214,0 +170783962948,214,0 +170783962996,214,0 +170783963045,214,0 +170783963095,214,0 +170783963144,214,0 +170783963192,214,0 +170783963240,214,0 +170783963290,214,0 +170783963338,214,0 +170783963386,214,0 +170783963435,213,0 +170783963483,213,0 +170783963533,213,0 +170783963581,213,0 +170783963630,213,0 +170783963680,213,0 +170783963729,214,0 +170783963777,213,0 +170783963826,213,0 +170783963874,214,0 +170783963922,214,0 +170783963970,214,0 +170783964018,214,0 +170783964066,214,0 +170783964114,214,0 +170783964162,214,0 +170783964210,214,0 +170783964259,214,0 +170783964307,213,0 +170783964355,213,0 +170783964403,213,0 +170783964451,213,0 +170783964499,213,0 +170783964547,213,0 +170783964595,213,0 +170783964644,213,0 +170783964694,213,0 +170783964742,214,0 +170783964791,214,0 +170783964839,214,0 +170783964889,214,0 +170783964937,213,0 +170783964986,214,0 +170783965034,214,0 +170783965082,214,0 +170783965132,214,0 +170783965179,214,0 +170783965227,213,0 +170783965275,213,0 +170783965325,213,0 +170783965373,213,0 +170783965421,213,0 +170783965470,213,0 +170783965518,213,0 +170783965568,213,0 +170783965616,213,0 +170783965664,213,0 +170783965712,213,0 +170783965761,213,0 +170783965809,213,0 +170783965859,213,0 +170783965907,213,0 +170783965956,214,0 +170783966004,214,0 +170783966052,214,0 +170783966101,214,0 +170783966149,213,0 +170783966199,213,0 +170783966247,213,0 +170783966296,213,0 +170783966346,213,0 +170783966395,213,0 +170783966443,213,0 +170783966491,213,0 +170783966539,213,0 +170783966587,213,0 +170783966635,214,0 +170783966685,213,0 +170783966734,214,0 +170783966784,214,0 +170783966832,214,0 +170783966881,214,0 +170783966929,214,0 +170783966979,214,0 +170783967028,213,0 +170783967078,212,0 +170783967126,213,0 +170783967175,213,0 +170783967225,213,0 +170783967273,213,0 +170783967321,213,0 +170783967368,213,0 +170783967418,213,0 +170783967467,213,0 +170783967517,213,0 +170783967566,213,0 +170783967614,213,0 +170783967662,214,0 +170783967710,214,0 +170783967758,214,0 +170783967808,214,0 +170783967857,214,0 +170783967907,214,0 +170783967955,213,0 +170783968003,213,0 +170783968052,213,0 +170783968100,213,0 +170783968148,213,0 +170783968196,213,0 +170783968244,213,0 +170783968292,213,0 +170783968341,213,0 +170783968389,213,0 +170783968439,213,0 +170783968487,213,0 +170783968535,214,0 +170783968582,214,0 +170783968630,214,0 +170783968678,214,0 +170783968726,214,0 +170783968774,214,0 +170783968824,213,0 +170783968872,213,0 +170783968920,213,0 +170783968968,213,0 +170783969016,213,0 +170783969063,213,0 +170783969111,213,0 +170783969159,213,0 +170783969209,213,0 +170783969257,213,0 +170783969304,213,0 +170783969352,213,0 +170783969402,214,0 +170783969451,213,0 +170783969499,214,0 +170783969547,214,0 +170783969595,214,0 +170783969644,214,0 +170783969694,214,0 +170783969742,213,0 +170783969790,213,0 +170783969837,213,0 +170783969885,213,0 +170783969933,213,0 +170783969981,213,0 +170783970031,213,0 +170783970080,213,0 +170783970129,213,0 +170783970177,213,0 +170783970225,213,0 +170783970273,213,0 +170783970321,214,0 +170783970369,214,0 +170783970416,214,0 +170783970464,214,0 +170783970512,214,0 +170783970560,214,0 +170783970608,214,0 +170783970656,213,0 +170783970704,213,0 +170783970752,213,0 +170783970799,213,0 +170783970849,213,0 +170783970899,213,0 +170783970948,213,0 +170783970996,213,0 +170783971044,213,0 +170783971092,213,0 +170783971142,213,0 +170783971190,213,0 +170783971237,213,0 +170783971287,214,0 +170783971335,214,0 +170783971385,214,0 +170783971432,214,0 +170783971482,214,0 +170783971531,213,0 +170783971579,213,0 +170783971627,213,0 +170783971675,213,0 +170783971723,213,0 +170783971773,213,0 +170783971822,213,0 +170783971872,213,0 +170783971921,213,0 +170783971969,213,0 +170783972017,213,0 +170783972065,214,0 +170783972113,214,0 +170783972162,213,0 +170783972210,214,0 +170783972258,214,0 +170783972306,214,0 +170783972356,214,0 +170783972405,213,0 +170783972453,213,0 +170783972501,213,0 +170783972551,213,0 +170783972599,213,0 +170783972647,213,0 +170783972695,213,0 +170783972743,213,0 +170783972792,213,0 +170783972840,214,0 +170783972890,214,0 +170783972939,214,0 +170783972989,214,0 +170783973038,214,0 +170783973086,214,0 +170783973136,214,0 +170783973185,214,0 +170783973233,214,0 +170783973281,213,0 +170783973330,213,0 +170783973378,213,0 +170783973426,213,0 +170783973476,214,0 +170783973526,214,0 +170783973575,214,0 +170783973625,214,0 +170783973674,214,0 +170783973722,214,0 +170783973772,214,0 +170783973820,214,0 +170783973869,214,0 +170783973917,214,0 +170783973966,214,0 +170783974016,214,0 +170783974066,214,0 +170783974115,214,0 +170783974163,213,0 +170783974211,213,0 +170783974260,213,0 +170783974310,213,0 +170783974359,213,0 +170783974409,214,0 +170783974457,214,0 +170783974505,214,0 +170783974554,214,0 +170783974604,214,0 +170783974652,214,0 +170783974701,214,0 +170783974749,214,0 +170783974799,214,0 +170783974848,214,0 +170783974896,214,0 +170783974946,214,0 +170783974994,214,0 +170783975043,213,0 +170783975093,213,0 +170783975141,213,0 +170783975189,213,0 +170783975237,213,0 +170783975285,213,0 +170783975334,213,0 +170783975382,214,0 +170783975432,214,0 +170783975480,214,0 +170783975529,214,0 +170783975577,214,0 +170783975625,214,0 +170783975673,214,0 +170783975721,214,0 +170783975769,214,0 +170783975819,214,0 +170783975867,214,0 +170783975914,213,0 +170783975964,213,0 +170783976012,213,0 +170783976061,213,0 +170783976111,213,0 +170783976159,213,0 +170783976207,213,0 +170783976255,213,0 +170783976304,213,0 +170783976352,214,0 +170783976400,214,0 +170783976448,214,0 +170783976496,214,0 +170783976544,214,0 +170783976591,214,0 +170783976639,214,0 +170783976689,214,0 +170783976736,214,0 +170783976784,214,0 +170783976832,213,0 +170783976880,213,0 +170783976928,213,0 +170783976976,213,0 +170783977023,213,0 +170783977071,213,0 +170783977119,213,0 +170783977167,213,0 +170783977215,213,0 +170783977263,214,0 +170783977310,213,0 +170783977358,214,0 +170783977408,214,0 +170783977456,214,0 +170783977503,214,0 +170783977551,214,0 +170783977599,214,0 +170783977647,214,0 +170783977695,213,0 +170783977743,213,0 +170783977791,213,0 +170783977840,213,0 +170783977888,213,0 +170783977936,213,0 +170783977984,213,0 +170783978032,213,0 +170783978080,213,0 +170783978129,213,0 +170783978177,214,0 +170783978225,214,0 +170783978273,214,0 +170783978321,214,0 +170783978370,214,0 +170783978420,214,0 +170783978468,214,0 +170783978517,214,0 +170783978565,213,0 +170783978615,213,0 +170783978664,213,0 +170783978712,213,0 +170783978762,213,0 +170783978810,213,0 +170783978859,213,0 +170783978907,213,0 +170783978957,213,0 +170783979006,213,0 +170783979054,214,0 +170783979102,214,0 +170783979152,214,0 +170783979201,214,0 +170783979249,214,0 +170783979297,214,0 +170783979345,214,0 +170783979393,214,0 +170783979441,214,0 +170783979490,213,0 +170783979540,213,0 +170783979588,213,0 +170783979636,213,0 +170783979684,213,0 +170783979732,213,0 +170783979780,213,0 +170783979829,213,0 +170783979877,213,0 +170783979925,213,0 +170783979973,213,0 +170783980021,214,0 +170783980070,214,0 +170783980120,214,0 +170783980169,214,0 +170783980219,214,0 +170783980269,214,0 +170783980318,214,0 +170783980368,213,0 +170783980417,213,0 +170783980467,213,0 +170783980515,213,0 +170783980564,213,0 +170783980612,213,0 +170783980662,213,0 +170783980710,213,0 +170783980758,213,0 +170783980806,213,0 +170783980855,213,0 +170783980903,214,0 +170783980951,214,0 +170783980999,214,0 +170783981047,214,0 +170783981095,214,0 +170783981143,214,0 +170783981191,214,0 +170783981240,213,0 +170783981288,213,0 +170783981336,213,0 +170783981386,213,0 +170783981434,213,0 +170783981482,213,0 +170783981531,213,0 +170783981579,213,0 +170783981629,213,0 +170783981677,213,0 +170783981726,213,0 +170783981774,213,0 +170783981822,213,0 +170783981870,213,0 +170783981918,213,0 +170783981966,213,0 +170783982014,214,0 +170783982063,214,0 +170783982111,214,0 +170783982159,214,0 +170783982207,214,0 +170783982255,214,0 +170783982303,214,0 +170783982351,214,0 +170783982400,214,0 +170783982450,214,0 +170783982498,214,0 +170783982546,213,0 +170783982594,213,0 +170783982642,213,0 +170783982691,213,0 +170783982739,213,0 +170783982789,213,0 +170783982838,213,0 +170783982886,213,0 +170783982934,213,0 +170783982983,214,0 +170783983031,214,0 +170783983079,214,0 +170783983129,214,0 +170783983177,214,0 +170783983225,214,0 +170783983274,214,0 +170783983322,214,0 +170783983371,214,0 +170783983419,214,0 +170783983467,213,0 +170783983517,213,0 +170783983565,213,0 +170783983614,213,0 +170783983662,213,0 +170783983710,213,0 +170783983758,213,0 +170783983806,213,0 +170783983855,214,0 +170783983903,214,0 +170783983953,214,0 +170783984002,214,0 +170783984052,214,0 +170783984101,214,0 +170783984149,214,0 +170783984197,214,0 +170783984245,214,0 +170783984293,214,0 +170783984341,213,0 +170783984391,213,0 +170783984439,213,0 +170783984487,213,0 +170783984534,213,0 +170783984582,213,0 +170783984632,213,0 +170783984680,213,0 +170783984728,214,0 +170783984776,213,0 +170783984825,213,0 +170783984873,214,0 +170783984923,214,0 +170783984971,214,0 +170783985019,214,0 +170783985066,214,0 +170783985114,214,0 +170783985162,214,0 +170783985210,213,0 +170783985258,213,0 +170783985306,213,0 +170783985354,213,0 +170783985403,213,0 +170783985451,213,0 +170783985501,213,0 +170783985548,213,0 +170783985598,214,0 +170783985646,213,0 +170783985695,213,0 +170783985745,214,0 +170783985793,214,0 +170783985841,214,0 +170783985889,214,0 +170783985936,214,0 +170783985984,214,0 +170783986032,214,0 +170783986080,213,0 +170783986128,213,0 +170783986178,213,0 +170783986225,213,0 +170783986273,213,0 +170783986321,213,0 +170783986369,213,0 +170783986417,213,0 +170783986464,213,0 +170783986512,213,0 +170783986560,213,0 +170783986608,213,0 +170783986656,213,0 +170783986704,214,0 +170783986753,214,0 +170783986803,214,0 +170783986851,214,0 +170783986900,214,0 +170783986950,214,0 +170783986999,213,0 +170783987047,213,0 +170783987095,213,0 +170783987145,213,0 +170783987194,213,0 +170783987242,213,0 +170783987292,213,0 +170783987340,213,0 +170783987388,213,0 +170783987437,213,0 +170783987485,214,0 +170783987533,214,0 +170783987580,214,0 +170783987628,214,0 +170783987676,214,0 +170783987724,214,0 +170783987774,214,0 +170783987823,214,0 +170783987871,213,0 +170783987920,213,0 +170783987968,213,0 +170783988016,213,0 +170783988064,213,0 +170783988112,213,0 +170783988160,213,0 +170783988209,213,0 +170783988259,213,0 +170783988306,213,0 +170783988356,213,0 +170783988404,213,0 +170783988452,214,0 +170783988500,214,0 +170783988548,214,0 +170783988597,214,0 +170783988645,214,0 +170783988693,214,0 +170783988741,213,0 +170783988789,213,0 +170783988837,213,0 +170783988885,213,0 +170783988933,213,0 +170783988980,213,0 +170783989030,213,0 +170783989078,213,0 +170783989126,213,0 +170783989174,213,0 +170783989223,213,0 +170783989271,214,0 +170783989319,214,0 +170783989367,214,0 +170783989417,214,0 +170783989464,214,0 +170783989512,214,0 +170783989560,214,0 +170783989608,214,0 +170783989656,213,0 +170783989706,213,0 +170783989754,213,0 +170783989801,213,0 +170783989851,213,0 +170783989899,214,0 +170783989947,213,0 +170783989995,214,0 +170783990042,214,0 +170783990090,214,0 +170783990138,214,0 +170783990186,214,0 +170783990234,214,0 +170783990282,214,0 +170783990330,214,0 +170783990377,214,0 +170783990425,214,0 +170783990473,214,0 +170783990521,213,0 +170783990570,213,0 +170783990618,214,0 +170783990666,213,0 +170783990714,214,0 +170783990762,214,0 +170783990810,214,0 +170783990858,214,0 +170783990906,214,0 +170783990953,214,0 +170783991001,214,0 +170783991049,214,0 +170783991097,214,0 +170783991145,214,0 +170783991192,214,0 +170783991242,214,0 +170783991290,214,0 +170783991337,214,0 +170783991385,213,0 +170783991433,213,0 +170783991481,213,0 +170783991529,213,0 +170783991577,213,0 +170783991626,213,0 +170783991675,213,0 +170783991723,214,0 +170783991773,213,0 +170783991822,214,0 +170783991872,214,0 +170783991921,214,0 +170783991969,214,0 +170783992017,214,0 +170783992065,214,0 +170783992113,214,0 +170783992161,214,0 +170783992209,214,0 +170783992257,214,0 +170783992305,213,0 +170783992353,213,0 +170783992401,213,0 +170783992449,213,0 +170783992497,213,0 +170783992545,213,0 +170783992594,213,0 +170783992644,213,0 +170783992691,214,0 +170783992739,214,0 +170783992787,214,0 +170783992835,214,0 +170783992883,214,0 +170783992931,214,0 +170783992980,214,0 +170783993028,214,0 +170783993076,214,0 +170783993124,214,0 +170783993172,213,0 +170783993220,213,0 +170783993270,213,0 +170783993319,213,0 +170783993367,213,0 +170783993415,213,0 +170783993463,213,0 +170783993511,213,0 +170783993559,213,0 +170783993607,214,0 +170783993656,213,0 +170783993704,213,0 +170783993754,214,0 +170783993803,214,0 +170783993851,214,0 +170783993901,214,0 +170783993949,214,0 +170783993997,214,0 +170783994045,213,0 +170783994094,213,0 +170783994142,213,0 +170783994190,213,0 +170783994238,213,0 +170783994288,213,0 +170783994335,213,0 +170783994385,213,0 +170783994434,213,0 +170783994484,214,0 +170783994533,214,0 +170783994583,214,0 +170783994631,214,0 +170783994679,214,0 +170783994727,214,0 +170783994775,214,0 +170783994824,214,0 +170783994874,214,0 +170783994922,213,0 +170783994970,213,0 +170783995018,213,0 +170783995066,213,0 +170783995114,213,0 +170783995161,213,0 +170783995211,213,0 +170783995259,213,0 +170783995307,213,0 +170783995356,213,0 +170783995406,213,0 +170783995454,214,0 +170783995502,213,0 +170783995550,214,0 +170783995598,214,0 +170783995646,214,0 +170783995695,214,0 +170783995743,214,0 +170783995791,213,0 +170783995839,213,0 +170783995887,213,0 +170783995934,213,0 +170783995982,213,0 +170783996030,213,0 +170783996078,213,0 +170783996126,213,0 +170783996174,213,0 +170783996222,213,0 +170783996271,213,0 +170783996319,213,0 +170783996369,214,0 +170783996417,214,0 +170783996466,214,0 +170783996514,214,0 +170783996564,214,0 +170783996612,214,0 +170783996660,214,0 +170783996707,213,0 +170783996757,213,0 +170783996805,213,0 +170783996853,213,0 +170783996900,213,0 +170783996948,213,0 +170783996998,213,0 +170783997046,213,0 +170783997095,213,0 +170783997143,213,0 +170783997193,213,0 +170783997242,213,0 +170783997290,213,0 +170783997338,214,0 +170783997386,214,0 +170783997434,214,0 +170783997482,214,0 +170783997530,214,0 +170783997578,213,0 +170783997626,212,0 +170783997673,213,0 +170783997721,213,0 +170783997769,213,0 +170783997819,213,0 +170783997867,213,0 +170783997914,213,0 +170783997962,213,0 +170783998010,213,0 +170783998058,213,0 +170783998108,213,0 +170783998156,214,0 +170783998203,214,0 +170783998251,214,0 +170783998299,214,0 +170783998348,214,0 +170783998398,214,0 +170783998446,213,0 +170783998495,213,0 +170783998545,213,0 +170783998593,213,0 +170783998642,213,0 +170783998690,213,0 +170783998738,213,0 +170783998787,213,0 +170783998835,213,0 +170783998883,213,0 +170783998933,213,0 +170783998981,213,0 +170783999030,214,0 +170783999078,213,0 +170783999126,214,0 +170783999175,214,0 +170783999225,214,0 +170783999274,214,0 +170783999322,213,0 +170783999372,213,0 +170783999420,213,0 +170783999468,213,0 +170783999515,213,0 +170783999563,213,0 +170783999611,213,0 +170783999661,213,0 +170783999710,213,0 +170783999758,213,0 +170783999806,213,0 +170783999854,213,0 +170783999904,214,0 +170783999953,214,0 +170784000001,214,0 diff --git a/laser_value/0214-02.csv b/laser_value/0214-02.csv new file mode 100644 index 0000000..528a5c1 --- /dev/null +++ b/laser_value/0214-02.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170784000051,214,0 +170784000101,214,0 +170784000150,214,0 +170784000198,213,0 +170784000246,213,0 +170784000294,213,0 +170784000344,213,0 +170784000392,213,0 +170784000439,213,0 +170784000487,213,0 +170784000535,213,0 +170784000585,213,0 +170784000633,213,0 +170784000681,214,0 +170784000728,214,0 +170784000778,214,0 +170784000826,214,0 +170784000874,214,0 +170784000923,214,0 +170784000971,214,0 +170784001020,214,0 +170784001068,214,0 +170784001118,213,0 +170784001167,213,0 +170784001215,213,0 +170784001263,213,0 +170784001311,213,0 +170784001360,213,0 +170784001408,213,0 +170784001456,213,0 +170784001505,214,0 +170784001555,213,0 +170784001604,214,0 +170784001653,214,0 +170784001701,214,0 +170784001749,214,0 +170784001797,214,0 +170784001845,214,0 +170784001893,214,0 +170784001941,214,0 +170784001988,213,0 +170784002036,213,0 +170784002084,213,0 +170784002132,213,0 +170784002180,213,0 +170784002228,213,0 +170784002276,214,0 +170784002324,213,0 +170784002373,214,0 +170784002421,214,0 +170784002469,213,0 +170784002517,214,0 +170784002565,214,0 +170784002615,214,0 +170784002663,214,0 +170784002712,214,0 +170784002760,214,0 +170784002810,214,0 +170784002857,213,0 +170784002907,213,0 +170784002955,213,0 +170784003003,213,0 +170784003052,213,0 +170784003102,213,0 +170784003150,213,0 +170784003198,214,0 +170784003246,213,0 +170784003294,214,0 +170784003341,214,0 +170784003389,214,0 +170784003439,214,0 +170784003487,214,0 +170784003536,214,0 +170784003584,214,0 +170784003632,214,0 +170784003681,214,0 +170784003731,213,0 +170784003780,213,0 +170784003828,213,0 +170784003876,213,0 +170784003924,213,0 +170784003973,214,0 +170784004021,213,0 +170784004069,214,0 +170784004117,214,0 +170784004165,214,0 +170784004213,214,0 +170784004261,214,0 +170784004308,214,0 +170784004356,214,0 +170784004404,214,0 +170784004452,214,0 +170784004500,214,0 +170784004548,214,0 +170784004596,213,0 +170784004644,213,0 +170784004691,213,0 +170784004739,213,0 +170784004787,213,0 +170784004835,213,0 +170784004883,214,0 +170784004931,214,0 +170784004981,214,0 +170784005030,214,0 +170784005078,214,0 +170784005126,214,0 +170784005176,214,0 +170784005224,214,0 +170784005272,214,0 +170784005321,214,0 +170784005369,214,0 +170784005417,214,0 +170784005465,213,0 +170784005514,213,0 +170784005562,213,0 +170784005610,213,0 +170784005660,213,0 +170784005708,213,0 +170784005757,213,0 +170784005805,213,0 +170784005853,213,0 +170784005902,214,0 +170784005950,214,0 +170784005998,214,0 +170784006048,214,0 +170784006096,214,0 +170784006145,214,0 +170784006195,214,0 +170784006244,214,0 +170784006292,214,0 +170784006340,213,0 +170784006389,213,0 +170784006437,213,0 +170784006485,213,0 +170784006535,213,0 +170784006583,214,0 +170784006632,214,0 +170784006682,214,0 +170784006731,214,0 +170784006781,214,0 +170784006829,214,0 +170784006877,214,0 +170784006926,214,0 +170784006974,214,0 +170784007022,214,0 +170784007070,214,0 +170784007119,214,0 +170784007167,214,0 +170784007215,214,0 +170784007263,213,0 +170784007311,213,0 +170784007359,213,0 +170784007407,214,0 +170784007455,214,0 +170784007504,214,0 +170784007552,214,0 +170784007600,214,0 +170784007648,214,0 +170784007696,214,0 +170784007744,214,0 +170784007793,214,0 +170784007841,214,0 +170784007889,214,0 +170784007939,214,0 +170784007987,214,0 +170784008036,214,0 +170784008086,213,0 +170784008134,213,0 +170784008182,213,0 +170784008229,213,0 +170784008279,213,0 +170784008327,213,0 +170784008375,213,0 +170784008425,213,0 +170784008473,214,0 +170784008522,214,0 +170784008570,214,0 +170784008618,214,0 +170784008666,214,0 +170784008715,214,0 +170784008765,214,0 +170784008813,214,0 +170784008862,214,0 +170784008912,214,0 +170784008960,213,0 +170784009008,213,0 +170784009057,213,0 +170784009105,213,0 +170784009153,213,0 +170784009202,213,0 +170784009250,213,0 +170784009298,213,0 +170784009346,213,0 +170784009394,213,0 +170784009444,213,0 +170784009493,214,0 +170784009543,214,0 +170784009591,214,0 +170784009639,214,0 +170784009686,214,0 +170784009734,214,0 +170784009784,214,0 +170784009833,213,0 +170784009881,213,0 +170784009931,213,0 +170784009979,213,0 +170784010028,213,0 +170784010076,213,0 +170784010124,213,0 +170784010172,213,0 +170784010220,213,0 +170784010269,213,0 +170784010317,213,0 +170784010367,214,0 +170784010415,214,0 +170784010464,214,0 +170784010512,214,0 +170784010562,214,0 +170784010609,214,0 +170784010659,214,0 +170784010707,213,0 +170784010757,213,0 +170784010805,213,0 +170784010854,213,0 +170784010902,213,0 +170784010952,213,0 +170784010999,213,0 +170784011047,213,0 +170784011095,213,0 +170784011143,213,0 +170784011191,213,0 +170784011239,214,0 +170784011287,214,0 +170784011335,214,0 +170784011383,214,0 +170784011430,214,0 +170784011478,214,0 +170784011528,214,0 +170784011577,213,0 +170784011625,213,0 +170784011675,213,0 +170784011723,213,0 +170784011771,213,0 +170784011820,213,0 +170784011868,213,0 +170784011916,213,0 +170784011964,213,0 +170784012012,213,0 +170784012061,213,0 +170784012109,214,0 +170784012159,214,0 +170784012208,214,0 +170784012256,214,0 +170784012304,214,0 +170784012354,214,0 +170784012403,214,0 +170784012451,213,0 +170784012501,213,0 +170784012549,213,0 +170784012597,213,0 +170784012644,213,0 +170784012694,213,0 +170784012744,213,0 +170784012791,213,0 +170784012839,213,0 +170784012889,213,0 +170784012938,213,0 +170784012986,213,0 +170784013036,213,0 +170784013084,214,0 +170784013132,214,0 +170784013181,214,0 +170784013231,214,0 +170784013279,214,0 +170784013327,213,0 +170784013375,213,0 +170784013424,212,0 +170784013474,213,0 +170784013523,213,0 +170784013573,213,0 +170784013621,213,0 +170784013669,213,0 +170784013717,213,0 +170784013766,213,0 +170784013814,213,0 +170784013862,213,0 +170784013910,214,0 +170784013960,214,0 +170784014008,214,0 +170784014057,214,0 +170784014107,214,0 +170784014155,214,0 +170784014203,213,0 +170784014252,213,0 +170784014300,213,0 +170784014350,213,0 +170784014398,213,0 +170784014446,213,0 +170784014495,213,0 +170784014543,213,0 +170784014591,213,0 +170784014639,213,0 +170784014688,213,0 +170784014736,213,0 +170784014784,214,0 +170784014834,214,0 +170784014882,214,0 +170784014931,214,0 +170784014981,214,0 +170784015029,214,0 +170784015077,213,0 +170784015126,213,0 +170784015176,213,0 +170784015225,213,0 +170784015273,213,0 +170784015321,213,0 +170784015369,213,0 +170784015417,213,0 +170784015464,213,0 +170784015512,213,0 +170784015560,213,0 +170784015608,214,0 +170784015656,214,0 +170784015704,214,0 +170784015753,214,0 +170784015803,214,0 +170784015852,214,0 +170784015900,214,0 +170784015948,213,0 +170784015996,213,0 +170784016044,213,0 +170784016093,213,0 +170784016143,213,0 +170784016191,213,0 +170784016239,213,0 +170784016287,213,0 +170784016336,214,0 +170784016384,214,0 +170784016432,214,0 +170784016480,214,0 +170784016529,214,0 +170784016577,214,0 +170784016625,214,0 +170784016673,214,0 +170784016723,214,0 +170784016771,214,0 +170784016818,213,0 +170784016866,213,0 +170784016914,213,0 +170784016964,213,0 +170784017012,213,0 +170784017060,213,0 +170784017108,213,0 +170784017157,213,0 +170784017207,213,0 +170784017256,214,0 +170784017305,213,0 +170784017353,214,0 +170784017401,214,0 +170784017449,214,0 +170784017497,214,0 +170784017545,214,0 +170784017594,214,0 +170784017642,214,0 +170784017690,213,0 +170784017738,213,0 +170784017788,213,0 +170784017835,213,0 +170784017883,213,0 +170784017933,213,0 +170784017981,213,0 +170784018029,213,0 +170784018077,213,0 +170784018125,214,0 +170784018172,214,0 +170784018220,214,0 +170784018268,214,0 +170784018316,214,0 +170784018364,214,0 +170784018412,214,0 +170784018461,214,0 +170784018509,214,0 +170784018557,213,0 +170784018605,213,0 +170784018653,213,0 +170784018701,213,0 +170784018749,213,0 +170784018797,213,0 +170784018845,213,0 +170784018893,213,0 +170784018941,213,0 +170784018990,213,0 +170784019039,213,0 +170784019089,213,0 +170784019137,213,0 +170784019185,214,0 +170784019233,214,0 +170784019281,214,0 +170784019329,214,0 +170784019376,214,0 +170784019424,213,0 +170784019472,213,0 +170784019522,213,0 +170784019570,213,0 +170784019619,213,0 +170784019667,213,0 +170784019715,213,0 +170784019764,213,0 +170784019812,213,0 +170784019862,213,0 +170784019910,213,0 +170784019958,213,0 +170784020006,213,0 +170784020055,214,0 +170784020103,214,0 +170784020151,214,0 +170784020200,214,0 +170784020248,214,0 +170784020296,213,0 +170784020344,213,0 +170784020392,213,0 +170784020440,213,0 +170784020488,213,0 +170784020536,213,0 +170784020584,213,0 +170784020632,213,0 +170784020680,213,0 +170784020728,213,0 +170784020775,213,0 +170784020823,213,0 +170784020871,213,0 +170784020921,213,0 +170784020968,214,0 +170784021016,213,0 +170784021064,213,0 +170784021112,214,0 +170784021160,213,0 +170784021209,213,0 +170784021257,213,0 +170784021305,213,0 +170784021352,213,0 +170784021400,213,0 +170784021448,213,0 +170784021496,213,0 +170784021544,213,0 +170784021592,213,0 +170784021640,213,0 +170784021687,214,0 +170784021735,214,0 +170784021783,214,0 +170784021831,214,0 +170784021879,214,0 +170784021927,214,0 +170784021975,214,0 +170784022023,213,0 +170784022071,213,0 +170784022120,213,0 +170784022170,213,0 +170784022217,213,0 +170784022267,214,0 +170784022315,213,0 +170784022363,214,0 +170784022410,214,0 +170784022458,214,0 +170784022508,214,0 +170784022555,214,0 +170784022603,214,0 +170784022651,214,0 +170784022700,214,0 +170784022748,214,0 +170784022796,214,0 +170784022844,214,0 +170784022892,214,0 +170784022940,214,0 +170784022987,213,0 +170784023035,214,0 +170784023083,214,0 +170784023131,214,0 +170784023179,214,0 +170784023226,214,0 +170784023274,214,0 +170784023322,214,0 +170784023370,214,0 +170784023418,214,0 +170784023465,214,0 +170784023513,214,0 +170784023561,214,0 +170784023609,214,0 +170784023657,214,0 +170784023704,214,0 +170784023754,213,0 +170784023802,214,0 +170784023850,214,0 +170784023897,214,0 +170784023945,214,0 +170784023993,214,0 +170784024041,214,0 +170784024089,214,0 +170784024137,214,0 +170784024186,214,0 +170784024234,214,0 +170784024282,214,0 +170784024330,214,0 +170784024378,214,0 +170784024426,214,0 +170784024474,214,0 +170784024522,214,0 +170784024570,214,0 +170784024619,213,0 +170784024668,213,0 +170784024716,213,0 +170784024766,213,0 +170784024814,213,0 +170784024861,214,0 +170784024909,214,0 +170784024957,214,0 +170784025005,214,0 +170784025055,214,0 +170784025103,214,0 +170784025151,214,0 +170784025199,214,0 +170784025247,214,0 +170784025294,214,0 +170784025342,214,0 +170784025390,214,0 +170784025438,214,0 +170784025486,213,0 +170784025534,213,0 +170784025582,213,0 +170784025630,213,0 +170784025678,213,0 +170784025726,213,0 +170784025773,213,0 +170784025823,214,0 +170784025871,214,0 +170784025919,214,0 +170784025968,214,0 +170784026016,214,0 +170784026064,214,0 +170784026112,214,0 +170784026161,214,0 +170784026209,214,0 +170784026257,214,0 +170784026307,213,0 +170784026356,213,0 +170784026404,213,0 +170784026452,213,0 +170784026501,213,0 +170784026549,213,0 +170784026597,213,0 +170784026647,213,0 +170784026695,213,0 +170784026743,213,0 +170784026792,214,0 +170784026840,213,0 +170784026888,214,0 +170784026938,214,0 +170784026986,214,0 +170784027035,214,0 +170784027083,214,0 +170784027131,214,0 +170784027181,213,0 +170784027229,213,0 +170784027277,213,0 +170784027325,213,0 +170784027373,213,0 +170784027420,213,0 +170784027468,213,0 +170784027518,213,0 +170784027566,214,0 +170784027615,214,0 +170784027663,214,0 +170784027713,213,0 +170784027760,214,0 +170784027810,214,0 +170784027858,214,0 +170784027906,214,0 +170784027955,214,0 +170784028003,213,0 +170784028051,213,0 +170784028099,213,0 +170784028148,213,0 +170784028196,213,0 +170784028244,214,0 +170784028294,214,0 +170784028342,214,0 +170784028389,213,0 +170784028437,214,0 +170784028487,214,0 +170784028535,214,0 +170784028583,214,0 +170784028631,214,0 +170784028679,214,0 +170784028727,214,0 +170784028776,214,0 +170784028824,214,0 +170784028874,213,0 +170784028922,213,0 +170784028971,213,0 +170784029019,213,0 +170784029067,213,0 +170784029115,213,0 +170784029163,214,0 +170784029212,214,0 +170784029262,214,0 +170784029310,214,0 +170784029359,214,0 +170784029407,214,0 +170784029457,214,0 +170784029505,214,0 +170784029553,214,0 +170784029601,214,0 +170784029650,214,0 +170784029698,214,0 +170784029746,213,0 +170784029796,213,0 +170784029844,213,0 +170784029892,213,0 +170784029940,213,0 +170784029988,213,0 +170784030035,213,0 +170784030085,214,0 +170784030134,214,0 +170784030184,214,0 +170784030232,214,0 +170784030280,214,0 +170784030329,214,0 +170784030377,214,0 +170784030427,214,0 +170784030476,214,0 +170784030526,214,0 +170784030574,213,0 +170784030623,213,0 +170784030672,213,0 +170784030720,213,0 +170784030770,213,0 +170784030818,213,0 +170784030867,213,0 +170784030915,213,0 +170784030965,213,0 +170784031014,214,0 +170784031064,214,0 +170784031112,214,0 +170784031160,214,0 +170784031209,214,0 +170784031257,214,0 +170784031305,214,0 +170784031353,214,0 +170784031401,214,0 +170784031449,213,0 +170784031499,213,0 +170784031547,213,0 +170784031595,213,0 +170784031643,213,0 +170784031690,213,0 +170784031738,213,0 +170784031788,213,0 +170784031836,214,0 +170784031884,213,0 +170784031932,214,0 +170784031980,214,0 +170784032029,214,0 +170784032079,214,0 +170784032127,214,0 +170784032175,214,0 +170784032224,214,0 +170784032272,213,0 +170784032320,213,0 +170784032370,213,0 +170784032418,213,0 +170784032465,213,0 +170784032513,213,0 +170784032563,213,0 +170784032611,213,0 +170784032659,213,0 +170784032708,213,0 +170784032758,213,0 +170784032806,213,0 +170784032855,213,0 +170784032903,213,0 +170784032953,213,0 +170784033001,214,0 +170784033049,213,0 +170784033097,214,0 +170784033145,212,0 +170784033193,213,0 +170784033242,213,0 +170784033292,213,0 +170784033340,213,0 +170784033389,213,0 +170784033437,213,0 +170784033485,213,0 +170784033534,213,0 +170784033584,213,0 +170784033632,213,0 +170784033681,213,0 +170784033729,214,0 +170784033779,214,0 +170784033826,214,0 +170784033874,214,0 +170784033924,214,0 +170784033972,213,0 +170784034020,213,0 +170784034069,213,0 +170784034117,213,0 +170784034167,213,0 +170784034215,213,0 +170784034263,213,0 +170784034312,213,0 +170784034360,213,0 +170784034408,213,0 +170784034456,213,0 +170784034505,213,0 +170784034553,213,0 +170784034603,213,0 +170784034651,213,0 +170784034699,214,0 +170784034748,214,0 +170784034796,214,0 +170784034844,213,0 +170784034892,213,0 +170784034940,213,0 +170784034989,213,0 +170784035037,213,0 +170784035086,213,0 +170784035136,213,0 +170784035185,213,0 +170784035233,213,0 +170784035283,213,0 +170784035332,213,0 +170784035382,213,0 +170784035430,214,0 +170784035478,214,0 +170784035527,214,0 +170784035575,214,0 +170784035623,214,0 +170784035672,214,0 +170784035720,213,0 +170784035770,213,0 +170784035818,213,0 +170784035866,213,0 +170784035915,213,0 +170784035965,213,0 +170784036013,213,0 +170784036061,213,0 +170784036109,213,0 +170784036157,214,0 +170784036205,214,0 +170784036254,214,0 +170784036302,214,0 +170784036350,214,0 +170784036400,214,0 +170784036447,214,0 +170784036497,214,0 +170784036546,213,0 +170784036596,213,0 +170784036645,213,0 +170784036695,213,0 +170784036743,213,0 +170784036790,213,0 +170784036838,213,0 +170784036886,213,0 +170784036934,214,0 +170784036982,214,0 +170784037030,214,0 +170784037077,213,0 +170784037125,214,0 +170784037175,214,0 +170784037223,214,0 +170784037270,214,0 +170784037318,214,0 +170784037366,214,0 +170784037414,213,0 +170784037462,213,0 +170784037510,213,0 +170784037558,213,0 +170784037605,213,0 +170784037655,213,0 +170784037704,213,0 +170784037754,213,0 +170784037802,214,0 +170784037850,214,0 +170784037899,214,0 +170784037947,214,0 +170784037997,214,0 +170784038045,214,0 +170784038092,214,0 +170784038140,214,0 +170784038188,214,0 +170784038238,214,0 +170784038286,213,0 +170784038334,213,0 +170784038382,213,0 +170784038431,213,0 +170784038479,213,0 +170784038529,213,0 +170784038578,214,0 +170784038626,214,0 +170784038674,214,0 +170784038722,214,0 +170784038770,214,0 +170784038818,214,0 +170784038866,214,0 +170784038915,214,0 +170784038965,214,0 +170784039014,214,0 +170784039062,214,0 +170784039110,213,0 +170784039158,213,0 +170784039207,213,0 +170784039255,213,0 +170784039305,213,0 +170784039354,213,0 +170784039404,213,0 +170784039452,213,0 +170784039500,214,0 +170784039548,214,0 +170784039597,214,0 +170784039645,214,0 +170784039695,214,0 +170784039743,214,0 +170784039791,214,0 +170784039839,214,0 +170784039887,214,0 +170784039935,213,0 +170784039983,213,0 +170784040030,213,0 +170784040080,213,0 +170784040128,213,0 +170784040176,213,0 +170784040225,213,0 +170784040273,213,0 +170784040321,213,0 +170784040369,214,0 +170784040417,214,0 +170784040466,213,0 +170784040514,214,0 +170784040562,214,0 +170784040610,214,0 +170784040658,214,0 +170784040706,214,0 +170784040754,214,0 +170784040802,213,0 +170784040850,213,0 +170784040899,213,0 +170784040947,213,0 +170784040995,213,0 +170784041043,214,0 +170784041091,213,0 +170784041140,213,0 +170784041190,213,0 +170784041238,214,0 +170784041287,214,0 +170784041335,214,0 +170784041385,214,0 +170784041434,214,0 +170784041484,214,0 +170784041531,214,0 +170784041579,214,0 +170784041627,214,0 +170784041675,213,0 +170784041723,213,0 +170784041772,213,0 +170784041822,213,0 +170784041870,214,0 +170784041919,213,0 +170784041969,213,0 +170784042017,213,0 +170784042064,213,0 +170784042112,213,0 +170784042162,214,0 +170784042210,214,0 +170784042258,214,0 +170784042306,214,0 +170784042355,214,0 +170784042405,214,0 +170784042453,214,0 +170784042501,213,0 +170784042549,213,0 +170784042598,213,0 +170784042648,213,0 +170784042696,213,0 +170784042745,213,0 +170784042793,213,0 +170784042841,213,0 +170784042889,214,0 +170784042937,214,0 +170784042985,214,0 +170784043033,214,0 +170784043082,214,0 +170784043130,214,0 +170784043178,214,0 +170784043227,214,0 +170784043277,214,0 +170784043325,214,0 +170784043373,213,0 +170784043421,213,0 +170784043468,213,0 +170784043516,213,0 +170784043564,213,0 +170784043612,213,0 +170784043660,213,0 +170784043710,214,0 +170784043757,214,0 +170784043805,214,0 +170784043853,214,0 +170784043903,214,0 +170784043951,214,0 +170784043999,214,0 +170784044048,214,0 +170784044096,214,0 +170784044146,214,0 +170784044194,213,0 +170784044243,213,0 +170784044291,213,0 +170784044339,213,0 +170784044387,213,0 +170784044434,213,0 +170784044484,213,0 +170784044533,213,0 +170784044583,214,0 +170784044632,214,0 +170784044680,214,0 +170784044730,214,0 +170784044778,214,0 +170784044826,214,0 +170784044874,214,0 +170784044923,214,0 +170784044971,214,0 +170784045019,214,0 +170784045067,213,0 +170784045117,213,0 +170784045164,213,0 +170784045212,213,0 +170784045262,213,0 +170784045310,213,0 +170784045358,213,0 +170784045406,213,0 +170784045454,214,0 +170784045501,214,0 +170784045549,213,0 +170784045597,214,0 +170784045645,214,0 +170784045693,214,0 +170784045741,214,0 +170784045789,214,0 +170784045837,214,0 +170784045885,213,0 +170784045932,213,0 +170784045980,213,0 +170784046030,213,0 +170784046078,213,0 +170784046127,213,0 +170784046175,213,0 +170784046223,213,0 +170784046271,214,0 +170784046321,214,0 +170784046369,214,0 +170784046417,214,0 +170784046466,214,0 +170784046514,214,0 +170784046562,214,0 +170784046610,214,0 +170784046658,214,0 +170784046706,213,0 +170784046754,213,0 +170784046802,213,0 +170784046850,213,0 +170784046897,213,0 +170784046945,213,0 +170784046995,213,0 +170784047043,213,0 +170784047091,213,0 +170784047139,213,0 +170784047187,214,0 +170784047235,214,0 +170784047283,214,0 +170784047330,214,0 +170784047378,214,0 +170784047428,214,0 +170784047477,214,0 +170784047527,214,0 +170784047575,214,0 +170784047623,213,0 +170784047671,213,0 +170784047720,213,0 +170784047768,213,0 +170784047818,213,0 +170784047865,213,0 +170784047913,214,0 +170784047961,213,0 +170784048011,214,0 +170784048059,214,0 +170784048108,214,0 +170784048156,214,0 +170784048204,214,0 +170784048252,214,0 +170784048300,214,0 +170784048349,214,0 +170784048397,214,0 +170784048446,213,0 +170784048494,213,0 +170784048542,213,0 +170784048590,213,0 +170784048638,213,0 +170784048686,213,0 +170784048735,213,0 +170784048783,213,0 +170784048831,214,0 +170784048880,213,0 +170784048928,214,0 +170784048976,214,0 +170784049026,214,0 +170784049075,214,0 +170784049123,214,0 +170784049171,214,0 +170784049220,214,0 +170784049268,214,0 +170784049318,213,0 +170784049367,213,0 +170784049417,213,0 +170784049465,213,0 +170784049513,213,0 +170784049560,213,0 +170784049608,213,0 +170784049656,213,0 +170784049704,213,0 +170784049752,214,0 +170784049800,214,0 +170784049850,214,0 +170784049898,214,0 +170784049946,214,0 +170784049994,214,0 +170784050043,214,0 +170784050091,214,0 +170784050139,213,0 +170784050189,213,0 +170784050236,213,0 +170784050286,213,0 +170784050334,213,0 +170784050382,213,0 +170784050431,213,0 +170784050479,213,0 +170784050527,213,0 +170784050577,213,0 +170784050626,213,0 +170784050674,213,0 +170784050724,214,0 +170784050771,214,0 +170784050819,214,0 +170784050867,214,0 +170784050915,214,0 +170784050963,214,0 +170784051011,213,0 +170784051059,213,0 +170784051107,213,0 +170784051156,213,0 +170784051206,213,0 +170784051254,213,0 +170784051301,213,0 +170784051351,213,0 +170784051399,214,0 +170784051447,214,0 +170784051495,214,0 +170784051543,214,0 +170784051590,214,0 +170784051638,214,0 +170784051688,214,0 +170784051737,214,0 +170784051787,214,0 +170784051835,213,0 +170784051884,213,0 +170784051932,213,0 +170784051982,213,0 +170784052030,213,0 +170784052078,213,0 +170784052126,213,0 +170784052175,214,0 +170784052223,214,0 +170784052271,214,0 +170784052319,214,0 +170784052367,214,0 +170784052416,214,0 +170784052466,214,0 +170784052514,214,0 +170784052562,214,0 +170784052611,214,0 +170784052661,214,0 +170784052708,214,0 +170784052758,213,0 +170784052808,214,0 +170784052855,214,0 +170784052903,214,0 +170784052951,214,0 +170784053001,214,0 +170784053049,214,0 +170784053097,214,0 +170784053145,214,0 +170784053194,214,0 +170784053244,214,0 +170784053292,214,0 +170784053339,214,0 +170784053387,214,0 +170784053435,214,0 +170784053483,214,0 +170784053533,214,0 +170784053581,213,0 +170784053629,214,0 +170784053676,213,0 +170784053726,214,0 +170784053774,214,0 +170784053822,214,0 +170784053870,214,0 +170784053918,214,0 +170784053966,214,0 +170784054014,214,0 +170784054062,214,0 +170784054110,214,0 +170784054159,214,0 +170784054208,214,0 +170784054256,214,0 +170784054304,214,0 +170784054352,213,0 +170784054400,213,0 +170784054448,213,0 +170784054496,214,0 +170784054545,214,0 +170784054593,214,0 +170784054641,214,0 +170784054689,214,0 +170784054737,214,0 +170784054786,214,0 +170784054834,214,0 +170784054882,214,0 +170784054930,214,0 +170784054978,214,0 +170784055026,214,0 +170784055074,214,0 +170784055122,214,0 +170784055170,213,0 +170784055219,213,0 +170784055267,213,0 +170784055315,213,0 +170784055363,213,0 +170784055411,213,0 +170784055459,213,0 +170784055508,214,0 +170784055558,214,0 +170784055606,214,0 +170784055653,214,0 +170784055703,214,0 +170784055751,214,0 +170784055799,214,0 +170784055847,214,0 +170784055896,214,0 +170784055944,214,0 +170784055992,213,0 +170784056041,213,0 +170784056091,213,0 +170784056140,213,0 +170784056188,213,0 +170784056238,213,0 +170784056285,213,0 +170784056335,213,0 +170784056384,214,0 +170784056432,214,0 +170784056480,214,0 +170784056528,214,0 +170784056578,214,0 +170784056626,214,0 +170784056675,214,0 +170784056723,214,0 +170784056771,214,0 +170784056819,213,0 +170784056867,213,0 +170784056917,213,0 +170784056965,213,0 +170784057013,213,0 +170784057062,213,0 +170784057110,213,0 +170784057160,213,0 +170784057208,213,0 +170784057255,214,0 +170784057305,214,0 +170784057353,214,0 +170784057401,214,0 +170784057450,214,0 +170784057498,214,0 +170784057546,214,0 +170784057594,214,0 +170784057644,213,0 +170784057693,213,0 +170784057743,213,0 +170784057792,213,0 +170784057840,213,0 +170784057888,213,0 +170784057936,213,0 +170784057984,213,0 +170784058033,213,0 +170784058081,213,0 +170784058129,214,0 +170784058177,213,0 +170784058227,214,0 +170784058275,214,0 +170784058324,214,0 +170784058372,214,0 +170784058420,214,0 +170784058468,213,0 +170784058516,213,0 +170784058563,213,0 +170784058613,213,0 +170784058661,213,0 +170784058709,213,0 +170784058758,214,0 +170784058808,214,0 +170784058855,214,0 +170784058905,214,0 +170784058954,214,0 +170784059004,214,0 +170784059053,214,0 +170784059103,214,0 +170784059151,214,0 +170784059199,214,0 +170784059247,214,0 +170784059295,213,0 +170784059343,213,0 +170784059392,213,0 +170784059440,213,0 +170784059488,213,0 +170784059537,213,0 +170784059587,213,0 +170784059635,214,0 +170784059683,213,0 +170784059732,214,0 +170784059782,214,0 +170784059830,214,0 +170784059878,214,0 +170784059927,214,0 +170784059975,214,0 +170784060025,214,0 +170784060073,214,0 +170784060121,213,0 +170784060169,213,0 +170784060216,213,0 +170784060264,213,0 +170784060314,213,0 +170784060363,213,0 +170784060411,213,0 +170784060459,214,0 +170784060507,214,0 +170784060556,213,0 +170784060604,214,0 +170784060654,214,0 +170784060702,214,0 +170784060750,214,0 +170784060799,214,0 +170784060848,214,0 +170784060898,214,0 +170784060946,213,0 +170784060994,213,0 +170784061043,213,0 +170784061091,213,0 +170784061141,213,0 +170784061189,214,0 +170784061237,213,0 +170784061284,214,0 +170784061334,214,0 +170784061383,214,0 +170784061431,214,0 +170784061479,214,0 +170784061527,214,0 +170784061575,214,0 +170784061623,214,0 +170784061671,214,0 +170784061720,214,0 +170784061768,213,0 +170784061816,213,0 +170784061864,213,0 +170784061912,213,0 +170784061961,213,0 +170784062011,214,0 +170784062059,213,0 +170784062107,214,0 +170784062154,214,0 +170784062202,214,0 +170784062252,214,0 +170784062300,214,0 +170784062348,214,0 +170784062396,214,0 +170784062445,214,0 +170784062493,214,0 +170784062541,214,0 +170784062589,214,0 +170784062637,213,0 +170784062685,213,0 +170784062735,213,0 +170784062784,213,0 +170784062832,213,0 +170784062880,214,0 +170784062928,214,0 +170784062976,214,0 +170784063024,214,0 +170784063072,214,0 +170784063121,214,0 +170784063169,214,0 +170784063217,214,0 +170784063265,214,0 +170784063314,214,0 +170784063362,214,0 +170784063410,213,0 +170784063458,213,0 +170784063506,213,0 +170784063555,213,0 +170784063603,213,0 +170784063653,213,0 +170784063701,214,0 +170784063750,214,0 +170784063800,214,0 +170784063848,214,0 +170784063896,214,0 +170784063943,214,0 +170784063991,214,0 +170784064041,214,0 +170784064090,214,0 +170784064140,214,0 +170784064190,214,0 +170784064237,214,0 +170784064285,213,0 +170784064333,213,0 +170784064383,213,0 +170784064431,213,0 +170784064479,213,0 +170784064528,213,0 +170784064576,213,0 +170784064624,213,0 +170784064672,213,0 +170784064721,213,0 +170784064769,214,0 +170784064817,214,0 +170784064867,214,0 +170784064915,214,0 +170784064963,214,0 +170784065012,214,0 +170784065060,213,0 +170784065108,213,0 +170784065156,213,0 +170784065205,213,0 +170784065253,213,0 +170784065301,213,0 +170784065349,213,0 +170784065397,214,0 +170784065446,214,0 +170784065494,214,0 +170784065542,214,0 +170784065590,214,0 +170784065640,214,0 +170784065688,214,0 +170784065736,214,0 +170784065785,214,0 +170784065833,214,0 +170784065881,214,0 +170784065929,213,0 +170784065978,213,0 +170784066028,214,0 +170784066076,214,0 +170784066124,214,0 +170784066172,214,0 +170784066221,214,0 +170784066271,214,0 +170784066320,214,0 +170784066370,214,0 +170784066419,214,0 +170784066467,214,0 +170784066515,214,0 +170784066565,214,0 +170784066614,214,0 +170784066664,214,0 +170784066712,214,0 +170784066761,214,0 +170784066809,213,0 +170784066857,214,0 +170784066905,214,0 +170784066954,214,0 +170784067004,214,0 +170784067052,214,0 +170784067101,214,0 +170784067149,214,0 +170784067198,214,0 +170784067246,214,0 +170784067294,214,0 +170784067342,214,0 +170784067390,214,0 +170784067437,214,0 +170784067487,214,0 +170784067535,214,0 +170784067583,213,0 +170784067630,213,0 +170784067678,213,0 +170784067726,213,0 +170784067774,214,0 +170784067822,213,0 +170784067871,214,0 +170784067920,214,0 +170784067968,214,0 +170784068016,214,0 +170784068064,214,0 +170784068111,214,0 +170784068159,214,0 +170784068207,214,0 +170784068255,214,0 +170784068303,214,0 +170784068351,214,0 +170784068399,213,0 +170784068446,213,0 +170784068494,213,0 +170784068542,213,0 +170784068590,213,0 +170784068638,213,0 +170784068686,214,0 +170784068734,214,0 +170784068781,214,0 +170784068829,214,0 +170784068877,214,0 +170784068925,214,0 +170784068973,214,0 +170784069021,214,0 +170784069068,214,0 +170784069116,214,0 +170784069164,214,0 +170784069212,213,0 +170784069260,213,0 +170784069310,213,0 +170784069357,213,0 +170784069405,213,0 +170784069453,213,0 +170784069502,213,0 +170784069550,213,0 +170784069598,213,0 +170784069646,213,0 +170784069694,213,0 +170784069743,214,0 +170784069791,214,0 +170784069841,214,0 +170784069889,214,0 +170784069938,214,0 +170784069986,214,0 +170784070034,213,0 +170784070082,213,0 +170784070130,213,0 +170784070178,213,0 +170784070225,213,0 +170784070273,213,0 +170784070321,213,0 +170784070369,213,0 +170784070417,213,0 +170784070466,214,0 +170784070514,214,0 +170784070562,214,0 +170784070610,214,0 +170784070658,214,0 +170784070706,214,0 +170784070753,214,0 +170784070801,214,0 +170784070849,213,0 +170784070897,213,0 +170784070947,213,0 +170784070996,213,0 +170784071044,213,0 +170784071092,213,0 +170784071142,213,0 +170784071191,213,0 +170784071241,213,0 +170784071290,213,0 +170784071340,214,0 +170784071388,214,0 +170784071436,214,0 +170784071484,214,0 +170784071532,214,0 +170784071580,214,0 +170784071627,214,0 +170784071675,213,0 +170784071723,213,0 +170784071773,213,0 +170784071821,213,0 +170784071869,213,0 +170784071917,213,0 +170784071966,213,0 +170784072014,214,0 +170784072062,213,0 +170784072110,214,0 +170784072158,214,0 +170784072207,214,0 +170784072255,214,0 +170784072303,214,0 +170784072352,214,0 +170784072400,214,0 +170784072450,214,0 +170784072499,213,0 +170784072547,213,0 +170784072595,213,0 +170784072643,213,0 +170784072691,213,0 +170784072739,213,0 +170784072787,213,0 +170784072835,213,0 +170784072883,213,0 +170784072931,213,0 +170784072979,213,0 +170784073026,214,0 +170784073076,214,0 +170784073125,214,0 +170784073173,214,0 +170784073221,214,0 +170784073271,214,0 +170784073319,213,0 +170784073367,213,0 +170784073416,213,0 +170784073464,213,0 +170784073514,213,0 +170784073561,213,0 +170784073611,213,0 +170784073659,213,0 +170784073709,214,0 +170784073756,214,0 +170784073806,214,0 +170784073855,214,0 +170784073905,214,0 +170784073955,214,0 +170784074003,214,0 +170784074052,214,0 +170784074100,214,0 +170784074148,214,0 +170784074198,213,0 +170784074245,213,0 +170784074293,213,0 +170784074343,213,0 +170784074391,213,0 +170784074439,213,0 +170784074487,213,0 +170784074535,214,0 +170784074582,213,0 +170784074630,214,0 +170784074678,214,0 +170784074726,214,0 +170784074774,214,0 +170784074822,214,0 +170784074870,214,0 +170784074918,214,0 +170784074967,214,0 +170784075015,213,0 +170784075065,213,0 +170784075112,213,0 +170784075160,213,0 +170784075208,213,0 +170784075256,213,0 +170784075306,213,0 +170784075354,213,0 +170784075402,213,0 +170784075450,214,0 +170784075498,214,0 +170784075547,214,0 +170784075597,214,0 +170784075645,214,0 +170784075693,214,0 +170784075742,214,0 +170784075792,213,0 +170784075839,213,0 +170784075887,213,0 +170784075937,213,0 +170784075984,213,0 +170784076032,213,0 +170784076080,213,0 +170784076128,213,0 +170784076176,214,0 +170784076225,213,0 +170784076273,214,0 +170784076321,213,0 +170784076369,214,0 +170784076416,214,0 +170784076464,214,0 +170784076512,214,0 +170784076560,214,0 +170784076608,214,0 +170784076656,213,0 +170784076704,213,0 +170784076752,213,0 +170784076801,213,0 +170784076849,214,0 +170784076897,214,0 +170784076947,213,0 +170784076996,214,0 +170784077046,214,0 +170784077094,214,0 +170784077142,214,0 +170784077189,214,0 +170784077239,214,0 +170784077287,214,0 +170784077335,214,0 +170784077383,214,0 +170784077431,214,0 +170784077479,213,0 +170784077528,213,0 +170784077578,213,0 +170784077626,213,0 +170784077675,214,0 +170784077725,214,0 +170784077773,214,0 +170784077822,214,0 +170784077872,214,0 +170784077920,214,0 +170784077969,214,0 +170784078017,214,0 +170784078066,214,0 +170784078114,214,0 +170784078162,214,0 +170784078210,214,0 +170784078258,213,0 +170784078306,213,0 +170784078354,213,0 +170784078401,213,0 +170784078449,214,0 +170784078497,214,0 +170784078545,214,0 +170784078593,214,0 +170784078641,214,0 +170784078688,214,0 +170784078736,214,0 +170784078784,214,0 +170784078832,214,0 +170784078881,214,0 +170784078929,214,0 +170784078978,214,0 +170784079028,214,0 +170784079076,214,0 +170784079124,214,0 +170784079173,214,0 +170784079221,214,0 +170784079269,214,0 +170784079316,214,0 +170784079364,214,0 +170784079412,214,0 +170784079462,214,0 +170784079511,214,0 +170784079561,214,0 +170784079610,214,0 +170784079658,214,0 +170784079706,214,0 +170784079754,214,0 +170784079802,214,0 +170784079850,214,0 +170784079900,214,0 +170784079947,214,0 +170784079995,214,0 +170784080043,214,0 +170784080093,214,0 +170784080141,214,0 +170784080190,214,0 +170784080240,214,0 +170784080289,214,0 +170784080337,214,0 +170784080385,214,0 +170784080433,214,0 +170784080481,214,0 +170784080529,214,0 +170784080579,214,0 +170784080627,214,0 +170784080675,214,0 +170784080723,214,0 +170784080772,214,0 +170784080821,214,0 +170784080871,214,0 +170784080920,214,0 +170784080968,214,0 +170784081016,214,0 +170784081064,214,0 +170784081114,214,0 +170784081163,214,0 +170784081211,214,0 +170784081259,214,0 +170784081307,214,0 +170784081354,214,0 +170784081402,214,0 +170784081452,214,0 +170784081500,214,0 +170784081548,214,0 +170784081595,214,0 +170784081643,213,0 +170784081691,214,0 +170784081739,214,0 +170784081787,214,0 +170784081835,214,0 +170784081883,214,0 +170784081931,214,0 +170784081978,214,0 +170784082026,214,0 +170784082074,214,0 +170784082122,214,0 +170784082172,214,0 +170784082220,214,0 +170784082268,214,0 +170784082315,214,0 +170784082365,214,0 +170784082413,213,0 +170784082460,213,0 +170784082508,213,0 +170784082558,213,0 +170784082605,213,0 +170784082653,214,0 +170784082701,214,0 +170784082749,214,0 +170784082797,214,0 +170784082845,214,0 +170784082893,214,0 +170784082940,214,0 +170784082988,214,0 +170784083038,214,0 +170784083086,214,0 +170784083135,214,0 +170784083183,214,0 +170784083231,213,0 +170784083279,213,0 +170784083328,213,0 +170784083376,213,0 +170784083424,213,0 +170784083472,213,0 +170784083519,213,0 +170784083567,213,0 +170784083615,214,0 +170784083665,214,0 +170784083713,214,0 +170784083762,214,0 +170784083810,214,0 +170784083858,214,0 +170784083906,214,0 +170784083956,214,0 +170784084006,214,0 +170784084055,213,0 +170784084105,213,0 +170784084152,213,0 +170784084200,213,0 +170784084248,213,0 +170784084298,213,0 +170784084347,213,0 +170784084395,213,0 +170784084443,214,0 +170784084491,214,0 +170784084541,214,0 +170784084590,214,0 +170784084640,214,0 +170784084689,214,0 +170784084737,214,0 +170784084785,214,0 +170784084833,213,0 +170784084883,213,0 +170784084932,213,0 +170784084982,213,0 +170784085029,213,0 +170784085077,213,0 +170784085125,213,0 +170784085173,214,0 +170784085221,214,0 +170784085271,214,0 +170784085319,214,0 +170784085366,214,0 +170784085416,214,0 +170784085464,214,0 +170784085513,214,0 +170784085561,214,0 +170784085609,214,0 +170784085657,213,0 +170784085705,213,0 +170784085753,213,0 +170784085800,213,0 +170784085848,213,0 +170784085898,213,0 +170784085946,213,0 +170784085994,214,0 +170784086042,214,0 +170784086090,214,0 +170784086139,214,0 +170784086187,214,0 +170784086237,214,0 +170784086285,214,0 +170784086334,214,0 +170784086382,214,0 +170784086432,213,0 +170784086480,213,0 +170784086527,213,0 +170784086575,213,0 +170784086623,213,0 +170784086671,213,0 +170784086721,214,0 +170784086769,214,0 +170784086817,214,0 +170784086864,214,0 +170784086912,214,0 +170784086960,214,0 +170784087008,214,0 +170784087058,214,0 +170784087107,214,0 +170784087157,214,0 +170784087206,214,0 +170784087254,213,0 +170784087304,213,0 +170784087352,213,0 +170784087401,213,0 +170784087449,213,0 +170784087497,213,0 +170784087545,214,0 +170784087593,214,0 +170784087641,214,0 +170784087689,214,0 +170784087737,214,0 +170784087786,214,0 +170784087834,214,0 +170784087882,214,0 +170784087930,214,0 +170784087978,214,0 +170784088026,214,0 +170784088076,213,0 +170784088125,213,0 +170784088173,213,0 +170784088221,213,0 +170784088271,213,0 +170784088320,214,0 +170784088368,214,0 +170784088416,214,0 +170784088465,214,0 +170784088513,214,0 +170784088561,214,0 +170784088609,214,0 +170784088657,214,0 +170784088707,214,0 +170784088755,214,0 +170784088804,214,0 +170784088852,213,0 +170784088902,213,0 +170784088950,213,0 +170784088997,213,0 +170784089045,213,0 +170784089093,213,0 +170784089141,213,0 +170784089190,214,0 +170784089238,214,0 +170784089286,214,0 +170784089334,214,0 +170784089384,214,0 +170784089432,214,0 +170784089479,214,0 +170784089527,214,0 +170784089575,214,0 +170784089623,214,0 +170784089671,213,0 +170784089720,213,0 +170784089768,213,0 +170784089816,213,0 +170784089866,213,0 +170784089913,213,0 +170784089961,213,0 +170784090009,213,0 +170784090057,213,0 +170784090106,214,0 +170784090154,214,0 +170784090204,214,0 +170784090252,214,0 +170784090299,214,0 +170784090347,214,0 +170784090395,214,0 +170784090443,214,0 +170784090491,213,0 +170784090539,213,0 +170784090587,213,0 +170784090634,213,0 +170784090682,213,0 +170784090732,213,0 +170784090780,213,0 +170784090828,213,0 +170784090877,213,0 +170784090925,213,0 +170784090973,214,0 +170784091023,214,0 +170784091071,214,0 +170784091120,214,0 +170784091170,214,0 +170784091218,214,0 +170784091265,214,0 +170784091313,213,0 +170784091361,213,0 +170784091409,213,0 +170784091459,213,0 +170784091507,213,0 +170784091554,214,0 +170784091602,213,0 +170784091650,214,0 +170784091698,214,0 +170784091746,214,0 +170784091794,214,0 +170784091841,214,0 +170784091889,214,0 +170784091937,214,0 +170784091987,214,0 +170784092036,214,0 +170784092084,213,0 +170784092132,213,0 +170784092180,214,0 +170784092227,214,0 +170784092277,214,0 +170784092325,214,0 +170784092373,214,0 +170784092420,214,0 +170784092468,214,0 +170784092516,214,0 +170784092564,214,0 +170784092612,214,0 +170784092660,214,0 +170784092708,214,0 +170784092757,214,0 +170784092805,214,0 +170784092855,214,0 +170784092903,213,0 +170784092952,213,0 +170784093002,214,0 +170784093050,214,0 +170784093099,214,0 +170784093147,214,0 +170784093195,214,0 +170784093243,214,0 +170784093291,214,0 +170784093341,214,0 +170784093388,214,0 +170784093436,214,0 +170784093484,214,0 +170784093532,214,0 +170784093582,214,0 +170784093631,214,0 +170784093679,214,0 +170784093727,213,0 +170784093775,213,0 +170784093823,213,0 +170784093871,214,0 +170784093919,214,0 +170784093966,214,0 +170784094014,214,0 +170784094064,214,0 +170784094112,214,0 +170784094161,214,0 +170784094211,214,0 +170784094260,214,0 +170784094308,214,0 +170784094358,214,0 +170784094407,214,0 +170784094455,214,0 +170784094503,213,0 +170784094552,213,0 +170784094600,213,0 +170784094648,213,0 +170784094698,213,0 +170784094746,213,0 +170784094795,214,0 +170784094845,214,0 +170784094894,214,0 +170784094942,214,0 +170784094990,214,0 +170784095040,214,0 +170784095088,214,0 +170784095136,214,0 +170784095184,214,0 +170784095233,214,0 +170784095283,214,0 +170784095330,213,0 +170784095380,213,0 +170784095428,213,0 +170784095476,213,0 +170784095524,213,0 +170784095572,213,0 +170784095620,213,0 +170784095668,213,0 +170784095717,214,0 +170784095765,214,0 +170784095813,214,0 +170784095863,214,0 +170784095910,214,0 +170784095958,214,0 +170784096008,214,0 +170784096056,214,0 +170784096104,214,0 +170784096153,213,0 +170784096201,213,0 +170784096249,213,0 +170784096297,213,0 +170784096345,213,0 +170784096393,213,0 +170784096441,213,0 +170784096489,214,0 +170784096537,214,0 +170784096586,214,0 +170784096634,214,0 +170784096684,214,0 +170784096732,214,0 +170784096780,214,0 +170784096828,214,0 +170784096875,214,0 +170784096923,214,0 +170784096971,213,0 +170784097019,213,0 +170784097069,213,0 +170784097118,213,0 +170784097166,214,0 +170784097216,214,0 +170784097263,214,0 +170784097313,214,0 +170784097361,214,0 +170784097410,214,0 +170784097458,214,0 +170784097506,214,0 +170784097554,214,0 +170784097602,214,0 +170784097650,214,0 +170784097698,214,0 +170784097747,213,0 +170784097795,213,0 +170784097845,214,0 +170784097894,214,0 +170784097944,214,0 +170784097992,214,0 +170784098040,214,0 +170784098088,214,0 +170784098136,214,0 +170784098184,214,0 +170784098232,214,0 +170784098279,214,0 +170784098327,214,0 +170784098375,214,0 +170784098423,214,0 +170784098471,214,0 +170784098521,214,0 +170784098569,213,0 +170784098617,213,0 +170784098665,213,0 +170784098712,213,0 +170784098760,213,0 +170784098808,214,0 +170784098856,214,0 +170784098904,214,0 +170784098952,214,0 +170784099000,214,0 +170784099048,214,0 +170784099098,214,0 +170784099147,214,0 +170784099195,214,0 +170784099243,214,0 +170784099291,214,0 +170784099339,214,0 +170784099387,213,0 +170784099435,213,0 +170784099483,214,0 +170784099531,214,0 +170784099580,213,0 +170784099628,214,0 +170784099677,214,0 +170784099727,214,0 +170784099775,214,0 +170784099823,214,0 +170784099871,214,0 +170784099920,214,0 +170784099968,214,0 +170784100016,214,0 +170784100064,214,0 +170784100113,214,0 +170784100163,213,0 +170784100211,213,0 +170784100259,213,0 +170784100308,213,0 +170784100356,213,0 +170784100406,213,0 +170784100454,213,0 +170784100501,213,0 +170784100549,214,0 +170784100599,214,0 +170784100647,214,0 +170784100695,214,0 +170784100743,214,0 +170784100791,214,0 +170784100840,214,0 +170784100888,214,0 +170784100937,214,0 +170784100985,213,0 +170784101035,213,0 +170784101083,213,0 +170784101131,213,0 +170784101179,213,0 +170784101228,213,0 +170784101278,213,0 +170784101326,213,0 +170784101375,213,0 +170784101423,214,0 +170784101473,214,0 +170784101521,214,0 +170784101569,214,0 +170784101617,214,0 +170784101665,214,0 +170784101713,214,0 +170784101761,214,0 +170784101810,213,0 +170784101860,213,0 +170784101909,213,0 +170784101957,213,0 +170784102005,213,0 +170784102053,213,0 +170784102101,213,0 +170784102148,213,0 +170784102198,213,0 +170784102248,213,0 +170784102295,214,0 +170784102345,214,0 +170784102393,214,0 +170784102441,214,0 +170784102490,214,0 +170784102538,214,0 +170784102586,213,0 +170784102634,213,0 +170784102682,213,0 +170784102730,213,0 +170784102778,213,0 +170784102826,213,0 +170784102874,213,0 +170784102922,213,0 +170784102971,214,0 +170784103021,214,0 +170784103069,214,0 +170784103117,214,0 +170784103166,214,0 +170784103214,214,0 +170784103262,214,0 +170784103310,214,0 +170784103358,214,0 +170784103407,213,0 +170784103457,213,0 +170784103506,213,0 +170784103554,213,0 +170784103602,213,0 +170784103652,213,0 +170784103699,213,0 +170784103749,214,0 +170784103797,213,0 +170784103846,214,0 +170784103896,214,0 +170784103945,214,0 +170784103993,214,0 +170784104041,214,0 +170784104089,214,0 +170784104139,214,0 +170784104186,213,0 +170784104234,213,0 +170784104284,213,0 +170784104332,213,0 +170784104380,213,0 +170784104428,213,0 +170784104477,214,0 +170784104525,214,0 +170784104573,214,0 +170784104621,214,0 +170784104669,214,0 +170784104718,214,0 +170784104766,214,0 +170784104816,214,0 +170784104865,214,0 +170784104913,214,0 +170784104961,214,0 +170784105010,213,0 +170784105058,213,0 +170784105106,213,0 +170784105154,213,0 +170784105202,213,0 +170784105252,214,0 +170784105301,214,0 +170784105351,214,0 +170784105400,214,0 +170784105448,214,0 +170784105496,214,0 +170784105544,214,0 +170784105594,214,0 +170784105643,214,0 +170784105693,214,0 +170784105742,214,0 +170784105790,214,0 +170784105838,213,0 +170784105886,213,0 +170784105934,213,0 +170784105982,213,0 +170784106031,214,0 +170784106079,214,0 +170784106127,214,0 +170784106175,214,0 +170784106225,214,0 +170784106273,214,0 +170784106322,214,0 +170784106372,214,0 +170784106420,214,0 +170784106469,214,0 +170784106517,214,0 +170784106565,214,0 +170784106613,213,0 +170784106661,213,0 +170784106710,213,0 +170784106758,213,0 +170784106806,214,0 +170784106854,214,0 +170784106904,214,0 +170784106951,214,0 +170784106999,214,0 +170784107047,214,0 +170784107097,214,0 +170784107146,214,0 +170784107196,214,0 +170784107245,214,0 +170784107293,214,0 +170784107342,214,0 +170784107392,214,0 +170784107440,213,0 +170784107488,213,0 +170784107537,213,0 +170784107587,213,0 +170784107635,213,0 +170784107684,214,0 +170784107732,213,0 +170784107780,214,0 +170784107828,214,0 +170784107877,214,0 +170784107925,214,0 +170784107973,214,0 +170784108021,214,0 +170784108069,214,0 +170784108117,214,0 +170784108167,214,0 +170784108214,214,0 +170784108262,213,0 +170784108310,213,0 +170784108358,213,0 +170784108408,213,0 +170784108456,213,0 +170784108504,214,0 +170784108552,214,0 +170784108599,214,0 +170784108647,214,0 +170784108695,214,0 +170784108745,214,0 +170784108794,214,0 +170784108842,214,0 +170784108892,214,0 +170784108940,214,0 +170784108989,214,0 +170784109037,213,0 +170784109087,214,0 +170784109136,214,0 +170784109184,214,0 +170784109233,214,0 +170784109281,214,0 +170784109331,214,0 +170784109379,214,0 +170784109428,214,0 +170784109476,214,0 +170784109524,214,0 +170784109572,214,0 +170784109621,214,0 +170784109669,214,0 +170784109717,214,0 +170784109765,214,0 +170784109813,214,0 +170784109861,213,0 +170784109909,213,0 +170784109959,213,0 +170784110008,213,0 +170784110058,214,0 +170784110105,214,0 +170784110153,214,0 +170784110201,214,0 +170784110251,214,0 +170784110299,214,0 +170784110348,214,0 +170784110396,214,0 +170784110444,214,0 +170784110492,214,0 +170784110541,214,0 +170784110589,214,0 +170784110639,213,0 +170784110688,213,0 +170784110736,213,0 +170784110784,213,0 +170784110832,213,0 +170784110880,213,0 +170784110928,213,0 +170784110976,214,0 +170784111025,214,0 +170784111073,214,0 +170784111121,214,0 +170784111169,214,0 +170784111218,214,0 +170784111266,214,0 +170784111316,214,0 +170784111364,214,0 +170784111412,214,0 +170784111460,213,0 +170784111509,213,0 +170784111557,213,0 +170784111607,213,0 +170784111654,213,0 +170784111702,214,0 +170784111750,213,0 +170784111798,214,0 +170784111846,214,0 +170784111895,214,0 +170784111943,214,0 +170784111993,214,0 +170784112041,214,0 +170784112088,214,0 +170784112136,214,0 +170784112184,214,0 +170784112232,213,0 +170784112280,213,0 +170784112328,213,0 +170784112378,213,0 +170784112426,213,0 +170784112475,214,0 +170784112525,213,0 +170784112573,213,0 +170784112621,214,0 +170784112670,214,0 +170784112718,214,0 +170784112768,214,0 +170784112816,214,0 +170784112864,214,0 +170784112911,214,0 +170784112961,214,0 +170784113011,214,0 +170784113060,213,0 +170784113108,213,0 +170784113156,213,0 +170784113205,213,0 +170784113253,213,0 +170784113301,213,0 +170784113351,214,0 +170784113399,213,0 +170784113447,214,0 +170784113496,214,0 +170784113544,214,0 +170784113592,214,0 +170784113640,214,0 +170784113688,214,0 +170784113737,214,0 +170784113785,214,0 +170784113835,214,0 +170784113883,213,0 +170784113932,213,0 +170784113982,213,0 +170784114031,214,0 +170784114079,214,0 +170784114127,214,0 +170784114177,214,0 +170784114226,214,0 +170784114274,214,0 +170784114324,214,0 +170784114373,214,0 +170784114423,214,0 +170784114472,214,0 +170784114520,214,0 +170784114568,214,0 +170784114618,214,0 +170784114665,213,0 +170784114715,213,0 +170784114763,213,0 +170784114812,213,0 +170784114860,213,0 +170784114908,213,0 +170784114956,214,0 +170784115005,214,0 +170784115053,214,0 +170784115102,214,0 +170784115150,214,0 +170784115198,214,0 +170784115248,214,0 +170784115297,214,0 +170784115345,214,0 +170784115393,214,0 +170784115440,214,0 +170784115488,213,0 +170784115536,213,0 +170784115584,213,0 +170784115632,213,0 +170784115680,213,0 +170784115728,213,0 +170784115775,214,0 +170784115823,214,0 +170784115871,214,0 +170784115919,214,0 +170784115967,214,0 +170784116015,214,0 +170784116064,214,0 +170784116113,214,0 +170784116161,214,0 +170784116209,214,0 +170784116257,214,0 +170784116305,213,0 +170784116354,213,0 +170784116402,213,0 +170784116450,213,0 +170784116498,213,0 +170784116546,214,0 +170784116594,214,0 +170784116641,214,0 +170784116689,214,0 +170784116739,214,0 +170784116786,214,0 +170784116834,214,0 +170784116882,214,0 +170784116932,214,0 +170784116980,214,0 +170784117027,214,0 +170784117075,213,0 +170784117125,214,0 +170784117173,213,0 +170784117220,214,0 +170784117268,214,0 +170784117318,214,0 +170784117366,214,0 +170784117414,214,0 +170784117462,214,0 +170784117510,214,0 +170784117559,214,0 +170784117607,214,0 +170784117655,214,0 +170784117703,214,0 +170784117753,214,0 +170784117802,214,0 +170784117850,214,0 +170784117898,214,0 +170784117947,213,0 +170784117995,213,0 +170784118043,214,0 +170784118093,214,0 +170784118141,214,0 +170784118189,214,0 +170784118237,214,0 +170784118286,214,0 +170784118334,214,0 +170784118382,214,0 +170784118430,214,0 +170784118478,214,0 +170784118526,214,0 +170784118574,214,0 +170784118623,214,0 +170784118671,214,0 +170784118721,213,0 +170784118770,213,0 +170784118818,213,0 +170784118866,213,0 +170784118914,214,0 +170784118964,214,0 +170784119012,214,0 +170784119061,214,0 +170784119109,214,0 +170784119158,214,0 +170784119206,214,0 +170784119254,214,0 +170784119302,214,0 +170784119350,214,0 +170784119400,214,0 +170784119448,214,0 +170784119497,213,0 +170784119545,213,0 +170784119593,213,0 +170784119641,213,0 +170784119689,213,0 +170784119737,213,0 +170784119785,214,0 +170784119835,214,0 +170784119882,214,0 +170784119930,214,0 +170784119980,214,0 +170784120028,214,0 +170784120076,214,0 +170784120125,214,0 +170784120173,214,0 +170784120221,214,0 +170784120269,214,0 +170784120317,213,0 +170784120367,213,0 +170784120416,213,0 +170784120466,213,0 +170784120514,213,0 +170784120561,213,0 +170784120609,213,0 +170784120657,213,0 +170784120705,213,0 +170784120753,214,0 +170784120801,214,0 +170784120849,214,0 +170784120897,214,0 +170784120947,214,0 +170784120994,214,0 +170784121042,214,0 +170784121092,213,0 +170784121140,213,0 +170784121189,213,0 +170784121239,213,0 +170784121288,213,0 +170784121338,213,0 +170784121386,213,0 +170784121434,213,0 +170784121482,213,0 +170784121531,214,0 +170784121579,213,0 +170784121627,214,0 +170784121675,214,0 +170784121723,214,0 +170784121772,214,0 +170784121822,214,0 +170784121870,214,0 +170784121920,214,0 +170784121969,214,0 +170784122017,214,0 +170784122065,214,0 +170784122113,214,0 +170784122162,214,0 +170784122210,214,0 +170784122258,214,0 +170784122308,213,0 +170784122356,213,0 +170784122404,213,0 +170784122453,213,0 +170784122501,213,0 +170784122551,214,0 +170784122599,214,0 +170784122648,214,0 +170784122696,214,0 +170784122746,214,0 +170784122793,214,0 +170784122841,214,0 +170784122889,214,0 +170784122937,214,0 +170784122985,214,0 +170784123033,214,0 +170784123081,214,0 +170784123129,213,0 +170784123179,213,0 +170784123227,213,0 +170784123276,213,0 +170784123324,213,0 +170784123372,213,0 +170784123420,214,0 +170784123470,213,0 +170784123519,214,0 +170784123567,214,0 +170784123615,214,0 +170784123663,214,0 +170784123713,214,0 +170784123761,214,0 +170784123808,214,0 +170784123858,214,0 +170784123906,213,0 +170784123954,213,0 +170784124003,213,0 +170784124051,213,0 +170784124099,213,0 +170784124147,213,0 +170784124195,213,0 +170784124244,213,0 +170784124292,214,0 +170784124342,214,0 +170784124390,214,0 +170784124438,214,0 +170784124486,214,0 +170784124534,214,0 +170784124583,214,0 +170784124631,214,0 +170784124680,214,0 +170784124728,213,0 +170784124776,213,0 +170784124826,213,0 +170784124874,213,0 +170784124923,213,0 +170784124971,213,0 +170784125019,213,0 +170784125067,213,0 +170784125115,214,0 +170784125163,214,0 +170784125211,214,0 +170784125260,214,0 +170784125308,214,0 +170784125356,214,0 +170784125406,214,0 +170784125454,214,0 +170784125503,213,0 +170784125551,213,0 +170784125599,213,0 +170784125649,213,0 +170784125697,213,0 +170784125746,213,0 +170784125796,213,0 +170784125844,213,0 +170784125893,213,0 +170784125941,213,0 +170784125989,214,0 +170784126037,214,0 +170784126087,214,0 +170784126135,214,0 +170784126182,214,0 +170784126232,214,0 +170784126280,214,0 +170784126329,213,0 +170784126379,213,0 +170784126427,213,0 +170784126476,213,0 +170784126526,213,0 +170784126575,214,0 +170784126624,214,0 +170784126671,214,0 +170784126719,214,0 +170784126767,214,0 +170784126815,214,0 +170784126863,214,0 +170784126911,214,0 +170784126959,214,0 +170784127008,214,0 +170784127056,214,0 +170784127104,213,0 +170784127152,213,0 +170784127200,213,0 +170784127248,213,0 +170784127296,213,0 +170784127344,213,0 +170784127392,213,0 +170784127440,213,0 +170784127489,214,0 +170784127537,214,0 +170784127586,214,0 +170784127636,214,0 +170784127684,214,0 +170784127732,214,0 +170784127779,214,0 +170784127827,214,0 +170784127877,214,0 +170784127925,213,0 +170784127974,213,0 +170784128022,213,0 +170784128070,213,0 +170784128118,214,0 +170784128166,214,0 +170784128216,213,0 +170784128265,214,0 +170784128315,214,0 +170784128364,214,0 +170784128412,214,0 +170784128462,214,0 +170784128510,214,0 +170784128558,214,0 +170784128605,214,0 +170784128653,214,0 +170784128701,214,0 +170784128749,213,0 +170784128797,214,0 +170784128845,214,0 +170784128893,214,0 +170784128940,214,0 +170784128988,214,0 +170784129038,214,0 +170784129086,214,0 +170784129134,214,0 +170784129182,214,0 +170784129230,214,0 +170784129277,214,0 +170784129325,214,0 +170784129373,214,0 +170784129421,214,0 +170784129469,214,0 +170784129517,213,0 +170784129564,214,0 +170784129614,214,0 +170784129662,214,0 +170784129710,214,0 +170784129757,214,0 +170784129805,214,0 +170784129855,214,0 +170784129903,214,0 +170784129952,214,0 +170784130000,214,0 +170784130048,214,0 +170784130097,214,0 +170784130145,214,0 +170784130193,214,0 +170784130241,214,0 +170784130289,214,0 +170784130337,214,0 +170784130385,214,0 +170784130434,214,0 +170784130482,214,0 +170784130530,214,0 +170784130578,214,0 +170784130627,214,0 +170784130675,214,0 +170784130723,214,0 +170784130771,214,0 +170784130821,214,0 +170784130869,214,0 +170784130918,214,0 +170784130966,214,0 +170784131016,214,0 +170784131065,214,0 +170784131113,214,0 +170784131161,214,0 +170784131210,214,0 +170784131260,214,0 +170784131308,214,0 +170784131356,214,0 +170784131404,214,0 +170784131452,214,0 +170784131499,214,0 +170784131547,214,0 +170784131595,214,0 +170784131643,214,0 +170784131692,214,0 +170784131740,214,0 +170784131788,214,0 +170784131836,214,0 +170784131884,214,0 +170784131931,213,0 +170784131981,214,0 +170784132029,214,0 +170784132076,214,0 +170784132124,214,0 +170784132172,214,0 +170784132220,214,0 +170784132268,214,0 +170784132316,214,0 +170784132363,214,0 +170784132411,214,0 +170784132461,214,0 +170784132510,214,0 +170784132560,214,0 +170784132609,214,0 +170784132657,214,0 +170784132707,214,0 +170784132756,213,0 +170784132804,213,0 +170784132852,213,0 +170784132902,213,0 +170784132951,213,0 +170784132999,213,0 +170784133047,214,0 +170784133097,214,0 +170784133146,214,0 +170784133194,214,0 +170784133242,214,0 +170784133290,214,0 +170784133339,214,0 +170784133387,214,0 +170784133437,214,0 +170784133485,214,0 +170784133534,213,0 +170784133582,213,0 +170784133632,213,0 +170784133680,213,0 +170784133728,213,0 +170784133776,213,0 +170784133825,213,0 +170784133873,214,0 +170784133921,214,0 +170784133971,214,0 +170784134019,214,0 +170784134067,214,0 +170784134115,214,0 +170784134163,214,0 +170784134212,214,0 +170784134260,214,0 +170784134309,214,0 +170784134357,213,0 +170784134405,213,0 +170784134453,213,0 +170784134501,213,0 +170784134549,213,0 +170784134597,213,0 +170784134645,213,0 +170784134693,213,0 +170784134742,214,0 +170784134790,214,0 +170784134838,214,0 +170784134886,214,0 +170784134936,214,0 +170784134984,214,0 +170784135032,214,0 +170784135079,214,0 +170784135127,214,0 +170784135175,213,0 +170784135223,213,0 +170784135271,213,0 +170784135320,213,0 +170784135368,213,0 +170784135416,213,0 +170784135464,213,0 +170784135512,213,0 +170784135560,213,0 +170784135608,214,0 +170784135656,214,0 +170784135706,214,0 +170784135753,214,0 +170784135803,214,0 +170784135851,214,0 +170784135898,214,0 +170784135946,213,0 +170784135996,213,0 +170784136044,213,0 +170784136092,213,0 +170784136140,213,0 +170784136187,213,0 +170784136235,214,0 +170784136283,214,0 +170784136331,214,0 +170784136379,214,0 +170784136427,214,0 +170784136475,214,0 +170784136524,214,0 +170784136572,214,0 +170784136620,214,0 +170784136668,214,0 +170784136716,214,0 +170784136764,213,0 +170784136812,213,0 +170784136861,213,0 +170784136909,213,0 +170784136957,213,0 +170784137005,213,0 +170784137054,213,0 +170784137102,214,0 +170784137150,214,0 +170784137200,214,0 +170784137248,214,0 +170784137295,214,0 +170784137343,214,0 +170784137391,214,0 +170784137439,214,0 +170784137487,214,0 +170784137535,214,0 +170784137583,213,0 +170784137631,213,0 +170784137679,213,0 +170784137726,213,0 +170784137774,213,0 +170784137822,213,0 +170784137870,213,0 +170784137918,214,0 +170784137967,214,0 +170784138015,214,0 +170784138063,214,0 +170784138113,214,0 +170784138162,214,0 +170784138210,214,0 +170784138258,214,0 +170784138308,214,0 +170784138357,213,0 +170784138407,213,0 +170784138455,213,0 +170784138504,213,0 +170784138552,213,0 +170784138600,213,0 +170784138648,213,0 +170784138696,214,0 +170784138745,214,0 +170784138793,214,0 +170784138843,214,0 +170784138891,214,0 +170784138938,214,0 +170784138986,214,0 +170784139034,214,0 +170784139082,214,0 +170784139130,214,0 +170784139178,213,0 +170784139226,213,0 +170784139274,213,0 +170784139322,213,0 +170784139372,213,0 +170784139420,213,0 +170784139468,214,0 +170784139516,214,0 +170784139564,214,0 +170784139611,214,0 +170784139659,214,0 +170784139707,214,0 +170784139755,214,0 +170784139803,214,0 +170784139851,214,0 +170784139899,214,0 +170784139946,214,0 +170784139994,213,0 +170784140044,213,0 +170784140092,213,0 +170784140139,213,0 +170784140187,213,0 +170784140235,213,0 +170784140283,213,0 +170784140331,214,0 +170784140379,213,0 +170784140427,214,0 +170784140476,214,0 +170784140524,214,0 +170784140572,214,0 +170784140622,214,0 +170784140671,214,0 +170784140719,214,0 +170784140767,213,0 +170784140815,213,0 +170784140863,213,0 +170784140910,213,0 +170784140958,214,0 +170784141006,214,0 +170784141056,214,0 +170784141104,214,0 +170784141151,214,0 +170784141199,214,0 +170784141247,214,0 +170784141295,214,0 +170784141343,214,0 +170784141391,214,0 +170784141439,214,0 +170784141487,214,0 +170784141534,214,0 +170784141582,214,0 +170784141630,214,0 +170784141678,213,0 +170784141726,214,0 +170784141775,214,0 +170784141823,214,0 +170784141871,214,0 +170784141919,214,0 +170784141967,214,0 +170784142015,214,0 +170784142063,214,0 +170784142111,214,0 +170784142160,214,0 +170784142209,214,0 +170784142259,214,0 +170784142307,214,0 +170784142356,214,0 +170784142406,214,0 +170784142454,214,0 +170784142502,214,0 +170784142550,214,0 +170784142598,214,0 +170784142645,214,0 +170784142693,214,0 +170784142743,214,0 +170784142791,214,0 +170784142839,214,0 +170784142887,214,0 +170784142935,214,0 +170784142983,214,0 +170784143031,214,0 +170784143080,214,0 +170784143130,214,0 +170784143178,213,0 +170784143226,213,0 +170784143273,213,0 +170784143321,213,0 +170784143369,213,0 +170784143417,214,0 +170784143465,214,0 +170784143513,214,0 +170784143561,214,0 +170784143609,214,0 +170784143656,214,0 +170784143704,214,0 +170784143752,214,0 +170784143800,214,0 +170784143848,214,0 +170784143896,214,0 +170784143943,214,0 +170784143991,213,0 +170784144039,213,0 +170784144087,213,0 +170784144135,213,0 +170784144184,214,0 +170784144232,214,0 +170784144280,213,0 +170784144328,214,0 +170784144376,214,0 +170784144424,214,0 +170784144472,214,0 +170784144521,214,0 +170784144569,214,0 +170784144617,214,0 +170784144664,214,0 +170784144712,214,0 +170784144760,214,0 +170784144808,213,0 +170784144856,213,0 +170784144904,213,0 +170784144952,213,0 +170784145000,213,0 +170784145047,213,0 +170784145097,213,0 +170784145145,214,0 +170784145194,214,0 +170784145242,214,0 +170784145291,214,0 +170784145339,214,0 +170784145387,214,0 +170784145435,214,0 +170784145483,214,0 +170784145531,214,0 +170784145578,213,0 +170784145626,213,0 +170784145674,213,0 +170784145722,213,0 +170784145770,213,0 +170784145818,213,0 +170784145865,214,0 +170784145913,214,0 +170784145961,214,0 +170784146011,214,0 +170784146060,214,0 +170784146110,214,0 +170784146158,214,0 +170784146206,214,0 +170784146254,214,0 +170784146301,214,0 +170784146349,214,0 +170784146397,213,0 +170784146445,213,0 +170784146493,213,0 +170784146542,213,0 +170784146592,214,0 +170784146640,214,0 +170784146688,214,0 +170784146736,214,0 +170784146784,214,0 +170784146832,214,0 +170784146880,214,0 +170784146929,214,0 +170784146979,214,0 +170784147027,214,0 +170784147076,214,0 +170784147125,214,0 +170784147175,213,0 +170784147224,213,0 +170784147272,214,0 +170784147320,213,0 +170784147368,214,0 +170784147418,214,0 +170784147466,214,0 +170784147514,214,0 +170784147562,214,0 +170784147609,214,0 +170784147659,214,0 +170784147708,214,0 +170784147758,214,0 +170784147808,214,0 +170784147857,214,0 +170784147905,214,0 +170784147953,214,0 +170784148001,213,0 +170784148049,213,0 +170784148097,213,0 +170784148146,213,0 +170784148194,214,0 +170784148244,214,0 +170784148292,214,0 +170784148340,214,0 +170784148389,214,0 +170784148437,214,0 +170784148485,214,0 +170784148535,214,0 +170784148582,214,0 +170784148630,214,0 +170784148678,214,0 +170784148726,214,0 +170784148776,213,0 +170784148826,213,0 +170784148875,213,0 +170784148923,213,0 +170784148971,214,0 +170784149019,214,0 +170784149067,214,0 +170784149115,214,0 +170784149163,214,0 +170784149212,214,0 +170784149262,214,0 +170784149311,214,0 +170784149361,214,0 +170784149409,214,0 +170784149457,214,0 +170784149506,214,0 +170784149554,214,0 +170784149602,213,0 +170784149650,213,0 +170784149698,213,0 +170784149748,213,0 +170784149796,214,0 +170784149844,214,0 +170784149892,214,0 +170784149940,214,0 +170784149988,214,0 +170784150037,214,0 +170784150087,214,0 +170784150136,214,0 +170784150184,214,0 +170784150232,214,0 +170784150280,214,0 +170784150329,214,0 +170784150377,214,0 +170784150425,213,0 +170784150473,213,0 +170784150523,213,0 +170784150572,213,0 +170784150620,213,0 +170784150668,213,0 +170784150716,213,0 +170784150764,214,0 +170784150811,214,0 +170784150859,214,0 +170784150907,214,0 +170784150955,214,0 +170784151003,214,0 +170784151051,214,0 +170784151100,214,0 +170784151148,214,0 +170784151198,213,0 +170784151246,213,0 +170784151294,213,0 +170784151342,213,0 +170784151391,213,0 +170784151439,213,0 +170784151487,213,0 +170784151535,213,0 +170784151585,213,0 +170784151634,214,0 +170784151682,214,0 +170784151732,214,0 +170784151779,214,0 +170784151829,214,0 +170784151878,214,0 +170784151928,214,0 +170784151976,214,0 +170784152024,213,0 +170784152073,213,0 +170784152121,213,0 +170784152169,213,0 +170784152219,213,0 +170784152267,213,0 +170784152314,213,0 +170784152362,213,0 +170784152410,214,0 +170784152458,213,0 +170784152508,214,0 +170784152556,213,0 +170784152605,214,0 +170784152653,214,0 +170784152701,214,0 +170784152751,214,0 +170784152799,213,0 +170784152848,213,0 +170784152898,213,0 +170784152946,213,0 +170784152994,213,0 +170784153042,213,0 +170784153090,213,0 +170784153138,213,0 +170784153187,213,0 +170784153235,214,0 +170784153283,214,0 +170784153331,214,0 +170784153379,214,0 +170784153429,214,0 +170784153477,214,0 +170784153526,214,0 +170784153576,214,0 +170784153625,213,0 +170784153675,213,0 +170784153723,213,0 +170784153771,213,0 +170784153820,214,0 +170784153868,213,0 +170784153918,214,0 +170784153967,214,0 +170784154017,214,0 +170784154066,214,0 +170784154114,214,0 +170784154164,214,0 +170784154213,214,0 +170784154261,214,0 +170784154309,214,0 +170784154357,214,0 +170784154406,214,0 +170784154454,214,0 +170784154504,214,0 +170784154552,214,0 +170784154601,214,0 +170784154649,214,0 +170784154697,214,0 +170784154745,214,0 +170784154794,214,0 +170784154842,214,0 +170784154890,214,0 +170784154938,214,0 +170784154986,214,0 +170784155034,214,0 +170784155082,214,0 +170784155130,214,0 +170784155178,214,0 +170784155228,213,0 +170784155276,213,0 +170784155324,213,0 +170784155371,214,0 +170784155419,214,0 +170784155467,214,0 +170784155515,214,0 +170784155563,214,0 +170784155611,214,0 +170784155659,214,0 +170784155707,214,0 +170784155755,214,0 +170784155803,214,0 +170784155852,214,0 +170784155900,214,0 +170784155948,214,0 +170784155996,214,0 +170784156044,213,0 +170784156094,213,0 +170784156143,213,0 +170784156191,213,0 +170784156239,214,0 +170784156289,214,0 +170784156337,214,0 +170784156385,214,0 +170784156434,214,0 +170784156482,214,0 +170784156532,214,0 +170784156579,214,0 +170784156627,214,0 +170784156675,214,0 +170784156723,214,0 +170784156771,214,0 +170784156819,213,0 +170784156869,213,0 +170784156916,214,0 +170784156966,213,0 +170784157014,213,0 +170784157062,214,0 +170784157111,214,0 +170784157161,214,0 +170784157209,214,0 +170784157257,214,0 +170784157306,214,0 +170784157354,214,0 +170784157402,214,0 +170784157450,214,0 +170784157499,214,0 +170784157549,214,0 +170784157597,214,0 +170784157645,213,0 +170784157694,213,0 +170784157742,213,0 +170784157790,213,0 +170784157838,214,0 +170784157886,214,0 +170784157934,214,0 +170784157982,214,0 +170784158030,214,0 +170784158078,214,0 +170784158127,214,0 +170784158175,214,0 +170784158223,214,0 +170784158271,214,0 +170784158319,214,0 +170784158368,214,0 +170784158416,213,0 +170784158464,213,0 +170784158512,213,0 +170784158560,213,0 +170784158608,214,0 +170784158657,214,0 +170784158705,214,0 +170784158753,213,0 +170784158801,214,0 +170784158851,214,0 +170784158899,214,0 +170784158948,214,0 +170784158996,214,0 +170784159044,214,0 +170784159092,214,0 +170784159140,214,0 +170784159188,214,0 +170784159235,213,0 +170784159283,213,0 +170784159331,213,0 +170784159379,213,0 +170784159427,213,0 +170784159476,213,0 +170784159526,214,0 +170784159574,214,0 +170784159622,214,0 +170784159671,214,0 +170784159719,214,0 +170784159769,214,0 +170784159818,214,0 +170784159868,214,0 +170784159917,214,0 +170784159965,214,0 +170784160014,213,0 +170784160062,213,0 +170784160112,213,0 +170784160160,213,0 +170784160208,213,0 +170784160256,213,0 +170784160305,214,0 +170784160353,214,0 +170784160401,214,0 +170784160449,214,0 +170784160497,214,0 +170784160545,214,0 +170784160593,214,0 +170784160641,214,0 +170784160689,214,0 +170784160736,214,0 +170784160784,214,0 +170784160832,213,0 +170784160880,213,0 +170784160928,213,0 +170784160976,213,0 +170784161024,213,0 +170784161072,214,0 +170784161120,214,0 +170784161168,214,0 +170784161216,214,0 +170784161264,214,0 +170784161313,214,0 +170784161363,214,0 +170784161412,214,0 +170784161460,214,0 +170784161510,214,0 +170784161557,214,0 +170784161607,214,0 +170784161655,213,0 +170784161703,213,0 +170784161751,214,0 +170784161800,213,0 +170784161848,214,0 +170784161898,214,0 +170784161946,214,0 +170784161993,214,0 +170784162041,214,0 +170784162089,214,0 +170784162138,214,0 +170784162186,214,0 +170784162234,214,0 +170784162282,214,0 +170784162330,214,0 +170784162378,214,0 +170784162426,213,0 +170784162473,213,0 +170784162521,213,0 +170784162569,214,0 +170784162617,214,0 +170784162665,214,0 +170784162713,214,0 +170784162762,214,0 +170784162810,214,0 +170784162858,214,0 +170784162906,214,0 +170784162955,214,0 +170784163003,214,0 +170784163051,214,0 +170784163099,214,0 +170784163146,214,0 +170784163194,214,0 +170784163242,213,0 +170784163290,213,0 +170784163339,213,0 +170784163387,213,0 +170784163435,213,0 +170784163485,214,0 +170784163532,214,0 +170784163580,214,0 +170784163630,214,0 +170784163677,214,0 +170784163725,214,0 +170784163773,214,0 +170784163821,214,0 +170784163869,214,0 +170784163917,214,0 +170784163966,214,0 +170784164014,213,0 +170784164062,213,0 +170784164110,213,0 +170784164157,213,0 +170784164205,213,0 +170784164255,213,0 +170784164303,213,0 +170784164350,213,0 +170784164400,214,0 +170784164448,214,0 +170784164496,214,0 +170784164543,214,0 +170784164591,214,0 +170784164639,214,0 +170784164687,214,0 +170784164735,214,0 +170784164783,214,0 +170784164831,213,0 +170784164878,213,0 +170784164926,213,0 +170784164974,213,0 +170784165022,214,0 +170784165070,213,0 +170784165119,213,0 +170784165167,214,0 +170784165215,214,0 +170784165263,214,0 +170784165311,214,0 +170784165359,214,0 +170784165406,214,0 +170784165454,214,0 +170784165502,214,0 +170784165550,214,0 +170784165598,214,0 +170784165647,213,0 +170784165695,213,0 +170784165745,213,0 +170784165792,213,0 +170784165842,213,0 +170784165890,214,0 +170784165938,214,0 +170784165986,214,0 +170784166034,214,0 +170784166081,214,0 +170784166129,214,0 +170784166177,214,0 +170784166225,214,0 +170784166273,214,0 +170784166322,214,0 +170784166370,214,0 +170784166418,214,0 +170784166466,213,0 +170784166514,214,0 +170784166562,214,0 +170784166609,214,0 +170784166657,214,0 +170784166705,214,0 +170784166753,214,0 +170784166801,214,0 +170784166849,214,0 +170784166896,214,0 +170784166944,214,0 +170784166992,214,0 +170784167042,214,0 +170784167089,214,0 +170784167137,214,0 +170784167185,214,0 +170784167233,214,0 +170784167281,213,0 +170784167329,214,0 +170784167377,214,0 +170784167425,214,0 +170784167472,214,0 +170784167520,214,0 +170784167568,214,0 +170784167618,214,0 +170784167665,214,0 +170784167713,214,0 +170784167761,214,0 +170784167809,214,0 +170784167858,214,0 +170784167906,214,0 +170784167954,214,0 +170784168002,214,0 +170784168050,214,0 +170784168098,214,0 +170784168145,214,0 +170784168193,214,0 +170784168241,214,0 +170784168289,214,0 +170784168337,214,0 +170784168384,214,0 +170784168432,214,0 +170784168480,214,0 +170784168528,214,0 +170784168576,214,0 +170784168623,214,0 +170784168671,214,0 +170784168719,214,0 +170784168767,214,0 +170784168815,214,0 +170784168862,214,0 +170784168910,214,0 +170784168960,214,0 +170784169007,214,0 +170784169055,214,0 +170784169103,214,0 +170784169151,214,0 +170784169198,214,0 +170784169246,214,0 +170784169294,214,0 +170784169342,214,0 +170784169390,214,0 +170784169438,214,0 +170784169487,214,0 +170784169535,214,0 +170784169585,214,0 +170784169633,213,0 +170784169681,213,0 +170784169730,214,0 +170784169778,213,0 +170784169826,214,0 +170784169874,214,0 +170784169921,214,0 +170784169971,214,0 +170784170019,214,0 +170784170067,214,0 +170784170114,214,0 +170784170162,214,0 +170784170210,214,0 +170784170258,214,0 +170784170306,214,0 +170784170354,214,0 +170784170402,214,0 +170784170450,213,0 +170784170499,213,0 +170784170547,213,0 +170784170597,213,0 +170784170645,213,0 +170784170694,213,0 +170784170742,213,0 +170784170792,214,0 +170784170840,214,0 +170784170888,214,0 +170784170937,214,0 +170784170985,214,0 +170784171033,214,0 +170784171081,214,0 +170784171129,214,0 +170784171177,214,0 +170784171226,214,0 +170784171276,213,0 +170784171324,213,0 +170784171372,213,0 +170784171420,213,0 +170784171468,213,0 +170784171516,213,0 +170784171565,213,0 +170784171615,214,0 +170784171662,213,0 +170784171712,214,0 +170784171760,214,0 +170784171808,214,0 +170784171856,214,0 +170784171904,214,0 +170784171952,214,0 +170784172001,214,0 +170784172051,213,0 +170784172099,213,0 +170784172147,213,0 +170784172196,213,0 +170784172244,213,0 +170784172294,213,0 +170784172343,213,0 +170784172393,213,0 +170784172441,214,0 +170784172489,214,0 +170784172538,214,0 +170784172586,214,0 +170784172636,214,0 +170784172684,214,0 +170784172732,214,0 +170784172781,214,0 +170784172829,214,0 +170784172879,213,0 +170784172928,213,0 +170784172976,213,0 +170784173024,213,0 +170784173072,213,0 +170784173120,213,0 +170784173168,214,0 +170784173216,214,0 +170784173265,214,0 +170784173315,214,0 +170784173363,214,0 +170784173411,214,0 +170784173459,214,0 +170784173508,214,0 +170784173558,214,0 +170784173605,214,0 +170784173655,213,0 +170784173703,213,0 +170784173751,213,0 +170784173799,213,0 +170784173847,213,0 +170784173896,213,0 +170784173944,214,0 +170784173994,213,0 +170784174043,214,0 +170784174093,214,0 +170784174142,214,0 +170784174190,214,0 +170784174238,214,0 +170784174288,214,0 +170784174337,214,0 +170784174385,214,0 +170784174433,214,0 +170784174481,213,0 +170784174531,213,0 +170784174578,213,0 +170784174628,213,0 +170784174676,213,0 +170784174725,213,0 +170784174773,213,0 +170784174821,213,0 +170784174869,214,0 +170784174917,214,0 +170784174965,213,0 +170784175013,214,0 +170784175063,214,0 +170784175112,214,0 +170784175162,214,0 +170784175210,214,0 +170784175258,213,0 +170784175307,213,0 +170784175357,213,0 +170784175405,213,0 +170784175453,213,0 +170784175501,213,0 +170784175550,213,0 +170784175600,213,0 +170784175648,213,0 +170784175697,214,0 +170784175745,214,0 +170784175793,213,0 +170784175841,214,0 +170784175890,214,0 +170784175938,214,0 +170784175988,214,0 +170784176036,214,0 +170784176084,213,0 +170784176133,213,0 +170784176183,213,0 +170784176232,213,0 +170784176280,213,0 +170784176328,213,0 +170784176376,213,0 +170784176426,213,0 +170784176475,214,0 +170784176525,214,0 +170784176573,214,0 +170784176621,214,0 +170784176670,214,0 +170784176718,214,0 +170784176768,214,0 +170784176816,214,0 +170784176865,213,0 +170784176914,213,0 +170784176962,213,0 +170784177012,213,0 +170784177060,213,0 +170784177109,213,0 +170784177159,213,0 +170784177207,214,0 +170784177255,214,0 +170784177302,214,0 +170784177352,214,0 +170784177400,214,0 +170784177448,214,0 +170784177496,214,0 +170784177544,214,0 +170784177592,214,0 +170784177640,214,0 +170784177687,213,0 +170784177735,213,0 +170784177785,213,0 +170784177833,213,0 +170784177882,214,0 +170784177930,214,0 +170784177978,214,0 +170784178028,214,0 +170784178077,214,0 +170784178125,214,0 +170784178173,214,0 +170784178223,214,0 +170784178271,214,0 +170784178318,214,0 +170784178366,214,0 +170784178414,214,0 +170784178462,214,0 +170784178510,214,0 +170784178558,214,0 +170784178608,214,0 +170784178656,214,0 +170784178704,214,0 +170784178751,214,0 +170784178799,214,0 +170784178847,214,0 +170784178895,214,0 +170784178943,214,0 +170784178993,214,0 +170784179042,214,0 +170784179092,214,0 +170784179141,214,0 +170784179191,214,0 +170784179239,214,0 +170784179289,214,0 +170784179338,214,0 +170784179386,214,0 +170784179434,214,0 +170784179482,214,0 +170784179532,214,0 +170784179579,214,0 +170784179627,214,0 +170784179675,214,0 +170784179723,214,0 +170784179773,214,0 +170784179822,214,0 +170784179872,214,0 +170784179921,214,0 +170784179971,214,0 +170784180019,214,0 +170784180067,214,0 +170784180115,214,0 +170784180163,214,0 +170784180212,214,0 +170784180260,214,0 +170784180308,214,0 +170784180358,214,0 +170784180407,214,0 +170784180455,214,0 +170784180505,214,0 +170784180553,214,0 +170784180602,214,0 +170784180652,214,0 +170784180701,214,0 +170784180749,214,0 +170784180797,214,0 +170784180845,214,0 +170784180893,214,0 +170784180941,213,0 +170784180989,213,0 +170784181037,214,0 +170784181085,214,0 +170784181134,214,0 +170784181182,214,0 +170784181230,214,0 +170784181278,214,0 +170784181326,214,0 +170784181374,214,0 +170784181421,214,0 +170784181469,214,0 +170784181517,214,0 +170784181565,214,0 +170784181613,214,0 +170784181661,214,0 +170784181710,213,0 +170784181760,213,0 +170784181808,213,0 +170784181855,213,0 +170784181903,213,0 +170784181951,214,0 +170784182001,214,0 +170784182049,214,0 +170784182097,214,0 +170784182145,214,0 +170784182193,214,0 +170784182241,214,0 +170784182289,214,0 +170784182338,214,0 +170784182388,214,0 +170784182437,214,0 +170784182485,213,0 +170784182533,213,0 +170784182582,213,0 +170784182630,213,0 +170784182678,213,0 +170784182726,213,0 +170784182774,213,0 +170784182822,213,0 +170784182870,214,0 +170784182918,213,0 +170784182966,214,0 +170784183015,214,0 +170784183063,214,0 +170784183111,214,0 +170784183161,214,0 +170784183209,214,0 +170784183257,214,0 +170784183305,213,0 +170784183353,213,0 +170784183402,213,0 +170784183450,213,0 +170784183498,213,0 +170784183546,213,0 +170784183594,213,0 +170784183641,213,0 +170784183689,214,0 +170784183737,214,0 +170784183785,214,0 +170784183833,214,0 +170784183881,214,0 +170784183930,214,0 +170784183978,214,0 +170784184026,214,0 +170784184073,213,0 +170784184121,213,0 +170784184169,213,0 +170784184217,213,0 +170784184265,213,0 +170784184313,213,0 +170784184361,214,0 +170784184408,213,0 +170784184456,213,0 +170784184504,214,0 +170784184552,214,0 +170784184600,214,0 +170784184648,214,0 +170784184697,214,0 +170784184745,214,0 +170784184793,214,0 +170784184841,214,0 +170784184889,213,0 +170784184936,213,0 +170784184984,213,0 +170784185034,213,0 +170784185083,213,0 +170784185131,213,0 +170784185179,214,0 +170784185227,214,0 +170784185276,214,0 +170784185324,214,0 +170784185372,214,0 +170784185420,214,0 +170784185468,214,0 +170784185516,214,0 +170784185564,214,0 +170784185611,214,0 +170784185659,214,0 +170784185707,213,0 +170784185757,213,0 +170784185805,213,0 +170784185854,213,0 +170784185902,213,0 +170784185950,213,0 +170784185998,213,0 +170784186046,213,0 +170784186094,214,0 +170784186142,214,0 +170784186190,214,0 +170784186238,214,0 +170784186288,214,0 +170784186335,214,0 +170784186383,214,0 +170784186431,214,0 +170784186479,213,0 +170784186527,213,0 +170784186576,213,0 +170784186624,213,0 +170784186672,213,0 +170784186722,213,0 +170784186769,213,0 +170784186819,214,0 +170784186867,213,0 +170784186914,214,0 +170784186962,214,0 +170784187010,214,0 +170784187058,214,0 +170784187106,214,0 +170784187154,214,0 +170784187201,214,0 +170784187249,214,0 +170784187297,213,0 +170784187347,213,0 +170784187395,213,0 +170784187442,213,0 +170784187490,213,0 +170784187540,213,0 +170784187588,213,0 +170784187636,214,0 +170784187684,214,0 +170784187732,214,0 +170784187780,214,0 +170784187828,214,0 +170784187876,214,0 +170784187923,214,0 +170784187971,214,0 +170784188019,214,0 +170784188067,214,0 +170784188115,213,0 +170784188164,213,0 +170784188214,213,0 +170784188262,213,0 +170784188310,213,0 +170784188358,213,0 +170784188406,213,0 +170784188455,213,0 +170784188503,214,0 +170784188551,214,0 +170784188599,214,0 +170784188647,214,0 +170784188696,214,0 +170784188744,214,0 +170784188792,214,0 +170784188842,214,0 +170784188891,213,0 +170784188939,213,0 +170784188987,213,0 +170784189037,213,0 +170784189086,213,0 +170784189134,213,0 +170784189182,213,0 +170784189232,213,0 +170784189281,213,0 +170784189329,213,0 +170784189378,213,0 +170784189427,213,0 +170784189477,214,0 +170784189526,214,0 +170784189574,214,0 +170784189622,214,0 +170784189670,214,0 +170784189720,213,0 +170784189769,213,0 +170784189817,213,0 +170784189865,213,0 +170784189913,213,0 +170784189961,213,0 +170784190009,213,0 +170784190059,213,0 +170784190108,213,0 +170784190156,214,0 +170784190204,214,0 +170784190252,214,0 +170784190302,214,0 +170784190350,214,0 +170784190399,214,0 +170784190447,214,0 +170784190497,213,0 +170784190545,213,0 +170784190592,213,0 +170784190640,213,0 +170784190690,213,0 +170784190738,213,0 +170784190786,214,0 +170784190833,214,0 +170784190881,214,0 +170784190931,214,0 +170784190979,214,0 +170784191027,214,0 +170784191074,214,0 +170784191122,214,0 +170784191170,214,0 +170784191218,214,0 +170784191266,214,0 +170784191314,213,0 +170784191363,214,0 +170784191411,214,0 +170784191459,214,0 +170784191509,214,0 +170784191557,214,0 +170784191605,214,0 +170784191653,214,0 +170784191702,214,0 +170784191752,214,0 +170784191800,214,0 +170784191848,214,0 +170784191897,214,0 +170784191945,214,0 +170784191993,214,0 +170784192042,214,0 +170784192090,214,0 +170784192140,213,0 +170784192188,214,0 +170784192237,214,0 +170784192287,214,0 +170784192335,214,0 +170784192383,214,0 +170784192431,214,0 +170784192479,214,0 +170784192528,214,0 +170784192578,214,0 +170784192627,214,0 +170784192677,214,0 +170784192725,214,0 +170784192773,214,0 +170784192822,214,0 +170784192870,214,0 +170784192918,213,0 +170784192966,214,0 +170784193014,214,0 +170784193061,214,0 +170784193109,214,0 +170784193157,214,0 +170784193207,214,0 +170784193255,214,0 +170784193303,214,0 +170784193351,214,0 +170784193399,214,0 +170784193447,214,0 +170784193495,214,0 +170784193544,214,0 +170784193592,214,0 +170784193640,214,0 +170784193688,214,0 +170784193736,213,0 +170784193784,213,0 +170784193832,213,0 +170784193880,213,0 +170784193928,213,0 +170784193975,213,0 +170784194023,214,0 +170784194073,214,0 +170784194122,214,0 +170784194170,214,0 +170784194220,214,0 +170784194268,214,0 +170784194316,214,0 +170784194365,214,0 +170784194413,214,0 +170784194461,214,0 +170784194509,213,0 +170784194557,213,0 +170784194607,213,0 +170784194656,213,0 +170784194706,213,0 +170784194754,213,0 +170784194802,213,0 +170784194850,214,0 +170784194898,214,0 +170784194947,214,0 +170784194997,214,0 +170784195046,214,0 +170784195094,214,0 +170784195142,214,0 +170784195190,214,0 +170784195239,214,0 +170784195287,214,0 +170784195335,213,0 +170784195383,213,0 +170784195431,213,0 +170784195479,213,0 +170784195527,213,0 +170784195576,213,0 +170784195624,214,0 +170784195672,214,0 +170784195720,214,0 +170784195768,214,0 +170784195816,214,0 +170784195864,214,0 +170784195912,214,0 +170784195960,214,0 +170784196008,214,0 +170784196057,214,0 +170784196107,214,0 +170784196156,214,0 +170784196204,214,0 +170784196254,214,0 +170784196302,214,0 +170784196351,214,0 +170784196401,214,0 +170784196449,214,0 +170784196497,214,0 +170784196545,214,0 +170784196594,214,0 +170784196642,214,0 +170784196690,214,0 +170784196738,214,0 +170784196786,214,0 +170784196834,214,0 +170784196882,214,0 +170784196931,213,0 +170784196979,213,0 +170784197027,214,0 +170784197075,214,0 +170784197123,214,0 +170784197171,214,0 +170784197219,214,0 +170784197268,214,0 +170784197316,214,0 +170784197366,214,0 +170784197414,214,0 +170784197462,214,0 +170784197510,214,0 +170784197560,214,0 +170784197609,214,0 +170784197659,214,0 +170784197706,214,0 +170784197754,213,0 +170784197802,213,0 +170784197852,213,0 +170784197901,213,0 +170784197949,214,0 +170784197999,214,0 +170784198047,214,0 +170784198095,214,0 +170784198143,214,0 +170784198192,214,0 +170784198242,214,0 +170784198290,214,0 +170784198338,214,0 +170784198386,214,0 +170784198435,214,0 +170784198483,214,0 +170784198531,213,0 +170784198581,213,0 +170784198630,213,0 +170784198680,213,0 +170784198727,214,0 +170784198776,214,0 +170784198825,214,0 +170784198873,214,0 +170784198921,214,0 +170784198971,214,0 +170784199020,214,0 +170784199068,214,0 +170784199116,214,0 +170784199164,214,0 +170784199212,214,0 +170784199260,214,0 +170784199308,213,0 +170784199356,213,0 +170784199404,213,0 +170784199452,213,0 +170784199500,213,0 +170784199548,213,0 +170784199596,213,0 +170784199645,213,0 +170784199695,214,0 +170784199743,213,0 +170784199792,214,0 +170784199842,214,0 +170784199889,214,0 +170784199937,214,0 +170784199985,214,0 +170784200033,214,0 +170784200081,214,0 +170784200129,213,0 +170784200177,213,0 +170784200227,213,0 +170784200276,213,0 +170784200324,213,0 +170784200372,213,0 +170784200420,213,0 +170784200469,213,0 +170784200517,214,0 +170784200565,214,0 +170784200615,214,0 +170784200663,214,0 +170784200711,214,0 +170784200759,214,0 +170784200807,214,0 +170784200856,214,0 +170784200904,214,0 +170784200952,213,0 +170784201002,213,0 +170784201049,213,0 +170784201097,213,0 +170784201147,213,0 +170784201195,214,0 +170784201243,213,0 +170784201292,213,0 +170784201340,214,0 +170784201390,214,0 +170784201438,214,0 +170784201487,214,0 +170784201535,214,0 +170784201585,214,0 +170784201634,214,0 +170784201682,214,0 +170784201730,213,0 +170784201778,213,0 +170784201826,213,0 +170784201874,213,0 +170784201923,213,0 +170784201971,213,0 +170784202021,213,0 +170784202069,214,0 +170784202118,214,0 +170784202166,214,0 +170784202214,214,0 +170784202262,214,0 +170784202310,214,0 +170784202358,214,0 +170784202406,214,0 +170784202454,214,0 +170784202502,214,0 +170784202550,213,0 +170784202598,213,0 +170784202646,213,0 +170784202695,213,0 +170784202743,214,0 +170784202791,214,0 +170784202839,214,0 +170784202887,214,0 +170784202936,214,0 +170784202984,214,0 +170784203034,214,0 +170784203083,214,0 +170784203131,214,0 +170784203179,214,0 +170784203229,214,0 +170784203278,214,0 +170784203326,214,0 +170784203374,213,0 +170784203424,213,0 +170784203472,213,0 +170784203520,213,0 +170784203567,213,0 +170784203615,214,0 +170784203663,213,0 +170784203711,214,0 +170784203759,214,0 +170784203807,214,0 +170784203855,214,0 +170784203903,214,0 +170784203951,214,0 +170784203999,214,0 +170784204047,214,0 +170784204095,214,0 +170784204144,213,0 +170784204192,213,0 +170784204240,213,0 +170784204288,213,0 +170784204336,214,0 +170784204384,213,0 +170784204432,214,0 +170784204480,213,0 +170784204528,214,0 +170784204575,214,0 +170784204623,215,0 +170784204673,214,0 +170784204721,214,0 +170784204771,214,0 +170784204819,214,0 +170784204866,214,0 +170784204916,214,0 +170784204964,213,0 +170784205012,213,0 +170784205061,213,0 +170784205111,213,0 +170784205161,213,0 +170784205208,214,0 +170784205258,214,0 +170784205306,214,0 +170784205354,214,0 +170784205403,214,0 +170784205451,214,0 +170784205499,214,0 +170784205547,214,0 +170784205595,214,0 +170784205645,214,0 +170784205693,214,0 +170784205741,213,0 +170784205789,213,0 +170784205837,213,0 +170784205886,213,0 +170784205934,214,0 +170784205984,213,0 +170784206031,214,0 +170784206079,214,0 +170784206129,214,0 +170784206178,214,0 +170784206228,214,0 +170784206276,214,0 +170784206325,214,0 +170784206375,214,0 +170784206424,214,0 +170784206474,214,0 +170784206521,214,0 +170784206569,213,0 +170784206619,213,0 +170784206667,213,0 +170784206715,213,0 +170784206763,213,0 +170784206812,213,0 +170784206860,213,0 +170784206908,214,0 +170784206956,214,0 +170784207004,214,0 +170784207052,214,0 +170784207100,214,0 +170784207148,214,0 +170784207196,214,0 +170784207246,214,0 +170784207294,214,0 +170784207343,214,0 +170784207391,213,0 +170784207439,213,0 +170784207487,213,0 +170784207535,213,0 +170784207583,213,0 +170784207632,213,0 +170784207682,214,0 +170784207730,214,0 +170784207779,214,0 +170784207827,214,0 +170784207875,214,0 +170784207923,214,0 +170784207971,214,0 +170784208021,214,0 +170784208070,214,0 +170784208118,214,0 +170784208166,213,0 +170784208214,213,0 +170784208264,213,0 +170784208312,213,0 +170784208360,213,0 +170784208408,213,0 +170784208455,213,0 +170784208505,213,0 +170784208553,213,0 +170784208601,214,0 +170784208650,214,0 +170784208698,214,0 +170784208748,214,0 +170784208797,214,0 +170784208845,214,0 +170784208893,214,0 +170784208941,214,0 +170784208989,213,0 +170784209037,213,0 +170784209087,213,0 +170784209135,213,0 +170784209183,213,0 +170784209232,213,0 +170784209282,213,0 +170784209331,213,0 +170784209381,214,0 +170784209429,214,0 +170784209476,214,0 +170784209526,214,0 +170784209575,214,0 +170784209623,214,0 +170784209673,214,0 +170784209721,214,0 +170784209770,213,0 +170784209818,213,0 +170784209868,213,0 +170784209916,213,0 +170784209964,213,0 +170784210012,213,0 +170784210060,213,0 +170784210107,213,0 +170784210155,214,0 +170784210203,214,0 +170784210251,214,0 +170784210299,214,0 +170784210347,214,0 +170784210395,214,0 +170784210443,214,0 +170784210492,214,0 +170784210540,214,0 +170784210588,213,0 +170784210638,213,0 +170784210687,213,0 +170784210735,213,0 +170784210785,213,0 +170784210834,213,0 +170784210882,214,0 +170784210930,213,0 +170784210978,214,0 +170784211026,214,0 +170784211074,214,0 +170784211122,214,0 +170784211170,214,0 +170784211218,214,0 +170784211266,214,0 +170784211314,214,0 +170784211362,213,0 +170784211410,213,0 +170784211458,213,0 +170784211505,214,0 +170784211555,213,0 +170784211603,214,0 +170784211651,214,0 +170784211699,214,0 +170784211747,214,0 +170784211796,214,0 +170784211846,214,0 +170784211894,214,0 +170784211941,214,0 +170784211989,214,0 +170784212037,214,0 +170784212085,214,0 +170784212133,214,0 +170784212183,214,0 +170784212231,214,0 +170784212280,214,0 +170784212328,214,0 +170784212378,214,0 +170784212427,214,0 +170784212475,214,0 +170784212523,214,0 +170784212571,214,0 +170784212619,214,0 +170784212668,214,0 +170784212716,214,0 +170784212766,214,0 +170784212814,214,0 +170784212863,214,0 +170784212913,214,0 +170784212961,213,0 +170784213009,213,0 +170784213058,213,0 +170784213106,213,0 +170784213154,213,0 +170784213202,213,0 +170784213250,213,0 +170784213299,213,0 +170784213349,214,0 +170784213397,214,0 +170784213445,214,0 +170784213494,214,0 +170784213544,214,0 +170784213593,214,0 +170784213641,214,0 +170784213691,214,0 +170784213739,214,0 +170784213787,213,0 +170784213836,213,0 +170784213884,213,0 +170784213934,213,0 +170784213983,213,0 +170784214031,213,0 +170784214079,213,0 +170784214127,213,0 +170784214175,213,0 +170784214223,213,0 +170784214273,213,0 +170784214320,214,0 +170784214370,214,0 +170784214418,214,0 +170784214466,214,0 +170784214514,214,0 +170784214563,213,0 +170784214611,213,0 +170784214659,213,0 +170784214707,213,0 +170784214755,213,0 +170784214803,213,0 +170784214851,213,0 +170784214899,213,0 +170784214947,213,0 +170784214995,213,0 +170784215043,214,0 +170784215091,214,0 +170784215140,214,0 +170784215190,214,0 +170784215239,214,0 +170784215287,214,0 +170784215335,214,0 +170784215383,213,0 +170784215431,213,0 +170784215481,213,0 +170784215529,214,0 +170784215577,214,0 +170784215625,214,0 +170784215672,214,0 +170784215720,214,0 +170784215768,214,0 +170784215816,214,0 +170784215866,214,0 +170784215914,214,0 +170784215962,214,0 +170784216011,214,0 +170784216059,214,0 +170784216107,214,0 +170784216155,214,0 +170784216203,213,0 +170784216252,214,0 +170784216300,214,0 +170784216348,214,0 +170784216398,214,0 +170784216446,214,0 +170784216495,214,0 +170784216543,214,0 +170784216593,214,0 +170784216641,214,0 +170784216688,214,0 +170784216736,214,0 +170784216784,214,0 +170784216832,214,0 +170784216880,214,0 +170784216928,214,0 +170784216978,214,0 +170784217025,213,0 +170784217075,214,0 +170784217123,214,0 +170784217171,214,0 +170784217220,214,0 +170784217268,214,0 +170784217318,214,0 +170784217366,214,0 +170784217415,214,0 +170784217465,214,0 +170784217512,214,0 +170784217560,214,0 +170784217610,214,0 +170784217658,214,0 +170784217708,214,0 +170784217756,214,0 +170784217805,214,0 +170784217853,214,0 +170784217903,214,0 +170784217952,214,0 +170784218000,214,0 +170784218049,214,0 +170784218097,214,0 +170784218145,214,0 +170784218193,214,0 +170784218243,214,0 +170784218292,214,0 +170784218340,214,0 +170784218388,214,0 +170784218436,214,0 +170784218484,214,0 +170784218534,214,0 +170784218583,213,0 +170784218631,213,0 +170784218679,213,0 +170784218729,213,0 +170784218778,213,0 +170784218828,214,0 +170784218876,214,0 +170784218924,214,0 +170784218972,214,0 +170784219021,214,0 +170784219069,214,0 +170784219118,214,0 +170784219166,214,0 +170784219214,214,0 +170784219262,214,0 +170784219310,214,0 +170784219358,214,0 +170784219406,213,0 +170784219453,213,0 +170784219501,213,0 +170784219549,213,0 +170784219597,213,0 +170784219645,213,0 +170784219693,213,0 +170784219740,214,0 +170784219788,214,0 +170784219836,214,0 +170784219884,214,0 +170784219932,214,0 +170784219980,214,0 +170784220027,214,0 +170784220075,214,0 +170784220123,214,0 +170784220171,214,0 +170784220219,213,0 +170784220267,213,0 +170784220316,213,0 +170784220364,213,0 +170784220412,213,0 +170784220460,213,0 +170784220508,213,0 +170784220556,213,0 +170784220604,214,0 +170784220653,214,0 +170784220702,214,0 +170784220752,214,0 +170784220800,214,0 +170784220848,214,0 +170784220896,214,0 +170784220944,214,0 +170784220992,213,0 +170784221040,213,0 +170784221089,213,0 +170784221137,213,0 +170784221185,213,0 +170784221233,213,0 +170784221282,214,0 +170784221332,213,0 +170784221381,214,0 +170784221431,214,0 +170784221479,214,0 +170784221527,214,0 +170784221575,214,0 +170784221624,214,0 +170784221672,214,0 +170784221720,214,0 +170784221770,214,0 +170784221819,213,0 +170784221867,213,0 +170784221915,213,0 +170784221965,213,0 +170784222014,213,0 +170784222062,214,0 +170784222110,214,0 +170784222160,213,0 +170784222208,213,0 +170784222256,214,0 +170784222305,214,0 +170784222353,214,0 +170784222401,214,0 +170784222449,214,0 +170784222497,214,0 +170784222545,214,0 +170784222593,213,0 +170784222641,213,0 +170784222690,213,0 +170784222738,213,0 +170784222786,213,0 +170784222834,213,0 +170784222882,213,0 +170784222930,213,0 +170784222980,213,0 +170784223029,213,0 +170784223077,213,0 +170784223125,214,0 +170784223173,214,0 +170784223221,213,0 +170784223269,214,0 +170784223316,214,0 +170784223364,214,0 +170784223412,213,0 +170784223460,213,0 +170784223508,213,0 +170784223555,213,0 +170784223603,213,0 +170784223651,213,0 +170784223700,213,0 +170784223750,213,0 +170784223798,213,0 +170784223846,214,0 +170784223893,213,0 +170784223943,214,0 +170784223991,214,0 +170784224039,214,0 +170784224088,214,0 +170784224136,214,0 +170784224184,214,0 +170784224232,213,0 +170784224280,213,0 +170784224330,213,0 +170784224377,213,0 +170784224425,213,0 +170784224473,213,0 +170784224523,213,0 +170784224570,214,0 +170784224618,214,0 +170784224666,214,0 +170784224716,214,0 +170784224763,214,0 +170784224811,214,0 +170784224859,214,0 +170784224907,214,0 +170784224955,214,0 +170784225003,213,0 +170784225051,213,0 +170784225098,213,0 +170784225146,213,0 +170784225194,213,0 +170784225242,213,0 +170784225290,213,0 +170784225338,213,0 +170784225387,214,0 +170784225435,214,0 +170784225485,213,0 +170784225532,214,0 +170784225580,214,0 +170784225628,214,0 +170784225676,214,0 +170784225724,214,0 +170784225772,214,0 +170784225820,213,0 +170784225868,213,0 +170784225917,213,0 +170784225965,213,0 +170784226013,213,0 +170784226061,213,0 +170784226110,213,0 +170784226158,214,0 +170784226206,214,0 +170784226254,214,0 +170784226304,214,0 +170784226351,214,0 +170784226399,214,0 +170784226447,214,0 +170784226497,214,0 +170784226545,214,0 +170784226593,214,0 +170784226641,213,0 +170784226689,213,0 +170784226738,213,0 +170784226786,213,0 +170784226834,213,0 +170784226882,213,0 +170784226929,213,0 +170784226977,214,0 +170784227025,214,0 +170784227073,214,0 +170784227121,214,0 +170784227169,214,0 +170784227217,214,0 +170784227264,214,0 +170784227312,214,0 +170784227360,214,0 +170784227408,214,0 +170784227456,214,0 +170784227504,214,0 +170784227552,214,0 +170784227599,214,0 +170784227649,214,0 +170784227697,214,0 +170784227744,214,0 +170784227792,214,0 +170784227840,214,0 +170784227888,214,0 +170784227936,214,0 +170784227984,214,0 +170784228032,214,0 +170784228080,214,0 +170784228128,214,0 +170784228176,214,0 +170784228225,214,0 +170784228273,214,0 +170784228321,214,0 +170784228371,214,0 +170784228418,214,0 +170784228468,214,0 +170784228516,214,0 +170784228564,214,0 +170784228612,214,0 +170784228660,214,0 +170784228708,214,0 +170784228756,214,0 +170784228804,214,0 +170784228851,214,0 +170784228899,214,0 +170784228947,214,0 +170784228995,214,0 +170784229045,214,0 +170784229093,214,0 +170784229141,214,0 +170784229189,214,0 +170784229237,214,0 +170784229284,214,0 +170784229332,214,0 +170784229380,214,0 +170784229428,214,0 +170784229476,214,0 +170784229524,214,0 +170784229572,214,0 +170784229620,214,0 +170784229668,214,0 +170784229716,214,0 +170784229764,214,0 +170784229813,213,0 +170784229861,213,0 +170784229909,213,0 +170784229957,213,0 +170784230005,213,0 +170784230054,214,0 +170784230102,213,0 +170784230150,214,0 +170784230198,214,0 +170784230246,214,0 +170784230295,214,0 +170784230343,214,0 +170784230391,214,0 +170784230438,214,0 +170784230488,214,0 +170784230536,214,0 +170784230584,214,0 +170784230631,213,0 +170784230679,213,0 +170784230727,213,0 +170784230775,213,0 +170784230823,213,0 +170784230872,213,0 +170784230922,214,0 +170784230970,214,0 +170784231019,214,0 +170784231067,214,0 +170784231115,214,0 +170784231163,214,0 +170784231211,214,0 +170784231259,214,0 +170784231306,214,0 +170784231356,214,0 +170784231404,214,0 +170784231451,213,0 +170784231499,213,0 +170784231547,213,0 +170784231595,213,0 +170784231643,213,0 +170784231691,213,0 +170784231739,214,0 +170784231788,214,0 +170784231836,214,0 +170784231884,214,0 +170784231932,214,0 +170784231979,214,0 +170784232029,214,0 +170784232078,214,0 +170784232126,214,0 +170784232174,214,0 +170784232223,213,0 +170784232271,213,0 +170784232319,213,0 +170784232367,213,0 +170784232415,213,0 +170784232463,213,0 +170784232511,213,0 +170784232560,213,0 +170784232608,213,0 +170784232656,214,0 +170784232704,214,0 +170784232751,214,0 +170784232799,214,0 +170784232847,214,0 +170784232896,214,0 +170784232944,214,0 +170784232992,214,0 +170784233040,213,0 +170784233090,213,0 +170784233137,213,0 +170784233185,213,0 +170784233235,213,0 +170784233283,213,0 +170784233332,213,0 +170784233380,213,0 +170784233428,214,0 +170784233476,214,0 +170784233526,214,0 +170784233574,214,0 +170784233621,214,0 +170784233669,214,0 +170784233717,214,0 +170784233765,214,0 +170784233813,213,0 +170784233863,213,0 +170784233912,213,0 +170784233960,213,0 +170784234008,214,0 +170784234056,214,0 +170784234104,214,0 +170784234153,214,0 +170784234201,214,0 +170784234249,214,0 +170784234299,214,0 +170784234347,214,0 +170784234396,214,0 +170784234444,214,0 +170784234492,214,0 +170784234540,214,0 +170784234588,214,0 +170784234636,213,0 +170784234685,213,0 +170784234733,213,0 +170784234781,213,0 +170784234829,213,0 +170784234877,213,0 +170784234926,213,0 +170784234976,214,0 +170784235024,214,0 +170784235072,214,0 +170784235120,214,0 +170784235168,214,0 +170784235216,214,0 +170784235265,214,0 +170784235313,214,0 +170784235361,214,0 +170784235409,214,0 +170784235457,213,0 +170784235505,213,0 +170784235554,213,0 +170784235604,213,0 +170784235652,213,0 +170784235701,213,0 +170784235749,213,0 +170784235797,213,0 +170784235847,214,0 +170784235896,214,0 +170784235946,214,0 +170784235993,214,0 +170784236041,214,0 +170784236089,214,0 +170784236137,214,0 +170784236187,214,0 +170784236235,213,0 +170784236283,213,0 +170784236332,213,0 +170784236380,213,0 +170784236428,213,0 +170784236477,213,0 +170784236527,213,0 +170784236575,214,0 +170784236623,214,0 +170784236672,213,0 +170784236720,214,0 +170784236768,214,0 +170784236816,214,0 +170784236864,214,0 +170784236912,214,0 +170784236962,214,0 +170784237011,214,0 +170784237059,213,0 +170784237107,213,0 +170784237156,213,0 +170784237204,213,0 +170784237252,213,0 +170784237300,214,0 +170784237350,214,0 +170784237398,214,0 +170784237446,214,0 +170784237495,214,0 +170784237545,214,0 +170784237593,214,0 +170784237642,214,0 +170784237692,214,0 +170784237740,214,0 +170784237788,214,0 +170784237836,213,0 +170784237884,213,0 +170784237931,213,0 +170784237979,213,0 +170784238027,213,0 +170784238077,214,0 +170784238125,214,0 +170784238172,213,0 +170784238220,214,0 +170784238268,214,0 +170784238318,214,0 +170784238367,214,0 +170784238415,214,0 +170784238463,214,0 +170784238513,214,0 +170784238562,214,0 +170784238612,214,0 +170784238660,213,0 +170784238709,213,0 +170784238757,213,0 +170784238805,213,0 +170784238855,213,0 +170784238903,213,0 +170784238951,213,0 +170784239000,214,0 +170784239048,214,0 +170784239096,214,0 +170784239144,214,0 +170784239194,214,0 +170784239241,214,0 +170784239289,214,0 +170784239339,214,0 +170784239388,214,0 +170784239436,213,0 +170784239484,213,0 +170784239532,213,0 +170784239580,213,0 +170784239628,214,0 +170784239676,214,0 +170784239725,214,0 +170784239775,214,0 +170784239823,214,0 +170784239871,214,0 +170784239919,214,0 +170784239968,214,0 +170784240018,214,0 +170784240066,214,0 +170784240114,214,0 +170784240162,214,0 +170784240210,214,0 +170784240258,213,0 +170784240307,214,0 +170784240355,213,0 +170784240404,214,0 +170784240454,214,0 +170784240502,214,0 +170784240551,214,0 +170784240599,214,0 +170784240647,214,0 +170784240695,214,0 +170784240745,214,0 +170784240794,214,0 +170784240842,214,0 +170784240891,214,0 +170784240939,214,0 +170784240987,214,0 +170784241035,213,0 +170784241083,213,0 +170784241131,213,0 +170784241179,213,0 +170784241226,214,0 +170784241274,213,0 +170784241322,214,0 +170784241370,214,0 +170784241418,214,0 +170784241466,214,0 +170784241514,214,0 +170784241562,214,0 +170784241609,214,0 +170784241657,214,0 +170784241705,214,0 +170784241753,214,0 +170784241801,214,0 +170784241849,213,0 +170784241897,213,0 +170784241945,213,0 +170784241993,213,0 +170784242041,213,0 +170784242088,213,0 +170784242136,214,0 +170784242184,214,0 +170784242232,214,0 +170784242280,214,0 +170784242328,214,0 +170784242376,214,0 +170784242424,214,0 +170784242472,214,0 +170784242521,214,0 +170784242570,214,0 +170784242618,214,0 +170784242666,213,0 +170784242716,213,0 +170784242765,213,0 +170784242813,213,0 +170784242861,214,0 +170784242909,214,0 +170784242957,213,0 +170784243005,214,0 +170784243053,214,0 +170784243101,214,0 +170784243150,214,0 +170784243198,214,0 +170784243246,214,0 +170784243294,214,0 +170784243344,214,0 +170784243393,214,0 +170784243441,213,0 +170784243491,213,0 +170784243539,213,0 +170784243586,213,0 +170784243634,213,0 +170784243682,213,0 +170784243732,214,0 +170784243780,213,0 +170784243828,214,0 +170784243877,214,0 +170784243927,214,0 +170784243975,214,0 +170784244023,214,0 +170784244071,214,0 +170784244119,214,0 +170784244168,214,0 +170784244216,213,0 +170784244264,213,0 +170784244314,213,0 +170784244362,213,0 +170784244410,213,0 +170784244459,213,0 +170784244509,213,0 +170784244557,214,0 +170784244604,214,0 +170784244652,214,0 +170784244702,214,0 +170784244750,214,0 +170784244798,214,0 +170784244846,214,0 +170784244894,214,0 +170784244942,214,0 +170784244989,213,0 +170784245037,213,0 +170784245087,213,0 +170784245135,213,0 +170784245183,213,0 +170784245232,213,0 +170784245280,214,0 +170784245328,213,0 +170784245378,214,0 +170784245426,214,0 +170784245474,214,0 +170784245522,214,0 +170784245571,214,0 +170784245621,214,0 +170784245669,214,0 +170784245719,214,0 +170784245768,214,0 +170784245816,214,0 +170784245865,213,0 +170784245913,213,0 +170784245961,213,0 +170784246011,213,0 +170784246059,213,0 +170784246107,214,0 +170784246155,214,0 +170784246203,214,0 +170784246251,214,0 +170784246299,214,0 +170784246348,214,0 +170784246396,214,0 +170784246446,214,0 +170784246495,214,0 +170784246543,214,0 +170784246591,214,0 +170784246639,214,0 +170784246689,213,0 +170784246738,213,0 +170784246786,214,0 +170784246834,213,0 +170784246882,214,0 +170784246930,214,0 +170784246979,214,0 +170784247027,214,0 +170784247075,214,0 +170784247123,214,0 +170784247171,214,0 +170784247218,214,0 +170784247266,214,0 +170784247314,214,0 +170784247362,214,0 +170784247410,214,0 +170784247457,213,0 +170784247505,213,0 +170784247555,213,0 +170784247603,213,0 +170784247650,213,0 +170784247698,213,0 +170784247746,214,0 +170784247794,214,0 +170784247842,214,0 +170784247890,214,0 +170784247937,214,0 +170784247985,214,0 +170784248033,214,0 +170784248081,214,0 +170784248129,214,0 +170784248177,214,0 +170784248225,214,0 +170784248272,213,0 +170784248320,213,0 +170784248368,213,0 +170784248416,213,0 +170784248465,213,0 +170784248513,213,0 +170784248561,213,0 +170784248609,214,0 +170784248657,214,0 +170784248705,214,0 +170784248753,214,0 +170784248800,214,0 +170784248848,214,0 +170784248896,214,0 +170784248946,214,0 +170784248993,214,0 +170784249043,213,0 +170784249091,213,0 +170784249139,213,0 +170784249188,213,0 +170784249236,213,0 +170784249284,213,0 +170784249331,213,0 +170784249379,213,0 +170784249427,213,0 +170784249475,213,0 +170784249523,214,0 +170784249571,214,0 +170784249619,214,0 +170784249667,214,0 +170784249714,214,0 +170784249762,214,0 +170784249810,214,0 +170784249858,213,0 +170784249906,213,0 +170784249954,213,0 +170784250002,213,0 +170784250049,213,0 +170784250097,213,0 +170784250145,213,0 +170784250193,213,0 +170784250241,213,0 +170784250289,213,0 +170784250337,214,0 +170784250384,214,0 +170784250432,213,0 +170784250480,214,0 +170784250528,214,0 +170784250576,214,0 +170784250626,213,0 +170784250674,213,0 +170784250723,213,0 +170784250771,213,0 +170784250819,213,0 +170784250867,213,0 +170784250915,213,0 +170784250963,213,0 +170784251011,213,0 +170784251059,213,0 +170784251107,213,0 +170784251156,214,0 +170784251206,214,0 +170784251254,214,0 +170784251301,214,0 +170784251349,214,0 +170784251397,214,0 +170784251445,213,0 +170784251493,213,0 +170784251542,213,0 +170784251592,213,0 +170784251640,213,0 +170784251688,213,0 +170784251736,213,0 +170784251783,213,0 +170784251831,214,0 +170784251881,214,0 +170784251929,214,0 +170784251977,214,0 +170784252026,214,0 +170784252074,214,0 +170784252123,214,0 +170784252171,214,0 +170784252221,214,0 +170784252270,213,0 +170784252320,213,0 +170784252368,213,0 +170784252416,214,0 +170784252464,214,0 +170784252513,213,0 +170784252561,214,0 +170784252610,214,0 +170784252658,214,0 +170784252706,214,0 +170784252755,214,0 +170784252803,214,0 +170784252853,214,0 +170784252901,214,0 +170784252949,214,0 +170784252997,214,0 +170784253045,214,0 +170784253093,213,0 +170784253140,213,0 +170784253190,214,0 +170784253238,213,0 +170784253286,214,0 +170784253334,214,0 +170784253383,214,0 +170784253433,214,0 +170784253481,214,0 +170784253529,214,0 +170784253578,214,0 +170784253626,214,0 +170784253674,214,0 +170784253722,214,0 +170784253770,214,0 +170784253818,214,0 +170784253866,213,0 +170784253914,213,0 +170784253962,213,0 +170784254010,213,0 +170784254059,213,0 +170784254107,213,0 +170784254157,214,0 +170784254204,213,0 +170784254252,213,0 +170784254300,214,0 +170784254348,214,0 +170784254396,214,0 +170784254444,214,0 +170784254494,214,0 +170784254541,214,0 +170784254589,214,0 +170784254637,214,0 +170784254685,213,0 +170784254733,213,0 +170784254782,213,0 +170784254830,213,0 +170784254878,213,0 +170784254928,213,0 +170784254976,213,0 +170784255025,213,0 +170784255075,213,0 +170784255123,213,0 +170784255171,213,0 +170784255218,213,0 +170784255266,213,0 +170784255314,213,0 +170784255362,213,0 +170784255410,214,0 +170784255458,214,0 +170784255506,214,0 +170784255554,214,0 +170784255602,214,0 +170784255650,214,0 +170784255698,214,0 +170784255748,214,0 +170784255796,214,0 +170784255845,214,0 +170784255893,213,0 +170784255942,213,0 +170784255990,213,0 +170784256040,213,0 +170784256089,213,0 +170784256137,213,0 +170784256185,214,0 +170784256233,214,0 +170784256281,214,0 +170784256329,214,0 +170784256377,214,0 +170784256425,214,0 +170784256475,214,0 +170784256523,214,0 +170784256572,214,0 +170784256620,214,0 +170784256668,213,0 +170784256716,213,0 +170784256763,213,0 +170784256811,213,0 +170784256859,214,0 +170784256909,214,0 +170784256957,214,0 +170784257005,214,0 +170784257053,214,0 +170784257102,214,0 +170784257150,214,0 +170784257200,214,0 +170784257247,214,0 +170784257297,214,0 +170784257345,214,0 +170784257394,214,0 +170784257442,214,0 +170784257490,213,0 +170784257540,213,0 +170784257588,213,0 +170784257637,213,0 +170784257685,213,0 +170784257733,213,0 +170784257781,213,0 +170784257828,214,0 +170784257876,214,0 +170784257924,214,0 +170784257974,214,0 +170784258022,214,0 +170784258070,214,0 +170784258117,214,0 +170784258165,213,0 +170784258215,214,0 +170784258263,214,0 +170784258311,214,0 +170784258359,214,0 +170784258407,213,0 +170784258455,213,0 +170784258502,213,0 +170784258552,213,0 +170784258600,213,0 +170784258648,213,0 +170784258697,213,0 +170784258747,213,0 +170784258795,213,0 +170784258844,214,0 +170784258894,214,0 +170784258942,214,0 +170784258990,214,0 +170784259039,214,0 +170784259087,214,0 +170784259135,214,0 +170784259184,214,0 +170784259234,214,0 +170784259282,214,0 +170784259330,213,0 +170784259379,213,0 +170784259427,213,0 +170784259475,213,0 +170784259523,213,0 +170784259573,213,0 +170784259620,214,0 +170784259668,213,0 +170784259716,214,0 +170784259766,214,0 +170784259815,214,0 +170784259863,214,0 +170784259911,214,0 +170784259959,214,0 +170784260009,214,0 +170784260057,214,0 +170784260105,214,0 +170784260153,214,0 +170784260202,214,0 +170784260250,213,0 +170784260298,213,0 +170784260348,213,0 +170784260397,213,0 +170784260445,213,0 +170784260495,213,0 +170784260543,214,0 +170784260591,214,0 +170784260639,214,0 +170784260688,214,0 +170784260738,214,0 +170784260787,214,0 +170784260835,214,0 +170784260883,214,0 +170784260931,214,0 +170784260979,214,0 +170784261027,214,0 +170784261075,214,0 +170784261124,214,0 +170784261174,213,0 +170784261222,213,0 +170784261270,213,0 +170784261318,213,0 +170784261366,213,0 +170784261415,213,0 +170784261465,213,0 +170784261513,213,0 +170784261561,214,0 +170784261609,214,0 +170784261657,214,0 +170784261705,214,0 +170784261753,214,0 +170784261801,214,0 +170784261849,214,0 +170784261898,214,0 +170784261948,214,0 +170784261996,214,0 +170784262045,214,0 +170784262093,213,0 +170784262141,213,0 +170784262189,213,0 +170784262237,213,0 +170784262287,213,0 +170784262336,213,0 +170784262384,213,0 +170784262432,213,0 +170784262481,213,0 +170784262531,214,0 +170784262579,214,0 +170784262627,214,0 +170784262676,214,0 +170784262726,214,0 +170784262775,214,0 +170784262825,214,0 +170784262873,214,0 +170784262922,214,0 +170784262970,213,0 +170784263018,213,0 +170784263066,213,0 +170784263114,213,0 +170784263162,213,0 +170784263211,213,0 +170784263259,213,0 +170784263307,213,0 +170784263357,213,0 +170784263405,213,0 +170784263454,213,0 +170784263502,213,0 +170784263550,214,0 +170784263598,214,0 +170784263646,214,0 +170784263694,214,0 +170784263742,214,0 +170784263790,214,0 +170784263837,214,0 +170784263885,214,0 +170784263933,214,0 +170784263983,213,0 +170784264032,213,0 +170784264082,213,0 +170784264130,213,0 +170784264178,213,0 +170784264226,213,0 +170784264274,213,0 +170784264322,213,0 +170784264370,213,0 +170784264417,213,0 +170784264465,213,0 +170784264513,213,0 +170784264561,214,0 +170784264609,214,0 +170784264657,214,0 +170784264706,214,0 +170784264754,214,0 +170784264802,214,0 +170784264850,214,0 +170784264900,213,0 +170784264948,213,0 +170784264997,213,0 +170784265045,213,0 +170784265093,213,0 +170784265143,213,0 +170784265192,213,0 +170784265240,213,0 +170784265290,213,0 +170784265339,213,0 +170784265387,213,0 +170784265437,213,0 +170784265486,214,0 +170784265534,214,0 +170784265584,214,0 +170784265633,214,0 +170784265683,214,0 +170784265732,214,0 +170784265780,214,0 +170784265830,213,0 +170784265878,213,0 +170784265927,213,0 +170784265977,213,0 +170784266025,213,0 +170784266073,213,0 +170784266122,213,0 +170784266170,214,0 +170784266220,213,0 +170784266269,214,0 +170784266319,214,0 +170784266368,214,0 +170784266418,214,0 +170784266466,214,0 +170784266515,214,0 +170784266565,214,0 +170784266613,214,0 +170784266660,214,0 +170784266708,214,0 +170784266758,213,0 +170784266806,213,0 +170784266854,213,0 +170784266902,213,0 +170784266949,213,0 +170784266997,214,0 +170784267045,213,0 +170784267093,213,0 +170784267143,214,0 +170784267191,214,0 +170784267239,214,0 +170784267288,214,0 +170784267336,214,0 +170784267384,214,0 +170784267432,214,0 +170784267482,214,0 +170784267531,214,0 +170784267579,214,0 +170784267627,214,0 +170784267677,213,0 +170784267725,213,0 +170784267774,213,0 +170784267822,214,0 +170784267870,213,0 +170784267918,214,0 +170784267966,214,0 +170784268014,214,0 +170784268062,214,0 +170784268109,214,0 +170784268157,214,0 +170784268205,214,0 +170784268255,214,0 +170784268304,214,0 +170784268352,214,0 +170784268400,214,0 +170784268450,214,0 +170784268498,214,0 +170784268547,214,0 +170784268595,214,0 +170784268643,214,0 +170784268691,214,0 +170784268740,214,0 +170784268788,214,0 +170784268836,214,0 +170784268884,214,0 +170784268932,214,0 +170784268980,214,0 +170784269028,214,0 +170784269076,214,0 +170784269126,214,0 +170784269174,214,0 +170784269222,214,0 +170784269269,214,0 +170784269317,214,0 +170784269367,214,0 +170784269415,214,0 +170784269462,214,0 +170784269510,214,0 +170784269558,214,0 +170784269606,214,0 +170784269654,214,0 +170784269702,214,0 +170784269749,214,0 +170784269799,214,0 +170784269847,214,0 +170784269895,214,0 +170784269942,214,0 +170784269990,214,0 +170784270040,214,0 +170784270089,214,0 +170784270137,214,0 +170784270185,214,0 +170784270233,214,0 +170784270281,214,0 +170784270329,214,0 +170784270377,214,0 +170784270425,214,0 +170784270472,213,0 +170784270520,213,0 +170784270568,213,0 +170784270616,213,0 +170784270664,213,0 +170784270714,213,0 +170784270762,213,0 +170784270811,214,0 +170784270859,213,0 +170784270907,213,0 +170784270955,213,0 +170784271005,214,0 +170784271053,214,0 +170784271101,214,0 +170784271149,214,0 +170784271196,214,0 +170784271246,214,0 +170784271294,214,0 +170784271343,214,0 +170784271391,213,0 +170784271439,213,0 +170784271487,213,0 +170784271535,213,0 +170784271585,213,0 +170784271634,213,0 +170784271684,213,0 +170784271732,213,0 +170784271779,213,0 +170784271829,213,0 +170784271877,214,0 +170784271925,214,0 +170784271973,214,0 +170784272021,214,0 +170784272070,214,0 +170784272120,214,0 +170784272169,214,0 +170784272217,214,0 +170784272267,214,0 +170784272316,214,0 +170784272364,213,0 +170784272412,213,0 +170784272460,213,0 +170784272508,213,0 +170784272558,213,0 +170784272605,213,0 +170784272655,213,0 +170784272705,213,0 +170784272753,213,0 +170784272802,213,0 +170784272850,214,0 +170784272898,214,0 +170784272947,214,0 +170784272997,214,0 +170784273045,214,0 +170784273093,214,0 +170784273141,214,0 +170784273190,214,0 +170784273238,214,0 +170784273286,213,0 +170784273334,213,0 +170784273383,213,0 +170784273431,213,0 +170784273479,213,0 +170784273527,213,0 +170784273577,213,0 +170784273626,213,0 +170784273674,214,0 +170784273722,213,0 +170784273772,214,0 +170784273820,214,0 +170784273869,213,0 +170784273917,214,0 +170784273967,214,0 +170784274014,214,0 +170784274064,214,0 +170784274112,214,0 +170784274160,214,0 +170784274208,213,0 +170784274256,213,0 +170784274304,213,0 +170784274351,213,0 +170784274399,213,0 +170784274447,213,0 +170784274495,213,0 +170784274543,213,0 +170784274591,213,0 +170784274639,214,0 +170784274686,214,0 +170784274736,214,0 +170784274784,214,0 +170784274833,214,0 +170784274881,214,0 +170784274929,214,0 +170784274977,214,0 +170784275025,214,0 +170784275073,214,0 +170784275121,213,0 +170784275170,213,0 +170784275218,213,0 +170784275268,213,0 +170784275316,213,0 +170784275365,213,0 +170784275413,213,0 +170784275463,213,0 +170784275511,213,0 +170784275560,213,0 +170784275610,213,0 +170784275659,213,0 +170784275707,214,0 +170784275757,214,0 +170784275805,213,0 +170784275854,214,0 +170784275902,214,0 +170784275950,214,0 +170784275999,214,0 +170784276047,213,0 +170784276095,213,0 +170784276145,213,0 +170784276194,213,0 +170784276244,213,0 +170784276292,213,0 +170784276340,213,0 +170784276388,213,0 +170784276437,213,0 +170784276485,213,0 +170784276533,213,0 +170784276581,214,0 +170784276629,214,0 +170784276678,214,0 +170784276728,214,0 +170784276777,214,0 +170784276827,214,0 +170784276876,214,0 +170784276926,214,0 +170784276975,214,0 +170784277025,213,0 +170784277073,213,0 +170784277122,213,0 +170784277170,213,0 +170784277218,213,0 +170784277266,213,0 +170784277314,213,0 +170784277362,213,0 +170784277410,213,0 +170784277458,213,0 +170784277507,213,0 +170784277556,213,0 +170784277606,213,0 +170784277654,214,0 +170784277702,214,0 +170784277750,214,0 +170784277798,214,0 +170784277847,214,0 +170784277895,214,0 +170784277943,213,0 +170784277991,213,0 +170784278040,213,0 +170784278090,213,0 +170784278138,213,0 +170784278186,213,0 +170784278234,213,0 +170784278282,213,0 +170784278330,213,0 +170784278379,213,0 +170784278427,214,0 +170784278475,214,0 +170784278525,213,0 +170784278573,213,0 +170784278620,214,0 +170784278668,214,0 +170784278717,214,0 +170784278765,214,0 +170784278812,214,0 +170784278860,213,0 +170784278910,213,0 +170784278959,213,0 +170784279007,213,0 +170784279055,213,0 +170784279103,213,0 +170784279152,213,0 +170784279202,213,0 +170784279250,213,0 +170784279298,213,0 +170784279346,213,0 +170784279394,214,0 +170784279442,214,0 +170784279489,214,0 +170784279539,214,0 +170784279589,214,0 +170784279638,214,0 +170784279688,214,0 +170784279736,214,0 +170784279785,213,0 +170784279835,213,0 +170784279883,213,0 +170784279930,213,0 +170784279980,213,0 +170784280029,213,0 +170784280077,213,0 +170784280125,213,0 +170784280175,213,0 +170784280223,213,0 +170784280270,213,0 +170784280318,214,0 +170784280366,214,0 +170784280414,214,0 +170784280462,214,0 +170784280510,214,0 +170784280558,214,0 +170784280607,214,0 +170784280655,214,0 +170784280703,213,0 +170784280751,213,0 +170784280799,213,0 +170784280849,213,0 +170784280896,213,0 +170784280946,213,0 +170784280994,213,0 +170784281043,213,0 +170784281091,213,0 +170784281141,214,0 +170784281189,214,0 +170784281238,214,0 +170784281286,214,0 +170784281334,214,0 +170784281382,214,0 +170784281430,214,0 +170784281479,214,0 +170784281527,214,0 +170784281575,214,0 +170784281623,213,0 +170784281671,213,0 +170784281719,213,0 +170784281768,213,0 +170784281816,213,0 +170784281866,213,0 +170784281914,213,0 +170784281962,213,0 +170784282011,213,0 +170784282059,213,0 +170784282109,214,0 +170784282157,214,0 +170784282206,214,0 +170784282254,214,0 +170784282304,214,0 +170784282352,214,0 +170784282400,214,0 +170784282449,214,0 +170784282497,214,0 +170784282545,213,0 +170784282593,213,0 +170784282641,213,0 +170784282690,213,0 +170784282738,213,0 +170784282786,213,0 +170784282834,213,0 +170784282882,213,0 +170784282930,213,0 +170784282978,213,0 +170784283025,213,0 +170784283073,214,0 +170784283123,214,0 +170784283171,213,0 +170784283219,214,0 +170784283267,214,0 +170784283315,214,0 +170784283363,214,0 +170784283411,214,0 +170784283459,213,0 +170784283507,213,0 +170784283555,213,0 +170784283603,213,0 +170784283652,213,0 +170784283700,213,0 +170784283750,213,0 +170784283797,213,0 +170784283845,213,0 +170784283895,213,0 +170784283943,213,0 +170784283991,214,0 +170784284039,214,0 +170784284088,214,0 +170784284136,214,0 +170784284184,214,0 +170784284233,214,0 +170784284283,214,0 +170784284331,214,0 +170784284379,214,0 +170784284427,213,0 +170784284475,213,0 +170784284522,213,0 +170784284570,213,0 +170784284618,213,0 +170784284666,213,0 +170784284714,213,0 +170784284762,213,0 +170784284811,213,0 +170784284861,213,0 +170784284909,213,0 +170784284958,213,0 +170784285006,214,0 +170784285054,214,0 +170784285104,213,0 +170784285153,214,0 +170784285203,213,0 +170784285251,214,0 +170784285299,214,0 +170784285347,213,0 +170784285396,213,0 +170784285444,213,0 +170784285494,213,0 +170784285541,213,0 +170784285591,213,0 +170784285639,213,0 +170784285687,213,0 +170784285735,213,0 +170784285783,213,0 +170784285832,213,0 +170784285880,213,0 +170784285928,213,0 +170784285978,213,0 +170784286027,213,0 +170784286077,213,0 +170784286125,213,0 +170784286172,213,0 +170784286222,213,0 +170784286270,213,0 +170784286319,213,0 +170784286367,213,0 +170784286417,213,0 +170784286466,213,0 +170784286516,213,0 +170784286564,213,0 +170784286613,213,0 +170784286663,213,0 +170784286713,213,0 +170784286760,213,0 +170784286810,213,0 +170784286859,213,0 +170784286907,213,0 +170784286955,213,0 +170784287005,213,0 +170784287053,214,0 +170784287101,213,0 +170784287149,214,0 +170784287198,213,0 +170784287246,213,0 +170784287294,213,0 +170784287342,213,0 +170784287389,213,0 +170784287437,213,0 +170784287487,213,0 +170784287536,213,0 +170784287584,213,0 +170784287632,213,0 +170784287680,213,0 +170784287728,213,0 +170784287776,213,0 +170784287825,213,0 +170784287873,213,0 +170784287923,214,0 +170784287972,214,0 +170784288020,214,0 +170784288069,214,0 +170784288119,213,0 +170784288168,213,0 +170784288218,213,0 +170784288266,213,0 +170784288314,213,0 +170784288362,213,0 +170784288410,213,0 +170784288459,213,0 +170784288509,213,0 +170784288557,213,0 +170784288606,213,0 +170784288656,213,0 +170784288704,213,0 +170784288752,214,0 +170784288801,213,0 +170784288849,214,0 +170784288897,214,0 +170784288945,214,0 +170784288993,213,0 +170784289042,213,0 +170784289092,213,0 +170784289140,213,0 +170784289188,213,0 +170784289236,213,0 +170784289284,213,0 +170784289333,213,0 +170784289381,213,0 +170784289429,213,0 +170784289477,213,0 +170784289527,214,0 +170784289574,214,0 +170784289622,214,0 +170784289672,214,0 +170784289720,214,0 +170784289769,214,0 +170784289819,214,0 +170784289867,214,0 +170784289915,214,0 +170784289962,213,0 +170784290012,213,0 +170784290060,213,0 +170784290108,213,0 +170784290156,213,0 +170784290204,213,0 +170784290252,213,0 +170784290299,214,0 +170784290347,214,0 +170784290395,214,0 +170784290443,213,0 +170784290491,214,0 +170784290541,214,0 +170784290589,214,0 +170784290636,214,0 +170784290684,214,0 +170784290732,214,0 +170784290780,214,0 +170784290828,214,0 +170784290876,214,0 +170784290926,213,0 +170784290975,213,0 +170784291024,213,0 +170784291072,213,0 +170784291122,213,0 +170784291171,213,0 +170784291221,214,0 +170784291269,214,0 +170784291318,214,0 +170784291366,214,0 +170784291415,214,0 +170784291463,214,0 +170784291511,214,0 +170784291559,214,0 +170784291609,214,0 +170784291656,214,0 +170784291704,214,0 +170784291752,214,0 +170784291800,213,0 +170784291848,213,0 +170784291896,213,0 +170784291944,213,0 +170784291992,213,0 +170784292042,213,0 +170784292089,213,0 +170784292137,213,0 +170784292185,213,0 +170784292233,213,0 +170784292281,213,0 +170784292329,213,0 +170784292377,213,0 +170784292427,214,0 +170784292475,214,0 +170784292523,214,0 +170784292570,214,0 +170784292618,214,0 +170784292666,214,0 +170784292716,214,0 +170784292764,213,0 +170784292812,213,0 +170784292860,213,0 +170784292907,213,0 +170784292957,213,0 +170784293005,213,0 +170784293054,213,0 +170784293102,213,0 +170784293150,213,0 +170784293198,213,0 +170784293246,214,0 +170784293294,214,0 +170784293344,214,0 +170784293392,214,0 +170784293440,214,0 +170784293489,214,0 +170784293538,214,0 +170784293586,214,0 +170784293636,214,0 +170784293684,213,0 +170784293731,213,0 +170784293779,213,0 +170784293829,213,0 +170784293877,213,0 +170784293926,213,0 +170784293974,213,0 +170784294022,213,0 +170784294070,213,0 +170784294120,213,0 +170784294168,213,0 +170784294216,213,0 +170784294265,213,0 +170784294313,214,0 +170784294361,214,0 +170784294411,214,0 +170784294458,214,0 +170784294506,214,0 +170784294554,214,0 +170784294604,213,0 +170784294653,213,0 +170784294701,213,0 +170784294749,213,0 +170784294797,213,0 +170784294845,213,0 +170784294893,213,0 +170784294942,213,0 +170784294990,213,0 +170784295040,213,0 +170784295088,213,0 +170784295137,214,0 +170784295185,214,0 +170784295233,214,0 +170784295281,214,0 +170784295329,214,0 +170784295378,214,0 +170784295426,214,0 +170784295474,214,0 +170784295522,213,0 +170784295570,213,0 +170784295618,213,0 +170784295666,213,0 +170784295714,213,0 +170784295763,213,0 +170784295813,213,0 +170784295861,213,0 +170784295910,213,0 +170784295960,213,0 +170784296008,213,0 +170784296056,213,0 +170784296104,214,0 +170784296151,214,0 +170784296199,214,0 +170784296247,214,0 +170784296295,214,0 +170784296343,214,0 +170784296391,214,0 +170784296439,214,0 +170784296486,213,0 +170784296534,213,0 +170784296582,213,0 +170784296630,213,0 +170784296678,213,0 +170784296726,213,0 +170784296774,213,0 +170784296822,213,0 +170784296870,213,0 +170784296918,213,0 +170784296966,213,0 +170784297014,213,0 +170784297061,213,0 +170784297111,214,0 +170784297159,214,0 +170784297207,214,0 +170784297256,214,0 +170784297304,214,0 +170784297354,214,0 +170784297403,213,0 +170784297451,213,0 +170784297499,213,0 +170784297549,213,0 +170784297597,213,0 +170784297644,213,0 +170784297694,213,0 +170784297742,213,0 +170784297790,213,0 +170784297838,213,0 +170784297885,213,0 +170784297933,213,0 +170784297981,213,0 +170784298029,213,0 +170784298077,214,0 +170784298127,214,0 +170784298174,214,0 +170784298222,214,0 +170784298272,214,0 +170784298321,213,0 +170784298369,213,0 +170784298419,213,0 +170784298467,213,0 +170784298516,213,0 +170784298566,213,0 +170784298615,213,0 +170784298663,213,0 +170784298711,213,0 +170784298759,213,0 +170784298807,213,0 +170784298855,213,0 +170784298903,213,0 +170784298953,213,0 +170784299000,213,0 +170784299050,214,0 +170784299098,214,0 +170784299147,214,0 +170784299195,214,0 +170784299245,213,0 +170784299293,213,0 +170784299342,213,0 +170784299390,213,0 +170784299438,213,0 +170784299487,213,0 +170784299535,213,0 +170784299583,213,0 +170784299631,213,0 +170784299681,213,0 +170784299729,213,0 +170784299777,214,0 +170784299824,214,0 +170784299872,213,0 +170784299920,214,0 +170784299970,214,0 +170784300018,214,0 +170784300067,214,0 +170784300115,214,0 +170784300163,214,0 +170784300213,213,0 +170784300261,213,0 +170784300309,213,0 +170784300357,213,0 +170784300405,213,0 +170784300453,213,0 +170784300501,213,0 +170784300549,213,0 +170784300598,213,0 +170784300646,214,0 +170784300694,214,0 +170784300742,214,0 +170784300792,214,0 +170784300840,214,0 +170784300888,214,0 +170784300937,214,0 +170784300987,214,0 +170784301035,214,0 +170784301083,214,0 +170784301131,213,0 +170784301178,213,0 +170784301226,213,0 +170784301274,213,0 +170784301324,213,0 +170784301372,213,0 +170784301421,213,0 +170784301469,213,0 +170784301519,213,0 +170784301568,213,0 +170784301616,213,0 +170784301664,213,0 +170784301714,214,0 +170784301762,214,0 +170784301810,214,0 +170784301858,214,0 +170784301906,214,0 +170784301955,214,0 +170784302003,214,0 +170784302051,213,0 +170784302100,213,0 +170784302148,213,0 +170784302198,213,0 +170784302247,213,0 +170784302297,213,0 +170784302345,213,0 +170784302393,213,0 +170784302440,213,0 +170784302488,213,0 +170784302536,213,0 +170784302584,213,0 +170784302632,213,0 +170784302680,213,0 +170784302729,214,0 +170784302777,214,0 +170784302825,213,0 +170784302873,213,0 +170784302921,214,0 +170784302969,213,0 +170784303016,213,0 +170784303064,213,0 +170784303112,213,0 +170784303160,213,0 +170784303208,213,0 +170784303256,213,0 +170784303305,213,0 +170784303353,213,0 +170784303401,213,0 +170784303449,213,0 +170784303497,213,0 +170784303545,213,0 +170784303593,213,0 +170784303640,213,0 +170784303690,213,0 +170784303738,213,0 +170784303786,214,0 +170784303834,213,0 +170784303882,214,0 +170784303931,213,0 +170784303981,213,0 +170784304030,212,0 +170784304078,213,0 +170784304126,213,0 +170784304176,213,0 +170784304224,213,0 +170784304272,213,0 +170784304319,213,0 +170784304367,213,0 +170784304415,213,0 +170784304463,213,0 +170784304513,213,0 +170784304562,213,0 +170784304612,213,0 +170784304661,213,0 +170784304709,213,0 +170784304757,213,0 +170784304807,214,0 +170784304856,213,0 +170784304904,212,0 +170784304952,212,0 +170784305002,213,0 +170784305051,213,0 +170784305099,213,0 +170784305149,213,0 +170784305197,213,0 +170784305246,213,0 +170784305294,213,0 +170784305342,213,0 +170784305390,213,0 +170784305438,213,0 +170784305486,213,0 +170784305534,213,0 +170784305583,213,0 +170784305631,213,0 +170784305679,214,0 +170784305727,214,0 +170784305774,213,0 +170784305822,213,0 +170784305870,213,0 +170784305919,213,0 +170784305967,213,0 +170784306015,213,0 +170784306065,213,0 +170784306114,213,0 +170784306164,213,0 +170784306212,213,0 +170784306260,213,0 +170784306309,213,0 +170784306357,213,0 +170784306407,213,0 +170784306456,213,0 +170784306504,213,0 +170784306554,213,0 +170784306602,213,0 +170784306651,214,0 +170784306699,213,0 +170784306748,213,0 +170784306796,213,0 +170784306846,213,0 +170784306896,213,0 +170784306943,213,0 +170784306991,213,0 +170784307039,213,0 +170784307089,213,0 +170784307137,213,0 +170784307185,213,0 +170784307233,213,0 +170784307282,213,0 +170784307330,213,0 +170784307380,214,0 +170784307428,214,0 +170784307476,214,0 +170784307524,214,0 +170784307573,214,0 +170784307621,213,0 +170784307669,213,0 +170784307717,213,0 +170784307764,213,0 +170784307812,213,0 +170784307862,213,0 +170784307910,213,0 +170784307958,213,0 +170784308006,213,0 +170784308053,213,0 +170784308102,213,0 +170784308151,213,0 +170784308201,213,0 +170784308250,213,0 +170784308300,214,0 +170784308347,214,0 +170784308397,214,0 +170784308445,214,0 +170784308494,214,0 +170784308542,213,0 +170784308592,213,0 +170784308640,213,0 +170784308688,213,0 +170784308736,213,0 +170784308785,213,0 +170784308833,213,0 +170784308881,213,0 +170784308929,213,0 +170784308977,214,0 +170784309026,214,0 +170784309074,214,0 +170784309124,214,0 +170784309172,214,0 +170784309220,214,0 +170784309268,214,0 +170784309316,214,0 +170784309364,214,0 +170784309411,214,0 +170784309459,214,0 +170784309507,213,0 +170784309555,213,0 +170784309605,213,0 +170784309653,213,0 +170784309700,213,0 +170784309748,214,0 +170784309798,214,0 +170784309846,214,0 +170784309893,214,0 +170784309941,214,0 +170784309989,214,0 +170784310037,214,0 +170784310085,214,0 +170784310134,214,0 +170784310182,214,0 +170784310230,214,0 +170784310278,214,0 +170784310326,214,0 +170784310374,213,0 +170784310423,213,0 +170784310471,213,0 +170784310519,213,0 +170784310567,213,0 +170784310616,213,0 +170784310664,213,0 +170784310712,213,0 +170784310760,213,0 +170784310808,214,0 +170784310857,214,0 +170784310905,214,0 +170784310953,214,0 +170784311001,214,0 +170784311048,214,0 +170784311096,214,0 +170784311144,214,0 +170784311194,214,0 +170784311243,214,0 +170784311291,214,0 +170784311339,213,0 +170784311387,213,0 +170784311435,213,0 +170784311483,213,0 +170784311530,213,0 +170784311578,213,0 +170784311626,214,0 +170784311674,213,0 +170784311722,214,0 +170784311771,214,0 +170784311821,214,0 +170784311869,214,0 +170784311919,214,0 +170784311966,214,0 +170784312014,214,0 +170784312062,214,0 +170784312110,214,0 +170784312158,214,0 +170784312206,214,0 +170784312254,214,0 +170784312303,213,0 +170784312351,213,0 +170784312399,213,0 +170784312449,213,0 +170784312497,214,0 +170784312546,213,0 +170784312595,213,0 +170784312643,213,0 +170784312691,214,0 +170784312739,214,0 +170784312787,214,0 +170784312835,214,0 +170784312884,214,0 +170784312934,214,0 +170784312983,214,0 +170784313031,214,0 +170784313079,214,0 +170784313127,214,0 +170784313175,213,0 +170784313223,213,0 +170784313271,213,0 +170784313319,213,0 +170784313367,213,0 +170784313415,213,0 +170784313463,213,0 +170784313512,213,0 +170784313560,214,0 +170784313608,214,0 +170784313656,214,0 +170784313703,214,0 +170784313751,214,0 +170784313799,214,0 +170784313847,214,0 +170784313895,214,0 +170784313943,214,0 +170784313991,214,0 +170784314039,214,0 +170784314086,214,0 +170784314136,213,0 +170784314184,213,0 +170784314232,213,0 +170784314279,213,0 +170784314327,213,0 +170784314377,213,0 +170784314425,213,0 +170784314473,213,0 +170784314522,213,0 +170784314570,213,0 +170784314618,213,0 +170784314666,213,0 +170784314714,214,0 +170784314762,213,0 +170784314811,214,0 +170784314859,214,0 +170784314907,214,0 +170784314955,214,0 +170784315003,214,0 +170784315052,213,0 +170784315100,213,0 +170784315148,213,0 +170784315196,213,0 +170784315244,213,0 +170784315293,213,0 +170784315341,213,0 +170784315391,213,0 +170784315438,213,0 +170784315488,213,0 +170784315538,213,0 +170784315585,213,0 +170784315633,213,0 +170784315681,214,0 +170784315729,214,0 +170784315777,214,0 +170784315825,214,0 +170784315873,214,0 +170784315921,214,0 +170784315969,214,0 +170784316016,213,0 +170784316064,213,0 +170784316114,213,0 +170784316163,213,0 +170784316211,213,0 +170784316259,213,0 +170784316306,213,0 +170784316354,213,0 +170784316402,213,0 +170784316450,213,0 +170784316498,213,0 +170784316545,213,0 +170784316593,214,0 +170784316641,213,0 +170784316689,214,0 +170784316738,214,0 +170784316786,214,0 +170784316834,214,0 +170784316881,214,0 +170784316929,213,0 +170784316977,213,0 +170784317025,213,0 +170784317073,213,0 +170784317120,213,0 +170784317168,213,0 +170784317216,213,0 +170784317264,213,0 +170784317312,213,0 +170784317359,213,0 +170784317409,213,0 +170784317457,214,0 +170784317505,214,0 +170784317553,214,0 +170784317601,213,0 +170784317649,214,0 +170784317696,213,0 +170784317744,213,0 +170784317792,214,0 +170784317840,214,0 +170784317888,213,0 +170784317936,213,0 +170784317985,213,0 +170784318035,213,0 +170784318083,213,0 +170784318131,213,0 +170784318180,213,0 +170784318228,213,0 +170784318276,213,0 +170784318326,213,0 +170784318374,213,0 +170784318423,213,0 +170784318471,214,0 +170784318521,214,0 +170784318569,214,0 +170784318617,213,0 +170784318664,213,0 +170784318712,214,0 +170784318760,214,0 +170784318810,213,0 +170784318858,213,0 +170784318906,213,0 +170784318953,213,0 +170784319001,213,0 +170784319049,213,0 +170784319097,213,0 +170784319145,213,0 +170784319193,213,0 +170784319240,213,0 +170784319288,213,0 +170784319336,213,0 +170784319384,213,0 +170784319432,213,0 +170784319480,214,0 +170784319529,213,0 +170784319577,213,0 +170784319625,214,0 +170784319675,214,0 +170784319722,213,0 +170784319770,213,0 +170784319818,213,0 +170784319866,213,0 +170784319914,213,0 +170784319962,213,0 +170784320011,213,0 +170784320061,213,0 +170784320109,213,0 +170784320158,213,0 +170784320206,213,0 +170784320256,213,0 +170784320304,214,0 +170784320352,214,0 +170784320401,214,0 +170784320451,214,0 +170784320500,214,0 +170784320548,214,0 +170784320598,214,0 +170784320646,213,0 +170784320695,213,0 +170784320743,213,0 +170784320793,213,0 +170784320842,213,0 +170784320890,213,0 +170784320938,213,0 +170784320987,213,0 +170784321035,214,0 +170784321083,213,0 +170784321131,213,0 +170784321179,214,0 +170784321227,214,0 +170784321274,214,0 +170784321322,214,0 +170784321370,214,0 +170784321418,214,0 +170784321466,214,0 +170784321514,214,0 +170784321561,213,0 +170784321609,213,0 +170784321657,213,0 +170784321705,213,0 +170784321753,213,0 +170784321801,213,0 +170784321848,213,0 +170784321896,213,0 +170784321945,213,0 +170784321995,213,0 +170784322043,213,0 +170784322091,213,0 +170784322138,214,0 +170784322186,214,0 +170784322234,213,0 +170784322282,214,0 +170784322332,214,0 +170784322379,214,0 +170784322427,214,0 +170784322475,214,0 +170784322523,213,0 +170784322573,213,0 +170784322622,213,0 +170784322670,213,0 +170784322720,213,0 +170784322768,213,0 +170784322816,213,0 +170784322863,213,0 +170784322913,213,0 +170784322962,213,0 +170784323010,214,0 +170784323058,214,0 +170784323106,214,0 +170784323155,214,0 +170784323203,214,0 +170784323251,214,0 +170784323299,214,0 +170784323347,214,0 +170784323395,214,0 +170784323443,213,0 +170784323492,213,0 +170784323540,213,0 +170784323589,213,0 +170784323637,213,0 +170784323685,213,0 +170784323733,213,0 +170784323781,213,0 +170784323828,213,0 +170784323876,214,0 +170784323924,214,0 +170784323973,213,0 +170784324021,214,0 +170784324069,214,0 +170784324117,214,0 +170784324165,214,0 +170784324213,214,0 +170784324262,214,0 +170784324310,214,0 +170784324358,214,0 +170784324406,213,0 +170784324455,213,0 +170784324503,213,0 +170784324553,213,0 +170784324602,213,0 +170784324650,213,0 +170784324700,213,0 +170784324748,213,0 +170784324797,213,0 +170784324845,213,0 +170784324893,214,0 +170784324943,214,0 +170784324991,214,0 +170784325039,214,0 +170784325087,214,0 +170784325135,214,0 +170784325183,214,0 +170784325231,214,0 +170784325278,214,0 +170784325328,213,0 +170784325376,213,0 +170784325424,213,0 +170784325471,213,0 +170784325519,213,0 +170784325567,213,0 +170784325617,213,0 +170784325664,213,0 +170784325712,213,0 +170784325760,213,0 +170784325808,213,0 +170784325856,213,0 +170784325906,213,0 +170784325955,214,0 +170784326003,213,0 +170784326051,214,0 +170784326099,214,0 +170784326147,214,0 +170784326196,214,0 +170784326244,213,0 +170784326292,213,0 +170784326340,213,0 +170784326388,213,0 +170784326437,213,0 +170784326485,213,0 +170784326533,213,0 +170784326581,213,0 +170784326630,213,0 +170784326678,213,0 +170784326726,213,0 +170784326776,213,0 +170784326825,213,0 +170784326875,213,0 +170784326924,213,0 +170784326972,214,0 +170784327021,213,0 +170784327069,213,0 +170784327117,214,0 +170784327167,213,0 +170784327215,213,0 +170784327263,213,0 +170784327312,213,0 +170784327360,213,0 +170784327408,213,0 +170784327456,213,0 +170784327504,213,0 +170784327554,213,0 +170784327602,213,0 +170784327649,213,0 +170784327699,213,0 +170784327747,213,0 +170784327797,214,0 +170784327844,214,0 +170784327894,214,0 +170784327942,214,0 +170784327992,214,0 +170784328040,214,0 +170784328088,213,0 +170784328137,213,0 +170784328187,213,0 +170784328236,213,0 +170784328284,213,0 +170784328332,213,0 +170784328380,213,0 +170784328428,213,0 +170784328476,213,0 +170784328524,213,0 +170784328571,213,0 +170784328621,213,0 +170784328670,213,0 +170784328718,214,0 +170784328766,214,0 +170784328814,214,0 +170784328862,214,0 +170784328910,214,0 +170784328958,214,0 +170784329005,214,0 +170784329053,213,0 +170784329101,213,0 +170784329149,213,0 +170784329197,213,0 +170784329247,213,0 +170784329295,213,0 +170784329342,213,0 +170784329390,213,0 +170784329440,213,0 +170784329488,213,0 +170784329535,213,0 +170784329583,213,0 +170784329631,213,0 +170784329681,213,0 +170784329728,214,0 +170784329778,214,0 +170784329826,214,0 +170784329874,214,0 +170784329921,214,0 +170784329969,213,0 +170784330017,213,0 +170784330065,212,0 +170784330113,213,0 +170784330161,213,0 +170784330210,213,0 +170784330260,213,0 +170784330308,213,0 +170784330356,213,0 +170784330403,213,0 +170784330451,213,0 +170784330499,213,0 +170784330548,213,0 +170784330596,213,0 +170784330644,213,0 +170784330692,213,0 +170784330740,213,0 +170784330787,213,0 +170784330835,213,0 +170784330883,213,0 +170784330931,213,0 +170784330979,213,0 +170784331027,213,0 +170784331075,213,0 +170784331124,213,0 +170784331172,212,0 +170784331220,213,0 +170784331268,213,0 +170784331315,213,0 +170784331365,213,0 +170784331413,213,0 +170784331461,213,0 +170784331510,213,0 +170784331560,213,0 +170784331608,213,0 +170784331657,213,0 +170784331707,213,0 +170784331756,214,0 +170784331804,213,0 +170784331852,213,0 +170784331900,213,0 +170784331948,213,0 +170784331996,213,0 +170784332043,213,0 +170784332093,213,0 +170784332141,213,0 +170784332188,213,0 +170784332236,213,0 +170784332286,213,0 +170784332335,213,0 +170784332383,213,0 +170784332433,213,0 +170784332481,214,0 +170784332529,213,0 +170784332577,214,0 +170784332625,214,0 +170784332674,214,0 +170784332722,214,0 +170784332772,213,0 +170784332820,213,0 +170784332869,213,0 +170784332917,213,0 +170784332967,213,0 +170784333015,213,0 +170784333063,213,0 +170784333111,213,0 +170784333160,213,0 +170784333208,213,0 +170784333256,214,0 +170784333304,214,0 +170784333353,214,0 +170784333403,214,0 +170784333451,214,0 +170784333499,214,0 +170784333547,214,0 +170784333596,214,0 +170784333644,214,0 +170784333694,213,0 +170784333742,213,0 +170784333790,213,0 +170784333839,213,0 +170784333887,213,0 +170784333935,213,0 +170784333985,213,0 +170784334034,214,0 +170784334084,214,0 +170784334132,214,0 +170784334181,214,0 +170784334229,214,0 +170784334279,214,0 +170784334326,214,0 +170784334376,214,0 +170784334424,214,0 +170784334472,214,0 +170784334520,214,0 +170784334568,214,0 +170784334616,213,0 +170784334664,213,0 +170784334713,213,0 +170784334761,213,0 +170784334809,213,0 +170784334857,213,0 +170784334905,213,0 +170784334954,213,0 +170784335002,213,0 +170784335050,213,0 +170784335098,214,0 +170784335147,214,0 +170784335195,214,0 +170784335243,214,0 +170784335291,214,0 +170784335339,214,0 +170784335387,214,0 +170784335435,214,0 +170784335483,214,0 +170784335531,213,0 +170784335579,213,0 +170784335627,213,0 +170784335675,213,0 +170784335723,213,0 +170784335771,213,0 +170784335820,213,0 +170784335868,213,0 +170784335916,213,0 +170784335964,213,0 +170784336012,214,0 +170784336059,214,0 +170784336107,214,0 +170784336155,213,0 +170784336203,214,0 +170784336251,214,0 +170784336299,214,0 +170784336347,214,0 +170784336394,214,0 +170784336442,214,0 +170784336492,213,0 +170784336539,213,0 +170784336587,213,0 +170784336635,213,0 +170784336683,213,0 +170784336732,213,0 +170784336780,213,0 +170784336828,213,0 +170784336876,213,0 +170784336924,214,0 +170784336972,213,0 +170784337020,214,0 +170784337068,214,0 +170784337115,214,0 +170784337163,214,0 +170784337211,214,0 +170784337259,214,0 +170784337307,214,0 +170784337355,214,0 +170784337402,213,0 +170784337452,213,0 +170784337500,213,0 +170784337547,213,0 +170784337597,213,0 +170784337645,213,0 +170784337693,213,0 +170784337740,213,0 +170784337788,214,0 +170784337836,214,0 +170784337884,214,0 +170784337932,213,0 +170784337980,214,0 +170784338028,214,0 +170784338075,214,0 +170784338123,214,0 +170784338171,214,0 +170784338219,214,0 +170784338267,214,0 +170784338315,213,0 +170784338363,213,0 +170784338412,213,0 +170784338460,213,0 +170784338508,213,0 +170784338556,213,0 +170784338604,213,0 +170784338651,213,0 +170784338699,214,0 +170784338747,213,0 +170784338795,214,0 +170784338843,214,0 +170784338892,214,0 +170784338941,214,0 +170784338989,214,0 +170784339037,214,0 +170784339085,214,0 +170784339133,214,0 +170784339180,214,0 +170784339230,213,0 +170784339278,213,0 +170784339326,213,0 +170784339373,213,0 +170784339421,213,0 +170784339469,213,0 +170784339517,213,0 +170784339565,213,0 +170784339613,213,0 +170784339660,213,0 +170784339708,214,0 +170784339756,214,0 +170784339804,214,0 +170784339852,214,0 +170784339900,214,0 +170784339948,214,0 +170784339995,214,0 +170784340043,214,0 +170784340091,214,0 +170784340139,214,0 +170784340187,213,0 +170784340234,213,0 +170784340282,213,0 +170784340330,213,0 +170784340378,213,0 +170784340427,213,0 +170784340475,213,0 +170784340523,213,0 +170784340571,213,0 +170784340619,213,0 +170784340666,214,0 +170784340714,214,0 +170784340762,214,0 +170784340810,214,0 +170784340858,214,0 +170784340905,214,0 +170784340953,214,0 +170784341001,214,0 +170784341049,214,0 +170784341097,213,0 +170784341145,213,0 +170784341192,213,0 +170784341240,213,0 +170784341288,213,0 +170784341336,213,0 +170784341384,213,0 +170784341433,213,0 +170784341481,213,0 +170784341529,213,0 +170784341578,213,0 +170784341626,213,0 +170784341674,213,0 +170784341723,213,0 +170784341771,214,0 +170784341820,213,0 +170784341868,214,0 +170784341916,214,0 +170784341964,214,0 +170784342012,214,0 +170784342060,213,0 +170784342107,213,0 +170784342155,212,0 +170784342203,213,0 +170784342251,213,0 +170784342300,213,0 +170784342348,213,0 +170784342396,213,0 +170784342445,213,0 +170784342495,213,0 +170784342542,213,0 +170784342592,213,0 +170784342640,213,0 +170784342687,213,0 +170784342735,214,0 +170784342783,214,0 +170784342831,214,0 +170784342879,214,0 +170784342927,214,0 +170784342975,213,0 +170784343022,213,0 +170784343072,213,0 +170784343121,213,0 +170784343169,213,0 +170784343217,213,0 +170784343265,213,0 +170784343313,213,0 +170784343361,213,0 +170784343409,213,0 +170784343457,213,0 +170784343506,213,0 +170784343554,213,0 +170784343604,214,0 +170784343651,214,0 +170784343699,214,0 +170784343749,214,0 +170784343797,214,0 +170784343844,214,0 +170784343892,213,0 +170784343940,213,0 +170784343988,213,0 +170784344036,213,0 +170784344084,213,0 +170784344132,213,0 +170784344181,213,0 +170784344229,213,0 +170784344277,213,0 +170784344325,213,0 +170784344372,213,0 +170784344420,213,0 +170784344468,213,0 +170784344516,214,0 +170784344564,213,0 +170784344612,213,0 +170784344660,214,0 +170784344708,214,0 +170784344756,214,0 +170784344804,213,0 +170784344851,213,0 +170784344900,213,0 +170784344948,213,0 +170784344996,213,0 +170784345045,213,0 +170784345093,213,0 +170784345143,213,0 +170784345192,213,0 +170784345240,213,0 +170784345288,214,0 +170784345336,213,0 +170784345385,214,0 +170784345433,213,0 +170784345481,214,0 +170784345529,214,0 +170784345577,214,0 +170784345625,214,0 +170784345674,214,0 +170784345722,214,0 +170784345771,213,0 +170784345819,213,0 +170784345869,213,0 +170784345917,213,0 +170784345965,213,0 +170784346014,213,0 +170784346063,213,0 +170784346111,213,0 +170784346159,213,0 +170784346209,213,0 +170784346257,213,0 +170784346305,213,0 +170784346353,214,0 +170784346402,214,0 +170784346450,214,0 +170784346498,214,0 +170784346546,214,0 +170784346596,214,0 +170784346643,214,0 +170784346693,213,0 +170784346741,213,0 +170784346789,213,0 +170784346838,213,0 +170784346886,213,0 +170784346935,213,0 +170784346983,213,0 +170784347031,213,0 +170784347079,213,0 +170784347127,213,0 +170784347177,213,0 +170784347225,213,0 +170784347273,214,0 +170784347321,213,0 +170784347368,214,0 +170784347416,214,0 +170784347466,214,0 +170784347513,214,0 +170784347561,214,0 +170784347609,213,0 +170784347657,213,0 +170784347705,213,0 +170784347753,213,0 +170784347801,213,0 +170784347850,213,0 +170784347898,213,0 +170784347946,213,0 +170784347994,213,0 +170784348043,213,0 +170784348091,213,0 +170784348139,213,0 +170784348187,213,0 +170784348237,213,0 +170784348286,214,0 +170784348334,214,0 +170784348382,214,0 +170784348430,214,0 +170784348478,214,0 +170784348527,214,0 +170784348575,213,0 +170784348623,212,0 +170784348673,212,0 +170784348722,213,0 +170784348770,213,0 +170784348818,213,0 +170784348866,213,0 +170784348915,213,0 +170784348963,213,0 +170784349011,213,0 +170784349059,213,0 +170784349109,213,0 +170784349158,213,0 +170784349206,214,0 +170784349254,213,0 +170784349304,214,0 +170784349352,214,0 +170784349400,213,0 +170784349449,214,0 +170784349497,213,0 +170784349547,213,0 +170784349594,213,0 +170784349642,213,0 +170784349690,213,0 +170784349738,213,0 +170784349788,213,0 +170784349837,213,0 +170784349887,213,0 +170784349936,213,0 +170784349984,213,0 +170784350034,213,0 +170784350082,213,0 +170784350130,213,0 +170784350178,213,0 +170784350226,213,0 +170784350274,213,0 +170784350322,214,0 +170784350371,214,0 +170784350420,213,0 +170784350470,212,0 +170784350520,213,0 +170784350568,213,0 +170784350617,213,0 +170784350667,213,0 +170784350714,213,0 +170784350762,213,0 +170784350810,213,0 +170784350858,213,0 +170784350906,213,0 +170784350954,213,0 +170784351004,213,0 +170784351052,213,0 +170784351100,213,0 +170784351148,214,0 +170784351196,213,0 +170784351245,213,0 +170784351295,214,0 +170784351344,213,0 +170784351394,213,0 +170784351442,212,0 +170784351490,212,0 +170784351538,213,0 +170784351587,213,0 +170784351637,213,0 +170784351686,213,0 +170784351736,213,0 +170784351785,213,0 +170784351833,213,0 +170784351881,213,0 +170784351929,213,0 +170784351979,214,0 +170784352027,214,0 +170784352076,214,0 +170784352126,214,0 +170784352174,214,0 +170784352223,214,0 +170784352271,213,0 +170784352321,213,0 +170784352370,213,0 +170784352420,213,0 +170784352468,213,0 +170784352516,213,0 +170784352564,213,0 +170784352613,213,0 +170784352661,213,0 +170784352711,213,0 +170784352759,213,0 +170784352807,213,0 +170784352856,213,0 +170784352904,213,0 +170784352952,213,0 +170784353000,214,0 +170784353048,214,0 +170784353096,214,0 +170784353144,214,0 +170784353193,213,0 +170784353241,212,0 +170784353291,213,0 +170784353339,213,0 +170784353388,213,0 +170784353436,213,0 +170784353484,213,0 +170784353532,213,0 +170784353580,213,0 +170784353629,213,0 +170784353679,213,0 +170784353727,213,0 +170784353777,213,0 +170784353826,213,0 +170784353874,214,0 +170784353922,213,0 +170784353970,214,0 +170784354018,214,0 +170784354067,214,0 +170784354117,214,0 +170784354165,213,0 +170784354213,213,0 +170784354261,213,0 +170784354310,213,0 +170784354359,213,0 +170784354407,213,0 +170784354455,213,0 +170784354503,213,0 +170784354551,213,0 +170784354599,213,0 +170784354647,213,0 +170784354695,213,0 +170784354743,214,0 +170784354791,214,0 +170784354839,214,0 +170784354887,214,0 +170784354936,214,0 +170784354986,214,0 +170784355034,214,0 +170784355083,213,0 +170784355131,213,0 +170784355179,213,0 +170784355229,213,0 +170784355278,213,0 +170784355328,213,0 +170784355378,213,0 +170784355425,213,0 +170784355473,214,0 +170784355523,214,0 +170784355573,214,0 +170784355622,214,0 +170784355672,214,0 +170784355721,214,0 +170784355769,214,0 +170784355819,214,0 +170784355868,214,0 +170784355918,214,0 +170784355967,213,0 +170784356015,213,0 +170784356063,213,0 +170784356111,213,0 +170784356159,213,0 +170784356207,213,0 +170784356255,214,0 +170784356303,214,0 +170784356351,214,0 +170784356400,214,0 +170784356448,214,0 +170784356496,214,0 +170784356544,214,0 +170784356592,214,0 +170784356640,214,0 +170784356690,214,0 +170784356739,214,0 +170784356789,214,0 +170784356837,214,0 +170784356886,214,0 +170784356936,214,0 +170784356985,213,0 +170784357035,213,0 +170784357083,214,0 +170784357131,214,0 +170784357179,213,0 +170784357228,214,0 +170784357276,214,0 +170784357324,214,0 +170784357372,214,0 +170784357422,214,0 +170784357471,214,0 +170784357519,214,0 +170784357569,214,0 +170784357618,214,0 +170784357666,214,0 +170784357714,214,0 +170784357762,214,0 +170784357811,214,0 +170784357859,213,0 +170784357907,213,0 +170784357955,213,0 +170784358003,213,0 +170784358053,213,0 +170784358101,213,0 +170784358149,213,0 +170784358197,213,0 +170784358246,213,0 +170784358296,213,0 +170784358344,213,0 +170784358392,214,0 +170784358441,214,0 +170784358489,214,0 +170784358537,214,0 +170784358586,214,0 +170784358634,214,0 +170784358682,214,0 +170784358730,214,0 +170784358778,213,0 +170784358826,213,0 +170784358876,213,0 +170784358923,213,0 +170784358973,213,0 +170784359022,213,0 +170784359070,213,0 +170784359120,213,0 +170784359168,213,0 +170784359217,213,0 +170784359265,213,0 +170784359315,213,0 +170784359363,213,0 +170784359411,213,0 +170784359458,213,0 +170784359506,213,0 +170784359554,213,0 +170784359602,214,0 +170784359652,214,0 +170784359700,214,0 +170784359748,213,0 +170784359796,213,0 +170784359844,213,0 +170784359892,213,0 +170784359940,213,0 +170784359989,212,0 diff --git a/laser_value/0214-03.csv b/laser_value/0214-03.csv new file mode 100644 index 0000000..3be1861 --- /dev/null +++ b/laser_value/0214-03.csv @@ -0,0 +1,7441 @@ +timestamp,laser_value,event +170784360038,213,0 +170784360087,213,0 +170784360135,213,0 +170784360183,213,0 +170784360232,213,0 +170784360282,213,0 +170784360331,213,0 +170784360379,213,0 +170784360427,213,0 +170784360475,214,0 +170784360523,214,0 +170784360571,214,0 +170784360620,214,0 +170784360668,213,0 +170784360716,213,0 +170784360764,213,0 +170784360811,213,0 +170784360859,213,0 +170784360907,213,0 +170784360955,213,0 +170784361003,213,0 +170784361051,213,0 +170784361098,213,0 +170784361146,213,0 +170784361194,213,0 +170784361242,213,0 +170784361290,213,0 +170784361338,214,0 +170784361385,214,0 +170784361433,213,0 +170784361481,214,0 +170784361529,214,0 +170784361577,213,0 +170784361625,213,0 +170784361673,213,0 +170784361721,213,0 +170784361769,212,0 +170784361818,213,0 +170784361866,213,0 +170784361914,213,0 +170784361962,213,0 +170784362010,213,0 +170784362059,213,0 +170784362107,213,0 +170784362155,213,0 +170784362203,214,0 +170784362252,214,0 +170784362300,213,0 +170784362348,214,0 +170784362398,214,0 +170784362445,214,0 +170784362493,213,0 +170784362541,213,0 +170784362591,213,0 +170784362638,213,0 +170784362686,213,0 +170784362736,213,0 +170784362784,213,0 +170784362832,213,0 +170784362880,213,0 +170784362927,213,0 +170784362977,213,0 +170784363025,213,0 +170784363072,213,0 +170784363120,214,0 +170784363170,214,0 +170784363218,213,0 +170784363267,214,0 +170784363315,214,0 +170784363365,214,0 +170784363414,214,0 +170784363464,213,0 +170784363512,213,0 +170784363560,213,0 +170784363608,213,0 +170784363656,213,0 +170784363704,213,0 +170784363752,213,0 +170784363801,213,0 +170784363849,213,0 +170784363897,213,0 +170784363945,213,0 +170784363993,213,0 +170784364041,213,0 +170784364090,214,0 +170784364140,213,0 +170784364187,214,0 +170784364235,214,0 +170784364285,214,0 +170784364333,214,0 +170784364381,213,0 +170784364429,213,0 +170784364477,213,0 +170784364524,213,0 +170784364574,213,0 +170784364622,213,0 +170784364670,213,0 +170784364719,213,0 +170784364767,213,0 +170784364815,213,0 +170784364863,213,0 +170784364911,213,0 +170784364959,214,0 +170784365007,214,0 +170784365055,214,0 +170784365103,214,0 +170784365152,214,0 +170784365200,214,0 +170784365248,214,0 +170784365296,213,0 +170784365344,213,0 +170784365392,213,0 +170784365439,213,0 +170784365487,213,0 +170784365535,213,0 +170784365583,213,0 +170784365631,213,0 +170784365681,213,0 +170784365729,213,0 +170784365777,213,0 +170784365825,214,0 +170784365872,214,0 +170784365920,214,0 +170784365968,214,0 +170784366016,214,0 +170784366064,214,0 +170784366112,214,0 +170784366160,214,0 +170784366208,213,0 +170784366255,213,0 +170784366303,213,0 +170784366353,213,0 +170784366401,213,0 +170784366450,213,0 +170784366498,213,0 +170784366546,213,0 +170784366593,213,0 +170784366641,214,0 +170784366689,213,0 +170784366737,214,0 +170784366785,213,0 +170784366834,214,0 +170784366882,214,0 +170784366930,214,0 +170784366978,214,0 +170784367026,214,0 +170784367073,214,0 +170784367123,214,0 +170784367172,213,0 +170784367220,213,0 +170784367268,213,0 +170784367316,213,0 +170784367366,213,0 +170784367414,213,0 +170784367462,213,0 +170784367510,213,0 +170784367558,213,0 +170784367606,213,0 +170784367655,213,0 +170784367703,214,0 +170784367751,214,0 +170784367799,214,0 +170784367847,214,0 +170784367896,214,0 +170784367944,214,0 +170784367992,214,0 +170784368040,214,0 +170784368090,213,0 +170784368138,213,0 +170784368185,213,0 +170784368235,213,0 +170784368283,213,0 +170784368332,213,0 +170784368382,213,0 +170784368430,213,0 +170784368479,213,0 +170784368529,213,0 +170784368577,213,0 +170784368625,213,0 +170784368673,214,0 +170784368721,214,0 +170784368768,214,0 +170784368816,214,0 +170784368864,214,0 +170784368912,214,0 +170784368962,214,0 +170784369010,213,0 +170784369058,212,0 +170784369107,213,0 +170784369155,213,0 +170784369203,213,0 +170784369251,213,0 +170784369299,213,0 +170784369348,213,0 +170784369396,213,0 +170784369444,213,0 +170784369492,214,0 +170784369540,213,0 +170784369589,214,0 +170784369639,214,0 +170784369687,214,0 +170784369736,213,0 +170784369784,214,0 +170784369832,214,0 +170784369880,214,0 +170784369928,213,0 +170784369976,213,0 +170784370024,213,0 +170784370072,213,0 +170784370120,213,0 +170784370169,213,0 +170784370217,213,0 +170784370265,213,0 +170784370315,213,0 +170784370363,213,0 +170784370411,213,0 +170784370458,213,0 +170784370506,214,0 +170784370554,213,0 +170784370602,214,0 +170784370650,214,0 +170784370697,214,0 +170784370745,214,0 +170784370793,214,0 +170784370841,214,0 +170784370889,213,0 +170784370937,213,0 +170784370985,213,0 +170784371033,213,0 +170784371080,213,0 +170784371128,213,0 +170784371176,213,0 +170784371226,213,0 +170784371274,213,0 +170784371322,213,0 +170784371369,213,0 +170784371419,213,0 +170784371467,214,0 +170784371516,214,0 +170784371566,214,0 +170784371615,214,0 +170784371665,214,0 +170784371713,214,0 +170784371762,214,0 +170784371812,213,0 +170784371860,213,0 +170784371908,213,0 +170784371955,213,0 +170784372005,213,0 +170784372053,213,0 +170784372101,213,0 +170784372149,213,0 +170784372197,213,0 +170784372245,213,0 +170784372293,213,0 +170784372341,213,0 +170784372388,214,0 +170784372436,213,0 +170784372484,214,0 +170784372532,214,0 +170784372580,214,0 +170784372628,214,0 +170784372675,214,0 +170784372723,213,0 +170784372771,213,0 +170784372819,213,0 +170784372867,213,0 +170784372915,213,0 +170784372963,213,0 +170784373010,213,0 +170784373058,213,0 +170784373108,213,0 +170784373157,213,0 +170784373205,213,0 +170784373253,213,0 +170784373301,213,0 +170784373350,214,0 +170784373400,213,0 +170784373449,213,0 +170784373498,214,0 +170784373548,214,0 +170784373597,214,0 +170784373645,213,0 +170784373695,212,0 +170784373744,212,0 +170784373792,212,0 +170784373840,212,0 +170784373889,213,0 +170784373937,213,0 +170784373985,213,0 +170784374033,213,0 +170784374082,213,0 +170784374130,213,0 +170784374178,213,0 +170784374226,213,0 +170784374273,213,0 +170784374321,213,0 +170784374369,213,0 +170784374417,213,0 +170784374465,213,0 +170784374514,214,0 +170784374562,213,0 +170784374610,212,0 +170784374658,212,0 +170784374706,212,0 +170784374753,212,0 +170784374801,212,0 +170784374851,212,0 +170784374900,213,0 +170784374948,213,0 +170784374997,213,0 +170784375045,213,0 +170784375095,213,0 +170784375144,213,0 +170784375192,213,0 +170784375242,213,0 +170784375290,213,0 +170784375337,213,0 +170784375385,214,0 +170784375435,213,0 +170784375484,213,0 +170784375534,212,0 +170784375582,212,0 +170784375631,212,0 +170784375679,213,0 +170784375727,213,0 +170784375775,212,0 +170784375823,213,0 +170784375871,213,0 +170784375919,213,0 +170784375967,213,0 +170784376014,213,0 +170784376062,213,0 +170784376110,213,0 +170784376160,213,0 +170784376209,213,0 +170784376259,213,0 +170784376306,213,0 +170784376354,213,0 +170784376402,214,0 +170784376450,213,0 +170784376498,213,0 +170784376547,212,0 +170784376595,212,0 +170784376643,212,0 +170784376693,212,0 +170784376741,213,0 +170784376789,213,0 +170784376836,213,0 +170784376884,213,0 +170784376932,213,0 +170784376980,213,0 +170784377030,213,0 +170784377079,213,0 +170784377127,213,0 +170784377175,213,0 +170784377223,213,0 +170784377271,213,0 +170784377319,214,0 +170784377367,213,0 +170784377416,213,0 +170784377464,213,0 +170784377512,213,0 +170784377562,213,0 +170784377610,213,0 +170784377658,213,0 +170784377707,213,0 +170784377755,213,0 +170784377803,213,0 +170784377853,213,0 +170784377902,214,0 +170784377952,214,0 +170784378001,214,0 +170784378049,214,0 +170784378097,214,0 +170784378147,214,0 +170784378195,214,0 +170784378244,214,0 +170784378294,213,0 +170784378342,213,0 +170784378390,213,0 +170784378439,213,0 +170784378487,213,0 +170784378535,213,0 +170784378583,213,0 +170784378633,213,0 +170784378681,213,0 +170784378730,214,0 +170784378780,214,0 +170784378829,214,0 +170784378877,214,0 +170784378925,214,0 +170784378973,214,0 +170784379021,214,0 +170784379070,214,0 +170784379118,214,0 +170784379168,213,0 +170784379216,213,0 +170784379264,213,0 +170784379312,213,0 +170784379360,213,0 +170784379407,213,0 +170784379455,213,0 +170784379503,213,0 +170784379551,213,0 +170784379599,213,0 +170784379646,213,0 +170784379694,214,0 +170784379744,213,0 +170784379793,214,0 +170784379841,214,0 +170784379889,214,0 +170784379937,214,0 +170784379985,214,0 +170784380033,214,0 +170784380082,214,0 +170784380132,213,0 +170784380181,213,0 +170784380229,212,0 +170784380277,212,0 +170784380325,212,0 +170784380375,213,0 +170784380422,213,0 +170784380470,213,0 +170784380518,213,0 +170784380566,213,0 +170784380614,213,0 +170784380662,213,0 +170784380710,213,0 +170784380758,213,0 +170784380806,213,0 +170784380853,213,0 +170784380901,214,0 +170784380951,213,0 +170784381000,214,0 +170784381050,213,0 +170784381099,212,0 +170784381149,213,0 +170784381198,213,0 +170784381246,213,0 +170784381294,213,0 +170784381343,213,0 +170784381393,213,0 +170784381442,213,0 +170784381490,213,0 +170784381540,213,0 +170784381588,213,0 +170784381636,213,0 +170784381683,213,0 +170784381731,213,0 +170784381779,214,0 +170784381827,214,0 +170784381875,213,0 +170784381923,213,0 +170784381972,213,0 +170784382022,213,0 +170784382071,213,0 +170784382119,213,0 +170784382167,213,0 +170784382215,213,0 +170784382263,213,0 +170784382312,213,0 +170784382360,213,0 +170784382409,213,0 +170784382457,213,0 +170784382505,213,0 +170784382555,213,0 +170784382604,214,0 +170784382652,213,0 +170784382702,213,0 +170784382750,214,0 +170784382798,214,0 +170784382845,214,0 +170784382895,213,0 +170784382943,212,0 +170784382991,212,0 +170784383039,213,0 +170784383087,213,0 +170784383134,213,0 +170784383182,213,0 +170784383230,213,0 +170784383278,213,0 +170784383328,213,0 +170784383376,213,0 +170784383424,213,0 +170784383472,214,0 +170784383519,213,0 +170784383567,213,0 +170784383615,214,0 +170784383663,214,0 +170784383711,214,0 +170784383759,214,0 +170784383807,214,0 +170784383854,213,0 +170784383902,213,0 +170784383952,213,0 +170784383999,213,0 +170784384047,213,0 +170784384095,213,0 +170784384143,213,0 +170784384191,213,0 +170784384239,213,0 +170784384286,213,0 +170784384334,213,0 +170784384382,213,0 +170784384430,213,0 +170784384478,214,0 +170784384526,213,0 +170784384576,214,0 +170784384625,214,0 +170784384673,214,0 +170784384723,214,0 +170784384771,213,0 +170784384819,213,0 +170784384867,213,0 +170784384914,213,0 +170784384962,213,0 +170784385012,213,0 +170784385061,213,0 +170784385111,213,0 +170784385159,213,0 +170784385206,213,0 +170784385254,213,0 +170784385302,213,0 +170784385350,213,0 +170784385400,213,0 +170784385448,213,0 +170784385497,213,0 +170784385545,213,0 +170784385595,213,0 +170784385643,214,0 +170784385691,214,0 +170784385739,213,0 +170784385788,213,0 +170784385838,213,0 +170784385886,213,0 +170784385934,213,0 +170784385982,213,0 +170784386031,213,0 +170784386079,213,0 +170784386127,213,0 +170784386175,213,0 +170784386223,213,0 +170784386271,213,0 +170784386318,213,0 +170784386366,214,0 +170784386414,214,0 +170784386464,214,0 +170784386513,214,0 +170784386563,214,0 +170784386611,214,0 +170784386660,213,0 +170784386708,212,0 +170784386756,213,0 +170784386806,213,0 +170784386854,213,0 +170784386902,213,0 +170784386950,213,0 +170784386998,213,0 +170784387047,213,0 +170784387097,213,0 +170784387145,213,0 +170784387194,213,0 +170784387244,214,0 +170784387292,213,0 +170784387340,214,0 +170784387388,213,0 +170784387436,214,0 +170784387484,214,0 +170784387531,214,0 +170784387579,213,0 +170784387629,212,0 +170784387677,212,0 +170784387726,213,0 +170784387774,213,0 +170784387822,213,0 +170784387870,213,0 +170784387918,213,0 +170784387966,213,0 +170784388014,213,0 +170784388061,213,0 +170784388111,213,0 +170784388159,213,0 +170784388207,213,0 +170784388255,214,0 +170784388304,213,0 +170784388352,214,0 +170784388400,213,0 +170784388448,214,0 +170784388497,213,0 +170784388547,212,0 +170784388595,213,0 +170784388644,213,0 +170784388692,213,0 +170784388740,213,0 +170784388788,213,0 +170784388836,213,0 +170784388884,213,0 +170784388932,213,0 +170784388980,213,0 +170784389028,213,0 +170784389075,213,0 +170784389123,213,0 +170784389171,213,0 +170784389219,214,0 +170784389267,213,0 +170784389315,214,0 +170784389364,213,0 +170784389412,213,0 +170784389460,213,0 +170784389508,213,0 +170784389556,213,0 +170784389604,213,0 +170784389652,213,0 +170784389700,213,0 +170784389748,213,0 +170784389796,213,0 +170784389845,213,0 +170784389893,213,0 +170784389943,213,0 +170784389991,214,0 +170784390040,214,0 +170784390088,213,0 +170784390136,214,0 +170784390184,214,0 +170784390233,214,0 +170784390281,214,0 +170784390329,213,0 +170784390377,213,0 +170784390426,213,0 +170784390474,213,0 +170784390523,213,0 +170784390571,213,0 +170784390619,213,0 +170784390667,213,0 +170784390715,213,0 +170784390764,213,0 +170784390812,213,0 +170784390860,214,0 +170784390908,213,0 +170784390956,214,0 +170784391004,214,0 +170784391054,214,0 +170784391103,214,0 +170784391151,214,0 +170784391199,214,0 +170784391247,214,0 +170784391297,213,0 +170784391346,213,0 +170784391396,213,0 +170784391444,213,0 +170784391492,213,0 +170784391540,213,0 +170784391587,213,0 +170784391637,213,0 +170784391686,213,0 +170784391736,213,0 +170784391785,213,0 +170784391833,213,0 +170784391881,213,0 +170784391929,213,0 +170784391977,213,0 +170784392025,214,0 +170784392073,213,0 +170784392122,214,0 +170784392170,213,0 +170784392218,213,0 +170784392266,212,0 +170784392313,212,0 +170784392361,213,0 +170784392409,213,0 +170784392457,213,0 +170784392505,213,0 +170784392554,213,0 +170784392602,213,0 +170784392650,213,0 +170784392697,213,0 +170784392745,213,0 +170784392793,213,0 +170784392841,213,0 +170784392889,213,0 +170784392937,214,0 +170784392984,213,0 +170784393032,213,0 +170784393082,214,0 +170784393130,213,0 +170784393178,212,0 +170784393225,212,0 +170784393273,212,0 +170784393321,213,0 +170784393369,213,0 +170784393417,213,0 +170784393465,213,0 +170784393513,213,0 +170784393561,213,0 +170784393609,213,0 +170784393656,213,0 +170784393704,213,0 +170784393754,213,0 +170784393802,213,0 +170784393850,213,0 +170784393898,213,0 +170784393946,214,0 +170784393993,214,0 +170784394041,213,0 +170784394089,212,0 +170784394137,213,0 +170784394185,213,0 +170784394233,213,0 +170784394280,213,0 +170784394328,213,0 +170784394376,213,0 +170784394424,213,0 +170784394472,213,0 +170784394519,213,0 +170784394567,213,0 +170784394615,213,0 +170784394663,213,0 +170784394711,213,0 +170784394759,213,0 +170784394808,214,0 +170784394856,213,0 +170784394905,214,0 +170784394953,214,0 +170784395001,213,0 +170784395049,213,0 +170784395098,213,0 +170784395146,213,0 +170784395194,213,0 +170784395242,213,0 +170784395290,213,0 +170784395338,213,0 +170784395386,213,0 +170784395435,213,0 +170784395483,213,0 +170784395531,213,0 +170784395579,213,0 +170784395627,213,0 +170784395676,213,0 +170784395724,213,0 +170784395772,214,0 +170784395822,214,0 +170784395870,213,0 +170784395918,213,0 +170784395967,213,0 +170784396015,213,0 +170784396063,213,0 +170784396111,213,0 +170784396159,213,0 +170784396207,213,0 +170784396255,213,0 +170784396304,213,0 +170784396352,213,0 +170784396401,213,0 +170784396449,213,0 +170784396497,213,0 +170784396546,213,0 +170784396594,214,0 +170784396642,213,0 +170784396690,214,0 +170784396738,214,0 +170784396787,213,0 +170784396835,213,0 +170784396883,213,0 +170784396931,213,0 +170784396978,213,0 +170784397026,213,0 +170784397074,213,0 +170784397122,213,0 +170784397170,213,0 +170784397218,213,0 +170784397265,213,0 +170784397313,213,0 +170784397361,214,0 +170784397409,214,0 +170784397457,214,0 +170784397507,214,0 +170784397556,214,0 +170784397604,214,0 +170784397652,214,0 +170784397700,214,0 +170784397748,213,0 +170784397796,213,0 +170784397844,213,0 +170784397892,213,0 +170784397941,213,0 +170784397989,213,0 +170784398039,213,0 +170784398087,213,0 +170784398135,213,0 +170784398182,213,0 +170784398230,213,0 +170784398280,213,0 +170784398328,213,0 +170784398376,214,0 +170784398424,214,0 +170784398473,214,0 +170784398521,214,0 +170784398571,214,0 +170784398619,214,0 +170784398667,213,0 +170784398715,213,0 +170784398764,213,0 +170784398812,213,0 +170784398861,213,0 +170784398909,213,0 +170784398957,213,0 +170784399007,213,0 +170784399055,214,0 +170784399104,213,0 +170784399154,214,0 +170784399203,214,0 +170784399251,214,0 +170784399299,214,0 +170784399347,214,0 +170784399395,214,0 +170784399443,214,0 +170784399491,214,0 +170784399539,213,0 +170784399589,213,0 +170784399638,213,0 +170784399686,213,0 +170784399734,213,0 +170784399783,213,0 +170784399833,213,0 +170784399881,213,0 +170784399929,213,0 +170784399978,214,0 +170784400026,213,0 +170784400074,214,0 +170784400122,214,0 +170784400170,213,0 +170784400218,214,0 +170784400268,214,0 +170784400316,214,0 +170784400365,214,0 +170784400413,214,0 +170784400461,214,0 +170784400510,213,0 +170784400558,213,0 +170784400606,213,0 +170784400654,213,0 +170784400702,213,0 +170784400750,213,0 +170784400798,213,0 +170784400847,213,0 +170784400895,214,0 +170784400943,213,0 +170784400991,213,0 +170784401039,214,0 +170784401087,214,0 +170784401137,214,0 +170784401186,214,0 +170784401236,214,0 +170784401284,214,0 +170784401333,214,0 +170784401381,214,0 +170784401429,214,0 +170784401479,213,0 +170784401528,213,0 +170784401576,213,0 +170784401624,213,0 +170784401674,213,0 +170784401722,213,0 +170784401770,213,0 +170784401817,213,0 +170784401867,213,0 +170784401915,213,0 +170784401964,214,0 +170784402012,214,0 +170784402062,213,0 +170784402110,213,0 +170784402158,214,0 +170784402206,213,0 +170784402253,214,0 +170784402301,214,0 +170784402349,213,0 +170784402399,213,0 +170784402447,213,0 +170784402496,213,0 +170784402546,212,0 +170784402594,213,0 +170784402643,213,0 +170784402691,213,0 +170784402739,213,0 +170784402789,213,0 +170784402837,213,0 +170784402886,213,0 +170784402934,213,0 +170784402982,213,0 +170784403030,213,0 +170784403078,213,0 +170784403126,213,0 +170784403174,213,0 +170784403223,214,0 +170784403273,214,0 +170784403322,213,0 +170784403370,212,0 +170784403420,212,0 +170784403468,213,0 +170784403517,213,0 +170784403567,213,0 +170784403615,213,0 +170784403663,213,0 +170784403712,213,0 +170784403760,213,0 +170784403810,213,0 +170784403857,213,0 +170784403905,213,0 +170784403953,214,0 +170784404003,213,0 +170784404052,213,0 +170784404102,214,0 +170784404150,214,0 +170784404198,214,0 +170784404247,213,0 +170784404295,213,0 +170784404343,213,0 +170784404393,213,0 +170784404441,213,0 +170784404489,213,0 +170784404537,213,0 +170784404585,213,0 +170784404633,213,0 +170784404681,213,0 +170784404728,213,0 +170784404778,213,0 +170784404827,213,0 +170784404877,214,0 +170784404925,214,0 +170784404974,214,0 +170784405024,214,0 +170784405074,214,0 +170784405123,214,0 +170784405171,213,0 +170784405221,213,0 +170784405268,213,0 +170784405316,213,0 +170784405364,213,0 +170784405414,213,0 +170784405461,213,0 +170784405509,213,0 +170784405559,213,0 +170784405607,213,0 +170784405656,213,0 +170784405704,213,0 +170784405752,213,0 +170784405802,213,0 +170784405850,213,0 +170784405897,213,0 +170784405945,213,0 +170784405993,214,0 +170784406043,213,0 +170784406092,213,0 +170784406140,213,0 +170784406188,213,0 +170784406236,213,0 +170784406284,213,0 +170784406332,213,0 +170784406380,213,0 +170784406427,213,0 +170784406475,213,0 +170784406523,213,0 +170784406571,213,0 +170784406619,213,0 +170784406667,213,0 +170784406714,213,0 +170784406762,214,0 +170784406810,214,0 +170784406858,214,0 +170784406906,214,0 +170784406953,214,0 +170784407001,213,0 +170784407049,213,0 +170784407099,213,0 +170784407146,213,0 +170784407194,213,0 +170784407242,213,0 +170784407290,212,0 +170784407339,213,0 +170784407387,213,0 +170784407435,213,0 +170784407483,213,0 +170784407531,213,0 +170784407578,213,0 +170784407626,213,0 +170784407674,213,0 +170784407722,213,0 +170784407770,214,0 +170784407818,214,0 +170784407865,214,0 +170784407913,214,0 +170784407961,213,0 +170784408009,213,0 +170784408057,213,0 +170784408104,213,0 +170784408152,213,0 +170784408200,213,0 +170784408248,212,0 +170784408296,213,0 +170784408344,213,0 +170784408392,213,0 +170784408439,213,0 +170784408487,213,0 +170784408535,213,0 +170784408583,213,0 +170784408631,213,0 +170784408679,213,0 +170784408728,213,0 +170784408776,213,0 +170784408824,214,0 +170784408872,213,0 +170784408921,213,0 +170784408969,213,0 +170784409019,212,0 +170784409066,213,0 +170784409114,213,0 +170784409162,213,0 +170784409210,213,0 +170784409258,213,0 +170784409305,213,0 +170784409353,213,0 +170784409401,213,0 +170784409451,213,0 +170784409499,213,0 +170784409547,213,0 +170784409595,213,0 +170784409644,213,0 +170784409692,213,0 +170784409740,213,0 +170784409788,213,0 +170784409836,213,0 +170784409884,213,0 +170784409931,213,0 +170784409981,214,0 +170784410029,214,0 +170784410077,214,0 +170784410126,214,0 +170784410174,213,0 +170784410222,214,0 +170784410270,213,0 +170784410318,213,0 +170784410366,213,0 +170784410415,213,0 +170784410463,213,0 +170784410513,213,0 +170784410561,213,0 +170784410610,213,0 +170784410658,213,0 +170784410706,213,0 +170784410754,213,0 +170784410803,214,0 +170784410851,214,0 +170784410901,213,0 +170784410950,214,0 +170784410998,214,0 +170784411048,214,0 +170784411097,214,0 +170784411145,213,0 +170784411193,213,0 +170784411243,213,0 +170784411292,213,0 +170784411340,213,0 +170784411388,213,0 +170784411436,213,0 +170784411484,213,0 +170784411532,213,0 +170784411580,213,0 +170784411628,213,0 +170784411677,213,0 +170784411725,214,0 +170784411773,213,0 +170784411821,214,0 +170784411869,214,0 +170784411917,214,0 +170784411964,214,0 +170784412012,214,0 +170784412060,213,0 +170784412110,213,0 +170784412159,213,0 +170784412207,213,0 +170784412257,213,0 +170784412306,213,0 +170784412354,213,0 +170784412402,213,0 +170784412450,213,0 +170784412500,213,0 +170784412548,213,0 +170784412595,213,0 +170784412645,213,0 +170784412693,213,0 +170784412742,213,0 +170784412790,214,0 +170784412838,214,0 +170784412887,214,0 +170784412935,214,0 +170784412983,214,0 +170784413031,213,0 +170784413079,213,0 +170784413126,213,0 +170784413174,213,0 +170784413222,213,0 +170784413272,213,0 +170784413320,213,0 +170784413368,213,0 +170784413416,213,0 +170784413465,213,0 +170784413515,213,0 +170784413563,213,0 +170784413611,214,0 +170784413659,214,0 +170784413707,214,0 +170784413756,214,0 +170784413806,214,0 +170784413853,213,0 +170784413903,214,0 +170784413953,213,0 +170784414002,213,0 +170784414050,213,0 +170784414098,213,0 +170784414147,213,0 +170784414197,213,0 +170784414245,213,0 +170784414294,213,0 +170784414342,213,0 +170784414390,213,0 +170784414438,213,0 +170784414486,214,0 +170784414536,213,0 +170784414584,214,0 +170784414631,213,0 +170784414679,214,0 +170784414729,214,0 +170784414779,214,0 +170784414828,214,0 +170784414877,213,0 +170784414925,212,0 +170784414973,212,0 +170784415021,213,0 +170784415069,213,0 +170784415117,213,0 +170784415165,213,0 +170784415213,213,0 +170784415261,213,0 +170784415311,213,0 +170784415358,213,0 +170784415408,213,0 +170784415457,213,0 +170784415505,214,0 +170784415553,213,0 +170784415603,213,0 +170784415651,213,0 +170784415699,213,0 +170784415747,214,0 +170784415795,213,0 +170784415843,213,0 +170784415890,213,0 +170784415938,212,0 +170784415986,212,0 +170784416036,213,0 +170784416085,213,0 +170784416133,213,0 +170784416181,213,0 +170784416229,213,0 +170784416277,213,0 +170784416325,213,0 +170784416375,213,0 +170784416424,213,0 +170784416472,213,0 +170784416520,213,0 +170784416568,213,0 +170784416616,214,0 +170784416665,214,0 +170784416713,213,0 +170784416761,213,0 +170784416809,213,0 +170784416859,213,0 +170784416908,213,0 +170784416956,213,0 +170784417006,213,0 +170784417054,213,0 +170784417103,213,0 +170784417151,213,0 +170784417199,213,0 +170784417247,213,0 +170784417295,213,0 +170784417343,213,0 +170784417391,213,0 +170784417439,213,0 +170784417487,213,0 +170784417536,213,0 +170784417584,214,0 +170784417633,213,0 +170784417681,213,0 +170784417731,213,0 +170784417779,213,0 +170784417827,213,0 +170784417876,213,0 +170784417926,213,0 +170784417974,213,0 +170784418023,213,0 +170784418073,213,0 +170784418121,213,0 +170784418169,213,0 +170784418218,214,0 +170784418268,213,0 +170784418317,214,0 +170784418367,214,0 +170784418415,213,0 +170784418463,214,0 +170784418512,214,0 +170784418560,213,0 +170784418608,213,0 +170784418656,212,0 +170784418705,213,0 +170784418755,213,0 +170784418803,213,0 +170784418852,213,0 +170784418900,213,0 +170784418948,213,0 +170784418996,213,0 +170784419044,213,0 +170784419092,213,0 +170784419140,213,0 +170784419189,213,0 +170784419237,214,0 +170784419285,213,0 +170784419333,214,0 +170784419383,213,0 +170784419431,214,0 +170784419479,213,0 +170784419526,213,0 +170784419574,213,0 +170784419622,213,0 +170784419670,213,0 +170784419718,213,0 +170784419766,213,0 +170784419816,213,0 +170784419865,213,0 +170784419913,213,0 +170784419962,213,0 +170784420010,213,0 +170784420060,214,0 +170784420109,214,0 +170784420157,214,0 +170784420205,214,0 +170784420253,214,0 +170784420301,214,0 +170784420351,214,0 +170784420399,213,0 +170784420446,213,0 +170784420494,213,0 +170784420542,213,0 +170784420590,213,0 +170784420638,213,0 +170784420686,213,0 +170784420734,213,0 +170784420782,213,0 +170784420830,214,0 +170784420880,214,0 +170784420929,214,0 +170784420977,214,0 +170784421027,214,0 +170784421075,214,0 +170784421123,214,0 +170784421171,214,0 +170784421219,214,0 +170784421267,214,0 +170784421315,213,0 +170784421362,213,0 +170784421410,213,0 +170784421458,213,0 +170784421508,214,0 +170784421556,213,0 +170784421604,213,0 +170784421652,214,0 +170784421700,214,0 +170784421749,214,0 +170784421797,214,0 +170784421847,214,0 +170784421896,214,0 +170784421944,214,0 +170784421993,214,0 +170784422041,214,0 +170784422089,214,0 +170784422137,214,0 +170784422186,214,0 +170784422234,214,0 +170784422284,213,0 +170784422332,213,0 +170784422380,213,0 +170784422428,213,0 +170784422476,213,0 +170784422523,213,0 +170784422571,213,0 +170784422621,213,0 +170784422670,214,0 +170784422720,213,0 +170784422769,214,0 +170784422819,214,0 +170784422869,214,0 +170784422918,214,0 +170784422968,214,0 +170784423017,214,0 +170784423065,214,0 +170784423113,214,0 +170784423163,214,0 +170784423211,213,0 +170784423260,212,0 +170784423308,212,0 +170784423357,213,0 +170784423407,213,0 +170784423455,213,0 +170784423504,213,0 +170784423552,213,0 +170784423602,213,0 +170784423651,213,0 +170784423699,213,0 +170784423747,213,0 +170784423795,213,0 +170784423843,213,0 +170784423890,213,0 +170784423938,213,0 +170784423986,214,0 +170784424034,214,0 +170784424082,213,0 +170784424130,213,0 +170784424178,213,0 +170784424225,213,0 +170784424273,213,0 +170784424321,213,0 +170784424371,213,0 +170784424419,213,0 +170784424468,213,0 +170784424516,213,0 +170784424564,213,0 +170784424614,213,0 +170784424661,213,0 +170784424709,213,0 +170784424757,213,0 +170784424807,213,0 +170784424854,214,0 +170784424902,214,0 +170784424950,214,0 +170784424998,214,0 +170784425046,213,0 +170784425093,213,0 +170784425141,213,0 +170784425189,213,0 +170784425239,213,0 +170784425288,213,0 +170784425336,213,0 +170784425384,213,0 +170784425434,213,0 +170784425482,213,0 +170784425529,213,0 +170784425577,213,0 +170784425625,213,0 +170784425675,213,0 +170784425723,213,0 +170784425771,213,0 +170784425820,213,0 +170784425868,214,0 +170784425916,213,0 +170784425964,213,0 +170784426013,213,0 +170784426061,213,0 +170784426109,213,0 +170784426157,213,0 +170784426205,213,0 +170784426253,213,0 +170784426301,213,0 +170784426349,213,0 +170784426397,213,0 +170784426444,213,0 +170784426494,213,0 +170784426543,213,0 +170784426591,213,0 +170784426639,213,0 +170784426687,214,0 +170784426735,214,0 +170784426784,214,0 +170784426832,214,0 +170784426880,214,0 +170784426928,213,0 +170784426976,213,0 +170784427024,213,0 +170784427073,213,0 +170784427121,213,0 +170784427169,213,0 +170784427217,213,0 +170784427265,213,0 +170784427313,213,0 +170784427361,213,0 +170784427409,213,0 +170784427457,213,0 +170784427505,214,0 +170784427553,214,0 +170784427601,214,0 +170784427648,214,0 +170784427696,214,0 +170784427744,214,0 +170784427792,214,0 +170784427840,213,0 +170784427888,213,0 +170784427936,213,0 +170784427983,213,0 +170784428031,213,0 +170784428079,213,0 +170784428127,213,0 +170784428175,213,0 +170784428223,213,0 +170784428272,213,0 +170784428320,213,0 +170784428368,214,0 +170784428417,214,0 +170784428465,214,0 +170784428513,214,0 +170784428561,214,0 +170784428609,214,0 +170784428657,214,0 +170784428705,214,0 +170784428754,213,0 +170784428802,213,0 +170784428850,213,0 +170784428898,213,0 +170784428946,213,0 +170784428994,213,0 +170784429042,213,0 +170784429090,213,0 +170784429138,213,0 +170784429186,213,0 +170784429234,213,0 +170784429283,213,0 +170784429333,214,0 +170784429381,214,0 +170784429429,214,0 +170784429476,214,0 +170784429526,214,0 +170784429574,214,0 +170784429623,214,0 +170784429671,213,0 +170784429721,213,0 +170784429769,213,0 +170784429818,213,0 +170784429868,213,0 +170784429916,213,0 +170784429964,213,0 +170784430013,213,0 +170784430063,213,0 +170784430111,213,0 +170784430159,213,0 +170784430207,213,0 +170784430255,213,0 +170784430302,213,0 +170784430350,213,0 +170784430398,214,0 +170784430446,213,0 +170784430494,213,0 +170784430541,213,0 +170784430589,213,0 +170784430637,213,0 +170784430685,213,0 +170784430733,213,0 +170784430782,213,0 +170784430830,213,0 +170784430878,213,0 +170784430926,213,0 +170784430974,213,0 +170784431021,213,0 +170784431069,213,0 +170784431117,213,0 +170784431165,213,0 +170784431215,213,0 +170784431262,214,0 +170784431310,213,0 +170784431358,214,0 +170784431408,214,0 +170784431455,213,0 +170784431503,213,0 +170784431551,212,0 +170784431599,213,0 +170784431647,212,0 +170784431695,213,0 +170784431744,213,0 +170784431792,213,0 +170784431842,213,0 +170784431890,213,0 +170784431937,213,0 +170784431987,213,0 +170784432035,213,0 +170784432083,213,0 +170784432131,213,0 +170784432180,213,0 +170784432228,213,0 +170784432277,214,0 +170784432325,214,0 +170784432373,213,0 +170784432421,213,0 +170784432469,213,0 +170784432517,212,0 +170784432565,212,0 +170784432614,213,0 +170784432662,213,0 +170784432710,213,0 +170784432758,213,0 +170784432806,213,0 +170784432856,213,0 +170784432904,213,0 +170784432952,213,0 +170784433001,213,0 +170784433049,213,0 +170784433097,213,0 +170784433145,213,0 +170784433193,213,0 +170784433242,214,0 +170784433290,214,0 +170784433340,214,0 +170784433388,213,0 +170784433437,213,0 +170784433485,213,0 +170784433533,213,0 +170784433581,213,0 +170784433631,213,0 +170784433680,213,0 +170784433728,213,0 +170784433778,213,0 +170784433826,213,0 +170784433874,213,0 +170784433922,213,0 +170784433971,213,0 +170784434019,213,0 +170784434069,213,0 +170784434118,213,0 +170784434166,213,0 +170784434214,213,0 +170784434262,214,0 +170784434312,213,0 +170784434360,213,0 +170784434408,213,0 +170784434455,213,0 +170784434503,213,0 +170784434551,213,0 +170784434599,213,0 +170784434647,213,0 +170784434694,213,0 +170784434744,213,0 +170784434792,213,0 +170784434840,213,0 +170784434888,213,0 +170784434935,213,0 +170784434983,213,0 +170784435031,213,0 +170784435079,213,0 +170784435127,213,0 +170784435175,213,0 +170784435222,213,0 +170784435270,213,0 +170784435320,213,0 +170784435368,213,0 +170784435417,212,0 +170784435467,213,0 +170784435516,213,0 +170784435564,213,0 +170784435612,213,0 +170784435660,213,0 +170784435707,213,0 +170784435755,213,0 +170784435803,213,0 +170784435851,214,0 +170784435899,213,0 +170784435947,214,0 +170784435995,214,0 +170784436043,214,0 +170784436091,213,0 +170784436139,213,0 +170784436186,212,0 +170784436234,213,0 +170784436284,212,0 +170784436332,213,0 +170784436379,213,0 +170784436427,213,0 +170784436475,213,0 +170784436523,213,0 +170784436571,213,0 +170784436620,213,0 +170784436668,213,0 +170784436716,213,0 +170784436764,213,0 +170784436812,213,0 +170784436859,213,0 +170784436907,213,0 +170784436955,213,0 +170784437003,213,0 +170784437053,213,0 +170784437102,213,0 +170784437152,212,0 +170784437201,212,0 +170784437249,212,0 +170784437299,212,0 +170784437347,213,0 +170784437396,213,0 +170784437444,213,0 +170784437494,213,0 +170784437543,213,0 +170784437593,213,0 +170784437641,213,0 +170784437689,213,0 +170784437737,213,0 +170784437785,213,0 +170784437833,213,0 +170784437881,213,0 +170784437930,213,0 +170784437978,213,0 +170784438028,212,0 +170784438077,212,0 +170784438127,212,0 +170784438176,213,0 +170784438226,212,0 +170784438274,213,0 +170784438323,213,0 +170784438371,213,0 +170784438419,213,0 +170784438467,212,0 +170784438515,213,0 +170784438563,213,0 +170784438612,213,0 +170784438660,213,0 +170784438710,213,0 +170784438759,213,0 +170784438807,213,0 +170784438855,213,0 +170784438903,213,0 +170784438951,213,0 +170784439001,213,0 +170784439050,213,0 +170784439098,213,0 +170784439146,213,0 +170784439196,213,0 +170784439244,213,0 +170784439291,213,0 +170784439341,213,0 +170784439391,213,0 +170784439438,213,0 +170784439488,213,0 +170784439537,213,0 +170784439585,213,0 +170784439635,213,0 +170784439684,213,0 +170784439732,213,0 +170784439782,214,0 +170784439830,213,0 +170784439879,213,0 +170784439927,213,0 +170784439975,213,0 +170784440023,213,0 +170784440071,213,0 +170784440119,213,0 +170784440169,213,0 +170784440217,213,0 +170784440265,213,0 +170784440314,213,0 +170784440362,213,0 +170784440412,213,0 +170784440461,213,0 +170784440509,214,0 +170784440557,213,0 +170784440605,213,0 +170784440653,213,0 +170784440701,214,0 +170784440748,214,0 +170784440798,213,0 +170784440846,213,0 +170784440894,213,0 +170784440942,213,0 +170784440990,213,0 +170784441039,213,0 +170784441087,213,0 +170784441135,213,0 +170784441183,213,0 +170784441230,213,0 +170784441278,213,0 +170784441326,213,0 +170784441376,214,0 +170784441424,214,0 +170784441472,214,0 +170784441521,214,0 +170784441569,214,0 +170784441619,214,0 +170784441668,213,0 +170784441718,213,0 +170784441766,213,0 +170784441815,213,0 +170784441865,213,0 +170784441914,213,0 +170784441962,213,0 +170784442010,213,0 +170784442059,213,0 +170784442107,213,0 +170784442155,214,0 +170784442203,214,0 +170784442251,214,0 +170784442299,214,0 +170784442349,214,0 +170784442397,214,0 +170784442444,214,0 +170784442494,214,0 +170784442544,214,0 +170784442591,214,0 +170784442639,213,0 +170784442687,213,0 +170784442735,213,0 +170784442783,213,0 +170784442831,213,0 +170784442879,214,0 +170784442926,214,0 +170784442974,213,0 +170784443022,214,0 +170784443070,214,0 +170784443118,214,0 +170784443166,214,0 +170784443214,214,0 +170784443262,214,0 +170784443309,214,0 +170784443359,214,0 +170784443407,214,0 +170784443455,214,0 +170784443504,214,0 +170784443552,214,0 +170784443600,213,0 +170784443648,214,0 +170784443697,214,0 +170784443747,214,0 +170784443796,214,0 +170784443844,214,0 +170784443892,214,0 +170784443940,214,0 +170784443988,214,0 +170784444037,214,0 +170784444085,214,0 +170784444133,214,0 +170784444183,214,0 +170784444232,214,0 +170784444282,214,0 +170784444332,214,0 +170784444380,214,0 +170784444428,214,0 +170784444477,213,0 +170784444525,213,0 +170784444573,213,0 +170784444623,213,0 +170784444670,213,0 +170784444718,213,0 +170784444768,213,0 +170784444816,213,0 +170784444864,213,0 +170784444911,213,0 +170784444959,213,0 +170784445007,214,0 +170784445057,214,0 +170784445105,214,0 +170784445154,214,0 +170784445202,214,0 +170784445250,214,0 +170784445298,214,0 +170784445347,214,0 +170784445395,213,0 +170784445443,213,0 +170784445491,212,0 +170784445539,213,0 +170784445586,213,0 +170784445634,213,0 +170784445682,213,0 +170784445730,213,0 +170784445778,213,0 +170784445826,213,0 +170784445874,213,0 +170784445921,213,0 +170784445969,213,0 +170784446017,213,0 +170784446067,213,0 +170784446115,213,0 +170784446164,213,0 +170784446214,213,0 +170784446262,214,0 +170784446309,214,0 +170784446357,213,0 +170784446405,213,0 +170784446453,213,0 +170784446501,213,0 +170784446549,213,0 +170784446597,213,0 +170784446644,213,0 +170784446692,213,0 +170784446740,213,0 +170784446788,213,0 +170784446836,213,0 +170784446884,213,0 +170784446933,214,0 +170784446981,213,0 +170784447029,213,0 +170784447077,213,0 +170784447125,214,0 +170784447172,214,0 +170784447222,213,0 +170784447270,213,0 +170784447318,213,0 +170784447365,213,0 +170784447415,213,0 +170784447463,213,0 +170784447511,213,0 +170784447558,213,0 +170784447606,213,0 +170784447654,213,0 +170784447704,213,0 +170784447752,213,0 +170784447801,213,0 +170784447849,213,0 +170784447897,213,0 +170784447945,214,0 +170784447992,214,0 +170784448040,214,0 +170784448088,214,0 +170784448136,213,0 +170784448184,213,0 +170784448232,212,0 +170784448279,213,0 +170784448327,213,0 +170784448377,213,0 +170784448424,213,0 +170784448472,213,0 +170784448522,213,0 +170784448569,213,0 +170784448617,213,0 +170784448665,213,0 +170784448715,213,0 +170784448762,214,0 +170784448810,213,0 +170784448858,213,0 +170784448908,214,0 +170784448955,213,0 +170784449003,213,0 +170784449051,214,0 +170784449100,213,0 +170784449150,213,0 +170784449197,213,0 +170784449245,213,0 +170784449293,213,0 +170784449341,213,0 +170784449389,213,0 +170784449437,213,0 +170784449485,213,0 +170784449533,213,0 +170784449580,213,0 +170784449628,213,0 +170784449676,213,0 +170784449726,213,0 +170784449775,213,0 +170784449823,214,0 +170784449871,214,0 +170784449919,214,0 +170784449967,214,0 +170784450017,213,0 +170784450065,213,0 +170784450113,213,0 +170784450160,213,0 +170784450208,213,0 +170784450258,213,0 +170784450306,213,0 +170784450355,213,0 +170784450403,213,0 +170784450451,213,0 +170784450499,213,0 +170784450549,213,0 +170784450597,213,0 +170784450645,213,0 +170784450694,213,0 +170784450744,214,0 +170784450792,213,0 +170784450841,214,0 +170784450889,214,0 +170784450937,213,0 +170784450985,213,0 +170784451035,212,0 +170784451084,213,0 +170784451132,213,0 +170784451182,213,0 +170784451229,213,0 +170784451279,213,0 +170784451327,213,0 +170784451375,213,0 +170784451423,213,0 +170784451471,213,0 +170784451518,214,0 +170784451566,213,0 +170784451614,213,0 +170784451662,214,0 +170784451710,214,0 +170784451758,213,0 +170784451807,213,0 +170784451857,213,0 +170784451905,213,0 +170784451953,213,0 +170784452001,212,0 +170784452049,213,0 +170784452098,213,0 +170784452148,213,0 +170784452197,213,0 +170784452245,213,0 +170784452295,213,0 +170784452343,213,0 +170784452391,213,0 +170784452438,213,0 +170784452486,213,0 +170784452536,213,0 +170784452584,213,0 +170784452633,213,0 +170784452683,213,0 +170784452732,214,0 +170784452780,214,0 +170784452828,213,0 +170784452876,213,0 +170784452924,213,0 +170784452972,213,0 +170784453022,213,0 +170784453070,213,0 +170784453119,213,0 +170784453167,213,0 +170784453215,213,0 +170784453263,213,0 +170784453311,213,0 +170784453359,213,0 +170784453407,213,0 +170784453455,213,0 +170784453503,214,0 +170784453551,214,0 +170784453599,214,0 +170784453648,214,0 +170784453697,214,0 +170784453747,213,0 +170784453795,212,0 +170784453843,213,0 +170784453891,213,0 +170784453939,213,0 +170784453988,213,0 +170784454036,213,0 +170784454084,213,0 +170784454134,213,0 +170784454181,213,0 +170784454229,213,0 +170784454277,213,0 +170784454327,213,0 +170784454375,213,0 +170784454424,214,0 +170784454472,214,0 +170784454520,213,0 +170784454568,214,0 +170784454615,213,0 +170784454663,213,0 +170784454711,213,0 +170784454759,213,0 +170784454809,213,0 +170784454857,213,0 +170784454906,213,0 +170784454954,213,0 +170784455002,213,0 +170784455052,213,0 +170784455101,213,0 +170784455151,213,0 +170784455200,213,0 +170784455250,214,0 +170784455298,214,0 +170784455346,214,0 +170784455393,213,0 +170784455441,214,0 +170784455489,214,0 +170784455537,214,0 +170784455587,213,0 +170784455635,213,0 +170784455683,213,0 +170784455731,213,0 +170784455779,213,0 +170784455828,213,0 +170784455876,213,0 +170784455926,213,0 +170784455973,213,0 +170784456021,213,0 +170784456069,214,0 +170784456117,213,0 +170784456167,214,0 +170784456215,213,0 +170784456264,213,0 +170784456314,214,0 +170784456363,214,0 +170784456411,214,0 +170784456459,214,0 +170784456507,213,0 +170784456557,213,0 +170784456606,213,0 +170784456656,213,0 +170784456704,213,0 +170784456753,213,0 +170784456801,213,0 +170784456849,214,0 +170784456897,213,0 +170784456947,213,0 +170784456995,214,0 +170784457044,214,0 +170784457092,214,0 +170784457140,214,0 +170784457188,214,0 +170784457236,214,0 +170784457283,214,0 +170784457333,214,0 +170784457383,214,0 +170784457431,213,0 +170784457479,213,0 +170784457528,213,0 +170784457578,213,0 +170784457627,213,0 +170784457677,213,0 +170784457725,213,0 +170784457773,213,0 +170784457821,213,0 +170784457869,214,0 +170784457917,213,0 +170784457966,214,0 +170784458014,214,0 +170784458062,214,0 +170784458110,214,0 +170784458158,214,0 +170784458206,214,0 +170784458254,213,0 +170784458302,214,0 +170784458351,213,0 +170784458399,213,0 +170784458449,213,0 +170784458498,213,0 +170784458546,213,0 +170784458594,213,0 +170784458644,213,0 +170784458693,213,0 +170784458741,213,0 +170784458791,214,0 +170784458839,214,0 +170784458888,214,0 +170784458938,214,0 +170784458985,214,0 +170784459033,213,0 +170784459083,214,0 +170784459131,214,0 +170784459179,214,0 +170784459228,214,0 +170784459276,213,0 +170784459326,213,0 +170784459374,213,0 +170784459423,213,0 +170784459473,213,0 +170784459522,213,0 +170784459570,213,0 +170784459618,213,0 +170784459666,213,0 +170784459714,213,0 +170784459762,213,0 +170784459810,213,0 +170784459858,213,0 +170784459906,214,0 +170784459956,214,0 +170784460005,214,0 +170784460053,214,0 +170784460101,214,0 +170784460149,214,0 +170784460197,213,0 +170784460245,213,0 +170784460294,213,0 +170784460342,213,0 +170784460392,213,0 +170784460440,213,0 +170784460488,213,0 +170784460536,213,0 +170784460585,213,0 +170784460633,213,0 +170784460683,213,0 +170784460732,213,0 +170784460780,213,0 +170784460828,213,0 +170784460878,213,0 +170784460925,213,0 +170784460973,213,0 +170784461021,213,0 +170784461069,214,0 +170784461119,213,0 +170784461168,212,0 +170784461218,213,0 +170784461266,213,0 +170784461314,213,0 +170784461363,213,0 +170784461411,213,0 +170784461461,213,0 +170784461511,213,0 +170784461560,213,0 +170784461610,213,0 +170784461658,213,0 +170784461707,213,0 +170784461757,213,0 +170784461806,213,0 +170784461854,213,0 +170784461904,213,0 +170784461953,213,0 +170784462003,213,0 +170784462052,213,0 +170784462102,213,0 +170784462150,213,0 +170784462199,213,0 +170784462247,213,0 +170784462297,213,0 +170784462346,213,0 +170784462396,213,0 +170784462446,213,0 +170784462493,213,0 +170784462543,213,0 +170784462593,213,0 +170784462642,213,0 +170784462690,213,0 +170784462738,213,0 +170784462786,214,0 +170784462834,213,0 +170784462882,214,0 +170784462930,214,0 +170784462978,213,0 +170784463026,213,0 +170784463074,213,0 +170784463121,213,0 +170784463169,213,0 +170784463219,213,0 +170784463267,213,0 +170784463315,213,0 +170784463364,213,0 +170784463414,213,0 +170784463462,213,0 +170784463510,213,0 +170784463559,214,0 +170784463609,213,0 +170784463657,214,0 +170784463705,214,0 +170784463753,214,0 +170784463802,214,0 +170784463852,214,0 +170784463901,213,0 +170784463951,213,0 +170784463999,213,0 +170784464048,213,0 +170784464096,213,0 +170784464144,213,0 +170784464194,213,0 +170784464243,213,0 +170784464293,213,0 +170784464341,213,0 +170784464389,213,0 +170784464437,214,0 +170784464485,214,0 +170784464534,214,0 +170784464582,214,0 +170784464630,214,0 +170784464678,214,0 +170784464726,214,0 +170784464775,214,0 +170784464823,213,0 +170784464873,213,0 +170784464921,213,0 +170784464969,213,0 +170784465018,213,0 +170784465068,213,0 +170784465116,213,0 +170784465164,213,0 +170784465212,213,0 +170784465261,213,0 +170784465311,213,0 +170784465359,214,0 +170784465408,214,0 +170784465456,214,0 +170784465504,214,0 +170784465552,214,0 +170784465600,214,0 +170784465648,214,0 +170784465696,214,0 +170784465744,213,0 +170784465794,213,0 +170784465843,213,0 +170784465891,213,0 +170784465939,213,0 +170784465987,213,0 +170784466036,213,0 +170784466086,213,0 +170784466135,213,0 +170784466183,213,0 +170784466233,213,0 +170784466281,213,0 +170784466330,213,0 +170784466380,213,0 +170784466428,213,0 +170784466476,213,0 +170784466525,213,0 +170784466575,213,0 +170784466623,214,0 +170784466671,213,0 +170784466719,213,0 +170784466767,213,0 +170784466814,213,0 +170784466862,213,0 +170784466910,213,0 +170784466960,213,0 +170784467010,213,0 +170784467057,213,0 +170784467105,213,0 +170784467155,213,0 +170784467203,213,0 +170784467251,213,0 +170784467299,213,0 +170784467347,213,0 +170784467395,214,0 +170784467443,214,0 +170784467491,214,0 +170784467538,213,0 +170784467587,213,0 +170784467636,213,0 +170784467684,213,0 +170784467733,213,0 +170784467781,212,0 +170784467831,213,0 +170784467880,213,0 +170784467928,213,0 +170784467978,213,0 +170784468025,213,0 +170784468073,213,0 +170784468121,213,0 +170784468169,213,0 +170784468219,213,0 +170784468267,214,0 +170784468315,214,0 +170784468364,214,0 +170784468412,214,0 +170784468460,214,0 +170784468508,213,0 +170784468557,213,0 +170784468605,213,0 +170784468653,213,0 +170784468701,213,0 +170784468749,213,0 +170784468797,213,0 +170784468845,213,0 +170784468893,213,0 +170784468940,213,0 +170784468988,213,0 +170784469038,213,0 +170784469086,213,0 +170784469134,214,0 +170784469182,214,0 +170784469231,214,0 +170784469279,213,0 +170784469329,213,0 +170784469377,214,0 +170784469424,213,0 +170784469472,213,0 +170784469522,213,0 +170784469570,213,0 +170784469618,213,0 +170784469665,213,0 +170784469713,213,0 +170784469761,213,0 +170784469811,213,0 +170784469859,213,0 +170784469908,213,0 +170784469958,213,0 +170784470006,213,0 +170784470055,213,0 +170784470103,214,0 +170784470151,214,0 +170784470199,214,0 +170784470247,214,0 +170784470295,214,0 +170784470342,213,0 +170784470390,212,0 +170784470439,213,0 +170784470487,213,0 +170784470535,213,0 +170784470583,213,0 +170784470631,213,0 +170784470679,213,0 +170784470727,213,0 +170784470775,213,0 +170784470824,213,0 +170784470872,214,0 +170784470920,213,0 +170784470968,214,0 +170784471017,214,0 +170784471065,214,0 +170784471115,214,0 +170784471163,214,0 +170784471212,214,0 +170784471260,214,0 +170784471308,213,0 +170784471356,213,0 +170784471404,213,0 +170784471452,213,0 +170784471500,213,0 +170784471549,213,0 +170784471597,213,0 +170784471647,214,0 +170784471696,213,0 +170784471744,213,0 +170784471794,214,0 +170784471843,214,0 +170784471891,214,0 +170784471940,214,0 +170784471988,214,0 +170784472036,214,0 +170784472084,214,0 +170784472132,214,0 +170784472180,214,0 +170784472228,213,0 +170784472276,213,0 +170784472323,213,0 +170784472371,213,0 +170784472419,213,0 +170784472467,213,0 +170784472515,213,0 +170784472563,214,0 +170784472611,213,0 +170784472659,214,0 +170784472706,214,0 +170784472754,214,0 +170784472802,214,0 +170784472852,214,0 +170784472899,214,0 +170784472947,214,0 +170784472995,214,0 +170784473045,214,0 +170784473093,214,0 +170784473141,213,0 +170784473190,213,0 +170784473240,213,0 +170784473288,213,0 +170784473337,213,0 +170784473387,213,0 +170784473436,213,0 +170784473484,214,0 +170784473532,214,0 +170784473580,214,0 +170784473628,214,0 +170784473676,214,0 +170784473724,214,0 +170784473772,214,0 +170784473820,214,0 +170784473868,214,0 +170784473916,214,0 +170784473964,214,0 +170784474012,214,0 +170784474060,213,0 +170784474109,213,0 +170784474157,213,0 +170784474205,213,0 +170784474253,213,0 +170784474301,213,0 +170784474349,213,0 +170784474398,213,0 +170784474446,213,0 +170784474494,213,0 +170784474542,214,0 +170784474590,214,0 +170784474639,214,0 +170784474687,214,0 +170784474735,213,0 +170784474783,214,0 +170784474831,214,0 +170784474879,214,0 +170784474927,213,0 +170784474975,213,0 +170784475023,212,0 +170784475071,213,0 +170784475119,213,0 +170784475168,213,0 +170784475216,213,0 +170784475266,213,0 +170784475314,213,0 +170784475362,213,0 +170784475410,213,0 +170784475459,213,0 +170784475509,213,0 +170784475557,213,0 +170784475606,213,0 +170784475656,213,0 +170784475704,214,0 +170784475752,213,0 +170784475801,214,0 +170784475851,214,0 +170784475899,213,0 +170784475946,213,0 +170784475994,212,0 +170784476042,213,0 +170784476090,212,0 +170784476140,212,0 +170784476188,213,0 +170784476236,213,0 +170784476284,213,0 +170784476332,213,0 +170784476381,213,0 +170784476431,213,0 +170784476479,213,0 +170784476527,213,0 +170784476575,213,0 +170784476624,213,0 +170784476672,213,0 +170784476720,213,0 +170784476768,214,0 +170784476816,213,0 +170784476864,212,0 +170784476912,212,0 +170784476960,213,0 +170784477009,213,0 +170784477059,213,0 +170784477107,213,0 +170784477155,213,0 +170784477203,213,0 +170784477251,213,0 +170784477299,213,0 +170784477348,213,0 +170784477398,213,0 +170784477447,213,0 +170784477495,213,0 +170784477543,213,0 +170784477593,213,0 +170784477642,213,0 +170784477692,214,0 +170784477740,213,0 +170784477788,213,0 +170784477837,213,0 +170784477885,213,0 +170784477933,213,0 +170784477983,213,0 +170784478032,213,0 +170784478080,213,0 +170784478128,213,0 +170784478176,213,0 +170784478225,213,0 +170784478275,213,0 +170784478324,213,0 +170784478374,213,0 +170784478423,213,0 +170784478473,213,0 +170784478522,213,0 +170784478570,214,0 +170784478618,214,0 +170784478668,213,0 +170784478716,213,0 +170784478764,213,0 +170784478813,213,0 +170784478863,213,0 +170784478911,213,0 +170784478960,213,0 +170784479008,213,0 +170784479056,213,0 +170784479104,213,0 +170784479152,213,0 +170784479200,214,0 +170784479249,214,0 +170784479297,214,0 +170784479347,214,0 +170784479395,214,0 +170784479443,214,0 +170784479491,214,0 +170784479540,214,0 +170784479588,213,0 +170784479636,213,0 +170784479684,213,0 +170784479732,213,0 +170784479780,213,0 +170784479829,213,0 +170784479879,213,0 +170784479927,213,0 +170784479975,213,0 +170784480024,213,0 +170784480074,213,0 +170784480124,213,0 +170784480173,213,0 +170784480221,213,0 +170784480269,213,0 +170784480319,214,0 +170784480368,214,0 +170784480418,214,0 +170784480466,214,0 +170784480513,213,0 +170784480561,213,0 +170784480609,213,0 +170784480657,213,0 +170784480705,212,0 +170784480755,212,0 +170784480803,212,0 +170784480852,213,0 +170784480902,213,0 +170784480951,213,0 +170784480999,213,0 +170784481048,213,0 +170784481096,213,0 +170784481144,213,0 +170784481192,213,0 +170784481242,213,0 +170784481290,213,0 +170784481338,213,0 +170784481387,213,0 +170784481435,213,0 +170784481483,212,0 +170784481531,212,0 +170784481579,213,0 +170784481627,213,0 +170784481676,213,0 +170784481724,213,0 +170784481774,213,0 +170784481822,213,0 +170784481871,213,0 +170784481919,213,0 +170784481967,213,0 +170784482017,213,0 +170784482066,213,0 +170784482114,213,0 +170784482162,213,0 +170784482210,213,0 +170784482260,213,0 +170784482309,214,0 +170784482357,213,0 +170784482407,212,0 +170784482454,213,0 +170784482504,213,0 +170784482552,213,0 +170784482600,213,0 +170784482648,213,0 +170784482696,213,0 +170784482745,213,0 +170784482793,213,0 +170784482841,213,0 +170784482889,213,0 +170784482937,213,0 +170784482985,213,0 +170784483033,214,0 +170784483081,213,0 +170784483131,213,0 +170784483178,213,0 +170784483226,214,0 +170784483276,213,0 +170784483325,213,0 +170784483373,213,0 +170784483421,213,0 +170784483469,213,0 +170784483517,213,0 +170784483565,213,0 +170784483613,213,0 +170784483661,213,0 +170784483709,213,0 +170784483758,213,0 +170784483806,213,0 +170784483854,213,0 +170784483904,213,0 +170784483952,213,0 +170784484001,213,0 +170784484049,214,0 +170784484097,214,0 +170784484147,214,0 +170784484195,213,0 +170784484243,213,0 +170784484292,213,0 +170784484342,213,0 +170784484390,213,0 +170784484438,213,0 +170784484486,213,0 +170784484534,213,0 +170784484583,214,0 +170784484631,214,0 +170784484679,214,0 +170784484727,214,0 +170784484775,214,0 +170784484823,214,0 +170784484873,214,0 +170784484921,214,0 +170784484968,214,0 +170784485016,214,0 +170784485064,214,0 +170784485114,213,0 +170784485163,213,0 +170784485213,213,0 +170784485261,213,0 +170784485309,213,0 +170784485357,213,0 +170784485405,213,0 +170784485454,214,0 +170784485504,213,0 +170784485552,214,0 +170784485601,214,0 +170784485651,214,0 +170784485699,214,0 +170784485748,214,0 +170784485798,214,0 +170784485847,214,0 +170784485895,214,0 +170784485945,214,0 +170784485993,214,0 +170784486041,213,0 +170784486088,213,0 +170784486138,213,0 +170784486188,213,0 +170784486237,213,0 +170784486285,213,0 +170784486333,213,0 +170784486381,213,0 +170784486429,213,0 +170784486477,213,0 +170784486524,213,0 +170784486572,213,0 +170784486620,214,0 +170784486668,214,0 +170784486716,214,0 +170784486766,214,0 +170784486815,214,0 +170784486863,214,0 +170784486911,213,0 +170784486959,213,0 +170784487009,213,0 +170784487057,213,0 +170784487106,213,0 +170784487154,213,0 +170784487204,213,0 +170784487253,213,0 +170784487303,213,0 +170784487351,213,0 +170784487400,213,0 +170784487450,213,0 +170784487499,213,0 +170784487547,214,0 +170784487595,213,0 +170784487643,214,0 +170784487691,214,0 +170784487739,213,0 +170784487787,214,0 +170784487836,214,0 +170784487886,213,0 +170784487935,213,0 +170784487985,213,0 +170784488034,213,0 +170784488084,213,0 +170784488132,213,0 +170784488180,213,0 +170784488228,213,0 +170784488277,213,0 +170784488327,213,0 +170784488376,213,0 +170784488426,213,0 +170784488474,214,0 +170784488522,214,0 +170784488570,214,0 +170784488619,214,0 +170784488669,214,0 +170784488717,214,0 +170784488766,214,0 +170784488814,213,0 +170784488862,213,0 +170784488912,213,0 +170784488962,213,0 +170784489009,213,0 +170784489057,213,0 +170784489107,213,0 +170784489157,213,0 +170784489204,213,0 +170784489254,213,0 +170784489303,213,0 +170784489351,213,0 +170784489401,213,0 +170784489449,213,0 +170784489498,213,0 +170784489546,213,0 +170784489596,213,0 +170784489644,213,0 +170784489693,213,0 +170784489743,213,0 +170784489791,213,0 +170784489839,213,0 +170784489887,213,0 +170784489935,213,0 +170784489984,213,0 +170784490034,213,0 +170784490083,213,0 +170784490131,213,0 +170784490179,213,0 +170784490229,213,0 +170784490278,213,0 +170784490328,213,0 +170784490376,213,0 +170784490425,213,0 +170784490473,213,0 +170784490521,213,0 +170784490571,213,0 +170784490620,213,0 +170784490668,213,0 +170784490716,212,0 +170784490765,213,0 +170784490815,212,0 +170784490864,213,0 +170784490912,213,0 +170784490960,213,0 +170784491010,213,0 +170784491059,213,0 +170784491107,213,0 +170784491155,213,0 +170784491202,213,0 +170784491250,213,0 +170784491298,214,0 +170784491348,214,0 +170784491397,214,0 +170784491445,213,0 +170784491493,214,0 +170784491541,214,0 +170784491589,213,0 +170784491637,213,0 +170784491684,213,0 +170784491734,213,0 +170784491782,213,0 +170784491830,213,0 +170784491878,213,0 +170784491926,213,0 +170784491973,213,0 +170784492021,213,0 +170784492071,213,0 +170784492119,213,0 +170784492167,213,0 +170784492215,213,0 +170784492262,213,0 +170784492310,213,0 +170784492358,213,0 +170784492406,213,0 +170784492454,213,0 +170784492502,213,0 +170784492550,213,0 +170784492597,213,0 +170784492645,213,0 +170784492693,213,0 +170784492741,213,0 +170784492789,213,0 +170784492837,213,0 +170784492885,213,0 +170784492934,213,0 +170784492984,213,0 +170784493032,213,0 +170784493080,213,0 +170784493128,213,0 +170784493176,213,0 +170784493224,213,0 +170784493273,213,0 +170784493321,213,0 +170784493369,213,0 +170784493417,213,0 +170784493465,213,0 +170784493513,213,0 +170784493562,213,0 +170784493610,213,0 +170784493658,213,0 +170784493706,213,0 +170784493754,213,0 +170784493802,213,0 +170784493850,213,0 +170784493898,213,0 +170784493948,213,0 +170784493996,213,0 +170784494044,213,0 +170784494092,213,0 +170784494139,213,0 +170784494187,213,0 +170784494237,213,0 +170784494285,214,0 +170784494333,213,0 +170784494382,212,0 +170784494432,212,0 +170784494480,213,0 +170784494527,213,0 +170784494575,212,0 +170784494623,212,0 +170784494671,213,0 +170784494721,213,0 +170784494768,213,0 +170784494816,213,0 +170784494864,213,0 +170784494912,213,0 +170784494960,213,0 +170784495008,213,0 +170784495056,213,0 +170784495104,213,0 +170784495153,213,0 +170784495201,213,0 +170784495249,214,0 +170784495297,213,0 +170784495345,213,0 +170784495392,212,0 +170784495440,213,0 +170784495488,213,0 +170784495538,213,0 +170784495586,213,0 +170784495634,213,0 +170784495681,213,0 +170784495729,213,0 +170784495777,213,0 +170784495825,213,0 +170784495873,213,0 +170784495922,213,0 +170784495970,213,0 +170784496018,213,0 +170784496066,213,0 +170784496114,214,0 +170784496162,213,0 +170784496211,213,0 +170784496261,213,0 +170784496310,213,0 +170784496358,213,0 +170784496406,213,0 +170784496455,213,0 +170784496503,213,0 +170784496551,213,0 +170784496601,213,0 +170784496649,213,0 +170784496696,213,0 +170784496744,213,0 +170784496792,213,0 +170784496840,213,0 +170784496888,213,0 +170784496936,214,0 +170784496984,214,0 +170784497031,214,0 +170784497079,214,0 +170784497127,213,0 +170784497175,213,0 +170784497223,213,0 +170784497273,213,0 +170784497321,213,0 +170784497369,213,0 +170784497417,213,0 +170784497465,213,0 +170784497513,213,0 +170784497561,213,0 +170784497609,213,0 +170784497658,213,0 +170784497706,213,0 +170784497754,213,0 +170784497802,213,0 +170784497852,213,0 +170784497899,214,0 +170784497947,213,0 +170784497995,214,0 +170784498045,213,0 +170784498093,212,0 +170784498141,213,0 +170784498188,213,0 +170784498236,213,0 +170784498284,213,0 +170784498332,213,0 +170784498380,213,0 +170784498428,213,0 +170784498476,213,0 +170784498524,213,0 +170784498572,213,0 +170784498620,213,0 +170784498668,213,0 +170784498718,214,0 +170784498766,214,0 +170784498814,214,0 +170784498863,214,0 +170784498911,214,0 +170784498959,214,0 +170784499007,213,0 +170784499057,213,0 +170784499105,213,0 +170784499154,213,0 +170784499204,213,0 +170784499253,213,0 +170784499303,213,0 +170784499351,213,0 +170784499399,213,0 +170784499446,213,0 +170784499494,213,0 +170784499542,213,0 +170784499590,213,0 +170784499640,214,0 +170784499688,214,0 +170784499737,214,0 +170784499785,214,0 +170784499833,214,0 +170784499883,214,0 +170784499931,212,0 +170784499980,213,0 +170784500028,213,0 +170784500076,213,0 +170784500126,213,0 +170784500175,213,0 +170784500223,213,0 +170784500272,213,0 +170784500322,213,0 +170784500372,213,0 +170784500420,213,0 +170784500467,213,0 +170784500517,213,0 +170784500565,213,0 +170784500614,213,0 +170784500662,213,0 +170784500710,214,0 +170784500758,214,0 +170784500806,213,0 +170784500854,213,0 +170784500902,213,0 +170784500952,213,0 +170784501000,213,0 +170784501049,213,0 +170784501097,213,0 +170784501147,213,0 +170784501195,213,0 +170784501244,213,0 +170784501292,214,0 +170784501342,214,0 +170784501391,213,0 +170784501439,214,0 +170784501487,213,0 +170784501535,214,0 +170784501583,214,0 +170784501631,214,0 +170784501680,214,0 +170784501730,213,0 +170784501778,213,0 +170784501826,213,0 +170784501874,213,0 +170784501921,213,0 +170784501971,213,0 +170784502019,213,0 +170784502067,213,0 +170784502114,213,0 +170784502162,213,0 +170784502210,213,0 +170784502258,213,0 +170784502306,213,0 +170784502354,213,0 +170784502402,213,0 +170784502451,214,0 +170784502499,214,0 +170784502547,214,0 +170784502595,214,0 +170784502645,213,0 +170784502693,213,0 +170784502741,213,0 +170784502789,213,0 +170784502837,213,0 +170784502886,213,0 +170784502934,213,0 +170784502982,213,0 +170784503030,213,0 +170784503079,213,0 +170784503129,213,0 +170784503177,213,0 +170784503225,214,0 +170784503274,214,0 +170784503322,213,0 +170784503372,214,0 +170784503420,214,0 +170784503468,214,0 +170784503515,214,0 +170784503565,213,0 +170784503613,213,0 +170784503661,213,0 +170784503708,213,0 +170784503756,213,0 +170784503804,213,0 +170784503852,213,0 +170784503900,213,0 +170784503950,213,0 +170784503998,213,0 +170784504047,214,0 +170784504097,214,0 +170784504146,214,0 +170784504196,214,0 +170784504244,214,0 +170784504293,214,0 +170784504341,214,0 +170784504391,214,0 +170784504438,214,0 +170784504486,213,0 +170784504536,213,0 +170784504585,213,0 +170784504633,213,0 +170784504681,213,0 +170784504731,213,0 +170784504780,213,0 +170784504828,213,0 +170784504876,213,0 +170784504924,213,0 +170784504972,214,0 +170784505021,214,0 +170784505069,214,0 +170784505117,214,0 +170784505165,214,0 +170784505215,214,0 +170784505263,214,0 +170784505311,214,0 +170784505358,213,0 +170784505408,213,0 +170784505456,213,0 +170784505504,213,0 +170784505552,213,0 +170784505601,213,0 +170784505649,214,0 +170784505699,214,0 +170784505748,214,0 +170784505796,214,0 +170784505846,214,0 +170784505894,214,0 +170784505942,214,0 +170784505989,214,0 +170784506037,214,0 +170784506085,214,0 +170784506133,214,0 +170784506183,214,0 +170784506231,214,0 +170784506279,213,0 +170784506328,213,0 +170784506376,213,0 +170784506424,213,0 +170784506473,213,0 +170784506521,213,0 +170784506569,213,0 +170784506617,214,0 +170784506667,214,0 +170784506716,213,0 +170784506764,214,0 +170784506814,213,0 +170784506862,214,0 +170784506910,214,0 +170784506959,214,0 +170784507008,214,0 +170784507056,214,0 +170784507104,214,0 +170784507152,213,0 +170784507200,213,0 +170784507248,213,0 +170784507296,213,0 +170784507344,213,0 +170784507392,213,0 +170784507440,213,0 +170784507488,213,0 +170784507536,213,0 +170784507585,213,0 +170784507633,213,0 +170784507683,213,0 +170784507731,213,0 +170784507780,213,0 +170784507828,213,0 +170784507876,214,0 +170784507924,214,0 +170784507973,214,0 +170784508021,214,0 +170784508069,214,0 +170784508116,213,0 +170784508164,213,0 +170784508214,213,0 +170784508263,213,0 +170784508313,213,0 +170784508361,213,0 +170784508409,213,0 +170784508458,213,0 +170784508506,213,0 +170784508554,213,0 +170784508602,213,0 +170784508650,213,0 +170784508698,213,0 +170784508746,214,0 +170784508794,214,0 +170784508842,214,0 +170784508890,213,0 +170784508939,213,0 +170784508987,213,0 +170784509035,213,0 +170784509085,212,0 +170784509133,213,0 +170784509182,213,0 +170784509232,213,0 +170784509281,213,0 +170784509329,213,0 +170784509377,213,0 +170784509425,213,0 +170784509473,213,0 +170784509522,213,0 +170784509572,214,0 +170784509620,214,0 +170784509668,214,0 +170784509717,214,0 +170784509767,213,0 +170784509816,214,0 +170784509864,214,0 +170784509912,213,0 +170784509960,212,0 +170784510010,212,0 +170784510058,213,0 +170784510107,213,0 +170784510157,213,0 +170784510205,212,0 +170784510254,213,0 +170784510304,213,0 +170784510352,213,0 +170784510400,213,0 +170784510449,213,0 +170784510499,213,0 +170784510548,213,0 +170784510596,213,0 +170784510644,213,0 +170784510692,213,0 +170784510742,213,0 +170784510789,214,0 +170784510839,213,0 +170784510888,213,0 +170784510936,212,0 +170784510984,213,0 +170784511032,213,0 +170784511080,213,0 +170784511128,213,0 +170784511176,212,0 +170784511226,213,0 +170784511274,213,0 +170784511323,213,0 +170784511373,213,0 +170784511422,213,0 +170784511470,213,0 +170784511518,213,0 +170784511566,213,0 +170784511614,213,0 +170784511663,214,0 +170784511711,213,0 +170784511760,213,0 +170784511808,213,0 +170784511858,212,0 +170784511907,213,0 +170784511955,213,0 +170784512005,213,0 +170784512053,213,0 +170784512100,213,0 +170784512148,213,0 +170784512198,213,0 +170784512246,213,0 +170784512295,213,0 +170784512343,213,0 +170784512391,213,0 +170784512439,213,0 +170784512489,213,0 +170784512537,214,0 +170784512584,214,0 +170784512632,213,0 +170784512680,213,0 +170784512728,212,0 +170784512778,213,0 +170784512827,213,0 +170784512875,213,0 +170784512925,213,0 +170784512972,213,0 +170784513020,213,0 +170784513068,213,0 +170784513116,213,0 +170784513164,213,0 +170784513214,213,0 +170784513261,213,0 +170784513310,214,0 +170784513357,214,0 +170784513405,214,0 +170784513453,214,0 +170784513501,214,0 +170784513551,213,0 +170784513599,213,0 +170784513647,213,0 +170784513695,213,0 +170784513743,213,0 +170784513790,213,0 +170784513838,213,0 +170784513886,213,0 +170784513934,213,0 +170784513982,213,0 +170784514029,213,0 +170784514077,214,0 +170784514125,213,0 +170784514173,214,0 +170784514221,214,0 +170784514268,214,0 +170784514316,214,0 +170784514364,214,0 +170784514412,214,0 +170784514460,213,0 +170784514508,213,0 +170784514556,213,0 +170784514603,213,0 +170784514651,213,0 +170784514699,213,0 +170784514747,213,0 +170784514795,213,0 +170784514843,213,0 +170784514892,213,0 +170784514940,213,0 +170784514989,213,0 +170784515037,214,0 +170784515085,214,0 +170784515133,214,0 +170784515181,214,0 +170784515229,214,0 +170784515277,214,0 +170784515325,214,0 +170784515374,213,0 +170784515424,213,0 +170784515472,213,0 +170784515519,213,0 +170784515567,213,0 +170784515615,213,0 +170784515663,213,0 +170784515713,213,0 +170784515762,213,0 +170784515810,213,0 +170784515860,213,0 +170784515908,214,0 +170784515955,213,0 +170784516003,214,0 +170784516053,214,0 +170784516101,214,0 +170784516149,214,0 +170784516198,214,0 +170784516248,213,0 +170784516296,213,0 +170784516343,213,0 +170784516393,213,0 +170784516441,213,0 +170784516489,213,0 +170784516537,213,0 +170784516585,213,0 +170784516633,213,0 +170784516681,213,0 +170784516728,213,0 +170784516776,213,0 +170784516824,213,0 +170784516872,214,0 +170784516920,214,0 +170784516968,214,0 +170784517016,213,0 +170784517064,214,0 +170784517112,214,0 +170784517160,213,0 +170784517209,213,0 +170784517257,213,0 +170784517305,213,0 +170784517353,213,0 +170784517403,213,0 +170784517452,213,0 +170784517502,213,0 +170784517550,213,0 +170784517598,213,0 +170784517646,213,0 +170784517694,213,0 +170784517743,213,0 +170784517793,213,0 +170784517840,213,0 +170784517888,213,0 +170784517936,213,0 +170784517984,213,0 +170784518032,214,0 +170784518079,214,0 +170784518127,213,0 +170784518175,213,0 +170784518223,212,0 +170784518272,213,0 +170784518320,213,0 +170784518368,213,0 +170784518416,213,0 +170784518464,213,0 +170784518512,213,0 +170784518560,213,0 +170784518607,213,0 +170784518655,213,0 +170784518703,214,0 +170784518751,213,0 +170784518799,213,0 +170784518847,213,0 +170784518894,213,0 +170784518942,213,0 +170784518990,213,0 +170784519038,213,0 +170784519086,212,0 +170784519135,213,0 +170784519183,212,0 +170784519232,213,0 +170784519280,213,0 +170784519328,213,0 +170784519377,213,0 +170784519427,213,0 +170784519475,213,0 +170784519524,213,0 +170784519574,213,0 +170784519622,213,0 +170784519670,213,0 +170784519718,213,0 +170784519767,213,0 +170784519815,214,0 +170784519863,213,0 +170784519911,213,0 +170784519961,212,0 +170784520010,212,0 +170784520060,213,0 +170784520109,213,0 +170784520159,213,0 +170784520208,213,0 +170784520258,213,0 +170784520306,213,0 +170784520354,213,0 +170784520403,213,0 +170784520453,213,0 +170784520501,213,0 +170784520550,213,0 +170784520600,213,0 +170784520649,213,0 +170784520697,213,0 +170784520745,213,0 +170784520795,214,0 +170784520843,213,0 +170784520891,213,0 +170784520939,213,0 +170784520988,213,0 +170784521036,213,0 +170784521084,213,0 +170784521132,213,0 +170784521180,213,0 +170784521228,213,0 +170784521278,213,0 +170784521325,213,0 +170784521373,213,0 +170784521423,214,0 +170784521471,213,0 +170784521519,214,0 +170784521569,213,0 +170784521618,213,0 +170784521666,214,0 +170784521716,213,0 +170784521764,213,0 +170784521813,213,0 +170784521863,213,0 +170784521911,213,0 +170784521958,213,0 +170784522008,213,0 +170784522057,213,0 +170784522105,213,0 +170784522155,213,0 +170784522203,213,0 +170784522250,213,0 +170784522298,213,0 +170784522346,213,0 +170784522396,213,0 +170784522444,213,0 +170784522493,213,0 +170784522541,214,0 +170784522589,214,0 +170784522638,213,0 +170784522688,213,0 +170784522737,213,0 +170784522785,213,0 +170784522833,213,0 +170784522881,213,0 +170784522931,213,0 +170784522980,213,0 +170784523030,213,0 +170784523078,213,0 +170784523126,214,0 +170784523173,214,0 +170784523221,214,0 +170784523269,214,0 +170784523317,214,0 +170784523365,214,0 +170784523413,214,0 +170784523461,213,0 +170784523509,214,0 +170784523557,213,0 +170784523604,213,0 +170784523652,213,0 +170784523700,213,0 +170784523748,213,0 +170784523796,213,0 +170784523844,213,0 +170784523892,213,0 +170784523939,214,0 +170784523987,213,0 +170784524035,214,0 +170784524084,214,0 +170784524132,214,0 +170784524180,214,0 +170784524228,214,0 +170784524278,214,0 +170784524326,213,0 +170784524375,214,0 +170784524424,213,0 +170784524472,213,0 +170784524522,213,0 +170784524571,213,0 +170784524621,213,0 +170784524670,213,0 +170784524720,213,0 +170784524768,213,0 +170784524815,213,0 +170784524863,214,0 +170784524911,214,0 +170784524959,214,0 +170784525009,214,0 +170784525057,214,0 +170784525105,213,0 +170784525152,213,0 +170784525202,214,0 +170784525250,214,0 +170784525299,214,0 +170784525347,213,0 +170784525395,213,0 +170784525443,213,0 +170784525491,213,0 +170784525539,213,0 +170784525587,213,0 +170784525635,213,0 +170784525683,213,0 +170784525731,213,0 +170784525778,213,0 +170784525826,213,0 +170784525874,213,0 +170784525924,213,0 +170784525973,214,0 +170784526021,214,0 +170784526071,214,0 +170784526119,213,0 +170784526166,214,0 +170784526214,214,0 +170784526264,213,0 +170784526313,213,0 +170784526363,213,0 +170784526411,213,0 +170784526459,213,0 +170784526508,213,0 +170784526558,213,0 +170784526606,213,0 +170784526654,213,0 +170784526701,213,0 +170784526749,213,0 +170784526797,213,0 +170784526845,213,0 +170784526893,214,0 +170784526942,214,0 +170784526991,213,0 +170784527041,214,0 +170784527090,213,0 +170784527138,214,0 +170784527186,213,0 +170784527234,212,0 +170784527282,212,0 +170784527329,212,0 +170784527377,213,0 +170784527425,213,0 +170784527475,212,0 +170784527522,213,0 +170784527570,213,0 +170784527618,213,0 +170784527668,213,0 +170784527717,213,0 +170784527765,213,0 +170784527814,213,0 +170784527862,213,0 +170784527910,213,0 +170784527960,213,0 +170784528008,214,0 +170784528056,214,0 +170784528103,213,0 +170784528153,212,0 +170784528201,213,0 +170784528249,213,0 +170784528297,213,0 +170784528345,213,0 +170784528393,213,0 +170784528442,213,0 +170784528492,213,0 +170784528540,213,0 +170784528587,213,0 +170784528637,213,0 +170784528686,213,0 +170784528736,213,0 +170784528785,214,0 +170784528833,213,0 +170784528881,213,0 +170784528929,213,0 +170784528979,213,0 +170784529027,213,0 +170784529076,213,0 +170784529124,213,0 +170784529172,213,0 +170784529221,212,0 +170784529269,213,0 +170784529317,213,0 +170784529365,213,0 +170784529413,213,0 +170784529461,213,0 +170784529509,213,0 +170784529557,213,0 +170784529605,213,0 +170784529652,213,0 +170784529700,213,0 +170784529750,213,0 +170784529798,213,0 +170784529846,213,0 +170784529895,213,0 +170784529944,213,0 +170784529994,212,0 +170784530042,213,0 +170784530090,213,0 +170784530139,213,0 +170784530187,213,0 +170784530235,213,0 +170784530283,213,0 +170784530331,213,0 +170784530378,213,0 +170784530428,213,0 +170784530477,213,0 +170784530525,214,0 +170784530575,214,0 +170784530623,214,0 +170784530671,214,0 +170784530718,214,0 +170784530768,214,0 +170784530816,213,0 +170784530864,213,0 +170784530911,213,0 +170784530959,213,0 +170784531007,213,0 +170784531055,213,0 +170784531104,213,0 +170784531152,213,0 +170784531200,213,0 +170784531248,213,0 +170784531298,213,0 +170784531346,213,0 +170784531394,214,0 +170784531443,214,0 +170784531491,214,0 +170784531540,213,0 +170784531588,213,0 +170784531638,214,0 +170784531686,214,0 +170784531735,213,0 +170784531783,212,0 +170784531833,213,0 +170784531882,213,0 +170784531932,213,0 +170784531981,213,0 +170784532029,213,0 +170784532079,213,0 +170784532127,213,0 +170784532174,213,0 +170784532222,213,0 +170784532272,213,0 +170784532320,213,0 +170784532368,213,0 +170784532417,214,0 +170784532467,213,0 +170784532515,213,0 +170784532563,213,0 +170784532611,214,0 +170784532659,213,0 +170784532707,213,0 +170784532755,212,0 +170784532803,213,0 +170784532851,213,0 +170784532899,213,0 +170784532946,213,0 +170784532994,213,0 +170784533042,213,0 +170784533092,213,0 +170784533140,213,0 +170784533188,213,0 +170784533235,213,0 +170784533285,214,0 +170784533334,214,0 +170784533382,213,0 +170784533430,214,0 +170784533478,214,0 +170784533526,214,0 +170784533574,213,0 +170784533622,212,0 +170784533670,212,0 +170784533717,212,0 +170784533765,212,0 +170784533813,213,0 +170784533861,213,0 +170784533910,213,0 +170784533958,213,0 +170784534006,213,0 +170784534054,213,0 +170784534104,213,0 +170784534151,213,0 +170784534201,214,0 +170784534249,213,0 +170784534298,213,0 +170784534346,214,0 +170784534394,213,0 +170784534442,214,0 +170784534490,212,0 +170784534540,212,0 +170784534589,212,0 +170784534637,213,0 +170784534686,213,0 +170784534736,213,0 +170784534784,213,0 +170784534833,213,0 +170784534881,213,0 +170784534929,213,0 +170784534979,213,0 +170784535028,213,0 +170784535078,213,0 +170784535128,213,0 +170784535177,213,0 +170784535227,213,0 +170784535276,213,0 +170784535324,214,0 +170784535372,213,0 +170784535420,212,0 +170784535468,212,0 +170784535516,213,0 +170784535566,213,0 +170784535615,213,0 +170784535663,213,0 +170784535712,213,0 +170784535762,213,0 +170784535810,213,0 +170784535858,213,0 +170784535906,213,0 +170784535954,213,0 +170784536002,213,0 +170784536051,213,0 +170784536101,213,0 +170784536150,214,0 +170784536198,214,0 +170784536246,214,0 +170784536294,213,0 +170784536343,212,0 +170784536393,213,0 +170784536443,213,0 +170784536492,213,0 +170784536542,213,0 +170784536590,213,0 +170784536639,213,0 +170784536689,213,0 +170784536737,213,0 +170784536785,213,0 +170784536833,213,0 +170784536882,213,0 +170784536930,214,0 +170784536980,213,0 +170784537029,214,0 +170784537077,214,0 +170784537127,214,0 +170784537175,214,0 +170784537223,213,0 +170784537272,213,0 +170784537322,213,0 +170784537372,213,0 +170784537421,213,0 +170784537471,213,0 +170784537520,213,0 +170784537570,213,0 +170784537617,213,0 +170784537665,213,0 +170784537713,213,0 +170784537761,214,0 +170784537810,214,0 +170784537858,214,0 +170784537906,214,0 +170784537954,214,0 +170784538003,214,0 +170784538051,214,0 +170784538099,213,0 +170784538147,212,0 +170784538195,212,0 +170784538242,213,0 +170784538290,213,0 +170784538338,213,0 +170784538386,213,0 +170784538434,213,0 +170784538482,213,0 +170784538531,213,0 +170784538579,213,0 +170784538627,213,0 +170784538675,213,0 +170784538723,214,0 +170784538770,213,0 +170784538818,214,0 +170784538866,214,0 +170784538914,213,0 +170784538964,214,0 +170784539012,213,0 +170784539059,213,0 +170784539107,212,0 +170784539155,213,0 +170784539203,213,0 +170784539251,213,0 +170784539299,213,0 +170784539347,213,0 +170784539394,213,0 +170784539444,213,0 +170784539492,213,0 +170784539540,213,0 +170784539589,213,0 +170784539637,213,0 +170784539685,214,0 +170784539733,214,0 +170784539781,213,0 +170784539829,214,0 +170784539876,213,0 +170784539924,213,0 +170784539972,213,0 +170784540020,213,0 +170784540070,212,0 +170784540118,213,0 +170784540165,213,0 +170784540213,213,0 +170784540263,213,0 +170784540311,213,0 +170784540359,213,0 +170784540407,213,0 +170784540455,213,0 +170784540503,213,0 +170784540551,213,0 +170784540598,213,0 +170784540646,213,0 +170784540694,213,0 +170784540742,213,0 +170784540790,213,0 +170784540840,213,0 +170784540888,212,0 +170784540935,213,0 +170784540983,213,0 +170784541033,213,0 +170784541081,213,0 +170784541130,213,0 +170784541178,213,0 +170784541226,213,0 +170784541276,213,0 +170784541324,213,0 +170784541372,213,0 +170784541419,213,0 +170784541469,213,0 +170784541517,214,0 +170784541566,213,0 +170784541616,214,0 +170784541664,213,0 +170784541713,213,0 +170784541761,213,0 +170784541809,213,0 +170784541857,213,0 +170784541905,213,0 +170784541955,213,0 +170784542002,213,0 +170784542050,213,0 +170784542100,213,0 +170784542148,213,0 +170784542196,213,0 +170784542244,214,0 +170784542292,213,0 +170784542340,214,0 +170784542388,214,0 +170784542436,214,0 +170784542485,214,0 +170784542533,214,0 +170784542582,213,0 +170784542630,213,0 +170784542678,213,0 +170784542726,213,0 +170784542774,213,0 +170784542824,213,0 +170784542872,213,0 +170784542920,213,0 +170784542968,213,0 +170784543017,214,0 +170784543065,214,0 +170784543113,214,0 +170784543161,214,0 +170784543209,214,0 +170784543257,214,0 +170784543305,214,0 +170784543354,214,0 +170784543402,214,0 +170784543452,214,0 +170784543500,214,0 +170784543549,213,0 +170784543599,213,0 +170784543647,213,0 +170784543695,213,0 +170784543743,213,0 +170784543793,213,0 +170784543841,213,0 +170784543889,213,0 +170784543937,213,0 +170784543985,213,0 +170784544033,213,0 +170784544081,213,0 +170784544128,214,0 +170784544176,214,0 +170784544224,213,0 +170784544272,214,0 +170784544320,214,0 +170784544370,214,0 +170784544418,213,0 +170784544467,213,0 +170784544515,213,0 +170784544565,213,0 +170784544613,213,0 +170784544661,213,0 +170784544710,213,0 +170784544758,213,0 +170784544808,213,0 +170784544856,213,0 +170784544904,213,0 +170784544952,214,0 +170784545000,213,0 +170784545047,213,0 +170784545095,214,0 +170784545143,214,0 +170784545191,214,0 +170784545239,214,0 +170784545287,214,0 +170784545334,214,0 +170784545382,213,0 +170784545430,213,0 +170784545478,213,0 +170784545526,213,0 +170784545575,213,0 +170784545625,213,0 +170784545673,213,0 +170784545721,213,0 +170784545770,213,0 +170784545818,213,0 +170784545866,213,0 +170784545914,213,0 +170784545962,213,0 +170784546010,214,0 +170784546057,214,0 +170784546105,213,0 +170784546155,214,0 +170784546203,214,0 +170784546252,213,0 +170784546302,213,0 +170784546350,213,0 +170784546398,213,0 +170784546446,213,0 +170784546493,213,0 +170784546543,213,0 +170784546591,213,0 +170784546640,213,0 +170784546690,213,0 +170784546738,214,0 +170784546786,214,0 +170784546834,214,0 +170784546882,214,0 +170784546931,214,0 +170784546979,214,0 +170784547027,214,0 +170784547075,214,0 +170784547122,213,0 +170784547170,213,0 +170784547218,213,0 +170784547266,213,0 +170784547314,213,0 +170784547363,213,0 +170784547413,213,0 +170784547462,213,0 +170784547510,213,0 +170784547560,213,0 +170784547608,214,0 +170784547656,213,0 +170784547705,214,0 +170784547755,214,0 +170784547803,214,0 +170784547851,214,0 +170784547898,214,0 +170784547946,214,0 +170784547994,214,0 +170784548042,214,0 +170784548092,213,0 +170784548141,213,0 +170784548189,213,0 +170784548237,213,0 +170784548286,213,0 +170784548334,213,0 +170784548382,213,0 +170784548430,213,0 +170784548478,213,0 +170784548528,214,0 +170784548577,213,0 +170784548625,213,0 +170784548673,214,0 +170784548721,214,0 +170784548770,214,0 +170784548818,213,0 +170784548867,214,0 +170784548917,214,0 +170784548965,214,0 +170784549014,213,0 +170784549062,212,0 +170784549110,213,0 +170784549158,213,0 +170784549208,213,0 +170784549257,213,0 +170784549306,213,0 +170784549354,213,0 +170784549402,213,0 +170784549452,213,0 +170784549500,213,0 +170784549547,213,0 +170784549595,213,0 +170784549643,213,0 +170784549693,214,0 +170784549741,214,0 +170784549790,214,0 +170784549840,214,0 +170784549889,213,0 +170784549937,213,0 +170784549985,213,0 +170784550033,213,0 +170784550081,213,0 +170784550129,213,0 +170784550177,213,0 +170784550225,213,0 +170784550274,213,0 +170784550322,213,0 +170784550370,213,0 +170784550418,213,0 +170784550466,213,0 +170784550514,214,0 +170784550563,214,0 +170784550613,213,0 +170784550661,213,0 +170784550709,213,0 +170784550756,213,0 +170784550804,213,0 +170784550852,212,0 +170784550900,212,0 +170784550948,213,0 +170784550996,213,0 +170784551044,213,0 +170784551092,213,0 +170784551141,213,0 +170784551191,213,0 +170784551239,213,0 +170784551286,213,0 +170784551334,213,0 +170784551384,213,0 +170784551434,213,0 +170784551483,214,0 +170784551531,213,0 +170784551579,213,0 +170784551627,213,0 +170784551675,214,0 +170784551724,213,0 +170784551772,213,0 +170784551820,213,0 +170784551868,213,0 +170784551916,213,0 +170784551964,213,0 +170784552014,213,0 +170784552063,213,0 +170784552113,213,0 +170784552161,213,0 +170784552209,213,0 +170784552257,213,0 +170784552304,213,0 +170784552354,213,0 +170784552402,213,0 +170784552450,213,0 +170784552498,213,0 +170784552545,214,0 +170784552595,213,0 +170784552643,213,0 +170784552690,213,0 +170784552738,213,0 +170784552788,213,0 +170784552836,213,0 +170784552884,213,0 +170784552932,213,0 +170784552980,213,0 +170784553028,213,0 +170784553076,213,0 +170784553124,213,0 +170784553172,213,0 +170784553219,214,0 +170784553269,214,0 +170784553317,214,0 +170784553367,214,0 +170784553416,214,0 +170784553464,213,0 +170784553512,213,0 +170784553560,213,0 +170784553608,213,0 +170784553656,213,0 +170784553706,213,0 +170784553755,213,0 +170784553803,213,0 +170784553851,213,0 +170784553899,213,0 +170784553947,213,0 +170784553996,213,0 +170784554044,213,0 +170784554094,213,0 +170784554142,214,0 +170784554191,214,0 +170784554241,213,0 +170784554289,214,0 +170784554337,213,0 +170784554385,214,0 +170784554434,213,0 +170784554482,212,0 +170784554532,213,0 +170784554581,213,0 +170784554629,213,0 +170784554677,213,0 +170784554725,213,0 +170784554773,213,0 +170784554822,213,0 +170784554872,213,0 +170784554920,213,0 +170784554968,213,0 +170784555016,213,0 +170784555065,213,0 +170784555115,213,0 +170784555163,213,0 +170784555211,214,0 +170784555260,214,0 +170784555308,213,0 +170784555358,213,0 +170784555407,213,0 +170784555457,213,0 +170784555505,213,0 +170784555554,213,0 +170784555604,213,0 +170784555652,213,0 +170784555700,213,0 +170784555748,213,0 +170784555797,213,0 +170784555845,213,0 +170784555893,213,0 +170784555941,213,0 +170784555989,213,0 +170784556037,213,0 +170784556086,213,0 +170784556134,213,0 +170784556182,213,0 +170784556230,213,0 +170784556278,213,0 +170784556326,212,0 +170784556374,213,0 +170784556422,212,0 +170784556472,213,0 +170784556520,213,0 +170784556568,212,0 +170784556616,213,0 +170784556663,213,0 +170784556711,212,0 +170784556759,213,0 +170784556809,212,0 +170784556857,213,0 +170784556906,213,0 +170784556954,213,0 +170784557002,213,0 +170784557052,213,0 +170784557100,214,0 +170784557149,213,0 +170784557197,212,0 +170784557245,212,0 +170784557293,213,0 +170784557341,213,0 +170784557389,213,0 +170784557437,212,0 +170784557486,213,0 +170784557536,213,0 +170784557585,213,0 +170784557633,213,0 +170784557681,213,0 +170784557731,213,0 +170784557780,213,0 +170784557828,213,0 +170784557878,213,0 +170784557927,213,0 +170784557975,213,0 +170784558025,214,0 +170784558074,213,0 +170784558122,212,0 +170784558171,212,0 +170784558219,213,0 +170784558267,213,0 +170784558317,213,0 +170784558365,213,0 +170784558412,213,0 +170784558462,213,0 +170784558510,213,0 +170784558558,213,0 +170784558607,213,0 +170784558655,213,0 +170784558705,213,0 +170784558753,213,0 +170784558802,213,0 +170784558850,214,0 +170784558898,214,0 +170784558946,213,0 +170784558995,212,0 +170784559045,213,0 +170784559093,213,0 +170784559142,213,0 +170784559192,213,0 +170784559240,213,0 +170784559289,213,0 +170784559339,213,0 +170784559388,213,0 +170784559436,213,0 +170784559484,213,0 +170784559532,213,0 +170784559582,213,0 +170784559630,214,0 +170784559678,213,0 +170784559726,214,0 +170784559774,214,0 +170784559823,213,0 +170784559871,213,0 +170784559920,213,0 +170784559968,213,0 +170784560016,213,0 +170784560064,213,0 +170784560112,213,0 +170784560160,213,0 +170784560208,213,0 +170784560256,213,0 +170784560304,213,0 +170784560352,213,0 +170784560401,214,0 +170784560451,214,0 +170784560499,214,0 +170784560547,214,0 +170784560595,214,0 +170784560643,214,0 +170784560690,213,0 +170784560738,213,0 +170784560786,213,0 +170784560836,213,0 +170784560884,213,0 +170784560931,213,0 +170784560981,213,0 +170784561029,213,0 +170784561077,213,0 +170784561124,213,0 +170784561172,214,0 +170784561220,214,0 +170784561268,214,0 +170784561316,214,0 +170784561364,214,0 +170784561412,214,0 +170784561460,214,0 +170784561508,214,0 +170784561557,214,0 +170784561605,214,0 +170784561653,213,0 +170784561701,213,0 +170784561749,213,0 +170784561797,213,0 +170784561845,213,0 +170784561893,213,0 +170784561941,213,0 +170784561988,213,0 +170784562038,213,0 +170784562087,213,0 +170784562135,213,0 +170784562185,213,0 +170784562234,214,0 +170784562282,214,0 +170784562330,213,0 +170784562380,214,0 +170784562428,214,0 +170784562476,214,0 +170784562524,214,0 +170784562571,214,0 +170784562619,214,0 +170784562667,214,0 +170784562717,214,0 +170784562765,214,0 +170784562813,214,0 +170784562861,214,0 +170784562909,214,0 +170784562957,214,0 +170784563005,214,0 +170784563053,213,0 +170784563102,213,0 +170784563150,213,0 +170784563200,213,0 +170784563248,213,0 +170784563296,213,0 +170784563345,213,0 +170784563393,213,0 +170784563443,213,0 +170784563491,213,0 +170784563539,213,0 +170784563587,213,0 +170784563635,213,0 +170784563683,213,0 +170784563731,213,0 +170784563780,214,0 +170784563828,214,0 +170784563877,214,0 +170784563926,213,0 +170784563976,213,0 +170784564024,213,0 +170784564073,213,0 +170784564121,213,0 +170784564171,213,0 +170784564218,213,0 +170784564268,213,0 +170784564316,213,0 +170784564364,213,0 +170784564413,213,0 +170784564463,213,0 +170784564511,214,0 +170784564559,213,0 +170784564606,213,0 +170784564654,214,0 +170784564702,214,0 +170784564752,214,0 +170784564800,214,0 +170784564847,213,0 +170784564895,212,0 +170784564943,213,0 +170784564991,213,0 +170784565039,213,0 +170784565087,213,0 +170784565135,213,0 +170784565184,213,0 +170784565232,213,0 +170784565282,213,0 +170784565331,213,0 +170784565379,213,0 +170784565428,214,0 +170784565476,214,0 +170784565526,214,0 +170784565574,213,0 +170784565622,214,0 +170784565670,214,0 +170784565717,214,0 +170784565765,213,0 +170784565815,213,0 +170784565863,213,0 +170784565911,213,0 +170784565959,213,0 +170784566008,213,0 +170784566057,213,0 +170784566107,213,0 +170784566155,213,0 +170784566203,213,0 +170784566251,213,0 +170784566299,213,0 +170784566347,214,0 +170784566395,213,0 +170784566444,214,0 +170784566493,214,0 +170784566541,214,0 +170784566589,214,0 +170784566637,213,0 +170784566687,213,0 +170784566735,213,0 +170784566784,213,0 +170784566832,213,0 +170784566880,213,0 +170784566928,213,0 +170784566976,213,0 +170784567023,213,0 +170784567071,213,0 +170784567119,213,0 +170784567167,213,0 +170784567215,213,0 +170784567265,213,0 +170784567312,213,0 +170784567360,214,0 +170784567410,214,0 +170784567458,214,0 +170784567507,214,0 +170784567557,213,0 +170784567606,213,0 +170784567654,213,0 +170784567702,213,0 +170784567751,213,0 +170784567801,213,0 +170784567849,213,0 +170784567898,213,0 +170784567946,213,0 +170784567994,213,0 +170784568042,213,0 +170784568091,213,0 +170784568139,213,0 +170784568189,213,0 +170784568237,214,0 +170784568284,214,0 +170784568332,214,0 +170784568380,214,0 +170784568428,214,0 +170784568476,213,0 +170784568525,213,0 +170784568573,213,0 +170784568623,213,0 +170784568672,213,0 +170784568720,213,0 +170784568769,213,0 +170784568817,213,0 +170784568865,213,0 +170784568913,213,0 +170784568963,213,0 +170784569010,213,0 +170784569060,214,0 +170784569108,213,0 +170784569157,214,0 +170784569205,214,0 +170784569255,214,0 +170784569304,213,0 +170784569352,213,0 +170784569400,213,0 +170784569449,213,0 +170784569499,213,0 +170784569548,213,0 +170784569596,213,0 +170784569644,213,0 +170784569692,213,0 +170784569740,213,0 +170784569788,213,0 +170784569836,213,0 +170784569884,213,0 +170784569933,213,0 +170784569981,213,0 +170784570031,214,0 +170784570079,214,0 +170784570127,214,0 +170784570174,214,0 +170784570224,214,0 +170784570272,213,0 +170784570320,213,0 +170784570368,213,0 +170784570416,213,0 +170784570464,213,0 +170784570512,213,0 +170784570561,213,0 +170784570610,213,0 +170784570658,213,0 +170784570706,213,0 +170784570754,213,0 +170784570804,214,0 +170784570852,214,0 +170784570901,214,0 +170784570951,214,0 +170784570998,214,0 +170784571046,214,0 +170784571094,214,0 +170784571144,213,0 +170784571192,213,0 +170784571241,213,0 +170784571289,213,0 +170784571337,213,0 +170784571385,213,0 +170784571433,213,0 +170784571483,213,0 +170784571531,213,0 +170784571578,213,0 +170784571626,213,0 +170784571674,214,0 +170784571724,214,0 +170784571772,214,0 +170784571819,214,0 +170784571867,214,0 +170784571915,214,0 +170784571963,214,0 +170784572011,213,0 +170784572061,213,0 +170784572108,213,0 +170784572158,213,0 +170784572207,213,0 +170784572255,213,0 +170784572305,213,0 +170784572354,213,0 +170784572404,213,0 +170784572452,213,0 +170784572499,213,0 +170784572549,213,0 +170784572599,214,0 +170784572646,213,0 +170784572694,214,0 +170784572742,214,0 +170784572790,214,0 +170784572840,214,0 +170784572888,214,0 +170784572937,213,0 +170784572987,212,0 +170784573035,212,0 +170784573082,213,0 +170784573130,213,0 +170784573178,213,0 +170784573228,213,0 +170784573276,213,0 +170784573323,213,0 +170784573371,213,0 +170784573421,213,0 +170784573469,213,0 +170784573517,213,0 +170784573565,213,0 +170784573613,214,0 +170784573661,214,0 +170784573709,214,0 +170784573758,214,0 +170784573806,213,0 +170784573854,212,0 +170784573902,212,0 +170784573950,213,0 +170784573999,213,0 +170784574049,213,0 +170784574098,213,0 +170784574146,213,0 +170784574194,213,0 +170784574244,213,0 +170784574292,213,0 +170784574339,213,0 +170784574389,213,0 +170784574437,213,0 +170784574485,214,0 +170784574532,214,0 +170784574582,214,0 +170784574630,214,0 +170784574679,213,0 +170784574727,213,0 +170784574775,213,0 +170784574824,213,0 +170784574874,213,0 +170784574922,213,0 +170784574970,213,0 +170784575019,213,0 +170784575069,213,0 +170784575118,213,0 +170784575166,213,0 +170784575216,213,0 +170784575265,213,0 +170784575313,214,0 +170784575363,214,0 +170784575412,214,0 +170784575460,214,0 +170784575510,214,0 +170784575559,213,0 +170784575607,213,0 +170784575657,213,0 +170784575706,213,0 +170784575754,213,0 +170784575802,213,0 +170784575851,213,0 +170784575899,213,0 +170784575947,213,0 +170784575997,213,0 +170784576044,213,0 +170784576092,213,0 +170784576142,213,0 +170784576190,213,0 +170784576238,214,0 +170784576287,214,0 +170784576337,214,0 +170784576385,213,0 +170784576433,213,0 +170784576482,213,0 +170784576530,212,0 +170784576578,213,0 +170784576626,213,0 +170784576674,213,0 +170784576722,213,0 +170784576770,213,0 +170784576818,213,0 +170784576866,213,0 +170784576914,213,0 +170784576963,213,0 +170784577013,213,0 +170784577061,213,0 +170784577110,213,0 +170784577160,214,0 +170784577208,213,0 +170784577256,213,0 +170784577304,214,0 +170784577352,213,0 +170784577401,213,0 +170784577449,213,0 +170784577499,213,0 +170784577547,213,0 +170784577594,213,0 +170784577642,213,0 +170784577690,213,0 +170784577738,213,0 +170784577788,213,0 +170784577837,213,0 +170784577885,213,0 +170784577935,214,0 +170784577984,214,0 +170784578032,214,0 +170784578081,214,0 +170784578131,213,0 +170784578179,214,0 +170784578227,213,0 +170784578275,213,0 +170784578324,213,0 +170784578374,213,0 +170784578423,213,0 +170784578471,213,0 +170784578519,213,0 +170784578567,213,0 +170784578616,213,0 +170784578664,213,0 +170784578714,213,0 +170784578762,213,0 +170784578811,214,0 +170784578859,214,0 +170784578909,214,0 +170784578958,214,0 +170784579008,214,0 +170784579056,214,0 +170784579105,213,0 +170784579153,213,0 +170784579201,213,0 +170784579249,213,0 +170784579298,213,0 +170784579346,213,0 +170784579394,213,0 +170784579442,213,0 +170784579490,213,0 +170784579538,213,0 +170784579586,214,0 +170784579636,213,0 +170784579685,214,0 +170784579735,214,0 +170784579784,214,0 +170784579834,214,0 +170784579883,214,0 +170784579931,214,0 +170784579979,213,0 +170784580029,213,0 +170784580077,213,0 +170784580125,213,0 +170784580173,213,0 +170784580221,213,0 +170784580270,213,0 +170784580318,213,0 +170784580368,213,0 +170784580416,213,0 +170784580463,213,0 +170784580511,213,0 +170784580559,213,0 +170784580609,214,0 +170784580657,214,0 +170784580705,214,0 +170784580754,214,0 +170784580802,214,0 +170784580850,213,0 +170784580898,213,0 +170784580947,213,0 +170784580995,213,0 +170784581045,213,0 +170784581094,213,0 +170784581144,213,0 +170784581192,213,0 +170784581240,213,0 +170784581287,213,0 +170784581335,213,0 +170784581383,214,0 +170784581431,214,0 +170784581481,214,0 +170784581530,214,0 +170784581580,214,0 +170784581627,214,0 +170784581677,214,0 +170784581727,213,0 +170784581776,212,0 +170784581824,213,0 +170784581872,213,0 +170784581920,213,0 +170784581968,213,0 +170784582017,213,0 +170784582067,214,0 +170784582115,213,0 +170784582164,213,0 +170784582212,213,0 +170784582261,213,0 +170784582309,214,0 +170784582357,214,0 +170784582405,214,0 +170784582453,214,0 +170784582503,214,0 +170784582552,214,0 +170784582600,213,0 +170784582648,213,0 +170784582697,213,0 +170784582745,213,0 +170784582795,213,0 +170784582843,213,0 +170784582892,213,0 +170784582940,213,0 +170784582988,213,0 +170784583038,213,0 +170784583086,213,0 +170784583134,213,0 +170784583182,213,0 +170784583230,214,0 +170784583277,214,0 +170784583325,214,0 +170784583373,214,0 +170784583423,213,0 +170784583471,213,0 +170784583519,213,0 +170784583568,213,0 +170784583616,213,0 +170784583666,213,0 +170784583715,213,0 +170784583765,213,0 +170784583814,213,0 +170784583864,213,0 +170784583913,213,0 +170784583961,214,0 +170784584009,214,0 +170784584057,214,0 +170784584105,214,0 +170784584153,214,0 +170784584202,214,0 +170784584252,213,0 +170784584300,213,0 +170784584348,213,0 +170784584395,213,0 +170784584444,213,0 +170784584493,213,0 +170784584542,213,0 +170784584590,213,0 +170784584638,213,0 +170784584686,213,0 +170784584734,213,0 +170784584782,213,0 +170784584830,213,0 +170784584878,213,0 +170784584926,213,0 +170784584974,214,0 +170784585022,213,0 +170784585070,213,0 +170784585118,213,0 +170784585165,213,0 +170784585213,213,0 +170784585261,213,0 +170784585309,213,0 +170784585357,213,0 +170784585407,213,0 +170784585454,213,0 +170784585502,213,0 +170784585550,213,0 +170784585598,213,0 +170784585646,213,0 +170784585694,213,0 +170784585742,213,0 +170784585792,214,0 +170784585840,213,0 +170784585887,213,0 +170784585935,214,0 +170784585983,213,0 +170784586031,213,0 +170784586079,212,0 +170784586127,213,0 +170784586175,213,0 +170784586222,213,0 +170784586270,213,0 +170784586318,213,0 +170784586367,213,0 +170784586415,213,0 +170784586465,213,0 +170784586513,213,0 +170784586560,213,0 +170784586608,213,0 +170784586656,213,0 +170784586704,214,0 +170784586752,213,0 +170784586800,214,0 +170784586847,213,0 +170784586895,213,0 +170784586943,213,0 +170784586991,213,0 +170784587039,213,0 +170784587087,213,0 +170784587135,213,0 +170784587183,213,0 +170784587230,213,0 +170784587280,213,0 +170784587328,213,0 +170784587376,214,0 +170784587424,214,0 +170784587472,213,0 +170784587520,213,0 +170784587568,214,0 +170784587615,214,0 +170784587663,214,0 +170784587711,213,0 +170784587761,213,0 +170784587809,213,0 +170784587856,213,0 +170784587904,213,0 +170784587954,213,0 +170784588002,213,0 +170784588050,213,0 +170784588098,213,0 +170784588146,213,0 +170784588194,214,0 +170784588243,214,0 +170784588291,214,0 +170784588340,214,0 +170784588390,214,0 +170784588439,214,0 +170784588489,214,0 +170784588537,214,0 +170784588585,213,0 +170784588634,213,0 +170784588682,213,0 +170784588730,213,0 +170784588778,213,0 +170784588826,213,0 +170784588875,213,0 +170784588923,213,0 +170784588971,214,0 +170784589019,214,0 +170784589067,214,0 +170784589115,214,0 +170784589163,214,0 +170784589211,214,0 +170784589258,214,0 +170784589306,214,0 +170784589354,214,0 +170784589404,213,0 +170784589452,213,0 +170784589500,213,0 +170784589547,213,0 +170784589595,213,0 +170784589643,213,0 +170784589691,213,0 +170784589741,213,0 +170784589789,214,0 +170784589837,213,0 +170784589885,213,0 +170784589932,214,0 +170784589980,214,0 +170784590030,214,0 +170784590079,214,0 +170784590127,214,0 +170784590175,214,0 +170784590225,214,0 +170784590274,213,0 +170784590322,213,0 +170784590372,213,0 +170784590420,213,0 +170784590469,213,0 +170784590517,213,0 +170784590567,213,0 +170784590615,213,0 +170784590663,214,0 +170784590712,214,0 +170784590760,213,0 +170784590808,214,0 +170784590856,214,0 +170784590904,214,0 +170784590952,214,0 +170784591000,214,0 +170784591048,214,0 +170784591096,214,0 +170784591145,213,0 +170784591193,213,0 +170784591241,213,0 +170784591291,213,0 +170784591339,213,0 +170784591387,213,0 +170784591436,213,0 +170784591484,213,0 +170784591532,213,0 +170784591581,213,0 +170784591629,213,0 +170784591679,213,0 +170784591727,213,0 +170784591775,214,0 +170784591823,213,0 +170784591871,213,0 +170784591919,213,0 +170784591966,213,0 +170784592014,213,0 +170784592062,213,0 +170784592112,213,0 +170784592160,213,0 +170784592209,213,0 +170784592257,213,0 +170784592305,213,0 +170784592353,213,0 +170784592401,213,0 +170784592449,213,0 +170784592497,213,0 +170784592545,213,0 +170784592592,213,0 +170784592640,213,0 +170784592688,213,0 +170784592736,213,0 +170784592785,214,0 +170784592833,213,0 +170784592881,213,0 +170784592931,213,0 +170784592980,213,0 +170784593028,213,0 +170784593076,213,0 +170784593124,213,0 +170784593174,213,0 +170784593221,213,0 +170784593271,213,0 +170784593319,213,0 +170784593368,214,0 +170784593416,214,0 +170784593466,214,0 +170784593514,214,0 +170784593563,214,0 +170784593613,214,0 +170784593661,213,0 +170784593710,213,0 +170784593760,213,0 +170784593808,213,0 +170784593855,213,0 +170784593903,213,0 +170784593953,213,0 +170784594001,213,0 +170784594049,213,0 +170784594098,213,0 +170784594146,213,0 +170784594194,213,0 +170784594242,213,0 +170784594290,214,0 +170784594338,214,0 +170784594386,214,0 +170784594434,214,0 +170784594482,214,0 +170784594531,213,0 +170784594581,213,0 +170784594629,213,0 +170784594677,213,0 +170784594724,213,0 +170784594774,213,0 +170784594823,213,0 +170784594871,214,0 +170784594921,214,0 +170784594969,214,0 +170784595017,214,0 +170784595065,214,0 +170784595112,214,0 +170784595160,214,0 +170784595208,214,0 +170784595256,214,0 +170784595306,214,0 +170784595354,214,0 +170784595402,213,0 +170784595451,213,0 +170784595501,213,0 +170784595550,213,0 +170784595598,213,0 +170784595646,214,0 +170784595694,213,0 +170784595742,214,0 +170784595790,214,0 +170784595838,214,0 +170784595887,214,0 +170784595935,214,0 +170784595984,214,0 +170784596032,214,0 +170784596080,214,0 +170784596128,214,0 +170784596178,214,0 +170784596226,213,0 +170784596275,214,0 +170784596325,214,0 +170784596374,214,0 +170784596424,214,0 +170784596473,214,0 +170784596521,214,0 +170784596569,214,0 +170784596618,214,0 +170784596666,214,0 +170784596716,214,0 +170784596764,214,0 +170784596812,214,0 +170784596860,214,0 +170784596909,214,0 +170784596959,214,0 +170784597008,214,0 +170784597058,214,0 +170784597106,213,0 +170784597154,213,0 +170784597202,213,0 +170784597251,213,0 +170784597299,213,0 +170784597349,213,0 +170784597397,213,0 +170784597445,213,0 +170784597494,213,0 +170784597542,214,0 +170784597591,213,0 +170784597639,214,0 +170784597687,214,0 +170784597737,214,0 +170784597786,214,0 +170784597836,214,0 +170784597884,214,0 +170784597933,213,0 +170784597981,213,0 +170784598029,213,0 +170784598077,213,0 +170784598126,213,0 +170784598174,213,0 +170784598222,213,0 +170784598272,213,0 +170784598320,213,0 +170784598369,213,0 +170784598419,213,0 +170784598468,213,0 +170784598516,213,0 +170784598564,214,0 +170784598613,214,0 +170784598661,214,0 +170784598711,214,0 +170784598760,214,0 +170784598810,213,0 +170784598859,212,0 +170784598907,213,0 +170784598955,213,0 +170784599003,213,0 +170784599053,213,0 +170784599101,213,0 +170784599149,213,0 +170784599197,213,0 +170784599244,213,0 +170784599292,213,0 +170784599340,213,0 +170784599388,213,0 +170784599436,213,0 +170784599486,213,0 +170784599534,213,0 +170784599583,213,0 +170784599631,213,0 +170784599679,213,0 +170784599727,213,0 +170784599775,213,0 +170784599823,213,0 +170784599871,213,0 +170784599920,213,0 +170784599968,213,0 +170784600016,213,0 +170784600066,213,0 +170784600115,213,0 +170784600165,213,0 +170784600213,213,0 +170784600261,213,0 +170784600309,214,0 +170784600356,214,0 +170784600404,214,0 +170784600452,214,0 +170784600500,214,0 +170784600548,213,0 +170784600596,213,0 +170784600644,213,0 +170784600692,213,0 +170784600740,213,0 +170784600787,213,0 +170784600835,213,0 +170784600885,213,0 +170784600933,213,0 +170784600982,213,0 +170784601032,214,0 +170784601080,214,0 +170784601128,214,0 +170784601176,213,0 +170784601225,214,0 +170784601273,214,0 +170784601321,214,0 +170784601371,214,0 +170784601418,213,0 +170784601466,213,0 +170784601514,213,0 +170784601562,213,0 +170784601612,213,0 +170784601660,213,0 +170784601708,213,0 +170784601755,213,0 +170784601805,213,0 +170784601854,213,0 +170784601902,214,0 +170784601950,213,0 +170784602000,214,0 +170784602048,214,0 +170784602095,214,0 +170784602145,214,0 +170784602193,214,0 +170784602241,213,0 +170784602289,213,0 +170784602337,213,0 +170784602386,213,0 +170784602434,213,0 +170784602482,213,0 +170784602530,213,0 +170784602578,213,0 +170784602626,214,0 +170784602674,214,0 +170784602722,213,0 +170784602771,213,0 +170784602821,214,0 +170784602869,214,0 +170784602917,214,0 +170784602964,214,0 +170784603014,214,0 +170784603062,214,0 +170784603110,213,0 +170784603158,213,0 +170784603207,213,0 +170784603255,213,0 +170784603303,213,0 +170784603351,213,0 +170784603401,213,0 +170784603449,213,0 +170784603498,214,0 +170784603546,214,0 +170784603594,214,0 +170784603642,214,0 +170784603689,214,0 +170784603737,214,0 +170784603787,214,0 +170784603835,214,0 +170784603883,213,0 +170784603931,213,0 +170784603978,213,0 +170784604026,213,0 +170784604074,213,0 +170784604122,213,0 +170784604170,213,0 +170784604218,213,0 +170784604266,213,0 +170784604315,214,0 +170784604365,214,0 +170784604412,214,0 +170784604460,213,0 +170784604510,213,0 +170784604559,214,0 +170784604607,214,0 +170784604657,214,0 +170784604705,214,0 +170784604754,214,0 +170784604802,213,0 +170784604850,213,0 +170784604900,213,0 +170784604949,213,0 +170784604997,213,0 +170784605047,213,0 +170784605094,214,0 +170784605144,214,0 +170784605193,214,0 +170784605243,214,0 +170784605291,214,0 +170784605339,214,0 +170784605387,214,0 +170784605436,214,0 +170784605486,214,0 +170784605534,214,0 +170784605582,214,0 +170784605630,213,0 +170784605678,213,0 +170784605726,213,0 +170784605774,213,0 +170784605821,213,0 +170784605869,213,0 +170784605917,213,0 +170784605967,213,0 +170784606015,213,0 +170784606063,213,0 +170784606112,213,0 +170784606162,214,0 +170784606211,214,0 +170784606259,214,0 +170784606309,214,0 +170784606358,214,0 +170784606406,214,0 +170784606454,214,0 +170784606502,213,0 +170784606550,213,0 +170784606598,213,0 +170784606646,213,0 +170784606694,213,0 +170784606741,213,0 +170784606791,213,0 +170784606841,213,0 +170784606888,213,0 +170784606936,214,0 +170784606984,213,0 +170784607034,213,0 +170784607083,214,0 +170784607131,214,0 +170784607179,214,0 +170784607227,213,0 +170784607275,214,0 +170784607324,214,0 +170784607374,213,0 +170784607422,213,0 +170784607469,213,0 +170784607517,213,0 +170784607567,213,0 +170784607615,213,0 +170784607664,213,0 +170784607712,213,0 +170784607761,213,0 +170784607809,214,0 +170784607859,213,0 +170784607906,214,0 +170784607954,214,0 +170784608002,214,0 +170784608050,214,0 +170784608098,214,0 +170784608146,214,0 +170784608193,213,0 +170784608241,213,0 +170784608289,213,0 +170784608337,213,0 +170784608385,213,0 +170784608433,213,0 +170784608481,213,0 +170784608529,213,0 +170784608577,213,0 +170784608625,213,0 +170784608672,213,0 +170784608720,213,0 +170784608768,213,0 +170784608818,214,0 +170784608867,213,0 +170784608915,214,0 +170784608963,214,0 +170784609011,214,0 +170784609060,213,0 +170784609110,213,0 +170784609159,213,0 +170784609209,213,0 +170784609257,213,0 +170784609305,213,0 +170784609354,213,0 +170784609402,213,0 +170784609452,213,0 +170784609500,213,0 +170784609547,213,0 +170784609597,213,0 +170784609645,213,0 +170784609693,213,0 +170784609742,213,0 +170784609790,214,0 +170784609838,213,0 +170784609888,213,0 +170784609936,213,0 +170784609985,212,0 +170784610033,213,0 +170784610081,213,0 +170784610129,213,0 +170784610178,213,0 +170784610228,213,0 +170784610276,213,0 +170784610324,213,0 +170784610373,213,0 +170784610421,213,0 +170784610469,213,0 +170784610517,213,0 +170784610565,213,0 +170784610613,213,0 +170784610660,213,0 +170784610708,214,0 +170784610756,213,0 +170784610804,213,0 +170784610852,213,0 +170784610900,213,0 +170784610947,213,0 +170784610997,213,0 +170784611045,213,0 +170784611093,213,0 +170784611141,213,0 +170784611189,213,0 +170784611236,213,0 +170784611286,214,0 +170784611334,213,0 +170784611382,214,0 +170784611430,214,0 +170784611478,214,0 +170784611526,214,0 +170784611573,213,0 +170784611621,213,0 +170784611669,213,0 +170784611717,213,0 +170784611765,213,0 +170784611813,213,0 +170784611861,213,0 +170784611909,214,0 +170784611959,214,0 +170784612007,214,0 +170784612055,214,0 +170784612102,214,0 +170784612150,214,0 +170784612198,214,0 +170784612248,214,0 +170784612296,214,0 +170784612345,214,0 +170784612395,213,0 +170784612443,213,0 +170784612490,213,0 +170784612540,213,0 +170784612588,213,0 +170784612637,213,0 +170784612687,213,0 +170784612735,214,0 +170784612783,214,0 +170784612830,214,0 +170784612878,214,0 +170784612926,214,0 +170784612974,214,0 +170784613023,214,0 +170784613073,214,0 +170784613121,214,0 +170784613170,214,0 +170784613218,214,0 +170784613268,214,0 +170784613316,213,0 +170784613365,213,0 +170784613413,213,0 +170784613463,213,0 +170784613510,213,0 +170784613558,213,0 +170784613608,213,0 +170784613656,213,0 +170784613704,213,0 +170784613751,213,0 +170784613799,214,0 +170784613847,213,0 +170784613895,213,0 +170784613943,214,0 +170784613991,214,0 +170784614039,213,0 +170784614088,213,0 +170784614136,214,0 +170784614184,213,0 +170784614232,213,0 +170784614280,213,0 +170784614329,213,0 +170784614377,213,0 +170784614427,213,0 +170784614475,213,0 +170784614523,213,0 +170784614571,213,0 +170784614618,213,0 +170784614666,213,0 +170784614714,213,0 +170784614762,214,0 +170784614810,214,0 +170784614858,214,0 +170784614906,214,0 +170784614954,214,0 +170784615002,213,0 +170784615051,213,0 +170784615099,213,0 +170784615147,213,0 +170784615195,213,0 +170784615243,213,0 +170784615292,213,0 +170784615342,213,0 +170784615390,214,0 +170784615438,213,0 +170784615487,213,0 +170784615535,213,0 +170784615583,213,0 +170784615632,214,0 +170784615682,214,0 +170784615730,214,0 +170784615778,214,0 +170784615825,213,0 +170784615873,213,0 +170784615921,213,0 +170784615969,213,0 +170784616017,213,0 +170784616065,213,0 +170784616113,213,0 +170784616161,213,0 +170784616209,213,0 +170784616258,214,0 +170784616306,213,0 +170784616356,214,0 +170784616403,214,0 +170784616451,214,0 +170784616501,214,0 +170784616550,214,0 +170784616600,214,0 +170784616649,214,0 +170784616699,214,0 +170784616747,213,0 +170784616795,213,0 +170784616843,213,0 +170784616891,213,0 +170784616939,213,0 +170784616987,213,0 +170784617034,214,0 +170784617082,214,0 +170784617130,214,0 +170784617180,214,0 +170784617228,214,0 +170784617276,214,0 +170784617325,214,0 +170784617375,214,0 +170784617422,214,0 +170784617470,214,0 +170784617518,214,0 +170784617568,213,0 +170784617616,213,0 +170784617665,213,0 +170784617713,213,0 +170784617763,213,0 +170784617811,213,0 +170784617859,214,0 +170784617907,213,0 +170784617954,214,0 +170784618002,214,0 +170784618052,214,0 +170784618101,214,0 +170784618149,214,0 +170784618197,214,0 +170784618247,214,0 +170784618296,214,0 +170784618344,213,0 +170784618392,213,0 +170784618440,213,0 +170784618488,213,0 +170784618537,213,0 +170784618585,213,0 +170784618633,213,0 +170784618681,213,0 +170784618729,213,0 +170784618777,213,0 +170784618826,213,0 +170784618876,213,0 +170784618924,213,0 +170784618973,214,0 +170784619021,214,0 +170784619069,213,0 +170784619117,214,0 +170784619165,213,0 +170784619214,214,0 +170784619264,214,0 +170784619312,213,0 +170784619361,213,0 +170784619409,213,0 +170784619459,213,0 +170784619507,213,0 +170784619556,213,0 +170784619606,213,0 +170784619654,213,0 +170784619702,213,0 +170784619750,213,0 +170784619797,213,0 +170784619845,213,0 +170784619893,214,0 +170784619941,213,0 +170784619989,214,0 +170784620037,213,0 +170784620087,214,0 +170784620134,213,0 +170784620182,213,0 +170784620230,213,0 +170784620280,213,0 +170784620328,213,0 +170784620377,213,0 +170784620425,213,0 +170784620473,213,0 +170784620523,213,0 +170784620570,213,0 +170784620618,214,0 +170784620666,214,0 +170784620714,214,0 +170784620762,214,0 +170784620810,214,0 +170784620858,214,0 +170784620907,213,0 +170784620957,214,0 +170784621006,213,0 +170784621054,213,0 +170784621102,213,0 +170784621152,213,0 +170784621201,213,0 +170784621251,213,0 +170784621299,213,0 +170784621347,213,0 +170784621394,213,0 +170784621442,214,0 +170784621490,213,0 +170784621538,214,0 +170784621586,214,0 +170784621636,214,0 +170784621684,214,0 +170784621731,214,0 +170784621779,214,0 +170784621829,213,0 +170784621877,213,0 +170784621925,213,0 +170784621974,213,0 +170784622022,213,0 +170784622070,213,0 +170784622118,213,0 +170784622166,213,0 +170784622214,213,0 +170784622262,213,0 +170784622310,214,0 +170784622358,213,0 +170784622407,214,0 +170784622455,214,0 +170784622504,214,0 +170784622554,214,0 +170784622603,214,0 +170784622651,213,0 +170784622701,213,0 +170784622749,213,0 +170784622798,213,0 +170784622846,213,0 +170784622896,213,0 +170784622944,213,0 +170784622992,213,0 +170784623040,213,0 +170784623088,213,0 +170784623136,213,0 +170784623184,213,0 +170784623231,213,0 +170784623279,214,0 +170784623329,214,0 +170784623377,214,0 +170784623426,214,0 +170784623474,214,0 +170784623522,213,0 +170784623570,213,0 +170784623620,213,0 +170784623668,213,0 +170784623716,213,0 +170784623765,213,0 +170784623813,213,0 +170784623861,213,0 +170784623909,213,0 +170784623957,213,0 +170784624005,213,0 +170784624054,213,0 +170784624102,213,0 +170784624150,213,0 +170784624198,213,0 +170784624246,213,0 +170784624294,213,0 +170784624342,214,0 +170784624391,213,0 +170784624439,213,0 +170784624489,213,0 +170784624537,213,0 +170784624585,213,0 +170784624633,213,0 +170784624680,213,0 +170784624728,213,0 +170784624776,213,0 +170784624826,213,0 +170784624874,213,0 +170784624922,213,0 +170784624970,214,0 +170784625019,214,0 +170784625067,213,0 +170784625115,214,0 +170784625163,214,0 +170784625212,213,0 +170784625260,213,0 +170784625310,213,0 +170784625358,213,0 +170784625407,213,0 +170784625455,213,0 +170784625504,213,0 +170784625554,213,0 +170784625604,213,0 +170784625653,214,0 +170784625702,213,0 +170784625750,213,0 +170784625798,214,0 +170784625848,214,0 +170784625896,213,0 +170784625945,214,0 +170784625995,214,0 +170784626043,214,0 +170784626091,213,0 +170784626140,213,0 +170784626190,213,0 +170784626238,213,0 +170784626286,213,0 +170784626333,213,0 +170784626383,213,0 +170784626431,213,0 +170784626480,213,0 +170784626528,213,0 +170784626576,213,0 +170784626624,214,0 +170784626672,214,0 +170784626720,214,0 +170784626768,214,0 +170784626816,214,0 +170784626865,214,0 +170784626913,214,0 +170784626963,213,0 +170784627012,213,0 +170784627062,213,0 +170784627110,213,0 +170784627158,213,0 +170784627207,213,0 +170784627255,213,0 +170784627303,213,0 +170784627351,213,0 +170784627400,213,0 +170784627448,213,0 +170784627496,214,0 +170784627544,214,0 +170784627594,214,0 +170784627643,213,0 +170784627693,214,0 +170784627742,214,0 +170784627792,213,0 +170784627840,213,0 +170784627889,213,0 +170784627937,213,0 +170784627986,213,0 +170784628034,213,0 +170784628082,214,0 +170784628132,213,0 +170784628180,213,0 +170784628229,214,0 +170784628279,214,0 +170784628328,214,0 +170784628376,214,0 +170784628424,214,0 +170784628474,214,0 +170784628522,214,0 +170784628569,214,0 +170784628617,214,0 +170784628667,213,0 +170784628716,213,0 +170784628766,213,0 +170784628814,213,0 +170784628862,213,0 +170784628911,214,0 +170784628959,213,0 +170784629007,214,0 +170784629055,213,0 +170784629104,214,0 +170784629152,214,0 +170784629200,214,0 +170784629250,214,0 +170784629298,214,0 +170784629346,214,0 +170784629395,214,0 +170784629443,214,0 +170784629491,213,0 +170784629539,213,0 +170784629587,213,0 +170784629635,213,0 +170784629683,213,0 +170784629731,213,0 +170784629780,213,0 +170784629828,213,0 +170784629878,214,0 +170784629926,214,0 +170784629974,214,0 +170784630022,214,0 +170784630069,214,0 +170784630117,214,0 +170784630167,214,0 +170784630216,214,0 +170784630264,213,0 +170784630312,214,0 +170784630362,213,0 +170784630410,213,0 +170784630458,213,0 +170784630506,213,0 +170784630554,213,0 +170784630603,213,0 +170784630653,213,0 +170784630700,213,0 +170784630748,213,0 +170784630798,213,0 +170784630846,213,0 +170784630894,214,0 +170784630941,214,0 +170784630989,214,0 +170784631039,214,0 +170784631087,214,0 +170784631136,214,0 +170784631184,213,0 +170784631232,213,0 +170784631282,213,0 +170784631329,213,0 +170784631377,213,0 +170784631425,213,0 +170784631473,213,0 +170784631523,213,0 +170784631572,213,0 +170784631620,214,0 +170784631668,214,0 +170784631716,214,0 +170784631766,214,0 +170784631815,214,0 +170784631865,214,0 +170784631913,214,0 +170784631961,214,0 +170784632010,213,0 +170784632058,213,0 +170784632108,213,0 +170784632156,213,0 +170784632205,213,0 +170784632253,213,0 +170784632301,213,0 +170784632349,213,0 +170784632397,213,0 +170784632446,213,0 +170784632494,213,0 +170784632542,214,0 +170784632590,214,0 +170784632638,214,0 +170784632687,214,0 +170784632735,214,0 +170784632783,214,0 +170784632832,214,0 +170784632882,214,0 +170784632930,213,0 +170784632977,213,0 +170784633025,213,0 +170784633073,213,0 +170784633121,213,0 +170784633171,213,0 +170784633220,213,0 +170784633268,213,0 +170784633316,214,0 +170784633366,214,0 +170784633414,214,0 +170784633461,214,0 +170784633509,214,0 +170784633557,214,0 +170784633605,214,0 +170784633655,214,0 +170784633703,213,0 +170784633751,213,0 +170784633799,213,0 +170784633848,213,0 +170784633896,213,0 +170784633944,213,0 +170784633992,213,0 +170784634040,213,0 +170784634089,213,0 +170784634137,213,0 +170784634185,213,0 +170784634233,213,0 +170784634281,213,0 +170784634329,214,0 +170784634377,213,0 +170784634425,214,0 +170784634473,214,0 +170784634521,214,0 +170784634569,214,0 +170784634618,213,0 +170784634668,213,0 +170784634716,213,0 +170784634764,213,0 +170784634812,213,0 +170784634859,213,0 +170784634907,213,0 +170784634955,213,0 +170784635005,213,0 +170784635053,213,0 +170784635100,213,0 +170784635148,214,0 +170784635196,214,0 +170784635244,214,0 +170784635294,213,0 +170784635342,214,0 +170784635391,214,0 +170784635439,213,0 +170784635487,213,0 +170784635537,213,0 +170784635585,213,0 +170784635633,213,0 +170784635680,213,0 +170784635728,213,0 +170784635778,213,0 +170784635827,214,0 +170784635875,213,0 +170784635925,213,0 +170784635974,213,0 +170784636023,213,0 +170784636071,213,0 +170784636119,214,0 +170784636167,214,0 +170784636217,214,0 +170784636265,214,0 +170784636313,213,0 +170784636362,213,0 +170784636410,213,0 +170784636460,213,0 +170784636507,213,0 +170784636555,213,0 +170784636603,213,0 +170784636651,213,0 +170784636699,213,0 +170784636747,213,0 +170784636795,213,0 +170784636843,214,0 +170784636893,214,0 +170784636941,214,0 +170784636990,214,0 +170784637038,214,0 +170784637086,213,0 +170784637134,213,0 +170784637184,213,0 +170784637232,212,0 +170784637280,213,0 +170784637328,213,0 +170784637376,213,0 +170784637424,213,0 +170784637471,213,0 +170784637521,213,0 +170784637570,213,0 +170784637618,213,0 +170784637668,214,0 +170784637716,214,0 +170784637764,213,0 +170784637813,214,0 +170784637861,214,0 +170784637910,214,0 +170784637958,214,0 +170784638006,213,0 +170784638054,213,0 +170784638102,213,0 +170784638152,213,0 +170784638201,213,0 +170784638249,213,0 +170784638297,213,0 +170784638346,213,0 +170784638394,213,0 +170784638442,213,0 +170784638490,214,0 +170784638540,214,0 +170784638589,214,0 +170784638637,214,0 +170784638685,214,0 +170784638733,213,0 +170784638781,214,0 +170784638829,214,0 +170784638877,213,0 +170784638925,213,0 +170784638972,213,0 +170784639020,213,0 +170784639068,213,0 +170784639116,213,0 +170784639164,213,0 +170784639214,213,0 +170784639262,213,0 +170784639311,214,0 +170784639359,213,0 +170784639407,214,0 +170784639455,213,0 +170784639503,214,0 +170784639551,214,0 +170784639600,214,0 +170784639648,214,0 +170784639696,213,0 +170784639746,213,0 +170784639795,213,0 +170784639843,213,0 +170784639891,213,0 +170784639939,213,0 +170784639987,213,0 +170784640034,213,0 +170784640082,213,0 +170784640130,213,0 +170784640178,213,0 +170784640227,213,0 +170784640275,214,0 +170784640324,213,0 +170784640372,214,0 +170784640420,214,0 +170784640468,213,0 +170784640516,214,0 +170784640564,213,0 +170784640612,213,0 +170784640659,213,0 +170784640707,213,0 +170784640755,213,0 +170784640804,213,0 +170784640852,213,0 +170784640900,213,0 +170784640948,213,0 +170784640996,213,0 +170784641045,214,0 +170784641093,213,0 +170784641141,213,0 +170784641190,214,0 +170784641238,214,0 +170784641286,214,0 +170784641334,214,0 +170784641384,213,0 +170784641431,213,0 +170784641481,213,0 +170784641529,213,0 +170784641578,213,0 +170784641628,213,0 +170784641676,213,0 +170784641724,213,0 +170784641772,213,0 +170784641820,213,0 +170784641867,213,0 +170784641915,213,0 +170784641963,214,0 +170784642011,214,0 +170784642061,214,0 +170784642109,214,0 +170784642157,214,0 +170784642205,214,0 +170784642254,213,0 +170784642304,212,0 +170784642352,213,0 +170784642400,213,0 +170784642448,213,0 +170784642496,213,0 +170784642543,213,0 +170784642593,213,0 +170784642641,213,0 +170784642690,213,0 +170784642738,214,0 +170784642786,214,0 +170784642834,214,0 +170784642882,214,0 +170784642930,214,0 +170784642978,214,0 +170784643027,214,0 +170784643076,213,0 +170784643126,213,0 +170784643174,213,0 +170784643222,213,0 +170784643269,213,0 +170784643317,213,0 +170784643365,213,0 +170784643415,213,0 +170784643463,213,0 +170784643510,213,0 +170784643558,213,0 +170784643606,213,0 +170784643654,214,0 +170784643702,214,0 +170784643750,214,0 +170784643797,214,0 +170784643845,214,0 +170784643893,213,0 +170784643941,213,0 +170784643989,213,0 +170784644038,213,0 +170784644088,213,0 +170784644136,213,0 +170784644185,213,0 +170784644233,213,0 +170784644283,213,0 +170784644331,214,0 +170784644379,214,0 +170784644428,214,0 +170784644476,214,0 +170784644524,214,0 +170784644572,214,0 +170784644620,214,0 +170784644668,214,0 +170784644718,213,0 +170784644766,213,0 +170784644814,213,0 +170784644862,213,0 +170784644911,214,0 +170784644959,214,0 +170784645008,214,0 +170784645056,214,0 +170784645104,214,0 +170784645152,214,0 +170784645200,214,0 +170784645250,214,0 +170784645297,214,0 +170784645345,214,0 +170784645395,214,0 +170784645443,214,0 +170784645491,214,0 +170784645539,213,0 +170784645587,213,0 +170784645635,213,0 +170784645684,213,0 +170784645732,213,0 +170784645780,214,0 +170784645828,213,0 +170784645876,214,0 +170784645925,214,0 +170784645975,214,0 +170784646023,214,0 +170784646071,214,0 +170784646119,214,0 +170784646168,214,0 +170784646218,214,0 +170784646267,214,0 +170784646315,214,0 +170784646363,214,0 +170784646412,213,0 +170784646460,213,0 +170784646510,213,0 +170784646558,212,0 +170784646606,213,0 +170784646654,213,0 +170784646703,213,0 +170784646753,213,0 +170784646801,213,0 +170784646849,213,0 +170784646897,213,0 +170784646945,213,0 +170784646994,213,0 +170784647044,214,0 +170784647091,213,0 +170784647141,213,0 +170784647189,213,0 +170784647237,214,0 +170784647285,213,0 +170784647333,213,0 +170784647380,213,0 +170784647428,213,0 +170784647476,213,0 +170784647524,213,0 +170784647572,213,0 +170784647620,213,0 +170784647668,213,0 +170784647718,213,0 +170784647766,213,0 +170784647815,213,0 +170784647863,213,0 +170784647911,214,0 +170784647959,214,0 +170784648008,213,0 +170784648056,214,0 +170784648104,213,0 +170784648152,213,0 +170784648200,213,0 +170784648248,213,0 +170784648297,213,0 +170784648345,213,0 +170784648393,213,0 +170784648441,213,0 +170784648491,213,0 +170784648540,213,0 +170784648588,213,0 +170784648636,213,0 +170784648686,213,0 +170784648733,214,0 +170784648781,214,0 +170784648829,213,0 +170784648879,214,0 +170784648927,213,0 +170784648974,213,0 +170784649022,213,0 +170784649070,213,0 +170784649118,213,0 +170784649166,213,0 +170784649214,213,0 +170784649263,213,0 +170784649311,213,0 +170784649359,213,0 +170784649409,213,0 +170784649458,214,0 +170784649506,214,0 +170784649556,214,0 +170784649604,214,0 +170784649651,214,0 +170784649699,214,0 +170784649747,213,0 +170784649795,213,0 +170784649843,213,0 +170784649891,213,0 +170784649939,213,0 +170784649987,213,0 +170784650037,213,0 +170784650084,213,0 +170784650132,213,0 +170784650180,213,0 +170784650228,213,0 +170784650276,213,0 +170784650326,214,0 +170784650373,214,0 +170784650423,214,0 +170784650472,214,0 +170784650522,214,0 +170784650571,213,0 +170784650619,213,0 +170784650667,213,0 +170784650717,213,0 +170784650765,213,0 +170784650814,213,0 +170784650864,213,0 +170784650913,213,0 +170784650962,213,0 +170784651010,213,0 +170784651058,214,0 +170784651108,214,0 +170784651157,214,0 +170784651205,214,0 +170784651255,214,0 +170784651302,214,0 +170784651352,213,0 +170784651400,214,0 +170784651448,213,0 +170784651496,213,0 +170784651544,213,0 +170784651593,213,0 +170784651641,213,0 +170784651691,213,0 +170784651739,213,0 +170784651787,213,0 +170784651834,213,0 +170784651884,213,0 +170784651932,213,0 +170784651980,213,0 +170784652029,214,0 +170784652077,214,0 +170784652126,214,0 +170784652174,214,0 +170784652222,214,0 +170784652272,213,0 +170784652320,213,0 +170784652368,213,0 +170784652417,213,0 +170784652465,213,0 +170784652515,213,0 +170784652563,213,0 +170784652612,213,0 +170784652660,213,0 +170784652708,213,0 +170784652756,213,0 +170784652804,213,0 +170784652852,213,0 +170784652900,213,0 +170784652947,213,0 +170784652995,213,0 +170784653045,214,0 +170784653094,213,0 +170784653142,213,0 +170784653190,213,0 +170784653238,213,0 +170784653286,213,0 +170784653334,213,0 +170784653383,213,0 +170784653431,213,0 +170784653479,213,0 +170784653527,213,0 +170784653575,213,0 +170784653623,214,0 +170784653671,214,0 +170784653720,214,0 +170784653768,214,0 +170784653818,214,0 +170784653866,214,0 +170784653914,214,0 +170784653962,213,0 +170784654011,213,0 +170784654059,213,0 +170784654107,213,0 +170784654156,213,0 +170784654206,213,0 +170784654254,214,0 +170784654303,213,0 +170784654351,213,0 +170784654399,213,0 +170784654447,214,0 +170784654495,214,0 +170784654543,214,0 +170784654590,214,0 +170784654638,214,0 +170784654686,214,0 +170784654734,214,0 +170784654782,213,0 +170784654831,213,0 +170784654879,213,0 +170784654929,213,0 +170784654978,213,0 +170784655026,213,0 +170784655074,214,0 +170784655124,213,0 +170784655171,214,0 +170784655221,214,0 +170784655269,214,0 +170784655317,214,0 +170784655365,214,0 +170784655413,214,0 +170784655460,214,0 +170784655510,214,0 +170784655558,214,0 +170784655606,214,0 +170784655655,213,0 +170784655703,213,0 +170784655751,213,0 +170784655799,213,0 +170784655847,213,0 +170784655896,213,0 +170784655945,213,0 +170784655993,213,0 +170784656043,213,0 +170784656091,213,0 +170784656140,213,0 +170784656188,214,0 +170784656236,214,0 +170784656284,214,0 +170784656332,214,0 +170784656381,214,0 +170784656429,213,0 +170784656479,213,0 +170784656527,213,0 +170784656575,213,0 +170784656624,213,0 +170784656672,213,0 +170784656720,213,0 +170784656768,213,0 +170784656816,213,0 +170784656865,213,0 +170784656913,214,0 +170784656961,214,0 +170784657009,214,0 +170784657057,214,0 +170784657105,214,0 +170784657153,214,0 +170784657202,214,0 +170784657251,213,0 +170784657299,213,0 +170784657347,213,0 +170784657395,213,0 +170784657443,213,0 +170784657493,213,0 +170784657541,213,0 +170784657588,213,0 +170784657636,213,0 +170784657686,213,0 +170784657735,213,0 +170784657783,213,0 +170784657831,213,0 +170784657881,213,0 +170784657928,213,0 +170784657976,214,0 +170784658024,214,0 +170784658072,214,0 +170784658120,213,0 +170784658169,213,0 +170784658217,213,0 +170784658265,213,0 +170784658313,213,0 +170784658361,213,0 +170784658409,213,0 +170784658457,213,0 +170784658504,213,0 +170784658554,213,0 +170784658602,213,0 +170784658650,213,0 +170784658699,213,0 +170784658747,214,0 +170784658795,214,0 +170784658843,213,0 +170784658892,214,0 +170784658940,213,0 +170784658988,213,0 +170784659036,213,0 +170784659084,213,0 +170784659132,213,0 +170784659180,213,0 +170784659230,213,0 +170784659277,213,0 +170784659325,213,0 +170784659373,213,0 +170784659423,213,0 +170784659471,214,0 +170784659520,213,0 +170784659568,214,0 +170784659616,214,0 +170784659664,214,0 +170784659712,214,0 +170784659760,213,0 +170784659808,213,0 +170784659857,213,0 +170784659905,213,0 +170784659953,213,0 +170784660001,213,0 +170784660048,213,0 +170784660096,214,0 +170784660144,214,0 +170784660192,214,0 +170784660240,214,0 +170784660288,214,0 +170784660336,214,0 +170784660384,214,0 +170784660432,214,0 +170784660481,214,0 +170784660529,214,0 +170784660579,214,0 +170784660627,214,0 +170784660676,213,0 +170784660726,213,0 +170784660774,213,0 +170784660822,213,0 +170784660869,213,0 +170784660919,213,0 +170784660967,213,0 +170784661015,214,0 +170784661063,214,0 +170784661111,214,0 +170784661160,214,0 +170784661210,214,0 +170784661258,214,0 +170784661306,214,0 +170784661353,214,0 +170784661401,214,0 +170784661449,213,0 +170784661499,213,0 +170784661548,213,0 +170784661596,213,0 +170784661646,213,0 +170784661695,213,0 +170784661744,214,0 +170784661792,213,0 +170784661840,214,0 +170784661888,214,0 +170784661936,214,0 +170784661984,214,0 +170784662032,214,0 +170784662080,214,0 +170784662129,214,0 +170784662177,214,0 +170784662225,214,0 +170784662273,213,0 +170784662321,213,0 +170784662369,213,0 +170784662417,213,0 +170784662464,213,0 +170784662512,213,0 +170784662560,213,0 +170784662608,213,0 +170784662656,213,0 +170784662706,213,0 +170784662755,213,0 +170784662803,213,0 +170784662851,214,0 +170784662900,214,0 +170784662950,214,0 +170784663000,214,0 +170784663048,214,0 +170784663096,214,0 +170784663145,213,0 +170784663195,213,0 +170784663243,213,0 +170784663292,213,0 +170784663340,213,0 +170784663388,213,0 +170784663438,213,0 +170784663486,213,0 +170784663533,213,0 +170784663581,213,0 +170784663629,213,0 +170784663677,213,0 +170784663725,214,0 +170784663773,214,0 +170784663821,214,0 +170784663870,214,0 +170784663918,214,0 +170784663966,213,0 +170784664016,213,0 +170784664064,213,0 +170784664113,213,0 +170784664163,213,0 +170784664211,213,0 +170784664259,213,0 +170784664308,213,0 +170784664356,213,0 +170784664406,213,0 +170784664455,214,0 +170784664505,214,0 +170784664554,214,0 +170784664604,214,0 +170784664651,214,0 +170784664699,214,0 +170784664747,214,0 +170784664797,214,0 +170784664845,213,0 +170784664893,213,0 +170784664940,213,0 +170784664990,213,0 +170784665039,213,0 +170784665089,213,0 +170784665137,213,0 +170784665186,213,0 +170784665234,213,0 +170784665284,214,0 +170784665332,214,0 +170784665380,214,0 +170784665427,214,0 +170784665477,214,0 +170784665526,214,0 +170784665574,214,0 +170784665622,214,0 +170784665670,213,0 +170784665718,213,0 +170784665767,213,0 +170784665815,213,0 +170784665863,213,0 +170784665911,213,0 +170784665959,213,0 +170784666007,213,0 +170784666056,213,0 +170784666104,213,0 +170784666152,213,0 +170784666199,214,0 +170784666247,213,0 +170784666295,214,0 +170784666344,214,0 +170784666392,213,0 +170784666440,214,0 +170784666489,213,0 +170784666537,213,0 +170784666585,213,0 +170784666634,213,0 +170784666682,213,0 +170784666730,213,0 +170784666779,213,0 +170784666829,213,0 +170784666877,213,0 +170784666926,213,0 +170784666974,213,0 +170784667023,214,0 +170784667073,214,0 +170784667121,214,0 +170784667168,214,0 +170784667216,214,0 +170784667266,214,0 +170784667315,213,0 +170784667363,213,0 +170784667411,213,0 +170784667460,213,0 +170784667508,213,0 +170784667556,213,0 +170784667604,213,0 +170784667651,213,0 +170784667699,213,0 +170784667749,213,0 +170784667797,214,0 +170784667845,214,0 +170784667894,214,0 +170784667944,214,0 +170784667992,214,0 +170784668040,214,0 +170784668087,214,0 +170784668135,213,0 +170784668185,213,0 +170784668233,213,0 +170784668281,213,0 +170784668329,213,0 +170784668377,213,0 +170784668424,213,0 +170784668474,213,0 +170784668523,213,0 +170784668571,213,0 +170784668619,213,0 +170784668669,214,0 +170784668717,214,0 +170784668765,214,0 +170784668813,214,0 +170784668861,214,0 +170784668910,214,0 +170784668958,214,0 +170784669008,213,0 +170784669055,213,0 +170784669103,213,0 +170784669153,213,0 +170784669201,213,0 +170784669249,213,0 +170784669296,213,0 +170784669346,213,0 +170784669394,213,0 +170784669442,213,0 +170784669489,214,0 +170784669537,214,0 +170784669587,214,0 +170784669636,214,0 +170784669684,214,0 +170784669732,214,0 +170784669781,214,0 +170784669829,213,0 +170784669877,213,0 +170784669925,213,0 +170784669974,213,0 +170784670022,213,0 +170784670070,213,0 +170784670118,213,0 +170784670166,214,0 +170784670213,213,0 +170784670261,213,0 +170784670309,213,0 +170784670357,214,0 +170784670407,214,0 +170784670455,214,0 +170784670504,214,0 +170784670552,214,0 +170784670600,214,0 +170784670649,213,0 +170784670697,213,0 +170784670745,213,0 +170784670793,213,0 +170784670841,213,0 +170784670889,213,0 +170784670936,213,0 +170784670984,213,0 +170784671032,213,0 +170784671082,213,0 +170784671131,214,0 +170784671179,214,0 +170784671227,214,0 +170784671275,213,0 +170784671324,214,0 +170784671372,214,0 +170784671422,214,0 +170784671471,214,0 +170784671519,213,0 +170784671567,213,0 +170784671617,213,0 +170784671666,213,0 +170784671714,213,0 +170784671763,213,0 +170784671811,213,0 +170784671861,213,0 +170784671909,214,0 +170784671957,214,0 +170784672006,214,0 +170784672054,214,0 +170784672102,214,0 +170784672150,214,0 +170784672198,214,0 +170784672246,214,0 +170784672294,213,0 +170784672342,213,0 +170784672390,213,0 +170784672439,213,0 +170784672487,213,0 +170784672537,213,0 +170784672586,213,0 +170784672636,213,0 +170784672683,213,0 +170784672731,213,0 +170784672779,214,0 +170784672827,214,0 +170784672875,214,0 +170784672923,214,0 +170784672971,214,0 +170784673019,214,0 +170784673068,214,0 +170784673116,214,0 +170784673164,213,0 +170784673212,213,0 +170784673260,213,0 +170784673308,213,0 +170784673356,213,0 +170784673405,213,0 +170784673453,213,0 +170784673503,213,0 +170784673552,213,0 +170784673602,213,0 +170784673651,213,0 +170784673699,214,0 +170784673747,214,0 +170784673795,214,0 +170784673844,214,0 +170784673892,214,0 +170784673940,214,0 +170784673988,213,0 +170784674036,213,0 +170784674084,213,0 +170784674133,213,0 +170784674183,213,0 +170784674232,213,0 +170784674280,213,0 +170784674328,213,0 +170784674376,213,0 +170784674424,214,0 +170784674472,214,0 +170784674521,213,0 +170784674571,213,0 +170784674619,214,0 +170784674667,214,0 +170784674715,214,0 +170784674764,213,0 +170784674814,214,0 +170784674863,213,0 +170784674913,213,0 +170784674961,213,0 +170784675009,213,0 +170784675058,213,0 +170784675106,214,0 +170784675155,213,0 +170784675203,213,0 +170784675253,214,0 +170784675302,213,0 +170784675350,214,0 +170784675398,214,0 +170784675446,213,0 +170784675494,214,0 +170784675542,214,0 +170784675590,214,0 +170784675637,213,0 +170784675687,213,0 +170784675735,213,0 +170784675783,213,0 +170784675831,213,0 +170784675879,213,0 +170784675928,214,0 +170784675977,214,0 +170784676027,213,0 +170784676076,213,0 +170784676126,214,0 +170784676174,214,0 +170784676222,214,0 +170784676270,214,0 +170784676318,214,0 +170784676366,214,0 +170784676413,214,0 +170784676461,213,0 +170784676509,213,0 +170784676557,213,0 +170784676605,213,0 +170784676653,213,0 +170784676703,213,0 +170784676752,213,0 +170784676800,213,0 +170784676848,213,0 +170784676896,213,0 +170784676944,214,0 +170784676992,214,0 +170784677040,214,0 +170784677088,214,0 +170784677137,214,0 +170784677185,214,0 +170784677233,214,0 +170784677281,214,0 +170784677329,213,0 +170784677378,213,0 +170784677426,213,0 +170784677476,213,0 +170784677525,213,0 +170784677573,213,0 +170784677621,213,0 +170784677670,213,0 +170784677720,213,0 +170784677768,213,0 +170784677817,213,0 +170784677865,214,0 +170784677913,214,0 +170784677961,213,0 +170784678009,214,0 +170784678057,214,0 +170784678107,214,0 +170784678155,214,0 +170784678203,213,0 +170784678250,213,0 +170784678298,213,0 +170784678346,213,0 +170784678394,213,0 +170784678444,213,0 +170784678492,213,0 +170784678540,213,0 +170784678589,213,0 +170784678637,213,0 +170784678685,213,0 +170784678735,214,0 +170784678784,214,0 +170784678832,214,0 +170784678880,213,0 +170784678928,214,0 +170784678976,214,0 +170784679025,213,0 +170784679073,213,0 +170784679122,213,0 +170784679170,213,0 +170784679218,213,0 +170784679268,213,0 +170784679316,213,0 +170784679365,213,0 +170784679413,213,0 +170784679463,213,0 +170784679512,213,0 +170784679561,213,0 +170784679609,213,0 +170784679659,214,0 +170784679707,214,0 +170784679756,213,0 +170784679804,213,0 +170784679852,213,0 +170784679900,213,0 +170784679949,213,0 +170784679997,213,0 +170784680047,213,0 +170784680096,213,0 +170784680146,213,0 +170784680195,213,0 +170784680245,213,0 +170784680294,213,0 +170784680342,213,0 +170784680390,213,0 +170784680438,214,0 +170784680487,213,0 +170784680535,214,0 +170784680583,214,0 +170784680631,213,0 +170784680680,213,0 +170784680728,213,0 +170784680777,213,0 +170784680825,213,0 +170784680875,213,0 +170784680924,213,0 +170784680972,213,0 +170784681020,213,0 +170784681068,213,0 +170784681116,214,0 +170784681166,214,0 +170784681213,214,0 +170784681261,214,0 +170784681311,214,0 +170784681359,214,0 +170784681407,214,0 +170784681455,214,0 +170784681503,213,0 +170784681550,213,0 +170784681598,213,0 +170784681648,213,0 +170784681696,213,0 +170784681745,213,0 +170784681795,213,0 +170784681844,213,0 +170784681892,213,0 +170784681940,214,0 +170784681988,214,0 +170784682036,214,0 +170784682084,214,0 +170784682132,214,0 +170784682180,214,0 +170784682228,214,0 +170784682275,214,0 +170784682323,214,0 +170784682373,213,0 +170784682421,213,0 +170784682469,213,0 +170784682518,213,0 +170784682566,213,0 +170784682616,213,0 +170784682665,213,0 +170784682713,213,0 +170784682761,214,0 +170784682811,214,0 +170784682859,214,0 +170784682908,214,0 +170784682956,214,0 +170784683006,214,0 +170784683054,214,0 +170784683101,214,0 +170784683151,213,0 +170784683199,213,0 +170784683248,213,0 +170784683298,213,0 +170784683346,213,0 +170784683394,213,0 +170784683443,213,0 +170784683491,213,0 +170784683539,214,0 +170784683587,213,0 +170784683635,214,0 +170784683683,214,0 +170784683732,214,0 +170784683780,214,0 +170784683828,214,0 +170784683876,214,0 +170784683925,214,0 +170784683975,214,0 +170784684023,213,0 +170784684072,213,0 +170784684122,213,0 +170784684171,213,0 +170784684221,213,0 +170784684270,213,0 +170784684318,213,0 +170784684368,213,0 +170784684415,213,0 +170784684463,214,0 +170784684511,213,0 +170784684561,214,0 +170784684609,214,0 +170784684658,214,0 +170784684706,214,0 +170784684755,214,0 +170784684804,214,0 +170784684853,213,0 +170784684901,213,0 +170784684950,213,0 +170784684998,213,0 +170784685046,213,0 +170784685094,213,0 +170784685142,213,0 +170784685191,213,0 +170784685239,213,0 +170784685287,213,0 +170784685335,213,0 +170784685385,213,0 +170784685433,213,0 +170784685482,213,0 +170784685530,214,0 +170784685579,213,0 +170784685627,214,0 +170784685675,213,0 +170784685724,213,0 +170784685772,213,0 +170784685820,213,0 +170784685868,213,0 +170784685916,213,0 +170784685964,213,0 +170784686012,213,0 +170784686061,213,0 +170784686111,213,0 +170784686159,213,0 +170784686207,213,0 +170784686256,213,0 +170784686306,214,0 +170784686354,214,0 +170784686402,214,0 +170784686449,214,0 +170784686497,213,0 +170784686545,212,0 +170784686593,212,0 +170784686641,213,0 +170784686689,213,0 +170784686736,213,0 +170784686784,213,0 +170784686832,213,0 +170784686882,213,0 +170784686929,213,0 +170784686979,213,0 +170784687027,213,0 +170784687074,213,0 +170784687124,214,0 +170784687172,214,0 +170784687220,213,0 +170784687269,214,0 +170784687317,214,0 +170784687365,213,0 +170784687414,212,0 +170784687462,213,0 +170784687510,212,0 +170784687558,213,0 +170784687605,212,0 +170784687653,212,0 +170784687701,213,0 +170784687749,213,0 +170784687797,213,0 +170784687846,213,0 +170784687894,213,0 +170784687942,213,0 +170784687990,213,0 +170784688038,213,0 +170784688085,213,0 +170784688133,213,0 +170784688181,213,0 +170784688230,213,0 +170784688278,212,0 +170784688326,212,0 +170784688374,212,0 +170784688423,213,0 +170784688471,213,0 +170784688519,213,0 +170784688567,213,0 +170784688616,213,0 +170784688664,213,0 +170784688712,213,0 +170784688760,213,0 +170784688808,213,0 +170784688855,213,0 +170784688905,213,0 +170784688953,213,0 +170784689001,214,0 +170784689048,213,0 +170784689096,213,0 +170784689146,213,0 +170784689195,213,0 +170784689243,213,0 +170784689291,213,0 +170784689338,213,0 +170784689386,213,0 +170784689434,213,0 +170784689482,214,0 +170784689530,214,0 +170784689578,214,0 +170784689627,214,0 +170784689675,214,0 +170784689725,214,0 +170784689772,214,0 +170784689820,214,0 +170784689868,213,0 +170784689916,213,0 +170784689964,213,0 +170784690012,213,0 +170784690061,213,0 +170784690109,213,0 +170784690158,213,0 +170784690206,213,0 +170784690254,214,0 +170784690302,214,0 +170784690350,214,0 +170784690398,214,0 +170784690445,214,0 +170784690493,214,0 +170784690541,214,0 +170784690589,214,0 +170784690637,214,0 +170784690685,214,0 +170784690734,214,0 +170784690782,214,0 +170784690830,214,0 +170784690878,214,0 +170784690926,214,0 +170784690973,214,0 +170784691021,214,0 +170784691071,214,0 +170784691120,214,0 +170784691168,214,0 +170784691216,214,0 +170784691264,214,0 +170784691311,214,0 +170784691359,214,0 +170784691407,214,0 +170784691455,214,0 +170784691505,213,0 +170784691552,213,0 +170784691600,214,0 +170784691650,213,0 +170784691699,214,0 +170784691749,214,0 +170784691797,214,0 +170784691845,214,0 +170784691894,213,0 +170784691944,214,0 +170784691992,214,0 +170784692041,214,0 +170784692091,214,0 +170784692139,214,0 +170784692187,214,0 +170784692235,214,0 +170784692282,213,0 +170784692330,213,0 +170784692380,213,0 +170784692428,213,0 +170784692476,213,0 +170784692524,214,0 +170784692572,213,0 +170784692619,214,0 +170784692667,214,0 +170784692715,214,0 +170784692763,213,0 +170784692813,213,0 +170784692862,214,0 +170784692912,214,0 +170784692960,214,0 +170784693009,214,0 +170784693058,214,0 +170784693106,213,0 +170784693156,213,0 +170784693206,213,0 +170784693253,213,0 +170784693301,213,0 +170784693351,213,0 +170784693399,213,0 +170784693446,213,0 +170784693494,213,0 +170784693544,213,0 +170784693593,213,0 +170784693641,213,0 +170784693689,213,0 +170784693739,214,0 +170784693787,214,0 +170784693835,214,0 +170784693883,214,0 +170784693930,214,0 +170784693980,214,0 +170784694028,213,0 +170784694077,213,0 +170784694127,213,0 +170784694175,213,0 +170784694224,213,0 +170784694272,213,0 +170784694320,213,0 +170784694368,213,0 +170784694416,214,0 +170784694464,214,0 +170784694513,214,0 +170784694561,213,0 +170784694611,214,0 +170784694659,214,0 +170784694707,214,0 +170784694755,214,0 +170784694804,213,0 +170784694852,213,0 +170784694902,213,0 +170784694951,213,0 +170784695000,213,0 +170784695048,213,0 +170784695096,213,0 +170784695146,213,0 +170784695195,213,0 +170784695245,213,0 +170784695292,214,0 +170784695340,214,0 +170784695388,214,0 +170784695436,214,0 +170784695484,214,0 +170784695532,214,0 +170784695580,213,0 +170784695629,214,0 +170784695679,214,0 +170784695727,213,0 +170784695775,213,0 +170784695823,213,0 +170784695871,213,0 +170784695919,213,0 +170784695966,213,0 +170784696016,213,0 +170784696064,214,0 +170784696114,214,0 +170784696162,214,0 +170784696209,214,0 +170784696259,214,0 +170784696307,214,0 +170784696355,214,0 +170784696404,214,0 +170784696454,214,0 +170784696503,213,0 +170784696553,213,0 +170784696601,213,0 +170784696649,213,0 +170784696696,213,0 +170784696746,213,0 +170784696794,213,0 +170784696843,213,0 +170784696891,213,0 +170784696941,214,0 +170784696989,214,0 +170784697037,214,0 +170784697085,214,0 +170784697133,214,0 +170784697180,214,0 +170784697228,214,0 +170784697276,213,0 +170784697324,214,0 +170784697372,213,0 +170784697422,213,0 +170784697470,213,0 +170784697518,213,0 +170784697566,213,0 +170784697614,213,0 +170784697661,213,0 +170784697709,213,0 +170784697759,214,0 +170784697807,214,0 +170784697855,214,0 +170784697903,214,0 +170784697951,214,0 +170784697998,214,0 +170784698048,214,0 +170784698096,214,0 +170784698144,214,0 +170784698193,213,0 +170784698241,213,0 +170784698289,213,0 +170784698339,213,0 +170784698388,213,0 +170784698436,213,0 +170784698484,213,0 +170784698533,213,0 +170784698581,213,0 +170784698631,213,0 +170784698679,214,0 +170784698727,213,0 +170784698776,214,0 +170784698824,214,0 +170784698874,214,0 +170784698922,214,0 +170784698971,214,0 +170784699021,213,0 +170784699069,213,0 +170784699117,213,0 +170784699166,213,0 +170784699214,213,0 +170784699262,213,0 +170784699310,213,0 +170784699358,213,0 +170784699406,213,0 +170784699454,214,0 +170784699502,214,0 +170784699549,214,0 +170784699597,214,0 +170784699645,214,0 +170784699693,214,0 +170784699741,214,0 +170784699791,214,0 +170784699839,213,0 +170784699887,213,0 +170784699934,213,0 +170784699984,213,0 +170784700032,213,0 +170784700080,213,0 +170784700128,213,0 +170784700176,213,0 +170784700225,213,0 +170784700273,213,0 +170784700321,213,0 +170784700369,213,0 +170784700419,213,0 +170784700467,213,0 +170784700515,213,0 +170784700562,214,0 +170784700612,214,0 +170784700661,213,0 +170784700709,213,0 +170784700757,213,0 +170784700805,213,0 +170784700853,213,0 +170784700903,213,0 +170784700950,213,0 +170784700998,213,0 +170784701046,213,0 +170784701094,213,0 +170784701142,213,0 +170784701190,213,0 +170784701238,213,0 +170784701287,213,0 +170784701335,213,0 +170784701383,213,0 +170784701431,214,0 +170784701480,214,0 +170784701528,213,0 +170784701578,213,0 +170784701626,213,0 +170784701675,213,0 +170784701723,213,0 +170784701771,213,0 +170784701819,213,0 +170784701869,213,0 +170784701918,213,0 +170784701966,213,0 +170784702016,213,0 +170784702064,213,0 +170784702113,213,0 +170784702161,214,0 +170784702209,214,0 +170784702257,214,0 +170784702304,214,0 +170784702352,213,0 +170784702400,213,0 +170784702448,213,0 +170784702497,213,0 +170784702545,213,0 +170784702593,213,0 +170784702643,213,0 +170784702692,213,0 +170784702741,213,0 +170784702789,213,0 +170784702837,213,0 +170784702885,213,0 +170784702933,213,0 +170784702982,213,0 +170784703030,214,0 +170784703078,213,0 +170784703126,214,0 +170784703175,214,0 +170784703225,213,0 +170784703273,213,0 +170784703322,212,0 +170784703370,213,0 +170784703418,213,0 +170784703466,213,0 +170784703513,213,0 +170784703561,213,0 +170784703609,213,0 +170784703657,213,0 +170784703705,213,0 +170784703753,213,0 +170784703800,213,0 +170784703850,213,0 +170784703898,213,0 +170784703946,213,0 +170784703994,213,0 +170784704041,214,0 +170784704089,213,0 +170784704137,214,0 +170784704185,214,0 +170784704233,214,0 +170784704281,214,0 +170784704328,214,0 +170784704376,213,0 +170784704424,214,0 +170784704472,213,0 +170784704520,213,0 +170784704568,213,0 +170784704615,213,0 +170784704663,213,0 +170784704713,213,0 +170784704760,213,0 +170784704808,214,0 +170784704856,214,0 +170784704906,213,0 +170784704953,214,0 +170784705001,214,0 +170784705049,214,0 +170784705097,214,0 +170784705145,214,0 +170784705193,214,0 +170784705240,214,0 +170784705288,213,0 +170784705336,213,0 +170784705384,214,0 +170784705432,214,0 +170784705480,214,0 +170784705527,214,0 +170784705575,214,0 +170784705623,214,0 +170784705671,214,0 +170784705719,214,0 +170784705767,214,0 +170784705814,214,0 +170784705862,214,0 +170784705910,214,0 +170784705958,214,0 +170784706006,214,0 +170784706054,214,0 +170784706102,214,0 +170784706149,214,0 +170784706197,214,0 +170784706245,214,0 +170784706293,214,0 +170784706342,214,0 +170784706390,214,0 +170784706438,214,0 +170784706486,214,0 +170784706534,214,0 +170784706582,214,0 +170784706629,214,0 +170784706679,214,0 +170784706727,214,0 +170784706776,214,0 +170784706824,214,0 +170784706872,214,0 +170784706920,214,0 +170784706968,213,0 +170784707018,214,0 +170784707066,214,0 +170784707113,213,0 +170784707163,213,0 +170784707212,213,0 +170784707260,214,0 +170784707308,214,0 +170784707358,214,0 +170784707406,214,0 +170784707454,214,0 +170784707503,214,0 +170784707553,214,0 +170784707601,214,0 +170784707648,214,0 +170784707696,213,0 +170784707744,214,0 +170784707794,213,0 +170784707843,213,0 +170784707891,213,0 +170784707939,213,0 +170784707987,213,0 +170784708035,213,0 +170784708083,213,0 +170784708131,213,0 +170784708180,214,0 +170784708228,214,0 +170784708276,214,0 +170784708326,214,0 +170784708375,214,0 +170784708423,214,0 +170784708471,214,0 +170784708519,214,0 +170784708567,213,0 +170784708615,213,0 +170784708665,213,0 +170784708714,213,0 +170784708762,213,0 +170784708810,213,0 +170784708858,213,0 +170784708906,213,0 +170784708955,213,0 +170784709003,213,0 +170784709053,213,0 +170784709102,213,0 +170784709150,214,0 +170784709198,214,0 +170784709246,214,0 +170784709294,214,0 +170784709342,214,0 +170784709390,214,0 +170784709439,213,0 +170784709487,213,0 +170784709535,213,0 +170784709585,213,0 +170784709633,213,0 +170784709682,213,0 +170784709730,213,0 +170784709778,214,0 +170784709826,213,0 +170784709874,213,0 +170784709923,214,0 +170784709971,213,0 +170784710021,214,0 +170784710070,214,0 +170784710118,214,0 +170784710168,214,0 +170784710215,214,0 +170784710263,214,0 +170784710313,213,0 +170784710362,213,0 +170784710410,213,0 +170784710458,213,0 +170784710506,213,0 +170784710554,213,0 +170784710601,213,0 +170784710649,213,0 +170784710697,213,0 +170784710745,213,0 +170784710793,213,0 +170784710841,213,0 +170784710890,214,0 +170784710938,214,0 +170784710986,214,0 +170784711034,214,0 +170784711083,214,0 +170784711131,213,0 +170784711179,213,0 +170784711229,213,0 +170784711277,213,0 +170784711326,213,0 +170784711374,213,0 +170784711422,213,0 +170784711470,213,0 +170784711519,213,0 +170784711567,213,0 +170784711615,213,0 +170784711663,213,0 +170784711712,213,0 +170784711760,213,0 +170784711810,214,0 +170784711859,214,0 +170784711909,213,0 +170784711957,213,0 +170784712005,213,0 +170784712052,213,0 +170784712100,213,0 +170784712148,213,0 +170784712196,213,0 +170784712244,213,0 +170784712292,213,0 +170784712340,213,0 +170784712388,213,0 +170784712437,213,0 +170784712486,213,0 +170784712536,213,0 +170784712584,213,0 +170784712633,214,0 +170784712683,214,0 +170784712731,214,0 +170784712779,213,0 +170784712827,213,0 +170784712875,213,0 +170784712923,213,0 +170784712970,213,0 +170784713018,213,0 +170784713066,213,0 +170784713114,213,0 +170784713164,213,0 +170784713212,213,0 +170784713259,213,0 +170784713309,213,0 +170784713357,213,0 +170784713405,214,0 +170784713454,213,0 +170784713504,214,0 +170784713552,214,0 +170784713600,213,0 +170784713648,213,0 +170784713697,212,0 +170784713747,213,0 +170784713795,213,0 +170784713844,213,0 +170784713892,213,0 +170784713940,213,0 +170784713988,213,0 +170784714036,213,0 +170784714084,213,0 +170784714133,213,0 +170784714181,213,0 +170784714230,213,0 +170784714278,213,0 +170784714326,214,0 +170784714374,214,0 +170784714422,213,0 +170784714470,213,0 +170784714518,213,0 +170784714567,213,0 +170784714615,213,0 +170784714663,213,0 +170784714710,213,0 +170784714760,213,0 +170784714808,213,0 +170784714857,213,0 +170784714905,213,0 +170784714953,214,0 +170784715001,213,0 +170784715049,214,0 +170784715098,214,0 +170784715148,214,0 +170784715197,213,0 +170784715245,213,0 +170784715293,213,0 +170784715343,213,0 +170784715392,213,0 +170784715440,213,0 +170784715488,213,0 +170784715538,213,0 +170784715586,213,0 +170784715635,213,0 +170784715685,213,0 +170784715734,213,0 +170784715782,213,0 +170784715830,213,0 +170784715878,214,0 +170784715926,213,0 +170784715974,213,0 +170784716022,213,0 +170784716070,213,0 +170784716119,213,0 +170784716167,213,0 +170784716217,213,0 +170784716266,213,0 +170784716314,213,0 +170784716364,213,0 +170784716412,213,0 +170784716460,214,0 +170784716509,214,0 +170784716557,214,0 +170784716605,214,0 +170784716653,214,0 +170784716701,214,0 +170784716749,213,0 +170784716798,213,0 +170784716846,213,0 +170784716896,213,0 +170784716944,213,0 +170784716992,213,0 +170784717041,213,0 +170784717089,213,0 +170784717138,214,0 +170784717186,214,0 +170784717234,214,0 +170784717282,214,0 +170784717332,213,0 +170784717380,213,0 +170784717429,213,0 +170784717478,213,0 +170784717526,213,0 +170784717576,213,0 +170784717624,213,0 +170784717673,213,0 +170784717721,214,0 +170784717769,214,0 +170784717817,214,0 +170784717865,214,0 +170784717913,214,0 +170784717962,214,0 +170784718010,214,0 +170784718058,214,0 +170784718106,214,0 +170784718154,214,0 +170784718202,213,0 +170784718250,213,0 +170784718298,213,0 +170784718346,213,0 +170784718393,213,0 +170784718441,213,0 +170784718489,213,0 +170784718537,213,0 +170784718587,213,0 +170784718636,214,0 +170784718686,213,0 +170784718733,213,0 +170784718781,214,0 +170784718831,213,0 +170784718879,214,0 +170784718927,214,0 +170784718975,214,0 +170784719024,213,0 +170784719072,213,0 +170784719120,213,0 +170784719168,213,0 +170784719216,213,0 +170784719266,213,0 +170784719315,213,0 +170784719365,213,0 +170784719413,213,0 +170784719462,213,0 +170784719512,213,0 +170784719561,214,0 +170784719609,214,0 +170784719657,214,0 +170784719705,213,0 +170784719753,214,0 +170784719801,214,0 +170784719850,213,0 +170784719898,213,0 +170784719946,213,0 +170784719994,213,0 diff --git a/laser_value/0214-04.csv b/laser_value/0214-04.csv new file mode 100644 index 0000000..a56e88e --- /dev/null +++ b/laser_value/0214-04.csv @@ -0,0 +1,7449 @@ +timestamp,laser_value,event +170784720042,213,0 +170784720090,213,0 +170784720140,213,0 +170784720189,213,0 +170784720237,213,0 +170784720285,214,0 +170784720334,214,0 +170784720382,214,0 +170784720432,214,0 +170784720480,214,0 +170784720528,214,0 +170784720577,214,0 +170784720625,214,0 +170784720673,214,0 +170784720723,214,0 +170784720771,214,0 +170784720818,214,0 +170784720866,214,0 +170784720914,214,0 +170784720964,214,0 +170784721012,214,0 +170784721061,214,0 +170784721110,214,0 +170784721158,214,0 +170784721206,214,0 +170784721254,214,0 +170784721302,214,0 +170784721350,214,0 +170784721399,214,0 +170784721447,214,0 +170784721495,213,0 +170784721543,213,0 +170784721593,213,0 +170784721640,213,0 +170784721690,213,0 +170784721738,214,0 +170784721787,214,0 +170784721835,214,0 +170784721883,214,0 +170784721933,214,0 +170784721980,214,0 +170784722030,214,0 +170784722079,214,0 +170784722127,214,0 +170784722175,214,0 +170784722223,214,0 +170784722271,214,0 +170784722319,214,0 +170784722367,213,0 +170784722415,213,0 +170784722463,213,0 +170784722511,213,0 +170784722559,213,0 +170784722608,213,0 +170784722656,213,0 +170784722706,213,0 +170784722755,213,0 +170784722803,213,0 +170784722851,213,0 +170784722900,214,0 +170784722950,214,0 +170784723000,214,0 +170784723049,214,0 +170784723097,214,0 +170784723145,214,0 +170784723194,213,0 +170784723242,213,0 +170784723290,213,0 +170784723338,213,0 +170784723387,213,0 +170784723435,213,0 +170784723483,213,0 +170784723531,213,0 +170784723579,213,0 +170784723627,213,0 +170784723676,213,0 +170784723724,213,0 +170784723774,213,0 +170784723821,214,0 +170784723869,213,0 +170784723917,213,0 +170784723965,214,0 +170784724013,214,0 +170784724062,213,0 +170784724112,213,0 +170784724160,213,0 +170784724208,213,0 +170784724257,213,0 +170784724305,213,0 +170784724353,213,0 +170784724401,213,0 +170784724449,213,0 +170784724498,213,0 +170784724548,213,0 +170784724597,214,0 +170784724645,213,0 +170784724693,214,0 +170784724741,213,0 +170784724791,213,0 +170784724838,214,0 +170784724887,213,0 +170784724934,212,0 +170784724984,213,0 +170784725032,212,0 +170784725079,213,0 +170784725127,213,0 +170784725175,213,0 +170784725223,213,0 +170784725273,213,0 +170784725321,213,0 +170784725368,213,0 +170784725416,214,0 +170784725466,214,0 +170784725514,214,0 +170784725562,213,0 +170784725610,213,0 +170784725658,213,0 +170784725706,213,0 +170784725754,213,0 +170784725801,213,0 +170784725849,213,0 +170784725897,213,0 +170784725945,213,0 +170784725995,213,0 +170784726042,213,0 +170784726092,213,0 +170784726140,213,0 +170784726188,213,0 +170784726235,213,0 +170784726283,213,0 +170784726331,213,0 +170784726381,214,0 +170784726429,214,0 +170784726476,213,0 +170784726524,213,0 +170784726572,213,0 +170784726620,213,0 +170784726670,213,0 +170784726718,213,0 +170784726766,213,0 +170784726813,213,0 +170784726861,214,0 +170784726911,213,0 +170784726959,213,0 +170784727008,213,0 +170784727056,214,0 +170784727104,214,0 +170784727152,214,0 +170784727200,214,0 +170784727249,213,0 +170784727297,214,0 +170784727345,213,0 +170784727393,213,0 +170784727441,213,0 +170784727490,213,0 +170784727538,213,0 +170784727586,213,0 +170784727634,213,0 +170784727683,213,0 +170784727733,213,0 +170784727782,213,0 +170784727830,213,0 +170784727878,214,0 +170784727928,214,0 +170784727976,214,0 +170784728024,214,0 +170784728073,214,0 +170784728121,214,0 +170784728169,213,0 +170784728217,213,0 +170784728265,213,0 +170784728313,213,0 +170784728362,213,0 +170784728412,213,0 +170784728459,213,0 +170784728507,213,0 +170784728555,213,0 +170784728603,214,0 +170784728653,214,0 +170784728700,214,0 +170784728750,214,0 +170784728799,214,0 +170784728847,214,0 +170784728895,214,0 +170784728943,214,0 +170784728991,214,0 +170784729039,213,0 +170784729088,213,0 +170784729138,213,0 +170784729186,213,0 +170784729235,213,0 +170784729283,213,0 +170784729331,213,0 +170784729379,213,0 +170784729429,213,0 +170784729477,213,0 +170784729526,214,0 +170784729574,214,0 +170784729622,214,0 +170784729670,214,0 +170784729718,214,0 +170784729766,214,0 +170784729814,213,0 +170784729861,213,0 +170784729911,213,0 +170784729959,213,0 +170784730008,213,0 +170784730058,213,0 +170784730106,213,0 +170784730154,213,0 +170784730203,213,0 +170784730251,214,0 +170784730300,214,0 +170784730348,214,0 +170784730398,214,0 +170784730446,214,0 +170784730495,214,0 +170784730543,214,0 +170784730591,214,0 +170784730639,213,0 +170784730687,213,0 +170784730734,213,0 +170784730782,213,0 +170784730832,213,0 +170784730880,213,0 +170784730928,213,0 +170784730977,213,0 +170784731027,213,0 +170784731076,214,0 +170784731125,214,0 +170784731175,214,0 +170784731223,214,0 +170784731271,214,0 +170784731320,214,0 +170784731368,214,0 +170784731418,213,0 +170784731465,214,0 +170784731513,213,0 +170784731561,213,0 +170784731610,213,0 +170784731658,213,0 +170784731706,213,0 +170784731754,213,0 +170784731803,213,0 +170784731851,213,0 +170784731899,213,0 +170784731947,213,0 +170784731995,213,0 +170784732043,213,0 +170784732090,214,0 +170784732138,213,0 +170784732186,214,0 +170784732236,214,0 +170784732284,213,0 +170784732331,214,0 +170784732381,213,0 +170784732429,213,0 +170784732478,213,0 +170784732526,213,0 +170784732574,213,0 +170784732622,213,0 +170784732670,213,0 +170784732718,213,0 +170784732766,213,0 +170784732814,213,0 +170784732863,213,0 +170784732913,213,0 +170784732961,214,0 +170784733008,214,0 +170784733056,214,0 +170784733104,214,0 +170784733152,214,0 +170784733201,213,0 +170784733249,213,0 +170784733297,213,0 +170784733345,213,0 +170784733393,213,0 +170784733440,213,0 +170784733490,213,0 +170784733538,213,0 +170784733585,213,0 +170784733633,213,0 +170784733681,213,0 +170784733729,213,0 +170784733777,214,0 +170784733826,213,0 +170784733875,214,0 +170784733923,214,0 +170784733971,214,0 +170784734020,213,0 +170784734068,213,0 +170784734116,213,0 +170784734164,213,0 +170784734211,213,0 +170784734259,213,0 +170784734307,213,0 +170784734355,213,0 +170784734404,213,0 +170784734452,213,0 +170784734502,213,0 +170784734549,214,0 +170784734597,214,0 +170784734645,214,0 +170784734693,214,0 +170784734742,214,0 +170784734792,214,0 +170784734839,213,0 +170784734887,213,0 +170784734937,213,0 +170784734985,213,0 +170784735033,213,0 +170784735081,213,0 +170784735128,213,0 +170784735178,213,0 +170784735226,214,0 +170784735275,214,0 +170784735323,214,0 +170784735371,214,0 +170784735419,214,0 +170784735467,214,0 +170784735515,213,0 +170784735562,214,0 +170784735612,213,0 +170784735661,213,0 +170784735711,213,0 +170784735759,213,0 +170784735808,213,0 +170784735858,214,0 +170784735907,214,0 +170784735955,214,0 +170784736003,214,0 +170784736053,214,0 +170784736101,214,0 +170784736149,214,0 +170784736198,214,0 +170784736246,214,0 +170784736294,213,0 +170784736342,213,0 +170784736390,213,0 +170784736438,213,0 +170784736486,213,0 +170784736533,213,0 +170784736581,213,0 +170784736629,213,0 +170784736679,214,0 +170784736727,213,0 +170784736775,213,0 +170784736822,214,0 +170784736870,214,0 +170784736918,213,0 +170784736966,214,0 +170784737014,214,0 +170784737061,213,0 +170784737109,213,0 +170784737157,213,0 +170784737205,214,0 +170784737253,213,0 +170784737300,213,0 +170784737348,214,0 +170784737396,214,0 +170784737444,213,0 +170784737492,214,0 +170784737539,214,0 +170784737589,213,0 +170784737636,214,0 +170784737684,213,0 +170784737734,213,0 +170784737781,214,0 +170784737829,214,0 +170784737877,214,0 +170784737925,214,0 +170784737973,214,0 +170784738021,214,0 +170784738068,214,0 +170784738116,214,0 +170784738164,214,0 +170784738212,214,0 +170784738261,213,0 +170784738309,214,0 +170784738357,213,0 +170784738405,213,0 +170784738454,213,0 +170784738502,214,0 +170784738550,214,0 +170784738598,214,0 +170784738648,214,0 +170784738697,213,0 +170784738746,214,0 +170784738794,214,0 +170784738842,213,0 +170784738890,214,0 +170784738940,214,0 +170784738988,213,0 +170784739035,214,0 +170784739083,213,0 +170784739131,214,0 +170784739179,214,0 +170784739227,213,0 +170784739275,214,0 +170784739324,214,0 +170784739372,214,0 +170784739419,214,0 +170784739467,214,0 +170784739515,214,0 +170784739563,214,0 +170784739612,214,0 +170784739660,214,0 +170784739708,213,0 +170784739756,214,0 +170784739805,213,0 +170784739853,214,0 +170784739902,213,0 +170784739950,213,0 +170784739998,213,0 +170784740046,213,0 +170784740094,214,0 +170784740142,214,0 +170784740190,214,0 +170784740238,213,0 +170784740286,213,0 +170784740333,213,0 +170784740381,214,0 +170784740429,213,0 +170784740477,214,0 +170784740525,214,0 +170784740573,213,0 +170784740622,213,0 +170784740670,214,0 +170784740718,214,0 +170784740765,214,0 +170784740815,214,0 +170784740864,213,0 +170784740914,213,0 +170784740962,213,0 +170784741010,214,0 +170784741059,214,0 +170784741107,214,0 +170784741155,213,0 +170784741203,213,0 +170784741252,214,0 +170784741300,214,0 +170784741348,214,0 +170784741396,213,0 +170784741444,214,0 +170784741492,214,0 +170784741541,214,0 +170784741589,213,0 +170784741637,214,0 +170784741685,213,0 +170784741733,213,0 +170784741781,214,0 +170784741829,213,0 +170784741876,214,0 +170784741924,213,0 +170784741972,214,0 +170784742021,213,0 +170784742071,214,0 +170784742119,213,0 +170784742167,214,0 +170784742216,214,0 +170784742266,214,0 +170784742315,213,0 +170784742363,214,0 +170784742411,214,0 +170784742460,214,0 +170784742510,214,0 +170784742559,213,0 +170784742607,214,0 +170784742655,213,0 +170784742703,214,0 +170784742751,214,0 +170784742801,214,0 +170784742849,214,0 +170784742897,214,0 +170784742944,214,0 +170784742994,214,0 +170784743043,213,0 +170784743093,214,0 +170784743141,213,0 +170784743190,214,0 +170784743238,214,0 +170784743287,214,0 +170784743335,214,0 +170784743383,213,0 +170784743431,214,0 +170784743479,214,0 +170784743527,213,0 +170784743575,214,0 +170784743624,214,0 +170784743672,214,0 +170784743720,214,0 +170784743768,214,0 +170784743816,214,0 +170784743864,214,0 +170784743912,214,0 +170784743960,214,0 +170784744008,214,0 +170784744056,214,0 +170784744103,214,0 +170784744151,214,0 +170784744199,213,0 +170784744247,214,0 +170784744295,214,0 +170784744343,214,0 +170784744392,214,0 +170784744440,213,0 +170784744487,214,0 +170784744535,214,0 +170784744583,214,0 +170784744631,214,0 +170784744679,214,0 +170784744727,214,0 +170784744775,214,0 +170784744822,214,0 +170784744870,214,0 +170784744918,214,0 +170784744968,214,0 +170784745016,214,0 +170784745063,214,0 +170784745112,213,0 +170784745160,214,0 +170784745208,214,0 +170784745255,213,0 +170784745303,214,0 +170784745351,214,0 +170784745401,214,0 +170784745449,214,0 +170784745496,214,0 +170784745544,214,0 +170784745592,213,0 +170784745640,214,0 +170784745689,213,0 +170784745739,214,0 +170784745787,214,0 +170784745836,214,0 +170784745884,213,0 +170784745932,214,0 +170784745982,214,0 +170784746030,214,0 +170784746078,214,0 +170784746125,213,0 +170784746175,214,0 +170784746223,213,0 +170784746271,214,0 +170784746318,214,0 +170784746366,214,0 +170784746414,214,0 +170784746464,214,0 +170784746513,214,0 +170784746563,213,0 +170784746611,213,0 +170784746659,214,0 +170784746706,213,0 +170784746754,214,0 +170784746802,213,0 +170784746850,214,0 +170784746898,214,0 +170784746946,214,0 +170784746995,214,0 +170784747043,214,0 +170784747091,214,0 +170784747139,214,0 +170784747187,214,0 +170784747235,214,0 +170784747282,213,0 +170784747330,214,0 +170784747378,213,0 +170784747428,214,0 +170784747475,214,0 +170784747523,214,0 +170784747571,214,0 +170784747619,214,0 +170784747667,214,0 +170784747716,214,0 +170784747766,214,0 +170784747813,214,0 +170784747861,214,0 +170784747909,213,0 +170784747957,214,0 +170784748006,214,0 +170784748054,214,0 +170784748102,214,0 +170784748150,214,0 +170784748198,214,0 +170784748246,214,0 +170784748294,213,0 +170784748341,214,0 +170784748389,214,0 +170784748437,213,0 +170784748485,214,0 +170784748533,213,0 +170784748580,214,0 +170784748630,214,0 +170784748678,214,0 +170784748725,214,0 +170784748773,214,0 +170784748821,214,0 +170784748869,214,0 +170784748917,214,0 +170784748964,214,0 +170784749012,214,0 +170784749060,213,0 +170784749108,214,0 +170784749156,213,0 +170784749205,214,0 +170784749253,214,0 +170784749301,214,0 +170784749349,214,0 +170784749397,214,0 +170784749445,214,0 +170784749493,214,0 +170784749541,213,0 +170784749589,214,0 +170784749637,213,0 +170784749686,214,0 +170784749734,214,0 +170784749782,213,0 +170784749829,214,0 +170784749879,214,0 +170784749927,214,0 +170784749974,214,0 +170784750022,214,0 +170784750070,214,0 +170784750119,214,0 +170784750167,213,0 +170784750215,214,0 +170784750263,214,0 +170784750311,214,0 +170784750360,214,0 +170784750409,214,0 +170784750457,214,0 +170784750505,214,0 +170784750553,214,0 +170784750601,213,0 +170784750649,214,0 +170784750698,214,0 +170784750746,214,0 +170784750796,213,0 +170784750843,214,0 +170784750891,214,0 +170784750939,214,0 +170784750989,214,0 +170784751037,214,0 +170784751086,214,0 +170784751134,214,0 +170784751182,213,0 +170784751230,214,0 +170784751278,214,0 +170784751327,214,0 +170784751375,214,0 +170784751425,214,0 +170784751474,214,0 +170784751522,214,0 +170784751572,213,0 +170784751621,214,0 +170784751671,214,0 +170784751719,214,0 +170784751766,213,0 +170784751816,214,0 +170784751866,214,0 +170784751913,214,0 +170784751961,214,0 +170784752009,214,0 +170784752057,214,0 +170784752105,214,0 +170784752154,214,0 +170784752204,214,0 +170784752252,214,0 +170784752300,214,0 +170784752349,214,0 +170784752397,214,0 +170784752445,213,0 +170784752493,213,0 +170784752541,214,0 +170784752589,213,0 +170784752637,214,0 +170784752685,213,0 +170784752733,213,0 +170784752780,213,0 +170784752828,213,0 +170784752876,214,0 +170784752924,214,0 +170784752972,214,0 +170784753020,214,0 +170784753067,214,0 +170784753117,214,0 +170784753165,214,0 +170784753213,214,0 +170784753260,214,0 +170784753308,214,0 +170784753356,214,0 +170784753404,214,0 +170784753451,213,0 +170784753499,214,0 +170784753547,214,0 +170784753595,214,0 +170784753643,214,0 +170784753692,213,0 +170784753740,214,0 +170784753788,214,0 +170784753836,213,0 +170784753883,214,0 +170784753931,213,0 +170784753979,214,0 +170784754027,214,0 +170784754075,214,0 +170784754123,213,0 +170784754171,214,0 +170784754218,214,0 +170784754266,214,0 +170784754314,214,0 +170784754362,214,0 +170784754410,214,0 +170784754457,214,0 +170784754505,214,0 +170784754553,214,0 +170784754601,213,0 +170784754649,214,0 +170784754697,213,0 +170784754744,214,0 +170784754792,214,0 +170784754840,214,0 +170784754888,214,0 +170784754937,214,0 +170784754985,214,0 +170784755033,214,0 +170784755081,214,0 +170784755129,214,0 +170784755176,213,0 +170784755224,213,0 +170784755272,214,0 +170784755320,214,0 +170784755368,213,0 +170784755415,214,0 +170784755463,213,0 +170784755511,214,0 +170784755559,214,0 +170784755607,214,0 +170784755654,214,0 +170784755702,214,0 +170784755752,214,0 +170784755800,214,0 +170784755847,214,0 +170784755895,214,0 +170784755943,214,0 +170784755993,213,0 +170784756040,214,0 +170784756088,214,0 +170784756136,214,0 +170784756185,214,0 +170784756233,213,0 +170784756281,214,0 +170784756330,214,0 +170784756380,214,0 +170784756429,213,0 +170784756477,214,0 +170784756525,214,0 +170784756573,214,0 +170784756621,214,0 +170784756669,213,0 +170784756716,214,0 +170784756764,214,0 +170784756812,213,0 +170784756860,214,0 +170784756908,213,0 +170784756955,214,0 +170784757003,214,0 +170784757051,214,0 +170784757099,214,0 +170784757147,214,0 +170784757195,213,0 +170784757243,213,0 +170784757290,214,0 +170784757338,213,0 +170784757386,214,0 +170784757435,214,0 +170784757483,214,0 +170784757531,213,0 +170784757579,214,0 +170784757627,213,0 +170784757675,214,0 +170784757722,213,0 +170784757770,214,0 +170784757818,214,0 +170784757866,214,0 +170784757914,214,0 +170784757962,213,0 +170784758010,214,0 +170784758057,214,0 +170784758105,214,0 +170784758153,214,0 +170784758201,214,0 +170784758249,214,0 +170784758297,214,0 +170784758344,213,0 +170784758392,213,0 +170784758442,214,0 +170784758489,214,0 +170784758537,214,0 +170784758585,213,0 +170784758633,214,0 +170784758681,214,0 +170784758729,214,0 +170784758778,214,0 +170784758826,213,0 +170784758874,214,0 +170784758922,214,0 +170784758969,213,0 +170784759017,213,0 +170784759065,214,0 +170784759113,213,0 +170784759161,214,0 +170784759209,213,0 +170784759257,214,0 +170784759304,214,0 +170784759354,213,0 +170784759402,214,0 +170784759449,214,0 +170784759497,213,0 +170784759547,214,0 +170784759594,213,0 +170784759644,213,0 +170784759692,213,0 +170784759741,214,0 +170784759789,213,0 +170784759837,213,0 +170784759884,214,0 +170784759932,214,0 +170784759980,213,0 +170784760028,214,0 +170784760075,213,0 +170784760123,213,0 +170784760171,213,0 +170784760219,214,0 +170784760267,214,0 +170784760316,214,0 +170784760364,213,0 +170784760412,214,0 +170784760460,214,0 +170784760507,214,0 +170784760555,214,0 +170784760603,214,0 +170784760653,213,0 +170784760702,213,0 +170784760750,214,0 +170784760798,213,0 +170784760846,214,0 +170784760893,214,0 +170784760941,214,0 +170784760989,214,0 +170784761037,214,0 +170784761085,214,0 +170784761134,214,0 +170784761182,214,0 +170784761230,213,0 +170784761278,214,0 +170784761325,214,0 +170784761375,213,0 +170784761423,213,0 +170784761471,214,0 +170784761518,213,0 +170784761568,213,0 +170784761616,213,0 +170784761665,213,0 +170784761713,213,0 +170784761761,214,0 +170784761809,213,0 +170784761857,213,0 +170784761905,213,0 +170784761954,214,0 +170784762002,213,0 +170784762050,213,0 +170784762097,214,0 +170784762145,213,0 +170784762193,214,0 +170784762241,213,0 +170784762289,214,0 +170784762337,213,0 +170784762385,213,0 +170784762432,214,0 +170784762480,213,0 +170784762528,214,0 +170784762576,213,0 +170784762624,214,0 +170784762673,213,0 +170784762723,213,0 +170784762771,214,0 +170784762819,214,0 +170784762868,214,0 +170784762916,214,0 +170784762966,213,0 +170784763015,213,0 +170784763065,214,0 +170784763113,213,0 +170784763161,214,0 +170784763208,213,0 +170784763256,214,0 +170784763304,214,0 +170784763352,213,0 +170784763400,213,0 +170784763449,214,0 +170784763497,214,0 +170784763545,214,0 +170784763593,214,0 +170784763641,214,0 +170784763689,214,0 +170784763736,213,0 +170784763784,214,0 +170784763832,214,0 +170784763880,213,0 +170784763928,214,0 +170784763975,214,0 +170784764023,214,0 +170784764071,214,0 +170784764121,213,0 +170784764170,214,0 +170784764218,213,0 +170784764266,214,0 +170784764313,214,0 +170784764363,213,0 +170784764411,214,0 +170784764459,214,0 +170784764506,213,0 +170784764554,214,0 +170784764604,213,0 +170784764651,214,0 +170784764699,214,0 +170784764747,213,0 +170784764795,214,0 +170784764843,214,0 +170784764891,214,0 +170784764938,213,0 +170784764986,214,0 +170784765036,213,0 +170784765083,214,0 +170784765131,213,0 +170784765181,214,0 +170784765228,214,0 +170784765276,214,0 +170784765324,213,0 +170784765372,213,0 +170784765420,213,0 +170784765468,214,0 +170784765516,214,0 +170784765563,214,0 +170784765611,214,0 +170784765659,214,0 +170784765707,213,0 +170784765755,214,0 +170784765802,213,0 +170784765852,214,0 +170784765900,213,0 +170784765947,214,0 +170784765995,214,0 +170784766045,214,0 +170784766092,214,0 +170784766140,214,0 +170784766188,213,0 +170784766236,214,0 +170784766284,214,0 +170784766333,214,0 +170784766382,214,0 +170784766432,214,0 +170784766480,214,0 +170784766527,214,0 +170784766577,214,0 +170784766625,214,0 +170784766672,213,0 +170784766720,214,0 +170784766768,214,0 +170784766816,214,0 +170784766864,213,0 +170784766911,214,0 +170784766959,214,0 +170784767007,214,0 +170784767055,213,0 +170784767104,213,0 +170784767152,214,0 +170784767201,213,0 +170784767249,214,0 +170784767297,213,0 +170784767345,214,0 +170784767393,214,0 +170784767440,214,0 +170784767488,214,0 +170784767536,214,0 +170784767584,214,0 +170784767632,213,0 +170784767680,214,0 +170784767727,214,0 +170784767775,214,0 +170784767823,214,0 +170784767872,214,0 +170784767920,214,0 +170784767968,214,0 +170784768016,213,0 +170784768065,214,0 +170784768113,214,0 +170784768162,214,0 +170784768212,213,0 +170784768261,214,0 +170784768309,213,0 +170784768357,214,0 +170784768405,214,0 +170784768452,214,0 +170784768502,214,0 +170784768550,213,0 +170784768598,214,0 +170784768645,213,0 +170784768693,214,0 +170784768741,213,0 +170784768789,214,0 +170784768837,213,0 +170784768885,214,0 +170784768932,213,0 +170784768980,214,0 +170784769030,214,0 +170784769078,214,0 +170784769125,213,0 +170784769173,214,0 +170784769221,213,0 +170784769271,213,0 +170784769319,214,0 +170784769367,213,0 +170784769414,214,0 +170784769464,214,0 +170784769512,214,0 +170784769560,214,0 +170784769609,214,0 +170784769657,214,0 +170784769705,214,0 +170784769753,214,0 +170784769801,214,0 +170784769848,213,0 +170784769896,213,0 +170784769944,213,0 +170784769992,214,0 +170784770041,214,0 +170784770089,213,0 +170784770137,214,0 +170784770185,214,0 +170784770233,214,0 +170784770280,214,0 +170784770328,214,0 +170784770376,213,0 +170784770424,214,0 +170784770472,214,0 +170784770519,214,0 +170784770567,214,0 +170784770615,214,0 +170784770663,214,0 +170784770711,213,0 +170784770759,214,0 +170784770807,213,0 +170784770854,214,0 +170784770902,213,0 +170784770950,213,0 +170784770998,214,0 +170784771046,214,0 +170784771093,214,0 +170784771141,214,0 +170784771191,214,0 +170784771238,213,0 +170784771286,214,0 +170784771336,214,0 +170784771385,214,0 +170784771433,214,0 +170784771481,214,0 +170784771529,214,0 +170784771576,213,0 +170784771624,213,0 +170784771672,214,0 +170784771720,214,0 +170784771768,213,0 +170784771816,214,0 +170784771865,213,0 +170784771914,214,0 +170784771962,214,0 +170784772011,213,0 +170784772061,214,0 +170784772109,213,0 +170784772157,213,0 +170784772204,213,0 +170784772252,214,0 +170784772300,214,0 +170784772348,214,0 +170784772396,213,0 +170784772443,213,0 +170784772491,214,0 +170784772539,214,0 +170784772587,214,0 +170784772635,214,0 +170784772683,214,0 +170784772731,214,0 +170784772778,213,0 +170784772826,213,0 +170784772874,214,0 +170784772922,214,0 +170784772970,213,0 +170784773018,213,0 +170784773067,214,0 +170784773115,214,0 +170784773163,214,0 +170784773211,214,0 +170784773260,214,0 +170784773308,214,0 +170784773356,214,0 +170784773404,214,0 +170784773453,214,0 +170784773501,213,0 +170784773549,213,0 +170784773597,214,0 +170784773644,214,0 +170784773692,214,0 +170784773740,214,0 +170784773788,214,0 +170784773836,214,0 +170784773885,214,0 +170784773934,214,0 +170784773984,214,0 +170784774032,213,0 +170784774080,214,0 +170784774127,213,0 +170784774177,214,0 +170784774225,214,0 +170784774272,213,0 +170784774320,214,0 +170784774368,214,0 +170784774417,213,0 +170784774465,214,0 +170784774513,214,0 +170784774563,214,0 +170784774612,214,0 +170784774660,213,0 +170784774708,214,0 +170784774757,214,0 +170784774807,214,0 +170784774855,214,0 +170784774904,214,0 +170784774952,214,0 +170784775000,214,0 +170784775048,214,0 +170784775098,214,0 +170784775146,214,0 +170784775195,213,0 +170784775243,214,0 +170784775291,214,0 +170784775341,214,0 +170784775389,214,0 +170784775438,213,0 +170784775488,213,0 +170784775535,214,0 +170784775585,214,0 +170784775635,214,0 +170784775682,213,0 +170784775730,214,0 +170784775780,213,0 +170784775828,214,0 +170784775876,214,0 +170784775924,213,0 +170784775972,214,0 +170784776020,214,0 +170784776067,214,0 +170784776115,214,0 +170784776165,214,0 +170784776213,213,0 +170784776260,213,0 +170784776308,213,0 +170784776356,214,0 +170784776404,213,0 +170784776452,214,0 +170784776500,213,0 +170784776548,214,0 +170784776595,213,0 +170784776643,214,0 +170784776691,214,0 +170784776739,213,0 +170784776787,214,0 +170784776835,214,0 +170784776882,214,0 +170784776930,213,0 +170784776978,214,0 +170784777028,214,0 +170784777076,214,0 +170784777123,214,0 +170784777171,213,0 +170784777219,213,0 +170784777267,213,0 +170784777315,213,0 +170784777363,213,0 +170784777411,214,0 +170784777458,214,0 +170784777506,214,0 +170784777554,213,0 +170784777603,213,0 +170784777651,214,0 +170784777701,214,0 +170784777748,214,0 +170784777798,213,0 +170784777846,213,0 +170784777895,214,0 +170784777943,213,0 +170784777993,213,0 +170784778042,214,0 +170784778090,214,0 +170784778138,214,0 +170784778186,213,0 +170784778234,213,0 +170784778282,214,0 +170784778331,213,0 +170784778379,213,0 +170784778427,214,0 +170784778475,214,0 +170784778523,214,0 +170784778570,214,0 +170784778618,214,0 +170784778666,214,0 +170784778714,214,0 +170784778762,213,0 +170784778810,214,0 +170784778857,214,0 +170784778905,213,0 +170784778954,213,0 +170784779002,213,0 +170784779050,213,0 +170784779098,214,0 +170784779147,214,0 +170784779195,214,0 +170784779243,214,0 +170784779291,213,0 +170784779341,214,0 +170784779388,214,0 +170784779438,213,0 +170784779486,213,0 +170784779534,214,0 +170784779583,214,0 +170784779631,214,0 +170784779679,214,0 +170784779727,213,0 +170784779775,214,0 +170784779823,214,0 +170784779871,213,0 +170784779920,213,0 +170784779968,213,0 +170784780016,213,0 +170784780064,214,0 +170784780113,214,0 +170784780161,214,0 +170784780209,214,0 +170784780257,214,0 +170784780307,214,0 +170784780355,214,0 +170784780404,214,0 +170784780454,214,0 +170784780502,214,0 +170784780549,213,0 +170784780599,213,0 +170784780648,213,0 +170784780696,214,0 +170784780744,213,0 +170784780792,214,0 +170784780842,213,0 +170784780890,214,0 +170784780938,213,0 +170784780985,214,0 +170784781035,214,0 +170784781083,213,0 +170784781131,214,0 +170784781180,214,0 +170784781230,214,0 +170784781279,214,0 +170784781328,214,0 +170784781378,214,0 +170784781426,214,0 +170784781474,214,0 +170784781522,214,0 +170784781570,214,0 +170784781618,214,0 +170784781666,213,0 +170784781713,214,0 +170784781763,213,0 +170784781811,214,0 +170784781859,213,0 +170784781907,213,0 +170784781955,213,0 +170784782003,213,0 +170784782051,213,0 +170784782099,213,0 +170784782148,213,0 +170784782198,213,0 +170784782247,213,0 +170784782297,213,0 +170784782346,213,0 +170784782396,213,0 +170784782444,213,0 +170784782492,213,0 +170784782541,214,0 +170784782591,214,0 +170784782640,214,0 +170784782688,214,0 +170784782736,214,0 +170784782784,214,0 +170784782832,214,0 +170784782879,214,0 +170784782927,214,0 +170784782975,213,0 +170784783023,213,0 +170784783071,213,0 +170784783119,213,0 +170784783167,213,0 +170784783215,213,0 +170784783264,213,0 +170784783312,213,0 +170784783360,213,0 +170784783408,213,0 +170784783455,213,0 +170784783503,213,0 +170784783553,213,0 +170784783601,213,0 +170784783648,213,0 +170784783696,214,0 +170784783744,213,0 +170784783792,213,0 +170784783840,214,0 +170784783887,213,0 +170784783935,214,0 +170784783983,214,0 +170784784031,214,0 +170784784080,213,0 +170784784128,214,0 +170784784178,213,0 +170784784226,213,0 +170784784275,213,0 +170784784323,213,0 +170784784371,213,0 +170784784421,213,0 +170784784468,213,0 +170784784516,213,0 +170784784564,213,0 +170784784612,213,0 +170784784660,213,0 +170784784710,213,0 +170784784759,213,0 +170784784809,213,0 +170784784858,213,0 +170784784908,213,0 +170784784956,213,0 +170784785005,213,0 +170784785055,213,0 +170784785103,213,0 +170784785152,213,0 +170784785202,213,0 +170784785250,213,0 +170784785298,213,0 +170784785346,213,0 +170784785393,213,0 +170784785441,213,0 +170784785489,213,0 +170784785539,213,0 +170784785587,213,0 +170784785635,213,0 +170784785684,213,0 +170784785734,213,0 +170784785781,213,0 +170784785829,213,0 +170784785877,213,0 +170784785927,213,0 +170784785975,213,0 +170784786024,213,0 +170784786072,213,0 +170784786120,213,0 +170784786170,213,0 +170784786218,213,0 +170784786266,213,0 +170784786315,213,0 +170784786365,213,0 +170784786414,213,0 +170784786464,213,0 +170784786512,213,0 +170784786561,213,0 +170784786611,213,0 +170784786659,213,0 +170784786707,213,0 +170784786754,213,0 +170784786802,213,0 +170784786850,213,0 +170784786900,213,0 +170784786948,213,0 +170784786996,214,0 +170784787043,214,0 +170784787091,214,0 +170784787141,214,0 +170784787191,214,0 +170784787240,214,0 +170784787290,214,0 +170784787339,214,0 +170784787387,214,0 +170784787435,214,0 +170784787484,214,0 +170784787532,214,0 +170784787580,214,0 +170784787628,214,0 +170784787676,214,0 +170784787726,214,0 +170784787775,214,0 +170784787825,214,0 +170784787874,214,0 +170784787922,214,0 +170784787970,214,0 +170784788018,214,0 +170784788067,214,0 +170784788117,214,0 +170784788166,214,0 +170784788214,214,0 +170784788262,213,0 +170784788312,214,0 +170784788362,214,0 +170784788409,214,0 +170784788457,214,0 +170784788507,214,0 +170784788555,213,0 +170784788603,213,0 +170784788651,213,0 +170784788699,213,0 +170784788747,213,0 +170784788796,213,0 +170784788844,212,0 +170784788894,213,0 +170784788942,212,0 +170784788990,213,0 +170784789038,213,0 +170784789085,213,0 +170784789133,213,0 +170784789181,213,0 +170784789231,213,0 +170784789279,213,0 +170784789327,213,0 +170784789376,213,0 +170784789426,213,0 +170784789474,214,0 +170784789523,213,0 +170784789571,214,0 +170784789621,213,0 +170784789670,213,0 +170784789718,213,0 +170784789768,213,0 +170784789816,213,0 +170784789864,213,0 +170784789912,213,0 +170784789959,213,0 +170784790009,213,0 +170784790057,213,0 +170784790105,213,0 +170784790153,213,0 +170784790200,213,0 +170784790248,213,0 +170784790296,213,0 +170784790344,213,0 +170784790394,213,0 +170784790442,213,0 +170784790489,214,0 +170784790537,213,0 +170784790585,213,0 +170784790633,213,0 +170784790683,213,0 +170784790732,213,0 +170784790780,213,0 +170784790830,213,0 +170784790878,213,0 +170784790925,213,0 +170784790975,213,0 +170784791023,213,0 +170784791072,213,0 +170784791120,213,0 +170784791170,213,0 +170784791218,214,0 +170784791267,213,0 +170784791315,213,0 +170784791365,213,0 +170784791412,213,0 +170784791460,213,0 +170784791510,213,0 +170784791558,213,0 +170784791606,213,0 +170784791655,213,0 +170784791703,213,0 +170784791751,213,0 +170784791800,213,0 +170784791848,214,0 +170784791896,214,0 +170784791946,214,0 +170784791994,214,0 +170784792042,214,0 +170784792091,214,0 +170784792139,214,0 +170784792187,214,0 +170784792236,213,0 +170784792284,213,0 +170784792332,213,0 +170784792380,214,0 +170784792428,213,0 +170784792476,214,0 +170784792524,214,0 +170784792572,214,0 +170784792620,214,0 +170784792669,214,0 +170784792719,214,0 +170784792768,214,0 +170784792816,214,0 +170784792864,214,0 +170784792914,213,0 +170784792963,213,0 +170784793013,213,0 +170784793061,213,0 +170784793110,213,0 +170784793160,213,0 +170784793209,213,0 +170784793257,213,0 +170784793305,213,0 +170784793353,213,0 +170784793403,213,0 +170784793452,213,0 +170784793500,213,0 +170784793548,213,0 +170784793596,213,0 +170784793644,213,0 +170784793692,213,0 +170784793741,213,0 +170784793789,213,0 +170784793837,213,0 +170784793885,214,0 +170784793935,212,0 +170784793982,213,0 +170784794030,213,0 +170784794080,213,0 +170784794128,213,0 +170784794176,213,0 +170784794224,212,0 +170784794273,213,0 +170784794321,213,0 +170784794371,213,0 +170784794420,213,0 +170784794470,213,0 +170784794519,213,0 +170784794569,213,0 +170784794617,213,0 +170784794665,214,0 +170784794712,213,0 +170784794760,213,0 +170784794810,213,0 +170784794858,212,0 +170784794907,213,0 +170784794957,213,0 +170784795006,213,0 +170784795054,213,0 +170784795102,213,0 +170784795152,213,0 +170784795201,213,0 +170784795249,213,0 +170784795297,213,0 +170784795347,214,0 +170784795395,213,0 +170784795443,214,0 +170784795492,213,0 +170784795540,214,0 +170784795590,214,0 +170784795639,213,0 +170784795687,213,0 +170784795735,213,0 +170784795783,213,0 +170784795832,213,0 +170784795882,213,0 +170784795930,213,0 +170784795978,213,0 +170784796026,213,0 +170784796074,213,0 +170784796122,213,0 +170784796169,213,0 +170784796217,213,0 +170784796265,214,0 +170784796313,213,0 +170784796361,213,0 +170784796409,214,0 +170784796459,213,0 +170784796507,213,0 +170784796556,212,0 +170784796604,213,0 +170784796652,213,0 +170784796702,213,0 +170784796751,213,0 +170784796799,213,0 +170784796847,213,0 +170784796896,213,0 +170784796944,213,0 +170784796992,213,0 +170784797040,213,0 +170784797090,213,0 +170784797138,214,0 +170784797186,214,0 +170784797233,214,0 +170784797281,213,0 +170784797329,213,0 +170784797379,213,0 +170784797427,213,0 +170784797475,213,0 +170784797523,213,0 +170784797571,213,0 +170784797619,213,0 +170784797668,213,0 +170784797716,213,0 +170784797765,213,0 +170784797813,213,0 +170784797861,213,0 +170784797909,214,0 +170784797957,213,0 +170784798004,213,0 +170784798054,213,0 +170784798102,214,0 +170784798149,213,0 +170784798197,213,0 +170784798245,213,0 +170784798293,213,0 +170784798341,213,0 +170784798389,213,0 +170784798436,213,0 +170784798484,213,0 +170784798532,213,0 +170784798582,213,0 +170784798629,213,0 +170784798677,213,0 +170784798725,214,0 +170784798773,213,0 +170784798821,214,0 +170784798869,214,0 +170784798919,214,0 +170784798967,214,0 +170784799016,212,0 +170784799064,213,0 +170784799112,213,0 +170784799161,213,0 +170784799211,213,0 +170784799259,213,0 +170784799307,213,0 +170784799356,213,0 +170784799404,213,0 +170784799452,213,0 +170784799500,213,0 +170784799549,214,0 +170784799599,214,0 +170784799648,214,0 +170784799698,214,0 +170784799747,214,0 +170784799797,214,0 +170784799845,213,0 +170784799893,213,0 +170784799941,213,0 +170784799990,213,0 +170784800038,213,0 +170784800088,213,0 +170784800136,213,0 +170784800183,213,0 +170784800231,213,0 +170784800279,214,0 +170784800327,214,0 +170784800375,214,0 +170784800423,214,0 +170784800471,214,0 +170784800519,214,0 +170784800567,214,0 +170784800616,214,0 +170784800666,213,0 +170784800714,213,0 +170784800762,213,0 +170784800811,213,0 +170784800859,213,0 +170784800909,213,0 +170784800957,213,0 +170784801006,213,0 +170784801056,213,0 +170784801104,214,0 +170784801151,214,0 +170784801201,214,0 +170784801249,214,0 +170784801299,214,0 +170784801346,214,0 +170784801394,214,0 +170784801442,214,0 +170784801492,214,0 +170784801540,213,0 +170784801589,213,0 +170784801637,213,0 +170784801685,213,0 +170784801734,213,0 +170784801782,213,0 +170784801831,214,0 +170784801879,214,0 +170784801927,214,0 +170784801977,214,0 +170784802024,214,0 +170784802072,214,0 +170784802120,214,0 +170784802170,214,0 +170784802217,214,0 +170784802265,214,0 +170784802313,214,0 +170784802361,213,0 +170784802411,213,0 +170784802459,213,0 +170784802508,213,0 +170784802558,213,0 +170784802606,213,0 +170784802654,214,0 +170784802701,214,0 +170784802749,214,0 +170784802797,214,0 +170784802845,214,0 +170784802895,214,0 +170784802942,214,0 +170784802990,214,0 +170784803038,214,0 +170784803086,214,0 +170784803134,214,0 +170784803182,213,0 +170784803232,213,0 +170784803280,213,0 +170784803328,213,0 +170784803376,213,0 +170784803424,214,0 +170784803473,213,0 +170784803522,214,0 +170784803570,214,0 +170784803618,214,0 +170784803668,214,0 +170784803716,214,0 +170784803763,214,0 +170784803811,214,0 +170784803859,214,0 +170784803909,214,0 +170784803958,214,0 +170784804006,213,0 +170784804054,213,0 +170784804102,213,0 +170784804150,213,0 +170784804200,213,0 +170784804248,213,0 +170784804295,214,0 +170784804343,213,0 +170784804391,214,0 +170784804441,214,0 +170784804489,214,0 +170784804537,214,0 +170784804585,214,0 +170784804634,214,0 +170784804682,214,0 +170784804732,214,0 +170784804780,214,0 +170784804828,213,0 +170784804875,213,0 +170784804923,213,0 +170784804971,213,0 +170784805019,213,0 +170784805067,213,0 +170784805115,213,0 +170784805165,213,0 +170784805213,213,0 +170784805260,213,0 +170784805308,214,0 +170784805356,214,0 +170784805404,214,0 +170784805452,214,0 +170784805500,214,0 +170784805548,214,0 +170784805596,214,0 +170784805645,214,0 +170784805693,214,0 +170784805741,213,0 +170784805790,212,0 +170784805838,213,0 +170784805886,213,0 +170784805934,213,0 +170784805983,213,0 +170784806031,213,0 +170784806079,213,0 +170784806127,213,0 +170784806177,213,0 +170784806224,213,0 +170784806272,214,0 +170784806320,213,0 +170784806368,214,0 +170784806416,214,0 +170784806464,214,0 +170784806512,214,0 +170784806562,213,0 +170784806611,213,0 +170784806659,213,0 +170784806707,213,0 +170784806755,213,0 +170784806805,213,0 +170784806853,213,0 +170784806901,213,0 +170784806948,213,0 +170784806998,213,0 +170784807046,213,0 +170784807094,213,0 +170784807142,213,0 +170784807190,214,0 +170784807237,213,0 +170784807285,213,0 +170784807333,213,0 +170784807381,214,0 +170784807431,213,0 +170784807480,213,0 +170784807530,213,0 +170784807577,213,0 +170784807627,213,0 +170784807675,213,0 +170784807723,213,0 +170784807771,213,0 +170784807819,213,0 +170784807868,213,0 +170784807916,213,0 +170784807964,213,0 +170784808012,214,0 +170784808061,213,0 +170784808109,213,0 +170784808157,214,0 +170784808205,214,0 +170784808253,214,0 +170784808301,213,0 +170784808348,213,0 +170784808396,213,0 +170784808444,213,0 +170784808492,213,0 +170784808540,213,0 +170784808588,213,0 +170784808636,213,0 +170784808684,213,0 +170784808732,213,0 +170784808780,214,0 +170784808827,214,0 +170784808875,214,0 +170784808925,214,0 +170784808973,214,0 +170784809021,214,0 +170784809069,213,0 +170784809118,213,0 +170784809168,213,0 +170784809217,213,0 +170784809265,213,0 +170784809315,213,0 +170784809363,213,0 +170784809410,213,0 +170784809458,213,0 +170784809506,213,0 +170784809556,213,0 +170784809604,213,0 +170784809652,213,0 +170784809700,214,0 +170784809747,214,0 +170784809795,214,0 +170784809843,214,0 +170784809891,213,0 +170784809939,213,0 +170784809987,213,0 +170784810037,213,0 +170784810086,213,0 +170784810134,213,0 +170784810182,213,0 +170784810232,213,0 +170784810279,213,0 +170784810327,213,0 +170784810377,213,0 +170784810426,213,0 +170784810474,214,0 +170784810522,214,0 +170784810572,214,0 +170784810620,214,0 +170784810668,214,0 +170784810716,214,0 +170784810764,214,0 +170784810813,213,0 +170784810861,213,0 +170784810909,213,0 +170784810957,213,0 +170784811005,213,0 +170784811053,213,0 +170784811101,213,0 +170784811150,213,0 +170784811200,213,0 +170784811248,213,0 +170784811296,213,0 +170784811344,213,0 +170784811392,213,0 +170784811440,213,0 +170784811489,213,0 +170784811537,214,0 +170784811585,213,0 +170784811633,213,0 +170784811681,213,0 +170784811729,213,0 +170784811778,213,0 +170784811826,213,0 +170784811874,213,0 +170784811922,213,0 +170784811970,213,0 +170784812019,213,0 +170784812069,213,0 +170784812118,214,0 +170784812166,214,0 +170784812216,214,0 +170784812265,214,0 +170784812313,213,0 +170784812363,214,0 +170784812410,214,0 +170784812460,213,0 +170784812508,213,0 +170784812556,213,0 +170784812604,213,0 +170784812653,213,0 +170784812701,213,0 +170784812749,213,0 +170784812797,213,0 +170784812845,213,0 +170784812893,214,0 +170784812942,214,0 +170784812992,214,0 +170784813040,214,0 +170784813089,214,0 +170784813137,214,0 +170784813187,214,0 +170784813236,214,0 +170784813286,214,0 +170784813334,213,0 +170784813383,213,0 +170784813431,213,0 +170784813479,213,0 +170784813527,213,0 +170784813575,213,0 +170784813625,214,0 +170784813674,213,0 +170784813722,213,0 +170784813770,213,0 +170784813818,214,0 +170784813867,214,0 +170784813915,214,0 +170784813963,214,0 +170784814013,213,0 +170784814061,213,0 +170784814109,214,0 +170784814157,213,0 +170784814204,213,0 +170784814252,213,0 +170784814302,213,0 +170784814350,213,0 +170784814398,213,0 +170784814446,213,0 +170784814495,213,0 +170784814543,213,0 +170784814591,213,0 +170784814639,213,0 +170784814687,213,0 +170784814735,213,0 +170784814783,214,0 +170784814832,214,0 +170784814880,213,0 +170784814929,213,0 +170784814977,213,0 +170784815025,213,0 +170784815073,213,0 +170784815123,213,0 +170784815171,213,0 +170784815220,213,0 +170784815270,213,0 +170784815318,213,0 +170784815366,213,0 +170784815413,213,0 +170784815461,213,0 +170784815509,213,0 +170784815557,213,0 +170784815607,213,0 +170784815656,214,0 +170784815706,213,0 +170784815754,213,0 +170784815802,213,0 +170784815850,213,0 +170784815899,213,0 +170784815947,213,0 +170784815997,213,0 +170784816046,213,0 +170784816094,213,0 +170784816142,213,0 +170784816190,213,0 +170784816238,214,0 +170784816286,214,0 +170784816336,214,0 +170784816384,214,0 +170784816431,214,0 +170784816479,214,0 +170784816527,214,0 +170784816575,214,0 +170784816623,214,0 +170784816671,213,0 +170784816719,213,0 +170784816767,214,0 +170784816815,214,0 +170784816863,214,0 +170784816912,214,0 +170784816960,214,0 +170784817008,214,0 +170784817056,214,0 +170784817104,214,0 +170784817152,214,0 +170784817200,214,0 +170784817249,214,0 +170784817297,214,0 +170784817345,214,0 +170784817393,214,0 +170784817441,214,0 +170784817491,214,0 +170784817539,214,0 +170784817588,214,0 +170784817636,214,0 +170784817684,214,0 +170784817732,214,0 +170784817781,214,0 +170784817829,214,0 +170784817877,214,0 +170784817925,214,0 +170784817975,214,0 +170784818023,214,0 +170784818071,214,0 +170784818120,214,0 +170784818168,214,0 +170784818216,214,0 +170784818264,214,0 +170784818312,213,0 +170784818361,213,0 +170784818411,213,0 +170784818460,213,0 +170784818510,214,0 +170784818558,214,0 +170784818606,214,0 +170784818655,214,0 +170784818705,214,0 +170784818753,214,0 +170784818802,214,0 +170784818850,214,0 +170784818898,214,0 +170784818946,214,0 +170784818995,214,0 +170784819045,214,0 +170784819093,214,0 +170784819140,213,0 +170784819188,213,0 +170784819236,213,0 +170784819284,213,0 +170784819332,213,0 +170784819380,213,0 +170784819428,213,0 +170784819476,213,0 +170784819524,213,0 +170784819572,213,0 +170784819620,214,0 +170784819668,214,0 +170784819715,214,0 +170784819763,214,0 +170784819811,214,0 +170784819859,214,0 +170784819907,214,0 +170784819955,213,0 +170784820003,213,0 +170784820053,213,0 +170784820100,213,0 +170784820150,213,0 +170784820198,213,0 +170784820247,213,0 +170784820295,213,0 +170784820343,213,0 +170784820391,214,0 +170784820439,214,0 +170784820487,214,0 +170784820535,214,0 +170784820583,214,0 +170784820631,214,0 +170784820679,214,0 +170784820726,214,0 +170784820774,213,0 +170784820822,213,0 +170784820870,213,0 +170784820918,213,0 +170784820966,213,0 +170784821015,213,0 +170784821063,213,0 +170784821111,213,0 +170784821159,213,0 +170784821207,213,0 +170784821255,213,0 +170784821303,214,0 +170784821351,214,0 +170784821400,214,0 +170784821448,213,0 +170784821498,213,0 +170784821547,213,0 +170784821595,213,0 +170784821645,213,0 +170784821694,213,0 +170784821744,213,0 +170784821792,213,0 +170784821841,213,0 +170784821889,213,0 +170784821937,213,0 +170784821986,213,0 +170784822034,213,0 +170784822084,214,0 +170784822133,214,0 +170784822181,213,0 +170784822229,214,0 +170784822277,213,0 +170784822327,214,0 +170784822375,214,0 +170784822423,213,0 +170784822472,213,0 +170784822520,213,0 +170784822568,213,0 +170784822617,213,0 +170784822665,213,0 +170784822713,213,0 +170784822761,213,0 +170784822811,214,0 +170784822859,213,0 +170784822908,214,0 +170784822957,214,0 +170784823007,214,0 +170784823055,214,0 +170784823103,214,0 +170784823151,214,0 +170784823199,214,0 +170784823246,213,0 +170784823296,213,0 +170784823344,213,0 +170784823392,213,0 +170784823441,213,0 +170784823491,213,0 +170784823540,213,0 +170784823588,213,0 +170784823638,214,0 +170784823686,213,0 +170784823734,213,0 +170784823783,214,0 +170784823831,214,0 +170784823879,214,0 +170784823927,214,0 +170784823975,214,0 +170784824024,213,0 +170784824073,213,0 +170784824123,213,0 +170784824172,213,0 +170784824220,213,0 +170784824268,213,0 +170784824316,213,0 +170784824364,214,0 +170784824414,213,0 +170784824462,213,0 +170784824510,214,0 +170784824558,214,0 +170784824605,214,0 +170784824655,214,0 +170784824705,214,0 +170784824752,214,0 +170784824802,214,0 +170784824851,213,0 +170784824899,213,0 +170784824947,213,0 +170784824995,213,0 +170784825045,213,0 +170784825093,213,0 +170784825142,213,0 +170784825191,213,0 +170784825239,213,0 +170784825287,214,0 +170784825335,213,0 +170784825383,214,0 +170784825431,214,0 +170784825479,214,0 +170784825527,214,0 +170784825574,214,0 +170784825622,214,0 +170784825670,214,0 +170784825718,213,0 +170784825766,213,0 +170784825814,213,0 +170784825863,213,0 +170784825911,213,0 +170784825959,213,0 +170784826007,213,0 +170784826054,213,0 +170784826102,213,0 +170784826150,213,0 +170784826198,213,0 +170784826246,213,0 +170784826294,214,0 +170784826343,213,0 +170784826391,213,0 +170784826439,214,0 +170784826489,213,0 +170784826537,213,0 +170784826584,213,0 +170784826632,213,0 +170784826680,213,0 +170784826728,213,0 +170784826777,213,0 +170784826825,213,0 +170784826873,213,0 +170784826921,213,0 +170784826969,213,0 +170784827017,213,0 +170784827065,214,0 +170784827115,214,0 +170784827164,214,0 +170784827212,214,0 +170784827260,214,0 +170784827309,214,0 +170784827359,213,0 +170784827407,213,0 +170784827456,213,0 +170784827504,213,0 +170784827552,213,0 +170784827600,213,0 +170784827648,213,0 +170784827696,213,0 +170784827744,213,0 +170784827792,213,0 +170784827840,214,0 +170784827888,214,0 +170784827936,214,0 +170784827984,214,0 +170784828033,214,0 +170784828081,214,0 +170784828130,213,0 +170784828178,213,0 +170784828227,213,0 +170784828275,213,0 +170784828325,213,0 +170784828373,213,0 +170784828422,213,0 +170784828470,213,0 +170784828519,213,0 +170784828569,213,0 +170784828617,213,0 +170784828666,213,0 +170784828714,214,0 +170784828762,214,0 +170784828810,214,0 +170784828858,214,0 +170784828907,214,0 +170784828955,214,0 +170784829003,213,0 +170784829053,213,0 +170784829101,213,0 +170784829149,213,0 +170784829196,213,0 +170784829246,213,0 +170784829294,213,0 +170784829342,213,0 +170784829390,213,0 +170784829438,213,0 +170784829485,213,0 +170784829533,213,0 +170784829583,213,0 +170784829631,214,0 +170784829680,214,0 +170784829728,214,0 +170784829776,214,0 +170784829824,213,0 +170784829873,213,0 +170784829921,213,0 +170784829969,213,0 +170784830017,213,0 +170784830067,213,0 +170784830114,213,0 +170784830164,213,0 +170784830213,213,0 +170784830263,214,0 +170784830311,213,0 +170784830359,213,0 +170784830407,214,0 +170784830456,214,0 +170784830504,214,0 +170784830554,214,0 +170784830602,214,0 +170784830650,213,0 +170784830698,213,0 +170784830745,213,0 +170784830793,213,0 +170784830841,213,0 +170784830888,213,0 +170784830936,213,0 +170784830986,213,0 +170784831035,214,0 +170784831084,214,0 +170784831132,214,0 +170784831180,214,0 +170784831228,214,0 +170784831275,214,0 +170784831323,214,0 +170784831371,214,0 +170784831419,213,0 +170784831467,213,0 +170784831514,213,0 +170784831562,213,0 +170784831610,213,0 +170784831658,214,0 +170784831706,213,0 +170784831753,214,0 +170784831801,214,0 +170784831849,214,0 +170784831897,214,0 +170784831945,214,0 +170784831993,214,0 +170784832042,214,0 +170784832092,214,0 +170784832141,214,0 +170784832189,214,0 +170784832237,214,0 +170784832285,213,0 +170784832333,213,0 +170784832383,213,0 +170784832431,214,0 +170784832478,213,0 +170784832528,214,0 +170784832576,214,0 +170784832625,214,0 +170784832675,214,0 +170784832723,214,0 +170784832771,214,0 +170784832819,214,0 +170784832868,214,0 +170784832916,214,0 +170784832966,214,0 +170784833013,214,0 +170784833061,214,0 +170784833109,213,0 +170784833157,213,0 +170784833205,213,0 +170784833253,213,0 +170784833302,213,0 +170784833350,213,0 +170784833398,213,0 +170784833447,213,0 +170784833497,213,0 +170784833545,214,0 +170784833593,214,0 +170784833642,214,0 +170784833690,214,0 +170784833738,214,0 +170784833788,214,0 +170784833835,214,0 +170784833883,213,0 +170784833933,213,0 +170784833981,213,0 +170784834031,213,0 +170784834079,213,0 +170784834127,213,0 +170784834175,213,0 +170784834222,213,0 +170784834270,213,0 +170784834318,213,0 +170784834368,214,0 +170784834416,214,0 +170784834463,214,0 +170784834513,214,0 +170784834561,214,0 +170784834609,214,0 +170784834658,214,0 +170784834706,214,0 +170784834754,213,0 +170784834802,213,0 +170784834850,213,0 +170784834898,213,0 +170784834946,213,0 +170784834994,213,0 +170784835043,213,0 +170784835091,213,0 +170784835139,213,0 +170784835188,214,0 +170784835236,213,0 +170784835286,214,0 +170784835335,214,0 +170784835383,214,0 +170784835431,214,0 +170784835479,214,0 +170784835527,214,0 +170784835575,213,0 +170784835623,213,0 +170784835671,213,0 +170784835719,213,0 +170784835767,213,0 +170784835815,213,0 +170784835864,213,0 +170784835912,213,0 +170784835960,213,0 +170784836008,213,0 +170784836056,213,0 +170784836104,213,0 +170784836152,214,0 +170784836201,213,0 +170784836249,214,0 +170784836298,214,0 +170784836348,214,0 +170784836397,213,0 +170784836445,213,0 +170784836493,213,0 +170784836541,213,0 +170784836591,213,0 +170784836639,213,0 +170784836688,213,0 +170784836736,213,0 +170784836784,213,0 +170784836832,213,0 +170784836880,213,0 +170784836928,213,0 +170784836977,213,0 +170784837025,214,0 +170784837075,213,0 +170784837123,213,0 +170784837171,214,0 +170784837218,213,0 +170784837266,213,0 +170784837316,213,0 +170784837364,213,0 +170784837411,213,0 +170784837459,213,0 +170784837509,213,0 +170784837558,213,0 +170784837606,213,0 +170784837654,213,0 +170784837704,213,0 +170784837752,214,0 +170784837800,213,0 +170784837848,214,0 +170784837897,214,0 +170784837947,214,0 +170784837994,214,0 +170784838044,213,0 +170784838092,213,0 +170784838140,213,0 +170784838188,213,0 +170784838236,213,0 +170784838284,213,0 +170784838332,213,0 +170784838380,213,0 +170784838427,214,0 +170784838475,213,0 +170784838523,214,0 +170784838573,214,0 +170784838621,214,0 +170784838669,214,0 +170784838718,214,0 +170784838766,214,0 +170784838816,213,0 +170784838865,213,0 +170784838913,213,0 +170784838962,213,0 +170784839010,213,0 +170784839060,213,0 +170784839108,213,0 +170784839156,213,0 +170784839204,213,0 +170784839252,213,0 +170784839300,214,0 +170784839347,214,0 +170784839395,214,0 +170784839443,214,0 +170784839493,214,0 +170784839542,214,0 +170784839592,214,0 +170784839639,214,0 +170784839687,213,0 +170784839737,213,0 +170784839785,213,0 +170784839833,213,0 +170784839881,213,0 +170784839928,213,0 +170784839976,213,0 +170784840026,213,0 +170784840075,213,0 +170784840123,214,0 +170784840171,214,0 +170784840219,214,0 +170784840267,214,0 +170784840317,214,0 +170784840365,214,0 +170784840414,214,0 +170784840464,214,0 +170784840513,213,0 +170784840561,213,0 +170784840610,213,0 +170784840660,213,0 +170784840709,213,0 +170784840759,213,0 +170784840807,213,0 +170784840855,214,0 +170784840903,213,0 +170784840951,214,0 +170784840998,214,0 +170784841046,214,0 +170784841094,214,0 +170784841144,214,0 +170784841192,214,0 +170784841240,214,0 +170784841288,213,0 +170784841337,213,0 +170784841387,213,0 +170784841435,213,0 +170784841484,213,0 +170784841532,213,0 +170784841581,213,0 +170784841629,213,0 +170784841677,213,0 +170784841725,213,0 +170784841775,213,0 +170784841823,214,0 +170784841871,214,0 +170784841919,214,0 +170784841967,214,0 +170784842014,214,0 +170784842062,214,0 +170784842110,213,0 +170784842158,213,0 +170784842206,213,0 +170784842254,213,0 +170784842304,213,0 +170784842352,213,0 +170784842401,213,0 +170784842449,213,0 +170784842497,213,0 +170784842546,213,0 +170784842596,214,0 +170784842644,213,0 +170784842693,213,0 +170784842743,214,0 +170784842792,214,0 +170784842840,214,0 +170784842888,214,0 +170784842936,214,0 +170784842986,213,0 +170784843035,212,0 +170784843085,213,0 +170784843133,213,0 +170784843180,213,0 +170784843228,213,0 +170784843276,213,0 +170784843324,213,0 +170784843372,213,0 +170784843420,213,0 +170784843469,213,0 +170784843519,213,0 +170784843567,213,0 +170784843616,214,0 +170784843664,214,0 +170784843714,213,0 +170784843762,213,0 +170784843811,213,0 +170784843859,213,0 +170784843909,213,0 +170784843957,213,0 +170784844004,213,0 +170784844052,213,0 +170784844100,213,0 +170784844148,213,0 +170784844196,213,0 +170784844246,213,0 +170784844294,213,0 +170784844342,213,0 +170784844391,213,0 +170784844439,213,0 +170784844487,214,0 +170784844535,214,0 +170784844583,213,0 +170784844631,213,0 +170784844679,213,0 +170784844727,213,0 +170784844775,213,0 +170784844822,213,0 +170784844870,213,0 +170784844918,213,0 +170784844966,213,0 +170784845014,213,0 +170784845064,213,0 +170784845112,213,0 +170784845159,214,0 +170784845207,214,0 +170784845255,214,0 +170784845305,214,0 +170784845354,213,0 +170784845404,214,0 +170784845452,213,0 +170784845501,213,0 +170784845549,213,0 +170784845597,213,0 +170784845647,213,0 +170784845696,213,0 +170784845746,214,0 +170784845793,214,0 +170784845843,214,0 +170784845891,214,0 +170784845940,214,0 +170784845988,214,0 +170784846037,214,0 +170784846086,214,0 +170784846134,214,0 +170784846184,214,0 +170784846232,213,0 +170784846279,214,0 +170784846327,214,0 +170784846375,214,0 +170784846423,213,0 +170784846471,214,0 +170784846519,214,0 +170784846568,214,0 +170784846616,214,0 +170784846664,214,0 +170784846714,214,0 +170784846762,214,0 +170784846810,214,0 +170784846858,214,0 +170784846906,214,0 +170784846955,214,0 +170784847003,214,0 +170784847051,213,0 +170784847100,213,0 +170784847148,213,0 +170784847198,213,0 +170784847245,214,0 +170784847293,214,0 +170784847341,214,0 +170784847389,214,0 +170784847437,214,0 +170784847485,214,0 +170784847533,214,0 +170784847582,214,0 +170784847632,214,0 +170784847679,214,0 +170784847727,214,0 +170784847777,213,0 +170784847825,214,0 +170784847873,213,0 +170784847921,213,0 +170784847970,213,0 +170784848020,213,0 +170784848069,213,0 +170784848117,213,0 +170784848167,213,0 +170784848215,213,0 +170784848262,214,0 +170784848310,213,0 +170784848360,214,0 +170784848408,214,0 +170784848457,214,0 +170784848505,214,0 +170784848555,214,0 +170784848603,214,0 +170784848650,213,0 +170784848700,213,0 +170784848749,213,0 +170784848797,213,0 +170784848845,213,0 +170784848893,213,0 +170784848941,213,0 +170784848989,213,0 +170784849037,213,0 +170784849087,213,0 +170784849134,214,0 +170784849184,213,0 +170784849233,214,0 +170784849281,214,0 +170784849329,214,0 +170784849378,214,0 +170784849426,214,0 +170784849476,213,0 +170784849524,213,0 +170784849572,213,0 +170784849621,213,0 +170784849671,213,0 +170784849718,213,0 +170784849766,213,0 +170784849814,213,0 +170784849864,213,0 +170784849912,213,0 +170784849960,214,0 +170784850007,213,0 +170784850057,214,0 +170784850106,214,0 +170784850154,214,0 +170784850202,214,0 +170784850250,214,0 +170784850300,213,0 +170784850349,213,0 +170784850397,213,0 +170784850445,213,0 +170784850493,213,0 +170784850541,213,0 +170784850588,213,0 +170784850636,213,0 +170784850686,213,0 +170784850734,213,0 +170784850782,213,0 +170784850831,214,0 +170784850879,214,0 +170784850927,214,0 +170784850976,214,0 +170784851024,213,0 +170784851072,213,0 +170784851120,213,0 +170784851170,213,0 +170784851219,213,0 +170784851267,213,0 +170784851317,213,0 +170784851365,213,0 +170784851414,213,0 +170784851462,214,0 +170784851510,214,0 +170784851558,214,0 +170784851606,214,0 +170784851654,214,0 +170784851703,214,0 +170784851751,214,0 +170784851799,214,0 +170784851847,214,0 +170784851895,213,0 +170784851943,213,0 +170784851990,213,0 +170784852038,213,0 +170784852086,213,0 +170784852134,213,0 +170784852182,213,0 +170784852229,214,0 +170784852277,213,0 +170784852327,214,0 +170784852376,213,0 +170784852424,214,0 +170784852472,214,0 +170784852520,214,0 +170784852568,214,0 +170784852616,214,0 +170784852664,214,0 +170784852711,213,0 +170784852759,213,0 +170784852807,213,0 +170784852855,213,0 +170784852903,213,0 +170784852951,213,0 +170784852999,213,0 +170784853046,213,0 +170784853094,214,0 +170784853142,213,0 +170784853190,214,0 +170784853238,214,0 +170784853287,214,0 +170784853335,214,0 +170784853383,214,0 +170784853432,213,0 +170784853482,213,0 +170784853529,213,0 +170784853577,213,0 +170784853627,213,0 +170784853675,213,0 +170784853722,213,0 +170784853772,213,0 +170784853820,213,0 +170784853869,213,0 +170784853919,214,0 +170784853967,214,0 +170784854016,214,0 +170784854064,214,0 +170784854114,214,0 +170784854162,214,0 +170784854211,214,0 +170784854259,213,0 +170784854307,213,0 +170784854355,213,0 +170784854404,212,0 +170784854452,213,0 +170784854502,213,0 +170784854550,213,0 +170784854597,213,0 +170784854645,213,0 +170784854695,213,0 +170784854743,213,0 +170784854791,213,0 +170784854839,214,0 +170784854887,214,0 +170784854936,214,0 +170784854986,214,0 +170784855035,214,0 +170784855083,214,0 +170784855133,213,0 +170784855180,213,0 +170784855230,213,0 +170784855278,213,0 +170784855326,213,0 +170784855375,213,0 +170784855425,213,0 +170784855474,213,0 +170784855522,213,0 +170784855570,213,0 +170784855620,213,0 +170784855668,213,0 +170784855716,213,0 +170784855763,214,0 +170784855811,214,0 +170784855859,213,0 +170784855909,213,0 +170784855957,213,0 +170784856005,213,0 +170784856052,213,0 +170784856100,213,0 +170784856148,213,0 +170784856196,213,0 +170784856246,213,0 +170784856294,213,0 +170784856342,213,0 +170784856391,214,0 +170784856439,214,0 +170784856487,214,0 +170784856535,214,0 +170784856584,214,0 +170784856633,214,0 +170784856681,214,0 +170784856729,213,0 +170784856777,213,0 +170784856825,213,0 +170784856874,213,0 +170784856924,213,0 +170784856972,213,0 +170784857020,213,0 +170784857068,213,0 +170784857115,214,0 +170784857165,213,0 +170784857214,213,0 +170784857262,214,0 +170784857310,214,0 +170784857358,214,0 +170784857406,214,0 +170784857454,214,0 +170784857504,213,0 +170784857553,213,0 +170784857601,213,0 +170784857649,213,0 +170784857697,213,0 +170784857745,213,0 +170784857793,213,0 +170784857842,213,0 +170784857890,213,0 +170784857938,213,0 +170784857986,214,0 +170784858034,214,0 +170784858082,214,0 +170784858130,214,0 +170784858179,214,0 +170784858227,214,0 +170784858275,214,0 +170784858323,213,0 +170784858372,213,0 +170784858422,213,0 +170784858470,213,0 +170784858518,213,0 +170784858566,214,0 +170784858615,214,0 +170784858663,213,0 +170784858713,214,0 +170784858760,214,0 +170784858808,214,0 +170784858858,214,0 +170784858907,214,0 +170784858955,214,0 +170784859003,214,0 +170784859053,214,0 +170784859101,214,0 +170784859149,213,0 +170784859197,213,0 +170784859244,214,0 +170784859294,213,0 +170784859342,214,0 +170784859391,213,0 +170784859439,214,0 +170784859487,214,0 +170784859535,213,0 +170784859583,214,0 +170784859631,214,0 +170784859679,214,0 +170784859727,213,0 +170784859776,214,0 +170784859826,214,0 +170784859873,214,0 +170784859921,214,0 +170784859969,213,0 +170784860019,214,0 +170784860067,214,0 +170784860115,214,0 +170784860163,214,0 +170784860212,214,0 +170784860260,214,0 +170784860310,214,0 +170784860359,214,0 +170784860408,214,0 +170784860456,214,0 +170784860504,214,0 +170784860552,214,0 +170784860600,214,0 +170784860648,214,0 +170784860696,214,0 +170784860746,214,0 +170784860793,213,0 +170784860843,213,0 +170784860892,213,0 +170784860940,213,0 +170784860988,213,0 +170784861037,213,0 +170784861085,213,0 +170784861133,214,0 +170784861183,214,0 +170784861231,214,0 +170784861280,214,0 +170784861328,214,0 +170784861377,214,0 +170784861425,214,0 +170784861475,214,0 +170784861523,213,0 +170784861571,213,0 +170784861619,213,0 +170784861667,213,0 +170784861715,213,0 +170784861764,213,0 +170784861814,213,0 +170784861863,213,0 +170784861911,213,0 +170784861959,213,0 +170784862007,213,0 +170784862055,213,0 +170784862103,214,0 +170784862151,214,0 +170784862199,214,0 +170784862247,214,0 +170784862295,214,0 +170784862343,214,0 +170784862391,213,0 +170784862439,213,0 +170784862487,213,0 +170784862535,213,0 +170784862582,213,0 +170784862630,213,0 +170784862678,213,0 +170784862726,213,0 +170784862774,213,0 +170784862822,214,0 +170784862870,214,0 +170784862918,214,0 +170784862966,214,0 +170784863016,214,0 +170784863064,214,0 +170784863112,214,0 +170784863159,214,0 +170784863209,213,0 +170784863257,213,0 +170784863307,213,0 +170784863356,213,0 +170784863406,213,0 +170784863454,213,0 +170784863501,214,0 +170784863549,214,0 +170784863599,214,0 +170784863647,214,0 +170784863695,214,0 +170784863743,214,0 +170784863791,214,0 +170784863839,214,0 +170784863887,214,0 +170784863935,213,0 +170784863983,213,0 +170784864032,213,0 +170784864082,213,0 +170784864130,213,0 +170784864178,213,0 +170784864225,213,0 +170784864273,213,0 +170784864323,213,0 +170784864371,214,0 +170784864419,213,0 +170784864468,214,0 +170784864516,214,0 +170784864566,214,0 +170784864614,214,0 +170784864662,214,0 +170784864709,213,0 +170784864759,214,0 +170784864808,213,0 +170784864856,213,0 +170784864906,213,0 +170784864955,213,0 +170784865005,213,0 +170784865053,213,0 +170784865101,213,0 +170784865149,214,0 +170784865197,213,0 +170784865245,214,0 +170784865293,214,0 +170784865341,214,0 +170784865389,214,0 +170784865437,214,0 +170784865485,214,0 +170784865532,214,0 +170784865580,213,0 +170784865628,213,0 +170784865676,213,0 +170784865726,213,0 +170784865775,213,0 +170784865825,213,0 +170784865873,213,0 +170784865922,214,0 +170784865970,214,0 +170784866019,214,0 +170784866067,214,0 +170784866117,214,0 +170784866165,214,0 +170784866213,214,0 +170784866262,214,0 +170784866311,214,0 +170784866359,214,0 +170784866407,213,0 +170784866455,213,0 +170784866503,213,0 +170784866553,213,0 +170784866601,213,0 +170784866650,213,0 +170784866698,213,0 +170784866746,213,0 +170784866794,214,0 +170784866842,214,0 +170784866890,214,0 +170784866938,214,0 +170784866986,214,0 +170784867035,214,0 +170784867083,214,0 +170784867133,214,0 +170784867180,214,0 +170784867230,213,0 +170784867279,213,0 +170784867329,213,0 +170784867377,213,0 +170784867426,213,0 +170784867474,213,0 +170784867524,213,0 +170784867572,213,0 +170784867620,213,0 +170784867667,214,0 +170784867715,213,0 +170784867763,214,0 +170784867813,214,0 +170784867862,214,0 +170784867910,214,0 +170784867959,214,0 +170784868009,213,0 +170784868057,213,0 +170784868105,213,0 +170784868154,213,0 +170784868202,213,0 +170784868250,213,0 +170784868298,213,0 +170784868347,213,0 +170784868397,213,0 +170784868445,213,0 +170784868493,213,0 +170784868541,213,0 +170784868589,214,0 +170784868637,214,0 +170784868686,214,0 +170784868734,214,0 +170784868784,214,0 +170784868833,213,0 +170784868881,213,0 +170784868931,213,0 +170784868979,213,0 +170784869028,213,0 +170784869076,213,0 +170784869125,213,0 +170784869175,213,0 +170784869223,213,0 +170784869270,214,0 +170784869320,213,0 +170784869368,214,0 +170784869417,214,0 +170784869467,214,0 +170784869515,214,0 +170784869563,214,0 +170784869612,213,0 +170784869660,213,0 +170784869708,213,0 +170784869756,213,0 +170784869804,213,0 +170784869853,213,0 +170784869901,213,0 +170784869950,213,0 +170784869998,213,0 +170784870046,213,0 +170784870096,213,0 +170784870145,214,0 +170784870193,214,0 +170784870242,215,0 +170784870292,214,0 +170784870341,214,0 +170784870389,214,0 +170784870437,213,0 +170784870485,213,0 +170784870533,213,0 +170784870582,213,0 +170784870632,213,0 +170784870680,213,0 +170784870729,213,0 +170784870777,213,0 +170784870825,214,0 +170784870875,214,0 +170784870923,214,0 +170784870972,214,0 +170784871020,214,0 +170784871068,214,0 +170784871116,214,0 +170784871164,214,0 +170784871212,214,0 +170784871260,213,0 +170784871309,213,0 +170784871357,213,0 +170784871405,213,0 +170784871454,213,0 +170784871504,213,0 +170784871553,214,0 +170784871601,213,0 +170784871649,213,0 +170784871697,213,0 +170784871746,214,0 +170784871794,214,0 +170784871842,214,0 +170784871890,214,0 +170784871938,214,0 +170784871986,214,0 +170784872035,213,0 +170784872083,213,0 +170784872131,213,0 +170784872179,213,0 +170784872229,214,0 +170784872277,213,0 +170784872326,214,0 +170784872374,214,0 +170784872422,214,0 +170784872470,213,0 +170784872519,214,0 +170784872567,214,0 +170784872615,214,0 +170784872663,214,0 +170784872711,214,0 +170784872759,214,0 +170784872807,214,0 +170784872856,214,0 +170784872904,214,0 +170784872952,214,0 +170784873002,214,0 +170784873051,214,0 +170784873099,214,0 +170784873149,214,0 +170784873198,214,0 +170784873246,214,0 +170784873295,214,0 +170784873343,214,0 +170784873391,214,0 +170784873439,214,0 +170784873487,214,0 +170784873535,214,0 +170784873585,214,0 +170784873632,213,0 +170784873682,213,0 +170784873730,213,0 +170784873779,213,0 +170784873829,213,0 +170784873877,213,0 +170784873925,213,0 +170784873973,214,0 +170784874021,214,0 +170784874070,214,0 +170784874118,214,0 +170784874166,214,0 +170784874214,213,0 +170784874261,214,0 +170784874309,214,0 +170784874357,214,0 +170784874405,213,0 +170784874454,213,0 +170784874502,213,0 +170784874550,213,0 +170784874598,213,0 +170784874646,213,0 +170784874694,213,0 +170784874742,213,0 +170784874791,214,0 +170784874841,214,0 +170784874889,214,0 +170784874937,214,0 +170784874985,214,0 +170784875033,214,0 +170784875081,214,0 +170784875130,214,0 +170784875178,214,0 +170784875228,214,0 +170784875277,213,0 +170784875325,213,0 +170784875375,213,0 +170784875424,213,0 +170784875472,213,0 +170784875522,213,0 +170784875569,213,0 +170784875617,213,0 +170784875665,213,0 +170784875713,214,0 +170784875761,214,0 +170784875809,214,0 +170784875856,214,0 +170784875904,214,0 +170784875952,214,0 +170784876000,214,0 +170784876048,213,0 +170784876096,213,0 +170784876144,213,0 +170784876193,213,0 +170784876241,213,0 +170784876291,213,0 +170784876338,213,0 +170784876386,213,0 +170784876434,213,0 +170784876484,213,0 +170784876532,214,0 +170784876579,214,0 +170784876629,214,0 +170784876678,214,0 +170784876726,214,0 +170784876776,214,0 +170784876825,213,0 +170784876873,213,0 +170784876921,213,0 +170784876971,213,0 +170784877020,213,0 +170784877070,213,0 +170784877118,213,0 +170784877166,213,0 +170784877213,213,0 +170784877261,213,0 +170784877309,213,0 +170784877359,213,0 +170784877408,213,0 +170784877456,214,0 +170784877504,214,0 +170784877552,214,0 +170784877600,214,0 +170784877648,213,0 +170784877697,213,0 +170784877745,213,0 +170784877793,213,0 +170784877842,213,0 +170784877892,213,0 +170784877940,213,0 +170784877987,214,0 +170784878037,214,0 +170784878085,214,0 +170784878133,214,0 +170784878181,214,0 +170784878230,214,0 +170784878278,214,0 +170784878328,214,0 +170784878377,213,0 +170784878425,214,0 +170784878473,213,0 +170784878521,213,0 +170784878570,213,0 +170784878618,213,0 +170784878666,213,0 +170784878714,213,0 +170784878763,214,0 +170784878811,214,0 +170784878859,214,0 +170784878907,214,0 +170784878955,214,0 +170784879003,214,0 +170784879051,214,0 +170784879100,214,0 +170784879148,214,0 +170784879196,214,0 +170784879245,213,0 +170784879293,213,0 +170784879341,213,0 +170784879389,213,0 +170784879437,213,0 +170784879484,213,0 +170784879532,213,0 +170784879580,214,0 +170784879628,213,0 +170784879676,214,0 +170784879724,213,0 +170784879771,214,0 +170784879819,214,0 +170784879867,214,0 +170784879915,214,0 +170784879965,214,0 +170784880012,213,0 +170784880062,213,0 +170784880110,213,0 +170784880159,213,0 +170784880209,213,0 +170784880257,213,0 +170784880305,213,0 +170784880353,214,0 +170784880402,213,0 +170784880450,214,0 +170784880498,214,0 +170784880546,214,0 +170784880594,214,0 +170784880642,214,0 +170784880690,214,0 +170784880738,213,0 +170784880786,214,0 +170784880834,214,0 +170784880883,213,0 +170784880932,213,0 +170784880980,213,0 +170784881028,213,0 +170784881076,213,0 +170784881124,213,0 +170784881172,213,0 +170784881221,213,0 +170784881269,213,0 +170784881317,213,0 +170784881364,213,0 +170784881414,214,0 +170784881462,214,0 +170784881510,214,0 +170784881559,214,0 +170784881607,214,0 +170784881655,213,0 +170784881703,213,0 +170784881751,213,0 +170784881799,213,0 +170784881847,213,0 +170784881895,213,0 +170784881943,213,0 +170784881991,213,0 +170784882039,213,0 +170784882087,213,0 +170784882135,213,0 +170784882184,213,0 +170784882232,213,0 +170784882280,214,0 +170784882329,214,0 +170784882379,214,0 +170784882427,213,0 +170784882476,213,0 +170784882524,213,0 +170784882574,213,0 +170784882622,213,0 +170784882670,213,0 +170784882717,213,0 +170784882765,213,0 +170784882815,213,0 +170784882863,213,0 +170784882911,213,0 +170784882958,213,0 +170784883006,214,0 +170784883054,213,0 +170784883103,214,0 +170784883151,214,0 +170784883201,214,0 +170784883248,214,0 +170784883296,213,0 +170784883344,213,0 +170784883392,213,0 +170784883440,213,0 +170784883489,213,0 +170784883537,213,0 +170784883585,213,0 +170784883634,213,0 +170784883682,213,0 +170784883730,213,0 +170784883778,213,0 +170784883826,214,0 +170784883873,213,0 +170784883923,213,0 +170784883971,214,0 +170784884019,213,0 +170784884067,214,0 +170784884114,213,0 +170784884164,213,0 +170784884212,213,0 +170784884260,213,0 +170784884307,213,0 +170784884355,213,0 +170784884405,213,0 +170784884453,213,0 +170784884500,213,0 +170784884548,213,0 +170784884596,214,0 +170784884644,214,0 +170784884693,214,0 +170784884741,214,0 +170784884789,214,0 +170784884836,214,0 +170784884886,213,0 +170784884934,213,0 +170784884982,213,0 +170784885029,213,0 +170784885077,213,0 +170784885125,213,0 +170784885173,213,0 +170784885221,213,0 +170784885269,214,0 +170784885316,213,0 +170784885364,214,0 +170784885413,214,0 +170784885463,214,0 +170784885512,214,0 +170784885560,213,0 +170784885610,214,0 +170784885659,213,0 +170784885707,213,0 +170784885755,213,0 +170784885804,213,0 +170784885852,214,0 +170784885900,214,0 +170784885948,214,0 +170784885996,214,0 +170784886044,214,0 +170784886092,214,0 +170784886140,214,0 +170784886188,214,0 +170784886235,214,0 +170784886285,214,0 +170784886332,214,0 +170784886380,214,0 +170784886428,214,0 +170784886476,214,0 +170784886524,214,0 +170784886572,214,0 +170784886621,214,0 +170784886670,214,0 +170784886718,214,0 +170784886766,214,0 +170784886815,214,0 +170784886863,214,0 +170784886911,214,0 +170784886959,214,0 +170784887007,214,0 +170784887054,214,0 +170784887102,214,0 +170784887150,214,0 +170784887198,214,0 +170784887246,214,0 +170784887295,213,0 +170784887343,213,0 +170784887391,213,0 +170784887439,213,0 +170784887486,213,0 +170784887536,213,0 +170784887584,213,0 +170784887632,213,0 +170784887680,213,0 +170784887729,213,0 +170784887777,214,0 +170784887825,214,0 +170784887873,214,0 +170784887921,214,0 +170784887970,214,0 +170784888020,214,0 +170784888068,214,0 +170784888117,213,0 +170784888165,213,0 +170784888213,213,0 +170784888261,213,0 +170784888310,213,0 +170784888360,213,0 +170784888409,213,0 +170784888457,213,0 +170784888507,213,0 +170784888556,213,0 +170784888606,214,0 +170784888654,213,0 +170784888702,213,0 +170784888750,214,0 +170784888798,214,0 +170784888846,214,0 +170784888895,214,0 +170784888943,214,0 +170784888992,214,0 +170784889040,214,0 +170784889090,214,0 +170784889139,214,0 +170784889187,214,0 +170784889235,214,0 +170784889283,213,0 +170784889333,213,0 +170784889381,213,0 +170784889430,213,0 +170784889478,213,0 +170784889526,213,0 +170784889574,213,0 +170784889622,213,0 +170784889670,213,0 +170784889719,214,0 +170784889769,213,0 +170784889818,214,0 +170784889866,214,0 +170784889914,214,0 +170784889962,214,0 +170784890012,214,0 +170784890061,213,0 +170784890109,213,0 +170784890157,213,0 +170784890207,213,0 +170784890255,213,0 +170784890303,213,0 +170784890352,213,0 +170784890400,213,0 +170784890448,213,0 +170784890496,213,0 +170784890545,214,0 +170784890593,214,0 +170784890641,214,0 +170784890689,214,0 +170784890737,214,0 +170784890785,214,0 +170784890833,214,0 +170784890880,213,0 +170784890928,213,0 +170784890976,213,0 +170784891024,213,0 +170784891072,213,0 +170784891120,213,0 +170784891169,213,0 +170784891217,213,0 +170784891266,213,0 +170784891314,213,0 +170784891364,213,0 +170784891412,213,0 +170784891460,214,0 +170784891508,214,0 +170784891557,214,0 +170784891605,214,0 +170784891653,214,0 +170784891701,213,0 +170784891749,213,0 +170784891797,213,0 +170784891846,213,0 +170784891894,213,0 +170784891942,213,0 +170784891989,213,0 +170784892037,213,0 +170784892085,213,0 +170784892133,213,0 +170784892181,214,0 +170784892229,214,0 +170784892277,214,0 +170784892324,214,0 +170784892372,214,0 +170784892420,213,0 +170784892468,214,0 +170784892516,213,0 +170784892564,213,0 +170784892612,213,0 +170784892659,213,0 +170784892707,213,0 +170784892757,213,0 +170784892804,213,0 +170784892852,213,0 +170784892900,213,0 +170784892948,213,0 +170784892995,214,0 +170784893045,214,0 +170784893093,214,0 +170784893142,214,0 +170784893190,213,0 +170784893238,214,0 +170784893288,214,0 +170784893335,213,0 +170784893383,213,0 +170784893431,213,0 +170784893481,213,0 +170784893529,213,0 +170784893578,213,0 +170784893626,213,0 +170784893676,213,0 +170784893724,214,0 +170784893772,214,0 +170784893819,214,0 +170784893867,214,0 +170784893915,214,0 +170784893965,214,0 +170784894013,214,0 +170784894062,214,0 +170784894110,213,0 +170784894158,213,0 +170784894206,213,0 +170784894254,213,0 +170784894302,213,0 +170784894350,213,0 +170784894399,213,0 +170784894449,214,0 +170784894496,213,0 +170784894544,214,0 +170784894594,214,0 +170784894642,214,0 +170784894691,214,0 +170784894739,214,0 +170784894787,214,0 +170784894835,214,0 +170784894883,214,0 +170784894931,213,0 +170784894979,213,0 +170784895029,213,0 +170784895077,213,0 +170784895126,213,0 +170784895174,213,0 +170784895222,213,0 +170784895270,214,0 +170784895319,213,0 +170784895367,213,0 +170784895415,214,0 +170784895463,214,0 +170784895513,214,0 +170784895560,214,0 +170784895608,214,0 +170784895656,214,0 +170784895704,213,0 +170784895754,213,0 +170784895801,213,0 +170784895851,213,0 +170784895899,213,0 +170784895947,213,0 +170784895995,213,0 +170784896043,214,0 +170784896091,214,0 +170784896139,214,0 +170784896188,214,0 +170784896236,214,0 +170784896284,214,0 +170784896333,214,0 +170784896381,214,0 +170784896429,214,0 +170784896477,214,0 +170784896525,213,0 +170784896575,213,0 +170784896623,213,0 +170784896671,213,0 +170784896719,213,0 +170784896768,213,0 +170784896816,213,0 +170784896864,214,0 +170784896912,213,0 +170784896960,214,0 +170784897009,214,0 +170784897057,214,0 +170784897105,214,0 +170784897154,214,0 +170784897204,214,0 +170784897252,214,0 +170784897300,214,0 +170784897349,213,0 +170784897397,213,0 +170784897445,213,0 +170784897493,213,0 +170784897541,213,0 +170784897589,213,0 +170784897638,213,0 +170784897686,213,0 +170784897734,213,0 +170784897782,213,0 +170784897831,214,0 +170784897881,214,0 +170784897930,214,0 +170784897980,214,0 +170784898029,214,0 +170784898077,214,0 +170784898125,213,0 +170784898173,213,0 +170784898223,213,0 +170784898271,213,0 +170784898318,213,0 +170784898366,213,0 +170784898416,213,0 +170784898465,213,0 +170784898513,214,0 +170784898561,214,0 +170784898609,213,0 +170784898657,214,0 +170784898705,214,0 +170784898753,214,0 +170784898801,214,0 +170784898850,214,0 +170784898898,213,0 +170784898946,213,0 +170784898994,213,0 +170784899042,213,0 +170784899090,213,0 +170784899138,213,0 +170784899186,214,0 +170784899233,213,0 +170784899283,214,0 +170784899331,214,0 +170784899380,214,0 +170784899428,214,0 +170784899476,214,0 +170784899524,214,0 +170784899572,214,0 +170784899620,214,0 +170784899668,214,0 +170784899716,213,0 +170784899765,213,0 +170784899813,213,0 +170784899861,213,0 +170784899911,214,0 +170784899960,214,0 +170784900010,214,0 +170784900057,214,0 +170784900105,214,0 +170784900153,214,0 +170784900201,214,0 +170784900249,214,0 +170784900297,214,0 +170784900347,214,0 +170784900394,214,0 +170784900442,214,0 +170784900492,213,0 +170784900540,213,0 +170784900589,213,0 +170784900637,213,0 +170784900687,213,0 +170784900735,214,0 +170784900784,214,0 +170784900832,213,0 +170784900882,214,0 +170784900931,214,0 +170784900979,214,0 +170784901027,214,0 +170784901075,214,0 +170784901123,214,0 +170784901171,214,0 +170784901220,214,0 +170784901268,214,0 +170784901316,213,0 +170784901364,213,0 +170784901412,213,0 +170784901460,213,0 +170784901508,213,0 +170784901556,214,0 +170784901605,214,0 +170784901653,213,0 +170784901701,214,0 +170784901749,214,0 +170784901797,214,0 +170784901845,214,0 +170784901893,214,0 +170784901941,214,0 +170784901988,214,0 +170784902038,214,0 +170784902086,214,0 +170784902134,213,0 +170784902181,213,0 +170784902231,213,0 +170784902279,213,0 +170784902327,213,0 +170784902374,213,0 +170784902422,213,0 +170784902472,213,0 +170784902520,214,0 +170784902568,214,0 +170784902617,214,0 +170784902665,214,0 +170784902713,214,0 +170784902763,214,0 +170784902810,214,0 +170784902858,214,0 +170784902906,213,0 +170784902954,213,0 +170784903004,213,0 +170784903053,213,0 +170784903101,213,0 +170784903149,213,0 +170784903197,213,0 +170784903245,213,0 +170784903293,213,0 +170784903342,213,0 +170784903390,213,0 +170784903439,214,0 +170784903487,214,0 +170784903535,214,0 +170784903583,214,0 +170784903631,214,0 +170784903680,213,0 +170784903728,213,0 +170784903778,213,0 +170784903826,213,0 +170784903873,213,0 +170784903921,213,0 +170784903969,213,0 +170784904019,213,0 +170784904068,214,0 +170784904118,213,0 +170784904166,213,0 +170784904215,214,0 +170784904263,214,0 +170784904311,214,0 +170784904359,214,0 +170784904407,214,0 +170784904455,214,0 +170784904503,213,0 +170784904551,213,0 +170784904599,213,0 +170784904647,213,0 +170784904696,213,0 +170784904744,213,0 +170784904794,213,0 +170784904842,213,0 +170784904889,213,0 +170784904937,213,0 +170784904985,213,0 +170784905033,213,0 +170784905081,214,0 +170784905131,214,0 +170784905179,214,0 +170784905228,214,0 +170784905278,214,0 +170784905327,213,0 +170784905375,213,0 +170784905423,213,0 +170784905472,213,0 +170784905520,213,0 +170784905568,213,0 +170784905616,213,0 +170784905664,213,0 +170784905714,214,0 +170784905761,214,0 +170784905811,213,0 +170784905859,214,0 +170784905907,214,0 +170784905954,214,0 +170784906002,214,0 +170784906050,214,0 +170784906098,214,0 +170784906146,213,0 +170784906196,213,0 +170784906244,213,0 +170784906292,213,0 +170784906341,213,0 +170784906389,213,0 +170784906437,213,0 +170784906484,213,0 +170784906532,213,0 +170784906580,214,0 +170784906630,214,0 +170784906677,214,0 +170784906725,214,0 +170784906773,214,0 +170784906821,214,0 +170784906869,214,0 +170784906917,214,0 +170784906965,213,0 +170784907013,213,0 +170784907061,213,0 +170784907109,213,0 +170784907158,213,0 +170784907206,213,0 +170784907254,213,0 +170784907302,213,0 +170784907351,214,0 +170784907399,214,0 +170784907449,214,0 +170784907497,214,0 +170784907546,214,0 +170784907594,214,0 +170784907642,214,0 +170784907690,213,0 +170784907739,213,0 +170784907789,213,0 +170784907837,213,0 +170784907886,213,0 +170784907934,213,0 +170784907984,213,0 +170784908032,213,0 +170784908081,213,0 +170784908129,213,0 +170784908177,213,0 +170784908225,214,0 +170784908273,214,0 +170784908321,214,0 +170784908369,214,0 +170784908417,214,0 +170784908465,214,0 +170784908514,214,0 +170784908562,213,0 +170784908610,213,0 +170784908658,213,0 +170784908707,213,0 +170784908755,213,0 +170784908803,213,0 +170784908851,213,0 +170784908900,213,0 +170784908948,213,0 +170784908996,213,0 +170784909044,214,0 +170784909093,213,0 +170784909141,214,0 +170784909189,214,0 +170784909237,214,0 +170784909285,214,0 +170784909333,214,0 +170784909381,213,0 +170784909430,213,0 +170784909478,213,0 +170784909526,213,0 +170784909574,213,0 +170784909623,213,0 +170784909673,213,0 +170784909721,213,0 +170784909769,213,0 +170784909816,213,0 +170784909864,214,0 +170784909912,213,0 +170784909962,214,0 +170784910010,214,0 +170784910059,214,0 +170784910107,214,0 +170784910155,213,0 +170784910203,213,0 +170784910252,213,0 +170784910300,213,0 +170784910348,213,0 +170784910396,213,0 +170784910444,213,0 +170784910492,213,0 +170784910540,213,0 +170784910588,213,0 +170784910636,213,0 +170784910683,213,0 +170784910731,213,0 +170784910779,214,0 +170784910827,214,0 +170784910875,214,0 +170784910923,214,0 +170784910970,213,0 +170784911018,213,0 +170784911066,213,0 +170784911114,213,0 +170784911162,214,0 +170784911210,213,0 +170784911258,213,0 +170784911305,213,0 +170784911355,214,0 +170784911402,214,0 +170784911450,214,0 +170784911498,214,0 +170784911546,214,0 +170784911594,214,0 +170784911641,214,0 +170784911689,214,0 +170784911737,214,0 +170784911785,213,0 +170784911834,213,0 +170784911882,213,0 +170784911930,214,0 +170784911978,214,0 +170784912027,214,0 +170784912075,213,0 +170784912123,214,0 +170784912172,213,0 +170784912220,214,0 +170784912268,214,0 +170784912316,214,0 +170784912364,214,0 +170784912412,214,0 +170784912461,214,0 +170784912509,214,0 +170784912557,213,0 +170784912605,214,0 +170784912653,213,0 +170784912700,213,0 +170784912748,214,0 +170784912796,214,0 +170784912845,214,0 +170784912893,214,0 +170784912941,214,0 +170784912989,214,0 +170784913036,214,0 +170784913084,214,0 +170784913134,214,0 +170784913182,214,0 +170784913229,214,0 +170784913279,214,0 +170784913327,214,0 +170784913375,213,0 +170784913422,213,0 +170784913470,213,0 +170784913518,213,0 +170784913568,213,0 +170784913616,213,0 +170784913665,214,0 +170784913714,214,0 +170784913762,214,0 +170784913810,214,0 +170784913858,214,0 +170784913906,214,0 +170784913954,214,0 +170784914002,214,0 +170784914051,214,0 +170784914099,214,0 +170784914147,214,0 +170784914195,213,0 +170784914243,213,0 +170784914290,213,0 +170784914338,213,0 +170784914386,213,0 +170784914434,213,0 +170784914483,213,0 +170784914533,213,0 +170784914581,213,0 +170784914629,213,0 +170784914677,213,0 +170784914726,214,0 +170784914776,213,0 +170784914824,214,0 +170784914871,214,0 +170784914919,213,0 +170784914967,213,0 +170784915017,213,0 +170784915065,213,0 +170784915114,213,0 +170784915163,214,0 +170784915211,214,0 +170784915259,213,0 +170784915307,213,0 +170784915357,214,0 +170784915404,214,0 +170784915452,214,0 +170784915500,214,0 +170784915548,214,0 +170784915596,214,0 +170784915644,214,0 +170784915693,214,0 +170784915743,213,0 +170784915792,213,0 +170784915842,213,0 +170784915890,213,0 +170784915939,213,0 +170784915989,213,0 +170784916036,214,0 +170784916084,213,0 +170784916132,213,0 +170784916180,214,0 +170784916228,214,0 +170784916276,214,0 +170784916326,214,0 +170784916375,214,0 +170784916425,214,0 +170784916473,214,0 +170784916522,214,0 +170784916570,213,0 +170784916620,213,0 +170784916668,213,0 +170784916715,213,0 +170784916763,213,0 +170784916811,214,0 +170784916859,213,0 +170784916907,214,0 +170784916955,214,0 +170784917005,214,0 +170784917052,214,0 +170784917100,214,0 +170784917150,214,0 +170784917198,214,0 +170784917247,214,0 +170784917295,213,0 +170784917345,213,0 +170784917392,213,0 +170784917440,213,0 +170784917488,213,0 +170784917536,213,0 +170784917584,213,0 +170784917632,213,0 +170784917680,214,0 +170784917730,214,0 +170784917778,214,0 +170784917826,214,0 +170784917874,214,0 +170784917922,214,0 +170784917971,213,0 +170784918021,213,0 +170784918069,213,0 +170784918116,213,0 +170784918166,213,0 +170784918214,213,0 +170784918262,213,0 +170784918310,213,0 +170784918358,213,0 +170784918406,213,0 +170784918454,214,0 +170784918502,214,0 +170784918550,214,0 +170784918599,214,0 +170784918647,214,0 +170784918697,214,0 +170784918746,214,0 +170784918794,214,0 +170784918844,214,0 +170784918893,213,0 +170784918943,213,0 +170784918990,213,0 +170784919040,213,0 +170784919089,213,0 +170784919139,213,0 +170784919187,214,0 +170784919235,214,0 +170784919284,213,0 +170784919334,214,0 +170784919382,214,0 +170784919430,214,0 +170784919479,214,0 +170784919527,214,0 +170784919577,214,0 +170784919625,213,0 +170784919674,213,0 +170784919722,213,0 +170784919772,213,0 +170784919820,213,0 +170784919868,213,0 +170784919917,213,0 +170784919967,213,0 +170784920016,214,0 +170784920064,213,0 +170784920114,213,0 +170784920162,213,0 +170784920210,214,0 +170784920258,214,0 +170784920307,214,0 +170784920357,214,0 +170784920406,213,0 +170784920454,213,0 +170784920502,213,0 +170784920550,213,0 +170784920598,213,0 +170784920646,213,0 +170784920695,213,0 +170784920745,213,0 +170784920793,213,0 +170784920841,213,0 +170784920889,213,0 +170784920937,213,0 +170784920986,214,0 +170784921034,214,0 +170784921082,214,0 +170784921130,214,0 +170784921180,214,0 +170784921229,213,0 +170784921277,213,0 +170784921326,213,0 +170784921374,213,0 +170784921424,213,0 +170784921473,213,0 +170784921523,213,0 +170784921571,213,0 +170784921619,213,0 +170784921667,213,0 +170784921715,213,0 +170784921763,213,0 +170784921812,214,0 +170784921862,214,0 +170784921910,214,0 +170784921959,214,0 +170784922007,213,0 +170784922057,213,0 +170784922104,213,0 +170784922154,213,0 +170784922202,213,0 +170784922251,213,0 +170784922299,213,0 +170784922349,213,0 +170784922397,213,0 +170784922445,213,0 +170784922494,213,0 +170784922544,213,0 +170784922592,213,0 +170784922640,214,0 +170784922689,214,0 +170784922737,214,0 +170784922785,214,0 +170784922832,213,0 +170784922882,213,0 +170784922930,213,0 +170784922978,213,0 +170784923027,213,0 +170784923075,213,0 +170784923123,213,0 +170784923171,213,0 +170784923218,213,0 +170784923266,213,0 +170784923314,213,0 +170784923362,214,0 +170784923412,214,0 +170784923460,214,0 +170784923509,213,0 +170784923557,214,0 +170784923605,214,0 +170784923653,213,0 +170784923701,213,0 +170784923749,213,0 +170784923799,213,0 +170784923846,213,0 +170784923896,213,0 +170784923944,213,0 +170784923993,213,0 +170784924041,213,0 +170784924089,214,0 +170784924137,214,0 +170784924185,214,0 +170784924233,214,0 +170784924281,214,0 +170784924329,214,0 +170784924378,213,0 +170784924426,213,0 +170784924474,213,0 +170784924524,213,0 +170784924572,214,0 +170784924620,214,0 +170784924668,214,0 +170784924717,214,0 +170784924767,214,0 +170784924815,214,0 +170784924863,214,0 +170784924911,214,0 +170784924960,214,0 +170784925008,214,0 +170784925056,214,0 +170784925105,214,0 +170784925153,214,0 +170784925201,214,0 +170784925249,214,0 +170784925298,214,0 +170784925348,214,0 +170784925397,214,0 +170784925445,214,0 +170784925495,214,0 +170784925544,214,0 +170784925592,214,0 +170784925640,214,0 +170784925688,214,0 +170784925736,214,0 +170784925785,214,0 +170784925833,214,0 +170784925881,214,0 +170784925930,214,0 +170784925980,213,0 +170784926028,213,0 +170784926076,213,0 +170784926124,214,0 +170784926173,214,0 +170784926223,214,0 +170784926270,214,0 +170784926318,214,0 +170784926366,214,0 +170784926414,214,0 +170784926462,214,0 +170784926510,214,0 +170784926558,214,0 +170784926605,214,0 +170784926653,214,0 +170784926701,214,0 +170784926749,214,0 +170784926797,213,0 +170784926844,213,0 +170784926892,213,0 +170784926940,213,0 +170784926988,213,0 +170784927036,214,0 +170784927085,214,0 +170784927133,214,0 +170784927181,214,0 +170784927230,214,0 +170784927278,214,0 +170784927327,214,0 +170784927375,214,0 +170784927423,214,0 +170784927470,214,0 +170784927518,214,0 +170784927566,213,0 +170784927614,213,0 +170784927662,213,0 +170784927710,213,0 +170784927758,213,0 +170784927805,213,0 +170784927853,213,0 +170784927901,213,0 +170784927950,213,0 +170784927998,214,0 +170784928048,214,0 +170784928096,214,0 +170784928143,214,0 +170784928191,214,0 +170784928239,214,0 +170784928289,213,0 +170784928336,213,0 +170784928384,213,0 +170784928432,213,0 +170784928480,213,0 +170784928530,213,0 +170784928578,213,0 +170784928625,213,0 +170784928675,214,0 +170784928724,214,0 +170784928772,214,0 +170784928822,214,0 +170784928870,214,0 +170784928919,214,0 +170784928969,214,0 +170784929018,214,0 +170784929066,214,0 +170784929114,213,0 +170784929164,213,0 +170784929212,213,0 +170784929261,213,0 +170784929309,213,0 +170784929357,213,0 +170784929405,214,0 +170784929454,213,0 +170784929504,214,0 +170784929552,214,0 +170784929600,214,0 +170784929648,214,0 +170784929696,214,0 +170784929745,214,0 +170784929793,214,0 +170784929842,214,0 +170784929892,214,0 +170784929940,213,0 +170784929988,213,0 +170784930036,213,0 +170784930084,213,0 +170784930131,213,0 +170784930179,213,0 +170784930227,213,0 +170784930275,213,0 +170784930325,214,0 +170784930372,214,0 +170784930420,214,0 +170784930468,214,0 +170784930516,214,0 +170784930564,214,0 +170784930611,214,0 +170784930659,213,0 +170784930707,213,0 +170784930755,213,0 +170784930803,213,0 +170784930851,213,0 +170784930900,213,0 +170784930950,213,0 +170784930999,213,0 +170784931048,213,0 +170784931096,213,0 +170784931144,213,0 +170784931192,214,0 +170784931240,214,0 +170784931288,214,0 +170784931336,214,0 +170784931384,214,0 +170784931434,214,0 +170784931482,213,0 +170784931530,213,0 +170784931577,213,0 +170784931625,213,0 +170784931673,213,0 +170784931721,213,0 +170784931769,213,0 +170784931817,213,0 +170784931867,213,0 +170784931915,213,0 +170784931962,214,0 +170784932012,214,0 +170784932061,214,0 +170784932111,213,0 +170784932159,214,0 +170784932208,214,0 +170784932258,214,0 +170784932305,212,0 +170784932353,213,0 +170784932401,213,0 +170784932451,213,0 +170784932499,213,0 +170784932546,213,0 +170784932596,213,0 +170784932645,213,0 +170784932695,213,0 +170784932743,213,0 +170784932791,213,0 +170784932838,213,0 +170784932886,214,0 +170784932934,214,0 +170784932982,214,0 +170784933030,213,0 +170784933078,213,0 +170784933127,213,0 +170784933175,213,0 +170784933223,213,0 +170784933271,213,0 +170784933319,213,0 +170784933367,213,0 +170784933415,213,0 +170784933464,213,0 +170784933514,213,0 +170784933563,213,0 +170784933613,214,0 +170784933661,214,0 +170784933709,214,0 +170784933758,213,0 +170784933808,214,0 +170784933855,213,0 +170784933903,213,0 +170784933951,213,0 +170784933999,213,0 +170784934047,213,0 +170784934095,213,0 +170784934143,213,0 +170784934191,214,0 +170784934240,213,0 +170784934288,214,0 +170784934337,214,0 +170784934385,214,0 +170784934435,214,0 +170784934483,214,0 +170784934531,214,0 +170784934580,214,0 +170784934628,213,0 +170784934676,213,0 +170784934724,213,0 +170784934772,213,0 +170784934820,213,0 +170784934868,213,0 +170784934917,213,0 +170784934965,213,0 +170784935013,213,0 +170784935061,213,0 +170784935109,214,0 +170784935157,213,0 +170784935207,214,0 +170784935256,214,0 +170784935306,214,0 +170784935353,214,0 +170784935401,213,0 +170784935449,213,0 +170784935497,213,0 +170784935547,213,0 +170784935595,213,0 +170784935643,213,0 +170784935692,213,0 +170784935740,213,0 +170784935789,214,0 +170784935837,214,0 +170784935885,214,0 +170784935933,214,0 +170784935981,214,0 +170784936031,214,0 +170784936079,214,0 +170784936126,213,0 +170784936174,213,0 +170784936224,213,0 +170784936272,213,0 +170784936320,213,0 +170784936369,213,0 +170784936417,214,0 +170784936467,213,0 +170784936515,214,0 +170784936562,214,0 +170784936610,214,0 +170784936658,214,0 +170784936706,214,0 +170784936756,214,0 +170784936805,214,0 +170784936853,214,0 +170784936901,214,0 +170784936949,213,0 +170784936997,214,0 +170784937046,213,0 +170784937094,213,0 +170784937142,213,0 +170784937190,214,0 +170784937238,214,0 +170784937286,214,0 +170784937334,214,0 +170784937381,214,0 +170784937429,214,0 +170784937477,214,0 +170784937525,214,0 +170784937573,214,0 +170784937623,214,0 +170784937671,214,0 +170784937720,214,0 +170784937768,214,0 +170784937817,214,0 +170784937865,214,0 +170784937913,214,0 +170784937961,213,0 +170784938010,214,0 +170784938058,214,0 +170784938106,214,0 +170784938154,214,0 +170784938202,214,0 +170784938250,214,0 +170784938299,214,0 +170784938347,214,0 +170784938395,214,0 +170784938443,214,0 +170784938491,214,0 +170784938540,214,0 +170784938588,213,0 +170784938636,214,0 +170784938686,213,0 +170784938734,214,0 +170784938781,214,0 +170784938829,214,0 +170784938879,213,0 +170784938928,214,0 +170784938978,214,0 +170784939026,214,0 +170784939074,214,0 +170784939122,214,0 +170784939170,214,0 +170784939218,214,0 +170784939265,214,0 +170784939315,214,0 +170784939363,213,0 +170784939411,213,0 +170784939459,213,0 +170784939508,213,0 +170784939556,213,0 +170784939604,213,0 +170784939652,213,0 +170784939700,213,0 +170784939747,214,0 +170784939797,214,0 +170784939845,214,0 +170784939893,214,0 +170784939941,214,0 +170784939988,214,0 +170784940036,214,0 +170784940084,214,0 +170784940132,213,0 +170784940180,213,0 +170784940229,213,0 +170784940277,213,0 +170784940325,213,0 +170784940373,213,0 +170784940420,213,0 +170784940468,213,0 +170784940516,213,0 +170784940564,213,0 +170784940612,213,0 +170784940659,214,0 +170784940707,214,0 +170784940755,214,0 +170784940803,214,0 +170784940851,213,0 +170784940899,214,0 +170784940947,213,0 +170784940996,213,0 +170784941046,213,0 +170784941093,213,0 +170784941141,213,0 +170784941191,213,0 +170784941239,213,0 +170784941286,213,0 +170784941334,213,0 +170784941382,213,0 +170784941432,214,0 +170784941479,214,0 +170784941527,214,0 +170784941575,214,0 +170784941623,214,0 +170784941671,214,0 +170784941719,214,0 +170784941767,213,0 +170784941814,213,0 +170784941862,213,0 +170784941912,213,0 +170784941960,213,0 +170784942008,213,0 +170784942055,213,0 +170784942105,213,0 +170784942153,213,0 +170784942202,214,0 +170784942250,214,0 +170784942300,214,0 +170784942348,214,0 +170784942397,214,0 +170784942447,214,0 +170784942495,214,0 +170784942543,213,0 +170784942590,213,0 +170784942638,213,0 +170784942686,213,0 +170784942736,213,0 +170784942784,213,0 +170784942833,213,0 +170784942881,213,0 +170784942931,214,0 +170784942979,214,0 +170784943028,214,0 +170784943076,214,0 +170784943124,214,0 +170784943172,214,0 +170784943220,214,0 +170784943268,214,0 +170784943317,214,0 +170784943367,213,0 +170784943415,213,0 +170784943463,213,0 +170784943512,213,0 +170784943560,213,0 +170784943608,213,0 +170784943656,213,0 +170784943706,213,0 +170784943755,213,0 +170784943803,213,0 +170784943853,214,0 +170784943902,214,0 +170784943950,214,0 +170784944000,214,0 +170784944049,214,0 +170784944099,213,0 +170784944147,213,0 +170784944195,213,0 +170784944243,213,0 +170784944291,213,0 +170784944339,213,0 +170784944387,213,0 +170784944434,213,0 +170784944482,213,0 +170784944530,213,0 +170784944578,213,0 +170784944626,213,0 +170784944674,213,0 +170784944721,213,0 +170784944769,214,0 +170784944817,213,0 +170784944867,214,0 +170784944914,214,0 +170784944962,213,0 +170784945010,213,0 +170784945058,213,0 +170784945106,213,0 +170784945154,213,0 +170784945202,213,0 +170784945251,213,0 +170784945301,213,0 +170784945350,213,0 +170784945400,213,0 +170784945448,213,0 +170784945497,214,0 +170784945547,213,0 +170784945596,214,0 +170784945644,214,0 +170784945692,214,0 +170784945742,214,0 +170784945790,213,0 +170784945838,213,0 +170784945885,213,0 +170784945933,213,0 +170784945983,213,0 +170784946031,213,0 +170784946079,213,0 +170784946127,213,0 +170784946175,213,0 +170784946223,213,0 +170784946272,213,0 +170784946320,214,0 +170784946368,214,0 +170784946416,214,0 +170784946464,214,0 +170784946512,214,0 +170784946562,214,0 +170784946611,213,0 +170784946659,213,0 +170784946709,213,0 +170784946758,213,0 +170784946808,213,0 +170784946857,213,0 +170784946907,213,0 +170784946956,213,0 +170784947004,213,0 +170784947052,214,0 +170784947100,214,0 +170784947148,214,0 +170784947197,214,0 +170784947245,214,0 +170784947295,214,0 +170784947343,214,0 +170784947392,213,0 +170784947440,213,0 +170784947488,213,0 +170784947536,213,0 +170784947584,213,0 +170784947634,213,0 +170784947683,214,0 +170784947731,214,0 +170784947780,214,0 +170784947828,214,0 +170784947878,214,0 +170784947926,214,0 +170784947976,214,0 +170784948025,214,0 +170784948075,214,0 +170784948124,214,0 +170784948172,213,0 +170784948220,213,0 +170784948268,213,0 +170784948318,213,0 +170784948367,213,0 +170784948416,213,0 +170784948466,213,0 +170784948514,213,0 +170784948562,213,0 +170784948611,214,0 +170784948661,214,0 +170784948710,214,0 +170784948760,214,0 +170784948808,214,0 +170784948856,214,0 +170784948904,214,0 +170784948953,214,0 +170784949001,213,0 +170784949050,213,0 +170784949098,213,0 +170784949146,213,0 +170784949194,214,0 +170784949242,214,0 +170784949290,213,0 +170784949338,213,0 +170784949388,214,0 +170784949436,214,0 +170784949484,214,0 +170784949531,214,0 +170784949579,214,0 +170784949627,214,0 +170784949675,214,0 +170784949723,214,0 +170784949771,214,0 +170784949821,214,0 +170784949869,214,0 +170784949918,214,0 +170784949966,214,0 +170784950015,214,0 +170784950063,214,0 +170784950113,214,0 +170784950161,214,0 +170784950209,214,0 +170784950257,214,0 +170784950305,214,0 +170784950354,214,0 +170784950402,214,0 +170784950450,214,0 +170784950498,214,0 +170784950546,214,0 +170784950594,214,0 +170784950644,213,0 +170784950691,213,0 +170784950741,213,0 +170784950790,213,0 +170784950840,213,0 +170784950888,213,0 +170784950936,213,0 +170784950985,214,0 +170784951033,214,0 +170784951081,214,0 +170784951131,214,0 +170784951180,214,0 +170784951228,214,0 +170784951276,214,0 +170784951325,214,0 +170784951373,214,0 +170784951421,213,0 +170784951469,213,0 +170784951517,213,0 +170784951565,213,0 +170784951614,213,0 +170784951662,213,0 +170784951712,213,0 +170784951760,213,0 +170784951807,214,0 +170784951855,214,0 +170784951903,214,0 +170784951953,214,0 +170784952001,214,0 +170784952049,214,0 +170784952098,214,0 +170784952146,214,0 +170784952194,214,0 +170784952244,213,0 +170784952293,213,0 +170784952341,213,0 +170784952391,213,0 +170784952438,213,0 +170784952486,213,0 +170784952534,213,0 +170784952584,213,0 +170784952634,213,0 +170784952681,213,0 +170784952729,214,0 +170784952779,214,0 +170784952827,214,0 +170784952875,213,0 +170784952924,214,0 +170784952972,214,0 +170784953020,213,0 +170784953070,213,0 +170784953118,213,0 +170784953167,213,0 +170784953215,213,0 +170784953263,213,0 +170784953311,213,0 +170784953359,213,0 +170784953407,213,0 +170784953455,214,0 +170784953503,214,0 +170784953551,214,0 +170784953599,214,0 +170784953648,213,0 +170784953696,214,0 +170784953744,214,0 +170784953792,214,0 +170784953840,213,0 +170784953889,213,0 +170784953937,213,0 +170784953985,213,0 +170784954033,213,0 +170784954081,213,0 +170784954130,213,0 +170784954178,214,0 +170784954226,213,0 +170784954274,214,0 +170784954322,213,0 +170784954370,214,0 +170784954418,214,0 +170784954466,214,0 +170784954514,214,0 +170784954563,214,0 +170784954611,214,0 +170784954661,213,0 +170784954710,213,0 +170784954758,213,0 +170784954808,213,0 +170784954856,213,0 +170784954905,213,0 +170784954953,213,0 +170784955003,213,0 +170784955051,214,0 +170784955098,213,0 +170784955146,214,0 +170784955196,214,0 +170784955245,214,0 +170784955293,214,0 +170784955343,214,0 +170784955392,213,0 +170784955440,213,0 +170784955488,213,0 +170784955536,213,0 +170784955584,213,0 +170784955632,213,0 +170784955680,213,0 +170784955728,213,0 +170784955777,213,0 +170784955825,213,0 +170784955873,213,0 +170784955921,214,0 +170784955969,214,0 +170784956017,214,0 +170784956065,214,0 +170784956113,214,0 +170784956161,214,0 +170784956209,214,0 +170784956257,213,0 +170784956305,213,0 +170784956352,213,0 +170784956402,213,0 +170784956450,213,0 +170784956499,213,0 +170784956549,213,0 +170784956597,213,0 +170784956646,214,0 +170784956694,214,0 +170784956742,214,0 +170784956790,214,0 +170784956838,214,0 +170784956886,214,0 +170784956934,214,0 +170784956982,214,0 +170784957030,213,0 +170784957077,213,0 +170784957127,213,0 +170784957176,213,0 +170784957224,213,0 +170784957274,213,0 +170784957322,213,0 +170784957371,213,0 +170784957419,213,0 +170784957467,214,0 +170784957515,214,0 +170784957563,214,0 +170784957612,214,0 +170784957660,214,0 +170784957708,214,0 +170784957756,214,0 +170784957804,214,0 +170784957852,213,0 +170784957899,213,0 +170784957947,213,0 +170784957995,213,0 +170784958043,213,0 +170784958091,213,0 +170784958139,213,0 +170784958187,213,0 +170784958234,213,0 +170784958282,214,0 +170784958330,214,0 +170784958378,214,0 +170784958426,213,0 +170784958474,214,0 +170784958523,214,0 +170784958571,214,0 +170784958619,214,0 +170784958669,213,0 +170784958717,213,0 +170784958765,213,0 +170784958813,213,0 +170784958862,213,0 +170784958912,213,0 +170784958960,213,0 +170784959008,213,0 +170784959056,213,0 +170784959103,213,0 +170784959151,213,0 +170784959199,213,0 +170784959247,214,0 +170784959295,213,0 +170784959343,213,0 +170784959391,213,0 +170784959439,213,0 +170784959488,212,0 +170784959538,213,0 +170784959586,213,0 +170784959634,213,0 +170784959683,213,0 +170784959731,213,0 +170784959779,213,0 +170784959827,213,0 +170784959874,213,0 +170784959924,213,0 +170784959972,213,0 +170784960020,213,0 +170784960068,214,0 +170784960116,214,0 +170784960164,214,0 +170784960212,213,0 +170784960260,213,0 +170784960308,213,0 +170784960357,213,0 +170784960407,213,0 +170784960454,213,0 +170784960502,213,0 +170784960550,213,0 +170784960598,213,0 +170784960646,213,0 +170784960695,213,0 +170784960745,214,0 +170784960794,213,0 +170784960842,214,0 +170784960890,214,0 +170784960938,214,0 +170784960988,214,0 +170784961036,213,0 +170784961083,213,0 +170784961133,213,0 +170784961182,213,0 +170784961230,213,0 +170784961280,213,0 +170784961328,214,0 +170784961377,213,0 +170784961425,213,0 +170784961473,214,0 +170784961523,214,0 +170784961571,214,0 +170784961619,214,0 +170784961666,214,0 +170784961716,214,0 +170784961764,214,0 +170784961812,214,0 +170784961860,214,0 +170784961909,214,0 +170784961957,214,0 +170784962006,214,0 +170784962056,214,0 +170784962104,214,0 +170784962152,214,0 +170784962200,214,0 +170784962249,214,0 +170784962299,214,0 +170784962348,214,0 +170784962398,214,0 +170784962447,214,0 +170784962495,214,0 +170784962543,214,0 +170784962591,214,0 +170784962639,214,0 +170784962689,213,0 +170784962736,213,0 +170784962784,213,0 +170784962832,214,0 +170784962880,213,0 +170784962930,214,0 +170784962979,214,0 +170784963027,214,0 +170784963076,214,0 +170784963124,214,0 +170784963172,214,0 +170784963220,214,0 +170784963268,214,0 +170784963317,214,0 +170784963365,214,0 +170784963413,214,0 +170784963461,213,0 +170784963509,213,0 +170784963557,213,0 +170784963604,213,0 +170784963652,213,0 +170784963700,213,0 +170784963748,213,0 +170784963796,214,0 +170784963844,214,0 +170784963893,214,0 +170784963941,214,0 +170784963989,214,0 +170784964038,214,0 +170784964086,214,0 +170784964134,214,0 +170784964182,214,0 +170784964230,214,0 +170784964279,214,0 +170784964327,213,0 +170784964375,213,0 +170784964425,213,0 +170784964472,213,0 +170784964522,213,0 +170784964570,213,0 +170784964618,213,0 +170784964666,213,0 +170784964714,213,0 +170784964763,213,0 +170784964811,213,0 +170784964860,214,0 +170784964908,214,0 +170784964956,214,0 +170784965004,214,0 +170784965053,214,0 +170784965101,214,0 +170784965149,214,0 +170784965197,214,0 +170784965247,213,0 +170784965294,213,0 +170784965342,213,0 +170784965390,213,0 +170784965438,213,0 +170784965486,213,0 +170784965534,213,0 +170784965582,213,0 +170784965630,213,0 +170784965678,213,0 +170784965725,213,0 +170784965773,213,0 +170784965821,214,0 +170784965869,214,0 +170784965917,214,0 +170784965965,214,0 +170784966014,214,0 +170784966062,213,0 +170784966112,214,0 +170784966160,213,0 +170784966208,213,0 +170784966257,213,0 +170784966305,213,0 +170784966353,213,0 +170784966401,213,0 +170784966449,213,0 +170784966497,213,0 +170784966545,213,0 +170784966594,213,0 +170784966642,213,0 +170784966690,214,0 +170784966740,214,0 +170784966789,214,0 +170784966839,214,0 +170784966887,214,0 +170784966935,214,0 +170784966984,214,0 +170784967032,214,0 +170784967082,214,0 +170784967129,213,0 +170784967179,213,0 +170784967227,213,0 +170784967275,213,0 +170784967323,213,0 +170784967372,213,0 +170784967420,213,0 +170784967469,213,0 +170784967519,213,0 +170784967568,213,0 +170784967616,214,0 +170784967664,214,0 +170784967712,214,0 +170784967760,213,0 +170784967808,214,0 +170784967856,214,0 +170784967906,214,0 +170784967955,213,0 +170784968005,213,0 +170784968053,213,0 +170784968101,213,0 +170784968149,213,0 +170784968198,213,0 +170784968247,213,0 +170784968297,213,0 +170784968345,213,0 +170784968393,213,0 +170784968442,213,0 +170784968492,213,0 +170784968540,214,0 +170784968589,213,0 +170784968637,214,0 +170784968685,214,0 +170784968735,214,0 +170784968783,214,0 +170784968832,214,0 +170784968880,213,0 +170784968929,213,0 +170784968977,213,0 +170784969025,213,0 +170784969073,213,0 +170784969121,213,0 +170784969170,213,0 +170784969218,213,0 +170784969266,213,0 +170784969314,213,0 +170784969361,213,0 +170784969409,213,0 +170784969457,214,0 +170784969505,214,0 +170784969553,213,0 +170784969601,214,0 +170784969649,214,0 +170784969697,214,0 +170784969745,214,0 +170784969793,214,0 +170784969842,214,0 +170784969890,213,0 +170784969939,212,0 +170784969987,213,0 +170784970035,213,0 +170784970085,213,0 +170784970133,213,0 +170784970182,213,0 +170784970230,213,0 +170784970278,213,0 +170784970326,213,0 +170784970375,213,0 +170784970425,213,0 +170784970473,213,0 +170784970521,214,0 +170784970570,214,0 +170784970620,214,0 +170784970668,214,0 +170784970717,214,0 +170784970767,213,0 +170784970816,213,0 +170784970864,213,0 +170784970913,212,0 +170784970961,213,0 +170784971009,213,0 +170784971057,213,0 +170784971105,213,0 +170784971153,213,0 +170784971202,213,0 +170784971252,213,0 +170784971300,213,0 +170784971348,213,0 +170784971396,213,0 +170784971444,214,0 +170784971491,214,0 +170784971539,214,0 +170784971587,213,0 +170784971635,214,0 +170784971683,213,0 +170784971731,214,0 +170784971779,213,0 +170784971829,213,0 +170784971877,213,0 +170784971925,213,0 +170784971974,213,0 +170784972022,213,0 +170784972071,213,0 +170784972119,213,0 +170784972167,213,0 +170784972215,213,0 +170784972263,213,0 +170784972311,213,0 +170784972359,213,0 +170784972406,213,0 +170784972454,213,0 +170784972502,213,0 +170784972550,213,0 +170784972598,213,0 +170784972647,213,0 +170784972695,213,0 +170784972743,212,0 +170784972791,212,0 +170784972839,213,0 +170784972887,213,0 +170784972935,213,0 +170784972983,213,0 +170784973031,213,0 +170784973080,213,0 +170784973130,213,0 +170784973178,213,0 +170784973226,213,0 +170784973275,213,0 +170784973325,213,0 +170784973372,214,0 +170784973420,213,0 +170784973468,214,0 +170784973518,213,0 +170784973566,214,0 +170784973614,213,0 +170784973661,213,0 +170784973711,213,0 +170784973759,213,0 +170784973808,213,0 +170784973856,213,0 +170784973906,213,0 +170784973954,213,0 +170784974002,213,0 +170784974050,213,0 +170784974099,213,0 +170784974147,213,0 +170784974197,213,0 +170784974245,213,0 +170784974293,213,0 +170784974341,214,0 +170784974389,214,0 +170784974437,214,0 +170784974484,213,0 +170784974532,213,0 +170784974582,213,0 +170784974632,213,0 +170784974681,213,0 +170784974729,213,0 +170784974777,213,0 +170784974825,213,0 +170784974874,213,0 +170784974922,213,0 +170784974972,213,0 +170784975020,213,0 +170784975069,213,0 +170784975117,213,0 +170784975167,213,0 +170784975216,213,0 +170784975266,213,0 +170784975314,214,0 +170784975362,213,0 +170784975409,214,0 +170784975457,214,0 +170784975505,213,0 +170784975553,213,0 +170784975603,213,0 +170784975652,213,0 +170784975700,213,0 +170784975748,213,0 +170784975796,213,0 +170784975844,213,0 +170784975892,213,0 +170784975939,213,0 +170784975989,213,0 +170784976037,213,0 +170784976085,213,0 +170784976132,214,0 +170784976180,214,0 +170784976230,214,0 +170784976278,214,0 +170784976325,214,0 +170784976373,213,0 +170784976421,213,0 +170784976471,213,0 +170784976518,213,0 +170784976566,213,0 +170784976614,213,0 +170784976662,213,0 +170784976711,213,0 +170784976759,213,0 +170784976807,213,0 +170784976855,213,0 +170784976902,213,0 +170784976950,213,0 +170784976998,213,0 +170784977046,213,0 +170784977094,214,0 +170784977142,214,0 +170784977189,214,0 +170784977237,214,0 +170784977285,214,0 +170784977333,213,0 +170784977381,213,0 +170784977429,213,0 +170784977478,213,0 +170784977526,213,0 +170784977574,213,0 +170784977621,213,0 +170784977669,213,0 +170784977717,213,0 +170784977765,213,0 +170784977813,213,0 +170784977860,213,0 +170784977908,214,0 +170784977956,213,0 +170784978004,214,0 +170784978052,213,0 +170784978099,213,0 +170784978147,214,0 +170784978195,214,0 +170784978243,213,0 +170784978291,213,0 +170784978338,213,0 +170784978386,213,0 +170784978434,213,0 +170784978482,213,0 +170784978530,213,0 +170784978578,213,0 +170784978625,213,0 +170784978675,213,0 +170784978723,214,0 +170784978772,214,0 +170784978820,214,0 +170784978868,214,0 +170784978917,214,0 +170784978965,214,0 +170784979014,214,0 +170784979062,214,0 +170784979110,214,0 +170784979159,214,0 +170784979207,213,0 +170784979255,214,0 +170784979303,214,0 +170784979350,214,0 +170784979400,214,0 +170784979448,214,0 +170784979495,214,0 +170784979543,214,0 +170784979591,214,0 +170784979641,214,0 +170784979688,214,0 +170784979736,214,0 +170784979784,214,0 +170784979832,214,0 +170784979880,214,0 +170784979928,214,0 +170784979976,214,0 +170784980024,214,0 +170784980071,214,0 +170784980119,214,0 +170784980169,214,0 +170784980217,214,0 +170784980264,214,0 +170784980312,213,0 +170784980360,214,0 +170784980408,214,0 +170784980456,214,0 +170784980504,214,0 +170784980552,214,0 +170784980599,214,0 +170784980647,214,0 +170784980695,214,0 +170784980743,214,0 +170784980791,214,0 +170784980840,214,0 +170784980888,214,0 +170784980936,214,0 +170784980986,214,0 +170784981034,213,0 +170784981082,213,0 +170784981131,213,0 +170784981181,214,0 +170784981230,213,0 +170784981278,214,0 +170784981326,213,0 +170784981374,214,0 +170784981422,214,0 +170784981471,214,0 +170784981519,214,0 +170784981567,214,0 +170784981617,214,0 +170784981665,214,0 +170784981713,214,0 +170784981760,214,0 +170784981808,214,0 +170784981856,214,0 +170784981904,214,0 +170784981952,213,0 +170784982002,213,0 +170784982050,213,0 +170784982099,213,0 +170784982147,213,0 +170784982195,213,0 +170784982243,213,0 +170784982292,213,0 +170784982340,213,0 +170784982390,213,0 +170784982438,213,0 +170784982486,213,0 +170784982533,213,0 +170784982581,213,0 +170784982629,214,0 +170784982677,214,0 +170784982725,214,0 +170784982775,214,0 +170784982822,214,0 +170784982870,214,0 +170784982920,213,0 +170784982968,213,0 +170784983016,213,0 +170784983064,213,0 +170784983111,213,0 +170784983159,213,0 +170784983207,213,0 +170784983255,213,0 +170784983303,213,0 +170784983351,213,0 +170784983399,213,0 +170784983447,213,0 +170784983495,213,0 +170784983544,213,0 +170784983592,213,0 +170784983640,213,0 +170784983689,214,0 +170784983739,214,0 +170784983787,214,0 +170784983836,213,0 +170784983884,212,0 +170784983934,213,0 +170784983983,213,0 +170784984031,213,0 +170784984079,213,0 +170784984127,213,0 +170784984175,213,0 +170784984222,213,0 +170784984270,213,0 +170784984318,213,0 +170784984368,213,0 +170784984415,214,0 +170784984463,213,0 +170784984513,213,0 +170784984562,213,0 +170784984610,214,0 +170784984658,214,0 +170784984706,214,0 +170784984756,213,0 +170784984803,213,0 +170784984853,213,0 +170784984901,213,0 +170784984950,213,0 +170784985000,213,0 +170784985049,213,0 +170784985097,213,0 +170784985145,213,0 +170784985195,213,0 +170784985243,213,0 +170784985291,213,0 +170784985338,213,0 +170784985386,213,0 +170784985434,213,0 +170784985482,213,0 +170784985530,213,0 +170784985578,213,0 +170784985626,213,0 +170784985675,213,0 +170784985725,213,0 +170784985773,213,0 +170784985822,212,0 +170784985870,212,0 +170784985918,213,0 +170784985967,213,0 +170784986015,213,0 +170784986063,213,0 +170784986111,213,0 +170784986159,213,0 +170784986208,213,0 +170784986256,213,0 +170784986304,213,0 +170784986352,213,0 +170784986400,213,0 +170784986448,213,0 +170784986496,213,0 +170784986545,213,0 +170784986593,213,0 +170784986643,213,0 +170784986691,213,0 +170784986738,212,0 +170784986786,212,0 +170784986834,212,0 +170784986882,212,0 +170784986930,213,0 +170784986978,213,0 +170784987026,213,0 +170784987074,213,0 +170784987121,213,0 +170784987169,213,0 +170784987219,213,0 +170784987268,213,0 +170784987316,213,0 +170784987366,213,0 +170784987414,213,0 +170784987463,213,0 +170784987513,214,0 +170784987561,213,0 +170784987610,213,0 +170784987658,213,0 +170784987706,213,0 +170784987755,213,0 +170784987803,213,0 +170784987851,213,0 +170784987901,213,0 +170784987949,213,0 +170784987997,213,0 +170784988044,213,0 +170784988092,213,0 +170784988142,213,0 +170784988191,213,0 +170784988239,214,0 +170784988287,214,0 +170784988335,214,0 +170784988385,214,0 +170784988434,214,0 +170784988484,213,0 +170784988533,213,0 +170784988581,213,0 +170784988629,213,0 +170784988677,213,0 +170784988725,213,0 +170784988773,213,0 +170784988821,213,0 +170784988870,213,0 +170784988920,213,0 +170784988969,213,0 +170784989017,213,0 +170784989065,213,0 +170784989113,213,0 +170784989162,213,0 +170784989212,213,0 +170784989262,213,0 +170784989309,213,0 +170784989359,214,0 +170784989407,213,0 +170784989455,213,0 +170784989502,213,0 +170784989552,212,0 +170784989601,213,0 +170784989651,213,0 +170784989699,213,0 +170784989747,213,0 +170784989795,213,0 +170784989843,213,0 +170784989891,213,0 +170784989939,213,0 +170784989986,213,0 +170784990034,213,0 +170784990082,213,0 +170784990130,213,0 +170784990180,213,0 +170784990228,213,0 +170784990275,213,0 +170784990323,213,0 +170784990371,213,0 +170784990419,212,0 +170784990467,213,0 +170784990515,213,0 +170784990565,213,0 +170784990614,213,0 +170784990664,213,0 +170784990711,213,0 +170784990759,213,0 +170784990809,213,0 +170784990857,213,0 +170784990906,213,0 +170784990956,213,0 +170784991005,213,0 +170784991053,213,0 +170784991101,213,0 +170784991149,213,0 +170784991197,213,0 +170784991246,214,0 +170784991294,213,0 +170784991342,212,0 +170784991390,213,0 +170784991438,213,0 +170784991487,213,0 +170784991535,213,0 +170784991585,213,0 +170784991633,213,0 +170784991681,213,0 +170784991729,213,0 +170784991777,213,0 +170784991826,213,0 +170784991875,213,0 +170784991923,213,0 +170784991971,213,0 +170784992021,213,0 +170784992069,213,0 +170784992118,213,0 +170784992167,214,0 +170784992215,214,0 +170784992263,213,0 +170784992311,213,0 +170784992361,213,0 +170784992410,213,0 +170784992458,213,0 +170784992507,213,0 +170784992555,213,0 +170784992603,213,0 +170784992651,213,0 +170784992699,213,0 +170784992747,213,0 +170784992795,213,0 +170784992843,214,0 +170784992891,214,0 +170784992940,214,0 +170784992990,214,0 +170784993037,214,0 +170784993085,214,0 +170784993133,213,0 +170784993181,213,0 +170784993231,213,0 +170784993279,213,0 +170784993326,213,0 +170784993376,213,0 +170784993425,213,0 +170784993473,213,0 +170784993521,213,0 +170784993569,213,0 +170784993617,213,0 +170784993665,213,0 +170784993713,213,0 +170784993761,213,0 +170784993809,214,0 +170784993857,214,0 +170784993905,214,0 +170784993953,214,0 +170784994001,214,0 +170784994048,213,0 +170784994096,213,0 +170784994144,213,0 +170784994194,213,0 +170784994242,213,0 +170784994289,213,0 +170784994337,213,0 +170784994385,213,0 +170784994433,213,0 +170784994481,213,0 +170784994529,213,0 +170784994579,213,0 +170784994628,213,0 +170784994676,213,0 +170784994724,213,0 +170784994774,214,0 +170784994823,214,0 +170784994871,214,0 +170784994921,214,0 +170784994969,214,0 +170784995018,213,0 +170784995066,213,0 +170784995114,212,0 +170784995162,212,0 +170784995211,212,0 +170784995261,213,0 +170784995310,213,0 +170784995358,213,0 +170784995408,213,0 +170784995456,213,0 +170784995504,213,0 +170784995552,213,0 +170784995599,213,0 +170784995647,213,0 +170784995697,213,0 +170784995745,213,0 +170784995793,213,0 +170784995841,213,0 +170784995888,213,0 +170784995936,214,0 +170784995984,212,0 +170784996032,213,0 +170784996082,213,0 +170784996130,213,0 +170784996179,212,0 +170784996227,213,0 +170784996277,213,0 +170784996325,213,0 +170784996374,213,0 +170784996422,213,0 +170784996471,213,0 +170784996521,213,0 +170784996570,213,0 +170784996618,213,0 +170784996666,213,0 +170784996714,213,0 +170784996764,213,0 +170784996812,213,0 +170784996860,213,0 +170784996907,213,0 +170784996955,212,0 +170784997005,212,0 +170784997054,213,0 +170784997102,213,0 +170784997150,213,0 +170784997200,213,0 +170784997248,213,0 +170784997295,212,0 +170784997345,213,0 +170784997394,213,0 +170784997442,213,0 +170784997490,213,0 +170784997540,213,0 +170784997587,213,0 +170784997637,213,0 +170784997685,213,0 +170784997732,214,0 +170784997780,213,0 +170784997828,213,0 +170784997876,213,0 +170784997924,212,0 +170784997972,213,0 +170784998020,212,0 +170784998069,213,0 +170784998117,213,0 +170784998165,213,0 +170784998215,213,0 +170784998264,213,0 +170784998312,213,0 +170784998360,213,0 +170784998408,213,0 +170784998457,213,0 +170784998505,213,0 +170784998553,213,0 +170784998601,213,0 +170784998649,213,0 +170784998697,213,0 +170784998747,213,0 +170784998796,212,0 +170784998846,212,0 +170784998894,213,0 +170784998941,213,0 +170784998989,213,0 +170784999037,213,0 +170784999087,213,0 +170784999135,213,0 +170784999182,213,0 +170784999232,213,0 +170784999280,213,0 +170784999328,213,0 +170784999376,213,0 +170784999425,213,0 +170784999473,214,0 +170784999523,213,0 +170784999570,213,0 +170784999618,213,0 +170784999668,213,0 +170784999716,212,0 +170784999765,213,0 +170784999813,213,0 +170784999861,213,0 +170784999911,213,0 +170784999959,213,0 +170785000006,213,0 +170785000054,213,0 +170785000104,213,0 +170785000152,213,0 +170785000199,213,0 +170785000247,213,0 +170785000295,213,0 +170785000345,213,0 +170785000392,213,0 +170785000442,213,0 +170785000491,214,0 +170785000541,214,0 +170785000589,213,0 +170785000638,213,0 +170785000686,213,0 +170785000736,213,0 +170785000784,213,0 +170785000831,213,0 +170785000879,213,0 +170785000929,213,0 +170785000977,213,0 +170785001024,213,0 +170785001072,213,0 +170785001122,214,0 +170785001170,214,0 +170785001218,214,0 +170785001266,213,0 +170785001316,214,0 +170785001365,213,0 +170785001415,213,0 +170785001463,213,0 +170785001511,213,0 +170785001558,213,0 +170785001606,213,0 +170785001656,213,0 +170785001704,213,0 +170785001753,213,0 +170785001803,213,0 +170785001850,213,0 +170785001898,213,0 +170785001946,213,0 +170785001994,213,0 +170785002042,213,0 +170785002090,213,0 +170785002138,214,0 +170785002185,213,0 +170785002233,214,0 +170785002281,214,0 +170785002330,214,0 +170785002378,214,0 +170785002426,213,0 +170785002474,213,0 +170785002522,213,0 +170785002569,213,0 +170785002617,213,0 +170785002665,213,0 +170785002713,213,0 +170785002761,213,0 +170785002809,213,0 +170785002856,213,0 +170785002904,213,0 +170785002952,214,0 +170785003000,214,0 +170785003048,214,0 +170785003095,214,0 +170785003143,214,0 +170785003191,214,0 +170785003239,214,0 +170785003288,213,0 +170785003338,213,0 +170785003387,213,0 +170785003437,212,0 +170785003485,212,0 +170785003533,212,0 +170785003580,213,0 +170785003628,213,0 +170785003676,213,0 +170785003724,213,0 +170785003772,213,0 +170785003820,213,0 +170785003868,213,0 +170785003918,213,0 +170785003967,213,0 +170785004015,213,0 +170785004065,213,0 +170785004113,214,0 +170785004161,213,0 +170785004208,213,0 +170785004256,213,0 +170785004304,213,0 +170785004352,213,0 +170785004400,213,0 +170785004448,213,0 +170785004496,212,0 +170785004544,213,0 +170785004591,213,0 +170785004639,213,0 +170785004689,213,0 +170785004736,213,0 +170785004784,213,0 +170785004834,213,0 +170785004881,213,0 +170785004929,213,0 +170785004977,213,0 +170785005025,213,0 +170785005073,213,0 +170785005121,213,0 +170785005168,214,0 +170785005216,214,0 +170785005264,213,0 +170785005312,212,0 +170785005360,213,0 +170785005408,213,0 +170785005457,213,0 +170785005505,213,0 +170785005553,213,0 +170785005602,213,0 +170785005650,213,0 +170785005699,213,0 +170785005747,213,0 +170785005795,213,0 +170785005843,214,0 +170785005891,213,0 +170785005939,214,0 +170785005986,213,0 +170785006034,213,0 +170785006082,214,0 +170785006130,214,0 +170785006178,213,0 +170785006226,213,0 +170785006274,213,0 +170785006322,213,0 +170785006369,213,0 +170785006417,213,0 +170785006465,213,0 +170785006513,213,0 +170785006561,213,0 +170785006611,213,0 +170785006658,213,0 +170785006706,213,0 +170785006756,213,0 +170785006804,213,0 +170785006852,213,0 +170785006900,214,0 +170785006949,214,0 +170785006997,214,0 +170785007047,214,0 +170785007094,213,0 +170785007142,213,0 +170785007190,213,0 +170785007240,213,0 +170785007288,213,0 +170785007337,213,0 +170785007385,213,0 +170785007433,213,0 +170785007481,213,0 +170785007529,213,0 +170785007577,213,0 +170785007625,213,0 +170785007673,213,0 +170785007722,213,0 +170785007770,213,0 +170785007818,214,0 +170785007867,213,0 +170785007915,214,0 +170785007963,214,0 +170785008011,213,0 +170785008059,213,0 +170785008107,213,0 +170785008155,213,0 +170785008202,213,0 +170785008250,213,0 +170785008298,213,0 +170785008346,213,0 +170785008396,213,0 +170785008443,213,0 +170785008491,214,0 +170785008539,214,0 +170785008587,214,0 +170785008635,214,0 +170785008683,214,0 +170785008731,213,0 +170785008778,214,0 +170785008826,214,0 +170785008874,214,0 +170785008922,214,0 +170785008971,213,0 +170785009019,213,0 +170785009067,213,0 +170785009115,213,0 +170785009162,213,0 +170785009210,213,0 +170785009258,213,0 +170785009306,213,0 +170785009354,213,0 +170785009402,213,0 +170785009451,213,0 +170785009499,213,0 +170785009547,213,0 +170785009595,214,0 +170785009643,213,0 +170785009691,214,0 +170785009738,213,0 +170785009786,214,0 +170785009834,214,0 +170785009882,213,0 +170785009930,213,0 +170785009978,213,0 +170785010026,213,0 +170785010073,213,0 +170785010121,213,0 +170785010169,213,0 +170785010217,213,0 +170785010265,213,0 +170785010313,213,0 +170785010361,213,0 +170785010409,213,0 +170785010457,213,0 +170785010506,214,0 +170785010554,214,0 +170785010602,214,0 +170785010652,214,0 +170785010701,214,0 +170785010749,214,0 +170785010797,213,0 +170785010845,213,0 +170785010893,213,0 +170785010942,212,0 +170785010990,213,0 +170785011039,213,0 +170785011089,213,0 +170785011137,213,0 +170785011186,213,0 +170785011234,213,0 +170785011284,213,0 +170785011332,213,0 +170785011380,213,0 +170785011428,213,0 +170785011475,213,0 +170785011525,214,0 +170785011573,213,0 +170785011621,213,0 +170785011669,213,0 +170785011718,213,0 +170785011768,213,0 +170785011816,213,0 +170785011865,212,0 +170785011913,213,0 +170785011963,213,0 +170785012011,213,0 +170785012058,213,0 +170785012106,213,0 +170785012154,213,0 +170785012204,213,0 +170785012252,213,0 +170785012300,213,0 +170785012349,213,0 +170785012397,213,0 +170785012445,214,0 +170785012493,213,0 +170785012542,213,0 +170785012592,213,0 +170785012640,213,0 +170785012689,213,0 +170785012739,212,0 +170785012788,213,0 +170785012836,213,0 +170785012884,213,0 +170785012933,213,0 +170785012983,213,0 +170785013031,213,0 +170785013080,213,0 +170785013130,213,0 +170785013178,213,0 +170785013226,213,0 +170785013275,213,0 +170785013323,213,0 +170785013373,213,0 +170785013421,213,0 +170785013469,213,0 +170785013516,213,0 +170785013566,214,0 +170785013615,213,0 +170785013663,213,0 +170785013711,213,0 +170785013759,213,0 +170785013807,213,0 +170785013855,212,0 +170785013904,213,0 +170785013952,213,0 +170785014000,213,0 +170785014048,213,0 +170785014098,213,0 +170785014146,213,0 +170785014193,213,0 +170785014241,213,0 +170785014289,213,0 +170785014337,214,0 +170785014385,214,0 +170785014433,214,0 +170785014483,214,0 +170785014532,213,0 +170785014582,212,0 +170785014631,212,0 +170785014679,213,0 +170785014729,213,0 +170785014777,213,0 +170785014826,213,0 +170785014874,213,0 +170785014922,213,0 +170785014970,213,0 +170785015018,213,0 +170785015066,213,0 +170785015114,213,0 +170785015162,213,0 +170785015210,213,0 +170785015257,214,0 +170785015305,213,0 +170785015355,214,0 +170785015403,214,0 +170785015452,213,0 +170785015502,213,0 +170785015550,213,0 +170785015598,213,0 +170785015647,213,0 +170785015695,213,0 +170785015745,213,0 +170785015793,213,0 +170785015842,213,0 +170785015890,213,0 +170785015938,213,0 +170785015986,213,0 +170785016034,213,0 +170785016083,213,0 +170785016131,213,0 +170785016181,213,0 +170785016229,213,0 +170785016278,213,0 +170785016326,213,0 +170785016376,213,0 +170785016425,212,0 +170785016473,212,0 +170785016521,212,0 +170785016570,212,0 +170785016618,213,0 +170785016666,213,0 +170785016716,213,0 +170785016763,213,0 +170785016811,213,0 +170785016859,213,0 +170785016907,213,0 +170785016955,213,0 +170785017005,213,0 +170785017054,213,0 +170785017104,213,0 +170785017152,213,0 +170785017201,213,0 +170785017251,213,0 +170785017299,213,0 +170785017346,212,0 +170785017394,212,0 +170785017442,212,0 +170785017492,212,0 +170785017540,213,0 +170785017589,213,0 +170785017639,212,0 +170785017688,213,0 +170785017736,213,0 +170785017784,213,0 +170785017832,213,0 +170785017880,213,0 +170785017928,213,0 +170785017977,213,0 +170785018025,213,0 +170785018075,213,0 +170785018123,213,0 +170785018171,213,0 +170785018219,213,0 +170785018267,213,0 +170785018315,212,0 +170785018364,213,0 +170785018413,213,0 +170785018461,213,0 +170785018509,213,0 +170785018557,213,0 +170785018605,213,0 +170785018653,213,0 +170785018702,213,0 +170785018750,213,0 +170785018798,213,0 +170785018846,213,0 +170785018894,213,0 +170785018943,213,0 +170785018991,213,0 +170785019039,213,0 +170785019089,213,0 +170785019137,213,0 +170785019184,213,0 +170785019232,213,0 +170785019280,213,0 +170785019330,212,0 +170785019377,213,0 +170785019425,213,0 +170785019473,213,0 +170785019521,213,0 +170785019569,213,0 +170785019617,213,0 +170785019666,213,0 +170785019714,213,0 +170785019762,213,0 +170785019810,213,0 +170785019858,213,0 +170785019905,213,0 +170785019953,213,0 +170785020001,213,0 +170785020049,213,0 +170785020097,213,0 +170785020147,213,0 +170785020194,213,0 +170785020242,213,0 +170785020290,213,0 +170785020338,213,0 +170785020388,213,0 +170785020436,213,0 +170785020484,213,0 +170785020533,213,0 +170785020581,213,0 +170785020629,213,0 +170785020677,213,0 +170785020725,213,0 +170785020773,213,0 +170785020821,214,0 +170785020868,214,0 +170785020916,214,0 +170785020966,213,0 +170785021014,214,0 +170785021062,213,0 +170785021110,213,0 +170785021159,213,0 +170785021207,213,0 +170785021257,213,0 +170785021305,213,0 +170785021354,213,0 +170785021402,213,0 +170785021450,213,0 +170785021498,213,0 +170785021547,213,0 +170785021595,213,0 +170785021643,213,0 +170785021691,213,0 +170785021740,214,0 +170785021788,214,0 +170785021836,213,0 +170785021884,213,0 +170785021932,213,0 +170785021980,213,0 +170785022029,213,0 +170785022077,213,0 +170785022125,213,0 +170785022173,213,0 +170785022221,213,0 +170785022269,213,0 +170785022317,213,0 +170785022365,213,0 +170785022413,213,0 +170785022462,213,0 +170785022510,213,0 +170785022558,214,0 +170785022608,214,0 +170785022656,214,0 +170785022704,214,0 +170785022753,214,0 +170785022801,213,0 +170785022851,213,0 +170785022898,213,0 +170785022946,213,0 +170785022994,213,0 +170785023044,213,0 +170785023092,213,0 +170785023140,213,0 +170785023188,213,0 +170785023236,213,0 +170785023285,213,0 +170785023335,214,0 +170785023384,214,0 +170785023434,214,0 +170785023483,214,0 +170785023531,214,0 +170785023579,214,0 +170785023628,214,0 +170785023676,213,0 +170785023724,214,0 +170785023772,213,0 +170785023820,213,0 +170785023869,213,0 +170785023917,213,0 +170785023965,213,0 +170785024015,213,0 +170785024064,213,0 +170785024112,213,0 +170785024160,213,0 +170785024210,213,0 +170785024258,214,0 +170785024306,214,0 +170785024354,214,0 +170785024401,214,0 +170785024451,214,0 +170785024499,214,0 +170785024547,214,0 +170785024595,214,0 +170785024644,213,0 +170785024694,213,0 +170785024742,213,0 +170785024790,213,0 +170785024839,213,0 +170785024887,213,0 +170785024935,213,0 +170785024985,213,0 +170785025034,213,0 +170785025082,213,0 +170785025132,213,0 +170785025179,213,0 +170785025227,213,0 +170785025275,214,0 +170785025323,214,0 +170785025371,214,0 +170785025419,214,0 +170785025467,214,0 +170785025517,214,0 +170785025565,214,0 +170785025614,213,0 +170785025662,213,0 +170785025711,213,0 +170785025759,213,0 +170785025809,213,0 +170785025859,213,0 +170785025906,213,0 +170785025954,213,0 +170785026004,213,0 +170785026052,213,0 +170785026100,213,0 +170785026149,213,0 +170785026198,213,0 +170785026248,213,0 +170785026296,213,0 +170785026344,213,0 +170785026391,214,0 +170785026439,214,0 +170785026487,213,0 +170785026535,213,0 +170785026583,213,0 +170785026631,213,0 +170785026679,212,0 +170785026726,213,0 +170785026774,213,0 +170785026822,213,0 +170785026870,213,0 +170785026920,213,0 +170785026969,213,0 +170785027017,213,0 +170785027065,213,0 +170785027115,213,0 +170785027163,213,0 +170785027212,213,0 +170785027262,213,0 +170785027309,213,0 +170785027357,213,0 +170785027405,213,0 +170785027453,213,0 +170785027503,213,0 +170785027551,213,0 +170785027599,213,0 +170785027648,212,0 +170785027698,213,0 +170785027746,212,0 +170785027794,212,0 +170785027843,213,0 +170785027893,213,0 +170785027943,213,0 +170785027992,213,0 +170785028042,213,0 +170785028090,213,0 +170785028137,213,0 +170785028185,213,0 +170785028233,213,0 +170785028283,213,0 +170785028331,214,0 +170785028380,213,0 +170785028428,213,0 +170785028476,213,0 +170785028525,212,0 +170785028575,213,0 +170785028624,213,0 +170785028674,212,0 +170785028722,213,0 +170785028771,213,0 +170785028819,213,0 +170785028867,213,0 +170785028915,213,0 +170785028963,213,0 +170785029012,213,0 +170785029062,213,0 +170785029111,213,0 +170785029159,214,0 +170785029207,213,0 +170785029257,214,0 +170785029305,214,0 +170785029352,213,0 +170785029400,213,0 +170785029448,213,0 +170785029496,213,0 +170785029544,213,0 +170785029594,212,0 +170785029642,212,0 +170785029690,213,0 +170785029738,213,0 +170785029785,213,0 +170785029833,213,0 +170785029881,213,0 +170785029929,213,0 +170785029979,213,0 +170785030028,213,0 +170785030078,213,0 +170785030125,213,0 +170785030175,214,0 +170785030223,213,0 +170785030271,213,0 +170785030319,213,0 +170785030367,213,0 +170785030416,213,0 +170785030466,212,0 +170785030513,213,0 +170785030563,212,0 +170785030611,213,0 +170785030659,212,0 +170785030707,212,0 +170785030756,213,0 +170785030804,213,0 +170785030852,213,0 +170785030901,213,0 +170785030949,213,0 +170785030997,213,0 +170785031045,213,0 +170785031093,213,0 +170785031141,213,0 +170785031188,213,0 +170785031236,213,0 +170785031284,213,0 +170785031334,213,0 +170785031383,213,0 +170785031432,213,0 +170785031480,213,0 +170785031528,214,0 +170785031576,213,0 +170785031626,214,0 +170785031673,214,0 +170785031723,213,0 +170785031772,213,0 +170785031820,212,0 +170785031870,213,0 +170785031918,213,0 +170785031965,213,0 +170785032015,213,0 +170785032063,213,0 +170785032111,213,0 +170785032159,213,0 +170785032207,213,0 +170785032256,213,0 +170785032304,213,0 +170785032352,213,0 +170785032400,213,0 +170785032447,213,0 +170785032495,213,0 +170785032543,213,0 +170785032591,213,0 +170785032639,213,0 +170785032686,213,0 +170785032736,213,0 +170785032783,213,0 +170785032831,213,0 +170785032881,213,0 +170785032928,213,0 +170785032976,213,0 +170785033024,213,0 +170785033072,213,0 +170785033120,213,0 +170785033168,213,0 +170785033216,213,0 +170785033264,213,0 +170785033311,213,0 +170785033359,214,0 +170785033407,214,0 +170785033455,213,0 +170785033503,213,0 +170785033551,214,0 +170785033598,213,0 +170785033646,213,0 +170785033694,213,0 +170785033742,213,0 +170785033790,213,0 +170785033837,213,0 +170785033885,213,0 +170785033933,213,0 +170785033981,214,0 +170785034029,213,0 +170785034077,213,0 +170785034124,213,0 +170785034174,213,0 +170785034224,214,0 +170785034272,213,0 +170785034320,214,0 +170785034367,214,0 +170785034415,214,0 +170785034463,213,0 +170785034511,213,0 +170785034561,213,0 +170785034610,212,0 +170785034658,212,0 +170785034708,213,0 +170785034756,213,0 +170785034804,213,0 +170785034853,213,0 +170785034901,213,0 +170785034950,213,0 +170785035000,213,0 +170785035048,213,0 +170785035096,213,0 +170785035145,213,0 +170785035193,213,0 +170785035243,214,0 +170785035292,213,0 +170785035340,214,0 +170785035388,213,0 +170785035436,213,0 +170785035484,213,0 +170785035532,213,0 +170785035580,213,0 +170785035629,213,0 +170785035677,213,0 +170785035726,213,0 +170785035776,213,0 +170785035825,213,0 +170785035873,213,0 +170785035923,213,0 +170785035972,213,0 +170785036020,213,0 +170785036068,213,0 +170785036116,214,0 +170785036164,214,0 +170785036212,213,0 +170785036259,214,0 +170785036307,213,0 +170785036355,213,0 +170785036403,213,0 +170785036451,213,0 +170785036500,213,0 +170785036548,213,0 +170785036596,213,0 +170785036643,213,0 +170785036693,213,0 +170785036741,213,0 +170785036788,213,0 +170785036836,213,0 +170785036885,213,0 +170785036933,213,0 +170785036983,214,0 +170785037031,214,0 +170785037078,214,0 +170785037128,214,0 +170785037176,213,0 +170785037225,214,0 +170785037273,213,0 +170785037321,213,0 +170785037369,213,0 +170785037416,213,0 +170785037464,213,0 +170785037512,213,0 +170785037562,213,0 +170785037610,213,0 +170785037658,213,0 +170785037705,213,0 +170785037755,213,0 +170785037803,213,0 +170785037851,213,0 +170785037899,213,0 +170785037947,213,0 +170785037995,214,0 +170785038043,214,0 +170785038090,213,0 +170785038138,214,0 +170785038186,213,0 +170785038234,213,0 +170785038282,213,0 +170785038330,212,0 +170785038379,213,0 +170785038429,213,0 +170785038478,213,0 +170785038528,213,0 +170785038577,213,0 +170785038627,213,0 +170785038675,213,0 +170785038724,213,0 +170785038773,213,0 +170785038821,213,0 +170785038871,213,0 +170785038920,213,0 +170785038968,213,0 +170785039016,214,0 +170785039064,214,0 +170785039112,213,0 +170785039160,213,0 +170785039208,213,0 +170785039257,213,0 +170785039305,212,0 +170785039354,213,0 +170785039402,213,0 +170785039450,213,0 +170785039500,213,0 +170785039548,213,0 +170785039597,213,0 +170785039647,213,0 +170785039695,213,0 +170785039743,213,0 +170785039790,213,0 +170785039840,213,0 +170785039889,214,0 +170785039937,213,0 +170785039985,214,0 +170785040033,214,0 +170785040083,213,0 +170785040131,213,0 +170785040178,212,0 +170785040228,213,0 +170785040276,212,0 +170785040326,213,0 +170785040375,213,0 +170785040423,213,0 +170785040471,213,0 +170785040519,213,0 +170785040567,213,0 +170785040616,213,0 +170785040664,213,0 +170785040712,213,0 +170785040760,213,0 +170785040808,214,0 +170785040857,214,0 +170785040907,214,0 +170785040955,214,0 +170785041003,213,0 +170785041052,213,0 +170785041102,213,0 +170785041151,213,0 +170785041199,212,0 +170785041247,213,0 +170785041297,213,0 +170785041344,213,0 +170785041392,213,0 +170785041440,213,0 +170785041490,213,0 +170785041539,213,0 +170785041587,213,0 +170785041635,213,0 +170785041684,213,0 +170785041732,213,0 +170785041780,213,0 +170785041828,213,0 +170785041876,213,0 +170785041926,213,0 +170785041975,213,0 +170785042025,213,0 +170785042073,212,0 +170785042121,213,0 +170785042170,212,0 +170785042220,213,0 +170785042269,213,0 +170785042317,213,0 +170785042365,213,0 +170785042413,213,0 +170785042461,213,0 +170785042509,213,0 +170785042557,213,0 +170785042605,213,0 +170785042654,213,0 +170785042702,213,0 +170785042750,213,0 +170785042798,213,0 +170785042846,214,0 +170785042894,213,0 +170785042941,212,0 +170785042991,213,0 +170785043039,212,0 +170785043087,213,0 +170785043134,213,0 +170785043182,213,0 +170785043230,213,0 +170785043279,213,0 +170785043327,213,0 +170785043375,213,0 +170785043423,213,0 +170785043471,213,0 +170785043519,213,0 +170785043566,213,0 +170785043616,213,0 +170785043664,213,0 +170785043711,213,0 +170785043759,213,0 +170785043807,213,0 +170785043855,213,0 +170785043902,213,0 +170785043950,213,0 +170785043998,213,0 +170785044046,213,0 +170785044096,213,0 +170785044143,213,0 +170785044193,213,0 +170785044241,213,0 +170785044289,213,0 +170785044336,213,0 +170785044384,213,0 +170785044432,214,0 +170785044480,214,0 +170785044528,213,0 +170785044576,213,0 +170785044624,214,0 +170785044672,214,0 +170785044722,213,0 +170785044771,213,0 +170785044819,213,0 +170785044869,213,0 +170785044918,213,0 +170785044968,213,0 +170785045016,213,0 +170785045065,213,0 +170785045115,213,0 +170785045163,213,0 +170785045211,214,0 +170785045260,213,0 +170785045308,213,0 +170785045356,214,0 +170785045406,214,0 +170785045453,214,0 +170785045501,214,0 +170785045549,214,0 +170785045597,214,0 +170785045645,214,0 +170785045693,213,0 +170785045741,213,0 +170785045789,213,0 +170785045837,213,0 +170785045885,213,0 +170785045933,213,0 +170785045981,213,0 +170785046028,214,0 +170785046078,213,0 +170785046126,213,0 +170785046173,214,0 +170785046221,214,0 +170785046269,214,0 +170785046317,214,0 +170785046365,214,0 +170785046414,214,0 +170785046462,214,0 +170785046510,213,0 +170785046558,214,0 +170785046606,213,0 +170785046654,213,0 +170785046702,213,0 +170785046751,213,0 +170785046799,213,0 +170785046847,213,0 +170785046895,213,0 +170785046943,213,0 +170785046991,213,0 +170785047039,213,0 +170785047087,213,0 +170785047135,213,0 +170785047182,213,0 +170785047232,214,0 +170785047280,214,0 +170785047328,214,0 +170785047377,214,0 +170785047427,213,0 +170785047475,213,0 +170785047523,213,0 +170785047572,213,0 +170785047622,213,0 +170785047672,213,0 +170785047719,213,0 +170785047767,213,0 +170785047815,213,0 +170785047863,213,0 +170785047913,213,0 +170785047962,213,0 +170785048012,213,0 +170785048061,213,0 +170785048109,213,0 +170785048159,213,0 +170785048208,213,0 +170785048256,214,0 +170785048306,214,0 +170785048355,214,0 +170785048405,214,0 +170785048453,213,0 +170785048501,213,0 +170785048550,212,0 +170785048598,213,0 +170785048646,212,0 +170785048694,213,0 +170785048742,213,0 +170785048791,213,0 +170785048839,213,0 +170785048887,213,0 +170785048937,213,0 +170785048985,213,0 +170785049034,213,0 +170785049082,213,0 +170785049132,213,0 +170785049180,213,0 +170785049228,213,0 +170785049275,213,0 +170785049323,213,0 +170785049373,213,0 +170785049420,213,0 +170785049468,212,0 +170785049518,213,0 +170785049566,213,0 +170785049614,213,0 +170785049662,213,0 +170785049711,213,0 +170785049759,213,0 +170785049807,213,0 +170785049857,213,0 +170785049906,213,0 +170785049954,213,0 +170785050003,213,0 +170785050051,213,0 +170785050099,213,0 +170785050149,213,0 +170785050197,213,0 +170785050245,213,0 +170785050294,213,0 +170785050342,213,0 +170785050392,213,0 +170785050439,213,0 +170785050487,213,0 +170785050535,213,0 +170785050583,213,0 +170785050631,213,0 +170785050679,213,0 +170785050727,213,0 +170785050777,213,0 +170785050825,213,0 +170785050872,213,0 +170785050920,213,0 +170785050968,214,0 +170785051016,213,0 +170785051064,214,0 +170785051112,214,0 +170785051159,214,0 +170785051207,214,0 +170785051255,213,0 +170785051303,213,0 +170785051351,213,0 +170785051400,213,0 +170785051450,213,0 +170785051498,213,0 +170785051545,213,0 +170785051593,213,0 +170785051641,213,0 +170785051689,213,0 +170785051738,213,0 +170785051788,213,0 +170785051835,213,0 +170785051883,213,0 +170785051933,214,0 +170785051982,214,0 +170785052030,214,0 +170785052078,213,0 +170785052126,213,0 +170785052174,213,0 +170785052222,213,0 +170785052271,213,0 +170785052319,213,0 +170785052367,213,0 +170785052415,213,0 +170785052463,213,0 +170785052511,213,0 +170785052561,213,0 +170785052608,213,0 +170785052658,213,0 +170785052706,214,0 +170785052755,214,0 +170785052803,214,0 +170785052853,214,0 +170785052901,214,0 +170785052949,214,0 +170785052996,214,0 +170785053044,214,0 +170785053092,213,0 +170785053140,213,0 +170785053188,213,0 +170785053237,213,0 +170785053285,213,0 +170785053335,213,0 +170785053383,213,0 +170785053431,213,0 +170785053479,213,0 +170785053527,213,0 +170785053576,213,0 +170785053624,213,0 +170785053672,213,0 +170785053720,213,0 +170785053770,214,0 +170785053817,214,0 +170785053867,214,0 +170785053915,214,0 +170785053963,213,0 +170785054012,213,0 +170785054060,213,0 +170785054108,213,0 +170785054158,213,0 +170785054206,213,0 +170785054255,213,0 +170785054305,213,0 +170785054354,213,0 +170785054404,213,0 +170785054452,213,0 +170785054501,213,0 +170785054551,213,0 +170785054599,213,0 +170785054648,213,0 +170785054696,213,0 +170785054744,213,0 +170785054793,213,0 +170785054841,213,0 +170785054889,213,0 +170785054939,213,0 +170785054987,213,0 +170785055035,212,0 +170785055083,213,0 +170785055132,213,0 +170785055180,213,0 +170785055228,213,0 +170785055278,213,0 +170785055326,213,0 +170785055375,213,0 +170785055423,213,0 +170785055471,213,0 +170785055519,213,0 +170785055567,213,0 +170785055615,213,0 +170785055663,213,0 +170785055712,213,0 +170785055762,214,0 +170785055810,213,0 +170785055857,213,0 +170785055905,213,0 +170785055953,212,0 +170785056001,212,0 +170785056049,212,0 +170785056097,213,0 +170785056145,212,0 +170785056193,212,0 +170785056242,213,0 +170785056292,212,0 +170785056340,213,0 +170785056388,213,0 +170785056435,213,0 +170785056483,213,0 +170785056531,213,0 +170785056581,213,0 +170785056629,213,0 +170785056678,213,0 +170785056726,213,0 +170785056774,213,0 +170785056822,213,0 +170785056870,213,0 +170785056918,213,0 +170785056966,213,0 +170785057014,213,0 +170785057062,213,0 +170785057110,213,0 +170785057157,213,0 +170785057205,213,0 +170785057253,213,0 +170785057301,213,0 +170785057349,213,0 +170785057396,213,0 +170785057444,213,0 +170785057492,213,0 +170785057540,213,0 +170785057588,213,0 +170785057635,214,0 +170785057683,213,0 +170785057731,214,0 +170785057779,212,0 +170785057827,212,0 +170785057875,212,0 +170785057923,213,0 +170785057970,213,0 +170785058018,213,0 +170785058066,213,0 +170785058114,213,0 +170785058162,213,0 +170785058210,213,0 +170785058258,213,0 +170785058306,213,0 +170785058353,213,0 +170785058401,213,0 +170785058449,213,0 +170785058497,213,0 +170785058545,214,0 +170785058595,213,0 +170785058642,213,0 +170785058692,213,0 +170785058740,213,0 +170785058788,213,0 +170785058836,213,0 +170785058883,213,0 +170785058931,213,0 +170785058979,213,0 +170785059027,213,0 +170785059075,213,0 +170785059123,213,0 +170785059171,213,0 +170785059220,214,0 +170785059268,213,0 +170785059316,213,0 +170785059364,213,0 +170785059412,213,0 +170785059461,214,0 +170785059509,213,0 +170785059557,214,0 +170785059605,214,0 +170785059653,213,0 +170785059701,213,0 +170785059750,213,0 +170785059800,213,0 +170785059848,213,0 +170785059897,213,0 +170785059947,213,0 +170785059995,213,0 +170785060042,213,0 +170785060090,213,0 +170785060138,213,0 +170785060186,213,0 +170785060234,213,0 +170785060282,214,0 +170785060330,213,0 +170785060378,214,0 +170785060426,214,0 +170785060473,214,0 +170785060521,214,0 +170785060569,213,0 +170785060619,212,0 +170785060667,213,0 +170785060716,212,0 +170785060764,213,0 +170785060812,213,0 +170785060860,213,0 +170785060907,213,0 +170785060955,213,0 +170785061003,213,0 +170785061053,213,0 +170785061101,213,0 +170785061148,213,0 +170785061196,213,0 +170785061244,213,0 +170785061292,213,0 +170785061340,213,0 +170785061388,213,0 +170785061435,214,0 +170785061483,213,0 +170785061531,212,0 +170785061579,212,0 +170785061627,213,0 +170785061675,213,0 +170785061723,212,0 +170785061770,213,0 +170785061818,212,0 +170785061866,213,0 +170785061914,212,0 +170785061962,212,0 +170785062010,212,0 +170785062058,213,0 +170785062105,213,0 +170785062153,213,0 +170785062201,213,0 +170785062249,213,0 +170785062297,213,0 +170785062345,213,0 +170785062394,213,0 +170785062442,212,0 +170785062490,212,0 +170785062538,213,0 +170785062586,213,0 +170785062634,213,0 +170785062682,213,0 +170785062729,213,0 +170785062777,213,0 +170785062825,213,0 +170785062873,213,0 +170785062922,213,0 +170785062972,213,0 +170785063021,213,0 +170785063069,213,0 +170785063117,213,0 +170785063167,213,0 +170785063215,213,0 +170785063262,213,0 +170785063310,213,0 +170785063358,213,0 +170785063408,213,0 +170785063456,213,0 +170785063504,213,0 +170785063552,213,0 +170785063601,213,0 +170785063649,213,0 +170785063699,213,0 +170785063748,213,0 +170785063796,213,0 +170785063846,213,0 +170785063894,213,0 +170785063942,213,0 +170785063989,213,0 +170785064039,213,0 +170785064087,213,0 +170785064136,214,0 +170785064184,214,0 +170785064232,213,0 +170785064280,213,0 +170785064330,213,0 +170785064378,213,0 +170785064426,213,0 +170785064475,213,0 +170785064523,213,0 +170785064571,213,0 +170785064620,213,0 +170785064670,213,0 +170785064719,213,0 +170785064769,213,0 +170785064817,213,0 +170785064866,214,0 +170785064914,213,0 +170785064962,214,0 +170785065010,214,0 +170785065060,213,0 +170785065109,214,0 +170785065157,213,0 +170785065207,213,0 +170785065255,213,0 +170785065302,213,0 +170785065350,213,0 +170785065398,213,0 +170785065446,213,0 +170785065495,213,0 +170785065545,213,0 +170785065593,213,0 +170785065640,213,0 +170785065688,213,0 +170785065736,213,0 +170785065784,213,0 +170785065832,213,0 +170785065880,214,0 +170785065927,213,0 +170785065977,213,0 +170785066025,214,0 +170785066072,214,0 +170785066122,213,0 +170785066170,213,0 +170785066219,213,0 +170785066267,213,0 +170785066315,213,0 +170785066363,213,0 +170785066410,213,0 +170785066458,213,0 +170785066506,213,0 +170785066554,214,0 +170785066602,213,0 +170785066649,213,0 +170785066697,213,0 +170785066745,214,0 +170785066793,214,0 +170785066842,214,0 +170785066890,214,0 +170785066940,213,0 +170785066987,213,0 +170785067035,214,0 +170785067083,213,0 +170785067131,213,0 +170785067180,213,0 +170785067228,213,0 +170785067276,213,0 +170785067324,213,0 +170785067372,214,0 +170785067420,213,0 +170785067468,214,0 +170785067515,214,0 +170785067563,214,0 +170785067611,214,0 +170785067659,214,0 +170785067707,214,0 +170785067756,214,0 +170785067804,214,0 +170785067853,214,0 +170785067901,213,0 +170785067951,213,0 +170785067999,213,0 +170785068048,213,0 +170785068098,213,0 +170785068146,213,0 +170785068194,213,0 +170785068242,213,0 +170785068291,213,0 +170785068339,213,0 +170785068389,213,0 +170785068436,214,0 +170785068484,214,0 +170785068532,214,0 +170785068580,214,0 +170785068628,214,0 +170785068678,214,0 +170785068726,214,0 +170785068774,214,0 +170785068823,214,0 +170785068871,214,0 +170785068919,213,0 +170785068967,213,0 +170785069015,213,0 +170785069063,213,0 +170785069111,213,0 +170785069158,213,0 +170785069206,213,0 +170785069254,213,0 +170785069302,213,0 +170785069350,213,0 +170785069400,214,0 +170785069449,214,0 +170785069497,213,0 +170785069546,214,0 +170785069596,214,0 +170785069644,214,0 +170785069692,214,0 +170785069740,213,0 +170785069789,213,0 +170785069837,213,0 +170785069885,212,0 +170785069935,212,0 +170785069983,212,0 +170785070032,213,0 +170785070080,213,0 +170785070128,213,0 +170785070176,213,0 +170785070224,213,0 +170785070273,213,0 +170785070321,213,0 +170785070371,213,0 +170785070420,213,0 +170785070469,213,0 +170785070517,213,0 +170785070565,213,0 +170785070615,213,0 +170785070663,213,0 +170785070711,214,0 +170785070759,213,0 +170785070806,212,0 +170785070854,212,0 +170785070902,213,0 +170785070950,213,0 +170785071000,213,0 +170785071049,213,0 +170785071097,213,0 +170785071145,213,0 +170785071193,213,0 +170785071241,213,0 +170785071289,213,0 +170785071337,213,0 +170785071385,213,0 +170785071433,213,0 +170785071481,213,0 +170785071528,213,0 +170785071578,213,0 +170785071626,213,0 +170785071674,213,0 +170785071722,212,0 +170785071770,213,0 +170785071819,213,0 +170785071869,213,0 +170785071917,213,0 +170785071964,213,0 +170785072012,213,0 +170785072060,213,0 +170785072108,213,0 +170785072156,213,0 +170785072204,213,0 +170785072252,213,0 +170785072300,213,0 +170785072349,213,0 +170785072397,213,0 +170785072446,213,0 +170785072494,213,0 +170785072544,213,0 +170785072592,213,0 +170785072641,213,0 +170785072691,213,0 +170785072739,213,0 +170785072787,212,0 +170785072836,213,0 +170785072884,212,0 +170785072932,213,0 +170785072981,213,0 +170785073029,213,0 +170785073079,213,0 +170785073127,213,0 +170785073176,213,0 +170785073224,213,0 +170785073274,213,0 +170785073321,213,0 +170785073369,213,0 +170785073419,213,0 +170785073467,213,0 +170785073515,213,0 +170785073563,213,0 +170785073612,212,0 +170785073660,213,0 +170785073708,212,0 +170785073758,213,0 +170785073807,213,0 +170785073857,212,0 +170785073906,213,0 +170785073954,213,0 +170785074002,213,0 +170785074050,213,0 +170785074100,213,0 +170785074148,213,0 +170785074195,213,0 +170785074244,213,0 +170785074293,213,0 +170785074341,213,0 +170785074390,213,0 +170785074438,213,0 +170785074486,213,0 +170785074534,212,0 +170785074582,213,0 +170785074630,213,0 +170785074678,213,0 +170785074726,213,0 +170785074775,213,0 +170785074823,213,0 +170785074871,213,0 +170785074921,213,0 +170785074970,213,0 +170785075018,213,0 +170785075066,213,0 +170785075116,213,0 +170785075164,214,0 +170785075213,213,0 +170785075261,214,0 +170785075309,214,0 +170785075357,214,0 +170785075405,213,0 +170785075453,213,0 +170785075501,213,0 +170785075549,213,0 +170785075597,213,0 +170785075645,213,0 +170785075693,213,0 +170785075740,213,0 +170785075788,213,0 +170785075838,213,0 +170785075886,213,0 +170785075935,213,0 +170785075983,213,0 +170785076031,213,0 +170785076079,213,0 +170785076127,213,0 +170785076175,213,0 +170785076223,213,0 +170785076271,214,0 +170785076319,213,0 +170785076367,213,0 +170785076415,212,0 +170785076464,213,0 +170785076512,213,0 +170785076560,213,0 +170785076608,213,0 +170785076656,213,0 +170785076704,213,0 +170785076752,213,0 +170785076801,213,0 +170785076849,213,0 +170785076897,213,0 +170785076945,213,0 +170785076993,213,0 +170785077041,213,0 +170785077089,214,0 +170785077137,214,0 +170785077186,214,0 +170785077234,213,0 +170785077284,213,0 +170785077332,212,0 +170785077380,213,0 +170785077428,213,0 +170785077476,213,0 +170785077524,213,0 +170785077571,213,0 +170785077619,213,0 +170785077667,213,0 +170785077715,213,0 +170785077765,213,0 +170785077813,213,0 +170785077861,213,0 +170785077909,213,0 +170785077957,214,0 +170785078005,214,0 +170785078053,213,0 +170785078101,214,0 +170785078148,214,0 +170785078198,214,0 +170785078246,213,0 +170785078294,213,0 +170785078342,213,0 +170785078390,213,0 +170785078438,212,0 +170785078487,213,0 +170785078535,213,0 +170785078583,213,0 +170785078632,213,0 +170785078680,213,0 +170785078728,213,0 +170785078778,213,0 +170785078827,213,0 +170785078875,213,0 +170785078923,214,0 +170785078971,214,0 +170785079019,213,0 +170785079067,213,0 +170785079115,213,0 +170785079163,213,0 +170785079211,213,0 +170785079259,213,0 +170785079307,213,0 +170785079356,213,0 +170785079404,213,0 +170785079452,213,0 +170785079501,213,0 +170785079551,213,0 +170785079600,213,0 +170785079648,213,0 +170785079696,213,0 +170785079746,214,0 +170785079795,214,0 +170785079843,213,0 +170785079891,214,0 +170785079939,214,0 +170785079987,214,0 diff --git a/laser_value/0214-05.csv b/laser_value/0214-05.csv new file mode 100644 index 0000000..f7f8c54 --- /dev/null +++ b/laser_value/0214-05.csv @@ -0,0 +1,7438 @@ +timestamp,laser_value,event +170785080036,214,0 +170785080084,213,0 +170785080132,213,0 +170785080180,213,0 +170785080228,213,0 +170785080277,213,0 +170785080325,213,0 +170785080375,213,0 +170785080424,213,0 +170785080472,213,0 +170785080522,213,0 +170785080571,213,0 +170785080619,214,0 +170785080669,213,0 +170785080717,213,0 +170785080766,213,0 +170785080816,214,0 +170785080864,214,0 +170785080912,214,0 +170785080961,214,0 +170785081011,213,0 +170785081058,213,0 +170785081106,213,0 +170785081156,213,0 +170785081204,213,0 +170785081252,213,0 +170785081301,213,0 +170785081351,213,0 +170785081400,213,0 +170785081448,213,0 +170785081498,213,0 +170785081545,213,0 +170785081595,213,0 +170785081645,214,0 +170785081694,213,0 +170785081742,213,0 +170785081791,214,0 +170785081839,214,0 +170785081889,214,0 +170785081937,213,0 +170785081985,213,0 +170785082033,213,0 +170785082082,213,0 +170785082130,213,0 +170785082178,213,0 +170785082226,213,0 +170785082274,213,0 +170785082322,213,0 +170785082371,213,0 +170785082419,213,0 +170785082467,213,0 +170785082517,214,0 +170785082565,213,0 +170785082614,214,0 +170785082662,214,0 +170785082712,214,0 +170785082759,213,0 +170785082807,214,0 +170785082855,213,0 +170785082903,213,0 +170785082952,213,0 +170785083000,213,0 +170785083048,213,0 +170785083096,213,0 +170785083144,213,0 +170785083192,213,0 +170785083240,213,0 +170785083288,213,0 +170785083336,213,0 +170785083383,213,0 +170785083431,213,0 +170785083479,213,0 +170785083527,214,0 +170785083575,214,0 +170785083623,214,0 +170785083671,214,0 +170785083719,213,0 +170785083767,213,0 +170785083815,213,0 +170785083862,213,0 +170785083910,213,0 +170785083958,213,0 +170785084006,213,0 +170785084054,213,0 +170785084102,213,0 +170785084151,213,0 +170785084199,213,0 +170785084247,213,0 +170785084297,213,0 +170785084346,213,0 +170785084394,213,0 +170785084442,214,0 +170785084491,213,0 +170785084541,214,0 +170785084589,214,0 +170785084638,214,0 +170785084686,213,0 +170785084734,213,0 +170785084782,212,0 +170785084830,212,0 +170785084878,213,0 +170785084926,213,0 +170785084974,213,0 +170785085022,213,0 +170785085071,213,0 +170785085119,213,0 +170785085167,213,0 +170785085215,213,0 +170785085263,213,0 +170785085311,213,0 +170785085360,213,0 +170785085408,213,0 +170785085456,213,0 +170785085504,213,0 +170785085552,213,0 +170785085600,214,0 +170785085648,213,0 +170785085698,212,0 +170785085746,213,0 +170785085793,213,0 +170785085841,213,0 +170785085889,213,0 +170785085937,213,0 +170785085985,213,0 +170785086033,213,0 +170785086081,213,0 +170785086130,213,0 +170785086178,213,0 +170785086226,213,0 +170785086276,213,0 +170785086325,213,0 +170785086373,213,0 +170785086423,213,0 +170785086470,213,0 +170785086518,213,0 +170785086566,214,0 +170785086614,213,0 +170785086662,213,0 +170785086710,212,0 +170785086758,213,0 +170785086808,213,0 +170785086856,212,0 +170785086903,212,0 +170785086951,212,0 +170785086999,212,0 +170785087047,213,0 +170785087095,213,0 +170785087143,213,0 +170785087193,213,0 +170785087241,213,0 +170785087290,213,0 +170785087340,213,0 +170785087388,213,0 +170785087437,213,0 +170785087485,213,0 +170785087533,213,0 +170785087581,212,0 +170785087631,212,0 +170785087679,212,0 +170785087728,213,0 +170785087776,213,0 +170785087824,213,0 +170785087872,213,0 +170785087920,213,0 +170785087968,213,0 +170785088016,213,0 +170785088064,213,0 +170785088111,213,0 +170785088161,213,0 +170785088209,213,0 +170785088257,213,0 +170785088304,213,0 +170785088352,213,0 +170785088400,214,0 +170785088448,213,0 +170785088496,213,0 +170785088545,213,0 +170785088595,213,0 +170785088644,213,0 +170785088692,213,0 +170785088740,213,0 +170785088788,213,0 +170785088837,213,0 +170785088885,213,0 +170785088933,213,0 +170785088983,213,0 +170785089031,213,0 +170785089079,213,0 +170785089127,213,0 +170785089176,213,0 +170785089226,214,0 +170785089275,214,0 +170785089323,213,0 +170785089373,213,0 +170785089422,213,0 +170785089470,213,0 +170785089518,213,0 +170785089566,213,0 +170785089614,213,0 +170785089662,213,0 +170785089710,213,0 +170785089758,213,0 +170785089807,213,0 +170785089855,213,0 +170785089903,213,0 +170785089951,214,0 +170785089999,214,0 +170785090047,214,0 +170785090096,214,0 +170785090146,214,0 +170785090195,214,0 +170785090244,214,0 +170785090294,213,0 +170785090343,213,0 +170785090393,213,0 +170785090443,213,0 +170785090492,213,0 +170785090540,213,0 +170785090589,213,0 +170785090637,213,0 +170785090687,214,0 +170785090735,214,0 +170785090783,214,0 +170785090832,214,0 +170785090882,214,0 +170785090931,214,0 +170785090981,214,0 +170785091029,214,0 +170785091077,214,0 +170785091125,214,0 +170785091174,214,0 +170785091222,213,0 +170785091271,213,0 +170785091319,213,0 +170785091369,213,0 +170785091417,213,0 +170785091466,213,0 +170785091516,213,0 +170785091564,213,0 +170785091612,213,0 +170785091661,214,0 +170785091709,213,0 +170785091758,214,0 +170785091806,214,0 +170785091854,214,0 +170785091904,214,0 +170785091952,214,0 +170785092001,214,0 +170785092049,214,0 +170785092097,214,0 +170785092145,213,0 +170785092193,213,0 +170785092242,213,0 +170785092292,213,0 +170785092341,213,0 +170785092389,213,0 +170785092439,213,0 +170785092487,213,0 +170785092536,213,0 +170785092584,213,0 +170785092632,213,0 +170785092681,213,0 +170785092729,213,0 +170785092777,213,0 +170785092827,213,0 +170785092876,213,0 +170785092924,213,0 +170785092972,213,0 +170785093020,214,0 +170785093068,213,0 +170785093116,213,0 +170785093164,213,0 +170785093212,213,0 +170785093259,213,0 +170785093309,213,0 +170785093357,213,0 +170785093405,213,0 +170785093453,213,0 +170785093502,213,0 +170785093550,213,0 +170785093600,213,0 +170785093648,213,0 +170785093695,213,0 +170785093745,213,0 +170785093793,213,0 +170785093841,214,0 +170785093890,213,0 +170785093938,214,0 +170785093988,214,0 +170785094036,213,0 +170785094084,213,0 +170785094133,213,0 +170785094183,213,0 +170785094231,213,0 +170785094280,213,0 +170785094330,213,0 +170785094378,213,0 +170785094426,213,0 +170785094475,213,0 +170785094524,213,0 +170785094572,213,0 +170785094620,213,0 +170785094668,213,0 +170785094716,213,0 +170785094766,213,0 +170785094813,214,0 +170785094861,213,0 +170785094909,213,0 +170785094957,213,0 +170785095006,212,0 +170785095054,213,0 +170785095102,213,0 +170785095152,213,0 +170785095201,213,0 +170785095251,213,0 +170785095299,213,0 +170785095348,213,0 +170785095396,213,0 +170785095445,213,0 +170785095493,213,0 +170785095541,213,0 +170785095589,213,0 +170785095637,213,0 +170785095684,213,0 +170785095732,214,0 +170785095780,214,0 +170785095828,214,0 +170785095876,213,0 +170785095924,213,0 +170785095972,213,0 +170785096021,213,0 +170785096071,213,0 +170785096119,213,0 +170785096167,213,0 +170785096215,213,0 +170785096264,213,0 +170785096312,213,0 +170785096360,213,0 +170785096409,213,0 +170785096457,213,0 +170785096505,213,0 +170785096553,214,0 +170785096603,214,0 +170785096651,214,0 +170785096698,214,0 +170785096746,214,0 +170785096794,213,0 +170785096842,212,0 +170785096890,213,0 +170785096938,213,0 +170785096987,213,0 +170785097035,213,0 +170785097083,213,0 +170785097131,213,0 +170785097179,213,0 +170785097227,213,0 +170785097276,213,0 +170785097324,213,0 +170785097372,213,0 +170785097420,213,0 +170785097468,214,0 +170785097516,213,0 +170785097564,214,0 +170785097612,214,0 +170785097660,214,0 +170785097708,214,0 +170785097756,213,0 +170785097804,213,0 +170785097852,213,0 +170785097900,213,0 +170785097947,213,0 +170785097995,213,0 +170785098043,213,0 +170785098091,213,0 +170785098139,213,0 +170785098188,213,0 +170785098236,213,0 +170785098284,214,0 +170785098334,213,0 +170785098383,213,0 +170785098431,214,0 +170785098479,214,0 +170785098527,214,0 +170785098575,214,0 +170785098623,214,0 +170785098671,213,0 +170785098718,212,0 +170785098768,212,0 +170785098816,213,0 +170785098864,213,0 +170785098912,213,0 +170785098959,213,0 +170785099007,213,0 +170785099055,213,0 +170785099103,213,0 +170785099151,213,0 +170785099199,213,0 +170785099247,214,0 +170785099296,214,0 +170785099344,213,0 +170785099392,213,0 +170785099440,214,0 +170785099488,213,0 +170785099537,213,0 +170785099587,213,0 +170785099636,213,0 +170785099686,212,0 +170785099734,213,0 +170785099782,212,0 +170785099830,213,0 +170785099878,213,0 +170785099927,213,0 +170785099977,213,0 +170785100026,213,0 +170785100076,213,0 +170785100125,213,0 +170785100173,214,0 +170785100222,214,0 +170785100272,214,0 +170785100321,214,0 +170785100369,213,0 +170785100419,214,0 +170785100467,214,0 +170785100515,213,0 +170785100563,213,0 +170785100612,212,0 +170785100662,213,0 +170785100710,213,0 +170785100757,213,0 +170785100805,213,0 +170785100853,213,0 +170785100903,213,0 +170785100952,213,0 +170785101002,213,0 +170785101050,213,0 +170785101099,213,0 +170785101147,213,0 +170785101197,213,0 +170785101244,213,0 +170785101294,213,0 +170785101342,213,0 +170785101391,214,0 +170785101439,213,0 +170785101489,213,0 +170785101537,212,0 +170785101585,213,0 +170785101633,212,0 +170785101680,213,0 +170785101728,213,0 +170785101778,213,0 +170785101827,213,0 +170785101875,213,0 +170785101923,213,0 +170785101971,213,0 +170785102021,213,0 +170785102068,213,0 +170785102116,213,0 +170785102164,213,0 +170785102212,213,0 +170785102260,213,0 +170785102308,213,0 +170785102357,214,0 +170785102405,213,0 +170785102455,212,0 +170785102503,212,0 +170785102552,213,0 +170785102600,213,0 +170785102648,213,0 +170785102696,213,0 +170785102744,213,0 +170785102792,213,0 +170785102839,213,0 +170785102887,213,0 +170785102937,213,0 +170785102985,213,0 +170785103034,213,0 +170785103083,213,0 +170785103131,213,0 +170785103181,213,0 +170785103229,213,0 +170785103277,213,0 +170785103326,213,0 +170785103374,212,0 +170785103422,213,0 +170785103470,213,0 +170785103518,212,0 +170785103566,213,0 +170785103615,213,0 +170785103663,213,0 +170785103711,213,0 +170785103759,213,0 +170785103807,213,0 +170785103855,213,0 +170785103903,214,0 +170785103950,213,0 +170785103998,213,0 +170785104046,213,0 +170785104094,214,0 +170785104142,214,0 +170785104192,213,0 +170785104241,213,0 +170785104289,213,0 +170785104338,213,0 +170785104386,213,0 +170785104436,213,0 +170785104483,212,0 +170785104531,213,0 +170785104579,213,0 +170785104629,213,0 +170785104676,213,0 +170785104724,213,0 +170785104774,213,0 +170785104822,213,0 +170785104871,213,0 +170785104919,213,0 +170785104968,213,0 +170785105016,213,0 +170785105064,213,0 +170785105112,213,0 +170785105162,213,0 +170785105211,213,0 +170785105261,212,0 +170785105308,213,0 +170785105356,212,0 +170785105404,212,0 +170785105454,213,0 +170785105503,213,0 +170785105553,213,0 +170785105601,213,0 +170785105649,213,0 +170785105697,213,0 +170785105745,213,0 +170785105793,213,0 +170785105842,214,0 +170785105890,213,0 +170785105938,214,0 +170785105986,214,0 +170785106034,214,0 +170785106082,213,0 +170785106131,212,0 +170785106179,213,0 +170785106227,213,0 +170785106276,213,0 +170785106324,213,0 +170785106374,213,0 +170785106421,212,0 +170785106471,213,0 +170785106519,213,0 +170785106567,213,0 +170785106616,213,0 +170785106666,213,0 +170785106714,213,0 +170785106762,213,0 +170785106811,213,0 +170785106859,213,0 +170785106907,213,0 +170785106956,213,0 +170785107006,213,0 +170785107054,213,0 +170785107102,213,0 +170785107150,213,0 +170785107198,213,0 +170785107245,212,0 +170785107295,213,0 +170785107345,212,0 +170785107392,213,0 +170785107440,213,0 +170785107488,213,0 +170785107536,213,0 +170785107584,213,0 +170785107632,213,0 +170785107680,213,0 +170785107730,213,0 +170785107778,213,0 +170785107826,213,0 +170785107875,213,0 +170785107925,213,0 +170785107972,213,0 +170785108020,213,0 +170785108070,212,0 +170785108118,212,0 +170785108167,212,0 +170785108215,213,0 +170785108263,213,0 +170785108311,213,0 +170785108359,213,0 +170785108407,213,0 +170785108455,213,0 +170785108503,213,0 +170785108551,213,0 +170785108599,213,0 +170785108647,213,0 +170785108694,213,0 +170785108742,213,0 +170785108790,213,0 +170785108840,214,0 +170785108889,213,0 +170785108939,213,0 +170785108988,212,0 +170785109036,213,0 +170785109086,213,0 +170785109134,213,0 +170785109182,213,0 +170785109231,213,0 +170785109279,213,0 +170785109327,213,0 +170785109375,213,0 +170785109423,213,0 +170785109471,213,0 +170785109519,213,0 +170785109567,213,0 +170785109615,213,0 +170785109663,213,0 +170785109711,213,0 +170785109758,214,0 +170785109806,213,0 +170785109856,213,0 +170785109904,213,0 +170785109953,212,0 +170785110003,213,0 +170785110051,213,0 +170785110099,213,0 +170785110146,213,0 +170785110194,213,0 +170785110244,213,0 +170785110293,213,0 +170785110343,213,0 +170785110392,213,0 +170785110440,214,0 +170785110490,214,0 +170785110538,214,0 +170785110586,213,0 +170785110634,213,0 +170785110683,214,0 +170785110731,213,0 +170785110779,213,0 +170785110827,213,0 +170785110877,213,0 +170785110926,213,0 +170785110974,213,0 +170785111022,213,0 +170785111070,213,0 +170785111118,213,0 +170785111167,213,0 +170785111217,214,0 +170785111266,214,0 +170785111316,214,0 +170785111364,214,0 +170785111412,214,0 +170785111461,214,0 +170785111511,214,0 +170785111560,214,0 +170785111608,213,0 +170785111656,213,0 +170785111704,213,0 +170785111752,213,0 +170785111800,213,0 +170785111849,213,0 +170785111899,213,0 +170785111948,214,0 +170785111996,214,0 +170785112044,214,0 +170785112092,214,0 +170785112140,214,0 +170785112188,214,0 +170785112237,214,0 +170785112285,214,0 +170785112333,214,0 +170785112383,214,0 +170785112431,214,0 +170785112480,214,0 +170785112528,214,0 +170785112576,214,0 +170785112624,213,0 +170785112674,213,0 +170785112723,213,0 +170785112773,213,0 +170785112821,213,0 +170785112869,214,0 +170785112918,213,0 +170785112968,214,0 +170785113016,213,0 +170785113064,214,0 +170785113112,214,0 +170785113160,214,0 +170785113208,214,0 +170785113257,214,0 +170785113305,214,0 +170785113353,213,0 +170785113401,214,0 +170785113449,214,0 +170785113498,214,0 +170785113546,213,0 +170785113596,213,0 +170785113644,213,0 +170785113691,213,0 +170785113741,213,0 +170785113791,213,0 +170785113839,213,0 +170785113886,213,0 +170785113934,213,0 +170785113982,213,0 +170785114032,213,0 +170785114080,213,0 +170785114128,213,0 +170785114177,214,0 +170785114225,214,0 +170785114273,214,0 +170785114321,214,0 +170785114370,214,0 +170785114418,214,0 +170785114468,213,0 +170785114516,212,0 +170785114564,213,0 +170785114613,213,0 +170785114661,213,0 +170785114711,213,0 +170785114759,213,0 +170785114808,213,0 +170785114856,213,0 +170785114904,213,0 +170785114952,213,0 +170785115000,213,0 +170785115049,213,0 +170785115099,213,0 +170785115146,213,0 +170785115194,214,0 +170785115242,213,0 +170785115290,213,0 +170785115338,214,0 +170785115387,213,0 +170785115435,212,0 +170785115485,213,0 +170785115533,213,0 +170785115582,213,0 +170785115630,213,0 +170785115680,213,0 +170785115728,213,0 +170785115777,213,0 +170785115825,213,0 +170785115873,213,0 +170785115922,213,0 +170785115970,213,0 +170785116018,213,0 +170785116066,214,0 +170785116115,213,0 +170785116163,213,0 +170785116211,214,0 +170785116259,214,0 +170785116307,213,0 +170785116354,213,0 +170785116402,213,0 +170785116450,213,0 +170785116500,213,0 +170785116547,213,0 +170785116597,213,0 +170785116646,213,0 +170785116696,213,0 +170785116744,213,0 +170785116792,213,0 +170785116839,213,0 +170785116889,213,0 +170785116938,213,0 +170785116986,213,0 +170785117034,214,0 +170785117082,214,0 +170785117130,213,0 +170785117178,213,0 +170785117227,213,0 +170785117277,213,0 +170785117326,213,0 +170785117374,213,0 +170785117422,213,0 +170785117470,213,0 +170785117518,213,0 +170785117568,213,0 +170785117616,213,0 +170785117664,213,0 +170785117713,213,0 +170785117761,213,0 +170785117809,213,0 +170785117857,214,0 +170785117906,213,0 +170785117956,213,0 +170785118005,214,0 +170785118054,213,0 +170785118102,213,0 +170785118151,213,0 +170785118201,213,0 +170785118249,213,0 +170785118297,213,0 +170785118346,212,0 +170785118394,213,0 +170785118442,213,0 +170785118490,213,0 +170785118538,213,0 +170785118586,213,0 +170785118634,213,0 +170785118681,213,0 +170785118729,213,0 +170785118777,214,0 +170785118825,213,0 +170785118873,213,0 +170785118922,213,0 +170785118970,214,0 +170785119020,213,0 +170785119068,214,0 +170785119117,213,0 +170785119167,212,0 +170785119215,213,0 +170785119263,213,0 +170785119310,213,0 +170785119358,213,0 +170785119406,213,0 +170785119454,213,0 +170785119504,213,0 +170785119552,213,0 +170785119601,213,0 +170785119649,213,0 +170785119697,213,0 +170785119746,213,0 +170785119794,213,0 +170785119842,213,0 +170785119890,213,0 +170785119938,214,0 +170785119986,214,0 +170785120034,213,0 +170785120082,212,0 +170785120131,213,0 +170785120179,213,0 +170785120227,213,0 +170785120275,213,0 +170785120323,213,0 +170785120372,213,0 +170785120422,213,0 +170785120470,213,0 +170785120518,213,0 +170785120567,213,0 +170785120615,213,0 +170785120663,213,0 +170785120713,213,0 +170785120761,213,0 +170785120808,214,0 +170785120856,214,0 +170785120904,214,0 +170785120952,213,0 +170785121002,213,0 +170785121051,212,0 +170785121099,213,0 +170785121147,213,0 +170785121195,213,0 +170785121244,212,0 +170785121292,213,0 +170785121340,213,0 +170785121388,213,0 +170785121436,213,0 +170785121486,213,0 +170785121533,213,0 +170785121581,213,0 +170785121629,213,0 +170785121677,213,0 +170785121725,213,0 +170785121773,213,0 +170785121823,214,0 +170785121872,213,0 +170785121920,213,0 +170785121968,213,0 +170785122017,213,0 +170785122065,213,0 +170785122113,213,0 +170785122161,213,0 +170785122211,213,0 +170785122260,213,0 +170785122308,213,0 +170785122356,213,0 +170785122404,213,0 +170785122452,213,0 +170785122501,213,0 +170785122549,213,0 +170785122597,213,0 +170785122645,214,0 +170785122693,213,0 +170785122740,213,0 +170785122790,213,0 +170785122838,213,0 +170785122886,213,0 +170785122934,212,0 +170785122982,212,0 +170785123030,212,0 +170785123078,213,0 +170785123126,213,0 +170785123174,213,0 +170785123223,213,0 +170785123271,213,0 +170785123321,213,0 +170785123370,213,0 +170785123420,213,0 +170785123467,213,0 +170785123515,213,0 +170785123565,213,0 +170785123614,214,0 +170785123664,213,0 +170785123713,214,0 +170785123761,213,0 +170785123809,212,0 +170785123857,213,0 +170785123905,213,0 +170785123953,212,0 +170785124002,213,0 +170785124050,213,0 +170785124098,213,0 +170785124146,213,0 +170785124194,213,0 +170785124242,213,0 +170785124292,213,0 +170785124341,213,0 +170785124389,213,0 +170785124439,213,0 +170785124487,214,0 +170785124536,213,0 +170785124586,213,0 +170785124634,213,0 +170785124683,213,0 +170785124731,213,0 +170785124781,212,0 +170785124830,213,0 +170785124878,213,0 +170785124926,213,0 +170785124974,213,0 +170785125024,213,0 +170785125071,213,0 +170785125121,213,0 +170785125169,213,0 +170785125217,213,0 +170785125265,213,0 +170785125314,213,0 +170785125362,213,0 +170785125410,214,0 +170785125460,214,0 +170785125507,213,0 +170785125557,213,0 +170785125605,213,0 +170785125653,213,0 +170785125701,213,0 +170785125749,213,0 +170785125798,213,0 +170785125846,213,0 +170785125894,213,0 +170785125944,213,0 +170785125992,213,0 +170785126041,213,0 +170785126090,213,0 +170785126140,213,0 +170785126188,213,0 +170785126236,213,0 +170785126285,213,0 +170785126333,214,0 +170785126383,214,0 +170785126432,214,0 +170785126480,214,0 +170785126528,213,0 +170785126576,213,0 +170785126624,213,0 +170785126672,213,0 +170785126721,213,0 +170785126771,213,0 +170785126820,213,0 +170785126868,213,0 +170785126916,213,0 +170785126964,213,0 +170785127012,213,0 +170785127061,213,0 +170785127109,213,0 +170785127157,213,0 +170785127207,213,0 +170785127256,214,0 +170785127304,214,0 +170785127352,213,0 +170785127400,214,0 +170785127448,214,0 +170785127496,213,0 +170785127544,213,0 +170785127592,212,0 +170785127640,213,0 +170785127689,213,0 +170785127739,213,0 +170785127787,213,0 +170785127836,213,0 +170785127884,213,0 +170785127932,213,0 +170785127980,213,0 +170785128028,213,0 +170785128076,213,0 +170785128125,213,0 +170785128173,213,0 +170785128223,214,0 +170785128271,214,0 +170785128319,213,0 +170785128366,214,0 +170785128416,213,0 +170785128465,212,0 +170785128513,213,0 +170785128561,213,0 +170785128609,213,0 +170785128659,213,0 +170785128706,213,0 +170785128756,213,0 +170785128804,213,0 +170785128853,213,0 +170785128903,213,0 +170785128951,213,0 +170785128999,213,0 +170785129047,213,0 +170785129095,213,0 +170785129142,214,0 +170785129190,214,0 +170785129238,213,0 +170785129286,214,0 +170785129334,213,0 +170785129382,213,0 +170785129430,213,0 +170785129478,212,0 +170785129527,213,0 +170785129575,213,0 +170785129625,213,0 +170785129674,213,0 +170785129724,213,0 +170785129773,213,0 +170785129821,213,0 +170785129869,213,0 +170785129917,213,0 +170785129966,213,0 +170785130014,213,0 +170785130062,213,0 +170785130110,213,0 +170785130158,213,0 +170785130208,213,0 +170785130256,214,0 +170785130304,213,0 +170785130352,213,0 +170785130400,213,0 +170785130448,212,0 +170785130497,212,0 +170785130545,213,0 +170785130593,213,0 +170785130641,213,0 +170785130689,213,0 +170785130738,213,0 +170785130788,213,0 +170785130837,213,0 +170785130885,213,0 +170785130933,213,0 +170785130983,213,0 +170785131031,213,0 +170785131078,213,0 +170785131128,214,0 +170785131177,214,0 +170785131225,213,0 +170785131273,212,0 +170785131321,213,0 +170785131369,213,0 +170785131417,213,0 +170785131465,213,0 +170785131513,213,0 +170785131561,213,0 +170785131611,213,0 +170785131660,213,0 +170785131708,213,0 +170785131756,213,0 +170785131805,213,0 +170785131853,213,0 +170785131901,213,0 +170785131949,213,0 +170785131997,213,0 +170785132045,213,0 +170785132093,213,0 +170785132142,213,0 +170785132190,213,0 +170785132240,213,0 +170785132288,212,0 +170785132336,213,0 +170785132384,213,0 +170785132432,213,0 +170785132479,213,0 +170785132527,213,0 +170785132577,213,0 +170785132626,213,0 +170785132674,213,0 +170785132722,213,0 +170785132770,213,0 +170785132818,213,0 +170785132866,213,0 +170785132915,213,0 +170785132965,213,0 +170785133015,213,0 +170785133064,213,0 +170785133114,213,0 +170785133162,212,0 +170785133209,213,0 +170785133259,213,0 +170785133307,213,0 +170785133355,213,0 +170785133402,213,0 +170785133450,213,0 +170785133500,213,0 +170785133548,213,0 +170785133597,213,0 +170785133645,213,0 +170785133693,214,0 +170785133742,214,0 +170785133792,213,0 +170785133840,214,0 +170785133889,213,0 +170785133937,213,0 +170785133985,213,0 +170785134033,213,0 +170785134082,213,0 +170785134130,213,0 +170785134180,213,0 +170785134228,213,0 +170785134277,213,0 +170785134325,213,0 +170785134373,213,0 +170785134423,213,0 +170785134472,213,0 +170785134522,213,0 +170785134571,214,0 +170785134619,214,0 +170785134667,214,0 +170785134715,214,0 +170785134763,214,0 +170785134811,213,0 +170785134860,214,0 +170785134908,213,0 +170785134956,213,0 +170785135006,213,0 +170785135055,213,0 +170785135104,213,0 +170785135154,213,0 +170785135202,213,0 +170785135250,213,0 +170785135298,213,0 +170785135346,213,0 +170785135394,214,0 +170785135441,213,0 +170785135489,214,0 +170785135537,213,0 +170785135587,214,0 +170785135635,214,0 +170785135683,214,0 +170785135732,214,0 +170785135782,214,0 +170785135831,214,0 +170785135879,213,0 +170785135927,212,0 +170785135975,213,0 +170785136023,213,0 +170785136071,213,0 +170785136119,213,0 +170785136167,213,0 +170785136216,213,0 +170785136264,213,0 +170785136314,213,0 +170785136362,213,0 +170785136410,213,0 +170785136459,213,0 +170785136507,213,0 +170785136557,213,0 +170785136605,214,0 +170785136652,214,0 +170785136702,214,0 +170785136750,214,0 +170785136798,213,0 +170785136846,212,0 +170785136894,213,0 +170785136942,213,0 +170785136990,213,0 +170785137037,213,0 +170785137085,213,0 +170785137133,213,0 +170785137183,213,0 +170785137232,213,0 +170785137280,213,0 +170785137330,213,0 +170785137379,213,0 +170785137427,213,0 +170785137477,213,0 +170785137526,214,0 +170785137574,213,0 +170785137622,213,0 +170785137672,214,0 +170785137721,213,0 +170785137771,212,0 +170785137820,212,0 +170785137868,213,0 +170785137916,213,0 +170785137965,213,0 +170785138013,213,0 +170785138061,213,0 +170785138110,213,0 +170785138160,213,0 +170785138209,213,0 +170785138257,213,0 +170785138305,213,0 +170785138355,213,0 +170785138403,213,0 +170785138451,213,0 +170785138499,213,0 +170785138547,213,0 +170785138596,213,0 +170785138646,213,0 +170785138694,212,0 +170785138743,212,0 +170785138791,213,0 +170785138839,213,0 +170785138888,213,0 +170785138936,213,0 +170785138986,213,0 +170785139034,213,0 +170785139083,213,0 +170785139131,213,0 +170785139181,213,0 +170785139229,213,0 +170785139276,213,0 +170785139324,213,0 +170785139372,213,0 +170785139420,213,0 +170785139468,213,0 +170785139516,213,0 +170785139564,213,0 +170785139612,213,0 +170785139660,213,0 +170785139708,213,0 +170785139757,213,0 +170785139807,213,0 +170785139856,213,0 +170785139906,213,0 +170785139954,213,0 +170785140002,213,0 +170785140050,213,0 +170785140097,213,0 +170785140145,213,0 +170785140193,213,0 +170785140241,213,0 +170785140289,213,0 +170785140337,213,0 +170785140385,213,0 +170785140434,213,0 +170785140482,213,0 +170785140530,213,0 +170785140578,213,0 +170785140628,213,0 +170785140676,213,0 +170785140724,213,0 +170785140772,213,0 +170785140819,213,0 +170785140867,213,0 +170785140917,213,0 +170785140965,213,0 +170785141012,213,0 +170785141060,214,0 +170785141108,213,0 +170785141156,214,0 +170785141204,214,0 +170785141252,214,0 +170785141300,213,0 +170785141347,214,0 +170785141395,213,0 +170785141443,213,0 +170785141491,213,0 +170785141539,213,0 +170785141588,213,0 +170785141636,213,0 +170785141684,213,0 +170785141733,213,0 +170785141783,213,0 +170785141830,213,0 +170785141880,213,0 +170785141929,213,0 +170785141979,213,0 +170785142027,213,0 +170785142075,214,0 +170785142124,214,0 +170785142172,214,0 +170785142222,214,0 +170785142270,214,0 +170785142318,213,0 +170785142366,213,0 +170785142414,213,0 +170785142463,213,0 +170785142511,213,0 +170785142561,213,0 +170785142609,213,0 +170785142656,213,0 +170785142706,213,0 +170785142755,213,0 +170785142803,213,0 +170785142851,213,0 +170785142899,214,0 +170785142949,214,0 +170785142997,214,0 +170785143046,214,0 +170785143094,214,0 +170785143142,214,0 +170785143191,214,0 +170785143241,213,0 +170785143289,213,0 +170785143336,213,0 +170785143384,213,0 +170785143434,213,0 +170785143482,213,0 +170785143529,213,0 +170785143577,213,0 +170785143627,213,0 +170785143676,213,0 +170785143726,213,0 +170785143774,213,0 +170785143822,213,0 +170785143871,213,0 +170785143919,213,0 +170785143969,213,0 +170785144017,213,0 +170785144065,213,0 +170785144113,213,0 +170785144161,213,0 +170785144209,213,0 +170785144256,213,0 +170785144304,212,0 +170785144354,213,0 +170785144402,213,0 +170785144450,213,0 +170785144499,213,0 +170785144548,213,0 +170785144596,213,0 +170785144646,213,0 +170785144694,213,0 +170785144742,213,0 +170785144790,213,0 +170785144837,213,0 +170785144885,213,0 +170785144935,213,0 +170785144984,213,0 +170785145032,213,0 +170785145080,213,0 +170785145130,214,0 +170785145179,213,0 +170785145227,213,0 +170785145276,213,0 +170785145324,213,0 +170785145372,213,0 +170785145422,213,0 +170785145470,213,0 +170785145518,213,0 +170785145566,213,0 +170785145615,213,0 +170785145664,213,0 +170785145712,213,0 +170785145760,213,0 +170785145810,213,0 +170785145858,214,0 +170785145907,213,0 +170785145955,214,0 +170785146003,214,0 +170785146053,213,0 +170785146101,213,0 +170785146150,213,0 +170785146198,213,0 +170785146246,213,0 +170785146295,213,0 +170785146343,213,0 +170785146391,213,0 +170785146439,213,0 +170785146487,213,0 +170785146535,213,0 +170785146583,213,0 +170785146631,213,0 +170785146679,213,0 +170785146728,213,0 +170785146778,214,0 +170785146825,213,0 +170785146873,214,0 +170785146921,214,0 +170785146969,214,0 +170785147017,213,0 +170785147065,213,0 +170785147113,212,0 +170785147161,213,0 +170785147211,213,0 +170785147260,213,0 +170785147308,213,0 +170785147356,213,0 +170785147404,213,0 +170785147452,213,0 +170785147500,213,0 +170785147549,213,0 +170785147599,213,0 +170785147647,213,0 +170785147695,213,0 +170785147742,213,0 +170785147790,213,0 +170785147838,213,0 +170785147888,213,0 +170785147936,214,0 +170785147985,213,0 +170785148033,213,0 +170785148081,213,0 +170785148130,213,0 +170785148178,213,0 +170785148228,213,0 +170785148277,213,0 +170785148325,213,0 +170785148375,213,0 +170785148424,213,0 +170785148472,213,0 +170785148521,213,0 +170785148571,213,0 +170785148620,213,0 +170785148670,214,0 +170785148718,214,0 +170785148767,214,0 +170785148815,214,0 +170785148863,213,0 +170785148911,213,0 +170785148959,213,0 +170785149007,213,0 +170785149056,213,0 +170785149104,213,0 +170785149152,213,0 +170785149202,213,0 +170785149250,213,0 +170785149297,213,0 +170785149345,213,0 +170785149393,213,0 +170785149443,213,0 +170785149491,213,0 +170785149539,213,0 +170785149587,213,0 +170785149635,213,0 +170785149683,213,0 +170785149732,213,0 +170785149780,213,0 +170785149829,213,0 +170785149879,212,0 +170785149927,213,0 +170785149975,213,0 +170785150023,213,0 +170785150072,213,0 +170785150120,213,0 +170785150168,213,0 +170785150216,213,0 +170785150265,213,0 +170785150313,213,0 +170785150361,213,0 +170785150409,213,0 +170785150457,213,0 +170785150506,214,0 +170785150554,213,0 +170785150604,213,0 +170785150652,213,0 +170785150700,213,0 +170785150748,213,0 +170785150797,212,0 +170785150847,212,0 +170785150896,213,0 +170785150944,213,0 +170785150992,213,0 +170785151041,213,0 +170785151091,213,0 +170785151139,213,0 +170785151188,213,0 +170785151238,213,0 +170785151286,213,0 +170785151334,213,0 +170785151382,213,0 +170785151431,214,0 +170785151479,213,0 +170785151527,213,0 +170785151577,214,0 +170785151626,214,0 +170785151674,213,0 +170785151724,213,0 +170785151772,212,0 +170785151819,213,0 +170785151867,213,0 +170785151915,213,0 +170785151963,213,0 +170785152013,213,0 +170785152061,213,0 +170785152109,213,0 +170785152157,213,0 +170785152205,213,0 +170785152254,213,0 +170785152304,213,0 +170785152353,213,0 +170785152401,214,0 +170785152449,213,0 +170785152499,213,0 +170785152548,213,0 +170785152596,213,0 +170785152644,213,0 +170785152694,213,0 +170785152742,213,0 +170785152791,213,0 +170785152841,212,0 +170785152890,213,0 +170785152938,213,0 +170785152986,213,0 +170785153034,213,0 +170785153083,213,0 +170785153133,213,0 +170785153182,213,0 +170785153230,213,0 +170785153280,213,0 +170785153329,213,0 +170785153377,214,0 +170785153425,213,0 +170785153473,214,0 +170785153521,213,0 +170785153571,213,0 +170785153619,212,0 +170785153667,213,0 +170785153716,213,0 +170785153766,213,0 +170785153815,213,0 +170785153863,213,0 +170785153913,213,0 +170785153961,213,0 +170785154010,213,0 +170785154058,213,0 +170785154106,213,0 +170785154154,213,0 +170785154204,213,0 +170785154252,213,0 +170785154300,214,0 +170785154348,213,0 +170785154396,213,0 +170785154445,213,0 +170785154493,212,0 +170785154542,213,0 +170785154590,213,0 +170785154638,213,0 +170785154686,213,0 +170785154734,213,0 +170785154784,213,0 +170785154831,213,0 +170785154879,213,0 +170785154929,213,0 +170785154978,214,0 +170785155028,213,0 +170785155077,213,0 +170785155127,214,0 +170785155175,214,0 +170785155223,214,0 +170785155272,214,0 +170785155320,214,0 +170785155370,213,0 +170785155418,213,0 +170785155467,213,0 +170785155515,213,0 +170785155563,213,0 +170785155611,213,0 +170785155659,213,0 +170785155707,213,0 +170785155756,213,0 +170785155804,214,0 +170785155852,213,0 +170785155900,214,0 +170785155948,214,0 +170785155996,214,0 +170785156044,214,0 +170785156092,214,0 +170785156141,214,0 +170785156189,214,0 +170785156239,214,0 +170785156287,214,0 +170785156335,213,0 +170785156383,213,0 +170785156430,213,0 +170785156478,213,0 +170785156526,213,0 +170785156574,213,0 +170785156624,213,0 +170785156673,213,0 +170785156721,213,0 +170785156769,213,0 +170785156819,213,0 +170785156867,214,0 +170785156915,214,0 +170785156962,214,0 +170785157010,214,0 +170785157058,214,0 +170785157106,214,0 +170785157156,214,0 +170785157205,214,0 +170785157253,213,0 +170785157301,213,0 +170785157349,213,0 +170785157397,213,0 +170785157445,213,0 +170785157493,213,0 +170785157541,213,0 +170785157590,213,0 +170785157640,213,0 +170785157688,213,0 +170785157736,213,0 +170785157783,213,0 +170785157831,214,0 +170785157879,213,0 +170785157927,213,0 +170785157975,214,0 +170785158023,213,0 +170785158071,214,0 +170785158119,214,0 +170785158167,213,0 +170785158214,213,0 +170785158262,213,0 +170785158310,213,0 +170785158358,213,0 +170785158406,213,0 +170785158454,213,0 +170785158502,213,0 +170785158549,213,0 +170785158597,213,0 +170785158645,213,0 +170785158693,213,0 +170785158741,213,0 +170785158789,213,0 +170785158837,213,0 +170785158885,213,0 +170785158933,214,0 +170785158980,214,0 +170785159030,213,0 +170785159078,213,0 +170785159126,213,0 +170785159175,213,0 +170785159223,213,0 +170785159271,213,0 +170785159319,213,0 +170785159367,213,0 +170785159416,213,0 +170785159466,213,0 +170785159514,213,0 +170785159563,213,0 +170785159613,213,0 +170785159662,214,0 +170785159710,213,0 +170785159758,214,0 +170785159807,213,0 +170785159857,214,0 +170785159905,213,0 +170785159954,214,0 +170785160002,213,0 +170785160050,213,0 +170785160100,212,0 +170785160149,212,0 +170785160199,213,0 +170785160248,213,0 +170785160298,213,0 +170785160346,213,0 +170785160394,213,0 +170785160442,213,0 +170785160491,213,0 +170785160539,213,0 +170785160589,213,0 +170785160638,213,0 +170785160686,213,0 +170785160735,213,0 +170785160783,214,0 +170785160831,214,0 +170785160879,213,0 +170785160929,213,0 +170785160978,213,0 +170785161026,213,0 +170785161074,213,0 +170785161123,212,0 +170785161173,213,0 +170785161221,213,0 +170785161270,213,0 +170785161320,213,0 +170785161368,213,0 +170785161417,213,0 +170785161465,213,0 +170785161513,213,0 +170785161561,213,0 +170785161610,213,0 +170785161658,213,0 +170785161706,213,0 +170785161756,213,0 +170785161804,213,0 +170785161852,213,0 +170785161900,214,0 +170785161948,213,0 +170785161996,213,0 +170785162043,212,0 +170785162091,212,0 +170785162139,213,0 +170785162187,213,0 +170785162235,213,0 +170785162283,213,0 +170785162331,213,0 +170785162379,213,0 +170785162427,213,0 +170785162475,213,0 +170785162523,213,0 +170785162571,213,0 +170785162619,213,0 +170785162667,213,0 +170785162715,214,0 +170785162764,213,0 +170785162814,213,0 +170785162862,213,0 +170785162910,213,0 +170785162959,212,0 +170785163007,212,0 +170785163057,213,0 +170785163106,213,0 +170785163154,213,0 +170785163202,213,0 +170785163251,213,0 +170785163299,213,0 +170785163347,213,0 +170785163397,213,0 +170785163444,213,0 +170785163494,213,0 +170785163542,213,0 +170785163590,213,0 +170785163639,213,0 +170785163687,213,0 +170785163735,213,0 +170785163783,213,0 +170785163831,212,0 +170785163879,213,0 +170785163929,212,0 +170785163976,213,0 +170785164024,213,0 +170785164072,213,0 +170785164122,213,0 +170785164170,213,0 +170785164217,213,0 +170785164267,213,0 +170785164315,213,0 +170785164363,213,0 +170785164411,213,0 +170785164458,214,0 +170785164506,213,0 +170785164554,214,0 +170785164602,214,0 +170785164651,214,0 +170785164701,213,0 +170785164749,213,0 +170785164798,213,0 +170785164846,213,0 +170785164894,213,0 +170785164942,213,0 +170785164990,213,0 +170785165038,213,0 +170785165086,213,0 +170785165135,213,0 +170785165183,213,0 +170785165231,213,0 +170785165279,214,0 +170785165327,213,0 +170785165375,213,0 +170785165423,214,0 +170785165471,214,0 +170785165519,214,0 +170785165567,213,0 +170785165617,213,0 +170785165666,212,0 +170785165714,213,0 +170785165762,213,0 +170785165810,213,0 +170785165858,213,0 +170785165906,213,0 +170785165954,213,0 +170785166002,213,0 +170785166049,213,0 +170785166097,213,0 +170785166145,213,0 +170785166193,213,0 +170785166243,213,0 +170785166291,213,0 +170785166340,213,0 +170785166390,213,0 +170785166438,213,0 +170785166487,214,0 +170785166537,214,0 +170785166585,213,0 +170785166633,212,0 +170785166680,213,0 +170785166728,213,0 +170785166778,213,0 +170785166826,213,0 +170785166874,213,0 +170785166923,213,0 +170785166971,213,0 +170785167019,213,0 +170785167067,213,0 +170785167115,213,0 +170785167165,213,0 +170785167213,213,0 +170785167262,213,0 +170785167310,214,0 +170785167360,214,0 +170785167409,214,0 +170785167457,214,0 +170785167507,213,0 +170785167556,213,0 +170785167604,213,0 +170785167652,213,0 +170785167700,213,0 +170785167748,213,0 +170785167796,213,0 +170785167844,213,0 +170785167893,213,0 +170785167941,213,0 +170785167989,213,0 +170785168037,213,0 +170785168085,213,0 +170785168133,213,0 +170785168181,214,0 +170785168230,213,0 +170785168278,213,0 +170785168328,213,0 +170785168375,214,0 +170785168423,213,0 +170785168471,212,0 +170785168519,213,0 +170785168567,213,0 +170785168615,213,0 +170785168662,213,0 +170785168710,213,0 +170785168758,213,0 +170785168806,213,0 +170785168854,213,0 +170785168902,213,0 +170785168949,213,0 +170785168997,213,0 +170785169047,213,0 +170785169095,214,0 +170785169144,214,0 +170785169192,214,0 +170785169240,213,0 +170785169289,214,0 +170785169337,213,0 +170785169385,213,0 +170785169433,213,0 +170785169483,213,0 +170785169531,213,0 +170785169578,213,0 +170785169628,213,0 +170785169677,213,0 +170785169725,213,0 +170785169773,213,0 +170785169823,213,0 +170785169871,213,0 +170785169918,214,0 +170785169966,214,0 +170785170016,214,0 +170785170065,214,0 +170785170113,214,0 +170785170161,214,0 +170785170209,214,0 +170785170258,214,0 +170785170306,213,0 +170785170354,213,0 +170785170404,213,0 +170785170452,213,0 +170785170500,213,0 +170785170549,213,0 +170785170599,213,0 +170785170647,213,0 +170785170695,213,0 +170785170742,213,0 +170785170792,213,0 +170785170840,213,0 +170785170889,214,0 +170785170937,214,0 +170785170985,213,0 +170785171033,214,0 +170785171081,214,0 +170785171131,214,0 +170785171178,213,0 +170785171228,213,0 +170785171276,213,0 +170785171324,213,0 +170785171372,213,0 +170785171421,213,0 +170785171471,213,0 +170785171520,213,0 +170785171568,213,0 +170785171616,213,0 +170785171665,213,0 +170785171713,213,0 +170785171761,213,0 +170785171809,214,0 +170785171857,213,0 +170785171905,214,0 +170785171954,214,0 +170785172002,214,0 +170785172052,214,0 +170785172101,214,0 +170785172151,213,0 +170785172199,212,0 +170785172248,213,0 +170785172296,213,0 +170785172346,213,0 +170785172395,213,0 +170785172443,213,0 +170785172493,213,0 +170785172541,213,0 +170785172589,213,0 +170785172637,213,0 +170785172684,213,0 +170785172734,213,0 +170785172782,214,0 +170785172830,214,0 +170785172879,214,0 +170785172927,214,0 +170785172975,214,0 +170785173023,214,0 +170785173071,213,0 +170785173119,213,0 +170785173168,213,0 +170785173216,213,0 +170785173264,212,0 +170785173312,213,0 +170785173361,213,0 +170785173409,213,0 +170785173457,213,0 +170785173507,213,0 +170785173555,213,0 +170785173603,213,0 +170785173651,213,0 +170785173700,213,0 +170785173748,213,0 +170785173797,213,0 +170785173845,213,0 +170785173893,213,0 +170785173941,213,0 +170785173989,213,0 +170785174037,212,0 +170785174085,213,0 +170785174133,213,0 +170785174180,213,0 +170785174230,213,0 +170785174278,213,0 +170785174326,213,0 +170785174375,212,0 +170785174423,213,0 +170785174471,213,0 +170785174521,213,0 +170785174569,213,0 +170785174617,213,0 +170785174666,213,0 +170785174714,213,0 +170785174762,213,0 +170785174811,213,0 +170785174861,214,0 +170785174909,214,0 +170785174958,213,0 +170785175008,213,0 +170785175056,213,0 +170785175104,213,0 +170785175152,213,0 +170785175200,213,0 +170785175248,213,0 +170785175295,213,0 +170785175343,213,0 +170785175393,213,0 +170785175441,213,0 +170785175489,213,0 +170785175537,213,0 +170785175584,213,0 +170785175632,214,0 +170785175680,214,0 +170785175730,214,0 +170785175778,214,0 +170785175827,213,0 +170785175875,213,0 +170785175925,213,0 +170785175972,213,0 +170785176020,213,0 +170785176068,213,0 +170785176116,213,0 +170785176166,213,0 +170785176214,213,0 +170785176263,213,0 +170785176311,213,0 +170785176360,213,0 +170785176410,213,0 +170785176459,214,0 +170785176507,213,0 +170785176557,214,0 +170785176605,214,0 +170785176652,214,0 +170785176700,213,0 +170785176748,213,0 +170785176796,213,0 +170785176846,213,0 +170785176895,213,0 +170785176945,213,0 +170785176993,213,0 +170785177041,213,0 +170785177090,213,0 +170785177138,213,0 +170785177186,213,0 +170785177234,213,0 +170785177283,214,0 +170785177333,213,0 +170785177382,214,0 +170785177430,213,0 +170785177479,213,0 +170785177527,214,0 +170785177577,214,0 +170785177625,214,0 +170785177673,214,0 +170785177721,213,0 +170785177769,213,0 +170785177816,213,0 +170785177864,213,0 +170785177914,213,0 +170785177962,213,0 +170785178010,213,0 +170785178057,213,0 +170785178105,213,0 +170785178153,213,0 +170785178203,213,0 +170785178251,214,0 +170785178300,213,0 +170785178348,214,0 +170785178396,214,0 +170785178444,214,0 +170785178492,213,0 +170785178541,214,0 +170785178589,214,0 +170785178637,213,0 +170785178685,213,0 +170785178733,213,0 +170785178783,213,0 +170785178832,213,0 +170785178880,213,0 +170785178928,213,0 +170785178976,213,0 +170785179025,213,0 +170785179073,214,0 +170785179121,214,0 +170785179171,214,0 +170785179218,214,0 +170785179266,214,0 +170785179314,214,0 +170785179362,214,0 +170785179410,214,0 +170785179459,214,0 +170785179507,214,0 +170785179555,214,0 +170785179603,213,0 +170785179653,213,0 +170785179701,213,0 +170785179748,213,0 +170785179796,213,0 +170785179844,213,0 +170785179892,213,0 +170785179940,213,0 +170785179987,213,0 +170785180035,213,0 +170785180083,213,0 +170785180131,213,0 +170785180179,213,0 +170785180227,213,0 +170785180275,213,0 +170785180323,214,0 +170785180371,214,0 +170785180419,214,0 +170785180467,214,0 +170785180516,213,0 +170785180566,213,0 +170785180613,213,0 +170785180661,213,0 +170785180709,213,0 +170785180759,213,0 +170785180807,213,0 +170785180855,213,0 +170785180903,213,0 +170785180951,213,0 +170785180998,213,0 +170785181046,213,0 +170785181096,213,0 +170785181144,213,0 +170785181193,213,0 +170785181243,213,0 +170785181291,213,0 +170785181339,214,0 +170785181388,214,0 +170785181438,213,0 +170785181486,212,0 +170785181534,213,0 +170785181582,213,0 +170785181631,213,0 +170785181679,213,0 +170785181728,213,0 +170785181776,213,0 +170785181824,213,0 +170785181874,213,0 +170785181922,213,0 +170785181971,213,0 +170785182019,213,0 +170785182067,213,0 +170785182115,213,0 +170785182163,214,0 +170785182211,214,0 +170785182259,214,0 +170785182307,214,0 +170785182355,213,0 +170785182403,213,0 +170785182450,212,0 +170785182498,213,0 +170785182548,213,0 +170785182597,213,0 +170785182645,213,0 +170785182695,213,0 +170785182743,213,0 +170785182792,213,0 +170785182840,213,0 +170785182888,213,0 +170785182936,213,0 +170785182984,213,0 +170785183033,213,0 +170785183083,213,0 +170785183131,213,0 +170785183180,213,0 +170785183228,214,0 +170785183276,213,0 +170785183324,213,0 +170785183373,213,0 +170785183421,213,0 +170785183471,213,0 +170785183520,213,0 +170785183568,213,0 +170785183618,213,0 +170785183665,213,0 +170785183713,213,0 +170785183761,213,0 +170785183809,213,0 +170785183857,213,0 +170785183905,213,0 +170785183952,213,0 +170785184002,213,0 +170785184050,213,0 +170785184098,214,0 +170785184146,213,0 +170785184195,214,0 +170785184243,213,0 +170785184291,213,0 +170785184339,212,0 +170785184388,213,0 +170785184436,213,0 +170785184486,213,0 +170785184535,213,0 +170785184583,213,0 +170785184631,213,0 +170785184679,213,0 +170785184728,213,0 +170785184776,213,0 +170785184826,213,0 +170785184874,213,0 +170785184921,213,0 +170785184969,213,0 +170785185017,213,0 +170785185065,213,0 +170785185113,213,0 +170785185161,213,0 +170785185209,212,0 +170785185257,213,0 +170785185305,213,0 +170785185354,213,0 +170785185402,213,0 +170785185450,213,0 +170785185499,213,0 +170785185547,213,0 +170785185595,213,0 +170785185645,213,0 +170785185694,213,0 +170785185744,213,0 +170785185792,213,0 +170785185840,213,0 +170785185888,213,0 +170785185936,213,0 +170785185983,214,0 +170785186033,214,0 +170785186082,214,0 +170785186130,214,0 +170785186180,214,0 +170785186229,214,0 +170785186277,214,0 +170785186327,214,0 +170785186376,214,0 +170785186424,214,0 +170785186472,214,0 +170785186520,213,0 +170785186568,213,0 +170785186617,213,0 +170785186667,213,0 +170785186716,213,0 +170785186764,213,0 +170785186812,213,0 +170785186860,213,0 +170785186908,213,0 +170785186956,213,0 +170785187004,213,0 +170785187052,213,0 +170785187100,213,0 +170785187148,213,0 +170785187197,214,0 +170785187245,213,0 +170785187293,214,0 +170785187342,214,0 +170785187390,214,0 +170785187440,213,0 +170785187488,213,0 +170785187535,212,0 +170785187583,212,0 +170785187631,213,0 +170785187679,213,0 +170785187727,213,0 +170785187775,213,0 +170785187822,213,0 +170785187870,213,0 +170785187918,213,0 +170785187966,213,0 +170785188014,213,0 +170785188062,213,0 +170785188110,213,0 +170785188158,213,0 +170785188206,213,0 +170785188254,213,0 +170785188302,213,0 +170785188349,214,0 +170785188397,214,0 +170785188445,213,0 +170785188495,213,0 +170785188543,212,0 +170785188592,212,0 +170785188640,213,0 +170785188689,213,0 +170785188737,213,0 +170785188787,213,0 +170785188835,213,0 +170785188884,213,0 +170785188934,213,0 +170785188982,213,0 +170785189031,213,0 +170785189079,214,0 +170785189127,213,0 +170785189175,213,0 +170785189223,214,0 +170785189272,214,0 +170785189322,213,0 +170785189369,212,0 +170785189419,212,0 +170785189467,213,0 +170785189516,213,0 +170785189564,213,0 +170785189612,213,0 +170785189660,213,0 +170785189708,213,0 +170785189755,213,0 +170785189803,213,0 +170785189851,213,0 +170785189899,213,0 +170785189947,213,0 +170785189995,213,0 +170785190044,214,0 +170785190092,214,0 +170785190141,214,0 +170785190189,214,0 +170785190237,214,0 +170785190285,213,0 +170785190333,213,0 +170785190381,212,0 +170785190429,213,0 +170785190476,213,0 +170785190526,213,0 +170785190574,213,0 +170785190622,213,0 +170785190669,213,0 +170785190717,213,0 +170785190767,213,0 +170785190815,213,0 +170785190862,213,0 +170785190910,213,0 +170785190958,214,0 +170785191006,213,0 +170785191054,213,0 +170785191103,214,0 +170785191151,214,0 +170785191199,213,0 +170785191247,213,0 +170785191295,213,0 +170785191344,213,0 +170785191392,213,0 +170785191440,213,0 +170785191488,213,0 +170785191536,213,0 +170785191583,213,0 +170785191631,213,0 +170785191681,213,0 +170785191729,213,0 +170785191778,213,0 +170785191828,214,0 +170785191877,213,0 +170785191925,214,0 +170785191973,214,0 +170785192021,214,0 +170785192069,214,0 +170785192118,213,0 +170785192168,213,0 +170785192215,213,0 +170785192263,213,0 +170785192313,213,0 +170785192361,213,0 +170785192410,213,0 +170785192458,213,0 +170785192506,213,0 +170785192554,213,0 +170785192602,213,0 +170785192649,213,0 +170785192697,213,0 +170785192745,213,0 +170785192793,213,0 +170785192841,213,0 +170785192889,214,0 +170785192937,214,0 +170785192984,214,0 +170785193032,213,0 +170785193082,213,0 +170785193131,213,0 +170785193181,213,0 +170785193229,213,0 +170785193277,213,0 +170785193325,213,0 +170785193373,213,0 +170785193422,213,0 +170785193472,213,0 +170785193521,213,0 +170785193569,213,0 +170785193617,214,0 +170785193665,213,0 +170785193713,214,0 +170785193763,214,0 +170785193810,214,0 +170785193858,214,0 +170785193906,214,0 +170785193954,214,0 +170785194002,213,0 +170785194050,213,0 +170785194099,213,0 +170785194147,213,0 +170785194197,213,0 +170785194245,213,0 +170785194293,213,0 +170785194342,213,0 +170785194392,213,0 +170785194440,213,0 +170785194488,213,0 +170785194536,213,0 +170785194583,213,0 +170785194633,213,0 +170785194681,213,0 +170785194730,213,0 +170785194778,214,0 +170785194828,214,0 +170785194876,214,0 +170785194924,213,0 +170785194972,212,0 +170785195021,213,0 +170785195069,213,0 +170785195117,213,0 +170785195166,213,0 +170785195214,213,0 +170785195262,213,0 +170785195310,213,0 +170785195358,213,0 +170785195408,213,0 +170785195457,213,0 +170785195507,213,0 +170785195555,213,0 +170785195604,213,0 +170785195654,214,0 +170785195703,213,0 +170785195751,214,0 +170785195801,214,0 +170785195849,213,0 +170785195898,213,0 +170785195948,213,0 +170785195996,213,0 +170785196043,213,0 +170785196091,213,0 +170785196141,213,0 +170785196189,213,0 +170785196238,213,0 +170785196288,213,0 +170785196336,213,0 +170785196385,213,0 +170785196433,213,0 +170785196481,213,0 +170785196529,213,0 +170785196578,214,0 +170785196626,213,0 +170785196674,213,0 +170785196722,214,0 +170785196771,213,0 +170785196819,213,0 +170785196867,213,0 +170785196916,213,0 +170785196964,213,0 +170785197012,212,0 +170785197060,213,0 +170785197108,213,0 +170785197156,213,0 +170785197206,213,0 +170785197255,213,0 +170785197304,213,0 +170785197354,213,0 +170785197402,213,0 +170785197450,214,0 +170785197497,213,0 +170785197545,214,0 +170785197593,214,0 +170785197641,214,0 +170785197691,213,0 +170785197738,213,0 +170785197788,213,0 +170785197836,213,0 +170785197884,213,0 +170785197932,213,0 +170785197981,213,0 +170785198031,213,0 +170785198078,213,0 +170785198128,213,0 +170785198176,213,0 +170785198224,213,0 +170785198272,213,0 +170785198319,214,0 +170785198369,213,0 +170785198418,214,0 +170785198466,214,0 +170785198516,213,0 +170785198564,214,0 +170785198612,213,0 +170785198661,213,0 +170785198711,213,0 +170785198760,213,0 +170785198808,213,0 +170785198856,213,0 +170785198904,213,0 +170785198952,213,0 +170785199000,213,0 +170785199049,213,0 +170785199099,214,0 +170785199147,214,0 +170785199194,214,0 +170785199242,214,0 +170785199290,214,0 +170785199338,214,0 +170785199386,214,0 +170785199436,214,0 +170785199485,214,0 +170785199535,214,0 +170785199584,213,0 +170785199633,213,0 +170785199681,213,0 +170785199731,213,0 +170785199779,213,0 +170785199827,213,0 +170785199875,213,0 +170785199923,213,0 +170785199971,213,0 +170785200019,213,0 +170785200068,214,0 +170785200118,214,0 +170785200167,214,0 +170785200215,214,0 +170785200263,214,0 +170785200311,214,0 +170785200359,214,0 +170785200409,214,0 +170785200457,214,0 +170785200504,213,0 +170785200552,213,0 +170785200600,213,0 +170785200648,213,0 +170785200696,213,0 +170785200744,213,0 +170785200792,213,0 +170785200840,213,0 +170785200888,213,0 +170785200936,214,0 +170785200983,213,0 +170785201031,214,0 +170785201079,214,0 +170785201127,214,0 +170785201174,214,0 +170785201222,214,0 +170785201270,214,0 +170785201320,214,0 +170785201368,214,0 +170785201415,213,0 +170785201465,213,0 +170785201513,213,0 +170785201561,213,0 +170785201610,213,0 +170785201658,213,0 +170785201706,213,0 +170785201756,213,0 +170785201803,213,0 +170785201853,213,0 +170785201901,213,0 +170785201949,213,0 +170785201997,213,0 +170785202045,214,0 +170785202093,214,0 +170785202141,214,0 +170785202190,214,0 +170785202240,214,0 +170785202288,214,0 +170785202335,213,0 +170785202385,212,0 +170785202434,213,0 +170785202484,213,0 +170785202533,213,0 +170785202583,213,0 +170785202631,213,0 +170785202679,213,0 +170785202727,213,0 +170785202775,213,0 +170785202823,213,0 +170785202871,213,0 +170785202918,213,0 +170785202966,213,0 +170785203014,214,0 +170785203062,213,0 +170785203110,213,0 +170785203160,214,0 +170785203209,214,0 +170785203257,214,0 +170785203307,213,0 +170785203355,213,0 +170785203402,213,0 +170785203450,212,0 +170785203498,213,0 +170785203546,213,0 +170785203594,213,0 +170785203642,213,0 +170785203691,213,0 +170785203739,213,0 +170785203789,213,0 +170785203838,213,0 +170785203888,213,0 +170785203937,214,0 +170785203987,213,0 +170785204035,214,0 +170785204084,214,0 +170785204134,214,0 +170785204182,214,0 +170785204231,213,0 +170785204280,213,0 +170785204328,213,0 +170785204376,213,0 +170785204426,213,0 +170785204473,213,0 +170785204521,213,0 +170785204569,213,0 +170785204619,213,0 +170785204667,213,0 +170785204716,213,0 +170785204766,213,0 +170785204815,213,0 +170785204865,213,0 +170785204912,214,0 +170785204960,213,0 +170785205008,214,0 +170785205056,214,0 +170785205104,214,0 +170785205152,213,0 +170785205200,213,0 +170785205248,213,0 +170785205296,213,0 +170785205345,213,0 +170785205393,213,0 +170785205441,213,0 +170785205489,213,0 +170785205538,213,0 +170785205586,213,0 +170785205634,213,0 +170785205682,213,0 +170785205730,213,0 +170785205778,213,0 +170785205826,213,0 +170785205874,214,0 +170785205922,214,0 +170785205970,214,0 +170785206018,214,0 +170785206066,213,0 +170785206114,213,0 +170785206161,213,0 +170785206209,213,0 +170785206257,213,0 +170785206305,213,0 +170785206353,213,0 +170785206403,213,0 +170785206452,213,0 +170785206500,213,0 +170785206548,213,0 +170785206598,213,0 +170785206647,213,0 +170785206695,213,0 +170785206744,213,0 +170785206792,214,0 +170785206840,213,0 +170785206888,214,0 +170785206938,213,0 +170785206987,213,0 +170785207037,213,0 +170785207085,212,0 +170785207133,212,0 +170785207182,213,0 +170785207231,213,0 +170785207281,213,0 +170785207329,213,0 +170785207377,213,0 +170785207426,213,0 +170785207474,213,0 +170785207522,213,0 +170785207570,213,0 +170785207619,213,0 +170785207667,213,0 +170785207715,213,0 +170785207765,213,0 +170785207814,213,0 +170785207863,214,0 +170785207911,214,0 +170785207961,213,0 +170785208009,212,0 +170785208058,213,0 +170785208106,212,0 +170785208154,213,0 +170785208204,213,0 +170785208251,213,0 +170785208301,213,0 +170785208349,213,0 +170785208397,213,0 +170785208445,213,0 +170785208494,213,0 +170785208542,213,0 +170785208590,213,0 +170785208637,213,0 +170785208687,213,0 +170785208736,213,0 +170785208784,214,0 +170785208834,214,0 +170785208882,213,0 +170785208930,212,0 +170785208977,213,0 +170785209025,213,0 +170785209073,213,0 +170785209123,213,0 +170785209170,213,0 +170785209218,213,0 +170785209266,213,0 +170785209314,213,0 +170785209362,213,0 +170785209410,213,0 +170785209460,213,0 +170785209509,213,0 +170785209559,213,0 +170785209607,214,0 +170785209654,214,0 +170785209702,213,0 +170785209750,213,0 +170785209800,213,0 +170785209849,212,0 +170785209899,212,0 +170785209949,213,0 +170785209997,213,0 +170785210045,213,0 +170785210094,213,0 +170785210142,213,0 +170785210190,213,0 +170785210237,213,0 +170785210285,213,0 +170785210333,213,0 +170785210381,213,0 +170785210429,213,0 +170785210477,213,0 +170785210525,213,0 +170785210574,213,0 +170785210622,214,0 +170785210670,214,0 +170785210717,213,0 +170785210765,212,0 +170785210813,213,0 +170785210861,212,0 +170785210909,213,0 +170785210957,213,0 +170785211004,212,0 +170785211052,213,0 +170785211100,212,0 +170785211148,212,0 +170785211196,213,0 +170785211244,212,0 +170785211292,213,0 +170785211339,213,0 +170785211387,213,0 +170785211435,213,0 +170785211483,213,0 +170785211531,213,0 +170785211579,213,0 +170785211628,214,0 +170785211676,213,0 +170785211724,213,0 +170785211772,213,0 +170785211819,213,0 +170785211867,213,0 +170785211915,213,0 +170785211963,213,0 +170785212011,213,0 +170785212060,213,0 +170785212108,213,0 +170785212156,213,0 +170785212204,213,0 +170785212251,213,0 +170785212299,213,0 +170785212347,213,0 +170785212395,213,0 +170785212443,213,0 +170785212491,214,0 +170785212538,213,0 +170785212586,213,0 +170785212634,213,0 +170785212683,213,0 +170785212731,213,0 +170785212779,213,0 +170785212827,213,0 +170785212875,213,0 +170785212922,213,0 +170785212972,213,0 +170785213021,213,0 +170785213069,213,0 +170785213119,213,0 +170785213167,213,0 +170785213215,213,0 +170785213262,213,0 +170785213310,214,0 +170785213358,213,0 +170785213406,213,0 +170785213454,214,0 +170785213504,214,0 +170785213552,213,0 +170785213601,212,0 +170785213649,213,0 +170785213697,213,0 +170785213745,213,0 +170785213795,213,0 +170785213842,213,0 +170785213892,213,0 +170785213941,213,0 +170785213989,213,0 +170785214037,213,0 +170785214085,213,0 +170785214133,213,0 +170785214182,214,0 +170785214230,214,0 +170785214280,214,0 +170785214328,214,0 +170785214376,214,0 +170785214424,213,0 +170785214473,213,0 +170785214521,213,0 +170785214569,213,0 +170785214619,213,0 +170785214666,213,0 +170785214716,213,0 +170785214765,213,0 +170785214813,213,0 +170785214861,213,0 +170785214909,213,0 +170785214958,213,0 +170785215008,213,0 +170785215057,214,0 +170785215105,214,0 +170785215153,213,0 +170785215203,214,0 +170785215251,214,0 +170785215298,214,0 +170785215346,214,0 +170785215394,213,0 +170785215442,212,0 +170785215490,213,0 +170785215538,213,0 +170785215587,213,0 +170785215635,213,0 +170785215683,213,0 +170785215732,213,0 +170785215782,213,0 +170785215830,213,0 +170785215878,213,0 +170785215926,213,0 +170785215974,213,0 +170785216023,213,0 +170785216071,213,0 +170785216120,213,0 +170785216168,214,0 +170785216216,213,0 +170785216264,213,0 +170785216312,213,0 +170785216362,213,0 +170785216411,212,0 +170785216461,212,0 +170785216510,213,0 +170785216558,213,0 +170785216606,213,0 +170785216654,213,0 +170785216702,213,0 +170785216750,213,0 +170785216797,213,0 +170785216845,213,0 +170785216893,213,0 +170785216941,213,0 +170785216989,213,0 +170785217037,213,0 +170785217085,213,0 +170785217132,214,0 +170785217180,213,0 +170785217230,213,0 +170785217278,212,0 +170785217326,213,0 +170785217375,212,0 +170785217424,213,0 +170785217474,213,0 +170785217522,213,0 +170785217570,213,0 +170785217618,213,0 +170785217666,213,0 +170785217714,213,0 +170785217763,213,0 +170785217812,213,0 +170785217860,213,0 +170785217910,213,0 +170785217959,213,0 +170785218009,213,0 +170785218057,213,0 +170785218106,213,0 +170785218154,214,0 +170785218202,213,0 +170785218249,213,0 +170785218297,212,0 +170785218347,212,0 +170785218395,212,0 +170785218442,213,0 +170785218490,213,0 +170785218540,213,0 +170785218588,213,0 +170785218635,213,0 +170785218683,213,0 +170785218731,213,0 +170785218779,213,0 +170785218827,213,0 +170785218875,213,0 +170785218922,213,0 +170785218972,213,0 +170785219021,213,0 +170785219069,214,0 +170785219117,213,0 +170785219167,213,0 +170785219215,213,0 +170785219263,213,0 +170785219312,213,0 +170785219360,213,0 +170785219408,213,0 +170785219458,213,0 +170785219507,213,0 +170785219557,213,0 +170785219604,213,0 +170785219654,213,0 +170785219703,213,0 +170785219753,213,0 +170785219802,213,0 +170785219850,213,0 +170785219898,213,0 +170785219946,213,0 +170785219994,213,0 +170785220044,213,0 +170785220092,213,0 +170785220140,213,0 +170785220187,213,0 +170785220237,213,0 +170785220285,213,0 +170785220334,213,0 +170785220384,213,0 +170785220432,213,0 +170785220480,213,0 +170785220529,213,0 +170785220577,213,0 +170785220627,213,0 +170785220675,213,0 +170785220723,213,0 +170785220772,213,0 +170785220821,214,0 +170785220871,214,0 +170785220919,214,0 +170785220967,213,0 +170785221015,213,0 +170785221063,213,0 +170785221110,213,0 +170785221158,213,0 +170785221208,213,0 +170785221256,213,0 +170785221305,213,0 +170785221355,213,0 +170785221403,213,0 +170785221452,213,0 +170785221501,213,0 +170785221549,213,0 +170785221597,214,0 +170785221645,214,0 +170785221693,214,0 +170785221741,214,0 +170785221789,214,0 +170785221837,214,0 +170785221885,213,0 +170785221933,213,0 +170785221981,213,0 +170785222029,213,0 +170785222077,213,0 +170785222126,213,0 +170785222176,213,0 +170785222224,213,0 +170785222271,213,0 +170785222319,213,0 +170785222367,214,0 +170785222415,214,0 +170785222465,214,0 +170785222512,214,0 +170785222560,214,0 +170785222608,214,0 +170785222656,214,0 +170785222704,214,0 +170785222753,213,0 +170785222801,214,0 +170785222851,213,0 +170785222898,213,0 +170785222946,213,0 +170785222994,213,0 +170785223042,213,0 +170785223090,213,0 +170785223138,213,0 +170785223186,213,0 +170785223234,213,0 +170785223282,213,0 +170785223331,213,0 +170785223379,213,0 +170785223427,214,0 +170785223475,214,0 +170785223523,214,0 +170785223571,214,0 +170785223619,214,0 +170785223667,214,0 +170785223716,213,0 +170785223764,213,0 +170785223813,213,0 +170785223861,213,0 +170785223909,213,0 +170785223957,213,0 +170785224005,213,0 +170785224053,213,0 +170785224102,213,0 +170785224150,213,0 +170785224200,213,0 +170785224248,213,0 +170785224297,213,0 +170785224345,213,0 +170785224393,214,0 +170785224441,214,0 +170785224490,213,0 +170785224540,214,0 +170785224589,214,0 +170785224639,213,0 +170785224688,213,0 +170785224738,213,0 +170785224786,213,0 +170785224833,213,0 +170785224881,213,0 +170785224931,213,0 +170785224979,213,0 +170785225027,213,0 +170785225075,213,0 +170785225123,213,0 +170785225171,213,0 +170785225220,213,0 +170785225269,213,0 +170785225317,213,0 +170785225367,213,0 +170785225415,214,0 +170785225462,213,0 +170785225510,214,0 +170785225558,213,0 +170785225606,213,0 +170785225656,213,0 +170785225703,213,0 +170785225753,213,0 +170785225801,213,0 +170785225849,213,0 +170785225897,213,0 +170785225945,213,0 +170785225993,213,0 +170785226042,213,0 +170785226092,213,0 +170785226139,213,0 +170785226189,213,0 +170785226239,213,0 +170785226286,213,0 +170785226334,213,0 +170785226384,214,0 +170785226433,214,0 +170785226483,214,0 +170785226531,213,0 +170785226579,213,0 +170785226627,213,0 +170785226675,213,0 +170785226723,213,0 +170785226772,213,0 +170785226822,213,0 +170785226871,213,0 +170785226919,213,0 +170785226969,213,0 +170785227018,213,0 +170785227066,213,0 +170785227114,213,0 +170785227162,213,0 +170785227210,213,0 +170785227258,213,0 +170785227306,213,0 +170785227353,213,0 +170785227403,213,0 +170785227451,213,0 +170785227500,213,0 +170785227550,213,0 +170785227598,213,0 +170785227645,213,0 +170785227695,213,0 +170785227743,213,0 +170785227791,213,0 +170785227840,213,0 +170785227888,213,0 +170785227936,213,0 +170785227984,213,0 +170785228032,213,0 +170785228080,213,0 +170785228128,213,0 +170785228176,213,0 +170785228224,213,0 +170785228273,214,0 +170785228323,213,0 +170785228372,213,0 +170785228422,213,0 +170785228470,212,0 +170785228517,213,0 +170785228565,213,0 +170785228615,213,0 +170785228663,213,0 +170785228712,213,0 +170785228760,213,0 +170785228808,213,0 +170785228856,213,0 +170785228904,213,0 +170785228952,213,0 +170785229001,213,0 +170785229049,213,0 +170785229097,214,0 +170785229145,213,0 +170785229193,214,0 +170785229241,214,0 +170785229290,213,0 +170785229338,213,0 +170785229386,213,0 +170785229434,213,0 +170785229482,213,0 +170785229532,213,0 +170785229579,213,0 +170785229629,213,0 +170785229677,213,0 +170785229726,213,0 +170785229774,213,0 +170785229824,213,0 +170785229873,214,0 +170785229923,213,0 +170785229971,214,0 +170785230020,214,0 +170785230068,214,0 +170785230117,214,0 +170785230165,213,0 +170785230213,214,0 +170785230261,213,0 +170785230309,213,0 +170785230357,213,0 +170785230405,213,0 +170785230454,213,0 +170785230502,213,0 +170785230550,213,0 +170785230598,213,0 +170785230646,213,0 +170785230694,213,0 +170785230741,213,0 +170785230789,214,0 +170785230837,214,0 +170785230885,214,0 +170785230933,213,0 +170785230981,214,0 +170785231031,214,0 +170785231078,214,0 +170785231126,214,0 +170785231174,213,0 +170785231224,213,0 +170785231272,213,0 +170785231320,213,0 +170785231369,213,0 +170785231419,213,0 +170785231468,213,0 +170785231516,213,0 +170785231564,213,0 +170785231612,213,0 +170785231660,213,0 +170785231709,213,0 +170785231757,213,0 +170785231805,213,0 +170785231855,213,0 +170785231903,213,0 +170785231951,213,0 +170785231999,213,0 +170785232047,214,0 +170785232095,213,0 +170785232143,213,0 +170785232191,213,0 +170785232238,212,0 +170785232288,212,0 +170785232336,212,0 +170785232384,213,0 +170785232432,213,0 +170785232480,213,0 +170785232528,213,0 +170785232576,213,0 +170785232624,213,0 +170785232671,213,0 +170785232719,213,0 +170785232769,213,0 +170785232818,213,0 +170785232866,213,0 +170785232916,213,0 +170785232964,213,0 +170785233012,214,0 +170785233060,213,0 +170785233109,212,0 +170785233157,213,0 +170785233206,213,0 +170785233254,213,0 +170785233304,213,0 +170785233352,213,0 +170785233400,213,0 +170785233448,213,0 +170785233496,213,0 +170785233544,213,0 +170785233593,213,0 +170785233641,213,0 +170785233690,213,0 +170785233740,213,0 +170785233789,214,0 +170785233837,213,0 +170785233887,213,0 +170785233936,213,0 +170785233984,213,0 +170785234032,212,0 +170785234082,212,0 +170785234130,213,0 +170785234178,213,0 +170785234227,213,0 +170785234277,213,0 +170785234326,213,0 +170785234376,213,0 +170785234423,213,0 +170785234471,213,0 +170785234521,213,0 +170785234569,213,0 +170785234618,213,0 +170785234667,213,0 +170785234717,214,0 +170785234765,214,0 +170785234813,213,0 +170785234861,214,0 +170785234908,213,0 +170785234956,213,0 +170785235004,212,0 +170785235054,213,0 +170785235102,213,0 +170785235150,213,0 +170785235199,213,0 +170785235249,213,0 +170785235298,213,0 +170785235346,213,0 +170785235394,213,0 +170785235442,213,0 +170785235491,213,0 +170785235539,213,0 +170785235587,213,0 +170785235637,213,0 +170785235686,213,0 +170785235734,213,0 +170785235784,213,0 +170785235832,213,0 +170785235879,213,0 +170785235929,213,0 +170785235977,213,0 +170785236026,213,0 +170785236074,213,0 +170785236124,213,0 +170785236174,213,0 +170785236223,213,0 +170785236271,213,0 +170785236319,213,0 +170785236368,213,0 +170785236418,213,0 +170785236466,214,0 +170785236515,214,0 +170785236563,213,0 +170785236611,214,0 +170785236659,214,0 +170785236707,214,0 +170785236756,213,0 +170785236804,213,0 +170785236854,213,0 +170785236902,212,0 +170785236949,213,0 +170785236998,213,0 +170785237047,213,0 +170785237095,213,0 +170785237143,213,0 +170785237192,213,0 +170785237242,213,0 +170785237290,213,0 +170785237338,213,0 +170785237386,213,0 +170785237434,213,0 +170785237483,213,0 +170785237531,213,0 +170785237579,213,0 +170785237627,214,0 +170785237675,213,0 +170785237723,213,0 +170785237771,212,0 +170785237820,212,0 +170785237868,213,0 +170785237918,213,0 +170785237967,213,0 +170785238015,213,0 +170785238063,213,0 +170785238113,213,0 +170785238162,213,0 +170785238210,213,0 +170785238258,213,0 +170785238306,213,0 +170785238355,213,0 +170785238403,213,0 +170785238453,213,0 +170785238501,213,0 +170785238549,213,0 +170785238598,213,0 +170785238648,213,0 +170785238697,213,0 +170785238745,213,0 +170785238793,213,0 +170785238841,213,0 +170785238891,213,0 +170785238938,213,0 +170785238988,213,0 +170785239036,213,0 +170785239084,213,0 +170785239133,213,0 +170785239181,213,0 +170785239229,213,0 +170785239277,213,0 +170785239327,213,0 +170785239375,213,0 +170785239423,213,0 +170785239470,213,0 +170785239518,213,0 +170785239568,213,0 +170785239616,213,0 +170785239664,213,0 +170785239713,212,0 +170785239763,212,0 +170785239813,213,0 +170785239860,212,0 +170785239908,213,0 +170785239958,212,0 +170785240006,213,0 +170785240054,213,0 +170785240102,213,0 +170785240152,213,0 +170785240199,213,0 +170785240247,213,0 +170785240297,213,0 +170785240345,213,0 +170785240393,213,0 +170785240440,213,0 +170785240488,213,0 +170785240536,213,0 +170785240584,212,0 +170785240634,213,0 +170785240682,213,0 +170785240730,213,0 +170785240778,212,0 +170785240826,212,0 +170785240875,213,0 +170785240923,213,0 +170785240973,213,0 +170785241022,213,0 +170785241070,213,0 +170785241120,213,0 +170785241168,213,0 +170785241215,213,0 +170785241265,213,0 +170785241314,213,0 +170785241363,213,0 +170785241412,213,0 +170785241460,213,0 +170785241509,213,0 +170785241557,212,0 +170785241605,213,0 +170785241653,213,0 +170785241703,212,0 +170785241752,213,0 +170785241800,213,0 +170785241848,213,0 +170785241896,213,0 +170785241944,213,0 +170785241992,213,0 +170785242041,213,0 +170785242089,213,0 +170785242139,213,0 +170785242188,213,0 +170785242238,213,0 +170785242286,213,0 +170785242335,213,0 +170785242383,213,0 +170785242433,213,0 +170785242481,213,0 +170785242529,213,0 +170785242578,213,0 +170785242628,213,0 +170785242677,213,0 +170785242727,213,0 +170785242775,213,0 +170785242824,213,0 +170785242873,213,0 +170785242923,213,0 +170785242971,213,0 +170785243019,213,0 +170785243068,214,0 +170785243116,213,0 +170785243164,213,0 +170785243212,214,0 +170785243260,214,0 +170785243308,213,0 +170785243358,213,0 +170785243405,213,0 +170785243453,213,0 +170785243501,213,0 +170785243549,213,0 +170785243597,213,0 +170785243645,213,0 +170785243694,213,0 +170785243742,213,0 +170785243790,213,0 +170785243838,214,0 +170785243886,214,0 +170785243934,214,0 +170785243982,214,0 +170785244032,214,0 +170785244079,214,0 +170785244127,214,0 +170785244175,213,0 +170785244225,213,0 +170785244274,213,0 +170785244324,213,0 +170785244372,213,0 +170785244420,213,0 +170785244467,213,0 +170785244517,213,0 +170785244565,213,0 +170785244614,213,0 +170785244664,213,0 +170785244713,214,0 +170785244761,214,0 +170785244809,214,0 +170785244857,214,0 +170785244905,214,0 +170785244953,214,0 +170785245001,214,0 +170785245050,213,0 +170785245098,213,0 +170785245147,213,0 +170785245195,213,0 +170785245245,213,0 +170785245293,213,0 +170785245341,213,0 +170785245389,213,0 +170785245437,213,0 +170785245486,214,0 +170785245534,214,0 +170785245582,214,0 +170785245630,214,0 +170785245678,214,0 +170785245726,214,0 +170785245774,214,0 +170785245822,214,0 +170785245870,214,0 +170785245917,214,0 +170785245965,214,0 +170785246013,214,0 +170785246061,213,0 +170785246110,213,0 +170785246158,213,0 +170785246208,213,0 +170785246257,213,0 +170785246307,213,0 +170785246356,213,0 +170785246406,213,0 +170785246454,213,0 +170785246503,213,0 +170785246551,213,0 +170785246601,213,0 +170785246649,213,0 +170785246698,213,0 +170785246746,213,0 +170785246794,214,0 +170785246842,213,0 +170785246890,214,0 +170785246939,214,0 +170785246987,213,0 +170785247037,213,0 +170785247086,213,0 +170785247134,213,0 +170785247182,213,0 +170785247230,213,0 +170785247280,213,0 +170785247329,213,0 +170785247379,213,0 +170785247428,213,0 +170785247476,213,0 +170785247524,213,0 +170785247574,213,0 +170785247622,213,0 +170785247669,213,0 +170785247717,214,0 +170785247765,213,0 +170785247813,213,0 +170785247863,214,0 +170785247911,213,0 +170785247959,213,0 +170785248006,212,0 +170785248054,212,0 +170785248102,213,0 +170785248150,213,0 +170785248198,212,0 +170785248246,213,0 +170785248296,213,0 +170785248344,213,0 +170785248392,213,0 +170785248440,213,0 +170785248487,213,0 +170785248535,213,0 +170785248583,213,0 +170785248631,213,0 +170785248679,213,0 +170785248729,213,0 +170785248778,213,0 +170785248826,213,0 +170785248874,213,0 +170785248923,213,0 +170785248971,212,0 +170785249019,213,0 +170785249067,213,0 +170785249116,213,0 +170785249166,213,0 +170785249214,213,0 +170785249262,212,0 +170785249310,213,0 +170785249357,213,0 +170785249405,213,0 +170785249453,213,0 +170785249503,213,0 +170785249552,213,0 +170785249600,213,0 +170785249648,213,0 +170785249696,213,0 +170785249745,213,0 +170785249793,213,0 +170785249841,212,0 +170785249891,213,0 +170785249939,212,0 +170785249988,212,0 +170785250036,213,0 +170785250084,213,0 +170785250133,213,0 +170785250181,213,0 +170785250231,213,0 +170785250279,213,0 +170785250326,213,0 +170785250374,213,0 +170785250424,213,0 +170785250472,213,0 +170785250521,213,0 +170785250569,213,0 +170785250619,214,0 +170785250667,213,0 +170785250715,213,0 +170785250762,213,0 +170785250812,212,0 +170785250861,213,0 +170785250911,213,0 +170785250959,213,0 +170785251007,213,0 +170785251055,213,0 +170785251104,213,0 +170785251152,213,0 +170785251200,213,0 +170785251248,213,0 +170785251298,213,0 +170785251346,213,0 +170785251395,213,0 +170785251445,213,0 +170785251492,213,0 +170785251540,213,0 +170785251588,213,0 +170785251636,214,0 +170785251684,213,0 +170785251732,213,0 +170785251780,213,0 +170785251829,213,0 +170785251879,213,0 +170785251928,213,0 +170785251976,213,0 +170785252026,213,0 +170785252074,213,0 +170785252123,213,0 +170785252171,213,0 +170785252219,213,0 +170785252269,213,0 +170785252317,213,0 +170785252365,213,0 +170785252412,213,0 +170785252460,213,0 +170785252508,213,0 +170785252558,213,0 +170785252607,213,0 +170785252656,212,0 +170785252705,213,0 +170785252753,213,0 +170785252801,213,0 +170785252850,213,0 +170785252898,213,0 +170785252946,213,0 +170785252994,213,0 +170785253042,213,0 +170785253092,213,0 +170785253140,213,0 +170785253189,213,0 +170785253239,213,0 +170785253288,213,0 +170785253336,213,0 +170785253384,213,0 +170785253432,213,0 +170785253480,214,0 +170785253528,213,0 +170785253576,212,0 +170785253624,213,0 +170785253672,213,0 +170785253720,213,0 +170785253769,213,0 +170785253817,213,0 +170785253865,213,0 +170785253913,213,0 +170785253961,213,0 +170785254011,213,0 +170785254060,213,0 +170785254108,213,0 +170785254156,213,0 +170785254204,213,0 +170785254253,214,0 +170785254303,213,0 +170785254352,213,0 +170785254400,213,0 +170785254448,214,0 +170785254496,213,0 +170785254544,213,0 +170785254592,213,0 +170785254640,213,0 +170785254689,213,0 +170785254737,213,0 +170785254785,213,0 +170785254833,213,0 +170785254881,213,0 +170785254929,213,0 +170785254977,213,0 +170785255025,213,0 +170785255073,213,0 +170785255121,213,0 +170785255170,213,0 +170785255220,214,0 +170785255269,214,0 +170785255317,213,0 +170785255365,214,0 +170785255413,213,0 +170785255462,213,0 +170785255510,213,0 +170785255560,213,0 +170785255608,213,0 +170785255657,213,0 +170785255706,213,0 +170785255756,213,0 +170785255804,213,0 +170785255852,213,0 +170785255899,213,0 +170785255947,213,0 +170785255997,213,0 +170785256045,213,0 +170785256094,213,0 +170785256142,213,0 +170785256190,214,0 +170785256238,213,0 +170785256288,213,0 +170785256337,213,0 +170785256387,213,0 +170785256434,212,0 +170785256482,213,0 +170785256530,213,0 +170785256578,213,0 +170785256626,213,0 +170785256674,213,0 +170785256724,213,0 +170785256771,213,0 +170785256819,213,0 +170785256869,213,0 +170785256917,213,0 +170785256965,213,0 +170785257012,213,0 +170785257060,213,0 +170785257110,214,0 +170785257158,214,0 +170785257207,213,0 +170785257255,213,0 +170785257303,213,0 +170785257351,213,0 +170785257399,213,0 +170785257447,213,0 +170785257495,213,0 +170785257544,213,0 +170785257592,213,0 +170785257642,213,0 +170785257690,213,0 +170785257739,213,0 +170785257787,213,0 +170785257835,213,0 +170785257883,213,0 +170785257932,213,0 +170785257982,213,0 +170785258030,213,0 +170785258078,213,0 +170785258126,214,0 +170785258175,213,0 +170785258223,213,0 +170785258271,213,0 +170785258319,213,0 +170785258368,213,0 +170785258416,213,0 +170785258464,213,0 +170785258512,213,0 +170785258560,213,0 +170785258608,213,0 +170785258656,213,0 +170785258704,213,0 +170785258752,213,0 +170785258801,213,0 +170785258849,214,0 +170785258899,214,0 +170785258947,214,0 +170785258995,214,0 +170785259044,214,0 +170785259094,213,0 +170785259143,213,0 +170785259191,213,0 +170785259239,213,0 +170785259287,213,0 +170785259336,213,0 +170785259384,213,0 +170785259434,213,0 +170785259482,213,0 +170785259531,213,0 +170785259579,213,0 +170785259629,213,0 +170785259677,214,0 +170785259725,213,0 +170785259773,214,0 +170785259821,214,0 +170785259870,214,0 +170785259920,214,0 +170785259968,214,0 +170785260016,213,0 +170785260063,213,0 +170785260111,213,0 +170785260159,213,0 +170785260207,213,0 +170785260257,213,0 +170785260304,213,0 +170785260352,213,0 +170785260400,213,0 +170785260448,213,0 +170785260496,213,0 +170785260544,213,0 +170785260594,214,0 +170785260642,213,0 +170785260690,214,0 +170785260737,213,0 +170785260787,214,0 +170785260835,214,0 +170785260883,214,0 +170785260931,213,0 +170785260979,213,0 +170785261027,213,0 +170785261076,213,0 +170785261124,213,0 +170785261173,213,0 +170785261221,213,0 +170785261269,213,0 +170785261317,213,0 +170785261365,213,0 +170785261415,213,0 +170785261464,213,0 +170785261514,213,0 +170785261563,213,0 +170785261613,214,0 +170785261660,214,0 +170785261708,214,0 +170785261756,214,0 +170785261806,214,0 +170785261854,214,0 +170785261902,213,0 +170785261950,213,0 +170785261999,213,0 +170785262047,212,0 +170785262095,213,0 +170785262143,213,0 +170785262191,213,0 +170785262239,213,0 +170785262287,213,0 +170785262335,213,0 +170785262382,213,0 +170785262430,213,0 +170785262478,213,0 +170785262526,213,0 +170785262574,213,0 +170785262622,213,0 +170785262672,213,0 +170785262720,214,0 +170785262769,214,0 +170785262817,214,0 +170785262865,213,0 +170785262913,212,0 +170785262961,213,0 +170785263009,213,0 +170785263057,213,0 +170785263105,213,0 +170785263154,212,0 +170785263202,213,0 +170785263250,213,0 +170785263298,213,0 +170785263348,213,0 +170785263397,213,0 +170785263445,213,0 +170785263493,213,0 +170785263541,213,0 +170785263589,214,0 +170785263637,214,0 +170785263685,213,0 +170785263733,213,0 +170785263781,213,0 +170785263830,213,0 +170785263878,213,0 +170785263928,213,0 +170785263975,213,0 +170785264023,213,0 +170785264071,213,0 +170785264119,213,0 +170785264167,213,0 +170785264215,213,0 +170785264263,213,0 +170785264312,213,0 +170785264362,213,0 +170785264410,213,0 +170785264458,213,0 +170785264507,213,0 +170785264557,213,0 +170785264606,213,0 +170785264654,213,0 +170785264702,213,0 +170785264750,212,0 +170785264798,213,0 +170785264847,213,0 +170785264895,213,0 +170785264943,213,0 +170785264991,213,0 +170785265039,213,0 +170785265087,213,0 +170785265135,213,0 +170785265184,213,0 +170785265234,213,0 +170785265281,213,0 +170785265329,213,0 +170785265377,213,0 +170785265425,213,0 +170785265473,213,0 +170785265521,213,0 +170785265571,213,0 +170785265619,213,0 +170785265666,213,0 +170785265714,213,0 +170785265762,213,0 +170785265812,213,0 +170785265860,213,0 +170785265908,213,0 +170785265957,213,0 +170785266007,213,0 +170785266055,213,0 +170785266102,213,0 +170785266152,213,0 +170785266200,213,0 +170785266250,214,0 +170785266299,214,0 +170785266349,214,0 +170785266398,213,0 +170785266446,214,0 +170785266496,214,0 +170785266544,213,0 +170785266591,213,0 +170785266639,213,0 +170785266689,213,0 +170785266737,213,0 +170785266786,213,0 +170785266834,213,0 +170785266884,213,0 +170785266932,213,0 +170785266980,213,0 +170785267029,213,0 +170785267079,213,0 +170785267128,214,0 +170785267176,213,0 +170785267224,214,0 +170785267272,214,0 +170785267320,214,0 +170785267368,214,0 +170785267416,214,0 +170785267465,214,0 +170785267513,213,0 +170785267561,213,0 +170785267611,213,0 +170785267659,213,0 +170785267708,213,0 +170785267756,213,0 +170785267804,213,0 +170785267853,213,0 +170785267901,213,0 +170785267949,213,0 +170785267997,213,0 +170785268045,214,0 +170785268093,214,0 +170785268143,214,0 +170785268190,214,0 +170785268238,214,0 +170785268288,214,0 +170785268336,214,0 +170785268384,213,0 +170785268433,213,0 +170785268483,212,0 +170785268531,213,0 +170785268579,213,0 +170785268626,213,0 +170785268674,213,0 +170785268722,213,0 +170785268770,213,0 +170785268818,213,0 +170785268868,213,0 +170785268916,213,0 +170785268963,213,0 +170785269011,213,0 +170785269061,213,0 +170785269110,213,0 +170785269160,213,0 +170785269208,213,0 +170785269256,213,0 +170785269303,214,0 +170785269351,213,0 +170785269401,213,0 +170785269449,213,0 +170785269497,213,0 +170785269545,213,0 +170785269593,213,0 +170785269642,213,0 +170785269692,213,0 +170785269740,213,0 +170785269789,213,0 +170785269837,213,0 +170785269885,213,0 +170785269933,213,0 +170785269982,213,0 +170785270030,213,0 +170785270078,213,0 +170785270126,213,0 +170785270174,213,0 +170785270222,213,0 +170785270270,213,0 +170785270318,213,0 +170785270366,213,0 +170785270414,213,0 +170785270463,213,0 +170785270513,213,0 +170785270561,213,0 +170785270608,213,0 +170785270656,213,0 +170785270706,213,0 +170785270755,213,0 +170785270803,213,0 +170785270851,213,0 +170785270899,213,0 +170785270947,213,0 +170785270996,213,0 +170785271044,214,0 +170785271094,213,0 +170785271143,213,0 +170785271191,213,0 +170785271239,213,0 +170785271289,213,0 +170785271337,212,0 +170785271385,213,0 +170785271433,213,0 +170785271480,213,0 +170785271528,213,0 +170785271576,213,0 +170785271624,213,0 +170785271672,213,0 +170785271720,213,0 +170785271768,213,0 +170785271816,213,0 +170785271863,213,0 +170785271911,214,0 +170785271961,213,0 +170785272008,213,0 +170785272056,213,0 +170785272104,214,0 +170785272152,213,0 +170785272200,213,0 +170785272248,213,0 +170785272296,213,0 +170785272343,213,0 +170785272391,212,0 +170785272439,213,0 +170785272489,213,0 +170785272537,213,0 +170785272585,213,0 +170785272634,213,0 +170785272682,213,0 +170785272730,213,0 +170785272779,213,0 +170785272829,213,0 +170785272877,213,0 +170785272926,213,0 +170785272974,213,0 +170785273022,213,0 +170785273070,213,0 +170785273119,212,0 +170785273167,213,0 +170785273215,213,0 +170785273263,213,0 +170785273311,213,0 +170785273359,213,0 +170785273409,213,0 +170785273456,213,0 +170785273506,213,0 +170785273554,213,0 +170785273602,213,0 +170785273651,213,0 +170785273699,213,0 +170785273747,213,0 +170785273795,213,0 +170785273843,214,0 +170785273891,213,0 +170785273941,214,0 +170785273989,213,0 +170785274038,213,0 +170785274086,213,0 +170785274134,213,0 +170785274183,213,0 +170785274233,213,0 +170785274281,213,0 +170785274329,213,0 +170785274377,213,0 +170785274426,213,0 +170785274474,213,0 +170785274522,213,0 +170785274570,213,0 +170785274618,213,0 +170785274666,213,0 +170785274716,214,0 +170785274764,214,0 +170785274813,213,0 +170785274863,214,0 +170785274912,213,0 +170785274960,213,0 +170785275008,213,0 +170785275056,213,0 +170785275104,213,0 +170785275153,213,0 +170785275203,213,0 +170785275251,213,0 +170785275300,213,0 +170785275350,213,0 +170785275399,213,0 +170785275447,213,0 +170785275497,213,0 +170785275544,214,0 +170785275592,214,0 +170785275640,214,0 +170785275688,214,0 +170785275736,214,0 +170785275784,214,0 +170785275832,214,0 +170785275882,213,0 +170785275930,212,0 +170785275979,212,0 +170785276027,213,0 +170785276077,213,0 +170785276126,213,0 +170785276174,213,0 +170785276222,213,0 +170785276271,213,0 +170785276319,213,0 +170785276369,213,0 +170785276417,213,0 +170785276466,213,0 +170785276516,213,0 +170785276564,213,0 +170785276611,213,0 +170785276659,214,0 +170785276707,213,0 +170785276757,213,0 +170785276805,213,0 +170785276853,213,0 +170785276900,213,0 +170785276948,213,0 +170785276996,213,0 +170785277046,213,0 +170785277094,213,0 +170785277142,213,0 +170785277190,213,0 +170785277238,213,0 +170785277286,213,0 +170785277333,213,0 +170785277381,213,0 +170785277429,213,0 +170785277477,213,0 +170785277525,213,0 +170785277573,213,0 +170785277621,213,0 +170785277671,214,0 +170785277720,213,0 +170785277770,213,0 +170785277819,213,0 +170785277867,213,0 +170785277917,213,0 +170785277965,213,0 +170785278014,213,0 +170785278062,213,0 +170785278110,213,0 +170785278158,213,0 +170785278206,213,0 +170785278254,213,0 +170785278302,213,0 +170785278351,213,0 +170785278399,213,0 +170785278449,213,0 +170785278496,213,0 +170785278544,213,0 +170785278592,213,0 +170785278640,213,0 +170785278688,213,0 +170785278736,212,0 +170785278784,213,0 +170785278832,213,0 +170785278881,213,0 +170785278929,213,0 +170785278978,213,0 +170785279028,213,0 +170785279076,213,0 +170785279124,213,0 +170785279173,213,0 +170785279221,213,0 +170785279269,213,0 +170785279319,213,0 +170785279368,214,0 +170785279418,214,0 +170785279467,214,0 +170785279517,213,0 +170785279565,214,0 +170785279613,212,0 +170785279661,213,0 +170785279711,213,0 +170785279759,213,0 +170785279807,213,0 +170785279855,213,0 +170785279904,213,0 +170785279954,213,0 +170785280002,213,0 +170785280050,213,0 +170785280098,213,0 +170785280147,213,0 +170785280197,213,0 +170785280244,214,0 +170785280294,213,0 +170785280344,214,0 +170785280391,214,0 +170785280441,214,0 +170785280490,214,0 +170785280538,213,0 +170785280586,212,0 +170785280634,213,0 +170785280682,213,0 +170785280730,213,0 +170785280778,213,0 +170785280827,213,0 +170785280875,213,0 +170785280923,213,0 +170785280971,213,0 +170785281021,213,0 +170785281069,213,0 +170785281118,213,0 +170785281166,213,0 +170785281216,213,0 +170785281263,214,0 +170785281311,213,0 +170785281359,214,0 +170785281407,213,0 +170785281457,213,0 +170785281506,213,0 +170785281556,213,0 +170785281604,213,0 +170785281652,213,0 +170785281700,213,0 +170785281748,213,0 +170785281795,213,0 +170785281843,213,0 +170785281891,213,0 +170785281939,213,0 +170785281989,213,0 +170785282036,213,0 +170785282084,213,0 +170785282134,214,0 +170785282182,214,0 +170785282230,214,0 +170785282278,213,0 +170785282327,213,0 +170785282375,213,0 +170785282425,213,0 +170785282473,213,0 +170785282521,213,0 +170785282569,212,0 +170785282617,213,0 +170785282665,213,0 +170785282713,213,0 +170785282761,213,0 +170785282809,213,0 +170785282856,213,0 +170785282904,213,0 +170785282952,213,0 +170785283002,213,0 +170785283051,213,0 +170785283101,214,0 +170785283150,213,0 +170785283198,214,0 +170785283248,214,0 +170785283297,214,0 +170785283347,213,0 +170785283396,212,0 +170785283444,213,0 +170785283492,212,0 +170785283540,213,0 +170785283588,213,0 +170785283638,213,0 +170785283686,213,0 +170785283734,213,0 +170785283783,213,0 +170785283831,213,0 +170785283879,213,0 +170785283928,213,0 +170785283978,213,0 +170785284027,213,0 +170785284077,213,0 +170785284125,214,0 +170785284173,214,0 +170785284221,214,0 +170785284270,213,0 +170785284320,212,0 +170785284367,213,0 +170785284415,212,0 +170785284463,213,0 +170785284511,212,0 +170785284559,213,0 +170785284609,213,0 +170785284657,213,0 +170785284704,213,0 +170785284754,213,0 +170785284804,213,0 +170785284853,213,0 +170785284901,213,0 +170785284949,213,0 +170785284999,213,0 +170785285048,213,0 +170785285096,213,0 +170785285144,214,0 +170785285192,213,0 +170785285240,212,0 +170785285288,213,0 +170785285337,213,0 +170785285385,213,0 +170785285435,213,0 +170785285484,213,0 +170785285534,213,0 +170785285582,213,0 +170785285631,213,0 +170785285679,213,0 +170785285727,213,0 +170785285777,213,0 +170785285825,213,0 +170785285874,213,0 +170785285922,213,0 +170785285970,213,0 +170785286020,213,0 +170785286069,214,0 +170785286119,213,0 +170785286167,212,0 +170785286216,213,0 +170785286264,213,0 +170785286312,212,0 +170785286361,213,0 +170785286409,213,0 +170785286459,213,0 +170785286509,213,0 +170785286556,213,0 +170785286604,213,0 +170785286652,213,0 +170785286702,213,0 +170785286750,213,0 +170785286798,213,0 +170785286847,213,0 +170785286895,213,0 +170785286945,214,0 +170785286994,214,0 +170785287042,213,0 +170785287090,213,0 +170785287138,213,0 +170785287187,213,0 +170785287237,213,0 +170785287285,213,0 +170785287334,213,0 +170785287384,213,0 +170785287432,213,0 +170785287480,213,0 +170785287528,213,0 +170785287577,213,0 +170785287625,213,0 +170785287675,213,0 +170785287723,214,0 +170785287771,213,0 +170785287819,214,0 +170785287868,213,0 +170785287916,214,0 +170785287964,213,0 +170785288012,213,0 +170785288060,213,0 +170785288108,213,0 +170785288157,213,0 +170785288205,213,0 +170785288253,213,0 +170785288301,214,0 +170785288349,213,0 +170785288397,214,0 +170785288445,214,0 +170785288493,214,0 +170785288541,214,0 +170785288590,214,0 +170785288638,214,0 +170785288688,214,0 +170785288737,214,0 +170785288787,214,0 +170785288836,214,0 +170785288884,213,0 +170785288932,213,0 +170785288980,213,0 +170785289030,213,0 +170785289077,213,0 +170785289127,213,0 +170785289175,213,0 +170785289225,213,0 +170785289274,213,0 +170785289322,214,0 +170785289372,214,0 +170785289421,214,0 +170785289470,214,0 +170785289518,213,0 +170785289566,214,0 +170785289614,214,0 +170785289662,214,0 +170785289710,214,0 +170785289760,213,0 +170785289809,213,0 +170785289857,213,0 +170785289905,213,0 +170785289954,213,0 +170785290004,213,0 +170785290052,213,0 +170785290101,213,0 +170785290151,213,0 +170785290199,213,0 +170785290247,213,0 +170785290295,213,0 +170785290343,214,0 +170785290392,214,0 +170785290440,214,0 +170785290488,214,0 +170785290536,214,0 +170785290585,214,0 +170785290633,214,0 +170785290681,214,0 +170785290729,214,0 +170785290777,213,0 +170785290826,212,0 +170785290874,212,0 +170785290922,212,0 +170785290970,213,0 +170785291018,213,0 +170785291068,213,0 +170785291117,213,0 +170785291165,213,0 +170785291215,213,0 +170785291263,213,0 +170785291312,213,0 +170785291360,213,0 +170785291408,213,0 +170785291457,213,0 +170785291507,213,0 +170785291555,213,0 +170785291604,214,0 +170785291654,214,0 +170785291702,213,0 +170785291751,213,0 +170785291799,213,0 +170785291848,213,0 +170785291896,212,0 +170785291946,212,0 +170785291994,213,0 +170785292042,213,0 +170785292090,213,0 +170785292137,213,0 +170785292185,213,0 +170785292233,213,0 +170785292281,213,0 +170785292329,213,0 +170785292377,213,0 +170785292424,213,0 +170785292472,213,0 +170785292520,213,0 +170785292568,214,0 +170785292616,213,0 +170785292665,213,0 +170785292713,213,0 +170785292761,213,0 +170785292809,213,0 +170785292859,213,0 +170785292908,213,0 +170785292958,213,0 +170785293006,213,0 +170785293054,213,0 +170785293103,213,0 +170785293151,213,0 +170785293200,213,0 +170785293248,213,0 +170785293296,214,0 +170785293346,214,0 +170785293394,214,0 +170785293442,214,0 +170785293490,214,0 +170785293538,213,0 +170785293586,213,0 +170785293633,213,0 +170785293681,213,0 +170785293729,213,0 +170785293777,213,0 +170785293825,213,0 +170785293873,213,0 +170785293921,213,0 +170785293971,213,0 +170785294019,213,0 +170785294066,213,0 +170785294114,213,0 +170785294162,214,0 +170785294212,214,0 +170785294260,214,0 +170785294308,214,0 +170785294357,214,0 +170785294405,214,0 +170785294453,214,0 +170785294501,213,0 +170785294549,213,0 +170785294599,213,0 +170785294647,213,0 +170785294696,213,0 +170785294745,213,0 +170785294795,213,0 +170785294843,213,0 +170785294891,213,0 +170785294939,213,0 +170785294987,213,0 +170785295034,214,0 +170785295082,213,0 +170785295130,214,0 +170785295178,213,0 +170785295227,213,0 +170785295275,213,0 +170785295323,213,0 +170785295371,213,0 +170785295420,212,0 +170785295470,213,0 +170785295518,212,0 +170785295567,213,0 +170785295615,213,0 +170785295664,213,0 +170785295714,213,0 +170785295763,213,0 +170785295811,213,0 +170785295861,213,0 +170785295909,213,0 +170785295956,213,0 +170785296004,213,0 +170785296052,213,0 +170785296100,213,0 +170785296148,213,0 +170785296198,214,0 +170785296247,213,0 +170785296295,213,0 +170785296344,213,0 +170785296392,212,0 +170785296440,212,0 +170785296488,212,0 +170785296536,212,0 +170785296585,212,0 +170785296633,212,0 +170785296683,212,0 +170785296731,213,0 +170785296779,212,0 +170785296828,213,0 +170785296878,213,0 +170785296927,213,0 +170785296977,213,0 +170785297025,213,0 +170785297073,213,0 +170785297121,213,0 +170785297168,213,0 +170785297218,213,0 +170785297266,213,0 +170785297315,213,0 +170785297363,213,0 +170785297411,213,0 +170785297459,213,0 +170785297507,213,0 +170785297555,213,0 +170785297604,213,0 +170785297652,213,0 +170785297702,213,0 +170785297750,213,0 +170785297798,213,0 +170785297846,213,0 +170785297895,213,0 +170785297943,213,0 +170785297991,213,0 +170785298041,214,0 +170785298090,214,0 +170785298140,214,0 +170785298187,213,0 +170785298237,213,0 +170785298286,213,0 +170785298334,213,0 +170785298382,212,0 +170785298432,213,0 +170785298481,213,0 +170785298529,213,0 +170785298579,213,0 +170785298627,213,0 +170785298674,213,0 +170785298724,213,0 +170785298772,213,0 +170785298821,213,0 +170785298869,213,0 +170785298917,213,0 +170785298966,213,0 +170785299016,213,0 +170785299064,214,0 +170785299113,213,0 +170785299161,212,0 +170785299211,213,0 +170785299260,213,0 +170785299308,212,0 +170785299356,213,0 +170785299406,212,0 +170785299455,213,0 +170785299503,213,0 +170785299553,213,0 +170785299602,213,0 +170785299650,213,0 +170785299698,213,0 +170785299746,213,0 +170785299795,213,0 +170785299843,213,0 +170785299891,214,0 +170785299939,213,0 +170785299987,213,0 +170785300035,213,0 +170785300083,213,0 +170785300131,213,0 +170785300179,213,0 +170785300227,213,0 +170785300275,213,0 +170785300323,213,0 +170785300372,213,0 +170785300420,213,0 +170785300468,213,0 +170785300516,213,0 +170785300564,213,0 +170785300612,213,0 +170785300660,213,0 +170785300709,213,0 +170785300759,213,0 +170785300807,213,0 +170785300855,214,0 +170785300903,214,0 +170785300952,213,0 +170785301000,212,0 +170785301048,213,0 +170785301097,213,0 +170785301147,213,0 +170785301195,213,0 +170785301243,213,0 +170785301291,213,0 +170785301339,213,0 +170785301387,213,0 +170785301435,213,0 +170785301484,213,0 +170785301532,213,0 +170785301580,213,0 +170785301629,213,0 +170785301677,213,0 +170785301725,213,0 +170785301773,213,0 +170785301821,213,0 +170785301869,214,0 +170785301917,213,0 +170785301965,213,0 +170785302013,213,0 +170785302060,213,0 +170785302110,213,0 +170785302159,213,0 +170785302207,213,0 +170785302255,213,0 +170785302305,213,0 +170785302354,213,0 +170785302402,213,0 +170785302450,213,0 +170785302498,213,0 +170785302546,213,0 +170785302594,214,0 +170785302642,213,0 +170785302691,214,0 +170785302739,213,0 +170785302789,213,0 +170785302838,213,0 +170785302886,213,0 +170785302936,213,0 +170785302984,213,0 +170785303033,213,0 +170785303083,213,0 +170785303131,213,0 +170785303180,213,0 +170785303228,213,0 +170785303276,213,0 +170785303326,213,0 +170785303373,213,0 +170785303423,213,0 +170785303472,214,0 +170785303520,214,0 +170785303568,214,0 +170785303616,214,0 +170785303666,214,0 +170785303714,213,0 +170785303763,213,0 +170785303811,213,0 +170785303861,213,0 +170785303910,213,0 +170785303958,213,0 +170785304007,213,0 +170785304055,213,0 +170785304103,213,0 +170785304153,213,0 +170785304201,213,0 +170785304249,213,0 +170785304298,213,0 +170785304346,214,0 +170785304394,214,0 +170785304442,214,0 +170785304490,213,0 +170785304538,214,0 +170785304587,214,0 +170785304635,213,0 +170785304683,213,0 +170785304731,213,0 +170785304780,213,0 +170785304830,213,0 +170785304878,213,0 +170785304926,213,0 +170785304974,213,0 +170785305021,213,0 +170785305069,213,0 +170785305117,213,0 +170785305165,213,0 +170785305213,213,0 +170785305263,214,0 +170785305312,213,0 +170785305362,214,0 +170785305410,214,0 +170785305458,214,0 +170785305507,214,0 +170785305557,214,0 +170785305604,213,0 +170785305652,213,0 +170785305700,213,0 +170785305748,213,0 +170785305796,213,0 +170785305844,213,0 +170785305892,213,0 +170785305940,213,0 +170785305988,213,0 +170785306036,213,0 +170785306085,213,0 +170785306133,213,0 +170785306181,213,0 +170785306231,213,0 +170785306279,214,0 +170785306327,214,0 +170785306375,214,0 +170785306423,213,0 +170785306472,213,0 +170785306520,214,0 +170785306570,213,0 +170785306617,212,0 +170785306667,213,0 +170785306715,213,0 +170785306763,213,0 +170785306811,213,0 +170785306860,213,0 +170785306908,213,0 +170785306956,213,0 +170785307004,213,0 +170785307052,213,0 +170785307101,213,0 +170785307149,213,0 +170785307197,214,0 +170785307245,214,0 +170785307295,214,0 +170785307342,214,0 +170785307390,214,0 +170785307438,213,0 +170785307486,213,0 +170785307536,213,0 +170785307585,213,0 +170785307635,213,0 +170785307683,213,0 +170785307731,213,0 +170785307778,213,0 +170785307826,213,0 +170785307874,213,0 +170785307924,213,0 +170785307973,213,0 +170785308021,213,0 +170785308069,213,0 +170785308117,214,0 +170785308164,214,0 +170785308212,214,0 +170785308262,214,0 +170785308310,214,0 +170785308359,214,0 +170785308407,213,0 +170785308455,213,0 +170785308503,213,0 +170785308553,212,0 +170785308602,213,0 +170785308650,213,0 +170785308698,213,0 +170785308746,213,0 +170785308794,213,0 +170785308843,213,0 +170785308891,213,0 +170785308939,213,0 +170785308987,213,0 +170785309036,213,0 +170785309086,214,0 +170785309133,213,0 +170785309181,214,0 +170785309229,214,0 +170785309277,214,0 +170785309325,213,0 +170785309375,212,0 +170785309423,213,0 +170785309472,213,0 +170785309520,213,0 +170785309568,213,0 +170785309616,213,0 +170785309665,213,0 +170785309713,213,0 +170785309761,213,0 +170785309809,213,0 +170785309857,213,0 +170785309905,213,0 +170785309954,213,0 +170785310002,213,0 +170785310052,214,0 +170785310099,214,0 +170785310147,214,0 +170785310195,213,0 +170785310245,213,0 +170785310294,213,0 +170785310344,213,0 +170785310392,213,0 +170785310439,213,0 +170785310487,213,0 +170785310535,213,0 +170785310585,213,0 +170785310632,214,0 +170785310680,213,0 +170785310730,214,0 +170785310778,214,0 +170785310825,214,0 +170785310875,213,0 +170785310923,213,0 +170785310972,214,0 +170785311022,214,0 +170785311070,214,0 +170785311119,214,0 +170785311167,214,0 +170785311215,213,0 +170785311265,213,0 +170785311312,213,0 +170785311360,213,0 +170785311410,213,0 +170785311459,213,0 +170785311507,213,0 +170785311555,213,0 +170785311603,214,0 +170785311652,214,0 +170785311700,214,0 +170785311750,214,0 +170785311798,214,0 +170785311846,214,0 +170785311895,214,0 +170785311943,214,0 +170785311993,214,0 +170785312041,214,0 +170785312088,213,0 +170785312136,213,0 +170785312186,213,0 +170785312235,212,0 +170785312285,213,0 +170785312334,213,0 +170785312382,213,0 +170785312430,213,0 +170785312478,213,0 +170785312528,213,0 +170785312577,213,0 +170785312625,213,0 +170785312673,213,0 +170785312721,214,0 +170785312771,214,0 +170785312818,214,0 +170785312868,214,0 +170785312916,214,0 +170785312964,214,0 +170785313012,214,0 +170785313060,213,0 +170785313108,213,0 +170785313157,212,0 +170785313207,213,0 +170785313255,213,0 +170785313304,213,0 +170785313352,213,0 +170785313402,213,0 +170785313450,213,0 +170785313498,213,0 +170785313546,213,0 +170785313595,213,0 +170785313643,213,0 +170785313691,213,0 +170785313739,213,0 +170785313788,213,0 +170785313836,213,0 +170785313884,213,0 +170785313932,214,0 +170785313980,213,0 +170785314028,213,0 +170785314076,213,0 +170785314123,213,0 +170785314171,213,0 +170785314219,213,0 +170785314267,213,0 +170785314315,213,0 +170785314363,213,0 +170785314410,213,0 +170785314458,213,0 +170785314506,213,0 +170785314554,213,0 +170785314603,213,0 +170785314653,213,0 +170785314702,214,0 +170785314750,214,0 +170785314799,214,0 +170785314847,214,0 +170785314896,213,0 +170785314946,213,0 +170785314995,212,0 +170785315045,213,0 +170785315094,213,0 +170785315142,213,0 +170785315192,213,0 +170785315240,213,0 +170785315289,213,0 +170785315337,213,0 +170785315385,213,0 +170785315433,213,0 +170785315481,213,0 +170785315529,213,0 +170785315577,213,0 +170785315625,213,0 +170785315673,213,0 +170785315721,213,0 +170785315769,214,0 +170785315818,213,0 +170785315866,212,0 +170785315914,212,0 +170785315963,213,0 +170785316011,212,0 +170785316059,213,0 +170785316109,213,0 +170785316157,213,0 +170785316205,213,0 +170785316254,213,0 +170785316304,213,0 +170785316353,213,0 +170785316401,213,0 +170785316450,213,0 +170785316498,213,0 +170785316548,213,0 +170785316596,213,0 +170785316644,213,0 +170785316692,213,0 +170785316739,213,0 +170785316789,213,0 +170785316838,213,0 +170785316886,213,0 +170785316934,213,0 +170785316982,213,0 +170785317031,213,0 +170785317079,213,0 +170785317127,213,0 +170785317175,213,0 +170785317223,213,0 +170785317271,213,0 +170785317319,213,0 +170785317367,213,0 +170785317416,213,0 +170785317464,213,0 +170785317514,213,0 +170785317563,213,0 +170785317613,213,0 +170785317661,214,0 +170785317709,213,0 +170785317758,212,0 +170785317806,213,0 +170785317856,213,0 +170785317903,213,0 +170785317951,213,0 +170785318001,213,0 +170785318049,213,0 +170785318098,213,0 +170785318146,213,0 +170785318194,213,0 +170785318241,213,0 +170785318289,214,0 +170785318339,214,0 +170785318388,213,0 +170785318436,214,0 +170785318484,214,0 +170785318533,214,0 +170785318583,214,0 +170785318631,213,0 +170785318679,213,0 +170785318726,213,0 +170785318774,213,0 +170785318822,213,0 +170785318870,213,0 +170785318918,213,0 +170785318967,213,0 +170785319015,213,0 +170785319063,213,0 +170785319112,213,0 +170785319160,213,0 +170785319210,213,0 +170785319259,213,0 +170785319307,214,0 +170785319355,214,0 +170785319403,214,0 +170785319452,214,0 +170785319500,214,0 +170785319550,213,0 +170785319598,213,0 +170785319646,213,0 +170785319695,213,0 +170785319743,213,0 +170785319793,213,0 +170785319841,213,0 +170785319890,213,0 +170785319938,213,0 +170785319988,213,0 +170785320036,213,0 +170785320085,213,0 +170785320133,214,0 +170785320182,214,0 +170785320230,214,0 +170785320278,214,0 +170785320326,214,0 +170785320375,213,0 +170785320425,214,0 +170785320473,213,0 +170785320522,213,0 +170785320570,213,0 +170785320619,213,0 +170785320667,213,0 +170785320715,213,0 +170785320763,213,0 +170785320813,213,0 +170785320860,213,0 +170785320908,213,0 +170785320956,213,0 +170785321004,213,0 +170785321052,214,0 +170785321100,214,0 +170785321147,214,0 +170785321195,214,0 +170785321243,214,0 +170785321291,214,0 +170785321339,214,0 +170785321387,213,0 +170785321436,213,0 +170785321484,213,0 +170785321532,213,0 +170785321580,213,0 +170785321628,213,0 +170785321678,213,0 +170785321726,213,0 +170785321773,213,0 +170785321821,213,0 +170785321869,213,0 +170785321919,213,0 +170785321968,214,0 +170785322018,213,0 +170785322066,214,0 +170785322116,214,0 +170785322165,214,0 +170785322213,213,0 +170785322262,214,0 +170785322310,213,0 +170785322358,212,0 +170785322406,213,0 +170785322453,213,0 +170785322501,213,0 +170785322549,213,0 +170785322597,213,0 +170785322645,213,0 +170785322692,213,0 +170785322740,213,0 +170785322788,213,0 +170785322836,213,0 +170785322884,213,0 +170785322931,213,0 +170785322981,213,0 +170785323029,213,0 +170785323076,213,0 +170785323126,213,0 +170785323174,213,0 +170785323221,214,0 +170785323269,213,0 +170785323317,213,0 +170785323365,212,0 +170785323413,213,0 +170785323460,213,0 +170785323510,213,0 +170785323558,213,0 +170785323606,213,0 +170785323653,213,0 +170785323703,213,0 +170785323752,213,0 +170785323802,213,0 +170785323851,213,0 +170785323899,213,0 +170785323947,213,0 +170785323995,213,0 +170785324045,213,0 +170785324094,214,0 +170785324144,213,0 +170785324192,213,0 +170785324241,213,0 +170785324289,212,0 +170785324337,213,0 +170785324385,213,0 +170785324435,213,0 +170785324484,213,0 +170785324532,213,0 +170785324580,213,0 +170785324628,213,0 +170785324676,213,0 +170785324726,213,0 +170785324773,213,0 +170785324821,213,0 +170785324869,213,0 +170785324919,213,0 +170785324966,213,0 +170785325016,213,0 +170785325065,213,0 +170785325113,213,0 +170785325161,212,0 +170785325209,212,0 +170785325257,212,0 +170785325305,213,0 +170785325354,213,0 +170785325402,213,0 +170785325452,213,0 +170785325499,213,0 +170785325549,213,0 +170785325597,213,0 +170785325645,213,0 +170785325693,213,0 +170785325741,213,0 +170785325788,213,0 +170785325838,213,0 +170785325886,213,0 +170785325934,213,0 +170785325983,213,0 +170785326033,213,0 +170785326082,213,0 +170785326130,212,0 +170785326178,213,0 +170785326226,213,0 +170785326274,212,0 +170785326324,213,0 +170785326371,213,0 +170785326419,213,0 +170785326467,213,0 +170785326515,213,0 +170785326564,213,0 +170785326612,213,0 +170785326660,213,0 +170785326710,213,0 +170785326757,213,0 +170785326805,213,0 +170785326853,213,0 +170785326903,213,0 +170785326951,213,0 +170785326998,213,0 +170785327046,212,0 +170785327094,212,0 +170785327142,213,0 +170785327190,213,0 +170785327239,213,0 +170785327287,213,0 +170785327335,213,0 +170785327383,213,0 +170785327431,213,0 +170785327479,213,0 +170785327528,213,0 +170785327576,213,0 +170785327624,213,0 +170785327672,214,0 +170785327720,213,0 +170785327769,213,0 +170785327817,213,0 +170785327865,213,0 +170785327913,213,0 +170785327963,213,0 +170785328012,213,0 +170785328062,213,0 +170785328109,213,0 +170785328157,213,0 +170785328205,213,0 +170785328254,213,0 +170785328302,213,0 +170785328352,213,0 +170785328401,213,0 +170785328449,213,0 +170785328497,213,0 +170785328545,213,0 +170785328595,213,0 +170785328643,213,0 +170785328691,214,0 +170785328740,214,0 +170785328790,213,0 +170785328837,213,0 +170785328885,213,0 +170785328933,212,0 +170785328981,213,0 +170785329029,213,0 +170785329077,213,0 +170785329125,213,0 +170785329173,213,0 +170785329221,213,0 +170785329268,213,0 +170785329316,213,0 +170785329364,213,0 +170785329412,213,0 +170785329460,213,0 +170785329510,213,0 +170785329558,213,0 +170785329607,213,0 +170785329655,213,0 +170785329703,214,0 +170785329753,213,0 +170785329802,213,0 +170785329852,213,0 +170785329901,212,0 +170785329949,212,0 +170785329997,212,0 +170785330045,213,0 +170785330094,213,0 +170785330142,213,0 +170785330190,213,0 +170785330240,213,0 +170785330288,213,0 +170785330335,213,0 +170785330383,213,0 +170785330431,213,0 +170785330479,213,0 +170785330529,213,0 +170785330578,213,0 +170785330628,213,0 +170785330677,214,0 +170785330725,213,0 +170785330773,213,0 +170785330821,212,0 +170785330870,212,0 +170785330918,213,0 +170785330966,213,0 +170785331014,212,0 +170785331063,213,0 +170785331113,213,0 +170785331161,213,0 +170785331209,213,0 +170785331256,213,0 +170785331306,213,0 +170785331355,213,0 +170785331403,213,0 +170785331451,213,0 +170785331499,213,0 +170785331548,213,0 +170785331598,213,0 +170785331646,213,0 +170785331694,213,0 +170785331743,213,0 +170785331791,213,0 +170785331839,213,0 +170785331887,213,0 +170785331935,213,0 +170785331984,213,0 +170785332033,213,0 +170785332081,213,0 +170785332129,213,0 +170785332179,213,0 +170785332228,213,0 +170785332278,214,0 +170785332327,214,0 +170785332375,213,0 +170785332423,214,0 +170785332471,214,0 +170785332520,214,0 +170785332568,213,0 +170785332616,213,0 +170785332665,213,0 +170785332713,213,0 +170785332761,213,0 +170785332809,213,0 +170785332857,213,0 +170785332905,213,0 +170785332953,214,0 +170785333001,213,0 +170785333048,214,0 +170785333096,214,0 +170785333144,214,0 +170785333194,214,0 +170785333242,214,0 +170785333291,214,0 +170785333339,214,0 +170785333389,213,0 +170785333437,214,0 +170785333486,213,0 +170785333535,213,0 +170785333583,213,0 +170785333631,213,0 +170785333679,214,0 +170785333727,214,0 +170785333776,214,0 +170785333826,213,0 +170785333874,214,0 +170785333921,214,0 +170785333969,214,0 +170785334019,214,0 +170785334067,214,0 +170785334115,214,0 +170785334163,214,0 +170785334212,214,0 +170785334260,214,0 +170785334308,214,0 +170785334356,214,0 +170785334404,213,0 +170785334452,213,0 +170785334500,213,0 +170785334548,213,0 +170785334595,213,0 +170785334643,213,0 +170785334691,213,0 +170785334739,213,0 +170785334789,213,0 +170785334838,213,0 +170785334888,213,0 +170785334936,214,0 +170785334985,214,0 +170785335035,214,0 +170785335083,214,0 +170785335131,214,0 +170785335180,214,0 +170785335230,214,0 +170785335278,213,0 +170785335327,214,0 +170785335377,213,0 +170785335426,213,0 +170785335476,213,0 +170785335525,213,0 +170785335573,213,0 +170785335621,213,0 +170785335669,213,0 +170785335717,213,0 +170785335765,213,0 +170785335812,213,0 +170785335860,213,0 +170785335908,214,0 +170785335958,213,0 +170785336005,213,0 +170785336053,214,0 +170785336101,213,0 +170785336151,213,0 +170785336199,213,0 +170785336248,214,0 +170785336296,213,0 +170785336344,213,0 +170785336393,212,0 +170785336441,213,0 +170785336491,213,0 +170785336538,213,0 +170785336586,213,0 +170785336634,213,0 +170785336682,213,0 +170785336732,213,0 +170785336781,213,0 +170785336829,214,0 +170785336877,213,0 +170785336926,214,0 +170785336974,214,0 +170785337023,214,0 +170785337073,214,0 +170785337121,214,0 +170785337169,213,0 +170785337217,213,0 +170785337265,212,0 +170785337312,213,0 +170785337362,213,0 +170785337412,213,0 +170785337460,213,0 +170785337509,213,0 +170785337559,213,0 +170785337608,213,0 +170785337656,213,0 +170785337704,213,0 +170785337753,213,0 +170785337801,213,0 +170785337851,213,0 +170785337899,214,0 +170785337947,214,0 +170785337995,214,0 +170785338043,214,0 +170785338092,214,0 +170785338142,213,0 +170785338191,213,0 +170785338239,213,0 +170785338287,213,0 +170785338335,213,0 +170785338383,213,0 +170785338431,213,0 +170785338479,213,0 +170785338527,213,0 +170785338575,213,0 +170785338623,213,0 +170785338672,213,0 +170785338722,213,0 +170785338770,213,0 +170785338818,213,0 +170785338867,214,0 +170785338915,213,0 +170785338963,214,0 +170785339013,214,0 +170785339061,213,0 +170785339108,213,0 +170785339158,212,0 +170785339208,213,0 +170785339257,213,0 +170785339305,213,0 +170785339353,213,0 +170785339401,213,0 +170785339449,213,0 +170785339497,213,0 +170785339545,213,0 +170785339592,213,0 +170785339642,213,0 +170785339691,213,0 +170785339741,213,0 +170785339789,213,0 +170785339838,214,0 +170785339886,214,0 +170785339934,214,0 +170785339982,213,0 +170785340030,213,0 +170785340079,213,0 +170785340127,213,0 +170785340175,212,0 +170785340224,213,0 +170785340272,213,0 +170785340322,213,0 +170785340370,213,0 +170785340418,213,0 +170785340466,213,0 +170785340515,213,0 +170785340563,213,0 +170785340613,213,0 +170785340661,213,0 +170785340708,213,0 +170785340758,213,0 +170785340807,213,0 +170785340855,213,0 +170785340905,213,0 +170785340953,213,0 +170785341002,213,0 +170785341050,213,0 +170785341098,213,0 +170785341146,214,0 +170785341194,214,0 +170785341242,214,0 +170785341291,213,0 +170785341339,213,0 +170785341387,213,0 +170785341435,213,0 +170785341483,213,0 +170785341533,213,0 +170785341581,213,0 +170785341630,213,0 +170785341678,213,0 +170785341728,213,0 +170785341776,213,0 +170785341823,213,0 +170785341871,213,0 +170785341919,213,0 +170785341967,213,0 +170785342017,213,0 +170785342065,213,0 +170785342114,213,0 +170785342164,214,0 +170785342212,214,0 +170785342261,214,0 +170785342311,213,0 +170785342359,212,0 +170785342407,212,0 +170785342455,213,0 +170785342502,213,0 +170785342550,213,0 +170785342600,213,0 +170785342648,213,0 +170785342696,213,0 +170785342744,213,0 +170785342792,213,0 +170785342840,213,0 +170785342887,213,0 +170785342935,213,0 +170785342983,213,0 +170785343033,213,0 +170785343081,213,0 +170785343130,213,0 +170785343180,214,0 +170785343228,214,0 +170785343276,213,0 +170785343324,213,0 +170785343372,212,0 +170785343421,213,0 +170785343471,213,0 +170785343520,213,0 +170785343570,213,0 +170785343619,213,0 +170785343669,213,0 +170785343718,213,0 +170785343768,213,0 +170785343817,213,0 +170785343865,214,0 +170785343913,214,0 +170785343961,214,0 +170785344009,214,0 +170785344059,213,0 +170785344107,214,0 +170785344154,213,0 +170785344202,213,0 +170785344250,213,0 +170785344298,213,0 +170785344346,213,0 +170785344394,213,0 +170785344442,213,0 +170785344492,213,0 +170785344539,213,0 +170785344589,213,0 +170785344637,213,0 +170785344685,213,0 +170785344734,213,0 +170785344782,213,0 +170785344830,213,0 +170785344880,213,0 +170785344929,213,0 +170785344977,213,0 +170785345025,213,0 +170785345075,214,0 +170785345123,213,0 +170785345171,213,0 +170785345220,213,0 +170785345268,212,0 +170785345316,212,0 +170785345364,213,0 +170785345411,213,0 +170785345461,213,0 +170785345509,213,0 +170785345558,213,0 +170785345606,213,0 +170785345654,213,0 +170785345704,213,0 +170785345753,213,0 +170785345801,213,0 +170785345849,213,0 +170785345899,214,0 +170785345947,213,0 +170785345995,213,0 +170785346044,213,0 +170785346094,213,0 +170785346142,212,0 +170785346190,212,0 +170785346238,213,0 +170785346287,213,0 +170785346335,213,0 +170785346383,213,0 +170785346433,213,0 +170785346481,213,0 +170785346529,213,0 +170785346578,213,0 +170785346626,213,0 +170785346674,213,0 +170785346722,213,0 +170785346770,213,0 +170785346820,213,0 +170785346867,213,0 +170785346915,213,0 +170785346965,213,0 +170785347014,213,0 +170785347062,213,0 +170785347110,213,0 +170785347158,213,0 +170785347206,213,0 +170785347256,213,0 +170785347303,213,0 +170785347351,213,0 +170785347401,213,0 +170785347449,213,0 +170785347497,213,0 +170785347545,213,0 +170785347592,213,0 +170785347640,213,0 +170785347688,213,0 +170785347738,214,0 +170785347787,214,0 +170785347835,214,0 +170785347883,214,0 +170785347931,213,0 +170785347979,212,0 +170785348027,212,0 +170785348075,213,0 +170785348123,213,0 +170785348171,213,0 +170785348220,213,0 +170785348268,213,0 +170785348318,213,0 +170785348367,213,0 +170785348415,213,0 +170785348465,213,0 +170785348512,213,0 +170785348562,214,0 +170785348610,213,0 +170785348658,214,0 +170785348706,214,0 +170785348754,213,0 +170785348802,214,0 +170785348850,213,0 +170785348899,213,0 +170785348947,212,0 +170785348997,213,0 +170785349045,213,0 +170785349094,213,0 +170785349142,213,0 +170785349190,213,0 +170785349240,213,0 +170785349287,213,0 +170785349335,213,0 +170785349383,213,0 +170785349431,213,0 +170785349481,214,0 +170785349529,214,0 +170785349577,213,0 +170785349625,214,0 +170785349674,214,0 +170785349722,214,0 +170785349770,213,0 +170785349818,213,0 +170785349867,213,0 +170785349915,213,0 +170785349963,213,0 +170785350011,213,0 +170785350059,213,0 +170785350109,213,0 +170785350156,213,0 +170785350204,213,0 +170785350252,213,0 +170785350302,213,0 +170785350350,213,0 +170785350398,214,0 +170785350446,214,0 +170785350495,213,0 +170785350545,214,0 +170785350594,214,0 +170785350642,214,0 +170785350690,213,0 +170785350740,213,0 +170785350789,213,0 +170785350839,213,0 +170785350887,213,0 +170785350934,213,0 +170785350982,213,0 +170785351032,213,0 +170785351080,213,0 +170785351128,213,0 +170785351175,213,0 +170785351223,213,0 +170785351273,213,0 +170785351322,214,0 +170785351370,214,0 +170785351420,213,0 +170785351468,214,0 +170785351517,214,0 +170785351567,214,0 +170785351615,213,0 +170785351664,212,0 +170785351714,212,0 +170785351762,212,0 +170785351810,213,0 +170785351859,213,0 +170785351907,213,0 +170785351955,213,0 +170785352004,213,0 +170785352052,213,0 +170785352102,213,0 +170785352150,213,0 +170785352199,213,0 +170785352247,213,0 +170785352295,213,0 +170785352343,213,0 +170785352391,213,0 +170785352439,213,0 +170785352488,213,0 +170785352538,213,0 +170785352586,213,0 +170785352634,213,0 +170785352682,212,0 +170785352730,213,0 +170785352778,213,0 +170785352827,213,0 +170785352875,213,0 +170785352923,213,0 +170785352971,213,0 +170785353019,213,0 +170785353066,213,0 +170785353114,213,0 +170785353162,213,0 +170785353210,213,0 +170785353258,213,0 +170785353306,213,0 +170785353354,213,0 +170785353401,213,0 +170785353449,213,0 +170785353497,213,0 +170785353546,213,0 +170785353594,213,0 +170785353642,213,0 +170785353692,213,0 +170785353741,213,0 +170785353789,213,0 +170785353837,213,0 +170785353885,213,0 +170785353933,213,0 +170785353981,213,0 +170785354029,213,0 +170785354077,214,0 +170785354124,214,0 +170785354172,214,0 +170785354220,214,0 +170785354268,214,0 +170785354316,214,0 +170785354365,214,0 +170785354415,213,0 +170785354463,213,0 +170785354511,213,0 +170785354559,213,0 +170785354607,213,0 +170785354656,214,0 +170785354704,213,0 +170785354752,213,0 +170785354799,214,0 +170785354847,214,0 +170785354895,214,0 +170785354943,214,0 +170785354991,214,0 +170785355039,214,0 +170785355089,214,0 +170785355137,214,0 +170785355185,214,0 +170785355232,214,0 +170785355280,214,0 +170785355330,213,0 +170785355378,213,0 +170785355426,213,0 +170785355475,213,0 +170785355523,213,0 +170785355571,213,0 +170785355619,213,0 +170785355669,214,0 +170785355716,213,0 +170785355766,214,0 +170785355814,214,0 +170785355862,214,0 +170785355909,214,0 +170785355959,214,0 +170785356007,214,0 +170785356055,214,0 +170785356103,214,0 +170785356151,214,0 +170785356198,214,0 +170785356246,214,0 +170785356294,213,0 +170785356344,213,0 +170785356392,213,0 +170785356441,213,0 +170785356489,212,0 +170785356537,213,0 +170785356585,213,0 +170785356633,213,0 +170785356681,213,0 +170785356729,213,0 +170785356777,213,0 +170785356824,213,0 +170785356874,213,0 +170785356922,213,0 +170785356970,213,0 +170785357018,213,0 +170785357066,213,0 +170785357114,214,0 +170785357162,214,0 +170785357209,213,0 +170785357257,213,0 +170785357305,213,0 +170785357353,213,0 +170785357401,213,0 +170785357451,213,0 +170785357499,213,0 +170785357547,213,0 +170785357594,213,0 +170785357642,213,0 +170785357690,213,0 +170785357740,213,0 +170785357788,213,0 +170785357837,213,0 +170785357887,213,0 +170785357935,213,0 +170785357984,213,0 +170785358032,213,0 +170785358080,214,0 +170785358128,213,0 +170785358176,213,0 +170785358224,212,0 +170785358272,213,0 +170785358320,213,0 +170785358368,213,0 +170785358416,213,0 +170785358463,213,0 +170785358513,213,0 +170785358561,213,0 +170785358610,213,0 +170785358658,213,0 +170785358706,213,0 +170785358756,213,0 +170785358804,213,0 +170785358852,213,0 +170785358900,213,0 +170785358949,213,0 +170785358997,214,0 +170785359045,214,0 +170785359094,213,0 +170785359142,213,0 +170785359190,213,0 +170785359238,213,0 +170785359286,213,0 +170785359334,212,0 +170785359381,213,0 +170785359429,213,0 +170785359477,213,0 +170785359525,213,0 +170785359573,213,0 +170785359621,213,0 +170785359669,213,0 +170785359716,213,0 +170785359764,213,0 +170785359812,213,0 +170785359860,213,0 +170785359908,213,0 +170785359955,213,0 +170785360003,213,0 +170785360051,213,0 +170785360099,213,0 +170785360147,213,0 +170785360195,213,0 +170785360244,213,0 +170785360292,213,0 +170785360340,213,0 +170785360389,213,0 +170785360437,213,0 +170785360487,213,0 +170785360535,213,0 +170785360582,213,0 +170785360632,213,0 +170785360680,213,0 +170785360729,213,0 +170785360777,213,0 +170785360825,213,0 +170785360873,213,0 +170785360923,213,0 +170785360971,213,0 +170785361019,213,0 +170785361068,212,0 +170785361116,213,0 +170785361165,213,0 +170785361215,213,0 +170785361263,213,0 +170785361311,213,0 +170785361359,213,0 +170785361407,213,0 +170785361455,213,0 +170785361503,213,0 +170785361550,213,0 +170785361600,213,0 +170785361650,213,0 +170785361697,213,0 +170785361745,214,0 +170785361795,213,0 +170785361843,214,0 +170785361892,213,0 +170785361940,213,0 +170785361988,213,0 +170785362036,213,0 +170785362084,213,0 +170785362132,213,0 +170785362182,213,0 +170785362231,213,0 +170785362279,213,0 +170785362329,213,0 +170785362378,213,0 +170785362428,214,0 +170785362476,214,0 +170785362524,214,0 +170785362572,213,0 +170785362621,214,0 +170785362671,214,0 +170785362718,214,0 +170785362766,214,0 +170785362814,213,0 +170785362862,213,0 +170785362912,213,0 +170785362961,213,0 +170785363011,213,0 +170785363059,213,0 +170785363108,213,0 +170785363156,213,0 +170785363206,213,0 +170785363254,214,0 +170785363303,214,0 +170785363351,214,0 +170785363399,214,0 +170785363449,214,0 +170785363498,214,0 +170785363547,214,0 +170785363595,214,0 +170785363643,214,0 +170785363691,213,0 +170785363739,213,0 +170785363787,213,0 +170785363835,213,0 +170785363883,213,0 +170785363931,213,0 +170785363979,213,0 +170785364027,213,0 +170785364075,213,0 +170785364124,213,0 +170785364172,213,0 +170785364222,214,0 +170785364270,214,0 +170785364318,214,0 +170785364366,214,0 +170785364414,214,0 +170785364462,214,0 +170785364511,214,0 +170785364559,214,0 +170785364607,214,0 +170785364655,213,0 +170785364703,213,0 +170785364752,213,0 +170785364800,213,0 +170785364848,213,0 +170785364896,213,0 +170785364945,213,0 +170785364993,213,0 +170785365041,213,0 +170785365089,213,0 +170785365137,213,0 +170785365185,213,0 +170785365234,213,0 +170785365284,213,0 +170785365333,213,0 +170785365383,214,0 +170785365432,214,0 +170785365480,214,0 +170785365528,214,0 +170785365576,213,0 +170785365624,213,0 +170785365672,213,0 +170785365720,213,0 +170785365769,213,0 +170785365817,213,0 +170785365866,213,0 +170785365914,213,0 +170785365962,213,0 +170785366010,213,0 +170785366059,213,0 +170785366107,213,0 +170785366157,213,0 +170785366205,213,0 +170785366253,213,0 +170785366301,213,0 +170785366349,213,0 +170785366397,213,0 +170785366446,214,0 +170785366496,213,0 +170785366544,213,0 +170785366592,212,0 +170785366639,213,0 +170785366687,213,0 +170785366735,213,0 +170785366785,213,0 +170785366833,213,0 +170785366882,213,0 +170785366930,213,0 +170785366980,213,0 +170785367029,213,0 +170785367077,213,0 +170785367127,213,0 +170785367176,213,0 +170785367224,214,0 +170785367272,214,0 +170785367320,214,0 +170785367368,214,0 +170785367416,214,0 +170785367464,213,0 +170785367513,213,0 +170785367561,212,0 +170785367609,213,0 +170785367657,213,0 +170785367705,213,0 +170785367753,213,0 +170785367801,213,0 +170785367849,213,0 +170785367897,213,0 +170785367945,213,0 +170785367993,213,0 +170785368040,213,0 +170785368088,214,0 +170785368138,213,0 +170785368185,214,0 +170785368233,213,0 +170785368281,214,0 +170785368329,214,0 +170785368377,213,0 +170785368425,212,0 +170785368474,213,0 +170785368524,213,0 +170785368573,213,0 +170785368621,213,0 +170785368671,213,0 +170785368720,213,0 +170785368768,213,0 +170785368818,213,0 +170785368865,213,0 +170785368913,213,0 +170785368961,213,0 +170785369009,213,0 +170785369057,213,0 +170785369105,214,0 +170785369153,213,0 +170785369201,213,0 +170785369249,213,0 +170785369296,213,0 +170785369344,213,0 +170785369392,213,0 +170785369440,213,0 +170785369488,213,0 +170785369537,213,0 +170785369585,213,0 +170785369633,213,0 +170785369681,213,0 +170785369729,213,0 +170785369776,213,0 +170785369824,213,0 +170785369872,213,0 +170785369921,213,0 +170785369969,213,0 +170785370017,213,0 +170785370067,214,0 +170785370116,213,0 +170785370164,213,0 +170785370212,213,0 +170785370260,212,0 +170785370309,212,0 +170785370359,212,0 +170785370407,213,0 +170785370455,213,0 +170785370504,213,0 +170785370554,213,0 +170785370602,213,0 +170785370650,213,0 +170785370699,213,0 +170785370749,213,0 +170785370798,213,0 +170785370848,214,0 +170785370896,213,0 +170785370944,213,0 +170785370992,214,0 +170785371039,213,0 +170785371087,214,0 +170785371135,213,0 +170785371183,213,0 +170785371233,212,0 +170785371282,213,0 +170785371330,213,0 +170785371378,213,0 +170785371427,213,0 +170785371475,213,0 +170785371523,213,0 +170785371571,213,0 +170785371619,213,0 +170785371667,213,0 +170785371715,213,0 +170785371764,213,0 +170785371812,213,0 +170785371860,213,0 +170785371908,213,0 +170785371958,213,0 +170785372006,213,0 +170785372055,214,0 +170785372105,213,0 +170785372154,212,0 +170785372204,213,0 +170785372252,213,0 +170785372301,213,0 +170785372349,213,0 +170785372397,213,0 +170785372447,213,0 +170785372495,213,0 +170785372543,213,0 +170785372590,213,0 +170785372638,213,0 +170785372688,213,0 +170785372736,213,0 +170785372784,213,0 +170785372832,213,0 +170785372880,214,0 +170785372929,214,0 +170785372977,214,0 +170785373025,213,0 +170785373074,213,0 +170785373122,212,0 +170785373170,212,0 +170785373218,213,0 +170785373266,213,0 +170785373314,213,0 +170785373362,213,0 +170785373410,213,0 +170785373459,213,0 +170785373509,213,0 +170785373557,213,0 +170785373605,213,0 +170785373654,213,0 +170785373702,213,0 +170785373750,213,0 +170785373798,213,0 +170785373847,213,0 +170785373895,214,0 +170785373943,213,0 +170785373991,212,0 +170785374039,213,0 +170785374087,212,0 +170785374135,213,0 +170785374184,212,0 +170785374232,213,0 +170785374281,213,0 +170785374331,213,0 +170785374380,213,0 +170785374430,213,0 +170785374478,213,0 +170785374526,213,0 +170785374574,213,0 +170785374623,213,0 +170785374671,213,0 +170785374719,213,0 +170785374768,213,0 +170785374816,213,0 +170785374864,213,0 +170785374912,213,0 +170785374961,213,0 +170785375009,213,0 +170785375059,213,0 +170785375107,213,0 +170785375156,213,0 +170785375204,213,0 +170785375252,213,0 +170785375300,213,0 +170785375348,213,0 +170785375396,213,0 +170785375445,214,0 +170785375493,214,0 +170785375541,214,0 +170785375590,214,0 +170785375638,214,0 +170785375686,214,0 +170785375736,214,0 +170785375784,213,0 +170785375833,213,0 +170785375881,213,0 +170785375930,213,0 +170785375978,213,0 +170785376026,213,0 +170785376074,213,0 +170785376122,213,0 +170785376171,213,0 +170785376219,213,0 +170785376269,214,0 +170785376317,214,0 +170785376366,214,0 +170785376414,213,0 +170785376462,214,0 +170785376510,214,0 +170785376559,214,0 +170785376607,214,0 +170785376655,214,0 +170785376703,213,0 +170785376752,213,0 +170785376800,213,0 +170785376848,213,0 +170785376897,213,0 +170785376945,213,0 +170785376993,213,0 +170785377043,213,0 +170785377091,213,0 +170785377139,214,0 +170785377187,214,0 +170785377236,214,0 +170785377284,214,0 +170785377332,214,0 +170785377380,214,0 +170785377428,214,0 +170785377476,214,0 +170785377524,214,0 +170785377572,214,0 +170785377620,213,0 +170785377669,213,0 +170785377717,213,0 +170785377765,213,0 +170785377814,213,0 +170785377862,213,0 +170785377912,213,0 +170785377960,213,0 +170785378008,213,0 +170785378056,214,0 +170785378104,213,0 +170785378153,214,0 +170785378203,213,0 +170785378250,214,0 +170785378298,214,0 +170785378346,214,0 +170785378394,214,0 +170785378442,214,0 +170785378491,214,0 +170785378539,214,0 +170785378587,213,0 +170785378635,213,0 +170785378683,213,0 +170785378731,213,0 +170785378779,213,0 +170785378827,213,0 +170785378875,213,0 +170785378923,213,0 +170785378971,213,0 +170785379019,213,0 +170785379068,213,0 +170785379118,214,0 +170785379166,213,0 +170785379215,214,0 +170785379265,214,0 +170785379314,213,0 +170785379364,214,0 +170785379413,214,0 +170785379461,214,0 +170785379509,213,0 +170785379557,213,0 +170785379606,213,0 +170785379654,213,0 +170785379702,213,0 +170785379750,213,0 +170785379798,213,0 +170785379846,213,0 +170785379894,213,0 +170785379942,213,0 +170785379990,213,0 +170785380038,213,0 +170785380086,213,0 +170785380134,214,0 +170785380184,213,0 +170785380231,213,0 +170785380279,213,0 +170785380329,213,0 +170785380377,213,0 +170785380425,214,0 +170785380473,213,0 +170785380520,213,0 +170785380570,213,0 +170785380618,213,0 +170785380667,213,0 +170785380715,213,0 +170785380763,213,0 +170785380813,213,0 +170785380862,213,0 +170785380910,213,0 +170785380958,213,0 +170785381007,213,0 +170785381055,213,0 +170785381103,213,0 +170785381151,213,0 +170785381199,213,0 +170785381247,213,0 +170785381297,214,0 +170785381345,214,0 +170785381392,213,0 +170785381440,212,0 +170785381488,212,0 +170785381536,212,0 +170785381586,213,0 +170785381634,213,0 +170785381683,212,0 +170785381733,213,0 +170785381781,213,0 +170785381829,213,0 +170785381876,213,0 +170785381924,213,0 +170785381974,213,0 +170785382022,213,0 +170785382071,213,0 +170785382119,213,0 +170785382167,213,0 +170785382215,213,0 +170785382265,213,0 +170785382313,213,0 +170785382360,213,0 +170785382408,212,0 +170785382458,212,0 +170785382507,213,0 +170785382555,212,0 +170785382605,213,0 +170785382654,213,0 +170785382704,213,0 +170785382752,213,0 +170785382800,213,0 +170785382847,213,0 +170785382895,213,0 +170785382943,213,0 +170785382991,213,0 +170785383039,213,0 +170785383087,213,0 +170785383134,213,0 +170785383184,213,0 +170785383232,213,0 +170785383280,212,0 +170785383328,213,0 +170785383377,212,0 +170785383425,212,0 +170785383473,213,0 +170785383521,213,0 +170785383570,213,0 +170785383618,213,0 +170785383666,213,0 +170785383714,213,0 +170785383762,213,0 +170785383811,213,0 +170785383859,213,0 +170785383909,213,0 +170785383957,213,0 +170785384005,213,0 +170785384052,214,0 +170785384100,213,0 +170785384148,213,0 +170785384198,212,0 +170785384246,212,0 +170785384295,213,0 +170785384343,212,0 +170785384391,213,0 +170785384439,213,0 +170785384488,213,0 +170785384536,213,0 +170785384586,213,0 +170785384634,213,0 +170785384683,213,0 +170785384731,213,0 +170785384779,213,0 +170785384827,213,0 +170785384875,213,0 +170785384925,213,0 +170785384972,214,0 +170785385020,213,0 +170785385068,214,0 +170785385116,213,0 +170785385164,213,0 +170785385212,213,0 +170785385262,213,0 +170785385310,212,0 +170785385359,212,0 +170785385407,212,0 +170785385456,213,0 +170785385504,213,0 +170785385554,213,0 +170785385602,213,0 +170785385650,213,0 +170785385699,213,0 +170785385747,213,0 +170785385797,213,0 +170785385845,213,0 +170785385894,214,0 +170785385942,214,0 +170785385992,213,0 +170785386040,213,0 +170785386089,213,0 +170785386138,212,0 +170785386188,212,0 +170785386236,212,0 +170785386284,213,0 +170785386331,213,0 +170785386379,213,0 +170785386427,213,0 +170785386477,213,0 +170785386526,213,0 +170785386576,213,0 +170785386623,213,0 +170785386673,213,0 +170785386722,213,0 +170785386770,213,0 +170785386818,214,0 +170785386866,214,0 +170785386916,213,0 +170785386964,213,0 +170785387012,212,0 +170785387059,213,0 +170785387107,212,0 +170785387157,213,0 +170785387205,212,0 +170785387253,213,0 +170785387301,213,0 +170785387349,213,0 +170785387396,213,0 +170785387446,213,0 +170785387495,213,0 +170785387543,213,0 +170785387591,213,0 +170785387639,213,0 +170785387687,213,0 +170785387735,213,0 +170785387783,213,0 +170785387831,213,0 +170785387880,213,0 +170785387928,212,0 +170785387977,213,0 +170785388025,213,0 +170785388073,213,0 +170785388121,212,0 +170785388169,213,0 +170785388217,213,0 +170785388264,213,0 +170785388314,213,0 +170785388363,213,0 +170785388411,213,0 +170785388459,213,0 +170785388509,213,0 +170785388557,213,0 +170785388605,214,0 +170785388653,213,0 +170785388702,213,0 +170785388750,213,0 +170785388798,213,0 +170785388846,213,0 +170785388894,213,0 +170785388942,213,0 +170785388990,213,0 +170785389038,213,0 +170785389087,213,0 +170785389135,213,0 +170785389183,213,0 +170785389233,213,0 +170785389280,213,0 +170785389330,213,0 +170785389378,213,0 +170785389427,213,0 +170785389475,214,0 +170785389523,213,0 +170785389571,213,0 +170785389619,214,0 +170785389667,214,0 +170785389715,213,0 +170785389763,213,0 +170785389812,212,0 +170785389860,212,0 +170785389910,213,0 +170785389957,213,0 +170785390005,213,0 +170785390053,213,0 +170785390101,213,0 +170785390149,213,0 +170785390197,213,0 +170785390245,213,0 +170785390293,213,0 +170785390341,213,0 +170785390390,213,0 +170785390438,213,0 +170785390486,213,0 +170785390534,213,0 +170785390582,213,0 +170785390632,214,0 +170785390679,213,0 +170785390729,213,0 +170785390777,213,0 +170785390825,213,0 +170785390872,213,0 +170785390920,213,0 +170785390968,213,0 +170785391016,213,0 +170785391064,213,0 +170785391112,213,0 +170785391160,213,0 +170785391210,213,0 +170785391258,213,0 +170785391306,213,0 +170785391353,213,0 +170785391401,213,0 +170785391449,213,0 +170785391497,214,0 +170785391545,213,0 +170785391593,214,0 +170785391641,212,0 +170785391689,212,0 +170785391737,213,0 +170785391785,212,0 +170785391833,213,0 +170785391880,213,0 +170785391928,213,0 +170785391976,213,0 +170785392024,213,0 +170785392072,213,0 +170785392120,213,0 +170785392167,213,0 +170785392215,213,0 +170785392263,213,0 +170785392311,214,0 +170785392359,213,0 +170785392407,214,0 +170785392455,213,0 +170785392504,214,0 +170785392552,213,0 +170785392600,212,0 +170785392650,213,0 +170785392699,213,0 +170785392749,213,0 +170785392798,213,0 +170785392846,213,0 +170785392894,213,0 +170785392943,213,0 +170785392991,213,0 +170785393039,213,0 +170785393087,213,0 +170785393137,213,0 +170785393185,214,0 +170785393232,214,0 +170785393282,213,0 +170785393331,213,0 +170785393381,213,0 +170785393429,213,0 +170785393477,213,0 +170785393524,213,0 +170785393572,213,0 +170785393620,213,0 +170785393668,213,0 +170785393716,213,0 +170785393764,213,0 +170785393812,213,0 +170785393860,213,0 +170785393909,213,0 +170785393957,213,0 +170785394005,213,0 +170785394053,213,0 +170785394101,213,0 +170785394151,213,0 +170785394199,214,0 +170785394248,213,0 +170785394296,213,0 +170785394344,213,0 +170785394392,213,0 +170785394440,212,0 +170785394488,213,0 +170785394536,213,0 +170785394585,213,0 +170785394635,213,0 +170785394684,213,0 +170785394732,213,0 +170785394780,213,0 +170785394828,213,0 +170785394876,213,0 +170785394924,213,0 +170785394972,213,0 +170785395020,213,0 +170785395069,214,0 +170785395117,214,0 +170785395166,213,0 +170785395214,213,0 +170785395264,214,0 +170785395312,213,0 +170785395361,213,0 +170785395411,213,0 +170785395460,212,0 +170785395508,213,0 +170785395558,213,0 +170785395606,213,0 +170785395654,213,0 +170785395702,213,0 +170785395751,213,0 +170785395799,213,0 +170785395847,213,0 +170785395895,213,0 +170785395943,213,0 +170785395991,213,0 +170785396039,214,0 +170785396087,214,0 +170785396135,214,0 +170785396183,214,0 +170785396232,214,0 +170785396280,213,0 +170785396328,212,0 +170785396376,213,0 +170785396424,212,0 +170785396472,213,0 +170785396520,213,0 +170785396568,213,0 +170785396616,213,0 +170785396663,213,0 +170785396713,213,0 +170785396761,213,0 +170785396809,213,0 +170785396857,213,0 +170785396905,213,0 +170785396954,213,0 +170785397002,213,0 +170785397051,213,0 +170785397101,213,0 +170785397151,213,0 +170785397198,213,0 +170785397246,212,0 +170785397294,213,0 +170785397342,213,0 +170785397390,213,0 +170785397438,213,0 +170785397486,213,0 +170785397534,213,0 +170785397584,213,0 +170785397632,213,0 +170785397681,213,0 +170785397729,213,0 +170785397779,213,0 +170785397828,213,0 +170785397876,213,0 +170785397924,213,0 +170785397972,213,0 +170785398021,213,0 +170785398069,213,0 +170785398119,213,0 +170785398168,213,0 +170785398216,213,0 +170785398266,213,0 +170785398314,213,0 +170785398362,213,0 +170785398410,213,0 +170785398458,213,0 +170785398506,213,0 +170785398554,213,0 +170785398601,213,0 +170785398649,213,0 +170785398697,213,0 +170785398745,214,0 +170785398795,214,0 +170785398843,214,0 +170785398891,214,0 +170785398939,213,0 +170785398988,214,0 +170785399038,213,0 +170785399086,213,0 +170785399135,213,0 +170785399185,213,0 +170785399234,213,0 +170785399284,213,0 +170785399332,213,0 +170785399380,213,0 +170785399428,213,0 +170785399476,213,0 +170785399524,213,0 +170785399572,213,0 +170785399620,213,0 +170785399668,214,0 +170785399716,214,0 +170785399765,213,0 +170785399813,214,0 +170785399861,214,0 +170785399909,214,0 +170785399957,213,0 +170785400006,213,0 +170785400056,213,0 +170785400105,213,0 +170785400153,213,0 +170785400203,213,0 +170785400250,213,0 +170785400300,213,0 +170785400348,213,0 +170785400396,213,0 +170785400445,213,0 +170785400493,213,0 +170785400541,213,0 +170785400589,214,0 +170785400637,214,0 +170785400686,214,0 +170785400736,214,0 +170785400785,214,0 +170785400833,214,0 +170785400881,213,0 +170785400929,213,0 +170785400979,213,0 +170785401027,213,0 +170785401075,213,0 +170785401122,213,0 +170785401172,213,0 +170785401220,213,0 +170785401268,213,0 +170785401316,213,0 +170785401364,213,0 +170785401411,213,0 +170785401461,213,0 +170785401509,213,0 +170785401557,214,0 +170785401606,214,0 +170785401654,214,0 +170785401704,213,0 +170785401751,214,0 +170785401801,214,0 +170785401849,213,0 +170785401897,212,0 +170785401945,213,0 +170785401993,212,0 +170785402041,213,0 +170785402089,213,0 +170785402138,213,0 +170785402188,213,0 +170785402237,213,0 +170785402287,213,0 +170785402336,213,0 +170785402386,213,0 +170785402434,213,0 +170785402482,213,0 +170785402531,213,0 +170785402579,213,0 +170785402627,213,0 +170785402677,213,0 +170785402725,213,0 +170785402774,213,0 +170785402822,212,0 +170785402870,212,0 +170785402918,213,0 +170785402967,213,0 +170785403015,212,0 +170785403063,212,0 +170785403111,213,0 +170785403161,212,0 +170785403210,213,0 +170785403258,212,0 +170785403306,213,0 +170785403354,213,0 +170785403402,213,0 +170785403451,213,0 +170785403501,213,0 +170785403549,213,0 +170785403598,213,0 +170785403646,213,0 +170785403694,213,0 +170785403742,213,0 +170785403790,213,0 +170785403840,212,0 +170785403888,213,0 +170785403936,212,0 +170785403984,213,0 +170785404032,213,0 +170785404080,213,0 +170785404127,213,0 +170785404175,213,0 +170785404223,213,0 +170785404271,213,0 +170785404319,213,0 +170785404367,213,0 +170785404415,213,0 +170785404463,213,0 +170785404511,213,0 +170785404561,214,0 +170785404609,213,0 +170785404658,213,0 +170785404706,213,0 +170785404755,213,0 +170785404805,213,0 +170785404853,213,0 +170785404901,213,0 +170785404949,213,0 +170785404998,213,0 +170785405046,213,0 +170785405096,213,0 +170785405145,213,0 +170785405195,213,0 +170785405242,213,0 +170785405290,214,0 +170785405340,213,0 +170785405390,213,0 +170785405437,214,0 +170785405487,214,0 +170785405536,213,0 +170785405584,213,0 +170785405634,213,0 +170785405682,212,0 +170785405730,213,0 +170785405778,213,0 +170785405826,213,0 +170785405875,213,0 +170785405923,213,0 +170785405971,213,0 +170785406019,213,0 +170785406067,213,0 +170785406115,213,0 +170785406165,213,0 +170785406213,214,0 +170785406262,213,0 +170785406310,213,0 +170785406358,214,0 +170785406406,213,0 +170785406454,213,0 +170785406503,213,0 +170785406553,212,0 +170785406602,213,0 +170785406650,213,0 +170785406700,213,0 +170785406748,213,0 +170785406796,213,0 +170785406844,213,0 +170785406893,213,0 +170785406941,213,0 +170785406989,213,0 +170785407037,213,0 +170785407085,214,0 +170785407133,213,0 +170785407182,213,0 +170785407232,213,0 +170785407280,213,0 +170785407329,213,0 +170785407379,214,0 +170785407427,213,0 +170785407475,212,0 +170785407524,213,0 +170785407572,213,0 +170785407620,213,0 +170785407670,213,0 +170785407718,213,0 +170785407766,213,0 +170785407814,213,0 +170785407863,213,0 +170785407913,213,0 +170785407961,213,0 +170785408010,213,0 +170785408058,213,0 +170785408108,213,0 +170785408155,213,0 +170785408205,213,0 +170785408254,213,0 +170785408302,214,0 +170785408350,214,0 +170785408398,213,0 +170785408448,213,0 +170785408496,212,0 +170785408543,213,0 +170785408593,212,0 +170785408641,213,0 +170785408689,213,0 +170785408738,213,0 +170785408786,213,0 +170785408834,213,0 +170785408882,213,0 +170785408930,213,0 +170785408978,213,0 +170785409027,213,0 +170785409075,213,0 +170785409123,214,0 +170785409171,213,0 +170785409219,213,0 +170785409267,214,0 +170785409315,213,0 +170785409363,213,0 +170785409411,213,0 +170785409459,213,0 +170785409507,213,0 +170785409556,213,0 +170785409604,213,0 +170785409654,213,0 +170785409702,213,0 +170785409750,213,0 +170785409798,213,0 +170785409845,213,0 +170785409895,213,0 +170785409943,213,0 +170785409992,214,0 +170785410040,214,0 +170785410090,213,0 +170785410139,213,0 +170785410187,214,0 +170785410237,213,0 +170785410285,213,0 +170785410334,213,0 +170785410382,213,0 +170785410432,213,0 +170785410480,213,0 +170785410528,213,0 +170785410577,213,0 +170785410627,213,0 +170785410676,213,0 +170785410724,213,0 +170785410774,214,0 +170785410823,213,0 +170785410871,214,0 +170785410919,214,0 +170785410967,214,0 +170785411017,214,0 +170785411065,214,0 +170785411113,214,0 +170785411160,213,0 +170785411208,213,0 +170785411256,213,0 +170785411306,213,0 +170785411354,213,0 +170785411402,213,0 +170785411450,213,0 +170785411497,213,0 +170785411547,213,0 +170785411595,213,0 +170785411643,213,0 +170785411691,213,0 +170785411739,213,0 +170785411788,214,0 +170785411838,214,0 +170785411887,214,0 +170785411935,214,0 +170785411985,214,0 +170785412032,214,0 +170785412082,213,0 +170785412130,213,0 +170785412178,213,0 +170785412226,213,0 +170785412275,213,0 +170785412325,213,0 +170785412373,213,0 +170785412423,213,0 +170785412471,213,0 +170785412518,213,0 +170785412568,213,0 +170785412616,213,0 +170785412664,214,0 +170785412713,213,0 +170785412761,213,0 +170785412811,214,0 +170785412859,214,0 +170785412907,214,0 +170785412955,214,0 +170785413002,213,0 +170785413050,213,0 +170785413100,213,0 +170785413148,212,0 +170785413196,213,0 +170785413244,213,0 +170785413293,213,0 +170785413343,213,0 +170785413390,213,0 +170785413440,213,0 +170785413488,213,0 +170785413536,213,0 +170785413585,213,0 +170785413633,213,0 +170785413683,213,0 +170785413732,213,0 +170785413780,214,0 +170785413828,213,0 +170785413878,214,0 +170785413926,214,0 +170785413974,213,0 +170785414021,213,0 +170785414069,213,0 +170785414119,213,0 +170785414167,213,0 +170785414216,213,0 +170785414264,213,0 +170785414312,213,0 +170785414362,213,0 +170785414409,213,0 +170785414457,213,0 +170785414505,213,0 +170785414555,213,0 +170785414603,213,0 +170785414652,213,0 +170785414700,214,0 +170785414750,214,0 +170785414798,213,0 +170785414846,214,0 +170785414895,213,0 +170785414943,213,0 +170785414991,213,0 +170785415039,213,0 +170785415087,213,0 +170785415136,213,0 +170785415184,213,0 +170785415234,213,0 +170785415282,213,0 +170785415331,213,0 +170785415379,213,0 +170785415429,213,0 +170785415476,213,0 +170785415524,213,0 +170785415572,213,0 +170785415620,214,0 +170785415669,214,0 +170785415719,213,0 +170785415766,214,0 +170785415814,213,0 +170785415862,213,0 +170785415910,213,0 +170785415958,213,0 +170785416006,213,0 +170785416053,213,0 +170785416101,213,0 +170785416151,213,0 +170785416199,213,0 +170785416246,213,0 +170785416294,213,0 +170785416342,213,0 +170785416390,213,0 +170785416438,213,0 +170785416486,213,0 +170785416533,213,0 +170785416581,213,0 +170785416629,213,0 +170785416677,214,0 +170785416725,214,0 +170785416772,213,0 +170785416820,212,0 +170785416868,212,0 +170785416916,213,0 +170785416965,212,0 +170785417013,213,0 +170785417061,213,0 +170785417109,213,0 +170785417157,213,0 +170785417206,213,0 +170785417256,213,0 +170785417303,213,0 +170785417351,213,0 +170785417399,213,0 +170785417447,213,0 +170785417495,213,0 +170785417544,214,0 +170785417592,213,0 +170785417640,213,0 +170785417688,213,0 +170785417736,212,0 +170785417784,213,0 +170785417832,212,0 +170785417880,213,0 +170785417929,213,0 +170785417977,213,0 +170785418025,213,0 +170785418074,213,0 +170785418122,213,0 +170785418170,213,0 +170785418218,213,0 +170785418265,213,0 +170785418313,213,0 +170785418361,214,0 +170785418409,213,0 +170785418457,214,0 +170785418505,213,0 +170785418553,214,0 +170785418601,213,0 +170785418648,213,0 +170785418696,213,0 +170785418746,212,0 +170785418794,213,0 +170785418843,213,0 +170785418891,213,0 +170785418939,213,0 +170785418987,213,0 +170785419035,213,0 +170785419083,213,0 +170785419132,213,0 +170785419180,213,0 +170785419228,213,0 +170785419276,213,0 +170785419325,213,0 +170785419373,213,0 +170785419421,213,0 +170785419469,214,0 +170785419517,213,0 +170785419564,213,0 +170785419612,213,0 +170785419660,213,0 +170785419708,213,0 +170785419757,213,0 +170785419805,213,0 +170785419853,213,0 +170785419901,213,0 +170785419949,213,0 +170785419997,213,0 +170785420044,213,0 +170785420092,213,0 +170785420142,214,0 +170785420190,213,0 +170785420237,214,0 +170785420285,214,0 +170785420333,214,0 +170785420381,214,0 +170785420430,214,0 +170785420478,213,0 +170785420526,213,0 +170785420574,213,0 +170785420622,213,0 +170785420671,213,0 +170785420719,213,0 +170785420767,213,0 +170785420815,213,0 +170785420863,213,0 +170785420911,213,0 +170785420959,214,0 +170785421006,214,0 +170785421054,214,0 +170785421102,214,0 +170785421150,214,0 +170785421198,214,0 +170785421246,214,0 +170785421294,214,0 +170785421341,214,0 +170785421389,213,0 +170785421437,213,0 +170785421487,213,0 +170785421535,213,0 +170785421584,213,0 +170785421634,213,0 +170785421682,213,0 +170785421729,213,0 +170785421779,213,0 +170785421827,214,0 +170785421875,214,0 +170785421923,214,0 +170785421971,214,0 +170785422019,214,0 +170785422067,214,0 +170785422114,214,0 +170785422162,214,0 +170785422210,214,0 +170785422258,214,0 +170785422306,214,0 +170785422356,213,0 +170785422403,213,0 +170785422451,213,0 +170785422499,213,0 +170785422547,213,0 +170785422595,213,0 +170785422643,213,0 +170785422691,213,0 +170785422741,213,0 +170785422789,213,0 +170785422838,213,0 +170785422886,214,0 +170785422934,213,0 +170785422982,214,0 +170785423029,214,0 +170785423079,214,0 +170785423127,214,0 +170785423175,214,0 +170785423223,214,0 +170785423272,213,0 +170785423320,213,0 +170785423368,213,0 +170785423416,213,0 +170785423464,213,0 +170785423511,213,0 +170785423559,213,0 +170785423607,213,0 +170785423656,213,0 +170785423704,213,0 +170785423752,213,0 +170785423801,214,0 +170785423851,214,0 +170785423899,213,0 +170785423946,214,0 +170785423994,214,0 +170785424044,214,0 +170785424093,214,0 +170785424141,214,0 +170785424189,213,0 +170785424237,213,0 +170785424285,213,0 +170785424334,213,0 +170785424384,213,0 +170785424432,213,0 +170785424481,213,0 +170785424531,213,0 +170785424580,213,0 +170785424630,213,0 +170785424678,213,0 +170785424725,213,0 +170785424775,213,0 +170785424825,214,0 +170785424872,214,0 +170785424922,214,0 +170785424971,214,0 +170785425019,214,0 +170785425067,213,0 +170785425115,213,0 +170785425163,213,0 +170785425211,213,0 +170785425259,213,0 +170785425307,213,0 +170785425355,213,0 +170785425404,213,0 +170785425454,213,0 +170785425502,213,0 +170785425551,213,0 +170785425599,213,0 +170785425647,213,0 +170785425695,213,0 +170785425743,214,0 +170785425791,213,0 +170785425841,214,0 +170785425890,214,0 +170785425938,214,0 +170785425986,214,0 +170785426035,214,0 +170785426083,213,0 +170785426131,213,0 +170785426179,213,0 +170785426227,213,0 +170785426276,213,0 +170785426324,213,0 +170785426372,213,0 +170785426420,213,0 +170785426468,213,0 +170785426516,213,0 +170785426564,213,0 +170785426612,213,0 +170785426659,214,0 +170785426707,214,0 +170785426755,214,0 +170785426805,214,0 +170785426854,214,0 +170785426902,214,0 +170785426950,214,0 +170785426998,212,0 +170785427046,213,0 +170785427094,213,0 +170785427142,213,0 +170785427190,213,0 +170785427238,213,0 +170785427286,213,0 +170785427335,213,0 +170785427383,213,0 +170785427431,213,0 +170785427478,213,0 +170785427526,214,0 +170785427574,213,0 +170785427622,214,0 +170785427670,214,0 +170785427719,214,0 +170785427767,214,0 +170785427815,214,0 +170785427862,214,0 +170785427912,213,0 +170785427960,213,0 +170785428008,212,0 +170785428056,213,0 +170785428104,213,0 +170785428151,213,0 +170785428201,213,0 +170785428249,213,0 +170785428297,213,0 +170785428344,213,0 +170785428392,213,0 +170785428440,213,0 +170785428490,214,0 +170785428538,213,0 +170785428587,214,0 +170785428635,214,0 +170785428683,214,0 +170785428731,213,0 +170785428779,214,0 +170785428828,213,0 +170785428876,212,0 +170785428926,212,0 +170785428974,212,0 +170785429022,213,0 +170785429069,212,0 +170785429119,213,0 +170785429167,212,0 +170785429216,213,0 +170785429264,213,0 +170785429312,213,0 +170785429360,213,0 +170785429410,213,0 +170785429458,213,0 +170785429505,213,0 +170785429553,213,0 +170785429601,213,0 +170785429649,213,0 +170785429697,214,0 +170785429747,214,0 +170785429795,213,0 +170785429842,212,0 +170785429892,212,0 +170785429940,212,0 +170785429989,213,0 +170785430037,212,0 +170785430085,213,0 +170785430133,213,0 +170785430181,213,0 +170785430230,213,0 +170785430280,213,0 +170785430329,213,0 +170785430377,213,0 +170785430427,213,0 +170785430476,213,0 +170785430524,213,0 +170785430572,213,0 +170785430620,213,0 +170785430667,214,0 +170785430717,213,0 +170785430765,213,0 +170785430813,212,0 +170785430861,213,0 +170785430910,213,0 +170785430958,213,0 +170785431006,213,0 +170785431054,213,0 +170785431104,213,0 +170785431151,213,0 +170785431199,213,0 +170785431247,213,0 +170785431295,213,0 +170785431343,213,0 +170785431391,213,0 +170785431441,214,0 +170785431489,213,0 +170785431538,214,0 +170785431586,214,0 +170785431636,213,0 +170785431684,213,0 +170785431733,212,0 +170785431781,213,0 +170785431829,212,0 +170785431878,213,0 +170785431928,213,0 +170785431976,213,0 +170785432024,213,0 +170785432073,213,0 +170785432121,213,0 +170785432169,213,0 +170785432219,213,0 +170785432267,213,0 +170785432316,213,0 +170785432364,213,0 +170785432412,213,0 +170785432462,213,0 +170785432509,213,0 +170785432557,213,0 +170785432605,213,0 +170785432653,212,0 +170785432703,212,0 +170785432751,212,0 +170785432798,213,0 +170785432846,212,0 +170785432894,213,0 +170785432942,213,0 +170785432990,213,0 +170785433038,213,0 +170785433086,213,0 +170785433136,213,0 +170785433185,213,0 +170785433233,213,0 +170785433282,213,0 +170785433332,213,0 +170785433380,213,0 +170785433428,213,0 +170785433477,213,0 +170785433527,212,0 +170785433576,212,0 +170785433624,212,0 +170785433674,213,0 +170785433723,212,0 +170785433773,213,0 +170785433823,213,0 +170785433870,213,0 +170785433920,213,0 +170785433968,213,0 +170785434017,213,0 +170785434065,213,0 +170785434115,213,0 +170785434163,213,0 +170785434211,213,0 +170785434258,213,0 +170785434306,213,0 +170785434356,214,0 +170785434405,213,0 +170785434455,213,0 +170785434504,212,0 +170785434554,213,0 +170785434601,213,0 +170785434649,212,0 +170785434699,213,0 +170785434747,213,0 +170785434795,212,0 +170785434843,213,0 +170785434891,213,0 +170785434938,213,0 +170785434986,213,0 +170785435034,213,0 +170785435082,213,0 +170785435130,213,0 +170785435178,213,0 +170785435226,213,0 +170785435274,213,0 +170785435322,213,0 +170785435369,213,0 +170785435417,212,0 +170785435465,213,0 +170785435513,213,0 +170785435561,212,0 +170785435609,213,0 +170785435657,213,0 +170785435705,213,0 +170785435755,213,0 +170785435804,213,0 +170785435854,213,0 +170785435901,213,0 +170785435949,213,0 +170785435997,213,0 +170785436045,213,0 +170785436093,214,0 +170785436141,213,0 +170785436189,213,0 +170785436237,213,0 +170785436285,213,0 +170785436333,213,0 +170785436381,213,0 +170785436429,213,0 +170785436476,213,0 +170785436526,213,0 +170785436575,213,0 +170785436623,213,0 +170785436671,213,0 +170785436719,213,0 +170785436769,213,0 +170785436818,213,0 +170785436866,213,0 +170785436916,214,0 +170785436963,213,0 +170785437011,214,0 +170785437059,214,0 +170785437107,213,0 +170785437155,213,0 +170785437205,213,0 +170785437253,212,0 +170785437300,213,0 +170785437350,213,0 +170785437398,213,0 +170785437446,213,0 +170785437494,213,0 +170785437543,213,0 +170785437591,213,0 +170785437639,213,0 +170785437687,213,0 +170785437735,213,0 +170785437782,213,0 +170785437830,213,0 +170785437878,214,0 +170785437926,213,0 +170785437974,214,0 +170785438022,214,0 +170785438069,213,0 +170785438117,213,0 +170785438165,213,0 +170785438213,212,0 +170785438263,213,0 +170785438310,212,0 +170785438360,213,0 +170785438409,213,0 +170785438457,213,0 +170785438505,213,0 +170785438555,213,0 +170785438603,213,0 +170785438651,213,0 +170785438700,213,0 +170785438748,213,0 +170785438798,214,0 +170785438846,214,0 +170785438895,214,0 +170785438943,214,0 +170785438993,214,0 +170785439041,213,0 +170785439089,213,0 +170785439138,213,0 +170785439186,213,0 +170785439236,213,0 +170785439284,212,0 +170785439332,213,0 +170785439380,213,0 +170785439429,213,0 +170785439477,213,0 +170785439526,213,0 +170785439574,213,0 +170785439622,213,0 +170785439670,213,0 +170785439718,213,0 +170785439766,213,0 +170785439814,213,0 +170785439862,214,0 +170785439910,213,0 +170785439960,213,0 +170785440008,213,0 diff --git a/laser_value/0214-06.csv b/laser_value/0214-06.csv new file mode 100644 index 0000000..2aed63e --- /dev/null +++ b/laser_value/0214-06.csv @@ -0,0 +1,7450 @@ +timestamp,laser_value,event +170785440058,212,0 +170785440106,212,0 +170785440154,213,0 +170785440202,213,0 +170785440250,213,0 +170785440298,212,0 +170785440347,213,0 +170785440397,213,0 +170785440445,213,0 +170785440494,213,0 +170785440544,213,0 +170785440593,213,0 +170785440643,213,0 +170785440691,213,0 +170785440739,213,0 +170785440786,213,0 +170785440834,213,0 +170785440882,214,0 +170785440930,213,0 +170785440978,212,0 +170785441027,213,0 +170785441075,212,0 +170785441125,213,0 +170785441173,213,0 +170785441221,213,0 +170785441270,213,0 +170785441318,213,0 +170785441366,213,0 +170785441414,213,0 +170785441463,213,0 +170785441511,213,0 +170785441559,213,0 +170785441607,213,0 +170785441657,213,0 +170785441705,213,0 +170785441752,213,0 +170785441800,214,0 +170785441848,213,0 +170785441896,213,0 +170785441944,213,0 +170785441991,213,0 +170785442039,213,0 +170785442087,213,0 +170785442135,213,0 +170785442183,213,0 +170785442231,213,0 +170785442279,213,0 +170785442327,213,0 +170785442374,213,0 +170785442422,214,0 +170785442470,214,0 +170785442518,214,0 +170785442566,214,0 +170785442613,214,0 +170785442661,214,0 +170785442709,214,0 +170785442757,214,0 +170785442805,213,0 +170785442853,213,0 +170785442900,213,0 +170785442948,213,0 +170785442998,213,0 +170785443046,213,0 +170785443093,213,0 +170785443143,213,0 +170785443192,213,0 +170785443242,213,0 +170785443289,214,0 +170785443337,214,0 +170785443385,214,0 +170785443433,214,0 +170785443481,214,0 +170785443529,214,0 +170785443577,214,0 +170785443625,214,0 +170785443673,213,0 +170785443720,213,0 +170785443768,213,0 +170785443816,213,0 +170785443864,213,0 +170785443911,213,0 +170785443959,213,0 +170785444007,213,0 +170785444055,213,0 +170785444103,213,0 +170785444150,214,0 +170785444198,213,0 +170785444246,213,0 +170785444294,214,0 +170785444342,214,0 +170785444389,214,0 +170785444439,214,0 +170785444488,214,0 +170785444536,214,0 +170785444584,214,0 +170785444633,214,0 +170785444681,213,0 +170785444729,213,0 +170785444777,213,0 +170785444825,213,0 +170785444873,213,0 +170785444921,213,0 +170785444969,213,0 +170785445016,213,0 +170785445064,213,0 +170785445112,213,0 +170785445162,213,0 +170785445210,213,0 +170785445258,213,0 +170785445307,213,0 +170785445355,214,0 +170785445403,214,0 +170785445451,214,0 +170785445499,214,0 +170785445546,213,0 +170785445594,213,0 +170785445644,212,0 +170785445691,213,0 +170785445739,213,0 +170785445789,213,0 +170785445837,212,0 +170785445884,213,0 +170785445934,213,0 +170785445982,213,0 +170785446030,213,0 +170785446077,213,0 +170785446125,213,0 +170785446173,213,0 +170785446221,213,0 +170785446269,214,0 +170785446317,214,0 +170785446364,213,0 +170785446412,214,0 +170785446460,214,0 +170785446508,213,0 +170785446556,213,0 +170785446604,213,0 +170785446653,213,0 +170785446701,213,0 +170785446749,213,0 +170785446798,213,0 +170785446846,213,0 +170785446895,213,0 +170785446943,213,0 +170785446991,213,0 +170785447039,213,0 +170785447087,213,0 +170785447135,213,0 +170785447182,213,0 +170785447230,213,0 +170785447278,213,0 +170785447326,213,0 +170785447374,214,0 +170785447421,213,0 +170785447469,213,0 +170785447517,213,0 +170785447565,212,0 +170785447613,213,0 +170785447661,213,0 +170785447708,213,0 +170785447756,213,0 +170785447804,213,0 +170785447852,213,0 +170785447902,213,0 +170785447949,213,0 +170785447997,213,0 +170785448045,213,0 +170785448093,213,0 +170785448141,213,0 +170785448190,213,0 +170785448238,213,0 +170785448286,214,0 +170785448334,213,0 +170785448382,213,0 +170785448430,212,0 +170785448477,212,0 +170785448525,213,0 +170785448573,212,0 +170785448621,213,0 +170785448668,213,0 +170785448716,213,0 +170785448764,213,0 +170785448812,213,0 +170785448860,213,0 +170785448908,213,0 +170785448955,213,0 +170785449003,213,0 +170785449051,213,0 +170785449099,213,0 +170785449147,213,0 +170785449194,213,0 +170785449242,214,0 +170785449290,213,0 +170785449338,212,0 +170785449385,212,0 +170785449433,213,0 +170785449481,213,0 +170785449529,213,0 +170785449577,213,0 +170785449624,213,0 +170785449672,213,0 +170785449720,213,0 +170785449768,213,0 +170785449816,213,0 +170785449865,213,0 +170785449913,213,0 +170785449961,213,0 +170785450009,213,0 +170785450056,213,0 +170785450104,213,0 +170785450152,214,0 +170785450200,213,0 +170785450248,213,0 +170785450297,212,0 +170785450347,213,0 +170785450397,213,0 +170785450444,213,0 +170785450492,213,0 +170785450540,213,0 +170785450588,213,0 +170785450636,213,0 +170785450686,213,0 +170785450733,213,0 +170785450783,213,0 +170785450831,213,0 +170785450879,213,0 +170785450927,214,0 +170785450976,213,0 +170785451026,213,0 +170785451075,213,0 +170785451125,213,0 +170785451173,213,0 +170785451221,213,0 +170785451270,212,0 +170785451320,213,0 +170785451367,213,0 +170785451417,213,0 +170785451465,213,0 +170785451513,213,0 +170785451562,213,0 +170785451610,213,0 +170785451660,213,0 +170785451708,213,0 +170785451757,214,0 +170785451805,214,0 +170785451853,213,0 +170785451901,214,0 +170785451949,214,0 +170785451997,214,0 +170785452047,214,0 +170785452095,213,0 +170785452143,213,0 +170785452192,213,0 +170785452242,213,0 +170785452289,213,0 +170785452337,213,0 +170785452385,213,0 +170785452433,213,0 +170785452481,213,0 +170785452529,213,0 +170785452577,213,0 +170785452625,214,0 +170785452674,214,0 +170785452722,214,0 +170785452772,214,0 +170785452820,214,0 +170785452867,214,0 +170785452915,214,0 +170785452965,214,0 +170785453014,213,0 +170785453064,213,0 +170785453113,213,0 +170785453163,213,0 +170785453212,212,0 +170785453261,213,0 +170785453309,213,0 +170785453357,213,0 +170785453405,213,0 +170785453453,213,0 +170785453501,213,0 +170785453549,213,0 +170785453598,213,0 +170785453646,213,0 +170785453694,213,0 +170785453744,213,0 +170785453793,213,0 +170785453841,213,0 +170785453889,214,0 +170785453937,213,0 +170785453984,213,0 +170785454032,213,0 +170785454080,213,0 +170785454128,213,0 +170785454176,213,0 +170785454224,213,0 +170785454271,213,0 +170785454319,213,0 +170785454367,213,0 +170785454417,213,0 +170785454465,213,0 +170785454512,213,0 +170785454560,213,0 +170785454608,213,0 +170785454656,213,0 +170785454704,213,0 +170785454752,214,0 +170785454800,213,0 +170785454848,214,0 +170785454897,213,0 +170785454945,213,0 +170785454995,213,0 +170785455043,212,0 +170785455092,213,0 +170785455140,213,0 +170785455190,213,0 +170785455238,213,0 +170785455287,213,0 +170785455337,213,0 +170785455384,213,0 +170785455432,213,0 +170785455480,213,0 +170785455530,213,0 +170785455579,213,0 +170785455627,213,0 +170785455675,213,0 +170785455723,214,0 +170785455771,213,0 +170785455819,213,0 +170785455867,213,0 +170785455916,213,0 +170785455964,213,0 +170785456012,213,0 +170785456060,213,0 +170785456108,213,0 +170785456155,213,0 +170785456203,213,0 +170785456251,213,0 +170785456299,213,0 +170785456347,213,0 +170785456395,213,0 +170785456443,213,0 +170785456492,214,0 +170785456540,214,0 +170785456588,214,0 +170785456636,214,0 +170785456684,213,0 +170785456732,213,0 +170785456780,213,0 +170785456828,213,0 +170785456876,213,0 +170785456924,213,0 +170785456973,213,0 +170785457021,213,0 +170785457069,213,0 +170785457117,213,0 +170785457166,213,0 +170785457214,213,0 +170785457262,213,0 +170785457310,213,0 +170785457358,213,0 +170785457406,213,0 +170785457454,214,0 +170785457503,213,0 +170785457551,214,0 +170785457599,213,0 +170785457647,213,0 +170785457696,213,0 +170785457744,213,0 +170785457794,213,0 +170785457842,213,0 +170785457890,213,0 +170785457937,213,0 +170785457985,213,0 +170785458035,213,0 +170785458083,213,0 +170785458132,213,0 +170785458180,213,0 +170785458230,213,0 +170785458279,213,0 +170785458327,213,0 +170785458375,213,0 +170785458424,214,0 +170785458472,213,0 +170785458520,214,0 +170785458568,213,0 +170785458618,213,0 +170785458667,212,0 +170785458715,213,0 +170785458763,213,0 +170785458811,213,0 +170785458859,213,0 +170785458907,213,0 +170785458956,213,0 +170785459004,213,0 +170785459052,213,0 +170785459100,213,0 +170785459148,214,0 +170785459196,214,0 +170785459244,214,0 +170785459292,214,0 +170785459340,214,0 +170785459388,214,0 +170785459436,214,0 +170785459484,213,0 +170785459531,213,0 +170785459581,213,0 +170785459630,213,0 +170785459678,213,0 +170785459726,213,0 +170785459774,213,0 +170785459822,213,0 +170785459871,213,0 +170785459921,213,0 +170785459969,213,0 +170785460016,213,0 +170785460064,213,0 +170785460112,213,0 +170785460160,214,0 +170785460208,214,0 +170785460256,214,0 +170785460304,214,0 +170785460352,214,0 +170785460400,214,0 +170785460448,213,0 +170785460496,213,0 +170785460544,212,0 +170785460592,213,0 +170785460640,212,0 +170785460688,213,0 +170785460737,213,0 +170785460785,213,0 +170785460833,213,0 +170785460881,213,0 +170785460930,213,0 +170785460978,213,0 +170785461026,213,0 +170785461074,213,0 +170785461124,213,0 +170785461173,213,0 +170785461221,213,0 +170785461269,214,0 +170785461317,213,0 +170785461365,213,0 +170785461413,213,0 +170785461461,213,0 +170785461509,213,0 +170785461556,213,0 +170785461604,212,0 +170785461652,213,0 +170785461700,213,0 +170785461750,213,0 +170785461798,213,0 +170785461847,213,0 +170785461895,213,0 +170785461944,213,0 +170785461992,213,0 +170785462042,213,0 +170785462091,213,0 +170785462139,213,0 +170785462187,213,0 +170785462235,213,0 +170785462283,213,0 +170785462332,212,0 +170785462380,212,0 +170785462428,212,0 +170785462476,212,0 +170785462524,212,0 +170785462573,212,0 +170785462623,213,0 +170785462671,213,0 +170785462719,213,0 +170785462766,213,0 +170785462814,213,0 +170785462862,213,0 +170785462910,213,0 +170785462960,213,0 +170785463008,213,0 +170785463056,213,0 +170785463104,213,0 +170785463152,213,0 +170785463200,213,0 +170785463249,213,0 +170785463297,213,0 +170785463347,213,0 +170785463394,213,0 +170785463442,213,0 +170785463490,213,0 +170785463538,213,0 +170785463586,213,0 +170785463634,213,0 +170785463684,213,0 +170785463732,213,0 +170785463781,213,0 +170785463830,214,0 +170785463878,213,0 +170785463928,213,0 +170785463976,214,0 +170785464025,213,0 +170785464073,214,0 +170785464121,213,0 +170785464171,213,0 +170785464219,213,0 +170785464268,213,0 +170785464316,213,0 +170785464364,213,0 +170785464412,213,0 +170785464460,213,0 +170785464508,213,0 +170785464556,213,0 +170785464604,214,0 +170785464652,214,0 +170785464699,214,0 +170785464747,214,0 +170785464795,214,0 +170785464843,214,0 +170785464891,214,0 +170785464939,214,0 +170785464987,214,0 +170785465036,214,0 +170785465086,213,0 +170785465134,213,0 +170785465183,213,0 +170785465233,213,0 +170785465281,213,0 +170785465330,213,0 +170785465378,213,0 +170785465426,213,0 +170785465474,213,0 +170785465524,214,0 +170785465572,213,0 +170785465619,214,0 +170785465669,214,0 +170785465717,214,0 +170785465765,214,0 +170785465813,214,0 +170785465860,214,0 +170785465908,214,0 +170785465956,214,0 +170785466006,213,0 +170785466054,213,0 +170785466103,213,0 +170785466151,213,0 +170785466200,213,0 +170785466250,213,0 +170785466299,213,0 +170785466347,213,0 +170785466395,213,0 +170785466443,214,0 +170785466493,213,0 +170785466542,214,0 +170785466590,214,0 +170785466638,214,0 +170785466687,214,0 +170785466735,214,0 +170785466783,214,0 +170785466831,214,0 +170785466879,214,0 +170785466927,214,0 +170785466975,213,0 +170785467023,213,0 +170785467071,213,0 +170785467119,213,0 +170785467168,213,0 +170785467216,213,0 +170785467264,213,0 +170785467313,213,0 +170785467361,213,0 +170785467409,213,0 +170785467457,213,0 +170785467507,214,0 +170785467555,214,0 +170785467604,213,0 +170785467652,213,0 +170785467702,214,0 +170785467750,214,0 +170785467797,213,0 +170785467845,213,0 +170785467893,213,0 +170785467941,213,0 +170785467989,213,0 +170785468037,213,0 +170785468087,213,0 +170785468134,213,0 +170785468184,213,0 +170785468233,213,0 +170785468281,213,0 +170785468331,213,0 +170785468379,213,0 +170785468427,213,0 +170785468475,214,0 +170785468522,214,0 +170785468570,214,0 +170785468618,214,0 +170785468666,214,0 +170785468714,214,0 +170785468762,213,0 +170785468810,213,0 +170785468860,213,0 +170785468909,213,0 +170785468957,213,0 +170785469007,213,0 +170785469054,213,0 +170785469102,213,0 +170785469150,213,0 +170785469198,213,0 +170785469246,213,0 +170785469296,213,0 +170785469343,213,0 +170785469391,213,0 +170785469439,213,0 +170785469489,214,0 +170785469538,214,0 +170785469588,213,0 +170785469638,213,0 +170785469685,213,0 +170785469733,213,0 +170785469781,212,0 +170785469829,212,0 +170785469877,212,0 +170785469925,213,0 +170785469974,213,0 +170785470022,213,0 +170785470070,213,0 +170785470118,213,0 +170785470166,213,0 +170785470214,213,0 +170785470262,213,0 +170785470310,213,0 +170785470358,213,0 +170785470407,213,0 +170785470457,213,0 +170785470505,213,0 +170785470552,214,0 +170785470602,214,0 +170785470651,213,0 +170785470699,213,0 +170785470749,213,0 +170785470797,213,0 +170785470845,213,0 +170785470893,213,0 +170785470941,213,0 +170785470989,213,0 +170785471036,213,0 +170785471086,213,0 +170785471134,213,0 +170785471182,213,0 +170785471230,213,0 +170785471279,213,0 +170785471327,213,0 +170785471376,214,0 +170785471424,214,0 +170785471472,214,0 +170785471522,214,0 +170785471571,213,0 +170785471620,213,0 +170785471670,213,0 +170785471718,213,0 +170785471767,213,0 +170785471815,213,0 +170785471863,213,0 +170785471913,213,0 +170785471961,213,0 +170785472009,213,0 +170785472057,213,0 +170785472106,213,0 +170785472154,213,0 +170785472204,213,0 +170785472251,213,0 +170785472299,214,0 +170785472349,214,0 +170785472398,214,0 +170785472446,214,0 +170785472494,213,0 +170785472542,213,0 +170785472590,213,0 +170785472638,213,0 +170785472686,213,0 +170785472733,213,0 +170785472783,213,0 +170785472832,213,0 +170785472880,213,0 +170785472930,213,0 +170785472978,213,0 +170785473026,213,0 +170785473073,213,0 +170785473123,213,0 +170785473171,213,0 +170785473218,213,0 +170785473266,213,0 +170785473314,213,0 +170785473362,214,0 +170785473411,214,0 +170785473459,213,0 +170785473507,213,0 +170785473555,213,0 +170785473603,213,0 +170785473650,213,0 +170785473698,213,0 +170785473746,213,0 +170785473794,213,0 +170785473842,213,0 +170785473890,213,0 +170785473937,213,0 +170785473985,213,0 +170785474033,213,0 +170785474081,214,0 +170785474129,214,0 +170785474177,214,0 +170785474225,214,0 +170785474272,214,0 +170785474320,213,0 +170785474368,213,0 +170785474416,213,0 +170785474464,213,0 +170785474511,213,0 +170785474561,213,0 +170785474609,213,0 +170785474656,213,0 +170785474704,213,0 +170785474752,213,0 +170785474800,213,0 +170785474848,213,0 +170785474897,213,0 +170785474945,213,0 +170785474994,213,0 +170785475042,213,0 +170785475090,214,0 +170785475138,213,0 +170785475186,214,0 +170785475234,214,0 +170785475282,213,0 +170785475329,213,0 +170785475379,212,0 +170785475427,213,0 +170785475475,213,0 +170785475524,212,0 +170785475572,213,0 +170785475620,213,0 +170785475668,213,0 +170785475716,213,0 +170785475764,213,0 +170785475812,213,0 +170785475860,213,0 +170785475907,213,0 +170785475955,213,0 +170785476005,213,0 +170785476054,213,0 +170785476102,213,0 +170785476150,213,0 +170785476198,213,0 +170785476246,213,0 +170785476293,213,0 +170785476341,213,0 +170785476389,213,0 +170785476437,213,0 +170785476485,213,0 +170785476532,213,0 +170785476580,213,0 +170785476628,213,0 +170785476676,213,0 +170785476724,213,0 +170785476772,213,0 +170785476819,213,0 +170785476867,213,0 +170785476915,213,0 +170785476963,213,0 +170785477011,213,0 +170785477059,214,0 +170785477106,213,0 +170785477154,213,0 +170785477202,213,0 +170785477250,213,0 +170785477298,213,0 +170785477345,213,0 +170785477393,213,0 +170785477441,213,0 +170785477491,213,0 +170785477538,213,0 +170785477588,213,0 +170785477636,213,0 +170785477684,213,0 +170785477732,213,0 +170785477780,213,0 +170785477827,213,0 +170785477875,213,0 +170785477923,213,0 +170785477971,214,0 +170785478019,214,0 +170785478067,213,0 +170785478116,213,0 +170785478164,213,0 +170785478214,213,0 +170785478263,213,0 +170785478311,213,0 +170785478359,213,0 +170785478407,213,0 +170785478455,213,0 +170785478503,213,0 +170785478552,213,0 +170785478600,213,0 +170785478648,213,0 +170785478697,213,0 +170785478745,213,0 +170785478793,213,0 +170785478841,213,0 +170785478889,213,0 +170785478938,213,0 +170785478986,213,0 +170785479034,213,0 +170785479081,212,0 +170785479129,212,0 +170785479177,213,0 +170785479225,213,0 +170785479274,213,0 +170785479322,213,0 +170785479370,213,0 +170785479418,213,0 +170785479465,213,0 +170785479513,213,0 +170785479561,213,0 +170785479610,213,0 +170785479658,213,0 +170785479708,213,0 +170785479755,213,0 +170785479805,213,0 +170785479853,213,0 +170785479902,213,0 +170785479952,213,0 +170785480000,213,0 +170785480048,213,0 +170785480096,213,0 +170785480144,213,0 +170785480193,213,0 +170785480241,213,0 +170785480290,213,0 +170785480340,213,0 +170785480388,213,0 +170785480436,213,0 +170785480485,213,0 +170785480534,213,0 +170785480582,213,0 +170785480632,213,0 +170785480680,213,0 +170785480729,213,0 +170785480779,214,0 +170785480827,213,0 +170785480874,213,0 +170785480922,213,0 +170785480970,213,0 +170785481018,213,0 +170785481066,213,0 +170785481114,213,0 +170785481162,213,0 +170785481209,213,0 +170785481257,213,0 +170785481305,213,0 +170785481355,213,0 +170785481404,213,0 +170785481452,213,0 +170785481500,214,0 +170785481548,213,0 +170785481596,214,0 +170785481644,214,0 +170785481692,214,0 +170785481740,214,0 +170785481789,213,0 +170785481839,213,0 +170785481887,213,0 +170785481935,213,0 +170785481983,213,0 +170785482031,213,0 +170785482079,213,0 +170785482126,213,0 +170785482174,213,0 +170785482222,213,0 +170785482270,213,0 +170785482318,213,0 +170785482366,213,0 +170785482416,214,0 +170785482464,213,0 +170785482513,214,0 +170785482561,214,0 +170785482609,214,0 +170785482659,213,0 +170785482706,213,0 +170785482756,213,0 +170785482805,213,0 +170785482855,213,0 +170785482905,213,0 +170785482954,213,0 +170785483002,213,0 +170785483050,213,0 +170785483098,213,0 +170785483147,213,0 +170785483195,213,0 +170785483243,214,0 +170785483292,214,0 +170785483340,214,0 +170785483388,214,0 +170785483438,214,0 +170785483486,214,0 +170785483534,214,0 +170785483582,213,0 +170785483631,213,0 +170785483679,213,0 +170785483727,213,0 +170785483775,213,0 +170785483824,213,0 +170785483874,213,0 +170785483922,213,0 +170785483970,213,0 +170785484019,213,0 +170785484067,213,0 +170785484115,213,0 +170785484163,213,0 +170785484211,213,0 +170785484259,213,0 +170785484307,213,0 +170785484355,213,0 +170785484403,213,0 +170785484451,214,0 +170785484499,214,0 +170785484548,213,0 +170785484596,213,0 +170785484644,213,0 +170785484694,213,0 +170785484741,213,0 +170785484791,213,0 +170785484839,213,0 +170785484888,213,0 +170785484936,213,0 +170785484984,213,0 +170785485034,213,0 +170785485083,214,0 +170785485133,213,0 +170785485181,213,0 +170785485229,214,0 +170785485278,214,0 +170785485328,214,0 +170785485376,214,0 +170785485424,214,0 +170785485473,213,0 +170785485521,213,0 +170785485569,213,0 +170785485618,213,0 +170785485666,213,0 +170785485716,213,0 +170785485765,213,0 +170785485813,213,0 +170785485861,213,0 +170785485909,213,0 +170785485957,214,0 +170785486005,214,0 +170785486053,214,0 +170785486101,214,0 +170785486149,214,0 +170785486198,214,0 +170785486246,214,0 +170785486294,214,0 +170785486344,214,0 +170785486392,213,0 +170785486440,213,0 +170785486488,213,0 +170785486536,213,0 +170785486583,213,0 +170785486633,213,0 +170785486681,213,0 +170785486729,213,0 +170785486776,214,0 +170785486824,213,0 +170785486872,214,0 +170785486922,214,0 +170785486970,214,0 +170785487019,214,0 +170785487069,214,0 +170785487118,214,0 +170785487166,214,0 +170785487214,214,0 +170785487262,214,0 +170785487310,213,0 +170785487359,213,0 +170785487409,213,0 +170785487458,213,0 +170785487508,213,0 +170785487556,213,0 +170785487606,213,0 +170785487654,213,0 +170785487701,213,0 +170785487749,213,0 +170785487797,214,0 +170785487847,214,0 +170785487895,213,0 +170785487944,214,0 +170785487992,214,0 +170785488041,214,0 +170785488089,214,0 +170785488139,214,0 +170785488187,213,0 +170785488235,213,0 +170785488283,213,0 +170785488331,213,0 +170785488379,213,0 +170785488427,213,0 +170785488475,213,0 +170785488523,213,0 +170785488570,213,0 +170785488618,213,0 +170785488666,213,0 +170785488716,213,0 +170785488764,213,0 +170785488813,213,0 +170785488863,213,0 +170785488911,213,0 +170785488958,214,0 +170785489006,213,0 +170785489054,214,0 +170785489102,214,0 +170785489150,214,0 +170785489198,213,0 +170785489246,213,0 +170785489294,213,0 +170785489344,213,0 +170785489392,213,0 +170785489439,213,0 +170785489488,213,0 +170785489537,213,0 +170785489586,213,0 +170785489634,213,0 +170785489684,213,0 +170785489732,213,0 +170785489781,213,0 +170785489831,213,0 +170785489879,213,0 +170785489926,213,0 +170785489974,214,0 +170785490022,214,0 +170785490072,213,0 +170785490121,213,0 +170785490171,212,0 +170785490219,213,0 +170785490266,213,0 +170785490316,212,0 +170785490364,213,0 +170785490413,213,0 +170785490461,213,0 +170785490509,213,0 +170785490557,213,0 +170785490605,213,0 +170785490653,213,0 +170785490702,213,0 +170785490750,213,0 +170785490798,213,0 +170785490848,213,0 +170785490896,213,0 +170785490945,213,0 +170785490993,214,0 +170785491043,213,0 +170785491090,213,0 +170785491138,212,0 +170785491186,212,0 +170785491236,213,0 +170785491284,213,0 +170785491332,213,0 +170785491381,213,0 +170785491429,213,0 +170785491477,213,0 +170785491525,213,0 +170785491573,213,0 +170785491623,213,0 +170785491672,213,0 +170785491722,213,0 +170785491770,213,0 +170785491819,213,0 +170785491867,213,0 +170785491915,214,0 +170785491963,213,0 +170785492013,213,0 +170785492062,213,0 +170785492110,213,0 +170785492158,213,0 +170785492206,213,0 +170785492254,213,0 +170785492302,213,0 +170785492351,213,0 +170785492401,213,0 +170785492449,213,0 +170785492498,213,0 +170785492548,214,0 +170785492597,213,0 +170785492645,213,0 +170785492693,214,0 +170785492741,214,0 +170785492791,214,0 +170785492839,214,0 +170785492888,213,0 +170785492936,213,0 +170785492984,213,0 +170785493032,213,0 +170785493080,213,0 +170785493128,213,0 +170785493176,213,0 +170785493224,213,0 +170785493273,213,0 +170785493321,213,0 +170785493369,213,0 +170785493417,213,0 +170785493467,213,0 +170785493515,213,0 +170785493564,213,0 +170785493614,214,0 +170785493663,214,0 +170785493711,213,0 +170785493761,214,0 +170785493808,213,0 +170785493856,213,0 +170785493904,212,0 +170785493954,213,0 +170785494002,213,0 +170785494050,213,0 +170785494099,213,0 +170785494147,213,0 +170785494195,213,0 +170785494243,213,0 +170785494291,213,0 +170785494339,213,0 +170785494387,213,0 +170785494437,213,0 +170785494486,213,0 +170785494534,213,0 +170785494582,214,0 +170785494630,213,0 +170785494678,214,0 +170785494726,213,0 +170785494774,213,0 +170785494822,213,0 +170785494871,213,0 +170785494919,213,0 +170785494969,213,0 +170785495017,213,0 +170785495064,213,0 +170785495114,213,0 +170785495162,213,0 +170785495210,213,0 +170785495259,213,0 +170785495309,213,0 +170785495357,213,0 +170785495405,213,0 +170785495454,213,0 +170785495502,213,0 +170785495549,213,0 +170785495597,213,0 +170785495645,213,0 +170785495695,214,0 +170785495743,214,0 +170785495791,213,0 +170785495839,213,0 +170785495888,213,0 +170785495936,214,0 +170785495984,214,0 +170785496032,214,0 +170785496080,213,0 +170785496129,213,0 +170785496177,213,0 +170785496225,213,0 +170785496273,213,0 +170785496322,213,0 +170785496370,213,0 +170785496418,213,0 +170785496466,213,0 +170785496514,213,0 +170785496562,213,0 +170785496609,213,0 +170785496659,213,0 +170785496707,213,0 +170785496755,213,0 +170785496803,213,0 +170785496850,213,0 +170785496898,214,0 +170785496946,214,0 +170785496994,214,0 +170785497042,213,0 +170785497090,213,0 +170785497137,213,0 +170785497185,213,0 +170785497233,213,0 +170785497281,213,0 +170785497329,213,0 +170785497377,213,0 +170785497425,213,0 +170785497473,213,0 +170785497520,213,0 +170785497568,214,0 +170785497616,214,0 +170785497664,214,0 +170785497712,214,0 +170785497760,214,0 +170785497808,214,0 +170785497855,214,0 +170785497903,214,0 +170785497951,213,0 +170785497999,213,0 +170785498047,213,0 +170785498096,213,0 +170785498146,213,0 +170785498195,213,0 +170785498243,213,0 +170785498291,213,0 +170785498339,213,0 +170785498389,213,0 +170785498437,213,0 +170785498485,213,0 +170785498534,214,0 +170785498582,214,0 +170785498630,214,0 +170785498678,214,0 +170785498726,214,0 +170785498774,214,0 +170785498822,214,0 +170785498871,214,0 +170785498921,213,0 +170785498970,213,0 +170785499018,213,0 +170785499066,213,0 +170785499114,213,0 +170785499164,213,0 +170785499212,213,0 +170785499259,213,0 +170785499307,213,0 +170785499355,213,0 +170785499403,213,0 +170785499451,213,0 +170785499501,213,0 +170785499549,213,0 +170785499598,214,0 +170785499646,214,0 +170785499694,214,0 +170785499743,214,0 +170785499791,213,0 +170785499839,213,0 +170785499887,213,0 +170785499935,213,0 +170785499983,213,0 +170785500031,213,0 +170785500079,213,0 +170785500127,213,0 +170785500175,213,0 +170785500223,213,0 +170785500271,213,0 +170785500320,213,0 +170785500368,214,0 +170785500416,214,0 +170785500464,214,0 +170785500512,214,0 +170785500561,214,0 +170785500609,214,0 +170785500657,214,0 +170785500707,214,0 +170785500754,213,0 +170785500804,213,0 +170785500853,213,0 +170785500901,213,0 +170785500951,213,0 +170785500999,213,0 +170785501047,213,0 +170785501095,213,0 +170785501143,213,0 +170785501192,213,0 +170785501240,213,0 +170785501288,213,0 +170785501337,214,0 +170785501385,213,0 +170785501433,214,0 +170785501481,213,0 +170785501528,214,0 +170785501576,214,0 +170785501624,214,0 +170785501672,213,0 +170785501720,213,0 +170785501768,213,0 +170785501815,213,0 +170785501863,213,0 +170785501911,213,0 +170785501961,213,0 +170785502009,213,0 +170785502057,213,0 +170785502106,213,0 +170785502154,213,0 +170785502202,213,0 +170785502250,213,0 +170785502298,213,0 +170785502346,214,0 +170785502395,213,0 +170785502443,213,0 +170785502491,213,0 +170785502539,214,0 +170785502587,213,0 +170785502636,213,0 +170785502684,213,0 +170785502734,213,0 +170785502783,212,0 +170785502831,213,0 +170785502879,213,0 +170785502927,213,0 +170785502977,213,0 +170785503025,213,0 +170785503073,213,0 +170785503121,213,0 +170785503170,213,0 +170785503219,213,0 +170785503267,213,0 +170785503315,213,0 +170785503363,213,0 +170785503411,213,0 +170785503461,213,0 +170785503509,213,0 +170785503558,212,0 +170785503608,213,0 +170785503656,213,0 +170785503703,213,0 +170785503751,213,0 +170785503799,213,0 +170785503847,213,0 +170785503895,213,0 +170785503945,213,0 +170785503994,213,0 +170785504042,213,0 +170785504092,213,0 +170785504140,213,0 +170785504189,213,0 +170785504237,213,0 +170785504285,213,0 +170785504333,213,0 +170785504381,214,0 +170785504430,214,0 +170785504478,213,0 +170785504528,213,0 +170785504577,213,0 +170785504627,213,0 +170785504675,213,0 +170785504723,213,0 +170785504771,213,0 +170785504819,213,0 +170785504867,213,0 +170785504915,213,0 +170785504963,213,0 +170785505012,213,0 +170785505062,213,0 +170785505110,213,0 +170785505158,213,0 +170785505206,213,0 +170785505254,213,0 +170785505303,213,0 +170785505351,214,0 +170785505400,213,0 +170785505448,213,0 +170785505498,213,0 +170785505546,213,0 +170785505594,213,0 +170785505642,213,0 +170785505689,213,0 +170785505737,213,0 +170785505787,213,0 +170785505835,213,0 +170785505883,213,0 +170785505931,213,0 +170785505978,213,0 +170785506026,213,0 +170785506074,213,0 +170785506124,213,0 +170785506172,214,0 +170785506220,214,0 +170785506269,214,0 +170785506319,213,0 +170785506368,213,0 +170785506416,213,0 +170785506466,213,0 +170785506514,213,0 +170785506562,213,0 +170785506610,213,0 +170785506658,213,0 +170785506706,213,0 +170785506754,213,0 +170785506802,213,0 +170785506850,213,0 +170785506898,214,0 +170785506945,214,0 +170785506993,214,0 +170785507041,214,0 +170785507089,214,0 +170785507139,214,0 +170785507187,214,0 +170785507235,213,0 +170785507283,213,0 +170785507331,213,0 +170785507378,213,0 +170785507426,213,0 +170785507474,213,0 +170785507522,213,0 +170785507570,213,0 +170785507619,213,0 +170785507667,213,0 +170785507716,213,0 +170785507764,214,0 +170785507812,214,0 +170785507862,214,0 +170785507910,214,0 +170785507958,214,0 +170785508006,214,0 +170785508054,213,0 +170785508102,214,0 +170785508151,213,0 +170785508199,213,0 +170785508249,213,0 +170785508297,213,0 +170785508345,213,0 +170785508394,213,0 +170785508442,213,0 +170785508490,213,0 +170785508538,213,0 +170785508586,214,0 +170785508634,213,0 +170785508683,214,0 +170785508731,214,0 +170785508781,214,0 +170785508829,214,0 +170785508877,214,0 +170785508924,214,0 +170785508972,214,0 +170785509020,213,0 +170785509070,213,0 +170785509118,213,0 +170785509166,213,0 +170785509214,213,0 +170785509262,213,0 +170785509310,213,0 +170785509359,213,0 +170785509407,213,0 +170785509455,213,0 +170785509503,213,0 +170785509551,213,0 +170785509599,213,0 +170785509647,214,0 +170785509695,214,0 +170785509743,214,0 +170785509792,214,0 +170785509840,214,0 +170785509888,214,0 +170785509936,214,0 +170785509984,214,0 +170785510032,213,0 +170785510080,213,0 +170785510128,213,0 +170785510177,213,0 +170785510227,213,0 +170785510274,213,0 +170785510322,213,0 +170785510370,213,0 +170785510420,213,0 +170785510469,213,0 +170785510519,213,0 +170785510567,213,0 +170785510615,213,0 +170785510664,213,0 +170785510712,213,0 +170785510762,213,0 +170785510809,213,0 +170785510857,213,0 +170785510907,214,0 +170785510955,213,0 +170785511003,213,0 +170785511052,212,0 +170785511100,213,0 +170785511148,213,0 +170785511198,213,0 +170785511246,213,0 +170785511295,213,0 +170785511343,213,0 +170785511393,213,0 +170785511440,213,0 +170785511488,213,0 +170785511536,213,0 +170785511586,213,0 +170785511634,213,0 +170785511683,214,0 +170785511731,213,0 +170785511781,213,0 +170785511829,214,0 +170785511877,213,0 +170785511926,213,0 +170785511974,213,0 +170785512022,213,0 +170785512070,213,0 +170785512118,213,0 +170785512168,213,0 +170785512215,213,0 +170785512263,213,0 +170785512311,213,0 +170785512361,213,0 +170785512409,213,0 +170785512457,213,0 +170785512505,214,0 +170785512553,214,0 +170785512602,214,0 +170785512650,214,0 +170785512698,214,0 +170785512746,214,0 +170785512795,213,0 +170785512843,213,0 +170785512891,213,0 +170785512939,213,0 +170785512987,213,0 +170785513037,213,0 +170785513085,213,0 +170785513133,213,0 +170785513181,213,0 +170785513230,213,0 +170785513280,213,0 +170785513328,213,0 +170785513376,214,0 +170785513424,214,0 +170785513472,213,0 +170785513521,214,0 +170785513570,214,0 +170785513618,214,0 +170785513668,214,0 +170785513716,214,0 +170785513764,213,0 +170785513813,213,0 +170785513861,213,0 +170785513910,213,0 +170785513958,213,0 +170785514006,213,0 +170785514054,213,0 +170785514102,213,0 +170785514151,214,0 +170785514199,213,0 +170785514249,213,0 +170785514298,213,0 +170785514346,214,0 +170785514394,214,0 +170785514442,214,0 +170785514492,214,0 +170785514540,214,0 +170785514588,214,0 +170785514636,214,0 +170785514684,213,0 +170785514731,213,0 +170785514779,213,0 +170785514829,213,0 +170785514878,213,0 +170785514928,213,0 +170785514976,213,0 +170785515025,213,0 +170785515073,213,0 +170785515121,213,0 +170785515169,213,0 +170785515217,213,0 +170785515267,213,0 +170785515316,213,0 +170785515366,213,0 +170785515414,213,0 +170785515463,213,0 +170785515513,213,0 +170785515562,213,0 +170785515610,213,0 +170785515658,212,0 +170785515707,213,0 +170785515755,213,0 +170785515803,213,0 +170785515853,212,0 +170785515901,213,0 +170785515949,213,0 +170785515997,213,0 +170785516045,213,0 +170785516092,213,0 +170785516140,213,0 +170785516190,213,0 +170785516238,213,0 +170785516286,213,0 +170785516334,213,0 +170785516383,213,0 +170785516433,213,0 +170785516481,214,0 +170785516529,213,0 +170785516578,212,0 +170785516626,213,0 +170785516675,213,0 +170785516723,212,0 +170785516773,213,0 +170785516821,213,0 +170785516869,213,0 +170785516917,213,0 +170785516965,213,0 +170785517013,213,0 +170785517060,213,0 +170785517108,213,0 +170785517156,213,0 +170785517204,213,0 +170785517252,213,0 +170785517300,213,0 +170785517348,214,0 +170785517396,213,0 +170785517444,213,0 +170785517492,213,0 +170785517540,213,0 +170785517589,213,0 +170785517637,213,0 +170785517685,213,0 +170785517733,213,0 +170785517783,213,0 +170785517831,213,0 +170785517880,213,0 +170785517928,213,0 +170785517978,213,0 +170785518026,213,0 +170785518074,213,0 +170785518121,213,0 +170785518171,214,0 +170785518221,213,0 +170785518270,214,0 +170785518318,214,0 +170785518368,214,0 +170785518417,213,0 +170785518467,212,0 +170785518515,212,0 +170785518562,213,0 +170785518612,213,0 +170785518660,213,0 +170785518708,213,0 +170785518756,213,0 +170785518804,213,0 +170785518852,213,0 +170785518901,213,0 +170785518949,213,0 +170785518999,213,0 +170785519047,213,0 +170785519095,213,0 +170785519144,214,0 +170785519194,214,0 +170785519243,214,0 +170785519291,214,0 +170785519339,213,0 +170785519387,212,0 +170785519435,213,0 +170785519484,213,0 +170785519532,213,0 +170785519580,212,0 +170785519628,213,0 +170785519676,213,0 +170785519724,213,0 +170785519772,213,0 +170785519821,213,0 +170785519869,213,0 +170785519919,213,0 +170785519967,213,0 +170785520015,213,0 +170785520064,213,0 +170785520112,213,0 +170785520160,213,0 +170785520210,214,0 +170785520259,212,0 +170785520309,213,0 +170785520357,213,0 +170785520404,212,0 +170785520452,213,0 +170785520502,213,0 +170785520551,213,0 +170785520599,212,0 +170785520647,213,0 +170785520695,213,0 +170785520744,213,0 +170785520794,213,0 +170785520842,213,0 +170785520890,213,0 +170785520938,213,0 +170785520987,213,0 +170785521035,213,0 +170785521083,213,0 +170785521133,213,0 +170785521181,213,0 +170785521228,213,0 +170785521276,212,0 +170785521324,213,0 +170785521374,213,0 +170785521423,213,0 +170785521471,213,0 +170785521519,213,0 +170785521569,213,0 +170785521617,213,0 +170785521665,213,0 +170785521714,213,0 +170785521762,213,0 +170785521810,214,0 +170785521858,214,0 +170785521906,213,0 +170785521956,214,0 +170785522005,214,0 +170785522054,214,0 +170785522102,213,0 +170785522152,213,0 +170785522201,213,0 +170785522251,213,0 +170785522300,213,0 +170785522350,213,0 +170785522398,213,0 +170785522446,213,0 +170785522493,213,0 +170785522541,213,0 +170785522591,213,0 +170785522639,213,0 +170785522688,213,0 +170785522736,213,0 +170785522784,213,0 +170785522832,214,0 +170785522882,213,0 +170785522930,213,0 +170785522978,214,0 +170785523026,213,0 +170785523075,213,0 +170785523123,213,0 +170785523171,212,0 +170785523219,213,0 +170785523269,213,0 +170785523317,213,0 +170785523365,213,0 +170785523414,213,0 +170785523464,213,0 +170785523513,213,0 +170785523561,213,0 +170785523609,213,0 +170785523657,213,0 +170785523704,213,0 +170785523754,214,0 +170785523802,214,0 +170785523850,214,0 +170785523898,214,0 +170785523946,213,0 +170785523994,213,0 +170785524042,213,0 +170785524090,213,0 +170785524139,213,0 +170785524187,213,0 +170785524235,213,0 +170785524283,213,0 +170785524333,213,0 +170785524380,213,0 +170785524428,213,0 +170785524476,213,0 +170785524524,213,0 +170785524572,213,0 +170785524622,213,0 +170785524670,214,0 +170785524717,214,0 +170785524765,214,0 +170785524813,214,0 +170785524863,213,0 +170785524912,213,0 +170785524960,213,0 +170785525008,213,0 +170785525056,213,0 +170785525104,213,0 +170785525154,213,0 +170785525202,213,0 +170785525250,213,0 +170785525298,213,0 +170785525347,213,0 +170785525395,213,0 +170785525443,213,0 +170785525493,214,0 +170785525542,213,0 +170785525590,213,0 +170785525639,213,0 +170785525689,214,0 +170785525739,213,0 +170785525788,214,0 +170785525836,213,0 +170785525884,213,0 +170785525934,213,0 +170785525981,213,0 +170785526029,213,0 +170785526077,213,0 +170785526125,213,0 +170785526173,213,0 +170785526221,213,0 +170785526270,213,0 +170785526320,213,0 +170785526368,213,0 +170785526416,213,0 +170785526464,213,0 +170785526513,213,0 +170785526561,214,0 +170785526611,213,0 +170785526659,214,0 +170785526708,214,0 +170785526756,213,0 +170785526806,213,0 +170785526854,212,0 +170785526903,213,0 +170785526951,213,0 +170785526999,213,0 +170785527048,213,0 +170785527096,213,0 +170785527144,213,0 +170785527192,213,0 +170785527241,213,0 +170785527289,213,0 +170785527337,213,0 +170785527385,213,0 +170785527433,214,0 +170785527481,213,0 +170785527529,214,0 +170785527577,214,0 +170785527625,213,0 +170785527673,213,0 +170785527722,212,0 +170785527770,213,0 +170785527818,212,0 +170785527868,213,0 +170785527916,213,0 +170785527963,213,0 +170785528013,213,0 +170785528061,213,0 +170785528110,213,0 +170785528158,213,0 +170785528206,213,0 +170785528254,213,0 +170785528302,213,0 +170785528352,213,0 +170785528401,214,0 +170785528449,213,0 +170785528497,214,0 +170785528547,214,0 +170785528595,214,0 +170785528644,213,0 +170785528694,212,0 +170785528741,213,0 +170785528789,213,0 +170785528837,213,0 +170785528885,213,0 +170785528933,213,0 +170785528981,213,0 +170785529029,213,0 +170785529077,213,0 +170785529124,213,0 +170785529172,213,0 +170785529220,213,0 +170785529270,213,0 +170785529318,213,0 +170785529367,214,0 +170785529415,213,0 +170785529463,214,0 +170785529513,213,0 +170785529561,213,0 +170785529609,213,0 +170785529657,213,0 +170785529707,213,0 +170785529755,213,0 +170785529803,213,0 +170785529851,213,0 +170785529900,214,0 +170785529948,213,0 +170785529996,213,0 +170785530045,213,0 +170785530095,213,0 +170785530143,214,0 +170785530192,214,0 +170785530240,214,0 +170785530288,214,0 +170785530338,214,0 +170785530385,214,0 +170785530433,213,0 +170785530481,213,0 +170785530529,213,0 +170785530577,213,0 +170785530627,213,0 +170785530675,213,0 +170785530723,213,0 +170785530770,213,0 +170785530820,213,0 +170785530868,213,0 +170785530916,213,0 +170785530964,214,0 +170785531012,213,0 +170785531060,214,0 +170785531108,214,0 +170785531157,214,0 +170785531205,214,0 +170785531253,214,0 +170785531302,214,0 +170785531350,214,0 +170785531398,213,0 +170785531446,212,0 +170785531494,213,0 +170785531542,213,0 +170785531590,213,0 +170785531638,213,0 +170785531686,213,0 +170785531734,213,0 +170785531782,213,0 +170785531830,213,0 +170785531877,213,0 +170785531925,213,0 +170785531973,213,0 +170785532023,214,0 +170785532070,214,0 +170785532118,213,0 +170785532166,213,0 +170785532214,214,0 +170785532262,213,0 +170785532310,213,0 +170785532358,213,0 +170785532406,213,0 +170785532453,213,0 +170785532501,213,0 +170785532549,213,0 +170785532597,213,0 +170785532645,213,0 +170785532692,213,0 +170785532740,213,0 +170785532788,213,0 +170785532836,213,0 +170785532884,213,0 +170785532932,213,0 +170785532979,213,0 +170785533027,213,0 +170785533077,213,0 +170785533125,213,0 +170785533172,213,0 +170785533220,213,0 +170785533268,213,0 +170785533316,213,0 +170785533364,212,0 +170785533412,213,0 +170785533459,212,0 +170785533507,213,0 +170785533555,213,0 +170785533603,213,0 +170785533651,213,0 +170785533699,213,0 +170785533749,213,0 +170785533797,213,0 +170785533845,213,0 +170785533892,213,0 +170785533942,213,0 +170785533990,213,0 +170785534038,213,0 +170785534087,213,0 +170785534137,213,0 +170785534184,213,0 +170785534234,212,0 +170785534283,213,0 +170785534331,212,0 +170785534379,213,0 +170785534427,213,0 +170785534475,213,0 +170785534523,213,0 +170785534573,213,0 +170785534621,213,0 +170785534668,213,0 +170785534716,213,0 +170785534766,213,0 +170785534814,214,0 +170785534863,213,0 +170785534911,214,0 +170785534961,214,0 +170785535009,214,0 +170785535057,214,0 +170785535106,213,0 +170785535154,213,0 +170785535203,212,0 +170785535251,212,0 +170785535299,213,0 +170785535347,213,0 +170785535395,213,0 +170785535443,213,0 +170785535491,213,0 +170785535539,213,0 +170785535587,213,0 +170785535637,213,0 +170785535685,213,0 +170785535734,213,0 +170785535784,213,0 +170785535833,213,0 +170785535881,214,0 +170785535930,214,0 +170785535978,213,0 +170785536028,213,0 +170785536076,213,0 +170785536125,212,0 +170785536173,212,0 +170785536221,212,0 +170785536269,213,0 +170785536317,213,0 +170785536365,213,0 +170785536413,213,0 +170785536461,213,0 +170785536509,213,0 +170785536557,213,0 +170785536604,213,0 +170785536652,213,0 +170785536700,213,0 +170785536748,213,0 +170785536796,214,0 +170785536846,213,0 +170785536893,213,0 +170785536941,214,0 +170785536989,213,0 +170785537039,213,0 +170785537088,213,0 +170785537138,213,0 +170785537187,213,0 +170785537237,213,0 +170785537284,213,0 +170785537332,213,0 +170785537382,213,0 +170785537430,213,0 +170785537478,213,0 +170785537525,213,0 +170785537573,213,0 +170785537621,213,0 +170785537669,213,0 +170785537719,213,0 +170785537767,213,0 +170785537815,214,0 +170785537863,213,0 +170785537911,213,0 +170785537960,212,0 +170785538008,212,0 +170785538058,212,0 +170785538106,213,0 +170785538154,212,0 +170785538201,213,0 +170785538249,213,0 +170785538297,213,0 +170785538347,213,0 +170785538395,213,0 +170785538443,213,0 +170785538491,213,0 +170785538539,213,0 +170785538587,214,0 +170785538634,213,0 +170785538682,213,0 +170785538730,213,0 +170785538778,214,0 +170785538826,213,0 +170785538874,213,0 +170785538922,213,0 +170785538971,213,0 +170785539020,212,0 +170785539068,212,0 +170785539116,212,0 +170785539164,213,0 +170785539212,213,0 +170785539260,213,0 +170785539308,213,0 +170785539357,213,0 +170785539405,213,0 +170785539454,213,0 +170785539504,213,0 +170785539554,213,0 +170785539603,213,0 +170785539651,213,0 +170785539699,213,0 +170785539747,213,0 +170785539796,213,0 +170785539844,212,0 +170785539892,213,0 +170785539940,212,0 +170785539988,212,0 +170785540037,213,0 +170785540085,213,0 +170785540133,213,0 +170785540181,213,0 +170785540229,213,0 +170785540277,213,0 +170785540327,213,0 +170785540375,213,0 +170785540424,213,0 +170785540472,214,0 +170785540520,213,0 +170785540568,214,0 +170785540616,214,0 +170785540663,214,0 +170785540711,213,0 +170785540759,213,0 +170785540807,213,0 +170785540855,213,0 +170785540903,213,0 +170785540951,213,0 +170785540999,213,0 +170785541047,213,0 +170785541097,213,0 +170785541145,213,0 +170785541193,213,0 +170785541240,213,0 +170785541288,213,0 +170785541336,213,0 +170785541386,213,0 +170785541435,213,0 +170785541483,213,0 +170785541531,213,0 +170785541579,213,0 +170785541629,213,0 +170785541676,213,0 +170785541724,213,0 +170785541772,212,0 +170785541820,213,0 +170785541868,213,0 +170785541916,213,0 +170785541964,213,0 +170785542012,213,0 +170785542060,213,0 +170785542110,213,0 +170785542158,213,0 +170785542207,213,0 +170785542255,213,0 +170785542303,213,0 +170785542352,214,0 +170785542402,214,0 +170785542450,213,0 +170785542498,214,0 +170785542546,213,0 +170785542594,213,0 +170785542641,212,0 +170785542691,213,0 +170785542739,213,0 +170785542787,213,0 +170785542834,213,0 +170785542884,213,0 +170785542932,213,0 +170785542981,213,0 +170785543029,213,0 +170785543077,213,0 +170785543125,213,0 +170785543173,213,0 +170785543221,213,0 +170785543269,213,0 +170785543318,214,0 +170785543366,214,0 +170785543414,213,0 +170785543462,214,0 +170785543510,213,0 +170785543557,212,0 +170785543605,213,0 +170785543653,213,0 +170785543702,213,0 +170785543750,213,0 +170785543798,213,0 +170785543848,213,0 +170785543897,213,0 +170785543945,213,0 +170785543993,213,0 +170785544040,213,0 +170785544088,213,0 +170785544138,213,0 +170785544186,213,0 +170785544233,214,0 +170785544281,213,0 +170785544329,214,0 +170785544377,214,0 +170785544425,213,0 +170785544473,212,0 +170785544521,212,0 +170785544570,213,0 +170785544618,212,0 +170785544666,213,0 +170785544714,212,0 +170785544762,213,0 +170785544810,213,0 +170785544857,213,0 +170785544905,213,0 +170785544953,213,0 +170785545003,213,0 +170785545051,213,0 +170785545098,213,0 +170785545148,213,0 +170785545196,213,0 +170785545244,213,0 +170785545293,213,0 +170785545341,213,0 +170785545389,212,0 +170785545437,212,0 +170785545484,213,0 +170785545532,213,0 +170785545580,213,0 +170785545630,213,0 +170785545678,213,0 +170785545725,213,0 +170785545773,213,0 +170785545821,213,0 +170785545869,213,0 +170785545917,213,0 +170785545966,213,0 +170785546014,213,0 +170785546062,213,0 +170785546110,213,0 +170785546158,213,0 +170785546206,213,0 +170785546255,213,0 +170785546303,213,0 +170785546351,212,0 +170785546400,213,0 +170785546448,212,0 +170785546496,212,0 +170785546544,212,0 +170785546592,213,0 +170785546641,213,0 +170785546689,213,0 +170785546737,213,0 +170785546785,213,0 +170785546832,213,0 +170785546880,213,0 +170785546928,213,0 +170785546976,213,0 +170785547024,213,0 +170785547072,213,0 +170785547120,213,0 +170785547167,214,0 +170785547215,213,0 +170785547263,212,0 +170785547311,212,0 +170785547359,213,0 +170785547407,213,0 +170785547454,213,0 +170785547502,213,0 +170785547550,213,0 +170785547598,213,0 +170785547647,213,0 +170785547695,213,0 +170785547743,213,0 +170785547791,213,0 +170785547839,213,0 +170785547887,213,0 +170785547935,213,0 +170785547982,213,0 +170785548030,213,0 +170785548078,213,0 +170785548126,213,0 +170785548174,213,0 +170785548222,212,0 +170785548270,212,0 +170785548317,212,0 +170785548365,212,0 +170785548413,213,0 +170785548461,213,0 +170785548509,213,0 +170785548558,213,0 +170785548606,213,0 +170785548654,213,0 +170785548702,213,0 +170785548750,213,0 +170785548798,213,0 +170785548845,213,0 +170785548895,213,0 +170785548943,214,0 +170785548991,213,0 +170785549038,213,0 +170785549086,213,0 +170785549136,212,0 +170785549184,213,0 +170785549233,213,0 +170785549281,213,0 +170785549330,213,0 +170785549378,213,0 +170785549426,213,0 +170785549474,213,0 +170785549522,213,0 +170785549570,213,0 +170785549618,213,0 +170785549667,213,0 +170785549715,213,0 +170785549763,213,0 +170785549811,213,0 +170785549859,213,0 +170785549907,214,0 +170785549954,213,0 +170785550004,213,0 +170785550052,213,0 +170785550100,213,0 +170785550149,213,0 +170785550197,213,0 +170785550245,213,0 +170785550293,213,0 +170785550341,213,0 +170785550388,213,0 +170785550438,213,0 +170785550486,213,0 +170785550534,213,0 +170785550583,213,0 +170785550631,213,0 +170785550679,214,0 +170785550728,214,0 +170785550776,213,0 +170785550824,214,0 +170785550872,213,0 +170785550919,213,0 +170785550967,213,0 +170785551015,213,0 +170785551063,213,0 +170785551111,213,0 +170785551159,213,0 +170785551206,213,0 +170785551254,213,0 +170785551302,213,0 +170785551350,213,0 +170785551398,213,0 +170785551446,213,0 +170785551494,213,0 +170785551542,214,0 +170785551590,214,0 +170785551637,214,0 +170785551687,214,0 +170785551735,213,0 +170785551784,214,0 +170785551834,214,0 +170785551882,213,0 +170785551930,213,0 +170785551979,213,0 +170785552027,213,0 +170785552077,213,0 +170785552125,213,0 +170785552174,213,0 +170785552222,213,0 +170785552270,213,0 +170785552318,214,0 +170785552366,214,0 +170785552414,214,0 +170785552462,214,0 +170785552511,214,0 +170785552561,214,0 +170785552611,214,0 +170785552659,214,0 +170785552708,213,0 +170785552756,213,0 +170785552804,213,0 +170785552853,213,0 +170785552901,213,0 +170785552949,213,0 +170785552997,213,0 +170785553045,213,0 +170785553093,213,0 +170785553141,213,0 +170785553189,213,0 +170785553239,213,0 +170785553287,213,0 +170785553334,213,0 +170785553382,213,0 +170785553430,213,0 +170785553478,214,0 +170785553526,214,0 +170785553574,214,0 +170785553624,214,0 +170785553673,214,0 +170785553723,213,0 +170785553770,213,0 +170785553820,212,0 +170785553869,212,0 +170785553919,213,0 +170785553967,213,0 +170785554015,213,0 +170785554064,213,0 +170785554112,213,0 +170785554162,213,0 +170785554209,213,0 +170785554259,213,0 +170785554307,213,0 +170785554355,213,0 +170785554403,214,0 +170785554451,213,0 +170785554499,213,0 +170785554548,213,0 +170785554596,213,0 +170785554644,213,0 +170785554692,213,0 +170785554742,213,0 +170785554789,213,0 +170785554837,213,0 +170785554887,213,0 +170785554935,213,0 +170785554984,213,0 +170785555034,213,0 +170785555082,213,0 +170785555131,213,0 +170785555179,213,0 +170785555227,213,0 +170785555275,213,0 +170785555325,213,0 +170785555373,213,0 +170785555421,213,0 +170785555470,214,0 +170785555520,213,0 +170785555568,213,0 +170785555616,213,0 +170785555665,213,0 +170785555713,213,0 +170785555761,213,0 +170785555809,213,0 +170785555857,213,0 +170785555905,213,0 +170785555954,213,0 +170785556004,213,0 +170785556052,213,0 +170785556101,213,0 +170785556151,213,0 +170785556200,214,0 +170785556248,214,0 +170785556298,214,0 +170785556346,214,0 +170785556394,214,0 +170785556441,214,0 +170785556491,213,0 +170785556539,213,0 +170785556587,213,0 +170785556636,213,0 +170785556686,213,0 +170785556734,213,0 +170785556782,213,0 +170785556830,213,0 +170785556878,213,0 +170785556926,213,0 +170785556974,213,0 +170785557022,213,0 +170785557070,214,0 +170785557118,213,0 +170785557167,214,0 +170785557215,214,0 +170785557264,214,0 +170785557312,214,0 +170785557360,214,0 +170785557408,213,0 +170785557456,213,0 +170785557504,213,0 +170785557554,213,0 +170785557603,213,0 +170785557651,213,0 +170785557699,213,0 +170785557747,213,0 +170785557795,213,0 +170785557845,213,0 +170785557893,213,0 +170785557941,214,0 +170785557990,214,0 +170785558038,214,0 +170785558086,214,0 +170785558134,214,0 +170785558182,214,0 +170785558231,214,0 +170785558281,214,0 +170785558329,214,0 +170785558379,213,0 +170785558426,213,0 +170785558476,213,0 +170785558524,213,0 +170785558572,213,0 +170785558620,213,0 +170785558669,213,0 +170785558717,213,0 +170785558765,213,0 +170785558813,213,0 +170785558861,213,0 +170785558910,213,0 +170785558960,213,0 +170785559009,214,0 +170785559057,214,0 +170785559105,214,0 +170785559153,214,0 +170785559201,214,0 +170785559249,214,0 +170785559297,213,0 +170785559347,212,0 +170785559396,213,0 +170785559444,213,0 +170785559492,213,0 +170785559540,213,0 +170785559588,213,0 +170785559636,213,0 +170785559685,213,0 +170785559735,213,0 +170785559783,213,0 +170785559830,213,0 +170785559878,213,0 +170785559926,213,0 +170785559974,213,0 +170785560022,213,0 +170785560072,213,0 +170785560120,214,0 +170785560168,214,0 +170785560216,213,0 +170785560264,213,0 +170785560313,213,0 +170785560363,213,0 +170785560411,213,0 +170785560458,213,0 +170785560506,213,0 +170785560554,213,0 +170785560604,213,0 +170785560652,213,0 +170785560701,213,0 +170785560749,213,0 +170785560797,213,0 +170785560847,214,0 +170785560895,214,0 +170785560942,214,0 +170785560990,213,0 +170785561038,214,0 +170785561086,214,0 +170785561134,214,0 +170785561183,213,0 +170785561231,213,0 +170785561279,213,0 +170785561329,213,0 +170785561377,213,0 +170785561425,213,0 +170785561474,213,0 +170785561522,213,0 +170785561570,213,0 +170785561618,213,0 +170785561667,213,0 +170785561717,213,0 +170785561765,213,0 +170785561812,213,0 +170785561860,214,0 +170785561908,214,0 +170785561956,213,0 +170785562004,214,0 +170785562053,213,0 +170785562101,213,0 +170785562149,213,0 +170785562198,213,0 +170785562246,213,0 +170785562294,213,0 +170785562342,213,0 +170785562390,213,0 +170785562438,213,0 +170785562486,213,0 +170785562533,213,0 +170785562581,213,0 +170785562631,213,0 +170785562679,213,0 +170785562727,213,0 +170785562776,213,0 +170785562824,213,0 +170785562872,213,0 +170785562920,213,0 +170785562970,214,0 +170785563019,213,0 +170785563067,213,0 +170785563115,213,0 +170785563163,213,0 +170785563211,213,0 +170785563259,213,0 +170785563307,213,0 +170785563355,213,0 +170785563403,213,0 +170785563451,213,0 +170785563498,213,0 +170785563546,213,0 +170785563594,213,0 +170785563642,213,0 +170785563690,213,0 +170785563738,214,0 +170785563786,213,0 +170785563834,213,0 +170785563882,214,0 +170785563930,214,0 +170785563979,213,0 +170785564028,213,0 +170785564076,213,0 +170785564124,213,0 +170785564172,213,0 +170785564222,213,0 +170785564270,213,0 +170785564318,213,0 +170785564367,213,0 +170785564415,213,0 +170785564463,213,0 +170785564511,214,0 +170785564559,214,0 +170785564608,214,0 +170785564656,214,0 +170785564704,214,0 +170785564752,214,0 +170785564800,214,0 +170785564848,214,0 +170785564898,213,0 +170785564946,213,0 +170785564994,213,0 +170785565041,213,0 +170785565089,213,0 +170785565139,213,0 +170785565187,213,0 +170785565234,213,0 +170785565282,213,0 +170785565330,213,0 +170785565378,213,0 +170785565426,213,0 +170785565474,213,0 +170785565522,213,0 +170785565569,213,0 +170785565617,213,0 +170785565665,213,0 +170785565715,213,0 +170785565763,214,0 +170785565811,213,0 +170785565858,213,0 +170785565908,212,0 +170785565956,213,0 +170785566004,212,0 +170785566052,213,0 +170785566101,213,0 +170785566149,212,0 +170785566197,212,0 +170785566246,213,0 +170785566294,213,0 +170785566344,213,0 +170785566393,213,0 +170785566443,213,0 +170785566492,213,0 +170785566540,213,0 +170785566588,212,0 +170785566636,213,0 +170785566684,214,0 +170785566733,213,0 +170785566781,213,0 +170785566829,213,0 +170785566877,213,0 +170785566925,213,0 +170785566975,213,0 +170785567023,213,0 +170785567072,213,0 +170785567120,213,0 +170785567169,213,0 +170785567219,213,0 +170785567267,213,0 +170785567315,213,0 +170785567363,213,0 +170785567412,213,0 +170785567460,213,0 +170785567508,213,0 +170785567556,213,0 +170785567603,213,0 +170785567651,213,0 +170785567699,213,0 +170785567747,213,0 +170785567795,213,0 +170785567843,213,0 +170785567893,213,0 +170785567941,213,0 +170785567990,213,0 +170785568038,213,0 +170785568086,213,0 +170785568134,213,0 +170785568182,213,0 +170785568230,213,0 +170785568278,213,0 +170785568327,213,0 +170785568375,213,0 +170785568425,213,0 +170785568473,214,0 +170785568521,213,0 +170785568569,214,0 +170785568618,213,0 +170785568666,213,0 +170785568716,213,0 +170785568764,213,0 +170785568811,213,0 +170785568861,213,0 +170785568911,213,0 +170785568958,213,0 +170785569006,213,0 +170785569056,213,0 +170785569104,213,0 +170785569153,213,0 +170785569201,213,0 +170785569249,213,0 +170785569297,213,0 +170785569345,213,0 +170785569393,213,0 +170785569441,214,0 +170785569489,213,0 +170785569538,213,0 +170785569586,213,0 +170785569636,213,0 +170785569684,213,0 +170785569733,213,0 +170785569783,213,0 +170785569830,213,0 +170785569878,213,0 +170785569926,213,0 +170785569974,213,0 +170785570022,213,0 +170785570070,213,0 +170785570118,213,0 +170785570166,214,0 +170785570214,213,0 +170785570262,214,0 +170785570310,214,0 +170785570359,214,0 +170785570407,214,0 +170785570455,213,0 +170785570503,213,0 +170785570551,213,0 +170785570599,213,0 +170785570647,213,0 +170785570695,213,0 +170785570743,213,0 +170785570791,213,0 +170785570839,213,0 +170785570887,213,0 +170785570935,213,0 +170785570983,213,0 +170785571032,213,0 +170785571080,214,0 +170785571129,214,0 +170785571177,214,0 +170785571225,214,0 +170785571275,214,0 +170785571324,214,0 +170785571372,214,0 +170785571420,213,0 +170785571470,213,0 +170785571518,213,0 +170785571567,213,0 +170785571615,213,0 +170785571665,213,0 +170785571713,213,0 +170785571762,213,0 +170785571812,213,0 +170785571860,213,0 +170785571908,214,0 +170785571957,214,0 +170785572005,214,0 +170785572053,214,0 +170785572101,214,0 +170785572149,214,0 +170785572197,214,0 +170785572245,214,0 +170785572294,213,0 +170785572342,213,0 +170785572392,213,0 +170785572440,213,0 +170785572488,213,0 +170785572537,213,0 +170785572585,213,0 +170785572633,213,0 +170785572681,213,0 +170785572729,213,0 +170785572777,213,0 +170785572825,214,0 +170785572873,214,0 +170785572921,214,0 +170785572969,214,0 +170785573017,214,0 +170785573065,214,0 +170785573113,214,0 +170785573160,214,0 +170785573208,213,0 +170785573256,213,0 +170785573304,213,0 +170785573354,213,0 +170785573402,213,0 +170785573450,213,0 +170785573499,213,0 +170785573549,213,0 +170785573597,213,0 +170785573645,213,0 +170785573693,213,0 +170785573741,214,0 +170785573790,214,0 +170785573838,214,0 +170785573886,214,0 +170785573935,214,0 +170785573985,214,0 +170785574033,214,0 +170785574082,214,0 +170785574132,214,0 +170785574181,213,0 +170785574229,213,0 +170785574277,213,0 +170785574327,213,0 +170785574376,213,0 +170785574425,213,0 +170785574473,213,0 +170785574521,213,0 +170785574569,213,0 +170785574617,214,0 +170785574667,214,0 +170785574714,214,0 +170785574762,214,0 +170785574810,214,0 +170785574858,214,0 +170785574906,214,0 +170785574954,214,0 +170785575002,214,0 +170785575051,214,0 +170785575099,213,0 +170785575147,213,0 +170785575195,213,0 +170785575245,213,0 +170785575293,213,0 +170785575341,213,0 +170785575389,213,0 +170785575437,213,0 +170785575485,213,0 +170785575532,213,0 +170785575582,213,0 +170785575630,213,0 +170785575678,213,0 +170785575726,213,0 +170785575774,213,0 +170785575822,213,0 +170785575870,214,0 +170785575918,214,0 +170785575966,213,0 +170785576014,214,0 +170785576061,213,0 +170785576109,213,0 +170785576157,213,0 +170785576205,213,0 +170785576253,213,0 +170785576301,213,0 +170785576349,213,0 +170785576396,213,0 +170785576444,213,0 +170785576494,213,0 +170785576542,213,0 +170785576591,214,0 +170785576639,213,0 +170785576687,214,0 +170785576737,214,0 +170785576784,214,0 +170785576832,214,0 +170785576880,214,0 +170785576928,214,0 +170785576976,213,0 +170785577024,213,0 +170785577074,213,0 +170785577122,213,0 +170785577170,213,0 +170785577219,213,0 +170785577269,213,0 +170785577318,213,0 +170785577366,213,0 +170785577414,213,0 +170785577464,213,0 +170785577513,213,0 +170785577561,213,0 +170785577609,213,0 +170785577657,214,0 +170785577705,214,0 +170785577753,214,0 +170785577802,214,0 +170785577850,214,0 +170785577898,213,0 +170785577948,213,0 +170785577996,213,0 +170785578044,213,0 +170785578093,213,0 +170785578143,213,0 +170785578192,213,0 +170785578240,213,0 +170785578290,213,0 +170785578338,213,0 +170785578386,213,0 +170785578434,213,0 +170785578482,213,0 +170785578530,213,0 +170785578579,213,0 +170785578627,213,0 +170785578677,213,0 +170785578726,213,0 +170785578776,214,0 +170785578824,213,0 +170785578872,213,0 +170785578920,213,0 +170785578969,213,0 +170785579017,213,0 +170785579066,213,0 +170785579114,213,0 +170785579164,213,0 +170785579212,213,0 +170785579260,213,0 +170785579309,213,0 +170785579359,213,0 +170785579407,213,0 +170785579456,213,0 +170785579506,213,0 +170785579554,213,0 +170785579602,214,0 +170785579650,213,0 +170785579698,213,0 +170785579746,213,0 +170785579794,212,0 +170785579841,213,0 +170785579891,213,0 +170785579940,213,0 +170785579990,213,0 +170785580039,213,0 +170785580087,213,0 +170785580135,213,0 +170785580183,213,0 +170785580231,213,0 +170785580279,213,0 +170785580327,213,0 +170785580375,214,0 +170785580423,213,0 +170785580471,214,0 +170785580519,214,0 +170785580567,214,0 +170785580615,214,0 +170785580664,213,0 +170785580712,213,0 +170785580760,213,0 +170785580810,213,0 +170785580858,213,0 +170785580907,213,0 +170785580957,213,0 +170785581006,213,0 +170785581054,213,0 +170785581102,213,0 +170785581150,213,0 +170785581200,213,0 +170785581248,213,0 +170785581296,213,0 +170785581344,213,0 +170785581392,214,0 +170785581441,214,0 +170785581489,214,0 +170785581537,214,0 +170785581585,214,0 +170785581634,213,0 +170785581682,213,0 +170785581730,213,0 +170785581778,213,0 +170785581826,213,0 +170785581874,213,0 +170785581922,213,0 +170785581972,213,0 +170785582019,213,0 +170785582068,213,0 +170785582117,213,0 +170785582165,213,0 +170785582213,213,0 +170785582261,213,0 +170785582310,214,0 +170785582358,213,0 +170785582406,213,0 +170785582454,213,0 +170785582504,214,0 +170785582552,213,0 +170785582600,213,0 +170785582649,213,0 +170785582699,213,0 +170785582748,213,0 +170785582796,213,0 +170785582844,213,0 +170785582894,213,0 +170785582942,213,0 +170785582990,213,0 +170785583038,213,0 +170785583086,213,0 +170785583133,214,0 +170785583181,213,0 +170785583229,214,0 +170785583277,214,0 +170785583325,213,0 +170785583375,214,0 +170785583424,214,0 +170785583472,213,0 +170785583520,213,0 +170785583569,213,0 +170785583619,213,0 +170785583667,213,0 +170785583717,213,0 +170785583764,213,0 +170785583812,213,0 +170785583860,213,0 +170785583910,213,0 +170785583959,213,0 +170785584007,213,0 +170785584055,213,0 +170785584103,213,0 +170785584151,213,0 +170785584201,213,0 +170785584248,213,0 +170785584296,213,0 +170785584344,214,0 +170785584392,214,0 +170785584440,213,0 +170785584488,213,0 +170785584536,213,0 +170785584584,213,0 +170785584632,213,0 +170785584680,213,0 +170785584728,213,0 +170785584778,213,0 +170785584827,213,0 +170785584875,213,0 +170785584924,213,0 +170785584974,213,0 +170785585023,213,0 +170785585071,213,0 +170785585121,213,0 +170785585170,213,0 +170785585218,213,0 +170785585266,214,0 +170785585314,214,0 +170785585362,212,0 +170785585410,213,0 +170785585460,213,0 +170785585508,213,0 +170785585557,213,0 +170785585605,213,0 +170785585655,213,0 +170785585702,213,0 +170785585750,213,0 +170785585800,214,0 +170785585849,213,0 +170785585899,214,0 +170785585947,214,0 +170785585995,214,0 +170785586043,214,0 +170785586092,214,0 +170785586140,214,0 +170785586190,214,0 +170785586238,214,0 +170785586286,213,0 +170785586334,213,0 +170785586383,213,0 +170785586433,213,0 +170785586480,213,0 +170785586530,213,0 +170785586578,213,0 +170785586627,213,0 +170785586677,213,0 +170785586726,213,0 +170785586774,213,0 +170785586824,214,0 +170785586872,214,0 +170785586921,214,0 +170785586969,214,0 +170785587019,214,0 +170785587067,214,0 +170785587115,214,0 +170785587163,214,0 +170785587212,213,0 +170785587262,213,0 +170785587311,213,0 +170785587359,213,0 +170785587407,213,0 +170785587455,213,0 +170785587505,213,0 +170785587553,213,0 +170785587600,213,0 +170785587648,213,0 +170785587698,213,0 +170785587746,214,0 +170785587794,213,0 +170785587842,214,0 +170785587889,214,0 +170785587937,214,0 +170785587985,214,0 +170785588035,213,0 +170785588083,214,0 +170785588132,213,0 +170785588180,213,0 +170785588230,213,0 +170785588279,213,0 +170785588329,213,0 +170785588377,213,0 +170785588425,213,0 +170785588473,213,0 +170785588522,213,0 +170785588572,213,0 +170785588620,213,0 +170785588669,213,0 +170785588717,213,0 +170785588767,213,0 +170785588815,213,0 +170785588863,214,0 +170785588912,214,0 +170785588961,213,0 +170785589011,214,0 +170785589059,213,0 +170785589108,213,0 +170785589156,213,0 +170785589206,213,0 +170785589254,213,0 +170785589303,213,0 +170785589351,213,0 +170785589399,213,0 +170785589447,213,0 +170785589495,213,0 +170785589543,213,0 +170785589591,213,0 +170785589639,213,0 +170785589687,213,0 +170785589735,213,0 +170785589784,213,0 +170785589833,213,0 +170785589881,214,0 +170785589929,214,0 +170785589977,214,0 +170785590025,213,0 +170785590073,213,0 +170785590121,213,0 +170785590169,213,0 +170785590217,213,0 +170785590266,213,0 +170785590314,213,0 +170785590362,213,0 +170785590410,213,0 +170785590457,213,0 +170785590505,213,0 +170785590553,213,0 +170785590601,213,0 +170785590649,213,0 +170785590697,213,0 +170785590745,213,0 +170785590793,214,0 +170785590840,214,0 +170785590888,214,0 +170785590936,213,0 +170785590986,213,0 +170785591035,213,0 +170785591085,213,0 +170785591134,213,0 +170785591182,213,0 +170785591231,213,0 +170785591279,213,0 +170785591327,213,0 +170785591375,213,0 +170785591423,213,0 +170785591471,213,0 +170785591519,213,0 +170785591567,213,0 +170785591615,213,0 +170785591662,214,0 +170785591710,213,0 +170785591758,213,0 +170785591806,213,0 +170785591854,213,0 +170785591902,213,0 +170785591950,213,0 +170785591999,213,0 +170785592047,213,0 +170785592095,213,0 +170785592143,213,0 +170785592191,213,0 +170785592240,213,0 +170785592290,213,0 +170785592337,213,0 +170785592385,213,0 +170785592433,213,0 +170785592481,213,0 +170785592529,213,0 +170785592579,213,0 +170785592627,213,0 +170785592674,214,0 +170785592722,214,0 +170785592770,213,0 +170785592818,213,0 +170785592866,213,0 +170785592914,213,0 +170785592962,213,0 +170785593010,213,0 +170785593060,213,0 +170785593108,213,0 +170785593156,213,0 +170785593204,213,0 +170785593251,213,0 +170785593299,213,0 +170785593347,213,0 +170785593397,213,0 +170785593445,213,0 +170785593493,214,0 +170785593540,214,0 +170785593588,214,0 +170785593636,214,0 +170785593684,214,0 +170785593732,213,0 +170785593780,213,0 +170785593829,213,0 +170785593877,213,0 +170785593925,213,0 +170785593973,213,0 +170785594021,213,0 +170785594070,213,0 +170785594119,213,0 +170785594167,213,0 +170785594215,213,0 +170785594265,213,0 +170785594313,213,0 +170785594361,214,0 +170785594410,214,0 +170785594460,214,0 +170785594508,213,0 +170785594555,214,0 +170785594603,214,0 +170785594651,213,0 +170785594699,213,0 +170785594747,213,0 +170785594795,213,0 +170785594843,213,0 +170785594891,213,0 +170785594939,213,0 +170785594987,213,0 +170785595035,213,0 +170785595084,213,0 +170785595132,213,0 +170785595182,213,0 +170785595230,214,0 +170785595278,214,0 +170785595325,213,0 +170785595373,213,0 +170785595423,214,0 +170785595472,214,0 +170785595520,214,0 +170785595568,214,0 +170785595616,213,0 +170785595664,213,0 +170785595714,213,0 +170785595761,213,0 +170785595809,213,0 +170785595859,213,0 +170785595908,213,0 +170785595958,213,0 +170785596007,213,0 +170785596055,213,0 +170785596103,214,0 +170785596151,214,0 +170785596199,214,0 +170785596249,214,0 +170785596297,214,0 +170785596345,214,0 +170785596394,214,0 +170785596442,214,0 +170785596490,214,0 +170785596539,213,0 +170785596587,213,0 +170785596635,213,0 +170785596683,213,0 +170785596733,213,0 +170785596781,213,0 +170785596830,213,0 +170785596878,214,0 +170785596926,214,0 +170785596975,214,0 +170785597023,214,0 +170785597071,214,0 +170785597119,214,0 +170785597167,214,0 +170785597215,214,0 +170785597263,214,0 +170785597310,214,0 +170785597360,214,0 +170785597407,214,0 +170785597455,213,0 +170785597503,213,0 +170785597553,213,0 +170785597601,213,0 +170785597649,213,0 +170785597697,213,0 +170785597745,213,0 +170785597792,213,0 +170785597840,213,0 +170785597888,213,0 +170785597938,214,0 +170785597986,213,0 +170785598034,214,0 +170785598082,214,0 +170785598130,214,0 +170785598178,214,0 +170785598225,214,0 +170785598273,214,0 +170785598321,214,0 +170785598369,213,0 +170785598417,213,0 +170785598467,213,0 +170785598514,213,0 +170785598564,213,0 +170785598612,213,0 +170785598660,213,0 +170785598708,213,0 +170785598757,213,0 +170785598807,213,0 +170785598855,213,0 +170785598904,213,0 +170785598953,213,0 +170785599003,213,0 +170785599053,213,0 +170785599102,213,0 +170785599150,214,0 +170785599198,214,0 +170785599245,214,0 +170785599293,213,0 +170785599341,213,0 +170785599389,213,0 +170785599437,213,0 +170785599485,213,0 +170785599533,213,0 +170785599580,213,0 +170785599628,213,0 +170785599678,213,0 +170785599725,213,0 +170785599773,213,0 +170785599821,213,0 +170785599869,213,0 +170785599917,213,0 +170785599965,213,0 +170785600013,213,0 +170785600061,214,0 +170785600109,213,0 +170785600156,213,0 +170785600204,213,0 +170785600252,213,0 +170785600300,213,0 +170785600348,213,0 +170785600396,213,0 +170785600443,213,0 +170785600491,213,0 +170785600539,213,0 +170785600587,213,0 +170785600635,213,0 +170785600683,213,0 +170785600730,213,0 +170785600778,213,0 +170785600828,213,0 +170785600878,213,0 +170785600925,213,0 +170785600973,214,0 +170785601021,214,0 +170785601069,214,0 +170785601119,214,0 +170785601168,213,0 +170785601216,213,0 +170785601264,213,0 +170785601312,213,0 +170785601360,213,0 +170785601408,213,0 +170785601456,213,0 +170785601504,213,0 +170785601551,213,0 +170785601601,213,0 +170785601649,213,0 +170785601696,213,0 +170785601746,214,0 +170785601794,213,0 +170785601842,214,0 +170785601890,214,0 +170785601937,214,0 +170785601985,214,0 +170785602035,213,0 +170785602082,213,0 +170785602130,213,0 +170785602178,212,0 +170785602226,213,0 +170785602274,213,0 +170785602321,213,0 +170785602371,213,0 +170785602419,213,0 +170785602466,213,0 +170785602514,213,0 +170785602562,213,0 +170785602610,213,0 +170785602658,213,0 +170785602707,213,0 +170785602755,213,0 +170785602803,214,0 +170785602851,214,0 +170785602900,214,0 +170785602948,214,0 +170785602996,214,0 +170785603045,213,0 +170785603093,213,0 +170785603141,213,0 +170785603189,213,0 +170785603237,213,0 +170785603285,213,0 +170785603332,213,0 +170785603382,213,0 +170785603430,213,0 +170785603477,213,0 +170785603525,213,0 +170785603573,213,0 +170785603621,213,0 +170785603669,214,0 +170785603717,214,0 +170785603765,213,0 +170785603813,214,0 +170785603861,214,0 +170785603908,214,0 +170785603956,213,0 +170785604004,213,0 +170785604054,213,0 +170785604102,213,0 +170785604150,213,0 +170785604198,213,0 +170785604247,213,0 +170785604297,213,0 +170785604345,213,0 +170785604394,213,0 +170785604442,213,0 +170785604490,213,0 +170785604538,213,0 +170785604588,213,0 +170785604637,213,0 +170785604685,213,0 +170785604733,213,0 +170785604783,214,0 +170785604831,213,0 +170785604880,213,0 +170785604928,213,0 +170785604976,213,0 +170785605024,213,0 +170785605072,213,0 +170785605120,213,0 +170785605168,213,0 +170785605217,213,0 +170785605265,213,0 +170785605315,213,0 +170785605363,213,0 +170785605412,213,0 +170785605460,213,0 +170785605508,214,0 +170785605556,213,0 +170785605606,214,0 +170785605654,214,0 +170785605702,213,0 +170785605751,214,0 +170785605799,214,0 +170785605847,213,0 +170785605895,213,0 +170785605943,213,0 +170785605992,213,0 +170785606040,213,0 +170785606088,213,0 +170785606136,213,0 +170785606184,213,0 +170785606233,213,0 +170785606281,213,0 +170785606329,213,0 +170785606377,213,0 +170785606425,213,0 +170785606473,214,0 +170785606523,214,0 +170785606570,214,0 +170785606618,214,0 +170785606666,214,0 +170785606714,214,0 +170785606762,213,0 +170785606810,213,0 +170785606858,212,0 +170785606906,213,0 +170785606954,213,0 +170785607002,213,0 +170785607050,212,0 +170785607100,213,0 +170785607148,213,0 +170785607195,213,0 +170785607243,213,0 +170785607291,213,0 +170785607341,213,0 +170785607388,213,0 +170785607438,213,0 +170785607486,213,0 +170785607534,213,0 +170785607583,213,0 +170785607633,213,0 +170785607681,213,0 +170785607730,213,0 +170785607780,213,0 +170785607828,213,0 +170785607876,213,0 +170785607925,213,0 +170785607975,213,0 +170785608023,213,0 +170785608071,213,0 +170785608119,213,0 +170785608168,213,0 +170785608218,213,0 +170785608267,213,0 +170785608317,213,0 +170785608366,213,0 +170785608416,214,0 +170785608464,214,0 +170785608512,214,0 +170785608560,213,0 +170785608609,213,0 +170785608657,212,0 +170785608707,213,0 +170785608755,213,0 +170785608804,213,0 +170785608852,213,0 +170785608900,213,0 +170785608948,213,0 +170785608996,213,0 +170785609044,213,0 +170785609093,213,0 +170785609143,213,0 +170785609191,214,0 +170785609240,213,0 +170785609288,214,0 +170785609336,214,0 +170785609384,214,0 +170785609434,214,0 +170785609481,213,0 +170785609529,213,0 +170785609579,213,0 +170785609628,212,0 +170785609676,213,0 +170785609724,213,0 +170785609772,213,0 +170785609822,213,0 +170785609870,213,0 +170785609919,213,0 +170785609969,213,0 +170785610018,213,0 +170785610066,213,0 +170785610114,213,0 +170785610162,213,0 +170785610212,213,0 +170785610259,213,0 +170785610309,214,0 +170785610358,214,0 +170785610406,213,0 +170785610454,213,0 +170785610502,213,0 +170785610550,213,0 +170785610598,213,0 +170785610646,213,0 +170785610694,213,0 +170785610742,213,0 +170785610790,213,0 +170785610838,213,0 +170785610886,213,0 +170785610934,213,0 +170785610982,213,0 +170785611030,213,0 +170785611079,213,0 +170785611127,214,0 +170785611175,213,0 +170785611223,213,0 +170785611271,214,0 +170785611319,214,0 +170785611367,214,0 +170785611415,213,0 +170785611463,213,0 +170785611510,213,0 +170785611558,213,0 +170785611608,213,0 +170785611657,213,0 +170785611705,213,0 +170785611753,213,0 +170785611801,213,0 +170785611850,213,0 +170785611898,213,0 +170785611946,213,0 +170785611994,213,0 +170785612044,213,0 +170785612093,213,0 +170785612143,214,0 +170785612191,214,0 +170785612239,213,0 +170785612287,214,0 +170785612335,213,0 +170785612384,213,0 +170785612434,213,0 +170785612482,213,0 +170785612529,213,0 +170785612577,213,0 +170785612625,213,0 +170785612675,213,0 +170785612723,213,0 +170785612771,213,0 +170785612820,213,0 +170785612868,213,0 +170785612916,213,0 +170785612964,213,0 +170785613012,214,0 +170785613060,214,0 +170785613108,214,0 +170785613157,214,0 +170785613205,213,0 +170785613253,213,0 +170785613301,213,0 +170785613351,213,0 +170785613399,212,0 +170785613448,213,0 +170785613496,213,0 +170785613546,213,0 +170785613595,213,0 +170785613645,213,0 +170785613693,213,0 +170785613741,213,0 +170785613790,213,0 +170785613840,213,0 +170785613888,213,0 +170785613936,213,0 +170785613983,213,0 +170785614031,213,0 +170785614081,213,0 +170785614129,213,0 +170785614177,213,0 +170785614226,213,0 +170785614274,213,0 +170785614322,213,0 +170785614370,212,0 +170785614418,213,0 +170785614466,213,0 +170785614516,213,0 +170785614564,213,0 +170785614613,213,0 +170785614662,213,0 +170785614711,213,0 +170785614758,213,0 +170785614808,213,0 +170785614856,213,0 +170785614904,213,0 +170785614953,213,0 +170785615003,213,0 +170785615051,213,0 +170785615100,214,0 +170785615149,213,0 +170785615197,213,0 +170785615245,213,0 +170785615293,213,0 +170785615343,213,0 +170785615392,213,0 +170785615440,213,0 +170785615488,213,0 +170785615536,213,0 +170785615583,213,0 +170785615631,213,0 +170785615679,213,0 +170785615729,214,0 +170785615776,213,0 +170785615824,213,0 +170785615872,214,0 +170785615920,213,0 +170785615968,213,0 +170785616016,213,0 +170785616063,213,0 +170785616111,213,0 +170785616159,213,0 +170785616207,213,0 +170785616255,213,0 +170785616303,213,0 +170785616351,213,0 +170785616398,213,0 +170785616446,213,0 +170785616494,213,0 +170785616542,213,0 +170785616590,213,0 +170785616638,213,0 +170785616685,214,0 +170785616733,214,0 +170785616781,213,0 +170785616829,214,0 +170785616877,214,0 +170785616925,214,0 +170785616973,213,0 +170785617021,213,0 +170785617069,213,0 +170785617117,213,0 +170785617166,213,0 +170785617216,213,0 +170785617265,213,0 +170785617315,213,0 +170785617363,213,0 +170785617411,213,0 +170785617460,213,0 +170785617508,213,0 +170785617558,214,0 +170785617607,214,0 +170785617655,214,0 +170785617703,214,0 +170785617751,214,0 +170785617799,214,0 +170785617847,213,0 +170785617897,213,0 +170785617945,213,0 +170785617993,213,0 +170785618041,213,0 +170785618090,213,0 +170785618139,213,0 +170785618187,213,0 +170785618235,213,0 +170785618283,213,0 +170785618333,213,0 +170785618381,213,0 +170785618429,214,0 +170785618477,214,0 +170785618525,214,0 +170785618572,214,0 +170785618620,214,0 +170785618670,214,0 +170785618718,214,0 +170785618767,214,0 +170785618815,213,0 +170785618865,213,0 +170785618913,213,0 +170785618961,213,0 +170785619009,213,0 +170785619057,213,0 +170785619105,213,0 +170785619152,213,0 +170785619200,213,0 +170785619250,213,0 +170785619299,213,0 +170785619347,213,0 +170785619395,213,0 +170785619443,213,0 +170785619491,213,0 +170785619539,213,0 +170785619587,214,0 +170785619634,214,0 +170785619682,214,0 +170785619730,213,0 +170785619778,213,0 +170785619826,213,0 +170785619874,213,0 +170785619923,213,0 +170785619971,213,0 +170785620019,213,0 +170785620067,213,0 +170785620115,213,0 +170785620162,213,0 +170785620212,213,0 +170785620260,213,0 +170785620308,213,0 +170785620357,214,0 +170785620405,213,0 +170785620455,213,0 +170785620503,213,0 +170785620551,214,0 +170785620600,214,0 +170785620650,214,0 +170785620698,213,0 +170785620745,213,0 +170785620795,213,0 +170785620843,213,0 +170785620891,213,0 +170785620940,213,0 +170785620988,213,0 +170785621036,213,0 +170785621084,213,0 +170785621132,213,0 +170785621180,213,0 +170785621229,213,0 +170785621277,213,0 +170785621325,214,0 +170785621373,213,0 +170785621421,213,0 +170785621469,214,0 +170785621517,214,0 +170785621565,213,0 +170785621613,213,0 +170785621661,213,0 +170785621709,213,0 +170785621758,213,0 +170785621806,213,0 +170785621854,213,0 +170785621902,213,0 +170785621950,213,0 +170785621997,213,0 +170785622047,213,0 +170785622095,213,0 +170785622142,213,0 +170785622190,213,0 +170785622238,213,0 +170785622286,213,0 +170785622334,214,0 +170785622382,214,0 +170785622430,214,0 +170785622477,214,0 +170785622527,213,0 +170785622575,213,0 +170785622622,212,0 +170785622670,213,0 +170785622718,213,0 +170785622767,213,0 +170785622815,213,0 +170785622863,213,0 +170785622912,213,0 +170785622960,213,0 +170785623008,213,0 +170785623056,213,0 +170785623105,213,0 +170785623153,213,0 +170785623203,213,0 +170785623251,213,0 +170785623298,213,0 +170785623346,213,0 +170785623394,213,0 +170785623444,213,0 +170785623491,213,0 +170785623541,213,0 +170785623590,212,0 +170785623638,213,0 +170785623686,213,0 +170785623736,213,0 +170785623785,213,0 +170785623833,213,0 +170785623881,213,0 +170785623929,213,0 +170785623977,213,0 +170785624025,213,0 +170785624074,213,0 +170785624122,213,0 +170785624172,213,0 +170785624220,213,0 +170785624269,213,0 +170785624319,213,0 +170785624367,213,0 +170785624416,213,0 +170785624464,213,0 +170785624512,213,0 +170785624560,213,0 +170785624608,213,0 +170785624656,213,0 +170785624704,213,0 +170785624753,213,0 +170785624801,213,0 +170785624850,213,0 +170785624898,213,0 +170785624946,213,0 +170785624996,213,0 +170785625044,213,0 +170785625093,213,0 +170785625143,213,0 +170785625191,213,0 +170785625238,213,0 +170785625288,213,0 +170785625336,213,0 +170785625385,213,0 +170785625433,212,0 +170785625481,213,0 +170785625529,213,0 +170785625577,213,0 +170785625625,213,0 +170785625673,213,0 +170785625721,213,0 +170785625769,213,0 +170785625817,213,0 +170785625865,213,0 +170785625914,213,0 +170785625962,213,0 +170785626010,214,0 +170785626058,214,0 +170785626107,214,0 +170785626155,214,0 +170785626203,213,0 +170785626251,213,0 +170785626301,213,0 +170785626349,213,0 +170785626398,213,0 +170785626446,213,0 +170785626496,213,0 +170785626543,213,0 +170785626593,212,0 +170785626642,213,0 +170785626692,213,0 +170785626740,213,0 +170785626789,213,0 +170785626837,213,0 +170785626885,213,0 +170785626934,213,0 +170785626982,213,0 +170785627032,214,0 +170785627080,213,0 +170785627129,214,0 +170785627177,214,0 +170785627225,213,0 +170785627275,212,0 +170785627324,212,0 +170785627372,213,0 +170785627420,213,0 +170785627469,213,0 +170785627519,212,0 +170785627567,213,0 +170785627615,213,0 +170785627663,213,0 +170785627712,213,0 +170785627760,213,0 +170785627808,213,0 +170785627856,213,0 +170785627904,213,0 +170785627953,213,0 +170785628002,213,0 +170785628050,213,0 +170785628098,213,0 +170785628148,213,0 +170785628197,213,0 +170785628245,212,0 +170785628295,213,0 +170785628343,213,0 +170785628390,213,0 +170785628438,213,0 +170785628486,213,0 +170785628534,213,0 +170785628582,213,0 +170785628631,213,0 +170785628679,213,0 +170785628727,213,0 +170785628775,213,0 +170785628825,213,0 +170785628874,214,0 +170785628922,213,0 +170785628971,214,0 +170785629021,214,0 +170785629069,213,0 +170785629118,213,0 +170785629168,213,0 +170785629216,213,0 +170785629263,213,0 +170785629311,213,0 +170785629359,213,0 +170785629407,213,0 +170785629457,213,0 +170785629505,213,0 +170785629552,213,0 +170785629600,213,0 +170785629648,213,0 +170785629696,214,0 +170785629745,214,0 +170785629793,214,0 +170785629841,213,0 +170785629889,214,0 +170785629939,214,0 +170785629987,213,0 +170785630034,213,0 +170785630082,213,0 +170785630130,213,0 +170785630178,213,0 +170785630226,213,0 +170785630274,213,0 +170785630322,213,0 +170785630371,213,0 +170785630419,213,0 +170785630467,213,0 +170785630516,213,0 +170785630564,213,0 +170785630612,214,0 +170785630661,214,0 +170785630711,214,0 +170785630759,214,0 +170785630807,214,0 +170785630855,214,0 +170785630904,214,0 +170785630954,212,0 +170785631003,213,0 +170785631051,213,0 +170785631101,213,0 +170785631149,213,0 +170785631198,213,0 +170785631248,213,0 +170785631296,213,0 +170785631344,213,0 +170785631392,213,0 +170785631439,213,0 +170785631487,213,0 +170785631537,214,0 +170785631585,213,0 +170785631633,214,0 +170785631681,214,0 +170785631729,214,0 +170785631776,214,0 +170785631824,213,0 +170785631874,213,0 +170785631922,213,0 +170785631970,213,0 +170785632018,213,0 +170785632066,213,0 +170785632115,213,0 +170785632165,213,0 +170785632213,213,0 +170785632262,213,0 +170785632310,213,0 +170785632358,213,0 +170785632406,213,0 +170785632454,214,0 +170785632503,213,0 +170785632551,214,0 +170785632599,214,0 +170785632647,214,0 +170785632695,213,0 +170785632743,214,0 +170785632792,213,0 +170785632840,213,0 +170785632890,213,0 +170785632938,213,0 +170785632986,213,0 +170785633035,213,0 +170785633083,213,0 +170785633132,213,0 +170785633180,213,0 +170785633228,213,0 +170785633276,213,0 +170785633324,213,0 +170785633372,213,0 +170785633420,213,0 +170785633468,214,0 +170785633517,213,0 +170785633565,214,0 +170785633613,213,0 +170785633661,214,0 +170785633709,213,0 +170785633759,212,0 +170785633807,213,0 +170785633854,213,0 +170785633902,213,0 +170785633952,213,0 +170785634000,213,0 +170785634049,213,0 +170785634099,213,0 +170785634147,213,0 +170785634195,213,0 +170785634243,213,0 +170785634290,213,0 +170785634340,213,0 +170785634388,213,0 +170785634436,213,0 +170785634485,214,0 +170785634533,214,0 +170785634581,214,0 +170785634630,213,0 +170785634678,213,0 +170785634726,213,0 +170785634774,213,0 +170785634824,213,0 +170785634872,213,0 +170785634919,213,0 +170785634967,213,0 +170785635015,213,0 +170785635063,213,0 +170785635113,213,0 +170785635161,213,0 +170785635210,213,0 +170785635258,213,0 +170785635308,213,0 +170785635356,213,0 +170785635403,214,0 +170785635451,213,0 +170785635501,214,0 +170785635549,213,0 +170785635597,213,0 +170785635646,213,0 +170785635694,213,0 +170785635742,213,0 +170785635790,213,0 +170785635840,213,0 +170785635888,213,0 +170785635936,213,0 +170785635985,213,0 +170785636033,213,0 +170785636081,213,0 +170785636129,213,0 +170785636177,213,0 +170785636225,213,0 +170785636273,213,0 +170785636322,213,0 +170785636370,214,0 +170785636420,213,0 +170785636469,214,0 +170785636519,213,0 +170785636568,213,0 +170785636616,213,0 +170785636666,213,0 +170785636714,213,0 +170785636762,213,0 +170785636809,213,0 +170785636859,213,0 +170785636907,213,0 +170785636956,213,0 +170785637004,213,0 +170785637054,213,0 +170785637103,213,0 +170785637151,213,0 +170785637199,214,0 +170785637247,214,0 +170785637295,214,0 +170785637345,214,0 +170785637393,214,0 +170785637440,213,0 +170785637490,213,0 +170785637538,213,0 +170785637586,213,0 +170785637634,213,0 +170785637682,213,0 +170785637731,213,0 +170785637781,213,0 +170785637829,213,0 +170785637877,213,0 +170785637926,213,0 +170785637974,213,0 +170785638022,213,0 +170785638072,213,0 +170785638120,213,0 +170785638168,213,0 +170785638217,214,0 +170785638265,214,0 +170785638313,214,0 +170785638363,213,0 +170785638412,213,0 +170785638460,213,0 +170785638508,213,0 +170785638556,213,0 +170785638606,213,0 +170785638655,213,0 +170785638703,213,0 +170785638751,213,0 +170785638799,213,0 +170785638847,213,0 +170785638896,213,0 +170785638944,213,0 +170785638993,214,0 +170785639041,214,0 +170785639089,214,0 +170785639137,214,0 +170785639185,214,0 +170785639233,214,0 +170785639283,213,0 +170785639331,213,0 +170785639380,213,0 +170785639428,213,0 +170785639477,213,0 +170785639527,213,0 +170785639576,213,0 +170785639624,213,0 +170785639672,213,0 +170785639722,214,0 +170785639770,214,0 +170785639818,213,0 +170785639866,214,0 +170785639914,214,0 +170785639962,214,0 +170785640011,214,0 +170785640059,214,0 +170785640108,214,0 +170785640156,214,0 +170785640204,213,0 +170785640254,213,0 +170785640303,213,0 +170785640351,213,0 +170785640399,213,0 +170785640447,213,0 +170785640497,213,0 +170785640545,213,0 +170785640593,213,0 +170785640640,213,0 +170785640688,213,0 +170785640738,213,0 +170785640787,213,0 +170785640835,213,0 +170785640883,214,0 +170785640931,213,0 +170785640981,213,0 +170785641029,214,0 +170785641077,214,0 +170785641125,213,0 +170785641173,213,0 +170785641221,213,0 +170785641270,213,0 +170785641320,213,0 +170785641367,213,0 +170785641417,213,0 +170785641465,213,0 +170785641514,213,0 +170785641562,213,0 +170785641610,213,0 +170785641659,213,0 +170785641707,213,0 +170785641755,213,0 +170785641803,214,0 +170785641851,213,0 +170785641899,214,0 +170785641947,214,0 +170785641995,214,0 +170785642043,214,0 +170785642091,213,0 +170785642139,213,0 +170785642186,213,0 +170785642234,213,0 +170785642284,213,0 +170785642332,213,0 +170785642380,213,0 +170785642429,213,0 +170785642477,213,0 +170785642525,213,0 +170785642575,213,0 +170785642623,213,0 +170785642671,213,0 +170785642720,213,0 +170785642770,214,0 +170785642818,213,0 +170785642866,214,0 +170785642913,214,0 +170785642963,214,0 +170785643011,213,0 +170785643060,213,0 +170785643108,213,0 +170785643156,212,0 +170785643204,213,0 +170785643252,213,0 +170785643301,213,0 +170785643349,213,0 +170785643397,213,0 +170785643444,213,0 +170785643492,213,0 +170785643540,213,0 +170785643588,213,0 +170785643636,213,0 +170785643686,213,0 +170785643735,214,0 +170785643783,213,0 +170785643833,214,0 +170785643881,213,0 +170785643929,213,0 +170785643978,213,0 +170785644026,213,0 +170785644074,213,0 +170785644122,213,0 +170785644170,213,0 +170785644218,213,0 +170785644266,213,0 +170785644314,213,0 +170785644362,213,0 +170785644410,213,0 +170785644459,213,0 +170785644509,213,0 +170785644556,213,0 +170785644604,213,0 +170785644652,213,0 +170785644700,213,0 +170785644748,214,0 +170785644796,214,0 +170785644844,213,0 +170785644891,213,0 +170785644939,213,0 +170785644987,213,0 +170785645035,213,0 +170785645083,213,0 +170785645131,213,0 +170785645180,213,0 +170785645228,213,0 +170785645276,213,0 +170785645324,213,0 +170785645371,213,0 +170785645419,213,0 +170785645467,213,0 +170785645515,213,0 +170785645563,213,0 +170785645611,214,0 +170785645658,214,0 +170785645706,213,0 +170785645754,213,0 +170785645802,213,0 +170785645850,213,0 +170785645898,213,0 +170785645946,213,0 +170785645993,213,0 +170785646041,213,0 +170785646089,213,0 +170785646137,213,0 +170785646185,213,0 +170785646233,213,0 +170785646280,213,0 +170785646328,213,0 +170785646376,213,0 +170785646424,214,0 +170785646472,214,0 +170785646520,214,0 +170785646567,214,0 +170785646615,213,0 +170785646663,213,0 +170785646711,213,0 +170785646759,213,0 +170785646807,212,0 +170785646855,213,0 +170785646903,213,0 +170785646951,213,0 +170785647000,213,0 +170785647048,213,0 +170785647097,213,0 +170785647147,213,0 +170785647195,213,0 +170785647243,213,0 +170785647292,213,0 +170785647342,214,0 +170785647390,214,0 +170785647438,214,0 +170785647486,214,0 +170785647533,214,0 +170785647581,214,0 +170785647629,213,0 +170785647677,212,0 +170785647726,213,0 +170785647776,213,0 +170785647824,213,0 +170785647872,213,0 +170785647921,213,0 +170785647970,213,0 +170785648018,213,0 +170785648066,213,0 +170785648114,213,0 +170785648162,213,0 +170785648209,214,0 +170785648257,214,0 +170785648307,214,0 +170785648355,214,0 +170785648403,214,0 +170785648451,214,0 +170785648499,214,0 +170785648547,213,0 +170785648596,212,0 +170785648644,213,0 +170785648694,213,0 +170785648742,213,0 +170785648789,213,0 +170785648837,213,0 +170785648885,213,0 +170785648933,213,0 +170785648983,213,0 +170785649031,213,0 +170785649080,213,0 +170785649128,213,0 +170785649176,213,0 +170785649224,213,0 +170785649272,214,0 +170785649320,214,0 +170785649368,214,0 +170785649417,214,0 +170785649465,213,0 +170785649513,213,0 +170785649563,213,0 +170785649611,213,0 +170785649659,213,0 +170785649707,213,0 +170785649754,213,0 +170785649802,213,0 +170785649850,213,0 +170785649898,213,0 +170785649946,213,0 +170785649996,213,0 +170785650044,213,0 +170785650092,213,0 +170785650141,213,0 +170785650189,213,0 +170785650238,213,0 +170785650286,213,0 +170785650334,213,0 +170785650382,213,0 +170785650430,213,0 +170785650478,213,0 +170785650526,214,0 +170785650574,214,0 +170785650624,214,0 +170785650672,214,0 +170785650721,214,0 +170785650769,214,0 +170785650819,214,0 +170785650868,213,0 +170785650916,213,0 +170785650964,213,0 +170785651014,212,0 +170785651063,213,0 +170785651112,213,0 +170785651160,213,0 +170785651209,213,0 +170785651259,213,0 +170785651309,213,0 +170785651356,213,0 +170785651404,213,0 +170785651452,213,0 +170785651500,213,0 +170785651548,213,0 +170785651596,213,0 +170785651644,214,0 +170785651692,213,0 +170785651740,214,0 +170785651788,213,0 +170785651836,213,0 +170785651885,213,0 +170785651935,213,0 +170785651983,213,0 +170785652031,213,0 +170785652079,213,0 +170785652127,213,0 +170785652175,213,0 +170785652223,213,0 +170785652272,213,0 +170785652320,213,0 +170785652368,213,0 +170785652416,214,0 +170785652465,214,0 +170785652513,214,0 +170785652561,214,0 +170785652609,213,0 +170785652657,214,0 +170785652705,213,0 +170785652753,213,0 +170785652801,213,0 +170785652849,213,0 +170785652897,213,0 +170785652945,213,0 +170785652993,213,0 +170785653041,213,0 +170785653090,213,0 +170785653138,213,0 +170785653186,213,0 +170785653235,213,0 +170785653283,213,0 +170785653333,213,0 +170785653382,213,0 +170785653430,213,0 +170785653480,213,0 +170785653528,213,0 +170785653577,214,0 +170785653625,213,0 +170785653673,213,0 +170785653723,213,0 +170785653772,212,0 +170785653820,213,0 +170785653868,213,0 +170785653916,213,0 +170785653964,213,0 +170785654012,213,0 +170785654060,213,0 +170785654107,213,0 +170785654155,213,0 +170785654205,213,0 +170785654253,213,0 +170785654302,213,0 +170785654350,213,0 +170785654398,214,0 +170785654446,214,0 +170785654494,213,0 +170785654542,213,0 +170785654592,213,0 +170785654640,213,0 +170785654689,213,0 +170785654737,213,0 +170785654785,213,0 +170785654833,213,0 +170785654881,213,0 +170785654929,213,0 +170785654977,213,0 +170785655026,213,0 +170785655074,213,0 +170785655122,213,0 +170785655170,213,0 +170785655218,213,0 +170785655265,213,0 +170785655315,213,0 +170785655363,213,0 +170785655411,213,0 +170785655459,214,0 +170785655507,213,0 +170785655556,213,0 +170785655606,213,0 +170785655653,213,0 +170785655701,213,0 +170785655749,213,0 +170785655797,213,0 +170785655845,213,0 +170785655893,213,0 +170785655941,213,0 +170785655989,213,0 +170785656037,213,0 +170785656086,213,0 +170785656136,213,0 +170785656183,213,0 +170785656231,214,0 +170785656279,213,0 +170785656327,213,0 +170785656377,214,0 +170785656426,213,0 +170785656476,212,0 +170785656524,213,0 +170785656571,212,0 +170785656621,213,0 +170785656670,213,0 +170785656718,213,0 +170785656766,213,0 +170785656816,213,0 +170785656864,213,0 +170785656912,213,0 +170785656960,213,0 +170785657009,213,0 +170785657057,213,0 +170785657106,213,0 +170785657154,213,0 +170785657204,213,0 +170785657252,213,0 +170785657301,213,0 +170785657349,213,0 +170785657399,212,0 +170785657447,213,0 +170785657496,213,0 +170785657544,212,0 +170785657592,213,0 +170785657640,213,0 +170785657688,213,0 +170785657736,213,0 +170785657784,213,0 +170785657833,213,0 +170785657881,213,0 +170785657931,213,0 +170785657979,213,0 +170785658026,213,0 +170785658076,213,0 +170785658124,213,0 +170785658172,213,0 +170785658221,213,0 +170785658269,213,0 +170785658317,212,0 +170785658365,213,0 +170785658415,213,0 +170785658463,213,0 +170785658512,213,0 +170785658560,212,0 +170785658608,213,0 +170785658658,213,0 +170785658705,213,0 +170785658753,213,0 +170785658801,213,0 +170785658849,213,0 +170785658899,213,0 +170785658946,213,0 +170785658994,213,0 +170785659044,213,0 +170785659091,214,0 +170785659139,214,0 +170785659187,214,0 +170785659235,213,0 +170785659283,213,0 +170785659331,213,0 +170785659378,213,0 +170785659426,213,0 +170785659474,213,0 +170785659522,213,0 +170785659571,213,0 +170785659619,213,0 +170785659667,213,0 +170785659717,213,0 +170785659765,213,0 +170785659812,213,0 +170785659860,213,0 +170785659910,213,0 +170785659958,213,0 +170785660007,213,0 +170785660055,214,0 +170785660103,214,0 +170785660152,213,0 +170785660200,213,0 +170785660248,213,0 +170785660296,213,0 +170785660344,213,0 +170785660392,213,0 +170785660442,213,0 +170785660491,213,0 +170785660539,213,0 +170785660587,213,0 +170785660635,214,0 +170785660683,214,0 +170785660731,214,0 +170785660779,214,0 +170785660828,214,0 +170785660878,214,0 +170785660925,214,0 +170785660973,214,0 +170785661021,213,0 +170785661069,213,0 +170785661117,213,0 +170785661165,213,0 +170785661213,213,0 +170785661261,213,0 +170785661309,213,0 +170785661357,214,0 +170785661406,214,0 +170785661454,214,0 +170785661502,213,0 +170785661550,214,0 +170785661598,214,0 +170785661645,214,0 +170785661693,214,0 +170785661741,214,0 +170785661789,214,0 +170785661837,214,0 +170785661885,214,0 +170785661933,214,0 +170785661980,213,0 +170785662028,213,0 +170785662078,213,0 +170785662126,214,0 +170785662174,214,0 +170785662221,214,0 +170785662269,214,0 +170785662319,213,0 +170785662367,214,0 +170785662416,214,0 +170785662465,214,0 +170785662513,214,0 +170785662561,214,0 +170785662609,214,0 +170785662658,214,0 +170785662705,214,0 +170785662753,214,0 +170785662801,214,0 +170785662849,213,0 +170785662897,214,0 +170785662945,213,0 +170785662992,213,0 +170785663040,213,0 +170785663088,213,0 +170785663136,213,0 +170785663184,213,0 +170785663232,213,0 +170785663280,213,0 +170785663327,213,0 +170785663375,213,0 +170785663423,213,0 +170785663471,214,0 +170785663519,214,0 +170785663567,214,0 +170785663615,214,0 +170785663664,214,0 +170785663714,214,0 +170785663762,214,0 +170785663810,213,0 +170785663859,213,0 +170785663907,213,0 +170785663955,213,0 +170785664003,213,0 +170785664052,213,0 +170785664100,213,0 +170785664148,213,0 +170785664196,213,0 +170785664244,213,0 +170785664292,213,0 +170785664342,213,0 +170785664390,214,0 +170785664438,214,0 +170785664487,214,0 +170785664537,214,0 +170785664584,214,0 +170785664632,214,0 +170785664680,214,0 +170785664728,214,0 +170785664776,213,0 +170785664823,213,0 +170785664871,213,0 +170785664919,213,0 +170785664967,213,0 +170785665016,213,0 +170785665064,213,0 +170785665112,213,0 +170785665160,213,0 +170785665208,213,0 +170785665256,213,0 +170785665306,213,0 +170785665353,213,0 +170785665403,213,0 +170785665451,213,0 +170785665499,214,0 +170785665547,213,0 +170785665595,214,0 +170785665644,213,0 +170785665692,213,0 +170785665742,213,0 +170785665791,213,0 +170785665839,213,0 +170785665887,213,0 +170785665935,213,0 +170785665983,213,0 +170785666032,213,0 +170785666082,213,0 +170785666131,213,0 +170785666179,213,0 +170785666227,213,0 +170785666275,213,0 +170785666324,213,0 +170785666372,213,0 +170785666420,213,0 +170785666468,213,0 +170785666516,214,0 +170785666564,214,0 +170785666612,213,0 +170785666661,213,0 +170785666709,213,0 +170785666759,213,0 +170785666807,213,0 +170785666855,213,0 +170785666904,213,0 +170785666952,213,0 +170785667000,213,0 +170785667050,213,0 +170785667099,213,0 +170785667149,213,0 +170785667196,213,0 +170785667244,214,0 +170785667292,214,0 +170785667340,214,0 +170785667390,214,0 +170785667438,214,0 +170785667487,214,0 +170785667535,214,0 +170785667585,213,0 +170785667633,213,0 +170785667681,213,0 +170785667730,213,0 +170785667778,213,0 +170785667827,213,0 +170785667875,213,0 +170785667923,213,0 +170785667973,213,0 +170785668022,213,0 +170785668070,214,0 +170785668118,214,0 +170785668166,214,0 +170785668214,214,0 +170785668262,214,0 +170785668311,214,0 +170785668359,214,0 +170785668407,214,0 +170785668455,213,0 +170785668503,213,0 +170785668553,213,0 +170785668602,213,0 +170785668650,213,0 +170785668698,213,0 +170785668746,213,0 +170785668794,213,0 +170785668842,213,0 +170785668891,213,0 +170785668939,213,0 +170785668989,213,0 +170785669037,213,0 +170785669084,214,0 +170785669132,214,0 +170785669182,214,0 +170785669230,214,0 +170785669279,214,0 +170785669327,214,0 +170785669377,213,0 +170785669425,213,0 +170785669474,213,0 +170785669524,213,0 +170785669573,213,0 +170785669623,213,0 +170785669671,213,0 +170785669720,213,0 +170785669770,213,0 +170785669819,213,0 +170785669867,213,0 +170785669915,213,0 +170785669963,213,0 +170785670011,213,0 +170785670061,213,0 +170785670109,214,0 +170785670157,214,0 +170785670205,214,0 +170785670254,214,0 +170785670304,213,0 +170785670353,213,0 +170785670401,213,0 +170785670449,213,0 +170785670497,213,0 +170785670545,213,0 +170785670593,213,0 +170785670643,213,0 +170785670692,213,0 +170785670742,213,0 +170785670790,213,0 +170785670838,213,0 +170785670887,213,0 +170785670935,213,0 +170785670983,213,0 +170785671033,213,0 +170785671082,213,0 +170785671130,213,0 +170785671178,213,0 +170785671227,214,0 +170785671275,213,0 +170785671323,213,0 +170785671371,213,0 +170785671419,213,0 +170785671467,213,0 +170785671515,213,0 +170785671563,213,0 +170785671611,213,0 +170785671659,213,0 +170785671707,213,0 +170785671756,213,0 +170785671806,213,0 +170785671854,213,0 +170785671903,213,0 +170785671951,213,0 +170785671999,213,0 +170785672047,213,0 +170785672094,214,0 +170785672144,214,0 +170785672192,213,0 +170785672241,213,0 +170785672289,213,0 +170785672337,213,0 +170785672385,213,0 +170785672433,213,0 +170785672481,213,0 +170785672531,213,0 +170785672579,213,0 +170785672628,213,0 +170785672678,213,0 +170785672727,213,0 +170785672775,213,0 +170785672823,213,0 +170785672871,213,0 +170785672919,214,0 +170785672968,214,0 +170785673018,214,0 +170785673066,214,0 +170785673113,213,0 +170785673161,213,0 +170785673211,213,0 +170785673259,213,0 +170785673308,213,0 +170785673356,213,0 +170785673404,213,0 +170785673452,213,0 +170785673502,213,0 +170785673551,213,0 +170785673601,213,0 +170785673649,213,0 +170785673698,214,0 +170785673746,214,0 +170785673795,214,0 +170785673845,214,0 +170785673894,214,0 +170785673942,214,0 +170785673992,214,0 +170785674040,213,0 +170785674089,213,0 +170785674137,213,0 +170785674187,213,0 +170785674236,213,0 +170785674286,213,0 +170785674334,213,0 +170785674381,213,0 +170785674429,213,0 +170785674477,213,0 +170785674527,213,0 +170785674575,213,0 +170785674624,213,0 +170785674674,214,0 +170785674722,214,0 +170785674771,214,0 +170785674821,214,0 +170785674870,214,0 +170785674918,214,0 +170785674966,213,0 +170785675014,213,0 +170785675062,213,0 +170785675111,213,0 +170785675159,213,0 +170785675207,213,0 +170785675255,213,0 +170785675303,213,0 +170785675351,213,0 +170785675399,213,0 +170785675447,213,0 +170785675497,213,0 +170785675544,213,0 +170785675594,213,0 +170785675644,213,0 +170785675693,213,0 +170785675743,214,0 +170785675792,214,0 +170785675840,214,0 +170785675888,213,0 +170785675936,213,0 +170785675983,213,0 +170785676031,213,0 +170785676079,213,0 +170785676127,213,0 +170785676175,213,0 +170785676223,213,0 +170785676271,213,0 +170785676320,213,0 +170785676368,213,0 +170785676417,213,0 +170785676465,214,0 +170785676515,213,0 +170785676564,214,0 +170785676614,214,0 +170785676662,214,0 +170785676710,214,0 +170785676758,214,0 +170785676806,214,0 +170785676854,213,0 +170785676902,213,0 +170785676950,213,0 +170785676998,213,0 +170785677046,213,0 +170785677093,213,0 +170785677141,213,0 +170785677189,213,0 +170785677237,213,0 +170785677287,214,0 +170785677335,213,0 +170785677384,214,0 +170785677432,214,0 +170785677480,214,0 +170785677530,214,0 +170785677579,214,0 +170785677627,214,0 +170785677677,214,0 +170785677725,213,0 +170785677773,213,0 +170785677820,213,0 +170785677868,213,0 +170785677916,213,0 +170785677964,213,0 +170785678012,213,0 +170785678062,213,0 +170785678110,213,0 +170785678158,213,0 +170785678206,213,0 +170785678253,213,0 +170785678301,213,0 +170785678349,214,0 +170785678397,214,0 +170785678445,214,0 +170785678493,214,0 +170785678541,214,0 +170785678591,214,0 +170785678640,214,0 +170785678688,213,0 +170785678736,213,0 +170785678784,213,0 +170785678834,213,0 +170785678881,213,0 +170785678929,213,0 +170785678977,213,0 +170785679025,213,0 +170785679073,213,0 +170785679121,213,0 +170785679169,213,0 +170785679217,213,0 +170785679265,213,0 +170785679313,213,0 +170785679363,213,0 +170785679410,214,0 +170785679458,213,0 +170785679506,214,0 +170785679554,214,0 +170785679604,213,0 +170785679653,213,0 +170785679701,213,0 +170785679751,213,0 +170785679799,213,0 +170785679847,213,0 +170785679894,213,0 +170785679942,213,0 +170785679990,213,0 +170785680040,213,0 +170785680088,213,0 +170785680136,213,0 +170785680183,213,0 +170785680231,213,0 +170785680279,214,0 +170785680327,213,0 +170785680375,214,0 +170785680423,214,0 +170785680471,214,0 +170785680519,213,0 +170785680567,213,0 +170785680615,213,0 +170785680664,212,0 +170785680714,213,0 +170785680762,213,0 +170785680810,213,0 +170785680858,213,0 +170785680906,213,0 +170785680954,213,0 +170785681003,213,0 +170785681051,213,0 +170785681101,213,0 +170785681150,213,0 +170785681198,214,0 +170785681247,214,0 +170785681295,213,0 +170785681345,214,0 +170785681393,213,0 +170785681440,213,0 +170785681490,213,0 +170785681538,213,0 +170785681586,213,0 +170785681633,213,0 +170785681681,213,0 +170785681731,213,0 +170785681779,213,0 +170785681827,213,0 +170785681875,213,0 +170785681923,213,0 +170785681972,213,0 +170785682020,214,0 +170785682068,214,0 +170785682116,214,0 +170785682164,214,0 +170785682212,214,0 +170785682260,214,0 +170785682309,214,0 +170785682357,213,0 +170785682405,213,0 +170785682453,213,0 +170785682501,213,0 +170785682549,213,0 +170785682597,213,0 +170785682645,213,0 +170785682693,213,0 +170785682742,213,0 +170785682790,213,0 +170785682840,214,0 +170785682889,214,0 +170785682937,214,0 +170785682985,214,0 +170785683033,214,0 +170785683081,214,0 +170785683128,214,0 +170785683178,214,0 +170785683226,214,0 +170785683275,214,0 +170785683323,213,0 +170785683371,213,0 +170785683419,213,0 +170785683468,213,0 +170785683516,213,0 +170785683564,213,0 +170785683612,213,0 +170785683660,213,0 +170785683709,213,0 +170785683757,213,0 +170785683805,214,0 +170785683855,213,0 +170785683902,214,0 +170785683950,214,0 +170785683998,214,0 +170785684046,214,0 +170785684094,214,0 +170785684142,214,0 +170785684190,214,0 +170785684238,213,0 +170785684286,213,0 +170785684334,213,0 +170785684382,213,0 +170785684430,213,0 +170785684478,213,0 +170785684526,213,0 +170785684575,213,0 +170785684625,213,0 +170785684672,213,0 +170785684722,213,0 +170785684771,213,0 +170785684819,214,0 +170785684869,214,0 +170785684917,214,0 +170785684965,214,0 +170785685014,214,0 +170785685062,214,0 +170785685112,214,0 +170785685160,213,0 +170785685208,213,0 +170785685256,213,0 +170785685305,213,0 +170785685353,213,0 +170785685401,213,0 +170785685449,213,0 +170785685497,213,0 +170785685545,213,0 +170785685593,213,0 +170785685640,213,0 +170785685690,213,0 +170785685738,213,0 +170785685786,213,0 +170785685834,213,0 +170785685882,214,0 +170785685930,214,0 +170785685978,214,0 +170785686027,214,0 +170785686075,213,0 +170785686124,213,0 +170785686172,213,0 +170785686222,213,0 +170785686270,213,0 +170785686319,213,0 +170785686367,213,0 +170785686415,213,0 +170785686463,213,0 +170785686512,213,0 +170785686560,213,0 +170785686608,213,0 +170785686658,213,0 +170785686707,213,0 +170785686755,213,0 +170785686803,213,0 +170785686851,214,0 +170785686899,213,0 +170785686947,214,0 +170785686996,213,0 +170785687044,213,0 +170785687092,213,0 +170785687140,213,0 +170785687188,213,0 +170785687236,213,0 +170785687285,213,0 +170785687333,213,0 +170785687381,213,0 +170785687429,213,0 +170785687477,213,0 +170785687525,213,0 +170785687574,213,0 +170785687622,214,0 +170785687672,214,0 +170785687721,214,0 +170785687769,214,0 +170785687817,214,0 +170785687866,214,0 +170785687914,214,0 +170785687962,213,0 +170785688012,213,0 +170785688060,213,0 +170785688108,213,0 +170785688156,213,0 +170785688204,213,0 +170785688251,213,0 +170785688299,213,0 +170785688347,213,0 +170785688395,213,0 +170785688443,213,0 +170785688492,213,0 +170785688540,213,0 +170785688588,213,0 +170785688636,213,0 +170785688684,214,0 +170785688732,214,0 +170785688780,214,0 +170785688830,214,0 +170785688879,213,0 +170785688927,213,0 +170785688976,213,0 +170785689026,213,0 +170785689075,213,0 +170785689123,213,0 +170785689173,213,0 +170785689221,213,0 +170785689269,213,0 +170785689317,213,0 +170785689365,213,0 +170785689412,213,0 +170785689462,214,0 +170785689510,214,0 +170785689558,214,0 +170785689607,214,0 +170785689655,214,0 +170785689703,214,0 +170785689752,214,0 +170785689800,213,0 +170785689848,213,0 +170785689896,213,0 +170785689944,213,0 +170785689992,213,0 +170785690040,213,0 +170785690089,213,0 +170785690139,213,0 +170785690187,213,0 +170785690234,213,0 +170785690282,213,0 +170785690330,213,0 +170785690380,214,0 +170785690429,214,0 +170785690477,214,0 +170785690527,214,0 +170785690574,214,0 +170785690622,214,0 +170785690670,214,0 +170785690718,213,0 +170785690766,213,0 +170785690814,213,0 +170785690864,213,0 +170785690912,213,0 +170785690959,213,0 +170785691007,213,0 +170785691057,213,0 +170785691105,213,0 +170785691153,213,0 +170785691200,214,0 +170785691248,214,0 +170785691296,214,0 +170785691344,214,0 +170785691393,214,0 +170785691441,214,0 +170785691489,214,0 +170785691537,214,0 +170785691587,213,0 +170785691635,213,0 +170785691682,213,0 +170785691732,213,0 +170785691780,213,0 +170785691829,213,0 +170785691877,213,0 +170785691927,213,0 +170785691975,213,0 +170785692022,213,0 +170785692070,213,0 +170785692118,213,0 +170785692166,213,0 +170785692214,213,0 +170785692262,214,0 +170785692310,214,0 +170785692358,214,0 +170785692406,214,0 +170785692454,214,0 +170785692502,213,0 +170785692550,213,0 +170785692600,213,0 +170785692649,213,0 +170785692697,213,0 +170785692745,213,0 +170785692793,213,0 +170785692842,213,0 +170785692890,213,0 +170785692938,213,0 +170785692986,213,0 +170785693036,213,0 +170785693085,213,0 +170785693133,213,0 +170785693181,213,0 +170785693230,214,0 +170785693278,214,0 +170785693326,214,0 +170785693374,214,0 +170785693424,214,0 +170785693473,213,0 +170785693521,213,0 +170785693569,212,0 +170785693618,213,0 +170785693668,213,0 +170785693716,213,0 +170785693765,213,0 +170785693813,213,0 +170785693863,213,0 +170785693911,213,0 +170785693959,213,0 +170785694008,213,0 +170785694056,213,0 +170785694106,213,0 +170785694154,213,0 +170785694203,213,0 +170785694251,213,0 +170785694301,213,0 +170785694349,214,0 +170785694397,213,0 +170785694446,213,0 +170785694494,213,0 +170785694542,213,0 +170785694592,213,0 +170785694639,213,0 +170785694687,213,0 +170785694735,213,0 +170785694785,213,0 +170785694833,213,0 +170785694882,213,0 +170785694932,214,0 +170785694981,213,0 +170785695029,214,0 +170785695077,214,0 +170785695127,214,0 +170785695175,214,0 +170785695223,214,0 +170785695271,214,0 +170785695319,214,0 +170785695368,213,0 +170785695418,213,0 +170785695465,213,0 +170785695513,213,0 +170785695561,213,0 +170785695611,213,0 +170785695659,213,0 +170785695708,213,0 +170785695756,213,0 +170785695804,213,0 +170785695852,213,0 +170785695900,213,0 +170785695948,213,0 +170785695996,213,0 +170785696044,214,0 +170785696091,214,0 +170785696141,214,0 +170785696190,214,0 +170785696238,214,0 +170785696288,213,0 +170785696336,213,0 +170785696385,213,0 +170785696433,213,0 +170785696481,213,0 +170785696530,213,0 +170785696580,213,0 +170785696628,213,0 +170785696676,213,0 +170785696725,213,0 +170785696775,213,0 +170785696824,213,0 +170785696872,214,0 +170785696920,214,0 +170785696969,214,0 +170785697017,214,0 +170785697065,214,0 +170785697113,214,0 +170785697161,213,0 +170785697211,213,0 +170785697259,213,0 +170785697307,213,0 +170785697355,213,0 +170785697404,213,0 +170785697452,213,0 +170785697500,213,0 +170785697548,213,0 +170785697598,213,0 +170785697646,213,0 +170785697694,213,0 +170785697743,213,0 +170785697793,213,0 +170785697842,213,0 +170785697892,213,0 +170785697941,213,0 +170785697989,213,0 +170785698038,214,0 +170785698086,214,0 +170785698136,213,0 +170785698184,213,0 +170785698232,213,0 +170785698280,213,0 +170785698329,213,0 +170785698377,213,0 +170785698425,213,0 +170785698473,213,0 +170785698521,213,0 +170785698569,213,0 +170785698618,213,0 +170785698666,213,0 +170785698714,213,0 +170785698762,213,0 +170785698812,214,0 +170785698861,214,0 +170785698909,214,0 +170785698958,214,0 +170785699006,214,0 +170785699054,213,0 +170785699104,213,0 +170785699152,213,0 +170785699200,213,0 +170785699248,213,0 +170785699297,213,0 +170785699345,213,0 +170785699393,213,0 +170785699443,213,0 +170785699491,213,0 +170785699539,213,0 +170785699587,213,0 +170785699635,213,0 +170785699683,213,0 +170785699731,214,0 +170785699779,214,0 +170785699827,214,0 +170785699874,214,0 +170785699922,214,0 +170785699970,213,0 +170785700020,213,0 +170785700069,213,0 +170785700117,213,0 +170785700165,213,0 +170785700213,213,0 +170785700261,213,0 +170785700311,213,0 +170785700360,213,0 +170785700410,213,0 +170785700458,213,0 +170785700506,213,0 +170785700554,213,0 +170785700603,213,0 +170785700651,214,0 +170785700700,214,0 +170785700748,214,0 +170785700796,214,0 +170785700844,214,0 +170785700894,213,0 +170785700943,213,0 +170785700993,213,0 +170785701041,213,0 +170785701090,213,0 +170785701138,213,0 +170785701186,213,0 +170785701234,213,0 +170785701282,213,0 +170785701330,213,0 +170785701379,213,0 +170785701427,213,0 +170785701477,213,0 +170785701526,213,0 +170785701574,213,0 +170785701622,213,0 +170785701670,213,0 +170785701718,214,0 +170785701766,214,0 +170785701814,214,0 +170785701862,213,0 +170785701910,213,0 +170785701958,213,0 +170785702005,213,0 +170785702053,213,0 +170785702101,213,0 +170785702149,213,0 +170785702197,213,0 +170785702245,213,0 +170785702293,213,0 +170785702343,213,0 +170785702392,213,0 +170785702440,213,0 +170785702489,213,0 +170785702537,213,0 +170785702585,213,0 +170785702635,213,0 +170785702683,214,0 +170785702731,214,0 +170785702779,213,0 +170785702827,213,0 +170785702876,213,0 +170785702924,213,0 +170785702972,213,0 +170785703021,213,0 +170785703069,213,0 +170785703117,213,0 +170785703165,213,0 +170785703213,213,0 +170785703261,213,0 +170785703309,213,0 +170785703357,213,0 +170785703405,214,0 +170785703453,213,0 +170785703501,213,0 +170785703549,214,0 +170785703597,214,0 +170785703645,214,0 +170785703694,213,0 +170785703743,213,0 +170785703791,213,0 +170785703839,213,0 +170785703889,213,0 +170785703937,213,0 +170785703985,213,0 +170785704034,213,0 +170785704082,213,0 +170785704130,213,0 +170785704178,214,0 +170785704226,213,0 +170785704274,214,0 +170785704322,214,0 +170785704369,214,0 +170785704417,214,0 +170785704465,214,0 +170785704515,214,0 +170785704564,214,0 +170785704612,213,0 +170785704660,213,0 +170785704708,213,0 +170785704756,213,0 +170785704804,213,0 +170785704853,213,0 +170785704901,213,0 +170785704949,213,0 +170785704997,214,0 +170785705045,213,0 +170785705093,214,0 +170785705141,214,0 +170785705189,214,0 +170785705236,214,0 +170785705286,214,0 +170785705334,214,0 +170785705382,214,0 +170785705430,214,0 +170785705477,214,0 +170785705527,214,0 +170785705575,213,0 +170785705624,213,0 +170785705674,213,0 +170785705723,213,0 +170785705773,213,0 +170785705822,213,0 +170785705870,213,0 +170785705920,213,0 +170785705968,214,0 +170785706016,214,0 +170785706064,214,0 +170785706111,214,0 +170785706159,214,0 +170785706207,214,0 +170785706255,214,0 +170785706305,214,0 +170785706353,214,0 +170785706401,214,0 +170785706449,214,0 +170785706497,213,0 +170785706544,213,0 +170785706592,213,0 +170785706640,213,0 +170785706688,213,0 +170785706736,213,0 +170785706784,213,0 +170785706832,213,0 +170785706880,213,0 +170785706929,213,0 +170785706978,213,0 +170785707026,214,0 +170785707074,214,0 +170785707122,214,0 +170785707170,214,0 +170785707218,214,0 +170785707266,214,0 +170785707314,213,0 +170785707362,214,0 +170785707410,214,0 +170785707457,213,0 +170785707505,213,0 +170785707555,213,0 +170785707604,213,0 +170785707654,213,0 +170785707702,213,0 +170785707750,213,0 +170785707799,213,0 +170785707849,213,0 +170785707897,213,0 +170785707945,213,0 +170785707992,214,0 +170785708042,214,0 +170785708090,214,0 +170785708139,214,0 +170785708187,214,0 +170785708235,214,0 +170785708283,214,0 +170785708332,214,0 +170785708382,213,0 +170785708430,213,0 +170785708479,213,0 +170785708527,213,0 +170785708577,213,0 +170785708625,213,0 +170785708674,213,0 +170785708724,213,0 +170785708773,213,0 +170785708821,213,0 +170785708869,213,0 +170785708919,213,0 +170785708968,213,0 +170785709016,213,0 +170785709066,214,0 +170785709114,213,0 +170785709162,214,0 +170785709209,214,0 +170785709257,214,0 +170785709305,213,0 +170785709353,213,0 +170785709401,213,0 +170785709449,213,0 +170785709497,213,0 +170785709545,213,0 +170785709593,213,0 +170785709641,213,0 +170785709688,213,0 +170785709736,213,0 +170785709784,213,0 +170785709834,213,0 +170785709883,213,0 +170785709931,213,0 +170785709979,213,0 +170785710027,214,0 +170785710077,214,0 +170785710125,213,0 +170785710174,214,0 +170785710224,213,0 +170785710271,213,0 +170785710319,213,0 +170785710367,213,0 +170785710417,213,0 +170785710465,213,0 +170785710514,213,0 +170785710562,213,0 +170785710610,213,0 +170785710658,213,0 +170785710706,213,0 +170785710754,213,0 +170785710802,213,0 +170785710850,213,0 +170785710898,213,0 +170785710946,213,0 +170785710994,213,0 +170785711041,214,0 +170785711089,214,0 +170785711137,213,0 +170785711185,213,0 +170785711233,213,0 +170785711281,213,0 +170785711329,213,0 +170785711377,213,0 +170785711425,213,0 +170785711474,213,0 +170785711524,213,0 +170785711572,213,0 +170785711620,213,0 +170785711668,213,0 +170785711717,213,0 +170785711765,213,0 +170785711813,213,0 +170785711861,214,0 +170785711911,213,0 +170785711960,214,0 +170785712008,214,0 +170785712058,214,0 +170785712106,213,0 +170785712154,213,0 +170785712203,213,0 +170785712251,213,0 +170785712299,213,0 +170785712347,213,0 +170785712395,213,0 +170785712442,213,0 +170785712490,213,0 +170785712538,213,0 +170785712586,213,0 +170785712634,213,0 +170785712682,213,0 +170785712729,214,0 +170785712777,213,0 +170785712825,213,0 +170785712875,213,0 +170785712923,214,0 +170785712971,214,0 +170785713019,213,0 +170785713068,213,0 +170785713116,213,0 +170785713164,213,0 +170785713213,213,0 +170785713261,213,0 +170785713311,212,0 +170785713361,213,0 +170785713408,213,0 +170785713456,213,0 +170785713506,213,0 +170785713554,213,0 +170785713602,213,0 +170785713649,213,0 +170785713697,213,0 +170785713745,213,0 +170785713793,213,0 +170785713841,213,0 +170785713889,214,0 +170785713937,213,0 +170785713985,213,0 +170785714034,213,0 +170785714084,213,0 +170785714131,213,0 +170785714179,213,0 +170785714229,213,0 +170785714277,213,0 +170785714325,213,0 +170785714373,213,0 +170785714421,213,0 +170785714470,213,0 +170785714518,213,0 +170785714568,213,0 +170785714615,213,0 +170785714663,213,0 +170785714711,213,0 +170785714759,214,0 +170785714808,214,0 +170785714856,214,0 +170785714904,213,0 +170785714952,213,0 +170785715001,213,0 +170785715049,213,0 +170785715099,213,0 +170785715147,213,0 +170785715195,213,0 +170785715243,213,0 +170785715290,213,0 +170785715338,213,0 +170785715388,213,0 +170785715438,213,0 +170785715486,213,0 +170785715534,213,0 +170785715582,214,0 +170785715631,214,0 +170785715679,214,0 +170785715727,214,0 +170785715775,214,0 +170785715823,213,0 +170785715871,213,0 +170785715920,213,0 +170785715968,213,0 +170785716017,213,0 +170785716067,213,0 +170785716115,213,0 +170785716163,213,0 +170785716210,213,0 +170785716258,213,0 +170785716308,213,0 +170785716356,213,0 +170785716404,213,0 +170785716453,213,0 +170785716501,214,0 +170785716550,214,0 +170785716600,214,0 +170785716648,214,0 +170785716696,214,0 +170785716744,213,0 +170785716793,213,0 +170785716841,213,0 +170785716889,213,0 +170785716938,213,0 +170785716986,213,0 +170785717036,213,0 +170785717084,213,0 +170785717132,213,0 +170785717180,213,0 +170785717228,213,0 +170785717276,214,0 +170785717324,214,0 +170785717372,214,0 +170785717420,213,0 +170785717468,214,0 +170785717515,213,0 +170785717565,214,0 +170785717614,214,0 +170785717662,213,0 +170785717710,213,0 +170785717758,213,0 +170785717806,213,0 +170785717854,213,0 +170785717903,213,0 +170785717951,213,0 +170785717999,213,0 +170785718048,213,0 +170785718098,213,0 +170785718146,213,0 +170785718195,213,0 +170785718243,213,0 +170785718293,214,0 +170785718340,213,0 +170785718388,213,0 +170785718436,214,0 +170785718484,214,0 +170785718532,214,0 +170785718580,214,0 +170785718629,213,0 +170785718677,213,0 +170785718725,213,0 +170785718773,213,0 +170785718821,213,0 +170785718870,213,0 +170785718918,213,0 +170785718965,213,0 +170785719013,213,0 +170785719061,213,0 +170785719109,213,0 +170785719157,213,0 +170785719205,214,0 +170785719253,214,0 +170785719302,214,0 +170785719350,214,0 +170785719398,214,0 +170785719446,213,0 +170785719494,214,0 +170785719543,213,0 +170785719591,213,0 +170785719641,213,0 +170785719689,213,0 +170785719736,213,0 +170785719784,213,0 +170785719832,213,0 +170785719880,213,0 +170785719930,213,0 +170785719979,213,0 +170785720027,213,0 +170785720075,213,0 +170785720125,214,0 +170785720172,213,0 +170785720220,214,0 +170785720270,214,0 +170785720318,214,0 +170785720366,214,0 +170785720415,214,0 +170785720463,213,0 +170785720512,213,0 +170785720560,213,0 +170785720608,213,0 +170785720656,213,0 +170785720704,213,0 +170785720752,213,0 +170785720800,213,0 +170785720850,213,0 +170785720899,213,0 +170785720949,213,0 +170785720997,214,0 +170785721045,213,0 +170785721092,214,0 +170785721142,214,0 +170785721190,214,0 +170785721239,214,0 +170785721287,214,0 +170785721335,213,0 +170785721383,213,0 +170785721433,213,0 +170785721480,213,0 +170785721528,213,0 +170785721576,213,0 +170785721626,213,0 +170785721674,213,0 +170785721722,213,0 +170785721770,213,0 +170785721818,213,0 +170785721865,213,0 +170785721913,213,0 +170785721961,213,0 +170785722011,214,0 +170785722059,214,0 +170785722108,214,0 +170785722156,214,0 +170785722206,213,0 +170785722255,213,0 +170785722303,214,0 +170785722351,213,0 +170785722400,213,0 +170785722448,213,0 +170785722496,213,0 +170785722544,213,0 +170785722592,212,0 +170785722640,213,0 +170785722689,213,0 +170785722739,213,0 +170785722786,213,0 +170785722834,213,0 +170785722883,213,0 +170785722931,213,0 +170785722979,213,0 +170785723027,213,0 +170785723075,213,0 +170785723124,213,0 +170785723172,213,0 +170785723220,213,0 +170785723270,213,0 +170785723318,213,0 +170785723366,213,0 +170785723415,213,0 +170785723463,213,0 +170785723511,213,0 +170785723560,213,0 +170785723608,213,0 +170785723656,213,0 +170785723706,213,0 +170785723754,213,0 +170785723802,213,0 +170785723850,213,0 +170785723899,213,0 +170785723949,213,0 +170785723997,213,0 +170785724045,213,0 +170785724093,213,0 +170785724140,214,0 +170785724188,213,0 +170785724236,213,0 +170785724284,213,0 +170785724332,213,0 +170785724380,213,0 +170785724427,213,0 +170785724475,213,0 +170785724523,213,0 +170785724571,213,0 +170785724619,213,0 +170785724666,213,0 +170785724714,213,0 +170785724762,213,0 +170785724810,213,0 +170785724858,213,0 +170785724906,213,0 +170785724953,213,0 +170785725001,213,0 +170785725049,213,0 +170785725097,213,0 +170785725146,213,0 +170785725196,213,0 +170785725244,213,0 +170785725293,213,0 +170785725341,213,0 +170785725391,213,0 +170785725439,213,0 +170785725488,213,0 +170785725538,213,0 +170785725587,213,0 +170785725635,213,0 +170785725683,213,0 +170785725731,214,0 +170785725779,213,0 +170785725828,214,0 +170785725876,214,0 +170785725926,214,0 +170785725974,214,0 +170785726022,214,0 +170785726070,213,0 +170785726117,213,0 +170785726165,213,0 +170785726213,213,0 +170785726261,213,0 +170785726309,213,0 +170785726357,213,0 +170785726405,213,0 +170785726452,214,0 +170785726500,214,0 +170785726548,214,0 +170785726596,214,0 +170785726644,214,0 +170785726691,214,0 +170785726739,214,0 +170785726787,214,0 +170785726835,214,0 +170785726885,214,0 +170785726933,214,0 +170785726981,213,0 +170785727029,213,0 +170785727077,213,0 +170785727125,213,0 +170785727172,213,0 +170785727222,213,0 +170785727270,213,0 +170785727318,213,0 +170785727366,213,0 +170785727414,214,0 +170785727462,214,0 +170785727511,214,0 +170785727559,214,0 +170785727607,214,0 +170785727655,214,0 +170785727703,214,0 +170785727751,214,0 +170785727798,214,0 +170785727848,214,0 +170785727896,213,0 +170785727944,213,0 +170785727992,213,0 +170785728040,213,0 +170785728088,213,0 +170785728135,213,0 +170785728185,213,0 +170785728233,213,0 +170785728281,213,0 +170785728329,213,0 +170785728377,213,0 +170785728425,213,0 +170785728473,213,0 +170785728522,213,0 +170785728570,214,0 +170785728618,213,0 +170785728668,214,0 +170785728716,214,0 +170785728764,214,0 +170785728811,213,0 +170785728859,213,0 +170785728907,213,0 +170785728955,213,0 +170785729003,213,0 +170785729051,213,0 +170785729099,213,0 +170785729147,212,0 +170785729195,213,0 +170785729243,213,0 +170785729292,213,0 +170785729340,213,0 +170785729388,213,0 +170785729438,213,0 +170785729486,213,0 +170785729535,213,0 +170785729583,213,0 +170785729631,213,0 +170785729681,213,0 +170785729729,214,0 +170785729778,213,0 +170785729827,212,0 +170785729877,213,0 +170785729927,213,0 +170785729976,213,0 +170785730024,213,0 +170785730072,213,0 +170785730120,213,0 +170785730170,213,0 +170785730217,213,0 +170785730265,213,0 +170785730313,213,0 +170785730361,213,0 +170785730409,213,0 +170785730457,213,0 +170785730505,214,0 +170785730553,213,0 +170785730601,214,0 +170785730651,214,0 +170785730698,213,0 +170785730746,213,0 +170785730796,213,0 +170785730844,213,0 +170785730893,213,0 +170785730941,213,0 +170785730989,213,0 +170785731037,213,0 +170785731085,213,0 +170785731134,213,0 +170785731182,213,0 +170785731230,213,0 +170785731278,213,0 +170785731326,213,0 +170785731375,214,0 +170785731425,213,0 +170785731472,213,0 +170785731520,213,0 +170785731568,213,0 +170785731616,213,0 +170785731664,213,0 +170785731713,213,0 +170785731761,213,0 +170785731809,213,0 +170785731857,213,0 +170785731905,213,0 +170785731954,213,0 +170785732004,213,0 +170785732052,213,0 +170785732101,213,0 +170785732149,213,0 +170785732199,213,0 +170785732247,213,0 +170785732295,213,0 +170785732342,213,0 +170785732390,213,0 +170785732438,214,0 +170785732488,214,0 +170785732536,213,0 +170785732585,213,0 +170785732633,213,0 +170785732681,213,0 +170785732729,213,0 +170785732777,213,0 +170785732825,213,0 +170785732873,213,0 +170785732922,213,0 +170785732970,213,0 +170785733018,213,0 +170785733066,213,0 +170785733113,214,0 +170785733161,213,0 +170785733211,213,0 +170785733260,214,0 +170785733308,214,0 +170785733356,214,0 +170785733405,214,0 +170785733453,213,0 +170785733503,213,0 +170785733551,213,0 +170785733599,213,0 +170785733648,213,0 +170785733696,213,0 +170785733744,213,0 +170785733792,213,0 +170785733840,213,0 +170785733888,213,0 +170785733935,213,0 +170785733983,213,0 +170785734033,213,0 +170785734082,213,0 +170785734130,213,0 +170785734178,214,0 +170785734226,214,0 +170785734274,214,0 +170785734323,214,0 +170785734371,213,0 +170785734421,213,0 +170785734469,213,0 +170785734518,213,0 +170785734566,213,0 +170785734614,213,0 +170785734662,213,0 +170785734710,213,0 +170785734758,213,0 +170785734806,213,0 +170785734853,213,0 +170785734903,213,0 +170785734952,214,0 +170785735000,213,0 +170785735048,214,0 +170785735096,214,0 +170785735145,214,0 +170785735193,214,0 +170785735241,213,0 +170785735289,213,0 +170785735337,213,0 +170785735385,213,0 +170785735432,213,0 +170785735480,213,0 +170785735528,213,0 +170785735576,213,0 +170785735624,213,0 +170785735672,213,0 +170785735720,213,0 +170785735768,213,0 +170785735816,213,0 +170785735865,213,0 +170785735913,214,0 +170785735961,214,0 +170785736009,214,0 +170785736057,214,0 +170785736105,214,0 +170785736154,214,0 +170785736202,214,0 +170785736250,213,0 +170785736298,213,0 +170785736346,213,0 +170785736394,213,0 +170785736442,213,0 +170785736490,213,0 +170785736539,213,0 +170785736589,213,0 +170785736637,213,0 +170785736685,213,0 +170785736732,213,0 +170785736780,213,0 +170785736830,213,0 +170785736878,213,0 +170785736926,213,0 +170785736974,214,0 +170785737024,213,0 +170785737073,214,0 +170785737123,214,0 +170785737171,214,0 +170785737219,213,0 +170785737267,213,0 +170785737315,213,0 +170785737363,213,0 +170785737411,213,0 +170785737460,213,0 +170785737508,213,0 +170785737556,213,0 +170785737604,213,0 +170785737652,213,0 +170785737701,213,0 +170785737749,213,0 +170785737799,213,0 +170785737848,213,0 +170785737898,213,0 +170785737946,214,0 +170785737995,214,0 +170785738043,213,0 +170785738091,213,0 +170785738139,213,0 +170785738188,213,0 +170785738238,213,0 +170785738286,213,0 +170785738335,213,0 +170785738383,213,0 +170785738433,213,0 +170785738481,213,0 +170785738529,213,0 +170785738578,213,0 +170785738626,213,0 +170785738674,213,0 +170785738722,213,0 +170785738770,213,0 +170785738818,214,0 +170785738866,213,0 +170785738914,214,0 +170785738962,214,0 +170785739010,214,0 +170785739058,213,0 +170785739107,213,0 +170785739155,213,0 +170785739205,213,0 +170785739253,213,0 +170785739302,213,0 +170785739350,213,0 +170785739398,213,0 +170785739446,213,0 +170785739494,213,0 +170785739542,213,0 +170785739590,213,0 +170785739638,213,0 +170785739686,213,0 +170785739735,213,0 +170785739783,213,0 +170785739831,213,0 +170785739879,213,0 +170785739927,214,0 +170785739975,213,0 +170785740023,212,0 +170785740072,213,0 +170785740122,212,0 +170785740170,213,0 +170785740218,213,0 +170785740265,213,0 +170785740313,213,0 +170785740361,213,0 +170785740409,213,0 +170785740459,213,0 +170785740508,213,0 +170785740556,213,0 +170785740604,213,0 +170785740653,213,0 +170785740701,213,0 +170785740749,213,0 +170785740797,213,0 +170785740847,214,0 +170785740895,213,0 +170785740943,213,0 +170785740991,213,0 +170785741039,213,0 +170785741087,213,0 +170785741135,213,0 +170785741184,213,0 +170785741232,213,0 +170785741280,213,0 +170785741328,213,0 +170785741378,213,0 +170785741426,213,0 +170785741473,213,0 +170785741521,213,0 +170785741569,214,0 +170785741617,214,0 +170785741665,214,0 +170785741713,214,0 +170785741763,214,0 +170785741811,214,0 +170785741859,213,0 +170785741906,213,0 +170785741956,213,0 +170785742004,213,0 +170785742052,213,0 +170785742100,213,0 +170785742148,213,0 +170785742197,213,0 +170785742245,213,0 +170785742293,213,0 +170785742341,213,0 +170785742391,213,0 +170785742439,213,0 +170785742486,213,0 +170785742534,213,0 +170785742582,213,0 +170785742630,213,0 +170785742678,213,0 +170785742728,214,0 +170785742777,213,0 +170785742825,213,0 +170785742875,213,0 +170785742922,213,0 +170785742970,213,0 +170785743020,213,0 +170785743069,213,0 +170785743119,213,0 +170785743168,213,0 +170785743218,213,0 +170785743266,213,0 +170785743315,213,0 +170785743363,213,0 +170785743413,214,0 +170785743462,213,0 +170785743510,213,0 +170785743560,214,0 +170785743608,214,0 +170785743655,214,0 +170785743703,213,0 +170785743751,213,0 +170785743801,213,0 +170785743849,213,0 +170785743897,213,0 +170785743945,213,0 +170785743993,213,0 +170785744041,213,0 +170785744089,213,0 +170785744136,213,0 +170785744184,213,0 +170785744232,213,0 +170785744280,213,0 +170785744328,213,0 +170785744375,213,0 +170785744423,213,0 +170785744473,213,0 +170785744521,214,0 +170785744570,214,0 +170785744620,213,0 +170785744668,213,0 +170785744716,212,0 +170785744764,213,0 +170785744812,213,0 +170785744860,213,0 +170785744907,213,0 +170785744955,213,0 +170785745005,213,0 +170785745053,213,0 +170785745102,213,0 +170785745150,213,0 +170785745200,213,0 +170785745248,213,0 +170785745297,213,0 +170785745347,213,0 +170785745395,213,0 +170785745443,214,0 +170785745491,214,0 +170785745540,214,0 +170785745590,213,0 +170785745637,213,0 +170785745685,213,0 +170785745733,213,0 +170785745783,213,0 +170785745831,213,0 +170785745879,213,0 +170785745927,213,0 +170785745974,213,0 +170785746022,213,0 +170785746070,213,0 +170785746118,213,0 +170785746166,213,0 +170785746214,213,0 +170785746262,213,0 +170785746310,214,0 +170785746359,213,0 +170785746409,214,0 +170785746457,214,0 +170785746504,213,0 +170785746552,213,0 +170785746602,213,0 +170785746651,213,0 +170785746699,213,0 +170785746747,213,0 +170785746795,213,0 +170785746845,213,0 +170785746894,213,0 +170785746942,213,0 +170785746992,213,0 +170785747039,213,0 +170785747087,213,0 +170785747137,214,0 +170785747185,213,0 +170785747232,213,0 +170785747280,214,0 +170785747328,214,0 +170785747376,213,0 +170785747424,213,0 +170785747472,213,0 +170785747520,213,0 +170785747569,213,0 +170785747617,213,0 +170785747667,213,0 +170785747715,213,0 +170785747764,213,0 +170785747812,213,0 +170785747860,213,0 +170785747908,213,0 +170785747956,214,0 +170785748004,214,0 +170785748052,213,0 +170785748100,214,0 +170785748148,214,0 +170785748196,214,0 +170785748244,214,0 +170785748293,213,0 +170785748341,213,0 +170785748389,213,0 +170785748437,213,0 +170785748485,213,0 +170785748535,213,0 +170785748583,213,0 +170785748632,214,0 +170785748680,213,0 +170785748728,213,0 +170785748776,214,0 +170785748824,214,0 +170785748872,214,0 +170785748920,214,0 +170785748968,214,0 +170785749016,214,0 +170785749065,214,0 +170785749113,214,0 +170785749161,214,0 +170785749209,214,0 +170785749257,214,0 +170785749305,213,0 +170785749352,213,0 +170785749400,213,0 +170785749448,213,0 +170785749496,213,0 +170785749544,213,0 +170785749592,213,0 +170785749640,213,0 +170785749687,214,0 +170785749735,214,0 +170785749783,214,0 +170785749831,214,0 +170785749879,214,0 +170785749927,214,0 +170785749974,214,0 +170785750022,214,0 +170785750070,214,0 +170785750118,214,0 +170785750166,213,0 +170785750215,213,0 +170785750263,213,0 +170785750311,213,0 +170785750360,213,0 +170785750410,213,0 +170785750458,213,0 +170785750506,213,0 +170785750554,213,0 +170785750602,213,0 +170785750649,213,0 +170785750697,213,0 +170785750745,213,0 +170785750793,214,0 +170785750841,214,0 +170785750889,214,0 +170785750937,214,0 +170785750985,214,0 +170785751033,214,0 +170785751081,214,0 +170785751130,213,0 +170785751178,213,0 +170785751226,213,0 +170785751276,213,0 +170785751324,213,0 +170785751373,213,0 +170785751423,213,0 +170785751471,213,0 +170785751519,213,0 +170785751567,213,0 +170785751615,213,0 +170785751663,213,0 +170785751711,213,0 +170785751759,213,0 +170785751807,213,0 +170785751856,213,0 +170785751904,213,0 +170785751953,213,0 +170785752001,213,0 +170785752051,213,0 +170785752100,213,0 +170785752150,212,0 +170785752198,213,0 +170785752247,213,0 +170785752295,213,0 +170785752343,213,0 +170785752391,213,0 +170785752439,213,0 +170785752487,213,0 +170785752534,213,0 +170785752584,213,0 +170785752632,213,0 +170785752680,213,0 +170785752727,213,0 +170785752775,213,0 +170785752823,213,0 +170785752871,213,0 +170785752919,213,0 +170785752967,213,0 +170785753015,213,0 +170785753063,213,0 +170785753110,213,0 +170785753158,213,0 +170785753208,213,0 +170785753256,213,0 +170785753304,213,0 +170785753353,213,0 +170785753401,213,0 +170785753449,213,0 +170785753499,213,0 +170785753547,213,0 +170785753595,213,0 +170785753642,213,0 +170785753690,213,0 +170785753738,213,0 +170785753788,213,0 +170785753836,213,0 +170785753884,214,0 +170785753933,213,0 +170785753981,213,0 +170785754031,213,0 +170785754079,213,0 +170785754126,213,0 +170785754174,213,0 +170785754222,213,0 +170785754270,213,0 +170785754318,213,0 +170785754368,213,0 +170785754415,213,0 +170785754463,213,0 +170785754511,213,0 +170785754561,214,0 +170785754610,214,0 +170785754658,214,0 +170785754708,214,0 +170785754756,214,0 +170785754805,214,0 +170785754853,213,0 +170785754901,213,0 +170785754949,213,0 +170785754997,213,0 +170785755045,213,0 +170785755094,213,0 +170785755142,213,0 +170785755192,213,0 +170785755240,213,0 +170785755288,213,0 +170785755336,213,0 +170785755384,213,0 +170785755432,213,0 +170785755479,213,0 +170785755527,213,0 +170785755575,213,0 +170785755623,214,0 +170785755671,213,0 +170785755720,213,0 +170785755768,214,0 +170785755816,213,0 +170785755864,213,0 +170785755912,212,0 +170785755960,213,0 +170785756008,212,0 +170785756055,213,0 +170785756103,213,0 +170785756151,213,0 +170785756199,213,0 +170785756247,213,0 +170785756295,213,0 +170785756342,213,0 +170785756390,213,0 +170785756438,213,0 +170785756486,213,0 +170785756534,213,0 +170785756582,213,0 +170785756631,213,0 +170785756679,214,0 +170785756727,213,0 +170785756777,213,0 +170785756826,213,0 +170785756874,213,0 +170785756923,213,0 +170785756971,213,0 +170785757019,213,0 +170785757069,213,0 +170785757118,213,0 +170785757168,213,0 +170785757217,213,0 +170785757265,213,0 +170785757315,213,0 +170785757363,213,0 +170785757411,213,0 +170785757458,214,0 +170785757506,214,0 +170785757556,214,0 +170785757604,214,0 +170785757651,213,0 +170785757699,213,0 +170785757747,213,0 +170785757795,213,0 +170785757843,213,0 +170785757890,213,0 +170785757938,213,0 +170785757986,213,0 +170785758034,213,0 +170785758082,213,0 +170785758130,213,0 +170785758178,213,0 +170785758226,213,0 +170785758273,213,0 +170785758321,213,0 +170785758369,213,0 +170785758419,213,0 +170785758467,213,0 +170785758514,214,0 +170785758562,213,0 +170785758610,213,0 +170785758658,213,0 +170785758707,213,0 +170785758757,213,0 +170785758804,213,0 +170785758852,213,0 +170785758900,213,0 +170785758948,213,0 +170785758996,213,0 +170785759044,213,0 +170785759091,213,0 +170785759139,213,0 +170785759187,213,0 +170785759235,213,0 +170785759283,214,0 +170785759331,214,0 +170785759379,213,0 +170785759426,214,0 +170785759476,214,0 +170785759524,213,0 +170785759572,213,0 +170785759620,213,0 +170785759668,213,0 +170785759716,213,0 +170785759765,213,0 +170785759813,213,0 +170785759861,213,0 +170785759911,213,0 +170785759959,213,0 +170785760007,213,0 +170785760054,213,0 +170785760102,214,0 +170785760152,214,0 +170785760200,214,0 +170785760248,214,0 +170785760296,214,0 +170785760343,214,0 +170785760391,214,0 +170785760439,213,0 +170785760487,213,0 +170785760535,213,0 +170785760583,213,0 +170785760631,213,0 +170785760678,213,0 +170785760726,213,0 +170785760776,213,0 +170785760825,213,0 +170785760873,213,0 +170785760921,213,0 +170785760969,213,0 +170785761017,213,0 +170785761064,214,0 +170785761112,214,0 +170785761160,213,0 +170785761208,214,0 +170785761256,214,0 +170785761304,214,0 +170785761352,213,0 +170785761399,213,0 +170785761447,213,0 +170785761497,212,0 +170785761546,213,0 +170785761594,212,0 +170785761642,213,0 +170785761690,213,0 +170785761737,213,0 +170785761785,213,0 +170785761835,213,0 +170785761883,213,0 +170785761932,213,0 +170785761980,213,0 +170785762028,213,0 +170785762076,213,0 +170785762124,214,0 +170785762171,214,0 +170785762219,213,0 +170785762267,214,0 +170785762315,213,0 +170785762363,213,0 +170785762411,212,0 +170785762458,213,0 +170785762506,213,0 +170785762554,213,0 +170785762602,213,0 +170785762650,213,0 +170785762699,213,0 +170785762747,213,0 +170785762795,213,0 +170785762843,213,0 +170785762891,213,0 +170785762938,214,0 +170785762986,214,0 +170785763036,214,0 +170785763084,214,0 +170785763131,214,0 +170785763181,214,0 +170785763229,213,0 +170785763278,213,0 +170785763326,213,0 +170785763374,213,0 +170785763422,213,0 +170785763470,213,0 +170785763517,213,0 +170785763565,213,0 +170785763613,213,0 +170785763661,213,0 +170785763711,213,0 +170785763758,213,0 +170785763806,214,0 +170785763856,213,0 +170785763904,213,0 +170785763951,214,0 +170785763999,214,0 +170785764047,214,0 +170785764097,214,0 +170785764144,214,0 +170785764192,213,0 +170785764240,213,0 +170785764288,213,0 +170785764336,213,0 +170785764384,213,0 +170785764431,213,0 +170785764479,213,0 +170785764527,213,0 +170785764575,213,0 +170785764623,213,0 +170785764671,213,0 +170785764718,213,0 +170785764766,213,0 +170785764814,213,0 +170785764862,213,0 +170785764910,214,0 +170785764958,213,0 +170785765007,213,0 +170785765055,214,0 +170785765103,213,0 +170785765151,213,0 +170785765199,213,0 +170785765246,212,0 +170785765294,213,0 +170785765344,213,0 +170785765393,213,0 +170785765441,213,0 +170785765489,213,0 +170785765537,213,0 +170785765584,213,0 +170785765632,213,0 +170785765680,213,0 +170785765728,213,0 +170785765776,213,0 +170785765824,213,0 +170785765872,214,0 +170785765919,214,0 +170785765967,213,0 +170785766015,213,0 +170785766063,213,0 +170785766113,213,0 +170785766161,213,0 +170785766209,213,0 +170785766256,213,0 +170785766304,213,0 +170785766352,213,0 +170785766402,213,0 +170785766450,213,0 +170785766498,213,0 +170785766547,213,0 +170785766595,213,0 +170785766645,214,0 +170785766693,214,0 +170785766742,214,0 +170785766790,213,0 +170785766838,214,0 +170785766887,214,0 +170785766935,214,0 +170785766985,213,0 +170785767032,213,0 +170785767080,213,0 +170785767130,213,0 +170785767178,213,0 +170785767226,213,0 +170785767274,213,0 +170785767323,213,0 +170785767371,213,0 +170785767419,213,0 +170785767467,213,0 +170785767514,214,0 +170785767562,213,0 +170785767610,214,0 +170785767658,214,0 +170785767706,214,0 +170785767754,214,0 +170785767802,214,0 +170785767850,214,0 +170785767897,213,0 +170785767945,213,0 +170785767993,213,0 +170785768041,213,0 +170785768089,213,0 +170785768136,213,0 +170785768184,213,0 +170785768232,213,0 +170785768280,213,0 +170785768328,213,0 +170785768376,213,0 +170785768424,213,0 +170785768471,213,0 +170785768519,213,0 +170785768567,213,0 +170785768615,213,0 +170785768663,214,0 +170785768711,214,0 +170785768759,214,0 +170785768806,214,0 +170785768854,213,0 +170785768902,213,0 +170785768950,213,0 +170785768998,213,0 +170785769046,213,0 +170785769094,213,0 +170785769142,213,0 +170785769190,213,0 +170785769237,213,0 +170785769285,214,0 +170785769335,214,0 +170785769383,213,0 +170785769432,214,0 +170785769480,214,0 +170785769530,214,0 +170785769578,214,0 +170785769626,214,0 +170785769674,214,0 +170785769722,213,0 +170785769769,213,0 +170785769819,213,0 +170785769868,213,0 +170785769916,213,0 +170785769966,213,0 +170785770014,213,0 +170785770062,213,0 +170785770110,214,0 +170785770158,213,0 +170785770205,214,0 +170785770254,214,0 +170785770301,214,0 +170785770349,214,0 +170785770397,214,0 +170785770445,214,0 +170785770493,214,0 +170785770543,214,0 +170785770591,214,0 +170785770638,214,0 +170785770686,213,0 +170785770734,213,0 +170785770782,213,0 +170785770830,213,0 +170785770878,213,0 +170785770926,214,0 +170785770974,213,0 +170785771022,213,0 +170785771071,214,0 +170785771119,214,0 +170785771166,214,0 +170785771214,213,0 +170785771262,214,0 +170785771310,214,0 +170785771358,214,0 +170785771406,214,0 +170785771453,214,0 +170785771501,214,0 +170785771549,214,0 +170785771599,213,0 +170785771648,213,0 +170785771696,213,0 +170785771745,213,0 +170785771795,213,0 +170785771843,213,0 +170785771891,213,0 +170785771938,213,0 +170785771986,214,0 +170785772034,213,0 +170785772082,214,0 +170785772130,214,0 +170785772178,214,0 +170785772225,214,0 +170785772273,214,0 +170785772321,214,0 +170785772371,214,0 +170785772420,214,0 +170785772470,214,0 +170785772518,214,0 +170785772565,213,0 +170785772613,213,0 +170785772661,213,0 +170785772709,213,0 +170785772759,213,0 +170785772807,213,0 +170785772855,213,0 +170785772903,213,0 +170785772951,213,0 +170785772998,213,0 +170785773048,213,0 +170785773096,213,0 +170785773144,214,0 +170785773192,214,0 +170785773239,214,0 +170785773287,214,0 +170785773335,214,0 +170785773385,214,0 +170785773433,214,0 +170785773481,213,0 +170785773529,213,0 +170785773577,213,0 +170785773625,213,0 +170785773673,213,0 +170785773720,213,0 +170785773768,213,0 +170785773816,213,0 +170785773864,213,0 +170785773912,213,0 +170785773960,213,0 +170785774008,213,0 +170785774058,213,0 +170785774107,213,0 +170785774157,214,0 +170785774206,214,0 +170785774256,214,0 +170785774305,214,0 +170785774353,214,0 +170785774403,213,0 +170785774451,213,0 +170785774499,213,0 +170785774547,213,0 +170785774596,213,0 +170785774646,213,0 +170785774693,213,0 +170785774743,213,0 +170785774791,213,0 +170785774841,213,0 +170785774888,213,0 +170785774936,213,0 +170785774984,213,0 +170785775034,213,0 +170785775082,213,0 +170785775130,214,0 +170785775177,214,0 +170785775225,213,0 +170785775275,214,0 +170785775322,213,0 +170785775372,213,0 +170785775420,212,0 +170785775468,213,0 +170785775516,213,0 +170785775563,213,0 +170785775611,213,0 +170785775661,213,0 +170785775709,213,0 +170785775758,213,0 +170785775806,213,0 +170785775854,213,0 +170785775902,213,0 +170785775950,213,0 +170785775998,213,0 +170785776045,214,0 +170785776093,214,0 +170785776141,214,0 +170785776189,214,0 +170785776237,214,0 +170785776285,213,0 +170785776334,213,0 +170785776384,213,0 +170785776432,213,0 +170785776480,213,0 +170785776528,213,0 +170785776575,213,0 +170785776625,213,0 +170785776673,213,0 +170785776721,213,0 +170785776770,213,0 +170785776820,213,0 +170785776868,213,0 +170785776917,213,0 +170785776965,213,0 +170785777013,213,0 +170785777061,213,0 +170785777111,214,0 +170785777159,214,0 +170785777207,213,0 +170785777255,213,0 +170785777303,212,0 +170785777352,213,0 +170785777400,213,0 +170785777448,213,0 +170785777496,213,0 +170785777545,213,0 +170785777595,213,0 +170785777643,213,0 +170785777691,213,0 +170785777740,213,0 +170785777790,213,0 +170785777838,213,0 +170785777886,213,0 +170785777934,214,0 +170785777982,214,0 +170785778030,214,0 +170785778077,213,0 +170785778125,213,0 +170785778175,213,0 +170785778223,212,0 +170785778271,213,0 +170785778319,213,0 +170785778368,213,0 +170785778418,213,0 +170785778467,213,0 +170785778515,213,0 +170785778563,213,0 +170785778613,213,0 +170785778661,213,0 +170785778709,214,0 +170785778758,213,0 +170785778806,213,0 +170785778854,213,0 +170785778902,213,0 +170785778951,214,0 +170785778999,214,0 +170785779047,213,0 +170785779095,213,0 +170785779143,213,0 +170785779193,213,0 +170785779241,213,0 +170785779288,213,0 +170785779336,213,0 +170785779384,213,0 +170785779434,213,0 +170785779482,213,0 +170785779530,213,0 +170785779579,214,0 +170785779627,213,0 +170785779677,214,0 +170785779724,214,0 +170785779774,214,0 +170785779823,214,0 +170785779871,214,0 +170785779919,214,0 +170785779967,213,0 +170785780017,213,0 +170785780065,213,0 +170785780113,213,0 +170785780162,213,0 +170785780212,213,0 +170785780261,213,0 +170785780309,213,0 +170785780357,213,0 +170785780407,213,0 +170785780455,213,0 +170785780504,214,0 +170785780552,214,0 +170785780600,214,0 +170785780648,214,0 +170785780696,214,0 +170785780744,214,0 +170785780793,215,0 +170785780841,214,0 +170785780890,213,0 +170785780939,213,0 +170785780989,213,0 +170785781037,213,0 +170785781085,213,0 +170785781134,213,0 +170785781182,213,0 +170785781230,213,0 +170785781278,213,0 +170785781326,213,0 +170785781374,213,0 +170785781422,213,0 +170785781471,214,0 +170785781519,214,0 +170785781569,214,0 +170785781617,214,0 +170785781665,214,0 +170785781713,214,0 +170785781762,214,0 +170785781810,214,0 +170785781858,213,0 +170785781908,213,0 +170785781956,213,0 +170785782004,213,0 +170785782051,213,0 +170785782101,213,0 +170785782149,213,0 +170785782198,213,0 +170785782246,213,0 +170785782296,213,0 +170785782344,214,0 +170785782393,214,0 +170785782443,213,0 +170785782492,214,0 +170785782542,214,0 +170785782590,214,0 +170785782638,213,0 +170785782686,214,0 +170785782734,214,0 +170785782782,213,0 +170785782829,213,0 +170785782877,213,0 +170785782925,213,0 +170785782973,213,0 +170785783021,213,0 +170785783069,213,0 +170785783117,213,0 +170785783166,213,0 +170785783214,213,0 +170785783262,214,0 +170785783311,213,0 +170785783361,214,0 +170785783409,214,0 +170785783456,214,0 +170785783506,214,0 +170785783554,214,0 +170785783602,214,0 +170785783649,214,0 +170785783697,213,0 +170785783745,213,0 +170785783793,213,0 +170785783841,213,0 +170785783889,213,0 +170785783937,213,0 +170785783985,213,0 +170785784033,213,0 +170785784081,213,0 +170785784128,213,0 +170785784176,213,0 +170785784226,213,0 +170785784276,213,0 +170785784324,213,0 +170785784373,213,0 +170785784421,214,0 +170785784470,213,0 +170785784520,213,0 +170785784569,214,0 +170785784617,213,0 +170785784665,213,0 +170785784713,213,0 +170785784760,213,0 +170785784808,213,0 +170785784856,213,0 +170785784904,213,0 +170785784952,213,0 +170785785000,213,0 +170785785047,213,0 +170785785095,213,0 +170785785143,213,0 +170785785191,213,0 +170785785239,213,0 +170785785287,213,0 +170785785335,213,0 +170785785382,213,0 +170785785430,214,0 +170785785478,214,0 +170785785526,213,0 +170785785574,213,0 +170785785622,213,0 +170785785669,213,0 +170785785717,213,0 +170785785765,213,0 +170785785813,213,0 +170785785861,213,0 +170785785909,213,0 +170785785957,213,0 +170785786004,213,0 +170785786054,213,0 +170785786102,213,0 +170785786150,213,0 +170785786197,213,0 +170785786247,213,0 +170785786295,213,0 +170785786343,213,0 +170785786390,214,0 +170785786438,213,0 +170785786486,213,0 +170785786534,213,0 +170785786582,213,0 +170785786630,213,0 +170785786678,213,0 +170785786725,213,0 +170785786773,213,0 +170785786821,213,0 +170785786869,213,0 +170785786917,213,0 +170785786966,213,0 +170785787014,213,0 +170785787062,214,0 +170785787110,213,0 +170785787159,214,0 +170785787207,214,0 +170785787255,214,0 +170785787303,214,0 +170785787351,214,0 +170785787398,213,0 +170785787446,213,0 +170785787496,213,0 +170785787543,213,0 +170785787591,213,0 +170785787641,213,0 +170785787689,213,0 +170785787736,213,0 +170785787784,213,0 +170785787833,213,0 +170785787881,213,0 +170785787929,213,0 +170785787977,214,0 +170785788025,214,0 +170785788073,214,0 +170785788121,214,0 +170785788168,214,0 +170785788216,214,0 +170785788264,214,0 +170785788312,213,0 +170785788360,213,0 +170785788408,213,0 +170785788456,213,0 +170785788505,213,0 +170785788553,213,0 +170785788601,213,0 +170785788649,213,0 +170785788699,213,0 +170785788748,213,0 +170785788798,213,0 +170785788846,213,0 +170785788895,214,0 +170785788943,214,0 +170785788991,214,0 +170785789039,214,0 +170785789087,214,0 +170785789136,214,0 +170785789184,214,0 +170785789232,214,0 +170785789280,213,0 +170785789328,213,0 +170785789377,213,0 +170785789425,213,0 +170785789473,213,0 +170785789521,213,0 +170785789571,213,0 +170785789619,213,0 +170785789668,213,0 +170785789716,213,0 +170785789764,213,0 +170785789812,213,0 +170785789861,213,0 +170785789909,213,0 +170785789959,213,0 +170785790008,214,0 +170785790058,213,0 +170785790107,214,0 +170785790155,214,0 +170785790203,213,0 +170785790253,212,0 +170785790301,213,0 +170785790349,213,0 +170785790397,213,0 +170785790445,213,0 +170785790493,213,0 +170785790541,213,0 +170785790590,213,0 +170785790638,213,0 +170785790686,213,0 +170785790736,213,0 +170785790785,213,0 +170785790833,213,0 +170785790881,213,0 +170785790929,214,0 +170785790977,213,0 +170785791025,213,0 +170785791073,214,0 +170785791121,213,0 +170785791170,213,0 +170785791218,213,0 +170785791268,213,0 +170785791316,213,0 +170785791365,213,0 +170785791413,213,0 +170785791461,213,0 +170785791509,213,0 +170785791559,213,0 +170785791607,213,0 +170785791656,213,0 +170785791704,213,0 +170785791752,213,0 +170785791800,214,0 +170785791848,214,0 +170785791896,214,0 +170785791944,214,0 +170785791992,214,0 +170785792039,213,0 +170785792087,213,0 +170785792135,213,0 +170785792185,213,0 +170785792233,213,0 +170785792281,213,0 +170785792329,214,0 +170785792377,213,0 +170785792425,213,0 +170785792473,214,0 +170785792521,214,0 +170785792569,214,0 +170785792618,214,0 +170785792666,214,0 +170785792714,214,0 +170785792764,214,0 +170785792813,214,0 +170785792861,214,0 +170785792911,214,0 +170785792959,214,0 +170785793006,213,0 +170785793054,213,0 +170785793102,213,0 +170785793152,213,0 +170785793200,213,0 +170785793248,213,0 +170785793296,214,0 +170785793344,214,0 +170785793393,214,0 +170785793442,214,0 +170785793490,214,0 +170785793538,214,0 +170785793586,214,0 +170785793634,214,0 +170785793684,214,0 +170785793732,214,0 +170785793781,214,0 +170785793831,214,0 +170785793878,214,0 +170785793928,213,0 +170785793977,213,0 +170785794025,213,0 +170785794075,213,0 +170785794123,213,0 +170785794172,213,0 +170785794220,214,0 +170785794268,213,0 +170785794316,214,0 +170785794364,214,0 +170785794412,214,0 +170785794460,214,0 +170785794508,214,0 +170785794557,214,0 +170785794605,214,0 +170785794653,214,0 +170785794702,214,0 +170785794750,214,0 +170785794798,213,0 +170785794846,213,0 +170785794894,213,0 +170785794944,213,0 +170785794992,213,0 +170785795041,213,0 +170785795089,213,0 +170785795137,213,0 +170785795185,213,0 +170785795233,214,0 +170785795281,213,0 +170785795330,214,0 +170785795380,214,0 +170785795428,213,0 +170785795476,214,0 +170785795524,214,0 +170785795572,214,0 +170785795621,214,0 +170785795669,214,0 +170785795717,214,0 +170785795765,213,0 +170785795813,213,0 +170785795861,213,0 +170785795909,213,0 +170785795957,213,0 +170785796004,213,0 +170785796052,213,0 +170785796100,213,0 +170785796148,213,0 +170785796196,213,0 +170785796246,213,0 +170785796294,213,0 +170785796342,213,0 +170785796390,214,0 +170785796438,213,0 +170785796487,214,0 +170785796535,214,0 +170785796583,214,0 +170785796631,214,0 +170785796681,213,0 +170785796730,213,0 +170785796780,213,0 +170785796829,213,0 +170785796879,213,0 +170785796927,213,0 +170785796975,213,0 +170785797023,213,0 +170785797071,213,0 +170785797120,213,0 +170785797170,213,0 +170785797218,213,0 +170785797266,213,0 +170785797315,214,0 +170785797363,213,0 +170785797413,214,0 +170785797461,214,0 +170785797510,213,0 +170785797560,214,0 +170785797608,213,0 +170785797657,213,0 +170785797707,213,0 +170785797755,213,0 +170785797803,213,0 +170785797850,213,0 +170785797898,213,0 +170785797946,213,0 +170785797994,213,0 +170785798042,213,0 +170785798090,213,0 +170785798138,213,0 +170785798186,213,0 +170785798236,213,0 +170785798284,213,0 +170785798332,214,0 +170785798381,214,0 +170785798429,213,0 +170785798477,213,0 +170785798525,213,0 +170785798573,213,0 +170785798622,213,0 +170785798670,213,0 +170785798720,213,0 +170785798769,213,0 +170785798819,213,0 +170785798868,213,0 +170785798918,213,0 +170785798967,213,0 +170785799015,213,0 +170785799065,213,0 +170785799113,214,0 +170785799161,214,0 +170785799209,213,0 +170785799257,214,0 +170785799305,214,0 +170785799354,214,0 +170785799404,214,0 +170785799452,214,0 +170785799501,213,0 +170785799549,213,0 +170785799597,213,0 +170785799645,213,0 +170785799694,213,0 +170785799742,213,0 +170785799792,213,0 +170785799840,213,0 +170785799889,213,0 +170785799939,213,0 +170785799987,213,0 diff --git a/laser_value/0214-07.csv b/laser_value/0214-07.csv new file mode 100644 index 0000000..5d5a0a4 --- /dev/null +++ b/laser_value/0214-07.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170785800035,213,0 +170785800083,214,0 +170785800131,214,0 +170785800179,214,0 +170785800228,214,0 +170785800276,214,0 +170785800324,214,0 +170785800372,214,0 +170785800422,213,0 +170785800470,213,0 +170785800519,213,0 +170785800569,213,0 +170785800616,213,0 +170785800666,213,0 +170785800714,213,0 +170785800763,213,0 +170785800811,213,0 +170785800859,213,0 +170785800908,213,0 +170785800958,213,0 +170785801006,214,0 +170785801054,214,0 +170785801102,214,0 +170785801150,214,0 +170785801197,214,0 +170785801245,214,0 +170785801293,214,0 +170785801341,213,0 +170785801389,213,0 +170785801437,213,0 +170785801485,213,0 +170785801533,213,0 +170785801581,213,0 +170785801629,213,0 +170785801677,213,0 +170785801725,213,0 +170785801774,213,0 +170785801824,213,0 +170785801872,213,0 +170785801920,213,0 +170785801968,213,0 +170785802016,213,0 +170785802065,213,0 +170785802115,213,0 +170785802164,214,0 +170785802212,213,0 +170785802262,213,0 +170785802310,213,0 +170785802357,213,0 +170785802405,213,0 +170785802455,213,0 +170785802503,213,0 +170785802551,213,0 +170785802600,213,0 +170785802648,213,0 +170785802698,213,0 +170785802746,213,0 +170785802794,213,0 +170785802842,213,0 +170785802890,213,0 +170785802938,213,0 +170785802986,213,0 +170785803035,214,0 +170785803083,214,0 +170785803132,213,0 +170785803180,213,0 +170785803228,213,0 +170785803278,213,0 +170785803327,213,0 +170785803377,213,0 +170785803425,213,0 +170785803473,213,0 +170785803522,213,0 +170785803570,213,0 +170785803620,213,0 +170785803669,213,0 +170785803717,213,0 +170785803767,213,0 +170785803815,213,0 +170785803864,213,0 +170785803912,213,0 +170785803962,213,0 +170785804010,214,0 +170785804058,214,0 +170785804105,213,0 +170785804155,213,0 +170785804204,213,0 +170785804252,213,0 +170785804300,213,0 +170785804348,213,0 +170785804398,213,0 +170785804447,212,0 +170785804497,213,0 +170785804545,212,0 +170785804594,213,0 +170785804644,213,0 +170785804692,213,0 +170785804741,213,0 +170785804791,213,0 +170785804840,213,0 +170785804888,213,0 +170785804936,213,0 +170785804984,213,0 +170785805033,213,0 +170785805083,213,0 +170785805132,213,0 +170785805180,214,0 +170785805228,214,0 +170785805276,214,0 +170785805324,214,0 +170785805372,213,0 +170785805420,214,0 +170785805470,214,0 +170785805519,213,0 +170785805567,213,0 +170785805615,213,0 +170785805664,213,0 +170785805714,213,0 +170785805762,213,0 +170785805810,213,0 +170785805858,213,0 +170785805907,213,0 +170785805955,213,0 +170785806003,213,0 +170785806051,213,0 +170785806101,213,0 +170785806149,213,0 +170785806198,213,0 +170785806246,213,0 +170785806294,214,0 +170785806342,214,0 +170785806390,214,0 +170785806437,213,0 +170785806485,213,0 +170785806533,213,0 +170785806581,213,0 +170785806629,213,0 +170785806677,213,0 +170785806726,213,0 +170785806774,213,0 +170785806822,213,0 +170785806871,213,0 +170785806919,213,0 +170785806967,213,0 +170785807015,213,0 +170785807063,214,0 +170785807111,213,0 +170785807159,214,0 +170785807206,214,0 +170785807254,213,0 +170785807302,214,0 +170785807350,213,0 +170785807398,213,0 +170785807448,213,0 +170785807496,213,0 +170785807545,213,0 +170785807595,213,0 +170785807644,213,0 +170785807692,213,0 +170785807740,213,0 +170785807788,213,0 +170785807838,213,0 +170785807886,213,0 +170785807934,213,0 +170785807982,214,0 +170785808031,214,0 +170785808081,213,0 +170785808129,213,0 +170785808177,213,0 +170785808226,214,0 +170785808274,213,0 +170785808322,213,0 +170785808370,213,0 +170785808418,213,0 +170785808466,213,0 +170785808514,213,0 +170785808562,213,0 +170785808610,213,0 +170785808659,213,0 +170785808707,214,0 +170785808755,213,0 +170785808803,214,0 +170785808851,214,0 +170785808898,214,0 +170785808946,214,0 +170785808994,214,0 +170785809042,214,0 +170785809092,214,0 +170785809139,214,0 +170785809187,214,0 +170785809235,213,0 +170785809283,213,0 +170785809331,213,0 +170785809379,213,0 +170785809427,213,0 +170785809474,213,0 +170785809522,213,0 +170785809570,213,0 +170785809618,213,0 +170785809666,213,0 +170785809714,214,0 +170785809762,214,0 +170785809810,214,0 +170785809857,214,0 +170785809907,214,0 +170785809955,214,0 +170785810002,214,0 +170785810050,214,0 +170785810098,214,0 +170785810146,213,0 +170785810194,213,0 +170785810243,213,0 +170785810292,213,0 +170785810339,213,0 +170785810387,213,0 +170785810435,213,0 +170785810483,213,0 +170785810531,213,0 +170785810581,213,0 +170785810629,213,0 +170785810677,213,0 +170785810724,214,0 +170785810772,214,0 +170785810822,214,0 +170785810870,214,0 +170785810919,214,0 +170785810967,214,0 +170785811015,214,0 +170785811065,213,0 +170785811113,213,0 +170785811160,213,0 +170785811210,213,0 +170785811259,213,0 +170785811307,213,0 +170785811355,213,0 +170785811403,213,0 +170785811451,213,0 +170785811500,213,0 +170785811548,213,0 +170785811596,213,0 +170785811646,213,0 +170785811694,214,0 +170785811743,214,0 +170785811791,214,0 +170785811839,214,0 +170785811887,213,0 +170785811937,214,0 +170785811984,213,0 +170785812032,213,0 +170785812080,213,0 +170785812128,213,0 +170785812176,213,0 +170785812224,213,0 +170785812271,213,0 +170785812319,213,0 +170785812367,213,0 +170785812415,213,0 +170785812463,213,0 +170785812511,213,0 +170785812559,213,0 +170785812607,214,0 +170785812654,213,0 +170785812704,214,0 +170785812752,214,0 +170785812801,214,0 +170785812849,214,0 +170785812897,213,0 +170785812945,213,0 +170785812993,213,0 +170785813041,213,0 +170785813089,213,0 +170785813137,213,0 +170785813185,213,0 +170785813234,213,0 +170785813282,213,0 +170785813330,213,0 +170785813378,213,0 +170785813428,214,0 +170785813477,214,0 +170785813525,214,0 +170785813573,214,0 +170785813622,214,0 +170785813670,214,0 +170785813718,214,0 +170785813766,214,0 +170785813814,213,0 +170785813864,213,0 +170785813912,213,0 +170785813960,213,0 +170785814008,213,0 +170785814056,213,0 +170785814104,213,0 +170785814153,213,0 +170785814201,213,0 +170785814249,214,0 +170785814297,213,0 +170785814346,214,0 +170785814396,214,0 +170785814444,214,0 +170785814492,214,0 +170785814541,214,0 +170785814591,214,0 +170785814639,214,0 +170785814687,214,0 +170785814735,214,0 +170785814784,213,0 +170785814832,213,0 +170785814880,213,0 +170785814928,213,0 +170785814977,213,0 +170785815027,213,0 +170785815075,213,0 +170785815123,213,0 +170785815171,213,0 +170785815219,214,0 +170785815266,214,0 +170785815314,214,0 +170785815362,214,0 +170785815410,214,0 +170785815458,214,0 +170785815505,214,0 +170785815553,214,0 +170785815601,214,0 +170785815649,214,0 +170785815697,213,0 +170785815745,213,0 +170785815794,213,0 +170785815842,213,0 +170785815890,213,0 +170785815938,213,0 +170785815987,213,0 +170785816037,213,0 +170785816085,213,0 +170785816134,213,0 +170785816182,213,0 +170785816230,213,0 +170785816278,213,0 +170785816326,214,0 +170785816374,214,0 +170785816422,214,0 +170785816472,214,0 +170785816521,214,0 +170785816571,214,0 +170785816619,213,0 +170785816667,213,0 +170785816716,213,0 +170785816766,213,0 +170785816814,213,0 +170785816863,213,0 +170785816911,213,0 +170785816959,213,0 +170785817007,213,0 +170785817057,213,0 +170785817106,213,0 +170785817156,214,0 +170785817204,214,0 +170785817253,214,0 +170785817301,214,0 +170785817349,214,0 +170785817397,214,0 +170785817445,214,0 +170785817494,214,0 +170785817544,213,0 +170785817592,213,0 +170785817640,213,0 +170785817688,213,0 +170785817736,213,0 +170785817783,213,0 +170785817831,213,0 +170785817879,213,0 +170785817927,213,0 +170785817975,213,0 +170785818023,213,0 +170785818071,213,0 +170785818119,214,0 +170785818167,214,0 +170785818215,214,0 +170785818263,214,0 +170785818311,214,0 +170785818359,214,0 +170785818408,214,0 +170785818456,214,0 +170785818504,213,0 +170785818553,213,0 +170785818601,213,0 +170785818651,213,0 +170785818699,213,0 +170785818747,213,0 +170785818795,213,0 +170785818843,213,0 +170785818891,213,0 +170785818940,213,0 +170785818988,213,0 +170785819036,213,0 +170785819084,213,0 +170785819133,214,0 +170785819181,214,0 +170785819229,213,0 +170785819279,214,0 +170785819326,214,0 +170785819374,214,0 +170785819422,213,0 +170785819470,213,0 +170785819518,213,0 +170785819566,213,0 +170785819616,213,0 +170785819664,213,0 +170785819711,213,0 +170785819759,213,0 +170785819807,213,0 +170785819855,213,0 +170785819904,213,0 +170785819952,213,0 +170785820002,213,0 +170785820049,213,0 +170785820097,213,0 +170785820145,213,0 +170785820193,213,0 +170785820241,213,0 +170785820290,213,0 +170785820338,213,0 +170785820386,213,0 +170785820435,213,0 +170785820483,213,0 +170785820531,213,0 +170785820579,213,0 +170785820627,213,0 +170785820674,213,0 +170785820722,213,0 +170785820773,213,0 +170785820820,213,0 +170785820868,213,0 +170785820916,213,0 +170785820964,213,0 +170785821012,213,0 +170785821060,213,0 +170785821108,214,0 +170785821157,213,0 +170785821205,214,0 +170785821253,213,0 +170785821301,213,0 +170785821349,213,0 +170785821397,213,0 +170785821446,213,0 +170785821494,213,0 +170785821542,213,0 +170785821590,213,0 +170785821640,213,0 +170785821688,213,0 +170785821736,213,0 +170785821784,213,0 +170785821831,214,0 +170785821879,213,0 +170785821927,213,0 +170785821977,214,0 +170785822025,214,0 +170785822073,214,0 +170785822120,214,0 +170785822168,214,0 +170785822216,213,0 +170785822264,213,0 +170785822312,213,0 +170785822362,213,0 +170785822409,213,0 +170785822457,213,0 +170785822505,213,0 +170785822553,213,0 +170785822601,213,0 +170785822649,213,0 +170785822699,213,0 +170785822748,214,0 +170785822796,214,0 +170785822844,214,0 +170785822892,214,0 +170785822940,214,0 +170785822988,214,0 +170785823037,214,0 +170785823085,213,0 +170785823135,213,0 +170785823183,213,0 +170785823231,213,0 +170785823278,213,0 +170785823326,213,0 +170785823374,213,0 +170785823422,213,0 +170785823470,213,0 +170785823518,213,0 +170785823566,213,0 +170785823614,214,0 +170785823662,214,0 +170785823710,214,0 +170785823758,214,0 +170785823807,214,0 +170785823855,214,0 +170785823905,214,0 +170785823953,214,0 +170785824002,214,0 +170785824050,213,0 +170785824099,213,0 +170785824147,213,0 +170785824195,213,0 +170785824243,213,0 +170785824293,213,0 +170785824340,213,0 +170785824388,213,0 +170785824438,213,0 +170785824486,213,0 +170785824534,214,0 +170785824582,213,0 +170785824631,214,0 +170785824679,214,0 +170785824729,214,0 +170785824777,214,0 +170785824826,214,0 +170785824874,214,0 +170785824922,214,0 +170785824970,213,0 +170785825018,213,0 +170785825067,213,0 +170785825115,213,0 +170785825163,213,0 +170785825211,213,0 +170785825259,213,0 +170785825307,213,0 +170785825355,213,0 +170785825404,213,0 +170785825452,214,0 +170785825500,213,0 +170785825548,214,0 +170785825596,214,0 +170785825645,214,0 +170785825693,214,0 +170785825741,214,0 +170785825789,214,0 +170785825837,214,0 +170785825885,213,0 +170785825933,213,0 +170785825981,213,0 +170785826029,213,0 +170785826076,213,0 +170785826124,213,0 +170785826172,213,0 +170785826220,213,0 +170785826268,213,0 +170785826316,213,0 +170785826364,213,0 +170785826413,213,0 +170785826461,213,0 +170785826510,214,0 +170785826558,214,0 +170785826607,214,0 +170785826655,214,0 +170785826705,214,0 +170785826753,214,0 +170785826800,213,0 +170785826848,213,0 +170785826896,213,0 +170785826944,213,0 +170785826992,213,0 +170785827040,213,0 +170785827088,213,0 +170785827136,213,0 +170785827184,213,0 +170785827231,213,0 +170785827279,213,0 +170785827327,213,0 +170785827375,213,0 +170785827425,214,0 +170785827473,214,0 +170785827521,214,0 +170785827569,214,0 +170785827618,214,0 +170785827666,214,0 +170785827714,214,0 +170785827762,213,0 +170785827810,213,0 +170785827858,213,0 +170785827908,213,0 +170785827955,213,0 +170785828003,213,0 +170785828051,213,0 +170785828099,213,0 +170785828147,213,0 +170785828197,214,0 +170785828245,213,0 +170785828292,213,0 +170785828340,213,0 +170785828388,214,0 +170785828436,214,0 +170785828486,214,0 +170785828534,214,0 +170785828581,214,0 +170785828629,214,0 +170785828677,213,0 +170785828725,213,0 +170785828773,213,0 +170785828823,213,0 +170785828871,213,0 +170785828918,213,0 +170785828966,213,0 +170785829016,213,0 +170785829064,213,0 +170785829112,213,0 +170785829162,213,0 +170785829209,213,0 +170785829259,213,0 +170785829307,213,0 +170785829355,213,0 +170785829404,213,0 +170785829452,213,0 +170785829500,214,0 +170785829548,214,0 +170785829598,213,0 +170785829647,213,0 +170785829695,213,0 +170785829745,213,0 +170785829793,213,0 +170785829841,213,0 +170785829890,213,0 +170785829938,213,0 +170785829986,213,0 +170785830036,213,0 +170785830084,213,0 +170785830133,213,0 +170785830183,213,0 +170785830231,213,0 +170785830279,213,0 +170785830327,213,0 +170785830375,213,0 +170785830424,214,0 +170785830472,214,0 +170785830520,213,0 +170785830569,213,0 +170785830617,213,0 +170785830665,213,0 +170785830715,213,0 +170785830763,213,0 +170785830811,213,0 +170785830860,213,0 +170785830908,213,0 +170785830958,213,0 +170785831006,213,0 +170785831055,213,0 +170785831103,213,0 +170785831151,213,0 +170785831199,213,0 +170785831249,214,0 +170785831298,214,0 +170785831348,214,0 +170785831395,214,0 +170785831443,213,0 +170785831493,212,0 +170785831541,213,0 +170785831589,213,0 +170785831638,213,0 +170785831688,213,0 +170785831736,213,0 +170785831784,213,0 +170785831831,213,0 +170785831879,213,0 +170785831927,213,0 +170785831975,213,0 +170785832023,213,0 +170785832071,213,0 +170785832119,214,0 +170785832167,213,0 +170785832217,214,0 +170785832264,214,0 +170785832312,214,0 +170785832362,213,0 +170785832410,213,0 +170785832458,213,0 +170785832507,213,0 +170785832555,213,0 +170785832605,213,0 +170785832653,213,0 +170785832702,213,0 +170785832750,213,0 +170785832798,213,0 +170785832846,213,0 +170785832893,213,0 +170785832941,213,0 +170785832989,214,0 +170785833037,214,0 +170785833085,214,0 +170785833133,213,0 +170785833181,214,0 +170785833229,214,0 +170785833277,214,0 +170785833325,213,0 +170785833373,213,0 +170785833422,213,0 +170785833470,213,0 +170785833520,213,0 +170785833567,213,0 +170785833615,213,0 +170785833663,213,0 +170785833713,213,0 +170785833762,213,0 +170785833810,213,0 +170785833858,213,0 +170785833908,213,0 +170785833957,214,0 +170785834005,214,0 +170785834053,214,0 +170785834101,214,0 +170785834149,214,0 +170785834197,214,0 +170785834244,213,0 +170785834292,213,0 +170785834340,213,0 +170785834388,213,0 +170785834436,213,0 +170785834484,213,0 +170785834532,213,0 +170785834579,213,0 +170785834627,213,0 +170785834675,213,0 +170785834723,213,0 +170785834771,214,0 +170785834819,213,0 +170785834867,214,0 +170785834916,214,0 +170785834964,214,0 +170785835012,214,0 +170785835062,214,0 +170785835110,214,0 +170785835158,213,0 +170785835205,213,0 +170785835253,213,0 +170785835301,213,0 +170785835351,213,0 +170785835399,213,0 +170785835447,213,0 +170785835494,213,0 +170785835542,213,0 +170785835590,213,0 +170785835638,213,0 +170785835686,214,0 +170785835734,214,0 +170785835783,214,0 +170785835833,214,0 +170785835881,214,0 +170785835929,214,0 +170785835977,214,0 +170785836026,214,0 +170785836074,213,0 +170785836122,213,0 +170785836171,213,0 +170785836221,213,0 +170785836269,213,0 +170785836317,213,0 +170785836365,213,0 +170785836413,213,0 +170785836461,213,0 +170785836510,213,0 +170785836558,213,0 +170785836606,214,0 +170785836654,214,0 +170785836702,214,0 +170785836752,214,0 +170785836800,214,0 +170785836848,214,0 +170785836895,214,0 +170785836943,214,0 +170785836991,214,0 +170785837039,213,0 +170785837087,213,0 +170785837135,213,0 +170785837183,213,0 +170785837231,213,0 +170785837279,213,0 +170785837328,213,0 +170785837376,213,0 +170785837424,213,0 +170785837472,214,0 +170785837520,213,0 +170785837567,214,0 +170785837615,214,0 +170785837663,214,0 +170785837711,214,0 +170785837759,214,0 +170785837807,214,0 +170785837856,214,0 +170785837906,214,0 +170785837953,213,0 +170785838001,213,0 +170785838049,213,0 +170785838099,213,0 +170785838147,213,0 +170785838195,213,0 +170785838243,213,0 +170785838292,214,0 +170785838342,213,0 +170785838390,213,0 +170785838438,213,0 +170785838486,214,0 +170785838533,214,0 +170785838583,214,0 +170785838631,214,0 +170785838680,214,0 +170785838728,214,0 +170785838776,214,0 +170785838826,214,0 +170785838874,213,0 +170785838922,213,0 +170785838970,213,0 +170785839017,213,0 +170785839065,213,0 +170785839115,213,0 +170785839164,213,0 +170785839212,213,0 +170785839262,213,0 +170785839311,213,0 +170785839359,213,0 +170785839407,213,0 +170785839455,214,0 +170785839505,213,0 +170785839553,214,0 +170785839601,214,0 +170785839649,214,0 +170785839696,214,0 +170785839744,214,0 +170785839792,213,0 +170785839840,213,0 +170785839888,213,0 +170785839936,213,0 +170785839984,213,0 +170785840033,213,0 +170785840081,213,0 +170785840129,213,0 +170785840176,213,0 +170785840224,213,0 +170785840272,213,0 +170785840320,213,0 +170785840368,214,0 +170785840415,214,0 +170785840463,214,0 +170785840511,214,0 +170785840559,214,0 +170785840608,214,0 +170785840656,214,0 +170785840704,213,0 +170785840754,213,0 +170785840803,213,0 +170785840851,213,0 +170785840899,213,0 +170785840947,213,0 +170785840995,213,0 +170785841043,213,0 +170785841091,213,0 +170785841138,213,0 +170785841186,213,0 +170785841234,213,0 +170785841282,213,0 +170785841330,213,0 +170785841378,214,0 +170785841426,213,0 +170785841473,213,0 +170785841521,213,0 +170785841569,214,0 +170785841617,213,0 +170785841665,213,0 +170785841713,213,0 +170785841760,213,0 +170785841808,212,0 +170785841856,213,0 +170785841904,213,0 +170785841952,213,0 +170785842001,213,0 +170785842049,213,0 +170785842097,213,0 +170785842145,213,0 +170785842193,213,0 +170785842241,213,0 +170785842289,213,0 +170785842337,214,0 +170785842386,213,0 +170785842434,213,0 +170785842482,213,0 +170785842530,213,0 +170785842578,213,0 +170785842626,213,0 +170785842674,213,0 +170785842723,213,0 +170785842771,213,0 +170785842819,213,0 +170785842867,213,0 +170785842915,213,0 +170785842965,213,0 +170785843013,213,0 +170785843062,213,0 +170785843110,213,0 +170785843158,213,0 +170785843208,214,0 +170785843256,214,0 +170785843305,214,0 +170785843353,214,0 +170785843403,214,0 +170785843451,214,0 +170785843499,213,0 +170785843547,213,0 +170785843595,213,0 +170785843642,213,0 +170785843690,213,0 +170785843738,213,0 +170785843786,213,0 +170785843836,213,0 +170785843884,213,0 +170785843931,213,0 +170785843981,213,0 +170785844030,213,0 +170785844078,214,0 +170785844128,214,0 +170785844176,214,0 +170785844224,214,0 +170785844271,214,0 +170785844321,214,0 +170785844369,213,0 +170785844417,213,0 +170785844466,213,0 +170785844514,213,0 +170785844562,213,0 +170785844610,213,0 +170785844658,213,0 +170785844705,213,0 +170785844753,213,0 +170785844803,213,0 +170785844852,213,0 +170785844900,213,0 +170785844948,213,0 +170785844996,213,0 +170785845045,214,0 +170785845095,214,0 +170785845143,214,0 +170785845191,214,0 +170785845239,214,0 +170785845288,214,0 +170785845338,213,0 +170785845386,213,0 +170785845434,213,0 +170785845482,213,0 +170785845531,213,0 +170785845579,213,0 +170785845627,213,0 +170785845677,213,0 +170785845726,213,0 +170785845776,213,0 +170785845824,213,0 +170785845872,214,0 +170785845921,214,0 +170785845969,214,0 +170785846017,214,0 +170785846067,214,0 +170785846116,213,0 +170785846166,213,0 +170785846215,214,0 +170785846263,213,0 +170785846311,213,0 +170785846359,213,0 +170785846407,213,0 +170785846455,213,0 +170785846504,213,0 +170785846552,213,0 +170785846600,213,0 +170785846648,213,0 +170785846695,213,0 +170785846743,213,0 +170785846791,213,0 +170785846839,213,0 +170785846887,213,0 +170785846937,213,0 +170785846984,213,0 +170785847034,213,0 +170785847084,213,0 +170785847133,214,0 +170785847181,213,0 +170785847229,213,0 +170785847277,213,0 +170785847325,213,0 +170785847374,213,0 +170785847422,213,0 +170785847470,213,0 +170785847518,213,0 +170785847566,213,0 +170785847614,213,0 +170785847662,213,0 +170785847710,213,0 +170785847759,213,0 +170785847809,213,0 +170785847857,214,0 +170785847906,214,0 +170785847954,214,0 +170785848002,214,0 +170785848050,214,0 +170785848098,214,0 +170785848146,213,0 +170785848194,213,0 +170785848242,213,0 +170785848291,213,0 +170785848339,213,0 +170785848387,213,0 +170785848437,213,0 +170785848485,213,0 +170785848533,213,0 +170785848580,213,0 +170785848628,213,0 +170785848678,213,0 +170785848725,213,0 +170785848773,214,0 +170785848821,213,0 +170785848869,214,0 +170785848917,214,0 +170785848965,213,0 +170785849013,214,0 +170785849060,213,0 +170785849108,213,0 +170785849156,213,0 +170785849204,213,0 +170785849252,213,0 +170785849300,213,0 +170785849348,213,0 +170785849395,213,0 +170785849443,213,0 +170785849493,213,0 +170785849542,213,0 +170785849590,213,0 +170785849638,214,0 +170785849686,214,0 +170785849734,214,0 +170785849781,214,0 +170785849831,214,0 +170785849881,214,0 +170785849928,214,0 +170785849976,213,0 +170785850024,213,0 +170785850072,213,0 +170785850120,213,0 +170785850168,213,0 +170785850216,213,0 +170785850264,213,0 +170785850312,213,0 +170785850361,213,0 +170785850409,213,0 +170785850458,213,0 +170785850507,213,0 +170785850556,213,0 +170785850604,214,0 +170785850653,213,0 +170785850703,214,0 +170785850752,214,0 +170785850800,214,0 +170785850850,214,0 +170785850899,213,0 +170785850947,213,0 +170785850995,213,0 +170785851043,213,0 +170785851093,213,0 +170785851141,213,0 +170785851190,213,0 +170785851238,213,0 +170785851286,213,0 +170785851334,213,0 +170785851382,213,0 +170785851430,213,0 +170785851480,213,0 +170785851529,213,0 +170785851577,214,0 +170785851625,214,0 +170785851673,214,0 +170785851722,214,0 +170785851770,214,0 +170785851818,213,0 +170785851866,213,0 +170785851914,213,0 +170785851962,213,0 +170785852011,213,0 +170785852059,213,0 +170785852107,213,0 +170785852157,213,0 +170785852205,213,0 +170785852253,213,0 +170785852302,213,0 +170785852350,213,0 +170785852398,214,0 +170785852446,214,0 +170785852495,214,0 +170785852545,214,0 +170785852594,214,0 +170785852642,214,0 +170785852690,214,0 +170785852740,213,0 +170785852788,213,0 +170785852835,213,0 +170785852883,213,0 +170785852933,213,0 +170785852981,213,0 +170785853029,213,0 +170785853078,213,0 +170785853126,213,0 +170785853176,213,0 +170785853224,213,0 +170785853272,213,0 +170785853320,213,0 +170785853369,214,0 +170785853419,214,0 +170785853468,214,0 +170785853518,214,0 +170785853566,214,0 +170785853614,214,0 +170785853662,213,0 +170785853709,213,0 +170785853757,213,0 +170785853807,213,0 +170785853855,213,0 +170785853903,213,0 +170785853952,213,0 +170785854000,213,0 +170785854050,213,0 +170785854098,213,0 +170785854146,213,0 +170785854194,213,0 +170785854243,213,0 +170785854293,213,0 +170785854342,214,0 +170785854390,214,0 +170785854439,214,0 +170785854487,214,0 +170785854535,214,0 +170785854583,214,0 +170785854631,213,0 +170785854681,213,0 +170785854730,213,0 +170785854778,213,0 +170785854826,213,0 +170785854876,213,0 +170785854924,213,0 +170785854972,213,0 +170785855020,213,0 +170785855068,213,0 +170785855115,213,0 +170785855163,213,0 +170785855213,214,0 +170785855261,213,0 +170785855309,214,0 +170785855357,214,0 +170785855405,214,0 +170785855452,214,0 +170785855502,214,0 +170785855550,213,0 +170785855598,213,0 +170785855646,213,0 +170785855694,213,0 +170785855742,213,0 +170785855791,213,0 +170785855841,213,0 +170785855890,213,0 +170785855939,213,0 +170785855989,214,0 +170785856039,213,0 +170785856086,214,0 +170785856134,214,0 +170785856182,214,0 +170785856232,213,0 +170785856280,214,0 +170785856329,214,0 +170785856377,214,0 +170785856425,214,0 +170785856473,213,0 +170785856523,213,0 +170785856571,214,0 +170785856619,213,0 +170785856668,213,0 +170785856716,214,0 +170785856766,213,0 +170785856814,214,0 +170785856862,214,0 +170785856910,214,0 +170785856959,214,0 +170785857007,214,0 +170785857055,214,0 +170785857103,214,0 +170785857151,214,0 +170785857199,214,0 +170785857247,214,0 +170785857295,214,0 +170785857343,214,0 +170785857390,213,0 +170785857440,213,0 +170785857489,213,0 +170785857539,213,0 +170785857587,214,0 +170785857635,214,0 +170785857683,213,0 +170785857730,214,0 +170785857778,214,0 +170785857826,214,0 +170785857876,214,0 +170785857925,214,0 +170785857975,214,0 +170785858023,214,0 +170785858072,214,0 +170785858120,214,0 +170785858168,214,0 +170785858218,214,0 +170785858266,214,0 +170785858313,213,0 +170785858361,213,0 +170785858409,213,0 +170785858457,213,0 +170785858507,213,0 +170785858555,213,0 +170785858602,213,0 +170785858650,214,0 +170785858698,214,0 +170785858746,214,0 +170785858794,214,0 +170785858842,214,0 +170785858890,214,0 +170785858938,214,0 +170785858986,214,0 +170785859033,213,0 +170785859081,214,0 +170785859129,214,0 +170785859179,214,0 +170785859228,213,0 +170785859276,213,0 +170785859324,213,0 +170785859372,213,0 +170785859420,213,0 +170785859468,213,0 +170785859516,213,0 +170785859564,213,0 +170785859612,213,0 +170785859660,213,0 +170785859707,213,0 +170785859755,213,0 +170785859805,213,0 +170785859853,214,0 +170785859900,214,0 +170785859948,214,0 +170785859996,214,0 +170785860044,214,0 +170785860092,214,0 +170785860140,213,0 +170785860188,213,0 +170785860237,213,0 +170785860285,213,0 +170785860333,213,0 +170785860381,213,0 +170785860429,213,0 +170785860478,213,0 +170785860526,213,0 +170785860574,213,0 +170785860622,213,0 +170785860670,213,0 +170785860717,213,0 +170785860765,213,0 +170785860813,213,0 +170785860861,213,0 +170785860910,213,0 +170785860958,213,0 +170785861006,214,0 +170785861054,214,0 +170785861102,213,0 +170785861150,213,0 +170785861199,213,0 +170785861247,213,0 +170785861295,213,0 +170785861343,213,0 +170785861391,213,0 +170785861440,213,0 +170785861488,213,0 +170785861536,213,0 +170785861586,213,0 +170785861634,213,0 +170785861682,213,0 +170785861730,214,0 +170785861778,214,0 +170785861825,214,0 +170785861873,214,0 +170785861921,214,0 +170785861969,214,0 +170785862017,213,0 +170785862065,213,0 +170785862115,213,0 +170785862163,213,0 +170785862212,213,0 +170785862262,213,0 +170785862310,213,0 +170785862358,213,0 +170785862406,213,0 +170785862454,213,0 +170785862501,213,0 +170785862549,214,0 +170785862597,214,0 +170785862647,214,0 +170785862695,214,0 +170785862743,214,0 +170785862791,214,0 +170785862840,214,0 +170785862888,214,0 +170785862937,213,0 +170785862985,212,0 +170785863035,213,0 +170785863083,213,0 +170785863131,213,0 +170785863179,213,0 +170785863228,213,0 +170785863278,213,0 +170785863328,213,0 +170785863376,213,0 +170785863425,213,0 +170785863473,213,0 +170785863522,214,0 +170785863570,213,0 +170785863620,214,0 +170785863670,214,0 +170785863719,214,0 +170785863768,214,0 +170785863818,214,0 +170785863868,213,0 +170785863917,213,0 +170785863965,213,0 +170785864014,213,0 +170785864062,213,0 +170785864110,213,0 +170785864160,213,0 +170785864208,213,0 +170785864256,213,0 +170785864304,213,0 +170785864352,213,0 +170785864401,213,0 +170785864449,213,0 +170785864497,214,0 +170785864547,214,0 +170785864595,214,0 +170785864643,214,0 +170785864692,214,0 +170785864742,213,0 +170785864790,213,0 +170785864837,213,0 +170785864885,213,0 +170785864935,213,0 +170785864983,213,0 +170785865031,213,0 +170785865079,213,0 +170785865127,213,0 +170785865175,213,0 +170785865222,213,0 +170785865270,213,0 +170785865318,213,0 +170785865366,213,0 +170785865414,213,0 +170785865462,214,0 +170785865512,213,0 +170785865560,214,0 +170785865609,214,0 +170785865657,213,0 +170785865705,213,0 +170785865753,213,0 +170785865802,213,0 +170785865850,213,0 +170785865900,213,0 +170785865948,213,0 +170785865996,213,0 +170785866044,213,0 +170785866091,213,0 +170785866139,213,0 +170785866187,213,0 +170785866235,213,0 +170785866285,213,0 +170785866333,213,0 +170785866381,214,0 +170785866428,214,0 +170785866478,214,0 +170785866526,214,0 +170785866576,214,0 +170785866623,213,0 +170785866671,213,0 +170785866721,213,0 +170785866770,213,0 +170785866818,213,0 +170785866868,213,0 +170785866917,213,0 +170785866965,213,0 +170785867015,213,0 +170785867064,213,0 +170785867112,214,0 +170785867162,213,0 +170785867211,214,0 +170785867259,214,0 +170785867307,214,0 +170785867356,214,0 +170785867404,214,0 +170785867452,214,0 +170785867502,214,0 +170785867550,214,0 +170785867598,213,0 +170785867647,213,0 +170785867697,213,0 +170785867746,213,0 +170785867794,213,0 +170785867842,213,0 +170785867890,213,0 +170785867938,213,0 +170785867986,213,0 +170785868035,214,0 +170785868083,213,0 +170785868131,214,0 +170785868181,214,0 +170785868230,214,0 +170785868280,214,0 +170785868328,214,0 +170785868376,214,0 +170785868425,214,0 +170785868475,213,0 +170785868524,213,0 +170785868572,213,0 +170785868620,213,0 +170785868668,213,0 +170785868716,213,0 +170785868764,213,0 +170785868812,213,0 +170785868860,213,0 +170785868908,213,0 +170785868957,213,0 +170785869007,213,0 +170785869055,214,0 +170785869104,214,0 +170785869152,214,0 +170785869200,214,0 +170785869250,214,0 +170785869298,214,0 +170785869347,214,0 +170785869395,213,0 +170785869443,213,0 +170785869491,213,0 +170785869541,213,0 +170785869590,213,0 +170785869638,213,0 +170785869688,213,0 +170785869737,213,0 +170785869787,213,0 +170785869836,213,0 +170785869884,213,0 +170785869932,213,0 +170785869980,213,0 +170785870028,214,0 +170785870077,214,0 +170785870125,213,0 +170785870173,214,0 +170785870221,214,0 +170785870269,214,0 +170785870319,214,0 +170785870367,213,0 +170785870416,213,0 +170785870465,213,0 +170785870513,213,0 +170785870563,213,0 +170785870611,213,0 +170785870659,213,0 +170785870707,213,0 +170785870755,213,0 +170785870804,213,0 +170785870852,213,0 +170785870900,213,0 +170785870950,213,0 +170785870998,214,0 +170785871045,213,0 +170785871095,214,0 +170785871143,214,0 +170785871192,214,0 +170785871242,213,0 +170785871290,213,0 +170785871338,213,0 +170785871387,212,0 +170785871437,213,0 +170785871485,213,0 +170785871534,213,0 +170785871582,213,0 +170785871630,213,0 +170785871678,213,0 +170785871726,213,0 +170785871774,213,0 +170785871822,213,0 +170785871870,213,0 +170785871920,213,0 +170785871967,213,0 +170785872015,213,0 +170785872065,214,0 +170785872113,214,0 +170785872162,214,0 +170785872210,213,0 +170785872260,213,0 +170785872308,213,0 +170785872356,213,0 +170785872404,213,0 +170785872452,213,0 +170785872500,213,0 +170785872549,213,0 +170785872599,213,0 +170785872647,213,0 +170785872695,213,0 +170785872743,214,0 +170785872791,213,0 +170785872839,213,0 +170785872888,214,0 +170785872936,214,0 +170785872984,213,0 +170785873032,214,0 +170785873080,213,0 +170785873129,213,0 +170785873177,213,0 +170785873227,213,0 +170785873275,213,0 +170785873323,213,0 +170785873371,213,0 +170785873420,213,0 +170785873468,213,0 +170785873518,213,0 +170785873565,213,0 +170785873614,213,0 +170785873661,213,0 +170785873709,213,0 +170785873757,213,0 +170785873807,214,0 +170785873856,214,0 +170785873906,214,0 +170785873956,213,0 +170785874005,213,0 +170785874053,213,0 +170785874101,213,0 +170785874149,213,0 +170785874197,213,0 +170785874246,213,0 +170785874294,213,0 +170785874343,213,0 +170785874391,213,0 +170785874441,213,0 +170785874490,213,0 +170785874538,213,0 +170785874586,213,0 +170785874634,213,0 +170785874684,214,0 +170785874732,214,0 +170785874780,214,0 +170785874827,213,0 +170785874875,214,0 +170785874925,214,0 +170785874973,213,0 +170785875021,213,0 +170785875070,213,0 +170785875118,213,0 +170785875168,213,0 +170785875216,213,0 +170785875265,213,0 +170785875315,213,0 +170785875364,213,0 +170785875414,213,0 +170785875462,213,0 +170785875511,213,0 +170785875561,213,0 +170785875610,214,0 +170785875658,214,0 +170785875706,214,0 +170785875756,214,0 +170785875805,213,0 +170785875853,213,0 +170785875903,213,0 +170785875952,213,0 +170785876002,213,0 +170785876050,213,0 +170785876099,213,0 +170785876147,213,0 +170785876195,213,0 +170785876243,213,0 +170785876291,213,0 +170785876340,213,0 +170785876390,213,0 +170785876438,213,0 +170785876486,213,0 +170785876534,214,0 +170785876583,214,0 +170785876631,214,0 +170785876679,214,0 +170785876727,214,0 +170785876775,214,0 +170785876823,213,0 +170785876871,213,0 +170785876919,213,0 +170785876967,213,0 +170785877015,213,0 +170785877064,213,0 +170785877112,213,0 +170785877160,213,0 +170785877208,213,0 +170785877256,213,0 +170785877304,213,0 +170785877352,213,0 +170785877402,214,0 +170785877449,214,0 +170785877497,214,0 +170785877545,214,0 +170785877595,214,0 +170785877643,214,0 +170785877691,214,0 +170785877739,213,0 +170785877787,213,0 +170785877836,213,0 +170785877884,213,0 +170785877932,213,0 +170785877982,213,0 +170785878031,213,0 +170785878081,213,0 +170785878130,214,0 +170785878178,214,0 +170785878226,214,0 +170785878276,214,0 +170785878324,214,0 +170785878372,214,0 +170785878420,214,0 +170785878469,214,0 +170785878517,214,0 +170785878565,214,0 +170785878613,214,0 +170785878662,213,0 +170785878710,213,0 +170785878758,213,0 +170785878806,213,0 +170785878856,213,0 +170785878904,213,0 +170785878952,213,0 +170785879000,214,0 +170785879047,213,0 +170785879095,214,0 +170785879143,213,0 +170785879193,214,0 +170785879241,214,0 +170785879289,214,0 +170785879337,214,0 +170785879385,214,0 +170785879433,214,0 +170785879481,214,0 +170785879530,214,0 +170785879578,213,0 +170785879628,213,0 +170785879676,213,0 +170785879725,213,0 +170785879773,213,0 +170785879821,213,0 +170785879869,213,0 +170785879917,214,0 +170785879966,214,0 +170785880014,214,0 +170785880062,214,0 +170785880110,214,0 +170785880158,214,0 +170785880208,214,0 +170785880256,214,0 +170785880305,214,0 +170785880353,214,0 +170785880401,214,0 +170785880449,214,0 +170785880498,214,0 +170785880546,213,0 +170785880594,213,0 +170785880644,213,0 +170785880693,213,0 +170785880741,213,0 +170785880791,213,0 +170785880840,213,0 +170785880888,213,0 +170785880938,213,0 +170785880985,213,0 +170785881033,213,0 +170785881081,214,0 +170785881129,214,0 +170785881179,214,0 +170785881227,214,0 +170785881274,214,0 +170785881324,214,0 +170785881373,214,0 +170785881421,214,0 +170785881469,213,0 +170785881517,213,0 +170785881565,213,0 +170785881613,213,0 +170785881661,213,0 +170785881708,213,0 +170785881756,213,0 +170785881804,213,0 +170785881852,213,0 +170785881900,213,0 +170785881948,213,0 +170785881996,213,0 +170785882045,214,0 +170785882095,214,0 +170785882143,214,0 +170785882191,214,0 +170785882239,214,0 +170785882286,214,0 +170785882334,214,0 +170785882384,213,0 +170785882432,213,0 +170785882480,213,0 +170785882528,213,0 +170785882577,213,0 +170785882625,213,0 +170785882674,213,0 +170785882722,213,0 +170785882770,213,0 +170785882818,213,0 +170785882866,213,0 +170785882916,213,0 +170785882964,213,0 +170785883013,214,0 +170785883061,214,0 +170785883111,214,0 +170785883159,214,0 +170785883208,214,0 +170785883256,213,0 +170785883304,213,0 +170785883352,212,0 +170785883400,213,0 +170785883449,213,0 +170785883499,213,0 +170785883547,213,0 +170785883595,213,0 +170785883644,213,0 +170785883692,213,0 +170785883740,214,0 +170785883788,214,0 +170785883836,214,0 +170785883885,213,0 +170785883933,214,0 +170785883981,214,0 +170785884029,214,0 +170785884077,214,0 +170785884124,214,0 +170785884172,214,0 +170785884220,213,0 +170785884270,213,0 +170785884319,213,0 +170785884369,213,0 +170785884417,213,0 +170785884465,213,0 +170785884513,213,0 +170785884560,213,0 +170785884608,213,0 +170785884656,213,0 +170785884706,214,0 +170785884755,214,0 +170785884803,213,0 +170785884852,214,0 +170785884900,214,0 +170785884948,214,0 +170785884996,214,0 +170785885046,214,0 +170785885094,214,0 +170785885141,213,0 +170785885189,213,0 +170785885237,213,0 +170785885285,213,0 +170785885333,213,0 +170785885381,213,0 +170785885429,213,0 +170785885477,213,0 +170785885525,213,0 +170785885573,213,0 +170785885621,213,0 +170785885669,214,0 +170785885716,214,0 +170785885764,214,0 +170785885812,214,0 +170785885860,214,0 +170785885910,214,0 +170785885958,214,0 +170785886007,214,0 +170785886055,213,0 +170785886105,213,0 +170785886153,213,0 +170785886200,212,0 +170785886248,213,0 +170785886298,213,0 +170785886346,213,0 +170785886394,213,0 +170785886441,213,0 +170785886489,213,0 +170785886537,213,0 +170785886585,213,0 +170785886633,213,0 +170785886681,214,0 +170785886728,214,0 +170785886776,214,0 +170785886826,214,0 +170785886874,213,0 +170785886922,214,0 +170785886969,214,0 +170785887017,213,0 +170785887065,213,0 +170785887113,213,0 +170785887161,213,0 +170785887208,213,0 +170785887256,213,0 +170785887306,213,0 +170785887354,213,0 +170785887403,213,0 +170785887451,213,0 +170785887499,213,0 +170785887548,213,0 +170785887596,213,0 +170785887644,214,0 +170785887692,214,0 +170785887740,214,0 +170785887788,214,0 +170785887838,213,0 +170785887886,213,0 +170785887935,213,0 +170785887985,213,0 +170785888032,212,0 +170785888080,213,0 +170785888130,213,0 +170785888178,213,0 +170785888226,213,0 +170785888274,213,0 +170785888323,213,0 +170785888371,213,0 +170785888419,213,0 +170785888469,213,0 +170785888517,213,0 +170785888564,213,0 +170785888612,214,0 +170785888660,214,0 +170785888708,214,0 +170785888756,214,0 +170785888804,214,0 +170785888851,213,0 +170785888899,213,0 +170785888947,213,0 +170785888995,213,0 +170785889044,213,0 +170785889092,213,0 +170785889140,213,0 +170785889187,213,0 +170785889235,213,0 +170785889283,213,0 +170785889331,213,0 +170785889379,213,0 +170785889426,213,0 +170785889476,214,0 +170785889524,214,0 +170785889572,214,0 +170785889619,214,0 +170785889667,214,0 +170785889717,214,0 +170785889765,213,0 +170785889814,213,0 +170785889862,213,0 +170785889910,213,0 +170785889958,213,0 +170785890006,213,0 +170785890053,213,0 +170785890101,213,0 +170785890149,213,0 +170785890197,213,0 +170785890245,213,0 +170785890293,213,0 +170785890341,213,0 +170785890390,213,0 +170785890438,213,0 +170785890486,214,0 +170785890535,214,0 +170785890583,214,0 +170785890633,214,0 +170785890682,213,0 +170785890730,213,0 +170785890778,213,0 +170785890828,213,0 +170785890876,213,0 +170785890925,213,0 +170785890975,213,0 +170785891023,213,0 +170785891072,213,0 +170785891120,213,0 +170785891168,213,0 +170785891216,214,0 +170785891265,213,0 +170785891313,214,0 +170785891361,214,0 +170785891409,214,0 +170785891457,214,0 +170785891505,213,0 +170785891553,214,0 +170785891603,213,0 +170785891651,213,0 +170785891699,213,0 +170785891748,213,0 +170785891796,213,0 +170785891844,213,0 +170785891892,213,0 +170785891940,213,0 +170785891989,213,0 +170785892037,213,0 +170785892085,213,0 +170785892133,213,0 +170785892181,213,0 +170785892231,214,0 +170785892280,213,0 +170785892330,213,0 +170785892379,214,0 +170785892427,214,0 +170785892475,214,0 +170785892523,213,0 +170785892572,213,0 +170785892620,213,0 +170785892668,213,0 +170785892716,213,0 +170785892764,213,0 +170785892812,213,0 +170785892862,213,0 +170785892911,213,0 +170785892959,213,0 +170785893007,213,0 +170785893055,213,0 +170785893104,213,0 +170785893152,213,0 +170785893200,213,0 +170785893248,213,0 +170785893296,213,0 +170785893344,213,0 +170785893394,214,0 +170785893441,213,0 +170785893489,213,0 +170785893537,213,0 +170785893585,213,0 +170785893633,213,0 +170785893683,213,0 +170785893732,213,0 +170785893782,213,0 +170785893830,213,0 +170785893878,213,0 +170785893927,213,0 +170785893977,214,0 +170785894025,213,0 +170785894072,214,0 +170785894122,214,0 +170785894171,214,0 +170785894219,214,0 +170785894267,214,0 +170785894315,214,0 +170785894365,214,0 +170785894414,213,0 +170785894462,213,0 +170785894510,213,0 +170785894558,213,0 +170785894606,213,0 +170785894654,213,0 +170785894703,213,0 +170785894753,213,0 +170785894802,213,0 +170785894850,213,0 +170785894898,213,0 +170785894946,213,0 +170785894994,213,0 +170785895042,213,0 +170785895091,213,0 +170785895139,214,0 +170785895187,214,0 +170785895237,214,0 +170785895285,213,0 +170785895333,213,0 +170785895381,213,0 +170785895429,213,0 +170785895477,213,0 +170785895526,213,0 +170785895574,213,0 +170785895624,213,0 +170785895673,213,0 +170785895721,213,0 +170785895769,213,0 +170785895817,213,0 +170785895867,213,0 +170785895916,213,0 +170785895964,213,0 +170785896014,214,0 +170785896063,213,0 +170785896111,214,0 +170785896160,214,0 +170785896208,214,0 +170785896256,213,0 +170785896304,213,0 +170785896352,213,0 +170785896402,213,0 +170785896450,213,0 +170785896499,213,0 +170785896549,213,0 +170785896597,213,0 +170785896646,213,0 +170785896696,213,0 +170785896745,213,0 +170785896795,213,0 +170785896843,213,0 +170785896891,213,0 +170785896938,213,0 +170785896986,213,0 +170785897034,214,0 +170785897084,213,0 +170785897133,214,0 +170785897181,213,0 +170785897231,213,0 +170785897280,213,0 +170785897330,213,0 +170785897378,213,0 +170785897427,213,0 +170785897477,213,0 +170785897525,213,0 +170785897573,213,0 +170785897621,213,0 +170785897670,213,0 +170785897720,213,0 +170785897768,213,0 +170785897816,213,0 +170785897865,213,0 +170785897913,214,0 +170785897963,214,0 +170785898011,214,0 +170785898060,214,0 +170785898110,213,0 +170785898159,213,0 +170785898207,213,0 +170785898255,213,0 +170785898305,213,0 +170785898354,213,0 +170785898402,213,0 +170785898452,213,0 +170785898500,213,0 +170785898548,213,0 +170785898595,213,0 +170785898643,213,0 +170785898693,214,0 +170785898741,214,0 +170785898789,214,0 +170785898838,214,0 +170785898886,214,0 +170785898936,213,0 +170785898984,213,0 +170785899033,213,0 +170785899081,213,0 +170785899129,213,0 +170785899177,213,0 +170785899227,213,0 +170785899276,213,0 +170785899326,213,0 +170785899375,214,0 +170785899425,214,0 +170785899474,214,0 +170785899524,214,0 +170785899572,214,0 +170785899620,214,0 +170785899668,214,0 +170785899716,214,0 +170785899765,214,0 +170785899815,214,0 +170785899863,214,0 +170785899911,214,0 +170785899959,213,0 +170785900007,213,0 +170785900056,213,0 +170785900104,213,0 +170785900152,213,0 +170785900201,213,0 +170785900249,214,0 +170785900297,213,0 +170785900345,214,0 +170785900393,214,0 +170785900441,214,0 +170785900489,214,0 +170785900537,214,0 +170785900587,214,0 +170785900635,214,0 +170785900684,214,0 +170785900732,214,0 +170785900780,214,0 +170785900828,214,0 +170785900877,213,0 +170785900925,213,0 +170785900975,213,0 +170785901025,213,0 +170785901073,213,0 +170785901120,213,0 +170785901168,213,0 +170785901216,213,0 +170785901264,214,0 +170785901312,214,0 +170785901360,213,0 +170785901408,214,0 +170785901456,214,0 +170785901505,214,0 +170785901553,214,0 +170785901601,214,0 +170785901649,214,0 +170785901699,214,0 +170785901747,214,0 +170785901795,213,0 +170785901843,213,0 +170785901891,213,0 +170785901938,213,0 +170785901986,213,0 +170785902034,213,0 +170785902082,213,0 +170785902132,213,0 +170785902181,213,0 +170785902229,213,0 +170785902279,213,0 +170785902328,214,0 +170785902376,214,0 +170785902426,214,0 +170785902474,214,0 +170785902522,214,0 +170785902570,213,0 +170785902619,214,0 +170785902669,214,0 +170785902717,213,0 +170785902765,213,0 +170785902813,213,0 +170785902862,213,0 +170785902912,213,0 +170785902960,213,0 +170785903008,213,0 +170785903057,213,0 +170785903105,213,0 +170785903153,213,0 +170785903201,213,0 +170785903249,213,0 +170785903299,213,0 +170785903346,213,0 +170785903394,213,0 +170785903442,214,0 +170785903492,214,0 +170785903541,214,0 +170785903591,213,0 +170785903639,213,0 +170785903687,213,0 +170785903736,213,0 +170785903784,213,0 +170785903832,213,0 +170785903880,213,0 +170785903928,213,0 +170785903976,213,0 +170785904025,213,0 +170785904073,213,0 +170785904121,213,0 +170785904169,213,0 +170785904217,213,0 +170785904266,213,0 +170785904314,214,0 +170785904363,214,0 +170785904411,214,0 +170785904459,214,0 +170785904507,214,0 +170785904555,213,0 +170785904605,213,0 +170785904654,213,0 +170785904704,213,0 +170785904752,213,0 +170785904801,213,0 +170785904849,213,0 +170785904899,213,0 +170785904947,213,0 +170785904995,213,0 +170785905042,213,0 +170785905092,213,0 +170785905140,213,0 +170785905188,213,0 +170785905236,214,0 +170785905285,214,0 +170785905333,214,0 +170785905381,214,0 +170785905429,214,0 +170785905477,213,0 +170785905525,213,0 +170785905574,213,0 +170785905622,213,0 +170785905670,213,0 +170785905718,213,0 +170785905766,213,0 +170785905814,213,0 +170785905862,213,0 +170785905910,213,0 +170785905958,213,0 +170785906006,213,0 +170785906055,213,0 +170785906105,213,0 +170785906153,213,0 +170785906202,213,0 +170785906250,214,0 +170785906298,214,0 +170785906346,214,0 +170785906394,214,0 +170785906443,213,0 +170785906491,213,0 +170785906539,212,0 +170785906587,213,0 +170785906635,213,0 +170785906682,213,0 +170785906730,213,0 +170785906778,213,0 +170785906826,213,0 +170785906875,213,0 +170785906925,213,0 +170785906973,213,0 +170785907021,214,0 +170785907069,213,0 +170785907117,213,0 +170785907164,214,0 +170785907212,214,0 +170785907262,214,0 +170785907312,213,0 +170785907359,213,0 +170785907409,213,0 +170785907457,213,0 +170785907506,213,0 +170785907554,213,0 +170785907602,213,0 +170785907650,213,0 +170785907698,213,0 +170785907746,213,0 +170785907794,213,0 +170785907842,213,0 +170785907890,213,0 +170785907938,213,0 +170785907986,214,0 +170785908034,214,0 +170785908082,214,0 +170785908129,214,0 +170785908179,214,0 +170785908227,214,0 +170785908275,213,0 +170785908324,213,0 +170785908374,213,0 +170785908422,213,0 +170785908471,213,0 +170785908521,213,0 +170785908569,213,0 +170785908617,213,0 +170785908665,213,0 +170785908713,213,0 +170785908761,213,0 +170785908810,213,0 +170785908858,213,0 +170785908906,213,0 +170785908954,213,0 +170785909003,214,0 +170785909051,214,0 +170785909099,213,0 +170785909147,214,0 +170785909197,213,0 +170785909245,213,0 +170785909293,213,0 +170785909342,213,0 +170785909390,213,0 +170785909438,213,0 +170785909486,213,0 +170785909534,213,0 +170785909582,213,0 +170785909631,213,0 +170785909679,213,0 +170785909727,214,0 +170785909775,213,0 +170785909823,213,0 +170785909871,214,0 +170785909918,213,0 +170785909966,214,0 +170785910014,214,0 +170785910064,214,0 +170785910113,213,0 +170785910161,213,0 +170785910209,213,0 +170785910258,213,0 +170785910306,213,0 +170785910356,213,0 +170785910404,213,0 +170785910452,213,0 +170785910501,213,0 +170785910549,213,0 +170785910597,214,0 +170785910645,214,0 +170785910693,214,0 +170785910741,214,0 +170785910789,214,0 +170785910837,214,0 +170785910886,214,0 +170785910934,214,0 +170785910982,214,0 +170785911032,213,0 +170785911080,213,0 +170785911127,213,0 +170785911175,213,0 +170785911225,213,0 +170785911273,213,0 +170785911321,213,0 +170785911368,213,0 +170785911416,213,0 +170785911464,213,0 +170785911512,213,0 +170785911560,213,0 +170785911608,214,0 +170785911655,214,0 +170785911703,214,0 +170785911751,214,0 +170785911799,214,0 +170785911847,214,0 +170785911895,214,0 +170785911943,213,0 +170785911991,213,0 +170785912039,213,0 +170785912086,213,0 +170785912134,213,0 +170785912182,213,0 +170785912232,213,0 +170785912280,213,0 +170785912329,213,0 +170785912377,213,0 +170785912427,213,0 +170785912476,213,0 +170785912526,214,0 +170785912574,214,0 +170785912623,214,0 +170785912673,214,0 +170785912721,214,0 +170785912768,214,0 +170785912816,214,0 +170785912866,213,0 +170785912914,213,0 +170785912963,213,0 +170785913011,213,0 +170785913059,213,0 +170785913107,213,0 +170785913156,213,0 +170785913206,213,0 +170785913254,213,0 +170785913302,213,0 +170785913351,213,0 +170785913401,213,0 +170785913449,214,0 +170785913497,214,0 +170785913545,214,0 +170785913593,214,0 +170785913641,214,0 +170785913688,214,0 +170785913736,213,0 +170785913784,213,0 +170785913834,213,0 +170785913882,213,0 +170785913931,213,0 +170785913979,213,0 +170785914029,213,0 +170785914077,213,0 +170785914126,213,0 +170785914174,213,0 +170785914222,213,0 +170785914270,213,0 +170785914318,214,0 +170785914366,214,0 +170785914414,214,0 +170785914461,214,0 +170785914511,214,0 +170785914558,214,0 +170785914606,214,0 +170785914656,214,0 +170785914704,213,0 +170785914752,213,0 +170785914799,213,0 +170785914848,213,0 +170785914897,213,0 +170785914945,213,0 +170785914993,213,0 +170785915041,213,0 +170785915090,213,0 +170785915140,213,0 +170785915188,213,0 +170785915236,213,0 +170785915284,213,0 +170785915332,214,0 +170785915380,213,0 +170785915427,214,0 +170785915477,214,0 +170785915527,214,0 +170785915574,214,0 +170785915622,213,0 +170785915670,212,0 +170785915720,213,0 +170785915768,213,0 +170785915816,213,0 +170785915865,213,0 +170785915913,213,0 +170785915961,213,0 +170785916009,213,0 +170785916059,213,0 +170785916106,213,0 +170785916154,213,0 +170785916202,213,0 +170785916250,213,0 +170785916298,214,0 +170785916346,213,0 +170785916394,214,0 +170785916442,213,0 +170785916490,214,0 +170785916538,213,0 +170785916586,213,0 +170785916634,212,0 +170785916682,213,0 +170785916730,213,0 +170785916779,213,0 +170785916827,213,0 +170785916875,213,0 +170785916923,213,0 +170785916971,213,0 +170785917020,213,0 +170785917068,213,0 +170785917116,213,0 +170785917166,213,0 +170785917213,214,0 +170785917263,214,0 +170785917311,214,0 +170785917359,214,0 +170785917407,214,0 +170785917455,214,0 +170785917503,213,0 +170785917552,213,0 +170785917600,213,0 +170785917648,213,0 +170785917697,213,0 +170785917747,213,0 +170785917795,213,0 +170785917843,213,0 +170785917891,213,0 +170785917939,213,0 +170785917987,213,0 +170785918035,213,0 +170785918084,213,0 +170785918134,213,0 +170785918183,213,0 +170785918231,213,0 +170785918281,213,0 +170785918330,213,0 +170785918380,213,0 +170785918428,213,0 +170785918477,213,0 +170785918525,213,0 +170785918575,213,0 +170785918623,213,0 +170785918671,213,0 +170785918719,213,0 +170785918767,213,0 +170785918815,213,0 +170785918862,213,0 +170785918910,213,0 +170785918958,213,0 +170785919006,213,0 +170785919054,213,0 +170785919102,213,0 +170785919150,214,0 +170785919198,213,0 +170785919248,213,0 +170785919297,214,0 +170785919345,213,0 +170785919393,213,0 +170785919441,213,0 +170785919488,213,0 +170785919536,213,0 +170785919586,213,0 +170785919634,213,0 +170785919681,213,0 +170785919729,213,0 +170785919777,213,0 +170785919825,213,0 +170785919875,213,0 +170785919923,214,0 +170785919971,214,0 +170785920020,214,0 +170785920070,214,0 +170785920118,214,0 +170785920166,214,0 +170785920215,213,0 +170785920265,213,0 +170785920313,213,0 +170785920362,213,0 +170785920410,213,0 +170785920460,213,0 +170785920507,213,0 +170785920555,213,0 +170785920603,214,0 +170785920651,214,0 +170785920699,214,0 +170785920747,214,0 +170785920795,214,0 +170785920843,214,0 +170785920892,214,0 +170785920940,213,0 +170785920990,214,0 +170785921038,214,0 +170785921086,214,0 +170785921134,213,0 +170785921182,213,0 +170785921231,213,0 +170785921279,213,0 +170785921329,213,0 +170785921377,213,0 +170785921425,213,0 +170785921473,213,0 +170785921520,213,0 +170785921568,213,0 +170785921616,213,0 +170785921666,213,0 +170785921714,214,0 +170785921762,214,0 +170785921810,214,0 +170785921859,214,0 +170785921909,214,0 +170785921956,214,0 +170785922006,214,0 +170785922055,214,0 +170785922103,213,0 +170785922151,213,0 +170785922199,213,0 +170785922247,213,0 +170785922295,213,0 +170785922344,213,0 +170785922392,213,0 +170785922440,213,0 +170785922488,213,0 +170785922536,213,0 +170785922583,213,0 +170785922631,214,0 +170785922679,214,0 +170785922727,214,0 +170785922775,214,0 +170785922823,214,0 +170785922871,214,0 +170785922918,213,0 +170785922966,213,0 +170785923014,213,0 +170785923062,213,0 +170785923110,213,0 +170785923159,213,0 +170785923207,213,0 +170785923255,213,0 +170785923303,213,0 +170785923351,213,0 +170785923399,213,0 +170785923447,213,0 +170785923495,213,0 +170785923543,213,0 +170785923592,213,0 +170785923640,214,0 +170785923688,214,0 +170785923736,214,0 +170785923783,214,0 +170785923831,214,0 +170785923879,214,0 +170785923927,213,0 +170785923975,213,0 +170785924023,213,0 +170785924070,213,0 +170785924118,213,0 +170785924166,213,0 +170785924214,213,0 +170785924262,213,0 +170785924310,213,0 +170785924357,213,0 +170785924405,213,0 +170785924455,213,0 +170785924504,213,0 +170785924552,213,0 +170785924600,213,0 +170785924648,213,0 +170785924696,214,0 +170785924744,214,0 +170785924793,213,0 +170785924841,214,0 +170785924889,213,0 +170785924937,213,0 +170785924985,213,0 +170785925033,213,0 +170785925082,213,0 +170785925130,213,0 +170785925178,213,0 +170785925226,213,0 +170785925274,213,0 +170785925322,213,0 +170785925371,213,0 +170785925419,213,0 +170785925467,213,0 +170785925514,213,0 +170785925562,213,0 +170785925610,213,0 +170785925658,214,0 +170785925706,213,0 +170785925754,213,0 +170785925802,213,0 +170785925851,213,0 +170785925899,213,0 +170785925947,213,0 +170785925995,213,0 +170785926043,213,0 +170785926091,213,0 +170785926138,213,0 +170785926188,213,0 +170785926236,213,0 +170785926284,213,0 +170785926332,213,0 +170785926379,213,0 +170785926427,213,0 +170785926475,214,0 +170785926523,213,0 +170785926571,214,0 +170785926619,214,0 +170785926667,214,0 +170785926716,213,0 +170785926764,213,0 +170785926812,213,0 +170785926860,213,0 +170785926910,213,0 +170785926959,213,0 +170785927007,213,0 +170785927057,213,0 +170785927105,213,0 +170785927153,213,0 +170785927200,213,0 +170785927250,213,0 +170785927298,213,0 +170785927347,214,0 +170785927395,213,0 +170785927443,213,0 +170785927491,213,0 +170785927539,214,0 +170785927587,213,0 +170785927635,213,0 +170785927683,213,0 +170785927731,213,0 +170785927781,213,0 +170785927830,213,0 +170785927878,213,0 +170785927926,213,0 +170785927975,213,0 +170785928023,213,0 +170785928071,213,0 +170785928119,213,0 +170785928167,213,0 +170785928217,213,0 +170785928265,213,0 +170785928313,213,0 +170785928362,214,0 +170785928410,214,0 +170785928458,213,0 +170785928506,214,0 +170785928554,213,0 +170785928603,213,0 +170785928651,213,0 +170785928699,212,0 +170785928748,213,0 +170785928796,213,0 +170785928844,213,0 +170785928892,213,0 +170785928940,213,0 +170785928989,213,0 +170785929039,213,0 +170785929086,213,0 +170785929134,213,0 +170785929182,213,0 +170785929230,213,0 +170785929278,214,0 +170785929326,214,0 +170785929374,214,0 +170785929421,214,0 +170785929469,213,0 +170785929517,213,0 +170785929565,213,0 +170785929613,213,0 +170785929661,213,0 +170785929709,213,0 +170785929756,213,0 +170785929804,213,0 +170785929852,213,0 +170785929900,213,0 +170785929948,213,0 +170785929996,213,0 +170785930044,213,0 +170785930091,213,0 +170785930139,214,0 +170785930187,214,0 +170785930235,214,0 +170785930283,214,0 +170785930332,214,0 +170785930380,213,0 +170785930430,213,0 +170785930478,213,0 +170785930526,213,0 +170785930574,213,0 +170785930622,213,0 +170785930671,213,0 +170785930719,213,0 +170785930767,213,0 +170785930815,213,0 +170785930865,213,0 +170785930914,213,0 +170785930962,213,0 +170785931012,213,0 +170785931060,213,0 +170785931109,214,0 +170785931157,214,0 +170785931205,214,0 +170785931253,214,0 +170785931302,213,0 +170785931350,213,0 +170785931398,213,0 +170785931448,213,0 +170785931496,213,0 +170785931544,213,0 +170785931593,213,0 +170785931642,213,0 +170785931690,213,0 +170785931738,213,0 +170785931786,213,0 +170785931836,213,0 +170785931885,213,0 +170785931935,213,0 +170785931983,213,0 +170785932031,213,0 +170785932078,214,0 +170785932126,214,0 +170785932176,214,0 +170785932224,214,0 +170785932273,213,0 +170785932321,213,0 +170785932369,213,0 +170785932417,213,0 +170785932465,213,0 +170785932513,213,0 +170785932561,213,0 +170785932610,213,0 +170785932658,213,0 +170785932707,213,0 +170785932755,213,0 +170785932803,213,0 +170785932851,213,0 +170785932901,213,0 +170785932949,214,0 +170785932996,214,0 +170785933044,214,0 +170785933092,214,0 +170785933140,214,0 +170785933188,213,0 +170785933237,213,0 +170785933285,213,0 +170785933335,213,0 +170785933384,213,0 +170785933434,213,0 +170785933481,213,0 +170785933529,213,0 +170785933577,213,0 +170785933625,213,0 +170785933675,214,0 +170785933722,213,0 +170785933770,214,0 +170785933818,214,0 +170785933866,214,0 +170785933914,214,0 +170785933962,214,0 +170785934010,214,0 +170785934058,214,0 +170785934106,213,0 +170785934155,213,0 +170785934205,213,0 +170785934253,213,0 +170785934302,213,0 +170785934350,213,0 +170785934398,213,0 +170785934446,213,0 +170785934494,213,0 +170785934542,214,0 +170785934591,214,0 +170785934639,214,0 +170785934687,214,0 +170785934735,214,0 +170785934783,214,0 +170785934831,214,0 +170785934879,214,0 +170785934927,214,0 +170785934975,214,0 +170785935023,213,0 +170785935071,213,0 +170785935118,213,0 +170785935166,213,0 +170785935216,213,0 +170785935265,213,0 +170785935315,213,0 +170785935363,213,0 +170785935411,213,0 +170785935459,213,0 +170785935507,213,0 +170785935555,214,0 +170785935602,214,0 +170785935652,214,0 +170785935701,214,0 +170785935749,214,0 +170785935797,214,0 +170785935845,214,0 +170785935893,214,0 +170785935941,213,0 +170785935989,213,0 +170785936037,213,0 +170785936085,213,0 +170785936132,213,0 +170785936180,213,0 +170785936230,213,0 +170785936278,213,0 +170785936326,213,0 +170785936373,213,0 +170785936421,213,0 +170785936469,213,0 +170785936517,213,0 +170785936565,214,0 +170785936615,213,0 +170785936662,214,0 +170785936710,214,0 +170785936758,214,0 +170785936806,214,0 +170785936854,213,0 +170785936902,213,0 +170785936950,212,0 +170785936997,213,0 +170785937045,212,0 +170785937093,212,0 +170785937141,213,0 +170785937191,213,0 +170785937239,213,0 +170785937286,213,0 +170785937336,213,0 +170785937384,213,0 +170785937433,213,0 +170785937481,213,0 +170785937529,213,0 +170785937577,213,0 +170785937625,213,0 +170785937673,213,0 +170785937723,214,0 +170785937771,213,0 +170785937819,212,0 +170785937867,213,0 +170785937916,213,0 +170785937964,213,0 +170785938012,213,0 +170785938061,213,0 +170785938109,213,0 +170785938159,213,0 +170785938206,213,0 +170785938254,213,0 +170785938302,213,0 +170785938352,213,0 +170785938401,213,0 +170785938449,213,0 +170785938497,213,0 +170785938545,213,0 +170785938592,213,0 +170785938642,213,0 +170785938690,213,0 +170785938737,213,0 +170785938785,213,0 +170785938835,213,0 +170785938882,213,0 +170785938930,213,0 +170785938978,213,0 +170785939026,213,0 +170785939074,213,0 +170785939122,213,0 +170785939169,213,0 +170785939217,213,0 +170785939265,213,0 +170785939313,213,0 +170785939361,214,0 +170785939409,213,0 +170785939457,214,0 +170785939505,214,0 +170785939553,214,0 +170785939602,213,0 +170785939650,213,0 +170785939698,213,0 +170785939747,213,0 +170785939795,213,0 +170785939843,213,0 +170785939891,213,0 +170785939939,213,0 +170785939989,213,0 +170785940036,213,0 +170785940084,213,0 +170785940134,213,0 +170785940183,214,0 +170785940233,214,0 +170785940281,214,0 +170785940329,214,0 +170785940378,214,0 +170785940426,214,0 +170785940474,214,0 +170785940524,213,0 +170785940571,213,0 +170785940619,213,0 +170785940667,213,0 +170785940715,213,0 +170785940763,213,0 +170785940811,213,0 +170785940860,213,0 +170785940908,213,0 +170785940956,214,0 +170785941004,213,0 +170785941052,214,0 +170785941102,214,0 +170785941150,214,0 +170785941198,214,0 +170785941246,214,0 +170785941294,214,0 +170785941342,214,0 +170785941390,214,0 +170785941439,214,0 +170785941487,213,0 +170785941535,213,0 +170785941583,213,0 +170785941631,213,0 +170785941680,213,0 +170785941728,213,0 +170785941776,213,0 +170785941824,214,0 +170785941872,213,0 +170785941922,213,0 +170785941970,214,0 +170785942018,214,0 +170785942067,214,0 +170785942115,214,0 +170785942165,214,0 +170785942214,214,0 +170785942262,214,0 +170785942312,214,0 +170785942360,214,0 +170785942408,213,0 +170785942456,213,0 +170785942504,213,0 +170785942553,213,0 +170785942601,213,0 +170785942649,213,0 +170785942697,213,0 +170785942746,214,0 +170785942796,214,0 +170785942844,213,0 +170785942892,214,0 +170785942940,214,0 +170785942989,214,0 +170785943039,214,0 +170785943088,214,0 +170785943138,214,0 +170785943187,214,0 +170785943237,214,0 +170785943287,213,0 +170785943336,213,0 +170785943384,213,0 +170785943434,213,0 +170785943481,213,0 +170785943529,213,0 +170785943577,213,0 +170785943626,213,0 +170785943674,213,0 +170785943722,213,0 +170785943770,213,0 +170785943818,213,0 +170785943867,213,0 +170785943915,213,0 +170785943963,214,0 +170785944011,214,0 +170785944059,214,0 +170785944106,214,0 +170785944154,214,0 +170785944202,213,0 +170785944250,213,0 +170785944298,213,0 +170785944346,213,0 +170785944394,213,0 +170785944443,213,0 +170785944491,213,0 +170785944539,213,0 +170785944587,213,0 +170785944636,213,0 +170785944684,213,0 +170785944732,213,0 +170785944780,213,0 +170785944830,214,0 +170785944878,213,0 +170785944926,213,0 +170785944975,214,0 +170785945023,214,0 +170785945071,214,0 +170785945121,213,0 +170785945168,213,0 +170785945216,213,0 +170785945264,213,0 +170785945312,213,0 +170785945360,213,0 +170785945410,213,0 +170785945458,213,0 +170785945506,213,0 +170785945553,213,0 +170785945603,213,0 +170785945651,213,0 +170785945699,213,0 +170785945747,213,0 +170785945795,213,0 +170785945843,213,0 +170785945890,214,0 +170785945938,213,0 +170785945986,213,0 +170785946034,214,0 +170785946082,213,0 +170785946132,213,0 +170785946181,212,0 +170785946231,213,0 +170785946280,213,0 +170785946328,213,0 +170785946378,213,0 +170785946426,213,0 +170785946474,213,0 +170785946522,213,0 +170785946570,213,0 +170785946618,213,0 +170785946667,213,0 +170785946715,214,0 +170785946764,213,0 +170785946812,214,0 +170785946860,213,0 +170785946910,214,0 +170785946958,214,0 +170785947006,213,0 +170785947054,213,0 +170785947102,213,0 +170785947150,213,0 +170785947197,213,0 +170785947245,213,0 +170785947295,213,0 +170785947344,213,0 +170785947392,213,0 +170785947440,213,0 +170785947488,213,0 +170785947536,213,0 +170785947586,214,0 +170785947634,213,0 +170785947683,214,0 +170785947731,214,0 +170785947779,213,0 +170785947827,214,0 +170785947875,213,0 +170785947923,213,0 +170785947972,213,0 +170785948020,213,0 +170785948068,213,0 +170785948116,213,0 +170785948164,213,0 +170785948212,213,0 +170785948259,213,0 +170785948307,213,0 +170785948357,213,0 +170785948406,213,0 +170785948454,213,0 +170785948502,213,0 +170785948550,213,0 +170785948598,213,0 +170785948648,214,0 +170785948697,214,0 +170785948747,214,0 +170785948796,214,0 +170785948846,213,0 +170785948895,213,0 +170785948943,213,0 +170785948991,213,0 +170785949039,213,0 +170785949087,213,0 +170785949135,213,0 +170785949183,213,0 +170785949231,213,0 +170785949279,213,0 +170785949326,213,0 +170785949374,213,0 +170785949422,213,0 +170785949472,213,0 +170785949521,213,0 +170785949571,213,0 +170785949619,214,0 +170785949667,213,0 +170785949716,213,0 +170785949764,213,0 +170785949812,213,0 +170785949862,213,0 +170785949912,213,0 +170785949959,213,0 +170785950009,213,0 +170785950057,213,0 +170785950106,213,0 +170785950156,213,0 +170785950205,213,0 +170785950253,213,0 +170785950301,213,0 +170785950351,213,0 +170785950399,214,0 +170785950447,214,0 +170785950494,214,0 +170785950542,214,0 +170785950590,214,0 +170785950638,214,0 +170785950688,213,0 +170785950736,213,0 +170785950783,213,0 +170785950831,213,0 +170785950881,213,0 +170785950931,213,0 +170785950978,213,0 +170785951026,213,0 +170785951074,213,0 +170785951122,213,0 +170785951170,213,0 +170785951218,214,0 +170785951266,213,0 +170785951316,213,0 +170785951364,214,0 +170785951411,214,0 +170785951461,214,0 +170785951511,214,0 +170785951560,214,0 +170785951610,213,0 +170785951658,212,0 +170785951707,213,0 +170785951755,213,0 +170785951803,213,0 +170785951852,213,0 +170785951900,213,0 +170785951948,213,0 +170785951996,213,0 +170785952044,213,0 +170785952092,213,0 +170785952142,214,0 +170785952189,214,0 +170785952237,213,0 +170785952285,213,0 +170785952333,214,0 +170785952383,214,0 +170785952431,214,0 +170785952480,214,0 +170785952530,213,0 +170785952578,213,0 +170785952626,213,0 +170785952674,213,0 +170785952723,213,0 +170785952773,213,0 +170785952821,213,0 +170785952868,213,0 +170785952916,213,0 +170785952964,213,0 +170785953012,213,0 +170785953060,213,0 +170785953108,214,0 +170785953156,214,0 +170785953204,214,0 +170785953252,214,0 +170785953300,214,0 +170785953348,213,0 +170785953396,213,0 +170785953445,213,0 +170785953493,213,0 +170785953541,213,0 +170785953591,213,0 +170785953639,213,0 +170785953688,213,0 +170785953736,213,0 +170785953784,213,0 +170785953833,213,0 +170785953881,213,0 +170785953931,213,0 +170785953979,213,0 +170785954027,213,0 +170785954076,213,0 +170785954124,213,0 +170785954172,214,0 +170785954220,214,0 +170785954270,214,0 +170785954319,213,0 +170785954369,213,0 +170785954416,213,0 +170785954464,213,0 +170785954512,213,0 +170785954560,213,0 +170785954608,213,0 +170785954656,213,0 +170785954703,213,0 +170785954751,213,0 +170785954801,213,0 +170785954849,213,0 +170785954897,213,0 +170785954945,213,0 +170785954993,213,0 +170785955041,213,0 +170785955089,213,0 +170785955138,213,0 +170785955186,214,0 +170785955235,214,0 +170785955283,213,0 +170785955333,213,0 +170785955381,213,0 +170785955429,213,0 +170785955477,213,0 +170785955525,213,0 +170785955572,213,0 +170785955620,213,0 +170785955670,213,0 +170785955719,213,0 +170785955769,213,0 +170785955817,213,0 +170785955865,213,0 +170785955913,213,0 +170785955961,213,0 +170785956009,213,0 +170785956057,213,0 +170785956106,213,0 +170785956154,213,0 +170785956204,213,0 +170785956253,213,0 +170785956303,212,0 +170785956351,213,0 +170785956399,213,0 +170785956447,213,0 +170785956496,213,0 +170785956544,213,0 +170785956592,213,0 +170785956641,213,0 +170785956689,213,0 +170785956739,213,0 +170785956787,213,0 +170785956835,213,0 +170785956883,213,0 +170785956931,213,0 +170785956979,213,0 +170785957027,214,0 +170785957075,214,0 +170785957123,213,0 +170785957170,213,0 +170785957218,213,0 +170785957266,213,0 +170785957314,213,0 +170785957364,213,0 +170785957413,213,0 +170785957461,213,0 +170785957511,213,0 +170785957560,213,0 +170785957610,213,0 +170785957658,213,0 +170785957707,213,0 +170785957757,213,0 +170785957806,214,0 +170785957854,214,0 +170785957902,214,0 +170785957952,214,0 +170785958001,214,0 +170785958051,213,0 +170785958099,213,0 +170785958147,213,0 +170785958195,213,0 +170785958243,213,0 +170785958292,213,0 +170785958340,213,0 +170785958390,213,0 +170785958439,213,0 +170785958487,213,0 +170785958535,213,0 +170785958585,213,0 +170785958633,213,0 +170785958680,213,0 +170785958728,213,0 +170785958776,213,0 +170785958826,214,0 +170785958875,214,0 +170785958925,214,0 +170785958973,214,0 +170785959021,214,0 +170785959069,214,0 +170785959118,214,0 +170785959168,214,0 +170785959216,214,0 +170785959265,214,0 +170785959315,214,0 +170785959363,214,0 +170785959412,213,0 +170785959462,213,0 +170785959509,213,0 +170785959557,213,0 +170785959607,213,0 +170785959655,213,0 +170785959703,213,0 +170785959751,213,0 +170785959799,213,0 +170785959848,213,0 +170785959898,213,0 +170785959946,213,0 +170785959993,213,0 +170785960043,214,0 +170785960093,213,0 +170785960140,214,0 +170785960188,214,0 +170785960236,214,0 +170785960284,214,0 +170785960332,213,0 +170785960380,213,0 +170785960430,213,0 +170785960479,213,0 +170785960529,213,0 +170785960578,213,0 +170785960626,213,0 +170785960676,213,0 +170785960724,213,0 +170785960773,213,0 +170785960821,213,0 +170785960871,213,0 +170785960919,213,0 +170785960968,214,0 +170785961016,214,0 +170785961064,214,0 +170785961112,213,0 +170785961160,214,0 +170785961208,214,0 +170785961258,213,0 +170785961307,213,0 +170785961355,213,0 +170785961403,213,0 +170785961451,213,0 +170785961499,213,0 +170785961547,213,0 +170785961595,213,0 +170785961643,213,0 +170785961690,213,0 +170785961738,214,0 +170785961786,214,0 +170785961834,214,0 +170785961884,214,0 +170785961932,214,0 +170785961980,214,0 +170785962029,214,0 +170785962079,214,0 +170785962127,214,0 +170785962176,213,0 +170785962224,213,0 +170785962272,213,0 +170785962320,213,0 +170785962368,213,0 +170785962416,213,0 +170785962465,213,0 +170785962515,214,0 +170785962563,214,0 +170785962612,214,0 +170785962660,214,0 +170785962710,214,0 +170785962759,214,0 +170785962809,214,0 +170785962857,214,0 +170785962906,214,0 +170785962954,214,0 +170785963004,214,0 +170785963052,213,0 +170785963101,213,0 +170785963151,213,0 +170785963199,213,0 +170785963247,213,0 +170785963295,213,0 +170785963344,213,0 +170785963392,213,0 +170785963440,213,0 +170785963488,213,0 +170785963538,213,0 +170785963587,213,0 +170785963635,213,0 +170785963685,213,0 +170785963733,214,0 +170785963782,214,0 +170785963830,214,0 +170785963878,214,0 +170785963926,214,0 +170785963975,213,0 +170785964025,213,0 +170785964074,213,0 +170785964122,213,0 +170785964172,213,0 +170785964220,213,0 +170785964269,213,0 +170785964317,213,0 +170785964365,213,0 +170785964413,213,0 +170785964463,213,0 +170785964512,213,0 +170785964560,213,0 +170785964609,213,0 +170785964659,214,0 +170785964707,214,0 +170785964755,213,0 +170785964804,214,0 +170785964854,214,0 +170785964902,214,0 +170785964950,213,0 +170785964999,212,0 +170785965047,213,0 +170785965095,213,0 +170785965143,213,0 +170785965191,213,0 +170785965239,213,0 +170785965287,213,0 +170785965335,213,0 +170785965383,213,0 +170785965431,213,0 +170785965479,213,0 +170785965527,213,0 +170785965575,213,0 +170785965624,213,0 +170785965674,213,0 +170785965722,214,0 +170785965770,213,0 +170785965819,214,0 +170785965867,213,0 +170785965916,213,0 +170785965966,213,0 +170785966014,213,0 +170785966062,213,0 +170785966110,213,0 +170785966158,213,0 +170785966205,213,0 +170785966253,213,0 +170785966301,213,0 +170785966349,213,0 +170785966399,213,0 +170785966447,213,0 +170785966495,213,0 +170785966543,214,0 +170785966591,213,0 +170785966639,214,0 +170785966688,214,0 +170785966736,213,0 +170785966784,213,0 +170785966832,212,0 +170785966880,213,0 +170785966929,213,0 +170785966977,213,0 +170785967027,213,0 +170785967075,213,0 +170785967122,213,0 +170785967170,213,0 +170785967220,213,0 +170785967268,213,0 +170785967316,213,0 +170785967364,213,0 +170785967412,213,0 +170785967459,213,0 +170785967507,213,0 +170785967555,213,0 +170785967603,214,0 +170785967653,214,0 +170785967701,213,0 +170785967748,213,0 +170785967796,213,0 +170785967846,213,0 +170785967895,213,0 +170785967945,213,0 +170785967993,213,0 +170785968041,213,0 +170785968089,213,0 +170785968138,213,0 +170785968186,213,0 +170785968236,213,0 +170785968284,213,0 +170785968333,213,0 +170785968383,213,0 +170785968431,213,0 +170785968480,213,0 +170785968528,213,0 +170785968578,213,0 +170785968626,213,0 +170785968674,213,0 +170785968721,213,0 +170785968771,213,0 +170785968819,213,0 +170785968868,213,0 +170785968916,213,0 +170785968964,213,0 +170785969014,213,0 +170785969062,213,0 +170785969109,213,0 +170785969159,213,0 +170785969207,213,0 +170785969255,213,0 +170785969303,214,0 +170785969352,214,0 +170785969402,214,0 +170785969450,213,0 +170785969499,213,0 +170785969547,213,0 +170785969595,212,0 +170785969643,213,0 +170785969693,213,0 +170785969741,213,0 +170785969790,213,0 +170785969840,213,0 +170785969888,213,0 +170785969936,213,0 +170785969984,213,0 +170785970032,213,0 +170785970079,213,0 +170785970129,213,0 +170785970177,213,0 +170785970225,213,0 +170785970273,214,0 +170785970321,214,0 +170785970369,214,0 +170785970418,214,0 +170785970466,213,0 +170785970514,213,0 +170785970562,213,0 +170785970610,213,0 +170785970658,213,0 +170785970707,213,0 +170785970755,213,0 +170785970805,213,0 +170785970853,213,0 +170785970901,213,0 +170785970949,213,0 +170785970997,213,0 +170785971045,213,0 +170785971093,214,0 +170785971141,214,0 +170785971190,214,0 +170785971240,214,0 +170785971288,214,0 +170785971336,214,0 +170785971385,213,0 +170785971433,213,0 +170785971483,213,0 +170785971530,213,0 +170785971578,213,0 +170785971626,213,0 +170785971676,213,0 +170785971724,213,0 +170785971773,213,0 +170785971821,213,0 +170785971871,214,0 +170785971919,213,0 +170785971967,214,0 +170785972015,214,0 +170785972063,214,0 +170785972112,214,0 +170785972162,214,0 +170785972211,214,0 +170785972259,213,0 +170785972309,213,0 +170785972358,213,0 +170785972406,213,0 +170785972454,213,0 +170785972504,213,0 +170785972552,213,0 +170785972600,213,0 +170785972647,213,0 +170785972697,213,0 +170785972747,213,0 +170785972796,214,0 +170785972844,214,0 +170785972893,214,0 +170785972941,214,0 +170785972990,214,0 +170785973038,214,0 +170785973086,214,0 +170785973134,214,0 +170785973182,214,0 +170785973230,213,0 +170785973277,213,0 +170785973325,213,0 +170785973373,213,0 +170785973423,213,0 +170785973471,213,0 +170785973519,213,0 +170785973568,213,0 +170785973618,213,0 +170785973666,213,0 +170785973714,214,0 +170785973763,214,0 +170785973811,214,0 +170785973859,214,0 +170785973907,214,0 +170785973956,214,0 +170785974004,214,0 +170785974052,214,0 +170785974100,214,0 +170785974148,213,0 +170785974197,213,0 +170785974247,213,0 +170785974295,213,0 +170785974343,213,0 +170785974391,213,0 +170785974439,213,0 +170785974487,213,0 +170785974535,213,0 +170785974584,213,0 +170785974632,213,0 +170785974681,214,0 +170785974729,214,0 +170785974779,214,0 +170785974827,214,0 +170785974875,214,0 +170785974924,214,0 +170785974972,214,0 +170785975020,214,0 +170785975070,213,0 +170785975119,213,0 +170785975167,213,0 +170785975215,213,0 +170785975263,213,0 +170785975311,213,0 +170785975361,213,0 +170785975409,213,0 +170785975457,213,0 +170785975505,213,0 +170785975552,213,0 +170785975600,213,0 +170785975650,213,0 +170785975698,214,0 +170785975746,213,0 +170785975794,214,0 +170785975842,214,0 +170785975891,214,0 +170785975939,214,0 +170785975987,213,0 +170785976037,213,0 +170785976085,212,0 +170785976134,212,0 +170785976182,213,0 +170785976230,213,0 +170785976278,213,0 +170785976326,213,0 +170785976374,213,0 +170785976421,213,0 +170785976469,213,0 +170785976517,213,0 +170785976567,213,0 +170785976615,213,0 +170785976663,214,0 +170785976711,214,0 +170785976760,213,0 +170785976808,213,0 +170785976856,214,0 +170785976905,213,0 +170785976953,213,0 +170785977003,213,0 +170785977051,213,0 +170785977099,213,0 +170785977147,213,0 +170785977195,213,0 +170785977243,213,0 +170785977292,213,0 +170785977342,213,0 +170785977390,213,0 +170785977438,213,0 +170785977485,213,0 +170785977533,213,0 +170785977581,213,0 +170785977629,213,0 +170785977677,213,0 +170785977725,214,0 +170785977775,213,0 +170785977823,213,0 +170785977870,213,0 +170785977918,213,0 +170785977968,213,0 +170785978016,212,0 +170785978064,213,0 +170785978112,213,0 +170785978160,213,0 +170785978209,213,0 +170785978257,213,0 +170785978305,213,0 +170785978355,213,0 +170785978404,213,0 +170785978452,213,0 +170785978501,213,0 +170785978549,214,0 +170785978599,213,0 +170785978647,213,0 +170785978695,214,0 +170785978742,213,0 +170785978790,213,0 +170785978838,213,0 +170785978888,213,0 +170785978936,213,0 +170785978984,213,0 +170785979033,213,0 +170785979081,213,0 +170785979130,213,0 +170785979180,213,0 +170785979228,213,0 +170785979278,213,0 +170785979326,213,0 +170785979375,213,0 +170785979424,213,0 +170785979472,214,0 +170785979520,213,0 +170785979568,213,0 +170785979616,213,0 +170785979666,213,0 +170785979715,213,0 +170785979765,213,0 +170785979814,213,0 +170785979862,213,0 +170785979910,213,0 +170785979959,213,0 +170785980007,213,0 +170785980055,213,0 +170785980103,213,0 +170785980150,213,0 +170785980198,213,0 +170785980246,213,0 +170785980294,213,0 +170785980342,213,0 +170785980390,213,0 +170785980438,213,0 +170785980485,213,0 +170785980533,213,0 +170785980581,213,0 +170785980631,213,0 +170785980679,213,0 +170785980726,213,0 +170785980776,213,0 +170785980825,213,0 +170785980873,213,0 +170785980921,213,0 +170785980969,213,0 +170785981017,213,0 +170785981065,213,0 +170785981113,213,0 +170785981161,213,0 +170785981210,213,0 +170785981258,213,0 +170785981306,213,0 +170785981356,214,0 +170785981403,214,0 +170785981451,214,0 +170785981499,213,0 +170785981547,213,0 +170785981595,213,0 +170785981643,213,0 +170785981691,213,0 +170785981739,213,0 +170785981787,213,0 +170785981835,213,0 +170785981883,213,0 +170785981931,214,0 +170785981979,214,0 +170785982028,214,0 +170785982076,214,0 +170785982124,214,0 +170785982173,214,0 +170785982223,214,0 +170785982271,214,0 +170785982319,213,0 +170785982368,214,0 +170785982416,214,0 +170785982465,213,0 +170785982513,213,0 +170785982561,213,0 +170785982611,213,0 +170785982658,213,0 +170785982706,213,0 +170785982754,214,0 +170785982802,214,0 +170785982850,214,0 +170785982898,214,0 +170785982946,214,0 +170785982994,214,0 +170785983041,214,0 +170785983089,214,0 +170785983139,214,0 +170785983186,214,0 +170785983234,214,0 +170785983282,213,0 +170785983330,214,0 +170785983378,213,0 +170785983425,213,0 +170785983473,213,0 +170785983521,213,0 +170785983569,213,0 +170785983619,213,0 +170785983666,213,0 +170785983714,213,0 +170785983762,213,0 +170785983810,213,0 +170785983858,214,0 +170785983906,213,0 +170785983954,213,0 +170785984002,214,0 +170785984052,214,0 +170785984100,214,0 +170785984148,214,0 +170785984196,214,0 +170785984243,214,0 +170785984291,213,0 +170785984339,213,0 +170785984387,213,0 +170785984437,213,0 +170785984485,213,0 +170785984533,213,0 +170785984581,213,0 +170785984628,213,0 +170785984676,213,0 +170785984724,213,0 +170785984772,213,0 +170785984820,213,0 +170785984868,213,0 +170785984916,213,0 +170785984964,214,0 +170785985014,214,0 +170785985062,214,0 +170785985111,214,0 +170785985161,213,0 +170785985210,213,0 +170785985260,213,0 +170785985308,213,0 +170785985357,213,0 +170785985405,213,0 +170785985453,213,0 +170785985503,213,0 +170785985552,213,0 +170785985600,213,0 +170785985648,213,0 +170785985698,213,0 +170785985746,213,0 +170785985793,213,0 +170785985843,214,0 +170785985891,214,0 +170785985939,214,0 +170785985987,214,0 +170785986035,214,0 +170785986083,213,0 +170785986131,213,0 +170785986180,213,0 +170785986228,213,0 +170785986278,213,0 +170785986325,213,0 +170785986373,213,0 +170785986421,213,0 +170785986471,213,0 +170785986519,213,0 +170785986566,213,0 +170785986614,213,0 +170785986662,213,0 +170785986710,213,0 +170785986758,214,0 +170785986806,214,0 +170785986854,214,0 +170785986902,214,0 +170785986951,214,0 +170785986999,214,0 +170785987047,213,0 +170785987095,213,0 +170785987143,213,0 +170785987191,213,0 +170785987239,213,0 +170785987287,213,0 +170785987335,213,0 +170785987383,213,0 +170785987431,213,0 +170785987478,213,0 +170785987528,213,0 +170785987577,213,0 +170785987627,213,0 +170785987675,214,0 +170785987723,213,0 +170785987772,214,0 +170785987820,214,0 +170785987870,214,0 +170785987918,214,0 +170785987966,213,0 +170785988015,213,0 +170785988063,213,0 +170785988111,213,0 +170785988159,213,0 +170785988207,213,0 +170785988255,213,0 +170785988303,213,0 +170785988351,213,0 +170785988400,213,0 +170785988449,213,0 +170785988497,213,0 +170785988545,213,0 +170785988595,213,0 +170785988643,213,0 +170785988692,213,0 +170785988742,214,0 +170785988790,213,0 +170785988838,214,0 +170785988887,214,0 +170785988935,213,0 +170785988983,213,0 +170785989033,213,0 +170785989081,213,0 +170785989128,213,0 +170785989178,213,0 +170785989226,213,0 +170785989275,213,0 +170785989325,213,0 +170785989373,213,0 +170785989421,213,0 +170785989469,213,0 +170785989517,213,0 +170785989564,213,0 +170785989612,213,0 +170785989660,213,0 +170785989708,214,0 +170785989756,214,0 +170785989804,214,0 +170785989853,213,0 +170785989901,213,0 +170785989949,213,0 +170785989997,213,0 +170785990045,213,0 +170785990092,213,0 +170785990140,213,0 +170785990188,213,0 +170785990236,213,0 +170785990286,213,0 +170785990335,213,0 +170785990383,213,0 +170785990433,213,0 +170785990482,213,0 +170785990532,213,0 +170785990580,213,0 +170785990628,214,0 +170785990675,213,0 +170785990723,214,0 +170785990773,213,0 +170785990821,212,0 +170785990870,213,0 +170785990918,213,0 +170785990966,213,0 +170785991014,213,0 +170785991063,213,0 +170785991111,213,0 +170785991159,213,0 +170785991209,213,0 +170785991257,213,0 +170785991305,213,0 +170785991353,213,0 +170785991400,213,0 +170785991448,213,0 +170785991496,213,0 +170785991546,214,0 +170785991595,214,0 +170785991643,214,0 +170785991691,213,0 +170785991739,213,0 +170785991789,213,0 +170785991836,213,0 +170785991884,213,0 +170785991934,213,0 +170785991982,213,0 +170785992030,213,0 +170785992078,213,0 +170785992126,213,0 +170785992173,213,0 +170785992223,213,0 +170785992271,213,0 +170785992319,213,0 +170785992367,214,0 +170785992414,214,0 +170785992462,214,0 +170785992510,214,0 +170785992558,214,0 +170785992606,214,0 +170785992654,213,0 +170785992702,213,0 +170785992750,213,0 +170785992798,213,0 +170785992847,213,0 +170785992896,213,0 +170785992944,213,0 +170785992992,213,0 +170785993042,213,0 +170785993090,213,0 +170785993138,213,0 +170785993186,213,0 +170785993235,214,0 +170785993283,214,0 +170785993331,214,0 +170785993379,214,0 +170785993427,214,0 +170785993475,214,0 +170785993523,214,0 +170785993571,213,0 +170785993620,213,0 +170785993668,213,0 +170785993718,212,0 +170785993765,213,0 +170785993813,213,0 +170785993861,213,0 +170785993909,213,0 +170785993959,213,0 +170785994007,213,0 +170785994055,213,0 +170785994102,213,0 +170785994152,213,0 +170785994200,213,0 +170785994248,213,0 +170785994297,213,0 +170785994345,213,0 +170785994395,214,0 +170785994442,213,0 +170785994492,213,0 +170785994541,212,0 +170785994591,213,0 +170785994640,213,0 +170785994688,213,0 +170785994736,213,0 +170785994784,213,0 +170785994834,213,0 +170785994882,213,0 +170785994930,213,0 +170785994978,213,0 +170785995025,213,0 +170785995075,213,0 +170785995123,213,0 +170785995171,213,0 +170785995219,213,0 +170785995266,213,0 +170785995314,213,0 +170785995362,214,0 +170785995410,213,0 +170785995460,213,0 +170785995508,213,0 +170785995555,213,0 +170785995603,212,0 +170785995651,213,0 +170785995701,213,0 +170785995748,213,0 +170785995798,213,0 +170785995846,213,0 +170785995895,213,0 +170785995943,213,0 +170785995991,213,0 +170785996039,213,0 +170785996087,214,0 +170785996135,214,0 +170785996183,214,0 +170785996231,214,0 +170785996279,214,0 +170785996327,213,0 +170785996376,213,0 +170785996426,213,0 +170785996474,213,0 +170785996522,213,0 +170785996570,213,0 +170785996618,213,0 +170785996665,213,0 +170785996713,213,0 +170785996761,213,0 +170785996809,213,0 +170785996857,213,0 +170785996905,213,0 +170785996954,213,0 +170785997002,213,0 +170785997050,213,0 +170785997098,214,0 +170785997146,214,0 +170785997194,214,0 +170785997242,214,0 +170785997290,213,0 +170785997339,213,0 +170785997389,213,0 +170785997437,213,0 +170785997486,213,0 +170785997536,213,0 +170785997585,213,0 +170785997633,213,0 +170785997683,213,0 +170785997732,213,0 +170785997780,213,0 +170785997828,213,0 +170785997876,213,0 +170785997925,214,0 +170785997975,214,0 +170785998023,213,0 +170785998071,214,0 +170785998120,214,0 +170785998170,214,0 +170785998219,213,0 +170785998267,213,0 +170785998315,213,0 +170785998365,213,0 +170785998413,213,0 +170785998462,213,0 +170785998512,213,0 +170785998561,213,0 +170785998609,213,0 +170785998657,213,0 +170785998707,213,0 +170785998754,213,0 +170785998802,213,0 +170785998852,213,0 +170785998901,213,0 +170785998949,213,0 +170785998997,214,0 +170785999045,213,0 +170785999093,214,0 +170785999142,213,0 +170785999190,213,0 +170785999240,212,0 +170785999289,212,0 +170785999339,213,0 +170785999388,213,0 +170785999436,213,0 +170785999484,213,0 +170785999532,213,0 +170785999580,213,0 +170785999630,213,0 +170785999679,213,0 +170785999727,213,0 +170785999775,213,0 +170785999823,214,0 +170785999873,214,0 +170785999922,214,0 +170785999970,214,0 +170786000020,214,0 +170786000069,213,0 +170786000117,213,0 +170786000166,213,0 +170786000214,213,0 +170786000262,213,0 +170786000312,213,0 +170786000360,213,0 +170786000408,213,0 +170786000456,213,0 +170786000504,213,0 +170786000553,213,0 +170786000601,213,0 +170786000651,213,0 +170786000699,213,0 +170786000746,213,0 +170786000796,213,0 +170786000844,213,0 +170786000892,213,0 +170786000940,214,0 +170786000988,213,0 +170786001037,213,0 +170786001087,213,0 +170786001135,213,0 +170786001183,213,0 +170786001231,213,0 +170786001279,213,0 +170786001327,213,0 +170786001375,213,0 +170786001423,213,0 +170786001470,213,0 +170786001520,213,0 +170786001568,213,0 +170786001617,214,0 +170786001665,213,0 +170786001715,214,0 +170786001763,214,0 +170786001811,213,0 +170786001859,214,0 +170786001908,213,0 +170786001956,213,0 +170786002004,213,0 +170786002052,213,0 +170786002100,213,0 +170786002148,213,0 +170786002196,213,0 +170786002244,213,0 +170786002292,213,0 +170786002340,213,0 +170786002389,213,0 +170786002437,213,0 +170786002485,213,0 +170786002533,214,0 +170786002581,214,0 +170786002630,214,0 +170786002678,214,0 +170786002728,214,0 +170786002777,214,0 +170786002827,213,0 +170786002877,213,0 +170786002925,213,0 +170786002972,213,0 +170786003020,213,0 +170786003068,213,0 +170786003118,213,0 +170786003166,213,0 +170786003214,213,0 +170786003263,213,0 +170786003313,213,0 +170786003362,214,0 +170786003412,214,0 +170786003462,214,0 +170786003511,214,0 +170786003559,214,0 +170786003607,214,0 +170786003656,214,0 +170786003704,214,0 +170786003752,214,0 +170786003800,213,0 +170786003848,213,0 +170786003898,213,0 +170786003947,213,0 +170786003995,213,0 +170786004043,213,0 +170786004093,213,0 +170786004142,214,0 +170786004192,213,0 +170786004240,214,0 +170786004289,214,0 +170786004337,214,0 +170786004385,214,0 +170786004433,214,0 +170786004483,214,0 +170786004532,214,0 +170786004580,214,0 +170786004630,214,0 +170786004678,213,0 +170786004727,213,0 +170786004775,213,0 +170786004825,213,0 +170786004872,213,0 +170786004920,213,0 +170786004968,213,0 +170786005016,213,0 +170786005066,213,0 +170786005115,213,0 +170786005165,214,0 +170786005213,214,0 +170786005261,214,0 +170786005309,214,0 +170786005357,214,0 +170786005406,214,0 +170786005456,214,0 +170786005503,214,0 +170786005551,214,0 +170786005601,214,0 +170786005650,213,0 +170786005700,213,0 +170786005748,213,0 +170786005798,213,0 +170786005845,213,0 +170786005893,213,0 +170786005941,213,0 +170786005991,213,0 +170786006040,213,0 +170786006088,213,0 +170786006136,213,0 +170786006186,214,0 +170786006234,213,0 +170786006281,213,0 +170786006329,214,0 +170786006377,214,0 +170786006425,214,0 +170786006473,214,0 +170786006521,213,0 +170786006569,213,0 +170786006617,213,0 +170786006664,212,0 +170786006712,213,0 +170786006760,213,0 +170786006808,213,0 +170786006858,213,0 +170786006905,213,0 +170786006953,213,0 +170786007001,213,0 +170786007049,213,0 +170786007097,213,0 +170786007145,213,0 +170786007193,213,0 +170786007241,213,0 +170786007289,213,0 +170786007336,214,0 +170786007384,214,0 +170786007432,214,0 +170786007480,213,0 +170786007528,213,0 +170786007576,213,0 +170786007624,213,0 +170786007673,213,0 +170786007721,213,0 +170786007769,213,0 +170786007817,213,0 +170786007864,213,0 +170786007914,213,0 +170786007962,213,0 +170786008010,213,0 +170786008057,213,0 +170786008107,213,0 +170786008155,213,0 +170786008203,214,0 +170786008251,214,0 +170786008299,213,0 +170786008348,214,0 +170786008396,213,0 +170786008444,213,0 +170786008492,213,0 +170786008540,213,0 +170786008589,213,0 +170786008637,213,0 +170786008685,213,0 +170786008733,213,0 +170786008780,213,0 +170786008828,213,0 +170786008876,213,0 +170786008924,213,0 +170786008972,213,0 +170786009020,213,0 +170786009067,213,0 +170786009115,214,0 +170786009165,214,0 +170786009213,213,0 +170786009261,213,0 +170786009309,214,0 +170786009357,213,0 +170786009404,213,0 +170786009452,213,0 +170786009500,213,0 +170786009548,213,0 +170786009596,213,0 +170786009644,213,0 +170786009692,213,0 +170786009741,213,0 +170786009789,213,0 +170786009837,213,0 +170786009885,214,0 +170786009933,213,0 +170786009980,213,0 +170786010030,214,0 +170786010078,214,0 +170786010127,214,0 +170786010175,213,0 +170786010225,214,0 +170786010273,213,0 +170786010321,213,0 +170786010368,213,0 +170786010418,213,0 +170786010466,213,0 +170786010514,213,0 +170786010561,213,0 +170786010609,213,0 +170786010657,213,0 +170786010705,213,0 +170786010753,213,0 +170786010801,213,0 +170786010848,213,0 +170786010896,213,0 +170786010944,213,0 +170786010992,214,0 +170786011040,214,0 +170786011088,214,0 +170786011136,214,0 +170786011183,214,0 +170786011233,213,0 +170786011281,213,0 +170786011328,213,0 +170786011376,213,0 +170786011424,213,0 +170786011473,213,0 +170786011523,213,0 +170786011571,213,0 +170786011619,213,0 +170786011668,213,0 +170786011716,213,0 +170786011766,213,0 +170786011814,213,0 +170786011861,213,0 +170786011909,214,0 +170786011957,214,0 +170786012005,214,0 +170786012053,214,0 +170786012101,214,0 +170786012150,213,0 +170786012200,213,0 +170786012248,213,0 +170786012297,213,0 +170786012345,213,0 +170786012393,213,0 +170786012441,213,0 +170786012490,213,0 +170786012538,213,0 +170786012586,213,0 +170786012634,213,0 +170786012682,213,0 +170786012730,213,0 +170786012777,213,0 +170786012827,213,0 +170786012875,213,0 +170786012924,214,0 +170786012972,214,0 +170786013020,214,0 +170786013068,213,0 +170786013116,213,0 +170786013163,213,0 +170786013211,213,0 +170786013259,213,0 +170786013307,213,0 +170786013355,213,0 +170786013403,213,0 +170786013450,213,0 +170786013498,213,0 +170786013548,213,0 +170786013596,213,0 +170786013644,213,0 +170786013693,213,0 +170786013743,214,0 +170786013790,213,0 +170786013839,213,0 +170786013886,213,0 +170786013936,214,0 +170786013984,213,0 +170786014032,213,0 +170786014080,213,0 +170786014128,212,0 +170786014177,213,0 +170786014227,212,0 +170786014276,213,0 +170786014326,213,0 +170786014375,213,0 +170786014423,213,0 +170786014471,213,0 +170786014519,213,0 +170786014567,213,0 +170786014615,213,0 +170786014663,213,0 +170786014712,214,0 +170786014760,213,0 +170786014808,214,0 +170786014856,214,0 +170786014904,213,0 +170786014952,213,0 +170786014999,213,0 +170786015047,213,0 +170786015097,213,0 +170786015145,213,0 +170786015194,213,0 +170786015242,213,0 +170786015290,213,0 +170786015339,213,0 +170786015387,213,0 +170786015435,213,0 +170786015483,213,0 +170786015532,213,0 +170786015580,213,0 +170786015628,214,0 +170786015676,214,0 +170786015723,214,0 +170786015771,213,0 +170786015819,213,0 +170786015867,213,0 +170786015917,213,0 +170786015965,213,0 +170786016012,213,0 +170786016062,213,0 +170786016110,213,0 +170786016158,213,0 +170786016207,213,0 +170786016255,213,0 +170786016303,213,0 +170786016351,213,0 +170786016398,214,0 +170786016446,213,0 +170786016494,213,0 +170786016542,214,0 +170786016590,213,0 +170786016638,214,0 +170786016687,213,0 +170786016735,214,0 +170786016783,213,0 +170786016830,212,0 +170786016878,212,0 +170786016926,213,0 +170786016974,213,0 +170786017022,213,0 +170786017069,213,0 +170786017117,213,0 +170786017165,213,0 +170786017213,213,0 +170786017262,213,0 +170786017310,213,0 +170786017358,213,0 +170786017406,214,0 +170786017454,213,0 +170786017502,214,0 +170786017551,214,0 +170786017599,213,0 +170786017647,214,0 +170786017695,213,0 +170786017743,213,0 +170786017791,213,0 +170786017839,213,0 +170786017888,213,0 +170786017936,213,0 +170786017984,213,0 +170786018032,213,0 +170786018080,213,0 +170786018128,213,0 +170786018175,213,0 +170786018223,213,0 +170786018271,213,0 +170786018321,213,0 +170786018368,213,0 +170786018416,214,0 +170786018464,214,0 +170786018512,214,0 +170786018560,214,0 +170786018608,214,0 +170786018656,213,0 +170786018704,213,0 +170786018752,213,0 +170786018799,213,0 +170786018847,213,0 +170786018895,213,0 +170786018943,213,0 +170786018991,213,0 +170786019039,213,0 +170786019087,213,0 +170786019134,213,0 +170786019182,213,0 +170786019230,213,0 +170786019278,213,0 +170786019327,214,0 +170786019375,214,0 +170786019423,214,0 +170786019471,214,0 +170786019519,213,0 +170786019567,213,0 +170786019615,212,0 +170786019662,213,0 +170786019712,213,0 +170786019760,213,0 +170786019808,213,0 +170786019857,213,0 +170786019905,213,0 +170786019953,213,0 +170786020001,213,0 +170786020048,213,0 +170786020096,213,0 +170786020144,213,0 +170786020192,213,0 +170786020240,213,0 +170786020288,213,0 +170786020336,213,0 +170786020383,213,0 +170786020431,213,0 +170786020479,213,0 +170786020527,212,0 +170786020577,212,0 +170786020625,213,0 +170786020673,213,0 +170786020722,213,0 +170786020772,213,0 +170786020820,213,0 +170786020868,213,0 +170786020917,213,0 +170786020965,213,0 +170786021013,213,0 +170786021061,213,0 +170786021110,213,0 +170786021160,213,0 +170786021209,214,0 +170786021257,214,0 +170786021305,214,0 +170786021353,214,0 +170786021401,213,0 +170786021449,213,0 +170786021497,213,0 +170786021546,213,0 +170786021594,213,0 +170786021642,213,0 +170786021690,213,0 +170786021739,213,0 +170786021789,213,0 +170786021837,213,0 +170786021886,213,0 +170786021934,213,0 +170786021982,213,0 +170786022030,213,0 +170786022080,213,0 +170786022127,214,0 +170786022175,214,0 +170786022223,214,0 +170786022273,214,0 +170786022321,213,0 +170786022369,213,0 +170786022417,213,0 +170786022466,213,0 +170786022516,213,0 +170786022565,213,0 +170786022615,213,0 +170786022664,213,0 +170786022712,213,0 +170786022762,213,0 +170786022811,213,0 +170786022859,213,0 +170786022907,213,0 +170786022955,213,0 +170786023003,213,0 +170786023052,213,0 +170786023100,214,0 +170786023148,213,0 +170786023197,213,0 +170786023245,214,0 +170786023293,213,0 +170786023341,213,0 +170786023391,213,0 +170786023439,213,0 +170786023488,213,0 +170786023536,213,0 +170786023584,213,0 +170786023632,213,0 +170786023680,213,0 +170786023728,213,0 +170786023776,213,0 +170786023824,213,0 +170786023872,213,0 +170786023921,213,0 +170786023970,213,0 +170786024018,213,0 +170786024066,213,0 +170786024116,214,0 +170786024165,213,0 +170786024213,213,0 +170786024261,212,0 +170786024309,212,0 +170786024357,213,0 +170786024406,213,0 +170786024454,213,0 +170786024504,213,0 +170786024552,213,0 +170786024600,213,0 +170786024647,213,0 +170786024697,213,0 +170786024745,213,0 +170786024794,213,0 +170786024842,213,0 +170786024890,213,0 +170786024939,214,0 +170786024987,214,0 +170786025035,214,0 +170786025083,213,0 +170786025131,213,0 +170786025179,213,0 +170786025228,213,0 +170786025278,213,0 +170786025327,213,0 +170786025375,213,0 +170786025423,213,0 +170786025471,213,0 +170786025519,213,0 +170786025567,213,0 +170786025615,213,0 +170786025662,213,0 +170786025710,213,0 +170786025758,214,0 +170786025806,213,0 +170786025854,214,0 +170786025902,214,0 +170786025950,214,0 +170786025997,214,0 +170786026045,213,0 +170786026093,213,0 +170786026141,213,0 +170786026189,213,0 +170786026237,213,0 +170786026285,213,0 +170786026332,213,0 +170786026382,213,0 +170786026430,213,0 +170786026478,214,0 +170786026527,213,0 +170786026575,214,0 +170786026623,214,0 +170786026670,214,0 +170786026718,214,0 +170786026766,214,0 +170786026814,214,0 +170786026862,214,0 +170786026909,214,0 +170786026959,214,0 +170786027007,213,0 +170786027055,213,0 +170786027103,213,0 +170786027151,213,0 +170786027200,213,0 +170786027248,213,0 +170786027296,213,0 +170786027344,213,0 +170786027392,213,0 +170786027440,213,0 +170786027488,213,0 +170786027536,213,0 +170786027585,213,0 +170786027633,214,0 +170786027681,214,0 +170786027729,213,0 +170786027777,214,0 +170786027825,214,0 +170786027873,214,0 +170786027921,213,0 +170786027969,213,0 +170786028017,213,0 +170786028065,213,0 +170786028112,213,0 +170786028160,213,0 +170786028208,213,0 +170786028258,213,0 +170786028307,213,0 +170786028355,213,0 +170786028403,213,0 +170786028451,213,0 +170786028498,213,0 +170786028546,213,0 +170786028596,213,0 +170786028644,213,0 +170786028691,213,0 +170786028739,213,0 +170786028787,213,0 +170786028837,213,0 +170786028885,213,0 +170786028933,213,0 +170786028982,213,0 +170786029030,213,0 +170786029079,213,0 +170786029129,213,0 +170786029177,213,0 +170786029225,213,0 +170786029272,213,0 +170786029320,213,0 +170786029368,213,0 +170786029416,213,0 +170786029464,213,0 +170786029512,213,0 +170786029560,213,0 +170786029609,213,0 +170786029657,213,0 +170786029707,214,0 +170786029755,213,0 +170786029803,213,0 +170786029851,213,0 +170786029899,213,0 +170786029948,213,0 +170786029996,213,0 +170786030046,213,0 +170786030095,213,0 +170786030145,213,0 +170786030193,213,0 +170786030241,213,0 +170786030288,213,0 +170786030338,213,0 +170786030386,213,0 +170786030434,213,0 +170786030483,213,0 +170786030531,214,0 +170786030579,214,0 +170786030627,213,0 +170786030675,213,0 +170786030723,213,0 +170786030770,213,0 +170786030820,213,0 +170786030868,213,0 +170786030916,213,0 +170786030964,213,0 +170786031012,213,0 +170786031061,213,0 +170786031109,213,0 +170786031157,213,0 +170786031205,213,0 +170786031253,213,0 +170786031301,213,0 +170786031350,213,0 +170786031398,213,0 +170786031446,214,0 +170786031494,214,0 +170786031542,214,0 +170786031590,214,0 +170786031639,213,0 +170786031689,213,0 +170786031737,213,0 +170786031786,213,0 +170786031836,213,0 +170786031885,213,0 +170786031933,213,0 +170786031983,213,0 +170786032031,213,0 +170786032080,213,0 +170786032128,213,0 +170786032176,213,0 +170786032224,213,0 +170786032272,213,0 +170786032320,214,0 +170786032368,214,0 +170786032416,213,0 +170786032464,214,0 +170786032513,213,0 +170786032563,213,0 +170786032611,213,0 +170786032659,213,0 +170786032707,213,0 +170786032756,213,0 +170786032804,213,0 +170786032853,213,0 +170786032901,213,0 +170786032951,213,0 +170786032999,213,0 +170786033048,213,0 +170786033096,213,0 +170786033144,213,0 +170786033192,213,0 +170786033240,213,0 +170786033288,214,0 +170786033337,214,0 +170786033385,214,0 +170786033433,214,0 +170786033482,213,0 +170786033530,213,0 +170786033578,213,0 +170786033626,213,0 +170786033676,213,0 +170786033724,213,0 +170786033773,213,0 +170786033823,213,0 +170786033872,213,0 +170786033920,213,0 +170786033968,213,0 +170786034016,213,0 +170786034064,213,0 +170786034111,214,0 +170786034159,213,0 +170786034209,214,0 +170786034258,213,0 +170786034306,213,0 +170786034356,213,0 +170786034403,213,0 +170786034451,213,0 +170786034499,213,0 +170786034547,213,0 +170786034595,213,0 +170786034643,213,0 +170786034691,213,0 +170786034739,213,0 +170786034787,213,0 +170786034836,213,0 +170786034884,213,0 +170786034934,213,0 +170786034982,214,0 +170786035030,214,0 +170786035077,214,0 +170786035125,214,0 +170786035173,213,0 +170786035221,213,0 +170786035269,214,0 +170786035318,214,0 +170786035368,213,0 +170786035416,213,0 +170786035463,213,0 +170786035511,213,0 +170786035561,213,0 +170786035609,213,0 +170786035657,213,0 +170786035705,213,0 +170786035753,213,0 +170786035801,213,0 +170786035850,213,0 +170786035898,213,0 +170786035946,214,0 +170786035994,214,0 +170786036042,214,0 +170786036090,214,0 +170786036138,214,0 +170786036186,214,0 +170786036234,214,0 +170786036281,213,0 +170786036329,213,0 +170786036377,213,0 +170786036425,213,0 +170786036474,213,0 +170786036522,213,0 +170786036570,213,0 +170786036620,213,0 +170786036667,213,0 +170786036715,213,0 +170786036763,213,0 +170786036813,213,0 +170786036861,213,0 +170786036909,213,0 +170786036957,214,0 +170786037004,214,0 +170786037054,214,0 +170786037102,214,0 +170786037151,214,0 +170786037199,213,0 +170786037247,213,0 +170786037297,213,0 +170786037345,213,0 +170786037394,213,0 +170786037442,213,0 +170786037492,213,0 +170786037540,213,0 +170786037589,213,0 +170786037637,213,0 +170786037685,213,0 +170786037735,213,0 +170786037783,213,0 +170786037830,213,0 +170786037878,214,0 +170786037926,213,0 +170786037974,214,0 +170786038022,214,0 +170786038070,214,0 +170786038118,213,0 +170786038166,213,0 +170786038214,213,0 +170786038262,212,0 +170786038310,213,0 +170786038358,213,0 +170786038406,213,0 +170786038454,213,0 +170786038503,213,0 +170786038551,213,0 +170786038599,213,0 +170786038647,213,0 +170786038696,213,0 +170786038746,213,0 +170786038796,214,0 +170786038843,213,0 +170786038891,214,0 +170786038939,214,0 +170786038987,214,0 +170786039037,213,0 +170786039086,213,0 +170786039134,213,0 +170786039182,213,0 +170786039230,213,0 +170786039278,213,0 +170786039327,213,0 +170786039377,213,0 +170786039426,213,0 +170786039474,213,0 +170786039522,213,0 +170786039570,213,0 +170786039618,213,0 +170786039666,214,0 +170786039714,214,0 +170786039762,214,0 +170786039811,214,0 +170786039859,214,0 +170786039908,214,0 +170786039956,213,0 +170786040006,213,0 +170786040054,213,0 +170786040102,213,0 +170786040151,213,0 +170786040201,213,0 +170786040249,213,0 +170786040297,213,0 +170786040345,213,0 +170786040394,213,0 +170786040442,213,0 +170786040492,213,0 +170786040541,213,0 +170786040589,213,0 +170786040637,214,0 +170786040685,214,0 +170786040733,213,0 +170786040782,214,0 +170786040830,214,0 +170786040878,213,0 +170786040925,213,0 +170786040973,212,0 +170786041021,213,0 +170786041069,212,0 +170786041117,213,0 +170786041165,213,0 +170786041213,213,0 +170786041262,213,0 +170786041310,213,0 +170786041358,213,0 +170786041407,213,0 +170786041455,213,0 +170786041503,213,0 +170786041551,214,0 +170786041599,214,0 +170786041647,214,0 +170786041696,214,0 +170786041744,213,0 +170786041792,213,0 +170786041840,213,0 +170786041888,213,0 +170786041936,213,0 +170786041984,213,0 +170786042034,213,0 +170786042082,213,0 +170786042129,213,0 +170786042179,213,0 +170786042228,213,0 +170786042276,213,0 +170786042324,213,0 +170786042372,213,0 +170786042421,213,0 +170786042471,213,0 +170786042521,213,0 +170786042568,213,0 +170786042616,214,0 +170786042666,213,0 +170786042716,214,0 +170786042763,213,0 +170786042811,213,0 +170786042859,213,0 +170786042907,213,0 +170786042955,213,0 +170786043003,213,0 +170786043051,213,0 +170786043100,213,0 +170786043148,213,0 +170786043196,213,0 +170786043244,213,0 +170786043292,213,0 +170786043340,213,0 +170786043388,213,0 +170786043436,213,0 +170786043484,213,0 +170786043532,213,0 +170786043582,214,0 +170786043629,213,0 +170786043677,213,0 +170786043725,213,0 +170786043773,213,0 +170786043821,212,0 +170786043869,213,0 +170786043917,213,0 +170786043965,213,0 +170786044014,213,0 +170786044064,213,0 +170786044113,213,0 +170786044163,213,0 +170786044211,213,0 +170786044259,213,0 +170786044307,213,0 +170786044355,213,0 +170786044403,213,0 +170786044452,213,0 +170786044500,213,0 +170786044548,214,0 +170786044596,214,0 +170786044644,213,0 +170786044692,213,0 +170786044741,213,0 +170786044789,213,0 +170786044837,213,0 +170786044885,213,0 +170786044933,213,0 +170786044981,213,0 +170786045029,213,0 +170786045078,213,0 +170786045126,213,0 +170786045174,213,0 +170786045222,213,0 +170786045270,213,0 +170786045318,214,0 +170786045366,213,0 +170786045415,214,0 +170786045463,214,0 +170786045513,214,0 +170786045561,213,0 +170786045609,213,0 +170786045656,213,0 +170786045704,213,0 +170786045752,213,0 +170786045800,213,0 +170786045850,213,0 +170786045898,213,0 +170786045946,213,0 +170786045994,213,0 +170786046041,213,0 +170786046089,213,0 +170786046139,213,0 +170786046187,214,0 +170786046234,214,0 +170786046282,214,0 +170786046330,214,0 +170786046378,214,0 +170786046426,213,0 +170786046474,213,0 +170786046521,213,0 +170786046569,213,0 +170786046617,213,0 +170786046665,213,0 +170786046713,213,0 +170786046762,213,0 +170786046810,213,0 +170786046859,213,0 +170786046907,214,0 +170786046955,214,0 +170786047003,214,0 +170786047051,214,0 +170786047099,214,0 +170786047146,214,0 +170786047196,214,0 +170786047245,214,0 +170786047293,214,0 +170786047341,214,0 +170786047389,213,0 +170786047437,213,0 +170786047485,213,0 +170786047532,213,0 +170786047580,213,0 +170786047628,213,0 +170786047676,213,0 +170786047724,214,0 +170786047772,214,0 +170786047820,214,0 +170786047868,214,0 +170786047915,214,0 +170786047963,214,0 +170786048013,214,0 +170786048062,214,0 +170786048112,214,0 +170786048161,214,0 +170786048211,214,0 +170786048259,214,0 +170786048307,213,0 +170786048356,213,0 +170786048404,213,0 +170786048452,213,0 +170786048500,213,0 +170786048549,213,0 +170786048599,213,0 +170786048648,214,0 +170786048696,214,0 +170786048746,214,0 +170786048794,214,0 +170786048843,214,0 +170786048891,214,0 +170786048939,214,0 +170786048987,214,0 +170786049035,214,0 +170786049085,214,0 +170786049134,214,0 +170786049182,214,0 +170786049232,213,0 +170786049281,213,0 +170786049329,213,0 +170786049377,213,0 +170786049425,213,0 +170786049475,213,0 +170786049524,213,0 +170786049572,213,0 +170786049622,213,0 +170786049670,213,0 +170786049718,213,0 +170786049767,214,0 +170786049815,213,0 +170786049863,214,0 +170786049911,214,0 +170786049961,214,0 +170786050010,214,0 +170786050060,214,0 +170786050109,214,0 +170786050157,213,0 +170786050207,213,0 +170786050256,213,0 +170786050304,213,0 +170786050352,213,0 +170786050400,213,0 +170786050448,213,0 +170786050496,213,0 +170786050544,213,0 +170786050593,213,0 +170786050641,213,0 +170786050689,213,0 +170786050737,213,0 +170786050785,213,0 +170786050835,213,0 +170786050883,213,0 +170786050931,214,0 +170786050979,214,0 +170786051028,214,0 +170786051076,214,0 +170786051124,213,0 +170786051172,213,0 +170786051220,213,0 +170786051267,213,0 +170786051315,213,0 +170786051363,213,0 +170786051411,213,0 +170786051459,213,0 +170786051507,213,0 +170786051555,213,0 +170786051602,213,0 +170786051650,213,0 +170786051698,213,0 +170786051746,214,0 +170786051794,214,0 +170786051842,214,0 +170786051889,214,0 +170786051939,214,0 +170786051987,214,0 +170786052035,213,0 +170786052083,213,0 +170786052131,213,0 +170786052178,213,0 +170786052228,213,0 +170786052276,213,0 +170786052324,213,0 +170786052373,213,0 +170786052421,213,0 +170786052469,213,0 +170786052518,213,0 +170786052566,214,0 +170786052614,213,0 +170786052662,214,0 +170786052710,213,0 +170786052758,214,0 +170786052806,214,0 +170786052854,214,0 +170786052903,214,0 +170786052951,213,0 +170786053001,213,0 +170786053049,213,0 +170786053097,213,0 +170786053144,213,0 +170786053194,213,0 +170786053242,213,0 +170786053291,213,0 +170786053341,213,0 +170786053389,213,0 +170786053437,213,0 +170786053485,213,0 +170786053532,213,0 +170786053580,213,0 +170786053628,214,0 +170786053676,214,0 +170786053724,213,0 +170786053772,214,0 +170786053820,214,0 +170786053869,213,0 +170786053919,213,0 +170786053967,213,0 +170786054015,213,0 +170786054062,213,0 +170786054110,213,0 +170786054158,213,0 +170786054206,213,0 +170786054254,213,0 +170786054302,213,0 +170786054351,213,0 +170786054399,213,0 +170786054449,213,0 +170786054498,213,0 +170786054546,214,0 +170786054594,214,0 +170786054642,214,0 +170786054690,214,0 +170786054738,214,0 +170786054786,214,0 +170786054834,213,0 +170786054882,213,0 +170786054930,213,0 +170786054978,213,0 +170786055026,213,0 +170786055073,213,0 +170786055121,213,0 +170786055169,213,0 +170786055218,213,0 +170786055266,213,0 +170786055314,213,0 +170786055362,213,0 +170786055410,213,0 +170786055458,213,0 +170786055506,214,0 +170786055555,214,0 +170786055603,214,0 +170786055651,214,0 +170786055701,213,0 +170786055750,213,0 +170786055798,213,0 +170786055848,213,0 +170786055897,213,0 +170786055945,213,0 +170786055993,213,0 +170786056041,213,0 +170786056090,213,0 +170786056138,213,0 +170786056186,213,0 +170786056234,213,0 +170786056282,213,0 +170786056329,214,0 +170786056377,214,0 +170786056425,213,0 +170786056474,214,0 +170786056522,214,0 +170786056570,214,0 +170786056618,213,0 +170786056665,213,0 +170786056713,213,0 +170786056761,213,0 +170786056809,213,0 +170786056857,213,0 +170786056905,213,0 +170786056953,213,0 +170786057000,213,0 +170786057048,213,0 +170786057096,213,0 +170786057144,213,0 +170786057192,213,0 +170786057239,214,0 +170786057287,213,0 +170786057335,214,0 +170786057383,213,0 +170786057431,214,0 +170786057478,214,0 +170786057526,214,0 +170786057576,214,0 +170786057624,213,0 +170786057671,213,0 +170786057719,213,0 +170786057767,213,0 +170786057815,213,0 +170786057864,213,0 +170786057912,213,0 +170786057960,213,0 +170786058009,213,0 +170786058057,213,0 +170786058107,213,0 +170786058154,213,0 +170786058202,213,0 +170786058250,213,0 +170786058298,213,0 +170786058346,213,0 +170786058393,214,0 +170786058441,214,0 +170786058489,214,0 +170786058537,213,0 +170786058585,213,0 +170786058633,213,0 +170786058680,212,0 +170786058728,213,0 +170786058776,213,0 +170786058824,212,0 +170786058872,213,0 +170786058920,213,0 +170786058968,213,0 +170786059016,213,0 +170786059063,213,0 +170786059111,213,0 +170786059159,213,0 +170786059207,213,0 +170786059255,213,0 +170786059303,213,0 +170786059352,213,0 +170786059401,213,0 +170786059449,213,0 +170786059497,213,0 +170786059545,213,0 +170786059595,213,0 +170786059643,213,0 +170786059690,213,0 +170786059738,213,0 +170786059786,213,0 +170786059834,213,0 +170786059882,213,0 +170786059930,213,0 +170786059978,213,0 +170786060025,213,0 +170786060073,213,0 +170786060121,213,0 +170786060169,214,0 +170786060218,213,0 +170786060266,214,0 +170786060314,214,0 +170786060362,213,0 +170786060410,212,0 +170786060457,212,0 +170786060505,213,0 +170786060553,213,0 +170786060603,213,0 +170786060651,213,0 +170786060700,213,0 +170786060748,213,0 +170786060797,213,0 +170786060847,213,0 +170786060895,213,0 +170786060943,213,0 +170786060991,213,0 +170786061038,214,0 +170786061088,214,0 +170786061136,214,0 +170786061184,214,0 +170786061233,214,0 +170786061281,214,0 +170786061329,213,0 +170786061377,213,0 +170786061425,213,0 +170786061474,213,0 +170786061522,213,0 +170786061570,213,0 +170786061618,213,0 +170786061666,213,0 +170786061716,213,0 +170786061764,213,0 +170786061812,213,0 +170786061860,213,0 +170786061908,214,0 +170786061957,214,0 +170786062005,214,0 +170786062053,214,0 +170786062101,214,0 +170786062149,213,0 +170786062197,213,0 +170786062245,213,0 +170786062294,213,0 +170786062342,213,0 +170786062390,213,0 +170786062440,213,0 +170786062488,213,0 +170786062537,213,0 +170786062585,213,0 +170786062633,213,0 +170786062681,213,0 +170786062731,213,0 +170786062780,213,0 +170786062828,214,0 +170786062878,213,0 +170786062926,214,0 +170786062974,214,0 +170786063021,214,0 +170786063071,214,0 +170786063119,214,0 +170786063167,213,0 +170786063216,213,0 +170786063264,213,0 +170786063312,213,0 +170786063360,213,0 +170786063410,213,0 +170786063457,213,0 +170786063505,213,0 +170786063555,213,0 +170786063604,213,0 +170786063652,213,0 +170786063700,214,0 +170786063748,214,0 +170786063796,214,0 +170786063846,214,0 +170786063893,214,0 +170786063941,214,0 +170786063989,214,0 +170786064037,214,0 +170786064085,213,0 +170786064133,213,0 +170786064182,213,0 +170786064230,213,0 +170786064278,213,0 +170786064326,213,0 +170786064374,213,0 +170786064422,213,0 +170786064471,213,0 +170786064519,213,0 +170786064567,213,0 +170786064617,213,0 +170786064665,213,0 +170786064714,213,0 +170786064764,213,0 +170786064812,214,0 +170786064861,214,0 +170786064909,214,0 +170786064957,214,0 +170786065005,214,0 +170786065054,213,0 +170786065104,213,0 +170786065152,213,0 +170786065200,213,0 +170786065248,213,0 +170786065296,213,0 +170786065343,213,0 +170786065391,213,0 +170786065439,213,0 +170786065487,213,0 +170786065535,213,0 +170786065583,213,0 +170786065633,213,0 +170786065682,213,0 +170786065732,213,0 +170786065780,214,0 +170786065828,214,0 +170786065877,213,0 +170786065925,213,0 +170786065973,213,0 +170786066021,213,0 +170786066071,213,0 +170786066119,213,0 +170786066167,213,0 +170786066215,213,0 +170786066263,213,0 +170786066312,213,0 +170786066360,213,0 +170786066410,213,0 +170786066457,213,0 +170786066505,213,0 +170786066553,213,0 +170786066601,214,0 +170786066649,214,0 +170786066699,214,0 +170786066747,214,0 +170786066795,213,0 +170786066844,214,0 +170786066892,213,0 +170786066940,213,0 +170786066988,213,0 +170786067038,213,0 +170786067086,213,0 +170786067135,213,0 +170786067183,213,0 +170786067231,213,0 +170786067279,213,0 +170786067328,213,0 +170786067378,213,0 +170786067427,213,0 +170786067475,213,0 +170786067523,213,0 +170786067571,213,0 +170786067619,214,0 +170786067667,214,0 +170786067715,214,0 +170786067764,214,0 +170786067812,213,0 +170786067860,213,0 +170786067908,213,0 +170786067956,213,0 +170786068004,213,0 +170786068053,213,0 +170786068101,213,0 +170786068149,213,0 +170786068197,213,0 +170786068244,213,0 +170786068294,214,0 +170786068342,213,0 +170786068390,213,0 +170786068438,214,0 +170786068485,214,0 +170786068533,214,0 +170786068581,214,0 +170786068631,214,0 +170786068679,214,0 +170786068727,214,0 +170786068776,213,0 +170786068824,213,0 +170786068872,213,0 +170786068921,213,0 +170786068971,213,0 +170786069020,213,0 +170786069068,213,0 +170786069118,213,0 +170786069168,213,0 +170786069217,213,0 +170786069265,214,0 +170786069315,214,0 +170786069364,214,0 +170786069412,214,0 +170786069460,214,0 +170786069508,214,0 +170786069558,214,0 +170786069606,214,0 +170786069655,213,0 +170786069703,213,0 +170786069751,213,0 +170786069799,213,0 +170786069847,214,0 +170786069896,213,0 +170786069944,214,0 +170786069994,214,0 +170786070043,214,0 +170786070091,214,0 +170786070139,214,0 +170786070187,214,0 +170786070235,214,0 +170786070283,214,0 +170786070330,214,0 +170786070378,214,0 +170786070426,214,0 +170786070474,214,0 +170786070522,214,0 +170786070569,214,0 +170786070617,213,0 +170786070665,213,0 +170786070713,213,0 +170786070761,213,0 +170786070809,213,0 +170786070857,213,0 +170786070905,213,0 +170786070952,213,0 +170786071002,214,0 +170786071050,213,0 +170786071098,213,0 +170786071145,213,0 +170786071195,213,0 +170786071243,214,0 +170786071291,214,0 +170786071339,214,0 +170786071386,214,0 +170786071436,214,0 +170786071484,214,0 +170786071532,213,0 +170786071580,213,0 +170786071627,213,0 +170786071675,213,0 +170786071723,213,0 +170786071773,213,0 +170786071821,213,0 +170786071870,213,0 +170786071918,213,0 +170786071966,213,0 +170786072014,213,0 +170786072064,213,0 +170786072113,213,0 +170786072161,213,0 +170786072211,213,0 +170786072260,213,0 +170786072308,213,0 +170786072358,213,0 +170786072407,214,0 +170786072455,213,0 +170786072503,213,0 +170786072553,213,0 +170786072601,212,0 +170786072649,213,0 +170786072696,213,0 +170786072744,213,0 +170786072792,213,0 +170786072840,213,0 +170786072888,213,0 +170786072938,213,0 +170786072986,213,0 +170786073034,213,0 +170786073082,213,0 +170786073131,213,0 +170786073181,213,0 +170786073229,214,0 +170786073277,214,0 +170786073326,214,0 +170786073376,214,0 +170786073424,213,0 +170786073472,213,0 +170786073521,213,0 +170786073571,213,0 +170786073619,213,0 +170786073667,213,0 +170786073716,213,0 +170786073766,213,0 +170786073814,213,0 +170786073862,213,0 +170786073911,213,0 +170786073959,213,0 +170786074007,213,0 +170786074057,213,0 +170786074105,214,0 +170786074154,214,0 +170786074204,214,0 +170786074252,214,0 +170786074302,214,0 +170786074350,213,0 +170786074399,213,0 +170786074447,213,0 +170786074495,213,0 +170786074543,213,0 +170786074591,213,0 +170786074639,213,0 +170786074687,213,0 +170786074735,213,0 +170786074784,213,0 +170786074832,213,0 +170786074882,213,0 +170786074930,213,0 +170786074977,213,0 +170786075025,213,0 +170786075073,213,0 +170786075121,214,0 +170786075169,214,0 +170786075217,214,0 +170786075267,213,0 +170786075315,213,0 +170786075364,213,0 +170786075412,213,0 +170786075462,213,0 +170786075510,213,0 +170786075559,213,0 +170786075607,213,0 +170786075657,213,0 +170786075706,213,0 +170786075754,213,0 +170786075802,214,0 +170786075852,213,0 +170786075900,214,0 +170786075949,214,0 +170786075997,214,0 +170786076045,214,0 +170786076093,214,0 +170786076141,214,0 +170786076189,213,0 +170786076237,213,0 +170786076286,213,0 +170786076334,213,0 +170786076382,213,0 +170786076432,213,0 +170786076481,213,0 +170786076529,213,0 +170786076577,213,0 +170786076627,213,0 +170786076676,213,0 +170786076724,213,0 +170786076772,213,0 +170786076822,213,0 +170786076871,213,0 +170786076921,214,0 +170786076969,214,0 +170786077017,214,0 +170786077065,213,0 +170786077113,213,0 +170786077161,213,0 +170786077209,213,0 +170786077257,213,0 +170786077305,213,0 +170786077354,213,0 +170786077402,213,0 +170786077452,213,0 +170786077500,213,0 +170786077548,213,0 +170786077595,214,0 +170786077643,213,0 +170786077691,213,0 +170786077739,213,0 +170786077787,213,0 +170786077835,214,0 +170786077883,214,0 +170786077930,214,0 +170786077978,214,0 +170786078026,213,0 +170786078074,213,0 +170786078122,213,0 +170786078170,213,0 +170786078218,213,0 +170786078265,213,0 +170786078313,213,0 +170786078361,213,0 +170786078409,213,0 +170786078457,213,0 +170786078505,213,0 +170786078553,213,0 +170786078601,213,0 +170786078649,213,0 +170786078698,214,0 +170786078746,214,0 +170786078794,214,0 +170786078844,214,0 +170786078893,214,0 +170786078941,214,0 +170786078989,213,0 +170786079037,213,0 +170786079085,213,0 +170786079133,213,0 +170786079181,213,0 +170786079228,213,0 +170786079276,213,0 +170786079324,213,0 +170786079372,213,0 +170786079420,213,0 +170786079468,213,0 +170786079516,213,0 +170786079564,213,0 +170786079612,213,0 +170786079660,213,0 +170786079708,214,0 +170786079758,213,0 +170786079807,213,0 +170786079855,214,0 +170786079903,213,0 +170786079951,213,0 +170786079998,213,0 +170786080046,213,0 +170786080096,213,0 +170786080145,213,0 +170786080193,213,0 +170786080241,213,0 +170786080289,213,0 +170786080337,213,0 +170786080385,213,0 +170786080434,213,0 +170786080482,213,0 +170786080530,213,0 +170786080578,213,0 +170786080628,213,0 +170786080677,214,0 +170786080727,214,0 +170786080776,213,0 +170786080824,213,0 +170786080872,213,0 +170786080920,213,0 +170786080968,213,0 +170786081016,213,0 +170786081063,213,0 +170786081111,213,0 +170786081159,213,0 +170786081209,213,0 +170786081258,213,0 +170786081306,213,0 +170786081356,213,0 +170786081403,213,0 +170786081451,213,0 +170786081499,213,0 +170786081547,213,0 +170786081595,213,0 +170786081643,213,0 +170786081691,214,0 +170786081739,213,0 +170786081787,213,0 +170786081835,213,0 +170786081884,213,0 +170786081932,213,0 +170786081980,213,0 +170786082028,213,0 +170786082077,213,0 +170786082127,213,0 +170786082175,213,0 +170786082224,213,0 +170786082272,213,0 +170786082320,213,0 +170786082368,213,0 +170786082416,213,0 +170786082464,214,0 +170786082514,214,0 +170786082563,214,0 +170786082613,214,0 +170786082661,213,0 +170786082709,213,0 +170786082758,213,0 +170786082806,213,0 +170786082856,213,0 +170786082904,213,0 +170786082952,213,0 +170786083001,213,0 +170786083049,213,0 +170786083097,213,0 +170786083145,213,0 +170786083195,213,0 +170786083242,213,0 +170786083290,214,0 +170786083338,214,0 +170786083388,213,0 +170786083436,213,0 +170786083484,214,0 +170786083532,214,0 +170786083581,214,0 +170786083629,213,0 +170786083677,213,0 +170786083727,213,0 +170786083775,213,0 +170786083824,213,0 +170786083872,213,0 +170786083922,213,0 +170786083970,213,0 +170786084019,213,0 +170786084067,213,0 +170786084117,213,0 +170786084166,213,0 +170786084214,213,0 +170786084262,213,0 +170786084312,213,0 +170786084359,214,0 +170786084407,213,0 +170786084455,213,0 +170786084505,214,0 +170786084555,213,0 +170786084602,213,0 +170786084650,212,0 +170786084698,213,0 +170786084746,213,0 +170786084796,213,0 +170786084845,213,0 +170786084893,213,0 +170786084941,213,0 +170786084989,213,0 +170786085037,213,0 +170786085085,213,0 +170786085134,213,0 +170786085182,214,0 +170786085230,213,0 +170786085278,213,0 +170786085328,214,0 +170786085376,213,0 +170786085424,214,0 +170786085473,213,0 +170786085523,212,0 +170786085572,213,0 +170786085620,213,0 +170786085670,213,0 +170786085718,213,0 +170786085767,213,0 +170786085815,213,0 +170786085865,213,0 +170786085913,213,0 +170786085962,213,0 +170786086012,213,0 +170786086060,214,0 +170786086109,213,0 +170786086157,214,0 +170786086206,214,0 +170786086254,214,0 +170786086302,214,0 +170786086350,214,0 +170786086398,213,0 +170786086446,213,0 +170786086494,213,0 +170786086543,213,0 +170786086593,213,0 +170786086642,213,0 +170786086690,213,0 +170786086740,213,0 +170786086788,213,0 +170786086837,213,0 +170786086885,213,0 +170786086933,213,0 +170786086981,213,0 +170786087031,213,0 +170786087078,213,0 +170786087128,214,0 +170786087176,213,0 +170786087225,213,0 +170786087275,213,0 +170786087325,213,0 +170786087374,213,0 +170786087422,213,0 +170786087472,213,0 +170786087519,213,0 +170786087568,213,0 +170786087617,213,0 +170786087665,213,0 +170786087713,213,0 +170786087761,213,0 +170786087809,213,0 +170786087857,213,0 +170786087906,213,0 +170786087954,213,0 +170786088004,214,0 +170786088053,213,0 +170786088101,213,0 +170786088149,214,0 +170786088197,214,0 +170786088245,214,0 +170786088293,213,0 +170786088341,213,0 +170786088390,213,0 +170786088438,213,0 +170786088488,213,0 +170786088537,213,0 +170786088585,213,0 +170786088635,213,0 +170786088683,213,0 +170786088731,213,0 +170786088778,213,0 +170786088826,213,0 +170786088876,214,0 +170786088924,214,0 +170786088972,214,0 +170786089020,214,0 +170786089070,213,0 +170786089118,214,0 +170786089167,214,0 +170786089215,213,0 +170786089263,213,0 +170786089313,213,0 +170786089360,213,0 +170786089408,213,0 +170786089456,213,0 +170786089504,213,0 +170786089554,213,0 +170786089602,213,0 +170786089651,213,0 +170786089699,213,0 +170786089747,213,0 +170786089795,213,0 +170786089843,214,0 +170786089891,214,0 +170786089939,214,0 +170786089987,214,0 +170786090036,214,0 +170786090084,214,0 +170786090134,213,0 +170786090182,213,0 +170786090230,213,0 +170786090278,213,0 +170786090326,213,0 +170786090375,213,0 +170786090425,213,0 +170786090473,213,0 +170786090522,213,0 +170786090570,213,0 +170786090618,214,0 +170786090666,214,0 +170786090714,214,0 +170786090764,214,0 +170786090813,214,0 +170786090861,214,0 +170786090911,214,0 +170786090960,214,0 +170786091008,214,0 +170786091056,213,0 +170786091104,213,0 +170786091152,213,0 +170786091200,213,0 +170786091249,213,0 +170786091297,213,0 +170786091347,214,0 +170786091397,213,0 +170786091444,213,0 +170786091492,214,0 +170786091540,214,0 +170786091590,214,0 +170786091638,214,0 +170786091687,214,0 +170786091735,214,0 +170786091783,214,0 +170786091833,214,0 +170786091881,214,0 +170786091930,214,0 +170786091978,213,0 +170786092026,213,0 +170786092074,213,0 +170786092124,213,0 +170786092173,213,0 +170786092221,214,0 +170786092269,214,0 +170786092317,214,0 +170786092366,214,0 +170786092414,214,0 +170786092462,214,0 +170786092510,214,0 +170786092558,214,0 +170786092607,214,0 +170786092655,214,0 +170786092703,214,0 +170786092751,214,0 +170786092799,214,0 +170786092847,214,0 +170786092895,214,0 +170786092943,213,0 +170786092991,212,0 +170786093039,213,0 +170786093086,213,0 +170786093134,213,0 +170786093182,213,0 +170786093232,213,0 +170786093281,213,0 +170786093329,213,0 +170786093377,213,0 +170786093425,214,0 +170786093475,214,0 +170786093523,214,0 +170786093570,213,0 +170786093618,214,0 +170786093666,214,0 +170786093714,214,0 +170786093764,214,0 +170786093812,214,0 +170786093860,213,0 +170786093909,213,0 +170786093957,213,0 +170786094007,213,0 +170786094056,213,0 +170786094106,213,0 +170786094154,213,0 +170786094202,213,0 +170786094251,213,0 +170786094301,213,0 +170786094349,213,0 +170786094397,213,0 +170786094445,213,0 +170786094493,213,0 +170786094541,214,0 +170786094588,214,0 +170786094638,213,0 +170786094687,214,0 +170786094735,213,0 +170786094783,213,0 +170786094833,213,0 +170786094881,213,0 +170786094930,213,0 +170786094978,213,0 +170786095028,213,0 +170786095076,213,0 +170786095123,213,0 +170786095171,213,0 +170786095221,213,0 +170786095270,213,0 +170786095320,213,0 +170786095370,213,0 +170786095418,213,0 +170786095466,213,0 +170786095515,213,0 +170786095565,214,0 +170786095614,214,0 +170786095662,214,0 +170786095710,213,0 +170786095759,213,0 +170786095807,212,0 +170786095855,213,0 +170786095905,213,0 +170786095953,213,0 +170786096002,213,0 +170786096050,213,0 +170786096100,213,0 +170786096148,213,0 +170786096197,213,0 +170786096247,213,0 +170786096295,213,0 +170786096343,213,0 +170786096392,213,0 +170786096440,214,0 +170786096488,213,0 +170786096536,214,0 +170786096584,213,0 +170786096633,213,0 +170786096683,213,0 +170786096732,213,0 +170786096782,213,0 +170786096832,213,0 +170786096881,213,0 +170786096929,213,0 +170786096979,213,0 +170786097026,213,0 +170786097074,213,0 +170786097122,213,0 +170786097172,213,0 +170786097221,213,0 +170786097271,213,0 +170786097319,214,0 +170786097368,214,0 +170786097416,213,0 +170786097466,214,0 +170786097515,214,0 +170786097565,213,0 +170786097614,213,0 +170786097662,213,0 +170786097710,213,0 +170786097758,213,0 +170786097806,213,0 +170786097856,213,0 +170786097904,213,0 +170786097952,213,0 +170786098000,213,0 +170786098048,213,0 +170786098095,214,0 +170786098143,213,0 +170786098191,214,0 +170786098239,214,0 +170786098289,214,0 +170786098337,214,0 +170786098385,213,0 +170786098432,214,0 +170786098482,213,0 +170786098531,212,0 +170786098579,213,0 +170786098627,213,0 +170786098675,213,0 +170786098723,213,0 +170786098773,213,0 +170786098821,213,0 +170786098869,213,0 +170786098917,213,0 +170786098965,213,0 +170786099013,214,0 +170786099062,214,0 +170786099110,214,0 +170786099159,214,0 +170786099207,214,0 +170786099255,213,0 +170786099303,214,0 +170786099353,214,0 +170786099401,214,0 +170786099450,213,0 +170786099498,213,0 +170786099546,213,0 +170786099594,213,0 +170786099642,213,0 +170786099692,213,0 +170786099739,213,0 +170786099787,213,0 +170786099835,213,0 +170786099883,213,0 +170786099931,213,0 +170786099980,214,0 +170786100028,214,0 +170786100078,214,0 +170786100127,214,0 +170786100175,214,0 +170786100223,214,0 +170786100271,214,0 +170786100321,214,0 +170786100369,213,0 +170786100417,213,0 +170786100465,213,0 +170786100514,213,0 +170786100562,213,0 +170786100610,213,0 +170786100658,213,0 +170786100706,213,0 +170786100754,213,0 +170786100802,213,0 +170786100852,213,0 +170786100900,213,0 +170786100949,214,0 +170786100997,214,0 +170786101045,214,0 +170786101093,214,0 +170786101141,214,0 +170786101189,214,0 +170786101237,214,0 +170786101285,213,0 +170786101333,213,0 +170786101382,213,0 +170786101432,213,0 +170786101481,213,0 +170786101529,213,0 +170786101577,213,0 +170786101627,213,0 +170786101675,213,0 +170786101723,213,0 +170786101770,213,0 +170786101818,213,0 +170786101866,213,0 +170786101916,213,0 +170786101965,213,0 +170786102013,214,0 +170786102063,214,0 +170786102112,213,0 +170786102162,214,0 +170786102210,213,0 +170786102259,213,0 +170786102307,213,0 +170786102355,213,0 +170786102405,213,0 +170786102453,213,0 +170786102501,213,0 +170786102549,213,0 +170786102598,213,0 +170786102646,213,0 +170786102696,213,0 +170786102744,213,0 +170786102792,213,0 +170786102840,213,0 +170786102889,213,0 +170786102939,213,0 +170786102987,213,0 +170786103034,214,0 +170786103082,213,0 +170786103130,213,0 +170786103178,213,0 +170786103226,213,0 +170786103274,213,0 +170786103322,213,0 +170786103370,213,0 +170786103418,213,0 +170786103468,213,0 +170786103516,213,0 +170786103565,213,0 +170786103613,214,0 +170786103661,214,0 +170786103709,214,0 +170786103757,214,0 +170786103806,214,0 +170786103856,214,0 +170786103905,214,0 +170786103955,214,0 +170786104003,214,0 +170786104051,213,0 +170786104100,213,0 +170786104148,213,0 +170786104196,213,0 +170786104244,213,0 +170786104292,213,0 +170786104340,213,0 +170786104389,213,0 +170786104439,213,0 +170786104487,213,0 +170786104535,213,0 +170786104583,213,0 +170786104631,213,0 +170786104679,213,0 +170786104727,214,0 +170786104775,214,0 +170786104824,214,0 +170786104872,214,0 +170786104920,214,0 +170786104969,213,0 +170786105017,213,0 +170786105067,213,0 +170786105115,213,0 +170786105163,213,0 +170786105211,213,0 +170786105259,213,0 +170786105308,213,0 +170786105358,213,0 +170786105407,213,0 +170786105455,213,0 +170786105504,213,0 +170786105553,213,0 +170786105601,213,0 +170786105649,214,0 +170786105697,214,0 +170786105745,213,0 +170786105793,214,0 +170786105842,214,0 +170786105892,214,0 +170786105940,213,0 +170786105987,213,0 +170786106037,213,0 +170786106085,213,0 +170786106133,213,0 +170786106180,213,0 +170786106228,213,0 +170786106276,213,0 +170786106324,213,0 +170786106372,213,0 +170786106420,213,0 +170786106468,213,0 +170786106517,214,0 +170786106565,214,0 +170786106613,214,0 +170786106661,214,0 +170786106710,214,0 +170786106758,214,0 +170786106808,214,0 +170786106857,213,0 +170786106907,213,0 +170786106955,213,0 +170786107004,213,0 +170786107052,213,0 +170786107100,213,0 +170786107148,213,0 +170786107196,213,0 +170786107244,213,0 +170786107293,213,0 +170786107341,213,0 +170786107389,214,0 +170786107437,214,0 +170786107486,214,0 +170786107534,214,0 +170786107582,214,0 +170786107630,214,0 +170786107679,214,0 +170786107729,214,0 +170786107777,213,0 +170786107826,213,0 +170786107874,213,0 +170786107922,213,0 +170786107970,213,0 +170786108018,213,0 +170786108066,213,0 +170786108115,213,0 +170786108163,213,0 +170786108211,213,0 +170786108259,213,0 +170786108309,213,0 +170786108357,213,0 +170786108404,214,0 +170786108452,214,0 +170786108502,214,0 +170786108550,214,0 +170786108600,214,0 +170786108649,214,0 +170786108697,214,0 +170786108747,213,0 +170786108795,213,0 +170786108843,213,0 +170786108891,213,0 +170786108938,213,0 +170786108988,213,0 +170786109036,213,0 +170786109084,213,0 +170786109134,213,0 +170786109182,213,0 +170786109231,213,0 +170786109280,213,0 +170786109330,213,0 +170786109379,213,0 +170786109427,213,0 +170786109475,214,0 +170786109525,214,0 +170786109573,214,0 +170786109622,214,0 +170786109672,213,0 +170786109721,213,0 +170786109769,213,0 +170786109817,213,0 +170786109867,213,0 +170786109915,213,0 +170786109963,213,0 +170786110011,213,0 +170786110060,213,0 +170786110108,213,0 +170786110158,213,0 +170786110206,213,0 +170786110254,213,0 +170786110301,214,0 +170786110349,214,0 +170786110397,214,0 +170786110445,214,0 +170786110493,214,0 +170786110541,213,0 +170786110590,213,0 +170786110640,213,0 +170786110689,213,0 +170786110739,213,0 +170786110787,213,0 +170786110835,213,0 +170786110883,213,0 +170786110931,213,0 +170786110979,213,0 +170786111027,213,0 +170786111075,213,0 +170786111123,213,0 +170786111172,213,0 +170786111220,213,0 +170786111270,213,0 +170786111318,213,0 +170786111366,213,0 +170786111414,214,0 +170786111462,213,0 +170786111511,213,0 +170786111561,213,0 +170786111610,213,0 +170786111658,213,0 +170786111708,213,0 +170786111756,213,0 +170786111804,213,0 +170786111852,213,0 +170786111901,213,0 +170786111949,213,0 +170786111997,213,0 +170786112045,213,0 +170786112093,213,0 +170786112142,213,0 +170786112192,214,0 +170786112240,213,0 +170786112288,213,0 +170786112335,214,0 +170786112383,213,0 +170786112433,213,0 +170786112481,213,0 +170786112528,213,0 +170786112576,213,0 +170786112626,213,0 +170786112675,213,0 +170786112725,213,0 +170786112773,213,0 +170786112822,213,0 +170786112872,213,0 +170786112921,213,0 +170786112969,213,0 +170786113017,213,0 +170786113065,214,0 +170786113113,213,0 +170786113161,214,0 +170786113209,214,0 +170786113257,214,0 +170786113306,214,0 +170786113354,214,0 +170786113402,214,0 +170786113450,214,0 +170786113498,214,0 +170786113548,214,0 +170786113596,214,0 +170786113645,214,0 +170786113693,214,0 +170786113741,214,0 +170786113789,214,0 +170786113837,213,0 +170786113887,213,0 +170786113936,213,0 +170786113984,213,0 +170786114032,213,0 +170786114080,213,0 +170786114130,213,0 +170786114179,213,0 +170786114227,213,0 +170786114275,214,0 +170786114324,214,0 +170786114372,213,0 +170786114420,214,0 +170786114468,214,0 +170786114518,214,0 +170786114566,214,0 +170786114613,214,0 +170786114661,214,0 +170786114709,214,0 +170786114759,213,0 +170786114807,213,0 +170786114855,213,0 +170786114903,213,0 +170786114951,213,0 +170786114998,213,0 +170786115046,213,0 +170786115094,213,0 +170786115144,213,0 +170786115193,213,0 +170786115243,213,0 +170786115291,214,0 +170786115340,213,0 +170786115390,213,0 +170786115439,213,0 +170786115489,213,0 +170786115538,214,0 +170786115588,213,0 +170786115638,213,0 +170786115687,213,0 +170786115737,213,0 +170786115786,213,0 +170786115834,213,0 +170786115882,213,0 +170786115930,213,0 +170786115978,213,0 +170786116027,213,0 +170786116077,213,0 +170786116126,213,0 +170786116174,213,0 +170786116222,213,0 +170786116270,213,0 +170786116318,213,0 +170786116366,213,0 +170786116414,213,0 +170786116462,213,0 +170786116510,213,0 +170786116557,214,0 +170786116605,213,0 +170786116653,213,0 +170786116701,213,0 +170786116749,213,0 +170786116797,213,0 +170786116845,213,0 +170786116895,213,0 +170786116944,213,0 +170786116992,213,0 +170786117040,213,0 +170786117088,213,0 +170786117136,213,0 +170786117185,213,0 +170786117234,214,0 +170786117281,213,0 +170786117329,214,0 +170786117377,214,0 +170786117425,214,0 +170786117473,214,0 +170786117521,213,0 +170786117569,213,0 +170786117617,213,0 +170786117665,213,0 +170786117713,213,0 +170786117760,213,0 +170786117810,213,0 +170786117858,213,0 +170786117906,213,0 +170786117955,213,0 +170786118003,213,0 +170786118053,214,0 +170786118101,213,0 +170786118149,214,0 +170786118196,214,0 +170786118244,214,0 +170786118292,213,0 +170786118342,214,0 +170786118390,214,0 +170786118439,214,0 +170786118487,213,0 +170786118535,213,0 +170786118583,213,0 +170786118631,213,0 +170786118679,213,0 +170786118729,213,0 +170786118777,213,0 +170786118824,213,0 +170786118872,213,0 +170786118920,213,0 +170786118970,214,0 +170786119018,213,0 +170786119066,214,0 +170786119115,214,0 +170786119165,214,0 +170786119214,214,0 +170786119262,214,0 +170786119312,214,0 +170786119361,213,0 +170786119409,213,0 +170786119457,213,0 +170786119507,213,0 +170786119556,213,0 +170786119604,213,0 +170786119652,213,0 +170786119700,213,0 +170786119748,213,0 +170786119796,213,0 +170786119845,213,0 +170786119893,213,0 +170786119941,214,0 +170786119989,214,0 +170786120039,214,0 +170786120088,214,0 +170786120138,214,0 +170786120186,214,0 +170786120234,214,0 +170786120283,214,0 +170786120331,213,0 +170786120381,213,0 +170786120430,213,0 +170786120480,213,0 +170786120529,213,0 +170786120577,213,0 +170786120625,213,0 +170786120675,213,0 +170786120724,213,0 +170786120774,213,0 +170786120823,213,0 +170786120871,214,0 +170786120921,213,0 +170786120970,214,0 +170786121020,214,0 +170786121069,214,0 +170786121117,214,0 +170786121167,214,0 +170786121215,214,0 +170786121263,213,0 +170786121312,213,0 +170786121362,213,0 +170786121411,213,0 +170786121459,213,0 +170786121509,213,0 +170786121557,213,0 +170786121605,213,0 +170786121653,213,0 +170786121701,213,0 +170786121749,213,0 +170786121797,213,0 +170786121846,214,0 +170786121896,214,0 +170786121944,214,0 +170786121993,214,0 +170786122043,214,0 +170786122092,214,0 +170786122142,214,0 +170786122191,213,0 +170786122239,213,0 +170786122287,213,0 +170786122337,213,0 +170786122385,213,0 +170786122433,213,0 +170786122482,213,0 +170786122530,213,0 +170786122578,213,0 +170786122628,213,0 +170786122677,213,0 +170786122725,213,0 +170786122773,214,0 +170786122821,214,0 +170786122871,214,0 +170786122919,214,0 +170786122967,214,0 +170786123015,214,0 +170786123064,214,0 +170786123112,213,0 +170786123162,213,0 +170786123209,213,0 +170786123257,213,0 +170786123305,213,0 +170786123353,213,0 +170786123401,213,0 +170786123449,213,0 +170786123497,213,0 +170786123546,213,0 +170786123596,213,0 +170786123644,213,0 +170786123693,213,0 +170786123741,214,0 +170786123789,214,0 +170786123837,214,0 +170786123885,214,0 +170786123933,214,0 +170786123982,213,0 +170786124030,213,0 +170786124078,213,0 +170786124126,213,0 +170786124174,213,0 +170786124224,213,0 +170786124271,213,0 +170786124321,213,0 +170786124369,213,0 +170786124418,213,0 +170786124466,213,0 +170786124514,213,0 +170786124562,213,0 +170786124612,213,0 +170786124661,213,0 +170786124709,213,0 +170786124759,213,0 +170786124806,214,0 +170786124854,214,0 +170786124902,214,0 +170786124950,213,0 +170786124998,213,0 +170786125048,213,0 +170786125096,213,0 +170786125145,213,0 +170786125193,213,0 +170786125243,213,0 +170786125292,213,0 +170786125340,213,0 +170786125388,213,0 +170786125438,213,0 +170786125486,213,0 +170786125533,213,0 +170786125581,213,0 +170786125629,213,0 +170786125679,213,0 +170786125727,213,0 +170786125775,214,0 +170786125822,214,0 +170786125870,213,0 +170786125920,213,0 +170786125969,213,0 +170786126017,213,0 +170786126065,213,0 +170786126115,213,0 +170786126163,213,0 +170786126212,213,0 +170786126260,213,0 +170786126308,213,0 +170786126356,213,0 +170786126404,213,0 +170786126452,213,0 +170786126500,213,0 +170786126547,214,0 +170786126597,214,0 +170786126645,213,0 +170786126693,214,0 +170786126742,214,0 +170786126790,213,0 +170786126840,213,0 +170786126888,213,0 +170786126936,213,0 +170786126984,213,0 +170786127031,213,0 +170786127079,213,0 +170786127127,213,0 +170786127177,213,0 +170786127226,213,0 +170786127274,213,0 +170786127323,213,0 +170786127371,213,0 +170786127419,213,0 +170786127469,213,0 +170786127518,214,0 +170786127568,214,0 +170786127616,214,0 +170786127664,214,0 +170786127712,214,0 +170786127760,213,0 +170786127809,213,0 +170786127857,213,0 +170786127905,213,0 +170786127953,213,0 +170786128002,213,0 +170786128050,213,0 +170786128098,213,0 +170786128148,213,0 +170786128196,213,0 +170786128245,213,0 +170786128293,213,0 +170786128342,214,0 +170786128392,213,0 +170786128440,214,0 +170786128488,214,0 +170786128536,214,0 +170786128584,214,0 +170786128632,214,0 +170786128681,213,0 +170786128729,213,0 +170786128779,213,0 +170786128828,213,0 +170786128876,213,0 +170786128924,213,0 +170786128972,213,0 +170786129020,213,0 +170786129068,213,0 +170786129116,213,0 +170786129165,213,0 +170786129213,213,0 +170786129261,213,0 +170786129311,213,0 +170786129360,213,0 +170786129408,213,0 +170786129456,213,0 +170786129505,213,0 +170786129553,214,0 +170786129601,213,0 +170786129649,213,0 +170786129697,213,0 +170786129745,213,0 +170786129793,213,0 +170786129841,213,0 +170786129890,213,0 +170786129938,213,0 +170786129986,213,0 +170786130034,213,0 +170786130082,213,0 +170786130130,213,0 +170786130178,213,0 +170786130226,213,0 +170786130275,213,0 +170786130323,213,0 +170786130371,213,0 +170786130421,214,0 +170786130469,214,0 +170786130517,213,0 +170786130565,213,0 +170786130613,212,0 +170786130663,213,0 +170786130711,213,0 +170786130759,213,0 +170786130808,213,0 +170786130856,213,0 +170786130906,213,0 +170786130954,213,0 +170786131001,213,0 +170786131051,213,0 +170786131099,213,0 +170786131147,214,0 +170786131196,213,0 +170786131244,214,0 +170786131292,214,0 +170786131340,214,0 +170786131388,214,0 +170786131438,214,0 +170786131486,213,0 +170786131535,213,0 +170786131583,213,0 +170786131631,213,0 +170786131679,213,0 +170786131727,213,0 +170786131776,213,0 +170786131826,213,0 +170786131874,213,0 +170786131922,213,0 +170786131971,213,0 +170786132019,213,0 +170786132067,213,0 +170786132117,214,0 +170786132166,214,0 +170786132216,214,0 +170786132265,214,0 +170786132313,214,0 +170786132361,213,0 +170786132411,213,0 +170786132460,213,0 +170786132510,213,0 +170786132558,212,0 +170786132605,213,0 +170786132653,213,0 +170786132701,213,0 +170786132749,213,0 +170786132797,213,0 +170786132845,213,0 +170786132893,213,0 +170786132943,213,0 +170786132991,213,0 +170786133039,214,0 +170786133087,213,0 +170786133134,214,0 +170786133182,213,0 +170786133232,214,0 +170786133280,214,0 +170786133327,213,0 +170786133377,213,0 +170786133425,213,0 +170786133474,213,0 +170786133524,213,0 +170786133572,213,0 +170786133620,213,0 +170786133669,213,0 +170786133719,213,0 +170786133767,213,0 +170786133816,213,0 +170786133864,213,0 +170786133912,213,0 +170786133962,214,0 +170786134010,214,0 +170786134059,213,0 +170786134107,214,0 +170786134155,214,0 +170786134203,214,0 +170786134251,214,0 +170786134298,213,0 +170786134346,213,0 +170786134394,213,0 +170786134442,213,0 +170786134492,213,0 +170786134540,213,0 +170786134588,213,0 +170786134637,214,0 +170786134685,214,0 +170786134733,214,0 +170786134781,214,0 +170786134831,214,0 +170786134879,214,0 +170786134926,214,0 +170786134974,214,0 +170786135022,214,0 +170786135070,214,0 +170786135120,214,0 +170786135168,214,0 +170786135216,213,0 +170786135265,213,0 +170786135315,213,0 +170786135363,213,0 +170786135412,213,0 +170786135460,213,0 +170786135508,213,0 +170786135556,213,0 +170786135604,213,0 +170786135652,214,0 +170786135700,214,0 +170786135750,214,0 +170786135798,214,0 +170786135846,214,0 +170786135894,214,0 +170786135942,214,0 +170786135989,214,0 +170786136039,214,0 +170786136089,213,0 +170786136136,213,0 +170786136184,213,0 +170786136232,213,0 +170786136280,213,0 +170786136328,213,0 +170786136378,213,0 +170786136426,213,0 +170786136474,213,0 +170786136523,213,0 +170786136573,213,0 +170786136622,213,0 +170786136672,214,0 +170786136722,214,0 +170786136771,214,0 +170786136819,214,0 +170786136869,214,0 +170786136918,214,0 +170786136966,214,0 +170786137014,214,0 +170786137062,213,0 +170786137110,213,0 +170786137159,213,0 +170786137207,213,0 +170786137255,213,0 +170786137303,213,0 +170786137351,213,0 +170786137399,213,0 +170786137447,213,0 +170786137497,213,0 +170786137545,213,0 +170786137594,213,0 +170786137642,213,0 +170786137690,213,0 +170786137738,214,0 +170786137788,214,0 +170786137836,214,0 +170786137884,214,0 +170786137933,214,0 +170786137983,213,0 +170786138032,213,0 +170786138080,213,0 +170786138129,213,0 +170786138177,213,0 +170786138225,213,0 +170786138273,213,0 +170786138323,212,0 +170786138371,213,0 +170786138419,213,0 +170786138467,213,0 +170786138516,213,0 +170786138564,213,0 +170786138613,213,0 +170786138661,213,0 +170786138709,213,0 +170786138757,213,0 +170786138805,213,0 +170786138853,214,0 +170786138903,213,0 +170786138952,213,0 +170786139000,213,0 +170786139050,213,0 +170786139098,213,0 +170786139146,213,0 +170786139194,213,0 +170786139242,213,0 +170786139290,213,0 +170786139339,213,0 +170786139387,213,0 +170786139435,213,0 +170786139485,213,0 +170786139533,213,0 +170786139581,213,0 +170786139629,213,0 +170786139678,213,0 +170786139728,213,0 +170786139777,213,0 +170786139827,213,0 +170786139876,213,0 +170786139924,213,0 +170786139974,213,0 +170786140022,213,0 +170786140071,213,0 +170786140119,213,0 +170786140169,213,0 +170786140217,213,0 +170786140266,213,0 +170786140316,213,0 +170786140364,213,0 +170786140413,213,0 +170786140461,213,0 +170786140510,213,0 +170786140560,213,0 +170786140608,213,0 +170786140658,213,0 +170786140708,214,0 +170786140755,214,0 +170786140805,213,0 +170786140854,213,0 +170786140902,213,0 +170786140950,213,0 +170786140998,213,0 +170786141046,213,0 +170786141096,213,0 +170786141143,213,0 +170786141191,213,0 +170786141239,213,0 +170786141287,213,0 +170786141335,213,0 +170786141383,213,0 +170786141433,214,0 +170786141481,214,0 +170786141530,214,0 +170786141578,214,0 +170786141626,214,0 +170786141675,214,0 +170786141723,213,0 +170786141771,213,0 +170786141819,213,0 +170786141867,213,0 +170786141917,213,0 +170786141966,213,0 +170786142016,213,0 +170786142066,213,0 +170786142115,213,0 +170786142165,213,0 +170786142213,213,0 +170786142261,214,0 +170786142309,214,0 +170786142358,214,0 +170786142406,214,0 +170786142454,214,0 +170786142502,214,0 +170786142552,214,0 +170786142600,214,0 +170786142649,213,0 +170786142697,213,0 +170786142745,213,0 +170786142793,213,0 +170786142843,213,0 +170786142890,213,0 +170786142938,213,0 +170786142988,213,0 +170786143036,213,0 +170786143084,213,0 +170786143133,214,0 +170786143183,214,0 +170786143232,214,0 +170786143280,214,0 +170786143330,214,0 +170786143378,214,0 +170786143426,214,0 +170786143474,214,0 +170786143522,214,0 +170786143571,213,0 +170786143621,213,0 +170786143669,213,0 +170786143717,213,0 +170786143766,213,0 +170786143816,213,0 +170786143864,213,0 +170786143912,213,0 +170786143961,213,0 +170786144011,213,0 +170786144059,213,0 +170786144108,214,0 +170786144158,214,0 +170786144208,214,0 +170786144255,214,0 +170786144303,214,0 +170786144351,214,0 +170786144399,214,0 +170786144449,214,0 +170786144497,213,0 +170786144545,213,0 +170786144593,213,0 +170786144641,213,0 +170786144688,213,0 +170786144736,213,0 +170786144784,213,0 +170786144832,213,0 +170786144880,213,0 +170786144928,213,0 +170786144976,213,0 +170786145024,213,0 +170786145072,213,0 +170786145120,214,0 +170786145168,214,0 +170786145216,214,0 +170786145265,214,0 +170786145313,214,0 +170786145361,214,0 +170786145409,214,0 +170786145459,213,0 +170786145506,213,0 +170786145554,213,0 +170786145602,213,0 +170786145652,213,0 +170786145700,213,0 +170786145749,213,0 +170786145799,213,0 +170786145848,213,0 +170786145896,213,0 +170786145944,213,0 +170786145992,213,0 +170786146040,214,0 +170786146090,214,0 +170786146138,214,0 +170786146186,214,0 +170786146233,214,0 +170786146281,214,0 +170786146329,213,0 +170786146377,213,0 +170786146425,213,0 +170786146473,213,0 +170786146523,213,0 +170786146572,213,0 +170786146620,213,0 +170786146670,213,0 +170786146719,213,0 +170786146767,213,0 +170786146815,213,0 +170786146863,213,0 +170786146911,213,0 +170786146960,213,0 +170786147008,214,0 +170786147056,214,0 +170786147104,214,0 +170786147152,214,0 +170786147201,213,0 +170786147249,214,0 +170786147297,213,0 +170786147347,213,0 +170786147395,213,0 +170786147443,213,0 +170786147491,213,0 +170786147540,213,0 +170786147590,213,0 +170786147639,213,0 +170786147687,213,0 +170786147737,213,0 +170786147785,213,0 +170786147832,213,0 +170786147882,213,0 +170786147930,214,0 +170786147978,214,0 +170786148026,214,0 +170786148074,214,0 +170786148123,213,0 +170786148171,214,0 +170786148221,213,0 +170786148269,213,0 +170786148317,213,0 +170786148366,213,0 +170786148414,213,0 +170786148464,213,0 +170786148512,213,0 +170786148561,213,0 +170786148609,213,0 +170786148657,213,0 +170786148707,213,0 +170786148755,213,0 +170786148804,213,0 +170786148852,213,0 +170786148900,213,0 +170786148948,214,0 +170786148997,214,0 +170786149045,214,0 +170786149093,214,0 +170786149142,213,0 +170786149190,213,0 +170786149238,213,0 +170786149288,213,0 +170786149335,213,0 +170786149383,213,0 +170786149431,213,0 +170786149479,213,0 +170786149527,213,0 +170786149575,213,0 +170786149623,213,0 +170786149670,213,0 +170786149720,214,0 +170786149768,214,0 +170786149816,214,0 +170786149864,214,0 +170786149912,214,0 +170786149961,214,0 +170786150009,214,0 +170786150057,213,0 +170786150105,213,0 +170786150153,213,0 +170786150202,213,0 +170786150252,213,0 +170786150300,213,0 +170786150349,213,0 +170786150397,213,0 +170786150446,213,0 +170786150496,213,0 +170786150544,213,0 +170786150593,213,0 +170786150643,213,0 +170786150693,214,0 +170786150741,214,0 +170786150790,214,0 +170786150840,214,0 +170786150887,214,0 +170786150935,214,0 +170786150983,213,0 +170786151031,213,0 +170786151081,213,0 +170786151129,213,0 +170786151177,213,0 +170786151224,213,0 +170786151274,213,0 +170786151323,213,0 +170786151373,213,0 +170786151421,213,0 +170786151470,213,0 +170786151520,213,0 +170786151568,213,0 +170786151617,213,0 +170786151665,214,0 +170786151713,214,0 +170786151762,214,0 +170786151810,214,0 +170786151858,214,0 +170786151908,213,0 +170786151956,213,0 +170786152005,213,0 +170786152054,213,0 +170786152102,213,0 +170786152150,213,0 +170786152198,213,0 +170786152246,213,0 +170786152294,213,0 +170786152342,213,0 +170786152390,213,0 +170786152438,213,0 +170786152486,213,0 +170786152533,213,0 +170786152581,214,0 +170786152629,213,0 +170786152677,214,0 +170786152725,214,0 +170786152773,214,0 +170786152821,214,0 +170786152869,213,0 +170786152916,213,0 +170786152964,213,0 +170786153012,213,0 +170786153060,213,0 +170786153108,213,0 +170786153156,213,0 +170786153204,213,0 +170786153252,213,0 +170786153301,213,0 +170786153351,213,0 +170786153399,213,0 +170786153448,214,0 +170786153498,214,0 +170786153545,214,0 +170786153593,214,0 +170786153641,214,0 +170786153691,214,0 +170786153740,214,0 +170786153788,213,0 +170786153836,213,0 +170786153884,213,0 +170786153932,213,0 +170786153980,213,0 +170786154029,213,0 +170786154077,213,0 +170786154127,213,0 +170786154175,213,0 +170786154224,213,0 +170786154272,213,0 +170786154320,213,0 +170786154368,213,0 +170786154416,213,0 +170786154464,214,0 +170786154512,214,0 +170786154560,214,0 +170786154608,214,0 +170786154655,214,0 +170786154703,213,0 +170786154751,213,0 +170786154799,213,0 +170786154847,213,0 +170786154895,213,0 +170786154945,213,0 +170786154993,213,0 +170786155040,213,0 +170786155088,213,0 +170786155136,213,0 +170786155184,213,0 +170786155232,213,0 +170786155282,213,0 +170786155330,214,0 +170786155379,214,0 +170786155427,214,0 +170786155475,214,0 +170786155525,214,0 +170786155573,214,0 +170786155622,213,0 +170786155672,213,0 +170786155721,213,0 +170786155769,213,0 +170786155819,213,0 +170786155867,213,0 +170786155915,213,0 +170786155963,213,0 +170786156011,214,0 +170786156059,213,0 +170786156107,213,0 +170786156155,213,0 +170786156203,214,0 +170786156250,213,0 +170786156298,214,0 +170786156346,214,0 +170786156396,214,0 +170786156444,214,0 +170786156492,214,0 +170786156540,214,0 +170786156588,213,0 +170786156636,213,0 +170786156683,213,0 +170786156733,213,0 +170786156781,214,0 +170786156829,213,0 +170786156878,213,0 +170786156926,214,0 +170786156976,214,0 +170786157024,214,0 +170786157073,214,0 +170786157121,214,0 +170786157171,214,0 +170786157220,214,0 +170786157268,214,0 +170786157316,214,0 +170786157364,214,0 +170786157412,214,0 +170786157461,214,0 +170786157509,213,0 +170786157557,213,0 +170786157605,213,0 +170786157653,213,0 +170786157701,213,0 +170786157749,213,0 +170786157798,213,0 +170786157848,213,0 +170786157896,214,0 +170786157945,214,0 +170786157995,214,0 +170786158043,214,0 +170786158092,214,0 +170786158142,214,0 +170786158190,214,0 +170786158237,214,0 +170786158285,214,0 +170786158333,214,0 +170786158381,214,0 +170786158429,213,0 +170786158477,213,0 +170786158527,213,0 +170786158575,213,0 +170786158623,213,0 +170786158670,213,0 +170786158718,213,0 +170786158766,213,0 +170786158814,213,0 +170786158862,213,0 +170786158912,213,0 +170786158960,214,0 +170786159009,214,0 +170786159057,213,0 +170786159105,213,0 +170786159153,214,0 +170786159201,214,0 +170786159251,214,0 +170786159298,214,0 +170786159348,213,0 +170786159396,213,0 +170786159446,213,0 +170786159495,213,0 +170786159543,213,0 +170786159591,213,0 +170786159641,213,0 +170786159688,213,0 +170786159738,213,0 +170786159788,213,0 +170786159836,213,0 +170786159884,214,0 +170786159931,213,0 +170786159979,214,0 +170786160027,214,0 diff --git a/laser_value/0214-08.csv b/laser_value/0214-08.csv new file mode 100644 index 0000000..6669682 --- /dev/null +++ b/laser_value/0214-08.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +170786160077,214,0 +170786160125,214,0 +170786160173,214,0 +170786160221,213,0 +170786160269,214,0 +170786160317,213,0 +170786160365,213,0 +170786160412,213,0 +170786160460,213,0 +170786160508,213,0 +170786160556,213,0 +170786160604,213,0 +170786160652,213,0 +170786160700,213,0 +170786160748,213,0 +170786160796,214,0 +170786160846,214,0 +170786160894,214,0 +170786160943,214,0 +170786160993,214,0 +170786161040,214,0 +170786161088,214,0 +170786161136,214,0 +170786161184,214,0 +170786161232,213,0 +170786161280,213,0 +170786161329,213,0 +170786161377,213,0 +170786161427,213,0 +170786161476,213,0 +170786161524,213,0 +170786161574,213,0 +170786161622,213,0 +170786161670,213,0 +170786161718,213,0 +170786161766,214,0 +170786161813,213,0 +170786161861,214,0 +170786161911,213,0 +170786161961,213,0 +170786162008,214,0 +170786162056,214,0 +170786162104,214,0 +170786162152,213,0 +170786162200,213,0 +170786162248,213,0 +170786162296,213,0 +170786162346,213,0 +170786162394,213,0 +170786162441,213,0 +170786162489,213,0 +170786162537,213,0 +170786162585,213,0 +170786162633,213,0 +170786162683,213,0 +170786162731,213,0 +170786162778,214,0 +170786162826,214,0 +170786162876,214,0 +170786162924,213,0 +170786162973,214,0 +170786163023,214,0 +170786163071,213,0 +170786163120,213,0 +170786163170,213,0 +170786163218,213,0 +170786163266,213,0 +170786163314,213,0 +170786163363,213,0 +170786163413,213,0 +170786163461,213,0 +170786163510,213,0 +170786163558,213,0 +170786163606,213,0 +170786163654,213,0 +170786163703,213,0 +170786163753,213,0 +170786163802,213,0 +170786163850,214,0 +170786163898,213,0 +170786163948,214,0 +170786163996,213,0 +170786164044,213,0 +170786164092,213,0 +170786164140,213,0 +170786164188,213,0 +170786164236,213,0 +170786164284,213,0 +170786164333,213,0 +170786164381,213,0 +170786164430,213,0 +170786164478,213,0 +170786164526,213,0 +170786164576,213,0 +170786164625,214,0 +170786164675,214,0 +170786164724,214,0 +170786164772,213,0 +170786164820,214,0 +170786164870,214,0 +170786164919,213,0 +170786164967,213,0 +170786165015,213,0 +170786165065,213,0 +170786165114,213,0 +170786165162,213,0 +170786165210,213,0 +170786165260,213,0 +170786165308,213,0 +170786165355,213,0 +170786165403,213,0 +170786165451,213,0 +170786165499,214,0 +170786165547,214,0 +170786165595,214,0 +170786165643,214,0 +170786165692,214,0 +170786165740,214,0 +170786165788,214,0 +170786165836,214,0 +170786165886,213,0 +170786165934,213,0 +170786165982,213,0 +170786166030,213,0 +170786166077,213,0 +170786166127,213,0 +170786166175,213,0 +170786166224,213,0 +170786166272,213,0 +170786166320,213,0 +170786166368,213,0 +170786166418,214,0 +170786166466,214,0 +170786166514,214,0 +170786166563,214,0 +170786166611,214,0 +170786166659,214,0 +170786166707,214,0 +170786166756,214,0 +170786166806,213,0 +170786166854,213,0 +170786166901,213,0 +170786166949,213,0 +170786166997,213,0 +170786167045,213,0 +170786167093,213,0 +170786167141,213,0 +170786167191,213,0 +170786167239,213,0 +170786167287,213,0 +170786167335,214,0 +170786167384,214,0 +170786167432,214,0 +170786167480,214,0 +170786167528,214,0 +170786167576,214,0 +170786167624,214,0 +170786167672,214,0 +170786167720,213,0 +170786167769,213,0 +170786167817,213,0 +170786167865,213,0 +170786167913,213,0 +170786167961,213,0 +170786168010,213,0 +170786168058,213,0 +170786168106,213,0 +170786168155,213,0 +170786168203,213,0 +170786168251,213,0 +170786168299,213,0 +170786168349,214,0 +170786168397,214,0 +170786168445,214,0 +170786168494,214,0 +170786168542,214,0 +170786168592,214,0 +170786168640,213,0 +170786168688,213,0 +170786168735,213,0 +170786168783,213,0 +170786168831,213,0 +170786168879,213,0 +170786168927,213,0 +170786168977,213,0 +170786169025,213,0 +170786169073,213,0 +170786169122,213,0 +170786169172,213,0 +170786169220,213,0 +170786169268,214,0 +170786169316,213,0 +170786169363,214,0 +170786169413,214,0 +170786169461,214,0 +170786169509,214,0 +170786169557,214,0 +170786169605,213,0 +170786169653,213,0 +170786169702,213,0 +170786169752,213,0 +170786169801,213,0 +170786169849,213,0 +170786169897,213,0 +170786169946,213,0 +170786169996,213,0 +170786170044,213,0 +170786170092,213,0 +170786170140,213,0 +170786170187,213,0 +170786170235,213,0 +170786170283,213,0 +170786170331,214,0 +170786170380,214,0 +170786170430,214,0 +170786170478,214,0 +170786170526,213,0 +170786170575,213,0 +170786170623,213,0 +170786170671,213,0 +170786170719,213,0 +170786170767,213,0 +170786170815,213,0 +170786170862,213,0 +170786170912,213,0 +170786170961,213,0 +170786171009,213,0 +170786171057,213,0 +170786171107,213,0 +170786171155,213,0 +170786171203,213,0 +170786171252,214,0 +170786171301,214,0 +170786171351,214,0 +170786171399,214,0 +170786171447,213,0 +170786171495,213,0 +170786171543,213,0 +170786171591,213,0 +170786171640,213,0 +170786171688,213,0 +170786171736,213,0 +170786171784,213,0 +170786171833,213,0 +170786171881,213,0 +170786171929,213,0 +170786171977,214,0 +170786172025,213,0 +170786172074,214,0 +170786172123,214,0 +170786172171,214,0 +170786172219,214,0 +170786172269,213,0 +170786172317,213,0 +170786172366,213,0 +170786172414,213,0 +170786172462,213,0 +170786172510,213,0 +170786172558,213,0 +170786172606,213,0 +170786172654,213,0 +170786172703,213,0 +170786172751,213,0 +170786172800,213,0 +170786172848,213,0 +170786172897,213,0 +170786172945,213,0 +170786172993,214,0 +170786173041,214,0 +170786173089,214,0 +170786173137,214,0 +170786173186,214,0 +170786173234,214,0 +170786173282,213,0 +170786173330,213,0 +170786173378,213,0 +170786173426,213,0 +170786173474,213,0 +170786173523,213,0 +170786173573,213,0 +170786173621,213,0 +170786173668,213,0 +170786173716,213,0 +170786173764,213,0 +170786173812,213,0 +170786173860,213,0 +170786173908,213,0 +170786173956,214,0 +170786174004,214,0 +170786174054,214,0 +170786174102,214,0 +170786174151,213,0 +170786174199,214,0 +170786174247,213,0 +170786174295,212,0 +170786174343,213,0 +170786174392,213,0 +170786174440,213,0 +170786174488,213,0 +170786174536,213,0 +170786174584,213,0 +170786174632,213,0 +170786174680,213,0 +170786174728,213,0 +170786174776,213,0 +170786174823,213,0 +170786174873,213,0 +170786174921,214,0 +170786174970,214,0 +170786175020,214,0 +170786175068,214,0 +170786175118,214,0 +170786175167,213,0 +170786175215,213,0 +170786175263,213,0 +170786175311,213,0 +170786175359,213,0 +170786175409,213,0 +170786175458,213,0 +170786175508,213,0 +170786175556,213,0 +170786175605,213,0 +170786175653,213,0 +170786175702,213,0 +170786175750,213,0 +170786175800,213,0 +170786175849,213,0 +170786175897,214,0 +170786175947,214,0 +170786175995,214,0 +170786176043,214,0 +170786176092,213,0 +170786176140,213,0 +170786176188,213,0 +170786176236,213,0 +170786176286,213,0 +170786176335,213,0 +170786176383,213,0 +170786176432,213,0 +170786176480,213,0 +170786176528,213,0 +170786176576,213,0 +170786176626,213,0 +170786176675,213,0 +170786176725,213,0 +170786176774,214,0 +170786176822,214,0 +170786176871,214,0 +170786176919,214,0 +170786176967,214,0 +170786177015,213,0 +170786177063,213,0 +170786177111,213,0 +170786177159,213,0 +170786177207,213,0 +170786177257,213,0 +170786177305,213,0 +170786177353,213,0 +170786177401,213,0 +170786177449,213,0 +170786177498,213,0 +170786177546,213,0 +170786177594,214,0 +170786177642,214,0 +170786177690,214,0 +170786177738,214,0 +170786177786,214,0 +170786177834,214,0 +170786177882,214,0 +170786177931,213,0 +170786177979,213,0 +170786178027,213,0 +170786178077,213,0 +170786178125,213,0 +170786178173,213,0 +170786178221,214,0 +170786178269,213,0 +170786178316,213,0 +170786178364,214,0 +170786178412,214,0 +170786178462,214,0 +170786178510,214,0 +170786178557,214,0 +170786178605,214,0 +170786178653,214,0 +170786178703,213,0 +170786178751,214,0 +170786178799,214,0 +170786178848,213,0 +170786178896,213,0 +170786178944,213,0 +170786178992,213,0 +170786179040,213,0 +170786179088,213,0 +170786179136,213,0 +170786179185,214,0 +170786179235,214,0 +170786179283,214,0 +170786179332,214,0 +170786179380,214,0 +170786179428,214,0 +170786179478,214,0 +170786179527,214,0 +170786179575,214,0 +170786179625,214,0 +170786179674,214,0 +170786179722,214,0 +170786179772,213,0 +170786179821,213,0 +170786179869,213,0 +170786179919,213,0 +170786179967,213,0 +170786180015,213,0 +170786180063,213,0 +170786180112,213,0 +170786180160,213,0 +170786180208,213,0 +170786180257,213,0 +170786180307,213,0 +170786180355,214,0 +170786180404,214,0 +170786180452,214,0 +170786180500,214,0 +170786180550,214,0 +170786180598,214,0 +170786180647,214,0 +170786180695,213,0 +170786180743,213,0 +170786180791,213,0 +170786180839,213,0 +170786180889,213,0 +170786180937,213,0 +170786180986,213,0 +170786181034,213,0 +170786181082,213,0 +170786181130,213,0 +170786181179,213,0 +170786181227,213,0 +170786181275,213,0 +170786181323,213,0 +170786181371,214,0 +170786181419,214,0 +170786181469,214,0 +170786181516,214,0 +170786181564,214,0 +170786181612,214,0 +170786181662,213,0 +170786181711,213,0 +170786181759,213,0 +170786181809,213,0 +170786181857,213,0 +170786181905,213,0 +170786181953,213,0 +170786182001,213,0 +170786182049,213,0 +170786182096,213,0 +170786182144,213,0 +170786182194,213,0 +170786182243,213,0 +170786182291,213,0 +170786182339,214,0 +170786182389,214,0 +170786182437,214,0 +170786182485,214,0 +170786182534,214,0 +170786182582,213,0 +170786182630,213,0 +170786182680,213,0 +170786182729,213,0 +170786182777,213,0 +170786182825,213,0 +170786182873,213,0 +170786182923,213,0 +170786182970,213,0 +170786183018,213,0 +170786183068,213,0 +170786183116,213,0 +170786183164,213,0 +170786183212,214,0 +170786183259,213,0 +170786183309,214,0 +170786183357,214,0 +170786183405,214,0 +170786183454,214,0 +170786183504,213,0 +170786183552,213,0 +170786183600,213,0 +170786183649,213,0 +170786183697,213,0 +170786183745,213,0 +170786183795,213,0 +170786183844,213,0 +170786183892,213,0 +170786183940,213,0 +170786183988,213,0 +170786184038,214,0 +170786184085,213,0 +170786184134,214,0 +170786184181,214,0 +170786184229,214,0 +170786184277,214,0 +170786184325,214,0 +170786184375,214,0 +170786184423,213,0 +170786184471,213,0 +170786184519,213,0 +170786184566,213,0 +170786184616,213,0 +170786184664,213,0 +170786184713,213,0 +170786184763,213,0 +170786184812,213,0 +170786184860,213,0 +170786184910,213,0 +170786184959,213,0 +170786185009,213,0 +170786185057,213,0 +170786185105,213,0 +170786185153,214,0 +170786185201,214,0 +170786185250,214,0 +170786185298,214,0 +170786185346,213,0 +170786185395,213,0 +170786185443,213,0 +170786185491,213,0 +170786185539,213,0 +170786185587,213,0 +170786185635,213,0 +170786185683,213,0 +170786185731,213,0 +170786185781,213,0 +170786185829,213,0 +170786185876,213,0 +170786185924,213,0 +170786185974,214,0 +170786186023,214,0 +170786186071,214,0 +170786186121,214,0 +170786186169,214,0 +170786186217,213,0 +170786186264,213,0 +170786186312,213,0 +170786186360,213,0 +170786186408,213,0 +170786186456,213,0 +170786186506,213,0 +170786186554,213,0 +170786186601,213,0 +170786186649,213,0 +170786186697,213,0 +170786186745,213,0 +170786186793,213,0 +170786186841,213,0 +170786186889,214,0 +170786186938,213,0 +170786186986,214,0 +170786187034,214,0 +170786187082,214,0 +170786187130,214,0 +170786187179,213,0 +170786187228,213,0 +170786187277,213,0 +170786187325,213,0 +170786187373,213,0 +170786187421,213,0 +170786187469,213,0 +170786187518,213,0 +170786187566,213,0 +170786187614,213,0 +170786187663,213,0 +170786187713,213,0 +170786187762,213,0 +170786187810,214,0 +170786187860,214,0 +170786187908,214,0 +170786187956,214,0 +170786188004,214,0 +170786188051,214,0 +170786188099,214,0 +170786188147,213,0 +170786188197,213,0 +170786188246,213,0 +170786188296,213,0 +170786188345,213,0 +170786188393,213,0 +170786188441,213,0 +170786188491,213,0 +170786188540,213,0 +170786188590,213,0 +170786188639,214,0 +170786188687,213,0 +170786188735,214,0 +170786188784,214,0 +170786188832,214,0 +170786188880,214,0 +170786188928,214,0 +170786188976,214,0 +170786189024,214,0 +170786189072,213,0 +170786189120,213,0 +170786189170,213,0 +170786189219,213,0 +170786189268,213,0 +170786189318,213,0 +170786189368,213,0 +170786189417,213,0 +170786189465,213,0 +170786189513,213,0 +170786189562,213,0 +170786189612,214,0 +170786189660,214,0 +170786189707,213,0 +170786189757,214,0 +170786189805,214,0 +170786189853,214,0 +170786189902,214,0 +170786189952,214,0 +170786190001,213,0 +170786190051,213,0 +170786190099,213,0 +170786190147,213,0 +170786190196,213,0 +170786190244,213,0 +170786190292,213,0 +170786190340,213,0 +170786190388,213,0 +170786190436,213,0 +170786190485,213,0 +170786190533,213,0 +170786190583,214,0 +170786190632,213,0 +170786190680,214,0 +170786190728,213,0 +170786190776,214,0 +170786190824,214,0 +170786190872,214,0 +170786190920,213,0 +170786190968,213,0 +170786191017,213,0 +170786191065,213,0 +170786191113,213,0 +170786191162,213,0 +170786191210,213,0 +170786191258,213,0 +170786191306,213,0 +170786191356,213,0 +170786191403,213,0 +170786191451,213,0 +170786191499,213,0 +170786191547,213,0 +170786191597,213,0 +170786191645,214,0 +170786191694,214,0 +170786191742,214,0 +170786191790,213,0 +170786191838,213,0 +170786191886,213,0 +170786191935,213,0 +170786191983,213,0 +170786192033,213,0 +170786192082,213,0 +170786192132,213,0 +170786192180,213,0 +170786192229,213,0 +170786192279,213,0 +170786192327,213,0 +170786192375,213,0 +170786192424,213,0 +170786192472,213,0 +170786192522,213,0 +170786192570,214,0 +170786192617,214,0 +170786192667,213,0 +170786192715,214,0 +170786192763,213,0 +170786192811,213,0 +170786192860,213,0 +170786192910,213,0 +170786192958,213,0 +170786193006,213,0 +170786193054,213,0 +170786193102,213,0 +170786193151,213,0 +170786193201,213,0 +170786193250,213,0 +170786193298,213,0 +170786193348,213,0 +170786193397,214,0 +170786193445,214,0 +170786193493,214,0 +170786193541,214,0 +170786193589,214,0 +170786193639,214,0 +170786193687,213,0 +170786193735,213,0 +170786193784,213,0 +170786193834,213,0 +170786193882,213,0 +170786193929,213,0 +170786193977,213,0 +170786194027,213,0 +170786194075,213,0 +170786194123,213,0 +170786194171,213,0 +170786194219,213,0 +170786194267,214,0 +170786194316,214,0 +170786194364,214,0 +170786194412,214,0 +170786194460,214,0 +170786194508,214,0 +170786194556,214,0 +170786194604,213,0 +170786194653,213,0 +170786194701,213,0 +170786194751,213,0 +170786194800,213,0 +170786194850,213,0 +170786194898,213,0 +170786194946,213,0 +170786194994,213,0 +170786195042,213,0 +170786195089,213,0 +170786195137,213,0 +170786195185,213,0 +170786195235,213,0 +170786195283,214,0 +170786195331,213,0 +170786195379,214,0 +170786195426,214,0 +170786195474,214,0 +170786195522,213,0 +170786195570,213,0 +170786195620,213,0 +170786195669,213,0 +170786195717,213,0 +170786195767,213,0 +170786195814,213,0 +170786195862,213,0 +170786195910,213,0 +170786195958,213,0 +170786196008,213,0 +170786196055,213,0 +170786196103,213,0 +170786196151,214,0 +170786196199,214,0 +170786196247,214,0 +170786196295,214,0 +170786196342,214,0 +170786196390,213,0 +170786196438,214,0 +170786196486,213,0 +170786196534,213,0 +170786196582,213,0 +170786196630,213,0 +170786196677,213,0 +170786196725,213,0 +170786196773,213,0 +170786196821,213,0 +170786196869,213,0 +170786196917,213,0 +170786196965,213,0 +170786197013,213,0 +170786197060,213,0 +170786197108,213,0 +170786197156,213,0 +170786197204,214,0 +170786197252,213,0 +170786197300,213,0 +170786197347,213,0 +170786197395,213,0 +170786197443,213,0 +170786197491,213,0 +170786197540,213,0 +170786197588,213,0 +170786197636,213,0 +170786197684,213,0 +170786197733,213,0 +170786197781,213,0 +170786197829,213,0 +170786197877,213,0 +170786197924,214,0 +170786197972,213,0 +170786198020,213,0 +170786198068,214,0 +170786198116,214,0 +170786198164,214,0 +170786198212,214,0 +170786198260,214,0 +170786198307,214,0 +170786198355,213,0 +170786198403,213,0 +170786198453,213,0 +170786198500,213,0 +170786198548,213,0 +170786198596,213,0 +170786198644,213,0 +170786198692,213,0 +170786198742,213,0 +170786198790,213,0 +170786198837,213,0 +170786198885,213,0 +170786198933,213,0 +170786198981,214,0 +170786199029,214,0 +170786199077,214,0 +170786199125,214,0 +170786199173,214,0 +170786199221,214,0 +170786199270,213,0 +170786199318,213,0 +170786199366,213,0 +170786199414,213,0 +170786199462,213,0 +170786199512,213,0 +170786199560,213,0 +170786199608,213,0 +170786199655,213,0 +170786199703,213,0 +170786199751,214,0 +170786199799,214,0 +170786199847,214,0 +170786199895,214,0 +170786199943,213,0 +170786199991,213,0 +170786200039,214,0 +170786200089,214,0 +170786200136,214,0 +170786200184,213,0 +170786200234,213,0 +170786200282,213,0 +170786200330,213,0 +170786200378,213,0 +170786200427,213,0 +170786200475,213,0 +170786200525,213,0 +170786200573,213,0 +170786200621,214,0 +170786200670,214,0 +170786200718,214,0 +170786200767,214,0 +170786200817,214,0 +170786200865,214,0 +170786200913,214,0 +170786200961,214,0 +170786201009,214,0 +170786201056,214,0 +170786201106,213,0 +170786201154,213,0 +170786201202,213,0 +170786201251,213,0 +170786201299,213,0 +170786201347,214,0 +170786201395,214,0 +170786201443,214,0 +170786201491,214,0 +170786201540,214,0 +170786201588,214,0 +170786201638,214,0 +170786201686,214,0 +170786201735,214,0 +170786201783,214,0 +170786201831,214,0 +170786201879,214,0 +170786201927,214,0 +170786201975,214,0 +170786202023,213,0 +170786202071,213,0 +170786202119,213,0 +170786202167,213,0 +170786202216,213,0 +170786202264,213,0 +170786202312,213,0 +170786202360,213,0 +170786202408,213,0 +170786202456,213,0 +170786202506,214,0 +170786202553,214,0 +170786202601,214,0 +170786202651,214,0 +170786202701,214,0 +170786202750,214,0 +170786202798,214,0 +170786202846,214,0 +170786202894,214,0 +170786202943,213,0 +170786202991,212,0 +170786203039,213,0 +170786203087,213,0 +170786203137,213,0 +170786203185,213,0 +170786203233,213,0 +170786203281,213,0 +170786203330,213,0 +170786203378,213,0 +170786203428,213,0 +170786203476,213,0 +170786203525,213,0 +170786203573,213,0 +170786203621,214,0 +170786203669,213,0 +170786203718,214,0 +170786203766,213,0 +170786203816,213,0 +170786203864,213,0 +170786203912,212,0 +170786203960,213,0 +170786204008,213,0 +170786204056,213,0 +170786204104,212,0 +170786204152,213,0 +170786204200,213,0 +170786204248,213,0 +170786204295,213,0 +170786204345,213,0 +170786204393,213,0 +170786204442,213,0 +170786204492,213,0 +170786204540,213,0 +170786204589,213,0 +170786204639,213,0 +170786204689,213,0 +170786204737,213,0 +170786204786,214,0 +170786204836,213,0 +170786204884,213,0 +170786204933,213,0 +170786204981,213,0 +170786205029,213,0 +170786205077,213,0 +170786205125,213,0 +170786205174,213,0 +170786205224,213,0 +170786205272,213,0 +170786205321,213,0 +170786205369,213,0 +170786205417,213,0 +170786205465,213,0 +170786205513,213,0 +170786205563,213,0 +170786205611,213,0 +170786205659,214,0 +170786205708,214,0 +170786205757,213,0 +170786205806,213,0 +170786205855,213,0 +170786205905,213,0 +170786205953,213,0 +170786206000,213,0 +170786206049,213,0 +170786206097,213,0 +170786206144,213,0 +170786206192,213,0 +170786206240,213,0 +170786206290,213,0 +170786206338,213,0 +170786206386,213,0 +170786206435,214,0 +170786206485,214,0 +170786206533,213,0 +170786206581,214,0 +170786206629,214,0 +170786206678,213,0 +170786206728,213,0 +170786206777,213,0 +170786206825,213,0 +170786206875,213,0 +170786206923,213,0 +170786206972,213,0 +170786207022,213,0 +170786207070,213,0 +170786207118,213,0 +170786207167,213,0 +170786207215,213,0 +170786207263,213,0 +170786207313,214,0 +170786207362,213,0 +170786207410,214,0 +170786207458,213,0 +170786207506,213,0 +170786207554,214,0 +170786207602,213,0 +170786207650,213,0 +170786207697,213,0 +170786207745,213,0 +170786207793,213,0 +170786207841,213,0 +170786207889,213,0 +170786207936,213,0 +170786207984,213,0 +170786208032,213,0 +170786208080,213,0 +170786208130,213,0 +170786208178,213,0 +170786208225,213,0 +170786208273,214,0 +170786208323,214,0 +170786208372,214,0 +170786208420,214,0 +170786208468,214,0 +170786208518,213,0 +170786208566,213,0 +170786208614,213,0 +170786208661,213,0 +170786208711,213,0 +170786208761,213,0 +170786208810,213,0 +170786208858,213,0 +170786208906,213,0 +170786208956,213,0 +170786209003,213,0 +170786209051,213,0 +170786209099,213,0 +170786209147,214,0 +170786209197,214,0 +170786209245,214,0 +170786209293,214,0 +170786209341,214,0 +170786209390,214,0 +170786209438,213,0 +170786209486,213,0 +170786209535,213,0 +170786209583,213,0 +170786209631,213,0 +170786209679,213,0 +170786209729,213,0 +170786209777,213,0 +170786209826,213,0 +170786209876,213,0 +170786209924,213,0 +170786209971,213,0 +170786210019,214,0 +170786210067,214,0 +170786210115,214,0 +170786210164,214,0 +170786210212,214,0 +170786210260,214,0 +170786210308,214,0 +170786210358,213,0 +170786210406,213,0 +170786210454,213,0 +170786210501,213,0 +170786210549,213,0 +170786210597,213,0 +170786210645,213,0 +170786210693,213,0 +170786210741,213,0 +170786210791,213,0 +170786210839,213,0 +170786210887,213,0 +170786210936,213,0 +170786210986,214,0 +170786211034,214,0 +170786211081,214,0 +170786211129,214,0 +170786211177,214,0 +170786211225,213,0 +170786211275,214,0 +170786211324,213,0 +170786211372,213,0 +170786211420,213,0 +170786211468,213,0 +170786211516,213,0 +170786211564,213,0 +170786211612,213,0 +170786211661,213,0 +170786211709,213,0 +170786211757,214,0 +170786211805,214,0 +170786211855,213,0 +170786211903,214,0 +170786211951,214,0 +170786211998,214,0 +170786212046,214,0 +170786212094,214,0 +170786212142,214,0 +170786212190,214,0 +170786212238,213,0 +170786212286,213,0 +170786212333,213,0 +170786212381,213,0 +170786212429,213,0 +170786212477,213,0 +170786212525,213,0 +170786212572,213,0 +170786212620,213,0 +170786212668,213,0 +170786212716,213,0 +170786212764,214,0 +170786212811,214,0 +170786212861,214,0 +170786212909,213,0 +170786212958,214,0 +170786213006,214,0 +170786213056,214,0 +170786213105,214,0 +170786213155,213,0 +170786213203,213,0 +170786213252,213,0 +170786213302,213,0 +170786213351,213,0 +170786213399,213,0 +170786213447,213,0 +170786213496,213,0 +170786213544,213,0 +170786213592,213,0 +170786213642,213,0 +170786213691,213,0 +170786213739,213,0 +170786213789,213,0 +170786213836,214,0 +170786213886,214,0 +170786213935,213,0 +170786213985,214,0 +170786214033,214,0 +170786214081,213,0 +170786214129,213,0 +170786214178,213,0 +170786214226,213,0 +170786214274,212,0 +170786214323,213,0 +170786214373,213,0 +170786214421,213,0 +170786214469,213,0 +170786214516,213,0 +170786214566,213,0 +170786214616,213,0 +170786214663,213,0 +170786214711,213,0 +170786214759,214,0 +170786214807,213,0 +170786214857,214,0 +170786214906,214,0 +170786214956,214,0 +170786215005,213,0 +170786215053,212,0 +170786215101,213,0 +170786215149,212,0 +170786215197,213,0 +170786215246,213,0 +170786215294,213,0 +170786215342,213,0 +170786215392,213,0 +170786215440,213,0 +170786215488,213,0 +170786215537,213,0 +170786215585,213,0 +170786215635,214,0 +170786215684,213,0 +170786215732,214,0 +170786215780,213,0 +170786215828,214,0 +170786215876,214,0 +170786215924,213,0 +170786215973,213,0 +170786216021,213,0 +170786216070,213,0 +170786216118,213,0 +170786216168,213,0 +170786216216,213,0 +170786216265,213,0 +170786216315,213,0 +170786216364,213,0 +170786216412,213,0 +170786216460,213,0 +170786216508,214,0 +170786216557,213,0 +170786216605,213,0 +170786216655,214,0 +170786216703,214,0 +170786216752,214,0 +170786216802,213,0 +170786216850,213,0 +170786216898,213,0 +170786216945,213,0 +170786216995,213,0 +170786217043,213,0 +170786217091,213,0 +170786217139,213,0 +170786217186,213,0 +170786217234,213,0 +170786217282,213,0 +170786217330,213,0 +170786217378,213,0 +170786217426,213,0 +170786217474,213,0 +170786217523,213,0 +170786217571,213,0 +170786217619,213,0 +170786217669,213,0 +170786217717,214,0 +170786217766,213,0 +170786217814,213,0 +170786217862,213,0 +170786217910,212,0 +170786217957,213,0 +170786218005,213,0 +170786218053,213,0 +170786218101,213,0 +170786218149,213,0 +170786218197,213,0 +170786218245,213,0 +170786218293,213,0 +170786218342,213,0 +170786218390,213,0 +170786218438,213,0 +170786218486,213,0 +170786218534,213,0 +170786218583,213,0 +170786218631,213,0 +170786218679,214,0 +170786218728,213,0 +170786218778,213,0 +170786218826,213,0 +170786218874,213,0 +170786218922,213,0 +170786218970,213,0 +170786219017,213,0 +170786219065,213,0 +170786219113,213,0 +170786219163,213,0 +170786219212,213,0 +170786219262,213,0 +170786219310,213,0 +170786219358,213,0 +170786219407,214,0 +170786219455,214,0 +170786219503,214,0 +170786219553,214,0 +170786219600,214,0 +170786219648,213,0 +170786219696,213,0 +170786219744,213,0 +170786219794,213,0 +170786219842,213,0 +170786219891,213,0 +170786219939,213,0 +170786219988,213,0 +170786220038,213,0 +170786220086,213,0 +170786220133,213,0 +170786220183,213,0 +170786220232,213,0 +170786220280,213,0 +170786220328,214,0 +170786220376,214,0 +170786220424,214,0 +170786220472,214,0 +170786220520,214,0 +170786220567,213,0 +170786220615,213,0 +170786220665,213,0 +170786220714,213,0 +170786220762,213,0 +170786220812,213,0 +170786220861,213,0 +170786220911,213,0 +170786220958,213,0 +170786221006,213,0 +170786221056,214,0 +170786221105,214,0 +170786221153,214,0 +170786221203,214,0 +170786221251,214,0 +170786221299,214,0 +170786221347,214,0 +170786221394,214,0 +170786221442,213,0 +170786221490,213,0 +170786221540,213,0 +170786221587,213,0 +170786221635,213,0 +170786221685,213,0 +170786221733,213,0 +170786221781,213,0 +170786221830,213,0 +170786221878,213,0 +170786221926,214,0 +170786221974,214,0 +170786222022,213,0 +170786222070,214,0 +170786222118,214,0 +170786222167,214,0 +170786222215,214,0 +170786222264,214,0 +170786222314,214,0 +170786222362,214,0 +170786222409,213,0 +170786222457,213,0 +170786222507,213,0 +170786222555,213,0 +170786222604,213,0 +170786222652,213,0 +170786222700,213,0 +170786222748,214,0 +170786222796,213,0 +170786222844,214,0 +170786222892,214,0 +170786222940,214,0 +170786222987,214,0 +170786223037,214,0 +170786223086,214,0 +170786223134,214,0 +170786223182,214,0 +170786223230,214,0 +170786223278,214,0 +170786223328,213,0 +170786223375,213,0 +170786223423,213,0 +170786223471,213,0 +170786223519,213,0 +170786223568,213,0 +170786223616,213,0 +170786223664,213,0 +170786223712,213,0 +170786223759,213,0 +170786223809,213,0 +170786223856,213,0 +170786223904,213,0 +170786223952,214,0 +170786224000,214,0 +170786224048,214,0 +170786224097,214,0 +170786224147,214,0 +170786224195,214,0 +170786224244,213,0 +170786224292,213,0 +170786224340,213,0 +170786224388,213,0 +170786224437,213,0 +170786224485,213,0 +170786224533,213,0 +170786224581,213,0 +170786224629,213,0 +170786224677,213,0 +170786224725,214,0 +170786224774,213,0 +170786224822,214,0 +170786224870,214,0 +170786224918,214,0 +170786224966,214,0 +170786225015,214,0 +170786225063,214,0 +170786225112,214,0 +170786225160,214,0 +170786225210,213,0 +170786225258,213,0 +170786225306,213,0 +170786225353,213,0 +170786225401,213,0 +170786225449,213,0 +170786225499,213,0 +170786225548,213,0 +170786225598,213,0 +170786225646,214,0 +170786225694,214,0 +170786225743,214,0 +170786225791,214,0 +170786225839,214,0 +170786225887,214,0 +170786225935,214,0 +170786225983,214,0 +170786226032,214,0 +170786226080,214,0 +170786226129,213,0 +170786226177,213,0 +170786226227,213,0 +170786226275,213,0 +170786226322,213,0 +170786226370,213,0 +170786226418,213,0 +170786226466,213,0 +170786226514,213,0 +170786226562,213,0 +170786226609,214,0 +170786226657,214,0 +170786226705,214,0 +170786226753,214,0 +170786226801,214,0 +170786226849,214,0 +170786226897,214,0 +170786226945,214,0 +170786226993,214,0 +170786227040,213,0 +170786227090,213,0 +170786227138,213,0 +170786227185,213,0 +170786227233,213,0 +170786227281,213,0 +170786227329,213,0 +170786227377,213,0 +170786227425,213,0 +170786227474,213,0 +170786227522,213,0 +170786227570,213,0 +170786227618,214,0 +170786227665,214,0 +170786227715,214,0 +170786227763,214,0 +170786227811,214,0 +170786227858,214,0 +170786227906,214,0 +170786227956,213,0 +170786228004,213,0 +170786228053,213,0 +170786228101,213,0 +170786228149,213,0 +170786228198,213,0 +170786228246,213,0 +170786228294,213,0 +170786228342,213,0 +170786228390,213,0 +170786228438,213,0 +170786228485,213,0 +170786228533,213,0 +170786228581,213,0 +170786228630,214,0 +170786228678,214,0 +170786228726,214,0 +170786228774,214,0 +170786228823,214,0 +170786228871,213,0 +170786228921,213,0 +170786228968,213,0 +170786229016,213,0 +170786229066,213,0 +170786229113,213,0 +170786229161,213,0 +170786229209,213,0 +170786229257,213,0 +170786229305,213,0 +170786229353,213,0 +170786229401,213,0 +170786229448,213,0 +170786229496,213,0 +170786229544,213,0 +170786229592,213,0 +170786229639,214,0 +170786229687,214,0 +170786229735,214,0 +170786229783,214,0 +170786229831,213,0 +170786229878,213,0 +170786229926,213,0 +170786229974,213,0 +170786230024,213,0 +170786230073,213,0 +170786230123,213,0 +170786230171,213,0 +170786230220,213,0 +170786230268,213,0 +170786230316,213,0 +170786230364,213,0 +170786230413,214,0 +170786230461,213,0 +170786230511,213,0 +170786230558,213,0 +170786230606,214,0 +170786230654,214,0 +170786230702,214,0 +170786230751,213,0 +170786230799,212,0 +170786230849,213,0 +170786230898,213,0 +170786230946,213,0 +170786230994,213,0 +170786231042,213,0 +170786231090,213,0 +170786231139,213,0 +170786231187,213,0 +170786231235,213,0 +170786231283,213,0 +170786231331,213,0 +170786231379,213,0 +170786231427,214,0 +170786231475,213,0 +170786231523,214,0 +170786231570,213,0 +170786231618,214,0 +170786231668,213,0 +170786231717,213,0 +170786231765,213,0 +170786231813,213,0 +170786231861,213,0 +170786231909,213,0 +170786231957,213,0 +170786232005,213,0 +170786232054,213,0 +170786232102,213,0 +170786232150,213,0 +170786232200,213,0 +170786232247,213,0 +170786232295,213,0 +170786232345,213,0 +170786232394,213,0 +170786232444,213,0 +170786232491,213,0 +170786232541,214,0 +170786232590,213,0 +170786232640,213,0 +170786232688,213,0 +170786232736,213,0 +170786232785,213,0 +170786232835,213,0 +170786232883,213,0 +170786232932,213,0 +170786232981,213,0 +170786233031,213,0 +170786233079,213,0 +170786233127,213,0 +170786233175,213,0 +170786233223,214,0 +170786233272,214,0 +170786233320,214,0 +170786233369,214,0 +170786233419,214,0 +170786233467,214,0 +170786233515,213,0 +170786233563,213,0 +170786233611,213,0 +170786233660,213,0 +170786233708,213,0 +170786233756,213,0 +170786233804,213,0 +170786233852,213,0 +170786233899,213,0 +170786233947,213,0 +170786233997,213,0 +170786234046,213,0 +170786234096,213,0 +170786234144,213,0 +170786234192,213,0 +170786234241,214,0 +170786234289,214,0 +170786234337,214,0 +170786234385,213,0 +170786234434,213,0 +170786234482,213,0 +170786234532,212,0 +170786234580,213,0 +170786234629,213,0 +170786234677,213,0 +170786234725,213,0 +170786234773,213,0 +170786234822,213,0 +170786234870,213,0 +170786234918,213,0 +170786234968,213,0 +170786235016,213,0 +170786235063,213,0 +170786235111,213,0 +170786235159,214,0 +170786235207,213,0 +170786235254,214,0 +170786235302,214,0 +170786235352,213,0 +170786235399,212,0 +170786235447,213,0 +170786235497,213,0 +170786235545,213,0 +170786235592,213,0 +170786235642,213,0 +170786235690,213,0 +170786235737,213,0 +170786235785,213,0 +170786235833,213,0 +170786235881,213,0 +170786235929,213,0 +170786235976,214,0 +170786236024,213,0 +170786236072,214,0 +170786236120,214,0 +170786236167,214,0 +170786236215,214,0 +170786236263,214,0 +170786236311,213,0 +170786236360,212,0 +170786236408,213,0 +170786236456,213,0 +170786236505,213,0 +170786236553,213,0 +170786236601,213,0 +170786236649,213,0 +170786236697,213,0 +170786236746,213,0 +170786236794,213,0 +170786236842,213,0 +170786236890,214,0 +170786236937,213,0 +170786236987,213,0 +170786237035,214,0 +170786237083,214,0 +170786237132,214,0 +170786237181,213,0 +170786237229,213,0 +170786237277,213,0 +170786237325,213,0 +170786237373,213,0 +170786237420,213,0 +170786237468,213,0 +170786237516,213,0 +170786237564,213,0 +170786237612,213,0 +170786237660,213,0 +170786237709,213,0 +170786237758,213,0 +170786237806,213,0 +170786237856,213,0 +170786237904,213,0 +170786237953,213,0 +170786238002,214,0 +170786238050,214,0 +170786238098,213,0 +170786238146,213,0 +170786238194,213,0 +170786238242,213,0 +170786238292,213,0 +170786238339,213,0 +170786238387,213,0 +170786238435,213,0 +170786238483,213,0 +170786238532,213,0 +170786238580,213,0 +170786238628,213,0 +170786238678,213,0 +170786238725,213,0 +170786238773,213,0 +170786238823,213,0 +170786238872,214,0 +170786238920,214,0 +170786238968,213,0 +170786239016,213,0 +170786239064,213,0 +170786239112,213,0 +170786239160,212,0 +170786239209,213,0 +170786239259,213,0 +170786239307,213,0 +170786239356,213,0 +170786239404,213,0 +170786239452,213,0 +170786239500,213,0 +170786239548,213,0 +170786239597,213,0 +170786239645,213,0 +170786239693,213,0 +170786239741,213,0 +170786239791,214,0 +170786239839,214,0 +170786239888,213,0 +170786239936,214,0 +170786239985,213,0 +170786240033,213,0 +170786240083,213,0 +170786240131,213,0 +170786240180,213,0 +170786240228,213,0 +170786240278,213,0 +170786240327,213,0 +170786240376,213,0 +170786240424,213,0 +170786240472,213,0 +170786240522,213,0 +170786240570,213,0 +170786240619,213,0 +170786240668,213,0 +170786240718,213,0 +170786240767,213,0 +170786240815,214,0 +170786240863,214,0 +170786240913,213,0 +170786240961,213,0 +170786241010,213,0 +170786241058,213,0 +170786241106,213,0 +170786241156,213,0 +170786241203,213,0 +170786241251,213,0 +170786241299,213,0 +170786241347,213,0 +170786241395,213,0 +170786241445,213,0 +170786241493,213,0 +170786241541,213,0 +170786241589,213,0 +170786241637,214,0 +170786241684,214,0 +170786241732,213,0 +170786241780,213,0 +170786241828,213,0 +170786241876,213,0 +170786241926,213,0 +170786241974,213,0 +170786242023,213,0 +170786242073,213,0 +170786242121,213,0 +170786242170,213,0 +170786242219,214,0 +170786242267,213,0 +170786242317,213,0 +170786242365,214,0 +170786242414,214,0 +170786242464,214,0 +170786242512,214,0 +170786242560,214,0 +170786242608,214,0 +170786242655,214,0 +170786242703,214,0 +170786242751,213,0 +170786242799,213,0 +170786242849,213,0 +170786242897,213,0 +170786242946,214,0 +170786242994,213,0 +170786243042,213,0 +170786243091,213,0 +170786243139,214,0 +170786243187,214,0 +170786243235,214,0 +170786243283,214,0 +170786243332,214,0 +170786243380,214,0 +170786243428,214,0 +170786243476,214,0 +170786243524,214,0 +170786243572,214,0 +170786243621,213,0 +170786243669,213,0 +170786243717,213,0 +170786243767,213,0 +170786243816,213,0 +170786243864,213,0 +170786243912,213,0 +170786243961,213,0 +170786244009,213,0 +170786244057,213,0 +170786244105,214,0 +170786244153,214,0 +170786244203,214,0 +170786244251,214,0 +170786244298,214,0 +170786244346,214,0 +170786244396,214,0 +170786244444,214,0 +170786244492,214,0 +170786244539,214,0 +170786244587,213,0 +170786244635,213,0 +170786244683,213,0 +170786244733,213,0 +170786244782,213,0 +170786244832,213,0 +170786244879,213,0 +170786244927,213,0 +170786244977,213,0 +170786245025,213,0 +170786245073,213,0 +170786245121,213,0 +170786245168,213,0 +170786245218,213,0 +170786245266,213,0 +170786245315,213,0 +170786245363,214,0 +170786245413,214,0 +170786245462,214,0 +170786245511,213,0 +170786245559,213,0 +170786245607,213,0 +170786245657,213,0 +170786245705,213,0 +170786245754,213,0 +170786245802,213,0 +170786245851,213,0 +170786245899,213,0 +170786245949,213,0 +170786245997,213,0 +170786246045,213,0 +170786246094,213,0 +170786246142,213,0 +170786246191,213,0 +170786246241,214,0 +170786246289,213,0 +170786246337,214,0 +170786246385,214,0 +170786246433,213,0 +170786246482,213,0 +170786246530,213,0 +170786246578,213,0 +170786246626,213,0 +170786246674,213,0 +170786246722,213,0 +170786246771,213,0 +170786246821,213,0 +170786246868,213,0 +170786246918,213,0 +170786246967,213,0 +170786247017,213,0 +170786247066,213,0 +170786247114,213,0 +170786247162,214,0 +170786247211,214,0 +170786247259,213,0 +170786247307,214,0 +170786247357,213,0 +170786247405,213,0 +170786247452,213,0 +170786247502,213,0 +170786247551,213,0 +170786247601,213,0 +170786247649,213,0 +170786247698,213,0 +170786247746,213,0 +170786247794,213,0 +170786247842,213,0 +170786247892,213,0 +170786247940,213,0 +170786247988,213,0 +170786248036,213,0 +170786248085,213,0 +170786248133,213,0 +170786248181,213,0 +170786248229,213,0 +170786248277,213,0 +170786248326,213,0 +170786248374,213,0 +170786248422,213,0 +170786248470,213,0 +170786248519,213,0 +170786248567,213,0 +170786248615,212,0 +170786248663,213,0 +170786248711,213,0 +170786248759,213,0 +170786248807,213,0 +170786248857,213,0 +170786248906,213,0 +170786248954,213,0 +170786249003,213,0 +170786249051,213,0 +170786249101,213,0 +170786249149,213,0 +170786249197,214,0 +170786249245,213,0 +170786249293,213,0 +170786249340,213,0 +170786249388,213,0 +170786249438,213,0 +170786249486,213,0 +170786249535,213,0 +170786249585,213,0 +170786249634,213,0 +170786249684,213,0 +170786249733,213,0 +170786249783,213,0 +170786249832,213,0 +170786249880,213,0 +170786249929,213,0 +170786249977,213,0 +170786250027,213,0 +170786250075,214,0 +170786250124,213,0 +170786250172,213,0 +170786250220,213,0 +170786250269,213,0 +170786250317,213,0 +170786250367,213,0 +170786250415,213,0 +170786250463,213,0 +170786250511,213,0 +170786250560,213,0 +170786250608,213,0 +170786250658,213,0 +170786250707,213,0 +170786250755,213,0 +170786250803,213,0 +170786250853,213,0 +170786250900,214,0 +170786250948,214,0 +170786250998,214,0 +170786251046,214,0 +170786251094,213,0 +170786251142,212,0 +170786251190,213,0 +170786251239,213,0 +170786251287,213,0 +170786251335,213,0 +170786251383,213,0 +170786251431,213,0 +170786251480,213,0 +170786251530,213,0 +170786251579,213,0 +170786251629,213,0 +170786251677,214,0 +170786251725,214,0 +170786251773,214,0 +170786251821,214,0 +170786251868,214,0 +170786251916,214,0 +170786251964,214,0 +170786252012,213,0 +170786252062,213,0 +170786252110,213,0 +170786252158,213,0 +170786252207,213,0 +170786252255,213,0 +170786252305,213,0 +170786252354,213,0 +170786252404,213,0 +170786252453,213,0 +170786252502,213,0 +170786252550,213,0 +170786252598,214,0 +170786252648,213,0 +170786252697,214,0 +170786252747,214,0 +170786252795,214,0 +170786252844,214,0 +170786252892,213,0 +170786252940,213,0 +170786252989,213,0 +170786253037,213,0 +170786253087,213,0 +170786253135,213,0 +170786253182,213,0 +170786253230,213,0 +170786253278,213,0 +170786253327,213,0 +170786253377,213,0 +170786253425,213,0 +170786253472,213,0 +170786253520,214,0 +170786253568,214,0 +170786253616,214,0 +170786253664,214,0 +170786253711,214,0 +170786253759,214,0 +170786253807,214,0 +170786253856,213,0 +170786253904,213,0 +170786253952,213,0 +170786254000,213,0 +170786254048,213,0 +170786254096,213,0 +170786254143,213,0 +170786254191,213,0 +170786254239,213,0 +170786254287,213,0 +170786254335,213,0 +170786254383,214,0 +170786254432,213,0 +170786254480,213,0 +170786254530,214,0 +170786254578,214,0 +170786254626,214,0 +170786254674,214,0 +170786254722,214,0 +170786254771,213,0 +170786254821,213,0 +170786254868,213,0 +170786254916,213,0 +170786254964,213,0 +170786255012,213,0 +170786255060,213,0 +170786255109,213,0 +170786255159,213,0 +170786255206,213,0 +170786255254,213,0 +170786255302,214,0 +170786255350,213,0 +170786255398,214,0 +170786255445,214,0 +170786255493,214,0 +170786255541,214,0 +170786255589,214,0 +170786255637,214,0 +170786255684,213,0 +170786255734,213,0 +170786255782,213,0 +170786255831,213,0 +170786255879,213,0 +170786255927,213,0 +170786255975,213,0 +170786256022,213,0 +170786256070,213,0 +170786256118,213,0 +170786256166,213,0 +170786256214,213,0 +170786256262,213,0 +170786256309,213,0 +170786256357,213,0 +170786256405,213,0 +170786256453,214,0 +170786256501,214,0 +170786256550,214,0 +170786256598,213,0 +170786256646,213,0 +170786256695,213,0 +170786256743,213,0 +170786256791,213,0 +170786256840,213,0 +170786256888,213,0 +170786256938,213,0 +170786256987,213,0 +170786257037,213,0 +170786257085,213,0 +170786257134,213,0 +170786257182,213,0 +170786257230,213,0 +170786257278,214,0 +170786257326,213,0 +170786257375,213,0 +170786257423,214,0 +170786257471,214,0 +170786257519,213,0 +170786257567,213,0 +170786257614,213,0 +170786257662,213,0 +170786257710,213,0 +170786257758,213,0 +170786257807,213,0 +170786257855,213,0 +170786257903,213,0 +170786257951,213,0 +170786258000,213,0 +170786258048,213,0 +170786258098,213,0 +170786258146,213,0 +170786258195,214,0 +170786258243,214,0 +170786258291,214,0 +170786258339,214,0 +170786258387,213,0 +170786258436,214,0 +170786258484,213,0 +170786258532,213,0 +170786258581,213,0 +170786258629,213,0 +170786258677,213,0 +170786258725,213,0 +170786258773,213,0 +170786258822,213,0 +170786258870,213,0 +170786258918,213,0 +170786258968,213,0 +170786259015,214,0 +170786259065,214,0 +170786259114,214,0 +170786259164,214,0 +170786259212,214,0 +170786259260,214,0 +170786259308,214,0 +170786259357,213,0 +170786259405,213,0 +170786259453,213,0 +170786259501,213,0 +170786259550,213,0 +170786259600,213,0 +170786259649,213,0 +170786259697,213,0 +170786259745,213,0 +170786259793,213,0 +170786259841,213,0 +170786259890,213,0 +170786259938,213,0 +170786259986,213,0 +170786260034,213,0 +170786260082,214,0 +170786260130,213,0 +170786260178,214,0 +170786260225,214,0 +170786260273,214,0 +170786260321,213,0 +170786260371,213,0 +170786260419,212,0 +170786260466,213,0 +170786260516,213,0 +170786260564,213,0 +170786260612,213,0 +170786260659,213,0 +170786260709,213,0 +170786260757,213,0 +170786260805,213,0 +170786260853,213,0 +170786260901,213,0 +170786260948,214,0 +170786260998,213,0 +170786261046,213,0 +170786261095,214,0 +170786261143,214,0 +170786261191,214,0 +170786261239,213,0 +170786261287,213,0 +170786261337,213,0 +170786261384,213,0 +170786261432,213,0 +170786261480,213,0 +170786261530,213,0 +170786261579,213,0 +170786261627,213,0 +170786261675,213,0 +170786261723,213,0 +170786261771,213,0 +170786261819,213,0 +170786261866,213,0 +170786261916,213,0 +170786261965,214,0 +170786262013,214,0 +170786262061,213,0 +170786262108,213,0 +170786262156,213,0 +170786262204,213,0 +170786262252,213,0 +170786262300,213,0 +170786262348,213,0 +170786262397,213,0 +170786262445,213,0 +170786262493,213,0 +170786262541,213,0 +170786262591,213,0 +170786262638,213,0 +170786262688,213,0 +170786262736,213,0 +170786262785,214,0 +170786262833,213,0 +170786262883,214,0 +170786262930,214,0 +170786262978,214,0 +170786263026,214,0 +170786263076,213,0 +170786263124,213,0 +170786263172,213,0 +170786263219,213,0 +170786263269,213,0 +170786263317,213,0 +170786263365,213,0 +170786263413,213,0 +170786263461,213,0 +170786263510,213,0 +170786263558,213,0 +170786263608,214,0 +170786263656,214,0 +170786263703,214,0 +170786263751,214,0 +170786263799,214,0 +170786263847,214,0 +170786263895,214,0 +170786263943,214,0 +170786263992,213,0 +170786264040,213,0 +170786264090,213,0 +170786264138,213,0 +170786264187,213,0 +170786264237,213,0 +170786264286,213,0 +170786264334,213,0 +170786264382,213,0 +170786264430,213,0 +170786264478,213,0 +170786264526,214,0 +170786264574,214,0 +170786264623,214,0 +170786264671,214,0 +170786264719,214,0 +170786264769,214,0 +170786264817,214,0 +170786264866,214,0 +170786264916,213,0 +170786264965,213,0 +170786265013,213,0 +170786265063,213,0 +170786265110,213,0 +170786265158,213,0 +170786265206,213,0 +170786265256,213,0 +170786265304,213,0 +170786265352,214,0 +170786265401,213,0 +170786265449,214,0 +170786265499,213,0 +170786265548,214,0 +170786265596,214,0 +170786265644,214,0 +170786265693,214,0 +170786265743,213,0 +170786265792,213,0 +170786265842,213,0 +170786265890,212,0 +170786265938,212,0 +170786265986,212,0 +170786266034,212,0 +170786266082,213,0 +170786266130,212,0 +170786266177,213,0 +170786266225,213,0 +170786266273,213,0 +170786266323,213,0 +170786266371,213,0 +170786266419,213,0 +170786266467,213,0 +170786266516,213,0 +170786266564,213,0 +170786266614,213,0 +170786266661,213,0 +170786266709,214,0 +170786266757,213,0 +170786266805,212,0 +170786266853,212,0 +170786266901,212,0 +170786266950,213,0 +170786266998,213,0 +170786267046,213,0 +170786267094,213,0 +170786267142,213,0 +170786267190,213,0 +170786267240,213,0 +170786267287,213,0 +170786267335,213,0 +170786267383,213,0 +170786267431,213,0 +170786267479,213,0 +170786267527,213,0 +170786267575,213,0 +170786267623,213,0 +170786267671,213,0 +170786267720,213,0 +170786267768,214,0 +170786267816,214,0 +170786267866,214,0 +170786267914,214,0 +170786267963,214,0 +170786268013,214,0 +170786268063,214,0 +170786268110,214,0 +170786268158,213,0 +170786268208,213,0 +170786268257,213,0 +170786268307,213,0 +170786268356,213,0 +170786268404,213,0 +170786268454,213,0 +170786268503,213,0 +170786268551,213,0 +170786268600,213,0 +170786268648,213,0 +170786268696,213,0 +170786268744,214,0 +170786268792,214,0 +170786268840,213,0 +170786268888,213,0 +170786268937,213,0 +170786268987,214,0 +170786269036,213,0 +170786269084,213,0 +170786269132,213,0 +170786269182,213,0 +170786269230,213,0 +170786269278,213,0 +170786269327,213,0 +170786269376,213,0 +170786269424,213,0 +170786269472,213,0 +170786269522,213,0 +170786269569,213,0 +170786269619,213,0 +170786269667,213,0 +170786269715,213,0 +170786269764,214,0 +170786269814,214,0 +170786269863,214,0 +170786269913,214,0 +170786269961,214,0 +170786270010,213,0 +170786270058,213,0 +170786270106,213,0 +170786270155,213,0 +170786270205,213,0 +170786270253,213,0 +170786270301,213,0 +170786270349,213,0 +170786270398,213,0 +170786270446,213,0 +170786270496,213,0 +170786270544,213,0 +170786270591,213,0 +170786270641,213,0 +170786270689,213,0 +170786270737,213,0 +170786270785,214,0 +170786270833,213,0 +170786270880,214,0 +170786270928,213,0 +170786270976,213,0 +170786271026,212,0 +170786271074,212,0 +170786271121,213,0 +170786271169,213,0 +170786271217,213,0 +170786271267,213,0 +170786271315,213,0 +170786271363,213,0 +170786271410,213,0 +170786271458,213,0 +170786271506,213,0 +170786271556,213,0 +170786271604,213,0 +170786271652,213,0 +170786271701,214,0 +170786271749,213,0 +170786271797,213,0 +170786271845,213,0 +170786271894,213,0 +170786271944,213,0 +170786271992,212,0 +170786272039,212,0 +170786272087,213,0 +170786272137,213,0 +170786272186,213,0 +170786272236,213,0 +170786272284,213,0 +170786272333,213,0 +170786272383,213,0 +170786272432,213,0 +170786272480,213,0 +170786272528,214,0 +170786272576,213,0 +170786272623,213,0 +170786272673,214,0 +170786272721,213,0 +170786272769,213,0 +170786272818,213,0 +170786272866,212,0 +170786272916,213,0 +170786272965,213,0 +170786273013,213,0 +170786273061,213,0 +170786273111,213,0 +170786273159,213,0 +170786273208,213,0 +170786273258,213,0 +170786273305,213,0 +170786273353,213,0 +170786273401,213,0 +170786273449,213,0 +170786273497,213,0 +170786273545,214,0 +170786273593,213,0 +170786273642,213,0 +170786273690,213,0 +170786273738,213,0 +170786273786,212,0 +170786273834,212,0 +170786273883,213,0 +170786273931,213,0 +170786273979,213,0 +170786274027,213,0 +170786274075,213,0 +170786274123,213,0 +170786274171,213,0 +170786274219,213,0 +170786274267,213,0 +170786274314,213,0 +170786274362,213,0 +170786274410,213,0 +170786274460,213,0 +170786274508,213,0 +170786274556,213,0 +170786274603,213,0 +170786274651,213,0 +170786274699,212,0 +170786274747,212,0 +170786274795,212,0 +170786274843,213,0 +170786274891,213,0 +170786274939,213,0 +170786274987,213,0 +170786275035,213,0 +170786275083,213,0 +170786275131,213,0 +170786275179,213,0 +170786275227,213,0 +170786275274,213,0 +170786275324,213,0 +170786275372,213,0 +170786275420,213,0 +170786275469,213,0 +170786275517,213,0 +170786275567,213,0 +170786275615,213,0 +170786275663,213,0 +170786275712,213,0 +170786275760,213,0 +170786275809,213,0 +170786275857,213,0 +170786275905,213,0 +170786275955,213,0 +170786276004,213,0 +170786276052,213,0 +170786276100,213,0 +170786276148,213,0 +170786276196,213,0 +170786276244,214,0 +170786276292,213,0 +170786276340,213,0 +170786276388,214,0 +170786276437,214,0 +170786276487,213,0 +170786276536,213,0 +170786276584,213,0 +170786276632,213,0 +170786276680,213,0 +170786276729,213,0 +170786276777,213,0 +170786276825,213,0 +170786276873,213,0 +170786276923,213,0 +170786276971,213,0 +170786277019,213,0 +170786277067,213,0 +170786277115,213,0 +170786277164,214,0 +170786277212,213,0 +170786277260,214,0 +170786277308,214,0 +170786277357,214,0 +170786277405,213,0 +170786277453,213,0 +170786277501,213,0 +170786277551,213,0 +170786277600,213,0 +170786277648,213,0 +170786277697,213,0 +170786277747,213,0 +170786277795,213,0 +170786277843,213,0 +170786277892,213,0 +170786277940,213,0 +170786277988,213,0 +170786278036,213,0 +170786278085,214,0 +170786278133,214,0 +170786278183,214,0 +170786278232,214,0 +170786278280,214,0 +170786278328,214,0 +170786278376,213,0 +170786278425,212,0 +170786278473,213,0 +170786278521,213,0 +170786278569,213,0 +170786278619,213,0 +170786278667,213,0 +170786278714,213,0 +170786278762,213,0 +170786278810,213,0 +170786278860,213,0 +170786278909,213,0 +170786278957,213,0 +170786279005,214,0 +170786279053,214,0 +170786279101,214,0 +170786279149,214,0 +170786279198,213,0 +170786279246,214,0 +170786279296,213,0 +170786279345,213,0 +170786279393,213,0 +170786279441,213,0 +170786279489,213,0 +170786279538,213,0 +170786279586,213,0 +170786279634,213,0 +170786279683,213,0 +170786279731,213,0 +170786279781,213,0 +170786279830,213,0 +170786279878,213,0 +170786279926,213,0 +170786279974,213,0 +170786280021,214,0 +170786280069,214,0 +170786280117,213,0 +170786280165,213,0 +170786280213,213,0 +170786280261,213,0 +170786280309,212,0 +170786280357,213,0 +170786280405,213,0 +170786280453,212,0 +170786280500,213,0 +170786280548,213,0 +170786280596,213,0 +170786280644,213,0 +170786280692,213,0 +170786280740,213,0 +170786280787,213,0 +170786280835,213,0 +170786280883,213,0 +170786280931,213,0 +170786280981,213,0 +170786281029,213,0 +170786281077,213,0 +170786281126,214,0 +170786281174,213,0 +170786281222,213,0 +170786281270,212,0 +170786281318,213,0 +170786281365,213,0 +170786281413,213,0 +170786281461,213,0 +170786281509,213,0 +170786281557,213,0 +170786281605,213,0 +170786281653,213,0 +170786281702,213,0 +170786281750,213,0 +170786281799,214,0 +170786281847,214,0 +170786281895,213,0 +170786281945,214,0 +170786281993,213,0 +170786282041,213,0 +170786282090,213,0 +170786282138,212,0 +170786282186,213,0 +170786282235,213,0 +170786282283,213,0 +170786282333,213,0 +170786282382,213,0 +170786282432,213,0 +170786282481,213,0 +170786282531,213,0 +170786282579,213,0 +170786282627,213,0 +170786282675,213,0 +170786282722,213,0 +170786282772,213,0 +170786282820,214,0 +170786282868,214,0 +170786282916,213,0 +170786282964,214,0 +170786283011,213,0 +170786283059,213,0 +170786283107,213,0 +170786283155,213,0 +170786283203,213,0 +170786283251,213,0 +170786283300,213,0 +170786283348,213,0 +170786283397,213,0 +170786283445,213,0 +170786283493,213,0 +170786283543,213,0 +170786283592,214,0 +170786283640,213,0 +170786283688,214,0 +170786283736,213,0 +170786283783,213,0 +170786283831,214,0 +170786283881,214,0 +170786283929,213,0 +170786283977,213,0 +170786284025,213,0 +170786284073,213,0 +170786284121,213,0 +170786284170,213,0 +170786284218,213,0 +170786284266,213,0 +170786284314,213,0 +170786284362,213,0 +170786284410,213,0 +170786284457,213,0 +170786284507,214,0 +170786284555,214,0 +170786284603,214,0 +170786284651,214,0 +170786284700,214,0 +170786284748,214,0 +170786284798,214,0 +170786284846,213,0 +170786284894,213,0 +170786284941,213,0 +170786284989,213,0 +170786285037,213,0 +170786285085,213,0 +170786285133,213,0 +170786285180,213,0 +170786285228,213,0 +170786285276,213,0 +170786285324,213,0 +170786285372,214,0 +170786285420,214,0 +170786285467,214,0 +170786285515,214,0 +170786285565,214,0 +170786285614,214,0 +170786285662,214,0 +170786285710,214,0 +170786285758,213,0 +170786285806,213,0 +170786285855,213,0 +170786285903,213,0 +170786285951,213,0 +170786285999,213,0 +170786286047,213,0 +170786286094,214,0 +170786286144,213,0 +170786286192,214,0 +170786286240,214,0 +170786286287,214,0 +170786286335,214,0 +170786286383,214,0 +170786286433,214,0 +170786286481,214,0 +170786286530,214,0 +170786286578,214,0 +170786286626,214,0 +170786286674,214,0 +170786286723,213,0 +170786286771,213,0 +170786286819,213,0 +170786286867,213,0 +170786286915,213,0 +170786286963,213,0 +170786287012,214,0 +170786287060,213,0 +170786287108,213,0 +170786287156,213,0 +170786287206,213,0 +170786287254,214,0 +170786287301,214,0 +170786287349,214,0 +170786287399,214,0 +170786287447,214,0 +170786287495,214,0 +170786287542,214,0 +170786287590,213,0 +170786287638,213,0 +170786287686,213,0 +170786287734,212,0 +170786287782,213,0 +170786287830,212,0 +170786287879,213,0 +170786287927,213,0 +170786287975,213,0 +170786288025,213,0 +170786288073,213,0 +170786288122,213,0 +170786288170,213,0 +170786288218,213,0 +170786288266,213,0 +170786288315,213,0 +170786288363,213,0 +170786288411,213,0 +170786288460,213,0 +170786288510,213,0 +170786288558,213,0 +170786288607,213,0 +170786288655,212,0 +170786288705,212,0 +170786288754,213,0 +170786288802,213,0 +170786288851,213,0 +170786288899,213,0 +170786288947,213,0 +170786288995,213,0 +170786289043,213,0 +170786289090,213,0 +170786289140,213,0 +170786289188,213,0 +170786289236,213,0 +170786289285,213,0 +170786289335,213,0 +170786289383,213,0 +170786289430,213,0 +170786289480,214,0 +170786289528,213,0 +170786289576,213,0 +170786289624,212,0 +170786289671,213,0 +170786289721,213,0 +170786289769,213,0 +170786289818,213,0 +170786289866,213,0 +170786289914,213,0 +170786289962,213,0 +170786290010,213,0 +170786290058,213,0 +170786290107,213,0 +170786290155,213,0 +170786290203,213,0 +170786290252,213,0 +170786290300,214,0 +170786290350,214,0 +170786290399,213,0 +170786290447,213,0 +170786290495,212,0 +170786290543,212,0 +170786290591,212,0 +170786290640,213,0 +170786290689,213,0 +170786290737,213,0 +170786290785,213,0 +170786290835,213,0 +170786290883,213,0 +170786290931,213,0 +170786290980,213,0 +170786291028,213,0 +170786291076,214,0 +170786291124,213,0 +170786291173,214,0 +170786291221,214,0 +170786291269,214,0 +170786291317,214,0 +170786291367,213,0 +170786291415,213,0 +170786291464,212,0 +170786291512,213,0 +170786291560,213,0 +170786291608,213,0 +170786291656,213,0 +170786291705,213,0 +170786291755,213,0 +170786291803,213,0 +170786291850,213,0 +170786291898,213,0 +170786291946,213,0 +170786291994,213,0 +170786292042,213,0 +170786292090,213,0 +170786292140,213,0 +170786292188,213,0 +170786292237,213,0 +170786292285,213,0 +170786292334,213,0 +170786292382,213,0 +170786292430,213,0 +170786292478,212,0 +170786292526,213,0 +170786292574,213,0 +170786292622,213,0 +170786292669,212,0 +170786292717,213,0 +170786292765,213,0 +170786292813,213,0 +170786292861,213,0 +170786292910,213,0 +170786292958,213,0 +170786293006,213,0 +170786293054,213,0 +170786293102,213,0 +170786293150,213,0 +170786293198,213,0 +170786293246,213,0 +170786293294,213,0 +170786293342,212,0 +170786293390,213,0 +170786293438,213,0 +170786293485,213,0 +170786293533,213,0 +170786293581,213,0 +170786293631,213,0 +170786293678,213,0 +170786293726,213,0 +170786293776,213,0 +170786293825,213,0 +170786293875,213,0 +170786293923,213,0 +170786293971,214,0 +170786294020,213,0 +170786294068,213,0 +170786294118,213,0 +170786294165,214,0 +170786294215,213,0 +170786294263,213,0 +170786294313,213,0 +170786294362,213,0 +170786294410,213,0 +170786294458,213,0 +170786294506,213,0 +170786294553,213,0 +170786294603,213,0 +170786294652,213,0 +170786294700,213,0 +170786294750,213,0 +170786294797,213,0 +170786294845,214,0 +170786294893,213,0 +170786294941,213,0 +170786294989,214,0 +170786295037,214,0 +170786295086,213,0 +170786295134,213,0 +170786295184,213,0 +170786295232,213,0 +170786295280,213,0 +170786295327,213,0 +170786295375,213,0 +170786295423,213,0 +170786295473,213,0 +170786295522,213,0 +170786295570,213,0 +170786295618,213,0 +170786295666,213,0 +170786295715,213,0 +170786295763,213,0 +170786295811,214,0 +170786295860,214,0 +170786295908,214,0 +170786295956,213,0 +170786296004,214,0 +170786296052,213,0 +170786296100,213,0 +170786296148,213,0 +170786296197,213,0 +170786296245,213,0 +170786296293,213,0 +170786296341,213,0 +170786296389,213,0 +170786296436,213,0 +170786296484,213,0 +170786296534,213,0 +170786296583,213,0 +170786296633,213,0 +170786296681,213,0 +170786296730,214,0 +170786296780,213,0 +170786296829,214,0 +170786296877,214,0 +170786296925,213,0 +170786296974,213,0 +170786297022,213,0 +170786297070,213,0 +170786297118,213,0 +170786297167,213,0 +170786297215,213,0 +170786297265,213,0 +170786297314,213,0 +170786297363,213,0 +170786297411,213,0 +170786297459,213,0 +170786297507,213,0 +170786297555,213,0 +170786297603,213,0 +170786297651,213,0 +170786297699,214,0 +170786297746,213,0 +170786297794,214,0 +170786297842,214,0 +170786297890,213,0 +170786297938,213,0 +170786297986,213,0 +170786298034,213,0 +170786298082,213,0 +170786298131,213,0 +170786298181,213,0 +170786298230,213,0 +170786298278,213,0 +170786298326,213,0 +170786298374,213,0 +170786298421,213,0 +170786298469,213,0 +170786298517,213,0 +170786298565,213,0 +170786298613,213,0 +170786298661,213,0 +170786298709,214,0 +170786298756,213,0 +170786298804,213,0 +170786298852,213,0 +170786298902,213,0 +170786298949,212,0 +170786298997,213,0 +170786299047,213,0 +170786299095,213,0 +170786299143,213,0 +170786299192,213,0 +170786299240,213,0 +170786299288,213,0 +170786299336,213,0 +170786299384,213,0 +170786299433,213,0 +170786299481,213,0 +170786299529,214,0 +170786299577,214,0 +170786299625,214,0 +170786299674,214,0 +170786299722,214,0 +170786299770,213,0 +170786299818,213,0 +170786299866,213,0 +170786299914,213,0 +170786299962,213,0 +170786300010,213,0 +170786300058,213,0 +170786300106,213,0 +170786300154,213,0 +170786300202,213,0 +170786300249,213,0 +170786300297,213,0 +170786300345,213,0 +170786300393,214,0 +170786300441,213,0 +170786300488,213,0 +170786300536,214,0 +170786300584,214,0 +170786300632,213,0 +170786300680,213,0 +170786300727,213,0 +170786300775,213,0 +170786300823,212,0 +170786300871,213,0 +170786300919,213,0 +170786300967,213,0 +170786301015,213,0 +170786301062,213,0 +170786301110,213,0 +170786301158,213,0 +170786301208,213,0 +170786301257,213,0 +170786301307,213,0 +170786301354,213,0 +170786301402,213,0 +170786301450,213,0 +170786301498,213,0 +170786301548,214,0 +170786301595,214,0 +170786301643,213,0 +170786301691,213,0 +170786301740,213,0 +170786301788,213,0 +170786301836,213,0 +170786301884,213,0 +170786301932,213,0 +170786301980,213,0 +170786302027,213,0 +170786302077,213,0 +170786302125,213,0 +170786302173,213,0 +170786302221,213,0 +170786302270,213,0 +170786302318,214,0 +170786302366,213,0 +170786302414,214,0 +170786302461,213,0 +170786302509,213,0 +170786302557,213,0 +170786302605,213,0 +170786302655,213,0 +170786302703,212,0 +170786302750,213,0 +170786302798,213,0 +170786302846,213,0 +170786302896,213,0 +170786302945,213,0 +170786302995,213,0 +170786303043,213,0 +170786303092,213,0 +170786303140,213,0 +170786303190,213,0 +170786303237,213,0 +170786303285,213,0 +170786303333,214,0 +170786303383,213,0 +170786303431,214,0 +170786303478,213,0 +170786303528,213,0 +170786303576,213,0 +170786303624,213,0 +170786303672,213,0 +170786303720,213,0 +170786303768,213,0 +170786303817,213,0 +170786303865,213,0 +170786303913,213,0 +170786303961,213,0 +170786304009,213,0 +170786304058,213,0 +170786304108,213,0 +170786304156,213,0 +170786304205,213,0 +170786304254,213,0 +170786304302,213,0 +170786304352,213,0 +170786304400,213,0 +170786304448,213,0 +170786304496,213,0 +170786304543,213,0 +170786304593,213,0 +170786304641,213,0 +170786304690,213,0 +170786304738,213,0 +170786304786,213,0 +170786304834,213,0 +170786304882,213,0 +170786304930,213,0 +170786304980,213,0 +170786305028,213,0 +170786305077,213,0 +170786305125,214,0 +170786305174,213,0 +170786305222,214,0 +170786305270,214,0 +170786305318,214,0 +170786305368,213,0 +170786305416,213,0 +170786305463,213,0 +170786305511,213,0 +170786305559,213,0 +170786305609,213,0 +170786305658,213,0 +170786305708,213,0 +170786305756,213,0 +170786305805,213,0 +170786305853,213,0 +170786305901,213,0 +170786305950,213,0 +170786305998,213,0 +170786306046,213,0 +170786306094,214,0 +170786306143,214,0 +170786306191,214,0 +170786306239,214,0 +170786306289,213,0 +170786306336,213,0 +170786306384,213,0 +170786306432,213,0 +170786306480,213,0 +170786306528,213,0 +170786306576,213,0 +170786306624,213,0 +170786306672,213,0 +170786306720,213,0 +170786306769,213,0 +170786306817,213,0 +170786306867,214,0 +170786306915,214,0 +170786306963,214,0 +170786307011,214,0 +170786307059,213,0 +170786307108,214,0 +170786307158,214,0 +170786307207,213,0 +170786307256,213,0 +170786307306,213,0 +170786307354,213,0 +170786307402,213,0 +170786307450,213,0 +170786307498,213,0 +170786307546,213,0 +170786307594,213,0 +170786307642,213,0 +170786307689,213,0 +170786307739,214,0 +170786307787,214,0 +170786307835,214,0 +170786307883,214,0 +170786307931,214,0 +170786307980,214,0 +170786308028,214,0 +170786308076,214,0 +170786308126,213,0 +170786308174,213,0 +170786308223,213,0 +170786308271,213,0 +170786308319,213,0 +170786308368,213,0 +170786308416,213,0 +170786308464,213,0 +170786308514,213,0 +170786308563,214,0 +170786308611,214,0 +170786308659,214,0 +170786308707,214,0 +170786308755,214,0 +170786308803,214,0 +170786308850,214,0 +170786308898,214,0 +170786308946,214,0 +170786308996,214,0 +170786309044,213,0 +170786309091,213,0 +170786309141,213,0 +170786309189,213,0 +170786309237,213,0 +170786309285,213,0 +170786309333,213,0 +170786309382,213,0 +170786309432,213,0 +170786309479,213,0 +170786309529,213,0 +170786309577,213,0 +170786309625,214,0 +170786309673,214,0 +170786309720,214,0 +170786309768,214,0 +170786309816,214,0 +170786309864,214,0 +170786309912,214,0 +170786309960,213,0 +170786310008,213,0 +170786310056,213,0 +170786310105,213,0 +170786310153,213,0 +170786310201,213,0 +170786310250,213,0 +170786310298,213,0 +170786310346,213,0 +170786310396,213,0 +170786310443,213,0 +170786310491,213,0 +170786310539,213,0 +170786310589,213,0 +170786310637,213,0 +170786310684,214,0 +170786310732,214,0 +170786310780,213,0 +170786310828,213,0 +170786310876,214,0 +170786310924,213,0 +170786310973,213,0 +170786311021,213,0 +170786311071,213,0 +170786311119,213,0 +170786311166,213,0 +170786311214,213,0 +170786311262,213,0 +170786311310,213,0 +170786311358,213,0 +170786311407,213,0 +170786311455,213,0 +170786311503,213,0 +170786311551,213,0 +170786311599,213,0 +170786311647,213,0 +170786311696,213,0 +170786311744,213,0 +170786311792,214,0 +170786311840,213,0 +170786311889,213,0 +170786311939,213,0 +170786311987,213,0 +170786312034,213,0 +170786312084,213,0 +170786312133,213,0 +170786312181,213,0 +170786312229,213,0 +170786312277,213,0 +170786312325,213,0 +170786312373,213,0 +170786312422,213,0 +170786312470,214,0 +170786312518,214,0 +170786312566,214,0 +170786312614,214,0 +170786312661,214,0 +170786312709,214,0 +170786312757,213,0 +170786312805,213,0 +170786312855,213,0 +170786312902,213,0 +170786312950,213,0 +170786312998,213,0 +170786313046,213,0 +170786313094,213,0 +170786313142,213,0 +170786313189,213,0 +170786313237,213,0 +170786313285,214,0 +170786313333,214,0 +170786313381,214,0 +170786313429,214,0 +170786313476,214,0 +170786313524,214,0 +170786313572,214,0 +170786313622,214,0 +170786313671,213,0 +170786313719,213,0 +170786313767,213,0 +170786313815,213,0 +170786313864,213,0 +170786313914,213,0 +170786313962,213,0 +170786314010,213,0 +170786314058,213,0 +170786314106,213,0 +170786314154,213,0 +170786314202,214,0 +170786314250,214,0 +170786314297,213,0 +170786314347,214,0 +170786314396,214,0 +170786314444,214,0 +170786314492,214,0 +170786314540,214,0 +170786314588,214,0 +170786314638,213,0 +170786314686,213,0 +170786314734,213,0 +170786314782,213,0 +170786314829,213,0 +170786314879,213,0 +170786314928,213,0 +170786314978,213,0 +170786315026,213,0 +170786315074,213,0 +170786315123,214,0 +170786315173,213,0 +170786315220,214,0 +170786315268,214,0 +170786315316,214,0 +170786315364,214,0 +170786315414,214,0 +170786315462,214,0 +170786315510,213,0 +170786315557,213,0 +170786315605,213,0 +170786315653,213,0 +170786315701,213,0 +170786315751,213,0 +170786315799,213,0 +170786315847,213,0 +170786315896,213,0 +170786315944,213,0 +170786315994,213,0 +170786316041,213,0 +170786316089,213,0 +170786316137,213,0 +170786316187,213,0 +170786316235,213,0 +170786316282,213,0 +170786316330,213,0 +170786316378,214,0 +170786316426,214,0 +170786316474,214,0 +170786316523,213,0 +170786316571,213,0 +170786316621,213,0 +170786316669,213,0 +170786316718,213,0 +170786316766,213,0 +170786316815,213,0 +170786316863,213,0 +170786316911,213,0 +170786316959,213,0 +170786317009,213,0 +170786317056,213,0 +170786317104,213,0 +170786317152,213,0 +170786317200,213,0 +170786317248,213,0 +170786317296,213,0 +170786317344,214,0 +170786317391,213,0 +170786317439,213,0 +170786317487,213,0 +170786317537,213,0 +170786317584,213,0 +170786317634,213,0 +170786317682,213,0 +170786317731,213,0 +170786317779,213,0 +170786317827,213,0 +170786317875,213,0 +170786317925,213,0 +170786317974,213,0 +170786318024,213,0 +170786318073,214,0 +170786318121,214,0 +170786318171,213,0 +170786318218,214,0 +170786318266,214,0 +170786318314,214,0 +170786318364,213,0 +170786318411,213,0 +170786318461,212,0 +170786318509,213,0 +170786318559,213,0 +170786318606,213,0 +170786318654,213,0 +170786318702,213,0 +170786318752,213,0 +170786318800,213,0 +170786318848,213,0 +170786318895,213,0 +170786318943,213,0 +170786318991,213,0 +170786319039,213,0 +170786319087,214,0 +170786319135,214,0 +170786319183,213,0 +170786319230,214,0 +170786319278,213,0 +170786319326,213,0 +170786319374,213,0 +170786319422,213,0 +170786319470,213,0 +170786319519,213,0 +170786319567,213,0 +170786319615,213,0 +170786319662,213,0 +170786319710,213,0 +170786319758,213,0 +170786319808,213,0 +170786319855,213,0 +170786319903,213,0 +170786319951,214,0 +170786319999,214,0 +170786320047,214,0 +170786320095,213,0 +170786320144,214,0 +170786320192,213,0 +170786320241,213,0 +170786320289,213,0 +170786320337,213,0 +170786320387,213,0 +170786320436,213,0 +170786320484,213,0 +170786320532,213,0 +170786320580,213,0 +170786320630,213,0 +170786320677,213,0 +170786320725,213,0 +170786320773,213,0 +170786320821,213,0 +170786320869,214,0 +170786320917,214,0 +170786320965,214,0 +170786321013,214,0 +170786321063,214,0 +170786321111,214,0 +170786321159,213,0 +170786321208,213,0 +170786321256,213,0 +170786321304,213,0 +170786321352,213,0 +170786321400,213,0 +170786321448,213,0 +170786321496,213,0 +170786321544,213,0 +170786321591,214,0 +170786321639,213,0 +170786321689,214,0 +170786321736,214,0 +170786321786,214,0 +170786321834,214,0 +170786321881,214,0 +170786321929,214,0 +170786321977,214,0 +170786322025,214,0 +170786322073,213,0 +170786322121,213,0 +170786322169,213,0 +170786322217,213,0 +170786322264,213,0 +170786322314,213,0 +170786322362,213,0 +170786322409,213,0 +170786322457,213,0 +170786322505,213,0 +170786322553,213,0 +170786322601,213,0 +170786322649,213,0 +170786322698,214,0 +170786322746,213,0 +170786322794,214,0 +170786322841,213,0 +170786322889,214,0 +170786322939,213,0 +170786322986,213,0 +170786323034,213,0 +170786323082,213,0 +170786323132,213,0 +170786323181,213,0 +170786323229,213,0 +170786323277,213,0 +170786323325,213,0 +170786323375,213,0 +170786323423,213,0 +170786323471,213,0 +170786323520,213,0 +170786323568,213,0 +170786323616,213,0 +170786323666,213,0 +170786323713,213,0 +170786323761,213,0 +170786323809,214,0 +170786323857,214,0 +170786323907,214,0 +170786323956,213,0 +170786324004,213,0 +170786324052,213,0 +170786324100,213,0 +170786324148,213,0 +170786324196,213,0 +170786324245,213,0 +170786324293,213,0 +170786324341,213,0 +170786324389,213,0 +170786324437,213,0 +170786324485,213,0 +170786324533,213,0 +170786324581,213,0 +170786324629,214,0 +170786324677,214,0 +170786324725,214,0 +170786324774,214,0 +170786324824,214,0 +170786324872,213,0 +170786324920,213,0 +170786324968,213,0 +170786325016,213,0 +170786325063,213,0 +170786325111,213,0 +170786325161,213,0 +170786325209,213,0 +170786325257,213,0 +170786325306,213,0 +170786325354,213,0 +170786325402,213,0 +170786325450,213,0 +170786325500,213,0 +170786325548,214,0 +170786325597,213,0 +170786325645,214,0 +170786325693,214,0 +170786325742,214,0 +170786325790,213,0 +170786325838,213,0 +170786325888,213,0 +170786325937,213,0 +170786325985,213,0 +170786326033,213,0 +170786326083,213,0 +170786326131,213,0 +170786326180,213,0 +170786326228,213,0 +170786326276,213,0 +170786326324,213,0 +170786326372,213,0 +170786326421,213,0 +170786326469,214,0 +170786326517,213,0 +170786326565,214,0 +170786326614,214,0 +170786326662,214,0 +170786326710,213,0 +170786326760,213,0 +170786326808,213,0 +170786326855,213,0 +170786326903,213,0 +170786326953,213,0 +170786327002,213,0 +170786327050,213,0 +170786327098,213,0 +170786327146,213,0 +170786327194,213,0 +170786327242,213,0 +170786327290,213,0 +170786327338,214,0 +170786327387,213,0 +170786327437,214,0 +170786327486,214,0 +170786327536,213,0 +170786327584,214,0 +170786327632,213,0 +170786327679,213,0 +170786327729,213,0 +170786327777,213,0 +170786327825,213,0 +170786327874,213,0 +170786327922,213,0 +170786327972,213,0 +170786328020,213,0 +170786328069,213,0 +170786328119,213,0 +170786328167,213,0 +170786328216,213,0 +170786328266,213,0 +170786328315,213,0 +170786328364,213,0 +170786328414,214,0 +170786328463,214,0 +170786328511,214,0 +170786328561,213,0 +170786328609,213,0 +170786328657,213,0 +170786328704,213,0 +170786328752,213,0 +170786328800,213,0 +170786328850,213,0 +170786328897,213,0 +170786328947,214,0 +170786328995,214,0 +170786329043,213,0 +170786329091,214,0 +170786329139,214,0 +170786329188,214,0 +170786329236,214,0 +170786329286,214,0 +170786329333,214,0 +170786329381,214,0 +170786329431,214,0 +170786329479,213,0 +170786329528,213,0 +170786329576,213,0 +170786329626,213,0 +170786329674,213,0 +170786329723,214,0 +170786329771,213,0 +170786329820,214,0 +170786329868,214,0 +170786329916,214,0 +170786329964,214,0 +170786330012,214,0 +170786330060,214,0 +170786330109,214,0 +170786330159,214,0 +170786330207,214,0 +170786330255,214,0 +170786330304,214,0 +170786330352,214,0 +170786330402,214,0 +170786330451,213,0 +170786330499,213,0 +170786330548,213,0 +170786330596,214,0 +170786330644,213,0 +170786330694,214,0 +170786330743,213,0 +170786330791,214,0 +170786330839,214,0 +170786330887,214,0 +170786330935,214,0 +170786330983,214,0 +170786331031,214,0 +170786331078,214,0 +170786331128,214,0 +170786331177,214,0 +170786331227,214,0 +170786331275,214,0 +170786331323,214,0 +170786331371,213,0 +170786331419,213,0 +170786331468,213,0 +170786331518,213,0 +170786331566,213,0 +170786331614,213,0 +170786331663,213,0 +170786331711,214,0 +170786331761,213,0 +170786331809,213,0 +170786331856,213,0 +170786331906,214,0 +170786331954,214,0 +170786332002,214,0 +170786332050,214,0 +170786332099,214,0 +170786332147,214,0 +170786332195,214,0 +170786332243,214,0 +170786332293,213,0 +170786332341,213,0 +170786332389,213,0 +170786332438,213,0 +170786332486,213,0 +170786332534,213,0 +170786332583,213,0 +170786332633,213,0 +170786332682,213,0 +170786332732,213,0 +170786332781,214,0 +170786332829,214,0 +170786332877,214,0 +170786332925,214,0 +170786332974,214,0 +170786333022,214,0 +170786333070,214,0 +170786333118,214,0 +170786333166,214,0 +170786333216,213,0 +170786333263,213,0 +170786333311,213,0 +170786333361,213,0 +170786333409,213,0 +170786333456,213,0 +170786333504,213,0 +170786333552,213,0 +170786333602,213,0 +170786333650,213,0 +170786333699,213,0 +170786333747,213,0 +170786333797,213,0 +170786333845,213,0 +170786333894,214,0 +170786333944,214,0 +170786333993,214,0 +170786334043,214,0 +170786334091,214,0 +170786334140,213,0 +170786334190,213,0 +170786334237,213,0 +170786334285,213,0 +170786334333,213,0 +170786334381,213,0 +170786334429,213,0 +170786334477,213,0 +170786334525,213,0 +170786334573,213,0 +170786334621,213,0 +170786334669,214,0 +170786334716,213,0 +170786334764,213,0 +170786334814,214,0 +170786334863,214,0 +170786334911,214,0 +170786334959,214,0 +170786335007,214,0 +170786335055,213,0 +170786335103,213,0 +170786335151,213,0 +170786335201,213,0 +170786335248,213,0 +170786335296,213,0 +170786335344,213,0 +170786335394,213,0 +170786335442,213,0 +170786335491,213,0 +170786335541,213,0 +170786335590,213,0 +170786335640,213,0 +170786335687,214,0 +170786335735,214,0 +170786335785,213,0 +170786335834,214,0 +170786335884,214,0 +170786335932,214,0 +170786335979,213,0 +170786336027,213,0 +170786336077,213,0 +170786336125,213,0 +170786336173,213,0 +170786336222,213,0 +170786336270,213,0 +170786336318,213,0 +170786336366,213,0 +170786336415,213,0 +170786336463,213,0 +170786336511,213,0 +170786336559,213,0 +170786336607,213,0 +170786336656,213,0 +170786336704,213,0 +170786336752,213,0 +170786336800,213,0 +170786336850,213,0 +170786336898,214,0 +170786336946,213,0 +170786336994,213,0 +170786337043,213,0 +170786337091,213,0 +170786337140,213,0 +170786337188,213,0 +170786337236,213,0 +170786337286,213,0 +170786337334,213,0 +170786337382,213,0 +170786337429,213,0 +170786337477,213,0 +170786337525,213,0 +170786337573,213,0 +170786337623,213,0 +170786337671,214,0 +170786337718,214,0 +170786337766,213,0 +170786337814,214,0 +170786337862,213,0 +170786337910,213,0 +170786337958,213,0 +170786338006,213,0 +170786338054,213,0 +170786338102,213,0 +170786338150,213,0 +170786338198,213,0 +170786338247,213,0 +170786338295,213,0 +170786338345,214,0 +170786338393,214,0 +170786338440,213,0 +170786338490,214,0 +170786338539,214,0 +170786338589,214,0 +170786338637,214,0 +170786338685,214,0 +170786338734,214,0 +170786338784,213,0 +170786338832,213,0 +170786338880,213,0 +170786338929,213,0 +170786338977,213,0 +170786339027,213,0 +170786339075,213,0 +170786339124,213,0 +170786339174,213,0 +170786339221,213,0 +170786339269,214,0 +170786339317,213,0 +170786339365,213,0 +170786339413,213,0 +170786339461,214,0 +170786339509,213,0 +170786339558,214,0 +170786339606,214,0 +170786339654,214,0 +170786339703,214,0 +170786339751,213,0 +170786339801,213,0 +170786339849,213,0 +170786339897,213,0 +170786339944,213,0 +170786339994,213,0 +170786340042,213,0 +170786340090,213,0 +170786340139,213,0 +170786340187,213,0 +170786340235,213,0 +170786340283,213,0 +170786340331,213,0 +170786340379,214,0 +170786340426,214,0 +170786340474,214,0 +170786340522,214,0 +170786340570,214,0 +170786340618,214,0 +170786340666,213,0 +170786340714,213,0 +170786340762,213,0 +170786340812,213,0 +170786340861,213,0 +170786340909,213,0 +170786340957,213,0 +170786341005,213,0 +170786341055,213,0 +170786341103,213,0 +170786341150,213,0 +170786341200,213,0 +170786341248,213,0 +170786341296,214,0 +170786341344,213,0 +170786341391,213,0 +170786341439,214,0 +170786341487,214,0 +170786341535,214,0 +170786341583,213,0 +170786341631,213,0 +170786341679,213,0 +170786341728,213,0 +170786341776,213,0 +170786341826,213,0 +170786341874,213,0 +170786341921,213,0 +170786341969,213,0 +170786342019,213,0 +170786342067,213,0 +170786342115,213,0 +170786342163,213,0 +170786342210,214,0 +170786342258,214,0 +170786342306,214,0 +170786342354,214,0 +170786342402,214,0 +170786342451,214,0 +170786342499,213,0 +170786342549,213,0 +170786342598,213,0 +170786342646,213,0 +170786342694,213,0 +170786342742,213,0 +170786342790,213,0 +170786342838,213,0 +170786342886,213,0 +170786342934,213,0 +170786342982,213,0 +170786343029,213,0 +170786343077,214,0 +170786343125,214,0 +170786343173,214,0 +170786343221,214,0 +170786343269,214,0 +170786343317,214,0 +170786343365,214,0 +170786343413,214,0 +170786343461,213,0 +170786343509,213,0 +170786343557,213,0 +170786343606,213,0 +170786343654,213,0 +170786343702,213,0 +170786343750,213,0 +170786343798,213,0 +170786343847,213,0 +170786343895,214,0 +170786343945,214,0 +170786343993,214,0 +170786344042,214,0 +170786344090,214,0 +170786344139,214,0 +170786344187,214,0 +170786344235,214,0 +170786344283,214,0 +170786344333,214,0 +170786344381,213,0 +170786344430,213,0 +170786344478,213,0 +170786344526,213,0 +170786344576,213,0 +170786344624,213,0 +170786344671,213,0 +170786344719,213,0 +170786344769,213,0 +170786344817,214,0 +170786344865,213,0 +170786344913,214,0 +170786344961,214,0 +170786345009,214,0 +170786345058,214,0 +170786345106,214,0 +170786345156,214,0 +170786345204,214,0 +170786345253,214,0 +170786345301,213,0 +170786345349,213,0 +170786345397,213,0 +170786345446,213,0 +170786345496,213,0 +170786345544,213,0 +170786345592,213,0 +170786345640,213,0 +170786345688,213,0 +170786345735,213,0 +170786345783,214,0 +170786345833,213,0 +170786345881,213,0 +170786345929,214,0 +170786345978,214,0 +170786346026,214,0 +170786346076,214,0 +170786346124,214,0 +170786346172,214,0 +170786346220,213,0 +170786346268,213,0 +170786346317,213,0 +170786346365,213,0 +170786346415,213,0 +170786346464,213,0 +170786346512,213,0 +170786346560,213,0 +170786346608,213,0 +170786346657,213,0 +170786346705,213,0 +170786346753,213,0 +170786346801,213,0 +170786346849,213,0 +170786346897,214,0 +170786346944,214,0 +170786346992,213,0 +170786347040,213,0 +170786347088,213,0 +170786347138,213,0 +170786347186,213,0 +170786347234,213,0 +170786347283,213,0 +170786347333,213,0 +170786347381,213,0 +170786347429,213,0 +170786347478,213,0 +170786347526,213,0 +170786347575,213,0 +170786347623,213,0 +170786347671,213,0 +170786347719,213,0 +170786347768,213,0 +170786347816,213,0 +170786347864,214,0 +170786347912,214,0 +170786347960,214,0 +170786348008,213,0 +170786348056,213,0 +170786348103,213,0 +170786348151,213,0 +170786348199,213,0 +170786348247,213,0 +170786348295,213,0 +170786348343,213,0 +170786348391,213,0 +170786348439,213,0 +170786348487,213,0 +170786348535,213,0 +170786348583,213,0 +170786348632,213,0 +170786348680,213,0 +170786348728,213,0 +170786348776,214,0 +170786348824,213,0 +170786348873,214,0 +170786348921,213,0 +170786348969,213,0 +170786349017,213,0 +170786349065,213,0 +170786349114,213,0 +170786349164,213,0 +170786349212,213,0 +170786349260,213,0 +170786349308,213,0 +170786349356,213,0 +170786349404,213,0 +170786349451,213,0 +170786349499,213,0 +170786349547,213,0 +170786349595,213,0 +170786349643,213,0 +170786349691,213,0 +170786349740,214,0 +170786349790,214,0 +170786349839,214,0 +170786349887,214,0 +170786349935,213,0 +170786349983,213,0 +170786350031,213,0 +170786350079,213,0 +170786350127,213,0 +170786350175,213,0 +170786350222,213,0 +170786350272,213,0 +170786350320,213,0 +170786350368,213,0 +170786350415,213,0 +170786350463,213,0 +170786350511,213,0 +170786350559,213,0 +170786350607,213,0 +170786350655,213,0 +170786350703,214,0 +170786350752,214,0 +170786350802,214,0 +170786350850,213,0 +170786350898,213,0 +170786350945,213,0 +170786350995,213,0 +170786351043,213,0 +170786351091,213,0 +170786351139,213,0 +170786351187,213,0 +170786351235,213,0 +170786351284,213,0 +170786351332,213,0 +170786351382,213,0 +170786351430,214,0 +170786351477,214,0 +170786351527,214,0 +170786351575,214,0 +170786351623,214,0 +170786351671,214,0 +170786351719,214,0 +170786351767,213,0 +170786351815,213,0 +170786351864,213,0 +170786351912,213,0 +170786351962,213,0 +170786352011,213,0 +170786352059,213,0 +170786352107,213,0 +170786352155,213,0 +170786352203,213,0 +170786352252,213,0 +170786352300,213,0 +170786352350,214,0 +170786352399,214,0 +170786352449,214,0 +170786352498,214,0 +170786352548,214,0 +170786352596,214,0 +170786352644,213,0 +170786352692,213,0 +170786352741,213,0 +170786352790,213,0 +170786352838,213,0 +170786352886,213,0 +170786352934,213,0 +170786352981,213,0 +170786353029,213,0 +170786353077,213,0 +170786353125,213,0 +170786353173,213,0 +170786353221,213,0 +170786353270,213,0 +170786353318,214,0 +170786353366,214,0 +170786353414,214,0 +170786353464,214,0 +170786353513,214,0 +170786353561,213,0 +170786353609,213,0 +170786353657,213,0 +170786353705,213,0 +170786353753,213,0 +170786353801,213,0 +170786353849,213,0 +170786353896,213,0 +170786353944,213,0 +170786353992,213,0 +170786354040,213,0 +170786354088,213,0 +170786354136,213,0 +170786354184,213,0 +170786354232,214,0 +170786354280,214,0 +170786354329,214,0 +170786354377,214,0 +170786354427,214,0 +170786354475,214,0 +170786354523,214,0 +170786354572,213,0 +170786354620,213,0 +170786354668,213,0 +170786354716,213,0 +170786354764,213,0 +170786354812,213,0 +170786354861,213,0 +170786354909,213,0 +170786354957,213,0 +170786355007,213,0 +170786355054,213,0 +170786355104,213,0 +170786355152,213,0 +170786355200,213,0 +170786355247,214,0 +170786355297,214,0 +170786355345,214,0 +170786355393,214,0 +170786355441,214,0 +170786355489,214,0 +170786355536,213,0 +170786355586,213,0 +170786355634,213,0 +170786355682,213,0 +170786355730,213,0 +170786355778,213,0 +170786355826,213,0 +170786355874,213,0 +170786355922,214,0 +170786355969,213,0 +170786356017,214,0 +170786356065,213,0 +170786356115,214,0 +170786356163,214,0 +170786356211,214,0 +170786356259,214,0 +170786356306,214,0 +170786356354,214,0 +170786356404,214,0 +170786356452,213,0 +170786356501,213,0 +170786356549,213,0 +170786356597,213,0 +170786356645,213,0 +170786356694,213,0 +170786356744,213,0 +170786356792,213,0 +170786356841,213,0 +170786356889,213,0 +170786356937,213,0 +170786356987,214,0 +170786357035,214,0 +170786357082,214,0 +170786357130,214,0 +170786357180,214,0 +170786357228,214,0 +170786357277,214,0 +170786357325,214,0 +170786357375,213,0 +170786357424,213,0 +170786357472,213,0 +170786357522,213,0 +170786357570,213,0 +170786357618,213,0 +170786357665,213,0 +170786357715,213,0 +170786357764,213,0 +170786357814,213,0 +170786357862,213,0 +170786357910,213,0 +170786357958,214,0 +170786358007,214,0 +170786358057,214,0 +170786358105,214,0 +170786358153,214,0 +170786358202,214,0 +170786358252,214,0 +170786358300,213,0 +170786358348,213,0 +170786358396,213,0 +170786358445,213,0 +170786358493,213,0 +170786358541,213,0 +170786358589,213,0 +170786358638,213,0 +170786358686,213,0 +170786358734,213,0 +170786358782,213,0 +170786358832,213,0 +170786358880,213,0 +170786358927,213,0 +170786358977,213,0 +170786359025,214,0 +170786359073,214,0 +170786359122,214,0 +170786359170,214,0 +170786359218,213,0 +170786359266,213,0 +170786359314,213,0 +170786359362,213,0 +170786359410,213,0 +170786359458,213,0 +170786359505,213,0 +170786359553,213,0 +170786359603,213,0 +170786359652,213,0 +170786359700,213,0 +170786359748,213,0 +170786359796,214,0 +170786359846,214,0 +170786359893,214,0 +170786359941,214,0 +170786359989,213,0 +170786360037,214,0 +170786360087,214,0 +170786360135,213,0 +170786360182,213,0 +170786360230,213,0 +170786360278,213,0 +170786360326,213,0 +170786360376,213,0 +170786360424,213,0 +170786360472,213,0 +170786360521,213,0 +170786360569,213,0 +170786360617,213,0 +170786360665,213,0 +170786360713,213,0 +170786360761,213,0 +170786360808,213,0 +170786360856,214,0 +170786360906,213,0 +170786360954,214,0 +170786361003,214,0 +170786361051,213,0 +170786361099,213,0 +170786361148,213,0 +170786361196,213,0 +170786361246,213,0 +170786361294,213,0 +170786361343,213,0 +170786361391,213,0 +170786361441,213,0 +170786361489,213,0 +170786361537,213,0 +170786361585,213,0 +170786361633,213,0 +170786361680,213,0 +170786361728,213,0 +170786361776,214,0 +170786361824,213,0 +170786361872,214,0 +170786361920,214,0 +170786361968,214,0 +170786362015,213,0 +170786362065,213,0 +170786362113,213,0 +170786362161,213,0 +170786362208,213,0 +170786362256,213,0 +170786362304,213,0 +170786362352,213,0 +170786362400,213,0 +170786362448,213,0 +170786362495,213,0 +170786362543,213,0 +170786362591,213,0 +170786362639,213,0 +170786362687,214,0 +170786362735,214,0 +170786362783,214,0 +170786362832,213,0 +170786362880,213,0 +170786362928,213,0 +170786362976,213,0 +170786363025,213,0 +170786363073,213,0 +170786363121,213,0 +170786363171,213,0 +170786363220,213,0 +170786363268,213,0 +170786363316,213,0 +170786363365,213,0 +170786363413,214,0 +170786363461,213,0 +170786363511,213,0 +170786363559,214,0 +170786363608,214,0 +170786363656,214,0 +170786363704,214,0 +170786363754,213,0 +170786363803,214,0 +170786363853,213,0 +170786363902,213,0 +170786363950,213,0 +170786363999,213,0 +170786364047,213,0 +170786364095,213,0 +170786364145,213,0 +170786364193,213,0 +170786364242,213,0 +170786364290,213,0 +170786364338,213,0 +170786364386,213,0 +170786364436,213,0 +170786364483,213,0 +170786364531,213,0 +170786364581,214,0 +170786364629,214,0 +170786364678,214,0 +170786364726,213,0 +170786364775,213,0 +170786364823,213,0 +170786364871,213,0 +170786364919,213,0 +170786364967,213,0 +170786365017,213,0 +170786365065,213,0 +170786365112,213,0 +170786365162,213,0 +170786365210,213,0 +170786365258,213,0 +170786365306,213,0 +170786365354,214,0 +170786365402,214,0 +170786365450,213,0 +170786365499,214,0 +170786365549,214,0 +170786365597,214,0 +170786365644,214,0 +170786365692,213,0 +170786365740,213,0 +170786365788,213,0 +170786365836,213,0 +170786365886,213,0 +170786365936,213,0 +170786365984,213,0 +170786366031,213,0 +170786366081,213,0 +170786366130,213,0 +170786366178,213,0 +170786366226,213,0 +170786366276,213,0 +170786366324,213,0 +170786366373,213,0 +170786366421,213,0 +170786366471,213,0 +170786366519,213,0 +170786366568,213,0 +170786366616,213,0 +170786366664,213,0 +170786366712,213,0 +170786366760,213,0 +170786366807,213,0 +170786366855,213,0 +170786366903,213,0 +170786366951,213,0 +170786367001,213,0 +170786367049,213,0 +170786367097,213,0 +170786367146,213,0 +170786367194,213,0 +170786367242,213,0 +170786367290,213,0 +170786367339,213,0 +170786367387,213,0 +170786367435,213,0 +170786367483,213,0 +170786367533,213,0 +170786367581,212,0 +170786367628,213,0 +170786367678,213,0 +170786367726,213,0 +170786367774,213,0 +170786367823,213,0 +170786367873,213,0 +170786367922,213,0 +170786367970,213,0 +170786368018,213,0 +170786368066,213,0 +170786368114,213,0 +170786368164,213,0 +170786368213,213,0 +170786368262,213,0 +170786368310,213,0 +170786368358,214,0 +170786368406,214,0 +170786368454,214,0 +170786368504,213,0 +170786368552,213,0 +170786368600,212,0 +170786368647,213,0 +170786368697,213,0 +170786368745,213,0 +170786368793,213,0 +170786368841,213,0 +170786368889,213,0 +170786368938,213,0 +170786368986,213,0 +170786369034,213,0 +170786369082,213,0 +170786369130,213,0 +170786369178,213,0 +170786369226,214,0 +170786369274,214,0 +170786369323,214,0 +170786369371,214,0 +170786369419,213,0 +170786369469,212,0 +170786369517,213,0 +170786369565,213,0 +170786369613,213,0 +170786369661,213,0 +170786369708,213,0 +170786369756,213,0 +170786369804,213,0 +170786369854,213,0 +170786369902,213,0 +170786369949,213,0 +170786369997,213,0 +170786370047,213,0 +170786370095,213,0 +170786370144,214,0 +170786370194,214,0 +170786370242,214,0 +170786370291,214,0 +170786370339,213,0 +170786370387,213,0 +170786370435,213,0 +170786370483,213,0 +170786370533,213,0 +170786370581,213,0 +170786370630,213,0 +170786370678,213,0 +170786370727,213,0 +170786370775,213,0 +170786370825,213,0 +170786370873,213,0 +170786370921,213,0 +170786370970,214,0 +170786371018,214,0 +170786371068,214,0 +170786371117,214,0 +170786371167,214,0 +170786371215,214,0 +170786371264,213,0 +170786371312,213,0 +170786371360,213,0 +170786371408,213,0 +170786371456,213,0 +170786371503,213,0 +170786371553,213,0 +170786371601,213,0 +170786371650,213,0 +170786371698,213,0 +170786371748,213,0 +170786371796,213,0 +170786371845,213,0 +170786371895,214,0 +170786371943,214,0 +170786371992,214,0 +170786372040,214,0 +170786372088,214,0 +170786372136,214,0 +170786372184,213,0 +170786372234,213,0 +170786372281,213,0 +170786372331,213,0 +170786372379,213,0 +170786372427,213,0 +170786372476,213,0 +170786372524,213,0 +170786372572,213,0 +170786372622,214,0 +170786372671,214,0 +170786372719,214,0 +170786372767,214,0 +170786372815,214,0 +170786372863,214,0 +170786372911,214,0 +170786372960,214,0 +170786373010,214,0 +170786373058,214,0 +170786373107,213,0 +170786373155,213,0 +170786373203,213,0 +170786373251,213,0 +170786373299,213,0 +170786373349,213,0 +170786373397,214,0 +170786373445,214,0 +170786373492,214,0 +170786373540,214,0 +170786373588,214,0 +170786373636,214,0 +170786373684,214,0 +170786373732,214,0 +170786373781,214,0 +170786373831,214,0 +170786373881,214,0 +170786373928,214,0 +170786373978,213,0 +170786374026,213,0 +170786374074,213,0 +170786374122,213,0 +170786374170,213,0 +170786374218,213,0 +170786374266,213,0 +170786374314,214,0 +170786374361,213,0 +170786374409,214,0 +170786374457,213,0 +170786374505,214,0 +170786374555,214,0 +170786374604,214,0 +170786374652,214,0 +170786374700,214,0 +170786374748,214,0 +170786374796,214,0 +170786374844,214,0 +170786374894,214,0 +170786374942,213,0 +170786374991,213,0 +170786375039,213,0 +170786375087,213,0 +170786375137,213,0 +170786375186,213,0 +170786375234,213,0 +170786375284,213,0 +170786375333,213,0 +170786375382,213,0 +170786375430,213,0 +170786375480,213,0 +170786375528,213,0 +170786375576,214,0 +170786375624,213,0 +170786375672,214,0 +170786375720,214,0 +170786375769,214,0 +170786375817,214,0 +170786375866,213,0 +170786375914,213,0 +170786375962,213,0 +170786376010,213,0 +170786376060,213,0 +170786376108,213,0 +170786376157,213,0 +170786376205,213,0 +170786376253,213,0 +170786376301,213,0 +170786376348,213,0 +170786376396,214,0 +170786376444,213,0 +170786376492,213,0 +170786376539,213,0 +170786376587,214,0 +170786376635,214,0 +170786376683,214,0 +170786376733,214,0 +170786376781,214,0 +170786376830,213,0 +170786376878,213,0 +170786376926,213,0 +170786376974,213,0 +170786377023,213,0 +170786377073,213,0 +170786377122,213,0 +170786377170,213,0 +170786377218,213,0 +170786377268,213,0 +170786377316,213,0 +170786377365,213,0 +170786377413,213,0 +170786377461,213,0 +170786377509,214,0 +170786377557,214,0 +170786377605,214,0 +170786377653,214,0 +170786377701,214,0 +170786377749,213,0 +170786377798,213,0 +170786377846,213,0 +170786377896,213,0 +170786377943,213,0 +170786377993,213,0 +170786378041,213,0 +170786378090,213,0 +170786378138,213,0 +170786378186,213,0 +170786378236,213,0 +170786378285,213,0 +170786378335,213,0 +170786378383,213,0 +170786378431,213,0 +170786378479,213,0 +170786378526,213,0 +170786378574,214,0 +170786378624,213,0 +170786378672,213,0 +170786378720,212,0 +170786378767,212,0 +170786378815,213,0 +170786378863,213,0 +170786378911,213,0 +170786378959,213,0 +170786379007,213,0 +170786379055,213,0 +170786379103,213,0 +170786379152,213,0 +170786379200,213,0 +170786379248,213,0 +170786379296,213,0 +170786379345,213,0 +170786379393,213,0 +170786379441,213,0 +170786379489,213,0 +170786379538,213,0 +170786379588,213,0 +170786379637,213,0 +170786379685,213,0 +170786379735,213,0 +170786379783,213,0 +170786379831,213,0 +170786379880,213,0 +170786379928,213,0 +170786379978,213,0 +170786380026,213,0 +170786380075,213,0 +170786380123,213,0 +170786380171,213,0 +170786380219,213,0 +170786380267,213,0 +170786380315,214,0 +170786380363,213,0 +170786380410,213,0 +170786380458,214,0 +170786380508,213,0 +170786380556,212,0 +170786380603,213,0 +170786380653,213,0 +170786380701,213,0 +170786380749,213,0 +170786380798,213,0 +170786380848,213,0 +170786380895,213,0 +170786380943,213,0 +170786380993,213,0 +170786381041,213,0 +170786381089,213,0 +170786381137,213,0 +170786381185,213,0 +170786381234,214,0 +170786381284,214,0 +170786381333,213,0 +170786381383,213,0 +170786381432,213,0 +170786381481,212,0 +170786381531,213,0 +170786381579,213,0 +170786381627,213,0 +170786381675,213,0 +170786381723,213,0 +170786381770,213,0 +170786381820,213,0 +170786381868,213,0 +170786381916,213,0 +170786381965,213,0 +170786382013,213,0 +170786382061,213,0 +170786382110,214,0 +170786382158,213,0 +170786382206,214,0 +170786382254,213,0 +170786382304,214,0 +170786382352,213,0 +170786382401,213,0 +170786382449,213,0 +170786382498,212,0 +170786382546,213,0 +170786382594,212,0 +170786382642,213,0 +170786382692,213,0 +170786382739,213,0 +170786382787,213,0 +170786382835,213,0 +170786382883,213,0 +170786382931,213,0 +170786382979,213,0 +170786383028,214,0 +170786383076,213,0 +170786383124,214,0 +170786383174,214,0 +170786383223,213,0 +170786383271,213,0 +170786383319,213,0 +170786383367,213,0 +170786383415,212,0 +170786383463,213,0 +170786383511,213,0 +170786383560,213,0 +170786383610,213,0 +170786383659,213,0 +170786383707,213,0 +170786383755,213,0 +170786383803,213,0 +170786383851,213,0 +170786383899,213,0 +170786383947,213,0 +170786383995,213,0 +170786384043,213,0 +170786384092,213,0 +170786384140,213,0 +170786384188,214,0 +170786384236,212,0 +170786384284,213,0 +170786384332,213,0 +170786384380,213,0 +170786384428,213,0 +170786384477,213,0 +170786384525,213,0 +170786384573,213,0 +170786384621,213,0 +170786384669,213,0 +170786384717,213,0 +170786384765,213,0 +170786384814,213,0 +170786384864,213,0 +170786384911,213,0 +170786384959,213,0 +170786385007,214,0 +170786385055,214,0 +170786385105,214,0 +170786385153,213,0 +170786385201,213,0 +170786385249,212,0 +170786385297,212,0 +170786385345,213,0 +170786385394,212,0 +170786385442,213,0 +170786385490,213,0 +170786385540,213,0 +170786385587,213,0 +170786385635,213,0 +170786385683,213,0 +170786385733,213,0 +170786385781,213,0 +170786385830,213,0 +170786385878,214,0 +170786385926,214,0 +170786385975,213,0 +170786386023,214,0 +170786386071,213,0 +170786386119,213,0 +170786386167,212,0 +170786386215,213,0 +170786386263,213,0 +170786386311,213,0 +170786386360,213,0 +170786386408,213,0 +170786386456,213,0 +170786386504,213,0 +170786386553,213,0 +170786386601,213,0 +170786386649,213,0 +170786386697,214,0 +170786386745,213,0 +170786386792,213,0 +170786386840,214,0 +170786386888,213,0 +170786386936,214,0 +170786386983,213,0 +170786387031,212,0 +170786387079,213,0 +170786387129,213,0 +170786387177,213,0 +170786387226,213,0 +170786387274,213,0 +170786387324,213,0 +170786387373,213,0 +170786387421,213,0 +170786387471,213,0 +170786387519,213,0 +170786387567,213,0 +170786387615,214,0 +170786387664,214,0 +170786387714,214,0 +170786387763,214,0 +170786387811,214,0 +170786387859,214,0 +170786387908,213,0 +170786387956,213,0 +170786388004,213,0 +170786388052,213,0 +170786388102,213,0 +170786388151,213,0 +170786388199,213,0 +170786388247,213,0 +170786388295,213,0 +170786388343,213,0 +170786388391,213,0 +170786388440,213,0 +170786388488,213,0 +170786388536,214,0 +170786388586,214,0 +170786388635,214,0 +170786388683,214,0 +170786388733,213,0 +170786388781,213,0 +170786388829,213,0 +170786388876,212,0 +170786388924,213,0 +170786388972,213,0 +170786389020,213,0 +170786389070,213,0 +170786389118,213,0 +170786389167,213,0 +170786389215,213,0 +170786389265,213,0 +170786389313,213,0 +170786389361,214,0 +170786389408,214,0 +170786389456,214,0 +170786389504,214,0 +170786389554,214,0 +170786389602,214,0 +170786389649,213,0 +170786389699,213,0 +170786389748,213,0 +170786389796,213,0 +170786389844,213,0 +170786389892,213,0 +170786389940,213,0 +170786389988,213,0 +170786390036,213,0 +170786390085,213,0 +170786390133,213,0 +170786390181,213,0 +170786390230,213,0 +170786390278,213,0 +170786390328,213,0 +170786390376,213,0 +170786390423,213,0 +170786390471,214,0 +170786390519,214,0 +170786390567,214,0 +170786390615,213,0 +170786390663,214,0 +170786390710,212,0 +170786390758,213,0 +170786390806,212,0 +170786390854,213,0 +170786390902,213,0 +170786390950,213,0 +170786390997,213,0 +170786391045,213,0 +170786391093,213,0 +170786391141,213,0 +170786391189,213,0 +170786391237,213,0 +170786391285,213,0 +170786391333,213,0 +170786391380,213,0 +170786391428,213,0 +170786391476,213,0 +170786391524,213,0 +170786391573,213,0 +170786391621,213,0 +170786391671,212,0 +170786391719,213,0 +170786391768,212,0 +170786391816,213,0 +170786391864,213,0 +170786391912,213,0 +170786391960,213,0 +170786392008,213,0 +170786392057,213,0 +170786392106,213,0 +170786392156,213,0 +170786392204,213,0 +170786392252,213,0 +170786392299,214,0 +170786392347,213,0 +170786392395,214,0 +170786392443,214,0 +170786392491,213,0 +170786392539,213,0 +170786392587,212,0 +170786392635,213,0 +170786392682,213,0 +170786392730,213,0 +170786392778,213,0 +170786392827,213,0 +170786392875,213,0 +170786392923,213,0 +170786392971,213,0 +170786393019,213,0 +170786393069,213,0 +170786393117,213,0 +170786393164,213,0 +170786393212,213,0 +170786393262,213,0 +170786393310,213,0 +170786393359,213,0 +170786393407,214,0 +170786393457,213,0 +170786393505,213,0 +170786393552,213,0 +170786393602,213,0 +170786393651,213,0 +170786393701,213,0 +170786393749,213,0 +170786393797,213,0 +170786393845,213,0 +170786393893,213,0 +170786393941,213,0 +170786393988,213,0 +170786394036,214,0 +170786394084,213,0 +170786394132,213,0 +170786394180,213,0 +170786394228,213,0 +170786394276,214,0 +170786394324,213,0 +170786394374,213,0 +170786394421,213,0 +170786394471,213,0 +170786394519,213,0 +170786394567,213,0 +170786394614,213,0 +170786394664,213,0 +170786394713,213,0 +170786394761,213,0 +170786394809,213,0 +170786394857,213,0 +170786394907,213,0 +170786394956,213,0 +170786395004,213,0 +170786395054,214,0 +170786395101,214,0 +170786395149,214,0 +170786395197,214,0 +170786395247,214,0 +170786395296,213,0 +170786395344,213,0 +170786395394,213,0 +170786395441,213,0 +170786395489,213,0 +170786395537,213,0 +170786395585,213,0 +170786395633,213,0 +170786395681,213,0 +170786395729,213,0 +170786395777,213,0 +170786395826,213,0 +170786395876,213,0 +170786395923,213,0 +170786395973,214,0 +170786396021,213,0 +170786396069,214,0 +170786396118,213,0 +170786396166,213,0 +170786396216,213,0 +170786396265,213,0 +170786396313,213,0 +170786396361,213,0 +170786396409,213,0 +170786396457,212,0 +170786396504,213,0 +170786396552,213,0 +170786396600,213,0 +170786396648,213,0 +170786396696,213,0 +170786396744,213,0 +170786396792,213,0 +170786396839,213,0 +170786396887,213,0 +170786396935,213,0 +170786396983,213,0 +170786397031,213,0 +170786397079,213,0 +170786397127,213,0 +170786397174,213,0 +170786397222,212,0 +170786397270,212,0 +170786397318,212,0 +170786397368,213,0 +170786397417,213,0 +170786397465,213,0 +170786397514,213,0 +170786397564,213,0 +170786397613,213,0 +170786397661,213,0 +170786397709,213,0 +170786397757,213,0 +170786397805,213,0 +170786397853,213,0 +170786397900,213,0 +170786397948,213,0 +170786397998,213,0 +170786398047,214,0 +170786398095,213,0 +170786398145,213,0 +170786398193,213,0 +170786398241,213,0 +170786398290,213,0 +170786398338,213,0 +170786398386,213,0 +170786398434,213,0 +170786398482,213,0 +170786398531,213,0 +170786398581,213,0 +170786398630,213,0 +170786398679,213,0 +170786398727,213,0 +170786398775,213,0 +170786398823,214,0 +170786398871,214,0 +170786398919,214,0 +170786398967,214,0 +170786399015,213,0 +170786399063,213,0 +170786399112,213,0 +170786399160,213,0 +170786399209,212,0 +170786399257,213,0 +170786399305,213,0 +170786399353,213,0 +170786399401,213,0 +170786399448,213,0 +170786399496,213,0 +170786399546,213,0 +170786399594,213,0 +170786399643,213,0 +170786399691,214,0 +170786399739,213,0 +170786399787,213,0 +170786399835,214,0 +170786399884,214,0 +170786399932,213,0 +170786399980,213,0 +170786400028,213,0 +170786400078,213,0 +170786400125,213,0 +170786400175,213,0 +170786400223,213,0 +170786400271,213,0 +170786400320,213,0 +170786400368,213,0 +170786400416,213,0 +170786400466,213,0 +170786400514,213,0 +170786400563,213,0 +170786400611,213,0 +170786400660,213,0 +170786400708,213,0 +170786400756,213,0 +170786400804,213,0 +170786400854,213,0 +170786400903,213,0 +170786400953,212,0 +170786401000,213,0 +170786401048,213,0 +170786401096,213,0 +170786401146,213,0 +170786401194,213,0 +170786401242,213,0 +170786401291,213,0 +170786401339,213,0 +170786401387,213,0 +170786401435,213,0 +170786401484,213,0 +170786401534,213,0 +170786401582,213,0 +170786401629,214,0 +170786401677,213,0 +170786401727,214,0 +170786401775,213,0 +170786401823,213,0 +170786401870,213,0 +170786401920,213,0 +170786401968,213,0 +170786402017,213,0 +170786402065,213,0 +170786402113,213,0 +170786402163,213,0 +170786402211,213,0 +170786402259,213,0 +170786402308,213,0 +170786402356,213,0 +170786402405,213,0 +170786402455,214,0 +170786402504,213,0 +170786402554,213,0 +170786402602,213,0 +170786402650,214,0 +170786402699,213,0 +170786402747,212,0 +170786402797,213,0 +170786402845,213,0 +170786402893,213,0 +170786402940,213,0 +170786402990,213,0 +170786403039,213,0 +170786403087,213,0 +170786403135,213,0 +170786403183,213,0 +170786403231,213,0 +170786403279,213,0 +170786403327,213,0 +170786403375,213,0 +170786403424,213,0 +170786403472,213,0 +170786403522,214,0 +170786403569,214,0 +170786403617,213,0 +170786403665,213,0 +170786403713,213,0 +170786403763,213,0 +170786403811,213,0 +170786403859,213,0 +170786403906,213,0 +170786403954,213,0 +170786404002,213,0 +170786404050,213,0 +170786404098,213,0 +170786404146,213,0 +170786404194,213,0 +170786404242,213,0 +170786404289,213,0 +170786404337,213,0 +170786404385,213,0 +170786404433,214,0 +170786404481,213,0 +170786404528,213,0 +170786404576,213,0 +170786404625,212,0 +170786404673,212,0 +170786404722,213,0 +170786404770,213,0 +170786404818,213,0 +170786404866,213,0 +170786404914,213,0 +170786404963,213,0 +170786405011,213,0 +170786405059,213,0 +170786405109,213,0 +170786405157,213,0 +170786405205,213,0 +170786405254,213,0 +170786405302,213,0 +170786405350,213,0 +170786405400,213,0 +170786405449,213,0 +170786405497,213,0 +170786405545,212,0 +170786405594,212,0 +170786405642,212,0 +170786405690,213,0 +170786405738,212,0 +170786405786,213,0 +170786405834,213,0 +170786405883,213,0 +170786405933,213,0 +170786405980,213,0 +170786406028,213,0 +170786406078,213,0 +170786406126,213,0 +170786406174,213,0 +170786406223,213,0 +170786406272,213,0 +170786406320,213,0 +170786406368,213,0 +170786406416,213,0 +170786406464,212,0 +170786406514,212,0 +170786406562,213,0 +170786406609,213,0 +170786406657,213,0 +170786406707,213,0 +170786406756,213,0 +170786406804,213,0 +170786406852,213,0 +170786406900,213,0 +170786406948,213,0 +170786406998,213,0 +170786407046,213,0 +170786407094,213,0 +170786407142,213,0 +170786407191,213,0 +170786407239,213,0 +170786407287,213,0 +170786407337,213,0 +170786407385,212,0 +170786407432,212,0 +170786407480,212,0 +170786407528,213,0 +170786407576,213,0 +170786407626,213,0 +170786407674,213,0 +170786407722,213,0 +170786407770,213,0 +170786407819,213,0 +170786407867,213,0 +170786407915,213,0 +170786407965,213,0 +170786408012,213,0 +170786408060,213,0 +170786408110,213,0 +170786408159,213,0 +170786408207,213,0 +170786408255,212,0 +170786408303,212,0 +170786408351,212,0 +170786408399,213,0 +170786408447,212,0 +170786408495,213,0 +170786408544,213,0 +170786408592,213,0 +170786408640,213,0 +170786408688,213,0 +170786408737,213,0 +170786408785,213,0 +170786408833,213,0 +170786408883,213,0 +170786408931,213,0 +170786408979,214,0 +170786409027,213,0 +170786409076,214,0 +170786409124,214,0 +170786409172,213,0 +170786409220,213,0 +170786409268,212,0 +170786409316,213,0 +170786409364,212,0 +170786409412,213,0 +170786409460,213,0 +170786409509,213,0 +170786409557,213,0 +170786409605,213,0 +170786409655,213,0 +170786409703,213,0 +170786409751,213,0 +170786409798,213,0 +170786409846,213,0 +170786409894,213,0 +170786409942,213,0 +170786409990,213,0 +170786410038,213,0 +170786410088,213,0 +170786410137,212,0 +170786410187,212,0 +170786410235,212,0 +170786410283,213,0 +170786410332,213,0 +170786410380,212,0 +170786410429,213,0 +170786410479,213,0 +170786410529,213,0 +170786410576,213,0 +170786410626,213,0 +170786410674,213,0 +170786410722,213,0 +170786410770,213,0 +170786410819,213,0 +170786410867,213,0 +170786410915,213,0 +170786410965,213,0 +170786411013,213,0 +170786411062,212,0 +170786411110,212,0 +170786411158,212,0 +170786411206,213,0 +170786411254,213,0 +170786411303,212,0 +170786411353,213,0 +170786411401,213,0 +170786411450,213,0 +170786411498,213,0 +170786411546,213,0 +170786411596,213,0 +170786411644,213,0 +170786411692,213,0 +170786411741,213,0 +170786411789,213,0 +170786411839,213,0 +170786411888,213,0 +170786411936,213,0 +170786411986,212,0 +170786412034,213,0 +170786412083,212,0 +170786412131,213,0 +170786412179,213,0 +170786412227,213,0 +170786412275,213,0 +170786412323,213,0 +170786412371,213,0 +170786412420,213,0 +170786412468,213,0 +170786412518,213,0 +170786412567,213,0 +170786412615,213,0 +170786412664,213,0 +170786412712,213,0 +170786412760,213,0 +170786412810,213,0 +170786412859,213,0 +170786412907,213,0 +170786412955,212,0 +170786413003,212,0 +170786413051,212,0 +170786413099,213,0 +170786413147,213,0 +170786413196,213,0 +170786413246,213,0 +170786413295,213,0 +170786413345,213,0 +170786413393,213,0 +170786413441,213,0 +170786413489,213,0 +170786413537,213,0 +170786413585,213,0 +170786413633,213,0 +170786413681,213,0 +170786413728,213,0 +170786413778,213,0 +170786413827,213,0 +170786413875,212,0 +170786413923,213,0 +170786413973,213,0 +170786414021,213,0 +170786414068,213,0 +170786414116,213,0 +170786414166,213,0 +170786414214,213,0 +170786414264,213,0 +170786414313,213,0 +170786414361,213,0 +170786414411,214,0 +170786414460,214,0 +170786414510,213,0 +170786414558,213,0 +170786414606,213,0 +170786414655,213,0 +170786414703,213,0 +170786414752,213,0 +170786414802,213,0 +170786414850,213,0 +170786414898,213,0 +170786414946,213,0 +170786414995,213,0 +170786415043,213,0 +170786415093,213,0 +170786415141,213,0 +170786415189,213,0 +170786415237,213,0 +170786415284,214,0 +170786415332,214,0 +170786415380,214,0 +170786415428,214,0 +170786415476,213,0 +170786415524,214,0 +170786415572,213,0 +170786415620,214,0 +170786415668,213,0 +170786415716,213,0 +170786415764,213,0 +170786415812,213,0 +170786415861,213,0 +170786415909,213,0 +170786415957,213,0 +170786416005,213,0 +170786416055,213,0 +170786416103,213,0 +170786416151,213,0 +170786416200,213,0 +170786416248,214,0 +170786416296,214,0 +170786416344,213,0 +170786416393,214,0 +170786416443,213,0 +170786416492,213,0 +170786416542,213,0 +170786416591,213,0 +170786416639,213,0 +170786416687,213,0 +170786416735,213,0 +170786416783,213,0 +170786416831,213,0 +170786416879,213,0 +170786416927,213,0 +170786416976,213,0 +170786417024,213,0 +170786417072,213,0 +170786417120,214,0 +170786417168,214,0 +170786417216,213,0 +170786417265,214,0 +170786417313,213,0 +170786417361,214,0 +170786417409,213,0 +170786417457,213,0 +170786417505,212,0 +170786417554,213,0 +170786417602,213,0 +170786417652,213,0 +170786417700,213,0 +170786417747,213,0 +170786417795,213,0 +170786417843,213,0 +170786417891,213,0 +170786417939,213,0 +170786417987,213,0 +170786418035,213,0 +170786418083,214,0 +170786418132,213,0 +170786418180,213,0 +170786418228,214,0 +170786418278,214,0 +170786418327,213,0 +170786418377,213,0 +170786418426,213,0 +170786418476,212,0 +170786418523,213,0 +170786418571,213,0 +170786418619,213,0 +170786418667,213,0 +170786418715,213,0 +170786418763,213,0 +170786418811,213,0 +170786418859,213,0 +170786418908,213,0 +170786418956,213,0 +170786419006,213,0 +170786419054,213,0 +170786419103,213,0 +170786419151,213,0 +170786419201,213,0 +170786419249,214,0 +170786419296,213,0 +170786419346,213,0 +170786419394,212,0 +170786419442,212,0 +170786419491,212,0 +170786419539,213,0 +170786419587,213,0 +170786419635,213,0 +170786419684,213,0 +170786419732,213,0 +170786419782,213,0 +170786419830,213,0 +170786419878,213,0 +170786419926,213,0 +170786419974,213,0 +170786420022,213,0 +170786420070,213,0 +170786420117,213,0 +170786420165,213,0 +170786420215,213,0 +170786420265,213,0 +170786420312,212,0 +170786420360,213,0 +170786420410,213,0 +170786420458,212,0 +170786420506,213,0 +170786420554,213,0 +170786420602,213,0 +170786420650,212,0 +170786420699,213,0 +170786420748,213,0 +170786420796,213,0 +170786420844,213,0 +170786420892,214,0 +170786420942,213,0 +170786420990,213,0 +170786421038,213,0 +170786421085,213,0 +170786421133,213,0 +170786421183,213,0 +170786421231,212,0 +170786421280,212,0 +170786421330,212,0 +170786421379,212,0 +170786421427,212,0 +170786421475,212,0 +170786421523,213,0 +170786421571,212,0 +170786421620,212,0 +170786421668,213,0 +170786421716,213,0 +170786421764,213,0 +170786421812,213,0 +170786421859,213,0 +170786421909,213,0 +170786421957,213,0 +170786422005,213,0 +170786422054,213,0 +170786422104,213,0 +170786422152,213,0 +170786422201,213,0 +170786422251,213,0 +170786422299,213,0 +170786422346,213,0 +170786422396,213,0 +170786422445,213,0 +170786422495,213,0 +170786422543,213,0 +170786422592,213,0 +170786422640,212,0 +170786422688,212,0 +170786422738,213,0 +170786422785,212,0 +170786422833,213,0 +170786422883,213,0 +170786422932,213,0 +170786422980,213,0 +170786423030,213,0 +170786423079,213,0 +170786423127,213,0 +170786423176,213,0 +170786423224,213,0 +170786423272,214,0 +170786423320,213,0 +170786423368,213,0 +170786423416,213,0 +170786423463,213,0 +170786423511,212,0 +170786423559,212,0 +170786423607,212,0 +170786423655,213,0 +170786423704,213,0 +170786423752,213,0 +170786423800,213,0 +170786423849,213,0 +170786423897,213,0 +170786423945,213,0 +170786423993,213,0 +170786424041,213,0 +170786424089,213,0 +170786424137,214,0 +170786424186,213,0 +170786424234,214,0 +170786424284,213,0 +170786424332,214,0 +170786424380,213,0 +170786424427,212,0 +170786424477,212,0 +170786424526,213,0 +170786424574,213,0 +170786424624,213,0 +170786424673,213,0 +170786424723,213,0 +170786424771,213,0 +170786424820,213,0 +170786424870,213,0 +170786424918,213,0 +170786424967,213,0 +170786425015,213,0 +170786425064,213,0 +170786425114,213,0 +170786425163,214,0 +170786425211,214,0 +170786425259,213,0 +170786425307,213,0 +170786425357,212,0 +170786425404,212,0 +170786425452,213,0 +170786425500,213,0 +170786425550,213,0 +170786425599,213,0 +170786425647,213,0 +170786425695,213,0 +170786425743,213,0 +170786425792,213,0 +170786425840,213,0 +170786425888,213,0 +170786425936,213,0 +170786425984,213,0 +170786426032,213,0 +170786426080,213,0 +170786426128,213,0 +170786426176,213,0 +170786426225,213,0 +170786426273,212,0 +170786426321,213,0 +170786426369,213,0 +170786426418,213,0 +170786426466,213,0 +170786426514,213,0 +170786426562,213,0 +170786426610,213,0 +170786426657,213,0 +170786426705,213,0 +170786426753,213,0 +170786426803,213,0 +170786426852,213,0 +170786426900,213,0 +170786426949,214,0 +170786426999,213,0 +170786427047,213,0 +170786427095,213,0 +170786427144,213,0 +170786427192,212,0 +170786427240,212,0 +170786427288,213,0 +170786427335,213,0 +170786427383,213,0 +170786427431,213,0 +170786427479,213,0 +170786427527,213,0 +170786427575,213,0 +170786427622,213,0 +170786427670,213,0 +170786427718,213,0 +170786427766,213,0 +170786427815,213,0 +170786427863,213,0 +170786427911,213,0 +170786427959,213,0 +170786428007,213,0 +170786428056,213,0 +170786428106,212,0 +170786428154,212,0 +170786428203,212,0 +170786428251,212,0 +170786428299,212,0 +170786428347,213,0 +170786428395,212,0 +170786428443,212,0 +170786428491,213,0 +170786428539,212,0 +170786428586,213,0 +170786428634,213,0 +170786428682,213,0 +170786428730,213,0 +170786428778,213,0 +170786428826,213,0 +170786428873,213,0 +170786428921,213,0 +170786428969,213,0 +170786429017,213,0 +170786429067,212,0 +170786429116,213,0 +170786429165,213,0 +170786429215,213,0 +170786429263,213,0 +170786429312,213,0 +170786429360,213,0 +170786429408,213,0 +170786429456,213,0 +170786429504,213,0 +170786429552,213,0 +170786429599,213,0 +170786429647,213,0 +170786429695,213,0 +170786429743,213,0 +170786429791,213,0 +170786429839,213,0 +170786429886,213,0 +170786429934,213,0 +170786429982,213,0 +170786430030,213,0 +170786430078,213,0 +170786430126,213,0 +170786430174,213,0 +170786430221,213,0 +170786430269,213,0 +170786430319,213,0 +170786430367,213,0 +170786430415,213,0 +170786430464,213,0 +170786430514,213,0 +170786430562,213,0 +170786430610,213,0 +170786430658,213,0 +170786430707,213,0 +170786430755,213,0 +170786430803,213,0 +170786430851,212,0 +170786430900,213,0 +170786430948,213,0 +170786430996,213,0 +170786431044,213,0 +170786431092,213,0 +170786431139,213,0 +170786431187,213,0 +170786431236,213,0 +170786431284,213,0 +170786431332,213,0 +170786431379,213,0 +170786431427,213,0 +170786431475,214,0 +170786431525,213,0 +170786431574,213,0 +170786431624,213,0 +170786431671,213,0 +170786431719,212,0 +170786431767,213,0 +170786431817,213,0 +170786431865,213,0 +170786431912,213,0 +170786431960,213,0 +170786432010,213,0 +170786432058,213,0 +170786432105,213,0 +170786432153,213,0 +170786432201,213,0 +170786432250,213,0 +170786432298,213,0 +170786432346,213,0 +170786432395,213,0 +170786432443,213,0 +170786432491,213,0 +170786432539,213,0 +170786432587,213,0 +170786432634,212,0 +170786432684,212,0 +170786432731,213,0 +170786432779,213,0 +170786432827,213,0 +170786432875,213,0 +170786432923,213,0 +170786432971,213,0 +170786433019,213,0 +170786433068,213,0 +170786433116,213,0 +170786433165,213,0 +170786433215,213,0 +170786433263,213,0 +170786433312,213,0 +170786433360,214,0 +170786433410,213,0 +170786433458,213,0 +170786433506,213,0 +170786433554,212,0 +170786433603,213,0 +170786433651,213,0 +170786433699,213,0 +170786433749,213,0 +170786433798,213,0 +170786433848,213,0 +170786433896,213,0 +170786433945,213,0 +170786433994,213,0 +170786434042,213,0 +170786434092,213,0 +170786434139,213,0 +170786434187,213,0 +170786434235,213,0 +170786434283,213,0 +170786434331,214,0 +170786434379,213,0 +170786434427,213,0 +170786434474,212,0 +170786434522,213,0 +170786434572,213,0 +170786434621,213,0 +170786434669,213,0 +170786434717,213,0 +170786434765,213,0 +170786434813,213,0 +170786434861,213,0 +170786434909,213,0 +170786434958,213,0 +170786435006,213,0 +170786435055,213,0 +170786435103,213,0 +170786435151,213,0 +170786435199,214,0 +170786435247,213,0 +170786435297,213,0 +170786435345,213,0 +170786435393,213,0 +170786435440,213,0 +170786435488,213,0 +170786435536,213,0 +170786435584,213,0 +170786435634,213,0 +170786435682,213,0 +170786435730,213,0 +170786435778,213,0 +170786435826,213,0 +170786435875,213,0 +170786435923,214,0 +170786435971,213,0 +170786436019,214,0 +170786436067,214,0 +170786436115,213,0 +170786436162,213,0 +170786436212,213,0 +170786436260,213,0 +170786436308,213,0 +170786436357,213,0 +170786436405,213,0 +170786436453,213,0 +170786436500,213,0 +170786436548,214,0 +170786436598,213,0 +170786436645,213,0 +170786436693,213,0 +170786436741,213,0 +170786436789,213,0 +170786436837,213,0 +170786436885,213,0 +170786436933,213,0 +170786436981,213,0 +170786437028,213,0 +170786437076,213,0 +170786437124,213,0 +170786437173,212,0 +170786437221,212,0 +170786437269,213,0 +170786437318,213,0 +170786437366,213,0 +170786437414,213,0 +170786437462,213,0 +170786437510,213,0 +170786437558,213,0 +170786437606,213,0 +170786437653,213,0 +170786437703,213,0 +170786437751,213,0 +170786437799,213,0 +170786437848,213,0 +170786437896,214,0 +170786437946,213,0 +170786437994,213,0 +170786438042,213,0 +170786438090,212,0 +170786438138,212,0 +170786438186,213,0 +170786438233,213,0 +170786438283,213,0 +170786438331,213,0 +170786438380,213,0 +170786438428,213,0 +170786438476,213,0 +170786438524,213,0 +170786438572,213,0 +170786438620,213,0 +170786438669,214,0 +170786438717,214,0 +170786438765,213,0 +170786438815,213,0 +170786438863,213,0 +170786438910,214,0 +170786438958,213,0 +170786439008,212,0 +170786439057,213,0 +170786439105,213,0 +170786439153,213,0 +170786439203,213,0 +170786439251,213,0 +170786439299,213,0 +170786439348,213,0 +170786439396,213,0 +170786439444,213,0 +170786439492,213,0 +170786439541,213,0 +170786439589,213,0 +170786439637,213,0 +170786439685,213,0 +170786439733,213,0 +170786439783,214,0 +170786439832,214,0 +170786439882,214,0 +170786439929,212,0 +170786439977,213,0 +170786440027,213,0 +170786440075,213,0 +170786440123,213,0 +170786440171,213,0 +170786440218,213,0 +170786440266,213,0 +170786440316,213,0 +170786440364,213,0 +170786440412,213,0 +170786440461,213,0 +170786440509,213,0 +170786440559,213,0 +170786440607,213,0 +170786440655,213,0 +170786440703,213,0 +170786440751,213,0 +170786440800,213,0 +170786440848,213,0 +170786440898,213,0 +170786440947,212,0 +170786440995,213,0 +170786441044,213,0 +170786441092,213,0 +170786441140,213,0 +170786441188,213,0 +170786441236,213,0 +170786441286,213,0 +170786441334,213,0 +170786441383,213,0 +170786441431,213,0 +170786441480,213,0 +170786441530,213,0 +170786441580,214,0 +170786441627,214,0 +170786441675,213,0 +170786441723,213,0 +170786441773,212,0 +170786441821,212,0 +170786441869,212,0 +170786441918,213,0 +170786441968,213,0 +170786442017,213,0 +170786442065,213,0 +170786442113,213,0 +170786442163,213,0 +170786442212,213,0 +170786442260,213,0 +170786442308,213,0 +170786442356,214,0 +170786442405,213,0 +170786442453,213,0 +170786442501,213,0 +170786442549,213,0 +170786442598,213,0 +170786442646,213,0 +170786442694,213,0 +170786442742,212,0 +170786442790,212,0 +170786442839,212,0 +170786442887,213,0 +170786442935,213,0 +170786442985,213,0 +170786443034,213,0 +170786443082,213,0 +170786443130,213,0 +170786443178,213,0 +170786443228,213,0 +170786443277,213,0 +170786443325,213,0 +170786443374,213,0 +170786443422,213,0 +170786443472,214,0 +170786443520,214,0 +170786443568,213,0 +170786443616,212,0 +170786443665,213,0 +170786443713,212,0 +170786443761,213,0 +170786443810,213,0 +170786443860,213,0 +170786443908,213,0 +170786443956,212,0 +170786444004,213,0 +170786444053,213,0 +170786444101,213,0 +170786444150,213,0 +170786444200,213,0 +170786444248,214,0 +170786444297,214,0 +170786444345,213,0 +170786444393,214,0 +170786444441,213,0 +170786444491,212,0 +170786444539,212,0 +170786444586,213,0 +170786444636,213,0 +170786444684,213,0 +170786444732,213,0 +170786444781,213,0 +170786444829,213,0 +170786444879,213,0 +170786444928,213,0 +170786444976,213,0 +170786445024,213,0 +170786445073,213,0 +170786445121,213,0 +170786445169,213,0 +170786445217,213,0 +170786445265,213,0 +170786445314,214,0 +170786445362,213,0 +170786445412,212,0 +170786445460,212,0 +170786445508,213,0 +170786445556,213,0 +170786445604,213,0 +170786445652,213,0 +170786445699,213,0 +170786445747,213,0 +170786445795,213,0 +170786445843,213,0 +170786445891,213,0 +170786445939,213,0 +170786445987,213,0 +170786446036,213,0 +170786446084,213,0 +170786446134,213,0 +170786446182,214,0 +170786446231,213,0 +170786446279,213,0 +170786446329,212,0 +170786446376,213,0 +170786446424,213,0 +170786446472,213,0 +170786446520,213,0 +170786446568,213,0 +170786446616,213,0 +170786446664,213,0 +170786446714,213,0 +170786446762,213,0 +170786446809,213,0 +170786446857,213,0 +170786446907,214,0 +170786446955,214,0 +170786447003,214,0 +170786447052,213,0 +170786447100,213,0 +170786447148,214,0 +170786447196,213,0 +170786447244,213,0 +170786447292,213,0 +170786447340,213,0 +170786447388,213,0 +170786447436,213,0 +170786447484,213,0 +170786447533,213,0 +170786447581,213,0 +170786447629,213,0 +170786447679,213,0 +170786447726,213,0 +170786447774,213,0 +170786447824,213,0 +170786447872,214,0 +170786447920,213,0 +170786447967,213,0 +170786448017,213,0 +170786448066,213,0 +170786448116,213,0 +170786448164,213,0 +170786448212,213,0 +170786448261,213,0 +170786448310,213,0 +170786448358,213,0 +170786448406,213,0 +170786448454,213,0 +170786448502,213,0 +170786448550,213,0 +170786448598,213,0 +170786448647,213,0 +170786448695,213,0 +170786448745,213,0 +170786448794,213,0 +170786448842,213,0 +170786448890,213,0 +170786448938,213,0 +170786448986,213,0 +170786449035,213,0 +170786449083,212,0 +170786449131,213,0 +170786449179,213,0 +170786449228,213,0 +170786449278,213,0 +170786449326,213,0 +170786449374,213,0 +170786449422,213,0 +170786449470,213,0 +170786449517,213,0 +170786449565,213,0 +170786449615,213,0 +170786449664,213,0 +170786449712,213,0 +170786449762,213,0 +170786449811,213,0 +170786449859,213,0 +170786449908,213,0 +170786449956,212,0 +170786450004,213,0 +170786450052,212,0 +170786450100,212,0 +170786450148,213,0 +170786450196,213,0 +170786450244,212,0 +170786450292,213,0 +170786450339,213,0 +170786450387,213,0 +170786450435,213,0 +170786450483,213,0 +170786450533,213,0 +170786450581,213,0 +170786450629,213,0 +170786450677,213,0 +170786450726,213,0 +170786450776,213,0 +170786450824,213,0 +170786450872,213,0 +170786450920,213,0 +170786450969,213,0 +170786451017,213,0 +170786451065,213,0 +170786451114,213,0 +170786451162,213,0 +170786451212,213,0 +170786451261,213,0 +170786451311,213,0 +170786451360,213,0 +170786451410,213,0 +170786451458,213,0 +170786451506,213,0 +170786451554,213,0 +170786451603,213,0 +170786451653,213,0 +170786451702,213,0 +170786451750,213,0 +170786451798,212,0 +170786451848,212,0 +170786451897,212,0 +170786451945,212,0 +170786451993,213,0 +170786452041,213,0 +170786452089,213,0 +170786452137,213,0 +170786452184,213,0 +170786452232,213,0 +170786452282,213,0 +170786452330,213,0 +170786452379,213,0 +170786452427,213,0 +170786452477,213,0 +170786452525,213,0 +170786452572,213,0 +170786452620,214,0 +170786452668,213,0 +170786452718,212,0 +170786452766,212,0 +170786452815,212,0 +170786452863,213,0 +170786452911,213,0 +170786452959,213,0 +170786453009,212,0 +170786453058,213,0 +170786453106,213,0 +170786453154,213,0 +170786453203,213,0 +170786453251,213,0 +170786453299,213,0 +170786453347,213,0 +170786453397,213,0 +170786453445,213,0 +170786453493,213,0 +170786453542,213,0 +170786453590,213,0 +170786453638,212,0 +170786453687,212,0 +170786453737,212,0 +170786453786,213,0 +170786453834,213,0 +170786453884,213,0 +170786453933,213,0 +170786453981,213,0 +170786454029,213,0 +170786454077,213,0 +170786454127,213,0 +170786454175,213,0 +170786454223,213,0 +170786454270,214,0 +170786454318,214,0 +170786454366,214,0 +170786454416,213,0 +170786454464,213,0 +170786454512,213,0 +170786454561,213,0 +170786454609,213,0 +170786454659,213,0 +170786454707,213,0 +170786454756,213,0 +170786454804,213,0 +170786454852,213,0 +170786454900,213,0 +170786454949,213,0 +170786454999,214,0 +170786455046,214,0 +170786455094,214,0 +170786455142,214,0 +170786455192,213,0 +170786455240,213,0 +170786455289,214,0 +170786455337,213,0 +170786455387,213,0 +170786455434,212,0 +170786455484,213,0 +170786455532,212,0 +170786455581,213,0 +170786455629,213,0 +170786455677,213,0 +170786455725,213,0 +170786455773,213,0 +170786455821,213,0 +170786455869,213,0 +170786455917,213,0 +170786455965,214,0 +170786456013,213,0 +170786456062,213,0 +170786456110,213,0 +170786456158,214,0 +170786456208,213,0 +170786456257,213,0 +170786456307,213,0 +170786456354,212,0 +170786456404,212,0 +170786456452,212,0 +170786456501,212,0 +170786456549,212,0 +170786456599,212,0 +170786456648,213,0 +170786456696,213,0 +170786456746,213,0 +170786456794,213,0 +170786456843,213,0 +170786456891,213,0 +170786456939,213,0 +170786456988,213,0 +170786457036,213,0 +170786457084,213,0 +170786457132,213,0 +170786457180,213,0 +170786457230,213,0 +170786457279,212,0 +170786457327,212,0 +170786457375,213,0 +170786457423,212,0 +170786457473,212,0 +170786457521,213,0 +170786457568,213,0 +170786457616,213,0 +170786457666,213,0 +170786457714,213,0 +170786457763,213,0 +170786457811,213,0 +170786457861,213,0 +170786457910,213,0 +170786457958,213,0 +170786458006,214,0 +170786458056,213,0 +170786458105,213,0 +170786458153,213,0 +170786458201,212,0 +170786458249,212,0 +170786458297,212,0 +170786458345,212,0 +170786458393,213,0 +170786458440,213,0 +170786458488,213,0 +170786458538,213,0 +170786458587,213,0 +170786458635,213,0 +170786458684,213,0 +170786458732,213,0 +170786458780,213,0 +170786458828,213,0 +170786458877,213,0 +170786458925,213,0 +170786458973,213,0 +170786459021,213,0 +170786459069,213,0 +170786459117,213,0 +170786459165,212,0 +170786459213,213,0 +170786459261,212,0 +170786459309,213,0 +170786459358,212,0 +170786459407,213,0 +170786459455,213,0 +170786459503,213,0 +170786459551,213,0 +170786459601,213,0 +170786459650,213,0 +170786459700,213,0 +170786459749,213,0 +170786459799,213,0 +170786459847,213,0 +170786459896,213,0 +170786459946,213,0 +170786459994,213,0 +170786460043,213,0 +170786460093,212,0 +170786460142,213,0 +170786460192,212,0 +170786460240,212,0 +170786460288,212,0 +170786460337,212,0 +170786460387,213,0 +170786460436,213,0 +170786460484,213,0 +170786460532,213,0 +170786460580,213,0 +170786460628,213,0 +170786460678,213,0 +170786460725,213,0 +170786460775,213,0 +170786460823,213,0 +170786460871,213,0 +170786460920,213,0 +170786460970,213,0 +170786461018,212,0 +170786461066,212,0 +170786461114,212,0 +170786461162,212,0 +170786461211,213,0 +170786461259,213,0 +170786461307,213,0 +170786461355,213,0 +170786461403,213,0 +170786461451,213,0 +170786461499,213,0 +170786461548,213,0 +170786461596,213,0 +170786461644,213,0 +170786461692,213,0 +170786461740,214,0 +170786461789,213,0 +170786461837,214,0 +170786461887,213,0 +170786461935,212,0 +170786461984,213,0 +170786462032,213,0 +170786462080,213,0 +170786462128,213,0 +170786462176,213,0 +170786462225,213,0 +170786462275,213,0 +170786462323,213,0 +170786462371,213,0 +170786462418,213,0 +170786462466,213,0 +170786462514,213,0 +170786462564,214,0 +170786462612,214,0 +170786462661,214,0 +170786462709,214,0 +170786462757,213,0 +170786462805,213,0 +170786462853,213,0 +170786462903,213,0 +170786462952,213,0 +170786463002,213,0 +170786463049,213,0 +170786463097,213,0 +170786463145,213,0 +170786463195,213,0 +170786463243,213,0 +170786463291,213,0 +170786463338,213,0 +170786463386,213,0 +170786463436,213,0 +170786463484,213,0 +170786463533,213,0 +170786463581,214,0 +170786463629,214,0 +170786463677,214,0 +170786463725,213,0 +170786463773,213,0 +170786463821,213,0 +170786463869,212,0 +170786463917,213,0 +170786463966,213,0 +170786464016,213,0 +170786464064,213,0 +170786464113,213,0 +170786464161,213,0 +170786464209,213,0 +170786464257,213,0 +170786464307,213,0 +170786464354,213,0 +170786464402,213,0 +170786464450,213,0 +170786464500,213,0 +170786464548,214,0 +170786464596,214,0 +170786464643,213,0 +170786464691,213,0 +170786464739,212,0 +170786464787,213,0 +170786464835,213,0 +170786464885,213,0 +170786464933,213,0 +170786464980,213,0 +170786465030,213,0 +170786465078,213,0 +170786465126,213,0 +170786465174,213,0 +170786465222,213,0 +170786465270,213,0 +170786465319,213,0 +170786465367,213,0 +170786465416,213,0 +170786465464,213,0 +170786465512,214,0 +170786465560,214,0 +170786465609,213,0 +170786465657,213,0 +170786465705,213,0 +170786465753,213,0 +170786465801,213,0 +170786465849,213,0 +170786465897,213,0 +170786465945,213,0 +170786465993,213,0 +170786466041,213,0 +170786466090,213,0 +170786466138,213,0 +170786466187,213,0 +170786466235,213,0 +170786466283,213,0 +170786466333,213,0 +170786466381,213,0 +170786466429,213,0 +170786466477,214,0 +170786466524,214,0 +170786466574,213,0 +170786466622,212,0 +170786466670,212,0 +170786466718,212,0 +170786466766,213,0 +170786466814,213,0 +170786466862,213,0 +170786466911,213,0 +170786466959,213,0 +170786467009,213,0 +170786467057,213,0 +170786467104,213,0 +170786467152,213,0 +170786467202,213,0 +170786467250,214,0 +170786467297,214,0 +170786467347,214,0 +170786467395,213,0 +170786467443,213,0 +170786467492,212,0 +170786467540,212,0 +170786467590,212,0 +170786467638,212,0 +170786467687,213,0 +170786467735,213,0 +170786467783,213,0 +170786467831,213,0 +170786467880,213,0 +170786467930,213,0 +170786467978,213,0 +170786468026,213,0 +170786468073,213,0 +170786468123,213,0 +170786468171,213,0 +170786468219,213,0 +170786468267,214,0 +170786468316,213,0 +170786468364,213,0 +170786468414,213,0 +170786468461,212,0 +170786468509,212,0 +170786468557,212,0 +170786468605,213,0 +170786468653,213,0 +170786468701,213,0 +170786468750,213,0 +170786468798,213,0 +170786468846,213,0 +170786468894,213,0 +170786468942,213,0 +170786468990,213,0 +170786469037,213,0 +170786469087,213,0 +170786469135,213,0 +170786469183,214,0 +170786469232,213,0 +170786469280,213,0 +170786469328,213,0 +170786469376,212,0 +170786469424,212,0 +170786469472,212,0 +170786469521,212,0 +170786469569,213,0 +170786469618,213,0 +170786469666,213,0 +170786469714,213,0 +170786469763,213,0 +170786469811,213,0 +170786469859,213,0 +170786469907,213,0 +170786469955,213,0 +170786470003,213,0 +170786470051,213,0 +170786470099,214,0 +170786470148,213,0 +170786470197,213,0 +170786470247,213,0 +170786470296,212,0 +170786470344,213,0 +170786470392,213,0 +170786470442,212,0 +170786470490,212,0 +170786470539,213,0 +170786470587,213,0 +170786470635,213,0 +170786470683,213,0 +170786470732,213,0 +170786470780,213,0 +170786470828,213,0 +170786470876,213,0 +170786470924,213,0 +170786470973,213,0 +170786471021,213,0 +170786471071,213,0 +170786471118,213,0 +170786471166,214,0 +170786471216,213,0 +170786471265,212,0 +170786471313,212,0 +170786471361,212,0 +170786471409,212,0 +170786471457,213,0 +170786471505,213,0 +170786471553,213,0 +170786471602,213,0 +170786471650,213,0 +170786471698,213,0 +170786471746,213,0 +170786471794,213,0 +170786471842,213,0 +170786471890,213,0 +170786471939,213,0 +170786471989,213,0 +170786472037,214,0 +170786472085,213,0 +170786472134,213,0 +170786472182,213,0 +170786472232,212,0 +170786472280,212,0 +170786472329,212,0 +170786472377,213,0 +170786472426,213,0 +170786472474,213,0 +170786472522,213,0 +170786472570,213,0 +170786472620,213,0 +170786472668,213,0 +170786472717,213,0 +170786472765,213,0 +170786472815,213,0 +170786472864,214,0 +170786472912,214,0 +170786472960,214,0 +170786473008,213,0 +170786473057,213,0 +170786473107,212,0 +170786473155,212,0 +170786473204,213,0 +170786473254,213,0 +170786473303,213,0 +170786473351,213,0 +170786473399,213,0 +170786473449,213,0 +170786473498,213,0 +170786473546,213,0 +170786473596,213,0 +170786473644,213,0 +170786473691,213,0 +170786473739,213,0 +170786473787,213,0 +170786473835,213,0 +170786473883,213,0 +170786473931,213,0 +170786473980,213,0 +170786474028,212,0 +170786474076,212,0 +170786474125,212,0 +170786474173,213,0 +170786474223,213,0 +170786474272,212,0 +170786474322,213,0 +170786474370,213,0 +170786474419,213,0 +170786474469,213,0 +170786474518,213,0 +170786474567,213,0 +170786474615,213,0 +170786474663,213,0 +170786474711,213,0 +170786474759,213,0 +170786474807,213,0 +170786474857,213,0 +170786474905,213,0 +170786474954,212,0 +170786475002,213,0 +170786475050,213,0 +170786475098,213,0 +170786475146,213,0 +170786475195,213,0 +170786475243,213,0 +170786475292,213,0 +170786475340,213,0 +170786475388,213,0 +170786475436,213,0 +170786475484,214,0 +170786475532,213,0 +170786475579,214,0 +170786475629,214,0 +170786475677,214,0 +170786475725,213,0 +170786475773,213,0 +170786475820,213,0 +170786475868,213,0 +170786475916,213,0 +170786475964,213,0 +170786476012,213,0 +170786476060,213,0 +170786476108,213,0 +170786476157,213,0 +170786476205,213,0 +170786476254,213,0 +170786476302,213,0 +170786476350,213,0 +170786476398,213,0 +170786476447,214,0 +170786476495,213,0 +170786476543,214,0 +170786476593,213,0 +170786476641,214,0 +170786476689,214,0 +170786476738,213,0 +170786476786,213,0 +170786476834,213,0 +170786476883,213,0 +170786476931,213,0 +170786476979,213,0 +170786477027,213,0 +170786477075,214,0 +170786477123,214,0 +170786477172,214,0 +170786477222,214,0 +170786477270,214,0 +170786477318,214,0 +170786477365,214,0 +170786477415,214,0 +170786477464,214,0 +170786477514,214,0 +170786477563,214,0 +170786477613,213,0 +170786477661,214,0 +170786477710,213,0 +170786477758,213,0 +170786477806,213,0 +170786477856,213,0 +170786477905,213,0 +170786477953,213,0 +170786478002,213,0 +170786478050,213,0 +170786478098,213,0 +170786478148,213,0 +170786478196,213,0 +170786478245,213,0 +170786478293,213,0 +170786478343,213,0 +170786478390,214,0 +170786478440,214,0 +170786478489,213,0 +170786478539,213,0 +170786478588,213,0 +170786478636,212,0 +170786478686,212,0 +170786478734,212,0 +170786478783,213,0 +170786478833,213,0 +170786478882,213,0 +170786478930,213,0 +170786478978,213,0 +170786479026,213,0 +170786479074,213,0 +170786479122,213,0 +170786479170,213,0 +170786479217,213,0 +170786479265,213,0 +170786479313,213,0 +170786479361,213,0 +170786479409,213,0 +170786479457,213,0 +170786479505,214,0 +170786479553,213,0 +170786479602,213,0 +170786479652,212,0 +170786479699,213,0 +170786479747,213,0 +170786479795,213,0 +170786479843,213,0 +170786479891,213,0 +170786479939,213,0 +170786479987,213,0 +170786480035,213,0 +170786480083,213,0 +170786480131,213,0 +170786480179,213,0 +170786480227,213,0 +170786480275,214,0 +170786480324,214,0 +170786480374,213,0 +170786480422,213,0 +170786480470,213,0 +170786480519,212,0 +170786480569,213,0 +170786480616,213,0 +170786480664,213,0 +170786480712,213,0 +170786480760,213,0 +170786480809,213,0 +170786480857,213,0 +170786480907,213,0 +170786480955,213,0 +170786481004,213,0 +170786481052,213,0 +170786481100,213,0 +170786481148,213,0 +170786481196,213,0 +170786481244,214,0 +170786481294,213,0 +170786481342,213,0 +170786481390,213,0 +170786481437,213,0 +170786481485,213,0 +170786481533,213,0 +170786481581,213,0 +170786481629,213,0 +170786481677,213,0 +170786481727,213,0 +170786481774,213,0 +170786481822,213,0 +170786481870,213,0 +170786481918,213,0 +170786481968,213,0 +170786482017,213,0 +170786482065,213,0 +170786482113,213,0 +170786482161,214,0 +170786482209,214,0 +170786482257,213,0 +170786482305,213,0 +170786482353,213,0 +170786482401,213,0 +170786482449,213,0 +170786482498,213,0 +170786482548,213,0 +170786482595,213,0 +170786482643,213,0 +170786482691,213,0 +170786482739,213,0 +170786482787,213,0 +170786482835,213,0 +170786482884,213,0 +170786482932,213,0 +170786482980,213,0 +170786483030,214,0 +170786483078,213,0 +170786483126,214,0 +170786483173,214,0 +170786483221,213,0 +170786483269,213,0 +170786483317,212,0 +170786483365,213,0 +170786483413,213,0 +170786483461,213,0 +170786483509,213,0 +170786483557,213,0 +170786483605,213,0 +170786483653,213,0 +170786483700,213,0 +170786483748,213,0 +170786483796,213,0 +170786483844,214,0 +170786483892,213,0 +170786483940,213,0 +170786483988,213,0 +170786484036,213,0 +170786484084,213,0 +170786484132,214,0 +170786484180,213,0 +170786484229,212,0 +170786484279,212,0 +170786484327,213,0 +170786484374,213,0 +170786484422,213,0 +170786484472,213,0 +170786484520,213,0 +170786484567,213,0 +170786484617,213,0 +170786484666,213,0 +170786484716,213,0 +170786484764,213,0 +170786484812,213,0 +170786484861,213,0 +170786484909,214,0 +170786484959,214,0 +170786485008,213,0 +170786485056,214,0 +170786485106,213,0 +170786485155,213,0 +170786485203,212,0 +170786485251,213,0 +170786485299,212,0 +170786485347,213,0 +170786485396,213,0 +170786485444,213,0 +170786485492,213,0 +170786485540,213,0 +170786485590,213,0 +170786485637,213,0 +170786485685,213,0 +170786485733,213,0 +170786485781,213,0 +170786485829,213,0 +170786485877,213,0 +170786485927,213,0 +170786485975,213,0 +170786486022,214,0 +170786486070,213,0 +170786486120,212,0 +170786486168,212,0 +170786486216,212,0 +170786486264,212,0 +170786486313,213,0 +170786486363,213,0 +170786486410,213,0 +170786486458,213,0 +170786486506,213,0 +170786486554,213,0 +170786486602,213,0 +170786486650,213,0 +170786486698,213,0 +170786486746,214,0 +170786486794,213,0 +170786486842,213,0 +170786486890,214,0 +170786486938,214,0 +170786486987,213,0 +170786487035,212,0 +170786487083,212,0 +170786487131,212,0 +170786487179,212,0 +170786487227,213,0 +170786487274,213,0 +170786487322,213,0 +170786487372,212,0 +170786487420,213,0 +170786487469,213,0 +170786487517,213,0 +170786487567,213,0 +170786487615,213,0 +170786487664,213,0 +170786487712,213,0 +170786487761,213,0 +170786487809,213,0 +170786487857,213,0 +170786487905,213,0 +170786487954,213,0 +170786488004,212,0 +170786488053,212,0 +170786488101,212,0 +170786488149,213,0 +170786488197,212,0 +170786488245,213,0 +170786488293,213,0 +170786488341,213,0 +170786488390,213,0 +170786488440,213,0 +170786488487,213,0 +170786488535,213,0 +170786488583,213,0 +170786488631,213,0 +170786488679,213,0 +170786488727,213,0 +170786488774,213,0 +170786488822,213,0 +170786488870,212,0 +170786488918,213,0 +170786488966,213,0 +170786489016,213,0 +170786489063,213,0 +170786489113,213,0 +170786489161,213,0 +170786489209,213,0 +170786489257,213,0 +170786489305,213,0 +170786489354,213,0 +170786489404,213,0 +170786489453,213,0 +170786489501,214,0 +170786489549,213,0 +170786489597,214,0 +170786489646,214,0 +170786489694,213,0 +170786489742,213,0 +170786489790,213,0 +170786489839,212,0 +170786489887,213,0 +170786489935,213,0 +170786489983,213,0 +170786490031,213,0 +170786490079,213,0 +170786490128,213,0 +170786490178,213,0 +170786490226,213,0 +170786490273,213,0 +170786490321,213,0 +170786490371,213,0 +170786490420,214,0 +170786490470,213,0 +170786490519,214,0 +170786490567,214,0 +170786490616,213,0 +170786490664,213,0 +170786490714,213,0 +170786490762,212,0 +170786490810,213,0 +170786490858,213,0 +170786490906,213,0 +170786490955,213,0 +170786491003,213,0 +170786491053,213,0 +170786491102,213,0 +170786491150,213,0 +170786491198,213,0 +170786491246,213,0 +170786491295,213,0 +170786491343,213,0 +170786491391,213,0 +170786491439,213,0 +170786491489,214,0 +170786491538,214,0 +170786491586,214,0 +170786491634,213,0 +170786491682,213,0 +170786491732,213,0 +170786491780,213,0 +170786491828,213,0 +170786491876,213,0 +170786491923,213,0 +170786491971,213,0 +170786492019,213,0 +170786492069,213,0 +170786492118,213,0 +170786492168,213,0 +170786492216,213,0 +170786492265,213,0 +170786492315,213,0 +170786492363,214,0 +170786492412,214,0 +170786492462,213,0 +170786492511,213,0 +170786492559,213,0 +170786492608,212,0 +170786492658,213,0 +170786492706,213,0 +170786492754,213,0 +170786492803,213,0 +170786492851,213,0 +170786492899,213,0 +170786492949,213,0 +170786492997,213,0 +170786493046,213,0 +170786493094,213,0 +170786493142,213,0 +170786493190,213,0 +170786493238,213,0 +170786493286,214,0 +170786493334,214,0 +170786493382,213,0 +170786493430,214,0 +170786493479,213,0 +170786493529,213,0 +170786493578,213,0 +170786493626,213,0 +170786493674,212,0 +170786493722,213,0 +170786493770,213,0 +170786493818,213,0 +170786493866,213,0 +170786493915,213,0 +170786493963,213,0 +170786494013,213,0 +170786494060,213,0 +170786494110,213,0 +170786494159,213,0 +170786494207,213,0 +170786494255,213,0 +170786494303,213,0 +170786494351,214,0 +170786494399,213,0 +170786494447,213,0 +170786494496,212,0 +170786494546,212,0 +170786494594,213,0 +170786494642,213,0 +170786494691,213,0 +170786494741,213,0 +170786494790,213,0 +170786494838,213,0 +170786494886,213,0 +170786494934,213,0 +170786494983,213,0 +170786495031,213,0 +170786495081,213,0 +170786495129,213,0 +170786495177,213,0 +170786495225,214,0 +170786495272,213,0 +170786495322,213,0 +170786495370,213,0 +170786495417,213,0 +170786495466,213,0 +170786495513,213,0 +170786495561,213,0 +170786495609,213,0 +170786495657,213,0 +170786495705,213,0 +170786495753,213,0 +170786495803,213,0 +170786495851,213,0 +170786495899,213,0 +170786495948,213,0 +170786495997,213,0 +170786496045,213,0 +170786496093,213,0 +170786496143,213,0 +170786496192,213,0 +170786496240,213,0 +170786496288,213,0 +170786496336,212,0 +170786496384,213,0 +170786496433,213,0 +170786496481,212,0 +170786496531,213,0 +170786496579,213,0 +170786496627,213,0 +170786496674,213,0 +170786496722,213,0 +170786496770,213,0 +170786496818,213,0 +170786496866,213,0 +170786496914,213,0 +170786496962,213,0 +170786497010,213,0 +170786497058,213,0 +170786497106,213,0 +170786497154,213,0 +170786497202,213,0 +170786497250,213,0 +170786497298,213,0 +170786497346,213,0 +170786497393,213,0 +170786497441,213,0 +170786497491,213,0 +170786497539,213,0 +170786497588,213,0 +170786497636,213,0 +170786497684,213,0 +170786497732,213,0 +170786497780,213,0 +170786497828,213,0 +170786497876,213,0 +170786497924,214,0 +170786497972,214,0 +170786498020,214,0 +170786498068,213,0 +170786498115,213,0 +170786498163,213,0 +170786498211,213,0 +170786498259,213,0 +170786498307,213,0 +170786498355,213,0 +170786498404,213,0 +170786498454,213,0 +170786498502,213,0 +170786498549,213,0 +170786498597,214,0 +170786498645,213,0 +170786498695,213,0 +170786498744,214,0 +170786498792,213,0 +170786498840,214,0 +170786498888,214,0 +170786498938,214,0 +170786498985,214,0 +170786499033,213,0 +170786499083,213,0 +170786499132,212,0 +170786499182,213,0 +170786499230,213,0 +170786499278,213,0 +170786499326,213,0 +170786499373,213,0 +170786499421,213,0 +170786499469,213,0 +170786499517,213,0 +170786499565,213,0 +170786499613,213,0 +170786499661,213,0 +170786499709,213,0 +170786499757,214,0 +170786499806,213,0 +170786499856,214,0 +170786499905,214,0 +170786499953,213,0 +170786500001,213,0 +170786500049,213,0 +170786500099,212,0 +170786500147,213,0 +170786500194,212,0 +170786500242,213,0 +170786500292,213,0 +170786500340,213,0 +170786500387,213,0 +170786500437,213,0 +170786500485,213,0 +170786500533,213,0 +170786500582,213,0 +170786500630,213,0 +170786500678,213,0 +170786500727,213,0 +170786500775,213,0 +170786500823,213,0 +170786500872,213,0 +170786500922,213,0 +170786500971,213,0 +170786501019,212,0 +170786501069,213,0 +170786501116,213,0 +170786501166,213,0 +170786501214,213,0 +170786501262,213,0 +170786501310,213,0 +170786501358,213,0 +170786501406,213,0 +170786501454,213,0 +170786501502,213,0 +170786501551,213,0 +170786501600,213,0 +170786501650,213,0 +170786501698,213,0 +170786501746,214,0 +170786501793,213,0 +170786501841,213,0 +170786501889,213,0 +170786501937,212,0 +170786501987,213,0 +170786502034,213,0 +170786502082,213,0 +170786502130,213,0 +170786502178,213,0 +170786502226,213,0 +170786502274,213,0 +170786502322,213,0 +170786502370,213,0 +170786502417,213,0 +170786502465,213,0 +170786502514,214,0 +170786502562,213,0 +170786502610,213,0 +170786502658,213,0 +170786502706,214,0 +170786502754,213,0 +170786502804,213,0 +170786502853,212,0 +170786502901,212,0 +170786502949,212,0 +170786502997,213,0 +170786503045,212,0 +170786503094,213,0 +170786503142,213,0 +170786503192,213,0 +170786503240,213,0 +170786503287,213,0 +170786503335,213,0 +170786503383,213,0 +170786503433,213,0 +170786503481,213,0 +170786503529,213,0 +170786503577,213,0 +170786503624,213,0 +170786503674,213,0 +170786503723,213,0 +170786503771,212,0 +170786503819,212,0 +170786503869,213,0 +170786503917,213,0 +170786503965,213,0 +170786504014,213,0 +170786504064,213,0 +170786504112,213,0 +170786504160,213,0 +170786504209,213,0 +170786504259,213,0 +170786504308,213,0 +170786504358,213,0 +170786504406,213,0 +170786504454,213,0 +170786504502,213,0 +170786504549,214,0 +170786504597,213,0 +170786504645,213,0 +170786504693,213,0 +170786504741,213,0 +170786504789,213,0 +170786504837,212,0 +170786504886,213,0 +170786504934,213,0 +170786504982,213,0 +170786505032,213,0 +170786505080,213,0 +170786505127,213,0 +170786505177,213,0 +170786505225,213,0 +170786505274,213,0 +170786505324,213,0 +170786505372,213,0 +170786505421,213,0 +170786505471,213,0 +170786505518,213,0 +170786505568,214,0 +170786505616,213,0 +170786505663,213,0 +170786505713,212,0 +170786505762,213,0 +170786505812,213,0 +170786505860,213,0 +170786505908,213,0 +170786505956,213,0 +170786506005,213,0 +170786506053,213,0 +170786506101,213,0 +170786506149,214,0 +170786506197,213,0 +170786506245,214,0 +170786506293,214,0 +170786506340,214,0 +170786506388,213,0 +170786506436,214,0 +170786506486,213,0 +170786506535,213,0 +170786506585,213,0 +170786506633,213,0 +170786506680,213,0 +170786506728,213,0 +170786506776,213,0 +170786506826,213,0 +170786506873,213,0 +170786506921,213,0 +170786506969,213,0 +170786507017,213,0 +170786507065,213,0 +170786507112,214,0 +170786507160,214,0 +170786507208,214,0 +170786507256,214,0 +170786507304,214,0 +170786507351,214,0 +170786507399,214,0 +170786507447,213,0 +170786507495,213,0 +170786507543,213,0 +170786507591,213,0 +170786507638,213,0 +170786507686,213,0 +170786507734,213,0 +170786507782,213,0 +170786507830,213,0 +170786507878,213,0 +170786507925,213,0 +170786507973,213,0 +170786508021,214,0 +170786508069,213,0 +170786508117,214,0 +170786508165,214,0 +170786508213,214,0 +170786508260,214,0 +170786508310,214,0 +170786508357,213,0 +170786508405,213,0 +170786508453,212,0 +170786508501,213,0 +170786508549,213,0 +170786508597,213,0 +170786508646,213,0 +170786508694,213,0 +170786508742,213,0 +170786508790,213,0 +170786508838,213,0 +170786508886,213,0 +170786508934,213,0 +170786508981,213,0 +170786509029,213,0 +170786509077,213,0 +170786509125,214,0 +170786509173,214,0 +170786509221,214,0 +170786509269,213,0 +170786509316,213,0 +170786509364,212,0 +170786509412,213,0 +170786509460,213,0 +170786509508,213,0 +170786509555,213,0 +170786509603,213,0 +170786509651,213,0 +170786509699,213,0 +170786509747,213,0 +170786509795,213,0 +170786509843,213,0 +170786509892,213,0 +170786509940,213,0 +170786509988,213,0 +170786510036,213,0 +170786510084,213,0 +170786510132,213,0 +170786510180,214,0 +170786510227,213,0 +170786510277,213,0 +170786510325,213,0 +170786510373,212,0 +170786510421,213,0 +170786510469,213,0 +170786510516,212,0 +170786510564,213,0 +170786510612,213,0 +170786510660,213,0 +170786510708,213,0 +170786510757,213,0 +170786510807,213,0 +170786510856,213,0 +170786510904,213,0 +170786510952,213,0 +170786511002,213,0 +170786511050,214,0 +170786511099,213,0 +170786511149,213,0 +170786511198,213,0 +170786511246,212,0 +170786511294,213,0 +170786511344,213,0 +170786511392,213,0 +170786511440,213,0 +170786511489,213,0 +170786511537,213,0 +170786511585,213,0 +170786511633,213,0 +170786511681,213,0 +170786511730,213,0 +170786511778,213,0 +170786511826,213,0 +170786511874,213,0 +170786511922,213,0 +170786511971,213,0 +170786512019,214,0 +170786512067,213,0 +170786512117,213,0 +170786512165,213,0 +170786512212,213,0 +170786512262,213,0 +170786512310,213,0 +170786512358,213,0 +170786512406,213,0 +170786512455,213,0 +170786512503,213,0 +170786512551,213,0 +170786512598,213,0 +170786512648,213,0 +170786512696,213,0 +170786512744,213,0 +170786512793,213,0 +170786512841,213,0 +170786512889,214,0 +170786512937,214,0 +170786512985,213,0 +170786513033,213,0 +170786513082,212,0 +170786513130,212,0 +170786513178,213,0 +170786513226,212,0 +170786513276,213,0 +170786513324,213,0 +170786513372,213,0 +170786513420,213,0 +170786513467,213,0 +170786513517,213,0 +170786513565,213,0 +170786513613,213,0 +170786513660,213,0 +170786513708,213,0 +170786513756,213,0 +170786513806,213,0 +170786513855,213,0 +170786513903,213,0 +170786513952,213,0 +170786514000,213,0 +170786514048,212,0 +170786514098,212,0 +170786514146,213,0 +170786514195,212,0 +170786514243,213,0 +170786514291,213,0 +170786514339,212,0 +170786514388,213,0 +170786514436,213,0 +170786514484,213,0 +170786514532,213,0 +170786514581,213,0 +170786514629,213,0 +170786514679,213,0 +170786514727,213,0 +170786514774,213,0 +170786514822,213,0 +170786514870,213,0 +170786514920,213,0 +170786514968,212,0 +170786515015,212,0 +170786515063,212,0 +170786515111,212,0 +170786515159,213,0 +170786515207,213,0 +170786515255,212,0 +170786515304,213,0 +170786515352,213,0 +170786515400,213,0 +170786515448,213,0 +170786515498,213,0 +170786515545,213,0 +170786515593,213,0 +170786515641,213,0 +170786515691,213,0 +170786515738,213,0 +170786515786,213,0 +170786515836,213,0 +170786515884,213,0 +170786515932,213,0 +170786515981,213,0 +170786516029,213,0 +170786516077,213,0 +170786516125,213,0 +170786516174,213,0 +170786516222,213,0 +170786516271,213,0 +170786516321,213,0 +170786516369,213,0 +170786516417,213,0 +170786516464,213,0 +170786516512,213,0 +170786516562,213,0 +170786516611,213,0 +170786516659,213,0 +170786516707,213,0 +170786516755,213,0 +170786516803,212,0 +170786516851,212,0 +170786516899,213,0 +170786516946,213,0 +170786516994,213,0 +170786517042,213,0 +170786517090,213,0 +170786517138,213,0 +170786517186,213,0 +170786517234,213,0 +170786517282,213,0 +170786517330,213,0 +170786517378,213,0 +170786517426,213,0 +170786517475,213,0 +170786517523,213,0 +170786517571,213,0 +170786517620,213,0 +170786517668,213,0 +170786517718,213,0 +170786517766,212,0 +170786517814,213,0 +170786517861,213,0 +170786517911,213,0 +170786517959,213,0 +170786518006,213,0 +170786518056,213,0 +170786518105,213,0 +170786518153,213,0 +170786518201,213,0 +170786518249,213,0 +170786518296,214,0 +170786518344,214,0 +170786518392,213,0 +170786518440,214,0 +170786518488,214,0 +170786518535,214,0 +170786518583,213,0 +170786518633,213,0 +170786518682,213,0 +170786518730,213,0 +170786518778,213,0 +170786518828,213,0 +170786518877,213,0 +170786518925,213,0 +170786518974,213,0 +170786519022,213,0 +170786519072,213,0 +170786519121,213,0 +170786519169,213,0 +170786519219,214,0 +170786519267,214,0 +170786519315,214,0 +170786519362,214,0 +170786519410,214,0 +170786519458,214,0 +170786519506,213,0 +170786519554,213,0 +170786519602,213,0 +170786519651,213,0 +170786519699,213,0 +170786519747,213,0 +170786519795,213,0 +170786519843,213,0 +170786519893,214,0 +170786519940,213,0 +170786519988,214,0 diff --git a/laser_value/0214-09.csv b/laser_value/0214-09.csv new file mode 100644 index 0000000..7d9ca5b --- /dev/null +++ b/laser_value/0214-09.csv @@ -0,0 +1,7451 @@ +timestamp,laser_value,event +170786520037,214,0 +170786520085,214,0 +170786520133,214,0 +170786520182,214,0 +170786520230,214,0 +170786520279,214,0 +170786520327,214,0 +170786520377,214,0 +170786520425,213,0 +170786520473,213,0 +170786520522,213,0 +170786520570,213,0 +170786520620,213,0 +170786520669,213,0 +170786520717,213,0 +170786520766,213,0 +170786520816,213,0 +170786520864,214,0 +170786520912,214,0 +170786520960,213,0 +170786521008,214,0 +170786521057,214,0 +170786521105,214,0 +170786521153,214,0 +170786521201,214,0 +170786521250,214,0 +170786521298,214,0 +170786521348,214,0 +170786521396,213,0 +170786521444,213,0 +170786521493,213,0 +170786521541,213,0 +170786521589,213,0 +170786521638,213,0 +170786521688,213,0 +170786521737,213,0 +170786521785,214,0 +170786521833,214,0 +170786521881,214,0 +170786521929,214,0 +170786521977,214,0 +170786522024,214,0 +170786522072,214,0 +170786522122,213,0 +170786522170,214,0 +170786522218,213,0 +170786522267,213,0 +170786522317,213,0 +170786522365,213,0 +170786522412,213,0 +170786522460,213,0 +170786522508,213,0 +170786522557,213,0 +170786522605,213,0 +170786522655,213,0 +170786522704,213,0 +170786522752,213,0 +170786522800,213,0 +170786522848,213,0 +170786522896,213,0 +170786522943,213,0 +170786522993,214,0 +170786523041,214,0 +170786523090,213,0 +170786523138,213,0 +170786523186,213,0 +170786523234,213,0 +170786523283,212,0 +170786523331,212,0 +170786523381,212,0 +170786523430,213,0 +170786523478,213,0 +170786523526,213,0 +170786523576,213,0 +170786523624,213,0 +170786523672,213,0 +170786523719,213,0 +170786523767,213,0 +170786523815,213,0 +170786523865,213,0 +170786523913,213,0 +170786523962,214,0 +170786524010,214,0 +170786524058,213,0 +170786524106,214,0 +170786524154,213,0 +170786524203,212,0 +170786524251,213,0 +170786524301,213,0 +170786524349,213,0 +170786524396,212,0 +170786524446,213,0 +170786524495,213,0 +170786524543,213,0 +170786524591,213,0 +170786524640,213,0 +170786524688,213,0 +170786524736,213,0 +170786524784,213,0 +170786524832,213,0 +170786524880,213,0 +170786524928,213,0 +170786524977,214,0 +170786525025,213,0 +170786525073,213,0 +170786525121,213,0 +170786525170,213,0 +170786525218,212,0 +170786525268,212,0 +170786525316,212,0 +170786525364,212,0 +170786525413,212,0 +170786525461,213,0 +170786525509,212,0 +170786525557,213,0 +170786525605,213,0 +170786525653,213,0 +170786525702,213,0 +170786525750,213,0 +170786525800,213,0 +170786525847,213,0 +170786525895,213,0 +170786525945,213,0 +170786525993,213,0 +170786526041,213,0 +170786526088,213,0 +170786526138,213,0 +170786526186,212,0 +170786526234,213,0 +170786526281,213,0 +170786526329,213,0 +170786526377,213,0 +170786526425,213,0 +170786526473,213,0 +170786526521,213,0 +170786526569,213,0 +170786526617,213,0 +170786526665,213,0 +170786526714,213,0 +170786526762,213,0 +170786526810,214,0 +170786526858,214,0 +170786526906,214,0 +170786526953,213,0 +170786527001,212,0 +170786527049,213,0 +170786527099,212,0 +170786527148,212,0 +170786527196,213,0 +170786527244,213,0 +170786527294,213,0 +170786527341,213,0 +170786527391,213,0 +170786527439,213,0 +170786527488,213,0 +170786527536,213,0 +170786527586,213,0 +170786527633,213,0 +170786527681,213,0 +170786527729,214,0 +170786527779,213,0 +170786527827,213,0 +170786527874,213,0 +170786527922,213,0 +170786527970,212,0 +170786528020,212,0 +170786528068,213,0 +170786528115,213,0 +170786528165,213,0 +170786528213,213,0 +170786528261,213,0 +170786528309,213,0 +170786528357,213,0 +170786528404,213,0 +170786528452,213,0 +170786528500,213,0 +170786528550,213,0 +170786528598,213,0 +170786528647,214,0 +170786528695,213,0 +170786528745,214,0 +170786528792,214,0 +170786528842,213,0 +170786528891,212,0 +170786528939,213,0 +170786528987,212,0 +170786529035,213,0 +170786529083,213,0 +170786529132,213,0 +170786529180,213,0 +170786529228,213,0 +170786529276,213,0 +170786529324,213,0 +170786529372,213,0 +170786529420,213,0 +170786529468,213,0 +170786529515,213,0 +170786529563,213,0 +170786529613,214,0 +170786529661,213,0 +170786529710,213,0 +170786529758,213,0 +170786529806,213,0 +170786529854,212,0 +170786529901,213,0 +170786529949,213,0 +170786529997,213,0 +170786530045,213,0 +170786530093,213,0 +170786530140,213,0 +170786530188,213,0 +170786530238,213,0 +170786530285,213,0 +170786530333,213,0 +170786530381,213,0 +170786530430,213,0 +170786530478,213,0 +170786530526,213,0 +170786530574,214,0 +170786530622,214,0 +170786530670,213,0 +170786530717,213,0 +170786530765,212,0 +170786530813,212,0 +170786530861,213,0 +170786530909,213,0 +170786530958,213,0 +170786531008,213,0 +170786531056,213,0 +170786531104,213,0 +170786531151,213,0 +170786531199,213,0 +170786531249,213,0 +170786531298,213,0 +170786531346,213,0 +170786531396,213,0 +170786531443,213,0 +170786531493,213,0 +170786531541,213,0 +170786531589,213,0 +170786531638,212,0 +170786531686,212,0 +170786531734,213,0 +170786531782,213,0 +170786531832,213,0 +170786531881,213,0 +170786531929,212,0 +170786531977,213,0 +170786532024,213,0 +170786532072,213,0 +170786532120,213,0 +170786532168,213,0 +170786532216,213,0 +170786532264,213,0 +170786532313,213,0 +170786532361,213,0 +170786532409,214,0 +170786532456,214,0 +170786532504,214,0 +170786532552,213,0 +170786532600,212,0 +170786532647,213,0 +170786532695,213,0 +170786532743,213,0 +170786532791,213,0 +170786532839,213,0 +170786532887,213,0 +170786532935,213,0 +170786532984,213,0 +170786533032,213,0 +170786533080,214,0 +170786533128,213,0 +170786533175,213,0 +170786533223,213,0 +170786533271,214,0 +170786533319,214,0 +170786533367,214,0 +170786533415,213,0 +170786533462,213,0 +170786533512,213,0 +170786533560,212,0 +170786533607,213,0 +170786533655,213,0 +170786533703,213,0 +170786533752,213,0 +170786533800,213,0 +170786533848,213,0 +170786533896,213,0 +170786533944,213,0 +170786533992,213,0 +170786534039,213,0 +170786534087,213,0 +170786534135,213,0 +170786534183,214,0 +170786534231,213,0 +170786534279,213,0 +170786534326,214,0 +170786534374,213,0 +170786534422,213,0 +170786534470,212,0 +170786534518,213,0 +170786534565,213,0 +170786534613,213,0 +170786534661,213,0 +170786534709,212,0 +170786534756,213,0 +170786534804,213,0 +170786534852,213,0 +170786534900,213,0 +170786534948,213,0 +170786534995,213,0 +170786535043,213,0 +170786535091,213,0 +170786535139,213,0 +170786535187,214,0 +170786535234,214,0 +170786535282,213,0 +170786535330,213,0 +170786535378,213,0 +170786535426,212,0 +170786535474,213,0 +170786535522,212,0 +170786535571,213,0 +170786535619,213,0 +170786535667,213,0 +170786535716,213,0 +170786535766,213,0 +170786535813,213,0 +170786535861,213,0 +170786535909,213,0 +170786535957,213,0 +170786536005,213,0 +170786536053,214,0 +170786536102,214,0 +170786536150,213,0 +170786536199,213,0 +170786536247,213,0 +170786536295,212,0 +170786536343,212,0 +170786536391,213,0 +170786536439,213,0 +170786536487,213,0 +170786536536,213,0 +170786536584,213,0 +170786536632,213,0 +170786536680,213,0 +170786536730,213,0 +170786536779,213,0 +170786536828,214,0 +170786536876,214,0 +170786536924,213,0 +170786536972,214,0 +170786537020,214,0 +170786537067,214,0 +170786537115,213,0 +170786537163,213,0 +170786537211,212,0 +170786537259,213,0 +170786537307,213,0 +170786537354,213,0 +170786537402,213,0 +170786537450,213,0 +170786537498,213,0 +170786537546,213,0 +170786537595,213,0 +170786537643,213,0 +170786537691,213,0 +170786537740,213,0 +170786537788,214,0 +170786537836,213,0 +170786537886,213,0 +170786537934,214,0 +170786537981,214,0 +170786538029,214,0 +170786538079,213,0 +170786538127,212,0 +170786538175,212,0 +170786538223,212,0 +170786538272,213,0 +170786538322,213,0 +170786538369,213,0 +170786538419,213,0 +170786538468,213,0 +170786538516,213,0 +170786538564,213,0 +170786538612,213,0 +170786538660,213,0 +170786538708,213,0 +170786538756,213,0 +170786538804,213,0 +170786538853,213,0 +170786538901,213,0 +170786538949,213,0 +170786538997,214,0 +170786539046,212,0 +170786539094,213,0 +170786539144,212,0 +170786539191,212,0 +170786539239,213,0 +170786539287,213,0 +170786539337,213,0 +170786539385,212,0 +170786539434,213,0 +170786539482,213,0 +170786539530,213,0 +170786539578,213,0 +170786539626,213,0 +170786539675,213,0 +170786539725,213,0 +170786539773,213,0 +170786539822,213,0 +170786539870,213,0 +170786539918,213,0 +170786539966,213,0 +170786540014,213,0 +170786540062,213,0 +170786540110,213,0 +170786540159,213,0 +170786540207,213,0 +170786540255,213,0 +170786540303,213,0 +170786540352,213,0 +170786540400,213,0 +170786540448,213,0 +170786540496,213,0 +170786540544,214,0 +170786540593,214,0 +170786540641,214,0 +170786540691,214,0 +170786540739,214,0 +170786540787,214,0 +170786540835,214,0 +170786540882,213,0 +170786540930,213,0 +170786540978,213,0 +170786541026,213,0 +170786541076,213,0 +170786541125,213,0 +170786541175,213,0 +170786541224,213,0 +170786541272,213,0 +170786541320,213,0 +170786541370,213,0 +170786541419,214,0 +170786541469,214,0 +170786541518,214,0 +170786541566,214,0 +170786541614,214,0 +170786541662,214,0 +170786541710,213,0 +170786541758,213,0 +170786541807,213,0 +170786541855,213,0 +170786541903,213,0 +170786541952,213,0 +170786542002,213,0 +170786542050,213,0 +170786542099,213,0 +170786542147,213,0 +170786542195,213,0 +170786542243,213,0 +170786542291,213,0 +170786542340,213,0 +170786542388,214,0 +170786542436,214,0 +170786542484,214,0 +170786542533,214,0 +170786542583,214,0 +170786542631,214,0 +170786542679,213,0 +170786542726,213,0 +170786542776,213,0 +170786542824,213,0 +170786542873,213,0 +170786542921,213,0 +170786542969,213,0 +170786543017,213,0 +170786543065,213,0 +170786543113,213,0 +170786543162,213,0 +170786543210,213,0 +170786543258,213,0 +170786543306,213,0 +170786543354,213,0 +170786543401,213,0 +170786543449,213,0 +170786543497,214,0 +170786543545,214,0 +170786543593,213,0 +170786543641,213,0 +170786543689,213,0 +170786543736,212,0 +170786543784,212,0 +170786543834,212,0 +170786543882,213,0 +170786543930,213,0 +170786543978,213,0 +170786544027,213,0 +170786544075,213,0 +170786544124,213,0 +170786544174,213,0 +170786544221,213,0 +170786544269,213,0 +170786544317,213,0 +170786544365,213,0 +170786544413,213,0 +170786544461,213,0 +170786544510,213,0 +170786544558,213,0 +170786544608,213,0 +170786544657,212,0 +170786544707,213,0 +170786544754,213,0 +170786544802,213,0 +170786544850,213,0 +170786544900,213,0 +170786544949,213,0 +170786544997,213,0 +170786545045,213,0 +170786545093,213,0 +170786545142,213,0 +170786545190,213,0 +170786545238,213,0 +170786545288,213,0 +170786545336,214,0 +170786545385,214,0 +170786545433,214,0 +170786545481,214,0 +170786545529,213,0 +170786545578,212,0 +170786545626,212,0 +170786545674,213,0 +170786545723,213,0 +170786545771,213,0 +170786545819,213,0 +170786545869,213,0 +170786545916,213,0 +170786545964,213,0 +170786546012,213,0 +170786546062,213,0 +170786546110,213,0 +170786546158,213,0 +170786546206,214,0 +170786546255,213,0 +170786546305,214,0 +170786546353,214,0 +170786546400,213,0 +170786546448,213,0 +170786546496,213,0 +170786546546,213,0 +170786546595,212,0 +170786546643,213,0 +170786546691,213,0 +170786546739,213,0 +170786546787,213,0 +170786546835,213,0 +170786546883,213,0 +170786546931,213,0 +170786546979,213,0 +170786547027,213,0 +170786547074,213,0 +170786547122,213,0 +170786547170,213,0 +170786547218,213,0 +170786547266,213,0 +170786547314,214,0 +170786547362,213,0 +170786547411,212,0 +170786547459,213,0 +170786547507,213,0 +170786547555,213,0 +170786547603,213,0 +170786547653,213,0 +170786547702,213,0 +170786547750,213,0 +170786547798,213,0 +170786547846,213,0 +170786547894,213,0 +170786547942,213,0 +170786547990,213,0 +170786548038,213,0 +170786548086,213,0 +170786548134,213,0 +170786548182,214,0 +170786548230,214,0 +170786548279,213,0 +170786548327,213,0 +170786548376,212,0 +170786548426,213,0 +170786548475,213,0 +170786548523,213,0 +170786548571,213,0 +170786548619,213,0 +170786548667,213,0 +170786548715,213,0 +170786548763,213,0 +170786548812,213,0 +170786548860,213,0 +170786548910,213,0 +170786548958,213,0 +170786549007,213,0 +170786549055,214,0 +170786549105,213,0 +170786549154,213,0 +170786549202,213,0 +170786549251,212,0 +170786549301,213,0 +170786549350,213,0 +170786549398,213,0 +170786549446,213,0 +170786549496,213,0 +170786549544,213,0 +170786549592,213,0 +170786549640,213,0 +170786549688,213,0 +170786549735,213,0 +170786549783,213,0 +170786549831,214,0 +170786549881,214,0 +170786549930,214,0 +170786549978,214,0 +170786550026,214,0 +170786550074,214,0 +170786550123,213,0 +170786550173,213,0 +170786550221,213,0 +170786550269,213,0 +170786550317,213,0 +170786550364,213,0 +170786550412,213,0 +170786550460,213,0 +170786550508,213,0 +170786550557,213,0 +170786550605,213,0 +170786550653,213,0 +170786550701,213,0 +170786550751,213,0 +170786550800,213,0 +170786550848,214,0 +170786550896,214,0 +170786550944,214,0 +170786550992,214,0 +170786551040,213,0 +170786551087,213,0 +170786551135,212,0 +170786551183,213,0 +170786551231,213,0 +170786551279,213,0 +170786551328,213,0 +170786551376,213,0 +170786551424,213,0 +170786551472,213,0 +170786551520,213,0 +170786551569,213,0 +170786551617,213,0 +170786551667,214,0 +170786551715,213,0 +170786551764,213,0 +170786551812,213,0 +170786551860,214,0 +170786551908,214,0 +170786551956,214,0 +170786552004,213,0 +170786552051,212,0 +170786552099,213,0 +170786552147,213,0 +170786552197,213,0 +170786552246,213,0 +170786552294,213,0 +170786552344,213,0 +170786552392,213,0 +170786552439,213,0 +170786552489,213,0 +170786552538,213,0 +170786552586,213,0 +170786552634,214,0 +170786552682,213,0 +170786552730,213,0 +170786552778,213,0 +170786552826,214,0 +170786552874,214,0 +170786552921,213,0 +170786552969,213,0 +170786553017,213,0 +170786553065,213,0 +170786553113,213,0 +170786553161,213,0 +170786553209,213,0 +170786553257,213,0 +170786553305,213,0 +170786553353,213,0 +170786553402,213,0 +170786553452,213,0 +170786553499,213,0 +170786553549,214,0 +170786553598,213,0 +170786553648,214,0 +170786553696,214,0 +170786553744,214,0 +170786553791,214,0 +170786553839,213,0 +170786553887,213,0 +170786553937,213,0 +170786553984,213,0 +170786554032,213,0 +170786554080,213,0 +170786554128,213,0 +170786554178,213,0 +170786554228,213,0 +170786554276,213,0 +170786554324,213,0 +170786554373,213,0 +170786554421,213,0 +170786554469,213,0 +170786554517,213,0 +170786554565,213,0 +170786554613,213,0 +170786554660,213,0 +170786554708,213,0 +170786554756,213,0 +170786554806,213,0 +170786554855,212,0 +170786554903,212,0 +170786554951,212,0 +170786555001,212,0 +170786555050,213,0 +170786555098,213,0 +170786555147,213,0 +170786555195,213,0 +170786555243,213,0 +170786555291,213,0 +170786555339,213,0 +170786555387,213,0 +170786555435,213,0 +170786555483,213,0 +170786555530,213,0 +170786555578,213,0 +170786555626,213,0 +170786555674,213,0 +170786555722,213,0 +170786555772,213,0 +170786555820,212,0 +170786555867,213,0 +170786555915,213,0 +170786555963,213,0 +170786556011,213,0 +170786556059,213,0 +170786556108,213,0 +170786556158,213,0 +170786556206,213,0 +170786556255,213,0 +170786556303,213,0 +170786556351,213,0 +170786556399,213,0 +170786556447,213,0 +170786556495,213,0 +170786556542,213,0 +170786556592,214,0 +170786556640,213,0 +170786556688,213,0 +170786556735,213,0 +170786556783,213,0 +170786556831,213,0 +170786556879,213,0 +170786556927,213,0 +170786556977,213,0 +170786557025,213,0 +170786557072,213,0 +170786557120,213,0 +170786557168,213,0 +170786557216,213,0 +170786557264,213,0 +170786557314,213,0 +170786557362,213,0 +170786557411,213,0 +170786557459,213,0 +170786557507,213,0 +170786557555,213,0 +170786557603,212,0 +170786557651,212,0 +170786557700,213,0 +170786557748,213,0 +170786557796,213,0 +170786557844,213,0 +170786557893,213,0 +170786557941,213,0 +170786557991,213,0 +170786558039,213,0 +170786558087,213,0 +170786558136,213,0 +170786558184,213,0 +170786558232,213,0 +170786558281,213,0 +170786558329,213,0 +170786558379,214,0 +170786558427,213,0 +170786558474,213,0 +170786558522,213,0 +170786558570,212,0 +170786558618,212,0 +170786558666,212,0 +170786558715,213,0 +170786558765,213,0 +170786558813,213,0 +170786558861,213,0 +170786558909,213,0 +170786558958,213,0 +170786559006,213,0 +170786559054,213,0 +170786559103,213,0 +170786559151,213,0 +170786559199,213,0 +170786559247,214,0 +170786559295,213,0 +170786559344,214,0 +170786559392,213,0 +170786559440,212,0 +170786559488,212,0 +170786559536,212,0 +170786559584,212,0 +170786559632,213,0 +170786559680,213,0 +170786559728,213,0 +170786559776,213,0 +170786559826,213,0 +170786559873,213,0 +170786559923,213,0 +170786559971,213,0 +170786560019,213,0 +170786560067,213,0 +170786560115,213,0 +170786560163,213,0 +170786560211,213,0 +170786560259,213,0 +170786560306,213,0 +170786560356,212,0 +170786560405,212,0 +170786560455,212,0 +170786560503,212,0 +170786560552,212,0 +170786560600,213,0 +170786560648,213,0 +170786560696,213,0 +170786560746,213,0 +170786560795,213,0 +170786560843,213,0 +170786560891,213,0 +170786560941,213,0 +170786560990,213,0 +170786561038,213,0 +170786561086,213,0 +170786561134,213,0 +170786561181,213,0 +170786561229,213,0 +170786561277,213,0 +170786561325,213,0 +170786561375,212,0 +170786561423,213,0 +170786561472,213,0 +170786561520,213,0 +170786561568,213,0 +170786561616,213,0 +170786561664,213,0 +170786561713,213,0 +170786561761,213,0 +170786561811,213,0 +170786561859,213,0 +170786561906,213,0 +170786561954,214,0 +170786562004,213,0 +170786562052,213,0 +170786562100,213,0 +170786562148,214,0 +170786562197,213,0 +170786562245,213,0 +170786562293,213,0 +170786562341,213,0 +170786562389,213,0 +170786562436,213,0 +170786562486,213,0 +170786562534,213,0 +170786562582,213,0 +170786562630,213,0 +170786562678,213,0 +170786562726,213,0 +170786562773,213,0 +170786562823,213,0 +170786562871,214,0 +170786562920,214,0 +170786562968,214,0 +170786563016,214,0 +170786563066,214,0 +170786563114,213,0 +170786563162,213,0 +170786563210,213,0 +170786563258,213,0 +170786563306,213,0 +170786563355,213,0 +170786563403,213,0 +170786563451,213,0 +170786563499,213,0 +170786563547,214,0 +170786563595,214,0 +170786563643,214,0 +170786563691,214,0 +170786563739,214,0 +170786563787,214,0 +170786563834,214,0 +170786563882,214,0 +170786563932,214,0 +170786563981,213,0 +170786564029,213,0 +170786564079,213,0 +170786564127,213,0 +170786564175,213,0 +170786564223,213,0 +170786564272,213,0 +170786564320,213,0 +170786564368,213,0 +170786564417,213,0 +170786564465,213,0 +170786564515,213,0 +170786564563,213,0 +170786564611,214,0 +170786564659,214,0 +170786564707,213,0 +170786564754,214,0 +170786564802,213,0 +170786564850,214,0 +170786564898,213,0 +170786564946,213,0 +170786564995,213,0 +170786565043,213,0 +170786565091,213,0 +170786565141,213,0 +170786565190,213,0 +170786565238,213,0 +170786565288,213,0 +170786565335,213,0 +170786565385,213,0 +170786565433,213,0 +170786565481,213,0 +170786565529,213,0 +170786565577,213,0 +170786565626,213,0 +170786565674,214,0 +170786565722,214,0 +170786565771,214,0 +170786565819,213,0 +170786565869,213,0 +170786565918,213,0 +170786565966,213,0 +170786566016,213,0 +170786566065,213,0 +170786566114,213,0 +170786566162,213,0 +170786566210,213,0 +170786566260,213,0 +170786566308,213,0 +170786566356,213,0 +170786566405,213,0 +170786566453,213,0 +170786566501,213,0 +170786566549,213,0 +170786566597,214,0 +170786566647,214,0 +170786566694,214,0 +170786566742,214,0 +170786566790,214,0 +170786566838,213,0 +170786566888,213,0 +170786566937,213,0 +170786566985,213,0 +170786567035,213,0 +170786567083,213,0 +170786567131,213,0 +170786567178,213,0 +170786567228,213,0 +170786567278,213,0 +170786567326,213,0 +170786567374,213,0 +170786567422,213,0 +170786567469,213,0 +170786567517,213,0 +170786567565,214,0 +170786567615,214,0 +170786567663,214,0 +170786567711,213,0 +170786567758,213,0 +170786567806,213,0 +170786567856,213,0 +170786567905,213,0 +170786567953,213,0 +170786568001,213,0 +170786568049,213,0 +170786568099,213,0 +170786568146,213,0 +170786568194,214,0 +170786568244,214,0 +170786568292,213,0 +170786568340,213,0 +170786568388,213,0 +170786568436,213,0 +170786568483,213,0 +170786568531,213,0 +170786568579,213,0 +170786568627,213,0 +170786568675,213,0 +170786568723,212,0 +170786568772,212,0 +170786568820,212,0 +170786568868,213,0 +170786568916,213,0 +170786568964,213,0 +170786569012,213,0 +170786569059,213,0 +170786569107,213,0 +170786569155,213,0 +170786569203,213,0 +170786569251,213,0 +170786569299,213,0 +170786569347,214,0 +170786569394,214,0 +170786569442,213,0 +170786569490,213,0 +170786569538,214,0 +170786569586,213,0 +170786569634,212,0 +170786569682,213,0 +170786569730,213,0 +170786569779,213,0 +170786569829,213,0 +170786569877,213,0 +170786569925,213,0 +170786569974,213,0 +170786570022,213,0 +170786570072,213,0 +170786570120,213,0 +170786570169,214,0 +170786570217,214,0 +170786570265,214,0 +170786570313,214,0 +170786570362,213,0 +170786570410,214,0 +170786570458,214,0 +170786570506,213,0 +170786570556,213,0 +170786570604,213,0 +170786570652,213,0 +170786570700,213,0 +170786570749,213,0 +170786570797,213,0 +170786570846,213,0 +170786570894,213,0 +170786570942,213,0 +170786570992,213,0 +170786571040,213,0 +170786571088,214,0 +170786571135,214,0 +170786571183,213,0 +170786571231,213,0 +170786571279,214,0 +170786571327,213,0 +170786571375,214,0 +170786571425,213,0 +170786571472,212,0 +170786571520,213,0 +170786571568,213,0 +170786571618,213,0 +170786571666,213,0 +170786571714,213,0 +170786571762,213,0 +170786571811,213,0 +170786571859,213,0 +170786571909,213,0 +170786571957,213,0 +170786572005,213,0 +170786572053,213,0 +170786572100,214,0 +170786572148,213,0 +170786572196,213,0 +170786572244,213,0 +170786572292,214,0 +170786572340,213,0 +170786572388,213,0 +170786572436,212,0 +170786572484,213,0 +170786572533,213,0 +170786572581,213,0 +170786572629,213,0 +170786572677,213,0 +170786572725,213,0 +170786572773,213,0 +170786572821,213,0 +170786572869,213,0 +170786572919,213,0 +170786572968,214,0 +170786573016,214,0 +170786573065,214,0 +170786573113,214,0 +170786573161,214,0 +170786573209,214,0 +170786573257,213,0 +170786573305,213,0 +170786573355,212,0 +170786573404,212,0 +170786573452,213,0 +170786573500,213,0 +170786573549,213,0 +170786573597,213,0 +170786573645,213,0 +170786573695,213,0 +170786573744,213,0 +170786573792,213,0 +170786573840,213,0 +170786573888,213,0 +170786573936,213,0 +170786573986,213,0 +170786574033,213,0 +170786574081,214,0 +170786574131,213,0 +170786574179,213,0 +170786574227,213,0 +170786574275,213,0 +170786574324,213,0 +170786574372,213,0 +170786574420,213,0 +170786574468,213,0 +170786574517,213,0 +170786574565,213,0 +170786574615,213,0 +170786574664,213,0 +170786574714,213,0 +170786574762,213,0 +170786574811,213,0 +170786574859,213,0 +170786574907,213,0 +170786574957,213,0 +170786575004,213,0 +170786575052,213,0 +170786575100,213,0 +170786575148,213,0 +170786575196,213,0 +170786575246,212,0 +170786575294,213,0 +170786575341,212,0 +170786575391,212,0 +170786575439,213,0 +170786575487,213,0 +170786575535,213,0 +170786575582,213,0 +170786575630,212,0 +170786575678,212,0 +170786575726,213,0 +170786575776,213,0 +170786575824,213,0 +170786575873,213,0 +170786575921,213,0 +170786575969,213,0 +170786576019,213,0 +170786576068,213,0 +170786576116,213,0 +170786576164,213,0 +170786576212,213,0 +170786576261,213,0 +170786576309,214,0 +170786576359,213,0 +170786576407,214,0 +170786576455,214,0 +170786576504,213,0 +170786576554,213,0 +170786576602,212,0 +170786576649,213,0 +170786576699,213,0 +170786576748,213,0 +170786576796,213,0 +170786576844,213,0 +170786576892,213,0 +170786576940,213,0 +170786576990,213,0 +170786577038,213,0 +170786577087,213,0 +170786577135,213,0 +170786577184,213,0 +170786577234,213,0 +170786577283,214,0 +170786577333,214,0 +170786577383,213,0 +170786577430,213,0 +170786577478,213,0 +170786577526,212,0 +170786577574,213,0 +170786577622,213,0 +170786577670,213,0 +170786577718,213,0 +170786577767,213,0 +170786577815,213,0 +170786577863,213,0 +170786577913,213,0 +170786577960,213,0 +170786578008,213,0 +170786578056,213,0 +170786578106,213,0 +170786578154,213,0 +170786578203,214,0 +170786578251,214,0 +170786578299,213,0 +170786578347,213,0 +170786578395,213,0 +170786578442,212,0 +170786578490,212,0 +170786578538,213,0 +170786578586,213,0 +170786578634,213,0 +170786578682,213,0 +170786578729,213,0 +170786578777,213,0 +170786578825,213,0 +170786578873,213,0 +170786578921,213,0 +170786578969,213,0 +170786579016,213,0 +170786579064,213,0 +170786579112,214,0 +170786579160,214,0 +170786579208,214,0 +170786579256,214,0 +170786579303,213,0 +170786579353,212,0 +170786579401,213,0 +170786579449,213,0 +170786579497,213,0 +170786579544,213,0 +170786579594,213,0 +170786579642,213,0 +170786579690,213,0 +170786579737,213,0 +170786579785,213,0 +170786579833,213,0 +170786579881,213,0 +170786579929,213,0 +170786579977,214,0 +170786580025,213,0 +170786580073,214,0 +170786580120,214,0 +170786580168,214,0 +170786580216,213,0 +170786580264,213,0 +170786580312,212,0 +170786580359,213,0 +170786580407,213,0 +170786580455,213,0 +170786580503,213,0 +170786580551,213,0 +170786580599,213,0 +170786580647,213,0 +170786580694,213,0 +170786580744,213,0 +170786580791,213,0 +170786580839,213,0 +170786580887,213,0 +170786580935,213,0 +170786580984,213,0 +170786581032,213,0 +170786581080,213,0 +170786581128,213,0 +170786581176,213,0 +170786581223,212,0 +170786581273,213,0 +170786581321,213,0 +170786581370,213,0 +170786581418,213,0 +170786581467,213,0 +170786581515,213,0 +170786581563,213,0 +170786581611,213,0 +170786581659,213,0 +170786581706,213,0 +170786581754,213,0 +170786581802,214,0 +170786581850,214,0 +170786581899,213,0 +170786581947,213,0 +170786581995,214,0 +170786582043,213,0 +170786582091,213,0 +170786582139,213,0 +170786582186,213,0 +170786582234,213,0 +170786582282,213,0 +170786582330,213,0 +170786582379,213,0 +170786582427,213,0 +170786582475,213,0 +170786582523,213,0 +170786582570,213,0 +170786582618,213,0 +170786582666,213,0 +170786582714,213,0 +170786582763,214,0 +170786582813,213,0 +170786582861,214,0 +170786582909,214,0 +170786582956,213,0 +170786583004,213,0 +170786583052,213,0 +170786583102,212,0 +170786583150,213,0 +170786583197,213,0 +170786583245,213,0 +170786583294,213,0 +170786583343,213,0 +170786583391,213,0 +170786583439,213,0 +170786583487,214,0 +170786583537,213,0 +170786583585,213,0 +170786583633,214,0 +170786583680,214,0 +170786583728,214,0 +170786583776,214,0 +170786583826,214,0 +170786583874,214,0 +170786583923,213,0 +170786583973,213,0 +170786584021,213,0 +170786584069,213,0 +170786584117,213,0 +170786584166,213,0 +170786584214,213,0 +170786584263,213,0 +170786584311,213,0 +170786584359,213,0 +170786584407,214,0 +170786584455,214,0 +170786584504,214,0 +170786584554,214,0 +170786584603,214,0 +170786584653,214,0 +170786584702,214,0 +170786584750,213,0 +170786584798,214,0 +170786584846,213,0 +170786584893,213,0 +170786584941,213,0 +170786584991,213,0 +170786585039,213,0 +170786585087,213,0 +170786585134,213,0 +170786585182,213,0 +170786585230,213,0 +170786585280,213,0 +170786585329,213,0 +170786585377,214,0 +170786585427,214,0 +170786585474,214,0 +170786585524,214,0 +170786585572,214,0 +170786585621,214,0 +170786585671,214,0 +170786585719,213,0 +170786585766,213,0 +170786585814,213,0 +170786585862,213,0 +170786585911,213,0 +170786585959,213,0 +170786586007,213,0 +170786586055,213,0 +170786586103,213,0 +170786586153,213,0 +170786586201,213,0 +170786586250,213,0 +170786586298,213,0 +170786586346,213,0 +170786586394,214,0 +170786586442,213,0 +170786586490,213,0 +170786586539,213,0 +170786586587,214,0 +170786586635,214,0 +170786586683,213,0 +170786586732,213,0 +170786586780,213,0 +170786586828,213,0 +170786586876,213,0 +170786586926,213,0 +170786586975,213,0 +170786587023,213,0 +170786587071,213,0 +170786587119,213,0 +170786587167,213,0 +170786587215,213,0 +170786587264,213,0 +170786587312,213,0 +170786587361,213,0 +170786587409,213,0 +170786587459,214,0 +170786587507,214,0 +170786587556,214,0 +170786587605,213,0 +170786587653,213,0 +170786587703,213,0 +170786587751,212,0 +170786587799,213,0 +170786587847,213,0 +170786587896,213,0 +170786587944,213,0 +170786587992,213,0 +170786588040,213,0 +170786588089,213,0 +170786588137,213,0 +170786588185,213,0 +170786588233,213,0 +170786588281,213,0 +170786588329,213,0 +170786588377,214,0 +170786588426,213,0 +170786588474,214,0 +170786588524,213,0 +170786588572,213,0 +170786588620,213,0 +170786588668,212,0 +170786588715,213,0 +170786588763,212,0 +170786588813,213,0 +170786588861,213,0 +170786588910,213,0 +170786588958,213,0 +170786589006,213,0 +170786589056,213,0 +170786589103,213,0 +170786589151,213,0 +170786589201,213,0 +170786589249,213,0 +170786589297,213,0 +170786589346,213,0 +170786589396,213,0 +170786589444,213,0 +170786589491,213,0 +170786589541,213,0 +170786589589,213,0 +170786589637,213,0 +170786589685,213,0 +170786589732,213,0 +170786589780,213,0 +170786589830,213,0 +170786589878,213,0 +170786589926,212,0 +170786589975,213,0 +170786590024,213,0 +170786590072,213,0 +170786590120,213,0 +170786590168,213,0 +170786590218,213,0 +170786590266,213,0 +170786590316,213,0 +170786590364,213,0 +170786590412,213,0 +170786590460,213,0 +170786590507,212,0 +170786590555,212,0 +170786590603,213,0 +170786590651,212,0 +170786590699,213,0 +170786590748,213,0 +170786590796,213,0 +170786590844,213,0 +170786590892,213,0 +170786590942,213,0 +170786590989,213,0 +170786591037,213,0 +170786591085,213,0 +170786591133,213,0 +170786591181,213,0 +170786591230,213,0 +170786591278,213,0 +170786591328,213,0 +170786591376,212,0 +170786591424,213,0 +170786591472,213,0 +170786591519,213,0 +170786591569,213,0 +170786591619,213,0 +170786591666,213,0 +170786591714,213,0 +170786591762,213,0 +170786591810,213,0 +170786591860,213,0 +170786591908,213,0 +170786591957,213,0 +170786592006,213,0 +170786592054,214,0 +170786592102,214,0 +170786592150,213,0 +170786592200,214,0 +170786592249,213,0 +170786592297,212,0 +170786592345,213,0 +170786592393,213,0 +170786592441,213,0 +170786592489,213,0 +170786592538,213,0 +170786592588,213,0 +170786592636,213,0 +170786592684,213,0 +170786592732,213,0 +170786592780,213,0 +170786592828,213,0 +170786592876,214,0 +170786592924,213,0 +170786592971,213,0 +170786593019,213,0 +170786593067,213,0 +170786593117,213,0 +170786593166,213,0 +170786593214,213,0 +170786593262,213,0 +170786593310,212,0 +170786593358,212,0 +170786593407,213,0 +170786593455,213,0 +170786593503,213,0 +170786593551,213,0 +170786593599,213,0 +170786593647,213,0 +170786593695,213,0 +170786593743,213,0 +170786593791,213,0 +170786593839,213,0 +170786593887,213,0 +170786593935,213,0 +170786593982,213,0 +170786594032,213,0 +170786594080,213,0 +170786594129,213,0 +170786594177,213,0 +170786594225,212,0 +170786594273,213,0 +170786594323,213,0 +170786594372,213,0 +170786594422,213,0 +170786594469,213,0 +170786594517,213,0 +170786594565,213,0 +170786594613,213,0 +170786594663,213,0 +170786594711,213,0 +170786594758,213,0 +170786594806,213,0 +170786594854,213,0 +170786594904,213,0 +170786594953,213,0 +170786595003,213,0 +170786595051,213,0 +170786595098,212,0 +170786595146,213,0 +170786595196,213,0 +170786595244,213,0 +170786595292,213,0 +170786595339,213,0 +170786595389,213,0 +170786595437,213,0 +170786595485,213,0 +170786595534,213,0 +170786595582,213,0 +170786595630,213,0 +170786595678,213,0 +170786595728,214,0 +170786595775,214,0 +170786595825,214,0 +170786595873,214,0 +170786595921,214,0 +170786595970,213,0 +170786596018,213,0 +170786596066,213,0 +170786596114,213,0 +170786596162,213,0 +170786596211,213,0 +170786596259,213,0 +170786596307,213,0 +170786596355,213,0 +170786596403,213,0 +170786596451,213,0 +170786596500,213,0 +170786596548,213,0 +170786596596,214,0 +170786596644,214,0 +170786596693,214,0 +170786596741,213,0 +170786596789,214,0 +170786596837,214,0 +170786596887,213,0 +170786596936,213,0 +170786596984,213,0 +170786597032,213,0 +170786597080,213,0 +170786597128,213,0 +170786597176,213,0 +170786597224,213,0 +170786597273,213,0 +170786597323,213,0 +170786597371,213,0 +170786597419,213,0 +170786597468,214,0 +170786597516,213,0 +170786597564,214,0 +170786597612,214,0 +170786597660,214,0 +170786597708,214,0 +170786597756,214,0 +170786597804,213,0 +170786597852,213,0 +170786597901,213,0 +170786597949,213,0 +170786597997,213,0 +170786598047,213,0 +170786598095,213,0 +170786598142,213,0 +170786598190,213,0 +170786598238,213,0 +170786598286,213,0 +170786598334,214,0 +170786598382,214,0 +170786598432,214,0 +170786598480,214,0 +170786598529,214,0 +170786598577,214,0 +170786598625,214,0 +170786598673,214,0 +170786598721,213,0 +170786598770,213,0 +170786598818,213,0 +170786598866,213,0 +170786598914,213,0 +170786598963,213,0 +170786599011,213,0 +170786599059,213,0 +170786599108,213,0 +170786599156,213,0 +170786599204,213,0 +170786599252,213,0 +170786599302,214,0 +170786599350,213,0 +170786599398,213,0 +170786599447,214,0 +170786599495,213,0 +170786599543,214,0 +170786599591,214,0 +170786599639,213,0 +170786599687,213,0 +170786599735,212,0 +170786599784,212,0 +170786599834,213,0 +170786599883,213,0 +170786599933,213,0 +170786599980,213,0 +170786600028,213,0 +170786600078,213,0 +170786600127,213,0 +170786600175,213,0 +170786600225,213,0 +170786600274,213,0 +170786600322,213,0 +170786600370,213,0 +170786600418,214,0 +170786600466,213,0 +170786600515,214,0 +170786600563,213,0 +170786600613,213,0 +170786600661,213,0 +170786600710,213,0 +170786600760,212,0 +170786600809,213,0 +170786600858,213,0 +170786600906,213,0 +170786600956,213,0 +170786601004,213,0 +170786601053,213,0 +170786601101,213,0 +170786601149,213,0 +170786601197,213,0 +170786601246,213,0 +170786601294,213,0 +170786601342,213,0 +170786601390,213,0 +170786601438,213,0 +170786601486,214,0 +170786601535,213,0 +170786601583,213,0 +170786601633,212,0 +170786601681,213,0 +170786601728,213,0 +170786601778,213,0 +170786601826,213,0 +170786601874,213,0 +170786601922,213,0 +170786601970,213,0 +170786602017,213,0 +170786602067,213,0 +170786602115,213,0 +170786602163,213,0 +170786602212,213,0 +170786602262,213,0 +170786602310,213,0 +170786602357,214,0 +170786602407,213,0 +170786602455,213,0 +170786602504,212,0 +170786602552,213,0 +170786602600,213,0 +170786602648,213,0 +170786602696,213,0 +170786602744,212,0 +170786602793,213,0 +170786602843,213,0 +170786602892,213,0 +170786602940,213,0 +170786602988,213,0 +170786603036,213,0 +170786603084,213,0 +170786603133,213,0 +170786603181,213,0 +170786603229,213,0 +170786603277,213,0 +170786603324,213,0 +170786603372,213,0 +170786603422,212,0 +170786603471,212,0 +170786603519,213,0 +170786603569,213,0 +170786603618,213,0 +170786603668,213,0 +170786603715,213,0 +170786603765,213,0 +170786603815,213,0 +170786603862,213,0 +170786603910,213,0 +170786603958,213,0 +170786604006,213,0 +170786604056,213,0 +170786604105,213,0 +170786604153,214,0 +170786604201,213,0 +170786604249,213,0 +170786604297,213,0 +170786604345,212,0 +170786604394,212,0 +170786604442,213,0 +170786604490,213,0 +170786604538,213,0 +170786604586,213,0 +170786604635,213,0 +170786604683,213,0 +170786604731,213,0 +170786604779,213,0 +170786604827,213,0 +170786604875,213,0 +170786604923,213,0 +170786604971,213,0 +170786605019,214,0 +170786605067,214,0 +170786605115,213,0 +170786605162,213,0 +170786605210,213,0 +170786605260,213,0 +170786605308,213,0 +170786605356,213,0 +170786605404,213,0 +170786605453,213,0 +170786605501,213,0 +170786605549,213,0 +170786605598,213,0 +170786605646,213,0 +170786605694,213,0 +170786605744,214,0 +170786605791,214,0 +170786605839,214,0 +170786605887,214,0 +170786605935,214,0 +170786605983,214,0 +170786606033,213,0 +170786606081,213,0 +170786606130,213,0 +170786606180,213,0 +170786606228,213,0 +170786606276,213,0 +170786606323,213,0 +170786606371,213,0 +170786606419,213,0 +170786606469,213,0 +170786606518,213,0 +170786606568,213,0 +170786606616,213,0 +170786606664,213,0 +170786606711,213,0 +170786606761,214,0 +170786606809,214,0 +170786606857,214,0 +170786606905,214,0 +170786606954,214,0 +170786607002,214,0 +170786607050,213,0 +170786607098,213,0 +170786607146,213,0 +170786607194,213,0 +170786607243,213,0 +170786607293,213,0 +170786607341,213,0 +170786607390,213,0 +170786607438,213,0 +170786607486,213,0 +170786607534,213,0 +170786607582,213,0 +170786607630,213,0 +170786607677,213,0 +170786607725,214,0 +170786607773,214,0 +170786607823,213,0 +170786607871,214,0 +170786607920,213,0 +170786607970,213,0 +170786608019,213,0 +170786608067,213,0 +170786608116,213,0 +170786608164,213,0 +170786608212,213,0 +170786608260,213,0 +170786608308,213,0 +170786608356,213,0 +170786608404,213,0 +170786608453,213,0 +170786608501,213,0 +170786608549,213,0 +170786608597,213,0 +170786608645,213,0 +170786608693,214,0 +170786608742,213,0 +170786608790,213,0 +170786608838,214,0 +170786608886,213,0 +170786608936,213,0 +170786608984,213,0 +170786609032,213,0 +170786609080,213,0 +170786609127,213,0 +170786609177,213,0 +170786609225,213,0 +170786609273,213,0 +170786609322,213,0 +170786609370,213,0 +170786609420,213,0 +170786609467,213,0 +170786609515,213,0 +170786609563,213,0 +170786609611,213,0 +170786609659,214,0 +170786609707,214,0 +170786609755,213,0 +170786609804,214,0 +170786609852,213,0 +170786609900,213,0 +170786609948,213,0 +170786609996,213,0 +170786610044,213,0 +170786610093,213,0 +170786610141,213,0 +170786610189,213,0 +170786610238,213,0 +170786610286,213,0 +170786610334,213,0 +170786610382,213,0 +170786610430,214,0 +170786610478,214,0 +170786610528,213,0 +170786610576,214,0 +170786610623,214,0 +170786610671,214,0 +170786610721,213,0 +170786610769,213,0 +170786610817,213,0 +170786610865,213,0 +170786610913,213,0 +170786610962,213,0 +170786611010,213,0 +170786611060,213,0 +170786611108,213,0 +170786611157,213,0 +170786611205,213,0 +170786611255,213,0 +170786611304,213,0 +170786611354,213,0 +170786611403,213,0 +170786611451,213,0 +170786611500,214,0 +170786611548,214,0 +170786611596,213,0 +170786611644,213,0 +170786611694,213,0 +170786611743,212,0 +170786611791,213,0 +170786611839,213,0 +170786611887,213,0 +170786611935,213,0 +170786611985,213,0 +170786612033,213,0 +170786612081,213,0 +170786612129,213,0 +170786612178,213,0 +170786612228,213,0 +170786612275,213,0 +170786612325,214,0 +170786612373,213,0 +170786612421,214,0 +170786612469,214,0 +170786612516,214,0 +170786612564,213,0 +170786612612,213,0 +170786612660,213,0 +170786612708,213,0 +170786612756,213,0 +170786612806,213,0 +170786612855,213,0 +170786612903,213,0 +170786612953,213,0 +170786613001,213,0 +170786613050,213,0 +170786613100,213,0 +170786613148,213,0 +170786613196,213,0 +170786613244,213,0 +170786613293,214,0 +170786613343,214,0 +170786613392,214,0 +170786613440,213,0 +170786613490,214,0 +170786613538,213,0 +170786613586,212,0 +170786613634,213,0 +170786613683,213,0 +170786613731,213,0 +170786613779,213,0 +170786613827,213,0 +170786613876,213,0 +170786613924,213,0 +170786613974,213,0 +170786614022,213,0 +170786614070,213,0 +170786614118,213,0 +170786614167,213,0 +170786614215,213,0 +170786614265,214,0 +170786614313,213,0 +170786614362,213,0 +170786614410,213,0 +170786614458,213,0 +170786614507,212,0 +170786614555,213,0 +170786614603,213,0 +170786614651,212,0 +170786614699,213,0 +170786614747,213,0 +170786614797,213,0 +170786614845,213,0 +170786614893,213,0 +170786614941,213,0 +170786614988,213,0 +170786615038,213,0 +170786615088,213,0 +170786615137,213,0 +170786615185,213,0 +170786615233,213,0 +170786615281,214,0 +170786615329,213,0 +170786615378,213,0 +170786615428,213,0 +170786615477,212,0 +170786615525,213,0 +170786615573,213,0 +170786615621,212,0 +170786615669,213,0 +170786615717,213,0 +170786615765,213,0 +170786615813,213,0 +170786615861,213,0 +170786615909,213,0 +170786615958,213,0 +170786616006,213,0 +170786616055,213,0 +170786616103,213,0 +170786616151,213,0 +170786616199,213,0 +170786616247,213,0 +170786616295,213,0 +170786616343,212,0 +170786616391,212,0 +170786616439,213,0 +170786616488,213,0 +170786616536,212,0 +170786616584,212,0 +170786616632,212,0 +170786616680,213,0 +170786616729,213,0 +170786616777,212,0 +170786616825,213,0 +170786616873,213,0 +170786616921,213,0 +170786616970,213,0 +170786617018,213,0 +170786617066,213,0 +170786617114,213,0 +170786617161,213,0 +170786617209,213,0 +170786617257,212,0 +170786617305,213,0 +170786617353,212,0 +170786617401,213,0 +170786617449,212,0 +170786617496,212,0 +170786617544,213,0 +170786617592,213,0 +170786617640,213,0 +170786617688,213,0 +170786617737,213,0 +170786617786,213,0 +170786617834,213,0 +170786617882,213,0 +170786617930,213,0 +170786617979,213,0 +170786618027,213,0 +170786618075,213,0 +170786618123,214,0 +170786618171,213,0 +170786618220,213,0 +170786618268,212,0 +170786618316,213,0 +170786618363,213,0 +170786618413,213,0 +170786618460,213,0 +170786618508,213,0 +170786618556,213,0 +170786618604,213,0 +170786618653,213,0 +170786618701,213,0 +170786618749,213,0 +170786618797,213,0 +170786618845,213,0 +170786618893,214,0 +170786618940,213,0 +170786618988,214,0 +170786619036,214,0 +170786619086,213,0 +170786619135,212,0 +170786619183,212,0 +170786619231,212,0 +170786619280,213,0 +170786619328,213,0 +170786619376,213,0 +170786619424,213,0 +170786619472,213,0 +170786619521,213,0 +170786619570,213,0 +170786619618,213,0 +170786619666,213,0 +170786619714,213,0 +170786619764,213,0 +170786619811,213,0 +170786619859,213,0 +170786619907,213,0 +170786619955,214,0 +170786620005,213,0 +170786620052,212,0 +170786620102,213,0 +170786620150,213,0 +170786620198,213,0 +170786620246,213,0 +170786620294,213,0 +170786620341,213,0 +170786620389,213,0 +170786620437,213,0 +170786620487,213,0 +170786620536,213,0 +170786620586,213,0 +170786620634,213,0 +170786620681,214,0 +170786620729,214,0 +170786620777,213,0 +170786620825,213,0 +170786620873,214,0 +170786620921,213,0 +170786620970,212,0 +170786621018,213,0 +170786621068,213,0 +170786621116,213,0 +170786621164,213,0 +170786621212,213,0 +170786621259,213,0 +170786621309,213,0 +170786621357,213,0 +170786621406,213,0 +170786621454,213,0 +170786621504,213,0 +170786621553,213,0 +170786621603,213,0 +170786621651,213,0 +170786621700,213,0 +170786621748,213,0 +170786621796,213,0 +170786621844,213,0 +170786621892,212,0 +170786621942,213,0 +170786621991,213,0 +170786622039,213,0 +170786622087,213,0 +170786622136,213,0 +170786622186,213,0 +170786622235,213,0 +170786622283,213,0 +170786622333,213,0 +170786622381,213,0 +170786622430,213,0 +170786622479,213,0 +170786622527,213,0 +170786622575,213,0 +170786622625,214,0 +170786622672,213,0 +170786622720,214,0 +170786622768,213,0 +170786622816,212,0 +170786622864,213,0 +170786622912,213,0 +170786622961,213,0 +170786623011,213,0 +170786623059,213,0 +170786623108,213,0 +170786623158,213,0 +170786623206,213,0 +170786623253,213,0 +170786623303,213,0 +170786623352,213,0 +170786623400,214,0 +170786623448,213,0 +170786623496,213,0 +170786623544,214,0 +170786623593,214,0 +170786623641,213,0 +170786623689,213,0 +170786623739,213,0 +170786623787,213,0 +170786623834,213,0 +170786623882,213,0 +170786623932,213,0 +170786623979,213,0 +170786624027,213,0 +170786624075,213,0 +170786624123,213,0 +170786624171,213,0 +170786624219,214,0 +170786624267,213,0 +170786624315,213,0 +170786624362,214,0 +170786624410,213,0 +170786624458,214,0 +170786624506,213,0 +170786624554,213,0 +170786624602,213,0 +170786624651,213,0 +170786624699,213,0 +170786624747,213,0 +170786624795,213,0 +170786624843,213,0 +170786624891,213,0 +170786624939,213,0 +170786624987,213,0 +170786625036,213,0 +170786625084,213,0 +170786625132,213,0 +170786625182,213,0 +170786625230,213,0 +170786625277,214,0 +170786625325,214,0 +170786625375,214,0 +170786625423,214,0 +170786625470,213,0 +170786625520,213,0 +170786625568,213,0 +170786625617,213,0 +170786625665,213,0 +170786625715,213,0 +170786625764,213,0 +170786625814,213,0 +170786625862,213,0 +170786625909,213,0 +170786625957,213,0 +170786626007,214,0 +170786626055,214,0 +170786626103,214,0 +170786626151,214,0 +170786626198,214,0 +170786626246,214,0 +170786626296,214,0 +170786626345,214,0 +170786626395,214,0 +170786626442,214,0 +170786626490,213,0 +170786626540,213,0 +170786626589,213,0 +170786626639,213,0 +170786626687,214,0 +170786626734,213,0 +170786626782,214,0 +170786626830,214,0 +170786626878,214,0 +170786626926,214,0 +170786626974,214,0 +170786627022,214,0 +170786627071,214,0 +170786627121,214,0 +170786627169,214,0 +170786627217,214,0 +170786627265,214,0 +170786627312,214,0 +170786627360,214,0 +170786627408,213,0 +170786627458,213,0 +170786627506,213,0 +170786627555,213,0 +170786627603,213,0 +170786627652,213,0 +170786627702,214,0 +170786627750,213,0 +170786627798,214,0 +170786627847,214,0 +170786627895,213,0 +170786627943,214,0 +170786627990,214,0 +170786628038,214,0 +170786628086,214,0 +170786628134,214,0 +170786628182,214,0 +170786628230,214,0 +170786628279,213,0 +170786628327,213,0 +170786628375,213,0 +170786628423,213,0 +170786628470,213,0 +170786628518,213,0 +170786628566,213,0 +170786628616,213,0 +170786628663,213,0 +170786628711,213,0 +170786628761,213,0 +170786628810,214,0 +170786628858,213,0 +170786628906,214,0 +170786628954,214,0 +170786629001,214,0 +170786629049,214,0 +170786629097,214,0 +170786629145,213,0 +170786629193,213,0 +170786629242,213,0 +170786629292,212,0 +170786629340,213,0 +170786629388,212,0 +170786629436,213,0 +170786629484,213,0 +170786629532,213,0 +170786629580,213,0 +170786629627,213,0 +170786629675,213,0 +170786629723,213,0 +170786629771,213,0 +170786629819,213,0 +170786629867,213,0 +170786629915,213,0 +170786629963,213,0 +170786630012,213,0 +170786630060,213,0 +170786630108,213,0 +170786630156,213,0 +170786630204,213,0 +170786630252,212,0 +170786630300,212,0 +170786630348,213,0 +170786630396,213,0 +170786630444,213,0 +170786630493,213,0 +170786630541,213,0 +170786630589,213,0 +170786630636,213,0 +170786630684,213,0 +170786630734,213,0 +170786630783,213,0 +170786630831,213,0 +170786630879,213,0 +170786630927,213,0 +170786630976,213,0 +170786631026,213,0 +170786631074,213,0 +170786631122,213,0 +170786631170,212,0 +170786631219,213,0 +170786631267,213,0 +170786631315,212,0 +170786631364,212,0 +170786631412,213,0 +170786631460,213,0 +170786631508,213,0 +170786631557,213,0 +170786631605,213,0 +170786631655,213,0 +170786631703,213,0 +170786631751,213,0 +170786631799,213,0 +170786631846,213,0 +170786631896,213,0 +170786631944,213,0 +170786631993,213,0 +170786632041,213,0 +170786632089,213,0 +170786632138,213,0 +170786632188,212,0 +170786632237,213,0 +170786632285,213,0 +170786632333,213,0 +170786632381,213,0 +170786632431,213,0 +170786632480,213,0 +170786632528,213,0 +170786632578,213,0 +170786632627,213,0 +170786632677,213,0 +170786632726,213,0 +170786632774,213,0 +170786632822,213,0 +170786632871,213,0 +170786632919,213,0 +170786632969,212,0 +170786633017,213,0 +170786633066,213,0 +170786633114,213,0 +170786633162,213,0 +170786633210,213,0 +170786633258,213,0 +170786633306,213,0 +170786633354,213,0 +170786633403,213,0 +170786633451,213,0 +170786633499,213,0 +170786633548,213,0 +170786633596,213,0 +170786633644,213,0 +170786633692,213,0 +170786633740,213,0 +170786633788,213,0 +170786633836,213,0 +170786633883,212,0 +170786633931,212,0 +170786633981,213,0 +170786634029,213,0 +170786634077,213,0 +170786634125,213,0 +170786634173,213,0 +170786634222,213,0 +170786634271,213,0 +170786634319,213,0 +170786634369,213,0 +170786634417,213,0 +170786634465,213,0 +170786634513,213,0 +170786634561,213,0 +170786634609,213,0 +170786634656,214,0 +170786634704,214,0 +170786634752,213,0 +170786634800,213,0 +170786634848,212,0 +170786634896,213,0 +170786634944,213,0 +170786634992,212,0 +170786635040,213,0 +170786635088,213,0 +170786635136,213,0 +170786635184,213,0 +170786635233,213,0 +170786635281,213,0 +170786635329,213,0 +170786635376,213,0 +170786635424,214,0 +170786635472,213,0 +170786635520,213,0 +170786635570,213,0 +170786635619,213,0 +170786635667,213,0 +170786635716,213,0 +170786635764,213,0 +170786635812,213,0 +170786635862,212,0 +170786635911,213,0 +170786635961,213,0 +170786636008,213,0 +170786636058,213,0 +170786636106,213,0 +170786636153,213,0 +170786636203,213,0 +170786636252,213,0 +170786636300,213,0 +170786636348,213,0 +170786636398,214,0 +170786636447,213,0 +170786636495,213,0 +170786636545,213,0 +170786636593,213,0 +170786636641,213,0 +170786636689,213,0 +170786636736,213,0 +170786636786,213,0 +170786636835,213,0 +170786636883,213,0 +170786636931,213,0 +170786636979,213,0 +170786637027,213,0 +170786637075,213,0 +170786637125,213,0 +170786637174,213,0 +170786637222,213,0 +170786637272,213,0 +170786637319,213,0 +170786637367,213,0 +170786637415,213,0 +170786637463,213,0 +170786637513,213,0 +170786637561,213,0 +170786637609,213,0 +170786637657,213,0 +170786637705,213,0 +170786637753,213,0 +170786637800,213,0 +170786637848,213,0 +170786637898,213,0 +170786637947,213,0 +170786637995,213,0 +170786638045,213,0 +170786638093,213,0 +170786638141,213,0 +170786638188,213,0 +170786638236,213,0 +170786638286,213,0 +170786638335,214,0 +170786638383,213,0 +170786638431,214,0 +170786638479,213,0 +170786638527,213,0 +170786638577,213,0 +170786638626,213,0 +170786638676,213,0 +170786638725,213,0 +170786638774,213,0 +170786638824,213,0 +170786638872,213,0 +170786638921,213,0 +170786638969,213,0 +170786639019,213,0 +170786639067,213,0 +170786639115,213,0 +170786639163,213,0 +170786639211,214,0 +170786639259,214,0 +170786639308,214,0 +170786639358,213,0 +170786639406,213,0 +170786639455,213,0 +170786639505,213,0 +170786639554,213,0 +170786639602,213,0 +170786639650,213,0 +170786639699,213,0 +170786639747,213,0 +170786639797,213,0 +170786639844,213,0 +170786639892,213,0 +170786639942,213,0 +170786639990,213,0 +170786640038,214,0 +170786640086,214,0 +170786640134,213,0 +170786640183,213,0 +170786640231,213,0 +170786640279,213,0 +170786640328,213,0 +170786640378,212,0 +170786640426,213,0 +170786640474,213,0 +170786640521,213,0 +170786640571,213,0 +170786640619,213,0 +170786640667,213,0 +170786640716,213,0 +170786640764,213,0 +170786640812,213,0 +170786640860,213,0 +170786640908,213,0 +170786640956,214,0 +170786641004,213,0 +170786641052,214,0 +170786641100,214,0 +170786641149,213,0 +170786641198,214,0 +170786641247,213,0 +170786641296,213,0 +170786641344,213,0 +170786641392,213,0 +170786641440,213,0 +170786641488,213,0 +170786641538,213,0 +170786641586,213,0 +170786641634,213,0 +170786641683,213,0 +170786641731,213,0 +170786641781,213,0 +170786641830,213,0 +170786641878,213,0 +170786641927,213,0 +170786641977,213,0 +170786642025,213,0 +170786642073,214,0 +170786642121,214,0 +170786642170,214,0 +170786642219,213,0 +170786642267,213,0 +170786642315,213,0 +170786642363,213,0 +170786642411,213,0 +170786642459,213,0 +170786642506,213,0 +170786642554,213,0 +170786642602,213,0 +170786642650,213,0 +170786642698,213,0 +170786642746,213,0 +170786642794,213,0 +170786642842,213,0 +170786642889,213,0 +170786642937,214,0 +170786642985,213,0 +170786643035,213,0 +170786643082,213,0 +170786643130,212,0 +170786643178,213,0 +170786643226,213,0 +170786643274,213,0 +170786643323,213,0 +170786643371,213,0 +170786643419,213,0 +170786643467,213,0 +170786643516,213,0 +170786643564,213,0 +170786643612,213,0 +170786643660,213,0 +170786643709,213,0 +170786643759,213,0 +170786643806,213,0 +170786643854,213,0 +170786643902,214,0 +170786643950,214,0 +170786643998,213,0 +170786644047,213,0 +170786644097,213,0 +170786644145,212,0 +170786644192,213,0 +170786644240,213,0 +170786644288,213,0 +170786644336,213,0 +170786644384,213,0 +170786644432,213,0 +170786644479,213,0 +170786644527,213,0 +170786644577,213,0 +170786644624,213,0 +170786644672,213,0 +170786644720,213,0 +170786644770,213,0 +170786644817,213,0 +170786644867,213,0 +170786644915,213,0 +170786644963,213,0 +170786645012,213,0 +170786645060,213,0 +170786645108,213,0 +170786645158,213,0 +170786645206,213,0 +170786645253,213,0 +170786645303,213,0 +170786645351,213,0 +170786645400,213,0 +170786645448,213,0 +170786645496,213,0 +170786645544,213,0 +170786645592,213,0 +170786645640,213,0 +170786645688,213,0 +170786645736,213,0 +170786645784,214,0 +170786645834,213,0 +170786645881,213,0 +170786645931,213,0 +170786645979,212,0 +170786646027,213,0 +170786646075,213,0 +170786646123,213,0 +170786646171,213,0 +170786646219,213,0 +170786646266,213,0 +170786646314,213,0 +170786646364,213,0 +170786646412,213,0 +170786646460,213,0 +170786646509,213,0 +170786646559,213,0 +170786646608,213,0 +170786646656,213,0 +170786646704,213,0 +170786646752,213,0 +170786646800,213,0 +170786646848,212,0 +170786646897,213,0 +170786646947,212,0 +170786646994,213,0 +170786647042,213,0 +170786647090,213,0 +170786647138,213,0 +170786647186,213,0 +170786647234,213,0 +170786647282,213,0 +170786647331,213,0 +170786647379,213,0 +170786647427,213,0 +170786647475,213,0 +170786647523,213,0 +170786647573,214,0 +170786647621,213,0 +170786647668,213,0 +170786647716,213,0 +170786647766,213,0 +170786647814,213,0 +170786647862,213,0 +170786647909,213,0 +170786647959,213,0 +170786648007,213,0 +170786648056,213,0 +170786648106,213,0 +170786648154,213,0 +170786648202,213,0 +170786648249,213,0 +170786648299,214,0 +170786648347,214,0 +170786648396,214,0 +170786648444,214,0 +170786648492,214,0 +170786648540,213,0 +170786648588,213,0 +170786648636,213,0 +170786648684,213,0 +170786648732,213,0 +170786648780,213,0 +170786648827,213,0 +170786648877,213,0 +170786648925,213,0 +170786648974,213,0 +170786649024,213,0 +170786649073,213,0 +170786649123,213,0 +170786649171,213,0 +170786649218,214,0 +170786649266,213,0 +170786649316,214,0 +170786649364,214,0 +170786649412,214,0 +170786649460,214,0 +170786649508,214,0 +170786649555,214,0 +170786649603,213,0 +170786649651,213,0 +170786649701,213,0 +170786649750,213,0 +170786649798,213,0 +170786649846,213,0 +170786649894,213,0 +170786649942,213,0 +170786649989,213,0 +170786650037,213,0 +170786650085,213,0 +170786650135,213,0 +170786650183,213,0 +170786650231,213,0 +170786650278,213,0 +170786650326,214,0 +170786650374,214,0 +170786650422,213,0 +170786650472,213,0 +170786650521,213,0 +170786650571,212,0 +170786650619,212,0 +170786650667,212,0 +170786650714,213,0 +170786650762,213,0 +170786650810,213,0 +170786650858,213,0 +170786650906,213,0 +170786650956,213,0 +170786651003,213,0 +170786651053,213,0 +170786651102,213,0 +170786651150,213,0 +170786651198,213,0 +170786651246,213,0 +170786651296,213,0 +170786651343,213,0 +170786651391,213,0 +170786651439,213,0 +170786651487,213,0 +170786651537,212,0 +170786651585,213,0 +170786651634,213,0 +170786651682,213,0 +170786651730,213,0 +170786651778,213,0 +170786651826,213,0 +170786651876,213,0 +170786651925,213,0 +170786651973,213,0 +170786652021,213,0 +170786652069,213,0 +170786652117,213,0 +170786652165,213,0 +170786652213,213,0 +170786652261,213,0 +170786652310,213,0 +170786652360,213,0 +170786652408,213,0 +170786652457,213,0 +170786652505,213,0 +170786652553,213,0 +170786652603,213,0 +170786652652,213,0 +170786652702,213,0 +170786652751,213,0 +170786652799,213,0 +170786652849,213,0 +170786652896,213,0 +170786652944,214,0 +170786652992,213,0 +170786653040,213,0 +170786653090,214,0 +170786653139,214,0 +170786653189,214,0 +170786653238,213,0 +170786653286,213,0 +170786653334,213,0 +170786653384,213,0 +170786653432,213,0 +170786653481,213,0 +170786653531,213,0 +170786653580,213,0 +170786653628,213,0 +170786653677,213,0 +170786653725,213,0 +170786653773,213,0 +170786653821,213,0 +170786653869,213,0 +170786653917,214,0 +170786653965,214,0 +170786654015,214,0 +170786654063,214,0 +170786654112,214,0 +170786654160,214,0 +170786654208,213,0 +170786654256,213,0 +170786654304,213,0 +170786654353,213,0 +170786654401,213,0 +170786654449,213,0 +170786654497,213,0 +170786654545,213,0 +170786654593,213,0 +170786654641,213,0 +170786654689,214,0 +170786654737,213,0 +170786654785,213,0 +170786654833,213,0 +170786654880,214,0 +170786654930,214,0 +170786654979,214,0 +170786655027,213,0 +170786655075,213,0 +170786655125,213,0 +170786655173,213,0 +170786655220,213,0 +170786655268,213,0 +170786655316,213,0 +170786655366,213,0 +170786655414,213,0 +170786655462,213,0 +170786655509,213,0 +170786655559,213,0 +170786655607,213,0 +170786655656,213,0 +170786655706,213,0 +170786655754,213,0 +170786655803,214,0 +170786655853,214,0 +170786655901,214,0 +170786655949,214,0 +170786655997,214,0 +170786656046,214,0 +170786656096,213,0 +170786656143,213,0 +170786656193,213,0 +170786656241,213,0 +170786656289,213,0 +170786656337,213,0 +170786656386,213,0 +170786656434,213,0 +170786656484,213,0 +170786656531,213,0 +170786656579,213,0 +170786656627,213,0 +170786656677,213,0 +170786656725,214,0 +170786656773,214,0 +170786656822,214,0 +170786656870,213,0 +170786656918,213,0 +170786656968,213,0 +170786657016,213,0 +170786657064,213,0 +170786657113,212,0 +170786657163,213,0 +170786657210,213,0 +170786657260,213,0 +170786657309,213,0 +170786657357,213,0 +170786657405,213,0 +170786657453,213,0 +170786657501,213,0 +170786657551,213,0 +170786657599,213,0 +170786657647,213,0 +170786657695,214,0 +170786657742,213,0 +170786657790,213,0 +170786657838,214,0 +170786657886,214,0 +170786657936,213,0 +170786657985,213,0 +170786658033,212,0 +170786658081,213,0 +170786658131,213,0 +170786658179,212,0 +170786658226,213,0 +170786658276,213,0 +170786658324,213,0 +170786658372,213,0 +170786658420,213,0 +170786658468,213,0 +170786658517,213,0 +170786658565,213,0 +170786658613,213,0 +170786658662,213,0 +170786658712,213,0 +170786658760,213,0 +170786658808,213,0 +170786658856,213,0 +170786658905,213,0 +170786658953,213,0 +170786659001,212,0 +170786659049,213,0 +170786659097,213,0 +170786659146,213,0 +170786659194,213,0 +170786659242,213,0 +170786659290,213,0 +170786659338,213,0 +170786659387,213,0 +170786659435,213,0 +170786659483,213,0 +170786659531,213,0 +170786659579,213,0 +170786659628,213,0 +170786659676,214,0 +170786659724,213,0 +170786659773,213,0 +170786659821,213,0 +170786659869,212,0 +170786659917,212,0 +170786659965,213,0 +170786660015,213,0 +170786660064,213,0 +170786660112,213,0 +170786660160,213,0 +170786660208,213,0 +170786660256,213,0 +170786660304,213,0 +170786660351,213,0 +170786660399,213,0 +170786660447,213,0 +170786660495,214,0 +170786660543,213,0 +170786660591,213,0 +170786660641,214,0 +170786660690,213,0 +170786660738,213,0 +170786660786,212,0 +170786660835,213,0 +170786660883,212,0 +170786660931,213,0 +170786660979,213,0 +170786661029,213,0 +170786661077,213,0 +170786661125,213,0 +170786661172,213,0 +170786661220,213,0 +170786661270,213,0 +170786661318,213,0 +170786661366,213,0 +170786661414,213,0 +170786661461,213,0 +170786661509,213,0 +170786661557,213,0 +170786661605,213,0 +170786661655,213,0 +170786661704,213,0 +170786661752,212,0 +170786661800,213,0 +170786661849,212,0 +170786661897,213,0 +170786661945,213,0 +170786661993,213,0 +170786662041,213,0 +170786662089,213,0 +170786662137,213,0 +170786662185,213,0 +170786662234,213,0 +170786662282,213,0 +170786662330,213,0 +170786662378,214,0 +170786662426,213,0 +170786662474,213,0 +170786662522,213,0 +170786662570,213,0 +170786662618,213,0 +170786662667,212,0 +170786662715,213,0 +170786662763,213,0 +170786662811,212,0 +170786662859,213,0 +170786662908,213,0 +170786662956,213,0 +170786663004,213,0 +170786663052,213,0 +170786663102,213,0 +170786663150,213,0 +170786663200,213,0 +170786663248,213,0 +170786663296,213,0 +170786663343,213,0 +170786663391,213,0 +170786663441,213,0 +170786663489,213,0 +170786663537,213,0 +170786663585,213,0 +170786663633,213,0 +170786663681,212,0 +170786663730,212,0 +170786663780,212,0 +170786663828,213,0 +170786663875,213,0 +170786663925,213,0 +170786663973,213,0 +170786664021,213,0 +170786664068,213,0 +170786664116,213,0 +170786664166,213,0 +170786664214,213,0 +170786664261,213,0 +170786664309,213,0 +170786664357,213,0 +170786664405,213,0 +170786664453,213,0 +170786664501,212,0 +170786664549,213,0 +170786664596,213,0 +170786664644,212,0 +170786664694,213,0 +170786664742,213,0 +170786664790,213,0 +170786664839,213,0 +170786664887,213,0 +170786664936,213,0 +170786664986,213,0 +170786665034,213,0 +170786665082,213,0 +170786665130,213,0 +170786665178,213,0 +170786665225,213,0 +170786665273,214,0 +170786665321,213,0 +170786665369,213,0 +170786665417,213,0 +170786665465,212,0 +170786665512,212,0 +170786665560,212,0 +170786665608,213,0 +170786665658,212,0 +170786665707,213,0 +170786665755,213,0 +170786665803,213,0 +170786665852,213,0 +170786665900,213,0 +170786665948,213,0 +170786665997,213,0 +170786666045,213,0 +170786666093,213,0 +170786666141,213,0 +170786666189,213,0 +170786666237,213,0 +170786666285,213,0 +170786666332,213,0 +170786666380,213,0 +170786666428,213,0 +170786666477,212,0 +170786666525,212,0 +170786666575,213,0 +170786666624,213,0 +170786666674,213,0 +170786666722,213,0 +170786666771,213,0 +170786666821,213,0 +170786666870,213,0 +170786666918,213,0 +170786666966,213,0 +170786667014,213,0 +170786667063,213,0 +170786667113,213,0 +170786667162,213,0 +170786667210,213,0 +170786667258,213,0 +170786667308,213,0 +170786667355,213,0 +170786667405,213,0 +170786667453,213,0 +170786667501,213,0 +170786667549,213,0 +170786667597,213,0 +170786667646,213,0 +170786667696,213,0 +170786667745,213,0 +170786667793,213,0 +170786667841,213,0 +170786667889,213,0 +170786667937,213,0 +170786667986,213,0 +170786668036,213,0 +170786668085,213,0 +170786668133,213,0 +170786668181,213,0 +170786668230,213,0 +170786668278,213,0 +170786668326,213,0 +170786668374,213,0 +170786668424,213,0 +170786668473,213,0 +170786668523,213,0 +170786668571,213,0 +170786668620,213,0 +170786668670,213,0 +170786668718,213,0 +170786668767,213,0 +170786668816,214,0 +170786668866,213,0 +170786668914,213,0 +170786668961,214,0 +170786669009,214,0 +170786669057,213,0 +170786669105,213,0 +170786669153,213,0 +170786669201,213,0 +170786669249,213,0 +170786669298,213,0 +170786669346,213,0 +170786669394,213,0 +170786669442,213,0 +170786669490,213,0 +170786669538,213,0 +170786669586,214,0 +170786669634,213,0 +170786669682,214,0 +170786669731,213,0 +170786669780,214,0 +170786669828,214,0 +170786669876,214,0 +170786669926,213,0 +170786669975,213,0 +170786670023,213,0 +170786670073,213,0 +170786670121,213,0 +170786670169,213,0 +170786670217,213,0 +170786670266,213,0 +170786670314,214,0 +170786670362,213,0 +170786670410,214,0 +170786670458,213,0 +170786670507,214,0 +170786670555,214,0 +170786670603,214,0 +170786670653,214,0 +170786670700,214,0 +170786670748,214,0 +170786670796,214,0 +170786670844,214,0 +170786670894,214,0 +170786670941,213,0 +170786670989,213,0 +170786671037,213,0 +170786671085,213,0 +170786671133,213,0 +170786671183,213,0 +170786671231,213,0 +170786671280,213,0 +170786671328,213,0 +170786671376,213,0 +170786671424,213,0 +170786671472,214,0 +170786671520,214,0 +170786671568,214,0 +170786671616,214,0 +170786671664,214,0 +170786671711,214,0 +170786671759,214,0 +170786671807,214,0 +170786671855,213,0 +170786671903,213,0 +170786671951,213,0 +170786671999,213,0 +170786672047,213,0 +170786672096,213,0 +170786672145,213,0 +170786672193,213,0 +170786672241,213,0 +170786672289,213,0 +170786672337,213,0 +170786672385,213,0 +170786672433,213,0 +170786672482,213,0 +170786672530,213,0 +170786672578,214,0 +170786672628,213,0 +170786672676,214,0 +170786672725,214,0 +170786672773,214,0 +170786672823,213,0 +170786672871,213,0 +170786672919,212,0 +170786672967,213,0 +170786673016,213,0 +170786673064,213,0 +170786673112,213,0 +170786673161,213,0 +170786673209,213,0 +170786673257,213,0 +170786673305,213,0 +170786673353,213,0 +170786673401,213,0 +170786673449,213,0 +170786673497,213,0 +170786673546,213,0 +170786673594,214,0 +170786673644,213,0 +170786673691,213,0 +170786673739,213,0 +170786673787,213,0 +170786673835,213,0 +170786673883,213,0 +170786673931,213,0 +170786673978,213,0 +170786674026,213,0 +170786674074,213,0 +170786674122,213,0 +170786674170,213,0 +170786674218,213,0 +170786674265,213,0 +170786674313,213,0 +170786674361,213,0 +170786674409,213,0 +170786674457,213,0 +170786674504,213,0 +170786674552,213,0 +170786674602,213,0 +170786674649,214,0 +170786674697,213,0 +170786674745,213,0 +170786674793,213,0 +170786674841,213,0 +170786674889,213,0 +170786674938,213,0 +170786674986,213,0 +170786675034,213,0 +170786675082,213,0 +170786675129,213,0 +170786675177,213,0 +170786675225,213,0 +170786675273,213,0 +170786675322,213,0 +170786675370,213,0 +170786675418,214,0 +170786675466,213,0 +170786675514,213,0 +170786675562,213,0 +170786675610,213,0 +170786675659,213,0 +170786675707,213,0 +170786675756,213,0 +170786675804,212,0 +170786675852,213,0 +170786675901,213,0 +170786675949,213,0 +170786675997,213,0 +170786676045,213,0 +170786676092,213,0 +170786676140,213,0 +170786676188,213,0 +170786676237,213,0 +170786676287,213,0 +170786676335,213,0 +170786676383,213,0 +170786676430,214,0 +170786676480,213,0 +170786676527,213,0 +170786676575,213,0 +170786676625,212,0 +170786676672,213,0 +170786676722,213,0 +170786676770,213,0 +170786676818,213,0 +170786676867,213,0 +170786676916,213,0 +170786676964,213,0 +170786677012,213,0 +170786677060,213,0 +170786677108,213,0 +170786677156,213,0 +170786677203,213,0 +170786677251,213,0 +170786677301,213,0 +170786677349,214,0 +170786677396,213,0 +170786677446,213,0 +170786677494,213,0 +170786677541,213,0 +170786677589,212,0 +170786677637,213,0 +170786677685,213,0 +170786677732,213,0 +170786677780,213,0 +170786677828,213,0 +170786677876,213,0 +170786677924,213,0 +170786677972,213,0 +170786678019,213,0 +170786678067,213,0 +170786678115,213,0 +170786678163,213,0 +170786678211,214,0 +170786678259,213,0 +170786678308,213,0 +170786678356,213,0 +170786678405,213,0 +170786678453,213,0 +170786678501,212,0 +170786678549,212,0 +170786678598,212,0 +170786678646,213,0 +170786678694,213,0 +170786678742,213,0 +170786678790,213,0 +170786678837,213,0 +170786678885,213,0 +170786678933,213,0 +170786678981,213,0 +170786679029,213,0 +170786679077,213,0 +170786679125,213,0 +170786679174,214,0 +170786679224,214,0 +170786679272,213,0 +170786679320,214,0 +170786679368,213,0 +170786679417,213,0 +170786679467,212,0 +170786679515,213,0 +170786679564,213,0 +170786679612,213,0 +170786679662,213,0 +170786679711,213,0 +170786679759,213,0 +170786679807,213,0 +170786679855,213,0 +170786679903,213,0 +170786679951,213,0 +170786679999,213,0 +170786680047,214,0 +170786680094,213,0 +170786680144,214,0 +170786680192,213,0 +170786680240,214,0 +170786680287,213,0 +170786680335,213,0 +170786680383,213,0 +170786680431,213,0 +170786680479,213,0 +170786680527,213,0 +170786680574,213,0 +170786680622,213,0 +170786680670,213,0 +170786680718,213,0 +170786680767,213,0 +170786680817,213,0 +170786680865,213,0 +170786680914,213,0 +170786680962,213,0 +170786681012,214,0 +170786681059,214,0 +170786681107,214,0 +170786681155,213,0 +170786681205,213,0 +170786681252,212,0 +170786681300,213,0 +170786681348,213,0 +170786681398,213,0 +170786681445,213,0 +170786681495,213,0 +170786681544,213,0 +170786681594,213,0 +170786681642,213,0 +170786681690,213,0 +170786681738,213,0 +170786681787,213,0 +170786681835,213,0 +170786681883,213,0 +170786681932,213,0 +170786681980,213,0 +170786682028,213,0 +170786682076,214,0 +170786682124,213,0 +170786682172,213,0 +170786682220,213,0 +170786682268,212,0 +170786682317,213,0 +170786682365,213,0 +170786682415,213,0 +170786682463,213,0 +170786682512,213,0 +170786682560,213,0 +170786682609,213,0 +170786682657,213,0 +170786682707,213,0 +170786682755,213,0 +170786682802,213,0 +170786682850,213,0 +170786682900,214,0 +170786682948,213,0 +170786682996,213,0 +170786683044,213,0 +170786683091,213,0 +170786683139,213,0 +170786683189,213,0 +170786683238,213,0 +170786683288,213,0 +170786683336,213,0 +170786683385,213,0 +170786683435,213,0 +170786683482,213,0 +170786683532,213,0 +170786683580,213,0 +170786683628,213,0 +170786683676,213,0 +170786683725,213,0 +170786683775,213,0 +170786683822,213,0 +170786683870,214,0 +170786683918,214,0 +170786683966,213,0 +170786684014,213,0 +170786684064,212,0 +170786684113,213,0 +170786684161,213,0 +170786684209,213,0 +170786684257,213,0 +170786684306,213,0 +170786684356,213,0 +170786684405,213,0 +170786684455,213,0 +170786684503,213,0 +170786684551,213,0 +170786684600,213,0 +170786684648,213,0 +170786684696,213,0 +170786684744,213,0 +170786684792,213,0 +170786684840,213,0 +170786684889,213,0 +170786684939,213,0 +170786684987,213,0 +170786685036,213,0 +170786685084,213,0 +170786685132,213,0 +170786685180,213,0 +170786685229,213,0 +170786685277,213,0 +170786685325,213,0 +170786685375,213,0 +170786685423,213,0 +170786685471,213,0 +170786685519,213,0 +170786685567,213,0 +170786685616,214,0 +170786685664,213,0 +170786685712,214,0 +170786685760,214,0 +170786685808,214,0 +170786685857,213,0 +170786685907,213,0 +170786685957,213,0 +170786686006,213,0 +170786686055,213,0 +170786686105,213,0 +170786686153,213,0 +170786686201,213,0 +170786686249,213,0 +170786686297,213,0 +170786686344,213,0 +170786686392,213,0 +170786686440,213,0 +170786686490,214,0 +170786686538,213,0 +170786686585,214,0 +170786686633,214,0 +170786686681,214,0 +170786686731,213,0 +170786686779,213,0 +170786686828,213,0 +170786686878,213,0 +170786686925,212,0 +170786686973,213,0 +170786687023,213,0 +170786687071,213,0 +170786687119,213,0 +170786687167,213,0 +170786687214,213,0 +170786687262,213,0 +170786687310,213,0 +170786687360,213,0 +170786687409,213,0 +170786687459,214,0 +170786687507,214,0 +170786687554,214,0 +170786687602,214,0 +170786687650,214,0 +170786687700,213,0 +170786687749,213,0 +170786687799,213,0 +170786687847,213,0 +170786687895,212,0 +170786687943,213,0 +170786687991,213,0 +170786688040,213,0 +170786688088,213,0 +170786688138,213,0 +170786688185,213,0 +170786688235,213,0 +170786688283,213,0 +170786688331,213,0 +170786688378,214,0 +170786688428,213,0 +170786688476,213,0 +170786688525,213,0 +170786688573,214,0 +170786688623,213,0 +170786688671,212,0 +170786688719,213,0 +170786688768,213,0 +170786688818,213,0 +170786688867,213,0 +170786688915,213,0 +170786688963,213,0 +170786689012,213,0 +170786689060,213,0 +170786689108,213,0 +170786689158,213,0 +170786689207,213,0 +170786689257,214,0 +170786689305,214,0 +170786689353,213,0 +170786689402,213,0 +170786689452,214,0 +170786689501,213,0 +170786689551,213,0 +170786689598,213,0 +170786689648,213,0 +170786689696,213,0 +170786689744,213,0 +170786689793,213,0 +170786689841,213,0 +170786689889,213,0 +170786689937,213,0 +170786689985,213,0 +170786690033,213,0 +170786690081,213,0 +170786690129,213,0 +170786690177,213,0 +170786690226,213,0 +170786690274,214,0 +170786690322,213,0 +170786690371,213,0 +170786690419,214,0 +170786690469,213,0 +170786690517,213,0 +170786690565,213,0 +170786690613,213,0 +170786690662,213,0 +170786690710,213,0 +170786690759,213,0 +170786690807,213,0 +170786690855,213,0 +170786690903,213,0 +170786690953,213,0 +170786691001,213,0 +170786691049,214,0 +170786691097,213,0 +170786691145,214,0 +170786691193,213,0 +170786691242,213,0 +170786691290,214,0 +170786691340,214,0 +170786691389,213,0 +170786691439,213,0 +170786691486,213,0 +170786691534,213,0 +170786691582,213,0 +170786691630,213,0 +170786691678,213,0 +170786691728,213,0 +170786691776,213,0 +170786691824,213,0 +170786691873,213,0 +170786691921,213,0 +170786691969,214,0 +170786692017,214,0 +170786692065,214,0 +170786692113,214,0 +170786692161,214,0 +170786692209,214,0 +170786692256,213,0 +170786692304,213,0 +170786692352,213,0 +170786692402,213,0 +170786692450,213,0 +170786692498,213,0 +170786692547,213,0 +170786692597,213,0 +170786692645,213,0 +170786692693,213,0 +170786692740,213,0 +170786692788,213,0 +170786692836,213,0 +170786692886,213,0 +170786692934,213,0 +170786692982,213,0 +170786693029,214,0 +170786693077,213,0 +170786693125,214,0 +170786693173,214,0 +170786693221,213,0 +170786693269,213,0 +170786693318,213,0 +170786693366,213,0 +170786693416,213,0 +170786693464,213,0 +170786693512,213,0 +170786693560,213,0 +170786693609,213,0 +170786693657,213,0 +170786693705,213,0 +170786693753,213,0 +170786693801,213,0 +170786693848,213,0 +170786693898,213,0 +170786693947,214,0 +170786693995,214,0 +170786694043,214,0 +170786694091,214,0 +170786694141,213,0 +170786694190,213,0 +170786694239,213,0 +170786694287,212,0 +170786694335,213,0 +170786694383,213,0 +170786694431,213,0 +170786694479,213,0 +170786694527,213,0 +170786694575,213,0 +170786694625,213,0 +170786694674,213,0 +170786694722,213,0 +170786694771,213,0 +170786694819,213,0 +170786694867,214,0 +170786694915,214,0 +170786694965,214,0 +170786695013,213,0 +170786695060,214,0 +170786695108,213,0 +170786695156,212,0 +170786695204,213,0 +170786695252,213,0 +170786695300,213,0 +170786695348,213,0 +170786695396,212,0 +170786695444,213,0 +170786695493,213,0 +170786695541,213,0 +170786695589,213,0 +170786695637,213,0 +170786695685,213,0 +170786695733,213,0 +170786695782,213,0 +170786695830,213,0 +170786695878,213,0 +170786695926,213,0 +170786695974,214,0 +170786696022,214,0 +170786696070,213,0 +170786696117,212,0 +170786696165,213,0 +170786696213,213,0 +170786696261,213,0 +170786696309,213,0 +170786696356,212,0 +170786696406,213,0 +170786696454,213,0 +170786696502,213,0 +170786696549,213,0 +170786696597,213,0 +170786696645,213,0 +170786696693,213,0 +170786696741,213,0 +170786696789,213,0 +170786696838,213,0 +170786696886,213,0 +170786696934,214,0 +170786696981,213,0 +170786697031,212,0 +170786697079,213,0 +170786697127,212,0 +170786697175,213,0 +170786697222,213,0 +170786697270,213,0 +170786697318,213,0 +170786697366,213,0 +170786697413,213,0 +170786697461,213,0 +170786697509,213,0 +170786697557,213,0 +170786697607,213,0 +170786697654,213,0 +170786697704,213,0 +170786697752,213,0 +170786697801,213,0 +170786697849,214,0 +170786697897,213,0 +170786697945,213,0 +170786697993,213,0 +170786698040,213,0 +170786698088,212,0 +170786698136,213,0 +170786698184,213,0 +170786698232,213,0 +170786698280,213,0 +170786698328,213,0 +170786698376,213,0 +170786698423,213,0 +170786698471,213,0 +170786698519,213,0 +170786698567,213,0 +170786698615,213,0 +170786698662,214,0 +170786698710,213,0 +170786698758,213,0 +170786698806,214,0 +170786698854,213,0 +170786698902,212,0 +170786698950,213,0 +170786698998,212,0 +170786699046,213,0 +170786699094,213,0 +170786699144,213,0 +170786699193,213,0 +170786699241,213,0 +170786699291,213,0 +170786699339,213,0 +170786699388,213,0 +170786699438,213,0 +170786699486,213,0 +170786699534,213,0 +170786699582,213,0 +170786699631,213,0 +170786699679,213,0 +170786699729,213,0 +170786699777,213,0 +170786699824,213,0 +170786699874,213,0 +170786699923,213,0 +170786699973,213,0 +170786700021,213,0 +170786700070,213,0 +170786700118,213,0 +170786700166,213,0 +170786700214,213,0 +170786700262,213,0 +170786700310,213,0 +170786700358,213,0 +170786700406,213,0 +170786700453,214,0 +170786700501,214,0 +170786700551,213,0 +170786700600,213,0 +170786700648,214,0 +170786700696,213,0 +170786700744,213,0 +170786700794,213,0 +170786700843,213,0 +170786700891,213,0 +170786700939,213,0 +170786700988,213,0 +170786701038,213,0 +170786701086,213,0 +170786701134,213,0 +170786701182,213,0 +170786701230,213,0 +170786701278,213,0 +170786701327,213,0 +170786701377,213,0 +170786701425,213,0 +170786701474,214,0 +170786701522,214,0 +170786701571,213,0 +170786701621,213,0 +170786701670,213,0 +170786701718,213,0 +170786701768,213,0 +170786701817,213,0 +170786701867,213,0 +170786701916,213,0 +170786701964,213,0 +170786702012,213,0 +170786702062,213,0 +170786702111,213,0 +170786702161,213,0 +170786702208,213,0 +170786702256,214,0 +170786702304,214,0 +170786702352,214,0 +170786702401,214,0 +170786702449,214,0 +170786702497,214,0 +170786702545,213,0 +170786702593,213,0 +170786702641,213,0 +170786702690,213,0 +170786702738,213,0 +170786702787,213,0 +170786702835,213,0 +170786702885,213,0 +170786702935,213,0 +170786702984,213,0 +170786703032,213,0 +170786703081,213,0 +170786703131,213,0 +170786703179,213,0 +170786703227,214,0 +170786703275,213,0 +170786703323,214,0 +170786703372,213,0 +170786703420,214,0 +170786703468,213,0 +170786703517,213,0 +170786703567,213,0 +170786703616,213,0 +170786703666,213,0 +170786703714,213,0 +170786703762,213,0 +170786703810,213,0 +170786703857,213,0 +170786703905,213,0 +170786703953,213,0 +170786704001,213,0 +170786704049,213,0 +170786704098,213,0 +170786704146,213,0 +170786704194,213,0 +170786704242,213,0 +170786704290,213,0 +170786704337,214,0 +170786704385,214,0 +170786704433,213,0 +170786704481,212,0 +170786704529,213,0 +170786704577,213,0 +170786704625,213,0 +170786704672,213,0 +170786704720,213,0 +170786704768,213,0 +170786704816,213,0 +170786704864,213,0 +170786704912,213,0 +170786704959,213,0 +170786705007,213,0 +170786705055,213,0 +170786705103,214,0 +170786705151,214,0 +170786705199,214,0 +170786705246,214,0 +170786705294,213,0 +170786705342,214,0 +170786705390,213,0 +170786705438,213,0 +170786705486,213,0 +170786705533,213,0 +170786705581,213,0 +170786705629,213,0 +170786705677,213,0 +170786705727,213,0 +170786705775,213,0 +170786705823,213,0 +170786705871,213,0 +170786705919,213,0 +170786705966,214,0 +170786706016,213,0 +170786706064,214,0 +170786706112,213,0 +170786706160,214,0 +170786706208,213,0 +170786706256,214,0 +170786706305,213,0 +170786706354,213,0 +170786706402,213,0 +170786706450,213,0 +170786706500,213,0 +170786706548,213,0 +170786706596,213,0 +170786706645,213,0 +170786706693,213,0 +170786706741,213,0 +170786706789,213,0 +170786706837,213,0 +170786706885,213,0 +170786706933,214,0 +170786706981,213,0 +170786707029,213,0 +170786707077,214,0 +170786707126,214,0 +170786707176,213,0 +170786707224,213,0 +170786707272,213,0 +170786707319,213,0 +170786707367,213,0 +170786707415,213,0 +170786707463,213,0 +170786707513,213,0 +170786707561,213,0 +170786707610,213,0 +170786707660,213,0 +170786707709,213,0 +170786707759,213,0 +170786707807,213,0 +170786707854,213,0 +170786707902,213,0 +170786707950,214,0 +170786707998,214,0 +170786708046,214,0 +170786708094,214,0 +170786708142,213,0 +170786708189,212,0 +170786708237,212,0 +170786708287,213,0 +170786708334,213,0 +170786708382,212,0 +170786708430,213,0 +170786708478,213,0 +170786708526,213,0 +170786708573,213,0 +170786708621,213,0 +170786708669,213,0 +170786708717,213,0 +170786708765,213,0 +170786708813,214,0 +170786708861,213,0 +170786708909,213,0 +170786708957,213,0 +170786709005,214,0 +170786709054,213,0 +170786709104,213,0 +170786709153,213,0 +170786709201,213,0 +170786709249,213,0 +170786709296,213,0 +170786709344,213,0 +170786709394,213,0 +170786709442,213,0 +170786709490,213,0 +170786709537,213,0 +170786709587,213,0 +170786709635,213,0 +170786709683,213,0 +170786709732,213,0 +170786709782,213,0 +170786709830,213,0 +170786709878,213,0 +170786709925,213,0 +170786709973,214,0 +170786710021,213,0 +170786710069,213,0 +170786710117,213,0 +170786710164,213,0 +170786710212,213,0 +170786710260,213,0 +170786710308,213,0 +170786710356,213,0 +170786710404,213,0 +170786710451,213,0 +170786710499,213,0 +170786710547,213,0 +170786710595,214,0 +170786710645,213,0 +170786710693,214,0 +170786710741,214,0 +170786710788,214,0 +170786710838,213,0 +170786710886,213,0 +170786710935,213,0 +170786710983,212,0 +170786711031,213,0 +170786711081,213,0 +170786711130,213,0 +170786711178,212,0 +170786711226,213,0 +170786711274,213,0 +170786711322,213,0 +170786711370,213,0 +170786711418,213,0 +170786711465,213,0 +170786711513,213,0 +170786711561,213,0 +170786711609,213,0 +170786711657,213,0 +170786711705,213,0 +170786711753,213,0 +170786711802,213,0 +170786711850,213,0 +170786711898,212,0 +170786711946,213,0 +170786711994,212,0 +170786712043,212,0 +170786712091,213,0 +170786712139,213,0 +170786712187,213,0 +170786712235,213,0 +170786712283,213,0 +170786712330,213,0 +170786712378,213,0 +170786712426,213,0 +170786712474,213,0 +170786712522,213,0 +170786712570,213,0 +170786712618,213,0 +170786712668,214,0 +170786712716,214,0 +170786712763,213,0 +170786712813,213,0 +170786712861,213,0 +170786712910,213,0 +170786712960,213,0 +170786713008,213,0 +170786713056,213,0 +170786713104,213,0 +170786713152,213,0 +170786713200,213,0 +170786713248,213,0 +170786713295,213,0 +170786713345,213,0 +170786713393,213,0 +170786713441,213,0 +170786713488,213,0 +170786713538,214,0 +170786713587,214,0 +170786713635,213,0 +170786713685,213,0 +170786713734,213,0 +170786713784,213,0 +170786713832,213,0 +170786713880,213,0 +170786713928,213,0 +170786713975,213,0 +170786714023,213,0 +170786714073,213,0 +170786714121,213,0 +170786714169,213,0 +170786714217,213,0 +170786714265,214,0 +170786714312,214,0 +170786714360,214,0 +170786714408,214,0 +170786714456,214,0 +170786714504,214,0 +170786714552,214,0 +170786714600,213,0 +170786714650,213,0 +170786714698,213,0 +170786714747,213,0 +170786714795,213,0 +170786714843,213,0 +170786714891,213,0 +170786714939,213,0 +170786714987,213,0 +170786715035,213,0 +170786715083,213,0 +170786715131,214,0 +170786715178,213,0 +170786715226,214,0 +170786715274,214,0 +170786715322,214,0 +170786715372,213,0 +170786715421,213,0 +170786715471,214,0 +170786715519,214,0 +170786715567,213,0 +170786715615,213,0 +170786715663,213,0 +170786715710,213,0 +170786715758,213,0 +170786715806,213,0 +170786715854,213,0 +170786715902,213,0 +170786715950,213,0 +170786715999,213,0 +170786716047,213,0 +170786716095,213,0 +170786716143,214,0 +170786716191,214,0 +170786716239,214,0 +170786716287,214,0 +170786716335,213,0 +170786716383,214,0 +170786716431,214,0 +170786716478,213,0 +170786716528,213,0 +170786716576,213,0 +170786716624,213,0 +170786716672,213,0 +170786716721,213,0 +170786716769,213,0 +170786716817,213,0 +170786716867,213,0 +170786716914,213,0 +170786716964,213,0 +170786717013,213,0 +170786717061,213,0 +170786717111,213,0 +170786717159,214,0 +170786717207,213,0 +170786717255,214,0 +170786717303,214,0 +170786717350,214,0 +170786717398,214,0 +170786717446,213,0 +170786717494,213,0 +170786717544,213,0 +170786717592,213,0 +170786717641,213,0 +170786717689,213,0 +170786717737,213,0 +170786717785,213,0 +170786717834,213,0 +170786717884,213,0 +170786717933,213,0 +170786717981,213,0 +170786718029,213,0 +170786718077,213,0 +170786718126,213,0 +170786718174,214,0 +170786718224,213,0 +170786718272,214,0 +170786718320,214,0 +170786718368,213,0 +170786718417,213,0 +170786718465,213,0 +170786718513,213,0 +170786718561,213,0 +170786718610,213,0 +170786718658,213,0 +170786718708,213,0 +170786718756,213,0 +170786718804,213,0 +170786718852,213,0 +170786718900,213,0 +170786718948,213,0 +170786718997,214,0 +170786719047,214,0 +170786719096,213,0 +170786719144,213,0 +170786719194,213,0 +170786719243,214,0 +170786719291,213,0 +170786719339,213,0 +170786719388,213,0 +170786719436,213,0 +170786719484,213,0 +170786719532,213,0 +170786719580,213,0 +170786719628,213,0 +170786719678,213,0 +170786719725,213,0 +170786719773,213,0 +170786719821,213,0 +170786719869,213,0 +170786719917,214,0 +170786719965,213,0 +170786720013,213,0 +170786720063,214,0 +170786720111,213,0 +170786720158,214,0 +170786720206,213,0 +170786720254,213,0 +170786720302,213,0 +170786720350,213,0 +170786720398,213,0 +170786720446,213,0 +170786720496,213,0 +170786720544,213,0 +170786720592,213,0 +170786720641,213,0 +170786720691,213,0 +170786720740,213,0 +170786720788,213,0 +170786720837,213,0 +170786720885,213,0 +170786720933,213,0 +170786720981,213,0 +170786721029,213,0 +170786721079,213,0 +170786721126,214,0 +170786721176,213,0 +170786721224,212,0 +170786721272,213,0 +170786721321,213,0 +170786721371,213,0 +170786721419,213,0 +170786721467,213,0 +170786721514,213,0 +170786721562,213,0 +170786721610,213,0 +170786721658,213,0 +170786721708,213,0 +170786721757,213,0 +170786721805,213,0 +170786721853,213,0 +170786721901,213,0 +170786721951,213,0 +170786721999,213,0 +170786722046,214,0 +170786722096,213,0 +170786722144,213,0 +170786722193,213,0 +170786722241,213,0 +170786722289,213,0 +170786722337,213,0 +170786722385,213,0 +170786722433,213,0 +170786722481,213,0 +170786722529,213,0 +170786722578,213,0 +170786722628,213,0 +170786722676,213,0 +170786722724,213,0 +170786722772,213,0 +170786722820,214,0 +170786722869,214,0 +170786722917,213,0 +170786722965,214,0 +170786723013,213,0 +170786723061,213,0 +170786723110,213,0 +170786723158,213,0 +170786723208,213,0 +170786723257,213,0 +170786723305,213,0 +170786723353,213,0 +170786723401,213,0 +170786723449,213,0 +170786723498,213,0 +170786723548,213,0 +170786723596,213,0 +170786723644,213,0 +170786723693,213,0 +170786723741,214,0 +170786723791,214,0 +170786723839,214,0 +170786723888,214,0 +170786723936,214,0 +170786723984,213,0 +170786724034,213,0 +170786724083,213,0 +170786724131,213,0 +170786724179,213,0 +170786724227,213,0 +170786724276,213,0 +170786724324,213,0 +170786724372,213,0 +170786724420,213,0 +170786724467,213,0 +170786724515,213,0 +170786724565,214,0 +170786724613,213,0 +170786724662,214,0 +170786724712,214,0 +170786724759,214,0 +170786724809,214,0 +170786724857,213,0 +170786724906,213,0 +170786724954,213,0 +170786725002,213,0 +170786725050,213,0 +170786725097,213,0 +170786725145,213,0 +170786725195,213,0 +170786725244,213,0 +170786725292,213,0 +170786725340,213,0 +170786725388,213,0 +170786725436,213,0 +170786725485,213,0 +170786725533,213,0 +170786725581,213,0 +170786725628,213,0 +170786725678,213,0 +170786725727,213,0 +170786725775,214,0 +170786725823,213,0 +170786725871,213,0 +170786725920,213,0 +170786725970,213,0 +170786726017,213,0 +170786726065,213,0 +170786726113,213,0 +170786726161,213,0 +170786726209,213,0 +170786726257,213,0 +170786726305,213,0 +170786726353,213,0 +170786726401,213,0 +170786726450,213,0 +170786726498,213,0 +170786726546,214,0 +170786726594,213,0 +170786726642,213,0 +170786726691,214,0 +170786726739,213,0 +170786726789,213,0 +170786726837,213,0 +170786726885,212,0 +170786726933,213,0 +170786726982,213,0 +170786727030,213,0 +170786727078,213,0 +170786727126,213,0 +170786727174,213,0 +170786727224,213,0 +170786727272,213,0 +170786727321,213,0 +170786727371,213,0 +170786727419,213,0 +170786727467,213,0 +170786727515,213,0 +170786727563,213,0 +170786727612,213,0 +170786727660,213,0 +170786727708,213,0 +170786727756,213,0 +170786727804,213,0 +170786727853,213,0 +170786727901,213,0 +170786727949,212,0 +170786727998,213,0 +170786728046,213,0 +170786728094,213,0 +170786728144,213,0 +170786728193,213,0 +170786728241,213,0 +170786728289,213,0 +170786728338,213,0 +170786728386,213,0 +170786728434,213,0 +170786728484,214,0 +170786728532,213,0 +170786728581,214,0 +170786728629,213,0 +170786728677,213,0 +170786728725,213,0 +170786728773,213,0 +170786728822,213,0 +170786728870,213,0 +170786728918,213,0 +170786728966,213,0 +170786729014,213,0 +170786729062,213,0 +170786729110,213,0 +170786729157,213,0 +170786729205,213,0 +170786729253,213,0 +170786729301,213,0 +170786729349,213,0 +170786729397,213,0 +170786729447,213,0 +170786729495,214,0 +170786729542,213,0 +170786729592,213,0 +170786729640,212,0 +170786729688,213,0 +170786729736,213,0 +170786729784,213,0 +170786729833,213,0 +170786729883,213,0 +170786729931,213,0 +170786729979,213,0 +170786730027,213,0 +170786730074,213,0 +170786730124,213,0 +170786730172,213,0 +170786730220,213,0 +170786730269,213,0 +170786730319,213,0 +170786730367,213,0 +170786730416,213,0 +170786730464,214,0 +170786730512,214,0 +170786730560,214,0 +170786730608,214,0 +170786730658,214,0 +170786730707,214,0 +170786730755,214,0 +170786730803,214,0 +170786730851,214,0 +170786730899,213,0 +170786730947,213,0 +170786730997,213,0 +170786731046,213,0 +170786731096,213,0 +170786731145,213,0 +170786731193,213,0 +170786731241,213,0 +170786731291,213,0 +170786731340,213,0 +170786731388,213,0 +170786731436,213,0 +170786731484,213,0 +170786731532,213,0 +170786731580,213,0 +170786731628,214,0 +170786731676,213,0 +170786731724,214,0 +170786731772,213,0 +170786731819,213,0 +170786731869,213,0 +170786731917,213,0 +170786731965,213,0 +170786732013,213,0 +170786732062,213,0 +170786732112,213,0 +170786732160,213,0 +170786732208,213,0 +170786732256,213,0 +170786732305,213,0 +170786732353,213,0 +170786732401,213,0 +170786732449,213,0 +170786732497,213,0 +170786732545,213,0 +170786732593,214,0 +170786732642,213,0 +170786732690,214,0 +170786732738,214,0 +170786732786,213,0 +170786732834,212,0 +170786732883,213,0 +170786732933,212,0 +170786732981,213,0 +170786733029,213,0 +170786733076,213,0 +170786733126,213,0 +170786733174,213,0 +170786733222,213,0 +170786733270,213,0 +170786733318,213,0 +170786733366,213,0 +170786733414,214,0 +170786733461,213,0 +170786733511,214,0 +170786733559,213,0 +170786733607,214,0 +170786733656,214,0 +170786733706,213,0 +170786733754,213,0 +170786733802,213,0 +170786733850,213,0 +170786733898,213,0 +170786733945,213,0 +170786733993,213,0 +170786734041,213,0 +170786734089,213,0 +170786734139,213,0 +170786734188,213,0 +170786734238,213,0 +170786734286,213,0 +170786734335,213,0 +170786734383,213,0 +170786734431,214,0 +170786734479,214,0 +170786734529,213,0 +170786734577,214,0 +170786734624,213,0 +170786734672,213,0 +170786734720,213,0 +170786734770,213,0 +170786734817,213,0 +170786734865,213,0 +170786734913,213,0 +170786734961,213,0 +170786735011,213,0 +170786735058,213,0 +170786735106,213,0 +170786735154,213,0 +170786735204,214,0 +170786735253,214,0 +170786735301,214,0 +170786735351,214,0 +170786735400,214,0 +170786735448,214,0 +170786735496,213,0 +170786735544,213,0 +170786735592,213,0 +170786735639,213,0 +170786735687,213,0 +170786735735,213,0 +170786735783,213,0 +170786735831,213,0 +170786735879,213,0 +170786735927,213,0 +170786735976,214,0 +170786736024,214,0 +170786736074,214,0 +170786736122,214,0 +170786736170,214,0 +170786736219,214,0 +170786736267,214,0 +170786736317,214,0 +170786736365,214,0 +170786736414,214,0 +170786736462,213,0 +170786736512,213,0 +170786736561,213,0 +170786736609,213,0 +170786736657,213,0 +170786736707,213,0 +170786736754,213,0 +170786736804,213,0 +170786736852,213,0 +170786736900,214,0 +170786736947,214,0 +170786736995,214,0 +170786737043,214,0 +170786737091,214,0 +170786737139,214,0 +170786737186,214,0 +170786737234,214,0 +170786737284,213,0 +170786737333,213,0 +170786737381,213,0 +170786737429,213,0 +170786737477,213,0 +170786737526,213,0 +170786737576,213,0 +170786737625,213,0 +170786737675,213,0 +170786737723,214,0 +170786737772,213,0 +170786737822,213,0 +170786737871,213,0 +170786737921,214,0 +170786737969,214,0 +170786738017,214,0 +170786738065,214,0 +170786738112,213,0 +170786738162,214,0 +170786738210,214,0 +170786738258,213,0 +170786738306,213,0 +170786738354,213,0 +170786738402,213,0 +170786738450,213,0 +170786738499,213,0 +170786738547,213,0 +170786738597,213,0 +170786738645,213,0 +170786738693,213,0 +170786738742,213,0 +170786738790,213,0 +170786738838,213,0 +170786738886,214,0 +170786738935,213,0 +170786738983,213,0 +170786739031,213,0 +170786739079,214,0 +170786739128,213,0 +170786739176,213,0 +170786739226,212,0 +170786739274,213,0 +170786739322,212,0 +170786739370,213,0 +170786739419,213,0 +170786739467,213,0 +170786739516,213,0 +170786739564,213,0 +170786739614,213,0 +170786739663,213,0 +170786739711,213,0 +170786739759,213,0 +170786739807,213,0 +170786739855,213,0 +170786739904,213,0 +170786739952,214,0 +170786740000,213,0 +170786740050,213,0 +170786740098,213,0 +170786740146,213,0 +170786740194,213,0 +170786740243,213,0 +170786740291,213,0 +170786740339,213,0 +170786740387,213,0 +170786740435,213,0 +170786740483,213,0 +170786740530,213,0 +170786740580,213,0 +170786740628,213,0 +170786740676,214,0 +170786740724,214,0 +170786740773,214,0 +170786740821,214,0 +170786740871,213,0 +170786740919,213,0 +170786740968,212,0 +170786741017,213,0 +170786741065,213,0 +170786741113,213,0 +170786741161,213,0 +170786741211,213,0 +170786741260,213,0 +170786741308,213,0 +170786741356,213,0 +170786741404,213,0 +170786741452,213,0 +170786741500,213,0 +170786741549,214,0 +170786741597,214,0 +170786741645,214,0 +170786741693,214,0 +170786741741,213,0 +170786741791,214,0 +170786741839,213,0 +170786741887,213,0 +170786741935,213,0 +170786741984,213,0 +170786742033,213,0 +170786742081,213,0 +170786742129,213,0 +170786742177,213,0 +170786742225,213,0 +170786742275,213,0 +170786742323,213,0 +170786742372,213,0 +170786742420,213,0 +170786742469,213,0 +170786742517,213,0 +170786742565,214,0 +170786742613,214,0 +170786742663,214,0 +170786742712,213,0 +170786742761,213,0 +170786742809,213,0 +170786742857,213,0 +170786742905,213,0 +170786742953,213,0 +170786743002,213,0 +170786743050,213,0 +170786743100,213,0 +170786743148,213,0 +170786743197,213,0 +170786743247,213,0 +170786743294,214,0 +170786743344,214,0 +170786743394,214,0 +170786743443,214,0 +170786743491,214,0 +170786743539,214,0 +170786743586,213,0 +170786743634,213,0 +170786743682,213,0 +170786743730,213,0 +170786743778,213,0 +170786743828,213,0 +170786743876,213,0 +170786743923,213,0 +170786743971,213,0 +170786744019,213,0 +170786744067,213,0 +170786744115,213,0 +170786744165,214,0 +170786744214,214,0 +170786744264,213,0 +170786744311,214,0 +170786744359,214,0 +170786744407,214,0 +170786744455,214,0 +170786744503,213,0 +170786744551,213,0 +170786744599,213,0 +170786744647,213,0 +170786744695,213,0 +170786744743,213,0 +170786744793,213,0 +170786744840,213,0 +170786744888,213,0 +170786744936,213,0 +170786744984,213,0 +170786745032,214,0 +170786745082,214,0 +170786745131,214,0 +170786745181,213,0 +170786745229,214,0 +170786745277,214,0 +170786745325,213,0 +170786745374,213,0 +170786745422,213,0 +170786745470,213,0 +170786745518,213,0 +170786745566,213,0 +170786745614,213,0 +170786745662,213,0 +170786745709,213,0 +170786745757,213,0 +170786745805,213,0 +170786745853,213,0 +170786745901,213,0 +170786745949,213,0 +170786745996,214,0 +170786746044,213,0 +170786746092,213,0 +170786746140,213,0 +170786746188,214,0 +170786746235,213,0 +170786746285,213,0 +170786746333,213,0 +170786746380,212,0 +170786746428,213,0 +170786746478,213,0 +170786746526,213,0 +170786746573,213,0 +170786746621,213,0 +170786746669,213,0 +170786746717,213,0 +170786746765,213,0 +170786746812,213,0 +170786746860,213,0 +170786746908,214,0 +170786746956,213,0 +170786747004,214,0 +170786747052,213,0 +170786747100,213,0 +170786747147,213,0 +170786747195,213,0 +170786747245,213,0 +170786747294,213,0 +170786747342,213,0 +170786747390,213,0 +170786747438,213,0 +170786747487,213,0 +170786747537,213,0 +170786747585,213,0 +170786747634,213,0 +170786747682,213,0 +170786747731,213,0 +170786747779,213,0 +170786747827,213,0 +170786747876,214,0 +170786747926,214,0 +170786747974,213,0 +170786748022,214,0 +170786748070,213,0 +170786748118,213,0 +170786748166,213,0 +170786748214,213,0 +170786748262,213,0 +170786748310,213,0 +170786748359,213,0 +170786748407,213,0 +170786748455,213,0 +170786748503,213,0 +170786748551,213,0 +170786748601,213,0 +170786748648,213,0 +170786748696,213,0 +170786748746,214,0 +170786748794,214,0 +170786748843,214,0 +170786748891,214,0 +170786748939,213,0 +170786748987,213,0 +170786749037,213,0 +170786749085,213,0 +170786749134,213,0 +170786749182,213,0 +170786749230,213,0 +170786749278,213,0 +170786749327,213,0 +170786749377,213,0 +170786749425,213,0 +170786749473,213,0 +170786749521,213,0 +170786749570,213,0 +170786749618,214,0 +170786749668,213,0 +170786749716,214,0 +170786749765,214,0 +170786749813,213,0 +170786749861,213,0 +170786749909,213,0 +170786749957,212,0 +170786750006,213,0 +170786750055,213,0 +170786750103,213,0 +170786750151,213,0 +170786750199,213,0 +170786750249,213,0 +170786750297,213,0 +170786750346,213,0 +170786750396,213,0 +170786750444,213,0 +170786750493,213,0 +170786750541,214,0 +170786750591,214,0 +170786750639,214,0 +170786750686,214,0 +170786750734,213,0 +170786750784,213,0 +170786750833,213,0 +170786750881,213,0 +170786750929,213,0 +170786750977,213,0 +170786751025,213,0 +170786751073,213,0 +170786751121,213,0 +170786751169,213,0 +170786751218,213,0 +170786751266,213,0 +170786751314,213,0 +170786751362,213,0 +170786751410,214,0 +170786751459,214,0 +170786751509,214,0 +170786751557,214,0 +170786751606,213,0 +170786751654,213,0 +170786751704,213,0 +170786751753,213,0 +170786751803,213,0 +170786751853,213,0 +170786751900,213,0 +170786751951,213,0 +170786751998,213,0 +170786752048,213,0 +170786752096,213,0 +170786752144,213,0 +170786752192,213,0 +170786752240,213,0 +170786752288,213,0 +170786752335,214,0 +170786752383,214,0 +170786752431,213,0 +170786752479,213,0 +170786752529,213,0 +170786752577,213,0 +170786752625,213,0 +170786752672,213,0 +170786752720,213,0 +170786752770,213,0 +170786752818,213,0 +170786752867,213,0 +170786752915,212,0 +170786752963,213,0 +170786753011,213,0 +170786753059,213,0 +170786753107,213,0 +170786753155,213,0 +170786753204,213,0 +170786753254,213,0 +170786753303,213,0 +170786753351,214,0 +170786753401,213,0 +170786753449,212,0 +170786753497,213,0 +170786753545,213,0 +170786753593,213,0 +170786753641,213,0 +170786753689,213,0 +170786753736,213,0 +170786753786,213,0 +170786753834,213,0 +170786753882,213,0 +170786753931,213,0 +170786753979,213,0 +170786754029,213,0 +170786754078,213,0 +170786754126,213,0 +170786754174,213,0 +170786754222,213,0 +170786754270,213,0 +170786754318,213,0 +170786754366,213,0 +170786754415,212,0 +170786754463,213,0 +170786754511,213,0 +170786754559,213,0 +170786754609,213,0 +170786754658,213,0 +170786754708,213,0 +170786754756,213,0 +170786754804,213,0 +170786754853,213,0 +170786754901,213,0 +170786754949,213,0 +170786754998,214,0 +170786755048,214,0 +170786755097,214,0 +170786755145,214,0 +170786755195,213,0 +170786755243,213,0 +170786755290,213,0 +170786755338,213,0 +170786755386,213,0 +170786755436,213,0 +170786755485,213,0 +170786755533,213,0 +170786755581,213,0 +170786755629,213,0 +170786755677,213,0 +170786755725,213,0 +170786755773,213,0 +170786755821,213,0 +170786755869,213,0 +170786755917,213,0 +170786755965,213,0 +170786756013,214,0 +170786756060,213,0 +170786756110,212,0 +170786756158,213,0 +170786756206,213,0 +170786756254,213,0 +170786756302,213,0 +170786756351,213,0 +170786756399,213,0 +170786756447,213,0 +170786756496,213,0 +170786756546,213,0 +170786756594,213,0 +170786756642,213,0 +170786756691,214,0 +170786756739,214,0 +170786756787,214,0 +170786756835,214,0 +170786756883,214,0 +170786756931,214,0 +170786756979,213,0 +170786757027,213,0 +170786757076,213,0 +170786757124,213,0 +170786757172,213,0 +170786757220,213,0 +170786757268,213,0 +170786757317,214,0 +170786757367,214,0 +170786757415,214,0 +170786757463,214,0 +170786757511,214,0 +170786757558,214,0 +170786757606,214,0 +170786757656,214,0 +170786757704,214,0 +170786757753,214,0 +170786757801,214,0 +170786757849,213,0 +170786757897,213,0 +170786757945,213,0 +170786757994,213,0 +170786758044,213,0 +170786758093,213,0 +170786758141,213,0 +170786758191,213,0 +170786758239,213,0 +170786758287,214,0 +170786758336,214,0 +170786758386,214,0 +170786758434,214,0 +170786758481,214,0 +170786758529,214,0 +170786758577,214,0 +170786758627,214,0 +170786758676,214,0 +170786758724,213,0 +170786758772,213,0 +170786758820,213,0 +170786758868,213,0 +170786758916,213,0 +170786758964,213,0 +170786759014,213,0 +170786759062,213,0 +170786759109,213,0 +170786759159,213,0 +170786759207,214,0 +170786759257,213,0 +170786759304,213,0 +170786759354,214,0 +170786759402,214,0 +170786759450,214,0 +170786759497,214,0 +170786759545,214,0 +170786759593,214,0 +170786759643,213,0 +170786759691,213,0 +170786759739,213,0 +170786759788,213,0 +170786759836,213,0 +170786759884,213,0 +170786759934,213,0 +170786759982,213,0 +170786760030,213,0 +170786760078,213,0 +170786760128,213,0 +170786760175,213,0 +170786760225,214,0 +170786760273,214,0 +170786760321,214,0 +170786760369,214,0 +170786760417,214,0 +170786760465,214,0 +170786760513,213,0 +170786760561,213,0 +170786760609,213,0 +170786760658,213,0 +170786760706,213,0 +170786760755,213,0 +170786760803,213,0 +170786760853,213,0 +170786760902,213,0 +170786760950,213,0 +170786760998,213,0 +170786761046,214,0 +170786761096,213,0 +170786761144,213,0 +170786761192,214,0 +170786761239,214,0 +170786761287,214,0 +170786761337,213,0 +170786761385,213,0 +170786761433,213,0 +170786761481,213,0 +170786761530,213,0 +170786761578,213,0 +170786761626,213,0 +170786761674,213,0 +170786761722,213,0 +170786761770,213,0 +170786761818,213,0 +170786761866,213,0 +170786761914,213,0 +170786761962,213,0 +170786762011,214,0 +170786762061,214,0 +170786762109,214,0 +170786762157,214,0 +170786762205,214,0 +170786762252,213,0 +170786762302,213,0 +170786762350,213,0 +170786762398,213,0 +170786762446,213,0 +170786762494,213,0 +170786762542,213,0 +170786762590,213,0 +170786762637,213,0 +170786762685,213,0 +170786762733,213,0 +170786762781,213,0 +170786762829,213,0 +170786762879,213,0 +170786762927,213,0 +170786762975,214,0 +170786763023,214,0 +170786763070,214,0 +170786763118,214,0 +170786763168,213,0 +170786763216,213,0 +170786763264,213,0 +170786763313,213,0 +170786763361,213,0 +170786763409,213,0 +170786763457,213,0 +170786763505,213,0 +170786763553,213,0 +170786763603,213,0 +170786763650,213,0 +170786763698,214,0 +170786763746,214,0 +170786763796,214,0 +170786763845,214,0 +170786763893,214,0 +170786763941,214,0 +170786763991,214,0 +170786764039,213,0 +170786764087,213,0 +170786764136,213,0 +170786764186,212,0 +170786764234,213,0 +170786764283,213,0 +170786764331,213,0 +170786764379,213,0 +170786764427,213,0 +170786764475,213,0 +170786764523,213,0 +170786764571,213,0 +170786764620,213,0 +170786764668,213,0 +170786764718,213,0 +170786764766,213,0 +170786764815,213,0 +170786764863,213,0 +170786764911,214,0 +170786764959,213,0 +170786765009,213,0 +170786765057,213,0 +170786765105,213,0 +170786765154,213,0 +170786765202,213,0 +170786765252,213,0 +170786765300,213,0 +170786765347,213,0 +170786765395,213,0 +170786765443,213,0 +170786765491,213,0 +170786765539,213,0 +170786765587,213,0 +170786765635,213,0 +170786765685,214,0 +170786765733,213,0 +170786765782,213,0 +170786765831,213,0 +170786765881,213,0 +170786765930,213,0 +170786765978,213,0 +170786766028,213,0 +170786766077,213,0 +170786766125,213,0 +170786766173,213,0 +170786766221,213,0 +170786766271,213,0 +170786766320,213,0 +170786766368,213,0 +170786766416,213,0 +170786766464,213,0 +170786766512,213,0 +170786766560,214,0 +170786766608,214,0 +170786766656,214,0 +170786766704,213,0 +170786766752,213,0 +170786766800,213,0 +170786766848,213,0 +170786766896,213,0 +170786766944,213,0 +170786766992,213,0 +170786767039,213,0 +170786767089,213,0 +170786767137,213,0 +170786767185,213,0 +170786767233,213,0 +170786767281,213,0 +170786767329,214,0 +170786767377,213,0 +170786767424,214,0 +170786767472,213,0 +170786767520,214,0 +170786767568,214,0 +170786767618,213,0 +170786767667,212,0 +170786767715,212,0 +170786767765,213,0 +170786767814,213,0 +170786767862,212,0 +170786767911,213,0 +170786767961,213,0 +170786768009,213,0 +170786768057,213,0 +170786768106,213,0 +170786768154,213,0 +170786768204,213,0 +170786768252,213,0 +170786768300,213,0 +170786768349,213,0 +170786768399,213,0 +170786768447,213,0 +170786768496,213,0 +170786768544,213,0 +170786768592,212,0 +170786768640,213,0 +170786768689,212,0 +170786768737,213,0 +170786768787,213,0 +170786768834,213,0 +170786768882,213,0 +170786768930,213,0 +170786768980,213,0 +170786769028,213,0 +170786769077,213,0 +170786769125,213,0 +170786769173,213,0 +170786769223,213,0 +170786769272,213,0 +170786769320,213,0 +170786769368,213,0 +170786769416,213,0 +170786769464,213,0 +170786769512,212,0 +170786769559,213,0 +170786769607,213,0 +170786769655,212,0 +170786769703,213,0 +170786769751,213,0 +170786769798,213,0 +170786769846,213,0 +170786769894,213,0 +170786769942,213,0 +170786769990,213,0 +170786770037,213,0 +170786770087,213,0 +170786770135,214,0 +170786770182,214,0 +170786770230,214,0 +170786770279,213,0 +170786770329,213,0 +170786770377,212,0 +170786770425,213,0 +170786770474,213,0 +170786770522,213,0 +170786770570,213,0 +170786770618,213,0 +170786770666,213,0 +170786770714,213,0 +170786770761,213,0 +170786770809,213,0 +170786770857,213,0 +170786770905,213,0 +170786770955,213,0 +170786771003,213,0 +170786771050,213,0 +170786771098,213,0 +170786771146,213,0 +170786771196,213,0 +170786771244,212,0 +170786771292,212,0 +170786771340,213,0 +170786771388,213,0 +170786771436,213,0 +170786771483,213,0 +170786771531,213,0 +170786771579,213,0 +170786771627,213,0 +170786771675,213,0 +170786771725,213,0 +170786771772,213,0 +170786771820,213,0 +170786771870,213,0 +170786771918,214,0 +170786771966,214,0 +170786772014,213,0 +170786772062,213,0 +170786772111,213,0 +170786772159,213,0 +170786772209,213,0 +170786772256,213,0 +170786772304,213,0 +170786772354,213,0 +170786772402,213,0 +170786772449,213,0 +170786772499,213,0 +170786772547,213,0 +170786772595,213,0 +170786772643,213,0 +170786772690,213,0 +170786772738,213,0 +170786772786,214,0 +170786772834,213,0 +170786772882,213,0 +170786772930,213,0 +170786772978,213,0 +170786773026,213,0 +170786773074,213,0 +170786773123,213,0 +170786773173,213,0 +170786773222,213,0 +170786773270,213,0 +170786773320,213,0 +170786773367,213,0 +170786773417,213,0 +170786773465,213,0 +170786773513,213,0 +170786773562,214,0 +170786773610,214,0 +170786773658,213,0 +170786773706,213,0 +170786773755,213,0 +170786773803,214,0 +170786773851,213,0 +170786773899,213,0 +170786773948,213,0 +170786773996,213,0 +170786774044,213,0 +170786774094,213,0 +170786774143,213,0 +170786774191,213,0 +170786774241,213,0 +170786774290,213,0 +170786774338,214,0 +170786774386,213,0 +170786774436,213,0 +170786774484,214,0 +170786774531,214,0 +170786774579,213,0 +170786774629,214,0 +170786774677,214,0 +170786774725,213,0 +170786774773,212,0 +170786774822,212,0 +170786774870,213,0 +170786774918,213,0 +170786774967,213,0 +170786775015,213,0 +170786775063,213,0 +170786775111,213,0 +170786775159,213,0 +170786775207,213,0 +170786775255,214,0 +170786775303,213,0 +170786775352,213,0 +170786775400,213,0 +170786775450,214,0 +170786775498,214,0 +170786775546,214,0 +170786775595,213,0 +170786775645,212,0 +170786775694,212,0 +170786775742,213,0 +170786775790,213,0 +170786775838,213,0 +170786775886,213,0 +170786775934,213,0 +170786775982,213,0 +170786776030,213,0 +170786776078,213,0 +170786776126,213,0 +170786776174,213,0 +170786776222,213,0 +170786776270,213,0 +170786776319,213,0 +170786776367,213,0 +170786776415,213,0 +170786776463,214,0 +170786776511,213,0 +170786776558,212,0 +170786776608,213,0 +170786776657,212,0 +170786776705,213,0 +170786776753,213,0 +170786776803,213,0 +170786776851,213,0 +170786776899,213,0 +170786776946,213,0 +170786776994,213,0 +170786777042,213,0 +170786777090,213,0 +170786777138,213,0 +170786777188,214,0 +170786777236,213,0 +170786777285,213,0 +170786777333,213,0 +170786777381,213,0 +170786777429,213,0 +170786777478,212,0 +170786777526,213,0 +170786777574,213,0 +170786777622,213,0 +170786777670,213,0 +170786777720,213,0 +170786777769,213,0 +170786777817,213,0 +170786777865,213,0 +170786777913,213,0 +170786777963,213,0 +170786778011,213,0 +170786778061,214,0 +170786778110,213,0 +170786778160,213,0 +170786778207,213,0 +170786778255,213,0 +170786778303,213,0 +170786778353,212,0 +170786778401,212,0 +170786778449,213,0 +170786778497,213,0 +170786778546,213,0 +170786778596,213,0 +170786778644,213,0 +170786778692,213,0 +170786778741,213,0 +170786778789,213,0 +170786778838,214,0 +170786778886,214,0 +170786778936,214,0 +170786778984,214,0 +170786779033,214,0 +170786779081,213,0 +170786779129,214,0 +170786779178,213,0 +170786779228,212,0 +170786779276,213,0 +170786779324,213,0 +170786779371,213,0 +170786779419,213,0 +170786779467,213,0 +170786779515,213,0 +170786779563,213,0 +170786779611,213,0 +170786779659,213,0 +170786779709,214,0 +170786779757,214,0 +170786779806,214,0 +170786779856,214,0 +170786779903,214,0 +170786779951,214,0 +170786779999,214,0 +170786780047,213,0 +170786780095,213,0 +170786780143,213,0 +170786780191,213,0 +170786780240,213,0 +170786780288,213,0 +170786780336,213,0 +170786780384,213,0 +170786780432,213,0 +170786780482,213,0 +170786780531,213,0 +170786780579,214,0 +170786780629,213,0 +170786780677,213,0 +170786780725,214,0 +170786780772,213,0 +170786780820,214,0 +170786780870,213,0 +170786780918,213,0 +170786780966,213,0 +170786781015,213,0 +170786781063,212,0 +170786781113,213,0 +170786781162,213,0 +170786781212,213,0 +170786781261,213,0 +170786781309,213,0 +170786781359,213,0 +170786781407,213,0 +170786781454,213,0 +170786781502,213,0 +170786781550,213,0 +170786781600,213,0 +170786781648,214,0 +170786781696,214,0 +170786781745,214,0 +170786781795,213,0 +170786781842,213,0 +170786781892,212,0 +170786781940,213,0 +170786781988,213,0 +170786782037,213,0 +170786782085,213,0 +170786782133,213,0 +170786782181,213,0 +170786782231,213,0 +170786782279,213,0 +170786782327,213,0 +170786782376,213,0 +170786782424,213,0 +170786782472,213,0 +170786782520,214,0 +170786782569,214,0 +170786782619,213,0 +170786782668,214,0 +170786782718,213,0 +170786782766,213,0 +170786782814,212,0 +170786782862,213,0 +170786782910,213,0 +170786782959,213,0 +170786783009,213,0 +170786783057,213,0 +170786783105,213,0 +170786783153,213,0 +170786783202,213,0 +170786783250,213,0 +170786783298,213,0 +170786783347,213,0 +170786783397,213,0 +170786783446,213,0 +170786783494,213,0 +170786783542,213,0 +170786783590,214,0 +170786783638,212,0 +170786783686,212,0 +170786783734,212,0 +170786783782,212,0 +170786783831,213,0 +170786783879,213,0 +170786783927,212,0 +170786783976,213,0 +170786784024,213,0 +170786784074,213,0 +170786784122,213,0 +170786784170,213,0 +170786784217,213,0 +170786784267,213,0 +170786784315,213,0 +170786784363,213,0 +170786784411,213,0 +170786784458,213,0 +170786784508,213,0 +170786784557,213,0 +170786784605,213,0 +170786784655,213,0 +170786784704,213,0 +170786784752,213,0 +170786784800,213,0 +170786784848,213,0 +170786784898,213,0 +170786784946,213,0 +170786784994,213,0 +170786785043,213,0 +170786785092,213,0 +170786785140,213,0 +170786785190,213,0 +170786785238,213,0 +170786785286,214,0 +170786785335,214,0 +170786785383,213,0 +170786785431,213,0 +170786785481,212,0 +170786785529,213,0 +170786785578,213,0 +170786785626,213,0 +170786785675,213,0 +170786785723,213,0 +170786785771,213,0 +170786785819,213,0 +170786785869,213,0 +170786785917,213,0 +170786785965,213,0 +170786786014,213,0 +170786786062,213,0 +170786786110,214,0 +170786786159,213,0 +170786786207,214,0 +170786786257,213,0 +170786786305,213,0 +170786786353,213,0 +170786786400,213,0 +170786786448,213,0 +170786786498,213,0 +170786786546,213,0 +170786786594,213,0 +170786786642,213,0 +170786786692,214,0 +170786786740,213,0 +170786786788,213,0 +170786786835,213,0 +170786786883,214,0 +170786786933,214,0 +170786786981,214,0 +170786787028,214,0 +170786787078,214,0 +170786787126,213,0 +170786787173,213,0 +170786787223,213,0 +170786787272,213,0 +170786787320,213,0 +170786787368,213,0 +170786787416,213,0 +170786787466,213,0 +170786787514,213,0 +170786787561,213,0 +170786787611,213,0 +170786787659,213,0 +170786787707,213,0 +170786787755,214,0 +170786787803,214,0 +170786787852,214,0 +170786787902,214,0 +170786787949,213,0 +170786787997,214,0 +170786788045,213,0 +170786788093,213,0 +170786788141,213,0 +170786788190,213,0 +170786788238,213,0 +170786788287,213,0 +170786788335,213,0 +170786788383,213,0 +170786788431,213,0 +170786788479,213,0 +170786788528,213,0 +170786788576,214,0 +170786788624,213,0 +170786788671,214,0 +170786788719,213,0 +170786788767,214,0 +170786788815,214,0 +170786788863,214,0 +170786788911,214,0 +170786788958,213,0 +170786789006,213,0 +170786789054,213,0 +170786789102,213,0 +170786789151,213,0 +170786789199,213,0 +170786789247,213,0 +170786789295,213,0 +170786789342,213,0 +170786789390,213,0 +170786789438,213,0 +170786789486,213,0 +170786789534,214,0 +170786789581,214,0 +170786789629,214,0 +170786789677,214,0 +170786789725,213,0 +170786789773,213,0 +170786789822,213,0 +170786789870,212,0 +170786789918,213,0 +170786789966,212,0 +170786790014,213,0 +170786790061,213,0 +170786790109,213,0 +170786790157,213,0 +170786790205,213,0 +170786790253,213,0 +170786790300,213,0 +170786790348,213,0 +170786790398,213,0 +170786790446,213,0 +170786790493,213,0 +170786790541,213,0 +170786790589,213,0 +170786790637,213,0 +170786790685,213,0 +170786790733,213,0 +170786790780,213,0 +170786790828,213,0 +170786790876,212,0 +170786790924,213,0 +170786790972,213,0 +170786791019,213,0 +170786791067,213,0 +170786791115,213,0 +170786791163,213,0 +170786791211,213,0 +170786791259,213,0 +170786791307,213,0 +170786791356,213,0 +170786791404,213,0 +170786791452,213,0 +170786791501,213,0 +170786791549,213,0 +170786791597,213,0 +170786791645,213,0 +170786791693,213,0 +170786791741,213,0 +170786791789,213,0 +170786791836,213,0 +170786791884,213,0 +170786791934,213,0 +170786791983,213,0 +170786792031,213,0 +170786792079,213,0 +170786792127,213,0 +170786792174,213,0 +170786792222,213,0 +170786792270,214,0 +170786792318,214,0 +170786792366,214,0 +170786792415,214,0 +170786792463,213,0 +170786792511,213,0 +170786792559,213,0 +170786792608,212,0 +170786792656,213,0 +170786792704,213,0 +170786792752,213,0 +170786792800,213,0 +170786792847,213,0 +170786792895,213,0 +170786792943,213,0 +170786792991,213,0 +170786793039,213,0 +170786793087,213,0 +170786793135,213,0 +170786793182,213,0 +170786793230,214,0 +170786793278,213,0 +170786793326,213,0 +170786793374,213,0 +170786793423,213,0 +170786793471,212,0 +170786793519,212,0 +170786793568,213,0 +170786793616,213,0 +170786793664,213,0 +170786793712,213,0 +170786793760,213,0 +170786793808,213,0 +170786793855,213,0 +170786793903,213,0 +170786793951,213,0 +170786793999,213,0 +170786794047,214,0 +170786794095,213,0 +170786794143,213,0 +170786794192,213,0 +170786794240,213,0 +170786794288,213,0 +170786794336,212,0 +170786794384,213,0 +170786794431,213,0 +170786794479,212,0 +170786794527,213,0 +170786794575,213,0 +170786794623,213,0 +170786794671,213,0 +170786794719,213,0 +170786794766,213,0 +170786794814,213,0 +170786794862,213,0 +170786794910,213,0 +170786794958,213,0 +170786795005,213,0 +170786795053,213,0 +170786795101,214,0 +170786795149,213,0 +170786795197,212,0 +170786795245,213,0 +170786795293,212,0 +170786795342,212,0 +170786795390,213,0 +170786795438,212,0 +170786795487,213,0 +170786795537,213,0 +170786795584,213,0 +170786795632,213,0 +170786795680,213,0 +170786795728,213,0 +170786795777,213,0 +170786795825,213,0 +170786795873,213,0 +170786795920,213,0 +170786795968,213,0 +170786796018,213,0 +170786796065,213,0 +170786796113,213,0 +170786796161,213,0 +170786796209,213,0 +170786796257,213,0 +170786796304,213,0 +170786796352,213,0 +170786796400,213,0 +170786796448,213,0 +170786796496,213,0 +170786796544,213,0 +170786796591,213,0 +170786796639,213,0 +170786796687,213,0 +170786796735,213,0 +170786796783,213,0 +170786796831,214,0 +170786796879,213,0 +170786796926,214,0 +170786796974,213,0 +170786797022,212,0 +170786797070,212,0 +170786797118,213,0 +170786797166,213,0 +170786797214,213,0 +170786797262,213,0 +170786797310,213,0 +170786797357,213,0 +170786797405,213,0 +170786797453,213,0 +170786797501,213,0 +170786797549,213,0 +170786797597,213,0 +170786797644,213,0 +170786797692,213,0 +170786797740,213,0 +170786797788,213,0 +170786797836,213,0 +170786797884,213,0 +170786797931,213,0 +170786797979,213,0 +170786798027,212,0 +170786798075,213,0 +170786798123,213,0 +170786798171,213,0 +170786798219,213,0 +170786798268,213,0 +170786798316,213,0 +170786798364,213,0 +170786798413,213,0 +170786798461,213,0 +170786798509,213,0 +170786798557,213,0 +170786798607,213,0 +170786798655,213,0 +170786798703,214,0 +170786798752,213,0 +170786798801,213,0 +170786798851,212,0 +170786798899,212,0 +170786798948,213,0 +170786798996,213,0 +170786799044,213,0 +170786799094,213,0 +170786799142,213,0 +170786799189,213,0 +170786799237,213,0 +170786799285,213,0 +170786799333,213,0 +170786799381,213,0 +170786799431,213,0 +170786799480,213,0 +170786799530,213,0 +170786799579,213,0 +170786799629,213,0 +170786799676,213,0 +170786799724,213,0 +170786799774,213,0 +170786799821,213,0 +170786799869,213,0 +170786799917,213,0 +170786799967,213,0 +170786800014,213,0 +170786800062,213,0 +170786800110,213,0 +170786800158,214,0 +170786800206,213,0 +170786800253,214,0 +170786800301,214,0 +170786800349,214,0 +170786800397,214,0 +170786800445,213,0 +170786800493,213,0 +170786800540,213,0 +170786800588,213,0 +170786800636,213,0 +170786800684,213,0 +170786800732,213,0 +170786800780,213,0 +170786800828,213,0 +170786800875,213,0 +170786800923,213,0 +170786800971,214,0 +170786801019,214,0 +170786801067,214,0 +170786801114,214,0 +170786801162,214,0 +170786801210,214,0 +170786801259,214,0 +170786801307,214,0 +170786801357,214,0 +170786801405,213,0 +170786801452,213,0 +170786801500,213,0 +170786801548,213,0 +170786801596,213,0 +170786801644,213,0 +170786801691,213,0 +170786801739,213,0 +170786801787,213,0 +170786801835,214,0 +170786801883,214,0 +170786801931,214,0 +170786801979,213,0 +170786802026,214,0 +170786802074,214,0 +170786802122,214,0 +170786802170,213,0 +170786802218,214,0 +170786802266,213,0 +170786802313,213,0 +170786802361,213,0 +170786802409,213,0 +170786802457,213,0 +170786802505,213,0 +170786802553,213,0 +170786802601,213,0 +170786802648,213,0 +170786802696,213,0 +170786802744,213,0 +170786802792,213,0 +170786802839,213,0 +170786802887,214,0 +170786802935,213,0 +170786802983,214,0 +170786803031,213,0 +170786803079,214,0 +170786803126,214,0 +170786803174,213,0 +170786803222,213,0 +170786803270,213,0 +170786803318,213,0 +170786803366,212,0 +170786803413,213,0 +170786803461,213,0 +170786803511,213,0 +170786803559,213,0 +170786803606,213,0 +170786803654,213,0 +170786803702,214,0 +170786803750,213,0 +170786803800,214,0 +170786803849,214,0 +170786803897,214,0 +170786803947,214,0 +170786803994,214,0 +170786804042,213,0 +170786804090,213,0 +170786804138,213,0 +170786804186,213,0 +170786804236,213,0 +170786804284,213,0 +170786804332,213,0 +170786804381,213,0 +170786804429,213,0 +170786804477,213,0 +170786804525,213,0 +170786804573,213,0 +170786804621,213,0 +170786804669,213,0 +170786804718,213,0 +170786804768,214,0 +170786804816,213,0 +170786804864,214,0 +170786804912,214,0 +170786804961,213,0 +170786805011,213,0 +170786805061,213,0 +170786805110,212,0 +170786805158,212,0 +170786805206,212,0 +170786805254,213,0 +170786805302,213,0 +170786805350,213,0 +170786805398,213,0 +170786805447,213,0 +170786805497,213,0 +170786805545,213,0 +170786805594,213,0 +170786805642,213,0 +170786805690,213,0 +170786805738,213,0 +170786805787,213,0 +170786805837,213,0 +170786805886,212,0 +170786805934,212,0 +170786805982,212,0 +170786806030,213,0 +170786806078,213,0 +170786806128,213,0 +170786806175,213,0 +170786806223,213,0 +170786806271,213,0 +170786806319,213,0 +170786806367,213,0 +170786806415,213,0 +170786806463,213,0 +170786806511,213,0 +170786806559,214,0 +170786806608,214,0 +170786806658,214,0 +170786806707,213,0 +170786806755,213,0 +170786806805,212,0 +170786806852,213,0 +170786806900,212,0 +170786806948,213,0 +170786806998,212,0 +170786807046,213,0 +170786807094,213,0 +170786807143,213,0 +170786807191,213,0 +170786807239,213,0 +170786807289,213,0 +170786807336,214,0 +170786807384,213,0 +170786807432,213,0 +170786807482,213,0 +170786807531,213,0 +170786807579,213,0 +170786807627,213,0 +170786807675,212,0 +170786807723,212,0 +170786807771,213,0 +170786807820,213,0 +170786807868,212,0 +170786807916,213,0 +170786807964,213,0 +170786808012,213,0 +170786808060,213,0 +170786808109,213,0 +170786808157,213,0 +170786808205,213,0 +170786808255,213,0 +170786808304,213,0 +170786808354,213,0 +170786808403,213,0 +170786808453,213,0 +170786808502,214,0 +170786808550,213,0 +170786808598,212,0 +170786808646,213,0 +170786808695,213,0 +170786808745,213,0 +170786808793,213,0 +170786808841,213,0 +170786808888,213,0 +170786808936,213,0 +170786808984,213,0 +170786809032,213,0 +170786809080,213,0 +170786809127,213,0 +170786809177,213,0 +170786809224,213,0 +170786809272,213,0 +170786809320,213,0 +170786809368,213,0 +170786809416,213,0 +170786809464,212,0 +170786809511,213,0 +170786809559,213,0 +170786809609,213,0 +170786809656,213,0 +170786809704,213,0 +170786809752,213,0 +170786809800,213,0 +170786809848,213,0 +170786809896,213,0 +170786809943,213,0 +170786809993,213,0 +170786810040,213,0 +170786810088,213,0 +170786810136,213,0 +170786810184,214,0 +170786810232,213,0 +170786810279,214,0 +170786810327,213,0 +170786810375,213,0 +170786810425,212,0 +170786810472,213,0 +170786810520,213,0 +170786810570,213,0 +170786810618,213,0 +170786810666,213,0 +170786810715,213,0 +170786810765,213,0 +170786810814,213,0 +170786810864,213,0 +170786810912,213,0 +170786810961,213,0 +170786811011,213,0 +170786811059,213,0 +170786811108,213,0 +170786811156,213,0 +170786811206,213,0 +170786811254,213,0 +170786811302,213,0 +170786811350,213,0 +170786811398,213,0 +170786811445,213,0 +170786811493,213,0 +170786811541,213,0 +170786811591,213,0 +170786811639,213,0 +170786811688,213,0 +170786811736,213,0 +170786811786,213,0 +170786811834,213,0 +170786811882,213,0 +170786811930,213,0 +170786811978,213,0 +170786812025,214,0 +170786812075,214,0 +170786812123,213,0 +170786812171,213,0 +170786812220,212,0 +170786812268,213,0 +170786812316,213,0 +170786812364,213,0 +170786812412,213,0 +170786812460,213,0 +170786812509,213,0 +170786812557,213,0 +170786812605,213,0 +170786812653,213,0 +170786812700,213,0 +170786812748,213,0 +170786812796,214,0 +170786812844,213,0 +170786812892,214,0 +170786812939,213,0 +170786812987,213,0 +170786813035,213,0 +170786813083,212,0 +170786813131,212,0 +170786813180,213,0 +170786813228,213,0 +170786813276,213,0 +170786813324,213,0 +170786813372,213,0 +170786813419,213,0 +170786813467,213,0 +170786813515,213,0 +170786813563,213,0 +170786813611,213,0 +170786813659,213,0 +170786813707,214,0 +170786813754,213,0 +170786813804,214,0 +170786813851,214,0 +170786813901,213,0 +170786813949,213,0 +170786813997,212,0 +170786814044,213,0 +170786814092,213,0 +170786814140,213,0 +170786814188,213,0 +170786814236,213,0 +170786814285,213,0 +170786814333,213,0 +170786814383,213,0 +170786814432,213,0 +170786814480,213,0 +170786814528,213,0 +170786814576,213,0 +170786814624,213,0 +170786814673,214,0 +170786814721,213,0 +170786814769,213,0 +170786814817,213,0 +170786814864,212,0 +170786814914,213,0 +170786814961,213,0 +170786815009,213,0 +170786815057,213,0 +170786815105,213,0 +170786815153,213,0 +170786815202,213,0 +170786815250,213,0 +170786815298,213,0 +170786815347,213,0 +170786815395,213,0 +170786815443,213,0 +170786815491,214,0 +170786815539,214,0 +170786815587,213,0 +170786815636,213,0 +170786815684,213,0 +170786815732,212,0 +170786815780,212,0 +170786815829,213,0 +170786815877,213,0 +170786815927,213,0 +170786815974,213,0 +170786816022,213,0 +170786816070,213,0 +170786816118,213,0 +170786816166,213,0 +170786816214,213,0 +170786816262,213,0 +170786816309,213,0 +170786816357,213,0 +170786816405,213,0 +170786816453,214,0 +170786816502,214,0 +170786816550,213,0 +170786816598,213,0 +170786816646,213,0 +170786816695,213,0 +170786816743,213,0 +170786816791,213,0 +170786816839,213,0 +170786816886,213,0 +170786816934,213,0 +170786816982,213,0 +170786817030,213,0 +170786817078,213,0 +170786817127,213,0 +170786817175,213,0 +170786817223,213,0 +170786817271,213,0 +170786817318,214,0 +170786817366,214,0 +170786817414,214,0 +170786817462,213,0 +170786817510,213,0 +170786817557,213,0 +170786817605,213,0 +170786817653,213,0 +170786817701,213,0 +170786817749,213,0 +170786817797,213,0 +170786817845,213,0 +170786817892,213,0 +170786817940,213,0 +170786817988,213,0 +170786818036,213,0 +170786818084,214,0 +170786818132,214,0 +170786818180,214,0 +170786818229,214,0 +170786818279,214,0 +170786818326,213,0 +170786818374,213,0 +170786818422,213,0 +170786818470,213,0 +170786818518,213,0 +170786818566,213,0 +170786818615,213,0 +170786818663,213,0 +170786818711,213,0 +170786818759,213,0 +170786818806,213,0 +170786818854,213,0 +170786818902,213,0 +170786818950,213,0 +170786818998,213,0 +170786819046,214,0 +170786819094,214,0 +170786819141,213,0 +170786819189,213,0 +170786819237,213,0 +170786819286,212,0 +170786819334,213,0 +170786819383,213,0 +170786819431,213,0 +170786819481,213,0 +170786819529,213,0 +170786819576,213,0 +170786819624,213,0 +170786819672,213,0 +170786819720,213,0 +170786819769,213,0 +170786819817,213,0 +170786819865,214,0 +170786819913,213,0 +170786819961,213,0 +170786820008,213,0 +170786820056,213,0 +170786820104,214,0 +170786820152,213,0 +170786820202,213,0 +170786820249,213,0 +170786820299,213,0 +170786820347,213,0 +170786820394,213,0 +170786820442,213,0 +170786820490,213,0 +170786820538,213,0 +170786820586,213,0 +170786820634,213,0 +170786820681,213,0 +170786820729,213,0 +170786820777,213,0 +170786820825,213,0 +170786820873,213,0 +170786820921,213,0 +170786820970,213,0 +170786821018,213,0 +170786821066,213,0 +170786821114,213,0 +170786821161,213,0 +170786821209,213,0 +170786821257,213,0 +170786821307,213,0 +170786821354,213,0 +170786821402,213,0 +170786821450,213,0 +170786821498,213,0 +170786821546,213,0 +170786821593,214,0 +170786821641,214,0 +170786821689,214,0 +170786821737,214,0 +170786821785,214,0 +170786821833,214,0 +170786821881,214,0 +170786821929,213,0 +170786821977,213,0 +170786822025,213,0 +170786822073,213,0 +170786822122,213,0 +170786822170,213,0 +170786822218,213,0 +170786822268,213,0 +170786822315,213,0 +170786822363,213,0 +170786822411,213,0 +170786822459,214,0 +170786822509,214,0 +170786822558,214,0 +170786822608,214,0 +170786822657,214,0 +170786822707,214,0 +170786822756,213,0 +170786822806,213,0 +170786822855,213,0 +170786822903,213,0 +170786822951,213,0 +170786823001,213,0 +170786823050,213,0 +170786823098,213,0 +170786823148,213,0 +170786823195,213,0 +170786823245,213,0 +170786823293,213,0 +170786823341,214,0 +170786823389,213,0 +170786823437,214,0 +170786823485,214,0 +170786823533,214,0 +170786823581,214,0 +170786823628,214,0 +170786823676,213,0 +170786823724,213,0 +170786823772,213,0 +170786823820,213,0 +170786823868,213,0 +170786823918,213,0 +170786823966,213,0 +170786824015,213,0 +170786824065,213,0 +170786824113,213,0 +170786824161,213,0 +170786824210,213,0 +170786824258,213,0 +170786824308,214,0 +170786824357,213,0 +170786824405,214,0 +170786824455,214,0 +170786824504,214,0 +170786824554,214,0 +170786824602,213,0 +170786824651,213,0 +170786824701,213,0 +170786824749,212,0 +170786824796,213,0 +170786824846,213,0 +170786824894,213,0 +170786824943,213,0 +170786824993,213,0 +170786825041,213,0 +170786825090,213,0 +170786825138,214,0 +170786825186,213,0 +170786825234,213,0 +170786825282,214,0 +170786825330,213,0 +170786825380,214,0 +170786825428,213,0 +170786825477,213,0 +170786825527,213,0 +170786825576,213,0 +170786825624,213,0 +170786825674,212,0 +170786825721,213,0 +170786825769,213,0 +170786825819,213,0 +170786825867,213,0 +170786825915,213,0 +170786825964,213,0 +170786826012,213,0 +170786826060,213,0 +170786826108,213,0 +170786826156,213,0 +170786826204,213,0 +170786826251,214,0 +170786826301,214,0 +170786826349,214,0 +170786826398,213,0 +170786826446,213,0 +170786826496,213,0 +170786826544,213,0 +170786826592,213,0 +170786826641,213,0 +170786826689,213,0 +170786826738,213,0 +170786826786,213,0 +170786826834,213,0 +170786826882,213,0 +170786826930,213,0 +170786826978,213,0 +170786827027,213,0 +170786827075,213,0 +170786827123,213,0 +170786827173,213,0 +170786827222,214,0 +170786827270,213,0 +170786827318,212,0 +170786827366,213,0 +170786827415,213,0 +170786827463,213,0 +170786827511,213,0 +170786827559,213,0 +170786827608,213,0 +170786827656,213,0 +170786827704,213,0 +170786827754,213,0 +170786827802,214,0 +170786827851,213,0 +170786827899,213,0 +170786827947,214,0 +170786827995,214,0 +170786828043,214,0 +170786828091,214,0 +170786828139,213,0 +170786828186,213,0 +170786828234,213,0 +170786828282,213,0 +170786828330,213,0 +170786828378,213,0 +170786828426,213,0 +170786828474,213,0 +170786828524,213,0 +170786828572,213,0 +170786828619,213,0 +170786828669,213,0 +170786828718,213,0 +170786828766,213,0 +170786828814,213,0 +170786828864,213,0 +170786828913,213,0 +170786828961,213,0 +170786829011,214,0 +170786829060,213,0 +170786829108,213,0 +170786829156,213,0 +170786829204,213,0 +170786829253,213,0 +170786829303,213,0 +170786829351,213,0 +170786829399,213,0 +170786829448,213,0 +170786829496,213,0 +170786829546,213,0 +170786829595,213,0 +170786829643,214,0 +170786829691,214,0 +170786829739,214,0 +170786829788,213,0 +170786829836,214,0 +170786829884,214,0 +170786829932,213,0 +170786829980,213,0 +170786830028,213,0 +170786830076,213,0 +170786830124,213,0 +170786830172,213,0 +170786830220,213,0 +170786830268,213,0 +170786830316,213,0 +170786830364,213,0 +170786830412,213,0 +170786830459,213,0 +170786830509,213,0 +170786830558,214,0 +170786830606,213,0 +170786830654,214,0 +170786830702,214,0 +170786830751,214,0 +170786830799,213,0 +170786830849,213,0 +170786830897,213,0 +170786830945,212,0 +170786830993,213,0 +170786831040,213,0 +170786831088,213,0 +170786831136,213,0 +170786831184,213,0 +170786831232,213,0 +170786831280,213,0 +170786831328,213,0 +170786831376,213,0 +170786831425,213,0 +170786831475,213,0 +170786831523,214,0 +170786831571,213,0 +170786831618,213,0 +170786831668,213,0 +170786831717,213,0 +170786831767,213,0 +170786831815,213,0 +170786831863,212,0 +170786831912,213,0 +170786831960,213,0 +170786832008,213,0 +170786832056,213,0 +170786832104,213,0 +170786832152,213,0 +170786832200,213,0 +170786832249,213,0 +170786832297,213,0 +170786832345,214,0 +170786832393,214,0 +170786832441,213,0 +170786832489,214,0 +170786832537,214,0 +170786832585,214,0 +170786832635,213,0 +170786832683,213,0 +170786832732,213,0 +170786832780,213,0 +170786832829,213,0 +170786832879,213,0 +170786832927,213,0 +170786832976,213,0 +170786833024,213,0 +170786833074,213,0 +170786833122,213,0 +170786833169,213,0 +170786833217,214,0 +170786833265,214,0 +170786833315,214,0 +170786833363,214,0 +170786833411,214,0 +170786833458,214,0 +170786833506,213,0 +170786833554,213,0 +170786833604,213,0 +170786833652,213,0 +170786833700,213,0 +170786833748,213,0 +170786833795,213,0 +170786833843,213,0 +170786833891,213,0 +170786833941,213,0 +170786833989,213,0 +170786834037,213,0 +170786834086,214,0 +170786834134,213,0 +170786834182,214,0 +170786834230,214,0 +170786834278,214,0 +170786834326,214,0 +170786834374,213,0 +170786834422,213,0 +170786834470,213,0 +170786834519,213,0 +170786834567,213,0 +170786834615,213,0 +170786834663,213,0 +170786834711,213,0 +170786834759,213,0 +170786834808,213,0 +170786834856,213,0 +170786834904,213,0 +170786834952,213,0 +170786835002,213,0 +170786835050,214,0 +170786835098,214,0 +170786835145,214,0 +170786835195,214,0 +170786835243,214,0 +170786835291,213,0 +170786835339,213,0 +170786835387,213,0 +170786835435,213,0 +170786835483,213,0 +170786835531,213,0 +170786835578,213,0 +170786835626,213,0 +170786835674,213,0 +170786835724,213,0 +170786835772,213,0 +170786835820,213,0 +170786835868,213,0 +170786835917,214,0 +170786835965,214,0 +170786836013,213,0 +170786836062,214,0 +170786836112,214,0 +170786836161,213,0 +170786836209,213,0 +170786836257,213,0 +170786836305,213,0 +170786836353,213,0 +170786836401,213,0 +170786836449,213,0 +170786836496,213,0 +170786836546,213,0 +170786836594,213,0 +170786836642,213,0 +170786836690,213,0 +170786836738,213,0 +170786836786,213,0 +170786836835,213,0 +170786836883,213,0 +170786836931,213,0 +170786836980,213,0 +170786837028,213,0 +170786837076,213,0 +170786837124,213,0 +170786837172,213,0 +170786837220,213,0 +170786837268,213,0 +170786837317,213,0 +170786837365,213,0 +170786837413,213,0 +170786837461,213,0 +170786837509,213,0 +170786837557,213,0 +170786837605,213,0 +170786837653,213,0 +170786837701,214,0 +170786837748,213,0 +170786837796,213,0 +170786837844,214,0 +170786837894,214,0 +170786837943,213,0 +170786837991,213,0 +170786838041,213,0 +170786838088,213,0 +170786838136,213,0 +170786838184,213,0 +170786838234,213,0 +170786838283,213,0 +170786838331,213,0 +170786838381,213,0 +170786838429,213,0 +170786838477,213,0 +170786838526,213,0 +170786838574,213,0 +170786838622,213,0 +170786838670,213,0 +170786838718,213,0 +170786838766,214,0 +170786838814,213,0 +170786838861,213,0 +170786838909,213,0 +170786838957,213,0 +170786839005,212,0 +170786839053,213,0 +170786839101,213,0 +170786839151,213,0 +170786839200,213,0 +170786839248,213,0 +170786839296,213,0 +170786839344,213,0 +170786839393,213,0 +170786839441,213,0 +170786839489,213,0 +170786839537,213,0 +170786839585,213,0 +170786839633,213,0 +170786839681,214,0 +170786839729,213,0 +170786839778,213,0 +170786839826,212,0 +170786839874,212,0 +170786839922,213,0 +170786839970,213,0 +170786840019,213,0 +170786840067,213,0 +170786840115,213,0 +170786840165,213,0 +170786840213,213,0 +170786840260,213,0 +170786840310,213,0 +170786840359,213,0 +170786840409,213,0 +170786840457,213,0 +170786840505,213,0 +170786840553,213,0 +170786840601,214,0 +170786840649,213,0 +170786840697,213,0 +170786840744,213,0 +170786840792,213,0 +170786840840,213,0 +170786840888,213,0 +170786840936,213,0 +170786840984,213,0 +170786841031,213,0 +170786841079,213,0 +170786841129,213,0 +170786841176,213,0 +170786841224,214,0 +170786841272,214,0 +170786841320,214,0 +170786841368,213,0 +170786841415,214,0 +170786841463,214,0 +170786841511,213,0 +170786841559,213,0 +170786841607,213,0 +170786841655,213,0 +170786841702,213,0 +170786841750,213,0 +170786841798,213,0 +170786841846,213,0 +170786841894,213,0 +170786841942,213,0 +170786841991,213,0 +170786842039,213,0 +170786842087,213,0 +170786842136,214,0 +170786842184,214,0 +170786842234,214,0 +170786842282,214,0 +170786842331,214,0 +170786842379,214,0 +170786842427,213,0 +170786842475,213,0 +170786842523,213,0 +170786842572,213,0 +170786842620,213,0 +170786842669,213,0 +170786842717,213,0 +170786842765,213,0 +170786842813,213,0 +170786842861,213,0 +170786842909,213,0 +170786842957,213,0 +170786843006,213,0 +170786843056,213,0 +170786843105,214,0 +170786843153,214,0 +170786843203,213,0 +170786843252,214,0 +170786843302,213,0 +170786843350,213,0 +170786843399,213,0 +170786843447,213,0 +170786843497,213,0 +170786843545,213,0 +170786843593,213,0 +170786843642,213,0 +170786843690,213,0 +170786843738,213,0 +170786843787,213,0 +170786843837,213,0 +170786843885,213,0 +170786843933,214,0 +170786843981,214,0 +170786844029,214,0 +170786844078,214,0 +170786844126,213,0 +170786844176,213,0 +170786844223,213,0 +170786844273,213,0 +170786844321,213,0 +170786844369,213,0 +170786844417,213,0 +170786844466,213,0 +170786844516,213,0 +170786844564,213,0 +170786844613,213,0 +170786844661,213,0 +170786844709,214,0 +170786844757,214,0 +170786844805,214,0 +170786844853,214,0 +170786844901,214,0 +170786844949,214,0 +170786844997,214,0 +170786845045,214,0 +170786845094,213,0 +170786845142,213,0 +170786845190,213,0 +170786845238,213,0 +170786845288,213,0 +170786845336,214,0 +170786845383,214,0 +170786845431,214,0 +170786845479,214,0 +170786845529,214,0 +170786845578,214,0 +170786845626,214,0 +170786845674,214,0 +170786845722,214,0 +170786845772,214,0 +170786845819,214,0 +170786845867,214,0 +170786845915,214,0 +170786845963,213,0 +170786846013,213,0 +170786846062,213,0 +170786846110,213,0 +170786846158,213,0 +170786846208,213,0 +170786846256,213,0 +170786846303,213,0 +170786846353,213,0 +170786846401,213,0 +170786846449,214,0 +170786846498,214,0 +170786846546,214,0 +170786846594,214,0 +170786846642,214,0 +170786846690,214,0 +170786846738,214,0 +170786846786,214,0 +170786846834,213,0 +170786846882,213,0 +170786846929,213,0 +170786846977,213,0 +170786847025,213,0 +170786847075,213,0 +170786847123,213,0 +170786847172,213,0 +170786847220,213,0 +170786847268,213,0 +170786847316,213,0 +170786847364,214,0 +170786847412,214,0 +170786847460,213,0 +170786847508,214,0 +170786847557,214,0 +170786847605,214,0 +170786847654,214,0 +170786847702,214,0 +170786847750,213,0 +170786847798,213,0 +170786847846,213,0 +170786847894,213,0 +170786847942,213,0 +170786847990,213,0 +170786848037,213,0 +170786848085,213,0 +170786848133,213,0 +170786848181,213,0 +170786848229,213,0 +170786848278,213,0 +170786848326,214,0 +170786848374,213,0 +170786848422,213,0 +170786848470,214,0 +170786848517,214,0 +170786848565,213,0 +170786848613,213,0 +170786848661,213,0 +170786848709,213,0 +170786848757,213,0 +170786848805,213,0 +170786848852,213,0 +170786848900,213,0 +170786848948,213,0 +170786848996,213,0 +170786849044,213,0 +170786849091,213,0 +170786849139,213,0 +170786849187,213,0 +170786849235,213,0 +170786849283,213,0 +170786849331,213,0 +170786849380,214,0 +170786849428,214,0 +170786849476,213,0 +170786849525,213,0 +170786849573,213,0 +170786849621,213,0 +170786849669,213,0 +170786849717,213,0 +170786849765,213,0 +170786849813,213,0 +170786849860,213,0 +170786849908,213,0 +170786849956,213,0 +170786850004,213,0 +170786850052,213,0 +170786850101,213,0 +170786850149,213,0 +170786850197,214,0 +170786850245,213,0 +170786850293,213,0 +170786850340,213,0 +170786850388,214,0 +170786850436,213,0 +170786850484,213,0 +170786850531,213,0 +170786850579,213,0 +170786850627,213,0 +170786850675,213,0 +170786850722,213,0 +170786850770,213,0 +170786850818,213,0 +170786850866,213,0 +170786850914,213,0 +170786850961,213,0 +170786851009,213,0 +170786851057,214,0 +170786851105,214,0 +170786851153,214,0 +170786851201,214,0 +170786851249,214,0 +170786851297,213,0 +170786851345,213,0 +170786851393,213,0 +170786851441,213,0 +170786851490,213,0 +170786851538,213,0 +170786851586,213,0 +170786851634,213,0 +170786851681,213,0 +170786851729,213,0 +170786851779,213,0 +170786851826,213,0 +170786851874,213,0 +170786851922,214,0 +170786851972,214,0 +170786852020,214,0 +170786852069,214,0 +170786852117,214,0 +170786852165,214,0 +170786852213,213,0 +170786852260,213,0 +170786852308,213,0 +170786852356,213,0 +170786852404,213,0 +170786852452,213,0 +170786852499,213,0 +170786852547,213,0 +170786852597,213,0 +170786852645,213,0 +170786852694,213,0 +170786852742,214,0 +170786852790,213,0 +170786852838,214,0 +170786852886,214,0 +170786852934,214,0 +170786852984,214,0 +170786853031,214,0 +170786853079,213,0 +170786853127,213,0 +170786853175,213,0 +170786853223,213,0 +170786853273,213,0 +170786853321,213,0 +170786853369,213,0 +170786853417,213,0 +170786853464,213,0 +170786853512,213,0 +170786853560,213,0 +170786853610,213,0 +170786853659,213,0 +170786853709,213,0 +170786853758,214,0 +170786853806,214,0 +170786853854,214,0 +170786853902,214,0 +170786853950,213,0 +170786853998,213,0 +170786854045,213,0 +170786854093,213,0 +170786854141,213,0 +170786854191,213,0 +170786854239,213,0 +170786854288,213,0 +170786854336,213,0 +170786854384,213,0 +170786854432,213,0 +170786854480,213,0 +170786854528,213,0 +170786854575,214,0 +170786854623,213,0 +170786854673,214,0 +170786854721,213,0 +170786854768,214,0 +170786854816,214,0 +170786854864,213,0 +170786854912,213,0 +170786854961,213,0 +170786855009,213,0 +170786855057,213,0 +170786855105,213,0 +170786855153,213,0 +170786855200,213,0 +170786855248,213,0 +170786855296,213,0 +170786855344,213,0 +170786855392,213,0 +170786855440,213,0 +170786855488,213,0 +170786855536,213,0 +170786855584,214,0 +170786855633,213,0 +170786855681,214,0 +170786855729,214,0 +170786855778,213,0 +170786855828,213,0 +170786855877,213,0 +170786855925,213,0 +170786855975,213,0 +170786856024,213,0 +170786856073,213,0 +170786856121,213,0 +170786856171,213,0 +170786856219,213,0 +170786856267,213,0 +170786856315,213,0 +170786856363,213,0 +170786856411,213,0 +170786856460,214,0 +170786856508,213,0 +170786856558,214,0 +170786856606,213,0 +170786856654,213,0 +170786856701,213,0 +170786856751,213,0 +170786856800,213,0 +170786856848,213,0 +170786856896,213,0 +170786856944,213,0 +170786856994,213,0 +170786857043,213,0 +170786857091,213,0 +170786857139,213,0 +170786857187,213,0 +170786857235,213,0 +170786857283,214,0 +170786857332,213,0 +170786857382,214,0 +170786857430,214,0 +170786857478,214,0 +170786857525,214,0 +170786857573,213,0 +170786857621,213,0 +170786857669,213,0 +170786857717,213,0 +170786857765,213,0 +170786857813,213,0 +170786857861,213,0 +170786857909,213,0 +170786857958,213,0 +170786858006,213,0 +170786858056,213,0 +170786858104,213,0 +170786858152,213,0 +170786858201,213,0 +170786858251,213,0 +170786858299,213,0 +170786858347,213,0 +170786858395,214,0 +170786858442,213,0 +170786858490,213,0 +170786858538,213,0 +170786858588,213,0 +170786858636,213,0 +170786858684,213,0 +170786858732,213,0 +170786858779,213,0 +170786858829,213,0 +170786858877,213,0 +170786858925,213,0 +170786858973,213,0 +170786859021,213,0 +170786859069,213,0 +170786859118,213,0 +170786859168,214,0 +170786859216,214,0 +170786859263,213,0 +170786859311,213,0 +170786859361,213,0 +170786859410,213,0 +170786859458,213,0 +170786859508,213,0 +170786859556,213,0 +170786859604,213,0 +170786859652,213,0 +170786859701,213,0 +170786859749,213,0 +170786859797,213,0 +170786859847,214,0 +170786859896,213,0 +170786859944,213,0 +170786859993,213,0 +170786860041,213,0 +170786860089,214,0 +170786860137,214,0 +170786860187,213,0 +170786860236,213,0 +170786860284,213,0 +170786860334,213,0 +170786860383,213,0 +170786860433,213,0 +170786860480,213,0 +170786860528,213,0 +170786860578,213,0 +170786860626,213,0 +170786860674,213,0 +170786860722,213,0 +170786860770,213,0 +170786860819,213,0 +170786860867,214,0 +170786860915,213,0 +170786860963,214,0 +170786861012,213,0 +170786861060,213,0 +170786861108,213,0 +170786861158,213,0 +170786861206,213,0 +170786861253,213,0 +170786861301,213,0 +170786861349,213,0 +170786861397,213,0 +170786861445,213,0 +170786861493,213,0 +170786861541,213,0 +170786861591,213,0 +170786861638,213,0 +170786861686,214,0 +170786861734,213,0 +170786861782,214,0 +170786861830,214,0 +170786861878,214,0 +170786861925,214,0 +170786861973,213,0 +170786862021,213,0 +170786862069,213,0 +170786862117,213,0 +170786862167,213,0 +170786862214,213,0 +170786862264,213,0 +170786862312,213,0 +170786862360,213,0 +170786862408,213,0 +170786862456,213,0 +170786862505,213,0 +170786862555,214,0 +170786862604,213,0 +170786862654,214,0 +170786862703,214,0 +170786862751,213,0 +170786862799,214,0 +170786862849,214,0 +170786862897,213,0 +170786862945,213,0 +170786862993,213,0 +170786863041,213,0 +170786863090,213,0 +170786863139,213,0 +170786863187,213,0 +170786863235,213,0 +170786863283,213,0 +170786863331,213,0 +170786863379,213,0 +170786863427,213,0 +170786863475,214,0 +170786863523,213,0 +170786863571,214,0 +170786863619,214,0 +170786863667,214,0 +170786863714,213,0 +170786863762,214,0 +170786863810,213,0 +170786863858,213,0 +170786863908,213,0 +170786863955,213,0 +170786864005,213,0 +170786864053,213,0 +170786864102,213,0 +170786864152,213,0 +170786864201,213,0 +170786864249,213,0 +170786864299,213,0 +170786864347,213,0 +170786864395,214,0 +170786864443,213,0 +170786864492,214,0 +170786864542,214,0 +170786864590,214,0 +170786864638,213,0 +170786864686,213,0 +170786864734,213,0 +170786864782,213,0 +170786864831,213,0 +170786864879,213,0 +170786864929,213,0 +170786864977,213,0 +170786865026,213,0 +170786865074,213,0 +170786865123,213,0 +170786865171,213,0 +170786865219,214,0 +170786865269,213,0 +170786865317,213,0 +170786865365,214,0 +170786865414,214,0 +170786865462,214,0 +170786865510,214,0 +170786865558,213,0 +170786865608,213,0 +170786865657,213,0 +170786865707,213,0 +170786865755,213,0 +170786865803,213,0 +170786865852,213,0 +170786865900,213,0 +170786865948,213,0 +170786865996,213,0 +170786866044,213,0 +170786866092,213,0 +170786866140,214,0 +170786866188,213,0 +170786866235,214,0 +170786866283,214,0 +170786866331,214,0 +170786866381,214,0 +170786866429,213,0 +170786866478,213,0 +170786866526,213,0 +170786866576,213,0 +170786866623,213,0 +170786866673,213,0 +170786866721,213,0 +170786866770,213,0 +170786866818,213,0 +170786866866,213,0 +170786866914,213,0 +170786866962,214,0 +170786867010,214,0 +170786867060,214,0 +170786867108,214,0 +170786867157,214,0 +170786867207,214,0 +170786867255,214,0 +170786867304,213,0 +170786867354,213,0 +170786867401,213,0 +170786867451,213,0 +170786867499,213,0 +170786867547,213,0 +170786867595,213,0 +170786867643,213,0 +170786867691,213,0 +170786867739,213,0 +170786867786,213,0 +170786867834,213,0 +170786867882,213,0 +170786867930,214,0 +170786867980,214,0 +170786868027,214,0 +170786868075,214,0 +170786868125,214,0 +170786868173,213,0 +170786868221,213,0 +170786868268,213,0 +170786868318,213,0 +170786868368,213,0 +170786868415,213,0 +170786868463,213,0 +170786868513,213,0 +170786868561,213,0 +170786868610,213,0 +170786868658,213,0 +170786868706,213,0 +170786868756,213,0 +170786868804,214,0 +170786868852,213,0 +170786868900,213,0 +170786868949,214,0 +170786868997,214,0 +170786869045,213,0 +170786869093,213,0 +170786869141,213,0 +170786869190,213,0 +170786869238,213,0 +170786869288,213,0 +170786869336,213,0 +170786869383,213,0 +170786869433,213,0 +170786869481,213,0 +170786869529,213,0 +170786869577,213,0 +170786869625,213,0 +170786869672,213,0 +170786869720,214,0 +170786869770,214,0 +170786869818,214,0 +170786869866,214,0 +170786869915,213,0 +170786869963,214,0 +170786870012,213,0 +170786870062,213,0 +170786870110,213,0 +170786870158,213,0 +170786870207,213,0 +170786870255,213,0 +170786870303,213,0 +170786870353,213,0 +170786870402,213,0 +170786870450,213,0 +170786870498,213,0 +170786870547,213,0 +170786870595,213,0 +170786870643,214,0 +170786870693,214,0 +170786870742,214,0 +170786870790,214,0 +170786870840,214,0 +170786870887,213,0 +170786870935,213,0 +170786870983,213,0 +170786871031,213,0 +170786871081,213,0 +170786871129,213,0 +170786871177,213,0 +170786871225,213,0 +170786871274,213,0 +170786871324,213,0 +170786871371,213,0 +170786871419,214,0 +170786871467,214,0 +170786871515,213,0 +170786871563,214,0 +170786871612,214,0 +170786871662,213,0 +170786871710,214,0 +170786871758,214,0 +170786871806,213,0 +170786871854,213,0 +170786871902,213,0 +170786871949,213,0 +170786871997,213,0 +170786872045,213,0 +170786872093,213,0 +170786872143,213,0 +170786872192,213,0 +170786872242,213,0 +170786872290,213,0 +170786872339,213,0 +170786872389,213,0 +170786872437,213,0 +170786872485,213,0 +170786872533,214,0 +170786872581,214,0 +170786872628,214,0 +170786872678,213,0 +170786872726,213,0 +170786872774,213,0 +170786872822,213,0 +170786872871,213,0 +170786872919,213,0 +170786872969,213,0 +170786873017,213,0 +170786873064,213,0 +170786873112,213,0 +170786873162,213,0 +170786873210,213,0 +170786873258,213,0 +170786873306,213,0 +170786873355,213,0 +170786873403,213,0 +170786873451,213,0 +170786873500,214,0 +170786873548,213,0 +170786873598,213,0 +170786873646,212,0 +170786873694,213,0 +170786873742,213,0 +170786873791,213,0 +170786873839,213,0 +170786873887,213,0 +170786873935,213,0 +170786873983,213,0 +170786874031,213,0 +170786874079,213,0 +170786874127,213,0 +170786874176,213,0 +170786874224,213,0 +170786874272,213,0 +170786874321,213,0 +170786874369,213,0 +170786874417,214,0 +170786874465,213,0 +170786874515,213,0 +170786874564,213,0 +170786874614,212,0 +170786874662,213,0 +170786874710,213,0 +170786874758,213,0 +170786874806,213,0 +170786874855,213,0 +170786874903,213,0 +170786874952,213,0 +170786875000,213,0 +170786875048,213,0 +170786875096,213,0 +170786875146,213,0 +170786875194,214,0 +170786875242,214,0 +170786875291,214,0 +170786875339,213,0 +170786875387,212,0 +170786875435,212,0 +170786875485,213,0 +170786875532,213,0 +170786875581,213,0 +170786875628,213,0 +170786875676,213,0 +170786875724,213,0 +170786875774,213,0 +170786875823,213,0 +170786875873,213,0 +170786875922,213,0 +170786875970,213,0 +170786876018,213,0 +170786876068,213,0 +170786876116,214,0 +170786876165,214,0 +170786876213,213,0 +170786876263,213,0 +170786876310,213,0 +170786876360,212,0 +170786876409,213,0 +170786876457,213,0 +170786876507,213,0 +170786876555,213,0 +170786876603,213,0 +170786876651,213,0 +170786876700,213,0 +170786876749,213,0 +170786876799,213,0 +170786876847,213,0 +170786876895,214,0 +170786876943,214,0 +170786876991,214,0 +170786877039,214,0 +170786877088,214,0 +170786877136,213,0 +170786877184,213,0 +170786877232,213,0 +170786877280,213,0 +170786877329,213,0 +170786877379,213,0 +170786877427,213,0 +170786877476,213,0 +170786877526,213,0 +170786877574,213,0 +170786877622,213,0 +170786877671,213,0 +170786877719,213,0 +170786877767,213,0 +170786877815,213,0 +170786877863,214,0 +170786877911,213,0 +170786877959,214,0 +170786878007,213,0 +170786878055,213,0 +170786878103,213,0 +170786878152,213,0 +170786878202,213,0 +170786878250,213,0 +170786878299,213,0 +170786878349,213,0 +170786878397,213,0 +170786878444,213,0 +170786878494,213,0 +170786878542,213,0 +170786878591,213,0 +170786878639,213,0 +170786878687,213,0 +170786878735,213,0 +170786878784,213,0 +170786878834,213,0 +170786878882,213,0 +170786878931,214,0 +170786878979,214,0 +170786879027,214,0 +170786879077,214,0 +170786879125,214,0 +170786879173,214,0 +170786879221,214,0 +170786879268,214,0 +170786879316,214,0 +170786879364,213,0 +170786879414,213,0 +170786879462,213,0 +170786879510,213,0 +170786879558,213,0 +170786879606,213,0 +170786879655,213,0 +170786879703,213,0 +170786879751,213,0 +170786879799,213,0 +170786879847,213,0 +170786879895,213,0 +170786879942,213,0 +170786879990,213,0 diff --git a/laser_value/0214-10.csv b/laser_value/0214-10.csv new file mode 100644 index 0000000..4552f99 --- /dev/null +++ b/laser_value/0214-10.csv @@ -0,0 +1,7452 @@ +timestamp,laser_value,event +170786880040,213,0 +170786880088,214,0 +170786880136,214,0 +170786880184,214,0 +170786880234,213,0 +170786880283,213,0 +170786880331,213,0 +170786880379,213,0 +170786880429,213,0 +170786880476,213,0 +170786880524,213,0 +170786880572,213,0 +170786880621,213,0 +170786880669,213,0 +170786880717,213,0 +170786880765,213,0 +170786880813,213,0 +170786880861,213,0 +170786880909,214,0 +170786880958,214,0 +170786881006,214,0 +170786881054,214,0 +170786881104,214,0 +170786881152,213,0 +170786881201,213,0 +170786881249,213,0 +170786881299,212,0 +170786881347,213,0 +170786881394,213,0 +170786881442,213,0 +170786881490,213,0 +170786881538,213,0 +170786881588,213,0 +170786881636,213,0 +170786881684,213,0 +170786881733,213,0 +170786881781,214,0 +170786881829,214,0 +170786881877,214,0 +170786881925,214,0 +170786881973,214,0 +170786882021,213,0 +170786882069,212,0 +170786882117,213,0 +170786882165,212,0 +170786882213,213,0 +170786882260,213,0 +170786882308,213,0 +170786882356,213,0 +170786882404,213,0 +170786882452,213,0 +170786882500,213,0 +170786882548,213,0 +170786882596,213,0 +170786882644,213,0 +170786882692,213,0 +170786882740,214,0 +170786882787,214,0 +170786882835,214,0 +170786882883,214,0 +170786882931,213,0 +170786882980,213,0 +170786883028,213,0 +170786883078,213,0 +170786883126,213,0 +170786883173,213,0 +170786883221,213,0 +170786883271,213,0 +170786883319,213,0 +170786883367,213,0 +170786883416,213,0 +170786883464,213,0 +170786883512,213,0 +170786883560,214,0 +170786883608,213,0 +170786883656,213,0 +170786883704,214,0 +170786883752,214,0 +170786883801,213,0 +170786883849,213,0 +170786883899,212,0 +170786883948,213,0 +170786883997,213,0 +170786884047,213,0 +170786884096,213,0 +170786884146,213,0 +170786884195,213,0 +170786884243,213,0 +170786884291,213,0 +170786884339,213,0 +170786884387,213,0 +170786884435,213,0 +170786884483,213,0 +170786884533,213,0 +170786884581,213,0 +170786884628,213,0 +170786884678,213,0 +170786884726,213,0 +170786884774,213,0 +170786884822,213,0 +170786884870,213,0 +170786884918,213,0 +170786884965,213,0 +170786885015,213,0 +170786885063,213,0 +170786885111,213,0 +170786885158,213,0 +170786885206,213,0 +170786885256,213,0 +170786885305,213,0 +170786885353,214,0 +170786885401,214,0 +170786885449,214,0 +170786885497,214,0 +170786885545,214,0 +170786885595,213,0 +170786885643,213,0 +170786885690,213,0 +170786885738,213,0 +170786885788,213,0 +170786885836,213,0 +170786885884,213,0 +170786885932,213,0 +170786885981,213,0 +170786886029,213,0 +170786886077,213,0 +170786886127,213,0 +170786886175,213,0 +170786886222,214,0 +170786886270,214,0 +170786886320,213,0 +170786886369,214,0 +170786886419,213,0 +170786886467,214,0 +170786886515,213,0 +170786886563,212,0 +170786886612,213,0 +170786886662,213,0 +170786886710,213,0 +170786886758,213,0 +170786886805,213,0 +170786886853,213,0 +170786886901,213,0 +170786886949,213,0 +170786886997,213,0 +170786887045,213,0 +170786887094,213,0 +170786887142,213,0 +170786887190,213,0 +170786887238,213,0 +170786887286,213,0 +170786887334,213,0 +170786887383,213,0 +170786887431,213,0 +170786887479,213,0 +170786887529,213,0 +170786887578,213,0 +170786887626,213,0 +170786887674,213,0 +170786887723,213,0 +170786887771,213,0 +170786887819,213,0 +170786887867,213,0 +170786887915,213,0 +170786887963,213,0 +170786888012,213,0 +170786888062,214,0 +170786888110,213,0 +170786888159,214,0 +170786888207,214,0 +170786888255,213,0 +170786888305,213,0 +170786888353,213,0 +170786888402,213,0 +170786888450,213,0 +170786888498,213,0 +170786888546,213,0 +170786888596,213,0 +170786888645,213,0 +170786888693,213,0 +170786888741,213,0 +170786888789,213,0 +170786888837,213,0 +170786888884,214,0 +170786888934,214,0 +170786888982,214,0 +170786889031,214,0 +170786889079,214,0 +170786889129,214,0 +170786889178,213,0 +170786889226,213,0 +170786889274,213,0 +170786889324,213,0 +170786889372,213,0 +170786889420,213,0 +170786889469,213,0 +170786889517,213,0 +170786889566,213,0 +170786889614,214,0 +170786889662,214,0 +170786889712,214,0 +170786889761,214,0 +170786889809,214,0 +170786889858,214,0 +170786889906,214,0 +170786889956,214,0 +170786890004,213,0 +170786890053,213,0 +170786890103,213,0 +170786890151,213,0 +170786890200,213,0 +170786890248,213,0 +170786890296,213,0 +170786890344,213,0 +170786890392,213,0 +170786890440,213,0 +170786890488,213,0 +170786890536,213,0 +170786890584,213,0 +170786890631,214,0 +170786890681,214,0 +170786890730,214,0 +170786890778,214,0 +170786890828,214,0 +170786890876,214,0 +170786890925,213,0 +170786890973,213,0 +170786891023,213,0 +170786891070,213,0 +170786891118,213,0 +170786891166,213,0 +170786891214,213,0 +170786891264,213,0 +170786891312,213,0 +170786891360,214,0 +170786891408,213,0 +170786891457,214,0 +170786891505,213,0 +170786891553,214,0 +170786891601,214,0 +170786891650,214,0 +170786891698,214,0 +170786891748,214,0 +170786891796,213,0 +170786891845,213,0 +170786891893,213,0 +170786891941,213,0 +170786891989,213,0 +170786892038,213,0 +170786892086,213,0 +170786892136,213,0 +170786892183,213,0 +170786892233,213,0 +170786892281,213,0 +170786892330,213,0 +170786892378,213,0 +170786892426,214,0 +170786892474,214,0 +170786892522,214,0 +170786892570,214,0 +170786892617,214,0 +170786892665,214,0 +170786892713,213,0 +170786892762,213,0 +170786892810,213,0 +170786892860,213,0 +170786892908,213,0 +170786892955,213,0 +170786893003,213,0 +170786893051,213,0 +170786893099,213,0 +170786893147,213,0 +170786893196,213,0 +170786893244,213,0 +170786893294,213,0 +170786893342,213,0 +170786893391,214,0 +170786893440,214,0 +170786893488,213,0 +170786893538,214,0 +170786893586,213,0 +170786893633,213,0 +170786893681,213,0 +170786893729,213,0 +170786893777,213,0 +170786893825,213,0 +170786893873,213,0 +170786893920,213,0 +170786893968,213,0 +170786894016,213,0 +170786894064,213,0 +170786894112,213,0 +170786894160,213,0 +170786894208,213,0 +170786894255,213,0 +170786894305,214,0 +170786894353,214,0 +170786894401,213,0 +170786894449,214,0 +170786894497,213,0 +170786894545,213,0 +170786894592,213,0 +170786894642,213,0 +170786894690,213,0 +170786894739,213,0 +170786894787,213,0 +170786894837,213,0 +170786894886,213,0 +170786894936,213,0 +170786894985,213,0 +170786895033,213,0 +170786895083,213,0 +170786895130,213,0 +170786895178,214,0 +170786895226,213,0 +170786895276,213,0 +170786895324,214,0 +170786895371,214,0 +170786895419,213,0 +170786895467,213,0 +170786895515,213,0 +170786895563,213,0 +170786895611,213,0 +170786895659,213,0 +170786895708,213,0 +170786895756,213,0 +170786895804,213,0 +170786895851,213,0 +170786895901,213,0 +170786895949,213,0 +170786895997,213,0 +170786896044,214,0 +170786896094,214,0 +170786896142,213,0 +170786896190,214,0 +170786896237,214,0 +170786896285,213,0 +170786896333,213,0 +170786896381,213,0 +170786896430,213,0 +170786896480,213,0 +170786896528,213,0 +170786896576,213,0 +170786896625,213,0 +170786896674,213,0 +170786896724,213,0 +170786896772,213,0 +170786896820,213,0 +170786896868,213,0 +170786896916,213,0 +170786896964,214,0 +170786897011,214,0 +170786897061,214,0 +170786897110,213,0 +170786897158,213,0 +170786897206,213,0 +170786897254,213,0 +170786897302,213,0 +170786897352,213,0 +170786897400,213,0 +170786897447,213,0 +170786897495,213,0 +170786897543,213,0 +170786897591,213,0 +170786897639,213,0 +170786897689,213,0 +170786897737,213,0 +170786897784,213,0 +170786897832,214,0 +170786897880,214,0 +170786897928,214,0 +170786897976,214,0 +170786898025,214,0 +170786898073,213,0 +170786898123,213,0 +170786898171,213,0 +170786898218,213,0 +170786898268,213,0 +170786898316,213,0 +170786898364,213,0 +170786898412,213,0 +170786898461,213,0 +170786898511,213,0 +170786898559,213,0 +170786898607,213,0 +170786898655,213,0 +170786898704,213,0 +170786898754,214,0 +170786898802,214,0 +170786898849,214,0 +170786898897,214,0 +170786898945,213,0 +170786898993,213,0 +170786899041,213,0 +170786899089,213,0 +170786899137,213,0 +170786899185,213,0 +170786899233,213,0 +170786899282,213,0 +170786899330,213,0 +170786899378,213,0 +170786899426,213,0 +170786899474,213,0 +170786899522,213,0 +170786899570,213,0 +170786899618,213,0 +170786899667,214,0 +170786899717,214,0 +170786899765,213,0 +170786899813,214,0 +170786899861,213,0 +170786899909,213,0 +170786899958,213,0 +170786900006,213,0 +170786900054,213,0 +170786900102,213,0 +170786900150,213,0 +170786900200,213,0 +170786900248,213,0 +170786900297,213,0 +170786900345,213,0 +170786900393,213,0 +170786900441,213,0 +170786900489,214,0 +170786900538,214,0 +170786900586,214,0 +170786900634,214,0 +170786900682,214,0 +170786900730,213,0 +170786900779,213,0 +170786900829,213,0 +170786900878,212,0 +170786900928,213,0 +170786900976,213,0 +170786901024,213,0 +170786901072,213,0 +170786901121,213,0 +170786901169,213,0 +170786901217,213,0 +170786901266,213,0 +170786901314,213,0 +170786901362,213,0 +170786901410,213,0 +170786901460,213,0 +170786901508,214,0 +170786901556,213,0 +170786901604,213,0 +170786901651,213,0 +170786901699,213,0 +170786901749,212,0 +170786901798,213,0 +170786901846,213,0 +170786901894,213,0 +170786901942,213,0 +170786901990,213,0 +170786902038,213,0 +170786902086,213,0 +170786902134,213,0 +170786902182,213,0 +170786902230,213,0 +170786902278,213,0 +170786902327,213,0 +170786902375,214,0 +170786902423,214,0 +170786902471,213,0 +170786902521,213,0 +170786902569,212,0 +170786902618,213,0 +170786902666,213,0 +170786902716,213,0 +170786902765,213,0 +170786902813,213,0 +170786902861,213,0 +170786902909,213,0 +170786902957,213,0 +170786903005,213,0 +170786903054,213,0 +170786903102,213,0 +170786903151,213,0 +170786903199,213,0 +170786903247,213,0 +170786903295,214,0 +170786903345,213,0 +170786903394,213,0 +170786903442,212,0 +170786903490,213,0 +170786903538,212,0 +170786903586,212,0 +170786903633,213,0 +170786903681,213,0 +170786903729,213,0 +170786903777,213,0 +170786903825,213,0 +170786903873,213,0 +170786903922,213,0 +170786903970,213,0 +170786904018,213,0 +170786904066,213,0 +170786904114,213,0 +170786904161,213,0 +170786904209,213,0 +170786904257,213,0 +170786904307,213,0 +170786904355,213,0 +170786904402,213,0 +170786904450,213,0 +170786904498,213,0 +170786904546,213,0 +170786904596,213,0 +170786904645,213,0 +170786904693,213,0 +170786904741,213,0 +170786904791,213,0 +170786904840,213,0 +170786904888,213,0 +170786904936,213,0 +170786904984,214,0 +170786905033,213,0 +170786905083,213,0 +170786905131,214,0 +170786905179,213,0 +170786905227,212,0 +170786905276,213,0 +170786905324,213,0 +170786905372,213,0 +170786905420,213,0 +170786905468,213,0 +170786905516,213,0 +170786905564,213,0 +170786905611,213,0 +170786905661,213,0 +170786905710,213,0 +170786905758,213,0 +170786905806,213,0 +170786905856,214,0 +170786905903,213,0 +170786905951,214,0 +170786905999,213,0 +170786906047,214,0 +170786906095,213,0 +170786906143,213,0 +170786906192,213,0 +170786906240,213,0 +170786906288,213,0 +170786906336,213,0 +170786906384,213,0 +170786906431,213,0 +170786906479,213,0 +170786906527,213,0 +170786906575,213,0 +170786906623,213,0 +170786906671,214,0 +170786906718,213,0 +170786906766,213,0 +170786906814,214,0 +170786906862,214,0 +170786906910,214,0 +170786906958,213,0 +170786907005,213,0 +170786907053,213,0 +170786907101,213,0 +170786907149,213,0 +170786907198,213,0 +170786907248,213,0 +170786907296,213,0 +170786907343,213,0 +170786907391,213,0 +170786907439,213,0 +170786907488,213,0 +170786907536,213,0 +170786907584,214,0 +170786907632,214,0 +170786907680,214,0 +170786907728,214,0 +170786907776,214,0 +170786907824,214,0 +170786907871,213,0 +170786907919,213,0 +170786907967,213,0 +170786908015,213,0 +170786908064,213,0 +170786908112,213,0 +170786908160,213,0 +170786908208,213,0 +170786908256,213,0 +170786908304,213,0 +170786908353,213,0 +170786908401,213,0 +170786908449,213,0 +170786908497,213,0 +170786908546,214,0 +170786908594,214,0 +170786908642,214,0 +170786908692,214,0 +170786908741,213,0 +170786908789,213,0 +170786908837,213,0 +170786908887,213,0 +170786908934,213,0 +170786908982,213,0 +170786909030,213,0 +170786909078,213,0 +170786909126,213,0 +170786909174,213,0 +170786909224,213,0 +170786909271,213,0 +170786909319,213,0 +170786909367,213,0 +170786909415,214,0 +170786909463,213,0 +170786909513,214,0 +170786909562,213,0 +170786909610,214,0 +170786909660,213,0 +170786909707,213,0 +170786909757,213,0 +170786909806,213,0 +170786909854,213,0 +170786909902,213,0 +170786909950,213,0 +170786909998,213,0 +170786910048,213,0 +170786910097,213,0 +170786910147,214,0 +170786910195,214,0 +170786910244,214,0 +170786910294,213,0 +170786910342,214,0 +170786910391,214,0 +170786910439,214,0 +170786910487,214,0 +170786910535,213,0 +170786910583,213,0 +170786910631,213,0 +170786910679,213,0 +170786910728,213,0 +170786910776,213,0 +170786910826,213,0 +170786910874,213,0 +170786910922,214,0 +170786910970,214,0 +170786911018,214,0 +170786911066,214,0 +170786911114,214,0 +170786911161,214,0 +170786911211,214,0 +170786911259,214,0 +170786911308,214,0 +170786911356,214,0 +170786911404,213,0 +170786911452,213,0 +170786911502,213,0 +170786911550,213,0 +170786911598,213,0 +170786911646,213,0 +170786911694,213,0 +170786911743,213,0 +170786911791,213,0 +170786911839,214,0 +170786911887,213,0 +170786911936,214,0 +170786911984,214,0 +170786912034,214,0 +170786912083,214,0 +170786912131,214,0 +170786912179,214,0 +170786912229,214,0 +170786912278,214,0 +170786912326,213,0 +170786912374,213,0 +170786912422,213,0 +170786912472,213,0 +170786912520,213,0 +170786912569,213,0 +170786912617,213,0 +170786912666,213,0 +170786912714,213,0 +170786912762,213,0 +170786912810,213,0 +170786912858,213,0 +170786912906,213,0 +170786912954,214,0 +170786913004,214,0 +170786913052,214,0 +170786913100,214,0 +170786913149,214,0 +170786913197,213,0 +170786913245,213,0 +170786913293,213,0 +170786913341,213,0 +170786913389,213,0 +170786913436,213,0 +170786913484,213,0 +170786913532,213,0 +170786913580,213,0 +170786913628,213,0 +170786913676,213,0 +170786913723,213,0 +170786913771,213,0 +170786913819,213,0 +170786913867,213,0 +170786913915,213,0 +170786913962,213,0 +170786914010,213,0 +170786914058,214,0 +170786914106,213,0 +170786914154,213,0 +170786914202,213,0 +170786914250,213,0 +170786914297,213,0 +170786914345,213,0 +170786914393,213,0 +170786914443,213,0 +170786914490,213,0 +170786914538,213,0 +170786914588,213,0 +170786914636,213,0 +170786914683,213,0 +170786914731,214,0 +170786914779,214,0 +170786914827,213,0 +170786914875,213,0 +170786914923,214,0 +170786914971,213,0 +170786915018,213,0 +170786915066,213,0 +170786915114,213,0 +170786915162,213,0 +170786915210,213,0 +170786915258,213,0 +170786915305,213,0 +170786915353,213,0 +170786915401,213,0 +170786915449,213,0 +170786915497,213,0 +170786915545,213,0 +170786915593,213,0 +170786915640,214,0 +170786915688,214,0 +170786915736,214,0 +170786915784,213,0 +170786915833,213,0 +170786915881,213,0 +170786915929,213,0 +170786915977,213,0 +170786916024,213,0 +170786916072,213,0 +170786916120,213,0 +170786916168,213,0 +170786916215,213,0 +170786916263,213,0 +170786916311,213,0 +170786916359,213,0 +170786916407,213,0 +170786916455,213,0 +170786916504,214,0 +170786916552,214,0 +170786916600,214,0 +170786916648,214,0 +170786916698,214,0 +170786916745,213,0 +170786916793,213,0 +170786916843,213,0 +170786916891,213,0 +170786916939,213,0 +170786916987,213,0 +170786917034,213,0 +170786917082,213,0 +170786917130,213,0 +170786917180,213,0 +170786917229,213,0 +170786917277,213,0 +170786917325,213,0 +170786917375,213,0 +170786917423,213,0 +170786917471,214,0 +170786917520,214,0 +170786917570,214,0 +170786917618,213,0 +170786917667,213,0 +170786917715,213,0 +170786917763,213,0 +170786917811,213,0 +170786917859,213,0 +170786917906,213,0 +170786917954,213,0 +170786918002,213,0 +170786918050,213,0 +170786918098,213,0 +170786918146,213,0 +170786918193,213,0 +170786918241,213,0 +170786918289,213,0 +170786918337,213,0 +170786918386,213,0 +170786918434,213,0 +170786918484,214,0 +170786918531,213,0 +170786918581,213,0 +170786918630,213,0 +170786918678,213,0 +170786918726,213,0 +170786918774,213,0 +170786918822,213,0 +170786918870,213,0 +170786918917,213,0 +170786918965,213,0 +170786919013,213,0 +170786919061,213,0 +170786919109,213,0 +170786919157,213,0 +170786919205,213,0 +170786919253,213,0 +170786919300,213,0 +170786919350,214,0 +170786919399,213,0 +170786919447,213,0 +170786919495,213,0 +170786919543,213,0 +170786919591,213,0 +170786919639,213,0 +170786919688,213,0 +170786919736,213,0 +170786919784,213,0 +170786919832,213,0 +170786919880,213,0 +170786919928,213,0 +170786919976,213,0 +170786920024,214,0 +170786920074,214,0 +170786920123,214,0 +170786920171,214,0 +170786920219,214,0 +170786920267,214,0 +170786920315,213,0 +170786920363,213,0 +170786920411,213,0 +170786920460,213,0 +170786920508,213,0 +170786920556,213,0 +170786920605,213,0 +170786920653,213,0 +170786920701,213,0 +170786920750,213,0 +170786920798,213,0 +170786920846,213,0 +170786920894,214,0 +170786920942,214,0 +170786920990,213,0 +170786921038,214,0 +170786921088,214,0 +170786921136,214,0 +170786921185,213,0 +170786921233,213,0 +170786921282,213,0 +170786921330,213,0 +170786921378,213,0 +170786921426,213,0 +170786921474,213,0 +170786921522,213,0 +170786921570,213,0 +170786921618,213,0 +170786921666,213,0 +170786921714,213,0 +170786921763,213,0 +170786921813,214,0 +170786921862,214,0 +170786921912,214,0 +170786921961,214,0 +170786922011,213,0 +170786922060,214,0 +170786922108,213,0 +170786922158,213,0 +170786922205,213,0 +170786922253,213,0 +170786922301,213,0 +170786922351,213,0 +170786922398,213,0 +170786922446,213,0 +170786922494,213,0 +170786922542,213,0 +170786922592,213,0 +170786922639,213,0 +170786922687,213,0 +170786922737,214,0 +170786922786,214,0 +170786922834,214,0 +170786922884,214,0 +170786922932,213,0 +170786922981,213,0 +170786923029,213,0 +170786923079,213,0 +170786923127,213,0 +170786923174,213,0 +170786923222,213,0 +170786923270,213,0 +170786923318,213,0 +170786923366,213,0 +170786923416,213,0 +170786923465,214,0 +170786923513,213,0 +170786923563,214,0 +170786923612,214,0 +170786923660,214,0 +170786923708,214,0 +170786923756,214,0 +170786923804,214,0 +170786923853,213,0 +170786923901,213,0 +170786923949,213,0 +170786923999,213,0 +170786924048,213,0 +170786924096,213,0 +170786924144,213,0 +170786924194,213,0 +170786924242,213,0 +170786924290,213,0 +170786924338,213,0 +170786924385,213,0 +170786924433,213,0 +170786924483,213,0 +170786924531,214,0 +170786924580,214,0 +170786924628,214,0 +170786924676,213,0 +170786924724,214,0 +170786924774,213,0 +170786924823,212,0 +170786924873,213,0 +170786924920,213,0 +170786924968,213,0 +170786925018,213,0 +170786925067,213,0 +170786925115,213,0 +170786925165,213,0 +170786925212,213,0 +170786925262,213,0 +170786925312,213,0 +170786925359,213,0 +170786925407,213,0 +170786925457,214,0 +170786925505,214,0 +170786925553,214,0 +170786925601,214,0 +170786925650,213,0 +170786925699,212,0 +170786925747,213,0 +170786925795,213,0 +170786925845,213,0 +170786925893,213,0 +170786925941,213,0 +170786925989,213,0 +170786926037,213,0 +170786926084,213,0 +170786926132,213,0 +170786926180,213,0 +170786926228,213,0 +170786926276,213,0 +170786926324,214,0 +170786926372,214,0 +170786926420,214,0 +170786926468,214,0 +170786926516,213,0 +170786926563,213,0 +170786926613,213,0 +170786926661,213,0 +170786926709,213,0 +170786926758,213,0 +170786926806,213,0 +170786926854,213,0 +170786926902,213,0 +170786926950,213,0 +170786926998,213,0 +170786927047,213,0 +170786927097,213,0 +170786927145,213,0 +170786927193,213,0 +170786927241,214,0 +170786927290,214,0 +170786927340,214,0 +170786927388,213,0 +170786927436,213,0 +170786927485,213,0 +170786927533,213,0 +170786927581,213,0 +170786927629,213,0 +170786927677,213,0 +170786927725,213,0 +170786927773,213,0 +170786927821,213,0 +170786927870,213,0 +170786927918,213,0 +170786927968,213,0 +170786928017,214,0 +170786928065,214,0 +170786928113,214,0 +170786928161,214,0 +170786928209,214,0 +170786928259,214,0 +170786928307,213,0 +170786928355,213,0 +170786928404,213,0 +170786928454,213,0 +170786928501,213,0 +170786928549,213,0 +170786928599,213,0 +170786928647,213,0 +170786928695,213,0 +170786928744,213,0 +170786928792,213,0 +170786928840,213,0 +170786928888,213,0 +170786928938,213,0 +170786928985,214,0 +170786929033,214,0 +170786929081,214,0 +170786929131,214,0 +170786929179,214,0 +170786929228,213,0 +170786929276,213,0 +170786929324,213,0 +170786929374,213,0 +170786929421,213,0 +170786929469,213,0 +170786929517,213,0 +170786929565,213,0 +170786929615,213,0 +170786929663,213,0 +170786929711,213,0 +170786929759,213,0 +170786929806,214,0 +170786929854,214,0 +170786929902,214,0 +170786929950,214,0 +170786929998,214,0 +170786930046,214,0 +170786930094,213,0 +170786930144,213,0 +170786930191,213,0 +170786930241,213,0 +170786930289,213,0 +170786930338,213,0 +170786930386,213,0 +170786930434,213,0 +170786930484,213,0 +170786930532,213,0 +170786930580,213,0 +170786930628,213,0 +170786930676,213,0 +170786930725,213,0 +170786930773,213,0 +170786930821,213,0 +170786930869,213,0 +170786930917,214,0 +170786930966,213,0 +170786931016,213,0 +170786931064,213,0 +170786931112,213,0 +170786931160,213,0 +170786931207,213,0 +170786931255,213,0 +170786931305,213,0 +170786931352,213,0 +170786931402,213,0 +170786931450,213,0 +170786931498,213,0 +170786931547,213,0 +170786931595,213,0 +170786931643,213,0 +170786931690,214,0 +170786931740,214,0 +170786931788,214,0 +170786931835,214,0 +170786931883,213,0 +170786931931,213,0 +170786931979,213,0 +170786932027,213,0 +170786932075,213,0 +170786932123,213,0 +170786932170,213,0 +170786932218,213,0 +170786932268,213,0 +170786932316,213,0 +170786932365,214,0 +170786932415,214,0 +170786932462,214,0 +170786932512,214,0 +170786932561,214,0 +170786932611,214,0 +170786932659,214,0 +170786932708,214,0 +170786932756,213,0 +170786932804,213,0 +170786932852,213,0 +170786932900,213,0 +170786932949,213,0 +170786932999,213,0 +170786933047,213,0 +170786933095,214,0 +170786933143,214,0 +170786933191,214,0 +170786933239,214,0 +170786933288,214,0 +170786933336,214,0 +170786933386,214,0 +170786933435,214,0 +170786933483,214,0 +170786933531,214,0 +170786933579,214,0 +170786933627,213,0 +170786933675,213,0 +170786933724,213,0 +170786933772,213,0 +170786933822,213,0 +170786933871,213,0 +170786933920,213,0 +170786933970,213,0 +170786934018,213,0 +170786934066,213,0 +170786934115,213,0 +170786934163,213,0 +170786934213,213,0 +170786934261,214,0 +170786934310,213,0 +170786934360,214,0 +170786934408,214,0 +170786934456,214,0 +170786934504,214,0 +170786934552,213,0 +170786934599,213,0 +170786934649,213,0 +170786934697,213,0 +170786934745,213,0 +170786934793,213,0 +170786934841,213,0 +170786934889,213,0 +170786934936,213,0 +170786934984,213,0 +170786935034,213,0 +170786935083,213,0 +170786935133,213,0 +170786935181,214,0 +170786935229,214,0 +170786935278,214,0 +170786935328,214,0 +170786935376,214,0 +170786935424,213,0 +170786935471,213,0 +170786935519,213,0 +170786935567,213,0 +170786935617,213,0 +170786935665,213,0 +170786935713,213,0 +170786935761,213,0 +170786935809,213,0 +170786935858,213,0 +170786935908,213,0 +170786935956,213,0 +170786936004,214,0 +170786936052,214,0 +170786936100,213,0 +170786936149,214,0 +170786936197,214,0 +170786936245,214,0 +170786936293,213,0 +170786936341,213,0 +170786936389,213,0 +170786936437,213,0 +170786936484,213,0 +170786936532,213,0 +170786936580,213,0 +170786936628,213,0 +170786936676,213,0 +170786936724,213,0 +170786936774,213,0 +170786936821,213,0 +170786936869,213,0 +170786936917,214,0 +170786936965,214,0 +170786937013,214,0 +170786937062,214,0 +170786937110,214,0 +170786937160,214,0 +170786937209,213,0 +170786937257,213,0 +170786937305,213,0 +170786937354,213,0 +170786937404,213,0 +170786937453,213,0 +170786937501,213,0 +170786937549,213,0 +170786937597,213,0 +170786937645,213,0 +170786937693,213,0 +170786937741,213,0 +170786937789,214,0 +170786937838,214,0 +170786937886,214,0 +170786937934,214,0 +170786937982,214,0 +170786938029,214,0 +170786938077,214,0 +170786938127,213,0 +170786938175,213,0 +170786938222,213,0 +170786938270,213,0 +170786938318,213,0 +170786938366,213,0 +170786938414,213,0 +170786938462,213,0 +170786938509,213,0 +170786938557,214,0 +170786938605,213,0 +170786938653,214,0 +170786938701,213,0 +170786938750,214,0 +170786938800,214,0 +170786938849,214,0 +170786938897,214,0 +170786938945,214,0 +170786938993,213,0 +170786939043,213,0 +170786939091,213,0 +170786939139,213,0 +170786939187,213,0 +170786939235,213,0 +170786939282,213,0 +170786939332,213,0 +170786939380,213,0 +170786939428,213,0 +170786939476,213,0 +170786939523,213,0 +170786939571,213,0 +170786939619,214,0 +170786939667,213,0 +170786939715,214,0 +170786939763,214,0 +170786939811,214,0 +170786939858,213,0 +170786939906,213,0 +170786939956,213,0 +170786940004,213,0 +170786940052,213,0 +170786940101,213,0 +170786940149,213,0 +170786940198,213,0 +170786940246,213,0 +170786940296,213,0 +170786940344,213,0 +170786940393,213,0 +170786940443,213,0 +170786940492,214,0 +170786940540,213,0 +170786940588,213,0 +170786940638,214,0 +170786940686,214,0 +170786940735,214,0 +170786940785,213,0 +170786940833,213,0 +170786940881,213,0 +170786940928,212,0 +170786940976,213,0 +170786941024,213,0 +170786941072,213,0 +170786941120,213,0 +170786941168,213,0 +170786941216,213,0 +170786941264,213,0 +170786941313,213,0 +170786941363,213,0 +170786941411,213,0 +170786941459,213,0 +170786941507,213,0 +170786941555,213,0 +170786941602,214,0 +170786941650,213,0 +170786941700,213,0 +170786941748,213,0 +170786941796,213,0 +170786941844,213,0 +170786941893,213,0 +170786941943,213,0 +170786941991,213,0 +170786942039,213,0 +170786942087,213,0 +170786942136,213,0 +170786942184,213,0 +170786942232,213,0 +170786942282,213,0 +170786942329,213,0 +170786942379,213,0 +170786942427,213,0 +170786942475,213,0 +170786942523,214,0 +170786942571,213,0 +170786942618,212,0 +170786942668,213,0 +170786942717,213,0 +170786942765,213,0 +170786942815,213,0 +170786942863,213,0 +170786942912,213,0 +170786942962,213,0 +170786943009,213,0 +170786943059,213,0 +170786943108,213,0 +170786943156,214,0 +170786943206,214,0 +170786943254,213,0 +170786943302,213,0 +170786943350,214,0 +170786943399,214,0 +170786943447,213,0 +170786943495,213,0 +170786943544,213,0 +170786943594,213,0 +170786943642,213,0 +170786943691,213,0 +170786943739,213,0 +170786943789,213,0 +170786943837,213,0 +170786943886,213,0 +170786943934,214,0 +170786943982,214,0 +170786944031,214,0 +170786944081,214,0 +170786944129,213,0 +170786944178,214,0 +170786944226,214,0 +170786944274,214,0 +170786944322,213,0 +170786944370,213,0 +170786944419,213,0 +170786944467,213,0 +170786944515,213,0 +170786944563,213,0 +170786944613,213,0 +170786944661,213,0 +170786944710,213,0 +170786944758,213,0 +170786944808,213,0 +170786944856,213,0 +170786944905,213,0 +170786944954,214,0 +170786945002,214,0 +170786945052,213,0 +170786945101,214,0 +170786945149,214,0 +170786945197,214,0 +170786945247,213,0 +170786945295,213,0 +170786945344,213,0 +170786945394,213,0 +170786945442,213,0 +170786945490,213,0 +170786945537,213,0 +170786945585,213,0 +170786945633,213,0 +170786945681,213,0 +170786945730,213,0 +170786945778,214,0 +170786945826,214,0 +170786945874,214,0 +170786945922,214,0 +170786945971,214,0 +170786946021,214,0 +170786946069,214,0 +170786946116,213,0 +170786946164,213,0 +170786946212,213,0 +170786946260,213,0 +170786946310,213,0 +170786946358,213,0 +170786946405,213,0 +170786946453,213,0 +170786946501,213,0 +170786946549,213,0 +170786946597,213,0 +170786946645,213,0 +170786946695,213,0 +170786946744,213,0 +170786946794,214,0 +170786946841,214,0 +170786946889,214,0 +170786946939,214,0 +170786946987,213,0 +170786947034,213,0 +170786947082,213,0 +170786947130,213,0 +170786947178,213,0 +170786947226,213,0 +170786947274,213,0 +170786947322,213,0 +170786947369,213,0 +170786947417,213,0 +170786947465,213,0 +170786947513,213,0 +170786947561,213,0 +170786947609,214,0 +170786947656,213,0 +170786947704,213,0 +170786947752,213,0 +170786947800,213,0 +170786947848,213,0 +170786947896,213,0 +170786947943,213,0 +170786947991,213,0 +170786948041,213,0 +170786948089,213,0 +170786948136,213,0 +170786948184,213,0 +170786948232,213,0 +170786948280,213,0 +170786948328,213,0 +170786948376,213,0 +170786948425,213,0 +170786948473,213,0 +170786948521,213,0 +170786948570,213,0 +170786948620,213,0 +170786948667,213,0 +170786948715,213,0 +170786948763,213,0 +170786948813,213,0 +170786948860,213,0 +170786948910,213,0 +170786948958,213,0 +170786949006,213,0 +170786949055,213,0 +170786949103,213,0 +170786949151,213,0 +170786949199,213,0 +170786949247,213,0 +170786949295,213,0 +170786949343,213,0 +170786949391,213,0 +170786949439,214,0 +170786949488,214,0 +170786949536,213,0 +170786949584,213,0 +170786949632,214,0 +170786949680,213,0 +170786949729,213,0 +170786949779,213,0 +170786949828,213,0 +170786949876,213,0 +170786949924,213,0 +170786949972,213,0 +170786950020,213,0 +170786950069,213,0 +170786950117,213,0 +170786950165,213,0 +170786950213,213,0 +170786950261,213,0 +170786950310,213,0 +170786950359,213,0 +170786950407,214,0 +170786950455,214,0 +170786950505,214,0 +170786950554,213,0 +170786950602,213,0 +170786950650,213,0 +170786950698,213,0 +170786950746,213,0 +170786950794,213,0 +170786950842,213,0 +170786950890,213,0 +170786950939,213,0 +170786950987,213,0 +170786951037,213,0 +170786951086,214,0 +170786951134,213,0 +170786951182,214,0 +170786951230,214,0 +170786951279,214,0 +170786951327,213,0 +170786951377,214,0 +170786951426,213,0 +170786951476,213,0 +170786951524,213,0 +170786951572,213,0 +170786951620,213,0 +170786951669,213,0 +170786951717,213,0 +170786951765,213,0 +170786951814,213,0 +170786951862,213,0 +170786951910,213,0 +170786951958,213,0 +170786952008,214,0 +170786952057,214,0 +170786952105,213,0 +170786952155,214,0 +170786952202,214,0 +170786952250,213,0 +170786952298,213,0 +170786952348,213,0 +170786952396,213,0 +170786952444,213,0 +170786952492,213,0 +170786952540,213,0 +170786952588,213,0 +170786952635,213,0 +170786952683,213,0 +170786952731,213,0 +170786952779,213,0 +170786952827,213,0 +170786952875,214,0 +170786952923,214,0 +170786952971,214,0 +170786953019,214,0 +170786953067,213,0 +170786953116,214,0 +170786953166,214,0 +170786953214,213,0 +170786953262,213,0 +170786953310,213,0 +170786953359,213,0 +170786953407,213,0 +170786953457,213,0 +170786953504,213,0 +170786953554,213,0 +170786953602,213,0 +170786953651,214,0 +170786953699,214,0 +170786953747,214,0 +170786953795,214,0 +170786953843,214,0 +170786953892,214,0 +170786953940,214,0 +170786953988,214,0 +170786954037,214,0 +170786954085,214,0 +170786954133,213,0 +170786954181,213,0 +170786954229,213,0 +170786954277,213,0 +170786954325,213,0 +170786954374,213,0 +170786954422,214,0 +170786954470,214,0 +170786954518,214,0 +170786954566,214,0 +170786954615,214,0 +170786954663,214,0 +170786954711,214,0 +170786954759,214,0 +170786954807,214,0 +170786954855,214,0 +170786954904,214,0 +170786954952,214,0 +170786955000,213,0 +170786955048,213,0 +170786955095,213,0 +170786955143,213,0 +170786955193,213,0 +170786955242,213,0 +170786955290,213,0 +170786955340,213,0 +170786955388,213,0 +170786955436,214,0 +170786955483,213,0 +170786955531,213,0 +170786955581,214,0 +170786955629,214,0 +170786955677,214,0 +170786955725,214,0 +170786955773,214,0 +170786955821,214,0 +170786955869,213,0 +170786955916,213,0 +170786955964,213,0 +170786956012,213,0 +170786956060,213,0 +170786956108,213,0 +170786956156,213,0 +170786956205,213,0 +170786956255,213,0 +170786956304,213,0 +170786956352,213,0 +170786956400,213,0 +170786956448,213,0 +170786956497,213,0 +170786956545,213,0 +170786956595,214,0 +170786956642,213,0 +170786956690,213,0 +170786956738,214,0 +170786956786,213,0 +170786956834,213,0 +170786956881,213,0 +170786956929,213,0 +170786956977,213,0 +170786957025,213,0 +170786957073,213,0 +170786957120,213,0 +170786957168,213,0 +170786957216,213,0 +170786957264,213,0 +170786957312,213,0 +170786957360,213,0 +170786957408,213,0 +170786957456,214,0 +170786957504,214,0 +170786957551,214,0 +170786957601,214,0 +170786957649,213,0 +170786957697,213,0 +170786957745,213,0 +170786957792,213,0 +170786957840,213,0 +170786957888,213,0 +170786957936,213,0 +170786957984,213,0 +170786958031,213,0 +170786958079,213,0 +170786958127,213,0 +170786958175,213,0 +170786958223,213,0 +170786958271,213,0 +170786958318,213,0 +170786958366,213,0 +170786958414,213,0 +170786958462,214,0 +170786958511,214,0 +170786958559,213,0 +170786958607,213,0 +170786958655,212,0 +170786958703,213,0 +170786958750,213,0 +170786958798,213,0 +170786958848,213,0 +170786958895,213,0 +170786958943,213,0 +170786958991,213,0 +170786959039,213,0 +170786959087,213,0 +170786959135,213,0 +170786959183,213,0 +170786959231,213,0 +170786959280,214,0 +170786959328,213,0 +170786959376,214,0 +170786959424,213,0 +170786959472,213,0 +170786959519,213,0 +170786959567,213,0 +170786959615,213,0 +170786959665,213,0 +170786959713,213,0 +170786959761,213,0 +170786959808,213,0 +170786959856,213,0 +170786959906,213,0 +170786959954,213,0 +170786960001,213,0 +170786960049,214,0 +170786960097,214,0 +170786960145,214,0 +170786960195,214,0 +170786960242,214,0 +170786960290,214,0 +170786960340,213,0 +170786960388,213,0 +170786960436,213,0 +170786960485,213,0 +170786960533,213,0 +170786960581,213,0 +170786960630,213,0 +170786960678,213,0 +170786960726,213,0 +170786960776,213,0 +170786960823,213,0 +170786960871,213,0 +170786960919,214,0 +170786960967,214,0 +170786961017,214,0 +170786961064,214,0 +170786961112,214,0 +170786961160,214,0 +170786961208,213,0 +170786961257,213,0 +170786961305,213,0 +170786961355,213,0 +170786961404,213,0 +170786961452,213,0 +170786961500,213,0 +170786961548,213,0 +170786961596,213,0 +170786961644,213,0 +170786961693,213,0 +170786961741,213,0 +170786961791,214,0 +170786961838,213,0 +170786961886,213,0 +170786961934,214,0 +170786961982,214,0 +170786962030,214,0 +170786962078,214,0 +170786962126,213,0 +170786962175,213,0 +170786962225,213,0 +170786962273,213,0 +170786962321,213,0 +170786962369,213,0 +170786962418,213,0 +170786962468,213,0 +170786962516,213,0 +170786962564,213,0 +170786962612,213,0 +170786962660,213,0 +170786962709,213,0 +170786962757,213,0 +170786962806,213,0 +170786962854,214,0 +170786962902,214,0 +170786962950,214,0 +170786962999,213,0 +170786963049,213,0 +170786963097,213,0 +170786963146,213,0 +170786963196,213,0 +170786963244,213,0 +170786963291,213,0 +170786963339,213,0 +170786963389,213,0 +170786963437,214,0 +170786963486,214,0 +170786963534,213,0 +170786963582,213,0 +170786963632,214,0 +170786963680,214,0 +170786963729,214,0 +170786963777,214,0 +170786963825,214,0 +170786963873,213,0 +170786963921,213,0 +170786963969,213,0 +170786964018,213,0 +170786964068,213,0 +170786964116,213,0 +170786964165,213,0 +170786964213,213,0 +170786964261,213,0 +170786964309,213,0 +170786964357,213,0 +170786964407,213,0 +170786964454,213,0 +170786964502,214,0 +170786964550,213,0 +170786964598,214,0 +170786964647,214,0 +170786964695,214,0 +170786964743,213,0 +170786964791,213,0 +170786964841,213,0 +170786964889,213,0 +170786964936,213,0 +170786964984,213,0 +170786965032,213,0 +170786965080,213,0 +170786965128,213,0 +170786965176,213,0 +170786965223,213,0 +170786965271,213,0 +170786965319,214,0 +170786965367,214,0 +170786965415,214,0 +170786965462,214,0 +170786965510,214,0 +170786965558,214,0 +170786965606,214,0 +170786965655,213,0 +170786965703,213,0 +170786965751,213,0 +170786965801,213,0 +170786965850,213,0 +170786965900,213,0 +170786965948,213,0 +170786965996,213,0 +170786966044,213,0 +170786966093,213,0 +170786966141,213,0 +170786966189,213,0 +170786966237,214,0 +170786966286,213,0 +170786966334,214,0 +170786966384,214,0 +170786966431,214,0 +170786966479,214,0 +170786966527,213,0 +170786966575,213,0 +170786966625,213,0 +170786966673,213,0 +170786966720,213,0 +170786966768,213,0 +170786966816,213,0 +170786966864,213,0 +170786966912,213,0 +170786966961,213,0 +170786967009,213,0 +170786967057,213,0 +170786967105,213,0 +170786967153,214,0 +170786967202,214,0 +170786967250,214,0 +170786967298,214,0 +170786967346,214,0 +170786967393,213,0 +170786967441,213,0 +170786967489,213,0 +170786967537,213,0 +170786967585,213,0 +170786967633,213,0 +170786967680,213,0 +170786967730,213,0 +170786967778,213,0 +170786967826,213,0 +170786967874,213,0 +170786967923,213,0 +170786967972,213,0 +170786968022,213,0 +170786968070,213,0 +170786968118,213,0 +170786968166,213,0 +170786968214,213,0 +170786968261,213,0 +170786968309,213,0 +170786968357,212,0 +170786968405,213,0 +170786968454,213,0 +170786968502,212,0 +170786968552,213,0 +170786968600,213,0 +170786968648,213,0 +170786968695,213,0 +170786968743,213,0 +170786968791,213,0 +170786968839,213,0 +170786968887,213,0 +170786968934,213,0 +170786968982,213,0 +170786969030,213,0 +170786969078,213,0 +170786969126,213,0 +170786969174,214,0 +170786969222,213,0 +170786969269,213,0 +170786969317,213,0 +170786969367,213,0 +170786969416,213,0 +170786969466,213,0 +170786969515,212,0 +170786969563,213,0 +170786969611,213,0 +170786969660,213,0 +170786969708,213,0 +170786969756,213,0 +170786969804,213,0 +170786969854,213,0 +170786969902,213,0 +170786969949,214,0 +170786969997,214,0 +170786970045,213,0 +170786970093,213,0 +170786970141,213,0 +170786970189,213,0 +170786970237,213,0 +170786970284,213,0 +170786970334,213,0 +170786970382,213,0 +170786970430,213,0 +170786970477,213,0 +170786970527,213,0 +170786970576,213,0 +170786970626,213,0 +170786970674,213,0 +170786970722,213,0 +170786970770,213,0 +170786970818,214,0 +170786970867,214,0 +170786970917,214,0 +170786970965,214,0 +170786971013,213,0 +170786971061,213,0 +170786971110,213,0 +170786971160,213,0 +170786971208,213,0 +170786971255,213,0 +170786971305,213,0 +170786971353,213,0 +170786971402,213,0 +170786971450,213,0 +170786971498,213,0 +170786971548,213,0 +170786971597,214,0 +170786971645,213,0 +170786971693,214,0 +170786971741,214,0 +170786971789,213,0 +170786971837,214,0 +170786971885,213,0 +170786971935,213,0 +170786971983,213,0 +170786972032,213,0 +170786972080,213,0 +170786972129,213,0 +170786972179,213,0 +170786972227,213,0 +170786972275,213,0 +170786972322,213,0 +170786972370,213,0 +170786972419,213,0 +170786972467,213,0 +170786972515,213,0 +170786972563,214,0 +170786972611,213,0 +170786972659,214,0 +170786972706,214,0 +170786972754,213,0 +170786972804,212,0 +170786972853,213,0 +170786972901,213,0 +170786972949,213,0 +170786972997,213,0 +170786973046,213,0 +170786973094,213,0 +170786973142,213,0 +170786973189,213,0 +170786973237,213,0 +170786973285,213,0 +170786973333,213,0 +170786973381,213,0 +170786973429,213,0 +170786973476,214,0 +170786973524,214,0 +170786973574,214,0 +170786973622,214,0 +170786973670,213,0 +170786973718,213,0 +170786973765,213,0 +170786973813,213,0 +170786973861,213,0 +170786973909,213,0 +170786973957,213,0 +170786974006,213,0 +170786974056,213,0 +170786974104,213,0 +170786974152,213,0 +170786974200,213,0 +170786974249,213,0 +170786974297,213,0 +170786974346,214,0 +170786974394,214,0 +170786974442,214,0 +170786974492,214,0 +170786974541,213,0 +170786974589,213,0 +170786974637,213,0 +170786974685,213,0 +170786974733,213,0 +170786974781,213,0 +170786974830,213,0 +170786974878,213,0 +170786974926,214,0 +170786974974,213,0 +170786975022,214,0 +170786975071,214,0 +170786975121,214,0 +170786975170,214,0 +170786975218,214,0 +170786975266,214,0 +170786975314,214,0 +170786975362,213,0 +170786975411,213,0 +170786975459,213,0 +170786975507,213,0 +170786975556,213,0 +170786975604,213,0 +170786975654,213,0 +170786975702,213,0 +170786975751,213,0 +170786975799,213,0 +170786975847,214,0 +170786975895,214,0 +170786975944,214,0 +170786975992,214,0 +170786976042,214,0 +170786976091,214,0 +170786976139,214,0 +170786976187,214,0 +170786976236,214,0 +170786976286,214,0 +170786976334,213,0 +170786976382,213,0 +170786976429,213,0 +170786976477,213,0 +170786976525,213,0 +170786976573,213,0 +170786976621,214,0 +170786976669,213,0 +170786976719,213,0 +170786976768,214,0 +170786976816,214,0 +170786976864,214,0 +170786976912,214,0 +170786976960,214,0 +170786977008,214,0 +170786977057,214,0 +170786977105,214,0 +170786977153,214,0 +170786977201,213,0 +170786977249,213,0 +170786977297,213,0 +170786977345,213,0 +170786977394,213,0 +170786977442,213,0 +170786977492,213,0 +170786977540,213,0 +170786977589,213,0 +170786977637,213,0 +170786977685,213,0 +170786977733,213,0 +170786977781,214,0 +170786977830,214,0 +170786977878,214,0 +170786977926,214,0 +170786977974,213,0 +170786978023,214,0 +170786978071,213,0 +170786978119,213,0 +170786978167,213,0 +170786978217,213,0 +170786978265,213,0 +170786978312,213,0 +170786978360,213,0 +170786978408,213,0 +170786978456,213,0 +170786978506,213,0 +170786978554,213,0 +170786978602,213,0 +170786978651,213,0 +170786978701,214,0 +170786978749,214,0 +170786978797,214,0 +170786978845,214,0 +170786978892,214,0 +170786978942,214,0 +170786978990,213,0 +170786979039,213,0 +170786979087,213,0 +170786979137,213,0 +170786979185,213,0 +170786979234,213,0 +170786979282,213,0 +170786979330,213,0 +170786979378,213,0 +170786979428,213,0 +170786979477,213,0 +170786979525,213,0 +170786979573,213,0 +170786979621,213,0 +170786979669,214,0 +170786979717,214,0 +170786979765,214,0 +170786979813,214,0 +170786979862,213,0 +170786979910,213,0 +170786979959,213,0 +170786980007,213,0 +170786980055,213,0 +170786980103,213,0 +170786980151,213,0 +170786980201,213,0 +170786980249,213,0 +170786980297,213,0 +170786980344,213,0 +170786980392,214,0 +170786980440,214,0 +170786980488,214,0 +170786980536,214,0 +170786980584,214,0 +170786980634,214,0 +170786980681,214,0 +170786980729,214,0 +170786980777,213,0 +170786980825,213,0 +170786980873,213,0 +170786980923,213,0 +170786980972,213,0 +170786981020,213,0 +170786981068,213,0 +170786981116,213,0 +170786981164,213,0 +170786981211,213,0 +170786981259,213,0 +170786981307,214,0 +170786981355,214,0 +170786981403,214,0 +170786981451,214,0 +170786981499,214,0 +170786981547,214,0 +170786981594,214,0 +170786981642,213,0 +170786981692,213,0 +170786981741,213,0 +170786981789,213,0 +170786981837,213,0 +170786981885,213,0 +170786981933,213,0 +170786981981,213,0 +170786982030,213,0 +170786982080,213,0 +170786982128,213,0 +170786982176,214,0 +170786982224,214,0 +170786982273,214,0 +170786982321,214,0 +170786982369,214,0 +170786982418,214,0 +170786982466,214,0 +170786982516,214,0 +170786982565,213,0 +170786982613,213,0 +170786982663,213,0 +170786982710,213,0 +170786982758,213,0 +170786982806,213,0 +170786982854,213,0 +170786982902,213,0 +170786982950,213,0 +170786982998,213,0 +170786983047,213,0 +170786983097,213,0 +170786983145,214,0 +170786983192,214,0 +170786983240,214,0 +170786983290,214,0 +170786983339,214,0 +170786983389,214,0 +170786983437,213,0 +170786983485,213,0 +170786983532,213,0 +170786983580,213,0 +170786983628,213,0 +170786983676,213,0 +170786983724,213,0 +170786983773,213,0 +170786983821,213,0 +170786983869,213,0 +170786983919,213,0 +170786983967,213,0 +170786984016,213,0 +170786984064,214,0 +170786984114,214,0 +170786984162,214,0 +170786984210,214,0 +170786984257,214,0 +170786984307,213,0 +170786984355,213,0 +170786984404,213,0 +170786984454,213,0 +170786984503,213,0 +170786984553,213,0 +170786984601,213,0 +170786984650,213,0 +170786984698,213,0 +170786984748,213,0 +170786984796,213,0 +170786984843,213,0 +170786984891,214,0 +170786984939,213,0 +170786984987,214,0 +170786985035,214,0 +170786985083,214,0 +170786985131,213,0 +170786985180,213,0 +170786985228,213,0 +170786985278,213,0 +170786985327,213,0 +170786985375,213,0 +170786985423,213,0 +170786985473,213,0 +170786985521,213,0 +170786985569,213,0 +170786985617,213,0 +170786985664,213,0 +170786985712,213,0 +170786985762,213,0 +170786985810,213,0 +170786985858,214,0 +170786985905,213,0 +170786985953,214,0 +170786986001,214,0 +170786986049,214,0 +170786986097,213,0 +170786986145,213,0 +170786986195,213,0 +170786986242,213,0 +170786986290,213,0 +170786986338,213,0 +170786986388,213,0 +170786986436,213,0 +170786986485,213,0 +170786986533,213,0 +170786986581,213,0 +170786986629,213,0 +170786986677,213,0 +170786986726,214,0 +170786986776,214,0 +170786986823,214,0 +170786986871,213,0 +170786986921,214,0 +170786986969,213,0 +170786987016,213,0 +170786987066,213,0 +170786987114,213,0 +170786987163,213,0 +170786987211,213,0 +170786987259,213,0 +170786987307,213,0 +170786987356,213,0 +170786987406,213,0 +170786987454,213,0 +170786987502,213,0 +170786987549,213,0 +170786987597,213,0 +170786987645,214,0 +170786987695,213,0 +170786987743,214,0 +170786987790,214,0 +170786987838,213,0 +170786987886,213,0 +170786987934,213,0 +170786987982,213,0 +170786988030,213,0 +170786988077,213,0 +170786988125,213,0 +170786988173,213,0 +170786988223,213,0 +170786988270,213,0 +170786988318,213,0 +170786988368,213,0 +170786988416,213,0 +170786988463,213,0 +170786988513,213,0 +170786988561,213,0 +170786988610,213,0 +170786988660,213,0 +170786988709,214,0 +170786988757,213,0 +170786988806,213,0 +170786988854,213,0 +170786988904,213,0 +170786988953,213,0 +170786989001,213,0 +170786989049,213,0 +170786989098,213,0 +170786989146,213,0 +170786989194,213,0 +170786989242,213,0 +170786989290,213,0 +170786989338,213,0 +170786989386,214,0 +170786989433,214,0 +170786989481,214,0 +170786989529,214,0 +170786989577,214,0 +170786989625,213,0 +170786989673,213,0 +170786989721,213,0 +170786989769,213,0 +170786989818,213,0 +170786989866,213,0 +170786989914,213,0 +170786989962,213,0 +170786990009,213,0 +170786990059,213,0 +170786990107,213,0 +170786990155,213,0 +170786990204,214,0 +170786990254,214,0 +170786990301,214,0 +170786990351,214,0 +170786990399,214,0 +170786990447,214,0 +170786990496,214,0 +170786990544,213,0 +170786990592,213,0 +170786990640,213,0 +170786990690,213,0 +170786990738,213,0 +170786990786,213,0 +170786990833,213,0 +170786990881,213,0 +170786990929,213,0 +170786990977,213,0 +170786991027,213,0 +170786991074,213,0 +170786991124,213,0 +170786991173,214,0 +170786991223,214,0 +170786991271,214,0 +170786991319,214,0 +170786991367,214,0 +170786991416,213,0 +170786991464,213,0 +170786991512,213,0 +170786991560,213,0 +170786991608,213,0 +170786991655,213,0 +170786991705,213,0 +170786991753,213,0 +170786991802,213,0 +170786991850,213,0 +170786991900,213,0 +170786991949,213,0 +170786991997,213,0 +170786992045,214,0 +170786992094,213,0 +170786992142,213,0 +170786992191,214,0 +170786992239,214,0 +170786992287,214,0 +170786992337,213,0 +170786992386,213,0 +170786992434,213,0 +170786992482,213,0 +170786992531,213,0 +170786992579,213,0 +170786992627,213,0 +170786992675,213,0 +170786992725,213,0 +170786992773,213,0 +170786992821,213,0 +170786992870,213,0 +170786992918,213,0 +170786992966,214,0 +170786993014,213,0 +170786993062,214,0 +170786993110,214,0 +170786993158,213,0 +170786993206,213,0 +170786993254,213,0 +170786993303,213,0 +170786993351,213,0 +170786993401,213,0 +170786993450,213,0 +170786993500,213,0 +170786993548,213,0 +170786993596,213,0 +170786993643,213,0 +170786993691,213,0 +170786993739,213,0 +170786993787,213,0 +170786993835,213,0 +170786993883,214,0 +170786993931,213,0 +170786993979,214,0 +170786994028,214,0 +170786994076,213,0 +170786994126,213,0 +170786994176,213,0 +170786994224,213,0 +170786994271,213,0 +170786994319,213,0 +170786994367,213,0 +170786994415,213,0 +170786994463,213,0 +170786994511,213,0 +170786994559,213,0 +170786994607,213,0 +170786994655,213,0 +170786994703,214,0 +170786994751,214,0 +170786994800,214,0 +170786994848,214,0 +170786994896,214,0 +170786994946,213,0 +170786994994,213,0 +170786995041,213,0 +170786995089,213,0 +170786995139,213,0 +170786995187,213,0 +170786995235,213,0 +170786995283,213,0 +170786995331,213,0 +170786995378,213,0 +170786995428,213,0 +170786995476,213,0 +170786995525,213,0 +170786995573,214,0 +170786995621,214,0 +170786995669,214,0 +170786995717,214,0 +170786995765,214,0 +170786995813,214,0 +170786995861,213,0 +170786995909,213,0 +170786995957,213,0 +170786996005,213,0 +170786996053,213,0 +170786996100,213,0 +170786996148,213,0 +170786996198,213,0 +170786996246,214,0 +170786996294,213,0 +170786996342,214,0 +170786996391,214,0 +170786996439,214,0 +170786996487,214,0 +170786996535,214,0 +170786996583,214,0 +170786996631,214,0 +170786996679,214,0 +170786996726,213,0 +170786996774,213,0 +170786996824,213,0 +170786996873,213,0 +170786996921,213,0 +170786996969,213,0 +170786997017,213,0 +170786997065,213,0 +170786997113,213,0 +170786997161,214,0 +170786997209,214,0 +170786997257,214,0 +170786997305,214,0 +170786997353,214,0 +170786997401,214,0 +170786997448,214,0 +170786997498,214,0 +170786997547,214,0 +170786997597,214,0 +170786997646,213,0 +170786997694,213,0 +170786997742,213,0 +170786997790,213,0 +170786997840,213,0 +170786997888,213,0 +170786997936,213,0 +170786997983,213,0 +170786998033,213,0 +170786998081,214,0 +170786998130,213,0 +170786998178,213,0 +170786998226,214,0 +170786998275,214,0 +170786998323,214,0 +170786998371,214,0 +170786998419,214,0 +170786998467,214,0 +170786998515,213,0 +170786998563,213,0 +170786998611,213,0 +170786998658,213,0 +170786998708,213,0 +170786998756,213,0 +170786998804,213,0 +170786998853,213,0 +170786998903,213,0 +170786998952,213,0 +170786999000,213,0 +170786999048,213,0 +170786999096,213,0 +170786999144,213,0 +170786999192,214,0 +170786999240,214,0 +170786999287,214,0 +170786999337,213,0 +170786999385,214,0 +170786999433,213,0 +170786999481,213,0 +170786999529,213,0 +170786999576,213,0 +170786999624,213,0 +170786999672,213,0 +170786999722,213,0 +170786999770,213,0 +170786999817,213,0 +170786999867,213,0 +170786999915,213,0 +170786999963,213,0 +170787000011,213,0 +170787000058,214,0 +170787000106,214,0 +170787000154,214,0 +170787000204,214,0 +170787000252,214,0 +170787000300,213,0 +170787000348,213,0 +170787000395,213,0 +170787000443,213,0 +170787000491,213,0 +170787000539,213,0 +170787000587,213,0 +170787000635,213,0 +170787000682,213,0 +170787000730,213,0 +170787000778,213,0 +170787000826,213,0 +170787000874,213,0 +170787000922,213,0 +170787000970,213,0 +170787001018,214,0 +170787001065,213,0 +170787001113,214,0 +170787001161,213,0 +170787001210,213,0 +170787001258,213,0 +170787001306,213,0 +170787001354,213,0 +170787001402,213,0 +170787001449,213,0 +170787001497,213,0 +170787001545,213,0 +170787001594,213,0 +170787001642,213,0 +170787001690,213,0 +170787001738,213,0 +170787001786,213,0 +170787001833,213,0 +170787001881,213,0 +170787001929,214,0 +170787001977,214,0 +170787002025,214,0 +170787002073,213,0 +170787002122,213,0 +170787002170,213,0 +170787002218,213,0 +170787002266,213,0 +170787002313,213,0 +170787002361,213,0 +170787002409,213,0 +170787002457,213,0 +170787002505,213,0 +170787002554,213,0 +170787002602,213,0 +170787002650,213,0 +170787002697,214,0 +170787002745,214,0 +170787002793,214,0 +170787002841,214,0 +170787002890,214,0 +170787002938,213,0 +170787002986,213,0 +170787003035,213,0 +170787003083,213,0 +170787003131,213,0 +170787003179,213,0 +170787003227,213,0 +170787003276,213,0 +170787003324,213,0 +170787003372,213,0 +170787003419,213,0 +170787003467,213,0 +170787003515,213,0 +170787003563,213,0 +170787003612,213,0 +170787003660,214,0 +170787003708,213,0 +170787003756,213,0 +170787003804,214,0 +170787003852,213,0 +170787003900,213,0 +170787003947,213,0 +170787003995,213,0 +170787004043,213,0 +170787004091,213,0 +170787004139,213,0 +170787004187,213,0 +170787004235,213,0 +170787004283,213,0 +170787004330,213,0 +170787004378,213,0 +170787004428,213,0 +170787004477,213,0 +170787004527,213,0 +170787004575,214,0 +170787004624,214,0 +170787004672,214,0 +170787004720,213,0 +170787004768,213,0 +170787004816,212,0 +170787004865,213,0 +170787004915,213,0 +170787004963,213,0 +170787005011,213,0 +170787005059,213,0 +170787005107,213,0 +170787005155,213,0 +170787005202,213,0 +170787005250,213,0 +170787005300,213,0 +170787005348,213,0 +170787005397,213,0 +170787005445,213,0 +170787005493,213,0 +170787005541,213,0 +170787005589,213,0 +170787005638,212,0 +170787005688,213,0 +170787005736,212,0 +170787005784,213,0 +170787005832,212,0 +170787005879,213,0 +170787005927,213,0 +170787005975,213,0 +170787006023,212,0 +170787006071,213,0 +170787006119,213,0 +170787006167,213,0 +170787006215,213,0 +170787006262,213,0 +170787006312,213,0 +170787006360,213,0 +170787006409,213,0 +170787006457,213,0 +170787006505,213,0 +170787006553,212,0 +170787006601,213,0 +170787006649,212,0 +170787006696,213,0 +170787006746,213,0 +170787006794,213,0 +170787006842,213,0 +170787006890,213,0 +170787006939,213,0 +170787006987,213,0 +170787007036,213,0 +170787007084,213,0 +170787007134,213,0 +170787007182,213,0 +170787007231,213,0 +170787007279,213,0 +170787007327,213,0 +170787007375,213,0 +170787007424,212,0 +170787007472,212,0 +170787007520,213,0 +170787007570,213,0 +170787007618,213,0 +170787007665,213,0 +170787007713,213,0 +170787007761,212,0 +170787007809,213,0 +170787007857,213,0 +170787007907,213,0 +170787007955,213,0 +170787008002,213,0 +170787008052,213,0 +170787008100,213,0 +170787008148,213,0 +170787008196,213,0 +170787008244,213,0 +170787008291,213,0 +170787008341,213,0 +170787008389,212,0 +170787008438,213,0 +170787008488,213,0 +170787008535,213,0 +170787008583,213,0 +170787008631,213,0 +170787008681,213,0 +170787008729,213,0 +170787008776,213,0 +170787008824,213,0 +170787008874,213,0 +170787008922,213,0 +170787008971,214,0 +170787009021,214,0 +170787009070,214,0 +170787009118,214,0 +170787009166,213,0 +170787009214,213,0 +170787009263,213,0 +170787009313,213,0 +170787009361,213,0 +170787009409,213,0 +170787009458,213,0 +170787009506,213,0 +170787009554,213,0 +170787009603,213,0 +170787009653,213,0 +170787009701,213,0 +170787009750,213,0 +170787009798,214,0 +170787009846,213,0 +170787009896,214,0 +170787009945,214,0 +170787009995,213,0 +170787010044,213,0 +170787010094,213,0 +170787010142,213,0 +170787010191,213,0 +170787010239,213,0 +170787010289,213,0 +170787010336,213,0 +170787010386,213,0 +170787010434,213,0 +170787010482,213,0 +170787010530,213,0 +170787010578,213,0 +170787010625,213,0 +170787010673,213,0 +170787010721,214,0 +170787010769,214,0 +170787010816,214,0 +170787010864,214,0 +170787010912,214,0 +170787010961,213,0 +170787011011,213,0 +170787011059,213,0 +170787011106,212,0 +170787011154,213,0 +170787011202,213,0 +170787011250,213,0 +170787011298,213,0 +170787011346,213,0 +170787011395,213,0 +170787011445,213,0 +170787011493,213,0 +170787011542,213,0 +170787011590,213,0 +170787011639,214,0 +170787011687,214,0 +170787011737,213,0 +170787011785,213,0 +170787011833,213,0 +170787011882,213,0 +170787011930,213,0 +170787011979,213,0 +170787012027,213,0 +170787012077,213,0 +170787012125,213,0 +170787012172,213,0 +170787012220,213,0 +170787012270,213,0 +170787012319,213,0 +170787012367,213,0 +170787012416,213,0 +170787012464,214,0 +170787012514,214,0 +170787012561,214,0 +170787012609,214,0 +170787012657,214,0 +170787012705,213,0 +170787012754,213,0 +170787012802,213,0 +170787012850,213,0 +170787012898,213,0 +170787012946,213,0 +170787012995,213,0 +170787013043,213,0 +170787013091,213,0 +170787013139,213,0 +170787013187,213,0 +170787013235,213,0 +170787013283,213,0 +170787013330,213,0 +170787013380,214,0 +170787013428,213,0 +170787013476,213,0 +170787013524,213,0 +170787013572,213,0 +170787013621,213,0 +170787013671,213,0 +170787013720,213,0 +170787013769,213,0 +170787013817,213,0 +170787013866,213,0 +170787013916,213,0 +170787013965,213,0 +170787014015,213,0 +170787014064,213,0 +170787014114,213,0 +170787014162,213,0 +170787014211,213,0 +170787014259,213,0 +170787014307,213,0 +170787014355,214,0 +170787014405,213,0 +170787014453,213,0 +170787014500,213,0 +170787014548,213,0 +170787014598,213,0 +170787014646,212,0 +170787014694,213,0 +170787014742,213,0 +170787014790,213,0 +170787014837,213,0 +170787014885,213,0 +170787014933,213,0 +170787014981,213,0 +170787015031,213,0 +170787015079,213,0 +170787015128,213,0 +170787015176,213,0 +170787015224,213,0 +170787015272,213,0 +170787015320,213,0 +170787015368,213,0 +170787015416,212,0 +170787015463,213,0 +170787015511,213,0 +170787015559,213,0 +170787015607,213,0 +170787015655,213,0 +170787015703,213,0 +170787015751,213,0 +170787015799,213,0 +170787015849,213,0 +170787015896,213,0 +170787015945,213,0 +170787015995,213,0 +170787016044,213,0 +170787016092,213,0 +170787016142,214,0 +170787016190,213,0 +170787016238,213,0 +170787016286,213,0 +170787016333,213,0 +170787016381,213,0 +170787016431,213,0 +170787016479,213,0 +170787016527,213,0 +170787016576,213,0 +170787016624,213,0 +170787016672,213,0 +170787016720,213,0 +170787016768,213,0 +170787016816,213,0 +170787016864,213,0 +170787016912,214,0 +170787016960,213,0 +170787017008,214,0 +170787017056,214,0 +170787017104,214,0 +170787017153,213,0 +170787017203,213,0 +170787017253,213,0 +170787017302,213,0 +170787017350,213,0 +170787017398,213,0 +170787017446,213,0 +170787017495,213,0 +170787017543,213,0 +170787017591,213,0 +170787017639,214,0 +170787017687,214,0 +170787017735,214,0 +170787017783,214,0 +170787017831,214,0 +170787017879,214,0 +170787017926,214,0 +170787017974,214,0 +170787018022,213,0 +170787018070,213,0 +170787018120,213,0 +170787018167,213,0 +170787018215,213,0 +170787018263,213,0 +170787018313,213,0 +170787018360,213,0 +170787018410,213,0 +170787018458,213,0 +170787018507,213,0 +170787018555,213,0 +170787018603,214,0 +170787018652,214,0 +170787018700,213,0 +170787018748,213,0 +170787018796,214,0 +170787018844,214,0 +170787018894,214,0 +170787018942,213,0 +170787018989,213,0 +170787019037,213,0 +170787019087,213,0 +170787019135,213,0 +170787019183,213,0 +170787019231,213,0 +170787019278,213,0 +170787019328,213,0 +170787019377,213,0 +170787019425,213,0 +170787019475,213,0 +170787019524,214,0 +170787019574,214,0 +170787019621,214,0 +170787019669,214,0 +170787019717,213,0 +170787019765,214,0 +170787019813,213,0 +170787019861,213,0 +170787019909,213,0 +170787019958,213,0 +170787020006,213,0 +170787020056,213,0 +170787020104,213,0 +170787020151,213,0 +170787020199,213,0 +170787020247,213,0 +170787020295,213,0 +170787020343,213,0 +170787020391,213,0 +170787020439,213,0 +170787020486,214,0 +170787020534,214,0 +170787020582,213,0 +170787020631,214,0 +170787020679,213,0 +170787020727,213,0 +170787020775,213,0 +170787020823,213,0 +170787020870,212,0 +170787020918,213,0 +170787020966,213,0 +170787021014,213,0 +170787021062,213,0 +170787021109,213,0 +170787021159,213,0 +170787021207,213,0 +170787021254,213,0 +170787021302,213,0 +170787021350,213,0 +170787021398,213,0 +170787021446,213,0 +170787021495,213,0 +170787021543,213,0 +170787021591,214,0 +170787021641,213,0 +170787021689,213,0 +170787021737,213,0 +170787021785,213,0 +170787021833,213,0 +170787021882,213,0 +170787021930,213,0 +170787021980,213,0 +170787022029,213,0 +170787022077,213,0 +170787022125,213,0 +170787022173,213,0 +170787022221,213,0 +170787022270,213,0 +170787022318,213,0 +170787022368,213,0 +170787022416,213,0 +170787022465,213,0 +170787022515,213,0 +170787022563,213,0 +170787022612,213,0 +170787022660,213,0 +170787022709,213,0 +170787022757,213,0 +170787022805,213,0 +170787022853,213,0 +170787022903,213,0 +170787022952,213,0 +170787023002,213,0 +170787023050,213,0 +170787023098,213,0 +170787023146,213,0 +170787023193,213,0 +170787023241,213,0 +170787023289,213,0 +170787023337,213,0 +170787023385,213,0 +170787023433,213,0 +170787023481,212,0 +170787023530,213,0 +170787023578,213,0 +170787023626,213,0 +170787023674,213,0 +170787023722,213,0 +170787023772,213,0 +170787023819,213,0 +170787023867,213,0 +170787023915,213,0 +170787023963,213,0 +170787024013,213,0 +170787024062,213,0 +170787024110,214,0 +170787024158,214,0 +170787024208,214,0 +170787024256,214,0 +170787024303,213,0 +170787024353,212,0 +170787024403,213,0 +170787024452,213,0 +170787024500,213,0 +170787024549,213,0 +170787024597,213,0 +170787024645,213,0 +170787024693,213,0 +170787024743,213,0 +170787024791,213,0 +170787024838,213,0 +170787024886,213,0 +170787024934,213,0 +170787024982,214,0 +170787025032,213,0 +170787025080,214,0 +170787025128,214,0 +170787025175,213,0 +170787025223,213,0 +170787025273,213,0 +170787025321,213,0 +170787025370,213,0 +170787025418,213,0 +170787025466,213,0 +170787025516,213,0 +170787025565,213,0 +170787025615,213,0 +170787025664,213,0 +170787025712,213,0 +170787025760,213,0 +170787025810,213,0 +170787025858,213,0 +170787025906,214,0 +170787025954,214,0 +170787026003,214,0 +170787026051,213,0 +170787026099,213,0 +170787026148,213,0 +170787026196,213,0 +170787026246,213,0 +170787026295,212,0 +170787026345,213,0 +170787026392,213,0 +170787026440,213,0 +170787026490,213,0 +170787026538,213,0 +170787026586,213,0 +170787026634,213,0 +170787026681,213,0 +170787026729,213,0 +170787026777,213,0 +170787026825,213,0 +170787026875,213,0 +170787026923,213,0 +170787026971,213,0 +170787027018,213,0 +170787027068,214,0 +170787027116,214,0 +170787027165,214,0 +170787027213,214,0 +170787027263,214,0 +170787027311,214,0 +170787027359,213,0 +170787027408,213,0 +170787027456,213,0 +170787027504,212,0 +170787027552,213,0 +170787027600,213,0 +170787027648,213,0 +170787027698,213,0 +170787027745,213,0 +170787027793,213,0 +170787027843,213,0 +170787027893,213,0 +170787027940,213,0 +170787027988,213,0 +170787028036,213,0 +170787028084,213,0 +170787028132,214,0 +170787028180,213,0 +170787028228,214,0 +170787028276,213,0 +170787028324,213,0 +170787028372,213,0 +170787028421,213,0 +170787028469,213,0 +170787028517,213,0 +170787028567,213,0 +170787028615,213,0 +170787028664,213,0 +170787028712,213,0 +170787028762,213,0 +170787028811,213,0 +170787028859,213,0 +170787028907,213,0 +170787028957,213,0 +170787029004,213,0 +170787029052,213,0 +170787029102,213,0 +170787029151,213,0 +170787029199,213,0 +170787029247,213,0 +170787029295,213,0 +170787029343,213,0 +170787029391,213,0 +170787029438,213,0 +170787029486,213,0 +170787029534,213,0 +170787029582,213,0 +170787029631,213,0 +170787029679,213,0 +170787029729,214,0 +170787029776,214,0 +170787029824,213,0 +170787029872,213,0 +170787029920,214,0 +170787029968,214,0 +170787030016,214,0 +170787030064,213,0 +170787030111,213,0 +170787030161,213,0 +170787030209,213,0 +170787030257,213,0 +170787030305,213,0 +170787030354,213,0 +170787030402,213,0 +170787030450,213,0 +170787030498,213,0 +170787030546,213,0 +170787030593,213,0 +170787030641,213,0 +170787030691,213,0 +170787030740,213,0 +170787030788,214,0 +170787030836,214,0 +170787030884,214,0 +170787030931,214,0 +170787030979,213,0 +170787031027,213,0 +170787031075,213,0 +170787031123,213,0 +170787031171,213,0 +170787031219,213,0 +170787031266,213,0 +170787031314,213,0 +170787031362,213,0 +170787031410,213,0 +170787031458,213,0 +170787031506,213,0 +170787031554,213,0 +170787031603,213,0 +170787031651,214,0 +170787031699,214,0 +170787031747,213,0 +170787031795,214,0 +170787031844,213,0 +170787031892,213,0 +170787031940,212,0 +170787031988,213,0 +170787032038,213,0 +170787032086,213,0 +170787032134,213,0 +170787032182,213,0 +170787032229,213,0 +170787032279,213,0 +170787032327,213,0 +170787032375,213,0 +170787032424,213,0 +170787032472,213,0 +170787032520,213,0 +170787032568,213,0 +170787032616,213,0 +170787032664,213,0 +170787032712,214,0 +170787032760,213,0 +170787032808,213,0 +170787032857,213,0 +170787032907,212,0 +170787032956,213,0 +170787033006,213,0 +170787033054,213,0 +170787033102,213,0 +170787033149,213,0 +170787033197,213,0 +170787033247,213,0 +170787033295,213,0 +170787033343,213,0 +170787033391,213,0 +170787033440,213,0 +170787033490,213,0 +170787033539,213,0 +170787033587,213,0 +170787033636,213,0 +170787033686,213,0 +170787033734,213,0 +170787033782,213,0 +170787033830,213,0 +170787033878,213,0 +170787033927,213,0 +170787033975,213,0 +170787034023,213,0 +170787034071,213,0 +170787034120,213,0 +170787034170,213,0 +170787034218,213,0 +170787034266,213,0 +170787034314,213,0 +170787034363,213,0 +170787034413,213,0 +170787034461,214,0 +170787034509,213,0 +170787034558,213,0 +170787034606,213,0 +170787034654,213,0 +170787034702,213,0 +170787034750,213,0 +170787034798,213,0 +170787034845,213,0 +170787034895,213,0 +170787034943,213,0 +170787034992,213,0 +170787035040,213,0 +170787035090,214,0 +170787035137,213,0 +170787035185,214,0 +170787035233,214,0 +170787035281,214,0 +170787035331,213,0 +170787035379,213,0 +170787035427,213,0 +170787035474,213,0 +170787035522,213,0 +170787035570,213,0 +170787035620,213,0 +170787035668,213,0 +170787035717,213,0 +170787035765,213,0 +170787035813,213,0 +170787035861,213,0 +170787035909,213,0 +170787035959,213,0 +170787036008,213,0 +170787036056,213,0 +170787036105,213,0 +170787036153,214,0 +170787036201,213,0 +170787036249,214,0 +170787036297,213,0 +170787036345,213,0 +170787036394,213,0 +170787036442,213,0 +170787036492,213,0 +170787036539,213,0 +170787036587,213,0 +170787036637,213,0 +170787036686,213,0 +170787036736,213,0 +170787036784,213,0 +170787036833,213,0 +170787036883,213,0 +170787036931,213,0 +170787036979,214,0 +170787037027,214,0 +170787037075,214,0 +170787037123,214,0 +170787037171,214,0 +170787037220,213,0 +170787037270,213,0 +170787037318,213,0 +170787037366,213,0 +170787037414,213,0 +170787037462,213,0 +170787037511,213,0 +170787037559,213,0 +170787037608,213,0 +170787037656,213,0 +170787037704,213,0 +170787037752,213,0 +170787037800,214,0 +170787037848,214,0 +170787037895,214,0 +170787037943,214,0 +170787037991,214,0 +170787038039,214,0 +170787038087,214,0 +170787038134,213,0 +170787038182,213,0 +170787038230,213,0 +170787038278,213,0 +170787038326,213,0 +170787038374,213,0 +170787038422,213,0 +170787038469,213,0 +170787038517,213,0 +170787038565,213,0 +170787038613,213,0 +170787038661,214,0 +170787038711,214,0 +170787038758,214,0 +170787038806,214,0 +170787038854,214,0 +170787038902,214,0 +170787038950,214,0 +170787038998,213,0 +170787039045,213,0 +170787039093,213,0 +170787039141,213,0 +170787039189,213,0 +170787039238,213,0 +170787039286,213,0 +170787039336,213,0 +170787039384,214,0 +170787039432,214,0 +170787039480,214,0 +170787039528,214,0 +170787039577,214,0 +170787039626,214,0 +170787039674,214,0 +170787039722,214,0 +170787039770,213,0 +170787039818,214,0 +170787039866,213,0 +170787039914,213,0 +170787039963,213,0 +170787040011,213,0 +170787040061,213,0 +170787040109,213,0 +170787040156,214,0 +170787040204,213,0 +170787040252,214,0 +170787040300,214,0 +170787040348,214,0 +170787040398,214,0 +170787040447,214,0 +170787040495,214,0 +170787040543,214,0 +170787040592,214,0 +170787040640,214,0 +170787040688,214,0 +170787040736,214,0 +170787040784,213,0 +170787040833,213,0 +170787040881,213,0 +170787040929,213,0 +170787040977,213,0 +170787041025,213,0 +170787041073,213,0 +170787041121,214,0 +170787041169,214,0 +170787041219,214,0 +170787041267,214,0 +170787041316,214,0 +170787041364,214,0 +170787041412,214,0 +170787041460,214,0 +170787041508,214,0 +170787041557,214,0 +170787041605,214,0 +170787041653,213,0 +170787041701,213,0 +170787041750,213,0 +170787041799,213,0 +170787041847,213,0 +170787041895,213,0 +170787041943,213,0 +170787041993,213,0 +170787042040,213,0 +170787042088,213,0 +170787042138,214,0 +170787042186,214,0 +170787042235,214,0 +170787042283,214,0 +170787042333,214,0 +170787042381,214,0 +170787042430,214,0 +170787042479,214,0 +170787042527,214,0 +170787042575,213,0 +170787042625,213,0 +170787042673,213,0 +170787042721,213,0 +170787042770,213,0 +170787042818,213,0 +170787042866,213,0 +170787042914,213,0 +170787042962,213,0 +170787043010,213,0 +170787043058,213,0 +170787043106,213,0 +170787043155,213,0 +170787043205,213,0 +170787043254,214,0 +170787043302,213,0 +170787043350,214,0 +170787043399,214,0 +170787043447,213,0 +170787043497,213,0 +170787043545,213,0 +170787043594,213,0 +170787043644,213,0 +170787043693,213,0 +170787043741,212,0 +170787043789,213,0 +170787043837,213,0 +170787043885,213,0 +170787043933,213,0 +170787043981,213,0 +170787044029,213,0 +170787044079,213,0 +170787044126,213,0 +170787044174,213,0 +170787044222,213,0 +170787044270,214,0 +170787044318,214,0 +170787044366,213,0 +170787044414,213,0 +170787044462,212,0 +170787044510,213,0 +170787044557,213,0 +170787044605,213,0 +170787044653,213,0 +170787044701,213,0 +170787044749,213,0 +170787044797,213,0 +170787044845,213,0 +170787044892,213,0 +170787044940,213,0 +170787044990,213,0 +170787045038,213,0 +170787045085,213,0 +170787045133,213,0 +170787045181,213,0 +170787045229,213,0 +170787045277,213,0 +170787045326,213,0 +170787045374,213,0 +170787045422,213,0 +170787045470,213,0 +170787045518,213,0 +170787045568,213,0 +170787045617,213,0 +170787045667,213,0 +170787045714,213,0 +170787045762,213,0 +170787045810,213,0 +170787045858,214,0 +170787045908,214,0 +170787045956,214,0 +170787046004,214,0 +170787046052,214,0 +170787046100,213,0 +170787046148,213,0 +170787046196,213,0 +170787046243,213,0 +170787046291,213,0 +170787046339,213,0 +170787046387,213,0 +170787046435,213,0 +170787046483,213,0 +170787046531,213,0 +170787046579,213,0 +170787046627,213,0 +170787046674,213,0 +170787046724,213,0 +170787046772,213,0 +170787046820,214,0 +170787046868,214,0 +170787046915,213,0 +170787046963,213,0 +170787047013,213,0 +170787047061,213,0 +170787047108,213,0 +170787047156,213,0 +170787047204,213,0 +170787047252,213,0 +170787047301,213,0 +170787047349,213,0 +170787047397,213,0 +170787047445,213,0 +170787047493,213,0 +170787047541,213,0 +170787047589,213,0 +170787047636,214,0 +170787047684,214,0 +170787047732,214,0 +170787047780,214,0 +170787047830,214,0 +170787047879,213,0 +170787047927,213,0 +170787047975,213,0 +170787048023,213,0 +170787048070,213,0 +170787048118,213,0 +170787048166,213,0 +170787048214,213,0 +170787048262,213,0 +170787048310,213,0 +170787048358,213,0 +170787048407,213,0 +170787048455,213,0 +170787048503,213,0 +170787048552,214,0 +170787048600,214,0 +170787048648,213,0 +170787048696,214,0 +170787048744,213,0 +170787048792,213,0 +170787048840,213,0 +170787048888,213,0 +170787048935,213,0 +170787048983,213,0 +170787049031,213,0 +170787049081,213,0 +170787049129,213,0 +170787049177,213,0 +170787049225,213,0 +170787049274,213,0 +170787049324,214,0 +170787049372,213,0 +170787049420,214,0 +170787049468,214,0 +170787049516,214,0 +170787049564,214,0 +170787049611,214,0 +170787049661,213,0 +170787049709,213,0 +170787049757,213,0 +170787049806,213,0 +170787049856,213,0 +170787049904,213,0 +170787049953,213,0 +170787050003,213,0 +170787050051,213,0 +170787050100,213,0 +170787050148,213,0 +170787050198,213,0 +170787050246,213,0 +170787050294,213,0 +170787050342,213,0 +170787050390,213,0 +170787050439,213,0 +170787050487,213,0 +170787050537,213,0 +170787050585,213,0 +170787050633,213,0 +170787050682,213,0 +170787050730,213,0 +170787050778,213,0 +170787050826,213,0 +170787050874,213,0 +170787050922,213,0 +170787050970,213,0 +170787051018,213,0 +170787051066,213,0 +170787051113,213,0 +170787051161,213,0 +170787051211,213,0 +170787051260,213,0 +170787051308,214,0 +170787051358,214,0 +170787051406,213,0 +170787051455,213,0 +170787051503,213,0 +170787051553,213,0 +170787051601,213,0 +170787051650,213,0 +170787051698,213,0 +170787051746,213,0 +170787051795,213,0 +170787051843,213,0 +170787051891,213,0 +170787051939,213,0 +170787051987,213,0 +170787052035,214,0 +170787052085,214,0 +170787052133,214,0 +170787052181,214,0 +170787052229,214,0 +170787052277,213,0 +170787052324,213,0 +170787052372,213,0 +170787052420,213,0 +170787052468,213,0 +170787052516,213,0 +170787052564,213,0 +170787052612,213,0 +170787052660,213,0 +170787052707,213,0 +170787052755,213,0 +170787052803,213,0 +170787052853,213,0 +170787052901,213,0 +170787052949,213,0 +170787052997,214,0 +170787053044,214,0 +170787053092,214,0 +170787053140,213,0 +170787053188,213,0 +170787053236,213,0 +170787053284,213,0 +170787053332,213,0 +170787053380,213,0 +170787053428,213,0 +170787053476,213,0 +170787053525,213,0 +170787053575,213,0 +170787053624,213,0 +170787053674,213,0 +170787053723,213,0 +170787053773,213,0 +170787053821,213,0 +170787053869,213,0 +170787053917,214,0 +170787053966,214,0 +170787054014,214,0 +170787054064,213,0 +170787054112,213,0 +170787054160,213,0 +170787054208,213,0 +170787054255,213,0 +170787054303,213,0 +170787054351,213,0 +170787054399,213,0 +170787054449,213,0 +170787054496,213,0 +170787054544,213,0 +170787054594,213,0 +170787054642,213,0 +170787054689,214,0 +170787054737,214,0 +170787054785,214,0 +170787054833,214,0 +170787054881,213,0 +170787054929,213,0 +170787054977,213,0 +170787055024,213,0 +170787055072,213,0 +170787055120,213,0 +170787055168,213,0 +170787055216,213,0 +170787055264,213,0 +170787055311,213,0 +170787055359,213,0 +170787055407,214,0 +170787055455,214,0 +170787055503,214,0 +170787055551,214,0 +170787055599,214,0 +170787055646,214,0 +170787055694,214,0 +170787055742,214,0 +170787055790,213,0 +170787055838,213,0 +170787055886,213,0 +170787055934,213,0 +170787055981,213,0 +170787056029,213,0 +170787056077,213,0 +170787056125,213,0 +170787056173,213,0 +170787056221,213,0 +170787056268,213,0 +170787056316,214,0 +170787056364,214,0 +170787056413,214,0 +170787056461,214,0 +170787056509,214,0 +170787056558,214,0 +170787056606,214,0 +170787056654,214,0 +170787056702,213,0 +170787056750,213,0 +170787056799,213,0 +170787056849,213,0 +170787056899,213,0 +170787056946,213,0 +170787056994,213,0 +170787057042,213,0 +170787057090,213,0 +170787057138,213,0 +170787057185,214,0 +170787057233,214,0 +170787057281,214,0 +170787057329,214,0 +170787057377,213,0 +170787057424,214,0 +170787057472,214,0 +170787057522,213,0 +170787057570,213,0 +170787057619,213,0 +170787057667,213,0 +170787057715,213,0 +170787057764,213,0 +170787057814,213,0 +170787057862,213,0 +170787057909,213,0 +170787057957,213,0 +170787058005,213,0 +170787058054,213,0 +170787058102,213,0 +170787058150,213,0 +170787058198,214,0 +170787058246,214,0 +170787058294,214,0 +170787058342,214,0 +170787058389,214,0 +170787058437,213,0 +170787058485,213,0 +170787058535,213,0 +170787058584,213,0 +170787058634,213,0 +170787058682,213,0 +170787058730,213,0 +170787058778,213,0 +170787058827,213,0 +170787058877,213,0 +170787058925,213,0 +170787058973,213,0 +170787059021,213,0 +170787059068,214,0 +170787059118,214,0 +170787059168,214,0 +170787059216,214,0 +170787059265,214,0 +170787059315,213,0 +170787059362,213,0 +170787059410,213,0 +170787059458,213,0 +170787059508,213,0 +170787059556,213,0 +170787059604,213,0 +170787059652,213,0 +170787059701,213,0 +170787059751,213,0 +170787059800,213,0 +170787059848,214,0 +170787059896,213,0 +170787059944,214,0 +170787059992,214,0 +170787060039,214,0 +170787060087,214,0 +170787060135,214,0 +170787060183,213,0 +170787060231,213,0 +170787060279,213,0 +170787060326,213,0 +170787060374,213,0 +170787060424,213,0 +170787060472,213,0 +170787060520,213,0 +170787060568,213,0 +170787060615,214,0 +170787060663,213,0 +170787060711,213,0 +170787060761,214,0 +170787060809,214,0 +170787060857,214,0 +170787060906,214,0 +170787060954,214,0 +170787061002,214,0 +170787061050,213,0 +170787061098,213,0 +170787061146,213,0 +170787061194,213,0 +170787061242,213,0 +170787061291,213,0 +170787061339,214,0 +170787061388,214,0 +170787061436,214,0 +170787061484,214,0 +170787061532,214,0 +170787061580,214,0 +170787061628,214,0 +170787061677,214,0 +170787061725,214,0 +170787061773,214,0 +170787061823,214,0 +170787061871,214,0 +170787061919,214,0 +170787061966,213,0 +170787062014,213,0 +170787062062,213,0 +170787062110,213,0 +170787062158,213,0 +170787062205,213,0 +170787062253,213,0 +170787062301,213,0 +170787062349,213,0 +170787062397,213,0 +170787062445,213,0 +170787062492,213,0 +170787062540,213,0 +170787062588,213,0 +170787062636,214,0 +170787062684,214,0 +170787062732,214,0 +170787062780,214,0 +170787062827,213,0 +170787062875,213,0 +170787062923,213,0 +170787062971,213,0 +170787063019,213,0 +170787063067,213,0 +170787063115,213,0 +170787063162,213,0 +170787063210,213,0 +170787063258,213,0 +170787063306,213,0 +170787063354,213,0 +170787063402,213,0 +170787063451,213,0 +170787063499,213,0 +170787063547,213,0 +170787063595,213,0 +170787063643,213,0 +170787063691,213,0 +170787063738,213,0 +170787063786,213,0 +170787063834,213,0 +170787063882,213,0 +170787063930,213,0 +170787063978,213,0 +170787064026,213,0 +170787064074,213,0 +170787064122,213,0 +170787064170,213,0 +170787064217,213,0 +170787064265,213,0 +170787064313,214,0 +170787064363,214,0 +170787064411,214,0 +170787064459,214,0 +170787064507,214,0 +170787064555,214,0 +170787064602,213,0 +170787064652,213,0 +170787064701,213,0 +170787064751,213,0 +170787064799,213,0 +170787064847,213,0 +170787064895,213,0 +170787064943,213,0 +170787064991,213,0 +170787065039,213,0 +170787065088,213,0 +170787065136,213,0 +170787065184,214,0 +170787065232,214,0 +170787065280,214,0 +170787065328,214,0 +170787065377,214,0 +170787065425,213,0 +170787065473,213,0 +170787065523,213,0 +170787065572,213,0 +170787065620,213,0 +170787065668,213,0 +170787065717,213,0 +170787065765,213,0 +170787065813,213,0 +170787065863,213,0 +170787065911,213,0 +170787065959,213,0 +170787066007,213,0 +170787066055,214,0 +170787066103,213,0 +170787066152,213,0 +170787066200,214,0 +170787066248,214,0 +170787066298,213,0 +170787066347,213,0 +170787066397,213,0 +170787066445,213,0 +170787066493,213,0 +170787066542,213,0 +170787066590,213,0 +170787066638,213,0 +170787066686,213,0 +170787066736,213,0 +170787066784,213,0 +170787066831,213,0 +170787066879,213,0 +170787066929,213,0 +170787066978,213,0 +170787067026,213,0 +170787067074,213,0 +170787067124,214,0 +170787067173,214,0 +170787067221,214,0 +170787067270,213,0 +170787067318,213,0 +170787067366,213,0 +170787067416,213,0 +170787067465,213,0 +170787067515,213,0 +170787067563,213,0 +170787067612,213,0 +170787067660,213,0 +170787067708,213,0 +170787067758,213,0 +170787067806,213,0 +170787067854,213,0 +170787067902,213,0 +170787067950,213,0 +170787067997,213,0 +170787068045,214,0 +170787068093,214,0 +170787068141,213,0 +170787068189,213,0 +170787068237,213,0 +170787068284,213,0 +170787068332,213,0 +170787068380,213,0 +170787068428,213,0 +170787068476,213,0 +170787068525,213,0 +170787068573,213,0 +170787068623,213,0 +170787068672,213,0 +170787068720,213,0 +170787068768,214,0 +170787068815,213,0 +170787068865,214,0 +170787068913,213,0 +170787068962,213,0 +170787069010,213,0 +170787069058,213,0 +170787069105,213,0 +170787069153,213,0 +170787069201,213,0 +170787069249,213,0 +170787069297,213,0 +170787069345,213,0 +170787069394,213,0 +170787069443,213,0 +170787069491,213,0 +170787069541,213,0 +170787069589,213,0 +170787069636,213,0 +170787069684,214,0 +170787069732,214,0 +170787069780,214,0 +170787069828,214,0 +170787069876,213,0 +170787069924,213,0 +170787069971,213,0 +170787070019,213,0 +170787070067,213,0 +170787070115,213,0 +170787070165,213,0 +170787070213,213,0 +170787070261,213,0 +170787070310,213,0 +170787070360,213,0 +170787070409,213,0 +170787070457,214,0 +170787070505,214,0 +170787070555,214,0 +170787070603,214,0 +170787070652,214,0 +170787070700,214,0 +170787070748,214,0 +170787070796,213,0 +170787070844,213,0 +170787070892,213,0 +170787070941,213,0 +170787070991,213,0 +170787071040,213,0 +170787071088,213,0 +170787071136,213,0 +170787071184,213,0 +170787071232,213,0 +170787071280,214,0 +170787071328,214,0 +170787071376,214,0 +170787071425,214,0 +170787071473,214,0 +170787071521,214,0 +170787071569,214,0 +170787071619,214,0 +170787071668,213,0 +170787071716,213,0 +170787071764,213,0 +170787071812,213,0 +170787071860,213,0 +170787071908,213,0 +170787071956,213,0 +170787072004,213,0 +170787072051,213,0 +170787072099,213,0 +170787072147,214,0 +170787072197,213,0 +170787072246,214,0 +170787072294,214,0 +170787072342,214,0 +170787072391,214,0 +170787072441,214,0 +170787072489,214,0 +170787072537,213,0 +170787072584,213,0 +170787072632,213,0 +170787072680,213,0 +170787072728,213,0 +170787072777,213,0 +170787072825,213,0 +170787072873,213,0 +170787072921,213,0 +170787072969,213,0 +170787073017,213,0 +170787073065,213,0 +170787073114,213,0 +170787073162,213,0 +170787073210,214,0 +170787073257,214,0 +170787073305,213,0 +170787073355,214,0 +170787073403,213,0 +170787073451,213,0 +170787073499,213,0 +170787073546,213,0 +170787073594,213,0 +170787073642,213,0 +170787073690,213,0 +170787073738,213,0 +170787073786,213,0 +170787073834,213,0 +170787073881,213,0 +170787073929,213,0 +170787073977,214,0 +170787074025,214,0 +170787074073,213,0 +170787074121,214,0 +170787074169,214,0 +170787074218,214,0 +170787074266,214,0 +170787074314,213,0 +170787074362,213,0 +170787074410,213,0 +170787074458,213,0 +170787074506,213,0 +170787074554,213,0 +170787074602,213,0 +170787074650,213,0 +170787074699,213,0 +170787074747,213,0 +170787074795,213,0 +170787074843,214,0 +170787074893,214,0 +170787074942,214,0 +170787074992,214,0 +170787075040,214,0 +170787075089,214,0 +170787075137,214,0 +170787075185,213,0 +170787075233,213,0 +170787075281,213,0 +170787075329,213,0 +170787075378,213,0 +170787075426,213,0 +170787075474,213,0 +170787075522,213,0 +170787075570,213,0 +170787075618,213,0 +170787075666,213,0 +170787075714,213,0 +170787075762,213,0 +170787075809,214,0 +170787075857,213,0 +170787075907,214,0 +170787075956,214,0 +170787076006,214,0 +170787076054,213,0 +170787076102,213,0 +170787076150,213,0 +170787076199,213,0 +170787076247,213,0 +170787076295,213,0 +170787076343,213,0 +170787076391,213,0 +170787076439,213,0 +170787076488,213,0 +170787076538,213,0 +170787076587,213,0 +170787076635,213,0 +170787076683,213,0 +170787076731,213,0 +170787076781,213,0 +170787076829,214,0 +170787076877,214,0 +170787076925,213,0 +170787076974,213,0 +170787077022,213,0 +170787077071,213,0 +170787077119,213,0 +170787077167,213,0 +170787077217,213,0 +170787077266,213,0 +170787077314,213,0 +170787077362,213,0 +170787077410,213,0 +170787077460,213,0 +170787077507,213,0 +170787077555,214,0 +170787077603,214,0 +170787077651,214,0 +170787077699,214,0 +170787077747,214,0 +170787077795,213,0 +170787077845,213,0 +170787077893,213,0 +170787077941,213,0 +170787077990,213,0 +170787078040,213,0 +170787078088,213,0 +170787078136,213,0 +170787078185,213,0 +170787078233,213,0 +170787078281,213,0 +170787078329,213,0 +170787078377,213,0 +170787078425,214,0 +170787078473,214,0 +170787078521,214,0 +170787078570,214,0 +170787078620,214,0 +170787078668,213,0 +170787078715,213,0 +170787078763,213,0 +170787078811,213,0 +170787078861,213,0 +170787078909,213,0 +170787078956,213,0 +170787079004,213,0 +170787079054,213,0 +170787079104,213,0 +170787079153,213,0 +170787079201,213,0 +170787079251,214,0 +170787079298,214,0 +170787079346,214,0 +170787079396,214,0 +170787079444,214,0 +170787079493,214,0 +170787079543,214,0 +170787079592,213,0 +170787079640,213,0 +170787079688,213,0 +170787079738,213,0 +170787079786,213,0 +170787079835,213,0 +170787079885,213,0 +170787079932,213,0 +170787079980,213,0 +170787080028,213,0 +170787080076,214,0 +170787080126,214,0 +170787080174,214,0 +170787080223,214,0 +170787080271,214,0 +170787080319,214,0 +170787080367,214,0 +170787080415,213,0 +170787080463,213,0 +170787080511,213,0 +170787080560,213,0 +170787080608,213,0 +170787080656,213,0 +170787080704,213,0 +170787080752,213,0 +170787080802,213,0 +170787080849,213,0 +170787080897,213,0 +170787080945,214,0 +170787080993,214,0 +170787081041,214,0 +170787081089,214,0 +170787081137,214,0 +170787081185,214,0 +170787081235,214,0 +170787081283,213,0 +170787081330,213,0 +170787081380,213,0 +170787081429,213,0 +170787081479,213,0 +170787081527,213,0 +170787081575,213,0 +170787081624,213,0 +170787081674,213,0 +170787081722,213,0 +170787081771,213,0 +170787081819,213,0 +170787081869,213,0 +170787081917,213,0 +170787081966,213,0 +170787082014,213,0 +170787082062,213,0 +170787082110,214,0 +170787082159,213,0 +170787082209,213,0 +170787082257,213,0 +170787082306,213,0 +170787082354,213,0 +170787082402,213,0 +170787082450,213,0 +170787082498,213,0 +170787082545,213,0 +170787082593,213,0 +170787082641,213,0 +170787082689,213,0 +170787082737,213,0 +170787082787,213,0 +170787082835,213,0 +170787082882,213,0 +170787082932,213,0 +170787082980,213,0 +170787083029,214,0 +170787083077,213,0 +170787083127,213,0 +170787083175,213,0 +170787083224,213,0 +170787083272,213,0 +170787083320,213,0 +170787083370,213,0 +170787083419,213,0 +170787083469,213,0 +170787083517,213,0 +170787083566,213,0 +170787083614,213,0 +170787083664,214,0 +170787083711,213,0 +170787083759,214,0 +170787083807,214,0 +170787083855,213,0 +170787083903,214,0 +170787083952,213,0 +170787084000,213,0 +170787084048,213,0 +170787084098,213,0 +170787084146,213,0 +170787084194,213,0 +170787084242,213,0 +170787084290,213,0 +170787084337,213,0 +170787084385,213,0 +170787084435,214,0 +170787084483,214,0 +170787084530,214,0 +170787084578,214,0 +170787084626,214,0 +170787084674,214,0 +170787084723,214,0 +170787084773,213,0 +170787084821,213,0 +170787084869,213,0 +170787084918,213,0 +170787084966,213,0 +170787085016,213,0 +170787085064,213,0 +170787085111,213,0 +170787085159,213,0 +170787085207,213,0 +170787085257,213,0 +170787085304,214,0 +170787085352,214,0 +170787085402,214,0 +170787085450,214,0 +170787085499,214,0 +170787085547,214,0 +170787085595,214,0 +170787085643,214,0 +170787085691,213,0 +170787085739,213,0 +170787085788,213,0 +170787085836,213,0 +170787085884,213,0 +170787085932,213,0 +170787085980,213,0 +170787086028,213,0 +170787086076,213,0 +170787086124,213,0 +170787086172,214,0 +170787086220,213,0 +170787086267,214,0 +170787086315,214,0 +170787086363,214,0 +170787086411,214,0 +170787086461,214,0 +170787086509,214,0 +170787086557,213,0 +170787086605,213,0 +170787086654,213,0 +170787086702,213,0 +170787086750,213,0 +170787086799,213,0 +170787086847,213,0 +170787086895,213,0 +170787086945,213,0 +170787086993,213,0 +170787087041,213,0 +170787087089,214,0 +170787087137,214,0 +170787087185,214,0 +170787087233,213,0 +170787087280,214,0 +170787087328,214,0 +170787087376,213,0 +170787087424,213,0 +170787087472,213,0 +170787087522,213,0 +170787087569,213,0 +170787087617,213,0 +170787087665,213,0 +170787087713,213,0 +170787087763,213,0 +170787087812,213,0 +170787087860,213,0 +170787087910,214,0 +170787087958,214,0 +170787088005,214,0 +170787088053,213,0 +170787088101,213,0 +170787088149,214,0 +170787088197,214,0 +170787088247,214,0 +170787088295,213,0 +170787088344,213,0 +170787088392,213,0 +170787088441,213,0 +170787088491,213,0 +170787088539,213,0 +170787088588,213,0 +170787088638,213,0 +170787088686,213,0 +170787088734,213,0 +170787088782,214,0 +170787088830,213,0 +170787088878,214,0 +170787088925,214,0 +170787088973,214,0 +170787089021,214,0 +170787089071,214,0 +170787089119,213,0 +170787089168,213,0 +170787089218,213,0 +170787089267,213,0 +170787089315,213,0 +170787089363,213,0 +170787089411,213,0 +170787089459,213,0 +170787089507,213,0 +170787089555,213,0 +170787089603,213,0 +170787089652,214,0 +170787089700,213,0 +170787089748,214,0 +170787089796,214,0 +170787089846,214,0 +170787089894,214,0 +170787089943,214,0 +170787089991,214,0 +170787090039,213,0 +170787090087,213,0 +170787090135,213,0 +170787090185,213,0 +170787090234,213,0 +170787090284,213,0 +170787090332,213,0 +170787090381,213,0 +170787090429,213,0 +170787090477,213,0 +170787090527,213,0 +170787090574,213,0 +170787090624,213,0 +170787090672,214,0 +170787090720,213,0 +170787090768,213,0 +170787090817,214,0 +170787090865,213,0 +170787090915,213,0 +170787090963,213,0 +170787091011,213,0 +170787091058,213,0 +170787091108,213,0 +170787091156,213,0 +170787091205,213,0 +170787091253,213,0 +170787091301,213,0 +170787091349,213,0 +170787091399,213,0 +170787091447,213,0 +170787091495,214,0 +170787091542,213,0 +170787091592,213,0 +170787091640,213,0 +170787091688,214,0 +170787091737,213,0 +170787091785,213,0 +170787091835,213,0 +170787091883,213,0 +170787091932,213,0 +170787091980,213,0 +170787092030,213,0 +170787092079,213,0 +170787092129,213,0 +170787092176,213,0 +170787092224,213,0 +170787092274,213,0 +170787092322,213,0 +170787092371,213,0 +170787092421,214,0 +170787092469,213,0 +170787092519,213,0 +170787092568,214,0 +170787092616,213,0 +170787092664,213,0 +170787092712,213,0 +170787092760,213,0 +170787092808,213,0 +170787092856,213,0 +170787092905,213,0 +170787092953,213,0 +170787093003,213,0 +170787093051,213,0 +170787093100,213,0 +170787093148,213,0 +170787093196,214,0 +170787093244,214,0 +170787093292,213,0 +170787093340,214,0 +170787093390,214,0 +170787093438,214,0 +170787093487,213,0 +170787093535,213,0 +170787093583,213,0 +170787093631,213,0 +170787093679,213,0 +170787093727,213,0 +170787093775,213,0 +170787093823,213,0 +170787093871,213,0 +170787093920,213,0 +170787093968,213,0 +170787094016,213,0 +170787094064,214,0 +170787094113,214,0 +170787094161,214,0 +170787094209,213,0 +170787094259,214,0 +170787094307,214,0 +170787094356,213,0 +170787094405,213,0 +170787094453,213,0 +170787094501,213,0 +170787094549,213,0 +170787094597,213,0 +170787094645,213,0 +170787094693,213,0 +170787094742,213,0 +170787094790,213,0 +170787094838,213,0 +170787094886,213,0 +170787094936,213,0 +170787094985,214,0 +170787095033,214,0 +170787095081,214,0 +170787095129,214,0 +170787095177,214,0 +170787095225,213,0 +170787095274,213,0 +170787095322,213,0 +170787095370,213,0 +170787095418,213,0 +170787095467,213,0 +170787095515,213,0 +170787095564,213,0 +170787095612,213,0 +170787095661,213,0 +170787095709,213,0 +170787095757,213,0 +170787095805,213,0 +170787095853,213,0 +170787095902,214,0 +170787095950,214,0 +170787095998,214,0 +170787096046,214,0 +170787096093,213,0 +170787096141,213,0 +170787096189,213,0 +170787096237,213,0 +170787096287,213,0 +170787096335,213,0 +170787096383,213,0 +170787096431,213,0 +170787096480,213,0 +170787096530,213,0 +170787096578,214,0 +170787096627,214,0 +170787096675,214,0 +170787096723,214,0 +170787096771,214,0 +170787096819,214,0 +170787096867,214,0 +170787096915,214,0 +170787096963,213,0 +170787097011,213,0 +170787097058,213,0 +170787097106,214,0 +170787097154,213,0 +170787097204,214,0 +170787097252,213,0 +170787097301,214,0 +170787097349,214,0 +170787097399,214,0 +170787097448,214,0 +170787097496,214,0 +170787097546,214,0 +170787097594,214,0 +170787097643,214,0 +170787097691,214,0 +170787097739,214,0 +170787097787,214,0 +170787097835,214,0 +170787097885,214,0 +170787097932,214,0 +170787097982,214,0 +170787098030,214,0 +170787098078,214,0 +170787098126,214,0 +170787098175,214,0 +170787098225,214,0 +170787098273,214,0 +170787098322,214,0 +170787098370,214,0 +170787098418,214,0 +170787098466,214,0 +170787098514,214,0 +170787098562,214,0 +170787098610,214,0 +170787098658,214,0 +170787098706,214,0 +170787098754,214,0 +170787098802,213,0 +170787098851,213,0 +170787098899,213,0 +170787098947,213,0 +170787098996,213,0 +170787099046,213,0 +170787099095,214,0 +170787099145,213,0 +170787099194,213,0 +170787099242,213,0 +170787099290,214,0 +170787099340,214,0 +170787099388,214,0 +170787099437,214,0 +170787099485,214,0 +170787099533,214,0 +170787099581,214,0 +170787099628,214,0 +170787099678,213,0 +170787099727,213,0 +170787099775,213,0 +170787099823,213,0 +170787099871,213,0 +170787099918,213,0 +170787099966,213,0 +170787100014,213,0 +170787100062,213,0 +170787100111,213,0 +170787100159,213,0 +170787100209,214,0 +170787100258,214,0 +170787100306,214,0 +170787100354,214,0 +170787100402,214,0 +170787100450,214,0 +170787100498,214,0 +170787100546,214,0 +170787100594,213,0 +170787100644,213,0 +170787100691,213,0 +170787100739,213,0 +170787100787,213,0 +170787100835,213,0 +170787100885,213,0 +170787100933,213,0 +170787100982,213,0 +170787101030,213,0 +170787101078,213,0 +170787101126,213,0 +170787101175,213,0 +170787101225,213,0 +170787101273,213,0 +170787101321,214,0 +170787101369,214,0 +170787101418,214,0 +170787101468,213,0 +170787101517,213,0 +170787101565,213,0 +170787101613,213,0 +170787101661,213,0 +170787101710,213,0 +170787101760,213,0 +170787101808,213,0 +170787101856,213,0 +170787101905,213,0 +170787101953,213,0 +170787102001,213,0 +170787102048,213,0 +170787102096,213,0 +170787102144,213,0 +170787102192,214,0 +170787102240,214,0 +170787102288,214,0 +170787102335,213,0 +170787102383,213,0 +170787102431,213,0 +170787102479,213,0 +170787102527,213,0 +170787102576,213,0 +170787102624,213,0 +170787102672,213,0 +170787102722,213,0 +170787102771,213,0 +170787102819,213,0 +170787102869,213,0 +170787102917,213,0 +170787102965,214,0 +170787103014,214,0 +170787103062,214,0 +170787103110,214,0 +170787103158,214,0 +170787103206,214,0 +170787103253,214,0 +170787103301,213,0 +170787103349,213,0 +170787103397,213,0 +170787103445,213,0 +170787103495,213,0 +170787103542,213,0 +170787103590,213,0 +170787103638,213,0 +170787103688,213,0 +170787103737,213,0 +170787103785,213,0 +170787103833,213,0 +170787103881,214,0 +170787103931,214,0 +170787103978,214,0 +170787104026,214,0 +170787104074,214,0 +170787104124,214,0 +170787104173,213,0 +170787104221,213,0 +170787104269,213,0 +170787104317,213,0 +170787104365,213,0 +170787104413,213,0 +170787104461,213,0 +170787104509,213,0 +170787104556,213,0 +170787104604,213,0 +170787104652,213,0 +170787104700,213,0 +170787104750,213,0 +170787104798,213,0 +170787104846,213,0 +170787104895,214,0 +170787104943,213,0 +170787104992,213,0 +170787105042,214,0 +170787105090,213,0 +170787105138,213,0 +170787105185,213,0 +170787105235,213,0 +170787105283,213,0 +170787105332,213,0 +170787105380,213,0 +170787105428,213,0 +170787105476,213,0 +170787105524,213,0 +170787105571,213,0 +170787105619,213,0 +170787105667,213,0 +170787105715,213,0 +170787105765,213,0 +170787105813,213,0 +170787105860,213,0 +170787105908,214,0 +170787105956,214,0 +170787106006,213,0 +170787106054,213,0 +170787106102,213,0 +170787106150,213,0 +170787106198,213,0 +170787106247,213,0 +170787106295,213,0 +170787106345,213,0 +170787106393,213,0 +170787106441,213,0 +170787106488,213,0 +170787106536,214,0 +170787106584,214,0 +170787106634,214,0 +170787106683,214,0 +170787106731,214,0 +170787106781,214,0 +170787106830,213,0 +170787106880,213,0 +170787106929,213,0 +170787106977,213,0 +170787107025,213,0 +170787107073,213,0 +170787107121,213,0 +170787107170,213,0 +170787107218,213,0 +170787107266,213,0 +170787107314,213,0 +170787107362,213,0 +170787107410,214,0 +170787107458,213,0 +170787107506,214,0 +170787107554,214,0 +170787107601,214,0 +170787107651,214,0 +170787107699,214,0 +170787107747,213,0 +170787107796,213,0 +170787107844,213,0 +170787107894,213,0 +170787107942,213,0 +170787107990,213,0 +170787108039,213,0 +170787108087,213,0 +170787108135,213,0 +170787108183,213,0 +170787108231,213,0 +170787108279,213,0 +170787108328,214,0 +170787108376,213,0 +170787108425,213,0 +170787108473,214,0 +170787108521,214,0 +170787108569,214,0 +170787108619,214,0 +170787108667,213,0 +170787108716,213,0 +170787108764,213,0 +170787108812,213,0 +170787108860,213,0 +170787108908,213,0 +170787108955,213,0 +170787109003,213,0 +170787109051,213,0 +170787109099,213,0 +170787109147,213,0 +170787109195,213,0 +170787109243,213,0 +170787109291,213,0 +170787109339,213,0 +170787109386,213,0 +170787109434,214,0 +170787109482,214,0 +170787109530,214,0 +170787109578,213,0 +170787109627,213,0 +170787109675,213,0 +170787109723,213,0 +170787109773,213,0 +170787109821,213,0 +170787109869,213,0 +170787109917,213,0 +170787109966,213,0 +170787110016,213,0 +170787110064,213,0 +170787110112,213,0 +170787110160,213,0 +170787110207,213,0 +170787110255,213,0 +170787110303,213,0 +170787110353,213,0 +170787110402,213,0 +170787110450,213,0 +170787110498,213,0 +170787110545,213,0 +170787110593,213,0 +170787110641,213,0 +170787110689,213,0 +170787110737,213,0 +170787110785,213,0 +170787110832,213,0 +170787110880,213,0 +170787110928,213,0 +170787110976,213,0 +170787111024,213,0 +170787111072,213,0 +170787111119,213,0 +170787111167,214,0 +170787111215,213,0 +170787111263,214,0 +170787111311,213,0 +170787111359,214,0 +170787111406,213,0 +170787111454,213,0 +170787111502,213,0 +170787111550,213,0 +170787111598,213,0 +170787111645,213,0 +170787111693,213,0 +170787111741,213,0 +170787111789,213,0 +170787111838,213,0 +170787111886,213,0 +170787111935,213,0 +170787111983,213,0 +170787112031,213,0 +170787112079,214,0 +170787112127,213,0 +170787112174,213,0 +170787112222,214,0 +170787112270,213,0 +170787112320,213,0 +170787112369,213,0 +170787112417,213,0 +170787112467,213,0 +170787112514,213,0 +170787112562,213,0 +170787112612,213,0 +170787112660,213,0 +170787112708,213,0 +170787112756,213,0 +170787112804,213,0 +170787112851,213,0 +170787112899,214,0 +170787112947,213,0 +170787112995,214,0 +170787113043,213,0 +170787113091,214,0 +170787113140,214,0 +170787113188,213,0 +170787113236,213,0 +170787113284,213,0 +170787113334,213,0 +170787113381,213,0 +170787113429,213,0 +170787113477,213,0 +170787113525,213,0 +170787113575,213,0 +170787113623,213,0 +170787113670,214,0 +170787113718,214,0 +170787113766,214,0 +170787113814,214,0 +170787113862,214,0 +170787113909,214,0 +170787113957,214,0 +170787114007,214,0 +170787114055,213,0 +170787114103,213,0 +170787114152,214,0 +170787114200,214,0 +170787114248,213,0 +170787114296,214,0 +170787114344,214,0 +170787114393,214,0 +170787114441,214,0 +170787114489,214,0 +170787114537,214,0 +170787114585,214,0 +170787114633,214,0 +170787114682,214,0 +170787114730,214,0 +170787114778,214,0 +170787114826,214,0 +170787114874,214,0 +170787114922,214,0 +170787114970,214,0 +170787115018,214,0 +170787115067,214,0 +170787115115,214,0 +170787115163,214,0 +170787115211,214,0 +170787115259,214,0 +170787115307,214,0 +170787115355,214,0 +170787115403,214,0 +170787115450,214,0 +170787115498,214,0 +170787115546,214,0 +170787115594,214,0 +170787115642,214,0 +170787115690,214,0 +170787115738,214,0 +170787115785,214,0 +170787115833,214,0 +170787115881,213,0 +170787115929,213,0 +170787115977,213,0 +170787116025,213,0 +170787116073,213,0 +170787116121,213,0 +170787116169,213,0 +170787116216,213,0 +170787116264,213,0 +170787116312,213,0 +170787116360,214,0 +170787116408,213,0 +170787116458,214,0 +170787116506,213,0 +170787116554,214,0 +170787116601,214,0 +170787116649,214,0 +170787116697,214,0 +170787116747,214,0 +170787116796,213,0 +170787116846,213,0 +170787116895,213,0 +170787116943,213,0 +170787116993,213,0 +170787117041,213,0 +170787117089,213,0 +170787117138,213,0 +170787117186,213,0 +170787117234,213,0 +170787117284,213,0 +170787117332,213,0 +170787117381,214,0 +170787117429,214,0 +170787117477,214,0 +170787117525,214,0 +170787117574,214,0 +170787117622,214,0 +170787117670,214,0 +170787117718,213,0 +170787117767,213,0 +170787117815,213,0 +170787117863,213,0 +170787117911,213,0 +170787117960,213,0 +170787118008,213,0 +170787118058,213,0 +170787118107,213,0 +170787118155,213,0 +170787118205,214,0 +170787118254,213,0 +170787118302,214,0 +170787118350,214,0 +170787118398,214,0 +170787118447,214,0 +170787118497,214,0 +170787118546,214,0 +170787118594,214,0 +170787118642,213,0 +170787118690,213,0 +170787118739,213,0 +170787118787,213,0 +170787118837,213,0 +170787118884,213,0 +170787118932,213,0 +170787118980,213,0 +170787119030,213,0 +170787119079,214,0 +170787119127,213,0 +170787119175,214,0 +170787119224,214,0 +170787119272,214,0 +170787119320,214,0 +170787119368,214,0 +170787119416,214,0 +170787119464,214,0 +170787119512,213,0 +170787119561,213,0 +170787119611,213,0 +170787119659,213,0 +170787119707,213,0 +170787119756,213,0 +170787119806,213,0 +170787119853,213,0 +170787119901,213,0 +170787119949,213,0 +170787119997,213,0 +170787120047,213,0 +170787120096,213,0 +170787120144,214,0 +170787120193,213,0 +170787120243,214,0 +170787120291,214,0 +170787120339,214,0 +170787120388,213,0 +170787120436,213,0 +170787120486,213,0 +170787120533,213,0 +170787120583,213,0 +170787120631,213,0 +170787120679,213,0 +170787120727,213,0 +170787120774,213,0 +170787120824,213,0 +170787120872,213,0 +170787120920,213,0 +170787120968,213,0 +170787121016,213,0 +170787121065,214,0 +170787121115,214,0 +170787121163,214,0 +170787121211,214,0 +170787121259,214,0 +170787121307,214,0 +170787121356,213,0 +170787121404,213,0 +170787121452,213,0 +170787121501,213,0 +170787121551,213,0 +170787121599,213,0 +170787121647,213,0 +170787121695,213,0 +170787121744,213,0 +170787121793,213,0 +170787121841,213,0 +170787121891,213,0 +170787121939,213,0 +170787121987,213,0 +170787122035,214,0 +170787122084,214,0 +170787122132,214,0 +170787122180,213,0 +170787122228,213,0 +170787122276,213,0 +170787122325,213,0 +170787122373,213,0 +170787122421,213,0 +170787122470,213,0 +170787122518,213,0 +170787122566,213,0 +170787122615,213,0 +170787122663,213,0 +170787122711,213,0 +170787122758,214,0 +170787122806,213,0 +170787122854,214,0 +170787122904,214,0 +170787122952,214,0 +170787123000,214,0 +170787123049,214,0 +170787123099,213,0 +170787123147,213,0 +170787123195,213,0 +170787123242,213,0 +170787123290,213,0 +170787123338,213,0 +170787123386,213,0 +170787123434,213,0 +170787123482,213,0 +170787123531,213,0 +170787123579,213,0 +170787123627,213,0 +170787123675,214,0 +170787123724,214,0 +170787123772,214,0 +170787123820,214,0 +170787123868,214,0 +170787123916,214,0 +170787123963,214,0 +170787124011,213,0 +170787124059,213,0 +170787124107,213,0 +170787124155,213,0 +170787124203,213,0 +170787124251,213,0 +170787124299,213,0 +170787124347,213,0 +170787124394,213,0 +170787124442,213,0 +170787124490,213,0 +170787124538,213,0 +170787124586,213,0 +170787124635,213,0 +170787124683,214,0 +170787124731,214,0 +170787124779,214,0 +170787124828,214,0 +170787124876,214,0 +170787124924,213,0 +170787124972,213,0 +170787125020,213,0 +170787125068,213,0 +170787125115,213,0 +170787125163,213,0 +170787125211,213,0 +170787125259,213,0 +170787125307,213,0 +170787125355,213,0 +170787125402,213,0 +170787125450,213,0 +170787125498,213,0 +170787125546,213,0 +170787125594,213,0 +170787125642,214,0 +170787125690,214,0 +170787125738,213,0 +170787125786,214,0 +170787125834,213,0 +170787125882,213,0 +170787125930,213,0 +170787125978,213,0 +170787126027,213,0 +170787126077,213,0 +170787126125,213,0 +170787126173,213,0 +170787126222,213,0 +170787126270,213,0 +170787126320,213,0 +170787126368,213,0 +170787126416,213,0 +170787126464,213,0 +170787126513,213,0 +170787126561,214,0 +170787126609,214,0 +170787126657,214,0 +170787126705,214,0 +170787126753,213,0 +170787126802,213,0 +170787126850,213,0 +170787126898,213,0 +170787126948,213,0 +170787126996,213,0 +170787127044,213,0 +170787127092,213,0 +170787127141,213,0 +170787127189,213,0 +170787127237,213,0 +170787127285,213,0 +170787127333,214,0 +170787127382,214,0 +170787127430,213,0 +170787127478,214,0 +170787127526,214,0 +170787127575,214,0 +170787127623,213,0 +170787127673,213,0 +170787127722,213,0 +170787127770,213,0 +170787127818,213,0 +170787127868,213,0 +170787127916,213,0 +170787127964,213,0 +170787128013,213,0 +170787128061,213,0 +170787128111,213,0 +170787128159,213,0 +170787128206,213,0 +170787128254,214,0 +170787128304,214,0 +170787128352,214,0 +170787128402,214,0 +170787128451,214,0 +170787128499,214,0 +170787128548,213,0 +170787128596,213,0 +170787128644,213,0 +170787128692,213,0 +170787128742,213,0 +170787128791,213,0 +170787128839,213,0 +170787128887,213,0 +170787128935,213,0 +170787128983,213,0 +170787129031,213,0 +170787129079,213,0 +170787129127,214,0 +170787129175,214,0 +170787129223,214,0 +170787129271,214,0 +170787129320,214,0 +170787129368,214,0 +170787129416,214,0 +170787129464,213,0 +170787129512,213,0 +170787129560,213,0 +170787129608,213,0 +170787129656,213,0 +170787129705,213,0 +170787129753,213,0 +170787129801,213,0 +170787129851,213,0 +170787129899,214,0 +170787129947,214,0 +170787129996,214,0 +170787130044,214,0 +170787130092,214,0 +170787130140,214,0 +170787130188,214,0 +170787130236,214,0 +170787130283,214,0 +170787130331,214,0 +170787130379,214,0 +170787130427,213,0 +170787130475,213,0 +170787130523,213,0 +170787130570,214,0 +170787130618,214,0 +170787130666,213,0 +170787130714,214,0 +170787130762,214,0 +170787130810,214,0 +170787130858,214,0 +170787130906,214,0 +170787130954,214,0 +170787131003,214,0 +170787131053,214,0 +170787131101,214,0 +170787131148,214,0 +170787131198,214,0 +170787131247,213,0 +170787131297,213,0 +170787131346,213,0 +170787131394,214,0 +170787131442,213,0 +170787131492,213,0 +170787131539,214,0 +170787131587,214,0 +170787131637,214,0 +170787131685,214,0 +170787131733,214,0 +170787131780,214,0 +170787131828,214,0 +170787131876,214,0 +170787131926,214,0 +170787131975,214,0 +170787132025,214,0 +170787132074,214,0 +170787132124,214,0 +170787132172,213,0 +170787132220,213,0 +170787132268,213,0 +170787132317,213,0 +170787132365,213,0 +170787132413,213,0 +170787132462,213,0 +170787132510,214,0 +170787132560,213,0 +170787132608,213,0 +170787132657,214,0 +170787132705,214,0 +170787132753,214,0 +170787132803,214,0 +170787132851,214,0 +170787132899,214,0 +170787132947,214,0 +170787132995,214,0 +170787133042,213,0 +170787133090,213,0 +170787133138,213,0 +170787133186,213,0 +170787133234,213,0 +170787133284,213,0 +170787133333,213,0 +170787133383,213,0 +170787133432,213,0 +170787133480,214,0 +170787133528,213,0 +170787133578,214,0 +170787133625,214,0 +170787133673,213,0 +170787133721,214,0 +170787133771,214,0 +170787133818,214,0 +170787133866,214,0 +170787133916,213,0 +170787133963,213,0 +170787134013,213,0 +170787134061,213,0 +170787134108,213,0 +170787134156,213,0 +170787134204,213,0 +170787134252,213,0 +170787134300,213,0 +170787134347,213,0 +170787134395,213,0 +170787134443,213,0 +170787134491,214,0 +170787134539,213,0 +170787134587,214,0 +170787134636,214,0 +170787134684,214,0 +170787134732,214,0 +170787134780,214,0 +170787134827,214,0 +170787134875,213,0 +170787134925,213,0 +170787134974,213,0 +170787135022,213,0 +170787135070,213,0 +170787135118,213,0 +170787135165,213,0 +170787135213,213,0 +170787135261,213,0 +170787135309,213,0 +170787135357,213,0 +170787135405,214,0 +170787135454,213,0 +170787135502,214,0 +170787135552,213,0 +170787135600,214,0 +170787135648,214,0 +170787135695,214,0 +170787135743,213,0 +170787135791,213,0 +170787135841,213,0 +170787135890,213,0 +170787135938,213,0 +170787135986,213,0 +170787136034,213,0 +170787136081,213,0 +170787136131,213,0 +170787136179,213,0 +170787136227,213,0 +170787136275,213,0 +170787136324,213,0 +170787136372,214,0 +170787136420,214,0 +170787136468,214,0 +170787136516,214,0 +170787136564,214,0 +170787136613,214,0 +170787136663,213,0 +170787136711,213,0 +170787136759,213,0 +170787136808,213,0 +170787136857,213,0 +170787136905,213,0 +170787136953,213,0 +170787137001,214,0 +170787137049,213,0 +170787137097,213,0 +170787137146,213,0 +170787137194,214,0 +170787137242,213,0 +170787137292,214,0 +170787137340,214,0 +170787137388,214,0 +170787137437,214,0 +170787137485,214,0 +170787137533,214,0 +170787137581,213,0 +170787137629,213,0 +170787137677,213,0 +170787137725,213,0 +170787137772,213,0 +170787137820,213,0 +170787137868,213,0 +170787137918,213,0 +170787137966,213,0 +170787138013,213,0 +170787138063,213,0 +170787138111,214,0 +170787138160,214,0 +170787138208,214,0 +170787138256,214,0 +170787138304,214,0 +170787138352,214,0 +170787138400,214,0 +170787138448,213,0 +170787138497,213,0 +170787138545,213,0 +170787138593,213,0 +170787138641,213,0 +170787138689,213,0 +170787138737,213,0 +170787138784,213,0 +170787138832,213,0 +170787138880,213,0 +170787138928,213,0 +170787138976,213,0 +170787139024,214,0 +170787139071,214,0 +170787139119,214,0 +170787139167,214,0 +170787139215,214,0 +170787139263,214,0 +170787139311,214,0 +170787139360,213,0 +170787139408,213,0 +170787139456,213,0 +170787139505,213,0 +170787139553,213,0 +170787139602,213,0 +170787139650,213,0 +170787139698,213,0 +170787139746,213,0 +170787139794,213,0 +170787139842,213,0 +170787139890,214,0 +170787139938,214,0 +170787139985,214,0 +170787140033,214,0 +170787140081,214,0 +170787140129,213,0 +170787140177,214,0 +170787140226,214,0 +170787140274,213,0 +170787140322,213,0 +170787140370,213,0 +170787140418,213,0 +170787140466,213,0 +170787140513,213,0 +170787140561,213,0 +170787140611,213,0 +170787140659,213,0 +170787140706,214,0 +170787140754,214,0 +170787140802,214,0 +170787140850,214,0 +170787140898,214,0 +170787140946,214,0 +170787140994,214,0 +170787141042,214,0 +170787141089,214,0 +170787141137,214,0 +170787141185,213,0 +170787141233,213,0 +170787141281,213,0 +170787141329,213,0 +170787141376,213,0 +170787141424,213,0 +170787141472,213,0 +170787141520,214,0 +170787141568,214,0 +170787141616,214,0 +170787141663,214,0 +170787141711,214,0 +170787141759,214,0 +170787141807,214,0 +170787141855,214,0 +170787141903,214,0 +170787141951,214,0 +170787141998,214,0 +170787142046,213,0 +170787142096,213,0 +170787142145,213,0 +170787142195,213,0 +170787142243,213,0 +170787142291,213,0 +170787142339,213,0 +170787142387,213,0 +170787142435,213,0 +170787142484,213,0 +170787142532,214,0 +170787142580,214,0 +170787142628,214,0 +170787142676,214,0 +170787142723,214,0 +170787142771,214,0 +170787142819,214,0 +170787142867,214,0 +170787142915,214,0 +170787142965,213,0 +170787143014,213,0 +170787143062,213,0 +170787143110,213,0 +170787143158,213,0 +170787143206,213,0 +170787143254,213,0 +170787143302,213,0 +170787143350,213,0 +170787143398,213,0 +170787143445,213,0 +170787143495,213,0 +170787143543,213,0 +170787143591,214,0 +170787143639,214,0 +170787143687,214,0 +170787143735,214,0 +170787143782,214,0 +170787143832,214,0 +170787143881,213,0 +170787143929,213,0 +170787143977,213,0 +170787144025,213,0 +170787144075,213,0 +170787144122,213,0 +170787144170,213,0 +170787144218,213,0 +170787144266,213,0 +170787144314,213,0 +170787144362,213,0 +170787144411,214,0 +170787144459,213,0 +170787144507,214,0 +170787144555,214,0 +170787144603,213,0 +170787144652,213,0 +170787144700,214,0 +170787144750,214,0 +170787144798,213,0 +170787144845,213,0 +170787144895,213,0 +170787144943,213,0 +170787144991,213,0 +170787145039,213,0 +170787145087,213,0 +170787145136,213,0 +170787145184,213,0 +170787145232,213,0 +170787145280,213,0 +170787145328,213,0 +170787145376,214,0 +170787145424,213,0 +170787145473,213,0 +170787145521,214,0 +170787145569,214,0 +170787145617,214,0 +170787145665,213,0 +170787145714,213,0 +170787145762,213,0 +170787145810,213,0 +170787145858,213,0 +170787145908,213,0 +170787145956,213,0 +170787146003,213,0 +170787146051,213,0 +170787146099,213,0 +170787146149,213,0 +170787146197,213,0 +170787146245,214,0 +170787146293,214,0 +170787146340,214,0 +170787146388,214,0 +170787146438,214,0 +170787146486,214,0 +170787146535,214,0 +170787146583,213,0 +170787146631,213,0 +170787146679,213,0 +170787146729,213,0 +170787146778,213,0 +170787146828,213,0 +170787146877,213,0 +170787146925,213,0 +170787146973,214,0 +170787147021,214,0 +170787147070,214,0 +170787147118,214,0 +170787147168,214,0 +170787147216,214,0 +170787147263,214,0 +170787147311,214,0 +170787147359,214,0 +170787147407,214,0 +170787147455,214,0 +170787147503,213,0 +170787147551,213,0 +170787147598,213,0 +170787147646,213,0 +170787147694,213,0 +170787147742,214,0 +170787147790,214,0 +170787147838,214,0 +170787147885,214,0 +170787147933,214,0 +170787147981,214,0 +170787148029,214,0 +170787148077,214,0 +170787148125,214,0 +170787148173,214,0 +170787148221,214,0 +170787148269,214,0 +170787148317,214,0 +170787148365,213,0 +170787148413,213,0 +170787148462,213,0 +170787148510,213,0 +170787148558,213,0 +170787148606,213,0 +170787148654,213,0 +170787148702,213,0 +170787148751,214,0 +170787148801,214,0 +170787148850,214,0 +170787148898,214,0 +170787148946,214,0 +170787148994,214,0 +170787149044,214,0 +170787149091,214,0 +170787149139,214,0 +170787149187,214,0 +170787149237,214,0 +170787149285,213,0 +170787149333,213,0 +170787149381,213,0 +170787149428,213,0 +170787149476,213,0 +170787149524,213,0 +170787149572,213,0 +170787149620,213,0 +170787149668,213,0 +170787149718,213,0 +170787149766,213,0 +170787149814,213,0 +170787149862,213,0 +170787149910,214,0 +170787149957,214,0 +170787150005,213,0 +170787150055,214,0 +170787150103,214,0 +170787150151,214,0 +170787150199,213,0 +170787150248,213,0 +170787150298,213,0 +170787150345,213,0 +170787150393,213,0 +170787150441,213,0 +170787150489,213,0 +170787150539,213,0 +170787150587,213,0 +170787150634,213,0 +170787150684,213,0 +170787150732,213,0 +170787150780,213,0 +170787150829,213,0 +170787150877,213,0 +170787150925,213,0 +170787150973,213,0 +170787151022,214,0 +170787151070,214,0 +170787151118,213,0 +170787151166,213,0 +170787151214,213,0 +170787151263,213,0 +170787151311,213,0 +170787151361,213,0 +170787151408,213,0 +170787151456,213,0 +170787151504,213,0 +170787151554,213,0 +170787151602,213,0 +170787151650,213,0 +170787151698,214,0 +170787151747,213,0 +170787151795,214,0 +170787151843,214,0 +170787151893,214,0 +170787151941,214,0 +170787151990,213,0 +170787152038,213,0 +170787152086,213,0 +170787152135,213,0 +170787152183,213,0 +170787152231,213,0 +170787152279,213,0 +170787152329,213,0 +170787152377,213,0 +170787152426,213,0 +170787152474,213,0 +170787152524,214,0 +170787152571,214,0 +170787152619,214,0 +170787152667,214,0 +170787152717,214,0 +170787152766,213,0 +170787152816,214,0 +170787152864,214,0 +170787152913,213,0 +170787152961,213,0 +170787153009,213,0 +170787153059,213,0 +170787153108,213,0 +170787153158,213,0 +170787153206,213,0 +170787153254,213,0 +170787153301,213,0 +170787153349,213,0 +170787153397,213,0 +170787153445,213,0 +170787153493,213,0 +170787153543,213,0 +170787153591,214,0 +170787153640,214,0 +170787153688,214,0 +170787153737,214,0 +170787153785,213,0 +170787153833,213,0 +170787153881,213,0 +170787153929,213,0 +170787153979,213,0 +170787154027,213,0 +170787154075,213,0 +170787154123,213,0 +170787154171,213,0 +170787154220,213,0 +170787154268,213,0 +170787154316,213,0 +170787154364,213,0 +170787154412,214,0 +170787154461,214,0 +170787154509,213,0 +170787154559,214,0 +170787154608,214,0 +170787154658,214,0 +170787154707,213,0 +170787154755,213,0 +170787154805,213,0 +170787154853,213,0 +170787154901,213,0 +170787154949,213,0 +170787154997,213,0 +170787155046,213,0 +170787155094,214,0 +170787155144,214,0 +170787155192,214,0 +170787155240,214,0 +170787155287,214,0 +170787155335,214,0 +170787155385,214,0 +170787155434,214,0 +170787155482,214,0 +170787155530,214,0 +170787155578,214,0 +170787155628,213,0 +170787155675,213,0 +170787155725,213,0 +170787155773,213,0 +170787155821,213,0 +170787155869,213,0 +170787155917,213,0 +170787155965,213,0 +170787156013,214,0 +170787156061,213,0 +170787156109,214,0 +170787156157,214,0 +170787156206,214,0 +170787156256,214,0 +170787156305,214,0 +170787156353,214,0 +170787156401,214,0 +170787156449,214,0 +170787156499,213,0 +170787156547,213,0 +170787156596,213,0 +170787156644,213,0 +170787156692,213,0 +170787156740,213,0 +170787156788,213,0 +170787156836,214,0 +170787156884,214,0 +170787156932,214,0 +170787156980,214,0 +170787157029,214,0 +170787157077,214,0 +170787157125,214,0 +170787157174,214,0 +170787157222,214,0 +170787157270,214,0 +170787157318,214,0 +170787157366,214,0 +170787157416,213,0 +170787157464,213,0 +170787157511,213,0 +170787157559,213,0 +170787157609,213,0 +170787157657,213,0 +170787157706,213,0 +170787157754,213,0 +170787157804,213,0 +170787157852,213,0 +170787157900,214,0 +170787157949,214,0 +170787157997,214,0 +170787158045,214,0 +170787158095,214,0 +170787158144,214,0 +170787158192,214,0 +170787158240,213,0 +170787158289,213,0 +170787158339,213,0 +170787158389,213,0 +170787158438,213,0 +170787158487,213,0 +170787158537,213,0 +170787158586,213,0 +170787158634,213,0 +170787158682,213,0 +170787158732,213,0 +170787158780,213,0 +170787158829,213,0 +170787158877,213,0 +170787158927,213,0 +170787158976,214,0 +170787159026,213,0 +170787159075,214,0 +170787159123,214,0 +170787159173,214,0 +170787159221,213,0 +170787159269,213,0 +170787159316,213,0 +170787159366,213,0 +170787159415,213,0 +170787159463,213,0 +170787159511,213,0 +170787159559,213,0 +170787159607,213,0 +170787159655,213,0 +170787159705,213,0 +170787159753,213,0 +170787159800,213,0 +170787159848,213,0 +170787159898,213,0 +170787159946,214,0 +170787159994,214,0 +170787160043,214,0 +170787160093,214,0 +170787160141,213,0 +170787160188,213,0 +170787160237,213,0 +170787160286,213,0 +170787160334,213,0 +170787160382,213,0 +170787160430,213,0 +170787160479,213,0 +170787160529,213,0 +170787160577,213,0 +170787160625,213,0 +170787160674,214,0 +170787160724,214,0 +170787160772,214,0 +170787160820,214,0 +170787160867,214,0 +170787160915,214,0 +170787160963,214,0 +170787161013,213,0 +170787161061,213,0 +170787161110,213,0 +170787161158,213,0 +170787161206,213,0 +170787161254,213,0 +170787161303,213,0 +170787161351,213,0 +170787161399,213,0 +170787161449,213,0 +170787161496,213,0 +170787161544,213,0 +170787161592,213,0 +170787161642,213,0 +170787161690,213,0 +170787161738,214,0 +170787161787,214,0 +170787161837,214,0 +170787161885,214,0 +170787161934,213,0 +170787161982,213,0 +170787162030,213,0 +170787162078,213,0 +170787162126,213,0 +170787162174,213,0 +170787162222,213,0 +170787162271,213,0 +170787162319,213,0 +170787162367,213,0 +170787162415,213,0 +170787162463,213,0 +170787162511,213,0 +170787162559,213,0 +170787162607,213,0 +170787162655,213,0 +170787162704,214,0 +170787162752,213,0 +170787162800,213,0 +170787162848,213,0 +170787162897,213,0 +170787162947,213,0 +170787162997,213,0 +170787163044,213,0 +170787163092,213,0 +170787163140,213,0 +170787163188,213,0 +170787163236,213,0 +170787163284,213,0 +170787163332,213,0 +170787163380,213,0 +170787163428,213,0 +170787163477,213,0 +170787163527,214,0 +170787163575,213,0 +170787163623,213,0 +170787163671,214,0 +170787163719,213,0 +170787163767,213,0 +170787163814,213,0 +170787163862,213,0 +170787163912,213,0 +170787163960,213,0 +170787164008,213,0 +170787164056,213,0 +170787164105,213,0 +170787164153,213,0 +170787164201,213,0 +170787164249,214,0 +170787164297,214,0 +170787164346,214,0 +170787164396,214,0 +170787164444,214,0 +170787164492,214,0 +170787164541,214,0 +170787164591,214,0 +170787164640,214,0 +170787164690,213,0 +170787164738,213,0 +170787164786,213,0 +170787164834,213,0 +170787164882,213,0 +170787164930,213,0 +170787164979,213,0 +170787165027,213,0 +170787165075,214,0 +170787165123,214,0 +170787165172,214,0 +170787165220,214,0 +170787165270,214,0 +170787165318,214,0 +170787165366,214,0 +170787165414,214,0 +170787165462,214,0 +170787165509,214,0 +170787165557,214,0 +170787165605,213,0 +170787165655,213,0 +170787165703,213,0 +170787165751,213,0 +170787165799,213,0 +170787165848,213,0 +170787165898,213,0 +170787165946,213,0 +170787165994,214,0 +170787166042,214,0 +170787166091,214,0 +170787166141,214,0 +170787166189,214,0 +170787166237,214,0 +170787166286,214,0 +170787166334,214,0 +170787166382,214,0 +170787166430,214,0 +170787166478,214,0 +170787166527,213,0 +170787166577,213,0 +170787166625,213,0 +170787166672,213,0 +170787166720,213,0 +170787166768,213,0 +170787166816,213,0 +170787166865,213,0 +170787166913,213,0 +170787166961,213,0 +170787167009,213,0 +170787167059,214,0 +170787167108,213,0 +170787167156,214,0 +170787167204,214,0 +170787167252,214,0 +170787167300,214,0 +170787167349,214,0 +170787167397,213,0 +170787167445,213,0 +170787167493,213,0 +170787167541,213,0 +170787167589,213,0 +170787167637,213,0 +170787167685,213,0 +170787167734,213,0 +170787167782,213,0 +170787167830,213,0 +170787167878,213,0 +170787167926,214,0 +170787167975,214,0 +170787168023,214,0 +170787168073,214,0 +170787168122,214,0 +170787168170,214,0 +170787168220,214,0 +170787168268,214,0 +170787168316,213,0 +170787168364,213,0 +170787168411,213,0 +170787168461,213,0 +170787168509,213,0 +170787168557,213,0 +170787168606,213,0 +170787168654,213,0 +170787168702,213,0 +170787168750,213,0 +170787168797,214,0 +170787168845,213,0 +170787168893,214,0 +170787168941,214,0 +170787168989,214,0 +170787169037,214,0 +170787169084,214,0 +170787169132,214,0 +170787169180,214,0 +170787169228,213,0 +170787169276,213,0 +170787169324,213,0 +170787169372,213,0 +170787169421,213,0 +170787169471,213,0 +170787169518,213,0 +170787169568,213,0 +170787169616,213,0 +170787169664,213,0 +170787169713,214,0 +170787169761,213,0 +170787169809,214,0 +170787169857,214,0 +170787169905,214,0 +170787169953,214,0 +170787170001,214,0 +170787170049,213,0 +170787170098,214,0 +170787170146,213,0 +170787170194,213,0 +170787170244,213,0 +170787170292,213,0 +170787170341,213,0 +170787170389,213,0 +170787170437,213,0 +170787170485,213,0 +170787170533,213,0 +170787170581,214,0 +170787170629,214,0 +170787170678,214,0 +170787170726,214,0 +170787170776,214,0 +170787170824,214,0 +170787170873,214,0 +170787170921,214,0 +170787170969,214,0 +170787171017,214,0 +170787171065,213,0 +170787171114,213,0 +170787171164,213,0 +170787171213,213,0 +170787171261,213,0 +170787171309,213,0 +170787171358,213,0 +170787171406,213,0 +170787171454,213,0 +170787171502,214,0 +170787171551,214,0 +170787171599,214,0 +170787171649,214,0 +170787171697,214,0 +170787171745,214,0 +170787171793,214,0 +170787171841,214,0 +170787171890,214,0 +170787171938,214,0 +170787171986,213,0 +170787172034,213,0 +170787172082,213,0 +170787172130,213,0 +170787172178,213,0 +170787172225,213,0 +170787172273,213,0 +170787172323,213,0 +170787172371,213,0 +170787172419,214,0 +170787172468,214,0 +170787172516,214,0 +170787172564,214,0 +170787172612,214,0 +170787172660,214,0 +170787172708,214,0 +170787172757,214,0 +170787172805,214,0 +170787172853,214,0 +170787172901,213,0 +170787172949,213,0 +170787172997,213,0 +170787173046,213,0 +170787173096,213,0 +170787173145,213,0 +170787173193,213,0 +170787173241,213,0 +170787173289,213,0 +170787173337,213,0 +170787173385,214,0 +170787173433,214,0 +170787173481,214,0 +170787173529,214,0 +170787173577,214,0 +170787173626,214,0 +170787173674,214,0 +170787173724,214,0 +170787173772,214,0 +170787173820,213,0 +170787173868,213,0 +170787173915,213,0 +170787173963,213,0 +170787174011,213,0 +170787174061,213,0 +170787174109,213,0 +170787174156,213,0 +170787174204,213,0 +170787174254,213,0 +170787174302,213,0 +170787174351,213,0 +170787174399,213,0 +170787174447,213,0 +170787174495,213,0 +170787174543,213,0 +170787174593,214,0 +170787174642,214,0 +170787174690,214,0 +170787174738,213,0 +170787174786,213,0 +170787174834,213,0 +170787174883,213,0 +170787174933,213,0 +170787174981,213,0 +170787175029,213,0 +170787175077,213,0 +170787175126,213,0 +170787175174,213,0 +170787175222,213,0 +170787175272,213,0 +170787175320,213,0 +170787175367,213,0 +170787175415,213,0 +170787175463,213,0 +170787175513,213,0 +170787175561,213,0 +170787175609,213,0 +170787175657,213,0 +170787175705,214,0 +170787175754,214,0 +170787175802,214,0 +170787175851,214,0 +170787175899,214,0 +170787175947,214,0 +170787175995,214,0 +170787176045,214,0 +170787176093,213,0 +170787176141,213,0 +170787176189,213,0 +170787176238,213,0 +170787176286,213,0 +170787176336,213,0 +170787176385,213,0 +170787176435,213,0 +170787176483,213,0 +170787176531,213,0 +170787176579,213,0 +170787176628,213,0 +170787176676,214,0 +170787176724,214,0 +170787176772,214,0 +170787176820,214,0 +170787176868,214,0 +170787176916,214,0 +170787176965,214,0 +170787177013,213,0 +170787177061,213,0 +170787177109,213,0 +170787177157,213,0 +170787177206,213,0 +170787177254,213,0 +170787177302,213,0 +170787177350,213,0 +170787177398,213,0 +170787177446,213,0 +170787177496,213,0 +170787177545,214,0 +170787177595,213,0 +170787177643,214,0 +170787177691,214,0 +170787177738,214,0 +170787177788,214,0 +170787177838,214,0 +170787177885,214,0 +170787177933,213,0 +170787177983,213,0 +170787178031,213,0 +170787178079,213,0 +170787178127,213,0 +170787178176,213,0 +170787178224,213,0 +170787178274,213,0 +170787178323,213,0 +170787178373,213,0 +170787178422,213,0 +170787178470,213,0 +170787178520,213,0 +170787178567,213,0 +170787178615,213,0 +170787178663,214,0 +170787178711,214,0 +170787178759,214,0 +170787178807,213,0 +170787178857,213,0 +170787178904,213,0 +170787178954,213,0 +170787179003,213,0 +170787179051,213,0 +170787179101,213,0 +170787179149,213,0 +170787179197,213,0 +170787179245,213,0 +170787179294,213,0 +170787179342,213,0 +170787179390,213,0 +170787179438,214,0 +170787179488,214,0 +170787179535,214,0 +170787179583,214,0 +170787179633,214,0 +170787179681,214,0 +170787179729,214,0 +170787179777,213,0 +170787179825,213,0 +170787179874,213,0 +170787179922,213,0 +170787179970,213,0 +170787180018,213,0 +170787180067,213,0 +170787180115,213,0 +170787180163,213,0 +170787180211,213,0 +170787180259,213,0 +170787180308,213,0 +170787180356,214,0 +170787180404,213,0 +170787180452,214,0 +170787180499,214,0 +170787180547,214,0 +170787180595,214,0 +170787180643,213,0 +170787180691,213,0 +170787180739,213,0 +170787180786,213,0 +170787180834,213,0 +170787180882,213,0 +170787180930,213,0 +170787180978,213,0 +170787181026,213,0 +170787181074,213,0 +170787181122,213,0 +170787181169,213,0 +170787181219,213,0 +170787181267,213,0 +170787181315,213,0 +170787181363,213,0 +170787181412,213,0 +170787181460,213,0 +170787181507,214,0 +170787181557,213,0 +170787181605,213,0 +170787181653,213,0 +170787181700,213,0 +170787181748,213,0 +170787181798,213,0 +170787181846,213,0 +170787181894,213,0 +170787181941,213,0 +170787181989,213,0 +170787182037,213,0 +170787182085,214,0 +170787182133,214,0 +170787182182,214,0 +170787182230,214,0 +170787182278,214,0 +170787182326,214,0 +170787182376,214,0 +170787182424,214,0 +170787182472,213,0 +170787182520,213,0 +170787182568,213,0 +170787182616,213,0 +170787182665,213,0 +170787182713,213,0 +170787182762,213,0 +170787182810,213,0 +170787182858,213,0 +170787182906,214,0 +170787182954,213,0 +170787183002,214,0 +170787183051,214,0 +170787183101,214,0 +170787183150,214,0 +170787183198,214,0 +170787183246,214,0 +170787183294,214,0 +170787183344,214,0 +170787183393,213,0 +170787183441,213,0 +170787183491,213,0 +170787183540,213,0 +170787183590,213,0 +170787183638,213,0 +170787183685,213,0 +170787183733,214,0 +170787183781,214,0 +170787183829,214,0 +170787183877,214,0 +170787183925,214,0 +170787183973,214,0 +170787184021,214,0 +170787184070,214,0 +170787184118,214,0 +170787184168,214,0 +170787184217,214,0 +170787184265,214,0 +170787184313,213,0 +170787184361,213,0 +170787184409,213,0 +170787184457,214,0 +170787184506,214,0 +170787184554,214,0 +170787184602,214,0 +170787184650,214,0 +170787184698,214,0 +170787184747,214,0 +170787184795,214,0 +170787184845,214,0 +170787184893,214,0 +170787184941,214,0 +170787184989,214,0 +170787185038,214,0 +170787185086,214,0 +170787185134,214,0 +170787185182,214,0 +170787185230,213,0 +170787185279,213,0 +170787185327,213,0 +170787185375,213,0 +170787185423,213,0 +170787185471,213,0 +170787185519,213,0 +170787185567,213,0 +170787185615,213,0 +170787185663,214,0 +170787185710,214,0 +170787185758,214,0 +170787185806,214,0 +170787185854,214,0 +170787185902,214,0 +170787185952,214,0 +170787186000,214,0 +170787186047,214,0 +170787186095,214,0 +170787186143,213,0 +170787186193,213,0 +170787186241,213,0 +170787186290,213,0 +170787186338,213,0 +170787186388,213,0 +170787186436,213,0 +170787186485,213,0 +170787186533,213,0 +170787186581,213,0 +170787186629,214,0 +170787186677,214,0 +170787186724,214,0 +170787186772,214,0 +170787186820,214,0 +170787186868,214,0 +170787186916,214,0 +170787186964,214,0 +170787187011,214,0 +170787187059,213,0 +170787187109,213,0 +170787187157,213,0 +170787187205,213,0 +170787187254,213,0 +170787187304,213,0 +170787187353,213,0 +170787187401,213,0 +170787187451,213,0 +170787187499,213,0 +170787187548,213,0 +170787187598,214,0 +170787187646,214,0 +170787187695,214,0 +170787187745,214,0 +170787187794,214,0 +170787187844,214,0 +170787187892,214,0 +170787187941,214,0 +170787187991,213,0 +170787188039,213,0 +170787188086,213,0 +170787188136,213,0 +170787188185,213,0 +170787188233,213,0 +170787188281,213,0 +170787188329,213,0 +170787188379,213,0 +170787188428,213,0 +170787188476,213,0 +170787188524,214,0 +170787188572,214,0 +170787188622,213,0 +170787188671,214,0 +170787188721,214,0 +170787188770,214,0 +170787188820,214,0 +170787188868,214,0 +170787188915,213,0 +170787188965,213,0 +170787189013,213,0 +170787189062,213,0 +170787189112,213,0 +170787189160,213,0 +170787189209,213,0 +170787189257,213,0 +170787189305,213,0 +170787189355,213,0 +170787189403,214,0 +170787189452,213,0 +170787189500,214,0 +170787189548,214,0 +170787189598,214,0 +170787189646,214,0 +170787189694,214,0 +170787189741,214,0 +170787189789,213,0 +170787189837,213,0 +170787189885,213,0 +170787189935,213,0 +170787189983,213,0 +170787190030,213,0 +170787190080,213,0 +170787190128,213,0 +170787190177,213,0 +170787190227,213,0 +170787190276,213,0 +170787190324,213,0 +170787190372,213,0 +170787190422,214,0 +170787190469,214,0 +170787190517,214,0 +170787190565,214,0 +170787190613,214,0 +170787190661,214,0 +170787190709,213,0 +170787190756,213,0 +170787190804,213,0 +170787190852,213,0 +170787190900,213,0 +170787190948,213,0 +170787190995,213,0 +170787191045,213,0 +170787191094,213,0 +170787191144,213,0 +170787191192,213,0 +170787191241,213,0 +170787191291,213,0 +170787191340,213,0 +170787191390,214,0 +170787191438,214,0 +170787191486,213,0 +170787191534,214,0 +170787191583,214,0 +170787191631,213,0 +170787191679,213,0 +170787191727,213,0 +170787191775,213,0 +170787191824,213,0 +170787191872,213,0 +170787191922,213,0 +170787191970,213,0 +170787192018,213,0 +170787192066,213,0 +170787192115,213,0 +170787192163,213,0 +170787192211,213,0 +170787192260,213,0 +170787192308,213,0 +170787192356,214,0 +170787192406,214,0 +170787192454,214,0 +170787192502,214,0 +170787192550,213,0 +170787192598,213,0 +170787192646,213,0 +170787192693,213,0 +170787192741,213,0 +170787192789,213,0 +170787192837,213,0 +170787192886,213,0 +170787192934,213,0 +170787192982,213,0 +170787193030,213,0 +170787193080,213,0 +170787193128,213,0 +170787193176,214,0 +170787193224,214,0 +170787193272,214,0 +170787193319,214,0 +170787193369,214,0 +170787193419,214,0 +170787193468,213,0 +170787193516,213,0 +170787193566,213,0 +170787193615,213,0 +170787193663,213,0 +170787193711,213,0 +170787193759,213,0 +170787193808,213,0 +170787193856,213,0 +170787193904,213,0 +170787193954,213,0 +170787194002,213,0 +170787194051,213,0 +170787194099,214,0 +170787194149,214,0 +170787194197,214,0 +170787194244,214,0 +170787194292,214,0 +170787194342,214,0 +170787194390,213,0 +170787194438,213,0 +170787194487,213,0 +170787194535,213,0 +170787194585,213,0 +170787194633,213,0 +170787194682,213,0 +170787194732,213,0 +170787194780,213,0 +170787194828,213,0 +170787194876,213,0 +170787194924,213,0 +170787194972,214,0 +170787195021,214,0 +170787195071,214,0 +170787195120,214,0 +170787195168,214,0 +170787195216,214,0 +170787195264,214,0 +170787195312,213,0 +170787195360,213,0 +170787195409,213,0 +170787195457,213,0 +170787195505,213,0 +170787195553,213,0 +170787195601,213,0 +170787195649,213,0 +170787195697,213,0 +170787195745,213,0 +170787195793,213,0 +170787195841,213,0 +170787195889,214,0 +170787195937,214,0 +170787195986,214,0 +170787196034,214,0 +170787196082,214,0 +170787196132,214,0 +170787196181,213,0 +170787196229,213,0 +170787196277,213,0 +170787196327,213,0 +170787196375,213,0 +170787196423,213,0 +170787196471,213,0 +170787196519,213,0 +170787196567,213,0 +170787196616,214,0 +170787196664,213,0 +170787196712,214,0 +170787196760,214,0 +170787196809,214,0 +170787196857,214,0 +170787196905,214,0 +170787196955,214,0 +170787197003,214,0 +170787197051,214,0 +170787197099,213,0 +170787197148,213,0 +170787197196,213,0 +170787197245,213,0 +170787197293,213,0 +170787197343,213,0 +170787197392,213,0 +170787197440,213,0 +170787197488,213,0 +170787197536,214,0 +170787197584,214,0 +170787197632,214,0 +170787197680,214,0 +170787197728,214,0 +170787197776,214,0 +170787197824,214,0 +170787197873,214,0 +170787197923,214,0 +170787197971,214,0 +170787198020,213,0 +170787198068,213,0 +170787198118,213,0 +170787198166,213,0 +170787198214,213,0 +170787198262,213,0 +170787198310,213,0 +170787198359,213,0 +170787198407,213,0 +170787198455,213,0 +170787198505,214,0 +170787198553,214,0 +170787198601,214,0 +170787198650,214,0 +170787198698,214,0 +170787198746,214,0 +170787198796,214,0 +170787198844,214,0 +170787198893,214,0 +170787198941,213,0 +170787198990,213,0 +170787199038,213,0 +170787199086,213,0 +170787199136,213,0 +170787199184,213,0 +170787199232,213,0 +170787199280,213,0 +170787199328,213,0 +170787199377,214,0 +170787199425,213,0 +170787199473,214,0 +170787199523,214,0 +170787199571,214,0 +170787199619,214,0 +170787199668,214,0 +170787199718,214,0 +170787199765,214,0 +170787199813,214,0 +170787199861,213,0 +170787199909,213,0 +170787199957,213,0 +170787200005,213,0 +170787200055,213,0 +170787200104,213,0 +170787200154,213,0 +170787200203,213,0 +170787200253,213,0 +170787200301,213,0 +170787200349,214,0 +170787200397,213,0 +170787200445,214,0 +170787200493,214,0 +170787200541,214,0 +170787200590,214,0 +170787200640,214,0 +170787200688,214,0 +170787200736,214,0 +170787200784,213,0 +170787200833,213,0 +170787200883,213,0 +170787200931,213,0 +170787200978,213,0 +170787201026,213,0 +170787201074,213,0 +170787201122,213,0 +170787201170,213,0 +170787201218,214,0 +170787201266,213,0 +170787201315,214,0 +170787201363,214,0 +170787201411,214,0 +170787201459,214,0 +170787201506,214,0 +170787201554,214,0 +170787201602,214,0 +170787201650,214,0 +170787201698,213,0 +170787201745,213,0 +170787201793,213,0 +170787201841,213,0 +170787201889,213,0 +170787201937,213,0 +170787201985,213,0 +170787202033,214,0 +170787202080,214,0 +170787202128,214,0 +170787202176,214,0 +170787202224,214,0 +170787202272,214,0 +170787202320,214,0 +170787202368,214,0 +170787202416,214,0 +170787202465,214,0 +170787202513,214,0 +170787202561,214,0 +170787202609,213,0 +170787202657,213,0 +170787202707,213,0 +170787202756,213,0 +170787202804,213,0 +170787202852,214,0 +170787202900,214,0 +170787202948,214,0 +170787202996,214,0 +170787203044,214,0 +170787203092,214,0 +170787203139,214,0 +170787203187,214,0 +170787203235,214,0 +170787203283,214,0 +170787203331,214,0 +170787203379,214,0 +170787203427,214,0 +170787203475,214,0 +170787203524,213,0 +170787203572,213,0 +170787203620,213,0 +170787203669,213,0 +170787203717,213,0 +170787203765,214,0 +170787203813,214,0 +170787203861,214,0 +170787203911,214,0 +170787203959,214,0 +170787204007,214,0 +170787204056,214,0 +170787204104,214,0 +170787204152,214,0 +170787204201,214,0 +170787204249,214,0 +170787204297,214,0 +170787204345,214,0 +170787204393,214,0 +170787204441,213,0 +170787204489,213,0 +170787204536,213,0 +170787204586,213,0 +170787204634,213,0 +170787204683,213,0 +170787204733,213,0 +170787204781,213,0 +170787204829,213,0 +170787204878,213,0 +170787204926,213,0 +170787204976,214,0 +170787205024,214,0 +170787205071,214,0 +170787205119,214,0 +170787205167,214,0 +170787205215,214,0 +170787205265,214,0 +170787205313,213,0 +170787205360,213,0 +170787205408,213,0 +170787205456,213,0 +170787205504,213,0 +170787205552,213,0 +170787205600,213,0 +170787205648,213,0 +170787205696,213,0 +170787205744,213,0 +170787205793,213,0 +170787205841,213,0 +170787205889,214,0 +170787205937,214,0 +170787205986,214,0 +170787206034,214,0 +170787206082,214,0 +170787206132,214,0 +170787206180,214,0 +170787206227,213,0 +170787206275,213,0 +170787206323,213,0 +170787206371,213,0 +170787206419,213,0 +170787206467,213,0 +170787206517,213,0 +170787206566,213,0 +170787206614,213,0 +170787206663,213,0 +170787206711,213,0 +170787206761,213,0 +170787206809,214,0 +170787206857,214,0 +170787206906,214,0 +170787206956,214,0 +170787207003,214,0 +170787207051,214,0 +170787207101,214,0 +170787207149,213,0 +170787207198,213,0 +170787207246,213,0 +170787207294,213,0 +170787207344,213,0 +170787207392,213,0 +170787207440,213,0 +170787207488,213,0 +170787207536,213,0 +170787207585,213,0 +170787207635,213,0 +170787207683,213,0 +170787207730,213,0 +170787207778,214,0 +170787207826,214,0 +170787207874,214,0 +170787207922,214,0 +170787207969,214,0 +170787208017,214,0 +170787208065,213,0 +170787208114,213,0 +170787208162,213,0 +170787208210,213,0 +170787208258,213,0 +170787208306,213,0 +170787208355,213,0 +170787208403,213,0 +170787208451,213,0 +170787208499,213,0 +170787208547,213,0 +170787208595,213,0 +170787208643,214,0 +170787208691,214,0 +170787208740,214,0 +170787208788,214,0 +170787208836,214,0 +170787208884,214,0 +170787208933,214,0 +170787208981,213,0 +170787209029,213,0 +170787209078,213,0 +170787209126,213,0 +170787209174,213,0 +170787209224,213,0 +170787209273,213,0 +170787209321,213,0 +170787209369,213,0 +170787209417,214,0 +170787209465,214,0 +170787209515,214,0 +170787209564,214,0 +170787209614,214,0 +170787209661,214,0 +170787209711,214,0 +170787209759,214,0 +170787209807,214,0 +170787209856,213,0 +170787209904,213,0 +170787209952,213,0 +170787210000,213,0 +170787210050,213,0 +170787210098,213,0 +170787210147,213,0 +170787210195,213,0 +170787210243,213,0 +170787210291,213,0 +170787210340,213,0 +170787210388,214,0 +170787210436,214,0 +170787210486,214,0 +170787210534,214,0 +170787210581,214,0 +170787210629,214,0 +170787210677,214,0 +170787210725,214,0 +170787210773,214,0 +170787210821,213,0 +170787210870,213,0 +170787210918,213,0 +170787210966,213,0 +170787211014,213,0 +170787211062,213,0 +170787211110,213,0 +170787211157,213,0 +170787211205,213,0 +170787211255,214,0 +170787211304,213,0 +170787211354,214,0 +170787211404,214,0 +170787211452,214,0 +170787211499,214,0 +170787211547,214,0 +170787211595,214,0 +170787211643,214,0 +170787211691,213,0 +170787211741,213,0 +170787211789,213,0 +170787211837,213,0 +170787211884,213,0 +170787211932,213,0 +170787211980,213,0 +170787212028,213,0 +170787212076,213,0 +170787212126,213,0 +170787212174,213,0 +170787212223,213,0 +170787212271,214,0 +170787212319,213,0 +170787212369,213,0 +170787212416,214,0 +170787212464,214,0 +170787212514,214,0 +170787212563,214,0 +170787212611,213,0 +170787212661,213,0 +170787212708,213,0 +170787212756,213,0 +170787212804,213,0 +170787212852,213,0 +170787212900,213,0 +170787212948,213,0 +170787212996,213,0 +170787213044,214,0 +170787213092,213,0 +170787213140,214,0 +170787213188,214,0 +170787213236,214,0 +170787213285,214,0 +170787213333,214,0 +170787213381,214,0 +170787213430,214,0 +170787213478,213,0 +170787213526,213,0 +170787213574,213,0 +170787213624,213,0 +170787213672,213,0 +170787213720,213,0 +170787213768,213,0 +170787213815,213,0 +170787213863,213,0 +170787213913,213,0 +170787213962,213,0 +170787214010,214,0 +170787214060,213,0 +170787214108,214,0 +170787214156,213,0 +170787214203,213,0 +170787214251,214,0 +170787214299,214,0 +170787214347,214,0 +170787214395,214,0 +170787214442,213,0 +170787214490,213,0 +170787214538,213,0 +170787214586,213,0 +170787214634,213,0 +170787214682,213,0 +170787214730,213,0 +170787214778,213,0 +170787214825,213,0 +170787214875,213,0 +170787214923,213,0 +170787214971,214,0 +170787215019,214,0 +170787215067,214,0 +170787215114,214,0 +170787215162,214,0 +170787215210,214,0 +170787215260,214,0 +170787215308,214,0 +170787215357,213,0 +170787215405,213,0 +170787215453,213,0 +170787215502,213,0 +170787215552,213,0 +170787215600,213,0 +170787215648,213,0 +170787215697,213,0 +170787215747,213,0 +170787215795,213,0 +170787215844,213,0 +170787215892,213,0 +170787215940,213,0 +170787215988,213,0 +170787216036,213,0 +170787216084,214,0 +170787216132,214,0 +170787216181,214,0 +170787216229,214,0 +170787216279,213,0 +170787216328,213,0 +170787216378,213,0 +170787216426,213,0 +170787216475,213,0 +170787216525,213,0 +170787216573,213,0 +170787216621,213,0 +170787216669,213,0 +170787216718,213,0 +170787216766,213,0 +170787216815,214,0 +170787216863,213,0 +170787216911,214,0 +170787216961,214,0 +170787217009,214,0 +170787217057,214,0 +170787217106,214,0 +170787217154,214,0 +170787217202,213,0 +170787217252,213,0 +170787217299,213,0 +170787217349,213,0 +170787217398,213,0 +170787217448,213,0 +170787217496,213,0 +170787217544,213,0 +170787217592,213,0 +170787217639,213,0 +170787217687,213,0 +170787217737,213,0 +170787217785,214,0 +170787217833,213,0 +170787217882,213,0 +170787217930,214,0 +170787217978,214,0 +170787218026,214,0 +170787218073,214,0 +170787218121,213,0 +170787218169,213,0 +170787218217,213,0 +170787218265,213,0 +170787218312,213,0 +170787218360,213,0 +170787218408,213,0 +170787218456,213,0 +170787218504,213,0 +170787218551,213,0 +170787218599,213,0 +170787218647,213,0 +170787218695,213,0 +170787218743,213,0 +170787218791,213,0 +170787218839,213,0 +170787218888,214,0 +170787218936,214,0 +170787218986,214,0 +170787219033,213,0 +170787219081,213,0 +170787219129,213,0 +170787219177,213,0 +170787219225,213,0 +170787219274,213,0 +170787219322,213,0 +170787219372,213,0 +170787219420,214,0 +170787219468,213,0 +170787219516,213,0 +170787219563,213,0 +170787219611,213,0 +170787219659,214,0 +170787219707,214,0 +170787219755,214,0 +170787219805,214,0 +170787219853,214,0 +170787219902,214,0 +170787219950,213,0 +170787219998,213,0 +170787220046,213,0 +170787220095,213,0 +170787220145,213,0 +170787220192,213,0 +170787220240,213,0 +170787220288,213,0 +170787220336,214,0 +170787220384,213,0 +170787220432,214,0 +170787220480,214,0 +170787220528,214,0 +170787220576,214,0 +170787220625,214,0 +170787220673,214,0 +170787220721,214,0 +170787220770,214,0 +170787220820,214,0 +170787220868,213,0 +170787220916,213,0 +170787220963,213,0 +170787221011,213,0 +170787221061,213,0 +170787221109,213,0 +170787221157,213,0 +170787221205,214,0 +170787221253,214,0 +170787221301,214,0 +170787221349,214,0 +170787221396,214,0 +170787221444,214,0 +170787221494,214,0 +170787221542,214,0 +170787221590,214,0 +170787221638,214,0 +170787221685,214,0 +170787221735,214,0 +170787221784,213,0 +170787221832,213,0 +170787221880,213,0 +170787221930,213,0 +170787221978,214,0 +170787222026,214,0 +170787222073,214,0 +170787222121,214,0 +170787222169,214,0 +170787222219,214,0 +170787222268,214,0 +170787222316,214,0 +170787222364,214,0 +170787222413,214,0 +170787222461,214,0 +170787222509,214,0 +170787222559,214,0 +170787222607,214,0 +170787222656,213,0 +170787222706,213,0 +170787222755,213,0 +170787222805,213,0 +170787222854,213,0 +170787222902,213,0 +170787222950,214,0 +170787222998,214,0 +170787223048,213,0 +170787223095,213,0 +170787223145,214,0 +170787223193,214,0 +170787223241,214,0 +170787223289,214,0 +170787223336,214,0 +170787223384,214,0 +170787223434,214,0 +170787223482,214,0 +170787223530,214,0 +170787223579,213,0 +170787223627,213,0 +170787223675,213,0 +170787223723,213,0 +170787223771,213,0 +170787223819,213,0 +170787223868,213,0 +170787223916,214,0 +170787223966,213,0 +170787224015,214,0 +170787224065,213,0 +170787224113,214,0 +170787224161,214,0 +170787224210,214,0 +170787224258,214,0 +170787224306,214,0 +170787224354,214,0 +170787224402,214,0 +170787224451,214,0 +170787224499,214,0 +170787224548,213,0 +170787224596,213,0 +170787224646,213,0 +170787224695,213,0 +170787224743,213,0 +170787224791,213,0 +170787224839,213,0 +170787224887,213,0 +170787224937,213,0 +170787224986,214,0 +170787225034,214,0 +170787225082,214,0 +170787225130,214,0 +170787225178,214,0 +170787225226,214,0 +170787225276,214,0 +170787225325,214,0 +170787225373,214,0 +170787225421,213,0 +170787225470,213,0 +170787225518,213,0 +170787225566,213,0 +170787225614,213,0 +170787225663,213,0 +170787225711,213,0 +170787225759,213,0 +170787225808,213,0 +170787225858,213,0 +170787225906,213,0 +170787225955,214,0 +170787226003,214,0 +170787226051,214,0 +170787226099,214,0 +170787226149,214,0 +170787226197,214,0 +170787226245,214,0 +170787226293,214,0 +170787226341,213,0 +170787226390,213,0 +170787226440,213,0 +170787226489,213,0 +170787226539,213,0 +170787226587,213,0 +170787226636,213,0 +170787226686,213,0 +170787226735,213,0 +170787226783,213,0 +170787226831,214,0 +170787226880,214,0 +170787226928,214,0 +170787226978,214,0 +170787227026,214,0 +170787227074,214,0 +170787227121,214,0 +170787227169,214,0 +170787227217,214,0 +170787227265,213,0 +170787227315,213,0 +170787227363,213,0 +170787227411,213,0 +170787227458,213,0 +170787227506,213,0 +170787227554,213,0 +170787227602,213,0 +170787227650,213,0 +170787227698,213,0 +170787227745,213,0 +170787227793,213,0 +170787227841,213,0 +170787227889,213,0 +170787227937,213,0 +170787227985,214,0 +170787228033,214,0 +170787228080,214,0 +170787228128,214,0 +170787228178,214,0 +170787228227,213,0 +170787228277,213,0 +170787228326,213,0 +170787228376,213,0 +170787228425,213,0 +170787228473,213,0 +170787228521,213,0 +170787228569,213,0 +170787228616,213,0 +170787228664,213,0 +170787228712,214,0 +170787228760,214,0 +170787228808,214,0 +170787228856,214,0 +170787228904,214,0 +170787228951,214,0 +170787229001,214,0 +170787229050,214,0 +170787229098,213,0 +170787229148,213,0 +170787229196,213,0 +170787229245,213,0 +170787229293,213,0 +170787229341,213,0 +170787229389,213,0 +170787229437,213,0 +170787229485,213,0 +170787229533,213,0 +170787229581,213,0 +170787229629,214,0 +170787229677,214,0 +170787229725,214,0 +170787229774,213,0 +170787229824,214,0 +170787229872,214,0 +170787229919,214,0 +170787229967,214,0 +170787230015,213,0 +170787230063,213,0 +170787230111,213,0 +170787230158,213,0 +170787230206,213,0 +170787230254,213,0 +170787230304,213,0 +170787230353,213,0 +170787230403,213,0 +170787230451,213,0 +170787230498,213,0 +170787230546,214,0 +170787230594,214,0 +170787230642,214,0 +170787230690,213,0 +170787230738,214,0 +170787230788,214,0 +170787230835,213,0 +170787230883,214,0 +170787230933,214,0 +170787230981,213,0 +170787231030,213,0 +170787231078,213,0 +170787231126,213,0 +170787231174,213,0 +170787231222,213,0 +170787231271,213,0 +170787231319,213,0 +170787231367,213,0 +170787231415,213,0 +170787231463,213,0 +170787231511,214,0 +170787231559,213,0 +170787231608,214,0 +170787231656,214,0 +170787231704,214,0 +170787231752,214,0 +170787231801,214,0 +170787231849,214,0 +170787231897,213,0 +170787231945,213,0 +170787231993,213,0 +170787232041,213,0 +170787232090,213,0 +170787232138,213,0 +170787232188,213,0 +170787232236,213,0 +170787232283,213,0 +170787232333,213,0 +170787232382,213,0 +170787232432,213,0 +170787232480,213,0 +170787232529,213,0 +170787232577,214,0 +170787232627,214,0 +170787232676,214,0 +170787232726,214,0 +170787232774,214,0 +170787232821,213,0 +170787232869,213,0 +170787232917,213,0 +170787232965,213,0 +170787233013,213,0 +170787233061,213,0 +170787233109,213,0 +170787233157,213,0 +170787233206,213,0 +170787233254,213,0 +170787233302,213,0 +170787233350,213,0 +170787233398,214,0 +170787233445,214,0 +170787233493,214,0 +170787233541,214,0 +170787233589,214,0 +170787233637,214,0 +170787233685,213,0 +170787233733,213,0 +170787233782,213,0 +170787233830,213,0 +170787233878,213,0 +170787233926,213,0 +170787233974,213,0 +170787234022,213,0 +170787234070,213,0 +170787234117,213,0 +170787234165,213,0 +170787234213,214,0 +170787234261,214,0 +170787234309,214,0 +170787234357,214,0 +170787234406,214,0 +170787234454,214,0 +170787234504,214,0 +170787234552,214,0 +170787234600,214,0 +170787234648,213,0 +170787234696,213,0 +170787234744,213,0 +170787234793,213,0 +170787234843,213,0 +170787234892,213,0 +170787234940,213,0 +170787234990,213,0 +170787235037,213,0 +170787235087,213,0 +170787235135,213,0 +170787235184,214,0 +170787235232,213,0 +170787235280,214,0 +170787235328,214,0 +170787235378,214,0 +170787235425,214,0 +170787235473,214,0 +170787235521,214,0 +170787235569,213,0 +170787235617,213,0 +170787235665,213,0 +170787235713,213,0 +170787235761,213,0 +170787235809,213,0 +170787235857,213,0 +170787235904,213,0 +170787235952,213,0 +170787236000,213,0 +170787236048,213,0 +170787236096,214,0 +170787236144,214,0 +170787236191,214,0 +170787236239,213,0 +170787236287,214,0 +170787236335,214,0 +170787236383,214,0 +170787236431,214,0 +170787236479,213,0 +170787236527,213,0 +170787236575,213,0 +170787236622,213,0 +170787236670,213,0 +170787236718,213,0 +170787236766,213,0 +170787236814,213,0 +170787236862,213,0 +170787236909,213,0 +170787236957,213,0 +170787237005,213,0 +170787237054,213,0 +170787237102,213,0 +170787237152,214,0 +170787237199,213,0 +170787237247,214,0 +170787237295,214,0 +170787237343,214,0 +170787237391,213,0 +170787237440,213,0 +170787237488,213,0 +170787237536,213,0 +170787237584,213,0 +170787237632,213,0 +170787237680,213,0 +170787237729,213,0 +170787237779,213,0 +170787237827,213,0 +170787237875,213,0 +170787237924,213,0 +170787237974,213,0 +170787238021,213,0 +170787238071,213,0 +170787238119,213,0 +170787238167,213,0 +170787238214,213,0 +170787238262,214,0 +170787238312,213,0 +170787238360,213,0 +170787238407,213,0 +170787238455,213,0 +170787238503,213,0 +170787238551,213,0 +170787238599,213,0 +170787238647,213,0 +170787238695,213,0 +170787238742,213,0 +170787238790,213,0 +170787238838,213,0 +170787238886,213,0 +170787238934,214,0 +170787238982,213,0 +170787239029,213,0 +170787239077,214,0 +170787239125,214,0 +170787239173,214,0 +170787239221,213,0 +170787239269,213,0 +170787239317,213,0 +170787239364,213,0 +170787239414,213,0 +170787239462,213,0 +170787239509,213,0 +170787239557,213,0 +170787239605,213,0 +170787239653,213,0 +170787239701,213,0 +170787239750,214,0 +170787239798,214,0 +170787239846,214,0 +170787239894,214,0 +170787239942,214,0 +170787239989,214,0 diff --git a/laser_value/0214-11.csv b/laser_value/0214-11.csv new file mode 100644 index 0000000..b9b12b1 --- /dev/null +++ b/laser_value/0214-11.csv @@ -0,0 +1,4593 @@ +timestamp,laser_value,event +1707873781,213,0 +1707873781,213,0 +1707873782,213,0 +1707873782,213,0 +1707873783,213,0 +1707873783,213,0 +1707873784,214,0 +1707873784,213,0 +1707873785,213,0 +1707873785,213,0 +1707873786,213,0 +1707873786,213,0 +1707873787,213,0 +1707873787,213,0 +1707873788,213,0 +1707873788,213,0 +1707873789,213,0 +1707873789,213,0 +1707873790,213,0 +1707873790,213,0 +1707873791,213,0 +1707873791,213,0 +1707873792,213,0 +1707873792,214,0 +1707873793,213,0 +1707873793,213,0 +1707873794,214,0 +1707873794,213,0 +1707873795,213,0 +1707873795,213,0 +1707873796,213,0 +1707873796,213,0 +1707873797,213,0 +1707873797,213,0 +1707873798,213,0 +1707873798,213,0 +1707873798,213,0 +1707873799,213,0 +1707873799,213,0 +1707873800,213,0 +1707873800,213,0 +1707873801,213,0 +1707873801,214,0 +1707873802,214,0 +1707873802,214,0 +1707873803,214,0 +1707873803,213,0 +1707873804,213,0 +1707873804,212,0 +1707873805,213,0 +1707873805,213,0 +1707873806,213,0 +1707873806,213,0 +1707873807,213,0 +1707873807,213,0 +1707873808,213,0 +1707873808,213,0 +1707873809,213,0 +1707873809,213,0 +1707873810,213,0 +1707873810,213,0 +1707873811,214,0 +1707873811,213,0 +1707873811,214,0 +1707873812,213,0 +1707873812,213,0 +1707873813,213,0 +1707873813,213,0 +1707873814,213,0 +1707873814,213,0 +1707873815,213,0 +1707873815,213,0 +1707873816,213,0 +1707873816,213,0 +1707873817,213,0 +1707873817,213,0 +1707873818,213,0 +1707873818,213,0 +1707873819,213,0 +1707873819,213,0 +1707873820,213,0 +1707873820,213,0 +1707873821,214,0 +1707873821,214,0 +1707873822,213,0 +1707873822,213,0 +1707873823,213,0 +1707873823,213,0 +1707873824,213,0 +1707873824,213,0 +1707873825,213,0 +1707873825,213,0 +1707873826,213,0 +1707873826,213,0 +1707873827,213,0 +1707873827,213,0 +1707873827,213,0 +1707873828,213,0 +1707873828,213,0 +1707873829,214,0 +1707873829,213,0 +1707873830,214,0 +1707873830,213,0 +1707873831,213,0 +1707873831,213,0 +1707873832,213,0 +1707873832,213,0 +1707873833,213,0 +1707873833,213,0 +1707873834,213,0 +1707873834,213,0 +1707873835,213,0 +1707873835,213,0 +1707873836,213,0 +1707873836,213,0 +1707873837,213,0 +1707873837,213,0 +1707873838,213,0 +1707873838,213,0 +1707873839,213,0 +1707873839,214,0 +1707873840,214,0 +1707873840,213,0 +1707873840,213,0 +1707873841,213,0 +1707873841,213,0 +1707873842,213,0 +1707873842,213,0 +1707873843,213,0 +1707873843,213,0 +1707873844,213,0 +1707873844,213,0 +1707873845,213,0 +1707873845,213,0 +1707873846,213,0 +1707873846,213,0 +1707873847,213,0 +1707873847,213,0 +1707873848,214,0 +1707873848,214,0 +1707873849,214,0 +1707873849,213,0 +1707873850,213,0 +1707873850,213,0 +1707873851,213,0 +1707873851,213,0 +1707873852,213,0 +1707873852,213,0 +1707873853,213,0 +1707873853,213,0 +1707873854,213,0 +1707873854,213,0 +1707873854,213,0 +1707873855,214,0 +1707873855,213,0 +1707873856,214,0 +1707873856,214,0 +1707873857,214,0 +1707873857,214,0 +1707873858,214,0 +1707873858,213,0 +1707873859,213,0 +1707873859,213,0 +1707873860,213,0 +1707873860,213,0 +1707873861,213,0 +1707873861,213,0 +1707873862,213,0 +1707873862,213,0 +1707873863,213,0 +1707873863,213,0 +1707873864,213,0 +1707873864,213,0 +1707873865,214,0 +1707873865,214,0 +1707873866,214,0 +1707873866,214,0 +1707873867,214,0 +1707873867,213,0 +1707873868,213,0 +1707873868,213,0 +1707873868,213,0 +1707873869,213,0 +1707873869,213,0 +1707873870,213,0 +1707873870,213,0 +1707873871,213,0 +1707873871,213,0 +1707873872,213,0 +1707873872,213,0 +1707873873,213,0 +1707873873,213,0 +1707873874,214,0 +1707873874,213,0 +1707873875,214,0 +1707873875,214,0 +1707873876,214,0 +1707873876,214,0 +1707873877,213,0 +1707873877,213,0 +1707873878,213,0 +1707873878,213,0 +1707873879,213,0 +1707873879,213,0 +1707873880,213,0 +1707873880,213,0 +1707873881,213,0 +1707873881,213,0 +1707873882,213,0 +1707873882,213,0 +1707873882,213,0 +1707873883,213,0 +1707873883,213,0 +1707873884,213,0 +1707873884,214,0 +1707873885,213,0 +1707873885,214,0 +1707873886,214,0 +1707873886,213,0 +1707873887,213,0 +1707873887,213,0 +1707873888,213,0 +1707873888,213,0 +1707873889,213,0 +1707873889,213,0 +1707873890,213,0 +1707873890,213,0 +1707873891,213,0 +1707873891,213,0 +1707873892,213,0 +1707873892,214,0 +1707873893,213,0 +1707873893,213,0 +1707873894,213,0 +1707873894,214,0 +1707873895,214,0 +1707873895,213,0 +1707873896,213,0 +1707873896,213,0 +1707873897,213,0 +1707873897,213,0 +1707873897,213,0 +1707873898,213,0 +1707873898,213,0 +1707873899,213,0 +1707873899,213,0 +1707873900,213,0 +1707873900,213,0 +1707873901,213,0 +1707873901,214,0 +1707873902,214,0 +1707873902,214,0 +1707873903,214,0 +1707873903,214,0 +1707873904,214,0 +1707873904,214,0 +1707873905,213,0 +1707873905,213,0 +1707873906,213,0 +1707873906,213,0 +1707873907,213,0 +1707873907,213,0 +1707873908,213,0 +1707873908,213,0 +1707873909,213,0 +1707873909,213,0 +1707873910,213,0 +1707873910,214,0 +1707873911,214,0 +1707873911,214,0 +1707873911,214,0 +1707873912,214,0 +1707873912,214,0 +1707873913,214,0 +1707873913,213,0 +1707873914,213,0 +1707873914,213,0 +1707873915,213,0 +1707873915,213,0 +1707873916,213,0 +1707873916,213,0 +1707873917,213,0 +1707873917,214,0 +1707873918,214,0 +1707873918,213,0 +1707873919,214,0 +1707873919,214,0 +1707873920,214,0 +1707873920,214,0 +1707873921,214,0 +1707873921,214,0 +1707873922,214,0 +1707873922,214,0 +1707873923,213,0 +1707873923,213,0 +1707873924,213,0 +1707873924,213,0 +1707873925,213,0 +1707873925,213,0 +1707873926,213,0 +1707873926,214,0 +1707873927,214,0 +1707873927,214,0 +1707873928,214,0 +1707873928,214,0 +1707873929,214,0 +1707873929,214,0 +1707873930,214,0 +1707873930,214,0 +1707873930,214,0 +1707873931,214,0 +1707873931,214,0 +1707873932,213,0 +1707873932,213,0 +1707873933,213,0 +1707873933,213,0 +1707873934,213,0 +1707873934,214,0 +1707873935,213,0 +1707873935,214,0 +1707873936,213,0 +1707873936,214,0 +1707873937,214,0 +1707873937,214,0 +1707873938,214,0 +1707873938,214,0 +1707873939,214,0 +1707873939,214,0 +1707873940,214,0 +1707873940,214,0 +1707873941,214,0 +1707873941,214,0 +1707873942,213,0 +1707873942,213,0 +1707873943,213,0 +1707873943,213,0 +1707873944,213,0 +1707873944,214,0 +1707873945,213,0 +1707873945,214,0 +1707873945,214,0 +1707873946,214,0 +1707873946,214,0 +1707873947,214,0 +1707873947,214,0 +1707873948,214,0 +1707873948,214,0 +1707873949,214,0 +1707873949,214,0 +1707873950,214,0 +1707873950,213,0 +1707873951,213,0 +1707873951,213,0 +1707873952,213,0 +1707873952,213,0 +1707873953,213,0 +1707873953,213,0 +1707873954,213,0 +1707873954,213,0 +1707873955,213,0 +1707873955,214,0 +1707873956,214,0 +1707873956,213,0 +1707873957,214,0 +1707873957,213,0 +1707873958,214,0 +1707873958,214,0 +1707873959,214,0 +1707873959,214,0 +1707873959,213,0 +1707873960,213,0 +1707873960,213,0 +1707873961,213,0 +1707873961,213,0 +1707873962,213,0 +1707873962,213,0 +1707873963,213,0 +1707873963,213,0 +1707873964,213,0 +1707873964,213,0 +1707873965,213,0 +1707873965,213,0 +1707873966,214,0 +1707873966,213,0 +1707873967,214,0 +1707873967,214,0 +1707873968,214,0 +1707873968,214,0 +1707873969,213,0 +1707873969,213,0 +1707873970,213,0 +1707873970,213,0 +1707873971,213,0 +1707873971,213,0 +1707873972,213,0 +1707873972,213,0 +1707873973,213,0 +1707873973,213,0 +1707873974,213,0 +1707873974,213,0 +1707873975,213,0 +1707873975,213,0 +1707873975,213,0 +1707873976,214,0 +1707873976,214,0 +1707873977,214,0 +1707873977,214,0 +1707873978,214,0 +1707873978,213,0 +1707873979,213,0 +1707873979,213,0 +1707873980,213,0 +1707873980,213,0 +1707873981,213,0 +1707873981,213,0 +1707873982,213,0 +1707873982,213,0 +1707873983,213,0 +1707873983,213,0 +1707873984,214,0 +1707873984,214,0 +1707873985,214,0 +1707873985,214,0 +1707873986,214,0 +1707873986,214,0 +1707873987,214,0 +1707873987,213,0 +1707873988,213,0 +1707873988,213,0 +1707873989,213,0 +1707873989,213,0 +1707873989,213,0 +1707873990,213,0 +1707873990,213,0 +1707873991,213,0 +1707873991,213,0 +1707873992,213,0 +1707873992,213,0 +1707873993,213,0 +1707873993,213,0 +1707873994,214,0 +1707873994,214,0 +1707873995,214,0 +1707873995,214,0 +1707873996,213,0 +1707873996,214,0 +1707873997,213,0 +1707873997,213,0 +1707873998,213,0 +1707873998,213,0 +1707873999,213,0 +1707873999,213,0 +1707874000,213,0 +1707874000,213,0 +1707874001,213,0 +1707874001,213,0 +1707874002,213,0 +1707874002,213,0 +1707874003,213,0 +1707874003,213,0 +1707874003,213,0 +1707874004,213,0 +1707874004,214,0 +1707874005,214,0 +1707874005,214,0 +1707874006,213,0 +1707874006,213,0 +1707874007,213,0 +1707874007,213,0 +1707874008,213,0 +1707874008,213,0 +1707874009,213,0 +1707874009,213,0 +1707874010,213,0 +1707874010,213,0 +1707874011,213,0 +1707874011,214,0 +1707874012,213,0 +1707874012,213,0 +1707874013,214,0 +1707874013,214,0 +1707874014,214,0 +1707874014,214,0 +1707874015,214,0 +1707874015,213,0 +1707874016,213,0 +1707874016,213,0 +1707874017,213,0 +1707874017,213,0 +1707874018,213,0 +1707874018,213,0 +1707874019,213,0 +1707874019,213,0 +1707874019,213,0 +1707874020,214,0 +1707874020,214,0 +1707874021,213,0 +1707874021,214,0 +1707874022,214,0 +1707874022,214,0 +1707874023,214,0 +1707874023,214,0 +1707874024,213,0 +1707874024,213,0 +1707874025,213,0 +1707874025,213,0 +1707874026,213,0 +1707874026,213,0 +1707874027,213,0 +1707874027,213,0 +1707874028,213,0 +1707874028,213,0 +1707874029,213,0 +1707874029,214,0 +1707874030,213,0 +1707874030,214,0 +1707874031,214,0 +1707874031,214,0 +1707874032,214,0 +1707874032,214,0 +1707874033,214,0 +1707874033,213,0 +1707874034,213,0 +1707874034,213,0 +1707874035,213,0 +1707874035,213,0 +1707874035,213,0 +1707874036,213,0 +1707874036,213,0 +1707874037,213,0 +1707874037,213,0 +1707874038,214,0 +1707874038,214,0 +1707874039,214,0 +1707874039,214,0 +1707874040,214,0 +1707874040,214,0 +1707874041,214,0 +1707874041,214,0 +1707874042,214,0 +1707874042,214,0 +1707874043,213,0 +1707874043,213,0 +1707874044,213,0 +1707874044,213,0 +1707874045,213,0 +1707874045,213,0 +1707874046,213,0 +1707874046,213,0 +1707874047,213,0 +1707874047,213,0 +1707874048,213,0 +1707874048,213,0 +1707874049,213,0 +1707874049,213,0 +1707874050,214,0 +1707874050,214,0 +1707874050,214,0 +1707874051,214,0 +1707874051,213,0 +1707874052,213,0 +1707874052,213,0 +1707874053,213,0 +1707874053,213,0 +1707874054,213,0 +1707874054,213,0 +1707874055,213,0 +1707874055,213,0 +1707874056,213,0 +1707874056,213,0 +1707874057,213,0 +1707874057,213,0 +1707874058,213,0 +1707874058,214,0 +1707874059,214,0 +1707874059,214,0 +1707874060,214,0 +1707874060,214,0 +1707874061,214,0 +1707874061,213,0 +1707874062,213,0 +1707874062,213,0 +1707874063,213,0 +1707874063,213,0 +1707874063,213,0 +1707874064,213,0 +1707874064,213,0 +1707874065,213,0 +1707874065,213,0 +1707874066,214,0 +1707874066,214,0 +1707874067,213,0 +1707874067,213,0 +1707874068,214,0 +1707874068,213,0 +1707874069,213,0 +1707874069,214,0 +1707874070,214,0 +1707874070,213,0 +1707874071,213,0 +1707874071,213,0 +1707874072,213,0 +1707874072,213,0 +1707874073,213,0 +1707874073,213,0 +1707874074,213,0 +1707874074,213,0 +1707874075,213,0 +1707874075,213,0 +1707874076,213,0 +1707874076,213,0 +1707874077,214,0 +1707874077,214,0 +1707874078,214,0 +1707874078,214,0 +1707874079,213,0 +1707874079,213,0 +1707874079,213,0 +1707874080,213,0 +1707874080,213,0 +1707874081,213,0 +1707874081,213,0 +1707874082,213,0 +1707874082,213,0 +1707874083,213,0 +1707874083,213,0 +1707874084,213,0 +1707874084,213,0 +1707874085,213,0 +1707874085,213,0 +1707874086,213,0 +1707874086,214,0 +1707874087,214,0 +1707874087,214,0 +1707874088,214,0 +1707874088,213,0 +1707874089,213,0 +1707874089,213,0 +1707874090,213,0 +1707874090,213,0 +1707874091,213,0 +1707874091,213,0 +1707874092,213,0 +1707874092,213,0 +1707874093,213,0 +1707874093,213,0 +1707874094,213,0 +1707874094,213,0 +1707874095,213,0 +1707874095,213,0 +1707874096,213,0 +1707874096,213,0 +1707874096,213,0 +1707874097,214,0 +1707874097,213,0 +1707874098,213,0 +1707874098,213,0 +1707874099,213,0 +1707874099,213,0 +1707874100,213,0 +1707874100,213,0 +1707874101,213,0 +1707874101,213,0 +1707874102,213,0 +1707874102,213,0 +1707874103,213,0 +1707874103,213,0 +1707874104,213,0 +1707874104,213,0 +1707874105,213,0 +1707874105,213,0 +1707874106,214,0 +1707874106,213,0 +1707874107,214,0 +1707874107,213,0 +1707874108,213,0 +1707874108,213,0 +1707874108,213,0 +1707874109,213,0 +1707874109,213,0 +1707874110,213,0 +1707874110,213,0 +1707874111,213,0 +1707874111,213,0 +1707874112,213,0 +1707874112,213,0 +1707874113,214,0 +1707874113,213,0 +1707874114,214,0 +1707874114,214,0 +1707874115,214,0 +1707874115,214,0 +1707874116,214,0 +1707874116,213,0 +1707874117,213,0 +1707874117,213,0 +1707874118,213,0 +1707874118,213,0 +1707874119,213,0 +1707874119,213,0 +1707874120,213,0 +1707874120,213,0 +1707874121,213,0 +1707874121,214,0 +1707874122,214,0 +1707874122,214,0 +1707874123,214,0 +1707874123,214,0 +1707874124,214,0 +1707874124,214,0 +1707874125,214,0 +1707874125,213,0 +1707874125,213,0 +1707874126,213,0 +1707874126,213,0 +1707874127,213,0 +1707874127,213,0 +1707874128,213,0 +1707874128,213,0 +1707874129,213,0 +1707874129,213,0 +1707874130,214,0 +1707874130,213,0 +1707874131,214,0 +1707874131,214,0 +1707874132,214,0 +1707874132,214,0 +1707874133,214,0 +1707874133,214,0 +1707874134,214,0 +1707874134,214,0 +1707874135,213,0 +1707874135,213,0 +1707874136,213,0 +1707874136,213,0 +1707874137,213,0 +1707874137,213,0 +1707874138,214,0 +1707874138,213,0 +1707874138,214,0 +1707874139,214,0 +1707874139,214,0 +1707874140,214,0 +1707874140,214,0 +1707874141,214,0 +1707874141,214,0 +1707874142,214,0 +1707874142,214,0 +1707874143,214,0 +1707874143,213,0 +1707874144,213,0 +1707874144,213,0 +1707874145,213,0 +1707874145,213,0 +1707874146,213,0 +1707874146,213,0 +1707874147,213,0 +1707874147,213,0 +1707874148,213,0 +1707874148,213,0 +1707874149,214,0 +1707874149,213,0 +1707874150,214,0 +1707874150,214,0 +1707874151,214,0 +1707874151,214,0 +1707874152,214,0 +1707874152,214,0 +1707874153,214,0 +1707874153,213,0 +1707874153,213,0 +1707874154,213,0 +1707874154,213,0 +1707874155,213,0 +1707874155,213,0 +1707874156,213,0 +1707874156,213,0 +1707874157,213,0 +1707874157,213,0 +1707874158,213,0 +1707874158,214,0 +1707874159,213,0 +1707874159,213,0 +1707874160,214,0 +1707874160,214,0 +1707874161,214,0 +1707874161,214,0 +1707874162,214,0 +1707874162,213,0 +1707874163,213,0 +1707874163,213,0 +1707874164,213,0 +1707874164,213,0 +1707874165,213,0 +1707874165,213,0 +1707874166,213,0 +1707874166,213,0 +1707874167,213,0 +1707874167,213,0 +1707874167,213,0 +1707874168,214,0 +1707874168,214,0 +1707874169,214,0 +1707874169,214,0 +1707874170,214,0 +1707874170,214,0 +1707874171,214,0 +1707874171,213,0 +1707874172,213,0 +1707874172,213,0 +1707874173,213,0 +1707874173,213,0 +1707874174,213,0 +1707874174,213,0 +1707874175,213,0 +1707874175,213,0 +1707874176,214,0 +1707874176,214,0 +1707874177,214,0 +1707874177,214,0 +1707874178,214,0 +1707874178,214,0 +1707874179,214,0 +1707874179,214,0 +1707874180,214,0 +1707874180,214,0 +1707874181,213,0 +1707874181,213,0 +1707874181,213,0 +1707874182,213,0 +1707874182,213,0 +1707874183,213,0 +1707874183,214,0 +1707874184,213,0 +1707874184,213,0 +1707874185,214,0 +1707874185,214,0 +1707874186,214,0 +1707874186,213,0 +1707874187,214,0 +1707874187,214,0 +1707874188,214,0 +1707874188,214,0 +1707874189,214,0 +1707874189,214,0 +1707874190,213,0 +1707874190,213,0 +1707874191,213,0 +1707874191,213,0 +1707874192,213,0 +1707874192,213,0 +1707874193,213,0 +1707874193,214,0 +1707874194,213,0 +1707874194,213,0 +1707874194,213,0 +1707874195,214,0 +1707874195,214,0 +1707874196,214,0 +1707874196,214,0 +1707874197,214,0 +1707874197,214,0 +1707874198,214,0 +1707874198,214,0 +1707874199,213,0 +1707874199,213,0 +1707874200,213,0 +1707874200,213,0 +1707874201,213,0 +1707874201,213,0 +1707874202,213,0 +1707874202,213,0 +1707874203,213,0 +1707874203,213,0 +1707874204,213,0 +1707874204,214,0 +1707874205,214,0 +1707874205,214,0 +1707874206,214,0 +1707874206,214,0 +1707874207,214,0 +1707874207,214,0 +1707874208,214,0 +1707874208,213,0 +1707874209,213,0 +1707874209,213,0 +1707874210,213,0 +1707874210,213,0 +1707874210,213,0 +1707874211,213,0 +1707874211,213,0 +1707874212,213,0 +1707874212,213,0 +1707874213,213,0 +1707874213,213,0 +1707874214,214,0 +1707874214,214,0 +1707874215,214,0 +1707874215,214,0 +1707874216,214,0 +1707874216,214,0 +1707874217,214,0 +1707874217,213,0 +1707874218,213,0 +1707874218,213,0 +1707874219,213,0 +1707874219,213,0 +1707874220,213,0 +1707874220,213,0 +1707874221,213,0 +1707874221,213,0 +1707874222,213,0 +1707874222,213,0 +1707874223,213,0 +1707874223,213,0 +1707874224,214,0 +1707874224,214,0 +1707874225,214,0 +1707874225,214,0 +1707874226,214,0 +1707874226,214,0 +1707874226,213,0 +1707874227,213,0 +1707874227,213,0 +1707874228,213,0 +1707874228,213,0 +1707874229,213,0 +1707874229,213,0 +1707874230,213,0 +1707874230,213,0 +1707874231,213,0 +1707874231,213,0 +1707874232,213,0 +1707874232,213,0 +1707874233,214,0 +1707874233,214,0 +1707874234,214,0 +1707874234,214,0 +1707874235,214,0 +1707874235,214,0 +1707874236,213,0 +1707874236,213,0 +1707874237,213,0 +1707874237,213,0 +1707874238,213,0 +1707874238,213,0 +1707874239,213,0 +1707874239,213,0 +1707874240,213,0 +1707874240,213,0 +1707874240,213,0 +1707874241,213,0 +1707874241,214,0 +1707874242,214,0 +1707874242,214,0 +1707874243,214,0 +1707874243,214,0 +1707874244,214,0 +1707874244,214,0 +1707874245,213,0 +1707874245,213,0 +1707874246,213,0 +1707874246,213,0 +1707874247,213,0 +1707874247,213,0 +1707874248,213,0 +1707874248,213,0 +1707874249,213,0 +1707874249,213,0 +1707874250,213,0 +1707874250,213,0 +1707874251,213,0 +1707874251,213,0 +1707874252,213,0 +1707874252,213,0 +1707874253,214,0 +1707874253,214,0 +1707874254,214,0 +1707874254,213,0 +1707874255,213,0 +1707874255,213,0 +1707874256,213,0 +1707874256,213,0 +1707874257,213,0 +1707874257,213,0 +1707874257,213,0 +1707874258,213,0 +1707874258,213,0 +1707874259,213,0 +1707874259,213,0 +1707874260,213,0 +1707874260,213,0 +1707874261,213,0 +1707874261,213,0 +1707874262,213,0 +1707874262,213,0 +1707874263,214,0 +1707874263,213,0 +1707874264,213,0 +1707874264,213,0 +1707874265,213,0 +1707874265,213,0 +1707874266,213,0 +1707874266,213,0 +1707874267,213,0 +1707874267,213,0 +1707874268,213,0 +1707874268,213,0 +1707874269,213,0 +1707874269,213,0 +1707874270,213,0 +1707874270,213,0 +1707874271,214,0 +1707874271,214,0 +1707874272,214,0 +1707874272,214,0 +1707874272,213,0 +1707874273,213,0 +1707874273,213,0 +1707874274,213,0 +1707874274,213,0 +1707874275,213,0 +1707874275,213,0 +1707874276,213,0 +1707874276,213,0 +1707874277,213,0 +1707874277,213,0 +1707874278,213,0 +1707874278,214,0 +1707874279,213,0 +1707874279,214,0 +1707874280,214,0 +1707874280,214,0 +1707874281,214,0 +1707874281,214,0 +1707874282,213,0 +1707874282,213,0 +1707874283,213,0 +1707874283,213,0 +1707874284,213,0 +1707874284,213,0 +1707874285,213,0 +1707874285,213,0 +1707874286,213,0 +1707874286,213,0 +1707874287,213,0 +1707874287,214,0 +1707874288,214,0 +1707874288,214,0 +1707874288,214,0 +1707874289,214,0 +1707874289,214,0 +1707874290,214,0 +1707874290,214,0 +1707874291,213,0 +1707874291,213,0 +1707874292,213,0 +1707874292,213,0 +1707874293,213,0 +1707874293,213,0 +1707874294,213,0 +1707874294,213,0 +1707874295,213,0 +1707874295,213,0 +1707874296,213,0 +1707874296,213,0 +1707874297,213,0 +1707874297,213,0 +1707874298,214,0 +1707874298,214,0 +1707874299,213,0 +1707874299,214,0 +1707874300,214,0 +1707874300,213,0 +1707874301,213,0 +1707874301,213,0 +1707874302,213,0 +1707874302,213,0 +1707874302,213,0 +1707874303,213,0 +1707874303,213,0 +1707874304,213,0 +1707874304,213,0 +1707874305,213,0 +1707874305,213,0 +1707874306,213,0 +1707874306,214,0 +1707874307,214,0 +1707874307,214,0 +1707874308,214,0 +1707874308,214,0 +1707874309,214,0 +1707874309,213,0 +1707874310,213,0 +1707874310,213,0 +1707874311,213,0 +1707874311,213,0 +1707874312,213,0 +1707874312,213,0 +1707874313,214,0 +1707874313,214,0 +1707874314,214,0 +1707874314,214,0 +1707874315,214,0 +1707874315,214,0 +1707874316,214,0 +1707874316,214,0 +1707874316,214,0 +1707874317,214,0 +1707874317,214,0 +1707874318,214,0 +1707874318,213,0 +1707874319,213,0 +1707874319,213,0 +1707874320,213,0 +1707874320,213,0 +1707874321,214,0 +1707874321,214,0 +1707874322,214,0 +1707874322,214,0 +1707874323,214,0 +1707874323,214,0 +1707874324,214,0 +1707874324,214,0 +1707874325,214,0 +1707874325,214,0 +1707874326,214,0 +1707874326,214,0 +1707874327,214,0 +1707874327,214,0 +1707874328,213,0 +1707874328,213,0 +1707874329,213,0 +1707874329,214,0 +1707874330,213,0 +1707874330,214,0 +1707874330,214,0 +1707874331,214,0 +1707874331,214,0 +1707874332,214,0 +1707874332,214,0 +1707874333,214,0 +1707874333,214,0 +1707874334,214,0 +1707874334,214,0 +1707874335,214,0 +1707874335,214,0 +1707874336,214,0 +1707874336,214,0 +1707874337,213,0 +1707874337,213,0 +1707874338,213,0 +1707874338,213,0 +1707874339,213,0 +1707874339,213,0 +1707874340,213,0 +1707874340,213,0 +1707874341,213,0 +1707874341,214,0 +1707874342,213,0 +1707874342,214,0 +1707874343,214,0 +1707874343,214,0 +1707874344,214,0 +1707874344,214,0 +1707874345,214,0 +1707874345,214,0 +1707874345,214,0 +1707874346,213,0 +1707874346,213,0 +1707874347,213,0 +1707874347,213,0 +1707874348,213,0 +1707874348,213,0 +1707874349,213,0 +1707874349,213,0 +1707874350,213,0 +1707874350,213,0 +1707874351,214,0 +1707874351,214,0 +1707874352,214,0 +1707874352,214,0 +1707874353,214,0 +1707874353,214,0 +1707874354,214,0 +1707874354,214,0 +1707874355,214,0 +1707874355,213,0 +1707874356,213,0 +1707874356,212,0 +1707874357,213,0 +1707874357,213,0 +1707874358,213,0 +1707874358,213,0 +1707874359,213,0 +1707874359,213,0 +1707874360,213,0 +1707874360,213,0 +1707874361,213,0 +1707874361,213,0 +1707874361,213,0 +1707874362,213,0 +1707874362,214,0 +1707874363,213,0 +1707874363,213,0 +1707874364,214,0 +1707874364,213,0 +1707874365,213,0 +1707874365,213,0 +1707874366,213,0 +1707874366,213,0 +1707874367,213,0 +1707874367,213,0 +1707874368,213,0 +1707874368,213,0 +1707874369,213,0 +1707874369,213,0 +1707874370,214,0 +1707874370,214,0 +1707874371,214,0 +1707874371,214,0 +1707874372,214,0 +1707874372,214,0 +1707874373,214,0 +1707874373,214,0 +1707874374,213,0 +1707874374,213,0 +1707874375,213,0 +1707874375,213,0 +1707874375,213,0 +1707874376,213,0 +1707874376,213,0 +1707874377,213,0 +1707874377,213,0 +1707874378,213,0 +1707874378,214,0 +1707874379,213,0 +1707874379,214,0 +1707874380,213,0 +1707874380,214,0 +1707874381,214,0 +1707874381,214,0 +1707874382,214,0 +1707874382,214,0 +1707874383,213,0 +1707874383,213,0 +1707874384,213,0 +1707874384,213,0 +1707874385,213,0 +1707874385,213,0 +1707874386,213,0 +1707874386,213,0 +1707874387,213,0 +1707874387,213,0 +1707874388,214,0 +1707874388,214,0 +1707874389,214,0 +1707874389,214,0 +1707874389,214,0 +1707874390,214,0 +1707874390,214,0 +1707874391,214,0 +1707874391,214,0 +1707874392,213,0 +1707874392,213,0 +1707874393,213,0 +1707874393,213,0 +1707874394,213,0 +1707874394,213,0 +1707874395,213,0 +1707874395,213,0 +1707874396,213,0 +1707874396,214,0 +1707874397,214,0 +1707874397,213,0 +1707874398,214,0 +1707874398,214,0 +1707874399,214,0 +1707874399,214,0 +1707874400,214,0 +1707874400,214,0 +1707874401,214,0 +1707874401,213,0 +1707874402,213,0 +1707874402,213,0 +1707874403,213,0 +1707874403,213,0 +1707874404,213,0 +1707874404,213,0 +1707874405,213,0 +1707874405,213,0 +1707874405,213,0 +1707874406,214,0 +1707874406,214,0 +1707874407,214,0 +1707874407,214,0 +1707874408,214,0 +1707874408,214,0 +1707874409,214,0 +1707874409,214,0 +1707874410,214,0 +1707874410,213,0 +1707874411,213,0 +1707874411,213,0 +1707874412,213,0 +1707874412,213,0 +1707874413,213,0 +1707874413,213,0 +1707874414,213,0 +1707874414,213,0 +1707874415,213,0 +1707874415,213,0 +1707874416,213,0 +1707874416,213,0 +1707874417,213,0 +1707874417,214,0 +1707874418,214,0 +1707874418,213,0 +1707874419,213,0 +1707874419,213,0 +1707874420,213,0 +1707874420,213,0 +1707874421,213,0 +1707874421,213,0 +1707874421,213,0 +1707874422,213,0 +1707874422,213,0 +1707874423,213,0 +1707874423,213,0 +1707874424,213,0 +1707874424,213,0 +1707874425,213,0 +1707874425,213,0 +1707874426,213,0 +1707874426,213,0 +1707874427,213,0 +1707874427,214,0 +1707874428,214,0 +1707874428,214,0 +1707874429,213,0 +1707874429,213,0 +1707874430,213,0 +1707874430,213,0 +1707874431,213,0 +1707874431,213,0 +1707874432,213,0 +1707874432,213,0 +1707874433,213,0 +1707874433,213,0 +1707874434,213,0 +1707874434,214,0 +1707874435,213,0 +1707874435,214,0 +1707874436,214,0 +1707874436,214,0 +1707874437,214,0 +1707874437,214,0 +1707874437,214,0 +1707874438,213,0 +1707874438,213,0 +1707874439,213,0 +1707874439,213,0 +1707874440,213,0 +1707874440,213,0 +1707874441,213,0 +1707874441,213,0 +1707874442,213,0 +1707874442,213,0 +1707874443,213,0 +1707874443,213,0 +1707874444,213,0 +1707874444,213,0 +1707874445,214,0 +1707874445,214,0 +1707874446,214,0 +1707874446,214,0 +1707874447,214,0 +1707874447,213,0 +1707874448,213,0 +1707874448,213,0 +1707874449,213,0 +1707874449,213,0 +1707874450,213,0 +1707874450,213,0 +1707874451,213,0 +1707874451,214,0 +1707874452,213,0 +1707874452,213,0 +1707874453,214,0 +1707874453,214,0 +1707874453,214,0 +1707874454,214,0 +1707874454,214,0 +1707874455,214,0 +1707874455,214,0 +1707874456,214,0 +1707874456,213,0 +1707874457,213,0 +1707874457,213,0 +1707874458,213,0 +1707874458,213,0 +1707874459,213,0 +1707874459,213,0 +1707874460,213,0 +1707874460,213,0 +1707874461,214,0 +1707874461,213,0 +1707874462,213,0 +1707874462,213,0 +1707874463,214,0 +1707874463,214,0 +1707874464,214,0 +1707874464,214,0 +1707874465,214,0 +1707874465,214,0 +1707874466,213,0 +1707874466,213,0 +1707874467,213,0 +1707874467,213,0 +1707874468,213,0 +1707874468,213,0 +1707874468,213,0 +1707874469,213,0 +1707874469,213,0 +1707874470,213,0 +1707874470,214,0 +1707874471,214,0 +1707874471,214,0 +1707874472,214,0 +1707874472,214,0 +1707874473,214,0 +1707874473,214,0 +1707874474,214,0 +1707874474,214,0 +1707874475,213,0 +1707874475,213,0 +1707874476,213,0 +1707874476,213,0 +1707874477,213,0 +1707874477,213,0 +1707874478,213,0 +1707874478,213,0 +1707874479,213,0 +1707874479,214,0 +1707874480,214,0 +1707874480,214,0 +1707874481,214,0 +1707874481,214,0 +1707874482,214,0 +1707874482,214,0 +1707874483,214,0 +1707874483,214,0 +1707874483,214,0 +1707874484,213,0 +1707874484,213,0 +1707874485,213,0 +1707874485,213,0 +1707874486,213,0 +1707874486,213,0 +1707874487,213,0 +1707874487,213,0 +1707874488,213,0 +1707874488,213,0 +1707874489,213,0 +1707874489,214,0 +1707874490,213,0 +1707874490,214,0 +1707874491,214,0 +1707874491,214,0 +1707874492,214,0 +1707874492,214,0 +1707874493,214,0 +1707874493,213,0 +1707874494,213,0 +1707874494,213,0 +1707874495,213,0 +1707874495,213,0 +1707874496,213,0 +1707874496,213,0 +1707874497,213,0 +1707874497,213,0 +1707874498,214,0 +1707874498,213,0 +1707874499,213,0 +1707874499,214,0 +1707874500,213,0 +1707874500,214,0 +1707874501,214,0 +1707874501,214,0 +1707874501,214,0 +1707874502,213,0 +1707874502,213,0 +1707874503,213,0 +1707874503,213,0 +1707874504,213,0 +1707874504,213,0 +1707874505,213,0 +1707874505,213,0 +1707874506,213,0 +1707874506,213,0 +1707874507,213,0 +1707874507,214,0 +1707874508,214,0 +1707874508,214,0 +1707874509,214,0 +1707874509,214,0 +1707874510,214,0 +1707874510,214,0 +1707874511,214,0 +1707874511,214,0 +1707874512,213,0 +1707874512,213,0 +1707874513,213,0 +1707874513,213,0 +1707874514,214,0 +1707874514,214,0 +1707874515,213,0 +1707874515,214,0 +1707874515,214,0 +1707874516,214,0 +1707874516,214,0 +1707874517,214,0 +1707874517,214,0 +1707874518,214,0 +1707874518,214,0 +1707874519,214,0 +1707874519,214,0 +1707874520,214,0 +1707874520,214,0 +1707874521,213,0 +1707874521,213,0 +1707874522,213,0 +1707874522,213,0 +1707874523,213,0 +1707874523,213,0 +1707874524,213,0 +1707874524,213,0 +1707874525,213,0 +1707874525,214,0 +1707874526,214,0 +1707874526,214,0 +1707874527,214,0 +1707874527,214,0 +1707874528,214,0 +1707874528,214,0 +1707874529,214,0 +1707874529,214,0 +1707874529,214,0 +1707874530,214,0 +1707874530,213,0 +1707874531,213,0 +1707874531,213,0 +1707874532,213,0 +1707874532,213,0 +1707874533,213,0 +1707874533,213,0 +1707874534,213,0 +1707874534,213,0 +1707874535,213,0 +1707874535,214,0 +1707874536,214,0 +1707874536,214,0 +1707874537,214,0 +1707874537,214,0 +1707874538,214,0 +1707874538,214,0 +1707874539,214,0 +1707874539,213,0 +1707874540,213,0 +1707874540,213,0 +1707874541,213,0 +1707874541,213,0 +1707874542,213,0 +1707874542,213,0 +1707874543,213,0 +1707874543,213,0 +1707874544,214,0 +1707874544,213,0 +1707874544,213,0 +1707874545,213,0 +1707874545,213,0 +1707874546,213,0 +1707874546,213,0 +1707874547,214,0 +1707874547,214,0 +1707874548,214,0 +1707874548,213,0 +1707874549,213,0 +1707874549,213,0 +1707874550,213,0 +1707874550,213,0 +1707874551,213,0 +1707874551,213,0 +1707874552,213,0 +1707874552,213,0 +1707874553,213,0 +1707874553,213,0 +1707874554,213,0 +1707874554,213,0 +1707874555,214,0 +1707874555,214,0 +1707874556,214,0 +1707874556,213,0 +1707874557,214,0 +1707874557,214,0 +1707874558,214,0 +1707874558,213,0 +1707874559,213,0 +1707874559,213,0 +1707874559,213,0 +1707874560,213,0 +1707874560,213,0 +1707874561,213,0 +1707874561,213,0 +1707874562,213,0 +1707874562,213,0 +1707874563,213,0 +1707874563,213,0 +1707874564,213,0 +1707874564,214,0 +1707874565,214,0 +1707874565,214,0 +1707874566,214,0 +1707874566,214,0 +1707874567,213,0 +1707874567,213,0 +1707874568,213,0 +1707874568,213,0 +1707874569,213,0 +1707874569,213,0 +1707874570,213,0 +1707874570,213,0 +1707874571,213,0 +1707874571,213,0 +1707874572,213,0 +1707874572,213,0 +1707874573,213,0 +1707874573,213,0 +1707874574,214,0 +1707874574,214,0 +1707874574,214,0 +1707874575,214,0 +1707874575,214,0 +1707874576,213,0 +1707874576,213,0 +1707874577,213,0 +1707874577,213,0 +1707874578,213,0 +1707874578,213,0 +1707874579,213,0 +1707874579,213,0 +1707874580,213,0 +1707874580,213,0 +1707874581,213,0 +1707874581,213,0 +1707874582,213,0 +1707874582,214,0 +1707874583,214,0 +1707874583,214,0 +1707874584,214,0 +1707874584,214,0 +1707874585,214,0 +1707874585,213,0 +1707874586,213,0 +1707874586,213,0 +1707874587,213,0 +1707874587,213,0 +1707874588,213,0 +1707874588,213,0 +1707874589,213,0 +1707874589,213,0 +1707874589,213,0 +1707874590,213,0 +1707874590,214,0 +1707874591,213,0 +1707874591,214,0 +1707874592,214,0 +1707874592,213,0 +1707874593,214,0 +1707874593,214,0 +1707874594,214,0 +1707874594,214,0 +1707874595,213,0 +1707874595,213,0 +1707874596,213,0 +1707874596,213,0 +1707874597,213,0 +1707874597,213,0 +1707874598,213,0 +1707874598,213,0 +1707874599,214,0 +1707874599,213,0 +1707874600,213,0 +1707874600,214,0 +1707874601,214,0 +1707874601,214,0 +1707874602,214,0 +1707874602,214,0 +1707874603,214,0 +1707874603,214,0 +1707874603,213,0 +1707874604,213,0 +1707874604,213,0 +1707874605,213,0 +1707874605,213,0 +1707874606,213,0 +1707874606,213,0 +1707874607,213,0 +1707874607,213,0 +1707874608,213,0 +1707874608,213,0 +1707874609,214,0 +1707874609,213,0 +1707874610,214,0 +1707874610,214,0 +1707874611,214,0 +1707874611,214,0 +1707874612,214,0 +1707874612,214,0 +1707874613,214,0 +1707874613,213,0 +1707874614,213,0 +1707874614,213,0 +1707874615,213,0 +1707874615,213,0 +1707874616,213,0 +1707874616,213,0 +1707874617,213,0 +1707874617,213,0 +1707874617,214,0 +1707874618,214,0 +1707874618,214,0 +1707874619,214,0 +1707874619,214,0 +1707874620,214,0 +1707874620,214,0 +1707874621,214,0 +1707874621,214,0 +1707874622,213,0 +1707874622,213,0 +1707874623,213,0 +1707874623,213,0 +1707874624,213,0 +1707874624,213,0 +1707874625,213,0 +1707874625,213,0 +1707874626,213,0 +1707874626,213,0 +1707874627,214,0 +1707874627,214,0 +1707874628,214,0 +1707874628,214,0 +1707874629,214,0 +1707874629,214,0 +1707874630,214,0 +1707874630,213,0 +1707874631,214,0 +1707874631,214,0 +1707874632,213,0 +1707874632,213,0 +1707874632,213,0 +1707874633,213,0 +1707874633,213,0 +1707874634,213,0 +1707874634,213,0 +1707874635,213,0 +1707874635,213,0 +1707874636,213,0 +1707874636,214,0 +1707874637,213,0 +1707874637,214,0 +1707874638,214,0 +1707874638,214,0 +1707874639,214,0 +1707874639,214,0 +1707874640,214,0 +1707874640,214,0 +1707874641,213,0 +1707874641,213,0 +1707874642,213,0 +1707874642,213,0 +1707874643,213,0 +1707874643,213,0 +1707874644,213,0 +1707874644,213,0 +1707874645,213,0 +1707874645,213,0 +1707874645,213,0 +1707874646,214,0 +1707874646,213,0 +1707874647,214,0 +1707874647,214,0 +1707874648,214,0 +1707874648,214,0 +1707874649,214,0 +1707874649,214,0 +1707874650,213,0 +1707874650,213,0 +1707874651,213,0 +1707874651,213,0 +1707874652,213,0 +1707874652,213,0 +1707874653,213,0 +1707874653,213,0 +1707874654,213,0 +1707874654,213,0 +1707874655,213,0 +1707874655,213,0 +1707874656,213,0 +1707874656,214,0 +1707874657,213,0 +1707874657,214,0 +1707874657,214,0 +1707874658,214,0 +1707874658,214,0 +1707874659,213,0 +1707874659,213,0 +1707874660,213,0 +1707874660,213,0 +1707874661,213,0 +1707874661,213,0 +1707874662,213,0 +1707874662,213,0 +1707874663,213,0 +1707874663,213,0 +1707874664,213,0 +1707874664,213,0 +1707874665,214,0 +1707874665,214,0 +1707874666,214,0 +1707874666,214,0 +1707874667,213,0 +1707874667,214,0 +1707874668,213,0 +1707874668,213,0 +1707874669,213,0 +1707874669,213,0 +1707874670,213,0 +1707874670,213,0 +1707874670,213,0 +1707874671,213,0 +1707874671,213,0 +1707874672,213,0 +1707874672,213,0 +1707874673,213,0 +1707874673,213,0 +1707874674,213,0 +1707874674,213,0 +1707874675,213,0 +1707874675,213,0 +1707874676,213,0 +1707874676,214,0 +1707874677,214,0 +1707874677,213,0 +1707874678,213,0 +1707874678,213,0 +1707874679,213,0 +1707874679,213,0 +1707874680,213,0 +1707874680,213,0 +1707874681,213,0 +1707874681,213,0 +1707874682,213,0 +1707874682,213,0 +1707874683,213,0 +1707874683,213,0 +1707874684,213,0 +1707874684,214,0 +1707874685,214,0 +1707874685,214,0 +1707874686,214,0 +1707874686,213,0 +1707874687,213,0 +1707874687,213,0 +1707874688,213,0 +1707874688,213,0 +1707874689,213,0 +1707874689,213,0 +1707874689,213,0 +1707874690,213,0 +1707874690,213,0 +1707874691,213,0 +1707874691,214,0 +1707874692,214,0 +1707874692,214,0 +1707874693,214,0 +1707874693,214,0 +1707874694,214,0 +1707874694,214,0 +1707874695,214,0 +1707874695,214,0 +1707874696,213,0 +1707874696,213,0 +1707874697,214,0 +1707874697,214,0 +1707874698,214,0 +1707874698,214,0 +1707874699,214,0 +1707874699,214,0 +1707874700,214,0 +1707874700,214,0 +1707874701,214,0 +1707874701,214,0 +1707874702,214,0 +1707874702,214,0 +1707874702,214,0 +1707874703,214,0 +1707874703,214,0 +1707874704,214,0 +1707874704,214,0 +1707874705,213,0 +1707874705,214,0 +1707874706,213,0 +1707874706,213,0 +1707874707,213,0 +1707874707,214,0 +1707874708,214,0 +1707874708,214,0 +1707874709,214,0 +1707874709,214,0 +1707874710,214,0 +1707874710,214,0 +1707874711,214,0 +1707874711,214,0 +1707874712,214,0 +1707874712,214,0 +1707874713,214,0 +1707874713,214,0 +1707874714,214,0 +1707874714,213,0 +1707874715,213,0 +1707874715,213,0 +1707874716,213,0 +1707874716,213,0 +1707874716,213,0 +1707874717,213,0 +1707874717,214,0 +1707874718,214,0 +1707874718,214,0 +1707874719,214,0 +1707874719,214,0 +1707874720,214,0 +1707874720,214,0 +1707874721,214,0 +1707874721,214,0 +1707874722,214,0 +1707874722,214,0 +1707874723,214,0 +1707874723,213,0 +1707874724,213,0 +1707874724,213,0 +1707874725,213,0 +1707874725,213,0 +1707874726,213,0 +1707874726,213,0 +1707874727,213,0 +1707874727,213,0 +1707874727,214,0 +1707874728,214,0 +1707874728,214,0 +1707874729,214,0 +1707874729,214,0 +1707874730,214,0 +1707874730,214,0 +1707874731,214,0 +1707874731,214,0 +1707874732,214,0 +1707874732,213,0 +1707874733,213,0 +1707874733,213,0 +1707874734,213,0 +1707874734,213,0 +1707874735,213,0 +1707874735,213,0 +1707874736,213,0 +1707874736,213,0 +1707874737,213,0 +1707874737,213,0 +1707874738,214,0 +1707874738,213,0 +1707874739,214,0 +1707874739,214,0 +1707874740,214,0 +1707874740,214,0 +1707874740,214,0 +1707874741,214,0 +1707874741,213,0 +1707874742,213,0 +1707874742,213,0 +1707874743,213,0 +1707874743,213,0 +1707874744,213,0 +1707874744,213,0 +1707874745,213,0 +1707874745,213,0 +1707874746,213,0 +1707874746,213,0 +1707874747,214,0 +1707874747,214,0 +1707874748,214,0 +1707874748,214,0 +1707874749,214,0 +1707874749,214,0 +1707874750,214,0 +1707874750,214,0 +1707874751,213,0 +1707874751,213,0 +1707874752,213,0 +1707874752,213,0 +1707874753,213,0 +1707874753,213,0 +1707874754,213,0 +1707874754,213,0 +1707874755,213,0 +1707874755,213,0 +1707874755,213,0 +1707874756,214,0 +1707874756,214,0 +1707874757,214,0 +1707874757,214,0 +1707874758,214,0 +1707874758,214,0 +1707874759,214,0 +1707874759,214,0 +1707874760,213,0 +1707874760,213,0 +1707874761,213,0 +1707874761,213,0 +1707874762,213,0 +1707874762,213,0 +1707874763,213,0 +1707874763,213,0 +1707874764,213,0 +1707874764,213,0 +1707874765,213,0 +1707874765,213,0 +1707874766,213,0 +1707874766,214,0 +1707874767,214,0 +1707874767,214,0 +1707874767,214,0 +1707874768,214,0 +1707874768,214,0 +1707874769,213,0 +1707874769,213,0 +1707874770,213,0 +1707874770,213,0 +1707874771,213,0 +1707874771,213,0 +1707874772,213,0 +1707874772,213,0 +1707874773,213,0 +1707874773,213,0 +1707874774,213,0 +1707874774,213,0 +1707874775,214,0 +1707874775,214,0 +1707874776,214,0 +1707874776,214,0 +1707874777,214,0 +1707874777,214,0 +1707874778,214,0 +1707874778,213,0 +1707874779,213,0 +1707874779,213,0 +1707874780,213,0 +1707874780,213,0 +1707874780,213,0 +1707874781,213,0 +1707874781,213,0 +1707874782,213,0 +1707874782,213,0 +1707874783,213,0 +1707874783,214,0 +1707874784,213,0 +1707874784,213,0 +1707874785,214,0 +1707874785,214,0 +1707874786,214,0 +1707874786,214,0 +1707874787,214,0 +1707874787,214,0 +1707874788,213,0 +1707874788,213,0 +1707874789,213,0 +1707874789,213,0 +1707874790,213,0 +1707874790,213,0 +1707874791,213,0 +1707874791,213,0 +1707874792,213,0 +1707874792,213,0 +1707874792,213,0 +1707874793,213,0 +1707874793,213,0 +1707874794,214,0 +1707874794,214,0 +1707874795,214,0 +1707874795,214,0 +1707874796,214,0 +1707874796,213,0 +1707874797,213,0 +1707874797,213,0 +1707874798,213,0 +1707874798,213,0 +1707874799,213,0 +1707874799,213,0 +1707874800,213,0 +1707874800,213,0 +1707874801,213,0 +1707874801,213,0 +1707874802,213,0 +1707874802,213,0 +1707874803,213,0 +1707874803,214,0 +1707874804,214,0 +1707874804,214,0 +1707874805,214,0 +1707874805,214,0 +1707874806,214,0 +1707874806,213,0 +1707874806,213,0 +1707874807,213,0 +1707874807,213,0 +1707874808,213,0 +1707874808,213,0 +1707874809,213,0 +1707874809,213,0 +1707874810,213,0 +1707874810,213,0 +1707874811,213,0 +1707874811,213,0 +1707874812,213,0 +1707874812,213,0 +1707874813,213,0 +1707874813,213,0 +1707874814,214,0 +1707874814,213,0 +1707874815,214,0 +1707874815,214,0 +1707874816,214,0 +1707874816,214,0 +1707874817,214,0 +1707874817,214,0 +1707874818,214,0 +1707874818,214,0 +1707874819,214,0 +1707874819,214,0 +1707874820,213,0 +1707874820,213,0 +1707874821,213,0 +1707874821,213,0 +1707874821,213,0 +1707874822,213,0 +1707874822,213,0 +1707874823,213,0 +1707874823,213,0 +1707874824,213,0 +1707874824,213,0 +1707874825,214,0 +1707874825,214,0 +1707874826,214,0 +1707874826,214,0 +1707874827,214,0 +1707874827,214,0 +1707874828,213,0 +1707874828,214,0 +1707874829,213,0 +1707874829,213,0 +1707874830,213,0 +1707874830,213,0 +1707874831,213,0 +1707874831,213,0 +1707874832,213,0 +1707874832,213,0 +1707874833,213,0 +1707874833,213,0 +1707874834,213,0 +1707874834,213,0 +1707874835,213,0 +1707874835,213,0 +1707874836,213,0 +1707874836,213,0 +1707874837,213,0 +1707874837,213,0 +1707874837,214,0 +1707874838,213,0 +1707874838,213,0 +1707874839,213,0 +1707874839,213,0 +1707874840,213,0 +1707874840,213,0 +1707874841,213,0 +1707874841,213,0 +1707874842,213,0 +1707874842,213,0 +1707874843,213,0 +1707874843,213,0 +1707874844,213,0 +1707874844,213,0 +1707874845,213,0 +1707874845,213,0 +1707874846,213,0 +1707874846,213,0 +1707874847,214,0 +1707874847,213,0 +1707874848,213,0 +1707874848,213,0 +1707874849,213,0 +1707874849,213,0 +1707874850,213,0 +1707874850,213,0 +1707874850,213,0 +1707874851,213,0 +1707874851,213,0 +1707874852,213,0 +1707874852,213,0 +1707874853,213,0 +1707874853,213,0 +1707874854,213,0 +1707874854,213,0 +1707874855,213,0 +1707874855,213,0 +1707874856,214,0 +1707874856,213,0 +1707874857,213,0 +1707874857,213,0 +1707874858,213,0 +1707874858,213,0 +1707874859,213,0 +1707874859,213,0 +1707874860,213,0 +1707874860,213,0 +1707874861,213,0 +1707874861,213,0 +1707874862,213,0 +1707874862,213,0 +1707874863,213,0 +1707874863,213,0 +1707874863,214,0 +1707874864,213,0 +1707874864,214,0 +1707874865,213,0 +1707874865,213,0 +1707874866,213,0 +1707874866,213,0 +1707874867,213,0 +1707874867,213,0 +1707874868,213,0 +1707874868,213,0 +1707874869,213,0 +1707874869,213,0 +1707874870,213,0 +1707874870,213,0 +1707874871,213,0 +1707874871,214,0 +1707874872,214,0 +1707874872,214,0 +1707874873,214,0 +1707874873,214,0 +1707874874,214,0 +1707874874,213,0 +1707874875,213,0 +1707874875,213,0 +1707874876,213,0 +1707874876,213,0 +1707874877,213,0 +1707874877,213,0 +1707874877,213,0 +1707874878,213,0 +1707874878,213,0 +1707874879,213,0 +1707874879,213,0 +1707874880,213,0 +1707874880,214,0 +1707874881,214,0 +1707874881,214,0 +1707874882,214,0 +1707874882,214,0 +1707874883,214,0 +1707874883,214,0 +1707874884,213,0 +1707874884,213,0 +1707874885,213,0 +1707874885,213,0 +1707874886,213,0 +1707874886,213,0 +1707874887,213,0 +1707874887,214,0 +1707874888,214,0 +1707874888,213,0 +1707874889,214,0 +1707874889,214,0 +1707874890,214,0 +1707874890,214,0 +1707874890,214,0 +1707874891,214,0 +1707874891,214,0 +1707874892,214,0 +1707874892,214,0 +1707874893,214,0 +1707874893,213,0 +1707874894,213,0 +1707874894,213,0 +1707874895,213,0 +1707874895,213,0 +1707874896,213,0 +1707874896,214,0 +1707874897,214,0 +1707874897,214,0 +1707874898,214,0 +1707874898,214,0 +1707874899,213,0 +1707874899,214,0 +1707874900,214,0 +1707874900,214,0 +1707874901,214,0 +1707874901,214,0 +1707874902,214,0 +1707874902,213,0 +1707874902,213,0 +1707874903,213,0 +1707874903,213,0 +1707874904,213,0 +1707874904,213,0 +1707874905,213,0 +1707874905,213,0 +1707874906,213,0 +1707874906,214,0 +1707874907,214,0 +1707874907,214,0 +1707874908,214,0 +1707874908,214,0 +1707874909,214,0 +1707874909,214,0 +1707874910,214,0 +1707874910,214,0 +1707874911,214,0 +1707874911,213,0 +1707874912,213,0 +1707874912,213,0 +1707874913,213,0 +1707874913,213,0 +1707874913,213,0 +1707874914,213,0 +1707874914,213,0 +1707874915,213,0 +1707874915,213,0 +1707874916,213,0 +1707874916,213,0 +1707874917,213,0 +1707874917,213,0 +1707874918,214,0 +1707874918,214,0 +1707874919,214,0 +1707874919,214,0 +1707874920,214,0 +1707874920,214,0 +1707874921,213,0 +1707874921,213,0 +1707874922,213,0 +1707874922,213,0 +1707874923,213,0 +1707874923,213,0 +1707874924,213,0 +1707874924,213,0 +1707874925,213,0 +1707874925,213,0 +1707874925,213,0 +1707874926,213,0 +1707874926,214,0 +1707874927,214,0 +1707874927,213,0 +1707874928,214,0 +1707874928,214,0 +1707874929,214,0 +1707874929,214,0 +1707874930,213,0 +1707874930,213,0 +1707874931,213,0 +1707874931,213,0 +1707874932,213,0 +1707874932,213,0 +1707874933,213,0 +1707874933,214,0 +1707874934,213,0 +1707874934,213,0 +1707874935,213,0 +1707874935,213,0 +1707874936,214,0 +1707874936,214,0 +1707874937,213,0 +1707874937,214,0 +1707874937,214,0 +1707874938,214,0 +1707874938,213,0 +1707874939,213,0 +1707874939,213,0 +1707874940,213,0 +1707874940,213,0 +1707874941,213,0 +1707874941,213,0 +1707874942,213,0 +1707874942,213,0 +1707874943,213,0 +1707874943,213,0 +1707874944,213,0 +1707874944,213,0 +1707874945,213,0 +1707874945,214,0 +1707874946,214,0 +1707874946,214,0 +1707874947,214,0 +1707874947,214,0 +1707874948,214,0 +1707874948,213,0 +1707874949,213,0 +1707874949,213,0 +1707874949,213,0 +1707874950,213,0 +1707874950,213,0 +1707874951,213,0 +1707874951,213,0 +1707874952,213,0 +1707874952,213,0 +1707874953,213,0 +1707874953,214,0 +1707874954,214,0 +1707874954,214,0 +1707874955,214,0 +1707874955,214,0 +1707874956,214,0 +1707874956,214,0 +1707874957,214,0 +1707874957,213,0 +1707874958,213,0 +1707874958,213,0 +1707874959,213,0 +1707874959,213,0 +1707874960,213,0 +1707874960,213,0 +1707874961,213,0 +1707874961,213,0 +1707874962,213,0 +1707874962,213,0 +1707874962,213,0 +1707874963,214,0 +1707874963,214,0 +1707874964,214,0 +1707874964,214,0 +1707874965,214,0 +1707874965,214,0 +1707874966,214,0 +1707874966,214,0 +1707874967,213,0 +1707874967,213,0 +1707874968,213,0 +1707874968,213,0 +1707874969,213,0 +1707874969,213,0 +1707874970,213,0 +1707874970,213,0 +1707874971,213,0 +1707874971,213,0 +1707874972,213,0 +1707874972,213,0 +1707874973,213,0 +1707874973,213,0 +1707874974,213,0 +1707874974,214,0 +1707874974,213,0 +1707874975,214,0 +1707874975,214,0 +1707874976,213,0 +1707874976,213,0 +1707874977,213,0 +1707874977,213,0 +1707874978,213,0 +1707874978,213,0 +1707874979,213,0 +1707874979,213,0 +1707874980,213,0 +1707874980,213,0 +1707874981,213,0 +1707874981,213,0 +1707874982,213,0 +1707874982,213,0 +1707874983,213,0 +1707874983,213,0 +1707874984,214,0 +1707874984,214,0 +1707874985,214,0 +1707874985,213,0 +1707874986,213,0 +1707874986,213,0 +1707874986,213,0 +1707874987,213,0 +1707874987,213,0 +1707874988,213,0 +1707874988,213,0 +1707874989,213,0 +1707874989,214,0 +1707874990,213,0 +1707874990,213,0 +1707874991,214,0 +1707874991,214,0 +1707874992,214,0 +1707874992,214,0 +1707874993,214,0 +1707874993,214,0 +1707874994,214,0 +1707874994,213,0 +1707874995,213,0 +1707874995,213,0 +1707874996,213,0 +1707874996,213,0 +1707874997,213,0 +1707874997,213,0 +1707874997,213,0 +1707874998,214,0 +1707874998,214,0 +1707874999,214,0 +1707874999,214,0 +1707875000,214,0 +1707875000,214,0 +1707875001,214,0 +1707875001,214,0 +1707875002,214,0 +1707875002,214,0 +1707875003,214,0 +1707875003,213,0 +1707875004,213,0 +1707875004,213,0 +1707875005,213,0 +1707875005,213,0 +1707875006,213,0 +1707875006,213,0 +1707875007,213,0 +1707875007,213,0 +1707875008,213,0 +1707875008,213,0 +1707875009,213,0 +1707875009,213,0 +1707875010,213,0 +1707875010,213,0 +1707875011,213,0 +1707875011,214,0 +1707875012,214,0 +1707875012,213,0 +1707875012,213,0 +1707875013,213,0 +1707875013,213,0 +1707875014,213,0 +1707875014,213,0 +1707875015,213,0 +1707875015,213,0 +1707875016,213,0 +1707875016,213,0 +1707875017,213,0 +1707875017,213,0 +1707875018,213,0 +1707875018,214,0 +1707875019,214,0 +1707875019,214,0 +1707875020,214,0 +1707875020,214,0 +1707875021,214,0 +1707875021,214,0 +1707875022,213,0 +1707875022,213,0 +1707875023,213,0 +1707875023,213,0 +1707875024,213,0 +1707875024,213,0 +1707875025,213,0 +1707875025,213,0 +1707875026,213,0 +1707875026,213,0 +1707875027,213,0 +1707875027,213,0 +1707875027,214,0 +1707875028,214,0 +1707875028,214,0 +1707875029,214,0 +1707875029,214,0 +1707875030,214,0 +1707875030,214,0 +1707875031,213,0 +1707875031,213,0 +1707875032,213,0 +1707875032,213,0 +1707875033,213,0 +1707875033,213,0 +1707875034,213,0 +1707875034,213,0 +1707875035,213,0 +1707875035,213,0 +1707875036,214,0 +1707875036,214,0 +1707875037,213,0 +1707875037,214,0 +1707875038,213,0 +1707875038,214,0 +1707875039,214,0 +1707875039,213,0 +1707875040,214,0 +1707875040,213,0 +1707875040,213,0 +1707875041,213,0 +1707875041,213,0 +1707875042,213,0 +1707875042,213,0 +1707875043,213,0 +1707875043,213,0 +1707875044,213,0 +1707875044,213,0 +1707875045,213,0 +1707875045,213,0 +1707875046,213,0 +1707875046,214,0 +1707875047,214,0 +1707875047,214,0 +1707875048,214,0 +1707875048,214,0 +1707875049,214,0 +1707875049,214,0 +1707875050,213,0 +1707875050,213,0 +1707875051,213,0 +1707875051,213,0 +1707875052,213,0 +1707875052,213,0 +1707875052,213,0 +1707875053,213,0 +1707875053,213,0 +1707875054,213,0 +1707875054,213,0 +1707875055,213,0 +1707875055,213,0 +1707875056,213,0 +1707875056,214,0 +1707875057,213,0 +1707875057,213,0 +1707875058,214,0 +1707875058,213,0 +1707875059,213,0 +1707875059,212,0 +1707875060,213,0 +1707875060,213,0 +1707875061,213,0 +1707875061,213,0 +1707875062,213,0 +1707875062,213,0 +1707875063,213,0 +1707875063,213,0 +1707875064,213,0 +1707875064,213,0 +1707875065,213,0 +1707875065,214,0 +1707875065,214,0 +1707875066,214,0 +1707875066,214,0 +1707875067,213,0 +1707875067,213,0 +1707875068,213,0 +1707875068,213,0 +1707875069,213,0 +1707875069,213,0 +1707875070,213,0 +1707875070,213,0 +1707875071,213,0 +1707875071,213,0 +1707875072,213,0 +1707875072,213,0 +1707875073,213,0 +1707875073,213,0 +1707875074,213,0 +1707875074,213,0 +1707875075,214,0 +1707875075,214,0 +1707875076,214,0 +1707875076,214,0 +1707875076,214,0 +1707875077,213,0 +1707875077,213,0 +1707875078,213,0 +1707875078,213,0 +1707875079,213,0 +1707875079,213,0 +1707875080,213,0 +1707875080,213,0 +1707875081,213,0 +1707875081,213,0 +1707875082,214,0 +1707875082,214,0 +1707875083,213,0 +1707875083,214,0 +1707875084,214,0 +1707875084,214,0 +1707875085,214,0 +1707875085,214,0 +1707875086,213,0 +1707875086,213,0 +1707875087,213,0 +1707875087,213,0 +1707875087,213,0 +1707875088,213,0 +1707875088,213,0 +1707875089,213,0 +1707875089,213,0 +1707875090,214,0 +1707875090,213,0 +1707875091,213,0 +1707875091,214,0 +1707875092,214,0 +1707875092,214,0 +1707875093,214,0 +1707875093,214,0 +1707875094,214,0 +1707875094,214,0 +1707875095,214,0 +1707875095,213,0 +1707875096,213,0 +1707875096,213,0 +1707875097,213,0 +1707875097,213,0 +1707875098,213,0 +1707875098,213,0 +1707875099,213,0 +1707875099,213,0 +1707875100,213,0 +1707875100,213,0 +1707875101,213,0 +1707875101,213,0 +1707875102,213,0 +1707875102,214,0 +1707875103,214,0 +1707875103,214,0 +1707875104,214,0 +1707875104,214,0 +1707875104,214,0 +1707875105,213,0 +1707875105,213,0 +1707875106,213,0 +1707875106,213,0 +1707875107,213,0 +1707875107,213,0 +1707875108,213,0 +1707875108,213,0 +1707875109,213,0 +1707875109,213,0 +1707875110,213,0 +1707875110,213,0 +1707875111,213,0 +1707875111,213,0 +1707875112,214,0 +1707875112,214,0 +1707875113,214,0 +1707875113,214,0 +1707875114,213,0 +1707875114,213,0 +1707875115,213,0 +1707875115,213,0 +1707875116,213,0 +1707875116,213,0 +1707875117,213,0 +1707875117,213,0 +1707875118,213,0 +1707875118,213,0 +1707875119,213,0 +1707875119,213,0 +1707875120,214,0 +1707875120,214,0 +1707875120,214,0 +1707875121,213,0 +1707875121,214,0 +1707875122,214,0 +1707875122,213,0 +1707875123,213,0 +1707875123,213,0 +1707875124,213,0 +1707875124,213,0 +1707875125,213,0 +1707875125,213,0 +1707875126,213,0 +1707875126,213,0 +1707875127,213,0 +1707875127,213,0 +1707875128,213,0 +1707875128,214,0 +1707875129,213,0 +1707875129,214,0 +1707875130,214,0 +1707875130,214,0 +1707875131,214,0 +1707875131,214,0 +1707875132,214,0 +1707875132,213,0 +1707875133,213,0 +1707875133,213,0 +1707875134,213,0 +1707875134,213,0 +1707875134,213,0 +1707875135,213,0 +1707875135,213,0 +1707875136,213,0 +1707875136,214,0 +1707875137,213,0 +1707875137,213,0 +1707875138,213,0 +1707875138,214,0 +1707875139,214,0 +1707875139,214,0 +1707875140,213,0 +1707875140,214,0 +1707875141,214,0 +1707875141,214,0 +1707875142,213,0 +1707875142,213,0 +1707875143,213,0 +1707875143,213,0 +1707875144,213,0 +1707875144,213,0 +1707875145,213,0 +1707875145,213,0 +1707875146,213,0 +1707875146,213,0 +1707875146,213,0 +1707875147,213,0 +1707875147,213,0 +1707875148,213,0 +1707875148,213,0 +1707875149,214,0 +1707875149,214,0 +1707875150,214,0 +1707875150,213,0 +1707875151,213,0 +1707875151,213,0 +1707875152,213,0 +1707875152,213,0 +1707875153,213,0 +1707875153,213,0 +1707875154,213,0 +1707875154,213,0 +1707875155,213,0 +1707875155,213,0 +1707875156,213,0 +1707875156,213,0 +1707875157,214,0 +1707875157,213,0 +1707875157,214,0 +1707875158,214,0 +1707875158,214,0 +1707875159,214,0 +1707875159,214,0 +1707875160,213,0 +1707875160,213,0 +1707875161,213,0 +1707875161,213,0 +1707875162,213,0 +1707875162,213,0 +1707875163,213,0 +1707875163,213,0 +1707875164,213,0 +1707875164,213,0 +1707875165,213,0 +1707875165,213,0 +1707875166,213,0 +1707875166,214,0 +1707875167,214,0 +1707875167,214,0 +1707875168,214,0 +1707875168,214,0 +1707875169,214,0 +1707875169,213,0 +1707875169,213,0 +1707875170,213,0 +1707875170,213,0 +1707875171,213,0 +1707875171,213,0 +1707875172,213,0 +1707875172,213,0 +1707875173,213,0 +1707875173,213,0 +1707875174,213,0 +1707875174,214,0 +1707875175,213,0 +1707875175,213,0 +1707875176,214,0 +1707875176,214,0 +1707875177,214,0 +1707875177,214,0 +1707875178,213,0 +1707875178,213,0 +1707875179,213,0 +1707875179,213,0 +1707875180,213,0 +1707875180,213,0 +1707875181,213,0 +1707875181,213,0 +1707875182,213,0 +1707875182,213,0 +1707875183,213,0 +1707875183,213,0 +1707875184,213,0 +1707875184,213,0 +1707875184,214,0 +1707875185,214,0 +1707875185,214,0 +1707875186,214,0 +1707875186,214,0 +1707875187,214,0 +1707875187,213,0 +1707875188,213,0 +1707875188,213,0 +1707875189,213,0 +1707875189,213,0 +1707875190,213,0 +1707875190,213,0 +1707875191,213,0 +1707875191,213,0 +1707875192,213,0 +1707875192,213,0 +1707875193,213,0 +1707875193,213,0 +1707875194,213,0 +1707875194,214,0 +1707875195,214,0 +1707875195,214,0 +1707875195,214,0 +1707875196,213,0 +1707875196,213,0 +1707875197,213,0 +1707875197,213,0 +1707875198,213,0 +1707875198,213,0 +1707875199,213,0 +1707875199,213,0 +1707875200,213,0 +1707875200,213,0 +1707875201,213,0 +1707875201,213,0 +1707875202,213,0 +1707875202,213,0 +1707875203,213,0 +1707875203,214,0 +1707875204,214,0 +1707875204,214,0 +1707875205,213,0 +1707875205,214,0 +1707875206,214,0 +1707875206,213,0 +1707875207,213,0 +1707875207,213,0 +1707875208,213,0 +1707875208,213,0 +1707875209,213,0 +1707875209,213,0 +1707875209,213,0 +1707875210,213,0 +1707875210,213,0 +1707875211,213,0 +1707875211,213,0 +1707875212,213,0 +1707875212,213,0 +1707875213,213,0 +1707875213,214,0 +1707875214,213,0 +1707875214,214,0 +1707875215,213,0 +1707875215,213,0 +1707875216,213,0 +1707875216,213,0 +1707875217,213,0 +1707875217,213,0 +1707875218,213,0 +1707875218,213,0 +1707875219,213,0 +1707875219,213,0 +1707875220,214,0 +1707875220,213,0 +1707875221,213,0 +1707875221,214,0 +1707875221,214,0 +1707875222,214,0 +1707875222,214,0 +1707875223,213,0 +1707875223,214,0 +1707875224,214,0 +1707875224,213,0 +1707875225,213,0 +1707875225,213,0 +1707875226,213,0 +1707875226,213,0 +1707875227,213,0 +1707875227,213,0 +1707875228,213,0 +1707875228,213,0 +1707875229,213,0 +1707875229,213,0 +1707875230,213,0 +1707875230,213,0 +1707875231,214,0 +1707875231,213,0 +1707875232,214,0 +1707875232,213,0 +1707875233,214,0 +1707875233,214,0 +1707875234,213,0 +1707875234,213,0 +1707875235,213,0 +1707875235,213,0 +1707875235,213,0 +1707875236,213,0 +1707875236,213,0 +1707875237,213,0 +1707875237,213,0 +1707875238,213,0 +1707875238,213,0 +1707875239,213,0 +1707875239,213,0 +1707875240,213,0 +1707875240,213,0 +1707875241,213,0 +1707875241,214,0 +1707875242,214,0 +1707875242,214,0 +1707875243,213,0 +1707875243,213,0 +1707875244,213,0 +1707875244,213,0 +1707875245,213,0 +1707875245,213,0 +1707875246,213,0 +1707875246,213,0 +1707875247,213,0 +1707875247,213,0 +1707875248,213,0 +1707875248,213,0 +1707875249,213,0 +1707875249,213,0 +1707875250,213,0 +1707875250,213,0 +1707875251,213,0 +1707875251,213,0 +1707875251,214,0 +1707875252,213,0 +1707875252,213,0 +1707875253,213,0 +1707875253,213,0 +1707875254,213,0 +1707875254,213,0 +1707875255,213,0 +1707875255,213,0 +1707875256,213,0 +1707875256,213,0 +1707875257,213,0 +1707875257,213,0 +1707875258,213,0 +1707875258,213,0 +1707875259,213,0 +1707875259,213,0 +1707875260,214,0 +1707875260,213,0 +1707875261,214,0 +1707875261,213,0 +1707875262,213,0 +1707875262,213,0 +1707875263,213,0 +1707875263,213,0 +1707875264,213,0 +1707875264,213,0 +1707875265,213,0 +1707875265,213,0 +1707875265,213,0 +1707875266,213,0 +1707875266,214,0 +1707875267,214,0 +1707875267,214,0 +1707875268,214,0 +1707875268,214,0 +1707875269,214,0 +1707875269,213,0 +1707875270,213,0 +1707875270,213,0 +1707875271,213,0 +1707875271,213,0 +1707875272,213,0 +1707875272,213,0 +1707875273,213,0 +1707875273,213,0 +1707875274,214,0 +1707875274,213,0 +1707875275,214,0 +1707875275,214,0 +1707875276,214,0 +1707875276,214,0 +1707875277,214,0 +1707875277,214,0 +1707875278,214,0 +1707875278,214,0 +1707875279,214,0 +1707875279,213,0 +1707875280,213,0 +1707875280,213,0 +1707875280,213,0 +1707875281,213,0 +1707875281,213,0 +1707875282,213,0 +1707875282,214,0 +1707875283,213,0 +1707875283,213,0 +1707875284,214,0 +1707875284,213,0 +1707875285,214,0 +1707875285,214,0 +1707875286,214,0 +1707875286,214,0 +1707875287,214,0 +1707875287,214,0 +1707875288,214,0 +1707875288,214,0 +1707875289,214,0 +1707875289,213,0 +1707875290,213,0 +1707875290,213,0 +1707875291,213,0 +1707875291,213,0 +1707875292,213,0 +1707875292,213,0 +1707875293,214,0 +1707875293,214,0 +1707875294,214,0 +1707875294,214,0 +1707875295,214,0 +1707875295,214,0 +1707875296,214,0 +1707875296,214,0 +1707875297,214,0 +1707875297,214,0 +1707875298,213,0 +1707875298,214,0 +1707875299,213,0 +1707875299,213,0 +1707875299,213,0 +1707875300,213,0 +1707875300,213,0 +1707875301,213,0 +1707875301,213,0 +1707875302,213,0 +1707875302,213,0 +1707875303,213,0 +1707875303,214,0 +1707875304,213,0 +1707875304,214,0 +1707875305,214,0 +1707875305,213,0 +1707875306,214,0 +1707875306,214,0 +1707875307,213,0 +1707875307,213,0 +1707875308,213,0 +1707875308,213,0 +1707875309,213,0 +1707875309,213,0 +1707875310,213,0 +1707875310,213,0 +1707875311,213,0 +1707875311,213,0 +1707875312,213,0 +1707875312,213,0 +1707875313,213,0 +1707875313,213,0 +1707875314,214,0 +1707875314,213,0 +1707875315,214,0 +1707875315,214,0 +1707875315,214,0 +1707875316,214,0 +1707875316,214,0 +1707875317,213,0 +1707875317,213,0 +1707875318,213,0 +1707875318,213,0 +1707875319,213,0 +1707875319,213,0 +1707875320,213,0 +1707875320,213,0 +1707875321,213,0 +1707875321,213,0 +1707875322,213,0 +1707875322,213,0 +1707875323,213,0 +1707875323,214,0 +1707875324,214,0 +1707875324,213,0 +1707875325,213,0 +1707875325,214,0 +1707875326,214,0 +1707875326,213,0 +1707875327,213,0 +1707875327,213,0 +1707875328,213,0 +1707875328,213,0 +1707875329,213,0 +1707875329,213,0 +1707875330,213,0 +1707875330,213,0 +1707875330,213,0 +1707875331,213,0 +1707875331,213,0 +1707875332,213,0 +1707875332,214,0 +1707875333,214,0 +1707875333,213,0 +1707875334,213,0 +1707875334,213,0 +1707875335,213,0 +1707875335,213,0 +1707875336,213,0 +1707875336,213,0 +1707875337,213,0 +1707875337,213,0 +1707875338,213,0 +1707875338,213,0 +1707875339,213,0 +1707875339,213,0 +1707875340,213,0 +1707875340,213,0 +1707875341,213,0 +1707875341,214,0 +1707875342,214,0 +1707875342,213,0 +1707875343,214,0 +1707875343,214,0 +1707875344,214,0 +1707875344,214,0 +1707875345,213,0 +1707875345,213,0 +1707875346,213,0 +1707875346,213,0 +1707875346,213,0 +1707875347,213,0 +1707875347,213,0 +1707875348,213,0 +1707875348,213,0 +1707875349,213,0 +1707875349,214,0 +1707875350,213,0 +1707875350,213,0 +1707875351,214,0 +1707875351,214,0 +1707875352,213,0 +1707875352,214,0 +1707875353,214,0 +1707875353,214,0 +1707875354,213,0 +1707875354,213,0 +1707875355,213,0 +1707875355,213,0 +1707875356,213,0 +1707875356,213,0 +1707875357,213,0 +1707875357,213,0 +1707875358,213,0 +1707875358,213,0 +1707875358,213,0 +1707875359,213,0 +1707875359,214,0 +1707875360,214,0 +1707875360,213,0 +1707875361,214,0 +1707875361,213,0 +1707875362,214,0 +1707875362,214,0 +1707875363,213,0 +1707875363,213,0 +1707875364,213,0 +1707875364,213,0 +1707875365,213,0 +1707875365,213,0 +1707875366,213,0 +1707875366,213,0 +1707875367,213,0 +1707875367,213,0 +1707875368,213,0 +1707875368,213,0 +1707875369,213,0 +1707875369,214,0 +1707875370,214,0 +1707875370,214,0 +1707875371,214,0 +1707875371,214,0 +1707875372,214,0 +1707875372,213,0 +1707875373,213,0 +1707875373,213,0 +1707875373,213,0 +1707875374,213,0 +1707875374,213,0 +1707875375,213,0 +1707875375,213,0 +1707875376,213,0 +1707875376,213,0 +1707875377,213,0 +1707875377,214,0 +1707875378,213,0 +1707875378,213,0 +1707875379,214,0 +1707875379,214,0 +1707875380,214,0 +1707875380,214,0 +1707875381,214,0 +1707875381,213,0 +1707875382,213,0 +1707875382,213,0 +1707875383,213,0 +1707875383,213,0 +1707875384,213,0 +1707875384,213,0 +1707875385,213,0 +1707875385,213,0 +1707875386,213,0 +1707875386,213,0 +1707875387,213,0 +1707875387,214,0 +1707875388,213,0 +1707875388,214,0 +1707875388,214,0 +1707875389,214,0 +1707875389,214,0 +1707875390,214,0 +1707875390,214,0 +1707875391,213,0 +1707875391,213,0 +1707875392,213,0 +1707875392,213,0 +1707875393,213,0 +1707875393,213,0 +1707875394,213,0 +1707875394,213,0 +1707875395,213,0 +1707875395,213,0 +1707875396,213,0 +1707875396,213,0 +1707875397,214,0 +1707875397,214,0 +1707875398,214,0 +1707875398,214,0 +1707875399,214,0 +1707875399,214,0 +1707875400,214,0 +1707875400,213,0 +1707875401,213,0 +1707875401,213,0 +1707875402,213,0 +1707875402,213,0 +1707875402,213,0 +1707875403,213,0 +1707875403,213,0 +1707875404,213,0 +1707875404,213,0 +1707875405,213,0 +1707875405,213,0 +1707875406,213,0 +1707875406,214,0 +1707875407,214,0 +1707875407,213,0 +1707875408,214,0 +1707875408,214,0 +1707875409,214,0 +1707875409,214,0 +1707875410,213,0 +1707875410,213,0 +1707875411,213,0 +1707875411,213,0 +1707875412,213,0 +1707875412,213,0 +1707875413,213,0 +1707875413,213,0 +1707875414,213,0 +1707875414,213,0 +1707875415,213,0 +1707875415,214,0 +1707875416,214,0 +1707875416,214,0 +1707875416,214,0 +1707875417,214,0 +1707875417,214,0 +1707875418,214,0 +1707875418,214,0 +1707875419,213,0 +1707875419,213,0 +1707875420,213,0 +1707875420,213,0 +1707875421,213,0 +1707875421,213,0 +1707875422,213,0 +1707875422,213,0 +1707875423,213,0 +1707875423,213,0 +1707875424,213,0 +1707875424,213,0 +1707875425,214,0 +1707875425,213,0 +1707875426,214,0 +1707875426,214,0 +1707875427,214,0 +1707875427,213,0 +1707875428,214,0 +1707875428,213,0 +1707875429,213,0 +1707875429,213,0 +1707875430,213,0 +1707875430,213,0 +1707875430,213,0 +1707875431,213,0 +1707875431,213,0 +1707875432,213,0 +1707875432,213,0 +1707875433,213,0 +1707875433,213,0 +1707875434,213,0 +1707875434,213,0 +1707875435,213,0 +1707875435,213,0 +1707875436,213,0 +1707875436,214,0 +1707875437,213,0 +1707875437,213,0 +1707875438,213,0 +1707875438,213,0 +1707875439,213,0 +1707875439,213,0 +1707875440,213,0 +1707875440,213,0 +1707875441,213,0 +1707875441,213,0 +1707875442,213,0 +1707875442,213,0 +1707875443,213,0 +1707875443,213,0 +1707875444,213,0 +1707875444,214,0 +1707875445,214,0 +1707875445,214,0 +1707875446,214,0 +1707875446,213,0 +1707875446,213,0 +1707875447,213,0 +1707875447,213,0 +1707875448,213,0 +1707875448,213,0 +1707875449,213,0 +1707875449,213,0 +1707875450,213,0 +1707875450,213,0 +1707875451,213,0 +1707875451,213,0 +1707875452,214,0 +1707875452,214,0 +1707875453,213,0 +1707875453,214,0 +1707875454,213,0 +1707875454,214,0 +1707875455,214,0 +1707875455,214,0 +1707875456,213,0 +1707875456,213,0 +1707875457,213,0 +1707875457,213,0 +1707875458,213,0 +1707875458,213,0 +1707875459,213,0 +1707875459,213,0 +1707875460,213,0 +1707875460,213,0 +1707875461,213,0 +1707875461,214,0 +1707875462,213,0 +1707875462,214,0 +1707875462,214,0 +1707875463,214,0 +1707875463,213,0 +1707875464,213,0 +1707875464,214,0 +1707875465,213,0 +1707875465,213,0 +1707875466,213,0 +1707875466,213,0 +1707875467,213,0 +1707875467,213,0 +1707875468,213,0 +1707875468,214,0 +1707875469,214,0 +1707875469,213,0 +1707875470,214,0 +1707875470,214,0 +1707875471,214,0 +1707875471,214,0 +1707875472,214,0 +1707875472,214,0 +1707875473,214,0 +1707875473,214,0 +1707875474,214,0 +1707875474,213,0 +1707875475,213,0 +1707875475,213,0 +1707875476,213,0 +1707875476,213,0 +1707875477,213,0 +1707875477,213,0 +1707875478,213,0 +1707875478,213,0 +1707875479,213,0 +1707875479,213,0 +1707875479,213,0 +1707875480,213,0 +1707875480,214,0 +1707875481,214,0 +1707875481,213,0 +1707875482,214,0 +1707875482,214,0 +1707875483,214,0 +1707875483,214,0 +1707875484,213,0 +1707875484,212,0 +1707875485,213,0 +1707875485,213,0 +1707875486,213,0 +1707875486,213,0 +1707875487,213,0 +1707875487,213,0 +1707875488,213,0 +1707875488,213,0 +1707875489,213,0 +1707875489,213,0 +1707875490,213,0 +1707875490,213,0 +1707875491,213,0 +1707875491,213,0 +1707875492,214,0 +1707875492,214,0 +1707875493,213,0 +1707875493,213,0 +1707875494,213,0 +1707875494,213,0 +1707875495,213,0 +1707875495,213,0 +1707875495,213,0 +1707875496,213,0 +1707875496,213,0 +1707875497,213,0 +1707875497,213,0 +1707875498,213,0 +1707875498,213,0 +1707875499,213,0 +1707875499,214,0 +1707875500,214,0 +1707875500,214,0 +1707875501,213,0 +1707875501,214,0 +1707875502,214,0 +1707875502,213,0 +1707875503,213,0 +1707875503,213,0 +1707875504,213,0 +1707875504,213,0 +1707875505,213,0 +1707875505,213,0 +1707875506,213,0 +1707875506,213,0 +1707875507,213,0 +1707875507,213,0 +1707875508,213,0 +1707875508,213,0 +1707875509,214,0 +1707875509,214,0 +1707875509,214,0 +1707875510,214,0 +1707875510,214,0 +1707875511,213,0 +1707875511,213,0 +1707875512,213,0 +1707875512,213,0 +1707875513,213,0 +1707875513,213,0 +1707875514,213,0 +1707875514,213,0 +1707875515,213,0 +1707875515,213,0 +1707875516,213,0 +1707875516,213,0 +1707875517,213,0 +1707875517,214,0 +1707875518,214,0 +1707875518,214,0 +1707875519,214,0 +1707875519,214,0 +1707875520,214,0 +1707875520,214,0 +1707875521,213,0 +1707875521,213,0 +1707875522,213,0 +1707875522,213,0 +1707875523,213,0 +1707875523,213,0 +1707875524,213,0 +1707875524,213,0 +1707875525,213,0 +1707875525,213,0 +1707875526,214,0 +1707875526,213,0 +1707875526,213,0 +1707875527,214,0 +1707875527,213,0 +1707875528,214,0 +1707875528,214,0 +1707875529,214,0 +1707875529,214,0 +1707875530,213,0 +1707875530,213,0 +1707875531,213,0 +1707875531,213,0 +1707875532,213,0 +1707875532,213,0 +1707875533,213,0 +1707875533,213,0 +1707875534,213,0 +1707875534,213,0 +1707875535,213,0 +1707875535,213,0 +1707875536,214,0 +1707875536,214,0 +1707875537,214,0 +1707875537,214,0 +1707875538,214,0 +1707875538,214,0 +1707875539,214,0 +1707875539,213,0 +1707875540,213,0 +1707875540,213,0 +1707875541,213,0 +1707875541,213,0 +1707875542,213,0 +1707875542,213,0 +1707875543,213,0 +1707875543,213,0 +1707875543,213,0 +1707875544,213,0 +1707875544,213,0 +1707875545,213,0 +1707875545,214,0 +1707875546,213,0 +1707875546,214,0 +1707875547,214,0 +1707875547,214,0 +1707875548,214,0 +1707875548,214,0 +1707875549,213,0 +1707875549,213,0 +1707875550,213,0 +1707875550,213,0 +1707875551,213,0 +1707875551,213,0 +1707875552,213,0 +1707875552,213,0 +1707875553,213,0 +1707875553,213,0 +1707875554,213,0 +1707875554,213,0 +1707875555,213,0 +1707875555,213,0 +1707875556,214,0 +1707875556,214,0 +1707875557,214,0 +1707875557,214,0 +1707875557,214,0 +1707875558,213,0 +1707875558,213,0 +1707875559,213,0 +1707875559,213,0 +1707875560,213,0 +1707875560,213,0 +1707875561,213,0 +1707875561,213,0 +1707875562,214,0 +1707875562,214,0 +1707875563,214,0 +1707875563,214,0 +1707875564,214,0 +1707875564,214,0 +1707875565,214,0 +1707875565,214,0 +1707875566,214,0 +1707875566,214,0 +1707875567,213,0 +1707875567,213,0 +1707875568,213,0 +1707875568,213,0 +1707875569,213,0 +1707875569,213,0 +1707875570,213,0 +1707875570,213,0 +1707875571,213,0 +1707875571,213,0 +1707875572,214,0 +1707875572,214,0 +1707875573,214,0 +1707875573,214,0 +1707875573,214,0 +1707875574,214,0 +1707875574,214,0 +1707875575,214,0 +1707875575,214,0 +1707875576,214,0 +1707875576,213,0 +1707875577,213,0 +1707875577,213,0 +1707875578,213,0 +1707875578,213,0 +1707875579,213,0 +1707875579,213,0 +1707875580,213,0 +1707875580,213,0 +1707875581,213,0 +1707875581,213,0 +1707875582,213,0 +1707875582,214,0 +1707875583,213,0 +1707875583,214,0 +1707875584,214,0 +1707875584,214,0 +1707875585,214,0 +1707875585,214,0 +1707875586,213,0 +1707875586,213,0 +1707875587,213,0 +1707875587,213,0 +1707875588,213,0 +1707875588,213,0 +1707875589,213,0 +1707875589,213,0 +1707875590,214,0 +1707875590,213,0 +1707875591,213,0 +1707875591,214,0 +1707875591,213,0 +1707875592,213,0 +1707875592,214,0 +1707875593,214,0 +1707875593,214,0 +1707875594,214,0 +1707875594,213,0 +1707875595,213,0 +1707875595,213,0 +1707875596,213,0 +1707875596,213,0 +1707875597,213,0 +1707875597,213,0 +1707875598,213,0 +1707875598,213,0 +1707875599,213,0 +1707875599,213,0 +1707875600,214,0 +1707875600,213,0 +1707875601,214,0 +1707875601,213,0 +1707875602,214,0 +1707875602,213,0 +1707875603,214,0 +1707875603,214,0 +1707875604,214,0 +1707875604,213,0 +1707875605,213,0 +1707875605,213,0 +1707875606,213,0 +1707875606,213,0 +1707875606,213,0 +1707875607,213,0 +1707875607,213,0 +1707875608,213,0 +1707875608,213,0 +1707875609,213,0 +1707875609,213,0 +1707875610,213,0 +1707875610,213,0 +1707875611,214,0 +1707875611,213,0 +1707875612,214,0 +1707875612,214,0 +1707875613,214,0 +1707875613,214,0 +1707875614,213,0 +1707875614,213,0 +1707875615,213,0 +1707875615,213,0 +1707875616,213,0 +1707875616,213,0 +1707875617,213,0 +1707875617,213,0 +1707875618,213,0 +1707875618,213,0 +1707875619,213,0 +1707875619,213,0 +1707875619,214,0 +1707875620,214,0 +1707875620,214,0 +1707875621,214,0 +1707875621,214,0 +1707875622,213,0 +1707875622,213,0 +1707875623,213,0 +1707875623,213,0 +1707875624,213,0 +1707875624,213,0 +1707875625,213,0 +1707875625,213,0 +1707875626,213,0 +1707875626,213,0 +1707875627,213,0 +1707875627,213,0 +1707875628,213,0 +1707875628,213,0 +1707875629,214,0 +1707875629,213,0 +1707875630,213,0 +1707875630,213,0 +1707875631,213,0 +1707875631,213,0 +1707875632,213,0 +1707875632,213,0 +1707875633,213,0 +1707875633,213,0 +1707875634,213,0 +1707875634,213,0 +1707875634,213,0 +1707875635,213,0 +1707875635,213,0 +1707875636,213,0 +1707875636,213,0 +1707875637,213,0 +1707875637,213,0 +1707875638,213,0 +1707875638,213,0 +1707875639,214,0 +1707875639,214,0 +1707875640,214,0 +1707875640,214,0 +1707875641,213,0 +1707875641,213,0 +1707875642,213,0 +1707875642,213,0 +1707875643,213,0 +1707875643,213,0 +1707875644,213,0 +1707875644,213,0 +1707875645,213,0 +1707875645,213,0 +1707875646,213,0 +1707875646,213,0 +1707875647,213,0 +1707875647,214,0 +1707875648,214,0 +1707875648,213,0 +1707875648,214,0 +1707875649,213,0 +1707875649,214,0 +1707875650,214,0 +1707875650,213,0 +1707875651,213,0 +1707875651,213,0 +1707875652,213,0 +1707875652,213,0 +1707875653,213,0 +1707875653,213,0 +1707875654,213,0 +1707875654,213,0 +1707875655,213,0 +1707875655,214,0 +1707875656,214,0 +1707875656,214,0 +1707875657,214,0 +1707875657,214,0 +1707875658,214,0 +1707875658,214,0 +1707875659,214,0 +1707875659,213,0 +1707875660,213,0 +1707875660,213,0 +1707875661,213,0 +1707875661,213,0 +1707875661,213,0 +1707875662,213,0 +1707875662,213,0 +1707875663,213,0 +1707875663,214,0 +1707875664,213,0 +1707875664,214,0 +1707875665,214,0 +1707875665,213,0 +1707875666,214,0 +1707875666,214,0 +1707875667,214,0 +1707875667,214,0 +1707875668,214,0 +1707875668,214,0 +1707875669,213,0 +1707875669,213,0 +1707875670,213,0 +1707875670,213,0 +1707875671,213,0 +1707875671,213,0 +1707875672,213,0 +1707875672,213,0 +1707875673,213,0 +1707875673,214,0 +1707875674,213,0 +1707875674,213,0 +1707875675,214,0 +1707875675,214,0 +1707875676,214,0 +1707875676,214,0 +1707875676,214,0 +1707875677,214,0 +1707875677,214,0 +1707875678,214,0 +1707875678,213,0 +1707875679,213,0 +1707875679,213,0 +1707875680,213,0 +1707875680,213,0 +1707875681,213,0 +1707875681,213,0 +1707875682,213,0 +1707875682,213,0 +1707875683,213,0 +1707875683,213,0 +1707875684,213,0 +1707875684,214,0 +1707875685,214,0 +1707875685,214,0 +1707875686,214,0 +1707875686,214,0 +1707875687,214,0 +1707875687,214,0 +1707875688,213,0 +1707875688,213,0 +1707875689,213,0 +1707875689,213,0 +1707875690,213,0 +1707875690,213,0 +1707875691,213,0 +1707875691,213,0 +1707875692,213,0 +1707875692,213,0 +1707875693,213,0 +1707875693,214,0 +1707875693,213,0 +1707875694,214,0 +1707875694,214,0 +1707875695,214,0 +1707875695,214,0 +1707875696,214,0 +1707875696,214,0 +1707875697,213,0 +1707875697,213,0 +1707875698,213,0 +1707875698,213,0 +1707875699,213,0 +1707875699,213,0 +1707875700,213,0 +1707875700,213,0 +1707875701,213,0 +1707875701,213,0 +1707875702,213,0 +1707875702,213,0 +1707875703,214,0 +1707875703,214,0 +1707875704,214,0 +1707875704,214,0 +1707875705,213,0 +1707875705,214,0 +1707875706,214,0 +1707875706,213,0 +1707875706,213,0 +1707875707,213,0 +1707875707,213,0 +1707875708,213,0 +1707875708,213,0 +1707875709,213,0 +1707875709,213,0 +1707875710,213,0 +1707875710,213,0 +1707875711,213,0 +1707875711,213,0 +1707875712,213,0 +1707875712,214,0 +1707875713,213,0 +1707875713,214,0 +1707875714,213,0 +1707875714,213,0 +1707875715,214,0 +1707875715,214,0 +1707875716,213,0 +1707875716,213,0 +1707875717,213,0 +1707875717,213,0 +1707875718,213,0 +1707875718,213,0 +1707875719,213,0 +1707875719,213,0 +1707875719,213,0 +1707875720,213,0 +1707875720,213,0 +1707875721,213,0 +1707875721,213,0 +1707875722,213,0 +1707875722,214,0 +1707875723,213,0 +1707875723,213,0 +1707875724,214,0 +1707875724,213,0 +1707875725,213,0 +1707875725,213,0 +1707875726,213,0 +1707875726,213,0 +1707875727,213,0 +1707875727,213,0 +1707875728,213,0 +1707875728,213,0 +1707875729,213,0 +1707875729,213,0 +1707875730,213,0 +1707875730,213,0 +1707875730,213,0 +1707875731,213,0 +1707875731,213,0 +1707875732,213,0 +1707875732,214,0 +1707875733,214,0 +1707875733,214,0 +1707875734,213,0 +1707875734,213,0 +1707875735,213,0 +1707875735,213,0 +1707875736,213,0 +1707875736,213,0 +1707875737,213,0 +1707875737,213,0 +1707875738,213,0 +1707875738,213,0 +1707875739,213,0 +1707875739,213,0 +1707875740,213,0 +1707875740,213,0 +1707875741,214,0 +1707875741,213,0 +1707875742,214,0 +1707875742,214,0 +1707875743,214,0 +1707875743,213,0 +1707875744,213,0 +1707875744,213,0 +1707875744,213,0 +1707875745,213,0 +1707875745,213,0 +1707875746,213,0 +1707875746,213,0 +1707875747,213,0 +1707875747,213,0 +1707875748,213,0 +1707875748,213,0 +1707875749,213,0 +1707875749,213,0 +1707875750,213,0 +1707875750,213,0 +1707875751,213,0 +1707875751,213,0 +1707875752,213,0 +1707875752,213,0 +1707875753,213,0 +1707875753,213,0 +1707875754,213,0 +1707875754,213,0 +1707875755,213,0 +1707875755,213,0 +1707875756,213,0 +1707875756,213,0 +1707875757,213,0 +1707875757,213,0 +1707875758,213,0 +1707875758,213,0 +1707875759,213,0 +1707875759,213,0 +1707875760,213,0 +1707875760,213,0 +1707875761,213,0 +1707875761,214,0 +1707875761,213,0 +1707875762,213,0 +1707875762,213,0 +1707875763,213,0 +1707875763,213,0 +1707875764,213,0 +1707875764,213,0 +1707875765,213,0 +1707875765,213,0 +1707875766,213,0 +1707875766,213,0 +1707875767,213,0 +1707875767,213,0 +1707875768,213,0 +1707875768,213,0 +1707875769,213,0 +1707875769,214,0 +1707875770,214,0 +1707875770,214,0 +1707875771,214,0 +1707875771,213,0 +1707875772,213,0 +1707875772,213,0 +1707875773,213,0 +1707875773,213,0 +1707875774,213,0 +1707875774,213,0 +1707875775,213,0 +1707875775,213,0 +1707875776,213,0 +1707875776,213,0 +1707875777,213,0 +1707875777,213,0 +1707875777,214,0 +1707875778,214,0 +1707875778,214,0 +1707875779,214,0 +1707875779,213,0 +1707875780,213,0 +1707875780,213,0 +1707875781,213,0 +1707875781,213,0 +1707875782,213,0 +1707875782,213,0 +1707875783,213,0 +1707875783,213,0 +1707875784,213,0 +1707875784,213,0 +1707875785,213,0 +1707875785,213,0 +1707875786,213,0 +1707875786,213,0 +1707875787,213,0 +1707875787,213,0 +1707875788,213,0 +1707875788,213,0 +1707875789,214,0 +1707875789,214,0 +1707875790,213,0 +1707875790,213,0 +1707875791,213,0 +1707875791,213,0 +1707875792,213,0 +1707875792,213,0 +1707875793,213,0 +1707875793,213,0 +1707875793,213,0 +1707875794,213,0 +1707875794,213,0 +1707875795,213,0 +1707875795,213,0 +1707875796,213,0 +1707875796,213,0 +1707875797,213,0 +1707875797,213,0 +1707875798,213,0 +1707875798,214,0 +1707875799,213,0 +1707875799,213,0 +1707875800,213,0 +1707875800,213,0 +1707875801,213,0 +1707875801,213,0 +1707875802,213,0 +1707875802,213,0 +1707875803,213,0 +1707875803,213,0 +1707875804,213,0 +1707875804,213,0 +1707875805,213,0 +1707875805,213,0 +1707875806,214,0 +1707875806,213,0 +1707875806,213,0 +1707875807,214,0 +1707875807,213,0 +1707875808,213,0 +1707875808,213,0 +1707875809,213,0 +1707875809,213,0 +1707875810,213,0 +1707875810,213,0 +1707875811,213,0 +1707875811,213,0 +1707875812,213,0 +1707875812,213,0 +1707875813,213,0 +1707875813,213,0 +1707875814,213,0 +1707875814,213,0 +1707875815,213,0 +1707875815,214,0 +1707875816,214,0 +1707875816,213,0 +1707875817,214,0 +1707875817,213,0 +1707875818,213,0 +1707875818,213,0 +1707875819,213,0 +1707875819,213,0 +1707875819,213,0 +1707875820,213,0 +1707875820,213,0 +1707875821,213,0 +1707875821,213,0 +1707875822,213,0 +1707875822,213,0 +1707875823,213,0 +1707875823,213,0 +1707875824,214,0 +1707875824,213,0 +1707875825,214,0 +1707875825,214,0 +1707875826,214,0 +1707875826,214,0 +1707875827,213,0 +1707875827,213,0 +1707875828,213,0 +1707875828,213,0 +1707875829,213,0 +1707875829,213,0 +1707875830,213,0 +1707875830,213,0 +1707875831,213,0 +1707875831,213,0 +1707875832,213,0 +1707875832,213,0 +1707875832,213,0 +1707875833,214,0 +1707875833,214,0 +1707875834,214,0 +1707875834,214,0 +1707875835,214,0 +1707875835,214,0 +1707875836,213,0 +1707875836,213,0 +1707875837,213,0 +1707875837,213,0 +1707875838,213,0 +1707875838,213,0 +1707875839,213,0 +1707875839,213,0 +1707875840,214,0 +1707875840,213,0 +1707875841,214,0 +1707875841,214,0 +1707875842,214,0 +1707875842,214,0 +1707875843,214,0 +1707875843,214,0 +1707875844,214,0 +1707875844,214,0 +1707875845,214,0 +1707875845,214,0 +1707875846,214,0 +1707875846,214,0 +1707875847,214,0 +1707875847,214,0 +1707875848,214,0 +1707875848,214,0 +1707875849,214,0 +1707875849,214,0 +1707875849,214,0 +1707875850,214,0 +1707875850,214,0 +1707875851,214,0 +1707875851,214,0 +1707875852,214,0 +1707875852,214,0 +1707875853,214,0 +1707875853,214,0 +1707875854,214,0 +1707875854,213,0 +1707875855,213,0 +1707875855,213,0 +1707875856,213,0 +1707875856,213,0 +1707875857,214,0 +1707875857,214,0 +1707875858,214,0 +1707875858,214,0 +1707875859,214,0 +1707875859,213,0 +1707875860,213,0 +1707875860,214,0 +1707875861,214,0 +1707875861,214,0 +1707875861,214,0 +1707875862,214,0 +1707875862,214,0 +1707875863,214,0 +1707875863,213,0 +1707875864,213,0 +1707875864,213,0 +1707875865,213,0 +1707875865,213,0 +1707875866,213,0 +1707875866,213,0 +1707875867,213,0 +1707875867,213,0 +1707875868,213,0 +1707875868,213,0 +1707875869,213,0 +1707875869,213,0 +1707875870,214,0 +1707875870,214,0 +1707875871,214,0 +1707875871,214,0 +1707875872,214,0 +1707875872,214,0 +1707875872,214,0 +1707875873,213,0 +1707875873,213,0 +1707875874,213,0 +1707875874,213,0 +1707875875,213,0 +1707875875,213,0 +1707875876,213,0 +1707875876,213,0 +1707875877,213,0 +1707875877,213,0 +1707875878,213,0 +1707875878,213,0 +1707875879,213,0 +1707875879,213,0 +1707875880,213,0 +1707875880,213,0 +1707875881,214,0 +1707875881,214,0 +1707875882,213,0 +1707875882,213,0 +1707875883,213,0 +1707875883,213,0 +1707875884,213,0 +1707875884,213,0 +1707875885,213,0 +1707875885,213,0 +1707875886,213,0 +1707875886,213,0 +1707875887,213,0 +1707875887,213,0 +1707875888,213,0 +1707875888,213,0 +1707875889,214,0 +1707875889,213,0 +1707875890,214,0 +1707875890,214,0 +1707875890,213,0 +1707875891,213,0 +1707875891,213,0 +1707875892,213,0 +1707875892,213,0 +1707875893,213,0 +1707875893,213,0 +1707875894,213,0 +1707875894,213,0 +1707875895,213,0 +1707875895,213,0 +1707875896,213,0 +1707875896,213,0 +1707875897,213,0 +1707875897,213,0 +1707875898,213,0 +1707875898,213,0 +1707875899,213,0 +1707875899,213,0 +1707875900,213,0 +1707875900,214,0 +1707875901,214,0 +1707875901,213,0 +1707875902,213,0 +1707875902,213,0 +1707875903,213,0 +1707875903,213,0 +1707875903,213,0 +1707875904,213,0 +1707875904,213,0 +1707875905,213,0 +1707875905,213,0 +1707875906,213,0 +1707875906,213,0 +1707875907,213,0 +1707875907,213,0 +1707875908,214,0 +1707875908,214,0 +1707875909,214,0 +1707875909,214,0 +1707875910,214,0 +1707875910,213,0 +1707875911,213,0 +1707875911,213,0 +1707875912,213,0 +1707875912,213,0 +1707875913,213,0 +1707875913,213,0 +1707875914,213,0 +1707875914,213,0 +1707875915,213,0 +1707875915,214,0 +1707875916,213,0 +1707875916,213,0 +1707875917,214,0 +1707875917,214,0 +1707875917,214,0 +1707875918,214,0 +1707875918,214,0 +1707875919,213,0 +1707875919,213,0 +1707875920,213,0 +1707875920,213,0 +1707875921,213,0 +1707875921,213,0 +1707875922,213,0 +1707875922,213,0 +1707875923,213,0 +1707875923,213,0 +1707875924,213,0 +1707875924,213,0 +1707875925,214,0 +1707875925,213,0 +1707875926,214,0 +1707875926,214,0 +1707875927,214,0 +1707875927,214,0 +1707875928,213,0 +1707875928,214,0 +1707875929,213,0 +1707875929,213,0 +1707875930,213,0 +1707875930,213,0 +1707875931,213,0 +1707875931,213,0 +1707875931,213,0 +1707875932,213,0 +1707875932,213,0 +1707875933,213,0 +1707875933,213,0 +1707875934,213,0 +1707875934,213,0 +1707875935,213,0 +1707875935,213,0 +1707875936,213,0 +1707875936,214,0 +1707875937,214,0 +1707875937,213,0 +1707875938,213,0 +1707875938,213,0 +1707875939,213,0 +1707875939,213,0 +1707875940,213,0 +1707875940,213,0 +1707875941,213,0 +1707875941,213,0 +1707875942,213,0 +1707875942,213,0 +1707875943,213,0 +1707875943,213,0 +1707875944,213,0 +1707875944,213,0 +1707875944,213,0 +1707875945,213,0 +1707875945,214,0 +1707875946,213,0 +1707875946,213,0 +1707875947,214,0 +1707875947,213,0 +1707875948,213,0 +1707875948,213,0 +1707875949,213,0 +1707875949,213,0 +1707875950,213,0 +1707875950,213,0 +1707875951,213,0 +1707875951,213,0 +1707875952,213,0 +1707875952,213,0 +1707875953,213,0 +1707875953,214,0 +1707875954,213,0 +1707875954,213,0 +1707875955,213,0 +1707875955,214,0 +1707875956,213,0 +1707875956,214,0 +1707875957,213,0 +1707875957,213,0 +1707875958,213,0 +1707875958,213,0 +1707875959,213,0 +1707875959,213,0 +1707875960,213,0 +1707875960,213,0 +1707875961,213,0 +1707875961,213,0 +1707875961,213,0 +1707875962,214,0 +1707875962,213,0 +1707875963,213,0 +1707875963,214,0 +1707875964,214,0 +1707875964,213,0 +1707875965,214,0 +1707875965,214,0 +1707875966,213,0 +1707875966,213,0 +1707875967,213,0 +1707875967,213,0 +1707875968,213,0 +1707875968,213,0 +1707875969,213,0 +1707875969,213,0 +1707875970,213,0 +1707875970,213,0 +1707875971,213,0 +1707875971,213,0 +1707875972,213,0 +1707875972,213,0 +1707875973,214,0 +1707875973,214,0 +1707875974,214,0 +1707875974,214,0 +1707875975,214,0 +1707875975,213,0 +1707875976,213,0 +1707875976,213,0 +1707875977,213,0 +1707875977,213,0 +1707875978,213,0 +1707875978,213,0 +1707875979,213,0 +1707875979,213,0 +1707875980,213,0 +1707875980,213,0 +1707875980,213,0 +1707875981,213,0 +1707875981,213,0 +1707875982,214,0 +1707875982,214,0 +1707875983,214,0 +1707875983,214,0 +1707875984,214,0 +1707875984,213,0 +1707875985,213,0 +1707875985,213,0 +1707875986,213,0 +1707875986,213,0 +1707875987,213,0 +1707875987,213,0 +1707875988,213,0 +1707875988,213,0 +1707875989,213,0 +1707875989,213,0 +1707875990,213,0 +1707875990,213,0 +1707875991,213,0 +1707875991,213,0 +1707875992,214,0 +1707875992,214,0 +1707875993,214,0 +1707875993,213,0 +1707875994,213,0 +1707875994,213,0 +1707875995,213,0 +1707875995,213,0 +1707875996,213,0 +1707875996,213,0 +1707875997,213,0 +1707875997,213,0 +1707875998,213,0 +1707875998,213,0 +1707875998,213,0 +1707875999,213,0 +1707875999,213,0 diff --git a/laser_value/0214-12.csv b/laser_value/0214-12.csv new file mode 100644 index 0000000..7d53b5a --- /dev/null +++ b/laser_value/0214-12.csv @@ -0,0 +1,7446 @@ +timestamp,laser_value,event +1707876000,213,0 +1707876000,213,0 +1707876001,213,0 +1707876001,214,0 +1707876002,214,0 +1707876002,214,0 +1707876003,214,0 +1707876003,213,0 +1707876004,213,0 +1707876004,213,0 +1707876005,213,0 +1707876005,213,0 +1707876006,213,0 +1707876006,213,0 +1707876007,213,0 +1707876007,213,0 +1707876008,213,0 +1707876008,213,0 +1707876009,213,0 +1707876009,213,0 +1707876010,213,0 +1707876010,213,0 +1707876011,214,0 +1707876011,213,0 +1707876012,214,0 +1707876012,214,0 +1707876013,213,0 +1707876013,213,0 +1707876014,213,0 +1707876014,213,0 +1707876015,213,0 +1707876015,213,0 +1707876015,213,0 +1707876016,213,0 +1707876016,213,0 +1707876017,213,0 +1707876017,213,0 +1707876018,213,0 +1707876018,213,0 +1707876019,214,0 +1707876019,213,0 +1707876020,214,0 +1707876020,214,0 +1707876021,214,0 +1707876021,214,0 +1707876022,213,0 +1707876022,213,0 +1707876023,213,0 +1707876023,213,0 +1707876024,213,0 +1707876024,213,0 +1707876025,213,0 +1707876025,213,0 +1707876026,213,0 +1707876026,213,0 +1707876027,213,0 +1707876027,214,0 +1707876028,213,0 +1707876028,213,0 +1707876029,213,0 +1707876029,213,0 +1707876030,213,0 +1707876030,213,0 +1707876030,213,0 +1707876031,213,0 +1707876031,213,0 +1707876032,213,0 +1707876032,213,0 +1707876033,213,0 +1707876033,213,0 +1707876034,213,0 +1707876034,213,0 +1707876035,213,0 +1707876035,214,0 +1707876036,213,0 +1707876036,214,0 +1707876037,214,0 +1707876037,214,0 +1707876038,214,0 +1707876038,214,0 +1707876039,214,0 +1707876039,214,0 +1707876040,214,0 +1707876040,214,0 +1707876041,213,0 +1707876041,213,0 +1707876042,213,0 +1707876042,213,0 +1707876043,213,0 +1707876043,213,0 +1707876044,213,0 +1707876044,213,0 +1707876045,214,0 +1707876045,214,0 +1707876046,214,0 +1707876046,214,0 +1707876046,214,0 +1707876047,214,0 +1707876047,214,0 +1707876048,214,0 +1707876048,214,0 +1707876049,214,0 +1707876049,214,0 +1707876050,213,0 +1707876050,213,0 +1707876051,213,0 +1707876051,213,0 +1707876052,213,0 +1707876052,213,0 +1707876053,213,0 +1707876053,213,0 +1707876054,213,0 +1707876054,213,0 +1707876055,213,0 +1707876055,214,0 +1707876056,213,0 +1707876056,214,0 +1707876057,213,0 +1707876057,213,0 +1707876058,213,0 +1707876058,214,0 +1707876059,214,0 +1707876059,213,0 +1707876060,213,0 +1707876060,213,0 +1707876061,213,0 +1707876061,213,0 +1707876061,213,0 +1707876062,213,0 +1707876062,213,0 +1707876063,213,0 +1707876063,213,0 +1707876064,213,0 +1707876064,213,0 +1707876065,213,0 +1707876065,213,0 +1707876066,214,0 +1707876066,213,0 +1707876067,213,0 +1707876067,213,0 +1707876068,214,0 +1707876068,213,0 +1707876069,213,0 +1707876069,213,0 +1707876070,213,0 +1707876070,213,0 +1707876071,213,0 +1707876071,213,0 +1707876072,213,0 +1707876072,213,0 +1707876073,213,0 +1707876073,213,0 +1707876074,213,0 +1707876074,213,0 +1707876075,214,0 +1707876075,213,0 +1707876076,213,0 +1707876076,214,0 +1707876077,214,0 +1707876077,214,0 +1707876078,213,0 +1707876078,213,0 +1707876079,213,0 +1707876079,213,0 +1707876079,213,0 +1707876080,213,0 +1707876080,213,0 +1707876081,213,0 +1707876081,213,0 +1707876082,213,0 +1707876082,213,0 +1707876083,213,0 +1707876083,213,0 +1707876084,214,0 +1707876084,214,0 +1707876085,214,0 +1707876085,214,0 +1707876086,214,0 +1707876086,214,0 +1707876087,213,0 +1707876087,213,0 +1707876088,213,0 +1707876088,213,0 +1707876089,213,0 +1707876089,213,0 +1707876090,213,0 +1707876090,213,0 +1707876091,213,0 +1707876091,213,0 +1707876092,213,0 +1707876092,213,0 +1707876093,213,0 +1707876093,213,0 +1707876094,214,0 +1707876094,214,0 +1707876095,213,0 +1707876095,214,0 +1707876095,214,0 +1707876096,213,0 +1707876096,213,0 +1707876097,213,0 +1707876097,213,0 +1707876098,213,0 +1707876098,213,0 +1707876099,213,0 +1707876099,213,0 +1707876100,213,0 +1707876100,213,0 +1707876101,213,0 +1707876101,213,0 +1707876102,214,0 +1707876102,214,0 +1707876103,214,0 +1707876103,214,0 +1707876104,214,0 +1707876104,214,0 +1707876105,214,0 +1707876105,214,0 +1707876106,213,0 +1707876106,213,0 +1707876107,213,0 +1707876107,213,0 +1707876108,213,0 +1707876108,213,0 +1707876109,213,0 +1707876109,213,0 +1707876110,213,0 +1707876110,213,0 +1707876111,213,0 +1707876111,214,0 +1707876112,214,0 +1707876112,214,0 +1707876112,213,0 +1707876113,214,0 +1707876113,213,0 +1707876114,214,0 +1707876114,213,0 +1707876115,213,0 +1707876115,213,0 +1707876116,213,0 +1707876116,213,0 +1707876117,213,0 +1707876117,213,0 +1707876118,213,0 +1707876118,213,0 +1707876119,213,0 +1707876119,213,0 +1707876120,213,0 +1707876120,214,0 +1707876121,214,0 +1707876121,214,0 +1707876122,214,0 +1707876122,214,0 +1707876123,214,0 +1707876123,214,0 +1707876124,214,0 +1707876124,213,0 +1707876125,213,0 +1707876125,213,0 +1707876125,213,0 +1707876126,213,0 +1707876126,213,0 +1707876127,213,0 +1707876127,213,0 +1707876128,213,0 +1707876128,213,0 +1707876129,213,0 +1707876129,214,0 +1707876130,214,0 +1707876130,214,0 +1707876131,214,0 +1707876131,214,0 +1707876132,214,0 +1707876132,214,0 +1707876133,214,0 +1707876133,213,0 +1707876134,213,0 +1707876134,213,0 +1707876135,213,0 +1707876135,213,0 +1707876136,213,0 +1707876136,213,0 +1707876137,213,0 +1707876137,213,0 +1707876138,213,0 +1707876138,213,0 +1707876139,213,0 +1707876139,213,0 +1707876140,213,0 +1707876140,214,0 +1707876141,214,0 +1707876141,214,0 +1707876142,214,0 +1707876142,214,0 +1707876142,214,0 +1707876143,213,0 +1707876143,213,0 +1707876144,213,0 +1707876144,213,0 +1707876145,213,0 +1707876145,213,0 +1707876146,213,0 +1707876146,213,0 +1707876147,213,0 +1707876147,213,0 +1707876148,214,0 +1707876148,213,0 +1707876149,214,0 +1707876149,213,0 +1707876150,213,0 +1707876150,214,0 +1707876151,214,0 +1707876151,214,0 +1707876152,214,0 +1707876152,213,0 +1707876153,213,0 +1707876153,213,0 +1707876154,213,0 +1707876154,213,0 +1707876155,213,0 +1707876155,213,0 +1707876156,213,0 +1707876156,213,0 +1707876157,213,0 +1707876157,213,0 +1707876157,213,0 +1707876158,214,0 +1707876158,214,0 +1707876159,214,0 +1707876159,214,0 +1707876160,214,0 +1707876160,214,0 +1707876161,214,0 +1707876161,213,0 +1707876162,213,0 +1707876162,213,0 +1707876163,213,0 +1707876163,213,0 +1707876164,213,0 +1707876164,213,0 +1707876165,213,0 +1707876165,213,0 +1707876166,213,0 +1707876166,213,0 +1707876167,214,0 +1707876167,214,0 +1707876168,214,0 +1707876168,214,0 +1707876169,214,0 +1707876169,214,0 +1707876170,214,0 +1707876170,213,0 +1707876171,213,0 +1707876171,213,0 +1707876171,213,0 +1707876172,213,0 +1707876172,213,0 +1707876173,213,0 +1707876173,213,0 +1707876174,213,0 +1707876174,213,0 +1707876175,213,0 +1707876175,213,0 +1707876176,213,0 +1707876176,213,0 +1707876177,214,0 +1707876177,214,0 +1707876178,214,0 +1707876178,214,0 +1707876179,214,0 +1707876179,214,0 +1707876180,213,0 +1707876180,213,0 +1707876181,213,0 +1707876181,213,0 +1707876182,213,0 +1707876182,213,0 +1707876183,213,0 +1707876183,213,0 +1707876184,213,0 +1707876184,213,0 +1707876185,213,0 +1707876185,213,0 +1707876186,213,0 +1707876186,213,0 +1707876187,213,0 +1707876187,214,0 +1707876187,214,0 +1707876188,214,0 +1707876188,213,0 +1707876189,213,0 +1707876189,213,0 +1707876190,213,0 +1707876190,213,0 +1707876191,213,0 +1707876191,213,0 +1707876192,213,0 +1707876192,213,0 +1707876193,213,0 +1707876193,213,0 +1707876194,213,0 +1707876194,213,0 +1707876195,213,0 +1707876195,213,0 +1707876196,213,0 +1707876196,213,0 +1707876197,213,0 +1707876197,213,0 +1707876198,213,0 +1707876198,213,0 +1707876199,213,0 +1707876199,213,0 +1707876200,213,0 +1707876200,212,0 +1707876201,213,0 +1707876201,213,0 +1707876202,213,0 +1707876202,213,0 +1707876203,213,0 +1707876203,213,0 +1707876203,213,0 +1707876204,213,0 +1707876204,213,0 +1707876205,213,0 +1707876205,213,0 +1707876206,213,0 +1707876206,213,0 +1707876207,213,0 +1707876207,213,0 +1707876208,213,0 +1707876208,213,0 +1707876209,213,0 +1707876209,213,0 +1707876210,213,0 +1707876210,213,0 +1707876211,213,0 +1707876211,213,0 +1707876212,213,0 +1707876212,213,0 +1707876213,213,0 +1707876213,213,0 +1707876214,214,0 +1707876214,213,0 +1707876215,214,0 +1707876215,214,0 +1707876216,213,0 +1707876216,213,0 +1707876217,213,0 +1707876217,213,0 +1707876218,213,0 +1707876218,213,0 +1707876219,213,0 +1707876219,213,0 +1707876220,213,0 +1707876220,213,0 +1707876220,213,0 +1707876221,213,0 +1707876221,213,0 +1707876222,213,0 +1707876222,213,0 +1707876223,213,0 +1707876223,213,0 +1707876224,214,0 +1707876224,214,0 +1707876225,214,0 +1707876225,214,0 +1707876226,214,0 +1707876226,213,0 +1707876227,213,0 +1707876227,213,0 +1707876228,213,0 +1707876228,213,0 +1707876229,213,0 +1707876229,213,0 +1707876230,213,0 +1707876230,214,0 +1707876231,213,0 +1707876231,214,0 +1707876232,214,0 +1707876232,214,0 +1707876232,214,0 +1707876233,214,0 +1707876233,214,0 +1707876234,214,0 +1707876234,214,0 +1707876235,214,0 +1707876235,214,0 +1707876236,213,0 +1707876236,213,0 +1707876237,213,0 +1707876237,213,0 +1707876238,213,0 +1707876238,213,0 +1707876239,214,0 +1707876239,213,0 +1707876240,214,0 +1707876240,214,0 +1707876241,214,0 +1707876241,214,0 +1707876242,214,0 +1707876242,214,0 +1707876243,214,0 +1707876243,214,0 +1707876244,214,0 +1707876244,214,0 +1707876245,214,0 +1707876245,213,0 +1707876246,213,0 +1707876246,213,0 +1707876247,213,0 +1707876247,213,0 +1707876247,213,0 +1707876248,213,0 +1707876248,213,0 +1707876249,213,0 +1707876249,213,0 +1707876250,214,0 +1707876250,214,0 +1707876251,213,0 +1707876251,214,0 +1707876252,214,0 +1707876252,214,0 +1707876253,214,0 +1707876253,214,0 +1707876254,213,0 +1707876254,213,0 +1707876255,213,0 +1707876255,213,0 +1707876256,213,0 +1707876256,213,0 +1707876257,213,0 +1707876257,213,0 +1707876258,213,0 +1707876258,213,0 +1707876259,213,0 +1707876259,213,0 +1707876260,213,0 +1707876260,213,0 +1707876261,214,0 +1707876261,213,0 +1707876261,213,0 +1707876262,214,0 +1707876262,213,0 +1707876263,214,0 +1707876263,213,0 +1707876264,213,0 +1707876264,213,0 +1707876265,213,0 +1707876265,213,0 +1707876266,213,0 +1707876266,213,0 +1707876267,213,0 +1707876267,213,0 +1707876268,213,0 +1707876268,213,0 +1707876269,213,0 +1707876269,213,0 +1707876270,213,0 +1707876270,213,0 +1707876271,213,0 +1707876271,213,0 +1707876272,213,0 +1707876272,214,0 +1707876273,214,0 +1707876273,213,0 +1707876274,213,0 +1707876274,213,0 +1707876275,213,0 +1707876275,213,0 +1707876276,213,0 +1707876276,213,0 +1707876276,213,0 +1707876277,213,0 +1707876277,213,0 +1707876278,213,0 +1707876278,213,0 +1707876279,213,0 +1707876279,213,0 +1707876280,213,0 +1707876280,214,0 +1707876281,213,0 +1707876281,214,0 +1707876282,213,0 +1707876282,213,0 +1707876283,213,0 +1707876283,213,0 +1707876284,213,0 +1707876284,213,0 +1707876285,213,0 +1707876285,213,0 +1707876286,213,0 +1707876286,213,0 +1707876287,213,0 +1707876287,213,0 +1707876288,213,0 +1707876288,213,0 +1707876289,214,0 +1707876289,214,0 +1707876290,213,0 +1707876290,214,0 +1707876291,214,0 +1707876291,214,0 +1707876292,213,0 +1707876292,213,0 +1707876293,213,0 +1707876293,213,0 +1707876294,213,0 +1707876294,213,0 +1707876295,213,0 +1707876295,213,0 +1707876295,213,0 +1707876296,213,0 +1707876296,213,0 +1707876297,213,0 +1707876297,213,0 +1707876298,213,0 +1707876298,213,0 +1707876299,214,0 +1707876299,213,0 +1707876300,213,0 +1707876300,214,0 +1707876301,213,0 +1707876301,213,0 +1707876302,213,0 +1707876302,213,0 +1707876303,213,0 +1707876303,213,0 +1707876304,213,0 +1707876304,213,0 +1707876305,213,0 +1707876305,213,0 +1707876306,213,0 +1707876306,213,0 +1707876307,213,0 +1707876307,213,0 +1707876308,213,0 +1707876308,214,0 +1707876309,213,0 +1707876309,213,0 +1707876310,214,0 +1707876310,213,0 +1707876310,213,0 +1707876311,213,0 +1707876311,213,0 +1707876312,213,0 +1707876312,213,0 +1707876313,213,0 +1707876313,213,0 +1707876314,213,0 +1707876314,213,0 +1707876315,213,0 +1707876315,213,0 +1707876316,213,0 +1707876316,213,0 +1707876317,213,0 +1707876317,214,0 +1707876318,214,0 +1707876318,213,0 +1707876319,214,0 +1707876319,213,0 +1707876320,213,0 +1707876320,213,0 +1707876321,213,0 +1707876321,213,0 +1707876322,213,0 +1707876322,213,0 +1707876323,213,0 +1707876323,213,0 +1707876324,213,0 +1707876324,213,0 +1707876325,213,0 +1707876325,213,0 +1707876326,213,0 +1707876326,213,0 +1707876327,214,0 +1707876327,214,0 +1707876328,213,0 +1707876328,214,0 +1707876328,213,0 +1707876329,213,0 +1707876329,213,0 +1707876330,213,0 +1707876330,213,0 +1707876331,213,0 +1707876331,213,0 +1707876332,213,0 +1707876332,213,0 +1707876333,213,0 +1707876333,213,0 +1707876334,213,0 +1707876334,213,0 +1707876335,213,0 +1707876335,213,0 +1707876336,214,0 +1707876336,214,0 +1707876337,213,0 +1707876337,214,0 +1707876338,214,0 +1707876338,213,0 +1707876339,213,0 +1707876339,213,0 +1707876340,213,0 +1707876340,213,0 +1707876340,213,0 +1707876341,213,0 +1707876341,213,0 +1707876342,213,0 +1707876342,213,0 +1707876343,213,0 +1707876343,213,0 +1707876344,213,0 +1707876344,213,0 +1707876345,213,0 +1707876345,214,0 +1707876346,214,0 +1707876346,214,0 +1707876347,214,0 +1707876347,213,0 +1707876348,213,0 +1707876348,213,0 +1707876349,213,0 +1707876349,213,0 +1707876350,213,0 +1707876350,213,0 +1707876351,213,0 +1707876351,213,0 +1707876352,213,0 +1707876352,213,0 +1707876353,213,0 +1707876353,213,0 +1707876354,213,0 +1707876354,213,0 +1707876355,213,0 +1707876355,214,0 +1707876355,214,0 +1707876356,214,0 +1707876356,214,0 +1707876357,214,0 +1707876357,214,0 +1707876358,214,0 +1707876358,214,0 +1707876359,214,0 +1707876359,214,0 +1707876360,214,0 +1707876360,214,0 +1707876361,213,0 +1707876361,213,0 +1707876362,213,0 +1707876362,213,0 +1707876363,213,0 +1707876363,213,0 +1707876364,213,0 +1707876364,213,0 +1707876365,213,0 +1707876365,213,0 +1707876366,213,0 +1707876366,213,0 +1707876367,213,0 +1707876367,213,0 +1707876367,213,0 +1707876368,213,0 +1707876368,214,0 +1707876369,214,0 +1707876369,213,0 +1707876370,214,0 +1707876370,213,0 +1707876371,213,0 +1707876371,213,0 +1707876372,213,0 +1707876372,213,0 +1707876373,213,0 +1707876373,213,0 +1707876374,213,0 +1707876374,213,0 +1707876375,213,0 +1707876375,213,0 +1707876376,213,0 +1707876376,214,0 +1707876377,214,0 +1707876377,214,0 +1707876378,214,0 +1707876378,214,0 +1707876379,214,0 +1707876379,214,0 +1707876380,213,0 +1707876380,213,0 +1707876381,213,0 +1707876381,213,0 +1707876382,213,0 +1707876382,213,0 +1707876382,213,0 +1707876383,213,0 +1707876383,213,0 +1707876384,213,0 +1707876384,213,0 +1707876385,213,0 +1707876385,213,0 +1707876386,213,0 +1707876386,214,0 +1707876387,214,0 +1707876387,214,0 +1707876388,214,0 +1707876388,214,0 +1707876389,214,0 +1707876389,213,0 +1707876390,213,0 +1707876390,213,0 +1707876391,213,0 +1707876391,213,0 +1707876392,213,0 +1707876392,213,0 +1707876393,213,0 +1707876393,213,0 +1707876394,213,0 +1707876394,213,0 +1707876395,213,0 +1707876395,213,0 +1707876396,213,0 +1707876396,213,0 +1707876397,214,0 +1707876397,213,0 +1707876398,214,0 +1707876398,213,0 +1707876399,213,0 +1707876399,213,0 +1707876400,213,0 +1707876400,213,0 +1707876400,213,0 +1707876401,213,0 +1707876401,213,0 +1707876402,213,0 +1707876402,213,0 +1707876403,213,0 +1707876403,213,0 +1707876404,213,0 +1707876404,213,0 +1707876405,213,0 +1707876405,214,0 +1707876406,213,0 +1707876406,214,0 +1707876407,214,0 +1707876407,213,0 +1707876408,213,0 +1707876408,213,0 +1707876409,213,0 +1707876409,213,0 +1707876410,213,0 +1707876410,213,0 +1707876411,213,0 +1707876411,213,0 +1707876412,213,0 +1707876412,213,0 +1707876413,213,0 +1707876413,214,0 +1707876414,214,0 +1707876414,214,0 +1707876415,214,0 +1707876415,214,0 +1707876416,214,0 +1707876416,214,0 +1707876417,214,0 +1707876417,213,0 +1707876417,213,0 +1707876418,213,0 +1707876418,213,0 +1707876419,213,0 +1707876419,213,0 +1707876420,213,0 +1707876420,213,0 +1707876421,213,0 +1707876421,213,0 +1707876422,213,0 +1707876422,214,0 +1707876423,213,0 +1707876423,213,0 +1707876424,214,0 +1707876424,214,0 +1707876425,214,0 +1707876425,214,0 +1707876426,214,0 +1707876426,213,0 +1707876427,213,0 +1707876427,213,0 +1707876428,213,0 +1707876428,213,0 +1707876429,213,0 +1707876429,213,0 +1707876430,213,0 +1707876430,213,0 +1707876431,213,0 +1707876431,214,0 +1707876432,213,0 +1707876432,214,0 +1707876433,213,0 +1707876433,214,0 +1707876434,214,0 +1707876434,214,0 +1707876434,214,0 +1707876435,214,0 +1707876435,213,0 +1707876436,213,0 +1707876436,213,0 +1707876437,213,0 +1707876437,213,0 +1707876438,213,0 +1707876438,213,0 +1707876439,213,0 +1707876439,213,0 +1707876440,213,0 +1707876440,213,0 +1707876441,214,0 +1707876441,213,0 +1707876442,214,0 +1707876442,214,0 +1707876443,214,0 +1707876443,214,0 +1707876444,214,0 +1707876444,214,0 +1707876445,214,0 +1707876445,213,0 +1707876446,213,0 +1707876446,213,0 +1707876447,213,0 +1707876447,213,0 +1707876448,213,0 +1707876448,213,0 +1707876448,213,0 +1707876449,213,0 +1707876449,213,0 +1707876450,213,0 +1707876450,213,0 +1707876451,213,0 +1707876451,214,0 +1707876452,214,0 +1707876452,214,0 +1707876453,214,0 +1707876453,213,0 +1707876454,214,0 +1707876454,213,0 +1707876455,213,0 +1707876455,213,0 +1707876456,213,0 +1707876456,213,0 +1707876457,213,0 +1707876457,213,0 +1707876458,213,0 +1707876458,213,0 +1707876459,213,0 +1707876459,213,0 +1707876460,213,0 +1707876460,213,0 +1707876461,213,0 +1707876461,214,0 +1707876462,214,0 +1707876462,214,0 +1707876463,213,0 +1707876463,213,0 +1707876463,213,0 +1707876464,213,0 +1707876464,213,0 +1707876465,213,0 +1707876465,213,0 +1707876466,213,0 +1707876466,213,0 +1707876467,213,0 +1707876467,213,0 +1707876468,213,0 +1707876468,213,0 +1707876469,213,0 +1707876469,213,0 +1707876470,213,0 +1707876470,214,0 +1707876471,214,0 +1707876471,214,0 +1707876472,214,0 +1707876472,214,0 +1707876473,213,0 +1707876473,213,0 +1707876474,213,0 +1707876474,213,0 +1707876475,213,0 +1707876475,213,0 +1707876476,213,0 +1707876476,213,0 +1707876476,213,0 +1707876477,213,0 +1707876477,213,0 +1707876478,213,0 +1707876478,213,0 +1707876479,214,0 +1707876479,214,0 +1707876480,214,0 +1707876480,214,0 +1707876481,214,0 +1707876481,214,0 +1707876482,213,0 +1707876482,213,0 +1707876483,213,0 +1707876483,213,0 +1707876484,213,0 +1707876484,213,0 +1707876485,213,0 +1707876485,213,0 +1707876486,213,0 +1707876486,213,0 +1707876487,213,0 +1707876487,213,0 +1707876488,214,0 +1707876488,214,0 +1707876489,214,0 +1707876489,214,0 +1707876490,214,0 +1707876490,214,0 +1707876491,214,0 +1707876491,214,0 +1707876491,213,0 +1707876492,213,0 +1707876492,213,0 +1707876493,213,0 +1707876493,213,0 +1707876494,213,0 +1707876494,213,0 +1707876495,213,0 +1707876495,213,0 +1707876496,213,0 +1707876496,213,0 +1707876497,214,0 +1707876497,214,0 +1707876498,214,0 +1707876498,214,0 +1707876499,214,0 +1707876499,214,0 +1707876500,213,0 +1707876500,213,0 +1707876501,213,0 +1707876501,213,0 +1707876502,213,0 +1707876502,213,0 +1707876503,213,0 +1707876503,213,0 +1707876504,213,0 +1707876504,213,0 +1707876505,213,0 +1707876505,213,0 +1707876506,213,0 +1707876506,213,0 +1707876506,213,0 +1707876507,213,0 +1707876507,213,0 +1707876508,214,0 +1707876508,214,0 +1707876509,214,0 +1707876509,214,0 +1707876510,213,0 +1707876510,213,0 +1707876511,213,0 +1707876511,213,0 +1707876512,213,0 +1707876512,213,0 +1707876513,213,0 +1707876513,213,0 +1707876514,213,0 +1707876514,213,0 +1707876515,213,0 +1707876515,213,0 +1707876516,213,0 +1707876516,213,0 +1707876517,213,0 +1707876517,213,0 +1707876518,214,0 +1707876518,213,0 +1707876519,213,0 +1707876519,214,0 +1707876519,213,0 +1707876520,213,0 +1707876520,213,0 +1707876521,213,0 +1707876521,212,0 +1707876522,213,0 +1707876522,213,0 +1707876523,213,0 +1707876523,213,0 +1707876524,213,0 +1707876524,213,0 +1707876525,213,0 +1707876525,213,0 +1707876526,214,0 +1707876526,213,0 +1707876527,213,0 +1707876527,213,0 +1707876528,213,0 +1707876528,214,0 +1707876529,213,0 +1707876529,213,0 +1707876530,213,0 +1707876530,213,0 +1707876531,213,0 +1707876531,213,0 +1707876532,213,0 +1707876532,213,0 +1707876533,213,0 +1707876533,213,0 +1707876534,213,0 +1707876534,214,0 +1707876535,213,0 +1707876535,214,0 +1707876535,214,0 +1707876536,214,0 +1707876536,214,0 +1707876537,214,0 +1707876537,214,0 +1707876538,213,0 +1707876538,213,0 +1707876539,213,0 +1707876539,213,0 +1707876540,213,0 +1707876540,213,0 +1707876541,213,0 +1707876541,213,0 +1707876542,213,0 +1707876542,213,0 +1707876543,213,0 +1707876543,213,0 +1707876544,213,0 +1707876544,213,0 +1707876545,213,0 +1707876545,214,0 +1707876546,213,0 +1707876546,214,0 +1707876547,214,0 +1707876547,214,0 +1707876548,213,0 +1707876548,213,0 +1707876549,213,0 +1707876549,213,0 +1707876549,213,0 +1707876550,213,0 +1707876550,213,0 +1707876551,213,0 +1707876551,213,0 +1707876552,213,0 +1707876552,213,0 +1707876553,213,0 +1707876553,213,0 +1707876554,213,0 +1707876554,213,0 +1707876555,213,0 +1707876555,214,0 +1707876556,213,0 +1707876556,214,0 +1707876557,213,0 +1707876557,213,0 +1707876558,213,0 +1707876558,213,0 +1707876559,213,0 +1707876559,213,0 +1707876560,213,0 +1707876560,213,0 +1707876561,213,0 +1707876561,213,0 +1707876562,213,0 +1707876562,213,0 +1707876563,213,0 +1707876563,213,0 +1707876564,213,0 +1707876564,213,0 +1707876564,213,0 +1707876565,214,0 +1707876565,214,0 +1707876566,213,0 +1707876566,213,0 +1707876567,213,0 +1707876567,213,0 +1707876568,213,0 +1707876568,213,0 +1707876569,213,0 +1707876569,213,0 +1707876570,213,0 +1707876570,213,0 +1707876571,213,0 +1707876571,213,0 +1707876572,213,0 +1707876572,213,0 +1707876573,213,0 +1707876573,213,0 +1707876574,213,0 +1707876574,213,0 +1707876575,214,0 +1707876575,213,0 +1707876576,213,0 +1707876576,213,0 +1707876577,213,0 +1707876577,213,0 +1707876578,213,0 +1707876578,213,0 +1707876579,213,0 +1707876579,213,0 +1707876580,213,0 +1707876580,213,0 +1707876580,213,0 +1707876581,213,0 +1707876581,213,0 +1707876582,214,0 +1707876582,213,0 +1707876583,213,0 +1707876583,213,0 +1707876584,213,0 +1707876584,213,0 +1707876585,213,0 +1707876585,213,0 +1707876586,213,0 +1707876586,213,0 +1707876587,213,0 +1707876587,213,0 +1707876588,213,0 +1707876588,213,0 +1707876589,213,0 +1707876589,213,0 +1707876590,213,0 +1707876590,213,0 +1707876591,213,0 +1707876591,213,0 +1707876592,213,0 +1707876592,214,0 +1707876593,214,0 +1707876593,213,0 +1707876594,214,0 +1707876594,213,0 +1707876595,213,0 +1707876595,213,0 +1707876596,213,0 +1707876596,213,0 +1707876597,213,0 +1707876597,213,0 +1707876597,213,0 +1707876598,213,0 +1707876598,213,0 +1707876599,213,0 +1707876599,213,0 +1707876600,213,0 +1707876600,213,0 +1707876601,213,0 +1707876601,214,0 +1707876602,214,0 +1707876602,214,0 +1707876603,213,0 +1707876603,213,0 +1707876604,213,0 +1707876604,213,0 +1707876605,213,0 +1707876605,213,0 +1707876606,213,0 +1707876606,213,0 +1707876607,213,0 +1707876607,213,0 +1707876608,213,0 +1707876608,214,0 +1707876609,214,0 +1707876609,214,0 +1707876610,214,0 +1707876610,214,0 +1707876611,214,0 +1707876611,214,0 +1707876612,214,0 +1707876612,214,0 +1707876612,213,0 +1707876613,213,0 +1707876613,213,0 +1707876614,213,0 +1707876614,213,0 +1707876615,213,0 +1707876615,213,0 +1707876616,213,0 +1707876616,213,0 +1707876617,214,0 +1707876617,213,0 +1707876618,214,0 +1707876618,214,0 +1707876619,214,0 +1707876619,214,0 +1707876620,214,0 +1707876620,214,0 +1707876621,214,0 +1707876621,214,0 +1707876622,213,0 +1707876622,213,0 +1707876623,213,0 +1707876623,213,0 +1707876624,213,0 +1707876624,213,0 +1707876624,213,0 +1707876625,213,0 +1707876625,213,0 +1707876626,213,0 +1707876626,213,0 +1707876627,214,0 +1707876627,214,0 +1707876628,214,0 +1707876628,214,0 +1707876629,214,0 +1707876629,214,0 +1707876630,214,0 +1707876630,213,0 +1707876631,213,0 +1707876631,213,0 +1707876632,213,0 +1707876632,213,0 +1707876633,213,0 +1707876633,213,0 +1707876634,213,0 +1707876634,213,0 +1707876635,213,0 +1707876635,214,0 +1707876636,214,0 +1707876636,214,0 +1707876637,213,0 +1707876637,214,0 +1707876637,213,0 +1707876638,214,0 +1707876638,213,0 +1707876639,214,0 +1707876639,214,0 +1707876640,213,0 +1707876640,213,0 +1707876641,213,0 +1707876641,213,0 +1707876642,213,0 +1707876642,213,0 +1707876643,213,0 +1707876643,213,0 +1707876644,213,0 +1707876644,213,0 +1707876645,213,0 +1707876645,213,0 +1707876646,213,0 +1707876646,213,0 +1707876647,213,0 +1707876647,214,0 +1707876648,214,0 +1707876648,214,0 +1707876649,214,0 +1707876649,214,0 +1707876650,213,0 +1707876650,213,0 +1707876651,213,0 +1707876651,213,0 +1707876652,213,0 +1707876652,213,0 +1707876652,213,0 +1707876653,213,0 +1707876653,213,0 +1707876654,213,0 +1707876654,213,0 +1707876655,213,0 +1707876655,213,0 +1707876656,213,0 +1707876656,214,0 +1707876657,214,0 +1707876657,214,0 +1707876658,214,0 +1707876658,213,0 +1707876659,213,0 +1707876659,213,0 +1707876660,213,0 +1707876660,213,0 +1707876661,213,0 +1707876661,213,0 +1707876662,213,0 +1707876662,213,0 +1707876663,213,0 +1707876663,213,0 +1707876664,214,0 +1707876664,213,0 +1707876665,214,0 +1707876665,213,0 +1707876665,214,0 +1707876666,214,0 +1707876666,213,0 +1707876667,214,0 +1707876667,213,0 +1707876668,213,0 +1707876668,213,0 +1707876669,213,0 +1707876669,213,0 +1707876670,213,0 +1707876670,213,0 +1707876671,213,0 +1707876671,214,0 +1707876672,213,0 +1707876672,213,0 +1707876673,213,0 +1707876673,214,0 +1707876674,213,0 +1707876674,214,0 +1707876675,214,0 +1707876675,214,0 +1707876676,214,0 +1707876676,214,0 +1707876677,214,0 +1707876677,214,0 +1707876678,213,0 +1707876678,213,0 +1707876679,213,0 +1707876679,213,0 +1707876680,213,0 +1707876680,213,0 +1707876680,213,0 +1707876681,213,0 +1707876681,213,0 +1707876682,213,0 +1707876682,213,0 +1707876683,213,0 +1707876683,214,0 +1707876684,213,0 +1707876684,213,0 +1707876685,214,0 +1707876685,214,0 +1707876686,214,0 +1707876686,213,0 +1707876687,213,0 +1707876687,213,0 +1707876688,213,0 +1707876688,213,0 +1707876689,213,0 +1707876689,213,0 +1707876690,213,0 +1707876690,213,0 +1707876691,213,0 +1707876691,213,0 +1707876692,213,0 +1707876692,213,0 +1707876693,213,0 +1707876693,214,0 +1707876694,213,0 +1707876694,214,0 +1707876694,214,0 +1707876695,214,0 +1707876695,214,0 +1707876696,213,0 +1707876696,213,0 +1707876697,213,0 +1707876697,213,0 +1707876698,213,0 +1707876698,213,0 +1707876699,213,0 +1707876699,213,0 +1707876700,213,0 +1707876700,213,0 +1707876701,213,0 +1707876701,213,0 +1707876702,213,0 +1707876702,214,0 +1707876703,214,0 +1707876703,214,0 +1707876704,214,0 +1707876704,214,0 +1707876705,214,0 +1707876705,214,0 +1707876706,213,0 +1707876706,213,0 +1707876707,213,0 +1707876707,213,0 +1707876708,213,0 +1707876708,213,0 +1707876708,213,0 +1707876709,213,0 +1707876709,213,0 +1707876710,213,0 +1707876710,213,0 +1707876711,213,0 +1707876711,213,0 +1707876712,213,0 +1707876712,213,0 +1707876713,214,0 +1707876713,214,0 +1707876714,213,0 +1707876714,213,0 +1707876715,213,0 +1707876715,213,0 +1707876716,213,0 +1707876716,213,0 +1707876717,213,0 +1707876717,213,0 +1707876718,213,0 +1707876718,213,0 +1707876719,213,0 +1707876719,213,0 +1707876720,213,0 +1707876720,213,0 +1707876720,213,0 +1707876721,213,0 +1707876721,214,0 +1707876722,213,0 +1707876722,214,0 +1707876723,213,0 +1707876723,214,0 +1707876724,214,0 +1707876724,213,0 +1707876725,213,0 +1707876725,213,0 +1707876726,213,0 +1707876726,213,0 +1707876727,213,0 +1707876727,213,0 +1707876728,213,0 +1707876728,213,0 +1707876729,213,0 +1707876729,213,0 +1707876730,213,0 +1707876730,213,0 +1707876731,213,0 +1707876731,213,0 +1707876732,214,0 +1707876732,214,0 +1707876733,213,0 +1707876733,213,0 +1707876733,213,0 +1707876734,213,0 +1707876734,213,0 +1707876735,213,0 +1707876735,213,0 +1707876736,213,0 +1707876736,213,0 +1707876737,213,0 +1707876737,213,0 +1707876738,213,0 +1707876738,213,0 +1707876739,213,0 +1707876739,213,0 +1707876740,213,0 +1707876740,213,0 +1707876741,213,0 +1707876741,213,0 +1707876742,214,0 +1707876742,214,0 +1707876743,213,0 +1707876743,213,0 +1707876744,213,0 +1707876744,213,0 +1707876745,213,0 +1707876745,213,0 +1707876746,213,0 +1707876746,213,0 +1707876747,213,0 +1707876747,213,0 +1707876748,213,0 +1707876748,213,0 +1707876749,213,0 +1707876749,214,0 +1707876750,213,0 +1707876750,213,0 +1707876751,213,0 +1707876751,214,0 +1707876751,214,0 +1707876752,213,0 +1707876752,213,0 +1707876753,213,0 +1707876753,213,0 +1707876754,213,0 +1707876754,213,0 +1707876755,213,0 +1707876755,213,0 +1707876756,213,0 +1707876756,213,0 +1707876757,213,0 +1707876757,213,0 +1707876758,213,0 +1707876758,214,0 +1707876759,213,0 +1707876759,213,0 +1707876760,213,0 +1707876760,213,0 +1707876761,214,0 +1707876761,213,0 +1707876762,213,0 +1707876762,213,0 +1707876763,213,0 +1707876763,213,0 +1707876764,213,0 +1707876764,213,0 +1707876765,213,0 +1707876765,213,0 +1707876766,213,0 +1707876766,213,0 +1707876767,213,0 +1707876767,213,0 +1707876767,213,0 +1707876768,213,0 +1707876768,213,0 +1707876769,213,0 +1707876769,213,0 +1707876770,214,0 +1707876770,214,0 +1707876771,213,0 +1707876771,213,0 +1707876772,213,0 +1707876772,213,0 +1707876773,213,0 +1707876773,213,0 +1707876774,213,0 +1707876774,213,0 +1707876775,213,0 +1707876775,213,0 +1707876776,213,0 +1707876776,213,0 +1707876777,213,0 +1707876777,213,0 +1707876778,213,0 +1707876778,213,0 +1707876779,213,0 +1707876779,213,0 +1707876780,214,0 +1707876780,213,0 +1707876781,213,0 +1707876781,213,0 +1707876782,213,0 +1707876782,213,0 +1707876783,213,0 +1707876783,213,0 +1707876783,213,0 +1707876784,213,0 +1707876784,213,0 +1707876785,213,0 +1707876785,213,0 +1707876786,214,0 +1707876786,214,0 +1707876787,214,0 +1707876787,214,0 +1707876788,214,0 +1707876788,214,0 +1707876789,214,0 +1707876789,213,0 +1707876790,213,0 +1707876790,213,0 +1707876791,213,0 +1707876791,213,0 +1707876792,213,0 +1707876792,213,0 +1707876793,213,0 +1707876793,213,0 +1707876794,213,0 +1707876794,213,0 +1707876795,213,0 +1707876795,213,0 +1707876796,214,0 +1707876796,214,0 +1707876797,214,0 +1707876797,214,0 +1707876798,214,0 +1707876798,214,0 +1707876798,213,0 +1707876799,213,0 +1707876799,213,0 +1707876800,213,0 +1707876800,213,0 +1707876801,213,0 +1707876801,213,0 +1707876802,213,0 +1707876802,213,0 +1707876803,213,0 +1707876803,214,0 +1707876804,214,0 +1707876804,214,0 +1707876805,214,0 +1707876805,214,0 +1707876806,214,0 +1707876806,214,0 +1707876807,214,0 +1707876807,214,0 +1707876808,213,0 +1707876808,213,0 +1707876809,213,0 +1707876809,213,0 +1707876810,213,0 +1707876810,213,0 +1707876811,213,0 +1707876811,213,0 +1707876812,213,0 +1707876812,214,0 +1707876813,214,0 +1707876813,214,0 +1707876813,214,0 +1707876814,214,0 +1707876814,214,0 +1707876815,214,0 +1707876815,214,0 +1707876816,214,0 +1707876816,214,0 +1707876817,214,0 +1707876817,213,0 +1707876818,213,0 +1707876818,213,0 +1707876819,213,0 +1707876819,213,0 +1707876820,213,0 +1707876820,213,0 +1707876821,213,0 +1707876821,213,0 +1707876822,213,0 +1707876822,214,0 +1707876823,214,0 +1707876823,214,0 +1707876824,214,0 +1707876824,214,0 +1707876825,214,0 +1707876825,214,0 +1707876826,214,0 +1707876826,213,0 +1707876827,213,0 +1707876827,213,0 +1707876827,213,0 +1707876828,213,0 +1707876828,213,0 +1707876829,213,0 +1707876829,213,0 +1707876830,213,0 +1707876830,213,0 +1707876831,213,0 +1707876831,213,0 +1707876832,213,0 +1707876832,213,0 +1707876833,214,0 +1707876833,214,0 +1707876834,213,0 +1707876834,214,0 +1707876835,213,0 +1707876835,213,0 +1707876836,213,0 +1707876836,213,0 +1707876837,213,0 +1707876837,213,0 +1707876838,213,0 +1707876838,213,0 +1707876839,213,0 +1707876839,213,0 +1707876840,213,0 +1707876840,213,0 +1707876841,214,0 +1707876841,213,0 +1707876841,213,0 +1707876842,213,0 +1707876842,214,0 +1707876843,214,0 +1707876843,214,0 +1707876844,214,0 +1707876844,214,0 +1707876845,213,0 +1707876845,213,0 +1707876846,213,0 +1707876846,213,0 +1707876847,213,0 +1707876847,213,0 +1707876848,213,0 +1707876848,213,0 +1707876849,213,0 +1707876849,213,0 +1707876850,213,0 +1707876850,213,0 +1707876851,214,0 +1707876851,214,0 +1707876852,213,0 +1707876852,214,0 +1707876853,214,0 +1707876853,214,0 +1707876854,214,0 +1707876854,213,0 +1707876855,213,0 +1707876855,213,0 +1707876856,213,0 +1707876856,213,0 +1707876857,213,0 +1707876857,213,0 +1707876858,213,0 +1707876858,213,0 +1707876859,213,0 +1707876859,213,0 +1707876859,213,0 +1707876860,213,0 +1707876860,213,0 +1707876861,214,0 +1707876861,214,0 +1707876862,214,0 +1707876862,214,0 +1707876863,214,0 +1707876863,214,0 +1707876864,213,0 +1707876864,213,0 +1707876865,213,0 +1707876865,213,0 +1707876866,213,0 +1707876866,213,0 +1707876867,213,0 +1707876867,213,0 +1707876868,213,0 +1707876868,213,0 +1707876869,213,0 +1707876869,213,0 +1707876870,213,0 +1707876870,214,0 +1707876871,213,0 +1707876871,214,0 +1707876872,214,0 +1707876872,213,0 +1707876873,213,0 +1707876873,213,0 +1707876874,213,0 +1707876874,213,0 +1707876875,213,0 +1707876875,213,0 +1707876875,213,0 +1707876876,213,0 +1707876876,213,0 +1707876877,213,0 +1707876877,213,0 +1707876878,213,0 +1707876878,213,0 +1707876879,213,0 +1707876879,213,0 +1707876880,214,0 +1707876880,213,0 +1707876881,213,0 +1707876881,214,0 +1707876882,214,0 +1707876882,214,0 +1707876883,213,0 +1707876883,213,0 +1707876884,213,0 +1707876884,213,0 +1707876885,213,0 +1707876885,213,0 +1707876886,213,0 +1707876886,213,0 +1707876887,213,0 +1707876887,213,0 +1707876888,213,0 +1707876888,213,0 +1707876888,213,0 +1707876889,213,0 +1707876889,213,0 +1707876890,214,0 +1707876890,214,0 +1707876891,214,0 +1707876891,214,0 +1707876892,213,0 +1707876892,213,0 +1707876893,213,0 +1707876893,213,0 +1707876894,213,0 +1707876894,213,0 +1707876895,213,0 +1707876895,213,0 +1707876896,213,0 +1707876896,213,0 +1707876897,213,0 +1707876897,213,0 +1707876898,213,0 +1707876898,213,0 +1707876899,214,0 +1707876899,214,0 +1707876900,214,0 +1707876900,213,0 +1707876901,213,0 +1707876901,213,0 +1707876902,213,0 +1707876902,213,0 +1707876902,213,0 +1707876903,213,0 +1707876903,213,0 +1707876904,213,0 +1707876904,213,0 +1707876905,213,0 +1707876905,213,0 +1707876906,213,0 +1707876906,213,0 +1707876907,213,0 +1707876907,213,0 +1707876908,213,0 +1707876908,214,0 +1707876909,213,0 +1707876909,213,0 +1707876910,214,0 +1707876910,213,0 +1707876911,213,0 +1707876911,213,0 +1707876912,213,0 +1707876912,213,0 +1707876913,213,0 +1707876913,213,0 +1707876914,213,0 +1707876914,213,0 +1707876915,213,0 +1707876915,213,0 +1707876916,213,0 +1707876916,213,0 +1707876917,213,0 +1707876917,214,0 +1707876918,213,0 +1707876918,214,0 +1707876919,214,0 +1707876919,213,0 +1707876919,214,0 +1707876920,213,0 +1707876920,213,0 +1707876921,213,0 +1707876921,213,0 +1707876922,213,0 +1707876922,213,0 +1707876923,213,0 +1707876923,213,0 +1707876924,213,0 +1707876924,213,0 +1707876925,213,0 +1707876925,213,0 +1707876926,213,0 +1707876926,213,0 +1707876927,214,0 +1707876927,214,0 +1707876928,214,0 +1707876928,214,0 +1707876929,213,0 +1707876929,213,0 +1707876930,213,0 +1707876930,213,0 +1707876931,213,0 +1707876931,213,0 +1707876932,213,0 +1707876932,213,0 +1707876933,213,0 +1707876933,213,0 +1707876934,213,0 +1707876934,213,0 +1707876934,213,0 +1707876935,214,0 +1707876935,213,0 +1707876936,214,0 +1707876936,214,0 +1707876937,214,0 +1707876937,214,0 +1707876938,213,0 +1707876938,213,0 +1707876939,213,0 +1707876939,213,0 +1707876940,213,0 +1707876940,213,0 +1707876941,213,0 +1707876941,213,0 +1707876942,213,0 +1707876942,213,0 +1707876943,213,0 +1707876943,213,0 +1707876944,213,0 +1707876944,213,0 +1707876945,214,0 +1707876945,213,0 +1707876946,214,0 +1707876946,214,0 +1707876947,213,0 +1707876947,214,0 +1707876948,213,0 +1707876948,213,0 +1707876949,213,0 +1707876949,213,0 +1707876950,213,0 +1707876950,213,0 +1707876950,213,0 +1707876951,213,0 +1707876951,213,0 +1707876952,213,0 +1707876952,213,0 +1707876953,213,0 +1707876953,213,0 +1707876954,214,0 +1707876954,214,0 +1707876955,214,0 +1707876955,213,0 +1707876956,214,0 +1707876956,214,0 +1707876957,213,0 +1707876957,213,0 +1707876958,213,0 +1707876958,213,0 +1707876959,213,0 +1707876959,213,0 +1707876960,213,0 +1707876960,213,0 +1707876961,213,0 +1707876961,213,0 +1707876962,213,0 +1707876962,213,0 +1707876963,213,0 +1707876963,214,0 +1707876964,213,0 +1707876964,214,0 +1707876965,214,0 +1707876965,214,0 +1707876965,214,0 +1707876966,213,0 +1707876966,213,0 +1707876967,213,0 +1707876967,213,0 +1707876968,213,0 +1707876968,213,0 +1707876969,213,0 +1707876969,213,0 +1707876970,213,0 +1707876970,213,0 +1707876971,213,0 +1707876971,213,0 +1707876972,213,0 +1707876972,213,0 +1707876973,214,0 +1707876973,214,0 +1707876974,214,0 +1707876974,214,0 +1707876975,214,0 +1707876975,213,0 +1707876976,213,0 +1707876976,213,0 +1707876977,213,0 +1707876977,213,0 +1707876978,213,0 +1707876978,213,0 +1707876979,213,0 +1707876979,213,0 +1707876980,213,0 +1707876980,213,0 +1707876981,213,0 +1707876981,213,0 +1707876982,213,0 +1707876982,213,0 +1707876982,213,0 +1707876983,214,0 +1707876983,214,0 +1707876984,214,0 +1707876984,214,0 +1707876985,213,0 +1707876985,213,0 +1707876986,213,0 +1707876986,213,0 +1707876987,213,0 +1707876987,213,0 +1707876988,213,0 +1707876988,213,0 +1707876989,214,0 +1707876989,213,0 +1707876990,213,0 +1707876990,213,0 +1707876991,214,0 +1707876991,214,0 +1707876992,214,0 +1707876992,214,0 +1707876993,214,0 +1707876993,214,0 +1707876994,214,0 +1707876994,213,0 +1707876995,213,0 +1707876995,213,0 +1707876996,213,0 +1707876996,213,0 +1707876997,214,0 +1707876997,213,0 +1707876997,213,0 +1707876998,213,0 +1707876998,213,0 +1707876999,214,0 +1707876999,214,0 +1707877000,214,0 +1707877000,214,0 +1707877001,214,0 +1707877001,214,0 +1707877002,214,0 +1707877002,214,0 +1707877003,214,0 +1707877003,213,0 +1707877004,213,0 +1707877004,213,0 +1707877005,213,0 +1707877005,213,0 +1707877006,213,0 +1707877006,213,0 +1707877007,213,0 +1707877007,214,0 +1707877008,214,0 +1707877008,213,0 +1707877009,214,0 +1707877009,214,0 +1707877010,214,0 +1707877010,214,0 +1707877011,214,0 +1707877011,214,0 +1707877012,214,0 +1707877012,214,0 +1707877013,213,0 +1707877013,213,0 +1707877013,213,0 +1707877014,213,0 +1707877014,213,0 +1707877015,213,0 +1707877015,213,0 +1707877016,213,0 +1707877016,213,0 +1707877017,213,0 +1707877017,213,0 +1707877018,213,0 +1707877018,213,0 +1707877019,213,0 +1707877019,213,0 +1707877020,214,0 +1707877020,214,0 +1707877021,214,0 +1707877021,214,0 +1707877022,213,0 +1707877022,213,0 +1707877023,213,0 +1707877023,213,0 +1707877024,213,0 +1707877024,213,0 +1707877025,213,0 +1707877025,213,0 +1707877026,213,0 +1707877026,213,0 +1707877027,213,0 +1707877027,213,0 +1707877028,213,0 +1707877028,213,0 +1707877028,213,0 +1707877029,213,0 +1707877029,213,0 +1707877030,213,0 +1707877030,213,0 +1707877031,214,0 +1707877031,213,0 +1707877032,213,0 +1707877032,213,0 +1707877033,213,0 +1707877033,213,0 +1707877034,213,0 +1707877034,213,0 +1707877035,213,0 +1707877035,213,0 +1707877036,213,0 +1707877036,213,0 +1707877037,213,0 +1707877037,213,0 +1707877038,213,0 +1707877038,213,0 +1707877039,213,0 +1707877039,214,0 +1707877040,214,0 +1707877040,214,0 +1707877041,213,0 +1707877041,213,0 +1707877042,213,0 +1707877042,213,0 +1707877043,213,0 +1707877043,213,0 +1707877044,213,0 +1707877044,213,0 +1707877045,213,0 +1707877045,213,0 +1707877045,213,0 +1707877046,213,0 +1707877046,213,0 +1707877047,213,0 +1707877047,213,0 +1707877048,213,0 +1707877048,213,0 +1707877049,213,0 +1707877049,213,0 +1707877050,214,0 +1707877050,213,0 +1707877051,213,0 +1707877051,213,0 +1707877052,213,0 +1707877052,213,0 +1707877053,213,0 +1707877053,213,0 +1707877054,213,0 +1707877054,213,0 +1707877055,213,0 +1707877055,213,0 +1707877056,213,0 +1707877056,213,0 +1707877057,213,0 +1707877057,214,0 +1707877058,214,0 +1707877058,214,0 +1707877059,214,0 +1707877059,214,0 +1707877060,213,0 +1707877060,213,0 +1707877061,213,0 +1707877061,213,0 +1707877061,213,0 +1707877062,213,0 +1707877062,213,0 +1707877063,213,0 +1707877063,213,0 +1707877064,213,0 +1707877064,213,0 +1707877065,213,0 +1707877065,213,0 +1707877066,214,0 +1707877066,214,0 +1707877067,214,0 +1707877067,214,0 +1707877068,214,0 +1707877068,214,0 +1707877069,213,0 +1707877069,213,0 +1707877070,213,0 +1707877070,213,0 +1707877071,213,0 +1707877071,213,0 +1707877072,213,0 +1707877072,213,0 +1707877073,213,0 +1707877073,213,0 +1707877074,213,0 +1707877074,213,0 +1707877075,213,0 +1707877075,213,0 +1707877075,214,0 +1707877076,214,0 +1707877076,214,0 +1707877077,214,0 +1707877077,213,0 +1707877078,213,0 +1707877078,213,0 +1707877079,213,0 +1707877079,213,0 +1707877080,213,0 +1707877080,213,0 +1707877081,213,0 +1707877081,213,0 +1707877082,213,0 +1707877082,213,0 +1707877083,213,0 +1707877083,213,0 +1707877084,213,0 +1707877084,213,0 +1707877085,214,0 +1707877085,214,0 +1707877086,213,0 +1707877086,213,0 +1707877087,214,0 +1707877087,213,0 +1707877088,213,0 +1707877088,213,0 +1707877089,213,0 +1707877089,213,0 +1707877089,213,0 +1707877090,213,0 +1707877090,213,0 +1707877091,213,0 +1707877091,213,0 +1707877092,213,0 +1707877092,213,0 +1707877093,213,0 +1707877093,213,0 +1707877094,213,0 +1707877094,213,0 +1707877095,214,0 +1707877095,213,0 +1707877096,214,0 +1707877096,213,0 +1707877097,213,0 +1707877097,213,0 +1707877098,213,0 +1707877098,213,0 +1707877099,213,0 +1707877099,213,0 +1707877100,213,0 +1707877100,213,0 +1707877101,213,0 +1707877101,213,0 +1707877102,213,0 +1707877102,213,0 +1707877103,213,0 +1707877103,213,0 +1707877104,213,0 +1707877104,213,0 +1707877105,214,0 +1707877105,213,0 +1707877106,213,0 +1707877106,213,0 +1707877106,213,0 +1707877107,213,0 +1707877107,213,0 +1707877108,212,0 +1707877108,213,0 +1707877109,213,0 +1707877109,213,0 +1707877110,213,0 +1707877110,213,0 +1707877111,213,0 +1707877111,213,0 +1707877112,213,0 +1707877112,213,0 +1707877113,213,0 +1707877113,213,0 +1707877114,214,0 +1707877114,214,0 +1707877115,214,0 +1707877115,213,0 +1707877116,213,0 +1707877116,213,0 +1707877117,213,0 +1707877117,213,0 +1707877118,213,0 +1707877118,213,0 +1707877119,213,0 +1707877119,213,0 +1707877120,213,0 +1707877120,213,0 +1707877121,213,0 +1707877121,213,0 +1707877121,213,0 +1707877122,214,0 +1707877122,214,0 +1707877123,213,0 +1707877123,214,0 +1707877124,214,0 +1707877124,213,0 +1707877125,213,0 +1707877125,213,0 +1707877126,213,0 +1707877126,213,0 +1707877127,213,0 +1707877127,213,0 +1707877128,213,0 +1707877128,213,0 +1707877129,213,0 +1707877129,213,0 +1707877130,213,0 +1707877130,214,0 +1707877131,214,0 +1707877131,214,0 +1707877132,214,0 +1707877132,214,0 +1707877133,213,0 +1707877133,213,0 +1707877134,213,0 +1707877134,213,0 +1707877135,213,0 +1707877135,213,0 +1707877135,213,0 +1707877136,213,0 +1707877136,213,0 +1707877137,213,0 +1707877137,213,0 +1707877138,213,0 +1707877138,213,0 +1707877139,213,0 +1707877139,213,0 +1707877140,213,0 +1707877140,213,0 +1707877141,213,0 +1707877141,213,0 +1707877142,213,0 +1707877142,213,0 +1707877143,213,0 +1707877143,213,0 +1707877144,213,0 +1707877144,213,0 +1707877145,213,0 +1707877145,213,0 +1707877146,213,0 +1707877146,213,0 +1707877147,213,0 +1707877147,213,0 +1707877148,213,0 +1707877148,213,0 +1707877148,213,0 +1707877149,213,0 +1707877149,214,0 +1707877150,213,0 +1707877150,213,0 +1707877151,213,0 +1707877151,214,0 +1707877152,214,0 +1707877152,213,0 +1707877153,213,0 +1707877153,213,0 +1707877154,213,0 +1707877154,213,0 +1707877155,213,0 +1707877155,213,0 +1707877156,213,0 +1707877156,213,0 +1707877157,213,0 +1707877157,213,0 +1707877158,213,0 +1707877158,213,0 +1707877159,213,0 +1707877159,213,0 +1707877160,214,0 +1707877160,214,0 +1707877161,213,0 +1707877161,214,0 +1707877162,213,0 +1707877162,213,0 +1707877163,213,0 +1707877163,213,0 +1707877164,213,0 +1707877164,213,0 +1707877164,213,0 +1707877165,213,0 +1707877165,213,0 +1707877166,213,0 +1707877166,213,0 +1707877167,213,0 +1707877167,213,0 +1707877168,214,0 +1707877168,213,0 +1707877169,214,0 +1707877169,214,0 +1707877170,214,0 +1707877170,213,0 +1707877171,213,0 +1707877171,213,0 +1707877172,213,0 +1707877172,213,0 +1707877173,213,0 +1707877173,213,0 +1707877174,213,0 +1707877174,213,0 +1707877175,213,0 +1707877175,213,0 +1707877176,213,0 +1707877176,213,0 +1707877177,214,0 +1707877177,214,0 +1707877177,214,0 +1707877178,213,0 +1707877178,214,0 +1707877179,214,0 +1707877179,214,0 +1707877180,214,0 +1707877180,213,0 +1707877181,213,0 +1707877181,213,0 +1707877182,213,0 +1707877182,213,0 +1707877183,213,0 +1707877183,213,0 +1707877184,214,0 +1707877184,214,0 +1707877185,214,0 +1707877185,214,0 +1707877186,214,0 +1707877186,214,0 +1707877187,214,0 +1707877187,214,0 +1707877188,214,0 +1707877188,214,0 +1707877189,214,0 +1707877189,214,0 +1707877189,214,0 +1707877190,213,0 +1707877190,213,0 +1707877191,213,0 +1707877191,213,0 +1707877192,213,0 +1707877192,214,0 +1707877193,213,0 +1707877193,214,0 +1707877194,214,0 +1707877194,214,0 +1707877195,214,0 +1707877195,214,0 +1707877196,214,0 +1707877196,214,0 +1707877197,214,0 +1707877197,214,0 +1707877198,214,0 +1707877198,214,0 +1707877199,214,0 +1707877199,213,0 +1707877200,213,0 +1707877200,213,0 +1707877200,213,0 +1707877201,213,0 +1707877201,213,0 +1707877202,213,0 +1707877202,213,0 +1707877203,213,0 +1707877203,213,0 +1707877204,213,0 +1707877204,213,0 +1707877205,214,0 +1707877205,214,0 +1707877206,214,0 +1707877206,214,0 +1707877207,214,0 +1707877207,214,0 +1707877208,214,0 +1707877208,213,0 +1707877209,213,0 +1707877209,213,0 +1707877210,213,0 +1707877210,213,0 +1707877211,213,0 +1707877211,213,0 +1707877212,213,0 +1707877212,213,0 +1707877212,213,0 +1707877213,213,0 +1707877213,213,0 +1707877214,213,0 +1707877214,214,0 +1707877215,214,0 +1707877215,214,0 +1707877216,213,0 +1707877216,214,0 +1707877217,214,0 +1707877217,214,0 +1707877218,213,0 +1707877218,213,0 +1707877219,213,0 +1707877219,213,0 +1707877220,213,0 +1707877220,213,0 +1707877221,213,0 +1707877221,213,0 +1707877222,213,0 +1707877222,213,0 +1707877223,213,0 +1707877223,213,0 +1707877224,214,0 +1707877224,214,0 +1707877225,214,0 +1707877225,213,0 +1707877226,214,0 +1707877226,214,0 +1707877226,213,0 +1707877227,213,0 +1707877227,213,0 +1707877228,213,0 +1707877228,213,0 +1707877229,213,0 +1707877229,213,0 +1707877230,213,0 +1707877230,213,0 +1707877231,213,0 +1707877231,214,0 +1707877232,213,0 +1707877232,213,0 +1707877233,213,0 +1707877233,213,0 +1707877234,213,0 +1707877234,214,0 +1707877235,214,0 +1707877235,214,0 +1707877236,213,0 +1707877236,213,0 +1707877237,213,0 +1707877237,213,0 +1707877238,213,0 +1707877238,213,0 +1707877239,213,0 +1707877239,213,0 +1707877240,213,0 +1707877240,213,0 +1707877241,213,0 +1707877241,213,0 +1707877242,214,0 +1707877242,213,0 +1707877243,214,0 +1707877243,214,0 +1707877243,214,0 +1707877244,214,0 +1707877244,214,0 +1707877245,214,0 +1707877245,213,0 +1707877246,213,0 +1707877246,213,0 +1707877247,213,0 +1707877247,213,0 +1707877248,213,0 +1707877248,213,0 +1707877249,213,0 +1707877249,213,0 +1707877250,213,0 +1707877250,213,0 +1707877251,213,0 +1707877251,213,0 +1707877252,214,0 +1707877252,213,0 +1707877253,214,0 +1707877253,214,0 +1707877254,214,0 +1707877254,214,0 +1707877255,214,0 +1707877255,213,0 +1707877256,213,0 +1707877256,213,0 +1707877257,213,0 +1707877257,213,0 +1707877258,213,0 +1707877258,213,0 +1707877258,213,0 +1707877259,213,0 +1707877259,213,0 +1707877260,214,0 +1707877260,213,0 +1707877261,213,0 +1707877261,213,0 +1707877262,214,0 +1707877262,214,0 +1707877263,213,0 +1707877263,213,0 +1707877264,214,0 +1707877264,213,0 +1707877265,213,0 +1707877265,213,0 +1707877266,213,0 +1707877266,213,0 +1707877267,213,0 +1707877267,213,0 +1707877268,213,0 +1707877268,213,0 +1707877269,213,0 +1707877269,213,0 +1707877270,213,0 +1707877270,213,0 +1707877270,213,0 +1707877271,213,0 +1707877271,214,0 +1707877272,213,0 +1707877272,213,0 +1707877273,213,0 +1707877273,213,0 +1707877274,213,0 +1707877274,213,0 +1707877275,213,0 +1707877275,213,0 +1707877276,213,0 +1707877276,213,0 +1707877277,213,0 +1707877277,213,0 +1707877278,213,0 +1707877278,213,0 +1707877279,213,0 +1707877279,213,0 +1707877280,213,0 +1707877280,214,0 +1707877281,213,0 +1707877281,214,0 +1707877282,213,0 +1707877282,214,0 +1707877283,214,0 +1707877283,213,0 +1707877284,213,0 +1707877284,213,0 +1707877285,213,0 +1707877285,213,0 +1707877285,213,0 +1707877286,213,0 +1707877286,213,0 +1707877287,213,0 +1707877287,213,0 +1707877288,213,0 +1707877288,213,0 +1707877289,214,0 +1707877289,214,0 +1707877290,213,0 +1707877290,213,0 +1707877291,214,0 +1707877291,214,0 +1707877292,214,0 +1707877292,213,0 +1707877293,213,0 +1707877293,213,0 +1707877294,213,0 +1707877294,213,0 +1707877295,213,0 +1707877295,213,0 +1707877296,213,0 +1707877296,213,0 +1707877297,213,0 +1707877297,213,0 +1707877298,213,0 +1707877298,213,0 +1707877298,213,0 +1707877299,214,0 +1707877299,214,0 +1707877300,214,0 +1707877300,214,0 +1707877301,213,0 +1707877301,213,0 +1707877302,213,0 +1707877302,213,0 +1707877303,213,0 +1707877303,213,0 +1707877304,213,0 +1707877304,213,0 +1707877305,213,0 +1707877305,213,0 +1707877306,213,0 +1707877306,213,0 +1707877307,213,0 +1707877307,213,0 +1707877308,213,0 +1707877308,214,0 +1707877309,214,0 +1707877309,214,0 +1707877310,214,0 +1707877310,214,0 +1707877311,213,0 +1707877311,213,0 +1707877312,213,0 +1707877312,213,0 +1707877313,213,0 +1707877313,213,0 +1707877313,213,0 +1707877314,213,0 +1707877314,213,0 +1707877315,213,0 +1707877315,213,0 +1707877316,213,0 +1707877316,214,0 +1707877317,213,0 +1707877317,214,0 +1707877318,213,0 +1707877318,214,0 +1707877319,214,0 +1707877319,214,0 +1707877320,214,0 +1707877320,213,0 +1707877321,213,0 +1707877321,213,0 +1707877322,213,0 +1707877322,213,0 +1707877323,213,0 +1707877323,213,0 +1707877324,213,0 +1707877324,213,0 +1707877325,213,0 +1707877325,213,0 +1707877326,213,0 +1707877326,213,0 +1707877327,214,0 +1707877327,214,0 +1707877328,214,0 +1707877328,213,0 +1707877328,214,0 +1707877329,214,0 +1707877329,213,0 +1707877330,213,0 +1707877330,213,0 +1707877331,213,0 +1707877331,213,0 +1707877332,213,0 +1707877332,213,0 +1707877333,213,0 +1707877333,213,0 +1707877334,213,0 +1707877334,213,0 +1707877335,213,0 +1707877335,214,0 +1707877336,214,0 +1707877336,214,0 +1707877337,214,0 +1707877337,214,0 +1707877338,214,0 +1707877338,214,0 +1707877339,213,0 +1707877339,213,0 +1707877340,213,0 +1707877340,213,0 +1707877341,213,0 +1707877341,213,0 +1707877342,213,0 +1707877342,213,0 +1707877343,213,0 +1707877343,213,0 +1707877344,213,0 +1707877344,213,0 +1707877344,214,0 +1707877345,213,0 +1707877345,213,0 +1707877346,214,0 +1707877346,214,0 +1707877347,214,0 +1707877347,213,0 +1707877348,214,0 +1707877348,213,0 +1707877349,213,0 +1707877349,213,0 +1707877350,213,0 +1707877350,213,0 +1707877351,213,0 +1707877351,213,0 +1707877352,213,0 +1707877352,213,0 +1707877353,213,0 +1707877353,213,0 +1707877354,213,0 +1707877354,213,0 +1707877355,214,0 +1707877355,214,0 +1707877356,214,0 +1707877356,214,0 +1707877356,214,0 +1707877357,214,0 +1707877357,213,0 +1707877358,213,0 +1707877358,213,0 +1707877359,213,0 +1707877359,213,0 +1707877360,213,0 +1707877360,213,0 +1707877361,213,0 +1707877361,213,0 +1707877362,213,0 +1707877362,213,0 +1707877363,214,0 +1707877363,213,0 +1707877364,214,0 +1707877364,214,0 +1707877365,214,0 +1707877365,214,0 +1707877366,214,0 +1707877366,214,0 +1707877367,213,0 +1707877367,213,0 +1707877367,213,0 +1707877368,213,0 +1707877368,213,0 +1707877369,213,0 +1707877369,214,0 +1707877370,213,0 +1707877370,213,0 +1707877371,213,0 +1707877371,214,0 +1707877372,214,0 +1707877372,214,0 +1707877373,214,0 +1707877373,214,0 +1707877374,214,0 +1707877374,214,0 +1707877375,214,0 +1707877375,214,0 +1707877376,214,0 +1707877376,213,0 +1707877377,213,0 +1707877377,213,0 +1707877378,213,0 +1707877378,213,0 +1707877379,213,0 +1707877379,214,0 +1707877380,214,0 +1707877380,214,0 +1707877380,214,0 +1707877381,214,0 +1707877381,214,0 +1707877382,214,0 +1707877382,214,0 +1707877383,214,0 +1707877383,214,0 +1707877384,214,0 +1707877384,214,0 +1707877385,214,0 +1707877385,213,0 +1707877386,213,0 +1707877386,213,0 +1707877387,213,0 +1707877387,213,0 +1707877388,213,0 +1707877388,213,0 +1707877389,213,0 +1707877389,214,0 +1707877390,213,0 +1707877390,213,0 +1707877391,213,0 +1707877391,214,0 +1707877392,214,0 +1707877392,214,0 +1707877393,214,0 +1707877393,214,0 +1707877394,214,0 +1707877394,214,0 +1707877394,213,0 +1707877395,213,0 +1707877395,213,0 +1707877396,213,0 +1707877396,213,0 +1707877397,213,0 +1707877397,213,0 +1707877398,213,0 +1707877398,213,0 +1707877399,213,0 +1707877399,213,0 +1707877400,213,0 +1707877400,213,0 +1707877401,213,0 +1707877401,214,0 +1707877402,214,0 +1707877402,214,0 +1707877403,214,0 +1707877403,214,0 +1707877404,214,0 +1707877404,213,0 +1707877405,213,0 +1707877405,213,0 +1707877406,213,0 +1707877406,213,0 +1707877407,213,0 +1707877407,213,0 +1707877407,213,0 +1707877408,213,0 +1707877408,213,0 +1707877409,213,0 +1707877409,213,0 +1707877410,213,0 +1707877410,214,0 +1707877411,214,0 +1707877411,214,0 +1707877412,214,0 +1707877412,214,0 +1707877413,214,0 +1707877413,213,0 +1707877414,213,0 +1707877414,213,0 +1707877415,213,0 +1707877415,213,0 +1707877416,213,0 +1707877416,213,0 +1707877417,213,0 +1707877417,213,0 +1707877418,213,0 +1707877418,213,0 +1707877419,213,0 +1707877419,213,0 +1707877420,213,0 +1707877420,214,0 +1707877420,213,0 +1707877421,214,0 +1707877421,213,0 +1707877422,214,0 +1707877422,213,0 +1707877423,213,0 +1707877423,213,0 +1707877424,213,0 +1707877424,213,0 +1707877425,213,0 +1707877425,213,0 +1707877426,213,0 +1707877426,213,0 +1707877427,213,0 +1707877427,213,0 +1707877428,213,0 +1707877428,213,0 +1707877429,213,0 +1707877429,213,0 +1707877430,213,0 +1707877430,214,0 +1707877431,214,0 +1707877431,214,0 +1707877432,213,0 +1707877432,213,0 +1707877433,213,0 +1707877433,213,0 +1707877434,213,0 +1707877434,213,0 +1707877435,213,0 +1707877435,213,0 +1707877436,213,0 +1707877436,213,0 +1707877437,213,0 +1707877437,213,0 +1707877437,213,0 +1707877438,213,0 +1707877438,214,0 +1707877439,213,0 +1707877439,214,0 +1707877440,214,0 +1707877440,214,0 +1707877441,214,0 +1707877441,213,0 +1707877442,213,0 +1707877442,213,0 +1707877443,213,0 +1707877443,213,0 +1707877444,213,0 +1707877444,213,0 +1707877445,213,0 +1707877445,213,0 +1707877446,213,0 +1707877446,213,0 +1707877447,213,0 +1707877447,213,0 +1707877448,214,0 +1707877448,214,0 +1707877449,214,0 +1707877449,213,0 +1707877450,214,0 +1707877450,213,0 +1707877451,213,0 +1707877451,213,0 +1707877452,213,0 +1707877452,213,0 +1707877453,213,0 +1707877453,213,0 +1707877454,213,0 +1707877454,213,0 +1707877455,213,0 +1707877455,213,0 +1707877455,213,0 +1707877456,213,0 +1707877456,213,0 +1707877457,213,0 +1707877457,214,0 +1707877458,214,0 +1707877458,214,0 +1707877459,214,0 +1707877459,214,0 +1707877460,213,0 +1707877460,213,0 +1707877461,213,0 +1707877461,213,0 +1707877462,213,0 +1707877462,213,0 +1707877463,213,0 +1707877463,213,0 +1707877464,213,0 +1707877464,213,0 +1707877465,213,0 +1707877465,213,0 +1707877466,213,0 +1707877466,213,0 +1707877467,213,0 +1707877467,213,0 +1707877468,214,0 +1707877468,214,0 +1707877469,214,0 +1707877469,213,0 +1707877470,213,0 +1707877470,213,0 +1707877470,213,0 +1707877471,213,0 +1707877471,213,0 +1707877472,213,0 +1707877472,213,0 +1707877473,213,0 +1707877473,213,0 +1707877474,213,0 +1707877474,213,0 +1707877475,214,0 +1707877475,213,0 +1707877476,214,0 +1707877476,214,0 +1707877477,214,0 +1707877477,214,0 +1707877478,214,0 +1707877478,213,0 +1707877479,213,0 +1707877479,213,0 +1707877480,213,0 +1707877480,213,0 +1707877481,213,0 +1707877481,213,0 +1707877482,213,0 +1707877482,213,0 +1707877483,213,0 +1707877483,213,0 +1707877484,214,0 +1707877484,214,0 +1707877485,214,0 +1707877485,214,0 +1707877486,214,0 +1707877486,214,0 +1707877487,214,0 +1707877487,214,0 +1707877488,213,0 +1707877488,213,0 +1707877488,213,0 +1707877489,213,0 +1707877489,213,0 +1707877490,213,0 +1707877490,213,0 +1707877491,213,0 +1707877491,213,0 +1707877492,213,0 +1707877492,213,0 +1707877493,214,0 +1707877493,214,0 +1707877494,213,0 +1707877494,214,0 +1707877495,214,0 +1707877495,214,0 +1707877496,214,0 +1707877496,214,0 +1707877497,214,0 +1707877497,213,0 +1707877498,213,0 +1707877498,213,0 +1707877499,213,0 +1707877499,213,0 +1707877500,213,0 +1707877500,213,0 +1707877501,213,0 +1707877501,213,0 +1707877502,214,0 +1707877502,214,0 +1707877502,214,0 +1707877503,214,0 +1707877503,214,0 +1707877504,214,0 +1707877504,214,0 +1707877505,214,0 +1707877505,214,0 +1707877506,214,0 +1707877506,213,0 +1707877507,213,0 +1707877507,213,0 +1707877508,213,0 +1707877508,213,0 +1707877509,213,0 +1707877509,213,0 +1707877510,213,0 +1707877510,214,0 +1707877511,214,0 +1707877511,214,0 +1707877512,214,0 +1707877512,214,0 +1707877513,214,0 +1707877513,214,0 +1707877514,214,0 +1707877514,214,0 +1707877515,214,0 +1707877515,214,0 +1707877516,213,0 +1707877516,213,0 +1707877517,213,0 +1707877517,213,0 +1707877517,213,0 +1707877518,213,0 +1707877518,213,0 +1707877519,213,0 +1707877519,213,0 +1707877520,213,0 +1707877520,214,0 +1707877521,214,0 +1707877521,214,0 +1707877522,214,0 +1707877522,214,0 +1707877523,214,0 +1707877523,214,0 +1707877524,214,0 +1707877524,214,0 +1707877525,213,0 +1707877525,213,0 +1707877526,213,0 +1707877526,213,0 +1707877527,213,0 +1707877527,213,0 +1707877528,213,0 +1707877528,213,0 +1707877529,213,0 +1707877529,213,0 +1707877530,213,0 +1707877530,213,0 +1707877531,213,0 +1707877531,213,0 +1707877532,214,0 +1707877532,213,0 +1707877532,213,0 +1707877533,214,0 +1707877533,214,0 +1707877534,213,0 +1707877534,213,0 +1707877535,213,0 +1707877535,213,0 +1707877536,213,0 +1707877536,213,0 +1707877537,213,0 +1707877537,213,0 +1707877538,213,0 +1707877538,213,0 +1707877539,213,0 +1707877539,213,0 +1707877540,213,0 +1707877540,214,0 +1707877541,214,0 +1707877541,214,0 +1707877542,214,0 +1707877542,213,0 +1707877543,214,0 +1707877543,214,0 +1707877544,213,0 +1707877544,213,0 +1707877545,213,0 +1707877545,213,0 +1707877546,213,0 +1707877546,213,0 +1707877547,213,0 +1707877547,213,0 +1707877547,213,0 +1707877548,213,0 +1707877548,213,0 +1707877549,213,0 +1707877549,213,0 +1707877550,213,0 +1707877550,213,0 +1707877551,213,0 +1707877551,213,0 +1707877552,213,0 +1707877552,214,0 +1707877553,213,0 +1707877553,213,0 +1707877554,213,0 +1707877554,213,0 +1707877555,213,0 +1707877555,213,0 +1707877556,213,0 +1707877556,213,0 +1707877557,213,0 +1707877557,213,0 +1707877558,213,0 +1707877558,213,0 +1707877559,213,0 +1707877559,214,0 +1707877560,214,0 +1707877560,214,0 +1707877561,214,0 +1707877561,214,0 +1707877562,214,0 +1707877562,213,0 +1707877563,213,0 +1707877563,213,0 +1707877564,213,0 +1707877564,213,0 +1707877564,213,0 +1707877565,214,0 +1707877565,213,0 +1707877566,214,0 +1707877566,214,0 +1707877567,214,0 +1707877567,214,0 +1707877568,214,0 +1707877568,214,0 +1707877569,214,0 +1707877569,214,0 +1707877570,214,0 +1707877570,214,0 +1707877571,214,0 +1707877571,214,0 +1707877572,213,0 +1707877572,213,0 +1707877573,213,0 +1707877573,213,0 +1707877574,213,0 +1707877574,213,0 +1707877575,213,0 +1707877575,213,0 +1707877576,213,0 +1707877576,214,0 +1707877577,214,0 +1707877577,214,0 +1707877578,214,0 +1707877578,214,0 +1707877579,214,0 +1707877579,214,0 +1707877580,214,0 +1707877580,214,0 +1707877580,213,0 +1707877581,213,0 +1707877581,213,0 +1707877582,213,0 +1707877582,213,0 +1707877583,213,0 +1707877583,213,0 +1707877584,213,0 +1707877584,213,0 +1707877585,213,0 +1707877585,213,0 +1707877586,213,0 +1707877586,213,0 +1707877587,213,0 +1707877587,214,0 +1707877588,214,0 +1707877588,214,0 +1707877589,214,0 +1707877589,214,0 +1707877590,214,0 +1707877590,213,0 +1707877591,213,0 +1707877591,213,0 +1707877592,213,0 +1707877592,213,0 +1707877593,213,0 +1707877593,213,0 +1707877594,213,0 +1707877594,213,0 +1707877595,213,0 +1707877595,213,0 +1707877596,213,0 +1707877596,213,0 +1707877596,213,0 +1707877597,213,0 +1707877597,213,0 +1707877598,213,0 +1707877598,214,0 +1707877599,214,0 +1707877599,213,0 +1707877600,213,0 +1707877600,213,0 +1707877601,213,0 +1707877601,213,0 +1707877602,213,0 +1707877602,213,0 +1707877603,213,0 +1707877603,213,0 +1707877604,213,0 +1707877604,213,0 +1707877605,213,0 +1707877605,213,0 +1707877606,213,0 +1707877606,213,0 +1707877607,213,0 +1707877607,213,0 +1707877608,214,0 +1707877608,214,0 +1707877609,213,0 +1707877609,213,0 +1707877610,213,0 +1707877610,213,0 +1707877611,213,0 +1707877611,213,0 +1707877611,213,0 +1707877612,213,0 +1707877612,213,0 +1707877613,213,0 +1707877613,213,0 +1707877614,213,0 +1707877614,213,0 +1707877615,214,0 +1707877615,213,0 +1707877616,214,0 +1707877616,214,0 +1707877617,213,0 +1707877617,214,0 +1707877618,213,0 +1707877618,213,0 +1707877619,213,0 +1707877619,213,0 +1707877620,213,0 +1707877620,213,0 +1707877621,213,0 +1707877621,213,0 +1707877622,213,0 +1707877622,213,0 +1707877623,213,0 +1707877623,213,0 +1707877624,213,0 +1707877624,213,0 +1707877625,214,0 +1707877625,214,0 +1707877626,214,0 +1707877626,214,0 +1707877626,214,0 +1707877627,214,0 +1707877627,213,0 +1707877628,213,0 +1707877628,213,0 +1707877629,213,0 +1707877629,213,0 +1707877630,213,0 +1707877630,213,0 +1707877631,213,0 +1707877631,213,0 +1707877632,213,0 +1707877632,213,0 +1707877633,213,0 +1707877633,214,0 +1707877634,214,0 +1707877634,214,0 +1707877635,214,0 +1707877635,214,0 +1707877636,214,0 +1707877636,214,0 +1707877637,213,0 +1707877637,213,0 +1707877638,213,0 +1707877638,213,0 +1707877639,213,0 +1707877639,213,0 +1707877640,213,0 +1707877640,213,0 +1707877641,213,0 +1707877641,213,0 +1707877641,213,0 +1707877642,213,0 +1707877642,214,0 +1707877643,214,0 +1707877643,214,0 +1707877644,214,0 +1707877644,214,0 +1707877645,214,0 +1707877645,214,0 +1707877646,213,0 +1707877646,213,0 +1707877647,213,0 +1707877647,213,0 +1707877648,213,0 +1707877648,213,0 +1707877649,213,0 +1707877649,213,0 +1707877650,213,0 +1707877650,213,0 +1707877651,213,0 +1707877651,213,0 +1707877652,214,0 +1707877652,214,0 +1707877653,214,0 +1707877653,214,0 +1707877654,214,0 +1707877654,213,0 +1707877655,214,0 +1707877655,213,0 +1707877655,213,0 +1707877656,213,0 +1707877656,213,0 +1707877657,213,0 +1707877657,213,0 +1707877658,213,0 +1707877658,213,0 +1707877659,213,0 +1707877659,213,0 +1707877660,213,0 +1707877660,213,0 +1707877661,214,0 +1707877661,214,0 +1707877662,214,0 +1707877662,214,0 +1707877663,214,0 +1707877663,214,0 +1707877664,214,0 +1707877664,214,0 +1707877665,213,0 +1707877665,213,0 +1707877666,213,0 +1707877666,213,0 +1707877667,213,0 +1707877667,213,0 +1707877668,213,0 +1707877668,213,0 +1707877669,213,0 +1707877669,213,0 +1707877670,213,0 +1707877670,213,0 +1707877671,214,0 +1707877671,214,0 +1707877671,214,0 +1707877672,213,0 +1707877672,214,0 +1707877673,214,0 +1707877673,213,0 +1707877674,213,0 +1707877674,213,0 +1707877675,213,0 +1707877675,213,0 +1707877676,213,0 +1707877676,213,0 +1707877677,213,0 +1707877677,213,0 +1707877678,213,0 +1707877678,213,0 +1707877679,213,0 +1707877679,214,0 +1707877680,213,0 +1707877680,213,0 +1707877681,213,0 +1707877681,214,0 +1707877682,214,0 +1707877682,214,0 +1707877683,214,0 +1707877683,213,0 +1707877684,213,0 +1707877684,213,0 +1707877685,213,0 +1707877685,213,0 +1707877686,213,0 +1707877686,213,0 +1707877687,213,0 +1707877687,213,0 +1707877688,213,0 +1707877688,213,0 +1707877688,213,0 +1707877689,213,0 +1707877689,213,0 +1707877690,214,0 +1707877690,213,0 +1707877691,214,0 +1707877691,214,0 +1707877692,214,0 +1707877692,213,0 +1707877693,213,0 +1707877693,213,0 +1707877694,213,0 +1707877694,213,0 +1707877695,213,0 +1707877695,212,0 +1707877696,213,0 +1707877696,213,0 +1707877697,213,0 +1707877697,213,0 +1707877698,213,0 +1707877698,213,0 +1707877699,213,0 +1707877699,213,0 +1707877700,213,0 +1707877700,213,0 +1707877701,213,0 +1707877701,213,0 +1707877701,213,0 +1707877702,213,0 +1707877702,213,0 +1707877703,213,0 +1707877703,213,0 +1707877704,213,0 +1707877704,213,0 +1707877705,213,0 +1707877705,213,0 +1707877706,213,0 +1707877706,213,0 +1707877707,213,0 +1707877707,213,0 +1707877708,213,0 +1707877708,213,0 +1707877709,213,0 +1707877709,213,0 +1707877710,213,0 +1707877710,214,0 +1707877711,213,0 +1707877711,213,0 +1707877712,213,0 +1707877712,213,0 +1707877713,213,0 +1707877713,213,0 +1707877714,213,0 +1707877714,213,0 +1707877715,213,0 +1707877715,213,0 +1707877716,213,0 +1707877716,213,0 +1707877717,213,0 +1707877717,213,0 +1707877717,213,0 +1707877718,214,0 +1707877718,213,0 +1707877719,214,0 +1707877719,214,0 +1707877720,214,0 +1707877720,213,0 +1707877721,213,0 +1707877721,213,0 +1707877722,213,0 +1707877722,213,0 +1707877723,213,0 +1707877723,213,0 +1707877724,213,0 +1707877724,213,0 +1707877725,213,0 +1707877725,213,0 +1707877726,213,0 +1707877726,213,0 +1707877727,213,0 +1707877727,213,0 +1707877728,214,0 +1707877728,213,0 +1707877729,214,0 +1707877729,213,0 +1707877730,213,0 +1707877730,213,0 +1707877731,213,0 +1707877731,213,0 +1707877731,213,0 +1707877732,213,0 +1707877732,213,0 +1707877733,213,0 +1707877733,213,0 +1707877734,213,0 +1707877734,213,0 +1707877735,214,0 +1707877735,213,0 +1707877736,214,0 +1707877736,214,0 +1707877737,214,0 +1707877737,214,0 +1707877738,214,0 +1707877738,213,0 +1707877739,213,0 +1707877739,213,0 +1707877740,213,0 +1707877740,213,0 +1707877741,213,0 +1707877741,213,0 +1707877742,213,0 +1707877742,213,0 +1707877743,213,0 +1707877743,213,0 +1707877744,213,0 +1707877744,213,0 +1707877745,214,0 +1707877745,214,0 +1707877746,214,0 +1707877746,214,0 +1707877747,214,0 +1707877747,214,0 +1707877747,214,0 +1707877748,214,0 +1707877748,213,0 +1707877749,213,0 +1707877749,213,0 +1707877750,213,0 +1707877750,213,0 +1707877751,213,0 +1707877751,213,0 +1707877752,213,0 +1707877752,214,0 +1707877753,214,0 +1707877753,214,0 +1707877754,213,0 +1707877754,214,0 +1707877755,214,0 +1707877755,214,0 +1707877756,214,0 +1707877756,214,0 +1707877757,214,0 +1707877757,214,0 +1707877758,213,0 +1707877758,213,0 +1707877759,213,0 +1707877759,213,0 +1707877760,213,0 +1707877760,214,0 +1707877761,214,0 +1707877761,214,0 +1707877762,214,0 +1707877762,214,0 +1707877762,214,0 +1707877763,214,0 +1707877763,214,0 +1707877764,214,0 +1707877764,214,0 +1707877765,214,0 +1707877765,214,0 +1707877766,214,0 +1707877766,214,0 +1707877767,213,0 +1707877767,213,0 +1707877768,213,0 +1707877768,213,0 +1707877769,213,0 +1707877769,213,0 +1707877770,213,0 +1707877770,214,0 +1707877771,214,0 +1707877771,214,0 +1707877772,214,0 +1707877772,214,0 +1707877773,214,0 +1707877773,214,0 +1707877774,214,0 +1707877774,214,0 +1707877775,214,0 +1707877775,214,0 +1707877776,214,0 +1707877776,213,0 +1707877777,213,0 +1707877777,213,0 +1707877778,213,0 +1707877778,213,0 +1707877779,213,0 +1707877779,213,0 +1707877779,213,0 +1707877780,213,0 +1707877780,213,0 +1707877781,213,0 +1707877781,214,0 +1707877782,213,0 +1707877782,214,0 +1707877783,214,0 +1707877783,214,0 +1707877784,214,0 +1707877784,214,0 +1707877785,214,0 +1707877785,213,0 +1707877786,213,0 +1707877786,213,0 +1707877787,213,0 +1707877787,213,0 +1707877788,213,0 +1707877788,213,0 +1707877789,213,0 +1707877789,213,0 +1707877790,213,0 +1707877790,213,0 +1707877791,213,0 +1707877791,213,0 +1707877792,213,0 +1707877792,213,0 +1707877792,213,0 +1707877793,214,0 +1707877793,214,0 +1707877794,214,0 +1707877794,214,0 +1707877795,213,0 +1707877795,213,0 +1707877796,213,0 +1707877796,213,0 +1707877797,213,0 +1707877797,213,0 +1707877798,213,0 +1707877798,213,0 +1707877799,213,0 +1707877799,213,0 +1707877800,214,0 +1707877800,213,0 +1707877801,213,0 +1707877801,214,0 +1707877802,214,0 +1707877802,213,0 +1707877803,213,0 +1707877803,214,0 +1707877804,214,0 +1707877804,213,0 +1707877805,213,0 +1707877805,213,0 +1707877806,213,0 +1707877806,213,0 +1707877807,213,0 +1707877807,213,0 +1707877808,213,0 +1707877808,213,0 +1707877809,213,0 +1707877809,213,0 +1707877809,213,0 +1707877810,213,0 +1707877810,213,0 +1707877811,214,0 +1707877811,214,0 +1707877812,213,0 +1707877812,214,0 +1707877813,214,0 +1707877813,213,0 +1707877814,213,0 +1707877814,213,0 +1707877815,213,0 +1707877815,213,0 +1707877816,213,0 +1707877816,213,0 +1707877817,213,0 +1707877817,213,0 +1707877818,213,0 +1707877818,213,0 +1707877819,213,0 +1707877819,213,0 +1707877820,214,0 +1707877820,213,0 +1707877821,214,0 +1707877821,214,0 +1707877822,214,0 +1707877822,213,0 +1707877823,213,0 +1707877823,213,0 +1707877824,213,0 +1707877824,213,0 +1707877824,213,0 +1707877825,213,0 +1707877825,213,0 +1707877826,213,0 +1707877826,213,0 +1707877827,213,0 +1707877827,213,0 +1707877828,213,0 +1707877828,213,0 +1707877829,214,0 +1707877829,214,0 +1707877830,214,0 +1707877830,214,0 +1707877831,213,0 +1707877831,214,0 +1707877832,213,0 +1707877832,213,0 +1707877833,213,0 +1707877833,213,0 +1707877834,213,0 +1707877834,213,0 +1707877835,213,0 +1707877835,213,0 +1707877836,213,0 +1707877836,213,0 +1707877837,213,0 +1707877837,213,0 +1707877838,213,0 +1707877838,214,0 +1707877838,214,0 +1707877839,213,0 +1707877839,214,0 +1707877840,213,0 +1707877840,214,0 +1707877841,213,0 +1707877841,213,0 +1707877842,213,0 +1707877842,213,0 +1707877843,213,0 +1707877843,213,0 +1707877844,213,0 +1707877844,213,0 +1707877845,213,0 +1707877845,213,0 +1707877846,213,0 +1707877846,213,0 +1707877847,213,0 +1707877847,213,0 +1707877848,213,0 +1707877848,213,0 +1707877849,213,0 +1707877849,214,0 +1707877850,214,0 +1707877850,214,0 +1707877851,213,0 +1707877851,213,0 +1707877852,213,0 +1707877852,213,0 +1707877853,213,0 +1707877853,213,0 +1707877854,213,0 +1707877854,213,0 +1707877854,213,0 +1707877855,213,0 +1707877855,213,0 +1707877856,213,0 +1707877856,213,0 +1707877857,213,0 +1707877857,213,0 +1707877858,213,0 +1707877858,214,0 +1707877859,214,0 +1707877859,214,0 +1707877860,213,0 +1707877860,213,0 +1707877861,213,0 +1707877861,213,0 +1707877862,213,0 +1707877862,213,0 +1707877863,213,0 +1707877863,213,0 +1707877864,213,0 +1707877864,213,0 +1707877865,213,0 +1707877865,213,0 +1707877866,214,0 +1707877866,214,0 +1707877867,213,0 +1707877867,213,0 +1707877867,214,0 +1707877868,214,0 +1707877868,214,0 +1707877869,213,0 +1707877869,213,0 +1707877870,213,0 +1707877870,213,0 +1707877871,213,0 +1707877871,213,0 +1707877872,213,0 +1707877872,213,0 +1707877873,213,0 +1707877873,213,0 +1707877874,213,0 +1707877874,213,0 +1707877875,213,0 +1707877875,213,0 +1707877876,213,0 +1707877876,213,0 +1707877877,214,0 +1707877877,213,0 +1707877878,213,0 +1707877878,213,0 +1707877879,213,0 +1707877879,213,0 +1707877880,213,0 +1707877880,213,0 +1707877881,213,0 +1707877881,213,0 +1707877882,213,0 +1707877882,213,0 +1707877882,213,0 +1707877883,213,0 +1707877883,213,0 +1707877884,213,0 +1707877884,213,0 +1707877885,214,0 +1707877885,213,0 +1707877886,214,0 +1707877886,214,0 +1707877887,214,0 +1707877887,214,0 +1707877888,213,0 +1707877888,213,0 +1707877889,213,0 +1707877889,213,0 +1707877890,213,0 +1707877890,213,0 +1707877891,213,0 +1707877891,213,0 +1707877892,213,0 +1707877892,213,0 +1707877893,213,0 +1707877893,213,0 +1707877894,213,0 +1707877894,213,0 +1707877895,213,0 +1707877895,213,0 +1707877896,213,0 +1707877896,213,0 +1707877896,214,0 +1707877897,213,0 +1707877897,213,0 +1707877898,213,0 +1707877898,213,0 +1707877899,213,0 +1707877899,213,0 +1707877900,213,0 +1707877900,213,0 +1707877901,213,0 +1707877901,213,0 +1707877902,213,0 +1707877902,213,0 +1707877903,213,0 +1707877903,213,0 +1707877904,213,0 +1707877904,213,0 +1707877905,213,0 +1707877905,213,0 +1707877906,213,0 +1707877906,213,0 +1707877907,213,0 +1707877907,214,0 +1707877907,214,0 +1707877908,214,0 +1707877908,214,0 +1707877909,214,0 +1707877909,214,0 +1707877910,214,0 +1707877910,213,0 +1707877911,213,0 +1707877911,213,0 +1707877912,213,0 +1707877912,213,0 +1707877913,213,0 +1707877913,213,0 +1707877914,213,0 +1707877914,213,0 +1707877915,213,0 +1707877915,213,0 +1707877916,213,0 +1707877916,213,0 +1707877917,213,0 +1707877917,214,0 +1707877918,213,0 +1707877918,214,0 +1707877919,214,0 +1707877919,214,0 +1707877920,214,0 +1707877920,213,0 +1707877921,213,0 +1707877921,213,0 +1707877921,213,0 +1707877922,213,0 +1707877922,213,0 +1707877923,213,0 +1707877923,213,0 +1707877924,213,0 +1707877924,213,0 +1707877925,213,0 +1707877925,213,0 +1707877926,213,0 +1707877926,213,0 +1707877927,213,0 +1707877927,214,0 +1707877928,213,0 +1707877928,213,0 +1707877929,213,0 +1707877929,213,0 +1707877930,213,0 +1707877930,213,0 +1707877931,213,0 +1707877931,213,0 +1707877932,213,0 +1707877932,213,0 +1707877933,213,0 +1707877933,213,0 +1707877933,213,0 +1707877934,213,0 +1707877934,213,0 +1707877935,213,0 +1707877935,213,0 +1707877936,213,0 +1707877936,213,0 +1707877937,213,0 +1707877937,214,0 +1707877938,214,0 +1707877938,213,0 +1707877939,213,0 +1707877939,213,0 +1707877940,213,0 +1707877940,213,0 +1707877941,213,0 +1707877941,213,0 +1707877942,213,0 +1707877942,213,0 +1707877943,213,0 +1707877943,213,0 +1707877944,213,0 +1707877944,213,0 +1707877945,213,0 +1707877945,213,0 +1707877945,213,0 +1707877946,214,0 +1707877946,214,0 +1707877947,214,0 +1707877947,214,0 +1707877948,214,0 +1707877948,213,0 +1707877949,213,0 +1707877949,213,0 +1707877950,213,0 +1707877950,213,0 +1707877951,213,0 +1707877951,213,0 +1707877952,213,0 +1707877952,213,0 +1707877953,213,0 +1707877953,213,0 +1707877954,214,0 +1707877954,214,0 +1707877955,214,0 +1707877955,214,0 +1707877956,214,0 +1707877956,214,0 +1707877957,214,0 +1707877957,214,0 +1707877958,213,0 +1707877958,213,0 +1707877959,213,0 +1707877959,213,0 +1707877960,213,0 +1707877960,213,0 +1707877960,213,0 +1707877961,213,0 +1707877961,213,0 +1707877962,213,0 +1707877962,213,0 +1707877963,213,0 +1707877963,214,0 +1707877964,214,0 +1707877964,214,0 +1707877965,214,0 +1707877965,214,0 +1707877966,214,0 +1707877966,213,0 +1707877967,213,0 +1707877967,213,0 +1707877968,213,0 +1707877968,213,0 +1707877969,213,0 +1707877969,213,0 +1707877970,213,0 +1707877970,213,0 +1707877971,213,0 +1707877971,213,0 +1707877972,213,0 +1707877972,213,0 +1707877973,213,0 +1707877973,214,0 +1707877974,213,0 +1707877974,214,0 +1707877974,213,0 +1707877975,214,0 +1707877975,213,0 +1707877976,213,0 +1707877976,213,0 +1707877977,213,0 +1707877977,213,0 +1707877978,213,0 +1707877978,213,0 +1707877979,213,0 +1707877979,213,0 +1707877980,213,0 +1707877980,213,0 +1707877981,213,0 +1707877981,213,0 +1707877982,213,0 +1707877982,213,0 +1707877983,213,0 +1707877983,213,0 +1707877984,213,0 +1707877984,214,0 +1707877985,214,0 +1707877985,213,0 +1707877986,213,0 +1707877986,213,0 +1707877987,213,0 +1707877987,213,0 +1707877988,213,0 +1707877988,213,0 +1707877989,213,0 +1707877989,213,0 +1707877989,213,0 +1707877990,213,0 +1707877990,213,0 +1707877991,213,0 +1707877991,213,0 +1707877992,214,0 +1707877992,214,0 +1707877993,214,0 +1707877993,214,0 +1707877994,214,0 +1707877994,213,0 +1707877995,213,0 +1707877995,213,0 +1707877996,213,0 +1707877996,213,0 +1707877997,213,0 +1707877997,213,0 +1707877998,213,0 +1707877998,213,0 +1707877999,213,0 +1707877999,213,0 +1707878000,213,0 +1707878000,213,0 +1707878001,213,0 +1707878001,213,0 +1707878002,213,0 +1707878002,213,0 +1707878003,214,0 +1707878003,214,0 +1707878004,213,0 +1707878004,213,0 +1707878005,213,0 +1707878005,213,0 +1707878005,213,0 +1707878006,213,0 +1707878006,213,0 +1707878007,213,0 +1707878007,213,0 +1707878008,213,0 +1707878008,213,0 +1707878009,213,0 +1707878009,213,0 +1707878010,214,0 +1707878010,213,0 +1707878011,214,0 +1707878011,214,0 +1707878012,213,0 +1707878012,213,0 +1707878013,213,0 +1707878013,213,0 +1707878014,213,0 +1707878014,213,0 +1707878015,213,0 +1707878015,213,0 +1707878016,213,0 +1707878016,213,0 +1707878017,213,0 +1707878017,213,0 +1707878018,213,0 +1707878018,213,0 +1707878019,213,0 +1707878019,213,0 +1707878020,213,0 +1707878020,213,0 +1707878021,214,0 +1707878021,214,0 +1707878021,214,0 +1707878022,214,0 +1707878022,213,0 +1707878023,213,0 +1707878023,213,0 +1707878024,213,0 +1707878024,213,0 +1707878025,213,0 +1707878025,213,0 +1707878026,213,0 +1707878026,213,0 +1707878027,213,0 +1707878027,214,0 +1707878028,214,0 +1707878028,214,0 +1707878029,214,0 +1707878029,213,0 +1707878030,213,0 +1707878030,214,0 +1707878031,213,0 +1707878031,214,0 +1707878032,213,0 +1707878032,213,0 +1707878033,213,0 +1707878033,213,0 +1707878034,213,0 +1707878034,213,0 +1707878035,213,0 +1707878035,213,0 +1707878036,213,0 +1707878036,213,0 +1707878037,213,0 +1707878037,213,0 +1707878038,213,0 +1707878038,214,0 +1707878038,213,0 +1707878039,213,0 +1707878039,214,0 +1707878040,214,0 +1707878040,214,0 +1707878041,213,0 +1707878041,213,0 +1707878042,213,0 +1707878042,213,0 +1707878043,213,0 +1707878043,213,0 +1707878044,213,0 +1707878044,213,0 +1707878045,213,0 +1707878045,213,0 +1707878046,213,0 +1707878046,213,0 +1707878047,213,0 +1707878047,213,0 +1707878048,213,0 +1707878048,214,0 +1707878049,214,0 +1707878049,214,0 +1707878050,213,0 +1707878050,214,0 +1707878050,213,0 +1707878051,213,0 +1707878051,213,0 +1707878052,213,0 +1707878052,213,0 +1707878053,213,0 +1707878053,213,0 +1707878054,213,0 +1707878054,213,0 +1707878055,213,0 +1707878055,213,0 +1707878056,213,0 +1707878056,213,0 +1707878057,213,0 +1707878057,213,0 +1707878058,214,0 +1707878058,214,0 +1707878059,214,0 +1707878059,214,0 +1707878060,213,0 +1707878060,213,0 +1707878061,213,0 +1707878061,213,0 +1707878062,213,0 +1707878062,213,0 +1707878063,213,0 +1707878063,213,0 +1707878064,213,0 +1707878064,213,0 +1707878064,213,0 +1707878065,213,0 +1707878065,213,0 +1707878066,213,0 +1707878066,214,0 +1707878067,213,0 +1707878067,214,0 +1707878068,214,0 +1707878068,214,0 +1707878069,213,0 +1707878069,213,0 +1707878070,212,0 +1707878070,213,0 +1707878071,213,0 +1707878071,213,0 +1707878072,213,0 +1707878072,213,0 +1707878073,213,0 +1707878073,213,0 +1707878074,213,0 +1707878074,213,0 +1707878075,213,0 +1707878075,213,0 +1707878076,213,0 +1707878076,214,0 +1707878077,213,0 +1707878077,214,0 +1707878078,214,0 +1707878078,214,0 +1707878079,213,0 +1707878079,213,0 +1707878079,213,0 +1707878080,213,0 +1707878080,213,0 +1707878081,213,0 +1707878081,213,0 +1707878082,213,0 +1707878082,213,0 +1707878083,213,0 +1707878083,213,0 +1707878084,213,0 +1707878084,214,0 +1707878085,213,0 +1707878085,214,0 +1707878086,214,0 +1707878086,214,0 +1707878087,214,0 +1707878087,214,0 +1707878088,213,0 +1707878088,213,0 +1707878089,213,0 +1707878089,213,0 +1707878090,213,0 +1707878090,213,0 +1707878091,212,0 +1707878091,213,0 +1707878092,213,0 +1707878092,213,0 +1707878093,213,0 +1707878093,213,0 +1707878094,213,0 +1707878094,213,0 +1707878094,213,0 +1707878095,213,0 +1707878095,213,0 +1707878096,214,0 +1707878096,213,0 +1707878097,214,0 +1707878097,212,0 +1707878098,213,0 +1707878098,213,0 +1707878099,213,0 +1707878099,213,0 +1707878100,213,0 +1707878100,213,0 +1707878101,213,0 +1707878101,213,0 +1707878102,213,0 +1707878102,213,0 +1707878103,213,0 +1707878103,213,0 +1707878104,213,0 +1707878104,213,0 +1707878105,213,0 +1707878105,213,0 +1707878106,213,0 +1707878106,213,0 +1707878107,213,0 +1707878107,213,0 +1707878108,213,0 +1707878108,213,0 +1707878109,213,0 +1707878109,213,0 +1707878109,213,0 +1707878110,213,0 +1707878110,213,0 +1707878111,213,0 +1707878111,213,0 +1707878112,213,0 +1707878112,213,0 +1707878113,213,0 +1707878113,213,0 +1707878114,213,0 +1707878114,213,0 +1707878115,213,0 +1707878115,213,0 +1707878116,213,0 +1707878116,213,0 +1707878117,213,0 +1707878117,213,0 +1707878118,213,0 +1707878118,213,0 +1707878119,213,0 +1707878119,213,0 +1707878120,213,0 +1707878120,213,0 +1707878121,213,0 +1707878121,213,0 +1707878122,213,0 +1707878122,213,0 +1707878123,213,0 +1707878123,213,0 +1707878124,213,0 +1707878124,213,0 +1707878124,213,0 +1707878125,213,0 +1707878125,213,0 +1707878126,213,0 +1707878126,213,0 +1707878127,213,0 +1707878127,213,0 +1707878128,213,0 +1707878128,213,0 +1707878129,213,0 +1707878129,213,0 +1707878130,213,0 +1707878130,213,0 +1707878131,213,0 +1707878131,214,0 +1707878132,213,0 +1707878132,213,0 +1707878133,214,0 +1707878133,214,0 +1707878134,213,0 +1707878134,213,0 +1707878135,213,0 +1707878135,213,0 +1707878136,213,0 +1707878136,213,0 +1707878137,213,0 +1707878137,213,0 +1707878138,213,0 +1707878138,213,0 +1707878139,214,0 +1707878139,214,0 +1707878140,214,0 +1707878140,214,0 +1707878141,214,0 +1707878141,214,0 +1707878142,214,0 +1707878142,214,0 +1707878142,214,0 +1707878143,214,0 +1707878143,213,0 +1707878144,213,0 +1707878144,213,0 +1707878145,213,0 +1707878145,213,0 +1707878146,213,0 +1707878146,213,0 +1707878147,213,0 +1707878147,214,0 +1707878148,214,0 +1707878148,214,0 +1707878149,214,0 +1707878149,214,0 +1707878150,214,0 +1707878150,214,0 +1707878151,214,0 +1707878151,214,0 +1707878152,214,0 +1707878152,214,0 +1707878153,213,0 +1707878153,213,0 +1707878154,213,0 +1707878154,213,0 +1707878155,213,0 +1707878155,213,0 +1707878156,213,0 +1707878156,213,0 +1707878156,213,0 +1707878157,214,0 +1707878157,214,0 +1707878158,214,0 +1707878158,214,0 +1707878159,214,0 +1707878159,214,0 +1707878160,214,0 +1707878160,213,0 +1707878161,214,0 +1707878161,214,0 +1707878162,213,0 +1707878162,213,0 +1707878163,213,0 +1707878163,213,0 +1707878164,213,0 +1707878164,213,0 +1707878165,213,0 +1707878165,213,0 +1707878166,213,0 +1707878166,213,0 +1707878167,213,0 +1707878167,213,0 +1707878168,213,0 +1707878168,213,0 +1707878168,214,0 +1707878169,214,0 +1707878169,214,0 +1707878170,213,0 +1707878170,214,0 +1707878171,214,0 +1707878171,213,0 +1707878172,213,0 +1707878172,213,0 +1707878173,213,0 +1707878173,213,0 +1707878174,213,0 +1707878174,213,0 +1707878175,213,0 +1707878175,213,0 +1707878176,213,0 +1707878176,213,0 +1707878177,213,0 +1707878177,214,0 +1707878178,214,0 +1707878178,213,0 +1707878179,214,0 +1707878179,213,0 +1707878180,214,0 +1707878180,214,0 +1707878181,213,0 +1707878181,213,0 +1707878182,213,0 +1707878182,213,0 +1707878183,213,0 +1707878183,213,0 +1707878184,213,0 +1707878184,213,0 +1707878184,213,0 +1707878185,213,0 +1707878185,213,0 +1707878186,213,0 +1707878186,213,0 +1707878187,213,0 +1707878187,213,0 +1707878188,213,0 +1707878188,213,0 +1707878189,213,0 +1707878189,213,0 +1707878190,213,0 +1707878190,213,0 +1707878191,213,0 +1707878191,213,0 +1707878192,213,0 +1707878192,213,0 +1707878193,213,0 +1707878193,213,0 +1707878194,213,0 +1707878194,213,0 +1707878195,213,0 +1707878195,213,0 +1707878196,213,0 +1707878196,213,0 +1707878197,213,0 +1707878197,213,0 +1707878198,213,0 +1707878198,213,0 +1707878198,213,0 +1707878199,214,0 +1707878199,213,0 +1707878200,213,0 +1707878200,213,0 +1707878201,213,0 +1707878201,213,0 +1707878202,213,0 +1707878202,213,0 +1707878203,213,0 +1707878203,213,0 +1707878204,213,0 +1707878204,213,0 +1707878205,213,0 +1707878205,213,0 +1707878206,213,0 +1707878206,213,0 +1707878207,213,0 +1707878207,213,0 +1707878208,213,0 +1707878208,214,0 +1707878209,213,0 +1707878209,213,0 +1707878210,213,0 +1707878210,213,0 +1707878211,213,0 +1707878211,213,0 +1707878212,213,0 +1707878212,213,0 +1707878213,213,0 +1707878213,213,0 +1707878213,213,0 +1707878214,213,0 +1707878214,214,0 +1707878215,213,0 +1707878215,214,0 +1707878216,214,0 +1707878216,214,0 +1707878217,213,0 +1707878217,214,0 +1707878218,213,0 +1707878218,213,0 +1707878219,213,0 +1707878219,213,0 +1707878220,213,0 +1707878220,213,0 +1707878221,213,0 +1707878221,213,0 +1707878222,213,0 +1707878222,213,0 +1707878223,213,0 +1707878223,213,0 +1707878224,213,0 +1707878224,213,0 +1707878225,214,0 +1707878225,214,0 +1707878226,214,0 +1707878226,214,0 +1707878227,213,0 +1707878227,213,0 +1707878228,213,0 +1707878228,212,0 +1707878229,213,0 +1707878229,213,0 +1707878230,213,0 +1707878230,213,0 +1707878230,213,0 +1707878231,213,0 +1707878231,213,0 +1707878232,213,0 +1707878232,213,0 +1707878233,213,0 +1707878233,213,0 +1707878234,213,0 +1707878234,213,0 +1707878235,213,0 +1707878235,213,0 +1707878236,213,0 +1707878236,213,0 +1707878237,213,0 +1707878237,213,0 +1707878238,213,0 +1707878238,213,0 +1707878239,213,0 +1707878239,213,0 +1707878240,213,0 +1707878240,213,0 +1707878241,213,0 +1707878241,213,0 +1707878242,213,0 +1707878242,213,0 +1707878243,213,0 +1707878243,213,0 +1707878244,213,0 +1707878244,213,0 +1707878244,213,0 +1707878245,213,0 +1707878245,213,0 +1707878246,213,0 +1707878246,213,0 +1707878247,213,0 +1707878247,213,0 +1707878248,213,0 +1707878248,213,0 +1707878249,213,0 +1707878249,213,0 +1707878250,213,0 +1707878250,213,0 +1707878251,213,0 +1707878251,213,0 +1707878252,213,0 +1707878252,213,0 +1707878253,213,0 +1707878253,213,0 +1707878254,214,0 +1707878254,214,0 +1707878255,213,0 +1707878255,213,0 +1707878256,213,0 +1707878256,213,0 +1707878257,213,0 +1707878257,213,0 +1707878258,213,0 +1707878258,213,0 +1707878259,213,0 +1707878259,213,0 +1707878260,213,0 +1707878260,213,0 +1707878261,213,0 +1707878261,213,0 +1707878261,213,0 +1707878262,213,0 +1707878262,214,0 +1707878263,213,0 +1707878263,213,0 +1707878264,213,0 +1707878264,213,0 +1707878265,213,0 +1707878265,212,0 +1707878266,213,0 +1707878266,213,0 +1707878267,213,0 +1707878267,213,0 +1707878268,213,0 +1707878268,213,0 +1707878269,213,0 +1707878269,213,0 +1707878270,213,0 +1707878270,213,0 +1707878271,213,0 +1707878271,213,0 +1707878272,213,0 +1707878272,213,0 +1707878273,213,0 +1707878273,213,0 +1707878274,213,0 +1707878274,213,0 +1707878275,213,0 +1707878275,213,0 +1707878275,213,0 +1707878276,213,0 +1707878276,213,0 +1707878277,213,0 +1707878277,213,0 +1707878278,213,0 +1707878278,213,0 +1707878279,213,0 +1707878279,213,0 +1707878280,213,0 +1707878280,213,0 +1707878281,213,0 +1707878281,213,0 +1707878282,213,0 +1707878282,214,0 +1707878283,214,0 +1707878283,213,0 +1707878284,213,0 +1707878284,213,0 +1707878285,213,0 +1707878285,213,0 +1707878286,213,0 +1707878286,213,0 +1707878287,213,0 +1707878287,213,0 +1707878288,213,0 +1707878288,213,0 +1707878289,213,0 +1707878289,213,0 +1707878290,213,0 +1707878290,213,0 +1707878291,213,0 +1707878291,213,0 +1707878291,213,0 +1707878292,213,0 +1707878292,213,0 +1707878293,213,0 +1707878293,213,0 +1707878294,213,0 +1707878294,213,0 +1707878295,213,0 +1707878295,213,0 +1707878296,213,0 +1707878296,213,0 +1707878297,213,0 +1707878297,213,0 +1707878298,213,0 +1707878298,213,0 +1707878299,213,0 +1707878299,213,0 +1707878300,213,0 +1707878300,213,0 +1707878301,214,0 +1707878301,213,0 +1707878302,213,0 +1707878302,213,0 +1707878303,213,0 +1707878303,213,0 +1707878304,213,0 +1707878304,213,0 +1707878305,213,0 +1707878305,213,0 +1707878306,213,0 +1707878306,213,0 +1707878306,213,0 +1707878307,213,0 +1707878307,213,0 +1707878308,213,0 +1707878308,213,0 +1707878309,213,0 +1707878309,213,0 +1707878310,213,0 +1707878310,213,0 +1707878311,214,0 +1707878311,213,0 +1707878312,213,0 +1707878312,213,0 +1707878313,213,0 +1707878313,213,0 +1707878314,213,0 +1707878314,213,0 +1707878315,213,0 +1707878315,213,0 +1707878316,213,0 +1707878316,213,0 +1707878317,214,0 +1707878317,214,0 +1707878318,214,0 +1707878318,214,0 +1707878319,214,0 +1707878319,214,0 +1707878320,214,0 +1707878320,213,0 +1707878321,213,0 +1707878321,213,0 +1707878322,213,0 +1707878322,213,0 +1707878322,213,0 +1707878323,213,0 +1707878323,213,0 +1707878324,213,0 +1707878324,213,0 +1707878325,213,0 +1707878325,214,0 +1707878326,214,0 +1707878326,214,0 +1707878327,214,0 +1707878327,214,0 +1707878328,214,0 +1707878328,214,0 +1707878329,214,0 +1707878329,213,0 +1707878330,213,0 +1707878330,213,0 +1707878331,213,0 +1707878331,213,0 +1707878332,213,0 +1707878332,214,0 +1707878333,213,0 +1707878333,214,0 +1707878334,214,0 +1707878334,214,0 +1707878335,214,0 +1707878335,214,0 +1707878336,214,0 +1707878336,214,0 +1707878337,213,0 +1707878337,214,0 +1707878338,214,0 +1707878338,214,0 +1707878339,213,0 +1707878339,213,0 +1707878340,213,0 +1707878340,213,0 +1707878341,213,0 +1707878341,213,0 +1707878341,213,0 +1707878342,213,0 +1707878342,213,0 +1707878343,214,0 +1707878343,213,0 +1707878344,214,0 +1707878344,213,0 +1707878345,214,0 +1707878345,214,0 +1707878346,214,0 +1707878346,214,0 +1707878347,213,0 +1707878347,214,0 +1707878348,213,0 +1707878348,213,0 +1707878349,213,0 +1707878349,213,0 +1707878350,213,0 +1707878350,213,0 +1707878351,213,0 +1707878351,213,0 +1707878352,213,0 +1707878352,213,0 +1707878353,213,0 +1707878353,213,0 +1707878354,213,0 +1707878354,214,0 +1707878354,214,0 +1707878355,214,0 +1707878355,213,0 +1707878356,213,0 +1707878356,213,0 +1707878357,214,0 +1707878357,213,0 +1707878358,213,0 +1707878358,213,0 +1707878359,213,0 +1707878359,213,0 +1707878360,213,0 +1707878360,213,0 +1707878361,213,0 +1707878361,213,0 +1707878362,213,0 +1707878362,213,0 +1707878363,213,0 +1707878363,213,0 +1707878364,213,0 +1707878364,214,0 +1707878365,213,0 +1707878365,213,0 +1707878366,213,0 +1707878366,213,0 +1707878367,213,0 +1707878367,213,0 +1707878368,213,0 +1707878368,213,0 +1707878369,213,0 +1707878369,213,0 +1707878370,213,0 +1707878370,213,0 +1707878370,213,0 +1707878371,213,0 +1707878371,213,0 +1707878372,213,0 +1707878372,213,0 +1707878373,213,0 +1707878373,213,0 +1707878374,213,0 +1707878374,213,0 +1707878375,214,0 +1707878375,213,0 +1707878376,214,0 +1707878376,213,0 +1707878377,213,0 +1707878377,212,0 +1707878378,213,0 +1707878378,213,0 +1707878379,213,0 +1707878379,213,0 +1707878380,213,0 +1707878380,213,0 +1707878381,213,0 +1707878381,213,0 +1707878382,213,0 +1707878382,213,0 +1707878383,213,0 +1707878383,213,0 +1707878384,213,0 +1707878384,213,0 +1707878384,213,0 +1707878385,213,0 +1707878385,213,0 +1707878386,213,0 +1707878386,212,0 +1707878387,213,0 +1707878387,213,0 +1707878388,213,0 +1707878388,213,0 +1707878389,213,0 +1707878389,213,0 +1707878390,213,0 +1707878390,213,0 +1707878391,213,0 +1707878391,213,0 +1707878392,213,0 +1707878392,213,0 +1707878393,213,0 +1707878393,213,0 +1707878394,213,0 +1707878394,214,0 +1707878395,213,0 +1707878395,213,0 +1707878396,213,0 +1707878396,213,0 +1707878397,213,0 +1707878397,213,0 +1707878398,213,0 +1707878398,213,0 +1707878399,213,0 +1707878399,213,0 +1707878399,213,0 +1707878400,213,0 +1707878400,213,0 +1707878401,213,0 +1707878401,213,0 +1707878402,213,0 +1707878402,213,0 +1707878403,213,0 +1707878403,213,0 +1707878404,213,0 +1707878404,213,0 +1707878405,213,0 +1707878405,213,0 +1707878406,213,0 +1707878406,213,0 +1707878407,213,0 +1707878407,213,0 +1707878408,213,0 +1707878408,213,0 +1707878409,213,0 +1707878409,213,0 +1707878410,213,0 +1707878410,213,0 +1707878411,214,0 +1707878411,214,0 +1707878412,214,0 +1707878412,214,0 +1707878413,214,0 +1707878413,213,0 +1707878413,213,0 +1707878414,213,0 +1707878414,213,0 +1707878415,213,0 +1707878415,213,0 +1707878416,213,0 +1707878416,213,0 +1707878417,213,0 +1707878417,213,0 +1707878418,213,0 +1707878418,213,0 +1707878419,213,0 +1707878419,213,0 +1707878420,213,0 +1707878420,213,0 +1707878421,213,0 +1707878421,213,0 +1707878422,214,0 +1707878422,213,0 +1707878423,214,0 +1707878423,213,0 +1707878424,213,0 +1707878424,213,0 +1707878424,213,0 +1707878425,213,0 +1707878425,213,0 +1707878426,213,0 +1707878426,213,0 +1707878427,213,0 +1707878427,213,0 +1707878428,213,0 +1707878428,213,0 +1707878429,213,0 +1707878429,213,0 +1707878430,214,0 +1707878430,213,0 +1707878431,213,0 +1707878431,214,0 +1707878432,213,0 +1707878432,213,0 +1707878433,213,0 +1707878433,213,0 +1707878434,213,0 +1707878434,213,0 +1707878435,213,0 +1707878435,213,0 +1707878436,213,0 +1707878436,213,0 +1707878437,213,0 +1707878437,213,0 +1707878438,213,0 +1707878438,213,0 +1707878438,214,0 +1707878439,214,0 +1707878439,213,0 +1707878440,214,0 +1707878440,214,0 +1707878441,214,0 +1707878441,213,0 +1707878442,213,0 +1707878442,213,0 +1707878443,213,0 +1707878443,213,0 +1707878444,213,0 +1707878444,213,0 +1707878445,213,0 +1707878445,213,0 +1707878446,213,0 +1707878446,213,0 +1707878447,213,0 +1707878447,213,0 +1707878448,213,0 +1707878448,214,0 +1707878449,213,0 +1707878449,214,0 +1707878450,214,0 +1707878450,213,0 +1707878451,213,0 +1707878451,213,0 +1707878452,213,0 +1707878452,213,0 +1707878452,213,0 +1707878453,213,0 +1707878453,213,0 +1707878454,213,0 +1707878454,213,0 +1707878455,213,0 +1707878455,213,0 +1707878456,213,0 +1707878456,213,0 +1707878457,213,0 +1707878457,213,0 +1707878458,213,0 +1707878458,213,0 +1707878459,214,0 +1707878459,214,0 +1707878460,213,0 +1707878460,213,0 +1707878461,213,0 +1707878461,213,0 +1707878462,213,0 +1707878462,213,0 +1707878463,213,0 +1707878463,213,0 +1707878464,213,0 +1707878464,213,0 +1707878465,213,0 +1707878465,213,0 +1707878466,213,0 +1707878466,213,0 +1707878466,213,0 +1707878467,213,0 +1707878467,213,0 +1707878468,213,0 +1707878468,214,0 +1707878469,213,0 +1707878469,213,0 +1707878470,213,0 +1707878470,213,0 +1707878471,213,0 +1707878471,213,0 +1707878472,213,0 +1707878472,213,0 +1707878473,213,0 +1707878473,213,0 +1707878474,213,0 +1707878474,213,0 +1707878475,213,0 +1707878475,213,0 +1707878476,213,0 +1707878476,214,0 +1707878477,214,0 +1707878477,214,0 +1707878478,214,0 +1707878478,214,0 +1707878479,213,0 +1707878479,213,0 +1707878480,213,0 +1707878480,213,0 +1707878481,213,0 +1707878481,213,0 +1707878482,213,0 +1707878482,213,0 +1707878482,213,0 +1707878483,213,0 +1707878483,213,0 +1707878484,213,0 +1707878484,214,0 +1707878485,213,0 +1707878485,214,0 +1707878486,214,0 +1707878486,214,0 +1707878487,214,0 +1707878487,213,0 +1707878488,213,0 +1707878488,213,0 +1707878489,213,0 +1707878489,213,0 +1707878490,213,0 +1707878490,213,0 +1707878491,213,0 +1707878491,213,0 +1707878492,213,0 +1707878492,213,0 +1707878493,213,0 +1707878493,213,0 +1707878494,213,0 +1707878494,213,0 +1707878495,213,0 +1707878495,213,0 +1707878495,213,0 +1707878496,213,0 +1707878496,214,0 +1707878497,213,0 +1707878497,213,0 +1707878498,213,0 +1707878498,213,0 +1707878499,213,0 +1707878499,213,0 +1707878500,213,0 +1707878500,213,0 +1707878501,213,0 +1707878501,213,0 +1707878502,213,0 +1707878502,213,0 +1707878503,213,0 +1707878503,213,0 +1707878504,213,0 +1707878504,214,0 +1707878505,214,0 +1707878505,214,0 +1707878506,214,0 +1707878506,213,0 +1707878507,213,0 +1707878507,213,0 +1707878508,213,0 +1707878508,213,0 +1707878509,213,0 +1707878509,213,0 +1707878509,213,0 +1707878510,213,0 +1707878510,213,0 +1707878511,213,0 +1707878511,213,0 +1707878512,213,0 +1707878512,213,0 +1707878513,213,0 +1707878513,214,0 +1707878514,214,0 +1707878514,214,0 +1707878515,214,0 +1707878515,213,0 +1707878516,213,0 +1707878516,213,0 +1707878517,213,0 +1707878517,213,0 +1707878518,213,0 +1707878518,213,0 +1707878519,213,0 +1707878519,213,0 +1707878520,213,0 +1707878520,214,0 +1707878521,214,0 +1707878521,214,0 +1707878522,214,0 +1707878522,214,0 +1707878523,214,0 +1707878523,214,0 +1707878524,214,0 +1707878524,214,0 +1707878525,214,0 +1707878525,213,0 +1707878525,213,0 +1707878526,213,0 +1707878526,213,0 +1707878527,213,0 +1707878527,213,0 +1707878528,213,0 +1707878528,213,0 +1707878529,213,0 +1707878529,213,0 +1707878530,213,0 +1707878530,214,0 +1707878531,214,0 +1707878531,214,0 +1707878532,214,0 +1707878532,214,0 +1707878533,214,0 +1707878533,214,0 +1707878534,214,0 +1707878534,213,0 +1707878535,213,0 +1707878535,213,0 +1707878536,213,0 +1707878536,213,0 +1707878537,213,0 +1707878537,213,0 +1707878538,213,0 +1707878538,213,0 +1707878539,213,0 +1707878539,213,0 +1707878539,213,0 +1707878540,214,0 +1707878540,213,0 +1707878541,213,0 +1707878541,214,0 +1707878542,214,0 +1707878542,213,0 +1707878543,214,0 +1707878543,214,0 +1707878544,213,0 +1707878544,213,0 +1707878545,213,0 +1707878545,213,0 +1707878546,213,0 +1707878546,213,0 +1707878547,213,0 +1707878547,213,0 +1707878548,213,0 +1707878548,213,0 +1707878549,213,0 +1707878549,213,0 +1707878550,213,0 +1707878550,214,0 +1707878551,213,0 +1707878551,214,0 +1707878552,213,0 +1707878552,214,0 +1707878553,213,0 +1707878553,213,0 +1707878554,213,0 +1707878554,213,0 +1707878554,213,0 +1707878555,213,0 +1707878555,213,0 +1707878556,213,0 +1707878556,213,0 +1707878557,213,0 +1707878557,213,0 +1707878558,213,0 +1707878558,213,0 +1707878559,213,0 +1707878559,213,0 +1707878560,213,0 +1707878560,213,0 +1707878561,213,0 +1707878561,213,0 +1707878562,213,0 +1707878562,213,0 +1707878563,213,0 +1707878563,213,0 +1707878564,213,0 +1707878564,213,0 +1707878565,213,0 +1707878565,213,0 +1707878566,213,0 +1707878566,213,0 +1707878567,213,0 +1707878567,213,0 +1707878567,213,0 +1707878568,213,0 +1707878568,213,0 +1707878569,213,0 +1707878569,214,0 +1707878570,214,0 +1707878570,214,0 +1707878571,213,0 +1707878571,213,0 +1707878572,213,0 +1707878572,213,0 +1707878573,213,0 +1707878573,213,0 +1707878574,213,0 +1707878574,213,0 +1707878575,213,0 +1707878575,213,0 +1707878576,213,0 +1707878576,213,0 +1707878577,213,0 +1707878577,214,0 +1707878578,213,0 +1707878578,213,0 +1707878579,214,0 +1707878579,213,0 +1707878580,213,0 +1707878580,214,0 +1707878581,214,0 +1707878581,213,0 +1707878581,213,0 +1707878582,213,0 +1707878582,213,0 +1707878583,213,0 +1707878583,213,0 +1707878584,213,0 +1707878584,213,0 +1707878585,213,0 +1707878585,213,0 +1707878586,213,0 +1707878586,213,0 +1707878587,213,0 +1707878587,213,0 +1707878588,213,0 +1707878588,214,0 +1707878589,213,0 +1707878589,214,0 +1707878590,213,0 +1707878590,214,0 +1707878591,213,0 +1707878591,213,0 +1707878592,213,0 +1707878592,213,0 +1707878593,213,0 +1707878593,213,0 +1707878594,213,0 +1707878594,213,0 +1707878594,213,0 +1707878595,213,0 +1707878595,213,0 +1707878596,213,0 +1707878596,214,0 +1707878597,214,0 +1707878597,214,0 +1707878598,214,0 +1707878598,214,0 +1707878599,214,0 +1707878599,214,0 +1707878600,213,0 +1707878600,213,0 +1707878601,213,0 +1707878601,213,0 +1707878602,213,0 +1707878602,213,0 +1707878603,213,0 +1707878603,213,0 +1707878604,213,0 +1707878604,213,0 +1707878605,213,0 +1707878605,214,0 +1707878606,213,0 +1707878606,214,0 +1707878607,214,0 +1707878607,214,0 +1707878608,214,0 +1707878608,214,0 +1707878608,213,0 +1707878609,213,0 +1707878609,213,0 +1707878610,213,0 +1707878610,213,0 +1707878611,213,0 +1707878611,213,0 +1707878612,213,0 +1707878612,213,0 +1707878613,213,0 +1707878613,213,0 +1707878614,213,0 +1707878614,213,0 +1707878615,213,0 +1707878615,214,0 +1707878616,214,0 +1707878616,213,0 +1707878617,214,0 +1707878617,214,0 +1707878618,214,0 +1707878618,214,0 +1707878619,213,0 +1707878619,213,0 +1707878620,213,0 +1707878620,213,0 +1707878621,213,0 +1707878621,213,0 +1707878622,213,0 +1707878622,213,0 +1707878623,213,0 +1707878623,213,0 +1707878623,213,0 +1707878624,214,0 +1707878624,213,0 +1707878625,214,0 +1707878625,213,0 +1707878626,213,0 +1707878626,214,0 +1707878627,214,0 +1707878627,214,0 +1707878628,213,0 +1707878628,213,0 +1707878629,213,0 +1707878629,213,0 +1707878630,213,0 +1707878630,213,0 +1707878631,213,0 +1707878631,213,0 +1707878632,213,0 +1707878632,213,0 +1707878633,214,0 +1707878633,214,0 +1707878634,213,0 +1707878634,214,0 +1707878635,213,0 +1707878635,214,0 +1707878636,214,0 +1707878636,214,0 +1707878637,214,0 +1707878637,213,0 +1707878638,213,0 +1707878638,213,0 +1707878638,213,0 +1707878639,213,0 +1707878639,213,0 +1707878640,213,0 +1707878640,213,0 +1707878641,213,0 +1707878641,213,0 +1707878642,213,0 +1707878642,213,0 +1707878643,214,0 +1707878643,214,0 +1707878644,214,0 +1707878644,214,0 +1707878645,214,0 +1707878645,214,0 +1707878646,213,0 +1707878646,213,0 +1707878647,213,0 +1707878647,213,0 +1707878648,213,0 +1707878648,213,0 +1707878649,213,0 +1707878649,213,0 +1707878650,213,0 +1707878650,213,0 +1707878651,213,0 +1707878651,213,0 +1707878652,213,0 +1707878652,213,0 +1707878652,214,0 +1707878653,213,0 +1707878653,214,0 +1707878654,214,0 +1707878654,214,0 +1707878655,214,0 +1707878655,213,0 +1707878656,213,0 +1707878656,213,0 +1707878657,213,0 +1707878657,213,0 +1707878658,213,0 +1707878658,213,0 +1707878659,213,0 +1707878659,213,0 +1707878660,213,0 +1707878660,213,0 +1707878661,213,0 +1707878661,214,0 +1707878662,213,0 +1707878662,214,0 +1707878663,214,0 +1707878663,214,0 +1707878664,214,0 +1707878664,213,0 +1707878664,214,0 +1707878665,213,0 +1707878665,213,0 +1707878666,213,0 +1707878666,213,0 +1707878667,213,0 +1707878667,213,0 +1707878668,213,0 +1707878668,213,0 +1707878669,213,0 +1707878669,213,0 +1707878670,213,0 +1707878670,214,0 +1707878671,214,0 +1707878671,214,0 +1707878672,214,0 +1707878672,214,0 +1707878673,214,0 +1707878673,214,0 +1707878674,213,0 +1707878674,213,0 +1707878675,213,0 +1707878675,213,0 +1707878676,213,0 +1707878676,213,0 +1707878677,213,0 +1707878677,213,0 +1707878677,213,0 +1707878678,213,0 +1707878678,213,0 +1707878679,213,0 +1707878679,214,0 +1707878680,213,0 +1707878680,213,0 +1707878681,213,0 +1707878681,214,0 +1707878682,214,0 +1707878682,213,0 +1707878683,214,0 +1707878683,213,0 +1707878684,213,0 +1707878684,213,0 +1707878685,213,0 +1707878685,213,0 +1707878686,213,0 +1707878686,213,0 +1707878687,213,0 +1707878687,213,0 +1707878688,213,0 +1707878688,213,0 +1707878689,213,0 +1707878689,213,0 +1707878690,213,0 +1707878690,213,0 +1707878691,213,0 +1707878691,213,0 +1707878692,213,0 +1707878692,214,0 +1707878693,214,0 +1707878693,213,0 +1707878693,213,0 +1707878694,213,0 +1707878694,213,0 +1707878695,213,0 +1707878695,213,0 +1707878696,213,0 +1707878696,213,0 +1707878697,213,0 +1707878697,213,0 +1707878698,213,0 +1707878698,213,0 +1707878699,213,0 +1707878699,213,0 +1707878700,214,0 +1707878700,214,0 +1707878701,214,0 +1707878701,214,0 +1707878702,214,0 +1707878702,213,0 +1707878703,213,0 +1707878703,213,0 +1707878704,213,0 +1707878704,213,0 +1707878705,213,0 +1707878705,213,0 +1707878706,213,0 +1707878706,213,0 +1707878707,213,0 +1707878707,214,0 +1707878708,214,0 +1707878708,214,0 +1707878709,214,0 +1707878709,214,0 +1707878710,214,0 +1707878710,214,0 +1707878711,214,0 +1707878711,214,0 +1707878711,213,0 +1707878712,213,0 +1707878712,213,0 +1707878713,213,0 +1707878713,213,0 +1707878714,214,0 +1707878714,213,0 +1707878715,214,0 +1707878715,214,0 +1707878716,214,0 +1707878716,214,0 +1707878717,214,0 +1707878717,214,0 +1707878718,214,0 +1707878718,214,0 +1707878719,214,0 +1707878719,214,0 +1707878720,214,0 +1707878720,214,0 +1707878721,213,0 +1707878721,213,0 +1707878722,213,0 +1707878722,213,0 +1707878723,213,0 +1707878723,213,0 +1707878724,213,0 +1707878724,213,0 +1707878725,213,0 +1707878725,214,0 +1707878726,214,0 +1707878726,214,0 +1707878727,214,0 +1707878727,214,0 +1707878728,214,0 +1707878728,214,0 +1707878729,214,0 +1707878729,213,0 +1707878729,213,0 +1707878730,213,0 +1707878730,213,0 +1707878731,213,0 +1707878731,213,0 +1707878732,213,0 +1707878732,213,0 +1707878733,213,0 +1707878733,213,0 +1707878734,213,0 +1707878734,213,0 +1707878735,213,0 +1707878735,213,0 +1707878736,213,0 +1707878736,213,0 +1707878737,214,0 +1707878737,214,0 +1707878738,214,0 +1707878738,214,0 +1707878739,214,0 +1707878739,213,0 +1707878740,213,0 +1707878740,213,0 +1707878741,213,0 +1707878741,213,0 +1707878741,213,0 +1707878742,213,0 +1707878742,213,0 +1707878743,213,0 +1707878743,213,0 +1707878744,213,0 +1707878744,213,0 +1707878745,213,0 +1707878745,213,0 +1707878746,214,0 +1707878746,213,0 +1707878747,214,0 +1707878747,213,0 +1707878748,214,0 +1707878748,213,0 +1707878749,213,0 +1707878749,213,0 +1707878750,213,0 +1707878750,213,0 +1707878751,213,0 +1707878751,213,0 +1707878752,213,0 +1707878752,213,0 +1707878753,213,0 +1707878753,213,0 +1707878753,213,0 +1707878754,213,0 +1707878754,213,0 +1707878755,213,0 +1707878755,214,0 +1707878756,214,0 +1707878756,214,0 +1707878757,214,0 +1707878757,213,0 +1707878758,213,0 +1707878758,213,0 +1707878759,213,0 +1707878759,213,0 +1707878760,213,0 +1707878760,213,0 +1707878761,213,0 +1707878761,213,0 +1707878762,213,0 +1707878762,213,0 +1707878763,213,0 +1707878763,213,0 +1707878764,213,0 +1707878764,214,0 +1707878765,214,0 +1707878765,214,0 +1707878766,214,0 +1707878766,213,0 +1707878767,214,0 +1707878767,213,0 +1707878767,213,0 +1707878768,213,0 +1707878768,213,0 +1707878769,213,0 +1707878769,213,0 +1707878770,213,0 +1707878770,213,0 +1707878771,213,0 +1707878771,213,0 +1707878772,213,0 +1707878772,213,0 +1707878773,213,0 +1707878773,213,0 +1707878774,213,0 +1707878774,214,0 +1707878775,214,0 +1707878775,214,0 +1707878776,213,0 +1707878776,214,0 +1707878777,213,0 +1707878777,213,0 +1707878778,213,0 +1707878778,213,0 +1707878779,213,0 +1707878779,213,0 +1707878780,213,0 +1707878780,213,0 +1707878781,213,0 +1707878781,213,0 +1707878782,213,0 +1707878782,213,0 +1707878783,213,0 +1707878783,214,0 +1707878783,214,0 +1707878784,213,0 +1707878784,214,0 +1707878785,214,0 +1707878785,213,0 +1707878786,213,0 +1707878786,213,0 +1707878787,213,0 +1707878787,212,0 +1707878788,213,0 +1707878788,213,0 +1707878789,213,0 +1707878789,213,0 +1707878790,213,0 +1707878790,213,0 +1707878791,213,0 +1707878791,213,0 +1707878792,213,0 +1707878792,213,0 +1707878793,213,0 +1707878793,213,0 +1707878794,214,0 +1707878794,214,0 +1707878795,213,0 +1707878795,213,0 +1707878796,213,0 +1707878796,213,0 +1707878797,213,0 +1707878797,213,0 +1707878798,213,0 +1707878798,213,0 +1707878799,213,0 +1707878799,213,0 +1707878799,213,0 +1707878800,213,0 +1707878800,213,0 +1707878801,213,0 +1707878801,213,0 +1707878802,213,0 +1707878802,213,0 +1707878803,213,0 +1707878803,213,0 +1707878804,214,0 +1707878804,213,0 +1707878805,213,0 +1707878805,213,0 +1707878806,213,0 +1707878806,213,0 +1707878807,213,0 +1707878807,213,0 +1707878808,213,0 +1707878808,213,0 +1707878809,213,0 +1707878809,213,0 +1707878810,213,0 +1707878810,213,0 +1707878811,213,0 +1707878811,213,0 +1707878812,213,0 +1707878812,214,0 +1707878813,214,0 +1707878813,214,0 +1707878814,213,0 +1707878814,213,0 +1707878814,213,0 +1707878815,213,0 +1707878815,213,0 +1707878816,213,0 +1707878816,213,0 +1707878817,213,0 +1707878817,213,0 +1707878818,213,0 +1707878818,213,0 +1707878819,213,0 +1707878819,213,0 +1707878820,213,0 +1707878820,213,0 +1707878821,213,0 +1707878821,214,0 +1707878822,213,0 +1707878822,214,0 +1707878823,214,0 +1707878823,213,0 +1707878824,213,0 +1707878824,213,0 +1707878825,213,0 +1707878825,213,0 +1707878826,213,0 +1707878826,213,0 +1707878827,213,0 +1707878827,213,0 +1707878828,213,0 +1707878828,213,0 +1707878829,213,0 +1707878829,213,0 +1707878829,213,0 +1707878830,214,0 +1707878830,214,0 +1707878831,214,0 +1707878831,214,0 +1707878832,213,0 +1707878832,213,0 +1707878833,213,0 +1707878833,213,0 +1707878834,213,0 +1707878834,213,0 +1707878835,213,0 +1707878835,213,0 +1707878836,213,0 +1707878836,213,0 +1707878837,213,0 +1707878837,213,0 +1707878838,213,0 +1707878838,214,0 +1707878839,214,0 +1707878839,214,0 +1707878840,213,0 +1707878840,214,0 +1707878841,214,0 +1707878841,214,0 +1707878842,213,0 +1707878842,213,0 +1707878843,213,0 +1707878843,213,0 +1707878844,213,0 +1707878844,213,0 +1707878844,213,0 +1707878845,213,0 +1707878845,213,0 +1707878846,213,0 +1707878846,213,0 +1707878847,213,0 +1707878847,213,0 +1707878848,213,0 +1707878848,213,0 +1707878849,214,0 +1707878849,214,0 +1707878850,214,0 +1707878850,213,0 +1707878851,213,0 +1707878851,213,0 +1707878852,213,0 +1707878852,213,0 +1707878853,213,0 +1707878853,213,0 +1707878854,213,0 +1707878854,213,0 +1707878855,213,0 +1707878855,213,0 +1707878856,213,0 +1707878856,213,0 +1707878857,213,0 +1707878857,213,0 +1707878858,213,0 +1707878858,214,0 +1707878858,213,0 +1707878859,213,0 +1707878859,214,0 +1707878860,214,0 +1707878860,213,0 +1707878861,213,0 +1707878861,213,0 +1707878862,213,0 +1707878862,213,0 +1707878863,213,0 +1707878863,213,0 +1707878864,213,0 +1707878864,213,0 +1707878865,213,0 +1707878865,213,0 +1707878866,213,0 +1707878866,213,0 +1707878867,213,0 +1707878867,213,0 +1707878868,214,0 +1707878868,213,0 +1707878869,214,0 +1707878869,213,0 +1707878869,213,0 +1707878870,213,0 +1707878870,213,0 +1707878871,213,0 +1707878871,213,0 +1707878872,213,0 +1707878872,213,0 +1707878873,213,0 +1707878873,213,0 +1707878874,213,0 +1707878874,213,0 +1707878875,213,0 +1707878875,213,0 +1707878876,214,0 +1707878876,213,0 +1707878877,213,0 +1707878877,213,0 +1707878878,213,0 +1707878878,214,0 +1707878879,214,0 +1707878879,213,0 +1707878880,213,0 +1707878880,213,0 +1707878881,213,0 +1707878881,213,0 +1707878882,213,0 +1707878882,213,0 +1707878883,213,0 +1707878883,213,0 +1707878884,213,0 +1707878884,213,0 +1707878885,213,0 +1707878885,213,0 +1707878885,213,0 +1707878886,213,0 +1707878886,214,0 +1707878887,214,0 +1707878887,214,0 +1707878888,213,0 +1707878888,213,0 +1707878889,213,0 +1707878889,213,0 +1707878890,213,0 +1707878890,213,0 +1707878891,213,0 +1707878891,213,0 +1707878892,213,0 +1707878892,213,0 +1707878893,213,0 +1707878893,213,0 +1707878894,213,0 +1707878894,213,0 +1707878895,214,0 +1707878895,214,0 +1707878896,214,0 +1707878896,214,0 +1707878897,214,0 +1707878897,214,0 +1707878898,213,0 +1707878898,213,0 +1707878899,213,0 +1707878899,213,0 +1707878900,213,0 +1707878900,213,0 +1707878900,213,0 +1707878901,213,0 +1707878901,213,0 +1707878902,214,0 +1707878902,214,0 +1707878903,214,0 +1707878903,214,0 +1707878904,214,0 +1707878904,214,0 +1707878905,214,0 +1707878905,214,0 +1707878906,214,0 +1707878906,214,0 +1707878907,213,0 +1707878907,213,0 +1707878908,213,0 +1707878908,213,0 +1707878909,214,0 +1707878909,214,0 +1707878910,214,0 +1707878910,214,0 +1707878911,214,0 +1707878911,214,0 +1707878912,214,0 +1707878912,214,0 +1707878913,214,0 +1707878913,214,0 +1707878914,214,0 +1707878914,214,0 +1707878915,214,0 +1707878915,214,0 +1707878915,214,0 +1707878916,214,0 +1707878916,213,0 +1707878917,213,0 +1707878917,213,0 +1707878918,213,0 +1707878918,213,0 +1707878919,213,0 +1707878919,213,0 +1707878920,213,0 +1707878920,213,0 +1707878921,214,0 +1707878921,214,0 +1707878922,213,0 +1707878922,214,0 +1707878923,214,0 +1707878923,214,0 +1707878924,214,0 +1707878924,214,0 +1707878925,214,0 +1707878925,214,0 +1707878926,213,0 +1707878926,213,0 +1707878927,213,0 +1707878927,213,0 +1707878927,213,0 +1707878928,213,0 +1707878928,213,0 +1707878929,213,0 +1707878929,213,0 +1707878930,213,0 +1707878930,213,0 +1707878931,213,0 +1707878931,213,0 +1707878932,213,0 +1707878932,214,0 +1707878933,214,0 +1707878933,214,0 +1707878934,214,0 +1707878934,214,0 +1707878935,213,0 +1707878935,213,0 +1707878936,213,0 +1707878936,213,0 +1707878937,213,0 +1707878937,213,0 +1707878938,213,0 +1707878938,213,0 +1707878939,213,0 +1707878939,213,0 +1707878940,213,0 +1707878940,214,0 +1707878941,213,0 +1707878941,213,0 +1707878942,213,0 +1707878942,214,0 +1707878942,213,0 +1707878943,214,0 +1707878943,214,0 +1707878944,213,0 +1707878944,213,0 +1707878945,213,0 +1707878945,213,0 +1707878946,213,0 +1707878946,213,0 +1707878947,213,0 +1707878947,213,0 +1707878948,213,0 +1707878948,213,0 +1707878949,213,0 +1707878949,213,0 +1707878950,213,0 +1707878950,213,0 +1707878951,213,0 +1707878951,214,0 +1707878952,214,0 +1707878952,214,0 +1707878953,213,0 +1707878953,214,0 +1707878954,213,0 +1707878954,213,0 +1707878955,213,0 +1707878955,213,0 +1707878956,213,0 +1707878956,213,0 +1707878956,213,0 +1707878957,213,0 +1707878957,213,0 +1707878958,213,0 +1707878958,213,0 +1707878959,213,0 +1707878959,213,0 +1707878960,213,0 +1707878960,213,0 +1707878961,213,0 +1707878961,214,0 +1707878962,214,0 +1707878962,214,0 +1707878963,213,0 +1707878963,213,0 +1707878964,213,0 +1707878964,213,0 +1707878965,213,0 +1707878965,213,0 +1707878966,213,0 +1707878966,213,0 +1707878967,213,0 +1707878967,213,0 +1707878968,213,0 +1707878968,213,0 +1707878969,213,0 +1707878969,213,0 +1707878970,214,0 +1707878970,214,0 +1707878971,214,0 +1707878971,214,0 +1707878972,214,0 +1707878972,213,0 +1707878972,213,0 +1707878973,213,0 +1707878973,213,0 +1707878974,213,0 +1707878974,213,0 +1707878975,213,0 +1707878975,213,0 +1707878976,213,0 +1707878976,213,0 +1707878977,213,0 +1707878977,213,0 +1707878978,213,0 +1707878978,213,0 +1707878979,214,0 +1707878979,214,0 +1707878980,213,0 +1707878980,214,0 +1707878981,214,0 +1707878981,213,0 +1707878982,213,0 +1707878982,213,0 +1707878983,213,0 +1707878983,213,0 +1707878984,213,0 +1707878984,213,0 +1707878985,213,0 +1707878985,213,0 +1707878986,213,0 +1707878986,213,0 +1707878986,213,0 +1707878987,213,0 +1707878987,214,0 +1707878988,213,0 +1707878988,214,0 +1707878989,214,0 +1707878989,214,0 +1707878990,214,0 +1707878990,214,0 +1707878991,213,0 +1707878991,213,0 +1707878992,213,0 +1707878992,213,0 +1707878993,213,0 +1707878993,213,0 +1707878994,213,0 +1707878994,213,0 +1707878995,213,0 +1707878995,213,0 +1707878996,213,0 +1707878996,214,0 +1707878997,214,0 +1707878997,214,0 +1707878998,214,0 +1707878998,214,0 +1707878998,214,0 +1707878999,214,0 +1707878999,214,0 +1707879000,213,0 +1707879000,213,0 +1707879001,213,0 +1707879001,213,0 +1707879002,213,0 +1707879002,213,0 +1707879003,213,0 +1707879003,213,0 +1707879004,214,0 +1707879004,213,0 +1707879005,213,0 +1707879005,213,0 +1707879006,214,0 +1707879006,214,0 +1707879007,214,0 +1707879007,214,0 +1707879008,214,0 +1707879008,214,0 +1707879009,214,0 +1707879009,213,0 +1707879010,213,0 +1707879010,213,0 +1707879011,213,0 +1707879011,213,0 +1707879011,213,0 +1707879012,213,0 +1707879012,213,0 +1707879013,213,0 +1707879013,213,0 +1707879014,213,0 +1707879014,214,0 +1707879015,213,0 +1707879015,213,0 +1707879016,214,0 +1707879016,214,0 +1707879017,214,0 +1707879017,214,0 +1707879018,214,0 +1707879018,214,0 +1707879019,213,0 +1707879019,213,0 +1707879020,213,0 +1707879020,213,0 +1707879021,213,0 +1707879021,213,0 +1707879022,213,0 +1707879022,213,0 +1707879023,213,0 +1707879023,213,0 +1707879024,214,0 +1707879024,213,0 +1707879024,214,0 +1707879025,213,0 +1707879025,214,0 +1707879026,214,0 +1707879026,214,0 +1707879027,214,0 +1707879027,213,0 +1707879028,214,0 +1707879028,213,0 +1707879029,213,0 +1707879029,213,0 +1707879030,213,0 +1707879030,213,0 +1707879031,213,0 +1707879031,213,0 +1707879032,213,0 +1707879032,213,0 +1707879033,213,0 +1707879033,213,0 +1707879034,213,0 +1707879034,213,0 +1707879035,213,0 +1707879035,213,0 +1707879036,214,0 +1707879036,214,0 +1707879036,214,0 +1707879037,214,0 +1707879037,213,0 +1707879038,213,0 +1707879038,213,0 +1707879039,213,0 +1707879039,213,0 +1707879040,213,0 +1707879040,213,0 +1707879041,213,0 +1707879041,213,0 +1707879042,213,0 +1707879042,213,0 +1707879043,213,0 +1707879043,213,0 +1707879044,214,0 +1707879044,213,0 +1707879045,213,0 +1707879045,213,0 +1707879046,213,0 +1707879046,213,0 +1707879047,213,0 +1707879047,213,0 +1707879048,213,0 +1707879048,213,0 +1707879049,213,0 +1707879049,213,0 +1707879050,213,0 +1707879050,213,0 +1707879051,213,0 +1707879051,213,0 +1707879052,213,0 +1707879052,213,0 +1707879053,213,0 +1707879053,213,0 +1707879053,213,0 +1707879054,213,0 +1707879054,214,0 +1707879055,213,0 +1707879055,214,0 +1707879056,213,0 +1707879056,213,0 +1707879057,213,0 +1707879057,213,0 +1707879058,213,0 +1707879058,213,0 +1707879059,213,0 +1707879059,213,0 +1707879060,213,0 +1707879060,213,0 +1707879061,213,0 +1707879061,213,0 +1707879062,213,0 +1707879062,213,0 +1707879063,213,0 +1707879063,214,0 +1707879064,213,0 +1707879064,214,0 +1707879065,214,0 +1707879065,213,0 +1707879066,213,0 +1707879066,213,0 +1707879067,213,0 +1707879067,213,0 +1707879068,213,0 +1707879068,213,0 +1707879068,213,0 +1707879069,213,0 +1707879069,213,0 +1707879070,213,0 +1707879070,213,0 +1707879071,213,0 +1707879071,213,0 +1707879072,213,0 +1707879072,213,0 +1707879073,214,0 +1707879073,213,0 +1707879074,214,0 +1707879074,213,0 +1707879075,213,0 +1707879075,213,0 +1707879076,213,0 +1707879076,213,0 +1707879077,213,0 +1707879077,213,0 +1707879078,213,0 +1707879078,213,0 +1707879079,213,0 +1707879079,213,0 +1707879080,213,0 +1707879080,213,0 +1707879081,213,0 +1707879081,213,0 +1707879082,213,0 +1707879082,213,0 +1707879082,213,0 +1707879083,213,0 +1707879083,213,0 +1707879084,213,0 +1707879084,213,0 +1707879085,213,0 +1707879085,213,0 +1707879086,213,0 +1707879086,213,0 +1707879087,213,0 +1707879087,213,0 +1707879088,213,0 +1707879088,213,0 +1707879089,214,0 +1707879089,214,0 +1707879090,214,0 +1707879090,214,0 +1707879091,214,0 +1707879091,214,0 +1707879092,214,0 +1707879092,213,0 +1707879093,213,0 +1707879093,213,0 +1707879094,213,0 +1707879094,213,0 +1707879095,213,0 +1707879095,213,0 +1707879096,213,0 +1707879096,213,0 +1707879097,213,0 +1707879097,213,0 +1707879097,213,0 +1707879098,214,0 +1707879098,214,0 +1707879099,214,0 +1707879099,213,0 +1707879100,214,0 +1707879100,214,0 +1707879101,214,0 +1707879101,214,0 +1707879102,214,0 +1707879102,213,0 +1707879103,213,0 +1707879103,213,0 +1707879104,213,0 +1707879104,213,0 +1707879105,213,0 +1707879105,213,0 +1707879106,213,0 +1707879106,213,0 +1707879107,214,0 +1707879107,214,0 +1707879108,213,0 +1707879108,214,0 +1707879109,214,0 +1707879109,214,0 +1707879110,214,0 +1707879110,214,0 +1707879110,214,0 +1707879111,214,0 +1707879111,214,0 +1707879112,213,0 +1707879112,213,0 +1707879113,213,0 +1707879113,213,0 +1707879114,213,0 +1707879114,213,0 +1707879115,213,0 +1707879115,213,0 +1707879116,213,0 +1707879116,213,0 +1707879117,213,0 +1707879117,214,0 +1707879118,214,0 +1707879118,214,0 +1707879119,213,0 +1707879119,214,0 +1707879120,214,0 +1707879120,214,0 +1707879121,214,0 +1707879121,213,0 +1707879122,213,0 +1707879122,213,0 +1707879123,213,0 +1707879123,213,0 +1707879123,213,0 +1707879124,213,0 +1707879124,213,0 +1707879125,213,0 +1707879125,213,0 +1707879126,213,0 +1707879126,213,0 +1707879127,214,0 +1707879127,214,0 +1707879128,214,0 +1707879128,213,0 +1707879129,214,0 +1707879129,213,0 +1707879130,214,0 +1707879130,213,0 +1707879131,213,0 +1707879131,213,0 +1707879132,213,0 +1707879132,213,0 +1707879133,213,0 +1707879133,213,0 +1707879134,213,0 +1707879134,213,0 +1707879135,213,0 +1707879135,213,0 +1707879136,213,0 +1707879136,213,0 +1707879137,213,0 +1707879137,213,0 +1707879138,213,0 +1707879138,214,0 +1707879139,214,0 +1707879139,213,0 +1707879140,213,0 +1707879140,213,0 +1707879140,213,0 +1707879141,213,0 +1707879141,213,0 +1707879142,213,0 +1707879142,213,0 +1707879143,213,0 +1707879143,213,0 +1707879144,213,0 +1707879144,213,0 +1707879145,214,0 +1707879145,213,0 +1707879146,214,0 +1707879146,214,0 +1707879147,214,0 +1707879147,214,0 +1707879148,214,0 +1707879148,213,0 +1707879149,213,0 +1707879149,213,0 +1707879150,213,0 +1707879150,213,0 +1707879151,213,0 +1707879151,213,0 +1707879152,213,0 +1707879152,213,0 +1707879153,213,0 +1707879153,213,0 +1707879154,213,0 +1707879154,214,0 +1707879154,214,0 +1707879155,214,0 +1707879155,214,0 +1707879156,214,0 +1707879156,214,0 +1707879157,214,0 +1707879157,214,0 +1707879158,214,0 +1707879158,213,0 +1707879159,213,0 +1707879159,213,0 +1707879160,213,0 +1707879160,213,0 +1707879161,213,0 +1707879161,213,0 +1707879162,213,0 +1707879162,214,0 +1707879163,213,0 +1707879163,213,0 +1707879164,214,0 +1707879164,213,0 +1707879165,214,0 +1707879165,214,0 +1707879166,214,0 +1707879166,214,0 +1707879167,214,0 +1707879167,214,0 +1707879168,213,0 +1707879168,213,0 +1707879169,213,0 +1707879169,213,0 +1707879170,213,0 +1707879170,213,0 +1707879171,213,0 +1707879171,213,0 +1707879171,213,0 +1707879172,213,0 +1707879172,214,0 +1707879173,213,0 +1707879173,213,0 +1707879174,214,0 +1707879174,214,0 +1707879175,214,0 +1707879175,213,0 +1707879176,214,0 +1707879176,213,0 +1707879177,213,0 +1707879177,213,0 +1707879178,213,0 +1707879178,213,0 +1707879179,213,0 +1707879179,213,0 +1707879180,213,0 +1707879180,213,0 +1707879181,213,0 +1707879181,213,0 +1707879182,213,0 +1707879182,213,0 +1707879183,213,0 +1707879183,213,0 +1707879184,214,0 +1707879184,214,0 +1707879185,214,0 +1707879185,214,0 +1707879186,213,0 +1707879186,213,0 +1707879187,213,0 +1707879187,213,0 +1707879187,213,0 +1707879188,213,0 +1707879188,213,0 +1707879189,213,0 +1707879189,213,0 +1707879190,213,0 +1707879190,213,0 +1707879191,213,0 +1707879191,213,0 +1707879192,213,0 +1707879192,214,0 +1707879193,214,0 +1707879193,214,0 +1707879194,214,0 +1707879194,214,0 +1707879195,214,0 +1707879195,213,0 +1707879196,213,0 +1707879196,213,0 +1707879197,213,0 +1707879197,213,0 +1707879198,213,0 +1707879198,213,0 +1707879199,213,0 +1707879199,213,0 +1707879200,213,0 +1707879200,213,0 +1707879200,213,0 +1707879201,214,0 +1707879201,214,0 +1707879202,213,0 +1707879202,214,0 +1707879203,214,0 +1707879203,214,0 +1707879204,214,0 +1707879204,214,0 +1707879205,213,0 +1707879205,213,0 +1707879206,213,0 +1707879206,213,0 +1707879207,213,0 +1707879207,213,0 +1707879208,213,0 +1707879208,213,0 +1707879209,213,0 +1707879209,213,0 +1707879210,213,0 +1707879210,213,0 +1707879211,214,0 +1707879211,214,0 +1707879212,214,0 +1707879212,214,0 +1707879213,214,0 +1707879213,213,0 +1707879213,213,0 +1707879214,213,0 +1707879214,213,0 +1707879215,213,0 +1707879215,213,0 +1707879216,213,0 +1707879216,213,0 +1707879217,213,0 +1707879217,213,0 +1707879218,213,0 +1707879218,213,0 +1707879219,213,0 +1707879219,213,0 +1707879220,213,0 +1707879220,213,0 +1707879221,213,0 +1707879221,213,0 +1707879222,213,0 +1707879222,214,0 +1707879223,214,0 +1707879223,213,0 +1707879224,213,0 +1707879224,213,0 +1707879225,213,0 +1707879225,213,0 +1707879226,213,0 +1707879226,213,0 +1707879226,213,0 +1707879227,213,0 +1707879227,213,0 +1707879228,213,0 +1707879228,213,0 +1707879229,213,0 +1707879229,213,0 +1707879230,213,0 +1707879230,213,0 +1707879231,213,0 +1707879231,213,0 +1707879232,213,0 +1707879232,214,0 +1707879233,213,0 +1707879233,213,0 +1707879234,213,0 +1707879234,213,0 +1707879235,213,0 +1707879235,213,0 +1707879236,213,0 +1707879236,213,0 +1707879237,213,0 +1707879237,213,0 +1707879238,213,0 +1707879238,213,0 +1707879239,213,0 +1707879239,213,0 +1707879239,213,0 +1707879240,213,0 +1707879240,213,0 +1707879241,214,0 +1707879241,213,0 +1707879242,213,0 +1707879242,213,0 +1707879243,213,0 +1707879243,213,0 +1707879244,213,0 +1707879244,213,0 +1707879245,213,0 +1707879245,213,0 +1707879246,213,0 +1707879246,213,0 +1707879247,213,0 +1707879247,213,0 +1707879248,213,0 +1707879248,213,0 +1707879249,213,0 +1707879249,214,0 +1707879250,213,0 +1707879250,214,0 +1707879251,213,0 +1707879251,213,0 +1707879252,213,0 +1707879252,213,0 +1707879253,213,0 +1707879253,213,0 +1707879254,213,0 +1707879254,213,0 +1707879255,213,0 +1707879255,213,0 +1707879255,213,0 +1707879256,213,0 +1707879256,213,0 +1707879257,213,0 +1707879257,213,0 +1707879258,213,0 +1707879258,213,0 +1707879259,213,0 +1707879259,213,0 +1707879260,213,0 +1707879260,213,0 +1707879261,213,0 +1707879261,213,0 +1707879262,213,0 +1707879262,213,0 +1707879263,213,0 +1707879263,213,0 +1707879264,213,0 +1707879264,213,0 +1707879265,213,0 +1707879265,213,0 +1707879266,213,0 +1707879266,213,0 +1707879267,213,0 +1707879267,214,0 +1707879268,213,0 +1707879268,214,0 +1707879269,213,0 +1707879269,214,0 +1707879270,214,0 +1707879270,213,0 +1707879270,213,0 +1707879271,213,0 +1707879271,213,0 +1707879272,213,0 +1707879272,213,0 +1707879273,213,0 +1707879273,213,0 +1707879274,213,0 +1707879274,213,0 +1707879275,213,0 +1707879275,214,0 +1707879276,214,0 +1707879276,214,0 +1707879277,214,0 +1707879277,214,0 +1707879278,214,0 +1707879278,214,0 +1707879279,213,0 +1707879279,213,0 +1707879280,213,0 +1707879280,213,0 +1707879281,213,0 +1707879281,213,0 +1707879282,213,0 +1707879282,213,0 +1707879283,214,0 +1707879283,213,0 +1707879284,214,0 +1707879284,214,0 +1707879285,214,0 +1707879285,214,0 +1707879286,214,0 +1707879286,214,0 +1707879286,214,0 +1707879287,214,0 +1707879287,214,0 +1707879288,213,0 +1707879288,214,0 +1707879289,213,0 +1707879289,213,0 +1707879290,213,0 +1707879290,213,0 +1707879291,213,0 +1707879291,213,0 +1707879292,213,0 +1707879292,214,0 +1707879293,213,0 +1707879293,214,0 +1707879294,214,0 +1707879294,214,0 +1707879295,214,0 +1707879295,214,0 +1707879296,214,0 +1707879296,214,0 +1707879297,214,0 +1707879297,213,0 +1707879298,213,0 +1707879298,213,0 +1707879299,213,0 +1707879299,213,0 +1707879299,213,0 +1707879300,213,0 +1707879300,213,0 +1707879301,213,0 +1707879301,213,0 +1707879302,213,0 +1707879302,213,0 +1707879303,213,0 +1707879303,213,0 +1707879304,214,0 +1707879304,213,0 +1707879305,214,0 +1707879305,214,0 +1707879306,214,0 +1707879306,214,0 +1707879307,213,0 +1707879307,213,0 +1707879308,213,0 +1707879308,213,0 +1707879309,213,0 +1707879309,213,0 +1707879310,213,0 +1707879310,213,0 +1707879311,213,0 +1707879311,213,0 +1707879311,213,0 +1707879312,213,0 +1707879312,213,0 +1707879313,213,0 +1707879313,213,0 +1707879314,213,0 +1707879314,213,0 +1707879315,214,0 +1707879315,213,0 +1707879316,214,0 +1707879316,213,0 +1707879317,213,0 +1707879317,213,0 +1707879318,213,0 +1707879318,213,0 +1707879319,213,0 +1707879319,213,0 +1707879320,213,0 +1707879320,213,0 +1707879321,213,0 +1707879321,213,0 +1707879322,213,0 +1707879322,213,0 +1707879323,213,0 +1707879323,213,0 +1707879324,214,0 +1707879324,213,0 +1707879325,213,0 +1707879325,213,0 +1707879326,213,0 +1707879326,213,0 +1707879327,213,0 +1707879327,213,0 +1707879327,213,0 +1707879328,213,0 +1707879328,213,0 +1707879329,213,0 +1707879329,213,0 +1707879330,213,0 +1707879330,213,0 +1707879331,213,0 +1707879331,213,0 +1707879332,213,0 +1707879332,213,0 +1707879333,214,0 +1707879333,213,0 +1707879334,213,0 +1707879334,213,0 +1707879335,213,0 +1707879335,213,0 +1707879336,213,0 +1707879336,213,0 +1707879337,213,0 +1707879337,213,0 +1707879338,213,0 +1707879338,213,0 +1707879339,213,0 +1707879339,213,0 +1707879340,213,0 +1707879340,213,0 +1707879340,213,0 +1707879341,213,0 +1707879341,213,0 +1707879342,214,0 +1707879342,214,0 +1707879343,214,0 +1707879343,213,0 +1707879344,213,0 +1707879344,213,0 +1707879345,213,0 +1707879345,213,0 +1707879346,213,0 +1707879346,213,0 +1707879347,213,0 +1707879347,213,0 +1707879348,213,0 +1707879348,213,0 +1707879349,213,0 +1707879349,213,0 +1707879350,213,0 +1707879350,214,0 +1707879351,213,0 +1707879351,214,0 +1707879352,213,0 +1707879352,213,0 +1707879353,214,0 +1707879353,214,0 +1707879353,213,0 +1707879354,213,0 +1707879354,213,0 +1707879355,213,0 +1707879355,213,0 +1707879356,213,0 +1707879356,213,0 +1707879357,213,0 +1707879357,213,0 +1707879358,213,0 +1707879358,213,0 +1707879359,213,0 +1707879359,214,0 +1707879360,214,0 +1707879360,214,0 +1707879361,214,0 +1707879361,214,0 +1707879362,213,0 +1707879362,214,0 +1707879363,213,0 +1707879363,213,0 +1707879364,213,0 +1707879364,213,0 +1707879365,213,0 +1707879365,213,0 +1707879366,213,0 +1707879366,213,0 +1707879367,213,0 +1707879367,213,0 +1707879367,213,0 +1707879368,213,0 +1707879368,213,0 +1707879369,213,0 +1707879369,214,0 +1707879370,213,0 +1707879370,214,0 +1707879371,213,0 +1707879371,214,0 +1707879372,213,0 +1707879372,213,0 +1707879373,213,0 +1707879373,213,0 +1707879374,213,0 +1707879374,213,0 +1707879375,213,0 +1707879375,213,0 +1707879376,213,0 +1707879376,213,0 +1707879377,213,0 +1707879377,213,0 +1707879378,213,0 +1707879378,213,0 +1707879379,214,0 +1707879379,213,0 +1707879379,214,0 +1707879380,214,0 +1707879380,214,0 +1707879381,214,0 +1707879381,213,0 +1707879382,213,0 +1707879382,213,0 +1707879383,213,0 +1707879383,213,0 +1707879384,213,0 +1707879384,213,0 +1707879385,213,0 +1707879385,213,0 +1707879386,213,0 +1707879386,213,0 +1707879387,213,0 +1707879387,213,0 +1707879388,213,0 +1707879388,214,0 +1707879389,213,0 +1707879389,214,0 +1707879390,214,0 +1707879390,214,0 +1707879391,213,0 +1707879391,213,0 +1707879392,213,0 +1707879392,213,0 +1707879392,213,0 +1707879393,213,0 +1707879393,213,0 +1707879394,213,0 +1707879394,213,0 +1707879395,213,0 +1707879395,213,0 +1707879396,213,0 +1707879396,213,0 +1707879397,214,0 +1707879397,214,0 +1707879398,214,0 +1707879398,213,0 +1707879399,214,0 +1707879399,214,0 +1707879400,213,0 +1707879400,213,0 +1707879401,213,0 +1707879401,213,0 +1707879402,213,0 +1707879402,213,0 +1707879403,213,0 +1707879403,213,0 +1707879404,213,0 +1707879404,213,0 +1707879405,213,0 +1707879405,213,0 +1707879406,213,0 +1707879406,213,0 +1707879406,214,0 +1707879407,214,0 +1707879407,214,0 +1707879408,214,0 +1707879408,213,0 +1707879409,213,0 +1707879409,213,0 +1707879410,213,0 +1707879410,213,0 +1707879411,213,0 +1707879411,213,0 +1707879412,213,0 +1707879412,213,0 +1707879413,213,0 +1707879413,213,0 +1707879414,213,0 +1707879414,213,0 +1707879415,213,0 +1707879415,213,0 +1707879416,213,0 +1707879416,213,0 +1707879417,213,0 +1707879417,214,0 +1707879418,213,0 +1707879418,213,0 +1707879419,213,0 +1707879419,213,0 +1707879419,213,0 +1707879420,213,0 +1707879420,213,0 +1707879421,213,0 +1707879421,213,0 +1707879422,213,0 +1707879422,213,0 +1707879423,213,0 +1707879423,213,0 +1707879424,213,0 +1707879424,213,0 +1707879425,213,0 +1707879425,214,0 +1707879426,214,0 +1707879426,213,0 +1707879427,213,0 +1707879427,214,0 +1707879428,213,0 +1707879428,213,0 +1707879429,213,0 +1707879429,213,0 +1707879430,213,0 +1707879430,213,0 +1707879431,213,0 +1707879431,213,0 +1707879432,213,0 +1707879432,213,0 +1707879432,213,0 +1707879433,213,0 +1707879433,214,0 +1707879434,213,0 +1707879434,213,0 +1707879435,214,0 +1707879435,213,0 +1707879436,213,0 +1707879436,214,0 +1707879437,213,0 +1707879437,213,0 +1707879438,213,0 +1707879438,213,0 +1707879439,213,0 +1707879439,213,0 +1707879440,213,0 +1707879440,213,0 +1707879441,213,0 +1707879441,213,0 +1707879442,213,0 +1707879442,213,0 +1707879443,213,0 +1707879443,213,0 +1707879444,213,0 +1707879444,213,0 +1707879445,214,0 +1707879445,213,0 +1707879446,214,0 +1707879446,213,0 +1707879447,213,0 +1707879447,213,0 +1707879447,213,0 +1707879448,213,0 +1707879448,213,0 +1707879449,213,0 +1707879449,213,0 +1707879450,213,0 +1707879450,213,0 +1707879451,213,0 +1707879451,213,0 +1707879452,213,0 +1707879452,213,0 +1707879453,213,0 +1707879453,213,0 +1707879454,213,0 +1707879454,213,0 +1707879455,213,0 +1707879455,213,0 +1707879456,213,0 +1707879456,213,0 +1707879457,213,0 +1707879457,213,0 +1707879458,214,0 +1707879458,213,0 +1707879459,213,0 +1707879459,214,0 +1707879460,213,0 +1707879460,213,0 +1707879461,213,0 +1707879461,213,0 +1707879462,213,0 +1707879462,213,0 +1707879462,213,0 +1707879463,213,0 +1707879463,213,0 +1707879464,213,0 +1707879464,213,0 +1707879465,213,0 +1707879465,213,0 +1707879466,214,0 +1707879466,214,0 +1707879467,214,0 +1707879467,213,0 +1707879468,214,0 +1707879468,214,0 +1707879469,214,0 +1707879469,213,0 +1707879470,213,0 +1707879470,213,0 +1707879471,213,0 +1707879471,213,0 +1707879472,213,0 +1707879472,213,0 +1707879473,213,0 +1707879473,214,0 +1707879474,214,0 +1707879474,214,0 +1707879475,214,0 +1707879475,214,0 +1707879476,214,0 +1707879476,214,0 +1707879476,214,0 +1707879477,214,0 +1707879477,214,0 +1707879478,214,0 +1707879478,214,0 +1707879479,213,0 +1707879479,213,0 +1707879480,213,0 +1707879480,213,0 +1707879481,213,0 +1707879481,213,0 +1707879482,214,0 +1707879482,214,0 +1707879483,213,0 +1707879483,214,0 +1707879484,214,0 +1707879484,214,0 +1707879485,214,0 +1707879485,214,0 +1707879486,214,0 +1707879486,214,0 +1707879487,214,0 +1707879487,213,0 +1707879488,214,0 +1707879488,213,0 +1707879489,213,0 +1707879489,213,0 +1707879490,213,0 +1707879490,213,0 +1707879491,213,0 +1707879491,213,0 +1707879491,213,0 +1707879492,213,0 +1707879492,214,0 +1707879493,214,0 +1707879493,214,0 +1707879494,214,0 +1707879494,214,0 +1707879495,214,0 +1707879495,214,0 +1707879496,214,0 +1707879496,214,0 +1707879497,214,0 +1707879497,213,0 +1707879498,213,0 +1707879498,213,0 +1707879499,213,0 +1707879499,213,0 +1707879500,213,0 +1707879500,213,0 +1707879501,213,0 +1707879501,213,0 +1707879502,213,0 +1707879502,213,0 +1707879503,213,0 +1707879503,213,0 +1707879504,213,0 +1707879504,213,0 +1707879505,214,0 +1707879505,214,0 +1707879506,214,0 +1707879506,213,0 +1707879507,213,0 +1707879507,213,0 +1707879507,213,0 +1707879508,213,0 +1707879508,213,0 +1707879509,213,0 +1707879509,213,0 +1707879510,213,0 +1707879510,213,0 +1707879511,213,0 +1707879511,213,0 +1707879512,213,0 +1707879512,213,0 +1707879513,213,0 +1707879513,213,0 +1707879514,214,0 +1707879514,214,0 +1707879515,214,0 +1707879515,214,0 +1707879516,213,0 +1707879516,213,0 +1707879517,213,0 +1707879517,213,0 +1707879518,213,0 +1707879518,213,0 +1707879519,213,0 +1707879519,213,0 +1707879520,213,0 +1707879520,213,0 +1707879521,213,0 +1707879521,213,0 +1707879522,213,0 +1707879522,213,0 +1707879523,213,0 +1707879523,214,0 +1707879523,213,0 +1707879524,214,0 +1707879524,214,0 +1707879525,213,0 +1707879525,213,0 +1707879526,213,0 +1707879526,213,0 +1707879527,213,0 +1707879527,213,0 +1707879528,213,0 +1707879528,213,0 +1707879529,213,0 +1707879529,213,0 +1707879530,213,0 +1707879530,213,0 +1707879531,213,0 +1707879531,213,0 +1707879532,213,0 +1707879532,213,0 +1707879533,214,0 +1707879533,214,0 +1707879534,213,0 +1707879534,213,0 +1707879535,213,0 +1707879535,213,0 +1707879536,213,0 +1707879536,213,0 +1707879537,213,0 +1707879537,213,0 +1707879538,213,0 +1707879538,213,0 +1707879539,213,0 +1707879539,213,0 +1707879539,213,0 +1707879540,213,0 +1707879540,213,0 +1707879541,214,0 +1707879541,214,0 +1707879542,214,0 +1707879542,214,0 +1707879543,213,0 +1707879543,214,0 +1707879544,213,0 +1707879544,213,0 +1707879545,213,0 +1707879545,213,0 +1707879546,213,0 +1707879546,213,0 +1707879547,213,0 +1707879547,213,0 +1707879548,213,0 +1707879548,213,0 +1707879549,213,0 +1707879549,213,0 +1707879550,213,0 +1707879550,213,0 +1707879551,213,0 +1707879551,213,0 +1707879552,214,0 +1707879552,214,0 +1707879553,214,0 +1707879553,213,0 +1707879554,213,0 +1707879554,213,0 +1707879554,213,0 +1707879555,213,0 +1707879555,213,0 +1707879556,213,0 +1707879556,213,0 +1707879557,213,0 +1707879557,213,0 +1707879558,213,0 +1707879558,213,0 +1707879559,214,0 +1707879559,214,0 +1707879560,214,0 +1707879560,213,0 +1707879561,214,0 +1707879561,214,0 +1707879562,213,0 +1707879562,213,0 +1707879563,213,0 +1707879563,213,0 +1707879564,213,0 +1707879564,213,0 +1707879565,213,0 +1707879565,213,0 +1707879566,213,0 +1707879566,213,0 +1707879566,213,0 +1707879567,213,0 +1707879567,213,0 +1707879568,213,0 +1707879568,213,0 +1707879569,213,0 +1707879569,213,0 +1707879570,214,0 +1707879570,214,0 +1707879571,214,0 +1707879571,214,0 +1707879572,213,0 +1707879572,213,0 +1707879573,213,0 +1707879573,213,0 +1707879574,213,0 +1707879574,213,0 +1707879575,213,0 +1707879575,213,0 +1707879576,213,0 +1707879576,213,0 +1707879577,213,0 +1707879577,213,0 +1707879578,213,0 +1707879578,213,0 +1707879579,213,0 +1707879579,214,0 +1707879579,214,0 +1707879580,214,0 +1707879580,214,0 +1707879581,213,0 +1707879581,213,0 +1707879582,213,0 +1707879582,213,0 +1707879583,213,0 +1707879583,213,0 +1707879584,213,0 +1707879584,213,0 +1707879585,213,0 +1707879585,213,0 +1707879586,213,0 +1707879586,213,0 +1707879587,213,0 +1707879587,213,0 +1707879588,214,0 +1707879588,213,0 +1707879589,213,0 +1707879589,214,0 +1707879590,214,0 +1707879590,213,0 +1707879591,213,0 +1707879591,213,0 +1707879592,213,0 +1707879592,213,0 +1707879592,213,0 +1707879593,213,0 +1707879593,213,0 +1707879594,213,0 +1707879594,213,0 +1707879595,213,0 +1707879595,213,0 +1707879596,213,0 +1707879596,213,0 +1707879597,213,0 +1707879597,214,0 +1707879598,213,0 +1707879598,214,0 +1707879599,213,0 +1707879599,214,0 diff --git a/laser_value/0214-13.csv b/laser_value/0214-13.csv new file mode 100644 index 0000000..37fe509 --- /dev/null +++ b/laser_value/0214-13.csv @@ -0,0 +1,7451 @@ +timestamp,laser_value,event +1707879600,213,0 +1707879600,213,0 +1707879601,213,0 +1707879601,213,0 +1707879602,213,0 +1707879602,213,0 +1707879603,213,0 +1707879603,213,0 +1707879604,213,0 +1707879604,213,0 +1707879605,213,0 +1707879605,213,0 +1707879606,213,0 +1707879606,213,0 +1707879607,213,0 +1707879607,213,0 +1707879608,213,0 +1707879608,213,0 +1707879609,213,0 +1707879609,213,0 +1707879610,213,0 +1707879610,213,0 +1707879610,213,0 +1707879611,213,0 +1707879611,213,0 +1707879612,213,0 +1707879612,213,0 +1707879613,213,0 +1707879613,213,0 +1707879614,213,0 +1707879614,213,0 +1707879615,213,0 +1707879615,213,0 +1707879616,213,0 +1707879616,214,0 +1707879617,213,0 +1707879617,213,0 +1707879618,214,0 +1707879618,213,0 +1707879619,213,0 +1707879619,213,0 +1707879620,213,0 +1707879620,213,0 +1707879621,213,0 +1707879621,213,0 +1707879622,213,0 +1707879622,213,0 +1707879623,213,0 +1707879623,213,0 +1707879624,213,0 +1707879624,213,0 +1707879624,213,0 +1707879625,213,0 +1707879625,213,0 +1707879626,214,0 +1707879626,214,0 +1707879627,213,0 +1707879627,213,0 +1707879628,213,0 +1707879628,213,0 +1707879629,213,0 +1707879629,213,0 +1707879630,213,0 +1707879630,213,0 +1707879631,213,0 +1707879631,213,0 +1707879632,213,0 +1707879632,213,0 +1707879633,213,0 +1707879633,213,0 +1707879634,213,0 +1707879634,213,0 +1707879635,214,0 +1707879635,213,0 +1707879636,214,0 +1707879636,213,0 +1707879637,213,0 +1707879637,213,0 +1707879638,212,0 +1707879638,213,0 +1707879639,213,0 +1707879639,213,0 +1707879639,213,0 +1707879640,213,0 +1707879640,213,0 +1707879641,213,0 +1707879641,213,0 +1707879642,213,0 +1707879642,213,0 +1707879643,213,0 +1707879643,213,0 +1707879644,213,0 +1707879644,213,0 +1707879645,213,0 +1707879645,213,0 +1707879646,214,0 +1707879646,213,0 +1707879647,213,0 +1707879647,213,0 +1707879648,213,0 +1707879648,213,0 +1707879649,213,0 +1707879649,213,0 +1707879650,213,0 +1707879650,213,0 +1707879651,213,0 +1707879651,213,0 +1707879651,213,0 +1707879652,213,0 +1707879652,214,0 +1707879653,214,0 +1707879653,214,0 +1707879654,214,0 +1707879654,214,0 +1707879655,214,0 +1707879655,213,0 +1707879656,213,0 +1707879656,213,0 +1707879657,213,0 +1707879657,213,0 +1707879658,213,0 +1707879658,213,0 +1707879659,213,0 +1707879659,213,0 +1707879660,213,0 +1707879660,214,0 +1707879661,213,0 +1707879661,213,0 +1707879662,214,0 +1707879662,214,0 +1707879663,214,0 +1707879663,214,0 +1707879664,214,0 +1707879664,214,0 +1707879665,213,0 +1707879665,213,0 +1707879665,213,0 +1707879666,213,0 +1707879666,213,0 +1707879667,213,0 +1707879667,213,0 +1707879668,213,0 +1707879668,214,0 +1707879669,214,0 +1707879669,214,0 +1707879670,214,0 +1707879670,214,0 +1707879671,214,0 +1707879671,214,0 +1707879672,214,0 +1707879672,214,0 +1707879673,214,0 +1707879673,214,0 +1707879674,214,0 +1707879674,213,0 +1707879675,213,0 +1707879675,213,0 +1707879676,213,0 +1707879676,213,0 +1707879677,213,0 +1707879677,213,0 +1707879678,213,0 +1707879678,213,0 +1707879678,213,0 +1707879679,214,0 +1707879679,214,0 +1707879680,214,0 +1707879680,214,0 +1707879681,214,0 +1707879681,214,0 +1707879682,214,0 +1707879682,214,0 +1707879683,213,0 +1707879683,213,0 +1707879684,213,0 +1707879684,213,0 +1707879685,213,0 +1707879685,213,0 +1707879686,213,0 +1707879686,213,0 +1707879687,213,0 +1707879687,214,0 +1707879688,213,0 +1707879688,213,0 +1707879689,214,0 +1707879689,214,0 +1707879690,214,0 +1707879690,214,0 +1707879691,214,0 +1707879691,214,0 +1707879692,214,0 +1707879692,213,0 +1707879693,213,0 +1707879693,213,0 +1707879694,213,0 +1707879694,213,0 +1707879694,213,0 +1707879695,213,0 +1707879695,213,0 +1707879696,213,0 +1707879696,213,0 +1707879697,213,0 +1707879697,213,0 +1707879698,214,0 +1707879698,213,0 +1707879699,214,0 +1707879699,214,0 +1707879700,213,0 +1707879700,214,0 +1707879701,214,0 +1707879701,214,0 +1707879702,213,0 +1707879702,213,0 +1707879703,213,0 +1707879703,213,0 +1707879704,213,0 +1707879704,213,0 +1707879705,213,0 +1707879705,213,0 +1707879706,213,0 +1707879706,213,0 +1707879707,214,0 +1707879707,213,0 +1707879707,214,0 +1707879708,213,0 +1707879708,214,0 +1707879709,214,0 +1707879709,214,0 +1707879710,214,0 +1707879710,214,0 +1707879711,213,0 +1707879711,213,0 +1707879712,213,0 +1707879712,213,0 +1707879713,213,0 +1707879713,213,0 +1707879714,213,0 +1707879714,213,0 +1707879715,213,0 +1707879715,213,0 +1707879716,213,0 +1707879716,213,0 +1707879717,213,0 +1707879717,213,0 +1707879718,213,0 +1707879718,214,0 +1707879719,214,0 +1707879719,214,0 +1707879720,214,0 +1707879720,213,0 +1707879721,213,0 +1707879721,213,0 +1707879721,213,0 +1707879722,213,0 +1707879722,213,0 +1707879723,213,0 +1707879723,213,0 +1707879724,213,0 +1707879724,213,0 +1707879725,213,0 +1707879725,213,0 +1707879726,213,0 +1707879726,213,0 +1707879727,214,0 +1707879727,213,0 +1707879728,213,0 +1707879728,214,0 +1707879729,213,0 +1707879729,213,0 +1707879730,213,0 +1707879730,213,0 +1707879731,213,0 +1707879731,213,0 +1707879732,213,0 +1707879732,213,0 +1707879733,213,0 +1707879733,213,0 +1707879734,213,0 +1707879734,213,0 +1707879735,213,0 +1707879735,213,0 +1707879735,213,0 +1707879736,214,0 +1707879736,214,0 +1707879737,214,0 +1707879737,214,0 +1707879738,214,0 +1707879738,214,0 +1707879739,213,0 +1707879739,213,0 +1707879740,213,0 +1707879740,213,0 +1707879741,213,0 +1707879741,213,0 +1707879742,213,0 +1707879742,213,0 +1707879743,213,0 +1707879743,213,0 +1707879744,213,0 +1707879744,213,0 +1707879745,213,0 +1707879745,213,0 +1707879746,213,0 +1707879746,213,0 +1707879747,213,0 +1707879747,213,0 +1707879748,214,0 +1707879748,213,0 +1707879749,213,0 +1707879749,213,0 +1707879750,213,0 +1707879750,213,0 +1707879751,213,0 +1707879751,213,0 +1707879751,213,0 +1707879752,213,0 +1707879752,213,0 +1707879753,213,0 +1707879753,213,0 +1707879754,213,0 +1707879754,213,0 +1707879755,213,0 +1707879755,213,0 +1707879756,214,0 +1707879756,214,0 +1707879757,214,0 +1707879757,213,0 +1707879758,213,0 +1707879758,213,0 +1707879759,213,0 +1707879759,213,0 +1707879760,213,0 +1707879760,213,0 +1707879761,213,0 +1707879761,213,0 +1707879762,213,0 +1707879762,213,0 +1707879763,213,0 +1707879763,213,0 +1707879764,213,0 +1707879764,213,0 +1707879765,213,0 +1707879765,213,0 +1707879766,213,0 +1707879766,213,0 +1707879767,213,0 +1707879767,213,0 +1707879767,213,0 +1707879768,213,0 +1707879768,213,0 +1707879769,213,0 +1707879769,213,0 +1707879770,213,0 +1707879770,213,0 +1707879771,213,0 +1707879771,213,0 +1707879772,213,0 +1707879772,213,0 +1707879773,213,0 +1707879773,214,0 +1707879774,213,0 +1707879774,214,0 +1707879775,214,0 +1707879775,214,0 +1707879776,214,0 +1707879776,213,0 +1707879777,213,0 +1707879777,213,0 +1707879778,213,0 +1707879778,213,0 +1707879779,213,0 +1707879779,213,0 +1707879780,213,0 +1707879780,213,0 +1707879781,213,0 +1707879781,213,0 +1707879782,213,0 +1707879782,213,0 +1707879782,213,0 +1707879783,213,0 +1707879783,214,0 +1707879784,214,0 +1707879784,214,0 +1707879785,214,0 +1707879785,213,0 +1707879786,213,0 +1707879786,213,0 +1707879787,213,0 +1707879787,213,0 +1707879788,213,0 +1707879788,213,0 +1707879789,213,0 +1707879789,213,0 +1707879790,213,0 +1707879790,213,0 +1707879791,213,0 +1707879791,213,0 +1707879792,214,0 +1707879792,213,0 +1707879793,214,0 +1707879793,214,0 +1707879794,214,0 +1707879794,214,0 +1707879795,213,0 +1707879795,213,0 +1707879796,213,0 +1707879796,213,0 +1707879796,213,0 +1707879797,213,0 +1707879797,213,0 +1707879798,213,0 +1707879798,213,0 +1707879799,213,0 +1707879799,213,0 +1707879800,213,0 +1707879800,213,0 +1707879801,213,0 +1707879801,214,0 +1707879802,213,0 +1707879802,214,0 +1707879803,214,0 +1707879803,214,0 +1707879804,213,0 +1707879804,213,0 +1707879805,213,0 +1707879805,213,0 +1707879806,213,0 +1707879806,213,0 +1707879807,213,0 +1707879807,213,0 +1707879808,213,0 +1707879808,213,0 +1707879809,213,0 +1707879809,213,0 +1707879810,213,0 +1707879810,213,0 +1707879811,214,0 +1707879811,213,0 +1707879812,214,0 +1707879812,214,0 +1707879813,214,0 +1707879813,213,0 +1707879813,213,0 +1707879814,213,0 +1707879814,213,0 +1707879815,213,0 +1707879815,213,0 +1707879816,213,0 +1707879816,213,0 +1707879817,213,0 +1707879817,213,0 +1707879818,213,0 +1707879818,213,0 +1707879819,213,0 +1707879819,213,0 +1707879820,214,0 +1707879820,214,0 +1707879821,214,0 +1707879821,214,0 +1707879822,213,0 +1707879822,213,0 +1707879823,213,0 +1707879823,213,0 +1707879824,213,0 +1707879824,213,0 +1707879825,213,0 +1707879825,213,0 +1707879826,213,0 +1707879826,213,0 +1707879827,213,0 +1707879827,213,0 +1707879828,213,0 +1707879828,214,0 +1707879828,213,0 +1707879829,213,0 +1707879829,214,0 +1707879830,213,0 +1707879830,214,0 +1707879831,214,0 +1707879831,214,0 +1707879832,213,0 +1707879832,213,0 +1707879833,213,0 +1707879833,213,0 +1707879834,213,0 +1707879834,213,0 +1707879835,213,0 +1707879835,213,0 +1707879836,213,0 +1707879836,213,0 +1707879837,213,0 +1707879837,213,0 +1707879838,213,0 +1707879838,213,0 +1707879839,213,0 +1707879839,213,0 +1707879840,213,0 +1707879840,214,0 +1707879841,214,0 +1707879841,213,0 +1707879841,213,0 +1707879842,213,0 +1707879842,213,0 +1707879843,213,0 +1707879843,213,0 +1707879844,213,0 +1707879844,213,0 +1707879845,213,0 +1707879845,213,0 +1707879846,213,0 +1707879846,213,0 +1707879847,213,0 +1707879847,213,0 +1707879848,214,0 +1707879848,213,0 +1707879849,214,0 +1707879849,214,0 +1707879850,214,0 +1707879850,213,0 +1707879851,213,0 +1707879851,213,0 +1707879852,213,0 +1707879852,213,0 +1707879853,213,0 +1707879853,213,0 +1707879854,214,0 +1707879854,214,0 +1707879855,214,0 +1707879855,214,0 +1707879856,214,0 +1707879856,214,0 +1707879856,214,0 +1707879857,214,0 +1707879857,214,0 +1707879858,214,0 +1707879858,214,0 +1707879859,213,0 +1707879859,214,0 +1707879860,213,0 +1707879860,213,0 +1707879861,213,0 +1707879861,213,0 +1707879862,213,0 +1707879862,213,0 +1707879863,213,0 +1707879863,214,0 +1707879864,214,0 +1707879864,214,0 +1707879865,214,0 +1707879865,214,0 +1707879866,214,0 +1707879866,214,0 +1707879867,214,0 +1707879867,214,0 +1707879868,214,0 +1707879868,213,0 +1707879869,213,0 +1707879869,213,0 +1707879870,213,0 +1707879870,213,0 +1707879870,214,0 +1707879871,213,0 +1707879871,213,0 +1707879872,213,0 +1707879872,214,0 +1707879873,214,0 +1707879873,214,0 +1707879874,214,0 +1707879874,214,0 +1707879875,214,0 +1707879875,214,0 +1707879876,214,0 +1707879876,214,0 +1707879877,214,0 +1707879877,214,0 +1707879878,213,0 +1707879878,213,0 +1707879879,213,0 +1707879879,213,0 +1707879880,213,0 +1707879880,213,0 +1707879881,213,0 +1707879881,213,0 +1707879882,213,0 +1707879882,213,0 +1707879883,213,0 +1707879883,214,0 +1707879884,213,0 +1707879884,213,0 +1707879885,214,0 +1707879885,214,0 +1707879886,214,0 +1707879886,214,0 +1707879886,214,0 +1707879887,214,0 +1707879887,213,0 +1707879888,213,0 +1707879888,213,0 +1707879889,213,0 +1707879889,213,0 +1707879890,213,0 +1707879890,213,0 +1707879891,213,0 +1707879891,213,0 +1707879892,213,0 +1707879892,213,0 +1707879893,213,0 +1707879893,213,0 +1707879894,213,0 +1707879894,214,0 +1707879895,213,0 +1707879895,213,0 +1707879896,213,0 +1707879896,214,0 +1707879897,213,0 +1707879897,213,0 +1707879898,213,0 +1707879898,213,0 +1707879899,213,0 +1707879899,213,0 +1707879899,213,0 +1707879900,213,0 +1707879900,213,0 +1707879901,213,0 +1707879901,213,0 +1707879902,213,0 +1707879902,213,0 +1707879903,213,0 +1707879903,213,0 +1707879904,213,0 +1707879904,214,0 +1707879905,213,0 +1707879905,213,0 +1707879906,213,0 +1707879906,213,0 +1707879907,213,0 +1707879907,213,0 +1707879908,213,0 +1707879908,213,0 +1707879909,213,0 +1707879909,213,0 +1707879910,213,0 +1707879910,213,0 +1707879911,213,0 +1707879911,213,0 +1707879912,213,0 +1707879912,213,0 +1707879913,213,0 +1707879913,213,0 +1707879914,213,0 +1707879914,213,0 +1707879914,214,0 +1707879915,214,0 +1707879915,213,0 +1707879916,213,0 +1707879916,213,0 +1707879917,213,0 +1707879917,213,0 +1707879918,213,0 +1707879918,213,0 +1707879919,213,0 +1707879919,213,0 +1707879920,213,0 +1707879920,213,0 +1707879921,213,0 +1707879921,213,0 +1707879922,213,0 +1707879922,213,0 +1707879923,213,0 +1707879923,213,0 +1707879924,214,0 +1707879924,213,0 +1707879925,213,0 +1707879925,213,0 +1707879926,213,0 +1707879926,213,0 +1707879927,213,0 +1707879927,213,0 +1707879928,213,0 +1707879928,213,0 +1707879929,213,0 +1707879929,213,0 +1707879930,213,0 +1707879930,213,0 +1707879930,213,0 +1707879931,213,0 +1707879931,213,0 +1707879932,214,0 +1707879932,214,0 +1707879933,213,0 +1707879933,214,0 +1707879934,213,0 +1707879934,213,0 +1707879935,213,0 +1707879935,213,0 +1707879936,213,0 +1707879936,213,0 +1707879937,213,0 +1707879937,213,0 +1707879938,213,0 +1707879938,213,0 +1707879939,213,0 +1707879939,213,0 +1707879940,213,0 +1707879940,213,0 +1707879941,213,0 +1707879941,214,0 +1707879942,213,0 +1707879942,214,0 +1707879943,213,0 +1707879943,214,0 +1707879944,213,0 +1707879944,213,0 +1707879944,213,0 +1707879945,213,0 +1707879945,213,0 +1707879946,213,0 +1707879946,213,0 +1707879947,213,0 +1707879947,213,0 +1707879948,213,0 +1707879948,213,0 +1707879949,213,0 +1707879949,213,0 +1707879950,213,0 +1707879950,213,0 +1707879951,214,0 +1707879951,214,0 +1707879952,214,0 +1707879952,213,0 +1707879953,213,0 +1707879953,213,0 +1707879954,213,0 +1707879954,213,0 +1707879955,213,0 +1707879955,213,0 +1707879956,213,0 +1707879956,213,0 +1707879957,213,0 +1707879957,213,0 +1707879958,213,0 +1707879958,213,0 +1707879959,214,0 +1707879959,214,0 +1707879960,214,0 +1707879960,214,0 +1707879961,213,0 +1707879961,214,0 +1707879961,214,0 +1707879962,213,0 +1707879962,213,0 +1707879963,213,0 +1707879963,213,0 +1707879964,213,0 +1707879964,213,0 +1707879965,213,0 +1707879965,213,0 +1707879966,213,0 +1707879966,213,0 +1707879967,213,0 +1707879967,213,0 +1707879968,214,0 +1707879968,213,0 +1707879969,213,0 +1707879969,214,0 +1707879970,214,0 +1707879970,214,0 +1707879971,214,0 +1707879971,213,0 +1707879972,213,0 +1707879972,213,0 +1707879973,213,0 +1707879973,213,0 +1707879974,213,0 +1707879974,213,0 +1707879975,213,0 +1707879975,214,0 +1707879975,213,0 +1707879976,213,0 +1707879976,214,0 +1707879977,214,0 +1707879977,214,0 +1707879978,214,0 +1707879978,214,0 +1707879979,214,0 +1707879979,214,0 +1707879980,214,0 +1707879980,213,0 +1707879981,213,0 +1707879981,213,0 +1707879982,213,0 +1707879982,213,0 +1707879983,213,0 +1707879983,213,0 +1707879984,213,0 +1707879984,213,0 +1707879985,213,0 +1707879985,214,0 +1707879986,213,0 +1707879986,214,0 +1707879987,214,0 +1707879987,214,0 +1707879988,214,0 +1707879988,214,0 +1707879989,214,0 +1707879989,214,0 +1707879990,214,0 +1707879990,213,0 +1707879991,213,0 +1707879991,213,0 +1707879991,213,0 +1707879992,213,0 +1707879992,213,0 +1707879993,213,0 +1707879993,213,0 +1707879994,214,0 +1707879994,213,0 +1707879995,213,0 +1707879995,213,0 +1707879996,214,0 +1707879996,214,0 +1707879997,214,0 +1707879997,214,0 +1707879998,214,0 +1707879998,213,0 +1707879999,214,0 +1707879999,213,0 +1707880000,213,0 +1707880000,213,0 +1707880001,213,0 +1707880001,213,0 +1707880002,213,0 +1707880002,213,0 +1707880003,213,0 +1707880003,213,0 +1707880004,213,0 +1707880004,213,0 +1707880004,213,0 +1707880005,213,0 +1707880005,213,0 +1707880006,213,0 +1707880006,214,0 +1707880007,214,0 +1707880007,214,0 +1707880008,213,0 +1707880008,213,0 +1707880009,213,0 +1707880009,213,0 +1707880010,213,0 +1707880010,213,0 +1707880011,213,0 +1707880011,213,0 +1707880012,213,0 +1707880012,213,0 +1707880013,213,0 +1707880013,213,0 +1707880014,214,0 +1707880014,213,0 +1707880015,213,0 +1707880015,214,0 +1707880016,214,0 +1707880016,213,0 +1707880017,214,0 +1707880017,213,0 +1707880018,213,0 +1707880018,213,0 +1707880019,213,0 +1707880019,213,0 +1707880019,213,0 +1707880020,213,0 +1707880020,213,0 +1707880021,213,0 +1707880021,213,0 +1707880022,213,0 +1707880022,213,0 +1707880023,213,0 +1707880023,213,0 +1707880024,213,0 +1707880024,214,0 +1707880025,214,0 +1707880025,214,0 +1707880026,214,0 +1707880026,213,0 +1707880027,214,0 +1707880027,213,0 +1707880028,213,0 +1707880028,213,0 +1707880029,213,0 +1707880029,213,0 +1707880030,213,0 +1707880030,213,0 +1707880031,213,0 +1707880031,213,0 +1707880032,213,0 +1707880032,213,0 +1707880033,213,0 +1707880033,213,0 +1707880034,214,0 +1707880034,213,0 +1707880035,213,0 +1707880035,214,0 +1707880035,214,0 +1707880036,214,0 +1707880036,213,0 +1707880037,213,0 +1707880037,213,0 +1707880038,213,0 +1707880038,213,0 +1707880039,213,0 +1707880039,213,0 +1707880040,213,0 +1707880040,213,0 +1707880041,213,0 +1707880041,213,0 +1707880042,213,0 +1707880042,213,0 +1707880043,214,0 +1707880043,213,0 +1707880044,214,0 +1707880044,214,0 +1707880045,214,0 +1707880045,214,0 +1707880046,213,0 +1707880046,213,0 +1707880047,213,0 +1707880047,213,0 +1707880048,213,0 +1707880048,213,0 +1707880049,213,0 +1707880049,213,0 +1707880050,213,0 +1707880050,213,0 +1707880051,214,0 +1707880051,214,0 +1707880051,214,0 +1707880052,214,0 +1707880052,214,0 +1707880053,214,0 +1707880053,214,0 +1707880054,214,0 +1707880054,213,0 +1707880055,213,0 +1707880055,213,0 +1707880056,213,0 +1707880056,213,0 +1707880057,213,0 +1707880057,213,0 +1707880058,213,0 +1707880058,213,0 +1707880059,213,0 +1707880059,213,0 +1707880060,213,0 +1707880060,213,0 +1707880061,214,0 +1707880061,214,0 +1707880062,214,0 +1707880062,214,0 +1707880063,214,0 +1707880063,214,0 +1707880063,214,0 +1707880064,213,0 +1707880064,213,0 +1707880065,213,0 +1707880065,213,0 +1707880066,213,0 +1707880066,213,0 +1707880067,213,0 +1707880067,213,0 +1707880068,213,0 +1707880068,213,0 +1707880069,213,0 +1707880069,213,0 +1707880070,214,0 +1707880070,214,0 +1707880071,214,0 +1707880071,214,0 +1707880072,214,0 +1707880072,214,0 +1707880073,214,0 +1707880073,214,0 +1707880074,213,0 +1707880074,213,0 +1707880075,213,0 +1707880075,213,0 +1707880076,213,0 +1707880076,213,0 +1707880077,213,0 +1707880077,213,0 +1707880078,213,0 +1707880078,213,0 +1707880078,213,0 +1707880079,213,0 +1707880079,213,0 +1707880080,214,0 +1707880080,214,0 +1707880081,214,0 +1707880081,214,0 +1707880082,213,0 +1707880082,213,0 +1707880083,213,0 +1707880083,213,0 +1707880084,213,0 +1707880084,213,0 +1707880085,213,0 +1707880085,213,0 +1707880086,213,0 +1707880086,213,0 +1707880087,213,0 +1707880087,213,0 +1707880088,213,0 +1707880088,213,0 +1707880089,213,0 +1707880089,213,0 +1707880090,214,0 +1707880090,214,0 +1707880091,214,0 +1707880091,214,0 +1707880092,214,0 +1707880092,214,0 +1707880093,213,0 +1707880093,213,0 +1707880093,213,0 +1707880094,213,0 +1707880094,213,0 +1707880095,213,0 +1707880095,213,0 +1707880096,213,0 +1707880096,213,0 +1707880097,213,0 +1707880097,213,0 +1707880098,213,0 +1707880098,213,0 +1707880099,214,0 +1707880099,213,0 +1707880100,214,0 +1707880100,214,0 +1707880101,214,0 +1707880101,213,0 +1707880102,213,0 +1707880102,213,0 +1707880103,213,0 +1707880103,213,0 +1707880104,213,0 +1707880104,213,0 +1707880105,213,0 +1707880105,213,0 +1707880106,213,0 +1707880106,213,0 +1707880107,213,0 +1707880107,213,0 +1707880107,213,0 +1707880108,213,0 +1707880108,214,0 +1707880109,214,0 +1707880109,213,0 +1707880110,214,0 +1707880110,214,0 +1707880111,213,0 +1707880111,213,0 +1707880112,213,0 +1707880112,213,0 +1707880113,213,0 +1707880113,213,0 +1707880114,213,0 +1707880114,213,0 +1707880115,213,0 +1707880115,213,0 +1707880116,213,0 +1707880116,213,0 +1707880117,213,0 +1707880117,214,0 +1707880118,214,0 +1707880118,214,0 +1707880119,214,0 +1707880119,214,0 +1707880120,214,0 +1707880120,213,0 +1707880121,213,0 +1707880121,213,0 +1707880122,213,0 +1707880122,213,0 +1707880123,213,0 +1707880123,213,0 +1707880124,213,0 +1707880124,213,0 +1707880125,213,0 +1707880125,213,0 +1707880125,213,0 +1707880126,214,0 +1707880126,214,0 +1707880127,214,0 +1707880127,214,0 +1707880128,214,0 +1707880128,214,0 +1707880129,214,0 +1707880129,213,0 +1707880130,213,0 +1707880130,213,0 +1707880131,213,0 +1707880131,213,0 +1707880132,213,0 +1707880132,213,0 +1707880133,213,0 +1707880133,213,0 +1707880134,214,0 +1707880134,213,0 +1707880135,214,0 +1707880135,214,0 +1707880136,214,0 +1707880136,214,0 +1707880137,214,0 +1707880137,214,0 +1707880138,213,0 +1707880138,214,0 +1707880138,213,0 +1707880139,213,0 +1707880139,213,0 +1707880140,213,0 +1707880140,213,0 +1707880141,213,0 +1707880141,213,0 +1707880142,213,0 +1707880142,213,0 +1707880143,213,0 +1707880143,213,0 +1707880144,213,0 +1707880144,213,0 +1707880145,213,0 +1707880145,214,0 +1707880146,213,0 +1707880146,213,0 +1707880147,213,0 +1707880147,214,0 +1707880148,214,0 +1707880148,213,0 +1707880149,213,0 +1707880149,213,0 +1707880150,213,0 +1707880150,213,0 +1707880151,213,0 +1707880151,213,0 +1707880152,213,0 +1707880152,213,0 +1707880152,213,0 +1707880153,213,0 +1707880153,213,0 +1707880154,213,0 +1707880154,214,0 +1707880155,213,0 +1707880155,213,0 +1707880156,214,0 +1707880156,214,0 +1707880157,214,0 +1707880157,213,0 +1707880158,213,0 +1707880158,213,0 +1707880159,213,0 +1707880159,213,0 +1707880160,213,0 +1707880160,213,0 +1707880161,213,0 +1707880161,213,0 +1707880162,213,0 +1707880162,213,0 +1707880163,213,0 +1707880163,214,0 +1707880164,214,0 +1707880164,214,0 +1707880165,214,0 +1707880165,214,0 +1707880165,214,0 +1707880166,214,0 +1707880166,214,0 +1707880167,213,0 +1707880167,213,0 +1707880168,213,0 +1707880168,213,0 +1707880169,213,0 +1707880169,213,0 +1707880170,213,0 +1707880170,213,0 +1707880171,213,0 +1707880171,213,0 +1707880172,213,0 +1707880172,214,0 +1707880173,213,0 +1707880173,214,0 +1707880174,214,0 +1707880174,214,0 +1707880175,214,0 +1707880175,214,0 +1707880176,214,0 +1707880176,213,0 +1707880177,213,0 +1707880177,213,0 +1707880178,213,0 +1707880178,213,0 +1707880179,213,0 +1707880179,213,0 +1707880180,213,0 +1707880180,213,0 +1707880180,213,0 +1707880181,214,0 +1707880181,213,0 +1707880182,213,0 +1707880182,214,0 +1707880183,213,0 +1707880183,213,0 +1707880184,214,0 +1707880184,214,0 +1707880185,214,0 +1707880185,213,0 +1707880186,213,0 +1707880186,213,0 +1707880187,213,0 +1707880187,213,0 +1707880188,213,0 +1707880188,213,0 +1707880189,213,0 +1707880189,213,0 +1707880190,213,0 +1707880190,213,0 +1707880191,213,0 +1707880191,214,0 +1707880192,214,0 +1707880192,214,0 +1707880192,214,0 +1707880193,214,0 +1707880193,213,0 +1707880194,213,0 +1707880194,213,0 +1707880195,213,0 +1707880195,213,0 +1707880196,213,0 +1707880196,213,0 +1707880197,213,0 +1707880197,213,0 +1707880198,213,0 +1707880198,213,0 +1707880199,213,0 +1707880199,213,0 +1707880200,213,0 +1707880200,213,0 +1707880201,214,0 +1707880201,214,0 +1707880202,214,0 +1707880202,213,0 +1707880203,214,0 +1707880203,214,0 +1707880204,213,0 +1707880204,213,0 +1707880205,213,0 +1707880205,213,0 +1707880206,213,0 +1707880206,213,0 +1707880207,213,0 +1707880207,213,0 +1707880207,213,0 +1707880208,213,0 +1707880208,213,0 +1707880209,213,0 +1707880209,213,0 +1707880210,213,0 +1707880210,213,0 +1707880211,213,0 +1707880211,214,0 +1707880212,214,0 +1707880212,213,0 +1707880213,213,0 +1707880213,213,0 +1707880214,213,0 +1707880214,213,0 +1707880215,213,0 +1707880215,213,0 +1707880216,213,0 +1707880216,213,0 +1707880217,213,0 +1707880217,213,0 +1707880218,213,0 +1707880218,213,0 +1707880219,213,0 +1707880219,213,0 +1707880220,213,0 +1707880220,213,0 +1707880221,213,0 +1707880221,213,0 +1707880221,213,0 +1707880222,214,0 +1707880222,213,0 +1707880223,213,0 +1707880223,213,0 +1707880224,213,0 +1707880224,213,0 +1707880225,213,0 +1707880225,213,0 +1707880226,213,0 +1707880226,213,0 +1707880227,213,0 +1707880227,213,0 +1707880228,213,0 +1707880228,213,0 +1707880229,213,0 +1707880229,214,0 +1707880230,213,0 +1707880230,213,0 +1707880231,214,0 +1707880231,214,0 +1707880232,213,0 +1707880232,213,0 +1707880233,213,0 +1707880233,213,0 +1707880234,213,0 +1707880234,213,0 +1707880235,213,0 +1707880235,213,0 +1707880236,213,0 +1707880236,214,0 +1707880236,214,0 +1707880237,214,0 +1707880237,214,0 +1707880238,214,0 +1707880238,214,0 +1707880239,214,0 +1707880239,214,0 +1707880240,214,0 +1707880240,214,0 +1707880241,213,0 +1707880241,213,0 +1707880242,213,0 +1707880242,213,0 +1707880243,213,0 +1707880243,214,0 +1707880244,213,0 +1707880244,214,0 +1707880245,214,0 +1707880245,214,0 +1707880246,214,0 +1707880246,214,0 +1707880247,214,0 +1707880247,214,0 +1707880248,214,0 +1707880248,214,0 +1707880249,214,0 +1707880249,213,0 +1707880250,214,0 +1707880250,213,0 +1707880251,213,0 +1707880251,213,0 +1707880252,213,0 +1707880252,213,0 +1707880252,213,0 +1707880253,213,0 +1707880253,213,0 +1707880254,214,0 +1707880254,213,0 +1707880255,213,0 +1707880255,214,0 +1707880256,214,0 +1707880256,214,0 +1707880257,214,0 +1707880257,214,0 +1707880258,214,0 +1707880258,214,0 +1707880259,214,0 +1707880259,213,0 +1707880260,213,0 +1707880260,213,0 +1707880261,213,0 +1707880261,213,0 +1707880262,213,0 +1707880262,213,0 +1707880263,213,0 +1707880263,213,0 +1707880264,213,0 +1707880264,214,0 +1707880265,213,0 +1707880265,214,0 +1707880266,214,0 +1707880266,213,0 +1707880267,213,0 +1707880267,214,0 +1707880267,214,0 +1707880268,214,0 +1707880268,214,0 +1707880269,213,0 +1707880269,213,0 +1707880270,213,0 +1707880270,213,0 +1707880271,213,0 +1707880271,213,0 +1707880272,213,0 +1707880272,213,0 +1707880273,213,0 +1707880273,213,0 +1707880274,213,0 +1707880274,213,0 +1707880275,213,0 +1707880275,213,0 +1707880276,214,0 +1707880276,214,0 +1707880277,214,0 +1707880277,214,0 +1707880278,213,0 +1707880278,213,0 +1707880279,213,0 +1707880279,213,0 +1707880280,213,0 +1707880280,213,0 +1707880281,213,0 +1707880281,213,0 +1707880282,213,0 +1707880282,213,0 +1707880283,213,0 +1707880283,213,0 +1707880284,213,0 +1707880284,213,0 +1707880284,213,0 +1707880285,213,0 +1707880285,213,0 +1707880286,213,0 +1707880286,213,0 +1707880287,213,0 +1707880287,213,0 +1707880288,213,0 +1707880288,213,0 +1707880289,213,0 +1707880289,213,0 +1707880290,213,0 +1707880290,213,0 +1707880291,213,0 +1707880291,213,0 +1707880292,213,0 +1707880292,213,0 +1707880293,213,0 +1707880293,213,0 +1707880294,213,0 +1707880294,213,0 +1707880295,213,0 +1707880295,214,0 +1707880296,214,0 +1707880296,214,0 +1707880297,214,0 +1707880297,213,0 +1707880298,213,0 +1707880298,213,0 +1707880298,213,0 +1707880299,213,0 +1707880299,213,0 +1707880300,213,0 +1707880300,213,0 +1707880301,213,0 +1707880301,213,0 +1707880302,214,0 +1707880302,214,0 +1707880303,213,0 +1707880303,213,0 +1707880304,214,0 +1707880304,214,0 +1707880305,214,0 +1707880305,214,0 +1707880306,213,0 +1707880306,213,0 +1707880307,213,0 +1707880307,213,0 +1707880308,213,0 +1707880308,213,0 +1707880309,213,0 +1707880309,213,0 +1707880310,213,0 +1707880310,213,0 +1707880311,213,0 +1707880311,213,0 +1707880312,213,0 +1707880312,214,0 +1707880313,214,0 +1707880313,213,0 +1707880314,213,0 +1707880314,213,0 +1707880315,213,0 +1707880315,214,0 +1707880316,213,0 +1707880316,213,0 +1707880316,213,0 +1707880317,213,0 +1707880317,213,0 +1707880318,213,0 +1707880318,213,0 +1707880319,213,0 +1707880319,213,0 +1707880320,213,0 +1707880320,213,0 +1707880321,214,0 +1707880321,213,0 +1707880322,213,0 +1707880322,214,0 +1707880323,214,0 +1707880323,213,0 +1707880324,214,0 +1707880324,213,0 +1707880325,213,0 +1707880325,213,0 +1707880326,213,0 +1707880326,213,0 +1707880327,213,0 +1707880327,213,0 +1707880328,213,0 +1707880328,213,0 +1707880329,213,0 +1707880329,213,0 +1707880330,213,0 +1707880330,213,0 +1707880330,213,0 +1707880331,213,0 +1707880331,214,0 +1707880332,214,0 +1707880332,213,0 +1707880333,214,0 +1707880333,214,0 +1707880334,213,0 +1707880334,213,0 +1707880335,213,0 +1707880335,213,0 +1707880336,213,0 +1707880336,213,0 +1707880337,213,0 +1707880337,213,0 +1707880338,213,0 +1707880338,213,0 +1707880339,213,0 +1707880339,213,0 +1707880340,213,0 +1707880340,213,0 +1707880341,214,0 +1707880341,214,0 +1707880342,213,0 +1707880342,214,0 +1707880342,214,0 +1707880343,214,0 +1707880343,213,0 +1707880344,213,0 +1707880344,213,0 +1707880345,213,0 +1707880345,213,0 +1707880346,213,0 +1707880346,213,0 +1707880347,213,0 +1707880347,213,0 +1707880348,213,0 +1707880348,213,0 +1707880349,213,0 +1707880349,213,0 +1707880350,213,0 +1707880350,213,0 +1707880351,214,0 +1707880351,213,0 +1707880352,214,0 +1707880352,214,0 +1707880353,213,0 +1707880353,213,0 +1707880354,213,0 +1707880354,213,0 +1707880355,213,0 +1707880355,213,0 +1707880356,213,0 +1707880356,213,0 +1707880356,213,0 +1707880357,213,0 +1707880357,213,0 +1707880358,213,0 +1707880358,213,0 +1707880359,213,0 +1707880359,213,0 +1707880360,213,0 +1707880360,213,0 +1707880361,214,0 +1707880361,214,0 +1707880362,213,0 +1707880362,213,0 +1707880363,213,0 +1707880363,213,0 +1707880364,213,0 +1707880364,213,0 +1707880365,213,0 +1707880365,213,0 +1707880366,213,0 +1707880366,213,0 +1707880367,213,0 +1707880367,213,0 +1707880368,213,0 +1707880368,213,0 +1707880368,213,0 +1707880369,213,0 +1707880369,213,0 +1707880370,213,0 +1707880370,213,0 +1707880371,214,0 +1707880371,213,0 +1707880372,213,0 +1707880372,213,0 +1707880373,213,0 +1707880373,213,0 +1707880374,213,0 +1707880374,213,0 +1707880375,213,0 +1707880375,213,0 +1707880376,213,0 +1707880376,213,0 +1707880377,213,0 +1707880377,213,0 +1707880378,213,0 +1707880378,213,0 +1707880379,213,0 +1707880379,214,0 +1707880380,213,0 +1707880380,214,0 +1707880381,213,0 +1707880381,213,0 +1707880382,213,0 +1707880382,213,0 +1707880383,213,0 +1707880383,213,0 +1707880383,213,0 +1707880384,213,0 +1707880384,213,0 +1707880385,213,0 +1707880385,213,0 +1707880386,214,0 +1707880386,213,0 +1707880387,214,0 +1707880387,214,0 +1707880388,214,0 +1707880388,214,0 +1707880389,214,0 +1707880389,214,0 +1707880390,213,0 +1707880390,213,0 +1707880391,213,0 +1707880391,213,0 +1707880392,213,0 +1707880392,213,0 +1707880393,213,0 +1707880393,213,0 +1707880394,213,0 +1707880394,213,0 +1707880395,213,0 +1707880395,213,0 +1707880396,213,0 +1707880396,213,0 +1707880397,214,0 +1707880397,213,0 +1707880397,214,0 +1707880398,214,0 +1707880398,214,0 +1707880399,213,0 +1707880399,213,0 +1707880400,213,0 +1707880400,213,0 +1707880401,213,0 +1707880401,213,0 +1707880402,213,0 +1707880402,213,0 +1707880403,213,0 +1707880403,213,0 +1707880404,213,0 +1707880404,213,0 +1707880405,213,0 +1707880405,213,0 +1707880406,213,0 +1707880406,214,0 +1707880407,213,0 +1707880407,214,0 +1707880408,214,0 +1707880408,214,0 +1707880409,213,0 +1707880409,213,0 +1707880410,213,0 +1707880410,213,0 +1707880411,213,0 +1707880411,213,0 +1707880412,213,0 +1707880412,213,0 +1707880413,213,0 +1707880413,213,0 +1707880414,213,0 +1707880414,213,0 +1707880414,213,0 +1707880415,213,0 +1707880415,213,0 +1707880416,213,0 +1707880416,213,0 +1707880417,214,0 +1707880417,214,0 +1707880418,213,0 +1707880418,213,0 +1707880419,213,0 +1707880419,213,0 +1707880420,213,0 +1707880420,213,0 +1707880421,213,0 +1707880421,213,0 +1707880422,213,0 +1707880422,213,0 +1707880423,213,0 +1707880423,213,0 +1707880424,213,0 +1707880424,213,0 +1707880425,214,0 +1707880425,214,0 +1707880426,213,0 +1707880426,214,0 +1707880427,214,0 +1707880427,213,0 +1707880427,213,0 +1707880428,213,0 +1707880428,213,0 +1707880429,213,0 +1707880429,213,0 +1707880430,213,0 +1707880430,213,0 +1707880431,213,0 +1707880431,213,0 +1707880432,213,0 +1707880432,214,0 +1707880433,214,0 +1707880433,214,0 +1707880434,214,0 +1707880434,214,0 +1707880435,214,0 +1707880435,214,0 +1707880436,213,0 +1707880436,213,0 +1707880437,213,0 +1707880437,213,0 +1707880438,213,0 +1707880438,213,0 +1707880439,213,0 +1707880439,213,0 +1707880440,213,0 +1707880440,213,0 +1707880441,214,0 +1707880441,214,0 +1707880442,214,0 +1707880442,214,0 +1707880443,214,0 +1707880443,214,0 +1707880443,214,0 +1707880444,214,0 +1707880444,214,0 +1707880445,214,0 +1707880445,213,0 +1707880446,213,0 +1707880446,213,0 +1707880447,213,0 +1707880447,213,0 +1707880448,213,0 +1707880448,213,0 +1707880449,213,0 +1707880449,214,0 +1707880450,213,0 +1707880450,213,0 +1707880451,214,0 +1707880451,214,0 +1707880452,214,0 +1707880452,214,0 +1707880453,214,0 +1707880453,213,0 +1707880454,214,0 +1707880454,214,0 +1707880455,213,0 +1707880455,213,0 +1707880456,213,0 +1707880456,213,0 +1707880457,213,0 +1707880457,213,0 +1707880458,213,0 +1707880458,213,0 +1707880459,213,0 +1707880459,213,0 +1707880459,213,0 +1707880460,213,0 +1707880460,213,0 +1707880461,213,0 +1707880461,214,0 +1707880462,214,0 +1707880462,214,0 +1707880463,214,0 +1707880463,213,0 +1707880464,214,0 +1707880464,213,0 +1707880465,213,0 +1707880465,213,0 +1707880466,213,0 +1707880466,213,0 +1707880467,213,0 +1707880467,213,0 +1707880468,213,0 +1707880468,213,0 +1707880469,213,0 +1707880469,213,0 +1707880470,213,0 +1707880470,213,0 +1707880471,214,0 +1707880471,214,0 +1707880472,214,0 +1707880472,213,0 +1707880473,213,0 +1707880473,213,0 +1707880474,213,0 +1707880474,213,0 +1707880475,213,0 +1707880475,213,0 +1707880475,213,0 +1707880476,213,0 +1707880476,213,0 +1707880477,213,0 +1707880477,213,0 +1707880478,213,0 +1707880478,213,0 +1707880479,213,0 +1707880479,214,0 +1707880480,213,0 +1707880480,214,0 +1707880481,213,0 +1707880481,214,0 +1707880482,213,0 +1707880482,214,0 +1707880483,213,0 +1707880483,213,0 +1707880484,213,0 +1707880484,213,0 +1707880485,213,0 +1707880485,213,0 +1707880486,213,0 +1707880486,213,0 +1707880487,213,0 +1707880487,213,0 +1707880488,213,0 +1707880488,214,0 +1707880489,213,0 +1707880489,214,0 +1707880489,214,0 +1707880490,214,0 +1707880490,214,0 +1707880491,214,0 +1707880491,214,0 +1707880492,214,0 +1707880492,213,0 +1707880493,213,0 +1707880493,213,0 +1707880494,213,0 +1707880494,213,0 +1707880495,213,0 +1707880495,213,0 +1707880496,213,0 +1707880496,213,0 +1707880497,214,0 +1707880497,214,0 +1707880498,214,0 +1707880498,214,0 +1707880499,214,0 +1707880499,214,0 +1707880500,214,0 +1707880500,214,0 +1707880501,213,0 +1707880501,214,0 +1707880502,213,0 +1707880502,213,0 +1707880503,213,0 +1707880503,213,0 +1707880503,213,0 +1707880504,213,0 +1707880504,213,0 +1707880505,213,0 +1707880505,214,0 +1707880506,214,0 +1707880506,214,0 +1707880507,214,0 +1707880507,214,0 +1707880508,214,0 +1707880508,214,0 +1707880509,214,0 +1707880509,214,0 +1707880510,213,0 +1707880510,214,0 +1707880511,213,0 +1707880511,213,0 +1707880512,213,0 +1707880512,213,0 +1707880513,213,0 +1707880513,213,0 +1707880514,213,0 +1707880514,213,0 +1707880515,213,0 +1707880515,213,0 +1707880516,214,0 +1707880516,214,0 +1707880516,214,0 +1707880517,214,0 +1707880517,214,0 +1707880518,214,0 +1707880518,214,0 +1707880519,214,0 +1707880519,214,0 +1707880520,213,0 +1707880520,213,0 +1707880521,213,0 +1707880521,213,0 +1707880522,213,0 +1707880522,213,0 +1707880523,213,0 +1707880523,213,0 +1707880524,213,0 +1707880524,214,0 +1707880525,213,0 +1707880525,213,0 +1707880526,214,0 +1707880526,214,0 +1707880527,214,0 +1707880527,214,0 +1707880528,213,0 +1707880528,214,0 +1707880529,214,0 +1707880529,213,0 +1707880529,213,0 +1707880530,213,0 +1707880530,213,0 +1707880531,213,0 +1707880531,213,0 +1707880532,213,0 +1707880532,213,0 +1707880533,213,0 +1707880533,213,0 +1707880534,213,0 +1707880534,213,0 +1707880535,213,0 +1707880535,213,0 +1707880536,213,0 +1707880536,214,0 +1707880537,214,0 +1707880537,213,0 +1707880538,214,0 +1707880538,213,0 +1707880539,213,0 +1707880539,213,0 +1707880540,213,0 +1707880540,213,0 +1707880541,213,0 +1707880541,213,0 +1707880542,213,0 +1707880542,213,0 +1707880543,213,0 +1707880543,213,0 +1707880544,213,0 +1707880544,214,0 +1707880544,214,0 +1707880545,214,0 +1707880545,214,0 +1707880546,214,0 +1707880546,214,0 +1707880547,214,0 +1707880547,214,0 +1707880548,213,0 +1707880548,213,0 +1707880549,213,0 +1707880549,213,0 +1707880550,213,0 +1707880550,213,0 +1707880551,213,0 +1707880551,213,0 +1707880552,213,0 +1707880552,213,0 +1707880553,213,0 +1707880553,214,0 +1707880554,213,0 +1707880554,213,0 +1707880555,213,0 +1707880555,214,0 +1707880556,214,0 +1707880556,214,0 +1707880557,213,0 +1707880557,213,0 +1707880558,213,0 +1707880558,213,0 +1707880559,213,0 +1707880559,213,0 +1707880559,213,0 +1707880560,213,0 +1707880560,213,0 +1707880561,213,0 +1707880561,213,0 +1707880562,213,0 +1707880562,213,0 +1707880563,213,0 +1707880563,213,0 +1707880564,213,0 +1707880564,213,0 +1707880565,213,0 +1707880565,214,0 +1707880566,213,0 +1707880566,214,0 +1707880567,213,0 +1707880567,213,0 +1707880568,213,0 +1707880568,213,0 +1707880569,213,0 +1707880569,213,0 +1707880570,213,0 +1707880570,213,0 +1707880571,213,0 +1707880571,213,0 +1707880572,213,0 +1707880572,213,0 +1707880573,213,0 +1707880573,213,0 +1707880573,213,0 +1707880574,213,0 +1707880574,213,0 +1707880575,214,0 +1707880575,213,0 +1707880576,213,0 +1707880576,213,0 +1707880577,213,0 +1707880577,213,0 +1707880578,213,0 +1707880578,213,0 +1707880579,213,0 +1707880579,213,0 +1707880580,213,0 +1707880580,213,0 +1707880581,213,0 +1707880581,213,0 +1707880582,213,0 +1707880582,213,0 +1707880583,213,0 +1707880583,214,0 +1707880584,214,0 +1707880584,214,0 +1707880585,214,0 +1707880585,213,0 +1707880586,213,0 +1707880586,213,0 +1707880587,213,0 +1707880587,213,0 +1707880588,213,0 +1707880588,213,0 +1707880589,213,0 +1707880589,213,0 +1707880589,213,0 +1707880590,213,0 +1707880590,213,0 +1707880591,213,0 +1707880591,213,0 +1707880592,213,0 +1707880592,213,0 +1707880593,213,0 +1707880593,214,0 +1707880594,214,0 +1707880594,213,0 +1707880595,213,0 +1707880595,213,0 +1707880596,213,0 +1707880596,213,0 +1707880597,213,0 +1707880597,213,0 +1707880598,213,0 +1707880598,213,0 +1707880599,213,0 +1707880599,213,0 +1707880600,213,0 +1707880600,213,0 +1707880601,213,0 +1707880601,213,0 +1707880602,214,0 +1707880602,213,0 +1707880603,213,0 +1707880603,214,0 +1707880604,213,0 +1707880604,213,0 +1707880604,213,0 +1707880605,213,0 +1707880605,213,0 +1707880606,213,0 +1707880606,213,0 +1707880607,213,0 +1707880607,213,0 +1707880608,213,0 +1707880608,213,0 +1707880609,213,0 +1707880609,213,0 +1707880610,213,0 +1707880610,213,0 +1707880611,214,0 +1707880611,214,0 +1707880612,213,0 +1707880612,214,0 +1707880613,213,0 +1707880613,213,0 +1707880614,213,0 +1707880614,213,0 +1707880615,213,0 +1707880615,213,0 +1707880616,213,0 +1707880616,213,0 +1707880617,213,0 +1707880617,213,0 +1707880618,213,0 +1707880618,213,0 +1707880619,213,0 +1707880619,214,0 +1707880619,214,0 +1707880620,214,0 +1707880620,214,0 +1707880621,213,0 +1707880621,213,0 +1707880622,213,0 +1707880622,213,0 +1707880623,213,0 +1707880623,213,0 +1707880624,213,0 +1707880624,213,0 +1707880625,213,0 +1707880625,213,0 +1707880626,213,0 +1707880626,213,0 +1707880627,213,0 +1707880627,214,0 +1707880628,214,0 +1707880628,214,0 +1707880629,214,0 +1707880629,214,0 +1707880630,214,0 +1707880630,214,0 +1707880631,214,0 +1707880631,213,0 +1707880632,213,0 +1707880632,213,0 +1707880633,213,0 +1707880633,213,0 +1707880634,213,0 +1707880634,213,0 +1707880635,214,0 +1707880635,213,0 +1707880635,213,0 +1707880636,214,0 +1707880636,213,0 +1707880637,214,0 +1707880637,214,0 +1707880638,214,0 +1707880638,214,0 +1707880639,214,0 +1707880639,214,0 +1707880640,214,0 +1707880640,214,0 +1707880641,213,0 +1707880641,213,0 +1707880642,213,0 +1707880642,213,0 +1707880643,213,0 +1707880643,213,0 +1707880644,213,0 +1707880644,213,0 +1707880645,213,0 +1707880645,213,0 +1707880646,214,0 +1707880646,213,0 +1707880647,214,0 +1707880647,213,0 +1707880648,214,0 +1707880648,214,0 +1707880649,214,0 +1707880649,214,0 +1707880650,214,0 +1707880650,213,0 +1707880651,213,0 +1707880651,213,0 +1707880652,213,0 +1707880652,213,0 +1707880653,213,0 +1707880653,213,0 +1707880653,213,0 +1707880654,213,0 +1707880654,213,0 +1707880655,213,0 +1707880655,214,0 +1707880656,213,0 +1707880656,214,0 +1707880657,214,0 +1707880657,214,0 +1707880658,214,0 +1707880658,213,0 +1707880659,213,0 +1707880659,213,0 +1707880660,213,0 +1707880660,213,0 +1707880661,213,0 +1707880661,213,0 +1707880662,213,0 +1707880662,213,0 +1707880663,213,0 +1707880663,213,0 +1707880664,213,0 +1707880664,213,0 +1707880665,213,0 +1707880665,214,0 +1707880666,214,0 +1707880666,214,0 +1707880667,214,0 +1707880667,213,0 +1707880667,214,0 +1707880668,214,0 +1707880668,213,0 +1707880669,213,0 +1707880669,213,0 +1707880670,213,0 +1707880670,213,0 +1707880671,213,0 +1707880671,213,0 +1707880672,213,0 +1707880672,213,0 +1707880673,213,0 +1707880673,213,0 +1707880674,213,0 +1707880674,213,0 +1707880675,214,0 +1707880675,214,0 +1707880676,214,0 +1707880676,214,0 +1707880677,214,0 +1707880677,213,0 +1707880678,213,0 +1707880678,213,0 +1707880679,213,0 +1707880679,213,0 +1707880680,213,0 +1707880680,213,0 +1707880681,213,0 +1707880681,213,0 +1707880682,213,0 +1707880682,213,0 +1707880683,213,0 +1707880683,213,0 +1707880684,213,0 +1707880684,213,0 +1707880684,213,0 +1707880685,213,0 +1707880685,214,0 +1707880686,214,0 +1707880686,214,0 +1707880687,214,0 +1707880687,213,0 +1707880688,213,0 +1707880688,213,0 +1707880689,213,0 +1707880689,213,0 +1707880690,213,0 +1707880690,213,0 +1707880691,213,0 +1707880691,213,0 +1707880692,213,0 +1707880692,213,0 +1707880693,213,0 +1707880693,213,0 +1707880694,213,0 +1707880694,214,0 +1707880695,214,0 +1707880695,214,0 +1707880696,214,0 +1707880696,214,0 +1707880697,213,0 +1707880697,213,0 +1707880698,213,0 +1707880698,213,0 +1707880699,213,0 +1707880699,213,0 +1707880699,213,0 +1707880700,213,0 +1707880700,213,0 +1707880701,213,0 +1707880701,213,0 +1707880702,213,0 +1707880702,213,0 +1707880703,213,0 +1707880703,213,0 +1707880704,213,0 +1707880704,213,0 +1707880705,213,0 +1707880705,213,0 +1707880706,213,0 +1707880706,213,0 +1707880707,213,0 +1707880707,213,0 +1707880708,213,0 +1707880708,213,0 +1707880709,213,0 +1707880709,213,0 +1707880710,213,0 +1707880710,213,0 +1707880711,213,0 +1707880711,213,0 +1707880712,213,0 +1707880712,213,0 +1707880713,213,0 +1707880713,213,0 +1707880714,213,0 +1707880714,213,0 +1707880715,213,0 +1707880715,213,0 +1707880716,213,0 +1707880716,213,0 +1707880716,213,0 +1707880717,213,0 +1707880717,213,0 +1707880718,213,0 +1707880718,213,0 +1707880719,213,0 +1707880719,213,0 +1707880720,213,0 +1707880720,213,0 +1707880721,213,0 +1707880721,213,0 +1707880722,213,0 +1707880722,214,0 +1707880723,213,0 +1707880723,214,0 +1707880724,214,0 +1707880724,213,0 +1707880725,213,0 +1707880725,213,0 +1707880726,213,0 +1707880726,213,0 +1707880727,213,0 +1707880727,213,0 +1707880728,213,0 +1707880728,213,0 +1707880729,213,0 +1707880729,213,0 +1707880729,213,0 +1707880730,213,0 +1707880730,213,0 +1707880731,213,0 +1707880731,213,0 +1707880732,213,0 +1707880732,214,0 +1707880733,214,0 +1707880733,214,0 +1707880734,213,0 +1707880734,213,0 +1707880735,213,0 +1707880735,213,0 +1707880736,213,0 +1707880736,213,0 +1707880737,213,0 +1707880737,213,0 +1707880738,213,0 +1707880738,213,0 +1707880739,213,0 +1707880739,213,0 +1707880740,213,0 +1707880740,214,0 +1707880741,214,0 +1707880741,213,0 +1707880742,214,0 +1707880742,214,0 +1707880743,214,0 +1707880743,213,0 +1707880744,213,0 +1707880744,213,0 +1707880744,213,0 +1707880745,213,0 +1707880745,213,0 +1707880746,213,0 +1707880746,213,0 +1707880747,213,0 +1707880747,213,0 +1707880748,213,0 +1707880748,213,0 +1707880749,213,0 +1707880749,213,0 +1707880750,213,0 +1707880750,213,0 +1707880751,213,0 +1707880751,214,0 +1707880752,214,0 +1707880752,214,0 +1707880753,213,0 +1707880753,213,0 +1707880754,213,0 +1707880754,213,0 +1707880755,213,0 +1707880755,213,0 +1707880756,213,0 +1707880756,213,0 +1707880757,213,0 +1707880757,213,0 +1707880758,213,0 +1707880758,213,0 +1707880758,213,0 +1707880759,213,0 +1707880759,213,0 +1707880760,213,0 +1707880760,213,0 +1707880761,213,0 +1707880761,214,0 +1707880762,213,0 +1707880762,213,0 +1707880763,213,0 +1707880763,213,0 +1707880764,213,0 +1707880764,213,0 +1707880765,213,0 +1707880765,213,0 +1707880766,213,0 +1707880766,213,0 +1707880767,213,0 +1707880767,213,0 +1707880768,213,0 +1707880768,213,0 +1707880769,213,0 +1707880769,213,0 +1707880770,213,0 +1707880770,213,0 +1707880771,213,0 +1707880771,213,0 +1707880771,213,0 +1707880772,213,0 +1707880772,213,0 +1707880773,213,0 +1707880773,213,0 +1707880774,213,0 +1707880774,213,0 +1707880775,213,0 +1707880775,213,0 +1707880776,213,0 +1707880776,213,0 +1707880777,213,0 +1707880777,213,0 +1707880778,214,0 +1707880778,214,0 +1707880779,214,0 +1707880779,214,0 +1707880780,214,0 +1707880780,213,0 +1707880781,213,0 +1707880781,213,0 +1707880782,213,0 +1707880782,213,0 +1707880783,213,0 +1707880783,213,0 +1707880784,213,0 +1707880784,213,0 +1707880785,213,0 +1707880785,213,0 +1707880786,214,0 +1707880786,214,0 +1707880786,214,0 +1707880787,214,0 +1707880787,214,0 +1707880788,214,0 +1707880788,214,0 +1707880789,214,0 +1707880789,214,0 +1707880790,213,0 +1707880790,213,0 +1707880791,213,0 +1707880791,213,0 +1707880792,213,0 +1707880792,213,0 +1707880793,213,0 +1707880793,213,0 +1707880794,213,0 +1707880794,213,0 +1707880795,213,0 +1707880795,213,0 +1707880796,213,0 +1707880796,214,0 +1707880797,213,0 +1707880797,214,0 +1707880798,214,0 +1707880798,214,0 +1707880799,214,0 +1707880799,213,0 +1707880800,213,0 +1707880800,213,0 +1707880800,213,0 +1707880801,213,0 +1707880801,213,0 +1707880802,213,0 +1707880802,213,0 +1707880803,213,0 +1707880803,213,0 +1707880804,213,0 +1707880804,213,0 +1707880805,213,0 +1707880805,213,0 +1707880806,214,0 +1707880806,214,0 +1707880807,214,0 +1707880807,213,0 +1707880808,214,0 +1707880808,213,0 +1707880809,213,0 +1707880809,213,0 +1707880810,213,0 +1707880810,213,0 +1707880811,213,0 +1707880811,213,0 +1707880812,213,0 +1707880812,213,0 +1707880813,213,0 +1707880813,214,0 +1707880814,213,0 +1707880814,214,0 +1707880815,214,0 +1707880815,214,0 +1707880815,214,0 +1707880816,213,0 +1707880816,213,0 +1707880817,214,0 +1707880817,213,0 +1707880818,213,0 +1707880818,213,0 +1707880819,213,0 +1707880819,213,0 +1707880820,213,0 +1707880820,214,0 +1707880821,213,0 +1707880821,214,0 +1707880822,214,0 +1707880822,213,0 +1707880823,213,0 +1707880823,214,0 +1707880824,214,0 +1707880824,214,0 +1707880825,214,0 +1707880825,214,0 +1707880826,214,0 +1707880826,214,0 +1707880827,213,0 +1707880827,213,0 +1707880828,213,0 +1707880828,213,0 +1707880829,213,0 +1707880829,213,0 +1707880829,213,0 +1707880830,213,0 +1707880830,213,0 +1707880831,213,0 +1707880831,214,0 +1707880832,213,0 +1707880832,214,0 +1707880833,213,0 +1707880833,214,0 +1707880834,214,0 +1707880834,214,0 +1707880835,213,0 +1707880835,214,0 +1707880836,214,0 +1707880836,213,0 +1707880837,213,0 +1707880837,213,0 +1707880838,213,0 +1707880838,213,0 +1707880839,213,0 +1707880839,213,0 +1707880840,213,0 +1707880840,213,0 +1707880841,213,0 +1707880841,213,0 +1707880842,213,0 +1707880842,213,0 +1707880843,214,0 +1707880843,214,0 +1707880844,213,0 +1707880844,214,0 +1707880844,214,0 +1707880845,213,0 +1707880845,213,0 +1707880846,213,0 +1707880846,213,0 +1707880847,213,0 +1707880847,213,0 +1707880848,213,0 +1707880848,213,0 +1707880849,213,0 +1707880849,213,0 +1707880850,213,0 +1707880850,213,0 +1707880851,213,0 +1707880851,213,0 +1707880852,214,0 +1707880852,213,0 +1707880853,213,0 +1707880853,213,0 +1707880854,214,0 +1707880854,213,0 +1707880855,213,0 +1707880855,213,0 +1707880856,213,0 +1707880856,213,0 +1707880857,213,0 +1707880857,213,0 +1707880857,213,0 +1707880858,213,0 +1707880858,213,0 +1707880859,213,0 +1707880859,213,0 +1707880860,213,0 +1707880860,213,0 +1707880861,213,0 +1707880861,213,0 +1707880862,213,0 +1707880862,213,0 +1707880863,213,0 +1707880863,213,0 +1707880864,213,0 +1707880864,213,0 +1707880865,213,0 +1707880865,213,0 +1707880866,213,0 +1707880866,213,0 +1707880867,213,0 +1707880867,213,0 +1707880868,213,0 +1707880868,213,0 +1707880869,213,0 +1707880869,213,0 +1707880870,213,0 +1707880870,213,0 +1707880870,213,0 +1707880871,213,0 +1707880871,214,0 +1707880872,213,0 +1707880872,213,0 +1707880873,213,0 +1707880873,213,0 +1707880874,213,0 +1707880874,213,0 +1707880875,213,0 +1707880875,213,0 +1707880876,213,0 +1707880876,213,0 +1707880877,213,0 +1707880877,213,0 +1707880878,213,0 +1707880878,213,0 +1707880879,213,0 +1707880879,213,0 +1707880880,213,0 +1707880880,214,0 +1707880881,213,0 +1707880881,214,0 +1707880882,214,0 +1707880882,213,0 +1707880883,213,0 +1707880883,213,0 +1707880884,213,0 +1707880884,213,0 +1707880885,213,0 +1707880885,213,0 +1707880885,213,0 +1707880886,213,0 +1707880886,213,0 +1707880887,213,0 +1707880887,213,0 +1707880888,213,0 +1707880888,213,0 +1707880889,213,0 +1707880889,213,0 +1707880890,213,0 +1707880890,213,0 +1707880891,213,0 +1707880891,213,0 +1707880892,213,0 +1707880892,213,0 +1707880893,213,0 +1707880893,213,0 +1707880894,213,0 +1707880894,213,0 +1707880895,213,0 +1707880895,213,0 +1707880896,213,0 +1707880896,213,0 +1707880897,213,0 +1707880897,213,0 +1707880897,213,0 +1707880898,213,0 +1707880898,213,0 +1707880899,213,0 +1707880899,213,0 +1707880900,213,0 +1707880900,213,0 +1707880901,213,0 +1707880901,213,0 +1707880902,213,0 +1707880902,213,0 +1707880903,213,0 +1707880903,213,0 +1707880904,213,0 +1707880904,213,0 +1707880905,213,0 +1707880905,213,0 +1707880906,213,0 +1707880906,213,0 +1707880907,213,0 +1707880907,213,0 +1707880908,213,0 +1707880908,213,0 +1707880909,213,0 +1707880909,213,0 +1707880910,213,0 +1707880910,213,0 +1707880911,213,0 +1707880911,213,0 +1707880912,213,0 +1707880912,213,0 +1707880912,213,0 +1707880913,213,0 +1707880913,213,0 +1707880914,213,0 +1707880914,213,0 +1707880915,213,0 +1707880915,213,0 +1707880916,213,0 +1707880916,213,0 +1707880917,213,0 +1707880917,213,0 +1707880918,213,0 +1707880918,214,0 +1707880919,213,0 +1707880919,213,0 +1707880920,213,0 +1707880920,213,0 +1707880921,212,0 +1707880921,213,0 +1707880922,213,0 +1707880922,213,0 +1707880923,213,0 +1707880923,213,0 +1707880924,213,0 +1707880924,213,0 +1707880925,213,0 +1707880925,213,0 +1707880926,213,0 +1707880926,213,0 +1707880926,213,0 +1707880927,213,0 +1707880927,213,0 +1707880928,213,0 +1707880928,213,0 +1707880929,213,0 +1707880929,213,0 +1707880930,213,0 +1707880930,212,0 +1707880931,212,0 +1707880931,213,0 +1707880932,213,0 +1707880932,213,0 +1707880933,213,0 +1707880933,212,0 +1707880934,213,0 +1707880934,213,0 +1707880935,213,0 +1707880935,213,0 +1707880936,213,0 +1707880936,213,0 +1707880937,213,0 +1707880937,213,0 +1707880938,213,0 +1707880938,213,0 +1707880939,213,0 +1707880939,213,0 +1707880939,212,0 +1707880940,212,0 +1707880940,213,0 +1707880941,213,0 +1707880941,213,0 +1707880942,212,0 +1707880942,213,0 +1707880943,213,0 +1707880943,213,0 +1707880944,213,0 +1707880944,213,0 +1707880945,213,0 +1707880945,213,0 +1707880946,213,0 +1707880946,213,0 +1707880947,213,0 +1707880947,213,0 +1707880948,213,0 +1707880948,213,0 +1707880949,213,0 +1707880949,213,0 +1707880950,213,0 +1707880950,213,0 +1707880951,213,0 +1707880951,213,0 +1707880952,213,0 +1707880952,213,0 +1707880953,213,0 +1707880953,213,0 +1707880954,213,0 +1707880954,213,0 +1707880954,213,0 +1707880955,213,0 +1707880955,213,0 +1707880956,213,0 +1707880956,213,0 +1707880957,213,0 +1707880957,213,0 +1707880958,213,0 +1707880958,213,0 +1707880959,213,0 +1707880959,213,0 +1707880960,213,0 +1707880960,213,0 +1707880961,213,0 +1707880961,213,0 +1707880962,213,0 +1707880962,213,0 +1707880963,213,0 +1707880963,213,0 +1707880964,213,0 +1707880964,213,0 +1707880965,213,0 +1707880965,213,0 +1707880966,213,0 +1707880966,213,0 +1707880967,213,0 +1707880967,213,0 +1707880968,213,0 +1707880968,213,0 +1707880969,213,0 +1707880969,213,0 +1707880970,213,0 +1707880970,213,0 +1707880970,213,0 +1707880971,213,0 +1707880971,213,0 +1707880972,213,0 +1707880972,213,0 +1707880973,213,0 +1707880973,213,0 +1707880974,213,0 +1707880974,214,0 +1707880975,214,0 +1707880975,213,0 +1707880976,212,0 +1707880976,213,0 +1707880977,212,0 +1707880977,213,0 +1707880978,213,0 +1707880978,213,0 +1707880979,213,0 +1707880979,213,0 +1707880980,213,0 +1707880980,213,0 +1707880981,213,0 +1707880981,213,0 +1707880982,213,0 +1707880982,213,0 +1707880983,213,0 +1707880983,213,0 +1707880984,213,0 +1707880984,213,0 +1707880985,213,0 +1707880985,213,0 +1707880985,213,0 +1707880986,213,0 +1707880986,213,0 +1707880987,213,0 +1707880987,213,0 +1707880988,213,0 +1707880988,213,0 +1707880989,213,0 +1707880989,213,0 +1707880990,213,0 +1707880990,213,0 +1707880991,213,0 +1707880991,213,0 +1707880992,213,0 +1707880992,213,0 +1707880993,213,0 +1707880993,213,0 +1707880994,213,0 +1707880994,213,0 +1707880995,213,0 +1707880995,213,0 +1707880996,213,0 +1707880996,213,0 +1707880997,213,0 +1707880997,213,0 +1707880998,213,0 +1707880998,213,0 +1707880999,213,0 +1707880999,213,0 +1707881000,213,0 +1707881000,214,0 +1707881000,214,0 +1707881001,214,0 +1707881001,214,0 +1707881002,214,0 +1707881002,214,0 +1707881003,214,0 +1707881003,214,0 +1707881004,214,0 +1707881004,214,0 +1707881005,214,0 +1707881005,214,0 +1707881006,214,0 +1707881006,214,0 +1707881007,214,0 +1707881007,213,0 +1707881008,214,0 +1707881008,214,0 +1707881009,214,0 +1707881009,214,0 +1707881010,214,0 +1707881010,214,0 +1707881011,213,0 +1707881011,214,0 +1707881012,214,0 +1707881012,214,0 +1707881013,214,0 +1707881013,214,0 +1707881014,214,0 +1707881014,214,0 +1707881015,214,0 +1707881015,214,0 +1707881015,214,0 +1707881016,214,0 +1707881016,214,0 +1707881017,214,0 +1707881017,213,0 +1707881018,213,0 +1707881018,214,0 +1707881019,213,0 +1707881019,213,0 +1707881020,213,0 +1707881020,213,0 +1707881021,213,0 +1707881021,214,0 +1707881022,213,0 +1707881022,214,0 +1707881023,214,0 +1707881023,214,0 +1707881024,214,0 +1707881024,214,0 +1707881025,214,0 +1707881025,213,0 +1707881026,213,0 +1707881026,214,0 +1707881027,213,0 +1707881027,213,0 +1707881028,213,0 +1707881028,213,0 +1707881029,213,0 +1707881029,213,0 +1707881029,213,0 +1707881030,213,0 +1707881030,213,0 +1707881031,213,0 +1707881031,213,0 +1707881032,213,0 +1707881032,213,0 +1707881033,213,0 +1707881033,214,0 +1707881034,213,0 +1707881034,213,0 +1707881035,213,0 +1707881035,214,0 +1707881036,213,0 +1707881036,213,0 +1707881037,213,0 +1707881037,212,0 +1707881038,213,0 +1707881038,213,0 +1707881039,213,0 +1707881039,213,0 +1707881040,213,0 +1707881040,213,0 +1707881041,213,0 +1707881041,213,0 +1707881042,213,0 +1707881042,213,0 +1707881043,213,0 +1707881043,213,0 +1707881044,213,0 +1707881044,213,0 +1707881045,213,0 +1707881045,213,0 +1707881046,213,0 +1707881046,213,0 +1707881047,213,0 +1707881047,213,0 +1707881047,213,0 +1707881048,213,0 +1707881048,213,0 +1707881049,213,0 +1707881049,213,0 +1707881050,213,0 +1707881050,213,0 +1707881051,213,0 +1707881051,213,0 +1707881052,213,0 +1707881052,213,0 +1707881053,213,0 +1707881053,214,0 +1707881054,213,0 +1707881054,213,0 +1707881055,213,0 +1707881055,213,0 +1707881056,213,0 +1707881056,213,0 +1707881057,213,0 +1707881057,213,0 +1707881058,213,0 +1707881058,213,0 +1707881059,213,0 +1707881059,213,0 +1707881060,213,0 +1707881060,213,0 +1707881061,214,0 +1707881061,214,0 +1707881062,214,0 +1707881062,214,0 +1707881063,214,0 +1707881063,214,0 +1707881064,213,0 +1707881064,213,0 +1707881064,213,0 +1707881065,213,0 +1707881065,213,0 +1707881066,213,0 +1707881066,213,0 +1707881067,213,0 +1707881067,213,0 +1707881068,213,0 +1707881068,213,0 +1707881069,213,0 +1707881069,213,0 +1707881070,213,0 +1707881070,213,0 +1707881071,213,0 +1707881071,214,0 +1707881072,214,0 +1707881072,213,0 +1707881073,213,0 +1707881073,213,0 +1707881074,213,0 +1707881074,213,0 +1707881075,213,0 +1707881075,213,0 +1707881076,213,0 +1707881076,213,0 +1707881077,213,0 +1707881077,213,0 +1707881078,213,0 +1707881078,213,0 +1707881079,213,0 +1707881079,214,0 +1707881080,214,0 +1707881080,213,0 +1707881081,214,0 +1707881081,214,0 +1707881081,213,0 +1707881082,213,0 +1707881082,213,0 +1707881083,213,0 +1707881083,213,0 +1707881084,213,0 +1707881084,213,0 +1707881085,213,0 +1707881085,213,0 +1707881086,213,0 +1707881086,213,0 +1707881087,213,0 +1707881087,213,0 +1707881088,213,0 +1707881088,213,0 +1707881089,213,0 +1707881089,213,0 +1707881090,213,0 +1707881090,213,0 +1707881091,213,0 +1707881091,213,0 +1707881092,213,0 +1707881092,213,0 +1707881093,213,0 +1707881093,213,0 +1707881094,213,0 +1707881094,213,0 +1707881094,213,0 +1707881095,213,0 +1707881095,212,0 +1707881096,213,0 +1707881096,213,0 +1707881097,213,0 +1707881097,213,0 +1707881098,213,0 +1707881098,213,0 +1707881099,213,0 +1707881099,213,0 +1707881100,213,0 +1707881100,213,0 +1707881101,213,0 +1707881101,213,0 +1707881102,213,0 +1707881102,213,0 +1707881103,213,0 +1707881103,213,0 +1707881104,213,0 +1707881104,213,0 +1707881105,213,0 +1707881105,213,0 +1707881106,213,0 +1707881106,213,0 +1707881107,213,0 +1707881107,213,0 +1707881108,213,0 +1707881108,213,0 +1707881109,213,0 +1707881109,213,0 +1707881110,213,0 +1707881110,213,0 +1707881111,213,0 +1707881111,213,0 +1707881111,213,0 +1707881112,213,0 +1707881112,213,0 +1707881113,213,0 +1707881113,213,0 +1707881114,213,0 +1707881114,213,0 +1707881115,213,0 +1707881115,213,0 +1707881116,213,0 +1707881116,213,0 +1707881117,213,0 +1707881117,213,0 +1707881118,213,0 +1707881118,213,0 +1707881119,213,0 +1707881119,213,0 +1707881120,213,0 +1707881120,213,0 +1707881121,213,0 +1707881121,212,0 +1707881122,213,0 +1707881122,213,0 +1707881123,213,0 +1707881123,213,0 +1707881124,213,0 +1707881124,213,0 +1707881125,213,0 +1707881125,213,0 +1707881125,213,0 +1707881126,213,0 +1707881126,213,0 +1707881127,213,0 +1707881127,213,0 +1707881128,213,0 +1707881128,213,0 +1707881129,213,0 +1707881129,213,0 +1707881130,213,0 +1707881130,213,0 +1707881131,213,0 +1707881131,213,0 +1707881132,213,0 +1707881132,213,0 +1707881133,213,0 +1707881133,213,0 +1707881134,213,0 +1707881134,213,0 +1707881135,213,0 +1707881135,213,0 +1707881136,214,0 +1707881136,214,0 +1707881137,213,0 +1707881137,214,0 +1707881137,213,0 +1707881138,213,0 +1707881138,213,0 +1707881139,213,0 +1707881139,213,0 +1707881140,213,0 +1707881140,213,0 +1707881141,213,0 +1707881141,213,0 +1707881142,213,0 +1707881142,213,0 +1707881143,213,0 +1707881143,213,0 +1707881144,213,0 +1707881144,213,0 +1707881145,213,0 +1707881145,213,0 +1707881146,213,0 +1707881146,213,0 +1707881147,213,0 +1707881147,213,0 +1707881148,213,0 +1707881148,213,0 +1707881148,213,0 +1707881149,213,0 +1707881149,213,0 +1707881150,213,0 +1707881150,213,0 +1707881151,213,0 +1707881151,213,0 +1707881152,213,0 +1707881152,213,0 +1707881153,213,0 +1707881153,213,0 +1707881154,213,0 +1707881154,214,0 +1707881155,213,0 +1707881155,214,0 +1707881156,214,0 +1707881156,213,0 +1707881157,213,0 +1707881157,213,0 +1707881158,213,0 +1707881158,213,0 +1707881159,213,0 +1707881159,213,0 +1707881160,213,0 +1707881160,213,0 +1707881161,213,0 +1707881161,213,0 +1707881161,213,0 +1707881162,213,0 +1707881162,213,0 +1707881163,213,0 +1707881163,214,0 +1707881164,213,0 +1707881164,213,0 +1707881165,214,0 +1707881165,214,0 +1707881166,213,0 +1707881166,213,0 +1707881167,213,0 +1707881167,213,0 +1707881168,213,0 +1707881168,213,0 +1707881169,213,0 +1707881169,213,0 +1707881170,213,0 +1707881170,213,0 +1707881171,213,0 +1707881171,213,0 +1707881172,213,0 +1707881172,213,0 +1707881172,213,0 +1707881173,213,0 +1707881173,214,0 +1707881174,213,0 +1707881174,214,0 +1707881175,213,0 +1707881175,213,0 +1707881176,213,0 +1707881176,213,0 +1707881177,213,0 +1707881177,213,0 +1707881178,213,0 +1707881178,213,0 +1707881179,213,0 +1707881179,213,0 +1707881180,213,0 +1707881180,213,0 +1707881181,213,0 +1707881181,213,0 +1707881182,213,0 +1707881182,214,0 +1707881183,214,0 +1707881183,214,0 +1707881183,213,0 +1707881184,213,0 +1707881184,213,0 +1707881185,213,0 +1707881185,213,0 +1707881186,213,0 +1707881186,213,0 +1707881187,213,0 +1707881187,213,0 +1707881188,213,0 +1707881188,213,0 +1707881189,213,0 +1707881189,213,0 +1707881190,213,0 +1707881190,214,0 +1707881191,213,0 +1707881191,213,0 +1707881192,214,0 +1707881192,214,0 +1707881193,214,0 +1707881193,214,0 +1707881194,213,0 +1707881194,213,0 +1707881195,213,0 +1707881195,213,0 +1707881195,213,0 +1707881196,213,0 +1707881196,213,0 +1707881197,213,0 +1707881197,213,0 +1707881198,213,0 +1707881198,214,0 +1707881199,213,0 +1707881199,213,0 +1707881200,214,0 +1707881200,214,0 +1707881201,214,0 +1707881201,214,0 +1707881202,214,0 +1707881202,214,0 +1707881203,214,0 +1707881203,213,0 +1707881204,213,0 +1707881204,213,0 +1707881205,213,0 +1707881205,213,0 +1707881206,213,0 +1707881206,213,0 +1707881207,213,0 +1707881207,213,0 +1707881207,213,0 +1707881208,213,0 +1707881208,214,0 +1707881209,214,0 +1707881209,214,0 +1707881210,214,0 +1707881210,214,0 +1707881211,214,0 +1707881211,214,0 +1707881212,213,0 +1707881212,213,0 +1707881213,213,0 +1707881213,213,0 +1707881214,213,0 +1707881214,213,0 +1707881215,213,0 +1707881215,213,0 +1707881216,213,0 +1707881216,213,0 +1707881217,213,0 +1707881217,214,0 +1707881218,213,0 +1707881218,214,0 +1707881219,213,0 +1707881219,214,0 +1707881219,213,0 +1707881220,213,0 +1707881220,214,0 +1707881221,214,0 +1707881221,213,0 +1707881222,213,0 +1707881222,213,0 +1707881223,213,0 +1707881223,213,0 +1707881224,213,0 +1707881224,213,0 +1707881225,213,0 +1707881225,213,0 +1707881226,213,0 +1707881226,213,0 +1707881227,213,0 +1707881227,213,0 +1707881228,213,0 +1707881228,213,0 +1707881229,213,0 +1707881229,213,0 +1707881230,213,0 +1707881230,213,0 +1707881231,213,0 +1707881231,213,0 +1707881232,213,0 +1707881232,213,0 +1707881232,213,0 +1707881233,213,0 +1707881233,213,0 +1707881234,213,0 +1707881234,213,0 +1707881235,213,0 +1707881235,213,0 +1707881236,213,0 +1707881236,213,0 +1707881237,213,0 +1707881237,213,0 +1707881238,213,0 +1707881238,214,0 +1707881239,213,0 +1707881239,214,0 +1707881240,213,0 +1707881240,213,0 +1707881241,213,0 +1707881241,213,0 +1707881242,213,0 +1707881242,213,0 +1707881243,213,0 +1707881243,213,0 +1707881244,213,0 +1707881244,213,0 +1707881245,213,0 +1707881245,213,0 +1707881245,213,0 +1707881246,213,0 +1707881246,213,0 +1707881247,213,0 +1707881247,214,0 +1707881248,214,0 +1707881248,213,0 +1707881249,213,0 +1707881249,213,0 +1707881250,213,0 +1707881250,212,0 +1707881251,212,0 +1707881251,213,0 +1707881252,212,0 +1707881252,213,0 +1707881253,213,0 +1707881253,213,0 +1707881254,213,0 +1707881254,213,0 +1707881255,213,0 +1707881255,213,0 +1707881256,213,0 +1707881256,213,0 +1707881257,213,0 +1707881257,213,0 +1707881258,213,0 +1707881258,213,0 +1707881258,213,0 +1707881259,213,0 +1707881259,213,0 +1707881260,213,0 +1707881260,212,0 +1707881261,213,0 +1707881261,213,0 +1707881262,213,0 +1707881262,213,0 +1707881263,213,0 +1707881263,213,0 +1707881264,213,0 +1707881264,213,0 +1707881265,213,0 +1707881265,213,0 +1707881266,213,0 +1707881266,213,0 +1707881267,213,0 +1707881267,213,0 +1707881268,213,0 +1707881268,213,0 +1707881269,213,0 +1707881269,213,0 +1707881270,212,0 +1707881270,213,0 +1707881271,213,0 +1707881271,213,0 +1707881272,213,0 +1707881272,213,0 +1707881273,213,0 +1707881273,213,0 +1707881273,213,0 +1707881274,213,0 +1707881274,213,0 +1707881275,213,0 +1707881275,213,0 +1707881276,213,0 +1707881276,213,0 +1707881277,213,0 +1707881277,213,0 +1707881278,213,0 +1707881278,213,0 +1707881279,213,0 +1707881279,212,0 +1707881280,213,0 +1707881280,213,0 +1707881281,213,0 +1707881281,213,0 +1707881282,213,0 +1707881282,213,0 +1707881283,213,0 +1707881283,213,0 +1707881284,213,0 +1707881284,213,0 +1707881285,213,0 +1707881285,213,0 +1707881286,213,0 +1707881286,213,0 +1707881287,213,0 +1707881287,213,0 +1707881288,212,0 +1707881288,212,0 +1707881289,213,0 +1707881289,213,0 +1707881289,213,0 +1707881290,212,0 +1707881290,213,0 +1707881291,213,0 +1707881291,213,0 +1707881292,213,0 +1707881292,213,0 +1707881293,213,0 +1707881293,213,0 +1707881294,213,0 +1707881294,213,0 +1707881295,213,0 +1707881295,213,0 +1707881296,213,0 +1707881296,213,0 +1707881297,213,0 +1707881297,213,0 +1707881298,213,0 +1707881298,213,0 +1707881299,213,0 +1707881299,213,0 +1707881300,213,0 +1707881300,213,0 +1707881301,213,0 +1707881301,213,0 +1707881302,213,0 +1707881302,213,0 +1707881303,213,0 +1707881303,213,0 +1707881304,213,0 +1707881304,213,0 +1707881304,213,0 +1707881305,213,0 +1707881305,213,0 +1707881306,213,0 +1707881306,213,0 +1707881307,213,0 +1707881307,213,0 +1707881308,213,0 +1707881308,213,0 +1707881309,213,0 +1707881309,213,0 +1707881310,213,0 +1707881310,213,0 +1707881311,213,0 +1707881311,213,0 +1707881312,213,0 +1707881312,213,0 +1707881313,213,0 +1707881313,213,0 +1707881314,213,0 +1707881314,213,0 +1707881315,213,0 +1707881315,213,0 +1707881316,213,0 +1707881316,213,0 +1707881317,213,0 +1707881317,213,0 +1707881318,213,0 +1707881318,213,0 +1707881319,213,0 +1707881319,213,0 +1707881320,213,0 +1707881320,213,0 +1707881321,213,0 +1707881321,213,0 +1707881322,213,0 +1707881322,213,0 +1707881322,213,0 +1707881323,213,0 +1707881323,213,0 +1707881324,213,0 +1707881324,213,0 +1707881325,213,0 +1707881325,213,0 +1707881326,213,0 +1707881326,213,0 +1707881327,213,0 +1707881327,213,0 +1707881328,213,0 +1707881328,213,0 +1707881329,213,0 +1707881329,213,0 +1707881330,213,0 +1707881330,214,0 +1707881331,214,0 +1707881331,214,0 +1707881332,214,0 +1707881332,214,0 +1707881333,213,0 +1707881333,213,0 +1707881334,213,0 +1707881334,213,0 +1707881335,213,0 +1707881335,213,0 +1707881336,213,0 +1707881336,213,0 +1707881337,213,0 +1707881337,213,0 +1707881338,213,0 +1707881338,213,0 +1707881338,213,0 +1707881339,213,0 +1707881339,213,0 +1707881340,214,0 +1707881340,214,0 +1707881341,213,0 +1707881341,214,0 +1707881342,213,0 +1707881342,213,0 +1707881343,213,0 +1707881343,213,0 +1707881344,213,0 +1707881344,213,0 +1707881345,213,0 +1707881345,213,0 +1707881346,213,0 +1707881346,213,0 +1707881347,213,0 +1707881347,213,0 +1707881348,213,0 +1707881348,213,0 +1707881349,213,0 +1707881349,214,0 +1707881350,213,0 +1707881350,213,0 +1707881351,213,0 +1707881351,213,0 +1707881352,213,0 +1707881352,213,0 +1707881353,213,0 +1707881353,212,0 +1707881354,213,0 +1707881354,213,0 +1707881354,213,0 +1707881355,213,0 +1707881355,213,0 +1707881356,213,0 +1707881356,213,0 +1707881357,213,0 +1707881357,213,0 +1707881358,213,0 +1707881358,213,0 +1707881359,213,0 +1707881359,213,0 +1707881360,213,0 +1707881360,213,0 +1707881361,213,0 +1707881361,213,0 +1707881362,212,0 +1707881362,212,0 +1707881363,212,0 +1707881363,212,0 +1707881364,213,0 +1707881364,212,0 +1707881365,213,0 +1707881365,213,0 +1707881366,213,0 +1707881366,213,0 +1707881367,213,0 +1707881367,213,0 +1707881368,213,0 +1707881368,213,0 +1707881368,213,0 +1707881369,213,0 +1707881369,213,0 +1707881370,213,0 +1707881370,213,0 +1707881371,213,0 +1707881371,213,0 +1707881372,213,0 +1707881372,213,0 +1707881373,213,0 +1707881373,213,0 +1707881374,213,0 +1707881374,213,0 +1707881375,213,0 +1707881375,213,0 +1707881376,213,0 +1707881376,213,0 +1707881377,213,0 +1707881377,213,0 +1707881378,213,0 +1707881378,213,0 +1707881379,213,0 +1707881379,213,0 +1707881380,213,0 +1707881380,213,0 +1707881381,213,0 +1707881381,213,0 +1707881382,213,0 +1707881382,213,0 +1707881383,213,0 +1707881383,213,0 +1707881384,213,0 +1707881384,213,0 +1707881385,213,0 +1707881385,213,0 +1707881385,213,0 +1707881386,213,0 +1707881386,213,0 +1707881387,213,0 +1707881387,214,0 +1707881388,213,0 +1707881388,213,0 +1707881389,213,0 +1707881389,213,0 +1707881390,213,0 +1707881390,213,0 +1707881391,213,0 +1707881391,213,0 +1707881392,213,0 +1707881392,213,0 +1707881393,213,0 +1707881393,213,0 +1707881394,214,0 +1707881394,213,0 +1707881395,214,0 +1707881395,214,0 +1707881396,213,0 +1707881396,213,0 +1707881397,213,0 +1707881397,213,0 +1707881398,213,0 +1707881398,213,0 +1707881399,213,0 +1707881399,213,0 +1707881399,213,0 +1707881400,213,0 +1707881400,213,0 +1707881401,213,0 +1707881401,213,0 +1707881402,213,0 +1707881402,213,0 +1707881403,213,0 +1707881403,213,0 +1707881404,213,0 +1707881404,213,0 +1707881405,214,0 +1707881405,214,0 +1707881406,213,0 +1707881406,213,0 +1707881407,213,0 +1707881407,213,0 +1707881408,213,0 +1707881408,213,0 +1707881409,213,0 +1707881409,213,0 +1707881410,213,0 +1707881410,213,0 +1707881411,213,0 +1707881411,213,0 +1707881412,213,0 +1707881412,213,0 +1707881413,213,0 +1707881413,213,0 +1707881414,213,0 +1707881414,213,0 +1707881414,213,0 +1707881415,213,0 +1707881415,213,0 +1707881416,213,0 +1707881416,213,0 +1707881417,213,0 +1707881417,213,0 +1707881418,213,0 +1707881418,212,0 +1707881419,212,0 +1707881419,213,0 +1707881420,213,0 +1707881420,213,0 +1707881421,213,0 +1707881421,213,0 +1707881422,213,0 +1707881422,213,0 +1707881423,213,0 +1707881423,213,0 +1707881424,213,0 +1707881424,213,0 +1707881425,213,0 +1707881425,213,0 +1707881426,213,0 +1707881426,213,0 +1707881427,212,0 +1707881427,213,0 +1707881428,213,0 +1707881428,212,0 +1707881429,213,0 +1707881429,213,0 +1707881430,213,0 +1707881430,213,0 +1707881431,213,0 +1707881431,213,0 +1707881431,213,0 +1707881432,213,0 +1707881432,213,0 +1707881433,213,0 +1707881433,213,0 +1707881434,213,0 +1707881434,213,0 +1707881435,213,0 +1707881435,213,0 +1707881436,212,0 +1707881436,212,0 +1707881437,213,0 +1707881437,213,0 +1707881438,213,0 +1707881438,213,0 +1707881439,213,0 +1707881439,213,0 +1707881440,213,0 +1707881440,213,0 +1707881441,213,0 +1707881441,213,0 +1707881442,213,0 +1707881442,213,0 +1707881443,213,0 +1707881443,213,0 +1707881444,213,0 +1707881444,213,0 +1707881445,213,0 +1707881445,212,0 +1707881446,213,0 +1707881446,213,0 +1707881446,213,0 +1707881447,213,0 +1707881447,213,0 +1707881448,213,0 +1707881448,213,0 +1707881449,213,0 +1707881449,213,0 +1707881450,213,0 +1707881450,213,0 +1707881451,213,0 +1707881451,213,0 +1707881452,213,0 +1707881452,213,0 +1707881453,213,0 +1707881453,213,0 +1707881454,213,0 +1707881454,213,0 +1707881455,213,0 +1707881455,213,0 +1707881456,213,0 +1707881456,213,0 +1707881457,213,0 +1707881457,213,0 +1707881458,213,0 +1707881458,213,0 +1707881459,213,0 +1707881459,213,0 +1707881460,213,0 +1707881460,213,0 +1707881460,213,0 +1707881461,213,0 +1707881461,213,0 +1707881462,214,0 +1707881462,213,0 +1707881463,213,0 +1707881463,213,0 +1707881464,213,0 +1707881464,213,0 +1707881465,213,0 +1707881465,213,0 +1707881466,213,0 +1707881466,213,0 +1707881467,213,0 +1707881467,213,0 +1707881468,213,0 +1707881468,213,0 +1707881469,213,0 +1707881469,213,0 +1707881470,213,0 +1707881470,213,0 +1707881471,213,0 +1707881471,213,0 +1707881472,213,0 +1707881472,213,0 +1707881472,213,0 +1707881473,213,0 +1707881473,213,0 +1707881474,213,0 +1707881474,213,0 +1707881475,213,0 +1707881475,213,0 +1707881476,213,0 +1707881476,213,0 +1707881477,213,0 +1707881477,213,0 +1707881478,213,0 +1707881478,213,0 +1707881479,213,0 +1707881479,213,0 +1707881480,213,0 +1707881480,213,0 +1707881481,213,0 +1707881481,213,0 +1707881482,213,0 +1707881482,213,0 +1707881483,213,0 +1707881483,213,0 +1707881484,213,0 +1707881484,213,0 +1707881484,213,0 +1707881485,213,0 +1707881485,213,0 +1707881486,213,0 +1707881486,213,0 +1707881487,213,0 +1707881487,213,0 +1707881488,213,0 +1707881488,213,0 +1707881489,213,0 +1707881489,213,0 +1707881490,214,0 +1707881490,213,0 +1707881491,213,0 +1707881491,212,0 +1707881492,213,0 +1707881492,213,0 +1707881493,213,0 +1707881493,213,0 +1707881494,213,0 +1707881494,213,0 +1707881495,213,0 +1707881495,213,0 +1707881495,213,0 +1707881496,213,0 +1707881496,213,0 +1707881497,213,0 +1707881497,214,0 +1707881498,213,0 +1707881498,213,0 +1707881499,214,0 +1707881499,214,0 +1707881500,213,0 +1707881500,213,0 +1707881501,213,0 +1707881501,213,0 +1707881502,213,0 +1707881502,213,0 +1707881503,213,0 +1707881503,213,0 +1707881504,213,0 +1707881504,213,0 +1707881505,213,0 +1707881505,213,0 +1707881506,213,0 +1707881506,213,0 +1707881507,213,0 +1707881507,213,0 +1707881508,214,0 +1707881508,213,0 +1707881508,213,0 +1707881509,213,0 +1707881509,213,0 +1707881510,213,0 +1707881510,213,0 +1707881511,213,0 +1707881511,213,0 +1707881512,213,0 +1707881512,213,0 +1707881513,213,0 +1707881513,213,0 +1707881514,213,0 +1707881514,213,0 +1707881515,213,0 +1707881515,213,0 +1707881516,213,0 +1707881516,213,0 +1707881517,213,0 +1707881517,214,0 +1707881518,213,0 +1707881518,213,0 +1707881519,213,0 +1707881519,213,0 +1707881520,213,0 +1707881520,213,0 +1707881520,213,0 +1707881521,213,0 +1707881521,213,0 +1707881522,213,0 +1707881522,213,0 +1707881523,213,0 +1707881523,213,0 +1707881524,213,0 +1707881524,213,0 +1707881525,213,0 +1707881525,213,0 +1707881526,213,0 +1707881526,213,0 +1707881527,213,0 +1707881527,213,0 +1707881528,213,0 +1707881528,213,0 +1707881529,212,0 +1707881529,213,0 +1707881530,213,0 +1707881530,213,0 +1707881531,213,0 +1707881531,213,0 +1707881532,213,0 +1707881532,213,0 +1707881532,213,0 +1707881533,213,0 +1707881533,213,0 +1707881534,213,0 +1707881534,213,0 +1707881535,213,0 +1707881535,213,0 +1707881536,213,0 +1707881536,213,0 +1707881537,213,0 +1707881537,213,0 +1707881538,213,0 +1707881538,212,0 +1707881539,213,0 +1707881539,213,0 +1707881540,213,0 +1707881540,213,0 +1707881541,213,0 +1707881541,213,0 +1707881542,213,0 +1707881542,213,0 +1707881543,213,0 +1707881543,213,0 +1707881544,214,0 +1707881544,213,0 +1707881544,213,0 +1707881545,213,0 +1707881545,213,0 +1707881546,213,0 +1707881546,213,0 +1707881547,213,0 +1707881547,213,0 +1707881548,213,0 +1707881548,213,0 +1707881549,213,0 +1707881549,213,0 +1707881550,213,0 +1707881550,213,0 +1707881551,213,0 +1707881551,213,0 +1707881552,213,0 +1707881552,213,0 +1707881553,213,0 +1707881553,213,0 +1707881554,213,0 +1707881554,213,0 +1707881555,213,0 +1707881555,213,0 +1707881556,213,0 +1707881556,213,0 +1707881556,213,0 +1707881557,213,0 +1707881557,213,0 +1707881558,213,0 +1707881558,213,0 +1707881559,213,0 +1707881559,213,0 +1707881560,213,0 +1707881560,213,0 +1707881561,213,0 +1707881561,213,0 +1707881562,213,0 +1707881562,213,0 +1707881563,213,0 +1707881563,213,0 +1707881564,213,0 +1707881564,214,0 +1707881565,213,0 +1707881565,213,0 +1707881566,213,0 +1707881566,213,0 +1707881567,213,0 +1707881567,213,0 +1707881567,213,0 +1707881568,213,0 +1707881568,213,0 +1707881569,213,0 +1707881569,213,0 +1707881570,213,0 +1707881570,213,0 +1707881571,213,0 +1707881571,213,0 +1707881572,213,0 +1707881572,213,0 +1707881573,213,0 +1707881573,213,0 +1707881574,213,0 +1707881574,213,0 +1707881575,213,0 +1707881575,213,0 +1707881576,213,0 +1707881576,213,0 +1707881577,213,0 +1707881577,213,0 +1707881578,213,0 +1707881578,213,0 +1707881579,213,0 +1707881579,213,0 +1707881579,214,0 +1707881580,214,0 +1707881580,214,0 +1707881581,214,0 +1707881581,214,0 +1707881582,214,0 +1707881582,213,0 +1707881583,213,0 +1707881583,213,0 +1707881584,213,0 +1707881584,213,0 +1707881585,213,0 +1707881585,213,0 +1707881586,213,0 +1707881586,213,0 +1707881587,213,0 +1707881587,214,0 +1707881588,213,0 +1707881588,213,0 +1707881589,213,0 +1707881589,213,0 +1707881590,213,0 +1707881590,213,0 +1707881591,214,0 +1707881591,214,0 +1707881592,214,0 +1707881592,213,0 +1707881593,213,0 +1707881593,213,0 +1707881593,213,0 +1707881594,213,0 +1707881594,213,0 +1707881595,213,0 +1707881595,213,0 +1707881596,213,0 +1707881596,213,0 +1707881597,213,0 +1707881597,213,0 +1707881598,214,0 +1707881598,214,0 +1707881599,214,0 +1707881599,213,0 +1707881600,214,0 +1707881600,213,0 +1707881601,213,0 +1707881601,213,0 +1707881602,213,0 +1707881602,213,0 +1707881603,213,0 +1707881603,213,0 +1707881604,213,0 +1707881604,213,0 +1707881605,213,0 +1707881605,213,0 +1707881606,213,0 +1707881606,213,0 +1707881606,213,0 +1707881607,213,0 +1707881607,213,0 +1707881608,213,0 +1707881608,213,0 +1707881609,213,0 +1707881609,213,0 +1707881610,214,0 +1707881610,213,0 +1707881611,213,0 +1707881611,213,0 +1707881612,213,0 +1707881612,213,0 +1707881613,213,0 +1707881613,213,0 +1707881614,213,0 +1707881614,213,0 +1707881615,213,0 +1707881615,213,0 +1707881616,213,0 +1707881616,213,0 +1707881617,213,0 +1707881617,213,0 +1707881618,213,0 +1707881618,213,0 +1707881619,213,0 +1707881619,213,0 +1707881620,213,0 +1707881620,213,0 +1707881621,213,0 +1707881621,213,0 +1707881621,213,0 +1707881622,213,0 +1707881622,213,0 +1707881623,213,0 +1707881623,213,0 +1707881624,213,0 +1707881624,213,0 +1707881625,213,0 +1707881625,213,0 +1707881626,213,0 +1707881626,213,0 +1707881627,213,0 +1707881627,213,0 +1707881628,213,0 +1707881628,213,0 +1707881629,213,0 +1707881629,212,0 +1707881630,213,0 +1707881630,213,0 +1707881631,213,0 +1707881631,213,0 +1707881632,213,0 +1707881632,213,0 +1707881633,213,0 +1707881633,213,0 +1707881634,213,0 +1707881634,213,0 +1707881635,213,0 +1707881635,213,0 +1707881636,213,0 +1707881636,213,0 +1707881637,213,0 +1707881637,213,0 +1707881638,213,0 +1707881638,213,0 +1707881638,213,0 +1707881639,213,0 +1707881639,213,0 +1707881640,213,0 +1707881640,213,0 +1707881641,213,0 +1707881641,213,0 +1707881642,213,0 +1707881642,213,0 +1707881643,213,0 +1707881643,213,0 +1707881644,213,0 +1707881644,213,0 +1707881645,214,0 +1707881645,214,0 +1707881646,213,0 +1707881646,213,0 +1707881647,213,0 +1707881647,213,0 +1707881648,213,0 +1707881648,213,0 +1707881649,213,0 +1707881649,213,0 +1707881650,213,0 +1707881650,213,0 +1707881651,213,0 +1707881651,213,0 +1707881652,213,0 +1707881652,214,0 +1707881653,213,0 +1707881653,214,0 +1707881654,214,0 +1707881654,213,0 +1707881654,214,0 +1707881655,213,0 +1707881655,214,0 +1707881656,213,0 +1707881656,213,0 +1707881657,213,0 +1707881657,213,0 +1707881658,213,0 +1707881658,213,0 +1707881659,213,0 +1707881659,213,0 +1707881660,213,0 +1707881660,213,0 +1707881661,213,0 +1707881661,213,0 +1707881662,214,0 +1707881662,214,0 +1707881663,213,0 +1707881663,214,0 +1707881664,214,0 +1707881664,214,0 +1707881665,214,0 +1707881665,213,0 +1707881666,213,0 +1707881666,213,0 +1707881667,213,0 +1707881667,213,0 +1707881667,213,0 +1707881668,213,0 +1707881668,213,0 +1707881669,213,0 +1707881669,213,0 +1707881670,213,0 +1707881670,213,0 +1707881671,214,0 +1707881671,213,0 +1707881672,214,0 +1707881672,214,0 +1707881673,214,0 +1707881673,213,0 +1707881674,213,0 +1707881674,214,0 +1707881675,213,0 +1707881675,213,0 +1707881676,213,0 +1707881676,213,0 +1707881677,213,0 +1707881677,213,0 +1707881678,213,0 +1707881678,213,0 +1707881679,213,0 +1707881679,213,0 +1707881680,213,0 +1707881680,213,0 +1707881681,213,0 +1707881681,213,0 +1707881682,213,0 +1707881682,214,0 +1707881683,214,0 +1707881683,213,0 +1707881683,213,0 +1707881684,213,0 +1707881684,213,0 +1707881685,213,0 +1707881685,213,0 +1707881686,213,0 +1707881686,213,0 +1707881687,213,0 +1707881687,213,0 +1707881688,213,0 +1707881688,213,0 +1707881689,213,0 +1707881689,213,0 +1707881690,213,0 +1707881690,214,0 +1707881691,214,0 +1707881691,213,0 +1707881692,213,0 +1707881692,213,0 +1707881693,213,0 +1707881693,213,0 +1707881694,213,0 +1707881694,213,0 +1707881695,213,0 +1707881695,213,0 +1707881695,213,0 +1707881696,213,0 +1707881696,213,0 +1707881697,213,0 +1707881697,213,0 +1707881698,213,0 +1707881698,213,0 +1707881699,213,0 +1707881699,214,0 +1707881700,214,0 +1707881700,214,0 +1707881701,213,0 +1707881701,213,0 +1707881702,213,0 +1707881702,213,0 +1707881703,213,0 +1707881703,213,0 +1707881704,213,0 +1707881704,213,0 +1707881705,213,0 +1707881705,213,0 +1707881706,213,0 +1707881706,213,0 +1707881707,213,0 +1707881707,213,0 +1707881708,213,0 +1707881708,213,0 +1707881708,214,0 +1707881709,213,0 +1707881709,213,0 +1707881710,213,0 +1707881710,213,0 +1707881711,213,0 +1707881711,213,0 +1707881712,212,0 +1707881712,213,0 +1707881713,213,0 +1707881713,213,0 +1707881714,213,0 +1707881714,213,0 +1707881715,213,0 +1707881715,213,0 +1707881716,213,0 +1707881716,213,0 +1707881717,213,0 +1707881717,213,0 +1707881718,213,0 +1707881718,214,0 +1707881719,213,0 +1707881719,213,0 +1707881720,213,0 +1707881720,213,0 +1707881720,213,0 +1707881721,213,0 +1707881721,213,0 +1707881722,213,0 +1707881722,213,0 +1707881723,213,0 +1707881723,213,0 +1707881724,213,0 +1707881724,213,0 +1707881725,213,0 +1707881725,213,0 +1707881726,213,0 +1707881726,213,0 +1707881727,213,0 +1707881727,213,0 +1707881728,213,0 +1707881728,213,0 +1707881729,213,0 +1707881729,213,0 +1707881730,213,0 +1707881730,213,0 +1707881731,213,0 +1707881731,213,0 +1707881731,213,0 +1707881732,213,0 +1707881732,213,0 +1707881733,213,0 +1707881733,213,0 +1707881734,213,0 +1707881734,213,0 +1707881735,213,0 +1707881735,213,0 +1707881736,213,0 +1707881736,213,0 +1707881737,213,0 +1707881737,213,0 +1707881738,213,0 +1707881738,213,0 +1707881739,213,0 +1707881739,213,0 +1707881740,213,0 +1707881740,213,0 +1707881741,213,0 +1707881741,213,0 +1707881742,213,0 +1707881742,213,0 +1707881743,213,0 +1707881743,213,0 +1707881744,213,0 +1707881744,213,0 +1707881745,213,0 +1707881745,213,0 +1707881746,213,0 +1707881746,213,0 +1707881747,213,0 +1707881747,214,0 +1707881748,213,0 +1707881748,213,0 +1707881749,213,0 +1707881749,213,0 +1707881749,213,0 +1707881750,213,0 +1707881750,213,0 +1707881751,213,0 +1707881751,213,0 +1707881752,213,0 +1707881752,213,0 +1707881753,213,0 +1707881753,213,0 +1707881754,213,0 +1707881754,213,0 +1707881755,214,0 +1707881755,213,0 +1707881756,213,0 +1707881756,214,0 +1707881757,213,0 +1707881757,213,0 +1707881758,213,0 +1707881758,213,0 +1707881759,213,0 +1707881759,213,0 +1707881760,213,0 +1707881760,213,0 +1707881761,213,0 +1707881761,213,0 +1707881762,213,0 +1707881762,213,0 +1707881763,213,0 +1707881763,213,0 +1707881764,214,0 +1707881764,214,0 +1707881764,213,0 +1707881765,214,0 +1707881765,214,0 +1707881766,213,0 +1707881766,213,0 +1707881767,213,0 +1707881767,213,0 +1707881768,213,0 +1707881768,213,0 +1707881769,213,0 +1707881769,213,0 +1707881770,213,0 +1707881770,214,0 +1707881771,214,0 +1707881771,214,0 +1707881772,214,0 +1707881772,214,0 +1707881773,214,0 +1707881773,214,0 +1707881774,214,0 +1707881774,213,0 +1707881775,213,0 +1707881775,213,0 +1707881776,213,0 +1707881776,213,0 +1707881777,213,0 +1707881777,213,0 +1707881778,213,0 +1707881778,213,0 +1707881778,213,0 +1707881779,213,0 +1707881779,213,0 +1707881780,213,0 +1707881780,213,0 +1707881781,213,0 +1707881781,214,0 +1707881782,213,0 +1707881782,213,0 +1707881783,213,0 +1707881783,214,0 +1707881784,214,0 +1707881784,213,0 +1707881785,213,0 +1707881785,213,0 +1707881786,213,0 +1707881786,213,0 +1707881787,213,0 +1707881787,213,0 +1707881788,213,0 +1707881788,213,0 +1707881789,213,0 +1707881789,213,0 +1707881790,213,0 +1707881790,213,0 +1707881791,213,0 +1707881791,213,0 +1707881792,213,0 +1707881792,214,0 +1707881792,213,0 +1707881793,213,0 +1707881793,213,0 +1707881794,213,0 +1707881794,213,0 +1707881795,213,0 +1707881795,213,0 +1707881796,213,0 +1707881796,213,0 +1707881797,213,0 +1707881797,213,0 +1707881798,213,0 +1707881798,213,0 +1707881799,213,0 +1707881799,213,0 +1707881800,214,0 +1707881800,213,0 +1707881801,213,0 +1707881801,213,0 +1707881802,213,0 +1707881802,214,0 +1707881803,213,0 +1707881803,213,0 +1707881804,213,0 +1707881804,213,0 +1707881805,213,0 +1707881805,213,0 +1707881805,213,0 +1707881806,213,0 +1707881806,213,0 +1707881807,213,0 +1707881807,214,0 +1707881808,213,0 +1707881808,214,0 +1707881809,214,0 +1707881809,214,0 +1707881810,213,0 +1707881810,214,0 +1707881811,214,0 +1707881811,213,0 +1707881812,213,0 +1707881812,213,0 +1707881813,213,0 +1707881813,213,0 +1707881814,213,0 +1707881814,213,0 +1707881815,213,0 +1707881815,213,0 +1707881816,213,0 +1707881816,213,0 +1707881817,213,0 +1707881817,213,0 +1707881818,213,0 +1707881818,214,0 +1707881819,214,0 +1707881819,214,0 +1707881819,214,0 +1707881820,214,0 +1707881820,214,0 +1707881821,213,0 +1707881821,213,0 +1707881822,213,0 +1707881822,213,0 +1707881823,213,0 +1707881823,213,0 +1707881824,213,0 +1707881824,214,0 +1707881825,213,0 +1707881825,214,0 +1707881826,214,0 +1707881826,214,0 +1707881827,213,0 +1707881827,214,0 +1707881828,214,0 +1707881828,214,0 +1707881829,214,0 +1707881829,214,0 +1707881830,213,0 +1707881830,213,0 +1707881831,213,0 +1707881831,213,0 +1707881832,213,0 +1707881832,213,0 +1707881833,213,0 +1707881833,213,0 +1707881833,213,0 +1707881834,213,0 +1707881834,214,0 +1707881835,214,0 +1707881835,214,0 +1707881836,214,0 +1707881836,214,0 +1707881837,214,0 +1707881837,214,0 +1707881838,214,0 +1707881838,213,0 +1707881839,213,0 +1707881839,213,0 +1707881840,213,0 +1707881840,213,0 +1707881841,213,0 +1707881841,213,0 +1707881842,213,0 +1707881842,213,0 +1707881843,213,0 +1707881843,213,0 +1707881844,213,0 +1707881844,214,0 +1707881845,214,0 +1707881845,214,0 +1707881846,214,0 +1707881846,214,0 +1707881847,214,0 +1707881847,214,0 +1707881847,214,0 +1707881848,213,0 +1707881848,213,0 +1707881849,213,0 +1707881849,213,0 +1707881850,213,0 +1707881850,213,0 +1707881851,213,0 +1707881851,213,0 +1707881852,213,0 +1707881852,213,0 +1707881853,213,0 +1707881853,213,0 +1707881854,213,0 +1707881854,213,0 +1707881855,214,0 +1707881855,214,0 +1707881856,214,0 +1707881856,214,0 +1707881857,214,0 +1707881857,213,0 +1707881858,213,0 +1707881858,213,0 +1707881859,213,0 +1707881859,213,0 +1707881860,213,0 +1707881860,213,0 +1707881860,213,0 +1707881861,213,0 +1707881861,213,0 +1707881862,213,0 +1707881862,213,0 +1707881863,213,0 +1707881863,213,0 +1707881864,213,0 +1707881864,213,0 +1707881865,214,0 +1707881865,213,0 +1707881866,214,0 +1707881866,213,0 +1707881867,213,0 +1707881867,213,0 +1707881868,213,0 +1707881868,213,0 +1707881869,213,0 +1707881869,213,0 +1707881870,213,0 +1707881870,213,0 +1707881871,213,0 +1707881871,213,0 +1707881872,213,0 +1707881872,213,0 +1707881873,213,0 +1707881873,213,0 +1707881874,213,0 +1707881874,213,0 +1707881875,214,0 +1707881875,213,0 +1707881876,213,0 +1707881876,213,0 +1707881876,213,0 +1707881877,213,0 +1707881877,213,0 +1707881878,213,0 +1707881878,213,0 +1707881879,213,0 +1707881879,213,0 +1707881880,213,0 +1707881880,213,0 +1707881881,213,0 +1707881881,213,0 +1707881882,213,0 +1707881882,214,0 +1707881883,214,0 +1707881883,214,0 +1707881884,214,0 +1707881884,214,0 +1707881885,213,0 +1707881885,213,0 +1707881886,213,0 +1707881886,213,0 +1707881887,213,0 +1707881887,213,0 +1707881888,213,0 +1707881888,213,0 +1707881888,213,0 +1707881889,213,0 +1707881889,213,0 +1707881890,213,0 +1707881890,213,0 +1707881891,213,0 +1707881891,213,0 +1707881892,213,0 +1707881892,214,0 +1707881893,213,0 +1707881893,214,0 +1707881894,213,0 +1707881894,213,0 +1707881895,213,0 +1707881895,213,0 +1707881896,213,0 +1707881896,213,0 +1707881897,213,0 +1707881897,213,0 +1707881898,213,0 +1707881898,213,0 +1707881899,213,0 +1707881899,213,0 +1707881900,214,0 +1707881900,213,0 +1707881901,214,0 +1707881901,214,0 +1707881902,214,0 +1707881902,213,0 +1707881903,213,0 +1707881903,213,0 +1707881904,213,0 +1707881904,213,0 +1707881905,213,0 +1707881905,213,0 +1707881905,213,0 +1707881906,213,0 +1707881906,213,0 +1707881907,213,0 +1707881907,213,0 +1707881908,213,0 +1707881908,213,0 +1707881909,213,0 +1707881909,213,0 +1707881910,214,0 +1707881910,213,0 +1707881911,213,0 +1707881911,214,0 +1707881912,213,0 +1707881912,213,0 +1707881913,213,0 +1707881913,213,0 +1707881914,213,0 +1707881914,213,0 +1707881915,213,0 +1707881915,213,0 +1707881916,213,0 +1707881916,213,0 +1707881917,213,0 +1707881917,213,0 +1707881918,213,0 +1707881918,213,0 +1707881919,213,0 +1707881919,213,0 +1707881920,213,0 +1707881920,213,0 +1707881921,214,0 +1707881921,213,0 +1707881921,213,0 +1707881922,213,0 +1707881922,213,0 +1707881923,213,0 +1707881923,213,0 +1707881924,213,0 +1707881924,213,0 +1707881925,213,0 +1707881925,213,0 +1707881926,213,0 +1707881926,213,0 +1707881927,213,0 +1707881927,213,0 +1707881928,213,0 +1707881928,213,0 +1707881929,213,0 +1707881929,213,0 +1707881930,214,0 +1707881930,213,0 +1707881931,213,0 +1707881931,213,0 +1707881932,213,0 +1707881932,213,0 +1707881933,213,0 +1707881933,213,0 +1707881933,213,0 +1707881934,213,0 +1707881934,213,0 +1707881935,213,0 +1707881935,213,0 +1707881936,213,0 +1707881936,213,0 +1707881937,213,0 +1707881937,213,0 +1707881938,213,0 +1707881938,213,0 +1707881939,214,0 +1707881939,213,0 +1707881940,213,0 +1707881940,213,0 +1707881941,213,0 +1707881941,213,0 +1707881942,213,0 +1707881942,213,0 +1707881943,213,0 +1707881943,213,0 +1707881944,213,0 +1707881944,213,0 +1707881945,213,0 +1707881945,213,0 +1707881945,213,0 +1707881946,214,0 +1707881946,213,0 +1707881947,214,0 +1707881947,213,0 +1707881948,214,0 +1707881948,213,0 +1707881949,213,0 +1707881949,213,0 +1707881950,213,0 +1707881950,213,0 +1707881951,213,0 +1707881951,213,0 +1707881952,213,0 +1707881952,214,0 +1707881953,214,0 +1707881953,214,0 +1707881954,214,0 +1707881954,214,0 +1707881955,214,0 +1707881955,214,0 +1707881956,214,0 +1707881956,214,0 +1707881957,214,0 +1707881957,213,0 +1707881958,213,0 +1707881958,213,0 +1707881959,213,0 +1707881959,213,0 +1707881959,213,0 +1707881960,214,0 +1707881960,213,0 +1707881961,213,0 +1707881961,213,0 +1707881962,214,0 +1707881962,213,0 +1707881963,214,0 +1707881963,213,0 +1707881964,214,0 +1707881964,214,0 +1707881965,214,0 +1707881965,214,0 +1707881966,213,0 +1707881966,213,0 +1707881967,213,0 +1707881967,213,0 +1707881968,213,0 +1707881968,213,0 +1707881969,213,0 +1707881969,213,0 +1707881970,213,0 +1707881970,214,0 +1707881971,214,0 +1707881971,214,0 +1707881972,214,0 +1707881972,214,0 +1707881973,214,0 +1707881973,214,0 +1707881974,214,0 +1707881974,214,0 +1707881974,214,0 +1707881975,213,0 +1707881975,213,0 +1707881976,213,0 +1707881976,213,0 +1707881977,213,0 +1707881977,213,0 +1707881978,213,0 +1707881978,213,0 +1707881979,213,0 +1707881979,213,0 +1707881980,213,0 +1707881980,214,0 +1707881981,213,0 +1707881981,213,0 +1707881982,214,0 +1707881982,214,0 +1707881983,214,0 +1707881983,214,0 +1707881984,214,0 +1707881984,213,0 +1707881985,213,0 +1707881985,213,0 +1707881986,213,0 +1707881986,213,0 +1707881987,213,0 +1707881987,213,0 +1707881988,213,0 +1707881988,213,0 +1707881989,213,0 +1707881989,214,0 +1707881990,213,0 +1707881990,213,0 +1707881990,214,0 +1707881991,214,0 +1707881991,213,0 +1707881992,214,0 +1707881992,213,0 +1707881993,214,0 +1707881993,213,0 +1707881994,213,0 +1707881994,213,0 +1707881995,213,0 +1707881995,213,0 +1707881996,213,0 +1707881996,213,0 +1707881997,213,0 +1707881997,213,0 +1707881998,213,0 +1707881998,213,0 +1707881999,213,0 +1707881999,214,0 +1707882000,213,0 +1707882000,214,0 +1707882001,214,0 +1707882001,214,0 +1707882002,214,0 +1707882002,214,0 +1707882003,213,0 +1707882003,213,0 +1707882004,213,0 +1707882004,213,0 +1707882004,213,0 +1707882005,213,0 +1707882005,213,0 +1707882006,213,0 +1707882006,213,0 +1707882007,213,0 +1707882007,213,0 +1707882008,213,0 +1707882008,213,0 +1707882009,214,0 +1707882009,213,0 +1707882010,214,0 +1707882010,214,0 +1707882011,213,0 +1707882011,213,0 +1707882012,213,0 +1707882012,213,0 +1707882013,213,0 +1707882013,213,0 +1707882014,213,0 +1707882014,213,0 +1707882015,213,0 +1707882015,213,0 +1707882016,213,0 +1707882016,213,0 +1707882017,213,0 +1707882017,213,0 +1707882018,213,0 +1707882018,213,0 +1707882019,214,0 +1707882019,213,0 +1707882020,214,0 +1707882020,213,0 +1707882021,214,0 +1707882021,213,0 +1707882021,213,0 +1707882022,213,0 +1707882022,213,0 +1707882023,213,0 +1707882023,213,0 +1707882024,213,0 +1707882024,213,0 +1707882025,213,0 +1707882025,213,0 +1707882026,213,0 +1707882026,214,0 +1707882027,213,0 +1707882027,214,0 +1707882028,214,0 +1707882028,214,0 +1707882029,214,0 +1707882029,214,0 +1707882030,214,0 +1707882030,213,0 +1707882031,213,0 +1707882031,213,0 +1707882032,213,0 +1707882032,213,0 +1707882033,213,0 +1707882033,213,0 +1707882034,213,0 +1707882034,213,0 +1707882035,213,0 +1707882035,213,0 +1707882035,214,0 +1707882036,214,0 +1707882036,214,0 +1707882037,214,0 +1707882037,214,0 +1707882038,214,0 +1707882038,214,0 +1707882039,214,0 +1707882039,213,0 +1707882040,213,0 +1707882040,213,0 +1707882041,213,0 +1707882041,213,0 +1707882042,213,0 +1707882042,213,0 +1707882043,213,0 +1707882043,213,0 +1707882044,213,0 +1707882044,213,0 +1707882045,213,0 +1707882045,213,0 +1707882046,213,0 +1707882046,214,0 +1707882047,214,0 +1707882047,214,0 +1707882048,214,0 +1707882048,213,0 +1707882049,213,0 +1707882049,213,0 +1707882050,213,0 +1707882050,213,0 +1707882051,213,0 +1707882051,213,0 +1707882052,213,0 +1707882052,213,0 +1707882053,213,0 +1707882053,214,0 +1707882053,214,0 +1707882054,214,0 +1707882054,214,0 +1707882055,213,0 +1707882055,214,0 +1707882056,214,0 +1707882056,213,0 +1707882057,214,0 +1707882057,213,0 +1707882058,213,0 +1707882058,213,0 +1707882059,213,0 +1707882059,213,0 +1707882060,213,0 +1707882060,213,0 +1707882061,213,0 +1707882061,213,0 +1707882062,213,0 +1707882062,213,0 +1707882063,213,0 +1707882063,214,0 +1707882064,213,0 +1707882064,213,0 +1707882065,214,0 +1707882065,214,0 +1707882066,214,0 +1707882066,213,0 +1707882067,213,0 +1707882067,213,0 +1707882067,213,0 +1707882068,213,0 +1707882068,213,0 +1707882069,213,0 +1707882069,213,0 +1707882070,213,0 +1707882070,213,0 +1707882071,214,0 +1707882071,213,0 +1707882072,213,0 +1707882072,214,0 +1707882073,213,0 +1707882073,214,0 +1707882074,214,0 +1707882074,214,0 +1707882075,214,0 +1707882075,213,0 +1707882076,213,0 +1707882076,213,0 +1707882077,213,0 +1707882077,213,0 +1707882078,213,0 +1707882078,213,0 +1707882079,213,0 +1707882079,213,0 +1707882080,213,0 +1707882080,213,0 +1707882081,214,0 +1707882081,214,0 +1707882082,214,0 +1707882082,214,0 +1707882083,214,0 +1707882083,214,0 +1707882083,214,0 +1707882084,214,0 +1707882084,213,0 +1707882085,213,0 +1707882085,213,0 +1707882086,213,0 +1707882086,213,0 +1707882087,213,0 +1707882087,213,0 +1707882088,213,0 +1707882088,213,0 +1707882089,213,0 +1707882089,214,0 +1707882090,214,0 +1707882090,214,0 +1707882091,214,0 +1707882091,214,0 +1707882092,214,0 +1707882092,214,0 +1707882093,214,0 +1707882093,214,0 +1707882094,213,0 +1707882094,213,0 +1707882095,213,0 +1707882095,213,0 +1707882096,213,0 +1707882096,213,0 +1707882097,213,0 +1707882097,213,0 +1707882098,213,0 +1707882098,213,0 +1707882098,214,0 +1707882099,214,0 +1707882099,213,0 +1707882100,213,0 +1707882100,214,0 +1707882101,214,0 +1707882101,214,0 +1707882102,214,0 +1707882102,213,0 +1707882103,213,0 +1707882103,213,0 +1707882104,213,0 +1707882104,213,0 +1707882105,213,0 +1707882105,213,0 +1707882106,213,0 +1707882106,213,0 +1707882107,213,0 +1707882107,213,0 +1707882108,213,0 +1707882108,214,0 +1707882109,214,0 +1707882109,214,0 +1707882110,214,0 +1707882110,214,0 +1707882111,214,0 +1707882111,213,0 +1707882112,213,0 +1707882112,213,0 +1707882113,213,0 +1707882113,213,0 +1707882114,213,0 +1707882114,213,0 +1707882114,213,0 +1707882115,213,0 +1707882115,213,0 +1707882116,213,0 +1707882116,213,0 +1707882117,213,0 +1707882117,213,0 +1707882118,214,0 +1707882118,214,0 +1707882119,214,0 +1707882119,214,0 +1707882120,214,0 +1707882120,213,0 +1707882121,213,0 +1707882121,213,0 +1707882122,213,0 +1707882122,213,0 +1707882123,213,0 +1707882123,213,0 +1707882124,213,0 +1707882124,213,0 +1707882125,213,0 +1707882125,214,0 +1707882126,214,0 +1707882126,214,0 +1707882127,214,0 +1707882127,214,0 +1707882128,214,0 +1707882128,214,0 +1707882129,214,0 +1707882129,214,0 +1707882129,213,0 +1707882130,213,0 +1707882130,213,0 +1707882131,214,0 +1707882131,213,0 +1707882132,214,0 +1707882132,214,0 +1707882133,214,0 +1707882133,214,0 +1707882134,214,0 +1707882134,214,0 +1707882135,214,0 +1707882135,214,0 +1707882136,214,0 +1707882136,214,0 +1707882137,214,0 +1707882137,214,0 +1707882138,214,0 +1707882138,213,0 +1707882139,213,0 +1707882139,213,0 +1707882140,213,0 +1707882140,214,0 +1707882141,214,0 +1707882141,214,0 +1707882142,214,0 +1707882142,214,0 +1707882143,214,0 +1707882143,214,0 +1707882143,214,0 +1707882144,214,0 +1707882144,214,0 +1707882145,214,0 +1707882145,214,0 +1707882146,214,0 +1707882146,214,0 +1707882147,214,0 +1707882147,214,0 +1707882148,213,0 +1707882148,213,0 +1707882149,213,0 +1707882149,213,0 +1707882150,213,0 +1707882150,214,0 +1707882151,214,0 +1707882151,214,0 +1707882152,214,0 +1707882152,214,0 +1707882153,214,0 +1707882153,214,0 +1707882154,214,0 +1707882154,214,0 +1707882155,214,0 +1707882155,214,0 +1707882156,214,0 +1707882156,214,0 +1707882156,213,0 +1707882157,213,0 +1707882157,213,0 +1707882158,213,0 +1707882158,213,0 +1707882159,213,0 +1707882159,213,0 +1707882160,213,0 +1707882160,213,0 +1707882161,213,0 +1707882161,213,0 +1707882162,213,0 +1707882162,214,0 +1707882163,213,0 +1707882163,214,0 +1707882164,214,0 +1707882164,214,0 +1707882165,214,0 +1707882165,214,0 +1707882166,213,0 +1707882166,213,0 +1707882167,213,0 +1707882167,213,0 +1707882168,213,0 +1707882168,213,0 +1707882169,213,0 +1707882169,213,0 +1707882170,213,0 +1707882170,213,0 +1707882171,213,0 +1707882171,214,0 +1707882172,214,0 +1707882172,214,0 +1707882173,214,0 +1707882173,214,0 +1707882173,214,0 +1707882174,214,0 +1707882174,214,0 +1707882175,213,0 +1707882175,213,0 +1707882176,213,0 +1707882176,213,0 +1707882177,213,0 +1707882177,213,0 +1707882178,213,0 +1707882178,213,0 +1707882179,214,0 +1707882179,213,0 +1707882180,213,0 +1707882180,213,0 +1707882181,214,0 +1707882181,214,0 +1707882182,214,0 +1707882182,214,0 +1707882183,214,0 +1707882183,214,0 +1707882184,213,0 +1707882184,213,0 +1707882185,213,0 +1707882185,213,0 +1707882186,213,0 +1707882186,213,0 +1707882187,213,0 +1707882187,213,0 +1707882188,213,0 +1707882188,213,0 +1707882188,213,0 +1707882189,214,0 +1707882189,214,0 +1707882190,214,0 +1707882190,214,0 +1707882191,214,0 +1707882191,214,0 +1707882192,214,0 +1707882192,214,0 +1707882193,213,0 +1707882193,213,0 +1707882194,213,0 +1707882194,213,0 +1707882195,213,0 +1707882195,213,0 +1707882196,213,0 +1707882196,213,0 +1707882197,213,0 +1707882197,213,0 +1707882198,213,0 +1707882198,213,0 +1707882199,214,0 +1707882199,214,0 +1707882200,214,0 +1707882200,214,0 +1707882201,214,0 +1707882201,214,0 +1707882201,214,0 +1707882202,213,0 +1707882202,213,0 +1707882203,213,0 +1707882203,213,0 +1707882204,213,0 +1707882204,213,0 +1707882205,213,0 +1707882205,213,0 +1707882206,213,0 +1707882206,213,0 +1707882207,213,0 +1707882207,213,0 +1707882208,213,0 +1707882208,213,0 +1707882209,214,0 +1707882209,213,0 +1707882210,213,0 +1707882210,214,0 +1707882211,213,0 +1707882211,213,0 +1707882212,213,0 +1707882212,213,0 +1707882213,213,0 +1707882213,213,0 +1707882213,213,0 +1707882214,213,0 +1707882214,213,0 +1707882215,214,0 +1707882215,213,0 +1707882216,214,0 +1707882216,213,0 +1707882217,214,0 +1707882217,214,0 +1707882218,214,0 +1707882218,214,0 +1707882219,214,0 +1707882219,213,0 +1707882220,213,0 +1707882220,213,0 +1707882221,213,0 +1707882221,213,0 +1707882222,213,0 +1707882222,213,0 +1707882223,213,0 +1707882223,213,0 +1707882224,213,0 +1707882224,214,0 +1707882225,214,0 +1707882225,214,0 +1707882225,214,0 +1707882226,214,0 +1707882226,214,0 +1707882227,214,0 +1707882227,214,0 +1707882228,214,0 +1707882228,213,0 +1707882229,213,0 +1707882229,213,0 +1707882230,213,0 +1707882230,213,0 +1707882231,213,0 +1707882231,213,0 +1707882232,213,0 +1707882232,213,0 +1707882233,213,0 +1707882233,213,0 +1707882234,213,0 +1707882234,213,0 +1707882235,214,0 +1707882235,213,0 +1707882236,214,0 +1707882236,213,0 +1707882237,213,0 +1707882237,213,0 +1707882238,213,0 +1707882238,213,0 +1707882239,213,0 +1707882239,213,0 +1707882240,213,0 +1707882240,213,0 +1707882241,213,0 +1707882241,213,0 +1707882241,213,0 +1707882242,213,0 +1707882242,213,0 +1707882243,213,0 +1707882243,213,0 +1707882244,214,0 +1707882244,214,0 +1707882245,214,0 +1707882245,214,0 +1707882246,214,0 +1707882246,213,0 +1707882247,213,0 +1707882247,213,0 +1707882248,213,0 +1707882248,213,0 +1707882249,213,0 +1707882249,213,0 +1707882250,214,0 +1707882250,213,0 +1707882251,214,0 +1707882251,214,0 +1707882252,214,0 +1707882252,214,0 +1707882253,214,0 +1707882253,214,0 +1707882254,214,0 +1707882254,214,0 +1707882255,213,0 +1707882255,213,0 +1707882256,213,0 +1707882256,213,0 +1707882257,213,0 +1707882257,213,0 +1707882257,213,0 +1707882258,213,0 +1707882258,213,0 +1707882259,213,0 +1707882259,214,0 +1707882260,214,0 +1707882260,213,0 +1707882261,214,0 +1707882261,214,0 +1707882262,214,0 +1707882262,214,0 +1707882263,214,0 +1707882263,214,0 +1707882264,213,0 +1707882264,213,0 +1707882265,213,0 +1707882265,213,0 +1707882266,213,0 +1707882266,213,0 +1707882267,213,0 +1707882267,213,0 +1707882268,213,0 +1707882268,214,0 +1707882269,214,0 +1707882269,214,0 +1707882269,214,0 +1707882270,214,0 +1707882270,214,0 +1707882271,214,0 +1707882271,214,0 +1707882272,214,0 +1707882272,214,0 +1707882273,213,0 +1707882273,213,0 +1707882274,213,0 +1707882274,213,0 +1707882275,213,0 +1707882275,213,0 +1707882276,213,0 +1707882276,214,0 +1707882277,214,0 +1707882277,213,0 +1707882278,214,0 +1707882278,214,0 +1707882279,214,0 +1707882279,214,0 +1707882280,214,0 +1707882280,214,0 +1707882281,214,0 +1707882281,214,0 +1707882281,213,0 +1707882282,213,0 +1707882282,213,0 +1707882283,213,0 +1707882283,213,0 +1707882284,213,0 +1707882284,213,0 +1707882285,213,0 +1707882285,213,0 +1707882286,213,0 +1707882286,213,0 +1707882287,214,0 +1707882287,214,0 +1707882288,213,0 +1707882288,214,0 +1707882289,214,0 +1707882289,214,0 +1707882290,214,0 +1707882290,214,0 +1707882291,213,0 +1707882291,213,0 +1707882292,213,0 +1707882292,213,0 +1707882293,213,0 +1707882293,213,0 +1707882294,213,0 +1707882294,213,0 +1707882294,213,0 +1707882295,213,0 +1707882295,214,0 +1707882296,214,0 +1707882296,214,0 +1707882297,214,0 +1707882297,214,0 +1707882298,214,0 +1707882298,214,0 +1707882299,214,0 +1707882299,213,0 +1707882300,213,0 +1707882300,213,0 +1707882301,213,0 +1707882301,213,0 +1707882302,213,0 +1707882302,213,0 +1707882303,213,0 +1707882303,214,0 +1707882304,213,0 +1707882304,214,0 +1707882305,214,0 +1707882305,214,0 +1707882305,214,0 +1707882306,214,0 +1707882306,214,0 +1707882307,214,0 +1707882307,214,0 +1707882308,213,0 +1707882308,213,0 +1707882309,213,0 +1707882309,213,0 +1707882310,213,0 +1707882310,213,0 +1707882311,213,0 +1707882311,213,0 +1707882312,214,0 +1707882312,214,0 +1707882313,214,0 +1707882313,214,0 +1707882314,214,0 +1707882314,214,0 +1707882315,214,0 +1707882315,214,0 +1707882316,214,0 +1707882316,214,0 +1707882317,213,0 +1707882317,213,0 +1707882318,213,0 +1707882318,213,0 +1707882319,213,0 +1707882319,213,0 +1707882320,214,0 +1707882320,214,0 +1707882320,214,0 +1707882321,214,0 +1707882321,214,0 +1707882322,214,0 +1707882322,214,0 +1707882323,214,0 +1707882323,214,0 +1707882324,214,0 +1707882324,214,0 +1707882325,214,0 +1707882325,214,0 +1707882326,213,0 +1707882326,213,0 +1707882327,213,0 +1707882327,213,0 +1707882328,213,0 +1707882328,213,0 +1707882329,214,0 +1707882329,214,0 +1707882330,214,0 +1707882330,214,0 +1707882331,214,0 +1707882331,214,0 +1707882332,214,0 +1707882332,214,0 +1707882333,214,0 +1707882333,214,0 +1707882334,214,0 +1707882334,214,0 +1707882334,213,0 +1707882335,213,0 +1707882335,213,0 +1707882336,213,0 +1707882336,213,0 +1707882337,213,0 +1707882337,213,0 +1707882338,213,0 +1707882338,214,0 +1707882339,214,0 +1707882339,213,0 +1707882340,214,0 +1707882340,214,0 +1707882341,214,0 +1707882341,214,0 +1707882342,214,0 +1707882342,214,0 +1707882343,214,0 +1707882343,214,0 +1707882344,213,0 +1707882344,213,0 +1707882345,213,0 +1707882345,213,0 +1707882346,213,0 +1707882346,213,0 +1707882346,213,0 +1707882347,213,0 +1707882347,213,0 +1707882348,214,0 +1707882348,214,0 +1707882349,214,0 +1707882349,214,0 +1707882350,214,0 +1707882350,214,0 +1707882351,214,0 +1707882351,213,0 +1707882352,214,0 +1707882352,213,0 +1707882353,213,0 +1707882353,213,0 +1707882354,213,0 +1707882354,213,0 +1707882355,213,0 +1707882355,213,0 +1707882356,213,0 +1707882356,213,0 +1707882357,213,0 +1707882357,213,0 +1707882358,213,0 +1707882358,214,0 +1707882359,214,0 +1707882359,214,0 +1707882359,214,0 +1707882360,214,0 +1707882360,214,0 +1707882361,213,0 +1707882361,213,0 +1707882362,213,0 +1707882362,213,0 +1707882363,213,0 +1707882363,213,0 +1707882364,213,0 +1707882364,213,0 +1707882365,213,0 +1707882365,213,0 +1707882366,213,0 +1707882366,213,0 +1707882367,214,0 +1707882367,214,0 +1707882368,214,0 +1707882368,214,0 +1707882369,214,0 +1707882369,214,0 +1707882370,213,0 +1707882370,213,0 +1707882371,213,0 +1707882371,213,0 +1707882372,213,0 +1707882372,213,0 +1707882372,213,0 +1707882373,213,0 +1707882373,213,0 +1707882374,213,0 +1707882374,213,0 +1707882375,213,0 +1707882375,213,0 +1707882376,213,0 +1707882376,214,0 +1707882377,214,0 +1707882377,214,0 +1707882378,213,0 +1707882378,214,0 +1707882379,213,0 +1707882379,213,0 +1707882380,213,0 +1707882380,213,0 +1707882381,213,0 +1707882381,213,0 +1707882382,213,0 +1707882382,213,0 +1707882383,213,0 +1707882383,213,0 +1707882384,213,0 +1707882384,214,0 +1707882384,214,0 +1707882385,214,0 +1707882385,214,0 +1707882386,214,0 +1707882386,214,0 +1707882387,214,0 +1707882387,213,0 +1707882388,213,0 +1707882388,213,0 +1707882389,213,0 +1707882389,213,0 +1707882390,213,0 +1707882390,213,0 +1707882391,213,0 +1707882391,213,0 +1707882392,213,0 +1707882392,213,0 +1707882393,214,0 +1707882393,214,0 +1707882394,214,0 +1707882394,214,0 +1707882395,214,0 +1707882395,214,0 +1707882396,214,0 +1707882396,213,0 +1707882397,213,0 +1707882397,213,0 +1707882398,213,0 +1707882398,213,0 +1707882399,213,0 +1707882399,213,0 +1707882400,213,0 +1707882400,214,0 +1707882400,214,0 +1707882401,214,0 +1707882401,214,0 +1707882402,214,0 +1707882402,214,0 +1707882403,214,0 +1707882403,214,0 +1707882404,214,0 +1707882404,214,0 +1707882405,214,0 +1707882405,213,0 +1707882406,213,0 +1707882406,213,0 +1707882407,213,0 +1707882407,214,0 +1707882408,213,0 +1707882408,213,0 +1707882409,213,0 +1707882409,213,0 +1707882410,214,0 +1707882410,214,0 +1707882411,214,0 +1707882411,214,0 +1707882412,214,0 +1707882412,214,0 +1707882413,214,0 +1707882413,214,0 +1707882414,214,0 +1707882414,213,0 +1707882414,213,0 +1707882415,213,0 +1707882415,213,0 +1707882416,213,0 +1707882416,213,0 +1707882417,214,0 +1707882417,214,0 +1707882418,214,0 +1707882418,214,0 +1707882419,214,0 +1707882419,214,0 +1707882420,214,0 +1707882420,214,0 +1707882421,214,0 +1707882421,214,0 +1707882422,214,0 +1707882422,214,0 +1707882423,213,0 +1707882423,213,0 +1707882424,213,0 +1707882424,213,0 +1707882425,213,0 +1707882425,213,0 +1707882426,214,0 +1707882426,214,0 +1707882427,214,0 +1707882427,214,0 +1707882427,214,0 +1707882428,214,0 +1707882428,214,0 +1707882429,214,0 +1707882429,214,0 +1707882430,214,0 +1707882430,214,0 +1707882431,214,0 +1707882431,213,0 +1707882432,213,0 +1707882432,213,0 +1707882433,213,0 +1707882433,213,0 +1707882434,213,0 +1707882434,214,0 +1707882435,213,0 +1707882435,213,0 +1707882436,214,0 +1707882436,214,0 +1707882437,214,0 +1707882437,214,0 +1707882438,214,0 +1707882438,214,0 +1707882439,214,0 +1707882439,214,0 +1707882440,214,0 +1707882440,214,0 +1707882440,213,0 +1707882441,213,0 +1707882441,213,0 +1707882442,213,0 +1707882442,213,0 +1707882443,213,0 +1707882443,213,0 +1707882444,213,0 +1707882444,213,0 +1707882445,213,0 +1707882445,213,0 +1707882446,213,0 +1707882446,214,0 +1707882447,214,0 +1707882447,214,0 +1707882448,214,0 +1707882448,214,0 +1707882449,214,0 +1707882449,213,0 +1707882450,213,0 +1707882450,213,0 +1707882451,213,0 +1707882451,213,0 +1707882452,213,0 +1707882452,213,0 +1707882453,213,0 +1707882453,213,0 +1707882454,213,0 +1707882454,213,0 +1707882455,213,0 +1707882455,214,0 +1707882455,214,0 +1707882456,214,0 +1707882456,214,0 +1707882457,214,0 +1707882457,214,0 +1707882458,213,0 +1707882458,213,0 +1707882459,213,0 +1707882459,213,0 +1707882460,213,0 +1707882460,213,0 +1707882461,213,0 +1707882461,213,0 +1707882462,213,0 +1707882462,213,0 +1707882463,213,0 +1707882463,213,0 +1707882464,213,0 +1707882464,214,0 +1707882465,214,0 +1707882465,214,0 +1707882466,214,0 +1707882466,214,0 +1707882467,214,0 +1707882467,213,0 +1707882468,213,0 +1707882468,213,0 +1707882469,213,0 +1707882469,213,0 +1707882470,213,0 +1707882470,213,0 +1707882470,213,0 +1707882471,214,0 +1707882471,213,0 +1707882472,214,0 +1707882472,213,0 +1707882473,214,0 +1707882473,214,0 +1707882474,214,0 +1707882474,214,0 +1707882475,214,0 +1707882475,214,0 +1707882476,213,0 +1707882476,213,0 +1707882477,213,0 +1707882477,213,0 +1707882478,213,0 +1707882478,214,0 +1707882479,214,0 +1707882479,214,0 +1707882480,213,0 +1707882480,214,0 +1707882481,214,0 +1707882481,214,0 +1707882482,214,0 +1707882482,214,0 +1707882483,214,0 +1707882483,214,0 +1707882484,214,0 +1707882484,214,0 +1707882484,214,0 +1707882485,213,0 +1707882485,213,0 +1707882486,213,0 +1707882486,214,0 +1707882487,214,0 +1707882487,214,0 +1707882488,214,0 +1707882488,214,0 +1707882489,214,0 +1707882489,214,0 +1707882490,214,0 +1707882490,214,0 +1707882491,214,0 +1707882491,214,0 +1707882492,214,0 +1707882492,214,0 +1707882493,214,0 +1707882493,213,0 +1707882494,213,0 +1707882494,213,0 +1707882495,213,0 +1707882495,213,0 +1707882496,213,0 +1707882496,213,0 +1707882497,214,0 +1707882497,213,0 +1707882498,214,0 +1707882498,214,0 +1707882499,214,0 +1707882499,214,0 +1707882500,214,0 +1707882500,214,0 +1707882500,214,0 +1707882501,214,0 +1707882501,214,0 +1707882502,213,0 +1707882502,213,0 +1707882503,213,0 +1707882503,213,0 +1707882504,213,0 +1707882504,213,0 +1707882505,213,0 +1707882505,213,0 +1707882506,213,0 +1707882506,213,0 +1707882507,213,0 +1707882507,213,0 +1707882508,213,0 +1707882508,213,0 +1707882509,214,0 +1707882509,213,0 +1707882510,214,0 +1707882510,214,0 +1707882511,213,0 +1707882511,213,0 +1707882512,213,0 +1707882512,213,0 +1707882513,213,0 +1707882513,213,0 +1707882514,213,0 +1707882514,213,0 +1707882515,213,0 +1707882515,213,0 +1707882515,213,0 +1707882516,213,0 +1707882516,213,0 +1707882517,213,0 +1707882517,214,0 +1707882518,213,0 +1707882518,213,0 +1707882519,213,0 +1707882519,214,0 +1707882520,214,0 +1707882520,214,0 +1707882521,214,0 +1707882521,214,0 +1707882522,214,0 +1707882522,214,0 +1707882523,214,0 +1707882523,214,0 +1707882524,214,0 +1707882524,213,0 +1707882525,213,0 +1707882525,213,0 +1707882526,213,0 +1707882526,213,0 +1707882527,213,0 +1707882527,213,0 +1707882528,213,0 +1707882528,214,0 +1707882529,213,0 +1707882529,214,0 +1707882530,214,0 +1707882530,214,0 +1707882530,214,0 +1707882531,214,0 +1707882531,214,0 +1707882532,214,0 +1707882532,214,0 +1707882533,213,0 +1707882533,213,0 +1707882534,213,0 +1707882534,213,0 +1707882535,213,0 +1707882535,214,0 +1707882536,213,0 +1707882536,214,0 +1707882537,213,0 +1707882537,214,0 +1707882538,214,0 +1707882538,214,0 +1707882539,214,0 +1707882539,214,0 +1707882540,214,0 +1707882540,214,0 +1707882541,214,0 +1707882541,214,0 +1707882542,213,0 +1707882542,213,0 +1707882543,213,0 +1707882543,213,0 +1707882544,214,0 +1707882544,213,0 +1707882545,214,0 +1707882545,214,0 +1707882546,214,0 +1707882546,214,0 +1707882547,214,0 +1707882547,214,0 +1707882548,214,0 +1707882548,214,0 +1707882549,214,0 +1707882549,214,0 +1707882549,214,0 +1707882550,214,0 +1707882550,213,0 +1707882551,213,0 +1707882551,213,0 +1707882552,214,0 +1707882552,213,0 +1707882553,214,0 +1707882553,214,0 +1707882554,214,0 +1707882554,214,0 +1707882555,214,0 +1707882555,214,0 +1707882556,214,0 +1707882556,214,0 +1707882557,214,0 +1707882557,214,0 +1707882558,214,0 +1707882558,214,0 +1707882559,214,0 +1707882559,214,0 +1707882560,213,0 +1707882560,213,0 +1707882561,213,0 +1707882561,213,0 +1707882562,213,0 +1707882562,213,0 +1707882563,213,0 +1707882563,214,0 +1707882564,214,0 +1707882564,214,0 +1707882565,215,0 +1707882565,214,0 +1707882566,214,0 +1707882566,214,0 +1707882566,214,0 +1707882567,214,0 +1707882567,214,0 +1707882568,213,0 +1707882568,213,0 +1707882569,213,0 +1707882569,213,0 +1707882570,213,0 +1707882570,213,0 +1707882571,213,0 +1707882571,213,0 +1707882572,213,0 +1707882572,214,0 +1707882573,214,0 +1707882573,214,0 +1707882574,213,0 +1707882574,214,0 +1707882575,214,0 +1707882575,214,0 +1707882576,214,0 +1707882576,214,0 +1707882577,213,0 +1707882577,213,0 +1707882578,213,0 +1707882578,213,0 +1707882579,213,0 +1707882579,213,0 +1707882580,213,0 +1707882580,214,0 +1707882581,214,0 +1707882581,214,0 +1707882582,214,0 +1707882582,214,0 +1707882583,214,0 +1707882583,214,0 +1707882583,214,0 +1707882584,214,0 +1707882584,214,0 +1707882585,214,0 +1707882585,214,0 +1707882586,213,0 +1707882586,213,0 +1707882587,213,0 +1707882587,213,0 +1707882588,213,0 +1707882588,213,0 +1707882589,213,0 +1707882589,213,0 +1707882590,213,0 +1707882590,213,0 +1707882591,213,0 +1707882591,214,0 +1707882592,214,0 +1707882592,214,0 +1707882593,214,0 +1707882593,214,0 +1707882594,214,0 +1707882594,214,0 +1707882595,213,0 +1707882595,213,0 +1707882596,213,0 +1707882596,213,0 +1707882596,213,0 +1707882597,213,0 +1707882597,213,0 +1707882598,213,0 +1707882598,213,0 +1707882599,213,0 +1707882599,214,0 +1707882600,214,0 +1707882600,214,0 +1707882601,214,0 +1707882601,214,0 +1707882602,214,0 +1707882602,214,0 +1707882603,214,0 +1707882603,213,0 +1707882604,213,0 +1707882604,213,0 +1707882605,213,0 +1707882605,213,0 +1707882606,213,0 +1707882606,213,0 +1707882607,213,0 +1707882607,213,0 +1707882608,213,0 +1707882608,213,0 +1707882609,214,0 +1707882609,214,0 +1707882610,214,0 +1707882610,214,0 +1707882611,214,0 +1707882611,214,0 +1707882611,214,0 +1707882612,213,0 +1707882612,213,0 +1707882613,213,0 +1707882613,213,0 +1707882614,213,0 +1707882614,213,0 +1707882615,213,0 +1707882615,213,0 +1707882616,213,0 +1707882616,213,0 +1707882617,213,0 +1707882617,213,0 +1707882618,213,0 +1707882618,213,0 +1707882619,213,0 +1707882619,213,0 +1707882620,214,0 +1707882620,214,0 +1707882621,213,0 +1707882621,213,0 +1707882622,213,0 +1707882622,213,0 +1707882623,213,0 +1707882623,213,0 +1707882624,213,0 +1707882624,213,0 +1707882625,213,0 +1707882625,213,0 +1707882625,213,0 +1707882626,214,0 +1707882626,213,0 +1707882627,214,0 +1707882627,214,0 +1707882628,214,0 +1707882628,214,0 +1707882629,214,0 +1707882629,214,0 +1707882630,213,0 +1707882630,213,0 +1707882631,213,0 +1707882631,213,0 +1707882632,213,0 +1707882632,213,0 +1707882633,213,0 +1707882633,213,0 +1707882634,214,0 +1707882634,214,0 +1707882635,214,0 +1707882635,214,0 +1707882636,214,0 +1707882636,214,0 +1707882637,214,0 +1707882637,214,0 +1707882638,214,0 +1707882638,214,0 +1707882638,213,0 +1707882639,213,0 +1707882639,213,0 +1707882640,213,0 +1707882640,213,0 +1707882641,214,0 +1707882641,214,0 +1707882642,214,0 +1707882642,214,0 +1707882643,213,0 +1707882643,214,0 +1707882644,214,0 +1707882644,214,0 +1707882645,214,0 +1707882645,214,0 +1707882646,214,0 +1707882646,214,0 +1707882647,214,0 +1707882647,214,0 +1707882648,213,0 +1707882648,213,0 +1707882649,214,0 +1707882649,214,0 +1707882650,214,0 +1707882650,214,0 +1707882651,214,0 +1707882651,214,0 +1707882652,214,0 +1707882652,214,0 +1707882652,214,0 +1707882653,214,0 +1707882653,214,0 +1707882654,214,0 +1707882654,214,0 +1707882655,214,0 +1707882655,214,0 +1707882656,214,0 +1707882656,213,0 +1707882657,213,0 +1707882657,213,0 +1707882658,213,0 +1707882658,213,0 +1707882659,213,0 +1707882659,214,0 +1707882660,214,0 +1707882660,214,0 +1707882661,214,0 +1707882661,214,0 +1707882662,214,0 +1707882662,214,0 +1707882663,214,0 +1707882663,214,0 +1707882664,214,0 +1707882664,214,0 +1707882665,214,0 +1707882665,213,0 +1707882665,213,0 +1707882666,213,0 +1707882666,213,0 +1707882667,213,0 +1707882667,213,0 +1707882668,213,0 +1707882668,213,0 +1707882669,214,0 +1707882669,213,0 +1707882670,214,0 +1707882670,214,0 +1707882671,214,0 +1707882671,214,0 +1707882672,214,0 +1707882672,214,0 +1707882673,214,0 +1707882673,214,0 +1707882674,213,0 +1707882674,213,0 +1707882675,213,0 +1707882675,213,0 +1707882676,213,0 +1707882676,213,0 +1707882677,213,0 +1707882677,213,0 +1707882678,214,0 +1707882678,213,0 +1707882679,214,0 +1707882679,214,0 +1707882680,214,0 +1707882680,214,0 +1707882680,214,0 +1707882681,214,0 +1707882681,214,0 +1707882682,214,0 +1707882682,213,0 +1707882683,213,0 +1707882683,213,0 +1707882684,213,0 +1707882684,213,0 +1707882685,213,0 +1707882685,213,0 +1707882686,213,0 +1707882686,214,0 +1707882687,214,0 +1707882687,214,0 +1707882688,214,0 +1707882688,214,0 +1707882689,214,0 +1707882689,214,0 +1707882690,214,0 +1707882690,214,0 +1707882691,214,0 +1707882691,214,0 +1707882692,213,0 +1707882692,213,0 +1707882693,213,0 +1707882693,213,0 +1707882694,213,0 +1707882694,213,0 +1707882694,213,0 +1707882695,214,0 +1707882695,214,0 +1707882696,214,0 +1707882696,214,0 +1707882697,214,0 +1707882697,214,0 +1707882698,214,0 +1707882698,214,0 +1707882699,214,0 +1707882699,214,0 +1707882700,214,0 +1707882700,213,0 +1707882701,213,0 +1707882701,213,0 +1707882702,213,0 +1707882702,214,0 +1707882703,213,0 +1707882703,213,0 +1707882704,214,0 +1707882704,213,0 +1707882705,214,0 +1707882705,214,0 +1707882706,214,0 +1707882706,214,0 +1707882707,214,0 +1707882707,214,0 +1707882708,214,0 +1707882708,214,0 +1707882709,214,0 +1707882709,213,0 +1707882709,213,0 +1707882710,213,0 +1707882710,213,0 +1707882711,213,0 +1707882711,213,0 +1707882712,213,0 +1707882712,214,0 +1707882713,214,0 +1707882713,214,0 +1707882714,214,0 +1707882714,214,0 +1707882715,214,0 +1707882715,214,0 +1707882716,214,0 +1707882716,214,0 +1707882717,214,0 +1707882717,214,0 +1707882718,213,0 +1707882718,213,0 +1707882719,213,0 +1707882719,213,0 +1707882720,213,0 +1707882720,213,0 +1707882721,213,0 +1707882721,213,0 +1707882722,214,0 +1707882722,214,0 +1707882723,214,0 +1707882723,214,0 +1707882724,214,0 +1707882724,214,0 +1707882725,214,0 +1707882725,214,0 +1707882726,214,0 +1707882726,214,0 +1707882727,213,0 +1707882727,213,0 +1707882727,213,0 +1707882728,213,0 +1707882728,213,0 +1707882729,213,0 +1707882729,213,0 +1707882730,213,0 +1707882730,214,0 +1707882731,214,0 +1707882731,214,0 +1707882732,214,0 +1707882732,214,0 +1707882733,214,0 +1707882733,214,0 +1707882734,214,0 +1707882734,214,0 +1707882735,214,0 +1707882735,213,0 +1707882736,213,0 +1707882736,213,0 +1707882737,213,0 +1707882737,213,0 +1707882738,214,0 +1707882738,214,0 +1707882739,213,0 +1707882739,214,0 +1707882740,214,0 +1707882740,214,0 +1707882741,214,0 +1707882741,214,0 +1707882742,214,0 +1707882742,214,0 +1707882742,214,0 +1707882743,214,0 +1707882743,214,0 +1707882744,213,0 +1707882744,213,0 +1707882745,213,0 +1707882745,213,0 +1707882746,213,0 +1707882746,213,0 +1707882747,213,0 +1707882747,213,0 +1707882748,213,0 +1707882748,213,0 +1707882749,214,0 +1707882749,214,0 +1707882750,214,0 +1707882750,214,0 +1707882751,214,0 +1707882751,214,0 +1707882752,214,0 +1707882752,214,0 +1707882753,214,0 +1707882753,213,0 +1707882754,213,0 +1707882754,213,0 +1707882755,213,0 +1707882755,213,0 +1707882756,213,0 +1707882756,213,0 +1707882757,213,0 +1707882757,213,0 +1707882758,213,0 +1707882758,213,0 +1707882758,213,0 +1707882759,214,0 +1707882759,214,0 +1707882760,214,0 +1707882760,214,0 +1707882761,214,0 +1707882761,214,0 +1707882762,213,0 +1707882762,213,0 +1707882763,213,0 +1707882763,213,0 +1707882764,213,0 +1707882764,213,0 +1707882765,213,0 +1707882765,213,0 +1707882766,213,0 +1707882766,213,0 +1707882767,213,0 +1707882767,213,0 +1707882768,213,0 +1707882768,214,0 +1707882769,214,0 +1707882769,214,0 +1707882770,214,0 +1707882770,214,0 +1707882771,213,0 +1707882771,213,0 +1707882771,213,0 +1707882772,213,0 +1707882772,213,0 +1707882773,213,0 +1707882773,213,0 +1707882774,213,0 +1707882774,213,0 +1707882775,213,0 +1707882775,213,0 +1707882776,213,0 +1707882776,214,0 +1707882777,214,0 +1707882777,214,0 +1707882778,214,0 +1707882778,214,0 +1707882779,214,0 +1707882779,213,0 +1707882780,213,0 +1707882780,213,0 +1707882781,213,0 +1707882781,213,0 +1707882782,213,0 +1707882782,213,0 +1707882783,213,0 +1707882783,213,0 +1707882784,213,0 +1707882784,213,0 +1707882784,213,0 +1707882785,213,0 +1707882785,214,0 +1707882786,213,0 +1707882786,214,0 +1707882787,214,0 +1707882787,213,0 +1707882788,214,0 +1707882788,213,0 +1707882789,213,0 +1707882789,213,0 +1707882790,213,0 +1707882790,213,0 +1707882791,213,0 +1707882791,213,0 +1707882792,213,0 +1707882792,213,0 +1707882793,213,0 +1707882793,214,0 +1707882794,214,0 +1707882794,214,0 +1707882795,214,0 +1707882795,214,0 +1707882796,214,0 +1707882796,214,0 +1707882797,214,0 +1707882797,213,0 +1707882798,213,0 +1707882798,213,0 +1707882799,213,0 +1707882799,213,0 +1707882799,213,0 +1707882800,214,0 +1707882800,213,0 +1707882801,214,0 +1707882801,214,0 +1707882802,214,0 +1707882802,214,0 +1707882803,214,0 +1707882803,214,0 +1707882804,214,0 +1707882804,214,0 +1707882805,214,0 +1707882805,214,0 +1707882806,214,0 +1707882806,214,0 +1707882807,214,0 +1707882807,214,0 +1707882808,214,0 +1707882808,214,0 +1707882809,214,0 +1707882809,214,0 +1707882810,214,0 +1707882810,214,0 +1707882811,214,0 +1707882811,214,0 +1707882811,214,0 +1707882812,214,0 +1707882812,214,0 +1707882813,214,0 +1707882813,214,0 +1707882814,214,0 +1707882814,214,0 +1707882815,214,0 +1707882815,214,0 +1707882816,214,0 +1707882816,214,0 +1707882817,214,0 +1707882817,214,0 +1707882818,214,0 +1707882818,214,0 +1707882819,214,0 +1707882819,214,0 +1707882820,214,0 +1707882820,214,0 +1707882821,214,0 +1707882821,214,0 +1707882822,214,0 +1707882822,214,0 +1707882823,214,0 +1707882823,214,0 +1707882824,214,0 +1707882824,214,0 +1707882825,213,0 +1707882825,213,0 +1707882825,214,0 +1707882826,214,0 +1707882826,214,0 +1707882827,214,0 +1707882827,214,0 +1707882828,214,0 +1707882828,214,0 +1707882829,214,0 +1707882829,214,0 +1707882830,214,0 +1707882830,214,0 +1707882831,214,0 +1707882831,214,0 +1707882832,214,0 +1707882832,213,0 +1707882833,213,0 +1707882833,213,0 +1707882834,213,0 +1707882834,213,0 +1707882835,214,0 +1707882835,214,0 +1707882836,214,0 +1707882836,214,0 +1707882837,214,0 +1707882837,214,0 +1707882837,214,0 +1707882838,214,0 +1707882838,214,0 +1707882839,214,0 +1707882839,214,0 +1707882840,214,0 +1707882840,214,0 +1707882841,213,0 +1707882841,213,0 +1707882842,213,0 +1707882842,213,0 +1707882843,213,0 +1707882843,213,0 +1707882844,213,0 +1707882844,213,0 +1707882845,213,0 +1707882845,213,0 +1707882846,214,0 +1707882846,214,0 +1707882847,214,0 +1707882847,214,0 +1707882848,214,0 +1707882848,214,0 +1707882849,214,0 +1707882849,214,0 +1707882850,213,0 +1707882850,213,0 +1707882851,213,0 +1707882851,213,0 +1707882851,213,0 +1707882852,213,0 +1707882852,213,0 +1707882853,213,0 +1707882853,213,0 +1707882854,213,0 +1707882854,214,0 +1707882855,214,0 +1707882855,214,0 +1707882856,214,0 +1707882856,214,0 +1707882857,214,0 +1707882857,214,0 +1707882858,214,0 +1707882858,213,0 +1707882859,213,0 +1707882859,213,0 +1707882860,213,0 +1707882860,213,0 +1707882861,213,0 +1707882861,213,0 +1707882862,213,0 +1707882862,213,0 +1707882863,213,0 +1707882863,214,0 +1707882864,213,0 +1707882864,213,0 +1707882865,213,0 +1707882865,214,0 +1707882866,214,0 +1707882866,214,0 +1707882866,214,0 +1707882867,213,0 +1707882867,213,0 +1707882868,213,0 +1707882868,213,0 +1707882869,213,0 +1707882869,213,0 +1707882870,213,0 +1707882870,213,0 +1707882871,213,0 +1707882871,214,0 +1707882872,213,0 +1707882872,214,0 +1707882873,214,0 +1707882873,214,0 +1707882874,214,0 +1707882874,214,0 +1707882875,214,0 +1707882875,214,0 +1707882876,214,0 +1707882876,213,0 +1707882877,213,0 +1707882877,213,0 +1707882878,213,0 +1707882878,213,0 +1707882879,213,0 +1707882879,213,0 +1707882880,213,0 +1707882880,213,0 +1707882881,213,0 +1707882881,213,0 +1707882882,214,0 +1707882882,213,0 +1707882882,214,0 +1707882883,214,0 +1707882883,214,0 +1707882884,214,0 +1707882884,214,0 +1707882885,213,0 +1707882885,213,0 +1707882886,213,0 +1707882886,213,0 +1707882887,213,0 +1707882887,213,0 +1707882888,213,0 +1707882888,213,0 +1707882889,213,0 +1707882889,213,0 +1707882890,213,0 +1707882890,213,0 +1707882891,213,0 +1707882891,213,0 +1707882892,213,0 +1707882892,214,0 +1707882893,214,0 +1707882893,214,0 +1707882894,213,0 +1707882894,213,0 +1707882895,213,0 +1707882895,213,0 +1707882896,213,0 +1707882896,213,0 +1707882896,213,0 +1707882897,213,0 +1707882897,213,0 +1707882898,213,0 +1707882898,214,0 +1707882899,214,0 +1707882899,214,0 +1707882900,214,0 +1707882900,214,0 +1707882901,214,0 +1707882901,214,0 +1707882902,214,0 +1707882902,213,0 +1707882903,213,0 +1707882903,213,0 +1707882904,213,0 +1707882904,213,0 +1707882905,213,0 +1707882905,213,0 +1707882906,213,0 +1707882906,213,0 +1707882907,213,0 +1707882907,214,0 +1707882908,214,0 +1707882908,214,0 +1707882909,214,0 +1707882909,214,0 +1707882910,214,0 +1707882910,214,0 +1707882911,214,0 +1707882911,213,0 +1707882912,213,0 +1707882912,213,0 +1707882913,213,0 +1707882913,213,0 +1707882913,213,0 +1707882914,213,0 +1707882914,214,0 +1707882915,213,0 +1707882915,214,0 +1707882916,214,0 +1707882916,214,0 +1707882917,214,0 +1707882917,214,0 +1707882918,214,0 +1707882918,214,0 +1707882919,214,0 +1707882919,214,0 +1707882920,214,0 +1707882920,213,0 +1707882921,213,0 +1707882921,213,0 +1707882922,213,0 +1707882922,213,0 +1707882923,213,0 +1707882923,213,0 +1707882924,213,0 +1707882924,213,0 +1707882925,214,0 +1707882925,214,0 +1707882925,214,0 +1707882926,214,0 +1707882926,214,0 +1707882927,214,0 +1707882927,214,0 +1707882928,215,0 +1707882928,214,0 +1707882929,213,0 +1707882929,213,0 +1707882930,213,0 +1707882930,213,0 +1707882931,213,0 +1707882931,213,0 +1707882932,213,0 +1707882932,213,0 +1707882933,214,0 +1707882933,213,0 +1707882934,214,0 +1707882934,214,0 +1707882935,214,0 +1707882935,214,0 +1707882936,214,0 +1707882936,214,0 +1707882937,214,0 +1707882937,214,0 +1707882938,213,0 +1707882938,213,0 +1707882939,213,0 +1707882939,213,0 +1707882940,213,0 +1707882940,214,0 +1707882941,214,0 +1707882941,214,0 +1707882941,214,0 +1707882942,214,0 +1707882942,214,0 +1707882943,214,0 +1707882943,214,0 +1707882944,214,0 +1707882944,214,0 +1707882945,214,0 +1707882945,214,0 +1707882946,214,0 +1707882946,213,0 +1707882947,213,0 +1707882947,213,0 +1707882948,213,0 +1707882948,213,0 +1707882949,213,0 +1707882949,213,0 +1707882950,214,0 +1707882950,214,0 +1707882951,214,0 +1707882951,214,0 +1707882952,214,0 +1707882952,214,0 +1707882953,214,0 +1707882953,214,0 +1707882954,214,0 +1707882954,214,0 +1707882955,214,0 +1707882955,213,0 +1707882956,213,0 +1707882956,213,0 +1707882956,213,0 +1707882957,214,0 +1707882957,213,0 +1707882958,214,0 +1707882958,214,0 +1707882959,214,0 +1707882959,214,0 +1707882960,214,0 +1707882960,214,0 +1707882961,214,0 +1707882961,214,0 +1707882962,214,0 +1707882962,214,0 +1707882963,214,0 +1707882963,214,0 +1707882964,214,0 +1707882964,214,0 +1707882965,214,0 +1707882965,214,0 +1707882966,214,0 +1707882966,214,0 +1707882967,214,0 +1707882967,214,0 +1707882968,214,0 +1707882968,214,0 +1707882969,214,0 +1707882969,214,0 +1707882970,214,0 +1707882970,214,0 +1707882970,214,0 +1707882971,214,0 +1707882971,214,0 +1707882972,214,0 +1707882972,214,0 +1707882973,214,0 +1707882973,214,0 +1707882974,214,0 +1707882974,214,0 +1707882975,214,0 +1707882975,214,0 +1707882976,214,0 +1707882976,214,0 +1707882977,214,0 +1707882977,214,0 +1707882978,214,0 +1707882978,214,0 +1707882979,214,0 +1707882979,214,0 +1707882980,214,0 +1707882980,214,0 +1707882981,214,0 +1707882981,214,0 +1707882982,214,0 +1707882982,214,0 +1707882983,214,0 +1707882983,214,0 +1707882984,214,0 +1707882984,213,0 +1707882985,214,0 +1707882985,214,0 +1707882985,214,0 +1707882986,214,0 +1707882986,214,0 +1707882987,214,0 +1707882987,214,0 +1707882988,214,0 +1707882988,214,0 +1707882989,214,0 +1707882989,214,0 +1707882990,214,0 +1707882990,213,0 +1707882991,213,0 +1707882991,213,0 +1707882992,213,0 +1707882992,213,0 +1707882993,213,0 +1707882993,213,0 +1707882994,213,0 +1707882994,213,0 +1707882995,214,0 +1707882995,214,0 +1707882996,214,0 +1707882996,214,0 +1707882997,214,0 +1707882997,214,0 +1707882998,214,0 +1707882998,214,0 +1707882999,214,0 +1707882999,213,0 +1707882999,213,0 +1707883000,213,0 +1707883000,213,0 +1707883001,213,0 +1707883001,213,0 +1707883002,213,0 +1707883002,213,0 +1707883003,213,0 +1707883003,213,0 +1707883004,214,0 +1707883004,214,0 +1707883005,214,0 +1707883005,214,0 +1707883006,214,0 +1707883006,214,0 +1707883007,214,0 +1707883007,214,0 +1707883008,213,0 +1707883008,213,0 +1707883009,213,0 +1707883009,213,0 +1707883010,213,0 +1707883010,213,0 +1707883011,213,0 +1707883011,213,0 +1707883012,213,0 +1707883012,213,0 +1707883013,213,0 +1707883013,214,0 +1707883013,213,0 +1707883014,214,0 +1707883014,214,0 +1707883015,214,0 +1707883015,214,0 +1707883016,214,0 +1707883016,213,0 +1707883017,213,0 +1707883017,213,0 +1707883018,213,0 +1707883018,213,0 +1707883019,213,0 +1707883019,213,0 +1707883020,213,0 +1707883020,213,0 +1707883021,213,0 +1707883021,214,0 +1707883022,214,0 +1707883022,214,0 +1707883023,214,0 +1707883023,214,0 +1707883024,214,0 +1707883024,214,0 +1707883025,214,0 +1707883025,213,0 +1707883026,213,0 +1707883026,213,0 +1707883027,213,0 +1707883027,213,0 +1707883027,213,0 +1707883028,213,0 +1707883028,213,0 +1707883029,213,0 +1707883029,213,0 +1707883030,213,0 +1707883030,214,0 +1707883031,214,0 +1707883031,214,0 +1707883032,214,0 +1707883032,214,0 +1707883033,214,0 +1707883033,214,0 +1707883034,214,0 +1707883034,213,0 +1707883035,213,0 +1707883035,213,0 +1707883036,213,0 +1707883036,213,0 +1707883037,213,0 +1707883037,213,0 +1707883038,213,0 +1707883038,213,0 +1707883039,213,0 +1707883039,213,0 +1707883040,213,0 +1707883040,214,0 +1707883041,214,0 +1707883041,214,0 +1707883042,213,0 +1707883042,214,0 +1707883043,214,0 +1707883043,213,0 +1707883043,213,0 +1707883044,213,0 +1707883044,213,0 +1707883045,213,0 +1707883045,213,0 +1707883046,213,0 +1707883046,213,0 +1707883047,213,0 +1707883047,213,0 +1707883048,214,0 +1707883048,213,0 +1707883049,214,0 +1707883049,213,0 +1707883050,214,0 +1707883050,214,0 +1707883051,214,0 +1707883051,214,0 +1707883052,213,0 +1707883052,213,0 +1707883053,213,0 +1707883053,213,0 +1707883054,213,0 +1707883054,213,0 +1707883055,213,0 +1707883055,213,0 +1707883056,213,0 +1707883056,213,0 +1707883057,214,0 +1707883057,214,0 +1707883058,214,0 +1707883058,214,0 +1707883058,214,0 +1707883059,214,0 +1707883059,214,0 +1707883060,214,0 +1707883060,213,0 +1707883061,213,0 +1707883061,213,0 +1707883062,213,0 +1707883062,213,0 +1707883063,213,0 +1707883063,213,0 +1707883064,214,0 +1707883064,214,0 +1707883065,213,0 +1707883065,214,0 +1707883066,214,0 +1707883066,214,0 +1707883067,214,0 +1707883067,214,0 +1707883068,214,0 +1707883068,214,0 +1707883069,214,0 +1707883069,213,0 +1707883070,213,0 +1707883070,213,0 +1707883071,213,0 +1707883071,213,0 +1707883072,213,0 +1707883072,213,0 +1707883073,213,0 +1707883073,213,0 +1707883074,213,0 +1707883074,214,0 +1707883074,214,0 +1707883075,214,0 +1707883075,214,0 +1707883076,214,0 +1707883076,214,0 +1707883077,214,0 +1707883077,214,0 +1707883078,213,0 +1707883078,213,0 +1707883079,213,0 +1707883079,213,0 +1707883080,213,0 +1707883080,213,0 +1707883081,213,0 +1707883081,214,0 +1707883082,214,0 +1707883082,214,0 +1707883083,214,0 +1707883083,214,0 +1707883084,214,0 +1707883084,214,0 +1707883085,214,0 +1707883085,214,0 +1707883086,214,0 +1707883086,214,0 +1707883087,213,0 +1707883087,213,0 +1707883088,213,0 +1707883088,213,0 +1707883089,213,0 +1707883089,213,0 +1707883089,213,0 +1707883090,214,0 +1707883090,213,0 +1707883091,214,0 +1707883091,214,0 +1707883092,214,0 +1707883092,214,0 +1707883093,214,0 +1707883093,214,0 +1707883094,214,0 +1707883094,214,0 +1707883095,214,0 +1707883095,214,0 +1707883096,213,0 +1707883096,213,0 +1707883097,213,0 +1707883097,213,0 +1707883098,213,0 +1707883098,213,0 +1707883099,213,0 +1707883099,214,0 +1707883100,213,0 +1707883100,213,0 +1707883101,213,0 +1707883101,214,0 +1707883102,214,0 +1707883102,214,0 +1707883103,214,0 +1707883103,214,0 +1707883104,214,0 +1707883104,214,0 +1707883105,213,0 +1707883105,213,0 +1707883105,213,0 +1707883106,213,0 +1707883106,213,0 +1707883107,213,0 +1707883107,213,0 +1707883108,213,0 +1707883108,213,0 +1707883109,213,0 +1707883109,213,0 +1707883110,213,0 +1707883110,214,0 +1707883111,214,0 +1707883111,214,0 +1707883112,214,0 +1707883112,214,0 +1707883113,214,0 +1707883113,213,0 +1707883114,213,0 +1707883114,213,0 +1707883115,213,0 +1707883115,213,0 +1707883116,213,0 +1707883116,213,0 +1707883117,213,0 +1707883117,214,0 +1707883118,213,0 +1707883118,214,0 +1707883119,214,0 +1707883119,214,0 +1707883119,214,0 +1707883120,214,0 +1707883120,214,0 +1707883121,214,0 +1707883121,214,0 +1707883122,213,0 +1707883122,213,0 +1707883123,213,0 +1707883123,213,0 +1707883124,214,0 +1707883124,213,0 +1707883125,214,0 +1707883125,214,0 +1707883126,214,0 +1707883126,214,0 +1707883127,214,0 +1707883127,214,0 +1707883128,214,0 +1707883128,214,0 +1707883129,214,0 +1707883129,214,0 +1707883130,214,0 +1707883130,214,0 +1707883131,214,0 +1707883131,214,0 +1707883132,213,0 +1707883132,213,0 +1707883133,213,0 +1707883133,214,0 +1707883134,214,0 +1707883134,214,0 +1707883135,214,0 +1707883135,214,0 +1707883136,214,0 +1707883136,214,0 +1707883137,214,0 +1707883137,214,0 +1707883137,214,0 +1707883138,214,0 +1707883138,214,0 +1707883139,214,0 +1707883139,213,0 +1707883140,214,0 +1707883140,213,0 +1707883141,214,0 +1707883141,214,0 +1707883142,214,0 +1707883142,214,0 +1707883143,214,0 +1707883143,214,0 +1707883144,214,0 +1707883144,214,0 +1707883145,214,0 +1707883145,214,0 +1707883146,214,0 +1707883146,214,0 +1707883147,214,0 +1707883147,214,0 +1707883148,214,0 +1707883148,213,0 +1707883149,213,0 +1707883149,213,0 +1707883150,213,0 +1707883150,213,0 +1707883151,214,0 +1707883151,214,0 +1707883152,214,0 +1707883152,214,0 +1707883153,214,0 +1707883153,214,0 +1707883153,214,0 +1707883154,214,0 +1707883154,214,0 +1707883155,214,0 +1707883155,214,0 +1707883156,214,0 +1707883156,214,0 +1707883157,213,0 +1707883157,213,0 +1707883158,213,0 +1707883158,213,0 +1707883159,213,0 +1707883159,213,0 +1707883160,213,0 +1707883160,213,0 +1707883161,213,0 +1707883161,213,0 +1707883162,214,0 +1707883162,214,0 +1707883163,213,0 +1707883163,214,0 +1707883164,214,0 +1707883164,214,0 +1707883165,214,0 +1707883165,214,0 +1707883166,214,0 +1707883166,213,0 +1707883167,213,0 +1707883167,213,0 +1707883168,213,0 +1707883168,213,0 +1707883168,213,0 +1707883169,213,0 +1707883169,214,0 +1707883170,213,0 +1707883170,213,0 +1707883171,214,0 +1707883171,214,0 +1707883172,214,0 +1707883172,214,0 +1707883173,214,0 +1707883173,214,0 +1707883174,214,0 +1707883174,214,0 +1707883175,213,0 +1707883175,213,0 +1707883176,213,0 +1707883176,213,0 +1707883177,213,0 +1707883177,213,0 +1707883178,213,0 +1707883178,213,0 +1707883179,213,0 +1707883179,213,0 +1707883180,214,0 +1707883180,214,0 +1707883181,214,0 +1707883181,214,0 +1707883182,214,0 +1707883182,214,0 +1707883182,214,0 +1707883183,214,0 +1707883183,213,0 +1707883184,213,0 +1707883184,213,0 +1707883185,213,0 +1707883185,213,0 +1707883186,213,0 +1707883186,213,0 +1707883187,213,0 +1707883187,213,0 +1707883188,213,0 +1707883188,213,0 +1707883189,213,0 +1707883189,214,0 +1707883190,214,0 +1707883190,214,0 +1707883191,214,0 +1707883191,214,0 +1707883192,214,0 +1707883192,213,0 +1707883193,213,0 +1707883193,213,0 +1707883194,213,0 +1707883194,213,0 +1707883195,213,0 +1707883195,213,0 +1707883196,213,0 +1707883196,214,0 +1707883197,213,0 +1707883197,213,0 +1707883198,214,0 +1707883198,214,0 +1707883199,214,0 +1707883199,214,0 +1707883200,214,0 diff --git a/laser_value/0214-14.csv b/laser_value/0214-14.csv new file mode 100644 index 0000000..2196025 --- /dev/null +++ b/laser_value/0214-14.csv @@ -0,0 +1,7446 @@ +timestamp,laser_value,event +1707883200,214,0 +1707883200,214,0 +1707883201,213,0 +1707883201,213,0 +1707883202,213,0 +1707883202,213,0 +1707883203,213,0 +1707883203,213,0 +1707883204,213,0 +1707883204,213,0 +1707883205,214,0 +1707883205,214,0 +1707883206,214,0 +1707883206,214,0 +1707883207,214,0 +1707883207,214,0 +1707883208,214,0 +1707883208,214,0 +1707883209,214,0 +1707883209,214,0 +1707883210,213,0 +1707883210,213,0 +1707883211,213,0 +1707883211,213,0 +1707883212,213,0 +1707883212,213,0 +1707883213,213,0 +1707883213,213,0 +1707883214,214,0 +1707883214,214,0 +1707883214,214,0 +1707883215,214,0 +1707883215,214,0 +1707883216,214,0 +1707883216,214,0 +1707883217,214,0 +1707883217,214,0 +1707883218,214,0 +1707883218,213,0 +1707883219,213,0 +1707883219,213,0 +1707883220,213,0 +1707883220,213,0 +1707883221,213,0 +1707883221,214,0 +1707883222,213,0 +1707883222,213,0 +1707883223,213,0 +1707883223,214,0 +1707883224,214,0 +1707883224,214,0 +1707883225,214,0 +1707883225,214,0 +1707883226,214,0 +1707883226,214,0 +1707883227,214,0 +1707883227,214,0 +1707883228,213,0 +1707883228,213,0 +1707883229,213,0 +1707883229,213,0 +1707883229,214,0 +1707883230,213,0 +1707883230,213,0 +1707883231,214,0 +1707883231,214,0 +1707883232,214,0 +1707883232,214,0 +1707883233,214,0 +1707883233,214,0 +1707883234,214,0 +1707883234,214,0 +1707883235,214,0 +1707883235,214,0 +1707883236,214,0 +1707883236,213,0 +1707883237,213,0 +1707883237,213,0 +1707883238,213,0 +1707883238,213,0 +1707883239,213,0 +1707883239,213,0 +1707883240,213,0 +1707883240,213,0 +1707883241,214,0 +1707883241,213,0 +1707883242,214,0 +1707883242,214,0 +1707883243,214,0 +1707883243,214,0 +1707883244,214,0 +1707883244,214,0 +1707883245,213,0 +1707883245,213,0 +1707883245,213,0 +1707883246,213,0 +1707883246,213,0 +1707883247,213,0 +1707883247,213,0 +1707883248,214,0 +1707883248,213,0 +1707883249,214,0 +1707883249,214,0 +1707883250,214,0 +1707883250,214,0 +1707883251,214,0 +1707883251,214,0 +1707883252,214,0 +1707883252,214,0 +1707883253,214,0 +1707883253,214,0 +1707883254,213,0 +1707883254,213,0 +1707883255,213,0 +1707883255,213,0 +1707883256,213,0 +1707883256,213,0 +1707883257,213,0 +1707883257,213,0 +1707883258,214,0 +1707883258,213,0 +1707883259,214,0 +1707883259,214,0 +1707883260,214,0 +1707883260,214,0 +1707883260,214,0 +1707883261,214,0 +1707883261,214,0 +1707883262,214,0 +1707883262,213,0 +1707883263,213,0 +1707883263,213,0 +1707883264,213,0 +1707883264,213,0 +1707883265,213,0 +1707883265,213,0 +1707883266,213,0 +1707883266,213,0 +1707883267,214,0 +1707883267,213,0 +1707883268,214,0 +1707883268,214,0 +1707883269,214,0 +1707883269,214,0 +1707883270,214,0 +1707883270,214,0 +1707883271,214,0 +1707883271,213,0 +1707883272,213,0 +1707883272,213,0 +1707883273,213,0 +1707883273,213,0 +1707883274,213,0 +1707883274,213,0 +1707883275,213,0 +1707883275,213,0 +1707883275,213,0 +1707883276,213,0 +1707883276,214,0 +1707883277,214,0 +1707883277,214,0 +1707883278,214,0 +1707883278,214,0 +1707883279,214,0 +1707883279,213,0 +1707883280,213,0 +1707883280,213,0 +1707883281,213,0 +1707883281,213,0 +1707883282,213,0 +1707883282,213,0 +1707883283,213,0 +1707883283,213,0 +1707883284,213,0 +1707883284,213,0 +1707883285,213,0 +1707883285,214,0 +1707883286,214,0 +1707883286,214,0 +1707883287,214,0 +1707883287,214,0 +1707883288,214,0 +1707883288,214,0 +1707883289,213,0 +1707883289,213,0 +1707883290,213,0 +1707883290,213,0 +1707883291,213,0 +1707883291,213,0 +1707883292,214,0 +1707883292,214,0 +1707883293,214,0 +1707883293,214,0 +1707883293,214,0 +1707883294,214,0 +1707883294,214,0 +1707883295,214,0 +1707883295,214,0 +1707883296,214,0 +1707883296,214,0 +1707883297,214,0 +1707883297,213,0 +1707883298,213,0 +1707883298,213,0 +1707883299,213,0 +1707883299,214,0 +1707883300,214,0 +1707883300,214,0 +1707883301,214,0 +1707883301,214,0 +1707883302,214,0 +1707883302,214,0 +1707883303,214,0 +1707883303,214,0 +1707883304,214,0 +1707883304,214,0 +1707883305,214,0 +1707883305,214,0 +1707883306,214,0 +1707883306,213,0 +1707883307,213,0 +1707883307,213,0 +1707883307,213,0 +1707883308,213,0 +1707883308,213,0 +1707883309,213,0 +1707883309,214,0 +1707883310,213,0 +1707883310,214,0 +1707883311,213,0 +1707883311,214,0 +1707883312,214,0 +1707883312,214,0 +1707883313,214,0 +1707883313,214,0 +1707883314,214,0 +1707883314,214,0 +1707883315,214,0 +1707883315,213,0 +1707883316,213,0 +1707883316,213,0 +1707883317,213,0 +1707883317,213,0 +1707883318,213,0 +1707883318,213,0 +1707883319,213,0 +1707883319,214,0 +1707883319,214,0 +1707883320,214,0 +1707883320,214,0 +1707883321,214,0 +1707883321,214,0 +1707883322,214,0 +1707883322,214,0 +1707883323,214,0 +1707883323,214,0 +1707883324,213,0 +1707883324,213,0 +1707883325,213,0 +1707883325,213,0 +1707883326,213,0 +1707883326,213,0 +1707883327,213,0 +1707883327,213,0 +1707883328,213,0 +1707883328,214,0 +1707883329,214,0 +1707883329,214,0 +1707883330,214,0 +1707883330,214,0 +1707883331,214,0 +1707883331,214,0 +1707883332,214,0 +1707883332,214,0 +1707883333,213,0 +1707883333,213,0 +1707883334,213,0 +1707883334,213,0 +1707883335,213,0 +1707883335,213,0 +1707883336,213,0 +1707883336,213,0 +1707883337,213,0 +1707883337,213,0 +1707883338,213,0 +1707883338,214,0 +1707883338,214,0 +1707883339,214,0 +1707883339,214,0 +1707883340,214,0 +1707883340,214,0 +1707883341,214,0 +1707883341,213,0 +1707883342,213,0 +1707883342,213,0 +1707883343,213,0 +1707883343,213,0 +1707883344,214,0 +1707883344,213,0 +1707883345,214,0 +1707883345,213,0 +1707883346,214,0 +1707883346,214,0 +1707883347,214,0 +1707883347,214,0 +1707883348,214,0 +1707883348,214,0 +1707883349,214,0 +1707883349,214,0 +1707883350,214,0 +1707883350,213,0 +1707883351,213,0 +1707883351,214,0 +1707883351,213,0 +1707883352,213,0 +1707883352,214,0 +1707883353,214,0 +1707883353,214,0 +1707883354,214,0 +1707883354,214,0 +1707883355,214,0 +1707883355,214,0 +1707883356,214,0 +1707883356,214,0 +1707883357,214,0 +1707883357,214,0 +1707883358,214,0 +1707883358,214,0 +1707883359,213,0 +1707883359,213,0 +1707883360,213,0 +1707883360,213,0 +1707883361,214,0 +1707883361,214,0 +1707883362,214,0 +1707883362,214,0 +1707883363,214,0 +1707883363,214,0 +1707883364,214,0 +1707883364,214,0 +1707883364,214,0 +1707883365,214,0 +1707883365,214,0 +1707883366,214,0 +1707883366,214,0 +1707883367,214,0 +1707883367,213,0 +1707883368,213,0 +1707883368,213,0 +1707883369,213,0 +1707883369,214,0 +1707883370,214,0 +1707883370,214,0 +1707883371,214,0 +1707883371,214,0 +1707883372,214,0 +1707883372,214,0 +1707883373,214,0 +1707883373,214,0 +1707883374,214,0 +1707883374,214,0 +1707883375,214,0 +1707883375,214,0 +1707883376,214,0 +1707883376,213,0 +1707883377,213,0 +1707883377,213,0 +1707883378,213,0 +1707883378,213,0 +1707883378,213,0 +1707883379,213,0 +1707883379,214,0 +1707883380,214,0 +1707883380,214,0 +1707883381,214,0 +1707883381,214,0 +1707883382,214,0 +1707883382,214,0 +1707883383,214,0 +1707883383,214,0 +1707883384,214,0 +1707883384,214,0 +1707883385,214,0 +1707883385,213,0 +1707883386,213,0 +1707883386,213,0 +1707883387,213,0 +1707883387,213,0 +1707883388,213,0 +1707883388,213,0 +1707883389,213,0 +1707883389,214,0 +1707883390,214,0 +1707883390,214,0 +1707883390,214,0 +1707883391,214,0 +1707883391,214,0 +1707883392,214,0 +1707883392,214,0 +1707883393,214,0 +1707883393,214,0 +1707883394,213,0 +1707883394,213,0 +1707883395,213,0 +1707883395,213,0 +1707883396,213,0 +1707883396,213,0 +1707883397,214,0 +1707883397,214,0 +1707883398,214,0 +1707883398,214,0 +1707883399,214,0 +1707883399,214,0 +1707883400,214,0 +1707883400,214,0 +1707883401,214,0 +1707883401,214,0 +1707883402,214,0 +1707883402,214,0 +1707883403,213,0 +1707883403,213,0 +1707883404,213,0 +1707883404,213,0 +1707883405,213,0 +1707883405,214,0 +1707883406,213,0 +1707883406,214,0 +1707883406,214,0 +1707883407,214,0 +1707883407,214,0 +1707883408,214,0 +1707883408,214,0 +1707883409,214,0 +1707883409,214,0 +1707883410,214,0 +1707883410,214,0 +1707883411,214,0 +1707883411,213,0 +1707883412,213,0 +1707883412,213,0 +1707883413,213,0 +1707883413,213,0 +1707883414,213,0 +1707883414,213,0 +1707883415,214,0 +1707883415,214,0 +1707883416,213,0 +1707883416,214,0 +1707883417,214,0 +1707883417,214,0 +1707883418,214,0 +1707883418,214,0 +1707883419,214,0 +1707883419,214,0 +1707883419,214,0 +1707883420,213,0 +1707883420,213,0 +1707883421,213,0 +1707883421,213,0 +1707883422,213,0 +1707883422,213,0 +1707883423,213,0 +1707883423,213,0 +1707883424,213,0 +1707883424,213,0 +1707883425,213,0 +1707883425,214,0 +1707883426,214,0 +1707883426,214,0 +1707883427,214,0 +1707883427,214,0 +1707883428,214,0 +1707883428,214,0 +1707883429,213,0 +1707883429,213,0 +1707883430,213,0 +1707883430,213,0 +1707883431,213,0 +1707883431,213,0 +1707883431,213,0 +1707883432,213,0 +1707883432,213,0 +1707883433,214,0 +1707883433,213,0 +1707883434,214,0 +1707883434,214,0 +1707883435,214,0 +1707883435,214,0 +1707883436,214,0 +1707883436,214,0 +1707883437,214,0 +1707883437,213,0 +1707883438,213,0 +1707883438,213,0 +1707883439,213,0 +1707883439,213,0 +1707883440,213,0 +1707883440,213,0 +1707883441,213,0 +1707883441,213,0 +1707883442,213,0 +1707883442,214,0 +1707883443,214,0 +1707883443,214,0 +1707883444,214,0 +1707883444,214,0 +1707883444,214,0 +1707883445,214,0 +1707883445,214,0 +1707883446,213,0 +1707883446,213,0 +1707883447,213,0 +1707883447,213,0 +1707883448,213,0 +1707883448,213,0 +1707883449,214,0 +1707883449,213,0 +1707883450,214,0 +1707883450,214,0 +1707883451,214,0 +1707883451,214,0 +1707883452,214,0 +1707883452,214,0 +1707883453,214,0 +1707883453,214,0 +1707883454,214,0 +1707883454,214,0 +1707883455,214,0 +1707883455,214,0 +1707883456,214,0 +1707883456,214,0 +1707883457,214,0 +1707883457,214,0 +1707883457,214,0 +1707883458,214,0 +1707883458,214,0 +1707883459,214,0 +1707883459,214,0 +1707883460,214,0 +1707883460,214,0 +1707883461,214,0 +1707883461,214,0 +1707883462,214,0 +1707883462,214,0 +1707883463,214,0 +1707883463,214,0 +1707883464,214,0 +1707883464,214,0 +1707883465,214,0 +1707883465,214,0 +1707883466,214,0 +1707883466,214,0 +1707883467,214,0 +1707883467,214,0 +1707883468,214,0 +1707883468,214,0 +1707883469,214,0 +1707883469,214,0 +1707883470,214,0 +1707883470,214,0 +1707883471,214,0 +1707883471,214,0 +1707883471,214,0 +1707883472,214,0 +1707883472,214,0 +1707883473,214,0 +1707883473,213,0 +1707883474,214,0 +1707883474,213,0 +1707883475,214,0 +1707883475,214,0 +1707883476,214,0 +1707883476,214,0 +1707883477,214,0 +1707883477,214,0 +1707883478,214,0 +1707883478,214,0 +1707883479,214,0 +1707883479,214,0 +1707883480,214,0 +1707883480,214,0 +1707883481,214,0 +1707883481,213,0 +1707883482,213,0 +1707883482,213,0 +1707883483,213,0 +1707883483,213,0 +1707883483,214,0 +1707883484,214,0 +1707883484,214,0 +1707883485,214,0 +1707883485,214,0 +1707883486,214,0 +1707883486,214,0 +1707883487,214,0 +1707883487,214,0 +1707883488,214,0 +1707883488,214,0 +1707883489,214,0 +1707883489,214,0 +1707883490,213,0 +1707883490,213,0 +1707883491,213,0 +1707883491,213,0 +1707883492,213,0 +1707883492,213,0 +1707883493,214,0 +1707883493,214,0 +1707883494,214,0 +1707883494,214,0 +1707883495,214,0 +1707883495,214,0 +1707883496,214,0 +1707883496,214,0 +1707883497,214,0 +1707883497,214,0 +1707883498,214,0 +1707883498,214,0 +1707883498,213,0 +1707883499,213,0 +1707883499,213,0 +1707883500,213,0 +1707883500,214,0 +1707883501,214,0 +1707883501,214,0 +1707883502,214,0 +1707883502,214,0 +1707883503,214,0 +1707883503,214,0 +1707883504,214,0 +1707883504,214,0 +1707883505,214,0 +1707883505,214,0 +1707883506,214,0 +1707883506,214,0 +1707883507,214,0 +1707883507,213,0 +1707883508,213,0 +1707883508,213,0 +1707883509,213,0 +1707883509,213,0 +1707883510,213,0 +1707883510,213,0 +1707883511,213,0 +1707883511,214,0 +1707883512,214,0 +1707883512,214,0 +1707883513,214,0 +1707883513,214,0 +1707883514,214,0 +1707883514,214,0 +1707883514,214,0 +1707883515,214,0 +1707883515,214,0 +1707883516,213,0 +1707883516,213,0 +1707883517,213,0 +1707883517,213,0 +1707883518,213,0 +1707883518,213,0 +1707883519,213,0 +1707883519,214,0 +1707883520,213,0 +1707883520,214,0 +1707883521,214,0 +1707883521,214,0 +1707883522,214,0 +1707883522,214,0 +1707883523,214,0 +1707883523,214,0 +1707883524,214,0 +1707883524,214,0 +1707883525,213,0 +1707883525,213,0 +1707883526,213,0 +1707883526,213,0 +1707883527,213,0 +1707883527,213,0 +1707883528,213,0 +1707883528,214,0 +1707883529,213,0 +1707883529,214,0 +1707883530,214,0 +1707883530,214,0 +1707883530,214,0 +1707883531,214,0 +1707883531,214,0 +1707883532,214,0 +1707883532,214,0 +1707883533,214,0 +1707883533,213,0 +1707883534,213,0 +1707883534,213,0 +1707883535,213,0 +1707883535,213,0 +1707883536,213,0 +1707883536,213,0 +1707883537,213,0 +1707883537,213,0 +1707883538,213,0 +1707883538,213,0 +1707883539,213,0 +1707883539,214,0 +1707883540,214,0 +1707883540,214,0 +1707883541,214,0 +1707883541,214,0 +1707883542,214,0 +1707883542,213,0 +1707883542,213,0 +1707883543,213,0 +1707883543,213,0 +1707883544,213,0 +1707883544,213,0 +1707883545,213,0 +1707883545,213,0 +1707883546,213,0 +1707883546,214,0 +1707883547,213,0 +1707883547,214,0 +1707883548,214,0 +1707883548,214,0 +1707883549,214,0 +1707883549,214,0 +1707883550,214,0 +1707883550,214,0 +1707883551,213,0 +1707883551,213,0 +1707883552,213,0 +1707883552,213,0 +1707883553,213,0 +1707883553,213,0 +1707883554,213,0 +1707883554,213,0 +1707883554,213,0 +1707883555,214,0 +1707883555,214,0 +1707883556,214,0 +1707883556,214,0 +1707883557,214,0 +1707883557,214,0 +1707883558,214,0 +1707883558,214,0 +1707883559,214,0 +1707883559,213,0 +1707883560,213,0 +1707883560,213,0 +1707883561,213,0 +1707883561,213,0 +1707883562,213,0 +1707883562,213,0 +1707883563,213,0 +1707883563,213,0 +1707883564,213,0 +1707883564,214,0 +1707883565,214,0 +1707883565,214,0 +1707883566,214,0 +1707883566,214,0 +1707883567,214,0 +1707883567,214,0 +1707883567,214,0 +1707883568,213,0 +1707883568,213,0 +1707883569,213,0 +1707883569,213,0 +1707883570,213,0 +1707883570,213,0 +1707883571,213,0 +1707883571,213,0 +1707883572,213,0 +1707883572,214,0 +1707883573,214,0 +1707883573,213,0 +1707883574,214,0 +1707883574,214,0 +1707883575,214,0 +1707883575,214,0 +1707883576,214,0 +1707883576,214,0 +1707883577,213,0 +1707883577,213,0 +1707883578,213,0 +1707883578,213,0 +1707883579,213,0 +1707883579,213,0 +1707883580,213,0 +1707883580,214,0 +1707883581,214,0 +1707883581,214,0 +1707883582,214,0 +1707883582,214,0 +1707883582,214,0 +1707883583,214,0 +1707883583,214,0 +1707883584,214,0 +1707883584,214,0 +1707883585,214,0 +1707883585,213,0 +1707883586,213,0 +1707883586,213,0 +1707883587,213,0 +1707883587,214,0 +1707883588,213,0 +1707883588,214,0 +1707883589,214,0 +1707883589,214,0 +1707883590,214,0 +1707883590,214,0 +1707883591,214,0 +1707883591,214,0 +1707883592,214,0 +1707883592,214,0 +1707883593,214,0 +1707883593,214,0 +1707883594,214,0 +1707883594,213,0 +1707883595,213,0 +1707883595,213,0 +1707883596,213,0 +1707883596,213,0 +1707883597,213,0 +1707883597,214,0 +1707883597,213,0 +1707883598,214,0 +1707883598,214,0 +1707883599,213,0 +1707883599,214,0 +1707883600,214,0 +1707883600,214,0 +1707883601,214,0 +1707883601,214,0 +1707883602,214,0 +1707883602,214,0 +1707883603,213,0 +1707883603,213,0 +1707883604,214,0 +1707883604,214,0 +1707883605,214,0 +1707883605,214,0 +1707883606,213,0 +1707883606,214,0 +1707883607,214,0 +1707883607,214,0 +1707883608,214,0 +1707883608,214,0 +1707883609,214,0 +1707883609,214,0 +1707883610,214,0 +1707883610,214,0 +1707883611,214,0 +1707883611,214,0 +1707883612,214,0 +1707883612,214,0 +1707883613,214,0 +1707883613,214,0 +1707883613,214,0 +1707883614,214,0 +1707883614,214,0 +1707883615,214,0 +1707883615,214,0 +1707883616,214,0 +1707883616,214,0 +1707883617,214,0 +1707883617,214,0 +1707883618,214,0 +1707883618,214,0 +1707883619,214,0 +1707883619,214,0 +1707883620,214,0 +1707883620,214,0 +1707883621,214,0 +1707883621,214,0 +1707883622,214,0 +1707883622,214,0 +1707883623,214,0 +1707883623,214,0 +1707883624,214,0 +1707883624,214,0 +1707883624,214,0 +1707883625,214,0 +1707883625,214,0 +1707883626,214,0 +1707883626,214,0 +1707883627,215,0 +1707883627,214,0 +1707883628,214,0 +1707883628,213,0 +1707883629,213,0 +1707883629,213,0 +1707883630,214,0 +1707883630,213,0 +1707883631,214,0 +1707883631,214,0 +1707883632,214,0 +1707883632,214,0 +1707883633,214,0 +1707883633,214,0 +1707883634,214,0 +1707883634,214,0 +1707883635,214,0 +1707883635,214,0 +1707883636,214,0 +1707883636,214,0 +1707883637,214,0 +1707883637,213,0 +1707883637,213,0 +1707883638,213,0 +1707883638,213,0 +1707883639,213,0 +1707883639,213,0 +1707883640,214,0 +1707883640,214,0 +1707883641,214,0 +1707883641,214,0 +1707883642,214,0 +1707883642,214,0 +1707883643,214,0 +1707883643,214,0 +1707883644,214,0 +1707883644,214,0 +1707883645,214,0 +1707883645,213,0 +1707883646,213,0 +1707883646,213,0 +1707883647,213,0 +1707883647,213,0 +1707883648,213,0 +1707883648,213,0 +1707883648,213,0 +1707883649,214,0 +1707883649,213,0 +1707883650,214,0 +1707883650,214,0 +1707883651,214,0 +1707883651,214,0 +1707883652,214,0 +1707883652,214,0 +1707883653,214,0 +1707883653,214,0 +1707883654,213,0 +1707883654,213,0 +1707883655,213,0 +1707883655,213,0 +1707883656,213,0 +1707883656,213,0 +1707883657,213,0 +1707883657,213,0 +1707883658,213,0 +1707883658,213,0 +1707883659,214,0 +1707883659,214,0 +1707883660,214,0 +1707883660,214,0 +1707883660,214,0 +1707883661,214,0 +1707883661,214,0 +1707883662,214,0 +1707883662,213,0 +1707883663,213,0 +1707883663,213,0 +1707883664,213,0 +1707883664,213,0 +1707883665,213,0 +1707883665,213,0 +1707883666,213,0 +1707883666,214,0 +1707883667,213,0 +1707883667,214,0 +1707883668,214,0 +1707883668,214,0 +1707883669,214,0 +1707883669,214,0 +1707883670,214,0 +1707883670,214,0 +1707883671,214,0 +1707883671,213,0 +1707883672,213,0 +1707883672,213,0 +1707883673,213,0 +1707883673,213,0 +1707883673,214,0 +1707883674,214,0 +1707883674,213,0 +1707883675,214,0 +1707883675,213,0 +1707883676,214,0 +1707883676,214,0 +1707883677,214,0 +1707883677,214,0 +1707883678,214,0 +1707883678,214,0 +1707883679,214,0 +1707883679,213,0 +1707883680,213,0 +1707883680,213,0 +1707883681,213,0 +1707883681,213,0 +1707883682,213,0 +1707883682,213,0 +1707883683,213,0 +1707883683,213,0 +1707883684,213,0 +1707883684,213,0 +1707883685,213,0 +1707883685,214,0 +1707883685,214,0 +1707883686,213,0 +1707883686,214,0 +1707883687,214,0 +1707883687,214,0 +1707883688,213,0 +1707883688,213,0 +1707883689,213,0 +1707883689,213,0 +1707883690,213,0 +1707883690,213,0 +1707883691,213,0 +1707883691,213,0 +1707883692,213,0 +1707883692,213,0 +1707883693,213,0 +1707883693,214,0 +1707883694,214,0 +1707883694,213,0 +1707883695,214,0 +1707883695,214,0 +1707883696,214,0 +1707883696,213,0 +1707883696,213,0 +1707883697,213,0 +1707883697,213,0 +1707883698,213,0 +1707883698,213,0 +1707883699,213,0 +1707883699,213,0 +1707883700,213,0 +1707883700,213,0 +1707883701,213,0 +1707883701,213,0 +1707883702,213,0 +1707883702,213,0 +1707883703,213,0 +1707883703,214,0 +1707883704,214,0 +1707883704,214,0 +1707883705,214,0 +1707883705,213,0 +1707883706,213,0 +1707883706,213,0 +1707883707,213,0 +1707883707,213,0 +1707883708,213,0 +1707883708,213,0 +1707883708,213,0 +1707883709,214,0 +1707883709,214,0 +1707883710,214,0 +1707883710,214,0 +1707883711,214,0 +1707883711,214,0 +1707883712,214,0 +1707883712,214,0 +1707883713,214,0 +1707883713,213,0 +1707883714,213,0 +1707883714,213,0 +1707883715,213,0 +1707883715,213,0 +1707883716,213,0 +1707883716,213,0 +1707883717,213,0 +1707883717,213,0 +1707883718,213,0 +1707883718,214,0 +1707883719,214,0 +1707883719,214,0 +1707883720,214,0 +1707883720,214,0 +1707883721,214,0 +1707883721,214,0 +1707883722,214,0 +1707883722,213,0 +1707883722,213,0 +1707883723,213,0 +1707883723,213,0 +1707883724,213,0 +1707883724,213,0 +1707883725,214,0 +1707883725,214,0 +1707883726,214,0 +1707883726,214,0 +1707883727,214,0 +1707883727,214,0 +1707883728,214,0 +1707883728,214,0 +1707883729,214,0 +1707883729,214,0 +1707883730,214,0 +1707883730,214,0 +1707883731,213,0 +1707883731,213,0 +1707883732,213,0 +1707883732,213,0 +1707883733,213,0 +1707883733,213,0 +1707883734,213,0 +1707883734,214,0 +1707883735,214,0 +1707883735,214,0 +1707883736,214,0 +1707883736,214,0 +1707883737,214,0 +1707883737,214,0 +1707883737,214,0 +1707883738,214,0 +1707883738,214,0 +1707883739,213,0 +1707883739,213,0 +1707883740,213,0 +1707883740,213,0 +1707883741,213,0 +1707883741,214,0 +1707883742,214,0 +1707883742,214,0 +1707883743,214,0 +1707883743,214,0 +1707883744,214,0 +1707883744,214,0 +1707883745,214,0 +1707883745,214,0 +1707883746,214,0 +1707883746,214,0 +1707883747,214,0 +1707883747,214,0 +1707883748,213,0 +1707883748,213,0 +1707883749,213,0 +1707883749,213,0 +1707883750,213,0 +1707883750,214,0 +1707883751,214,0 +1707883751,214,0 +1707883751,214,0 +1707883752,214,0 +1707883752,214,0 +1707883753,214,0 +1707883753,214,0 +1707883754,214,0 +1707883754,214,0 +1707883755,214,0 +1707883755,214,0 +1707883756,214,0 +1707883756,214,0 +1707883757,214,0 +1707883757,214,0 +1707883758,214,0 +1707883758,214,0 +1707883759,214,0 +1707883759,214,0 +1707883760,214,0 +1707883760,214,0 +1707883761,214,0 +1707883761,214,0 +1707883762,214,0 +1707883762,214,0 +1707883763,214,0 +1707883763,214,0 +1707883764,214,0 +1707883764,214,0 +1707883765,214,0 +1707883765,214,0 +1707883766,214,0 +1707883766,214,0 +1707883767,214,0 +1707883767,214,0 +1707883767,214,0 +1707883768,214,0 +1707883768,214,0 +1707883769,214,0 +1707883769,214,0 +1707883770,214,0 +1707883770,214,0 +1707883771,214,0 +1707883771,214,0 +1707883772,214,0 +1707883772,214,0 +1707883773,214,0 +1707883773,213,0 +1707883774,213,0 +1707883774,214,0 +1707883775,214,0 +1707883775,214,0 +1707883776,214,0 +1707883776,214,0 +1707883777,214,0 +1707883777,214,0 +1707883778,214,0 +1707883778,214,0 +1707883779,214,0 +1707883779,214,0 +1707883780,214,0 +1707883780,214,0 +1707883781,214,0 +1707883781,214,0 +1707883781,214,0 +1707883782,213,0 +1707883782,214,0 +1707883783,213,0 +1707883783,214,0 +1707883784,214,0 +1707883784,214,0 +1707883785,214,0 +1707883785,214,0 +1707883786,214,0 +1707883786,214,0 +1707883787,214,0 +1707883787,214,0 +1707883788,214,0 +1707883788,214,0 +1707883789,214,0 +1707883789,214,0 +1707883790,214,0 +1707883790,213,0 +1707883791,213,0 +1707883791,213,0 +1707883792,213,0 +1707883792,213,0 +1707883793,214,0 +1707883793,213,0 +1707883794,214,0 +1707883794,214,0 +1707883795,214,0 +1707883795,214,0 +1707883796,214,0 +1707883796,214,0 +1707883797,214,0 +1707883797,214,0 +1707883798,214,0 +1707883798,214,0 +1707883798,213,0 +1707883799,213,0 +1707883799,213,0 +1707883800,213,0 +1707883800,213,0 +1707883801,213,0 +1707883801,214,0 +1707883802,213,0 +1707883802,214,0 +1707883803,214,0 +1707883803,213,0 +1707883804,214,0 +1707883804,214,0 +1707883805,214,0 +1707883805,214,0 +1707883806,214,0 +1707883806,214,0 +1707883807,214,0 +1707883807,213,0 +1707883808,213,0 +1707883808,213,0 +1707883809,213,0 +1707883809,213,0 +1707883810,213,0 +1707883810,213,0 +1707883811,214,0 +1707883811,214,0 +1707883812,214,0 +1707883812,214,0 +1707883813,214,0 +1707883813,214,0 +1707883814,214,0 +1707883814,214,0 +1707883814,214,0 +1707883815,214,0 +1707883815,213,0 +1707883816,213,0 +1707883816,213,0 +1707883817,213,0 +1707883817,213,0 +1707883818,213,0 +1707883818,213,0 +1707883819,213,0 +1707883819,213,0 +1707883820,214,0 +1707883820,214,0 +1707883821,214,0 +1707883821,214,0 +1707883822,214,0 +1707883822,214,0 +1707883823,214,0 +1707883823,214,0 +1707883824,214,0 +1707883824,213,0 +1707883825,213,0 +1707883825,213,0 +1707883826,213,0 +1707883826,213,0 +1707883827,213,0 +1707883827,213,0 +1707883828,213,0 +1707883828,213,0 +1707883829,213,0 +1707883829,214,0 +1707883830,214,0 +1707883830,214,0 +1707883830,214,0 +1707883831,214,0 +1707883831,214,0 +1707883832,214,0 +1707883832,214,0 +1707883833,213,0 +1707883833,213,0 +1707883834,213,0 +1707883834,213,0 +1707883835,213,0 +1707883835,213,0 +1707883836,213,0 +1707883836,213,0 +1707883837,213,0 +1707883837,213,0 +1707883838,214,0 +1707883838,214,0 +1707883839,214,0 +1707883839,214,0 +1707883840,214,0 +1707883840,214,0 +1707883841,214,0 +1707883841,213,0 +1707883842,213,0 +1707883842,213,0 +1707883843,213,0 +1707883843,213,0 +1707883844,213,0 +1707883844,213,0 +1707883845,213,0 +1707883845,214,0 +1707883846,213,0 +1707883846,214,0 +1707883847,214,0 +1707883847,214,0 +1707883847,214,0 +1707883848,214,0 +1707883848,214,0 +1707883849,214,0 +1707883849,214,0 +1707883850,213,0 +1707883850,213,0 +1707883851,213,0 +1707883851,213,0 +1707883852,213,0 +1707883852,213,0 +1707883853,214,0 +1707883853,214,0 +1707883854,214,0 +1707883854,214,0 +1707883855,214,0 +1707883855,214,0 +1707883856,214,0 +1707883856,214,0 +1707883857,214,0 +1707883857,214,0 +1707883858,214,0 +1707883858,213,0 +1707883859,213,0 +1707883859,213,0 +1707883860,214,0 +1707883860,214,0 +1707883861,213,0 +1707883861,214,0 +1707883861,214,0 +1707883862,214,0 +1707883862,214,0 +1707883863,214,0 +1707883863,214,0 +1707883864,214,0 +1707883864,214,0 +1707883865,214,0 +1707883865,214,0 +1707883866,214,0 +1707883866,214,0 +1707883867,213,0 +1707883867,213,0 +1707883868,213,0 +1707883868,213,0 +1707883869,213,0 +1707883869,214,0 +1707883870,214,0 +1707883870,214,0 +1707883871,214,0 +1707883871,214,0 +1707883872,214,0 +1707883872,214,0 +1707883873,214,0 +1707883873,214,0 +1707883874,214,0 +1707883874,214,0 +1707883875,214,0 +1707883875,213,0 +1707883876,213,0 +1707883876,213,0 +1707883877,213,0 +1707883877,213,0 +1707883877,213,0 +1707883878,213,0 +1707883878,213,0 +1707883879,214,0 +1707883879,214,0 +1707883880,214,0 +1707883880,214,0 +1707883881,214,0 +1707883881,214,0 +1707883882,214,0 +1707883882,214,0 +1707883883,214,0 +1707883883,214,0 +1707883884,213,0 +1707883884,213,0 +1707883885,213,0 +1707883885,213,0 +1707883886,213,0 +1707883886,213,0 +1707883887,213,0 +1707883887,213,0 +1707883888,214,0 +1707883888,213,0 +1707883889,214,0 +1707883889,214,0 +1707883890,214,0 +1707883890,214,0 +1707883891,214,0 +1707883891,214,0 +1707883892,214,0 +1707883892,214,0 +1707883892,213,0 +1707883893,213,0 +1707883893,213,0 +1707883894,213,0 +1707883894,213,0 +1707883895,213,0 +1707883895,214,0 +1707883896,214,0 +1707883896,213,0 +1707883897,213,0 +1707883897,214,0 +1707883898,214,0 +1707883898,214,0 +1707883899,214,0 +1707883899,214,0 +1707883900,214,0 +1707883900,214,0 +1707883901,213,0 +1707883901,213,0 +1707883902,213,0 +1707883902,213,0 +1707883903,213,0 +1707883903,214,0 +1707883904,214,0 +1707883904,214,0 +1707883905,214,0 +1707883905,214,0 +1707883906,214,0 +1707883906,214,0 +1707883907,214,0 +1707883907,214,0 +1707883908,214,0 +1707883908,214,0 +1707883909,214,0 +1707883909,214,0 +1707883910,213,0 +1707883910,213,0 +1707883910,213,0 +1707883911,214,0 +1707883911,214,0 +1707883912,214,0 +1707883912,214,0 +1707883913,214,0 +1707883913,214,0 +1707883914,214,0 +1707883914,214,0 +1707883915,214,0 +1707883915,214,0 +1707883916,214,0 +1707883916,214,0 +1707883917,214,0 +1707883917,214,0 +1707883918,213,0 +1707883918,213,0 +1707883919,213,0 +1707883919,213,0 +1707883920,213,0 +1707883920,214,0 +1707883921,213,0 +1707883921,214,0 +1707883922,214,0 +1707883922,214,0 +1707883923,214,0 +1707883923,214,0 +1707883923,214,0 +1707883924,214,0 +1707883924,214,0 +1707883925,214,0 +1707883925,214,0 +1707883926,214,0 +1707883926,213,0 +1707883927,213,0 +1707883927,213,0 +1707883928,213,0 +1707883928,213,0 +1707883929,213,0 +1707883929,213,0 +1707883930,213,0 +1707883930,214,0 +1707883931,214,0 +1707883931,214,0 +1707883932,214,0 +1707883932,214,0 +1707883933,214,0 +1707883933,214,0 +1707883934,214,0 +1707883934,214,0 +1707883935,214,0 +1707883935,213,0 +1707883935,213,0 +1707883936,213,0 +1707883936,213,0 +1707883937,213,0 +1707883937,213,0 +1707883938,213,0 +1707883938,213,0 +1707883939,213,0 +1707883939,213,0 +1707883940,213,0 +1707883940,214,0 +1707883941,213,0 +1707883941,213,0 +1707883942,213,0 +1707883942,214,0 +1707883943,214,0 +1707883943,213,0 +1707883944,213,0 +1707883944,213,0 +1707883945,213,0 +1707883945,213,0 +1707883946,213,0 +1707883946,213,0 +1707883947,213,0 +1707883947,213,0 +1707883948,213,0 +1707883948,213,0 +1707883948,214,0 +1707883949,214,0 +1707883949,214,0 +1707883950,214,0 +1707883950,214,0 +1707883951,214,0 +1707883951,214,0 +1707883952,213,0 +1707883952,213,0 +1707883953,213,0 +1707883953,213,0 +1707883954,213,0 +1707883954,213,0 +1707883955,213,0 +1707883955,213,0 +1707883956,213,0 +1707883956,213,0 +1707883957,214,0 +1707883957,214,0 +1707883958,214,0 +1707883958,214,0 +1707883959,214,0 +1707883959,214,0 +1707883960,214,0 +1707883960,214,0 +1707883960,213,0 +1707883961,213,0 +1707883961,213,0 +1707883962,213,0 +1707883962,213,0 +1707883963,213,0 +1707883963,213,0 +1707883964,214,0 +1707883964,214,0 +1707883965,214,0 +1707883965,213,0 +1707883966,214,0 +1707883966,214,0 +1707883967,214,0 +1707883967,214,0 +1707883968,214,0 +1707883968,214,0 +1707883969,214,0 +1707883969,214,0 +1707883970,214,0 +1707883970,214,0 +1707883971,214,0 +1707883971,214,0 +1707883972,214,0 +1707883972,214,0 +1707883973,214,0 +1707883973,213,0 +1707883974,214,0 +1707883974,214,0 +1707883975,214,0 +1707883975,214,0 +1707883976,214,0 +1707883976,214,0 +1707883977,213,0 +1707883977,214,0 +1707883977,214,0 +1707883978,214,0 +1707883978,214,0 +1707883979,214,0 +1707883979,214,0 +1707883980,214,0 +1707883980,214,0 +1707883981,214,0 +1707883981,214,0 +1707883982,213,0 +1707883982,213,0 +1707883983,214,0 +1707883983,214,0 +1707883984,214,0 +1707883984,214,0 +1707883985,214,0 +1707883985,214,0 +1707883986,214,0 +1707883986,214,0 +1707883987,214,0 +1707883987,214,0 +1707883988,214,0 +1707883988,214,0 +1707883989,214,0 +1707883989,214,0 +1707883989,214,0 +1707883990,214,0 +1707883990,213,0 +1707883991,213,0 +1707883991,213,0 +1707883992,213,0 +1707883992,214,0 +1707883993,214,0 +1707883993,214,0 +1707883994,214,0 +1707883994,214,0 +1707883995,214,0 +1707883995,214,0 +1707883996,214,0 +1707883996,214,0 +1707883997,214,0 +1707883997,214,0 +1707883998,214,0 +1707883998,214,0 +1707883999,214,0 +1707883999,213,0 +1707884000,213,0 +1707884000,213,0 +1707884001,213,0 +1707884001,214,0 +1707884002,214,0 +1707884002,214,0 +1707884002,214,0 +1707884003,214,0 +1707884003,214,0 +1707884004,214,0 +1707884004,214,0 +1707884005,214,0 +1707884005,214,0 +1707884006,214,0 +1707884006,214,0 +1707884007,214,0 +1707884007,213,0 +1707884008,213,0 +1707884008,213,0 +1707884009,213,0 +1707884009,213,0 +1707884010,213,0 +1707884010,214,0 +1707884011,213,0 +1707884011,214,0 +1707884012,214,0 +1707884012,214,0 +1707884013,214,0 +1707884013,214,0 +1707884014,214,0 +1707884014,214,0 +1707884015,214,0 +1707884015,214,0 +1707884016,213,0 +1707884016,213,0 +1707884017,213,0 +1707884017,213,0 +1707884017,213,0 +1707884018,213,0 +1707884018,213,0 +1707884019,213,0 +1707884019,213,0 +1707884020,214,0 +1707884020,214,0 +1707884021,214,0 +1707884021,214,0 +1707884022,214,0 +1707884022,214,0 +1707884023,214,0 +1707884023,214,0 +1707884024,214,0 +1707884024,213,0 +1707884025,213,0 +1707884025,213,0 +1707884026,213,0 +1707884026,213,0 +1707884027,213,0 +1707884027,213,0 +1707884028,213,0 +1707884028,213,0 +1707884029,213,0 +1707884029,214,0 +1707884030,214,0 +1707884030,214,0 +1707884031,214,0 +1707884031,214,0 +1707884032,214,0 +1707884032,214,0 +1707884033,213,0 +1707884033,213,0 +1707884034,213,0 +1707884034,213,0 +1707884034,213,0 +1707884035,213,0 +1707884035,213,0 +1707884036,213,0 +1707884036,213,0 +1707884037,214,0 +1707884037,214,0 +1707884038,214,0 +1707884038,214,0 +1707884039,214,0 +1707884039,214,0 +1707884040,214,0 +1707884040,214,0 +1707884041,214,0 +1707884041,213,0 +1707884042,213,0 +1707884042,213,0 +1707884043,213,0 +1707884043,213,0 +1707884044,213,0 +1707884044,213,0 +1707884045,213,0 +1707884045,214,0 +1707884046,214,0 +1707884046,214,0 +1707884047,214,0 +1707884047,214,0 +1707884048,214,0 +1707884048,214,0 +1707884049,214,0 +1707884049,214,0 +1707884050,213,0 +1707884050,213,0 +1707884051,213,0 +1707884051,213,0 +1707884052,214,0 +1707884052,214,0 +1707884053,213,0 +1707884053,214,0 +1707884053,214,0 +1707884054,214,0 +1707884054,214,0 +1707884055,214,0 +1707884055,214,0 +1707884056,214,0 +1707884056,214,0 +1707884057,214,0 +1707884057,214,0 +1707884058,214,0 +1707884058,214,0 +1707884059,214,0 +1707884059,213,0 +1707884060,213,0 +1707884060,214,0 +1707884061,214,0 +1707884061,214,0 +1707884062,214,0 +1707884062,214,0 +1707884063,214,0 +1707884063,214,0 +1707884064,214,0 +1707884064,214,0 +1707884065,214,0 +1707884065,214,0 +1707884066,214,0 +1707884066,214,0 +1707884067,213,0 +1707884067,213,0 +1707884068,213,0 +1707884068,214,0 +1707884068,213,0 +1707884069,213,0 +1707884069,213,0 +1707884070,214,0 +1707884070,214,0 +1707884071,214,0 +1707884071,214,0 +1707884072,214,0 +1707884072,214,0 +1707884073,214,0 +1707884073,214,0 +1707884074,214,0 +1707884074,214,0 +1707884075,214,0 +1707884075,213,0 +1707884076,213,0 +1707884076,213,0 +1707884077,214,0 +1707884077,214,0 +1707884078,213,0 +1707884078,213,0 +1707884079,213,0 +1707884079,214,0 +1707884080,214,0 +1707884080,214,0 +1707884081,214,0 +1707884081,214,0 +1707884082,214,0 +1707884082,214,0 +1707884083,214,0 +1707884083,214,0 +1707884084,213,0 +1707884084,213,0 +1707884084,213,0 +1707884085,213,0 +1707884085,214,0 +1707884086,213,0 +1707884086,213,0 +1707884087,213,0 +1707884087,213,0 +1707884088,214,0 +1707884088,214,0 +1707884089,214,0 +1707884089,214,0 +1707884090,214,0 +1707884090,214,0 +1707884091,214,0 +1707884091,214,0 +1707884092,214,0 +1707884092,213,0 +1707884093,213,0 +1707884093,213,0 +1707884094,213,0 +1707884094,213,0 +1707884095,213,0 +1707884095,214,0 +1707884096,214,0 +1707884096,214,0 +1707884097,214,0 +1707884097,214,0 +1707884098,214,0 +1707884098,214,0 +1707884099,214,0 +1707884099,214,0 +1707884100,214,0 +1707884100,214,0 +1707884100,213,0 +1707884101,213,0 +1707884101,213,0 +1707884102,213,0 +1707884102,214,0 +1707884103,213,0 +1707884103,214,0 +1707884104,214,0 +1707884104,214,0 +1707884105,214,0 +1707884105,214,0 +1707884106,214,0 +1707884106,214,0 +1707884107,214,0 +1707884107,214,0 +1707884108,214,0 +1707884108,214,0 +1707884109,213,0 +1707884109,213,0 +1707884110,213,0 +1707884110,213,0 +1707884111,213,0 +1707884111,213,0 +1707884112,213,0 +1707884112,213,0 +1707884113,214,0 +1707884113,214,0 +1707884114,214,0 +1707884114,214,0 +1707884115,214,0 +1707884115,214,0 +1707884115,214,0 +1707884116,214,0 +1707884116,214,0 +1707884117,214,0 +1707884117,214,0 +1707884118,213,0 +1707884118,213,0 +1707884119,213,0 +1707884119,213,0 +1707884120,213,0 +1707884120,213,0 +1707884121,213,0 +1707884121,214,0 +1707884122,214,0 +1707884122,214,0 +1707884123,213,0 +1707884123,214,0 +1707884124,214,0 +1707884124,214,0 +1707884125,214,0 +1707884125,214,0 +1707884126,214,0 +1707884126,213,0 +1707884127,213,0 +1707884127,213,0 +1707884128,213,0 +1707884128,213,0 +1707884129,214,0 +1707884129,213,0 +1707884130,214,0 +1707884130,214,0 +1707884131,214,0 +1707884131,214,0 +1707884132,214,0 +1707884132,214,0 +1707884133,214,0 +1707884133,214,0 +1707884133,214,0 +1707884134,214,0 +1707884134,214,0 +1707884135,213,0 +1707884135,213,0 +1707884136,213,0 +1707884136,213,0 +1707884137,213,0 +1707884137,213,0 +1707884138,213,0 +1707884138,214,0 +1707884139,214,0 +1707884139,214,0 +1707884140,214,0 +1707884140,214,0 +1707884141,214,0 +1707884141,214,0 +1707884142,214,0 +1707884142,214,0 +1707884143,214,0 +1707884143,213,0 +1707884144,213,0 +1707884144,213,0 +1707884145,213,0 +1707884145,213,0 +1707884146,213,0 +1707884146,213,0 +1707884147,213,0 +1707884147,213,0 +1707884147,214,0 +1707884148,214,0 +1707884148,214,0 +1707884149,214,0 +1707884149,214,0 +1707884150,214,0 +1707884150,214,0 +1707884151,214,0 +1707884151,214,0 +1707884152,213,0 +1707884152,213,0 +1707884153,213,0 +1707884153,213,0 +1707884154,213,0 +1707884154,213,0 +1707884155,214,0 +1707884155,214,0 +1707884156,214,0 +1707884156,214,0 +1707884157,214,0 +1707884157,214,0 +1707884158,214,0 +1707884158,214,0 +1707884159,214,0 +1707884159,214,0 +1707884160,214,0 +1707884160,213,0 +1707884161,213,0 +1707884161,213,0 +1707884162,213,0 +1707884162,213,0 +1707884163,213,0 +1707884163,213,0 +1707884163,214,0 +1707884164,214,0 +1707884164,214,0 +1707884165,214,0 +1707884165,214,0 +1707884166,214,0 +1707884166,214,0 +1707884167,214,0 +1707884167,214,0 +1707884168,214,0 +1707884168,214,0 +1707884169,213,0 +1707884169,213,0 +1707884170,213,0 +1707884170,213,0 +1707884171,213,0 +1707884171,214,0 +1707884172,214,0 +1707884172,214,0 +1707884173,214,0 +1707884173,214,0 +1707884174,214,0 +1707884174,214,0 +1707884175,214,0 +1707884175,214,0 +1707884176,214,0 +1707884176,214,0 +1707884177,214,0 +1707884177,214,0 +1707884178,213,0 +1707884178,213,0 +1707884179,213,0 +1707884179,213,0 +1707884179,213,0 +1707884180,213,0 +1707884180,213,0 +1707884181,213,0 +1707884181,214,0 +1707884182,214,0 +1707884182,214,0 +1707884183,214,0 +1707884183,214,0 +1707884184,214,0 +1707884184,214,0 +1707884185,214,0 +1707884185,214,0 +1707884186,213,0 +1707884186,213,0 +1707884187,213,0 +1707884187,213,0 +1707884188,213,0 +1707884188,213,0 +1707884189,213,0 +1707884189,213,0 +1707884190,213,0 +1707884190,214,0 +1707884191,213,0 +1707884191,214,0 +1707884191,214,0 +1707884192,214,0 +1707884192,214,0 +1707884193,214,0 +1707884193,214,0 +1707884194,214,0 +1707884194,213,0 +1707884195,213,0 +1707884195,213,0 +1707884196,213,0 +1707884196,213,0 +1707884197,214,0 +1707884197,213,0 +1707884198,214,0 +1707884198,214,0 +1707884199,214,0 +1707884199,214,0 +1707884200,214,0 +1707884200,214,0 +1707884201,214,0 +1707884201,214,0 +1707884202,214,0 +1707884202,214,0 +1707884203,214,0 +1707884203,214,0 +1707884204,214,0 +1707884204,214,0 +1707884205,214,0 +1707884205,214,0 +1707884206,214,0 +1707884206,214,0 +1707884206,214,0 +1707884207,214,0 +1707884207,214,0 +1707884208,214,0 +1707884208,214,0 +1707884209,214,0 +1707884209,214,0 +1707884210,214,0 +1707884210,214,0 +1707884211,214,0 +1707884211,214,0 +1707884212,213,0 +1707884212,214,0 +1707884213,214,0 +1707884213,214,0 +1707884214,214,0 +1707884214,214,0 +1707884215,214,0 +1707884215,214,0 +1707884216,214,0 +1707884216,214,0 +1707884217,214,0 +1707884217,214,0 +1707884218,214,0 +1707884218,214,0 +1707884219,214,0 +1707884219,214,0 +1707884219,214,0 +1707884220,214,0 +1707884220,214,0 +1707884221,214,0 +1707884221,214,0 +1707884222,214,0 +1707884222,214,0 +1707884223,214,0 +1707884223,214,0 +1707884224,214,0 +1707884224,214,0 +1707884225,214,0 +1707884225,214,0 +1707884226,214,0 +1707884226,214,0 +1707884227,214,0 +1707884227,214,0 +1707884228,214,0 +1707884228,213,0 +1707884229,213,0 +1707884229,213,0 +1707884230,213,0 +1707884230,214,0 +1707884231,214,0 +1707884231,214,0 +1707884232,214,0 +1707884232,214,0 +1707884233,214,0 +1707884233,214,0 +1707884233,214,0 +1707884234,214,0 +1707884234,214,0 +1707884235,214,0 +1707884235,214,0 +1707884236,214,0 +1707884236,214,0 +1707884237,213,0 +1707884237,213,0 +1707884238,213,0 +1707884238,213,0 +1707884239,213,0 +1707884239,213,0 +1707884240,214,0 +1707884240,214,0 +1707884241,214,0 +1707884241,213,0 +1707884242,214,0 +1707884242,214,0 +1707884243,214,0 +1707884243,214,0 +1707884244,214,0 +1707884244,214,0 +1707884245,214,0 +1707884245,214,0 +1707884246,213,0 +1707884246,213,0 +1707884247,213,0 +1707884247,213,0 +1707884248,213,0 +1707884248,213,0 +1707884248,213,0 +1707884249,213,0 +1707884249,213,0 +1707884250,214,0 +1707884250,213,0 +1707884251,214,0 +1707884251,214,0 +1707884252,214,0 +1707884252,214,0 +1707884253,214,0 +1707884253,214,0 +1707884254,214,0 +1707884254,214,0 +1707884255,213,0 +1707884255,213,0 +1707884256,213,0 +1707884256,213,0 +1707884257,213,0 +1707884257,213,0 +1707884258,213,0 +1707884258,213,0 +1707884259,214,0 +1707884259,213,0 +1707884260,213,0 +1707884260,214,0 +1707884261,214,0 +1707884261,214,0 +1707884262,214,0 +1707884262,214,0 +1707884263,214,0 +1707884263,214,0 +1707884264,214,0 +1707884264,213,0 +1707884264,213,0 +1707884265,213,0 +1707884265,213,0 +1707884266,213,0 +1707884266,214,0 +1707884267,214,0 +1707884267,214,0 +1707884268,214,0 +1707884268,214,0 +1707884269,214,0 +1707884269,214,0 +1707884270,214,0 +1707884270,214,0 +1707884271,214,0 +1707884271,214,0 +1707884272,214,0 +1707884272,214,0 +1707884273,214,0 +1707884273,213,0 +1707884274,213,0 +1707884274,213,0 +1707884275,214,0 +1707884275,213,0 +1707884276,213,0 +1707884276,214,0 +1707884277,213,0 +1707884277,213,0 +1707884278,213,0 +1707884278,213,0 +1707884279,214,0 +1707884279,214,0 +1707884279,214,0 +1707884280,214,0 +1707884280,214,0 +1707884281,214,0 +1707884281,214,0 +1707884282,214,0 +1707884282,213,0 +1707884283,213,0 +1707884283,213,0 +1707884284,213,0 +1707884284,213,0 +1707884285,213,0 +1707884285,213,0 +1707884286,213,0 +1707884286,213,0 +1707884287,213,0 +1707884287,213,0 +1707884288,213,0 +1707884288,213,0 +1707884289,214,0 +1707884289,214,0 +1707884290,214,0 +1707884290,214,0 +1707884291,214,0 +1707884291,214,0 +1707884292,214,0 +1707884292,213,0 +1707884292,213,0 +1707884293,213,0 +1707884293,213,0 +1707884294,213,0 +1707884294,213,0 +1707884295,213,0 +1707884295,213,0 +1707884296,213,0 +1707884296,213,0 +1707884297,213,0 +1707884297,214,0 +1707884298,213,0 +1707884298,213,0 +1707884299,214,0 +1707884299,214,0 +1707884300,214,0 +1707884300,214,0 +1707884301,214,0 +1707884301,213,0 +1707884302,213,0 +1707884302,213,0 +1707884303,213,0 +1707884303,213,0 +1707884304,213,0 +1707884304,213,0 +1707884304,213,0 +1707884305,213,0 +1707884305,213,0 +1707884306,213,0 +1707884306,213,0 +1707884307,213,0 +1707884307,213,0 +1707884308,214,0 +1707884308,213,0 +1707884309,214,0 +1707884309,214,0 +1707884310,214,0 +1707884310,213,0 +1707884311,213,0 +1707884311,213,0 +1707884312,213,0 +1707884312,213,0 +1707884313,213,0 +1707884313,213,0 +1707884314,214,0 +1707884314,214,0 +1707884315,214,0 +1707884315,214,0 +1707884316,214,0 +1707884316,214,0 +1707884317,214,0 +1707884317,214,0 +1707884318,214,0 +1707884318,214,0 +1707884318,214,0 +1707884319,214,0 +1707884319,214,0 +1707884320,213,0 +1707884320,213,0 +1707884321,213,0 +1707884321,213,0 +1707884322,213,0 +1707884322,213,0 +1707884323,214,0 +1707884323,214,0 +1707884324,213,0 +1707884324,214,0 +1707884325,214,0 +1707884325,214,0 +1707884326,214,0 +1707884326,213,0 +1707884327,214,0 +1707884327,214,0 +1707884328,214,0 +1707884328,214,0 +1707884329,214,0 +1707884329,213,0 +1707884330,213,0 +1707884330,213,0 +1707884331,213,0 +1707884331,213,0 +1707884332,213,0 +1707884332,214,0 +1707884333,213,0 +1707884333,213,0 +1707884334,213,0 +1707884334,214,0 +1707884334,213,0 +1707884335,214,0 +1707884335,214,0 +1707884336,214,0 +1707884336,214,0 +1707884337,214,0 +1707884337,214,0 +1707884338,214,0 +1707884338,213,0 +1707884339,213,0 +1707884339,213,0 +1707884340,213,0 +1707884340,213,0 +1707884341,213,0 +1707884341,214,0 +1707884342,214,0 +1707884342,214,0 +1707884343,214,0 +1707884343,214,0 +1707884344,214,0 +1707884344,214,0 +1707884345,214,0 +1707884345,214,0 +1707884346,214,0 +1707884346,214,0 +1707884347,214,0 +1707884347,214,0 +1707884348,213,0 +1707884348,214,0 +1707884349,213,0 +1707884349,213,0 +1707884349,213,0 +1707884350,214,0 +1707884350,214,0 +1707884351,214,0 +1707884351,214,0 +1707884352,214,0 +1707884352,214,0 +1707884353,214,0 +1707884353,214,0 +1707884354,214,0 +1707884354,214,0 +1707884355,214,0 +1707884355,214,0 +1707884356,214,0 +1707884356,214,0 +1707884357,213,0 +1707884357,213,0 +1707884358,213,0 +1707884358,213,0 +1707884359,214,0 +1707884359,214,0 +1707884360,213,0 +1707884360,214,0 +1707884361,214,0 +1707884361,214,0 +1707884362,214,0 +1707884362,214,0 +1707884363,214,0 +1707884363,214,0 +1707884364,214,0 +1707884364,214,0 +1707884365,214,0 +1707884365,214,0 +1707884366,214,0 +1707884366,214,0 +1707884366,214,0 +1707884367,214,0 +1707884367,214,0 +1707884368,214,0 +1707884368,214,0 +1707884369,214,0 +1707884369,214,0 +1707884370,214,0 +1707884370,214,0 +1707884371,214,0 +1707884371,214,0 +1707884372,214,0 +1707884372,214,0 +1707884373,214,0 +1707884373,214,0 +1707884374,214,0 +1707884374,214,0 +1707884375,214,0 +1707884375,214,0 +1707884376,214,0 +1707884376,214,0 +1707884377,214,0 +1707884377,214,0 +1707884378,214,0 +1707884378,214,0 +1707884379,214,0 +1707884379,214,0 +1707884379,214,0 +1707884380,214,0 +1707884380,214,0 +1707884381,214,0 +1707884381,214,0 +1707884382,214,0 +1707884382,214,0 +1707884383,214,0 +1707884383,214,0 +1707884384,214,0 +1707884384,214,0 +1707884385,214,0 +1707884385,214,0 +1707884386,213,0 +1707884386,214,0 +1707884387,214,0 +1707884387,214,0 +1707884388,214,0 +1707884388,213,0 +1707884389,214,0 +1707884389,214,0 +1707884390,214,0 +1707884390,214,0 +1707884391,214,0 +1707884391,214,0 +1707884392,214,0 +1707884392,214,0 +1707884392,214,0 +1707884393,214,0 +1707884393,214,0 +1707884394,213,0 +1707884394,213,0 +1707884395,213,0 +1707884395,213,0 +1707884396,213,0 +1707884396,213,0 +1707884397,213,0 +1707884397,213,0 +1707884398,213,0 +1707884398,213,0 +1707884399,214,0 +1707884399,214,0 +1707884400,214,0 +1707884400,214,0 +1707884401,214,0 +1707884401,214,0 +1707884402,214,0 +1707884402,214,0 +1707884403,214,0 +1707884403,213,0 +1707884404,213,0 +1707884404,213,0 +1707884405,213,0 +1707884405,213,0 +1707884406,213,0 +1707884406,213,0 +1707884407,213,0 +1707884407,214,0 +1707884407,214,0 +1707884408,214,0 +1707884408,214,0 +1707884409,214,0 +1707884409,214,0 +1707884410,214,0 +1707884410,214,0 +1707884411,214,0 +1707884411,214,0 +1707884412,214,0 +1707884412,214,0 +1707884413,213,0 +1707884413,213,0 +1707884414,213,0 +1707884414,213,0 +1707884415,213,0 +1707884415,213,0 +1707884416,213,0 +1707884416,213,0 +1707884417,214,0 +1707884417,214,0 +1707884418,214,0 +1707884418,214,0 +1707884419,214,0 +1707884419,214,0 +1707884420,214,0 +1707884420,214,0 +1707884421,214,0 +1707884421,214,0 +1707884422,214,0 +1707884422,213,0 +1707884423,213,0 +1707884423,213,0 +1707884423,213,0 +1707884424,213,0 +1707884424,213,0 +1707884425,213,0 +1707884425,213,0 +1707884426,213,0 +1707884426,213,0 +1707884427,214,0 +1707884427,213,0 +1707884428,214,0 +1707884428,214,0 +1707884429,214,0 +1707884429,214,0 +1707884430,214,0 +1707884430,214,0 +1707884431,214,0 +1707884431,213,0 +1707884432,213,0 +1707884432,213,0 +1707884433,213,0 +1707884433,213,0 +1707884434,213,0 +1707884434,213,0 +1707884435,213,0 +1707884435,213,0 +1707884436,213,0 +1707884436,213,0 +1707884437,214,0 +1707884437,213,0 +1707884438,213,0 +1707884438,214,0 +1707884438,213,0 +1707884439,214,0 +1707884439,213,0 +1707884440,214,0 +1707884440,213,0 +1707884441,213,0 +1707884441,213,0 +1707884442,213,0 +1707884442,213,0 +1707884443,213,0 +1707884443,213,0 +1707884444,213,0 +1707884444,213,0 +1707884445,213,0 +1707884445,213,0 +1707884446,213,0 +1707884446,214,0 +1707884447,214,0 +1707884447,214,0 +1707884448,213,0 +1707884448,214,0 +1707884449,214,0 +1707884449,214,0 +1707884450,214,0 +1707884450,213,0 +1707884451,213,0 +1707884451,213,0 +1707884452,213,0 +1707884452,213,0 +1707884453,213,0 +1707884453,213,0 +1707884453,213,0 +1707884454,213,0 +1707884454,213,0 +1707884455,213,0 +1707884455,213,0 +1707884456,214,0 +1707884456,214,0 +1707884457,213,0 +1707884457,213,0 +1707884458,214,0 +1707884458,214,0 +1707884459,214,0 +1707884459,213,0 +1707884460,213,0 +1707884460,213,0 +1707884461,213,0 +1707884461,213,0 +1707884462,213,0 +1707884462,213,0 +1707884463,213,0 +1707884463,213,0 +1707884464,213,0 +1707884464,213,0 +1707884465,213,0 +1707884465,214,0 +1707884466,213,0 +1707884466,213,0 +1707884467,214,0 +1707884467,214,0 +1707884468,214,0 +1707884468,214,0 +1707884468,213,0 +1707884469,213,0 +1707884469,213,0 +1707884470,213,0 +1707884470,213,0 +1707884471,213,0 +1707884471,213,0 +1707884472,213,0 +1707884472,214,0 +1707884473,213,0 +1707884473,214,0 +1707884474,214,0 +1707884474,214,0 +1707884475,214,0 +1707884475,214,0 +1707884476,214,0 +1707884476,214,0 +1707884477,214,0 +1707884477,214,0 +1707884478,213,0 +1707884478,213,0 +1707884479,213,0 +1707884479,213,0 +1707884480,213,0 +1707884480,213,0 +1707884481,214,0 +1707884481,214,0 +1707884482,213,0 +1707884482,213,0 +1707884482,214,0 +1707884483,214,0 +1707884483,214,0 +1707884484,214,0 +1707884484,214,0 +1707884485,214,0 +1707884485,214,0 +1707884486,214,0 +1707884486,214,0 +1707884487,214,0 +1707884487,213,0 +1707884488,213,0 +1707884488,213,0 +1707884489,214,0 +1707884489,214,0 +1707884490,213,0 +1707884490,214,0 +1707884491,214,0 +1707884491,214,0 +1707884492,214,0 +1707884492,214,0 +1707884493,214,0 +1707884493,214,0 +1707884494,214,0 +1707884494,214,0 +1707884495,214,0 +1707884495,214,0 +1707884496,214,0 +1707884496,214,0 +1707884496,213,0 +1707884497,213,0 +1707884497,213,0 +1707884498,213,0 +1707884498,214,0 +1707884499,213,0 +1707884499,213,0 +1707884500,213,0 +1707884500,213,0 +1707884501,214,0 +1707884501,213,0 +1707884502,214,0 +1707884502,214,0 +1707884503,214,0 +1707884503,214,0 +1707884504,214,0 +1707884504,214,0 +1707884505,214,0 +1707884505,214,0 +1707884506,213,0 +1707884506,213,0 +1707884507,213,0 +1707884507,213,0 +1707884508,213,0 +1707884508,213,0 +1707884509,213,0 +1707884509,213,0 +1707884509,213,0 +1707884510,213,0 +1707884510,213,0 +1707884511,214,0 +1707884511,214,0 +1707884512,213,0 +1707884512,214,0 +1707884513,214,0 +1707884513,214,0 +1707884514,214,0 +1707884514,214,0 +1707884515,213,0 +1707884515,213,0 +1707884516,213,0 +1707884516,213,0 +1707884517,213,0 +1707884517,213,0 +1707884518,213,0 +1707884518,213,0 +1707884519,213,0 +1707884519,213,0 +1707884520,213,0 +1707884520,213,0 +1707884521,213,0 +1707884521,213,0 +1707884522,214,0 +1707884522,214,0 +1707884523,214,0 +1707884523,214,0 +1707884524,214,0 +1707884524,213,0 +1707884524,213,0 +1707884525,213,0 +1707884525,213,0 +1707884526,213,0 +1707884526,213,0 +1707884527,213,0 +1707884527,213,0 +1707884528,213,0 +1707884528,213,0 +1707884529,214,0 +1707884529,214,0 +1707884530,214,0 +1707884530,213,0 +1707884531,214,0 +1707884531,214,0 +1707884532,214,0 +1707884532,214,0 +1707884533,214,0 +1707884533,214,0 +1707884534,213,0 +1707884534,213,0 +1707884535,213,0 +1707884535,213,0 +1707884536,213,0 +1707884536,213,0 +1707884537,213,0 +1707884537,213,0 +1707884538,213,0 +1707884538,214,0 +1707884539,214,0 +1707884539,213,0 +1707884540,214,0 +1707884540,214,0 +1707884540,214,0 +1707884541,214,0 +1707884541,214,0 +1707884542,214,0 +1707884542,214,0 +1707884543,213,0 +1707884543,213,0 +1707884544,213,0 +1707884544,213,0 +1707884545,213,0 +1707884545,213,0 +1707884546,213,0 +1707884546,214,0 +1707884547,214,0 +1707884547,214,0 +1707884548,214,0 +1707884548,213,0 +1707884549,214,0 +1707884549,214,0 +1707884550,214,0 +1707884550,214,0 +1707884551,214,0 +1707884551,214,0 +1707884552,214,0 +1707884552,213,0 +1707884553,213,0 +1707884553,213,0 +1707884554,213,0 +1707884554,213,0 +1707884555,213,0 +1707884555,213,0 +1707884556,213,0 +1707884556,214,0 +1707884557,214,0 +1707884557,214,0 +1707884558,214,0 +1707884558,214,0 +1707884558,214,0 +1707884559,214,0 +1707884559,214,0 +1707884560,214,0 +1707884560,214,0 +1707884561,215,0 +1707884561,213,0 +1707884562,214,0 +1707884562,213,0 +1707884563,213,0 +1707884563,213,0 +1707884564,214,0 +1707884564,214,0 +1707884565,214,0 +1707884565,214,0 +1707884566,214,0 +1707884566,214,0 +1707884567,214,0 +1707884567,214,0 +1707884568,214,0 +1707884568,214,0 +1707884569,214,0 +1707884569,214,0 +1707884570,214,0 +1707884570,214,0 +1707884571,214,0 +1707884571,213,0 +1707884571,213,0 +1707884572,213,0 +1707884572,213,0 +1707884573,213,0 +1707884573,213,0 +1707884574,214,0 +1707884574,214,0 +1707884575,214,0 +1707884575,214,0 +1707884576,214,0 +1707884576,214,0 +1707884577,214,0 +1707884577,214,0 +1707884578,214,0 +1707884578,214,0 +1707884579,214,0 +1707884579,214,0 +1707884580,214,0 +1707884580,213,0 +1707884581,213,0 +1707884581,213,0 +1707884582,213,0 +1707884582,213,0 +1707884583,213,0 +1707884583,213,0 +1707884584,213,0 +1707884584,213,0 +1707884585,213,0 +1707884585,214,0 +1707884586,214,0 +1707884586,214,0 +1707884587,214,0 +1707884587,214,0 +1707884587,214,0 +1707884588,214,0 +1707884588,214,0 +1707884589,214,0 +1707884589,213,0 +1707884590,213,0 +1707884590,213,0 +1707884591,213,0 +1707884591,213,0 +1707884592,213,0 +1707884592,213,0 +1707884593,213,0 +1707884593,213,0 +1707884594,213,0 +1707884594,213,0 +1707884595,214,0 +1707884595,214,0 +1707884596,214,0 +1707884596,214,0 +1707884597,214,0 +1707884597,214,0 +1707884598,214,0 +1707884598,214,0 +1707884599,213,0 +1707884599,213,0 +1707884600,213,0 +1707884600,213,0 +1707884601,213,0 +1707884601,213,0 +1707884602,213,0 +1707884602,214,0 +1707884603,213,0 +1707884603,213,0 +1707884604,214,0 +1707884604,214,0 +1707884604,214,0 +1707884605,214,0 +1707884605,214,0 +1707884606,214,0 +1707884606,214,0 +1707884607,214,0 +1707884607,214,0 +1707884608,213,0 +1707884608,213,0 +1707884609,213,0 +1707884609,213,0 +1707884610,213,0 +1707884610,213,0 +1707884611,213,0 +1707884611,213,0 +1707884612,213,0 +1707884612,213,0 +1707884613,213,0 +1707884613,214,0 +1707884614,214,0 +1707884614,214,0 +1707884615,214,0 +1707884615,214,0 +1707884616,214,0 +1707884616,214,0 +1707884617,214,0 +1707884617,214,0 +1707884618,213,0 +1707884618,213,0 +1707884619,213,0 +1707884619,213,0 +1707884620,213,0 +1707884620,213,0 +1707884621,214,0 +1707884621,213,0 +1707884621,214,0 +1707884622,214,0 +1707884622,214,0 +1707884623,214,0 +1707884623,214,0 +1707884624,214,0 +1707884624,214,0 +1707884625,214,0 +1707884625,214,0 +1707884626,214,0 +1707884626,214,0 +1707884627,213,0 +1707884627,213,0 +1707884628,213,0 +1707884628,213,0 +1707884629,213,0 +1707884629,213,0 +1707884630,213,0 +1707884630,213,0 +1707884631,213,0 +1707884631,214,0 +1707884632,214,0 +1707884632,214,0 +1707884633,214,0 +1707884633,214,0 +1707884634,214,0 +1707884634,214,0 +1707884635,214,0 +1707884635,214,0 +1707884635,214,0 +1707884636,213,0 +1707884636,213,0 +1707884637,213,0 +1707884637,213,0 +1707884638,213,0 +1707884638,213,0 +1707884639,214,0 +1707884639,213,0 +1707884640,214,0 +1707884640,214,0 +1707884641,214,0 +1707884641,214,0 +1707884642,214,0 +1707884642,214,0 +1707884643,214,0 +1707884643,214,0 +1707884644,214,0 +1707884644,214,0 +1707884645,214,0 +1707884645,213,0 +1707884646,213,0 +1707884646,213,0 +1707884647,213,0 +1707884647,213,0 +1707884648,213,0 +1707884648,213,0 +1707884649,214,0 +1707884649,213,0 +1707884649,214,0 +1707884650,214,0 +1707884650,214,0 +1707884651,214,0 +1707884651,214,0 +1707884652,214,0 +1707884652,214,0 +1707884653,214,0 +1707884653,214,0 +1707884654,214,0 +1707884654,214,0 +1707884655,213,0 +1707884655,213,0 +1707884656,213,0 +1707884656,213,0 +1707884657,213,0 +1707884657,213,0 +1707884658,213,0 +1707884658,213,0 +1707884659,213,0 +1707884659,214,0 +1707884660,214,0 +1707884660,214,0 +1707884661,214,0 +1707884661,214,0 +1707884661,214,0 +1707884662,214,0 +1707884662,214,0 +1707884663,214,0 +1707884663,214,0 +1707884664,213,0 +1707884664,213,0 +1707884665,213,0 +1707884665,213,0 +1707884666,213,0 +1707884666,213,0 +1707884667,213,0 +1707884667,213,0 +1707884668,213,0 +1707884668,213,0 +1707884669,213,0 +1707884669,214,0 +1707884670,214,0 +1707884670,214,0 +1707884671,214,0 +1707884671,214,0 +1707884672,214,0 +1707884672,214,0 +1707884673,214,0 +1707884673,213,0 +1707884674,213,0 +1707884674,213,0 +1707884675,213,0 +1707884675,213,0 +1707884675,213,0 +1707884676,213,0 +1707884676,213,0 +1707884677,213,0 +1707884677,213,0 +1707884678,213,0 +1707884678,213,0 +1707884679,213,0 +1707884679,214,0 +1707884680,214,0 +1707884680,214,0 +1707884681,214,0 +1707884681,214,0 +1707884682,214,0 +1707884682,214,0 +1707884683,213,0 +1707884683,213,0 +1707884684,213,0 +1707884684,213,0 +1707884685,213,0 +1707884685,213,0 +1707884686,214,0 +1707884686,213,0 +1707884687,213,0 +1707884687,213,0 +1707884688,213,0 +1707884688,214,0 +1707884689,214,0 +1707884689,214,0 +1707884690,214,0 +1707884690,214,0 +1707884690,214,0 +1707884691,214,0 +1707884691,214,0 +1707884692,213,0 +1707884692,213,0 +1707884693,213,0 +1707884693,213,0 +1707884694,213,0 +1707884694,213,0 +1707884695,213,0 +1707884695,213,0 +1707884696,213,0 +1707884696,213,0 +1707884697,213,0 +1707884697,214,0 +1707884698,214,0 +1707884698,214,0 +1707884699,214,0 +1707884699,214,0 +1707884700,214,0 +1707884700,214,0 +1707884701,214,0 +1707884701,213,0 +1707884702,213,0 +1707884702,213,0 +1707884703,213,0 +1707884703,213,0 +1707884703,213,0 +1707884704,213,0 +1707884704,213,0 +1707884705,213,0 +1707884705,213,0 +1707884706,213,0 +1707884706,213,0 +1707884707,213,0 +1707884707,214,0 +1707884708,214,0 +1707884708,214,0 +1707884709,214,0 +1707884709,214,0 +1707884710,214,0 +1707884710,214,0 +1707884711,213,0 +1707884711,213,0 +1707884712,213,0 +1707884712,213,0 +1707884713,213,0 +1707884713,213,0 +1707884714,213,0 +1707884714,214,0 +1707884715,213,0 +1707884715,213,0 +1707884716,213,0 +1707884716,214,0 +1707884717,214,0 +1707884717,214,0 +1707884718,214,0 +1707884718,214,0 +1707884718,214,0 +1707884719,214,0 +1707884719,214,0 +1707884720,213,0 +1707884720,213,0 +1707884721,213,0 +1707884721,213,0 +1707884722,213,0 +1707884722,213,0 +1707884723,213,0 +1707884723,214,0 +1707884724,213,0 +1707884724,213,0 +1707884725,214,0 +1707884725,214,0 +1707884726,214,0 +1707884726,214,0 +1707884727,214,0 +1707884727,214,0 +1707884728,214,0 +1707884728,214,0 +1707884729,214,0 +1707884729,213,0 +1707884730,213,0 +1707884730,213,0 +1707884731,213,0 +1707884731,213,0 +1707884732,213,0 +1707884732,213,0 +1707884733,214,0 +1707884733,214,0 +1707884734,213,0 +1707884734,214,0 +1707884734,214,0 +1707884735,214,0 +1707884735,214,0 +1707884736,214,0 +1707884736,214,0 +1707884737,214,0 +1707884737,214,0 +1707884738,214,0 +1707884738,213,0 +1707884739,213,0 +1707884739,213,0 +1707884740,213,0 +1707884740,213,0 +1707884741,214,0 +1707884741,213,0 +1707884742,214,0 +1707884742,213,0 +1707884743,213,0 +1707884743,214,0 +1707884744,214,0 +1707884744,214,0 +1707884745,214,0 +1707884745,214,0 +1707884746,214,0 +1707884746,214,0 +1707884747,214,0 +1707884747,214,0 +1707884748,213,0 +1707884748,213,0 +1707884749,213,0 +1707884749,213,0 +1707884750,213,0 +1707884750,213,0 +1707884751,214,0 +1707884751,214,0 +1707884751,214,0 +1707884752,214,0 +1707884752,214,0 +1707884753,214,0 +1707884753,214,0 +1707884754,214,0 +1707884754,214,0 +1707884755,214,0 +1707884755,214,0 +1707884756,214,0 +1707884756,214,0 +1707884757,213,0 +1707884757,213,0 +1707884758,213,0 +1707884758,213,0 +1707884759,213,0 +1707884759,213,0 +1707884760,214,0 +1707884760,213,0 +1707884761,214,0 +1707884761,214,0 +1707884762,214,0 +1707884762,214,0 +1707884763,214,0 +1707884763,214,0 +1707884764,214,0 +1707884764,214,0 +1707884765,214,0 +1707884765,214,0 +1707884765,214,0 +1707884766,214,0 +1707884766,213,0 +1707884767,213,0 +1707884767,213,0 +1707884768,214,0 +1707884768,214,0 +1707884769,214,0 +1707884769,214,0 +1707884770,214,0 +1707884770,214,0 +1707884771,214,0 +1707884771,214,0 +1707884772,214,0 +1707884772,214,0 +1707884773,214,0 +1707884773,214,0 +1707884774,214,0 +1707884774,214,0 +1707884775,214,0 +1707884775,214,0 +1707884776,213,0 +1707884776,213,0 +1707884777,213,0 +1707884777,213,0 +1707884778,213,0 +1707884778,213,0 +1707884779,213,0 +1707884779,213,0 +1707884780,213,0 +1707884780,213,0 +1707884780,214,0 +1707884781,214,0 +1707884781,213,0 +1707884782,214,0 +1707884782,214,0 +1707884783,214,0 +1707884783,214,0 +1707884784,214,0 +1707884784,214,0 +1707884785,213,0 +1707884785,213,0 +1707884786,213,0 +1707884786,213,0 +1707884787,213,0 +1707884787,213,0 +1707884788,213,0 +1707884788,213,0 +1707884789,214,0 +1707884789,213,0 +1707884790,214,0 +1707884790,214,0 +1707884791,214,0 +1707884791,214,0 +1707884792,214,0 +1707884792,214,0 +1707884792,214,0 +1707884793,214,0 +1707884793,214,0 +1707884794,214,0 +1707884794,213,0 +1707884795,213,0 +1707884795,213,0 +1707884796,213,0 +1707884796,214,0 +1707884797,214,0 +1707884797,213,0 +1707884798,214,0 +1707884798,214,0 +1707884799,214,0 +1707884799,214,0 +1707884800,214,0 +1707884800,214,0 +1707884801,214,0 +1707884801,214,0 +1707884802,214,0 +1707884802,214,0 +1707884803,214,0 +1707884803,213,0 +1707884804,213,0 +1707884804,213,0 +1707884805,213,0 +1707884805,214,0 +1707884806,213,0 +1707884806,213,0 +1707884807,213,0 +1707884807,214,0 +1707884807,214,0 +1707884808,214,0 +1707884808,214,0 +1707884809,214,0 +1707884809,214,0 +1707884810,214,0 +1707884810,214,0 +1707884811,214,0 +1707884811,214,0 +1707884812,214,0 +1707884812,214,0 +1707884813,213,0 +1707884813,213,0 +1707884814,213,0 +1707884814,213,0 +1707884815,213,0 +1707884815,213,0 +1707884816,213,0 +1707884816,213,0 +1707884817,214,0 +1707884817,213,0 +1707884818,214,0 +1707884818,214,0 +1707884819,214,0 +1707884819,214,0 +1707884820,214,0 +1707884820,214,0 +1707884821,214,0 +1707884821,214,0 +1707884821,214,0 +1707884822,213,0 +1707884822,213,0 +1707884823,213,0 +1707884823,213,0 +1707884824,213,0 +1707884824,214,0 +1707884825,213,0 +1707884825,213,0 +1707884826,213,0 +1707884826,213,0 +1707884827,214,0 +1707884827,214,0 +1707884828,214,0 +1707884828,214,0 +1707884829,214,0 +1707884829,214,0 +1707884830,214,0 +1707884830,214,0 +1707884831,214,0 +1707884831,213,0 +1707884832,213,0 +1707884832,213,0 +1707884833,213,0 +1707884833,213,0 +1707884834,213,0 +1707884834,213,0 +1707884835,213,0 +1707884835,213,0 +1707884836,213,0 +1707884836,213,0 +1707884837,213,0 +1707884837,214,0 +1707884838,214,0 +1707884838,214,0 +1707884839,214,0 +1707884839,214,0 +1707884839,214,0 +1707884840,214,0 +1707884840,213,0 +1707884841,213,0 +1707884841,213,0 +1707884842,213,0 +1707884842,213,0 +1707884843,213,0 +1707884843,213,0 +1707884844,213,0 +1707884844,213,0 +1707884845,213,0 +1707884845,214,0 +1707884846,214,0 +1707884846,213,0 +1707884847,214,0 +1707884847,214,0 +1707884848,214,0 +1707884848,214,0 +1707884849,214,0 +1707884849,214,0 +1707884850,214,0 +1707884850,213,0 +1707884851,213,0 +1707884851,213,0 +1707884852,213,0 +1707884852,213,0 +1707884853,213,0 +1707884853,213,0 +1707884854,213,0 +1707884854,214,0 +1707884855,213,0 +1707884855,213,0 +1707884856,214,0 +1707884856,214,0 +1707884857,214,0 +1707884857,214,0 +1707884858,214,0 +1707884858,214,0 +1707884858,214,0 +1707884859,214,0 +1707884859,213,0 +1707884860,213,0 +1707884860,213,0 +1707884861,213,0 +1707884861,213,0 +1707884862,213,0 +1707884862,213,0 +1707884863,213,0 +1707884863,213,0 +1707884864,214,0 +1707884864,214,0 +1707884865,214,0 +1707884865,214,0 +1707884866,214,0 +1707884866,214,0 +1707884867,214,0 +1707884867,214,0 +1707884868,214,0 +1707884868,214,0 +1707884869,213,0 +1707884869,213,0 +1707884870,213,0 +1707884870,213,0 +1707884871,214,0 +1707884871,213,0 +1707884872,214,0 +1707884872,214,0 +1707884873,214,0 +1707884873,214,0 +1707884874,214,0 +1707884874,214,0 +1707884875,214,0 +1707884875,214,0 +1707884875,214,0 +1707884876,214,0 +1707884876,214,0 +1707884877,214,0 +1707884877,214,0 +1707884878,213,0 +1707884878,213,0 +1707884879,213,0 +1707884879,213,0 +1707884880,213,0 +1707884880,213,0 +1707884881,214,0 +1707884881,214,0 +1707884882,214,0 +1707884882,214,0 +1707884883,214,0 +1707884883,214,0 +1707884884,214,0 +1707884884,214,0 +1707884885,214,0 +1707884885,214,0 +1707884886,214,0 +1707884886,214,0 +1707884887,214,0 +1707884887,213,0 +1707884888,213,0 +1707884888,213,0 +1707884889,213,0 +1707884889,213,0 +1707884890,213,0 +1707884890,213,0 +1707884891,213,0 +1707884891,213,0 +1707884891,214,0 +1707884892,213,0 +1707884892,214,0 +1707884893,214,0 +1707884893,214,0 +1707884894,214,0 +1707884894,214,0 +1707884895,214,0 +1707884895,214,0 +1707884896,214,0 +1707884896,213,0 +1707884897,213,0 +1707884897,213,0 +1707884898,213,0 +1707884898,213,0 +1707884899,213,0 +1707884899,213,0 +1707884900,213,0 +1707884900,213,0 +1707884901,213,0 +1707884901,213,0 +1707884902,214,0 +1707884902,214,0 +1707884903,214,0 +1707884903,214,0 +1707884904,214,0 +1707884904,214,0 +1707884905,214,0 +1707884905,214,0 +1707884906,213,0 +1707884906,213,0 +1707884907,213,0 +1707884907,213,0 +1707884908,213,0 +1707884908,213,0 +1707884909,213,0 +1707884909,213,0 +1707884910,213,0 +1707884910,213,0 +1707884911,213,0 +1707884911,213,0 +1707884911,213,0 +1707884912,213,0 +1707884912,213,0 +1707884913,214,0 +1707884913,213,0 +1707884914,214,0 +1707884914,214,0 +1707884915,213,0 +1707884915,213,0 +1707884916,213,0 +1707884916,213,0 +1707884917,213,0 +1707884917,213,0 +1707884918,213,0 +1707884918,213,0 +1707884919,213,0 +1707884919,213,0 +1707884920,213,0 +1707884920,213,0 +1707884921,214,0 +1707884921,213,0 +1707884922,214,0 +1707884922,214,0 +1707884923,214,0 +1707884923,214,0 +1707884924,214,0 +1707884924,214,0 +1707884925,213,0 +1707884925,213,0 +1707884926,213,0 +1707884926,213,0 +1707884926,213,0 +1707884927,213,0 +1707884927,213,0 +1707884928,213,0 +1707884928,213,0 +1707884929,213,0 +1707884929,214,0 +1707884930,213,0 +1707884930,214,0 +1707884931,214,0 +1707884931,214,0 +1707884932,214,0 +1707884932,214,0 +1707884933,214,0 +1707884933,214,0 +1707884934,213,0 +1707884934,213,0 +1707884935,213,0 +1707884935,213,0 +1707884936,213,0 +1707884936,213,0 +1707884937,213,0 +1707884937,214,0 +1707884938,214,0 +1707884938,214,0 +1707884939,214,0 +1707884939,214,0 +1707884940,214,0 +1707884940,214,0 +1707884941,214,0 +1707884941,214,0 +1707884941,214,0 +1707884942,214,0 +1707884942,214,0 +1707884943,214,0 +1707884943,213,0 +1707884944,213,0 +1707884944,213,0 +1707884945,214,0 +1707884945,213,0 +1707884946,214,0 +1707884946,214,0 +1707884947,214,0 +1707884947,214,0 +1707884948,214,0 +1707884948,214,0 +1707884949,214,0 +1707884949,214,0 +1707884950,214,0 +1707884950,214,0 +1707884951,214,0 +1707884951,214,0 +1707884952,214,0 +1707884952,213,0 +1707884953,213,0 +1707884953,213,0 +1707884954,213,0 +1707884954,213,0 +1707884955,214,0 +1707884955,213,0 +1707884955,213,0 +1707884956,214,0 +1707884956,214,0 +1707884957,214,0 +1707884957,214,0 +1707884958,214,0 +1707884958,214,0 +1707884959,214,0 +1707884959,214,0 +1707884960,214,0 +1707884960,214,0 +1707884961,214,0 +1707884961,214,0 +1707884962,213,0 +1707884962,213,0 +1707884963,213,0 +1707884963,213,0 +1707884964,213,0 +1707884964,213,0 +1707884965,213,0 +1707884965,213,0 +1707884966,213,0 +1707884966,213,0 +1707884967,214,0 +1707884967,214,0 +1707884968,214,0 +1707884968,214,0 +1707884969,214,0 +1707884969,214,0 +1707884970,214,0 +1707884970,214,0 +1707884971,214,0 +1707884971,213,0 +1707884971,213,0 +1707884972,213,0 +1707884972,213,0 +1707884973,213,0 +1707884973,213,0 +1707884974,213,0 +1707884974,214,0 +1707884975,213,0 +1707884975,214,0 +1707884976,214,0 +1707884976,213,0 +1707884977,214,0 +1707884977,214,0 +1707884978,214,0 +1707884978,214,0 +1707884979,214,0 +1707884979,214,0 +1707884980,214,0 +1707884980,213,0 +1707884981,213,0 +1707884981,213,0 +1707884982,213,0 +1707884982,213,0 +1707884983,213,0 +1707884983,213,0 +1707884984,213,0 +1707884984,214,0 +1707884985,214,0 +1707884985,214,0 +1707884986,214,0 +1707884986,214,0 +1707884986,214,0 +1707884987,214,0 +1707884987,214,0 +1707884988,214,0 +1707884988,214,0 +1707884989,214,0 +1707884989,213,0 +1707884990,213,0 +1707884990,213,0 +1707884991,213,0 +1707884991,213,0 +1707884992,213,0 +1707884992,213,0 +1707884993,213,0 +1707884993,213,0 +1707884994,213,0 +1707884994,214,0 +1707884995,214,0 +1707884995,214,0 +1707884996,214,0 +1707884996,214,0 +1707884997,214,0 +1707884997,214,0 +1707884998,214,0 +1707884998,214,0 +1707884999,213,0 +1707884999,213,0 +1707885000,213,0 +1707885000,213,0 +1707885001,213,0 +1707885001,213,0 +1707885002,213,0 +1707885002,213,0 +1707885003,213,0 +1707885003,214,0 +1707885003,214,0 +1707885004,214,0 +1707885004,214,0 +1707885005,214,0 +1707885005,214,0 +1707885006,214,0 +1707885006,214,0 +1707885007,214,0 +1707885007,214,0 +1707885008,214,0 +1707885008,213,0 +1707885009,213,0 +1707885009,213,0 +1707885010,213,0 +1707885010,213,0 +1707885011,213,0 +1707885011,213,0 +1707885012,213,0 +1707885012,213,0 +1707885013,213,0 +1707885013,214,0 +1707885014,214,0 +1707885014,214,0 +1707885015,214,0 +1707885015,214,0 +1707885016,214,0 +1707885016,214,0 +1707885017,214,0 +1707885017,214,0 +1707885018,213,0 +1707885018,213,0 +1707885018,213,0 +1707885019,213,0 +1707885019,214,0 +1707885020,213,0 +1707885020,213,0 +1707885021,214,0 +1707885021,214,0 +1707885022,213,0 +1707885022,214,0 +1707885023,214,0 +1707885023,214,0 +1707885024,214,0 +1707885024,214,0 +1707885025,214,0 +1707885025,214,0 +1707885026,214,0 +1707885026,214,0 +1707885027,213,0 +1707885027,213,0 +1707885028,213,0 +1707885028,213,0 +1707885029,213,0 +1707885029,213,0 +1707885030,213,0 +1707885030,213,0 +1707885031,214,0 +1707885031,214,0 +1707885032,214,0 +1707885032,214,0 +1707885032,214,0 +1707885033,214,0 +1707885033,214,0 +1707885034,214,0 +1707885034,214,0 +1707885035,214,0 +1707885035,214,0 +1707885036,213,0 +1707885036,213,0 +1707885037,213,0 +1707885037,213,0 +1707885038,213,0 +1707885038,213,0 +1707885039,213,0 +1707885039,213,0 +1707885040,213,0 +1707885040,213,0 +1707885041,213,0 +1707885041,214,0 +1707885042,214,0 +1707885042,214,0 +1707885043,214,0 +1707885043,214,0 +1707885044,214,0 +1707885044,214,0 +1707885045,214,0 +1707885045,213,0 +1707885046,213,0 +1707885046,213,0 +1707885047,213,0 +1707885047,213,0 +1707885048,213,0 +1707885048,213,0 +1707885049,213,0 +1707885049,213,0 +1707885049,213,0 +1707885050,213,0 +1707885050,213,0 +1707885051,213,0 +1707885051,213,0 +1707885052,214,0 +1707885052,214,0 +1707885053,214,0 +1707885053,214,0 +1707885054,214,0 +1707885054,214,0 +1707885055,213,0 +1707885055,213,0 +1707885056,213,0 +1707885056,213,0 +1707885057,213,0 +1707885057,213,0 +1707885058,213,0 +1707885058,213,0 +1707885059,213,0 +1707885059,213,0 +1707885060,214,0 +1707885060,214,0 +1707885061,214,0 +1707885061,214,0 +1707885062,214,0 +1707885062,214,0 +1707885063,214,0 +1707885063,214,0 +1707885064,214,0 +1707885064,213,0 +1707885065,213,0 +1707885065,213,0 +1707885065,213,0 +1707885066,213,0 +1707885066,213,0 +1707885067,213,0 +1707885067,213,0 +1707885068,213,0 +1707885068,213,0 +1707885069,213,0 +1707885069,213,0 +1707885070,214,0 +1707885070,214,0 +1707885071,214,0 +1707885071,214,0 +1707885072,214,0 +1707885072,214,0 +1707885073,214,0 +1707885073,213,0 +1707885074,213,0 +1707885074,213,0 +1707885075,213,0 +1707885075,213,0 +1707885076,213,0 +1707885076,213,0 +1707885077,213,0 +1707885077,213,0 +1707885078,213,0 +1707885078,213,0 +1707885079,214,0 +1707885079,214,0 +1707885079,214,0 +1707885080,214,0 +1707885080,214,0 +1707885081,214,0 +1707885081,214,0 +1707885082,214,0 +1707885082,213,0 +1707885083,213,0 +1707885083,213,0 +1707885084,213,0 +1707885084,213,0 +1707885085,213,0 +1707885085,213,0 +1707885086,213,0 +1707885086,213,0 +1707885087,213,0 +1707885087,213,0 +1707885088,214,0 +1707885088,214,0 +1707885089,214,0 +1707885089,214,0 +1707885090,214,0 +1707885090,214,0 +1707885091,214,0 +1707885091,214,0 +1707885092,214,0 +1707885092,213,0 +1707885093,213,0 +1707885093,213,0 +1707885093,213,0 +1707885094,213,0 +1707885094,213,0 +1707885095,213,0 +1707885095,213,0 +1707885096,213,0 +1707885096,214,0 +1707885097,213,0 +1707885097,214,0 +1707885098,214,0 +1707885098,214,0 +1707885099,214,0 +1707885099,214,0 +1707885100,214,0 +1707885100,214,0 +1707885101,214,0 +1707885101,213,0 +1707885102,213,0 +1707885102,213,0 +1707885103,213,0 +1707885103,213,0 +1707885104,213,0 +1707885104,213,0 +1707885105,213,0 +1707885105,213,0 +1707885106,214,0 +1707885106,213,0 +1707885106,214,0 +1707885107,214,0 +1707885107,214,0 +1707885108,214,0 +1707885108,214,0 +1707885109,214,0 +1707885109,214,0 +1707885110,214,0 +1707885110,213,0 +1707885111,213,0 +1707885111,213,0 +1707885112,213,0 +1707885112,213,0 +1707885113,213,0 +1707885113,213,0 +1707885114,213,0 +1707885114,213,0 +1707885115,213,0 +1707885115,213,0 +1707885116,213,0 +1707885116,213,0 +1707885117,213,0 +1707885117,214,0 +1707885118,214,0 +1707885118,214,0 +1707885119,214,0 +1707885119,214,0 +1707885120,213,0 +1707885120,213,0 +1707885121,213,0 +1707885121,213,0 +1707885122,213,0 +1707885122,213,0 +1707885123,213,0 +1707885123,213,0 +1707885123,213,0 +1707885124,214,0 +1707885124,214,0 +1707885125,214,0 +1707885125,214,0 +1707885126,214,0 +1707885126,213,0 +1707885127,214,0 +1707885127,214,0 +1707885128,214,0 +1707885128,214,0 +1707885129,214,0 +1707885129,213,0 +1707885130,213,0 +1707885130,213,0 +1707885131,214,0 +1707885131,214,0 +1707885132,214,0 +1707885132,214,0 +1707885133,214,0 +1707885133,214,0 +1707885134,214,0 +1707885134,214,0 +1707885135,214,0 +1707885135,214,0 +1707885136,214,0 +1707885136,214,0 +1707885137,214,0 +1707885137,214,0 +1707885138,214,0 +1707885138,214,0 +1707885138,214,0 +1707885139,214,0 +1707885139,214,0 +1707885140,214,0 +1707885140,214,0 +1707885141,214,0 +1707885141,214,0 +1707885142,214,0 +1707885142,214,0 +1707885143,214,0 +1707885143,214,0 +1707885144,214,0 +1707885144,214,0 +1707885145,214,0 +1707885145,214,0 +1707885146,214,0 +1707885146,214,0 +1707885147,214,0 +1707885147,214,0 +1707885148,214,0 +1707885148,213,0 +1707885149,213,0 +1707885149,213,0 +1707885150,214,0 +1707885150,214,0 +1707885151,214,0 +1707885151,214,0 +1707885151,214,0 +1707885152,214,0 +1707885152,214,0 +1707885153,214,0 +1707885153,214,0 +1707885154,214,0 +1707885154,214,0 +1707885155,214,0 +1707885155,214,0 +1707885156,214,0 +1707885156,214,0 +1707885157,214,0 +1707885157,213,0 +1707885158,213,0 +1707885158,213,0 +1707885159,213,0 +1707885159,213,0 +1707885160,214,0 +1707885160,214,0 +1707885161,214,0 +1707885161,214,0 +1707885162,214,0 +1707885162,214,0 +1707885163,214,0 +1707885163,214,0 +1707885164,214,0 +1707885164,214,0 +1707885164,214,0 +1707885165,214,0 +1707885165,214,0 +1707885166,214,0 +1707885166,213,0 +1707885167,213,0 +1707885167,213,0 +1707885168,213,0 +1707885168,213,0 +1707885169,213,0 +1707885169,213,0 +1707885170,213,0 +1707885170,214,0 +1707885171,214,0 +1707885171,214,0 +1707885172,214,0 +1707885172,214,0 +1707885173,214,0 +1707885173,214,0 +1707885174,214,0 +1707885174,214,0 +1707885175,214,0 +1707885175,214,0 +1707885176,213,0 +1707885176,213,0 +1707885177,213,0 +1707885177,213,0 +1707885178,214,0 +1707885178,214,0 +1707885178,213,0 +1707885179,213,0 +1707885179,213,0 +1707885180,214,0 +1707885180,214,0 +1707885181,214,0 +1707885181,214,0 +1707885182,214,0 +1707885182,214,0 +1707885183,214,0 +1707885183,214,0 +1707885184,214,0 +1707885184,214,0 +1707885185,213,0 +1707885185,213,0 +1707885186,213,0 +1707885186,213,0 +1707885187,213,0 +1707885187,213,0 +1707885188,213,0 +1707885188,213,0 +1707885189,213,0 +1707885189,213,0 +1707885190,213,0 +1707885190,214,0 +1707885191,214,0 +1707885191,214,0 +1707885191,214,0 +1707885192,214,0 +1707885192,214,0 +1707885193,214,0 +1707885193,214,0 +1707885194,214,0 +1707885194,213,0 +1707885195,213,0 +1707885195,213,0 +1707885196,213,0 +1707885196,213,0 +1707885197,213,0 +1707885197,213,0 +1707885198,213,0 +1707885198,213,0 +1707885199,214,0 +1707885199,214,0 +1707885200,214,0 +1707885200,214,0 +1707885201,214,0 +1707885201,214,0 +1707885202,214,0 +1707885202,214,0 +1707885203,214,0 +1707885203,214,0 +1707885203,213,0 +1707885204,213,0 +1707885204,213,0 +1707885205,213,0 +1707885205,213,0 +1707885206,213,0 +1707885206,213,0 +1707885207,213,0 +1707885207,213,0 +1707885208,214,0 +1707885208,214,0 +1707885209,214,0 +1707885209,213,0 +1707885210,214,0 +1707885210,214,0 +1707885211,214,0 +1707885211,214,0 +1707885212,214,0 +1707885212,214,0 +1707885213,213,0 +1707885213,213,0 +1707885214,213,0 +1707885214,213,0 +1707885215,213,0 +1707885215,213,0 +1707885216,213,0 +1707885216,213,0 +1707885217,213,0 +1707885217,213,0 +1707885217,214,0 +1707885218,213,0 +1707885218,214,0 +1707885219,214,0 +1707885219,214,0 +1707885220,214,0 +1707885220,214,0 +1707885221,214,0 +1707885221,214,0 +1707885222,214,0 +1707885222,213,0 +1707885223,213,0 +1707885223,213,0 +1707885224,213,0 +1707885224,214,0 +1707885225,213,0 +1707885225,214,0 +1707885226,213,0 +1707885226,213,0 +1707885227,214,0 +1707885227,214,0 +1707885228,214,0 +1707885228,214,0 +1707885229,214,0 +1707885229,214,0 +1707885230,214,0 +1707885230,214,0 +1707885231,214,0 +1707885231,214,0 +1707885232,213,0 +1707885232,213,0 +1707885233,213,0 +1707885233,213,0 +1707885234,213,0 +1707885234,213,0 +1707885234,213,0 +1707885235,213,0 +1707885235,214,0 +1707885236,214,0 +1707885236,214,0 +1707885237,214,0 +1707885237,214,0 +1707885238,214,0 +1707885238,214,0 +1707885239,214,0 +1707885239,214,0 +1707885240,214,0 +1707885240,214,0 +1707885241,213,0 +1707885241,213,0 +1707885242,213,0 +1707885242,213,0 +1707885243,213,0 +1707885243,213,0 +1707885244,214,0 +1707885244,213,0 +1707885245,214,0 +1707885245,214,0 +1707885246,214,0 +1707885246,214,0 +1707885247,214,0 +1707885247,214,0 +1707885248,214,0 +1707885248,214,0 +1707885249,214,0 +1707885249,214,0 +1707885250,214,0 +1707885250,213,0 +1707885250,213,0 +1707885251,213,0 +1707885251,213,0 +1707885252,213,0 +1707885252,213,0 +1707885253,213,0 +1707885253,214,0 +1707885254,213,0 +1707885254,214,0 +1707885255,214,0 +1707885255,214,0 +1707885256,214,0 +1707885256,214,0 +1707885257,214,0 +1707885257,214,0 +1707885258,214,0 +1707885258,214,0 +1707885259,214,0 +1707885259,214,0 +1707885260,213,0 +1707885260,213,0 +1707885261,213,0 +1707885261,213,0 +1707885262,213,0 +1707885262,213,0 +1707885263,213,0 +1707885263,213,0 +1707885264,213,0 +1707885264,213,0 +1707885264,214,0 +1707885265,214,0 +1707885265,214,0 +1707885266,214,0 +1707885266,214,0 +1707885267,214,0 +1707885267,214,0 +1707885268,214,0 +1707885268,214,0 +1707885269,213,0 +1707885269,213,0 +1707885270,213,0 +1707885270,213,0 +1707885271,213,0 +1707885271,213,0 +1707885272,213,0 +1707885272,213,0 +1707885273,213,0 +1707885273,214,0 +1707885274,213,0 +1707885274,214,0 +1707885275,214,0 +1707885275,214,0 +1707885276,214,0 +1707885276,214,0 +1707885277,214,0 +1707885277,214,0 +1707885277,214,0 +1707885278,213,0 +1707885278,213,0 +1707885279,213,0 +1707885279,213,0 +1707885280,213,0 +1707885280,213,0 +1707885281,213,0 +1707885281,213,0 +1707885282,213,0 +1707885282,213,0 +1707885283,213,0 +1707885283,214,0 +1707885284,214,0 +1707885284,214,0 +1707885285,214,0 +1707885285,214,0 +1707885286,214,0 +1707885286,214,0 +1707885287,214,0 +1707885287,213,0 +1707885288,213,0 +1707885288,213,0 +1707885289,213,0 +1707885289,213,0 +1707885290,213,0 +1707885290,213,0 +1707885291,213,0 +1707885291,213,0 +1707885291,213,0 +1707885292,214,0 +1707885292,214,0 +1707885293,214,0 +1707885293,214,0 +1707885294,214,0 +1707885294,214,0 +1707885295,214,0 +1707885295,214,0 +1707885296,214,0 +1707885296,213,0 +1707885297,213,0 +1707885297,213,0 +1707885298,213,0 +1707885298,213,0 +1707885299,213,0 +1707885299,213,0 +1707885300,213,0 +1707885300,214,0 +1707885301,214,0 +1707885301,214,0 +1707885302,214,0 +1707885302,214,0 +1707885303,214,0 +1707885303,214,0 +1707885304,214,0 +1707885304,214,0 +1707885305,214,0 +1707885305,214,0 +1707885306,213,0 +1707885306,213,0 +1707885306,213,0 +1707885307,213,0 +1707885307,213,0 +1707885308,213,0 +1707885308,214,0 +1707885309,213,0 +1707885309,213,0 +1707885310,214,0 +1707885310,213,0 +1707885311,214,0 +1707885311,214,0 +1707885312,214,0 +1707885312,214,0 +1707885313,214,0 +1707885313,214,0 +1707885314,214,0 +1707885314,214,0 +1707885315,214,0 +1707885315,213,0 +1707885316,213,0 +1707885316,214,0 +1707885317,213,0 +1707885317,214,0 +1707885318,213,0 +1707885318,214,0 +1707885319,214,0 +1707885319,214,0 +1707885320,214,0 +1707885320,214,0 +1707885321,214,0 +1707885321,214,0 +1707885322,214,0 +1707885322,214,0 +1707885322,214,0 +1707885323,214,0 +1707885323,214,0 +1707885324,214,0 +1707885324,213,0 +1707885325,213,0 +1707885325,213,0 +1707885326,213,0 +1707885326,213,0 +1707885327,213,0 +1707885327,214,0 +1707885328,214,0 +1707885328,213,0 +1707885329,214,0 +1707885329,214,0 +1707885330,214,0 +1707885330,214,0 +1707885331,214,0 +1707885331,214,0 +1707885332,214,0 +1707885332,214,0 +1707885333,214,0 +1707885333,214,0 +1707885334,214,0 +1707885334,213,0 +1707885334,213,0 +1707885335,213,0 +1707885335,213,0 +1707885336,214,0 +1707885336,214,0 +1707885337,214,0 +1707885337,214,0 +1707885338,214,0 +1707885338,214,0 +1707885339,214,0 +1707885339,214,0 +1707885340,214,0 +1707885340,214,0 +1707885341,214,0 +1707885341,214,0 +1707885342,214,0 +1707885342,214,0 +1707885343,214,0 +1707885343,213,0 +1707885344,213,0 +1707885344,213,0 +1707885345,213,0 +1707885345,213,0 +1707885346,213,0 +1707885346,213,0 +1707885347,214,0 +1707885347,213,0 +1707885348,214,0 +1707885348,214,0 +1707885349,214,0 +1707885349,214,0 +1707885349,214,0 +1707885350,214,0 +1707885350,214,0 +1707885351,214,0 +1707885351,214,0 +1707885352,214,0 +1707885352,213,0 +1707885353,213,0 +1707885353,213,0 +1707885354,213,0 +1707885354,213,0 +1707885355,213,0 +1707885355,213,0 +1707885356,213,0 +1707885356,213,0 +1707885357,213,0 +1707885357,213,0 +1707885358,213,0 +1707885358,214,0 +1707885359,214,0 +1707885359,214,0 +1707885360,214,0 +1707885360,214,0 +1707885361,214,0 +1707885361,214,0 +1707885362,213,0 +1707885362,213,0 +1707885363,213,0 +1707885363,213,0 +1707885364,213,0 +1707885364,213,0 +1707885365,213,0 +1707885365,213,0 +1707885366,213,0 +1707885366,213,0 +1707885367,213,0 +1707885367,214,0 +1707885368,214,0 +1707885368,214,0 +1707885369,214,0 +1707885369,214,0 +1707885369,214,0 +1707885370,214,0 +1707885370,214,0 +1707885371,213,0 +1707885371,213,0 +1707885372,213,0 +1707885372,213,0 +1707885373,213,0 +1707885373,213,0 +1707885374,213,0 +1707885374,213,0 +1707885375,213,0 +1707885375,213,0 +1707885376,214,0 +1707885376,214,0 +1707885377,214,0 +1707885377,214,0 +1707885378,214,0 +1707885378,214,0 +1707885379,214,0 +1707885379,214,0 +1707885380,214,0 +1707885380,213,0 +1707885381,213,0 +1707885381,213,0 +1707885382,213,0 +1707885382,213,0 +1707885383,213,0 +1707885383,213,0 +1707885384,213,0 +1707885384,213,0 +1707885384,214,0 +1707885385,214,0 +1707885385,214,0 +1707885386,214,0 +1707885386,214,0 +1707885387,214,0 +1707885387,214,0 +1707885388,214,0 +1707885388,214,0 +1707885389,214,0 +1707885389,213,0 +1707885390,213,0 +1707885390,213,0 +1707885391,213,0 +1707885391,213,0 +1707885392,213,0 +1707885392,213,0 +1707885393,213,0 +1707885393,213,0 +1707885394,213,0 +1707885394,213,0 +1707885395,213,0 +1707885395,214,0 +1707885396,214,0 +1707885396,214,0 +1707885397,214,0 +1707885397,214,0 +1707885397,214,0 +1707885398,214,0 +1707885398,214,0 +1707885399,213,0 +1707885399,213,0 +1707885400,213,0 +1707885400,213,0 +1707885401,213,0 +1707885401,213,0 +1707885402,213,0 +1707885402,213,0 +1707885403,213,0 +1707885403,213,0 +1707885404,213,0 +1707885404,213,0 +1707885405,213,0 +1707885405,214,0 +1707885406,214,0 +1707885406,213,0 +1707885407,214,0 +1707885407,214,0 +1707885408,214,0 +1707885408,213,0 +1707885409,213,0 +1707885409,213,0 +1707885410,213,0 +1707885410,213,0 +1707885411,213,0 +1707885411,213,0 +1707885412,213,0 +1707885412,213,0 +1707885412,213,0 +1707885413,213,0 +1707885413,214,0 +1707885414,214,0 +1707885414,214,0 +1707885415,214,0 +1707885415,214,0 +1707885416,214,0 +1707885416,214,0 +1707885417,214,0 +1707885417,213,0 +1707885418,213,0 +1707885418,213,0 +1707885419,213,0 +1707885419,213,0 +1707885420,213,0 +1707885420,213,0 +1707885421,213,0 +1707885421,213,0 +1707885422,214,0 +1707885422,214,0 +1707885423,214,0 +1707885423,214,0 +1707885424,214,0 +1707885424,214,0 +1707885425,214,0 +1707885425,214,0 +1707885426,214,0 +1707885426,214,0 +1707885426,213,0 +1707885427,213,0 +1707885427,213,0 +1707885428,213,0 +1707885428,213,0 +1707885429,213,0 +1707885429,213,0 +1707885430,213,0 +1707885430,213,0 +1707885431,213,0 +1707885431,213,0 +1707885432,214,0 +1707885432,214,0 +1707885433,214,0 +1707885433,214,0 +1707885434,214,0 +1707885434,214,0 +1707885435,214,0 +1707885435,214,0 +1707885436,213,0 +1707885436,213,0 +1707885437,213,0 +1707885437,213,0 +1707885438,213,0 +1707885438,213,0 +1707885439,213,0 +1707885439,213,0 +1707885440,213,0 +1707885440,214,0 +1707885441,214,0 +1707885441,214,0 +1707885441,214,0 +1707885442,214,0 +1707885442,214,0 +1707885443,214,0 +1707885443,214,0 +1707885444,214,0 +1707885444,214,0 +1707885445,214,0 +1707885445,213,0 +1707885446,213,0 +1707885446,213,0 +1707885447,213,0 +1707885447,213,0 +1707885448,213,0 +1707885448,213,0 +1707885449,213,0 +1707885449,214,0 +1707885450,214,0 +1707885450,214,0 +1707885451,214,0 +1707885451,214,0 +1707885452,214,0 +1707885452,214,0 +1707885453,214,0 +1707885453,214,0 +1707885454,214,0 +1707885454,214,0 +1707885455,213,0 +1707885455,213,0 +1707885456,213,0 +1707885456,213,0 +1707885456,213,0 +1707885457,213,0 +1707885457,213,0 +1707885458,213,0 +1707885458,213,0 +1707885459,213,0 +1707885459,213,0 +1707885460,213,0 +1707885460,213,0 +1707885461,214,0 +1707885461,214,0 +1707885462,214,0 +1707885462,214,0 +1707885463,214,0 +1707885463,214,0 +1707885464,213,0 +1707885464,213,0 +1707885465,213,0 +1707885465,213,0 +1707885466,213,0 +1707885466,213,0 +1707885467,213,0 +1707885467,214,0 +1707885468,213,0 +1707885468,213,0 +1707885469,214,0 +1707885469,214,0 +1707885470,214,0 +1707885470,214,0 +1707885471,214,0 +1707885471,214,0 +1707885472,214,0 +1707885472,214,0 +1707885472,214,0 +1707885473,213,0 +1707885473,213,0 +1707885474,213,0 +1707885474,213,0 +1707885475,213,0 +1707885475,213,0 +1707885476,213,0 +1707885476,213,0 +1707885477,213,0 +1707885477,213,0 +1707885478,214,0 +1707885478,214,0 +1707885479,214,0 +1707885479,214,0 +1707885480,214,0 +1707885480,214,0 +1707885481,214,0 +1707885481,214,0 +1707885482,214,0 +1707885482,214,0 +1707885483,213,0 +1707885483,213,0 +1707885484,213,0 +1707885484,213,0 +1707885485,213,0 +1707885485,213,0 +1707885486,213,0 +1707885486,213,0 +1707885486,213,0 +1707885487,213,0 +1707885487,213,0 +1707885488,214,0 +1707885488,213,0 +1707885489,213,0 +1707885489,214,0 +1707885490,214,0 +1707885490,214,0 +1707885491,214,0 +1707885491,214,0 +1707885492,214,0 +1707885492,214,0 +1707885493,214,0 +1707885493,214,0 +1707885494,214,0 +1707885494,214,0 +1707885495,214,0 +1707885495,214,0 +1707885496,214,0 +1707885496,213,0 +1707885497,213,0 +1707885497,213,0 +1707885498,213,0 +1707885498,213,0 +1707885499,213,0 +1707885499,213,0 +1707885500,214,0 +1707885500,213,0 +1707885501,213,0 +1707885501,214,0 +1707885501,214,0 +1707885502,214,0 +1707885502,214,0 +1707885503,214,0 +1707885503,214,0 +1707885504,214,0 +1707885504,214,0 +1707885505,214,0 +1707885505,213,0 +1707885506,213,0 +1707885506,213,0 +1707885507,213,0 +1707885507,213,0 +1707885508,213,0 +1707885508,213,0 +1707885509,213,0 +1707885509,213,0 +1707885510,213,0 +1707885510,214,0 +1707885511,214,0 +1707885511,214,0 +1707885512,214,0 +1707885512,214,0 +1707885513,214,0 +1707885513,214,0 +1707885514,214,0 +1707885514,214,0 +1707885514,214,0 +1707885515,213,0 +1707885515,213,0 +1707885516,213,0 +1707885516,213,0 +1707885517,213,0 +1707885517,213,0 +1707885518,214,0 +1707885518,213,0 +1707885519,213,0 +1707885519,214,0 +1707885520,214,0 +1707885520,214,0 +1707885521,214,0 +1707885521,214,0 +1707885522,214,0 +1707885522,214,0 +1707885523,214,0 +1707885523,214,0 +1707885524,214,0 +1707885524,213,0 +1707885525,213,0 +1707885525,213,0 +1707885526,213,0 +1707885526,214,0 +1707885527,214,0 +1707885527,214,0 +1707885528,214,0 +1707885528,214,0 +1707885529,214,0 +1707885529,214,0 +1707885530,214,0 +1707885530,214,0 +1707885531,214,0 +1707885531,214,0 +1707885531,214,0 +1707885532,214,0 +1707885532,214,0 +1707885533,214,0 +1707885533,213,0 +1707885534,213,0 +1707885534,213,0 +1707885535,213,0 +1707885535,213,0 +1707885536,213,0 +1707885536,213,0 +1707885537,214,0 +1707885537,214,0 +1707885538,214,0 +1707885538,214,0 +1707885539,214,0 +1707885539,214,0 +1707885540,214,0 +1707885540,214,0 +1707885541,214,0 +1707885541,214,0 +1707885542,214,0 +1707885542,214,0 +1707885543,213,0 +1707885543,213,0 +1707885544,213,0 +1707885544,213,0 +1707885545,213,0 +1707885545,213,0 +1707885546,213,0 +1707885546,213,0 +1707885546,213,0 +1707885547,213,0 +1707885547,214,0 +1707885548,214,0 +1707885548,214,0 +1707885549,214,0 +1707885549,214,0 +1707885550,214,0 +1707885550,214,0 +1707885551,214,0 +1707885551,214,0 +1707885552,214,0 +1707885552,213,0 +1707885553,213,0 +1707885553,213,0 +1707885554,213,0 +1707885554,213,0 +1707885555,213,0 +1707885555,213,0 +1707885556,213,0 +1707885556,213,0 +1707885557,213,0 +1707885557,213,0 +1707885558,214,0 +1707885558,214,0 +1707885559,214,0 +1707885559,214,0 +1707885560,214,0 +1707885560,214,0 +1707885560,214,0 +1707885561,214,0 +1707885561,213,0 +1707885562,213,0 +1707885562,213,0 +1707885563,213,0 +1707885563,213,0 +1707885564,213,0 +1707885564,213,0 +1707885565,213,0 +1707885565,213,0 +1707885566,214,0 +1707885566,214,0 +1707885567,214,0 +1707885567,214,0 +1707885568,214,0 +1707885568,214,0 +1707885569,214,0 +1707885569,214,0 +1707885570,214,0 +1707885570,214,0 +1707885571,213,0 +1707885571,213,0 +1707885572,213,0 +1707885572,213,0 +1707885573,213,0 +1707885573,213,0 +1707885574,213,0 +1707885574,213,0 +1707885575,213,0 +1707885575,213,0 +1707885575,213,0 +1707885576,213,0 +1707885576,213,0 +1707885577,214,0 +1707885577,214,0 +1707885578,214,0 +1707885578,214,0 +1707885579,214,0 +1707885579,214,0 +1707885580,213,0 +1707885580,213,0 +1707885581,213,0 +1707885581,213,0 +1707885582,213,0 +1707885582,213,0 +1707885583,213,0 +1707885583,213,0 +1707885584,213,0 +1707885584,213,0 +1707885585,213,0 +1707885585,213,0 +1707885586,214,0 +1707885586,214,0 +1707885587,214,0 +1707885587,214,0 +1707885588,214,0 +1707885588,214,0 +1707885589,214,0 +1707885589,213,0 +1707885590,213,0 +1707885590,213,0 +1707885590,213,0 +1707885591,213,0 +1707885591,213,0 +1707885592,213,0 +1707885592,213,0 +1707885593,213,0 +1707885593,213,0 +1707885594,214,0 +1707885594,214,0 +1707885595,214,0 +1707885595,214,0 +1707885596,214,0 +1707885596,214,0 +1707885597,214,0 +1707885597,214,0 +1707885598,214,0 +1707885598,214,0 +1707885599,213,0 +1707885599,213,0 +1707885600,213,0 +1707885600,213,0 +1707885601,213,0 +1707885601,213,0 +1707885602,213,0 +1707885602,213,0 +1707885603,213,0 +1707885603,213,0 +1707885603,213,0 +1707885604,213,0 +1707885604,213,0 +1707885605,213,0 +1707885605,214,0 +1707885606,213,0 +1707885606,214,0 +1707885607,214,0 +1707885607,214,0 +1707885608,213,0 +1707885608,213,0 +1707885609,213,0 +1707885609,213,0 +1707885610,213,0 +1707885610,213,0 +1707885611,213,0 +1707885611,213,0 +1707885612,213,0 +1707885612,214,0 +1707885613,214,0 +1707885613,214,0 +1707885614,214,0 +1707885614,214,0 +1707885615,214,0 +1707885615,214,0 +1707885616,214,0 +1707885616,214,0 +1707885616,214,0 +1707885617,213,0 +1707885617,213,0 +1707885618,213,0 +1707885618,213,0 +1707885619,213,0 +1707885619,213,0 +1707885620,213,0 +1707885620,213,0 +1707885621,213,0 +1707885621,213,0 +1707885622,214,0 +1707885622,214,0 +1707885623,214,0 +1707885623,214,0 +1707885624,214,0 +1707885624,214,0 +1707885625,214,0 +1707885625,214,0 +1707885626,214,0 +1707885626,213,0 +1707885627,213,0 +1707885627,213,0 +1707885628,213,0 +1707885628,213,0 +1707885629,213,0 +1707885629,213,0 +1707885630,213,0 +1707885630,213,0 +1707885631,214,0 +1707885631,214,0 +1707885631,214,0 +1707885632,214,0 +1707885632,214,0 +1707885633,214,0 +1707885633,214,0 +1707885634,214,0 +1707885634,214,0 +1707885635,214,0 +1707885635,214,0 +1707885636,213,0 +1707885636,213,0 +1707885637,213,0 +1707885637,213,0 +1707885638,213,0 +1707885638,213,0 +1707885639,213,0 +1707885639,213,0 +1707885640,213,0 +1707885640,214,0 +1707885641,214,0 +1707885641,214,0 +1707885642,214,0 +1707885642,214,0 +1707885643,214,0 +1707885643,214,0 +1707885644,214,0 +1707885644,214,0 +1707885645,214,0 +1707885645,213,0 +1707885646,213,0 +1707885646,213,0 +1707885647,214,0 +1707885647,213,0 +1707885648,214,0 +1707885648,213,0 +1707885648,214,0 +1707885649,214,0 +1707885649,214,0 +1707885650,214,0 +1707885650,214,0 +1707885651,214,0 +1707885651,214,0 +1707885652,214,0 +1707885652,214,0 +1707885653,214,0 +1707885653,214,0 +1707885654,214,0 +1707885654,213,0 +1707885655,213,0 +1707885655,213,0 +1707885656,213,0 +1707885656,213,0 +1707885657,213,0 +1707885657,213,0 +1707885658,214,0 +1707885658,213,0 +1707885659,214,0 +1707885659,214,0 +1707885660,214,0 +1707885660,214,0 +1707885661,214,0 +1707885661,214,0 +1707885662,214,0 +1707885662,214,0 +1707885663,214,0 +1707885663,214,0 +1707885663,213,0 +1707885664,213,0 +1707885664,213,0 +1707885665,213,0 +1707885665,213,0 +1707885666,213,0 +1707885666,213,0 +1707885667,213,0 +1707885667,213,0 +1707885668,214,0 +1707885668,214,0 +1707885669,214,0 +1707885669,214,0 +1707885670,214,0 +1707885670,214,0 +1707885671,214,0 +1707885671,214,0 +1707885672,214,0 +1707885672,214,0 +1707885673,213,0 +1707885673,213,0 +1707885674,213,0 +1707885674,213,0 +1707885675,213,0 +1707885675,213,0 +1707885676,213,0 +1707885676,213,0 +1707885677,213,0 +1707885677,213,0 +1707885678,213,0 +1707885678,214,0 +1707885679,214,0 +1707885679,213,0 +1707885679,214,0 +1707885680,214,0 +1707885680,214,0 +1707885681,214,0 +1707885681,214,0 +1707885682,214,0 +1707885682,213,0 +1707885683,213,0 +1707885683,213,0 +1707885684,213,0 +1707885684,213,0 +1707885685,213,0 +1707885685,213,0 +1707885686,213,0 +1707885686,213,0 +1707885687,213,0 +1707885687,214,0 +1707885688,214,0 +1707885688,214,0 +1707885689,214,0 +1707885689,214,0 +1707885690,214,0 +1707885690,214,0 +1707885691,214,0 +1707885691,214,0 +1707885692,213,0 +1707885692,213,0 +1707885693,213,0 +1707885693,213,0 +1707885693,213,0 +1707885694,213,0 +1707885694,214,0 +1707885695,213,0 +1707885695,213,0 +1707885696,214,0 +1707885696,214,0 +1707885697,214,0 +1707885697,214,0 +1707885698,214,0 +1707885698,214,0 +1707885699,214,0 +1707885699,214,0 +1707885700,214,0 +1707885700,214,0 +1707885701,213,0 +1707885701,213,0 +1707885702,213,0 +1707885702,214,0 +1707885703,214,0 +1707885703,213,0 +1707885704,214,0 +1707885704,214,0 +1707885705,214,0 +1707885705,214,0 +1707885706,214,0 +1707885706,214,0 +1707885706,214,0 +1707885707,214,0 +1707885707,214,0 +1707885708,214,0 +1707885708,214,0 +1707885709,214,0 +1707885709,214,0 +1707885710,214,0 +1707885710,214,0 +1707885711,214,0 +1707885711,214,0 +1707885712,214,0 +1707885712,214,0 +1707885713,214,0 +1707885713,214,0 +1707885714,214,0 +1707885714,214,0 +1707885715,214,0 +1707885715,214,0 +1707885716,214,0 +1707885716,214,0 +1707885717,214,0 +1707885717,214,0 +1707885718,214,0 +1707885718,214,0 +1707885719,214,0 +1707885719,214,0 +1707885719,213,0 +1707885720,213,0 +1707885720,213,0 +1707885721,213,0 +1707885721,213,0 +1707885722,214,0 +1707885722,214,0 +1707885723,214,0 +1707885723,214,0 +1707885724,214,0 +1707885724,214,0 +1707885725,214,0 +1707885725,214,0 +1707885726,214,0 +1707885726,214,0 +1707885727,214,0 +1707885727,214,0 +1707885728,214,0 +1707885728,214,0 +1707885729,213,0 +1707885729,213,0 +1707885730,213,0 +1707885730,213,0 +1707885731,213,0 +1707885731,213,0 +1707885731,213,0 +1707885732,213,0 +1707885732,214,0 +1707885733,214,0 +1707885733,213,0 +1707885734,214,0 +1707885734,214,0 +1707885735,214,0 +1707885735,214,0 +1707885736,214,0 +1707885736,214,0 +1707885737,214,0 +1707885737,214,0 +1707885738,213,0 +1707885738,213,0 +1707885739,213,0 +1707885739,213,0 +1707885740,213,0 +1707885740,213,0 +1707885741,213,0 +1707885741,213,0 +1707885742,213,0 +1707885742,213,0 +1707885743,213,0 +1707885743,213,0 +1707885743,214,0 +1707885744,214,0 +1707885744,214,0 +1707885745,214,0 +1707885745,214,0 +1707885746,214,0 +1707885746,214,0 +1707885747,214,0 +1707885747,213,0 +1707885748,213,0 +1707885748,213,0 +1707885749,213,0 +1707885749,213,0 +1707885750,213,0 +1707885750,213,0 +1707885751,213,0 +1707885751,213,0 +1707885752,214,0 +1707885752,214,0 +1707885753,214,0 +1707885753,214,0 +1707885754,214,0 +1707885754,214,0 +1707885755,214,0 +1707885755,214,0 +1707885755,214,0 +1707885756,214,0 +1707885756,213,0 +1707885757,213,0 +1707885757,213,0 +1707885758,213,0 +1707885758,213,0 +1707885759,213,0 +1707885759,213,0 +1707885760,213,0 +1707885760,213,0 +1707885761,213,0 +1707885761,213,0 +1707885762,214,0 +1707885762,214,0 +1707885763,214,0 +1707885763,214,0 +1707885764,214,0 +1707885764,214,0 +1707885765,214,0 +1707885765,214,0 +1707885766,214,0 +1707885766,213,0 +1707885767,213,0 +1707885767,213,0 +1707885767,213,0 +1707885768,213,0 +1707885768,214,0 +1707885769,213,0 +1707885769,213,0 +1707885770,213,0 +1707885770,213,0 +1707885771,213,0 +1707885771,214,0 +1707885772,214,0 +1707885772,213,0 +1707885773,214,0 +1707885773,214,0 +1707885774,214,0 +1707885774,214,0 +1707885775,214,0 +1707885775,213,0 +1707885776,213,0 +1707885776,213,0 +1707885777,213,0 +1707885777,213,0 +1707885778,213,0 +1707885778,213,0 +1707885779,213,0 +1707885779,213,0 +1707885780,213,0 +1707885780,213,0 +1707885781,214,0 +1707885781,213,0 +1707885782,214,0 +1707885782,213,0 +1707885782,213,0 +1707885783,214,0 +1707885783,214,0 +1707885784,214,0 +1707885784,213,0 +1707885785,213,0 +1707885785,213,0 +1707885786,213,0 +1707885786,213,0 +1707885787,213,0 +1707885787,213,0 +1707885788,213,0 +1707885788,213,0 +1707885789,213,0 +1707885789,213,0 +1707885790,213,0 +1707885790,214,0 +1707885791,214,0 +1707885791,214,0 +1707885792,214,0 +1707885792,214,0 +1707885793,214,0 +1707885793,214,0 +1707885794,213,0 +1707885794,213,0 +1707885795,213,0 +1707885795,213,0 +1707885796,213,0 +1707885796,213,0 +1707885796,213,0 +1707885797,213,0 +1707885797,213,0 +1707885798,214,0 +1707885798,214,0 +1707885799,213,0 +1707885799,214,0 +1707885800,214,0 +1707885800,214,0 +1707885801,214,0 +1707885801,214,0 +1707885802,214,0 +1707885802,214,0 +1707885803,214,0 +1707885803,213,0 +1707885804,213,0 +1707885804,213,0 +1707885805,213,0 +1707885805,213,0 +1707885806,213,0 +1707885806,213,0 +1707885807,213,0 +1707885807,214,0 +1707885808,214,0 +1707885808,214,0 +1707885809,214,0 +1707885809,214,0 +1707885809,214,0 +1707885810,214,0 +1707885810,214,0 +1707885811,214,0 +1707885811,214,0 +1707885812,214,0 +1707885812,213,0 +1707885813,213,0 +1707885813,213,0 +1707885814,213,0 +1707885814,213,0 +1707885815,213,0 +1707885815,213,0 +1707885816,213,0 +1707885816,213,0 +1707885817,214,0 +1707885817,214,0 +1707885818,214,0 +1707885818,214,0 +1707885819,214,0 +1707885819,214,0 +1707885820,214,0 +1707885820,214,0 +1707885821,214,0 +1707885821,214,0 +1707885822,213,0 +1707885822,213,0 +1707885823,213,0 +1707885823,213,0 +1707885824,213,0 +1707885824,213,0 +1707885825,213,0 +1707885825,213,0 +1707885825,214,0 +1707885826,214,0 +1707885826,214,0 +1707885827,214,0 +1707885827,214,0 +1707885828,214,0 +1707885828,214,0 +1707885829,214,0 +1707885829,214,0 +1707885830,214,0 +1707885830,214,0 +1707885831,213,0 +1707885831,213,0 +1707885832,213,0 +1707885832,213,0 +1707885833,213,0 +1707885833,213,0 +1707885834,213,0 +1707885834,213,0 +1707885835,213,0 +1707885835,213,0 +1707885836,214,0 +1707885836,214,0 +1707885837,214,0 +1707885837,214,0 +1707885838,214,0 +1707885838,214,0 +1707885839,214,0 +1707885839,214,0 +1707885840,214,0 +1707885840,213,0 +1707885841,213,0 +1707885841,213,0 +1707885842,213,0 +1707885842,213,0 +1707885842,213,0 +1707885843,213,0 +1707885843,213,0 +1707885844,213,0 +1707885844,213,0 +1707885845,213,0 +1707885845,213,0 +1707885846,213,0 +1707885846,214,0 +1707885847,214,0 +1707885847,214,0 +1707885848,214,0 +1707885848,214,0 +1707885849,214,0 +1707885849,213,0 +1707885850,213,0 +1707885850,213,0 +1707885851,213,0 +1707885851,213,0 +1707885852,213,0 +1707885852,213,0 +1707885853,214,0 +1707885853,213,0 +1707885854,213,0 +1707885854,213,0 +1707885855,214,0 +1707885855,214,0 +1707885856,214,0 +1707885856,214,0 +1707885857,214,0 +1707885857,214,0 +1707885858,214,0 +1707885858,214,0 +1707885858,213,0 +1707885859,213,0 +1707885859,213,0 +1707885860,213,0 +1707885860,213,0 +1707885861,213,0 +1707885861,213,0 +1707885862,213,0 +1707885862,213,0 +1707885863,213,0 +1707885863,213,0 +1707885864,213,0 +1707885864,214,0 +1707885865,214,0 +1707885865,214,0 +1707885866,214,0 +1707885866,214,0 +1707885867,214,0 +1707885867,214,0 +1707885868,213,0 +1707885868,213,0 +1707885869,213,0 +1707885869,213,0 +1707885870,213,0 +1707885870,213,0 +1707885871,213,0 +1707885871,213,0 +1707885872,213,0 +1707885872,213,0 +1707885873,213,0 +1707885873,213,0 +1707885874,213,0 +1707885874,214,0 +1707885874,213,0 +1707885875,214,0 +1707885875,213,0 +1707885876,214,0 +1707885876,213,0 +1707885877,214,0 +1707885877,213,0 +1707885878,213,0 +1707885878,213,0 +1707885879,213,0 +1707885879,213,0 +1707885880,213,0 +1707885880,213,0 +1707885881,213,0 +1707885881,213,0 +1707885882,213,0 +1707885882,213,0 +1707885883,213,0 +1707885883,213,0 +1707885884,213,0 +1707885884,213,0 +1707885885,213,0 +1707885885,214,0 +1707885886,214,0 +1707885886,214,0 +1707885887,213,0 +1707885887,213,0 +1707885888,213,0 +1707885888,213,0 +1707885889,213,0 +1707885889,213,0 +1707885889,213,0 +1707885890,213,0 +1707885890,214,0 +1707885891,213,0 +1707885891,213,0 +1707885892,214,0 +1707885892,214,0 +1707885893,214,0 +1707885893,214,0 +1707885894,214,0 +1707885894,214,0 +1707885895,214,0 +1707885895,214,0 +1707885896,213,0 +1707885896,213,0 +1707885897,213,0 +1707885897,213,0 +1707885898,213,0 +1707885898,213,0 +1707885899,214,0 +1707885899,214,0 +1707885900,214,0 +1707885900,214,0 +1707885901,214,0 +1707885901,214,0 +1707885902,214,0 +1707885902,214,0 +1707885902,214,0 +1707885903,214,0 +1707885903,214,0 +1707885904,214,0 +1707885904,214,0 +1707885905,214,0 +1707885905,213,0 +1707885906,213,0 +1707885906,213,0 +1707885907,214,0 +1707885907,213,0 +1707885908,213,0 +1707885908,214,0 +1707885909,214,0 +1707885909,214,0 +1707885910,214,0 +1707885910,214,0 +1707885911,214,0 +1707885911,214,0 +1707885912,214,0 +1707885912,214,0 +1707885913,214,0 +1707885913,214,0 +1707885914,214,0 +1707885914,214,0 +1707885915,213,0 +1707885915,213,0 +1707885916,213,0 +1707885916,213,0 +1707885917,213,0 +1707885917,213,0 +1707885918,214,0 +1707885918,213,0 +1707885918,214,0 +1707885919,214,0 +1707885919,214,0 +1707885920,214,0 +1707885920,214,0 +1707885921,214,0 +1707885921,214,0 +1707885922,214,0 +1707885922,214,0 +1707885923,214,0 +1707885923,214,0 +1707885924,213,0 +1707885924,213,0 +1707885925,213,0 +1707885925,213,0 +1707885926,213,0 +1707885926,213,0 +1707885927,213,0 +1707885927,213,0 +1707885928,213,0 +1707885928,213,0 +1707885929,213,0 +1707885929,214,0 +1707885930,213,0 +1707885930,214,0 +1707885931,214,0 +1707885931,214,0 +1707885931,214,0 +1707885932,214,0 +1707885932,214,0 +1707885933,214,0 +1707885933,213,0 +1707885934,213,0 +1707885934,213,0 +1707885935,213,0 +1707885935,213,0 +1707885936,213,0 +1707885936,213,0 +1707885937,213,0 +1707885937,213,0 +1707885938,213,0 +1707885938,213,0 +1707885939,214,0 +1707885939,214,0 +1707885940,214,0 +1707885940,214,0 +1707885941,214,0 +1707885941,214,0 +1707885942,214,0 +1707885942,213,0 +1707885943,213,0 +1707885943,213,0 +1707885944,213,0 +1707885944,213,0 +1707885945,213,0 +1707885945,213,0 +1707885946,213,0 +1707885946,213,0 +1707885947,213,0 +1707885947,213,0 +1707885948,214,0 +1707885948,213,0 +1707885949,214,0 +1707885949,213,0 +1707885949,214,0 +1707885950,214,0 +1707885950,214,0 +1707885951,214,0 +1707885951,214,0 +1707885952,213,0 +1707885952,213,0 +1707885953,213,0 +1707885953,213,0 +1707885954,213,0 +1707885954,213,0 +1707885955,213,0 +1707885955,214,0 +1707885956,213,0 +1707885956,214,0 +1707885957,214,0 +1707885957,214,0 +1707885958,214,0 +1707885958,214,0 +1707885959,214,0 +1707885959,214,0 +1707885960,214,0 +1707885960,214,0 +1707885961,214,0 +1707885961,213,0 +1707885962,213,0 +1707885962,213,0 +1707885963,213,0 +1707885963,213,0 +1707885964,213,0 +1707885964,214,0 +1707885965,213,0 +1707885965,214,0 +1707885965,214,0 +1707885966,214,0 +1707885966,214,0 +1707885967,214,0 +1707885967,214,0 +1707885968,214,0 +1707885968,214,0 +1707885969,214,0 +1707885969,214,0 +1707885970,214,0 +1707885970,213,0 +1707885971,213,0 +1707885971,213,0 +1707885972,213,0 +1707885972,214,0 +1707885973,214,0 +1707885973,214,0 +1707885974,214,0 +1707885974,214,0 +1707885975,214,0 +1707885975,214,0 +1707885976,214,0 +1707885976,214,0 +1707885977,214,0 +1707885977,214,0 +1707885978,214,0 +1707885978,214,0 +1707885979,214,0 +1707885979,214,0 +1707885980,213,0 +1707885980,213,0 +1707885980,213,0 +1707885981,213,0 +1707885981,213,0 +1707885982,213,0 +1707885982,214,0 +1707885983,214,0 +1707885983,213,0 +1707885984,214,0 +1707885984,214,0 +1707885985,214,0 +1707885985,214,0 +1707885986,214,0 +1707885986,214,0 +1707885987,214,0 +1707885987,214,0 +1707885988,214,0 +1707885988,214,0 +1707885989,213,0 +1707885989,213,0 +1707885990,213,0 +1707885990,213,0 +1707885991,214,0 +1707885991,213,0 +1707885992,213,0 +1707885992,213,0 +1707885993,213,0 +1707885993,213,0 +1707885994,214,0 +1707885994,214,0 +1707885995,214,0 +1707885995,214,0 +1707885996,214,0 +1707885996,214,0 +1707885997,214,0 +1707885997,214,0 +1707885997,214,0 +1707885998,214,0 +1707885998,213,0 +1707885999,213,0 +1707885999,213,0 +1707886000,213,0 +1707886000,213,0 +1707886001,214,0 +1707886001,213,0 +1707886002,214,0 +1707886002,214,0 +1707886003,214,0 +1707886003,213,0 +1707886004,214,0 +1707886004,214,0 +1707886005,214,0 +1707886005,214,0 +1707886006,214,0 +1707886006,214,0 +1707886007,214,0 +1707886007,214,0 +1707886008,213,0 +1707886008,213,0 +1707886009,213,0 +1707886009,213,0 +1707886010,213,0 +1707886010,213,0 +1707886011,213,0 +1707886011,213,0 +1707886012,213,0 +1707886012,213,0 +1707886012,213,0 +1707886013,214,0 +1707886013,214,0 +1707886014,214,0 +1707886014,214,0 +1707886015,214,0 +1707886015,214,0 +1707886016,214,0 +1707886016,214,0 +1707886017,213,0 +1707886017,213,0 +1707886018,213,0 +1707886018,213,0 +1707886019,213,0 +1707886019,213,0 +1707886020,213,0 +1707886020,213,0 +1707886021,213,0 +1707886021,213,0 +1707886022,213,0 +1707886022,213,0 +1707886023,214,0 +1707886023,214,0 +1707886024,214,0 +1707886024,214,0 +1707886025,214,0 +1707886025,214,0 +1707886026,214,0 +1707886026,213,0 +1707886027,213,0 +1707886027,213,0 +1707886028,213,0 +1707886028,213,0 +1707886029,213,0 +1707886029,213,0 +1707886029,213,0 +1707886030,213,0 +1707886030,213,0 +1707886031,213,0 +1707886031,214,0 +1707886032,214,0 +1707886032,214,0 +1707886033,214,0 +1707886033,214,0 +1707886034,214,0 +1707886034,214,0 +1707886035,214,0 +1707886035,214,0 +1707886036,213,0 +1707886036,213,0 +1707886037,213,0 +1707886037,213,0 +1707886038,213,0 +1707886038,213,0 +1707886039,213,0 +1707886039,213,0 +1707886040,213,0 +1707886040,213,0 +1707886041,214,0 +1707886041,214,0 +1707886042,214,0 +1707886042,214,0 +1707886042,214,0 +1707886043,214,0 +1707886043,214,0 +1707886044,214,0 +1707886044,214,0 +1707886045,213,0 +1707886045,213,0 +1707886046,213,0 +1707886046,213,0 +1707886047,213,0 +1707886047,213,0 +1707886048,213,0 +1707886048,213,0 +1707886049,213,0 +1707886049,213,0 +1707886050,213,0 +1707886050,214,0 +1707886051,214,0 +1707886051,214,0 +1707886052,214,0 +1707886052,214,0 +1707886053,214,0 +1707886053,214,0 +1707886054,214,0 +1707886054,213,0 +1707886055,213,0 +1707886055,213,0 +1707886056,213,0 +1707886056,213,0 +1707886057,213,0 +1707886057,213,0 +1707886058,213,0 +1707886058,213,0 +1707886059,213,0 +1707886059,213,0 +1707886059,214,0 +1707886060,213,0 +1707886060,214,0 +1707886061,214,0 +1707886061,214,0 +1707886062,214,0 +1707886062,214,0 +1707886063,214,0 +1707886063,213,0 +1707886064,213,0 +1707886064,213,0 +1707886065,213,0 +1707886065,213,0 +1707886066,213,0 +1707886066,213,0 +1707886067,213,0 +1707886067,214,0 +1707886068,213,0 +1707886068,213,0 +1707886069,214,0 +1707886069,214,0 +1707886070,214,0 +1707886070,214,0 +1707886071,214,0 +1707886071,214,0 +1707886072,214,0 +1707886072,214,0 +1707886073,214,0 +1707886073,213,0 +1707886074,213,0 +1707886074,213,0 +1707886074,213,0 +1707886075,213,0 +1707886075,213,0 +1707886076,213,0 +1707886076,213,0 +1707886077,213,0 +1707886077,213,0 +1707886078,213,0 +1707886078,213,0 +1707886079,213,0 +1707886079,214,0 +1707886080,214,0 +1707886080,213,0 +1707886081,214,0 +1707886081,214,0 +1707886082,213,0 +1707886082,213,0 +1707886083,213,0 +1707886083,213,0 +1707886084,213,0 +1707886084,213,0 +1707886085,213,0 +1707886085,213,0 +1707886086,214,0 +1707886086,214,0 +1707886087,214,0 +1707886087,214,0 +1707886088,214,0 +1707886088,214,0 +1707886089,214,0 +1707886089,214,0 +1707886090,214,0 +1707886090,214,0 +1707886091,214,0 +1707886091,213,0 +1707886092,213,0 +1707886092,214,0 +1707886093,213,0 +1707886093,213,0 +1707886094,214,0 +1707886094,214,0 +1707886095,214,0 +1707886095,214,0 +1707886095,214,0 +1707886096,214,0 +1707886096,214,0 +1707886097,214,0 +1707886097,214,0 +1707886098,214,0 +1707886098,214,0 +1707886099,214,0 +1707886099,214,0 +1707886100,214,0 +1707886100,213,0 +1707886101,213,0 +1707886101,213,0 +1707886102,213,0 +1707886102,214,0 +1707886103,214,0 +1707886103,214,0 +1707886104,214,0 +1707886104,214,0 +1707886105,214,0 +1707886105,214,0 +1707886106,214,0 +1707886106,214,0 +1707886107,214,0 +1707886107,214,0 +1707886108,214,0 +1707886108,214,0 +1707886109,214,0 +1707886109,214,0 +1707886110,213,0 +1707886110,213,0 +1707886111,213,0 +1707886111,213,0 +1707886112,213,0 +1707886112,213,0 +1707886112,213,0 +1707886113,213,0 +1707886113,213,0 +1707886114,213,0 +1707886114,214,0 +1707886115,214,0 +1707886115,214,0 +1707886116,214,0 +1707886116,214,0 +1707886117,214,0 +1707886117,214,0 +1707886118,214,0 +1707886118,214,0 +1707886119,213,0 +1707886119,213,0 +1707886120,213,0 +1707886120,213,0 +1707886121,213,0 +1707886121,213,0 +1707886122,213,0 +1707886122,213,0 +1707886123,213,0 +1707886123,213,0 +1707886124,214,0 +1707886124,213,0 +1707886125,214,0 +1707886125,213,0 +1707886126,214,0 +1707886126,214,0 +1707886127,214,0 +1707886127,214,0 +1707886127,214,0 +1707886128,213,0 +1707886128,213,0 +1707886129,213,0 +1707886129,213,0 +1707886130,213,0 +1707886130,213,0 +1707886131,213,0 +1707886131,213,0 +1707886132,213,0 +1707886132,214,0 +1707886133,214,0 +1707886133,213,0 +1707886134,213,0 +1707886134,214,0 +1707886135,214,0 +1707886135,214,0 +1707886136,214,0 +1707886136,214,0 +1707886137,214,0 +1707886137,213,0 +1707886138,213,0 +1707886138,213,0 +1707886139,213,0 +1707886139,213,0 +1707886140,213,0 +1707886140,213,0 +1707886141,214,0 +1707886141,214,0 +1707886141,214,0 +1707886142,214,0 +1707886142,214,0 +1707886143,214,0 +1707886143,214,0 +1707886144,214,0 +1707886144,214,0 +1707886145,214,0 +1707886145,214,0 +1707886146,214,0 +1707886146,213,0 +1707886147,213,0 +1707886147,213,0 +1707886148,213,0 +1707886148,213,0 +1707886149,213,0 +1707886149,213,0 +1707886150,213,0 +1707886150,213,0 +1707886151,213,0 +1707886151,214,0 +1707886152,214,0 +1707886152,214,0 +1707886153,214,0 +1707886153,214,0 +1707886154,214,0 +1707886154,214,0 +1707886155,214,0 +1707886155,214,0 +1707886156,213,0 +1707886156,213,0 +1707886157,213,0 +1707886157,213,0 +1707886157,213,0 +1707886158,213,0 +1707886158,213,0 +1707886159,213,0 +1707886159,214,0 +1707886160,214,0 +1707886160,214,0 +1707886161,214,0 +1707886161,214,0 +1707886162,214,0 +1707886162,214,0 +1707886163,214,0 +1707886163,214,0 +1707886164,214,0 +1707886164,214,0 +1707886165,213,0 +1707886165,213,0 +1707886166,213,0 +1707886166,213,0 +1707886167,213,0 +1707886167,213,0 +1707886168,213,0 +1707886168,213,0 +1707886169,213,0 +1707886169,213,0 +1707886170,214,0 +1707886170,214,0 +1707886171,214,0 +1707886171,214,0 +1707886172,214,0 +1707886172,214,0 +1707886172,214,0 +1707886173,214,0 +1707886173,214,0 +1707886174,213,0 +1707886174,213,0 +1707886175,213,0 +1707886175,213,0 +1707886176,213,0 +1707886176,213,0 +1707886177,213,0 +1707886177,214,0 +1707886178,214,0 +1707886178,214,0 +1707886179,213,0 +1707886179,214,0 +1707886180,214,0 +1707886180,214,0 +1707886181,214,0 +1707886181,214,0 +1707886182,214,0 +1707886182,214,0 +1707886183,214,0 +1707886183,213,0 +1707886184,213,0 +1707886184,213,0 +1707886185,213,0 +1707886185,213,0 +1707886185,213,0 +1707886186,214,0 +1707886186,213,0 +1707886187,214,0 +1707886187,213,0 +1707886188,213,0 +1707886188,214,0 +1707886189,214,0 +1707886189,214,0 +1707886190,214,0 +1707886190,214,0 +1707886191,214,0 +1707886191,214,0 +1707886192,214,0 +1707886192,214,0 +1707886193,213,0 +1707886193,213,0 +1707886194,213,0 +1707886194,213,0 +1707886195,213,0 +1707886195,213,0 +1707886196,213,0 +1707886196,213,0 +1707886197,214,0 +1707886197,213,0 +1707886198,214,0 +1707886198,214,0 +1707886199,214,0 +1707886199,214,0 +1707886200,214,0 +1707886200,213,0 +1707886200,214,0 +1707886201,214,0 +1707886201,213,0 +1707886202,213,0 +1707886202,213,0 +1707886203,213,0 +1707886203,213,0 +1707886204,213,0 +1707886204,213,0 +1707886205,213,0 +1707886205,213,0 +1707886206,214,0 +1707886206,214,0 +1707886207,214,0 +1707886207,214,0 +1707886208,214,0 +1707886208,214,0 +1707886209,214,0 +1707886209,214,0 +1707886210,214,0 +1707886210,214,0 +1707886211,213,0 +1707886211,213,0 +1707886212,213,0 +1707886212,213,0 +1707886213,213,0 +1707886213,213,0 +1707886214,213,0 +1707886214,213,0 +1707886214,214,0 +1707886215,213,0 +1707886215,214,0 +1707886216,214,0 +1707886216,214,0 +1707886217,214,0 +1707886217,214,0 +1707886218,214,0 +1707886218,214,0 +1707886219,214,0 +1707886219,214,0 +1707886220,213,0 +1707886220,213,0 +1707886221,213,0 +1707886221,213,0 +1707886222,213,0 +1707886222,213,0 +1707886223,213,0 +1707886223,213,0 +1707886224,213,0 +1707886224,214,0 +1707886225,213,0 +1707886225,214,0 +1707886226,214,0 +1707886226,214,0 +1707886227,214,0 +1707886227,214,0 +1707886228,214,0 +1707886228,214,0 +1707886228,214,0 +1707886229,213,0 +1707886229,213,0 +1707886230,213,0 +1707886230,213,0 +1707886231,213,0 +1707886231,213,0 +1707886232,213,0 +1707886232,213,0 +1707886233,213,0 +1707886233,214,0 +1707886234,213,0 +1707886234,213,0 +1707886235,214,0 +1707886235,214,0 +1707886236,214,0 +1707886236,214,0 +1707886237,214,0 +1707886237,214,0 +1707886238,214,0 +1707886238,213,0 +1707886239,213,0 +1707886239,213,0 +1707886240,213,0 +1707886240,213,0 +1707886241,213,0 +1707886241,213,0 +1707886242,213,0 +1707886242,213,0 +1707886242,213,0 +1707886243,213,0 +1707886243,213,0 +1707886244,213,0 +1707886244,213,0 +1707886245,214,0 +1707886245,214,0 +1707886246,214,0 +1707886246,214,0 +1707886247,214,0 +1707886247,214,0 +1707886248,213,0 +1707886248,213,0 +1707886249,213,0 +1707886249,213,0 +1707886250,213,0 +1707886250,213,0 +1707886251,213,0 +1707886251,213,0 +1707886252,213,0 +1707886252,213,0 +1707886253,213,0 +1707886253,214,0 +1707886254,214,0 +1707886254,213,0 +1707886255,214,0 +1707886255,214,0 +1707886255,214,0 +1707886256,214,0 +1707886256,214,0 +1707886257,213,0 +1707886257,213,0 +1707886258,213,0 +1707886258,213,0 +1707886259,213,0 +1707886259,213,0 +1707886260,213,0 +1707886260,213,0 +1707886261,213,0 +1707886261,214,0 +1707886262,213,0 +1707886262,214,0 +1707886263,214,0 +1707886263,214,0 +1707886264,214,0 +1707886264,214,0 +1707886265,214,0 +1707886265,214,0 +1707886266,214,0 +1707886266,213,0 +1707886267,213,0 +1707886267,213,0 +1707886267,213,0 +1707886268,213,0 +1707886268,213,0 +1707886269,213,0 +1707886269,213,0 +1707886270,213,0 +1707886270,213,0 +1707886271,214,0 +1707886271,214,0 +1707886272,214,0 +1707886272,214,0 +1707886273,214,0 +1707886273,214,0 +1707886274,214,0 +1707886274,214,0 +1707886275,214,0 +1707886275,213,0 +1707886276,213,0 +1707886276,213,0 +1707886277,213,0 +1707886277,213,0 +1707886278,214,0 +1707886278,214,0 +1707886279,214,0 +1707886279,214,0 +1707886280,214,0 +1707886280,214,0 +1707886281,214,0 +1707886281,214,0 +1707886281,214,0 +1707886282,214,0 +1707886282,214,0 +1707886283,214,0 +1707886283,214,0 +1707886284,214,0 +1707886284,213,0 +1707886285,213,0 +1707886285,214,0 +1707886286,213,0 +1707886286,214,0 +1707886287,213,0 +1707886287,214,0 +1707886288,214,0 +1707886288,214,0 +1707886289,214,0 +1707886289,214,0 +1707886290,214,0 +1707886290,214,0 +1707886291,214,0 +1707886291,214,0 +1707886292,214,0 +1707886292,214,0 +1707886293,214,0 +1707886293,214,0 +1707886294,213,0 +1707886294,213,0 +1707886295,214,0 +1707886295,214,0 +1707886296,214,0 +1707886296,214,0 +1707886297,214,0 +1707886297,214,0 +1707886298,214,0 +1707886298,214,0 +1707886298,214,0 +1707886299,214,0 +1707886299,214,0 +1707886300,214,0 +1707886300,214,0 +1707886301,214,0 +1707886301,214,0 +1707886302,214,0 +1707886302,214,0 +1707886303,213,0 +1707886303,213,0 +1707886304,214,0 +1707886304,213,0 +1707886305,214,0 +1707886305,213,0 +1707886306,214,0 +1707886306,214,0 +1707886307,214,0 +1707886307,214,0 +1707886308,214,0 +1707886308,214,0 +1707886309,214,0 +1707886309,214,0 +1707886310,214,0 +1707886310,214,0 +1707886311,214,0 +1707886311,214,0 +1707886312,214,0 +1707886312,213,0 +1707886312,213,0 +1707886313,213,0 +1707886313,213,0 +1707886314,213,0 +1707886314,213,0 +1707886315,213,0 +1707886315,213,0 +1707886316,214,0 +1707886316,213,0 +1707886317,214,0 +1707886317,214,0 +1707886318,214,0 +1707886318,214,0 +1707886319,214,0 +1707886319,214,0 +1707886320,214,0 +1707886320,214,0 +1707886321,214,0 +1707886321,213,0 +1707886322,213,0 +1707886322,213,0 +1707886323,213,0 +1707886323,213,0 +1707886324,213,0 +1707886324,213,0 +1707886325,213,0 +1707886325,213,0 +1707886326,213,0 +1707886326,214,0 +1707886327,214,0 +1707886327,214,0 +1707886327,214,0 +1707886328,214,0 +1707886328,214,0 +1707886329,214,0 +1707886329,214,0 +1707886330,214,0 +1707886330,213,0 +1707886331,213,0 +1707886331,213,0 +1707886332,213,0 +1707886332,213,0 +1707886333,213,0 +1707886333,213,0 +1707886334,213,0 +1707886334,214,0 +1707886335,214,0 +1707886335,214,0 +1707886336,214,0 +1707886336,214,0 +1707886337,214,0 +1707886337,214,0 +1707886338,214,0 +1707886338,214,0 +1707886339,214,0 +1707886339,214,0 +1707886340,213,0 +1707886340,213,0 +1707886341,213,0 +1707886341,213,0 +1707886342,213,0 +1707886342,213,0 +1707886343,214,0 +1707886343,213,0 +1707886343,214,0 +1707886344,214,0 +1707886344,214,0 +1707886345,214,0 +1707886345,214,0 +1707886346,214,0 +1707886346,214,0 +1707886347,214,0 +1707886347,214,0 +1707886348,214,0 +1707886348,214,0 +1707886349,213,0 +1707886349,213,0 +1707886350,213,0 +1707886350,213,0 +1707886351,213,0 +1707886351,213,0 +1707886352,213,0 +1707886352,214,0 +1707886353,214,0 +1707886353,214,0 +1707886354,214,0 +1707886354,214,0 +1707886355,214,0 +1707886355,214,0 +1707886356,214,0 +1707886356,214,0 +1707886357,214,0 +1707886357,214,0 +1707886358,214,0 +1707886358,213,0 +1707886358,213,0 +1707886359,213,0 +1707886359,213,0 +1707886360,213,0 +1707886360,213,0 +1707886361,213,0 +1707886361,213,0 +1707886362,213,0 +1707886362,214,0 +1707886363,214,0 +1707886363,214,0 +1707886364,214,0 +1707886364,214,0 +1707886365,214,0 +1707886365,214,0 +1707886366,214,0 +1707886366,214,0 +1707886367,214,0 +1707886367,213,0 +1707886368,213,0 +1707886368,213,0 +1707886369,213,0 +1707886369,213,0 +1707886370,213,0 +1707886370,214,0 +1707886371,214,0 +1707886371,214,0 +1707886372,214,0 +1707886372,214,0 +1707886372,214,0 +1707886373,214,0 +1707886373,214,0 +1707886374,214,0 +1707886374,214,0 +1707886375,214,0 +1707886375,214,0 +1707886376,214,0 +1707886376,213,0 +1707886377,213,0 +1707886377,213,0 +1707886378,213,0 +1707886378,213,0 +1707886379,213,0 +1707886379,213,0 +1707886380,213,0 +1707886380,213,0 +1707886381,213,0 +1707886381,214,0 +1707886382,214,0 +1707886382,214,0 +1707886383,214,0 +1707886383,214,0 +1707886384,214,0 +1707886384,214,0 +1707886385,214,0 +1707886385,214,0 +1707886385,213,0 +1707886386,213,0 +1707886386,213,0 +1707886387,213,0 +1707886387,213,0 +1707886388,213,0 +1707886388,213,0 +1707886389,213,0 +1707886389,213,0 +1707886390,213,0 +1707886390,213,0 +1707886391,213,0 +1707886391,214,0 +1707886392,214,0 +1707886392,214,0 +1707886393,214,0 +1707886393,214,0 +1707886394,214,0 +1707886394,214,0 +1707886395,213,0 +1707886395,213,0 +1707886396,213,0 +1707886396,213,0 +1707886397,213,0 +1707886397,213,0 +1707886398,213,0 +1707886398,213,0 +1707886399,213,0 +1707886399,214,0 +1707886399,214,0 +1707886400,214,0 +1707886400,214,0 +1707886401,214,0 +1707886401,214,0 +1707886402,214,0 +1707886402,214,0 +1707886403,214,0 +1707886403,214,0 +1707886404,213,0 +1707886404,213,0 +1707886405,213,0 +1707886405,213,0 +1707886406,213,0 +1707886406,213,0 +1707886407,213,0 +1707886407,213,0 +1707886408,213,0 +1707886408,213,0 +1707886409,213,0 +1707886409,213,0 +1707886410,213,0 +1707886410,214,0 +1707886411,214,0 +1707886411,214,0 +1707886412,214,0 +1707886412,214,0 +1707886412,214,0 +1707886413,213,0 +1707886413,213,0 +1707886414,213,0 +1707886414,213,0 +1707886415,213,0 +1707886415,213,0 +1707886416,213,0 +1707886416,213,0 +1707886417,213,0 +1707886417,213,0 +1707886418,213,0 +1707886418,213,0 +1707886419,213,0 +1707886419,214,0 +1707886420,214,0 +1707886420,214,0 +1707886421,214,0 +1707886421,214,0 +1707886422,214,0 +1707886422,213,0 +1707886423,213,0 +1707886423,213,0 +1707886424,213,0 +1707886424,213,0 +1707886425,213,0 +1707886425,213,0 +1707886426,213,0 +1707886426,213,0 +1707886427,213,0 +1707886427,213,0 +1707886428,213,0 +1707886428,213,0 +1707886428,213,0 +1707886429,213,0 +1707886429,214,0 +1707886430,214,0 +1707886430,214,0 +1707886431,214,0 +1707886431,213,0 +1707886432,213,0 +1707886432,213,0 +1707886433,213,0 +1707886433,213,0 +1707886434,213,0 +1707886434,213,0 +1707886435,213,0 +1707886435,213,0 +1707886436,213,0 +1707886436,213,0 +1707886437,213,0 +1707886437,213,0 +1707886438,214,0 +1707886438,213,0 +1707886439,214,0 +1707886439,213,0 +1707886440,214,0 +1707886440,214,0 +1707886441,213,0 +1707886441,213,0 +1707886442,213,0 +1707886442,213,0 +1707886443,213,0 +1707886443,213,0 +1707886444,213,0 +1707886444,213,0 +1707886444,213,0 +1707886445,213,0 +1707886445,214,0 +1707886446,214,0 +1707886446,214,0 +1707886447,214,0 +1707886447,214,0 +1707886448,214,0 +1707886448,214,0 +1707886449,214,0 +1707886449,214,0 +1707886450,213,0 +1707886450,213,0 +1707886451,213,0 +1707886451,213,0 +1707886452,213,0 +1707886452,213,0 +1707886453,213,0 +1707886453,214,0 +1707886454,213,0 +1707886454,213,0 +1707886455,214,0 +1707886455,214,0 +1707886456,214,0 +1707886456,214,0 +1707886457,214,0 +1707886457,214,0 +1707886457,214,0 +1707886458,214,0 +1707886458,214,0 +1707886459,213,0 +1707886459,213,0 +1707886460,213,0 +1707886460,213,0 +1707886461,213,0 +1707886461,214,0 +1707886462,214,0 +1707886462,214,0 +1707886463,214,0 +1707886463,214,0 +1707886464,214,0 +1707886464,214,0 +1707886465,214,0 +1707886465,214,0 +1707886466,214,0 +1707886466,214,0 +1707886467,214,0 +1707886467,214,0 +1707886468,214,0 +1707886468,214,0 +1707886469,213,0 +1707886469,214,0 +1707886470,214,0 +1707886470,214,0 +1707886471,214,0 +1707886471,214,0 +1707886472,214,0 +1707886472,214,0 +1707886472,214,0 +1707886473,214,0 +1707886473,214,0 +1707886474,214,0 +1707886474,214,0 +1707886475,214,0 +1707886475,214,0 +1707886476,214,0 +1707886476,214,0 +1707886477,214,0 +1707886477,214,0 +1707886478,214,0 +1707886478,214,0 +1707886479,214,0 +1707886479,214,0 +1707886480,214,0 +1707886480,214,0 +1707886481,214,0 +1707886481,214,0 +1707886482,214,0 +1707886482,214,0 +1707886483,214,0 +1707886483,214,0 +1707886484,214,0 +1707886484,214,0 +1707886485,214,0 +1707886485,214,0 +1707886486,214,0 +1707886486,214,0 +1707886487,214,0 +1707886487,213,0 +1707886488,213,0 +1707886488,213,0 +1707886489,214,0 +1707886489,213,0 +1707886489,213,0 +1707886490,214,0 +1707886490,214,0 +1707886491,214,0 +1707886491,214,0 +1707886492,214,0 +1707886492,214,0 +1707886493,214,0 +1707886493,214,0 +1707886494,214,0 +1707886494,214,0 +1707886495,214,0 +1707886495,214,0 +1707886496,213,0 +1707886496,213,0 +1707886497,213,0 +1707886497,213,0 +1707886498,213,0 +1707886498,213,0 +1707886499,214,0 +1707886499,213,0 +1707886500,214,0 +1707886500,214,0 +1707886501,214,0 +1707886501,214,0 +1707886502,214,0 +1707886502,214,0 +1707886503,214,0 +1707886503,214,0 +1707886504,214,0 +1707886504,214,0 +1707886504,214,0 +1707886505,213,0 +1707886505,213,0 +1707886506,213,0 +1707886506,213,0 +1707886507,213,0 +1707886507,213,0 +1707886508,213,0 +1707886508,213,0 +1707886509,213,0 +1707886509,214,0 +1707886510,214,0 +1707886510,214,0 +1707886511,214,0 +1707886511,214,0 +1707886512,214,0 +1707886512,214,0 +1707886513,214,0 +1707886513,214,0 +1707886514,214,0 +1707886514,213,0 +1707886515,213,0 +1707886515,213,0 +1707886516,213,0 +1707886516,213,0 +1707886517,213,0 +1707886517,213,0 +1707886518,213,0 +1707886518,213,0 +1707886519,213,0 +1707886519,214,0 +1707886520,214,0 +1707886520,214,0 +1707886520,214,0 +1707886521,214,0 +1707886521,214,0 +1707886522,214,0 +1707886522,214,0 +1707886523,214,0 +1707886523,213,0 +1707886524,213,0 +1707886524,213,0 +1707886525,213,0 +1707886525,213,0 +1707886526,213,0 +1707886526,213,0 +1707886527,213,0 +1707886527,213,0 +1707886528,214,0 +1707886528,214,0 +1707886529,214,0 +1707886529,214,0 +1707886530,214,0 +1707886530,214,0 +1707886531,214,0 +1707886531,214,0 +1707886532,214,0 +1707886532,214,0 +1707886533,213,0 +1707886533,213,0 +1707886534,213,0 +1707886534,213,0 +1707886535,213,0 +1707886535,213,0 +1707886536,213,0 +1707886536,213,0 +1707886537,213,0 +1707886537,214,0 +1707886537,214,0 +1707886538,214,0 +1707886538,214,0 +1707886539,214,0 +1707886539,214,0 +1707886540,214,0 +1707886540,214,0 +1707886541,214,0 +1707886541,214,0 +1707886542,213,0 +1707886542,213,0 +1707886543,213,0 +1707886543,213,0 +1707886544,213,0 +1707886544,213,0 +1707886545,213,0 +1707886545,213,0 +1707886546,213,0 +1707886546,213,0 +1707886547,213,0 +1707886547,214,0 +1707886548,214,0 +1707886548,214,0 +1707886549,214,0 +1707886549,214,0 +1707886550,214,0 +1707886550,214,0 +1707886551,214,0 +1707886551,213,0 +1707886552,213,0 +1707886552,213,0 +1707886553,213,0 +1707886553,213,0 +1707886554,213,0 +1707886554,213,0 +1707886554,213,0 +1707886555,213,0 +1707886555,214,0 +1707886556,214,0 +1707886556,214,0 +1707886557,214,0 +1707886557,214,0 +1707886558,214,0 +1707886558,214,0 +1707886559,214,0 +1707886559,214,0 +1707886560,214,0 +1707886560,213,0 +1707886561,213,0 +1707886561,213,0 +1707886562,213,0 +1707886562,213,0 +1707886563,213,0 +1707886563,213,0 +1707886564,213,0 +1707886564,213,0 +1707886565,213,0 +1707886565,214,0 +1707886566,214,0 +1707886566,214,0 +1707886567,214,0 +1707886567,214,0 +1707886568,214,0 +1707886568,214,0 +1707886569,214,0 +1707886569,214,0 +1707886570,213,0 +1707886570,213,0 +1707886570,213,0 +1707886571,213,0 +1707886571,213,0 +1707886572,213,0 +1707886572,213,0 +1707886573,213,0 +1707886573,213,0 +1707886574,213,0 +1707886574,213,0 +1707886575,213,0 +1707886575,214,0 +1707886576,214,0 +1707886576,214,0 +1707886577,213,0 +1707886577,214,0 +1707886578,214,0 +1707886578,214,0 +1707886579,213,0 +1707886579,213,0 +1707886580,213,0 +1707886580,213,0 +1707886581,213,0 +1707886581,213,0 +1707886582,213,0 +1707886582,213,0 +1707886583,213,0 +1707886583,213,0 +1707886584,213,0 +1707886584,214,0 +1707886585,214,0 +1707886585,214,0 +1707886585,214,0 +1707886586,214,0 +1707886586,214,0 +1707886587,214,0 +1707886587,214,0 +1707886588,213,0 +1707886588,213,0 +1707886589,213,0 +1707886589,213,0 +1707886590,213,0 +1707886590,213,0 +1707886591,214,0 +1707886591,213,0 +1707886592,214,0 +1707886592,214,0 +1707886593,214,0 +1707886593,214,0 +1707886594,214,0 +1707886594,214,0 +1707886595,214,0 +1707886595,214,0 +1707886596,214,0 +1707886596,214,0 +1707886597,214,0 +1707886597,213,0 +1707886598,213,0 +1707886598,213,0 +1707886599,213,0 +1707886599,213,0 +1707886599,213,0 +1707886600,214,0 +1707886600,214,0 +1707886601,214,0 +1707886601,214,0 +1707886602,214,0 +1707886602,214,0 +1707886603,214,0 +1707886603,214,0 +1707886604,214,0 +1707886604,214,0 +1707886605,214,0 +1707886605,214,0 +1707886606,215,0 +1707886606,213,0 +1707886607,213,0 +1707886607,213,0 +1707886608,213,0 +1707886608,213,0 +1707886609,213,0 +1707886609,213,0 +1707886610,214,0 +1707886610,214,0 +1707886611,214,0 +1707886611,214,0 +1707886612,214,0 +1707886612,214,0 +1707886613,214,0 +1707886613,214,0 +1707886614,214,0 +1707886614,214,0 +1707886615,214,0 +1707886615,214,0 +1707886616,213,0 +1707886616,213,0 +1707886617,213,0 +1707886617,213,0 +1707886617,213,0 +1707886618,214,0 +1707886618,214,0 +1707886619,213,0 +1707886619,214,0 +1707886620,213,0 +1707886620,214,0 +1707886621,214,0 +1707886621,214,0 +1707886622,214,0 +1707886622,214,0 +1707886623,214,0 +1707886623,214,0 +1707886624,214,0 +1707886624,214,0 +1707886625,213,0 +1707886625,213,0 +1707886626,213,0 +1707886626,213,0 +1707886627,213,0 +1707886627,213,0 +1707886628,213,0 +1707886628,213,0 +1707886629,213,0 +1707886629,213,0 +1707886630,213,0 +1707886630,214,0 +1707886631,214,0 +1707886631,214,0 +1707886632,214,0 +1707886632,214,0 +1707886633,214,0 +1707886633,214,0 +1707886634,214,0 +1707886634,213,0 +1707886634,213,0 +1707886635,213,0 +1707886635,213,0 +1707886636,213,0 +1707886636,213,0 +1707886637,213,0 +1707886637,213,0 +1707886638,213,0 +1707886638,213,0 +1707886639,214,0 +1707886639,214,0 +1707886640,214,0 +1707886640,214,0 +1707886641,214,0 +1707886641,214,0 +1707886642,214,0 +1707886642,214,0 +1707886643,214,0 +1707886643,213,0 +1707886644,213,0 +1707886644,213,0 +1707886645,213,0 +1707886645,213,0 +1707886646,213,0 +1707886646,213,0 +1707886647,213,0 +1707886647,213,0 +1707886648,214,0 +1707886648,213,0 +1707886649,213,0 +1707886649,214,0 +1707886649,214,0 +1707886650,214,0 +1707886650,214,0 +1707886651,214,0 +1707886651,214,0 +1707886652,214,0 +1707886652,213,0 +1707886653,213,0 +1707886653,213,0 +1707886654,213,0 +1707886654,213,0 +1707886655,213,0 +1707886655,214,0 +1707886656,213,0 +1707886656,214,0 +1707886657,214,0 +1707886657,214,0 +1707886658,214,0 +1707886658,214,0 +1707886659,213,0 +1707886659,214,0 +1707886660,214,0 +1707886660,214,0 +1707886661,214,0 +1707886661,214,0 +1707886662,213,0 +1707886662,213,0 +1707886663,214,0 +1707886663,214,0 +1707886664,214,0 +1707886664,214,0 +1707886664,214,0 +1707886665,214,0 +1707886665,214,0 +1707886666,214,0 +1707886666,214,0 +1707886667,214,0 +1707886667,214,0 +1707886668,214,0 +1707886668,214,0 +1707886669,214,0 +1707886669,214,0 +1707886670,214,0 +1707886670,214,0 +1707886671,214,0 +1707886671,214,0 +1707886672,214,0 +1707886672,214,0 +1707886673,214,0 +1707886673,214,0 +1707886674,214,0 +1707886674,214,0 +1707886675,214,0 +1707886675,214,0 +1707886676,214,0 +1707886676,214,0 +1707886677,214,0 +1707886677,214,0 +1707886677,214,0 +1707886678,214,0 +1707886678,214,0 +1707886679,214,0 +1707886679,214,0 +1707886680,213,0 +1707886680,213,0 +1707886681,213,0 +1707886681,213,0 +1707886682,213,0 +1707886682,213,0 +1707886683,213,0 +1707886683,213,0 +1707886684,214,0 +1707886684,214,0 +1707886685,214,0 +1707886685,214,0 +1707886686,214,0 +1707886686,214,0 +1707886687,214,0 +1707886687,214,0 +1707886688,214,0 +1707886688,214,0 +1707886689,214,0 +1707886689,213,0 +1707886690,213,0 +1707886690,213,0 +1707886690,213,0 +1707886691,213,0 +1707886691,213,0 +1707886692,213,0 +1707886692,213,0 +1707886693,213,0 +1707886693,213,0 +1707886694,213,0 +1707886694,214,0 +1707886695,214,0 +1707886695,214,0 +1707886696,214,0 +1707886696,214,0 +1707886697,214,0 +1707886697,214,0 +1707886698,214,0 +1707886698,213,0 +1707886699,213,0 +1707886699,213,0 +1707886700,213,0 +1707886700,213,0 +1707886701,213,0 +1707886701,213,0 +1707886702,213,0 +1707886702,214,0 +1707886702,213,0 +1707886703,213,0 +1707886703,214,0 +1707886704,214,0 +1707886704,214,0 +1707886705,214,0 +1707886705,214,0 +1707886706,214,0 +1707886706,214,0 +1707886707,214,0 +1707886707,213,0 +1707886708,213,0 +1707886708,213,0 +1707886709,213,0 +1707886709,213,0 +1707886710,213,0 +1707886710,213,0 +1707886711,213,0 +1707886711,213,0 +1707886712,214,0 +1707886712,214,0 +1707886713,214,0 +1707886713,214,0 +1707886714,214,0 +1707886714,214,0 +1707886715,214,0 +1707886715,214,0 +1707886715,214,0 +1707886716,214,0 +1707886716,213,0 +1707886717,213,0 +1707886717,213,0 +1707886718,213,0 +1707886718,213,0 +1707886719,213,0 +1707886719,213,0 +1707886720,213,0 +1707886720,213,0 +1707886721,213,0 +1707886721,214,0 +1707886722,214,0 +1707886722,214,0 +1707886723,214,0 +1707886723,214,0 +1707886724,214,0 +1707886724,214,0 +1707886725,214,0 +1707886725,214,0 +1707886726,213,0 +1707886726,213,0 +1707886727,213,0 +1707886727,213,0 +1707886727,213,0 +1707886728,213,0 +1707886728,213,0 +1707886729,213,0 +1707886729,213,0 +1707886730,213,0 +1707886730,213,0 +1707886731,213,0 +1707886731,213,0 +1707886732,213,0 +1707886732,213,0 +1707886733,214,0 +1707886733,213,0 +1707886734,214,0 +1707886734,214,0 +1707886735,213,0 +1707886735,213,0 +1707886736,213,0 +1707886736,213,0 +1707886737,213,0 +1707886737,213,0 +1707886738,213,0 +1707886738,213,0 +1707886739,213,0 +1707886739,214,0 +1707886740,214,0 +1707886740,214,0 +1707886741,214,0 +1707886741,214,0 +1707886742,214,0 +1707886742,214,0 +1707886742,214,0 +1707886743,214,0 +1707886743,214,0 +1707886744,213,0 +1707886744,213,0 +1707886745,213,0 +1707886745,213,0 +1707886746,213,0 +1707886746,214,0 +1707886747,213,0 +1707886747,214,0 +1707886748,214,0 +1707886748,213,0 +1707886749,214,0 +1707886749,214,0 +1707886750,214,0 +1707886750,214,0 +1707886751,214,0 +1707886751,214,0 +1707886752,214,0 +1707886752,214,0 +1707886753,214,0 +1707886753,213,0 +1707886754,213,0 +1707886754,213,0 +1707886755,213,0 +1707886755,213,0 +1707886756,213,0 +1707886756,214,0 +1707886757,214,0 +1707886757,214,0 +1707886758,214,0 +1707886758,214,0 +1707886758,214,0 +1707886759,214,0 +1707886759,214,0 +1707886760,214,0 +1707886760,214,0 +1707886761,214,0 +1707886761,214,0 +1707886762,214,0 +1707886762,213,0 +1707886763,213,0 +1707886763,213,0 +1707886764,213,0 +1707886764,213,0 +1707886765,214,0 +1707886765,213,0 +1707886766,214,0 +1707886766,214,0 +1707886767,214,0 +1707886767,214,0 +1707886768,214,0 +1707886768,214,0 +1707886769,214,0 +1707886769,214,0 +1707886770,214,0 +1707886770,214,0 +1707886771,214,0 +1707886771,214,0 +1707886772,213,0 +1707886772,213,0 +1707886773,213,0 +1707886773,213,0 +1707886774,213,0 +1707886774,213,0 +1707886774,213,0 +1707886775,213,0 +1707886775,214,0 +1707886776,213,0 +1707886776,213,0 +1707886777,214,0 +1707886777,214,0 +1707886778,214,0 +1707886778,214,0 +1707886779,214,0 +1707886779,214,0 +1707886780,214,0 +1707886780,214,0 +1707886781,213,0 +1707886781,213,0 +1707886782,213,0 +1707886782,213,0 +1707886783,213,0 +1707886783,213,0 +1707886784,213,0 +1707886784,213,0 +1707886785,214,0 +1707886785,214,0 +1707886786,214,0 +1707886786,214,0 +1707886787,214,0 +1707886787,214,0 +1707886788,214,0 +1707886788,214,0 +1707886789,214,0 +1707886789,214,0 +1707886790,214,0 +1707886790,213,0 +1707886791,213,0 +1707886791,213,0 +1707886791,213,0 +1707886792,213,0 +1707886792,213,0 +1707886793,213,0 +1707886793,213,0 +1707886794,213,0 +1707886794,213,0 +1707886795,214,0 +1707886795,214,0 +1707886796,214,0 +1707886796,214,0 +1707886797,214,0 +1707886797,214,0 +1707886798,214,0 +1707886798,214,0 +1707886799,214,0 +1707886799,213,0 +1707886800,213,0 diff --git a/laser_value/0214-15.csv b/laser_value/0214-15.csv new file mode 100644 index 0000000..f3f1c62 --- /dev/null +++ b/laser_value/0214-15.csv @@ -0,0 +1,7444 @@ +timestamp,laser_value,event +1707886800,213,0 +1707886801,213,0 +1707886801,213,0 +1707886802,213,0 +1707886802,214,0 +1707886803,214,0 +1707886803,214,0 +1707886804,213,0 +1707886804,214,0 +1707886805,214,0 +1707886805,214,0 +1707886805,214,0 +1707886806,214,0 +1707886806,214,0 +1707886807,214,0 +1707886807,214,0 +1707886808,214,0 +1707886808,213,0 +1707886809,213,0 +1707886809,213,0 +1707886810,213,0 +1707886810,213,0 +1707886811,213,0 +1707886811,213,0 +1707886812,213,0 +1707886812,213,0 +1707886813,214,0 +1707886813,214,0 +1707886814,214,0 +1707886814,214,0 +1707886815,214,0 +1707886815,214,0 +1707886816,214,0 +1707886816,214,0 +1707886817,214,0 +1707886817,214,0 +1707886818,213,0 +1707886818,213,0 +1707886818,213,0 +1707886819,213,0 +1707886819,213,0 +1707886820,213,0 +1707886820,213,0 +1707886821,214,0 +1707886821,214,0 +1707886822,214,0 +1707886822,214,0 +1707886823,214,0 +1707886823,214,0 +1707886824,214,0 +1707886824,214,0 +1707886825,214,0 +1707886825,214,0 +1707886826,214,0 +1707886826,214,0 +1707886827,213,0 +1707886827,213,0 +1707886828,213,0 +1707886828,213,0 +1707886829,213,0 +1707886829,214,0 +1707886830,213,0 +1707886830,214,0 +1707886830,214,0 +1707886831,214,0 +1707886831,214,0 +1707886832,214,0 +1707886832,214,0 +1707886833,214,0 +1707886833,214,0 +1707886834,214,0 +1707886834,214,0 +1707886835,214,0 +1707886835,214,0 +1707886836,214,0 +1707886836,213,0 +1707886837,213,0 +1707886837,213,0 +1707886838,213,0 +1707886838,213,0 +1707886839,213,0 +1707886839,213,0 +1707886840,213,0 +1707886840,213,0 +1707886841,213,0 +1707886841,213,0 +1707886842,214,0 +1707886842,214,0 +1707886843,214,0 +1707886843,214,0 +1707886844,214,0 +1707886844,214,0 +1707886845,214,0 +1707886845,214,0 +1707886845,213,0 +1707886846,213,0 +1707886846,213,0 +1707886847,213,0 +1707886847,214,0 +1707886848,214,0 +1707886848,214,0 +1707886849,214,0 +1707886849,214,0 +1707886850,214,0 +1707886850,214,0 +1707886851,214,0 +1707886851,214,0 +1707886852,214,0 +1707886852,214,0 +1707886853,214,0 +1707886853,214,0 +1707886854,214,0 +1707886854,214,0 +1707886855,214,0 +1707886855,214,0 +1707886856,214,0 +1707886856,213,0 +1707886856,213,0 +1707886857,214,0 +1707886857,214,0 +1707886858,214,0 +1707886858,214,0 +1707886859,214,0 +1707886859,214,0 +1707886860,214,0 +1707886860,214,0 +1707886861,214,0 +1707886861,214,0 +1707886862,214,0 +1707886862,214,0 +1707886863,214,0 +1707886863,214,0 +1707886864,213,0 +1707886864,213,0 +1707886865,213,0 +1707886865,213,0 +1707886866,213,0 +1707886866,213,0 +1707886867,214,0 +1707886867,214,0 +1707886868,214,0 +1707886868,214,0 +1707886869,214,0 +1707886869,214,0 +1707886870,214,0 +1707886870,214,0 +1707886870,214,0 +1707886871,214,0 +1707886871,214,0 +1707886872,214,0 +1707886872,214,0 +1707886873,213,0 +1707886873,213,0 +1707886874,213,0 +1707886874,213,0 +1707886875,213,0 +1707886875,213,0 +1707886876,213,0 +1707886876,213,0 +1707886877,213,0 +1707886877,214,0 +1707886878,213,0 +1707886878,214,0 +1707886879,214,0 +1707886879,214,0 +1707886880,214,0 +1707886880,214,0 +1707886881,214,0 +1707886881,214,0 +1707886882,214,0 +1707886882,213,0 +1707886883,213,0 +1707886883,213,0 +1707886884,213,0 +1707886884,213,0 +1707886885,213,0 +1707886885,213,0 +1707886886,213,0 +1707886886,214,0 +1707886886,214,0 +1707886887,214,0 +1707886887,214,0 +1707886888,214,0 +1707886888,214,0 +1707886889,214,0 +1707886889,214,0 +1707886890,214,0 +1707886890,214,0 +1707886891,214,0 +1707886891,213,0 +1707886892,213,0 +1707886892,213,0 +1707886893,214,0 +1707886893,214,0 +1707886894,213,0 +1707886894,214,0 +1707886895,214,0 +1707886895,214,0 +1707886896,214,0 +1707886896,214,0 +1707886897,214,0 +1707886897,214,0 +1707886898,214,0 +1707886898,214,0 +1707886899,214,0 +1707886899,214,0 +1707886900,214,0 +1707886900,213,0 +1707886901,213,0 +1707886901,213,0 +1707886902,213,0 +1707886902,213,0 +1707886903,213,0 +1707886903,214,0 +1707886904,214,0 +1707886904,214,0 +1707886904,214,0 +1707886905,214,0 +1707886905,214,0 +1707886906,214,0 +1707886906,214,0 +1707886907,214,0 +1707886907,214,0 +1707886908,214,0 +1707886908,214,0 +1707886909,214,0 +1707886909,214,0 +1707886910,213,0 +1707886910,213,0 +1707886911,213,0 +1707886911,213,0 +1707886912,213,0 +1707886912,214,0 +1707886913,213,0 +1707886913,213,0 +1707886914,214,0 +1707886914,214,0 +1707886915,214,0 +1707886915,214,0 +1707886916,214,0 +1707886916,214,0 +1707886917,214,0 +1707886917,214,0 +1707886917,214,0 +1707886918,214,0 +1707886918,214,0 +1707886919,213,0 +1707886919,213,0 +1707886920,213,0 +1707886920,213,0 +1707886921,213,0 +1707886921,213,0 +1707886922,213,0 +1707886922,213,0 +1707886923,213,0 +1707886923,214,0 +1707886924,214,0 +1707886924,214,0 +1707886925,214,0 +1707886925,214,0 +1707886926,214,0 +1707886926,214,0 +1707886927,214,0 +1707886927,214,0 +1707886928,213,0 +1707886928,213,0 +1707886929,213,0 +1707886929,213,0 +1707886930,213,0 +1707886930,213,0 +1707886931,213,0 +1707886931,213,0 +1707886931,213,0 +1707886932,213,0 +1707886932,213,0 +1707886933,213,0 +1707886933,213,0 +1707886934,214,0 +1707886934,214,0 +1707886935,214,0 +1707886935,214,0 +1707886936,214,0 +1707886936,214,0 +1707886937,213,0 +1707886937,213,0 +1707886938,213,0 +1707886938,213,0 +1707886939,213,0 +1707886939,213,0 +1707886940,213,0 +1707886940,213,0 +1707886941,213,0 +1707886941,213,0 +1707886942,213,0 +1707886942,213,0 +1707886943,214,0 +1707886943,214,0 +1707886944,214,0 +1707886944,214,0 +1707886945,214,0 +1707886945,214,0 +1707886946,214,0 +1707886946,213,0 +1707886947,213,0 +1707886947,213,0 +1707886948,213,0 +1707886948,213,0 +1707886949,213,0 +1707886949,213,0 +1707886949,213,0 +1707886950,213,0 +1707886950,213,0 +1707886951,213,0 +1707886951,214,0 +1707886952,214,0 +1707886952,213,0 +1707886953,214,0 +1707886953,214,0 +1707886954,214,0 +1707886954,214,0 +1707886955,214,0 +1707886955,213,0 +1707886956,213,0 +1707886956,213,0 +1707886957,213,0 +1707886957,213,0 +1707886958,213,0 +1707886958,213,0 +1707886959,213,0 +1707886959,213,0 +1707886960,213,0 +1707886960,213,0 +1707886961,213,0 +1707886961,213,0 +1707886962,214,0 +1707886962,214,0 +1707886963,214,0 +1707886963,214,0 +1707886964,214,0 +1707886964,214,0 +1707886965,213,0 +1707886965,213,0 +1707886965,213,0 +1707886966,213,0 +1707886966,213,0 +1707886967,213,0 +1707886967,213,0 +1707886968,213,0 +1707886968,213,0 +1707886969,213,0 +1707886969,213,0 +1707886970,214,0 +1707886970,214,0 +1707886971,214,0 +1707886971,214,0 +1707886972,214,0 +1707886972,214,0 +1707886973,214,0 +1707886973,214,0 +1707886974,213,0 +1707886974,213,0 +1707886975,213,0 +1707886975,213,0 +1707886976,213,0 +1707886976,213,0 +1707886977,213,0 +1707886977,213,0 +1707886978,213,0 +1707886978,213,0 +1707886979,213,0 +1707886979,213,0 +1707886979,214,0 +1707886980,214,0 +1707886980,214,0 +1707886981,214,0 +1707886981,214,0 +1707886982,214,0 +1707886982,214,0 +1707886983,213,0 +1707886983,213,0 +1707886984,213,0 +1707886984,213,0 +1707886985,213,0 +1707886985,213,0 +1707886986,213,0 +1707886986,213,0 +1707886987,213,0 +1707886987,213,0 +1707886988,213,0 +1707886988,214,0 +1707886989,214,0 +1707886989,214,0 +1707886990,214,0 +1707886990,214,0 +1707886991,214,0 +1707886991,214,0 +1707886992,214,0 +1707886992,213,0 +1707886993,213,0 +1707886993,213,0 +1707886994,213,0 +1707886994,213,0 +1707886995,213,0 +1707886995,213,0 +1707886995,213,0 +1707886996,213,0 +1707886996,213,0 +1707886997,213,0 +1707886997,214,0 +1707886998,214,0 +1707886998,214,0 +1707886999,214,0 +1707886999,214,0 +1707887000,214,0 +1707887000,214,0 +1707887001,214,0 +1707887001,213,0 +1707887002,213,0 +1707887002,213,0 +1707887003,213,0 +1707887003,213,0 +1707887004,213,0 +1707887004,213,0 +1707887005,213,0 +1707887005,213,0 +1707887006,213,0 +1707887006,213,0 +1707887007,214,0 +1707887007,214,0 +1707887008,214,0 +1707887008,214,0 +1707887008,214,0 +1707887009,214,0 +1707887009,214,0 +1707887010,214,0 +1707887010,213,0 +1707887011,213,0 +1707887011,213,0 +1707887012,213,0 +1707887012,213,0 +1707887013,213,0 +1707887013,213,0 +1707887014,213,0 +1707887014,213,0 +1707887015,213,0 +1707887015,213,0 +1707887016,213,0 +1707887016,213,0 +1707887017,213,0 +1707887017,213,0 +1707887018,214,0 +1707887018,214,0 +1707887019,214,0 +1707887019,214,0 +1707887020,213,0 +1707887020,213,0 +1707887021,213,0 +1707887021,213,0 +1707887022,213,0 +1707887022,213,0 +1707887023,213,0 +1707887023,213,0 +1707887023,213,0 +1707887024,213,0 +1707887024,213,0 +1707887025,213,0 +1707887025,213,0 +1707887026,213,0 +1707887026,213,0 +1707887027,213,0 +1707887027,213,0 +1707887028,213,0 +1707887028,213,0 +1707887029,214,0 +1707887029,213,0 +1707887030,214,0 +1707887030,214,0 +1707887031,214,0 +1707887031,214,0 +1707887032,214,0 +1707887032,214,0 +1707887033,214,0 +1707887033,214,0 +1707887034,213,0 +1707887034,213,0 +1707887035,213,0 +1707887035,213,0 +1707887036,213,0 +1707887036,213,0 +1707887037,213,0 +1707887037,213,0 +1707887038,213,0 +1707887038,214,0 +1707887039,214,0 +1707887039,214,0 +1707887039,214,0 +1707887040,214,0 +1707887040,214,0 +1707887041,214,0 +1707887041,214,0 +1707887042,214,0 +1707887042,214,0 +1707887043,214,0 +1707887043,214,0 +1707887044,214,0 +1707887044,214,0 +1707887045,214,0 +1707887045,214,0 +1707887046,214,0 +1707887046,214,0 +1707887047,214,0 +1707887047,214,0 +1707887048,214,0 +1707887048,214,0 +1707887049,214,0 +1707887049,214,0 +1707887050,214,0 +1707887050,214,0 +1707887051,214,0 +1707887051,214,0 +1707887052,214,0 +1707887052,214,0 +1707887053,214,0 +1707887053,214,0 +1707887054,214,0 +1707887054,214,0 +1707887055,214,0 +1707887055,214,0 +1707887055,214,0 +1707887056,214,0 +1707887056,214,0 +1707887057,214,0 +1707887057,214,0 +1707887058,214,0 +1707887058,214,0 +1707887059,214,0 +1707887059,214,0 +1707887060,214,0 +1707887060,214,0 +1707887061,214,0 +1707887061,214,0 +1707887062,214,0 +1707887062,214,0 +1707887063,214,0 +1707887063,214,0 +1707887064,214,0 +1707887064,214,0 +1707887065,214,0 +1707887065,214,0 +1707887066,214,0 +1707887066,214,0 +1707887067,214,0 +1707887067,214,0 +1707887068,214,0 +1707887068,214,0 +1707887069,214,0 +1707887069,214,0 +1707887070,214,0 +1707887070,214,0 +1707887071,213,0 +1707887071,213,0 +1707887071,213,0 +1707887072,213,0 +1707887072,213,0 +1707887073,214,0 +1707887073,213,0 +1707887074,213,0 +1707887074,214,0 +1707887075,214,0 +1707887075,214,0 +1707887076,214,0 +1707887076,214,0 +1707887077,214,0 +1707887077,214,0 +1707887078,214,0 +1707887078,214,0 +1707887079,214,0 +1707887079,214,0 +1707887080,213,0 +1707887080,213,0 +1707887081,213,0 +1707887081,213,0 +1707887082,213,0 +1707887082,213,0 +1707887083,213,0 +1707887083,214,0 +1707887084,214,0 +1707887084,213,0 +1707887085,214,0 +1707887085,214,0 +1707887086,214,0 +1707887086,214,0 +1707887087,214,0 +1707887087,214,0 +1707887088,214,0 +1707887088,214,0 +1707887089,213,0 +1707887089,213,0 +1707887089,213,0 +1707887090,213,0 +1707887090,213,0 +1707887091,213,0 +1707887091,213,0 +1707887092,213,0 +1707887092,213,0 +1707887093,213,0 +1707887093,213,0 +1707887094,213,0 +1707887094,214,0 +1707887095,213,0 +1707887095,214,0 +1707887096,214,0 +1707887096,214,0 +1707887097,214,0 +1707887097,214,0 +1707887098,213,0 +1707887098,213,0 +1707887099,213,0 +1707887099,213,0 +1707887100,213,0 +1707887100,213,0 +1707887101,214,0 +1707887101,213,0 +1707887102,213,0 +1707887102,214,0 +1707887103,214,0 +1707887103,214,0 +1707887104,214,0 +1707887104,214,0 +1707887104,214,0 +1707887105,214,0 +1707887105,214,0 +1707887106,214,0 +1707887106,214,0 +1707887107,214,0 +1707887107,213,0 +1707887108,213,0 +1707887108,213,0 +1707887109,213,0 +1707887109,213,0 +1707887110,213,0 +1707887110,213,0 +1707887111,214,0 +1707887111,213,0 +1707887112,213,0 +1707887112,213,0 +1707887113,214,0 +1707887113,214,0 +1707887114,214,0 +1707887114,214,0 +1707887115,214,0 +1707887115,214,0 +1707887116,214,0 +1707887116,213,0 +1707887117,213,0 +1707887117,213,0 +1707887118,213,0 +1707887118,213,0 +1707887119,213,0 +1707887119,213,0 +1707887119,213,0 +1707887120,214,0 +1707887120,213,0 +1707887121,214,0 +1707887121,214,0 +1707887122,214,0 +1707887122,214,0 +1707887123,214,0 +1707887123,214,0 +1707887124,214,0 +1707887124,214,0 +1707887125,214,0 +1707887125,213,0 +1707887126,213,0 +1707887126,213,0 +1707887127,213,0 +1707887127,213,0 +1707887128,213,0 +1707887128,213,0 +1707887129,213,0 +1707887129,213,0 +1707887130,214,0 +1707887130,214,0 +1707887131,214,0 +1707887131,214,0 +1707887132,214,0 +1707887132,214,0 +1707887133,214,0 +1707887133,214,0 +1707887133,214,0 +1707887134,214,0 +1707887134,213,0 +1707887135,213,0 +1707887135,213,0 +1707887136,213,0 +1707887136,213,0 +1707887137,213,0 +1707887137,213,0 +1707887138,213,0 +1707887138,213,0 +1707887139,213,0 +1707887139,214,0 +1707887140,213,0 +1707887140,214,0 +1707887141,214,0 +1707887141,214,0 +1707887142,214,0 +1707887142,214,0 +1707887143,214,0 +1707887143,214,0 +1707887144,213,0 +1707887144,213,0 +1707887145,213,0 +1707887145,213,0 +1707887146,213,0 +1707887146,213,0 +1707887147,213,0 +1707887147,213,0 +1707887148,213,0 +1707887148,213,0 +1707887149,213,0 +1707887149,214,0 +1707887149,213,0 +1707887150,213,0 +1707887150,214,0 +1707887151,213,0 +1707887151,214,0 +1707887152,214,0 +1707887152,214,0 +1707887153,213,0 +1707887153,213,0 +1707887154,213,0 +1707887154,213,0 +1707887155,213,0 +1707887155,213,0 +1707887156,213,0 +1707887156,213,0 +1707887157,213,0 +1707887157,213,0 +1707887158,213,0 +1707887158,214,0 +1707887159,213,0 +1707887159,213,0 +1707887160,213,0 +1707887160,214,0 +1707887161,214,0 +1707887161,214,0 +1707887162,214,0 +1707887162,213,0 +1707887163,213,0 +1707887163,213,0 +1707887164,213,0 +1707887164,213,0 +1707887164,213,0 +1707887165,213,0 +1707887165,213,0 +1707887166,213,0 +1707887166,214,0 +1707887167,214,0 +1707887167,214,0 +1707887168,214,0 +1707887168,214,0 +1707887169,214,0 +1707887169,214,0 +1707887170,214,0 +1707887170,214,0 +1707887171,214,0 +1707887171,213,0 +1707887172,213,0 +1707887172,213,0 +1707887173,213,0 +1707887173,213,0 +1707887174,213,0 +1707887174,213,0 +1707887175,213,0 +1707887175,214,0 +1707887176,213,0 +1707887176,213,0 +1707887177,214,0 +1707887177,214,0 +1707887178,214,0 +1707887178,214,0 +1707887179,214,0 +1707887179,214,0 +1707887180,214,0 +1707887180,214,0 +1707887180,213,0 +1707887181,213,0 +1707887181,213,0 +1707887182,213,0 +1707887182,213,0 +1707887183,213,0 +1707887183,213,0 +1707887184,213,0 +1707887184,213,0 +1707887185,213,0 +1707887185,213,0 +1707887186,213,0 +1707887186,213,0 +1707887187,214,0 +1707887187,214,0 +1707887188,214,0 +1707887188,214,0 +1707887189,214,0 +1707887189,214,0 +1707887190,213,0 +1707887190,213,0 +1707887191,213,0 +1707887191,213,0 +1707887192,213,0 +1707887192,213,0 +1707887193,213,0 +1707887193,213,0 +1707887194,213,0 +1707887194,214,0 +1707887195,213,0 +1707887195,214,0 +1707887196,214,0 +1707887196,214,0 +1707887197,214,0 +1707887197,214,0 +1707887197,214,0 +1707887198,214,0 +1707887198,214,0 +1707887199,213,0 +1707887199,213,0 +1707887200,213,0 +1707887200,213,0 +1707887201,213,0 +1707887201,213,0 +1707887202,213,0 +1707887202,214,0 +1707887203,214,0 +1707887203,214,0 +1707887204,214,0 +1707887204,214,0 +1707887205,214,0 +1707887205,214,0 +1707887206,214,0 +1707887206,214,0 +1707887207,214,0 +1707887207,214,0 +1707887208,214,0 +1707887208,213,0 +1707887209,213,0 +1707887209,213,0 +1707887210,213,0 +1707887210,213,0 +1707887211,214,0 +1707887211,213,0 +1707887212,214,0 +1707887212,214,0 +1707887213,214,0 +1707887213,214,0 +1707887214,214,0 +1707887214,214,0 +1707887215,214,0 +1707887215,214,0 +1707887216,214,0 +1707887216,214,0 +1707887216,214,0 +1707887217,214,0 +1707887217,213,0 +1707887218,214,0 +1707887218,214,0 +1707887219,214,0 +1707887219,213,0 +1707887220,213,0 +1707887220,213,0 +1707887221,214,0 +1707887221,214,0 +1707887222,214,0 +1707887222,214,0 +1707887223,214,0 +1707887223,214,0 +1707887224,214,0 +1707887224,214,0 +1707887225,214,0 +1707887225,214,0 +1707887226,214,0 +1707887226,213,0 +1707887227,213,0 +1707887227,213,0 +1707887228,213,0 +1707887228,214,0 +1707887229,213,0 +1707887229,213,0 +1707887230,214,0 +1707887230,214,0 +1707887231,214,0 +1707887231,214,0 +1707887232,214,0 +1707887232,214,0 +1707887232,214,0 +1707887233,214,0 +1707887233,214,0 +1707887234,214,0 +1707887234,214,0 +1707887235,214,0 +1707887235,214,0 +1707887236,213,0 +1707887236,213,0 +1707887237,213,0 +1707887237,213,0 +1707887238,213,0 +1707887238,213,0 +1707887239,213,0 +1707887239,213,0 +1707887240,213,0 +1707887240,214,0 +1707887241,214,0 +1707887241,214,0 +1707887242,214,0 +1707887242,214,0 +1707887243,214,0 +1707887243,214,0 +1707887244,214,0 +1707887244,214,0 +1707887245,214,0 +1707887245,213,0 +1707887246,213,0 +1707887246,213,0 +1707887247,213,0 +1707887247,213,0 +1707887248,214,0 +1707887248,214,0 +1707887248,214,0 +1707887249,214,0 +1707887249,214,0 +1707887250,214,0 +1707887250,214,0 +1707887251,214,0 +1707887251,214,0 +1707887252,214,0 +1707887252,214,0 +1707887253,214,0 +1707887253,214,0 +1707887254,214,0 +1707887254,213,0 +1707887255,213,0 +1707887255,213,0 +1707887256,213,0 +1707887256,213,0 +1707887257,213,0 +1707887257,213,0 +1707887258,213,0 +1707887258,213,0 +1707887259,213,0 +1707887259,213,0 +1707887260,214,0 +1707887260,214,0 +1707887261,214,0 +1707887261,214,0 +1707887261,214,0 +1707887262,214,0 +1707887262,214,0 +1707887263,214,0 +1707887263,213,0 +1707887264,213,0 +1707887264,213,0 +1707887265,213,0 +1707887265,213,0 +1707887266,213,0 +1707887266,213,0 +1707887267,213,0 +1707887267,213,0 +1707887268,214,0 +1707887268,213,0 +1707887269,213,0 +1707887269,214,0 +1707887270,214,0 +1707887270,214,0 +1707887271,214,0 +1707887271,214,0 +1707887272,214,0 +1707887272,214,0 +1707887273,213,0 +1707887273,213,0 +1707887274,213,0 +1707887274,213,0 +1707887275,213,0 +1707887275,213,0 +1707887276,213,0 +1707887276,213,0 +1707887276,213,0 +1707887277,213,0 +1707887277,213,0 +1707887278,213,0 +1707887278,214,0 +1707887279,214,0 +1707887279,214,0 +1707887280,214,0 +1707887280,214,0 +1707887281,214,0 +1707887281,214,0 +1707887282,213,0 +1707887282,213,0 +1707887283,213,0 +1707887283,213,0 +1707887284,213,0 +1707887284,213,0 +1707887285,213,0 +1707887285,213,0 +1707887286,213,0 +1707887286,213,0 +1707887287,213,0 +1707887287,214,0 +1707887288,214,0 +1707887288,214,0 +1707887289,214,0 +1707887289,214,0 +1707887290,214,0 +1707887290,214,0 +1707887291,214,0 +1707887291,213,0 +1707887292,213,0 +1707887292,213,0 +1707887292,213,0 +1707887293,213,0 +1707887293,213,0 +1707887294,213,0 +1707887294,213,0 +1707887295,213,0 +1707887295,213,0 +1707887296,213,0 +1707887296,213,0 +1707887297,214,0 +1707887297,213,0 +1707887298,213,0 +1707887298,213,0 +1707887299,213,0 +1707887299,214,0 +1707887300,214,0 +1707887300,213,0 +1707887301,213,0 +1707887301,213,0 +1707887302,213,0 +1707887302,213,0 +1707887303,213,0 +1707887303,213,0 +1707887304,213,0 +1707887304,213,0 +1707887305,213,0 +1707887305,213,0 +1707887306,214,0 +1707887306,214,0 +1707887306,214,0 +1707887307,213,0 +1707887307,213,0 +1707887308,214,0 +1707887308,214,0 +1707887309,214,0 +1707887309,213,0 +1707887310,213,0 +1707887310,213,0 +1707887311,213,0 +1707887311,213,0 +1707887312,213,0 +1707887312,213,0 +1707887313,213,0 +1707887313,213,0 +1707887314,214,0 +1707887314,213,0 +1707887315,214,0 +1707887315,214,0 +1707887316,214,0 +1707887316,214,0 +1707887317,214,0 +1707887317,214,0 +1707887318,214,0 +1707887318,214,0 +1707887319,213,0 +1707887319,213,0 +1707887320,213,0 +1707887320,213,0 +1707887320,213,0 +1707887321,213,0 +1707887321,213,0 +1707887322,213,0 +1707887322,213,0 +1707887323,214,0 +1707887323,213,0 +1707887324,214,0 +1707887324,214,0 +1707887325,214,0 +1707887325,214,0 +1707887326,214,0 +1707887326,214,0 +1707887327,214,0 +1707887327,214,0 +1707887328,213,0 +1707887328,213,0 +1707887329,213,0 +1707887329,213,0 +1707887330,213,0 +1707887330,213,0 +1707887331,213,0 +1707887331,213,0 +1707887332,213,0 +1707887332,213,0 +1707887333,213,0 +1707887333,213,0 +1707887334,214,0 +1707887334,214,0 +1707887335,214,0 +1707887335,214,0 +1707887336,214,0 +1707887336,214,0 +1707887337,214,0 +1707887337,213,0 +1707887337,213,0 +1707887338,213,0 +1707887338,213,0 +1707887339,213,0 +1707887339,213,0 +1707887340,213,0 +1707887340,213,0 +1707887341,213,0 +1707887341,213,0 +1707887342,213,0 +1707887342,213,0 +1707887343,214,0 +1707887343,214,0 +1707887344,214,0 +1707887344,214,0 +1707887345,214,0 +1707887345,214,0 +1707887346,213,0 +1707887346,213,0 +1707887347,213,0 +1707887347,213,0 +1707887348,213,0 +1707887348,213,0 +1707887349,213,0 +1707887349,213,0 +1707887350,213,0 +1707887350,214,0 +1707887351,214,0 +1707887351,214,0 +1707887352,214,0 +1707887352,214,0 +1707887352,214,0 +1707887353,214,0 +1707887353,214,0 +1707887354,214,0 +1707887354,214,0 +1707887355,214,0 +1707887355,213,0 +1707887356,213,0 +1707887356,213,0 +1707887357,213,0 +1707887357,213,0 +1707887358,213,0 +1707887358,214,0 +1707887359,214,0 +1707887359,214,0 +1707887360,214,0 +1707887360,214,0 +1707887361,214,0 +1707887361,214,0 +1707887362,214,0 +1707887362,214,0 +1707887363,214,0 +1707887363,214,0 +1707887364,214,0 +1707887364,213,0 +1707887365,213,0 +1707887365,213,0 +1707887366,213,0 +1707887366,213,0 +1707887367,213,0 +1707887367,213,0 +1707887368,213,0 +1707887368,213,0 +1707887369,213,0 +1707887369,214,0 +1707887370,214,0 +1707887370,214,0 +1707887370,214,0 +1707887371,214,0 +1707887371,214,0 +1707887372,214,0 +1707887372,214,0 +1707887373,214,0 +1707887373,213,0 +1707887374,213,0 +1707887374,213,0 +1707887375,213,0 +1707887375,213,0 +1707887376,213,0 +1707887376,213,0 +1707887377,213,0 +1707887377,213,0 +1707887378,213,0 +1707887378,214,0 +1707887379,214,0 +1707887379,214,0 +1707887380,214,0 +1707887380,214,0 +1707887381,214,0 +1707887381,214,0 +1707887382,214,0 +1707887382,214,0 +1707887383,213,0 +1707887383,213,0 +1707887384,213,0 +1707887384,213,0 +1707887385,213,0 +1707887385,213,0 +1707887386,213,0 +1707887386,213,0 +1707887386,213,0 +1707887387,213,0 +1707887387,214,0 +1707887388,214,0 +1707887388,214,0 +1707887389,214,0 +1707887389,214,0 +1707887390,214,0 +1707887390,214,0 +1707887391,214,0 +1707887391,213,0 +1707887392,213,0 +1707887392,213,0 +1707887393,213,0 +1707887393,213,0 +1707887394,213,0 +1707887394,213,0 +1707887395,213,0 +1707887395,213,0 +1707887396,213,0 +1707887396,213,0 +1707887397,214,0 +1707887397,214,0 +1707887398,214,0 +1707887398,213,0 +1707887399,214,0 +1707887399,214,0 +1707887400,214,0 +1707887400,214,0 +1707887401,214,0 +1707887401,213,0 +1707887402,213,0 +1707887402,213,0 +1707887402,213,0 +1707887403,213,0 +1707887403,213,0 +1707887404,213,0 +1707887404,213,0 +1707887405,213,0 +1707887405,213,0 +1707887406,213,0 +1707887406,213,0 +1707887407,213,0 +1707887407,213,0 +1707887408,213,0 +1707887408,213,0 +1707887409,214,0 +1707887409,214,0 +1707887410,214,0 +1707887410,213,0 +1707887411,213,0 +1707887411,213,0 +1707887412,213,0 +1707887412,213,0 +1707887413,213,0 +1707887413,213,0 +1707887414,213,0 +1707887414,213,0 +1707887415,213,0 +1707887415,213,0 +1707887416,214,0 +1707887416,214,0 +1707887417,214,0 +1707887417,214,0 +1707887418,214,0 +1707887418,214,0 +1707887418,214,0 +1707887419,214,0 +1707887419,213,0 +1707887420,213,0 +1707887420,213,0 +1707887421,213,0 +1707887421,213,0 +1707887422,213,0 +1707887422,213,0 +1707887423,213,0 +1707887423,214,0 +1707887424,214,0 +1707887424,214,0 +1707887425,214,0 +1707887425,214,0 +1707887426,214,0 +1707887426,214,0 +1707887427,214,0 +1707887427,214,0 +1707887428,214,0 +1707887428,214,0 +1707887429,213,0 +1707887429,213,0 +1707887430,213,0 +1707887430,213,0 +1707887431,213,0 +1707887431,214,0 +1707887432,214,0 +1707887432,214,0 +1707887433,214,0 +1707887433,214,0 +1707887434,214,0 +1707887434,214,0 +1707887435,214,0 +1707887435,214,0 +1707887435,214,0 +1707887436,214,0 +1707887436,214,0 +1707887437,214,0 +1707887437,214,0 +1707887438,213,0 +1707887438,213,0 +1707887439,213,0 +1707887439,213,0 +1707887440,213,0 +1707887440,214,0 +1707887441,213,0 +1707887441,213,0 +1707887442,214,0 +1707887442,214,0 +1707887443,214,0 +1707887443,214,0 +1707887444,214,0 +1707887444,214,0 +1707887445,214,0 +1707887445,214,0 +1707887446,214,0 +1707887446,214,0 +1707887447,214,0 +1707887447,213,0 +1707887448,213,0 +1707887448,213,0 +1707887449,213,0 +1707887449,213,0 +1707887450,213,0 +1707887450,213,0 +1707887450,213,0 +1707887451,213,0 +1707887451,213,0 +1707887452,213,0 +1707887452,213,0 +1707887453,213,0 +1707887453,214,0 +1707887454,213,0 +1707887454,214,0 +1707887455,213,0 +1707887455,214,0 +1707887456,213,0 +1707887456,213,0 +1707887457,213,0 +1707887457,213,0 +1707887458,213,0 +1707887458,213,0 +1707887459,213,0 +1707887459,213,0 +1707887460,213,0 +1707887460,213,0 +1707887461,213,0 +1707887461,213,0 +1707887462,213,0 +1707887462,213,0 +1707887463,213,0 +1707887463,214,0 +1707887464,214,0 +1707887464,214,0 +1707887465,214,0 +1707887465,214,0 +1707887466,213,0 +1707887466,213,0 +1707887467,213,0 +1707887467,213,0 +1707887467,213,0 +1707887468,213,0 +1707887468,213,0 +1707887469,213,0 +1707887469,213,0 +1707887470,213,0 +1707887470,213,0 +1707887471,213,0 +1707887471,214,0 +1707887472,214,0 +1707887472,214,0 +1707887473,214,0 +1707887473,214,0 +1707887474,214,0 +1707887474,214,0 +1707887475,213,0 +1707887475,213,0 +1707887476,213,0 +1707887476,213,0 +1707887477,213,0 +1707887477,213,0 +1707887478,213,0 +1707887478,213,0 +1707887479,213,0 +1707887479,213,0 +1707887480,214,0 +1707887480,214,0 +1707887481,214,0 +1707887481,214,0 +1707887482,214,0 +1707887482,214,0 +1707887483,214,0 +1707887483,214,0 +1707887483,214,0 +1707887484,213,0 +1707887484,213,0 +1707887485,213,0 +1707887485,213,0 +1707887486,213,0 +1707887486,213,0 +1707887487,213,0 +1707887487,213,0 +1707887488,214,0 +1707887488,214,0 +1707887489,213,0 +1707887489,214,0 +1707887490,214,0 +1707887490,214,0 +1707887491,214,0 +1707887491,214,0 +1707887492,214,0 +1707887492,214,0 +1707887493,214,0 +1707887493,213,0 +1707887494,213,0 +1707887494,213,0 +1707887495,213,0 +1707887495,213,0 +1707887496,213,0 +1707887496,213,0 +1707887497,214,0 +1707887497,214,0 +1707887498,214,0 +1707887498,214,0 +1707887498,214,0 +1707887499,214,0 +1707887499,214,0 +1707887500,214,0 +1707887500,214,0 +1707887501,214,0 +1707887501,214,0 +1707887502,214,0 +1707887502,213,0 +1707887503,213,0 +1707887503,213,0 +1707887504,213,0 +1707887504,213,0 +1707887505,213,0 +1707887505,213,0 +1707887506,214,0 +1707887506,214,0 +1707887507,214,0 +1707887507,214,0 +1707887508,214,0 +1707887508,214,0 +1707887509,214,0 +1707887509,214,0 +1707887510,214,0 +1707887510,214,0 +1707887511,214,0 +1707887511,214,0 +1707887512,213,0 +1707887512,213,0 +1707887513,213,0 +1707887513,213,0 +1707887514,213,0 +1707887514,214,0 +1707887514,213,0 +1707887515,214,0 +1707887515,213,0 +1707887516,214,0 +1707887516,214,0 +1707887517,214,0 +1707887517,214,0 +1707887518,214,0 +1707887518,214,0 +1707887519,214,0 +1707887519,214,0 +1707887520,214,0 +1707887520,213,0 +1707887521,213,0 +1707887521,213,0 +1707887522,213,0 +1707887522,213,0 +1707887523,213,0 +1707887523,213,0 +1707887524,214,0 +1707887524,214,0 +1707887525,214,0 +1707887525,214,0 +1707887526,214,0 +1707887526,214,0 +1707887527,214,0 +1707887527,214,0 +1707887528,213,0 +1707887528,214,0 +1707887528,214,0 +1707887529,214,0 +1707887529,213,0 +1707887530,213,0 +1707887530,213,0 +1707887531,213,0 +1707887531,213,0 +1707887532,213,0 +1707887532,213,0 +1707887533,213,0 +1707887533,213,0 +1707887534,213,0 +1707887534,213,0 +1707887535,213,0 +1707887535,214,0 +1707887536,213,0 +1707887536,214,0 +1707887537,214,0 +1707887537,214,0 +1707887538,213,0 +1707887538,214,0 +1707887539,214,0 +1707887539,213,0 +1707887540,213,0 +1707887540,213,0 +1707887541,213,0 +1707887541,213,0 +1707887542,213,0 +1707887542,213,0 +1707887543,213,0 +1707887543,213,0 +1707887544,213,0 +1707887544,213,0 +1707887545,214,0 +1707887545,214,0 +1707887546,214,0 +1707887546,214,0 +1707887546,214,0 +1707887547,214,0 +1707887547,214,0 +1707887548,213,0 +1707887548,213,0 +1707887549,213,0 +1707887549,213,0 +1707887550,213,0 +1707887550,213,0 +1707887551,213,0 +1707887551,213,0 +1707887552,213,0 +1707887552,214,0 +1707887553,214,0 +1707887553,213,0 +1707887554,213,0 +1707887554,214,0 +1707887555,214,0 +1707887555,214,0 +1707887556,214,0 +1707887556,214,0 +1707887557,214,0 +1707887557,213,0 +1707887558,213,0 +1707887558,213,0 +1707887559,213,0 +1707887559,213,0 +1707887560,213,0 +1707887560,213,0 +1707887561,213,0 +1707887561,213,0 +1707887562,213,0 +1707887562,214,0 +1707887562,213,0 +1707887563,213,0 +1707887563,214,0 +1707887564,214,0 +1707887564,214,0 +1707887565,214,0 +1707887565,214,0 +1707887566,214,0 +1707887566,214,0 +1707887567,213,0 +1707887567,213,0 +1707887568,213,0 +1707887568,213,0 +1707887569,213,0 +1707887569,213,0 +1707887570,213,0 +1707887570,213,0 +1707887571,213,0 +1707887571,213,0 +1707887572,213,0 +1707887572,213,0 +1707887573,213,0 +1707887573,214,0 +1707887574,213,0 +1707887574,214,0 +1707887575,214,0 +1707887575,214,0 +1707887576,213,0 +1707887576,213,0 +1707887577,213,0 +1707887577,213,0 +1707887578,213,0 +1707887578,213,0 +1707887579,213,0 +1707887579,213,0 +1707887579,213,0 +1707887580,213,0 +1707887580,213,0 +1707887581,213,0 +1707887581,213,0 +1707887582,213,0 +1707887582,213,0 +1707887583,213,0 +1707887583,213,0 +1707887584,214,0 +1707887584,214,0 +1707887585,213,0 +1707887585,213,0 +1707887586,213,0 +1707887586,213,0 +1707887587,213,0 +1707887587,213,0 +1707887588,213,0 +1707887588,213,0 +1707887589,213,0 +1707887589,213,0 +1707887590,213,0 +1707887590,213,0 +1707887591,213,0 +1707887591,213,0 +1707887592,213,0 +1707887592,214,0 +1707887593,213,0 +1707887593,213,0 +1707887593,214,0 +1707887594,214,0 +1707887594,213,0 +1707887595,213,0 +1707887595,213,0 +1707887596,213,0 +1707887596,213,0 +1707887597,213,0 +1707887597,213,0 +1707887598,213,0 +1707887598,213,0 +1707887599,213,0 +1707887599,213,0 +1707887600,214,0 +1707887600,213,0 +1707887601,214,0 +1707887601,214,0 +1707887602,214,0 +1707887602,214,0 +1707887603,214,0 +1707887603,213,0 +1707887604,213,0 +1707887604,213,0 +1707887605,213,0 +1707887605,213,0 +1707887606,213,0 +1707887606,213,0 +1707887607,213,0 +1707887607,213,0 +1707887608,213,0 +1707887608,214,0 +1707887609,214,0 +1707887609,214,0 +1707887609,214,0 +1707887610,214,0 +1707887610,214,0 +1707887611,214,0 +1707887611,214,0 +1707887612,214,0 +1707887612,213,0 +1707887613,213,0 +1707887613,213,0 +1707887614,213,0 +1707887614,214,0 +1707887615,213,0 +1707887615,213,0 +1707887616,214,0 +1707887616,214,0 +1707887617,214,0 +1707887617,214,0 +1707887618,214,0 +1707887618,214,0 +1707887619,214,0 +1707887619,214,0 +1707887620,214,0 +1707887620,214,0 +1707887621,214,0 +1707887621,214,0 +1707887622,213,0 +1707887622,214,0 +1707887623,213,0 +1707887623,213,0 +1707887624,214,0 +1707887624,214,0 +1707887625,214,0 +1707887625,214,0 +1707887626,214,0 +1707887626,214,0 +1707887627,214,0 +1707887627,214,0 +1707887627,214,0 +1707887628,214,0 +1707887628,214,0 +1707887629,214,0 +1707887629,214,0 +1707887630,214,0 +1707887630,214,0 +1707887631,214,0 +1707887631,214,0 +1707887632,213,0 +1707887632,213,0 +1707887633,213,0 +1707887633,214,0 +1707887634,214,0 +1707887634,214,0 +1707887635,214,0 +1707887635,214,0 +1707887636,214,0 +1707887636,214,0 +1707887637,214,0 +1707887637,214,0 +1707887638,214,0 +1707887638,214,0 +1707887639,214,0 +1707887639,214,0 +1707887640,214,0 +1707887640,213,0 +1707887641,213,0 +1707887641,213,0 +1707887642,213,0 +1707887642,213,0 +1707887643,213,0 +1707887643,213,0 +1707887644,213,0 +1707887644,213,0 +1707887645,213,0 +1707887645,214,0 +1707887646,214,0 +1707887646,214,0 +1707887646,214,0 +1707887647,214,0 +1707887647,214,0 +1707887648,214,0 +1707887648,214,0 +1707887649,214,0 +1707887649,213,0 +1707887650,213,0 +1707887650,213,0 +1707887651,213,0 +1707887651,213,0 +1707887652,213,0 +1707887652,213,0 +1707887653,213,0 +1707887653,213,0 +1707887654,214,0 +1707887654,214,0 +1707887655,214,0 +1707887655,214,0 +1707887656,214,0 +1707887656,214,0 +1707887657,214,0 +1707887657,214,0 +1707887658,214,0 +1707887658,214,0 +1707887659,213,0 +1707887659,213,0 +1707887659,213,0 +1707887660,213,0 +1707887660,213,0 +1707887661,213,0 +1707887661,213,0 +1707887662,213,0 +1707887662,214,0 +1707887663,214,0 +1707887663,213,0 +1707887664,214,0 +1707887664,213,0 +1707887665,214,0 +1707887665,214,0 +1707887666,214,0 +1707887666,214,0 +1707887667,214,0 +1707887667,214,0 +1707887668,214,0 +1707887668,213,0 +1707887669,213,0 +1707887669,213,0 +1707887670,213,0 +1707887670,213,0 +1707887671,213,0 +1707887671,213,0 +1707887672,213,0 +1707887672,213,0 +1707887673,214,0 +1707887673,214,0 +1707887673,214,0 +1707887674,214,0 +1707887674,214,0 +1707887675,214,0 +1707887675,214,0 +1707887676,214,0 +1707887676,214,0 +1707887677,213,0 +1707887677,213,0 +1707887678,213,0 +1707887678,213,0 +1707887679,213,0 +1707887679,213,0 +1707887680,213,0 +1707887680,213,0 +1707887681,213,0 +1707887681,213,0 +1707887682,213,0 +1707887682,213,0 +1707887683,214,0 +1707887683,213,0 +1707887684,214,0 +1707887684,214,0 +1707887685,214,0 +1707887685,214,0 +1707887685,214,0 +1707887686,214,0 +1707887686,213,0 +1707887687,213,0 +1707887687,213,0 +1707887688,213,0 +1707887688,213,0 +1707887689,213,0 +1707887689,213,0 +1707887690,213,0 +1707887690,213,0 +1707887691,213,0 +1707887691,213,0 +1707887692,213,0 +1707887692,213,0 +1707887693,214,0 +1707887693,214,0 +1707887694,214,0 +1707887694,214,0 +1707887695,214,0 +1707887695,214,0 +1707887696,213,0 +1707887696,213,0 +1707887697,213,0 +1707887697,213,0 +1707887697,213,0 +1707887698,213,0 +1707887698,213,0 +1707887699,213,0 +1707887699,213,0 +1707887700,213,0 +1707887700,213,0 +1707887701,213,0 +1707887701,213,0 +1707887702,213,0 +1707887702,213,0 +1707887703,214,0 +1707887703,214,0 +1707887704,214,0 +1707887704,213,0 +1707887705,213,0 +1707887705,213,0 +1707887706,213,0 +1707887706,213,0 +1707887707,213,0 +1707887707,213,0 +1707887708,213,0 +1707887708,213,0 +1707887709,213,0 +1707887709,213,0 +1707887710,213,0 +1707887710,213,0 +1707887711,214,0 +1707887711,213,0 +1707887712,214,0 +1707887712,214,0 +1707887712,214,0 +1707887713,214,0 +1707887713,213,0 +1707887714,213,0 +1707887714,213,0 +1707887715,213,0 +1707887715,213,0 +1707887716,213,0 +1707887716,213,0 +1707887717,213,0 +1707887717,213,0 +1707887718,213,0 +1707887718,213,0 +1707887719,213,0 +1707887719,213,0 +1707887720,213,0 +1707887720,213,0 +1707887721,213,0 +1707887721,213,0 +1707887722,214,0 +1707887722,213,0 +1707887723,214,0 +1707887723,213,0 +1707887724,213,0 +1707887724,213,0 +1707887725,213,0 +1707887725,213,0 +1707887726,213,0 +1707887726,213,0 +1707887726,213,0 +1707887727,213,0 +1707887727,213,0 +1707887728,213,0 +1707887728,213,0 +1707887729,213,0 +1707887729,213,0 +1707887730,213,0 +1707887730,214,0 +1707887731,213,0 +1707887731,214,0 +1707887732,214,0 +1707887732,213,0 +1707887733,213,0 +1707887733,213,0 +1707887734,213,0 +1707887734,213,0 +1707887735,213,0 +1707887735,213,0 +1707887736,213,0 +1707887736,213,0 +1707887737,213,0 +1707887737,213,0 +1707887738,213,0 +1707887738,213,0 +1707887739,213,0 +1707887739,213,0 +1707887739,213,0 +1707887740,214,0 +1707887740,213,0 +1707887741,213,0 +1707887741,213,0 +1707887742,213,0 +1707887742,213,0 +1707887743,213,0 +1707887743,213,0 +1707887744,213,0 +1707887744,213,0 +1707887745,213,0 +1707887745,213,0 +1707887746,213,0 +1707887746,213,0 +1707887747,213,0 +1707887747,213,0 +1707887748,213,0 +1707887748,213,0 +1707887749,213,0 +1707887749,214,0 +1707887750,214,0 +1707887750,214,0 +1707887751,213,0 +1707887751,213,0 +1707887752,213,0 +1707887752,213,0 +1707887752,213,0 +1707887753,213,0 +1707887753,213,0 +1707887754,213,0 +1707887754,213,0 +1707887755,213,0 +1707887755,213,0 +1707887756,214,0 +1707887756,213,0 +1707887757,214,0 +1707887757,213,0 +1707887758,213,0 +1707887758,213,0 +1707887759,213,0 +1707887759,214,0 +1707887760,213,0 +1707887760,213,0 +1707887761,213,0 +1707887761,213,0 +1707887762,213,0 +1707887762,213,0 +1707887763,213,0 +1707887763,213,0 +1707887764,213,0 +1707887764,213,0 +1707887765,213,0 +1707887765,213,0 +1707887766,213,0 +1707887766,213,0 +1707887767,213,0 +1707887767,213,0 +1707887768,213,0 +1707887768,213,0 +1707887769,213,0 +1707887769,213,0 +1707887769,213,0 +1707887770,213,0 +1707887770,213,0 +1707887771,213,0 +1707887771,213,0 +1707887772,213,0 +1707887772,213,0 +1707887773,213,0 +1707887773,213,0 +1707887774,213,0 +1707887774,213,0 +1707887775,213,0 +1707887775,214,0 +1707887776,213,0 +1707887776,214,0 +1707887777,214,0 +1707887777,214,0 +1707887778,214,0 +1707887778,213,0 +1707887779,213,0 +1707887779,213,0 +1707887780,213,0 +1707887780,213,0 +1707887781,213,0 +1707887781,213,0 +1707887782,213,0 +1707887782,213,0 +1707887783,213,0 +1707887783,214,0 +1707887784,213,0 +1707887784,213,0 +1707887784,214,0 +1707887785,214,0 +1707887785,214,0 +1707887786,213,0 +1707887786,214,0 +1707887787,213,0 +1707887787,213,0 +1707887788,213,0 +1707887788,213,0 +1707887789,213,0 +1707887789,213,0 +1707887790,213,0 +1707887790,213,0 +1707887791,213,0 +1707887791,213,0 +1707887792,213,0 +1707887792,213,0 +1707887793,213,0 +1707887793,213,0 +1707887794,213,0 +1707887794,213,0 +1707887795,213,0 +1707887795,214,0 +1707887796,214,0 +1707887796,214,0 +1707887797,213,0 +1707887797,213,0 +1707887798,213,0 +1707887798,213,0 +1707887798,213,0 +1707887799,213,0 +1707887799,213,0 +1707887800,213,0 +1707887800,213,0 +1707887801,213,0 +1707887801,214,0 +1707887802,213,0 +1707887802,214,0 +1707887803,214,0 +1707887803,214,0 +1707887804,214,0 +1707887804,214,0 +1707887805,214,0 +1707887805,214,0 +1707887806,213,0 +1707887806,213,0 +1707887807,213,0 +1707887807,213,0 +1707887808,213,0 +1707887808,213,0 +1707887809,214,0 +1707887809,214,0 +1707887810,214,0 +1707887810,214,0 +1707887811,214,0 +1707887811,214,0 +1707887812,214,0 +1707887812,214,0 +1707887813,214,0 +1707887813,214,0 +1707887814,214,0 +1707887814,214,0 +1707887815,214,0 +1707887815,213,0 +1707887816,213,0 +1707887816,213,0 +1707887817,213,0 +1707887817,214,0 +1707887817,213,0 +1707887818,214,0 +1707887818,213,0 +1707887819,214,0 +1707887819,214,0 +1707887820,214,0 +1707887820,214,0 +1707887821,214,0 +1707887821,214,0 +1707887822,214,0 +1707887822,214,0 +1707887823,214,0 +1707887823,214,0 +1707887824,213,0 +1707887824,213,0 +1707887825,213,0 +1707887825,213,0 +1707887826,213,0 +1707887826,213,0 +1707887827,213,0 +1707887827,213,0 +1707887828,213,0 +1707887828,213,0 +1707887829,213,0 +1707887829,213,0 +1707887830,213,0 +1707887830,214,0 +1707887831,214,0 +1707887831,214,0 +1707887832,214,0 +1707887832,214,0 +1707887833,214,0 +1707887833,213,0 +1707887833,213,0 +1707887834,213,0 +1707887834,213,0 +1707887835,213,0 +1707887835,213,0 +1707887836,213,0 +1707887836,213,0 +1707887837,213,0 +1707887837,213,0 +1707887838,214,0 +1707887838,213,0 +1707887839,213,0 +1707887839,213,0 +1707887840,213,0 +1707887840,213,0 +1707887841,213,0 +1707887841,214,0 +1707887842,214,0 +1707887842,214,0 +1707887843,213,0 +1707887843,213,0 +1707887844,213,0 +1707887844,213,0 +1707887845,213,0 +1707887845,213,0 +1707887846,213,0 +1707887846,213,0 +1707887847,213,0 +1707887847,213,0 +1707887847,213,0 +1707887848,213,0 +1707887848,214,0 +1707887849,214,0 +1707887849,214,0 +1707887850,214,0 +1707887850,213,0 +1707887851,214,0 +1707887851,213,0 +1707887852,213,0 +1707887852,213,0 +1707887853,213,0 +1707887853,213,0 +1707887854,213,0 +1707887854,213,0 +1707887855,213,0 +1707887855,213,0 +1707887856,213,0 +1707887856,213,0 +1707887857,213,0 +1707887857,213,0 +1707887858,213,0 +1707887858,214,0 +1707887859,214,0 +1707887859,214,0 +1707887860,214,0 +1707887860,214,0 +1707887861,214,0 +1707887861,213,0 +1707887862,213,0 +1707887862,213,0 +1707887862,213,0 +1707887863,213,0 +1707887863,213,0 +1707887864,213,0 +1707887864,213,0 +1707887865,213,0 +1707887865,213,0 +1707887866,214,0 +1707887866,214,0 +1707887867,214,0 +1707887867,214,0 +1707887868,214,0 +1707887868,214,0 +1707887869,214,0 +1707887869,214,0 +1707887870,214,0 +1707887870,213,0 +1707887871,213,0 +1707887871,213,0 +1707887872,213,0 +1707887872,213,0 +1707887873,213,0 +1707887873,213,0 +1707887874,213,0 +1707887874,213,0 +1707887875,213,0 +1707887875,213,0 +1707887876,214,0 +1707887876,214,0 +1707887877,214,0 +1707887877,214,0 +1707887878,214,0 +1707887878,214,0 +1707887879,214,0 +1707887879,214,0 +1707887879,213,0 +1707887880,213,0 +1707887880,213,0 +1707887881,213,0 +1707887881,213,0 +1707887882,213,0 +1707887882,213,0 +1707887883,213,0 +1707887883,213,0 +1707887884,213,0 +1707887884,214,0 +1707887885,213,0 +1707887885,213,0 +1707887886,213,0 +1707887886,213,0 +1707887887,214,0 +1707887887,214,0 +1707887888,214,0 +1707887888,214,0 +1707887889,213,0 +1707887889,213,0 +1707887890,213,0 +1707887890,213,0 +1707887891,213,0 +1707887891,213,0 +1707887892,213,0 +1707887892,213,0 +1707887893,213,0 +1707887893,213,0 +1707887894,213,0 +1707887894,214,0 +1707887895,213,0 +1707887895,214,0 +1707887895,214,0 +1707887896,214,0 +1707887896,214,0 +1707887897,214,0 +1707887897,214,0 +1707887898,213,0 +1707887898,213,0 +1707887899,213,0 +1707887899,213,0 +1707887900,213,0 +1707887900,213,0 +1707887901,213,0 +1707887901,213,0 +1707887902,214,0 +1707887902,214,0 +1707887903,214,0 +1707887903,214,0 +1707887904,214,0 +1707887904,214,0 +1707887905,214,0 +1707887905,214,0 +1707887906,214,0 +1707887906,214,0 +1707887907,214,0 +1707887907,213,0 +1707887908,213,0 +1707887908,213,0 +1707887909,213,0 +1707887909,214,0 +1707887910,213,0 +1707887910,214,0 +1707887911,213,0 +1707887911,214,0 +1707887911,214,0 +1707887912,214,0 +1707887912,214,0 +1707887913,214,0 +1707887913,214,0 +1707887914,214,0 +1707887914,214,0 +1707887915,214,0 +1707887915,214,0 +1707887916,214,0 +1707887916,213,0 +1707887917,213,0 +1707887917,213,0 +1707887918,214,0 +1707887918,213,0 +1707887919,214,0 +1707887919,214,0 +1707887920,214,0 +1707887920,214,0 +1707887921,214,0 +1707887921,214,0 +1707887922,214,0 +1707887922,214,0 +1707887923,214,0 +1707887923,214,0 +1707887924,214,0 +1707887924,214,0 +1707887925,214,0 +1707887925,214,0 +1707887926,213,0 +1707887926,213,0 +1707887926,213,0 +1707887927,213,0 +1707887927,213,0 +1707887928,213,0 +1707887928,214,0 +1707887929,214,0 +1707887929,214,0 +1707887930,214,0 +1707887930,214,0 +1707887931,214,0 +1707887931,214,0 +1707887932,214,0 +1707887932,214,0 +1707887933,214,0 +1707887933,214,0 +1707887934,214,0 +1707887934,213,0 +1707887935,213,0 +1707887935,213,0 +1707887936,213,0 +1707887936,213,0 +1707887937,213,0 +1707887937,213,0 +1707887938,213,0 +1707887938,213,0 +1707887939,213,0 +1707887939,213,0 +1707887940,214,0 +1707887940,214,0 +1707887940,214,0 +1707887941,214,0 +1707887941,214,0 +1707887942,214,0 +1707887942,214,0 +1707887943,214,0 +1707887943,214,0 +1707887944,213,0 +1707887944,213,0 +1707887945,213,0 +1707887945,213,0 +1707887946,213,0 +1707887946,213,0 +1707887947,213,0 +1707887947,213,0 +1707887948,214,0 +1707887948,213,0 +1707887949,214,0 +1707887949,214,0 +1707887950,214,0 +1707887950,214,0 +1707887951,214,0 +1707887951,214,0 +1707887952,214,0 +1707887952,214,0 +1707887953,214,0 +1707887953,213,0 +1707887954,213,0 +1707887954,213,0 +1707887955,213,0 +1707887955,213,0 +1707887956,213,0 +1707887956,213,0 +1707887956,213,0 +1707887957,214,0 +1707887957,214,0 +1707887958,214,0 +1707887958,214,0 +1707887959,214,0 +1707887959,214,0 +1707887960,214,0 +1707887960,214,0 +1707887961,214,0 +1707887961,214,0 +1707887962,214,0 +1707887962,213,0 +1707887963,213,0 +1707887963,213,0 +1707887964,213,0 +1707887964,213,0 +1707887965,213,0 +1707887965,213,0 +1707887966,213,0 +1707887966,213,0 +1707887967,213,0 +1707887967,213,0 +1707887968,213,0 +1707887968,213,0 +1707887969,213,0 +1707887969,214,0 +1707887970,214,0 +1707887970,213,0 +1707887970,214,0 +1707887971,214,0 +1707887971,213,0 +1707887972,213,0 +1707887972,213,0 +1707887973,213,0 +1707887973,213,0 +1707887974,213,0 +1707887974,213,0 +1707887975,213,0 +1707887975,213,0 +1707887976,213,0 +1707887976,213,0 +1707887977,213,0 +1707887977,214,0 +1707887978,213,0 +1707887978,214,0 +1707887979,214,0 +1707887979,213,0 +1707887980,214,0 +1707887980,214,0 +1707887981,213,0 +1707887981,213,0 +1707887982,213,0 +1707887982,213,0 +1707887983,213,0 +1707887983,213,0 +1707887984,213,0 +1707887984,213,0 +1707887985,214,0 +1707887985,214,0 +1707887985,214,0 +1707887986,214,0 +1707887986,214,0 +1707887987,213,0 +1707887987,214,0 +1707887988,214,0 +1707887988,214,0 +1707887989,214,0 +1707887989,214,0 +1707887990,213,0 +1707887990,213,0 +1707887991,213,0 +1707887991,213,0 +1707887992,213,0 +1707887992,213,0 +1707887993,214,0 +1707887993,214,0 +1707887994,214,0 +1707887994,213,0 +1707887995,214,0 +1707887995,214,0 +1707887996,214,0 +1707887996,214,0 +1707887997,214,0 +1707887997,214,0 +1707887998,214,0 +1707887998,214,0 +1707887999,214,0 +1707887999,214,0 +1707888000,214,0 +1707888000,214,0 +1707888001,214,0 +1707888001,214,0 +1707888001,214,0 +1707888002,214,0 +1707888002,214,0 +1707888003,214,0 +1707888003,214,0 +1707888004,214,0 +1707888004,214,0 +1707888005,214,0 +1707888005,214,0 +1707888006,214,0 +1707888006,214,0 +1707888007,214,0 +1707888007,214,0 +1707888008,214,0 +1707888008,214,0 +1707888009,213,0 +1707888009,214,0 +1707888010,213,0 +1707888010,214,0 +1707888011,214,0 +1707888011,214,0 +1707888012,214,0 +1707888012,214,0 +1707888013,214,0 +1707888013,214,0 +1707888014,214,0 +1707888014,214,0 +1707888015,214,0 +1707888015,214,0 +1707888015,214,0 +1707888016,214,0 +1707888016,214,0 +1707888017,214,0 +1707888017,213,0 +1707888018,213,0 +1707888018,213,0 +1707888019,213,0 +1707888019,213,0 +1707888020,213,0 +1707888020,214,0 +1707888021,213,0 +1707888021,214,0 +1707888022,214,0 +1707888022,214,0 +1707888023,214,0 +1707888023,214,0 +1707888024,214,0 +1707888024,214,0 +1707888025,214,0 +1707888025,214,0 +1707888026,214,0 +1707888026,214,0 +1707888027,213,0 +1707888027,213,0 +1707888028,213,0 +1707888028,213,0 +1707888029,213,0 +1707888029,213,0 +1707888030,213,0 +1707888030,213,0 +1707888031,213,0 +1707888031,213,0 +1707888032,214,0 +1707888032,214,0 +1707888032,214,0 +1707888033,214,0 +1707888033,213,0 +1707888034,214,0 +1707888034,214,0 +1707888035,214,0 +1707888035,214,0 +1707888036,213,0 +1707888036,213,0 +1707888037,213,0 +1707888037,213,0 +1707888038,213,0 +1707888038,213,0 +1707888039,213,0 +1707888039,213,0 +1707888040,213,0 +1707888040,213,0 +1707888041,214,0 +1707888041,214,0 +1707888042,213,0 +1707888042,214,0 +1707888043,214,0 +1707888043,214,0 +1707888044,214,0 +1707888044,214,0 +1707888045,214,0 +1707888045,213,0 +1707888046,213,0 +1707888046,213,0 +1707888047,213,0 +1707888047,213,0 +1707888048,213,0 +1707888048,213,0 +1707888048,213,0 +1707888049,213,0 +1707888049,213,0 +1707888050,214,0 +1707888050,214,0 +1707888051,214,0 +1707888051,214,0 +1707888052,214,0 +1707888052,214,0 +1707888053,214,0 +1707888053,214,0 +1707888054,214,0 +1707888054,213,0 +1707888055,213,0 +1707888055,213,0 +1707888056,213,0 +1707888056,213,0 +1707888057,213,0 +1707888057,213,0 +1707888058,213,0 +1707888058,213,0 +1707888059,213,0 +1707888059,213,0 +1707888060,213,0 +1707888060,214,0 +1707888061,214,0 +1707888061,214,0 +1707888062,214,0 +1707888062,214,0 +1707888063,214,0 +1707888063,214,0 +1707888064,213,0 +1707888064,213,0 +1707888064,213,0 +1707888065,213,0 +1707888065,213,0 +1707888066,213,0 +1707888066,213,0 +1707888067,213,0 +1707888067,214,0 +1707888068,213,0 +1707888068,213,0 +1707888069,213,0 +1707888069,214,0 +1707888070,213,0 +1707888070,214,0 +1707888071,214,0 +1707888071,214,0 +1707888072,214,0 +1707888072,213,0 +1707888073,213,0 +1707888073,213,0 +1707888074,213,0 +1707888074,213,0 +1707888075,213,0 +1707888075,213,0 +1707888076,214,0 +1707888076,214,0 +1707888077,214,0 +1707888077,214,0 +1707888078,214,0 +1707888078,214,0 +1707888079,214,0 +1707888079,214,0 +1707888080,214,0 +1707888080,214,0 +1707888081,214,0 +1707888081,214,0 +1707888081,213,0 +1707888082,213,0 +1707888082,213,0 +1707888083,213,0 +1707888083,213,0 +1707888084,213,0 +1707888084,214,0 +1707888085,213,0 +1707888085,214,0 +1707888086,214,0 +1707888086,214,0 +1707888087,214,0 +1707888087,214,0 +1707888088,214,0 +1707888088,214,0 +1707888089,214,0 +1707888089,214,0 +1707888090,214,0 +1707888090,214,0 +1707888091,214,0 +1707888091,213,0 +1707888092,213,0 +1707888092,213,0 +1707888093,213,0 +1707888093,213,0 +1707888094,213,0 +1707888094,214,0 +1707888094,214,0 +1707888095,214,0 +1707888095,214,0 +1707888096,214,0 +1707888096,214,0 +1707888097,214,0 +1707888097,214,0 +1707888098,214,0 +1707888098,214,0 +1707888099,214,0 +1707888099,214,0 +1707888100,213,0 +1707888100,213,0 +1707888101,213,0 +1707888101,213,0 +1707888102,213,0 +1707888102,213,0 +1707888103,213,0 +1707888103,213,0 +1707888104,214,0 +1707888104,213,0 +1707888105,214,0 +1707888105,214,0 +1707888106,214,0 +1707888106,214,0 +1707888107,214,0 +1707888107,214,0 +1707888108,214,0 +1707888108,214,0 +1707888109,214,0 +1707888109,214,0 +1707888110,213,0 +1707888110,213,0 +1707888111,213,0 +1707888111,213,0 +1707888111,213,0 +1707888112,214,0 +1707888112,214,0 +1707888113,213,0 +1707888113,213,0 +1707888114,214,0 +1707888114,214,0 +1707888115,214,0 +1707888115,214,0 +1707888116,214,0 +1707888116,214,0 +1707888117,214,0 +1707888117,214,0 +1707888118,214,0 +1707888118,214,0 +1707888119,213,0 +1707888119,213,0 +1707888120,213,0 +1707888120,213,0 +1707888121,213,0 +1707888121,213,0 +1707888122,213,0 +1707888122,213,0 +1707888123,213,0 +1707888123,214,0 +1707888124,214,0 +1707888124,214,0 +1707888125,214,0 +1707888125,214,0 +1707888126,214,0 +1707888126,214,0 +1707888126,214,0 +1707888127,214,0 +1707888127,214,0 +1707888128,213,0 +1707888128,213,0 +1707888129,213,0 +1707888129,213,0 +1707888130,213,0 +1707888130,213,0 +1707888131,213,0 +1707888131,213,0 +1707888132,213,0 +1707888132,213,0 +1707888133,213,0 +1707888133,213,0 +1707888134,213,0 +1707888134,213,0 +1707888135,213,0 +1707888135,213,0 +1707888136,213,0 +1707888136,214,0 +1707888137,214,0 +1707888137,213,0 +1707888138,213,0 +1707888138,213,0 +1707888139,213,0 +1707888139,213,0 +1707888140,213,0 +1707888140,214,0 +1707888141,213,0 +1707888141,213,0 +1707888142,213,0 +1707888142,213,0 +1707888142,214,0 +1707888143,214,0 +1707888143,214,0 +1707888144,214,0 +1707888144,214,0 +1707888145,214,0 +1707888145,214,0 +1707888146,213,0 +1707888146,213,0 +1707888147,213,0 +1707888147,213,0 +1707888148,213,0 +1707888148,213,0 +1707888149,213,0 +1707888149,214,0 +1707888150,213,0 +1707888150,214,0 +1707888151,214,0 +1707888151,214,0 +1707888152,214,0 +1707888152,214,0 +1707888153,214,0 +1707888153,214,0 +1707888154,214,0 +1707888154,214,0 +1707888155,214,0 +1707888155,213,0 +1707888156,213,0 +1707888156,213,0 +1707888157,213,0 +1707888157,213,0 +1707888158,213,0 +1707888158,213,0 +1707888159,213,0 +1707888159,214,0 +1707888159,214,0 +1707888160,214,0 +1707888160,214,0 +1707888161,214,0 +1707888161,214,0 +1707888162,214,0 +1707888162,214,0 +1707888163,214,0 +1707888163,214,0 +1707888164,214,0 +1707888164,213,0 +1707888165,213,0 +1707888165,213,0 +1707888166,213,0 +1707888166,213,0 +1707888167,213,0 +1707888167,213,0 +1707888168,213,0 +1707888168,213,0 +1707888169,213,0 +1707888169,213,0 +1707888170,213,0 +1707888170,214,0 +1707888171,214,0 +1707888171,214,0 +1707888172,214,0 +1707888172,214,0 +1707888172,214,0 +1707888173,214,0 +1707888173,214,0 +1707888174,213,0 +1707888174,213,0 +1707888175,213,0 +1707888175,213,0 +1707888176,213,0 +1707888176,213,0 +1707888177,213,0 +1707888177,214,0 +1707888178,213,0 +1707888178,213,0 +1707888179,214,0 +1707888179,214,0 +1707888180,213,0 +1707888180,214,0 +1707888181,214,0 +1707888181,214,0 +1707888182,214,0 +1707888182,213,0 +1707888183,214,0 +1707888183,213,0 +1707888184,213,0 +1707888184,213,0 +1707888184,213,0 +1707888185,213,0 +1707888185,213,0 +1707888186,213,0 +1707888186,213,0 +1707888187,213,0 +1707888187,213,0 +1707888188,214,0 +1707888188,213,0 +1707888189,214,0 +1707888189,214,0 +1707888190,214,0 +1707888190,214,0 +1707888191,214,0 +1707888191,214,0 +1707888192,214,0 +1707888192,213,0 +1707888193,213,0 +1707888193,213,0 +1707888194,213,0 +1707888194,214,0 +1707888195,213,0 +1707888195,214,0 +1707888196,214,0 +1707888196,214,0 +1707888197,214,0 +1707888197,214,0 +1707888198,214,0 +1707888198,214,0 +1707888199,214,0 +1707888199,214,0 +1707888200,214,0 +1707888200,214,0 +1707888200,214,0 +1707888201,214,0 +1707888201,213,0 +1707888202,213,0 +1707888202,213,0 +1707888203,213,0 +1707888203,214,0 +1707888204,214,0 +1707888204,214,0 +1707888205,214,0 +1707888205,214,0 +1707888206,214,0 +1707888206,214,0 +1707888207,214,0 +1707888207,214,0 +1707888208,214,0 +1707888208,214,0 +1707888209,214,0 +1707888209,214,0 +1707888210,214,0 +1707888210,213,0 +1707888211,213,0 +1707888211,213,0 +1707888212,213,0 +1707888212,213,0 +1707888213,214,0 +1707888213,214,0 +1707888214,213,0 +1707888214,213,0 +1707888215,214,0 +1707888215,214,0 +1707888216,214,0 +1707888216,214,0 +1707888217,214,0 +1707888217,214,0 +1707888218,214,0 +1707888218,214,0 +1707888218,214,0 +1707888219,214,0 +1707888219,213,0 +1707888220,213,0 +1707888220,213,0 +1707888221,213,0 +1707888221,213,0 +1707888222,213,0 +1707888222,213,0 +1707888223,213,0 +1707888223,214,0 +1707888224,214,0 +1707888224,214,0 +1707888225,214,0 +1707888225,214,0 +1707888226,214,0 +1707888226,214,0 +1707888227,214,0 +1707888227,214,0 +1707888228,214,0 +1707888228,214,0 +1707888229,213,0 +1707888229,213,0 +1707888230,213,0 +1707888230,213,0 +1707888231,213,0 +1707888231,213,0 +1707888232,213,0 +1707888232,213,0 +1707888233,214,0 +1707888233,213,0 +1707888234,214,0 +1707888234,214,0 +1707888235,214,0 +1707888235,214,0 +1707888235,214,0 +1707888236,214,0 +1707888236,214,0 +1707888237,214,0 +1707888237,214,0 +1707888238,213,0 +1707888238,213,0 +1707888239,213,0 +1707888239,213,0 +1707888240,213,0 +1707888240,213,0 +1707888241,214,0 +1707888241,213,0 +1707888242,213,0 +1707888242,214,0 +1707888243,214,0 +1707888243,214,0 +1707888244,214,0 +1707888244,214,0 +1707888245,214,0 +1707888245,214,0 +1707888246,214,0 +1707888246,214,0 +1707888247,214,0 +1707888247,213,0 +1707888248,213,0 +1707888248,213,0 +1707888249,213,0 +1707888249,213,0 +1707888250,213,0 +1707888250,213,0 +1707888250,213,0 +1707888251,214,0 +1707888251,214,0 +1707888252,214,0 +1707888252,214,0 +1707888253,214,0 +1707888253,214,0 +1707888254,214,0 +1707888254,214,0 +1707888255,214,0 +1707888255,214,0 +1707888256,214,0 +1707888256,214,0 +1707888257,213,0 +1707888257,213,0 +1707888258,213,0 +1707888258,213,0 +1707888259,213,0 +1707888259,213,0 +1707888260,213,0 +1707888260,214,0 +1707888261,214,0 +1707888261,214,0 +1707888262,213,0 +1707888262,214,0 +1707888262,214,0 +1707888263,214,0 +1707888263,214,0 +1707888264,214,0 +1707888264,213,0 +1707888265,214,0 +1707888265,213,0 +1707888266,213,0 +1707888266,213,0 +1707888267,213,0 +1707888267,213,0 +1707888268,213,0 +1707888268,213,0 +1707888269,213,0 +1707888269,213,0 +1707888270,213,0 +1707888270,214,0 +1707888271,214,0 +1707888271,214,0 +1707888272,214,0 +1707888272,214,0 +1707888273,214,0 +1707888273,214,0 +1707888274,214,0 +1707888274,214,0 +1707888275,213,0 +1707888275,213,0 +1707888276,213,0 +1707888276,213,0 +1707888276,213,0 +1707888277,213,0 +1707888277,213,0 +1707888278,214,0 +1707888278,214,0 +1707888279,213,0 +1707888279,214,0 +1707888280,214,0 +1707888280,214,0 +1707888281,214,0 +1707888281,214,0 +1707888282,214,0 +1707888282,214,0 +1707888283,214,0 +1707888283,214,0 +1707888284,214,0 +1707888284,213,0 +1707888285,213,0 +1707888285,213,0 +1707888286,213,0 +1707888286,213,0 +1707888287,214,0 +1707888287,213,0 +1707888288,213,0 +1707888288,214,0 +1707888289,214,0 +1707888289,213,0 +1707888290,214,0 +1707888290,214,0 +1707888291,214,0 +1707888291,214,0 +1707888291,214,0 +1707888292,214,0 +1707888292,214,0 +1707888293,214,0 +1707888293,213,0 +1707888294,213,0 +1707888294,213,0 +1707888295,213,0 +1707888295,213,0 +1707888296,213,0 +1707888296,214,0 +1707888297,214,0 +1707888297,213,0 +1707888298,213,0 +1707888298,213,0 +1707888299,214,0 +1707888299,214,0 +1707888300,214,0 +1707888300,214,0 +1707888301,214,0 +1707888301,214,0 +1707888302,214,0 +1707888302,213,0 +1707888303,213,0 +1707888303,213,0 +1707888304,213,0 +1707888304,213,0 +1707888305,213,0 +1707888305,213,0 +1707888306,213,0 +1707888306,213,0 +1707888307,213,0 +1707888307,214,0 +1707888307,213,0 +1707888308,214,0 +1707888308,214,0 +1707888309,214,0 +1707888309,214,0 +1707888310,214,0 +1707888310,214,0 +1707888311,214,0 +1707888311,213,0 +1707888312,213,0 +1707888312,213,0 +1707888313,213,0 +1707888313,213,0 +1707888314,213,0 +1707888314,213,0 +1707888315,213,0 +1707888315,213,0 +1707888316,213,0 +1707888316,213,0 +1707888317,213,0 +1707888317,213,0 +1707888318,213,0 +1707888318,213,0 +1707888319,214,0 +1707888319,214,0 +1707888320,214,0 +1707888320,214,0 +1707888321,214,0 +1707888321,213,0 +1707888321,213,0 +1707888322,213,0 +1707888322,213,0 +1707888323,213,0 +1707888323,213,0 +1707888324,213,0 +1707888324,213,0 +1707888325,213,0 +1707888325,213,0 +1707888326,213,0 +1707888326,213,0 +1707888327,214,0 +1707888327,213,0 +1707888328,214,0 +1707888328,214,0 +1707888329,214,0 +1707888329,214,0 +1707888330,213,0 +1707888330,213,0 +1707888331,213,0 +1707888331,213,0 +1707888332,213,0 +1707888332,213,0 +1707888333,213,0 +1707888333,213,0 +1707888334,213,0 +1707888334,213,0 +1707888335,213,0 +1707888335,213,0 +1707888336,214,0 +1707888336,214,0 +1707888337,214,0 +1707888337,214,0 +1707888337,214,0 +1707888338,214,0 +1707888338,214,0 +1707888339,213,0 +1707888339,213,0 +1707888340,213,0 +1707888340,213,0 +1707888341,213,0 +1707888341,213,0 +1707888342,213,0 +1707888342,213,0 +1707888343,213,0 +1707888343,213,0 +1707888344,213,0 +1707888344,214,0 +1707888345,214,0 +1707888345,214,0 +1707888346,214,0 +1707888346,214,0 +1707888347,214,0 +1707888347,214,0 +1707888348,214,0 +1707888348,214,0 +1707888349,213,0 +1707888349,213,0 +1707888350,213,0 +1707888350,213,0 +1707888350,213,0 +1707888351,213,0 +1707888351,213,0 +1707888352,213,0 +1707888352,213,0 +1707888353,213,0 +1707888353,214,0 +1707888354,213,0 +1707888354,213,0 +1707888355,214,0 +1707888355,214,0 +1707888356,214,0 +1707888356,214,0 +1707888357,214,0 +1707888357,214,0 +1707888358,213,0 +1707888358,213,0 +1707888359,213,0 +1707888359,213,0 +1707888360,213,0 +1707888360,213,0 +1707888361,213,0 +1707888361,213,0 +1707888362,213,0 +1707888362,213,0 +1707888363,213,0 +1707888363,213,0 +1707888363,214,0 +1707888364,213,0 +1707888364,214,0 +1707888365,214,0 +1707888365,214,0 +1707888366,214,0 +1707888366,214,0 +1707888367,213,0 +1707888367,213,0 +1707888368,213,0 +1707888368,213,0 +1707888369,213,0 +1707888369,213,0 +1707888370,213,0 +1707888370,213,0 +1707888371,213,0 +1707888371,213,0 +1707888372,213,0 +1707888372,214,0 +1707888373,213,0 +1707888373,214,0 +1707888374,214,0 +1707888374,214,0 +1707888375,214,0 +1707888375,214,0 +1707888376,213,0 +1707888376,213,0 +1707888377,213,0 +1707888377,213,0 +1707888378,213,0 +1707888378,213,0 +1707888379,213,0 +1707888379,213,0 +1707888380,214,0 +1707888380,214,0 +1707888381,214,0 +1707888381,214,0 +1707888382,214,0 +1707888382,214,0 +1707888382,214,0 +1707888383,214,0 +1707888383,214,0 +1707888384,214,0 +1707888384,214,0 +1707888385,213,0 +1707888385,213,0 +1707888386,214,0 +1707888386,214,0 +1707888387,214,0 +1707888387,214,0 +1707888388,214,0 +1707888388,214,0 +1707888389,214,0 +1707888389,214,0 +1707888390,214,0 +1707888390,214,0 +1707888391,214,0 +1707888391,214,0 +1707888392,214,0 +1707888392,214,0 +1707888393,214,0 +1707888393,214,0 +1707888394,214,0 +1707888394,213,0 +1707888395,214,0 +1707888395,214,0 +1707888396,214,0 +1707888396,214,0 +1707888396,214,0 +1707888397,214,0 +1707888397,214,0 +1707888398,214,0 +1707888398,214,0 +1707888399,214,0 +1707888399,214,0 +1707888400,214,0 +1707888400,214,0 +1707888401,214,0 +1707888401,214,0 +1707888402,214,0 +1707888402,214,0 +1707888403,214,0 +1707888403,213,0 +1707888404,213,0 +1707888404,213,0 +1707888405,213,0 +1707888405,213,0 +1707888406,214,0 +1707888406,214,0 +1707888407,214,0 +1707888407,214,0 +1707888408,214,0 +1707888408,214,0 +1707888409,214,0 +1707888409,214,0 +1707888410,214,0 +1707888410,214,0 +1707888411,214,0 +1707888411,214,0 +1707888411,214,0 +1707888412,214,0 +1707888412,213,0 +1707888413,213,0 +1707888413,213,0 +1707888414,213,0 +1707888414,213,0 +1707888415,213,0 +1707888415,213,0 +1707888416,213,0 +1707888416,213,0 +1707888417,213,0 +1707888417,214,0 +1707888418,214,0 +1707888418,213,0 +1707888419,214,0 +1707888419,213,0 +1707888420,214,0 +1707888420,214,0 +1707888421,214,0 +1707888421,213,0 +1707888422,213,0 +1707888422,213,0 +1707888423,213,0 +1707888423,213,0 +1707888424,213,0 +1707888424,213,0 +1707888425,213,0 +1707888425,213,0 +1707888426,213,0 +1707888426,213,0 +1707888426,214,0 +1707888427,214,0 +1707888427,214,0 +1707888428,214,0 +1707888428,214,0 +1707888429,214,0 +1707888429,214,0 +1707888430,214,0 +1707888430,213,0 +1707888431,213,0 +1707888431,213,0 +1707888432,213,0 +1707888432,213,0 +1707888433,213,0 +1707888433,213,0 +1707888434,213,0 +1707888434,213,0 +1707888435,214,0 +1707888435,214,0 +1707888436,214,0 +1707888436,214,0 +1707888437,214,0 +1707888437,214,0 +1707888438,214,0 +1707888438,214,0 +1707888439,214,0 +1707888439,213,0 +1707888440,213,0 +1707888440,213,0 +1707888440,213,0 +1707888441,213,0 +1707888441,213,0 +1707888442,213,0 +1707888442,213,0 +1707888443,213,0 +1707888443,213,0 +1707888444,213,0 +1707888444,213,0 +1707888445,214,0 +1707888445,214,0 +1707888446,214,0 +1707888446,214,0 +1707888447,214,0 +1707888447,214,0 +1707888448,213,0 +1707888448,213,0 +1707888449,213,0 +1707888449,213,0 +1707888450,213,0 +1707888450,213,0 +1707888451,213,0 +1707888451,213,0 +1707888452,213,0 +1707888452,213,0 +1707888453,213,0 +1707888453,213,0 +1707888454,214,0 +1707888454,214,0 +1707888454,214,0 +1707888455,214,0 +1707888455,214,0 +1707888456,214,0 +1707888456,214,0 +1707888457,214,0 +1707888457,213,0 +1707888458,213,0 +1707888458,213,0 +1707888459,213,0 +1707888459,213,0 +1707888460,213,0 +1707888460,213,0 +1707888461,213,0 +1707888461,213,0 +1707888462,213,0 +1707888462,214,0 +1707888463,213,0 +1707888463,214,0 +1707888464,214,0 +1707888464,214,0 +1707888465,214,0 +1707888465,214,0 +1707888466,214,0 +1707888466,213,0 +1707888467,213,0 +1707888467,213,0 +1707888468,213,0 +1707888468,213,0 +1707888468,213,0 +1707888469,213,0 +1707888469,213,0 +1707888470,213,0 +1707888470,213,0 +1707888471,213,0 +1707888471,213,0 +1707888472,214,0 +1707888472,214,0 +1707888473,214,0 +1707888473,214,0 +1707888474,214,0 +1707888474,214,0 +1707888475,214,0 +1707888475,213,0 +1707888476,213,0 +1707888476,213,0 +1707888477,213,0 +1707888477,213,0 +1707888478,213,0 +1707888478,213,0 +1707888479,213,0 +1707888479,213,0 +1707888480,213,0 +1707888480,213,0 +1707888481,214,0 +1707888481,214,0 +1707888482,213,0 +1707888482,214,0 +1707888482,214,0 +1707888483,214,0 +1707888483,214,0 +1707888484,214,0 +1707888484,213,0 +1707888485,213,0 +1707888485,213,0 +1707888486,213,0 +1707888486,213,0 +1707888487,213,0 +1707888487,213,0 +1707888488,213,0 +1707888488,213,0 +1707888489,213,0 +1707888489,213,0 +1707888490,214,0 +1707888490,214,0 +1707888491,214,0 +1707888491,214,0 +1707888492,214,0 +1707888492,214,0 +1707888493,214,0 +1707888493,213,0 +1707888494,213,0 +1707888494,213,0 +1707888495,213,0 +1707888495,213,0 +1707888496,213,0 +1707888496,213,0 +1707888497,213,0 +1707888497,213,0 +1707888497,213,0 +1707888498,213,0 +1707888498,213,0 +1707888499,213,0 +1707888499,214,0 +1707888500,214,0 +1707888500,214,0 +1707888501,214,0 +1707888501,214,0 +1707888502,214,0 +1707888502,213,0 +1707888503,213,0 +1707888503,213,0 +1707888504,213,0 +1707888504,213,0 +1707888505,213,0 +1707888505,213,0 +1707888506,213,0 +1707888506,213,0 +1707888507,213,0 +1707888507,213,0 +1707888508,214,0 +1707888508,213,0 +1707888509,214,0 +1707888509,214,0 +1707888510,214,0 +1707888510,213,0 +1707888511,214,0 +1707888511,213,0 +1707888511,213,0 +1707888512,213,0 +1707888512,213,0 +1707888513,213,0 +1707888513,213,0 +1707888514,213,0 +1707888514,213,0 +1707888515,213,0 +1707888515,213,0 +1707888516,214,0 +1707888516,213,0 +1707888517,213,0 +1707888517,214,0 +1707888518,214,0 +1707888518,214,0 +1707888519,214,0 +1707888519,214,0 +1707888520,214,0 +1707888520,213,0 +1707888521,213,0 +1707888521,213,0 +1707888522,213,0 +1707888522,213,0 +1707888523,213,0 +1707888523,213,0 +1707888524,213,0 +1707888524,213,0 +1707888525,213,0 +1707888525,213,0 +1707888526,214,0 +1707888526,214,0 +1707888526,213,0 +1707888527,214,0 +1707888527,214,0 +1707888528,214,0 +1707888528,214,0 +1707888529,213,0 +1707888529,213,0 +1707888530,213,0 +1707888530,213,0 +1707888531,213,0 +1707888531,213,0 +1707888532,213,0 +1707888532,213,0 +1707888533,213,0 +1707888533,213,0 +1707888534,214,0 +1707888534,214,0 +1707888535,213,0 +1707888535,213,0 +1707888536,214,0 +1707888536,214,0 +1707888537,214,0 +1707888537,214,0 +1707888538,214,0 +1707888538,213,0 +1707888539,213,0 +1707888539,213,0 +1707888540,213,0 +1707888540,213,0 +1707888541,213,0 +1707888541,213,0 +1707888542,213,0 +1707888542,213,0 +1707888543,213,0 +1707888543,214,0 +1707888543,214,0 +1707888544,214,0 +1707888544,214,0 +1707888545,214,0 +1707888545,214,0 +1707888546,214,0 +1707888546,214,0 +1707888547,214,0 +1707888547,213,0 +1707888548,213,0 +1707888548,213,0 +1707888549,213,0 +1707888549,213,0 +1707888550,213,0 +1707888550,213,0 +1707888551,213,0 +1707888551,214,0 +1707888552,214,0 +1707888552,214,0 +1707888553,214,0 +1707888553,214,0 +1707888554,214,0 +1707888554,214,0 +1707888555,214,0 +1707888555,214,0 +1707888556,214,0 +1707888556,214,0 +1707888556,214,0 +1707888557,214,0 +1707888557,214,0 +1707888558,214,0 +1707888558,214,0 +1707888559,214,0 +1707888559,214,0 +1707888560,214,0 +1707888560,214,0 +1707888561,213,0 +1707888561,214,0 +1707888562,214,0 +1707888562,214,0 +1707888563,214,0 +1707888563,214,0 +1707888564,214,0 +1707888564,214,0 +1707888565,214,0 +1707888565,214,0 +1707888566,214,0 +1707888566,214,0 +1707888567,214,0 +1707888567,214,0 +1707888568,214,0 +1707888568,214,0 +1707888569,214,0 +1707888569,214,0 +1707888570,214,0 +1707888570,213,0 +1707888571,213,0 +1707888571,214,0 +1707888571,214,0 +1707888572,213,0 +1707888572,214,0 +1707888573,214,0 +1707888573,214,0 +1707888574,214,0 +1707888574,214,0 +1707888575,214,0 +1707888575,214,0 +1707888576,214,0 +1707888576,214,0 +1707888577,214,0 +1707888577,214,0 +1707888578,214,0 +1707888578,213,0 +1707888579,213,0 +1707888579,213,0 +1707888580,213,0 +1707888580,213,0 +1707888581,213,0 +1707888581,213,0 +1707888582,213,0 +1707888582,214,0 +1707888583,214,0 +1707888583,214,0 +1707888584,214,0 +1707888584,214,0 +1707888585,214,0 +1707888585,214,0 +1707888585,214,0 +1707888586,214,0 +1707888586,214,0 +1707888587,214,0 +1707888587,213,0 +1707888588,213,0 +1707888588,213,0 +1707888589,213,0 +1707888589,213,0 +1707888590,213,0 +1707888590,213,0 +1707888591,213,0 +1707888591,213,0 +1707888592,213,0 +1707888592,214,0 +1707888593,214,0 +1707888593,213,0 +1707888594,214,0 +1707888594,214,0 +1707888595,214,0 +1707888595,214,0 +1707888596,214,0 +1707888596,214,0 +1707888597,213,0 +1707888597,213,0 +1707888598,213,0 +1707888598,213,0 +1707888599,213,0 +1707888599,213,0 +1707888600,213,0 +1707888600,213,0 +1707888600,213,0 +1707888601,214,0 +1707888601,214,0 +1707888602,213,0 +1707888602,214,0 +1707888603,214,0 +1707888603,214,0 +1707888604,214,0 +1707888604,214,0 +1707888605,214,0 +1707888605,213,0 +1707888606,213,0 +1707888606,213,0 +1707888607,213,0 +1707888607,213,0 +1707888608,213,0 +1707888608,213,0 +1707888609,213,0 +1707888609,213,0 +1707888610,213,0 +1707888610,213,0 +1707888611,213,0 +1707888611,214,0 +1707888612,214,0 +1707888612,214,0 +1707888613,214,0 +1707888613,214,0 +1707888614,214,0 +1707888614,214,0 +1707888615,213,0 +1707888615,213,0 +1707888615,213,0 +1707888616,213,0 +1707888616,213,0 +1707888617,213,0 +1707888617,213,0 +1707888618,213,0 +1707888618,214,0 +1707888619,213,0 +1707888619,213,0 +1707888620,214,0 +1707888620,214,0 +1707888621,213,0 +1707888621,214,0 +1707888622,214,0 +1707888622,214,0 +1707888623,214,0 +1707888623,213,0 +1707888624,213,0 +1707888624,213,0 +1707888625,213,0 +1707888625,213,0 +1707888626,213,0 +1707888626,213,0 +1707888627,213,0 +1707888627,213,0 +1707888628,213,0 +1707888628,213,0 +1707888629,214,0 +1707888629,214,0 +1707888630,214,0 +1707888630,213,0 +1707888631,213,0 +1707888631,214,0 +1707888632,213,0 +1707888632,213,0 +1707888633,213,0 +1707888633,213,0 +1707888634,213,0 +1707888634,213,0 +1707888634,213,0 +1707888635,213,0 +1707888635,213,0 +1707888636,213,0 +1707888636,213,0 +1707888637,213,0 +1707888637,213,0 +1707888638,214,0 +1707888638,213,0 +1707888639,213,0 +1707888639,214,0 +1707888640,213,0 +1707888640,214,0 +1707888641,213,0 +1707888641,213,0 +1707888642,213,0 +1707888642,213,0 +1707888643,213,0 +1707888643,213,0 +1707888644,213,0 +1707888644,213,0 +1707888645,213,0 +1707888645,213,0 +1707888646,213,0 +1707888646,213,0 +1707888647,213,0 +1707888647,213,0 +1707888647,213,0 +1707888648,214,0 +1707888648,214,0 +1707888649,214,0 +1707888649,213,0 +1707888650,214,0 +1707888650,213,0 +1707888651,213,0 +1707888651,213,0 +1707888652,213,0 +1707888652,213,0 +1707888653,213,0 +1707888653,213,0 +1707888654,213,0 +1707888654,213,0 +1707888655,213,0 +1707888655,214,0 +1707888656,213,0 +1707888656,214,0 +1707888657,213,0 +1707888657,214,0 +1707888658,214,0 +1707888658,213,0 +1707888659,214,0 +1707888659,213,0 +1707888660,213,0 +1707888660,213,0 +1707888660,213,0 +1707888661,213,0 +1707888661,213,0 +1707888662,213,0 +1707888662,213,0 +1707888663,213,0 +1707888663,214,0 +1707888664,214,0 +1707888664,214,0 +1707888665,214,0 +1707888665,213,0 +1707888666,214,0 +1707888666,213,0 +1707888667,214,0 +1707888667,214,0 +1707888668,214,0 +1707888668,213,0 +1707888669,213,0 +1707888669,213,0 +1707888670,213,0 +1707888670,213,0 +1707888671,213,0 +1707888671,213,0 +1707888672,213,0 +1707888672,213,0 +1707888672,213,0 +1707888673,214,0 +1707888673,214,0 +1707888674,214,0 +1707888674,214,0 +1707888675,214,0 +1707888675,214,0 +1707888676,214,0 +1707888676,214,0 +1707888677,214,0 +1707888677,213,0 +1707888678,213,0 +1707888678,213,0 +1707888679,213,0 +1707888679,213,0 +1707888680,213,0 +1707888680,213,0 +1707888681,213,0 +1707888681,213,0 +1707888682,214,0 +1707888682,213,0 +1707888683,214,0 +1707888683,214,0 +1707888683,214,0 +1707888684,214,0 +1707888684,214,0 +1707888685,214,0 +1707888685,214,0 +1707888686,213,0 +1707888686,213,0 +1707888687,213,0 +1707888687,213,0 +1707888688,213,0 +1707888688,213,0 +1707888689,213,0 +1707888689,213,0 +1707888690,213,0 +1707888690,213,0 +1707888691,214,0 +1707888691,213,0 +1707888692,214,0 +1707888692,214,0 +1707888693,214,0 +1707888693,214,0 +1707888694,214,0 +1707888694,214,0 +1707888695,214,0 +1707888695,213,0 +1707888696,213,0 +1707888696,213,0 +1707888697,213,0 +1707888697,213,0 +1707888698,213,0 +1707888698,213,0 +1707888699,213,0 +1707888699,213,0 +1707888700,213,0 +1707888700,213,0 +1707888700,213,0 +1707888701,213,0 +1707888701,213,0 +1707888702,214,0 +1707888702,214,0 +1707888703,214,0 +1707888703,214,0 +1707888704,213,0 +1707888704,213,0 +1707888705,213,0 +1707888705,213,0 +1707888706,213,0 +1707888706,213,0 +1707888707,213,0 +1707888707,213,0 +1707888708,213,0 +1707888708,213,0 +1707888709,213,0 +1707888709,214,0 +1707888710,214,0 +1707888710,214,0 +1707888711,214,0 +1707888711,213,0 +1707888712,214,0 +1707888712,214,0 +1707888713,214,0 +1707888713,213,0 +1707888714,213,0 +1707888714,213,0 +1707888714,213,0 +1707888715,213,0 +1707888715,213,0 +1707888716,213,0 +1707888716,213,0 +1707888717,213,0 +1707888717,214,0 +1707888718,214,0 +1707888718,214,0 +1707888719,213,0 +1707888719,214,0 +1707888720,214,0 +1707888720,214,0 +1707888721,214,0 +1707888721,214,0 +1707888722,213,0 +1707888722,213,0 +1707888723,213,0 +1707888723,213,0 +1707888724,213,0 +1707888724,213,0 +1707888725,214,0 +1707888725,214,0 +1707888726,214,0 +1707888726,213,0 +1707888727,214,0 +1707888727,214,0 +1707888728,214,0 +1707888728,214,0 +1707888729,214,0 +1707888729,214,0 +1707888730,214,0 +1707888730,214,0 +1707888731,213,0 +1707888731,213,0 +1707888731,213,0 +1707888732,213,0 +1707888732,213,0 +1707888733,213,0 +1707888733,214,0 +1707888734,214,0 +1707888734,214,0 +1707888735,214,0 +1707888735,214,0 +1707888736,214,0 +1707888736,214,0 +1707888737,214,0 +1707888737,214,0 +1707888738,214,0 +1707888738,214,0 +1707888739,214,0 +1707888739,214,0 +1707888740,214,0 +1707888740,213,0 +1707888741,213,0 +1707888741,213,0 +1707888742,213,0 +1707888742,213,0 +1707888743,213,0 +1707888743,214,0 +1707888744,214,0 +1707888744,214,0 +1707888745,214,0 +1707888745,214,0 +1707888746,214,0 +1707888746,214,0 +1707888747,214,0 +1707888747,214,0 +1707888747,214,0 +1707888748,214,0 +1707888748,214,0 +1707888749,213,0 +1707888749,213,0 +1707888750,213,0 +1707888750,213,0 +1707888751,213,0 +1707888751,213,0 +1707888752,213,0 +1707888752,213,0 +1707888753,213,0 +1707888753,213,0 +1707888754,213,0 +1707888754,213,0 +1707888755,213,0 +1707888755,214,0 +1707888756,213,0 +1707888756,214,0 +1707888757,214,0 +1707888757,214,0 +1707888758,214,0 +1707888758,213,0 +1707888759,213,0 +1707888759,213,0 +1707888760,213,0 +1707888760,213,0 +1707888761,213,0 +1707888761,213,0 +1707888761,213,0 +1707888762,213,0 +1707888762,213,0 +1707888763,213,0 +1707888763,214,0 +1707888764,213,0 +1707888764,213,0 +1707888765,213,0 +1707888765,214,0 +1707888766,213,0 +1707888766,213,0 +1707888767,213,0 +1707888767,213,0 +1707888768,213,0 +1707888768,213,0 +1707888769,213,0 +1707888769,213,0 +1707888770,213,0 +1707888770,213,0 +1707888771,213,0 +1707888771,213,0 +1707888772,213,0 +1707888772,213,0 +1707888773,213,0 +1707888773,214,0 +1707888774,213,0 +1707888774,214,0 +1707888775,214,0 +1707888775,214,0 +1707888775,213,0 +1707888776,213,0 +1707888776,213,0 +1707888777,213,0 +1707888777,213,0 +1707888778,213,0 +1707888778,213,0 +1707888779,213,0 +1707888779,213,0 +1707888780,213,0 +1707888780,213,0 +1707888781,213,0 +1707888781,214,0 +1707888782,213,0 +1707888782,214,0 +1707888783,214,0 +1707888783,214,0 +1707888784,214,0 +1707888784,214,0 +1707888785,214,0 +1707888785,213,0 +1707888786,213,0 +1707888786,213,0 +1707888787,213,0 +1707888787,213,0 +1707888788,213,0 +1707888788,213,0 +1707888789,214,0 +1707888789,214,0 +1707888789,214,0 +1707888790,214,0 +1707888790,214,0 +1707888791,214,0 +1707888791,214,0 +1707888792,214,0 +1707888792,214,0 +1707888793,214,0 +1707888793,214,0 +1707888794,213,0 +1707888794,213,0 +1707888795,213,0 +1707888795,213,0 +1707888796,213,0 +1707888796,213,0 +1707888797,214,0 +1707888797,213,0 +1707888798,214,0 +1707888798,214,0 +1707888799,214,0 +1707888799,214,0 +1707888800,214,0 +1707888800,214,0 +1707888801,214,0 +1707888801,214,0 +1707888802,214,0 +1707888802,214,0 +1707888803,214,0 +1707888803,213,0 +1707888803,213,0 +1707888804,213,0 +1707888804,213,0 +1707888805,214,0 +1707888805,213,0 +1707888806,214,0 +1707888806,214,0 +1707888807,214,0 +1707888807,214,0 +1707888808,214,0 +1707888808,214,0 +1707888809,214,0 +1707888809,214,0 +1707888810,214,0 +1707888810,214,0 +1707888811,214,0 +1707888811,214,0 +1707888812,214,0 +1707888812,213,0 +1707888813,213,0 +1707888813,213,0 +1707888814,213,0 +1707888814,214,0 +1707888815,213,0 +1707888815,214,0 +1707888816,214,0 +1707888816,214,0 +1707888817,214,0 +1707888817,214,0 +1707888817,214,0 +1707888818,214,0 +1707888818,214,0 +1707888819,214,0 +1707888819,214,0 +1707888820,214,0 +1707888820,214,0 +1707888821,213,0 +1707888821,213,0 +1707888822,213,0 +1707888822,213,0 +1707888823,213,0 +1707888823,214,0 +1707888824,214,0 +1707888824,214,0 +1707888825,214,0 +1707888825,214,0 +1707888826,214,0 +1707888826,214,0 +1707888827,214,0 +1707888827,214,0 +1707888828,214,0 +1707888828,214,0 +1707888829,214,0 +1707888829,214,0 +1707888830,214,0 +1707888830,213,0 +1707888831,213,0 +1707888831,213,0 +1707888831,213,0 +1707888832,213,0 +1707888832,213,0 +1707888833,213,0 +1707888833,213,0 +1707888834,214,0 +1707888834,213,0 +1707888835,214,0 +1707888835,214,0 +1707888836,214,0 +1707888836,214,0 +1707888837,214,0 +1707888837,214,0 +1707888838,214,0 +1707888838,214,0 +1707888839,213,0 +1707888839,213,0 +1707888840,213,0 +1707888840,213,0 +1707888841,213,0 +1707888841,213,0 +1707888842,214,0 +1707888842,214,0 +1707888843,214,0 +1707888843,214,0 +1707888843,214,0 +1707888844,214,0 +1707888844,214,0 +1707888845,214,0 +1707888845,214,0 +1707888846,214,0 +1707888846,214,0 +1707888847,214,0 +1707888847,214,0 +1707888848,213,0 +1707888848,213,0 +1707888849,213,0 +1707888849,213,0 +1707888850,213,0 +1707888850,213,0 +1707888851,213,0 +1707888851,213,0 +1707888852,213,0 +1707888852,213,0 +1707888853,214,0 +1707888853,214,0 +1707888854,214,0 +1707888854,214,0 +1707888855,214,0 +1707888855,214,0 +1707888856,214,0 +1707888856,214,0 +1707888857,214,0 +1707888857,213,0 +1707888857,213,0 +1707888858,213,0 +1707888858,213,0 +1707888859,213,0 +1707888859,213,0 +1707888860,213,0 +1707888860,213,0 +1707888861,213,0 +1707888861,214,0 +1707888862,213,0 +1707888862,213,0 +1707888863,213,0 +1707888863,214,0 +1707888864,214,0 +1707888864,214,0 +1707888865,214,0 +1707888865,214,0 +1707888866,213,0 +1707888866,213,0 +1707888867,213,0 +1707888867,213,0 +1707888868,213,0 +1707888868,213,0 +1707888869,213,0 +1707888869,213,0 +1707888870,213,0 +1707888870,213,0 +1707888871,213,0 +1707888871,213,0 +1707888871,214,0 +1707888872,214,0 +1707888872,214,0 +1707888873,214,0 +1707888873,214,0 +1707888874,214,0 +1707888874,214,0 +1707888875,213,0 +1707888875,213,0 +1707888876,213,0 +1707888876,213,0 +1707888877,213,0 +1707888877,213,0 +1707888878,213,0 +1707888878,213,0 +1707888879,213,0 +1707888879,213,0 +1707888880,214,0 +1707888880,214,0 +1707888881,214,0 +1707888881,214,0 +1707888882,214,0 +1707888882,214,0 +1707888883,214,0 +1707888883,214,0 +1707888883,213,0 +1707888884,213,0 +1707888884,213,0 +1707888885,213,0 +1707888885,213,0 +1707888886,214,0 +1707888886,213,0 +1707888887,214,0 +1707888887,213,0 +1707888888,214,0 +1707888888,214,0 +1707888889,214,0 +1707888889,214,0 +1707888890,214,0 +1707888890,214,0 +1707888891,214,0 +1707888891,214,0 +1707888892,214,0 +1707888892,214,0 +1707888893,213,0 +1707888893,213,0 +1707888894,214,0 +1707888894,214,0 +1707888895,213,0 +1707888895,213,0 +1707888895,213,0 +1707888896,214,0 +1707888896,214,0 +1707888897,214,0 +1707888897,214,0 +1707888898,214,0 +1707888898,214,0 +1707888899,214,0 +1707888899,214,0 +1707888900,214,0 +1707888900,214,0 +1707888901,214,0 +1707888901,214,0 +1707888902,213,0 +1707888902,213,0 +1707888903,213,0 +1707888903,214,0 +1707888904,214,0 +1707888904,213,0 +1707888905,214,0 +1707888905,214,0 +1707888906,214,0 +1707888906,214,0 +1707888907,214,0 +1707888907,214,0 +1707888908,214,0 +1707888908,214,0 +1707888909,214,0 +1707888909,214,0 +1707888910,214,0 +1707888910,214,0 +1707888910,213,0 +1707888911,213,0 +1707888911,213,0 +1707888912,214,0 +1707888912,214,0 +1707888913,214,0 +1707888913,214,0 +1707888914,214,0 +1707888914,214,0 +1707888915,214,0 +1707888915,214,0 +1707888916,214,0 +1707888916,214,0 +1707888917,214,0 +1707888917,214,0 +1707888918,214,0 +1707888918,214,0 +1707888919,214,0 +1707888919,214,0 +1707888920,214,0 +1707888920,213,0 +1707888921,214,0 +1707888921,214,0 +1707888922,214,0 +1707888922,214,0 +1707888923,214,0 +1707888923,214,0 +1707888923,214,0 +1707888924,214,0 +1707888924,214,0 +1707888925,214,0 +1707888925,214,0 +1707888926,214,0 +1707888926,214,0 +1707888927,214,0 +1707888927,214,0 +1707888928,214,0 +1707888928,214,0 +1707888929,213,0 +1707888929,214,0 +1707888930,214,0 +1707888930,214,0 +1707888931,214,0 +1707888931,214,0 +1707888932,214,0 +1707888932,214,0 +1707888933,214,0 +1707888933,214,0 +1707888934,214,0 +1707888934,214,0 +1707888935,214,0 +1707888935,214,0 +1707888936,214,0 +1707888936,214,0 +1707888937,214,0 +1707888937,214,0 +1707888938,213,0 +1707888938,213,0 +1707888938,213,0 +1707888939,213,0 +1707888939,213,0 +1707888940,214,0 +1707888940,214,0 +1707888941,214,0 +1707888941,214,0 +1707888942,214,0 +1707888942,214,0 +1707888943,214,0 +1707888943,214,0 +1707888944,214,0 +1707888944,214,0 +1707888945,214,0 +1707888945,214,0 +1707888946,214,0 +1707888946,214,0 +1707888947,213,0 +1707888947,213,0 +1707888948,213,0 +1707888948,213,0 +1707888949,213,0 +1707888949,213,0 +1707888950,214,0 +1707888950,214,0 +1707888950,214,0 +1707888951,214,0 +1707888951,214,0 +1707888952,214,0 +1707888952,214,0 +1707888953,214,0 +1707888953,214,0 +1707888954,214,0 +1707888954,214,0 +1707888955,214,0 +1707888955,213,0 +1707888956,213,0 +1707888956,213,0 +1707888957,213,0 +1707888957,213,0 +1707888958,213,0 +1707888958,213,0 +1707888959,214,0 +1707888959,213,0 +1707888960,214,0 +1707888960,213,0 +1707888961,214,0 +1707888961,214,0 +1707888962,214,0 +1707888962,214,0 +1707888963,214,0 +1707888963,214,0 +1707888963,214,0 +1707888964,214,0 +1707888964,213,0 +1707888965,213,0 +1707888965,213,0 +1707888966,213,0 +1707888966,213,0 +1707888967,214,0 +1707888967,213,0 +1707888968,213,0 +1707888968,214,0 +1707888969,214,0 +1707888969,214,0 +1707888970,214,0 +1707888970,214,0 +1707888971,214,0 +1707888971,214,0 +1707888972,214,0 +1707888972,214,0 +1707888973,214,0 +1707888973,214,0 +1707888974,213,0 +1707888974,213,0 +1707888975,213,0 +1707888975,213,0 +1707888975,213,0 +1707888976,213,0 +1707888976,213,0 +1707888977,213,0 +1707888977,214,0 +1707888978,214,0 +1707888978,214,0 +1707888979,214,0 +1707888979,214,0 +1707888980,214,0 +1707888980,214,0 +1707888981,214,0 +1707888981,214,0 +1707888982,214,0 +1707888982,214,0 +1707888983,213,0 +1707888983,213,0 +1707888984,213,0 +1707888984,214,0 +1707888985,214,0 +1707888985,214,0 +1707888986,213,0 +1707888986,213,0 +1707888987,213,0 +1707888987,214,0 +1707888988,214,0 +1707888988,214,0 +1707888988,214,0 +1707888989,214,0 +1707888989,214,0 +1707888990,214,0 +1707888990,214,0 +1707888991,214,0 +1707888991,213,0 +1707888992,213,0 +1707888992,213,0 +1707888993,213,0 +1707888993,214,0 +1707888994,213,0 +1707888994,214,0 +1707888995,214,0 +1707888995,214,0 +1707888996,214,0 +1707888996,214,0 +1707888997,214,0 +1707888997,214,0 +1707888998,214,0 +1707888998,214,0 +1707888999,214,0 +1707888999,214,0 +1707889000,214,0 +1707889000,214,0 +1707889001,213,0 +1707889001,213,0 +1707889001,213,0 +1707889002,213,0 +1707889002,213,0 +1707889003,213,0 +1707889003,213,0 +1707889004,214,0 +1707889004,214,0 +1707889005,214,0 +1707889005,214,0 +1707889006,214,0 +1707889006,214,0 +1707889007,214,0 +1707889007,214,0 +1707889008,214,0 +1707889008,214,0 +1707889009,214,0 +1707889009,213,0 +1707889010,213,0 +1707889010,213,0 +1707889011,213,0 +1707889011,213,0 +1707889012,213,0 +1707889012,214,0 +1707889012,214,0 +1707889013,214,0 +1707889013,214,0 +1707889014,214,0 +1707889014,214,0 +1707889015,214,0 +1707889015,214,0 +1707889016,214,0 +1707889016,214,0 +1707889017,214,0 +1707889017,214,0 +1707889018,213,0 +1707889018,213,0 +1707889019,213,0 +1707889019,213,0 +1707889020,213,0 +1707889020,213,0 +1707889021,213,0 +1707889021,213,0 +1707889022,213,0 +1707889022,214,0 +1707889023,214,0 +1707889023,214,0 +1707889024,214,0 +1707889024,214,0 +1707889025,214,0 +1707889025,214,0 +1707889025,214,0 +1707889026,214,0 +1707889026,213,0 +1707889027,213,0 +1707889027,213,0 +1707889028,213,0 +1707889028,213,0 +1707889029,213,0 +1707889029,213,0 +1707889030,213,0 +1707889030,213,0 +1707889031,214,0 +1707889031,213,0 +1707889032,213,0 +1707889032,214,0 +1707889033,214,0 +1707889033,213,0 +1707889034,214,0 +1707889034,214,0 +1707889035,214,0 +1707889035,213,0 +1707889036,213,0 +1707889036,213,0 +1707889037,213,0 +1707889037,213,0 +1707889038,213,0 +1707889038,213,0 +1707889038,213,0 +1707889039,213,0 +1707889039,214,0 +1707889040,214,0 +1707889040,213,0 +1707889041,214,0 +1707889041,214,0 +1707889042,214,0 +1707889042,214,0 +1707889043,214,0 +1707889043,214,0 +1707889044,213,0 +1707889044,213,0 +1707889045,213,0 +1707889045,213,0 +1707889046,213,0 +1707889046,213,0 +1707889047,213,0 +1707889047,213,0 +1707889048,214,0 +1707889048,214,0 +1707889049,214,0 +1707889049,214,0 +1707889050,214,0 +1707889050,214,0 +1707889051,214,0 +1707889051,214,0 +1707889052,214,0 +1707889052,214,0 +1707889052,213,0 +1707889053,213,0 +1707889053,214,0 +1707889054,214,0 +1707889054,214,0 +1707889055,214,0 +1707889055,214,0 +1707889056,214,0 +1707889056,214,0 +1707889057,214,0 +1707889057,214,0 +1707889058,214,0 +1707889058,214,0 +1707889059,214,0 +1707889059,214,0 +1707889060,214,0 +1707889060,214,0 +1707889061,214,0 +1707889061,214,0 +1707889062,214,0 +1707889062,214,0 +1707889063,214,0 +1707889063,214,0 +1707889064,214,0 +1707889064,214,0 +1707889065,214,0 +1707889065,214,0 +1707889066,214,0 +1707889066,214,0 +1707889066,214,0 +1707889067,214,0 +1707889067,214,0 +1707889068,214,0 +1707889068,214,0 +1707889069,214,0 +1707889069,214,0 +1707889070,214,0 +1707889070,214,0 +1707889071,214,0 +1707889071,214,0 +1707889072,214,0 +1707889072,214,0 +1707889073,214,0 +1707889073,214,0 +1707889074,214,0 +1707889074,214,0 +1707889075,214,0 +1707889075,214,0 +1707889076,214,0 +1707889076,214,0 +1707889077,214,0 +1707889077,214,0 +1707889078,214,0 +1707889078,214,0 +1707889079,213,0 +1707889079,214,0 +1707889079,214,0 +1707889080,214,0 +1707889080,214,0 +1707889081,214,0 +1707889081,214,0 +1707889082,214,0 +1707889082,214,0 +1707889083,214,0 +1707889083,214,0 +1707889084,214,0 +1707889084,214,0 +1707889085,214,0 +1707889085,214,0 +1707889086,214,0 +1707889086,214,0 +1707889087,213,0 +1707889087,213,0 +1707889088,213,0 +1707889088,213,0 +1707889089,213,0 +1707889089,214,0 +1707889090,214,0 +1707889090,213,0 +1707889091,214,0 +1707889091,214,0 +1707889092,214,0 +1707889092,214,0 +1707889093,214,0 +1707889093,214,0 +1707889094,214,0 +1707889094,214,0 +1707889095,214,0 +1707889095,214,0 +1707889096,213,0 +1707889096,213,0 +1707889097,213,0 +1707889097,213,0 +1707889097,213,0 +1707889098,213,0 +1707889098,213,0 +1707889099,213,0 +1707889099,213,0 +1707889100,214,0 +1707889100,214,0 +1707889101,214,0 +1707889101,214,0 +1707889102,214,0 +1707889102,214,0 +1707889103,214,0 +1707889103,214,0 +1707889104,213,0 +1707889104,213,0 +1707889105,213,0 +1707889105,213,0 +1707889106,213,0 +1707889106,213,0 +1707889107,213,0 +1707889107,213,0 +1707889108,213,0 +1707889108,214,0 +1707889109,214,0 +1707889109,214,0 +1707889110,214,0 +1707889110,214,0 +1707889111,214,0 +1707889111,214,0 +1707889112,214,0 +1707889112,214,0 +1707889113,213,0 +1707889113,213,0 +1707889113,213,0 +1707889114,213,0 +1707889114,213,0 +1707889115,213,0 +1707889115,214,0 +1707889116,214,0 +1707889116,214,0 +1707889117,214,0 +1707889117,214,0 +1707889118,214,0 +1707889118,214,0 +1707889119,214,0 +1707889119,214,0 +1707889120,214,0 +1707889120,214,0 +1707889121,214,0 +1707889121,213,0 +1707889122,213,0 +1707889122,213,0 +1707889123,213,0 +1707889123,213,0 +1707889124,214,0 +1707889124,214,0 +1707889125,214,0 +1707889125,214,0 +1707889125,214,0 +1707889126,214,0 +1707889126,214,0 +1707889127,214,0 +1707889127,214,0 +1707889128,214,0 +1707889128,214,0 +1707889129,214,0 +1707889129,214,0 +1707889130,214,0 +1707889130,213,0 +1707889131,213,0 +1707889131,213,0 +1707889132,214,0 +1707889132,214,0 +1707889133,213,0 +1707889133,214,0 +1707889134,214,0 +1707889134,214,0 +1707889135,214,0 +1707889135,214,0 +1707889136,214,0 +1707889136,214,0 +1707889137,214,0 +1707889137,214,0 +1707889138,214,0 +1707889138,214,0 +1707889139,213,0 +1707889139,213,0 +1707889139,213,0 +1707889140,213,0 +1707889140,213,0 +1707889141,214,0 +1707889141,214,0 +1707889142,213,0 +1707889142,214,0 +1707889143,214,0 +1707889143,214,0 +1707889144,214,0 +1707889144,214,0 +1707889145,214,0 +1707889145,214,0 +1707889146,214,0 +1707889146,214,0 +1707889147,214,0 +1707889147,213,0 +1707889148,213,0 +1707889148,213,0 +1707889149,213,0 +1707889149,213,0 +1707889150,214,0 +1707889150,213,0 +1707889151,214,0 +1707889151,214,0 +1707889152,214,0 +1707889152,214,0 +1707889152,214,0 +1707889153,214,0 +1707889153,214,0 +1707889154,214,0 +1707889154,214,0 +1707889155,214,0 +1707889155,214,0 +1707889156,213,0 +1707889156,213,0 +1707889157,213,0 +1707889157,213,0 +1707889158,213,0 +1707889158,213,0 +1707889159,214,0 +1707889159,214,0 +1707889160,214,0 +1707889160,214,0 +1707889161,214,0 +1707889161,214,0 +1707889162,214,0 +1707889162,214,0 +1707889163,214,0 +1707889163,214,0 +1707889164,214,0 +1707889164,213,0 +1707889165,213,0 +1707889165,213,0 +1707889166,213,0 +1707889166,214,0 +1707889167,213,0 +1707889167,213,0 +1707889167,213,0 +1707889168,214,0 +1707889168,214,0 +1707889169,214,0 +1707889169,214,0 +1707889170,214,0 +1707889170,214,0 +1707889171,214,0 +1707889171,214,0 +1707889172,214,0 +1707889172,214,0 +1707889173,213,0 +1707889173,213,0 +1707889174,213,0 +1707889174,213,0 +1707889175,214,0 +1707889175,213,0 +1707889176,213,0 +1707889176,213,0 +1707889177,213,0 +1707889177,214,0 +1707889178,214,0 +1707889178,214,0 +1707889179,214,0 +1707889179,214,0 +1707889180,214,0 +1707889180,214,0 +1707889181,214,0 +1707889181,214,0 +1707889182,214,0 +1707889182,213,0 +1707889183,213,0 +1707889183,213,0 +1707889183,213,0 +1707889184,213,0 +1707889184,214,0 +1707889185,214,0 +1707889185,214,0 +1707889186,214,0 +1707889186,214,0 +1707889187,214,0 +1707889187,214,0 +1707889188,214,0 +1707889188,214,0 +1707889189,214,0 +1707889189,214,0 +1707889190,214,0 +1707889190,214,0 +1707889191,213,0 +1707889191,213,0 +1707889192,213,0 +1707889192,213,0 +1707889193,213,0 +1707889193,214,0 +1707889194,213,0 +1707889194,214,0 +1707889195,214,0 +1707889195,214,0 +1707889196,214,0 +1707889196,214,0 +1707889197,214,0 +1707889197,214,0 +1707889197,214,0 +1707889198,214,0 +1707889198,214,0 +1707889199,214,0 +1707889199,214,0 +1707889200,214,0 +1707889200,213,0 +1707889201,214,0 +1707889201,214,0 +1707889202,214,0 +1707889202,214,0 +1707889203,214,0 +1707889203,214,0 +1707889204,214,0 +1707889204,214,0 +1707889205,214,0 +1707889205,214,0 +1707889206,214,0 +1707889206,214,0 +1707889207,214,0 +1707889207,214,0 +1707889208,213,0 +1707889208,214,0 +1707889209,214,0 +1707889209,214,0 +1707889209,214,0 +1707889210,214,0 +1707889210,214,0 +1707889211,214,0 +1707889211,214,0 +1707889212,214,0 +1707889212,214,0 +1707889213,214,0 +1707889213,214,0 +1707889214,214,0 +1707889214,214,0 +1707889215,214,0 +1707889215,214,0 +1707889216,214,0 +1707889216,213,0 +1707889217,213,0 +1707889217,214,0 +1707889218,214,0 +1707889218,214,0 +1707889219,214,0 +1707889219,214,0 +1707889220,214,0 +1707889220,214,0 +1707889220,214,0 +1707889221,214,0 +1707889221,214,0 +1707889222,214,0 +1707889222,214,0 +1707889223,214,0 +1707889223,214,0 +1707889224,214,0 +1707889224,214,0 +1707889225,214,0 +1707889225,214,0 +1707889226,214,0 +1707889226,214,0 +1707889227,214,0 +1707889227,214,0 +1707889228,214,0 +1707889228,214,0 +1707889229,214,0 +1707889229,214,0 +1707889230,214,0 +1707889230,214,0 +1707889231,214,0 +1707889231,214,0 +1707889232,214,0 +1707889232,214,0 +1707889233,214,0 +1707889233,214,0 +1707889234,214,0 +1707889234,214,0 +1707889234,214,0 +1707889235,214,0 +1707889235,214,0 +1707889236,214,0 +1707889236,214,0 +1707889237,214,0 +1707889237,214,0 +1707889238,214,0 +1707889238,214,0 +1707889239,214,0 +1707889239,214,0 +1707889240,214,0 +1707889240,214,0 +1707889241,214,0 +1707889241,214,0 +1707889242,214,0 +1707889242,214,0 +1707889243,214,0 +1707889243,214,0 +1707889244,214,0 +1707889244,214,0 +1707889245,214,0 +1707889245,214,0 +1707889246,214,0 +1707889246,214,0 +1707889247,214,0 +1707889247,214,0 +1707889248,214,0 +1707889248,214,0 +1707889249,214,0 +1707889249,214,0 +1707889250,214,0 +1707889250,214,0 +1707889250,213,0 +1707889251,213,0 +1707889251,213,0 +1707889252,213,0 +1707889252,213,0 +1707889253,213,0 +1707889253,214,0 +1707889254,214,0 +1707889254,214,0 +1707889255,214,0 +1707889255,214,0 +1707889256,214,0 +1707889256,214,0 +1707889257,214,0 +1707889257,214,0 +1707889258,214,0 +1707889258,214,0 +1707889259,214,0 +1707889259,213,0 +1707889260,213,0 +1707889260,213,0 +1707889261,213,0 +1707889261,214,0 +1707889262,213,0 +1707889262,213,0 +1707889263,214,0 +1707889263,214,0 +1707889264,214,0 +1707889264,214,0 +1707889265,214,0 +1707889265,214,0 +1707889266,214,0 +1707889266,214,0 +1707889266,214,0 +1707889267,214,0 +1707889267,213,0 +1707889268,213,0 +1707889268,213,0 +1707889269,213,0 +1707889269,213,0 +1707889270,213,0 +1707889270,214,0 +1707889271,213,0 +1707889271,213,0 +1707889272,214,0 +1707889272,214,0 +1707889273,214,0 +1707889273,214,0 +1707889274,214,0 +1707889274,214,0 +1707889275,214,0 +1707889275,214,0 +1707889276,214,0 +1707889276,213,0 +1707889277,213,0 +1707889277,213,0 +1707889278,213,0 +1707889278,213,0 +1707889279,213,0 +1707889279,213,0 +1707889279,213,0 +1707889280,213,0 +1707889280,214,0 +1707889281,214,0 +1707889281,213,0 +1707889282,214,0 +1707889282,214,0 +1707889283,214,0 +1707889283,214,0 +1707889284,214,0 +1707889284,214,0 +1707889285,214,0 +1707889285,213,0 +1707889286,213,0 +1707889286,213,0 +1707889287,213,0 +1707889287,213,0 +1707889288,213,0 +1707889288,214,0 +1707889289,214,0 +1707889289,213,0 +1707889290,214,0 +1707889290,214,0 +1707889291,214,0 +1707889291,214,0 +1707889291,214,0 +1707889292,214,0 +1707889292,214,0 +1707889293,214,0 +1707889293,213,0 +1707889294,213,0 +1707889294,213,0 +1707889295,213,0 +1707889295,213,0 +1707889296,213,0 +1707889296,213,0 +1707889297,214,0 +1707889297,214,0 +1707889298,214,0 +1707889298,214,0 +1707889299,214,0 +1707889299,214,0 +1707889300,214,0 +1707889300,214,0 +1707889301,214,0 +1707889301,214,0 +1707889302,214,0 +1707889302,213,0 +1707889302,213,0 +1707889303,213,0 +1707889303,213,0 +1707889304,213,0 +1707889304,214,0 +1707889305,213,0 +1707889305,214,0 +1707889306,214,0 +1707889306,214,0 +1707889307,214,0 +1707889307,214,0 +1707889308,214,0 +1707889308,214,0 +1707889309,214,0 +1707889309,214,0 +1707889310,214,0 +1707889310,214,0 +1707889311,213,0 +1707889311,213,0 +1707889312,213,0 +1707889312,213,0 +1707889313,214,0 +1707889313,214,0 +1707889314,214,0 +1707889314,214,0 +1707889314,214,0 +1707889315,214,0 +1707889315,214,0 +1707889316,214,0 +1707889316,214,0 +1707889317,214,0 +1707889317,214,0 +1707889318,214,0 +1707889318,214,0 +1707889319,214,0 +1707889319,213,0 +1707889320,213,0 +1707889320,213,0 +1707889321,214,0 +1707889321,214,0 +1707889322,214,0 +1707889322,214,0 +1707889323,214,0 +1707889323,214,0 +1707889324,214,0 +1707889324,214,0 +1707889325,214,0 +1707889325,214,0 +1707889326,214,0 +1707889326,214,0 +1707889327,214,0 +1707889327,214,0 +1707889328,214,0 +1707889328,214,0 +1707889329,214,0 +1707889329,214,0 +1707889330,214,0 +1707889330,214,0 +1707889330,214,0 +1707889331,214,0 +1707889331,214,0 +1707889332,214,0 +1707889332,214,0 +1707889333,214,0 +1707889333,214,0 +1707889334,214,0 +1707889334,214,0 +1707889335,214,0 +1707889335,214,0 +1707889336,214,0 +1707889336,214,0 +1707889337,213,0 +1707889337,213,0 +1707889338,214,0 +1707889338,213,0 +1707889339,214,0 +1707889339,213,0 +1707889340,214,0 +1707889340,214,0 +1707889341,214,0 +1707889341,214,0 +1707889342,214,0 +1707889342,214,0 +1707889343,214,0 +1707889343,214,0 +1707889343,214,0 +1707889344,214,0 +1707889344,214,0 +1707889345,214,0 +1707889345,213,0 +1707889346,213,0 +1707889346,213,0 +1707889347,213,0 +1707889347,213,0 +1707889348,214,0 +1707889348,214,0 +1707889349,214,0 +1707889349,214,0 +1707889350,214,0 +1707889350,214,0 +1707889351,214,0 +1707889351,214,0 +1707889352,214,0 +1707889352,214,0 +1707889353,214,0 +1707889353,214,0 +1707889354,213,0 +1707889354,213,0 +1707889355,213,0 +1707889355,213,0 +1707889356,213,0 +1707889356,214,0 +1707889357,213,0 +1707889357,214,0 +1707889358,214,0 +1707889358,214,0 +1707889359,214,0 +1707889359,214,0 +1707889359,214,0 +1707889360,214,0 +1707889360,214,0 +1707889361,214,0 +1707889361,214,0 +1707889362,214,0 +1707889362,213,0 +1707889363,213,0 +1707889363,213,0 +1707889364,213,0 +1707889364,213,0 +1707889365,214,0 +1707889365,214,0 +1707889366,213,0 +1707889366,214,0 +1707889367,214,0 +1707889367,214,0 +1707889368,214,0 +1707889368,214,0 +1707889369,214,0 +1707889369,214,0 +1707889370,214,0 +1707889370,214,0 +1707889371,214,0 +1707889371,213,0 +1707889372,213,0 +1707889372,213,0 +1707889373,213,0 +1707889373,214,0 +1707889374,214,0 +1707889374,214,0 +1707889375,214,0 +1707889375,214,0 +1707889376,214,0 +1707889376,214,0 +1707889376,214,0 +1707889377,214,0 +1707889377,214,0 +1707889378,214,0 +1707889378,214,0 +1707889379,214,0 +1707889379,214,0 +1707889380,213,0 +1707889380,213,0 +1707889381,213,0 +1707889381,213,0 +1707889382,213,0 +1707889382,214,0 +1707889383,213,0 +1707889383,214,0 +1707889384,214,0 +1707889384,214,0 +1707889385,214,0 +1707889385,214,0 +1707889386,214,0 +1707889386,214,0 +1707889387,214,0 +1707889387,214,0 +1707889388,214,0 +1707889388,213,0 +1707889389,213,0 +1707889389,213,0 +1707889390,214,0 +1707889390,214,0 +1707889391,214,0 +1707889391,214,0 +1707889392,214,0 +1707889392,214,0 +1707889393,214,0 +1707889393,214,0 +1707889393,214,0 +1707889394,214,0 +1707889394,214,0 +1707889395,214,0 +1707889395,214,0 +1707889396,214,0 +1707889396,214,0 +1707889397,214,0 +1707889397,214,0 +1707889398,214,0 +1707889398,214,0 +1707889399,214,0 +1707889399,214,0 +1707889400,214,0 +1707889400,214,0 +1707889401,214,0 +1707889401,214,0 +1707889402,214,0 +1707889402,214,0 +1707889403,214,0 +1707889403,214,0 +1707889404,214,0 +1707889404,214,0 +1707889405,214,0 +1707889405,214,0 +1707889406,214,0 +1707889406,214,0 +1707889407,214,0 +1707889407,214,0 +1707889408,214,0 +1707889408,214,0 +1707889408,214,0 +1707889409,214,0 +1707889409,214,0 +1707889410,214,0 +1707889410,214,0 +1707889411,214,0 +1707889411,214,0 +1707889412,214,0 +1707889412,214,0 +1707889413,214,0 +1707889413,214,0 +1707889414,214,0 +1707889414,213,0 +1707889415,213,0 +1707889415,213,0 +1707889416,214,0 +1707889416,214,0 +1707889417,214,0 +1707889417,214,0 +1707889418,214,0 +1707889418,214,0 +1707889419,214,0 +1707889419,214,0 +1707889420,214,0 +1707889420,214,0 +1707889421,214,0 +1707889421,214,0 +1707889422,214,0 +1707889422,214,0 +1707889423,213,0 +1707889423,213,0 +1707889424,213,0 +1707889424,213,0 +1707889425,214,0 +1707889425,213,0 +1707889425,214,0 +1707889426,214,0 +1707889426,214,0 +1707889427,214,0 +1707889427,214,0 +1707889428,214,0 +1707889428,214,0 +1707889429,214,0 +1707889429,214,0 +1707889430,214,0 +1707889430,214,0 +1707889431,214,0 +1707889431,213,0 +1707889432,213,0 +1707889432,213,0 +1707889433,213,0 +1707889433,213,0 +1707889434,213,0 +1707889434,214,0 +1707889435,214,0 +1707889435,214,0 +1707889436,214,0 +1707889436,214,0 +1707889437,214,0 +1707889437,214,0 +1707889438,214,0 +1707889438,214,0 +1707889439,214,0 +1707889439,214,0 +1707889439,214,0 +1707889440,213,0 +1707889440,213,0 +1707889441,213,0 +1707889441,213,0 +1707889442,213,0 +1707889442,213,0 +1707889443,214,0 +1707889443,214,0 +1707889444,214,0 +1707889444,214,0 +1707889445,214,0 +1707889445,214,0 +1707889446,214,0 +1707889446,214,0 +1707889447,214,0 +1707889447,214,0 +1707889448,214,0 +1707889448,214,0 +1707889449,213,0 +1707889449,213,0 +1707889450,213,0 +1707889450,213,0 +1707889451,214,0 +1707889451,214,0 +1707889452,214,0 +1707889452,214,0 +1707889453,214,0 +1707889453,214,0 +1707889453,214,0 +1707889454,214,0 +1707889454,214,0 +1707889455,214,0 +1707889455,214,0 +1707889456,214,0 +1707889456,214,0 +1707889457,214,0 +1707889457,213,0 +1707889458,213,0 +1707889458,213,0 +1707889459,214,0 +1707889459,213,0 +1707889460,213,0 +1707889460,214,0 +1707889461,214,0 +1707889461,214,0 +1707889462,214,0 +1707889462,214,0 +1707889463,214,0 +1707889463,214,0 +1707889464,214,0 +1707889464,214,0 +1707889465,214,0 +1707889465,214,0 +1707889466,214,0 +1707889466,213,0 +1707889466,213,0 +1707889467,214,0 +1707889467,214,0 +1707889468,213,0 +1707889468,214,0 +1707889469,214,0 +1707889469,214,0 +1707889470,214,0 +1707889470,214,0 +1707889471,214,0 +1707889471,214,0 +1707889472,214,0 +1707889472,214,0 +1707889473,214,0 +1707889473,214,0 +1707889474,214,0 +1707889474,214,0 +1707889475,214,0 +1707889475,214,0 +1707889476,213,0 +1707889476,214,0 +1707889477,214,0 +1707889477,214,0 +1707889478,214,0 +1707889478,214,0 +1707889479,214,0 +1707889479,214,0 +1707889480,214,0 +1707889480,214,0 +1707889481,214,0 +1707889481,214,0 +1707889482,214,0 +1707889482,214,0 +1707889483,214,0 +1707889483,213,0 +1707889484,213,0 +1707889484,213,0 +1707889484,214,0 +1707889485,214,0 +1707889485,214,0 +1707889486,214,0 +1707889486,214,0 +1707889487,214,0 +1707889487,214,0 +1707889488,214,0 +1707889488,214,0 +1707889489,214,0 +1707889489,214,0 +1707889490,214,0 +1707889490,214,0 +1707889491,214,0 +1707889491,214,0 +1707889492,213,0 +1707889492,213,0 +1707889493,213,0 +1707889493,213,0 +1707889494,214,0 +1707889494,214,0 +1707889495,214,0 +1707889495,214,0 +1707889496,214,0 +1707889496,214,0 +1707889497,214,0 +1707889497,214,0 +1707889498,214,0 +1707889498,214,0 +1707889499,214,0 +1707889499,214,0 +1707889499,214,0 +1707889500,214,0 +1707889500,213,0 +1707889501,213,0 +1707889501,213,0 +1707889502,213,0 +1707889502,213,0 +1707889503,214,0 +1707889503,214,0 +1707889504,214,0 +1707889504,214,0 +1707889505,214,0 +1707889505,214,0 +1707889506,214,0 +1707889506,214,0 +1707889507,214,0 +1707889507,214,0 +1707889508,214,0 +1707889508,214,0 +1707889509,213,0 +1707889509,213,0 +1707889510,213,0 +1707889510,213,0 +1707889511,213,0 +1707889511,214,0 +1707889512,214,0 +1707889512,214,0 +1707889513,214,0 +1707889513,214,0 +1707889514,214,0 +1707889514,214,0 +1707889515,214,0 +1707889515,214,0 +1707889516,214,0 +1707889516,214,0 +1707889517,214,0 +1707889517,214,0 +1707889518,213,0 +1707889518,213,0 +1707889518,213,0 +1707889519,213,0 +1707889519,214,0 +1707889520,213,0 +1707889520,214,0 +1707889521,214,0 +1707889521,213,0 +1707889522,214,0 +1707889522,214,0 +1707889523,214,0 +1707889523,214,0 +1707889524,214,0 +1707889524,214,0 +1707889525,214,0 +1707889525,214,0 +1707889526,214,0 +1707889526,213,0 +1707889527,213,0 +1707889527,213,0 +1707889528,213,0 +1707889528,213,0 +1707889529,214,0 +1707889529,214,0 +1707889530,214,0 +1707889530,214,0 +1707889531,214,0 +1707889531,214,0 +1707889532,214,0 +1707889532,214,0 +1707889533,214,0 +1707889533,214,0 +1707889533,214,0 +1707889534,214,0 +1707889534,214,0 +1707889535,213,0 +1707889535,213,0 +1707889536,213,0 +1707889536,213,0 +1707889537,213,0 +1707889537,214,0 +1707889538,214,0 +1707889538,214,0 +1707889539,214,0 +1707889539,214,0 +1707889540,214,0 +1707889540,214,0 +1707889541,214,0 +1707889541,214,0 +1707889542,214,0 +1707889542,214,0 +1707889543,214,0 +1707889543,214,0 +1707889544,213,0 +1707889544,213,0 +1707889545,213,0 +1707889545,213,0 +1707889546,214,0 +1707889546,214,0 +1707889547,213,0 +1707889547,214,0 +1707889547,214,0 +1707889548,214,0 +1707889548,214,0 +1707889549,214,0 +1707889549,214,0 +1707889550,214,0 +1707889550,214,0 +1707889551,214,0 +1707889551,214,0 +1707889552,214,0 +1707889552,214,0 +1707889553,213,0 +1707889553,213,0 +1707889554,214,0 +1707889554,214,0 +1707889555,214,0 +1707889555,214,0 +1707889556,214,0 +1707889556,214,0 +1707889557,214,0 +1707889557,214,0 +1707889558,214,0 +1707889558,214,0 +1707889559,214,0 +1707889559,214,0 +1707889560,214,0 +1707889560,214,0 +1707889560,214,0 +1707889561,214,0 +1707889561,214,0 +1707889562,214,0 +1707889562,214,0 +1707889563,214,0 +1707889563,214,0 +1707889564,214,0 +1707889564,214,0 +1707889565,214,0 +1707889565,214,0 +1707889566,214,0 +1707889566,214,0 +1707889567,214,0 +1707889567,214,0 +1707889568,214,0 +1707889568,214,0 +1707889569,214,0 +1707889569,214,0 +1707889570,214,0 +1707889570,214,0 +1707889571,214,0 +1707889571,214,0 +1707889572,214,0 +1707889572,214,0 +1707889573,214,0 +1707889573,214,0 +1707889574,214,0 +1707889574,214,0 +1707889574,214,0 +1707889575,214,0 +1707889575,214,0 +1707889576,214,0 +1707889576,214,0 +1707889577,214,0 +1707889577,214,0 +1707889578,214,0 +1707889578,214,0 +1707889579,214,0 +1707889579,214,0 +1707889580,214,0 +1707889580,214,0 +1707889581,214,0 +1707889581,214,0 +1707889582,214,0 +1707889582,214,0 +1707889583,214,0 +1707889583,214,0 +1707889584,214,0 +1707889584,214,0 +1707889585,214,0 +1707889585,214,0 +1707889586,214,0 +1707889586,214,0 +1707889587,213,0 +1707889587,213,0 +1707889587,213,0 +1707889588,213,0 +1707889588,214,0 +1707889589,214,0 +1707889589,214,0 +1707889590,214,0 +1707889590,214,0 +1707889591,214,0 +1707889591,214,0 +1707889592,214,0 +1707889592,214,0 +1707889593,214,0 +1707889593,214,0 +1707889594,214,0 +1707889594,214,0 +1707889595,214,0 +1707889595,213,0 +1707889596,214,0 +1707889596,214,0 +1707889597,214,0 +1707889597,213,0 +1707889598,214,0 +1707889598,214,0 +1707889599,214,0 +1707889599,214,0 +1707889600,214,0 +1707889600,214,0 +1707889601,214,0 +1707889601,214,0 +1707889602,214,0 +1707889602,214,0 +1707889603,214,0 +1707889603,214,0 +1707889603,214,0 +1707889604,213,0 +1707889604,213,0 +1707889605,213,0 +1707889605,214,0 +1707889606,214,0 +1707889606,214,0 +1707889607,214,0 +1707889607,214,0 +1707889608,214,0 +1707889608,214,0 +1707889609,214,0 +1707889609,214,0 +1707889610,214,0 +1707889610,214,0 +1707889611,214,0 +1707889611,214,0 +1707889612,214,0 +1707889612,214,0 +1707889613,214,0 +1707889613,213,0 +1707889614,213,0 +1707889614,214,0 +1707889615,214,0 +1707889615,214,0 +1707889616,214,0 +1707889616,214,0 +1707889617,214,0 +1707889617,214,0 +1707889618,214,0 +1707889618,214,0 +1707889619,214,0 +1707889619,214,0 +1707889619,214,0 +1707889620,214,0 +1707889620,214,0 +1707889621,214,0 +1707889621,213,0 +1707889622,213,0 +1707889622,213,0 +1707889623,214,0 +1707889623,214,0 +1707889624,214,0 +1707889624,214,0 +1707889625,214,0 +1707889625,214,0 +1707889626,214,0 +1707889626,214,0 +1707889627,214,0 +1707889627,214,0 +1707889628,214,0 +1707889628,214,0 +1707889629,214,0 +1707889629,214,0 +1707889630,214,0 +1707889630,213,0 +1707889631,214,0 +1707889631,213,0 +1707889632,213,0 +1707889632,214,0 +1707889633,214,0 +1707889633,214,0 +1707889634,214,0 +1707889634,214,0 +1707889635,214,0 +1707889635,214,0 +1707889635,214,0 +1707889636,214,0 +1707889636,214,0 +1707889637,214,0 +1707889637,214,0 +1707889638,214,0 +1707889638,213,0 +1707889639,213,0 +1707889639,214,0 +1707889640,214,0 +1707889640,213,0 +1707889641,213,0 +1707889641,214,0 +1707889642,214,0 +1707889642,214,0 +1707889643,214,0 +1707889643,214,0 +1707889644,214,0 +1707889644,214,0 +1707889645,214,0 +1707889645,214,0 +1707889646,214,0 +1707889646,214,0 +1707889647,214,0 +1707889647,213,0 +1707889648,214,0 +1707889648,214,0 +1707889649,214,0 +1707889649,214,0 +1707889650,213,0 +1707889650,214,0 +1707889651,214,0 +1707889651,214,0 +1707889652,214,0 +1707889652,214,0 +1707889652,214,0 +1707889653,214,0 +1707889653,214,0 +1707889654,214,0 +1707889654,214,0 +1707889655,214,0 +1707889655,213,0 +1707889656,213,0 +1707889656,213,0 +1707889657,214,0 +1707889657,214,0 +1707889658,214,0 +1707889658,214,0 +1707889659,214,0 +1707889659,214,0 +1707889660,214,0 +1707889660,214,0 +1707889661,214,0 +1707889661,214,0 +1707889662,214,0 +1707889662,214,0 +1707889663,214,0 +1707889663,214,0 +1707889664,214,0 +1707889664,213,0 +1707889665,213,0 +1707889665,213,0 +1707889666,214,0 +1707889666,213,0 +1707889667,213,0 +1707889667,214,0 +1707889668,214,0 +1707889668,214,0 +1707889669,214,0 +1707889669,214,0 +1707889670,214,0 +1707889670,214,0 +1707889670,214,0 +1707889671,214,0 +1707889671,214,0 +1707889672,214,0 +1707889672,214,0 +1707889673,213,0 +1707889673,213,0 +1707889674,213,0 +1707889674,213,0 +1707889675,213,0 +1707889675,213,0 +1707889676,214,0 +1707889676,214,0 +1707889677,214,0 +1707889677,214,0 +1707889678,214,0 +1707889678,214,0 +1707889679,214,0 +1707889679,214,0 +1707889680,214,0 +1707889680,214,0 +1707889681,214,0 +1707889681,214,0 +1707889682,213,0 +1707889682,213,0 +1707889683,213,0 +1707889683,213,0 +1707889684,213,0 +1707889684,213,0 +1707889685,214,0 +1707889685,214,0 +1707889685,214,0 +1707889686,214,0 +1707889686,214,0 +1707889687,214,0 +1707889687,214,0 +1707889688,214,0 +1707889688,214,0 +1707889689,214,0 +1707889689,214,0 +1707889690,213,0 +1707889690,214,0 +1707889691,214,0 +1707889691,213,0 +1707889692,213,0 +1707889692,214,0 +1707889693,213,0 +1707889693,214,0 +1707889694,214,0 +1707889694,214,0 +1707889695,214,0 +1707889695,214,0 +1707889696,214,0 +1707889696,214,0 +1707889697,214,0 +1707889697,214,0 +1707889698,214,0 +1707889698,214,0 +1707889699,213,0 +1707889699,213,0 +1707889700,214,0 +1707889700,213,0 +1707889701,213,0 +1707889701,213,0 +1707889701,214,0 +1707889702,213,0 +1707889702,214,0 +1707889703,214,0 +1707889703,214,0 +1707889704,214,0 +1707889704,214,0 +1707889705,214,0 +1707889705,214,0 +1707889706,214,0 +1707889706,214,0 +1707889707,214,0 +1707889707,213,0 +1707889708,213,0 +1707889708,213,0 +1707889709,213,0 +1707889709,214,0 +1707889710,214,0 +1707889710,214,0 +1707889711,214,0 +1707889711,214,0 +1707889712,214,0 +1707889712,214,0 +1707889713,214,0 +1707889713,214,0 +1707889714,214,0 +1707889714,214,0 +1707889715,214,0 +1707889715,214,0 +1707889715,214,0 +1707889716,213,0 +1707889716,213,0 +1707889717,213,0 +1707889717,214,0 +1707889718,213,0 +1707889718,213,0 +1707889719,214,0 +1707889719,214,0 +1707889720,214,0 +1707889720,214,0 +1707889721,214,0 +1707889721,214,0 +1707889722,214,0 +1707889722,214,0 +1707889723,214,0 +1707889723,214,0 +1707889724,214,0 +1707889724,214,0 +1707889725,214,0 +1707889725,214,0 +1707889726,214,0 +1707889726,214,0 +1707889727,214,0 +1707889727,214,0 +1707889728,214,0 +1707889728,214,0 +1707889729,214,0 +1707889729,214,0 +1707889730,214,0 +1707889730,214,0 +1707889731,214,0 +1707889731,214,0 +1707889731,214,0 +1707889732,214,0 +1707889732,214,0 +1707889733,214,0 +1707889733,214,0 +1707889734,214,0 +1707889734,214,0 +1707889735,214,0 +1707889735,214,0 +1707889736,214,0 +1707889736,214,0 +1707889737,214,0 +1707889737,214,0 +1707889738,214,0 +1707889738,214,0 +1707889739,214,0 +1707889739,214,0 +1707889740,214,0 +1707889740,214,0 +1707889741,214,0 +1707889741,214,0 +1707889742,214,0 +1707889742,214,0 +1707889743,214,0 +1707889743,214,0 +1707889744,214,0 +1707889744,214,0 +1707889745,214,0 +1707889745,214,0 +1707889746,214,0 +1707889746,214,0 +1707889747,214,0 +1707889747,214,0 +1707889748,214,0 +1707889748,214,0 +1707889748,214,0 +1707889749,214,0 +1707889749,214,0 +1707889750,214,0 +1707889750,214,0 +1707889751,214,0 +1707889751,214,0 +1707889752,214,0 +1707889752,214,0 +1707889753,214,0 +1707889753,214,0 +1707889754,214,0 +1707889754,214,0 +1707889755,214,0 +1707889755,214,0 +1707889756,214,0 +1707889756,214,0 +1707889757,214,0 +1707889757,214,0 +1707889758,214,0 +1707889758,214,0 +1707889759,213,0 +1707889759,214,0 +1707889760,214,0 +1707889760,214,0 +1707889761,214,0 +1707889761,214,0 +1707889762,214,0 +1707889762,214,0 +1707889762,214,0 +1707889763,214,0 +1707889763,214,0 +1707889764,214,0 +1707889764,214,0 +1707889765,214,0 +1707889765,214,0 +1707889766,214,0 +1707889766,214,0 +1707889767,214,0 +1707889767,214,0 +1707889768,213,0 +1707889768,214,0 +1707889769,213,0 +1707889769,214,0 +1707889770,214,0 +1707889770,214,0 +1707889771,214,0 +1707889771,214,0 +1707889772,214,0 +1707889772,214,0 +1707889773,214,0 +1707889773,214,0 +1707889774,214,0 +1707889774,214,0 +1707889775,214,0 +1707889775,214,0 +1707889775,214,0 +1707889776,213,0 +1707889776,213,0 +1707889777,213,0 +1707889777,213,0 +1707889778,214,0 +1707889778,214,0 +1707889779,214,0 +1707889779,214,0 +1707889780,214,0 +1707889780,214,0 +1707889781,214,0 +1707889781,214,0 +1707889782,214,0 +1707889782,214,0 +1707889783,214,0 +1707889783,214,0 +1707889784,214,0 +1707889784,214,0 +1707889785,213,0 +1707889785,213,0 +1707889786,214,0 +1707889786,213,0 +1707889787,213,0 +1707889787,213,0 +1707889788,214,0 +1707889788,214,0 +1707889789,214,0 +1707889789,214,0 +1707889790,214,0 +1707889790,214,0 +1707889790,214,0 +1707889791,214,0 +1707889791,214,0 +1707889792,214,0 +1707889792,214,0 +1707889793,214,0 +1707889793,213,0 +1707889794,213,0 +1707889794,213,0 +1707889795,213,0 +1707889795,213,0 +1707889796,214,0 +1707889796,213,0 +1707889797,214,0 +1707889797,214,0 +1707889798,214,0 +1707889798,214,0 +1707889799,214,0 +1707889799,214,0 +1707889800,214,0 +1707889800,214,0 +1707889801,214,0 +1707889801,214,0 +1707889802,214,0 +1707889802,213,0 +1707889803,213,0 +1707889803,213,0 +1707889804,214,0 +1707889804,214,0 +1707889805,214,0 +1707889805,214,0 +1707889806,214,0 +1707889806,214,0 +1707889806,214,0 +1707889807,214,0 +1707889807,214,0 +1707889808,214,0 +1707889808,214,0 +1707889809,214,0 +1707889809,214,0 +1707889810,214,0 +1707889810,214,0 +1707889811,213,0 +1707889811,213,0 +1707889812,214,0 +1707889812,214,0 +1707889813,214,0 +1707889813,214,0 +1707889814,214,0 +1707889814,214,0 +1707889815,214,0 +1707889815,214,0 +1707889816,214,0 +1707889816,214,0 +1707889817,214,0 +1707889817,214,0 +1707889818,214,0 +1707889818,214,0 +1707889819,214,0 +1707889819,213,0 +1707889820,213,0 +1707889820,213,0 +1707889820,213,0 +1707889821,213,0 +1707889821,213,0 +1707889822,213,0 +1707889822,214,0 +1707889823,213,0 +1707889823,214,0 +1707889824,214,0 +1707889824,214,0 +1707889825,214,0 +1707889825,214,0 +1707889826,214,0 +1707889826,214,0 +1707889827,214,0 +1707889827,214,0 +1707889828,213,0 +1707889828,213,0 +1707889829,213,0 +1707889829,213,0 +1707889830,213,0 +1707889830,213,0 +1707889831,214,0 +1707889831,214,0 +1707889832,214,0 +1707889832,214,0 +1707889833,214,0 +1707889833,214,0 +1707889834,214,0 +1707889834,214,0 +1707889835,214,0 +1707889835,214,0 +1707889836,214,0 +1707889836,214,0 +1707889836,213,0 +1707889837,213,0 +1707889837,213,0 +1707889838,213,0 +1707889838,213,0 +1707889839,213,0 +1707889839,214,0 +1707889840,214,0 +1707889840,214,0 +1707889841,214,0 +1707889841,214,0 +1707889842,214,0 +1707889842,214,0 +1707889843,214,0 +1707889843,214,0 +1707889844,214,0 +1707889844,214,0 +1707889845,214,0 +1707889845,213,0 +1707889846,213,0 +1707889846,213,0 +1707889847,213,0 +1707889847,214,0 +1707889848,214,0 +1707889848,214,0 +1707889849,214,0 +1707889849,214,0 +1707889850,214,0 +1707889850,214,0 +1707889850,214,0 +1707889851,214,0 +1707889851,214,0 +1707889852,214,0 +1707889852,214,0 +1707889853,214,0 +1707889853,214,0 +1707889854,213,0 +1707889854,213,0 +1707889855,213,0 +1707889855,213,0 +1707889856,213,0 +1707889856,214,0 +1707889857,214,0 +1707889857,214,0 +1707889858,214,0 +1707889858,214,0 +1707889859,214,0 +1707889859,214,0 +1707889860,214,0 +1707889860,214,0 +1707889861,214,0 +1707889861,214,0 +1707889862,214,0 +1707889862,214,0 +1707889863,213,0 +1707889863,213,0 +1707889863,213,0 +1707889864,213,0 +1707889864,213,0 +1707889865,214,0 +1707889865,214,0 +1707889866,214,0 +1707889866,214,0 +1707889867,214,0 +1707889867,214,0 +1707889868,214,0 +1707889868,214,0 +1707889869,214,0 +1707889869,214,0 +1707889870,214,0 +1707889870,214,0 +1707889871,214,0 +1707889871,213,0 +1707889872,214,0 +1707889872,213,0 +1707889873,214,0 +1707889873,214,0 +1707889874,214,0 +1707889874,214,0 +1707889875,214,0 +1707889875,214,0 +1707889876,214,0 +1707889876,214,0 +1707889877,214,0 +1707889877,214,0 +1707889878,214,0 +1707889878,214,0 +1707889879,214,0 +1707889879,214,0 +1707889880,214,0 +1707889880,214,0 +1707889881,214,0 +1707889881,214,0 +1707889881,214,0 +1707889882,214,0 +1707889882,214,0 +1707889883,214,0 +1707889883,214,0 +1707889884,214,0 +1707889884,214,0 +1707889885,214,0 +1707889885,214,0 +1707889886,214,0 +1707889886,214,0 +1707889887,214,0 +1707889887,214,0 +1707889888,214,0 +1707889888,214,0 +1707889889,214,0 +1707889889,214,0 +1707889890,214,0 +1707889890,214,0 +1707889891,214,0 +1707889891,214,0 +1707889892,214,0 +1707889892,214,0 +1707889893,214,0 +1707889893,214,0 +1707889894,214,0 +1707889894,214,0 +1707889895,214,0 +1707889895,214,0 +1707889896,214,0 +1707889896,214,0 +1707889896,214,0 +1707889897,214,0 +1707889897,214,0 +1707889898,214,0 +1707889898,214,0 +1707889899,214,0 +1707889899,214,0 +1707889900,214,0 +1707889900,214,0 +1707889901,214,0 +1707889901,214,0 +1707889902,214,0 +1707889902,214,0 +1707889903,214,0 +1707889903,214,0 +1707889904,214,0 +1707889904,214,0 +1707889905,214,0 +1707889905,214,0 +1707889906,214,0 +1707889906,214,0 +1707889907,214,0 +1707889907,214,0 +1707889908,214,0 +1707889908,214,0 +1707889909,214,0 +1707889909,214,0 +1707889910,214,0 +1707889910,214,0 +1707889910,214,0 +1707889911,214,0 +1707889911,214,0 +1707889912,214,0 +1707889912,214,0 +1707889913,214,0 +1707889913,214,0 +1707889914,213,0 +1707889914,213,0 +1707889915,214,0 +1707889915,214,0 +1707889916,213,0 +1707889916,213,0 +1707889917,214,0 +1707889917,214,0 +1707889918,214,0 +1707889918,214,0 +1707889919,214,0 +1707889919,214,0 +1707889920,214,0 +1707889920,214,0 +1707889921,214,0 +1707889921,214,0 +1707889922,214,0 +1707889922,214,0 +1707889923,213,0 +1707889923,213,0 +1707889924,213,0 +1707889924,213,0 +1707889924,213,0 +1707889925,213,0 +1707889925,214,0 +1707889926,214,0 +1707889926,214,0 +1707889927,214,0 +1707889927,214,0 +1707889928,214,0 +1707889928,214,0 +1707889929,214,0 +1707889929,214,0 +1707889930,214,0 +1707889930,214,0 +1707889931,213,0 +1707889931,213,0 +1707889932,213,0 +1707889932,213,0 +1707889933,213,0 +1707889933,213,0 +1707889934,214,0 +1707889934,214,0 +1707889935,213,0 +1707889935,214,0 +1707889936,214,0 +1707889936,214,0 +1707889937,214,0 +1707889937,214,0 +1707889938,214,0 +1707889938,214,0 +1707889939,214,0 +1707889939,214,0 +1707889940,213,0 +1707889940,213,0 +1707889940,213,0 +1707889941,213,0 +1707889941,213,0 +1707889942,213,0 +1707889942,213,0 +1707889943,213,0 +1707889943,213,0 +1707889944,214,0 +1707889944,214,0 +1707889945,214,0 +1707889945,214,0 +1707889946,214,0 +1707889946,214,0 +1707889947,214,0 +1707889947,214,0 +1707889948,214,0 +1707889948,213,0 +1707889949,213,0 +1707889949,213,0 +1707889950,213,0 +1707889950,213,0 +1707889951,213,0 +1707889951,213,0 +1707889952,213,0 +1707889952,213,0 +1707889953,214,0 +1707889953,214,0 +1707889953,214,0 +1707889954,213,0 +1707889954,214,0 +1707889955,214,0 +1707889955,214,0 +1707889956,214,0 +1707889956,214,0 +1707889957,213,0 +1707889957,213,0 +1707889958,213,0 +1707889958,213,0 +1707889959,213,0 +1707889959,214,0 +1707889960,213,0 +1707889960,214,0 +1707889961,214,0 +1707889961,214,0 +1707889962,214,0 +1707889962,214,0 +1707889963,214,0 +1707889963,214,0 +1707889964,214,0 +1707889964,214,0 +1707889965,214,0 +1707889965,214,0 +1707889966,213,0 +1707889966,213,0 +1707889967,213,0 +1707889967,213,0 +1707889968,213,0 +1707889968,213,0 +1707889969,213,0 +1707889969,213,0 +1707889969,213,0 +1707889970,214,0 +1707889970,214,0 +1707889971,214,0 +1707889971,214,0 +1707889972,214,0 +1707889972,214,0 +1707889973,214,0 +1707889973,214,0 +1707889974,214,0 +1707889974,213,0 +1707889975,213,0 +1707889975,213,0 +1707889976,213,0 +1707889976,213,0 +1707889977,213,0 +1707889977,214,0 +1707889978,214,0 +1707889978,214,0 +1707889979,214,0 +1707889979,214,0 +1707889980,214,0 +1707889980,214,0 +1707889981,214,0 +1707889981,214,0 +1707889982,214,0 +1707889982,214,0 +1707889983,213,0 +1707889983,213,0 +1707889983,213,0 +1707889984,213,0 +1707889984,213,0 +1707889985,213,0 +1707889985,213,0 +1707889986,214,0 +1707889986,214,0 +1707889987,214,0 +1707889987,214,0 +1707889988,214,0 +1707889988,214,0 +1707889989,214,0 +1707889989,214,0 +1707889990,214,0 +1707889990,214,0 +1707889991,214,0 +1707889991,213,0 +1707889992,213,0 +1707889992,213,0 +1707889993,213,0 +1707889993,214,0 +1707889994,214,0 +1707889994,214,0 +1707889995,214,0 +1707889995,214,0 +1707889996,214,0 +1707889996,214,0 +1707889997,214,0 +1707889997,214,0 +1707889998,214,0 +1707889998,214,0 +1707889998,214,0 +1707889999,214,0 +1707889999,214,0 +1707890000,213,0 +1707890000,213,0 +1707890001,213,0 +1707890001,213,0 +1707890002,213,0 +1707890002,213,0 +1707890003,213,0 +1707890003,214,0 +1707890004,214,0 +1707890004,214,0 +1707890005,214,0 +1707890005,214,0 +1707890006,214,0 +1707890006,214,0 +1707890007,214,0 +1707890007,214,0 +1707890008,214,0 +1707890008,214,0 +1707890009,214,0 +1707890009,214,0 +1707890010,214,0 +1707890010,214,0 +1707890011,214,0 +1707890011,214,0 +1707890012,214,0 +1707890012,214,0 +1707890013,214,0 +1707890013,214,0 +1707890013,214,0 +1707890014,214,0 +1707890014,214,0 +1707890015,214,0 +1707890015,214,0 +1707890016,214,0 +1707890016,214,0 +1707890017,214,0 +1707890017,214,0 +1707890018,214,0 +1707890018,214,0 +1707890019,214,0 +1707890019,214,0 +1707890020,214,0 +1707890020,214,0 +1707890021,214,0 +1707890021,213,0 +1707890022,213,0 +1707890022,213,0 +1707890023,213,0 +1707890023,213,0 +1707890024,213,0 +1707890024,214,0 +1707890025,214,0 +1707890025,214,0 +1707890026,214,0 +1707890026,214,0 +1707890027,214,0 +1707890027,214,0 +1707890028,214,0 +1707890028,214,0 +1707890028,214,0 +1707890029,214,0 +1707890029,214,0 +1707890030,213,0 +1707890030,213,0 +1707890031,213,0 +1707890031,214,0 +1707890032,214,0 +1707890032,214,0 +1707890033,214,0 +1707890033,213,0 +1707890034,214,0 +1707890034,214,0 +1707890035,214,0 +1707890035,214,0 +1707890036,214,0 +1707890036,214,0 +1707890037,214,0 +1707890037,214,0 +1707890038,214,0 +1707890038,214,0 +1707890039,213,0 +1707890039,213,0 +1707890040,213,0 +1707890040,213,0 +1707890041,213,0 +1707890041,214,0 +1707890041,214,0 +1707890042,214,0 +1707890042,214,0 +1707890043,214,0 +1707890043,214,0 +1707890044,214,0 +1707890044,214,0 +1707890045,214,0 +1707890045,214,0 +1707890046,214,0 +1707890046,214,0 +1707890047,214,0 +1707890047,214,0 +1707890048,213,0 +1707890048,213,0 +1707890049,214,0 +1707890049,213,0 +1707890050,213,0 +1707890050,214,0 +1707890051,214,0 +1707890051,213,0 +1707890052,214,0 +1707890052,214,0 +1707890052,214,0 +1707890053,214,0 +1707890053,214,0 +1707890054,214,0 +1707890054,214,0 +1707890055,214,0 +1707890055,214,0 +1707890056,213,0 +1707890056,213,0 +1707890057,213,0 +1707890057,213,0 +1707890058,214,0 +1707890058,214,0 +1707890059,214,0 +1707890059,214,0 +1707890060,214,0 +1707890060,214,0 +1707890061,214,0 +1707890061,214,0 +1707890062,214,0 +1707890062,214,0 +1707890063,214,0 +1707890063,214,0 +1707890064,214,0 +1707890064,214,0 +1707890064,214,0 +1707890065,214,0 +1707890065,214,0 +1707890066,214,0 +1707890066,214,0 +1707890067,214,0 +1707890067,214,0 +1707890068,214,0 +1707890068,214,0 +1707890069,214,0 +1707890069,214,0 +1707890070,214,0 +1707890070,214,0 +1707890071,214,0 +1707890071,214,0 +1707890072,214,0 +1707890072,214,0 +1707890073,214,0 +1707890073,214,0 +1707890074,214,0 +1707890074,214,0 +1707890075,214,0 +1707890075,214,0 +1707890076,214,0 +1707890076,214,0 +1707890077,214,0 +1707890077,214,0 +1707890078,214,0 +1707890078,214,0 +1707890079,214,0 +1707890079,214,0 +1707890080,214,0 +1707890080,214,0 +1707890080,214,0 +1707890081,214,0 +1707890081,213,0 +1707890082,214,0 +1707890082,214,0 +1707890083,214,0 +1707890083,214,0 +1707890084,214,0 +1707890084,214,0 +1707890085,214,0 +1707890085,214,0 +1707890086,214,0 +1707890086,214,0 +1707890087,214,0 +1707890087,214,0 +1707890088,214,0 +1707890088,214,0 +1707890089,214,0 +1707890089,214,0 +1707890090,214,0 +1707890090,213,0 +1707890091,213,0 +1707890091,213,0 +1707890092,214,0 +1707890092,213,0 +1707890093,214,0 +1707890093,214,0 +1707890094,214,0 +1707890094,214,0 +1707890094,214,0 +1707890095,214,0 +1707890095,214,0 +1707890096,214,0 +1707890096,214,0 +1707890097,214,0 +1707890097,214,0 +1707890098,214,0 +1707890098,214,0 +1707890099,213,0 +1707890099,213,0 +1707890100,213,0 +1707890100,214,0 +1707890101,214,0 +1707890101,214,0 +1707890102,214,0 +1707890102,214,0 +1707890103,214,0 +1707890103,214,0 +1707890104,214,0 +1707890104,214,0 +1707890105,214,0 +1707890105,214,0 +1707890106,214,0 +1707890106,214,0 +1707890107,214,0 +1707890107,214,0 +1707890107,214,0 +1707890108,214,0 +1707890108,214,0 +1707890109,214,0 +1707890109,214,0 +1707890110,214,0 +1707890110,214,0 +1707890111,214,0 +1707890111,214,0 +1707890112,214,0 +1707890112,214,0 +1707890113,214,0 +1707890113,214,0 +1707890114,214,0 +1707890114,214,0 +1707890115,214,0 +1707890115,214,0 +1707890116,214,0 +1707890116,214,0 +1707890117,213,0 +1707890117,214,0 +1707890118,214,0 +1707890118,214,0 +1707890119,214,0 +1707890119,214,0 +1707890119,214,0 +1707890120,214,0 +1707890120,214,0 +1707890121,214,0 +1707890121,214,0 +1707890122,214,0 +1707890122,214,0 +1707890123,214,0 +1707890123,214,0 +1707890124,214,0 +1707890124,214,0 +1707890125,214,0 +1707890125,214,0 +1707890126,213,0 +1707890126,214,0 +1707890127,214,0 +1707890127,214,0 +1707890128,214,0 +1707890128,214,0 +1707890129,214,0 +1707890129,214,0 +1707890130,214,0 +1707890130,214,0 +1707890131,214,0 +1707890131,214,0 +1707890132,214,0 +1707890132,214,0 +1707890132,214,0 +1707890133,214,0 +1707890133,214,0 +1707890134,214,0 +1707890134,214,0 +1707890135,214,0 +1707890135,214,0 +1707890136,214,0 +1707890136,214,0 +1707890137,214,0 +1707890137,214,0 +1707890138,214,0 +1707890138,214,0 +1707890139,214,0 +1707890139,214,0 +1707890140,214,0 +1707890140,214,0 +1707890141,214,0 +1707890141,214,0 +1707890142,214,0 +1707890142,213,0 +1707890143,214,0 +1707890143,214,0 +1707890144,214,0 +1707890144,214,0 +1707890145,214,0 +1707890145,214,0 +1707890146,214,0 +1707890146,214,0 +1707890146,214,0 +1707890147,214,0 +1707890147,214,0 +1707890148,214,0 +1707890148,214,0 +1707890149,214,0 +1707890149,214,0 +1707890150,214,0 +1707890150,213,0 +1707890151,214,0 +1707890151,214,0 +1707890152,214,0 +1707890152,214,0 +1707890153,214,0 +1707890153,214,0 +1707890154,214,0 +1707890154,214,0 +1707890155,214,0 +1707890155,214,0 +1707890156,214,0 +1707890156,214,0 +1707890157,214,0 +1707890157,214,0 +1707890158,214,0 +1707890158,214,0 +1707890159,214,0 +1707890159,213,0 +1707890159,213,0 +1707890160,213,0 +1707890160,213,0 +1707890161,214,0 +1707890161,213,0 +1707890162,213,0 +1707890162,214,0 +1707890163,214,0 +1707890163,214,0 +1707890164,214,0 +1707890164,214,0 +1707890165,214,0 +1707890165,214,0 +1707890166,214,0 +1707890166,214,0 +1707890167,214,0 +1707890167,214,0 +1707890168,213,0 +1707890168,213,0 +1707890169,213,0 +1707890169,213,0 +1707890170,213,0 +1707890170,214,0 +1707890171,213,0 +1707890171,214,0 +1707890172,214,0 +1707890172,214,0 +1707890173,214,0 +1707890173,214,0 +1707890174,214,0 +1707890174,214,0 +1707890175,214,0 +1707890175,214,0 +1707890176,214,0 +1707890176,214,0 +1707890176,213,0 +1707890177,213,0 +1707890177,213,0 +1707890178,213,0 +1707890178,213,0 +1707890179,214,0 +1707890179,214,0 +1707890180,214,0 +1707890180,214,0 +1707890181,214,0 +1707890181,214,0 +1707890182,214,0 +1707890182,214,0 +1707890183,214,0 +1707890183,214,0 +1707890184,214,0 +1707890184,214,0 +1707890185,214,0 +1707890185,213,0 +1707890186,213,0 +1707890186,213,0 +1707890187,213,0 +1707890187,213,0 +1707890188,213,0 +1707890188,214,0 +1707890189,214,0 +1707890189,213,0 +1707890190,214,0 +1707890190,214,0 +1707890191,214,0 +1707890191,214,0 +1707890191,214,0 +1707890192,214,0 +1707890192,214,0 +1707890193,214,0 +1707890193,214,0 +1707890194,213,0 +1707890194,213,0 +1707890195,213,0 +1707890195,213,0 +1707890196,213,0 +1707890196,214,0 +1707890197,214,0 +1707890197,214,0 +1707890198,214,0 +1707890198,214,0 +1707890199,214,0 +1707890199,214,0 +1707890200,214,0 +1707890200,214,0 +1707890201,214,0 +1707890201,214,0 +1707890202,214,0 +1707890202,213,0 +1707890203,213,0 +1707890203,213,0 +1707890204,213,0 +1707890204,214,0 +1707890205,213,0 +1707890205,214,0 +1707890206,213,0 +1707890206,214,0 +1707890207,214,0 +1707890207,214,0 +1707890208,214,0 +1707890208,214,0 +1707890208,214,0 +1707890209,214,0 +1707890209,214,0 +1707890210,214,0 +1707890210,214,0 +1707890211,213,0 +1707890211,213,0 +1707890212,213,0 +1707890212,214,0 +1707890213,214,0 +1707890213,214,0 +1707890214,214,0 +1707890214,214,0 +1707890215,214,0 +1707890215,214,0 +1707890216,214,0 +1707890216,214,0 +1707890217,214,0 +1707890217,214,0 +1707890218,214,0 +1707890218,214,0 +1707890219,214,0 +1707890219,214,0 +1707890220,213,0 +1707890220,213,0 +1707890221,213,0 +1707890221,213,0 +1707890222,214,0 +1707890222,214,0 +1707890223,214,0 +1707890223,214,0 +1707890223,214,0 +1707890224,214,0 +1707890224,214,0 +1707890225,214,0 +1707890225,214,0 +1707890226,214,0 +1707890226,214,0 +1707890227,214,0 +1707890227,214,0 +1707890228,214,0 +1707890228,214,0 +1707890229,214,0 +1707890229,214,0 +1707890230,214,0 +1707890230,214,0 +1707890231,214,0 +1707890231,214,0 +1707890232,214,0 +1707890232,214,0 +1707890233,214,0 +1707890233,214,0 +1707890234,214,0 +1707890234,214,0 +1707890235,214,0 +1707890235,214,0 +1707890236,214,0 +1707890236,214,0 +1707890237,214,0 +1707890237,214,0 +1707890238,214,0 +1707890238,214,0 +1707890239,214,0 +1707890239,214,0 +1707890240,214,0 +1707890240,214,0 +1707890241,214,0 +1707890241,214,0 +1707890241,214,0 +1707890242,214,0 +1707890242,214,0 +1707890243,214,0 +1707890243,214,0 +1707890244,214,0 +1707890244,214,0 +1707890245,214,0 +1707890245,214,0 +1707890246,214,0 +1707890246,214,0 +1707890247,214,0 +1707890247,214,0 +1707890248,214,0 +1707890248,214,0 +1707890249,214,0 +1707890249,214,0 +1707890250,214,0 +1707890250,214,0 +1707890251,214,0 +1707890251,214,0 +1707890252,214,0 +1707890252,214,0 +1707890253,214,0 +1707890253,214,0 +1707890254,214,0 +1707890254,214,0 +1707890255,213,0 +1707890255,214,0 +1707890255,214,0 +1707890256,214,0 +1707890256,214,0 +1707890257,214,0 +1707890257,214,0 +1707890258,214,0 +1707890258,214,0 +1707890259,214,0 +1707890259,214,0 +1707890260,214,0 +1707890260,214,0 +1707890261,214,0 +1707890261,214,0 +1707890262,214,0 +1707890262,214,0 +1707890263,213,0 +1707890263,213,0 +1707890264,213,0 +1707890264,213,0 +1707890265,214,0 +1707890265,214,0 +1707890266,214,0 +1707890266,214,0 +1707890267,214,0 +1707890267,214,0 +1707890268,214,0 +1707890268,214,0 +1707890268,214,0 +1707890269,214,0 +1707890269,214,0 +1707890270,214,0 +1707890270,214,0 +1707890271,214,0 +1707890271,214,0 +1707890272,214,0 +1707890272,214,0 +1707890273,214,0 +1707890273,214,0 +1707890274,214,0 +1707890274,214,0 +1707890275,214,0 +1707890275,214,0 +1707890276,214,0 +1707890276,214,0 +1707890277,214,0 +1707890277,214,0 +1707890278,214,0 +1707890278,214,0 +1707890279,214,0 +1707890279,214,0 +1707890280,213,0 +1707890280,213,0 +1707890281,213,0 +1707890281,214,0 +1707890282,214,0 +1707890282,213,0 +1707890283,214,0 +1707890283,214,0 +1707890284,214,0 +1707890284,214,0 +1707890285,214,0 +1707890285,214,0 +1707890285,214,0 +1707890286,214,0 +1707890286,214,0 +1707890287,214,0 +1707890287,214,0 +1707890288,215,0 +1707890288,213,0 +1707890289,213,0 +1707890289,213,0 +1707890290,213,0 +1707890290,214,0 +1707890291,214,0 +1707890291,214,0 +1707890292,214,0 +1707890292,214,0 +1707890293,214,0 +1707890293,214,0 +1707890294,214,0 +1707890294,214,0 +1707890295,214,0 +1707890295,214,0 +1707890296,214,0 +1707890296,214,0 +1707890297,214,0 +1707890297,213,0 +1707890298,213,0 +1707890298,213,0 +1707890298,213,0 +1707890299,213,0 +1707890299,214,0 +1707890300,214,0 +1707890300,214,0 +1707890301,214,0 +1707890301,214,0 +1707890302,214,0 +1707890302,214,0 +1707890303,214,0 +1707890303,214,0 +1707890304,214,0 +1707890304,214,0 +1707890305,214,0 +1707890305,214,0 +1707890306,213,0 +1707890306,213,0 +1707890307,213,0 +1707890307,214,0 +1707890308,213,0 +1707890308,213,0 +1707890309,214,0 +1707890309,213,0 +1707890310,214,0 +1707890310,214,0 +1707890311,214,0 +1707890311,214,0 +1707890312,214,0 +1707890312,214,0 +1707890313,214,0 +1707890313,214,0 +1707890313,214,0 +1707890314,214,0 +1707890314,213,0 +1707890315,213,0 +1707890315,214,0 +1707890316,213,0 +1707890316,213,0 +1707890317,214,0 +1707890317,214,0 +1707890318,214,0 +1707890318,214,0 +1707890319,214,0 +1707890319,214,0 +1707890320,214,0 +1707890320,214,0 +1707890321,214,0 +1707890321,214,0 +1707890322,214,0 +1707890322,214,0 +1707890323,213,0 +1707890323,213,0 +1707890324,213,0 +1707890324,214,0 +1707890325,214,0 +1707890325,213,0 +1707890326,213,0 +1707890326,214,0 +1707890326,214,0 +1707890327,214,0 +1707890327,214,0 +1707890328,214,0 +1707890328,214,0 +1707890329,214,0 +1707890329,214,0 +1707890330,214,0 +1707890330,214,0 +1707890331,214,0 +1707890331,214,0 +1707890332,214,0 +1707890332,214,0 +1707890333,214,0 +1707890333,214,0 +1707890334,214,0 +1707890334,214,0 +1707890335,214,0 +1707890335,214,0 +1707890336,214,0 +1707890336,214,0 +1707890337,214,0 +1707890337,214,0 +1707890338,214,0 +1707890338,214,0 +1707890339,214,0 +1707890339,214,0 +1707890340,214,0 +1707890340,213,0 +1707890340,213,0 +1707890341,214,0 +1707890341,213,0 +1707890342,214,0 +1707890342,214,0 +1707890343,214,0 +1707890343,214,0 +1707890344,214,0 +1707890344,214,0 +1707890345,214,0 +1707890345,214,0 +1707890346,214,0 +1707890346,214,0 +1707890347,214,0 +1707890347,214,0 +1707890348,214,0 +1707890348,214,0 +1707890349,213,0 +1707890349,213,0 +1707890350,213,0 +1707890350,213,0 +1707890351,213,0 +1707890351,214,0 +1707890352,214,0 +1707890352,214,0 +1707890353,214,0 +1707890353,214,0 +1707890354,214,0 +1707890354,214,0 +1707890354,214,0 +1707890355,214,0 +1707890355,214,0 +1707890356,214,0 +1707890356,214,0 +1707890357,214,0 +1707890357,213,0 +1707890358,213,0 +1707890358,214,0 +1707890359,213,0 +1707890359,213,0 +1707890360,213,0 +1707890360,214,0 +1707890361,213,0 +1707890361,214,0 +1707890362,214,0 +1707890362,214,0 +1707890363,214,0 +1707890363,214,0 +1707890364,214,0 +1707890364,214,0 +1707890365,214,0 +1707890365,214,0 +1707890366,214,0 +1707890366,213,0 +1707890367,213,0 +1707890367,213,0 +1707890367,214,0 +1707890368,214,0 +1707890368,214,0 +1707890369,214,0 +1707890369,214,0 +1707890370,214,0 +1707890370,214,0 +1707890371,214,0 +1707890371,214,0 +1707890372,214,0 +1707890372,214,0 +1707890373,214,0 +1707890373,214,0 +1707890374,214,0 +1707890374,213,0 +1707890375,213,0 +1707890375,214,0 +1707890376,213,0 +1707890376,214,0 +1707890377,214,0 +1707890377,214,0 +1707890378,214,0 +1707890378,214,0 +1707890379,214,0 +1707890379,214,0 +1707890380,214,0 +1707890380,214,0 +1707890381,214,0 +1707890381,214,0 +1707890382,214,0 +1707890382,214,0 +1707890383,214,0 +1707890383,214,0 +1707890384,214,0 +1707890384,213,0 +1707890384,214,0 +1707890385,213,0 +1707890385,214,0 +1707890386,214,0 +1707890386,214,0 +1707890387,214,0 +1707890387,214,0 +1707890388,214,0 +1707890388,214,0 +1707890389,214,0 +1707890389,214,0 +1707890390,214,0 +1707890390,214,0 +1707890391,214,0 +1707890391,214,0 +1707890392,213,0 +1707890392,213,0 +1707890393,214,0 +1707890393,213,0 +1707890394,214,0 +1707890394,214,0 +1707890395,214,0 +1707890395,214,0 +1707890396,214,0 +1707890396,214,0 +1707890397,214,0 +1707890397,214,0 +1707890398,214,0 +1707890398,214,0 +1707890399,214,0 +1707890399,214,0 +1707890400,214,0 diff --git a/laser_value/data.tar.gz b/laser_value/data.tar.gz new file mode 100644 index 0000000..5bc6f6c Binary files /dev/null and b/laser_value/data.tar.gz differ diff --git a/light_test.py b/light_test.py new file mode 100644 index 0000000..80fa9f7 --- /dev/null +++ b/light_test.py @@ -0,0 +1,91 @@ +import time +import serial +import argparse + +#======Serial Variable======= +# SERIAL_PATH = "/dev/serial/by-path/pci-0000:00:14.0-usb-0:2:1.0-port0" +SERIAL_PATH = "/dev/ttyUSB1" +BAUD_RATE = 19200 +PARITY='N' +STOP_BITS=1 +BYTE_SIZE=8 +TIMEOUT=1 +#============================ + +ser = serial.Serial(port=SERIAL_PATH, baudrate=BAUD_RATE, parity=PARITY, stopbits=STOP_BITS, bytesize=BYTE_SIZE, timeout=TIMEOUT) + + +def light_control(args, ch_num:int): + global ser + + ch_list=[0, 16, 17, 18, 19] + bright = int(args.brightness) + + if(ch_num == 0): + print("Channel range : 1~4 // not 0 ") + try: + START=(5 & 0xFF).to_bytes(1, byteorder='big') + CH_NUM=(ch_list[ch_num] & 0xFF).to_bytes(1, byteorder='big') + BLIGHT=(bright & 0xFF).to_bytes(1, byteorder='big') + CHK_SUM=(ch_list[ch_num] + bright & 0xFF).to_bytes(1, byteorder='big') + + ser.write(START) + ser.write(CH_NUM) + ser.write(BLIGHT) + ser.write(CHK_SUM) + + except Exception as e: + print(e) + + return True + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument('--brightness', help='adjustment led brightness', required=True) + + args = parser.parse_args() + + light_control(args, 1) + + +# print(light_control(ser,1,30)) +# time.sleep(1) +# print(light_control(ser,1,0)) +# time.sleep(1) +# print(light_control(ser,1,100)) +# time.sleep(1) +# print(light_control(ser,1,0)) +# time.sleep(1) +# print(light_control(ser,1,240)) +# +# +# #for i in range(500): +# while True: +# for i in range(0,50): +# light_control(ser,1,i*5) +# time.sleep(0.02) +# +# for i in range(0,50): +# light_control(ser,1,255-i*5) +# time.sleep(0.02) +# print(i) + + + +# turn_on = [b"\x05", b"\x10", b'\xF0', b'\x00'] +# turn_off = [b'\x05', b'\x10', b'\x00', b'\x10'] +# +# rqt_status = [b'\x05', b'\x14', b'\x00', b'\x14'] +# remote_on = [b'\x05', b'\x29', b'\x01', b'\x2A'] +# +# try: +# result = ser.write(b''.join(turn_off)) +# print(result) +# time.sleep(2) +# result = ser.write(b''.join(turn_on)) +# print(result) +# except Exception as e: +# print(f"Error {e}") +# port.close() + diff --git a/logs/gseps.log b/logs/gseps.log new file mode 100644 index 0000000..3e1abdb --- /dev/null +++ b/logs/gseps.log @@ -0,0 +1,1181 @@ +2024-05-29 17:57:40,389 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,389 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,389 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,389 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,389 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,389 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,389 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,389 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,389 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,389 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:54,095 - root - INFO - Cam Initialize. +2024-05-29 17:57:55,166 - root - INFO - CAM Load. +2024-05-29 17:57:57,210 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:57:57,210 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:57:58,211 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:57:58,211 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:57:59,212 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:57:59,212 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:00,214 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:00,214 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:01,216 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:01,216 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:02,218 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:02,218 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:03,219 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:03,220 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:04,221 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:04,221 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:05,223 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:05,223 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:06,225 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:06,225 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:07,227 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:07,227 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:08,229 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:08,229 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:09,231 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:09,231 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 17:58:10,232 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 17:58:10,233 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:00:10,362 - root - INFO - Cam Initialize. +2024-05-29 18:00:11,414 - root - INFO - CAM Load. +2024-05-29 18:00:13,450 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 18:00:13,451 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:00:14,452 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 18:00:14,453 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:00:15,454 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 18:00:15,455 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:00:16,456 - root - ERROR - Traceback (most recent call last): + File "gseps-test_dy.py", line 268, in check_distance + distance = int(''.join(distance_bytes)) +ValueError: invalid literal for int() with base 10: '' + +2024-05-29 18:00:16,456 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:04:24,342 - root - INFO - Cam Initialize. +2024-05-29 18:04:25,357 - root - INFO - CAM Load. +2024-05-29 18:04:27,391 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:04:28,393 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:05:23,347 - root - INFO - Cam Initialize. +2024-05-29 18:05:24,408 - root - INFO - CAM Load. +2024-05-29 18:05:26,453 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:05:27,455 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:05:28,457 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:05:29,459 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:05:30,460 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:11:32,682 - root - INFO - Cam Initialize. +2024-05-29 18:11:33,732 - root - INFO - CAM Load. +2024-05-29 18:11:35,766 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:11:36,768 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:15:51,940 - root - INFO - Cam Initialize. +2024-05-29 18:15:52,964 - root - INFO - CAM Load. +2024-05-29 18:15:54,995 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:15:55,996 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:15:56,998 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:15:58,000 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:15:59,002 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:16:00,004 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:16:01,006 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:16:02,008 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:16:03,010 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:16:04,012 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:16:05,014 - root - ERROR - Error : invalid literal for int() with base 10: '' +2024-05-29 18:18:16,935 - root - INFO - Cam Initialize. +2024-05-29 18:18:17,994 - root - INFO - CAM Load. +2024-05-29 18:18:19,085 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:19,437 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:19,789 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:20,141 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:20,493 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:20,845 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:21,198 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:21,550 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:21,902 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:22,254 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:22,606 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:22,958 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:23,310 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:23,662 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:24,014 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:24,366 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:24,718 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:25,071 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:25,423 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:25,775 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:26,127 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:26,479 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:26,831 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:27,183 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:27,535 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:27,887 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:28,239 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:28,591 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:28,943 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:29,295 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:29,648 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:30,000 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:30,352 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:30,704 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:31,056 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:31,408 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:31,760 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:32,112 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:32,464 - root - INFO - laser_value : 421040191 +2024-05-29 18:18:32,816 - root - INFO - laser_value : 421040191 +2024-05-29 18:21:47,606 - root - INFO - Cam Initialize. +2024-05-29 18:21:48,648 - root - INFO - CAM Load. +2024-05-29 18:21:49,757 - root - INFO - laser_value : 2599 +2024-05-29 18:21:50,109 - root - INFO - laser_value : 2599 +2024-05-29 18:21:50,461 - root - INFO - laser_value : 2599 +2024-05-29 18:21:50,813 - root - INFO - laser_value : 2599 +2024-05-29 18:21:51,165 - root - INFO - laser_value : 2599 +2024-05-29 18:21:51,517 - root - INFO - laser_value : 2599 +2024-05-29 18:21:51,869 - root - INFO - laser_value : 2600 +2024-05-29 18:21:52,221 - root - INFO - laser_value : 2600 +2024-05-29 18:21:52,573 - root - INFO - laser_value : 2599 +2024-05-29 18:21:52,925 - root - INFO - laser_value : 2599 +2024-05-29 18:21:53,277 - root - INFO - laser_value : 2599 +2024-05-29 18:21:53,630 - root - INFO - laser_value : 2599 +2024-05-29 18:21:53,982 - root - INFO - laser_value : 2599 +2024-05-29 18:21:54,334 - root - INFO - laser_value : 2599 +2024-05-29 18:21:54,686 - root - INFO - laser_value : 2599 +2024-05-29 18:21:55,038 - root - INFO - laser_value : 2599 +2024-05-29 18:21:55,390 - root - INFO - laser_value : 2599 +2024-05-29 18:21:55,742 - root - INFO - laser_value : 2599 +2024-05-29 18:21:56,094 - root - INFO - laser_value : 2599 +2024-05-29 18:21:56,446 - root - INFO - laser_value : 2599 +2024-05-29 18:21:56,798 - root - INFO - laser_value : 2599 +2024-05-29 18:21:57,150 - root - INFO - laser_value : 2599 +2024-05-29 18:21:57,502 - root - INFO - laser_value : 2599 +2024-05-29 18:21:57,855 - root - INFO - laser_value : 2599 +2024-05-29 18:21:58,207 - root - INFO - laser_value : 2599 +2024-05-29 18:21:58,559 - root - INFO - laser_value : 2599 +2024-05-29 18:21:58,911 - root - INFO - laser_value : 2600 +2024-05-29 18:21:59,263 - root - INFO - laser_value : 2600 +2024-05-29 18:21:59,615 - root - INFO - laser_value : 2600 +2024-05-29 18:21:59,967 - root - INFO - laser_value : 2599 +2024-05-29 18:22:00,319 - root - INFO - laser_value : 2599 +2024-05-29 18:22:00,671 - root - INFO - laser_value : 2599 +2024-05-29 18:22:01,023 - root - INFO - laser_value : 2599 +2024-05-29 18:22:01,375 - root - INFO - laser_value : 2599 +2024-05-29 18:22:01,727 - root - INFO - laser_value : 2599 +2024-05-29 18:22:02,080 - root - INFO - laser_value : 2599 +2024-05-29 18:22:02,432 - root - INFO - laser_value : 2599 +2024-05-29 18:22:02,784 - root - INFO - laser_value : 2599 +2024-05-29 18:22:03,136 - root - INFO - laser_value : 2599 +2024-05-29 18:22:03,488 - root - INFO - laser_value : 2599 +2024-05-29 18:22:03,840 - root - INFO - laser_value : 2599 +2024-05-29 18:22:04,192 - root - INFO - laser_value : 2599 +2024-05-29 18:22:04,544 - root - INFO - laser_value : 2599 +2024-05-29 18:22:04,896 - root - INFO - laser_value : 2599 +2024-05-29 18:22:05,248 - root - INFO - laser_value : 2599 +2024-05-29 18:22:05,600 - root - INFO - laser_value : 2599 +2024-05-29 18:22:05,952 - root - INFO - laser_value : 2599 +2024-05-29 18:22:06,305 - root - INFO - laser_value : 2599 +2024-05-29 18:22:06,657 - root - INFO - laser_value : 2599 +2024-05-29 18:24:34,039 - root - INFO - Cam Initialize. +2024-05-29 18:24:35,057 - root - INFO - CAM Load. +2024-05-29 18:24:36,146 - root - INFO - laser_value : 2599 +2024-05-29 18:24:36,498 - root - INFO - laser_value : 2599 +2024-05-29 18:24:36,850 - root - INFO - laser_value : 2600 +2024-05-29 18:24:37,203 - root - INFO - laser_value : 2600 +2024-05-29 18:24:37,555 - root - INFO - laser_value : 2600 +2024-05-29 18:24:37,907 - root - INFO - laser_value : 2600 +2024-05-29 18:24:38,259 - root - INFO - laser_value : 2600 +2024-05-29 18:24:38,611 - root - INFO - laser_value : 2600 +2024-05-29 18:24:38,963 - root - INFO - laser_value : 2599 +2024-05-29 18:24:39,315 - root - INFO - laser_value : 2599 +2024-05-29 18:24:39,667 - root - INFO - laser_value : 2599 +2024-05-29 18:24:40,019 - root - INFO - laser_value : 2599 +2024-05-29 18:25:41,420 - root - INFO - Cam Initialize. +2024-05-29 18:25:42,466 - root - INFO - CAM Load. +2024-05-29 18:25:43,547 - root - INFO - laser_value : 2599 +2024-05-29 18:25:43,548 - root - INFO - Capture Start at 259 +2024-05-29 18:25:43,683 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:43,683 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:43,684 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:43,685 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:43,685 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:43,685 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:43,685 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:43,686 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:43,686 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:43,686 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:43,686 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:43,686 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:43,686 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:43,686 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:43,687 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:43,687 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:43,687 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:43,687 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:44,041 - root - INFO - laser_value : 2599 +2024-05-29 18:25:44,041 - root - INFO - Capture Start at 259 +2024-05-29 18:25:44,142 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:44,142 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:44,142 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:44,143 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:44,143 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:44,143 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:44,144 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:44,144 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:44,144 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:44,144 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:44,144 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:44,144 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:44,145 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:44,145 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:44,145 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:44,145 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:44,145 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:44,145 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:44,500 - root - INFO - laser_value : 2599 +2024-05-29 18:25:44,500 - root - INFO - Capture Start at 259 +2024-05-29 18:25:44,611 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:44,611 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:44,611 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:44,612 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:44,612 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:44,612 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:44,612 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:44,613 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:44,613 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:44,613 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:44,613 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:44,613 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:44,614 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:44,614 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:44,614 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:44,614 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:44,614 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:44,614 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:44,967 - root - INFO - laser_value : 2599 +2024-05-29 18:25:44,967 - root - INFO - Capture Start at 259 +2024-05-29 18:25:45,060 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:45,060 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:45,060 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:45,062 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:45,062 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:45,062 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:45,062 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:45,063 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:45,063 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:45,063 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:45,063 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:45,063 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:45,063 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:45,063 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:45,063 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:45,063 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:45,064 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:45,064 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:45,419 - root - INFO - laser_value : 2599 +2024-05-29 18:25:45,419 - root - INFO - Capture Start at 259 +2024-05-29 18:25:45,506 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:45,506 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:45,506 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:45,508 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:45,508 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:45,508 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:45,508 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:45,509 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:45,509 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:45,509 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:45,509 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:45,509 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:45,509 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:45,509 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:45,509 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:45,509 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:45,509 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:45,509 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:45,863 - root - INFO - laser_value : 2599 +2024-05-29 18:25:45,863 - root - INFO - Capture Start at 259 +2024-05-29 18:25:45,957 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:45,957 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:45,957 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:45,958 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:45,958 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:45,958 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:45,958 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:45,959 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:45,959 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:45,959 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:45,959 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:45,959 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:45,960 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:45,960 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:45,960 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:45,960 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:45,960 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:45,960 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:46,314 - root - INFO - laser_value : 2599 +2024-05-29 18:25:46,314 - root - INFO - Capture Start at 259 +2024-05-29 18:25:46,415 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:46,415 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:46,416 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:46,417 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:46,417 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:46,417 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:46,417 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:46,418 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:46,418 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:46,418 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:46,418 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:46,418 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:46,418 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:46,418 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:46,419 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:46,419 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:46,419 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:46,419 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:46,773 - root - INFO - laser_value : 2599 +2024-05-29 18:25:46,774 - root - INFO - Capture Start at 259 +2024-05-29 18:25:46,867 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:46,867 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:46,867 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:46,868 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:46,868 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:46,868 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:46,869 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:46,869 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:46,869 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:46,869 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:46,870 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:46,870 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:46,870 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:46,870 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:46,870 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:46,870 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:46,870 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:46,870 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:47,225 - root - INFO - laser_value : 2599 +2024-05-29 18:25:47,225 - root - INFO - Capture Start at 259 +2024-05-29 18:25:47,319 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:47,320 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:47,320 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:47,321 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:47,321 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:47,321 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:47,321 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:47,322 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:47,322 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:47,322 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:47,322 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:47,322 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:47,322 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:47,322 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:47,322 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:47,323 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:47,323 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:47,323 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:47,677 - root - INFO - laser_value : 2599 +2024-05-29 18:25:47,677 - root - INFO - Capture Start at 259 +2024-05-29 18:25:47,771 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:47,771 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:47,771 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:47,773 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:47,773 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:47,773 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:47,773 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:47,773 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:47,773 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:47,774 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:47,774 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:47,774 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:47,774 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:47,774 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:47,774 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:47,774 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:47,774 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:47,774 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:48,128 - root - INFO - laser_value : 2599 +2024-05-29 18:25:48,129 - root - INFO - Capture Start at 259 +2024-05-29 18:25:48,230 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:48,231 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:48,231 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:48,232 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:48,232 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:48,232 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:48,232 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:48,233 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:48,233 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:48,233 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:48,233 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:48,233 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:48,233 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:48,233 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:48,233 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:48,233 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:48,233 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:48,233 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:48,587 - root - INFO - laser_value : 2599 +2024-05-29 18:25:48,588 - root - INFO - Capture Start at 259 +2024-05-29 18:25:48,683 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:25:48,683 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:25:48,683 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:25:48,684 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:25:48,684 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:25:48,684 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:25:48,685 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:25:48,685 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:25:48,685 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:25:48,685 - pika.channel - INFO - Received on params=>> +2024-05-29 18:25:48,685 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:25:48,686 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:25:48,686 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:25:48,686 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:25:48,686 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:48,686 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:25:48,686 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:25:48,686 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:25:49,039 - root - INFO - laser_value : 2599 +2024-05-29 18:25:49,039 - root - INFO - Capture Start at 259 +2024-05-29 18:31:09,290 - root - INFO - Cam Initialize. +2024-05-29 18:31:10,349 - root - INFO - CAM Load. +2024-05-29 18:31:11,444 - root - INFO - laser_value : 259mm +2024-05-29 18:31:11,444 - root - INFO - Capture Start at 259 +2024-05-29 18:31:11,571 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:11,571 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:11,572 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:11,573 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:11,573 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:11,573 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:11,574 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:11,574 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:11,574 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:11,574 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:11,574 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:11,575 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:11,575 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:11,575 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:11,575 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:11,575 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:11,575 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:11,575 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:11,930 - root - INFO - laser_value : 259mm +2024-05-29 18:31:11,930 - root - INFO - Capture Start at 259 +2024-05-29 18:31:12,034 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:12,034 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:12,034 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:12,035 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:12,035 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:12,035 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:12,035 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:12,036 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:12,036 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:12,036 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:12,036 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:12,036 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:12,036 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:12,036 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:12,037 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:12,037 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:12,037 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:12,037 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:12,389 - root - INFO - laser_value : 259mm +2024-05-29 18:31:12,390 - root - INFO - Capture Start at 259 +2024-05-29 18:31:12,489 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:12,489 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:12,489 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:12,491 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:12,491 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:12,491 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:12,491 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:12,491 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:12,491 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:12,492 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:12,492 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:12,492 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:12,492 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:12,492 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:12,492 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:12,492 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:12,492 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:12,492 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:12,845 - root - INFO - laser_value : 259mm +2024-05-29 18:31:12,845 - root - INFO - Capture Start at 259 +2024-05-29 18:31:12,938 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:12,938 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:12,938 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:12,940 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:12,940 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:12,940 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:12,940 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:12,941 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:12,941 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:12,941 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:12,941 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:12,941 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:12,941 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:12,941 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:12,941 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:12,942 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:12,942 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:12,942 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:13,296 - root - INFO - laser_value : 259mm +2024-05-29 18:31:13,297 - root - INFO - Capture Start at 259 +2024-05-29 18:31:13,403 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:13,403 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:13,403 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:13,405 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:13,405 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:13,405 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:13,405 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:13,406 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:13,406 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:13,407 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:13,407 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:13,407 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:13,407 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:13,407 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:13,407 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:13,407 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:13,407 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:13,407 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:13,763 - root - INFO - laser_value : 259mm +2024-05-29 18:31:13,764 - root - INFO - Capture Start at 259 +2024-05-29 18:31:13,852 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:13,853 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:13,853 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:13,854 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:13,854 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:13,854 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:13,855 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:13,855 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:13,855 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:13,855 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:13,856 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:13,856 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:13,856 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:13,856 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:13,856 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:13,856 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:13,856 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:13,856 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:14,211 - root - INFO - laser_value : 259mm +2024-05-29 18:31:14,211 - root - INFO - Capture Start at 259 +2024-05-29 18:31:14,308 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:14,308 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:14,308 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:14,310 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:14,310 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:14,310 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:14,310 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:14,311 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:14,311 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:14,311 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:14,311 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:14,311 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:14,311 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:14,311 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:14,311 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:14,311 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:14,311 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:14,311 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:14,666 - root - INFO - laser_value : 259mm +2024-05-29 18:31:14,667 - root - INFO - Capture Start at 259 +2024-05-29 18:31:14,753 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:14,753 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:14,754 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:14,755 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:14,755 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:14,755 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:14,755 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:14,756 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:14,756 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:14,756 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:14,756 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:14,756 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:14,756 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:14,757 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:14,757 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:14,757 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:14,757 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:14,757 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:15,110 - root - INFO - laser_value : 259mm +2024-05-29 18:31:15,111 - root - INFO - Capture Start at 259 +2024-05-29 18:31:15,204 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:15,204 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:15,204 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:15,206 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:15,206 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:15,206 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:15,206 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:15,206 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:15,206 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:15,207 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:15,207 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:15,207 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:15,207 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:15,207 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:15,207 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:15,207 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:15,207 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:15,207 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:15,562 - root - INFO - laser_value : 259mm +2024-05-29 18:31:15,562 - root - INFO - Capture Start at 259 +2024-05-29 18:31:15,659 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:15,660 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:15,660 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:15,661 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:15,661 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:15,661 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:15,661 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:15,662 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:15,662 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:15,662 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:15,663 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:15,663 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:15,663 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:15,663 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:15,663 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:15,663 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:15,663 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:15,663 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:16,017 - root - INFO - laser_value : 259mm +2024-05-29 18:31:16,018 - root - INFO - Capture Start at 259 +2024-05-29 18:31:16,108 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:16,109 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:16,109 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:16,110 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:16,110 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:16,110 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:16,110 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:16,111 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:16,111 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:16,111 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:16,111 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:16,112 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:16,112 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:16,112 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:16,112 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:16,112 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:16,112 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:16,112 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:16,465 - root - INFO - laser_value : 259mm +2024-05-29 18:31:16,465 - root - INFO - Capture Start at 259 +2024-05-29 18:31:16,552 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:16,552 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:16,552 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:16,554 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:16,554 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:16,554 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:16,554 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:16,555 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:16,555 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:16,555 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:16,555 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:16,555 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:16,555 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:16,555 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:16,555 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:16,555 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:16,555 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:16,555 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:16,909 - root - INFO - laser_value : 259mm +2024-05-29 18:31:16,909 - root - INFO - Capture Start at 259 +2024-05-29 18:31:17,012 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:17,012 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:17,013 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:17,014 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:17,014 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:17,014 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:17,014 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:17,015 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:17,015 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:17,015 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:17,015 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:17,015 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:17,015 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:17,015 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:17,015 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:17,015 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:17,016 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:17,016 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:17,368 - root - INFO - laser_value : 259mm +2024-05-29 18:31:17,368 - root - INFO - Capture Start at 259 +2024-05-29 18:31:17,461 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:17,461 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:17,461 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:17,462 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:17,463 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:17,463 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:17,463 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:17,481 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:17,481 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:17,482 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:17,482 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:17,482 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:17,482 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:17,482 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:17,482 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:17,482 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:17,482 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:17,482 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:17,835 - root - INFO - laser_value : 259mm +2024-05-29 18:31:17,835 - root - INFO - Capture Start at 259 +2024-05-29 18:31:17,926 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:17,927 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:17,927 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:17,928 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:17,928 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:17,928 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:17,929 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:17,929 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:17,929 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:17,930 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:17,930 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:17,930 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:17,930 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:17,930 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:17,930 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:17,930 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:17,930 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:17,930 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:18,283 - root - INFO - laser_value : 259mm +2024-05-29 18:31:18,283 - root - INFO - Capture Start at 259 +2024-05-29 18:31:18,377 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:18,377 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:18,377 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:18,378 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:18,378 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:18,378 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:18,379 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:18,379 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:18,379 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:18,379 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:18,380 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:18,380 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:18,380 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:18,380 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:18,380 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:18,380 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:18,380 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:18,380 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:18,734 - root - INFO - laser_value : 259mm +2024-05-29 18:31:18,735 - root - INFO - Capture Start at 259 +2024-05-29 18:31:18,841 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:18,842 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:18,842 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:18,843 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:18,843 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:18,843 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:18,843 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:18,844 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:18,844 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:18,844 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:18,844 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:18,844 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:18,844 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:18,845 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:18,845 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:18,845 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:18,845 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:18,845 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:19,197 - root - INFO - laser_value : 259mm +2024-05-29 18:31:19,198 - root - INFO - Capture Start at 259 +2024-05-29 18:31:19,292 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:19,293 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:19,293 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:19,294 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:19,294 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:19,294 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:19,295 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:19,295 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:19,295 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:19,296 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:19,296 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:19,296 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:19,296 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:19,296 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:19,296 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:19,296 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:19,296 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:19,296 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:19,649 - root - INFO - laser_value : 259mm +2024-05-29 18:31:19,649 - root - INFO - Capture Start at 259 +2024-05-29 18:31:19,736 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:19,736 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:19,736 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:19,738 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:19,738 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:19,738 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:19,738 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:19,739 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:19,739 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:19,739 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:19,739 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:19,739 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:19,739 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:19,739 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:19,739 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:19,740 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:19,740 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:19,740 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:20,093 - root - INFO - laser_value : 259mm +2024-05-29 18:31:20,093 - root - INFO - Capture Start at 259 +2024-05-29 18:31:20,184 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:20,184 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:20,185 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:20,186 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:20,186 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:20,186 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:20,186 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:20,187 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:20,187 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:20,187 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:20,187 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:20,187 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:20,187 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:20,187 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:20,187 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:20,187 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:20,187 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:20,187 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:31:20,541 - root - INFO - laser_value : 259mm +2024-05-29 18:31:20,541 - root - INFO - Capture Start at 259 +2024-05-29 18:31:20,638 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:31:20,639 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:31:20,639 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:31:20,640 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:31:20,640 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:31:20,640 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:31:20,640 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:31:20,641 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:31:20,641 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:31:20,641 - pika.channel - INFO - Received on params=>> +2024-05-29 18:31:20,642 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:31:20,642 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:31:20,642 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:31:20,642 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:31:20,642 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:20,642 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:31:20,642 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:31:20,642 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:33:23,674 - root - INFO - Cam Initialize. +2024-05-29 18:34:09,855 - root - INFO - Cam Initialize. +2024-05-29 18:34:10,890 - root - INFO - CAM Load. +2024-05-29 18:34:11,979 - root - INFO - laser_value : 259mm +2024-05-29 18:34:11,979 - root - INFO - Capture Start at 259 +2024-05-29 18:34:12,100 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:12,101 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:12,101 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:12,102 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:12,102 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:12,102 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:12,103 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:12,103 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:12,103 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:12,103 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:12,104 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:12,104 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:12,104 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:12,104 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:12,104 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:12,104 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:12,104 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:12,104 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:12,457 - root - INFO - laser_value : 259mm +2024-05-29 18:34:12,457 - root - INFO - Capture Start at 259 +2024-05-29 18:34:12,555 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:12,556 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:12,556 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:12,557 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:12,557 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:12,557 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:12,557 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:12,558 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:12,558 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:12,558 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:12,558 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:12,558 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:12,558 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:12,558 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:12,558 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:12,558 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:12,559 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:12,559 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:12,912 - root - INFO - laser_value : 259mm +2024-05-29 18:34:12,913 - root - INFO - Capture Start at 259 +2024-05-29 18:34:13,014 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:13,014 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:13,014 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:13,016 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:13,016 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:13,016 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:13,016 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:13,017 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:13,017 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:13,017 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:13,017 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:13,017 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:13,017 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:13,017 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:13,017 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:13,017 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:13,017 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:13,017 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:13,372 - root - INFO - laser_value : 259mm +2024-05-29 18:34:13,372 - root - INFO - Capture Start at 259 +2024-05-29 18:34:13,465 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:13,465 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:13,465 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:13,466 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:13,466 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:13,467 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:13,467 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:13,467 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:13,467 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:13,467 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:13,468 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:13,468 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:13,468 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:13,468 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:13,468 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:13,468 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:13,468 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:13,468 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:13,823 - root - INFO - laser_value : 259mm +2024-05-29 18:34:13,824 - root - INFO - Capture Start at 259 +2024-05-29 18:34:13,910 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:13,910 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:13,910 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:13,912 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:13,912 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:13,912 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:13,912 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:13,913 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:13,913 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:13,913 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:13,913 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:13,913 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:13,913 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:13,913 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:13,914 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:13,914 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:13,914 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:13,914 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:14,267 - root - INFO - laser_value : 259mm +2024-05-29 18:34:14,268 - root - INFO - Capture Start at 259 +2024-05-29 18:34:14,355 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:14,355 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:14,356 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:14,357 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:14,357 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:14,357 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:14,357 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:14,358 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:14,358 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:14,358 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:14,358 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:14,358 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:14,358 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:14,358 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:14,358 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:14,358 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:14,358 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:14,358 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:14,711 - root - INFO - laser_value : 259mm +2024-05-29 18:34:14,711 - root - INFO - Capture Start at 259 +2024-05-29 18:34:14,813 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:14,813 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:14,813 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:14,814 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:14,814 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:14,814 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:14,815 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:14,815 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:14,815 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:14,815 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:14,815 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:14,815 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:14,816 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:14,816 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:14,816 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:14,816 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:14,816 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:14,816 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:15,170 - root - INFO - laser_value : 259mm +2024-05-29 18:34:15,170 - root - INFO - Capture Start at 259 +2024-05-29 18:34:15,262 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:15,262 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:15,262 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:15,263 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:15,263 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:15,263 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:15,264 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:15,265 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:15,265 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:15,265 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:15,265 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:15,265 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:15,265 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:15,265 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:15,265 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:15,265 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:15,265 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:15,266 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') +2024-05-29 18:34:15,618 - root - INFO - laser_value : 259mm +2024-05-29 18:34:15,618 - root - INFO - Capture Start at 259 +2024-05-29 18:34:15,719 - pika.adapters.utils.connection_workflow - INFO - Pika version 1.3.2 connecting to ('127.0.0.1', 5672) +2024-05-29 18:34:15,719 - pika.adapters.utils.io_services_utils - INFO - Socket connected: +2024-05-29 18:34:15,720 - pika.adapters.utils.connection_workflow - INFO - Streaming transport linked up: (, _StreamingProtocolShim: params=>). +2024-05-29 18:34:15,721 - pika.adapters.utils.connection_workflow - INFO - AMQPConnector - reporting success: params=> +2024-05-29 18:34:15,721 - pika.adapters.utils.connection_workflow - INFO - AMQPConnectionWorkflow - reporting success: params=> +2024-05-29 18:34:15,721 - pika.adapters.blocking_connection - INFO - Connection workflow succeeded: params=> +2024-05-29 18:34:15,721 - pika.adapters.blocking_connection - INFO - Created channel=1 +2024-05-29 18:34:15,722 - pika.adapters.blocking_connection - INFO - Closing connection (200): Normal shutdown +2024-05-29 18:34:15,722 - pika.channel - INFO - Closing channel (200): 'Normal shutdown' on params=>> +2024-05-29 18:34:15,722 - pika.channel - INFO - Received on params=>> +2024-05-29 18:34:15,722 - pika.connection - INFO - Closing connection (200): 'Normal shutdown' +2024-05-29 18:34:15,722 - pika.adapters.utils.io_services_utils - INFO - Aborting transport connection: state=1; +2024-05-29 18:34:15,722 - pika.adapters.utils.io_services_utils - INFO - _AsyncTransportBase._initate_abort(): Initiating abrupt asynchronous transport shutdown: state=1; error=None; +2024-05-29 18:34:15,722 - pika.adapters.utils.io_services_utils - INFO - Deactivating transport: state=1; +2024-05-29 18:34:15,722 - pika.connection - INFO - AMQP stack terminated, failed to connect, or aborted: opened=True, error-arg=None; pending-error=ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:15,722 - pika.connection - INFO - Stack terminated due to ConnectionClosedByClient: (200) 'Normal shutdown' +2024-05-29 18:34:15,723 - pika.adapters.utils.io_services_utils - INFO - Closing transport socket and unlinking: state=3; +2024-05-29 18:34:15,723 - pika.adapters.blocking_connection - INFO - User-initiated close: result=BlockingConnection__OnClosedArgs(connection=>, error=ConnectionClosedByClient: (200) 'Normal shutdown') diff --git a/logs/gseps.log.1 b/logs/gseps.log.1 new file mode 100644 index 0000000..acf109d --- /dev/null +++ b/logs/gseps.log.1 @@ -0,0 +1,16167 @@ +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,304 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,304 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,305 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,305 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,306 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,306 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,307 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,307 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,308 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,308 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,309 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,309 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,310 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,310 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,311 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,311 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,312 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,312 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,313 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,313 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,314 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,314 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,315 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,315 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,316 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,316 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,317 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,317 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,318 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,318 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,319 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,319 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,320 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,320 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,321 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,321 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,322 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,322 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,323 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,323 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,324 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,324 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,325 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,325 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,326 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,326 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,327 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,327 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,328 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,328 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,329 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,329 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,330 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,330 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,331 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,331 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,332 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,332 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,333 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,333 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,334 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,334 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,335 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,335 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,336 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,336 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,337 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,337 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,338 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,338 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,339 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,339 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,340 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,340 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,341 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,341 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,342 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,342 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,343 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,343 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,344 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,344 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,345 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,345 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,346 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,346 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,347 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,347 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,348 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,348 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,349 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,349 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,350 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,350 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,351 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,351 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,352 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,352 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,353 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,353 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,354 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,354 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,355 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,355 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,356 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,356 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,357 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,357 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,358 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,358 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,359 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,359 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,360 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,360 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,361 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,361 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,362 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,362 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,363 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,363 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,364 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,364 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,365 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,365 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,366 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,366 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,367 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,367 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,368 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,368 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,369 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,369 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,370 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,370 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,371 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,371 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,372 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,372 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,373 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,373 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,374 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,374 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,375 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,375 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,376 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,376 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,377 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,377 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,378 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,378 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,379 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,379 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,380 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,380 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,381 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,381 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,382 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,382 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,383 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,383 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,384 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,384 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,385 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,385 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,386 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,386 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,387 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,387 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,388 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,388 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,389 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' diff --git a/logs/gseps.log.2 b/logs/gseps.log.2 new file mode 100644 index 0000000..6b42e96 --- /dev/null +++ b/logs/gseps.log.2 @@ -0,0 +1,16167 @@ +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,213 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,213 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,214 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,214 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,215 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,215 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,216 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,216 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,217 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,217 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,218 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,218 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,219 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,219 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,220 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,220 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,221 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,221 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,222 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,222 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,223 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,223 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,224 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,224 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,225 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,225 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,226 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,226 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,227 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,227 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,228 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,228 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,229 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,229 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,230 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,230 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,231 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,231 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,232 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,232 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,233 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,233 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,234 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,234 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,235 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,235 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,236 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,236 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,237 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,237 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,238 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,238 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,239 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,239 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,240 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,240 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,241 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,241 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,242 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,242 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,243 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,243 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,244 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,244 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,245 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,245 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,246 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,246 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,247 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,247 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,248 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,248 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,249 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,249 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,250 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,250 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,251 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,251 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,252 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,252 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,253 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,253 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,254 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,254 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,255 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,255 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,256 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,256 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,257 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,257 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,258 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,258 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,259 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,259 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,260 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,260 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,261 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,261 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,262 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,262 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,263 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,263 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,264 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,264 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,265 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,265 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,266 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,266 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,267 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,267 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,268 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,268 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,269 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,269 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,270 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,270 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,271 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,271 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,272 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,272 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,273 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,273 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,274 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,274 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,275 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,275 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,276 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,276 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,277 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,277 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,278 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,278 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,279 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,279 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,280 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,280 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,281 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,281 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,282 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,282 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,283 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,283 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,284 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,284 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,285 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,285 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,286 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,286 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,287 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,287 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,288 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,288 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,289 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,289 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,290 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,290 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,291 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,291 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,292 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,292 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,293 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,293 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,294 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,294 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,295 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,295 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,296 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,296 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,297 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,297 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,298 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,298 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,299 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,299 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,300 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,300 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,301 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,301 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,302 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,302 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,303 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,303 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' diff --git a/logs/gseps.log.3 b/logs/gseps.log.3 new file mode 100644 index 0000000..446025c --- /dev/null +++ b/logs/gseps.log.3 @@ -0,0 +1,16167 @@ +2024-05-29 17:57:40,120 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,120 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,120 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,120 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,120 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,120 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,120 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,120 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,120 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,121 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,121 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,122 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,122 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,123 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,123 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,124 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,124 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,125 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,125 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,126 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,126 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,127 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,127 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,128 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,128 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,129 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,129 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,130 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,130 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,131 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,131 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,132 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,132 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,133 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,133 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,134 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,134 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,135 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,135 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,136 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,136 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,137 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,137 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,138 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,138 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,139 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,139 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,140 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,140 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,141 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,141 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,142 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,142 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,143 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,143 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,144 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,144 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,145 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,145 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,146 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,146 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,147 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,147 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,148 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,148 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,149 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,149 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,150 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,150 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,151 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,151 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,152 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,152 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,153 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,153 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,154 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,154 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,155 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,155 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,156 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,156 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,157 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,157 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,158 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,158 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,159 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,159 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,160 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,160 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,161 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,161 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,162 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,162 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,163 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,163 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,164 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,164 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,165 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,165 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,166 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,166 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,167 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,167 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,168 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,168 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,169 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,169 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,170 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,170 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,171 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,171 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,172 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,172 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,173 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,173 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,174 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,174 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,175 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,175 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,176 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,176 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,177 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,177 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,178 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,178 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,179 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,179 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,180 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,180 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,181 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,181 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,182 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,182 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,183 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,183 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,184 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,184 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,185 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,185 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,186 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,186 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,187 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,187 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,188 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,188 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,189 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,189 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,190 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,190 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,191 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,191 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,192 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,192 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,193 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,193 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,194 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,194 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,195 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,195 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,196 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,196 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,197 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,197 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,198 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,198 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,199 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,199 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,200 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,200 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,201 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,201 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,202 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,202 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,203 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,203 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,204 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,204 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,205 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,205 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,206 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,206 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,207 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,207 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,208 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,208 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,209 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,209 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,210 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,210 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,211 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,211 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' +2024-05-29 17:57:40,212 - root - ERROR - Traceback (most recent call last): + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 322, in open + self.fd = os.open(self.portstr, os.O_RDWR | os.O_NOCTTY | os.O_NONBLOCK) +PermissionError: [Errno 13] Permission denied: '/dev/ttyS0' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "gseps-test_dy.py", line 263, in check_distance + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + File "/usr/local/lib/python3.8/dist-packages/serial/serialutil.py", line 244, in __init__ + self.open() + File "/usr/local/lib/python3.8/dist-packages/serial/serialposix.py", line 325, in open + raise SerialException(msg.errno, "could not open port {}: {}".format(self._port, msg)) +serial.serialutil.SerialException: [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' + +2024-05-29 17:57:40,212 - root - ERROR - Error : [Errno 13] could not open port /dev/ttyS0: [Errno 13] Permission denied: '/dev/ttyS0' diff --git a/main.py b/main.py new file mode 100644 index 0000000..1714d7a --- /dev/null +++ b/main.py @@ -0,0 +1,502 @@ +#!/usr/bin/python3 +import os +import sys +import json +import time +import datetime +from datetime import timedelta +import traceback +import logging.handlers + +import cv2 +import glob +import pandas as pd +import pika +import boto3 +import serial + +os.environ['GENICAM_GENTL64_PATH'] = '/opt/ids-peak_2.9.0.0-48_amd64/lib/ids/cti/' + +from ids_peak import ids_peak as peak +from ids_peak_ipl import ids_peak_ipl + +############################################### +# Logger Setting # +############################################### +logger = logging.getLogger() +logger.setLevel(logging.INFO) +formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') + +log_fileHandler = logging.handlers.RotatingFileHandler( + filename=f"./logs/gseps.log", + maxBytes=1024000, + backupCount=3, + mode='a') + +log_fileHandler.setFormatter(formatter) +logger.addHandler(log_fileHandler) + +############################################### +# Config # +############################################### +with open('./acquisition_config.json', 'r') as f: + info = json.load(f) + +LASER_SAVE_PATH = info['laser_save_path'] +LASER_DEVICE_PATH = info['laser_device_path'] + +S3_BUCKET = info['S3BucketName'] +GSEPS_STAGE_BUCKET = info['gseps_stage_bucket'] + +S3_UPLOAD_KEY = info['BucketKey'] + +s3 = boto3.resource('s3') +sdt_s3 = boto3.resource('s3', + aws_access_key_id=info['AccessKey'], + aws_secret_access_key=info['SecretKey'], + region_name=info['Boto3RegionName']) + +############################################### +# Camera Variable # +############################################### +m_device = None +m_dataStream = None +m_node_map_remote_device = None + +m_device_2 = None +m_dataStream_2 = None +m_node_map_remote_device_2 = None + + +class Publisher: + def __init__(self): + self.__url = info['amqp_url'] + self.__port = info['amqp_port'] + self.__vhost = info['amqp_vhost'] + self.__cred = pika.PlainCredentials(info['amqp_id'], info['amqp_pw']) + self.__queue = info['amqp_queue'] + self.__ReadyQ = info['amqp_ReadyQ'] + + def check_server_state(self): + conn = pika.BlockingConnection(pika.ConnectionParameters(self.__url, + self.__port, + self.__vhost, + self.__cred)) + chan = conn.channel() + method, properties, body = chan.basic_get(queue=self.__ReadyQ, + auto_ack=True) + + if method: + chan.queue_purge(queue=self.__ReadyQ) + conn.close() + return True + + conn.close() + return False + + def pub(self, body: dict): + try: + conn = pika.BlockingConnection(pika.ConnectionParameters(self.__url, + self.__port, + self.__vhost, + self.__cred)) + chan = conn.channel() + chan.basic_publish(exchange='', + routing_key=self.__queue, + body=json.dumps(body)) + conn.close() + return + except Exception as e: + # add error alarm + logger.error(traceback.format_exc()) + + +def open_camera(): + global m_device, m_node_map_remote_device, m_device_2, m_node_map_remote_device_2 + + try: + # Create instance of the device manager + device_manager = peak.DeviceManager.Instance() + + # Update the device manager + device_manager.Update() + + # Return if no device was found + if device_manager.Devices().empty(): + return False + + # open the first openable device in the device manager's device list + device_count = device_manager.Devices().size() + if device_manager.Devices()[0].IsOpenable() and device_manager.Devices()[1].IsOpenable(): + m_device = device_manager.Devices()[1].OpenDevice(peak.DeviceAccessType_Control) + # Get NodeMap of the RemoteDevice for all accesses to the GenICam NodeMap tree + m_node_map_remote_device = m_device.RemoteDevice().NodeMaps()[0] + + m_device_2 = device_manager.Devices()[0].OpenDevice(peak.DeviceAccessType_Control) + m_node_map_remote_device_2 = m_device_2.RemoteDevice().NodeMaps()[0] + return True + + except Exception as e: + print(e) + logger.error(traceback.format_exc()) + + return False + + +def prepare_acquisition(): + global m_dataStream, m_dataStream_2 + try: + data_streams = m_device.DataStreams() + data_streams_2 = m_device_2.DataStreams() + if data_streams.empty() or data_streams_2.empty(): + # no data streams available + return False + m_dataStream = m_device.DataStreams()[0].OpenDataStream() + m_dataStream_2 = m_device_2.DataStreams()[0].OpenDataStream() + return True + + except Exception as e: + print(e) + logger.error(traceback.format_exc()) + + return False + + +def set_roi(width, height): + try: + offset_x = int((4512 - width)/2) + offset_y = int((4512 - height)/2) + # Get the minimum ROI and set it. After that there are no size restrictions anymore + x_min = m_node_map_remote_device.FindNode("OffsetX").Minimum() + y_min = m_node_map_remote_device.FindNode("OffsetY").Minimum() + w_min = m_node_map_remote_device.FindNode("Width").Minimum() + h_min = m_node_map_remote_device.FindNode("Height").Minimum() + + m_node_map_remote_device.FindNode("OffsetX").SetValue(x_min) + m_node_map_remote_device.FindNode("OffsetY").SetValue(y_min) + m_node_map_remote_device.FindNode("Width").SetValue(w_min) + m_node_map_remote_device.FindNode("Height").SetValue(h_min) + + # Get the maximum ROI values + x_max = m_node_map_remote_device.FindNode("OffsetX").Maximum() + y_max = m_node_map_remote_device.FindNode("OffsetY").Maximum() + w_max = m_node_map_remote_device.FindNode("Width").Maximum() + h_max = m_node_map_remote_device.FindNode("Height").Maximum() + + if (offset_x < x_min) or (offset_y < y_min) or (offset_x > x_max) or (offset_y > y_max): + return False + elif (width < w_min) or (height < h_min) or ((offset_x + width) > w_max) or ((offset_y + height) > h_max): + return False + else: + # Now, set final AOI + m_node_map_remote_device.FindNode("OffsetX").SetValue(offset_x) + m_node_map_remote_device.FindNode("OffsetY").SetValue(offset_y) + m_node_map_remote_device.FindNode("Width").SetValue(width) + m_node_map_remote_device.FindNode("Height").SetValue(height) + + return True + except Exception as e: + logger.error(traceback.format_exc()) + + return False + + +def alloc_and_announce_buffers(): + try: + if m_dataStream and m_dataStream_2: + # cam1 + # Flush queue and prepare all buffers for revoking + m_dataStream.Flush(peak.DataStreamFlushMode_DiscardAll) + + # Clear all old buffers + for buffer in m_dataStream.AnnouncedBuffers(): + m_dataStream.RevokeBuffer(buffer) + + payload_size = m_node_map_remote_device.FindNode("PayloadSize").Value() + + # Get number of minimum required buffers + num_buffers_min_required = m_dataStream.NumBuffersAnnouncedMinRequired() + + # Alloc buffers + for count in range(num_buffers_min_required): + buffer = m_dataStream.AllocAndAnnounceBuffer(payload_size) + m_dataStream.QueueBuffer(buffer) + + # cam2 + m_dataStream_2.Flush(peak.DataStreamFlushMode_DiscardAll) + + for buffer in m_dataStream_2.AnnouncedBuffers(): + m_dataStream_2.RevokeBuffer(buffer) + + payload_size_2 = m_node_map_remote_device_2.FindNode("PayloadSize").Value() + num_buffers_min_required_2 = m_dataStream_2.NumBuffersAnnouncedMinRequired() + + for count in range(num_buffers_min_required_2): + buffer = m_dataStream_2.AllocAndAnnounceBuffer(payload_size_2) + m_dataStream_2.QueueBuffer(buffer) + return True + except Exception as e: + logger.error(traceback.format_exc()) + + return False + + +def start_acquisition(): + try: + m_dataStream.StartAcquisition(peak.AcquisitionStartMode_Default, peak.DataStream.INFINITE_NUMBER) + m_node_map_remote_device.FindNode("TLParamsLocked").SetValue(1) + m_node_map_remote_device.FindNode("AcquisitionStart").Execute() + # m_node_map_remote_device.FindNode("DeviceRegistersStreamingStart").Execute() + + m_dataStream_2.StartAcquisition(peak.AcquisitionStartMode_Default, peak.DataStream.INFINITE_NUMBER) + m_node_map_remote_device_2.FindNode("TLParamsLocked").SetValue(1) + m_node_map_remote_device_2.FindNode("AcquisitionStart").Execute() + # m_node_map_remote_device.FindNode("DeviceRegistersStreamingStart").Execute() + + return True + except Exception as e: + logger.error(traceback.format_exc()) + + return False + + +# check alarm +def check_distance(): + while True: + try: + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=19200, timeout=1) + req = b'\x01\x04\x00\x00\x00\x01\x31\xca' + ser.write(req) + + result = ser.read(6) + data_length = result[2] + hex_distance = result[3:3+data_length] + distance = int((int.from_bytes(hex_distance, byteorder='big'))/10) + logger.info(f"laser_value : {distance}mm") + + ser.close() + + return distance + + except KeyboardInterrupt: + ser.close() + exit() + + except Exception as e: + print(e) + ser.close() + #logger.error(traceback.format_exc()) + # raise + #print(e) + logger.error(f"Error : {e}") + continue + +def upload_to_s3(company, image_list=None): + today = datetime.date.today() + + if company == 'sdt': + for path in image_list: + image_name = path.split('/')[-1] + + date = image_name.split('-')[0] + folder = f'{date[:4]}-{date[4:6]}-{date[6:]}' + + sdt_s3.Bucket(S3_BUCKET).upload_file(path, f'{folder}/{image_name}') + + os.remove(path) + + elif company == 'gseps': + yesterday = today - timedelta(days=1) + file_name = f'{yesterday.year:04d}{yesterday.month:02d}{yesterday.day:02d}' + + laser_csv = sorted(glob.glob(f'{LASER_SAVE_PATH}/{file_name}*.csv')) + total_laser_info = pd.DataFrame() + for path in laser_csv: + try: + csv = pd.read_csv(path) + total_laser_info = pd.concat([total_laser_info, csv], ignore_index=True) + #os.remove(path) + + except pd.errors.EmptyDataError as e: + logger.error(f"Error: {path} pandas empty data error, {e}") + + laser_save_path = f'{LASER_SAVE_PATH}/{yesterday}-mv_laser_height.csv' + total_laser_info.to_csv(laser_save_path, index=False) + s3.Bucket(GSEPS_STAGE_BUCKET).upload_file(laser_save_path, f'{S3_UPLOAD_KEY}/year={yesterday.year}/month={yesterday.month:02d}/day={yesterday.day: 02d}/mv_laser_height.csv') + sdt_s3.Bucket('gseps-daily').upload_file(laser_save_path, f'{yesterday}/mv_laser_height.csv') + + #os.remove(laser_save_path) + + +def check_hour_for_laser(current_time): + if current_time.minute == 0 and current_time.second == 0: + return True + + return False + + +def main(): + logger.info(f'Cam Initialize.') + + # initialize library + peak.Library.Initialize() + + # add logger error + if not open_camera(): + # error + print(1) + sys.exit(-1) + + + logger.info(f'CAM Load.') + + if not prepare_acquisition(): + # error + print(2) + sys.exit(-2) + + + if not set_roi(1208, 1024): + # error + print(3) + sys.exit(-3) + + if not alloc_and_announce_buffers(): + # error + print(4) + sys.exit(-4) + + + if not start_acquisition(): + # error + print(5) + sys.exit(-5) + + + image_info = {} + publisher = Publisher() + + laser_history = pd.DataFrame() + laser_count = 0 + while True: + try: + now_datetime = datetime.datetime.now() + now_unix = int(now_datetime.timestamp()) + now = now_datetime.strftime("%Y%m%d-%H%M%S%f")[:-3] + + laser_value = check_distance() + event_flag = 0 + if 50 <= laser_value < 400: + laser_count = 0 + event_flag = 1 + logger.info(f"Capture Start at {laser_value}") + + # Get buffer from device's DataStream. Wait 5000 ms. The buffer is automatically locked until it is queued again. + ################# CHANGE #################### + + #cam1 + buffer = m_dataStream.WaitForFinishedBuffer(1000) + image = ids_peak_ipl.Image.CreateFromSizeAndBuffer( + buffer.PixelFormat(), + buffer.BasePtr(), + buffer.Size(), + buffer.Width(), + buffer.Height() + ) + image_processed = image.ConvertTo(ids_peak_ipl.PixelFormatName_BGRa8, ids_peak_ipl.ConversionMode_Fast) + # Queue buffer again + m_dataStream.QueueBuffer(buffer) + ############################################### + img_numpy = image_processed.get_numpy() + + # cam2 + buffer = m_dataStream_2.WaitForFinishedBuffer(1000) + image = ids_peak_ipl.Image.CreateFromSizeAndBuffer( + buffer.PixelFormat(), + buffer.BasePtr(), + buffer.Size(), + buffer.Width(), + buffer.Height() + ) + image_processed_2 = image.ConvertTo(ids_peak_ipl.PixelFormatName_BGRa8, ids_peak_ipl.ConversionMode_Fast) + # Queue buffer again + m_dataStream_2.QueueBuffer(buffer) + ############################################### + img_numpy_2 = image_processed_2.get_numpy() + + # save image + cam1_image_name = f'{now}_cam1.jpg' + cam2_image_name = f'{now}_cam2.jpg' + image_save_path = info['image_save_path'] + + if not os.path.exists(image_save_path): + os.makedirs(image_save_path) + + cam1_image_path = os.path.join(image_save_path, cam1_image_name) + cam2_image_path = os.path.join(image_save_path, cam2_image_name) + cv2.imwrite(cam1_image_path, img_numpy) + cv2.imwrite(cam2_image_path, img_numpy_2) + print('cam1 path: ',cam1_image_path) + print('cam2 path: ',cam2_image_path) + + # Upload image to MinIO(inference server) + image_list = [cam1_image_path, cam2_image_path] + #upload_to_s3('sdt', image_list) + + # publish + image_info = {'to': {"cam1_image_name": cam1_image_name, + "cam2_image_name": cam2_image_name, + "laser": laser_value, + "bucket": "gseps-dataset"}} + + if publisher.check_server_state(): + publisher.pub(image_info) + print(image_info) + + ############## CHANGE ####################### + # Logger Contents Change // MinIO => S3 # + ############################################# + # logger.info(f'Successfully Uploaded To S3!. cam1: {cam1_image_name}, cam2: {cam2_image_name}') + # print(f'Successfully Uploaded To Minio!. cam1: {cam1_image_name}, cam2: {cam2_image_name}') + + + if 200 <= laser_value < 500: + current_laser_info = pd.DataFrame([{"timestamp": now_unix, + "laser_value": laser_value, + "event": event_flag}]) + + laser_history = pd.concat([laser_history, current_laser_info], ignore_index=True) + + + current_time = datetime.datetime.now() + # if check_hour_for_laser(current_time): + if current_time.minute == 0: + today = datetime.date.today() + laser_save_hour = (current_time - timedelta(hours=1)).strftime('%Y%m%d-%H') + hour = current_time.hour + + date = laser_save_hour.split('-')[0] + folder = f'{date[:4]}-{date[4:6]}-{date[6:]}' + + if not os.path.exists(f'{LASER_SAVE_PATH}/{laser_save_hour}.csv'): + laser_history.to_csv(f'{LASER_SAVE_PATH}/{laser_save_hour}.csv', index=False) + sdt_s3.Bucket('gseps-daily').upload_file(f'{LASER_SAVE_PATH}/{laser_save_hour}.csv', f'{folder}/laser/{laser_save_hour}.csv') + laser_history = pd.DataFrame() + + #if hour == 0: + # upload_to_s3('gseps') + + laser_count += 1 + time.sleep(0.3) + + except Exception as e: + + logger.error(traceback.format_exc()) + exit() + + peak.Library.Close() + sys.exit(0) + + +if __name__ == '__main__': + main() diff --git a/main.py.bk b/main.py.bk new file mode 100755 index 0000000..9f15c8c --- /dev/null +++ b/main.py.bk @@ -0,0 +1,449 @@ +#!/usr/bin/python3 +import os +import sys +import json +import time +import datetime +from datetime import timedelta +import traceback +import logging.handlers + +import cv2 +import glob +import pandas as pd +import pika +import boto3 +import serial + +os.environ['GENICAM_GENTL64_PATH'] = '/opt/ids-peak_2.7.0.0-16268_amd64/lib/ids/cti/' + +from ids_peak import ids_peak as peak +from ids_peak_ipl import ids_peak_ipl + +############################################### +# Logger Setting # +############################################### +logger = logging.getLogger() +logger.setLevel(logging.INFO) +formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') + +log_fileHandler = logging.handlers.RotatingFileHandler( + filename=f"./logs/gseps.log", + maxBytes=1024000, + backupCount=3, + mode='a') + +log_fileHandler.setFormatter(formatter) +logger.addHandler(log_fileHandler) + +############################################### +# Config # +############################################### +with open('./acquisition_config.json', 'r') as f: + info = json.load(f) + +# CAM2_DEVICE_PATH = info['cam2_device_path'] +LASER_DEVICE_PATH = info['laser_device_path'] +S3_BUCKET = info['S3BucketName'] +GSEPS_STAGE_BUCKET = info['gseps_stage_bucket'] +S3_UPLOAD_KEY = info['BucketKey'] + +############################################### +# Camera Variable # +############################################### +m_device = None +m_dataStream = None +m_node_map_remote_device = None + +# Load Camera2 +# cam2 = cv2.VideoCapture(CAM2_DEVICE_PATH) +# _ = cam2.read() +# logger.info(f'CAM2 Load.') + + +# class Publisher: +# def __init__(self): +# self.__url = info['amqp_url'] +# self.__port = info['amqp_port'] +# self.__vhost = info['amqp_vhost'] +# self.__cred = pika.PlainCredentials(info['amqp_id'], info['amqp_pw']) +# self.__queue = info['amqp_queue'] +# self.__ReadyQ = info['amqp_ReadyQ'] +# +# def check_server_state(self): +# conn = pika.BlockingConnection(pika.ConnectionParameters(self.__url, +# self.__port, +# self.__vhost, +# self.__cred)) +# chan = conn.channel() +# method, properties, body = chan.basic_get(queue=self.__ReadyQ, +# auto_ack=True) +# +# if method: +# chan.queue_purge(queue=self.__ReadyQ) +# conn.close() +# return True +# +# conn.close() +# return False +# +# def pub(self, body: dict): +# try: +# conn = pika.BlockingConnection(pika.ConnectionParameters(self.__url, +# self.__port, +# self.__vhost, +# self.__cred)) +# chan = conn.channel() +# chan.basic_publish(exchange='', +# routing_key=self.__queue, +# body=json.dumps(body)) +# conn.close() +# return +# except Exception as e: +# # add error alarm +# logger.error(traceback.format_exc()) + + +def open_camera(): + global m_device, m_node_map_remote_device + + try: + # Create instance of the device manager + device_manager = peak.DeviceManager.Instance() + + # Update the device manager + device_manager.Update() + + # Return if no device was found + if device_manager.Devices().empty(): + return False + + # open the first openable device in the device manager's device list + device_count = device_manager.Devices().size() + for i in range(device_count): + if device_manager.Devices()[i].IsOpenable(): + m_device = device_manager.Devices()[i].OpenDevice(peak.DeviceAccessType_Control) + + # Get NodeMap of the RemoteDevice for all accesses to the GenICam NodeMap tree + m_node_map_remote_device = m_device.RemoteDevice().NodeMaps()[0] + + return True + + except Exception as e: + print(e) + # logger.error(traceback.format_exc()) + + return False + + +def prepare_acquisition(): + global m_dataStream + try: + data_streams = m_device.DataStreams() + if data_streams.empty(): + # no data streams available + return False + + m_dataStream = m_device.DataStreams()[0].OpenDataStream() + + return True + + except Exception as e: + logger.error(traceback.format_exc()) + + return False + + +def set_roi(x, y, width, height): + try: + # Get the minimum ROI and set it. After that there are no size restrictions anymore + x_min = m_node_map_remote_device.FindNode("OffsetX").Minimum() + y_min = m_node_map_remote_device.FindNode("OffsetY").Minimum() + w_min = m_node_map_remote_device.FindNode("Width").Minimum() + h_min = m_node_map_remote_device.FindNode("Height").Minimum() + + m_node_map_remote_device.FindNode("OffsetX").SetValue(x_min) + m_node_map_remote_device.FindNode("OffsetY").SetValue(y_min) + m_node_map_remote_device.FindNode("Width").SetValue(w_min) + m_node_map_remote_device.FindNode("Height").SetValue(h_min) + + # Get the maximum ROI values + x_max = m_node_map_remote_device.FindNode("OffsetX").Maximum() + y_max = m_node_map_remote_device.FindNode("OffsetY").Maximum() + w_max = m_node_map_remote_device.FindNode("Width").Maximum() + h_max = m_node_map_remote_device.FindNode("Height").Maximum() + + if (x < x_min) or (y < y_min) or (x > x_max) or (y > y_max): + return False + elif (width < w_min) or (height < h_min) or ((x + width) > w_max) or ((y + height) > h_max): + return False + else: + # Now, set final AOI + m_node_map_remote_device.FindNode("OffsetX").SetValue(0) + m_node_map_remote_device.FindNode("OffsetY").SetValue(0) + m_node_map_remote_device.FindNode("Width").SetValue(w_max) + m_node_map_remote_device.FindNode("Height").SetValue(h_max) + + return True + except Exception as e: + logger.error(traceback.format_exc()) + + return False + + +def alloc_and_announce_buffers(): + try: + if m_dataStream: + # Flush queue and prepare all buffers for revoking + m_dataStream.Flush(peak.DataStreamFlushMode_DiscardAll) + + # Clear all old buffers + for buffer in m_dataStream.AnnouncedBuffers(): + m_dataStream.RevokeBuffer(buffer) + + payload_size = m_node_map_remote_device.FindNode("PayloadSize").Value() + + # Get number of minimum required buffers + num_buffers_min_required = m_dataStream.NumBuffersAnnouncedMinRequired() + + # Alloc buffers + for count in range(num_buffers_min_required): + buffer = m_dataStream.AllocAndAnnounceBuffer(payload_size) + m_dataStream.QueueBuffer(buffer) + + return True + except Exception as e: + logger.error(traceback.format_exc()) + + return False + + +def start_acquisition(): + try: + m_dataStream.StartAcquisition(peak.AcquisitionStartMode_Default, peak.DataStream.INFINITE_NUMBER) + m_node_map_remote_device.FindNode("TLParamsLocked").SetValue(1) + m_node_map_remote_device.FindNode("AcquisitionStart").Execute() + # m_node_map_remote_device.FindNode("DeviceRegistersStreamingStart").Execute() + + return True + except Exception as e: + logger.error(traceback.format_exc()) + + return False + + +# check alarm +def check_distance(): + while True: + try: + ser = serial.Serial(LASER_DEVICE_PATH, baudrate=9600, timeout=1) + ser.write(b'O') + + result = ser.read(6)[1:] + distance_bytes = [str(n) for n in result] + distance = int(''.join(distance_bytes)) + logger.info(f"laser_value : {distance}") + + return distance + + except KeyboardInterrupt: + exit() + + except Exception as e: + print(e) + # logger.error(traceback.format_exc()) + # raise + print(e) + # logger.error(f"Error : {e}") + continue + + +def image_capture_from_cam2(save_path): + global cam2 + + ret, frame = cam2.read() + if ret: + cv2.imwrite(save_path, frame) + return True + + return False + + +def upload_to_s3(company, image_list=None): + today = datetime.date.today() + + if company == 'sdt': + s3 = boto3.resource('s3', + aws_access_key_id=info['AccessKey'], + aws_secret_access_key=info['SecretKey'], + region_name=info['Boto3RegionName']) + + for path in image_list: + image_name = path.split('/')[-1] + s3.Bucket(S3_BUCKET).upload_file(path, f'{today}/{image_name}') + + elif company == 'gseps': + yesterday = today - timedelta(days=1) + + s3 = boto3.resource('s3') + + laser_csv = glob.glob('./laser_value/*') + total_laser_info = pd.DataFrame() + for path in laser_csv: + csv = pd.read_csv(path) + total_laser_info = pd.concat([total_laser_info, csv], ignore_index=True) + + laser_save_path = f'./laser_value/{yesterday}-mv_laser_height.csv' + total_laser_info.to_csv(laser_save_path, index=False) + s3.Bucket(GSEPS_STAGE_BUCKET).upload_file(laser_save_path, f'{S3_UPLOAD_KEY}/year={yesterday.year}/month={yesterday.month:02d}/day={yesterday.day:02d}/mv_laser_height.csv') + + +def check_hour_for_laser(current_time): + if current_time.minute == 0 and current_time.second == 0: + return True + + return False + + +def main(): + # logger.info(f'Cam Initialize.') + + # initialize library + peak.Library.Initialize() + + # add logger error + if not open_camera(): + # error + print(1) + sys.exit(-1) + + logger.info(f'CAM1 Load.') + + if not prepare_acquisition(): + # error + print(2) + sys.exit(-2) + + if not set_roi(16, 16, 256, 128): + # error + print(3) + sys.exit(-3) + + if not alloc_and_announce_buffers(): + # error + print(4) + sys.exit(-4) + + if not start_acquisition(): + # error + print(5) + sys.exit(-5) + + image_info = {} + # publisher = Publisher() + + laser_history = pd.DataFrame() + laser_count = 0 + while True: + try: + now_datetime = datetime.datetime.now() + now_unix = int(now_datetime.timestamp()) + now = now_datetime.strftime("%Y%m%d-%H%M%S%f") + + # laser_value = check_distance() + event_flag = 0 + + if True: + laser_count = 0 + event_flag = 1 + # logger.info(f"Capture Start at {laser_value}") + + # Get buffer from device's DataStream. Wait 5000 ms. The buffer is automatically locked until it is queued again. + ################# CHANGE #################### + buffer = m_dataStream.WaitForFinishedBuffer(1000) + + image = ids_peak_ipl.Image.CreateFromSizeAndBuffer( + buffer.PixelFormat(), + buffer.BasePtr(), + buffer.Size(), + buffer.Width(), + buffer.Height() + ) + + image_processed = image.ConvertTo(ids_peak_ipl.PixelFormatName_BGRa8, ids_peak_ipl.ConversionMode_Fast) + + # Queue buffer again + m_dataStream.QueueBuffer(buffer) + ############################################### + + img_numpy = image_processed.get_numpy() + + # save image + cam1_image_name = f'{now}_cam1.jpg' + cam2_image_name = f'{now}_cam2.jpg' + image_save_path = info['image_save_path'] + + if not os.path.exists(image_save_path): + os.makedirs(image_save_path) + + cam1_image_path = os.path.join(image_save_path, cam1_image_name) + cam2_image_path = os.path.join(image_save_path, cam2_image_name) + cv2.imwrite(cam1_image_path, img_numpy) + print(cam1_image_path) + + # Capture cam2 + # if not image_capture_from_cam2(cam2_image_path): + # logger.error(f"Cannot Load CAM2!") + # cam2_image_path = None + + # Upload image to MinIO(inference server) + # image_list = [cam1_image_path, cam2_image_path] + # upload_to_s3('sdt', image_list) + + # publish + # image_info = {'to': {"cam1_image_name": cam1_image_name, + # "cam2_image_name": cam2_image_name, + # "laser": laser_value, + # "bucket": "gseps-dataset"}} + + # if publisher.check_server_state(): + # publisher.pub(image_info) + + ############## CHANGE ####################### + # Logger Contents Change // MinIO => S3 # + ############################################# + # logger.info(f'Successfully Uploaded To S3!. cam1: {cam1_image_name}, cam2: {cam2_image_name}') + # print(f'Successfully Uploaded To Minio!. cam1: {cam1_image_name}, cam2: {cam2_image_name}') + + # current_laser_info = pd.DataFrame([{"timestamp": now_unix, + # "laser_value": laser_value, + # "event": event_flag}]) + + # laser_history = pd.concat([laser_history, current_laser_info], ignore_index=True) + # + # current_time = datetime.datetime.now() + # if check_hour_for_laser(current_time): + # laser_save_hour = current_time.strftime('%m%d-%H') + # hour = current_time.hour + + # if not os.path.exists(f'./laser_value/{laser_save_hour}.csv'): + # laser_history.to_csv(f'./laser_value/{laser_save_hour}.csv', index=False) + # laser_history = pd.DataFrame() + + # if hour == 0: + # upload_to_s3('gseps') + + # laser_count += 1 + # time.sleep(3) + + except Exception as e: + print(traceback.format_exc()) + # logger.error(traceback.format_exc()) + exit() + + peak.Library.Close() + sys.exit(0) + + +if __name__ == '__main__': + main() diff --git a/mqtt_config.json b/mqtt_config.json new file mode 100644 index 0000000..b861363 --- /dev/null +++ b/mqtt_config.json @@ -0,0 +1,8 @@ +{ + "mqtt_endpoint": "avk03ee629rck-ats.iot.ap-northeast-2.amazonaws.com", + "mqtt_port": 8883, + "mqtt_topic": "sdtcloud/7ef757d6-2fc4-4858-ab9f-171dea556f71/SECN00024010005/app/54343567-815e-42ed-91e6-5070336637ee/data", + "cert_file": "/etc/sdt/cert/7ef757d6-2fc4-4858-ab9f-171dea556f71-certificate.pem", + "key_file": "/etc/sdt/cert/7ef757d6-2fc4-4858-ab9f-171dea556f71-private.pem", + "root_ca_file": "/etc/sdt/cert/AmazonRootCA1.pem" +} diff --git a/utils/__init__.py b/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/utils/publisher.py b/utils/publisher.py new file mode 100644 index 0000000..e489284 --- /dev/null +++ b/utils/publisher.py @@ -0,0 +1,86 @@ +# ============================================================================== +# | | +# | @ 2023. SDT Inc. all rights reserved | +# | Author : Jinsung Lee | +# | | +# ============================================================================== + +import json +import uuid +import logging.handlers + +from awscrt import mqtt +from awsiot import mqtt_connection_builder + +###################################################################### +# Save Log # +###################################################################### +logger = logging.getLogger() +logger.setLevel(logging.INFO) +formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') +log_max_size = 1024000 +log_file_count = 3 +log_fileHandler = logging.handlers.RotatingFileHandler( + filename=f"./logs/mqtt_publish.log", + maxBytes=log_max_size, + backupCount=log_file_count, + mode='a') + +log_fileHandler.setFormatter(formatter) +logger.addHandler(log_fileHandler) + +###################################################################### +# Config # +###################################################################### +with open('./mqtt_config.json', 'r') as f: + config = json.load(f) +with open('./config.json', encoding='UTF-8') as f: + jsonData = json.load(f) +with open(f'/etc/sdt/device.config/config.json', encoding='UTF-8') as f: + codeData = json.load(f) + +MQTT_ENDPOINT = config['mqtt_endpoint'] +MQTT_PORT = config['mqtt_port'] +MQTT_TOPIC = f"sdtcloud/{codeData['projectcode']}/{codeData['assetcode']}/app/{jsonData['appId']}/data" +MQTT_CERT = f"/etc/sdt/cert/{codeData['projectcode']}-certificate.pem" +MQTT_KEY = f"/etc/sdt/cert/{codeData['projectcode']}-private.pem" +MQTT_ROOT_CA = "/etc/sdt/cert/AmazonRootCA1.pem" +UUID = uuid.uuid4() + +received_count = 0 + + +class mqtt_client(): + def __init__(self): + self.mqtt_connection = mqtt_connection_builder.mtls_from_path( + endpoint=MQTT_ENDPOINT, + cert_filepath=MQTT_CERT, + pri_key_filepath=MQTT_KEY, + ca_filepath=MQTT_ROOT_CA, + client_id=f'blokworks-client-{UUID}') + + self.mqtt_connection.connect() + + def publish(self, message): + # self.mqtt_connection.connect() + pub_future, packet_id = self.mqtt_connection.publish(topic=MQTT_TOPIC, + payload=message, + qos=mqtt.QoS.AT_LEAST_ONCE) + # self.mqtt_connection.disconnect() + + def subscribe(self): + subscribe_future, packet_id = self.mqtt_connection.subscribe(topic=MQTT_TOPIC, + qos=mqtt.QoS.AT_LEAST_ONCE, + callback=on_message_received) + subscribe_result = subscribe_future.result() + + def disconnect(self): + self.mqtt_connection.disconnect() + + +def on_message_received(topic, payload, **kwargs): + global received_count + received_count += 1 + + print(f"{received_count:04d} Received message from topic '{topic}': {payload}") +